From 0fae6f16f2eac4751d258aec749241fb37676a8f Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Thu, 25 Jul 2019 10:43:57 -0500 Subject: [PATCH 001/241] Add parsed rules to policy response --- nomad/acl_endpoint.go | 9 +++++++++ nomad/structs/structs.go | 1 + 2 files changed, 10 insertions(+) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index 7c382e4dcb9..b3f2acf29c0 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -11,6 +11,7 @@ import ( metrics "github.com/armon/go-metrics" log "github.com/hashicorp/go-hclog" memdb "github.com/hashicorp/go-memdb" + policy "github.com/hashicorp/nomad/acl" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/state" "github.com/hashicorp/nomad/nomad/structs" @@ -263,6 +264,14 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S reply.Policy = out if out != nil { reply.Index = out.ModifyIndex + + rules, err := policy.Parse(out.Rules) + + if err != nil { + // FIXME what to do? should be impossible? + } else { + reply.Policy.RulesJSON = rules + } } else { // Use the last index that affected the policy table index, err := state.Index("acl_policy") diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 8abb1a32564..39c109d3477 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -8974,6 +8974,7 @@ type ACLPolicy struct { Name string // Unique name Description string // Human readable Rules string // HCL or JSON format + RulesJSON *acl.Policy Hash []byte CreateIndex uint64 ModifyIndex uint64 From 2a2c131a64a2062c6911ba32202641aa66be1805 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Fri, 26 Jul 2019 13:07:42 -0500 Subject: [PATCH 002/241] Update policy endpoint to permit anonymous access --- nomad/acl_endpoint.go | 47 ++++++++++++++++++++------------------ nomad/acl_endpoint_test.go | 22 ++++++++++++++++-- 2 files changed, 45 insertions(+), 24 deletions(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index 7c382e4dcb9..bb19962fc11 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -219,32 +219,35 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S return structs.ErrPermissionDenied } - // If it is not a management token determine if it can get this policy - mgt := acl.IsManagement() - if !mgt { - snap, err := a.srv.fsm.State().Snapshot() - if err != nil { - return err - } + // If the policy is the anonymous one, anyone can get it + if args.Name != "anonymous" { + // If it is not a management token determine if it can get this policy + mgt := acl.IsManagement() + if !mgt { + snap, err := a.srv.fsm.State().Snapshot() + if err != nil { + return err + } - token, err := snap.ACLTokenBySecretID(nil, args.AuthToken) - if err != nil { - return err - } - if token == nil { - return structs.ErrTokenNotFound - } + token, err := snap.ACLTokenBySecretID(nil, args.AuthToken) + if err != nil { + return err + } + if token == nil { + return structs.ErrTokenNotFound + } - found := false - for _, p := range token.Policies { - if p == args.Name { - found = true - break + found := false + for _, p := range token.Policies { + if p == args.Name { + found = true + break + } } - } - if !found { - return structs.ErrPermissionDenied + if !found { + return structs.ErrPermissionDenied + } } } diff --git a/nomad/acl_endpoint_test.go b/nomad/acl_endpoint_test.go index 4f55a7e1dbe..984346a362a 100644 --- a/nomad/acl_endpoint_test.go +++ b/nomad/acl_endpoint_test.go @@ -28,10 +28,14 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { policy := mock.ACLPolicy() s1.fsm.State().UpsertACLPolicies(1000, []*structs.ACLPolicy{policy}) + anonymousPolicy := mock.ACLPolicy() + anonymousPolicy.Name = "anonymous" + s1.fsm.State().UpsertACLPolicies(1001, []*structs.ACLPolicy{anonymousPolicy}) + // Create a token with one the policy token := mock.ACLToken() token.Policies = []string{policy.Name} - s1.fsm.State().UpsertACLTokens(1001, []*structs.ACLToken{token}) + s1.fsm.State().UpsertACLTokens(1002, []*structs.ACLToken{token}) // Lookup the policy get := &structs.ACLPolicySpecificRequest{ @@ -53,7 +57,7 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", get, &resp); err != nil { t.Fatalf("err: %v", err) } - assert.Equal(t, uint64(1000), resp.Index) + assert.Equal(t, uint64(1001), resp.Index) assert.Nil(t, resp.Policy) // Lookup the policy with the token @@ -70,6 +74,20 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { } assert.EqualValues(t, 1000, resp2.Index) assert.Equal(t, policy, resp2.Policy) + + // Lookup the anonymous policy with no token + get = &structs.ACLPolicySpecificRequest{ + Name: anonymousPolicy.Name, + QueryOptions: structs.QueryOptions{ + Region: "global", + }, + } + var resp3 structs.SingleACLPolicyResponse + if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", get, &resp3); err != nil { + t.Fatalf("err: %v", err) + } + assert.EqualValues(t, 1001, resp3.Index) + assert.Equal(t, anonymousPolicy, resp3.Policy) } func TestACLEndpoint_GetPolicy_Blocking(t *testing.T) { From dd704e585fd4b75d9ecc78d6a1a984398000c5d5 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Mon, 29 Jul 2019 10:35:07 -0500 Subject: [PATCH 003/241] Update assertion to use better failure-reporting --- nomad/acl_endpoint_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nomad/acl_endpoint_test.go b/nomad/acl_endpoint_test.go index 984346a362a..6d2927f86e5 100644 --- a/nomad/acl_endpoint_test.go +++ b/nomad/acl_endpoint_test.go @@ -15,6 +15,7 @@ import ( "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/testutil" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) func TestACLEndpoint_GetPolicy(t *testing.T) { @@ -84,7 +85,7 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { } var resp3 structs.SingleACLPolicyResponse if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", get, &resp3); err != nil { - t.Fatalf("err: %v", err) + require.NoError(t, err) } assert.EqualValues(t, 1001, resp3.Index) assert.Equal(t, anonymousPolicy, resp3.Policy) From 8389af6ae64fe321de28456970cb8f40154b0869 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Mon, 29 Jul 2019 10:38:07 -0500 Subject: [PATCH 004/241] Combine conditionals --- nomad/acl_endpoint.go | 46 +++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index bb19962fc11..8f3b3a0d6e2 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -220,34 +220,32 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S } // If the policy is the anonymous one, anyone can get it - if args.Name != "anonymous" { - // If it is not a management token determine if it can get this policy - mgt := acl.IsManagement() - if !mgt { - snap, err := a.srv.fsm.State().Snapshot() - if err != nil { - return err - } + // If it is not a management token determine if it can get this policy + mgt := acl.IsManagement() + if !mgt && args.Name != "anonymous" { + snap, err := a.srv.fsm.State().Snapshot() + if err != nil { + return err + } - token, err := snap.ACLTokenBySecretID(nil, args.AuthToken) - if err != nil { - return err - } - if token == nil { - return structs.ErrTokenNotFound - } + token, err := snap.ACLTokenBySecretID(nil, args.AuthToken) + if err != nil { + return err + } + if token == nil { + return structs.ErrTokenNotFound + } - found := false - for _, p := range token.Policies { - if p == args.Name { - found = true - break - } + found := false + for _, p := range token.Policies { + if p == args.Name { + found = true + break } + } - if !found { - return structs.ErrPermissionDenied - } + if !found { + return structs.ErrPermissionDenied } } From 837d484b0219b244fba127ffc93e33a78e20bb69 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Thu, 29 Aug 2019 11:12:02 -0500 Subject: [PATCH 005/241] Add standard error-handling for parse failure --- nomad/acl_endpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index b3f2acf29c0..e51c8356a38 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -268,7 +268,7 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S rules, err := policy.Parse(out.Rules) if err != nil { - // FIXME what to do? should be impossible? + return err } else { reply.Policy.RulesJSON = rules } From 0d4275bb3959f3cbf02582aaff3ce130ce25da16 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Thu, 29 Aug 2019 11:16:14 -0500 Subject: [PATCH 006/241] Add changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc080376fb7..6dfed1e86f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ IMPROVEMENTS: * agent: allow the job GC interval to be configured [[GH-5978](https://github.com/hashicorp/nomad/issues/5978)] * agent: add `-dev=connect` parameter to support running in dev mode with Consul Connect [[GH-6126](https://github.com/hashicorp/nomad/issues/6126)] + * api: Added JSON representation of rules to policy endpoint response [[GH-6017](https://github.com/hashicorp/nomad/pull/6017)] * api: add follow parameter to file streaming endpoint to support older browsers [[GH-6049](https://github.com/hashicorp/nomad/issues/6049)] * metrics: Add job status (pending, running, dead) metrics [[GH-6003](https://github.com/hashicorp/nomad/issues/6003)] * ui: Add creation time to evaluations table [[GH-6050](https://github.com/hashicorp/nomad/pull/6050)] From ffb10e6facb72b19ce74fd3f6cde2b619cde431c Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Thu, 29 Aug 2019 15:50:34 -0500 Subject: [PATCH 007/241] Change parsing error to set rules to nil --- nomad/acl_endpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index e51c8356a38..0ceafcabbd3 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -268,7 +268,7 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S rules, err := policy.Parse(out.Rules) if err != nil { - return err + reply.Policy.RulesJSON = nil } else { reply.Policy.RulesJSON = rules } From 3206229957ace73096cebf202ad1ac36adc24747 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Thu, 29 Aug 2019 16:09:02 -0500 Subject: [PATCH 008/241] Change test to use valid HCL for rules --- command/acl_policy_info_test.go | 3 +-- nomad/acl_endpoint.go | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/command/acl_policy_info_test.go b/command/acl_policy_info_test.go index 19bf13088a6..4147f0e6744 100644 --- a/command/acl_policy_info_test.go +++ b/command/acl_policy_info_test.go @@ -5,7 +5,6 @@ import ( "strings" "testing" - "github.com/hashicorp/nomad/acl" "github.com/hashicorp/nomad/command/agent" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" @@ -31,7 +30,7 @@ func TestACLPolicyInfoCommand(t *testing.T) { // Create a test ACLPolicy policy := &structs.ACLPolicy{ Name: "testPolicy", - Rules: acl.PolicyWrite, + Rules: "node { policy = \"read\" }", } policy.SetHash() assert.Nil(state.UpsertACLPolicies(1000, []*structs.ACLPolicy{policy})) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index 0ceafcabbd3..e51c8356a38 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -268,7 +268,7 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S rules, err := policy.Parse(out.Rules) if err != nil { - reply.Policy.RulesJSON = nil + return err } else { reply.Policy.RulesJSON = rules } From 5b183e5306c3cfe954ae312b9abe061eeeb5b297 Mon Sep 17 00:00:00 2001 From: Danielle Lancashire Date: Thu, 19 Sep 2019 00:57:23 +0200 Subject: [PATCH 009/241] client: Return empty values when host stats fail Currently, there is an issue when running on Windows whereby under some circumstances the Windows stats API's will begin to return errors (such as internal timeouts) when a client is under high load, and potentially other forms of resource contention / system states (and other unknown cases). When an error occurs during this collection, we then short circuit further metrics emission from the client until the next interval. This can be problematic if it happens for a sustained number of intervals, as our metrics aggregator will begin to age out older metrics, and we will eventually stop emitting various types of metrics including `nomad.client.unallocated.*` metrics. However, when metrics collection fails on Linux, gopsutil will in many cases (e.g cpu.Times) silently return 0 values, rather than an error. Here, we switch to returning empty metrics in these failures, and logging the error at the source. This brings the behaviour into line with Linux/Unix platforms, and although making aggregation a little sadder on intermittent failures, will result in more desireable overall behaviour of keeping metrics available for further investigation if things look unusual. --- client/allocrunner/taskrunner/task_runner.go | 4 ++++ client/client.go | 5 ++++- client/stats/host.go | 21 ++++++++++++-------- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/client/allocrunner/taskrunner/task_runner.go b/client/allocrunner/taskrunner/task_runner.go index 454c682b609..7cc7d6c9e3f 100644 --- a/client/allocrunner/taskrunner/task_runner.go +++ b/client/allocrunner/taskrunner/task_runner.go @@ -1335,10 +1335,14 @@ func (tr *TaskRunner) emitStats(ru *cstructs.TaskResourceUsage) { if ru.ResourceUsage.MemoryStats != nil { tr.setGaugeForMemory(ru) + } else { + tr.logger.Debug("Skipping memory stats for allocation", "reason", "MemoryStats is nil") } if ru.ResourceUsage.CpuStats != nil { tr.setGaugeForCPU(ru) + } else { + tr.logger.Debug("Skipping cpu stats for allocation", "reason", "CpuStats is nil") } } diff --git a/client/client.go b/client/client.go index 6cc28fdfd19..98faa36525b 100644 --- a/client/client.go +++ b/client/client.go @@ -2575,10 +2575,13 @@ func (c *Client) emitStats() { for { select { case <-next.C: + start := time.Now() err := c.hostStatsCollector.Collect() next.Reset(c.config.StatsCollectionInterval) + end := time.Now() + duration := end.Sub(start) if err != nil { - c.logger.Warn("error fetching host resource usage stats", "error", err) + c.logger.Warn("error fetching host resource usage stats", "error", err, "collection_duration", duration) continue } diff --git a/client/stats/host.go b/client/stats/host.go index 28d61906d71..a434c9421fa 100644 --- a/client/stats/host.go +++ b/client/stats/host.go @@ -1,7 +1,6 @@ package stats import ( - "fmt" "math" "runtime" "sync" @@ -117,21 +116,25 @@ func (h *HostStatsCollector) collectLocked() error { // Determine up-time uptime, err := host.Uptime() if err != nil { - return err + h.logger.Error("failed to collect upstime stats", "error", err) + uptime = 0 } hs.Uptime = uptime // Collect memory stats mstats, err := h.collectMemoryStats() if err != nil { - return err + h.logger.Error("failed to collect memory stats", "error", err) + mstats = &MemoryStats{} } hs.Memory = mstats // Collect cpu stats cpus, ticks, err := h.collectCPUStats() if err != nil { - return err + h.logger.Error("failed to collect cpu stats", "error", err) + cpus = []*CPUStats{} + ticks = 0 } hs.CPU = cpus hs.CPUTicksConsumed = ticks @@ -139,17 +142,19 @@ func (h *HostStatsCollector) collectLocked() error { // Collect disk stats diskStats, err := h.collectDiskStats() if err != nil { - return err + h.logger.Error("failed to collect disk stats", "error", err) + hs.DiskStats = []*DiskStats{} } hs.DiskStats = diskStats // Getting the disk stats for the allocation directory usage, err := disk.Usage(h.allocDir) if err != nil { - return fmt.Errorf("failed to find disk usage of alloc_dir %q: %v", h.allocDir, err) + h.logger.Error("failed to find disk usage of alloc", "alloc_dir", h.allocDir, "error", err) + hs.AllocDirStats = &DiskStats{} + } else { + hs.AllocDirStats = h.toDiskStats(usage, nil) } - hs.AllocDirStats = h.toDiskStats(usage, nil) - // Collect devices stats deviceStats := h.collectDeviceGroupStats() hs.DeviceStats = deviceStats From c8ba938e707c0eff5ad9a6920f0eb3557f5cc76f Mon Sep 17 00:00:00 2001 From: Danielle Lancashire Date: Thu, 19 Sep 2019 01:13:14 +0200 Subject: [PATCH 010/241] client_stats: Always emit client stats --- client/client.go | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/client/client.go b/client/client.go index 98faa36525b..fe55e04860c 100644 --- a/client/client.go +++ b/client/client.go @@ -2575,19 +2575,15 @@ func (c *Client) emitStats() { for { select { case <-next.C: - start := time.Now() err := c.hostStatsCollector.Collect() next.Reset(c.config.StatsCollectionInterval) - end := time.Now() - duration := end.Sub(start) if err != nil { - c.logger.Warn("error fetching host resource usage stats", "error", err, "collection_duration", duration) - continue - } - - // Publish Node metrics if operator has opted in - if c.config.PublishNodeMetrics { - c.emitHostStats() + c.logger.Warn("error fetching host resource usage stats", "error", err) + } else { + // Publish Node metrics if operator has opted in + if c.config.PublishNodeMetrics { + c.emitHostStats() + } } c.emitClientMetrics() From 4ba87cc77aeb003ec1a7af4c2d25055c9c6d9db8 Mon Sep 17 00:00:00 2001 From: Danielle Lancashire Date: Thu, 19 Sep 2019 04:17:42 +0200 Subject: [PATCH 011/241] command: Improve metrics fail logging --- command/agent/metrics_endpoint_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent/metrics_endpoint_test.go b/command/agent/metrics_endpoint_test.go index d1c65d0cd8b..d97fe2e69ca 100644 --- a/command/agent/metrics_endpoint_test.go +++ b/command/agent/metrics_endpoint_test.go @@ -121,7 +121,7 @@ func TestHTTP_FreshClientAllocMetrics(t *testing.T) { terminal == float32(numTasks), nil }, func(err error) { require.Fail("timed out waiting for metrics to converge", - "pending: %v, running: %v, terminal: %v", pending, running, terminal) + "expected: (pending: 0, running: 0, terminal: %v), got: (pending: %v, running: %v, terminal: %v)", numTasks, pending, running, terminal) }) }) } From 533a2df8cc843c6627bf501adcec4645738d60ca Mon Sep 17 00:00:00 2001 From: Peter McAtominey Date: Tue, 24 Sep 2019 07:05:40 -0700 Subject: [PATCH 012/241] command: add -tls-server-name flag --- api/api.go | 3 ++ command/meta.go | 30 ++++++++++++------- command/meta_test.go | 1 + .../docs/commands/_general_options.html.md | 3 ++ 4 files changed, 26 insertions(+), 11 deletions(-) diff --git a/api/api.go b/api/api.go index bacb7c3c9ef..a427b949fa5 100644 --- a/api/api.go +++ b/api/api.go @@ -257,6 +257,9 @@ func DefaultConfig() *Config { if v := os.Getenv("NOMAD_CLIENT_KEY"); v != "" { config.TLSConfig.ClientKey = v } + if v := os.Getenv("NOMAD_TLS_SERVER_NAME"); v != "" { + config.TLSConfig.TLSServerName = v + } if v := os.Getenv("NOMAD_SKIP_VERIFY"); v != "" { if insecure, err := strconv.ParseBool(v); err == nil { config.TLSConfig.Insecure = insecure diff --git a/command/meta.go b/command/meta.go index 8dc96e933fe..6e6f0e1e8c1 100644 --- a/command/meta.go +++ b/command/meta.go @@ -50,11 +50,12 @@ type Meta struct { // token is used for ACLs to access privileged information token string - caCert string - caPath string - clientCert string - clientKey string - insecure bool + caCert string + caPath string + clientCert string + clientKey string + tlsServerName string + insecure bool } // FlagSet returns a FlagSet with the common flags that every @@ -76,6 +77,7 @@ func (m *Meta) FlagSet(n string, fs FlagSetFlags) *flag.FlagSet { f.StringVar(&m.clientCert, "client-cert", "", "") f.StringVar(&m.clientKey, "client-key", "", "") f.BoolVar(&m.insecure, "insecure", false, "") + f.StringVar(&m.tlsServerName, "tls-server-name", "", "") f.BoolVar(&m.insecure, "tls-skip-verify", false, "") f.StringVar(&m.token, "token", "", "") @@ -113,6 +115,7 @@ func (m *Meta) AutocompleteFlags(fs FlagSetFlags) complete.Flags { "-client-cert": complete.PredictFiles("*"), "-client-key": complete.PredictFiles("*"), "-insecure": complete.PredictNothing, + "-tls-server-name": complete.PredictNothing, "-tls-skip-verify": complete.PredictNothing, "-token": complete.PredictAnything, } @@ -136,13 +139,14 @@ func (m *Meta) Client() (*api.Client, error) { } // If we need custom TLS configuration, then set it - if m.caCert != "" || m.caPath != "" || m.clientCert != "" || m.clientKey != "" || m.insecure { + if m.caCert != "" || m.caPath != "" || m.clientCert != "" || m.clientKey != "" || m.tlsServerName != "" || m.insecure { t := &api.TLSConfig{ - CACert: m.caCert, - CAPath: m.caPath, - ClientCert: m.clientCert, - ClientKey: m.clientKey, - Insecure: m.insecure, + CACert: m.caCert, + CAPath: m.caPath, + ClientCert: m.clientCert, + ClientKey: m.clientKey, + TLSServerName: m.tlsServerName, + Insecure: m.insecure, } config.TLSConfig = t } @@ -204,6 +208,10 @@ func generalOptionsUsage() string { Path to an unencrypted PEM encoded private key matching the client certificate from -client-cert. Overrides the NOMAD_CLIENT_KEY environment variable if set. + + -tls-server-name= + The server name to use as the SNI host when connecting via + TLS. Overrides the NOMAD_TLS_SERVER_NAME environment variable if set. -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. Verification diff --git a/command/meta_test.go b/command/meta_test.go index da20d37aa9b..c44a21be5d1 100644 --- a/command/meta_test.go +++ b/command/meta_test.go @@ -29,6 +29,7 @@ func TestMeta_FlagSet(t *testing.T) { "client-cert", "client-key", "insecure", + "tls-server-name", "tls-skip-verify", "token", }, diff --git a/website/source/docs/commands/_general_options.html.md b/website/source/docs/commands/_general_options.html.md index 86cba60fa8f..f1c4022e6eb 100644 --- a/website/source/docs/commands/_general_options.html.md +++ b/website/source/docs/commands/_general_options.html.md @@ -25,6 +25,9 @@ the client certificate from `-client-cert`. Overrides the `NOMAD_CLIENT_KEY` environment variable if set. +- `-tls-server-name=`: The server name to use as the SNI host when connecting + via TLS. Overrides the `NOMAD_TLS_SERVER_NAME` environment variable if set. + - `-tls-skip-verify`: Do not verify TLS certificate. This is highly not recommended. Verification will also be skipped if `NOMAD_SKIP_VERIFY` is set. From 3ca4e30fae0992d7a998c3ca594b0c8b3382f8a0 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 25 Oct 2019 09:25:42 -0400 Subject: [PATCH 013/241] Update go-multierror library Update multierror to latest as of now. Our version is very old and dates back to Sep 2015[1]. Here, we aim to pick up a panic fix found in n https://github.com/hashicorp/go-multierror/pull/11 (Dec 2016). This is a purely hygiene maintenance change. I am unaware of any causes of the panic in our current dependencies. Though, some private internal libraries did rely on the "recent" behavior of go-multierror, and I aimed to update here to ease our adoption of other libraries later. [1] https://github.com/hashicorp/go-multierror/commits/d30f09973e19c1dfcd120b2d9c4f168e68d6b5d5 --- .../hashicorp/go-multierror/Makefile | 31 +++++++++++++++++++ .../hashicorp/go-multierror/README.md | 6 ++++ .../hashicorp/go-multierror/append.go | 8 +++-- .../hashicorp/go-multierror/format.go | 8 +++-- .../github.com/hashicorp/go-multierror/go.mod | 3 ++ .../github.com/hashicorp/go-multierror/go.sum | 2 ++ .../hashicorp/go-multierror/multierror.go | 4 +-- .../hashicorp/go-multierror/sort.go | 16 ++++++++++ vendor/vendor.json | 2 +- 9 files changed, 73 insertions(+), 7 deletions(-) create mode 100644 vendor/github.com/hashicorp/go-multierror/Makefile create mode 100644 vendor/github.com/hashicorp/go-multierror/go.mod create mode 100644 vendor/github.com/hashicorp/go-multierror/go.sum create mode 100644 vendor/github.com/hashicorp/go-multierror/sort.go diff --git a/vendor/github.com/hashicorp/go-multierror/Makefile b/vendor/github.com/hashicorp/go-multierror/Makefile new file mode 100644 index 00000000000..b97cd6ed02b --- /dev/null +++ b/vendor/github.com/hashicorp/go-multierror/Makefile @@ -0,0 +1,31 @@ +TEST?=./... + +default: test + +# test runs the test suite and vets the code. +test: generate + @echo "==> Running tests..." + @go list $(TEST) \ + | grep -v "/vendor/" \ + | xargs -n1 go test -timeout=60s -parallel=10 ${TESTARGS} + +# testrace runs the race checker +testrace: generate + @echo "==> Running tests (race)..." + @go list $(TEST) \ + | grep -v "/vendor/" \ + | xargs -n1 go test -timeout=60s -race ${TESTARGS} + +# updatedeps installs all the dependencies needed to run and build. +updatedeps: + @sh -c "'${CURDIR}/scripts/deps.sh' '${NAME}'" + +# generate runs `go generate` to build the dynamically generated source files. +generate: + @echo "==> Generating..." + @find . -type f -name '.DS_Store' -delete + @go list ./... \ + | grep -v "/vendor/" \ + | xargs -n1 go generate + +.PHONY: default test testrace updatedeps generate diff --git a/vendor/github.com/hashicorp/go-multierror/README.md b/vendor/github.com/hashicorp/go-multierror/README.md index e81be50e0d3..ead5830f7b7 100644 --- a/vendor/github.com/hashicorp/go-multierror/README.md +++ b/vendor/github.com/hashicorp/go-multierror/README.md @@ -1,5 +1,11 @@ # go-multierror +[![Build Status](http://img.shields.io/travis/hashicorp/go-multierror.svg?style=flat-square)][travis] +[![Go Documentation](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)][godocs] + +[travis]: https://travis-ci.org/hashicorp/go-multierror +[godocs]: https://godoc.org/github.com/hashicorp/go-multierror + `go-multierror` is a package for Go that provides a mechanism for representing a list of `error` values as a single `error`. diff --git a/vendor/github.com/hashicorp/go-multierror/append.go b/vendor/github.com/hashicorp/go-multierror/append.go index 00afa9b3516..775b6e753e7 100644 --- a/vendor/github.com/hashicorp/go-multierror/append.go +++ b/vendor/github.com/hashicorp/go-multierror/append.go @@ -18,9 +18,13 @@ func Append(err error, errs ...error) *Error { for _, e := range errs { switch e := e.(type) { case *Error: - err.Errors = append(err.Errors, e.Errors...) + if e != nil { + err.Errors = append(err.Errors, e.Errors...) + } default: - err.Errors = append(err.Errors, e) + if e != nil { + err.Errors = append(err.Errors, e) + } } } diff --git a/vendor/github.com/hashicorp/go-multierror/format.go b/vendor/github.com/hashicorp/go-multierror/format.go index bb65a12e743..47f13c49a67 100644 --- a/vendor/github.com/hashicorp/go-multierror/format.go +++ b/vendor/github.com/hashicorp/go-multierror/format.go @@ -12,12 +12,16 @@ type ErrorFormatFunc func([]error) string // ListFormatFunc is a basic formatter that outputs the number of errors // that occurred along with a bullet point list of the errors. func ListFormatFunc(es []error) string { + if len(es) == 1 { + return fmt.Sprintf("1 error occurred:\n\t* %s\n\n", es[0]) + } + points := make([]string, len(es)) for i, err := range es { points[i] = fmt.Sprintf("* %s", err) } return fmt.Sprintf( - "%d error(s) occurred:\n\n%s", - len(es), strings.Join(points, "\n")) + "%d errors occurred:\n\t%s\n\n", + len(es), strings.Join(points, "\n\t")) } diff --git a/vendor/github.com/hashicorp/go-multierror/go.mod b/vendor/github.com/hashicorp/go-multierror/go.mod new file mode 100644 index 00000000000..2534331d5f9 --- /dev/null +++ b/vendor/github.com/hashicorp/go-multierror/go.mod @@ -0,0 +1,3 @@ +module github.com/hashicorp/go-multierror + +require github.com/hashicorp/errwrap v1.0.0 diff --git a/vendor/github.com/hashicorp/go-multierror/go.sum b/vendor/github.com/hashicorp/go-multierror/go.sum new file mode 100644 index 00000000000..e8238e9ec91 --- /dev/null +++ b/vendor/github.com/hashicorp/go-multierror/go.sum @@ -0,0 +1,2 @@ +github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= +github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= diff --git a/vendor/github.com/hashicorp/go-multierror/multierror.go b/vendor/github.com/hashicorp/go-multierror/multierror.go index 2ea08273290..89b1422d1d1 100644 --- a/vendor/github.com/hashicorp/go-multierror/multierror.go +++ b/vendor/github.com/hashicorp/go-multierror/multierror.go @@ -40,11 +40,11 @@ func (e *Error) GoString() string { } // WrappedErrors returns the list of errors that this Error is wrapping. -// It is an implementatin of the errwrap.Wrapper interface so that +// It is an implementation of the errwrap.Wrapper interface so that // multierror.Error can be used with that library. // // This method is not safe to be called concurrently and is no different -// than accessing the Errors field directly. It is implementd only to +// than accessing the Errors field directly. It is implemented only to // satisfy the errwrap.Wrapper interface. func (e *Error) WrappedErrors() []error { return e.Errors diff --git a/vendor/github.com/hashicorp/go-multierror/sort.go b/vendor/github.com/hashicorp/go-multierror/sort.go new file mode 100644 index 00000000000..fecb14e81c5 --- /dev/null +++ b/vendor/github.com/hashicorp/go-multierror/sort.go @@ -0,0 +1,16 @@ +package multierror + +// Len implements sort.Interface function for length +func (err Error) Len() int { + return len(err.Errors) +} + +// Swap implements sort.Interface function for swapping elements +func (err Error) Swap(i, j int) { + err.Errors[i], err.Errors[j] = err.Errors[j], err.Errors[i] +} + +// Less implements sort.Interface function for determining order +func (err Error) Less(i, j int) bool { + return err.Errors[i].Error() < err.Errors[j].Error() +} diff --git a/vendor/vendor.json b/vendor/vendor.json index fe000cbfc95..d459f7e26f8 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -213,7 +213,7 @@ {"path":"github.com/hashicorp/go-immutable-radix","checksumSHA1":"Cas2nprG6pWzf05A2F/OlnjUu2Y=","revision":"8aac2701530899b64bdea735a1de8da899815220","revisionTime":"2017-07-25T22:12:15Z"}, {"path":"github.com/hashicorp/go-memdb","checksumSHA1":"FMAvwDar2bQyYAW4XMFhAt0J5xA=","revision":"20ff6434c1cc49b80963d45bf5c6aa89c78d8d57","revisionTime":"2017-08-31T20:15:40Z"}, {"path":"github.com/hashicorp/go-msgpack/codec","checksumSHA1":"CKGYNUDKre3Z2g4hHNVfp5nTcfA=","revision":"23165f7bc3c2dda1891434ebb9da1511a7bafc1c","revisionTime":"2019-09-27T12:33:13Z","version":"upstream-08f7b40","versionExact":"upstream-08f7b40"}, - {"path":"github.com/hashicorp/go-multierror","checksumSHA1":"lrSl49G23l6NhfilxPM0XFs5rZo=","revision":"d30f09973e19c1dfcd120b2d9c4f168e68d6b5d5"}, + {"path":"github.com/hashicorp/go-multierror","checksumSHA1":"QGgN03VUP9+jV+bcETFIBG0o0fM=","revision":"bdca7bb83f603b80ef756bb953fe1dafa9cd00a2","revisionTime":"2019-07-22T21:38:33Z"}, {"path":"github.com/hashicorp/go-plugin","checksumSHA1":"Nwod22KYiOycjys2ITllhNE9mtE=","revision":"809113480b559c989ea9cfcff62e9d387961f60b","revisionTime":"2019-10-04T17:18:45Z"}, {"path":"github.com/hashicorp/go-plugin/internal/plugin","checksumSHA1":"uTvnRQ5UWn/bhRxbW/UCfYFseSc=","revision":"809113480b559c989ea9cfcff62e9d387961f60b","revisionTime":"2019-10-04T17:18:45Z"}, {"path":"github.com/hashicorp/go-plugin/internal/proto","checksumSHA1":"Ikbb1FngsPR79bHhr2UmKk4CblI=","revision":"f444068e8f5a19853177f7aa0aea7e7d95b5b528","revisionTime":"2018-12-12T15:08:38Z"}, From 55adef1f42b8649a1b3532d73053bebeb7bb64ce Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Fri, 25 Oct 2019 10:34:02 -0500 Subject: [PATCH 014/241] Update ivy-codemirror to unreleased commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This addon hasn’t been released in a while but we’d like to get the fix for this bug that’s causing an inability to copy long documents in Firefox: https://github.com/codemirror/CodeMirror/issues/2703 It also includes a deprecation fix: https://github.com/IvyApp/ivy-codemirror/pull/40 --- ui/config/deprecation-workflow.js | 3 --- ui/package.json | 2 +- ui/yarn.lock | 19 +++++++++---------- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/ui/config/deprecation-workflow.js b/ui/config/deprecation-workflow.js index 7521a2d3c5c..70de2b34612 100644 --- a/ui/config/deprecation-workflow.js +++ b/ui/config/deprecation-workflow.js @@ -5,9 +5,6 @@ self.deprecationWorkflow.config = { { handler: 'throw', matchId: 'ember-inflector.globals' }, { handler: 'throw', matchId: 'ember-runtime.deprecate-copy-copyable' }, { handler: 'throw', matchId: 'ember-console.deprecate-logger' }, - // Only used in ivy-codemirror. - // PR open: https://github.com/IvyApp/ivy-codemirror/pull/40/files - { handler: 'log', matchId: 'ember-component.send-action' }, { handler: 'log', matchId: 'ember-test-helpers.rendering-context.jquery-element' }, ], }; diff --git a/ui/package.json b/ui/package.json index 48c61f5c094..3312b0df289 100644 --- a/ui/package.json +++ b/ui/package.json @@ -98,7 +98,7 @@ "fuse.js": "^3.4.4", "husky": "^1.3.1", "is-ip": "^3.1.0", - "ivy-codemirror": "^2.1.0", + "ivy-codemirror": "IvyApp/ivy-codemirror#c3b7f49f8e6492878619f8055695581240cce21a", "lint-staged": "^8.1.5", "loader.js": "^4.7.0", "lodash.intersection": "^4.4.0", diff --git a/ui/yarn.lock b/ui/yarn.lock index 9ed59c38c68..0df4e8e590c 100644 --- a/ui/yarn.lock +++ b/ui/yarn.lock @@ -3918,10 +3918,10 @@ code-point-at@^1.0.0: resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= -codemirror@~5.15.0: - version "5.15.2" - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.15.2.tgz#58b3dc732c6d10d7aae806f4c7cdd56a9b87fe8f" - integrity sha1-WLPccyxtENeq6Ab0x83VapuH/o8= +codemirror@^5.47.0: + version "5.49.2" + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.49.2.tgz#c84fdaf11b19803f828b0c67060c7bc6d154ccad" + integrity sha512-dwJ2HRPHm8w51WB5YTF9J7m6Z5dtkqbU9ntMZ1dqXyFB9IpjoUFDj80ahRVEoVanfIp6pfASJbOlbWdEf8FOzQ== collection-visit@^1.0.0: version "1.0.0" @@ -4868,7 +4868,7 @@ ember-cli-babel-plugin-helpers@^1.0.0, ember-cli-babel-plugin-helpers@^1.1.0: resolved "https://registry.yarnpkg.com/ember-cli-babel-plugin-helpers/-/ember-cli-babel-plugin-helpers-1.1.0.tgz#de3baedd093163b6c2461f95964888c1676325ac" integrity sha512-Zr4my8Xn+CzO0gIuFNXji0eTRml5AxZUTDQz/wsNJ5AJAtyFWCY4QtKdoELNNbiCVGt1lq5yLiwTm4scGKu6xA== -ember-cli-babel@^6.0.0, ember-cli-babel@^6.0.0-beta.4, ember-cli-babel@^6.0.0-beta.7, ember-cli-babel@^6.11.0, ember-cli-babel@^6.16.0, ember-cli-babel@^6.18.0, ember-cli-babel@^6.3.0, ember-cli-babel@^6.6.0, ember-cli-babel@^6.7.2, ember-cli-babel@^6.8.0, ember-cli-babel@^6.8.1, ember-cli-babel@^6.8.2, ember-cli-babel@^6.9.0: +ember-cli-babel@^6.0.0-beta.4, ember-cli-babel@^6.0.0-beta.7, ember-cli-babel@^6.11.0, ember-cli-babel@^6.16.0, ember-cli-babel@^6.18.0, ember-cli-babel@^6.3.0, ember-cli-babel@^6.6.0, ember-cli-babel@^6.7.2, ember-cli-babel@^6.8.0, ember-cli-babel@^6.8.1, ember-cli-babel@^6.8.2, ember-cli-babel@^6.9.0: version "6.18.0" resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-6.18.0.tgz#3f6435fd275172edeff2b634ee7b29ce74318957" integrity sha512-7ceC8joNYxY2wES16iIBlbPSxwKDBhYwC8drU3ZEvuPDMwVv1KzxCNu1fvxyFEBWhwaRNTUxSCsEVoTd9nosGA== @@ -7917,13 +7917,12 @@ isurl@^1.0.0-alpha5: has-to-string-tag-x "^1.2.0" is-object "^1.0.1" -ivy-codemirror@^2.1.0: +ivy-codemirror@IvyApp/ivy-codemirror#c3b7f49f8e6492878619f8055695581240cce21a: version "2.1.0" - resolved "https://registry.yarnpkg.com/ivy-codemirror/-/ivy-codemirror-2.1.0.tgz#c06f1606c375610bf62b007a21a9e63f5854175e" - integrity sha1-wG8WBsN1YQv2KwB6IanmP1hUF14= + resolved "https://codeload.github.com/IvyApp/ivy-codemirror/tar.gz/c3b7f49f8e6492878619f8055695581240cce21a" dependencies: - codemirror "~5.15.0" - ember-cli-babel "^6.0.0" + codemirror "^5.47.0" + ember-cli-babel "^7.7.3" ember-cli-node-assets "^0.2.2" jquery-deferred@^0.3.0: From 5a0826fdf9501d846ecfb96ee9b28f29fa5fcd14 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Mon, 11 Nov 2019 14:41:51 +0000 Subject: [PATCH 015/241] Allow UI to query client directly Nomad web UI currently fails when querying client nodes for allocation state end endpoints, due to CORS policy. The issue is that CORS requests that are marked `withCredentials` need the http server to include a `Access-Control-Allow-Credentials` [1]. But Nomad Task Logs and filesystem requests include authenticating information and thus marked with `credentials=true`[2][3]. It's worth noting that the browser currently sends credentials and authentication token to servers anyway; it's just that the response is not made available to caller nomad ui javascript. For task logs specifically, nomad ui retries again by querying the web ui address (typically pointing to a nomad server) which will forward the request to the nomad client agent appropriately. [1] https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Credentials [2] https://github.com/hashicorp/nomad/blob/101d0373eec5d58761d05e67e03f38916997a6d2/ui/app/components/task-log.js#L50 [3] https://github.com/hashicorp/nomad/blob/101d0373eec5d58761d05e67e03f38916997a6d2/ui/app/services/token.js#L25-L39 --- command/agent/http.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/command/agent/http.go b/command/agent/http.go index cb18c7f31e5..37d237f2c2e 100644 --- a/command/agent/http.go +++ b/command/agent/http.go @@ -41,9 +41,10 @@ var ( // allowCORS sets permissive CORS headers for a handler allowCORS = cors.New(cors.Options{ - AllowedOrigins: []string{"*"}, - AllowedMethods: []string{"HEAD", "GET"}, - AllowedHeaders: []string{"*"}, + AllowedOrigins: []string{"*"}, + AllowedMethods: []string{"HEAD", "GET"}, + AllowedHeaders: []string{"*"}, + AllowCredentials: true, }) ) From 6ad44f7ea612124e554e7deb9f07fb01d0584f6a Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Mon, 11 Nov 2019 12:07:42 -0500 Subject: [PATCH 016/241] test rootfallthrough handler --- command/agent/http_test.go | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/command/agent/http_test.go b/command/agent/http_test.go index 6c4e637eb6e..085a1618fb6 100644 --- a/command/agent/http_test.go +++ b/command/agent/http_test.go @@ -21,6 +21,7 @@ import ( "github.com/hashicorp/nomad/nomad/structs/config" "github.com/hashicorp/nomad/testutil" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" "github.com/ugorji/go/codec" ) @@ -61,6 +62,50 @@ func BenchmarkHTTPRequests(b *testing.B) { }) } +// TestRootFallthrough tests rootFallthrough handler to +// verify redirect and 404 behavior +func TestRootFallthrough(t *testing.T) { + t.Parallel() + + cases := []struct { + desc string + path string + expectedCode int + }{ + { + desc: "unknown endpoint", + path: "/v1/unknown/endpoint", + expectedCode: 404, + }, + { + desc: "root", + path: "/", + expectedCode: 307, + }, + } + + s := makeHTTPServer(t, nil) + defer s.Shutdown() + + for _, tc := range cases { + t.Run(tc.desc, func(t *testing.T) { + + reqURL := fmt.Sprintf("http://%s%s", s.Agent.config.AdvertiseAddrs.HTTP, tc.path) + + // setup a client that doesn't follow redirects + client := &http.Client{ + CheckRedirect: func(_ *http.Request, _ []*http.Request) error { + return http.ErrUseLastResponse + }, + } + + resp, err := client.Get(reqURL) + require.NoError(t, err) + require.Equal(t, resp.StatusCode, tc.expectedCode) + }) + } +} + func TestSetIndex(t *testing.T) { t.Parallel() resp := httptest.NewRecorder() From e84eed84d4bd5d5f2e961e6d20ca6dafd19b30f7 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Mon, 11 Nov 2019 12:11:15 -0500 Subject: [PATCH 017/241] test /ui/ path --- command/agent/http_test.go | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/command/agent/http_test.go b/command/agent/http_test.go index 085a1618fb6..3cc7336ae48 100644 --- a/command/agent/http_test.go +++ b/command/agent/http_test.go @@ -73,12 +73,12 @@ func TestRootFallthrough(t *testing.T) { expectedCode int }{ { - desc: "unknown endpoint", + desc: "unknown endpoint 404s", path: "/v1/unknown/endpoint", expectedCode: 404, }, { - desc: "root", + desc: "root path redirects to ui", path: "/", expectedCode: 307, }, @@ -101,7 +101,13 @@ func TestRootFallthrough(t *testing.T) { resp, err := client.Get(reqURL) require.NoError(t, err) - require.Equal(t, resp.StatusCode, tc.expectedCode) + require.Equal(t, tc.expectedCode, resp.StatusCode) + + if tc.expectedCode == 307 { + loc, err := resp.Location() + require.NoError(t, err) + require.Equal(t, "/ui/", loc.Path) + } }) } } From 638434ae53ab8400800a0fd32cd90403609e8e3a Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Mon, 11 Nov 2019 23:22:25 +0000 Subject: [PATCH 018/241] nomad exec: check stdout for tty as well When inferring whether to use TTY, check both stdin and stdout are terminals. Otherwise, we get failures like the following: ``` $ nomad alloc exec --job example echo hi hi $ echo | nomad alloc exec --job example echo hi hi $ nomad alloc exec --job example echo hi | head -n1 failed to exec into task: not a terminal ``` --- command/alloc_exec.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/command/alloc_exec.go b/command/alloc_exec.go index 6dd845edbc7..71ed7f4a148 100644 --- a/command/alloc_exec.go +++ b/command/alloc_exec.go @@ -105,8 +105,8 @@ func (l *AllocExecCommand) Run(args []string) int { flags.BoolVar(&stdinOpt, "i", true, "") - stdinTty := isStdinTty() - flags.BoolVar(&ttyOpt, "t", stdinTty, "") + inferredTty := isTty() + flags.BoolVar(&ttyOpt, "t", inferredTty, "") if err := flags.Parse(args); err != nil { return 1 @@ -292,9 +292,11 @@ func (l *AllocExecCommand) execImpl(client *api.Client, alloc *api.Allocation, t alloc, task, tty, command, stdin, stdout, stderr, sizeCh, nil) } -func isStdinTty() bool { - _, isTerminal := term.GetFdInfo(os.Stdin) - return isTerminal +// isTty returns true if both stdin and stdout are a TTY +func isTty() bool { + _, isStdinTerminal := term.GetFdInfo(os.Stdin) + _, isStdoutTerminal := term.GetFdInfo(os.Stdout) + return isStdinTerminal && isStdoutTerminal } // setRawTerminal sets the stream terminal in raw mode, so process captures From e187a7f3f9aa8f7cfbbc1580c5763c3aff4dd480 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Tue, 12 Nov 2019 14:28:21 -0500 Subject: [PATCH 019/241] fix so assertions are test case driven --- command/agent/http_test.go | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/command/agent/http_test.go b/command/agent/http_test.go index 3cc7336ae48..189e32a5b8d 100644 --- a/command/agent/http_test.go +++ b/command/agent/http_test.go @@ -70,6 +70,7 @@ func TestRootFallthrough(t *testing.T) { cases := []struct { desc string path string + expectedPath string expectedCode int }{ { @@ -80,6 +81,7 @@ func TestRootFallthrough(t *testing.T) { { desc: "root path redirects to ui", path: "/", + expectedPath: "/ui/", expectedCode: 307, }, } @@ -87,26 +89,26 @@ func TestRootFallthrough(t *testing.T) { s := makeHTTPServer(t, nil) defer s.Shutdown() + // setup a client that doesn't follow redirects + client := &http.Client{ + CheckRedirect: func(_ *http.Request, _ []*http.Request) error { + return http.ErrUseLastResponse + }, + } + for _, tc := range cases { t.Run(tc.desc, func(t *testing.T) { reqURL := fmt.Sprintf("http://%s%s", s.Agent.config.AdvertiseAddrs.HTTP, tc.path) - // setup a client that doesn't follow redirects - client := &http.Client{ - CheckRedirect: func(_ *http.Request, _ []*http.Request) error { - return http.ErrUseLastResponse - }, - } - resp, err := client.Get(reqURL) require.NoError(t, err) require.Equal(t, tc.expectedCode, resp.StatusCode) - if tc.expectedCode == 307 { + if tc.expectedPath != "" { loc, err := resp.Location() require.NoError(t, err) - require.Equal(t, "/ui/", loc.Path) + require.Equal(t, tc.expectedPath, loc.Path) } }) } From 063cf1219a3c7ef49dd2dcfdd50cf3f5ec456a9a Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Tue, 12 Nov 2019 10:42:31 -0800 Subject: [PATCH 020/241] vault: allow overriding implicit vault constraint There's a bug in version parsing that breaks this constraint when using a prerelease enterprise version of Vault (eg 1.3.0-beta1+ent). While this does not fix the underlying bug it does provide a workaround for future issues related to the implicit constraint. Like the implicit Connect constraint: *all* implicit constraints should be overridable to allow users to workaround bugs or other factors should the need arise. --- CHANGELOG.md | 1 + nomad/job_endpoint.go | 7 ----- nomad/job_endpoint_hooks.go | 21 +++++++++++-- nomad/job_endpoint_test.go | 63 +++++++++++++++++++++++++++++++++++++ 4 files changed, 83 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9df002d155c..d781b5a93b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ BUG FIXES: * scheduler: Changes to devices in resource stanza should cause rescheduling [[GH-6644](https://github.com/hashicorp/nomad/issues/6644)] * api: Decompress web socket response body if gzipped on error responses [[GH-6650](https://github.com/hashicorp/nomad/issues/6650)] * api: Return a 404 if endpoint not found instead of redirecting to /ui/ [[GH-6658](https://github.com/hashicorp/nomad/issues/6658)] + * vault: Allow overriding implicit Vault version constraint [[GH-6687](https://github.com/hashicorp/nomad/issues/6687)] ## 0.10.1 (November 4, 2019) diff --git a/nomad/job_endpoint.go b/nomad/job_endpoint.go index a89d94e34d0..7f425930c9d 100644 --- a/nomad/job_endpoint.go +++ b/nomad/job_endpoint.go @@ -33,13 +33,6 @@ const ( ) var ( - // vaultConstraint is the implicit constraint added to jobs requesting a - // Vault token - vaultConstraint = &structs.Constraint{ - LTarget: "${attr.vault.version}", - RTarget: ">= 0.6.1", - Operand: structs.ConstraintVersion, - } // allowRescheduleTransition is the transition that allows failed // allocations to be force rescheduled. We create a one off diff --git a/nomad/job_endpoint_hooks.go b/nomad/job_endpoint_hooks.go index 2168c977f5d..3040a8449cc 100644 --- a/nomad/job_endpoint_hooks.go +++ b/nomad/job_endpoint_hooks.go @@ -8,6 +8,23 @@ import ( "github.com/hashicorp/nomad/nomad/structs" ) +const ( + // vaultConstraintLTarget is the lefthand side of the Vault constraint + // injected when Vault policies are used. If an existing constraint + // with this target exists it overrides the injected constraint. + vaultConstraintLTarget = "${attr.vault.version}" +) + +var ( + // vaultConstraint is the implicit constraint added to jobs requesting a + // Vault token + vaultConstraint = &structs.Constraint{ + LTarget: vaultConstraintLTarget, + RTarget: ">= 0.6.1", + Operand: structs.ConstraintVersion, + } +) + type admissionController interface { Name() string } @@ -112,7 +129,7 @@ func (jobImpliedConstraints) Mutate(j *structs.Job) (*structs.Job, []error, erro return j, nil, nil } - // Add Vault constraints + // Add Vault constraints if no Vault constraint exists for _, tg := range j.TaskGroups { _, ok := policies[tg.Name] if !ok { @@ -122,7 +139,7 @@ func (jobImpliedConstraints) Mutate(j *structs.Job) (*structs.Job, []error, erro found := false for _, c := range tg.Constraints { - if c.Equals(vaultConstraint) { + if c.LTarget == vaultConstraintLTarget { found = true break } diff --git a/nomad/job_endpoint_test.go b/nomad/job_endpoint_test.go index 9836692ec34..965834ae76a 100644 --- a/nomad/job_endpoint_test.go +++ b/nomad/job_endpoint_test.go @@ -847,6 +847,8 @@ func TestJobEndpoint_Register_EnforceIndex(t *testing.T) { } } +// TestJobEndpoint_Register_Vault_Disabled asserts that submitting a job that +// uses Vault when Vault is *disabled* results in an error. func TestJobEndpoint_Register_Vault_Disabled(t *testing.T) { t.Parallel() s1 := TestServer(t, func(c *Config) { @@ -880,6 +882,9 @@ func TestJobEndpoint_Register_Vault_Disabled(t *testing.T) { } } +// TestJobEndpoint_Register_Vault_AllowUnauthenticated asserts submitting a job +// with a Vault policy but without a Vault token is *succeeds* if +// allow_unauthenticated=true. func TestJobEndpoint_Register_Vault_AllowUnauthenticated(t *testing.T) { t.Parallel() s1 := TestServer(t, func(c *Config) { @@ -933,6 +938,64 @@ func TestJobEndpoint_Register_Vault_AllowUnauthenticated(t *testing.T) { } } +// TestJobEndpoint_Register_Vault_OverrideConstraint asserts that job +// submitters can specify their own Vault constraint to override the +// automatically injected one. +func TestJobEndpoint_Register_Vault_OverrideConstraint(t *testing.T) { + t.Parallel() + s1 := TestServer(t, func(c *Config) { + c.NumSchedulers = 0 // Prevent automatic dequeue + }) + defer s1.Shutdown() + codec := rpcClient(t, s1) + testutil.WaitForLeader(t, s1.RPC) + + // Enable vault and allow authenticated + tr := true + s1.config.VaultConfig.Enabled = &tr + s1.config.VaultConfig.AllowUnauthenticated = &tr + + // Replace the Vault Client on the server + s1.vault = &TestVaultClient{} + + // Create the register request with a job asking for a vault policy + job := mock.Job() + job.TaskGroups[0].Tasks[0].Vault = &structs.Vault{ + Policies: []string{"foo"}, + ChangeMode: structs.VaultChangeModeRestart, + } + job.TaskGroups[0].Tasks[0].Constraints = []*structs.Constraint{ + { + LTarget: "${attr.vault.version}", + Operand: "is_set", + }, + } + req := &structs.JobRegisterRequest{ + Job: job, + WriteRequest: structs.WriteRequest{ + Region: "global", + Namespace: job.Namespace, + }, + } + + // Fetch the response + var resp structs.JobRegisterResponse + err := msgpackrpc.CallWithCodec(codec, "Job.Register", req, &resp) + + // Check for the job in the FSM + state := s1.fsm.State() + ws := memdb.NewWatchSet() + out, err := state.JobByID(ws, job.Namespace, job.ID) + require.NoError(t, err) + require.NotNil(t, out) + require.Equal(t, resp.JobModifyIndex, out.CreateIndex) + + // Assert constraint was not overridden by the server + outConstraints := out.TaskGroups[0].Tasks[0].Constraints + require.Len(t, outConstraints, 1) + require.True(t, job.TaskGroups[0].Tasks[0].Constraints[0].Equals(outConstraints[0])) +} + func TestJobEndpoint_Register_Vault_NoToken(t *testing.T) { t.Parallel() s1 := TestServer(t, func(c *Config) { From d8789ece4264bf9a31c13df0c3cdce0494dcc64a Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Tue, 12 Nov 2019 17:32:21 -0500 Subject: [PATCH 021/241] Fix link; discuss meta; lint fixes --- .../source/docs/configuration/client.html.md | 17 +++++++++++------ .../docs/job-specification/constraint.html.md | 9 +++++---- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/website/source/docs/configuration/client.html.md b/website/source/docs/configuration/client.html.md index 8fbeef67013..a10746b5cb7 100644 --- a/website/source/docs/configuration/client.html.md +++ b/website/source/docs/configuration/client.html.md @@ -64,7 +64,7 @@ driver) but will be removed in a future release. - `network_interface` `(string: varied)` - Specifies the name of the interface to force network fingerprinting on. When run in dev mode, this defaults to the loopback interface. When not in dev mode, the interface attached to the - default route is used. The scheduler chooses from these fingerprinted IP + default route is used. The scheduler chooses from these fingerprinted IP addresses when allocating ports for tasks. If no non-local IP addresses are found, Nomad could fingerprint link-local IPv6 @@ -152,12 +152,12 @@ driver) but will be removed in a future release. which the client will use to allocate IP addresses from. - `template` ([Template](#template-parameters): nil) - Specifies - controls on the behavior of task [`template`](/docs/job-specification/template.html) stanzas. + controls on the behavior of task + [`template`](/docs/job-specification/template.html) stanzas. - `host_volume` ([host_volume](#host_volume-stanza): nil) - Exposes paths from the host as volumes that can be mounted into jobs. - ### `chroot_env` Parameters Drivers based on [isolated fork/exec](/docs/drivers/exec.html) implement file @@ -340,7 +340,6 @@ see the [drivers documentation](/docs/drivers/index.html). reserve on all fingerprinted network devices. Ranges can be specified by using a hyphen separated the two inclusive ends. - ### `template` Parameters - `function_blacklist` `([]string: ["plugin"])` - Specifies a list of template @@ -356,7 +355,7 @@ see the [drivers documentation](/docs/drivers/index.html). The `host_volume` stanza is used to make volumes available to jobs. -The key of the stanza corresponds to the name of the volume for use in the +The key of the stanza corresponds to the name of the volume for use in the `source` parameter of a `"host"` type [`volume`](/docs/job-specification/volume.html) and ACLs. @@ -418,7 +417,9 @@ client { ### Custom Metadata, Network Speed, and Node Class This example shows a client configuration which customizes the metadata, network -speed, and node class. +speed, and node class. The scheduler can use this information while processing +[constraints][metadata_constraint]. The metadata is completely user configurable; +the values below are for illustrative purposes only. ```hcl client { @@ -428,9 +429,13 @@ client { meta { "owner" = "ops" + "cached_binaries" = "redis,apache,nginx,jq,cypress,nodejs" + "rack" = "rack-12-1" } } ``` + [plugin-options]: #plugin-options [plugin-stanza]: /docs/configuration/plugin.html [server-join]: /docs/configuration/server_join.html "Server Join" +[metadata_constraint]: /docs/job-specification/constraint.html#user-specified-metadata "Nomad User-Specified Metadata Constraint Example" diff --git a/website/source/docs/job-specification/constraint.html.md b/website/source/docs/job-specification/constraint.html.md index 0425cff3a3c..52c364400e3 100644 --- a/website/source/docs/job-specification/constraint.html.md +++ b/website/source/docs/job-specification/constraint.html.md @@ -138,7 +138,7 @@ constraint { must be 1 or greater and if omitted, defaults to 1. When specified as a job constraint, it applies to all groups in the job. When specified as a group constraint, the effect is constrained to that group. This constraint can not - be specified at the task level. + be specified at the task level. ```hcl constraint { @@ -203,7 +203,7 @@ constraint { before checking for equality. The default behavior for `"!="` is to include nodes that don't have that attribute set. -- `"is_not_set"` - Specifies that a given attribute must not be present. +- `"is_not_set"` - Specifies that a given attribute must not be present. ## `constraint` Examples @@ -227,7 +227,7 @@ constraint { A potential use case of the `distinct_property` constraint is to spread a service with `count > 1` across racks to minimize correlated failure. Nodes can -be annotated with which rack they are on using [client +be annotated with which rack they are on using [custom client metadata][client-meta] with values such as "rack-12-1", "rack-12-2", etc. The following constraint would assure that an individual rack is not running more than 2 instances of the task group. @@ -273,7 +273,7 @@ constraint { This example restricts the task to running on nodes where the binaries for redis, cypress, and nginx are all cached locally. This particular example is -utilizing node [metadata][meta]. +utilizing [custom client metadata][client-meta]. ```hcl constraint { @@ -288,3 +288,4 @@ constraint { [task]: /docs/job-specification/task.html "Nomad task Job Specification" [interpolation]: /docs/runtime/interpolation.html "Nomad interpolation" [node-variables]: /docs/runtime/interpolation.html#node-variables- "Nomad interpolation-Node variables" +[client-meta]: /docs/configuration/client.html#custom-metadata-network-speed-and-node-class "Nomad Custom Metadata, Network Speed, and Node Class" From bbefae5506b080d518363320175eb9cbc662f01d Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Wed, 13 Nov 2019 05:18:20 -0800 Subject: [PATCH 022/241] command: error handling before file close (#6681) --- command/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/helpers.go b/command/helpers.go index 364c7392930..38b986870e3 100644 --- a/command/helpers.go +++ b/command/helpers.go @@ -421,10 +421,10 @@ func (j *JobGetter) ApiJob(jpath string) (*api.Job, error) { return nil, fmt.Errorf("Error getting jobfile from %q: %v", jpath, err) } else { file, err := os.Open(job.Name()) - defer file.Close() if err != nil { return nil, fmt.Errorf("Error opening file %q: %v", jpath, err) } + defer file.Close() jobfile = file } } From 75476e350db4fcb3720d08481da2b7e768d7e094 Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Wed, 13 Nov 2019 05:20:01 -0800 Subject: [PATCH 023/241] command/agent: Prune Dead Code (#6682) * remove unused MockPeriodicJob() from tests * remove unused getIndex() from tests * remove unused checkIndex() from tests * remove unused assertIndex() from tests * remove unused Agent.findLoopbackDevice() --- command/agent/agent.go | 34 ------------------------------ command/agent/http_test.go | 31 --------------------------- command/agent/testingutils_test.go | 11 ---------- 3 files changed, 76 deletions(-) diff --git a/command/agent/agent.go b/command/agent/agent.go index 26f9e00a87c..7695d7dea5a 100644 --- a/command/agent/agent.go +++ b/command/agent/agent.go @@ -832,40 +832,6 @@ func (a *Agent) reservePortsForClient(conf *clientconfig.Config) error { return nil } -// findLoopbackDevice iterates through all the interfaces on a machine and -// returns the ip addr, mask of the loopback device -func (a *Agent) findLoopbackDevice() (string, string, string, error) { - var ifcs []net.Interface - var err error - ifcs, err = net.Interfaces() - if err != nil { - return "", "", "", err - } - for _, ifc := range ifcs { - addrs, err := ifc.Addrs() - if err != nil { - return "", "", "", err - } - for _, addr := range addrs { - var ip net.IP - switch v := addr.(type) { - case *net.IPNet: - ip = v.IP - case *net.IPAddr: - ip = v.IP - } - if ip.IsLoopback() { - if ip.To4() == nil { - continue - } - return ifc.Name, ip.String(), addr.String(), nil - } - } - } - - return "", "", "", fmt.Errorf("no loopback devices with IPV4 addr found") -} - // Leave is used gracefully exit. Clients will inform servers // of their departure so that allocations can be rescheduled. func (a *Agent) Leave() error { diff --git a/command/agent/http_test.go b/command/agent/http_test.go index 6c4e637eb6e..648f8d3b9bf 100644 --- a/command/agent/http_test.go +++ b/command/agent/http_test.go @@ -12,7 +12,6 @@ import ( "net/http" "net/http/httptest" "net/url" - "strconv" "testing" "time" @@ -525,23 +524,6 @@ func TestHTTP_VerifyHTTPSClient(t *testing.T) { } } -// assertIndex tests that X-Nomad-Index is set and non-zero -func assertIndex(t *testing.T, resp *httptest.ResponseRecorder) { - header := resp.Header().Get("X-Nomad-Index") - if header == "" || header == "0" { - t.Fatalf("Bad: %v", header) - } -} - -// checkIndex is like assertIndex but returns an error -func checkIndex(resp *httptest.ResponseRecorder) error { - header := resp.Header().Get("X-Nomad-Index") - if header == "" || header == "0" { - return fmt.Errorf("Bad: %v", header) - } - return nil -} - func TestHTTP_VerifyHTTPSClient_AfterConfigReload(t *testing.T) { t.Parallel() assert := assert.New(t) @@ -644,19 +626,6 @@ func TestHTTP_VerifyHTTPSClient_AfterConfigReload(t *testing.T) { } } -// getIndex parses X-Nomad-Index -func getIndex(t *testing.T, resp *httptest.ResponseRecorder) uint64 { - header := resp.Header().Get("X-Nomad-Index") - if header == "" { - t.Fatalf("Bad: %v", header) - } - val, err := strconv.Atoi(header) - if err != nil { - t.Fatalf("Bad: %v", header) - } - return uint64(val) -} - func httpTest(t testing.TB, cb func(c *Config), f func(srv *TestAgent)) { s := makeHTTPServer(t, cb) defer s.Shutdown() diff --git a/command/agent/testingutils_test.go b/command/agent/testingutils_test.go index 3d821cd597a..8a78f1e3675 100644 --- a/command/agent/testingutils_test.go +++ b/command/agent/testingutils_test.go @@ -99,17 +99,6 @@ func MockJob() *api.Job { return job } -func MockPeriodicJob() *api.Job { - j := MockJob() - j.Type = helper.StringToPtr("batch") - j.Periodic = &api.PeriodicConfig{ - Enabled: helper.BoolToPtr(true), - SpecType: helper.StringToPtr("cron"), - Spec: helper.StringToPtr("*/30 * * * *"), - } - return j -} - func MockRegionalJob() *api.Job { j := MockJob() j.Region = helper.StringToPtr("north-america") From 7004ff3a9d6252a42c487be2a3166f8fae9800e4 Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Wed, 13 Nov 2019 12:49:41 -0800 Subject: [PATCH 024/241] nomad: fix dropped test error --- nomad/job_endpoint_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/nomad/job_endpoint_test.go b/nomad/job_endpoint_test.go index 965834ae76a..8f1380d2544 100644 --- a/nomad/job_endpoint_test.go +++ b/nomad/job_endpoint_test.go @@ -981,6 +981,7 @@ func TestJobEndpoint_Register_Vault_OverrideConstraint(t *testing.T) { // Fetch the response var resp structs.JobRegisterResponse err := msgpackrpc.CallWithCodec(codec, "Job.Register", req, &resp) + require.NoError(t, err) // Check for the job in the FSM state := s1.fsm.State() From 10241039d4193eaf84deb05e6aa2ab01781f6864 Mon Sep 17 00:00:00 2001 From: Luiz Aoqui Date: Wed, 13 Nov 2019 17:26:35 -0500 Subject: [PATCH 025/241] api: add `StartedAt` in `Node.DrainStrategy` --- api/nodes.go | 3 +++ nomad/node_endpoint.go | 11 ++++++++++- nomad/node_endpoint_test.go | 17 ++++++++++++++--- nomad/structs/structs.go | 3 +++ 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/api/nodes.go b/api/nodes.go index 837cd149e3c..4a264eb4d33 100644 --- a/api/nodes.go +++ b/api/nodes.go @@ -521,6 +521,9 @@ type DrainStrategy struct { // ForceDeadline is the deadline time for the drain after which drains will // be forced ForceDeadline time.Time + + // StartedAt is the time the drain process started + StartedAt time.Time } // DrainSpec describes a Node's drain behavior. diff --git a/nomad/node_endpoint.go b/nomad/node_endpoint.go index 80f97eb3eb0..954416e1463 100644 --- a/nomad/node_endpoint.go +++ b/nomad/node_endpoint.go @@ -536,9 +536,18 @@ func (n *Node) UpdateDrain(args *structs.NodeUpdateDrainRequest, } } + // Mark start time for the drain + if args.DrainStrategy != nil { + if node.DrainStrategy == nil || node.DrainStrategy.StartedAt.IsZero() { + args.DrainStrategy.StartedAt = time.Now().UTC() + } else { + args.DrainStrategy.StartedAt = node.DrainStrategy.StartedAt + } + } + // Mark the deadline time if args.DrainStrategy != nil && args.DrainStrategy.Deadline.Nanoseconds() > 0 { - args.DrainStrategy.ForceDeadline = time.Now().Add(args.DrainStrategy.Deadline) + args.DrainStrategy.ForceDeadline = time.Now().Add(args.DrainStrategy.Deadline).UTC() } // Construct the node event diff --git a/nomad/node_endpoint_test.go b/nomad/node_endpoint_test.go index 48157044924..a61c2905ce4 100644 --- a/nomad/node_endpoint_test.go +++ b/nomad/node_endpoint_test.go @@ -906,6 +906,17 @@ func TestClientEndpoint_UpdateDrain(t *testing.T) { // now+deadline should be after the forced deadline require.True(time.Now().Add(strategy.Deadline).After(out.DrainStrategy.ForceDeadline)) + drainStartedAt := out.DrainStrategy.StartedAt + // StartedAt should be close to the time the drain started + require.WithinDuration(beforeUpdate, out.DrainStrategy.StartedAt, 1*time.Second) + + // StartedAt shouldn't change if a new request comes while still draining + require.Nil(msgpackrpc.CallWithCodec(codec, "Node.UpdateDrain", dereg, &resp2)) + ws = memdb.NewWatchSet() + out, err = state.NodeByID(ws, node.ID) + require.NoError(err) + require.True(out.DrainStrategy.StartedAt.Equal(drainStartedAt)) + // Register a system job job := mock.SystemJob() require.Nil(s1.State().UpsertJob(10, job)) @@ -923,8 +934,8 @@ func TestClientEndpoint_UpdateDrain(t *testing.T) { ws = memdb.NewWatchSet() out, err = state.NodeByID(ws, node.ID) require.NoError(err) - require.Len(out.Events, 3) - require.Equal(NodeDrainEventDrainDisabled, out.Events[2].Message) + require.Len(out.Events, 4) + require.Equal(NodeDrainEventDrainDisabled, out.Events[3].Message) // Check that calling UpdateDrain with the same DrainStrategy does not emit // a node event. @@ -932,7 +943,7 @@ func TestClientEndpoint_UpdateDrain(t *testing.T) { ws = memdb.NewWatchSet() out, err = state.NodeByID(ws, node.ID) require.NoError(err) - require.Len(out.Events, 3) + require.Len(out.Events, 4) } func TestClientEndpoint_UpdateDrain_ACL(t *testing.T) { diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index d96e4cf6e7e..585adec36f4 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -1445,6 +1445,9 @@ type DrainStrategy struct { // ForceDeadline is the deadline time for the drain after which drains will // be forced ForceDeadline time.Time + + // StartedAt is the time the drain process started + StartedAt time.Time } func (d *DrainStrategy) Copy() *DrainStrategy { From 0719f5983fb091dc37769d0d4439a64246a20d3e Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Wed, 13 Nov 2019 11:39:03 -0500 Subject: [PATCH 026/241] updates consul template deps to v0.22.1 pin to v0.22.1 --- .../hashicorp/consul-template/CHANGELOG.md | 48 ++- .../hashicorp/consul-template/Makefile | 36 ++- .../hashicorp/consul-template/README.md | 274 ++++++++++++++++-- .../hashicorp/consul-template/child/child.go | 27 +- .../hashicorp/consul-template/cli.go | 7 +- .../consul-template/dependency/dependency.go | 2 +- .../dependency/vault_common.go | 72 ++++- .../consul-template/dependency/vault_read.go | 111 +++---- .../consul-template/dependency/vault_token.go | 58 +--- .../consul-template/dependency/vault_write.go | 101 +++---- .../hashicorp/consul-template/go.mod | 5 +- .../hashicorp/consul-template/go.sum | 9 +- .../consul-template/manager/runner.go | 59 ++-- .../consul-template/renderer/renderer.go | 42 +-- .../consul-template/template/funcs.go | 164 ++++++++++- .../consul-template/template/template.go | 10 +- .../consul-template/version/version.go | 2 +- .../hashicorp/consul-template/watch/view.go | 19 ++ vendor/vendor.json | 23 +- 19 files changed, 766 insertions(+), 303 deletions(-) diff --git a/vendor/github.com/hashicorp/consul-template/CHANGELOG.md b/vendor/github.com/hashicorp/consul-template/CHANGELOG.md index e04dcccdb22..a64a51225e8 100644 --- a/vendor/github.com/hashicorp/consul-template/CHANGELOG.md +++ b/vendor/github.com/hashicorp/consul-template/CHANGELOG.md @@ -1,3 +1,49 @@ +## v0.22.1 (Nov 08, 2019) + +SECURITY: + +* curl is vulnerable in the latest alpine docker image [[GH-1302](https://github.com/hashicorp/consul-template/issues/1302)] + +## v0.22.0 (September 10, 2019) + +IMPROVEMENTS: + +* Add rate limiting to consul api calls [[GH-1279](https://github.com/hashicorp/consul-template/pull/1279)] +* Add `byMeta` function [[GH-1237](https://github.com/hashicorp/consul-template/pull/1237)] +* Add support for : and = in service tag values [[GH-1149](https://github.com/hashicorp/consul-template/pull/1149), [GH-1049](https://github.com/hashicorp/consul-template/issues/1049)] +* Add `explodeMap` function [[GH-1148](https://github.com/hashicorp/consul-template/pull/1148)] +* Don't wait for splay when stopping child runner [[GH-1141](https://github.com/hashicorp/consul-template/pull/1141)] +* Add `safels` and `safetree` functions [[GH-1132](https://github.com/hashicorp/consul-template/pull/1132)] +* Support Vault certificates with no lease [[GH-1106](https://github.com/hashicorp/consul-template/pull/1106)] +* Add wrapper function for go-sockaddr templating [[GH-1087](https://github.com/hashicorp/consul-template/pull/1087)] +* Build binaries for arm64 platform [[GH-1251](https://github.com/hashicorp/consul-template/pull/1251)] + +BUG FIXES: + +* Fix arm/arm64 builds by enabling CGO and restricting builds to Linux [workaround for [go/issues/32912](https://github.com/golang/go/issues/32912)] + +## v0.21.3 (September 05, 2019) + +BUG FIXES: + +* Fix regression in non-renewable sleep [[GH-1277](https://github.com/hashicorp/consul-template/pull/1277), [GH-1272](https://github.com/hashicorp/consul-template/issues/1272), [GH-1276](https://github.com/hashicorp/consul-template/issues/1276)] + +## v0.21.2 (August 31, 2019) + +BUG FIXES: + +* Fix regression in backup [[GH-1271](https://github.com/hashicorp/consul-template/pull/1271), [GH-1270](https://github.com/hashicorp/consul-template/issues/1270)] + +## v0.21.1 (August 30, 2019) + +BUG FIXES: + +* Fixed issue in Vault call retry logic [[GH-1269](https://github.com/hashicorp/consul-template/pull/1269), [GH-1224](https://github.com/hashicorp/consul-template/issues/1224)] +* Fixed race in backup [[GH-1265](https://github.com/hashicorp/consul-template/pull/1265), [GH-1264](https://github.com/hashicorp/consul-template/issues/1264)] +* Fixed issue when reading deleted secret [[GH-1260](https://github.com/hashicorp/consul-template/pull/1260), [GH-1198](https://github.com/hashicorp/consul-template/issues/1198)] +* Fix issue with Vault writes [[GH-1257](https://github.com/hashicorp/consul-template/pull/1257), [GH-1252](https://github.com/hashicorp/consul-template/issues/1252)] +* Fix loop to work with template set integers [[GH-1255](https://github.com/hashicorp/consul-template/pull/1255), [GH-1143](https://github.com/hashicorp/consul-template/issues/1143)] + ## v0.21.0 (August 05, 2019) IMPROVEMENTS: @@ -13,7 +59,7 @@ BUG FIXES: * Fixed issue with templates not rendering with `-once` [[GH-1227](https://github.com/hashicorp/consul-template/pull/1227), [GH-1196](https://github.com/hashicorp/consul-template/issues/1196), [GH-1207](https://github.com/hashicorp/consul-template/issues/1207)] * Fixed regression with ~/.vault-token and with vault_agent_token_file not respecting renew_token [[GH-1228](https://github.com/hashicorp/consul-template/issues/1228), [GH-1189](https://github.com/hashicorp/consul-template/issues/1189)] * CA certificates missing from docker 'light' image [[GH-1200](https://github.com/hashicorp/consul-template/issues/1200)] -* Fixed issue with dedup data garbage in Consul KV [[GH-1158](https://github.com/hashicorp/consul-template/issues/1158), [[GH-1168](https://github.com/hashicorp/consul-template/issues/1168)] +* Fixed issue with dedup data garbage in Consul KV [[GH-1158](https://github.com/hashicorp/consul-template/issues/1158), [GH-1168](https://github.com/hashicorp/consul-template/issues/1168)] * Fixed bad case in import path [[GH-1139](https://github.com/hashicorp/consul-template/issues/1139)] * Documented limits on using "." in service names [[GH-1205](https://github.com/hashicorp/consul-template/issues/1205)] diff --git a/vendor/github.com/hashicorp/consul-template/Makefile b/vendor/github.com/hashicorp/consul-template/Makefile index 0d5e40b508e..7d97be30ede 100644 --- a/vendor/github.com/hashicorp/consul-template/Makefile +++ b/vendor/github.com/hashicorp/consul-template/Makefile @@ -14,11 +14,11 @@ GOTAGS ?= GOMAXPROCS ?= 4 # Get the project metadata -GO_DOCKER_VERSION ?= 1.12 +GO_DOCKER_VERSION ?= 1.13 PROJECT := $(shell go list -m -mod=vendor) OWNER := "hashicorp" NAME := $(notdir $(PROJECT)) -GIT_COMMIT ?= $(shell git rev-parse --short HEAD) +GIT_COMMIT ?= $(shell git rev-parse --short HEAD || echo release) VERSION := $(shell awk -F\" '/Version/ { print $$2; exit }' "${CURRENT_DIR}/version/version.go") # Current system information @@ -27,8 +27,9 @@ GOARCH ?= $(shell go env GOARCH) # Default os-arch combination to build XC_OS ?= darwin freebsd linux netbsd openbsd solaris windows -XC_ARCH ?= 386 amd64 arm -XC_EXCLUDE ?= darwin/arm solaris/386 solaris/arm windows/arm +XC_ARCH ?= 386 amd64 arm arm64 +# XC_EXCLUDE "arm64" entries excludes both arm and arm64 +XC_EXCLUDE ?= darwin/arm64 freebsd/arm64 netbsd/arm64 openbsd/arm64 solaris/386 solaris/arm64 windows/arm64 # GPG Signing key (blank by default, means no GPG signing) GPG_KEY ?= @@ -52,8 +53,15 @@ define make-xc-target @printf "%s%20s %s\n" "-->" "${1}/${2}:" "${PROJECT} (excluded)" else @printf "%s%20s %s\n" "-->" "${1}/${2}:" "${PROJECT}" + case "$2" in \ + arm) export CGO_ENABLED="1" ; \ + export GOARM=5 \ + export CC="arm-linux-gnueabi-gcc" ;; \ + arm64) export CGO_ENABLED="1" ; \ + export CC="aarch64-linux-gnu-gcc" ;; \ + *) export CGO_ENABLED="0" ;; \ + esac ; \ env \ - CGO_ENABLED="0" \ GOOS="${1}" \ GOARCH="${2}" \ go build \ @@ -73,7 +81,16 @@ endef $(foreach goarch,$(XC_ARCH),$(foreach goos,$(XC_OS),$(eval $(call make-xc-target,$(goos),$(goarch),$(if $(findstring windows,$(goos)),.exe,))))) # Use docker to create pristine builds for release +# First build image w/ arm build requirements, then build all binaries pristine: + @docker build \ + --rm \ + --force-rm \ + --no-cache \ + --compress \ + --file="docker/pristine/Dockerfile" \ + --build-arg="GOVERSION=${GO_DOCKER_VERSION}" \ + --tag="pristine-builder" . @docker run \ --interactive \ --user $$(id -u):$$(id -g) \ @@ -82,9 +99,9 @@ pristine: --volume="${CURRENT_DIR}:/go/src/${PROJECT}" \ --volume="${GOPATH}/pkg/mod:/go/pkg/mod" \ --workdir="/go/src/${PROJECT}" \ - --env=CGO_ENABLED="0" \ --env=GO111MODULE=on \ - "golang:${GO_DOCKER_VERSION}" env GOCACHE=/tmp make -j4 build + "pristine-builder" \ + env GOCACHE=/tmp make -j4 build # dev builds and installs the project locally. dev: @@ -229,3 +246,8 @@ _sign: @echo "" @echo "And then upload the binaries in dist/!" .PHONY: _sign + +# Add/Update the "Table Of Contents" in the README.md +toc: + @./scripts/readme-toc.sh +.PHONY: toc diff --git a/vendor/github.com/hashicorp/consul-template/README.md b/vendor/github.com/hashicorp/consul-template/README.md index fb8f34dab9b..0fcd8e81608 100644 --- a/vendor/github.com/hashicorp/consul-template/README.md +++ b/vendor/github.com/hashicorp/consul-template/README.md @@ -20,6 +20,103 @@ this functionality might prove useful. --- +## Table of Contents + +- [Community Support](#community-support) +- [Installation](#installation) +- [Quick Example](#quick-example) +- [Usage](#usage) + - [Command Line Flags](#command-line-flags) + - [Configuration File Format](#configuration-file-format) + - [Templating Language](#templating-language) + - [API Functions](#api-functions) + - [datacenters](#datacenters) + - [file](#file) + - [key](#key) + - [keyExists](#keyexists) + - [keyOrDefault](#keyordefault) + - [ls](#ls) + - [safeLs](#safels) + - [node](#node) + - [nodes](#nodes) + - [secret](#secret) + - [secrets](#secrets) + - [service](#service) + - [services](#services) + - [tree](#tree) + - [safeTree](#safetree) + - [Scratch](#scratch) + - [scratch.Key](#scratchkey) + - [scratch.Get](#scratchget) + - [scratch.Set](#scratchset) + - [scratch.SetX](#scratchsetx) + - [scratch.MapSet](#scratchmapset) + - [scratch.MapSetX](#scratchmapsetx) + - [scratch.MapValues](#scratchmapvalues) + - [Helper Functions](#helper-functions) + - [base64Decode](#base64decode) + - [base64Encode](#base64encode) + - [base64URLDecode](#base64urldecode) + - [base64URLEncode](#base64urlencode) + - [byKey](#bykey) + - [byTag](#bytag) + - [byMeta](#bymeta) + - [contains](#contains) + - [containsAll](#containsall) + - [containsAny](#containsany) + - [containsNone](#containsnone) + - [containsNotAll](#containsnotall) + - [env](#env) + - [executeTemplate](#executetemplate) + - [explode](#explode) + - [explodeMap](#explodemap) + - [indent](#indent) + - [in](#in) + - [loop](#loop) + - [join](#join) + - [trimSpace](#trimspace) + - [parseBool](#parsebool) + - [parseFloat](#parsefloat) + - [parseInt](#parseint) + - [parseJSON](#parsejson) + - [parseUint](#parseuint) + - [plugin](#plugin) + - [regexMatch](#regexmatch) + - [regexReplaceAll](#regexreplaceall) + - [replaceAll](#replaceall) + - [split](#split) + - [timestamp](#timestamp) + - [toJSON](#tojson) + - [toJSONPretty](#tojsonpretty) + - [toLower](#tolower) + - [toTitle](#totitle) + - [toTOML](#totoml) + - [toUpper](#toupper) + - [toYAML](#toyaml) + - [sockaddr](#sockaddr) + - [Math Functions](#math-functions) + - [add](#add) + - [subtract](#subtract) + - [multiply](#multiply) + - [divide](#divide) + - [modulo](#modulo) +- [Plugins](#plugins) + - [Authoring Plugins](#authoring-plugins) + - [Important Notes](#important-notes) +- [Caveats](#caveats) + - [Dots in Service Names](#dots-in-service-names) + - [Once Mode](#once-mode) + - [Exec Mode](#exec-mode) + - [De-Duplication Mode](#de-duplication-mode) + - [Termination on Error](#termination-on-error) + - [Command Environment](#command-environment) + - [Multi-phase Execution](#multi-phase-execution) +- [Running and Process Lifecycle](#running-and-process-lifecycle) +- [Debugging](#debugging) +- [FAQ](#faq) +- [Contributing](#contributing) + + ## Community Support If you have questions about how consul-template works, its capabilities or @@ -272,19 +369,6 @@ vault { # of the address is required. address = "https://vault.service.consul:8200" - # This is the grace period between lease renewal of periodic secrets and secret - # re-acquisition. When renewing a secret, if the remaining lease is less than or - # equal to the configured grace, Consul Template will request a new credential. - # This prevents Vault from revoking the credential at expiration and Consul - # Template having a stale credential. - # - # Note: If you set this to a value that is higher than your default TTL or - # max TTL (as set in vault), Consul Template will always read a new secret! - # - # This should also be less than or around 1/3 of your TTL for a predictable - # behaviour. See https://github.com/hashicorp/vault/issues/3414 - grace = "5m" - # This is a Vault Enterprise namespace to use for reading/writing secrets. # # This value can also be specified via the environment variable VAULT_NAMESPACE. @@ -719,6 +803,23 @@ maxconns:15 minconns:5 ``` +##### `safeLs` + +Same as [ls](#ls), but refuse to render template, if the KV prefix query return blank/empty data. + +This is especially useful, for rendering mission critical files, that are being populated by consul-template. + +For example: + +```text +/root/.ssh/authorized_keys +/etc/sysconfig/iptables +``` + +Using `safeLs` on empty prefixes will result in template output not being rendered at all. + +To learn how `safeLs` was born see [CT-1131](https://github.com/hashicorp/consul-template/issues/1131) [C-3975](https://github.com/hashicorp/consul/issues/3975) and [CR-82](https://github.com/hashicorp/consul-replicate/issues/82). + ##### `node` Query [Consul][consul] for a node in the catalog. @@ -859,18 +960,16 @@ secret in plain-text on disk. If an attacker is able to get access to the file, they will have access to plain-text secrets. Please note that Vault does not support blocking queries. As a result, Consul -Template will not immediately reload in the event a secret is changed as it does -with Consul's key-value store. Consul Template will fetch a new secret at half -the lease duration of the original secret. For example, most items in Vault's -generic secret backend have a default 30 day lease. This means Consul Template -will renew the secret every 15 days. As such, it is recommended that a smaller -lease duration be used when generating the initial secret to force Consul -Template to renew more often. +Template will not immediately reload in the event a secret is changed as it +does with Consul's key-value store. Consul Template will renew the secret with +Vault's [Renewer API](https://godoc.org/github.com/hashicorp/vault/api#Renewer). +The Renew API tries to use most of the time the secret is good, renewing at +around 90% of the lease time (as set by Vault). Also consider enabling `error_on_missing_key` when working with templates that will interact with Vault. By default, Consul Template uses Go's templating language. When accessing a struct field or map key that does not exist, it -defaults to printing "". This may not be the desired behavior, +defaults to printing ``. This may not be the desired behavior, especially when working with passwords or other data. As such, it is recommended you set: @@ -956,7 +1055,7 @@ The example above is querying Consul for healthy "web" services, in the "east-aw ```liquid {{ range service "web" }} -server {{ .Name }}{{ .Address }}:{{ .Port }}{{ end }} +server {{ .Name }} {{ .Address }}:{{ .Port }}{{ end }} ``` renders the IP addresses of all _healthy_ nodes with a logical service named @@ -1060,6 +1159,23 @@ nested/config/value "value" Unlike `ls`, `tree` returns **all** keys under the prefix, just like the Unix `tree` command. +##### `safeTree` + +Same as [tree](#tree), but refuse to render template, if the KV prefix query return blank/empty data. + +This is especially useful, for rendering mission critical files, that are being populated by consul-template. + +For example: + +```text +/root/.ssh/authorized_keys +/etc/sysconfig/iptables +``` + +Using `safeTree` on empty prefixes will result in template output not being rendered at all. + +To learn how `safeTree` was born see [CT-1131](https://github.com/hashicorp/consul-template/issues/1131) [C-3975](https://github.com/hashicorp/consul/issues/3975) and [CR-82](https://github.com/hashicorp/consul-replicate/issues/82). + --- #### Scratch @@ -1250,6 +1366,81 @@ Takes the list of services returned by the [`service`](#service) or {{ end }}{{ end }} ``` +##### `byMeta` + +Takes a list of services returned by the [`service`](#service) or +[`services`](#services) and returns a map that groups services by ServiceMeta values. +Multiple service meta keys can be passed as a comma separated string. `|int` can be added to +a meta key to convert numbers from service meta values to padded numbers in `printf "%05d" % value` +format (useful for sorting as Go Template sorts maps by keys). + +**Example**: + +If we have the following services registered in Consul: + +```json +{ + "Services": [ + { + "ID": "redis-dev-1", + "Name": "redis", + "ServiceMeta": { + "environment": "dev", + "shard_number": "1" + }, + ... + }, + { + "ID": "redis-prod-1", + "Name": "redis", + "ServiceMeta": { + "environment": "prod", + "shard_number": "1" + }, + ... + }, + { + "ID": "redis-prod-2", + "Name": "redis", + "ServiceMeta": { + "environment": "prod", + "shard_number": "2", + }, + ... + } + ] +} +``` + +```liquid +{{ service "redis|any" | byMeta "environment,shard_number|int" | toJSON }} +``` + +The code above will produce a map of services grouped by meta: + +```json +{ + "dev_00001": [ + { + "ID": "redis-dev-1", + ... + } + ], + "prod_00001": [ + { + "ID": "redis-prod-1", + ... + } + ], + "prod_00002": [ + { + "ID": "redis-prod-2", + ... + } + ] +} +``` + ##### `contains` Determines if a needle is within an iterable element. @@ -1260,7 +1451,7 @@ Determines if a needle is within an iterable element. {{ end }} ``` -#### `containsAll` +##### `containsAll` Returns `true` if all needles are within an iterable element, or `false` otherwise. Returns `true` if the list of needles is empty. @@ -1271,7 +1462,7 @@ otherwise. Returns `true` if the list of needles is empty. {{ end }} ``` -#### `containsAny` +##### `containsAny` Returns `true` if any needle is within an iterable element, or `false` otherwise. Returns `false` if the list of needles is empty. @@ -1282,7 +1473,7 @@ otherwise. Returns `false` if the list of needles is empty. {{ end }} ``` -#### `containsNone` +##### `containsNone` Returns `true` if no needles are within an iterable element, or `false` otherwise. Returns `true` if the list of needles is empty. @@ -1293,7 +1484,7 @@ otherwise. Returns `true` if the list of needles is empty. {{ end }} ``` -#### `containsNotAll` +##### `containsNotAll` Returns `true` if some needle is not within an iterable element, or `false` otherwise. Returns `false` if the list of needles is empty. @@ -1365,6 +1556,17 @@ You will need to have a reasonable format about your data in Consul. Please see [Go's text/template package][text-template] for more information. +##### `explodeMap` + +Takes the value of a map and converts it into a deeply-nested map for parsing/traversing, +using the same logic as `explode`. + +```liquid +{{ scratch.MapSet "example", "foo/bar", "a" }} +{{ scratch.MapSet "example", "foo/baz", "b" }} +{{ scratch.Get "example" | explodeMap | toYAML }} +``` + ##### `indent` Indents a block of text by prefixing N number of spaces per line. @@ -1705,6 +1907,18 @@ minconns: "2" Note: Consul stores all KV data as strings. Thus true is "true", 1 is "1", etc. +##### `sockaddr` + +Takes a quote-escaped template string as an argument and passes it on to +[hashicorp/go-sockaddr](https://github.com/hashicorp/go-sockaddr) templating engine. + +```liquid +{{ sockaddr "GetPrivateIP" }} +``` + +See [hashicorp/go-sockaddr documentation](https://godoc.org/github.com/hashicorp/go-sockaddr) +for more information. + --- #### Math Functions @@ -2208,12 +2422,7 @@ A: Configuration management tools are designed to be used in unison with Consul ## Contributing -To build and install Consul Template locally, you will need to install the -Docker engine: - -- [Docker for Mac](https://docs.docker.com/engine/installation/mac/) -- [Docker for Windows](https://docs.docker.com/engine/installation/windows/) -- [Docker for Linux](https://docs.docker.com/engine/installation/linux/ubuntulinux/) +To build and install Envconsul locally, you will need to [install Go][go]. Clone the repository: @@ -2255,3 +2464,4 @@ go test ./... -run SomeTestFunction_name [releases]: https://releases.hashicorp.com/consul-template "Consul Template Releases" [text-template]: https://golang.org/pkg/text/template/ "Go's text/template package" [vault]: https://www.vaultproject.io "Vault by HashiCorp" +[go]: https://golang.org "Go programming language" diff --git a/vendor/github.com/hashicorp/consul-template/child/child.go b/vendor/github.com/hashicorp/consul-template/child/child.go index ebee97b9783..3c94816f596 100644 --- a/vendor/github.com/hashicorp/consul-template/child/child.go +++ b/vendor/github.com/hashicorp/consul-template/child/child.go @@ -197,7 +197,7 @@ func (c *Child) Reload() error { c.Lock() defer c.Unlock() - c.kill() + c.kill(false) return c.start() } @@ -223,7 +223,7 @@ func (c *Child) Kill() { log.Printf("[INFO] (child) killing process") c.Lock() defer c.Unlock() - c.kill() + c.kill(false) } // Stop behaves almost identical to Kill except it suppresses future processes @@ -231,6 +231,17 @@ func (c *Child) Kill() { // process from sending its value back up the exit channel. This is useful // when doing a graceful shutdown of an application. func (c *Child) Stop() { + c.internalStop(false) +} + +// StopImmediately behaves almost identical to Stop except it does not wait +// for any random splay if configured. This is used for performing a fast +// shutdown of consul-template and its children when a kill signal is received. +func (c *Child) StopImmediately() { + c.internalStop(true) +} + +func (c *Child) internalStop(immediately bool) { log.Printf("[INFO] (child) stopping process") c.Lock() @@ -242,7 +253,7 @@ func (c *Child) Stop() { log.Printf("[WARN] (child) already stopped") return } - c.kill() + c.kill(immediately) close(c.stopCh) c.stopped = true } @@ -354,7 +365,7 @@ func (c *Child) reload() error { return c.signal(c.reloadSignal) } -func (c *Child) kill() { +func (c *Child) kill(immediately bool) { if !c.running() { return } @@ -362,13 +373,15 @@ func (c *Child) kill() { exited := false process := c.cmd.Process - if c.cmd.ProcessState == nil { + if c.cmd.ProcessState != nil { + log.Printf("[DEBUG] (child) Kill() called but process dead; not waiting for splay.") + } else if immediately { + log.Printf("[DEBUG] (child) Kill() called but performing immediate shutdown; not waiting for splay.") + } else { select { case <-c.stopCh: case <-c.randomSplay(): } - } else { - log.Printf("[DEBUG] (runner) Kill() called but process dead; not waiting for splay.") } if c.killSignal != nil { diff --git a/vendor/github.com/hashicorp/consul-template/cli.go b/vendor/github.com/hashicorp/consul-template/cli.go index 2ce9e088308..52b99c27acf 100644 --- a/vendor/github.com/hashicorp/consul-template/cli.go +++ b/vendor/github.com/hashicorp/consul-template/cli.go @@ -152,7 +152,7 @@ func (cli *CLI) Run(args []string) int { go runner.Start() case *config.KillSignal: fmt.Fprintf(cli.errStream, "Cleaning up...\n") - runner.Stop() + runner.StopImmediately() return ExitCodeInterrupt case signals.SignalLookup["SIGCHLD"]: // The SIGCHLD signal is sent to the parent of a child process when it @@ -731,11 +731,6 @@ Options: -vault-addr=
Sets the address of the Vault server - -vault-grace= - Sets the grace period between lease renewal and secret re-acquisition - if - the remaining lease duration is less than this value, Consul Template will - acquire a new secret from Vault - -vault-renew-token Periodically renew the provided Vault API token - this defaults to "true" and will renew the token at half of the lease duration diff --git a/vendor/github.com/hashicorp/consul-template/dependency/dependency.go b/vendor/github.com/hashicorp/consul-template/dependency/dependency.go index 04c16b1a1ac..c9161f82f49 100644 --- a/vendor/github.com/hashicorp/consul-template/dependency/dependency.go +++ b/vendor/github.com/hashicorp/consul-template/dependency/dependency.go @@ -18,7 +18,7 @@ const ( nodeNameRe = `(?P[[:word:]\.\-\_]+)` nearRe = `(~(?P[[:word:]\.\-\_]+))?` prefixRe = `/?(?P[^@]+)` - tagRe = `((?P[[:word:]\.\-\_]+)\.)?` + tagRe = `((?P[[:word:]=:\.\-\_]+)\.)?` ) type Type int diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go index 213c632930d..6abe69cfd14 100644 --- a/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go +++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go @@ -7,6 +7,9 @@ import ( "strings" "time" + "crypto/x509" + "encoding/pem" + "github.com/hashicorp/vault/api" ) @@ -64,15 +67,80 @@ type SecretWrapInfo struct { WrappedAccessor string } -// vaultRenewDuration accepts a secret and returns the recommended amount of +// +type renewer interface { + Dependency + stopChan() chan struct{} + secrets() (*Secret, *api.Secret) +} + +func renewSecret(clients *ClientSet, d renewer) error { + log.Printf("[TRACE] %s: starting renewer", d) + + secret, vaultSecret := d.secrets() + renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{ + Secret: vaultSecret, + }) + if err != nil { + return err + } + go renewer.Renew() + defer renewer.Stop() + + for { + select { + case err := <-renewer.DoneCh(): + if err != nil { + log.Printf("[WARN] %s: failed to renew: %s", d, err) + } + log.Printf("[WARN] %s: renewer done (maybe the lease expired)", d) + return nil + case renewal := <-renewer.RenewCh(): + log.Printf("[TRACE] %s: successfully renewed", d) + printVaultWarnings(d, renewal.Secret.Warnings) + updateSecret(secret, renewal.Secret) + case <-d.stopChan(): + return ErrStopped + } + } +} + +// durationFrom cert gets the duration of validity from cert data and +// returns that value as an integer number of seconds +func durationFromCert(certData string) int { + block, _ := pem.Decode([]byte(certData)) + if block == nil { + return -1 + } + cert, err := x509.ParseCertificate(block.Bytes) + if err != nil { + log.Printf("[WARN] Unable to parse certificate data: %s", err) + return -1 + } + + return int(cert.NotAfter.Sub(cert.NotBefore).Seconds()) +} + +// leaseCheckWait accepts a secret and returns the recommended amount of // time to sleep. -func vaultRenewDuration(s *Secret) time.Duration { +func leaseCheckWait(s *Secret) time.Duration { // Handle whether this is an auth or a regular secret. base := s.LeaseDuration if s.Auth != nil && s.Auth.LeaseDuration > 0 { base = s.Auth.LeaseDuration } + // Handle if this is a certificate with no lease + if certInterface, ok := s.Data["certificate"]; ok && s.LeaseID == "" { + if certData, ok := certInterface.(string); ok { + newDuration := durationFromCert(certData) + if newDuration > 0 { + log.Printf("[DEBUG] Found certificate and set lease duration to %d seconds", newDuration) + base = newDuration + } + } + } + // Ensure we have a lease duration, since sometimes this can be zero. if base <= 0 { base = int(VaultDefaultLeaseDuration.Seconds()) diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go index eae6fc91674..00ebf27ec0d 100644 --- a/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go +++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go @@ -18,7 +18,8 @@ var ( // VaultReadQuery is the dependency to Vault for a secret type VaultReadQuery struct { - stopCh chan struct{} + stopCh chan struct{} + sleepCh chan time.Duration rawPath string queryValues url.Values @@ -45,81 +46,70 @@ func NewVaultReadQuery(s string) (*VaultReadQuery, error) { return &VaultReadQuery{ stopCh: make(chan struct{}, 1), + sleepCh: make(chan time.Duration, 1), rawPath: secretURL.Path, queryValues: secretURL.Query(), }, nil } // Fetch queries the Vault API -func (d *VaultReadQuery) Fetch(clients *ClientSet, opts *QueryOptions) (interface{}, *ResponseMetadata, error) { +func (d *VaultReadQuery) Fetch(clients *ClientSet, opts *QueryOptions, +) (interface{}, *ResponseMetadata, error) { select { case <-d.stopCh: return nil, nil, ErrStopped default: } + select { + case dur := <-d.sleepCh: + time.Sleep(dur) + default: + } - opts = opts.Merge(&QueryOptions{}) + firstRun := d.secret == nil - if d.secret != nil { - if vaultSecretRenewable(d.secret) { - log.Printf("[TRACE] %s: starting renewer", d) - - renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{ - Grace: opts.VaultGrace, - Secret: d.vaultSecret, - }) - if err != nil { - return nil, nil, errors.Wrap(err, d.String()) - } - go renewer.Renew() - defer renewer.Stop() - - RENEW: - for { - select { - case err := <-renewer.DoneCh(): - if err != nil { - log.Printf("[WARN] %s: failed to renew: %s", d, err) - } - log.Printf("[WARN] %s: renewer returned (maybe the lease expired)", d) - break RENEW - case renewal := <-renewer.RenewCh(): - log.Printf("[TRACE] %s: successfully renewed", d) - printVaultWarnings(d, renewal.Secret.Warnings) - updateSecret(d.secret, renewal.Secret) - case <-d.stopCh: - return nil, nil, ErrStopped - } - } - } else { - // The secret isn't renewable, probably the generic secret backend. - dur := vaultRenewDuration(d.secret) - log.Printf("[TRACE] %s: secret is not renewable, sleeping for %s", d, dur) - select { - case <-time.After(dur): - // The lease is almost expired, it's time to request a new one. - case <-d.stopCh: - return nil, nil, ErrStopped - } + if !firstRun && vaultSecretRenewable(d.secret) { + err := renewSecret(clients, d) + if err != nil { + return nil, nil, errors.Wrap(err, d.String()) } } - // We don't have a secret, or the prior renewal failed - vaultSecret, err := d.readSecret(clients, opts) + err := d.fetchSecret(clients, opts) if err != nil { return nil, nil, errors.Wrap(err, d.String()) } - // Print any warnings - printVaultWarnings(d, vaultSecret.Warnings) - - // Create the cloned secret which will be exposed to the template. - d.vaultSecret = vaultSecret - d.secret = transformSecret(vaultSecret) + if !vaultSecretRenewable(d.secret) { + dur := leaseCheckWait(d.secret) + log.Printf("[TRACE] %s: non-renewable secret, set sleep for %s", d, dur) + d.sleepCh <- dur + } return respWithMetadata(d.secret) } +func (d *VaultReadQuery) fetchSecret(clients *ClientSet, opts *QueryOptions, +) error { + opts = opts.Merge(&QueryOptions{}) + vaultSecret, err := d.readSecret(clients, opts) + if err == nil { + printVaultWarnings(d, vaultSecret.Warnings) + d.vaultSecret = vaultSecret + // the cloned secret which will be exposed to the template + d.secret = transformSecret(vaultSecret) + } + return err +} + +func (d *VaultReadQuery) stopChan() chan struct{} { + return d.stopCh +} + +func (d *VaultReadQuery) secrets() (*Secret, *api.Secret) { + return d.secret, d.vaultSecret +} + // CanShare returns if this dependency is shareable. func (d *VaultReadQuery) CanShare() bool { return false @@ -147,7 +137,8 @@ func (d *VaultReadQuery) readSecret(clients *ClientSet, opts *QueryOptions) (*ap if d.isKVv2 == nil { mountPath, isKVv2, err := isKVv2(vaultClient, d.rawPath) if err != nil { - log.Printf("[WARN] %s: failed to check if %s is KVv2, assume not: %s", d, d.rawPath, err) + log.Printf("[WARN] %s: failed to check if %s is KVv2, "+ + "assume not: %s", d, d.rawPath, err) isKVv2 = false d.secretPath = d.rawPath } else if isKVv2 { @@ -163,12 +154,22 @@ func (d *VaultReadQuery) readSecret(clients *ClientSet, opts *QueryOptions) (*ap Path: "/v1/" + d.secretPath, RawQuery: queryString, }) - vaultSecret, err := vaultClient.Logical().ReadWithData(d.secretPath, d.queryValues) + vaultSecret, err := vaultClient.Logical().ReadWithData(d.secretPath, + d.queryValues) + if err != nil { return nil, errors.Wrap(err, d.String()) } - if vaultSecret == nil { + if vaultSecret == nil || deletedKVv2(vaultSecret) { return nil, fmt.Errorf("no secret exists at %s", d.secretPath) } return vaultSecret, nil } + +func deletedKVv2(s *api.Secret) bool { + switch md := s.Data["metadata"].(type) { + case map[string]interface{}: + return md["deletion_time"] != "" + } + return false +} diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go index a3c7f4c8743..93ad5984ac6 100644 --- a/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go +++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go @@ -1,9 +1,6 @@ package dependency import ( - "log" - "time" - "github.com/hashicorp/vault/api" "github.com/pkg/errors" ) @@ -37,64 +34,31 @@ func NewVaultTokenQuery(token string) (*VaultTokenQuery, error) { } // Fetch queries the Vault API -func (d *VaultTokenQuery) Fetch(clients *ClientSet, opts *QueryOptions) (interface{}, *ResponseMetadata, error) { +func (d *VaultTokenQuery) Fetch(clients *ClientSet, opts *QueryOptions, +) (interface{}, *ResponseMetadata, error) { select { case <-d.stopCh: return nil, nil, ErrStopped default: } - opts = opts.Merge(&QueryOptions{}) - if vaultSecretRenewable(d.secret) { - log.Printf("[TRACE] %s: starting renewer", d) - - renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{ - Grace: opts.VaultGrace, - Secret: d.vaultSecret, - }) + err := renewSecret(clients, d) if err != nil { return nil, nil, errors.Wrap(err, d.String()) } - go renewer.Renew() - defer renewer.Stop() - - RENEW: - for { - select { - case err := <-renewer.DoneCh(): - if err != nil { - log.Printf("[WARN] %s: failed to renew: %s", d, err) - } - log.Printf("[WARN] %s: renewer returned (maybe the lease expired)", d) - break RENEW - case renewal := <-renewer.RenewCh(): - log.Printf("[TRACE] %s: successfully renewed", d) - printVaultWarnings(d, renewal.Secret.Warnings) - updateSecret(d.secret, renewal.Secret) - case <-d.stopCh: - return nil, nil, ErrStopped - } - } + renewSecret(clients, d) } - // The secret isn't renewable, probably the generic secret backend. - // TODO This is incorrect when given a non-renewable template. We should - // instead to a lookup self to determine the lease duration. - dur := vaultRenewDuration(d.secret) - if dur < opts.VaultGrace { - dur = opts.VaultGrace - } + return nil, nil, ErrLeaseExpired +} - log.Printf("[TRACE] %s: token is not renewable, sleeping for %s", d, dur) - select { - case <-time.After(dur): - // The lease is almost expired, it's time to request a new one. - case <-d.stopCh: - return nil, nil, ErrStopped - } +func (d *VaultTokenQuery) stopChan() chan struct{} { + return d.stopCh +} - return nil, nil, ErrLeaseExpired +func (d *VaultTokenQuery) secrets() (*Secret, *api.Secret) { + return d.secret, d.vaultSecret } // CanShare returns if this dependency is shareable. diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go index 22aad3aa242..c2841712f77 100644 --- a/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go +++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go @@ -21,7 +21,8 @@ var ( // VaultWriteQuery is the dependency to Vault for a secret type VaultWriteQuery struct { - stopCh chan struct{} + stopCh chan struct{} + sleepCh chan time.Duration path string data map[string]interface{} @@ -42,6 +43,7 @@ func NewVaultWriteQuery(s string, d map[string]interface{}) (*VaultWriteQuery, e return &VaultWriteQuery{ stopCh: make(chan struct{}, 1), + sleepCh: make(chan time.Duration, 1), path: s, data: d, dataHash: sha1Map(d), @@ -49,75 +51,62 @@ func NewVaultWriteQuery(s string, d map[string]interface{}) (*VaultWriteQuery, e } // Fetch queries the Vault API -func (d *VaultWriteQuery) Fetch(clients *ClientSet, opts *QueryOptions) (interface{}, *ResponseMetadata, error) { +func (d *VaultWriteQuery) Fetch(clients *ClientSet, opts *QueryOptions, +) (interface{}, *ResponseMetadata, error) { select { case <-d.stopCh: return nil, nil, ErrStopped default: } + select { + case dur := <-d.sleepCh: + time.Sleep(dur) + default: + } - opts = opts.Merge(&QueryOptions{}) + firstRun := d.secret == nil - if d.secret != nil { - if vaultSecretRenewable(d.secret) { - log.Printf("[TRACE] %s: starting renewer", d) - - renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{ - Grace: opts.VaultGrace, - Secret: d.vaultSecret, - }) - if err != nil { - return nil, nil, errors.Wrap(err, d.String()) - } - go renewer.Renew() - defer renewer.Stop() - - RENEW: - for { - select { - case err := <-renewer.DoneCh(): - if err != nil { - log.Printf("[WARN] %s: failed to renew: %s", d, err) - } - log.Printf("[WARN] %s: renewer returned (maybe the lease expired)", d) - break RENEW - case renewal := <-renewer.RenewCh(): - log.Printf("[TRACE] %s: successfully renewed", d) - printVaultWarnings(d, renewal.Secret.Warnings) - updateSecret(d.secret, renewal.Secret) - case <-d.stopCh: - return nil, nil, ErrStopped - } - } - } else { - // The secret isn't renewable, probably the generic secret backend. - dur := vaultRenewDuration(d.secret) - log.Printf("[TRACE] %s: secret is not renewable, sleeping for %s", d, dur) - select { - case <-time.After(dur): - // The lease is almost expired, it's time to request a new one. - case <-d.stopCh: - return nil, nil, ErrStopped - } + if !firstRun && vaultSecretRenewable(d.secret) { + err := renewSecret(clients, d) + if err != nil { + return nil, nil, errors.Wrap(err, d.String()) } } - // We don't have a secret, or the prior renewal failed + opts = opts.Merge(&QueryOptions{}) vaultSecret, err := d.writeSecret(clients, opts) if err != nil { return nil, nil, errors.Wrap(err, d.String()) } - // Print any warnings - printVaultWarnings(d, vaultSecret.Warnings) + // vaultSecret == nil when writing to KVv1 engines + if vaultSecret == nil { + return respWithMetadata(d.secret) + } - // Create the cloned secret which will be exposed to the template. + printVaultWarnings(d, vaultSecret.Warnings) d.vaultSecret = vaultSecret + // cloned secret which will be exposed to the template d.secret = transformSecret(vaultSecret) + if !vaultSecretRenewable(d.secret) { + dur := leaseCheckWait(d.secret) + log.Printf("[TRACE] %s: non-renewable secret, set sleep for %s", d, dur) + d.sleepCh <- dur + } + return respWithMetadata(d.secret) } +// meet renewer interface +func (d *VaultWriteQuery) stopChan() chan struct{} { + return d.stopCh +} + +func (d *VaultWriteQuery) secrets() (*Secret, *api.Secret) { + return d.secret, d.vaultSecret +} + // CanShare returns if this dependency is shareable. func (d *VaultWriteQuery) CanShare() bool { return false @@ -168,14 +157,20 @@ func (d *VaultWriteQuery) writeSecret(clients *ClientSet, opts *QueryOptions) (* RawQuery: opts.String(), }) - vaultSecret, err := clients.Vault().Logical().Write(d.path, d.data) + data := d.data + + _, isv2, _ := isKVv2(clients.Vault(), d.path) + if isv2 { + data = map[string]interface{}{"data": d.data} + } + + vaultSecret, err := clients.Vault().Logical().Write(d.path, data) if err != nil { return nil, errors.Wrap(err, d.String()) } - if vaultSecret == nil { - if _, isv2, _ := isKVv2(clients.Vault(), d.path); isv2 { - return nil, fmt.Errorf("no secret exists at %s", d.path) - } + // vaultSecret is always nil when KVv1 engine (isv2==false) + if isv2 && vaultSecret == nil { + return nil, fmt.Errorf("no secret exists at %s", d.path) } return vaultSecret, nil diff --git a/vendor/github.com/hashicorp/consul-template/go.mod b/vendor/github.com/hashicorp/consul-template/go.mod index 4698887d37d..a449ad5baaf 100644 --- a/vendor/github.com/hashicorp/consul-template/go.mod +++ b/vendor/github.com/hashicorp/consul-template/go.mod @@ -7,13 +7,14 @@ require ( github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 // indirect github.com/frankban/quicktest v1.4.0 // indirect github.com/google/btree v1.0.0 // indirect - github.com/hashicorp/consul/api v1.1.0 - github.com/hashicorp/consul/sdk v0.1.1 + github.com/hashicorp/consul/api v1.2.0 + github.com/hashicorp/consul/sdk v0.2.0 github.com/hashicorp/go-gatedio v0.5.0 github.com/hashicorp/go-immutable-radix v1.1.0 // indirect github.com/hashicorp/go-msgpack v0.5.5 // indirect github.com/hashicorp/go-multierror v1.0.0 github.com/hashicorp/go-rootcerts v1.0.1 + github.com/hashicorp/go-sockaddr v1.0.2 github.com/hashicorp/go-syslog v1.0.0 github.com/hashicorp/golang-lru v0.5.3 // indirect github.com/hashicorp/hcl v1.0.0 diff --git a/vendor/github.com/hashicorp/consul-template/go.sum b/vendor/github.com/hashicorp/consul-template/go.sum index 4fd78bc91c9..648fcc967b7 100644 --- a/vendor/github.com/hashicorp/consul-template/go.sum +++ b/vendor/github.com/hashicorp/consul-template/go.sum @@ -36,11 +36,10 @@ github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/hashicorp/consul v1.5.3 h1:EmTWRf/cuqZk6Ug9tgFUVE9xNgJPpmBvJwJMvm+agSk= -github.com/hashicorp/consul/api v1.1.0 h1:BNQPM9ytxj6jbjjdRPioQ94T6YXriSopn0i8COv6SRA= -github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= -github.com/hashicorp/consul/sdk v0.1.1 h1:LnuDWGNsoajlhGyHJvuWW6FVqRl8JOTPqS6CPTsYjhY= -github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/consul/api v1.2.0 h1:oPsuzLp2uk7I7rojPKuncWbZ+m5TMoD4Ivs+2Rkeh4Y= +github.com/hashicorp/consul/api v1.2.0/go.mod h1:1SIkFYi2ZTXUE5Kgt179+4hH33djo11+0Eo2XgTAtkw= +github.com/hashicorp/consul/sdk v0.2.0 h1:GWFYFmry/k4b1hEoy7kSkmU8e30GAyI4VZHk0fRxeL4= +github.com/hashicorp/consul/sdk v0.2.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= diff --git a/vendor/github.com/hashicorp/consul-template/manager/runner.go b/vendor/github.com/hashicorp/consul-template/manager/runner.go index 496cb05e09d..877f4bf945f 100644 --- a/vendor/github.com/hashicorp/consul-template/manager/runner.go +++ b/vendor/github.com/hashicorp/consul-template/manager/runner.go @@ -390,26 +390,13 @@ func (r *Runner) Start() { // Stop halts the execution of this runner and its subprocesses. func (r *Runner) Stop() { - r.stopLock.Lock() - defer r.stopLock.Unlock() - - if r.stopped { - return - } - - log.Printf("[INFO] (runner) stopping") - r.stopDedup() - r.stopWatcher() - r.stopChild() - - if err := r.deletePid(); err != nil { - log.Printf("[WARN] (runner) could not remove pid at %v: %s", - r.config.PidFile, err) - } - - r.stopped = true + r.internalStop(false) +} - close(r.DoneCh) +// StopImmediately behaves like Stop but won't wait for any splay on any child +// process it may be running. +func (r *Runner) StopImmediately() { + r.internalStop(true) } // TemplateRenderedCh returns a channel that will be triggered when one or more @@ -437,6 +424,29 @@ func (r *Runner) RenderEvents() map[string]*RenderEvent { return times } +func (r *Runner) internalStop(immediately bool) { + r.stopLock.Lock() + defer r.stopLock.Unlock() + + if r.stopped { + return + } + + log.Printf("[INFO] (runner) stopping") + r.stopDedup() + r.stopWatcher() + r.stopChild(immediately) + + if err := r.deletePid(); err != nil { + log.Printf("[WARN] (runner) could not remove pid at %q: %s", + *r.config.PidFile, err) + } + + r.stopped = true + + close(r.DoneCh) +} + func (r *Runner) stopDedup() { if r.dedup != nil { log.Printf("[DEBUG] (runner) stopping de-duplication manager") @@ -451,13 +461,18 @@ func (r *Runner) stopWatcher() { } } -func (r *Runner) stopChild() { +func (r *Runner) stopChild(immediately bool) { r.childLock.RLock() defer r.childLock.RUnlock() if r.child != nil { - log.Printf("[DEBUG] (runner) stopping child process") - r.child.Stop() + if immediately { + log.Printf("[DEBUG] (runner) stopping child process immediately") + r.child.StopImmediately() + } else { + log.Printf("[DEBUG] (runner) stopping child process") + r.child.Stop() + } } } diff --git a/vendor/github.com/hashicorp/consul-template/renderer/renderer.go b/vendor/github.com/hashicorp/consul-template/renderer/renderer.go index 34e68a2b15c..59931c19e62 100644 --- a/vendor/github.com/hashicorp/consul-template/renderer/renderer.go +++ b/vendor/github.com/hashicorp/consul-template/renderer/renderer.go @@ -163,12 +163,14 @@ func AtomicWrite(path string, createDestDirs bool, contents []byte, perms os.Fil } // If we got this far, it means we are about to save the file. Copy the - // current contents of the file onto disk (if it exists) so we have a backup. + // current file so we have a backup. Note that os.Link preserves the Mode. if backup { - if _, err := os.Stat(path); !os.IsNotExist(err) { - if err := copyFile(path, path+".bak"); err != nil { - return err - } + bak, old := path+".bak", path+".old.bak" + os.Rename(bak, old) // ignore error + if err := os.Link(path, bak); err != nil { + log.Printf("[WARN] (runner) could not backup %q: %v", path, err) + } else { + os.Remove(old) // ignore error } } @@ -178,33 +180,3 @@ func AtomicWrite(path string, createDestDirs bool, contents []byte, perms os.Fil return nil } - -// copyFile copies the file at src to the path at dst. Any errors that occur -// are returned. -func copyFile(src, dst string) error { - s, err := os.Open(src) - if err != nil { - return err - } - defer s.Close() - - stat, err := s.Stat() - if err != nil { - return err - } - - d, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, stat.Mode()) - if err != nil { - return err - } - if _, err := io.Copy(d, s); err != nil { - d.Close() - return err - } - if err := d.Close(); err != nil { - return err - } - - // io.Copy can restrict file permissions based on umask. - return os.Chmod(dst, stat.Mode()) -} diff --git a/vendor/github.com/hashicorp/consul-template/template/funcs.go b/vendor/github.com/hashicorp/consul-template/template/funcs.go index 2270f6fd290..a599034f74e 100644 --- a/vendor/github.com/hashicorp/consul-template/template/funcs.go +++ b/vendor/github.com/hashicorp/consul-template/template/funcs.go @@ -11,6 +11,7 @@ import ( "path/filepath" "reflect" "regexp" + "sort" "strconv" "strings" "text/template" @@ -18,6 +19,7 @@ import ( "github.com/BurntSushi/toml" dep "github.com/hashicorp/consul-template/dependency" + socktmpl "github.com/hashicorp/go-sockaddr/template" "github.com/pkg/errors" yaml "gopkg.in/yaml.v2" ) @@ -208,8 +210,13 @@ func keyWithDefaultFunc(b *Brain, used, missing *dep.Set) func(string, string) ( } } +func safeLsFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) { + // call lsFunc but explicitly mark that empty data set returned on monitored KV prefix is NOT safe + return lsFunc(b, used, missing, false) +} + // lsFunc returns or accumulates keyPrefix dependencies. -func lsFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) { +func lsFunc(b *Brain, used, missing *dep.Set, emptyIsSafe bool) func(string) ([]*dep.KeyPair, error) { return func(s string) ([]*dep.KeyPair, error) { result := []*dep.KeyPair{} @@ -231,9 +238,23 @@ func lsFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, erro result = append(result, pair) } } - return result, nil + + if len(result) == 0 { + if emptyIsSafe { + // Operator used potentially unsafe ls function in the template instead of the safeLs + return result, nil + } + } else { + // non empty result is good so we just return the data + return result, nil + } + + // If we reach this part of the code result is completely empty as value returned no KV pairs + // Operator selected to use safeLs on the specific KV prefix so we will refuse to render template + // by marking d as missing } + // b.Recall either returned an error or safeLs entered unsafe case missing.Add(d) return result, nil @@ -358,6 +379,51 @@ func secretsFunc(b *Brain, used, missing *dep.Set) func(string) ([]string, error } } +// byMeta returns Services grouped by one or many ServiceMeta fields. +func byMeta(meta string, services []*dep.HealthService) (groups map[string][]*dep.HealthService, err error) { + re := regexp.MustCompile("[^a-zA-Z0-9_-]") + normalize := func(x string) string { + return re.ReplaceAllString(x, "_") + } + getOrDefault := func(m map[string]string, key string) string { + realKey := strings.TrimSuffix(key, "|int") + if val, ok := m[realKey]; ok { + if val != "" { + return val + } + } + if strings.HasSuffix(key, "|int") { + return "0" + } + return fmt.Sprintf("_no_%s_", realKey) + } + + metas := strings.Split(meta, ",") + + groups = make(map[string][]*dep.HealthService) + + for _, s := range services { + sm := s.ServiceMeta + keyParts := []string{} + for _, meta := range metas { + value := getOrDefault(sm, meta) + if strings.HasSuffix(meta, "|int") { + value = getOrDefault(sm, meta) + i, err := strconv.Atoi(value) + if err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("cannot parse %v as number ", value)) + } + value = fmt.Sprintf("%05d", i) + } + keyParts = append(keyParts, normalize(value)) + } + key := strings.Join(keyParts, "_") + groups[key] = append(groups[key], s) + } + + return groups, nil +} + // serviceFunc returns or accumulates health service dependencies. func serviceFunc(b *Brain, used, missing *dep.Set) func(...string) ([]*dep.HealthService, error) { return func(s ...string) ([]*dep.HealthService, error) { @@ -406,8 +472,13 @@ func servicesFunc(b *Brain, used, missing *dep.Set) func(...string) ([]*dep.Cata } } +func safeTreeFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) { + // call treeFunc but explicitly mark that empty data set returned on monitored KV prefix is NOT safe + return treeFunc(b, used, missing, false) +} + // treeFunc returns or accumulates keyPrefix dependencies. -func treeFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) { +func treeFunc(b *Brain, used, missing *dep.Set, emptyIsSafe bool) func(string) ([]*dep.KeyPair, error) { return func(s string) ([]*dep.KeyPair, error) { result := []*dep.KeyPair{} @@ -430,9 +501,23 @@ func treeFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, er result = append(result, pair) } } - return result, nil + + if len(result) == 0 { + if emptyIsSafe { + // Operator used potentially unsafe tree function in the template instead of the safeTree + return result, nil + } + } else { + // non empty result is good so we just return the data + return result, nil + } + + // If we reach this part of the code result is completely empty as value returned no KV pairs + // Operator selected to use safeTree on the specific KV prefix so we will refuse to render template + // by marking d as missing } + // b.Recall either returned an error or safeTree entered unsafe case missing.Add(d) return result, nil @@ -583,8 +668,8 @@ func explode(pairs []*dep.KeyPair) (map[string]interface{}, error) { return m, nil } -// explodeHelper is a recursive helper for explode. -func explodeHelper(m map[string]interface{}, k, v, p string) error { +// explodeHelper is a recursive helper for explode and explodeMap +func explodeHelper(m map[string]interface{}, k string, v interface{}, p string) error { if strings.Contains(k, "/") { parts := strings.Split(k, "/") top := parts[0] @@ -607,6 +692,24 @@ func explodeHelper(m map[string]interface{}, k, v, p string) error { return nil } +// explodeMap turns a single-level map into a deeply-nested hash. +func explodeMap(mapIn map[string]interface{}) (map[string]interface{}, error) { + mapOut := make(map[string]interface{}) + + var keys []string + for k := range mapIn { + keys = append(keys, k) + } + sort.Strings(keys) + + for i := range keys { + if err := explodeHelper(mapOut, keys[i], mapIn[keys[i]], keys[i]); err != nil { + return nil, errors.Wrap(err, "explodeMap") + } + } + return mapOut, nil +} + // in searches for a given value in a given interface. func in(l, v interface{}) (bool, error) { lv := reflect.ValueOf(l) @@ -697,16 +800,41 @@ func indent(spaces int, s string) (string, error) { // print(i) // } // -func loop(ints ...int64) (<-chan int64, error) { - var start, stop int64 - switch len(ints) { +func loop(ifaces ...interface{}) (<-chan int64, error) { + + to64 := func(i interface{}) (int64, error) { + v := reflect.ValueOf(i) + switch v.Kind() { + case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, + reflect.Int64: + return int64(v.Int()), nil + case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, + reflect.Uint64: + return int64(v.Uint()), nil + case reflect.String: + return parseInt(v.String()) + } + return 0, fmt.Errorf("loop: bad argument type: %T", i) + } + + var i1, i2 interface{} + switch len(ifaces) { case 1: - start, stop = 0, ints[0] + i1, i2 = 0, ifaces[0] case 2: - start, stop = ints[0], ints[1] + i1, i2 = ifaces[0], ifaces[1] default: - return nil, fmt.Errorf("loop: wrong number of arguments, expected 1 or 2"+ - ", but got %d", len(ints)) + return nil, fmt.Errorf("loop: wrong number of arguments, expected "+ + "1 or 2, but got %d", len(ifaces)) + } + + start, err := to64(i1) + if err != nil { + return nil, err + } + stop, err := to64(i2) + if err != nil { + return nil, err } ch := make(chan int64) @@ -1184,3 +1312,13 @@ func pathInSandbox(sandbox, path string) error { } return nil } + +// sockaddr wraps go-sockaddr templating +func sockaddr(args ...string) (string, error) { + t := fmt.Sprintf("{{ %s }} ", strings.Join(args, " ")) + k, err := socktmpl.Parse(t) + if err != nil { + return "", err + } + return k, nil +} diff --git a/vendor/github.com/hashicorp/consul-template/template/template.go b/vendor/github.com/hashicorp/consul-template/template/template.go index ff3f36f213d..36da551834a 100644 --- a/vendor/github.com/hashicorp/consul-template/template/template.go +++ b/vendor/github.com/hashicorp/consul-template/template/template.go @@ -230,14 +230,16 @@ func funcMap(i *funcMapInput) template.FuncMap { "key": keyFunc(i.brain, i.used, i.missing), "keyExists": keyExistsFunc(i.brain, i.used, i.missing), "keyOrDefault": keyWithDefaultFunc(i.brain, i.used, i.missing), - "ls": lsFunc(i.brain, i.used, i.missing), + "ls": lsFunc(i.brain, i.used, i.missing, true), + "safeLs": safeLsFunc(i.brain, i.used, i.missing), "node": nodeFunc(i.brain, i.used, i.missing), "nodes": nodesFunc(i.brain, i.used, i.missing), "secret": secretFunc(i.brain, i.used, i.missing), "secrets": secretsFunc(i.brain, i.used, i.missing), "service": serviceFunc(i.brain, i.used, i.missing), "services": servicesFunc(i.brain, i.used, i.missing), - "tree": treeFunc(i.brain, i.used, i.missing), + "tree": treeFunc(i.brain, i.used, i.missing, true), + "safeTree": safeTreeFunc(i.brain, i.used, i.missing), // Scratch "scratch": func() *Scratch { return &scratch }, @@ -257,6 +259,7 @@ func funcMap(i *funcMapInput) template.FuncMap { "env": envFunc(i.env), "executeTemplate": executeTemplateFunc(i.t), "explode": explode, + "explodeMap": explodeMap, "in": in, "indent": indent, "loop": loop, @@ -280,7 +283,8 @@ func funcMap(i *funcMapInput) template.FuncMap { "toUpper": toUpper, "toYAML": toYAML, "split": split, - + "byMeta": byMeta, + "sockaddr": sockaddr, // Math functions "add": add, "subtract": subtract, diff --git a/vendor/github.com/hashicorp/consul-template/version/version.go b/vendor/github.com/hashicorp/consul-template/version/version.go index 6e12bfc06dc..077931edc7b 100644 --- a/vendor/github.com/hashicorp/consul-template/version/version.go +++ b/vendor/github.com/hashicorp/consul-template/version/version.go @@ -2,7 +2,7 @@ package version import "fmt" -const Version = "0.21.0" +const Version = "0.22.1" var ( Name string diff --git a/vendor/github.com/hashicorp/consul-template/watch/view.go b/vendor/github.com/hashicorp/consul-template/watch/view.go index 191c008c1df..bcef6c0b218 100644 --- a/vendor/github.com/hashicorp/consul-template/watch/view.go +++ b/vendor/github.com/hashicorp/consul-template/watch/view.go @@ -3,6 +3,7 @@ package watch import ( "fmt" "log" + "math/rand" "reflect" "sync" "time" @@ -207,6 +208,8 @@ func (v *View) fetch(doneCh, successCh chan<- struct{}, errCh chan<- error) { default: } + start := time.Now() // for rateLimiter below + data, rm, err := v.dependency.Fetch(v.clients, &dep.QueryOptions{ AllowStale: allowStale, WaitTime: defaultWaitTime, @@ -247,6 +250,10 @@ func (v *View) fetch(doneCh, successCh chan<- struct{}, errCh chan<- error) { allowStale = true } + if dur := rateLimiter(start); dur > 1 { + time.Sleep(dur) + } + if rm.LastIndex == v.lastIndex { log.Printf("[TRACE] (view) %s no new data (index was the same)", v.dependency) continue @@ -282,6 +289,18 @@ func (v *View) fetch(doneCh, successCh chan<- struct{}, errCh chan<- error) { } } +const minDelayBetweenUpdates = time.Millisecond * 100 + +// return a duration to sleep to limit the frequency of upstream calls +func rateLimiter(start time.Time) time.Duration { + remaining := minDelayBetweenUpdates - time.Since(start) + if remaining > 0 { + dither := time.Duration(rand.Int63n(20000000)) // 0-20ms + return remaining + dither + } + return 0 +} + // stop halts polling of this view. func (v *View) stop() { v.dependency.Stop() diff --git a/vendor/vendor.json b/vendor/vendor.json index 9ac26780c80..75b74730147 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -174,17 +174,18 @@ {"path":"github.com/gorilla/context","checksumSHA1":"g/V4qrXjUGG9B+e3hB+4NAYJ5Gs=","revision":"08b5f424b9271eedf6f9f0ce86cb9396ed337a42","revisionTime":"2016-08-17T18:46:32Z"}, {"path":"github.com/gorilla/mux","checksumSHA1":"STQSdSj2FcpCf0NLfdsKhNutQT0=","revision":"e48e440e4c92e3251d812f8ce7858944dfa3331c","revisionTime":"2018-08-07T07:52:56Z"}, {"path":"github.com/gorilla/websocket","checksumSHA1":"gr0edNJuVv4+olNNZl5ZmwLgscA=","revision":"0ec3d1bd7fe50c503d6df98ee649d81f4857c564","revisionTime":"2019-03-06T00:42:57Z"}, - {"path":"github.com/hashicorp/consul-template","checksumSHA1":"237KekVBW1eZohSDylZzT+/0NQI=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/child","checksumSHA1":"AhDPiKa7wzh3SE6Gx0WrsDYwBHg=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/config","checksumSHA1":"hjsBe5Qnn0DCttJkSNjy9mreW5Q=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/dependency","checksumSHA1":"S2ktxYTJRgmUE1GC5Bv+ZAmYWgE=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/logging","checksumSHA1":"o5N7SV389Ej+3b1iRNmz1dx5e1M=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/manager","checksumSHA1":"Ozv8RPN8d//DoFpwR2mQ/xMWhcs=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/renderer","checksumSHA1":"DUHtghMoLyrgPhv4lexVniBuWYk=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/signals","checksumSHA1":"YSEUV/9/k85XciRKu0cngxdjZLE=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/template","checksumSHA1":"mmM6LpEgkbLjobfgabon11mz40M=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/version","checksumSHA1":"eWyAvppME/4vsmaazcrf3oEbzGo=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, - {"path":"github.com/hashicorp/consul-template/watch","checksumSHA1":"cJxopvJKg7DBBb8tnDsfmBp5Q8I=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"}, + {"path":"github.com/hashicorp/consul-template","checksumSHA1":"fmltp5DcXXO4cec5ZX19GcerHDw=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/child","checksumSHA1":"yQfiSUOpV5BvGeztDd4fcA7qsbw=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/config","checksumSHA1":"hjsBe5Qnn0DCttJkSNjy9mreW5Q=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/conrfig","revision":"","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/dependency","checksumSHA1":"6Tni+iVTu73EHriUDFaFJXyZzvM=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/logging","checksumSHA1":"o5N7SV389Ej+3b1iRNmz1dx5e1M=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/manager","checksumSHA1":"BFPu1t60WuMR7HyUSR0nI6IvbA0=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/renderer","checksumSHA1":"zgTxCql4T0tvDUIMM+EQD6R/tEg=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/signals","checksumSHA1":"YSEUV/9/k85XciRKu0cngxdjZLE=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/template","checksumSHA1":"/AjvyyxEZXksXgxm1gmdJdJoXkw=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/version","checksumSHA1":"CqEejkuDiTgPVrLg0xrMmAWvNwY=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, + {"path":"github.com/hashicorp/consul-template/watch","checksumSHA1":"cBIJewG416sFREUenIUK9v3zrUk=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"}, {"path":"github.com/hashicorp/consul/agent/consul/autopilot","checksumSHA1":"+I7fgoQlrnTUGW5krqNLadWwtjg=","revision":"fb848fc48818f58690db09d14640513aa6bf3c02","revisionTime":"2018-04-13T17:05:42Z"}, {"path":"github.com/hashicorp/consul/api","checksumSHA1":"7JPBtnIgLkdcJ0ldXMTEnVjNEjA=","revision":"40cec98468b829e5cdaacb0629b3e23a028db688","revisionTime":"2019-05-22T20:19:12Z"}, {"path":"github.com/hashicorp/consul/command/flags","checksumSHA1":"soNN4xaHTbeXFgNkZ7cX0gbFXQk=","revision":"fb848fc48818f58690db09d14640513aa6bf3c02","revisionTime":"2018-04-13T17:05:42Z"}, From 5a31bd62ca64510e0714efa58c260dd7cfcf5800 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Tue, 12 Nov 2019 14:22:51 -0500 Subject: [PATCH 027/241] Allows monitor to target leader server Allows user to pass in node-id=leader to forward monitor request to remote a remote leader. --- nomad/client_agent_endpoint.go | 38 ++++++++++- nomad/client_agent_endpoint_test.go | 101 ++++++++++++++++++++++++++++ 2 files changed, 138 insertions(+), 1 deletion(-) diff --git a/nomad/client_agent_endpoint.go b/nomad/client_agent_endpoint.go index 8101b2b57a6..1b664730fe7 100644 --- a/nomad/client_agent_endpoint.go +++ b/nomad/client_agent_endpoint.go @@ -60,12 +60,25 @@ func (m *Agent) monitor(conn io.ReadWriteCloser) { } // Targeting a node, forward request to node - if args.NodeID != "" { + if args.NodeID != "" && args.NodeID != "leader" { m.forwardMonitor(conn, args, encoder, decoder) // forwarded request has ended, return return } + if args.NodeID == "leader" { + isLeader, remoteServer := m.srv.getLeader() + if !isLeader && remoteServer != nil { + m.forwardMonitorLeader(remoteServer, conn, args, encoder, decoder) + return + } + if !isLeader && remoteServer == nil { + err := fmt.Errorf("No leader") + handleStreamResultError(err, helper.Int64ToPtr(400), encoder) + return + } + } + // NodeID was empty, so monitor this current server ctx, cancel := context.WithCancel(context.Background()) defer cancel() @@ -236,3 +249,26 @@ func (m *Agent) forwardMonitor(conn io.ReadWriteCloser, args cstructs.MonitorReq structs.Bridge(conn, clientConn) return } + +func (m *Agent) forwardMonitorLeader(leader *serverParts, conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) { + var leaderConn net.Conn + + localConn, err := m.srv.streamingRpc(leader, "Agent.Monitor") + if err != nil { + handleStreamResultError(err, nil, encoder) + return + } + + leaderConn = localConn + defer leaderConn.Close() + + // Send the Request + outEncoder := codec.NewEncoder(leaderConn, structs.MsgpackHandle) + if err := outEncoder.Encode(args); err != nil { + handleStreamResultError(err, nil, encoder) + return + } + + structs.Bridge(conn, leaderConn) + return +} diff --git a/nomad/client_agent_endpoint_test.go b/nomad/client_agent_endpoint_test.go index 201e21fb937..1ddbdb628d1 100644 --- a/nomad/client_agent_endpoint_test.go +++ b/nomad/client_agent_endpoint_test.go @@ -117,6 +117,107 @@ OUTER: } } +func TestMonitor_MonitorRemoteLeader(t *testing.T) { + t.Parallel() + require := require.New(t) + + // start servers + s1 := TestServer(t, nil) + defer s1.Shutdown() + s2 := TestServer(t, func(c *Config) { + c.DevDisableBootstrap = true + }) + defer s2.Shutdown() + TestJoin(t, s1, s2) + testutil.WaitForLeader(t, s1.RPC) + testutil.WaitForLeader(t, s2.RPC) + + servers := []*Server{s1, s2} + var nonLeader *Server + var leader *Server + for _, s := range servers { + if !s.IsLeader() { + nonLeader = s + } else { + leader = s + } + } + + go func() { + for { + leader.logger.Warn("leader log") + time.Sleep(10 * time.Millisecond) + } + }() + + // No node ID to monitor the remote server + req := cstructs.MonitorRequest{ + LogLevel: "warn", + NodeID: "leader", + } + + handler, err := nonLeader.StreamingRpcHandler("Agent.Monitor") + require.Nil(err) + + // create pipe + p1, p2 := net.Pipe() + defer p1.Close() + defer p2.Close() + + errCh := make(chan error) + streamMsg := make(chan *cstructs.StreamErrWrapper) + + go handler(p2) + + // Start decoder + go func() { + decoder := codec.NewDecoder(p1, structs.MsgpackHandle) + for { + var msg cstructs.StreamErrWrapper + if err := decoder.Decode(&msg); err != nil { + if err == io.EOF || strings.Contains(err.Error(), "closed") { + return + } + errCh <- fmt.Errorf("error decoding: %v", err) + } + + streamMsg <- &msg + } + }() + + // send request + encoder := codec.NewEncoder(p1, structs.MsgpackHandle) + require.Nil(encoder.Encode(req)) + + timeout := time.After(2 * time.Second) + expected := "leader log" + received := "" + +OUTER: + for { + select { + case <-timeout: + t.Fatal("timeout waiting for logs") + case err := <-errCh: + t.Fatal(err) + case msg := <-streamMsg: + if msg.Error != nil { + t.Fatalf("Got error: %v", msg.Error.Error()) + } + + var frame sframer.StreamFrame + err := json.Unmarshal(msg.Payload, &frame) + assert.NoError(t, err) + + received += string(frame.Data) + if strings.Contains(received, expected) { + require.Nil(p2.Close()) + break OUTER + } + } + } +} + func TestMonitor_MonitorServer(t *testing.T) { t.Parallel() require := require.New(t) From fb49f3c35bec799d899dd4546d0e6451f8650dff Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Tue, 12 Nov 2019 16:23:39 -0500 Subject: [PATCH 028/241] add server-id to monitor specific server --- client/structs/structs.go | 3 ++ command/agent/agent_endpoint.go | 5 ++-- command/agent_monitor.go | 3 ++ nomad/client_agent_endpoint.go | 52 +++++++++++++++++++++++++++++++-- 4 files changed, 57 insertions(+), 6 deletions(-) diff --git a/client/structs/structs.go b/client/structs/structs.go index 6a84e2d635d..f2c54bdebe8 100644 --- a/client/structs/structs.go +++ b/client/structs/structs.go @@ -44,6 +44,9 @@ type MonitorRequest struct { // NodeID is the node we want to track the logs of NodeID string + // ServerID is the server we want to track the logs of + ServerID string + // PlainText disables base64 encoding. PlainText bool diff --git a/command/agent/agent_endpoint.go b/command/agent/agent_endpoint.go index 56c3631b7d1..58fa0f6a52c 100644 --- a/command/agent/agent_endpoint.go +++ b/command/agent/agent_endpoint.go @@ -175,9 +175,6 @@ func (s *HTTPServer) AgentMonitor(resp http.ResponseWriter, req *http.Request) ( return nil, CodedError(400, fmt.Sprintf("Unknown log level: %s", logLevel)) } - // Determine if we are targeting a server or client - nodeID := req.URL.Query().Get("node_id") - logJSON := false logJSONStr := req.URL.Query().Get("log_json") if logJSONStr != "" { @@ -198,9 +195,11 @@ func (s *HTTPServer) AgentMonitor(resp http.ResponseWriter, req *http.Request) ( plainText = parsed } + nodeID := req.URL.Query().Get("node_id") // Build the request and parse the ACL token args := cstructs.MonitorRequest{ NodeID: nodeID, + ServerID: req.URL.Query().Get("server_id"), LogLevel: logLevel, LogJSON: logJSON, PlainText: plainText, diff --git a/command/agent_monitor.go b/command/agent_monitor.go index 4927c5784fe..4d50faf6a43 100644 --- a/command/agent_monitor.go +++ b/command/agent_monitor.go @@ -61,12 +61,14 @@ func (c *MonitorCommand) Run(args []string) int { var logLevel string var nodeID string + var serverID string var logJSON bool flags := c.Meta.FlagSet(c.Name(), FlagSetClient) flags.Usage = func() { c.Ui.Output(c.Help()) } flags.StringVar(&logLevel, "log-level", "", "") flags.StringVar(&nodeID, "node-id", "", "") + flags.StringVar(&serverID, "server-id", "", "") flags.BoolVar(&logJSON, "json", false, "") if err := flags.Parse(args); err != nil { @@ -90,6 +92,7 @@ func (c *MonitorCommand) Run(args []string) int { params := map[string]string{ "log_level": logLevel, "node_id": nodeID, + "server_id": serverID, "log_json": strconv.FormatBool(logJSON), } diff --git a/nomad/client_agent_endpoint.go b/nomad/client_agent_endpoint.go index 1b664730fe7..70c277d1b9f 100644 --- a/nomad/client_agent_endpoint.go +++ b/nomad/client_agent_endpoint.go @@ -61,7 +61,7 @@ func (m *Agent) monitor(conn io.ReadWriteCloser) { // Targeting a node, forward request to node if args.NodeID != "" && args.NodeID != "leader" { - m.forwardMonitor(conn, args, encoder, decoder) + m.forwardMonitorClient(conn, args, encoder, decoder) // forwarded request has ended, return return } @@ -73,12 +73,18 @@ func (m *Agent) monitor(conn io.ReadWriteCloser) { return } if !isLeader && remoteServer == nil { - err := fmt.Errorf("No leader") + err := fmt.Errorf("no leader") handleStreamResultError(err, helper.Int64ToPtr(400), encoder) return } } + // targeting a specific server, forward to that server + if args.ServerID != "" { + m.forwardMonitorServer(conn, args, encoder, decoder) + return + } + // NodeID was empty, so monitor this current server ctx, cancel := context.WithCancel(context.Background()) defer cancel() @@ -181,7 +187,7 @@ OUTER: } } -func (m *Agent) forwardMonitor(conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) { +func (m *Agent) forwardMonitorClient(conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) { nodeID := args.NodeID snap, err := m.srv.State().Snapshot() @@ -272,3 +278,43 @@ func (m *Agent) forwardMonitorLeader(leader *serverParts, conn io.ReadWriteClose structs.Bridge(conn, leaderConn) return } + +func (m *Agent) forwardMonitorServer(conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) { + serverID := args.ServerID + // empty ServerID to prevent forwarding loop + args.ServerID = "" + + serfMembers := m.srv.Members() + var target *serverParts + for _, mem := range serfMembers { + if mem.Name == serverID { + ok, srv := isNomadServer(mem) + if !ok { + err := fmt.Errorf("unknown nomad server %s", serverID) + handleStreamResultError(err, nil, encoder) + return + } + target = srv + } + } + + var serverConn net.Conn + localConn, err := m.srv.streamingRpc(target, "Agent.Monitor") + if err != nil { + handleStreamResultError(err, nil, encoder) + return + } + + serverConn = localConn + defer serverConn.Close() + + // Send the Request + outEncoder := codec.NewEncoder(serverConn, structs.MsgpackHandle) + if err := outEncoder.Encode(args); err != nil { + handleStreamResultError(err, nil, encoder) + return + } + + structs.Bridge(conn, serverConn) + return +} From e46c41553d2eec347aa3c9209bb0ca20757db909 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Wed, 13 Nov 2019 09:32:18 -0500 Subject: [PATCH 029/241] serverID to target remote leader or server handle the case where we request a server-id which is this current server update docs, error on node and server id params more accurate names for tests use shared no leader err, formatting rm bad comment remove redundant variable --- command/agent/agent_endpoint.go | 5 + nomad/client_agent_endpoint.go | 94 +++++----- nomad/client_agent_endpoint_test.go | 174 +++++++++++------- website/source/api/agent.html.md | 13 +- .../source/docs/commands/monitor.html.md.erb | 4 + 5 files changed, 172 insertions(+), 118 deletions(-) diff --git a/command/agent/agent_endpoint.go b/command/agent/agent_endpoint.go index 58fa0f6a52c..2d25dc48b59 100644 --- a/command/agent/agent_endpoint.go +++ b/command/agent/agent_endpoint.go @@ -205,6 +205,11 @@ func (s *HTTPServer) AgentMonitor(resp http.ResponseWriter, req *http.Request) ( PlainText: plainText, } + // if node and server were requested return error + if args.NodeID != "" && args.ServerID != "" { + return nil, CodedError(400, "Cannot target node and server simultaneously") + } + s.parse(resp, req, &args.QueryOptions.Region, &args.QueryOptions) // Make the RPC diff --git a/nomad/client_agent_endpoint.go b/nomad/client_agent_endpoint.go index 70c277d1b9f..60d8c7b44c3 100644 --- a/nomad/client_agent_endpoint.go +++ b/nomad/client_agent_endpoint.go @@ -60,27 +60,25 @@ func (m *Agent) monitor(conn io.ReadWriteCloser) { } // Targeting a node, forward request to node - if args.NodeID != "" && args.NodeID != "leader" { + if args.NodeID != "" { m.forwardMonitorClient(conn, args, encoder, decoder) // forwarded request has ended, return return } - if args.NodeID == "leader" { - isLeader, remoteServer := m.srv.getLeader() - if !isLeader && remoteServer != nil { - m.forwardMonitorLeader(remoteServer, conn, args, encoder, decoder) - return - } - if !isLeader && remoteServer == nil { - err := fmt.Errorf("no leader") - handleStreamResultError(err, helper.Int64ToPtr(400), encoder) - return - } + currentServer := m.srv.serf.LocalMember().Name + var forwardServer bool + // Targeting a remote server which is not the leader and not this server + if args.ServerID != "" && args.ServerID != "leader" && args.ServerID != currentServer { + forwardServer = true + } + + // Targeting leader and this server is not current leader + if args.ServerID == "leader" && !m.srv.IsLeader() { + forwardServer = true } - // targeting a specific server, forward to that server - if args.ServerID != "" { + if forwardServer { m.forwardMonitorServer(conn, args, encoder, decoder) return } @@ -256,62 +254,52 @@ func (m *Agent) forwardMonitorClient(conn io.ReadWriteCloser, args cstructs.Moni return } -func (m *Agent) forwardMonitorLeader(leader *serverParts, conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) { - var leaderConn net.Conn - - localConn, err := m.srv.streamingRpc(leader, "Agent.Monitor") - if err != nil { - handleStreamResultError(err, nil, encoder) - return - } - - leaderConn = localConn - defer leaderConn.Close() - - // Send the Request - outEncoder := codec.NewEncoder(leaderConn, structs.MsgpackHandle) - if err := outEncoder.Encode(args); err != nil { - handleStreamResultError(err, nil, encoder) - return - } - - structs.Bridge(conn, leaderConn) - return -} - func (m *Agent) forwardMonitorServer(conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) { + var target *serverParts serverID := args.ServerID + // empty ServerID to prevent forwarding loop args.ServerID = "" - serfMembers := m.srv.Members() - var target *serverParts - for _, mem := range serfMembers { - if mem.Name == serverID { - ok, srv := isNomadServer(mem) - if !ok { - err := fmt.Errorf("unknown nomad server %s", serverID) - handleStreamResultError(err, nil, encoder) - return + if serverID == "leader" { + isLeader, remoteServer := m.srv.getLeader() + if !isLeader && remoteServer != nil { + target = remoteServer + } + if !isLeader && remoteServer == nil { + handleStreamResultError(structs.ErrNoLeader, helper.Int64ToPtr(400), encoder) + return + } + } else { + // See if the server ID is a known member + serfMembers := m.srv.Members() + for _, mem := range serfMembers { + if mem.Name == serverID { + if ok, srv := isNomadServer(mem); ok { + target = srv + } } - target = srv } } - var serverConn net.Conn - localConn, err := m.srv.streamingRpc(target, "Agent.Monitor") - if err != nil { - handleStreamResultError(err, nil, encoder) + // Unable to find a server + if target == nil { + err := fmt.Errorf("unknown nomad server %s", serverID) + handleStreamResultError(err, helper.Int64ToPtr(400), encoder) return } - serverConn = localConn + serverConn, err := m.srv.streamingRpc(target, "Agent.Monitor") + if err != nil { + handleStreamResultError(err, helper.Int64ToPtr(500), encoder) + return + } defer serverConn.Close() // Send the Request outEncoder := codec.NewEncoder(serverConn, structs.MsgpackHandle) if err := outEncoder.Encode(args); err != nil { - handleStreamResultError(err, nil, encoder) + handleStreamResultError(err, helper.Int64ToPtr(500), encoder) return } diff --git a/nomad/client_agent_endpoint_test.go b/nomad/client_agent_endpoint_test.go index 1ddbdb628d1..b80f75c56bd 100644 --- a/nomad/client_agent_endpoint_test.go +++ b/nomad/client_agent_endpoint_test.go @@ -9,6 +9,7 @@ import ( "testing" "time" + "github.com/hashicorp/go-hclog" "github.com/hashicorp/nomad/acl" "github.com/hashicorp/nomad/client" "github.com/hashicorp/nomad/client/config" @@ -22,7 +23,7 @@ import ( "github.com/ugorji/go/codec" ) -func TestMonitor_Monitor_Remote_Server(t *testing.T) { +func TestMonitor_Monitor_Remote_Client(t *testing.T) { t.Parallel() require := require.New(t) @@ -117,9 +118,8 @@ OUTER: } } -func TestMonitor_MonitorRemoteLeader(t *testing.T) { +func TestMonitor_Monitor_RemoteServer(t *testing.T) { t.Parallel() - require := require.New(t) // start servers s1 := TestServer(t, nil) @@ -132,6 +132,7 @@ func TestMonitor_MonitorRemoteLeader(t *testing.T) { testutil.WaitForLeader(t, s1.RPC) testutil.WaitForLeader(t, s2.RPC) + // determine leader and nonleader servers := []*Server{s1, s2} var nonLeader *Server var leader *Server @@ -143,78 +144,127 @@ func TestMonitor_MonitorRemoteLeader(t *testing.T) { } } - go func() { - for { - leader.logger.Warn("leader log") - time.Sleep(10 * time.Millisecond) - } - }() - - // No node ID to monitor the remote server - req := cstructs.MonitorRequest{ - LogLevel: "warn", - NodeID: "leader", + cases := []struct { + desc string + serverID string + expectedLog string + logger hclog.InterceptLogger + origin *Server + }{ + { + desc: "remote leader", + serverID: "leader", + expectedLog: "leader log", + logger: leader.logger, + origin: nonLeader, + }, + { + desc: "remote server", + serverID: nonLeader.serf.LocalMember().Name, + expectedLog: "nonleader log", + logger: nonLeader.logger, + origin: leader, + }, + { + desc: "serverID is current leader", + serverID: "leader", + expectedLog: "leader log", + logger: leader.logger, + origin: leader, + }, + { + desc: "serverID is current server", + serverID: nonLeader.serf.LocalMember().Name, + expectedLog: "non leader log", + logger: nonLeader.logger, + origin: nonLeader, + }, } - handler, err := nonLeader.StreamingRpcHandler("Agent.Monitor") - require.Nil(err) + for _, tc := range cases { + t.Run(tc.desc, func(t *testing.T) { + require := require.New(t) - // create pipe - p1, p2 := net.Pipe() - defer p1.Close() - defer p2.Close() + // send some specific logs + doneCh := make(chan struct{}) + go func() { + for { + select { + case <-doneCh: + return + default: + tc.logger.Warn(tc.expectedLog) + time.Sleep(10 * time.Millisecond) + } + } + }() - errCh := make(chan error) - streamMsg := make(chan *cstructs.StreamErrWrapper) + req := cstructs.MonitorRequest{ + LogLevel: "warn", + ServerID: tc.serverID, + } - go handler(p2) + handler, err := tc.origin.StreamingRpcHandler("Agent.Monitor") + require.Nil(err) - // Start decoder - go func() { - decoder := codec.NewDecoder(p1, structs.MsgpackHandle) - for { - var msg cstructs.StreamErrWrapper - if err := decoder.Decode(&msg); err != nil { - if err == io.EOF || strings.Contains(err.Error(), "closed") { - return - } - errCh <- fmt.Errorf("error decoding: %v", err) - } + // create pipe + p1, p2 := net.Pipe() + defer p1.Close() + defer p2.Close() - streamMsg <- &msg - } - }() + errCh := make(chan error) + streamMsg := make(chan *cstructs.StreamErrWrapper) - // send request - encoder := codec.NewEncoder(p1, structs.MsgpackHandle) - require.Nil(encoder.Encode(req)) + go handler(p2) - timeout := time.After(2 * time.Second) - expected := "leader log" - received := "" + // Start decoder + go func() { + decoder := codec.NewDecoder(p1, structs.MsgpackHandle) + for { + var msg cstructs.StreamErrWrapper + if err := decoder.Decode(&msg); err != nil { + if err == io.EOF || strings.Contains(err.Error(), "closed") { + return + } + errCh <- fmt.Errorf("error decoding: %v", err) + } -OUTER: - for { - select { - case <-timeout: - t.Fatal("timeout waiting for logs") - case err := <-errCh: - t.Fatal(err) - case msg := <-streamMsg: - if msg.Error != nil { - t.Fatalf("Got error: %v", msg.Error.Error()) - } + streamMsg <- &msg + } + }() - var frame sframer.StreamFrame - err := json.Unmarshal(msg.Payload, &frame) - assert.NoError(t, err) + // send request + encoder := codec.NewEncoder(p1, structs.MsgpackHandle) + require.Nil(encoder.Encode(req)) - received += string(frame.Data) - if strings.Contains(received, expected) { - require.Nil(p2.Close()) - break OUTER + timeout := time.After(2 * time.Second) + received := "" + + OUTER: + for { + select { + case <-timeout: + t.Fatal("timeout waiting for logs") + case err := <-errCh: + t.Fatal(err) + case msg := <-streamMsg: + if msg.Error != nil { + t.Fatalf("Got error: %v", msg.Error.Error()) + } + + var frame sframer.StreamFrame + err := json.Unmarshal(msg.Payload, &frame) + assert.NoError(t, err) + + received += string(frame.Data) + if strings.Contains(received, tc.expectedLog) { + close(doneCh) + require.Nil(p2.Close()) + break OUTER + } + } } - } + }) } } diff --git a/website/source/api/agent.html.md b/website/source/api/agent.html.md index 7d24467197a..42e5125671c 100644 --- a/website/source/api/agent.html.md +++ b/website/source/api/agent.html.md @@ -518,16 +518,20 @@ The table below shows this endpoint's support for ### Parameters -- `log-level` `(string: "info")` - Specifies a text string containing a log level +- `log_level` `(string: "info")` - Specifies a text string containing a log level to filter on, such as `info`. Possible values include `trace`, `debug`, `info`, `warn`, `error` - `json` `(bool: false)` - Specifies if the log format for streamed logs should be JSON. -- `node-id` `(string: "a57b2adb-1a30-2dda-8df0-25abb0881952")` - Specifies a text +- `node_id` `(string: "a57b2adb-1a30-2dda-8df0-25abb0881952")` - Specifies a text string containing a node-id to target for streaming. +- `server_id` `(string: "server1.global")` - Specifies a text + string containing a server name or "leader" to target a specific remote server + or leader for streaming. + - `plain` `(bool: false)` - Specifies if the response should be JSON or plaintext @@ -535,7 +539,10 @@ The table below shows this endpoint's support for ```text $ curl \ - https://localhost:4646/v1/agent/monitor?log-level=debug&node-id=a57b2adb-1a30-2dda-8df0-25abb0881952 + https://localhost:4646/v1/agent/monitor?log_level=debug&server_id=leader + +$ curl \ + https://localhost:4646/v1/agent/monitor?log_level=debug&node_id=a57b2adb-1a30-2dda-8df0-25abb0881952 ``` ### Sample Response diff --git a/website/source/docs/commands/monitor.html.md.erb b/website/source/docs/commands/monitor.html.md.erb index 7f6f0264feb..c26e730b23e 100644 --- a/website/source/docs/commands/monitor.html.md.erb +++ b/website/source/docs/commands/monitor.html.md.erb @@ -37,6 +37,10 @@ The monitor command also allows you to specify a single client node id to follow - `-node-id`: Specifies the client node-id to stream logs from. If no node-id is given the nomad server from the -address flag will be used. +- `-server-id`: Specifies the nomad server id to stream logs from. Accepts +server names from `nomad server members` and also a special `leader` option +which will target the current leader. + - `-json`: Stream logs in json format ## Examples From 527290cc10011c5e8b1c3555ead89458a847f708 Mon Sep 17 00:00:00 2001 From: Luiz Aoqui Date: Thu, 14 Nov 2019 16:06:09 -0500 Subject: [PATCH 030/241] api: use the same initial time for all drain properties --- nomad/node_endpoint.go | 19 +++++++++++-------- nomad/node_endpoint_test.go | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/nomad/node_endpoint.go b/nomad/node_endpoint.go index 954416e1463..c5913c27319 100644 --- a/nomad/node_endpoint.go +++ b/nomad/node_endpoint.go @@ -523,8 +523,10 @@ func (n *Node) UpdateDrain(args *structs.NodeUpdateDrainRequest, return fmt.Errorf("node not found") } + now := time.Now().UTC() + // Update the timestamp of when the node status was updated - args.UpdatedAt = time.Now().Unix() + args.UpdatedAt = now.Unix() // COMPAT: Remove in 0.9. Attempt to upgrade the request if it is of the old // format. @@ -536,18 +538,19 @@ func (n *Node) UpdateDrain(args *structs.NodeUpdateDrainRequest, } } - // Mark start time for the drain + // Setup drain strategy if args.DrainStrategy != nil { - if node.DrainStrategy == nil || node.DrainStrategy.StartedAt.IsZero() { - args.DrainStrategy.StartedAt = time.Now().UTC() + // Mark start time for the drain + if node.DrainStrategy == nil { + args.DrainStrategy.StartedAt = now } else { args.DrainStrategy.StartedAt = node.DrainStrategy.StartedAt } - } - // Mark the deadline time - if args.DrainStrategy != nil && args.DrainStrategy.Deadline.Nanoseconds() > 0 { - args.DrainStrategy.ForceDeadline = time.Now().Add(args.DrainStrategy.Deadline).UTC() + // Mark the deadline time + if args.DrainStrategy.Deadline.Nanoseconds() > 0 { + args.DrainStrategy.ForceDeadline = now.Add(args.DrainStrategy.Deadline) + } } // Construct the node event diff --git a/nomad/node_endpoint_test.go b/nomad/node_endpoint_test.go index a61c2905ce4..7ebf36bf879 100644 --- a/nomad/node_endpoint_test.go +++ b/nomad/node_endpoint_test.go @@ -908,7 +908,7 @@ func TestClientEndpoint_UpdateDrain(t *testing.T) { drainStartedAt := out.DrainStrategy.StartedAt // StartedAt should be close to the time the drain started - require.WithinDuration(beforeUpdate, out.DrainStrategy.StartedAt, 1*time.Second) + require.WithinDuration(beforeUpdate, drainStartedAt, 1*time.Second) // StartedAt shouldn't change if a new request comes while still draining require.Nil(msgpackrpc.CallWithCodec(codec, "Node.UpdateDrain", dereg, &resp2)) From a1eb910423165ab5cc50e7cefd92bd96ffca57ea Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Thu, 14 Nov 2019 16:29:06 -0500 Subject: [PATCH 031/241] Update redirects.txt --- website/source/redirects.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/website/source/redirects.txt b/website/source/redirects.txt index 93f71e9ad3c..3830761f96f 100644 --- a/website/source/redirects.txt +++ b/website/source/redirects.txt @@ -48,6 +48,7 @@ /community.html /resources.html # Docs +/docs/index /docs/index.html /docs/agent/config.html /docs/configuration/index.html /docs/jobops /guides/operating-a-job/index.html /docs/jobops/ /guides/operating-a-job/index.html From c8712dbbf2b87153ed1ce318bfc4f4163e57bfb4 Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Thu, 14 Nov 2019 16:38:24 -0500 Subject: [PATCH 032/241] a few more redirects --- website/source/redirects.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/source/redirects.txt b/website/source/redirects.txt index 3830761f96f..de6c00e9141 100644 --- a/website/source/redirects.txt +++ b/website/source/redirects.txt @@ -49,6 +49,8 @@ # Docs /docs/index /docs/index.html +/api/index /api/index.html +/resources /resources.html /docs/agent/config.html /docs/configuration/index.html /docs/jobops /guides/operating-a-job/index.html /docs/jobops/ /guides/operating-a-job/index.html From 39f1d61938f4404ac0bd86d79cf746a83b26a7ad Mon Sep 17 00:00:00 2001 From: Luiz Aoqui Date: Fri, 15 Nov 2019 15:45:38 -0500 Subject: [PATCH 033/241] update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d9f451d43..a4eb88c4955 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ FEATURES: * core: Add `nomad monitor` command to stream logs at a specified level for debugging [[GH-6499](https://github.com/hashicorp/nomad/issues/6499)] IMPROVEMENTS: + * api: Add `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)] * core: Add support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)] * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)] From 387b016ac442ed7c3d8d81144abda48f6953e587 Mon Sep 17 00:00:00 2001 From: Nick Ethier Date: Mon, 18 Nov 2019 13:04:01 -0500 Subject: [PATCH 034/241] =?UTF-8?q?client:=20improve=20group=20service=20s?= =?UTF-8?q?tanza=20interpolation=20and=20check=5Fre=E2=80=A6=20(#6586)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * client: improve group service stanza interpolation and check_restart support Interpolation can now be done on group service stanzas. Note that some task runtime specific information that was previously available when the service was registered poststart of a task is no longer available. The check_restart stanza for checks defined on group services will now properly restart the allocation upon check failures if configured. --- client/allochealth/tracker.go | 2 +- client/allocrunner/alloc_runner.go | 34 ++ client/allocrunner/alloc_runner_hooks.go | 9 +- client/allocrunner/alloc_runner_test.go | 4 +- client/allocrunner/alloc_runner_unix_test.go | 13 +- client/allocrunner/groupservice_hook.go | 128 ++++++- client/allocrunner/groupservice_hook_test.go | 190 +++++++++- client/allocrunner/health_hook_test.go | 2 +- .../taskrunner/envoybootstrap_hook.go | 2 +- .../taskrunner/envoybootstrap_hook_test.go | 2 +- .../taskrunner/script_check_hook.go | 4 +- client/allocrunner/taskrunner/service_hook.go | 89 +---- .../taskrunner/service_hook_test.go | 82 ----- client/consul/consul.go | 10 +- client/consul/consul_testing.go | 50 +-- client/taskenv/env.go | 3 + client/taskenv/env_test.go | 15 + client/taskenv/services.go | 64 ++++ client/taskenv/services_test.go | 85 +++++ command/agent/bindata_assetfs.go | 44 +-- command/agent/consul/check_watcher.go | 10 +- command/agent/consul/client.go | 233 +++--------- command/agent/consul/group_test.go | 91 +---- command/agent/consul/structs.go | 74 ++-- command/agent/consul/testing.go | 17 + command/agent/consul/unit_test.go | 342 +++++++++--------- nomad/job_endpoint_test.go | 1 + nomad/structs/structs.go | 9 +- nomad/structs/structs_test.go | 45 +++ 29 files changed, 921 insertions(+), 733 deletions(-) create mode 100644 client/taskenv/services.go create mode 100644 client/taskenv/services_test.go create mode 100644 command/agent/consul/testing.go diff --git a/client/allochealth/tracker.go b/client/allochealth/tracker.go index abc92364870..9b158828c31 100644 --- a/client/allochealth/tracker.go +++ b/client/allochealth/tracker.go @@ -419,7 +419,7 @@ OUTER: type taskHealthState struct { task *structs.Task state *structs.TaskState - taskRegistrations *consul.TaskRegistration + taskRegistrations *consul.ServiceRegistrations } // event takes the deadline time for the allocation to be healthy and the update diff --git a/client/allocrunner/alloc_runner.go b/client/allocrunner/alloc_runner.go index 0c0a7af1c89..a8291cc7199 100644 --- a/client/allocrunner/alloc_runner.go +++ b/client/allocrunner/alloc_runner.go @@ -22,6 +22,7 @@ import ( cstate "github.com/hashicorp/nomad/client/state" cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/client/vaultclient" + agentconsul "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/helper" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/plugins/device" @@ -1001,6 +1002,39 @@ func (ar *allocRunner) RestartTask(taskName string, taskEvent *structs.TaskEvent return tr.Restart(context.TODO(), taskEvent, false) } +// Restart satisfies the WorkloadRestarter interface restarts all task runners +// concurrently +func (ar *allocRunner) Restart(ctx context.Context, event *structs.TaskEvent, failure bool) error { + waitCh := make(chan struct{}) + var err *multierror.Error + var errMutex sync.Mutex + + go func() { + var wg sync.WaitGroup + defer close(waitCh) + for tn, tr := range ar.tasks { + wg.Add(1) + go func(taskName string, r agentconsul.WorkloadRestarter) { + defer wg.Done() + e := r.Restart(ctx, event, failure) + if e != nil { + errMutex.Lock() + defer errMutex.Unlock() + err = multierror.Append(err, fmt.Errorf("failed to restart task %s: %v", taskName, e)) + } + }(tn, tr) + } + wg.Wait() + }() + + select { + case <-waitCh: + case <-ctx.Done(): + } + + return err.ErrorOrNil() +} + // RestartAll signalls all task runners in the allocation to restart and passes // a copy of the task event to each restart event. // Returns any errors in a concatenated form. diff --git a/client/allocrunner/alloc_runner_hooks.go b/client/allocrunner/alloc_runner_hooks.go index 25c3ba84afb..63dc78f49f6 100644 --- a/client/allocrunner/alloc_runner_hooks.go +++ b/client/allocrunner/alloc_runner_hooks.go @@ -7,6 +7,7 @@ import ( multierror "github.com/hashicorp/go-multierror" "github.com/hashicorp/nomad/client/allocrunner/interfaces" clientconfig "github.com/hashicorp/nomad/client/config" + "github.com/hashicorp/nomad/client/taskenv" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/plugins/drivers" ) @@ -125,7 +126,13 @@ func (ar *allocRunner) initRunnerHooks(config *clientconfig.Config) error { newDiskMigrationHook(hookLogger, ar.prevAllocMigrator, ar.allocDir), newAllocHealthWatcherHook(hookLogger, alloc, hs, ar.Listener(), ar.consulClient), newNetworkHook(hookLogger, ns, alloc, nm, nc), - newGroupServiceHook(hookLogger, alloc, ar.consulClient), + newGroupServiceHook(groupServiceHookConfig{ + alloc: alloc, + consul: ar.consulClient, + restarter: ar, + taskEnvBuilder: taskenv.NewBuilder(config.Node, ar.Alloc(), nil, config.Region).SetAllocDir(ar.allocDir.AllocDir), + logger: hookLogger, + }), newConsulSockHook(hookLogger, alloc, ar.allocDir, config.ConsulConfig), } diff --git a/client/allocrunner/alloc_runner_test.go b/client/allocrunner/alloc_runner_test.go index 548602f1ebb..f4ee44a65be 100644 --- a/client/allocrunner/alloc_runner_test.go +++ b/client/allocrunner/alloc_runner_test.go @@ -528,7 +528,7 @@ func TestAllocRunner_DeploymentHealth_Unhealthy_Checks(t *testing.T) { consulClient := conf.Consul.(*cconsul.MockConsulServiceClient) consulClient.AllocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) { return &consul.AllocRegistration{ - Tasks: map[string]*consul.TaskRegistration{ + Tasks: map[string]*consul.ServiceRegistrations{ task.Name: { Services: map[string]*consul.ServiceRegistration{ "123": { @@ -847,7 +847,7 @@ func TestAllocRunner_TaskFailed_KillTG(t *testing.T) { consulClient := conf.Consul.(*cconsul.MockConsulServiceClient) consulClient.AllocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) { return &consul.AllocRegistration{ - Tasks: map[string]*consul.TaskRegistration{ + Tasks: map[string]*consul.ServiceRegistrations{ task.Name: { Services: map[string]*consul.ServiceRegistration{ "123": { diff --git a/client/allocrunner/alloc_runner_unix_test.go b/client/allocrunner/alloc_runner_unix_test.go index 981d68ed92f..7cc83051046 100644 --- a/client/allocrunner/alloc_runner_unix_test.go +++ b/client/allocrunner/alloc_runner_unix_test.go @@ -33,6 +33,12 @@ func TestAllocRunner_Restore_RunningTerminal(t *testing.T) { // 5. Assert task and logmon are cleaned up alloc := mock.Alloc() + alloc.Job.TaskGroups[0].Services = []*structs.Service{ + { + Name: "foo", + PortLabel: "8888", + }, + } task := alloc.Job.TaskGroups[0].Tasks[0] task.Driver = "mock_driver" task.Config = map[string]interface{}{ @@ -117,13 +123,12 @@ func TestAllocRunner_Restore_RunningTerminal(t *testing.T) { // 2 removals (canary+noncanary) during prekill // 2 removals (canary+noncanary) during exited // 2 removals (canary+noncanary) during stop - // 1 remove group during stop + // 2 removals (canary+noncanary) group during stop consulOps := conf2.Consul.(*consul.MockConsulServiceClient).GetOps() - require.Len(t, consulOps, 7) - for _, op := range consulOps[:6] { + require.Len(t, consulOps, 8) + for _, op := range consulOps { require.Equal(t, "remove", op.Op) } - require.Equal(t, "remove_group", consulOps[6].Op) // Assert terminated task event was emitted events := ar2.AllocState().TaskStates[task.Name].Events diff --git a/client/allocrunner/groupservice_hook.go b/client/allocrunner/groupservice_hook.go index b9c65b0bf4f..1660fc738f5 100644 --- a/client/allocrunner/groupservice_hook.go +++ b/client/allocrunner/groupservice_hook.go @@ -3,30 +3,63 @@ package allocrunner import ( "sync" - hclog "github.com/hashicorp/go-hclog" log "github.com/hashicorp/go-hclog" "github.com/hashicorp/nomad/client/allocrunner/interfaces" "github.com/hashicorp/nomad/client/consul" + "github.com/hashicorp/nomad/client/taskenv" + agentconsul "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/nomad/structs" + "github.com/hashicorp/nomad/plugins/drivers" ) // groupServiceHook manages task group Consul service registration and // deregistration. type groupServiceHook struct { - alloc *structs.Allocation + allocID string + group string + restarter agentconsul.WorkloadRestarter consulClient consul.ConsulServiceAPI prerun bool - mu sync.Mutex logger log.Logger + + // The following fields may be updated + canary bool + services []*structs.Service + networks structs.Networks + taskEnvBuilder *taskenv.Builder + + // Since Update() may be called concurrently with any other hook all + // hook methods must be fully serialized + mu sync.Mutex +} + +type groupServiceHookConfig struct { + alloc *structs.Allocation + consul consul.ConsulServiceAPI + restarter agentconsul.WorkloadRestarter + taskEnvBuilder *taskenv.Builder + logger log.Logger } -func newGroupServiceHook(logger hclog.Logger, alloc *structs.Allocation, consulClient consul.ConsulServiceAPI) *groupServiceHook { +func newGroupServiceHook(cfg groupServiceHookConfig) *groupServiceHook { h := &groupServiceHook{ - alloc: alloc, - consulClient: consulClient, + allocID: cfg.alloc.ID, + group: cfg.alloc.TaskGroup, + restarter: cfg.restarter, + consulClient: cfg.consul, + taskEnvBuilder: cfg.taskEnvBuilder, + } + h.logger = cfg.logger.Named(h.Name()) + h.services = cfg.alloc.Job.LookupTaskGroup(h.group).Services + + if cfg.alloc.AllocatedResources != nil { + h.networks = cfg.alloc.AllocatedResources.Shared.Networks + } + + if cfg.alloc.DeploymentStatus != nil { + h.canary = cfg.alloc.DeploymentStatus.Canary } - h.logger = logger.Named(h.Name()) return h } @@ -41,14 +74,39 @@ func (h *groupServiceHook) Prerun() error { h.prerun = true h.mu.Unlock() }() - return h.consulClient.RegisterGroup(h.alloc) + + if len(h.services) == 0 { + return nil + } + + services := h.getWorkloadServices() + return h.consulClient.RegisterWorkload(services) } func (h *groupServiceHook) Update(req *interfaces.RunnerUpdateRequest) error { h.mu.Lock() defer h.mu.Unlock() - oldAlloc := h.alloc - h.alloc = req.Alloc + oldWorkloadServices := h.getWorkloadServices() + + // Store new updated values out of request + canary := false + if req.Alloc.DeploymentStatus != nil { + canary = req.Alloc.DeploymentStatus.Canary + } + + var networks structs.Networks + if req.Alloc.AllocatedResources != nil { + networks = req.Alloc.AllocatedResources.Shared.Networks + } + + // Update group service hook fields + h.networks = networks + h.services = req.Alloc.Job.LookupTaskGroup(h.group).Services + h.canary = canary + h.taskEnvBuilder.UpdateTask(req.Alloc, nil) + + // Create new task services struct with those new values + newWorkloadServices := h.getWorkloadServices() if !h.prerun { // Update called before Prerun. Update alloc and exit to allow @@ -56,11 +114,57 @@ func (h *groupServiceHook) Update(req *interfaces.RunnerUpdateRequest) error { return nil } - return h.consulClient.UpdateGroup(oldAlloc, h.alloc) + return h.consulClient.UpdateWorkload(oldWorkloadServices, newWorkloadServices) } func (h *groupServiceHook) Postrun() error { h.mu.Lock() defer h.mu.Unlock() - return h.consulClient.RemoveGroup(h.alloc) + h.deregister() + return nil +} + +func (h *groupServiceHook) driverNet() *drivers.DriverNetwork { + if len(h.networks) == 0 { + return nil + } + + //TODO(schmichael) only support one network for now + net := h.networks[0] + //TODO(schmichael) there's probably a better way than hacking driver network + return &drivers.DriverNetwork{ + AutoAdvertise: true, + IP: net.IP, + // Copy PortLabels from group network + PortMap: net.PortLabels(), + } +} + +// deregister services from Consul. +func (h *groupServiceHook) deregister() { + if len(h.services) > 0 { + workloadServices := h.getWorkloadServices() + h.consulClient.RemoveWorkload(workloadServices) + + // Canary flag may be getting flipped when the alloc is being + // destroyed, so remove both variations of the service + workloadServices.Canary = !workloadServices.Canary + h.consulClient.RemoveWorkload(workloadServices) + } +} + +func (h *groupServiceHook) getWorkloadServices() *agentconsul.WorkloadServices { + // Interpolate with the task's environment + interpolatedServices := taskenv.InterpolateServices(h.taskEnvBuilder.Build(), h.services) + + // Create task services struct with request's driver metadata + return &agentconsul.WorkloadServices{ + AllocID: h.allocID, + Group: h.group, + Restarter: h.restarter, + Services: interpolatedServices, + DriverNetwork: h.driverNet(), + Networks: h.networks, + Canary: h.canary, + } } diff --git a/client/allocrunner/groupservice_hook_test.go b/client/allocrunner/groupservice_hook_test.go index b3b11c632e6..afd8cb0d118 100644 --- a/client/allocrunner/groupservice_hook_test.go +++ b/client/allocrunner/groupservice_hook_test.go @@ -1,10 +1,15 @@ package allocrunner import ( + "io/ioutil" "testing" + "time" + consulapi "github.com/hashicorp/consul/api" + ctestutil "github.com/hashicorp/consul/testutil" "github.com/hashicorp/nomad/client/allocrunner/interfaces" "github.com/hashicorp/nomad/client/consul" + "github.com/hashicorp/nomad/client/taskenv" agentconsul "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" @@ -22,10 +27,20 @@ func TestGroupServiceHook_NoGroupServices(t *testing.T) { t.Parallel() alloc := mock.Alloc() + alloc.Job.TaskGroups[0].Services = []*structs.Service{{ + Name: "foo", + PortLabel: "9999", + }} logger := testlog.HCLogger(t) consulClient := consul.NewMockConsulServiceClient(t, logger) - h := newGroupServiceHook(logger, alloc, consulClient) + h := newGroupServiceHook(groupServiceHookConfig{ + alloc: alloc, + consul: consulClient, + restarter: agentconsul.NoopRestarter(), + taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region), + logger: logger, + }) require.NoError(t, h.Prerun()) req := &interfaces.RunnerUpdateRequest{Alloc: alloc} @@ -34,10 +49,10 @@ func TestGroupServiceHook_NoGroupServices(t *testing.T) { require.NoError(t, h.Postrun()) ops := consulClient.GetOps() - require.Len(t, ops, 3) - require.Equal(t, "add_group", ops[0].Op) - require.Equal(t, "update_group", ops[1].Op) - require.Equal(t, "remove_group", ops[2].Op) + require.Len(t, ops, 4) + require.Equal(t, "add", ops[0].Op) + require.Equal(t, "update", ops[1].Op) + require.Equal(t, "remove", ops[2].Op) } // TestGroupServiceHook_GroupServices asserts group service hooks with group @@ -49,7 +64,13 @@ func TestGroupServiceHook_GroupServices(t *testing.T) { logger := testlog.HCLogger(t) consulClient := consul.NewMockConsulServiceClient(t, logger) - h := newGroupServiceHook(logger, alloc, consulClient) + h := newGroupServiceHook(groupServiceHookConfig{ + alloc: alloc, + consul: consulClient, + restarter: agentconsul.NoopRestarter(), + taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region), + logger: logger, + }) require.NoError(t, h.Prerun()) req := &interfaces.RunnerUpdateRequest{Alloc: alloc} @@ -58,18 +79,19 @@ func TestGroupServiceHook_GroupServices(t *testing.T) { require.NoError(t, h.Postrun()) ops := consulClient.GetOps() - require.Len(t, ops, 3) - require.Equal(t, "add_group", ops[0].Op) - require.Equal(t, "update_group", ops[1].Op) - require.Equal(t, "remove_group", ops[2].Op) + require.Len(t, ops, 4) + require.Equal(t, "add", ops[0].Op) + require.Equal(t, "update", ops[1].Op) + require.Equal(t, "remove", ops[2].Op) } // TestGroupServiceHook_Error asserts group service hooks with group // services but no group network returns an error. -func TestGroupServiceHook_Error(t *testing.T) { +func TestGroupServiceHook_NoNetwork(t *testing.T) { t.Parallel() alloc := mock.Alloc() + alloc.Job.TaskGroups[0].Networks = []*structs.NetworkResource{} tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) tg.Services = []*structs.Service{ { @@ -82,15 +104,147 @@ func TestGroupServiceHook_Error(t *testing.T) { } logger := testlog.HCLogger(t) - // No need to set Consul client or call Run. This hould fail before - // attempting to register. - consulClient := agentconsul.NewServiceClient(nil, logger, false) + consulClient := consul.NewMockConsulServiceClient(t, logger) - h := newGroupServiceHook(logger, alloc, consulClient) - require.Error(t, h.Prerun()) + h := newGroupServiceHook(groupServiceHookConfig{ + alloc: alloc, + consul: consulClient, + restarter: agentconsul.NoopRestarter(), + taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region), + logger: logger, + }) + require.NoError(t, h.Prerun()) req := &interfaces.RunnerUpdateRequest{Alloc: alloc} - require.Error(t, h.Update(req)) + require.NoError(t, h.Update(req)) + + require.NoError(t, h.Postrun()) + + ops := consulClient.GetOps() + require.Len(t, ops, 4) + require.Equal(t, "add", ops[0].Op) + require.Equal(t, "update", ops[1].Op) + require.Equal(t, "remove", ops[2].Op) +} + +func TestGroupServiceHook_getWorkloadServices(t *testing.T) { + t.Parallel() + + alloc := mock.Alloc() + alloc.Job.TaskGroups[0].Networks = []*structs.NetworkResource{} + tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) + tg.Services = []*structs.Service{ + { + Name: "testconnect", + PortLabel: "9999", + Connect: &structs.ConsulConnect{ + SidecarService: &structs.ConsulSidecarService{}, + }, + }, + } + logger := testlog.HCLogger(t) + + consulClient := consul.NewMockConsulServiceClient(t, logger) + + h := newGroupServiceHook(groupServiceHookConfig{ + alloc: alloc, + consul: consulClient, + restarter: agentconsul.NoopRestarter(), + taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region), + logger: logger, + }) + + services := h.getWorkloadServices() + require.Len(t, services.Services, 1) +} + +// TestGroupServiceHook_Update08Alloc asserts that adding group services to a previously +// 0.8 alloc works. +// +// COMPAT(0.11) Only valid for upgrades from 0.8. +func TestGroupServiceHook_Update08Alloc(t *testing.T) { + // Create an embedded Consul server + testconsul, err := ctestutil.NewTestServerConfig(func(c *ctestutil.TestServerConfig) { + // If -v wasn't specified squelch consul logging + if !testing.Verbose() { + c.Stdout = ioutil.Discard + c.Stderr = ioutil.Discard + } + }) + if err != nil { + t.Fatalf("error starting test consul server: %v", err) + } + defer testconsul.Stop() + + consulConfig := consulapi.DefaultConfig() + consulConfig.Address = testconsul.HTTPAddr + consulClient, err := consulapi.NewClient(consulConfig) + require.NoError(t, err) + serviceClient := agentconsul.NewServiceClient(consulClient.Agent(), testlog.HCLogger(t), true) + + // Lower periodicInterval to ensure periodic syncing doesn't improperly + // remove Connect services. + //const interval = 50 * time.Millisecond + //serviceClient.periodicInterval = interval + + // Disable deregistration probation to test syncing + //serviceClient.deregisterProbationExpiry = time.Time{} + + go serviceClient.Run() + defer serviceClient.Shutdown() + + // Create new 0.10-style alloc + alloc := mock.Alloc() + alloc.AllocatedResources.Shared.Networks = []*structs.NetworkResource{ + { + Mode: "bridge", + IP: "10.0.0.1", + DynamicPorts: []structs.Port{ + { + Label: "connect-proxy-testconnect", + Value: 9999, + To: 9998, + }, + }, + }, + } + tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) + tg.Services = []*structs.Service{ + { + Name: "testconnect", + PortLabel: "9999", + Connect: &structs.ConsulConnect{ + SidecarService: &structs.ConsulSidecarService{ + Proxy: &structs.ConsulProxy{ + LocalServicePort: 9000, + }, + }, + }, + }, + } + + // Create old 0.8-style alloc from new alloc + oldAlloc := alloc.Copy() + oldAlloc.AllocatedResources = nil + oldAlloc.Job.LookupTaskGroup(alloc.TaskGroup).Services = nil + + // Create the group service hook + h := newGroupServiceHook(groupServiceHookConfig{ + alloc: oldAlloc, + consul: serviceClient, + restarter: agentconsul.NoopRestarter(), + taskEnvBuilder: taskenv.NewBuilder(mock.Node(), oldAlloc, nil, oldAlloc.Job.Region), + logger: testlog.HCLogger(t), + }) + + require.NoError(t, h.Prerun()) + require.NoError(t, h.Update(&interfaces.RunnerUpdateRequest{Alloc: alloc})) + + // Assert the group and sidecar services are registered + require.Eventually(t, func() bool { + services, err := consulClient.Agent().Services() + require.NoError(t, err) + return len(services) == 2 + }, 3*time.Second, 100*time.Millisecond) - require.Error(t, h.Postrun()) } diff --git a/client/allocrunner/health_hook_test.go b/client/allocrunner/health_hook_test.go index 75a4f399b6a..e4e3cfd2cf3 100644 --- a/client/allocrunner/health_hook_test.go +++ b/client/allocrunner/health_hook_test.go @@ -243,7 +243,7 @@ func TestHealthHook_SetHealth(t *testing.T) { Name: task.Services[0].Checks[0].Name, Status: consulapi.HealthPassing, } - taskRegs := map[string]*agentconsul.TaskRegistration{ + taskRegs := map[string]*agentconsul.ServiceRegistrations{ task.Name: { Services: map[string]*agentconsul.ServiceRegistration{ task.Services[0].Name: { diff --git a/client/allocrunner/taskrunner/envoybootstrap_hook.go b/client/allocrunner/taskrunner/envoybootstrap_hook.go index 766864b11e8..35beda5f6cd 100644 --- a/client/allocrunner/taskrunner/envoybootstrap_hook.go +++ b/client/allocrunner/taskrunner/envoybootstrap_hook.go @@ -80,7 +80,7 @@ func (h *envoyBootstrapHook) Prestart(ctx context.Context, req *interfaces.TaskP // it to the secrets directory like Vault tokens. fn := filepath.Join(req.TaskDir.SecretsDir, "envoy_bootstrap.json") - id := agentconsul.MakeTaskServiceID(h.alloc.ID, "group-"+tg.Name, service) + id := agentconsul.MakeAllocServiceID(h.alloc.ID, "group-"+tg.Name, service) h.logger.Debug("bootstrapping envoy", "sidecar_for", service.Name, "boostrap_file", fn, "sidecar_for_id", id, "grpc_addr", grpcAddr) // Since Consul services are registered asynchronously with this task diff --git a/client/allocrunner/taskrunner/envoybootstrap_hook_test.go b/client/allocrunner/taskrunner/envoybootstrap_hook_test.go index 0531f91be11..1bbfaf1b960 100644 --- a/client/allocrunner/taskrunner/envoybootstrap_hook_test.go +++ b/client/allocrunner/taskrunner/envoybootstrap_hook_test.go @@ -86,7 +86,7 @@ func TestTaskRunner_EnvoyBootstrapHook_Ok(t *testing.T) { consulClient := agentconsul.NewServiceClient(consulAPIClient.Agent(), logger, true) go consulClient.Run() defer consulClient.Shutdown() - require.NoError(t, consulClient.RegisterGroup(alloc)) + require.NoError(t, consulClient.RegisterWorkload(agentconsul.BuildAllocServices(mock.Node(), alloc, agentconsul.NoopRestarter()))) // Run Connect bootstrap Hook h := newEnvoyBootstrapHook(alloc, testconsul.HTTPAddr, logger) diff --git a/client/allocrunner/taskrunner/script_check_hook.go b/client/allocrunner/taskrunner/script_check_hook.go index 74efa24efca..b40e92301aa 100644 --- a/client/allocrunner/taskrunner/script_check_hook.go +++ b/client/allocrunner/taskrunner/script_check_hook.go @@ -179,7 +179,7 @@ func (h *scriptCheckHook) newScriptChecks() map[string]*scriptCheck { if check.Type != structs.ServiceCheckScript { continue } - serviceID := agentconsul.MakeTaskServiceID( + serviceID := agentconsul.MakeAllocServiceID( h.alloc.ID, h.task.Name, service) sc := newScriptCheck(&scriptCheckConfig{ allocID: h.alloc.ID, @@ -213,7 +213,7 @@ func (h *scriptCheckHook) newScriptChecks() map[string]*scriptCheck { continue } groupTaskName := "group-" + tg.Name - serviceID := agentconsul.MakeTaskServiceID( + serviceID := agentconsul.MakeAllocServiceID( h.alloc.ID, groupTaskName, service) sc := newScriptCheck(&scriptCheckConfig{ allocID: h.alloc.ID, diff --git a/client/allocrunner/taskrunner/service_hook.go b/client/allocrunner/taskrunner/service_hook.go index 94bbcb23b96..956033f3f31 100644 --- a/client/allocrunner/taskrunner/service_hook.go +++ b/client/allocrunner/taskrunner/service_hook.go @@ -27,7 +27,7 @@ type serviceHookConfig struct { consul consul.ConsulServiceAPI // Restarter is a subset of the TaskLifecycle interface - restarter agentconsul.TaskRestarter + restarter agentconsul.WorkloadRestarter logger log.Logger } @@ -36,7 +36,7 @@ type serviceHook struct { consul consul.ConsulServiceAPI allocID string taskName string - restarter agentconsul.TaskRestarter + restarter agentconsul.WorkloadRestarter logger log.Logger // The following fields may be updated @@ -97,9 +97,9 @@ func (h *serviceHook) Poststart(ctx context.Context, req *interfaces.TaskPoststa h.taskEnv = req.TaskEnv // Create task services struct with request's driver metadata - taskServices := h.getTaskServices() + workloadServices := h.getWorkloadServices() - return h.consul.RegisterTask(taskServices) + return h.consul.RegisterWorkload(workloadServices) } func (h *serviceHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequest, _ *interfaces.TaskUpdateResponse) error { @@ -108,7 +108,7 @@ func (h *serviceHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequ // Create old task services struct with request's driver metadata as it // can't change due to Updates - oldTaskServices := h.getTaskServices() + oldWorkloadServices := h.getWorkloadServices() // Store new updated values out of request canary := false @@ -142,9 +142,9 @@ func (h *serviceHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequ h.canary = canary // Create new task services struct with those new values - newTaskServices := h.getTaskServices() + newWorkloadServices := h.getWorkloadServices() - return h.consul.UpdateTask(oldTaskServices, newTaskServices) + return h.consul.UpdateWorkload(oldWorkloadServices, newWorkloadServices) } func (h *serviceHook) PreKilling(ctx context.Context, req *interfaces.TaskPreKillRequest, resp *interfaces.TaskPreKillResponse) error { @@ -176,13 +176,13 @@ func (h *serviceHook) Exited(context.Context, *interfaces.TaskExitedRequest, *in // deregister services from Consul. func (h *serviceHook) deregister() { - taskServices := h.getTaskServices() - h.consul.RemoveTask(taskServices) + workloadServices := h.getWorkloadServices() + h.consul.RemoveWorkload(workloadServices) // Canary flag may be getting flipped when the alloc is being // destroyed, so remove both variations of the service - taskServices.Canary = !taskServices.Canary - h.consul.RemoveTask(taskServices) + workloadServices.Canary = !workloadServices.Canary + h.consul.RemoveWorkload(workloadServices) } @@ -193,14 +193,14 @@ func (h *serviceHook) Stop(ctx context.Context, req *interfaces.TaskStopRequest, return nil } -func (h *serviceHook) getTaskServices() *agentconsul.TaskServices { +func (h *serviceHook) getWorkloadServices() *agentconsul.WorkloadServices { // Interpolate with the task's environment - interpolatedServices := interpolateServices(h.taskEnv, h.services) + interpolatedServices := taskenv.InterpolateServices(h.taskEnv, h.services) // Create task services struct with request's driver metadata - return &agentconsul.TaskServices{ + return &agentconsul.WorkloadServices{ AllocID: h.allocID, - Name: h.taskName, + Task: h.taskName, Restarter: h.restarter, Services: interpolatedServices, DriverExec: h.driverExec, @@ -209,62 +209,3 @@ func (h *serviceHook) getTaskServices() *agentconsul.TaskServices { Canary: h.canary, } } - -// interpolateServices returns an interpolated copy of services and checks with -// values from the task's environment. -func interpolateServices(taskEnv *taskenv.TaskEnv, services []*structs.Service) []*structs.Service { - // Guard against not having a valid taskEnv. This can be the case if the - // PreKilling or Exited hook is run before Poststart. - if taskEnv == nil || len(services) == 0 { - return nil - } - - interpolated := make([]*structs.Service, len(services)) - - for i, origService := range services { - // Create a copy as we need to reinterpolate every time the - // environment changes - service := origService.Copy() - - for _, check := range service.Checks { - check.Name = taskEnv.ReplaceEnv(check.Name) - check.Type = taskEnv.ReplaceEnv(check.Type) - check.Command = taskEnv.ReplaceEnv(check.Command) - check.Args = taskEnv.ParseAndReplace(check.Args) - check.Path = taskEnv.ReplaceEnv(check.Path) - check.Protocol = taskEnv.ReplaceEnv(check.Protocol) - check.PortLabel = taskEnv.ReplaceEnv(check.PortLabel) - check.InitialStatus = taskEnv.ReplaceEnv(check.InitialStatus) - check.Method = taskEnv.ReplaceEnv(check.Method) - check.GRPCService = taskEnv.ReplaceEnv(check.GRPCService) - if len(check.Header) > 0 { - header := make(map[string][]string, len(check.Header)) - for k, vs := range check.Header { - newVals := make([]string, len(vs)) - for i, v := range vs { - newVals[i] = taskEnv.ReplaceEnv(v) - } - header[taskEnv.ReplaceEnv(k)] = newVals - } - check.Header = header - } - } - - service.Name = taskEnv.ReplaceEnv(service.Name) - service.PortLabel = taskEnv.ReplaceEnv(service.PortLabel) - service.Tags = taskEnv.ParseAndReplace(service.Tags) - service.CanaryTags = taskEnv.ParseAndReplace(service.CanaryTags) - - if len(service.Meta) > 0 { - meta := make(map[string]string, len(service.Meta)) - for k, v := range service.Meta { - meta[k] = taskEnv.ReplaceEnv(v) - } - service.Meta = meta - } - - interpolated[i] = service - } - - return interpolated -} diff --git a/client/allocrunner/taskrunner/service_hook_test.go b/client/allocrunner/taskrunner/service_hook_test.go index 86772f0f5e0..4c246cb91d4 100644 --- a/client/allocrunner/taskrunner/service_hook_test.go +++ b/client/allocrunner/taskrunner/service_hook_test.go @@ -1,12 +1,7 @@ package taskrunner import ( - "testing" - "github.com/hashicorp/nomad/client/allocrunner/interfaces" - "github.com/hashicorp/nomad/client/taskenv" - "github.com/hashicorp/nomad/nomad/structs" - "github.com/stretchr/testify/require" ) // Statically assert the stats hook implements the expected interfaces @@ -14,80 +9,3 @@ var _ interfaces.TaskPoststartHook = (*serviceHook)(nil) var _ interfaces.TaskExitedHook = (*serviceHook)(nil) var _ interfaces.TaskPreKillHook = (*serviceHook)(nil) var _ interfaces.TaskUpdateHook = (*serviceHook)(nil) - -// TestTaskRunner_ServiceHook_InterpolateServices asserts that all service -// and check fields are properly interpolated. -func TestTaskRunner_ServiceHook_InterpolateServices(t *testing.T) { - t.Parallel() - services := []*structs.Service{ - { - Name: "${name}", - PortLabel: "${portlabel}", - Tags: []string{"${tags}"}, - Checks: []*structs.ServiceCheck{ - { - Name: "${checkname}", - Type: "${checktype}", - Command: "${checkcmd}", - Args: []string{"${checkarg}"}, - Path: "${checkstr}", - Protocol: "${checkproto}", - PortLabel: "${checklabel}", - InitialStatus: "${checkstatus}", - Method: "${checkmethod}", - Header: map[string][]string{ - "${checkheaderk}": {"${checkheaderv}"}, - }, - }, - }, - }, - } - - env := &taskenv.TaskEnv{ - EnvMap: map[string]string{ - "name": "name", - "portlabel": "portlabel", - "tags": "tags", - "checkname": "checkname", - "checktype": "checktype", - "checkcmd": "checkcmd", - "checkarg": "checkarg", - "checkstr": "checkstr", - "checkpath": "checkpath", - "checkproto": "checkproto", - "checklabel": "checklabel", - "checkstatus": "checkstatus", - "checkmethod": "checkmethod", - "checkheaderk": "checkheaderk", - "checkheaderv": "checkheaderv", - }, - } - - interpolated := interpolateServices(env, services) - - exp := []*structs.Service{ - { - Name: "name", - PortLabel: "portlabel", - Tags: []string{"tags"}, - Checks: []*structs.ServiceCheck{ - { - Name: "checkname", - Type: "checktype", - Command: "checkcmd", - Args: []string{"checkarg"}, - Path: "checkstr", - Protocol: "checkproto", - PortLabel: "checklabel", - InitialStatus: "checkstatus", - Method: "checkmethod", - Header: map[string][]string{ - "checkheaderk": {"checkheaderv"}, - }, - }, - }, - }, - } - - require.Equal(t, exp, interpolated) -} diff --git a/client/consul/consul.go b/client/consul/consul.go index df1c455cfe9..251165ff35c 100644 --- a/client/consul/consul.go +++ b/client/consul/consul.go @@ -2,18 +2,14 @@ package consul import ( "github.com/hashicorp/nomad/command/agent/consul" - "github.com/hashicorp/nomad/nomad/structs" ) // ConsulServiceAPI is the interface the Nomad Client uses to register and // remove services and checks from Consul. type ConsulServiceAPI interface { - RegisterGroup(*structs.Allocation) error - RemoveGroup(*structs.Allocation) error - UpdateGroup(oldAlloc, newAlloc *structs.Allocation) error - RegisterTask(*consul.TaskServices) error - RemoveTask(*consul.TaskServices) - UpdateTask(old, newTask *consul.TaskServices) error + RegisterWorkload(*consul.WorkloadServices) error + RemoveWorkload(*consul.WorkloadServices) + UpdateWorkload(old, newTask *consul.WorkloadServices) error AllocRegistrations(allocID string) (*consul.AllocRegistration, error) UpdateTTL(id, output, status string) error } diff --git a/client/consul/consul_testing.go b/client/consul/consul_testing.go index ce276b02a90..6fb92606892 100644 --- a/client/consul/consul_testing.go +++ b/client/consul/consul_testing.go @@ -7,7 +7,6 @@ import ( log "github.com/hashicorp/go-hclog" "github.com/hashicorp/nomad/command/agent/consul" - "github.com/hashicorp/nomad/nomad/structs" testing "github.com/mitchellh/go-testing-interface" ) @@ -54,60 +53,33 @@ func NewMockConsulServiceClient(t testing.T, logger log.Logger) *MockConsulServi return &m } -func (m *MockConsulServiceClient) RegisterGroup(alloc *structs.Allocation) error { +func (m *MockConsulServiceClient) UpdateWorkload(old, newSvcs *consul.WorkloadServices) error { m.mu.Lock() defer m.mu.Unlock() - tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) - m.logger.Trace("RegisterGroup", "alloc_id", alloc.ID, "num_services", len(tg.Services)) - m.ops = append(m.ops, NewMockConsulOp("add_group", alloc.ID, alloc.TaskGroup)) - return nil -} - -func (m *MockConsulServiceClient) UpdateGroup(_, alloc *structs.Allocation) error { - m.mu.Lock() - defer m.mu.Unlock() - tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) - m.logger.Trace("UpdateGroup", "alloc_id", alloc.ID, "num_services", len(tg.Services)) - m.ops = append(m.ops, NewMockConsulOp("update_group", alloc.ID, alloc.TaskGroup)) - return nil -} - -func (m *MockConsulServiceClient) RemoveGroup(alloc *structs.Allocation) error { - m.mu.Lock() - defer m.mu.Unlock() - tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) - m.logger.Trace("RemoveGroup", "alloc_id", alloc.ID, "num_services", len(tg.Services)) - m.ops = append(m.ops, NewMockConsulOp("remove_group", alloc.ID, alloc.TaskGroup)) - return nil -} - -func (m *MockConsulServiceClient) UpdateTask(old, newSvcs *consul.TaskServices) error { - m.mu.Lock() - defer m.mu.Unlock() - m.logger.Trace("UpdateTask", "alloc_id", newSvcs.AllocID, "task", newSvcs.Name, + m.logger.Trace("UpdateWorkload", "alloc_id", newSvcs.AllocID, "name", newSvcs.Name(), "old_services", len(old.Services), "new_services", len(newSvcs.Services), ) - m.ops = append(m.ops, NewMockConsulOp("update", newSvcs.AllocID, newSvcs.Name)) + m.ops = append(m.ops, NewMockConsulOp("update", newSvcs.AllocID, newSvcs.Name())) return nil } -func (m *MockConsulServiceClient) RegisterTask(task *consul.TaskServices) error { +func (m *MockConsulServiceClient) RegisterWorkload(svcs *consul.WorkloadServices) error { m.mu.Lock() defer m.mu.Unlock() - m.logger.Trace("RegisterTask", "alloc_id", task.AllocID, "task", task.Name, - "services", len(task.Services), + m.logger.Trace("RegisterWorkload", "alloc_id", svcs.AllocID, "name", svcs.Name(), + "services", len(svcs.Services), ) - m.ops = append(m.ops, NewMockConsulOp("add", task.AllocID, task.Name)) + m.ops = append(m.ops, NewMockConsulOp("add", svcs.AllocID, svcs.Name())) return nil } -func (m *MockConsulServiceClient) RemoveTask(task *consul.TaskServices) { +func (m *MockConsulServiceClient) RemoveWorkload(svcs *consul.WorkloadServices) { m.mu.Lock() defer m.mu.Unlock() - m.logger.Trace("RemoveTask", "alloc_id", task.AllocID, "task", task.Name, - "services", len(task.Services), + m.logger.Trace("RemoveWorkload", "alloc_id", svcs.AllocID, "name", svcs.Name(), + "services", len(svcs.Services), ) - m.ops = append(m.ops, NewMockConsulOp("remove", task.AllocID, task.Name)) + m.ops = append(m.ops, NewMockConsulOp("remove", svcs.AllocID, svcs.Name())) } func (m *MockConsulServiceClient) AllocRegistrations(allocID string) (*consul.AllocRegistration, error) { diff --git a/client/taskenv/env.go b/client/taskenv/env.go index 35d558250ed..57402b442cf 100644 --- a/client/taskenv/env.go +++ b/client/taskenv/env.go @@ -547,6 +547,9 @@ func (b *Builder) SetDeviceHookEnv(hookName string, envs map[string]string) *Bui // setTask is called from NewBuilder to populate task related environment // variables. func (b *Builder) setTask(task *structs.Task) *Builder { + if task == nil { + return b + } b.taskName = task.Name b.envvars = make(map[string]string, len(task.Env)) for k, v := range task.Env { diff --git a/client/taskenv/env_test.go b/client/taskenv/env_test.go index 4a15923bd36..f68bb05d795 100644 --- a/client/taskenv/env_test.go +++ b/client/taskenv/env_test.go @@ -832,3 +832,18 @@ func TestEnvironment_SetPortMapEnvs(t *testing.T) { } require.Equal(t, expected, envs) } + +func TestEnvironment_TasklessBuilder(t *testing.T) { + node := mock.Node() + alloc := mock.Alloc() + alloc.Job.Meta["jobt"] = "foo" + alloc.Job.TaskGroups[0].Meta["groupt"] = "bar" + require := require.New(t) + var taskEnv *TaskEnv + require.NotPanics(func() { + taskEnv = NewBuilder(node, alloc, nil, "global").SetAllocDir("/tmp/alloc").Build() + }) + + require.Equal("foo", taskEnv.ReplaceEnv("${NOMAD_META_jobt}")) + require.Equal("bar", taskEnv.ReplaceEnv("${NOMAD_META_groupt}")) +} diff --git a/client/taskenv/services.go b/client/taskenv/services.go new file mode 100644 index 00000000000..74bf673b18d --- /dev/null +++ b/client/taskenv/services.go @@ -0,0 +1,64 @@ +package taskenv + +import ( + "github.com/hashicorp/nomad/nomad/structs" +) + +// InterpolateServices returns an interpolated copy of services and checks with +// values from the task's environment. +func InterpolateServices(taskEnv *TaskEnv, services []*structs.Service) []*structs.Service { + // Guard against not having a valid taskEnv. This can be the case if the + // PreKilling or Exited hook is run before Poststart. + if taskEnv == nil || len(services) == 0 { + return nil + } + + interpolated := make([]*structs.Service, len(services)) + + for i, origService := range services { + // Create a copy as we need to reinterpolate every time the + // environment changes + service := origService.Copy() + + for _, check := range service.Checks { + check.Name = taskEnv.ReplaceEnv(check.Name) + check.Type = taskEnv.ReplaceEnv(check.Type) + check.Command = taskEnv.ReplaceEnv(check.Command) + check.Args = taskEnv.ParseAndReplace(check.Args) + check.Path = taskEnv.ReplaceEnv(check.Path) + check.Protocol = taskEnv.ReplaceEnv(check.Protocol) + check.PortLabel = taskEnv.ReplaceEnv(check.PortLabel) + check.InitialStatus = taskEnv.ReplaceEnv(check.InitialStatus) + check.Method = taskEnv.ReplaceEnv(check.Method) + check.GRPCService = taskEnv.ReplaceEnv(check.GRPCService) + if len(check.Header) > 0 { + header := make(map[string][]string, len(check.Header)) + for k, vs := range check.Header { + newVals := make([]string, len(vs)) + for i, v := range vs { + newVals[i] = taskEnv.ReplaceEnv(v) + } + header[taskEnv.ReplaceEnv(k)] = newVals + } + check.Header = header + } + } + + service.Name = taskEnv.ReplaceEnv(service.Name) + service.PortLabel = taskEnv.ReplaceEnv(service.PortLabel) + service.Tags = taskEnv.ParseAndReplace(service.Tags) + service.CanaryTags = taskEnv.ParseAndReplace(service.CanaryTags) + + if len(service.Meta) > 0 { + meta := make(map[string]string, len(service.Meta)) + for k, v := range service.Meta { + meta[k] = taskEnv.ReplaceEnv(v) + } + service.Meta = meta + } + + interpolated[i] = service + } + + return interpolated +} diff --git a/client/taskenv/services_test.go b/client/taskenv/services_test.go new file mode 100644 index 00000000000..88577d6de37 --- /dev/null +++ b/client/taskenv/services_test.go @@ -0,0 +1,85 @@ +package taskenv + +import ( + "testing" + + "github.com/hashicorp/nomad/nomad/structs" + "github.com/stretchr/testify/require" +) + +// TestInterpolateServices asserts that all service +// and check fields are properly interpolated. +func TestInterpolateServices(t *testing.T) { + t.Parallel() + services := []*structs.Service{ + { + Name: "${name}", + PortLabel: "${portlabel}", + Tags: []string{"${tags}"}, + Checks: []*structs.ServiceCheck{ + { + Name: "${checkname}", + Type: "${checktype}", + Command: "${checkcmd}", + Args: []string{"${checkarg}"}, + Path: "${checkstr}", + Protocol: "${checkproto}", + PortLabel: "${checklabel}", + InitialStatus: "${checkstatus}", + Method: "${checkmethod}", + Header: map[string][]string{ + "${checkheaderk}": {"${checkheaderv}"}, + }, + }, + }, + }, + } + + env := &TaskEnv{ + EnvMap: map[string]string{ + "name": "name", + "portlabel": "portlabel", + "tags": "tags", + "checkname": "checkname", + "checktype": "checktype", + "checkcmd": "checkcmd", + "checkarg": "checkarg", + "checkstr": "checkstr", + "checkpath": "checkpath", + "checkproto": "checkproto", + "checklabel": "checklabel", + "checkstatus": "checkstatus", + "checkmethod": "checkmethod", + "checkheaderk": "checkheaderk", + "checkheaderv": "checkheaderv", + }, + } + + interpolated := InterpolateServices(env, services) + + exp := []*structs.Service{ + { + Name: "name", + PortLabel: "portlabel", + Tags: []string{"tags"}, + Checks: []*structs.ServiceCheck{ + { + Name: "checkname", + Type: "checktype", + Command: "checkcmd", + Args: []string{"checkarg"}, + Path: "checkstr", + Protocol: "checkproto", + PortLabel: "checklabel", + InitialStatus: "checkstatus", + Method: "checkmethod", + Header: map[string][]string{ + "checkheaderk": {"checkheaderv"}, + }, + }, + }, + }, + } + + require.Equal(t, exp, interpolated) +} diff --git a/command/agent/bindata_assetfs.go b/command/agent/bindata_assetfs.go index 0816c1d5c04..2a83585b546 100644 --- a/command/agent/bindata_assetfs.go +++ b/command/agent/bindata_assetfs.go @@ -2,8 +2,8 @@ // sources: // ui/dist/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js // ui/dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css -// ui/dist/assets/nomad-ui-d6840652e28d16a3bb9c1052422e1bc6.js -// ui/dist/assets/vendor-4b52c9afd07b1f7fae097395f2dbaf27.js +// ui/dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js +// ui/dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js // ui/dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css // ui/dist/crossdomain.xml // ui/dist/ember-fetch/fetch-fastboot-5e5d008c8b65b0ac116f7635d0c6c6b9.js @@ -128,42 +128,42 @@ func distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css() (*asset, error) { return a, nil } -var _distAssetsNomadUiD6840652e28d16a3bb9c1052422e1bc6Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x77\xe3\xb8\xb1\x20\xfe\xbf\x3f\x85\x8c\xdd\xf8\x47\xa6\x21\x9a\x92\x2d\x3f\x38\xd1\xf4\xf6\xb4\xbb\x33\x3d\xb7\x5f\x6b\x7b\x92\xbd\xc7\xd1\xe6\x40\x24\x24\x61\x4c\x01\x0a\x00\xd9\xd6\xd8\xda\xcf\xfe\x3b\x78\x90\x04\x1f\x92\x25\xf7\x73\x72\xef\xe4\xa4\x2d\x92\x40\xa1\x50\x28\x14\xaa\x0a\x85\x02\x98\x0b\xdc\x12\x92\x93\x58\x82\x9d\x04\x8f\x08\xc5\x1e\xa0\x6c\x8a\x92\xf6\x9c\xec\xa3\x04\xcd\x24\xe6\x62\x1f\x8d\x31\x95\x00\x5e\x01\x7c\x37\x63\x5c\x0a\x00\x9b\x0a\xcd\x66\x29\x89\x91\x24\x8c\x82\x01\x1c\xcd\x69\xac\x7e\x7a\x18\x4a\xff\x3e\x7b\x6a\x51\x0f\xfb\xf7\x1c\xcb\x39\xa7\xad\xa2\x88\x7f\x4f\x46\xde\x0b\xce\xd1\x22\x20\x42\xff\xf5\xb0\xef\xdf\x8f\x18\xf7\x6e\x10\x6f\xc9\x7e\x08\x69\x9f\xe2\xdb\x96\xfd\x16\xa4\x98\x8e\xe5\xc4\xff\x41\xfe\x25\xfb\xfd\x83\x7c\xf6\xcc\xa7\x57\x72\xd0\xc7\x57\x72\xb0\x63\x9b\xa0\xcb\xa5\x87\xfd\x87\x87\x4a\x53\x17\x8b\xe9\x90\xa5\x01\x91\x98\x23\xc9\x78\x8b\xd0\xd6\x87\xe1\x6f\x38\x96\xba\x30\xb8\x62\xfa\xa1\xf5\x82\x8f\xe7\x53\x4c\xa5\x18\x80\x7e\xbf\x6f\x4a\x04\x33\xce\x24\x93\x8b\x19\x0e\x24\xbb\x90\x9c\xd0\x71\x10\xa3\x34\x55\x08\xdb\x46\x4d\x47\x46\x9c\x4d\x3d\xec\x57\xda\xf7\xef\xe5\x84\xb3\xdb\x96\xea\xcc\xe5\x62\x86\x5f\x71\xce\xb8\x07\xde\xd0\x1b\x94\x92\xa4\x85\xa4\xc4\xd3\x99\x6c\x49\xd6\x12\x33\x8e\x51\xd2\xa2\x8c\xb6\x35\x9e\xc3\x14\xb7\x08\x15\x12\xd1\x18\x03\x7f\xe9\xf9\x4b\x8b\x90\x19\xb6\x8f\x9c\xcd\x30\x97\x0b\x0f\x43\xf0\xcf\x7f\x62\xf1\x8e\x25\xf3\x14\x03\x78\x7f\x83\xd2\x39\x8e\x76\xc3\xa5\x0f\xb1\x2a\x8b\xe6\xa9\xec\xdf\x30\x92\xb4\xc2\x1d\x45\x5c\xd4\x97\xd9\xeb\x00\xdf\x49\x4c\x13\xef\x7e\x86\xe4\xe4\x35\xe3\x0a\xc1\xc8\x41\xdd\xf4\x0f\x68\x6e\xd8\x9f\xe2\xe9\x10\x73\x01\x96\x70\xce\xd3\xd7\x8c\xbf\x26\x34\x39\xc7\x31\xe3\x89\x5b\x45\xb5\x80\xfb\x86\x22\x05\xe5\x44\x4a\x62\x6c\xc8\x86\x32\x1a\xfb\xe6\xad\xd7\xf1\xb3\xc1\x93\x13\x22\x82\x02\xf8\x8b\x34\x0d\x14\x8f\x2d\x3c\xf5\x01\xaa\xb1\xf4\x97\x4b\x7f\xa7\xe8\x15\x5a\xfa\x70\x0d\x13\xa7\x29\xb3\xec\xf9\x08\x27\xdf\x22\x19\x4f\x14\xc1\xdd\xaf\x73\x49\x52\xb1\x8f\x92\xa4\x2d\x59\x5b\x11\xa8\xc2\xe4\x90\xfa\xf7\x5f\x6e\x44\x84\x64\xb3\xc8\xe5\x62\x33\x2f\x72\xea\xd9\x59\xf0\x63\x67\x6f\xcf\x40\xda\xed\x17\x1f\xaf\x3a\x83\xe7\xee\x43\x04\x3e\x7e\xb8\xb8\x04\x3b\xd5\x79\x88\x0c\x58\xd1\xf7\x42\x48\x33\x14\x7c\xaf\x32\x0e\x66\x90\x3d\x14\x90\x04\x02\x87\xa8\x3e\xc4\xe5\xa1\x43\xbf\xa1\x3b\x4f\x40\xe9\x2f\x97\x1e\xd8\x57\x3d\x00\x3e\xe4\x58\x48\xc4\x65\x54\x96\x0f\xaa\x59\xda\x07\x20\x88\x19\x8d\x91\x34\x4d\x4e\x98\x90\x0f\x0f\x60\x1f\xf8\xa5\xd7\x73\x9e\x7e\xe4\x78\x44\xee\x3c\xdf\x87\xc8\xa9\x44\x21\xd8\x8f\x53\xa2\x98\xb3\x40\xcb\xa9\x8d\x35\xc6\xfb\x16\x03\xd0\x80\x2c\x82\xe0\xe3\xaf\x97\x00\xde\x27\x48\xa2\x48\xee\xed\xdd\x5f\x22\x71\xfd\x1e\x4d\x71\x24\x97\xcb\xed\xb8\xcd\x91\x86\x25\x76\xd3\xd3\xa6\xad\x1a\x28\x0a\x2b\x94\xea\xbc\x16\xb3\x04\x8b\xf6\x88\xf1\x36\x56\x52\xa2\x5e\x80\xe3\x29\xbb\xc1\x6d\xae\x07\xa4\xfe\x99\xb2\x76\x8a\x51\x82\xb3\xfa\x55\x7e\x85\x08\x8a\x4f\xe2\x59\x1c\x50\x34\xc5\x62\x86\x62\x9c\xf1\xaf\xfb\x0a\xdc\x74\x80\x66\x68\xd6\xc0\xd0\x79\xb1\x48\x15\x83\x62\x21\x24\x9e\x46\xaf\x14\x71\x02\x42\x35\x4a\x02\xf3\x1b\x25\x11\x7c\x28\xd9\x35\xa6\xab\x3e\x4e\x74\x1f\x85\xfd\x1c\xb3\xe9\x6c\x2e\x71\xe2\x01\x5d\x29\x10\x38\xe6\x58\x02\x58\x93\x49\x7a\xd4\xc7\x58\x56\x0a\xfa\x3b\x64\xe4\x61\x2b\xca\xef\xc1\xff\x69\xbf\xd7\x44\xbd\x54\x65\x40\x84\x97\x4b\x1f\x4e\x10\x4d\x52\x7c\x8e\xc5\x8c\x51\x81\xa3\xaa\x10\xb0\x5c\xd5\x0b\xc3\x7e\xbf\x8f\xf7\xf6\x68\xbf\xdf\x17\xc1\xfb\x0f\xff\x7c\xfb\xea\xc5\xd9\xab\xf3\xe7\x4a\xf4\x8b\x8c\x1e\x91\x46\xe3\x9f\x62\x3e\xc3\xdc\x95\x6e\x85\x58\x5c\xc2\x91\x11\x7e\x75\x49\xdc\x7a\xb4\x72\x10\x2b\x51\xe6\x55\x96\xbf\xf2\xf4\xc6\x7e\x40\x68\x9c\xce\x13\x2c\x3c\xd0\x0b\x3b\x20\x5b\xc8\xae\x06\x3b\x66\xb1\xc2\x4b\x7f\x09\xd5\x04\xf9\x30\x53\x50\x44\xe3\xe4\xad\x89\xa2\x6e\xa3\x28\xea\xba\xa2\xa8\x3b\x88\xee\x97\x8a\xe0\x34\x50\x13\xe2\xe1\xc1\xfe\xe8\xdf\x2f\x7d\x58\x0c\x90\x61\x8e\x40\x4c\xd8\x3c\x4d\xde\x18\x5c\xcf\xf1\x58\x0b\x1d\xd3\x3c\xea\xd7\x4a\xa3\x58\x92\x9b\xbc\xd8\x0e\xda\xdb\xb3\xc0\x03\xae\xdf\xf5\x91\xbf\xac\x93\xd1\x0e\xa2\x21\xfa\xcf\x48\xbc\x43\x74\x51\x19\x61\x35\x69\x36\xa6\xbf\x9c\x60\x5a\x90\x9f\x1a\x6c\x59\x5f\x04\x6a\x1d\x84\x69\x5f\x06\x66\xf6\x06\x84\xde\x60\x2e\xf0\x6b\xc6\x3d\x11\x5c\xe3\x45\x2e\x9d\xd2\xbd\x3d\x1c\xcc\x30\xbe\x7e\x91\xa6\x1e\xf3\x83\x11\x49\x25\xe6\xa5\x21\xb5\x25\xb1\xe9\x7f\x2e\x0f\x53\x3d\x17\x21\x08\x48\x02\x7c\xbf\xdf\xef\xcb\x80\x24\x4b\x3f\x18\x31\xfe\x0a\xb9\x5c\x21\xfd\x7b\x2f\x84\xc8\x61\x09\x25\xb4\x7d\x48\xd5\xb8\xd7\x56\xf7\xd4\xbe\xfa\x75\x96\x20\x89\xb3\x97\x4b\x7f\x27\x57\xf2\x52\x87\x2f\x20\xea\x5f\x0d\xa0\xe8\x9b\xd9\xa9\x10\xd4\x24\x02\x4a\xb8\x03\x1f\xb2\x7e\x55\xa6\xe7\x52\x59\x0d\x58\x5f\x06\x31\x9a\xe2\x94\xfc\x8e\x3d\xdf\xdf\xdb\x43\xc1\x6c\x2e\x26\x1e\xf5\x21\xce\x1f\x30\x55\x82\xf2\xd7\xf3\x37\x2f\xd9\x74\xc6\x28\xa6\x4a\x8b\xf3\x21\x53\x05\xe6\x54\x4c\xc8\x48\x7a\x4c\xad\x14\x28\xf8\x8d\x11\xea\xa9\x05\x05\xee\x8a\xbd\x3d\xb4\xb7\x07\xf6\x81\xe2\xce\x20\x9e\x20\xfe\x42\x7a\xa1\xbf\xb7\xe7\xa1\x3e\xd8\x07\xcf\x90\x0f\xd1\xb2\x10\x75\x6c\xad\xb0\x4f\xf0\x2c\x65\x8b\xe9\x06\x4a\x72\xa1\x5a\xac\x53\x91\xd5\xf3\x86\x4a\x72\x36\xf6\x55\x3d\xb7\x98\x98\x57\x03\x88\xfa\xbb\x21\x14\xfd\xdd\x0e\x64\x99\xa0\x96\x7c\x91\xeb\xd7\x29\xe4\x7d\x7c\x55\x51\x8a\x07\x9e\xff\xc3\xae\x87\xfa\x5e\xda\xe7\x01\xc5\x77\xd2\xf3\xfd\x20\x61\x14\xfb\x7a\x26\x69\xd2\xa7\x81\x5e\x17\x7c\xb8\x2b\x1f\x1e\xa8\x9d\xf8\xbb\xfd\xbe\xf4\x7f\x50\x4d\xfa\x3f\x2c\x8d\xfc\x21\xfe\xbd\x50\x28\xb0\x3e\x59\x8e\x08\x45\x69\xba\xb8\x57\x08\xa0\x87\x07\x3a\x4f\xd3\x7e\x9f\x07\xa6\x1f\x0f\x0f\xd9\x2f\xcf\xcf\x4b\x92\x91\x27\x7c\x23\x89\xd8\x72\x99\x6b\xf6\xba\x8f\x4f\x52\xad\x13\x2c\x24\x9f\xc7\x72\xce\xf1\x37\xd2\xaf\x39\x9b\x32\x89\x1b\x14\x3a\x3b\x87\xd5\x8c\x85\xa8\xff\xf9\x14\x3e\x00\x51\x9f\x7a\x38\x10\xb3\x94\x48\x0f\x3c\x07\x3e\xec\xfa\x50\xf4\xd1\x55\x38\x80\xac\x8f\xae\x3a\x03\x98\xf6\x45\xf6\x5d\x4d\x11\xde\x4f\x83\x19\x9b\x79\x3e\x24\x7d\x57\xa8\xe4\x93\xa8\x50\xcb\xa0\xab\xa4\x71\x7f\x87\xed\xed\x79\xe4\x59\x1f\x3c\xcf\xab\x31\x3f\x9f\xd8\x64\xb9\x42\xa3\x94\x10\x38\x13\xc9\x87\x60\xdf\xd2\x69\x95\xaa\xa6\x94\x58\xab\xab\xdd\x9f\xe5\x35\xdf\x24\x91\x84\x6a\xbd\xdc\x0d\xb7\xd4\xd9\x7e\x63\xc3\xb6\x98\x4f\xa7\x88\x2f\xfe\x7b\x1e\xff\xf7\x3c\x7e\x7c\x1e\xaf\xb6\x7c\x95\xa6\x90\x9b\x53\xd4\xfb\xe5\xe2\xc3\xfb\x60\x86\xb8\xc0\x1e\xd6\x33\x8f\xf5\x85\x9a\x79\x69\x5f\x4d\x4f\xc8\xfb\xae\x0a\xc2\x20\xf8\x8d\x0d\x01\x44\xfe\x33\xb0\x9f\xf1\xa3\xa3\x0e\x00\x8b\x86\x5a\xba\xd2\xbd\x3d\x8f\xab\x99\xe6\xa8\xdd\xf9\x54\xf5\x7d\xc8\xb7\xe4\xff\x2f\x66\x1a\xe7\xd3\x02\xfd\xf7\xb4\xf8\x77\x9a\x16\xa2\xc9\x59\xb1\xd6\x98\x6b\x30\x67\xaa\x16\x59\x49\x85\x7f\x9f\x71\x76\x65\x19\xd8\x42\xef\x2e\xf8\x4d\x36\x6a\xbf\x32\xc8\x1b\xe9\xe3\xe7\xce\x1a\x1c\xe5\x73\x4d\x19\x24\x4b\x6b\x17\x34\x4d\x76\x6d\x16\x18\xe5\x1e\xb9\xd3\x9d\xaa\xe9\x6e\x56\x57\x56\x9e\xba\xec\xb9\x63\x04\xb3\xa5\xb2\x84\x56\xd9\x23\x50\xc0\xb4\xa4\x8a\x37\x9b\x83\xcc\x7b\x94\x30\x75\xab\xaa\x42\x64\x63\x2c\xac\x73\xea\xd9\x09\x6d\x06\x1f\xd5\x45\x5b\x6a\x44\x1b\xd7\xa2\x6d\xa7\x09\x35\x2f\xd5\x20\x20\xcf\xdb\x29\xd9\x12\x5f\xa8\xa5\xbb\x09\xff\x0f\xbc\xf8\xcc\xb6\xeb\x16\x94\x37\xd6\xe7\xde\x9e\xb5\x42\xf3\xb1\xf7\x97\x90\xe3\x54\x7b\x8a\xc4\x84\xcc\x5e\xa3\x34\x1d\xa2\xf8\xfa\x2d\xa1\xd7\x22\xba\xb7\xf2\x3f\x2a\x56\x82\x25\x1c\x61\x19\x4f\xce\xd1\xed\x99\x9a\xba\x44\x55\x6c\xd0\x24\x9b\x75\x2c\x57\xbf\xd4\xab\x4c\x83\x6a\x25\x21\xf8\xeb\xab\x4b\xa0\x98\x9d\xf1\x18\x7f\xc4\x9c\xb0\x84\xc4\x51\x45\x56\x5b\x50\x33\xfb\x39\x33\xc5\xe5\x46\xde\xc3\x3a\x1e\x4a\xdd\xb3\xa0\xf6\x75\xbb\x2b\x50\xd3\x5a\x9f\xbf\x5c\xc2\x15\x2e\xd1\x4f\xea\xf7\xd9\xab\xb7\xaf\x2e\x5f\xa9\xae\x6b\x3e\x6b\x00\xbf\xb6\x73\xca\x44\x2f\x7a\xa3\x20\xac\xeb\x44\xa6\xba\xfe\xc2\x86\x3f\xbf\x7c\x1b\x61\xf8\x12\x51\x46\x49\x8c\x94\xb9\x6b\xb5\x57\x38\x4b\x51\xd3\xe8\x96\xed\x04\x0d\x5b\x48\xc6\x31\xdc\xcc\x79\x2b\x1d\xa2\xa7\x88\x36\x61\x29\xea\x58\x46\xb6\xd5\x7f\x52\xec\xf0\x9e\x9a\x96\xc0\x87\x67\x64\x34\x32\x48\x57\x84\xaf\xeb\xa0\x78\x73\xd6\x97\xd0\xd8\xed\x1f\xd1\x22\x65\x28\xd1\xf4\x6a\x6b\x24\xe0\xfd\x6f\x6c\xf8\x31\x45\x54\x44\x57\x78\xb0\xf4\x55\x41\x8c\xaf\x2d\xca\x4e\x39\xe9\x2b\xca\xf0\x79\x99\x30\x75\x3a\x17\x5d\x7f\xc9\x71\x2e\x5f\xf2\x11\xda\xa6\x7b\x7a\x2c\xe6\x5a\x4a\x6d\xdc\xa8\x2b\xd4\x1a\x19\x7e\x5b\x04\x5c\x1f\x0b\x2b\xa9\x51\xb2\xbc\xb4\xc8\xbd\x3d\x0f\xaf\xd0\x0a\xa5\xef\x43\xec\x78\x36\xc4\x5a\x95\x30\x07\xb0\xcd\xee\xdf\xa3\x9e\xec\xaf\xb9\x73\xb2\x6a\xc1\x46\x5f\xc9\x8b\x7a\xaf\xb7\x0f\xd0\x96\xa6\x28\x65\xc9\xa3\x24\x5f\x6d\x83\x7e\x1e\x6a\xd2\x3a\x35\xdd\x0e\xd0\xb5\x1d\x98\xb1\x94\xc4\x8f\x9a\xd1\xeb\xf6\x8c\xbf\x58\x27\x1c\xb5\x4b\x16\xcb\xf0\x33\xb0\x8f\xe2\x14\x2c\x37\xef\xa2\x44\xe2\xba\x2d\x24\x92\x5b\x4d\x8e\xf5\xfe\x02\xb3\x2b\x03\x19\x4c\x7d\x6d\x42\xa8\x2e\x28\xeb\x85\x0d\xbc\xd4\x87\xa4\xcf\x8d\x49\x62\x0d\x8f\x79\xce\xc3\xba\xc7\xd4\x9b\xfb\x4b\xae\xad\x98\xe7\xd2\x23\x7e\xf4\x91\xb3\x29\x11\x38\xe0\x58\xb0\xf4\x06\x7b\xc4\xca\x66\x04\xc5\x97\x34\x8b\xd7\x6e\xd7\xa4\xd5\xed\x03\x77\x16\x9a\xad\x18\x34\x97\x13\xc6\xc9\xef\x38\x39\xc7\xff\x9a\x63\x21\x3d\xb0\x7f\xd3\xc9\xf6\xf6\x46\x62\x3f\x15\xfb\xa0\xd8\xd5\x2b\x36\xfb\xf4\x06\xdf\x73\x65\x81\xf6\x9d\x6d\xbf\xba\x7f\x58\xfa\xbe\xa5\x84\xf0\x95\x22\x81\xaa\xfb\x91\x4f\xc0\x49\x41\xf9\x8c\x58\xb9\xb2\x5e\x38\x2b\x0d\x5b\xb1\x4b\xe4\x2c\x0c\xd6\x9e\xca\x96\x74\xdc\xe7\x78\x8c\xa9\x31\x7b\xcf\xe7\x54\x92\x29\x0e\xa6\x88\x5f\xe7\x02\xad\x85\xbd\xc2\x5d\x0f\x45\x56\xb1\xa1\xda\x2d\x47\xb3\x92\x1c\x54\x36\xf6\x0f\x3f\xf8\xe2\x96\x28\x7e\xc4\xc1\x8c\xe3\x9b\x3e\xd6\x06\xb5\x7f\x1f\x23\x81\x5b\x61\x44\x46\xde\xae\x0c\xd8\xb5\x7f\x6f\x3e\xf4\x0f\x77\x86\x1c\xa3\xeb\x65\xae\x16\xa0\x21\x9f\xcf\xa4\x07\x6c\x80\x01\x94\xc1\x6f\x42\x19\x36\xfe\x8e\x06\x71\x18\xe5\x25\x75\xfd\x23\x28\x03\xa9\x4d\x76\xf3\xfd\x28\xb2\xa6\x71\x1f\x07\x02\x53\x09\x51\xdf\xec\xbe\xc9\x40\x8d\xca\x5c\x40\xd1\xa7\x8e\x78\xa6\xac\x25\xe6\xf1\xa4\x35\x22\x29\x6e\x31\xde\x4a\x08\xc7\xb1\x64\x7c\x01\x7c\x78\xaf\x86\x25\x42\x7b\x7b\xe2\xf9\x61\x78\x18\xe5\x10\xb2\x60\x8f\x06\xb3\x8b\x2e\x97\x06\x8f\x4e\x27\x52\x7f\x01\xa6\x09\x28\x50\x56\x7a\xaa\xa7\x14\x56\xec\x2f\x7d\xe8\xb1\x7e\xc5\xf0\x35\x2a\x2b\x44\x85\xa1\x91\x47\xaf\xe0\xdb\x96\x9d\xc2\x05\xd1\x05\x64\xa6\x5e\xda\xc7\x19\x2f\x40\xe4\x70\x0b\x57\xe3\x42\xbd\x54\x8b\x11\x0e\x09\x04\x8a\x68\x40\x35\x9f\x97\x21\xb5\x32\x9a\x82\xba\x10\xf7\xcc\xf4\x56\x4a\x96\xbf\x82\xdb\x36\x5d\xc6\xf4\xdc\xf9\x3e\x17\x01\xad\x2e\xaf\x12\x52\xeb\x56\x08\xed\x02\xb8\xc0\xe9\xa8\xd9\x83\x51\xd7\xa4\x2b\x61\x0d\xc3\x39\x49\x93\x5f\xcf\xdf\x7a\x4a\xfb\xd6\x04\xda\x17\x38\x1d\x29\x85\x50\x9b\x5d\x75\xdf\x85\xe9\x02\x36\x1a\x7e\xce\x1c\x65\x2d\xda\x52\xda\xc8\x5e\x11\x5d\x49\xa5\x40\xd3\x92\x02\x6d\x8b\xd0\x80\x32\x3e\xd5\x46\x46\xfe\x4e\xfa\xc6\x28\x25\x89\x5f\xd5\x53\xd6\xaf\x81\x8e\x3f\xd0\x1d\xe4\x7f\xcd\x31\x5f\xb4\x85\x9e\x31\x1b\xa8\x8b\x4d\x31\x11\x5a\x53\x14\x0d\x41\x0b\xce\x92\x29\xfe\xdb\x97\xf8\xef\xe4\x4b\x64\x7d\x5a\x9b\xa6\x9a\xc1\xde\x12\x21\x57\x4d\xd5\xb5\xf3\x78\x55\xd0\x42\xe6\x56\x42\xfd\xc7\xfd\x36\xa2\xef\xd1\x87\x87\x7b\x25\x0b\x87\x8c\x4b\x1d\x09\xb2\xa3\x09\x7d\x9f\xe0\x14\x4b\xdc\xa2\xee\x17\xeb\x03\x0c\x86\x78\xc4\x38\xbe\xc0\x34\xd9\x71\x1f\x4a\x7b\x7a\x22\x88\xd1\x4c\xd1\xd6\xc3\x7a\xc3\x3a\x5b\xdc\x0d\x4d\x5c\x81\x9b\x8d\x25\x6a\x08\x07\xc9\xe7\x85\x75\x94\x55\x9d\x59\x87\x8d\xce\xac\x43\xd7\x99\x75\x38\x88\xee\x97\x90\xd9\x5d\x7a\x24\x04\x19\x53\x47\x5a\xfd\x6f\x35\x9d\x15\xad\x7d\x98\x56\x1d\x2c\x2f\xd2\xd4\x93\xc1\x94\x25\x38\x55\x96\x8e\xbf\x53\xec\xf4\x23\x45\x36\x08\xec\x94\xb6\xe3\x10\xe8\x11\x05\x6a\x6a\xb0\x80\xd0\x04\xdf\x19\x88\xf9\x40\xab\xaa\x6f\xd4\xfb\xd7\x8c\x7b\xa9\xef\xef\x18\x1d\xf8\x31\xb0\xc5\x10\x34\x79\x33\x52\x23\x5c\xe1\x7d\x51\x2c\xe2\x50\x5b\xde\x6c\xb5\x5b\x97\x1a\x45\xdc\x20\xf0\x74\xba\x92\xbe\xa8\x88\x7e\x5a\x10\x4c\x35\x01\x41\xd1\x3e\xf0\x2b\x9b\xb4\xf3\x3e\xb9\x0a\x07\x30\xe9\x93\xab\xce\x60\x27\xa9\x8c\x51\x3e\x61\x8c\x63\x34\xf1\x35\x71\xea\x43\xc7\x7d\x58\x50\x30\x7d\x64\x60\x92\xc7\x07\x66\x6e\x07\x26\xee\x3f\x06\x76\xfd\xc0\xcc\x1b\x06\x26\x36\x03\x93\x2c\x57\x58\xde\xbb\x5e\x21\x7f\xd8\xa8\x85\x82\x17\xaa\xae\x16\x62\xbe\xef\x84\x2c\x71\xac\xd6\xc6\x73\xc7\xb9\x5a\x1a\xdc\x6c\xc2\xe8\x09\xcf\x9e\xec\x04\xd6\xf4\x89\x76\x3b\xd0\xe9\x81\x12\xd5\x4b\x98\xf6\x99\xa1\x1e\xe4\x7d\xe6\xd0\x01\x92\xbe\xb2\xc9\x1c\x9f\x2f\xe3\x1e\xd5\x91\x67\x60\x88\x53\x46\xc7\xe2\x92\x81\xdd\x7e\x9f\x04\xd7\x84\x26\x7b\x7b\x60\x62\x22\x91\x8a\x77\x7e\x21\xc0\xad\xf0\xce\x95\x0c\x12\x5c\xe3\x05\x04\xad\xe9\x5c\xc8\xd6\x10\xb7\x50\x2b\x87\xa9\x94\x5d\x0b\x0a\x6a\x0a\x62\x94\xb4\x88\x6c\xdd\x22\xd1\x2a\x4c\x13\xdb\x82\x19\xdf\x79\x1f\x5f\x99\x17\x03\x03\xd9\x0f\x52\x42\xaf\x3d\x1f\x26\x7d\x13\xbb\x95\x6e\xcc\x30\x70\xee\x28\xe1\xcf\x33\x87\x71\xdc\xaf\x32\xf1\xdc\x99\x01\x57\x9d\x81\xbf\x63\x97\x97\x6b\xbc\x10\x5e\xdc\x10\xc0\x84\x73\x51\x9c\x68\xcf\xe1\x72\x23\x36\xe3\x05\x9b\xd5\x3c\x96\x46\x31\xcf\x9c\xaa\xb4\xef\x8c\x4b\x3f\x1b\x83\xe7\x20\x57\xa4\x94\x20\xfc\x29\x2b\x91\x45\x06\x82\xa8\x5c\xc0\x86\x93\xe5\x9f\xa1\xb2\x9d\x05\xe6\x44\x97\xe0\x8a\x48\x44\xc7\x85\xe9\xb0\x28\x23\x21\xdc\x97\x69\x1f\x5d\xd1\x81\x27\x21\x83\xd8\xdf\x91\x56\xaf\x50\xc2\xab\xe2\x98\x5f\x39\x39\xac\x7d\xd5\xd4\x97\xfb\x65\x54\x8e\xf7\x5b\x1b\xe5\x58\xac\x36\xf2\x0a\xdc\xb5\x8d\x7e\xa7\x59\x00\x0c\x1e\x1e\xe4\x55\x1e\x37\xf9\xc6\xbc\xcb\xe6\xbd\xd8\xdb\xab\xb0\x88\x70\x58\x04\xa9\x65\x05\x66\x9b\x54\x6b\x83\x22\x4b\x2a\x6a\x73\x70\xd6\x6c\xb6\xc2\xf0\xb0\xde\x10\x9e\x2b\x9e\x4a\x4a\xb4\xb5\xb7\xd5\x8c\x44\xa9\x74\xcc\xe8\x88\x8c\xf7\x31\xbd\x21\x9c\x51\x1d\x9a\xd2\xa4\x93\x6a\x6a\xec\x7c\xb2\x1e\x94\x47\xca\xbd\x28\x14\xe4\x5c\x17\x9a\x6a\x00\x26\x50\x2e\xca\xc3\xf5\x02\xf7\x35\x9c\xb1\xe4\x5d\x73\xb1\xca\x17\x78\x6e\xc9\x10\xe5\xd3\x4f\x99\xa7\x25\xa7\xa6\x80\xcd\xad\xf8\x56\xcb\x11\x8f\x0d\x82\xb6\xf3\x67\x8c\x50\x35\x02\xc5\x60\x0c\x4a\x2c\xfb\xe9\xca\x63\xf1\xe2\x7e\xca\x86\x24\xc5\x11\xf0\xa6\xe8\xae\x7d\x4b\x12\x39\x89\x5a\xc7\x47\x27\xb3\x3b\x1f\x40\xa9\x34\x57\xa9\xbe\x11\x5a\x7c\x3b\xd5\xdf\x12\x2c\xae\x25\x9b\x95\x3f\x76\xc2\x13\x53\x73\x3c\x97\x12\xf3\x14\x0b\x51\x86\x7c\x7a\x14\xaa\xef\xcb\xa6\xbe\xc7\x99\x63\x47\x87\x46\x30\xda\x8e\xd9\x6c\xd1\x1e\xce\xa5\x6c\x0e\x09\x8f\x53\xa2\xfe\x3f\x1b\x32\xc4\x13\xb7\xb6\x5b\xef\x93\xed\xe3\x95\x15\xb2\xed\x03\x78\x8f\xe9\x7c\x6a\xb4\xfc\x68\x37\x84\x63\x2c\x9b\x22\x8f\x73\x9e\x59\xfa\x8f\x75\x3e\x77\x84\xb5\xb5\x8b\xa1\xa1\xe7\x8c\xc6\x73\xce\x31\x8d\x17\xee\xcc\x9b\xe0\x74\xa6\x2c\xc1\x14\xfd\xbe\x50\x94\x89\xaf\x1b\x76\x16\x52\x24\x04\x2e\x35\x22\x24\x92\xa2\x2d\x39\x8a\xaf\x71\x53\xd0\xfb\xe7\x72\x2a\x64\x33\x35\x77\xe0\x6d\xe6\x5a\x58\xeb\x1c\x95\x68\xac\xb7\x0b\x80\xe4\x00\xea\xbe\xe9\x8d\xf9\xe8\x0a\x54\xa9\x08\x88\x68\x13\xaa\xac\x31\xbd\x7f\x0f\x06\xb0\x28\xa1\xd5\x0f\x18\x33\x2a\xf1\x9d\x34\x0f\x9a\x28\x7a\x11\x50\x9a\x0a\xa6\x6a\x74\x3f\xb2\x34\x25\x74\x5c\x0d\x9c\xaf\x0d\xf6\xae\x29\x20\xb1\x90\x84\x8e\x97\xbe\x01\x56\x8b\xb7\x77\xcf\xd7\x00\xd7\xfb\x29\xce\xe7\x94\x6a\x47\x40\xb3\xc3\x84\x8c\xbc\x22\x2a\xa1\xb1\x62\x6e\xbb\x17\xe2\x28\xd6\x3b\x7a\xde\xbd\xde\x0b\x8f\x1a\x22\x3d\xf0\x4a\xc7\xad\xf4\x97\x2e\xb1\x8c\x92\x90\x3f\x6b\x7e\x8e\x67\xf3\x4a\xff\x02\x94\x12\x24\x3c\xa0\xfb\x1e\xc4\xb3\x79\x90\x22\x21\x0d\x27\x01\x1f\x4e\xf1\x94\xf1\xc5\xda\x3a\xa6\x48\xb9\x1a\xa3\x2f\x15\x5f\xbb\x13\x6c\x09\xe3\xf2\x2b\xac\xa3\xb3\x69\xa0\xa6\x81\x2e\xed\x7b\x57\x1a\x67\x5b\x19\xe2\x81\xbf\x84\x09\x51\xf6\x03\x26\x37\xf8\x85\x94\x5c\x44\x25\x5b\xbf\xd4\xc1\xe7\x06\x49\x3e\xa7\x81\x88\x27\x58\x71\xfb\x07\x1a\x63\x0f\xa0\x91\xc4\xfc\x1c\xd3\x44\x2d\x8d\x46\x29\xf6\x0d\x75\x34\x91\x2f\x4c\xcf\x95\x5e\x91\x2a\xa3\xcf\xb7\x81\x08\xfa\x7d\xe4\x85\x50\x06\x12\x89\x6b\xdf\xdb\xc0\xdd\x9c\x8f\xd2\x67\xf5\x31\x9b\x5d\x70\x24\x45\xee\x69\xee\x84\x55\x57\xb3\xae\xdc\x81\x99\x27\xda\x8d\x87\xd1\xfd\x9b\xb1\x34\x05\x7e\x30\xc3\x7c\xc4\xf8\xd4\xcb\x3d\xd0\x06\x78\x5e\xee\x95\x39\x91\xb3\xdb\xf1\x61\xa5\x29\x53\xe1\x38\xb2\x4d\x1d\x43\x1c\xc8\xb0\x8f\xad\x25\xd3\xb1\xca\x4d\x1d\x52\x68\x9b\xea\x84\x15\x6f\x77\xa7\x0b\x0d\x71\xc9\x14\xb3\xb9\xf4\xbd\x5e\x98\x97\xed\x46\xd9\xe4\x29\x4d\xe9\xbc\xff\x59\xf7\x4d\xe9\x83\xf5\xee\x69\x33\xe6\x57\x57\x1d\x78\x3c\x18\xf8\x4b\xdf\x0f\x12\xae\xbf\x95\xb6\x9d\xdd\xa9\x0b\x6d\xb8\x45\xc1\x5c\xb9\x81\x17\x18\xe3\xcb\xab\xea\xd6\x36\x74\xc4\xe1\xa8\x9c\xd4\x50\xee\xed\x49\x33\x16\x7a\x83\x7c\x6f\x6f\xb7\x78\x0c\x88\xf8\x88\x69\xa2\xa5\x41\xf1\x41\x31\xdc\x5f\x39\x9b\xcf\x32\x63\x82\xf6\x9d\x2a\x5a\x02\x52\x09\xfc\x1d\xba\xb7\x47\x73\x8c\xd4\x92\xf5\xc8\xfe\x77\xf3\xf2\x65\xb6\x02\xda\x43\xc4\x57\x68\x96\x4e\xb5\x84\x08\xc9\xc9\x70\xae\x2b\xaa\x1a\x5f\xcf\xb3\x9d\xa2\x05\x9b\x4b\xb3\x8e\xac\xc3\xc8\x11\x82\x2f\x19\x95\x88\x50\xcc\xcd\x6a\x01\x94\x61\xd4\x56\x02\xbf\xdd\xdc\x7d\xa5\x18\x68\xe3\x69\xf5\x22\x90\x83\x0c\xee\xff\x35\xc7\x73\x9c\xbc\x50\x9f\x04\x54\x65\x95\xa9\x66\x1f\x47\x88\xa4\xf9\x37\x6e\xe4\xbd\x7d\xd2\xc7\xf4\xf2\xc7\x65\x69\xf9\xc8\xe7\x7b\x43\x83\xc5\xf1\x25\x27\xae\xb0\x09\xb1\x31\x96\x96\xf0\x44\x59\xa4\x2e\x9a\x00\x82\x32\xa2\x00\x02\x17\x55\x00\x41\x09\x59\x00\x41\x19\x5d\x00\x41\xca\x84\xb4\x0f\x99\xe3\xe3\xea\x3e\x45\x43\x9c\x46\xe0\x7f\xeb\xb6\x00\x34\xe3\x8b\x83\x32\x89\xb2\x85\x3f\xb2\x38\x81\x25\xcc\x2a\x5e\xd8\x56\x8a\xaa\xe5\x76\xdd\xca\x22\x2f\x9b\xa2\x05\xe6\x22\xea\x16\x70\xf2\x35\x39\x03\x53\xa6\xbd\x03\xc5\x7e\x70\x70\x78\x69\x29\x53\x54\xae\x0c\xaa\x53\x3b\xfb\xe2\x54\x7f\xad\xe9\x58\x54\x2e\xb1\x80\x53\xd5\xbc\x77\x2a\xbe\x65\x42\x16\xd5\x0a\xf2\xba\x95\xd4\x5b\xb0\x1c\xa8\x55\xfc\xb1\x4d\x0c\x77\x92\xcf\x66\x6d\x25\x29\x93\x98\xcf\xa7\xc3\x2f\x6a\xab\x18\xcf\xc2\x2a\xd5\xd1\x41\xe2\xc2\x68\x85\xcd\xaa\x22\x70\xb1\x75\xf4\x46\x00\x9d\x0f\x55\x75\x44\x7d\x11\xa5\xaa\xb6\x8d\xa0\x04\xad\x44\x39\xf9\x18\xe5\xa4\x11\x2a\x58\xb4\x05\x8e\x65\xe5\xb8\xeb\xd7\x25\x5e\x41\x85\xad\xba\x30\x44\x82\xc4\x6d\xb5\xd6\x25\xec\xb6\xd1\x34\x2b\x97\x58\x53\xf7\x0f\x68\x9e\xd5\xfa\xa6\xd7\xcc\x36\x4e\x71\xfd\x3c\xdb\x76\xd4\xa8\xc1\xfa\xb7\xa1\xce\xe7\xa0\xca\xbf\x01\x35\x24\x27\xe3\x31\xe6\x9f\x44\x8d\x0c\xc6\x1f\x90\x1a\xf1\x84\xa4\x09\xc7\xff\x7e\x7a\xe1\x6f\x6c\x58\xd3\x03\x9b\x3a\xbb\x52\x0b\x54\xca\xf7\xfd\xcc\xa8\xeb\x2f\x6d\xc5\x4c\xb9\xcb\x9f\x13\x8c\x92\xec\x61\x85\x72\xf7\x1b\x1b\x36\x2a\x73\x0a\x7e\x45\x79\xab\xb4\x56\xe8\x67\xce\x1b\xb7\xc5\xba\x4a\x96\x99\x17\xb9\x82\x51\xed\xc0\x3a\xb5\x6c\x95\x3a\xd5\x54\xb9\xae\x50\x9d\x61\xe4\xe8\x43\x2e\x9a\xcd\xaa\xd4\xb6\xea\x8d\x89\x52\x6b\x53\x96\xe0\xba\x0f\x6e\x2b\x7f\xdb\x2c\x27\xb9\x09\xfd\x70\x4b\x4c\xc9\x1d\xa1\x62\xff\x96\xc8\x49\x3b\x6f\xbc\x7d\x43\x04\x19\x92\x94\xc8\x45\x3b\xc1\xd2\xaa\x08\xdf\xc0\x2b\x97\xbb\x8e\xe0\x23\xfe\xb9\x95\x2e\xb8\x1a\x15\xeb\x3e\x38\xf5\xcd\x4c\x9d\xcd\x3d\x3b\xf2\xe9\x9e\x9d\xba\x25\xae\x10\xd8\xd1\x76\xf4\x4a\xfb\x1b\x9b\xdd\x97\xdc\xee\x96\xb0\x13\xea\x60\x2f\x58\x0c\xd5\xcf\x7a\xf3\x87\x47\xe5\x49\x99\xb0\x58\xef\xbf\x04\x13\x92\x24\x98\xfa\xc5\x56\x8e\xeb\x16\xda\xc1\xa9\xc0\xee\x91\x2e\x8d\x13\x76\x77\x7e\xf2\xb6\xb1\x69\x7b\x09\x6f\x49\x9a\x9e\x61\x21\x39\x5b\xd4\x5c\x57\xb5\x16\x36\xd8\x1f\x82\x66\x57\x56\x3b\xce\xf4\x4f\x77\x17\xd8\x77\xed\xd4\xaa\xc2\xfb\x98\x3f\xe0\x31\x2f\xbe\xe3\xcb\xfe\x52\xa2\x7d\x95\xfe\x5b\xe6\xd6\xd2\xae\x41\xbe\xb1\x70\x59\x72\x09\x5b\x66\x25\x34\x21\x31\x92\xf8\x62\x1e\xc7\x58\x7c\x73\x67\x9e\xbb\x7b\x9b\x3b\xca\xb0\x32\xb1\x0d\x7e\x20\x77\xba\x1d\x54\x5c\x63\x5d\x7c\x60\x5d\x63\x07\x51\xad\xba\xea\x6a\xee\xcf\x7b\xdc\x13\xa6\x3d\x60\x36\x59\x90\xd2\x19\xbc\xed\x64\x6e\x7d\x59\x6d\x62\x96\xd9\x42\xad\x4b\x07\x6d\x81\xd3\xcc\x7a\x52\x8f\x92\x23\x2a\x48\xf5\x30\x45\x2e\x60\x69\xc2\x6e\xdb\x1c\x0b\xf2\x7b\xf3\x51\x5c\x47\x4a\x0b\xb9\x48\x71\x16\x89\xd7\x94\x01\x08\xb2\xcf\xc5\x98\x69\xbf\x31\x88\x1a\x3f\x93\x4b\xc8\x57\x31\xad\x28\xc4\x72\x99\x7d\x27\x88\x4b\x45\x8c\xba\xbe\x94\x97\xfb\x89\xe8\x05\x5a\x15\x27\xe2\x3d\xe2\x9c\xdd\x46\x44\xb4\xa9\xfe\xa5\x0a\x2a\x18\x86\xc3\xb5\x9a\xa2\x7f\x19\x59\x7d\x86\xe4\x7c\x6a\x99\x3f\xab\xba\xdb\x81\x92\xb1\x54\x92\xd9\x85\x22\x9a\x9a\x05\xac\xd8\x0b\x05\xf6\xdb\x47\x66\x07\xc6\x87\x53\x24\xae\xdf\x24\x06\xca\x3f\x1b\x15\x21\xf5\xb2\x61\xdb\x43\x33\xad\x1a\x7c\x7b\x3e\x4b\x15\x83\xbb\xa1\x0f\x69\x5f\x4d\xaf\xd9\x4f\x0b\x0f\x68\x6a\x03\xc5\x81\xc9\x3c\xc6\x5e\x0a\xc3\x3c\x7a\x46\x97\x71\x22\x44\x9d\xdd\xf8\x40\x6b\x14\x3a\x7e\x40\x03\xb0\x55\xac\xa2\x21\xac\x8e\xc1\x1c\xb5\x42\x06\xf9\xef\xcc\x4d\xa4\xa0\xa8\x1f\x50\xef\xe8\x47\x08\xce\x30\x8f\x31\x95\x11\xdb\xa7\x90\x8d\x46\x02\xcb\xc8\x26\x71\xf3\x42\x88\xfc\x35\x28\xef\x53\xab\x47\x93\xe4\x0d\x15\x98\xcb\x57\xc6\x16\x5c\xb9\x8a\x15\x11\x80\x66\x4a\x18\x02\xfd\x4f\x0f\x88\x9b\x31\xf0\xaf\xc2\x81\xce\xf9\xa5\xb8\xa2\xad\xc8\xdf\xce\xc3\x5e\x6c\x18\xd2\x9c\x24\xaf\x19\xd7\xb5\x7c\x7f\x27\x93\x01\x8e\xa6\x78\x6f\xb8\x42\x66\xa3\x87\xb2\x54\x43\xa6\x8d\x96\x92\x94\x1f\x91\x9c\x00\x3f\x40\x52\x72\x7d\x64\x0b\x22\x1f\xca\x80\x51\x0f\x4c\xd9\x5c\xe1\x85\x6e\x70\x69\x58\xf3\x2d\x95\xf2\x42\xab\xa5\x0f\x11\x2f\x8c\x7a\x60\x77\x0b\xf4\x4b\x87\x0b\xad\x60\x82\x59\x8f\xf5\x21\xc2\x31\xf0\xcd\xb8\x68\xa7\x6a\x51\xbf\x78\x49\xa8\xf3\x5a\xd3\x58\xf7\x82\xeb\xfd\x9b\x97\xaa\x8f\x9e\x51\x1e\xcc\x31\xb4\xe6\x5d\xa1\x4a\x69\x73\xc0\x4d\x3f\x5a\x56\x66\x43\xa5\x19\x61\xee\x01\xcd\xe0\xc1\xff\xc2\x28\x9e\x04\x46\x14\x40\xc3\x6b\x39\xfb\x94\x95\xf8\x06\xf8\x3e\x74\x9e\xd7\xeb\x31\x7a\x90\xb2\x93\x8d\xba\x69\x68\x02\xb5\x82\x6c\xba\x66\xa9\x83\x32\xd6\x08\xf4\x96\xbc\xa7\xc3\x64\xd6\x26\x49\xd2\xb8\xff\x18\x2e\xfd\x9d\xb4\x21\x92\x48\x09\x2e\xd3\x75\x35\x4e\x18\x02\x13\xd5\xa2\xcf\x1c\xda\x48\xc4\x9c\x35\x41\x30\x44\x5c\x00\xbf\x3a\x70\x0a\x5d\x2f\x85\x8d\xad\x6b\x9a\x2d\x7d\x48\xfa\xa9\x8d\x33\xdb\xe1\x01\xbe\x23\xd2\x53\xf3\x66\xca\x6e\xb0\x97\x05\x5e\xf1\x00\x2b\xe5\xd2\xd3\x41\xf8\x4a\x56\x6a\xe0\x39\x17\xea\x8f\x0e\xc9\xe5\x0a\x36\xcc\xa3\xc7\xd5\x7c\x15\x10\xf5\xe9\x5a\xf2\x68\x04\xf5\xd9\x09\x8b\xea\x0e\xdd\x9c\x13\x43\x1f\xa2\x86\xd2\xe1\x2a\xbe\x6d\x9c\x0e\xd2\xb7\x9a\x3c\xd2\xaa\xa3\xe7\x2b\x5b\xef\xa7\x9f\xd8\x9d\xa7\xf3\x66\x04\x77\xcf\x84\x19\xec\xfd\xee\x4e\x7d\x2f\xb3\xb2\x8f\x89\x61\xdd\xc6\xaf\x4f\x4c\xa5\xff\x66\xb8\x54\xe5\x3c\xbc\x4f\xf1\x48\xea\x30\x51\x7f\xe9\xff\xe0\xf1\x3e\x0f\xa6\x98\x8f\xb1\x37\xf7\x33\x19\xa1\x7b\x57\x1e\x8b\xcc\x0a\xcf\xa7\xc7\xc3\x03\xd0\x43\x50\x88\x2c\x64\xa2\xe6\x3e\x8c\xf4\xa1\x4c\xd1\xc7\x81\x43\x87\xcc\x3c\xa5\x50\xec\xed\x89\xea\xb0\xec\xed\xe5\xd4\x2d\x3e\xef\xba\x9f\x73\x3a\x0f\xf4\x7a\x84\x62\xc5\x61\x26\x77\x4f\x0b\xe4\xe2\xc2\xe8\x47\x9a\x33\x00\xe4\x86\xf0\x49\x43\xde\xa1\x6e\xb6\xf6\xe8\xa4\x76\x06\xef\xbd\x3d\xd9\x6e\x43\xfb\xd0\xef\xf7\x49\xbb\x63\x5e\x15\xb1\x88\xec\xcf\xca\x8c\xd6\x8b\x47\x5b\x42\x30\xbb\x03\xfe\x12\xc6\xfd\x3a\xe3\x95\xab\x98\x35\xe6\x99\xe7\x34\xf6\x3c\x8c\x3a\x7e\x06\x61\xda\xe7\xee\x9c\x0b\x24\xe2\x63\x2c\xb3\x99\x57\x87\xae\x83\x02\x77\xa6\xb5\xf9\xc4\xf5\x2e\x7c\x79\x0c\x41\x0e\xcc\xbc\xd6\x9c\x06\x60\x92\x3d\x4f\x30\x19\x4f\x94\x66\xd2\x09\xc3\x3f\xe5\xa5\xee\x00\x8c\x7d\xcb\x16\x53\x3f\x28\xf4\x37\xcf\x0f\x92\x39\xd7\x96\x86\xd7\x0d\xc3\x55\x50\x75\x7d\x4d\xfd\x59\xa5\x6f\x4a\xe7\xa9\x75\xcc\x51\xaf\x4a\x69\x71\xf5\xb2\xfd\xf0\xd0\xd1\x69\xe2\x52\xaf\x14\x2a\x7c\x6f\x56\x73\xb9\x84\xd8\x57\xc2\x6c\xb6\x9e\x1c\x8d\x18\xda\xdf\x0b\xd0\x30\xab\xc4\x73\xd0\x0b\xff\x04\xa2\x70\x59\x50\x94\xcc\x4c\x3e\x18\x08\xe6\x3c\xf5\xfe\x47\xf9\x20\x8c\x59\x80\x21\xf0\x81\x5f\x25\x6e\x23\xf4\xa3\xd9\x1d\x88\x0c\xd9\xf3\x26\x34\xa1\x95\x29\xb9\xa2\x8e\xfe\x9e\x22\xa9\x14\x95\x56\xfb\xc0\x07\x7a\x73\xc0\x0e\xd4\x6c\xd5\xf4\x75\xe8\x0b\x86\x4a\xb3\x55\x74\x6d\x3b\x47\xa8\x97\x4f\x1d\x62\x35\x5b\x9b\x55\x1c\xeb\x24\xf7\x8b\xc5\x45\xd1\x07\xd4\xd8\x4e\x51\xc1\x19\x07\x4d\x73\x65\xef\x6a\xa3\xe0\x5c\xd9\x04\xb8\xc1\x7a\x2f\xe4\x24\xa3\x31\x36\xe6\x72\x75\x85\xae\x44\x55\xf2\x47\x0c\x9c\x11\xc7\x58\x5b\x17\xfb\x62\xdc\x46\x71\xcc\x78\xb2\x3a\xb7\xae\xb1\x4b\x74\x71\xa5\xa2\x61\x65\xa2\x24\xf3\x58\xb6\xa7\x58\x22\xad\x25\x7f\x6d\x63\xd9\x22\x20\xdc\xf0\xc7\x2d\xcc\xbb\x52\xef\x87\xec\x0e\x27\xdf\x7e\xff\xeb\x06\x71\x82\x68\x3d\x34\xab\x36\x33\xae\xee\xaf\xf1\x22\x02\xef\x75\x74\x32\x80\x92\xc8\x14\x17\x8f\x22\x9d\x8f\xd5\x34\x81\xa6\xd4\x1b\x3a\x62\x79\x19\xf3\x60\x4a\x68\xef\xd7\x88\xe5\x05\xff\x8e\xb8\xf1\x81\xda\xb2\xf9\x73\x5e\xfc\xd6\xbe\xc9\x6a\x9c\x21\xaa\xf7\x0f\x6c\x85\xec\x31\x2f\x9f\x98\x17\x35\x7f\xe7\x63\x3b\x7a\xa5\xc1\x89\x59\xca\xf8\x37\xdc\xd2\xd5\x08\x5e\x4e\xf0\x14\x6f\x30\x2e\x54\xbb\x1e\x3f\x72\x62\x92\xd0\x0d\x91\xc0\x11\xf8\x1f\xdd\xde\x10\x9d\x74\x14\xd9\x4a\xdf\x5b\x67\x88\x5f\xe7\x85\x3a\xc9\xe9\xe1\xd1\x71\x51\xe8\x52\x9f\xfa\xb4\x1f\x43\xa4\xfe\x57\x7c\x7c\x4b\xa8\x53\xb3\x77\x74\x30\x1a\x15\x1f\xff\xca\x51\xd1\xf6\x70\x18\x1f\x26\x4e\xdb\x1f\x46\xa3\xf6\xed\x84\x48\x9c\x97\x18\xf5\xd4\xff\xf4\x28\x41\x3b\xab\x5e\x6a\x9a\x6f\xdc\xdf\x97\x8c\x8a\x79\xda\xfa\xe8\x22\x35\x1a\x85\xe1\x89\xd3\x1d\xa7\x4c\xb9\xdf\xf1\x51\x17\x1d\xbb\xc4\xd1\x81\x9f\xad\x9f\x94\x2d\x5a\xd0\x06\x61\xb7\x87\x4e\x99\x3a\x11\x93\xc4\x25\x22\xe7\x48\xad\x2f\xad\x8f\x73\x3e\x4b\x0b\x88\xbd\xf8\x10\xe3\xde\xea\x82\x65\xb0\x87\xe1\x61\x38\xec\x16\xa5\xff\x86\xc6\x1c\x51\x59\x41\xb2\x32\x0c\x6e\xa1\x0a\x96\xe1\x21\x76\xc1\xe9\x58\xfb\xd6\x5f\x39\xc6\x74\x25\xcf\x38\x65\xd6\xf3\x4d\xb5\xa0\x9a\x91\x59\xd1\xa3\xe3\xf0\x30\x31\x23\x8d\xa7\x4c\xa9\x97\x5b\x8e\xb4\xf5\x30\x16\x58\x1e\x24\x9d\xa3\xb0\x68\x3c\x97\x19\x19\x17\xa0\x13\xdc\x3d\x28\xbe\x67\x22\x22\x1b\xfb\x93\xc3\xf0\xe0\xb0\xf8\x6c\xc4\x53\x85\x9e\x0d\xd2\xa3\x7e\xd7\xc1\x2a\xe9\x91\x90\xd1\xa8\x7d\x43\xf0\x6d\x79\x9f\xf3\xcb\x88\x90\xba\xe6\x7a\xff\x9a\xe0\x34\x11\xc6\xc7\xf4\xe6\x2c\x02\x44\x7b\x51\x08\xa3\xa2\xcd\x68\xba\x00\x76\xdf\xd3\x96\xb8\xcc\xe2\xe1\x44\x74\x95\x55\xbd\xba\x7f\x41\x29\x93\xc6\xd9\x6d\x8a\xbd\xb7\x33\x6a\x4e\x25\x80\xef\xf1\x6d\x04\xba\x00\x7e\x48\x13\xfd\x57\x67\xfd\x07\xef\x19\xc5\x60\x39\xb0\x45\x63\x14\x4f\x70\xd1\x56\x0e\x1b\xdb\xef\xe7\xc6\x4d\xfa\xd1\x26\xfd\x28\xe3\xa4\xe1\xbd\x4a\x88\xc4\x8a\x75\xca\xcf\xd0\x78\x27\x4c\xd1\xea\xc7\xe5\x12\xae\x5e\xbf\x0b\x42\x7c\xa0\xe9\x22\x92\xde\xca\x7e\xbe\x30\xc7\x59\x85\xed\x6a\xa7\x67\xfb\xaa\x7e\xb8\x9d\x85\xab\x00\x9c\xe1\x54\x09\x44\x43\xa8\x5e\x98\xfd\x67\xc1\x64\x40\x5e\x24\x89\xd9\x12\x5c\x01\xe5\x8d\xd2\xb6\x6f\xd4\x02\xab\x01\x9d\x86\xe1\x53\x21\xbd\xd3\xc9\x61\x34\x94\xc4\xa0\xa6\xab\xdb\xdf\xa5\xf1\x53\xeb\x64\x8a\xbf\x07\x32\x95\xde\x6c\x04\xef\x71\x82\x95\x5f\x6d\x04\xd4\xa1\x5d\x13\xd9\xce\xf4\x31\xb2\x44\x53\x0e\x27\x44\xfe\x3b\x52\xcd\x81\x99\x03\xcd\x66\xdc\xe7\xe1\xb9\x54\x99\xd0\x3a\x21\x58\x4d\x7e\xe1\x3b\x34\xd5\xeb\xe8\xa3\x72\xcb\x69\xbc\x22\x7e\xf2\x2a\x8d\xc2\xed\x31\xb1\xf7\x0e\x4b\x74\xc5\x28\x1e\xd8\xee\x8c\x52\x7c\xdb\x62\x37\x98\xb7\xe4\x04\xb7\xe2\x79\x7c\xcd\xd8\xff\x27\x5a\x54\xdf\xc9\xb0\xdd\xbc\x54\x90\xe5\x2d\xcb\x20\x0f\x09\x4f\x44\x8b\xd1\x16\x6a\xdd\x12\x8e\x9b\xa1\x65\x22\x96\xe3\x84\x88\x06\x11\xbb\xb2\x1f\x64\x8a\xc6\xd9\x90\xe8\xca\xd1\x41\x70\x68\xdb\xc8\x9e\xbb\x1b\x8f\xaf\x5a\xd6\xfe\x39\x45\xb3\xab\x70\x70\x95\x0c\xb3\x1e\x1c\x1d\x9c\x64\x5c\x73\x74\x70\x7c\x5a\x85\x36\xc8\x57\x12\x3a\x22\xe3\xb5\x72\x1f\x3e\xbe\x1c\x7d\xfc\x35\x9b\x44\x05\xaf\xf6\xb6\x60\xd1\x33\x22\xae\xdf\xfd\x64\x61\x64\x00\x36\x9e\x36\x1f\x3e\x5e\x3c\xb1\xea\x3b\x7d\xb0\x23\x6f\xb9\xd7\xc9\x17\xd3\xde\xd1\x2a\x8a\x9d\x63\xc1\xe6\x5c\x7b\xdd\x36\x1f\xf1\x77\x3f\x91\x42\xd0\xac\x5a\x35\xb2\x16\xde\x63\x79\xcb\x94\x9a\xb7\x39\xfc\xb7\x68\x88\x33\xb9\x91\x0c\xd7\x83\x3f\x5b\x50\x34\x25\x71\xeb\x23\xe3\xb2\x71\xe0\xf3\xf2\x95\xb9\xb3\x4d\x27\x33\x59\x1a\xd6\xc5\xf3\xe7\xe9\x65\x26\xc5\x86\x2b\x1b\x78\xb4\x9f\x4e\x8d\x15\x2f\x36\x9f\x02\x2f\x92\x84\x63\x21\x1c\x59\x8b\xe6\x92\x59\x24\xcd\xcf\x8d\x38\x52\xfd\xeb\x4a\x86\x76\x26\x40\x73\xd9\x90\xbd\xd9\x08\x9c\xea\x7b\x23\x6f\x14\x74\x2b\xab\x8b\x36\xac\x78\x9b\x51\xb9\x44\x63\xe1\xa2\xbc\xa5\xe8\x75\xaa\xbb\x7d\xdd\xa6\x97\x0e\x88\x71\xca\x86\x6a\x05\xd5\x30\xb2\x87\xa6\x8e\x9a\x3a\xab\xb9\xff\x29\x43\x5e\xe9\xf9\x23\x58\xbf\x64\xd3\x29\xa2\xc9\x93\xea\xfe\xf5\xfc\xe3\xcb\x7c\xa8\x9e\x58\xff\x57\x81\x2f\xdf\x66\x92\x73\x84\x52\x91\x91\xde\xfe\xde\x50\x67\xd1\x67\xaf\x2f\x74\x68\xe1\x93\x50\xa9\x68\x3d\x9d\x9a\x22\xd5\x79\x8a\xce\x83\xe5\x84\x3d\x8d\xb4\xce\x0c\x44\xa9\xde\xa6\x31\x73\xd8\xfc\xde\x6c\xd6\x69\xc7\xf9\x13\xda\xae\x4e\xd7\x2d\x6b\x73\x26\x59\xcc\x9e\x56\xf9\xf2\xed\xc5\xc5\x35\x99\xfd\x0d\x73\x32\x5a\x7c\x22\x53\x5c\x9a\xa0\x1e\x0b\xe5\xb8\xa6\xc5\x6e\x3f\x9e\xaa\x98\x05\x27\xe3\x99\x85\xa3\x7f\x35\xcd\xed\x97\x13\x1c\x5f\x6f\x63\xcb\x3e\xf6\x5c\xb6\x75\x37\x50\x88\x1c\xfb\xbc\xf3\x14\x55\xf4\x1a\x2f\x32\x45\xce\x84\x66\x3c\x01\x06\xc7\x49\xae\x28\x13\x31\x59\xaf\x14\x68\x71\xdb\xdd\x46\xec\x57\xcc\xa7\xee\x96\x28\xba\xc6\x53\x7d\xce\x3f\xd1\x32\xef\x9c\x7c\x16\xd3\x7c\x84\x48\xba\x9e\x5c\x8f\x7b\x4d\x36\xd7\x9a\xc8\x98\xeb\x20\xb7\xda\x94\xdb\x14\xf3\x0b\xf2\x3b\xce\x75\xd8\x83\xad\x3b\x7e\x21\x49\x7c\xdd\x34\xe5\x57\xf4\xfd\xd5\x6c\x82\xa7\x98\xa3\x54\x69\xed\x8f\x28\x90\x4f\xb5\xf4\xce\x38\xd1\x69\x3e\x8c\xd2\xc2\x74\x3e\x80\xed\x7a\xf5\x1f\x24\x4d\xcb\x72\xe8\xc9\x4c\xf6\x56\x5f\x53\xf7\x29\x03\x34\x99\xcb\x84\xdd\x52\x97\xe7\x1f\xb1\x01\x3e\x8b\x4d\xb9\xed\x9c\x5c\x65\x49\x2a\xf3\x71\x1d\xb2\x6b\x8c\xc8\x8d\xa7\x41\x61\x43\xf6\xb6\x1e\xa0\x46\xf3\x71\x63\x11\x52\x37\x1f\x37\x17\xb3\x25\xf3\x51\x1b\x8d\x8f\x48\x8d\x4f\x35\x1d\xff\x88\x96\xe3\x36\x8f\x8f\x78\x95\x9f\xbc\xcf\x5b\x0d\x46\x6d\xff\x36\x9f\x0e\xd9\xb7\xdb\x5a\x74\xf1\xf9\x09\xf1\xb3\x86\x10\xd4\x86\x9d\x18\x7b\xe8\x44\x29\x3b\x36\x1e\xb4\x13\x16\x67\x51\xe4\x2d\xcb\x5e\x77\xdd\xd7\x13\x8e\xf3\xf2\xce\xfb\x11\x9b\xf3\xec\xf5\x41\xef\xd3\x76\x6a\xd7\x85\x4c\x7f\xe5\x93\xa4\x64\x8a\xf9\x25\x89\xaf\x45\x14\x9a\x73\xe8\x6a\x15\xe0\x2b\x32\xbe\x16\x91\x54\xba\x1e\x80\x3a\xa9\x95\xd1\x29\xca\x01\xa1\x84\xc6\x5c\x87\x79\xe4\x38\x83\xa2\x29\xe0\x2f\x61\x2f\x0c\x7d\x7f\xa9\x83\xfc\x08\x25\x12\xf8\xab\x4e\x46\xc4\x29\x46\x3c\x6f\xc4\x24\xaa\x56\x90\x74\xcc\x67\x95\x2b\xe6\xd3\xa7\xb2\xc5\x40\xc7\xee\x7e\x1b\x2e\x3b\x58\xd9\xfc\xdf\x89\x9c\xbc\x34\x99\x7f\x36\xc7\xa4\x7c\xe4\xbe\x13\xae\x3d\xcf\x55\x3d\xe2\xde\x0d\xb7\x3a\xd4\x7e\x10\x36\x1d\x64\x5f\xd1\x9b\x73\x2d\x51\xeb\x89\x78\x5c\xd6\xa8\x47\x37\x35\x51\xf8\x1d\x92\x93\x80\xb3\x39\x4d\xbc\x5e\xf8\x67\xf3\x84\x68\xc2\xa6\x9e\xef\x37\xd2\x7e\xc3\x0a\xee\xa8\xac\xad\xf2\x69\xd3\xbf\xe1\x04\xf6\xd7\x9d\xf6\xcc\xa6\x8a\x2d\xc7\x25\x54\xb6\xc6\xab\x51\x04\x0d\x31\x00\xb5\x3d\x7c\xf7\x85\xbe\x4d\x6a\x00\xa7\x88\x2e\xb2\xd4\xb4\x57\xe0\x83\x1a\x44\x70\xa9\x46\x06\x5c\x1a\x72\x83\xd7\x5a\xb4\x82\xd7\xda\x65\x00\x2e\xc8\x9d\xfa\x17\xdf\xe8\xa3\x8c\xaf\x6c\x34\xd8\x7b\x62\x2a\x9a\x97\xa9\xfd\x7a\x79\x8b\x53\x5d\xe9\x72\x42\xb8\xd4\x51\x01\x1a\x5a\xf6\x93\x8c\xf4\xaf\x41\xf9\x1c\x41\xb1\xe9\xac\x51\xc5\xcb\x4f\x19\xcc\xdf\x04\xa3\x5f\x6d\xdf\x7c\xd5\x78\x2a\x24\x2e\xa6\x28\x4d\xa3\xfb\x11\x63\x11\xd0\x6b\x0a\x9d\xab\xd2\x51\xa7\x7b\x70\xd8\x3b\x3a\x3e\x39\x85\x79\x24\xd8\x55\x36\xe0\xd0\x8e\x34\xcc\x86\x18\x3a\x63\x0b\xf3\x41\x85\x76\x34\x07\xd0\x1c\xf9\xd2\x8b\x44\xe4\x51\x7c\xdb\x3a\x43\x12\xfb\x81\x64\x6f\x2e\x3e\x98\xbc\xf1\x9e\x0f\x29\x16\x12\x27\xd1\x3d\x1b\xfe\x16\x01\x9d\x00\x6a\x09\x29\xa3\xf8\x8e\x08\x89\xa9\x3d\xa8\x32\x99\x4f\x22\x9b\x0a\x90\x88\x4b\xae\x3a\xde\x59\x42\xd5\x91\xb7\x88\x8f\x71\x74\x7f\x21\xd9\x2c\xda\xed\x40\x73\xb3\x71\xe1\x9e\x7c\x5f\x5c\xa8\x9d\x9f\x78\x7e\x73\x16\x01\xb1\x10\x29\x1b\x03\xf8\x11\x29\x0c\xd5\x1b\x60\x15\xb1\xec\x8b\xd1\x8e\xcc\x75\x60\x00\x7e\xe4\x84\x71\x22\x17\x51\x2f\x84\x2f\xd2\xf4\x85\xfc\x40\x63\x85\x04\x54\xa2\x2a\xd6\x21\xa3\x8a\x52\x49\xdc\x01\x10\x24\x71\x17\x0c\xa0\xa2\x9a\xe4\x88\xd0\xc6\xed\xbc\x72\x63\xda\xa9\x11\x75\xac\x86\xa6\xba\x83\xc6\x63\x35\x1c\xb8\x13\xc2\x77\xe8\xee\x23\xe2\x28\x4d\x71\x1a\x75\xe0\xcf\x18\xa5\x72\xa2\xdd\x30\x11\x88\xd5\x1f\x01\xe0\x3b\x42\xcd\xfb\x85\x26\xb6\xae\x66\x5f\x9c\x61\x94\xa4\x84\xe2\xe8\x00\x77\x3a\xf0\x23\x67\x63\x8e\x85\xc8\xdf\x1e\xa9\xb7\x2f\xe6\x92\x9d\xe3\x1b\xcc\xa5\xea\xd2\x4b\x44\x11\x5f\x28\x75\xc6\xda\xcf\x06\x7d\xb7\x3f\x57\xf7\x6f\x2f\x75\x40\xb0\xa2\xdb\x79\xf1\xf3\xc3\x0c\x2b\xb1\x17\xe9\xa3\x28\x84\xc6\xf2\x9f\x13\x26\xa4\x50\x33\xbb\x64\xd6\x47\xf7\x99\x8b\x43\x2d\x39\xd9\x82\x6d\x50\xd4\x96\x5c\xd4\xed\xe1\x53\xf8\x8e\x25\x38\xdb\x4d\x5d\xe6\x16\x6f\x99\x74\xc6\x9c\x2d\x2c\xd9\x5f\x85\x7a\x52\x24\x55\x86\x53\x74\x9f\x19\x5e\xd1\xd5\xbd\x8c\x67\xd1\x51\xd8\x81\xf3\x64\x16\xf5\x3a\x87\xcb\x01\xd4\x96\x9d\x9a\x01\x29\x1a\x12\xb9\x6f\x60\xb6\xe9\x38\x4a\x95\xa2\xac\x58\xf1\x15\xbd\x31\xdd\xb7\x2e\x61\x3b\x96\x9a\xc5\xed\xb0\xe2\xe9\x2c\xcd\xf5\xea\xfa\xb0\xe7\x96\x49\x74\xff\xf2\xe3\xaf\x51\x2f\x0c\x61\x66\xdc\x44\xdd\xde\x11\x34\x16\x56\x14\x42\x65\x2d\x45\x21\xb4\x86\x86\xea\xe9\x19\xd6\xb9\x4e\x54\x6f\xde\x9c\x9d\xab\xbf\x6f\x3e\xaa\x7f\xb5\xdd\xa2\x28\x77\x8e\xf5\x41\x94\x44\x59\x0d\x7a\x54\xcc\xd2\x34\x4f\x66\x00\xfe\x4d\x0b\x08\xd5\x4f\x98\xbd\xd7\x5e\x3d\xf3\xfe\x28\xec\x2c\x07\xd0\x5a\x1d\xa6\xba\x31\x0b\x96\x0a\xa1\x19\x92\x71\x96\x45\xdf\xf4\xe2\x1d\xce\x8e\x8a\x39\xd6\x7f\xa4\x06\xe9\x2d\x1b\x67\xb4\x7e\x87\xee\x5e\x93\x14\x6b\xd4\xec\x6f\xe3\x40\xd1\x5a\xce\x0b\x2e\xc9\x08\xe5\x66\x8d\x31\xfd\x15\xc3\x95\x6c\xf8\x28\xd4\x2d\x5c\x90\x31\x45\x69\x04\x14\xeb\x94\xbc\x22\x6a\x72\x90\xf8\x7a\xa1\x2b\x1a\xe0\x07\x8a\xa4\x96\x55\x95\x5c\x28\x70\x3d\xc7\xd9\x01\x08\xcb\x77\xd6\xf4\xd9\x76\x9e\xd5\x66\x58\x7d\x7a\x85\xf5\xb9\x15\xae\x9c\x58\xf9\xed\x71\x1a\x4b\xd5\xea\x14\x4b\xac\xf3\xf1\xfd\x92\xa5\x19\xc8\x86\x01\x27\xaa\xee\x8a\xc1\xd0\x7c\x68\x12\xf7\x02\x00\xcd\x56\x41\x71\x96\xde\xbe\x38\xc3\x22\xe6\x44\xaf\xaa\xb6\x94\x4e\xf6\xd0\x81\x7f\xc3\x5c\xa8\x97\x21\xbc\x98\x0f\xa7\xc4\x48\xea\xf0\xae\xd3\x3b\x18\x26\x47\x3d\x9c\xc4\x5d\x14\x27\x61\x08\xcd\x45\x61\x3a\x23\x6d\xd4\x3d\x56\xd3\x92\x8c\x16\xf9\xe3\x2f\x6c\x58\x7e\xb3\x7c\xfa\x02\xa9\xe8\xd6\xb6\xa7\x1c\xdd\x90\xe9\xe4\xa0\xad\xf4\xbe\xb6\x5a\x6b\xd0\x67\xc8\x12\xb2\x65\x58\xf4\x37\xb2\x7c\x76\xb2\x6b\xed\x14\x59\x74\x34\xfa\x5b\x72\x83\x77\x64\x80\x92\xc4\x74\xd9\xbb\x97\x22\x52\xcb\x6a\x40\xd9\xad\xe7\x43\x2d\x45\x2b\x0a\xe8\xb3\xae\xea\xb1\xcc\x12\x78\x1f\x85\x7b\x7b\x52\xe7\x92\xd6\x07\x15\xb3\xf7\xed\xa3\xf0\x33\x59\x5a\x39\xb2\x1b\xda\x44\x0b\x8c\x78\xd4\x0d\x3b\xa1\x6b\x11\x65\x2f\x3b\x4d\x2f\xbb\xae\x91\x94\xbd\x3c\x28\x0c\xa4\xe2\xe5\xa1\x7d\xd9\x73\x5f\xf6\xec\xcb\x13\xf7\xe5\x51\xd6\x50\xa9\xfe\x71\xd6\x52\xa9\xfd\x93\xac\xa9\x43\x63\x8c\xe5\x3d\x7e\x47\xd2\xe4\x49\x3d\x6e\xea\xf2\x69\x53\x97\x3b\x8d\x7d\xee\x34\x76\xba\xd3\xe9\x35\xf4\xba\x13\xf6\x1a\xba\x7d\xda\xd4\xeb\x93\x5e\x43\xa7\x4f\x2b\x7d\xfe\x2b\x9a\x7d\xf1\x81\xb6\x7b\x43\x9f\x79\xa8\x2b\x50\xb7\x1c\x6b\x35\x15\x1f\xef\xb4\xaa\x22\x70\xcc\x68\x22\x5e\x6b\xd9\xb5\x2e\xbb\x8e\x9e\x42\xa6\x98\x07\xfe\xf4\x73\xf4\xa7\x77\xd1\x9f\x2e\xc0\x26\x57\xcf\xac\x94\xa7\x6c\xdc\x16\x92\x63\x34\xfd\x76\xf6\xc6\x94\x25\xb8\x13\x01\x21\x13\xbd\x61\x40\xc4\xc7\x14\x2d\x08\x1d\x77\xa2\xdd\x10\x0a\x1d\xf8\xf6\x61\x2e\x67\x73\x19\x81\x0b\xfd\xd4\x62\xfa\xf1\x1f\xf4\xc7\x56\x47\xfd\xd3\x55\xff\x1c\xfc\x83\x5e\x85\x61\xd4\xe9\x46\xbd\x93\x41\xeb\x2d\x1b\xdb\x52\xad\x09\xe6\xd8\x7e\xeb\x45\xdd\xd3\x41\xeb\xea\xd5\xf9\xf9\xa0\xf5\xeb\xa4\xc5\x26\xff\xa0\x6f\x19\x4a\x08\x1d\x07\xc5\x2f\xf7\x67\xf0\x0f\xfa\x0f\xda\x6a\xfd\xf8\x63\xeb\x8c\x51\xbc\xdb\xfa\xcb\x5f\xd4\x0b\x60\xb1\x32\x99\x81\x33\xa4\xf4\xd5\x3b\xea\xf3\x55\xbf\xdf\xef\x3f\xb4\x1b\xfe\x1b\xb4\xba\xe1\x9f\x54\x91\xdd\xdd\xdd\xd6\xaf\x94\xe3\x98\xdd\xd8\x9b\x61\x74\xed\xc8\x34\xf7\x12\x51\xca\x64\x2b\x66\x54\x12\x3a\xc7\xad\x21\x5e\x30\x9a\xe8\xcc\x0e\x2d\x9d\x16\x3c\x68\xbd\xba\x8b\xb1\x5e\xb0\x5b\x62\xc2\xe6\x69\xd2\x1a\xe2\x56\x8c\xe6\xe3\x89\x0c\x14\x84\x4b\x55\x94\x88\x96\x02\x83\x5a\x53\x22\x24\xba\xc6\x41\xeb\x3f\xd9\xbc\x95\x90\xa4\x25\xd8\x14\xcb\x09\xa1\xe3\xd6\x2d\x67\x74\x1c\xb4\xb4\x1a\x63\x22\xf9\x58\x82\x35\x88\xf7\x0c\xb6\x16\x6c\xde\x52\xf2\x5d\xc3\xe1\x26\x9d\x4a\x0b\xd1\x45\x6b\xca\x38\x6e\x25\x58\x22\x92\x8a\x16\xe3\xad\xf1\x9c\x24\x88\xc6\xb8\x35\xe2\x6c\xaa\x11\x55\x20\x74\x9f\x5a\x53\x2c\x04\x1a\x63\x4d\xca\xed\x52\xcc\x95\x38\x75\x3a\x4f\x25\xb1\x19\x1f\xbe\x1f\xa7\x47\x67\xd3\x53\x43\xa6\x7c\xbb\x03\xa0\x75\x0f\x19\x2f\x46\xeb\x83\xd9\xcd\x77\xcb\x74\xab\x65\x2e\x6f\x59\xb5\xcc\x41\xad\x8c\x76\x7f\x54\x4a\x1d\x56\x4b\x69\xe7\x48\xa5\x50\xaf\x56\x88\xdc\x98\x6c\x49\x30\xcf\xaf\xb1\x41\x37\x1d\xec\x9d\xe6\x8b\x46\x14\x3c\x4b\xb4\x77\x88\x56\x93\x3e\xd7\x01\xda\xe3\x99\x9d\x30\xb4\xc7\x32\xf5\x79\xff\x8a\xef\xa5\x38\x71\x78\x5f\xee\x83\x73\xea\x10\xba\x9d\x75\x4f\x23\xea\xe3\xff\x79\x17\x37\x42\xea\xca\xe9\x45\x61\xd9\x6f\xca\x03\xb3\xe4\xce\x61\x00\xf3\x94\x0d\xc6\x6f\xa3\x6b\xe7\x9b\x79\x72\xbf\x75\x4b\xdf\xba\xf9\xb7\xe9\x3c\x76\xea\x99\xa7\xf2\xd8\x6d\x83\x67\x86\x86\x6d\xc4\xe9\xad\x76\x77\x6c\xd8\xcf\xa1\xc9\x71\x65\x71\xfa\x49\x3f\x65\xf8\x8a\x2c\x72\x2a\xcb\xcc\x6a\x9f\xf3\xef\xd6\xa1\x92\x7d\x36\x8f\xd9\xd7\xfc\xda\x6c\x98\xa7\x1f\xb3\x2f\xf2\x12\xae\xad\x54\x14\x2b\xbd\x2d\xd3\x67\xb3\x9e\xe5\x88\xe5\x3d\x70\x88\x63\xed\xaa\x4d\xd9\x20\x4b\x99\x56\x49\xa1\x96\x75\x21\xb7\xce\x2a\x59\xd2\xb2\xef\x89\xce\x7b\xe6\x26\x41\x2b\x77\x68\x53\x6c\x3e\xc9\xed\x3c\xb3\xc6\xec\x7f\xd1\x1d\xa7\x0e\x3e\xf8\xf4\x1d\x27\x4c\xd9\x94\x50\x24\x59\x6d\x66\xae\xdf\xc4\x68\x39\xbb\x09\x1d\x7c\x50\xdd\x4e\xf0\xb3\xcc\x33\x68\x5c\x63\xec\x2d\x00\x87\xd5\x7d\x8a\x7d\x65\x86\xf8\xd0\xa4\x83\x6c\x42\xda\xe9\x10\x80\xa0\x40\xe2\x91\x96\x4c\x32\x9f\xa2\xee\x9f\xf5\x8b\xa2\xfa\x9f\xd5\x1a\x60\x1b\x4f\xc9\x0d\x3e\x33\x7a\xc7\x23\xcd\xe7\x68\x3e\x8a\x4a\x96\xcc\xde\x4d\x8c\xb8\x11\x2c\xff\x53\x26\x90\xbd\x70\x83\x4c\x71\x5b\x60\x4e\xb0\x58\xeb\xd0\x80\x60\xca\x1a\x6f\xd1\xf9\x7c\x97\x80\x7f\xdd\x39\x96\x79\x2e\xa6\x58\x72\x12\x8b\x9f\xc9\x78\x02\x69\x3f\x73\x36\x3c\x97\x57\xb9\xdf\xa1\x33\x30\xc9\x67\xa2\xe0\x74\x07\xdb\xac\x0b\x97\x17\xda\x4b\xe9\x49\xa8\xf9\x68\x4a\xa8\x67\x7e\xa0\x3b\x8f\x3e\x0b\xc2\x5e\x99\x75\xdb\x41\xd8\xed\xc1\xa0\xe7\xc3\x8e\xbd\xa0\x0b\x15\x4d\xbf\x65\xb7\x50\xf4\x51\xd6\x32\xba\x42\xf5\x96\x3b\xb5\x96\x51\x43\xcb\x62\x55\xcb\xa1\xaf\x1a\x6f\x14\x1b\x25\xa8\x95\xfb\x94\x8d\xcf\xe9\x89\x37\xac\x1d\x84\xa1\x42\xda\x71\x04\x91\x29\x16\x12\x4d\x67\x15\x7f\xd0\x1c\x47\x52\x73\x85\x05\x4f\xf7\xf6\x70\xe1\xfe\xc9\x5e\xb7\xa9\xbf\x32\xdf\xe0\x1a\x19\xe7\x0c\xef\x66\xca\x55\x31\x28\x1b\xda\xce\x12\x49\x12\xbf\x33\xb5\xd6\x54\x31\x2c\x5a\xdf\xb5\x2b\x5f\xdd\xe4\x07\x62\x3e\x94\x1c\xc5\x3a\x89\xd1\x14\xf8\x81\x64\x8a\x5a\x9e\xbf\xcc\x13\x9f\x16\x74\xc4\x5e\x37\xcc\x48\x18\xf4\x96\xb0\xf4\xa9\x73\xb2\xfa\xd3\x51\xfe\xe9\xb0\xfa\xe9\x30\xff\x74\x50\xfd\xd4\xcd\x3f\x9d\x56\x3f\x85\x2b\x6b\x9d\xac\xfc\xb2\x1a\x89\xc3\x95\x98\x17\x28\x1c\x55\xbe\x84\xce\x97\xcf\xef\xd3\x68\xbc\x2f\x79\x95\x64\xd5\xee\xeb\xb6\xb9\x81\xcc\x66\x18\xf9\x76\x1a\x4a\x91\xe9\x3d\x32\xda\x9b\x8e\x98\x4d\x30\x9e\xb9\xcf\xca\x9e\x8e\x80\x90\x73\x7d\x92\x1d\x29\xcb\x27\xba\x32\x31\x0a\x26\xf0\x20\x8b\x26\x30\x91\x43\x03\x78\x83\xf9\x22\xba\x2f\xc0\xdc\x13\x1a\xab\x05\x6b\x1c\xdd\x33\x8a\xa3\x0e\x94\xb7\x2c\xea\x42\x5d\x2b\x3a\x80\xaa\x56\x04\xc4\x9c\xcf\x38\x11\x84\x8e\xd3\x45\x2b\x65\x74\xdc\xd2\xfd\x6a\xc9\x09\x92\x2d\x22\x5a\x73\x9a\x92\x6b\xac\xdd\x00\x4c\x4e\x30\x6f\x15\x19\x11\x5b\xc4\xac\x93\x2d\x66\x2e\xe1\x59\xea\xff\x9e\xbc\xf8\xc9\xfa\xe5\xc7\xdf\x71\xd2\x13\x81\x11\x8f\x27\x97\x98\x4f\x23\x00\xb2\x5d\xeb\x8f\x4a\xbb\xea\x40\xc1\x78\xae\x24\x46\x80\xea\x03\x0c\xea\xdd\x19\x16\xb1\xd1\xeb\xa3\xdd\x0e\x14\x13\xc6\xa5\xbe\x8f\x37\xe7\x7b\xa8\x06\x40\xbf\xba\xba\x8f\x89\xaa\xfc\x1e\xdf\xb6\xfe\x53\x87\x10\x8e\x39\xbb\x95\x93\x28\x08\x0f\x4f\xe0\x8c\xcd\xe6\x26\x09\x6b\x04\x4e\x0e\xc3\xde\xc9\xc1\x31\x80\x1c\xd1\x6b\x1d\xde\x6e\xd2\x91\x16\x55\x97\xd0\x02\x7b\xcb\x44\xeb\x05\x1d\xe3\x54\x29\x16\xab\xe0\x1d\x9c\x9c\x1c\x1e\x84\x39\xbc\x6e\x0e\xef\x25\x4a\xc9\x88\x71\x4a\x50\x01\xf1\xe5\x84\xc4\x68\xcc\x72\x68\xed\x20\x3c\xea\x94\xc0\x75\x8f\x3b\x27\xc7\x27\xdd\x0c\xdc\x41\x0e\xee\x4d\x9a\x12\xca\x88\x28\x80\xfd\xcc\xe6\x42\xe7\x82\xcd\x50\xeb\x54\x40\x75\x4e\x7b\xa7\x9d\xc3\x0c\xd4\x61\x0e\xea\x12\xdf\x21\x07\xce\xc7\x09\x49\x51\x82\xd3\xd9\x84\x20\xa7\x9f\xdd\xa3\x12\xb4\x4e\xaf\x77\xd0\x39\xea\x65\xd0\x7a\x39\xb4\x8f\x98\x52\xb1\x48\x6f\x50\xa9\xa7\x1f\x27\x0c\x53\x72\xe7\x20\x77\x58\x01\xd7\x39\x38\x38\xca\xc9\x76\x94\x83\x7b\xc1\xc9\xef\x8c\x3a\x90\x2e\x10\x6d\xbd\xa0\x92\x51\x52\xd0\x2d\xe8\x96\xbb\xda\x39\x0c\x4f\xc3\xce\x69\x06\xed\x78\x55\x57\x15\xac\x33\x82\x9d\x11\x08\x3a\x61\xaf\x0c\xea\xa0\xd7\x3b\x39\x3d\xca\x40\x9d\xac\x1d\xcf\x33\x94\xa6\xc8\x65\x8e\x5e\x85\x68\xdd\xde\xf1\xd1\x71\x0e\xec\x74\x1d\x5e\xbf\x30\x81\x57\xa3\x75\x7a\x7a\xd2\x73\xb8\x36\x5c\x8b\xd6\x8b\xb9\x90\xc4\x61\x8c\x83\xce\x71\x79\x0e\x9c\xf4\x0e\xc3\x30\x07\xd6\x59\x85\xd6\x1b\x9a\x10\x44\xd1\x8c\xa5\xc4\xed\xe4\x71\x75\x46\x1d\x1c\x9c\x1e\xe4\xd0\x8a\x19\x60\xab\x17\xf0\x7e\x41\xf1\xb5\x60\xf4\x86\xa4\xa9\xdb\xd5\xc3\x83\x0a\xbc\x6e\xef\xa4\x80\x57\x4c\x81\xd7\x29\xe3\x24\xa9\xb0\xc6\x6b\x8e\x68\x4c\x44\xcc\x5c\x04\x2b\xdd\x3d\x38\x3e\x3c\xcc\xa7\x54\xe7\x70\xfd\x14\x65\xe9\x7c\x3a\x9c\x0b\x17\xbf\x4a\x7f\xbb\xdd\x5e\xaf\xc0\xaf\x98\x09\x1f\x26\x84\xb9\x73\x1d\xf1\x94\x49\xe9\xf4\xf4\xe0\xb4\xcc\xb6\xc7\xa7\xdd\x93\xa3\x02\xb1\x62\x12\xbc\x67\x5c\x4e\x5a\x2f\x11\x67\x29\x71\x09\xf8\x9a\x71\xd9\xfa\xbb\xfa\x58\x00\x3d\xec\xd5\x80\x1e\x77\x0b\x4e\x59\x39\x17\xce\xb0\xe4\x8c\x48\x47\x16\x75\x8f\xcb\x90\x8e\x4e\x4e\x8e\xc3\x4e\x0e\xa9\x98\x0a\xef\x48\x3c\x21\x63\x44\x0b\x60\xaf\xd2\xd6\x47\x24\xdc\x69\x75\x5a\x9e\xef\x47\xc7\x87\x87\x07\x05\xd1\x56\xce\x84\x77\x78\x3a\x9b\x38\xdc\xd6\x0e\xc2\x5e\x99\x3d\x8e\x7a\x07\x87\xbd\x9c\x79\xbb\xa1\x03\x89\x52\x2c\x84\x71\xe1\x5a\x06\xc1\x48\xca\x12\xaf\x55\x26\xe8\x51\xaf\x7b\x18\xe6\x42\xad\x5b\xcc\x84\xbf\x23\x31\x21\x74\xac\xe4\xab\x43\x31\xaa\x4f\x75\xe4\xc0\x8e\xca\x7c\x76\x74\x78\x7a\x78\x5a\x00\x73\x96\x02\x96\x32\x8e\x12\x87\x39\x1c\xf0\x05\xb8\x4a\x3f\x0f\x8f\x0e\x0f\x73\x91\xd6\x2d\xa6\xc1\x99\x0e\xe4\x8c\x65\x8b\x8d\x5a\x86\x5b\x5d\xfe\xfd\x89\x95\x17\x85\xb0\x3a\x10\x87\xbd\xd3\xa3\x5c\x22\x75\x8b\xc9\xf0\x0e\x09\x81\xe2\xc9\x5c\x60\x29\x9d\x01\x79\x8f\xc4\x44\x4f\xd8\xf6\x19\xba\x21\x89\x28\x61\x7c\xd4\x2d\xc3\x3e\x38\x3c\x3c\xca\x17\x9c\x6e\x6f\xdd\xd0\xfc\x84\x52\x49\x94\xce\xe6\x0e\x75\x05\xd5\x6e\xb7\x13\x16\xe0\x8e\x1c\x54\xf9\x22\x45\x34\x29\xa0\x7d\xb8\x4e\xd1\x84\x4d\x51\xeb\x25\x91\x0b\x67\x99\x08\x2b\x08\x76\xc2\xa3\x4e\xce\x85\xdd\x62\x6e\x64\xf5\xdd\xc5\x7f\x4e\x84\xee\xf8\xfe\x2f\x78\x34\xc2\x5c\x30\xda\xd2\x31\x64\x0e\xfc\xca\x7c\x09\x4f\x4f\x0a\x41\xd8\x2d\xe6\xcb\x7f\x60\x2a\xe7\xf1\xf5\xc2\x59\x1e\x19\x97\xba\x07\x0e\x67\x56\x61\x1d\xf6\x8a\x61\x2a\xe6\xcb\x07\x8e\xc7\x2e\x53\xbe\x45\xa2\xf5\x37\x3c\x76\x57\xa1\xee\x61\x15\xd6\xc1\xe1\xc9\x49\xae\x52\x84\x8e\xca\x73\x83\x5c\x79\xfa\x8e\xa4\xb7\x68\x7e\x8d\x9d\x09\x13\x86\x65\xae\xec\x9d\x9e\x76\x8a\x21\x3e\x70\x26\x8c\x92\xc1\x54\x10\x07\xb5\x17\xe9\x70\xfe\xaf\x39\xe6\xff\x9a\x3b\x00\xbb\x07\x65\xe4\x7a\xbd\x23\x67\xd2\x1c\x74\x4b\xfa\xd8\x3b\x7c\x47\x62\x67\xda\x5c\xce\xe3\x12\x03\x86\xc7\x15\x60\xdd\xa3\x4e\x27\xa7\xda\xc1\xc1\x6a\xad\xe2\x35\xc7\x82\xba\xf2\xea\xa4\xd2\xcf\xf0\xf4\xb4\x5b\xf4\x73\xfd\x9a\x71\x81\x62\x8e\xa6\x98\x4a\x17\xe0\x71\x99\xf5\x0e\x8f\x4f\x8f\x4e\x0a\xd4\x7a\x6b\x01\xbe\x55\x86\xc5\x4f\x18\xc5\x8e\x9c\x0f\x2b\x1c\x72\x78\x74\x7a\xd8\x2d\x46\xf5\x68\x2d\xc0\xff\x40\x54\x20\x51\x99\x1d\x61\xaf\x0a\xf1\x38\x2c\x34\xd9\x83\x63\x47\xde\x0b\xc1\xe6\x9c\xb8\x62\x5a\x20\x57\x72\x55\x00\xf5\x8e\x7b\x27\x05\xa0\x93\xd5\xc3\xf0\x37\xc2\xc7\x84\x12\x54\xeb\x6c\x65\x51\x3b\x3c\x3c\x39\x3c\xce\x85\xe1\x41\x31\x1d\x32\x00\x0e\xd7\xa9\x89\x25\x5d\x4d\xb6\x22\xa5\x0e\x0f\x8f\x4f\x0e\xf3\x65\xed\xb0\x98\x0e\x7f\xc5\x8c\x8f\x2b\xba\x80\x96\xdb\xad\x8b\x19\x27\x74\xec\x4e\xb1\x8a\x3a\x7b\x78\x70\x7a\x52\x8c\xee\x61\x67\x8d\xe8\xff\x30\x45\x13\x17\xbb\xde\x69\x05\xd2\xe1\x41\xa1\x5d\x1c\xba\xf3\x61\xc8\x91\xb8\x76\xd0\x3b\x47\x29\x26\x63\x57\x15\x38\x39\xae\xc0\xea\x1c\x1f\x16\x58\x1d\x3c\xaa\x5f\xbc\x23\x68\x4a\x5c\xcd\xa7\x82\x5b\xe7\xf8\xa8\x58\x7a\x0f\x0f\x57\x6b\x66\x1f\xd0\x75\x59\xbc\x85\x95\xd5\xed\x30\x3c\xea\x3a\xdd\x5c\x3f\x1d\xde\x11\x4a\x71\x4d\x0d\xad\x48\xb9\xc3\x30\x0c\x8f\x0b\xe4\x9c\xd5\x42\xd5\x16\x4c\x22\x57\x8e\xa4\x2e\xff\x56\x91\x3b\x38\x3d\xe9\x74\x0b\x0e\x59\xb7\x4c\xbc\x4c\xf1\x0d\x2e\x75\xb5\x1d\x74\x4e\x3a\x15\x70\x61\xa7\x58\x75\x0e\x4f\x56\x28\x8c\x7f\x57\x5a\x55\x89\x71\x4f\x8f\x2b\xa6\xe6\x51\xaf\x97\xab\x8b\x87\xc5\x24\x30\xb3\xdb\x99\x02\x3c\xad\x2b\x17\x95\x2e\x1e\x9f\xf6\x8e\xf3\x29\xda\x0b\xab\xfa\xd8\x00\x9a\x54\xdd\x38\xb9\xc8\xed\xee\xea\x66\x41\x61\xd3\x03\x08\x72\xf3\x3c\xb8\x1a\xac\xb8\x6f\x39\x28\x2a\x04\x92\xbd\x65\xb7\x98\xbf\x44\x02\x7b\xf9\xf5\x02\xa6\x50\x0e\xa8\x9a\x2c\x5c\x3a\x9e\x2f\x8a\xa6\xb8\x0c\x24\x20\x34\x4e\xe7\x09\x16\x1e\x36\x59\xe9\x05\xe3\x72\x2d\xfa\x25\x8c\x81\xeb\x85\xb0\x8f\x85\x03\x62\x65\x8f\x72\x18\xaa\xfc\x4f\xe6\x3a\x98\xc0\x05\x55\xe9\x5c\x09\xea\x73\x1c\x70\x7c\x83\xb9\x42\x3f\xc2\x5b\x5e\xad\x54\x76\x06\x91\x29\x4e\xf5\x89\x0c\xd7\x1f\xd4\xb8\xdf\xf1\xe5\x7d\x3d\x0b\x2c\x24\xe6\x09\x7a\x3c\x16\x40\xc7\x46\x36\x79\x8e\x3b\x10\x24\x26\x57\x38\x7b\x02\x9c\x6d\x29\x29\xbe\x8f\x2b\x38\xf3\x0b\xa0\x28\xba\xa9\xdc\x00\x55\xe0\x07\x06\xee\xe5\x68\x15\xd4\xa3\xdd\x10\x4a\x24\xae\x4d\xe0\xf2\x0c\xc9\x89\xf9\xb5\xfa\x6a\x4e\x0f\x98\x34\xd9\xcd\xec\xad\xbe\xe9\x7d\x0c\xe9\x81\x7d\x7d\xbf\x86\xde\x07\xb1\x17\x58\x89\x57\xd3\x99\x5c\xe4\xb7\x6e\x54\x37\xd5\xf4\x1e\xd1\x0e\x19\x79\xf4\xc7\x30\xbb\x26\x04\x5f\xd1\x76\x67\xb0\x83\xfa\x45\xda\x75\xd3\x0a\xd4\xf0\x8b\xc0\x12\x9c\x0a\xdc\x42\x7d\x59\xdc\x3c\x32\x9b\x8b\x89\x67\x0e\x08\x49\xd3\x35\xa4\x48\xbc\x84\x57\x03\xe7\x7e\x12\xb3\xd3\xb2\xb7\xe7\xe1\x2b\xec\xec\x41\x11\xf1\x16\x09\xd9\xdf\x0d\x55\x8d\x2d\x77\x1c\x45\x3b\x21\x1c\xc7\x92\xf1\x45\x1b\x53\xc9\x17\xdf\x01\x87\x00\x4d\x81\x4b\xf6\x4a\xe1\xb3\x62\x48\x81\x46\x36\x30\x09\x61\x9a\xc7\x57\x5f\x58\x3d\x33\x77\x8e\x70\x3c\x4b\x51\x8c\xbd\xfd\xff\xfb\x8f\xfd\x7d\x08\x80\x0f\x65\x1f\xd3\x98\x25\xf8\xd7\xf3\x37\x39\x2a\xce\x85\xf9\x0e\x78\x3f\x1f\x81\x12\x6b\x78\xd8\x7f\x2e\xa3\x62\xa8\x71\x75\x94\xb7\x1b\x09\x73\xe0\xa8\x3d\xb1\xf9\x0c\xbe\xd5\x20\x38\xd3\xaf\x8c\x91\x9a\x7d\x8c\xfe\x8c\xa6\xc3\x39\x1f\x63\x5e\xbf\x86\x6d\xbb\xde\xce\xa5\xc4\xbc\x3d\xc5\x74\xfe\xed\xfa\x6a\x22\x76\x56\xdd\x58\xc7\xd9\xbc\x08\x89\xaa\x7d\x35\xeb\x6f\x7e\x3a\xac\x2e\x79\x0c\x70\xbd\x94\x9b\x12\xf6\x92\x17\x5a\xe5\x58\x2b\xe4\x9d\x1b\xf3\xab\x35\xf5\x2e\xa3\x89\x76\xf3\x1f\x1e\xae\x06\xbe\x5e\x69\xbd\xa6\xbd\x60\x6c\x40\xe8\x46\x7c\x88\xb2\x6b\xdb\xcd\xb3\x65\xe3\xfc\x20\x5b\xbf\xdf\xa7\xcf\xdb\x9d\xc8\x7d\x81\x9e\x77\x22\xfa\x17\xa4\x5e\xd3\x1f\xd5\x43\xa8\xd5\x8d\xb5\x23\x0f\xc7\x4c\xb2\x5f\xd8\x50\xbc\x66\xbc\x38\x2f\xe7\x8e\x24\xde\xdb\xb3\x98\x91\x04\xf8\xf6\xce\x3a\x43\x60\x27\xe3\xff\x25\xd3\x77\x5c\x0a\x00\xef\x95\x65\xbd\xd0\x41\x59\x22\xba\xcf\x29\x11\x39\x40\x96\x4b\x7f\x3b\x96\x53\x7c\xdc\x6e\xbc\x69\x36\x2f\x2d\xb3\x93\x58\xba\xf0\xd7\x3f\x24\x52\x08\xc0\x29\x4b\x70\xba\xe2\x8e\x6a\xdd\x11\xbd\xcf\xe5\x43\x73\xf9\xe8\x13\x93\xed\x6b\x40\x06\x42\xe3\x35\x6a\x29\xd1\x93\x7f\x55\x95\x3f\xe0\xdd\xb2\xfa\xb8\x5e\x7b\x44\xca\x7b\x8b\xdf\x68\x99\xd3\xbb\xcf\xb8\xa4\x0b\x01\x17\x41\x47\x14\x3b\xaf\x75\xcc\x3b\xb7\x07\xbf\x50\x76\x86\x50\x90\xdf\xed\x29\x4b\x7d\x3f\x46\x14\x42\x73\xb3\x45\x14\x2a\x53\x07\xeb\x06\x6b\x12\x8a\xc7\xd5\xfb\x61\x8d\x1a\xcf\x63\xbf\xa4\xd6\xf3\xb8\x30\x3f\xd4\x1a\xf7\x3c\x7f\x3d\x45\x32\x9e\x78\xfb\xff\x37\xf8\xf3\x3f\xf6\xbd\xe0\xcf\xfe\xff\xdc\xf7\xaf\x3a\x83\x28\xfb\xbe\xf4\xed\xdd\x57\x6f\x14\xfe\xfa\xd0\x59\xfd\x0e\x1c\x6c\xef\x99\x69\xbc\x55\xcc\xf4\x46\x59\x44\x72\xce\x51\xfa\x77\xf5\x98\x75\x2d\x7f\xfb\xb3\x7e\xde\x56\x1e\x90\x9b\x45\x5b\x29\x00\x53\xc2\x39\xab\xdc\x23\x58\xfe\xb6\xa6\xd6\x1f\x70\x0e\xfc\xc6\x86\xed\x04\xcf\x52\xb6\xa8\xde\x44\xfe\x75\xe7\x41\xc9\x04\xa8\x22\x05\xca\x77\x7f\x0c\x60\xf1\x31\xbb\x5e\xf0\xc3\x0c\xd3\x68\xb7\xb3\xd5\x98\x97\x9b\xd9\x2f\x7e\xb6\x6d\x58\xd1\x77\x20\x16\xb6\x3b\x02\x51\xee\x91\x68\x38\xab\xf3\xcd\x2c\xe5\xbc\x47\x2c\xad\x18\x7c\xb9\x41\xef\x8e\xeb\x66\x01\xc9\x56\xf1\x3a\x5b\x5d\x0d\x38\x20\xad\xce\x75\x63\x8e\xa9\x16\x67\x54\x57\x46\x79\xba\x75\xad\xd3\x03\xd4\x6b\xfb\x85\x67\x63\xe9\x43\x64\x92\x37\xad\x47\xaa\x86\x76\x19\xb5\x95\x2e\x98\x6a\xb5\x15\x97\x55\xd2\xe2\xb2\xca\xfb\xa5\x32\x4b\x43\xa5\xcb\xf9\xda\x87\x73\x7b\x86\x24\xee\xef\x86\xc5\x0d\xc2\xac\x8f\x03\x13\xa7\xf3\x42\x7a\xa8\xdd\xf1\x8d\x5a\x65\x71\x09\x84\xd3\x53\x98\xf6\xa9\x55\x4b\x9d\xb7\x3b\xe9\xde\x1e\xdb\xdb\x2b\x7b\x26\x98\x1f\xe8\xe8\xcf\x0f\x23\x0f\x24\x68\x01\xfc\x20\x21\xa3\x91\x57\x2e\x94\x56\x0b\xa9\x65\x6e\x21\x80\xff\x63\xb8\xb7\xe7\x95\xf0\xf5\x97\xf6\xe4\x86\x3b\xf7\xe1\x54\xad\x22\x62\xb9\xdc\xd6\x0f\xa2\x27\x0a\x19\x8d\xda\x23\x9d\x74\xab\x8d\x68\xd2\x36\x34\xf8\x83\x4e\x7a\x32\x1a\x7d\x4f\xc2\x5b\xa1\xb3\xea\x12\x59\x93\x22\x2c\x22\xa2\x8d\x6d\xce\x4e\x40\x84\xce\x29\xa6\xde\x21\x93\x5c\x0c\x10\x61\x73\x3c\xab\x97\x89\x4d\xf7\x3c\x80\x0a\xb2\x91\xf9\x37\x98\x0f\x99\xd0\xab\x60\x0e\xb3\x3c\xcf\x02\xfc\xaf\x39\x4a\x3d\xa0\xea\x04\x26\x2f\x69\x96\x9f\xcc\x87\x59\x93\x8f\x57\x31\xe9\xce\x54\x8d\x0c\xa3\xc7\xeb\x64\xf9\xa9\xb7\xb3\xfa\x15\xe9\x14\x4d\xaa\x0a\x48\xfd\xd6\xeb\x5a\x00\x9c\x3d\x36\xd7\x1e\x71\x36\x6d\xa3\x04\xcd\x94\x41\x8d\x8d\x2e\xb3\xe6\xe6\xe2\x94\xc5\x28\x6d\x0b\xc9\x38\x1a\xe3\x6f\x71\x63\xfc\xfa\x7b\xe2\x4d\x54\xe6\xaa\xaf\x8e\x4a\xec\x50\x4e\x31\xc4\x6f\x59\xd6\x83\x4c\x50\x57\xae\x88\x57\x76\xdf\x5d\xcd\x4d\x7e\xbf\x42\x9b\xd2\xd7\xa3\xda\x3a\x4b\x28\xdc\x42\xee\x25\x81\x45\x2c\x7b\x56\x18\x40\xe9\x43\xa5\x84\xc1\xec\x4d\xe6\xad\xe4\xc2\x1e\x07\x35\xcf\x29\xa2\xce\x23\x9f\xd3\xca\x47\x7b\xa0\xd5\x28\xf7\x13\x76\xfb\x31\x45\xf4\x9d\x19\xf1\xc8\x0b\x21\x72\x6e\x50\xd6\x63\x6d\xbf\xfd\xc2\x86\xaa\xa4\xb9\x33\x54\xd5\x7b\xa5\x49\xb4\x59\xcd\x57\x96\x11\x75\xdd\xc6\xc3\x21\x05\x66\x2b\x57\xd0\xa2\xc8\x73\x5d\x1c\x44\xc0\x0e\xd3\xd2\xd7\x3d\xdb\xfa\x1a\x74\x2d\x89\x20\x82\xf9\xda\xf7\x25\x2e\x44\xe7\x58\x8d\xa3\xe2\x65\x5d\xb2\x93\x5d\x85\x7e\x68\xee\xf3\xfb\x8d\x0d\x03\x3d\x86\x5e\x7e\xd5\xb9\x2d\xd0\xe9\xee\x0c\x39\x46\xd7\xe6\xf5\x51\x71\xef\xb9\x86\x73\x04\x71\x20\xc3\x3e\x0e\x62\x6d\x29\x75\x7c\x28\xfb\xe5\x88\x72\xf5\xdd\x7f\x78\x00\x2f\xf5\x29\x5d\xca\x64\x4b\xb7\xd3\x22\x54\x53\xb9\x60\xb1\x82\x85\x0c\x93\xe9\x0f\x31\x67\x69\x7a\xc9\xf4\x6b\x8d\x3d\x1a\xf2\xf9\x4c\x7a\xc0\xba\x7a\x2c\xb6\x9d\x6e\x05\xaf\x4e\x37\xeb\x60\xa7\xe7\xf4\x30\x45\x34\xeb\x60\xa7\x17\xa1\x3e\x0e\x04\xa6\xd2\x45\xc2\x61\x00\x94\xdf\x17\xdf\x3d\x74\x69\xd0\x39\x8d\xb2\x56\x4e\x55\xf7\x3b\x45\xf7\xbb\x3e\x14\xf5\xfe\x77\x2a\xfd\x4f\x11\x6d\xfd\xc6\x86\xa0\xd2\xae\xed\xbb\x68\xee\xbb\x69\xbb\xbb\xc9\x15\xf4\xf0\xea\xaa\x03\x8f\x06\xf0\xaa\xd3\x85\x9d\xd3\xc1\x40\x5f\x49\x9f\x70\x55\x06\x1a\x2d\xe7\xfb\xe1\x51\x32\xca\x3e\x84\x10\x50\x7c\x0b\x76\xfb\xf6\x2a\x67\x23\x5e\xfc\x7b\x3b\x06\x47\x66\x08\x96\x79\xa7\xab\xec\xcb\xe7\xb4\xc6\xbc\x27\x2b\x78\xd7\x7c\x2c\xea\x1a\x2b\x3e\xab\x7e\x12\x49\xc7\xc3\x6e\x19\x87\xd0\x37\x89\x71\x39\x96\xbe\xe4\xbe\x3b\xe3\xf8\x54\x23\x9d\x5b\xb6\xa5\x89\xa7\x1f\x32\xe1\xad\x2f\x5f\xcf\xb9\x2b\x2c\x71\xd7\x61\xce\x5d\x87\xe5\xc9\x15\x36\x32\x57\x65\x72\x99\xf1\xad\xb2\x57\x26\x7f\x1d\xee\xaa\x72\xbb\xbd\x4d\x7c\x35\xe7\x85\x9b\x71\x5e\x08\x3b\x87\x86\xe5\xa0\xee\x7a\xed\xf2\xf0\xb5\x2d\x57\xe6\x42\xed\x93\x23\x23\xaa\xdf\x8a\x3e\xea\x2f\x4b\x58\xea\x46\x0d\x0d\x3d\x82\x66\x35\x0e\x88\xb8\xc4\x42\xaa\xc1\x33\xf7\xa1\xe6\x14\xf0\x42\x18\x56\xdc\x2e\x62\x03\x8d\x67\x86\xc6\x78\x1f\x0d\x85\xde\x0e\xfd\x5e\xfd\xff\xb9\x46\x51\x8a\xe0\xcf\xdf\x38\xf1\xfb\xfa\xdd\x98\x49\x96\x27\x68\x6b\x74\x8f\x97\x5f\x6a\x4d\x2d\x5b\x97\x8d\x33\x4f\x7f\x14\x91\x39\x2e\xf5\xca\xfd\xde\xc8\x23\x2e\x84\x7c\x50\x27\xfa\x92\xda\xca\x90\xe2\xd5\xd5\xb0\xbf\xe5\x31\x8d\x7c\xfc\xec\x21\xee\x46\x47\xfa\xda\xf1\xfe\x52\x7e\x88\xe2\xc4\x90\x1d\xe0\x6d\xcd\x43\x8d\x66\xe9\x7c\x78\x3b\x9e\x90\x34\xd9\xa2\x93\xd9\xf9\x73\x5b\xf1\xab\x75\xf5\x7e\x66\xd3\x7b\x55\x0c\x15\x94\x12\x24\x8c\x24\x4e\x70\xcc\x12\x9c\xd8\x3c\x60\xc0\x87\xb6\xca\x2f\x17\x1f\xde\x37\x6c\xb2\x9a\x52\x35\xb7\xc4\x8e\xe4\x8b\x7b\xdc\x57\x95\xac\x42\x64\xf7\xd2\x75\x79\x7f\x69\x44\xb1\xf4\xef\xf3\x85\xa8\x6e\xa7\xaf\xbd\x26\xb2\x79\x20\xfe\x2d\xf9\x4c\x8a\x7d\xcd\x26\x1c\xaf\xba\xdf\x79\x4a\xee\x08\x15\xfb\x4a\xde\xe8\x03\x51\x5f\xd9\x85\x57\x9c\x45\xba\xcf\xa5\x61\x39\x72\xa3\xe2\xa5\xdd\x4c\x54\xba\x07\xa4\x72\xd9\x59\x13\x90\x8a\x4a\x17\xe4\x77\x9d\x53\x58\x16\x99\x2f\xab\x9c\xaa\x58\xbb\xf8\x5c\x8d\xcf\xaa\x9c\xe0\xae\x16\x07\x7a\x3f\x75\xe9\xc3\x6c\x1c\x1a\xc1\x67\x1f\x37\x02\x9e\x8f\x68\x06\x3a\x25\x42\x5e\xb2\x0b\xc6\xab\xd6\x67\x36\x39\x8b\x1a\xd6\xb9\xf9\xb2\x19\x99\xac\xbc\x02\x78\xa1\x0b\x82\xed\x5d\x60\x0e\xef\xe1\xea\xbe\xc7\x37\x0b\xf7\xa8\xaf\x85\x8c\x9e\x11\x31\x25\x42\x3c\x3d\xc4\xa0\xd2\x5b\x93\x90\x73\xc5\xce\xc7\xa7\x3a\x5c\xbe\xfe\xa1\xfb\x7c\x3e\x3a\x64\x6c\x5c\xfb\xd5\x54\x22\xe2\x62\xc2\x6e\x09\x1d\x17\x8e\xe4\x2c\x47\xc2\x6e\x07\xce\x38\x9b\x32\x89\x9f\x66\xf3\x7c\x21\x9b\x3c\xb7\x79\xac\x0d\x70\x00\xcb\xb3\xcc\x8c\x66\xd1\x9d\x20\xdb\xd8\xf7\x03\xdb\x9d\x4c\x2f\x3f\xc8\x0d\xf5\x92\x19\xd1\xcb\xac\x88\x5e\xcd\x88\xf0\x1a\x4d\x74\x7f\x6f\x0f\xbc\x66\x7c\x48\x92\x04\x53\x6d\x85\x3d\x3c\x78\xb2\x0f\xfe\x93\xcd\x79\xeb\xc5\xcb\xb7\x2d\xc9\xae\x31\x6d\x25\x0c\x9b\xac\x5a\xe6\x92\xe9\x19\xe6\x8a\x8b\x15\xc9\x24\x6b\x59\xd4\x5a\xee\x2e\x03\xb0\x3a\xba\x33\x78\xde\xbd\xbd\xb9\xdd\x98\x2d\xef\x99\x6c\x7d\xb4\x35\xcf\x1c\xf6\x4d\x9c\xac\x9c\x72\x99\x99\xed\x1b\x9b\x21\x3d\x63\x85\x6c\x75\x8c\xba\x32\xa7\x74\x4c\x95\xde\x3e\x1b\x21\x92\xce\x39\xfe\x86\xae\xf4\x86\x09\xf1\x29\xe2\x82\xe3\x58\xf5\x0b\xa5\x29\x8b\xcd\xc5\x1c\x6b\x4f\x23\xc7\x26\x6d\xfe\xbe\x1a\x61\x22\x70\x5b\x9f\xd0\xfe\xea\x3b\x6e\x6b\xd7\xe6\xc7\xe3\x99\x8a\x63\xca\xd3\x22\x1d\x6b\xfd\xb4\x72\x68\x97\xa9\x17\x05\x6d\x1a\x97\x4d\x87\x76\x76\xb3\xab\x04\xb6\xbe\x90\x52\x7c\x5b\x6c\x64\x7b\xf7\x96\x96\x51\x79\xe6\xbb\x23\xe2\x07\x72\x82\x69\x43\xaa\x75\xc5\xf2\x76\xf7\xce\x6d\xd3\xd9\xb7\x0b\x84\xcd\x5f\xd1\xf3\xcd\x56\x52\x61\x7e\x29\x6d\xa4\xe8\x5b\xdd\x8a\x6a\x8c\x5b\x72\x3b\x5b\xfc\x06\x10\x07\x24\xa9\x9a\x58\x5b\xae\xd3\x62\x3e\x9d\xa2\x6f\x19\x98\xb9\x99\xee\x47\xc4\xab\xbb\x19\xa2\xf5\x1d\x96\x7a\x96\x0d\xeb\x45\xd0\x5b\x11\x17\x66\x27\x22\xd0\x84\x30\x10\x7e\x61\xc3\x0b\xd3\xe7\x6c\x75\x51\xad\xf7\xfb\xf8\xe1\xc1\xb1\x3b\xb0\x4d\x64\x24\x88\xa8\xba\xe7\x37\x86\xdf\xb7\xbe\x4d\xca\x24\x19\x2d\x32\xd2\xbd\x9c\x20\x3a\xc6\x1e\x28\x7a\x54\x4d\x37\xb1\xa5\x30\x51\x8b\x6a\x7b\x6c\x34\xce\xff\x4a\x8a\xfe\x1a\x9f\xc8\x17\xd7\xe8\x1f\x55\xbb\xdd\x3a\x56\xa2\x5d\xae\x42\xea\x73\xab\xde\x7a\x7d\xff\x63\x2b\xa0\x8e\xde\x59\x2c\xbd\x5a\x6d\x31\x17\x2e\xac\xd2\x45\x95\x2a\xa2\x6c\xbd\xef\x52\xdb\xb4\x7e\xed\xdf\xd8\xd0\xd9\xff\xb1\xda\x53\xe6\x3a\xcf\x9d\xe2\xda\x9b\x26\xec\xe5\xaa\x26\xe9\x5e\xee\xb3\x2e\x2b\x9b\xc7\x99\xb2\x79\x5c\x53\x36\x37\xd0\xfd\x2e\x24\x9b\xb5\x7e\x61\xc3\xb2\xc6\xb7\x95\xe2\xa9\x7a\xd0\xfa\x8d\x0d\x45\x00\xb6\x57\x14\x8f\xad\xbb\x5a\xc7\x6d\x3c\x79\xe8\xbe\xe4\x06\x5e\x6d\xd4\x0e\xa0\x0c\x46\x58\xc6\x93\x73\x74\x7b\xa6\x66\x00\x31\xfc\x97\x99\x04\xb6\xa2\x09\x32\xf0\xb2\x7d\x2e\x3f\x50\xa4\x56\x03\xae\xb7\x74\x29\x76\xea\x02\xa8\x97\x1e\xa1\x6f\x1d\x21\xa3\x85\x87\xfc\x7c\xb3\xf0\x28\x6b\xf6\x14\xca\xf2\x2e\xe1\x69\x65\x4b\xa5\xd3\x81\xb2\xb2\x99\xd2\xe9\x44\xb2\xc2\x4a\x59\x7e\xc7\x82\x9b\x4e\x37\xdb\x01\x39\xf2\xa1\xd7\xb8\x05\x52\x33\x5e\xc4\xc3\x83\x27\xb6\x33\x5e\x1c\x1e\xda\x90\x6d\x11\x97\x75\xbe\x15\x39\x03\x9e\x6e\xc6\x80\x47\xf9\x86\xc9\x13\x4d\x95\xb2\x4b\xf6\x7b\x76\x24\xde\xaf\x3b\xca\xa4\x44\x8e\x0e\x85\x87\x24\x59\x02\x08\xec\x96\xb4\x92\xc9\xce\xeb\xe6\x30\x32\x35\x35\x6a\x7b\x76\xba\x6e\x7e\x2a\x20\xbf\xf8\xea\x17\x1d\x81\x8f\xf8\xd8\x86\xf6\x08\x30\xc8\xef\xac\x92\xe5\xe3\x05\x45\x99\xc0\x6c\xa8\x15\x25\x6d\xa4\xbe\xe4\x64\x3a\x35\xe7\x24\x9a\x2a\xe0\x41\xed\x6e\xab\xcd\x57\xd2\x3c\xd5\xeb\xf7\x3c\xa2\x6b\x83\x5d\xd6\xec\x01\x8d\x18\x8f\xf1\x5b\x34\xa7\xf1\x64\x5d\x22\x45\x35\x90\xba\x68\x96\xe7\xd6\xf3\xad\x2c\x28\xa5\x2b\x6d\xd8\xf8\xa9\x4f\xd8\xd7\x0a\x4e\xcb\xb4\xf9\x29\x6b\x4d\xbe\xc3\xaa\x57\x9b\xa5\xbf\x84\x9f\xb0\xa1\xf5\x44\xcb\x29\xcf\x22\xfc\x1d\xf3\xc6\xd3\x3a\x66\xb3\x0c\xff\x1b\xf5\x8b\xb3\xdb\x15\xfd\x99\xe0\x54\x19\x78\xfb\x29\xfa\x7d\xd1\x8e\x53\x12\x5f\x7f\xfd\xd4\x6e\xeb\xe6\x6f\xae\x03\x4b\x5e\x89\x70\xce\xfb\x05\x88\x68\x13\x2a\xb1\x1a\x02\x72\xa3\x0c\x3b\x27\x52\xad\xe1\x28\x55\x5c\x7e\x85\xfd\x7b\x73\xc5\x0a\xfa\x7d\xa1\x4b\xfb\xde\x95\x8d\x94\xd0\x8f\x10\x0f\xb6\xbc\xdd\x41\x61\x96\x07\x1d\x7f\x69\x8f\xc2\x55\x76\x73\x6c\x1e\x1e\x99\xc7\x63\x0e\xe0\x86\x7e\xac\x12\xc2\x35\x43\xd4\x7e\xa9\x1c\x0a\x70\x43\x45\x63\x6d\xcd\x9b\x0b\xd2\xaa\x6b\x6a\x16\xf1\x6c\x82\x69\xd7\x1c\x23\x2d\x15\xd4\x87\x47\x83\xc2\x58\x54\x16\x67\x1e\x97\xfd\x9c\x79\xd8\x7f\x26\xb3\x73\xc3\x29\x0c\xfd\x67\x9e\x0c\xa6\x68\xf6\xd3\xc2\x03\xfa\x0a\x32\x60\x4f\xf1\xd9\x22\x08\x3a\x0f\xaa\x7c\x14\xba\xee\x28\xc9\xc6\xe3\x14\x9f\x91\xd1\xa8\x26\x35\xcd\xa7\x22\x05\xb5\xe9\x3f\xa8\x49\x4d\x6b\xca\x35\xc6\x30\x62\xe7\xc4\x2a\x14\x6e\x19\xea\x9c\x2e\xc9\xcf\xff\x50\x1d\xef\xea\x3f\xc7\xcf\x3a\x11\x5e\xee\xe4\x7a\x3e\x73\x32\xa6\xe2\xc0\x5c\x6c\x5c\xea\xa5\xd0\x84\xc0\x81\xbd\x99\xb8\xf4\x4d\x75\x7a\x99\x83\x4a\xcb\x31\x96\xcf\xf1\x33\xe6\x49\x5f\x5f\x9c\xb8\x29\x67\xff\xf1\xce\x41\x64\x88\x6f\x76\x08\xc2\x61\xef\xfc\xf4\xc1\xdf\x56\x40\xc8\x78\xb7\xe6\x49\x71\x78\x3c\x2f\x92\x79\x4d\x45\xe3\x61\x87\x2f\x73\xf8\x00\xa6\xfd\xca\x41\x82\xfa\x81\x83\xda\xa9\x01\x5e\xa9\xd3\x70\x48\xa1\x5a\x67\x27\x35\x07\x12\xf8\x06\x47\x0e\x72\xb1\xf2\xf4\xf3\x06\xdf\xc3\x4d\x9d\x65\x41\xea\x60\x34\xd0\x77\x5f\x1a\xa9\xa9\xaf\xf3\x94\xf5\x6c\xed\xbf\x89\xca\xb9\x14\x3b\xfa\x15\x43\xd8\xe8\xa1\x82\x51\xad\xb1\xc1\xee\xb6\x07\xdf\xd7\xdc\xd8\x96\xdf\x58\x60\x1f\x63\x64\xce\x45\x1e\xb4\xd1\x1d\xb1\x65\xcc\x4e\x8b\xf9\x3e\x41\x33\xfb\x3d\xcf\x8a\x5e\x4b\x93\x5e\x75\xb9\x1a\x5f\x71\x9b\x63\x41\x7e\x37\x49\x67\xd7\x04\xcf\xeb\x94\x24\x6d\xd3\xf7\x86\xd8\x79\x28\x20\x83\x29\xe4\x90\xc0\xb9\x7f\x9f\x0b\xb4\xc4\xd9\x98\x98\x79\xd8\x7f\x78\x70\x79\x80\x8c\xbc\x8b\xc5\x74\xc8\xd2\x80\x48\xe3\x13\x69\x11\xda\xb2\x49\xb9\x55\x61\x70\x65\xa6\x4b\xeb\x45\x96\xbe\x7b\x00\xfa\xfd\xbe\xe5\x9d\x19\x67\x92\xc9\xc5\x0c\x07\x92\x99\x3b\x51\x83\x18\xa5\xa9\x87\x7d\xdf\xbd\x27\x25\x18\x71\x36\xf5\xb0\xbf\xd4\x20\xa7\x9e\x23\x6f\xe3\x92\xbc\xad\x22\x58\x9c\x2d\xbf\x1a\x40\xd4\xdf\x0d\xa1\xe8\xef\x76\x20\xcb\x18\x50\xf2\x85\xf6\xd5\xa8\x32\x29\xe4\x7d\x7c\x55\xe9\xcd\xc0\xf3\x7f\xd8\xf5\x50\xdf\x4b\xfb\x5c\xbb\x33\x3c\xdf\x0f\x12\x46\xb1\xbf\xb7\xe7\x51\x93\xf9\x22\x35\x79\xd4\x7d\xb8\x2b\x1f\x1e\xa8\x4d\x6d\xb1\xdb\xef\x4b\xff\x07\xd5\xa4\xff\x83\x8d\x2b\x22\xfe\xbd\x50\x28\xb0\x3e\x59\x8e\x08\x45\x69\xba\xb8\x57\x08\xa0\x87\x07\xb3\x45\xc0\x03\xd3\x8d\x87\x87\xec\x97\xea\xa9\x2d\x49\x46\x9e\xf0\xe5\x84\xb3\xdb\x16\x5b\x66\xf1\x49\x74\xa9\xfb\x58\xa1\xc9\x54\x2f\xb1\xaa\x24\xc5\xb7\x2d\xb5\xe4\x19\x37\x07\x78\x43\x6f\x50\x4a\x92\x16\x32\xd7\x8f\x2a\x83\x27\xc1\x42\xf2\x79\x2c\xe7\x1c\xb7\x28\xa3\x6d\xdd\xf1\x61\x8a\x5b\x84\x0a\x89\x68\x8c\x81\x03\x78\x66\x87\xdc\x0c\x0a\x11\xe6\x58\x7f\x31\x58\x78\xf9\x79\x64\xc2\xa8\xef\xb8\xe0\x9c\xd5\x34\x47\x8a\x8d\x0c\x63\x3c\xd7\xba\x89\x87\x7d\xf7\x0a\x6a\xa5\x0b\x0c\x57\x49\x15\x52\x6c\x16\x94\xe4\x8b\x9d\xc3\xc0\x99\xd0\x03\x98\xa0\xec\xa6\xc9\x3b\xd5\x17\xf3\x73\x51\xfc\xd4\x29\xc2\xf5\xf5\x06\x4a\x6d\xd3\xb5\xf4\x15\xe4\x91\x52\x9c\x67\x9c\x98\x9d\x2f\x6b\xab\xbe\x25\x14\xb7\x5e\x9a\x66\x5c\xfb\xb4\xf9\xe0\x33\x11\x2f\xb4\xce\xad\x00\x8f\x48\x9a\xbe\x79\xfc\x66\x3d\x07\xf7\xb6\xaa\x52\x5c\x07\x64\x6a\x8e\xe7\x24\x79\xcd\xb8\x96\x79\xfa\x22\x8d\x29\x12\xd7\x5b\xc2\x55\x55\x1e\x85\x6b\xac\x05\x73\xc7\x7c\xee\x18\xb0\x2f\xcc\x5d\xac\x55\x69\xed\x14\x58\xb5\xca\x3b\x45\xd4\x2a\x5d\x9c\xc0\x36\x26\x85\x1e\xa0\x41\x29\xa3\xd3\x9d\xcd\xbb\x9e\xa7\xec\x37\x43\xe5\x9b\xdb\x91\x5c\xa4\xcc\xf5\x04\x9f\x1f\xa9\x45\x1d\xa9\x85\x45\x2a\xc3\xe2\xae\x9a\x43\xde\xd9\x06\x7e\xce\x83\xc6\x34\xf2\x43\xe0\x47\x69\xfe\x69\x64\x5f\x43\xe0\x2f\xe1\x62\x65\x4a\xfa\x86\x0a\x41\xf7\xff\x71\x55\x49\x32\x96\x4a\x32\xfb\xc8\xcc\x8e\xb0\xe5\x6d\xf3\xf2\x42\x2d\x1a\x91\x17\xc2\xb9\x73\xf4\xa6\x52\x01\xf8\xf0\xee\x42\x2d\x6f\xf5\xd3\xac\x48\x22\x93\xc3\x4b\x8f\x0f\x80\xa0\x18\x07\x00\xc1\xe2\xc5\x1d\x11\x1f\x46\x23\x81\xe5\x2a\x0a\xeb\x7a\x99\xfb\xaf\xa8\xfc\x3c\x77\x12\x07\x7a\x61\x55\x4a\x93\xe7\x47\x95\xb7\x6a\xca\x21\xee\xe5\x81\xfd\x1a\x1d\x7b\x13\x86\x28\x5b\xfe\x96\x4d\x54\x09\xd8\x94\xd6\xec\x0a\x0f\x96\x7e\x74\x15\xc2\x4e\x31\x9e\x01\x57\xc6\xd9\xb9\x16\x3a\x57\x9d\xd0\xf8\x95\x9d\x3e\x0d\xd4\x52\x31\x45\x84\x7a\xc8\x87\x4a\x93\xb8\x3b\x57\x15\xd6\x51\xe9\x75\xb6\xd2\x37\xd1\x6b\x2b\x0a\x41\x5a\xf4\x19\xa2\x7e\xad\xbb\x74\x75\x37\x21\xeb\x97\x27\x50\xae\x3b\x23\x2d\x6e\x99\x9a\xe4\x8b\xc7\xfa\xb2\xc8\xfb\xb2\x30\x7d\x69\x46\x7f\x61\xd1\x7f\xca\x78\x64\x7d\xcc\x27\x55\x31\x34\x0a\x4f\xaa\xf1\x7c\x8c\x33\x2d\x76\xe0\xee\x71\x66\xac\xe3\x3a\x45\x77\x9b\x20\xfa\xf0\xd0\xc9\x51\xfb\xb1\xb3\xb7\xe7\xc9\xfe\xc8\x93\xbe\x0f\x57\x30\x6c\x89\xb3\xcc\x58\x14\xd8\xc1\x4e\x58\x70\xd6\x55\x08\xe5\x40\xf5\x53\x17\xa8\x75\xd3\xcc\xcb\x95\xac\xb3\x42\x42\x16\xc3\x9d\x61\xa7\x54\xd6\x9f\x98\x94\x6c\xea\xf9\x06\x55\x53\xc9\xc0\xf7\x03\x49\xe2\x6b\xe1\xf5\xcc\x0f\x0b\x55\xc7\x38\x2c\xcc\xdd\x3a\x35\xbc\x36\x98\xf9\x4e\x8f\x65\xbf\x6b\x6e\x9e\x89\x31\x49\x3d\xbc\xdf\xe9\x86\xfe\xb3\x4e\x3e\xfc\x1a\x89\x8c\x22\x6a\xb6\x97\x35\xc0\x4c\xc3\xa3\x7d\xa5\x2d\x76\x55\x01\x7a\x15\x0e\xa0\xe8\x7b\xf4\xaa\x33\x68\x23\x7f\xdf\x93\xca\x96\x63\x4a\x4d\x4c\xfb\xe1\x0f\xe9\x5f\xe4\x0f\xe9\xb3\x67\x3e\x33\x1a\x1e\x7a\x26\xfe\x9c\xe6\x54\x61\x4b\x8f\xc2\x62\x4e\x68\x10\x0a\xde\x8f\x9d\xe7\x23\x0f\xf9\x3a\xf9\xd9\xa2\x71\x34\x16\x6b\x47\xa3\xc6\xc5\x65\xf2\x9f\x2b\xcd\xa0\x4c\xfd\x85\x43\x7d\xbd\x86\x09\xfb\x5e\x13\xbd\x61\x30\xfe\xca\x89\xbe\x9c\x7b\x0b\xd4\x92\x32\x48\x13\x79\xd4\xf9\x24\x1c\xed\xd3\x05\xf9\x1d\x7b\xed\xaa\xd0\x2c\x61\x0d\x40\xce\xda\x26\x4f\xca\x1a\x65\x85\x8c\xbc\x5d\x0d\x0c\xa7\x3a\xac\x2f\x53\x4a\x3b\x3b\x0e\x8d\xed\xb7\x40\xa7\x68\xba\xd0\x16\x9a\x52\x8c\x83\x3b\x63\x94\x15\x4e\x02\x9b\xf3\xe9\xa7\x9f\xd8\x9d\xe7\x07\x13\x9b\xa4\xc5\x8c\xab\x4e\xe4\xf2\xa5\x30\x59\xac\xc7\x44\x2b\x8a\x19\x4d\x0c\xc5\x6a\x63\x69\xb0\xcd\x44\xda\xcf\xf6\x69\x45\x18\x8a\x29\xdc\x2e\xa6\xdc\xcf\xa5\xbe\xae\x68\x42\xa3\x91\xad\xe0\x7f\x37\x0f\x2b\x1a\xd0\x45\x9d\x61\xfe\xbb\xed\x81\xbe\x24\x7e\xcd\x52\x68\x19\xf2\x91\x49\x63\x8a\x65\xcb\x9f\x29\x9b\xc9\x05\xb3\x32\x22\x47\x76\xe7\x53\x38\xe7\x5a\x85\x85\xe7\x5b\x83\x25\x69\x8a\xc6\x53\xda\xd0\x6e\x1f\x5f\xa1\xc1\xd2\x0f\xee\x9a\x72\x9e\x62\x4f\x5e\x51\x25\x84\x83\x45\x13\x00\xe9\xa9\xca\xfe\xd2\x2f\x56\x0a\xad\x25\x73\x5c\xbb\x36\xfa\xeb\xf7\x5f\x61\xf1\x19\xfb\x1f\x7a\xd2\x0b\x7d\x3f\x58\x74\xb6\xa0\x44\x42\x92\x37\x54\x60\x2e\x5f\x99\x39\xb1\x6e\xcf\xd0\xc4\x1f\x9c\x91\x29\xa6\xda\xe9\xe7\xf9\xb5\x9d\x1c\xe3\x78\xf1\xd6\xce\xb2\x18\xd1\x1b\x24\x80\x9f\xab\x86\x06\xee\x8b\x42\x9f\x0f\x86\xc4\xde\xde\xe7\x43\x61\x10\xa0\xfa\x6a\xb3\x29\x9b\x0b\xac\x6f\x1c\x6d\x1a\x93\x42\x33\x50\xc5\x4c\xfd\xab\x70\xb0\x63\x77\x09\x4d\xe8\xf7\x3b\xf5\xed\xff\x00\x88\x7d\x88\x3c\xec\x43\xc3\x05\x7c\x4e\x03\x11\x4f\xb0\x32\x92\x3d\x80\x46\x12\xf3\x73\x4c\x75\x42\x45\xd1\x30\xb9\x2c\xc4\xcc\x50\xd4\x27\xdf\x75\x2c\xa8\x83\xe6\x94\xdd\x34\x72\xce\x53\xb0\x2c\x43\x4e\x31\xaa\x80\x7e\xb4\x13\xb8\xa1\x13\xb8\xd6\x89\x8e\xaf\xbd\x02\xfa\x75\xc9\x02\x33\x5b\xaa\xfe\x52\xb1\xcb\xaf\x66\xb4\xa4\xe4\xa2\xb6\xaf\xc0\x75\x73\xda\xd0\xf6\xfc\x25\xac\x0d\x6c\x43\x16\x2f\x77\x26\x35\xce\x1d\xf3\x89\xb9\x5a\x60\x5a\xa8\xd7\xca\xf4\x4b\xf7\xf6\x52\x6b\x5a\x18\xa8\x1c\x12\x47\x4f\x1c\x12\x61\x58\xaf\xc9\xce\xbb\xa2\x6a\x6a\xa5\x78\x24\xe1\xbc\x2f\x03\x42\x6f\x30\x57\x2b\x36\x4c\xfa\xc4\x4b\xe1\x1c\x76\x7c\x18\xf7\xd3\xab\xa4\xdd\x19\xc0\xa9\xfa\x31\xd8\xe1\xfd\x78\x6f\x6f\x77\xfa\x3c\x8e\xe6\xed\xf8\x8a\x0e\x7e\x9c\x5e\xd1\x41\x7b\xfe\x7c\x1a\xc5\xce\xb1\xd9\x12\x01\xb9\x7b\xa0\xb6\x6a\xc2\xc1\x7b\xd5\x7e\x24\x3d\xae\xa6\x32\x94\x6c\x16\x21\x8f\x5f\xb1\x81\xdf\xee\x84\x4b\x7f\x99\x11\x52\xd3\xd5\x8a\x2d\x36\x14\x98\xdf\x60\xee\x88\xad\xf5\x83\xe1\x43\xe7\x79\xdd\x2c\xb7\xd3\x56\x29\xca\xea\x71\xca\xe6\x54\x9e\x1d\x58\xf1\x20\x3c\x77\xc6\x68\xa7\x5c\x29\x5e\xa0\x39\x1e\xd6\x5d\x0b\x75\x6c\x52\x63\x29\x67\x3d\x53\x85\xea\x0d\xe3\x20\xe3\x55\xb5\x2e\xd7\x98\xcb\xc3\x81\x3b\x79\x74\xe0\x0f\xac\x40\xa9\x71\x2c\x11\xf6\xda\x41\x9c\x3c\x3c\x94\xdf\x10\x3a\x7e\x78\xf0\xb6\x93\x6d\x99\x2e\xe3\x1b\x5f\x6a\xb1\xb2\xfb\x70\x3b\x40\x8b\x06\x40\x8b\xa7\x01\x1a\x67\x8a\x67\x05\x5a\xae\x90\xfa\xfa\x02\x46\x9a\xb0\xdb\x73\x2c\xc8\xef\xf8\x67\x1d\x9e\x55\x0a\xbf\x2c\xc6\x9c\xd1\xd8\x08\x2d\xd8\xb8\x26\xe4\xb3\xbe\x78\xd5\xcc\x6c\xc1\xff\xf4\x80\xb8\x19\xdb\x3d\x51\xad\xa8\x78\xca\xa8\xc4\x56\x2b\xf2\xfc\x75\x79\xfd\x32\x67\x1d\x5d\xfa\xb0\x81\xd9\x4b\xfb\x08\xc3\x47\xf7\x11\x84\x6c\xa3\x38\x66\x3c\xf9\xa6\x17\xfa\x95\x7c\xa2\x05\x3e\x03\x73\xcd\x38\x49\x00\x14\x6c\xce\xe3\x0d\xae\x94\xd6\x7e\x04\x7a\xa9\x37\x79\xab\x41\xb4\x88\xcb\x3c\xdc\x7e\xb7\x03\x13\x1c\x33\x8e\x24\x4e\x2e\x1a\x61\x03\xd3\xe4\xba\xec\xf5\x52\x49\x26\x14\x4f\x72\x45\xe8\x1a\x2f\x20\xed\x03\x22\xf1\x34\x70\x6f\x4b\x47\x79\x85\x02\x05\xbb\xbc\x07\xb6\x99\xd2\xee\xa0\xf0\xf3\x6d\xbf\x11\xa1\xc9\x4f\x0b\x8f\x5a\xd9\x33\xc6\xd2\x13\x50\xe6\xf9\x95\xef\x55\x5b\x91\xc8\xb6\xf1\xd9\xf3\xdd\x5d\x16\xd8\x07\xa4\x98\xa1\x96\x76\xa7\xc0\x5a\x67\x6e\x10\xf6\xbe\x4f\xf3\xea\xf3\x5f\x70\x5d\x66\xb1\xfd\xfc\x57\x7b\xc8\x92\xef\x23\x71\xf6\xd3\xd2\x22\xae\xec\x97\x4e\x83\xfb\x9d\xcd\xa4\xb6\xcd\xcd\xdb\x9c\x6a\x4c\x77\x3f\x22\xa2\x9d\x5a\x03\x2e\x3b\xc4\xa1\xf3\x67\x46\x3a\x1a\x27\x0f\xc5\x71\xd2\x49\x55\xc0\x47\xbb\x21\x1c\xce\xa5\x64\xd4\x78\xdb\x81\x09\xb5\x70\x08\x0c\x4b\x80\x77\x43\xa8\x99\x37\x0f\xec\x61\xa2\x32\x65\x19\xd5\x15\x9f\x7c\x9c\x55\x8f\xd1\x0c\x8d\x09\xfd\xc6\x17\x96\x6e\x23\xbd\x74\x5a\xda\x6e\x4f\x9f\xe5\x8e\x3a\x50\xcc\x38\x46\x49\xd4\x35\xf2\x4b\xbc\x68\xb8\xb6\x82\xfc\xae\x0c\xb6\x59\xf3\x4d\xdc\x59\xae\x81\x31\x6e\x77\x7c\x73\x0b\xb8\xaa\xf0\xac\xa3\x7a\x41\x93\x46\x80\x85\xe0\x7b\x04\x78\x2b\xbf\xaf\x39\x6f\xa5\x68\xc2\x39\x7e\x6a\x21\x1a\x45\x15\xe8\xdd\x9a\x14\x09\x73\x9a\xfd\xf1\xd6\x57\x34\xab\x9d\x72\x2b\xdb\xd8\xcf\xf1\xd0\x67\x9e\xd0\x18\xbf\x25\xb4\xc1\x25\xe8\x36\x67\x7a\x09\x0c\xc9\x57\x4a\x7d\xfd\x35\x93\xf8\xaa\x4a\xa6\xbc\x67\x5d\x52\x8a\x79\xa7\xdf\xef\x53\x3f\x1b\x56\x1b\x4c\x94\x5f\x6a\xdd\x81\xb2\x8d\x95\x81\x97\xd3\x8f\x42\xf9\x0c\xfb\xcf\x72\x7f\xad\xd9\xe3\x14\x6d\xe4\x07\x23\x92\xa6\x9e\x36\x43\xca\x8b\x84\xb3\x03\x7d\xaf\xd0\x78\x3f\x57\x5d\x8b\xd0\x33\x9b\xd0\x36\x6d\xbc\xe3\xa4\xa1\xbb\x55\x22\xbb\x9d\xd5\xe3\xd8\x2f\x33\x11\xae\xdc\x60\xa2\x21\x1a\x0f\x9d\xd4\xdd\x78\xca\x12\x51\x4c\xd3\xfc\xf9\x5b\x46\x81\x3c\xf1\x44\xac\x46\xbd\x76\x11\xef\x37\x42\xdd\xe2\x51\x0e\x9f\xb2\x47\xe5\xb6\x91\x48\x4f\x53\x94\x1a\x78\x64\x5a\x39\xaf\x62\x99\xd7\x24\x6e\xc7\xf5\x78\xa1\xcd\xa9\xad\x4f\x01\xb6\x87\xdf\x83\x42\x21\x27\x00\xe6\x17\x54\x3b\xeb\xac\x39\xbf\x36\xc8\x33\x79\x70\x36\xd3\xd7\x76\xd8\xbf\xa5\x51\x22\xc2\xc6\xf1\xd8\xd1\x6a\x5e\xb7\xed\x56\x3d\x11\x6d\xbb\x3a\x57\x2f\x29\x8a\x12\x2c\xe2\x08\x89\x58\x1f\x35\xb5\xc5\xab\xa3\xe7\xe0\xa3\x64\x42\x75\xcf\xcc\x1d\x46\xa7\x68\xdf\xa6\x54\x53\xe5\x97\x3a\x6d\xe2\x3c\x4d\x2e\xca\xad\x37\xe5\xf3\x75\x6f\x50\x72\xfc\x2f\xb5\x06\x77\xad\x41\x6a\x0a\x3c\x3c\xec\x5a\x3e\x72\x21\x3c\x9d\x5b\xcc\x6d\xe6\xdf\x89\x06\x2a\x35\x1e\x9f\xd6\x95\x6f\xab\x74\x3a\xbc\xaf\xf0\xd8\xaa\x2b\xd3\x79\x2a\x89\xe5\xf6\x76\xc2\xd9\x2c\x61\xb7\xdf\x8b\x25\x9a\xa3\x33\x80\x6c\x26\x37\x0f\x35\xcd\x63\xf0\x36\xb5\x57\x8d\xd3\xa2\x9a\x80\x24\xd3\x9a\x33\x34\xec\x19\x63\x34\x93\x73\x8e\x57\x64\x2a\x2b\x28\x88\x8d\xcf\xf2\x1c\xc7\x98\xdc\xd4\x9d\x96\xce\x22\x9f\xd5\xd9\xb1\x73\x4e\xb5\xbb\xb7\x87\xf7\xf6\xea\xbe\xd5\x0f\x34\xae\xfa\x57\x4b\x4e\x30\x1b\x81\x1d\x70\x3c\xb3\x2e\x3e\x7d\xf9\x56\x35\x32\xbb\xf1\x4a\x03\x63\x3c\xdb\xae\x58\x02\x5a\xb5\xc2\xdf\xa1\x45\x38\xb5\xf4\x9f\xd3\x80\x6b\x27\xb3\x8d\xf8\x93\x7e\x44\x03\x94\x24\xf9\x63\x9e\x19\xd1\x78\x89\xa8\xbf\x84\x6c\x86\xe9\x07\xfa\x82\x73\x76\x7b\xa6\x68\x59\x56\xa3\xb2\x7b\x1c\x2c\x71\x3d\x6c\x41\x18\x62\x3c\x3c\x1c\x86\xbb\xfd\xbe\x54\x28\xbe\x64\x09\x2e\xca\x67\xc4\xf2\x4e\xfb\xce\x77\x55\xde\x7d\xf6\xb3\x70\xc0\xb5\xee\xaa\x6c\x18\xda\x92\x93\xb1\x52\x7e\x74\x8a\xf1\x17\xd9\x52\xe2\x01\xc4\x09\x6a\xb3\x5b\x2a\x74\xce\xc8\x84\xc5\xf3\x26\x38\xff\x23\x77\x3c\x50\x08\x5a\x05\x54\xc3\xc1\xc0\xf7\x77\xd0\xde\x9e\x87\x82\x11\x8b\xe7\xc2\xf3\xa1\xd4\xe7\x22\x75\x7a\x1b\x93\x44\xc2\xf7\x97\xe6\xb6\xad\x62\x38\x15\xf1\x34\x59\x6b\x65\x97\x50\x72\xa4\x43\x9d\xdf\xd6\x73\x0a\x90\x91\xd7\x3d\x2e\x11\xc2\xa5\x43\xce\x76\x64\xe4\x51\xff\x9e\xe6\xad\xc5\xca\x12\xf4\xa4\x6f\xb5\xe6\x2d\x89\xa6\xba\xb7\xae\x77\xb0\x69\xb2\xd8\x83\x53\xba\xdb\x64\xe4\x1d\x9c\xd4\xb1\x16\x7d\x69\x6f\xdd\xd0\x20\x09\x9b\x0b\xeb\x5a\xbd\x20\xc3\x94\xd0\xf1\x8e\xd0\xa1\xd1\xeb\xe8\x9a\xc1\xaf\xb0\x87\x75\xf6\xe4\xf0\x29\xbe\x93\x15\xd8\x6c\x6f\xcf\x63\x8f\xc3\x3e\xe8\xba\x80\x33\x47\xb6\x50\xa2\x2d\x37\xc7\xf1\x8a\x31\xdf\x4a\x6c\x6b\x5b\xa0\x7e\x0f\xce\x37\x14\xd6\x2e\x46\x4a\xdd\xf9\xab\xbe\x2e\xeb\x29\xae\x9d\x5a\x8a\x9e\x6f\xb9\xb2\x66\x99\x20\xb4\xec\x57\xf8\xe0\xe4\xf2\xaf\x3a\xd5\x4a\x9e\xf8\xda\x20\xfb\xda\xa6\x13\xaa\xa6\x61\x50\xd3\x24\x07\x13\xd4\x8a\x03\x08\x4a\x50\xeb\xc9\xd8\xd7\xa6\x1e\x9c\xb1\x5b\xcc\xb3\xe5\x5b\xaf\xe5\xb3\xe6\x2c\x0d\x6e\xc1\xc7\x01\xfc\x01\xef\x88\x69\xec\xc8\x7e\x26\x96\x3e\x95\x22\x39\xa0\x3f\x38\x65\x9e\x4a\x88\x3f\x7a\xbf\xf7\x87\x78\xc4\x38\xb6\xab\xb0\x78\x2a\x19\xaa\x60\xfe\xe8\x54\xf9\x54\x72\xfc\xbb\xd0\x41\x8b\xe5\x09\x4b\x93\xa7\x8b\x8a\x12\x8c\x3f\x3c\x3d\x5c\x19\xa8\xb3\x40\x3d\x9d\x2c\x75\x50\x7f\x74\xea\x98\x6b\xb3\xdb\xd3\xec\xd8\xff\x13\x29\x53\x01\xf3\x47\xa7\xca\x27\x2e\xb5\x7f\xe8\x15\xd6\x1c\xfa\xb1\x37\xb2\x3d\x96\x24\xeb\xab\x1f\xe6\x65\xd7\x79\x62\xde\x7a\x12\x45\x89\xa4\xb8\xe4\x28\xbe\xc6\x5c\x9c\xe3\x31\x11\xc5\x05\xc6\xd5\x5b\x3c\x75\xd9\xb6\xb4\x85\xdb\xdc\x96\x06\x7e\xd9\x7b\x5a\xa1\xc6\x00\x72\x6c\xdd\xdd\x5a\x63\x36\xaf\xcd\x6f\x67\x37\xb3\x52\x4b\xdf\x9c\x6d\x5a\xaa\x39\x32\xcd\xfb\xe4\xdc\x82\x05\x10\x48\x7d\xa1\x51\xb3\x7b\xa5\x52\xba\xbc\x79\xd2\xd4\x7b\x65\xf6\xdb\x77\x26\x00\x4e\x41\xaf\x21\xc1\xf3\xd6\x9b\x9b\xe5\x95\xf6\x74\xe4\x50\xcc\xa8\x39\x78\xc7\x78\xa0\xdd\xee\x8a\x66\xaa\x85\x32\x8e\x6b\x1a\xab\x77\xd5\x1e\xd7\xd2\x09\xfb\x74\x24\x01\xc8\x9c\xc3\xaa\xe8\xf3\x62\x87\x2e\x03\xe2\x26\x7b\xf4\xa3\x12\xb2\x4b\xdf\x0e\x4f\xf3\x81\xad\x8c\xbf\x9b\x7b\x6c\xbe\x66\x81\x11\xf1\x6c\x1e\x81\x97\x1f\x7f\x05\x70\x8a\xa7\x8c\x2f\x22\xf0\x4e\xff\x05\xcb\x2b\x3c\x78\x78\x50\x4d\xe9\x83\x76\x6b\xba\x9a\x35\x57\xef\x73\x1e\x6b\x6d\x59\xa4\xbc\xd3\x57\xc6\x87\x8c\xbc\x55\xc4\x29\x45\x02\xda\xe4\x3f\x1a\x9e\x4e\x15\x26\x80\x9f\x85\x7f\x68\x00\x00\x36\xd0\x92\x96\xaf\xdb\x96\x7b\x7b\xfa\xec\x47\x2d\xe5\x5f\x06\xb8\xb8\x7b\xdb\x37\x91\x71\x3a\x98\x2e\x79\x31\x6d\x4c\xf6\xb0\x11\x31\x4c\x97\x41\x3c\x9b\xe7\x9d\x33\x85\x9f\x83\x0c\xbc\x1a\x87\x28\x7f\xb2\x03\xb1\xb3\x31\xe7\x3c\x95\x2a\x57\x78\x10\x3d\x4a\x02\xe7\x00\xe5\x06\xfc\xe6\x72\x97\x8e\x8c\x18\xb1\x82\xc3\x88\x68\x27\x88\xaa\x45\x64\x79\xe5\xd0\x61\xf0\xf0\xe0\x1e\xcd\x5c\xfa\x70\xc6\xd2\x14\xf3\xad\xb3\xc2\x7d\xc1\xcb\x9c\x4a\x14\x52\xe8\x01\x3f\x98\x61\x3e\x62\x7c\xea\xf9\x45\x8e\x38\x83\x31\x99\x62\x36\x97\xbe\xd7\x09\xc3\x3c\x3f\x9c\x9a\x12\x86\x7e\x4a\x9c\x12\x3a\xce\xaf\xd9\xb1\x79\xfd\x96\x36\x19\xe0\xe3\x19\xcc\x74\xea\xbc\x35\xbe\x6b\x77\xe6\xd9\x8b\xb1\x0d\x41\x0b\x8c\x97\xf0\x96\xa4\xa9\x0d\x67\xac\xd5\xb5\xa5\x63\x44\x63\x9c\xbe\x48\xd3\xcc\x2b\x58\x22\x82\x20\x63\x8a\xd2\x8f\x68\x2e\xb0\x4b\x8b\xed\x52\xc7\xcc\x38\xbb\x5b\xb4\x25\x1a\x7f\x07\xbb\x33\xdb\x6d\xcc\xa8\xd5\x95\xd1\xb6\x61\xa0\x6f\xb9\x15\xff\x49\x57\xce\xaf\x4b\x45\x64\x12\x98\x9e\xeb\x7e\xae\xbc\x8c\xde\x90\x41\xac\xcf\xa7\x5a\x29\xeb\xdc\x3d\x6f\xae\x9d\x57\x62\x66\xcc\x24\x33\x6d\x6d\x98\x1e\xb9\xe9\x5a\x77\xd3\x82\xd9\x2b\xdf\x72\x34\xb3\x2d\x9c\xb6\x76\xfc\x56\x33\x48\x7d\xe5\x21\xdd\x28\x43\x14\x80\x85\xa2\xf0\x26\xc9\x6e\xef\xce\x93\x4c\xd7\x0e\x4e\x3b\x85\x57\x47\x22\xa8\x96\xf5\xfa\x71\x8e\x63\xc6\x4b\xd5\xec\x4a\xe2\xc2\xd1\xda\x17\x99\x5a\xcd\x31\x25\xf4\xfa\xd2\xcd\x73\xbd\x1b\x42\x9b\x01\x70\xbb\xb9\x65\x2d\xaf\x21\xbb\xfb\x86\x63\xa0\x71\xb8\xc4\xdc\x46\xe0\xfd\xd3\x79\x51\x71\x21\x73\x8c\x12\xe1\x81\xa2\x00\x50\xdd\x1b\xb2\x39\x8d\x71\xd4\xe9\x85\x90\x51\x13\xc9\x5e\xcd\xcb\xe5\x28\xe5\x6e\x97\x81\xbe\x4f\x16\x40\x30\x41\xfa\x2a\x53\xe3\xc1\xc9\xf7\x08\x05\x96\x17\x05\x2e\xcd\xfb\x9c\x0e\xb6\x00\x66\xd7\xa1\x67\x19\x31\x8a\x7d\xcb\x0c\x4b\x13\xb6\x4d\xcd\x00\x67\x2f\xb3\x2c\x7b\xcd\x99\xf5\x4a\x2d\x00\xb0\x05\x54\x35\x33\xf3\x65\xbb\xa2\xa3\x3a\x50\x77\xec\x26\xa5\x3d\x04\x80\xdd\x9d\xa9\x52\xef\xfc\xe5\x36\x9c\xc5\x6f\x30\x6f\xa3\x71\xc3\x1c\xff\xbe\xb2\xc4\xfd\x73\x9d\xe4\x06\x6d\xf5\xd5\x24\x74\x2d\x95\xab\x66\x97\xb6\x50\xac\x04\x05\xeb\xf2\xcb\xd5\x49\x53\x4f\x34\xb7\x61\xa0\xcd\x00\x6a\x28\x59\x06\xb5\x15\x91\x35\xba\x0c\x80\xc0\xa2\x68\xa3\x67\x7e\x3d\x7f\xbb\xd2\x64\xd3\x05\xf5\xa9\x00\xab\xe0\x29\xa3\x57\xa3\x2d\x02\xf3\x37\x93\x51\x0a\x74\xa6\xf4\x83\x42\xa1\xb5\x6a\x30\x63\xba\x99\x22\x63\x7f\xbb\xe3\xfb\x95\x42\x0e\x3a\x7e\x20\x66\x29\x91\x1e\x78\x0e\xfc\xab\x50\xe7\x18\xd3\xce\x44\x6f\xff\x4f\x87\xe1\xfe\x18\x82\xff\x05\x7c\xbd\xaf\xd8\xf0\x5e\x29\xd0\xd5\x94\x7c\x45\x97\x7e\xa8\x65\xe2\x6b\x3a\x8c\xd5\xb8\xfc\x55\xfb\x8d\x6d\xa7\x97\x50\x2f\x60\xdb\xe6\xf0\xb3\xbe\x03\x32\xc5\xed\x2c\xb1\x41\x43\x9e\xb3\x86\xe4\x47\x95\xcc\x48\x6e\x42\x25\x9b\x46\xe9\xb1\x0c\x4d\xd5\xe4\x48\x06\x5c\x3b\x99\x73\xb3\xec\xac\x4e\x8a\xe4\x24\x44\x22\xa5\x8c\x43\xae\x50\x5c\x9b\x19\xe7\xbf\x6a\x66\xa2\x92\x48\xff\x7c\x39\x89\x3c\xff\x33\xe5\x1a\x9a\xf7\xd3\x6a\x0e\xd0\x7b\x93\xed\xc7\xe4\xde\x90\x68\x3a\x03\x36\xe9\x0f\x98\x61\x1e\x6b\xee\x74\x33\xff\x84\xf5\x24\x2e\xc5\xe1\xd9\xe6\x0c\x2e\x3f\x47\x7f\x7a\x17\xfd\xe9\x62\x7d\xc6\x16\x54\xcb\xd8\x12\x74\xfe\xdf\x9f\x74\xc2\x16\x93\x51\xe8\x42\xcd\xa4\xd6\x25\x99\xe2\xd6\x85\xc6\xa5\x29\xbd\xd0\xe3\x29\x59\xd6\xa6\xe7\x28\x65\x17\x31\x27\x1f\xcb\x89\x45\xd8\x9a\xc4\x22\xee\x19\x47\xa9\xe3\xb1\xd6\x16\xaf\xa5\xf7\x48\x2b\x89\x11\x20\xe9\x7b\x21\xe4\x45\x26\x1a\x71\xd5\x19\xb4\xc5\x55\x38\x80\x60\x2a\xf4\x09\xd8\x4c\x12\x6b\xaa\x98\x11\x6a\x29\x4c\x5b\x23\xc6\x5b\x72\x82\x5b\x29\x12\xb2\x95\xcb\x69\x02\x01\x6c\xdd\x12\x39\x69\x69\x3e\x11\x2d\x8e\xe8\x98\xd0\x71\x6b\xc4\xd9\xb4\x05\x72\x51\x9d\x7a\x48\xc9\x63\x08\x14\x7f\x96\x5f\x77\x06\xda\x79\xf1\x85\x33\xe0\xd0\x5a\x06\x1c\xd1\x98\x01\x47\x3c\x9e\x01\x07\xa6\x7d\xe2\xd5\xc6\x61\x5d\x9a\x95\xae\x0f\x79\x3f\x55\x64\x9e\xf7\xd3\xab\xce\x00\x26\x95\x04\x86\x73\x3f\x10\xf3\xa1\x4e\xd5\xeb\xf5\x20\x98\x12\x3a\x97\xd8\x98\x5f\x67\x3a\x5d\x3c\x8c\xfb\x79\xe6\x9d\xab\x3c\xd6\x9e\xc3\xc4\x87\xf3\x41\x74\x95\x40\x25\x15\x54\xd1\x3c\xbb\x0e\xdd\x3c\xbb\x4e\xec\x43\xfa\x85\x32\xbd\x14\x07\xd5\x4d\xce\x4f\x93\x09\x15\xfb\x90\xf6\x43\x88\xfa\x9d\x1d\x32\xf2\xa4\x6e\x4c\x75\xdd\x2f\x9d\x00\x6e\x24\xb3\x54\xd4\xdc\xa1\x86\x9a\x48\x53\x73\x99\x1f\xe8\xfe\xd4\x5c\x30\x39\x61\x43\x48\x7d\xe8\x1c\x72\x40\xfe\xa0\x1a\xd2\x3d\x7f\x74\x99\xe6\x18\x4d\x09\x1d\xb7\x47\x64\xab\xeb\x3e\x56\xa5\x26\xfc\xea\xb7\x7c\xd0\x22\xd5\x5b\xae\x8b\xce\x78\x35\x0e\x3f\x4e\x49\xdb\xe0\x5a\x3e\x53\x95\xb2\xb1\xd2\xc7\xf5\xf6\xc3\x94\x25\x38\x02\x39\x45\x00\x24\xe2\x22\x7b\xd0\xa6\x27\x1b\x8f\xb1\xbd\xff\x7e\xa3\x48\x4f\x63\x71\x98\x6a\x6b\xa2\x3b\x63\x59\xf3\x78\xe4\x6e\xc4\xa9\x8e\x57\xd3\x2e\x3c\x73\xe8\x0b\x07\xea\x6f\xe1\x1e\x73\x6e\x5d\x00\x12\x91\x54\x95\x50\x7f\x9b\x4b\x14\x9d\x8b\x70\xe0\x74\xef\x39\x0e\xcc\xa7\xa2\x5a\x84\x2d\xe6\xb9\xb7\xd0\x04\xb8\xae\xcc\xe1\xa0\x3b\x3b\x22\x69\xfa\xe2\x06\x91\x54\x31\xc3\xcf\xf6\x78\xed\xd3\xcf\xfc\x36\x80\xf3\x97\xb0\xe1\xed\x8a\x50\x5b\x1b\xc6\xb8\xa3\xba\xb7\x48\xb3\x03\xbf\xfd\x42\x83\xb7\xd7\x30\x11\x4a\x31\x37\x90\xda\x38\x60\x7a\xd2\x5d\xb2\x59\xfb\x20\x84\x60\x76\xa7\x16\x63\x45\xf5\xa7\xdd\x2a\x62\x58\xe1\x4b\xdd\x0a\x63\xae\x1f\x77\xdc\xa9\x76\xd0\xc6\x4c\xb2\x9f\xf5\x7d\x2f\x0e\x27\x98\x5b\xc0\xa3\x6d\xe3\x8c\x65\x1e\x0e\x9a\x5d\xaa\x3d\xeb\x87\xcb\xdc\x13\xbd\xa1\x83\x59\x71\xe5\x1f\x8d\x82\x97\x6a\x46\x7d\x06\x0a\x66\x09\x39\x1c\x7e\xcc\x29\x99\xfd\xce\x32\xf2\x6c\x49\x56\xb1\xa0\xf1\x84\x33\x4a\x7e\xc7\x17\x1a\x4e\x9e\xe0\xaf\xd6\x3e\xca\x92\xb3\xda\x05\xec\xc7\x70\x6f\xcf\x88\xd8\xdd\x7e\xf1\xf1\x2a\x1c\xec\xed\xb9\x4f\x99\x5e\x68\x91\xff\xc1\x93\x25\x8c\xdb\x0e\x5b\xfc\xa5\x13\x3e\x3c\x68\xdb\xc4\xe5\x95\x72\x79\x7f\x09\x8d\xac\xf9\xfe\x98\xc1\x91\xd7\x01\x53\x4b\xa6\x24\xf1\xf5\x23\xe9\x4f\xd6\x0f\x7c\x1e\x5b\xb0\x72\x98\xbc\x2c\xa1\x4b\xb9\xf1\xaf\xd3\xb6\x69\xb9\xb8\x47\xca\x41\x41\x9f\x7f\xcd\x17\x88\xca\xdd\x52\x19\x9a\xa3\x91\xc5\xd3\xcf\xae\x2c\xdd\x90\x6b\xd7\xed\x16\x55\x97\x9d\x2d\x6e\xd4\xd1\x5b\x9b\x75\x4d\x66\xc5\x4d\x98\x29\x1b\xd7\x3f\xda\xcd\xb6\x6f\x71\x5d\xd9\xba\xb8\x8d\x35\x57\xdd\x41\xb3\xa3\xab\x7a\x53\xd2\x6d\x14\x1d\xb2\x64\xda\x3a\x0d\x7b\xe1\x48\xb7\xb7\x90\x8a\x6b\x1b\xe7\x4c\xb2\x3b\xd1\x84\x44\xd6\xcd\x36\x17\xf8\x42\xbb\x82\xa2\xdd\x0e\xa4\xec\x25\xa3\xd4\x1e\xb2\xd9\xed\xc0\x38\x25\x98\xea\x1c\xe6\x6c\x2e\xa3\x0e\x3e\x80\xc6\x6d\x94\xbd\xe9\xe1\x03\xab\x4e\x99\x93\x52\xaa\x81\xbc\xc3\xf5\xad\x1f\x89\x64\xf0\xd2\xdc\x8e\x7b\xb9\x26\xb2\xa3\x5a\xee\xe1\x01\x80\x1d\x87\xcd\x10\x97\xe2\xef\x44\x4e\x3c\x40\xa6\x68\x8c\xf7\x81\xff\xdc\xfc\x52\xda\x8e\xfb\x59\xe2\x3b\xb9\x0f\xfc\x87\x87\xf2\x6b\x34\x9b\xa5\xc4\x50\x48\xe7\x46\x57\xf5\x6d\x92\xfe\x08\xcc\xe9\x35\x65\xb7\x14\x2c\x7d\x48\xc4\x5b\xc4\x6b\x47\xa9\x83\xb1\xcd\xf6\x10\x5c\xe8\x13\xbe\x3d\x7c\xe8\xeb\x8e\x2b\x54\xdf\x88\x5f\x4d\xfd\x6a\x25\xfc\xaf\x39\x4a\x3d\x50\x22\x10\x80\x79\x6b\x7e\xae\x84\xea\xe0\xa5\xcd\x2a\x5b\x9c\xfd\xb2\x02\xdb\x81\x31\x92\xbf\xf2\x86\xb4\xbc\x39\x5f\x04\x24\xb1\xdc\x64\x76\xf4\x21\x30\x73\xa9\x36\x1c\x98\xc6\x2c\xc1\xbf\x9e\xbf\xc9\x9b\xf5\x0a\x9d\xca\x98\xb0\x19\x10\x08\xf6\x0b\x4b\x3a\x53\xea\x70\x1e\x41\x01\xf6\x6f\x3a\xfb\x86\x9d\xf6\x47\x62\x3f\x46\x72\xbf\x0c\xa8\x84\x1d\x04\xcf\x67\x48\x4e\xfa\x05\x44\x1d\xb0\xa3\xef\x51\x7b\xa7\xf8\xad\xda\x37\x3b\x54\xda\xe3\x98\x34\xc6\xd1\x14\x2a\x71\x1e\x4c\xc1\x12\x5c\x0c\xbc\x3d\x77\xa4\xc1\x3c\x37\xec\xec\x16\x7c\x78\x30\x6a\x77\xb9\x32\xc7\x28\x41\x12\x44\x66\xde\x47\x20\x46\x52\x31\x8e\xea\xf9\x26\x23\xe0\x3c\x53\x96\xe0\x60\x22\xe5\xec\x45\x92\x70\x35\x20\x59\x57\x15\x93\x64\x53\x74\xed\xbd\x20\x2b\x81\xf9\x50\xf6\x2b\xe4\x2f\x93\x3e\x6f\xab\x3e\x86\x25\x8c\xcb\x59\x4f\x72\xac\x9e\xcb\x08\xec\xef\x3b\xd1\x1f\xce\x35\x1e\x86\x16\x76\x9b\xb5\x16\xef\x55\x63\xc0\xfa\xe8\xd9\x20\x98\xed\x98\x6e\xc7\x2a\x01\xf9\x48\x95\x4c\xab\xfc\x6c\xbf\x9c\x44\x18\x1a\x23\x20\x0a\x61\x4a\xa6\x44\x49\xb4\xc3\xa5\x6b\x65\x35\x16\x2e\xa4\x94\x12\x01\xed\x1e\x3e\xac\xd5\x76\x2c\xb0\x46\x10\xaa\x0e\xe3\x64\x4c\x68\xa4\x97\xd1\xe5\x8e\x5d\x43\xca\xc5\x97\xcb\xa5\x9f\x19\xa4\x55\xf2\x59\x2e\xb3\xc4\x33\x34\x5e\x4d\x42\x6d\x6c\xa1\xfe\x66\x9c\x9d\x25\xd1\x71\xc6\xd8\xec\xa1\xb9\xc2\xdf\x9c\xec\x73\x57\x88\x9d\x6a\x88\x65\x10\x73\x8c\x24\xf6\xee\x53\x36\x7e\xad\xb8\x2c\x6a\x70\x4b\x99\x7e\x9d\x5f\xfc\xed\x63\xc0\x51\x8c\xbd\x2b\x1c\xe8\x25\x32\x40\x73\x39\x61\x9c\xfc\x8e\x93\x73\xfc\xaf\x39\x16\xda\xdf\x52\xbe\x52\x50\xf8\x83\xea\xcd\xcb\x8e\xbf\x6b\x6f\x4f\x06\xec\x5a\x89\x7f\x7d\xf4\x8b\x73\xc6\x2f\xa4\xc2\x47\xfa\x50\x2e\x9b\x5c\x64\x0d\x25\x95\x3d\x3c\x4b\x11\xa1\x97\xf8\x4e\x46\x08\xce\x0c\x33\xe7\xdc\x66\x08\x0f\xe7\x3c\x2d\xde\xfd\xca\x53\x93\xbc\xaf\x04\xac\xb2\xe7\xca\xd9\x6d\x6d\x26\xe5\x3b\x95\xee\x4a\xac\x5d\xa1\x91\x73\xe4\x6c\x84\x48\xca\xd4\x48\x30\x2b\x17\x7c\x88\x6b\x87\x41\xcd\x92\xd0\xbc\x09\x6b\x78\xc4\x61\x52\xab\x96\xd6\x6f\xf1\xb9\x28\x8a\x2c\x61\x66\x6c\xae\x05\x3a\x31\xb7\x8f\x16\xef\x5d\x20\x3a\x23\x20\xcc\x4c\xae\xb5\x70\x34\x53\xae\x87\x53\xa5\x43\x33\x3c\x47\x7c\x2a\x1d\xfc\x09\x9a\xa6\x0e\x6f\xff\xbe\xb7\x7d\x57\xef\xcf\x56\x7b\x50\xdf\x9d\xad\x9c\x86\xfb\x36\x97\x81\xe5\xba\xed\x7f\x55\x8d\x7e\xb5\xda\xfe\xc9\x2a\x7a\xc5\xc1\x69\xa6\xfd\xbb\xaa\x1b\x34\xf3\x8b\x26\xfa\xf0\x69\xca\xc6\x9f\xa8\xc2\x7c\x06\xb5\xa5\xb1\x18\x51\xe2\x85\x56\x55\x9a\x94\x8d\x5d\xbd\x66\x95\xae\x42\x57\xe8\x2a\x3a\xbb\x7c\xca\xc6\x6b\x54\x95\xd5\xca\xa5\x3e\x4f\x1a\xe5\xaa\x89\x09\x2c\xcf\x17\x53\x67\x09\x37\x73\x46\xff\xf6\xb5\x03\xca\xac\xdf\x79\xbb\xab\xd6\x6d\xf9\x49\xcb\x71\x0e\x13\x3d\x65\xcd\x45\xd5\x35\x57\xd6\xd7\x5c\x67\x6b\xb0\xbc\xac\x9a\x55\x0e\x3b\x98\xe3\x55\xeb\x1b\x5e\xbd\xb8\xc9\x65\x7e\xc7\x47\x16\xc9\xa4\xb9\xb7\x16\xc3\x54\x72\x29\xc0\xea\x92\x82\xf5\xed\x18\x8f\xad\x8d\xc5\xec\xf8\xec\x2b\x64\x09\xf4\x27\xaf\x93\x25\x68\xdf\xd1\x6a\x59\x5b\x27\xd7\x6e\x30\x3d\xba\x76\x7e\x0d\x01\xbe\x3e\x70\xf2\xcb\x9f\xb3\x79\x64\xf5\x5e\xb3\x6e\x17\xee\x1c\x61\x6e\xb8\xdf\xed\x40\x4c\xd1\x30\xc5\x1f\x59\x9a\x36\xa4\x0b\xaa\xa7\x04\x2a\x45\x97\xdb\xb4\x95\x2b\x25\xa0\x36\xbd\x88\x38\xb7\xf7\x82\x57\x0e\x6f\x38\xd1\xde\xe5\x72\x79\xe8\xcc\x66\xc7\x73\x2a\x70\xdc\x83\x2d\xda\x85\x8a\xc4\xf5\xc5\x4a\x2c\x33\x93\x52\xb7\x62\xce\x36\x54\x93\x68\x65\xa8\xea\x22\x7e\x3d\xee\xb8\xa8\xb9\xe6\x54\x44\xd1\x96\x39\xef\x30\x9b\xaf\x08\xa6\xcb\xd1\x0d\xe2\xd9\x5c\xa7\xb3\x33\xfc\x0c\xfc\xec\x84\xc3\x63\xf5\x4c\xb1\x72\xd5\xcd\xd5\x34\xba\x5e\x4d\x33\x6e\x15\x43\xcf\x6f\x7c\x72\x22\x3f\xff\x63\x06\x26\x3b\xe9\xd0\xc9\x8e\x3a\xe4\x56\x9a\xb9\x73\xbe\xe2\xd1\x76\xc6\xae\x7a\xd2\xa2\xe4\xd5\xce\xf3\xb5\x9a\x29\xa3\xc5\x23\xac\x34\x65\x2a\x1c\x67\xd7\xdb\x1f\x97\x6f\xb7\xef\x94\x82\x4a\x5d\x48\xd9\xc1\x8d\x4e\x75\xe7\xa9\xd3\xad\x1c\xf2\xe8\xe5\x87\x3c\x3a\xdd\x28\x63\xc8\xd2\xd4\x6d\x3e\xe9\xd1\xd9\x64\xcb\x08\x5e\x5d\x75\xe0\xb1\xb9\xab\x5e\x27\x73\xf1\x1e\x3f\xf9\xd1\x3c\xdf\x9e\x17\x2e\x22\xc3\x8b\xc5\xce\x71\xf5\x8b\x73\xee\xe3\x09\xcb\x86\x98\x0f\x29\xba\xf9\x76\x81\xdb\xeb\x4f\x3c\x38\xd1\xf3\x23\xf1\xa6\x39\x34\x35\xf3\xd3\x96\x03\x53\xcf\xd5\xd3\x7b\x23\x92\x0a\xc2\x96\x5c\x6b\x9a\xe8\x23\x01\x7c\x38\x12\xe7\x8c\xc9\x2f\x04\xbf\xcd\x19\x53\x92\x63\x44\x52\x2c\xde\x12\x7a\xdd\xdc\x0a\xe3\x1e\x28\xfa\x08\x20\x28\x23\x55\xcf\x64\xb2\x7e\x6c\x6f\x59\x5b\x48\x3c\x6b\x9b\x1c\xb6\xdf\xdb\x21\xda\xf2\x62\x5b\xc1\x75\x00\x49\x92\x62\xed\xf7\x01\x00\x1a\xf6\xce\x9f\x18\x1d\x11\x3e\xad\x3c\x6a\x7a\x67\x37\xcb\x03\x00\xd1\x2d\x22\x6a\x59\x7d\xe9\x7c\xd6\xb9\xc7\x88\x50\x13\x5d\x27\xcc\x66\xd4\x7e\xad\x66\xe9\x7d\xa9\x1b\xac\xa5\xdb\x96\x38\x02\x0a\x2f\x00\x89\x78\x93\xac\xdc\x2d\x30\x27\xff\xa0\x29\xea\x43\x22\x3e\x9a\xf4\x7e\x25\x54\xd6\x57\x9d\x71\x36\x9d\x29\x8e\x31\x5d\xff\x60\x16\x8d\x0f\x73\x29\x48\x82\x9f\xb4\xad\x4b\xbf\xec\xf6\xbe\x3d\x48\xa7\x88\xfe\x9a\xf1\x57\x37\x98\x4a\xdf\xcb\x33\x7a\x0d\x59\xb2\x80\xc0\xe8\x98\xf9\xf6\x3b\xed\x6b\xc3\x43\x42\x77\xef\x5b\x59\x85\x12\x11\x2a\x3c\x6a\xcf\x40\xf8\x36\x97\x7f\xd3\x80\xda\x4f\xc6\x7c\xd1\x11\x25\x6f\x0c\xcd\xcb\xe2\x3b\x5b\x52\x36\xdc\x3a\x75\xad\x1d\x03\x71\x95\x19\x50\x1a\x67\x63\x06\x36\x8c\x57\x49\x3c\x43\x33\xb4\xaf\x19\x2f\xb1\xc3\x9a\xf0\xa6\x52\x5b\x39\x63\xac\xbb\xb9\xa1\x11\x89\xe2\xbc\x9f\xbf\xcc\x26\xcd\x8a\x66\x5d\x1b\x15\x0b\x96\xde\xd8\x3b\xa8\xf2\xf9\xe2\xf9\x55\x3b\x54\x35\x5b\x1b\x86\x65\xed\x12\xf2\x66\x91\x45\x25\xd7\xe7\x17\xc5\xbe\x23\x46\x9d\xdf\xfb\x84\x26\xf8\x6e\xfb\xd8\x39\xc1\xb8\xac\x5e\xe7\xdb\x60\xf5\xac\xbb\xec\xf7\x56\x69\x1d\x8d\x01\xed\x9f\x4b\x42\xb2\x5c\x42\x66\x64\x68\x0a\xbc\x5b\x67\x09\x95\x0e\xd4\xa9\x3e\x67\xb8\x44\x3a\x43\x29\x80\x95\x24\xaa\x20\xc1\x22\x06\x4b\x58\x2e\x6a\x74\xf7\x4a\xd1\xdd\x8e\xce\xba\x7c\xc9\x2e\x18\xaf\x6e\x2b\x67\xca\xb2\x3e\x76\x6f\xee\x0e\x50\x0b\xa9\x39\x84\xa8\xdd\xee\xb5\xd4\x5d\xb6\x86\x02\x79\xa1\x8b\x01\x1f\xce\x38\xc6\xd3\x99\xcc\xe2\xfe\xb0\xb6\xa5\x1e\x33\x9d\xf4\x6d\x4a\xda\xcd\x2f\x6f\x19\xbf\x5e\x8b\x99\xe5\xa3\x22\x19\x80\x08\x6c\x35\x11\x8c\x08\x77\x14\x7b\x4b\xd2\x86\x63\xd3\x1a\x50\x91\x74\x2c\x2b\x18\xfc\x2f\x8c\xe2\x89\x35\x7b\xd6\x9d\xa7\x5c\x05\x00\xf8\xf9\x6d\xeb\xc6\x9e\xd1\xd9\x33\xcf\x88\x98\x12\x51\xd7\x13\xb5\x24\xc0\x46\xdf\x35\x09\xfe\xa0\xe6\xcf\xf7\x6a\x29\xf4\x42\x28\x02\xfd\x68\x0e\x02\xfa\xa5\x93\x80\x3e\xb4\xb7\xcc\xfc\x3d\xaf\x50\xbd\x7c\xc6\xe0\xa8\xa4\x49\x71\x20\xd0\xba\xb5\xd4\x68\xce\x57\xde\x9c\xd9\x54\x71\x27\xcb\xce\x20\x31\x95\x46\x93\xcd\x51\xcd\x45\x11\xb6\x9a\x6c\xf1\xc5\x95\x94\xfa\xb0\xeb\xcc\x39\x9c\xf8\x7d\x1c\x2e\xb7\x1f\xc3\xe2\x08\xb9\x43\x04\xb3\x9c\x64\x2b\x9c\xfb\x41\x9f\x50\x2a\x11\x13\x28\xfe\x4a\xb1\x74\xd6\xab\x53\x77\xbd\x3a\xca\x4c\xa0\xa3\xb2\x09\x14\xba\x26\x90\xe5\x86\x7b\x7b\x94\xe1\x25\x9b\xa7\x49\xeb\x3d\x93\xad\x0b\xc9\x66\xad\x17\xce\x51\x50\xf7\x30\x03\xf8\x4f\x36\xe7\xad\x17\x2f\xdf\xb6\xb4\x60\x69\x25\x0c\x8b\x16\x65\xb2\x35\xe6\x88\xca\x56\xc1\x37\xad\x94\x8c\x70\xbc\x88\x53\xdc\x9a\x61\xae\x98\x52\x6b\xb8\x20\x0b\xa2\x3b\xdd\xcc\x22\x0a\xe1\x91\xb1\x88\x20\xc7\x3a\x1e\xe4\x8f\x35\xaa\x16\xe9\x62\x60\x6d\xa1\x13\x77\xb8\x7a\xd9\x70\xf5\x9e\x32\x5c\xe7\xa6\x89\x2f\x3f\x62\x27\x9b\x8e\x58\xcf\x8e\x58\xae\x0d\x19\x9f\xa8\xb8\xae\xe4\x44\x95\x36\x77\x41\x7e\xd2\x4d\x9b\x45\xde\x3a\x8b\x08\x40\xe9\x2f\xb5\x2f\xa9\xe2\x48\xb1\x4e\x47\x9b\x9d\xd4\x1e\xb7\x43\x8f\x1c\xb7\xcb\xf4\xbf\x0c\x3f\xa0\x7a\xe1\x2f\x21\x1d\x54\xd5\x0f\xf6\x44\xf5\x43\x61\xba\x9f\x59\x71\xcd\xbb\x64\x9b\x43\xf9\x62\x86\x96\xac\x9e\xbf\xfa\x1c\x9a\x57\x86\xf4\x57\x73\x0e\x54\x95\xa0\xfb\xcf\xa3\xdd\xbc\x5f\xa1\xdd\xe8\x60\x8f\xca\xae\x5f\x42\xb8\xce\xc6\xbb\x78\x45\xa5\x3e\x9a\x66\x4f\xc5\xbe\x6e\x08\xe2\xcb\xca\x92\xba\xb2\x33\x22\xa9\xc4\x5c\x2d\xed\x55\x80\x00\x82\x37\xe2\x8c\xf0\xcc\x23\xf0\x84\x9a\xda\x73\xa6\x90\xff\x3b\x91\x93\xb7\x18\xa9\xfe\x5c\xa4\x48\xd4\xee\x53\x05\xaa\xd0\xaa\x95\x5b\x7d\x6b\x8e\xef\xdb\x07\xfe\x73\x1c\x01\x77\xc3\x6e\x99\xe9\x76\x67\x55\xfa\xd4\x8e\x0a\x55\x0a\xd8\xbb\x4f\x9c\x01\xa9\x65\xf6\x5f\x19\x91\xe8\x54\x82\xb2\x0f\x74\xe4\x5f\xbf\xdf\xc7\xcf\xcd\x90\x46\xf9\x65\x25\xce\x48\x64\x3a\x55\x71\x51\x95\x26\x73\xf6\x5a\x5f\x54\x42\xb3\x8e\xa1\xca\x95\x52\x25\xb4\x9e\x8b\x80\x63\x9d\x0d\xda\xf3\x23\xb1\x59\x7e\xfe\xcd\xe6\xd4\x46\x26\xcd\x97\xf6\xc9\xd4\x26\xdb\x26\xfa\x34\x7f\x4c\x8d\xd6\xfd\xa9\x31\x85\x2d\x1c\x64\x39\x93\x3e\xaa\x52\x86\x33\xb2\x4f\xc9\x82\xa2\x29\x89\x8b\x2f\x35\x61\xef\xec\x4f\x34\xc2\x03\x7e\x7e\xbe\xac\xe9\x62\x0e\xa5\x63\x47\x38\xd0\xb9\xb8\x34\x9a\x11\x0e\xf4\x65\xca\x90\x88\x33\xd3\x78\xb4\xdb\x59\x2e\xf3\xcd\xe9\x86\xf6\x5c\x24\x3f\x47\x73\xe1\x72\xe9\x37\x58\x01\xdb\xd9\x41\x5b\xd9\x0c\x56\x9d\xd1\x6b\xf9\x7f\x6b\x5f\xae\xf6\x65\xd4\x87\xef\x42\xef\xda\xd2\x6f\x52\x04\x56\xaf\x0f\xe3\x61\x09\x16\xed\x11\xe3\x6d\x4b\x8b\x6a\x01\xca\xda\x29\x46\x09\xce\x0a\x7c\xf9\x1d\xe1\x9a\x0c\xd2\xbe\xa9\xf1\xca\x6d\xdf\xb5\xc9\x93\x9a\x72\x0b\x01\xf3\x17\x28\xc6\x1f\xe7\x41\x3e\x66\x7e\x15\x3f\x2f\x64\x3d\xce\xd3\xd2\x68\x85\x61\xaf\xbf\x06\x92\x5d\x48\xae\xcf\x6f\x64\x93\xf6\xa5\xa2\xf1\xc6\xb0\xca\x07\x80\x0b\xc0\xbe\x0e\x83\x3f\x0c\x0f\x9a\x21\xe9\x46\xd6\xdd\x50\xe4\x94\xca\x2f\x9a\x00\x87\xe1\x01\xc8\x00\x1f\x7e\x5e\xc0\x87\x16\x70\x2f\x0c\x3f\x27\xe0\x5e\x18\x5a\xc0\xef\xd9\x5b\xcd\x98\x4f\x19\xa5\x3c\xe3\x01\x1b\x15\xa9\x04\xf4\x89\x20\xce\x6e\x5f\x39\x92\xb6\xf0\x86\xd4\xa1\x56\xfd\xb2\x26\xe9\x88\x66\x56\x7d\xd1\xec\x0d\xf0\x9f\xaf\xf6\xca\x66\xf1\x38\x1a\xee\xd2\x8f\x4a\x7b\xff\x0f\x0f\xab\x2b\xc6\x8c\x0a\x96\xe2\xe0\x16\x71\xea\x81\x5f\xdf\x9f\xbf\x7a\xf9\xe1\x6f\xaf\xce\x5f\xfc\xf4\xf6\x55\xeb\xd5\xf9\xf9\x87\xf3\x08\x40\x9c\xf3\x4c\x45\x45\x59\xb1\xff\x57\x08\x0e\xe3\x92\xf8\x96\xfa\x3d\x11\xaf\x19\x1f\x92\x24\xd9\xf8\x5e\x83\x1a\xf6\xf6\xef\x0a\xc9\xb7\xc6\x19\x9c\x7d\xd2\xc9\x89\xbe\xd2\xe9\xea\x2a\x01\xf2\xd9\x0f\x1d\x7f\x6f\x49\x8e\x65\xb7\x54\xe9\x9d\x2d\x73\xc7\x9d\x93\xda\xca\xa6\x56\x02\x70\x63\xdb\x08\x32\x9a\x2e\x3e\x1a\xb7\xab\x36\xed\xc1\xac\x78\x00\x4b\xe8\xb6\xd7\xd1\x37\x0d\x2a\xad\x3b\x3a\xa9\xb4\x30\x65\x09\x19\x2d\xde\x18\x3d\xb6\x6a\x59\x85\x16\x45\x55\x7c\x83\x4b\x86\x80\x98\x30\x2e\xdf\x24\x6a\x70\x94\x06\x64\x6e\x11\x2a\x63\xb9\xdb\x81\x37\x44\x90\x61\x8a\x0b\x27\xc9\x2a\x57\xad\xeb\x7c\x30\x57\x03\x16\x80\xcc\x8b\x0a\xf4\x95\xf2\xa3\x52\xce\xb8\x32\x1d\x68\xae\x93\xcf\x69\xd5\x5e\x57\xb8\xd6\x71\x5e\xef\x0d\xc8\x6b\x69\xe2\x6d\xe2\x3e\x37\x26\xd9\x6a\x8a\x94\x2a\x69\xa8\xae\xd7\x7d\x43\x12\x1a\x37\xf7\x2d\x12\x96\x12\x78\x75\x3e\xba\x7a\xe5\xc2\x9a\x2d\x01\x28\xec\x49\xbd\x5b\xb8\x0a\x0d\x9d\x1b\x29\xc3\x40\x29\x9a\x9b\x38\xda\x4d\x25\xc7\xb9\xae\x2b\xfa\x85\x2d\x57\xd8\xb2\x9c\xa8\x57\x2b\x1a\x4f\xcc\xd7\x2d\xdd\xfc\xb6\x56\x93\x6f\xbf\xe4\x4c\x73\x9c\xa0\xb5\x78\xca\x8d\x1d\x6a\x26\xb8\x52\xdf\xac\x9d\x8d\xe8\x6b\x4d\xf0\x15\x79\xe6\x6a\x7c\x8f\x1b\x42\x0d\x9b\x6e\x48\xa9\x4b\xdd\x06\x13\x36\x65\x09\x12\x93\x40\x47\xcb\x15\xb1\xd6\x4f\x13\xc5\x35\xdd\xf4\x5f\x33\x9d\xe9\x0a\xa5\xe4\xf7\xba\xa0\xfe\xda\x5b\x72\xa8\x10\xd6\x96\x1e\x45\xe9\xb2\x76\x5a\x90\x2e\xdb\x01\x50\xf3\x9c\x36\x68\x89\x65\x3b\x5b\x97\x00\xbe\xc9\xcc\xb6\xbe\xa8\x29\x02\x2a\xfa\xef\x67\x5f\x37\xfe\x35\x33\x59\x85\x81\x8e\xdd\x50\xcf\xe6\x74\x4d\xb6\x3b\xfd\xaf\xd9\x19\x92\x28\xc6\x6a\xf4\x23\x90\xc4\xdf\x68\x2d\x21\xf9\x32\x62\x0e\xeb\x1a\x84\xf4\x9a\x92\xf7\xc0\x41\xbe\x8a\x37\x28\xae\xbb\x33\x85\xf5\xce\x5a\x82\x73\xde\x4b\xfe\x77\x4e\x65\xdf\x03\x16\x24\x70\x6e\xc9\x33\x80\x1f\xab\xa6\x4b\xb9\xd5\x1c\x24\x1e\xab\x5b\x14\x05\x7e\x76\x95\x5f\x73\xc6\x67\xda\xa4\x76\x3b\x01\xee\xb4\x6f\x72\xad\x8d\x38\x9b\x7a\x14\xdf\xb6\x2e\xb0\x3d\xd0\x67\x6a\x9a\x4c\x3d\x1a\x8c\xed\xa7\x4e\xbc\x67\x13\xf5\xec\x94\xa2\xda\x37\x4b\xbd\x62\xe3\xd0\x33\xba\x41\xdd\xd7\xbc\xa7\xbe\x57\xb6\x88\x28\xc4\x41\x79\x3c\x7c\x1d\xf4\x49\x6d\x22\xda\x55\xbe\x97\x6b\xbc\x88\xb0\x4d\x66\x6a\x6e\x62\xcd\xe8\x64\x46\xe7\x51\x36\xba\x37\x57\xf5\x53\x22\x35\x62\xda\x47\x69\x73\xa3\xbe\x71\x5f\x2e\xa1\x29\xc9\x31\x4a\x16\x79\x91\x73\xfd\x94\x7d\x33\x77\xb2\xd9\x4f\x67\xfa\x90\x33\xcc\xe0\xe3\x94\x8c\x89\x96\x77\x39\xf4\xfc\x55\x5e\x9f\x23\x42\x5d\x0c\xce\xb2\x17\xcb\x41\xd1\x31\x87\x7f\xbe\x10\x17\x38\xb3\xe9\xf3\xb1\x81\xc3\xcb\xdb\xf0\x42\x51\xed\xc9\x0c\x61\x34\x13\x9c\xbc\x6f\xb4\xd8\x0b\x9a\x81\x32\x03\xba\x2f\xfe\x7f\xf6\xfe\xbd\xb9\x6d\x23\x69\x14\x87\xff\xf7\xa7\x80\x50\x75\x74\x88\x13\x60\x84\x1b\xc1\x4b\x96\xab\xd7\xb1\x93\xc7\xce\xb1\xb3\x2e\xcb\xf1\xf3\xee\xa3\xa3\xda\x82\xc8\x91\x08\x1b\x04\xb8\x00\x48\x5b\x96\xf8\xdd\x7f\xd5\x3d\x03\x60\x70\x07\x65\xda\x91\xb2\xa9\xc4\x14\x89\xb9\x60\xba\xa7\xa7\xa7\xbb\xa7\xbb\xe7\x8c\xfb\xe5\xd4\x0c\xab\xd1\xa4\x5d\xe8\x2c\x8d\x30\x29\xf6\x58\xb9\x37\x32\xef\x56\x75\x67\x89\xa0\x20\x0b\x04\xa4\xa8\x71\xa1\x28\xa3\x1a\x45\x0d\x67\x09\xf9\xe4\x25\xcb\x70\x93\x14\x9b\xe4\x4f\xf3\xda\x05\x7b\x38\xc3\x02\xc3\x54\x4d\xa8\xe7\xd1\x20\xbd\xa1\xfc\xf8\xf8\x88\x0a\x77\x5a\x72\xa3\xa9\xc8\x36\x8e\x8f\x07\x47\x83\x30\xaf\x1e\x56\xaa\xc7\xec\x68\x3c\xad\x1b\xe4\x75\x83\x4a\xdd\x22\x2d\x1e\x1f\x0f\x06\x47\xee\xdd\xdd\x11\x2f\xf5\xe2\x9f\x33\x18\x95\xe3\xe3\xa3\x41\x7c\x7c\x9c\x97\x65\xcb\x47\x51\x90\x78\xfa\x48\xeb\x05\x62\xb9\xb7\xa0\x5e\x47\x6a\x0d\x22\xba\xa8\x18\xd7\x37\xa8\x08\x1e\x44\x68\x83\x3b\x4b\xf2\x8b\x3b\xa7\x49\xbe\x79\xd4\x9d\xdd\xc2\x32\xa4\x95\x95\x97\x28\xe2\x2d\xa7\x20\xae\xfe\x56\x1b\xf8\x53\x23\xa8\xf2\x61\x91\x54\x2b\xaf\x48\x98\x9d\xe7\xb0\x57\x11\xa5\x98\x4f\xaa\xee\x80\x24\x2b\x6c\x68\xf2\xdd\xce\x57\xbb\xb5\xf4\xfe\xa7\x95\x45\x39\xa9\x8f\x67\x96\xae\x22\x3a\x7e\x49\xe1\x6e\x30\x89\xee\x67\x47\x66\x29\xda\xff\x30\x5b\xd0\x1e\xc6\xdd\x0f\xe1\x25\x3a\x0f\xaf\xdd\x39\x65\x28\xc2\xaf\xf2\x4e\x2d\x1a\x94\xd4\x62\xc5\xf4\xc6\xa2\xfd\xec\x4c\x80\x96\xbf\xd4\x1d\xae\xee\xb4\x4f\x12\xa0\xaa\x8f\x26\x84\x94\xd6\x87\xc9\x15\x3b\x2c\x71\xb8\x6f\xad\xef\xbc\xbb\x59\xd3\x29\xbf\x20\x86\x49\xec\x9b\x78\x9a\x6e\x53\x55\x7d\x47\xfd\xf7\xfa\x4d\x44\xaf\xbc\xcf\x68\x52\xbb\xf2\x3e\x37\x6b\x40\x86\xfe\x7d\x54\x20\x90\x0f\xaf\x36\x5f\xbe\xdc\x9c\xed\xd5\x41\x5d\xdb\x9f\x03\xee\x39\xaf\x67\x98\x11\xb1\x52\xd5\xa3\x72\x6c\x08\x3a\x15\x36\xec\xd2\x6f\x30\x49\x51\x49\xa3\xda\x74\x6b\x62\xdc\xb5\xee\x00\x3a\x55\xd6\x01\x87\xa0\xab\x31\xab\x96\x2b\x63\xef\x6a\x6e\xb8\x6a\xd2\x31\x2e\xd1\xc7\x38\x15\xed\x7f\xc2\x5f\xa9\xe4\x8f\x39\x2f\x68\x42\x31\x30\x38\xab\xf3\xa6\xf0\x34\xab\x4b\x23\x2f\x5c\x78\xf3\xbc\x5a\xfa\x20\xad\xc1\x97\x69\x56\xe1\x8c\xff\xce\xca\x71\x69\xe7\xc5\xec\xa7\xa8\x63\xf0\x89\xe8\x09\xd9\x3a\x75\xee\xc8\x06\xc4\x7e\x67\x3a\x53\x1a\xcc\x98\x6a\x4d\xfc\x77\xa6\xf7\x60\x6e\xab\x54\xe7\xc1\xab\xf8\xfb\xe9\x3b\xdc\xb4\xfa\x6b\x78\xd9\xae\xf5\x14\x54\x1d\xb1\x51\x45\xe1\x89\xd1\x7c\xb8\xd8\xcc\xe9\xa0\x28\x5e\x64\x87\xb9\x79\xee\x1d\xf5\xfc\x42\x51\x54\xb7\xa0\x53\x7d\x7f\x6d\xc9\x6d\xd3\x96\xdc\x7b\xab\xcf\x7c\x41\xdc\x17\xe3\x27\xe4\x5c\x23\xff\xba\x38\x49\x3d\x73\x6a\x90\xce\xac\xa5\xf5\xd8\xf6\xae\x06\x01\x9e\x9a\x81\x80\x7a\xcb\xef\x53\x27\x2b\x3c\xeb\x3f\x19\x90\x1f\x4e\x15\xd6\xbd\x72\x6e\x5c\x3c\xa1\xe7\xee\xc5\x0c\x3e\x4e\xe1\xe3\x07\x63\x6a\xec\xf2\x60\xf9\x5b\x00\x69\xc6\x77\xd0\x8f\xf4\x26\x1e\xb8\x8d\xd8\x60\xcc\x7c\x4a\xd5\x39\x5e\x2a\xe6\x9e\xd3\x8b\xdd\x4e\xa9\x68\x45\xb4\x40\x0d\x9b\x20\xf9\xbb\x81\xd9\xb7\xc3\x14\x32\xbe\x29\x7c\x1d\x05\x70\x56\xd3\x31\xfb\xbe\x38\xfb\xac\x09\x9b\xf9\x30\xb3\x4a\xa7\xa3\x69\xa5\x01\xc2\x6a\x65\xd7\xc2\xe4\x97\x2e\xf0\x02\x59\x1a\x08\xc9\xc2\x18\xdc\xaa\xac\xc8\x0a\xa3\x1a\x61\x7e\x1b\x8c\xec\xa8\x61\xb3\xaf\xcc\xce\xbe\x76\x23\xd4\x1b\x5a\x72\x57\xf0\xfb\x89\x32\xb1\x2f\x4d\xb8\x59\xca\x5d\xc1\xab\xb1\xb8\xed\x4c\x0a\xc4\x3c\x16\x77\x77\x99\x2c\xf8\xa4\x7a\x7e\x91\x67\xa2\x2e\xcf\x71\x90\x69\xbe\xf4\xee\x2e\xe0\x5a\x6e\xa1\xe7\xd9\x0c\x04\xca\x66\xe2\x38\xe2\xf7\x55\x30\x30\x53\x1f\x79\x59\x29\x98\x24\x6a\xf1\x55\x5e\x63\x72\x61\x53\x2d\x9b\x25\x36\x71\x93\x5d\x42\x2e\x11\x46\xa7\xa5\x02\xba\xaf\x35\x54\x6c\xe2\x0e\x4b\x45\xa1\x88\xbd\xad\x80\x6e\x11\xa4\x32\xc6\x62\x5c\xee\xf5\xf6\x05\x3e\xc1\x0b\x2f\x5e\xfb\xee\x0d\x13\x17\xd2\x50\xf7\x23\x9e\x4e\x3c\x6b\x97\x54\xda\xe5\x86\x06\xb1\x89\x60\x6f\x88\xcb\x46\x86\x34\x1e\xbd\x6e\xb5\x0b\xc6\x09\xaa\xec\x84\x3e\x99\x74\x1d\xe7\x54\x92\x2d\xfd\xa3\x81\x9b\xbf\xcc\x6d\xec\x39\x14\x9d\x32\x29\xf3\x0b\xda\xc7\x58\xf1\x2b\x93\xb2\xef\x67\xab\xa8\xa1\xc1\x46\x53\xc5\xd9\x32\xfc\xe4\x05\xd7\xcf\xe9\xda\x0f\x6f\x56\x34\x48\x9e\xd3\xc4\xf5\x7c\x3c\xb5\x3d\xac\x19\xe2\xd7\xf0\xb2\x97\x15\x02\xf4\x06\xf2\x21\xbc\x94\xd5\x74\xbd\xf9\xae\x17\xbc\x5c\xc8\xca\xde\xe6\x08\x54\xff\x3e\x84\x97\xa2\x43\xe7\x21\x9c\x0d\xea\xb2\xbd\x27\x4b\x2d\x63\x27\x5a\x44\x63\x9a\xe0\xad\x41\x55\xfd\xef\x50\xda\x5f\xbc\x97\x67\x82\xfb\x9d\x7c\x14\x1a\xf5\x26\x73\xb8\x9f\xde\xf4\x21\xbc\x6c\x3b\x3a\x43\x51\xff\x2b\x1c\x15\x58\x5e\x0e\x0c\xea\xfa\x2d\x55\x99\xdc\xbd\xdd\x13\xba\xcf\x94\x45\xca\x43\xa7\xd3\x3e\x5c\xc0\xfd\x23\x3c\x0b\xbe\xd1\x11\x77\x71\xc9\xc6\xbd\x97\x2c\xd6\xf2\x92\x66\xc7\xc8\xfd\x56\xde\xb7\xf7\xc1\xce\x57\xdd\x6d\x07\xed\x22\x77\xe3\x78\x60\x09\xc9\xdb\x2a\x0b\x88\x00\x86\xfd\xf3\x02\xa3\xa9\x31\x6b\xcd\xc2\xab\xde\x33\xf0\x21\xbc\xe4\xd7\xc6\x05\xf4\xd3\x73\x01\x89\xbf\x9e\xfd\xe3\x37\x12\xa3\xcf\xa3\x77\x75\xc3\x2f\xf6\xc8\xca\xd1\xc7\x58\x35\x95\x62\x42\x24\xfe\x32\x96\xd8\xa8\x36\xbe\xbe\xbe\xb6\x81\xb5\xcf\x36\x97\x2b\x71\x84\xad\x61\x47\x02\xdb\x2f\xb1\xa8\x82\x21\x30\xa9\x5c\x38\xd9\xcb\x36\xca\x49\x2a\xdd\xe4\x3a\x76\x81\x47\x48\x53\xf2\x3d\x0c\xc6\x88\x14\x0a\xa3\xeb\xb3\x35\x36\x22\xa5\x65\x17\x7d\x88\x5e\x79\xf7\x0e\x45\xfa\xea\x0d\x4b\x40\x75\xeb\x8a\x17\xa7\xa4\xc7\x6e\x51\xac\x9e\xba\x66\x75\xbd\x4a\xdc\x32\xf6\x73\x3d\xcd\x48\xa7\xc6\xb0\xfe\x18\x56\xd2\x1e\x87\x15\x87\x3c\x1b\xea\x21\xd0\xf4\x8a\xeb\xaf\xc4\x75\xb2\x44\xa4\xfb\x88\xd6\x24\xcf\x70\x9a\x49\xd9\x6c\x4f\xa2\x3c\x87\xde\x3d\x84\xf5\x36\xae\x4d\xcb\xfa\x36\x77\xac\xdb\x3f\xd1\x44\x46\x7c\x22\x08\x7f\x49\xf4\x7f\x84\x44\xff\x6d\x4f\x42\x6a\x1c\x8b\xff\x92\xcf\x1f\x90\x7c\xbe\xa5\x51\xfc\x15\x42\xc3\x9f\x4c\x92\x8a\x36\xc1\x1f\x78\xfc\xfe\xbd\x44\xed\xce\xf3\x76\x7e\x55\x6e\x4f\x8e\xfc\x07\xd2\xc0\x1f\xe4\xc5\xfb\xd5\x3c\xb7\xec\x7f\xeb\xc5\x2c\xb8\xaa\x8e\xdf\x96\xfc\x29\xba\xb9\x5a\x0a\x06\x67\x50\x6d\x80\x37\x4a\x8f\x9d\xcb\x85\x93\x48\x55\x78\xfc\xde\x2e\x2b\x6c\x1c\x7d\x5c\x1e\x52\xaa\xee\xe3\xf5\x50\xe9\xb6\xe8\xf8\x70\xaf\xe5\x74\x92\xde\x3c\xfd\x87\x21\x8b\x1d\xc4\xbc\x73\x2f\xa7\x72\xe2\x5e\xc7\x32\x27\x91\x77\xee\x75\x73\xce\xa5\xeb\xc6\xbc\x43\x85\xcc\x4a\xd7\xb8\xef\xde\xee\xd2\xd3\x05\xf1\x60\x8f\x96\x8e\xb8\x92\x62\x84\x76\xa2\x32\x90\xf0\x72\xdd\x5d\x5b\xd4\x46\x4c\x13\x18\x7c\x7d\x64\x45\x06\x5c\xcd\x7e\xd8\x63\x8a\x70\x3f\x8b\x4f\x30\xcc\xf8\x8f\xf4\xc1\x6a\x4f\xba\xdc\xaa\xf3\xb4\x26\x73\x8e\xe9\x3c\xa2\x15\x9e\x11\x51\x77\x11\x0f\x64\x96\x02\x9d\x55\x91\x79\xe2\xe7\x97\xf1\x7b\xd7\xf7\x30\x51\x23\xff\xcd\xef\xb8\xce\x9e\xb0\x44\x57\x2c\x88\x17\x45\x82\x33\x1c\x40\xc5\xac\x04\x4f\xc9\x26\xf0\x43\x77\xc1\x93\xf0\x65\x33\x3a\xf7\xa9\x1b\xbd\x83\xce\xde\x64\x49\xdf\x2a\x1d\xa4\xa3\x4b\xf2\x3a\xb0\xf0\x11\x1e\x86\xd4\x5d\x6e\xef\x12\xeb\xec\x0f\x47\xda\x51\x0e\x0e\x0c\x77\x4b\x23\xef\xea\x06\x87\x59\x9f\xb2\x2f\x3f\x9c\x83\x41\xa9\xe9\xde\x75\x4d\x93\x7f\x7c\x0a\x78\x5a\x67\x85\xf8\x61\xf8\x71\xb3\x1e\xc8\xee\xc2\xc5\x84\x6b\xf8\x72\x59\x11\xd2\x0c\x16\xe6\x41\x4d\x14\x35\xc0\xa3\xa9\x33\xea\x5f\x0d\x6a\xae\x7b\x49\x1d\x23\x99\x5b\xed\x42\x06\x92\xe7\x67\xae\x08\xc0\x00\xc8\x4f\x04\x85\x5b\x5d\x28\x9f\x13\xe8\x9b\x01\xcf\x5f\x2d\xab\x01\xf6\xd1\x86\x46\xbd\x03\x8d\xee\x4e\xd9\xd5\x1c\x9c\x17\x41\x63\xd3\xa6\xa8\x1d\xef\xaa\x4e\x99\x5e\x33\x65\x15\xf5\xb3\x76\xb9\xa7\x99\x07\xdd\x60\x51\xe7\xd6\x9a\x44\x9b\x64\xa9\xa5\x95\xc4\xca\x5f\x2d\xdf\x34\x36\x48\x4f\xc0\xd5\x5b\x1a\x6c\x56\xec\x76\x78\x00\xf1\x9a\xd6\x5d\xa4\x9e\xc9\x3d\xbb\xb6\x3e\x11\xbc\x9e\xfd\xb9\xc1\x82\x79\x09\x34\x23\x6b\xbd\xa6\xf5\xf8\xc2\x4c\xb7\x98\xcb\xb5\x8a\x34\xd6\xe8\x91\xe1\x8d\x43\xda\x17\x75\x58\xbd\x0b\x7b\x51\xe4\xde\xec\x8b\x3c\x6c\xf3\xc8\x70\xc7\xe0\xec\x8b\x3a\xa8\xdd\x81\xb9\xb9\xbb\xa2\xe8\x78\x5b\x87\x3c\xdf\xd3\xd8\x01\x48\x05\x79\x59\xb3\xc7\x85\xbf\x1c\xda\x9e\x9d\xa6\x0d\x3a\xb1\x18\xcc\xa9\xaf\xb9\xbe\xdf\x91\xe9\xa8\xae\xc5\x43\x44\x61\x3b\xb0\x6b\x2f\x71\xef\x45\x34\x59\xc3\x87\x08\x73\x1b\xd9\xe4\x10\xf7\x26\x9c\xb4\x49\x17\x36\x97\x9b\xe0\xe3\x9e\xac\x8b\xb5\x79\x64\x38\x64\x70\xf6\x45\x1f\xd4\xee\xc2\x9c\xef\xc6\xb1\x77\x55\xcf\xf7\x5b\xa8\x30\x6d\xf6\xc8\xf0\x97\x41\xdb\x17\x85\xbc\x41\x17\x16\x99\x07\xe0\xbe\x14\xc8\x5b\x3d\x44\x1c\x76\x41\xbb\x49\xea\x19\x57\x3b\xb4\xd0\xea\x21\x42\xdb\x42\x31\x29\xac\x7d\x09\x86\xd5\xef\xc4\x20\xcb\x5b\xbf\x37\x0a\x79\xb3\xc7\x86\xc3\x14\xda\xde\x48\x64\x0d\xba\xb0\x18\xc7\x1a\x4f\x2e\xd0\x64\x00\xc9\xd2\xd1\x25\x05\xff\x7b\xb1\x8a\x77\x35\x60\xae\xf7\x5e\x8c\x7f\x07\x34\xbb\x05\x89\xee\x06\x54\xb9\xbb\x2b\xe2\x9a\xa9\xb1\xe7\x17\xaa\x3b\x3b\xd2\xd5\x78\x76\x64\xa8\x61\x6a\x2d\x49\xa2\x1b\xcc\x64\x07\x75\x7c\x35\x9a\xd1\xf3\xb3\x9b\xd5\x65\xe8\x13\x2f\x61\xf9\xef\x2e\x06\xca\x8f\x47\x03\x77\x36\xf0\x67\x11\x4b\xde\xa4\x28\x64\x11\x06\x78\x49\x7f\x40\xd6\x9b\x78\x39\xf0\x09\x4e\x94\xa2\x1e\x25\x77\x77\xa9\x97\xe9\xd1\x6c\x96\x28\x3f\xc2\x2b\x95\x1f\x77\x2c\x5b\x9d\xa7\xdc\xc6\x30\x84\x70\xe6\xed\xae\xbc\xc0\xf5\xfd\x9b\x5b\x18\x80\x7b\x77\x07\x9a\xe6\x6c\x16\x11\x06\xc7\xdd\x5d\xfa\x6d\xa0\x64\x35\xbd\xab\x41\xac\xb0\x3c\x53\xe1\x2e\xf5\x74\x0f\x76\x08\xa3\x00\x72\x9a\x8b\x2a\xa0\x9f\xa4\x77\x37\x6b\x8a\xf9\xaf\x06\x32\xd7\x70\x25\x37\x49\xe8\x6a\x9d\x48\x49\x28\x2d\x68\x9c\x44\x9b\x79\xb2\x89\xa8\x14\x84\x81\x86\x20\x5f\xfa\x34\x4b\xa7\x25\x2b\x3b\x78\x7f\x3a\x23\xa2\xe7\x2a\xcc\x8e\xa1\x9c\xeb\x17\x24\xa2\x6b\xdf\x9d\xd3\xc1\xc9\xff\x3b\x39\xb9\x56\x65\x4d\x56\xc8\xc2\x8d\x97\x18\xbc\x32\x50\x76\xf7\x30\x68\xcd\x63\x96\xec\x60\x16\xb4\xbb\x75\xbc\x40\xaa\x22\x8c\xb8\x06\x41\xa7\x77\x42\x4a\x85\xd9\xf0\xf6\xdc\x42\xf3\x76\x8f\x6b\x35\x0b\xf0\xf6\xed\x35\x6d\xd1\xb1\x9e\x17\x74\xbe\x27\x43\x84\x16\x8f\x0c\x7b\x00\x63\xef\xfe\xe6\x88\xb1\x6a\x82\x9d\x0c\xfe\x28\x5c\xef\x8b\x32\x68\xf2\x10\x71\xd6\x46\x19\x0c\xaa\x75\xf8\x89\x46\x1a\x0b\x10\xd0\xbc\xb8\xce\x11\xa3\x5a\xb1\x57\x1f\x0f\x11\x1f\xcd\x7d\x22\x24\x6f\x00\x90\x33\x84\xe3\x65\xfc\x5f\x0c\x13\x3d\xdf\xd1\xd0\xfe\x5e\x73\xc0\xbe\xd1\x5a\xa3\xdb\x1e\xd3\x90\x75\xf3\xd8\x67\xe2\x2c\xc3\xc7\xbd\x27\x23\xed\x62\xff\xf9\x48\xa2\x0d\x4d\xb7\x1b\xef\x4a\x5b\x47\x34\xae\x64\x3a\xdc\x6f\x6a\x1a\x7a\x7c\xdc\xb3\xf4\x2e\xda\x50\x96\x87\xf5\xe5\xd5\x9b\x14\x47\xf7\x9c\xae\x9a\xbe\xba\xe6\xed\xdf\xfd\x0d\xfa\x78\xd1\xd7\x63\xc3\x36\x8e\xb9\x37\x3e\xa1\x76\x07\xc6\x58\x7c\x92\x76\xb9\xaf\x71\x3a\x6f\xf7\x10\x31\xd8\x0d\xf1\xbd\xc0\x7d\x84\xb0\x06\x8b\xfb\xcc\x2d\x6b\xf5\xe8\xa0\xf5\x41\x65\x6a\xb8\x5f\xb1\x19\x5a\xde\xea\x21\x42\xdb\xdc\x67\x06\x6b\xcf\x3e\x79\xfd\x2e\x0c\x86\xd1\xca\x4d\xb4\xcb\x9b\x84\xfe\xa5\xf8\x3f\x22\xc5\xff\x1e\xaa\x3b\x9b\xea\x9f\x60\xa6\x67\x6e\x93\xe3\xdd\xb9\xfc\x13\x23\x05\xf9\xff\x7a\x3f\xc9\xaa\xfc\xda\xfb\x49\xbe\x78\x92\xcd\xbf\x0b\x53\xcd\x43\xff\x53\x2b\xc3\x13\xf7\xee\x6e\xe0\xce\x74\xe5\x49\x3a\x67\xf1\x4c\xff\xd1\xfd\xfb\xcc\xd0\x4d\xfb\xf8\x38\xfe\x5b\x8a\x7c\xcd\xf8\x51\x71\x4f\xf0\xb1\x1a\xff\xf0\x03\x77\x17\xca\xe3\xda\x5f\xbb\xc9\x92\x5c\xf9\x61\x18\x0d\x5c\x45\x95\xa5\x3c\xb6\x3d\x38\x8f\x2f\x94\x9d\xe8\x60\x5d\xb4\x2f\xb8\x9d\x0e\xb0\x25\x7a\x5f\xb8\x65\x8b\xeb\x2a\x5c\xd5\xc9\x62\xa2\x81\xe5\x2f\xca\x7f\x08\x94\x5f\x47\x8b\x41\x46\x8b\x75\x99\xfd\x5d\x85\xd3\xfe\x40\x7e\xfd\xfa\xf5\x6b\xe9\xb9\x2a\xfd\xf3\x9f\xff\xfc\xa7\xfc\x15\xab\xe8\x5d\xe3\x12\x3a\x14\x81\x6e\xa2\xee\x2b\x25\xca\x75\xff\x22\xde\x87\x4e\xbc\x87\x8d\x9d\x2b\xd2\x98\x30\x51\x6e\x7a\x91\x5b\xb6\x30\xd4\x70\xe6\x92\x4d\xe0\x25\xb1\xea\xcf\x5c\xe2\x87\xc1\xf5\x2f\x61\xb4\xaa\x5d\x2f\xb1\x1a\xaa\x7e\x8f\x88\xb2\x12\xc9\xae\xc2\x20\x59\x6a\xe5\xc0\xcc\xbf\xf8\xea\x23\x21\xcd\xaf\xe5\xab\xd2\xf3\xe7\xd2\x8b\x17\xd3\xd5\x6a\x1a\xc7\xd2\xff\xfc\xcf\xd7\x70\xd7\xd7\x40\x49\xdf\x9c\xc5\xae\x69\x34\xa7\x41\x82\x6e\xfd\x7d\x04\x5f\x86\x94\x44\x75\x67\x6e\x74\x8d\x97\x6b\xa7\xa9\x6f\xfe\x6e\x1c\x1f\xb3\xf1\x1d\xcd\xf2\xc2\x73\xe3\xe2\x54\xfc\x31\xbd\xdd\xa9\xb8\x22\xcf\xf5\x0b\x05\xd7\x23\xbb\x85\x14\xca\x71\x51\x26\x61\xe2\xfa\xa9\x13\xb5\xfe\xb7\x41\x02\xd4\x98\xf5\xeb\x9f\x06\x03\x5f\x99\x66\xbf\xc3\xd3\xf8\x87\x60\x10\x2a\xd3\x58\x39\x8d\x4f\xfc\xa9\xae\x1c\x1f\x27\x7f\x23\xba\x71\x2a\xff\x4d\x32\xfe\x97\x3c\x45\x71\x2a\x0a\x37\xc1\x62\x60\xe8\xfa\xff\x49\x94\x1f\xe4\xff\x25\xd7\x9f\x18\x79\xf1\x6f\xee\x6f\x03\xaa\x9c\xea\xd3\x1f\xe8\xfd\xe7\xed\x4d\x86\xd1\x59\xb2\x0f\xe7\x4a\xf6\x65\x35\x7f\x31\x99\xff\x5c\x26\xa3\x4a\xff\xfb\x9f\xff\x3c\x14\xa7\xf9\x76\x4c\x06\x8f\x42\xf6\xb7\xc4\x64\xcd\x1e\xa2\x71\xa2\x15\xde\x5a\xcb\x78\xbd\x21\xf6\xfa\xb1\xd9\xbc\xaf\xfb\x77\x77\xdd\x8d\xa8\xda\xb3\xed\x26\x4c\x3d\xb6\x03\xed\xeb\x3d\xdc\x7b\xae\x3b\x5d\x7b\x96\x6e\xac\x01\xa3\xdc\x73\x15\x65\xcd\x1e\x17\xee\x96\x6e\xfc\x1b\x02\xdb\xb3\x4f\x5e\xbf\x07\x0e\xd7\x11\xdd\x7a\xe1\x66\x5f\x17\xa9\x42\xd3\x47\x87\xcb\x37\x19\xd0\xfd\xf1\x99\xb6\xe9\xc2\x69\xb2\xf2\xb5\xd8\xbd\xda\xd7\x4d\x25\x6f\xf7\xc8\xb0\x99\xac\xfc\x33\x04\xb7\x2f\x2a\x79\x83\x2e\x3c\x6e\x56\x6e\xb0\xbf\xb7\x4f\xd6\xec\x91\x61\x31\x83\xb6\x2f\x16\x79\x83\x0e\x2c\x7a\xc1\xbe\xae\x3e\xd0\xe2\x71\xe1\x0e\x61\xec\xd9\x9f\x17\xcc\x3b\x31\xe6\x7b\x01\xd5\xe2\xed\x75\x1d\xe2\xf2\xd2\xda\x06\x79\x77\xf1\xf6\xba\xcc\x17\xd5\x40\xd0\x3b\xdc\xbf\xf4\x8e\x87\xa1\x77\x1c\x36\xbb\x0b\xd3\x09\x8e\x8f\x6b\x34\x84\xd3\x0e\xcb\x5c\xcc\xa6\x32\x9c\xb9\x75\x5a\x0f\xa3\xb2\xb3\xed\xb5\x22\xe4\xff\x0f\xd5\x58\xc9\x6e\x2d\x7d\xe1\x06\x0b\x9f\x5e\xba\x51\x4c\x56\xee\x47\xfa\x13\xa8\xf7\x2f\xea\xec\x7f\x5d\xbd\x52\xd5\x85\xfd\x6e\x79\x77\x77\x5b\xba\xb8\xb4\x55\xad\xc9\xee\x5b\xd8\x9b\xe1\xa4\xed\x1e\x22\xdb\x69\x87\x78\x1b\x7e\xdc\xd7\x3d\x9f\x37\x7a\x88\xb0\xb6\xb1\x58\x06\x69\x6f\x2e\x0b\xd5\xbb\xb0\x17\x6b\xee\x55\x83\xf7\x05\xb3\xda\x54\xab\x3e\x44\xac\x75\xc1\xd8\x14\xed\x59\xaf\xd6\x65\x2d\x1e\x22\xa8\x2d\x04\xc2\xf6\xaa\xfe\x14\xc2\xea\x77\xa3\xef\x92\x5e\x85\x51\xed\x1a\xab\xd2\x08\xaf\xfb\x10\x31\xd7\x09\x65\xf2\x89\xd6\x7b\xab\xd4\x81\xc9\x2a\x3f\x4c\x38\x9b\x9d\xa8\xbd\x18\x04\xf7\xf5\x65\xe8\x46\x0b\x2d\xde\xac\xd7\x2c\xc5\x4c\x83\x7c\x9f\x55\xed\x6a\xff\x10\xd1\xd0\xb6\x50\x9e\xa5\x30\x9c\xe5\x28\xe8\xbd\x6a\xaa\x8d\xbb\x89\x0b\x04\xa2\xfd\x38\x10\x6b\xf1\x10\x11\xdb\x05\x2a\xf3\x89\xdc\x07\xd4\x47\xe8\xf9\xe9\xc5\x3f\xef\xe5\xfb\xc9\xeb\x77\xa3\x2f\xc4\x37\xf6\x3d\xf3\xe2\x72\x64\x32\x93\xd3\xe7\xf2\x6c\x96\xdc\xac\x69\x78\x25\x31\x35\xe3\xf8\x58\x8e\xf1\x4b\xb9\x20\xd3\x3f\x4e\xc5\xee\xd3\x01\xb3\x9a\x74\x37\xad\x29\xa4\xc7\xc7\x2d\xaf\xc3\xfb\x5e\x98\xd8\x1f\x46\xb3\xd9\x2c\x7b\x7e\x94\x7e\x27\xeb\x28\x4c\x42\x68\x76\x9a\x8e\x6d\x9a\xbd\x50\x19\xd0\x62\xe0\xd4\x5f\x2a\xda\x43\x50\xd1\xfa\x1c\x0d\x1d\x15\x27\xc4\x55\x8e\x8f\x01\xa2\xa3\xd9\xcc\x3d\x3e\x96\x39\x61\xcf\x66\xb3\x64\xe0\xde\x4b\xe7\xf3\x62\xd6\xe8\x5b\x1d\x0a\x79\xb1\x16\xbb\x2b\xaa\x85\xd1\x3e\x52\x71\xb1\xc9\x43\xe4\x62\x3d\x61\xde\x47\xcc\x2b\xb5\x79\xa4\x50\xf7\x87\xf5\xd1\x41\xf8\x21\xf4\xf6\x75\xbc\xc6\x26\x8f\x0d\x4e\xdf\xfd\x72\x03\x22\xe9\xbc\x94\x12\xe3\x03\xa6\x8a\xfc\xcb\xe7\xe0\xd1\x6e\x2c\xa6\xa2\xc6\x33\x97\xfb\xc6\x9d\x1b\x17\x3f\x16\x1d\x0f\x42\x92\xb8\xd1\x35\x4d\x14\xe2\xc5\x03\xd9\x95\x95\xbb\xbb\x78\x10\xde\x6b\x5b\x01\x12\x7a\x06\x14\xf4\xad\xf6\x15\x3f\xfc\x44\xa3\xb9\x1b\xef\x7b\x8e\x92\xb7\x7b\x88\xab\xb2\xb9\x4f\x01\xde\x9e\xbd\x66\x2d\xba\x56\xfb\x1e\x6e\x0c\xfe\xc3\x34\x66\xb6\xa0\xad\x7f\x77\xdd\x6c\x71\x1f\x37\x06\xff\xd1\xb9\x31\xf8\x7b\xb8\x31\xf8\x9d\x6e\x0c\x2b\xf7\x1e\xae\x40\xbc\xd1\x43\xc4\x5b\x07\xac\xfb\x03\xfa\xf8\xa0\xa4\x0b\xcf\xad\x83\x33\xa2\xf1\x3a\x0c\x62\x6f\x4b\x4b\x75\x1f\x22\x84\xcd\x7d\x72\xf8\x7a\xf6\x88\xb5\xbb\x30\x86\x62\xaf\xe6\x2e\x6a\x8d\x81\x25\xa1\x58\xa8\xfc\x10\xf1\xd6\x03\xce\xb9\xeb\xd3\x60\xe1\xf6\x51\xf1\xca\x2d\x1e\x29\xc4\x0b\xef\xea\xaa\x3f\xb4\x58\xfb\xb1\x42\x5a\x1b\x9c\xd3\x0a\x6d\x53\x88\xce\x23\x81\x98\x79\xcb\xf6\x87\x97\xd7\x7f\xac\xd0\x46\xe1\x4a\x0b\xc2\x4f\x7b\xc0\x9b\xb6\x78\xc4\x10\xef\x07\xed\x63\x85\x34\xde\x5c\x26\x51\x43\x76\xc1\x7a\x68\xb3\x16\x8f\x14\xe2\x24\xac\x09\x77\x6d\x03\x38\x6d\xf0\x78\xe1\xdd\x6b\xed\xf2\xfa\x8f\x16\xda\x7d\x20\x7d\xac\x50\x6e\x02\xef\x73\x0f\x38\xb1\xda\xe3\x04\xb1\xf7\x2c\x3e\x3a\xf8\xee\xe1\xbf\xff\x08\x7d\xf7\x83\x7d\x1c\xf7\x83\x6e\xaf\xfd\x20\x4c\xb4\x7d\x92\x1b\xb1\xfa\x8f\xef\x98\x3b\x08\x93\x9f\xff\xdd\x1f\x71\x50\xbb\xc3\x03\x25\x08\xf7\xb0\xe1\x41\xe5\x47\x87\xb0\x7d\xd0\xd5\x49\x66\x7d\x76\xca\xc7\xb8\x3f\xb2\xd3\x60\xad\x5e\x6b\x69\xe1\x3d\x79\xbb\x87\x08\x71\x73\x9f\x6c\xdc\x4f\xfb\x77\x9a\x36\xe8\xc2\xe3\x1a\x1a\xd6\x3b\xdc\xb4\xa1\x31\x6d\xf6\xc8\xb0\x98\x41\xdb\x17\x8b\xbc\x41\x17\x16\x6b\x0d\x41\xf5\x3c\x29\x7c\x98\x26\xa0\x16\xa4\x45\xfd\xd1\x15\x75\x20\x6a\xed\x5e\x53\x2d\xf1\x12\xbf\x56\x61\xc9\x4b\xeb\x1a\x7c\xab\xdb\x08\x33\x2c\x74\xdd\x92\x97\x8d\x89\x46\x57\x61\x54\xab\x51\xd7\xdd\xbc\x91\x56\x7f\x88\xb3\xde\x0a\xa6\xb7\xa6\x1a\xbb\xcf\x6b\x4f\xee\x20\xb6\x7c\x8c\x50\xdf\x03\xdc\x07\x09\x67\x73\x9f\x0c\xca\x9e\x1d\x42\xe5\x2e\xac\xf9\x9b\xc8\x6d\xba\xa1\xc5\x0b\xae\x7c\x3a\x4f\x6a\x18\xdf\x5f\xee\x14\x8f\xce\x9d\x22\xcd\x60\x62\xcc\x66\xe8\x57\x71\x1a\x4f\xd1\xb3\x22\xa3\x00\x65\x10\xdf\xcb\x8d\x22\xeb\x80\xb9\x49\x7c\x2b\x67\x8a\x7b\xc6\x4a\x3f\xd2\x38\xe9\xf5\xbe\x41\xd2\xeb\x7e\x11\xd2\xff\xde\xd0\xcd\xbe\x6c\x92\xb5\x79\x5c\xf8\xe3\x70\xf6\xec\x11\x6b\x77\x60\x2e\x72\x83\xeb\x7d\x31\xc7\xda\x3c\x2e\xcc\x71\x38\x7b\xf6\x88\xb5\xbb\x30\x47\x17\x9b\xf9\xde\xa8\x63\x8d\x1e\x22\xee\xda\x61\x45\x35\x75\x6f\xaf\x92\xbc\xdd\xe3\x83\x78\x4d\xf7\xd6\xe6\x79\xa3\x87\x08\x6b\xcb\xca\xe0\x90\xf6\x5d\x1a\x58\xbd\x13\x7b\x5b\x1a\x35\x38\x08\xb6\xa1\x8f\xb5\x7a\x88\xf8\x6b\x83\x36\x5e\x6e\xae\xae\xea\x55\xc8\x16\x68\xd3\x56\x0f\x11\xda\xe6\x3e\x33\x58\x7b\xf6\xc9\xeb\x77\x61\xd0\x0b\xae\x37\xbe\xdb\x74\x15\x4f\x26\xb1\x9f\xf8\xde\x65\x6d\xa3\x07\xa3\x8c\xc7\xbe\xb7\xf7\xa6\xc0\xda\x3c\x44\x3a\x68\x85\x34\x8c\xee\xb1\x23\xa4\xad\x1e\x1b\xb4\x89\xbb\x77\x58\x3e\x36\x79\x7c\x70\xc6\x0d\xb7\x71\x56\x2d\x49\x58\xf7\xd1\x01\xe8\x25\x3e\xdd\x3f\x09\x50\xd6\xec\x21\xc2\xdb\xdc\x67\x0e\x6d\xcf\x4e\xd3\x06\x5d\x58\x0c\xaf\xaf\xfd\x7b\x9a\xe3\x8a\x6d\x1f\x22\x3e\xbb\x21\xbf\x17\xc8\x0f\x12\xd6\x16\xda\xe1\x90\xf6\xa5\x1c\xac\xde\x85\xbd\xc8\xab\x37\x54\xb7\xac\x3c\x68\xf2\xc8\x30\x87\x50\xf6\xc5\x5b\xe4\xad\x3a\xb1\xb6\x09\xe6\x0d\x5e\x55\xad\x98\xe3\xcd\x1e\x1b\xf6\x52\x68\x7b\x63\x90\x35\xe8\xc0\xe2\x26\x58\xd0\x28\x9e\x37\x04\x85\xb6\xe0\x51\x68\xf8\xb8\x30\x29\x42\xdc\xb3\xdb\xbc\x49\x27\x36\xf7\xe7\xfc\xac\xcd\x43\xc4\x61\x9b\x8b\xc7\x9f\xd9\x1d\x6c\xb3\x5e\xdf\x2b\x96\x2f\x6f\xf7\x10\x21\x6e\x59\x11\x39\xbc\x7d\x17\x44\xda\xa2\x0b\x93\x49\x6d\x5a\xc4\x32\x91\x24\x8f\x2d\x15\x22\xc2\xd5\x17\x57\x49\x57\x2a\xc4\x5a\xff\x9f\x16\x3a\x7b\x98\x9e\x40\xcd\x7d\x7e\xea\xdd\xdb\xa7\x2e\x4c\x79\xc9\x32\xdc\xec\x6b\x81\x4c\x5b\x3d\x32\xac\xa5\xb0\xf6\xc5\x1d\xab\xdf\x81\xc1\xcf\x9a\x37\xaf\xdf\xa2\x0e\x9a\x72\x33\xbb\xfe\x84\xb2\xe8\xee\x73\x97\xe0\xcd\xe6\xaa\xcc\x5e\x8f\x7f\x34\x2f\xd6\xb2\xab\xa7\x62\xe5\x02\x6f\x63\x70\xe7\xc9\x40\x21\x1f\x42\x2f\x18\xc8\x92\xac\x74\xe6\x66\x8c\xd5\x5b\xec\x79\x1a\xee\xee\x75\xa4\xf9\xf9\xe5\x3c\x0c\xbe\xd5\x41\xe6\xe7\x7d\x9c\x8e\x3e\x3f\x3a\xaf\xa3\xcf\x7b\xb8\x1d\x7d\x6e\xf4\x3b\xf2\x02\x2f\xf1\xf0\x54\x39\x8a\x4f\xdc\xf5\x5a\xa3\xc1\xb6\x57\x6e\x24\x46\x63\xb4\x70\xdf\xc7\xdd\x5d\xfe\x4b\xbf\x78\x42\x89\x17\xc0\xe0\x07\x78\x69\x7f\x14\xfa\x3e\x8d\x64\xbc\xc1\xff\xca\x03\xa2\x8e\x69\xb4\xf5\xe6\x74\xca\x1f\x60\x06\x9a\xac\xc1\x6a\x1d\x06\xe8\x17\xde\x5c\xff\x5e\x29\x6e\x32\x78\x9b\xee\xe8\x08\x66\xb7\x81\xbb\xa2\x53\x19\xb0\x91\xbe\x3b\x6f\x36\x4d\x76\x5d\x96\xd7\x0a\x4e\x93\xf0\x63\x31\xef\xdd\x37\xc0\x2a\x7f\x47\x86\x24\xf6\xbb\x09\xa7\x0d\xb5\xbf\x03\x46\xf9\x9b\xef\x8f\x50\x80\xda\xf5\x02\x1a\x69\x0b\x7a\xb9\xb9\xd6\xdc\x85\xbb\x6e\xc8\x25\x14\xd1\x38\xf4\xb7\x34\x3a\x49\xbf\xc4\x27\xc8\xae\xbc\x79\x63\x2f\xdf\xca\x6c\xcf\x31\xd0\x38\x78\x01\x1f\xc2\x02\xee\x41\x0c\x11\xbd\xf6\xe2\x84\x46\x83\xa6\xbe\xa7\x2b\xd7\x0b\x64\x21\xb5\x87\x5a\xa4\xa0\xe6\x26\x32\x8c\x39\x5e\xbb\x73\x2a\xab\x30\x77\xbe\x37\xc7\x28\x4e\x56\xac\xec\xf6\x9b\xb7\x5c\xb2\x5a\x79\x51\xeb\xad\x43\x5f\x8f\xf3\xfc\x01\xc7\x7b\xf5\xe5\xf5\x08\xdf\xed\xfa\xc2\x91\x5b\x9f\xbb\x8c\xd3\x1d\xad\x1f\xe2\xae\xd3\x13\x09\x0b\x37\xa9\x4d\x02\x00\xcf\x4f\x62\x9a\x6c\x90\x81\x32\x0a\x2b\x14\xd6\x48\x30\x87\x59\x68\x6e\x71\xc2\xd9\x00\x45\x5e\x93\x01\xd9\x75\xe5\x52\x0d\xb8\x79\x6e\x03\xed\x32\xa2\xee\xc7\x75\xe8\x05\xe5\xab\x98\x2a\x59\x10\x0a\xfd\xe4\xcf\xff\xf8\xf3\xc1\x22\x80\x08\x80\x26\x2c\x72\xed\xda\x0f\x2f\xcb\x6e\xef\x59\x63\xb6\x2f\x9e\xd0\x60\xeb\x45\x61\xd0\x75\xfb\x54\x0f\x46\xe6\x5d\x0d\x8e\x8c\xa3\x59\x3e\x7c\xc2\xde\xfa\x34\x1f\xd1\x7f\xe1\x80\xb8\x03\x23\x34\x40\x6b\x12\x40\xb5\x90\x8f\xd2\x24\x89\x9f\xbc\x60\x11\x7e\x52\x82\x19\xfb\xf2\x84\xfa\x31\x95\x1a\xea\x32\x08\x95\x60\xc6\xbe\x60\xdd\xdb\x62\xdd\x2c\xf9\x62\x4c\xfd\x2b\xee\x56\xf9\x24\x98\xc1\x2f\xbc\x8f\xd5\x55\xe3\xee\x21\x3f\x71\x67\x32\xd3\x26\x85\xfe\x4e\x63\x9e\xd2\x9c\x5d\xf8\xce\x24\x74\xef\xea\x66\x90\x77\xb7\xc2\x59\x7f\x13\xd1\x2b\xef\xb3\xa2\x06\xe7\xee\xc5\xdd\xdd\x00\xfe\xcc\xa8\x0a\x8c\x3f\x5c\xd3\x60\x70\xfb\xc9\xf3\xfd\xe7\x34\x4e\xa2\xf0\x66\x5a\x70\x7b\xf4\x62\xf2\xaf\x78\x03\xa2\x33\x4c\xeb\xcd\x00\x9e\xa8\x19\xd2\x81\x22\x7c\x9a\x50\x09\x3a\xdc\xed\x14\x65\xf7\x95\x9b\x7f\xd0\xb5\x22\x9b\x49\x4c\x58\xa0\xc1\x7e\x0b\xf3\x2a\x72\xaf\x59\x94\x32\x8d\xf8\xc3\x06\x8a\xcd\x2b\xe4\xad\x5a\xdd\x6d\x95\x5b\x71\x73\xcd\x9b\x4f\xb5\xac\xb9\xb0\xa9\x7e\x63\xe4\xd5\xc2\x79\x7f\xb4\xad\xc2\x05\xf5\x33\x38\x6a\x59\x18\xb0\x4e\xad\x5c\xef\xf0\x4c\xab\xb2\x53\xa7\x2f\x7b\x17\xb9\x41\xcc\xa2\x08\x58\x0e\xc4\x46\x9e\x2e\x8a\x0e\xb9\x68\x93\xe4\xed\xe5\x38\x41\x83\x73\x26\xed\xb2\xdf\x4a\xd3\x66\xcf\xdc\x7d\xb5\x7d\x37\xbc\xbc\xbe\x86\x2f\xd0\xf8\xeb\xbe\xb5\x4c\xb9\xcf\x56\xd7\xb0\x13\xd4\x41\xbc\xa4\xee\x42\xbb\x8c\xc2\x4f\x71\x71\x4d\x7d\x73\x59\xad\xf8\xe2\x7d\xe4\xb4\x95\xf7\xd9\x0b\xe2\x93\x98\xba\xd1\x7c\x09\xd2\x4e\x71\xae\xae\x36\x31\x25\x1f\xaa\x54\x5c\x5c\xf5\x3d\x5d\xec\x33\x3f\xf9\x64\xa6\xab\xc1\x2c\xa0\x9f\x24\x5e\xc6\x3d\xde\x95\x1f\x93\xbf\xa5\xdf\x7f\x4c\x7e\xf8\x41\x09\xce\x93\x8b\x19\x3d\x4f\x32\x0f\xf1\x60\x57\xf6\xcf\xc7\x57\x95\x5c\xee\x25\x2f\x90\x18\x96\xb1\xb2\x7c\xce\x02\xd7\xa4\xa7\x29\x27\xbf\x90\x67\xb3\x19\x9f\x87\x2c\xf1\x2f\x49\xc2\x74\x63\x71\x7d\x5f\x88\x09\x60\x80\x5c\x45\xe1\x6a\x40\x95\xd2\xfb\xfb\x3b\xcb\xc7\xeb\x88\xba\x8b\xef\x77\xd5\xef\x6b\x98\x59\x32\x8f\xa8\x9b\xd0\xc1\x2d\x9b\xe0\x77\x34\x5a\x4d\x65\x59\xf5\xbd\x38\x79\x17\x9e\xe1\x33\xbe\xa7\x82\xaa\xbb\x49\xe8\x62\x50\x11\x73\xcf\x2f\x76\x8a\xca\xda\xc3\xa0\xe2\x69\xb0\xf1\x7d\x95\x7e\x76\xe7\xc9\x6b\x37\x99\x2f\xcf\x84\xa2\x62\x5f\x04\x20\x8e\x61\x27\xc8\x6a\xc8\x8a\x1a\xd1\x6b\xfa\x79\xdf\x46\x57\x9b\x2f\x5f\x6e\xf6\x6d\x94\x8f\xf1\xe7\x00\xf0\xbd\x00\x51\x5e\xe8\x29\x7b\x6a\xb0\x41\x09\xb5\x22\x1a\xd3\xe4\x8d\x7b\xed\x05\x4c\x7f\x13\xb0\xc2\xf2\x07\xa3\xb0\xc0\x34\x12\xa8\x47\x8f\x8f\xf1\x49\x4c\x41\x47\xcc\x1f\xcb\xaa\xa1\xec\x54\x58\x46\x65\x3c\xcb\xe2\x24\x90\xf3\x0b\x5c\x6d\x45\x20\xf1\x69\x55\xed\x00\x5a\xcb\x58\x15\xca\x28\x44\xec\x4b\xbd\x8d\x97\xe1\xc6\x5f\x9c\x85\x51\x02\xa0\x24\xcb\x88\xc6\xcb\xd0\x5f\x4c\x89\xad\xfa\x21\x57\x48\x75\x75\xe1\x31\xe2\x9b\x1a\xba\xae\xa2\x8d\x01\x38\xc6\x91\xae\xae\x00\x63\x4f\x7d\xff\x1d\x3c\x8b\xd9\x93\xcf\x6f\x80\x94\xa3\xe0\x15\x2e\xce\xa9\x65\xaa\x2b\x2f\x40\xd4\x3e\x5b\xba\x11\x7f\x6a\xa8\x1f\xe9\x4d\x3c\xc5\x11\x95\x61\xb9\xbb\x3b\xbf\x00\x35\xea\x17\x01\x97\x62\x7c\x0e\xc3\xce\x35\x4d\xf0\x29\x53\xa8\x00\x2a\xd6\x05\x5d\x54\xd0\x97\x53\xb4\xac\xd6\xe0\xb2\x32\xf7\x45\xfc\xe6\x0f\xc5\x99\x2f\xb4\x2b\x4f\x44\xfd\xf4\xc8\x65\x72\x2e\x4f\x1a\x93\xe3\x39\x71\xa4\x43\x46\x87\x81\x81\x82\x32\x3c\xbd\xbb\x3b\xca\x38\x60\xaa\x59\x96\x27\xf5\x09\xe3\x9b\xe7\x19\x27\xc4\x1a\x15\x20\x8f\x8f\x13\x8c\x28\x4a\xe5\x57\x35\x18\x94\xb5\x46\xef\x6a\x50\x79\x1b\xb9\xf2\xfc\x44\xbc\x10\x28\x9f\x97\x80\xc4\xe1\x8a\xe6\x25\x41\xcd\x8c\x41\xbf\xb3\xd9\x8c\xc2\xa4\x61\x38\x51\x85\x24\x4b\xa3\x15\xd0\xa5\x28\x8a\x5a\x26\x98\x66\x60\x78\xcd\x98\x72\x5c\x02\x97\xe6\xed\xc5\x79\xdc\x13\x0d\x18\x43\xc5\xe3\x92\xe8\x27\xe9\x2d\xbd\xfe\xf9\xf3\x1a\x18\xaf\x97\x19\xf4\x6b\x70\x44\x1b\x71\x94\x63\xcf\x25\x09\x8d\x93\x41\x91\xb8\x15\xc4\x13\x8b\xe8\x8a\x95\xdb\x5d\xc6\x66\x5b\x70\x57\xa6\x32\x04\x9b\x6c\x02\xef\xdf\x03\x65\xd7\xe3\xe6\xf5\x74\x9f\x0f\xa3\xa4\xbc\xcb\x1f\x5a\x3a\x61\x94\x5a\xbb\x09\x85\x51\x92\x76\xc9\x76\x11\x78\xf2\x9c\xc6\x73\x1a\x2c\xbc\xe0\x1a\x58\x0d\x07\x1d\x78\x57\xaf\x8d\x09\x79\x04\xde\x78\xd1\xc4\x60\xc3\x28\x61\x2b\x55\x7c\x3d\xff\x99\xbf\xbb\x69\xcd\x0a\x9d\xe4\xc7\x3d\xd0\xf4\x27\xa6\x1e\x12\xb1\x57\xa5\xb0\x3a\x8b\x2f\x38\x05\xdd\x08\x7d\xe3\x07\xca\x94\x96\xe6\x2c\x69\x99\x33\xa6\x96\x6b\x11\x8d\xbd\x2f\x55\x09\xad\x21\xa9\xf4\xa1\x04\xe6\xba\x69\x64\x03\x7a\x0b\xe3\xa1\xec\x76\xb1\xa8\x20\x68\xaa\x68\xc7\xfa\x6f\xa1\x56\xd5\x40\x0b\x08\x7a\xc2\x3a\x8f\x36\x01\x89\x81\xc5\x6f\x7c\xfa\x8f\x60\x4e\x07\x32\xa6\xad\x7f\x4b\x83\x05\x48\xb3\xa8\x83\x0b\xed\x29\xdb\x63\xff\x55\x33\x0a\x59\xa5\xa4\xe6\x31\xb9\xf4\x82\x05\x70\x0a\xb5\x98\xaf\x99\x1b\x3e\x48\x18\x0c\x64\xc4\x2e\x85\x0e\xea\x3a\x86\x25\x86\xd5\x16\xde\xe2\x65\x10\xd3\x28\xf9\x99\xdd\xc2\x8e\xe2\xcc\x2a\xdc\xd2\x26\x68\x1b\xde\x78\x75\x95\xbf\x92\x99\x1d\x6a\xdf\x8a\xef\x14\xac\x15\xd9\x5b\x0b\xc4\x53\xab\xa1\x64\xc4\x93\x2c\xb5\xec\x18\x43\xdb\x7a\xb1\x77\xe9\xf9\x5e\x72\xa3\x2d\x68\x42\x2b\x9e\x9f\xdf\x8f\x17\xe4\x23\x69\x26\xa1\xe7\xe1\x1c\xe5\xf5\xf7\x59\x5d\xb1\x12\xeb\x15\xf8\xab\x17\x5c\xdf\xdd\x0d\x72\xf9\xeb\x5f\x95\xce\x39\x96\x2b\xcf\x19\x69\x40\x99\xa2\xa8\x0b\xfe\x3a\xe2\x2e\x16\x3f\x6f\x69\x90\xbc\xf2\xe2\x84\x06\x34\x1a\xc8\x79\xc3\xf9\x92\x05\xa1\xb1\x59\xab\x74\xa8\xf0\x49\x03\x1d\x2c\x23\x8e\xbd\xe0\xc8\x46\xc1\xda\xde\x7b\x20\x15\xe2\x91\xf7\x61\x39\xc9\x52\xbb\x0a\xa3\x4b\x6f\xb1\xa0\x81\x16\x27\x25\xbf\xc5\xef\xb8\x65\x00\x1d\x3c\xcb\x4e\xed\x0a\x96\x0b\x84\xdc\x8b\x7f\x49\xc7\x79\x7c\x2c\xd0\x80\xf0\x5c\x56\xd9\x6b\xe0\xc5\xd5\xb2\x23\x3d\x95\x20\xda\x4c\x7f\x3b\xa6\x11\x34\x8c\xa4\xb6\x5f\xa3\x4f\xb7\xfb\x4d\x09\x33\x2e\x51\xd0\x31\xb5\x25\xcc\x33\x6e\x5c\xb5\xc6\xbb\x4d\xe2\xf9\x98\xac\xc8\xbb\xba\x61\x2d\xbe\xeb\x1e\x81\x23\xad\x3b\x32\xe9\xc2\x08\x61\x72\x51\x91\x6f\xb2\x05\xba\xdb\x8f\xeb\x65\x47\x71\x1a\x4e\x5d\x52\xc2\xd5\x77\xa4\xe1\x9b\x38\xa1\x2b\x2e\x9e\x30\x63\x1b\xe1\x86\xae\x81\xa2\x7e\x08\x2f\x63\x81\xac\x0a\xb5\xf2\xe3\xea\x81\x0c\xf5\x64\x45\x65\x1e\xf7\xf1\xf4\xf6\x3a\x4c\xc2\x5f\xc3\xcb\xb8\xba\x24\x90\x16\xd9\x4b\x09\x54\xdf\xd2\xdf\xf2\x53\x49\xac\x01\x92\xa8\x5c\x7c\x31\xf9\x10\x5e\xe6\xd5\xd2\x25\x11\x77\x55\x54\x29\xeb\xcc\x5b\x64\x6d\xd0\x8c\xe8\xc1\x88\xde\x85\x6f\xc3\x4d\x42\xd3\xb1\xef\xf6\xa4\xf6\x08\x1a\xff\xb5\x65\x7d\xaf\x2d\x0b\x49\x05\x18\xfd\x03\xd8\xb6\x16\x34\x1f\xcd\x7e\x44\xf3\x09\xd8\x07\x8d\xe2\x06\xb6\xd8\x93\xbe\xbe\x23\xab\xcc\xd8\x9c\x7a\x9b\x8e\xbd\x9f\xe6\x33\x77\x83\x39\xf5\x9f\xfa\xfe\x7f\xa7\xcd\xca\x67\x59\x69\x7f\xe4\x2a\x8c\x7e\x76\xe7\xcb\x41\x71\xcf\xca\x3a\x40\x15\x52\x8d\x13\x37\x4a\xea\xfa\xe2\xa4\x5d\xb7\xf7\x15\xf9\x7a\xa1\x87\x86\x23\xb4\x1e\x3b\x6d\xeb\x3a\xcb\xe8\x6c\x89\xfb\xec\x29\xb3\xc3\x95\x51\x31\x50\xa6\xd5\x11\xb1\xe5\x96\xf3\x54\xb5\xf4\x9b\x71\x32\xdc\xb9\x64\x45\xd9\xe5\xac\x16\x84\xa8\x77\x19\x57\xab\xbd\x7e\x8e\x78\x41\x02\xa3\x82\x4d\xe7\xf8\xb8\xf0\x93\x0d\x22\xfe\x6f\x2f\x59\xb2\x11\x20\xdd\x01\x0b\x55\xee\xee\x9a\x86\xaf\x1e\xe9\xbb\x3e\xfb\x1d\x0c\x36\x3e\x71\xaf\x1b\xf2\x81\xe2\x29\x0b\x83\xa8\xf0\xc8\x4d\x92\xb2\x3c\x70\x48\x8f\x02\xf1\x7c\x37\xa1\xc1\xa2\x6b\x0f\xc4\x53\x8c\x81\xae\x06\xf9\x96\x9f\x1e\xff\x2a\xaa\xbb\x58\x44\x34\x8e\x1b\xcb\x63\x1a\x5d\xbd\x09\xa3\xa4\xb1\x42\xb4\x9e\xb7\x96\x27\xee\x75\xb9\xf7\x5b\xfe\xed\x3d\x82\x5a\x21\x77\x76\x98\x02\x62\xf1\xa6\x79\x5c\x80\xe8\x39\x0d\x12\x1a\x35\x8f\x8c\x5e\x03\x41\xb5\x0c\xfc\xe9\x62\x11\x55\x0c\x1b\x1c\x23\xb2\x2a\xc3\x6c\x37\x59\x2e\x78\x2d\x35\x61\x3f\x39\x16\x9e\xe4\x17\x26\x26\xc7\xc7\x72\xe6\xcf\x4a\x55\x79\x2a\x2b\xe9\xaf\x44\xd9\x29\xaa\x17\xbf\xa2\xee\x82\x56\xdf\xcf\x65\x0b\x1f\x4b\x09\x1f\x65\x9d\xa5\x3a\x17\x36\xea\x9b\x28\xb3\x59\x36\x38\x78\xd0\xcb\x92\xc5\x49\xde\x4f\x4d\xd9\x7b\xd3\x7d\xe1\x49\x44\x7d\xec\x25\x5e\x7a\xeb\xf6\xa3\x5c\x6c\xec\x5d\x6e\x12\x0a\xf5\xfc\x70\xe1\xc6\x4b\x92\xdd\x52\x8e\x03\x29\x8b\xdf\x6b\xb6\x84\x3c\x1a\x9f\xc4\xcb\x30\x4a\xb4\xcd\xc6\x2b\xdf\x4f\xa1\x06\xaa\xab\xc6\x6a\xa8\xfa\x87\x5a\x7f\xd1\xec\x76\xcd\x0d\x6a\x86\x1a\x6d\x82\x00\xbe\x99\x2a\xcc\x9f\x4f\x13\x3a\xb5\xd4\x2b\xd7\xf3\xe9\x62\x6a\xab\x7e\x18\x27\xd3\xe1\x4e\xf5\x6a\x96\x2c\x1e\x09\x34\xad\x58\x04\xe7\xe5\x02\x48\xd7\x17\x48\x17\xc4\x40\x90\x68\xe1\xb9\x4b\x2e\xa9\x1f\x06\xd7\xf1\xbb\x50\x41\x11\x50\x56\xd4\x20\x5c\xd0\x6a\x19\x3c\x95\x3b\xb8\x40\xe2\xc6\x1f\xff\x2b\x0a\x37\xeb\xdf\xda\x6a\x45\x34\x0e\x37\xd1\x9c\xe2\xaa\x8c\x49\x3a\x77\x0a\x5a\x5b\x58\x09\x70\x14\x46\x3b\x74\xf1\xb6\x57\xf5\x0f\xe1\xe5\x7b\x1a\xc5\x35\x2b\x35\xd8\x00\x76\x64\x45\x5d\x85\x0b\xef\xea\xe6\x65\xb0\xa0\x9f\x3b\xea\xbc\xf3\xaa\xc3\x5f\x30\xa9\x8b\x09\x04\xed\x9d\xb0\x3a\x6d\x9d\xf8\x1e\x0d\x92\xb3\x0e\xd6\x44\x63\x2f\xa2\x8b\x8e\x5a\x8c\xbf\xb1\xf1\x94\x59\x80\xf8\x9a\xba\x95\x1f\x9d\xb3\x9d\x4d\xa8\x76\x71\x77\x67\xe8\x3a\xf2\x95\xb7\x9c\x28\x4b\x87\x78\x98\x8d\xb8\xdc\xb7\xcc\x29\x58\x56\xd4\x34\x91\xd4\xd3\x6c\xed\x57\x69\x49\xe4\x0b\xb7\x5e\x80\x06\xd7\x29\xe6\x5a\xce\x5b\xc9\x3b\x45\x2d\x3e\xe9\xdb\x4f\x75\x04\xd0\xd7\x3a\xa2\x74\xb5\x4e\xe8\x22\x7f\x1c\xb3\x1e\x97\x6e\xfc\xda\x0d\x6e\xda\xfa\x63\x2d\x7f\xba\x69\xe8\x52\x2c\xd8\x63\x94\x95\xf1\x40\xa7\x9f\xdc\xf8\x4d\x5a\x54\x9e\xf5\xcb\x30\xf4\xa9\x1b\xc8\x8a\x7a\x15\xfa\x7e\xf8\xe9\xf7\xf5\xcf\xc0\x67\x1a\xde\x4b\xb3\xb2\x8c\x4e\x9e\x61\x54\xc3\x9e\x74\x92\x31\x2a\xd9\x8b\xb5\x75\x6a\x89\x4f\x79\x16\x3e\x8c\xbc\x95\x1b\xdd\xc8\x39\xfb\x82\xa7\xe9\x0f\x39\x65\x65\xf0\x90\x59\x39\x18\x4f\x83\xdf\xbe\x77\xbd\x4c\xe4\x5d\x2d\x25\x42\xf9\xc2\x8d\x3e\x02\x5a\x32\xd6\x52\x19\x7d\x81\xe9\xc8\x2a\x30\x31\x92\x3d\x6b\x3b\xe9\x4b\x15\x6c\xa1\x76\x7e\x94\x84\x02\xe2\x95\x17\x2c\x7e\xba\x19\xa0\xc3\x30\xd7\x86\x0a\x6f\x83\x0d\x78\x13\x2c\xa9\xeb\x27\xcb\x9b\xe7\x91\xb7\xad\xd1\x0b\xf2\xf1\x91\x05\xab\xc1\x0e\x3a\x80\x9f\x92\x52\x63\x54\xd9\xbb\x46\x5c\xe9\x0f\x18\xaf\x50\xde\xd8\x71\x01\xb8\xe4\x74\xa0\xab\x61\x4e\x5b\xa0\x41\x4d\x99\x17\x41\xe2\x26\x65\x66\x8b\xde\x15\x0a\x7b\x37\xb7\x34\x22\x1f\xe7\x27\x02\xa8\x48\x36\x34\xc9\x6b\x69\x74\xcb\xac\xf1\x4b\x37\x7e\x5b\x6e\x5b\xc6\x5a\xb9\x73\x7e\x0c\x28\xab\x65\x36\xd1\x2a\xd1\x34\xf5\xa2\xfc\x5d\xe7\x62\x7d\xb1\xb7\x1d\x0e\xee\x2c\x09\xd7\x6b\xdc\x78\x58\xe3\x2a\x17\x1c\x54\x46\x51\x66\x88\xd5\x05\x8a\x4a\x0c\xaa\x00\x95\x11\x1f\x09\xb3\x57\xe8\x37\x6b\xa3\x1c\x1f\x0b\x95\x5a\x3a\x57\x8e\x8f\x65\xb6\xdc\xe4\x54\x6e\x13\x47\x86\xf3\x1b\xae\x9b\x95\xc3\x30\xa2\x84\xbb\xcb\xff\x12\x46\x05\xe6\xa5\x40\xf1\x9a\x59\x35\xd0\xd4\x0a\x2a\x53\x9d\xa2\xd5\xa7\x2b\xde\x9c\x29\x96\xb4\x64\x36\xf4\xea\xa2\x84\xb9\x4c\x39\x0f\x83\x78\xe3\x6b\xf3\x30\x08\x68\xfd\x7d\x2f\xb5\x72\x61\xee\xdc\xd8\x53\x7a\xfc\xae\x8a\x97\xb7\xa0\x73\x37\x3a\xe3\x7e\x7c\xc8\xf5\x05\x39\x87\x17\x67\x8e\x77\xfd\x05\xf0\x05\x5d\xfb\xe1\x4d\xd3\x45\x14\xdf\x5e\x00\xef\x25\x6a\xb7\x56\xdb\xac\x34\xf7\xfa\x3a\xa2\xd7\x75\x17\x6d\x7d\x0b\xb1\xbc\x66\x76\x72\x31\x3a\xec\x2d\x46\x0b\x3b\x7d\x3e\x09\xb8\xc1\x7f\x08\x2f\x7f\x09\xa3\x57\xc0\x64\x93\xce\xb6\x3e\x56\x7b\x9e\x4f\xe3\x4e\x51\xb7\x4c\xce\xfd\x0d\xc5\xcd\x46\x21\x34\xa2\xff\xde\x78\x11\x8d\xdf\x44\xe1\x2a\x44\x01\xa1\x71\x63\x3a\xdb\xac\x56\x6e\xe4\xd1\x98\xfc\xff\xa8\x3b\x5f\x92\x35\x36\xa1\x8b\x1a\x4e\x95\x09\x7a\x29\x73\x61\x72\x05\x77\xac\xaa\xe9\x31\x09\x99\xfb\xa0\x52\x72\xbf\x10\xcd\x32\x9c\x55\x97\xc6\x8b\x3c\x8f\x17\x66\x23\x42\x3f\x8a\x2e\xa5\x9e\x15\x3f\xa7\xf1\x3c\xf2\xd6\x49\x9b\xf2\xde\x25\xe5\xc6\x55\xf9\xb6\x0a\x63\xcb\x56\x79\x0d\x15\xb5\x9c\x00\xb4\x18\x1b\xdd\xe4\xfa\x4d\xbb\x18\x0a\x7b\x3b\x9f\xee\xca\xf4\x15\xc8\x80\xcb\x3d\xfc\x59\x9c\x6e\x07\x7c\x42\x39\x51\x54\xa7\x73\x50\x14\x84\xd2\xe6\xb2\x72\x77\x77\x7e\xa1\xe4\xf2\x0f\x6f\xcf\x8c\xdd\xe2\x7b\x95\x9c\x1e\xcf\x36\x97\x2b\x2f\x41\xad\xa7\x84\x4c\xd7\xf7\xdc\x38\x1b\x30\x89\xb3\x8a\xa0\x2e\xf8\xee\x9c\x2e\x9e\xb9\x41\x86\x4a\x51\x55\xad\x22\x5b\x56\xe5\x62\x93\x5c\x53\xda\xab\x93\x52\x9b\xbc\x97\x77\x61\xe2\xfa\xfb\x74\x81\x0d\x32\x48\x70\xef\xde\x07\x0e\xd6\x00\xa4\x22\x26\xb0\xed\xd1\x41\xa1\x85\x2c\x88\xa2\x7b\xf4\x51\x6a\xd3\xa1\x29\xc4\x8d\x3a\x82\xa8\x0e\xa4\x8b\x45\x8d\x37\xf3\x39\x8d\xe3\xab\x8d\x5f\x54\x13\xd6\xee\x26\xe6\xfa\x00\x93\xff\x6b\x34\x04\x66\x6f\x4d\x1f\x66\xbf\x52\x55\x21\xae\x53\x12\x38\x9b\xe8\x2f\xdd\x08\xfb\xa3\x92\xb2\x3d\x2e\xe0\x14\xf6\xd8\xa8\x6d\x8f\x8d\x5c\x2f\xd0\xe2\x24\x72\x13\x7a\x5d\x1b\x35\x57\xbf\xa9\x36\x8b\x28\xdf\x4e\xf4\x08\x2a\x9b\xdb\x82\xba\x0b\xdf\x0b\xe8\xb4\x78\x98\x9b\xef\x23\x57\x61\x34\xa7\xcf\x1b\x6a\x71\x7b\x86\x77\x1d\x84\x11\x3d\x43\xf3\x21\x1e\x77\x96\xaa\xe5\x7a\x2b\x9e\xbe\xcf\x2b\x7e\x60\xc4\x4f\xf0\x3c\x09\x5f\x22\xab\x3a\x8a\xe1\xbf\x85\xd9\x6b\xeb\xb9\xb3\xd8\xa0\xb7\x48\x24\x68\xc5\x0f\x57\x24\xaa\x17\x73\x0e\x45\x07\xfe\x9e\x42\xce\x3a\xf2\xc2\xc8\x4b\x6e\x1a\x65\x8d\xe4\x66\xdd\x62\x14\x8c\xbc\xeb\x6b\x1a\xd1\xc5\x4f\x95\x0e\x4a\x3b\xf6\x01\x36\x74\xc6\x47\xde\xfd\x57\xce\x01\xab\x3b\x33\xf2\x5d\x76\xe3\xa5\xeb\xf9\x1b\xcc\xd9\xd4\x7e\x94\x70\x7e\xb1\x63\x9a\xe1\x9b\xb4\xe9\x2f\xac\x65\xc5\xc5\x1d\x28\x7d\x20\x17\x47\x91\x29\x9d\xaa\x17\xff\xe4\x87\xf3\x8f\x55\xf2\x2f\x8b\x1b\x97\xac\x5a\xbb\x9d\xf6\xe1\xd8\x33\x3f\xb9\x5e\xf2\x7b\x90\x78\x7e\x7d\x79\x61\x6d\xfa\x2d\x6b\xf3\x43\x78\xa9\xad\x7d\xf7\xeb\x56\x66\xfb\xf2\x6b\x5c\xc1\x75\x4b\xee\x50\x0b\x2e\xac\x59\x70\x0b\xef\xea\xaa\x84\xae\x3a\xf2\x75\x0f\x46\xbe\xdc\xe0\x98\x0a\x9c\x71\xbd\xdd\xb3\x38\x59\x61\xc7\x64\xa5\xe2\xec\x43\xe3\xa4\xbd\xb4\xc6\x6f\xc9\x4e\x5b\x96\xed\x3d\x14\x88\x5c\x6b\xc0\x9b\x06\x04\x21\x33\xec\x92\xef\xc4\x06\x8c\x93\x46\x89\x17\x5c\xef\xd1\x43\xb1\x09\x68\x96\x4c\xbc\xdb\xa3\x8b\x42\x0b\x60\x28\xdc\x32\xbc\x47\x17\xc5\x26\x19\xa7\xdf\xa3\x07\xb1\x81\xac\xa0\x05\x7a\x8f\xd6\x79\xf5\x54\x77\x8b\x5f\x79\x71\xd9\xff\x9d\xcc\x43\xdf\xc7\x38\xcd\x02\xde\x2b\x48\x2c\xa3\xa4\x02\x5f\x69\xb8\xa5\xf7\x27\xa0\x72\xf0\xc1\x97\x06\x10\x6f\x56\x7c\x3d\xe3\xf8\x60\xf7\x66\x16\xfb\x67\x4b\xcf\x5f\x44\xb4\xf9\x78\x8c\x8f\xa8\xb3\x1e\x48\x5d\x9d\x95\xe6\xbc\x42\x2b\x8e\x4a\x23\xcb\xb1\x22\x3c\x11\xdf\x96\x42\x9e\xbd\xbd\x0e\x76\xf1\xcd\x7b\x6e\x3d\x5c\x41\x3d\x24\x37\xab\x72\x9e\x43\x71\x9d\x78\x3f\xae\x13\x63\x48\x49\xf3\x81\x52\xae\x94\x37\xec\xf1\x41\xbb\xb9\xa9\x6e\x3b\xdb\x75\xe6\xb4\xca\x91\xff\x47\x6c\x21\xf5\x5b\x7e\x16\x36\x1b\xfe\x15\x36\xfb\xc0\xc2\x66\xfd\xd9\x79\x1a\xec\x0e\x42\xb2\x9b\xcc\x97\xc0\x5b\x51\xef\x94\x2f\xd4\x3a\xe3\x6d\x87\xf7\x4e\xab\x3b\xc3\xda\x77\xbd\xe0\x65\xe5\x14\x36\xd7\x6c\xda\xd4\x9e\x4e\xa5\xc9\xf5\xfd\xa7\xc9\x3f\x82\x79\xdb\xa2\x3c\x94\x5a\xd4\x47\xca\xef\xa3\x4e\xac\x69\xe4\x85\x0b\x6f\xde\x3c\xe4\xb5\x1b\xb9\x2b\x9a\xd0\xc8\xfb\xd2\x76\x7e\xbd\xf0\xe2\x35\xfa\xd1\xb5\xd4\x49\x5f\xf6\x9c\x26\xae\xe7\x97\xd1\x50\x7a\x55\x53\xa5\xa5\x1b\x37\x6c\x17\xb0\xff\xb0\x17\xc8\xaa\x5c\xe8\x0b\xb6\x9d\x6c\x7c\x8d\x07\x8c\x69\x6b\x7e\x90\x58\xe8\x21\x3d\xad\xcb\xbb\xd9\xe1\x78\x69\xd0\x6d\xf2\x4f\x37\x30\x79\x97\x6f\xa3\x65\x0b\x71\xa9\x09\xeb\x19\x8f\xc9\x23\x6f\xb5\xa2\x0b\xf4\xbf\xa9\x1c\x59\xb2\xf3\x71\x5e\xb9\xf5\xdc\x94\xd5\xc9\x0f\x15\x99\x07\x27\x3a\x4a\x46\x14\x15\x90\xc1\x09\xf9\xe1\xf4\xff\x9d\x9c\xa8\xb2\xcc\xdd\x38\xa1\x74\xc7\x66\xd6\x77\x6f\x80\x61\x54\x4f\x1c\x6e\xd6\x38\x82\x46\xbc\x77\xa0\xfa\x34\x6f\x3a\xad\x22\xfd\xb4\xd4\x1b\xab\x02\xef\x04\xc4\xd0\xd5\xda\x07\x2d\xf6\x5e\xe3\x4a\x11\x52\xac\x81\x4f\x1a\x01\x10\xce\xed\xa1\xff\x27\x4d\x48\xce\xfa\x54\x72\xf0\x34\x9c\x78\x0e\x41\xa1\x72\xe1\x75\x4a\x09\xe4\x42\xb3\x7b\x22\xcd\x27\x5e\x30\xf7\x37\x0b\x1a\x0f\x28\x9f\x77\xe4\x73\x19\xe3\xdd\x89\x5e\x93\xd5\x05\x97\x3b\x53\x74\xa9\x35\x3d\xf5\x56\xae\xfc\xd4\xae\x1b\x41\x33\xf2\xe2\x37\x20\x62\xbb\x7e\x83\x6d\x45\x70\x09\x49\x5d\x09\x74\x61\xb4\xcf\xc2\x4d\x50\x91\x54\x61\xbb\xab\x69\x57\x77\x72\x96\xd9\x78\x6a\xd4\xbb\xfa\xe3\x10\x3e\xf4\x9a\x43\xb3\xb2\x9e\xd7\xde\xbe\x5d\xc3\x6b\x6f\xdb\xa1\xdb\xb5\x37\xee\xd0\xea\xda\x1b\xb7\xeb\x73\xed\x6d\x9b\x35\xb9\xf6\x76\x7d\x75\xa8\xf2\x04\xe5\x35\x6b\xd4\xa9\xf6\xb6\x65\x15\xa7\xaa\x66\xf5\xc2\xb1\xd0\xbe\xa0\x7e\xb5\x37\xde\x47\x77\xaa\x83\x59\x68\xbb\xed\xf0\xad\x4c\x4f\x0e\x6b\x36\x2a\x2d\x3f\x55\xec\x7f\xe8\x29\x9c\x99\x97\x2b\x8a\xc7\xe9\x8a\x9a\x9b\xf3\x2b\x15\x85\x22\x2e\xe9\x61\x38\x54\x8d\x6b\x6b\x1e\x52\xa5\x2e\xba\xbc\xb8\xd2\x43\xf2\xd4\xf9\xaa\x69\xcf\x12\x1a\xac\xdc\xf5\x4f\x37\x03\x39\x73\xd7\x22\xec\x72\xc2\x41\x6d\x8e\x0d\x2a\x26\x45\xa0\x6a\x38\x48\x14\x45\xa5\x3b\xf5\xfc\x42\xc9\x52\x09\x74\x3b\x9d\x09\xd8\xe4\xe3\x2d\x37\x69\xc8\x5b\xc2\xbc\xd2\x85\xd6\x7c\xf0\xe5\xe6\x87\x80\x62\xe9\xa6\xf6\x70\xc1\x8d\xb1\x0c\x89\x30\x8b\x1c\x92\xcc\x8a\xde\x38\x7e\xb1\x4d\x6f\x07\x84\xbc\x5b\xe6\x64\xd0\xc7\xdc\xef\x06\x8b\x01\xf7\xd1\xe0\x55\x7e\x16\x8e\x97\xe4\x3a\x00\x81\x61\x61\x83\xbd\x60\x16\x84\x73\x50\x6f\x85\x72\x2f\x7e\xd3\x9e\x1c\x41\xa8\xcc\x65\x90\x23\x7a\x77\x97\x01\x9d\xb6\x56\x4e\x83\x8d\xef\x4f\x69\x9a\x37\x41\x16\x5f\xa9\xb0\xda\xbe\x1b\x27\x4c\x93\x93\x31\xf5\x4b\x3d\xe0\xdf\x0f\x1c\x9e\x99\xa5\x0a\x4b\xaa\xde\x02\x48\x3c\x58\x90\xf2\xdc\x20\x00\x5a\xdd\xd4\x0a\x59\x44\x4e\x93\xbe\x48\x98\x32\xe5\x14\xa5\x94\x35\x1a\x2f\x9e\x0b\x8c\xab\x41\x10\x61\xc2\x66\xe6\xcc\xa5\x96\x7d\x7c\xaa\x0c\x4a\x74\xe3\xca\xa5\x7e\xd1\x91\x08\xa4\x32\xbe\x57\x08\x1d\x55\x92\x6d\x94\xbd\x89\xd4\xca\x23\x92\xb9\xc4\x34\x26\xdb\x28\xb5\x78\x82\x59\x5a\xf8\x0c\xa4\x6d\x85\xbb\xba\x15\xf5\x8a\x26\xf3\xe5\x5b\xf7\xd3\x73\xd0\xfe\x4b\xe1\x59\x5d\x27\xf4\x68\xbd\x22\xd5\x1e\x52\x37\x44\x3c\x9e\x7e\x93\xaa\xa5\xfb\x76\x2b\x36\x4e\x7b\xdc\xcf\x3f\x92\x75\x24\x3a\x46\xae\x7d\x77\x6f\xf8\xa0\x4d\xe6\x58\xb9\xd9\xbb\x79\xb4\xc9\x5a\x6f\xd6\x0b\x77\x1f\x0f\x08\xd6\x01\x6b\x95\x41\xe0\x02\x7d\x95\x67\x9f\x3b\x19\xab\x01\x23\x83\x7f\x05\x54\x98\x8e\x27\x79\x76\x9e\x5f\xcf\xfe\xf1\x1b\xc1\x2e\x06\x81\xf2\x44\x88\x9e\x2d\x34\x80\x5a\xb2\xea\xf2\x58\x43\x2f\xfe\x8d\x7e\xca\xb3\x73\xbd\x5c\xfc\x74\xf3\xc6\xbd\xf1\x43\x77\x31\x70\x15\x95\xf2\x90\xcc\xb7\x67\xef\xdf\x10\x9e\xf3\x7a\x10\x08\xd9\x79\xd2\xd4\x4d\x4d\xd8\xc5\xc1\xd4\x8c\x5a\x21\xc9\x92\x06\x85\x3d\x21\x69\x1e\x2c\x55\xd4\xa4\x3c\x3a\x0a\x7b\x45\x46\xea\x6a\xb1\xb4\xe0\x1b\x9b\x72\xa1\x2c\x2c\xfb\xee\x2e\xcf\x64\x1c\xf0\x02\x01\x5d\xdc\xf8\x24\xab\x81\x18\xe6\xed\x2d\x64\x15\x11\xcc\x4c\x3b\xde\xd5\xcd\xe0\x3c\x50\x93\x0b\x45\x49\x9d\x4b\x73\x44\xac\x29\xfd\xf8\x96\xce\xc3\x68\x21\x8a\x38\x6a\xa2\x3c\x71\xc5\x44\x68\x42\x91\x9b\xa6\x50\x78\xb9\xa8\xc4\xa9\x36\xbe\x9e\xe9\x94\x6c\xb4\x42\xe4\x7a\xd6\x2d\x1a\x06\x64\x45\x00\xf7\x42\x61\x91\xac\xf7\x70\x33\xea\x1f\x8a\x00\xc2\x6f\x35\xc2\xa0\xde\x6d\x88\x4f\x57\x73\x24\xce\x3c\x5c\xd0\x45\x3a\xab\x15\x33\x12\x7b\x5e\x27\x8d\xb0\x84\x31\xc4\x4d\xc2\xcb\x01\xd7\xbd\xb1\xee\xdd\x9d\x8c\x3b\x68\x91\xcc\x1a\x07\x50\xa5\xc6\xa6\xaa\xbd\xbd\x96\x84\x59\x7f\xc0\x11\xa9\x41\xd5\x8e\x85\x59\x04\xff\x11\xf8\x37\xdc\x39\x65\xe9\xc6\xcb\xb6\x18\xaa\x2e\xdb\x68\x6f\xc7\xa1\x80\x26\x9f\xc2\xa8\xf6\xce\xce\x7d\x1d\xbc\xee\x7f\x40\x71\xb8\xd3\xa3\x3a\x57\xb0\xd4\xfb\x3c\xa9\xb5\x21\x7b\x8b\xa8\xb1\xd0\x5b\x37\x16\xad\x78\x38\x61\x7d\xe1\xa5\x97\x54\xdc\xc5\x72\x73\x33\x60\x99\x89\x43\x2e\x33\x1f\xf5\x3f\x53\x0a\xc2\x05\xd5\x44\x7f\x81\x43\x4c\xdb\x95\x5f\xb9\x75\xfc\xb0\xb3\xe2\x66\xb3\xb2\x09\xe0\x65\x09\x0d\xd4\xb0\x66\xae\x72\xc0\x4a\xc8\x53\xd4\xbc\xe8\x2c\x89\x36\xf3\x64\x13\xd5\xa4\x5d\x13\x11\xd3\x10\x99\x9c\xd5\x40\x01\x2f\xdd\xc0\x38\xa0\x1f\xe9\x4d\x3c\xa0\x2c\xc9\xda\xa0\xaa\x0a\x22\x5b\x48\x05\x8f\xf3\xe0\x62\x46\xcf\x83\x0b\x35\xd9\xa9\xb7\xbb\x4c\xcc\x8e\x07\x89\x7a\x1b\x6e\x69\xf4\x29\xf2\x12\x86\x95\x1d\xaa\xb6\x1f\x83\xf0\x53\x90\xa5\xa0\xab\x51\xd8\x84\xa4\x86\xc5\x91\xe6\x00\x57\x42\x4a\xda\x3c\x59\x90\x54\x98\x76\xfe\x75\xf1\x24\xfb\x39\x23\x7d\xdf\xb3\xe1\x3c\xaa\x37\x1d\xcc\x3f\x3e\x05\x34\x2a\x52\x4c\xb1\x02\x8f\xfa\x15\x57\x51\x81\xbc\x96\x35\x09\x00\xd3\x53\x86\xbc\x5a\xed\xfc\xb4\x46\xb8\x75\xb5\xcd\x48\x48\x4c\xd9\xc8\xcd\x2b\x24\x0b\x96\xcf\x0e\x25\x14\xd8\x69\x5b\x0f\xfa\x58\x4e\x91\xe6\xb3\xa8\x92\xa1\xfa\xc8\xd8\x65\xee\xda\xfb\x37\xe9\x73\x5e\xc7\xe4\xf1\x96\xd3\x78\xd6\x55\xbd\xf4\xc4\x47\xd6\x68\x1d\xe1\xe5\xa7\x59\x50\xc3\x34\x8d\x18\xdb\xed\xc9\x5e\x59\x40\xdf\x7f\xe2\x92\x59\xd1\x38\x76\xaf\x9b\x29\x2a\xde\x5c\xf2\x6c\x1a\x2d\x34\x57\x7b\x60\x99\x34\x4f\x3a\xa3\xf0\x06\xcb\x2d\xef\x8f\xdb\x25\xe5\xfd\x66\xf2\xc1\x39\xf0\xb5\x44\x87\x79\x6b\x6d\xed\x96\x93\x4a\x7d\xaf\x58\xb0\x76\x36\xd2\x9d\x4c\x04\x90\xcd\x56\x6d\x73\x48\xd2\xf3\xc8\xf5\x50\x9f\x69\xf6\x0b\xc8\xe2\x52\x7f\xf6\xbd\xeb\x34\xef\xd3\x37\x77\xae\x6e\xf3\x11\xef\xe3\x3d\xb0\x4c\x92\x35\xe6\x4a\x69\x74\xa8\xf0\xe3\x34\xbd\x77\x23\xec\xc5\xcd\x2a\x6e\xdf\xac\x56\x34\x71\x7b\x54\xeb\x97\x91\x02\x34\xe3\x68\xcb\xc6\xd6\x58\x09\xa3\x41\xce\x78\x30\x48\xa5\x66\x29\x56\x04\x66\x9b\xcd\xa0\xdf\x14\xe3\x50\x3b\xd5\xb0\xc6\x78\x33\x21\xf7\x4e\x65\x1f\xe0\xe8\xae\x8b\xfb\x2a\x44\x06\xb1\x5d\x81\xd7\x56\xd2\x9c\x34\x3b\x26\x7f\x1f\xac\x5b\xe8\x6c\xd7\x7c\x4e\xdb\xda\x31\x1a\x72\x79\xc4\x61\x5a\x6d\xd7\xfb\x38\x49\xcc\x31\x01\xcc\x6e\x97\x1f\xf3\xd4\x1e\x51\x8b\xf2\xa0\xa2\xd2\x96\xe0\x76\x61\x17\xcc\xa5\x88\xa6\x33\x99\x34\xfc\x9f\x9f\x1f\xf1\xda\x8d\xdb\x74\x5a\x3d\x37\x5b\x67\x4d\x7a\x1d\x01\x95\x86\xc3\x5f\xdb\x25\x1c\x94\x5b\x09\x46\xf3\xb4\xe5\x91\x51\xf3\x7e\x34\x6b\x55\xc6\x50\x39\x74\xe2\xf1\x88\x28\x23\x36\x8c\xa0\xd2\x86\x9f\x40\x31\x33\xd2\x8e\x9d\x33\x87\xb1\x97\x50\x9e\x1a\xa5\xc9\x7a\x24\xe7\x8b\xab\xf1\x65\x79\x95\x53\xc1\x3e\x34\x95\xbd\x20\x5b\x60\xbb\xfe\x46\x95\x1a\xd7\xfc\xc7\x15\x0d\x96\x6e\x6f\xf5\x06\x80\xd0\xf5\x69\x3c\xa7\x8b\xec\x34\xac\x49\x6f\x87\x65\x11\xf3\x03\x21\xc6\x2f\x5b\xaa\x7d\x5e\xba\x9b\xb8\xb3\xda\xd3\xad\xeb\xf9\xa9\x0b\x6b\x41\xdf\xc5\x1b\xa6\x7e\x41\x32\xad\x74\x02\x83\x0e\x80\xdd\x7a\x41\xd2\x5c\x05\x3a\x68\x1a\x86\xa2\x2e\xbc\x15\x0d\x62\x2f\x0c\x9a\xab\xfc\x7b\x13\x26\x6e\x73\x31\xde\xf2\x5e\x51\xd4\x7b\x1b\x9e\xd6\xa1\xef\xd5\x5f\xc7\xf7\xb0\xec\x74\x5f\x61\x84\x53\xa3\x8d\x4f\x1b\x45\x94\xde\x98\xaa\xe4\x1a\xf9\x8e\xaa\xc9\x57\x44\xf6\x7d\xcb\x30\x23\xb7\x94\x98\xa8\xa2\xc9\x54\xb3\x25\xb5\x78\xbc\xa6\x95\x7f\x0b\x17\xb4\xcd\x31\xb6\x45\x87\xa1\xbe\xdb\x2c\xaa\x56\x07\x73\x96\xcb\x9c\xb1\xd0\xa2\x6e\xd4\xa5\xf1\x75\xb4\x14\xaa\xec\x11\xf4\x94\x8b\x7a\x7f\x5a\x33\xf0\x7c\xbd\x69\x64\xc5\x2b\xba\x0a\x99\x2b\x5e\x6d\xf1\xc2\x8b\x3f\x36\x16\x7a\xe1\xba\x65\xc7\x60\xc6\xf5\x86\x90\xb7\xcc\xf4\xde\xc7\x61\xb0\xb7\xe2\x9b\x79\x92\xff\x59\x67\xb2\x75\x37\x07\x80\x5f\xb9\x97\xd4\x6f\xac\x91\xa6\xdc\x2c\xef\xa7\x01\x9d\x27\x15\x43\x61\x29\x2d\xcf\x1e\xb3\xc0\x93\xdb\xac\xa3\xf0\xf3\x8d\xb6\x59\xc7\x49\x44\xdd\xd5\x21\x38\xf7\xf7\xdc\x00\x17\x98\x62\x19\x19\x51\x6b\xee\x43\xe0\x56\xfe\x4f\x5e\xb0\x68\x4b\x76\xda\x7b\xbf\x2b\xe0\xee\xcf\x91\x0a\x29\x25\x00\x2e\x0c\x94\x39\x41\x03\xb5\xec\x8f\xb2\x8e\xc5\xff\xb8\x90\x86\xd8\x98\x36\xa5\x8d\x62\xd4\xd1\x1f\x45\xe8\xa1\xfd\x27\x37\xed\x62\x0e\xbb\x06\x89\xa8\x35\xac\x27\xf6\xae\x03\xb7\x12\xe7\x9e\xed\x63\xf4\xb3\x97\x3c\xe3\x66\xe3\xfa\x54\x09\xcd\xa2\x11\x14\xfd\xe6\x06\x61\x45\x0e\x16\xb6\xdf\x56\xab\x73\x6f\x9e\xdb\x9e\x9b\xe8\x4f\x3b\xe9\x8b\x92\x8b\x5d\x65\xe6\xdb\x53\x5c\x6f\x92\xf0\x2d\xdd\xd2\x2a\xdf\x16\x42\x96\x78\x9e\xaa\xe6\x1a\x5d\x69\xb9\xc8\x35\x66\x42\x29\x26\x27\x52\xf5\x42\xa2\xa4\x9b\x52\x0a\xd3\xfe\x39\xb1\x79\x26\x80\x62\xce\xa5\xfa\xf3\x84\x86\xf7\xe5\x81\x0e\x35\x59\x97\x1a\xe2\x85\x8b\x79\x95\xea\x03\xcb\x4a\xc9\x93\xea\xed\xc7\xe5\xec\x46\xb5\xb5\x6a\xb2\x20\xb5\x25\x48\x7b\x13\x85\xd7\x11\x8d\xe3\x6a\x76\x92\x9a\xe4\x15\x3d\x17\xd5\x9f\x7e\x25\x65\x81\xc6\xfb\x2d\xa1\x72\xf6\x82\xda\x79\xa9\xa6\x28\x68\x0b\x57\xef\xa8\x55\xcd\x34\x50\x5b\xad\x9c\x4c\xa0\xb6\x52\x31\x63\x40\x53\x4c\xe7\xa3\x49\x0c\x70\x0f\xc2\x7e\x30\xf6\x94\x1e\xf9\x3d\x0e\x67\x54\xa9\x0b\x19\xb8\xbb\x3b\xbf\xd8\xa9\xad\x99\x3f\xf6\x5b\x1a\x73\x8c\x3f\x6b\x94\x1a\xdc\xb8\x49\x37\x86\x22\x76\xc1\x02\xc8\xb3\x0d\x95\x72\x67\xf3\xb6\xf8\x96\x62\x68\x4b\x6b\x64\x4b\x29\xa8\x45\x16\xa2\x3a\xc4\x43\x99\xf2\x5b\x3e\x84\x97\xa4\x1a\x9a\x92\x85\xca\xd4\xbd\x32\x2c\xe5\x28\x2c\xc4\x09\x29\xc2\xf9\x44\x29\x0f\x74\xee\xfe\xb1\xcb\x8f\xee\x9e\xbd\xf9\xbd\x6c\x0f\x42\x68\xf0\x8a\xd8\xac\x8a\x70\xd6\xf7\x3a\x33\x78\xb4\xb5\x61\xb5\x84\x66\xcf\xb9\x21\xa4\xad\x11\xd4\x11\x9a\xfc\xbc\x5e\xd2\x15\x8d\x5c\x3f\x6d\xdb\xbc\x4f\xb6\x44\xa4\x30\x1c\x35\x04\x66\x90\x52\x5e\xaa\x1e\xa9\xb1\xfb\xf5\xd4\x9d\x36\x3b\x9d\x08\xc6\xfd\xfe\x11\x9d\xb5\x45\x29\xe6\x61\x68\xb7\x22\xb7\x2c\xed\x0c\xbb\x8e\xcb\x2c\x6a\xc3\x23\x7f\xa8\x56\x28\xc7\x40\x0a\x21\xa7\x75\xb8\xad\x89\xfd\xac\x8f\xa4\x2a\x13\x6e\x5d\x9c\xa7\xd2\x82\xab\xde\xa9\x4b\x84\xa4\xdc\x7f\x5a\x81\xa3\xd3\x8c\xdd\xca\x5c\x33\x6d\xaf\xa9\x34\x4a\xe8\xe2\x69\x85\xfd\x72\xbd\xec\xca\x0b\xbc\x78\xd9\x56\x81\x25\xaf\x6c\x94\xf9\xbd\xf8\x29\xde\xf0\x56\xde\x92\x83\x10\xa6\x33\xef\xbe\x2d\x21\x2d\x46\x9a\xa5\x1d\xc9\xaa\x70\xbe\x2d\x44\xec\x40\xfb\x67\xcc\x02\xf7\x06\x4d\x02\x75\x5c\x9e\x7c\xf4\x82\xba\x53\xe7\x41\x31\xc5\x3c\xab\xa6\xa0\xa7\xba\x78\x3b\x92\xcc\x4d\x7c\xcc\xac\x30\xc5\xf5\x02\xf5\x1b\x1d\x01\xf3\x81\xe6\x99\xeb\xd9\x16\xd2\xc1\x7f\x9a\x5b\xf6\xe7\x37\xad\x2e\x53\x08\x66\x76\xce\xcf\xbe\x34\x9c\x29\x8b\x55\x0b\x30\x61\xb6\xfd\x45\x5b\x48\xe5\xa0\x16\x22\xb1\x5d\x25\xdd\x6e\x0e\x47\x3e\x1d\xe9\x38\xf9\x76\x96\xfb\xab\xb8\x4d\xae\x28\xb9\xe3\x42\xbd\xd4\x90\x39\x2e\xe0\xf2\x68\x8e\xc4\xa8\x3b\x3d\xdf\x23\x10\x23\xa5\xef\xae\x3b\x21\x84\x08\x0d\x5a\x0a\xd0\xa8\xe4\x9a\x6f\x0a\x57\x2d\xa4\x95\xe7\x44\xa0\xfa\xf1\x1e\x49\xea\xc5\x1b\x0e\x88\x1f\x67\xf9\xe9\x11\x49\xf7\xed\x07\xfe\xd6\x67\xba\xef\x92\xbb\xff\x54\x0e\x04\x7c\x31\x36\x15\x03\xc3\x69\x2c\xac\x0a\x64\xb5\xe7\x48\x25\x41\xaf\xb5\xce\xf3\xb6\xd3\xaa\x46\xb1\xac\xae\x76\x7f\xd3\x6a\xf8\x91\x3e\xe2\xfc\x62\x31\x9d\x47\xb4\xf9\x8e\xb6\xd6\x3d\xf8\xda\x0f\x2f\xab\x06\xa0\x7c\x93\xec\x4c\x32\xda\x9e\x6d\x29\xf4\xbd\xb9\x47\x2b\x6e\x60\xdc\x77\x82\x57\xb8\x61\x5e\x4a\x65\x97\x5b\x17\xb3\x54\x87\x4d\xdb\x84\x57\x3e\x20\xae\x5d\xb4\x3c\x2e\xb1\x36\x82\x20\x2b\xfb\x56\x57\x56\x66\x53\x55\xbc\x8b\xb0\x7a\x89\x06\x5e\x6b\x18\x35\xdc\xbb\x39\x0f\x83\x2b\xef\xfa\x84\x06\x5b\x2f\x0a\x83\x1a\xde\x71\xe8\x3b\x36\xf1\xe6\xd9\x28\x23\xaf\x4c\xc4\xcb\x29\x2f\x7d\xf4\xee\x66\x4d\xd5\x28\x0c\x93\xdf\xdf\xbe\x12\x8a\xf9\x93\x9d\xf2\x24\x00\x85\x74\x50\x0e\x5a\x8c\x84\xab\x6d\xd5\x86\xc2\x68\x83\xc9\x31\x8a\xd5\x65\xf5\x76\xed\x26\xcb\xa9\x7c\x32\xfd\x10\x5e\xfe\x0b\x77\xe4\x5d\x53\x0f\x85\x94\x36\x69\x33\xd6\xa4\xd8\xf1\x22\x8b\xe1\x2b\xbd\x51\x48\x91\x51\xac\x2f\xa6\xba\x10\x4b\x8a\xb9\x2d\xc4\x92\x82\x7e\x8c\x89\x0c\xc4\x52\x76\x17\x4c\x33\x32\x58\xb9\x08\x46\xb8\xa0\xff\xf2\x58\x68\x40\xa1\x27\x64\x8f\x51\x73\x4f\xac\x5c\xe8\x09\xef\xbf\xac\xed\xaa\xe0\xab\xd9\xd0\x5d\xe1\x12\xad\xac\xcb\xec\x21\xf6\xdb\x36\x3f\x95\x99\x69\xaa\xec\x87\xd7\x65\x94\x5e\xc5\x1a\x10\x5a\xde\xc5\x55\x5c\x9e\xd9\xab\x58\x2c\x3d\xf9\x3f\xf0\x15\x01\xad\xc1\x1b\xde\x72\xdd\x0c\x29\xee\x11\x4c\x0f\x95\x17\x74\x4b\xfd\x70\x8d\x4b\x71\x36\x13\x39\x72\xbe\x46\x79\x2c\x6f\x3a\x90\x88\xd2\x38\xb9\x41\xc7\x60\xf1\x79\x10\x26\xda\x55\xb8\x01\xc9\x3f\x1d\xe7\xff\x61\xae\x8d\x7c\x2b\xef\xda\xc1\xb0\x1f\xf1\x4a\xc7\xe6\xeb\x1d\x9b\x0d\x77\x9f\x78\xca\xbe\x8e\x5b\x81\x5b\x6f\x48\xaf\x94\xa2\xff\x1e\x8d\x4f\xfe\xbd\xa1\xd1\x8d\x86\xe9\xac\x6a\xfa\xb8\x8c\xa8\xbb\x98\x47\x9b\xd5\xa5\x86\x0f\x1a\x93\x02\x67\xf9\x1f\xfd\xbf\xf2\x3f\x3e\xb0\xfc\x8f\x91\xb8\x6f\xa4\xdb\x46\xb6\x95\xab\xb7\x0d\xb7\x23\xe3\xce\x95\x80\xa6\x88\x41\xec\x9c\xce\xb8\x86\x85\xbf\xc8\x9a\x46\x57\x61\xb4\x1a\x24\x8a\xb2\x53\x73\x52\x89\x6b\x42\xf8\xd1\xac\xf7\xef\xf5\x4f\x1b\xcf\x5f\xd0\x48\x41\x8b\x6f\x16\xd4\x3f\xa5\xb9\xc1\xa7\x25\x02\x3e\x8b\x82\x3c\xbf\xf5\xd1\x07\x47\xfe\x15\xb7\x28\x37\xba\x8e\xa7\xe7\xb8\x5f\x11\x8f\x65\x47\x49\x2e\x76\x17\x69\x48\x9b\x3f\xc0\xd0\x8b\x0f\xe1\xe5\x33\x1c\x9d\x32\xc8\x5f\x27\x2b\x8a\xa2\xa6\xdd\xd1\xd2\x55\x71\x68\x12\x55\x0a\xdd\xa7\x26\xa9\x74\xe3\x12\x06\x9e\xa6\x1e\x50\xd4\x86\x7e\x92\x8b\x9d\x5a\x7c\x53\x9c\x7a\xd2\xa5\xef\x10\xad\xbc\x22\x9f\xa0\x17\xbb\x0b\x65\x87\x41\xc1\x7e\x93\x3e\xd7\x76\xf3\x74\x35\x63\x43\x31\x8b\x0f\xcb\xf8\x50\xac\x94\xd7\x01\x86\x47\x58\xda\x08\x14\x14\x33\x21\x10\x33\x5f\x28\x3b\x15\xa9\x81\x89\xf9\xf8\x95\xe5\x4f\x28\xa5\x48\x57\x1b\xee\x00\xcf\x0f\x79\x18\x9f\xeb\xe1\x38\xde\xca\x55\x4f\x38\x09\x7c\x9f\x7b\xf4\x0b\x8b\xea\xb6\xf1\x36\x71\x5c\x4c\xde\xd5\x20\x61\xeb\x21\x98\xd5\xa0\x99\x67\xb0\xe0\xd7\x58\xc2\x4a\x23\xb5\x77\x65\x2a\xbb\x27\x0d\x25\x6c\x06\x03\x35\xc8\xb2\x6b\x74\x52\x06\x4f\x5d\xd1\x38\x66\x64\x00\x38\x31\xbf\xd1\xcf\x49\xe1\x62\xf5\xee\xdb\xeb\xdb\xe7\xa9\xac\xa9\x7f\xc7\x69\x4a\xc2\x88\x36\xdd\xff\xdb\xc4\xc7\xd2\x69\x3a\x2d\xb1\x8b\xa0\xc0\x25\xea\x57\x30\x61\xb0\xd2\xb2\x41\x0b\x98\xc5\xc5\xee\x62\x7a\x7e\x51\x59\xdc\x42\xf2\x13\x78\x43\x9a\x40\x06\x6b\x95\x2e\x06\x2c\xf0\x0a\xe5\x89\x77\x35\x08\x94\xdb\xd4\xd6\xc0\x18\x0d\xde\x4e\x29\x57\x8c\x65\x58\xf9\xc8\x65\xb5\x63\xdc\x80\x19\x56\xf8\xae\xf5\xce\x8d\x3f\x4a\x79\x6c\xb0\x2a\x4b\x41\x98\x48\x28\x11\x49\x57\x61\x24\xe5\xef\x95\xf2\x1b\xb6\xf9\x3b\x41\x01\x54\x94\x27\x31\x99\x87\x0b\x3a\x93\x6d\xdd\x96\xcb\xd7\xd2\x33\x38\xd6\x6b\xdf\xcb\x2f\x4b\x84\xa6\x5c\x64\x89\x33\x32\x76\x77\x07\xa1\xb6\x93\x4c\x26\xad\x15\xbc\x7a\x75\xf0\xed\xb5\xd1\xfc\x9a\x6a\x9e\x7d\x15\x7d\x23\xe5\x8e\x61\x75\xdf\xa8\xdf\x0f\xbc\x36\x99\xb4\x20\x51\x96\xf1\x90\x49\x80\xc5\x9c\x76\x5d\x32\x60\xb6\xc9\x94\xc4\x38\x35\x63\x95\xe7\x17\xaa\x3b\x3b\xd2\xd5\x78\x76\x64\xa8\x61\x8a\xb4\x24\xba\xc9\xc4\x47\x5f\x8d\x66\xf4\xbc\x24\xf3\x5d\x0c\x94\x1f\x8f\x06\xee\x6c\xe0\xcf\x22\xbc\xb0\x74\xa0\x28\x64\x11\x06\x54\x39\x3e\x1e\x04\x98\x69\x6f\xe0\x13\x9c\x17\x45\x3d\x4a\xee\xee\x02\x2e\x68\x1e\xcd\x66\x89\xf2\x23\xbc\x52\xf9\x91\x67\x4b\xf2\x94\xdb\x18\x86\x10\xce\xbc\xdd\x95\x17\xb8\xbe\x7f\x73\x0b\x03\x70\xef\xee\x58\x8c\x5d\x44\x18\x1c\x77\x77\xe9\xb7\x81\x92\xd5\xf4\xae\x06\xb1\xc2\xa4\xc2\x70\xb7\xcb\x04\x57\x84\xf1\x5e\x92\xe3\x82\xc6\x69\x5c\xff\xb7\x17\x1f\xdd\x5a\x16\x5a\xcf\xad\x58\x26\x25\x35\x9e\x51\x02\xea\x92\x1a\xce\x58\x16\xa0\xdf\xdf\xbe\x7c\x16\xae\xd6\x61\x40\x83\x64\xc0\xfa\x9e\xcd\x66\xf1\xa9\x7c\x22\x4f\x63\x45\xf5\xfb\xf1\x36\xc2\x4f\xed\xa3\x59\x7e\xb9\xbf\xcf\xec\xd5\xe9\xcf\xb0\x70\xe8\x72\x22\x2b\xa7\xb2\x3c\x85\xbf\x59\x85\xec\x10\xc4\xcf\x8f\x80\x4e\x85\x4c\x59\x20\xe9\x9f\xfb\xcc\xf8\x1c\x29\xaa\x5f\x7b\x06\x21\x2b\x17\x35\x32\x15\x67\xa2\x03\xaa\x1a\xca\xb9\x9e\xa9\x28\x31\x79\x19\x3f\xf7\x22\xf1\x25\x4b\x37\x5e\x0e\x98\x46\x19\xb2\x73\x20\x5f\x5d\x78\x11\x9d\x27\x61\x74\xf3\x73\x90\xa0\x6b\x98\x4f\xfc\x78\x10\x09\x92\x97\x60\x44\x75\x15\xbc\x15\xcc\xf3\x59\x92\x84\x69\xa9\xaf\xb4\x48\x67\x06\xf8\x78\xb7\xab\xef\x86\x09\x70\xa5\xd6\x3b\xcc\xc8\xd5\x20\xc7\xa4\xbb\x52\x26\x41\xf0\x45\xf3\x77\xe3\xf8\x98\x4d\xec\xd1\x2c\x2f\x3c\x37\x2e\x4e\xc5\x1f\xd3\xdb\x1d\x6c\x64\x8c\x38\xdc\x59\x82\x33\xaa\xa2\xd1\xb4\x04\xbd\x1a\xce\x12\xc2\xc0\x40\x87\x11\x80\xe3\x49\xa7\x34\xa3\xa2\x10\xf5\x26\x53\x9d\x39\x8e\x03\x06\x99\x5b\xc5\x71\x9c\xa2\x2a\x64\x98\xf2\x77\x25\xb9\x66\x7f\xad\x9e\x71\x52\x34\x88\xfc\x21\xc2\x4d\x45\x49\x10\x4e\x08\xdb\x70\x57\x38\x1c\xac\x27\xfa\x36\x0d\xa1\xff\xfe\x2c\xec\xf7\x8d\xe7\x34\xec\x4c\x28\x3e\xc1\xad\xe6\xdb\xed\xb9\x75\xf8\x63\xf6\xdc\x26\xe9\x90\xe7\xa7\x68\x2a\x6d\x13\x2c\xd1\xd2\xf2\x06\x0d\x2d\xd3\xf4\x86\x85\xdb\x88\x5e\x45\x34\x5e\xbe\xc6\x49\x3b\xd2\x77\xbd\xe4\x71\x51\x48\x82\xfd\x07\xb4\x6f\x7a\x15\x46\xf4\x75\x83\x0c\x09\x53\x5d\x4c\xff\x92\xf3\x3a\xc1\xb7\x03\x61\x23\x6c\x68\x99\x39\x4f\x2c\xe2\x48\x7c\x8b\x35\x6a\x98\x60\x80\x7b\xfc\x51\x52\x68\x14\x2f\xc3\x8d\xbf\x38\x5b\x86\x9f\xde\xa6\x3d\x67\x99\x46\xf9\x0e\x43\x89\x80\x1c\x3e\x00\x64\x0b\x8d\x2f\xe7\x95\x64\x05\x19\x85\x58\xcd\xc5\xc3\xfe\x74\x88\x77\x77\x29\xe0\x03\xf7\xf8\xd8\x3d\x9a\xcd\xc2\xbb\xbb\x23\xf7\xf8\x38\x3c\x9a\xcd\x62\x10\x05\x12\x92\xc1\x0d\x78\xc5\x74\x85\x78\x30\xb9\x09\xfc\xd0\x5d\xa0\xae\xc3\x73\x18\xd6\xbf\x43\x75\xef\xee\x62\x45\x0d\x76\x55\x0d\x5d\x54\xb4\xd9\x80\xdb\x78\xab\x20\x35\x25\xe9\x4d\xc1\xdd\x08\x38\x3e\x66\x33\x1a\x6d\x02\x26\xe6\x08\xeb\x93\x93\x0a\xaf\xca\x69\x85\xcf\x6b\xbb\x56\xe8\xce\x99\x2f\xda\xed\xc2\x5b\xbc\x8b\xdc\x20\xae\x64\x20\xcd\x87\xc7\x56\x0c\xf1\xe2\x77\x34\x4e\x00\xe5\x3c\x81\x5f\x3c\x07\x10\xdf\x85\x03\x5d\xd5\x95\x9d\xfa\xc9\xf3\xfd\x96\xae\x7a\xab\x05\x9c\xe2\xf1\x57\x01\xd5\xb9\xfc\x13\x5e\x49\x09\x79\x7a\x19\x46\x09\x0a\x51\xfc\xb2\x89\xde\x6f\xa0\x4a\x49\xdf\x68\x93\xa7\xb3\xc3\x81\x5a\xc1\x59\x34\xd5\x5e\x85\xd1\xa5\xb7\x58\xd0\x20\xf5\x3b\x6a\x90\xaf\xb3\x7a\xdf\xf0\x10\xba\x86\xf3\x25\xa2\x49\xb0\x85\x8f\xb5\xb3\x40\x51\x7d\xce\xec\x74\xcf\x52\x1c\x71\x2d\x99\xe3\x8c\x5b\xeb\x2e\x76\x17\xf5\xfc\xab\xce\x41\x8d\x2d\x05\x9f\xba\x0b\x3c\x43\x6e\xb4\x89\x55\xa4\x2d\x0c\x88\x9f\x0a\x8e\x07\xa0\x0b\xc3\xea\x66\xe9\x2d\x14\x15\x8f\x5a\xea\x6b\x60\x91\x5c\x30\x83\x05\x15\x33\x58\x6f\xb9\x81\x43\x7f\x92\x1e\x1b\xf5\xd5\xb8\xbe\xfe\x8c\xe0\x5b\x1e\x7c\xd7\x50\x94\xdb\x93\xa2\xee\x6f\xd7\x6c\x16\x6a\x9b\x0d\xd2\x4d\x86\x9c\x8a\x35\x36\xa5\xd2\x74\x9e\x68\x6e\xd8\x48\x8d\x36\xee\x55\x42\xa3\xea\xae\x5b\x11\xa5\xb2\xfc\x2d\xb2\x72\x0a\x5b\x01\xa6\xc1\xed\x34\xcb\x96\x4e\x25\xa7\x75\xa2\x19\x94\xa8\x1d\x26\xfc\x81\x68\xc3\x7f\xcd\xfc\x25\xea\xcd\xf8\xaa\x58\xf3\xa9\x78\xc2\x98\xd7\x17\xe3\x5a\x84\xa6\xa2\x1d\x38\x28\xd9\x81\xf9\x0a\x2b\x37\x2f\x54\xcd\x1d\x34\x2a\xf7\x1a\xf4\xb4\x1c\xab\xd5\x61\xf7\x71\x41\x28\x2e\xca\x8a\xf5\xf8\xf0\xab\xee\x9b\x72\xf1\x1e\x07\x3b\x99\x5c\xd0\x76\xa6\x53\x67\xd7\x7f\xea\xfb\xa5\xc9\xdc\xd7\x9c\xdf\xc6\x16\xf3\x43\xd8\x3f\x44\x6f\x42\xf5\xe3\x97\x74\x0c\x8d\xdb\x5b\xfd\x3e\x25\xa6\xda\x2f\xf4\x93\x69\x55\x84\x06\xf1\x26\xa2\x2f\xfc\x0f\x71\x65\xe1\xd7\x6d\x5a\x28\x9b\x8b\xad\x5e\xb9\xc1\xf5\xc6\xbd\xa6\x03\x79\xe9\x06\x0b\x9f\x5e\xba\x11\xfa\x2b\xd6\x57\x49\x56\x3e\xab\x70\xa1\xec\xa3\x9c\xfd\x81\x67\x27\x11\x65\xda\x79\x45\x30\x4c\x32\x99\xf1\x5d\xc8\xbd\x52\xf6\x80\x88\x79\xb1\xfc\x99\x64\xb3\xfb\x6b\xa0\xb5\xb2\x59\xd3\x19\x2a\x48\x65\x05\x95\xb5\x70\x62\x5b\xa3\xb8\xf6\x57\x41\x2b\xe2\x5c\x76\xe8\x1b\x57\x8c\x0c\xd9\x51\x46\x51\x47\xcc\x5a\x64\x7d\xd6\x28\x68\xbf\x09\x49\xda\x85\x73\xe4\x7a\x5d\xad\xce\x37\x35\x13\x00\x99\x73\x13\xdb\xb7\x71\xee\xda\x04\xc1\x5c\x79\xe2\x48\xc2\xa9\xac\xd0\x35\x2f\x1c\x94\x95\x8d\x36\x1e\x09\xf3\xf3\x1f\xb5\x45\xe1\x24\xfd\x37\x83\x61\xaf\x5d\x8a\x5d\xe0\x7a\xf0\x4d\x0a\x27\xa0\x72\xf3\xea\x5e\x52\x7b\xa7\x4f\xcd\x37\x45\x7e\xbb\x24\x8e\x6e\x54\x7d\xd8\x47\x90\xfb\x53\xa8\x31\x8d\x3c\xd7\xf7\xbe\xd0\x1a\x19\xf8\x36\x75\x04\x4c\xa5\xec\xcc\x4d\x62\x57\xb5\x96\xa8\xc2\xb9\x65\xed\x62\xe7\x8a\x7c\xd5\xdc\x93\xad\x74\x82\x79\x35\xe3\x19\x25\xe9\x8b\xd5\x70\x56\xbe\x7c\x21\x2e\xb0\x83\x0b\xe5\x49\xfd\xca\x4f\xaf\x81\xc0\xe9\x0e\x8b\xcb\xbf\x49\x72\xaf\xee\xe0\x55\x79\x3d\x55\x24\x0a\xee\x88\x15\x5b\x5a\x93\xff\x45\x55\xd3\xd9\x9b\x78\x4f\x0a\xbe\x83\x7f\x06\x3e\xd2\x66\xf4\xce\x8f\x95\x52\x17\x1e\xb9\xd5\xd8\x5d\xdd\x83\x0a\x53\xd1\xa5\x6c\xdd\x5f\x83\xda\xd5\x2a\x48\xc9\xc1\x14\xa4\x66\xc5\xa8\x17\xd1\x08\x7e\xb8\x0f\xee\x60\xa3\x76\x8e\x31\x03\x7f\x26\x7f\xd7\xdc\x86\x54\x9e\xe7\x44\xe4\x5a\x53\xaa\xe6\x10\x4f\x93\xdd\xae\xd3\x57\x46\xf4\xef\x41\xfe\xf3\x24\x20\x50\xf1\xd2\x9d\x7f\x7c\x9a\xc5\x00\x0e\x14\x35\x20\xfc\xbe\x98\x41\xa6\x70\x7b\xf1\xcf\x0b\x2f\xc1\x78\xa0\x23\xa3\x2c\x11\x74\xc9\xb7\x7c\x7a\x72\xb7\xe7\xff\xf4\x35\xdd\xc0\x85\x4b\x97\x20\xb2\x87\xb9\x17\x79\x3b\x0b\xde\xcb\xc8\xf2\x5c\x9c\x8c\x7c\xe1\x0b\x8f\x1b\xad\x2e\xef\xd3\xf1\x08\xed\xd2\x67\x75\xf6\x96\xe7\xc5\x4b\x1f\xeb\xd9\x45\x11\xf2\x42\x9f\xcd\x8d\x04\xff\xfa\x7e\x0c\xa6\x00\x75\x09\x9a\x7b\x30\x1c\x71\x7f\xfc\x4f\xa7\xe8\x3a\x91\xe1\x50\xbb\xd4\xcf\x22\x9e\x73\xa2\x13\x1e\xd7\xec\x52\x3f\x17\xaf\x10\xad\xa7\xa0\x62\xc0\x45\x3f\x22\x12\x47\x73\x0f\xa2\xf9\x0f\x50\x8e\x6a\x1d\xb3\x63\x39\xa5\xaf\x5a\xcb\x6e\x16\x9d\x9f\x97\x9e\x65\xb7\xed\xf2\x4a\x85\x08\x7f\x59\x29\x26\xa5\xe8\x92\x5e\x0a\x77\xca\x76\x11\x51\xf5\xf6\xc6\xec\xe5\x95\x0b\x21\x65\x85\xc7\x6a\x60\x7f\xaf\xca\x37\x2f\x8a\x9d\x7a\x71\xd6\x91\x70\x83\x7d\xb1\x83\xa7\xbe\x9f\x6b\x8f\xbb\x36\xe7\x65\x41\x83\x7c\xea\xfb\x6d\x0a\xe6\x59\x7e\xd9\x76\x4d\x27\xc2\x75\xdb\x5f\x25\xdf\xdd\x77\xc5\x95\x51\xd6\xdc\xb8\x72\xd3\xe5\x3d\x4c\xef\xe9\xd7\xb3\x34\x9b\x53\x8d\x24\x5c\xc3\x76\xe4\xda\xa1\xde\x87\x01\x34\x25\xde\x39\x78\x7c\x4d\xbf\x08\x9a\x16\x9f\xc9\x43\xa7\xdc\x69\xe7\x26\x5f\xe7\xd7\xdc\x11\xfd\x90\x8b\x53\xbc\x19\x06\x0a\x7c\x75\xbc\xc7\x7d\x7d\xa3\x8b\x4a\x40\xc0\x95\x80\xcc\x33\x59\x38\x8c\x0b\xb2\xc3\xb8\x69\xcd\x75\x99\x4a\x75\x8f\x65\x5b\x76\x50\x0a\xf1\x68\xf4\xad\xce\x1c\x23\xeb\x7d\xab\x11\x91\x45\x0f\xeb\xab\x30\x92\x3e\x84\x97\x55\x87\x6a\x8e\x59\xc1\x07\x5b\x56\x94\x27\xcc\x67\xd4\x15\xbd\xac\xdd\xcc\xc7\x34\x8d\xe9\x2d\xab\xb7\x0d\x07\x90\x4d\x26\x87\xb8\x6a\xe2\x6c\xdb\x9b\x44\x3d\x28\x11\x48\xe4\x49\x75\xc7\x02\x3d\x2b\xe7\xcd\xbf\x86\x97\x19\x6f\x0e\xfa\x6c\x59\xc1\x57\x6c\x59\x01\x1e\x8c\xa8\xe9\x8b\x3b\x76\x80\xef\xc3\xe2\x3b\x19\xed\xaf\xe1\x65\x0f\x06\xdb\x23\x33\x77\x99\x6b\x66\xb2\xfe\x9f\x42\x72\xfa\x7a\x41\x3b\xd7\x7d\x0e\x25\x65\x17\xcf\x59\xeb\x34\xba\xdd\x37\x53\xcc\xee\xab\x85\x45\x9b\x3f\xc8\xd6\x73\x68\x07\xa4\xb7\x00\x88\xb8\x95\x01\x64\x17\xbb\x8b\x3e\x87\x40\x2c\xc7\x42\xc1\x18\x7c\x9b\xed\x5a\xd3\x2e\x83\x34\x86\x93\xf7\x71\xea\xc4\x91\x90\x05\xf5\x69\xf6\xb2\x3d\x8e\x39\x85\x48\xe5\x07\x64\x9b\xab\x6c\x7a\x6f\xdc\x6b\x2a\xee\x5f\x4f\xe8\xfd\xc3\x83\xca\x59\x61\xda\xd0\x93\xc5\xdd\xff\x99\x0e\x82\x0f\xbc\x46\xce\x52\x1c\xf1\x75\xc2\x71\xf6\x1f\xea\xa4\xc7\xa1\x3f\x49\x33\x32\x74\x12\x0e\xcb\x24\x84\xb4\xa9\xa1\x87\x86\x17\x5c\x7f\x4f\xc7\xf5\xfc\x5c\xa8\xcb\x71\x35\x3b\xaf\x8b\xe2\x13\x86\xb4\x7a\xe8\x0a\xf5\x44\xaf\xfd\xfe\xae\xfa\xdf\x36\x83\xbb\x9b\x24\x51\x3c\xbd\x15\x6e\x10\x94\x17\x73\x39\xbb\xda\x4d\x66\xf7\xa2\xc5\x34\xba\xc2\x8b\x03\x64\xf8\x94\x77\x6a\x10\x46\xab\xf2\x79\x25\x97\x5b\x8f\x12\x51\x5e\x0f\xc8\x53\x06\x1d\xe3\x5e\xe7\xb7\xe9\x45\x57\xc0\xad\x76\x17\xb9\xf0\xcd\x53\x8c\xcf\xe4\xb7\xf4\xdf\x1b\x1a\x27\x74\x21\x3d\x05\xc4\x4a\x9f\xdc\x58\x08\x99\xf4\x02\x29\xa6\x89\x14\x5e\x49\x6e\x7a\x31\x13\xab\x17\x0b\x42\x7b\x42\x5e\x3e\x9f\x25\x78\xb1\xbd\x9a\x90\xe7\x19\x6c\xb3\x84\xbc\x73\xaf\xe3\xe3\x63\xf6\x97\x2c\xe6\x6a\x42\x98\x2f\x78\xb9\x88\x3b\xd0\x27\xe4\xed\x7a\x0e\x30\x97\xcb\x61\xa6\x45\x27\x70\x04\x5f\xc0\xcb\x5b\x1a\xaf\xc3\x20\x2e\xe2\x07\xa6\x32\x0d\xb8\x73\x2b\xf1\x3f\x6a\x2c\xa4\x6f\x70\xff\x6e\x9d\xba\x9a\x35\xd5\x15\x35\x9c\x59\x3f\x86\x7f\x73\x7f\x0c\x7f\xf8\x41\x89\xcf\x43\xcd\xba\x10\xa2\x83\xc2\x8b\x27\xed\x9e\x9e\xe7\xf8\x5e\xf2\x1a\xe9\x2d\xbe\xbb\x3b\xbf\xc8\xa2\xfa\x51\x0b\xc9\x46\x7c\xe6\x05\xd7\x7e\xd3\xb8\x55\x37\x1f\x79\x5c\x1d\x79\x28\x8c\x3c\xfe\xbb\x7d\x1a\x6b\x36\x8c\xdc\x9f\xd9\x3f\xfa\x7f\x8b\x7f\xf4\x7f\xf8\x41\x09\xcf\x7d\xcd\x16\x47\xee\xf7\x1c\x79\xaa\x13\xb2\xec\xaa\xae\xa2\xba\x17\x79\x24\x5a\x1f\x6e\x54\x58\x83\x5d\x99\x43\x9a\x16\xec\xf7\x0b\x59\x6d\xdf\x76\xf8\x7a\x2d\x24\x46\x98\xa2\x22\xcc\x13\xd9\xb2\x38\x65\xf6\xe8\x8c\xc5\x2c\x37\x2f\xd7\x74\x0c\x79\xe5\xbb\xbb\xdb\x5d\xee\x0f\x94\x3f\x2f\xdc\xbf\x1d\x28\xc5\xa4\x47\xb9\x86\x7e\x4e\x2f\xa0\x07\x35\x9e\xdd\xe2\xc8\x68\xd6\x99\xd8\xde\x55\xc8\x55\x18\xfd\xec\xce\x97\x75\xe7\xff\xf1\x39\xbd\x98\xb9\xe7\xf4\x62\xa7\xa8\x31\x79\x9b\x26\x16\xe4\xc3\xcc\x7e\xb3\xa5\x28\x3c\x38\xa7\x17\x6a\xbc\x53\xd4\x84\xfc\x1a\x5e\x72\x71\x7d\x16\x6c\x7c\xff\x68\x26\x3e\x3a\x15\x7f\x4c\x85\x2b\xbd\x55\x19\x94\x67\x5e\x20\x43\x3f\x6f\x7c\xd7\x0b\x7e\x0d\x2f\x5f\x2e\x58\x0f\x2f\x9f\xab\x8c\xab\xa0\x58\x3a\x13\xbe\xdf\xdd\x55\x3a\x12\xc4\xd7\x9e\x3e\x17\x82\xdd\x46\xe5\xef\xab\xf8\x5d\xd4\x8c\xe3\x02\x86\xfa\x1a\xaf\x41\x7d\x97\xde\xe4\x30\x13\x9f\xfc\x2f\x83\x3a\x85\x2a\xb3\xd7\x6e\xb2\x24\x57\x7e\x18\x46\x03\xf1\xf9\x89\x41\x1d\xe8\xec\x59\x96\x12\x2d\xed\x2c\x7f\xc2\x3b\xcb\x1f\x14\x3b\xcb\x9f\xa7\x9d\xbd\xcd\xee\x46\xfb\x19\xf3\x42\xce\x06\xe2\xb3\x77\x91\x3b\xff\x48\x23\x20\x1a\x85\xb0\x0a\x80\xf8\xea\x2d\x5b\xc0\xd0\xab\x8f\x4f\xeb\x1e\x4e\x61\xd2\x01\x43\xf4\x73\x52\xea\xa1\xf8\xe8\xb4\xfc\x20\x6d\xf9\x4b\xe8\xfb\xe1\xa7\xdf\xd7\xb9\x7d\x15\x5b\xb3\xc7\x1b\x7c\xfc\xf2\xf9\x69\xf9\x41\xda\xfa\x4d\x9a\x58\x42\x7c\x79\x3c\xab\x2d\x40\x8e\x2c\xb6\x11\x93\x51\xa4\x40\x57\x4b\x58\xd0\xb4\x9a\x90\xff\x76\xe3\xac\xc2\xec\xe8\xa8\xb1\x23\x35\x21\xfc\x27\x5d\x88\x4b\xaa\xfa\x10\xd6\x55\xf5\x29\x39\x5b\xba\x11\x5d\x54\xb7\xbc\xee\x20\x9f\x46\x19\xa8\x1a\xb9\x38\x0f\xd7\x37\x45\xd9\x48\x6c\xfc\x21\x16\x24\x27\x2f\xb8\xf2\x31\x10\xb5\xaa\x5e\x44\x74\x15\x6e\xa9\x16\xa1\x06\xd8\x60\x30\xce\x42\xed\xc3\xbf\x92\x2d\x3d\xb0\x64\x4b\x7e\x4d\x7a\x4f\x9e\xd4\xf5\xff\xd2\x9b\xa9\xfc\xf2\xb9\xac\x7e\xa4\x37\xbf\x84\x51\xe6\x11\x52\x1f\x2e\x38\x77\x57\x14\x48\x67\x00\xea\xcc\xda\x4b\x5c\xf6\x63\xc7\x5b\x8b\x16\xa1\xda\x7d\x31\x0f\x91\x47\x53\x7c\xec\x05\xd7\x1b\xdf\x8d\xbc\x2f\x54\x19\x50\xa5\xa9\x7b\x15\x06\x98\x9a\xc3\x64\x6e\x3d\xc6\x24\x6a\xa7\xd8\xcd\xda\xdf\x44\x58\x55\x19\x04\xca\x34\xd8\xa9\xeb\x4d\xbc\x7c\xe3\xde\xa0\x63\x5c\xed\xf6\x8c\x01\x3b\x33\x94\xd1\xa7\xe7\x17\xaa\x17\xcc\xfd\xcd\x82\x2e\xa6\xe7\x17\xbb\x27\xe2\xb6\x9a\xd4\x6c\xab\x31\xeb\x05\x70\x8a\xda\x15\xec\x1a\xbf\x44\xe1\x8a\xbf\xf0\xff\xd2\x9b\x41\xac\xa8\xd1\x8c\x92\x7c\xa5\xfd\x12\x46\x03\x5f\x51\xbd\x19\xcd\x2d\x7d\xbe\xf2\x84\xed\x70\x2b\xf7\x23\x65\x44\x9f\x9c\xc7\x17\xf5\x1b\x39\x2e\x11\x35\x98\x45\x24\x13\x3c\x06\x9e\x4a\x55\xcc\x53\x10\x10\x00\x44\xdd\xcc\x02\x92\x42\xf2\xe3\xc0\xc5\x87\x3c\xa3\x84\xa2\x6e\x30\xaa\x74\xe6\x66\x35\x14\x2c\x4a\xa5\x43\x35\x1c\x6c\x14\x96\xe1\x8e\xb2\x36\xae\x28\xc9\xfe\xc2\xd4\xd9\x5a\x51\x56\x44\x6a\xaf\x58\x6e\x66\x50\xd9\xf8\xfe\x19\xa8\xca\xd0\x45\x8e\x48\x95\xc1\xa2\xa8\xc1\x4e\xcd\xaa\x14\x9c\x31\x55\x9e\x18\x26\xac\x46\xfb\x5b\xb5\xd1\xfe\x96\x18\xed\x6f\x5d\x54\x15\xfe\x23\x7d\xa7\xfa\x33\xb4\x6b\x02\xb7\x54\x50\x98\xc2\xbb\x08\x9a\x7d\x29\x41\xf0\xa0\x6a\x9e\x4f\x74\x4d\xe9\x47\xd0\xf7\x83\x3d\x9b\xa6\xb5\xc3\x9a\x69\xcf\x30\xeb\xa3\xc4\xde\xab\xc7\xd9\x6c\x56\x10\x9b\xf8\x00\x83\x53\x9f\x30\x1e\xce\x79\x60\xa0\x94\xee\x34\xc0\x9d\x27\x35\x8a\x54\x49\xba\x86\x1d\xd4\xac\x60\xb2\x70\xe3\x25\x8d\x70\xd1\x96\xf6\x31\xbf\x2e\x85\xa9\xb8\x15\xe5\xce\x40\x0f\x56\x8f\xe0\x9a\x02\x37\x74\xff\x86\x19\x83\x31\x54\x21\x95\x70\x5b\xb5\xf8\x92\x72\xc0\x4e\xe8\x50\x39\x10\x1e\x64\x17\x0a\xf4\xd1\x0e\x12\xd4\x0e\x8a\x21\xf4\x6e\x1c\x7b\xd7\xc1\x20\xd5\x15\x70\x56\x1f\x86\xdc\x8d\x7f\x7f\x09\x23\x76\x9c\xde\x57\x10\xaf\xc9\x19\xc6\x0d\x03\xf4\x73\x12\xb9\xf3\x44\xdc\x73\xca\x87\x1d\x02\x63\xaa\xa4\xf5\xa6\x39\xd3\x51\xf2\xa3\x4c\x0e\xa6\xea\xf2\xb0\x29\xf6\x8e\x97\x0b\xec\xaf\x1e\xd3\xe2\xe1\xde\xad\xef\x05\x1f\x31\xc4\xc2\xc7\xeb\xb2\xe5\x93\x6c\xc3\x0b\x54\x59\xa0\xf1\x42\x9a\x8e\xfc\x50\xd5\x55\x76\xbb\x5d\x45\x22\xdc\x57\x24\x5c\x44\xae\x17\x68\x71\x12\xb9\x09\xbd\xbe\x79\xb0\xcb\xa9\x69\xad\xf0\x7d\x5e\xd7\x75\x43\xc3\xff\xdf\xe9\xfa\x14\xff\xff\x1f\x96\x39\xf5\x97\x30\x9a\xd3\xe7\xd4\x5d\xf8\x5e\x40\x31\x59\x42\xe1\x09\x6a\xa8\xca\xd7\xca\xd5\xb9\xcf\xca\x83\x45\x60\xbb\x5d\xa3\xcb\x42\xf1\x4b\xe1\xde\x97\xa2\x95\xa2\x58\xd6\x9f\x17\x89\xbd\x3c\x74\x7e\xf4\xe8\xed\x00\x5f\x47\xdf\xf9\xbd\x31\x0f\x94\xba\xf7\x03\xe7\x43\x78\xa9\xad\x7d\xf7\xe1\x2e\xd6\xef\xb7\x1c\x5b\xd7\x5f\xba\x4a\xf9\x32\x64\xa6\x0d\x6e\x4e\x19\x14\x56\xda\xd3\x20\x08\x13\xee\x9e\x52\x34\xb3\x64\xb7\x9c\xf0\x8b\xc3\x40\x3b\xeb\x91\xbe\x65\xff\x09\xad\xbd\x7c\xf1\x11\xcc\x69\x03\x7f\xeb\xc7\x74\x0a\x41\x60\x82\xf4\xf4\xf2\x79\x36\x0e\xee\x65\x73\x00\xe1\x11\x4d\xcb\x6e\xab\x69\xb9\x4e\x07\xce\xa9\xcc\x3d\xcf\x75\x7a\xaa\xca\x29\x7d\x5c\xcc\x12\x66\x6e\x76\xb3\xb4\xe4\x05\xe2\xca\xdd\x60\xd3\x57\xba\xc7\xc7\xfd\x0d\xda\x49\xf1\xad\x79\x6f\x99\x99\xfb\x2b\xb9\x23\x50\x1f\x97\xf3\x1f\x2c\xf5\x71\x75\x24\xe0\x7a\x48\x8d\x12\x02\x6a\xfb\x0b\x66\x2e\x69\x3c\x85\x52\xe3\x54\x9f\x0e\x48\xe6\xff\x53\x24\x18\x21\x05\x54\x91\xa9\xec\x54\xaa\xde\x3e\xf7\xae\xae\xa6\x01\x81\x3f\xf1\xf1\x31\xff\x72\x9e\x5c\xa8\x2f\x9f\x4f\x85\x59\x22\x2f\x9f\xab\xb2\x96\x8b\xba\x34\x7d\x9b\xa2\x22\x85\x4f\xcb\x4b\x03\x5b\xd0\xa6\x75\x71\xb6\xb9\x5c\x79\x09\xde\x31\x22\xec\x92\x94\xe4\xcf\xd9\x2e\x99\xff\x66\xf7\x31\x8b\x35\x60\xc3\xc5\xbc\xf9\xf5\x3a\x86\x1a\x72\xfc\xec\x4f\x3b\x7b\x9f\x5d\x33\x77\x5d\x7e\x07\x4a\xf5\xb4\x3a\xb3\xad\xba\x7f\xa5\x31\xfd\x33\xa5\x31\xad\xbd\x1f\x8f\x2d\x6b\x74\xdd\xa6\x09\x5a\x53\x16\x53\xf9\x8d\xf8\xf3\xd7\xf0\xb2\xc5\xd6\x90\x89\x0d\xd9\xd2\xc9\xce\xee\xf1\x57\x2a\x7e\xe3\xde\xd4\xbc\x31\x15\x77\xa5\x97\xcf\xcb\xfb\xd2\x1b\x37\xa2\x41\x82\x87\x36\xe9\xd7\x9a\x5e\xd2\xa2\x96\xbe\xa6\x42\x07\xfc\x0c\x86\x6f\x70\x7c\xdf\x83\x97\xd1\xc8\x0b\x17\xde\x5c\x4c\xa6\xc6\xa6\x00\xf5\xbf\xb4\xf8\x39\x4d\x5c\xcf\xc7\x83\x21\xfe\x44\x68\x0b\x44\xc7\xc6\x5d\xc0\x64\x53\x97\x62\x35\xa1\xdf\x52\xeb\x9a\x0e\xf9\x7b\x7e\x0d\x2f\x39\x18\x3c\xd2\x83\x99\x20\x04\xdb\x74\xd1\x4b\x57\xbd\x2d\xfc\x9c\x9e\x8b\x5d\xd4\x6e\x69\x7b\x98\x40\x44\xe4\x1f\x1f\x67\xc8\x87\xe5\x28\x16\x9d\x16\x7e\x4d\x19\xa5\x62\xe0\x7a\x6e\xa1\xf5\x67\xee\xa0\xde\xa4\x12\x2b\xe4\x72\xe3\xf9\x8b\xdf\xdf\xbe\x1a\xc4\x2a\x9b\x39\x55\xce\x83\xd6\x65\x85\xc4\x6b\xdf\x4b\x06\xf2\xa9\xac\x14\xd3\xd1\x16\xf6\x95\xee\x8c\xaa\xad\x46\x97\x70\x20\x64\xe2\x55\xe5\x93\xa2\x4b\xb3\xe0\x25\x19\xa0\xaf\x75\xea\xb7\xda\xd9\x8f\xe0\xe0\x2a\x76\xa2\x2e\x60\xc3\xc3\x45\xbe\xdb\xa9\x42\x4c\x63\x67\x87\xc5\xf8\xc7\xca\xc0\x2a\xe1\x48\xfd\xfb\xab\xeb\x4e\x0c\x85\xea\xea\xa9\x18\xb0\x53\xee\x8a\xe5\xee\x11\xcf\xfb\xd4\xdc\x43\x29\xe3\x67\x39\x1b\xc8\x2d\x67\xee\x69\x41\x6e\x3b\x15\x2d\x5f\x53\xba\xeb\x48\x8a\x25\x6e\x9f\xb9\xb1\xee\xa1\x8a\x67\xe2\x01\xdb\x6f\xec\x06\xa9\x7d\xa4\x88\x80\x26\x9f\xc2\xe8\xe3\xde\x92\x84\x17\x6b\xde\xfa\x8f\x70\x78\x9b\x7b\x8b\x68\x2a\x3f\x7b\xf9\xfc\xad\xac\x7a\xeb\xa9\xfc\xf2\x8d\xac\xae\x2e\xbd\x24\x9e\xca\xaf\x7f\xf2\x92\x2e\xa7\x19\xe8\xf9\xe5\x9b\x27\x39\xfd\x6c\x9d\x81\xcb\x52\xa1\xbe\x7c\x33\x93\xcf\x33\xba\x71\x55\xf9\x42\x56\x14\xbe\x7f\x32\xd7\x07\xbc\xdf\xef\x0d\x20\x29\x53\x4c\x6b\xd4\x86\x5b\x9e\xf2\xe3\x95\x7b\x49\x7d\x15\x70\x3a\xa5\xe4\x3d\x40\xac\x26\xe1\x94\x92\x77\xa1\xea\xc5\xcf\x6f\x02\x77\xe5\xcd\xa7\x47\xc6\x6e\xa7\xa8\x21\xbc\x80\x3f\x3a\x70\xff\xfa\x4e\x90\x3c\x09\x76\x3e\x8b\x73\x3f\x2c\x12\x87\x51\x92\x45\xee\xec\xad\x5f\x77\xfa\x6d\x05\xe1\x82\x6a\xe2\x25\xed\x0f\x74\x19\x75\x49\x39\x85\x4d\xf1\x36\xcf\x68\x30\x4d\xca\x29\xc6\xba\x97\x1c\xa0\x84\xdd\xa4\xfa\x50\xb1\x91\x3a\xab\x79\xe8\xa3\xe6\xad\x68\x9c\xb8\xab\xb5\x7c\x0f\x40\x1f\x2c\x88\xed\xa9\xae\x39\x02\xbc\xf8\x79\xe4\x7a\xec\x86\x5a\xfc\x26\xab\xcb\x24\x59\x3f\x5d\x00\x0f\x7a\xf1\xee\xdd\x1b\xf4\xb2\xed\x76\xd3\x7b\xce\xae\xed\x2d\x9a\xdb\xf8\xc3\x7b\xd9\xd9\x98\x85\x4d\x4d\x0d\x2a\xca\xd7\xc9\x6d\xa2\xdc\xe5\x36\x1c\x64\x05\x82\xd4\x15\xa8\x35\xc7\x56\x65\x21\x8c\x03\xda\x7e\x70\x25\xb2\xdb\xa2\x04\xb5\xdb\xf5\xc9\x43\x2c\xd2\x11\xbf\xb9\xf3\xa1\x12\x5c\xa7\x1e\x25\xb8\x3e\x7f\x9d\x55\x29\xca\x9c\xf4\x1e\x38\x9b\xe9\x44\x89\x78\x82\x21\xb8\x1e\xe6\xa7\x18\xd5\xf3\x8b\x62\xb5\xf4\x40\xa4\xc6\x2f\x71\xc1\xfd\x12\xf1\x11\xd3\x2f\xf3\x5f\x82\x47\x20\xb6\xfb\x2d\x5c\xd0\xac\x05\xfe\x48\x1b\xb0\x1f\xbc\xfe\x57\xcf\x1b\xbf\x8a\xfb\xa1\x4e\x58\x2a\x83\xad\x37\x53\xf9\xd9\x9b\xdf\x65\x75\xc5\x2e\x57\x96\xd9\x25\xcb\xaf\x7f\x92\xd5\x85\x17\x7f\x9c\xca\xcf\xbd\xf8\x23\xfc\xf2\xc2\x75\x3c\x95\x5f\xfe\xe3\xcd\xd9\xbe\x9b\x07\xe7\xc5\x0f\x1e\x15\xec\x6e\xfb\xa9\xcc\x6f\xd1\xef\x63\x30\x79\xe7\x5e\xc7\x77\x77\x03\xf6\x65\x76\x7e\xf1\xd5\x66\x64\xe1\x6e\xf6\x07\x8e\x2e\x1e\x2c\x82\x04\xb2\xf6\xdd\x9b\xd7\xec\x77\x2f\xac\x09\xbc\xa0\x95\x03\x1c\xec\xec\x32\x0f\xf7\xd7\x72\x9d\xf7\xd1\x9e\x16\xe5\x3a\x80\xef\xce\xe9\xe2\x99\x1b\xb8\x91\xe0\x69\x8c\x56\xa7\xbc\xc4\xa3\xcc\xc1\x99\xc5\x64\x4a\xe5\xb2\xc3\xa1\xb6\xc5\x9b\x78\x4f\xa4\x7e\xe3\x7b\xea\xeb\xd0\x1a\x64\x68\x0d\xf0\x7c\x2c\xae\x3d\x4d\xa2\xa4\x70\x27\xbc\xe8\x03\x18\x14\x8b\x40\x8e\x0b\x32\x4d\xb3\xd8\xaa\x54\x95\x9c\x79\x5f\xe8\xeb\x9f\xd4\x80\x9c\x31\x4e\x19\xcf\xf2\xaf\xcc\x37\xbd\x30\x45\xc1\xbe\x9a\x1b\x4e\x11\x8f\x03\x7d\x94\xa4\xde\xe6\xda\xe3\x05\x5e\xbc\xa4\x8b\xa7\xcc\x08\x9b\xff\x3c\x8c\x53\x4f\xf9\x76\xc7\x47\x81\xb4\xb4\x7e\x16\x39\x90\x79\xbe\x23\x8e\x52\xa2\x64\x3b\xfd\x0c\x03\xd3\x70\xcb\x57\xf3\xb2\x67\x6f\x7e\x9f\x05\xe4\xd9\x9b\xdf\x85\x67\x9c\x76\x99\x40\x20\x3c\x2f\x12\x77\x52\x4b\xdc\x5f\x3f\x11\xe1\x47\xda\x16\xaf\xf0\xa0\x38\x8c\x68\xc9\x7b\x3a\x9f\xd3\x38\x0e\xa3\x97\xcf\xe5\x54\x17\x8d\xe9\x3c\xa2\xc9\x54\x3e\xc3\xbf\x2f\x9f\x37\xed\x99\x22\x4f\x7a\x83\x2a\xd1\xcb\xe7\xc0\x1b\xf0\x3b\xb0\xee\xf4\x31\x9a\xe0\x8b\xcc\x28\xad\x53\x46\x7c\x5f\xe6\x81\xcc\xe7\xc4\xfd\xe0\x7e\xae\x43\x3a\x3c\x2f\xd5\xfa\x6a\xb2\x6f\x6c\x90\x39\x62\xdd\xd2\x60\xb3\x62\x87\x6b\xd3\x23\x5d\xbd\xa6\x49\x5d\xfc\x76\x0a\xda\x0e\x75\xe9\x66\xd8\x84\xe8\xf1\xe6\x6c\x03\x99\xcd\x3a\xf9\x2b\x46\xe5\x81\xc5\xa8\xa4\xe1\xe3\x7c\xa7\xcc\x33\xf0\x87\x9b\x84\x46\x7d\x72\x06\x14\x93\x8d\x0c\x64\xd6\x92\xcc\x37\x51\x44\x83\xe4\xf7\xb7\xaf\x64\xb5\xf4\x0c\x43\xd5\x59\x14\x6c\x25\x4b\x44\xe6\xae\xf2\x8f\x4f\x01\x8d\x58\xa4\xbe\x1a\xcc\x06\xb9\xbf\x61\x53\x5f\x30\x75\xf9\x51\x17\x91\x15\xf2\xc9\x4b\x96\xe1\x26\x19\xc0\xe3\xb2\x6b\x45\x81\x2d\xc4\x3e\x80\xa5\xab\xc9\x0f\x86\x42\x3e\x84\x5e\x80\xed\x77\x8a\xea\xce\xce\x73\x62\xaa\xca\x32\x3c\x45\x75\xac\x86\x33\x4a\xfc\x30\xfc\xb8\x59\xf3\xf1\x4d\x73\x07\x64\x45\x79\x12\xb2\x1c\xaf\x3f\xe5\x58\x3b\x3e\x1e\x40\xdf\x0a\x8f\x13\x0a\x89\x80\x51\x10\x56\x9e\xc8\xe9\x4b\xe4\xd9\x0c\xc8\x2d\xbc\x92\xfc\xe3\xe3\x81\x3f\xf3\x07\x61\x76\xd3\x16\xcf\x8d\xc1\xac\x55\xb2\xc2\xdc\xc3\xd4\x41\x3c\x73\x0b\x61\x26\xb1\x9a\x0c\x7c\x45\x61\x6e\x41\xbd\x36\x0c\xb6\xb6\xe7\xe1\x82\x6a\x2b\x8f\x65\xd8\x10\xd9\x97\xb7\xbd\xd1\xa0\x90\x95\xd5\x37\x78\x74\x9c\x8c\x19\x40\x1b\xc4\x14\x56\x78\x42\x83\xad\x17\x85\x01\x9e\xf5\x7d\xdb\x74\x0e\xe5\xf5\xb8\x09\x3e\x06\xe1\xa7\x20\xed\xb7\x2e\x4e\x4c\xf0\xf4\xca\x12\x83\x50\x65\xa7\x7a\xf1\x73\xba\x2d\xe7\x04\xa2\xff\xde\xb8\xfe\x40\x16\x01\x02\xcc\x6e\xa9\x1f\xae\xf9\x51\xa6\x17\xbf\x89\xc2\x45\xaf\x86\xeb\x28\x5c\x6c\x18\xb9\x42\xbb\x77\x34\x4e\x7a\xb5\x4b\xf0\x92\xb8\x3d\x48\x92\x6d\x9c\xb5\xb7\xc3\xa4\xbb\x6a\x56\xd8\xdc\xea\xfb\x09\x97\xfc\xf7\x3b\x90\xe5\xa6\x72\x1c\xb2\x98\x9d\x85\xe6\x7b\xd7\xcb\xa4\xdf\xd1\x24\x03\x61\x49\xdd\x05\x06\x92\xd6\x4a\x6f\xbe\xa7\x41\x85\xba\xea\x8f\x6e\x1d\xae\xe8\xc2\xab\x85\x32\x62\xbe\x74\xde\x96\x96\x2b\x7f\xf3\xf9\x2c\x4e\x53\x6d\x44\x15\x1f\x4f\x58\x75\xee\x66\xa3\x67\x25\xd5\x9a\x7b\xf0\x98\xc3\xa7\x13\xba\xa6\x89\x5a\xe7\x0c\xc5\x7f\xff\x02\xf2\x74\x32\x75\x85\x74\x6a\x32\x1b\x37\x09\x37\xc9\x7a\xc3\x2b\xf4\xb9\x59\x2b\x83\x7b\xed\x5e\x53\x2d\xf1\x12\x9f\x6a\xbe\x17\xd7\xa2\x2a\xaf\xd2\xd2\xec\x0f\xc2\xdb\xed\xee\xc7\x73\x39\xa6\x6b\x17\x45\x47\x64\x7d\x74\x4d\x83\x05\x08\x39\x74\xed\xbb\x73\x2a\x5f\xd4\x1a\x3d\x72\xfd\x06\x40\x79\x07\x90\x1c\x1f\xd7\x3c\x3c\xa7\x17\x20\x1c\x9c\x67\xcb\x2b\x15\x24\xea\x23\x83\x97\x6e\xf4\x34\x19\xe8\x0a\x49\xc2\xdf\xd7\x6b\x1a\x3d\x73\x63\x3a\x50\x7e\xa0\x5c\xa6\x31\x50\x02\x55\x2e\x66\xf5\x6f\x52\x76\x4a\x93\x43\x9c\xdb\x7f\x4a\xe3\xc4\x4d\x62\x2d\x61\x09\x10\x62\x2d\xa2\xd7\x5e\x9c\x94\x2d\x82\x7e\xb4\xf9\xd7\xca\x5d\x37\xa7\x4e\xc5\x63\xe0\x42\x57\xcd\x75\xf3\x93\xb1\x52\x8b\x6f\x78\xa9\xa1\x1a\x36\x6c\xcd\xad\xf7\xa4\x78\x81\x57\xe0\x86\x2c\x35\x4e\x42\x5e\xbd\xfd\xfd\xb5\xbb\x1e\x18\x3a\x26\x84\x63\x08\x7b\x4b\xaf\xca\xd2\x74\x95\x8f\xc2\x54\x5c\xd3\x84\xa7\x9b\x68\xba\x5c\x09\xaf\x3b\xe0\x0e\xc6\x98\xc8\x70\x1e\x06\xcc\xc1\x32\x8c\x0a\x4e\x65\xf9\x89\x63\xa8\xca\x53\xd1\x4f\x38\xbb\xdf\x10\x2f\x59\xc7\xb3\xeb\xd9\x6c\x16\x9e\x66\x94\x34\xcd\xaf\x74\xf4\xc4\x0a\xec\xeb\x54\x16\x53\xd4\x6c\x66\x4c\x7a\xf7\x31\x13\xea\x46\xa9\xe8\x80\x82\x45\x96\xbd\x3a\x51\x8e\x8f\x8f\xd2\xaf\x04\x64\x98\x38\x89\xc2\x1b\xba\xa8\x7d\xec\x05\xd7\xbb\xc1\x46\xf5\x94\xbb\xbb\x0d\x26\x86\xf3\x54\xaa\xa8\x1b\x9c\xb9\xc5\x2c\xe2\x79\xfb\x9a\x34\x80\x04\x54\x40\x7a\xda\x44\x28\x49\x4a\x1d\x81\x5a\xdc\xe9\x18\xe7\xd9\x64\xbf\x3f\x45\x5e\xc2\xbf\xef\x94\x29\x68\xa2\xb3\x40\xa5\xbb\xc1\x2d\xde\x37\x51\x27\xb3\x25\x04\xa9\x87\xb8\x9b\x64\x19\xa2\x68\xc0\xb3\x46\x81\xee\xb8\x53\x01\x0a\x25\xbf\x3b\x1e\x00\xf3\xd5\x85\xa2\x2e\x4a\x67\xc1\xb5\x69\x3d\xf3\xf5\x89\x11\x5a\xad\xd9\x3c\xd3\x85\xb5\x8e\xc2\x95\x17\x53\x8d\xa9\xc0\xdd\xf5\x5c\x50\x76\xc5\x6a\x59\x0a\xb0\xa2\x7b\x54\xa9\x9b\x0f\x71\x18\x68\x98\x29\x2d\xf3\x47\xfd\x0e\xd9\x90\xf7\x5a\xb8\xad\x19\xf5\x58\x36\xbb\x8a\xea\x5b\xbc\x0a\xba\xa2\xdb\xa2\xe7\x10\x0f\x8c\xc5\x77\x3f\x29\xcb\x46\x29\x9d\xde\x72\xfc\x4e\xeb\x28\x43\x88\x6e\x75\xf3\x94\xc9\xaa\x7c\xc2\x32\x92\x9d\xa4\xa9\xf6\xda\xae\x14\x85\x09\x18\x28\xcd\x77\x17\xdd\x46\xeb\x39\x7a\x75\xd0\x5d\xa5\x92\xb8\x52\x59\x02\xc4\x74\x66\x9e\x2d\xdd\xe0\x9a\x0e\x64\x36\x02\xc2\xfb\x90\x15\x35\xd9\x29\xa9\xd4\xe7\x66\xb7\x56\xb7\xf0\x3a\x21\x45\x6b\x4f\x44\x51\x11\x51\xee\xa7\x4e\x5c\x61\xae\xbb\x93\x15\x4b\x26\x96\xe1\xaa\x18\x9c\x7f\xbb\x6b\xc6\x61\x7a\x69\x3b\x25\x2c\x55\x22\x03\x69\xc7\xe1\xe4\xd7\xa6\xdf\x03\xc2\xe0\x60\x10\x66\x57\xb7\xd7\xc2\x76\x7e\xc1\xf3\x4e\x88\x34\x5b\xb5\xe5\xb0\x3e\xc8\xf9\x85\xac\xde\x96\xe4\x7a\x01\x02\x5e\x4d\x4d\x66\xfc\xb6\x6f\x60\xfc\x98\x44\xc2\xbd\x06\x1a\x59\xb9\x8b\xa7\xc2\x6b\xf2\x7b\x30\x79\x56\x8c\x78\x90\x28\xa7\x09\xfa\x0c\xe0\x9d\xe8\xd5\x28\x7e\x9e\xfd\x2a\xb3\xca\xff\x20\xcb\x69\x2f\xbd\x5e\x39\x0b\xd4\x60\x57\x57\x93\xa5\x67\x78\x99\xd0\x15\xe7\x9c\x4f\x0b\x57\xc6\xef\x76\x8a\x5a\xb9\xb3\xbe\x15\x4d\x35\x9a\x4f\x6e\xba\xe2\xf5\x98\xcd\x52\x56\xfe\x6e\x64\xdd\xbf\x64\x98\x68\x98\x87\x22\x63\x91\x0b\xcb\x28\xbd\xfc\x5d\x95\xab\x97\xeb\x37\x8d\xa6\x52\x93\xfb\xca\x8b\xef\x39\x12\x6f\x9d\xaf\x7d\x23\x9e\xce\x65\xb7\x35\xf6\xe7\x86\x9d\xa4\x5e\x9b\xf3\x33\x8f\x3e\x6e\xe1\x6b\xf0\x76\x77\x9e\xe0\x6d\x0e\x4a\x61\xee\x7e\x6b\x1e\x68\x0e\x43\x79\x06\x05\x1a\x17\x2a\x25\x21\x33\x44\xe7\xa9\xa2\xf9\x8c\x62\x92\xe7\x70\x45\x6b\xc6\x26\xfa\xfe\x0b\xb2\x95\xb0\x04\xf3\x8c\xf8\x1d\xe3\xab\x5f\x88\x1d\xcb\xa0\x2e\x9e\x4b\x4d\x2a\xa0\xa5\x39\x0a\xbd\x85\xac\xd2\xdc\x4f\xf6\xee\x6e\xb0\xc7\xe2\x11\x02\xc5\xd5\xb6\x17\xe4\x97\x70\x2a\x1d\xcb\x9e\xe3\x90\x07\x6a\x65\x16\xd1\xe4\xb4\x76\x58\x75\x43\x99\x25\xad\x43\x49\x14\x65\xba\x47\x5f\x85\x24\xfc\x89\xf2\xe4\x7e\xc8\xd9\xe1\x4e\x11\xd3\xea\x35\xb7\x98\xda\xb8\x72\x6f\x29\x9e\xc5\xee\x23\xf8\x25\xf4\x73\xa2\xad\xa8\x1b\x6f\xa2\x72\xda\x5a\xa6\x69\x17\x2a\x34\xb5\x7b\x74\x16\xa4\x9a\x53\xce\x42\xa0\x5f\x45\x1c\x45\xf1\xfc\x9b\x1b\x5b\xca\xe2\x67\xc7\xe5\xbd\xec\x78\xb3\xc4\x0b\xca\x6b\xbf\x6b\x0f\x7c\x07\xa8\x60\x27\xa4\x75\x4b\x2c\xe5\xc4\x18\xf0\x97\x9c\xf6\x22\x63\xa1\x4b\x59\x99\xf6\x79\x33\xac\x3d\xa0\xf5\x3a\xf9\xa5\x46\x81\xad\x24\x98\x32\x6a\x13\x4c\x19\x62\x82\x29\xe3\x62\x7a\x3b\x8f\xe8\x82\x06\x89\xe7\xfa\xf1\x54\xe6\x92\x85\x8c\x61\xd6\x3b\x35\xe6\x5e\xbc\x38\x9e\x4c\xa1\x62\x86\x96\xff\xbf\xf6\x1b\x92\x03\x8e\x58\xbe\x98\xc5\x78\x63\x89\x90\x2e\x9a\xaa\xc5\x38\x29\xf5\x76\x89\x02\x6e\x3c\x75\x77\x78\xc5\x6f\x59\x44\x2f\x1d\x3f\x7b\x57\x83\x4a\xba\x8c\x9a\x5d\x5f\x56\xb2\x90\x8c\xfa\xe4\x1a\x69\xb5\x27\xee\xf1\xf1\x80\xce\x8a\x2f\x29\x87\x89\xe4\x71\x40\x01\xbb\x03\x35\x93\xb5\xe4\x53\x59\x39\x95\x8f\xe5\xa9\x7c\x9a\x0a\x51\x42\x78\x90\x92\x27\xd5\x15\xd2\xe3\x0c\xa8\x9a\x4a\xbc\x08\xb3\x28\x4c\xd4\x8a\xa5\xfb\x9e\x91\xe3\xd5\x04\x8d\x16\x41\x74\x4f\xf8\x56\x56\x5e\x0c\xc5\xaf\x5f\xa2\x78\x8b\x54\xe9\x20\x23\xa2\xee\xe2\x1f\x81\x7f\x53\xb5\xcd\x88\xae\x03\xea\x91\x0e\x4c\xaa\x6c\xfe\x81\xb7\xed\x80\xbf\xbd\x0c\x16\xf4\xf3\x2f\x61\x54\x67\x14\x60\x19\x02\x0c\x5c\xb0\x35\xf5\x00\x76\xa8\x32\xfb\x21\xe9\x83\xe1\xed\x75\xcb\xc9\xfc\xd7\xe3\x30\x7f\x70\x2b\xbb\x3e\x8d\x12\x6d\xee\x45\x73\x9f\x6a\x57\x9e\xef\xcb\xd3\xff\xfd\xb7\x78\x7b\x2d\x6d\x3d\xfa\xe9\xa7\xf0\xf3\x4c\xd6\x25\x5d\x32\x6d\xc9\xb4\x65\xe9\xf3\xca\x0f\xe2\x99\xbc\x4c\x92\xf5\xf4\xe4\xe4\xd3\xa7\x4f\xe4\x93\x45\xc2\xe8\xfa\xc4\xd4\x75\x1d\x86\x2d\xff\xfd\x6f\x6b\x37\x59\x4a\x8b\x99\xfc\xda\x30\x25\xf3\x99\x43\xec\xb1\x64\x4a\xa6\xc4\xbf\x18\x66\x6c\xc3\x37\x43\xcf\xfe\xd7\xf8\x03\xcd\xd0\xcf\x8c\x11\x19\x9a\x58\x4d\x32\xbf\xac\x0c\xc9\x18\x2e\x35\x73\xab\x99\x4b\x73\x6b\x7e\x59\xe9\x9a\xbd\xd4\xcc\xf7\xa3\xa5\xb9\x75\xbe\xc8\x12\x8c\x76\x26\xf3\x43\xe5\x67\xa1\x1f\x46\xf2\xc9\xdf\xff\x06\xc3\xf8\xfb\xff\x56\x8b\x80\x85\x9b\xc4\xf7\x02\x7a\x38\xd8\x70\x68\xe6\xd6\x64\xc3\x83\xa1\x8d\x61\x54\x38\xbc\x2f\x2b\x32\x99\x68\x43\x80\x7d\x54\x85\x7d\x04\x50\x4f\xc8\x64\x22\x19\xfa\x33\x0e\x2f\xfe\x9f\x7d\x37\xcc\x1c\x0f\x06\x54\x34\xbf\x20\x32\xf5\x39\xa0\xca\x94\x74\x6d\xac\x59\x64\x38\xd6\xc6\xda\x38\x66\x5f\x24\xfc\x27\xc1\x0f\x09\x7e\xb0\x2f\xf0\xac\x27\x9e\x92\xc8\x73\x83\x6b\xff\x80\x18\x92\x4c\x63\x69\x9a\xaf\x0c\x04\x43\x32\x8d\x2f\x2b\xc3\xd4\xac\xea\x74\x6e\x35\x7b\x69\x6e\xed\xee\x71\x46\x51\xf8\x49\x5b\x84\x9f\x82\x43\xce\xa2\xb5\x35\x6c\x62\xfa\x9a\x45\x1c\xf8\xf7\xca\x91\x8c\xa1\xef\x48\x8e\xe4\x68\x8e\x66\x10\x1b\xff\x59\xc4\x91\x2c\xe2\xbc\x87\xd1\xf7\x1c\xa7\x4f\xaf\x92\x83\x8d\xd3\x34\x24\xc3\x78\xe1\x90\xb1\xe5\xe3\x74\x5b\x64\x38\x79\x35\x91\x1c\x5f\xc3\x91\x4a\x8e\x64\x10\xdb\x80\xa1\x1a\xaf\xa0\x96\x64\x58\x2f\x4c\xa3\xe7\x48\x23\x3c\xd6\x3c\xd4\x50\xe1\xdd\xcb\x0c\xa5\x80\xb5\x57\xc6\x50\x32\xc6\x3e\xe0\x93\xe3\x14\x46\x2b\xf1\xd2\x17\xd6\xb6\x2f\x4a\x37\xeb\xc3\x4d\xbc\x25\x99\xc6\x7b\x87\x8c\xfd\x6c\x90\x63\x69\xe2\xb3\x21\x32\x74\xc2\xbf\x57\x86\x21\x39\x64\xfc\x1e\x28\xb9\x6b\x90\x97\x61\x98\xf0\xe1\x7d\xf2\x16\xc9\x72\x26\x1b\x63\x47\x96\x96\x14\xd0\xcb\x7f\x14\xc6\x6d\x8c\x1d\x09\x9f\xee\x37\x72\x5d\x27\x93\xb1\x25\x39\x16\x71\x26\xbe\x45\x2c\xdd\x92\xc6\xc4\xd1\x87\x92\xa9\x93\x91\xe5\x68\x23\x32\x71\xe6\xc6\x84\xd8\xda\x88\xd8\xf6\x48\xb2\x0d\xa2\x9b\x00\x8d\x69\x3a\xd2\x50\x27\x86\x61\x4a\x50\x6c\x8f\x5c\x53\x27\xfa\xc8\x90\xf8\x1f\x1c\x93\x64\x4a\x16\x19\x4f\xfc\x11\x31\x9c\xb1\x64\x8c\x89\x33\x32\xe6\x16\x99\x0c\x81\x41\x13\xcb\x30\x35\x83\x18\x13\xc0\x1e\x19\x8f\x35\xc3\x20\x43\x78\xf3\x90\x8c\x6d\x5f\x1b\x4f\x88\x63\x5a\x92\x65\x13\x5b\xb7\xb0\xf3\x09\xeb\x7c\xc2\x3b\xd7\x2c\x32\x1e\x4f\x24\x83\xe8\x8e\xe1\x6b\x50\xe2\x18\xd2\x88\x8c\x74\xc3\x05\xae\xc5\xea\xc0\x6b\x2c\x47\xb3\x89\xa3\x9b\xaf\xc8\xd8\x19\x49\xf6\x90\x38\xb6\x93\x57\x91\xb0\x8c\x55\x1c\xbe\x1a\x19\x64\x34\xb4\xa4\x09\x54\x15\xea\xb0\x52\x56\xf5\xd5\xc4\x24\x86\x2d\xd9\x3a\x71\x86\xa6\x6b\x12\x7b\x3c\x96\xd8\x27\xd4\xd5\x01\x24\x63\x44\xc6\xe6\x5c\xb3\x88\x61\x43\x23\x7d\x04\xb0\x19\x23\x18\x9d\x66\x5a\x64\x02\xc3\xd6\xc9\x70\xe2\x9a\x64\x28\xc1\x3f\x9d\xbd\x87\xc0\x68\xc6\xa3\xf1\xdc\x30\xc9\x78\xa2\x99\x64\xa2\x3b\x80\x9c\xa1\xee\x68\x0e\x19\x4e\xc6\x80\x9c\x89\x61\x43\x77\x96\x31\xf6\x87\x44\x37\x6c\xc9\xb0\x88\xee\xc0\x40\x26\xd0\x19\x7c\xa6\x03\xd1\x6d\x32\x9a\xb0\x71\xd8\xf9\x38\x9c\x71\x3e\x90\x71\x8f\x81\x98\x63\x0d\x86\x63\xc2\x48\x6c\xd3\x82\x91\x38\x26\x4e\xd3\x10\xfa\x33\x87\x5f\x04\xc2\x9d\xbb\x3e\x0d\x16\x6e\x74\xb0\xb5\x05\x7b\xd4\x04\x68\xcc\xb0\xad\x25\x0c\x60\xbc\x85\x55\x6f\x4e\x5e\x40\x91\xb5\xc5\xef\x5f\x56\x30\xc4\xe1\x58\xd2\x5f\x18\x16\x2f\x5f\xb2\x3f\x85\x0a\x23\x49\x5f\xb2\xa7\xbc\x8f\x31\x19\x19\x76\x7b\x15\x80\x73\x94\x56\x31\xf0\x2f\xab\x58\x18\x0d\x7b\xdb\xb8\xb6\xab\x07\x36\xe2\xf7\x86\xd9\x3a\xda\xf7\x86\xd9\x38\xd2\xac\x6d\xc3\x28\xa1\x6d\xcb\x08\xa1\xb8\x69\x74\x63\xfe\x76\x36\xd3\xc2\x00\xc7\x95\x01\x62\x15\x61\x8c\xe3\xe2\x18\x85\x1e\x26\xb5\x3d\x4c\x78\x0f\xf9\x48\xc7\x5f\x56\x23\x78\xa4\x0d\xe1\x11\xaf\x94\x81\x8a\x6d\xbf\xac\xb4\x31\x19\x02\x6b\xe3\xa3\x30\x5f\x8c\x88\x39\x76\x78\xe9\x6b\x46\xa8\xa6\x0e\x75\x96\x06\xf6\xf3\x7e\x04\x9f\x2f\x6c\x36\x10\x5e\xcf\xd4\xe1\x45\x92\x45\xf2\x31\x02\x43\x99\xeb\x12\xb1\x35\x62\x19\x36\x19\x19\x43\x0d\x1a\xc2\x97\x25\x1b\xb8\x4b\x46\x3a\xf0\xb6\x11\xe7\x6b\x50\x0c\x1f\xc3\xf7\xac\x1f\x9b\x8f\xa4\xb1\x9f\x17\x0e\xe9\xea\x05\xc6\x69\x3d\x35\x88\x6d\x49\xf8\xc1\x78\x81\x05\x9c\x00\x26\x0c\x21\x7a\x86\xcc\xda\x1a\x8e\x60\x9b\xb3\x2d\x90\x2f\x39\xdc\x26\x87\x79\x4e\x46\x63\x07\x79\x88\x6d\x8e\x35\xac\xc4\xbe\x32\x9c\x62\x67\x73\x5d\x83\x5a\x50\x6a\x6a\x79\x29\xff\xe4\x7b\xa3\x16\x6d\x7c\x3a\x93\xe9\x96\x06\xe1\x62\xd1\xb5\xa9\xcf\xdd\x60\x4e\xfd\x6f\xaa\x79\x64\xd2\xf7\xa8\x28\x7d\x8b\x9a\xc7\x48\xd0\x3c\xac\x4c\xf3\x18\x02\x8f\x1e\x4e\x5e\x19\x43\x32\x9c\x48\xc6\x08\x1e\x1b\x16\xb1\x0d\x69\x0c\x1f\xb0\x33\x48\xbc\x4c\xc7\x4f\x53\x1a\xb1\x22\xfc\x60\xf5\x59\x09\xd6\x1a\x41\x13\xd6\x14\x7b\x81\x62\xde\x43\xa7\xf4\x53\x44\xd4\xc1\x35\x19\x1b\xc6\x37\x7e\x95\x0d\x78\x82\x50\x48\x63\xf6\x25\x03\x6f\x2c\xb1\x9a\xec\xa9\x93\x23\x84\x3d\x86\x27\x4e\xfa\x3d\x03\xd1\xe1\xd5\xd9\x3b\xbe\x1c\x60\x62\x40\x6e\x42\x35\xc8\x48\xd5\xa0\x49\xaa\x06\x4d\x44\x35\x68\x92\xaa\x41\x93\x9e\x6a\x10\xc7\xf2\xda\x77\xbd\x03\x2a\x18\x13\x00\xd2\x78\x05\x30\x4c\xa4\x61\x4e\x15\xf0\x54\x1a\x4a\x43\xf6\x25\x43\xf2\x50\x62\x35\xd9\xd3\x89\x80\x64\x7c\x6c\xb0\xff\x47\x22\x92\xfb\x02\x16\xff\x7b\xe3\x46\x87\x5e\x67\x13\xc9\x9a\x83\xe8\xa1\x4b\xa6\x44\x26\x30\xa9\x5b\xe4\x67\x06\x31\x34\xf8\xad\x99\x92\xf9\x62\x38\xd7\xb0\x8e\x66\x6a\x64\xa2\x99\x9a\xf9\x7e\x38\x47\xa1\x0b\x7e\x41\x9d\xa5\x61\x03\xbb\x97\x0c\x13\x97\x9c\xb0\x40\xd8\x8a\x49\x57\x50\x8a\x3c\xbe\xc4\xd2\xe2\x7c\x01\xb2\x9a\xe9\x0a\xcd\x91\x97\x2d\xe2\x3d\x97\x1c\xc7\xd9\xc1\x97\xdc\x44\x1a\x6e\x0d\xfb\xc5\xf0\xfd\x10\x41\xd7\x35\x11\x49\x12\x43\x4b\x86\x48\x86\x57\x09\xb0\x94\xe2\x9a\xe3\x36\xc5\x23\x47\xab\x66\x7e\x59\xb1\x95\x31\xfc\x2e\xab\xb9\x03\x89\x0c\x87\x25\x95\xc8\x16\x34\x22\xbb\xac\x10\xd9\x92\xb1\x3f\xf7\x42\xd5\xf7\x15\x92\x8e\xa4\x4b\x23\x89\xcd\x35\xf2\x07\xb6\xa7\x19\x12\xa7\x1f\x9d\x11\x18\x7b\x66\xd8\x19\xfd\xb0\x87\x36\xfe\x6f\xe6\xf4\xf5\xa5\x48\x10\x11\x4d\x0e\x6b\x7c\x00\xfe\xe6\x03\x0b\x18\x6a\xc3\x1e\x04\x09\xef\x3f\xa0\x06\x3c\x92\x0c\xdb\x1f\x6a\xf8\xfe\xee\xb7\x2f\xe9\xfc\xe3\x03\xb5\x11\x02\xdf\x18\xfa\x1a\x80\x92\x1b\x41\xa0\x8d\x4d\x8c\x91\x0f\xac\x52\x1b\x21\x5b\x99\x48\x63\x5f\x9b\x48\x3d\x16\xbf\x08\xed\xc1\xd7\xfe\xd7\x02\xfc\x1a\xa8\x74\xae\xb3\x85\x9e\xef\x7a\x71\xed\xae\x27\xec\x90\x5f\x56\x96\xa4\xfb\x02\x8a\x50\x14\x31\x46\x3e\xac\x0e\x6d\x88\x28\x42\x1b\xc8\x48\x1a\x69\xb6\xd6\x6d\x8f\x63\x68\x3a\xec\x7e\x09\x9c\x87\x18\xa3\x57\x36\x1a\xb1\x4c\x1f\xc5\x4b\xb6\xc2\x71\xeb\x33\x0d\x69\x84\x0f\x19\x10\x7d\xc6\xb8\x8d\xc2\xe0\xc0\x56\x43\x87\x31\x09\xc0\x98\xc9\x90\x28\x8d\x98\xe8\x07\x5b\x37\x2c\x6b\x6e\x40\xec\x3d\xbe\x83\x5a\x0b\x41\xaa\x07\x3c\x4e\x7c\xcd\x26\x68\x49\x91\xf8\xdf\xcc\xa0\x29\x98\x0d\xe1\x77\xef\x71\x1e\xd6\x56\x38\x26\x96\x34\x22\x23\x5f\x18\x21\xfc\x4d\xad\x6f\x52\xc9\x64\xd8\x7b\x94\x87\x64\x93\xf0\x6a\xc7\x17\x47\xc7\x47\xc8\xf0\xc8\xec\x85\xaf\x58\xb5\xee\x01\xfa\xe1\xfc\xe3\x37\x61\xa0\x43\xce\x4e\x86\x29\x37\x19\x96\x98\xc9\x50\xe0\x25\x19\xef\xb4\x89\x09\x7c\xd2\x64\xcc\xe0\xfd\x68\x69\x90\xe1\x76\x48\x4c\xdf\x46\xe3\xd2\x48\x23\x63\xc9\x20\x56\x4f\xb8\x0e\x7f\xc6\x82\x67\x1f\x0f\xe4\x18\x65\x45\x86\x9a\x61\xbd\x30\x8c\xad\xe3\x0f\x89\x39\x94\x2c\x02\x0b\x6d\xa8\x19\xc4\xb4\x00\xc1\x9a\x49\x9c\xd1\xfb\x51\xa7\x58\x04\xb8\xe2\x28\xea\x46\x47\x2a\x38\x8d\x73\xb9\x69\x5c\x12\x9b\xc6\xd2\x58\xc4\x9a\x2d\xe9\xcf\x0c\xc2\xcd\xa0\xf8\xd7\x8e\xe1\xaf\xcd\xfe\xd3\xf0\xbb\x86\x7f\x81\xcd\x6b\x36\xea\x54\x73\x83\x38\x0e\xda\x0e\x0c\x62\xd9\x92\x25\x59\x67\x43\x78\x32\x92\x40\x4e\x02\x11\xca\x71\x24\x03\xbb\xb2\x6c\xcd\x92\x2c\xcd\xfa\xb2\xd2\x80\xaa\xb6\x26\x31\x4d\x9f\x00\xdf\xb6\xc8\x90\x0c\x89\x65\x13\x6b\x4c\x46\xa6\x86\xff\xac\xb1\x06\x2d\xf8\xbf\xf7\x26\xd1\xcd\xa5\x66\x14\xec\x8f\xe1\x82\x1e\x6c\xff\xc0\x75\x48\x1c\xd8\x40\x60\xff\xe0\xeb\xf6\xd5\xb8\x74\x56\x82\x4c\x6f\x35\x24\xa6\xa4\xa7\x75\xd2\x7f\xaf\x0c\x47\x72\x7c\x64\xdf\x52\xc6\x30\xbb\x57\x40\xb8\xbe\xd1\x5c\x16\x4d\x77\xb8\x43\x0a\x32\x36\x25\xeb\x19\x08\xe0\x30\x95\x28\x9e\x5a\x92\x21\xc1\x6a\x05\x75\xc1\x02\x75\x81\xd8\x64\x6c\x6b\x26\x54\x35\x5f\xd8\x55\x2d\xc2\xd9\x5b\x8b\x58\x6a\x36\x31\xc6\x5f\x60\x33\xb6\x5e\x38\x5b\x73\x69\xe1\x09\xa7\x66\x49\xce\x72\xb8\xd5\x4c\x78\xf6\xe5\xb5\x23\x4d\xb6\xe6\xd2\x79\x3f\x79\xe1\x7c\x59\x0d\x35\x67\x4e\x86\x43\xb4\xbc\x13\x7b\x08\x63\x8c\x35\xfc\xa2\x19\xf0\x0f\xbe\x6b\xf0\x1d\xff\xc2\x93\x2f\xab\x09\xd1\x75\x4b\x32\xf4\x17\xa6\x85\xc7\xa8\x64\x32\x19\x6d\xcd\x17\xc6\x78\x6b\xbf\xb0\xdf\x0f\x97\xe6\xd6\x20\xba\x3e\x5a\x1a\x3a\xfe\x18\x92\xc9\xc4\x5c\x9a\xd0\xe8\xbd\x61\x01\xd1\xea\x2f\x0c\x78\xb8\xd5\x2c\xdc\x87\x6d\xdf\x82\x45\x6e\x6f\x35\x6b\x69\x13\xdd\xc0\x51\xf7\x9a\xb7\x78\x83\x99\x0a\x0e\x69\x52\x61\x13\x67\x67\x13\x67\xb1\x89\x33\x9b\x26\xae\x46\xfd\x73\x88\x6e\x0e\xef\x3d\x79\x86\x29\x59\x7b\x4f\x09\x97\xa5\x6d\xcd\x2e\xc9\xd2\x43\x10\x14\x41\xec\xc1\x43\x0d\x10\x14\x0d\xdd\xef\x63\x56\x59\x78\xb1\x7b\xe9\xd3\xc5\x83\x11\x9f\x73\x03\x52\x71\x03\xc0\xd3\x97\xf1\x90\x38\x16\x3c\x02\x5d\xc2\x99\x68\x36\x99\xbc\x02\x41\x4a\x32\xc6\xc4\x32\x9e\x8e\xc8\x44\x37\x25\xf6\xc9\x4f\x99\x60\x3b\xf9\xb2\x72\x88\x65\x68\x16\x31\x5e\x8d\x08\xb2\xca\x49\x7d\x55\x7b\xce\x5e\x2b\xec\x30\x8c\x49\x0f\x35\xe2\x58\xf0\x0c\x76\x13\x67\x22\xd9\xa4\x53\x4b\x59\x84\xf3\xf8\x60\x48\x1d\x03\x23\x37\x5e\x98\xfa\x76\x42\x80\xe4\x98\xa9\x77\x84\xca\x35\x0c\x09\xd0\x31\x5c\x6a\x86\x3d\xd7\x98\xad\x18\x9e\x31\x5b\x34\xaf\xb0\xd5\x8c\xd1\x33\x0b\x64\x06\xc3\x96\x2c\xfc\x34\x25\x94\x22\x5e\x18\xd6\xd6\x20\xc3\x17\x36\x19\x6e\x8d\xd1\xd2\xb0\xdf\x1b\xc6\x17\x50\x3f\xd1\xd2\xbe\xe4\x47\x20\xe3\x17\xa3\xd4\xaa\xaf\xf3\x93\x8f\xc9\x7b\x03\x6d\xdc\x69\x01\xb4\x31\x97\xd9\x91\xc9\xe8\xbd\xc1\x5c\x08\x88\x39\x76\xde\x3b\xf0\xb9\x1c\x6e\x79\x5f\x5f\x5e\x1b\x23\xc9\x24\xc3\xf7\xc6\xd2\xd9\x3a\x4b\x18\xe1\x7b\x0b\x9a\x01\xe9\x82\x06\xa1\xa1\xee\x04\x53\xfd\xc2\xe8\xdc\xb2\x41\x7b\xc0\x0b\x32\x0f\x67\xff\x99\x2c\x35\xfb\xbd\xf5\x62\xb2\x75\x5e\x0c\xfd\x91\x04\x3a\xd7\xe8\xcb\xeb\xa1\x64\x8c\xb7\xb0\xca\x81\xcb\x0e\x71\x3d\x9a\x4b\x73\xab\xd9\x2f\xac\xad\xfd\x65\x65\x38\x92\x8e\x3f\x97\x5a\x0f\x87\x09\xba\xf0\x92\x43\x8d\x78\x08\x2c\x60\x34\x71\xb6\x16\xd1\x87\xe3\x25\x7e\xfa\x63\x62\x0c\x2d\x0d\x3e\x6d\x0d\x9e\x8c\xd8\xe7\xab\xb4\xf2\x97\x95\x41\x80\xfc\x97\x06\xd1\x8d\x31\x70\x73\x13\xbe\x22\x5f\x37\xc6\x2f\x80\xbf\x6d\x35\x93\xe8\xd6\xf8\xcb\xca\x30\xc9\x10\x0f\xaf\x6d\xfb\x95\x31\x22\xa6\x25\x4d\x88\x33\xf6\xb1\xc7\x31\xeb\x17\x24\x13\x13\x88\xcd\x32\x1d\x17\xba\x00\xaa\x84\x4f\xbe\xbe\x88\x6d\x39\x1a\xd1\x75\x63\x49\x74\xdd\xf4\x0d\xe2\x80\xe6\xe8\x98\xe6\x9c\x58\x93\x51\xfa\x0f\xda\xd8\xcc\x30\x64\x75\x4e\x3c\xfd\x7c\x50\x14\x4e\xde\x0f\x97\x43\x32\xb1\x61\xe6\x87\x2e\xb0\x24\x76\xec\xcb\xac\x7d\xf9\x83\x7a\x56\xbf\xd5\x86\x64\x32\x5e\x6a\xe6\x7b\x63\x02\xc4\x31\xd1\x0c\xdc\x9c\xc9\x70\xe2\x6b\x13\x50\x98\xf1\x83\x59\xb7\x90\x71\x33\x3b\xf2\x7b\x43\x5f\x9a\xef\xad\xa5\xd6\x09\xae\x4c\x3f\xaf\xdd\x60\xa1\xf9\x87\xdc\x0c\x87\x92\x61\xf9\x20\xb7\x98\xc4\xc2\x53\x69\xc9\x24\xe3\x91\x94\x2a\xf6\xe6\xab\x31\xd3\x56\x47\x28\xd6\x4c\xb6\x9a\x03\xc0\x19\xb6\x66\xfa\x1a\x6b\x02\x4d\xf1\x6c\x7d\x3c\xc2\xb5\x8f\x1f\xaf\x8c\x21\x6a\x8f\x96\x64\x58\xd2\x70\xeb\x2c\xbb\xb5\x2f\x0e\xdd\x2a\x8c\x0e\x79\x7a\x22\xd9\xad\xd0\x01\x9b\x03\x25\x57\x32\x61\x5b\x7a\x6f\x2f\x35\xe7\xcb\x4a\x43\xa5\xb2\x15\x3c\x07\x20\x83\x0f\x5b\x32\xec\x5e\xe0\x5d\x79\x07\x37\xce\xe1\x69\xab\x84\x8c\xfa\x15\x9e\xdd\xa6\x67\xa0\xfa\xd6\x18\x11\xc3\x46\x47\x9f\xf1\x90\x1d\x9a\x66\xe7\xa4\xa3\x2d\x68\x02\x23\x23\xdb\x48\xd2\x13\xc5\x09\x63\xdd\xec\x7b\x7e\x76\xc9\x0e\x2f\x2d\xbe\x8e\x2d\x7e\x20\x8b\x07\x9c\xb8\xa5\x38\xf8\x5e\x3c\xbb\x4c\x8f\x2e\x97\x86\x0e\xaf\xf4\x87\xd2\xf0\xcb\x6b\x3c\x9e\x4e\xf7\x13\x43\xe7\x1b\x0a\x1b\x65\x71\x4b\x31\x74\xb6\xa7\xd4\x97\xe5\x67\xfa\xba\xb8\xb7\x2c\xd9\xc1\x30\xee\x30\xc2\x51\x78\xf7\x89\x12\x4e\xc8\xa1\x95\xe2\x3f\x06\xc7\x2b\xd6\x2b\x9e\x8d\x23\x21\xbc\x6f\x23\x84\x0e\xc4\xb0\x7b\x7c\x0f\x46\xa4\x20\xd0\x2d\x61\xc7\x5c\x6a\x36\x28\x26\x96\x04\x6c\xd1\x18\xbf\x77\x5e\x58\x5f\x56\x96\x34\x5a\x1a\x66\xaa\xb5\x74\x8d\xcc\x77\xaf\x0f\xe9\x06\x23\x39\xaf\x80\x41\xbc\x40\xc9\xc7\xdc\x6a\xa3\xe5\x90\x38\x3e\xb1\x25\x73\x39\x7a\xdf\x63\x45\x87\xfe\x82\x46\x07\x5e\xd3\xba\x64\xe7\x6a\xa2\x41\x26\x13\x32\xd1\x98\x75\xe4\x95\x09\xa2\x71\x49\xe1\x70\xca\x0a\xc7\xb8\xa2\x70\x8c\x7d\x3c\x7b\xea\x09\xcd\xe1\x17\x84\xe4\xa4\x63\x38\x28\x60\xa8\x2a\x98\x2f\xec\xf7\xe3\xa5\xe1\x6c\x0d\xbd\x13\xc0\x6b\x2f\xd1\x2e\x23\x37\x98\x2f\x0f\x69\x6a\x36\xc7\x0e\xc8\x42\x93\x89\x6b\x90\xe1\xd0\x91\xd8\x27\xf7\x95\x23\x43\xdb\x62\x9f\x73\x5d\x23\x63\xcb\x21\x23\x7d\xc4\x1e\x48\x42\x21\x19\x5b\xa8\x08\xe2\xf7\x91\x3e\x92\x84\x1a\x92\x2e\x41\xb1\x46\x46\xfa\x58\x6c\xc3\xbe\xbf\x1e\x13\xe0\xad\x13\x32\x19\xdb\x0d\x03\x30\xc5\x01\x0c\xb3\x01\x98\x52\x5e\x68\xc2\xd0\x1a\x06\x60\xb2\x01\x80\xbe\x91\x3e\x17\x07\xb0\xd2\x35\xd0\xf2\x87\xc3\x39\x19\xdb\x93\xfb\xf5\x01\x03\x77\x50\x97\x71\x6c\x61\xe0\x3d\xc6\xbd\x32\x74\x9c\x00\x9b\x18\x20\xa0\x91\xa1\x03\xcc\x12\x3e\xb9\xe4\x06\x5c\x14\x3f\xcd\xa7\x26\x73\xb2\xc3\x4f\xee\x94\x37\x44\x37\xc4\xa1\xbd\x25\xd6\xd8\x99\x6b\x44\x37\x1d\xe2\x38\x13\x8d\x98\x13\xc0\xa3\xe9\x68\x64\x0c\xc2\xda\x68\x64\x6b\x64\x68\xd8\x64\x68\x80\x80\x6b\xe8\x0e\x19\x8d\xe1\xdb\x68\x64\x93\x31\x8c\x56\x77\x46\xd0\x1a\x08\x5a\xb7\x88\xa9\x3b\xec\xa5\x64\x38\x06\x9e\x3b\xb6\x9e\x56\xc6\x26\x8d\xc9\xd0\x91\xf0\xd1\xd0\xe4\x9f\xac\xc0\x91\x86\x30\x6c\x17\x07\x2f\xb1\xcf\xd4\x8b\x10\x80\x35\x89\x69\x98\xdb\x31\xb1\x2d\xfb\x99\x43\x86\x26\x8a\x67\x8e\x33\x92\x1c\xd8\x64\x6d\x3c\xe2\x80\xd2\xfa\x77\x42\x97\x46\x15\x55\xf8\x1e\x93\x21\x0c\x50\xee\x8c\x4d\x8d\x98\x43\xc0\xb9\x89\xfb\xd7\x18\x50\x3e\xb2\x27\xc4\x30\x40\x8c\x1f\x8d\x88\x63\x8c\x35\x32\x34\x1d\x32\x1a\x4e\x34\xe2\xe8\x36\xb1\x4c\x43\x23\x86\x6d\xa2\x65\xd1\x34\x60\x97\x33\xf5\x49\xfa\x15\x88\x58\x77\x6c\x78\x93\x3e\xd2\xc8\x70\x84\x6a\xb6\x85\x3a\x35\x92\x85\x8e\xbb\xa3\x8e\xbb\x23\x90\x88\x49\x86\x36\xcc\x83\xa3\x8f\xd0\x35\xd5\x5a\x6a\x68\x73\x21\xa3\xb1\xad\x11\xdb\x41\x63\xa8\x61\xb0\x21\xf2\xef\x26\x31\x61\x15\x77\x73\x82\x79\xb8\x5a\x79\x07\x3c\xd4\x41\x4b\xfd\x04\xa7\x6d\x0c\xf3\x39\xe6\x86\x05\xb4\x20\xa1\xf8\x68\x8e\x9f\x96\xca\x24\xc3\x94\x26\xc4\x42\xd2\x2d\x16\x60\x23\xf6\x59\xd7\x08\x5f\xf5\x65\x65\x93\x89\x63\x69\x48\xfc\xcf\x40\x18\x1d\xdb\xd2\x98\x38\x36\x7a\x06\x58\xdc\x25\x63\x14\x6b\x36\x96\x18\x50\xa2\x61\x13\xc9\x02\x31\xe9\x85\xb5\xc5\x49\x5f\xda\x44\xb7\x46\xcf\x60\x42\x1d\x50\x0d\x1d\x1b\x18\x1a\xfa\xb4\x20\x5e\x4d\xfe\x2d\xc6\x7e\x34\xec\x47\x62\xaf\x66\xfd\x98\xc6\x96\x91\xfb\x52\xc3\xae\x7a\x71\xe2\xf5\xc6\xf7\xb5\x88\x45\x36\x1d\xf0\x38\xc8\x9a\x8c\xa5\x31\xd1\xd1\x12\x32\x31\x71\xa7\xb1\x6d\x8d\x38\x0e\xfb\x02\x1f\x12\xfa\xca\xa5\x8f\xa4\xec\x39\x19\x31\x73\x8f\x6d\xa3\x31\x3d\x2d\x93\x50\x84\xd3\xd2\x67\x79\xa3\x15\xfb\xa6\x93\xa1\x83\x62\xde\xc4\xac\xa9\xa4\x61\xaf\x8d\xa3\x30\xda\x87\xc1\xbc\x21\xf8\xeb\xc8\xc4\xd1\xf0\x68\xd9\x20\x96\x65\x22\xd3\x19\x6b\x26\xb1\xd3\x7f\xae\x49\xac\x09\x90\x8e\xc5\x1d\xba\xa1\x26\x8a\x8b\x8e\xbd\x1d\x91\x31\xf2\x40\x6b\x82\x15\xf8\xa2\x67\xf8\x42\x7e\x50\x2c\x30\x88\xa9\x61\xc3\xf7\x80\x28\xec\x1a\x39\x8f\x35\x76\x84\x1a\x26\xac\xe7\xd5\x88\x30\xe7\x94\x6e\x9c\xef\x01\x6d\x1b\xd6\x4d\xcd\x22\x43\xdd\x7e\x3f\x01\x96\x0d\xbb\xca\x04\x3e\x6c\x7d\x0c\x1c\xca\x81\xba\x06\x7a\x58\xdb\x23\xf3\xcc\x18\x92\xa1\x65\x4b\x43\x62\x5b\xdc\x61\x66\x0c\x3f\x96\x80\x9a\xf7\x56\x16\x04\x91\xfe\x7b\x3f\x22\xe3\xa5\x41\xcc\x39\xb1\x4c\x9b\xe8\xa6\x4d\x86\x23\x87\x18\x16\x2e\x5f\x62\x8d\xcc\x98\x58\x0e\xbc\x1c\xbe\xc3\xb3\xed\x88\x0c\x2d\x07\xf1\x67\x4a\xec\x33\xc3\x0f\x43\xbd\xd4\x88\xdb\xae\x65\xb2\xa4\xfe\xfa\x81\x7a\x75\x00\x77\x10\x43\x85\x4c\xa2\x8f\xb4\x11\x19\x0d\x7d\x8d\x4c\xc8\xc4\xc4\x43\x91\xa1\x64\x98\x64\x22\x19\x16\x3a\x6b\xe2\x5f\x16\x2e\x46\x52\x07\x33\x7b\xa8\x99\x04\x76\x58\x63\x04\x1c\xd2\xf2\x0d\x62\xc2\xfc\x99\xce\x9c\x58\x23\x0d\x71\x3d\xd1\xc8\x18\xff\x30\xa7\xa1\x82\x0c\x18\x67\xf6\xf8\x17\x20\x1e\xc2\xce\x08\xdb\xf5\x44\xb3\x25\x5b\xb3\x63\x1b\x7f\x48\xb6\x84\x3e\xbc\xe3\x31\x74\x08\x7c\x70\x0c\x24\x03\xfb\xe8\xf0\x5e\x9e\xb1\xe2\xbc\x7c\x8b\xc0\xb5\xf1\x12\x11\xab\x21\x66\x0d\xcd\x70\x0e\x64\x51\xdf\xd7\x25\x13\x64\x3b\x7b\xce\xb0\xaa\x6b\x76\x86\xd9\xa5\x59\xf4\x0f\x8c\x53\xe7\xc2\x39\x88\xeb\xb0\x2b\x8f\x86\x9a\x25\x0d\xb1\x9e\x89\x67\xb1\xb0\x3f\x48\x96\x36\x94\xd8\x24\x69\xac\xab\x3e\x7e\x2c\x4b\x2f\x4e\xc2\xe8\xe6\x1b\x9e\xc8\xea\x92\xbe\xb5\x97\xf6\x7b\xfd\x85\xfe\x65\x35\x94\xcc\xad\xf5\xc2\xdc\x1a\x4b\xfb\x3d\xda\x78\x4d\x7c\x60\xe3\x03\xfb\x45\xd1\xeb\xcc\x0b\xae\xc2\x6f\xb6\x40\xe7\x43\x10\x39\x25\x9c\x5e\x98\x5b\x87\xcd\x73\xac\xa5\x3f\x34\xfc\x7d\xc6\x4e\xd4\x6d\xee\x82\xeb\x60\x61\xb6\x4c\x99\xad\x41\x27\xba\xc1\xd4\x03\x3c\x29\x18\xa6\xf1\x2c\xc4\xb6\x2d\x8d\x4c\xc6\xc3\xb9\xc6\xa4\x3c\x13\x04\x37\xe0\xa5\xe6\x04\x9e\x3b\x58\x83\xfb\xd4\xcf\x35\x62\x8d\x87\x44\x47\x1f\xf4\xf1\x90\x18\xe3\x21\xb6\x85\x2a\x2e\x2c\x65\x34\xab\x0d\x47\x42\xdf\x50\x9c\x46\x40\x38\xc4\x9a\x83\x6c\x07\x5b\x08\x31\x86\x68\xba\xe2\x75\x50\x89\x22\xe6\x78\x48\x9c\xec\x89\xcd\x63\x53\x26\x73\x78\x2b\xec\x06\x0e\xbc\x0f\x1a\x4e\xe0\x0b\xd4\x4b\x87\xcc\x86\xeb\xa4\xd0\x38\x2f\xd0\x88\xf4\xde\x30\xb7\x00\xf7\x17\x58\x53\x23\x32\x82\x41\x5a\xc0\x93\xf0\x93\xbb\xeb\xdb\x1a\x4a\xbb\x36\x31\xa0\x8b\x91\x6d\xc1\x13\x89\x98\x23\x03\xa4\xdf\x31\xe2\x02\xeb\xc5\x58\x68\x98\x63\x3c\xae\x9b\x83\x68\x0c\xb5\x88\x0d\xef\xc5\xa3\x3b\xc3\x9c\x90\x91\x6d\x62\x03\xb7\x62\xd3\xc1\x83\x3c\x73\x3c\x87\x62\x1d\xdf\x04\xc0\x8c\xf0\x9c\xaf\xc9\x56\x55\xc7\x9a\x1a\xa8\xef\x5b\xb8\xc1\x1d\x82\x00\xf1\xf8\x0c\x74\x2b\xd6\x46\xd7\xc6\x3c\x54\xc3\x31\xc7\xfc\xfb\x18\xc4\x57\x29\x7d\x85\x45\x9c\xe1\x48\xca\x4a\xb2\x4f\xde\x9e\xfd\xd2\x98\x29\x8c\x7d\x67\xe5\xe8\x43\xa3\x61\x6b\x78\x62\x4e\xb4\xac\xd4\x9c\x00\x1d\x0c\xd3\xd5\x00\x4f\xc6\xff\xd1\x8b\x61\xfc\x18\x17\x43\x4e\xf8\x3e\x75\xa3\xe0\x70\x84\x4e\x6c\x7d\x22\x0d\x89\x39\xb2\xfc\x31\x99\x18\x43\x09\xc3\x29\xe7\xc4\x76\x88\xa9\xdb\xc4\x19\x39\xc4\x01\xc9\x75\x04\xa2\x83\xa1\x83\xb8\x4a\x6c\x73\x04\x5a\xad\x43\x26\x3a\x08\xba\x69\x11\x88\x93\x06\xec\xe0\xc4\x1a\x1b\x5b\x8b\x8c\x9c\x11\x08\x1e\x86\x0d\x9a\x2f\xbc\x62\xa2\x11\x03\xfd\x6f\x70\xf6\x46\xa8\x12\xdb\x96\x4d\x1c\xcb\x62\x08\x1f\x0f\x41\x48\x19\x01\x3a\x6d\x8d\x8c\x87\x43\x32\xd4\x41\xd4\xb7\x26\xc4\x41\xdd\x4b\x1f\x59\xc4\x72\x40\x6c\xb2\x1d\xd0\xb9\x60\xc3\x9e\x38\x16\x7e\x33\x08\xdb\x5f\xc7\xa8\x72\x5b\x58\x62\xa2\xa2\xad\xe1\xe9\x1d\x31\x50\x89\xd7\x0d\xd0\x9e\x0d\xec\x55\xc3\x6e\x89\x05\x33\x6c\x0e\x35\x32\x04\x2a\x1a\xea\x38\xfd\x38\x80\xb1\x0b\x7a\x3e\xfc\x4b\xa9\xc4\x80\xb1\x5a\xe3\xe1\x16\x75\x5a\xdb\x47\xb5\x9d\x4c\xec\xe1\xab\x21\x41\x89\x6f\x88\x8b\x83\x0c\xa1\xbf\x31\x9e\xe8\xd9\x96\x83\x8a\x3d\x5a\x1c\x2c\xc7\x05\x01\xdd\x94\xd8\x27\xd3\x69\x89\x8e\x16\x80\x89\x61\xce\x61\xad\x12\x63\x3c\x22\xba\x81\xde\x49\xba\x3e\x22\x43\xc7\x71\x2d\x32\x66\x9a\xab\x93\x52\x11\xd1\x2d\x93\x98\xf6\x68\x09\xeb\x10\x10\xad\xeb\x36\xd1\x75\x0b\x7e\x12\xdd\x70\x88\x3e\xb2\xb1\x37\x7d\x68\x12\x1d\xd4\xe4\x09\x1a\x2e\x8c\x09\x2b\x32\x86\x0e\x31\xc6\x0e\xb1\x2c\x8b\x58\xe6\x88\xd8\x93\x11\xb1\x88\x35\x04\xe6\x44\x86\x96\x45\x26\xf0\xf9\x8a\xc5\x84\x9a\x3a\x80\x65\x3b\x48\xb0\x26\xac\xb5\x21\x06\xdb\x82\x86\x37\x04\xa4\x8d\x51\x29\xe1\x31\xa2\x43\x00\xd8\x1a\xe1\x37\x1f\x74\x13\x1b\x16\xe3\x08\xa4\x5a\xd4\x6c\x74\x4b\x23\xa6\xe3\x90\x09\x40\x38\x36\x4c\x62\x18\x26\x3c\x21\xc6\xd8\xd0\xc8\x10\x69\x6f\xa4\x91\xb1\x0e\xc8\x72\x4c\xf4\x77\x30\x33\x4e\xa5\x1b\x23\x8d\xd8\x68\xa3\xaa\x20\xd2\x42\x23\xca\x64\xe4\xcc\x81\xd4\x60\x84\x23\x8b\x0c\x4d\x54\xd6\x6c\x83\x4c\x6c\xf8\xe6\x38\x63\x5f\x33\xc8\xd8\x00\xe1\x5a\x1f\x3f\x03\x99\xcc\x91\x0c\x90\xbe\x91\x8d\xeb\x64\xe4\x38\xec\x8b\x65\x23\x4f\x30\x47\x50\x45\x03\x82\x07\x7a\xd7\x18\xbd\xe3\x82\xd1\xf8\x82\x31\x81\xd8\x0c\xc3\x21\x43\xc0\x07\x7c\x19\x03\xd5\x7c\x59\x01\x8d\x9b\x92\x45\x46\xf6\xd0\xd7\x86\x28\x9a\x92\x91\xcd\xbc\x73\x6d\x62\x9a\x23\x7f\x4c\x46\x78\x8c\x3c\x1e\x63\xa0\x93\x43\xa0\x26\x3e\xc4\x70\x67\x09\xf0\x43\x26\xd6\xe8\x15\x72\xaf\xa1\x4f\x26\xa3\x11\x19\x1a\x63\x34\x81\x4c\x6c\xc9\x26\x96\x63\xfa\xb0\x05\xa0\x89\x4f\x37\x87\xae\x41\x74\x1d\x50\xa3\xa7\x1e\x1e\x1a\x1b\xce\x2b\x20\x2c\x74\xf8\x19\x19\x3e\xa0\xd2\xe2\x01\x83\x8e\x4b\x86\x43\x0b\xfe\xe5\x34\x39\x26\xba\x39\x02\x4e\x0d\xfa\xcd\x84\x18\xfa\x88\x98\xa6\x4d\xac\xe1\x98\xd8\xf0\xdd\xb6\x89\x31\x1a\x13\x87\x58\x68\x78\xd5\x87\x13\x32\x04\x9d\xc7\x18\x11\xcb\x00\x6a\x37\x1c\x18\x27\x00\x3f\x84\xe5\x6a\x98\xb1\x49\x1c\x60\x07\xec\x91\xa5\xc1\x33\xe0\x35\x1a\x52\xe3\x18\xc8\xc9\xb2\x6c\xec\x6b\x8c\x85\xc4\x1c\xc2\xa2\x1b\x5b\x18\x76\x4d\x2c\x50\x43\xa1\xc8\xd6\x47\x35\x03\x9e\x68\x30\xe2\xad\x06\x6b\xa0\xcd\xc9\x02\x84\x72\x87\x8c\x86\x92\x31\x92\x1c\xbf\xbf\xab\x85\xef\x05\x1f\x0f\x78\x54\xa6\x8f\x6c\x26\x9d\x0e\x7d\xd0\x0b\x30\xdc\xda\x9c\xd8\xae\x45\x74\x5c\xeb\x7a\xb6\xd6\xff\x3f\xf6\xfe\x74\xc9\x71\x1c\x59\x10\x85\xff\x7f\x4f\x81\x8f\x6d\xe7\x76\xb7\xb5\xc8\x12\xa9\xbd\xa6\xbb\xc7\x72\xa9\xac\xc8\xee\xc8\xa5\x33\xb2\xb2\xa6\x3a\x2b\x6d\x0c\x22\x21\x09\x15\x14\xa1\x22\x40\x45\x28\x8f\x1d\xb3\x79\x87\x79\x87\xfb\x10\xf7\xe7\x7d\x94\x79\x92\x6b\x70\x80\xfb\x22\x52\x62\x2c\x59\x95\x3d\x73\x2a\x43\x24\xb1\x39\x1c\xee\x0e\x5f\x25\x1c\xac\x85\x33\x75\x15\x4d\x91\xf7\x8f\xe9\xd4\x96\xf0\x18\x41\x4b\x79\xbe\x66\xf2\xf2\x39\xb3\x16\x33\xd7\x9a\x8e\x67\x92\xa8\x5a\x8a\xfc\x0c\xe5\x81\x90\x57\xf0\x21\x30\xcf\xf9\x5c\x52\xb0\x21\x1c\x2a\xc9\x24\x6d\x18\x76\x0c\x53\x98\x49\xfc\x71\xe6\x8e\x6b\x5a\x53\x79\xe6\xe0\x1c\xab\x73\xaa\xa6\x00\x07\x76\x3e\x52\x33\x90\x94\x6f\x34\x94\xd4\xd8\x19\x43\x47\x3e\x3c\x95\xff\xb1\x9f\x8d\xac\x91\xd2\x9d\x01\xdd\x92\x7f\xd8\xf6\x0c\x81\xd9\xd8\x51\xa7\x6a\x3e\x97\x73\x92\xe7\x75\x3a\x72\xe4\xea\x60\x0c\x1f\x20\x61\xd6\x40\x02\xae\xad\x26\x80\x42\x41\x02\x01\x24\x24\x20\x14\xf0\x24\x1c\xac\xc5\x4c\x82\x02\x8f\x2c\x7b\x28\x31\xcd\x4e\x0f\xc1\x42\xde\xb4\x47\xc3\x89\x1a\x7f\x04\xd3\x97\xe3\xc3\x49\x06\x30\x00\x14\x4c\x05\x05\x4b\xc2\x78\xea\x80\x76\x15\x14\x2d\xf3\x78\xfc\xd1\x5c\x81\x01\x28\xd3\x02\xc0\x29\x5b\x03\x10\x62\xdf\x0e\xdb\x95\x6d\xad\x29\x1c\x5e\x70\x55\x9e\xcc\xe2\x3e\xc6\x6a\x27\x1c\x09\xc0\x05\xec\x84\x03\xab\x82\xfe\xb7\xe6\xc2\x1a\x8f\x66\x68\x6c\xcd\x47\xbe\x09\x7c\xd8\xb1\xb1\x22\x28\x9a\xac\xa8\xd5\x38\xa3\x99\xe5\x40\x87\x70\xf0\xa7\xc9\x32\x9d\xe1\xc2\xb2\xa7\x53\x6b\x3e\x1f\xcb\xff\x8b\x1f\x4b\x2a\x6d\xc3\xee\x3a\x0b\x90\x3d\x26\x20\x7b\x0c\x81\xfd\xca\xcd\x94\xd2\xca\x10\xe8\xed\xd0\x49\x04\xa3\xd1\x70\x2e\xa9\xbc\x35\x5f\x48\x62\xa4\x0f\x9b\x64\xa6\x92\x5f\x42\xaa\x02\x47\xff\x57\xbf\x1b\x0f\xa5\x28\x33\x9e\xfb\xf2\xae\x2b\xa7\xff\xc4\xb6\x86\x00\x93\x61\x62\x7d\x98\x03\x37\xb1\x47\x92\xad\x0c\x6d\x98\xcb\xc4\xb2\x61\x1e\x96\xb3\x98\xab\x03\x01\x5b\xba\x28\xcd\x69\x08\x73\xb2\x66\x13\x30\x30\x3b\xf3\x99\x5c\x82\x35\x91\xa2\x85\x7c\x3c\x96\x3b\x00\x3a\xf7\xa9\x2d\xc5\x33\xc9\x5f\x16\x0b\x90\x18\x9c\x85\x7c\x3f\x87\x7f\x01\x04\x28\x01\x41\x0c\x01\x89\x00\xa0\x59\x74\x24\xc3\x72\x86\x92\x5a\x0d\xa7\x0a\x08\xe3\xc9\x34\x86\x06\x4c\x59\x0a\x0e\xb6\x5c\x23\x08\x19\x23\x79\x9c\xe6\xc3\xd9\x76\x6e\x0d\x27\x13\x73\x66\x2d\xc6\x63\x38\x11\x36\xe0\xb8\x0d\x60\x98\xcc\x15\x75\x8b\xb5\x61\x53\x6b\xe4\x4c\xd0\xa4\x09\x0c\x53\xc0\x98\xf9\xfc\x08\x1c\x46\x92\x11\xda\x72\x2a\x72\x26\x72\x22\xbe\x84\xbd\x14\x86\x5c\x79\xc9\x90\x4c\x69\x6e\xd9\x0b\xb9\xdc\x85\xc4\x1b\x29\xc4\x8d\xe6\xb8\x80\x3c\x48\x19\x2d\x4a\xd8\x83\x24\xf6\x80\x10\xe5\x66\x40\x17\x43\x4e\x8e\xee\x48\x21\x4f\x81\x2a\x86\x94\x35\x9b\xe0\x2c\xde\x40\xfb\x6a\xb4\x31\x81\x50\x49\xac\x91\x33\x96\x33\x77\x2d\xc7\xb1\x9c\x91\xbc\x52\x4d\xac\xd1\x64\x6c\xcd\x16\x23\xf8\xb7\x61\xe7\x16\x80\x37\xf3\x63\x1b\xe7\xcc\x67\x1a\xef\x27\xe0\xfa\x0d\xaf\x8e\x69\x24\x7d\x86\x3d\x1a\xac\xdb\xeb\x62\xe0\x93\x6f\x6f\x25\xd7\xa8\xfa\xd0\x5e\x2c\x16\xdf\xc0\x5b\xa3\x92\x9d\x40\x66\xec\xbf\x19\x2a\xc9\x7a\x14\x12\x93\xba\x2c\x30\xf5\x2c\x8c\xbf\xff\xd5\x23\x2b\xae\x19\x0a\x17\x21\xbb\x26\xc5\x0b\xb4\x7a\x6a\x6a\x95\xd0\x28\x5e\x5e\xc0\x02\x62\x20\xea\xfd\xcd\xc0\x46\x7c\xdd\x9d\xf8\x53\x34\xda\xcf\x7d\x73\x8a\x46\xe6\xd4\x1c\x7d\x98\x2b\x55\x8f\x1a\x23\xe2\x04\xc1\x44\xbf\xdd\x84\x64\xf5\x37\xe3\x0f\xf8\xc8\xec\xcc\x25\xe6\x44\x76\xd0\xbd\xe5\x2e\x64\xeb\x90\x70\x9e\xbd\xeb\x43\x00\x87\xeb\x33\x4e\xbc\x1e\xdd\x87\xd0\x7c\x63\xda\x1f\xa6\xa0\xa5\x9b\x4d\x15\x17\x9b\xc8\xff\x77\x35\x43\x23\x49\xa2\x67\x68\xba\x77\x2e\xa6\x65\xe7\xe7\x61\xd1\x5c\xef\x14\xcd\xf5\xf2\x93\x62\xf0\xeb\xc8\x9a\xcf\xa6\x68\x22\xef\x45\x17\x0b\x6b\x3c\x03\xc7\x33\x7b\x21\x6f\x5c\x40\xc3\x47\x23\xc7\x84\xbf\x3f\xbf\x92\x77\x00\x34\xbf\x98\x5b\x0b\x98\x9f\x6d\xcd\xe0\x5a\xb5\x90\x37\x2c\xc9\xd0\xe0\x5f\x78\x3a\x44\xea\xcf\xd1\x02\xe9\x77\x2d\x32\x16\x01\x3c\x63\xe7\xe7\x3e\xf3\x40\x39\xb6\x35\x9b\x5f\x4a\xa9\x16\x4d\xd0\x08\x4d\x2d\xc7\xf1\xa5\xe4\x2d\xa5\xd2\xf1\x33\xf0\x2f\x9e\x5b\x53\x34\x46\x0b\x29\x82\x49\xe9\xa7\x12\x98\x96\x03\x86\x7f\x7d\x71\x9c\x4a\xf1\xd0\xb9\xb4\x17\xd6\x6c\x8e\x24\x9f\xd7\xe3\x7c\x7e\x35\xb7\x16\xe8\x04\xf8\x5c\x2c\xac\xe9\xf4\xd2\x19\x82\xe3\xf4\xb8\xbc\x57\x35\x68\x61\x3a\xd6\x64\x0a\xaa\x16\x30\xd7\x2f\x46\xe6\xd8\x02\xe9\x7b\x7c\x29\x27\x22\x05\xe2\x16\x6e\x33\x2a\x18\x69\x47\x7a\x8c\xc4\x68\x85\xc9\x1b\xdb\x5a\x9c\x00\xaa\xbe\xb0\x1f\xbc\x55\xa6\x1f\xec\xe1\xc6\x96\x5d\xc4\xc7\xc1\x94\xd2\xe0\xe8\xc8\x71\x38\x06\x52\x28\xd9\x63\xee\x70\xc4\x13\x15\xe0\x5d\x68\xca\x6d\x64\xef\xa7\x1b\xe7\x83\x7d\x61\x7f\xde\x8e\xd1\x50\xff\xc8\xa5\x2b\x8a\xe7\xe2\xe3\xc3\x9d\x4f\xc5\x9f\x9a\x40\xab\xb3\xe3\x6f\x49\x10\xf5\x85\x57\x63\x64\x83\x73\x91\xe9\x5c\x8c\x55\x42\xbc\x49\xfe\xe7\x6c\xef\x6c\xec\xe9\x87\xe9\xc5\xf1\x08\xa4\x2d\x0d\x22\xfe\x48\xad\x79\x10\x5d\x30\xdb\x9b\xce\xc6\x1e\xb6\x20\x9e\xb9\xa5\xf4\xad\x79\x9e\x21\xdb\xde\xc3\x44\x4c\xe7\x62\xf6\x79\x3b\x31\x17\x0f\x64\xfe\x6a\x07\x86\xde\x13\x92\xd8\xa3\x8b\xc9\x5e\x25\xdd\x68\x37\x83\xbb\xca\x1c\xd2\x5b\xce\x0b\x07\xd9\xc3\x2e\xe8\xc5\x42\x62\x42\xf6\x5b\x16\x08\xdc\xdf\x9a\xa6\xc8\x1e\x16\x57\xc4\xe3\x95\x24\x0b\xc8\x4c\xdc\x76\x50\xb7\x06\xe6\xb4\x5b\x83\x56\x90\xd8\x93\x50\x50\xb7\x47\x38\xd8\x0e\x9a\x17\x76\x8d\x27\x73\x4a\xe6\x8d\xe2\x79\xcb\x13\xe4\x74\x02\xc3\x10\x95\x78\xe6\x39\x50\xd8\xf9\x8f\x9a\x70\x6e\xcc\xf1\x5e\xe7\x49\x55\x48\x3e\x86\x04\xb8\xe3\xcd\xb8\x05\xae\x67\xd7\xd6\xbb\x0d\x6f\x84\xc0\x47\x43\x4e\xcb\xd9\xc8\x49\x42\x6c\x92\x76\xc5\xfe\x30\xfb\xbc\x35\x6d\x95\x05\xf7\x11\x12\x57\x00\xcc\x1d\xd0\xd6\x8d\x09\xba\x50\x07\xe2\x58\x24\x24\xa6\x10\xbd\xda\x26\x80\x03\xa6\x74\x77\xc4\xb6\x73\xc0\x51\x1d\xa9\x3d\x07\x21\x7f\x8d\x48\xd4\x5b\xb4\xb7\xbd\x40\x8b\x0b\x47\x32\xf3\xd9\x87\x05\x48\x4f\xf1\xaf\xf1\xe7\x57\x0e\xb2\xa7\x1b\x08\x02\xbe\x50\x1e\x44\x43\x34\xde\x9b\x53\xdf\x94\xd7\xa6\x09\x3a\x9a\xd4\x20\x24\xab\x90\xf0\x4d\x6f\x73\x9d\x59\xd3\x09\x9a\x5a\xa3\xc9\x93\x19\xa4\x53\x55\xff\xd5\x3a\x2a\x07\x8d\x93\x98\xd4\x99\xb5\x58\x40\x7c\xa8\xfa\x0b\x70\x7d\x86\xa0\xc1\x02\xcd\xdd\x91\x35\x93\x57\xb7\xa9\x0a\x1e\x9e\x4c\xc0\xf5\xc0\x94\x28\x67\x0d\xe7\x4f\x26\xf2\x23\xf8\x4f\xea\xcb\x39\x77\xcd\x91\x35\x92\x07\x48\x5e\x5c\xa6\x0b\x73\x6a\x4e\xb9\xfa\x03\x4d\xcd\x69\x12\xfa\x6f\xd9\x63\x15\x7c\x0a\x26\x9f\xd9\xfc\xd2\x1e\x49\xf2\x33\xfb\x00\x9a\xeb\xd1\x44\xde\x18\x8e\xe6\x0a\x0a\xa3\xf3\x4c\xa7\x35\xba\x8b\x30\x0a\x8c\xbf\xff\x75\x9d\xd3\xaf\x54\x78\x2f\xfc\xfd\xaf\x8a\xd6\x21\xf7\xf6\x6f\x86\xed\x18\xc8\x3d\xa8\x7f\x43\x10\xf8\xdb\x28\x71\xc6\x72\x31\xf5\xbd\x4c\xda\xf5\xe2\x34\x2c\x24\xa7\x80\xa9\x1f\xa9\x5e\x59\xb6\x4e\xa0\xcd\x09\x0e\xdd\x4d\x31\xed\x70\x36\xeb\x70\x29\xe9\x30\x92\xcf\xba\x9a\xb0\x15\x1f\xb2\x66\x0b\xdf\xb4\x9c\xb9\x69\x39\xb3\x27\x53\x6b\x3c\xb3\x91\xfa\xaf\xc6\xe2\x11\x24\x20\x89\xff\x4f\xa2\xdf\x10\xfe\xb2\x47\x12\xc7\xd4\xf5\x77\xb8\x30\x25\x91\x1e\x5b\x0e\xb8\xe8\xcf\x7c\xcb\x99\x59\xce\x7c\x2f\xfb\x9e\xa0\xb1\xb5\x58\x5c\x2a\x27\x73\x7b\xea\xcb\xdb\xff\xc2\x9c\x28\xb9\xe7\xd9\x18\xec\x6a\x36\x72\xd0\x1c\xa2\x3a\x64\xd7\x57\xf0\x30\x49\x7c\x62\xa3\xf8\x23\xf9\x00\x3e\xd3\x7f\xdb\xb9\x94\x13\x9c\x08\x41\x83\x75\x7f\x01\xd4\x0b\x48\xc1\xe9\x58\x8b\xb9\x6b\x0d\xc7\xa6\x35\x02\x7f\x45\x6b\x0a\x19\x7c\xad\xc5\x1c\x14\xc9\x63\xd3\x1a\x8e\xc0\x6d\x55\x3f\xf5\x1d\x0b\xbc\xcb\xa7\x13\xd7\xb2\x17\xa6\x65\x4f\xc0\xcc\x33\x76\x2c\xdb\x91\x8d\x7d\x53\xde\xcf\xc7\x53\xd7\x84\x07\x8e\x63\x82\x45\x5d\xf6\x01\xf6\x74\x79\x2c\x25\xa4\x5c\xd3\x9a\x38\xe0\x5e\x61\x81\x9a\x75\x04\x51\xe4\x30\x02\x24\xe0\x70\xac\xe9\xe4\x89\x35\x9e\xcf\xd3\x9c\xc7\xc8\x1e\x23\xc9\xa5\x5d\xd3\x72\x26\xe0\x40\x32\xb5\xec\xb9\x69\x8d\x17\xd6\xd8\x81\x56\x48\xb6\x52\x56\x2a\x88\xba\x85\xac\x83\xd0\xb1\xa5\xb4\xe6\xe3\x85\x29\x47\x76\x46\x26\x6c\xea\x78\x21\xbb\x91\x5f\xcb\x79\xa1\x78\xde\x23\x98\xf6\x50\x6e\xa9\x65\x3b\x72\x51\x72\xd1\xc8\x56\x9d\x83\x4f\x3f\xbc\x9e\x4e\xe0\x9f\x05\xb8\x3f\x8c\x46\xd6\x70\x64\x4d\xa7\xea\x89\x1c\x2c\x6d\x62\x2f\x2c\x7b\x62\x5a\x8e\xa4\x96\x66\xdc\xa5\x1a\x4e\xfe\x72\x1c\x6b\xb4\xb0\x46\x7a\x22\x7a\x96\xd6\xc4\x81\x4c\x0c\xc3\xb9\x24\x9e\xf1\x1a\x92\x45\xca\xc1\x9c\xb1\xea\x52\x41\x60\x03\x4e\x27\xa0\x21\x03\xb7\x06\xd9\x8d\x04\x4c\x0c\x4d\x65\xb7\x02\x53\x81\x3d\x33\x55\x52\x39\x0d\x71\xbd\x25\x96\x23\x71\x1d\xa0\x82\xe2\xed\xd2\xbb\xa9\x37\x13\x90\x40\xf6\x9b\x6c\x76\x8c\x0d\x90\xbd\xc1\x9e\x58\x70\x3f\x5a\x8c\xd0\x50\x0a\x36\x70\x5a\x4c\x6d\x49\xe5\xf1\x8f\x38\x8a\x1d\x8d\x54\x90\xfe\x0c\xc5\x0f\xe3\x1f\xf1\xdb\xa3\xe2\x07\x17\xb8\xef\x58\x33\xe5\xd9\x3f\xbb\xb4\xe7\x96\x3d\x47\x8e\x0d\xb6\x9a\xb1\x39\xb3\x86\xa3\x4b\xc7\x41\x0b\x30\x8a\xce\x00\xf7\xa7\xb6\xaa\x14\xb0\xb0\xec\x05\x9a\x5b\xd3\x11\xd2\xef\x27\x16\x44\x03\xcc\x46\x97\x13\x88\x53\x38\x9e\xf4\x0b\x16\xd2\x7b\x98\x59\x61\xba\x4e\xdb\xe9\xc6\xf1\x0d\x33\x94\x83\xc2\x28\x07\x85\x78\xc7\xc7\xbe\x39\xb2\x66\x60\xa3\x9c\x21\x1b\xe2\x4f\x25\xef\x76\x4c\xc7\x9a\xcf\xd1\x58\x65\xd3\xd1\x2e\x0c\xb6\x0f\x3a\xc5\xb1\x35\x04\xff\x84\xb9\x7c\x29\xbf\x45\xf0\xad\x7c\xe1\xa8\xac\xae\x93\x16\xf9\x6b\x78\xb4\x34\xef\xa0\x70\x81\x6d\xa3\x85\x9f\x0d\xf5\x9e\x8f\x90\x3d\xbe\xb0\xe7\x1f\xe4\x65\x01\x32\x4f\xab\x9a\x06\x4a\xe2\xb9\x94\xe4\xdd\x86\x34\xfc\x1d\x66\xdc\x6f\x52\x32\x29\xc5\x4f\xfc\x38\xf9\x4f\x1a\x6c\x6e\xcf\x90\x3d\xbd\x18\xab\x89\x0f\x37\x0b\xcb\x9e\xf9\xea\x3e\xa2\x66\x3e\x6a\x91\x59\x90\xdf\xe0\xdd\x9d\x68\x1e\x14\xa7\xbb\x1c\xc9\xa9\x27\x59\x70\x2e\x54\x1e\x89\xa9\xca\x91\xf3\xf9\x95\x23\x37\xc3\x94\xaf\xcd\xf1\x7e\x74\x61\x0f\xf7\xce\x66\x66\x0d\xed\xfd\xe8\x52\xbe\x6a\x37\xfb\xfe\xb5\x05\x10\x55\x36\x84\x34\x05\xa6\xb3\x97\x7f\x6e\xcc\xd1\xa5\x3d\x91\x98\x30\x86\xe9\x6e\xe4\xec\x17\x68\x74\x29\x05\x8b\xc5\x62\x33\xfa\x60\x8f\x37\xce\x07\xf5\xf7\xe5\xe2\xb8\x2c\x6f\x08\x4a\x42\x93\x04\x82\x84\xbb\x90\xf2\x33\xa9\x42\x07\xab\x63\xce\x84\x18\x63\x97\x6d\xcd\x26\x1f\xe6\xbe\x39\x33\xc7\xe6\x0c\x8d\xf7\x73\x1f\xb2\x6c\x99\xe3\xbd\x3c\xf0\x10\x6c\x8d\xac\xc9\xcc\x96\x6c\xd4\xb6\xec\xf1\xe8\xc3\xc2\x82\x8c\xae\x33\x48\xe3\x3a\xd9\x8f\xac\x85\x12\x0e\xd4\xdb\xb9\x35\xf1\xa7\xe6\x08\x5c\x6e\x90\xfc\x67\x3f\xb2\xe6\x8e\xad\x92\x9d\xf9\x90\x6b\x76\xe8\x9b\x0b\x34\x31\x17\xe6\xe4\xc3\xcc\x07\x91\x4a\x4a\x66\xce\x04\x6a\x73\x0c\xf7\x92\xec\x80\x57\xfd\xe5\x02\x49\xa4\x19\xfb\x52\x84\x98\x69\x46\x34\x83\xde\x67\x93\x3d\x38\x8f\x98\x6a\x0c\x53\x8d\xb8\x07\x8f\x12\x20\x33\xb3\xcf\xb1\xc9\xf3\x9b\xbf\xff\x55\xd2\x5e\x1c\x7e\x1f\x62\x8f\x92\x40\xa0\x5b\xfb\x6f\xc6\x64\xf8\x1f\x06\x3a\xd8\x7f\x33\xe4\xbf\xb7\x4e\xfc\xc0\xf9\x9b\x61\x0f\xe5\x5f\xb2\xed\xd2\xf8\xfb\x5f\xb9\x60\x3b\x24\xff\x63\xba\x72\x1b\xff\x66\xfc\xe1\xc5\x8b\x17\x86\x7a\xc2\x76\xd8\xa5\xe2\xf0\x37\xc3\x72\x26\x06\x62\xab\x15\x27\x02\x3a\xfc\xa6\x6d\xbb\x4c\x33\x18\x56\x22\x49\x7e\xb2\x89\x4d\xb6\xc5\x6d\x63\x8b\xf9\x35\x4c\xdc\x8d\x31\xf0\x0f\xab\xd5\xca\xa8\xb4\xca\xca\x91\xe4\xf7\xea\x65\x95\x3b\x76\xb9\x01\xe0\x8d\xfa\x34\x0a\xfd\x3f\xfd\x61\xf9\x67\x03\xe5\xd6\x22\x3b\xd4\xef\xdc\x3f\x27\xb6\xe6\xdc\xae\x7f\x2e\xdc\x19\xd4\x61\x60\xe7\xa6\xf8\x38\xeb\x14\x34\x22\xa6\x73\x39\x41\xf3\xf4\x54\xe8\xa3\xf2\x79\x6b\x0d\xa5\x6c\x7f\x69\xcf\xd1\xdc\x9a\xec\x67\x97\xb6\xa3\x9e\x40\x40\xea\xc4\x9a\xec\xcd\xe4\xd9\xe4\x2b\x2e\x7e\x11\xb8\x28\x42\xdc\xa3\x8a\x65\x8a\x66\x20\x55\x14\x13\x90\xcf\x4b\x09\xc8\xd5\x77\x9b\xf9\x87\xd9\xe7\xed\xc8\xb4\x2f\x26\x1f\xc6\x9b\x91\x35\xf1\x6d\xd3\xde\x4c\x7c\x1b\xd9\x17\xf6\x62\xef\x7c\xde\x9a\x40\xae\xed\xf9\xfc\xc3\x6c\x63\xef\xed\xa1\xfc\x73\x63\xda\x90\x4b\xb7\xf0\xe8\x08\x0b\x12\x51\xd0\x9b\xde\x6b\x84\xec\xd9\xde\xd9\x80\xa1\x70\xf4\xf9\xd5\x08\x4d\xc0\xa0\xf5\x61\x72\x31\xfa\xbc\xb5\x87\x08\x4c\x88\x9b\x39\xe8\x61\xe7\x3a\xd2\x6b\xba\x71\x3e\xbf\x9a\xa1\xc5\xde\xb9\x18\x81\xb6\xd6\xd9\x38\x1f\x16\x17\xb3\xcf\x5b\x7b\x8c\x40\x4e\xd0\x66\x31\x79\xdb\x36\x25\x7b\x9d\x6d\xc6\x1f\x26\x90\xa6\x0a\xda\x1f\xe5\xb1\x51\xb0\x62\x7e\xcf\xc9\x83\x20\xad\xae\x0d\xa9\x76\x41\x76\x74\x86\x2a\x11\x39\xc8\x91\x20\x93\x39\xb9\x9c\xc6\x90\x06\xd0\x1c\x2b\x0d\xc3\x64\xf1\x79\xbb\x90\xb7\x5a\x7b\x64\xd9\x73\x2d\xc3\x8d\x21\x66\xd9\x82\xdc\xf2\xf3\x91\xa4\x30\x2a\x43\xb8\x4e\x71\x3e\xf4\x65\x3b\xe8\xa1\xed\x82\xfb\xcd\x27\xe4\xa0\x89\x35\x1f\xe9\xc9\x2e\xf2\x6b\x1b\xa9\xc9\xce\x54\xfa\xe1\xf9\x08\xa9\x9a\x01\xd6\x7c\xa4\xac\xff\xd6\x68\xac\x45\xec\x89\x4a\x92\x1c\xe7\x46\x07\x51\x2a\x5e\x57\x2c\xcc\xaa\x6a\x04\x73\xeb\xb8\x53\x6e\xb4\xeb\x33\xfb\x99\x94\x38\x36\x90\xd2\x68\x6f\x4e\x37\xf2\x46\x25\xff\x1f\x9a\xc9\x35\xf4\x97\xfd\xcc\x88\xb8\xe4\x72\xe1\x1a\x07\xf4\x33\xee\x37\x2f\xa7\x83\x66\x1f\x20\x86\x6f\xbe\x71\x86\x1f\x66\x17\x36\xa4\xc3\xb4\x17\x17\xe3\x6c\x69\xbb\xe2\xaf\x0f\x8b\xec\x8f\x89\xfa\x21\xd1\xf1\x62\x9e\xfb\xb0\xf0\x2b\xdb\x6c\x1e\x37\x93\x87\x3c\x3e\xdc\x71\x2c\x67\xfa\xe7\x87\xc5\x66\xae\x3c\x40\x1c\x73\x0e\x61\x9e\x1b\x5d\xa4\x10\x8d\x33\x3f\x5b\x41\xb0\x67\x13\x89\x83\x6c\xc7\x55\x01\x9f\x90\x8b\x76\xb6\x80\x40\xda\x4c\xbc\x66\x26\x0e\x34\x89\xae\x45\x63\x6d\x24\x74\xac\xe9\x0c\x0d\x4d\x70\xf5\x1d\x9b\x73\x34\x06\xff\x88\xbd\xa9\x02\x41\xa7\x53\x73\x62\x8d\x46\xe6\xd8\x9c\xb7\xc8\x5f\x0e\xcb\xbb\x0b\x73\xcb\x08\xaa\x3b\x74\xb6\xae\x14\x2d\x34\x60\x1f\x56\x09\x40\x21\xaa\x7d\x34\x46\x23\x73\x84\x46\xdc\x1c\x99\x2a\x0b\xaf\xa9\xb2\xf5\xaa\x74\xbc\x99\xd4\xbd\xc0\xb7\x20\x5e\x19\x8d\xc1\xf9\x48\xca\xea\x36\x87\x70\x0e\xb8\x22\xd8\x7b\xfb\x62\xba\x3f\xce\xb4\x72\x30\xfa\xa2\xaa\x60\xa0\xd9\x23\x00\x9c\x20\x78\xdb\x6b\xd6\x79\x04\x8e\x60\xa3\x39\xa4\x53\x19\x2f\x20\x11\x81\xfa\xcb\xb1\x26\x57\xf6\xcc\x9a\xcf\x11\x64\x6b\x99\xa0\x59\xa1\x40\xdc\x10\x4d\x20\xa3\x6f\x92\xe9\xd9\xb1\x16\x0b\x05\x1c\xf8\x6b\x74\x65\x0f\xe5\x8b\x09\x5a\xa0\xc9\xb3\x99\x7c\x2e\xaf\x93\x53\xf9\xc7\x14\xcd\x79\x0c\x22\x09\xa4\x99\x35\x41\x23\xb9\x53\x10\xa6\x30\xb1\x26\xd6\xc2\x91\xff\x20\x47\xde\x6c\xed\xc5\xc6\xb6\xd5\xbd\x10\x36\x66\x0e\xe1\x94\x33\x53\xbe\x94\x5f\xc1\x1f\x2a\xbb\xb0\x3c\xd0\x23\xd9\xc7\x4c\x29\x52\x41\x61\x29\x3b\x98\x25\xed\xad\x39\x1c\x69\x47\x4d\x74\x34\x33\x47\xd6\x78\xf6\xcc\x1e\x82\x59\xc1\xb2\xd1\x02\x32\x38\x00\x2b\x3c\xae\x06\xd8\x53\x4e\x97\xd4\xa7\xe2\x60\x6e\xa8\xd7\x2b\xd7\x9e\xb9\x8e\x35\x93\x70\x55\x61\x0a\x50\xdb\x67\x88\x40\xad\x6d\x8f\x74\xae\x1f\x48\x0e\x30\x1f\xf9\x8e\x05\xb9\x1c\x16\x72\x33\x27\x90\x5e\x66\x0a\xd9\xd6\x21\x7f\xe0\xc8\x1a\x8f\xcc\xb1\x4a\x2c\x3e\x93\x7f\x8d\x16\xe6\xd4\x9c\x59\x13\xd3\xb6\xd5\x3f\x10\xd4\xe8\x58\xb3\xb1\xbc\x86\x8f\xac\xc5\xdc\x9a\xf9\x8e\x65\x4f\x21\x1c\x48\x82\x66\x26\xa5\x1a\x30\xde\x59\xa3\x89\xce\xd2\xf2\xf9\x95\x83\xc6\x96\x23\xbf\x74\x94\xb7\xbb\x35\x9e\x5a\xe3\xe9\x13\xdb\xb6\xe6\xc3\x31\xd2\xff\x0c\x13\xbb\xa1\x2b\x87\x47\x90\xe7\x65\x2a\x45\x0e\x04\x51\xce\x2a\xa4\x55\x59\x72\x46\xa6\x35\xd2\x3a\xc9\xf9\xd8\x07\xdd\xb9\xf2\x21\x85\x22\x63\x8e\xad\x2a\x52\xa2\x91\xe5\xcc\x90\xca\x2b\xe7\xcc\x3e\xbf\x82\x6a\x4e\x0b\x6b\xee\xdb\x96\x0e\x90\x75\x55\xf0\xa2\x6d\x5a\xc3\xb9\x5c\xbc\xfc\x67\x3a\xd1\x81\x27\x28\x45\x3c\x64\x41\x14\x1a\xe4\xfe\x18\x8e\x94\xc5\x20\xdf\xcd\x74\x26\x71\x45\x0a\x3d\xd6\x04\xc2\x76\xd4\x3f\x72\x5f\xcc\x49\xe2\xb4\x09\x11\x76\x0b\x0b\x52\x3c\x8d\xf4\x87\x9f\xb7\x63\x88\x35\x98\xcd\xfd\x91\x65\xeb\xe4\xee\x43\xc7\xb4\x6c\xe5\xfd\xaa\x09\x89\x24\x1d\xe6\xc8\x37\x2d\x50\x59\x75\xc1\x37\xbe\x61\x37\x7d\xe2\xdb\xd8\x9a\x3c\x9b\x21\x9d\xa7\x5f\x0a\x86\x53\xbb\x69\xdb\xf8\xc2\x72\x66\x10\x3d\x8a\x14\x1a\xb9\x35\xe8\xa5\x55\x3e\x6e\x19\x6c\x5c\xfd\x81\x54\xd1\x98\x18\xc9\x4d\xf5\x87\x09\x59\x02\x87\x26\x5c\xb5\x24\x7d\xc9\x90\xd8\x0c\xed\x40\xa3\x84\x1e\x67\xe0\x79\x0c\x8e\x37\x38\x0c\x3a\x85\x05\x74\xf6\xf6\x1c\x59\xc3\x05\x1a\x4a\x44\x84\xf8\x4b\x1b\x8c\x78\xb6\x7c\x7a\x69\x0d\x1d\x34\xb5\x20\x15\x8c\x63\x0d\x27\x80\x7a\xf6\x48\xfd\xb3\xd8\x5b\x73\x88\x0c\x19\x4e\xac\xe1\xd8\x1a\x2e\xd4\xff\xdf\x4c\xe5\x63\x4b\x05\x83\x41\xc8\xdc\x58\xfd\xb3\xd8\x9b\xd0\xc0\x54\x1d\x41\x32\x2b\x65\x14\xb4\x17\x97\x63\x6b\x68\x5b\xc3\xc5\x13\x48\x70\x65\x8f\x63\xe1\x61\x24\x89\xfa\x70\x23\x1b\xca\xab\xde\x68\x63\xcb\x2b\xdc\x07\x10\xf9\xe5\x0f\xfb\x62\xf4\x61\x9a\x31\x6e\xfe\x57\x55\x41\x71\x41\xb6\x3b\x1f\x0b\xc2\xbf\xc1\xbe\xcf\x5c\x90\x87\xef\xb4\xc2\xf8\x1e\x87\x48\xe8\x02\xed\x17\xef\x5f\x5d\x3e\xc5\x21\xb7\xe2\x59\xfc\xe9\x3f\xa9\xf7\xad\xf1\xdd\x58\x6c\x6e\x5f\xbe\xf9\x97\x31\x58\xaa\x92\x08\xff\x69\xf0\xc3\x76\xc9\x7c\x6e\x7c\xfb\xf1\x13\x98\x71\x04\xd9\x92\x40\xc8\xdf\x1f\xc7\x03\x63\x87\xd7\xc4\xf4\xf1\x81\x45\xc2\x18\x04\x91\xef\xab\xff\xfc\x67\xe1\xcb\xe1\xc0\x40\xc8\xf8\x34\xf8\x68\x0f\x3e\x3a\xf6\xc0\x90\x72\x0b\x11\x72\x85\xd8\xe7\xe4\xd3\x40\x7e\xf0\xf3\xcf\x81\xf1\xe9\x93\xec\x32\xc4\x5b\x22\x48\x08\x63\xfe\x17\x74\x28\x9f\x6f\x30\xff\x6e\x8f\x7d\xe3\x5b\x68\xf3\x5f\x7f\x1c\x6c\x89\xc0\xdf\xfe\xe7\x16\x96\xfe\x1a\x6f\xc9\xb7\x47\x60\x6b\x6d\x96\xdc\xc8\x57\x7a\x17\xad\x37\x26\xf3\xf7\x03\xef\x91\xb7\x64\xff\x76\xa7\x17\x7e\xbb\x3d\x6a\x01\xf0\xb3\x01\x9b\xf9\xbb\x2f\x18\x7f\x43\x03\x8f\xdc\x3e\x30\xa4\xff\x41\xd8\xbf\x86\x1b\xff\xa7\x4a\x48\x1b\xc2\x18\x18\x21\xbb\x31\x06\x99\xbf\xa2\x1d\x17\xa1\x94\x30\x07\x15\xaf\x2b\xf7\x66\xa6\xcf\x90\xa0\x42\x4e\xf9\xa3\xf1\x24\x81\x01\x32\x06\x1f\x9d\xd1\xe0\xa3\xb1\x65\x1e\xf1\x8d\x81\x11\xe0\x2d\x31\x3e\x7d\xfa\xa4\x8e\x44\x69\x2b\x07\x1f\x67\x03\x83\x13\x55\xf0\x42\x9e\x35\x7b\x60\x80\xc3\x8b\x91\x7b\xbc\xc8\x35\x19\x0f\x0c\xba\x32\x06\x1f\xd5\x48\x24\x0c\x59\x98\x0c\x51\x7d\x8c\xd5\x41\x9e\x0d\x0c\x8f\xee\x8b\xc3\x04\x4c\xd0\x15\xd5\xd3\xa7\xdc\xf4\x70\xb0\x26\x61\x7e\x54\x84\x9a\xfb\x70\x99\x1f\x6d\x03\x5e\xd5\xe8\x78\xb3\xea\x56\x49\xbb\xcd\xa8\xd8\x0c\xe0\x2e\xa7\x3a\x8e\x9b\xda\x83\x2c\x2c\xf4\x17\xf2\xa0\xc4\xf0\xb6\x87\xf5\x03\xec\xea\x7a\xf1\x08\x77\x43\xba\x53\x9b\xd0\xd8\x97\x51\xff\xb8\x69\xe5\x72\x0d\x2e\x98\xd3\x88\x27\xff\xde\xd2\x80\x6e\xa3\xed\x11\x80\x2c\x23\x21\xca\xd8\xa2\x9e\xe6\x37\xd0\x76\x06\x06\x0b\x5c\x9f\xba\xd7\x86\xc2\x5b\x5d\x5a\x45\xe2\x8e\x33\x18\x0e\x3e\x7e\xfa\xa4\xd7\xcc\x82\xe7\x94\x6f\x29\xe7\x29\xb2\xa6\xb3\x78\x73\x8d\x0f\x0d\x4b\x2c\x3d\xae\x78\x58\x78\x54\xcf\x35\xd2\x46\xf1\xfe\xdb\xd5\xfb\x7f\x43\xc5\xc6\xdc\x10\xec\x85\x8c\x55\x80\x2c\x7b\x26\x33\x7b\x5b\x38\x97\x85\x03\x99\x81\x32\xdf\xe1\x20\x86\xa1\x1e\xf8\xa3\x33\x1f\x7c\x34\x96\xd1\x76\x47\x42\xb0\xef\x23\x81\xd7\xa5\x13\x2f\x8f\x5f\xc4\x9f\x41\x93\x4f\xf2\x7f\x79\xe4\x8a\x3f\x73\x7d\x4a\x02\x71\x05\x1f\x37\x60\x57\x71\x36\x59\x30\xe0\xb5\xdc\xee\x0d\xf3\x7d\x76\x23\xff\xe2\x5b\xec\xfb\x28\x60\xa6\x20\xb7\xc2\x14\x21\x0e\xf8\x8a\x85\x95\xe8\x54\x05\x12\xea\x55\x03\x24\xfd\x7a\xa6\x0b\xbd\x68\x0c\x54\x04\xe7\xe3\x47\xb9\x96\xdd\x92\xe1\xd0\x7b\x4f\x6e\x25\xc3\xfa\x58\xd1\xf1\xa7\x5a\x60\xe7\xd0\xa2\x48\xdd\x92\x3e\xf8\xbb\x28\x90\xd2\xeb\x51\x4a\x97\x9b\xae\xb8\x61\x26\x17\x64\x57\x9a\x32\xf5\x7c\x02\xb3\x8d\x8b\x94\xc6\x3f\x58\xb0\xa2\xe1\x36\xff\x0b\xd0\xe8\x15\xe1\x1c\xaf\x89\x31\x30\xf0\x0d\xa6\x82\x06\xeb\x67\x99\xb7\x92\x5c\xc4\x61\x8a\xf2\xd0\xe9\x77\x72\x2a\xc6\x95\x60\x3b\x63\x60\x3c\x83\x71\x8c\x81\xf1\x13\xe1\x03\xa4\x1f\x3e\x09\x09\x3a\xb0\x08\xf1\x28\x24\xff\x1d\xbd\xdf\x50\x8e\x6e\xa8\xef\xa3\x90\x70\x77\x43\x24\x4f\x44\x62\x43\x50\xca\x65\x11\x0b\x10\x46\x1e\x5d\xad\x88\x94\xf1\x91\xc2\x23\x2b\xc6\x42\x2e\xd8\xee\x49\x46\xec\xc9\x01\x4e\xc1\x44\xd2\xb6\x8f\xed\xbe\x96\xdf\x84\x84\x0b\x1c\x8a\xda\xcf\x62\xd6\xa6\xf8\x22\x09\x01\xe5\x6a\x06\x48\x69\xcb\x71\x4c\x7b\x14\x5b\xf7\x4e\x2d\xbe\xb4\x7b\xe9\xf3\x86\x0d\x94\x5f\x14\x77\x8f\x06\xe6\xce\xc7\x2e\x49\x36\xec\x18\x78\xef\x7f\xcf\xca\x8d\x1b\xb6\xed\x08\x21\x2f\x9d\xf0\x2c\x65\xaf\xe0\x8b\x4b\x76\x4b\x3c\x53\x4b\x3e\x09\x4d\x2b\x53\xb0\x96\x3d\x98\x4b\xe6\x1d\x10\x0d\x7c\x1a\x10\x13\x04\x4f\xaa\xae\x6c\xf5\xd2\x4d\x15\xa5\xf5\xf1\x92\x64\x27\x91\xe1\x2d\xcf\x89\xc0\xd4\xe7\xb5\x6c\xb0\xa6\xc7\x1d\xa6\x21\xfa\x85\x2d\x4d\x30\xec\xeb\x9e\xeb\xe8\x3c\xc9\xd1\xf0\x7f\xb0\x65\x03\x2f\x1e\x0f\x0c\xd9\xa5\x29\x98\x14\x4c\x7f\x61\x4b\x6e\xfd\xc2\x96\x45\x1e\x25\x1f\xc5\xa8\xf5\x6b\x44\xc2\x83\x09\x5b\xc8\xd3\x43\xf6\x0b\x5b\xca\x6b\x04\xdf\x61\x97\x94\x29\x3a\x74\x09\x3c\x54\x7d\x90\xd2\xf8\x1a\xda\x5c\xe4\x35\x69\x07\x29\xcf\x39\x2e\x11\x34\x0a\x1c\x4d\x90\x0e\x98\x47\x4e\x00\xf5\x33\xa0\xad\xad\xa1\xad\x48\x31\xb7\xd4\xbf\xa5\x9b\x00\xf3\x48\x3d\xf3\x2a\xc9\x27\xf2\xeb\x81\xc1\x37\x2c\x14\x2f\xbd\x1e\x80\x54\x7a\x74\xc6\xc1\x3c\xfd\x3c\x4a\x79\x2d\x15\x5a\xaa\x8e\xe1\x3b\xc2\x59\x14\xba\x04\xfd\x20\xa8\xaf\x4d\x8e\x75\x4b\xe8\x46\x07\x8e\x5d\xa4\x4e\x11\x35\x4e\xbe\x14\x9d\x7e\x2d\xca\x31\xc9\x5d\x48\xb7\x38\x3c\x98\x5b\x22\x42\xea\xa6\xc7\x37\xd4\x50\x34\x06\x86\x7e\x55\x38\xc3\x12\x91\xdc\x5d\x64\xd4\x31\xe2\x86\x5b\xcd\x63\x98\xfa\x96\x6c\x59\x78\x38\x65\xf6\x6d\x2e\x22\x27\x6d\x37\xd9\xee\x84\x5c\x8d\x12\x35\xba\xde\x69\x73\xad\xe1\x98\x80\x91\xb0\x92\xe7\x50\x1e\xfc\xfc\x47\x81\xc2\x18\x4b\x5b\x5c\x6f\xeb\x87\x2a\x9c\x8c\x37\x81\x7f\x88\x7b\xce\xc8\x2d\x1c\x45\x70\x1c\x09\x8a\xb7\x87\x5b\xa7\x03\x38\x96\x0d\x1e\x13\x55\xaa\xda\xb1\xf7\x98\x5f\xf3\xd6\xc4\xa7\x74\x51\x2c\x4b\x22\xfa\x16\x9e\x21\x3a\x9c\x85\x82\x78\xf2\x1a\x48\x40\xd2\x20\xc1\x5a\x6c\x00\x66\x94\x9b\xab\xc8\xf7\xcd\xa5\x4f\x88\x9c\x5d\x22\x80\x35\x12\xb1\xba\xfe\x6a\x08\x19\x30\x30\x2e\x4c\x21\xc5\xdf\xf4\x0c\x26\x27\x50\x76\x17\xab\xea\xf4\xcf\xe7\x84\xbb\x24\x80\xcc\x3e\xf1\x82\x3f\x55\x8e\x9e\x48\xa3\xb9\x4e\x72\x4f\x33\x7d\xe9\x25\x73\x11\xd2\x1d\x01\x86\x57\x31\x57\x97\x6d\x77\x2c\x50\xcc\xf5\xa3\xe3\x0c\x24\x98\xd5\xe6\xb5\xa0\xd4\x99\x2d\x93\x20\xc9\x23\x04\xe5\x66\x00\x6e\xf0\x89\x32\xa8\xea\x48\x25\x5c\xbf\x6a\x22\x72\x41\xe6\x52\x11\xa5\x8f\x1f\x8d\x5d\xc8\xe0\xe8\x25\x52\x4e\xc5\xd4\x5e\xeb\x57\x6d\x78\xfa\xc9\xe3\xc3\xa8\x35\x13\xb8\x8a\xdf\x75\x9b\x41\x02\x42\x8d\x8a\x97\x98\x0b\xf4\xdd\xbe\x5e\x58\x3a\x71\xea\x64\x0f\x02\x95\x8f\xb9\xd0\xda\x63\x41\x6b\x81\xf9\x9e\x9e\x02\xcc\xe2\x52\x9e\x78\x5e\x48\x38\x27\xd5\x22\x7d\x7d\xbb\x67\x6f\x7f\xe8\xd8\xe2\x95\xe6\x61\xad\x15\x63\x35\xc0\x53\x14\xbc\xc3\x01\x88\x2f\xd8\x98\x5f\x9b\xa0\xee\x8e\x8f\xbd\x7c\xa2\xae\xc0\xa0\x32\xfc\xa4\xc6\x58\x64\x39\x6f\x9d\x16\x11\xda\x3e\x8b\x35\x8d\xd9\x46\x03\x03\x67\x6f\x92\x83\x62\x97\x1d\xae\x96\x8b\x8c\x69\x29\xf7\x62\x5e\xf7\xe2\x91\x32\xf3\xd7\x4c\xf1\x96\x7e\x79\xf7\x93\x0c\xbb\x06\x1d\x44\xc0\x04\xda\xe0\x3d\x41\x72\x73\x38\x8a\x02\x41\x7d\x24\x36\xe4\x80\x70\x48\x10\x0d\x10\x4e\x58\x3d\xc0\xe8\xbe\x58\x7a\x99\x6d\x05\x44\xdc\xb0\x50\x22\x9f\xb2\x1c\x1d\xe7\x5c\x47\xed\x1a\x47\x64\x83\xf3\xa5\x03\x84\xde\xca\xb9\xb6\xba\x99\xb6\x54\x54\x14\x58\x7e\x99\xd3\x37\x30\xeb\x4f\x75\xb0\x84\xa3\xd5\x82\x99\x4e\xfb\x64\xa6\x4e\x16\xdb\x81\xcb\xb5\xa3\x8d\x85\x6e\xec\x4c\x37\xcf\x0f\x01\xde\x52\xf7\xbf\x77\x24\xb3\x17\x8c\x0b\xa4\xa9\x7a\x57\x0a\x8d\x77\x3b\xe2\xc1\x36\x9f\x47\xa6\xa7\xa7\x90\x69\x39\x9b\x4a\x3b\x5c\xf1\xa3\x04\x55\x6c\x20\xae\xb3\x06\x33\x47\xcd\xe2\x6b\xfa\x4a\x45\xd5\x7c\xaf\x94\xeb\xbd\x00\x30\xfc\x04\x92\xe6\x6b\x66\x14\x8d\x9c\xed\x07\xab\xfa\x28\xf9\x0c\xc7\xd2\xf5\x26\x24\xab\x58\xb8\xd6\x6e\x2b\xb1\x92\x25\xc5\x79\xba\x83\x49\x7d\x6b\x94\x60\xb1\x83\x6d\x54\x22\xb4\x44\x33\x81\xc3\x35\x11\xc6\xc0\xf8\x9f\x4b\x1f\x2b\xd5\x90\x7c\x1c\x6a\xfd\x0b\xdb\x91\x80\x84\x28\x60\x21\x59\x91\x30\x4c\x4d\xa2\x76\xcd\x98\x19\xee\xf5\xad\x51\xb9\x1b\x7a\x06\xed\x00\xd4\x6d\xab\xf2\x03\x09\xd6\x62\x98\xa3\x28\x3d\xab\xe3\xaa\xd3\x82\x8e\xb7\x66\xca\x1d\xce\x4c\xed\x75\x86\x84\x7b\xea\xb6\xba\xca\x3c\x06\x86\x70\xa5\xa7\xfb\xe8\x78\x42\x02\xc7\xb6\xcc\x60\xf4\xc8\x99\x41\x05\x4d\x3e\x46\x61\xde\xe3\x75\x1b\x06\x90\x6d\xf2\x8c\x05\x01\x71\x45\x1b\x96\x93\x6d\xf6\x83\x76\x29\x29\x0e\xd7\x91\x6b\x8c\xee\x93\x6b\x8c\x7b\xe3\x1a\xf9\xbe\x24\xcd\xbb\x54\xf6\x93\x33\xd8\xd0\x2f\x8c\x82\x0f\xd7\x00\x19\xa5\x11\x04\xec\x6b\xc9\xc5\xe6\x74\x56\x97\xed\xdc\x55\x18\xd0\x2f\xa3\xd3\x07\x97\x60\x77\xd3\x30\xe4\xc0\xe0\xd4\x23\x2e\x0e\x35\x55\x91\xc0\x0c\xd9\xed\x21\xe3\xb3\xc4\x5b\xa3\x46\x86\x1c\x01\x00\x27\x83\x8f\x86\x47\xb8\xa0\x01\x5c\x18\x5e\x97\xdd\x21\xbe\xcd\x7f\x2c\xaf\x16\xfe\x53\x1a\x78\x6f\x0b\x4c\xac\x0e\xb5\x27\x15\x4c\x22\x37\x8f\x13\xb9\xd2\xb8\x8e\x2b\x8d\xee\x8d\x2b\xc5\x3b\xb5\xc1\xfc\x5d\x62\xa7\x07\xf5\xc7\xf1\x0d\xb9\x27\xfe\xd4\x6c\x64\x01\x33\x4b\xec\x5f\xa0\x26\xde\x1f\xcb\xaa\x1e\x30\xa3\x78\x48\x7d\x1b\x4c\x50\xf0\x98\x82\x6e\x09\xdc\x90\x13\xfe\x95\x55\x19\x14\xb5\xff\x8d\xbe\x03\x77\xb6\xd7\x37\x98\xbf\x0d\x89\xbc\x7f\x93\xe3\x4c\xb1\x25\xb8\xe4\x26\x69\xa7\xec\x1e\xe5\x91\x64\x9a\xe8\x69\xb5\xd7\xd6\xe9\x9b\x99\x07\xcf\x0c\x9c\x07\x13\x48\xed\xf4\xb8\x61\xd6\x85\xec\x38\x6d\xaa\x9f\x4d\x2b\x25\x4c\x6f\x36\x15\xb4\x66\x41\x0b\xc9\xa4\x9b\x4a\x06\xfc\x41\x32\xee\x1f\x1b\xcc\xd1\x92\x90\x00\x42\xd8\xe5\xdd\x12\x07\x1e\x5a\xe3\x70\x89\xd7\x04\xb9\xcc\xf7\x89\x2b\x88\x57\xa7\x87\x39\xdb\x7a\xd5\x87\xeb\x45\xc7\x9e\xba\xb8\x60\x14\xba\xae\x33\xe7\xb7\xba\x35\xd6\xfa\xef\x65\x7d\xf6\x52\x94\xad\xf5\xdb\xab\x1e\x24\xef\x41\x97\xed\xa6\xce\xaf\xaf\x7e\xb2\x67\xdd\x02\xfb\x81\x51\x8d\x0b\x44\xd5\xfa\x5a\xcb\x86\x55\x1e\x12\x59\xcf\xfe\x9c\x73\x7e\x0d\x01\xa9\x75\x93\xc8\x6d\xdc\x69\x3e\x12\x7d\x40\xb9\x77\x17\x9e\x7a\xd0\x15\x5d\x79\xb2\x10\x38\xd5\x9d\xa7\xd8\xc7\x49\x2e\x3d\xd5\x9d\x3c\xd8\x6e\xec\x42\xca\x42\x2a\x0e\xdd\x76\xe4\x6d\xa6\xd5\x91\x6d\xc9\x74\x58\x77\x46\x14\x18\xd2\x99\xf4\xa4\xf1\xb9\x57\xf7\xa6\x7a\x4c\xac\x76\x73\xca\xd1\x88\x56\xae\x4e\xa5\x16\x0f\x7a\x94\xbb\x81\xee\x1d\xe1\x24\xdc\x13\x0f\x35\x9b\xfd\x3a\xe0\x4c\xe2\x57\x61\xc4\x8e\x39\x59\xd6\x81\x5e\x5d\x7c\xbe\x73\x5e\xd1\x71\xe9\x95\xf6\xcb\x1e\x56\x9f\xf8\xf6\xe4\x01\x40\x9f\x9e\x0a\x80\x73\xa4\xa9\xbb\xbd\x4c\xce\x06\x06\x0e\xbc\xd2\x5d\x23\x86\x8c\xf7\x24\x1b\x65\x68\x50\xfe\x22\xf2\x57\xd4\xf7\x95\x7f\x44\xab\x36\x05\xad\xe9\xe3\xb8\x9c\x56\x5e\x56\xb2\xf3\xbe\x93\x5b\x4b\xa3\xa3\x4b\xc1\x91\xa5\x11\xaa\x72\x93\xb3\xae\x51\x94\x9b\x94\x33\x1f\x8b\xd6\x7e\x2b\xf6\x83\xf8\xad\x14\xcd\x5b\x2f\x9f\x1f\xbf\xee\xe4\x1a\xbc\xc7\xfc\x1a\x7d\x1f\xb2\x68\xd7\xb1\xe1\xb3\x90\x28\xe8\x74\x33\xbf\x31\x8f\xae\x68\xe7\x66\xb1\xec\xdd\xa9\xd1\x07\x12\xf2\x38\x06\xaf\x7d\xab\xd7\xc0\xe8\xbe\x00\x3f\x11\xfb\x0c\x3f\x91\x14\xd5\xf3\xde\x22\x59\x01\xde\x70\x59\x20\x92\xe0\x1f\x67\xe0\xe4\xbc\x35\x95\x7c\x7a\x5c\x65\xe8\xd4\xa9\xf6\xec\xde\x55\x7b\xc5\xcf\xfa\x0c\xa8\x55\x81\xb0\xbd\x85\xd5\x2a\xaf\x9c\x07\x8d\xaa\x9d\x2c\x7f\xb8\x5d\xbd\xf9\x1f\xcf\x1f\x65\xfc\x32\x00\xa8\x57\x68\x7f\xb3\x7a\xe8\xa0\xfe\x7f\x3d\xfb\xe5\x9a\x2f\xa3\xef\x9b\xc3\x98\x5b\x45\x27\x6b\x61\x0b\x8b\xcd\x8f\x54\x6c\x2e\x09\x14\x2f\xbc\xf2\x31\x57\x6e\xa6\xc8\x54\x7e\xae\x89\x4e\x44\x3b\x81\xc5\x97\x38\xc8\x29\x41\xf8\x81\x0b\xb2\x2d\x19\x3e\x52\xfe\x9a\xf5\x29\xe3\xd1\x32\xc0\xfb\x82\x5b\x59\xc2\x5a\xd5\xaf\x4a\x7f\xaf\x52\x34\x74\x51\x77\x93\xd1\x4e\x41\x91\xc5\xb0\xc2\xa3\x96\xf2\x17\x54\x05\xff\x1a\x60\x38\x85\x24\x16\x19\xc9\xa5\x9d\x1f\xad\x86\x42\x8b\x58\x80\x71\xf5\xe8\xf5\x5f\x03\x8c\x24\x50\x6b\x48\xa9\x1e\x5a\x7d\x01\xcd\xcb\xf2\x89\xfe\xa6\xe8\x59\x97\x81\xef\x20\xdd\xf7\x8c\xcf\xad\xec\x0c\x20\xc3\x4d\x72\xbb\xf3\x19\xb8\x35\x54\x7a\x53\x56\x30\x82\x15\x37\x97\x21\xc1\x9e\x1b\x46\xdb\x25\x2f\xb9\x0d\xaa\xa1\x0a\xdb\x9c\x9f\x46\x97\xf8\xb1\x2e\x9a\xcd\x7a\xd9\x30\xb3\x50\x74\x54\x86\xed\xc3\x05\xe0\xce\x21\x96\x1b\xa6\x29\x74\xd6\xa3\x21\x71\x05\x0b\x0f\xdf\x05\x22\xa4\xa4\xc1\x34\x75\x27\x5e\xe0\xcf\xcb\xc3\x77\xf5\x07\x3f\xe6\x0e\x01\x74\x80\x6d\x77\x58\x19\x68\xef\x42\xf0\xae\x75\x5b\xb6\x6b\xdc\x96\x33\xd0\x50\xbe\x0e\x20\xa3\x8b\x1b\x66\x8a\x0d\x0d\x3d\xde\x9b\x27\xf8\x59\x33\xbb\xa2\x9f\x89\x32\x60\xaa\x60\x71\x95\xfb\xbd\x7a\x6a\x92\xa0\x21\x68\x70\x7f\xf3\x7b\xc5\x3c\x70\xe7\x6e\x39\x45\xf0\x3f\x4f\xaf\x0b\xc7\x2f\xe1\x77\x2b\x3c\x17\x69\x40\x72\x12\x4d\x12\x88\xf0\x90\x9e\x30\x38\xe4\x09\xc5\x57\x2f\x3f\x65\x59\x76\x15\x59\xcf\x4b\xd7\xfd\xc8\xd5\x77\x64\x46\x6a\xb0\x07\x37\xf7\xd2\xd2\xf4\x77\xa6\x0f\xb6\xc4\xec\xa6\x8b\xe2\x89\x46\xbf\x0a\x35\x58\x42\x0c\x11\xe5\x48\xa7\xe7\xf2\x0f\x08\xba\xb1\x1e\x81\x2e\xab\xf2\xf3\xf6\x48\x71\xc6\x46\x9e\xbe\x81\x20\xb5\x52\x0e\x5e\xee\xef\x1a\x62\xe1\xce\xdd\xc3\x67\x38\x90\x43\x60\xd7\x25\x9c\x2b\x69\x18\xb1\x15\xc2\xe0\x55\x8f\xc4\x06\x8b\x78\x16\xda\x99\xde\x3a\xd3\x25\xe1\xae\xaf\xa7\xfa\x8a\xd3\xef\x95\xe9\x31\x24\x7f\x0a\xbe\x7b\xba\x0e\x57\xd7\x3f\xb4\x4d\xfe\xd4\x2e\xbb\x53\xee\x76\xd4\x3a\xaf\x53\xfb\x0b\x51\x13\x25\xff\x9a\x1f\xea\x6b\x7e\xa8\xaf\xf9\xa1\x4e\xc9\x0f\x55\x06\x92\xf1\xa9\x6d\x1a\xa8\xf2\x21\x4a\x23\x1f\xb4\x4b\xf0\x5b\xf0\xc4\xec\x94\x8b\x08\x9c\x37\x4d\x81\xd7\xd9\xc4\x49\xb1\xc0\x9b\xc9\x2a\xd5\x4a\x55\x5a\x52\x88\x1a\xcd\x6e\x2f\x30\x83\x28\x80\xaa\x02\x47\x17\x35\xc8\x4f\x47\x8f\x64\xd4\xa6\xbb\x22\x47\xb3\x5d\x25\x31\xa8\x15\x87\xa4\x09\xda\x5f\x6e\xd2\xa7\x7e\x32\x07\x81\x88\x51\x97\x33\xe8\x7d\x59\x47\xd5\xe6\x83\xfa\x94\x3f\xef\xb5\x6a\xee\x6b\xb2\x9f\xa2\x98\x79\x46\x9a\x9f\x46\xa6\xd7\xc2\xde\x7e\x25\x77\x86\x78\xe8\x49\x53\x22\x9a\xf8\xae\xc9\x24\x66\x9a\xa2\x7c\xc6\xb9\xea\xe5\x89\xa8\x15\x5a\x6a\xee\x05\x75\x67\x53\x82\x97\x6f\x72\x3d\xb6\x08\xb5\xed\xea\xae\xd6\x1e\x4c\x2f\xf4\x7c\xea\xe1\xd4\x12\x52\x15\x0b\x6b\xad\x82\x3b\x4a\xa5\xef\x1c\x5b\x9e\x87\x74\xaf\x99\x7b\x3d\xa6\x8c\x72\xd1\x13\x40\x23\x3c\xdd\xee\x54\xd7\xea\xb3\xce\xfe\xe9\x47\xfe\x6b\x3e\xa1\xe2\x51\xf9\x9a\x4f\xe8\x6b\x3e\xa1\x0e\xda\x93\x7b\xca\x24\xa4\x13\x10\x3c\x54\x0e\xa1\xf2\xe1\xfc\x32\x13\x0e\x24\xc9\x49\x1e\x5d\x80\xe9\xa9\x49\x07\x7a\x8d\x33\x3d\x27\x5b\x40\x4f\x21\xab\xf9\x2c\x32\x1d\x04\x84\x87\x8d\xff\xac\x0b\x7f\xec\x3d\xd2\xbf\xcf\x60\xd3\x46\x8f\xd3\x73\xb2\x06\x14\xe3\x57\xfb\xc8\x1a\x50\x3d\xd9\xbc\x4c\xd6\x2e\xa3\x40\xc5\xec\xee\x28\xca\xe4\x28\xfa\xde\x7b\x2c\xe6\x3d\x89\x94\xd5\x82\xa4\x4b\x02\x91\x8f\x96\x3c\x53\x82\x3c\x8f\xf6\xe6\xec\xee\x10\x56\xb9\x27\x21\x27\x25\xf9\x93\xe4\x03\x53\x4f\xc9\xb3\xd6\xd1\x6c\xde\x44\x58\x47\x59\x19\x84\x36\x10\xd6\xb6\x84\xfe\xfd\x61\xd7\xb2\x93\x98\x33\x64\xd5\xb6\xf7\xe8\x54\xd9\x82\x3a\xd7\xd1\xe6\xfc\x6d\x35\x6b\x00\x1e\x18\x3a\x23\x5a\x4b\x92\x5c\x43\x90\x73\x1d\x02\x40\xbb\xf7\x54\x75\x0f\xca\xf7\x9c\x08\xb3\x1d\x82\xd6\x8d\xca\x39\xa6\x3d\xb5\x51\x51\xb5\x1c\x66\x26\x25\x5a\x23\x67\x21\xce\x88\xdf\x1d\x8c\xab\x47\x08\xeb\xd1\xde\x3a\xf8\xc1\x1e\x13\x7e\xab\xc6\xea\xdf\x98\xd8\xbf\xc3\xeb\x37\x3e\x5b\x3f\xb4\x13\xe6\xf7\xff\x14\xcf\xff\xf9\xf4\x15\x69\xef\xf5\xda\xc9\x76\x38\x30\x10\x2c\xf2\x11\xd8\x10\x51\xa5\xa7\x64\x8e\x48\x15\xe7\xe3\xb3\x75\x93\xff\x62\x29\x92\xa2\xca\x55\xb1\x68\x4c\xad\x9c\xfc\xdd\x63\xaf\xdc\x85\x13\x90\x77\xb7\xf3\xe9\xa3\xa8\x2e\xf5\xf9\xfa\xb9\x38\xd0\xd9\xdb\x4e\xde\xd9\x92\x9d\xc7\x55\xc0\x1a\x70\xaf\xe0\x4a\x5c\x48\x5e\xab\xbc\x82\x21\x6e\x2f\xf2\xbd\xab\x0d\xbb\x79\x47\xd6\x71\x8c\x8c\xae\x17\x12\xb8\x58\x94\x5b\x60\x57\xd0\x3d\x51\x5f\xc7\x7e\xc8\x46\x2e\x46\xe9\x93\x24\xc0\x5b\x25\x8b\x7d\x34\x38\x91\x84\x50\x30\x60\x9e\xea\xe3\x6a\x6c\x99\x0c\x0c\xbe\x5f\x9b\x3b\x2c\x04\x09\xa1\x38\xdb\xa7\x22\x6f\x2a\x98\xc1\xda\x18\xc8\x63\x88\x74\xac\x83\x56\xdb\x57\x8d\xca\x47\xce\xc4\x74\x59\x20\x30\x0d\xaa\xae\x0e\xc7\x9a\x56\x6a\x8b\xca\xca\x0f\xca\x5f\xb3\x4b\x82\xbd\xa6\x48\xeb\xb2\x8e\xaa\xae\x10\x8f\x94\x26\x77\xd8\xcd\x09\xb0\xaf\x19\x7a\xe6\x47\x5c\x90\x10\xc5\x03\x35\x59\xc0\x4b\x9a\x25\x1e\x2d\x6b\xac\xb8\xea\x7f\xef\x37\x04\xb9\x7a\x80\x0d\xe6\x28\x60\xc8\x87\x71\xac\xfc\xfd\xcf\x8e\xef\x7f\x70\xf5\xe3\xba\xd0\x21\x9c\xe6\x5d\xc8\xe0\x6c\x52\xf6\xcd\x3a\xa2\x1e\xe1\xdf\xb0\x48\xe0\x35\xb1\x36\x62\x9b\xb5\xff\xa0\x77\x04\x7b\x08\x2f\x59\x24\xd0\x1b\xf8\x42\x5e\x05\xd8\x9e\x84\x87\x33\xd4\x57\x47\xdd\xc8\x27\xc3\xe1\x5d\x6d\xce\x15\x09\xf7\x24\x44\xdf\x29\xbc\x3f\x77\x5f\x9e\x20\xae\xfa\x03\x14\x44\xbb\x10\xee\x1b\xc4\x43\x1e\x16\x18\xad\x42\xb6\x45\x4b\x02\x29\x46\xe5\xf5\x49\x30\xb0\x6b\xc6\x55\x6b\x7a\x00\xd4\x78\x38\xbe\x3b\x2c\x16\xe8\x05\x8b\x82\xba\x08\xb4\x0e\x50\xfa\x71\x83\x05\x3a\xb0\xe8\xe7\x3f\x86\x04\xf9\x8c\x5d\x4b\x88\xac\x58\x88\x5c\x49\x39\x41\x0b\xbb\x24\x68\x25\x07\xb3\xd0\x4b\x81\x08\x15\x1b\x12\x22\x8f\x11\xa5\xa2\x25\xb7\x94\x0b\xc4\x42\xb0\x18\xe3\x90\x80\xbf\x19\x8e\xc4\x86\x85\xf4\x33\xf1\x24\x5c\x39\x21\x88\xf6\x05\xd3\xd1\x5d\xc2\xf4\x49\x32\xef\x0a\x69\xb5\x10\x87\xc1\xae\x49\xa0\x04\x95\x90\xb4\x33\x35\x76\xda\x97\x9f\x58\x14\x22\xa3\x14\xe3\xce\x89\x10\x34\x58\x73\x0b\xc6\x8f\x65\xb4\xaa\x51\x9f\x3c\xbb\x44\x6a\x92\x47\xac\x7f\x72\x2b\x61\xd7\x76\x21\xdb\x53\x4f\xd5\x75\x0a\xc9\xaf\x11\x0d\x89\x87\x76\x24\xdc\x52\xce\x21\x33\x06\x7a\x26\x39\x80\x0b\xf8\x12\x22\xec\x6d\x69\x40\xb9\x00\xee\x87\xe8\x0a\x89\x0d\xe5\x88\x72\x84\x03\x75\xe4\x4e\xda\xf1\x53\xe1\xf5\x56\x4f\x1e\x07\xf7\x03\xb5\x1b\x2a\x36\x0a\x4a\x9c\x0a\x92\x05\x93\x44\xf9\x3d\x25\x37\x00\x8f\x36\x30\x38\xcd\x32\xd3\x05\xb7\x7b\xa2\xa8\x57\x6c\x4b\xc4\x46\x12\x88\x1b\x49\x32\x6f\x42\x16\xac\xab\x59\x4d\xcb\x65\xb6\x7c\x54\x88\x4c\x27\xbf\x26\xa7\x10\x5c\x62\xd6\xe0\xa2\xbe\xa7\x21\x0b\xb6\x90\x37\xe2\xd3\xc0\xf0\xc8\x9e\xf8\x6c\xa7\x7e\xb7\xcd\xf9\x14\x83\x22\x24\xd5\x52\x0c\x17\xd8\xbd\x36\x45\xa8\x73\x95\xe8\xd4\x04\xae\x8e\xb5\x5d\xa4\xa2\x18\x7c\x7e\x05\x0a\x95\x9c\xb2\x22\x86\x53\x4b\xb7\xa9\xd6\x1a\x3c\x35\x3d\x89\xf0\xb5\x4e\x25\xe5\xa4\x2d\x4a\x7e\xcd\x7a\x7a\xc5\x8e\x78\x37\x1b\x5a\x9b\x98\xff\x7b\x26\xf1\xfb\x1f\xd0\xbe\x7d\xcd\x9f\xca\x44\x1d\xe7\x4c\xe0\x59\xdc\x45\x9b\x39\x1c\xd7\x45\x54\xe3\x61\x72\xa3\x13\x61\xd4\xfe\x42\x97\x5e\xbf\xba\xdf\xdd\x62\xc8\x3c\xec\xbd\x6d\xf3\x97\x9f\x9e\xbf\xf9\x77\xe8\xfe\x76\x2a\x37\xc7\xa9\x61\x4e\xdd\x90\x6f\x92\x9c\x32\x0f\xb9\x2f\xbf\xce\x3f\xff\xb8\x74\x7e\x7c\x52\xed\x46\x8e\x73\x85\x82\x77\x9d\xdd\xc9\xd5\x91\x8a\x03\x57\x33\x85\xfd\x8a\xea\xa1\x82\x03\x57\x92\x1a\xa7\x70\x4b\x3e\xdb\x65\xfc\x34\x4f\xda\xa6\x14\x6b\x90\x8f\x48\xe5\x53\x33\x7d\xba\xde\x88\x92\x0a\x0c\x54\xe9\x92\xa3\x27\x89\xd2\x52\xd7\xd1\x0a\x13\xd1\xb9\xb0\x6a\x51\xe6\xf5\xb7\x5d\x58\xf5\xb7\xe9\x9a\xa9\x8f\xd2\xc3\x3a\x67\xd6\xe7\x1a\x39\x76\x4c\xf4\x09\x91\x48\xa5\x52\x78\x55\x97\x12\x3e\xe6\x57\xdd\x58\x3f\xb8\xd9\x43\xe4\xae\xc0\xd2\x5c\x6e\xa1\xea\x8c\x6c\x84\xd8\xc9\x56\x1d\x3c\x10\xef\xc1\x97\x12\xd3\x0a\xbf\xa8\xf2\x25\x35\xe3\x2d\x91\x34\xe9\x72\x51\xad\x9a\x4b\x16\x39\x28\x37\x69\xb0\x62\x99\xa9\x49\x49\xe9\xec\x6b\x1f\xc0\xf9\xb4\xbc\x57\x77\x0e\xfb\xef\x7c\xba\xa6\x4b\xea\x97\x73\xf2\x35\x81\x5f\xb5\x6a\xca\xbf\x50\x02\x7f\xe9\x44\xa9\xd4\xc4\x34\x58\xe7\xa6\x70\xbe\x9d\xb1\xfd\x5e\x17\x52\x02\x77\x9e\xe1\x79\x29\xcd\xee\xfe\x58\x61\x81\x55\x54\x53\x07\xfa\xe0\x65\x1a\x3d\x26\x0a\x41\xf7\x12\xac\x6d\x31\x34\x0a\x36\x04\xfb\x62\x73\x88\x1b\xb6\x76\x3b\x2c\xc9\x0b\xb7\x26\x75\x95\xe5\x29\x83\x2e\xd9\x6b\x1e\xad\x40\xa8\x63\xee\xad\x83\xf6\xd3\xcd\x25\xe7\x63\xab\xea\x4d\x23\x02\xf2\x19\x1f\x6b\x9e\x59\xd6\xce\x8f\x42\xec\x43\x76\x82\x8f\xb1\x53\x7a\xfb\x5e\x2b\xc4\x3d\x94\x2c\xe2\xa4\x53\xfb\xc4\xf7\x51\x73\xfb\x6e\x2e\x4e\xed\xbc\x53\x93\xa5\x4a\x76\x72\x25\x42\x2c\xc8\xfa\xb8\x9b\x49\x57\x71\xae\x82\xaf\x9c\xe8\x42\xda\x32\xbb\x73\x07\xd1\x0e\x18\x29\x4a\x97\xde\x4a\xc0\xea\x3d\xa8\xe4\x79\xc6\x6f\xba\xd5\x01\xcf\x6f\x18\xa4\x6c\x64\xa1\xdb\x22\x63\x7c\x8b\xb9\x2d\xb1\xb7\x26\x95\x11\xb8\x6a\x0c\x04\x30\x3b\x45\x2a\x68\xb7\x96\x0d\xe6\xaf\x59\x0a\x91\x96\x0b\x7a\xcd\x90\xa7\xdb\x9c\xe8\x9e\x63\x94\xfc\xa0\xbc\x28\xc4\x49\x9c\x6a\xd3\x94\xbd\xe2\x6c\x9b\xe8\x5f\x5b\x25\x69\x31\x39\xd2\x29\x78\xb1\x92\x3b\xd6\x11\x96\x27\x62\x7b\x17\x7c\x8f\x11\xa9\x1a\xed\x9b\x37\xa5\x22\x94\xaa\xdd\xaa\x9b\xbc\x57\xff\x94\x19\x67\xcb\x24\x5c\xcc\x55\xc8\xb6\x66\xc0\x6e\x4e\x18\xed\xe3\x47\x83\x4a\x11\x62\x8f\x7d\xb5\xb4\xe1\xb0\xc0\x12\xff\xdc\xcd\x51\xab\xb2\xc4\xc9\x9d\x53\xa5\x97\xeb\x80\x85\x04\x5d\x81\x2f\x05\xe8\x88\xeb\xbd\xdc\x33\xf0\x6b\x43\xae\xa0\x67\xd5\x71\xa2\x7b\xae\xf5\xfa\x6e\x34\x7a\xd7\x3e\xec\x06\xd4\xdf\x5b\x18\x59\x0e\x17\xee\x33\x93\xc2\xdd\x07\x80\x35\x33\xf1\x07\x9b\xf4\xd1\xd0\xaf\x13\x11\xfb\x2c\x95\xdb\x79\xa8\x7c\x1c\xa5\x2a\x42\x8b\x52\x07\xb9\xf2\xe6\xe4\x53\x4a\x84\x0c\x32\x13\xd6\xe4\x99\x88\xa5\x14\x6d\x5c\x6a\x99\x65\xc2\xe0\x44\xe8\x5c\xd0\x94\x05\x2f\xa8\x0f\x79\xc1\xf5\x86\x14\xd2\x4d\x1c\xbd\xb7\xe0\xea\x14\xd8\xa7\x26\xd2\xdb\x25\xf3\x3a\xe9\xc2\x76\x2a\xfc\xd2\x6b\xdd\x19\x10\x14\x61\x74\x04\x80\x79\x10\xd6\xac\xb5\xd5\x75\x2d\x6d\x6b\x34\xf7\x76\x5c\x16\x3b\x2d\xae\xba\xfa\x94\xaa\x99\x72\x82\x43\x77\x63\x2e\xd9\x6d\x26\x90\x02\x9e\xbd\x97\xdc\x15\xd2\x37\x6c\xa4\x60\x2d\xd9\xb4\x8f\x5d\xb2\x61\xbe\xa7\x2b\xba\xe8\xb8\x83\x60\x17\x89\x67\xb9\x90\x8b\x6d\x94\x71\x6d\x4c\x3b\x4b\x57\xd8\x9c\x54\x25\x24\x72\xcf\xf0\x5a\x17\x61\xcb\x86\x68\x5c\x41\x6f\x28\x5b\x30\xc5\xb2\x54\xf0\x83\xba\x6d\xa1\x5d\xe4\xfb\x3a\x29\x1e\x3c\x4e\x13\x21\xb6\xb2\x07\xdc\x4d\xa4\xca\x2e\x5d\x4c\x45\x1a\x49\x95\x74\x70\xa7\x3d\x14\xb3\xc9\x22\x0b\xe9\xd5\xe3\x04\x78\x6b\x12\xe7\x1d\xd4\x7e\x08\x2a\x73\xda\x5b\x1d\x44\x50\x19\xbb\xd2\x57\x26\x4b\x15\x68\x25\x7b\x3b\x21\x73\xe5\x0d\x15\x1b\x73\xc5\x58\xdb\xbc\x94\x93\x07\x49\x08\x5f\x33\x91\xba\x6a\xfc\x99\xea\x1c\x15\xb3\x7b\xf9\xbc\x5b\x7e\xc8\x8e\x13\xc8\x18\x23\x25\x9d\xa7\xab\xc3\x4b\x95\x71\x4c\xa5\x89\x3f\x20\xf5\xb3\x7a\x6e\xed\x53\x43\xf6\x34\x43\x17\x12\xde\xc7\x33\x54\xe9\xef\x1b\x67\x98\x64\xc8\xbf\xc3\x09\x7e\x4a\x6c\x4e\x4d\x33\x49\x4b\x57\xdd\xe9\x44\x7e\x61\x4b\x2b\xb6\xde\x56\xcc\xe2\x1f\xaa\xa4\xd1\x5d\x4f\x21\x49\xfb\x5f\x39\x89\xcc\xdb\x6e\x13\x79\x1c\x49\xff\x27\xf7\x95\xf4\x1f\x98\x27\x48\x27\x9f\xd2\x7a\xe7\xa9\x84\xad\x8a\xfb\xd4\xca\x2d\x6b\x26\xd8\x93\x5c\x31\xb0\x7c\x07\x1d\xd2\x11\x4d\xeb\x02\xa7\xaa\x8b\x91\xd6\x73\x40\xe0\x1f\x9a\x80\x37\x5e\xd7\x03\x5c\x6a\x9b\xe1\x81\x27\x64\x3e\x4d\x5b\x9b\x41\xb4\x5d\x6a\xeb\x42\x53\x30\x77\x1a\x15\x0c\x49\x7e\xf8\x93\x62\x44\xf0\xff\xf9\x5f\xff\x3b\xff\x1d\x09\xbc\xf2\x57\x45\x25\x7e\x99\x31\x1f\x17\xa5\x51\x53\xd8\x5b\xed\x19\x1d\x2b\x49\x71\x1f\x1f\xd0\xd4\x86\x91\x01\x86\xfc\x80\xb2\xa8\x2e\x7f\x32\xfa\x6b\xa5\x06\xaf\x33\xbd\x18\x43\x18\xf6\xad\x68\x9c\x8b\xfe\xa0\x72\x1e\x7f\x3f\x61\x1e\xb3\x81\x11\xf9\x0d\x88\xa0\x84\x90\x06\x76\xde\x70\xb5\x6e\x17\xbf\x3d\xf8\xd8\x3e\x99\xc6\x03\x5e\x62\xb5\xc3\xc7\x23\x8d\xc1\x4e\x4f\x4d\x52\x0b\xf8\x84\x58\x6b\xa7\xbf\x58\xeb\x6c\x12\x8b\x93\x63\xad\xb3\x9d\x5c\x45\xcb\xa4\x12\x44\xfb\x80\xeb\x57\xad\x83\x68\x1b\x98\x99\xf3\x60\xc1\xd6\xa3\xbe\x83\xad\x73\xc6\xfc\x14\xa2\x7d\x45\x5c\x8f\xba\x44\x5c\xd7\x35\x4c\xf2\x81\x75\x2d\x2f\x7e\xcc\x78\xc5\x89\xcb\x02\x0f\x43\x26\xec\xbc\x57\x59\x19\x38\xe5\xa4\x64\xdd\xb5\xf1\x39\x5a\x58\x1a\xe1\xb7\x1d\x47\x3e\xaa\x13\x87\x9c\x2f\x8c\xee\x2b\x53\x3f\x52\x57\x93\xbb\x50\xbb\x67\x29\x3d\x76\x5d\x16\x7a\xd5\x2a\x8c\x6b\x72\x28\xd2\xfa\xc4\x07\xe4\x53\xea\x8e\xda\x35\xa5\xc6\xc7\xd8\x2b\xff\x12\xcc\xe0\xe0\xca\x74\xbb\xc3\x81\x07\x4c\xe7\x13\xd4\xea\x57\x3e\x8e\x83\xb8\x2d\x55\x71\xb4\xb1\x33\x44\xb5\x3a\xa4\x29\x67\x7f\xd1\x1b\x51\x5b\x16\x2a\x8c\xf9\xb1\xaf\x72\x26\x6e\xb6\x6e\x0e\xc0\x31\x56\xd8\x03\x4e\x1a\x54\x54\xda\xa9\x38\x2b\x8d\xe9\x8f\xed\x63\xd2\x6f\x45\x71\xc9\xdc\xe4\x5a\xa6\x17\x3a\x7e\x3d\x6b\x9c\xa6\xd3\x4c\x92\x6b\x36\xac\x53\x12\x8c\xc2\x42\xab\xe0\x51\x45\x83\x2b\xb6\x99\x85\x26\xbf\xc1\xc2\xdd\xa0\x12\x3a\x29\x57\x97\x72\x3a\xdf\xba\xe4\x41\xa8\xd2\xc4\x58\xd1\xa5\x4a\x2b\x7c\xa1\xff\x1e\x18\x3f\x04\xc9\xf3\xa3\x46\xe0\x56\xb4\xae\x96\xf8\x9f\xb1\xb3\x1d\x70\xaf\xbd\x35\xfe\x48\xe3\x92\x07\x4a\x8c\x2e\x8d\xbb\x50\x73\x12\x6a\xb6\x24\x77\x60\x4f\x4b\xea\x75\x2c\x4b\x57\xd5\xd2\x28\x37\x77\x91\xef\x13\x2f\xae\xe5\x72\x22\x88\x8e\xc3\xb7\x0b\x84\xa1\x76\xcc\x0f\x3b\xef\x48\x81\xca\xe3\xdd\x32\xe6\x0b\xba\x8b\x0f\x1d\x0e\x29\x36\x95\x57\x53\x26\x03\x77\x51\xb6\xcc\x6c\x4a\x04\x53\x78\x9f\x13\x30\x8f\x56\xa1\xcf\x9d\xbe\x2a\x07\x89\xa6\x21\x8e\xbb\x43\xd4\x9f\xf7\x66\x54\xec\x21\xd9\x58\xed\x8b\x7b\x49\xd2\x54\x0a\xd3\x2c\x64\x56\x28\xb1\x19\x45\xcd\x9e\xb7\xae\x08\x70\x86\x30\xd5\xb1\x83\xc6\x5a\x65\x45\x14\x72\xf1\x8e\x8a\xd8\xa0\x57\xcd\x49\xab\x7c\x2c\x9f\x08\x11\xd2\x65\x24\x08\x6f\xde\xd4\x06\xbe\x88\x93\x2e\x72\x3f\xae\x44\x18\xb9\x22\x0a\x3b\x31\xcc\xbe\xee\xff\x0d\x67\x2d\x9d\x61\x51\x33\x90\x5b\x48\xce\x9e\x54\xb9\xda\xab\x8d\x4e\xe1\x57\xee\xf2\xd8\x61\x6c\x73\x30\x7a\x85\x55\x2b\x8a\x7d\x4e\x35\xa7\x4c\x37\xa7\x55\x74\xd2\x17\x85\x14\x1f\x7b\x24\x56\x6d\x6e\x6b\xad\x69\xd5\xf9\x99\xbd\x1e\xf6\x46\x56\x3a\xf1\x67\x5e\xc7\x8e\x1f\xc3\xb3\x0e\x5f\xce\x3b\xa4\x05\xa5\x69\x7d\x1a\xcf\x58\x76\x1d\x68\x5f\x11\x81\xeb\x7c\xe5\xea\xfc\x4b\xb7\x44\xe0\xd3\xe9\x66\xdf\xf4\xb2\xb7\xad\x6a\x5e\x56\x07\x92\x79\x16\xa9\x3c\x9f\x44\x9e\x49\x1a\xcf\x22\x89\x12\x9d\xda\x10\xc4\x3a\xc9\xa7\x31\xc9\x37\x54\x2d\x51\x41\xdb\x50\xd9\x0e\xf2\x44\xc8\xed\x51\x89\x3b\x02\x86\xe4\x16\xa2\x74\x9f\x5a\xa6\x4c\xea\x4c\x80\x2b\x4e\x4a\x3f\x89\xe3\xf2\x91\xe9\xa7\x47\xb6\x3f\x86\xfa\x68\xff\xe3\xe9\x6a\x33\xf9\xfe\x45\x75\xc2\x81\x93\x43\xd9\x9b\x32\x18\x9e\x5d\xbd\x0c\x02\x28\x96\xd4\xf3\x48\xd0\x2a\xfe\xc5\x9e\x00\x8a\x08\x8a\x7d\xfe\xcd\x2a\x6e\x9a\x1c\xb0\x7c\x36\xb8\x3e\x0a\x1c\xca\x6b\xdf\x12\x77\xac\x87\xa6\x1b\x99\x54\x90\xed\x31\x08\x04\xcc\x23\xe7\x04\x8a\x9d\xea\xf8\x76\x6f\x3e\x6e\x71\xd2\x08\xcb\x3a\xad\xf2\x55\x03\xf1\x38\x0e\x7d\xc9\xce\x40\x1b\x61\x62\x9f\xae\x03\x5d\x67\x8d\x2d\xa9\x4f\xcc\x34\x29\x66\x57\xaa\xae\x94\xb9\x66\x0d\x5e\x14\x36\x68\x1b\xf9\x82\x9a\x9c\xf8\xc4\x15\xa6\x17\xb2\x9d\xc7\x6e\x32\xba\x67\xad\x43\x30\x58\xe2\x47\xa9\x3e\x55\x2e\x18\x2c\xb8\x82\x5f\xb2\x3f\xe3\x59\xac\xe8\x83\x8a\x6d\xea\xfb\x58\x97\x17\x5b\xf5\xe3\xb6\x99\xe7\x4d\xdb\xc7\x89\x78\x81\x5d\x22\xfe\x15\x91\xf0\xf0\x56\xee\x03\xec\xc8\xaf\xbb\xd8\x11\xb2\xc6\x37\xe3\x8e\x57\x7a\x05\xf5\xc4\xf2\x2b\xbd\x8a\x6b\x8c\x15\x56\x9a\x79\x7e\xd2\x4a\x75\xfb\x07\x5a\x69\x26\x5a\x36\xbf\xdc\xe7\xb9\x88\xd8\xc2\x9a\x8b\x2f\x4f\x5a\x78\x2e\x50\xf7\xc8\xea\xdb\xf0\xef\x7a\x89\xf6\x2c\xdf\xd1\xd7\x40\x20\x1f\x8d\xd7\xa8\x7d\x7f\x5e\xa3\x3d\xba\x0a\xb4\xf0\x19\x35\xea\x0d\xf3\x75\x1e\x76\xb4\x1f\x67\xd1\xf6\x23\x27\x2a\xe2\x64\x06\xdc\x74\x86\xc3\xdd\xad\x24\xeb\x22\x8c\x02\x17\xeb\x4d\xae\xb5\xd5\x9d\x50\x8c\xfd\x04\xc8\xa4\x89\x3b\x6a\x5c\x30\x3b\x4f\xa0\x5d\x09\x92\xb3\x26\x9d\x0f\xc2\xaf\x98\x78\x9e\xec\x9c\x33\xfb\x3f\xa8\x80\x94\x33\x2b\xa8\x9c\xe0\x34\x12\x2b\x42\x41\x28\x31\x21\x2d\x4b\xce\x01\x52\x39\x33\x16\x1d\x1e\x73\x21\x45\x8d\x9e\x8e\xaf\xb5\x33\x64\xbe\x4d\x07\x1f\xc7\x0e\x46\xfd\x73\x3c\x1c\x8d\x33\xfc\x1b\xeb\x47\xed\xe2\xdd\x68\xe4\xf4\xec\x6d\x7c\x1b\xed\x6e\xbe\x8d\xaf\x8b\x92\xf5\x69\x95\xcb\x6a\x8c\x0e\xf7\xec\xd1\xd8\x30\x93\x7b\xf4\x67\x34\xce\xf7\x66\x3c\x4d\x13\x60\x9f\xa6\xc0\x69\x50\xbf\x18\x0d\xf9\x30\x4b\x77\xb2\xc1\xb0\x75\xf6\xcb\x33\xd5\x39\xe9\x9d\xbb\x47\x35\x4e\xe1\xe4\x65\xb3\x6b\x6b\xe1\xc9\x3f\xc4\x79\xb6\xb5\xb6\x07\x40\x60\x75\x36\xd4\xd5\xfb\x9f\xe5\x21\xbc\x82\xf8\xb5\xaa\x33\x7a\x6f\x90\x7e\x85\x85\xbb\xe9\x5b\x61\x56\x80\xf4\xeb\x18\x9e\x1c\x6d\xc1\x23\x03\x52\xfe\x6a\x98\x23\x05\x04\x94\x48\xf5\x7d\x82\xbb\xe6\x3a\xff\xa5\xc1\xb3\x04\x40\xa8\x9a\x4c\xc2\x6d\x62\xaa\x17\x21\xcb\xe7\x52\xb2\x07\xb9\x85\x57\xa7\x8e\xcd\x11\xa4\xb6\x46\x9c\xa3\x19\x23\xda\x28\x34\x2b\x7b\xa8\xd5\x65\x76\x49\x99\x9a\x53\x45\x9e\xae\xc9\xf4\x19\x56\xf7\x9e\x07\xd5\x65\x7e\xf3\xfc\xf5\x5f\xfc\x27\xcf\x57\xed\x92\xa7\x1e\xaf\x80\xb2\xc1\x2a\x5f\x52\x52\x70\x3f\x41\x99\xac\x46\x51\xaf\xdd\xe4\x3b\x1a\x04\x70\x25\xff\xd4\xf7\xee\xe8\x21\x4e\xd8\x9f\x98\xf5\x67\x2b\x9c\x28\xe1\xf5\x41\x77\xea\xa7\x7f\xef\x5e\x7e\xbe\x1c\xad\x5b\xef\x94\x72\x70\x6e\xbc\xa0\xd6\x29\x4b\x73\xe1\x49\xa7\x67\xdb\x32\x8e\xba\xf9\xa0\x0c\xae\xc4\x9f\xe8\xb8\xee\xac\x23\x90\x9d\x77\x04\x32\xd2\x70\x1a\xe4\x91\x9d\x94\x55\x11\x0b\xd2\x14\x55\xc8\x4b\x13\x8a\x35\xd8\x3f\xdb\xe4\xfe\x6a\xce\xf9\xd5\xed\x5a\x55\x07\x60\x29\x37\x3e\xc9\xd6\xf5\x79\x78\xa8\xde\x60\x8e\x42\xa2\x53\xe4\x1d\x35\x24\xa7\x80\xdc\x50\x2e\x74\xc0\x5d\x01\x90\xda\x9b\xf5\x0e\xc1\x78\x83\xb9\x0e\xdc\x6f\x61\xad\xbd\x2f\x20\xee\xd2\x19\xb5\x04\xe1\x52\xdf\x25\xef\x06\x7e\x05\xa5\x61\x7d\x1c\x44\x26\x01\x7a\x36\x7a\x1e\xe7\x22\x0c\x0b\x7b\x50\xba\x1c\x51\x6e\xea\xa4\x22\x75\xf7\xa2\x0c\x14\x4a\x1b\x9a\x09\x94\x6e\x6f\xcd\xa8\xb5\xf3\x97\x52\xf1\x0b\x7d\x5d\x33\x7e\x61\xcb\x36\x59\xf7\x5b\xc3\xeb\x17\xb6\xe4\xd6\x2f\x6c\x69\x41\x85\xaf\x75\xc8\xa2\x5d\x05\xb0\xf4\xb8\x9f\xaa\xde\xc8\x86\xdf\xcb\x76\xaf\x93\xc4\xcc\xb3\x81\xf1\x6b\x44\xc2\x83\x09\xeb\xe6\xa9\x26\xe5\x17\xb6\x94\x5f\x41\x15\x85\x54\xa7\x5b\x1a\x48\x69\xea\xd4\x57\x69\xca\xe3\x36\x2e\x0d\x95\x7b\x53\x9a\x61\x47\x7b\x53\x07\x94\x6d\x08\x2e\xda\xb2\x40\x6c\xb2\x29\xb3\xf2\x71\xb5\x10\x0c\xfe\xfe\x68\xac\x51\xcd\xc6\xf6\xe6\xa6\xda\x3c\x4b\x15\x85\x7f\xd4\x61\xd5\x68\x76\x50\x6d\xd5\x6d\x89\x74\x54\x98\x11\xea\xe0\x52\x90\x23\x58\x40\xcc\xc2\xdd\xa4\x12\x64\x47\xfd\xe6\xcb\xbb\x06\x02\x5c\x7d\x42\xf3\x7a\x9c\x2c\xb4\x3c\x56\x04\xaf\x40\x1c\x74\x5a\xf4\x7a\x32\x91\xa0\xbc\x91\x33\xd9\xb6\x25\x2a\xdd\x68\x4b\xe5\x02\xf3\x91\xf6\x95\x6e\xb1\xa5\x8e\x2a\x6b\x59\x58\x49\x81\x80\x0a\x69\x04\x0a\x84\xd4\xcd\xb6\x72\x5e\x5a\x99\x5b\xa2\xd7\x2d\xa9\xf4\x19\xfa\x8d\x2c\xc4\xd5\xc4\xcf\xa5\xe3\x25\x84\xa8\xa1\xa6\x94\xbf\x4d\x4d\x4e\x0d\x5f\xbd\x23\xf1\x45\xef\x53\x1b\x44\x90\xff\xb3\x2c\xeb\x24\xe7\xaa\x6a\x2e\xd4\xcc\x7a\xee\x95\xad\xd4\x21\x75\x29\xbe\xa8\x7d\xa9\x96\xfa\x18\x89\x38\x7c\x2a\xde\xe2\x6f\x5a\x30\xb3\xe6\x40\xa7\x0e\x8e\x53\x05\x2c\xb3\x6b\xea\x2e\x9f\x76\xca\x3b\x69\x52\x1a\x66\x51\x7f\x59\x6f\x75\x2f\xa4\xfc\x5d\x14\x34\x67\x69\xcf\x9d\x27\x1c\x78\xf1\x9f\x01\x4b\x9d\x61\xe2\x6c\x77\x31\x49\x05\xb5\x25\x11\xee\x46\x12\x72\x5e\x39\x4e\x9f\x27\xa8\xa0\xca\x93\x63\x7e\xd7\xa2\x92\xe5\x9d\xde\x21\x9e\x25\xc5\xec\x5c\xe6\xfb\xc4\x15\x08\xe6\x55\xad\xff\xec\xf5\x42\x7b\x67\x2e\x9e\x3a\x1c\xd2\xdd\xe0\x50\xa4\x99\x93\x0b\x40\xa8\x00\x4d\xb5\x6c\x15\xe3\xcd\xc0\x88\xb8\xf6\x61\x45\xdf\x24\xe2\x04\xd7\x88\x13\x12\x28\xa9\xe8\x41\xda\x18\xf9\xc9\xab\x8b\xcf\x46\x4d\x2c\x50\xac\x35\x0d\xd9\x3a\x31\xf7\x66\xed\x2e\xfa\x79\x9c\xeb\x39\x17\x75\x2d\x27\x09\xca\x9d\x8a\xf9\xed\x48\xe8\xaa\x2a\x5f\x30\xb0\xec\x73\x8b\x6f\x8d\x81\x51\x1b\x91\x99\xa5\x52\xc5\x3e\xce\xf6\x1a\x39\xb5\xa8\xd9\xb1\xeb\xe3\xe3\x24\x2d\x99\x9c\x94\xbf\x49\xea\x92\x9e\xa3\xaf\x64\xa6\x82\xcc\x9c\x4a\x5d\xd2\x9b\xdb\xf2\x00\x7e\xf5\x79\x74\x4a\x88\x4e\xe2\x81\xd9\x40\x7b\xe2\x04\x54\x40\x7e\xe8\xd3\x1e\xc8\x8f\x4a\x5b\xde\x82\x00\x25\xd3\x3d\x8f\x06\x55\x74\xf3\xb8\xc8\xd0\xe9\x3e\xe9\x75\x9a\xfe\xf3\x8c\x06\xbb\x9d\xb9\x0c\x09\xf6\xdc\x30\xda\x2e\x1f\xba\x38\xde\xbb\xef\x6f\xdf\xde\x78\xff\xfc\x77\xb5\xaf\x7a\x3a\x4f\x38\x3b\x90\xcd\xae\xa2\x60\x1e\xc1\xee\x26\x39\x05\xd9\xb5\x1d\xaf\xf6\x3d\x93\x77\x92\x2a\x4d\x40\x36\xaa\x3a\xbd\xd3\xc9\x67\x81\x9b\xba\x1d\x15\x49\x77\x0e\xb0\xe5\x4c\xa8\x92\xf2\xa8\x92\xe8\x35\x79\x13\x8c\xaa\xc8\xc9\xcc\x4d\xae\x25\x51\x2e\x56\xc5\xfe\x43\x25\x7d\x4d\x2e\x7e\xc9\x0c\xfe\xcf\xff\xfa\xbf\x4f\x21\x7c\xd9\x8b\x5d\x7c\x3f\xd3\xf7\xb5\x8c\xb7\x24\x0e\xd7\xfc\x68\xfe\x0a\x23\xe7\xe5\xa3\xcb\x45\x74\x2a\x69\xd8\x36\x72\xa4\xe4\x5a\x32\x70\xce\x2f\x8c\x58\x7b\xcc\xce\x3b\xb2\x69\xfc\x53\x6c\xde\x7c\xd8\x53\xfb\xea\xed\xf5\x4f\x9f\x77\xf3\x6a\x5b\x5f\x4c\xea\x75\x16\x95\x86\xe3\x3a\x1b\x18\xa6\xfc\x61\xd2\xb4\xc6\x43\x26\x5e\xec\x98\xc0\x93\x13\xb1\x28\x37\x19\x2c\x3d\x3d\x39\x2d\x05\x26\xa3\x29\x87\x54\x93\x14\xc9\xa3\xe5\x86\x24\x47\x08\x5e\x32\x1f\xe4\xa1\x81\xe1\xd4\x4b\x29\xa5\xac\xd3\x2b\x7a\x5b\x7f\xb4\x5b\x2a\x10\xb4\xc7\x43\xdc\x5b\xf6\xc0\xc4\xb1\x58\x0d\xec\x6a\x90\x90\xb3\xb6\x35\x97\xea\x1e\x95\xc2\x01\x13\x84\x4d\x08\x83\x9a\x62\x2e\x40\xf3\x53\x9e\xde\xe6\xe0\x12\xd7\x4d\x0c\x5c\x2c\x2a\xde\x1a\x96\x31\xa8\x20\xc6\x15\x0f\x14\x46\x9c\x95\x02\xaa\x3d\xaa\xfc\x86\xb7\xbe\x78\x28\x9c\x38\x23\x6e\xcc\x38\x33\xa0\xce\x67\x51\xa8\xcf\x95\xd0\x82\xeb\xdc\x39\xc1\x2e\xe1\x6c\x5f\x34\x5b\xbb\xa2\x3f\x28\xc5\x16\xaf\x7f\xf2\xfe\xf5\xe2\x86\xb4\xf7\xce\x88\x73\x52\x95\xbc\x89\x51\x9a\xeb\x10\xa2\x84\xe9\xad\xfa\x43\x67\x26\x57\x77\x80\xf0\x9a\x04\x65\xa3\x72\x8c\x38\xd5\x31\xd1\xad\x4e\x57\x55\x54\x03\x0b\x88\x29\x36\x34\xcc\xf6\xa9\xec\x7e\x0d\xc8\x9b\x75\x43\xff\x00\x1c\xab\x05\x95\xab\x55\xa3\x56\xfb\xff\xb5\x24\x89\x45\x4a\x58\xe6\x83\x15\xa7\xb3\xc2\x5e\xd4\xff\xb5\xa3\x80\xc4\x67\x9d\x88\x92\xaf\xfd\x83\x1e\x08\xfe\x7e\x32\x3d\x5c\xfc\xfb\x2f\xf7\xe1\xae\xa4\xed\x4f\x8f\xd0\x51\x49\x67\x5a\xdd\x60\xfe\xb8\xbd\x93\x9a\xac\xe1\x6d\x2c\x88\x7a\x07\xa8\xd7\xd5\x07\xc4\xce\x77\x70\xaa\x09\xb1\x5e\x88\xac\x0c\x5b\xaa\x64\xab\x99\x69\xc4\x39\x7a\x8a\xf5\x82\xf3\xaf\xef\xcf\x97\x20\x0b\xa1\x34\xaf\xbc\x56\x3b\xcd\xaa\xce\x42\xae\x86\xae\xae\x50\xa5\xa2\xec\x02\x26\x90\x97\x96\xe4\xcd\xab\xb0\x6a\xfa\xca\x14\x84\x1d\x18\x24\xfe\xa1\xfa\x4a\x7e\xb6\xb9\x71\xd7\xcd\xf0\x0c\x65\x68\x73\x85\x5f\xaf\xae\xf8\x70\x57\xa3\x73\x56\xaf\x5c\x05\x97\x96\xba\xe3\xf6\x0b\x29\x94\xaf\x1d\x0e\x0c\x1a\x64\x60\x7d\x9e\xf6\xb4\x78\xec\x6a\x7c\x26\xba\x68\xeb\xea\xf4\x00\xcd\xc7\xa3\x30\x91\xaa\xfa\xd5\x1d\x9a\x57\x97\xb7\x6d\xed\xf3\x56\x46\xd2\x7c\x09\xa4\xf6\x9a\xa2\xee\x26\xfc\x8a\x5d\x69\x57\x7f\xa9\xc6\x2a\xdd\xbb\xac\x52\x10\x2f\xce\x13\x55\xb2\x55\xfa\x1f\x54\x4c\xf9\x2e\x08\x5f\xfd\xfb\xc9\xbf\xdf\xb6\x13\x53\xea\xdc\x50\x78\x12\x69\xca\x23\xd7\x25\x99\x88\xfe\xe3\xea\xd1\xda\xbc\x07\x92\x08\x2c\x59\xe8\x91\xd0\xd7\xaa\xff\xa4\xdc\xac\xec\x4d\x95\x61\xab\x94\xf0\x5b\xca\x31\x08\xfb\x37\xf8\x90\xd1\x98\xb6\x37\x1c\xed\x28\xf1\xfe\xff\xad\x05\x18\xd8\xee\x02\x64\xda\x24\x81\x3a\x9b\x68\x57\x6e\x11\x51\x06\xb8\x2f\x60\x83\x3a\x6c\x09\x58\x15\x91\x04\x74\x9e\x67\x34\x6f\x0c\xf6\x49\x28\x4c\x11\x52\x1c\xac\x53\x0e\x7e\x87\x5b\x83\x3d\x8f\x05\x66\xee\xf8\xc7\x97\xb4\x24\x67\xac\x4f\x77\x4b\x86\x43\xef\xbd\xaa\x89\x12\xe3\x4d\xba\x71\x1f\x9b\xe1\x1f\xcb\xa4\xf9\x8e\x62\x45\xd7\x8e\x84\x2b\x16\x6e\xd3\xcc\x38\x81\x47\x5d\x2c\xc8\x55\x8c\x9e\x2d\x12\xb2\x14\xd3\xb9\x68\xd4\x4a\x84\xa9\x3c\x86\x1d\x75\x7c\x2e\x9f\x15\x1c\xc7\xd8\x54\x27\x04\x3a\x2f\x90\xaa\x17\x66\x90\xee\xe0\x59\x8c\xc0\xa3\x5c\xdd\x80\xa9\xce\xf3\xf2\xb0\xdc\x60\x8f\xdf\x07\x4f\x5e\x3c\x9d\x55\xeb\xdd\x3d\x2c\xa2\x6d\x62\x28\x1b\x18\xff\x97\x1e\xa0\xac\x84\x97\x47\x7c\x5f\x3a\x86\x31\x3d\x21\xab\x8a\xbb\x9f\x7e\x29\x91\xf6\x2d\xae\x4e\x95\xa3\x3f\x09\x75\x4e\x93\x5c\x5e\x55\xcc\xaf\xe3\x67\x72\x6a\xc3\xf8\xc7\x21\xfb\x43\x25\xe1\x19\x18\xf6\x70\xf8\x1f\xf1\xb3\x0d\xd1\xb5\xef\xb2\x0f\x43\xd9\x87\xb3\xbb\x4d\x7e\x1f\xd2\xdf\x15\xf1\xc6\xad\xd5\x38\xeb\x12\x21\xc5\xe9\x3d\xb8\x59\x6a\x4c\xe9\xfa\x78\x30\x3a\x4a\xb6\xed\xf1\x60\xa4\x79\xc0\x06\xf3\x4d\x4a\x65\xa4\x84\x68\xa8\x63\xbd\x27\xcf\x61\x43\x13\x95\xd0\xff\x84\x97\xa9\x3b\x67\xf6\x1b\xed\xd6\xd8\x59\xe0\x36\x8e\x64\x8b\xdf\x60\x49\x80\x35\xe9\x2f\xdf\xc0\x28\x7f\xa2\x99\xf3\xa7\x78\xd2\x80\x80\x15\x46\x4e\xd9\x37\x17\x07\x75\xa1\xb5\x13\x6e\x71\x05\x8f\xaa\xfd\xc9\x67\x03\x83\xf9\x95\x92\x70\xce\xe2\x1b\xc3\xe5\x78\x68\xab\xd1\xdd\xe2\x5b\x30\x44\x96\x41\x9f\x14\xb5\x4f\xe9\x6b\xa3\x89\x37\xef\xc5\xd0\xe4\x8b\x0e\xfd\x16\x80\x5e\x9c\x98\xb2\xb5\x65\xe2\xa5\x41\xa9\x00\xb1\xb4\xed\x53\xf3\xb7\xf7\x86\x2f\x66\x1a\x87\xaf\xd3\x20\x90\xca\x87\x59\xeb\x8d\xa1\xfa\x32\xcb\x36\x9b\xe2\x64\x9b\xd2\x47\x1f\xb3\x0f\x17\x3e\x6f\x88\x42\xae\x12\x74\xf6\xb1\x32\x38\x9f\x01\x3a\x81\x74\x43\xba\xe7\xa3\x52\x47\xc6\x66\x31\xf8\xd8\x32\x03\x6c\xdd\x05\xf7\x6c\x26\x59\x64\x6e\x67\x71\xca\x55\x48\x08\x1c\xef\x6f\xf8\x3a\x5b\x5b\xe3\x41\xf9\xe5\xe5\xc5\xe8\xf2\xc3\x3f\x9f\x3c\xad\xe6\x97\x40\x68\x81\xd8\x56\x9a\xa9\x93\x15\x99\x91\x4e\x2a\x68\xa4\xeb\x02\x25\x62\x5a\x08\xf2\x49\xfa\xa2\x3e\xef\x54\xeb\x8a\x23\xbb\x90\x79\x91\x2b\x3a\x17\x1b\x19\x35\x14\x1b\xc9\x56\x17\x69\x72\xc1\xa8\xbf\x54\xd4\x57\x0e\xa9\x12\x06\x8e\xf7\x84\x8a\x9e\xe6\x6a\x01\xed\x0b\x7a\x74\x1a\xa0\x03\x01\x58\x46\xdb\x1d\x09\x4d\x9f\xac\x04\x4a\x0a\x1a\xf9\xd9\x5a\x06\xa5\xd9\xfa\x58\x29\x32\xdb\xd3\x86\x96\x04\xa3\x31\xef\xd1\xa8\x7d\xde\x23\xbd\xdc\x8d\x5d\xba\xd6\x49\x1c\x96\x0b\x1c\x9f\xbe\x15\x46\x26\xa5\x43\x65\x0f\x1e\xe1\x6e\xa7\x1e\x12\x1f\x26\x27\xf6\x61\x4a\x6c\xcb\x59\xa8\xd3\xe0\x3a\xab\x06\x1f\x0e\x8c\x4b\x82\xc3\x00\x6d\x59\x48\x20\xd1\x64\x39\xdd\x43\xfb\xdb\x49\x6d\x06\xa6\x62\xb4\x87\x96\x49\x9a\xe8\x85\xc9\xa9\xbe\xc1\x56\x93\x8d\x01\x7a\x13\x10\xf4\x52\x17\x08\x3b\x8b\x80\x80\xed\xf6\x5a\x0e\x9f\x16\xfb\x4e\xc8\x49\x22\x24\x74\xa0\x2a\xce\x97\x4e\x55\x9c\x2f\x8a\xaa\x38\x0f\x4d\x55\x3a\x64\x53\xeb\x4c\x55\xba\x6c\x45\x35\x55\x71\xce\xa0\x2a\xd3\x8c\xb3\xcb\xc7\x2a\xda\xe2\x54\xd1\x16\xf9\xed\x27\x68\x53\x01\x87\x02\xbd\x69\xa5\xea\x6e\x45\x7d\x9c\x3e\xa9\x4f\xc0\x84\x49\x72\x95\xc6\x6a\xa8\xd0\x6b\x26\x50\xb6\x24\xd9\x03\x0a\x33\xa7\x57\x4e\x2b\xde\x91\x0a\xa7\xc9\x58\x33\xf5\xe7\x31\xfd\xd7\x03\x93\xad\x6e\xd5\xcd\x1e\x9a\x6c\x55\x00\xfa\x7e\xc9\x56\x87\x0a\x40\x9d\xc9\x56\x97\xad\xa8\x26\x5b\xf6\xd9\x64\xcb\xae\x27\x5b\xf6\xe3\x21\x5b\xf6\x31\xb2\xd5\xc7\xc5\xb5\xfa\xae\xd9\xe3\xf5\xd5\x27\xa1\x78\xe8\xc8\x88\xdb\x9b\xe9\x9a\x3f\xfb\xa9\x5a\xd7\xdb\xf6\xbe\x0a\xf6\x13\x2e\x24\xa1\x54\xde\x71\x39\xba\x2f\xdf\xd6\x8a\x6d\xf5\x04\x25\x60\x82\xae\xa8\x4e\x22\x53\x76\x69\xc8\x2b\xf0\xca\x49\xe4\xca\x87\x2c\xae\x30\x41\x39\xc2\x01\xc2\x6a\x5a\x75\x05\x57\x76\x99\x56\xb0\x02\x8e\x70\x48\x50\xc4\x89\x87\x56\x2c\x44\x4b\x26\x36\x88\x53\x11\xc1\xfc\xb0\x8f\x70\xe0\xa1\x90\x28\x93\x05\x14\xa4\x0d\x54\xf4\x94\x44\x99\x53\x74\x2f\x19\x1a\x94\x82\x1c\x07\x01\x13\xd9\xac\xd6\x47\xcd\x76\x15\xeb\x88\x38\x41\x4f\x23\x7f\x8b\x7f\xfe\x23\x47\x39\x28\x27\x98\x5a\x9c\xf1\xf1\xac\x9d\x0d\xf2\x01\x60\x07\xe8\xf8\x78\x25\x6e\xa0\xf8\xdd\x57\x14\xa9\x47\x91\x9c\xe9\xe4\x38\x24\x52\x33\xf3\x57\x60\x54\xf8\x10\xfd\x8e\x81\xa1\x02\x27\x7f\xa3\xb0\xb8\x5f\x42\x2a\xd7\xa1\x9c\x47\xd0\x0e\xd3\xa4\x4e\x11\x0e\x10\xd9\x32\x41\xf7\x44\x51\x36\x0b\xbd\x5c\x21\xb1\x21\xa1\x84\x22\x0a\x58\xf2\x16\x73\xce\x5c\xaa\xb3\xa4\xc9\x96\x62\x23\x9b\x04\x82\x04\x02\x31\x68\xa3\xa0\x3b\x90\x7f\x06\x09\xb0\x65\x37\xf2\xdd\x4d\xc8\x82\x75\x4a\xb4\x91\x60\x12\xac\xfd\xd3\x6e\x8f\xf2\x2d\xe5\x5c\x15\xf6\x2c\x93\xef\xcc\xeb\xbb\xa5\xe0\xf5\x17\xa4\xaa\x1b\xc7\xb1\x46\x8d\x37\xa8\xfe\x8e\xc1\xbd\x1d\x85\xc6\x0b\xcf\xb1\x3b\x5b\x9c\x9f\x00\x0a\xd6\xd0\x80\x6e\xa3\x6d\x23\x7c\xb4\xdb\x4a\xad\x43\x50\x61\x1f\xdf\x5c\xe3\x43\xdb\x09\xdf\x33\x27\xfc\x8a\x54\x5f\x0c\x52\x95\xb7\xf2\x01\xf1\xea\x98\x50\xf1\x15\xaf\xbe\x18\xbc\x2a\x6f\xe5\x03\xe2\xd5\x11\xf9\xec\x2b\x5a\x7d\x31\x68\x55\xda\xc9\x3e\xb1\xaa\x51\x57\xd6\xb3\xea\x0b\xb6\xa9\x3f\xbd\x57\xbe\x98\xf0\xc3\xaa\xbf\xec\x37\xef\x7e\x19\xee\xdf\x2c\xab\x5d\x37\x74\x42\x20\x95\x8d\x69\x8f\x43\x8a\x03\xa1\x50\xe6\x3e\x1e\x37\x6b\xdf\xb2\xed\x13\xb7\x3e\xb5\xfe\x7f\x2a\xc3\x88\xf1\x5a\x1e\x94\x4a\xa9\xbc\x4a\xb1\xad\xbc\x8f\xd4\x3c\xb4\x31\xe4\xba\x4d\x47\x15\xd7\x86\x7c\x25\xdb\x00\x5a\xeb\x7f\x8a\x57\x08\xd5\x35\x7a\x2a\x5b\xa0\xab\x78\xe5\x27\x19\x4b\x5a\x54\xba\x6f\xd9\xb8\xb1\xca\x7d\xd5\x8c\x8f\xd9\x1c\xda\x8f\xdc\x54\xe1\xa3\xbe\x8f\x2d\x73\xaf\x4d\x7d\x73\xac\x6b\x7d\xb4\x3d\xdd\x66\xca\xd6\x34\x38\xc6\x35\x4e\x61\x77\xb8\xe3\x1e\x1a\xe0\x7b\xba\xa9\xa7\x9b\x09\xa8\xe1\xa4\xbc\x84\x7b\xcf\x59\xe7\x24\xbe\x3a\x65\x4f\x89\xec\xb6\xff\x33\x52\x7f\xe1\xfe\x7a\x56\xbe\x9e\x95\x3b\x3f\x2b\x3f\x26\x61\xdb\xe7\x1c\x97\x5c\x58\x78\x7a\x62\x74\xe7\x77\x73\x68\x6a\xef\x7e\x5f\xcf\xcd\xd7\x73\x73\xe7\xe7\xe6\xb9\xbe\x57\x9c\x75\x6c\xd2\xcb\x49\xf6\xd4\xa8\xae\xef\xe6\xd0\xd4\x5d\x6c\xbf\x9e\x99\xaf\x67\xa6\xeb\x99\x29\xf9\x83\xd8\x47\x6d\x1a\xe7\xde\x97\x72\xb1\x40\xfa\x64\x36\xa4\x7e\xac\x38\xd3\x8b\xda\x23\x0d\x27\x7e\x38\xd0\xbf\x6b\x8a\x4a\x1f\x3d\xd9\xaa\xf2\xfc\x06\x07\x5e\xf5\x5d\xab\x98\xe1\x4c\x8f\xa9\xdf\x7f\x1a\x54\xde\xc5\xd0\x8f\x54\x6c\xd0\x3b\xd9\x35\xba\xc0\x81\x87\x9e\xc7\x7e\xb8\xc7\xfd\xda\x4a\x48\x55\x0c\xfc\xc9\xd3\x08\x15\xad\x03\x73\xe2\x7e\xb4\x2e\xb8\x5c\xb7\x3c\x71\xed\xe9\x05\x6a\xb7\xd0\xea\x63\x52\xe5\xc3\xb6\x8b\x7c\x5f\x6d\x82\x91\x71\xca\x82\xa4\x19\x99\x92\xbf\x34\x10\x24\xdc\xab\xcd\xb1\x87\xc3\xe1\xa7\x66\x17\xb6\xda\x83\xd5\x0f\xe9\x3a\x9f\x78\xf5\x42\xbe\xfa\x20\x60\x7d\x11\xc1\x33\xa8\x5b\x0f\x84\x6c\x58\xf7\x66\xf1\x05\x50\xb8\x59\x23\x85\x9b\x9f\x4b\xe0\x7c\xb2\x12\x26\x78\x87\xb6\x25\x70\xf3\x1c\x7d\xab\x14\x11\xd4\xb9\x7f\x0f\x9a\xed\xe7\xc4\x65\x21\xce\x06\x9d\xf7\x4e\xde\xe6\x0f\x49\xdd\x8a\xab\x6c\x4f\xdb\x12\x9f\xdc\x9b\x0d\x15\xd9\x72\x47\xb3\xae\x47\xe6\x2b\xdd\xfa\x2d\xd2\xad\x79\xdd\x8b\xd9\x17\x40\xb6\x26\x8d\x64\x6b\x7a\x2e\xd9\xba\xa1\x62\x03\xb5\xf1\xdb\x52\xad\x69\x9e\x6a\x55\x1c\xe4\x17\xaa\x3a\xe2\xdd\x90\xa8\xe9\x43\x92\xa8\x4b\x1c\xae\x09\xba\x20\xd8\x23\x61\xff\xe4\x04\x25\x7b\xf1\x95\xb0\xdc\x09\x61\x69\xbf\x1d\xad\x36\x21\x66\x45\x49\xd8\xe5\x4a\x98\xd8\xa7\xeb\x80\x78\x28\x53\x67\xbf\xf9\x4a\x5b\x9b\xa6\xbe\x5e\x70\x1f\x0e\x8c\xf7\x6c\xbd\xf6\x09\x62\x21\x62\x62\x43\x42\x84\xd3\x82\xcf\x0f\x49\x68\xa7\x75\x2f\x26\x5f\x00\xa1\x1d\x35\x12\xda\x71\x2f\x84\xd6\x97\x04\x04\xe8\x4e\x49\xbd\x55\xa6\xb4\xe3\xa3\x94\x36\x4b\x8f\xee\x8c\xe2\x8e\xef\x8d\xe2\xb6\xed\xa5\x94\x6e\x36\x4f\x58\xba\x10\xee\x8a\xe3\x5c\x2f\x59\x2a\x37\xaf\xa5\x14\x53\x33\x21\x61\x99\xa9\xc4\x75\x2d\xbb\x53\xac\xde\x16\xdf\xb0\x18\x81\xd7\x72\x05\x2c\x12\x3e\xcd\x27\xa6\x7e\x82\xe4\x3b\xb1\xc1\x02\xad\x19\x81\x42\xdd\x18\x71\xe2\xb2\xc0\x43\xf2\x5b\xb4\x24\x2e\x8e\x38\x41\x54\xfc\xfc\x47\x8e\x42\x0c\x44\xc7\x67\xa5\x9c\x9d\xf7\x43\x9d\xbf\xca\xde\x5f\x8e\xec\x3d\x3e\x9a\x5a\xe0\x11\xb3\x84\x7a\x3b\x47\x1c\x29\x7d\x3e\x4b\xf0\x70\x78\x9d\x60\x74\x23\x3f\x70\x8e\xf2\x83\xe7\x38\xbc\x46\x4f\x55\x5f\x77\xc3\x0c\x9c\x87\x14\xbf\x93\xe5\xdd\x81\xec\xad\x33\xf6\x7f\x25\x2b\x5f\x06\x59\xa9\x4d\x0d\x60\xdf\x99\xa7\x61\x0e\x69\xaa\x1d\x0e\xff\x7f\xa7\x38\x1c\x3e\x9a\x3a\x64\x3f\x46\xff\x7c\xf6\xe1\x2f\x8b\x96\xf5\x31\x6a\x08\x5c\xba\x9a\xda\x98\xdb\x2b\xfd\x1c\x3d\xcd\x95\x29\xeb\x1c\x9d\x83\xf7\x4b\xac\x8a\xec\x81\xa4\x02\xd9\xeb\xdb\x3b\x26\xab\xe6\x26\xc4\x8c\x57\x23\xbb\x6e\x1b\xe0\x32\xfd\x48\x26\x0e\x99\x00\xa4\x70\x59\x75\xf0\x75\x07\x2a\xd5\x5e\xad\x5d\xb9\xf2\x06\x98\xdc\xf3\x76\x2a\x45\x6d\x27\x47\xe2\x33\x06\xbc\x8a\x96\xa6\x38\x63\xd0\x2c\x94\xb2\x85\xde\x4e\x9b\x8d\x4a\xac\x88\x3a\x41\xa1\xf4\xa8\x35\xed\x39\x3d\x0a\x2f\x83\xc8\xe0\x30\xce\x02\xff\x80\xc8\x9e\x84\xca\x75\x9c\x06\x10\x11\x97\xa0\x29\x0a\xf0\x3e\x0e\xa1\xd3\x75\x17\x90\xba\x13\xd6\x66\x24\x6f\x19\x12\x97\x3b\x7e\x95\xe9\x96\xae\xe0\x69\x66\xc6\x5f\x4f\xde\xf9\x27\xef\x31\xe0\xdc\x9a\xee\x89\xbc\xb6\xf9\x0c\xc2\x33\xc9\x76\xb7\xc1\x1c\x22\x1f\x3c\xc4\x56\x82\x04\xc8\x63\xd1\xd2\x27\x08\x73\x84\xd1\x0e\xaf\x09\x02\xac\xb0\xd0\x15\x0d\x5c\x22\x91\xf1\xa0\x83\x46\x39\x43\x6b\x9f\x2d\xb1\x0f\xc5\x66\xc9\x20\x7d\x47\xb7\x92\x3b\xe1\x40\x40\x38\xc4\x86\xf8\x3b\x1a\xac\x11\x96\x68\x1e\xa2\x6b\x42\x76\xf2\x53\x1a\xa2\x25\xc1\x21\x0d\xd6\xbc\x19\x9f\xfb\x67\xd1\x3d\x15\x1b\xcc\x77\x0a\x31\x13\x0f\xcd\x9c\x5f\xb2\xcb\x7f\x7d\xff\xf4\xd9\x37\x47\x63\x01\xce\x76\xcc\x4f\xd9\x76\xeb\x1c\x45\x35\xbe\x60\x47\x7a\xaa\xa2\x5f\x0a\xd6\x2d\x44\x07\xbd\x29\x27\xba\x7f\x49\x10\xb6\x23\x0d\xf9\xc8\x99\x4c\x9b\xa7\x69\x80\x4d\xad\xe3\x56\x4d\x2f\x55\xa6\xca\x1f\xe3\xdf\x27\xf5\xe6\x17\xf4\xc3\x97\xf1\xef\x93\x7a\x2b\x5c\x84\x9e\xeb\x9f\x27\xf5\xb5\xf4\x71\x0e\xd4\x4f\xe3\xdf\x27\xae\x33\xb8\xce\x2d\x33\xa8\xee\xab\x49\x50\xe9\x13\x1f\x50\xb6\x72\x52\xd2\xfc\x6d\xfa\xe4\xa4\x55\x16\xdc\xde\x5f\xea\x9f\x27\xf5\x55\x0e\x4b\xbd\x4a\x9f\x9c\x86\xb9\x25\xff\xe2\x1f\xd3\x27\x27\xe2\x5b\xc1\xf9\xf2\x79\xf2\xe0\xbe\x3c\x5a\xeb\x89\x98\x56\x97\x56\x92\x9a\x66\x22\x96\xb6\xcc\x13\xb1\x37\xea\xf9\x43\xd1\xb0\x1a\x1d\xf0\x9b\xcc\xa3\x93\x76\x31\x96\x64\xab\xbb\xef\xe3\x4c\xd4\x74\xdd\xc7\xf9\xa8\xe9\xba\xa7\xb3\x52\xd3\x7b\x3f\xe7\x26\xdb\x39\x40\x2a\x96\xd1\x1e\xe9\x81\xda\x30\xdf\x67\x37\xdd\x8f\x53\xdc\x2e\x7f\x98\x2e\xe0\x69\x5f\x67\x49\x3e\xd4\x09\xfa\x8d\x25\x76\xaf\xd7\x21\x8b\x02\xef\xdb\x3f\x38\x93\xa7\x4f\xe6\xf6\x7f\x43\x3b\xec\x79\x34\x58\x7f\x3b\x1a\xa6\x85\x16\xce\x38\x27\x34\xd8\x93\x50\xa8\x6d\xbb\xc3\x33\x73\x64\x98\xbe\xce\xcf\x91\x61\x7a\x3c\x4b\x47\x46\xea\xef\x5c\x1d\x19\xe8\x31\x1d\x2b\x4e\x3f\x77\x8b\x57\x8a\x45\x6d\xdd\x2e\x7f\xac\xd4\x79\x42\x57\xf4\x73\x35\xe7\xbb\x6b\x06\xa5\xaa\x04\x65\x90\x27\xfe\xdd\x79\x43\x33\x9d\xbc\x4e\x3c\x9c\x4e\x42\x8b\x2d\xf1\x68\x2e\xea\xfe\x55\xf2\xe0\x34\x61\xb6\xa0\xbd\xb8\x8c\x7f\xdf\x43\x48\xc2\xdd\x5d\xc1\x15\x5a\xf5\x77\xfd\xd6\xf9\xf7\x1e\xf6\xf6\x3d\xba\x5a\xbc\x1c\xfe\xfb\xd2\x3e\x47\x35\x9e\x24\x19\x3c\x52\x16\x47\xb9\xe5\xa7\x1d\xec\xb0\x4f\x84\x20\x99\x2a\x5c\xb2\xa3\xb7\xf1\xd3\xb8\x42\x2a\xe4\x54\x0d\xe9\x2e\x76\x04\x8a\xcb\x14\x6e\xb1\xf7\x7e\x43\xb6\x71\x10\xc5\x16\x7b\x48\xfd\x1e\x18\x4f\x5c\x97\x04\x02\x34\x44\x01\x89\x44\x88\x7d\x6e\x55\xd4\xa9\x4d\x35\x5a\xbd\x4e\x4d\x27\x45\x7e\x96\xe4\x57\x34\xde\xaa\x27\x48\x3f\x1a\x18\xea\x0f\xb4\x0a\xd9\x56\x3b\x3a\x5d\x60\xbe\xa1\xcf\x58\xb8\x43\x71\x4e\x65\x0b\xbd\x01\xed\xd6\x92\x85\x21\xbb\xd1\x89\x3a\xb0\x2f\x48\x18\x60\x95\xc8\x0c\x56\xa9\x14\x61\x30\x3f\xc4\x5d\x09\x80\xfb\x5c\xab\x4e\xaa\x96\x59\xeb\x77\x3a\xcd\x5a\x71\xad\xb1\xc2\xd8\x65\xc1\x2f\x1a\xcb\xf3\x89\xdb\x20\xef\x48\x48\xf8\x8e\x05\x90\x4e\xad\x5d\x31\xff\xbb\x39\xec\x0a\xa5\xfb\x3c\xeb\x8f\xa5\xe6\xe4\x0f\x3f\x39\xff\x78\xfa\xd3\xa4\x7d\xcd\xc9\xca\x03\x9f\xae\xa6\xc0\x5e\x9f\xb1\xdd\x01\xc5\x1a\xa4\x66\xfd\x7b\x83\x27\x8f\x92\x88\xd3\xa2\x86\x01\x83\xca\xb4\xa6\x08\x71\xc0\xa1\x82\x5e\x89\xfb\x92\xb9\x3b\x5f\xcc\xf1\xd0\x9c\x2d\xc6\x4b\x73\x31\x9c\x8e\xcc\x19\x9e\xad\xcc\xe5\x6a\xe8\x8e\xf1\x78\x38\x59\xcd\x47\x59\xa5\x76\x5c\xbb\xa8\xb2\x18\x60\xae\x76\x9f\xdc\xaf\x16\x9d\x57\xd6\xc1\xee\xc2\xdf\xfa\xc6\xe0\x7e\x8a\xe4\xe5\x3a\xf5\xe8\x6a\x65\xee\x29\xb9\x21\x0f\x5d\x2c\xef\xdf\xdf\xbd\xfe\xee\xf6\x07\xb2\x3f\x07\x8d\x33\xab\x31\x69\xc0\x49\x28\xe2\x14\xef\xb9\xe0\x5c\xba\x5a\xa1\x0f\xf0\x95\xa2\x57\x2f\x33\x9f\x76\xb6\x30\x1d\xc9\x96\xd2\xb2\xe1\x51\xcf\x8e\x0c\x8a\xff\xc2\x96\xb0\x6f\x19\xb5\xb8\xfc\xf5\x29\xad\x41\x19\x2f\xe7\x4d\xe0\x1f\xb4\xfb\x4b\x4f\x45\x38\xab\x2c\x41\x95\xe0\xf7\x88\x4f\x44\x45\xe9\xa5\x12\xf0\x9f\xeb\x0f\x7f\x1b\xb0\x8f\x97\xfd\x90\xa0\x4f\xf7\xdf\xdc\x93\x70\xc9\x78\xc9\xb2\x5a\xda\x84\xef\x3c\x2a\x7e\x1b\x1b\x40\xe4\x4a\xee\x0c\xf8\x35\x46\xed\x0e\xb6\x50\x25\x01\x0a\xba\x25\x1c\x61\x24\xe7\x8e\x6e\xa8\xef\x2b\x3b\xfc\x06\x4b\x21\x10\xb9\x2c\xda\xf9\x04\xdc\x59\xb9\x85\x5e\xd1\x80\x85\x48\xdc\x10\x7c\xcd\x91\x60\x08\xa3\x5f\xd8\x12\xf1\x1d\x71\xa5\x6c\x15\xf9\x42\xca\x60\x8a\xab\xca\xee\x8e\x18\x32\x8f\x1b\xe6\xb3\xa8\x94\xdc\xfb\x1a\xb1\xe7\x15\x0e\x0e\xe8\xd9\x06\x07\xeb\x86\x1b\xf8\x97\x84\x44\xb0\xec\xe7\xf0\xa8\x77\x24\xea\x5d\x2e\xc8\xec\x57\x9f\x72\x41\xbe\xd8\xa0\xf9\x4b\xb4\x5d\xb2\x07\x16\x11\xb6\xe1\xcc\xdf\xbd\x62\xd5\x57\x5b\x55\xfc\x54\x55\xed\xcf\xd4\xd5\x6d\x29\x39\xc0\xf2\x4a\xab\xae\xbb\x01\x8f\x25\x3a\x16\x4b\x0d\x17\x6a\xc2\x2a\x24\x4d\x19\x43\xe6\xfb\xa7\x38\x7c\xae\x6b\xc3\x1a\x7c\xe7\x53\x01\xdb\xd7\xa0\xbb\xd2\x47\x40\x55\x57\xcd\x9e\x00\x9f\xac\x49\x50\xf0\x4c\x35\x0a\x35\x57\x95\x2a\xae\xaf\xa2\xab\xca\xaf\x16\x9e\xc5\x35\x43\x8d\x86\xa2\xa7\x8e\xaa\x89\x2d\x37\x22\xad\x38\x9a\xaf\xc7\x1a\xbf\xce\x56\x44\xcd\x97\x64\x3d\x3a\xc2\x39\x65\x55\x8b\x77\x97\x4e\x45\x55\x4b\xb0\xa8\x79\x58\x5f\x54\x75\xd4\xb5\xa8\x6a\xc3\x5d\xab\xa2\x14\xaa\xd3\xb2\x14\x6a\x63\xbf\x7e\x5c\x3c\xae\xde\xdd\x38\x1d\xed\xd4\x22\xaf\x47\x09\xa8\x33\x18\x1d\x2b\xc6\x5a\x51\xc1\xb5\x95\xee\xfa\x9c\x7c\xf6\xed\xd5\xc9\x4f\x10\xe8\xc3\x41\x4f\xa2\x5d\xea\x9e\x67\xa8\x02\x7a\x8a\xc3\x4c\x12\xfa\x15\x0b\xd1\xcd\x86\x28\x7f\xbc\x2c\xf5\x40\xca\xa1\x4d\x25\xb9\x27\x81\x08\xb1\x9f\x69\x16\xfb\xea\xe1\x35\xb1\xd0\x4b\x88\x81\xc1\x08\xf8\x59\x88\x54\xc2\x57\x15\x3c\x13\x92\x5f\x23\x1a\x12\xc8\xa3\x0f\xa9\x34\x54\x5c\x9e\x14\x30\x38\x21\x6a\x50\x2c\x64\xd3\x25\xf1\x95\x46\x0a\xf0\x08\xc4\x8b\x1a\xfe\xf7\x68\xd8\x3b\x67\x41\x72\xa9\x8d\xc9\xb2\x7c\x78\x8c\x1c\x7f\x01\xbc\xbe\x8a\x2d\xdf\x1d\xdb\x7f\x60\x86\xef\x8c\xf9\x3b\xca\x7e\xbc\xe8\xdb\x93\xec\xfc\xa0\x9a\x13\x1c\xc6\x4a\x7b\x97\xf1\x1c\x6b\x55\x00\xad\xad\x35\x58\xd5\xe0\xff\x76\x32\xdc\xdd\xfe\x37\x04\x45\xfa\xbf\x75\x86\xf2\x47\xbd\x85\x4b\x1f\x9c\x23\x42\xcd\x49\xa7\xe7\x5e\x3c\x4c\x4f\x36\xef\xbd\xaf\x22\xae\x20\x49\xa2\x5d\xc8\x24\xe2\x83\x16\xdb\x3f\x20\xbe\x61\x37\x8a\x24\x52\x08\x39\x54\xce\xc9\x4b\x1c\x4a\x32\x8b\x68\xe0\xfa\x91\x07\x77\xba\xb8\xfc\x3e\x8b\x12\x6a\xbc\x64\xb7\x03\x84\x39\x8f\xe4\xad\x0f\xfc\xab\xe9\x67\x12\xbf\x74\x59\x20\x30\x0d\x48\x88\x88\x0f\xcb\x1a\x00\xb5\xa5\x1c\x79\x84\xab\x10\x6d\xc1\xd0\x92\x20\x80\x8a\xae\x8d\xf2\xec\xea\xca\x3a\xd9\x85\xac\xbf\xfc\xbe\x6d\xe2\x91\xee\x8e\x30\x37\xae\xfd\x5e\x2d\xda\xb0\x27\x00\xa2\x2e\xde\x57\x25\x8a\x00\x51\x76\x49\x37\xbf\x01\xaa\xf0\x23\x15\x9b\x67\x09\x58\xbe\x44\x02\xf1\x72\x85\x30\x82\x2b\xa5\x24\x08\x7b\xaa\xce\xb8\xee\xca\x65\x5e\xd6\x2a\x9e\x11\xfa\xd3\x05\x01\x1d\x91\xcc\x71\x80\xa8\x50\xba\x9e\x25\x94\x2c\x4a\x8e\xb6\x22\x02\xa1\x32\x94\x79\x34\x58\xd7\x74\x1f\x12\x37\xe7\x28\x9b\xa1\x17\xbe\xcf\x6e\x64\x43\x29\x34\xba\x11\x17\x6c\xab\xec\x87\xf4\xb3\x4a\xf0\xff\x7b\x21\x15\xed\xf0\xed\xb1\x50\x8d\x95\x4f\x6e\xe9\x92\xfa\x54\x5e\x53\x4f\x17\x23\xc0\x2b\x06\xaa\xc5\xde\x05\xc1\xb0\x33\x04\x63\xfa\x25\x8a\x11\x47\x21\xe7\xdc\x11\xe4\x14\x79\xd5\xa0\x1b\x7d\x81\x90\xbb\x7b\xfa\xfa\xbc\x28\x7a\x65\x85\x24\x8f\x6e\x49\xc0\x29\x0b\x78\x49\x54\xaa\x25\x68\x77\x7f\x68\x7d\xba\x27\x28\xda\x79\x58\x74\xf2\x61\x2b\x21\x5f\xda\xc5\x9d\xf3\xf9\xbb\x3f\xb6\xef\x00\x4f\x82\xf5\x6f\x04\x09\x03\xba\x95\xd7\x64\x25\x6a\x83\xcc\xef\x2a\xeb\xc6\xef\x86\x91\xb6\xd8\xd0\xc7\xc2\x45\xd3\x9b\xd8\x59\x4c\x54\x47\xa0\x7e\xf1\x67\x31\xda\xf6\x71\x08\x1f\xde\x3b\xb3\x08\x81\x1e\x95\x5c\x21\xdb\x79\xec\xe6\xa1\xfd\xb6\x5e\xcc\x0f\x17\x94\x7c\xb7\xae\x56\x6e\x31\xe5\x96\x37\x28\xfd\xd1\xd6\x15\x26\x5e\x64\x29\xa8\x7a\xbb\xf3\x09\x7a\x9e\xbc\xae\x3c\x32\x3b\x76\x43\x42\x93\x13\x5f\x5e\x39\x12\xd4\x53\x33\x90\xd8\xae\xde\x10\x0f\xfe\xc4\xa1\xbb\x79\x41\x89\x9f\xfe\xfa\x2e\xc0\x4b\x1f\xde\xb2\x40\x51\xce\x14\x63\xe3\x4e\xc0\x2e\x22\x1f\xc4\x7d\xbd\xd1\xeb\xfb\xa4\xab\xf6\xab\x83\xb0\x16\x46\xb1\xe5\xc0\xf0\x49\xb0\x16\x1b\xf9\xa9\x9d\x58\x7c\xe0\x6b\x1c\xd7\xc2\x92\x34\x63\xa8\x4a\xf0\xcb\xe7\xdb\x28\xed\xa6\x34\x5e\xd1\xfa\xd2\x64\x85\xb3\x63\xa3\x8d\x9a\x63\x0b\x8f\xc6\xd1\x71\x7a\x77\xbe\x57\xc1\x5b\xb9\x5f\xe8\x0a\x56\x86\xdc\x28\x0c\x49\x20\xfc\x03\x5a\x45\xfe\x8a\xfa\x3e\x97\x17\x44\x29\x43\x81\x4f\xed\xcf\x7f\xe4\x28\xc6\x0e\x14\x10\xe2\xf1\x82\xaa\xea\x6c\x07\x02\xdd\xb9\x94\xaf\x49\x29\x2e\x36\xc6\x3c\xf4\x8e\xe8\xf7\x9d\x1d\x06\x6a\x0b\xf5\x1d\x6b\x22\xd9\xe6\xc8\xa8\xb2\x96\x3e\x1c\xc2\x3b\xf7\x8d\xf1\x4e\x07\x94\x47\x25\xf3\x5e\x5b\xb4\x77\x8e\xd9\xea\xee\xd9\xef\x26\x46\xbb\x5c\xb5\x69\x7b\x38\xfc\x0f\xc9\x97\x89\x85\xde\x33\xb8\x5d\x84\xcc\x57\x25\xa1\x25\xb3\x96\x67\x02\x27\x67\x65\x80\xb0\xf7\x4b\xc4\x45\xc5\xdd\x84\x0a\x9e\xb9\x9b\xa0\x37\x01\x41\x37\xf8\x00\xce\x3a\xee\x86\x92\x3d\x41\x42\x17\x77\x8c\xa4\xa0\x81\x34\x02\xf7\x77\xd0\x00\x09\x6b\x4f\x1a\x88\xb1\x57\xfa\x9b\xdf\xf8\x69\xdb\xe2\xe0\xf0\xa6\xf9\xc4\x8d\x1a\x4e\x5c\xb6\x79\xaf\xa7\x6e\x74\xf2\xa9\xb3\x3b\x9c\x3a\xfb\x91\x9d\xba\x1f\x37\x04\x62\x21\x58\x88\x02\xa6\x4f\x4e\x8c\x95\x1b\xc8\xee\xa1\x76\x54\xb2\x1d\x79\x3c\x5c\x16\xac\xe8\x3a\x0a\xe5\xfe\x5a\xe8\xfd\x61\x47\x5d\x30\xbe\x40\x43\x25\x61\x81\xe9\x9b\x29\x73\x4c\xd2\x9c\x05\x2e\xc9\x1c\x55\xe8\x7b\xcb\x42\x79\xee\x70\x80\xec\x21\xd2\xb8\x75\xcf\x49\x3e\xe2\xf9\xf4\x27\xbb\xae\x58\x20\xe2\x38\xb8\x87\x15\x5f\xbf\x39\xac\x9f\x8c\x7f\x7c\x7b\x7b\x8e\xbf\x76\x76\x35\xc7\x82\x8d\x3a\x5d\xea\x75\x83\x8d\x5d\xfc\x3e\xa1\x8e\xd9\x40\x36\x95\xcf\xbf\xe2\x36\xab\xbb\xc9\xd6\xda\xbd\x62\x5b\x82\x76\x21\xe3\x44\x62\xe1\x4a\x85\x35\x48\xf4\x04\x1f\x8b\x38\x4f\xcd\x6b\x26\x50\x40\x5c\xc2\x39\x0e\xa9\x7f\x40\x5b\x12\x27\xa2\x09\x09\xf6\x68\xb0\x2e\x97\xdc\xad\x7c\x70\xd2\xa2\x9d\xca\x45\x17\xcb\x0d\xab\x88\xc0\xdf\xd8\xd2\xeb\x2b\x2d\x4f\x8c\x42\x84\xe6\x63\x5c\xf9\x3d\x92\xa6\xcc\xd1\xeb\x9b\x3a\x09\xec\x5e\x3f\x74\x14\xa4\xe7\xf1\xeb\x57\x6f\xde\xbe\xb9\x83\x1c\x44\x34\xf0\x69\x00\x88\x23\xc2\x88\x9c\x9d\x79\xc8\xc4\xbb\x9d\x4f\x4c\x7e\xe0\x90\x64\xac\xad\x06\x0b\x40\x9d\x6f\x9a\x97\xfe\x8e\xf6\x9b\x53\x6a\x95\x62\x08\xc5\x61\x47\x56\xd8\xcd\x04\x11\xca\x11\x5f\xe0\x2d\xf5\xab\xe7\xdd\x29\xb6\xaf\x17\xc5\xdf\x53\x9f\x06\xd7\xaf\xb0\x7b\x05\x53\x78\xc1\xe0\x8b\x2e\xe0\x5b\xca\x0e\xcc\x2d\x76\x6b\x40\xd8\x6e\x80\x33\xe1\x58\x39\xc8\xfd\x03\xf3\x8a\xac\x19\x41\x3f\xbc\xec\x08\x42\x2e\x9b\x99\x11\x2d\xa9\x99\x1a\xba\x3b\x13\x60\x99\xae\xef\x1f\x4c\xef\xd8\x92\x89\x0e\x95\x89\x01\x48\xa1\x6e\x94\x07\x51\x7d\x57\x67\x02\x28\xe9\xf8\xfe\xc1\xf3\xe6\xf6\xb0\x26\x01\xba\xc2\xd5\xe1\x5c\x0d\x30\x62\xd0\xd2\xe4\xb8\x1c\xaf\x77\xa4\xd3\x33\xa1\xa5\x7a\x37\x75\xef\xf7\x0f\xb2\x1f\x96\x51\x20\xa2\x8e\xd0\x8a\x74\xa3\x3c\xa0\xea\xbb\x3a\x13\x46\x49\xc7\xf7\x0f\x9e\x67\x38\x10\x38\x24\x7e\x87\xaa\xf9\x00\x21\x37\x6d\x57\x88\x67\x6e\xea\xf0\x4c\x38\x65\xfb\xbe\x7f\x50\x5d\x10\x7f\x4f\x04\x75\x31\x7a\x4d\x94\xc3\x7f\x07\x78\x6d\xe2\xc6\x66\x40\xa2\x52\xc8\xd7\xf1\xae\xcf\x84\x5c\x69\x80\xfb\x07\x9f\x24\x3d\x26\x27\x21\x5d\x75\xe5\x81\x99\x86\x79\xb0\x35\x77\x79\x26\xc8\x72\x9d\xdf\x3f\xb8\xb6\x2c\x60\x7c\x27\x27\xd8\x0d\x5a\x99\x76\x79\x60\x35\x76\x78\x26\xac\xb2\x7d\x9f\x0f\xaa\xfb\x33\x82\x66\x2e\x54\xfd\xdd\xd2\xd6\x91\x10\x24\x34\xb7\x24\x88\x1e\x3a\x75\xc5\xd5\xe8\xa7\x1f\xec\xcf\xdf\x55\xdf\xd2\x20\xeb\xf2\xa0\xf0\x4f\x37\x2b\xa8\x5e\xaa\xce\xce\x9c\xc5\xb6\xef\xe1\x0d\x7a\x25\x81\x70\xcf\x3a\xf1\x71\xb9\x59\x53\x43\xb5\x86\xaa\x36\x69\xe6\x26\x4e\x95\xa7\x68\xae\x40\x02\x2c\xad\x31\xe8\x6d\x57\xd5\xc6\x2c\x86\x7b\xbd\xf5\xb1\x4b\xea\x4b\x05\xe9\xbe\xa2\x52\x70\xa2\xea\x8c\xf2\xe3\xe5\xc9\xd2\xe4\xd7\x6d\xca\x8c\x55\x25\x6b\x87\x39\xa2\x37\x41\xaa\xd0\x69\xae\x5d\x74\x7c\xc4\x5c\xc7\xef\x6f\x58\x73\xc7\x05\xe8\x9c\x0e\xec\x17\x04\x8b\x28\x7c\x68\x70\xe7\x27\x73\x17\x70\x8d\xbb\xee\x0a\xd9\xc6\xc7\x35\xda\xbc\x6a\x05\x5f\xed\x19\xed\x76\x3c\x8f\x97\x54\x39\xd2\x76\x8f\xd7\x51\x7d\x31\x95\x36\x4b\x6a\xad\x45\x3c\x6e\x52\x4c\x09\xa6\x19\x52\x77\x63\xa6\x3c\xa4\x86\x80\xbe\xc6\x7b\xba\xc6\x69\xee\xa7\x77\xd4\xdd\xa0\x67\x99\x56\x5f\x69\xeb\x63\xa1\xad\xe5\x4f\x1a\x71\x53\x8e\x90\x2d\x7c\xd0\xc2\x82\x9b\xb1\xdb\xa6\xc6\xdc\xbc\x8d\x76\x36\x30\x58\x58\xb0\x91\xc6\x6e\x3f\x8a\xcc\x64\xcd\xac\x61\x88\x0f\x12\x2d\xe5\x9b\x81\x21\x69\xc5\xc0\x78\xbf\x09\x49\xf1\xbb\xd6\xe6\xd8\x6e\x1e\x3f\x65\x58\xd9\x71\x9d\xc1\x16\x62\xe4\xb8\x64\x8c\x3d\x4a\xd5\x5a\xbc\xfa\xca\x2e\xbf\xb2\xcb\xaf\xec\xf2\x9e\xd8\xe5\xa9\x7e\x0f\x2f\x03\xc4\x42\x8f\x84\x48\xb0\xa4\xd6\x08\x52\xcc\x06\x05\x29\xc7\xe4\x22\x24\x78\xab\xd2\x61\xe3\xc0\x43\x04\x73\xf0\x1a\x4a\x3f\x19\x20\xc9\x86\xd3\xf8\x7e\x8e\xf8\x86\x45\xbe\x07\x31\x64\xf2\xa2\x45\x3c\x95\x25\x60\xc7\x38\xa7\xe0\x35\xf1\xa3\xfc\x19\x30\x91\x3c\xd2\x45\x51\xd2\x86\xd7\x64\x27\x50\x40\xe4\xfd\x6c\x43\x90\x60\xbb\x73\x1d\x91\x32\x52\xc3\x16\x07\x07\x60\x1b\x25\x81\xe1\xe2\xb0\x63\x62\x03\x4a\x1e\x1f\xd5\x48\x0f\x90\x49\xe8\xa5\x6a\xfd\x55\x70\xb8\x47\xc1\xc1\x28\x24\x8d\x29\x30\x5f\x94\x65\xbd\x03\xe3\x05\x8b\x42\xf9\x8f\x64\x2a\x03\xe3\x8a\xde\xca\xff\x92\x3d\x09\x8c\x1c\x67\x3d\xce\x56\x4f\x63\x2f\x46\xd6\x11\xb7\x98\xd7\xa4\xf1\x64\x97\x33\x88\x3c\x76\x7e\xf4\x85\x6c\x4c\xcc\x9f\x8c\xac\xb3\x68\xa7\xad\x29\x3b\x8c\xf6\xbc\x35\x6f\xc4\xa6\x26\x01\xfa\x29\xfb\x72\x12\xb0\x8e\x89\x65\xef\x37\x04\xb1\x80\xa8\x0c\x2d\x1e\xf5\x82\x9f\xff\x28\xd0\x8a\x0a\x44\x83\x7b\x92\xa7\xde\x6f\x68\xb0\xfe\xdd\x61\x2f\xac\x3a\xef\x72\xd9\x09\x77\xcb\x6e\x97\x95\xdb\xd2\xf8\xf8\xab\x30\x76\x57\xc2\xd8\xfb\x0d\x09\x49\x26\xcb\x22\x54\x3b\x5c\xaa\x93\xa6\x65\x32\x89\xbe\x71\xed\x43\x95\x78\xfc\x87\x97\x03\xb4\x8c\x04\xa2\x02\x6a\xc7\x81\xcf\x29\xdd\xe2\x35\x0d\x08\x64\xff\x10\x91\x16\x5b\xa0\x73\x01\xff\xc5\x21\x41\x52\xfe\xc9\x8a\x78\x20\x0a\xc5\x5d\xab\xd1\x7a\x94\xb6\xa8\xcb\x82\xd3\xa5\xad\x97\x2e\x0b\xbe\x4a\x5b\x8f\x4d\x4d\xd3\x44\xab\xb4\xe5\xeb\x16\x36\x1e\x12\x77\x6b\x7f\x48\x85\x3a\x19\x8d\x04\xea\xff\x8a\xdf\xc8\xbd\x4a\x33\xdb\x50\x2e\x58\x78\x68\x98\xdb\xef\x51\x4b\x50\x02\x53\x5a\xa2\xac\x0c\xa6\xbb\xd2\x27\x94\x26\xb1\x25\x1e\xc5\xe6\x0e\x47\x9c\x34\x4e\xe4\xab\xf6\xe1\x8b\x60\x78\x2f\x15\xb7\x59\x45\x72\xd3\x06\x59\xdd\x03\xf0\xb9\x2d\xd6\x99\x86\xe5\xf6\x9f\x1d\x84\x94\xe1\x46\xaa\x12\x6b\x91\x13\x7d\xaf\xea\xb3\x96\x78\xd0\x03\xf3\x1c\xbd\xa2\x9c\x31\xbc\x16\xae\x8d\xe0\x79\xa8\x6d\x36\x2a\x1c\xd5\xe3\xfa\xb8\x5d\x04\x1e\x29\xea\x50\x81\xb6\xf8\x9a\x70\xc4\x49\xa0\xbc\xdc\xc9\xed\x2e\x24\x5c\x65\xe2\x80\xaf\x55\xb8\x0e\xc4\xc9\x0b\x16\xa4\x2a\x29\x0b\xbd\xd7\xc1\x6d\x37\x9b\x38\xbb\x64\xc5\x67\xc8\x67\xec\x9a\x23\x9f\x5e\x93\xa2\x1f\x7c\xd6\xe7\x7f\x97\x21\x60\x5c\x84\x2c\x57\xbd\xf1\x35\x13\xe4\xdb\x6c\x63\xa4\xea\x24\xe9\x08\xa1\xdc\xda\x38\x0a\x49\xe0\x91\x50\x67\x4c\x83\xa4\x6d\x50\x4a\xd8\xc7\x07\x16\x89\x38\xc7\xda\x8a\xde\x12\x0f\xed\x18\xa7\x90\x28\x09\x12\xc2\x69\x34\x83\x18\xa3\x40\x41\x89\x72\x44\x6e\x31\x84\x4e\x27\x55\xb3\x41\x22\xa4\x72\x5f\x60\x74\xec\x8a\x08\xfb\x3a\x72\x50\x0e\x09\xa3\xec\x76\xfe\x01\x32\x33\xe5\xc6\xa9\x08\x06\xb8\x47\xdf\xff\x0c\xce\xf7\xe7\x55\xa2\xaa\x82\x3f\xb0\x43\x09\xfd\xe5\xc3\x5f\x7e\xb5\x03\x76\x4e\x50\x92\x5e\x48\x35\x15\xbb\xd0\x2f\x9b\x49\x57\x45\x35\xf0\xb4\x10\x79\xb9\x08\xeb\x51\x22\xa6\xcb\x90\x2f\x43\x5c\x4c\xf6\x9c\x63\x5a\x55\xb9\x7b\xf5\x5e\x0b\xb6\xd6\x15\xd6\xe5\x4b\x1c\x52\xac\x85\xa4\x26\x21\x19\x3e\x9f\x00\x56\x0a\x8a\x7d\xfe\xcd\x06\x6f\x97\x51\xb8\x4e\x9d\x87\x3e\x1d\x67\x80\x8d\xb3\xcb\xd4\x57\x87\x32\x63\x6c\xcd\x5a\x4e\x45\x61\x26\x34\x68\x35\x8d\x4e\xa2\x85\x9e\x56\x29\xb5\x76\x6e\x3d\xa5\x72\x69\x15\xc5\xe2\x25\x49\xce\xd6\x9d\xaf\x83\x4d\xcb\xbe\x2e\x69\x70\x5d\x2d\xc4\x76\xeb\xe7\x82\x84\x75\x91\x4f\xe7\x87\x27\x89\x30\x3a\x9b\x42\xa9\x33\xd8\x1f\x71\x52\x31\x3b\x26\xb4\xa4\xda\x30\xfd\xa0\x84\xea\x72\x47\x9f\x3e\x1f\x8f\xce\x22\x54\x15\x8b\x2a\x10\xad\x97\xf0\x05\x7a\x9e\xfd\xe2\xbc\xf2\x0c\x55\x05\x0f\x8f\x1e\xa7\xaa\xfc\x45\x95\x73\xef\x40\xd7\x8a\x57\x3c\x08\xd1\xbb\x8c\x1f\x76\xa1\x41\x3b\x4c\x9b\x55\x0b\x95\x65\xad\x48\xae\x64\xd5\x7b\x12\x6e\x51\x31\xf3\x63\x7d\x4f\xd9\x56\x1f\xe2\xa4\xed\x6d\x6e\x13\x77\xbe\x90\x77\x51\x20\x85\x93\xff\xde\x69\x1d\x3f\xd5\xdc\xac\x1f\x62\x01\x97\x98\x0b\xf4\xc3\xce\xc3\xe2\x58\x7d\xe8\xec\x22\x62\x8f\x62\x48\x90\x6e\x0a\x1e\x2b\xab\x03\x76\x93\x11\xc3\x3f\x15\xef\xc6\x8f\xf5\x02\xf8\x24\x4e\x3f\x21\xe8\x7a\x23\xfc\x03\xf2\x28\xdf\xf9\xf8\x80\xae\xc9\xe1\x1b\xa0\x5c\x88\x06\x6a\xb1\x4a\xe8\x4d\x02\xed\x39\x21\x01\xc2\x22\x36\x0c\x23\xb6\x02\xa1\xf9\xec\x5b\x62\xf9\xbc\x9b\xda\xaf\xbc\x05\xd1\x42\x1f\x92\x4f\x7b\xa2\x5e\xd5\xe5\xe6\x1f\x07\x21\xd3\x55\x8a\xbf\xd2\xb2\xdf\x1d\x29\x38\x0d\x8f\x53\x0d\xe2\xa3\xc2\x63\x5d\xd9\xfa\x2b\x1e\x7f\xc5\xe3\x76\x78\xec\x25\x15\xca\x1f\x13\x1a\xab\xba\xe9\x5f\xb1\xf8\x2b\x16\xb7\xc3\x62\x29\x57\x3d\x36\x1c\x7e\x19\xac\xd8\x57\x0c\xfe\xfd\x61\xf0\xdd\xd8\x96\x40\x3a\xcf\x20\xa7\x72\x7b\x80\x5c\x37\x82\x21\x09\x68\x74\x43\x7c\x5f\xb9\x18\xe8\x6a\xe2\xba\x9a\x79\x52\xff\xea\xbe\x13\x71\x95\x8f\x54\x7f\xba\xa5\x5c\x82\xe5\x07\x55\x2a\xdd\xbc\xbd\x18\xde\x06\xfb\x9f\xce\x51\x2a\x65\x57\x53\xb8\x98\xfd\xe3\xea\xcd\x6b\x5d\xf7\xf3\xcb\xa8\xf2\x79\x3c\xf3\xb5\xfc\x75\xa5\xd4\x59\xf7\x57\x2d\xb6\x0a\xd6\xe6\x2a\x2a\xa7\x2a\xc8\x00\x1c\xd2\x48\xbd\x88\x7c\x1f\x3d\x67\x6e\xb4\x25\x0d\xa9\x68\xbe\xc0\x2d\xb8\x54\x65\x66\x1f\x7f\xfd\xb5\xcc\x7a\xfa\x23\x20\x40\x9a\x74\xf5\xd2\x07\xa5\x1f\xab\xd5\x53\x27\xf8\xe7\x1b\xe7\x1c\xfa\x91\x2e\x26\x5b\xdf\x2c\x9f\x1b\xa8\xa1\x74\x5a\xdb\x74\x7f\x76\x55\xa1\x92\x4c\x9a\x75\x34\xae\xc9\xb3\x9e\x41\xce\x2c\xdc\x83\x7c\xf1\xd6\x5b\x09\x62\x63\x60\x1c\xf4\xbf\xf0\x15\x14\x96\x49\x11\x57\x36\x7f\x26\x9f\x27\xb5\x5c\x0f\x04\x87\x49\x19\x4e\xf0\x91\x4a\x6c\x7d\x15\x88\xdd\x45\xdc\x7c\x8c\xcb\x7e\x45\x7d\xaf\x66\xd9\x4a\x08\x3e\xbe\xe6\x73\x88\x67\x06\xd1\x56\xd4\xf7\x4d\x00\x40\x11\xd5\x5e\xf8\x11\xf5\x90\x7e\xd5\x2b\xb6\x39\x93\xc7\x80\x5f\xf1\x9d\xf9\xee\xd0\xeb\x1e\xd7\xd9\x80\x50\x89\x8e\xeb\x3c\x9c\xea\xd1\xd3\xe6\x09\x94\x67\xd7\xa5\x02\xc1\xd5\x46\x95\xae\xc9\x67\x8f\x2e\x24\x86\x56\x8e\x32\x71\xa9\xc0\xea\x1a\x37\xf8\x96\xf0\x01\xba\xd9\x50\x77\x03\x92\xb5\x8b\x7d\x37\x92\x34\xda\x43\x4b\xcc\x89\x87\x58\x80\x42\x82\x7d\xf4\xfc\xcd\x2b\x29\x76\xf3\x28\x54\xb3\xd5\xdd\x27\x85\x5d\x31\x12\x37\xcc\xdc\x61\x1e\x7b\xc2\x7c\x8b\x56\x34\xd4\xf9\xab\xe5\x28\xd0\xfd\xce\xc7\x6e\x5c\x54\x50\x6c\x08\x0d\x55\xe7\x1e\xdb\x62\x1a\x70\xf4\x27\x9a\x89\x64\x73\xf1\x0e\xdc\x00\xd5\xf2\x70\xe0\x21\x85\x24\x30\x75\xea\x5e\xeb\x62\xb1\x7f\x1e\x20\x0e\x46\xef\xfc\x48\x2a\x7b\xb6\x2a\x79\xb6\xc5\xd7\x04\xc9\x99\xa3\x25\x53\x03\xa3\x5b\xe8\xf0\x90\x7e\xaf\xbd\x76\xe4\x3b\x3d\x8c\xfc\x40\x8d\xbd\x64\x51\xe0\x55\x94\x05\xba\x1b\xfa\xe2\xd3\x3d\x31\x93\xba\x1b\x19\xf2\x72\x29\xaf\x36\xba\xb2\x76\xef\xc4\xa5\xaf\x33\x27\xe8\x96\x70\x12\x52\xc2\xf3\x07\x70\x60\xdc\xbe\x80\x4b\x69\xc5\x51\xbc\x04\xcf\xde\x4f\x03\x43\xde\x57\xe5\x41\x34\x06\x22\x8c\x48\x8e\xa7\x25\xb9\xb5\xe5\x56\xf3\xb8\xab\x4a\x19\xee\x6e\xb6\x05\xaa\x25\xae\xf1\xae\x64\x41\x92\x04\x53\x61\xb4\x7a\xfb\x78\xf7\xa6\x91\x1e\x7e\x8f\x77\xfd\x88\x16\xf7\x28\x20\xa7\x6b\xef\x51\x3e\x66\x6b\x53\x45\xca\x3e\xb0\x7c\xfc\x6f\x2f\xf8\x6e\xb8\x75\x9e\x9c\x25\x1f\xa7\x8b\x29\x12\x13\xb6\x46\x57\xfa\xcd\x43\x5d\xed\x36\x04\xb7\x71\x30\xab\xd5\xa2\x2d\x23\x21\x58\x75\x1d\x7d\xf5\xaa\xb6\x90\x3f\x24\xdf\x67\x1e\xb1\x01\x59\xb9\xf0\x58\x24\x8c\x6c\x35\x7f\xad\x58\x0d\x92\x0a\xf9\x72\x04\x16\xb8\x3e\x75\xaf\x8d\xf6\x69\x20\xe2\x31\x92\xae\xf3\x43\xa5\x8b\x4b\x9e\x37\xe8\xf9\x7a\x5c\x2e\x09\xc3\xdc\x72\x13\x6b\xc8\x5d\x2c\x38\x33\x58\x6e\xc1\xea\x79\x0f\xda\xd6\xc8\xf7\xcd\x50\x92\xcb\xb6\xd8\x92\xc5\x48\x05\x39\x29\xf5\x6d\xa8\xc8\x86\x47\x5e\x68\xec\x6c\xb5\x21\xad\x7a\x7c\x8f\x69\xb5\x4e\xbc\x7b\x8f\xe5\xdd\xd1\x3e\x97\x83\x8f\x06\xe5\x6f\x7d\x7c\xa0\xc1\xda\x36\x06\xc9\x56\x95\x36\xa0\x1c\x49\x51\x88\xd3\xc8\xa2\xd2\x28\xdf\xad\xc4\x22\x1d\xc5\xe1\xe3\x83\x31\xa8\x0a\xe9\x00\x7a\xe3\xc6\xcc\x46\x22\x99\x20\xb7\x55\xd9\x86\x73\x73\xe8\x3b\x6c\xa3\x5e\x97\x24\xff\x5d\x49\xcc\x59\xfa\x84\x34\x91\xa1\x5d\x58\x8a\xf4\x72\x7d\x6a\xde\xd0\xc0\x63\x37\x46\xea\x3f\x9e\xad\x9f\x6b\x9f\x42\x77\xb4\x84\x03\x7e\xdf\x6f\x22\xb1\x8b\x44\xa6\xa6\x08\x3c\xfd\x2e\x0c\x59\x98\x39\x5d\x95\x31\xa3\x8f\x4c\x89\x95\xb2\xa0\xfe\x78\xf4\x96\x88\x90\xba\x0f\xed\x55\x39\xbc\x78\xbb\x9e\x39\xc2\x3e\x87\x41\xc7\x2b\x29\x70\xe7\x57\xf1\xe3\xce\xac\x59\x75\x68\xae\x43\x16\xed\xba\x70\x66\xd5\xae\xe1\x18\x94\xab\x1d\x14\x0d\x7f\x47\x6d\x7e\xa5\xf0\xb9\x7d\x6c\x71\xd3\x3d\xd8\x4e\x9b\xf3\xfe\x30\x57\x70\xbd\x25\xea\x72\x19\x7b\xbc\x41\x5d\x18\xae\x8a\xdc\xc1\x62\x38\xfa\xd3\x9a\x04\x24\x04\xf7\xb6\x20\x92\xe8\xc3\xff\x6c\x29\x73\xa8\x6a\x0b\xb6\x5b\x79\xc3\xdd\xe0\x20\xfe\x02\x4c\x59\x91\x40\x64\xbb\xdb\x60\x4e\xb9\xbc\x75\xc3\x7d\x1d\x0b\xdc\xe7\x2d\x33\x8b\x1c\x35\x38\x87\xbe\xd7\x2f\x7f\x67\x98\x87\xbe\x41\xad\x90\xef\x8e\x57\xf2\x1a\x10\xe2\xbc\xa5\x0c\x46\xc3\xe1\x23\x58\x8a\xbc\x4d\xba\x24\x10\x67\x2e\xc7\x73\xed\x13\x88\xc2\x11\x1d\xe4\x03\xe2\xea\x7b\xe6\xe1\xc6\xe8\x8c\xa3\x10\x99\xdb\xff\xef\xff\xf3\x08\xf6\xf7\x3d\xdb\xb2\x30\x54\x22\xd0\xc9\x6b\x99\x8d\xda\xad\xe5\x61\x68\xfe\x3b\xa2\x54\xa1\x9a\x4b\x67\x92\x5a\xf9\xd1\x76\x07\xca\xc5\xb5\x2a\x39\x46\x03\xfd\x11\x52\xc4\xd5\x42\x4f\x7c\x3f\x69\x07\xf1\xaf\x82\xc9\x86\x10\x19\x98\xfd\xd4\x42\x4f\x0f\x92\xf8\x0b\x1a\xac\xd1\x36\xf2\x05\x95\xcc\x24\x6e\x09\x9f\xeb\x9a\xc3\xf0\xb9\x4e\xaf\x05\x3a\xe0\x25\x41\x7b\xca\x23\xe0\x35\x85\x09\xdd\x01\xd7\x00\xa7\x8a\x3a\xae\xf1\x4c\xbf\xbc\x67\xae\x51\xef\x03\xd5\x01\x91\x5f\xea\x0e\x4e\xa7\xb8\xfd\x9c\xc6\x46\x37\xf1\x0e\xeb\xb9\x4a\xfb\x38\x79\x49\x3d\xf1\xc2\x46\x8f\xe1\x0e\x4b\xfa\x31\xed\xe3\xe4\x25\x8d\xfa\x5b\x52\x9d\xf3\x68\x27\xee\x18\x77\x71\xf2\x82\xc6\x8f\x8d\x2f\x56\xe9\x3c\x4e\xd8\xeb\x44\xc7\x71\x2a\x60\x26\xfd\xed\xb4\x5f\xa7\x56\x6a\xbd\x9c\xcb\xb8\x87\x93\x97\x33\xed\x6f\x39\xb5\xd1\xc0\x1d\x16\xf4\x36\xed\xe3\x74\xb6\xdf\xe7\x59\xac\xf7\x0b\x6a\x79\x12\x55\x07\xa7\xcb\x63\xfd\x2d\x66\xe9\xe3\xaa\x82\x83\x1d\x56\xf3\x34\xee\xe1\xe4\xe5\x2c\x1e\xaf\x3c\x26\x65\x2a\x10\x43\xcc\x2d\xf3\xe8\x8a\xca\xab\xf3\x0d\x0b\xaf\xc1\x5f\x4d\x8b\x4c\x2a\x91\x16\x67\x5b\xa2\x5e\x2d\x09\xa4\x69\x80\xeb\x36\x93\xa2\x11\xaf\x2e\x8c\x58\x18\xea\xbb\xac\x2b\xa9\x1e\x05\x1c\x4d\x71\xe0\x29\x53\x76\x04\x1e\xa8\x11\x27\x2a\x25\x2a\xde\xed\x7c\xea\xaa\x52\xb2\x90\xfc\x2f\x6e\x0a\xc2\xdf\x0d\x0b\x39\x41\x3c\xda\xed\x58\xa8\x4c\xcb\x3e\xe1\x1c\x45\x82\xfa\x54\x1c\xee\x40\x5a\x03\x80\xd6\x49\x6b\x57\xfa\xe5\x03\x48\x6b\x9a\x02\x81\xf6\x15\x7b\x8d\x8a\xd7\xe3\xc8\x9e\x4d\x55\x74\x0a\xaa\x3f\x79\x5c\x94\x35\x9b\xf0\xe8\x94\xe5\x3c\xed\x7d\x39\xfd\x6c\x53\x9c\x43\xfd\xf4\x95\x3d\x7b\x8c\xa2\x8e\x92\x02\x7f\x73\x98\xdc\xe7\xb2\x1e\x11\x46\xf7\x20\xb3\x3f\x0c\x1e\xdf\xb3\x7e\x1b\xd8\x15\x46\x1e\xe5\x50\xf6\x1e\x41\xeb\x34\xeb\x52\xc4\xe3\x1c\xe0\x89\x1a\x83\x72\x14\xb0\xc0\x24\xb7\x94\x0b\x12\x08\xc4\x42\x44\xc3\x90\xf8\x64\x8f\x03\x61\xa1\x97\xe2\xe7\x3f\x72\xf4\x4b\xc4\x05\xc2\x1c\xd1\xad\xe4\x80\x3a\x7c\x03\xd4\xe7\xaa\xb2\xb1\x7b\x8d\xd8\x4a\xe9\xd0\xe1\xb3\x42\xe5\x75\x78\x31\x40\x9c\x29\x6d\xfb\x01\x52\x8e\x2b\x47\x33\x1a\xac\x1b\xc6\x4f\x34\x29\x37\xb1\xea\x06\x58\xf1\x03\xe6\x43\xd2\x13\xea\xd1\x1a\x16\xf9\x82\xea\xea\x18\x49\x11\xf8\x07\xb6\x8d\xfd\xb8\x9d\xbe\xf8\x61\x3d\x7d\x79\x96\x6d\xac\x72\x5d\x45\x89\x26\xf3\x11\x4a\x3f\x6a\x90\x6c\xec\xd8\x6b\xa1\x12\x6a\xb1\x0b\x55\x9c\xaf\x28\xad\x2c\x92\x96\xf4\x18\x18\x2c\xb8\x52\xc5\x48\xe4\x14\xbe\xd3\xa9\xba\x9e\xa7\xa0\x07\x9b\xad\x6e\x6a\x67\xac\xb8\x71\x17\xfa\x59\xd7\x62\x22\x76\x45\x35\x91\xf6\x05\xe6\xce\xca\xf0\x10\xe2\xdd\x8e\x84\x08\x87\x2c\x0a\xc0\x37\x94\xba\x09\xd4\x40\xfc\x76\x43\x82\x41\x87\x89\x91\x4f\x39\x78\x69\xba\x1b\xe2\x5e\x2f\x19\xb8\x58\x06\x1e\x12\x21\x76\xaf\xe5\x17\xf2\xc4\xf3\x38\x93\x59\x48\xd8\xea\xdc\x7c\x0f\xb9\xbd\x04\x4f\x10\x13\xfb\x74\x1d\x90\x52\x34\x40\x25\xba\xa0\x42\x93\xd6\x62\x71\xec\xac\xa7\x13\x5e\x7c\xbb\xf2\xc9\xed\x7f\x03\x52\x47\x57\x87\x38\xf3\x23\x3c\xad\xce\xee\x74\xa7\xe8\x98\x5b\xd4\x23\x41\xce\x4e\xcc\xad\xd3\xae\xc7\x20\x33\xb7\xca\xba\x72\x7c\xd3\xc1\x65\x13\x12\x28\xc7\x40\xbd\x57\xaa\x71\xc9\x04\xb8\x14\xeb\x4f\x11\x0d\x90\x3c\x0c\x85\xfd\x79\x85\x83\x43\xc5\x16\xa5\x8f\xbb\xee\x92\x6e\xf9\x30\x54\x84\x8b\x90\x04\x6b\xe5\xac\x0e\x99\x1e\xab\xa0\x29\x19\x3f\x15\x3c\x36\xab\xef\x42\xc2\x49\x20\x74\xee\x98\x97\x20\x17\xfc\x1a\x51\xf7\x1a\xa4\x03\xb5\xa7\x31\x0c\x21\xcb\x62\xfe\x8b\x90\x6c\xd9\x9e\xc4\x5f\x58\x80\x83\x17\xec\x86\xec\x49\x38\x50\x99\x16\x93\x49\x2d\x89\xcb\xb6\xe0\xca\x7e\x43\xf0\x75\x20\xef\xe7\x20\xe8\xa4\xe9\xb6\x05\x63\x39\x8c\xb1\x50\x92\x02\x13\x25\x10\x46\x94\x43\x26\xfd\x1d\x0d\xe4\xc1\xa3\x01\x92\x2d\x6e\xf0\x61\xa0\x26\xa3\x68\x64\xf2\x39\xcc\xc8\xc5\x81\x1e\x1e\xe1\x00\x61\x6f\x4f\x02\xf0\x7d\x67\x2b\xc4\xdd\x90\xf9\xbe\x6c\x14\xed\x60\x81\x12\x46\x16\x7a\xe2\x83\x2c\x74\x64\x74\xbd\xc4\x34\x2d\xa6\x8b\xe1\x6d\xac\x88\xe0\x04\x87\xee\x66\xa0\x3b\x52\xbf\x94\xa4\x04\xd3\x22\x81\xa0\x21\xf1\x0f\x68\x8b\xf9\x75\x7e\x9c\x5e\x49\x76\x72\x78\x97\xb8\x14\x07\x5a\x7d\x78\xe1\xc3\xee\x7e\xab\xe0\x48\x17\x8f\x72\x0f\xb4\x38\x63\x03\xcf\x9f\xeb\xac\x71\xbc\x74\xba\x8b\x2f\xbb\x9e\xf1\x5c\xfb\xe3\x24\xf9\x8e\xd6\xfe\xfe\xb0\x2b\x52\x33\x78\x54\x5e\x6f\xfa\xb8\xeb\x4a\x75\xcb\x07\x5b\xe3\x95\xc0\x22\xe2\x85\x55\xea\x87\xe5\x75\x66\x5f\x74\x5d\x69\xd2\xb6\x57\x16\x7b\x2a\x29\x8f\xc9\x9e\xba\x13\x62\xe4\xb2\x90\x64\xa8\x8c\x94\x07\x57\xd8\x25\x42\xde\x1f\x35\x89\x29\xe7\xfc\x75\x59\xc0\x45\x18\xb9\x02\x68\x5e\x18\xca\x0b\xfa\x16\x2e\x70\xab\x1c\x67\x48\x4e\xbd\x26\xdf\xcf\x99\x1a\x79\x79\x50\x62\x29\x10\x54\xdf\x07\xfa\x94\xe1\xa6\x38\x26\x04\x59\xc7\xcc\xe1\xc0\xb0\xf2\x54\x20\x71\x9b\x4c\xe3\x7a\xee\xf9\x3e\x58\x85\x8d\xfd\xdd\x0e\x77\x78\x4d\x4c\x81\x97\x0f\xed\x2d\xf9\xcf\xab\x4d\xe0\x8b\xa7\xcf\xce\xb9\x11\xa6\x6b\x29\x30\x89\xb7\x78\x4d\xd0\x7b\x78\xd1\x99\x29\xc4\xfd\x55\x2a\x00\xa3\x8a\xd4\x93\xc9\xcb\xd6\x15\x5f\xde\xec\x49\xb8\xa7\x24\x75\x95\xa9\x53\x20\x9d\x5f\xd4\x27\x4d\x64\xd7\xc3\x60\xba\xcf\x0f\x24\xe4\x71\x62\x98\x7e\x7a\x7c\x4e\x76\x3e\x3b\x6c\xe3\x4a\xaf\x55\x9d\x9e\xa3\x16\x3b\x26\x7c\x24\x78\x64\x2a\xd7\x9a\x22\x3a\x5d\x29\x87\x9b\x18\xab\x1e\x19\x52\x1d\x43\x81\x63\xd8\x76\x3a\x64\x7b\xa7\x7d\xc9\x46\xf4\x4d\xef\x60\x2b\x1f\x96\xe0\xcd\x9f\xd2\x7f\xfe\xf4\x53\x54\x5d\x6e\xbe\x13\xc1\x8b\xf1\xb2\x4c\xf1\xd4\xcf\xee\x66\x3c\xe6\x5e\x9b\x7c\x87\xdd\xa6\x4c\x7e\x1b\xbb\x84\xd4\xf1\xe8\x89\x3e\x5c\xf1\x7f\xc9\x78\xb3\xf3\x79\x14\xfa\xec\x97\x41\xe6\x16\xc9\x41\x26\xd9\x0e\xe2\xac\xfc\xb0\x12\x39\x75\xa5\x96\x0e\xd0\x85\xdd\xa7\x0d\x36\xdd\x36\x13\xaf\x04\x09\x4d\xe2\x93\x6d\x55\x59\xeb\x14\x6a\x4a\x1d\xf1\x44\x7e\x8d\xbe\x4b\xbe\x7e\xa8\x9d\x4d\x88\x52\xf5\x16\x17\x69\x56\x55\x54\xd6\x32\xda\xee\x48\x68\xfa\x64\x25\x90\xc0\x6b\x44\xb9\x19\xaa\x74\xbf\x99\x71\xde\xa5\x4f\xba\x44\x7c\xe9\xfe\x36\xcc\xf7\xd9\x4d\x9a\x10\x2d\x60\x10\x63\x64\x8a\x10\x07\x5c\xee\x77\x66\x24\x67\x34\xc3\xc4\x73\x97\xf3\xc5\xdc\x59\x91\xe1\x62\xe9\x12\x32\x9c\xcf\x66\xd8\x25\x5e\x55\x98\xd7\x63\xc1\x62\xd0\x66\xb8\x6c\xbb\x65\x41\x1c\x25\xb0\xa1\xeb\x8d\x49\xb7\x3b\xec\x02\x64\x95\xda\x63\x89\xbd\x35\x01\x8b\x89\xdc\xaa\x30\x0d\x94\x17\x3e\x81\x60\x7d\x22\x85\x6e\xf9\xb5\x76\x62\x4d\x6b\x75\xe0\xdd\x8e\xe0\x30\x8e\x39\x50\x6a\xc3\x8d\xec\x93\x53\x8f\xc4\xaa\x1a\xe8\x68\xa0\xf4\xb8\xf9\xfa\xae\x3e\x85\x38\x7b\x1a\x20\x8f\x70\x97\x04\x9e\x94\xc7\x6f\x20\x7c\x59\x0e\x2c\x87\x04\xdc\xc6\x68\x89\xdd\xeb\xb5\x52\x20\xe3\x90\xa0\x0d\xc1\x7b\x1a\xbb\x66\xc0\xd4\xa0\x9a\x07\xbc\x82\x9d\xb5\xd0\x25\x03\x5b\xa4\x0e\xad\x28\x35\xe2\x1b\x16\x8a\xe4\xfd\x1d\x9d\x60\x08\xfc\xe6\x70\xfd\x4a\xdd\xc1\x9a\x0e\xb1\xba\xaa\x21\xed\xf8\xf5\xe0\x47\xb8\xe1\x1c\x05\xcc\x23\xb9\xa5\x21\x90\x1d\xb1\x4f\x3f\x67\x06\x2f\x9d\xcc\xaf\x44\xe1\x81\xdd\xa0\x62\xdd\xa8\xca\x73\xc7\x42\xb4\xc3\x42\x90\x10\x54\xa7\x2b\xcc\x85\x4a\xa0\xc1\x5d\x79\xae\xe4\x39\xc1\x9a\xe1\xc9\xd3\x2b\x1f\xb2\x95\x20\x01\xe2\xf8\x80\xb6\x0c\xea\x09\xe2\x00\xdd\xb0\xd0\xe3\xf2\xad\x85\x5e\x40\x8f\x40\x4e\xe4\x81\x54\x16\xe1\x20\x63\xba\x55\x28\x93\xb9\xf0\x2b\xb2\xb3\x45\x7f\x22\xd6\xda\x1a\x20\xd7\xa7\xf2\xa9\x47\x04\xa6\x3e\x74\xf5\x67\xc9\x7a\x75\x33\x85\x69\x4a\xe5\xa9\xab\xde\x68\xb2\x05\x78\x91\x25\x38\x71\xc1\xc3\x24\x63\x38\x39\x10\x1e\x3b\xbf\xaf\x69\x90\x2c\x53\xf1\xf5\xbb\xa4\x00\x4a\x5b\x73\x9c\x83\xbb\xa7\x56\x3e\xf8\x7a\xee\x1f\xed\xb9\x4f\xc6\x3f\x1a\x9f\xad\xd3\x50\xe7\x73\xb4\xfa\x34\xc8\xee\xd0\xcb\x15\x3a\xb0\x08\xdd\x50\xbe\x39\x67\xac\xd4\x4f\x87\x45\x42\x55\x75\x97\xa3\x25\x87\xb4\x71\x0e\xaf\x19\x7a\x47\xd6\x21\x11\x55\x61\x02\x8f\x84\xcc\x41\x69\x79\x7d\xec\x54\x69\xab\x98\x4e\x28\xbb\x04\x68\xec\xc8\x2d\x50\x0c\x75\xfe\x07\x31\x01\xfa\x85\x2d\x93\x96\x5a\xae\x91\x8f\xf2\x04\x49\x81\x92\x83\xb6\x52\x80\x7c\x14\x37\x59\xb3\xb8\x5a\x59\x7a\x5b\xb0\xd0\x53\xfd\x3d\x44\x80\xfa\x37\xf8\xc0\xe3\x7c\x46\x7a\x88\x15\x0e\xb5\xe4\x45\x02\x2f\x9d\x55\xdc\xfe\x35\x43\xf1\x3d\x00\xa8\xdf\x9a\x95\xc5\x35\x98\x86\x9e\xd8\x03\xfa\xa8\xa4\xc4\xaf\xc7\x8b\x79\xc8\xd6\x21\xe1\x1c\x14\xaf\x0f\x9c\x7a\xf0\xa5\xf7\xfc\xbb\xbf\xdc\xbc\x39\xeb\x6a\x9e\x5d\x4e\x91\x29\xe8\x77\xe8\xe9\x49\x66\x2a\x9d\x3f\x56\x65\xfb\x12\x8c\xf9\x82\x26\x9e\x65\x21\x03\x8f\x83\xc2\xd3\x5c\x89\xad\x09\xfa\x06\xd9\x93\x5a\x16\x12\x4f\xbc\x38\x6a\xfc\xbc\xe0\xfe\x99\xd4\xdf\x91\xdf\xc6\x19\x81\x86\xd6\x28\xf1\x96\xdb\xe2\x5b\x43\xc7\x40\x15\x59\x90\xfc\xec\x3e\xd4\x79\x99\xad\xa8\x09\x53\xcb\xee\xc8\xe9\xc1\x6a\x27\x57\x84\x6c\xe0\xcf\xf7\xb7\xff\x1d\x71\x80\x06\x2b\x76\x2e\x02\x14\x90\xa0\xc6\x7d\xb3\xd6\xa7\xb3\xb5\x9b\xe7\x97\x0b\x65\x1d\xf0\xf7\x15\xd0\x77\x0d\xe8\xa2\x68\xf6\x15\xd0\x77\x04\xe8\x54\x2e\x7d\x2c\x70\xbe\x2b\x56\xe3\x6b\xbb\x4b\x2d\xa3\x81\x8c\x8d\x2a\x87\xff\xbd\x17\xbd\x67\x01\x31\xc5\x86\x86\x4d\x0e\xfc\xe7\xe3\x90\x93\xc7\x21\xc8\x46\xf6\xd1\xb1\x07\x46\x10\x6d\x49\x88\x05\x93\xb2\x91\x81\xbe\x81\xd4\x64\xf6\xc0\xf0\x48\xc0\xb6\x34\x50\x2f\x3e\x55\xa7\xa3\x3a\x57\x4e\x71\x12\x64\x4b\xa7\xb3\x23\xa1\x4b\x02\x81\x75\xe2\xef\x56\xe8\x67\x68\x8f\x91\x42\xf3\xbe\xd3\x57\xdd\xdf\xe5\xea\x4b\x49\xd2\x2e\xcf\xd5\x73\xb8\xaa\xf1\x2f\x21\x4d\x7b\x96\x26\xf4\x7a\x5d\xba\x3d\x98\x02\xaf\x1f\xf8\xae\xf4\xf6\xe0\x6f\x9f\xff\x73\xf4\xf6\xcc\xbb\x92\x5e\x4b\x99\x5a\xde\x1e\xd0\x7b\xf9\xe2\x88\xef\xad\x3d\xc8\xf5\xd2\xd6\x5b\xf5\x2e\x36\x5b\x4d\xa2\xbf\x9d\x56\x1e\x52\xe6\x92\xdd\x3e\xf0\x56\xdb\xc4\x7b\x6d\xff\x78\xf9\x97\x73\xb6\x3a\xb3\x98\xa2\x53\x85\xf2\x2e\x7d\x2a\xdf\x1c\x77\xb4\xce\x02\x25\xa6\x12\xea\xd9\x7b\x12\x6e\x25\x1b\xf0\xb1\x4b\x36\xcc\x8f\xab\x67\x97\x3d\xe7\xe2\x8f\x73\xf9\x28\xf5\x2c\xc4\x86\x06\x6b\x6e\x59\x56\x45\x42\xc2\x7b\x52\x6f\xbd\xdf\x24\x1e\xb7\x4b\x76\x9b\x51\xa6\x83\x47\x1d\x64\xa3\x2e\x44\x5d\xe0\x58\xef\x4f\x83\x5d\x24\x2c\xf4\xc4\x17\x1b\x16\xad\x37\xda\x33\x37\x5e\x2f\xda\x61\xce\x55\xe6\x6b\xaa\x7b\xdb\x46\x02\x2f\x7d\x82\x42\xb2\x22\x21\x09\x5c\x32\x40\x34\x10\x24\x0c\x74\x19\x4e\x05\x13\xd9\x96\x72\xe4\x91\x25\x8b\x02\x97\x78\x69\xd4\x97\x60\x68\x17\x92\xbd\x9c\xdd\x8e\x09\x12\x08\xaa\xb4\xf1\xb7\x3b\x12\x70\x15\x26\xed\x11\x65\x2d\xf0\xc8\x8e\x40\xb6\xec\x20\x3b\xa5\x55\xc8\xb6\x28\x24\x72\x91\x91\xca\x74\x83\x83\x03\x82\x64\xd1\xaa\xd4\x7f\xc4\x49\x88\xc4\x61\x57\x36\xe3\xd5\x01\x2f\x24\x2a\xf2\x0c\x2c\xfb\xb1\xd5\xa0\x12\xa0\x7a\x5e\x2b\x12\x72\x14\x49\x69\x2c\x09\x42\x49\x27\x98\x40\x06\x45\x81\xa0\xca\x99\x10\xe6\xb4\xc5\x81\xca\xb0\x03\xc9\x36\xe5\x54\x7f\xfe\x59\x63\xd1\xcf\x3f\x1b\x5a\x57\xa7\x21\xa5\x6d\x1a\xd8\xdd\x50\xb2\x27\x1e\x5a\x1e\x40\x43\xa8\x3c\xbe\xb5\xe6\x36\x20\xb7\xb1\xbd\x24\x99\x2d\x0e\x33\xb3\xc5\x81\x87\x22\x0e\x57\x15\x55\xe3\x88\x84\xb0\xc2\xd8\x91\x12\xc2\xdb\x55\xc3\xd4\x08\x8b\x23\xc1\xb6\x58\x50\x17\x5c\xd6\xc1\xac\xbb\x63\x9c\xd3\xa5\xdf\xab\x51\x24\x3d\x95\xa6\x9c\x30\x76\x4b\xc6\xd0\xf4\x94\xa3\x67\xf1\x17\x3d\x9f\x76\x29\xa4\xee\xa2\x6c\x22\xeb\xda\xa3\xef\x34\x1e\x7d\x70\x9f\x4a\xd6\xf1\x50\x74\xe0\x2a\x45\xd9\x5d\xc8\xf6\xd4\x83\x70\x29\x94\xae\x51\x3e\x06\x7a\xaf\x9d\x66\x45\xc8\x14\x7e\xd2\x20\x80\xd4\x53\x40\x0c\xe2\xa3\x1a\x50\x97\x28\x07\x5c\x2a\x0a\x88\x0e\x63\xd0\x40\xb0\x24\x09\x21\xdf\x61\x97\xf0\x01\xe2\x91\xbb\x91\xe7\x30\x5f\x69\x6e\x43\xb0\xf7\x90\x5a\xe8\x14\x2b\x7a\x64\xb6\x02\x0b\x6e\x4a\xc2\x63\xc6\x69\xea\x1f\x94\xe7\xfe\xe3\xf5\xf8\x62\x19\xd9\x67\x65\xf9\x2e\xad\xa9\xa9\x18\x8e\xe0\xe8\x3d\xdd\x12\x74\xa5\x56\xff\xc0\x55\x71\x2a\xb6\xa3\x90\xc4\xbe\x2a\x69\xbd\x6c\x45\xdd\x4c\x92\xd4\xde\x52\xd4\xb7\x20\x81\x25\x60\x03\x05\x09\x69\x7c\x85\x69\x02\x37\xba\xa0\xeb\xcd\x37\x97\xec\x46\x11\x47\xdd\xe8\x3e\x14\x03\xb0\x6b\x28\xd5\x2a\x55\x6c\x9e\x93\xdd\x3c\xd8\xbb\x23\x57\xb9\xd3\x36\x4f\xc7\x3f\x4b\x48\xc4\x5b\x57\x5b\xc1\xa7\xa3\xd2\xec\xd1\x2d\xf2\x92\xdd\x9c\xb2\xc6\xfb\x53\x09\x64\x19\xd1\x65\x52\x62\x86\x27\x8e\x5e\x21\x59\xb1\x50\x45\xeb\x72\x10\xd7\x90\x02\x42\xf2\x5d\xc4\x09\xc4\x7f\x04\x1c\x8c\xce\x3e\x0d\x08\x0e\xd1\x3a\xc4\x1e\xb8\x80\x68\xcf\x2f\x5d\x52\x85\xfc\x1a\x61\x3f\x16\x7e\x5c\x1c\xec\x71\x5c\x47\x46\x85\x86\xa8\xf2\x2a\x3e\x0b\x41\x3a\x0d\x38\x15\x87\x58\xb0\x4b\x7a\xc4\x22\x76\x07\x93\x83\xea\x90\x7f\xec\x86\x8c\xc7\x93\x92\x8c\xcc\x67\x52\xe6\x92\x3d\x32\x1e\x2f\x4a\xa7\x61\x94\xec\x10\x6f\x09\x3a\x98\xf8\x56\x4a\xbb\x50\x7b\xa6\xa5\xd0\x99\xc9\x81\x20\x18\x5a\x87\x04\x0b\x44\x56\x2b\xe2\xea\x95\x2a\x38\xe9\xe1\x92\xe8\xbc\x03\x84\xa7\xe8\xc4\x0a\xb9\x61\xe5\xea\x86\xa6\x3d\x1c\xfe\xc7\x43\xb2\xd9\x22\x86\xf7\xc7\x6d\xe1\xd6\x61\xba\x2c\x58\xd1\x75\x14\x6a\xcc\x7c\xd8\xc4\x04\xdf\xfd\xc0\xff\xf2\xf4\x5f\xec\x1c\x7e\x5b\xb5\xaa\x02\xe5\x7f\x2f\x3f\x19\xa0\x67\xf9\x6f\x8e\x0b\xc2\x58\x88\x90\x2e\x23\x41\xb8\x82\x5d\x4a\x6c\xd2\x37\xc6\x20\xcd\xab\xaf\xa8\x4d\xe6\x9d\x44\x8f\x52\x27\x5d\x64\xdb\xde\xd1\xab\x02\x5a\x3d\x23\xd8\x03\xa3\xd4\x87\xe1\xfb\x77\xdf\x8c\xe9\xb4\x12\xa5\x0c\x28\x8a\x64\x0c\x8c\x90\xdd\x1c\xfd\xab\xcb\xb7\xf1\x5f\x9d\x70\x56\xe9\x0f\x2a\x91\xb5\x0a\x3b\xc7\x03\xc3\xa7\x5c\x14\x51\x91\xb3\x28\x74\x49\x46\x1c\xdb\xb0\x50\x5c\x52\xae\x0a\x32\x55\xf5\x92\x6c\x9f\x8e\x76\xb4\x17\x83\x8f\x86\x2a\xff\xa2\xef\x67\xd5\x27\x23\xc3\xee\x55\xb9\xbd\xd8\x7d\xa9\xae\xc0\x73\xd5\xc7\x97\x38\x58\x47\x4a\x75\xdf\xae\xc1\x73\xc2\xdd\x90\xee\x72\x41\x54\xad\x38\x71\xe5\x32\x97\xcc\x53\x42\xe9\xc7\x8f\xc6\x35\x81\xe4\x04\x50\x03\xc2\xb7\x02\x58\x45\x0d\x51\xc8\x4e\xae\xb9\x98\xb4\x48\x4c\x3c\x36\xd4\xfb\x70\x86\xf1\x08\xc6\xc0\x88\xc7\xa8\xad\xf4\xdc\xae\x1b\x1f\x43\x3d\xbc\x73\xbb\xf1\x08\x77\x1b\xbb\x39\x0a\x6f\x67\x98\x21\x54\xb9\x37\xf6\xa2\xee\xcd\xdd\xa8\xef\xe4\x99\x88\xd3\x25\xd1\xf0\x80\x3c\xc2\xe9\x3a\x48\x9c\xdd\xb7\x34\xa0\x5b\xec\x23\xbc\x65\x91\x8a\x69\x5d\x42\x69\xbb\x54\xe2\xb9\xa5\x5b\xfa\x59\x49\x3d\x34\xbc\x8b\x54\x80\xfa\xcc\xc3\x2d\xba\xf2\xcc\xa3\x2b\xfd\xee\xb1\x55\x80\x52\xb3\x93\xa7\xbc\x52\x24\xef\xa6\x2d\x4a\x4d\x9b\x2d\xb5\x46\x65\xa5\x51\xa2\x2d\x52\xe6\x51\x94\x29\x39\x74\x44\x89\xd4\xee\x0e\x53\xaa\xe7\x54\xb6\xae\xe5\x6b\x3b\xc9\x09\xaf\xa8\x2f\x48\x48\xbc\xab\x84\xfc\x0e\x0c\x1f\x52\x59\xc4\x77\x8e\x5c\x7d\x9b\xb4\xb4\xd3\xa2\x88\x3b\x6d\x3b\xad\x21\xd5\x2d\xd9\x44\xb9\xeb\xd6\xec\x62\xd6\x9e\x5d\x9c\xc0\x34\x4e\x64\x1d\xf7\xc1\x40\x66\xe7\x31\x90\x56\x6c\xa4\x91\x7c\xdb\xf3\x6e\xcc\xa4\x7d\x67\x2d\x58\x4a\xfb\xce\x8e\x32\x96\x96\xec\xc5\x9e\xd7\xb2\x97\x59\x03\x7b\x69\xd8\x80\x7a\x52\x48\xb6\x3b\x71\x30\xb7\x84\x73\x8d\x61\x75\x4e\x08\x95\xc9\x09\x73\xad\x81\x90\x96\x5d\xbc\x5f\x61\xe1\x6e\x48\x75\x26\x78\xd4\x90\xb6\x30\xdf\xb7\xc2\xbf\x6c\xbf\xbb\x90\x79\x91\x2b\x24\x13\x13\xee\x06\x1d\x58\x14\xa2\x5f\x23\x12\x96\xb8\x57\x6b\xb8\x7f\xfa\x2f\xf5\xb2\x92\x5c\x3e\x8c\x3a\x44\x33\x78\x38\x92\x5c\x47\x77\xe4\xf5\xe3\x10\x77\x97\x7b\xa2\x3f\xd6\x42\x40\xaa\x75\xbf\x03\xae\xce\xc2\xf8\x62\x95\xe8\x02\x2b\xf8\xbb\xfe\x0a\x3d\x8b\xbf\xea\x2a\xe4\x0f\x0c\x39\x52\x7c\x75\xd2\x3f\x9f\x27\x81\x7e\x99\x4b\x00\x0b\x45\x9e\xb6\x0f\xd2\x17\x49\xfb\xdc\xd3\x6c\x37\x6d\x39\xc1\xa4\xdb\xc5\xa1\xae\x0b\x39\xbc\xb9\x4c\xc8\xea\x2e\x64\xb0\xf5\x46\x03\x45\x7d\xad\x5f\x35\xef\xdb\x69\x43\x67\x6e\xf4\x8a\x2e\x02\xfb\x76\x6a\x66\x92\x72\xa5\xf6\xb3\xb9\x3b\x16\x35\x79\x88\x3b\x8e\x3d\xed\xe5\x8e\x93\xeb\xe6\xf4\x3b\x4e\xae\x9b\xf3\xef\x38\xf6\xb4\x96\x09\x4d\xee\xf7\x8e\xb3\x51\xe1\xbd\x8a\x36\x64\x6c\xd4\xa9\xa1\x32\x6e\x56\x48\xb2\x93\x20\x79\x21\xc1\x0e\xb9\x15\x11\xf6\x0b\xa9\x82\x96\x11\xf5\x21\x6a\xb8\xba\x2f\x9f\x06\xd7\xa6\x60\x85\xbe\x62\x7d\x50\x52\x4c\x1c\xe1\x9d\x3c\x4b\x21\xc5\x82\x28\x6e\x84\x00\x42\x6d\x1d\x0a\x28\x47\x3e\xc1\xfb\x44\x0d\x1d\xcf\x10\x40\xe5\x13\xce\x07\x28\x24\xfe\x41\xce\x93\x05\x50\x9a\x4d\x97\xf4\xd1\xee\x16\x90\x97\x0c\xc2\xa6\x75\x0c\x74\x1c\x4d\xb4\xc4\xee\x35\x8a\x76\x68\x4f\xb1\x8a\xf6\x61\x91\x20\x21\xfa\x93\xfc\xad\xd7\xf6\xe7\xfe\x19\x84\x4a\x2b\xa4\xeb\x33\x95\x39\xc3\xab\xf4\x75\xdf\x2c\xa1\xa4\x9e\x3c\x97\x35\x00\x31\xe4\x22\xa4\xbb\xea\xec\x9c\x55\x54\x69\x74\x3e\x9f\x18\x3d\x1c\x9f\x68\x1a\x3a\x26\x53\x67\x31\x86\xae\x44\x7e\xf4\x20\x44\x7e\xdc\x0f\x91\x1f\x77\x21\xf2\x8d\x5a\xc2\x36\xf3\x07\x41\x9a\xf9\x10\xaa\xaa\x0b\x29\xd5\xcc\xa5\x07\x4e\x31\xae\xe5\x14\xa3\xfb\xe5\x14\x17\x35\x9c\x02\x0b\x21\x6f\x13\x5c\xd3\x4a\xcc\xd1\xca\x27\xb7\x54\x7e\x84\x79\xea\xa3\x04\x31\xe7\x90\xd5\x2d\x24\x98\xb3\x60\x50\xc3\x0b\x84\x15\xdf\x46\x12\x56\xe0\x31\xc2\x21\x1d\xb8\x66\x4a\x2a\x7a\x5c\x45\x8c\xd7\xf5\x92\xcf\xfc\xa6\xa3\x32\xe3\x54\xe5\x9c\x6d\x89\xf2\x4c\xf3\x08\xa7\xa1\xb2\xf5\x81\x9e\x2f\x29\xcf\x96\xc4\x71\xee\x48\x08\x6e\x6d\xa1\xd7\x3f\x05\xdf\xe1\x35\x0d\xea\xad\x4b\xe8\x6d\xe6\x7d\x3d\x0d\xcf\xf4\x52\x41\xc8\xe9\x67\xf9\xcf\x4e\x5f\x40\xb5\xfb\x35\x0b\xd6\x31\x9d\x9e\x68\x9a\xec\x46\x61\x48\x02\xf1\x36\x71\xa0\xef\xca\x32\x32\x2c\xc1\x19\xd8\x43\xf0\xf2\x56\x43\x18\x10\x5e\xbf\x62\xac\xd2\x53\xac\x8a\x18\xd9\x5d\xb4\x41\x39\xe1\xb7\x90\x3a\x2b\xeb\xfa\xff\x0e\x07\xd5\x75\x73\xaa\xe5\xe7\x67\x54\x54\x97\x40\xaa\xfe\x1c\x2a\xae\x74\xf8\xfe\x2d\xdb\x45\x3e\xae\x90\xce\x9b\x1a\x7d\x1f\xb2\x1b\x51\x8c\x29\xef\x4a\xe9\xed\x46\x4a\x1f\x02\x94\x1a\x35\x4e\x47\xb5\x4d\x75\x64\xda\xc9\x90\xc6\x78\x9c\x46\x7d\x4e\x9b\x8e\x5c\xaa\x44\x8b\xb3\x3b\xe2\x6a\x07\x7b\xe8\x69\x97\xd9\xdb\x53\xba\x9b\x0d\x8c\x15\x0b\xb7\x58\x98\x99\xb0\x14\xbd\x7b\xd9\x71\xd6\x1a\x1d\xd4\x3e\x0a\x26\xb0\x8a\x8f\xf9\x74\x9c\x8b\x36\x33\x1d\xa7\x96\xe9\xd8\x39\x1a\x87\x1a\xd5\x5f\x8a\xc8\xa9\x73\x5f\x1b\xa1\x14\xe0\x52\xbb\x3c\x59\xac\x65\xc6\x47\xd2\x50\x64\xda\xfe\x60\x5d\x59\x48\x9e\x67\x94\xee\x0c\x08\xf2\x0a\x80\xca\x77\xd9\x19\x0e\x87\xa6\x33\xb4\xab\xaa\x08\x36\xaf\x33\x9d\xaf\xa9\xcb\x3d\x37\x1d\x0c\x8d\x2f\x43\xe5\x69\x16\x0a\xfe\x44\x18\x79\xa3\xc2\xff\xf9\x5f\xff\xbb\xf0\x21\x09\xbc\xf2\x67\x88\xad\x92\x0e\x73\x54\x3d\x6b\x24\xe8\x10\xca\x84\x1a\xc4\xd5\x21\xc4\x78\x90\x7d\x8c\x6b\xa9\x32\x23\xb3\x78\xf9\x01\x65\x51\xad\xcb\xe1\x5f\x51\x5b\xa9\xf9\xd8\x54\x02\x72\x2b\x1a\xa7\xa2\x3f\xa8\x9c\xc6\xdf\x3b\x4f\x23\xc9\xe8\x58\xb3\xeb\x8a\xd1\xd5\xe4\x54\xa9\x80\xf5\xf1\x03\x58\x6b\x03\xbd\x13\xd9\x2e\x95\x33\xa0\x0c\x1a\x47\x3e\xbd\x26\x48\x5e\x4f\x68\xb0\xfe\x56\xfb\xaa\xb7\xbe\xba\xab\xaa\x2e\x44\x20\x9c\xbd\xa4\xb7\xba\xa3\xa7\x13\x19\xa8\x39\x68\x2f\x1b\x15\xe2\xa0\xed\xad\xca\x0c\x6b\xa1\x37\x81\x7f\x40\x58\xb9\xdb\xcb\xc3\x1c\xa3\x5f\xec\x87\x0f\x59\x3c\xf6\x98\xfa\xaa\x64\xdb\x7b\x79\xe7\x57\x42\x8e\xca\xea\x11\x67\x00\x91\x53\x65\x2b\x9d\x0f\x89\x72\x55\xc5\x42\xf9\xf6\xf3\x0d\xbb\x81\x64\x67\x1b\xea\x6e\x10\xf7\xa9\x0b\xe9\xd2\xa8\x20\x5b\xf8\x54\xf7\xe7\xab\x2f\xdb\xfa\x98\x41\xd2\x91\x18\xe0\xa9\x20\x4d\x6e\x95\x66\x79\x45\x43\xae\x2b\xc8\x61\x2e\xb2\x8a\x90\x3f\xad\x58\x88\x7e\x89\xb6\x90\x10\x59\x3b\xd9\x41\x96\x24\x88\x7b\x96\x2d\x92\xb4\x24\x12\x25\xff\x2c\x05\x70\x55\xd2\x8e\xc3\xf2\x2e\x69\x70\xad\xb2\xa1\xa8\x12\xf6\xe0\x3d\xee\xc3\x43\x1d\x80\x22\xb2\x40\xea\x39\xdf\x92\x62\x07\x21\xbb\x31\x61\xc8\x6a\x91\xf7\x1d\xbb\x41\x97\xea\xf5\x3d\x7a\xab\xcc\x7f\x17\xce\x2a\xf3\x1e\xaf\xf8\x05\x39\x1b\x62\x8d\x4a\x79\x6a\x9b\x6e\xee\x2d\x73\xdf\x16\xaa\xee\x29\x9e\xb8\x38\xa6\x35\x68\xaf\x3a\x58\xf4\xa2\x1e\x5e\xf4\x7a\xe7\xaf\x75\x73\xa9\x35\x5d\xde\x7d\x66\x4a\x48\xa1\xa4\xec\x65\x82\x21\xec\x42\xa9\x2f\x79\x18\xa1\xc4\x09\x1c\xe8\x41\x3e\x39\x9c\x7a\x0d\x8e\xb1\xd8\xf7\x99\x0b\xf3\xe0\x03\x44\xb0\xbb\x41\x21\xbb\xd1\x84\x47\x93\xb1\xf4\x13\x9d\xc3\xe9\xcf\x8a\x62\x6f\x88\x2f\x6f\xe0\x80\x11\x35\x2c\xa8\x8c\x7e\xc9\xbd\x5f\xa7\x6d\x6a\xa5\x23\xd0\x0e\xca\x2a\x8a\x8e\xdd\x24\x75\xd2\x76\x0c\x7a\x97\x64\x91\xb3\xb0\xcb\xac\x76\xe5\x3a\xba\xcd\x33\xc2\x55\x4a\x0b\x95\xe9\x3e\x99\x57\xc6\x91\x5a\x02\x10\x2d\x99\xef\x29\x3b\x25\x94\x58\xa3\x01\x17\x04\x03\x13\x58\xfa\x11\x29\x39\x5f\x43\x1b\x08\x1e\x41\x2c\x12\x48\x69\xbd\xd3\x2a\x23\x3a\xef\x56\x08\x79\xd6\x90\xd2\x5e\xb7\xe2\x6a\x4f\xd0\x8a\xdc\xa0\x30\x92\x08\x22\x71\x45\xc9\x0c\xe9\xac\x61\xb3\xbf\xad\xeb\x89\x55\xe4\xcb\x36\x8a\xd9\xb2\x35\xef\xec\x04\x6e\x57\x72\x3f\x1d\x44\xa7\x33\x7a\x2d\xd5\x4a\x15\x97\x95\xef\x6b\x04\xb4\xbb\x18\x5b\x57\x20\xd0\x80\x8d\x71\xdf\x23\x5c\xc4\xe2\x80\x96\x49\xe2\x88\x47\x1c\x74\x41\x95\x5c\x38\x67\x5c\x01\x86\xed\x48\x10\x57\xed\x0a\xae\x15\x36\x05\xe4\x46\xee\x4d\x95\x31\xbf\x6e\xe9\xab\xc8\xf7\x61\x27\xf5\x8a\x20\xeb\x1e\xa4\xa1\xaf\x5a\x86\x14\x6c\x7c\xea\x5e\xe7\x66\x44\xb7\xbb\x90\x69\x07\xfd\x88\xe3\x25\xb8\xc3\x29\x71\x45\x21\xca\xf2\x90\x2b\x32\x86\xc3\x35\x1c\x32\xea\x5e\x4b\x61\x0e\x57\x23\x62\xaf\xd2\x89\xdc\xb3\x26\xf1\xe4\x99\xdc\xd3\xfb\x97\x4f\xa6\xbf\x0b\xf9\x64\x7a\xbf\x26\x88\x44\x02\x71\x62\x09\x44\x4e\x62\x96\x15\x08\x28\xe8\xa8\x72\xac\x7e\xd6\x9f\xec\x31\xeb\x45\xf6\x98\xf5\x2a\x7b\xd4\xfa\x40\xd5\x5a\xac\xef\x2a\x52\xe9\x1a\x6a\xbc\x68\x6b\x03\xf1\x7d\x95\x96\x11\xd2\xb9\xc3\x01\xed\xff\x6a\x02\x87\xdf\x23\x2e\x53\x31\x0c\x4d\x24\xe0\x79\xf6\xab\x7b\x24\x04\xe3\xdf\x05\x21\x18\x3f\x06\x42\x30\x39\x42\x08\x26\xe7\x12\x82\x7c\xbe\xde\x9b\x10\x57\x54\xa9\xce\x35\x4b\x14\x9e\x45\x67\x62\x55\x31\x9f\xdf\x60\xe1\x6e\x8a\xfe\x90\x39\xa7\xe2\xd9\xc0\x20\xbf\x6a\x20\x4f\x2a\xa8\x8f\x11\x46\xe0\xd2\xa1\x5d\xa3\x55\x8f\xe6\x34\x7d\x72\x5e\xef\x6b\xa6\xfe\x2c\xf4\x3f\x29\xf9\x2e\xd7\xea\x26\xcb\xa0\x2f\x12\xce\x56\x8a\xce\x1a\x52\x3a\xe9\x95\x94\xd6\x7a\xf2\xd4\x9a\x74\xef\x26\xfb\x80\x4a\x11\xec\xc6\xe5\x13\xb1\xeb\xc2\xed\x8c\xad\x74\x24\xa6\xbc\x1c\xc4\x77\x3b\x82\x39\x4d\x73\x8b\xdf\x11\x89\x85\xb9\x34\x10\xd7\x97\xee\x11\xb2\xfa\x28\x2d\x9e\xe7\x18\x3c\x9d\xbe\xec\x9d\x01\x0e\xb5\x43\x50\xcd\x31\x6a\x6a\xfc\xd5\x58\x5a\xb9\x31\xf7\x68\x2b\x6d\xdc\xcd\xaa\x80\x0e\x79\x53\x8b\xe7\x3a\xaa\xb2\x0c\x0e\x86\xb9\x72\x82\xc7\x02\x09\x72\x51\x38\xb7\x70\x52\xe5\xe1\xd5\xa9\x35\x8d\x82\xc1\x25\x4d\xba\xd9\x31\xb9\x4a\x6e\xd4\x9a\x2d\xad\xa5\xd2\xa3\x9e\xac\xc8\xa3\x9e\x8c\xc8\xa3\xbe\x6c\xc8\xa3\xfb\x31\x21\x57\xe2\x49\xcf\x16\xe4\x5a\xdf\x24\xe7\xb7\x6f\x3f\x86\x4f\x69\x1c\x22\x10\x90\x35\x16\x74\x4f\xe2\x6f\x3d\x12\x30\x41\x4a\xce\x44\x85\xb9\xf5\x65\x65\x6e\x6b\x64\x7e\x0c\x36\xe6\xc7\x63\x62\xfe\x3d\x58\x98\x8f\xc9\xa0\x77\x93\x25\xa0\xc7\xbc\x00\x74\x4b\x20\x1e\xea\x61\x53\x03\xfc\x05\x3f\xfb\xcb\x72\xfb\xfd\xaf\x67\x65\x9b\x88\x97\x52\x2a\x52\x09\xb9\x00\xdf\x27\xaf\x9b\x83\x78\x59\x09\x81\xb2\x1d\x37\x28\xd7\xab\x9a\x98\x92\x4a\xd5\x91\xdd\x3c\x83\xf1\x24\xcb\x8b\x05\xed\x03\xe1\x82\x84\x1e\xce\x94\xa0\xef\x14\x2f\xdb\x30\x23\x06\xfb\xd9\xc0\x0a\xba\x47\x31\x77\x68\x0c\x01\x78\x88\x66\x2a\x84\x55\x91\x5e\x85\x73\x48\x11\x68\xc4\x02\x72\x8c\x20\x1e\x3f\xbb\xbf\x55\xe0\x88\x1b\x76\x5f\xc0\x39\x11\x97\x05\xfb\x8a\xc7\x6a\xab\x36\x21\xe9\x05\x93\xcf\xd7\x27\x9c\xe9\xc4\xae\xf7\x40\x97\xf8\x41\x2e\xdb\x2e\x13\x93\xd5\x0a\xa9\x9d\x51\x6a\x12\x89\x33\xdc\xd2\x80\xa8\x0a\x12\x45\x1a\xa0\x60\xda\x02\xb3\x15\x41\xaa\xda\x79\x14\x96\xfc\x66\x1a\x67\xa3\xc6\xca\xe4\xfa\x84\xf4\x53\x7c\x87\x43\x1a\xac\xfd\x03\x24\xfc\xcc\x38\xd2\xbf\x0c\x94\x1f\x3d\xb9\xc5\xc0\x1f\x44\x9c\x29\x15\x43\x47\xe0\xb1\xee\xe1\x03\x0a\xb1\x7c\x13\xd7\x87\x4b\x5e\xa9\x45\xf6\xaa\xda\x89\x31\x9b\x06\x22\xa4\xae\xbe\xda\x67\x39\x99\xca\xf5\x4d\xbc\x2f\x8b\x97\xfd\x8e\xcf\x7f\xc3\x15\xe9\xa4\xea\x6e\x47\xfa\xcc\x56\x8f\xdb\x61\x0a\xb5\x25\x56\xd8\x23\x95\xa9\x43\x8e\xcf\x90\xe4\x6a\xc1\x5d\xe9\x14\x59\xc7\x12\x3c\x54\x4e\x0c\x7b\x6b\x92\x40\xab\x34\xad\x0a\xbb\xfc\x68\x3e\x23\xce\x38\x75\x22\xae\x57\x65\x3f\x2a\x18\x45\xcb\x2d\x15\x82\x54\xd7\xc6\x3b\xde\xdb\xd1\x82\x11\xe9\x11\xdb\xb2\x40\x6c\x4c\xc1\x63\xfd\x55\xc0\x6e\x32\xa4\xfc\x53\xc9\x14\xa0\xce\xe7\x96\x49\x3a\x61\xca\x9b\xb6\x09\x2d\x9a\x1a\xff\x7f\xec\xbd\xfb\x76\xdb\xb8\x92\x37\xfa\x7f\x9e\x82\xcd\x39\x27\x63\x7d\x21\x69\x5d\x7c\xdf\xe3\xdd\xc7\xb1\x93\x4e\xb2\xe3\xc4\x1d\x3b\xc9\x4e\x67\xbc\xf6\x82\x44\x48\x42\x4c\x11\x6a\x10\xb4\xad\x74\xbc\xd6\xf7\x0e\xdf\x1f\xe7\x81\xce\x9b\xcc\x93\x9c\x85\x0b\x49\x90\x04\x6f\xba\x58\xee\xde\xde\xb3\x26\x2d\x4b\x24\x50\x28\x00\x85\xaa\x42\xd5\xaf\xaa\xfd\x25\xd5\x3e\x8d\xe5\x6a\x20\x7f\x8d\x3d\xcf\x0e\x41\x0f\xa6\x64\xe9\xb1\xf2\xd5\x83\x5a\xd1\x2f\x6e\xa7\x88\xcc\xbb\x9e\x1b\x6f\xfb\x7e\xaf\xdb\x6d\xc3\x61\xff\xaf\xbf\xed\xf3\x0e\xc6\xd4\x86\xae\xb2\x01\x1f\xcc\x8e\x7c\xb4\x6f\x57\x23\x23\x20\x21\x58\xbd\xec\x78\xc9\x15\xbf\x07\xb7\xf2\x3f\xc0\x6b\x48\xe6\x3e\xef\x1a\xcb\x87\x21\x1c\xec\x77\x3b\x7b\xf0\x51\x3e\x3c\x04\xf9\x60\xae\xc0\xf6\xa1\x78\x34\xf2\x60\xfe\x5a\x9b\x7d\x8d\xfc\x51\x6c\xf9\x44\x16\xe5\xa3\x05\xf4\x67\x97\x74\x8f\x16\xd0\x0a\x2d\xa0\xaa\xda\xd8\x31\x35\x12\x98\x51\x05\x6c\x94\x56\x08\xf6\x79\xe8\xb0\x8c\x51\x12\x58\x2d\xf2\x86\xa7\x6d\x7d\xe5\x60\x24\x19\x80\x48\xb1\x87\xd5\x6a\x42\xd2\xc8\x28\x79\x24\xfe\x4f\xc9\x2c\x75\x72\xc8\x8e\x49\x33\x96\x79\xec\xe1\x00\x9a\x96\xf9\x7e\x0a\x7d\xb3\x78\xa7\x35\x11\x85\x66\x0e\xf5\x31\x4b\x77\x79\x20\x40\xdd\x9d\x94\x01\x8e\xd3\xaf\xaa\x54\x30\x12\x9e\x40\x99\xe0\x11\x97\xe5\x36\x22\xb9\x50\xe0\x9a\x2a\x1c\x7c\xad\x08\x83\x47\x7d\xf1\x61\x4b\xd1\x47\x9b\x72\xb5\x36\xe5\x1a\x05\x69\xb7\x5a\x90\x76\x97\x23\x48\xbb\xf7\x2d\x48\xbb\x8f\x82\xf4\xbe\x14\x6b\x38\x99\x8e\x41\x80\x72\x9a\xf5\x0b\xf1\xfd\x77\x91\x2c\x94\x51\xaf\x1f\xb5\xeb\x3f\xed\xb9\xf0\xa8\xfd\xfe\x39\x0c\xfd\x79\xfd\xff\x8f\x9e\xff\xfb\xde\x8d\x45\x0b\xe4\x0c\xcc\x38\x7a\x9b\x2f\x6b\x01\x92\xca\x3b\xfe\xe5\x1c\x68\xf7\xb9\xf9\xff\x8c\x2a\xdb\x9f\x61\xf7\xe7\xdd\x7c\x0f\xc9\xc1\xf7\x68\xd0\xfd\x15\x0e\xee\x47\x1f\xfd\xbf\xe5\xe6\x6d\x60\x44\xcc\x1b\x1a\xf6\x7c\x26\x01\x2a\x80\xc0\x35\x48\x63\xfc\x33\x73\x0a\xf8\x86\x34\x3c\xbe\x43\x37\x6b\x58\x59\xdc\xda\x12\x9f\x0d\xca\xb1\x35\xc2\xa9\x31\xe1\x75\x14\xa7\x60\x00\x45\x6e\x00\xa4\x81\xf8\xee\x1a\x05\x21\xf0\x8c\x1b\x5e\x22\xd1\x31\x5e\x53\x03\x78\x01\x36\x80\xcb\x8e\x5c\x1e\x3e\x06\x6f\x51\xc0\x51\x0f\xa6\xec\x3c\x26\x7e\xe0\xdc\x73\x05\x37\x39\xbe\x25\x86\x67\xdf\x60\x3b\xa0\x70\x6a\x4b\xff\xc3\x7a\xa3\xb4\xcf\x7f\xff\x34\x0d\xcf\x3e\x6d\x2d\x14\xa5\x9d\x19\x51\xf6\xa2\xe7\x06\x1b\xe7\x14\x4e\x8d\xe7\xf2\xe7\xbc\x01\xaa\x17\xc2\x13\x3c\xb8\xb2\xd9\xb2\x49\xdf\x25\x24\x5b\x41\x6c\xd4\x1c\x43\xa3\x74\x44\xe4\x7a\xf0\x02\xde\x52\xd3\x32\x07\xc0\x1f\x40\x2f\xfa\x03\xfb\x43\x44\x26\xe9\xbf\xf8\xf6\x38\x4d\x0a\x92\x98\xe7\x03\x40\x66\xc6\x91\xf4\xe9\x98\xef\xae\x27\xa6\x65\x7e\x81\x53\xd3\x32\x3f\x03\x44\x2d\x83\x40\xe0\x79\xb3\x9f\x8d\xb7\xe8\x0a\x3a\x8e\x13\x40\x82\x70\x18\x78\xb3\x9f\xb5\x29\x5f\xcb\x33\xff\xd3\xc3\xb5\x63\x46\x97\xf0\xdc\x40\xbe\x71\x21\x7e\x5c\x16\xf3\x77\x2d\x73\xdc\xc9\x1f\xd8\x92\x00\xf5\xe9\x08\xe7\x04\x70\xdc\x34\x83\x3f\xf3\x67\x9c\x43\xad\x0b\x6c\x45\x93\xea\x61\x10\x97\x18\x29\x99\xd6\xb7\xe2\x31\xe3\x3c\x4a\xae\x6b\x58\xca\xac\x6c\x92\x9b\x4e\x73\xc9\x44\xaf\x7a\xaa\x2d\x13\xdc\x00\xc4\x8e\x89\x63\xe5\xd7\x24\xe9\x70\xb1\x95\x60\x51\x12\x42\xcb\x9c\x12\x3c\x99\xd6\x2e\x73\x76\x0f\x47\x75\xa4\xba\x50\x82\x53\xb3\xf7\x0e\x53\x98\xc2\x93\x2a\xc1\xd5\x0a\xb2\xe9\xc6\x49\xc1\x7d\x36\x97\x3e\x3b\x72\x81\x27\xea\x40\xf0\xb3\x1b\xfb\xde\x4c\x44\x61\xf3\xd8\x6a\x8a\x8d\xfe\x6c\x0a\x02\x01\xa1\xc5\x66\x50\x3e\xcb\x34\x05\x17\x4e\xb0\x1f\x50\x81\x06\x62\x4c\x43\xc2\x51\x1c\xef\xfb\x00\x4f\x2f\xb7\xc5\xce\xf1\xc0\xee\x13\x08\xdc\x01\x09\x27\xfd\x75\x57\xcf\x1f\xd3\xd3\xdf\xde\x9d\x1d\xbd\xd5\x97\x5e\x4d\xe8\xcc\x57\x49\x8d\x53\xea\x34\x32\x5d\x1a\x61\x2a\x8e\x46\xfa\x5a\x41\x65\x00\x9b\x2d\x91\x8f\x1d\x23\xcc\xe5\x6f\x2a\xa4\xd0\x8b\xe0\x50\xad\xaf\xa6\x02\x7a\xe7\x24\x9f\x1d\x0a\x82\x2b\x67\x18\xd8\x04\xf3\xcb\x10\xe1\x08\x06\xc1\x15\xdb\xde\xf1\x53\x49\xa9\x0c\xfe\x93\xcc\x43\x14\xdd\x1f\xab\xe9\xd7\x11\x45\x15\x68\x28\x9d\x74\x47\x59\xb8\x92\x9a\xb7\x00\x9a\x83\x61\xcb\x32\x21\x18\x8c\x0b\xf8\x56\x7e\x43\x52\x67\x2e\x44\x32\x26\x0a\xde\x02\x89\xac\xb0\xdc\x59\xa8\x3f\x01\x71\x9a\xec\x14\x24\xf9\xd2\xf3\x4d\x48\x32\x25\x32\xd5\x74\xbe\xd9\xa8\x21\x7d\x15\xb0\xee\x4e\x7b\x39\x42\x27\x25\x1b\x16\x15\x33\x2e\x22\x70\x40\x31\x99\xd9\xd0\xa7\x64\xb6\x66\x51\x73\xfc\xf9\xd4\xbf\xd8\xf3\x49\x3d\x23\x41\x0b\xea\x60\x66\x53\xf1\xef\x61\x59\xf6\xe4\xa2\xbc\xc0\x2f\x38\x13\xe7\x59\x9b\xe9\x2b\x4e\x39\x19\xe6\xeb\xe0\x04\x91\xda\x90\x24\x39\xd0\x88\x21\x2f\xcf\x6a\xe3\x90\xca\x7b\x35\x9d\xb3\x4c\xbb\xcc\x1b\xf7\x84\x3c\x38\x47\x3f\x7a\x27\x9b\xce\xe5\xe2\x4b\xdc\xac\x7d\x45\x96\x46\x5c\x7a\x57\x5c\xb6\xa6\xa9\x44\xcd\x2c\x20\x95\x82\x31\x08\x6c\x0a\x6f\x69\x72\x33\xbf\x2f\x16\x55\xe8\x7b\x30\x08\x9a\xce\x5d\xda\xfb\xd3\x9f\xf1\xa2\xf3\x99\x26\xce\xd1\x77\x98\xf3\x01\x15\x0f\x68\xde\x71\x30\xc9\x2f\x54\xed\x22\x8f\x54\x44\xd0\x29\x76\x2f\xd0\x04\xaa\x21\x03\x05\x17\x45\xa5\xaf\x32\x25\x9c\xa9\x7c\xd7\x12\xeb\xa2\xdd\x6e\x17\xc0\x5d\xe8\x04\xec\x32\x44\x68\x46\xee\xe9\xc5\xe8\x93\x7a\x62\x74\xe4\xe1\x3e\xf0\xb8\xf3\x16\x92\x35\x4b\x50\x6f\x74\x7b\xbd\xdb\xed\x7d\xd4\x2b\x6b\x4f\x65\x83\x5a\x55\x4d\x03\xe3\xe1\x83\xeb\x3e\xe0\xbe\xd2\x0c\x08\x74\x66\x91\x69\x2c\x3e\xf1\xaa\xdd\x27\xc0\xd7\xf8\x58\x4b\x36\xfa\x28\xa4\x14\x12\x19\xcc\x1b\xfd\xa8\x5e\x67\x9a\x13\xe8\x87\x66\xfd\xc0\x18\xb6\x08\xb1\xff\x0a\x4c\xfa\x21\x19\x41\x72\xcc\x9f\xcf\x2e\xe0\x9c\x87\x74\x9b\xef\x32\x8a\x80\x17\x6c\x8e\xa3\x77\x6d\xde\xb5\x68\xb7\xd0\x26\xcb\x1f\x35\xdf\x70\x5f\xc6\x4e\x24\x38\x16\x92\x3f\x88\xc2\x09\xf7\x90\xe3\x11\xae\xd6\x21\x55\xa2\xc4\x9a\xe4\xef\xa9\x04\xcd\x2d\xf0\x8a\xe7\x10\x66\x67\xd0\xcc\x02\x20\x49\xcc\x39\x0e\xe9\xc5\x0c\xe3\x91\x69\x99\xd0\xbf\x46\x04\xfb\x6c\x24\x9c\x26\x17\x5e\x43\x0f\x4f\xc5\xdf\xf5\x00\x91\xf2\x9c\x8c\x2d\xae\x12\x76\x16\xb0\xf1\x9c\xbd\x36\x0a\x91\xbb\x60\xe5\xb6\xb4\xea\x9c\x05\x50\x1f\x53\x3a\x0d\x0e\x36\xc5\xec\x4c\x09\xe6\x5b\x1e\xe1\x4d\x17\x0f\x82\x02\xf6\x0a\x9a\x63\xfe\x9e\xe0\x41\xc8\xe8\x2e\xc2\xda\xca\x33\x25\x80\x94\x22\x7f\x14\x38\x14\x5f\x41\xbf\x6c\xa5\x15\xb0\xe6\xe8\xf8\xad\x71\x21\xdf\xad\x06\x4d\xa9\x72\x4e\x95\xaf\x26\xb6\xd8\x03\x38\xc0\xbe\x3b\x8f\x38\x89\xb6\x8b\x10\x12\x7a\xb9\x22\xcf\x22\x02\x47\x08\xfb\x76\x70\x83\xe8\x60\xcc\xe4\x72\xe4\xfe\x49\xe0\x45\x23\xad\x4c\xea\x2d\x6e\x1d\x5f\x5c\x4c\xa4\x46\x5c\x26\x7a\x39\xdf\xd2\x80\xe8\x4a\x4e\x9b\x2a\xd6\x8c\x56\xf4\x6c\x59\x9d\x86\x3e\x9f\x92\x33\x92\x92\x70\x9e\x23\x32\x75\xa6\x2d\x64\x64\x48\x79\x2e\x25\xe7\x3a\xcf\xc6\x7f\x5c\xf5\x9e\x9d\x5e\xdc\xec\xeb\xcf\x46\xa6\x60\xf2\xab\x23\xd3\x2a\x3f\x27\xa3\xd5\x99\x85\x00\x9d\x82\x51\x54\x29\x9a\x4f\x3f\x1c\x52\x23\xef\xd6\x40\x81\x88\x8d\x14\x86\x34\x56\xe2\x24\x2f\xb3\x67\x51\x66\x37\x64\xfb\x13\x8c\x5d\xac\x8b\xc4\xf7\x2a\x94\x17\x5d\x3f\x03\xec\x79\x60\x1a\x40\x97\xcf\xe1\xa2\xfd\x3d\xf0\xb3\xbf\xf9\xe9\x5f\x72\xcd\x5a\x30\x4a\x76\x66\xdb\x12\x87\x5e\x27\xc4\x9a\x1c\xf7\xf5\xef\x74\x93\x23\x2b\x40\x2e\xcc\x39\xe8\x25\x5f\x8b\x0e\x79\x8e\x95\x3c\x0b\xd8\x19\x62\x99\x02\x26\xe3\x7c\x8c\x6f\x3e\x70\x21\x5b\xed\x68\x32\x4a\x83\x20\x92\x15\x86\x7d\xaf\x2a\x66\x29\x57\x48\x9f\x91\x2e\xd7\x47\xe1\x5d\xbe\xa0\xb3\x51\x14\x41\x1e\x0c\x4c\x74\xa4\xc0\x80\x15\xde\xf2\xa7\xa0\xfb\x33\x8f\x94\x5e\x93\xb0\x1e\xa2\x33\xee\x06\xb9\x05\x95\x5c\xb2\x96\x78\x27\x7f\xda\x15\x47\x5d\x97\x8e\xbd\x82\x2d\x75\xa2\xb5\x6b\xc6\x31\xcf\x33\x93\x9f\x31\xb9\xf2\x30\x70\x6b\xed\xbc\xda\xf3\x57\x6b\xa1\xbf\x8b\x4e\x87\x7a\x6b\xbd\xd6\x4a\x98\x7b\x1d\x48\x8a\xa7\xf8\x06\x12\x3b\x80\x1e\x1c\xd0\x44\xbd\xc1\x53\x81\x89\x6e\x99\xe2\x17\xe8\xf2\x8f\x80\x0c\xc6\x2f\x11\xf4\x92\xbf\x5e\xf8\xa0\xef\xf1\x5f\xb1\x3f\x18\x03\x9f\xdf\x6f\x51\x30\xe2\xde\x14\x2b\x51\x20\xd5\xfa\xd2\x29\x36\x58\x19\x6e\x09\xe7\x56\xfc\x08\x5f\x0a\xdc\x6d\x23\x04\xf4\x28\xc9\x3c\xc8\x35\xa6\x62\x19\x76\xda\xa9\x8c\x85\x42\xb9\x3e\xc2\x14\xbf\xc1\xfd\xe0\x25\x26\x6a\x9f\x31\xb4\x35\xe3\xab\x95\x1c\xeb\xca\xde\x28\xf3\xbe\xa9\x08\xda\xaa\x6b\xd8\x4c\x54\x82\x46\x60\xae\xec\x7f\x27\xe2\x55\x23\x26\x73\x0e\xaf\x5b\x7e\xd7\x37\x75\x5d\x97\xf9\xa6\x33\x1d\xd5\x15\x02\x35\x01\x66\x73\x7b\xa1\xc8\x3c\x6e\xea\xcd\x7f\x83\xfb\xa5\x26\x4b\x9d\xe0\xa7\xf9\xc5\xd1\xb1\x17\x06\x14\x92\xe5\x4a\xa3\x9a\x3c\x93\x05\x9e\xe6\x63\xdb\x71\xf4\x72\x03\xce\x55\x52\x14\x40\x72\x2d\x11\x51\x9b\x53\x74\x1e\xbd\xbc\xd8\x5c\x36\xb6\x94\x8a\x04\x70\x46\x97\x27\xba\x78\x4c\x69\xab\x75\x6b\xb6\xae\x57\xdf\xed\x3e\x18\x5c\xb9\x04\x4f\x9b\xeb\xd5\xcb\x54\x81\x97\x6e\x3e\x26\x46\xdf\x42\xc6\x23\x9a\xb0\x89\x18\x22\x6f\xdd\x20\xa3\xdf\x4e\x21\xda\xfa\xd2\x79\x5d\xfb\x66\x2a\x57\xce\xa2\x63\x99\x01\xe1\xf5\x0c\xf8\x4a\xa3\x80\x8c\x20\x35\x2d\xf3\x5f\x7d\x2f\x02\x7a\xe7\x7a\x1c\x2f\x66\x81\xd9\x6c\x43\x62\xf8\x98\xc0\x21\x24\x04\xe6\x2b\xfe\xc5\x9c\xb1\xf9\xc7\x02\x57\x0a\x9a\x8c\x22\x42\x58\xef\x19\x3a\xba\x96\x09\x38\x78\x39\x5b\x3d\x98\xc4\x2b\x8f\x7d\x19\x2f\x1e\xd6\x87\xbc\x61\x49\x16\x4d\xea\xca\xa0\x63\xa9\x0f\x45\x2b\x93\x69\x6a\x55\x0b\x33\x9c\xba\x80\xc2\xd7\x6c\x00\xa7\x90\x82\xf2\x75\xa9\xdb\x5d\x43\x34\x1a\x80\xa4\xde\x89\x9e\x41\xca\x13\x1a\x16\xe9\x4c\xb4\xfc\xcb\x45\x1e\xf0\x82\xf0\x98\x4e\x96\x2d\x45\x97\x1b\x29\xcd\x03\xf8\x6e\x3c\x07\x37\xc8\x15\xfa\x90\xf8\x73\x0c\x85\x0c\xba\x6c\xe0\x3b\xcd\xc4\x1b\xb7\x2d\x73\x43\x31\x19\x64\x07\xaa\xe6\x30\xbd\x35\xfe\xbf\xff\x57\x35\x2b\xa2\x5e\xd3\x0f\x69\x34\x66\xf5\xa2\x4a\x47\x94\xa5\x09\xea\x4f\xdf\x79\x05\xcd\xee\xba\xda\x96\xd9\x6a\xaa\x8d\xe8\x4f\x83\x65\xdc\x28\x25\xeb\x65\x21\x71\xf7\x0d\xf7\x6d\x17\x4e\x3d\x3c\xe3\xf7\x68\x32\xb9\x74\xcd\xa2\xaf\x37\xdd\x3f\xf9\xf5\xd7\xd7\x27\x4d\xaf\x94\x3a\x5b\x4c\x41\xe5\x13\x3e\x06\xc1\x38\xb1\x50\x26\x90\x12\x34\x10\x09\xe8\xc1\xd5\x2f\x04\x87\xd3\x20\x75\xc7\x2e\xcd\x8e\xdd\x34\x2e\xb8\x99\xe6\xce\xa6\xc2\xa8\xa8\xc5\x4b\xe1\xdf\x8d\xbe\x4f\xac\x17\xf5\x3b\x71\x7a\x56\xb5\xce\x48\xb3\x47\x82\xb6\x25\x36\xab\x10\x9d\x1d\x6f\xad\x1e\x64\x37\xcb\xbc\x0d\xd5\x2f\xba\x25\xae\xe3\x75\xe3\x83\xbf\xff\xe5\xe3\x87\x4f\x3b\xfa\xa3\xdb\x74\x4b\x7d\xbc\xf5\x32\x75\x0c\xe4\xf3\xec\x21\x3e\x0e\x14\xcf\x68\xc9\x59\xa3\x46\x31\xa8\x8c\x12\xf5\xc8\x5e\xbb\x85\x15\x27\xb2\x67\x56\x56\xab\x54\xf3\x5c\x28\x18\x19\xa6\xb6\x13\x0a\x68\x18\x48\xed\x3c\x9d\xed\x59\xf0\x6c\x61\x74\x45\xf6\x20\x48\xbd\x4b\xe0\xef\x21\x22\x30\x38\x23\x78\x82\x65\xf0\x4c\xad\x80\xb4\xaa\x0c\x9e\x38\xb1\x48\xd6\x3e\x61\x1f\xc7\xd8\xf3\x52\x95\x5a\x3e\xc8\xde\x0d\xa5\xfb\xe6\xe7\x45\x51\xa6\x55\x0a\xa2\xa1\xf6\xe5\x76\x65\xea\x51\xc9\xbb\x99\xa4\xa3\x4f\x90\x04\x45\xd5\x78\x4a\x5a\x19\x83\x20\x95\xcf\x2f\x5b\xfb\x0f\xb3\x68\x01\x5c\xcb\x7e\x2c\x53\x40\x51\x57\x56\xe4\xca\x6b\x1d\x3f\xf2\x56\xe4\x92\x52\x98\x4b\xa8\x0d\x78\x52\x56\x26\x5a\xa5\x08\xdb\xc2\xd4\xc6\xb0\xc4\xc9\xce\x0d\xbb\x69\x52\x8e\xa3\x8e\x15\x1b\x73\x6d\x41\x24\x91\x5e\x31\x74\x88\xbc\x72\x49\xac\x4e\x2b\x7e\x20\xe6\x5d\xcc\xba\x48\x2f\xc9\xd0\x59\x6d\x6c\x6f\xe9\xed\xdb\x32\x99\x50\x6c\xa3\x57\x65\x3b\xcb\x0e\x8b\x74\xaa\xe4\x3a\xb8\xf2\xd4\xad\x8e\xec\x15\xbe\xb8\x58\x0d\xd1\xaf\x80\xf4\xc3\x8a\xee\x53\xeb\xf9\x94\xba\x50\xed\xef\xcb\x3a\xf7\x6a\xcb\xbe\xe5\xab\x14\x4b\x54\x25\x8a\xf4\xa7\xf5\x6a\x18\xff\x44\x5b\xa7\x2f\x26\xef\x7c\xbd\x86\xc1\x4f\x42\x7e\x32\x35\xd7\x33\x0a\xd4\x88\x39\x31\x07\x8e\x12\x8e\x95\x86\x36\xd4\xda\x6c\xfc\x18\x63\xe2\xa5\xef\xc1\xec\x59\x66\x46\xde\xc1\x7a\xa5\xfb\x72\xe2\x35\xb3\xd6\xb3\x7f\xd7\x28\xe7\xd7\x59\x4f\x39\x3f\xc9\x82\xd7\x27\x5a\x59\xaf\x7f\xf8\x02\x04\x57\x06\x97\x04\x0d\x5e\x3a\xe6\xd5\x0e\x8a\x12\x8e\x75\x6f\x9c\x62\x17\x0d\x51\xa3\x57\xce\xa5\xee\x57\xfb\x85\x32\x9d\x44\xff\xc6\x3b\x99\x26\x54\x77\xd8\x67\x1f\x9b\x0c\x19\x4e\x30\xc9\x16\x45\x6c\x58\x7e\xb0\xa3\x96\x1f\x6c\x10\x84\x9d\x2c\x59\x9b\xc4\x38\x29\x5f\x55\x31\x2e\x72\xcc\x28\x2f\x62\x95\x94\x3a\x14\x65\xe1\x18\x8d\xdf\x70\xbf\x56\x4d\xbf\x6e\x51\x1d\xa9\xca\x23\x60\x05\xa1\xb5\xb5\xc4\xf5\x8a\x0e\x84\xd8\xaf\xb0\xd6\xc3\xc0\x1f\x3f\x77\x67\x78\xa0\x4f\x97\xaa\x79\x06\x88\x9b\x87\xc0\xd0\xbb\x38\xea\x1d\x08\xf2\xf6\xa2\xa8\xac\x71\xf1\x8b\xa2\x27\xe1\xfb\x28\x31\x51\x8a\xee\x35\xc4\xeb\x85\x75\x89\x73\xb2\x7e\xea\x81\x01\x74\x8f\x81\x0f\x08\x52\xaf\x95\x53\x0f\xb9\x30\x40\x24\xf5\x54\x7c\xcd\x9b\x0a\x4e\x96\xdf\xd5\xef\x3d\xdf\x70\x5c\xae\x93\x37\x1d\x19\x6a\x65\xe6\x83\x64\xc8\xb8\x97\xe5\x64\xf6\xee\x30\xe9\xa5\x4c\x84\xe5\xee\x21\xf9\x82\x2c\xf5\x1a\xe4\x79\xa8\x16\x10\xdc\x34\x0a\x8d\x3b\xcd\xf0\xeb\x56\x5b\xd6\x7c\xb5\xec\xa5\x95\x7b\x53\xf7\x4e\x03\xfe\x9f\x71\x36\xad\x88\xfb\x5c\xb9\x6a\xcc\xc1\x95\x8f\xf9\x44\xcc\xf0\xd2\x07\x2d\x57\xce\x85\xa8\x57\xfa\xa0\x96\x4d\x5d\x89\xa4\x04\xa4\xa4\x86\x36\x86\xc0\xa3\xe3\x59\x32\xa1\x6d\x9d\xb0\x59\xbe\x78\x78\x25\xfa\x5d\xfa\x54\xe5\xc6\xf3\x17\x9a\xab\xd0\x2f\x9f\x2d\x17\xf8\x23\x48\x56\x30\x59\x1f\xa3\x8e\x97\x3e\x5d\x9a\x21\x2d\x30\x61\x8d\xac\x3c\xa1\x33\x54\x2a\x0b\xd9\x49\xf3\x31\x45\x43\x24\x94\xbb\x46\x1e\x67\x9d\xb7\xa3\xe0\xdd\x13\x18\x0c\x08\x9a\x66\xcb\x31\x2f\x10\xfb\xb1\x5a\x75\x57\xea\x6b\xcb\x54\x75\xd5\x2b\xa9\xf5\xea\xb8\xdf\x9f\xbd\x04\xc1\xe7\x5f\xae\x1f\xba\xc3\x23\x31\xad\x1f\xb8\xc3\x23\x76\x06\x9e\x87\x93\x49\xac\x8a\x99\xa9\x4b\xc8\x15\xfb\x3d\x22\x83\x5c\xe6\xd9\xd6\xb5\xdf\x21\x74\x95\x1b\x96\x9f\x1b\xbc\x7a\x14\x52\x6c\x08\x80\xb9\x26\xaf\xd5\x53\xa2\xd3\x3d\x49\x41\x5a\xfb\x05\x79\x12\x1b\x8d\x5f\x8c\x4f\x85\xe6\xaf\x9e\x11\x3c\x22\x30\x08\x8c\x13\x08\xdc\x08\x06\xf9\x1e\xfd\x16\xda\x6c\xfa\xec\x03\x99\x72\xf9\x5d\xa5\x8e\x7d\x36\x10\xb5\x2c\xb6\xbe\x20\x3b\x3f\x46\x9c\x50\xdb\x6d\x7e\x89\x98\xee\xae\x93\x41\xb3\x50\xdb\x9e\xf2\x36\x79\xe2\x97\x65\xbe\xc3\x1c\xa9\x27\x58\x52\x9a\xbc\xf8\xdf\xbb\xcd\xa3\xd2\xd4\xf7\x0c\xad\xb5\x78\x56\x36\x22\x10\x52\x2c\xf6\x14\xef\xf3\x0b\x8f\xad\x7e\x87\x73\x63\x6a\xd4\x93\x8c\x0c\xcb\xf0\x2e\x67\x73\xb6\x35\x8c\x53\x8c\xcf\xf4\xeb\x4d\x2c\xcf\x9a\x2b\xb0\xc8\x0e\xab\x41\x46\xb5\x19\x53\x93\x86\xfa\xaa\x5b\xcd\x06\x9b\x68\x83\x25\x3b\x2c\xbb\x2b\x8a\x50\x16\x52\xde\x22\x2d\x40\xa5\x76\x77\x46\xc2\xeb\xf9\x92\x21\x2b\x57\xe6\xed\x5c\x95\x06\xa8\x9c\xd8\x4b\x54\xfd\x02\x3b\xa0\x04\x82\xc9\x9a\xd5\xbe\x37\x67\x3d\x38\x79\x35\x3b\xd5\xab\x7d\x04\x0e\x30\xd1\x84\xd3\x64\x01\x8a\x24\xf2\x18\x74\x4f\x92\xf1\x45\xa8\x10\x57\x90\xdb\x53\x8a\x72\xe4\x20\xb7\x3c\x61\x23\xbe\x7a\x05\x22\x7c\xe6\xe6\x44\x40\xd4\x35\x41\x3e\xaa\x07\x4e\x9c\x3d\xa5\x3a\x8d\xa2\x02\x6a\xde\x1b\x64\x01\x8f\x9b\x76\xb3\xe8\xb1\xf5\xd1\xbf\xf2\xf1\x8d\xcf\xf1\x56\x2b\x4f\xae\x06\x2a\x8a\x7a\x99\x3f\x07\x00\xb3\xc2\xa1\x6c\x70\x59\xd1\x45\x7e\x8e\x73\xc2\xf0\xac\xc4\x5a\x2c\x14\x2c\xcb\x17\x17\xd1\xbe\x5e\x5c\x54\xa0\xe1\xd0\x1e\x22\xe8\xb9\x81\x0d\x7c\x57\xb2\x71\xdd\x66\xe2\xd9\xa9\xf7\x71\xb8\xff\xf1\x1f\x7a\x79\x21\xa7\xda\x32\x39\xdd\x75\xad\x45\x3e\xd2\xc8\x2c\x8b\xcb\x4a\xe4\x36\x69\x4a\xe2\x08\xc6\xd4\x95\x09\x45\x5e\x8e\x7c\xcf\x36\xc1\x37\x91\xab\x6a\x80\xfd\x01\xe0\xa1\x8e\xa9\xe7\xb8\xdb\x88\x59\x8e\xf2\x31\x0f\xdf\x40\x32\x00\x01\x54\xce\xd2\x8b\xd9\x14\xe6\x8b\xf0\x34\x4c\x9d\xd6\x50\x37\x80\x5e\x41\xe6\x52\xb6\x9d\x9c\x17\x0e\x90\xab\x24\xb5\x3c\x19\xda\xe2\xe3\x30\x0b\xa0\x43\x6a\x35\x69\x99\xc0\x55\x5d\x78\xb5\xac\x80\x67\x75\x85\xe0\x02\x64\xb9\xd0\x83\xb4\x29\x61\xf6\x3d\x10\x06\x5d\xd4\x98\xae\x67\x9b\x76\x46\x53\x2b\x09\x15\xaa\xca\x31\xcc\xda\x39\x65\x6a\x5f\xac\xfb\x66\xf1\xbc\xda\x96\x79\x50\xe4\xf2\xbc\xdf\x05\xd5\x7c\x03\x1a\xa9\xef\x65\x9e\xad\xba\x25\xcc\xcc\xd8\xe1\x4d\xce\xbf\x69\xd6\x39\x67\xd7\xb9\x9c\x57\xcf\x96\xf7\x9e\xbb\x76\xb6\x34\xdd\x4c\x6b\xe2\x8a\x71\xf8\x77\x63\x75\xcb\x6a\xa1\xf1\x2d\xba\xf0\x8b\x05\x52\x53\x59\x54\xdf\xce\xcc\x9b\x8d\x79\x05\x03\xc7\x05\x85\x1b\x84\xb2\x66\x0e\xdd\x45\xb4\x88\x4e\x03\x2d\x62\xf9\x67\x7f\xdd\xde\x1b\x88\xea\x7c\x93\x8d\x45\xf5\xb2\xcf\x7d\x1d\x49\x8d\x05\xe5\xb2\xcf\x7c\x1d\x51\x4d\xc5\x94\x7a\xde\x2f\xed\xac\xd7\x6c\xdc\x64\xbb\x77\xf4\x67\xbc\xf1\x47\x8d\xa0\x88\xfc\xbe\x28\x56\x71\x55\x83\xb1\xc8\x40\x8a\xac\x47\x69\x23\x58\xc9\x5e\x4e\x38\xfc\x32\xb2\x1f\x62\xea\x93\x0a\xe2\x7a\x98\x76\x2d\x03\xee\xd6\x65\x6f\xea\xc7\xbe\x14\xa3\x73\xdd\x16\xe6\xfb\x5d\xf2\xfe\x5b\x77\x5b\x6f\x61\x8a\x20\x04\x2b\x06\xf1\x55\x20\xef\x4d\xe4\xbb\xf0\x96\x5f\x79\x87\xe2\xd6\x9d\x67\x22\x8b\xbd\x54\x1f\xf4\x2b\x9b\xb2\x2f\x58\x12\x6d\xc9\x05\x2c\xc3\x7c\x63\xd9\x1a\xad\xa5\x98\x61\x4b\x93\xee\x95\x74\xcc\x29\xe2\x0b\xdb\x6d\x28\xe7\x97\x2b\xe5\x4b\xa8\x6a\x28\xea\x97\x2b\xe8\x4b\xe8\x6a\x26\xed\x13\x59\xbf\x24\x49\x9f\x13\x73\x75\x95\xc2\x3e\xf6\xd4\x2b\x8a\x37\xb8\x7f\xa0\x6a\xad\xca\x88\x5f\x9f\xd4\xd0\x5c\x0b\xb4\xb4\x84\xb5\x0a\xba\xc1\x35\x24\x7d\x1c\x24\x1b\x74\x49\x5c\x9f\x33\x8d\xa9\xce\x81\xb6\x9c\xc3\x4c\x19\x8f\x7a\xa2\x29\x5f\x97\x1f\x6b\xcd\xbc\xbd\x05\xaa\x72\xc4\x50\x35\xfb\x69\x41\xa5\x39\xe5\x90\x5f\x5c\xf4\x96\x29\xb4\x8f\x5a\xf5\xa3\x56\xfd\xf0\xb4\xea\x39\xe4\x6d\x12\x19\x75\x90\x76\x16\x14\xe8\xe6\x7a\x99\x9b\xbd\x0d\xfb\xc8\x95\xa8\x3a\x10\x79\x1b\x59\xd9\xb0\x6b\x99\x36\xfb\xc3\x46\x7e\x49\x83\x25\xed\x36\x70\x6f\xc7\x32\x54\x28\x7d\x36\xd7\x01\xe3\xbd\x19\x04\x76\xf4\x34\x23\x63\x27\x95\x03\x9b\xba\xa7\xdf\xe6\xf9\xb3\xaa\x05\x93\xf0\x71\x27\xf5\x5b\x0d\x1f\xc6\xb6\xb5\x93\x46\x37\x69\x22\x62\x73\xe7\xdc\x82\xeb\xdb\xca\x9e\x94\xcd\x50\x67\xfe\x3a\x76\x5b\xf3\x43\x4e\xb2\x17\x04\x57\x75\xf6\x41\x93\xe3\xad\xbb\xa4\xe3\xad\xf8\xae\xa6\xc1\xd5\xd3\x5f\xf7\xca\xe8\x81\x5e\x18\x3d\xcc\xeb\xa2\xf4\x65\xd1\x12\xaf\x8a\xb4\x9e\x5f\xb6\xab\x0e\x34\xce\x6d\xed\x79\x55\x10\x57\x78\x14\x7b\x01\xea\x42\xb9\xe6\xce\xaa\x66\x0d\x55\x44\x5f\x69\xdd\xc0\x99\x33\xa8\x57\x7c\x06\xf5\xca\xcf\x99\xa4\xcf\x74\xa1\x1a\x15\xe6\x74\x2b\x81\x81\x70\xe1\xa0\x60\x84\x0a\x42\x6b\x5d\xab\xc7\xaa\x53\x4d\xa0\x78\xe9\xf4\xac\xad\x46\x07\xe2\xa2\xe6\x5e\xfd\x2d\x51\x1b\x00\x78\x19\x07\x59\x37\x77\x90\x75\x2b\x0e\xb2\xda\x18\xcc\x75\x2f\x40\xea\x01\x48\xac\xc4\x6f\xb9\xb0\x93\x92\xcd\x1f\x5e\x77\x55\x9e\xdd\x17\xa7\x2f\xe8\x2f\x1f\x3f\x95\xe7\x4b\xc8\x08\x56\xb6\x9c\x5e\x02\xe4\x85\x44\xe3\x8a\x4c\x23\xa8\x4c\x01\x09\xe0\x0b\x42\x70\x55\x8d\xb0\x62\xbd\x2c\x95\xbb\x93\x24\x4c\x15\xd6\x09\xc8\x25\x46\x71\x14\x48\xf6\xe6\x96\xf2\xd2\x19\x23\xcc\x90\x94\x15\xd9\x2c\xa9\x38\xd3\x8e\x95\x1a\x4d\x31\xfa\x55\xfd\x90\x78\x95\x51\x1e\xf0\x1f\x24\x9f\x3c\xe0\x37\x66\x53\x32\x96\x25\x73\x89\x84\x0f\x92\x49\x1f\xc2\xc6\x3c\x4a\x46\xb2\x30\x8b\xca\x95\x50\x8e\x5c\x49\x39\xfe\xaa\x3c\x2c\x78\xa7\x65\xa7\x44\x21\xe2\x67\x30\xc6\x37\x2f\x78\x0b\x71\x69\xe9\xf4\x91\x25\xeb\x2b\x09\xc8\x88\x4b\xcb\xf4\xe1\x4d\xa3\x83\xa9\xfe\xc4\x21\x7f\x88\x75\xf6\x59\x71\x0b\x12\xb2\xa0\xd8\xa8\x6b\x96\x71\x98\x7a\xaf\xc1\x3a\x01\xc6\x1b\xdc\xd7\xea\x8e\xba\xd5\xc2\x25\x55\x40\xa1\x81\x89\x01\x42\x3a\xc6\xc4\x78\x75\xfc\x96\xfd\xf5\xe6\xfc\xfd\x3b\x83\x62\x43\x44\xd8\xb2\x4f\x33\x1c\x12\x63\x20\x20\xbf\x1d\xe3\xc8\x60\xdb\xd0\xb8\x41\x9e\x67\xf4\xa1\x41\xe0\xef\x21\x0c\x28\x74\x8d\x3e\x1c\x62\x02\x79\x95\xe2\x6f\xb8\x6f\xa0\x40\x36\x41\xa1\xeb\x14\xd0\x55\xf2\x75\x29\xb4\x03\x0a\xec\x01\xf4\x29\x24\x90\x43\x11\x4e\x90\x8f\x26\xe1\xa4\x82\x97\x55\x10\x62\xd1\xcc\xe7\xd1\xa5\x05\x44\x98\x1d\x23\x88\x69\xd6\x6b\x1e\x34\x2c\xa6\xe5\xfd\x15\x28\x4b\x95\x9d\x23\xb3\xb5\x6e\xb4\x71\xd3\x94\xc3\x45\x93\x0e\x0d\xb6\x04\x8d\x93\x18\x0b\x52\x8b\x7d\x26\x0a\x8f\x8b\xf0\xd5\xfa\xa1\x44\x0b\xe2\xbf\x35\x42\x0c\x3f\xe6\x14\xea\x8a\xe5\x44\xbf\x34\x2d\x05\x50\x2c\xbe\x17\xce\xbf\xcc\xa9\xdc\xe8\x7a\x66\x0f\xb0\x0b\x27\x88\x1f\x03\xb1\x96\x2d\xd2\xaf\x65\x1a\xb6\xf0\x2e\xf2\x0a\x18\xd3\x34\xee\xac\x62\x3e\x7c\xc3\x7d\xd3\x32\xff\xe5\xc3\x9b\x64\x4a\x93\x8b\x93\x6f\xb8\x7f\x3e\x85\x03\xc5\x62\x28\xe6\xeb\xae\x65\x4e\x42\x5a\xd5\x70\x5a\xa0\x5b\x3a\xfc\x5c\xec\xf2\x52\x1d\x63\x38\x11\x25\x3b\xfa\xbc\x4e\x28\x47\xe3\x87\xef\x38\x48\xa3\x40\xdd\xff\x06\xae\x81\xc8\x9a\x16\xc0\x8f\x63\x64\x5a\x5d\x5e\x65\xfe\xb2\xc8\x01\x96\x9b\x23\xed\x17\x45\x62\xc9\xa7\xd0\xe7\xeb\x0f\x04\x01\x1e\x20\x20\xab\x44\xeb\xb7\x97\xb2\x98\xf3\x28\xa6\xd1\x8a\x96\x68\x0b\x1a\x74\x7c\x26\x7f\x79\x5e\xff\x87\xd0\xf7\x91\x3f\x8a\x70\xf2\x3d\x0c\x5c\xfe\xa7\x62\x2e\xe7\x17\xfe\x14\x92\x21\x26\x93\x74\x6b\x59\x80\x73\x17\x05\xb2\x44\x4a\x76\x51\xe8\x3a\xe7\xcf\xf8\xb8\xe1\x04\x4b\x1e\x52\x66\x76\xaa\x3c\x51\x14\xc4\xaa\x39\x59\x96\xf6\x22\x78\x50\x53\x77\x89\x14\x16\x46\x60\xa2\xae\xfc\x5b\xeb\x1f\x4c\xec\x6b\xe7\xab\x44\xfd\xb8\x18\xa3\x80\x29\x09\x4c\x5f\x40\x42\x66\x13\xb1\xa4\x0c\xca\x7e\x62\x3a\x04\x57\x32\xc6\xe0\x1a\x1a\xd8\x4f\xab\x21\x7f\x41\x85\x42\x5d\x4f\xff\xde\xea\x44\xc9\x72\x6a\x7a\x6c\xba\x80\x5c\x55\x1c\x98\x49\x40\x57\x74\xcc\xc8\x9b\xfa\xd8\x7d\xa6\xca\xbe\xf7\x21\x9d\x86\x54\x5e\xeb\x24\xae\xd7\xe5\x1c\x29\xb9\xd3\x40\x1d\x53\xc1\x49\x10\x13\x34\x04\xc8\x83\xee\xc5\x2f\x49\xba\xac\x99\xe0\x44\x9b\x3a\xb8\xb0\xe2\xdb\xfc\xa6\x33\x76\x3e\x18\x43\x37\xf4\x20\x31\x5c\x32\xb3\x49\xb8\xe8\xd4\x99\x25\xf7\x20\xd5\x03\x2f\x16\xe1\xa9\x80\x8c\xb9\x1a\x29\xf2\x74\xc6\x0e\x2c\x7b\x28\x3d\x58\x89\x7f\x53\x6d\xda\xbc\x54\x1d\xdb\x35\x3c\x98\xbd\xe2\x8b\x84\x32\xe2\x8e\x3c\xcf\xa0\x20\xb8\x62\x56\xd8\x60\x00\x83\x80\x29\x90\x33\x43\x62\x11\x42\xd7\x69\x9a\xe2\x58\x9d\x7f\xa2\x5a\xf4\x29\xde\x4e\x09\x84\x93\xb8\x38\x1b\x0a\x5e\x86\xde\x10\x79\x9e\x40\x1f\xa8\x7c\x5e\xef\x7d\x6f\x7e\xd2\xa6\x37\x93\xb2\x35\x1a\x9d\xb6\xf5\xec\x20\xc3\x38\x4b\xc6\x60\x6c\xa0\x21\x3b\xbd\x8c\xc1\x18\xe3\x00\x32\x93\x9a\x84\x7e\x7c\xca\x59\xec\x08\x0c\xa0\xa1\xc0\x44\xc6\xd6\x75\x40\xf1\x74\x0a\xdd\x56\x99\x34\x5f\xc2\xce\x6a\x82\xde\x52\x38\x53\x19\xb8\x5a\x7e\x02\x06\xd8\x03\x12\x65\x62\xd9\x10\x2e\x46\x16\x4d\xa4\x29\x7c\x6d\xae\x81\x2a\x08\xdb\xa2\x17\x2a\x61\x6c\x8b\x5e\x2c\x87\xb2\x2d\x7a\xab\x02\xce\xb6\xe8\xb5\x52\x48\xdb\xa2\x97\xca\x61\x6d\x8b\xde\x2a\x81\xb6\x2d\x64\x45\x21\xbc\x6d\x21\x1b\xee\x1b\xe2\x36\x23\xf0\x1f\x20\xcc\x6d\x81\x80\x58\x9e\xba\x77\xbf\x76\xae\x70\x1f\x2e\xcf\xd2\x95\xed\x95\xd9\xba\x85\xdd\x56\x18\xab\x1f\xca\x34\x9e\x5a\xbe\x2b\xbd\xa1\x50\xe8\xa5\x22\x30\x80\x99\xa1\x94\x90\xa7\xf5\x5b\x35\x58\x18\xcb\xba\xd7\x14\xb7\x04\x0b\xdf\x6c\x4e\xc1\x08\x6e\xf6\x01\xe5\xba\xdc\x3a\x6f\x37\xdd\xdf\xb7\x8f\x27\x2f\x77\x77\xea\x21\x1e\xcb\x92\x0c\x9c\xfa\x29\x20\x34\xd8\xe4\xb2\x27\x96\x1c\xdf\x84\xff\x3e\x71\xa1\x14\x57\x60\xc8\x98\x2f\x4a\x93\x30\xed\xf5\xe3\x7f\xc6\x56\xa5\x89\xfd\x13\x14\x4c\x90\x7a\x9e\xa7\x9e\xb8\x2c\xf6\xe2\x99\x03\x0f\x02\xf2\x22\xf5\x74\xb2\xfd\xd2\x32\x2c\x59\x5d\x5a\x1a\x65\xf9\x3c\x75\xdc\x6c\x81\xf9\xae\x17\x5f\x82\xa6\xb8\x50\x4c\x53\xfa\xa5\x2a\x6a\xea\xe8\x85\x8c\x54\xc6\x70\x8d\x3f\x65\x7e\x35\x2b\x75\x8a\xa9\x25\x62\x72\xd5\xf3\xda\x22\xe2\xfe\x40\xdd\x9a\x31\x27\x13\xd7\x1a\x95\xc1\x70\x6a\x04\xe6\x8f\x52\xe5\xb0\xaa\xd7\x33\x82\x30\x41\x74\x56\xd5\xf3\x54\x3e\x97\xed\xbd\x89\x71\x20\x5a\xf2\xd5\x72\xc9\x4d\xca\x4f\x37\x4f\x40\xde\x4f\xb1\x48\x37\xfc\xb8\x9b\xaa\xf1\x27\x54\x97\x02\xbf\xcd\x73\x29\x90\xf9\xa2\x62\x13\x05\x1c\x2f\xb1\x4a\x7c\x34\xdc\x99\x39\x2b\x36\x58\x6e\xfb\x29\x20\xcf\xf4\xfe\x0f\x30\xa1\x91\x9c\x96\x7f\x9e\xc0\x60\x00\x7d\x57\xb8\x2f\x46\x98\xe2\x38\x77\x42\x23\x21\xa2\xea\xda\x71\x1b\xa9\x6f\x95\xa6\x52\x65\xb4\x95\x16\x9b\x8f\x86\xc0\x41\xae\x1c\x4b\x23\x6e\xad\xfe\xc4\x4d\x8e\xca\xe5\x9c\xba\x31\xb1\xe8\x3b\x74\xed\xc1\x18\x79\xee\x9a\xcf\xe0\xee\xc9\xed\x3f\xe9\x3f\xdb\x9f\x1f\xcf\xe0\xc5\xcf\x60\xf9\x65\xc5\x59\xac\x1c\x43\x04\x4d\x26\xa2\x9c\xfd\xe3\x31\xfd\x67\x3c\xa6\xcb\x4e\x4b\x4d\x5a\x49\x8e\x1a\x40\xa0\x4f\x0f\xf4\x67\x7f\xa6\xce\xbd\xc3\x09\x4b\xd1\xc8\xdf\x8e\x17\xce\xef\x21\x24\x33\x9b\x0b\x98\xb4\x1c\x7d\x97\x28\x0a\x69\x0d\x42\x36\xa0\x3d\x94\x2f\x9b\x79\x70\x0b\x1a\xcd\x03\x6e\xcf\x17\x62\xfa\xa8\x0c\x3d\x2a\x43\x8f\xca\x50\x4d\x6e\xdd\xe7\x55\xe3\x19\x98\xf1\x6a\xed\xab\xb8\x69\x34\xf3\xd7\x56\xa2\xb7\x37\xe7\xef\xdf\x35\x45\xc7\xfc\x16\x60\xdf\xbe\x46\xf0\x06\x2a\x9a\x05\xfb\x32\x61\x6c\xa6\xf5\x7a\xa2\xab\x5a\x6e\x4c\x09\xcc\xf9\x01\x3d\x64\xdf\x20\xdf\xc5\x37\x6c\xe4\xd0\x03\x01\x4d\xca\xb5\xf0\x24\x28\x37\x55\xe9\x81\x87\x38\x47\x8c\x4e\x09\x88\x88\xe9\x8b\x5e\x45\xdd\x8b\x1e\xad\x51\x7e\x57\xa0\x55\xaf\x59\x9f\x7e\xff\x4b\xf7\x4d\x7b\x88\xbe\x3f\xea\xd3\x39\xf1\x64\x26\x75\x55\xef\xcf\x9b\x35\x47\xc1\x68\x0a\xf4\x75\xa1\xcf\x52\xcb\xac\x69\x28\xd5\x9f\x49\x39\x97\xf7\x56\x55\xfa\x4b\x84\x27\xfc\x90\x55\xf4\x47\xe5\xf1\x61\x2a\x8f\x65\x2d\xf2\xa3\x81\x40\xbf\xa9\x5a\x37\x08\x09\x33\x3e\xce\x84\x60\x63\x2a\xd9\x9b\x3c\x29\x73\xa9\x77\x6a\xcb\x29\x9d\xef\xcd\x7a\x5d\x53\xa9\x93\x6f\x69\x87\x69\x7c\x0c\xad\xf5\x24\x1d\xbf\xff\xf5\xed\x04\x8f\x0a\x40\xe3\x9f\xca\x06\xf3\x99\x6e\x9d\x6d\xbe\xa0\xf8\x90\x36\x83\xb0\xef\x83\x6b\x53\x5c\xfd\x25\x12\x81\xed\xbc\x44\x15\x56\xe5\x68\x49\x39\xa1\xce\x96\xd5\x49\xb5\x92\xdd\x66\xf1\xbc\x52\x12\x2e\x3a\xad\x72\x0e\x96\x39\xa7\xc9\xb6\x5a\xeb\xbc\xf6\xbe\x0c\xae\xd0\xe7\xcf\x27\xfa\x79\xe5\xb0\x6b\x0b\xd4\x81\xd2\xc6\x14\xbd\xc1\x7d\xe3\x2d\x08\xfd\xc1\x18\x06\xfa\x02\xf3\x75\xa3\x08\x85\xbd\xa2\xb9\x6c\xc7\x84\x42\xf7\x38\xe6\x70\x12\x76\x25\x2a\xc8\xa9\xe9\x07\x25\x58\x05\x3c\x92\x68\x0a\x46\xc8\x97\x21\x10\xb9\x70\xa2\x40\x44\xec\x4f\x85\xb2\xa5\xef\x3d\x09\x0b\x03\x23\xc8\x43\xfc\x0b\x04\x99\x3e\xae\xa8\x34\x9c\xa9\x52\x06\x27\xe1\x4e\x22\x40\x84\xb5\xd6\x5c\xec\x9a\x37\x88\x8e\xed\x21\xc6\xb4\x66\xf0\x53\xb7\x69\xfd\xaa\x82\x36\x18\x29\x76\x7f\x16\xd5\x95\x98\x12\xcc\x1d\x04\xf1\x11\xab\x69\x35\xf2\xdf\xd6\xcb\x58\x9f\xa3\xef\x40\xc6\x1e\x69\x7b\x3f\x8f\x7f\x5c\x59\xff\x91\x1f\x56\xd3\x7b\x04\x2b\xb2\xb2\xbe\x55\x35\x4f\xd3\xff\x99\xf2\x73\x7d\x1a\xb2\xc1\x50\x11\xa0\x58\x75\xcd\xad\x4c\x94\x5c\x4f\x69\xe4\x5c\xea\x41\x0b\x85\x54\x75\xd5\x90\x2a\xa5\xae\x09\x0f\x7b\x2a\x28\x69\x52\xe0\xf1\xc0\xfd\x74\x64\x95\xd0\xa1\xb0\x7f\xcc\x03\x64\x92\x38\xda\x24\xa4\xaa\x3c\x66\x26\x51\x77\xac\xec\x9b\x85\x56\x5f\x83\x78\xdc\x2c\x6c\x40\x99\xb1\x23\x80\xa1\x85\x74\x28\x34\x72\xd8\xb9\x9f\x79\x4f\x91\xac\x0d\xd3\x3d\x92\x37\x6d\x3f\x49\x94\x2a\xca\x6e\x48\x10\xb1\x02\xca\x8e\xde\x23\x9a\xb1\x52\xfe\xe7\x7f\xff\x9f\xf4\x73\xd0\x77\xf3\x4f\x19\x78\x98\x52\xfc\x4b\x0e\x19\x1d\x22\x51\x69\x3e\x47\x41\x38\xdf\x94\xc0\xeb\x68\xed\xc5\xa2\x5c\x1d\x3d\x7b\x00\xe1\x42\x69\x64\xfc\x57\x09\x96\x4b\x03\x3a\x7c\x91\xaa\x5c\x4c\x87\x7c\x40\x4b\xc3\xdf\x1b\xd2\xb0\x6b\x99\xa1\x57\x32\xe3\xe2\x08\x2b\x88\x84\x2d\xf0\x7d\x56\x22\x5e\x34\x0e\xc0\x86\x93\x29\x9d\xd9\x93\xd8\xd1\x52\xb4\xee\xf3\x49\x47\xa9\x37\xb9\x82\x14\x95\x09\x8c\x23\x4e\x53\x2a\x52\x99\xf9\x9e\xab\x4b\x9b\x6e\x3c\xe3\x78\x78\x87\x0d\x02\x27\x00\xf1\xbc\x24\x0f\x5d\xb3\xff\x7c\xc3\x7d\xc3\x93\x3d\xe9\x12\x91\x6a\x08\xd0\x32\xdd\x7b\x19\x36\x95\xa2\x2c\x2f\x53\x01\x97\x8e\xb8\xb5\x6a\xdf\xfd\x93\x4f\xe7\xe7\xa7\xed\xad\xda\xfe\x49\x45\xc9\xcd\xf8\x05\xef\x05\xea\xa1\x59\xc6\x5e\xd5\x4b\xa5\x62\xbf\x4e\xb6\x5e\x24\x8a\x33\x4e\x54\xe1\xc4\x2c\xc7\x53\x32\x35\x88\x13\x9a\xa6\x5c\x7d\xbd\xe2\x3a\x72\x67\xc9\x99\x7a\x66\xbd\xf8\xdb\x64\x02\x1b\xa5\x89\xc7\x5e\xe7\x06\x39\x7a\xd5\xd2\x62\x8d\x77\x1b\xd1\x06\x5f\xa6\xc4\xe0\xbf\xd3\x54\xd5\xb2\xb5\x4a\x8f\x8b\x7f\xec\xee\x83\xdb\xf7\xe7\x7a\xdb\x5d\x5f\xc3\x4f\x11\x20\x42\x05\x15\x83\x3a\x49\xd5\x57\xab\x2f\x4a\x9a\x26\xf9\x15\xf4\xa9\x09\x8b\x97\x09\xa7\x4b\xce\xed\x6b\x9c\x66\x44\x52\x97\x0e\x59\x6d\x6e\xde\xf1\x1d\x0d\x78\xae\x81\x65\xbe\xe5\x4f\xea\x6a\xd5\x1a\xc9\xeb\x9a\xe0\x95\x22\xfc\xc6\x3e\x70\x47\x5c\x46\xde\x8c\x11\x85\x0b\x4d\x40\x10\xf6\xb9\x18\x8d\x20\xd4\x8c\x7e\x38\x99\x42\x62\x7b\x70\x28\x95\xc1\xfd\x9c\x1b\x5c\xd3\x6e\x30\xc6\x84\xbe\x76\x0b\x1d\xe2\xd9\x6b\xe5\xc2\x86\xe6\x2e\xcb\x58\x7a\xbd\x94\x40\x6b\x48\x84\x17\x9b\xa2\x09\x34\x28\xc6\x1e\x45\xd3\x88\xc7\x80\x20\x20\xe1\x4e\x15\x7c\xbf\x74\x45\xd5\xf9\x89\xd7\x43\x75\xe6\x96\xd9\x04\x8b\xf8\x0d\x82\x27\xb6\xcf\x6c\xc9\xc5\x3a\x2d\xb0\x52\x9a\xa7\xd8\xcc\x71\xfe\x35\xd8\x63\x65\xab\x5d\xde\x0d\xe2\x90\x32\x15\xda\x35\xcc\xca\xc5\xc8\xdd\x33\xc7\xc2\x84\x29\x66\x7b\xfe\x7e\xa7\xb0\xad\xda\xe6\x5e\x83\x95\x3e\x6f\xad\xec\xbc\x8a\x50\x9c\xa9\x24\xf3\x45\xd9\xc7\x60\x02\x3c\x4f\xc1\x98\xd1\xe5\x66\x8b\x0a\xdb\x4d\xd2\x97\xb2\x99\x48\xfa\x26\xb4\x7a\x4a\x0e\xd5\x43\xbe\x5a\x37\x43\x48\xf0\x0d\x1a\xbc\x2a\x75\x13\x17\x50\x83\xc4\xb3\x26\xeb\x9b\x7b\xa9\x15\x17\xaa\xc6\xd5\x9c\x2e\x28\x6a\xbb\x90\x02\xe4\x05\xc5\x55\x51\xcb\xcf\xef\x5a\x5e\xa9\xb8\xe2\x2e\x41\xb9\x42\xdb\xda\xf5\x8a\x82\xf3\x31\xbe\x41\xfe\x28\xe9\xec\x44\xd2\xd9\x2c\x3e\x51\xf4\x4c\xd5\xda\x01\xe5\xc2\x28\x7e\x47\x0d\xc8\x6a\x76\xcb\x57\x91\x6b\xb8\xc0\xec\x56\x38\xbe\x40\xf1\x89\xc3\x7e\xe9\x15\xa3\x0c\x09\x60\x0d\xb3\x9c\xf3\x79\x70\x8d\x06\xda\x4a\xe9\x8c\x5a\xe6\x2b\xc4\x11\x8a\xd8\x33\x5a\x0d\x25\x59\x94\x3c\x3b\xdf\x10\xe1\x7f\x06\xf0\x5d\x35\xff\xfb\x4f\x63\x2f\xe4\xd4\xfb\x65\xda\x0e\xba\xf8\xcb\xb5\x1a\x0f\xe8\xd4\x3f\x0e\xcf\x3f\xea\x43\xa3\x92\xcd\x59\xcf\x88\x18\x83\xe0\x2c\x03\x7a\xda\xb0\x22\x48\x19\xb6\x41\x73\xa7\x44\x3d\x1b\x20\x26\xd9\x88\x68\x5e\x8e\xac\xd7\x4a\xf8\x14\x5a\x87\x8c\xa8\xaf\x5b\x3d\x25\xb7\x87\x4b\x00\x3a\x68\x3a\x92\x96\xcb\xcd\x7a\x31\x11\x35\xa4\xe2\x3a\xb7\x67\x7e\x07\x2d\x73\x7f\xea\x22\x7e\xd7\xba\x3f\xaf\x3e\xbe\xe8\x7d\xf8\xfe\x6c\x5a\x0e\x36\x3c\xcf\xa5\x7c\x76\x2b\x2c\xb6\x8d\x3e\x70\xc6\x19\x47\x19\x81\xaf\x5d\x3a\x8b\xde\xeb\x8b\x6d\x93\x9a\xa3\x39\xaf\xf6\xeb\x36\x5a\x8c\xbe\xb3\xac\x7b\xf9\xe4\x2a\xe9\x28\xad\xdc\xac\xf8\x8a\xbe\x21\x3e\x89\xb9\x18\x3a\x89\xd9\x0c\x9b\x44\xf7\x78\x0d\x64\x12\xdd\x6b\x55\xb8\x24\xba\x77\x2a\x51\x49\x74\x2f\x55\x60\x92\xe8\x5e\xa9\x42\x24\xd1\x8e\xc7\x43\xd2\x0a\xa8\xff\x4a\x09\x1e\x89\x76\xf8\xf7\x8f\x46\xa2\x9c\x6d\x8d\xb0\x48\x72\x57\xe8\x79\x54\x92\xe2\x10\xe5\x11\xa6\xf8\x48\x69\x35\xfb\x7e\x83\x8b\xf4\x6a\x58\x93\x26\xe9\x0a\xc5\x12\xb9\xf2\xda\x71\xc1\x8b\xc7\x94\x0c\xaa\xbc\x38\x69\x72\xf3\xa8\xa2\x29\x71\x14\xc4\x3e\x84\xbe\xc1\x0f\xf5\x02\x48\xe5\x1a\x0b\x30\x52\x55\x6a\xfa\x5a\x9a\x09\xf9\x66\x20\x5c\x55\x76\x60\x8e\x61\x69\x3b\x70\xbf\x30\xcf\xd0\x49\xeb\x24\x6a\x1c\x6f\x21\xdd\xca\x7c\x7d\x42\xf0\x86\x31\x5f\xe3\xd4\x2a\x3a\x48\x75\xa5\xb0\xb8\xd2\x19\x12\xe0\xf1\x88\xb7\xf4\x6e\xac\xcd\xe2\xa2\x5a\x4d\xc5\x92\x65\x7e\xf4\x9f\x55\x5f\x49\xe7\x15\xc6\x65\xaa\xa3\x71\x18\xf7\x5a\x75\xd0\xd3\x97\xcf\xc8\x76\xe7\xd3\x33\xbd\x0e\x0a\x98\x1c\x1e\x03\xc2\x01\x24\x01\x0d\x27\x71\x3d\x5e\x9d\xcd\xc8\xf5\x25\x30\x18\x60\xe2\xea\x63\x29\xaf\xe0\x4c\x78\x55\x09\x7d\x71\x3b\x05\xbe\x2b\x20\x9d\xfd\x0b\xe1\x06\x89\x30\x9d\x01\x21\x60\x66\x66\x02\xda\xa3\x3b\x0a\x14\xbb\x1b\x51\x10\x37\x52\x19\x4b\x35\x65\xc7\x70\xa0\x22\x10\x35\xd7\xa0\xbe\x46\xce\xd5\xb7\x51\x51\xb4\x7c\x51\x4b\x14\xbc\x9f\x8a\x80\x50\x73\x80\x3d\x0f\x4c\x03\x36\x6e\xc8\xe9\xac\x9d\x23\xb3\xdc\x2b\x78\xe5\xda\xd9\xf0\xf1\x0d\x01\x53\xad\xf1\x9a\x1e\x86\x48\xc6\x18\x83\x40\x89\x71\xad\x73\xc8\x47\x8f\x1b\x42\x55\xd2\xe9\x21\x15\x17\x5b\x69\x93\x20\xc7\xd5\xe8\xde\x4b\xa8\xa5\x11\x14\x55\xdd\x2b\x96\xd4\xe8\xe2\x0d\x68\x52\x4c\x81\xa7\x46\xf3\x2e\x72\x6f\x52\xca\x9f\xe4\xf0\xfd\x13\x72\x28\x41\x6a\x5d\x80\x3f\x25\x3e\x78\x5d\xf6\x50\x04\xd3\x9d\x19\x66\xd3\x7c\xa0\x79\x01\xa5\x35\xef\x21\x9f\xe9\x54\x36\x17\x8b\xe9\x0b\xd3\x65\xee\xaa\x14\x13\x46\x34\xdf\x4a\x6e\xcd\xb6\x1b\x94\xbc\xca\x69\xe4\x51\xf4\x95\x2d\xae\xbc\xec\x3e\x20\xd9\x40\x56\x14\xbc\x8b\x8d\xc0\x14\x2d\x97\x97\x11\x52\xfd\x82\x09\xbc\x19\xde\xc3\x89\xc6\x10\x1d\x02\x37\x55\x52\xe0\x1d\x36\x12\x26\x54\x2f\xbe\x79\x08\xd2\x1b\x2e\x3a\x46\x25\x3f\x1f\x63\x9f\x02\xe4\x43\xb2\x34\xc6\xa9\xfb\x46\xb3\x77\x9a\x48\xa8\x52\x0f\xe0\xd2\x8d\xc0\xdc\x4b\x39\xd9\xa5\xdb\x16\x05\x4b\xb2\x60\x06\x92\x4b\xc3\xa2\x49\x10\x6b\x38\x97\x2c\x91\x11\x74\x4a\x01\xd2\xfc\x2f\x66\x30\xf5\x10\xe5\x49\xed\x25\x51\xe1\x72\xf1\xe2\x5c\x7c\xab\x07\x47\xd0\x77\xcb\x1d\xc7\xc2\x38\x75\x01\x05\x4d\x8a\x8d\x78\x48\x77\x5a\x44\x31\xe3\xfc\xbb\x38\x65\x22\x73\x7a\xa8\xd5\x05\xd9\xc3\xb2\xde\x6b\x52\xbe\x0e\xf0\x30\x96\x13\xa9\xfb\x45\x3f\x27\xda\x58\x60\x8b\x27\x94\x20\x92\xf2\x1e\x44\x5d\x0f\x45\x5e\xf1\x46\xb8\x69\x59\x79\x4c\x55\x9d\x8f\x03\xec\x61\x62\x07\x37\x80\x0e\xc6\xb9\x63\x32\xc7\x8b\x82\x2f\x53\x45\x51\x45\x5b\xb6\x70\x1c\x6c\xa5\x00\xee\xd3\xa4\x96\x79\x5e\x74\x41\x29\x92\x0d\x49\x84\x4d\x86\x3b\xa5\x75\x22\x4b\xda\x2d\x29\xd8\x9b\x3e\xe6\x53\xb3\x5d\xf3\x3c\xaf\x2d\x64\xb2\x15\x21\x6b\xbd\x54\xe8\x60\xa9\x77\xc7\xbb\x2a\x2b\x50\x4a\x80\x65\x9a\x7e\x29\x24\x95\xb5\x9a\x7f\x67\xd7\x70\x7c\xbd\xff\x8f\xd9\x43\xbf\x82\x48\x3c\xc3\xf5\xee\x1e\xe6\xae\x4f\x64\xd6\x40\x18\x2f\x77\xfd\x67\x5c\xfe\x17\xa9\x18\x88\x46\x1e\xff\x15\x78\xf9\xcd\xe2\x53\x7c\x5d\x89\x78\x65\x7d\xf3\x7a\xef\x05\x9d\x1f\x47\xbf\xad\xa4\x77\x45\x57\x30\x7f\x0f\x61\x08\xdd\xf7\xe4\x9c\x02\x42\x91\x3f\x92\x76\x50\x94\x90\xa6\xa5\x2e\x67\xe8\xad\x94\x4f\x04\x06\x90\x5c\x43\x97\x5f\x03\x68\xe9\xf9\x20\x9f\x30\xe4\x23\x2b\x27\x25\xba\x61\x28\xa7\x26\x79\x6a\xe5\x04\xbd\x98\x8e\xe1\x04\x12\xe0\x9d\xa0\xe0\xaa\x8a\xae\xe8\x99\xaa\x6a\x4d\xab\xbb\x30\x51\xac\x8e\xe4\xb8\x48\x5f\x97\x24\x71\x00\xe5\x77\x24\xd5\x69\x86\x2a\x92\xd6\x6a\xef\x48\x8a\xbd\xf9\xab\xf6\xe6\x2a\x87\xee\x52\xcf\x72\x01\xa7\xb3\xd6\x53\xfc\x76\xf4\x3b\x79\xd9\x7b\x71\xd5\x14\xb9\x61\xd7\x32\xc7\x9d\xec\x79\x29\x53\x6b\x34\x70\x0c\xb9\xe2\x6a\x71\x16\x4e\x16\x27\xa5\xe4\x3a\xa0\xd2\xc7\x95\x78\x54\x0c\x0a\x46\x99\x80\xdf\x82\xe8\xde\x8e\xe6\xa1\x42\x2d\x9a\x77\x9b\x85\x96\xd0\x3a\x9d\xd2\xf5\xd7\xb2\x8d\x9b\xae\x50\x55\xfc\x46\x65\x5d\xa3\x3d\x7d\x83\xed\x80\xc2\xa9\x2d\x43\x5b\xe3\x4d\x8d\x5c\x0f\x5e\x88\x7b\x4f\x51\x7a\x32\xfa\x03\xfb\x43\x44\x26\xe9\xbf\xf8\x01\x93\xa4\x32\x81\x1b\x80\xd8\x01\x75\xac\xfc\x2a\x64\x83\xf8\x82\xcb\xc3\x73\xca\x8f\x37\x89\xb1\x6f\x99\x5f\x60\x60\x19\xf2\xcb\x23\x02\x79\xe5\x97\x20\x94\x1f\x6e\x80\xcf\x6b\xaa\x06\x14\x4f\xe3\x0a\x30\x3f\xc7\xa5\x07\x28\x9e\xbe\x91\xce\xa1\x6c\x7d\xbd\x5c\x35\x03\xf9\x6c\x23\x79\x52\x9e\xb6\xf9\x00\x58\x29\xae\x46\xb2\xbc\x14\xdf\x96\x30\x13\x10\xaa\xe3\x26\x20\xb4\x3e\x3b\xe5\xc3\x0d\xf9\x79\x1f\x82\x96\x49\x85\x25\x89\x58\x48\x10\x76\xd1\xe0\x41\x20\x37\xff\xe3\xa8\xfb\xfa\xf7\x69\xe7\xcb\x23\xd2\xdc\x23\x72\xf3\x23\x72\xf3\x23\x72\xf3\x23\x72\xf3\x23\xf8\xde\x23\x72\xf3\x9f\x10\xb9\xf9\xbe\x62\xda\x53\xca\xcb\x72\x15\xa2\x35\xab\x42\x9f\x3f\xbc\xf0\x5e\x0d\x27\xc3\x47\x55\x68\x11\xd0\xdd\x7b\x55\x82\x96\x88\xcb\x1b\x2f\xc2\xc2\x1c\x9a\x2a\x08\x8b\x5c\x6a\x2a\x47\x03\x88\x62\x55\x6b\xc1\x5a\x98\x43\x4c\x06\x50\x20\xe8\x98\x39\x44\x8b\x97\xec\x47\x23\xfe\xf5\x11\x39\xf8\x11\x39\xf8\xaf\xa0\xbc\xcc\x41\xe5\x31\xd1\xad\x0e\x0d\xe8\xbd\x32\x5f\x72\x7f\xc7\x09\xa8\xe6\xf9\x14\x0e\x72\x54\x37\x4c\xf4\x7c\x44\x35\x7e\xb8\xa8\xc6\x72\xc2\x97\xa3\xa3\x04\x90\x5c\xa3\xc1\xba\x7d\xe2\xbd\xf0\xdb\xec\xe2\xc5\x50\x8f\x9c\xf3\xef\xad\xa2\x34\xf6\xd6\x3c\xd6\xba\xfc\x2b\xb9\x62\x1e\xcf\xd9\x47\x27\x81\xa6\x7d\x0d\xf4\xd9\xbd\x4b\x81\x47\xf7\xc5\xc3\x71\x5f\xc8\x63\x7c\x49\x3a\x81\x94\x1e\xeb\x2d\x7f\xfd\x1c\x8c\x9e\xf5\xfe\xf1\xeb\xa3\x4a\xf0\xa8\x12\x3c\xaa\x04\x8f\x2a\xc1\xa3\x4a\xf0\x78\xf0\x3e\xc4\x83\x97\x6f\xab\x85\xcf\x5d\x1e\x2a\xb8\xd6\xf3\xf6\xc5\xe7\x5f\x5f\xbe\xfa\xf5\xa5\x3e\x2c\x4d\x17\x8c\x46\xe3\x60\xec\x5a\xb7\xba\x1e\x40\xfe\x6b\x37\x8f\x5a\x8f\x02\x7b\x4a\x50\x94\xb6\x93\x95\x3b\x79\x01\x91\x08\x85\x9a\xb9\xe6\x56\x9a\xd8\xba\xa1\x6d\xab\x08\x67\xd3\x08\xf2\x14\x6d\xe9\xa6\x5c\x14\x4c\x3d\x30\xbb\xc8\x9c\x47\xf5\x1b\xd0\x9d\x27\xd5\xac\x31\x0b\xc0\x1a\xe2\x00\xd6\x28\x96\xbb\x5e\xf8\x5c\x49\x03\x0b\x44\x94\xd9\x76\xcd\x90\xa9\xf2\xd9\xaf\xc8\x18\xad\xc7\x98\xb9\x53\x44\x15\xd6\xcc\x9f\x1f\xaa\x88\xd0\xc6\x79\xa1\x8a\x90\x5f\x4e\x52\xa8\xf9\x30\x92\x41\x15\x9e\x2c\x21\x09\x74\x2e\x2e\x45\xba\x88\x66\xcb\xaf\x24\xa4\x8f\xe0\x9b\x85\x0f\xa1\x18\x9f\x78\xbd\xd7\xd5\x47\x1f\x4f\x7f\xbf\xea\xec\xd7\x3e\x88\x6a\x65\x29\x19\x51\x7a\xbd\x21\x37\x38\x1f\x04\x8a\x91\x75\x54\xe1\x20\xaf\xe9\x8c\xff\x50\x65\x58\x02\xde\x2c\x4a\xdc\xe8\x32\xf1\xb2\x67\x4a\xea\x3a\x35\x89\x94\x9e\x02\x44\x0c\xcd\x8e\x48\xdb\x42\xda\x4b\x5e\x48\xd4\x72\x04\xe7\x22\xe9\xa9\xf0\x66\x57\x4b\x48\x84\x48\x2e\xb9\x91\x21\xa3\xe0\xae\x49\x81\xae\x96\x7d\x96\xdd\x2f\x69\xd5\xef\x22\xc0\xef\xa5\x31\x83\x63\x6a\xeb\xa1\xc5\x4a\x5a\x91\x28\xe3\x2e\xa0\xa9\x41\x6b\xe1\xc4\x6b\x02\x78\x97\x43\x34\x66\x0f\x91\xa4\x51\x17\x0d\x87\x75\xe1\x8f\xaa\x2e\xed\xe3\xd9\x65\x7b\x1c\x0c\xa8\x51\x07\xe6\x56\x42\xdc\x9e\x08\x3a\x12\x66\x74\x38\xb0\x8c\x3f\x82\xf2\xe4\xae\x85\x48\x74\xcc\xdf\x88\x54\xa8\xd4\xfb\x65\x1c\x6b\x1a\x57\x5e\x89\x23\x9f\x3d\x72\x18\x1d\x59\x30\xad\x7a\x9a\x44\x16\x7e\x39\x05\x6f\xb1\x10\xaa\x6a\x49\xa1\xf7\xcc\x79\xc6\x81\xa9\xd9\xfc\xc4\x47\x98\xf8\x8b\x2d\xa3\x3e\x0e\x94\x60\xc8\xdc\xba\x4a\xb6\xb2\x78\xb0\xf8\x86\xf6\x3e\x11\x45\x25\x99\xfa\xc3\xeb\x49\xe3\xc3\x2b\xb0\x03\x4a\x20\x58\xb7\xf7\xf2\xd3\xb7\xd1\xf1\x97\xb7\x6f\x5e\xea\x93\x7c\x08\x1c\x60\xa2\xaf\x07\x92\x82\xa5\x05\xbe\x8f\xd9\x03\xae\x3c\x91\x82\x6c\xe1\xbb\x88\x79\xfa\xd2\x77\x59\x48\x13\x36\x3d\xc2\x01\x74\x73\x02\x68\x75\xb1\x06\x33\x85\x58\x90\xca\x3a\x9a\x40\x7e\x88\xfa\x98\x16\x16\xdb\x4a\x4b\x51\x2e\x5f\x13\x52\x1a\x97\x42\xa8\xbd\x2e\xad\xd4\xc6\x2b\xa1\x1d\xf3\x75\x50\xb9\xd9\x62\x4a\xa3\xfd\x96\x90\x9e\xda\x72\xe9\x71\x2d\x6b\xb7\x75\x56\xb4\xdd\xa2\x6d\xb2\x98\xce\x18\x60\x9f\x23\x6c\xc0\x75\xd7\xed\x9a\xb9\xf4\xd5\xac\x7b\xf6\x4b\x3d\x9d\x31\x02\x5e\xbf\x9e\xd9\x4c\xd7\x99\xa0\xb4\x5f\x5f\xc0\x3a\x58\x26\x9e\xc6\xda\xa1\x34\x02\x02\xec\x9f\x53\x12\x7b\xcd\xc7\x20\x18\x27\xaf\x4d\x30\x47\x67\xa7\x63\x38\x81\xa2\x0a\xe3\xb9\xa8\x46\xcb\x56\xdb\x3b\x59\x16\xd1\x32\x09\x04\xee\x7b\xdf\x13\xfb\xf7\x1b\xb8\x06\xa2\xa0\x95\xb0\x23\xc7\xc8\x66\xbf\xdb\x98\x3d\x60\x75\xb9\xbd\x11\x19\x1d\x05\x76\xc7\xe2\xab\x22\x99\xc5\x85\x56\x83\x62\x36\xaf\x19\x49\x7d\x46\xcf\x3f\x0e\x6f\x27\xb5\x0d\x88\xe0\x7a\x14\x49\x09\x82\x79\x90\x27\x9a\x8c\x22\xa7\x50\x52\x6a\xc6\x83\x6e\x7f\xa6\xd6\x9b\x49\x90\x47\xf8\xad\x8b\x1d\xe9\x3a\xd0\xe3\xcd\xbf\x76\x55\xf0\x95\x08\xe2\x24\x79\xc9\x85\xc1\xa0\xec\x9d\x1c\xb2\x4a\xe4\xcd\x88\x72\x3e\x19\x79\x02\x61\x6f\x0e\x8a\x2e\x33\x0a\x5e\xd4\x6a\xa1\x12\xbb\x9b\xa9\xbe\x56\xde\x7f\xc3\xc1\xe5\xd5\xab\x74\xa5\xb7\x2a\x3f\x88\x99\x0c\x24\x4d\xe4\x22\xfe\x8c\x7f\xda\xe0\x16\x05\x06\x5f\x8e\x81\x41\x98\xe2\x68\x0c\x09\x9e\xa4\x7c\x5b\xb7\x1f\x84\x9a\x6b\x0e\x11\x09\xe8\x7b\x79\xa8\xa4\x55\x64\x8a\xf5\xaf\x78\xa0\xe0\x0d\x2b\x3e\x49\x81\xef\x1a\x5f\xea\xd0\x31\x6b\x4e\xc7\xac\x92\x0e\xa7\x99\x77\x43\x59\x28\xc3\xe2\x4b\x3e\x26\x28\x00\xf9\x85\x00\x37\x46\x4e\xee\x58\xe6\x6d\xc7\xb4\xcc\x76\xfc\x57\x57\xfd\x6b\x96\xfa\x6d\xc6\x7e\xeb\xe8\x9c\xb6\x91\xa5\x42\x68\xe2\xa5\xcd\x2d\xd3\x0e\x63\x91\xe7\x89\xc5\x58\x72\x95\x48\x71\x0e\x22\x96\xe7\x71\x46\x5f\xe2\xe1\x30\x80\x4c\x6e\xb7\xff\x6f\xb3\xac\xfc\x69\x41\x5b\x12\x5e\x2a\xd5\x52\xa7\x5d\xd8\x56\xb1\x51\x3b\xf0\xd0\xf4\x0c\x48\x20\xf0\xdc\x50\x27\x20\xb8\xaa\x1a\xea\x14\xe4\x61\xc4\x19\x8b\xa2\x16\x53\x0d\x02\x02\x81\x59\x08\xa5\xa4\x5d\x10\xba\x15\x32\xca\x76\x38\xb3\x47\x04\x71\x04\xe4\xc0\x88\x3f\x45\x14\x50\x02\xfc\x40\xa6\xd4\x0a\xef\x3c\xfb\x82\x8b\x7c\x53\xec\xfa\xd9\xd1\x2d\x0a\xde\x0b\x46\x5e\x5a\xa6\x65\xb4\x5b\xa6\x9e\xc8\x14\x01\x39\x50\x2a\xe0\x5f\x83\xc0\x30\x2d\xfd\x52\xd2\xae\x67\x1d\xfb\xd4\xe8\xf8\x14\xfb\xc4\x0f\x65\xec\xdb\x65\x3a\xc2\x80\x66\x5b\x14\x7c\x97\xbb\x23\xb5\x1d\xe2\x3f\xba\x96\x79\x83\x5c\x3a\x56\xfb\x4b\xf1\x25\xde\x0e\x63\xc8\x2d\x63\xe5\xb9\x5b\xed\x73\x7c\x15\x48\xd6\x84\xc4\xdb\xf8\x0f\xc9\x98\x68\x03\x59\x66\x2b\x29\x1a\xc5\x16\xa2\xcd\x99\xa1\x79\x23\x5a\x87\xf1\x1b\xcd\x46\x3f\xc6\xd7\x90\xd8\x14\x90\x11\xa4\xf7\xca\x05\xed\xf2\x29\x5d\xd0\x5c\x61\x18\x23\xd7\xe5\x45\xa8\x99\xf2\x96\x1d\xcc\xad\x90\xe7\xec\x9f\x1a\x0b\xbc\x6d\x45\xcb\xf1\x36\xbd\xc6\x6b\x2d\xf0\x5a\x04\xcd\x1a\x11\xd4\x70\xc7\x69\x1c\x60\x25\x75\x27\xf8\x96\xb3\x65\xb9\x3f\x9e\x72\xe2\x83\xe9\x54\x57\x7c\x02\x05\xb2\x6a\x23\x3b\x9f\x40\x54\xc0\x11\xf9\x69\x88\xbb\x78\xb2\x03\x3a\xe3\xd0\x1f\x5c\xd7\x11\xcd\x9f\xf3\xaf\x0a\xb4\xac\x69\x23\x5f\x64\x21\x92\x5b\xf6\x9d\x4a\x14\xbc\x22\xb1\xa3\x87\x63\x17\x2f\x28\xb8\x7f\x11\xdc\x71\xa5\x05\x5d\x31\xa0\x1c\xe4\x5d\xba\x9b\x4f\xf2\xe7\xba\x2e\xcf\xa5\xdf\x79\x24\xd6\xc6\x82\x46\x4b\x1a\x05\x7b\xbd\xd5\xa7\xdf\x1e\x7d\xda\x9b\x8c\x0b\x9c\x46\x12\xe3\xb2\x18\x20\x26\xeb\x3d\x72\xe1\x00\x13\x40\xa1\x7b\x2e\xb0\xd0\xaa\x3d\x95\x9d\x2d\xab\x2b\x35\xf9\xb4\x6d\xcb\x21\xcb\x2c\x81\x87\x64\x45\x94\x44\x0e\xd0\x58\xf7\x4f\x00\x94\x32\xe8\xe2\x9b\xf1\xa7\x18\x31\x2e\xf6\x9f\x5a\x26\xf6\xe3\x0f\xc7\x5e\xc6\x9f\x92\x40\x25\x17\xe3\x22\x89\x24\xf1\x10\xc6\xe1\x50\x05\x0f\x4d\xc2\x32\x74\x62\x61\x66\x47\x3e\xa4\x8a\xf2\xcc\x11\x06\x7a\x06\x81\x54\xfd\x5b\x0b\x7e\x7c\x59\xdd\xc1\x92\x46\x23\x37\xe6\xfd\x0c\xe7\x32\xc1\xe2\xac\xb3\x06\xa2\x20\xbe\xaf\xa9\x25\x94\xed\xa8\x16\x35\xe2\xb1\x7b\xf1\x9e\xa5\x87\xb3\x44\xa9\x93\xe5\xcc\x7a\x85\xd0\xd6\x3f\x86\x27\x9f\xa7\xd3\xcf\x4d\xe1\xa9\x96\x7a\x39\x92\x5f\x2b\x1a\x1f\xad\x8a\x0a\x75\xcf\x17\x17\xa5\x13\xb8\x9a\xa5\x21\x44\xf0\x7a\xb3\xb4\x6e\xf0\xc7\xe0\xf4\x63\x7f\x0e\xe4\xb2\xd2\x39\x66\x43\xb3\x79\x05\x21\x3f\xe7\x8f\xcf\xcd\xb4\x5e\x9d\xac\x55\x63\xb7\xe4\x4e\xd4\x48\xa8\x11\x77\xa0\x91\xc2\x19\xfa\x1e\x0c\x02\x65\x5d\x8b\x32\x16\xd1\x1d\xb8\xa8\x8c\x7e\x8d\x02\xd4\xf7\xf2\x3a\x67\x8d\x72\xff\x59\x9d\x36\x39\xee\x84\x68\x96\x27\x62\xf2\x45\x46\xce\xcb\xf7\x84\x80\xcc\x65\x56\xa7\x82\x2c\x3b\x56\xa6\x24\x46\xbe\xc0\xec\x0a\xd4\xb4\x92\xe5\xbc\xf8\x46\x99\x82\x11\xf2\xa3\xaa\x37\xeb\xdc\x1a\x2f\x8f\x89\x1f\xcc\x8e\x76\x0a\xb6\x06\xf2\xaf\x21\xe1\xd5\x45\xea\x0a\xd0\x18\xbf\xb6\x56\x55\xa4\x52\xe5\x8d\x3b\x04\x79\x38\x20\xbc\x36\x2d\xd3\x17\x48\x6a\x1e\x10\x5f\x82\x11\x7c\x8b\xfc\xab\x20\x97\x4b\xcb\x63\xd2\xd8\xe7\xd8\xf3\x15\x1c\x51\xe1\xb8\x12\x1f\x3c\x5e\xa3\xa5\x50\xfb\x4b\xe6\x26\x9e\x2b\x51\x34\xf4\xab\xc9\x6b\xec\x8b\xbe\x99\xa9\x11\xef\x9e\x98\x56\x79\x43\xa3\x87\xf6\x9b\xca\x6c\x8a\x4e\x6d\x25\x64\x2e\x52\x04\xbb\x78\x8b\x2e\x1c\x64\x7b\x4f\xa9\x56\x6b\xa5\x53\xcc\xa7\x90\x24\xfe\x22\x74\x8a\xbf\xd8\xba\x38\x4b\xbd\xbb\x22\xba\xc5\x02\xcc\x75\xba\x34\x4a\xa3\x17\xc4\xea\x4e\x7d\xa5\x6d\x43\x05\xf6\x63\x0b\x3c\xfe\x46\x2e\xf8\xe4\x1d\x59\x9b\xa8\x5c\xf7\x2c\xba\x58\xd0\x1c\x68\xfa\x68\xc7\xe5\xc8\xde\x64\x6a\x96\x29\x6d\xd5\x69\x5e\x73\xa0\x85\x4b\x5e\xfe\xe3\x37\x72\x51\xa1\x93\x58\xe6\xff\x13\x85\x9c\x97\x8a\xdd\x78\x81\x96\x56\x1a\x8d\x62\xdd\x4b\x00\xca\x52\xe8\x01\xd9\x3d\x99\x0d\x82\x97\x20\xbe\x65\x95\xe2\x6b\x2d\x1b\x3d\x9c\xef\xd2\x15\x5f\xed\x3a\x58\x7c\x79\x49\x04\xf7\xb5\x2e\xa7\x8b\xee\x97\xef\x5d\xf4\xa2\xd3\x54\xc5\x65\x53\x53\xc3\x73\x12\xc3\x5e\x17\x9e\x9a\x9c\x09\x9b\xfc\xdf\xc8\x57\xa2\x08\xf0\xf2\xe7\x13\xbb\x9a\xe0\x1b\x25\x6e\x41\xe3\x08\x2a\x96\xe5\xa2\x41\x95\xd0\x78\x2d\x0b\xa8\xf5\x32\x04\xfd\x5a\x38\xf9\x1a\xc9\xb9\x9c\x75\xc9\x49\x5f\xd2\x3a\x8c\x39\xb0\xde\xf5\xb8\x7f\xe5\xbd\xfd\xd4\x6e\xbf\x99\xc3\x1a\xaf\x25\xa6\x6a\x56\x47\x10\xf8\xec\xf1\x9c\x8a\x0c\x42\xdd\xcc\x56\xeb\xa8\x35\x25\xd8\x12\x57\x44\x34\x95\xcb\x5a\x19\xca\x66\x5b\xef\xe2\x38\xb9\x7e\x3b\xf8\xdc\xfb\xf5\xb6\x20\xc8\x10\xdf\x34\x72\x17\x0b\x99\x91\x8a\x2f\x14\x3f\xf0\x3f\xca\xd3\xa5\xa5\xe9\x11\x17\xb7\xbf\x4f\x97\x5c\x76\x52\x96\x3b\xcd\x0f\xc0\xed\xf2\xea\xc5\x2f\xee\xfb\xc9\xb3\xd1\x1c\x6e\x17\x4a\x9a\xfb\x53\x56\x32\x31\x0b\x9b\xfb\x93\xd0\xa3\xc8\x0e\xa0\x07\x07\xd4\x76\x09\x9e\xba\xf8\x66\xdd\x46\xff\x73\xbc\x7d\xf3\xfa\xfd\xe9\x07\xfd\xc4\xb8\x6e\x1c\x43\xa8\xdd\x7c\x7d\x10\xa0\x81\x32\x94\x58\x63\xc0\x04\x7d\xc7\x3e\x33\xbe\x71\x80\x62\x28\xf3\xfc\x1d\x89\xc9\x0b\x19\x2e\xf1\x2a\x41\xe3\xb8\x6d\x72\x2d\x32\x00\x53\x1a\x12\x8d\x39\x56\xe7\xce\xa3\x94\x06\xf5\x32\xa3\x7e\x9d\x1d\x4a\xd0\x88\xdb\xa1\xaa\xb6\xcd\x38\xf8\x0f\x38\x3b\x61\x2c\x67\x3c\x8c\xf8\x6f\x47\x4f\x17\x03\x22\xe0\x29\xf4\xdf\xfb\x47\x84\xe0\x1b\xf9\xfa\xfc\x68\x8d\xd9\x6e\xed\xd2\x0b\x64\xe9\xbd\xf3\x0a\xfd\x76\x19\xdf\x11\xdf\x25\x62\xe1\xd4\x2c\xaa\x5d\x0f\x5c\xd2\x53\xf3\x29\xa2\x28\x32\x6d\x6f\xcb\xca\xdb\x6f\xc6\x44\x34\xc0\xbe\x01\xd9\x96\xb5\xa7\xf8\x06\x92\x48\x5e\xc8\xcc\x3f\xf6\xb3\x26\xbc\xaa\x8c\xae\x82\xa5\x15\x3b\xab\xb3\xd9\xcc\x31\x49\x71\xf0\x70\xd5\xea\x08\xe3\xda\x83\x32\xf6\x94\xc9\xce\x3e\xbe\x35\x4b\x6b\x0f\x72\x5f\x70\xdc\x45\x2a\x27\x40\x1c\xd7\xf5\x2b\x11\xea\x18\x8a\x93\x18\xcf\x0e\x0f\x65\x16\x75\xa4\x95\xb0\x3b\xec\x5f\xc1\x99\x94\xc1\x45\x1b\x86\x12\xc0\xdd\x9e\x6f\x91\xf0\xf4\x44\x46\xae\xd6\x4b\x9d\x25\xae\xba\x34\x1e\x77\x78\x4d\x43\xaa\x21\xd3\x4e\xc2\x03\xc7\x70\x70\x05\xdd\x24\xf8\x96\x02\xe4\x07\x4a\xfd\x46\xc9\xae\xec\x5a\x56\xc9\x94\xae\xfc\x38\x9f\xa9\x68\xb8\xe2\x16\x55\x37\x50\x4e\xde\x6c\x0a\x4d\x49\x90\x32\xbf\xda\x9a\x81\xc9\xb6\x17\x44\xae\xac\xf6\x5f\x77\xce\x7c\xde\x78\xa5\x44\xb5\x20\x95\x14\x2b\x25\x6e\xbe\x76\x79\xe1\x26\xb7\x77\xab\xd3\x27\xb5\x4a\xc6\x42\x6a\xcb\x14\x8c\xa0\xed\x81\x19\x0e\xd7\x1d\x15\xdf\xfe\xf4\xfd\xd9\x9b\x77\xc3\x60\x0e\x4b\x72\xe4\xe1\x3e\xf0\xb8\x0e\x07\x95\x3c\x89\xe4\x40\x7d\x05\x26\xfd\x90\x8c\x20\x89\xcb\x5a\x71\x57\x57\xfc\x46\x83\x93\xff\x97\x90\x52\x48\x8a\x75\x90\x2a\xd4\xa6\x8e\x65\x82\xe9\xd4\xee\x13\x08\xdc\x01\x09\x27\xfd\xa0\x5e\x10\x78\x22\xef\x47\x9c\x02\x7b\x02\xfd\x30\x3f\x56\x25\x68\xa5\x68\xd0\xd2\x30\xd4\x8d\x67\x61\x46\x54\x28\x42\xeb\xb0\xb3\x95\x15\xbe\xd8\x4e\xc9\xc2\xe3\xac\x79\xbf\xbc\xbb\xee\x7f\x78\x71\x7e\x71\xa4\xdf\x2f\x09\x84\x8f\x19\x0c\x30\x89\x11\x8b\x2c\xd3\x45\x13\xe8\xcb\x04\xb1\xdf\x43\xcc\x33\xee\x44\x65\xc4\xf4\x6f\xd1\x77\x49\x85\x73\xf9\x37\xf6\x03\x4a\x00\x92\x7f\xa4\x1f\x02\xd7\x00\x79\xc2\x4d\xca\x0b\x0f\x0f\xa0\x4f\xf9\x4d\x4b\xa9\x53\x3b\x66\xed\xcb\x88\xea\x32\xf7\xf6\x0d\xa2\xe3\x79\x5e\x4d\xab\x35\xe3\x5e\x4e\x87\x44\xd4\xe3\x89\xe7\xdb\x65\x6a\xae\xbe\xd3\xa2\xb2\x1b\x95\x8a\x6b\x3a\xdb\xdd\x4c\x27\x78\x47\xd7\x65\x91\x4e\x07\x3c\x18\x0c\xa0\x9b\x1b\x6a\x3a\x89\x22\xf4\x39\x7d\x45\x69\xe6\x7a\xf5\x35\xcc\x55\x98\x0e\xd0\x64\xea\x41\x3b\xba\x44\x2d\x4a\x85\x51\x2b\x32\x33\x2a\x7d\xec\x42\xbe\x63\x43\xc0\x53\xdd\x9b\x42\x85\xc4\x7a\x5f\x72\x5e\xf3\x26\x8d\x1b\x48\xa0\x01\x3d\x34\x42\x7d\x0f\x1a\x43\x4c\x0c\x28\x7a\x89\x14\xc1\xda\x0a\x73\xac\xa4\xee\x5a\xa6\xcd\xfe\xb0\x91\x9f\x1d\xc1\x51\xbc\x90\xab\x90\xc7\x0a\x58\xc1\xcb\x3b\x37\x2a\xa3\x5f\x3a\x7a\x40\xa0\x11\x6f\x2e\x03\xf9\x46\xb2\xbb\x14\x55\xac\xb3\xcd\x7b\x6d\x64\xdb\xe4\x14\x96\x2d\xab\xb3\xdd\x84\x5f\x7c\xc1\xbc\x44\x1e\x85\x04\xba\x73\x00\xb5\xa5\x06\xcc\xa3\x8a\xd5\x11\xf5\x52\x23\x62\x6f\x0f\x65\x57\xea\x53\xdd\xdc\x53\xe6\xa5\x3e\xeb\xdf\xe7\x59\x90\xc9\x4b\x8d\x32\xfd\x3b\x8c\xa0\x46\xbc\x89\x85\xe5\xd2\x18\x14\xb7\x18\xe7\xd7\x64\xe0\x30\xba\x56\xa7\xa3\x5d\x06\x5a\xce\xb5\xe7\xe1\x5c\xbb\x39\xe7\xda\x56\xa7\x93\xe2\x5c\x2a\xf3\x5b\x48\x8d\xdb\x31\x08\x03\x0a\xeb\x17\x1f\xce\x32\xe7\x03\x14\x61\x29\x81\x01\xa3\xb6\x0c\xec\xab\xc3\xd5\xf5\xd5\x74\xf4\xc5\xf4\x36\x76\x2b\xd4\xdc\x5d\x9a\x9e\x96\xb3\xbd\xf6\x73\xb3\x5f\xc0\xb8\xbd\x39\x96\xc9\x5e\xe3\x55\xb2\x67\xed\x37\xe1\x4d\xac\xae\x2c\x8d\x3f\x27\x51\x8b\xca\xd0\x77\xeb\xf2\x68\x67\x0e\x1e\xed\x34\xe6\xd1\x8e\xb5\xdb\x84\x47\x5c\xc5\x5b\x1a\x7f\x7e\x65\xad\x19\x1e\x9a\x20\x6a\x8c\x11\x55\x06\xbf\x55\xff\xe4\xd9\xb2\x1a\x9d\x2f\x5c\x7f\x9d\x07\x01\x34\x45\xf9\x39\x6b\x45\xa1\x37\x7f\xae\x1c\xa6\x7d\x1a\x75\x47\xd3\xb5\x7a\x55\x6e\xc2\xf2\x5b\xa6\xd5\x59\x3e\x59\x8b\x65\x31\xfb\x47\x80\x20\xda\x13\x48\xc9\xda\x4b\x46\x6d\xb6\x7b\x37\xdd\x9d\xfe\xac\x76\x0a\xfd\x78\xab\x5a\xdd\x97\xe6\xb9\x18\x60\x36\x06\xb5\x38\x43\x4c\x05\xf5\x91\x3c\x1a\x11\x30\x1d\x8b\x92\x46\x05\x75\x8f\x39\xcc\xb0\x4d\xd1\x04\xda\x01\x24\x48\xc5\x5a\x65\x9a\x9d\x99\x4e\xb2\x8a\x03\x25\xd8\x4f\xc9\x7d\x46\x3a\x0d\xab\x32\x5e\xb6\x88\xea\x01\xf6\xc2\x89\x1f\x18\x01\x1c\x60\xdf\xad\xa0\xbf\xac\x89\xbc\xdd\x54\xfc\x46\x31\x8c\x61\x6a\x0f\x4f\x09\x1e\x11\x18\xc4\x69\x7f\xa9\xc8\xe9\xe8\x47\x5d\x5e\x9a\x65\xc6\xf5\xa0\x92\x0c\x50\x89\x9c\x21\xf3\x29\x63\x8e\xa6\x12\xcc\x79\xc5\x9a\x81\x74\x9e\x47\xbe\xd1\x09\x88\x9d\xcb\xfa\x32\x93\x91\x69\x58\xde\x5e\xa1\x75\x38\x6f\x96\x72\xe1\x54\xb0\xc1\x4f\x90\x8f\x26\xe1\xa4\x70\x56\x74\xf6\xa8\x8f\x6f\x08\x98\x9a\x5a\xa0\x31\x39\x0e\x1e\x29\x59\x8f\x7d\x3c\xc0\x12\x53\x20\x8c\xcb\xcb\xd2\x1a\xda\x75\x13\x32\xd5\x08\x7d\x01\x3f\x84\xb0\x5f\xcf\x42\xed\x09\x8c\x21\x26\xbe\x38\xa8\xf9\x34\x34\x6b\x57\xda\xce\x01\x47\x97\xcd\x78\x18\xe4\x15\xcb\xd3\xf1\x77\x75\x60\xc6\xa6\xea\x12\x24\x30\x80\xe4\x1a\xba\x47\x13\x0d\x80\xd9\xe9\xf8\xbb\x11\x3d\x50\x37\x94\xb3\xc6\xf0\x27\x70\x82\xc9\x6c\x41\x0e\x24\xab\xa3\x3f\xa3\x30\x28\x5d\x18\x92\x2b\x45\xda\x4e\x13\x8e\xa0\xe7\x8d\x39\xb2\xac\xb9\x9c\x83\x5c\x85\x54\x46\x40\x2d\xf0\xd0\x55\x44\x3d\xa4\x8f\xf0\x05\xb5\x01\x7c\x3b\xb3\x29\x18\xad\x59\x11\xd8\xd9\xb9\x3a\xbf\x00\xbf\x6c\xd7\xc7\xd2\xa9\x86\x9c\x94\xd9\xd7\x99\x6b\xcf\xcc\xb7\x09\xec\x8e\x29\x8c\xf2\xd0\x33\x8e\xb1\xef\xc3\x01\x35\x38\x73\x0c\x0a\x82\x1c\x54\xde\x19\xfb\x25\x11\x71\xcb\x99\x54\x39\x13\x0b\xcd\x27\x81\x23\x0e\x41\x7b\x83\xe8\x60\xbc\xf6\xa0\xe9\x57\x5b\x9f\xf6\xde\xee\x0d\xf7\x8a\xd0\xe9\x46\x45\x31\x2b\x6a\x90\x41\xbe\x9e\xc0\x07\xfe\x62\xb9\x77\x59\xbd\x97\x4f\x74\x32\x0a\x46\xef\x84\xfb\x5c\x5e\xe5\x1f\x47\x77\x4b\xf2\x2e\xd1\x92\x57\xb3\xd0\xe5\x1f\x01\x19\x8c\x5f\xf8\xa0\xef\xf1\xbf\xe3\xbb\x59\x7e\x03\x8f\xae\xa3\xdb\x17\x19\xf7\x9a\xc2\x63\x0b\x30\xa1\xd0\x4d\x28\xcd\x56\x47\x10\x39\xee\x1f\x24\x0b\xa4\x9c\xa9\x08\x7c\x19\x61\x8a\xe3\x37\x16\x89\x0a\xd1\x84\x2e\x4c\x09\x1c\xa2\xdb\x94\x0f\x86\x75\x74\x90\x1c\xea\xb1\xe7\xa5\x06\x2e\xf1\xbd\xd8\x45\x99\xb5\xbe\xe0\xbe\x09\x06\x63\xc8\x7a\xb6\xe1\x35\x33\xb5\xd6\x0f\x94\xff\xcb\xf4\xa2\xfb\xee\xdb\xde\x8b\xda\x22\xb1\x11\x7e\xa2\x99\x8b\xe6\x89\xee\xfe\xe7\xd4\x20\x34\x71\x43\x4d\x71\x14\x0b\xf1\x70\x69\x19\x6a\xa3\x5e\xcd\x6c\x0c\xc8\x58\xac\x9e\xa6\x10\x54\xb5\x5c\xcc\x24\x6f\x7a\xc8\xbf\xba\xc0\x47\x31\xe4\x77\x4d\x5c\xb1\xba\x10\xd3\x7a\xeb\xe5\x62\x8c\x02\x23\xe9\xb3\xc8\x2c\xa9\x19\x1c\x55\x1f\x4b\xb6\x12\xe5\xba\xbc\x49\x69\xb4\x16\x5b\x64\x55\xd6\x91\xb8\x3c\x81\x6e\xa9\xa5\xa4\xbf\xbf\x2b\x2b\xc5\x90\x00\xb6\x17\x57\x64\x28\x8e\xa6\xc9\xb5\x30\xf0\x10\xf4\xe9\x79\xae\x68\xc3\x7c\xf1\x35\x75\xf9\x53\xc1\x88\xca\x19\x26\xa9\x0a\xcf\xfa\xd0\xa8\x22\xac\xed\xe2\x17\x9b\x80\x6d\xab\x9b\xa8\x02\x27\xb9\xfe\xae\x4b\xd7\x11\x51\x4a\xbf\x38\xea\x9c\x69\x66\x11\xd5\xbb\xd2\xc8\x0d\x54\x87\x74\x9e\x5e\x60\x63\x4c\x04\x6c\xe1\x62\x97\x7e\xe5\x51\x56\xab\xa7\x2a\x11\x22\x15\x2b\xf7\xde\x16\xd0\xb1\x17\x83\xff\xe9\xa9\xc8\x35\x96\x93\xee\xca\x5a\x11\xdb\x38\x70\xc4\x7f\xb5\x6b\x44\xdc\x09\xac\x6e\xa9\xa8\xed\xcf\x5d\x30\xba\xe6\xec\x68\x7f\x6a\x22\xa2\xe6\xf0\x89\xe9\xce\xab\x25\xa8\x8a\x79\xf5\x6e\xb9\xfa\x62\xa4\x5d\xac\x59\x69\xfc\xf6\x6c\xd6\xfe\x38\x78\x8f\xf5\x16\x17\x27\x55\x9b\xc0\x81\x73\x71\x23\xf1\x80\x2a\xd4\xc6\xf4\xe2\x84\xb7\xb4\x81\xde\xa3\x28\x7d\x7a\x05\x3c\xb2\xdb\x22\x03\x3d\xd5\x99\xd0\x0a\xad\xaf\xe6\x3b\x78\x4b\x15\xd5\x47\xbf\x2d\xb3\x94\xd5\x78\xc8\x32\x27\xd8\x45\xc3\x59\x04\x1a\xde\xa0\xf6\x57\x29\x97\xc6\x20\x38\xa7\x78\x3a\x65\xf6\xa1\x1c\xb5\xcc\x6c\xab\xa3\x7a\x2f\x06\x93\x7e\x2b\xa2\xd3\xad\xaf\xe6\x0d\x20\x7e\x94\x7c\x97\xae\x93\x25\x7f\x61\x1a\x15\x85\xb7\xc2\x03\xac\xfa\xc1\xde\xb1\xad\x61\x8c\x41\x60\x04\x62\x18\x06\xa0\x6c\x19\x52\xf6\x12\xc5\x46\x32\x97\x06\x65\x5a\x69\x32\x78\xa7\x39\xca\x7a\x61\x05\xc2\x14\x4b\x87\xd8\xf3\xf0\xcd\xc7\xe9\x8b\x24\x96\xc8\x32\x6f\x00\xa2\x1f\x7d\x8a\xbc\x5c\xba\x7f\xdd\x85\x5b\xef\xae\x72\xc9\x13\x33\x60\x3b\x57\x33\x2d\xc8\x1f\xe2\x8a\x39\xb9\x41\x9e\x17\x4d\x46\x7a\x26\xea\x04\xb1\xa9\xae\xb1\x6e\xda\x35\x96\x40\x2f\xe7\xad\xb3\x66\x13\x51\x04\x3a\x9d\x63\xc8\x04\x8b\x3b\x4f\x82\x27\xb6\xcf\xad\xf1\xf9\xba\xfb\xfa\xd5\x44\xcc\x44\xb8\x96\xd7\x17\xed\x76\x5b\x07\x91\x5f\xef\xb8\x6a\x62\xc7\x96\x8b\xb4\xd4\x30\x72\xba\x6b\x22\xdd\x72\x83\x56\x9c\x45\x39\x76\x54\xc8\x2b\x4d\x82\x07\xa7\x53\x82\xc6\xe8\x18\x9c\x0c\xe2\xc5\x35\x5f\xf6\x35\xef\xef\xe7\xe0\xc3\x6b\x37\x35\x6c\x11\x35\x30\x25\xf0\x1a\xe1\x30\x38\x52\x1f\x53\x20\xda\x68\x7d\xd9\xdc\x29\x28\xdc\xb7\x12\x05\x23\xda\xfa\x0b\x69\x19\xc2\x01\x69\xf7\xf1\xed\x9a\xd5\x0a\xff\xb7\x37\xfd\x37\x1f\xa7\xfa\xd4\xd0\x9a\x38\x5c\x03\xec\x53\x82\x73\xb9\x36\x65\x56\x00\xf7\x49\xa6\xd3\xa9\xb2\xc2\x52\xb0\xc8\xac\x2c\x8d\x94\x4a\xe2\xc9\x1a\xfe\xfc\x97\xe8\xf6\x99\xff\x91\xc5\xf5\xe6\x31\x18\x63\xec\xc9\x34\x83\x4e\xfa\x9b\xdc\xbd\x74\xc7\x32\xff\x25\x28\xbb\xe0\xe6\xc8\x65\x94\xdc\x23\x68\x28\xce\xed\x09\x20\x3d\x57\xde\x4b\x25\xf6\x04\xa2\xcc\x43\x27\x62\x93\x4c\xf4\x11\xc7\x41\x31\x3e\xaf\xbe\x82\x53\x10\x0e\x55\xde\xd6\x42\x11\x13\xe5\xa3\xcd\x74\x5e\x55\xfe\xf8\x02\xfe\x80\xbb\x01\x4b\x82\xa1\x56\xb0\x03\x93\xbd\xb2\xe0\x96\x23\xd7\x90\xd8\x60\xf4\x30\x9c\xc0\xdf\xdd\x37\x93\xb7\xd7\xe7\x7a\x5c\x86\x26\xd5\x52\xc5\xb8\x02\x47\xfc\x37\x56\x91\x47\xdc\x8c\x8d\xac\xd5\x39\x0a\xa6\x46\x2d\x2c\xa3\x64\x6a\xb6\xcd\xca\x1a\xa7\xb9\xb7\xd3\x28\x77\xf1\xe8\x82\xb7\x22\x41\x88\xd1\x75\x41\x78\xd1\x95\x97\xac\xc5\xaa\x45\x5a\x4a\x1d\x70\x5d\x11\xd1\x32\xdf\xeb\x01\x24\xc3\x33\x4c\xe8\xbc\xef\xab\x69\x19\xc5\x8e\x80\x25\x6c\xab\xf4\x7e\x58\x6c\x73\xe5\xa3\xa5\xd6\xba\xbb\xde\xbc\xfd\xb2\x8f\xbe\xfd\xe3\x53\xcd\x72\x3e\xdb\x4a\x92\x6e\xa6\x0e\x4d\x11\xce\x0c\x25\xe1\x5c\x5c\xcf\x32\x6a\x41\xb6\x13\x08\x26\xc8\x1f\xd9\x43\xb4\x76\xe4\x23\x70\xde\xc6\x9f\xbc\xcd\xfa\x55\x73\x74\x1e\x31\x0f\x8b\x1c\x7a\x13\x87\x94\x1f\xea\xa9\x1d\xb0\x94\x75\x9f\xe2\xd9\x42\xec\xe7\x05\xd3\x1f\x00\xe7\x77\xcf\x9f\x87\xbb\xf8\xf5\xc9\x62\x88\xbb\x3e\x96\xe1\x11\xd5\x0e\x9e\xe2\x6b\x06\x1f\x53\x34\x44\x42\x9f\x67\x26\x2d\xe4\x95\xb1\x8a\x02\xdc\x4a\x72\xbc\xb6\x54\x57\x2f\x8f\x23\x33\x86\x90\x0e\xc6\x06\xe7\xb7\xde\x9c\xcb\x80\xee\x5f\x8c\x21\x7f\x3a\xe0\xc9\x48\xdc\x61\xc1\x66\x8c\xa7\xea\x20\x1f\x0c\x06\x30\xe0\x58\x6d\x8e\x71\x3c\x86\x83\x2b\x83\x8e\xa1\x31\xc0\xbe\xcb\x6f\xbb\x0c\x3c\x14\x5f\x70\x87\x30\xff\x98\x18\x34\x06\x0a\x0c\xec\x3b\xd5\x1e\xcf\xe2\xe3\x72\xde\x3b\x41\xfe\x46\x1e\xb8\xb8\x49\x11\xcb\x94\xbd\x98\xb8\x60\x54\x17\x0a\x63\xdb\xc5\x6c\x0a\x5f\x07\x1f\xfd\x2b\x9f\x63\x55\xd4\x8d\xee\x96\xd4\x80\xdc\xd0\x62\x14\xdd\x9b\x31\xa2\x50\x41\xd1\x8d\xd4\xd4\x31\x81\xc3\x54\x1d\x1e\x40\x3f\x12\xcf\x4c\x82\x3c\x65\xf5\x0e\xcb\xfc\x57\xdf\x03\xfe\x55\xd4\x03\xe1\x1e\x44\x1f\xe3\x29\xf4\x21\x31\x7c\x4c\xe0\x10\x12\x02\xd5\x75\xf7\x09\xc1\x1b\xe3\x03\xb8\x31\x5e\xe6\x97\xcf\x5c\x4e\x2a\x14\xbc\x65\xd4\x24\xfe\x46\x14\x9c\x73\xc9\x52\x2b\x27\x2d\xcb\xad\xaa\x62\xac\x45\x2c\xab\xd6\xec\x47\x98\xe2\x57\x0a\x0c\x5c\xc2\x12\xf9\x6d\x61\xcd\xa1\xd5\xd2\x74\x01\x90\x97\xa7\x49\x7e\xdb\x7c\x76\x0a\x67\x60\x8d\xac\x17\x70\x0e\x82\xa6\xfc\x50\xf5\xbe\xb1\xd8\xda\xca\xaa\xbc\xf1\xc1\x18\x8d\x52\x38\x96\x2d\x73\x02\x5d\x04\xec\x29\x08\x39\x3a\xb0\xfc\xcb\x03\x4a\xdc\x68\x56\xf9\xd7\xb9\x19\xe7\x8e\x2a\xa8\xba\xe4\x29\xad\xd5\xa2\x09\x3b\x48\x97\x69\x49\xc7\xc6\x32\xa9\x74\x1c\x83\xa9\x70\xab\x3a\xc5\x5c\x0e\xa6\xed\x02\x72\xc5\xcb\x41\x33\xd1\xd7\xf7\x20\x74\xcd\x3a\x15\xe3\x9a\xf5\x54\xdb\x45\x96\xd5\xd0\xe2\x7b\x8f\x68\x3a\x65\xd1\xc7\xd4\xac\x66\xe6\x3c\x16\x31\xfc\xd9\x9c\xc0\x89\xb1\xf3\xe6\x29\x55\x57\x9f\x01\x68\x22\x90\x48\x9b\x8d\x9f\xbf\x95\x19\x7b\x40\x06\xfc\xc6\x87\x1b\x4b\xe8\xbb\xe2\x0c\x8d\x25\x7e\x02\xa5\xcb\x1e\x7a\x27\x4d\xd0\xd4\x97\xbc\x36\xe6\xdc\xe3\xae\x8c\x88\xe1\xb0\x24\xf6\x04\x06\x01\x10\xa1\xa7\x63\xee\x90\x2e\xf2\xf5\x6b\x95\x99\x54\x1b\xfc\x34\xcf\xdc\xbb\x7d\xf4\x83\x70\x3a\xe5\x01\x85\xfc\x60\x32\xd8\x99\x5b\x26\x93\xf3\x45\xe0\x52\x5d\xf0\x1d\x24\xff\xc8\x28\x42\xe2\x1a\xe1\xe3\x6b\x63\x80\x43\xcf\x35\x98\x3e\x45\xa0\xef\x42\xa9\x18\xb1\x19\xb2\x8c\x7e\x48\x8d\x19\x0e\x8d\x01\xf0\x8d\x80\x22\xcf\x33\xae\xd9\xb9\x49\xa5\x22\x65\xb8\x88\xc0\x01\xf5\x66\x79\xcd\xa7\x19\x8d\x3a\x2e\xd6\xd1\x1c\xe2\x1c\xfc\x75\xaa\x0b\x4d\x2e\xc0\xd7\x16\x49\x1e\x9b\x26\x8b\x1b\x38\x23\x82\xc3\xe9\x03\xf0\x98\x1d\xfd\xde\x81\xfd\x7d\x14\xce\xe1\x31\x2b\x8a\xfa\xf8\x86\xfb\x81\xf3\x0d\xf7\x9d\x64\xa0\x91\x03\x8d\x7d\xf3\x8b\xf8\x82\x3d\x96\x88\x9f\xe4\x87\x86\x8e\xb5\x8c\x70\xcc\x76\xa2\xc7\xa7\x28\x3b\x7f\xeb\x38\x95\xd4\x1e\x06\xb2\x76\x7e\x2d\xaf\x54\x75\xf4\xa4\x2e\x41\x4c\x4a\xfd\xc4\x52\x8a\x90\xd3\xfa\x80\xe8\x6e\x86\x8e\x05\x9c\x96\x54\x6c\xde\x01\x22\x03\xd3\xf2\xc4\x07\xe1\x24\x62\xac\x2c\x67\x5c\xcb\x01\x5d\x83\x2d\x51\xf2\xc7\xf1\xd9\xc7\x5c\x4a\xd0\xab\xef\x8b\xb4\x78\x2a\x13\x78\x72\xb9\x31\x8b\x34\xfa\x62\x3a\x86\x13\x48\x80\x77\x82\x82\xab\x3a\x6d\x2f\x4d\x9c\xc4\x82\x60\x71\x99\xe2\xe1\x75\xe7\xa5\x74\x3a\x83\xf7\x37\xef\x5d\x50\x4f\x9a\xfc\x29\x3d\x25\x1e\x1e\x65\x31\xd4\x4a\x3c\x25\xec\xe9\x45\x1c\x25\x3e\x76\xe1\xc3\x72\x93\x68\x43\xff\xf4\x96\x5f\x41\xc9\x9f\x32\x63\x24\x52\xc6\xcd\x80\xba\x98\x5f\x3f\x26\x36\x08\xf2\x87\x38\x65\x75\xf4\x0a\x2f\x05\x4f\x85\xfe\x1f\x35\x92\xd0\x1a\x37\x5b\x30\x7f\xcb\xa3\x1e\x12\x92\xb1\xa0\x7c\x51\x7d\xa3\x19\xfd\xbc\x99\x14\xfd\xa2\xe1\x7a\x89\xb2\x4d\xbc\x57\x4d\xad\xf7\x15\x7a\x4b\x56\x47\x46\x6d\x07\xc9\xea\xc8\xa8\xe9\xc0\x78\x38\xee\x8b\x6a\x49\x53\x33\x71\x59\x97\x0f\x51\xe0\x5a\x28\x06\x10\x58\xa2\xe5\x2f\x1a\x3b\x6d\x68\xff\xaf\x4a\x11\xf0\xf0\x62\xb9\x8c\xbc\x91\xf5\x1b\x14\x2f\x37\xcf\x9f\xbd\x7a\xf1\xec\x17\xfd\xb5\x89\x0f\xe9\x0d\x26\x57\x4c\x0c\xf1\xcb\xdc\x42\x03\x23\xa5\x13\x07\xb6\x1f\x2b\xb1\x25\xae\x26\xd5\xd7\xce\xd3\x50\x2d\xd3\x25\xe8\x1a\x12\x99\x48\x62\x99\x63\x08\x3c\x3a\x9e\x35\x89\xca\x2a\x0f\xfe\x33\xd8\xbe\xb1\x63\xbc\xbf\xa2\x40\xc0\x1c\x45\x7c\xdd\xb0\x93\x3c\xf4\x55\x9a\x96\x14\x8a\x5a\x6f\x23\xcf\x63\x05\x15\x83\x26\x14\x59\x83\xfa\x7c\x11\x47\x70\x23\xc5\x19\xa0\x89\x37\x16\xd9\xc4\x4b\x31\x09\x4b\xac\xc1\xac\xcf\x5b\x3e\x8e\x02\xa9\x91\xf2\xfc\xe5\x9a\xce\xef\x08\xf8\x28\xc9\x14\x4f\x83\x95\x5e\x72\x55\x62\x32\x85\xc4\xe6\x40\xf1\x4d\xc2\xa4\x17\xb7\x5a\x65\x98\x08\x6c\x66\xb0\x16\x72\x08\x8a\x20\xc7\x0c\x76\x40\xec\x2b\xab\xe9\xd1\x6c\xd0\xe0\xe2\x5e\x49\xa8\xa6\xbb\xbc\xc3\xaa\x63\xaf\x3a\x5b\xa7\x46\x40\x8d\x26\x1d\xb3\x6c\x68\x05\xb9\x9a\x0d\x9c\x08\xa1\xa7\x9d\xac\x14\x5e\xa8\x24\x81\x44\x40\x71\x3c\x84\x9b\x4b\x62\xf6\x91\x57\xf7\x93\x14\x95\x65\x81\xc5\x51\xb0\x32\xd6\x54\x1c\x31\x73\x22\x53\x69\x53\x0d\x73\x69\xb2\x02\x67\x5b\xb3\x6f\x0f\xb4\xfe\xc3\x9c\xc3\x33\xed\xd1\x34\xc7\x94\x4e\x0f\x36\x37\x13\x44\x3b\xc4\xeb\xe7\x98\x07\x31\x3c\xb8\x3c\x97\x16\xf7\x77\x76\x32\x7d\xe4\x68\xcf\xf6\xa8\x0f\xc6\xac\x79\x7f\xd4\xad\x04\xe2\x6e\x72\xb3\xa4\x3d\x82\x3b\xc6\x18\x08\x3d\x31\x4e\x22\xad\x29\x25\x50\xf0\x21\xf4\xfd\xd2\x9c\x0d\xed\x8d\x70\xe6\x48\xe7\xc0\x35\x99\x0a\xab\xdc\x26\x67\xc7\x7b\xa0\xed\xa7\x72\x6d\x3a\x8e\xd3\xfc\x52\x27\xba\x2f\x09\x5e\x08\xef\x42\xdd\x4b\xd1\x26\x7a\x44\x5d\x04\x8e\xd0\x73\xfd\xff\xfe\x4f\x6a\x0c\xb0\xe7\xc1\x01\x35\x38\x5d\xfa\x6d\xb6\x54\x5d\xa2\x9e\x36\x31\x47\x02\xb7\xea\x00\x8d\xb1\xac\x6a\x80\x93\x14\x2b\x5e\x6c\xdd\x24\x80\x36\x1c\xc1\x46\x39\x74\xa2\xc5\x93\x71\x58\x4a\x37\x65\xf1\xd5\x72\x16\xa5\x2b\x15\x88\x2d\x01\xba\x94\x2c\x14\x09\xc9\x55\x04\xc8\x25\x68\x6c\x0a\xc1\x95\x3e\x42\xb3\x6d\x14\x64\x4d\x6b\x05\xa7\xd6\xfa\xad\x77\xcf\xb2\x98\x12\xf9\x10\x04\x4b\x04\x09\xf5\x57\x95\x2d\xc9\x2e\x7a\x14\x32\x1a\x21\x33\xaf\x6c\x29\x02\x01\x93\xcb\x29\x87\xfc\x55\x25\x79\x92\x8b\x0d\x79\xe5\xb0\xb0\xf0\x11\x3e\xc7\x1a\xe2\x27\x26\x79\x31\x09\xa4\x69\xe6\x61\x09\xa1\xa5\x39\x6b\x96\x72\x5f\x13\x84\x7d\x1f\x5c\xaf\xd9\x5f\xb3\xd5\xff\xfd\xf5\xee\xf6\x3f\xe8\x22\xb9\x4a\x14\xf4\xf9\x7a\x93\x03\xaa\x67\xa7\x68\x0d\x83\xda\xbe\x03\x47\xd6\x14\x6a\xe4\x41\x10\x28\x52\xc7\xaa\x00\x12\x5f\x15\xb8\x11\xde\x5f\x43\x72\x8d\xe0\x4d\x4d\x4f\xc9\x82\x23\xe2\x37\x4b\xab\x1d\xd0\x5b\x7e\x79\x75\x1f\x83\x19\x06\x36\xc1\x98\xce\xeb\xe2\xc9\x7a\xba\x79\xc4\xf1\x5b\xe4\x5f\x1d\xc5\xc3\x53\x07\x5b\x06\xee\xf5\x92\xbd\x5a\x7b\xd0\x55\xf6\xd1\xd2\x24\x88\xd8\x2b\x8b\x09\x91\x1b\x6c\x07\x14\x4e\x6d\x79\x43\xb1\x5e\x41\xd2\x3b\xfd\x02\x4e\x3f\xf4\xe7\xba\xfb\x45\xc1\x6b\xb7\x32\xbc\xb4\xe6\x75\x4c\x72\xe8\xe1\x90\xb2\x63\x9e\x63\x1d\xa1\x09\x63\x0c\xf0\x69\xee\x34\x74\x51\x20\x11\xeb\x78\xc0\x53\xfc\xe7\x65\xed\x1b\x9d\x29\xc1\x93\x29\x7d\x89\xc9\x31\xf6\x87\x88\x69\x04\x02\x80\xc7\xcf\x97\x19\x4b\x88\xcf\x0b\x42\x09\x0b\x86\x5c\x0f\x5e\x88\x24\xc5\xec\xd9\x39\x8f\x36\x94\x65\xf4\x99\x28\x0c\x9c\x26\xb5\x0e\xdf\x75\x1a\xe6\x40\x69\xc5\x4e\x65\x56\x4a\x68\x62\xe5\xf7\xd3\xd8\xd1\x56\x96\x75\x5a\x3d\xbb\xe2\xb6\x48\x9d\xdb\xb2\xe9\x04\x37\x00\xd1\xfc\x78\x6b\x4e\x6d\xad\x62\x9d\x66\x00\xe9\x05\x16\x0b\x38\x36\x20\xca\x80\x09\xb1\x7f\x2c\x93\x3e\xf5\x25\x39\x1b\x2f\x19\x91\x43\x5a\x6f\xd1\x34\xb8\xea\xce\x6b\x90\x99\xdb\x6f\x9e\x60\x57\xc0\x60\x26\x9e\x3d\x0c\x64\xc1\xea\xe4\xd2\x7b\xe9\x73\x14\x2d\xb2\xc2\xbb\x54\x33\xb7\x1e\x17\xd8\x5e\x05\x7e\xf8\xe5\x9c\x0b\x69\x79\xae\x3f\x1b\x9e\x94\x9c\x0d\x43\x02\x61\x40\x67\x6b\x4f\x9d\x6a\x7b\x03\x12\xbc\xea\x7e\xd1\xdf\x01\x06\x71\x5d\xd2\xfc\xa7\x0a\x85\x13\x71\x9c\x51\x36\xc2\x51\x88\x5c\x3d\xd8\x4e\xcc\x04\x5b\x3c\x93\xa0\x99\x22\xca\x2d\xbb\x20\xec\x8b\x8f\x1c\x0c\x47\x46\xf0\x9a\x96\x79\xce\x5e\x0a\x0c\xe0\xbb\xc6\x19\xa0\x14\x12\x7d\x9d\xd0\x54\x17\xf1\x08\xa2\x4e\x84\xab\xda\xfa\x6a\x5e\x8c\xe1\x44\xab\x86\x69\x6a\x97\x72\xa3\x3f\xec\x07\x4a\xf0\x93\xda\xd4\x4b\xec\x53\xe3\x9c\x82\xc1\x55\x59\xe1\xd2\xcc\x52\x8f\x69\xdc\x0c\x46\xf6\x10\xfb\xbc\xdc\x2a\x6f\xa1\x41\x30\x64\x8a\xb1\x0d\xa9\x66\x9b\xcc\x38\x47\xdf\x65\x4c\xc2\xdc\x54\xcb\x16\xee\x89\xea\x63\xec\x61\x32\x2f\x9b\x07\xf2\xe5\xb9\x2f\xf4\x7a\x05\x83\xa8\xb3\xe0\xe2\xc4\x82\xa2\x55\x9b\xe5\x44\xb7\x9c\x13\x47\x83\x01\x26\xae\x14\xc5\x73\x30\x03\x24\xef\x2f\x6b\xee\xaa\x28\xf6\x20\xd1\x8f\xbe\x0e\xb9\xf2\xe5\x7b\xa2\xf5\x39\xbe\x85\xae\x91\xfc\x3a\x0f\xc9\x59\xa4\xd5\x7b\xa2\x5c\xad\xe1\x39\x1f\xdd\x73\x56\x01\x5d\x88\x6a\x7e\xa4\xce\x4d\x71\xf4\xf6\x3d\x51\x7b\x8c\xa7\x33\xe3\xb9\x54\xd0\xe6\x14\x45\xd3\x99\x1d\xab\x78\xf7\x43\xf5\x09\x1a\x0e\x8d\x4f\x08\xde\x88\xf8\x96\x39\xa8\x76\xd1\x70\x68\x5f\xcb\x16\xee\x8b\xea\xa8\xd4\xff\x9c\x24\xc7\xaf\xdf\x13\xbd\xa2\x02\xad\xc1\x0b\xe1\xce\x47\xb2\x5a\x4a\xf7\xbe\xa8\x7e\x15\x43\x8a\xcc\x41\xb0\x2c\x58\x7c\x5f\xb4\xbe\xe6\xb7\x03\x46\x0a\xa4\x79\x2e\xba\xb5\x68\xcf\xf7\x33\x86\x37\xe7\xef\xdf\x2d\xb6\x17\xbf\x05\xd8\xbf\xef\xbd\xf8\x16\x8f\x8c\x28\x32\x76\x2e\xa2\x3d\x3c\xb2\xe3\xa4\xd2\xfb\xa1\xf9\x94\x97\x15\x99\x77\x89\x4c\xa2\xb7\xef\x8b\x5a\xa5\x96\xba\xe1\x2e\x26\xfa\xb4\x75\xd9\xef\x6d\x24\x67\x60\x04\x0d\x0a\xe6\xd6\x42\x78\x85\x6c\xf1\xfe\xbd\x52\x2c\x4c\xcf\x05\x48\x96\xb6\xeb\x3d\xd1\xcc\x8b\xba\x5c\x80\x79\x6d\xb8\x24\x0e\xf2\xbe\x28\x16\x80\x70\x46\x1f\xdf\xce\x49\xb2\x02\x23\x78\x5f\x34\x5f\x48\x74\x85\x3a\xe4\xee\x66\xc8\xa5\xa2\xf0\x78\x9c\x07\x8e\x09\x8d\xfc\x3a\xa6\xc5\xff\x3c\x81\xc1\x40\x78\x7d\x4d\xcb\x1c\x84\x84\x40\x9f\x9e\xc9\x98\xc7\xa4\xfc\x4a\xfc\x52\xaa\x28\x8b\xf2\x6e\x52\x81\x4f\x6d\xa2\x21\xce\xef\xc2\x5c\xb2\x0c\xee\x26\x1c\x85\x49\x09\x99\x39\xe6\x98\x33\xcd\x1e\xa4\x5b\xba\xaf\x61\xc4\x50\xd1\xf3\x91\x9e\x20\x4d\xdf\x13\xbd\xd2\x2d\xb9\x98\x41\x92\xbd\xac\x9a\xdf\x49\xd2\x5d\xc4\x49\x32\x06\x05\x2e\x02\x0d\x5f\x3a\x55\xe6\x4e\x40\x09\xea\x87\x3c\x29\xef\x39\x98\xdf\xe6\x49\x9a\xe1\x19\xbd\x4b\x9b\xd7\x0a\xfa\xdf\x84\x93\x3e\x36\x56\x34\x0a\xfb\x1b\x6b\xfd\xde\xc6\xf2\x96\x29\xec\xc7\x22\x69\x7a\x3e\xc5\x51\xcd\xba\xbe\x1f\x9a\xcf\xa2\x48\x9d\xf9\xb9\x1e\x05\xfb\xdc\xeb\xba\xe1\x71\x4b\x06\x93\x62\xc6\xb9\x80\x25\x9c\xf3\x9c\xcd\xc1\x1b\xce\x2f\x13\x2a\x2b\x68\xa5\x6e\x76\x16\xbb\xc9\x8f\x07\xd1\xfc\xf2\x9e\x27\xd5\xae\xf7\x6e\xe6\x0b\x01\xc7\xc1\x8b\xfd\x7e\x7d\xc0\x87\xe8\xae\x44\xcd\x25\x99\x60\x97\xc7\x06\xc6\xda\xec\x72\x11\x35\x19\x9f\x9a\x73\x37\x0a\x09\x5a\x27\x7b\x3f\xbf\x7c\x77\xd1\x03\x67\xf5\x10\x68\xe7\xe6\x0f\x1f\x69\x73\x06\x7d\xc3\xfd\x75\x63\x88\xfe\xf3\x97\xd7\xe4\xd4\x7d\x51\x33\xdc\x6c\x8b\xed\xe6\x11\xb4\x3d\x30\xc3\x61\x54\x98\xb0\x3c\x52\x41\x4a\x1a\x1c\x52\x0f\x36\x91\xe5\x73\xcf\x05\x87\x3b\x99\x6b\x2a\x1e\xc4\x82\x9d\xfd\xda\x79\x17\x9c\x63\x7d\xd8\x8e\x39\x65\x7b\xdc\xb4\x4c\x91\x7c\xa9\x01\x35\xde\x95\x33\x24\x2f\x57\xbf\x9a\x6f\x30\xb7\xa8\xfd\x82\xd2\x73\xbb\xea\x5d\x6f\x1a\x62\xbb\xa4\x62\x5c\x2a\x82\xe5\x25\x26\x7d\xe4\xba\xb0\x66\xc1\x94\x6d\x3e\xe1\x14\x01\x2f\xd8\x1c\x46\xaf\x46\xc0\x49\x79\x2c\xda\x85\x31\xae\x28\xc6\x9e\x38\x8e\x1b\xd4\x75\x93\x2f\xd9\x88\xc2\x49\x15\x07\xae\x11\xc7\x8d\xe0\x8c\xb6\x4c\x0f\xfa\x23\x3a\xae\x59\x3d\x49\xb1\x21\x55\xb0\xfc\xd8\x76\x4c\xb0\xd4\x2d\x13\xfb\xc7\xa2\x7c\x67\x06\xbc\x5d\x06\xc2\x4c\xc2\x24\x80\x3e\x85\xdd\x5e\x2f\x06\x86\xc0\x00\x32\x0b\x12\xf9\x99\x12\x22\x56\x64\xc0\xf3\x7d\xe5\x38\x8d\x12\x24\xad\xaf\xe9\x5c\xcc\xa2\x02\x68\xbb\x32\x29\xde\xe4\x0b\xea\x14\xf7\x91\x57\x13\x85\xad\xfe\x34\x1a\x28\x10\x30\x0b\x36\xf0\xd0\xc8\xcf\xa7\xb5\xab\xcd\x69\x10\x94\x48\xc8\x89\x4e\xe7\x8d\x46\x71\x39\xe5\xe9\xaf\x1f\x42\xdf\x78\x23\xe0\x95\xca\x15\xc0\xd4\xba\x68\x58\x14\x6b\x4e\x2e\xf0\xc2\x83\x9c\xe1\x22\xe3\xff\x06\xb9\x6c\xf9\x36\xab\x67\x28\x18\x61\x17\x6c\xb3\xcc\x4a\xd7\xbb\x29\x13\xe8\x00\x99\xe6\x90\xad\x69\x2b\x02\x53\xb0\x7f\x2e\x8a\xe2\x72\x4b\x98\x47\x64\xc9\x20\x2e\xf1\xb8\xc0\x96\x8b\x3d\x26\xd1\x9b\xc9\xd7\x65\x9b\x20\x80\xf4\x25\x18\x40\xfa\x6b\x08\xc9\xec\x8c\xf1\x9b\x73\xfe\xf7\xa9\x44\xac\x8b\xa3\xa6\x4a\xeb\x1f\x2e\x7b\x94\x51\xb6\x7c\x6a\x9c\x49\x2d\xc6\xcc\x48\xd5\x1f\xe6\x1a\x6b\xd4\xc0\x9a\x46\x7b\x92\x00\xc3\xa7\x47\x7c\x92\x42\x8c\xcf\x8c\x3a\xfb\xe3\x5c\x23\x57\x1b\x59\xd3\xe8\xcf\x44\x1d\xe3\xf4\xc8\xe5\x97\xf9\x51\xab\x3f\xcc\x35\xe2\xa8\x81\xaa\xd1\x9a\x35\xd2\x43\x72\x12\x3d\x4a\xe9\xaa\x16\xee\x8f\x32\xbe\x96\x8c\xd7\x33\xdc\x43\x01\xb5\xa7\xc9\xc9\xad\x78\x9e\x43\x32\x80\x66\x5c\x79\x65\x9a\x73\x31\x43\x57\x68\x87\xd1\x3a\x61\x4f\x48\xc4\xd1\x02\xd7\xb2\xbe\x18\x69\x40\xf3\x5e\xef\xa8\xef\x2a\xf7\x77\x92\x61\x20\x1c\x1d\xac\xb5\xb4\xcb\xbb\x8e\x23\x9c\xa7\xd7\xdb\x43\x8c\xb5\xfe\xa6\x02\x1f\xab\x80\xd4\xaa\xad\xa8\x15\x79\x6a\x31\xa1\x76\x7f\x16\xb9\x65\xa6\x04\xf3\x24\xb5\x38\x49\x5e\xd3\x6e\x04\xf5\x5a\x6f\xa1\xcc\xd5\x7b\x52\x7c\x44\xd3\x7f\x72\x46\xac\x90\x02\x2a\x8f\x5c\x4d\xff\xd1\x69\xbc\xc2\xde\xa7\x04\x61\x82\x68\xd1\x6e\x3d\x53\x7e\x6e\x42\xc5\xae\x65\xa6\xb4\x23\x8e\x5b\xa8\xc3\x9f\xd3\xbc\x92\x49\xb3\xed\x29\xcd\x9c\x47\xb8\x8f\x4d\x40\xc1\x75\xec\x10\xb8\xb3\x82\x17\x57\x90\x37\x28\x7c\x43\x8e\xa8\xb8\x5a\xd7\x1a\xf9\x86\xfb\xe9\x3a\x67\xdf\x70\x5f\xd8\x20\x3c\xf8\xfb\x32\x89\xdd\x14\x9e\xa7\x92\x23\x88\xe3\x7c\x31\xc9\x68\x65\x5f\x29\x3c\x76\xf2\x03\xef\xd5\xbb\x7c\xa8\x3c\x2b\xf8\x35\x93\x10\x13\x25\x1a\xae\x4c\x9a\x4b\x97\xf4\x4d\x4c\xa3\xa6\x55\xa9\x93\x77\x6d\x3f\x64\xb6\x7f\x41\xae\xae\x3a\x07\xd2\xeb\x4b\x01\xa1\xc1\x51\x36\x71\xf3\x7f\xfe\xf7\xff\x49\x3f\x07\x7d\x37\xff\x94\x81\x87\xa9\x6c\x50\x45\xe2\x2b\x66\x6a\x25\xf8\x8e\xc6\x98\xac\x2e\x09\x6c\x6a\xc0\x5d\x36\x94\xf5\xe5\xc2\x81\xa9\x39\x89\x54\xba\xe2\x44\x33\x9e\x81\xae\xb7\xae\xd3\xe3\x1d\x73\x57\x82\xd1\x9f\x19\x82\x66\x83\x42\x32\x69\xcd\x63\x4b\x15\xea\x3c\x25\xd2\x28\x2a\xf7\x97\x87\x47\x52\xe6\x3f\xaa\x07\x58\xb4\x17\xff\x4b\x9b\x61\xdb\x50\x2e\x32\x4a\xfc\x08\x3f\xae\x88\x12\xf9\x80\x96\x8a\xbf\x37\xa6\x22\xce\x27\x2d\x58\xf7\xe2\x54\xd7\x54\x79\x2b\xe1\x75\xe5\xc4\x75\xe6\x4b\x36\x4f\x21\x75\x97\x39\x77\xd2\x60\x92\x05\x6e\x1e\xab\x5d\x5b\x87\x8d\x89\x9a\x03\x44\xfd\x1d\x36\xa4\x27\xaf\xf4\xa4\x99\x1b\x96\x9c\xfd\xef\x82\x57\x82\x09\x03\xca\x33\x8c\x0c\xa9\xfb\x79\x33\x83\x37\xe2\x94\x95\xd1\x6e\x98\xfa\x96\x83\xe1\xd7\xee\xf1\xfb\x63\xed\x29\xa0\x83\x31\x5c\x2d\x77\xdf\x61\xee\x42\x33\x26\xac\x2f\x63\x86\x43\x12\x71\xd8\x10\x0c\x30\x62\xbb\x6e\x99\xac\x9e\x4b\x84\x3f\x3c\x66\xa6\xb9\x47\xc7\x90\x0b\xf7\x62\xa0\xaa\x8e\x95\x1a\x75\xfa\x3e\x4c\x2b\x81\x9a\x25\x97\xe5\xb1\xc8\x8a\x3d\x9d\x0b\xe3\xe3\x37\x29\xc3\x96\x5c\x64\xcc\x79\x09\xc2\x35\xbd\xb5\x5e\x81\xd0\xf1\xab\x2f\x5b\xe1\xbb\xbd\x9a\x75\xed\xaa\x2f\x98\xe6\xbf\x48\x62\xff\xcc\xcf\xc7\x4d\x25\x23\x7f\xdd\x95\xf5\xf1\xa7\x8b\x67\x7b\x37\xfb\x4b\xbc\x56\x8a\xc1\x53\x84\x6d\x10\xd9\xbb\xa6\xa1\x8e\xba\xf8\xe6\xa9\xb3\xcd\xcd\x0c\xc1\xa8\x18\x7a\xe3\x72\xb9\xb7\x53\xa9\x09\xa8\x7b\x37\x53\xac\x3a\x0c\xb0\x4f\x39\x8e\x4a\xd5\x5d\x52\x29\x10\xcf\x83\xbf\xea\x51\x81\x24\xb4\x37\x3e\x85\x5a\xdb\x32\x5c\x54\x29\xa7\x50\x62\x20\x1c\xa9\xab\xaa\xae\xc7\xca\x4a\xad\x80\x7f\x6f\xff\x55\x91\x23\x22\x8d\xe5\xdb\xc4\xe4\x29\x75\x40\x8d\x31\xa1\xaf\x8b\x9c\x0e\xaf\x4f\x56\xed\x7d\x8a\x8a\x4a\xbc\x2b\x76\xc3\x5d\x80\xe0\xca\x88\xaa\x9c\xac\x8a\x18\x25\x60\xc7\x1c\x10\x08\x28\x7c\x2d\xa2\x0c\xcc\x63\xfe\x97\x21\xfe\xd4\x53\x28\x1e\x71\xef\x89\x3c\x51\x7e\x3f\x22\xef\x94\xff\x55\x4a\x1e\x7f\x04\xad\x94\xbe\xc4\x97\x59\x46\xc8\xbd\x38\x34\xbf\xe1\xfe\x27\x48\x82\xe2\x20\x67\xe5\xd7\x15\x92\xe1\x63\x17\x3a\xe5\xbb\xeb\x98\x97\xf3\x5c\xd4\xb7\xc9\x91\x17\xeb\x38\x36\xe5\xf3\x11\x5e\xda\xd2\x7c\x98\x8d\xe2\x27\x94\x6a\x3c\x29\xc7\xa5\x02\x71\x24\xcf\xef\x5b\x5a\xe1\xc9\x14\x0a\x4d\xa9\x3f\xf3\x48\x69\xf5\xd1\xad\xf9\x00\xdc\x9a\x47\x7a\x45\xaf\xfc\xf6\xf6\xd1\xbb\xf7\xd7\xf3\xee\xe5\x8b\x5a\x94\xee\x89\x66\xfe\xc1\x1c\x5b\x1e\x96\x87\x44\xd1\x75\x57\xe8\x28\x99\x67\x32\xf5\x90\x90\x8d\xed\xaf\x7a\x93\xbb\xd0\xd4\x2e\x34\xb1\x29\x1b\xa5\x90\x7d\x8b\x4e\xed\x18\x5c\x43\xa3\x0f\xa1\x6f\x70\xeb\xd0\x2d\x2e\x54\x59\x65\x9d\xad\xd8\x0d\x95\x71\x81\x2c\xe0\x48\x49\x52\xb6\xd7\xec\x47\x39\xf9\xdc\xfb\x7c\x7b\xfd\x6d\xab\xbe\x6f\xaa\x91\xeb\x44\x19\xe7\x3a\x3c\x27\xa1\xef\xc1\x20\x50\x62\x7b\x5f\xb8\x1c\x09\x6c\x01\x97\x49\x16\x14\xa5\xc1\x6e\xad\x2e\x80\x26\xfe\xc7\x18\x7a\x12\x33\x2e\xbf\xd9\xaa\x30\xec\x78\xc1\x55\xa5\xf8\xb5\x91\x2e\xc9\x55\x13\x99\x8e\x31\x0c\xba\x88\xaa\x28\x72\xa5\xb8\x71\x2f\xf8\xc3\xf5\x76\x6e\x33\xa1\x58\x5e\xbe\x29\xad\x91\xed\x5a\xa6\x8a\x2c\x90\x5c\xf8\x07\x82\x58\x31\x30\x75\x5d\x16\xc6\x89\xcd\x27\x71\x6a\xd4\x57\xfe\x86\xfb\x36\x63\x2d\x26\xd9\x80\x04\x81\xb4\x27\x7c\x37\x69\xed\x5e\x20\xfa\xf1\xf0\xba\xb0\x3f\x11\x9c\x4e\xf6\x9c\x2c\xb0\x69\x89\x19\x6b\x8c\x0f\x58\xf9\x42\xd4\x67\x13\x63\x60\x05\xc2\x37\x99\xb6\x85\x64\xef\xd4\xc3\x33\x31\x3d\xeb\x15\xbe\xef\xda\x1f\x41\xff\xfb\x30\x58\x99\xf0\x4d\x06\x7a\xaf\xd2\x37\xb7\xd8\x15\x4a\x22\xf8\x8c\x78\xe1\xa7\xa9\xfc\x9a\xce\xff\x4a\xfd\xd8\xb4\x5c\xda\x9c\x4b\x2c\xee\x71\x81\x35\x06\xd9\xca\x78\x10\x17\x25\xbf\x6d\xfe\xf2\xea\xd7\xbd\x70\x47\x7f\x51\xb2\xbc\x4b\x12\x75\xc4\x6b\xbe\x24\x11\x16\xf4\x0b\x75\x0a\x2a\xaf\x4a\x16\xf3\x9b\x5f\x16\x77\xdd\xd4\x75\x5e\x3f\x75\xbc\xb6\xbb\x5c\xe7\xdc\x7a\x7d\x52\xa2\xd0\x17\xe5\xec\xde\x57\x6c\xe2\x1c\x34\x08\x57\xf4\x05\x2a\x74\x8e\x37\x76\x3d\xcf\x41\x04\x25\x68\x34\x82\x04\xba\xcf\x8b\x78\x71\x11\x3d\x61\x3c\x5f\x2d\x3f\x96\x1a\x2f\x3b\x47\xff\x63\x10\x9c\x31\x63\x8e\x75\xfb\x12\x20\x2f\x24\x85\x79\xdc\xf1\x73\x86\xfa\x60\x55\x66\x79\x23\x37\x6c\xa7\x89\x1b\x36\xda\x2e\xa5\xb9\x3f\xb9\xd2\x6c\xc2\xd7\x1b\x9d\x5b\x8a\x3f\xbb\xa4\xec\x56\xad\xa6\xd4\xdd\xd5\xbc\xad\xa4\x88\xc8\x04\xfb\x74\x1c\xd5\x8d\x4b\x77\x91\xda\x3c\x25\xa5\xe2\x1a\xd1\x9d\xd9\x0c\x8b\x36\x97\x2c\xe8\x66\x2d\x95\x07\xc2\x15\xf5\x61\xf2\xc3\x12\xba\xf5\x93\xf6\xc4\xff\xde\x6d\x1e\x19\xb6\xf1\xda\x37\x22\xf0\x85\xe6\x01\x4e\x69\x92\x0a\xf6\x51\x5d\x7a\x2e\x48\x08\x1b\xd7\xb5\x89\xfe\xf7\x92\x31\x3a\xe7\xf8\x6e\x1c\x3f\x54\x60\x4a\x69\xbe\xce\x37\x5e\x5d\x77\x6e\x19\x6e\xb8\x4a\x37\xda\x42\x4e\xb4\x94\x36\x50\x6c\x09\x37\x73\xa1\x5d\x8c\x51\x60\xa0\xc0\x98\xe0\x80\x1a\x1e\xba\x82\xde\xcc\x70\x43\x68\x50\x6c\x8c\x00\xe9\x83\x11\x8c\xaa\x29\x21\x5d\x31\xf7\xf5\xf8\xce\x14\x1d\x71\x01\xdd\xfa\x21\x64\xb5\x5f\xa1\x9b\x19\xf9\xe8\x0d\x96\x64\xb9\x45\xbb\x5d\xaa\xd3\x25\xfa\xb3\x68\x29\x7d\xbe\xf1\x2f\xfc\x01\xa0\x32\xef\x8b\xe3\xb8\x6d\x66\xdb\x8e\x06\x20\x93\x55\xd4\x4a\xdd\x42\x97\x6f\x82\xec\xa5\x64\x41\xc8\xba\xe7\x32\x3c\x21\x6b\xc2\x35\x8e\x1c\xd1\x46\xbd\x54\xe6\x62\x54\xf9\x31\x72\x44\x96\x79\x31\x16\x0b\xaf\x5b\x34\x58\x71\x33\xaa\x6a\xb0\xde\x15\x3e\x7e\x33\xdb\x79\x83\x8f\xf5\x75\xb6\xf3\x2b\x7c\x19\x76\x5d\x71\x9d\xbe\x14\xc8\x82\xe4\x8f\x1d\x4c\x91\xef\xf3\xb4\xda\xcb\xa5\x4b\x2a\xd9\xc7\x02\xb3\xf8\x20\x8a\x6f\xbd\xfc\x72\x71\x31\x1b\xbf\x0a\x1f\x62\xf1\x2d\x9e\xa0\xfa\x0d\xf7\xd3\x95\xb6\x84\x33\xf3\x81\x54\xd3\x8a\x49\x4c\x5d\xd7\x2c\x4a\xe7\x89\xea\x7b\x5e\x36\xa5\xd7\x22\x66\x27\x58\x02\x9d\x9f\xa2\xa6\xea\x51\x99\xf7\xc3\xc8\x63\x25\x9c\xf2\xf5\x7f\x92\x76\xe5\x55\x28\xb0\xf5\x67\x46\x75\xe6\x2e\x3e\x35\x2a\x8d\xb5\x6b\xfe\x55\xa7\x39\xd7\x19\x4a\x3a\xb8\x7a\xd1\xa1\x64\xc2\x4b\x97\xbc\xcc\xd2\xfe\xcd\x45\x69\xcd\xf8\xcb\xd6\x5b\x48\x2d\x23\xc1\x17\x38\x02\x78\x1d\xb6\x11\x57\x38\xd6\x8c\xc9\x86\xaf\x3f\x3d\x0f\x7e\xff\xad\x3a\x58\xde\x32\x05\x46\xa1\x65\xba\x80\x86\x13\x5e\xca\x94\x87\x29\xd6\x52\x69\x79\x00\x2a\x1f\x70\x91\x66\x6b\x99\x86\x6d\xe8\x34\xdf\x94\x3b\xb9\x14\xde\x69\x1d\x47\x54\x6a\x26\x73\x74\xc7\x5a\x6b\x12\x31\x77\x1f\xc7\x57\xd5\x0e\x98\xf3\xda\x86\xd9\xb9\x9d\x1c\x87\x55\x90\xbe\x8c\x11\x59\x30\xd3\x15\xd5\xaf\xd4\xfe\xaa\x2e\x81\x53\x45\xd8\xb4\x33\x58\xf3\x1a\x59\x87\x97\x5f\x64\xec\xeb\xea\xd1\x09\xe4\x13\xc5\x0a\x8f\x23\xae\x8d\x13\x48\x01\xf2\xb2\x16\x7e\x9d\x46\xa7\x00\xc5\xae\xc6\xa2\x4a\xcb\x22\x96\x29\xea\xf6\x3f\x0c\xd6\x71\xaa\x2f\xed\x54\x50\xfe\x94\x2e\x7c\xb0\xc8\x09\xb1\x1c\xfa\x3e\xc8\x8a\xc3\x46\x26\xe4\x56\x4b\x64\xa6\x30\xba\x1a\x19\xc9\x4b\xa4\xdf\x1b\xb1\xf9\x78\xdf\x52\x7a\x93\x72\xca\x29\x92\xd1\xf3\x7b\x24\xf9\x04\x05\x57\xb5\x09\x7e\x31\x1d\xc3\x09\x24\xc0\x13\x6f\xd5\xa1\x3b\xf7\xd5\x02\x9b\x78\xfe\xbd\x5b\x14\x29\x63\xea\x52\x94\x12\xbd\xc7\x10\xd7\x1c\x65\xac\xef\x03\x77\x04\x99\x74\xb9\x19\x23\x9a\x03\x21\x2d\x48\xb6\x2a\x0d\x29\x2c\x60\xe2\x7c\xe1\x7f\x52\xa5\x56\x42\xc1\x85\x87\x9a\x03\x93\x69\x22\xc2\x8f\xb1\x4f\x01\xe2\x36\x71\x36\xe7\x28\x76\x71\x47\xc8\x1c\xec\x44\x9f\x7a\x88\xda\xd1\x99\x53\x7d\x23\x82\x73\x31\xb3\x1e\x1c\x41\x5f\xef\x6a\x87\x60\x30\x96\x2e\x98\x2d\xeb\x2b\x53\x27\x40\x6d\xbf\x75\xea\x58\xce\x56\x8f\x64\x2d\x6e\x5b\x32\x4e\x38\x46\x9e\xc9\x54\x8e\x54\x3d\xfc\xec\x61\x29\xb8\x2f\xad\x88\x1e\x71\x14\x9f\x48\x25\x27\xfa\x39\x4e\x1c\xcb\xd5\xfe\xad\xec\x41\x14\x3d\x57\x92\xbc\x79\x23\xdc\x87\x9b\xaa\x4f\xa9\x8f\x27\xcf\x0b\x88\x6c\xcd\x4c\x5e\xfb\xcd\x0e\x6e\x78\x18\x6c\x9a\x14\x0d\x3f\x0a\xbe\x4c\x79\x0a\x45\x5b\xb6\x08\xf8\xdf\xb1\xbe\xe6\xaa\x85\x5e\x96\xa5\x50\x55\x08\x35\xc9\x0e\xf5\x36\x27\xc5\xa5\xd2\x4b\x9c\x86\xa7\x70\xee\x5d\x35\x3e\x3f\x35\xfb\x45\xd1\xf3\x25\x57\x14\xb5\x7c\xe5\xdb\xd6\x8e\x16\x75\xa3\xf2\xc5\xad\x2a\x50\xac\x07\x26\x72\x15\xab\x32\x1d\x26\x57\x33\x13\x54\x4d\xff\x4c\xe5\x85\xc6\xf9\x7b\xfe\x34\xa4\xc7\xa9\x32\xdd\x95\xe9\xa1\x05\x69\x9e\xf3\xa7\x8d\xa2\x40\x96\x56\x52\x23\x27\xf9\xd7\x32\xa2\xb2\x20\x85\x74\x41\xe1\x5f\x16\xe6\x68\x3e\x66\x9e\x3e\x8c\xcc\xd3\x85\x73\x4f\xd7\x9e\x7d\xfa\xe0\x53\x3e\x1f\x7e\xd2\xe7\x83\x49\xfb\x7c\x30\x89\x9f\x0f\x27\xf5\xb3\x79\xf2\xe7\x83\x49\xff\x5c\x59\x02\x68\x9c\x3d\xfe\x00\xd3\x40\x17\x49\x04\x5d\x2c\x15\x74\x59\xc9\xa0\x0f\x30\x1d\xb4\x52\x9d\x7d\x18\x29\xa1\x0f\x25\x29\x74\x29\x69\xa1\xf3\x47\x39\xe9\x52\x43\x97\x80\xfb\x52\xb5\xc6\xeb\xa6\x96\x96\xb7\x52\x2b\xbd\xd4\x58\x75\x8a\xa9\xf1\xc0\xd3\x4c\x4b\xb7\x64\x9d\x43\xe6\xdf\x60\x8e\xab\xb3\x4d\x97\x37\xcf\xf5\x72\x4e\x17\x9f\xb7\xd2\xd8\xc8\x2a\x5b\x5f\xd7\xfe\x82\x97\x9a\xc9\x4d\xd6\x02\x17\x9b\x4a\x90\xc1\x3a\xaf\x35\xbd\x7f\x7e\x3a\xee\xee\x6c\x2e\x2b\x08\x2f\x9b\xd1\x12\x8f\x72\xbd\xb9\x53\x11\x19\xb9\xc4\xa9\x64\x16\xd8\xc7\x3e\x0e\x60\xde\xdd\x7b\xad\xc4\x70\x50\x12\xc2\xfb\xc8\xa0\x8a\xfa\x9c\x73\x81\x3d\x8c\xf0\xb7\xdf\xf1\xd6\xe7\xc9\xef\xa3\xb3\xda\x91\x53\x7f\x8a\xd0\xb6\xc5\xc2\xda\x48\xb8\xee\x6c\xf5\xdf\xc7\x9b\x83\x8b\xbd\xfe\x6c\x81\x1d\xff\x21\xf4\x0d\x60\x7c\x53\x62\x46\x17\x2e\x22\x55\x37\xb7\x57\xb1\xd5\xb2\x39\xbc\x89\xa9\xe6\xc3\x9b\xea\xfc\xdd\x3a\xe9\xb8\x4b\x3d\x3a\x48\x38\x47\xc6\xed\xc3\xd8\xc9\xbd\xab\xee\x87\x0f\x67\xd7\xa3\x95\x55\x84\xbb\xdf\xcd\x5f\x59\x5c\xae\x89\x50\x98\x5b\x1e\x94\x56\x3c\x5b\xe7\x6c\x8f\x82\xde\xe7\x6f\x5d\xfa\x6c\x91\x88\xd7\x52\x6d\x77\x11\x0d\x97\x1a\x47\x21\x1d\x63\x82\xbe\x8b\x25\x90\xd3\xfd\xe6\xc1\x64\x36\x73\x71\x97\x14\x5f\x41\x5f\x2c\x3f\x02\x69\x0d\x33\xf1\x0b\x0e\x89\x61\xe6\xc2\x9f\x02\x48\x29\xf2\x47\x81\xc3\x1b\x8c\xf4\x20\x6d\xb0\xe1\xf1\x5b\x43\xf4\x5a\x11\x0e\xe9\x62\x18\x18\x3e\xa6\xc6\x94\xe0\x6b\xe4\x42\x6e\x69\x11\xf8\x7b\x88\x08\x74\x8d\x29\x24\x13\x14\x08\xe5\xc1\xe0\x97\xd9\x03\x2a\x90\xa5\x81\x3b\x41\x3e\x0a\x28\x01\x14\x13\x03\x0d\x0d\x2a\xf3\x5f\x80\x6f\x40\x42\x30\x71\x1a\xdb\x4d\x67\x92\x02\xe0\xdf\xcf\xd0\x6f\x10\x1d\x8b\xa1\x06\x88\x42\x75\xac\x06\xc5\xc6\x35\x82\x37\x7c\x50\x45\x03\x89\xac\x86\x95\x99\x08\xc5\x5b\x7a\x01\xf1\x30\x06\x93\x7e\x48\x46\x90\xd8\x13\xe8\x87\xeb\x86\x5b\xf0\x2f\x5e\x6f\x7e\xd9\xfb\xbd\xbe\x4e\x77\x3d\xca\xee\xc6\xcc\x80\xe4\xaf\x6c\xf6\x9e\xe3\x5b\xd3\x32\xdb\x46\xdb\xe8\xb4\xf9\xff\x47\x3f\xde\x4e\x3c\xae\xa4\x8f\x29\x9d\x1e\x6c\x6e\xde\xdc\xdc\x38\x37\x3d\x07\x93\xd1\x66\xb7\xdd\x6e\x6f\xb2\x4e\x0a\x7f\xe4\xef\x6e\x16\xc8\x20\x22\xab\x6c\xf1\x4e\x58\xdf\xd1\x1f\x33\xf5\x0f\x51\x00\xcf\x32\x15\x8a\xc6\x50\xde\x68\x76\x76\xb4\xfe\xac\x3a\xed\x6f\x75\x57\xdc\xc1\xde\xd6\xdc\x1d\xac\x60\x53\xa4\xe7\x7d\x81\x1d\x91\x3f\xe5\xd7\x1a\x19\xfc\xe1\xf4\xf9\xfe\x1e\xd1\x57\x67\xad\x79\x5c\x66\x47\xa4\x5f\xac\xd5\x2f\xda\xc1\xef\x21\x20\xd0\xd0\x7f\xdd\x29\x5b\x48\x8b\x36\xde\x5d\x65\xe3\xbd\x55\x36\xbe\xb5\xca\xc6\xb7\x57\xd9\x78\xa9\x64\x58\xb4\xf1\xdd\x55\x36\xbe\xb7\xca\xc6\xf7\xef\x47\x9e\x65\x3a\x5f\x40\xa0\x89\xdf\x3c\x3c\xc2\xeb\x96\x65\x93\x4e\xf0\x32\xfc\xf5\xcb\x22\xc7\xbb\x32\x98\xa5\x9e\xde\x79\x25\xa1\xdb\xde\x71\x7a\x1d\x63\xa7\xed\xb4\x77\x0b\x44\xe6\x28\xef\x69\x2f\xfe\x25\x31\x20\x40\x12\x99\xe2\x9a\x96\x79\xba\xbb\xe7\x6c\xed\x5b\xdd\x8e\xb3\xd7\xfb\xb4\xb5\xe3\xb4\x77\xc7\xf6\xb6\xb3\x7f\x6d\xf7\xba\xe3\x3d\xa7\xbd\xf3\x76\xbf\xeb\xec\xee\x5b\xbd\x3d\xa7\xb7\xff\xa9\xb3\xe5\x74\xc6\xec\xd7\x5e\xf7\xd5\x7e\xdb\xd9\xe9\xfd\xa6\x5d\xeb\x65\xdd\x75\x3a\x3d\xa7\xbd\x6f\x6d\xed\x38\xdb\xdb\x03\x7b\xcf\x6a\xdb\x9d\xb6\xd3\xd9\xb3\xb7\x9c\xad\xae\xfc\xb8\xef\x74\xbb\x9f\x7a\x1d\x67\xab\x37\x68\xdb\x5b\xce\x9e\xd5\x75\x3a\x3b\xfc\x5b\x2b\x79\x20\xe0\x1f\x2d\xf6\x9a\xf8\xd6\x62\xdf\x5e\x6f\x3b\xfb\x9d\xe3\x4e\xb7\xe7\x74\x77\xad\xad\xae\xd3\xe9\x59\x9d\x6e\xc7\xe9\x74\x44\x87\x96\xda\xfb\x6f\x93\xb6\xdd\xd9\x77\x7a\xdb\x03\xbb\xe7\x74\xba\x16\xeb\xab\xd7\xb5\x3a\x4e\x6f\x5f\x7c\xda\xba\xde\x71\xba\xfb\x83\xb6\xd5\x75\x76\xb6\xac\x8e\xd3\xb5\xb6\x2c\xf1\x43\xc0\xfe\x63\xb3\x27\xf9\x17\xf6\x16\x23\xb7\xbb\x75\xdc\xe9\xec\x3a\x5b\x1d\xab\xbb\xe7\xec\x58\x9d\xce\x8e\xd3\xed\x58\xdd\x5d\xa7\x1b\x75\xcb\x3e\xcf\xc1\xb1\xad\x8e\xd3\xde\xb3\xf8\xdc\x7c\xea\xee\x3b\xbb\xdb\x83\xb6\xdd\x71\xba\xdb\xb6\xb3\xdd\xb3\x3b\xce\xde\x6e\xf2\x0f\xe8\xec\x38\x9d\x1d\x4b\xfc\xdb\x66\xff\x67\xef\x38\x1d\xab\x9b\xcc\xec\xde\xce\xa7\x6e\xd7\xd9\xd9\x1f\x6f\x39\x5b\x3b\x9e\xb3\xbd\x67\x75\x41\xb7\xe7\x6c\xf5\x2c\xf1\x2f\x7b\xa9\x63\xed\x3b\xbd\x1d\xbb\xeb\x6c\x6d\x33\x06\x6f\x89\x7f\xc4\x2f\x9c\xe1\x5d\x67\xdb\xea\xb2\x37\xe2\xc7\xb7\x3a\x76\xd7\xd9\x1e\xf4\x9c\xbd\x7d\xab\x6d\x6d\x3b\x5d\x36\x6b\xbb\x5b\xe2\xd3\x8e\xb3\xdf\x11\x14\xbc\xea\x6c\x6f\x39\xfb\xd5\xa3\xd8\x76\xb6\x2d\xfe\x4f\x6e\x0c\x73\xf0\x6f\xaf\xeb\xec\x49\xfe\x8d\xd9\x7a\xf2\x6c\x67\x8b\x75\xb9\xbd\x07\x3a\x7c\x71\x8b\x7f\xf9\x50\xec\x5d\xab\xeb\xb4\x77\x06\xf6\x16\x5b\x41\xbc\x67\xbb\xeb\xec\xf7\xf8\x87\x5d\xbe\x46\x76\xb7\xf9\x23\xf6\x0e\x63\xde\x8e\xb3\xd7\xe5\x9f\x5e\x75\x76\x77\x3f\xf5\xda\xce\xf6\xce\xa0\xcd\x58\xb1\x6f\x3b\xbb\x5d\xbb\xe7\x6c\xb3\x95\xbd\xc3\x3e\x80\x5e\xd7\xd9\xed\x58\xe2\xdf\x68\x5c\x5b\x7b\xce\x6e\xd7\xe3\xcf\xb2\xe7\x00\x6b\xa1\x6b\x89\x7f\x05\x6f\xf7\xec\x8e\xd3\x19\xec\x3a\x3d\x36\x03\xfb\x8c\xf1\xce\xf6\x3e\xff\xb0\xe7\x6c\x6d\xff\x76\xda\xd9\xdd\xb5\x7a\xbb\x4e\x77\x6b\xcc\x57\xed\xc0\xee\x38\xfb\x6c\x31\xb3\xd9\x63\xac\xe5\xb3\xd8\x75\x7a\x81\xb3\xdd\x63\xff\xdd\x4e\xfe\x01\xfb\x4e\x97\x6d\x1b\x41\x8d\x25\xb6\xe0\x5c\x4b\x74\x8f\x8d\x84\x91\xbd\xb5\x3b\x68\xdb\xdb\x6c\x3b\x76\x9d\x9e\xbd\xe7\x74\x77\xac\x5d\x67\x57\x7c\x62\x0c\xe8\x76\x2d\xf1\xaf\x18\xdc\x8e\xd3\xdd\x72\x76\x76\x3f\x75\x7a\x4e\x67\xcb\x63\xab\xd3\x76\xf6\xe2\xd5\xba\xe5\xec\xec\x78\xb6\xb3\xbd\x67\x77\xd9\x4c\xf5\x3a\x96\xf8\x57\xce\x14\xdb\x7e\x6c\x74\x6c\xb2\xd8\xd4\xec\x3a\x5d\x9b\xcd\x24\xff\xb0\xe7\x74\x3a\xbf\x4d\x3a\x5b\x36\xdb\xbc\xa0\xbb\x63\x75\xa3\x0d\xc1\xa8\xb3\x9d\x9d\xee\xc0\xee\x32\xc1\xd0\xe6\xf3\x6b\x89\x69\xb6\x98\x24\xb8\x66\xc4\x0e\xda\x16\x63\xa4\xb3\xdb\xb5\x18\xdb\xf6\xf6\xac\x1e\xd8\x63\x8b\x99\xff\x23\x18\xb6\xed\x74\x7b\xbc\x91\x6a\x8e\x61\x6f\x36\xca\x7b\x00\x87\xc0\x95\xae\x9e\x0e\x7b\x06\xf1\x34\x55\xb3\xb7\xe7\xb4\xbb\x46\xb7\xe7\x74\x7a\x86\xf8\xdc\xeb\x39\xed\x3d\xa3\xd7\x71\xda\xfb\x46\x6f\x97\xfd\xdb\xdd\x71\xba\xdb\x46\x6f\x2b\xf9\xcc\x8e\x8a\x1d\xf6\xb9\xb7\x27\x8e\x0d\x63\xbb\xeb\x6c\xed\x1b\x5b\xdb\xc9\xe7\xce\xb6\xd3\xe9\xb0\xcf\xed\x8e\xfc\xac\xf4\xd5\x70\x0c\x31\xb9\xdd\x1d\xa7\xdd\x33\x78\x8f\x6d\xd9\x6a\x67\xd7\xd9\xde\x31\xba\xdb\xce\x56\xcf\xe0\xe2\xd7\xe0\x12\xd9\xe0\xfb\xde\xe8\xee\xb1\xd1\x88\xcf\x1d\xfe\x59\x50\xc1\x16\x41\x8a\xa2\x2c\xd5\xe2\x73\x7b\xd7\x48\xba\x9c\x9b\xe8\x2e\xeb\xbd\xd7\xe5\xfc\xe3\x9f\xb7\xba\x8c\x92\xce\x96\xb3\xb7\x6b\x6c\xed\x26\x9f\xbb\xe2\xf3\xae\xb3\xc7\x47\xd4\xdd\x36\xda\x4e\x67\x5b\x12\xd5\x8e\xff\xbb\x15\x11\xa6\x4e\x45\x32\x45\x49\x77\x05\x14\xdf\xdf\x65\xaf\x46\x35\x6b\xae\xdf\xf1\x9c\x21\xb2\xee\x2b\x5e\xe2\x7f\xde\xfc\xde\x7b\x4e\xe7\x28\xf3\xb4\x0a\x4f\x7e\x95\xe7\x15\x05\x2f\x23\xe7\x59\xcd\x1c\xf7\xd4\x0d\x80\xce\x99\x7e\xd9\x2c\x2c\x64\xd1\x02\xda\x47\xa3\x28\xf9\xfd\xb1\x84\x76\x9d\x60\xcd\xf5\x15\xd1\x5e\x20\x06\x79\xbd\xe1\xc7\x28\x78\x0b\x01\xaf\xff\xa5\xa5\x22\xf9\x71\xa5\x54\x00\xd7\x25\x30\x28\x62\xc5\x51\xf2\xeb\x6a\xe7\x03\x92\xe1\x19\x26\x45\x61\x8c\x53\xf9\xd3\x4a\x69\x70\x01\x05\xe2\x62\xb2\x08\x15\x23\xf5\xc0\x52\x81\x19\x17\x09\x90\x16\x27\x94\x0d\x98\xc4\xca\x84\x48\x8f\x64\x51\xbb\x5c\x0c\xf3\x63\xf0\xf2\x3a\x82\x97\xc5\x99\xf2\x18\xb7\xfc\x57\x8c\x5b\xd6\x55\x75\xaa\x51\xc2\xb4\xee\xed\xe6\xb2\x23\x1e\xa4\x5a\x3b\xb7\x3e\xfc\x20\xd0\x07\x5f\xbe\xfb\xf4\xf1\xf6\xdb\xa7\x45\x02\x1f\xcf\xa5\x7a\x9f\x0e\x82\x9a\xdb\xe4\x48\x71\x67\x7e\xe6\x3e\x8c\x88\xa1\xb7\x2f\x7f\x7b\x1d\x8c\xbc\x4e\x3d\xf6\xae\x29\x0e\x68\x91\xd5\x3f\x7f\xdc\x4f\xd4\x80\xf8\xef\x9a\xe7\xe9\xfc\xb7\xd9\x4e\xff\x37\x70\x5e\x00\x6d\x0f\x46\x35\x61\x8b\xc4\x5e\x68\x0e\xc6\x59\x54\x53\xd7\x0b\x27\x79\x64\x99\xaa\x17\x0c\x14\xd8\x63\xe0\x0d\x0b\x7d\xfe\x9a\x37\xab\x11\x6b\x8b\x5f\xe2\x11\x4a\xf9\xdb\x5a\xf1\xbf\x0b\x30\xca\xe4\x77\x17\x78\x5f\x84\x8d\xa7\x53\x7c\x0c\xa9\x9e\x51\x30\x2a\xd0\x3e\xa2\x26\x8a\x0b\xe1\x24\xcf\x14\x62\x71\x27\x8f\xa8\x6d\x08\x5b\xaa\x32\xdd\x4f\x7d\xe5\x53\x04\x58\xb0\xc0\x09\x99\x6d\xbf\x30\x58\x2b\x06\xc7\x48\x94\xa4\x0b\xce\xa7\x86\x29\xc8\x25\x6c\xd1\x8c\x32\x51\xde\xb2\x18\x4d\x55\xa9\x16\xba\x36\xea\x42\x39\xcc\xa5\x45\x94\xac\xba\xb5\xb9\xd5\xd2\xb2\x6f\x1e\xd9\x29\x62\xca\xd6\x2c\x35\x3f\xb8\xdd\xe1\xc5\xf1\xab\xf7\x2b\x8b\x87\x6d\xae\xfd\xe5\x55\xba\x86\x13\x23\x83\xf5\xe6\x9e\x92\x4d\x19\xe6\xb7\xde\x99\x79\xb3\xf9\x71\xf2\xa9\x73\x0b\x0b\x9c\x9d\xd8\x43\x83\x59\x5d\x24\x3e\x35\x6c\x71\x69\x21\xee\xb5\xa0\xe1\x8e\x06\x03\x18\x04\x3c\x7c\x93\x60\xcf\x88\x29\xa9\x1b\x2d\x51\x70\x7e\xd6\x3b\x41\xe9\x0d\xb6\xe9\x18\x11\xb7\x0c\xd9\x2d\x17\x62\x9b\x3f\x47\x8f\xbd\x30\x60\xcb\xd3\xa0\x63\x40\x8d\x30\x80\x46\x66\x58\x6f\x51\x40\x83\x28\x72\x55\x04\x80\xf2\x38\xce\x29\x24\x43\x4c\x26\xc6\x00\x12\x0a\x90\x6f\x70\x08\x36\xc7\x78\x3e\x93\x11\xaf\xc8\x1f\x19\x40\x3c\xaf\x4f\x2e\x6c\x5b\xe6\x39\x8f\xdb\x35\xd2\x25\x5a\x2c\x83\x1d\x1a\xc6\x30\xa4\x21\x11\x21\xb3\x30\xa0\xc6\x0d\xf2\x3c\xa3\x0f\x0d\x10\xd2\x31\xf4\x29\x1a\x00\x0a\x5d\xcb\x98\x62\xca\xfe\x02\x9e\x37\xe3\x3f\x61\x82\xbe\xb3\x9e\x09\x04\xae\x01\xc4\x48\x28\x36\x80\xeb\x72\x18\x3c\xe0\x19\xc8\x17\x65\x22\x10\xf6\x1b\x52\x2b\x18\x83\x49\x8e\x5e\x3a\x86\x06\x5f\xb4\x08\x06\x06\xf0\x5d\x83\x84\x1e\x0c\x8c\x21\x26\x22\xbf\x92\xb7\x1a\x0d\x80\xd9\xa8\xf9\x2c\xbc\x1a\xea\x8c\x8f\x29\x1a\x22\x89\xf8\xc5\x81\x5b\x86\xb8\x54\xdf\x68\xb2\xe4\xea\xbd\x58\xa9\x9b\xe4\x83\xc5\xf9\xa6\x61\xe4\x6e\x29\x2f\xf3\xad\x62\x9c\x53\x4c\xe4\x62\x2c\x57\x5f\xa6\xd9\x57\x03\x03\x10\x68\x04\x14\x13\xe8\x1a\x03\x0e\x9c\x60\x07\xc8\x85\x06\x8a\x67\x0f\x44\x84\x8c\x09\x1c\xca\xc0\x95\xe0\x60\x73\xd3\x85\xd7\xd0\x63\x52\xcd\x99\xe0\xef\xc8\xf3\x00\x0f\x62\x81\xbe\xfd\xf1\x7c\xd3\xc5\x83\x60\xf3\x33\xec\x6f\x1e\x9d\xbd\xde\xfc\x8c\x7c\x17\xdf\x6c\x7a\x78\x00\x3c\x85\x52\x49\x06\xff\x9a\x53\x90\x19\x81\x63\xf0\x82\x05\x7c\xb6\xa7\x90\x04\x28\x90\x81\xdd\x62\x15\x80\x01\xc1\x41\x60\x04\x30\x0a\xfe\xfe\x82\x43\x63\x00\x7c\x63\x02\xfc\x90\xaf\xe2\x81\x07\x01\x51\x5f\x19\x43\x02\x8b\x93\x36\x4b\x7f\xa8\x12\x22\x91\x75\xc6\x3e\x4f\x90\x8f\x26\xe1\xa4\x72\x8a\xab\x6a\x32\x46\xcb\xb2\xa7\x07\x5f\xe0\xc3\xe3\x93\x28\x0f\x17\x24\xaa\xe0\x24\xf2\x88\x0d\xff\x42\xc4\x99\x2f\x41\x47\xcd\xef\x33\x33\x5b\x21\xc5\xc7\x34\x9d\x51\xf0\x3a\xf8\x04\x3c\xe4\x9a\x19\x9c\xb0\x1a\xc0\x71\x1a\x6e\x0f\x11\xf4\xaa\xb4\xfe\x18\xe7\xab\x0c\xfc\x4b\x2b\x2c\x6b\x4f\x39\x17\xe6\x95\x93\xcb\x41\xa9\xb2\x2f\xa7\xbe\x4c\xe3\x5a\xfd\x53\xfe\xcf\xd6\xfc\x13\xfd\x8f\xbf\xd9\x8d\x80\xd2\xac\xc2\xcc\x0d\x59\xae\x53\xf4\x56\x92\x18\x96\x03\xca\x4a\xe5\x7e\x08\x6f\x64\x0c\xca\x66\x52\x40\x46\x90\x3a\x91\x0e\x9f\x29\xed\xc9\xd3\xd4\xe6\x70\x18\x16\x9f\xb0\x63\xe8\x4d\x53\x93\xe6\x53\x91\x10\x01\xaf\x21\x99\xc5\xc7\x19\xc5\x86\xcb\xd4\xc2\x09\xf2\x61\x7c\x70\xc5\x6e\xf0\xea\xc5\x9d\x97\xf6\x39\x4a\x78\x16\x9e\x1f\x0f\xaf\xc6\xd6\x9d\x12\x24\x20\x13\x0b\x77\xef\x35\x24\x68\x38\xbb\x88\xb2\x40\x92\x51\xd2\xcc\x96\xad\x0f\x1c\x5e\x9c\xd8\x93\xdd\x86\xf3\xed\xbf\xec\xb1\x19\x84\xfc\x18\x9f\xf7\x08\xac\x28\x95\x3f\xdf\xe9\x39\xdf\xf9\x79\xa4\xaa\x42\x3f\x95\x1c\xa3\xda\x83\xf4\x4b\x72\xc2\xa0\xc0\xb8\x66\x9c\xe6\xba\x0b\x88\x13\xb7\x62\x05\x66\x88\x3d\x0f\xdf\x30\x15\x29\xd2\x72\x96\x01\x22\x50\xf0\xf5\x02\xcb\xe5\xb5\x7f\xbd\x82\x05\xe3\x02\x7f\x54\xe4\x3e\xfa\x53\xad\x97\x97\x00\x79\xd0\x65\xa2\x47\x5d\x39\x4d\xd7\xcd\x45\xac\xd1\x0a\xc9\xcb\x54\x15\x01\x32\x21\x33\xdd\xdc\x24\xf7\x4d\x60\x8c\x00\xdf\x80\xb7\x28\x60\xf6\xa7\x78\xf3\x21\xae\x9e\x0f\x70\x80\x49\xa3\xa5\xd3\x84\xf7\x07\xa9\xcb\x42\xb5\xc3\x3c\x8c\x78\xb1\x9b\xad\xe0\x60\x57\x84\x7c\xf9\xea\xcc\xd8\x31\xaf\x4f\x0e\xa2\x07\x06\xd8\xcd\x81\x02\xa7\xa9\x04\xf2\xa5\x2a\x58\xe0\x92\x7e\x85\x02\xd3\xa8\xd7\xf8\x70\xaf\xec\xb3\x64\x79\xd4\x9f\xab\x33\x29\xde\x72\x8b\x4a\x5f\x53\x2f\x4f\x2f\x15\x25\xa7\x2c\x73\x02\x7c\x30\xe2\xab\xa7\x49\x61\xbd\xe2\x79\xae\x2c\xc6\xde\xa8\x01\x01\xc2\x39\x06\x89\x05\x60\xab\x9a\x90\x4e\x12\xb0\x6d\x9f\x0c\x2a\x32\x4d\x40\x60\x00\x61\xe8\x44\x29\x9e\xab\x44\x02\xca\xfa\x93\xd3\xbc\x9f\xc6\x93\xd7\xcc\xb7\x3c\x3f\xb7\xeb\xf3\xbb\xcc\xf3\xaf\xf0\xa3\xd0\x6d\x5d\x18\xcd\x50\x21\xb8\x17\xc4\x49\x32\xea\xab\x97\xba\x9d\x22\xc6\xe2\xc2\x60\x40\xd0\x34\x05\x3d\x5b\x5d\x92\x51\xc7\x95\x74\x4b\x75\xdc\xad\x0d\xba\x61\xdb\x5a\xb5\x7e\xdf\x31\x0d\x5d\xe9\xaf\x1a\x00\xc9\xd2\x35\x5f\x3a\x4b\x09\x77\x09\x54\xf4\xf4\xac\x5c\x14\xa3\xe7\x4e\xa5\x42\x51\x58\xbb\xd7\xca\x91\x94\x14\x9c\xac\x57\x02\xa8\xc1\x25\xc5\xa2\xf7\x14\x29\xa7\xf6\x1c\x5e\xf1\xeb\x91\x3d\x05\x94\x42\xb2\x76\x97\xf8\x39\xd8\xfd\x84\x3f\x74\xb7\x16\xc9\xe9\x52\x86\x13\xfd\x14\xa7\x0f\xe7\xb2\xa4\x97\x9c\xb5\xcd\xf3\xbe\x24\x9a\xaa\x65\x76\x9c\x4e\x46\xaa\x44\x02\x09\x0e\x33\x1a\xb1\x5c\x14\x51\x4d\x07\x91\x93\xa1\x0e\x01\x31\xe1\xee\x22\x30\xc2\x3e\xf0\xec\x80\x12\x34\x85\x76\x7c\x9e\xcb\x87\x3f\xfa\x88\x07\x5e\x85\x01\x24\xe7\x53\x30\x80\xef\xfd\x8f\x01\xcc\x8e\xb9\xa3\x49\xab\x6e\x67\xc5\x9f\xa4\x02\x4d\x22\xcf\x1e\xe3\x91\x87\xfc\xab\x03\xe9\x4a\x74\x01\x05\x07\xfc\x67\xc6\x9c\x67\xb7\x13\xef\x6f\x7d\x10\xc0\x9d\x2d\xeb\xec\xd5\xbb\xee\x6f\xb3\xe7\x5b\xfd\xcf\xb7\xe1\xe0\x7b\xdb\x07\xaf\x3e\xb4\x07\x27\xf8\xfa\x6d\xcf\xed\xb9\xb3\xed\xde\xe9\x6c\xfb\x7a\x30\x19\x5c\x9f\x7e\x3b\xba\x39\x3d\xde\xff\xee\x4e\x06\xfe\xeb\x57\xee\xf4\xb7\x57\x1f\xf0\xd9\xf9\xe0\xf6\xf4\x78\x30\x02\xbf\x7c\x9a\xfe\xd6\x1d\xb7\xe5\xdf\xcf\x8e\xd1\xd1\xe8\xec\xd5\x1b\xef\x4b\xef\xd7\x91\xdb\xf5\xae\xdc\x5f\x46\xfb\x6f\xbe\xbf\xb8\x79\x33\x7b\x8e\x7f\xfb\xec\xf9\xe0\xd5\xaf\xd1\xdf\x13\xf0\xf9\x36\x38\x3b\x77\x7b\xe0\x17\xaf\xfd\xdb\xf9\xe0\xfa\x6c\x84\x47\xaf\x4f\x6e\x6f\xbe\xfc\xf3\x03\x7e\xfd\xcb\xaf\xfb\x6f\xda\x6d\x7a\x7a\x7e\x73\xfb\xfa\x97\x9b\xd9\xdb\xe3\xf6\x8c\xb5\xfd\xfa\x38\xf9\xff\x8b\x8b\xa3\xe0\xf4\xe2\x68\xd4\x3f\x79\x71\xf3\xf6\xb8\x7d\x7b\x7a\x84\x53\xbf\xbf\x7e\xd1\xde\x7e\x7b\xf2\x22\x7e\xff\xcd\xec\xf9\x77\xf7\xd5\x9b\x6b\xd0\xfd\xb8\xff\xa6\xfb\x26\xf8\xf2\xf9\x1d\x51\xbe\xa3\x09\xbd\xa7\xfe\xdb\xef\x5b\xff\x38\x13\x63\x7e\xa6\x5d\x50\x9d\xfd\xfd\xfd\x4d\xce\xe8\x98\xeb\x35\x52\xfd\x4b\x26\x54\x95\x43\x1a\xf7\x49\xb9\x64\x5a\x44\x2c\x29\x52\xa5\xb6\x4c\x22\xc0\x0f\x86\x98\x4c\x82\x4d\x40\x08\x98\xa9\xd2\x88\x1d\x4c\x7d\x48\x6c\xb6\xee\x6c\x1e\xb3\x61\x0f\x09\x18\x71\x61\x90\x7f\x51\x95\x5d\x16\x5d\x96\xf4\xf2\x0f\x69\xf4\xb5\x32\x14\xff\xae\xf5\xa4\x6c\x28\x11\x99\xf6\xdc\x63\xca\xb4\x70\xcf\x83\x2b\x9d\xa7\x88\xb4\x45\x86\xb5\xfe\x01\x85\x14\x79\xc1\x26\x70\x5d\x9b\x62\x9b\x67\xc3\xad\xe2\x1c\x54\x9b\x11\x87\x21\x20\xa3\x90\xb3\xc5\x11\xb1\xb2\x7f\xef\x3c\x7d\x2a\x46\xf0\xd3\x61\xf2\xe3\xd7\xce\xe5\xcf\xea\x1f\x07\xa6\x69\xf9\x87\x1b\xde\x21\x74\x78\x4d\x97\x0d\xf3\x67\xb3\x65\x91\xc3\x6e\x8a\x50\x34\xdc\x38\x62\xcb\xc5\x41\x01\xff\xef\x06\x6c\xb5\x08\xa4\x21\xf1\x0d\x78\xb7\xe1\xb5\x7e\xfc\x48\x33\x5d\xb0\xec\xeb\xa5\x05\x0e\x7f\x6a\x5b\xc1\xe1\x4f\x1d\x0b\x47\xec\xa4\x64\xf6\xc7\x10\x93\x0d\xf6\x8c\x67\x91\x43\xf8\xf5\x9c\x1f\xcb\x0e\xa2\x90\x63\xf4\x5c\x6e\xb4\xfe\xf6\xd3\x06\x60\x44\x11\xc7\x87\xb7\x74\xa3\xd5\x72\x5c\xec\xc3\xd6\xd3\xa7\x1b\xbe\x33\x0d\x83\xf1\x86\x27\xfc\xcf\x2d\xeb\x27\xfa\xe3\x87\x2f\x47\xfc\xd3\xe1\x21\x6d\xfd\x8d\x75\xd9\xfa\xdb\xdd\x00\xd0\xc1\x78\x03\xb5\xfe\x08\x18\x09\xf8\x10\xdd\x0d\x91\x0f\x3c\x6f\xf6\x07\x23\x00\xfc\xf8\xc1\xd4\xac\xc3\x43\xe2\x88\x71\xfc\xf8\x11\x7d\xda\x68\xc5\x4f\xa2\xe1\x46\xd0\xa2\x63\x82\x6f\x0c\x7c\x77\x27\x07\xec\xdf\x6d\x78\x16\x51\x87\xdc\xfa\x43\x3c\xe3\xc3\x1b\xe3\x62\x36\x85\x2f\x08\xc1\x64\xc3\x94\xce\x33\x83\x09\xae\xc9\x54\x7a\xa8\x03\x4a\xc2\x01\xbf\x87\xf5\xb1\x6f\xf3\x21\xf7\x99\xd9\xec\x07\x14\xf8\x03\x68\xb6\xee\x36\x5a\x2d\x0b\x1c\xfa\x5f\xdb\x97\x56\x70\xe8\x7f\xed\x5c\x5a\xf8\xd0\x34\x1d\x51\x7c\x65\x03\xb4\xa2\x4f\xb4\xf5\x44\xb2\xf0\x49\xf0\xf4\xe9\x06\x7e\x76\x68\xfe\x1c\x3f\x16\xb4\x5a\x4f\x24\xbd\xf8\xae\x78\x95\xf6\x09\x04\xee\x80\x84\x93\xbe\xcd\xbf\x48\xef\xbc\xcc\xc3\x5c\x29\x82\xc1\xe6\x94\xe0\x09\x0a\xa0\x8d\xf9\xea\x2d\x7e\xee\xf7\x10\x92\x99\xcd\xb5\xdb\x20\xb3\x2d\x2d\x7f\xae\xc5\xff\x0d\xf7\x8f\x19\xb1\xc1\x61\xf2\x59\xdd\xa5\x20\xb5\x2d\xc4\xf8\xff\xe0\xb7\x3e\x07\xd0\x19\x41\xba\x61\x52\x82\x26\x13\xe8\xf2\x20\xaf\x96\x05\xc8\x28\x38\xc8\x97\x93\x95\xcf\x4e\x3d\x80\xfc\xd7\xae\xd9\xb2\x36\xda\x96\xef\xfc\x3e\x7d\x1e\x22\xcf\x85\xa4\xb5\xf1\xc7\x37\xdc\x67\x4d\x04\x4c\x2f\x8a\x9a\xf6\xa3\x2f\x1c\x6e\x6b\xb6\x7e\xfc\x30\xe5\x66\x35\xef\x5a\x97\x77\x77\x4f\x14\x9a\xc1\x13\x75\x30\x79\xa2\x0d\xf8\x73\x44\x04\x20\xd0\xa7\x4e\x64\x1b\xb6\x7e\xfe\x1a\x0b\x22\x47\x14\x54\xd8\xf8\x43\x4e\xc8\x41\xea\x15\xb3\xe5\xd0\x31\xf4\x37\x34\x8d\x83\x0d\xd8\xba\x6b\xdd\xb5\x2c\xf6\xe1\xf2\xe0\xab\xfc\xcf\x65\xc9\x42\x89\xe6\x14\xf4\x03\x4a\xc0\x80\xda\x1e\x1e\x8d\xd2\x51\x9c\x96\x29\x26\x9c\xe9\x93\xfc\x96\x7f\x35\x72\x58\xe8\xfc\xa7\xe8\x16\xf9\x31\x03\x42\xe2\x31\x39\x26\x96\xda\x81\x78\x62\x80\x27\xd3\x90\x42\x77\x43\xd9\xa6\x72\x45\xb0\x71\x7a\x78\xf4\x12\xd2\xc1\xf8\x40\xf9\xf9\xce\x82\xbe\xfb\x7e\x38\x0c\x20\x3d\xe0\x36\x35\xe6\x9f\xcf\xb4\xcd\x9a\xf1\xb3\xa6\xa5\xb4\xc1\x88\x84\x87\x1c\x8d\x2b\x7e\xe0\x49\x3c\xa9\x7f\x60\x82\x46\xc8\x3f\x10\xa9\x12\xa6\xec\xe0\x00\xde\x1d\xc4\xbf\x40\xdf\x8d\xbf\xdf\x86\x5b\x8c\xd6\x24\xd6\x42\x4f\x8a\x7e\x84\xc3\xd0\xf3\x3e\x12\x2f\x47\x77\x48\x3c\x53\x1a\x9d\x6c\xd2\xd4\x31\x9a\x96\x99\xed\x4b\x37\xb8\x78\x01\x8a\xa9\x46\xc3\xd9\x86\xe8\x04\x04\x01\x1a\xf9\x1b\x7f\xdc\x59\x9c\x01\xa2\x0f\xf1\x59\xed\x46\x7c\x93\xed\x29\x96\x58\x89\xb0\xe3\xcf\x85\xc4\xb3\xd8\xa1\x14\x7d\x29\xd6\x6e\xbd\x53\x38\xb7\x6c\x99\xd1\x17\xd8\xec\xf3\x55\x76\xf5\x0a\x3d\x83\x75\xc2\xb3\x14\x07\xb3\xbc\x64\xfb\x16\x60\xdf\xe6\xb9\x81\xd1\xce\x5e\x8a\x58\xd3\xac\x73\x50\xb6\xce\xfb\xe1\x70\x08\xc9\x39\xfa\x0e\x0f\xb6\xdb\x6d\x6b\x02\x6e\x5f\x12\x30\x81\xa7\x88\x8d\xf5\x60\xdb\x1a\xe6\x17\x36\x98\x4e\xa1\xef\xa6\xbf\x9b\x82\x30\x80\xe9\xaf\x86\x4a\x3b\x6d\x6b\x0c\x7c\xd7\x83\x1f\x60\x30\xc5\xbe\xfa\xa4\x50\x08\xa0\xc3\xd1\xf3\x22\x3d\x80\xcf\x15\xf2\x07\x84\xdb\xd4\xf1\xc0\x4d\xa5\x49\xb3\x65\xb1\x21\x8a\x69\x55\xbe\xff\xbb\xd8\x2f\xe9\x71\x3c\x7d\xba\x21\x17\x51\x18\xc0\x8d\x96\x58\x33\x01\x93\x6f\x6a\x8b\x56\xbb\xd5\x6a\x3d\x29\xfc\x4d\xae\x34\x3e\x78\xb6\x70\xac\x29\xf6\xbc\x83\x8d\xb6\x45\x79\x5d\xd6\xd6\x06\x81\x23\xe8\x0b\xb5\xe3\x43\xe8\x53\x34\x81\xce\x04\x90\xab\x78\x4b\x19\x50\x2e\x7b\x60\x05\x9c\xca\x68\x2f\x6b\x5e\xbc\x21\x60\x9a\x12\xb7\x4c\xcb\xf9\xdb\xdf\x5a\xc1\x0d\x62\xaa\x08\x74\xa6\x04\x5e\x1f\x42\xae\xd2\xb4\xfe\x18\x80\x00\x1a\xed\x03\x95\x7b\x6c\xf3\xb0\xdd\x10\x06\xd0\x19\x30\x6d\xc0\x3b\xf2\xbc\x0d\xb6\x42\xf8\x9b\x1d\x0b\x1c\xc6\x3b\x42\x34\x73\xb8\x23\x46\xc8\x67\x9c\xe9\x06\x5c\xe4\xf3\xe3\x4a\x2e\xaa\xd6\xc6\x1f\x7c\x9a\xf8\x5a\x2b\x3e\x12\x02\x27\x3d\xd9\x7c\x97\x3d\xe1\x34\xee\x1c\xc8\xbe\x3a\x9d\x27\x4c\x5f\xb8\x12\x5f\xef\x1d\x08\xa5\x47\x12\xb7\x67\x41\x87\xb6\x0f\x19\xe1\x8c\x94\x4e\xcb\x62\xda\x90\xd0\x84\xd8\x2f\xb2\xb1\x4e\x27\x1a\x71\xd4\x68\xcf\x12\xd3\x81\x26\x10\x87\xb4\x25\x25\x09\x85\xfc\x76\xeb\xe7\xf6\x41\x17\xf6\xa2\x77\x7b\x07\xec\xbf\x5c\x42\x26\xad\x04\x14\x4f\x37\x5a\x77\x77\x16\xe4\xac\xb0\xbe\x7e\xed\x58\x7b\x97\x97\x2d\x36\x5a\x97\xb0\xdf\x2c\x85\xaf\x8d\xe7\x7e\x35\xd3\x2d\x07\xdf\xad\x3d\xf6\xee\x81\xba\x19\xc4\x77\x75\xd8\xa1\xb0\x21\x25\x33\x41\x0d\x99\x99\x2e\x1d\x59\x20\x35\x0b\x5e\x26\xd8\xf3\x90\x3f\x8a\xcc\xd4\x86\x72\x79\x29\x52\x95\x37\x79\x98\x56\x42\x24\x9b\x32\x47\x22\xb4\x72\x27\xa8\x81\x63\xa1\x2b\xa4\x29\x75\x06\xc0\xf3\xb8\x48\x6a\x59\x09\x6b\xc4\xb4\x30\xb5\x4b\x1c\x4b\x77\x45\xe2\x5c\x4b\x07\x7c\xfa\x94\xfe\x0c\x37\xe9\x41\xfb\xce\xd2\xa9\x81\x7f\xb0\x95\x11\x50\x30\x99\x1e\x40\x2b\x0c\xa0\x2b\xd4\x92\x29\x24\x03\xe8\x0b\x1d\xe5\xee\xce\xc2\xf2\xac\x90\x3c\x82\xb7\x94\x49\xbb\x58\x02\x58\x7f\x28\xe4\xf2\xf7\x43\x8d\x56\xa0\x96\x06\xca\x71\xc3\xdc\xbc\xee\x6c\x8a\xa8\x40\x65\x59\x6c\xa6\xcf\x69\xae\x7b\x26\xbf\x3a\x88\x69\xce\xe6\x26\x9f\x06\x93\x6b\x9b\x99\x33\x28\xb6\x5c\x99\xa4\x38\x61\xbc\x3e\x05\x74\xec\x0c\x3d\xcc\x65\xc6\x45\x34\xf6\xcd\x0e\xdc\x69\xb5\x2c\xff\x30\xf5\xf3\x07\x28\x50\x01\x3e\x72\x98\xd1\xe3\x69\x78\xce\x3a\x72\x2e\x30\x05\xde\x05\x1a\x5c\x05\xad\x1f\x3f\xda\xe2\x64\x18\x4c\x43\x6e\x35\x0a\x06\x6d\x28\x5c\xa5\x92\xab\x31\x4b\xc1\x86\x2f\x24\xaa\x52\x5a\x98\xed\x1c\x46\x28\xb3\x3a\xd2\xbd\x8a\x3a\x4f\xa2\xe3\x0f\xe7\xe7\x4f\x22\xb3\x16\x1b\x48\x8a\xf4\x09\x7f\xa2\xbc\xf7\x40\xe9\x3d\xd8\xec\xb4\xbb\x5b\xfc\x9f\x34\x1d\xa2\xab\x16\x5f\xd9\xbc\x82\xb3\x60\x1e\xb3\xdb\xf9\x9f\x5f\xf1\xa5\x45\xc4\xf1\x20\xe2\x86\x87\xc8\x77\x9f\xcf\x36\x78\xfd\x26\xd3\xc2\xad\x27\x68\xb8\x41\xc4\x4b\x48\xcb\x71\x2f\xc7\xf1\xf0\x30\xf5\x73\x3d\x8e\x93\x12\x76\x23\x31\xe0\x50\x19\x70\x68\x11\x1d\xaf\xdd\xc3\x6c\x7f\x59\x5e\x93\x72\xde\xca\xae\x5c\xa5\x2b\x57\xe1\x2d\xc9\x33\xf6\xee\x4e\xa3\x12\x09\x8d\x37\x62\xd7\x93\x82\x39\x0d\x36\x60\x4b\xea\x1a\x99\xc1\x2b\xbf\xc8\x69\xc1\xe4\x05\x18\x8c\x93\x83\x83\xb6\xfe\xa0\xc5\x4d\x6a\xdb\x63\x62\x46\xe1\x59\x66\x2f\x3b\xc0\x43\x20\x48\x6d\xc5\xb8\x86\x97\xca\x6a\xb3\x65\xa5\x79\x30\x4f\x3b\xb2\xd2\x59\xcb\x1a\x4c\xc3\x66\x32\x85\x9f\x7c\xb1\x92\xc2\x39\x94\xe8\xb5\x6c\x9d\x4f\x74\x44\x2d\xda\x28\x9f\x84\xba\x6d\x2a\xb6\x5c\xd2\x8a\x54\x00\xf5\x32\x2f\x61\x90\xa8\x9f\xde\xfa\xf1\xe3\xeb\x65\xcb\x99\xa8\x9a\x82\x9f\x48\x77\x10\x5c\x49\x5a\x58\x43\xbe\x8c\x5c\x69\x69\x26\x57\xfe\x5e\x63\xfa\x32\x4f\xa6\x26\x28\xcd\x1e\x18\xf3\x38\xfb\xfd\xdd\x9d\xf0\x0f\x78\x87\x58\xd1\x19\xbc\x6a\x9d\xc1\xc3\xa3\x12\x97\x40\x2d\x1b\x2b\x6a\x4a\x94\x2c\x89\xfd\x0c\x85\xce\x28\xec\x79\x85\x0f\xc9\x36\xb8\x51\xc0\x8d\x5b\x3f\xd0\x68\x17\x16\xb0\x02\x0b\x5b\xde\x5c\x5a\x86\xe8\xfa\x30\xab\xaf\x14\x29\x1a\x54\xa3\x6a\xa0\x58\xd5\x88\x9d\x12\xbe\xaa\x6d\x48\xb7\x46\xbc\xe0\x68\x8b\x9f\xe0\x25\x9a\x07\x14\x06\xc1\x4b\x80\xbc\x90\x40\x55\x11\x21\x3a\x67\x53\x9e\xa4\x01\xf6\x03\xec\x41\xe7\x06\x10\x7f\xc3\x7c\xfb\xfe\x17\xe3\xe5\x8b\x8b\xe3\x57\x07\xc6\x31\x0e\x3d\xd7\xff\x4f\xca\x9e\xf0\xe1\x80\x3b\x35\xcd\xc4\x32\x6f\x71\x37\x57\xaa\x73\xf2\x44\x1c\x39\x3a\x1d\x45\x7c\xf7\xe2\x1a\xfa\x14\xba\xd6\x3c\x6e\x1c\xee\xa3\xbb\x80\xb7\xf4\xe0\xa7\x4e\x81\x4f\x07\x05\xe7\x7c\x19\x20\x7f\x54\x20\xe1\x3c\x3c\x12\x8f\x40\xe2\xb0\xf5\xe4\xa0\xe0\x43\xe8\xfb\x6c\xc9\x72\x47\xd1\x19\x46\x3e\x85\x44\x28\x4f\xca\xc3\xe2\x8b\x31\x04\x2e\x23\x9b\x02\xc4\xc9\xc7\x21\x9d\x86\x34\x27\x63\x92\x76\x78\x4c\x33\xe0\xc1\x4d\x00\x79\x1a\x89\x23\x7e\x3e\x3c\x14\xa2\x27\x79\xf1\x67\xfe\x37\xef\x4f\x9e\x28\xc8\x7b\x02\x0f\xa1\x43\x20\x0f\x22\xdf\xd8\xfc\xaf\xcd\x91\x65\x3e\xf5\xe8\xdf\xcc\x56\xf2\xe5\xdf\xf9\x97\x23\xf6\xa5\xbc\x37\xf7\x62\x0f\x0e\xf0\x03\x74\x81\x5f\xd1\x89\xb7\x01\x63\x8f\xb1\x20\xfd\x9c\x6f\x5a\x67\x4c\x27\xde\x39\x18\xc2\x0d\xca\x24\x02\xf2\x11\xcd\x9f\x8f\xdc\x30\xe6\x24\xfd\x2b\x08\xa7\x90\x6c\x44\x1d\x45\x6b\x34\xc9\x4c\xc8\xf9\x9f\xa2\x49\x33\x5b\x4f\xa8\x73\x43\x10\x85\x87\xea\xd9\x28\x9c\x7e\x90\x8f\xf5\x19\x7d\x12\xb9\xfa\xff\xbe\x0d\xb7\x9e\x3e\xdd\xf0\x0f\x7d\x27\x08\x99\x11\xb1\x11\xfd\x62\x6f\xc3\xad\x16\xd7\xff\xb9\xbf\x97\x73\xd8\x67\x7f\x53\x82\xd8\x56\xdd\x30\x29\x1a\x5c\x99\x16\x6d\xdd\x59\x20\xe6\x03\x0a\xce\xc3\xe9\x94\x67\xd3\xfe\x9c\x78\x13\x94\xb9\x36\x95\x87\xe5\x76\xa5\xad\xd6\x41\xc1\xb3\x81\xe6\xd9\x3b\x8b\x7b\xff\xf1\xec\x20\x75\x71\xc0\xde\xe7\x36\x9b\x95\x62\xe0\x9d\x35\xc2\x14\xbf\x62\x73\xcd\xcd\xf9\x86\xee\x0a\x21\xd4\x3c\x0b\xad\xc8\x5f\xe1\xc7\x6b\x93\x4f\x9e\x05\x6a\x78\x05\xf5\xbe\xcf\x76\xca\x59\xd8\x6a\x59\xc1\x61\x85\x03\x10\x44\xce\x20\xc1\xb6\xd8\x13\xe2\x6f\x04\xc5\x0e\x0e\xe8\x50\x7e\x93\x74\x67\x11\x7e\x39\x22\x5d\x1b\xfc\xde\x0b\xfa\xd4\xda\x40\x62\x44\xb1\x40\xf9\x99\xfb\x89\xb0\xe3\xc2\x01\x76\x61\x6b\xc3\x6b\x39\x32\xd7\xaf\xf5\xf4\x29\x4a\x2f\x43\x74\x88\xa2\x65\xd8\xb6\xd8\xfa\xb3\xd0\xb3\xc3\xff\xfc\x6f\xff\xbf\x7d\x3b\xfe\x9f\x71\xf1\xe1\xe3\xbb\xe3\xa3\x8b\x17\x27\x07\x06\x2f\xb7\x6a\x88\xc5\xa9\x54\x70\x80\x46\x1f\x53\x8a\x27\x06\x1e\xf2\xbf\x3c\x3c\x32\x92\x06\xfe\x53\xf5\x81\x09\x01\x82\xd4\xaf\xf2\x02\x26\xf1\xb9\xd4\x73\x14\xf0\x25\x77\xc1\xc4\xd8\x5f\x6d\xc9\x65\x9d\xea\x0f\x62\xc9\xd5\x5f\x71\xca\x2c\x0b\x81\x56\x3c\xf1\xfc\xf7\x68\xe2\xdb\x75\x27\x9e\x6f\xc9\xe4\x98\xcc\x2b\x04\xa5\xbd\x59\xd1\xc4\xc4\xa7\x28\x6f\x8f\x8d\x9c\x75\x96\x93\x77\xe9\x27\x05\x35\xcc\xda\x44\x8a\xb2\x19\x56\x2b\x9b\x3e\x76\xe1\xa3\x6b\x2a\xe3\x9a\x62\x4c\xf9\x53\x38\xa5\x38\xa1\x85\xee\x28\xf6\x6b\x85\x23\x8a\x33\xf1\x67\xf6\xe0\xbf\x90\x7b\xa8\xf1\x45\xf1\x12\xe1\xc8\x35\x5b\xcb\x77\x3e\x1d\x9f\x7d\xe4\x1e\x8f\x63\xec\x07\xe1\x04\xba\x2b\xf1\x35\x09\xd3\xcd\xf9\x18\x40\xb7\xc8\xf1\xb0\xa8\x33\x69\x55\x1e\x8f\x3a\xfe\x09\x3e\x3d\x44\xfa\x78\x78\x33\x75\x3d\x12\x99\x37\x27\x65\x3e\x88\x82\x85\x34\xaf\xf7\x61\xce\xe6\xe6\xb1\xa5\x53\x96\x6d\xc3\x8b\xca\xac\xe1\x5b\xf7\x36\xbf\xcc\xae\xd7\x99\xcd\xcb\xba\xee\xd4\x4b\x0b\x90\x48\x0b\x7e\xe0\x5c\x03\xef\xa0\x03\x7b\xe2\xb4\x2a\x3a\xa4\xb8\x01\xe7\x21\xff\x0a\xba\x1b\x2d\x47\x62\x2a\xe8\x8e\xa2\xdc\x4b\xca\x95\xdb\x42\x17\x85\xd8\xf2\x2c\x62\x21\x2b\xb4\x5c\x6b\xb0\x6c\x65\x48\x5e\x01\x46\xfc\xb0\x70\x5a\x2b\x92\x07\x7f\x74\xda\x7b\xe2\x57\x19\x0a\x10\xe9\x2d\xdb\x16\x66\xca\x45\xa1\xde\x72\x67\x6d\xb4\xad\x20\x65\xc6\x33\x6d\x44\x6a\x15\xdb\x07\x68\xb8\x41\xa4\x12\xd3\xfa\x43\xb6\xb9\x27\xee\x06\xef\x62\x35\x03\xf4\x49\x38\xa5\x1b\xa6\x14\xdc\xad\xe8\xd6\x30\x73\xfd\xd7\xb6\x88\x54\x93\x62\x9d\x45\x6e\x29\x14\x75\xf1\xf4\xe9\x46\x78\x28\xef\x34\x85\x66\x84\x5a\x96\x7b\x18\xca\x98\x02\x6b\x63\x70\x18\x2a\xba\xf9\x46\xa2\xab\x28\x21\x1a\xae\x94\x56\xdc\xc2\xdc\x18\xb4\x5a\xb1\x16\xd7\xd9\xca\xdc\xc2\x81\x88\x94\xad\xf8\xe6\x53\xbd\xf8\xec\xec\xd4\xd4\xaa\x52\x17\x6e\xb8\xc6\x86\x97\x71\x55\xb9\xd0\xce\x55\x06\xcf\xf3\x70\xbe\x33\x82\x6f\x67\x69\xa7\xcc\x99\x20\x86\xff\xc2\x83\x10\x2a\x03\x6e\xcb\x83\xc4\xee\x67\x34\xa2\xb5\x15\x0c\x27\x15\xcb\xb6\x8a\xc1\xc0\x24\xbe\xac\x78\x60\xd1\x98\xfe\x40\xc1\xaf\x8c\x20\x19\x0e\xf4\x53\xdb\xe2\x6d\x06\x42\xf9\x62\x43\x4b\x1a\xd3\x6c\xf0\x24\x72\x4c\xbe\x06\xef\x5a\x77\x51\x98\x6b\xb3\xc0\x9a\x8c\x32\x5d\xc4\x98\x58\x4a\xd2\x0d\x28\xce\x8d\xc8\x8b\x7e\xa8\x48\x64\x34\xdc\x30\x43\x5f\xf4\xe8\x9a\x87\x87\x74\x36\x85\x78\x68\x7c\x80\x43\x0f\x0e\xe8\x8f\x1f\x3f\xc9\x4f\x4c\xd5\x13\x71\x94\x32\xf8\xe4\xa7\xce\x13\x34\xdc\xc8\xfd\xea\x04\x63\x30\x49\x3d\x62\x46\xbd\x25\xad\xf3\x25\x11\x3d\x24\xa2\x53\x25\x9b\x98\xfe\xe3\x4c\x09\xa6\x98\x3d\xea\x50\x2c\x3d\x62\x5c\xdb\xce\x75\xb6\xc1\x1e\xb7\xbe\x5e\xaa\xca\x01\x33\xad\x7e\x6a\xcb\x50\xd4\x98\xff\x3f\x75\xee\xee\x36\x5a\x3f\xe7\x5a\x38\x48\x9d\xaf\x40\x1c\x27\xc1\xe1\x57\x9e\x0f\xf4\x24\xe0\x4a\x96\x03\xa6\x53\x6f\xb6\x11\x58\x32\xfa\x13\x33\x4d\x6d\xe3\xa5\x7c\xd1\xe9\x23\xdf\x95\x8f\x40\x4b\x89\x01\x05\x4f\x9f\xfa\x1b\xd8\x02\xc9\x70\x5a\x16\xbe\x6b\xc9\x47\xb9\x16\x1e\x07\x05\xb7\xee\xe2\xd9\x4a\x19\x06\x1b\xfe\xa1\x5c\x85\x01\x77\xe8\x89\x76\xde\x0f\xb3\xb1\xbf\xb1\x48\xfc\xd7\xbf\x78\x6f\xff\xfa\xd7\x21\xb5\xe0\x5d\x8b\xff\x7a\xb7\xa4\x90\xe7\xe8\xa6\xd5\xcf\x85\x3d\x5b\x80\x2b\xaf\x22\x4c\xd9\xff\x7b\xe7\x67\xdf\xee\x1c\xb4\x5b\x16\x39\xec\xfc\x8d\xfc\x97\xff\x37\xf2\xec\x59\x0b\x7c\x25\x76\xe7\x52\x09\x8a\x26\x97\xd2\x4b\x4d\x45\x9c\xb3\x05\x62\xd6\x21\x67\x02\x6e\xdf\xf2\xa6\x0f\xa1\x85\x9c\x7f\x79\x68\x82\x52\xcb\x56\xb9\x26\x92\x2e\xc8\x28\x9c\x49\xbc\xf6\x04\xfe\xbd\xfd\xf4\xa9\x38\x95\xa6\x1e\x1a\xc0\x8d\xb6\x05\x5b\x77\x16\xe2\x33\xaa\xb6\x14\x8d\x0a\xe6\x47\x45\x95\x51\x41\x66\x8f\xb4\xff\xe6\xff\x17\xfc\x9b\xff\xec\x59\x8b\x7e\xf5\xd5\xb1\xf8\x97\x4f\xe2\xa0\x1e\x31\xbf\x3c\x2e\x86\x46\x0e\x46\x4e\x7f\xe4\x6e\x14\xad\x33\x5a\x04\x69\xab\xa0\x46\xd8\x9a\x38\x4d\xcc\x13\x55\xfd\x8a\x69\x02\x8c\x12\xe4\x07\x90\xd0\x23\xba\x3a\x5a\xbc\x3a\xb4\x88\xd0\x31\xd6\xec\xb1\x08\xbe\x3d\x41\xee\xf1\x18\xf8\x23\x18\x11\x1a\xfa\xc1\x18\x0d\x53\x74\x26\x81\xe0\x32\x08\xfc\x18\xf8\x3e\xa6\x86\x7c\xd4\xc0\x3e\xc5\x06\x30\x3e\x08\xb1\xc9\x89\x36\xd9\x52\xb8\x93\x94\x89\x28\xfb\x78\x97\x5a\xc1\x21\xe0\xab\xc4\xc2\x87\x40\x4e\x91\xe5\x65\x9f\x8a\x39\x56\x2d\xaf\x33\xb7\x6a\x0d\xcd\x8a\xa8\x15\x0e\x44\x2b\x94\xb1\x1a\xb7\x6e\xab\x32\x3e\x2c\xac\x1c\x2c\x5e\x4a\xf8\xd4\xcf\x5d\x80\xff\x6e\xb9\x0b\x6c\x8c\x2b\xcc\x5d\x58\x44\xc0\xab\xf7\x94\xc2\x7e\xd2\x6a\x3f\x41\x62\x16\x12\x0e\x44\x2b\xdc\x48\xcd\xa3\xa4\x05\x0a\x0b\xa3\xe2\xae\x55\xc3\xa8\x2c\xb1\x25\x95\x23\x40\x90\xf4\x24\x71\xa6\x45\xb1\x9c\x91\x48\x59\xa2\xad\x49\xad\x20\xb1\x34\x57\x1a\x9e\x9a\xb6\x23\x83\x8c\x2b\x9e\xb0\x4d\x82\x0e\x4d\xd3\x0a\xb9\x30\x4e\xdc\x7c\xd2\x80\xda\xb5\x82\x0d\x5a\xe6\x29\xef\x63\x77\xe6\x8c\x20\xfd\xc0\xb9\xc7\x98\xc2\x5d\xe1\x69\x13\x94\x46\x26\xe8\x2e\x33\x41\xdd\xac\x09\xda\x69\xd7\xb3\x41\x3b\x6d\xe5\xda\x4e\x4c\x17\xb3\x0f\xe3\xcb\x12\x11\x28\x15\x35\xba\x93\x6d\x34\x32\x1a\x5d\x3e\xd5\x1b\x9a\x51\x09\xc5\x1d\x8a\x6d\x6e\xf9\x87\x90\x4b\x00\x1e\x80\x75\xe8\x5b\x76\xe7\xa7\xc3\xc3\x0d\xf4\xec\x30\x94\xf6\xec\x06\xb5\xfe\x10\x32\x53\x06\xe9\xf2\x34\x94\xf7\xc3\x0d\xf3\xce\x6c\x45\x5a\xa0\xb7\xc1\x14\x11\x36\x51\x9b\x1b\xce\xff\xfa\xef\xbb\xd6\x86\xf3\xbf\x5a\xff\xd7\x66\xcb\xea\xb5\x2c\x7c\x18\x7c\xed\x5c\x5a\xee\x61\xf0\xb5\x7b\xf9\x04\x1d\xba\x7c\x0b\x4d\x98\xcd\x0c\x62\x9b\x19\xb7\xac\xe9\xe1\x24\xb2\x99\x87\x87\x93\xc8\x64\x7e\x32\x7c\xfa\x74\x63\x90\x33\x98\xa7\x2d\x6b\x20\xad\xe5\x61\xab\x75\x77\x97\x37\x8a\xe7\xb5\x8a\x1d\x02\xf1\x14\xfa\xc7\x4c\xbc\x33\x53\x26\xbe\x79\x3d\xf8\x69\xe3\xa7\x1b\x0e\x12\xe8\xb0\x75\xc0\x84\x8b\xb8\x27\xf8\xf1\x63\x83\x1c\x6e\xc6\x8a\x32\x26\x9b\x88\x47\xc9\x6e\xc8\xa7\x5f\x5d\x9c\xbe\x7d\xe1\xf1\xc0\xf3\x96\x15\x1e\x46\x8d\x04\x60\x08\x08\xfa\xf1\x23\xce\x82\x4b\x7d\xff\xf4\x69\xea\x4f\x2e\x9b\xdf\x29\x48\x45\x6c\x41\x7f\x15\xe6\xab\x71\xce\x1f\xf9\x00\x27\x98\x42\xf5\x99\x4b\xf3\xf0\xf0\x30\x8c\x4d\x83\x8d\x96\x45\x7e\xfc\x40\x19\xd3\xdf\xad\x3e\x96\xd3\x07\xea\xaa\x6d\x65\x39\xee\x0b\x78\x4b\x4f\x44\x9f\x99\x03\x01\x05\x72\xd9\x68\x75\x6e\x7a\xc8\x73\x06\x7b\x4c\xcd\x72\xfa\x33\x0a\x85\x9a\x2b\x34\xae\x67\x87\xd2\x4a\x1a\x12\x3c\x39\x1e\x03\x72\xcc\x56\x38\xfc\xea\x5f\x26\x6a\x16\x0f\x12\x69\x60\x7c\xdf\x8e\x89\x2d\xe1\xed\x6a\x19\x98\x54\xb5\x0f\x98\x36\x48\xe5\x21\xcb\x49\x14\x5e\xba\x43\xa6\x1b\x3e\x01\x0e\xf4\xc3\x89\x38\xc7\x0e\xd5\x3f\x7e\xfc\xf8\xa9\x63\x01\x66\x9b\x0d\xd1\x28\x14\xbf\xff\xd4\x8e\x20\xf7\x10\xb7\xa8\x36\x00\xdf\x1f\xf2\xb7\x96\x55\x34\x3d\xc0\xb9\x82\xcc\xa2\xb8\x5b\xd2\xd9\xe8\xa7\x14\x63\xf5\x4c\xd8\x48\x6b\x32\x68\xb8\xf1\xd3\x46\x72\x3e\xe3\xa1\x41\x5b\x2d\xed\x71\x2f\xb5\x54\x66\xd9\x1a\xc0\xe0\x7c\x37\x40\x60\x80\x58\x91\x32\x5b\x77\xc2\xaf\xcd\x2c\x97\xf8\xb6\xf7\x49\x7c\x35\x0b\xad\x0d\x70\xf8\xf5\x8f\x2b\x38\x3b\x30\x07\x60\xca\x94\x04\x53\x38\x25\x52\x57\x2e\x42\xc3\xbe\x1d\x93\x43\x78\x77\x67\x89\xc7\x41\x1f\x13\x9a\x7b\x58\x79\x56\xda\x4e\xec\xa3\xc3\x1f\x66\x12\xe5\xb2\xf5\xf4\x29\x65\x1a\x55\xac\x2a\x83\x96\x15\xf0\xef\xac\xa0\xf5\xff\x33\x77\xb4\xcb\x8d\xdb\xc6\xff\x7e\x0a\x1e\x66\xa2\x23\xc7\x10\x6d\x59\x9e\xeb\x1d\x3b\x1c\xd5\x6d\x92\x99\x76\x9a\xcb\x35\x97\x49\x7e\xe8\x34\x1d\x58\x5c\x4b\xe8\x51\x80\x02\x80\xf6\xa9\xb2\x1e\xab\x2f\xd0\x27\xeb\xe0\x93\xa4\x48\x29\x4a\xe2\x73\xf3\xe7\x4e\x06\x09\x70\xb1\x58\x00\xfb\xbd\x18\x76\xf1\xa9\x21\x42\xbc\x00\x39\xbc\xe3\x62\x68\xe2\x24\x9e\x29\x58\x77\x0a\xa9\xfe\xf0\xec\xcc\x45\xd1\x48\xcd\x27\xd8\x5f\x5d\x17\x51\x8d\x38\xcb\x3a\x5a\xd3\x61\xa5\x0f\xd2\xb3\x5a\x99\xc3\x57\x6b\x32\x57\x71\x92\x56\x8c\xfe\x14\xef\xb9\x1b\x86\x5b\x16\xa1\x73\xd8\x25\x47\x62\xfc\xcc\x65\xdb\x96\x09\x5c\x53\xfd\xa6\xdd\x10\x17\xc0\xee\xa9\xe0\xac\x27\xe0\xfa\x29\x43\xa0\xd0\x5a\xf0\xa2\xb2\xf4\xf7\x22\xcf\x03\x57\x91\x36\x3e\x3f\x18\x84\xe6\xa9\x17\x61\x4a\x3a\x5c\x51\x9b\x46\x76\x30\x78\x31\x6a\x76\xed\x7b\x27\x05\xa6\xf7\x70\x81\x65\xde\x0a\xc0\x78\x7c\x24\x93\x60\xd5\xc9\xdc\xa1\x69\x30\xf2\xf8\xd8\x17\x0d\x2e\x8f\xa0\xd6\x24\x48\x1e\x16\x95\x70\x5e\xa6\x4d\x24\xaf\xb8\x0d\x7a\x77\xa0\x51\x66\xf4\x42\xfc\x89\x6c\xcd\x1d\x1a\xf4\xdc\x6a\x27\x5e\xfc\xb2\x37\x5e\xfc\xb2\x19\x2f\x7e\x39\xcb\x2e\x71\x57\xe7\x72\x6a\xa8\x39\x93\x48\x0b\xb2\xfb\xbd\xaf\x7a\x7b\x5f\xcd\x06\x83\xe6\x5f\xb8\xcc\xb7\xbb\x33\x3d\x46\x9e\xe7\x6c\x12\x97\x29\x23\x8c\x4b\x98\x73\x56\xc8\x1c\xbe\x18\xc1\x18\x97\xe9\x8a\xce\x45\x68\x6c\xda\x6c\xbf\x18\xc1\xab\x8b\x11\x8c\x13\x0c\xad\x76\x6b\xe0\xcd\xd0\x6a\x65\x07\x1e\x0c\xe2\xbd\x51\xec\xd0\x9d\x5e\xe3\x24\x71\x2e\x95\xcc\x40\xf5\xc2\x74\x36\xe3\xe8\x9f\x86\x67\x41\x2b\xe9\x9c\xee\x68\xc3\x5b\xc5\x93\x41\x0c\x58\x24\x67\x24\xbd\xa3\xa5\x02\xf1\xe7\x4d\x8c\x28\xfb\xc6\x12\x83\xd9\xc4\xba\xc5\x7a\x04\xf7\x9e\x09\xe5\x14\x66\x39\x9d\xc2\x2c\xf6\x56\xe3\x2a\x27\xa9\x80\xa2\x9a\x43\xf7\x26\x28\xa7\xca\x04\x26\xcf\xbc\x84\x1b\x1a\xce\xc0\x1e\x2e\x32\x66\x58\x61\x9e\x24\xbb\xda\x10\x34\x9d\x99\xc0\x81\xca\x2d\x95\x17\x9c\xab\xf4\x5f\x9c\xb2\x18\x45\x28\x9c\x43\xd2\x70\x9b\x3e\xea\x40\x56\x77\x77\xf4\x93\xf1\xbc\xe3\x89\x57\x6e\x4c\xb7\xcc\x64\xf8\xd8\x00\x11\x12\x61\xfb\x8e\xfd\x13\x61\x3f\xf5\xec\xc5\x25\x5e\x97\x95\x20\x25\xfd\xb7\xde\x96\x9a\x8e\xb1\xeb\xb8\xe2\x4c\x2d\x1b\x3d\xcd\xdf\xa7\x75\x2d\xc8\xa6\xd1\xb1\x20\x9b\xd3\xba\x2d\x79\xd5\x04\x75\x89\x70\xc9\xd9\xe2\xbd\xff\x93\x57\x47\x21\x1f\xd5\x90\x53\x56\x29\x68\x82\xde\x1e\xc9\x3e\x3f\x6d\x2c\x47\x97\xf5\x58\xb2\x3d\x96\x7d\x7e\x2a\x5c\x65\x49\x3b\x03\xae\xe4\xa9\xbd\xeb\x6d\x52\xf7\xfe\xef\x7f\x5a\xdd\x47\x07\xbb\x37\xf6\x6f\xdd\x9b\xfd\x4c\xe7\x19\x6e\x7b\xce\x04\x45\xf9\x99\xcc\xc9\x60\xa0\xd2\x1a\x15\x93\x51\x9e\xe7\x30\x69\x36\x59\xcf\x36\x3f\xa6\x96\x29\x1b\x0f\x93\x4c\xdf\x15\xa0\x07\x69\x7e\x75\xd2\xed\x23\xdd\xfb\xfe\x97\xd3\xc5\xb7\xfb\x3d\x3e\xee\xc1\xd3\x89\x6f\x86\xe0\x60\xc6\x27\x28\x42\x19\xaa\x3d\xce\xe4\xb1\x9b\x9a\xae\x87\x6b\x62\x2e\x8f\x67\x61\x56\x60\x12\x92\x83\x64\x28\xc9\xa6\x41\xc1\x7c\x99\xe7\xb9\xe7\xad\x27\x5b\x57\x16\x33\x03\xac\x21\xca\xec\x91\xbe\xcb\xae\x7a\x5f\x52\xd3\xcb\x99\x7d\x4f\x4d\x47\xb3\x5d\x06\xd6\x67\x4c\xfe\x48\xd5\x32\x46\x53\x94\x34\x5e\x4d\xa5\xd3\x9a\xfb\x61\x86\xa3\xc4\x1d\x40\x19\x4a\xfc\x28\xf5\xc3\xd9\x2e\x3b\x00\xcc\x11\x9c\x76\x63\xbb\x7b\xb5\xa3\xeb\xcf\x97\x32\xe7\x98\x67\x7e\x1d\x52\xc0\x52\xfe\x71\xc2\x52\x0d\x6e\x9c\x58\xad\x91\x86\x2a\x89\x01\xbf\xb8\x4c\x5a\xa2\xd5\x11\xae\xd7\x57\x72\xd2\x52\xda\x90\x14\x64\xad\xe0\xb9\x18\xe0\x3a\x74\x5c\x06\x3d\xac\x67\x7d\xdd\xa5\x57\x80\x75\x2c\x74\x8b\xfc\x81\x7d\xd0\x02\xc8\xe1\xd9\x30\x3e\x2c\x8d\x1e\xa7\x3b\x85\x66\xfe\xa0\x0b\x37\x51\x79\x61\x3f\xf7\x94\x2b\x09\xe9\xdb\x6f\xff\xf9\xf7\xaf\x6e\xbe\xfc\xea\x3b\xbf\xaa\xcd\x26\xf4\x96\x47\x73\x5b\x18\x24\xb2\xa0\xa2\x90\x57\xe8\xc6\x42\x65\x44\xb1\x60\xe1\x75\x0b\x94\xf5\x74\x3c\x35\xf9\x81\x49\xbb\xbc\x79\xa6\x55\xdd\x27\x58\xa3\x96\x73\x49\xf2\x4b\x10\x5f\x6b\x29\x93\xac\xd7\xa5\x53\x9c\xa0\xc4\x29\x9c\x2c\x70\x2a\x39\xb6\x35\xdd\x44\x42\x89\xeb\xe3\x6e\x9e\x7b\xf2\xdc\x13\xae\xf1\xcf\x6c\x50\x23\x6e\xb7\x1c\xc1\x58\x92\x52\x36\x2f\xab\x02\x64\x8c\xae\x2f\xc7\x28\x88\xdf\x67\x2e\x3e\xa1\x59\xf5\xdb\xee\xdf\xc3\x68\x58\x87\x20\x0a\x5b\x43\x63\xe8\x8b\x65\x7c\xde\xb5\x3d\xec\x9c\xba\x5d\x40\x27\x18\x84\x79\xed\x52\xb3\xcc\x47\xba\x00\xf5\x57\x05\xab\x46\x8c\x09\x9b\xfc\xed\xfd\xb7\x6f\xd3\x35\x11\x12\x62\x96\x64\x6a\x87\x65\x73\xb4\x66\x14\x55\xdf\x88\xd2\x8f\x88\xcd\x38\xb5\x03\x38\x4b\x12\xcc\x76\x47\x05\xdd\x06\x22\xe5\x92\x0b\x35\xac\x2a\x5a\x3c\xd7\x0e\x39\xc1\xc1\xb7\xe1\xbe\xeb\xef\xdd\x21\x4a\xa6\x97\xb3\x93\x67\xa5\x36\x25\x84\xa8\xbb\xff\xff\xbc\xda\xc1\x40\xd6\x4a\x8b\x50\xd0\x60\x98\x40\x1e\x07\xcd\x47\xd8\x18\x53\x41\x57\x8c\x61\x2d\xcd\x5d\xb8\x39\x8c\xe8\xc2\xce\x51\x86\xce\x63\x64\x4b\x16\xd7\xce\x1d\x64\x42\x52\xc5\xbf\xa6\x9f\xa0\x88\xaf\x92\x73\xb4\xfe\x84\x32\x92\x24\xd8\x4a\x36\xee\x7a\xf9\x23\xd2\x24\x53\x07\x3a\x25\x27\xa3\xb9\x5a\x0d\xc9\x62\x21\x60\xd1\x91\xea\x9f\x75\x1f\x36\x18\x4a\x8c\xd2\x3f\x01\x99\x2f\x53\xd4\xc8\x13\xf6\x33\x24\x66\x2f\xdd\x5e\x9c\x37\xdc\x39\xce\xd5\x0e\x5f\x5a\xd4\x74\x33\x14\x76\x50\xf3\x40\x3a\xba\xa4\x13\xec\xcb\x0f\x84\x1e\xc9\x27\xd6\x50\x03\xff\x22\x85\x94\x75\x38\x0a\x8a\x52\x5e\x13\x6d\xcc\xf3\x1e\x8f\x20\x6b\xd2\x1d\x0c\x5c\xba\xd8\xfd\x07\xc1\xd6\x3b\xe9\x73\xad\xb2\x6f\xc2\x2e\xeb\x33\x73\x0d\x06\x47\x3e\x07\x69\xc3\xc0\x91\xe7\x79\x68\x7f\xe1\x7f\xd7\xca\xce\x89\x87\x2d\x0b\x1f\x34\x71\xbb\xbf\x82\xd0\xcc\x4a\xd9\x94\xdf\x3d\xdb\xfa\x97\x58\x25\xb5\xd0\xb2\x0d\xc6\xdb\x5a\x93\x73\xb2\x4d\x52\xed\xdb\x24\x95\xb5\x49\xaa\x3d\x9b\x64\x5e\xf5\xe9\x9d\xaa\xe9\x68\x36\xd1\xff\x64\x57\x30\xc6\x36\xc7\x41\xed\x41\x8c\x9c\x23\x62\x9e\xe7\x3c\x96\xc9\x60\x10\x7b\x6d\x9f\xde\x05\xd2\x24\xc5\x4d\x42\x62\x15\x7d\x95\x97\x8f\x8f\x2d\x75\x60\xb2\x55\xce\xf0\xf5\xa6\x6d\x12\x74\x50\x5e\x63\xe5\x8d\x9d\xb6\xdf\x77\xef\x7f\x78\x97\x92\xb2\x8c\xa7\x3e\x76\x48\x80\x51\x90\x58\x6c\xc7\x80\x25\xde\x0a\x28\x39\x29\xb4\x90\xed\x98\xd3\x6f\x4d\x76\x6c\x99\x6d\xcd\xc2\x98\x07\xb7\x5c\x28\x5b\xf4\x80\xea\x83\xa9\x9d\xde\x47\x24\xb3\x60\x15\xf5\x00\x5e\x37\x2d\x73\x6f\xb2\x36\x9c\x6f\xf4\x8a\x5e\xe6\xca\x65\xea\xb9\x4e\x3c\xdc\xa3\xb1\x79\x12\x92\xed\x84\x6e\xde\x8c\x6a\x06\x45\x78\xf4\xa6\xb6\x05\xb6\x87\x1e\x5d\x63\xea\x55\xf4\x58\xe9\xb9\x52\xb9\x8c\x47\xd7\xfe\xfd\x00\xe1\xb8\x65\x3a\x7c\xd3\x35\x1d\xaa\xda\x74\xa8\x7c\x5e\x9f\x6b\xfc\x06\x8f\xae\xf1\xe8\x0f\xad\xec\x3e\xbb\x9a\x86\x4b\x73\x0c\xcb\x25\x5d\x3f\x15\x25\x73\x2c\x30\xfd\x7c\x94\xcc\x73\xda\x47\xc9\x54\x53\x32\xf5\x94\x2c\xda\x94\xec\xf3\x01\x1d\x27\xd1\xd7\xbd\x24\x3a\xf6\x4b\xfd\xea\x18\x89\x3a\x42\xd4\x2c\xbb\x6c\x9e\x49\xa9\x49\xbf\xfa\x96\xac\x40\x5f\x15\x9a\x6c\x9b\x28\x8f\x25\x06\xdc\x4b\xb4\xa2\x43\xb3\x3c\xd0\xec\xab\x40\xb3\xe3\x76\x72\xa9\x36\xe0\xaf\xdb\x34\x3b\xae\x69\xf6\xaa\x49\xb3\x57\x87\x69\xf6\x75\xd2\xa5\x6b\x4b\xb3\x63\x2c\x7a\x68\x36\x24\x9d\x0a\x10\x5e\xb5\x68\xf6\xf5\x69\x34\x3b\xc6\xaf\xf1\x68\x8c\x47\xaf\xfa\x69\xf6\xa6\x2c\x7f\x33\xa9\x3a\xf5\x17\xe6\x58\x7c\x3e\x4a\x95\xb9\xe8\x33\x13\x88\xe9\xe5\x6c\xa2\xff\x31\x94\xca\x9f\x9b\x52\xf5\x61\x7a\x53\x96\x31\xfc\xd2\x73\x94\x77\xcf\x51\xf9\xfb\xa2\x49\xfe\xec\x34\x69\xb3\xc9\xe6\xc6\x5e\x56\xc7\xaf\xdf\xbc\x7b\x97\x9a\xfc\xf9\x94\x2d\xfe\x51\x81\xa0\x70\xc4\xcc\xf5\xd3\x7a\x28\x41\x50\xa3\x26\x7d\x62\x6e\x38\x8c\x5b\xd4\x9e\xef\x79\xeb\x81\x71\x07\xf2\xbf\x83\x0a\xa6\x6e\xea\xf5\x3b\x72\x6a\xc9\x3d\x19\x12\x92\x0c\xa1\x9d\xf3\x96\x68\x99\x61\x6b\xef\xf0\x86\xf8\x6a\xd4\xb8\xde\x06\xfb\x40\xd5\x92\x57\x2a\x46\x28\x71\x7e\x7c\x81\x89\x9e\xce\x9c\x7a\xae\x06\x4a\x9d\x1d\x9c\xdc\xaf\x94\x1d\xe3\x06\x6b\x7f\x5c\x92\x11\xb0\xe2\xf7\x30\x14\xae\xdc\xcb\x67\x17\x5e\xbc\x63\xe5\x99\x4a\xb5\x88\xd2\xba\x3c\xba\x6f\x92\x5c\xa5\x1f\x29\x2b\xce\x9c\xd7\xa4\x71\x16\x00\xac\x9b\x32\xb2\xb3\x89\xb0\xec\x03\x53\x3d\x60\x4b\x8b\x4c\xd9\xb8\x4f\x93\x78\x4c\xf3\xc5\x99\xea\xbf\xbe\xb0\x68\x7c\x5a\x66\xec\xb8\xe0\x33\x35\x42\xe9\x2c\xb7\xdf\x41\x4b\x22\xbf\x21\x6c\x63\xd2\x73\x18\x00\x27\xd3\x99\x8d\xbb\xd0\x52\xe5\xd6\x62\x1c\xd2\x8a\xd9\x0b\xd2\x70\x7a\xea\xd8\x32\xec\xb9\xcb\x3e\xe9\x32\x74\x7c\x78\xbc\x6b\x5a\x48\x0e\xf2\x61\xf7\x61\x7b\xb1\xc0\x68\xf7\x81\x6d\x51\x50\x37\x7c\x60\xa8\x45\xc9\x07\x5c\x0a\xda\x9b\x60\x97\x38\x4b\x66\xbf\x8b\xdf\x97\x44\x91\x9d\xb1\x26\xaa\x3d\x6b\xa2\xea\x35\x6f\xb6\x3a\x7a\xad\x12\x51\xfc\x36\xb6\x4d\x9a\x04\xb6\x2e\xa6\xbf\xa5\xfd\x4f\xad\x0b\x1b\xf6\x2a\x54\xe5\xd5\xca\xba\x57\x50\x2a\xa3\x64\x77\x16\x12\xc9\x1c\x5b\x9d\x4d\x09\x8b\x8a\x16\x70\xe1\xbc\x11\x86\x2b\x50\x44\xd3\xc2\xe7\x74\xd4\xaa\x1b\xbc\xd1\xf4\xad\x86\x0b\xe1\x92\xb0\x45\x86\x16\x5c\xff\x8f\x70\x01\x72\xee\x1e\x45\xd4\xf8\xeb\x94\xf0\x89\xde\x96\x80\x23\x53\x86\x6a\x2d\xa8\x84\xe1\x42\x90\x02\x82\x16\x59\xce\x97\xa0\x21\x10\x51\x01\x92\x2e\x98\x2d\x60\x07\x44\xd2\x72\x13\x51\xa6\x60\x21\x88\x02\xfd\x8b\xd7\x55\xe6\x1e\xb8\xf8\x78\x57\xf2\x07\x99\x46\xf6\x6b\x73\xc2\x22\x51\xb1\x88\x44\x05\xbd\x07\x21\xc1\xbc\xa2\x69\x3e\xe2\x77\x91\x31\x0c\xea\xbb\xe0\x9e\xce\x01\x47\xb7\xfa\x1c\xc4\xd1\x9c\x33\x45\x28\x03\x5b\x0b\x91\xb0\xc2\xf8\x11\xef\xb5\xd6\x3a\x62\x99\x22\x6c\xaa\x84\x84\x52\xc3\x0f\x0f\x0f\xa9\x59\x9f\xb5\xe0\x06\xc3\x94\x5f\xa0\x60\x4e\xfc\x1e\x84\x20\x77\x5c\xac\xfa\xb1\x14\x1e\x5b\x4c\x29\xce\x4b\x53\x8f\xf1\xb6\xa2\x65\x41\xd9\x02\x47\xf3\x25\x61\x0b\xf3\x4b\xc3\x36\xe7\xab\x5b\xca\xf4\xe4\x29\xbb\x13\xa4\x76\x7e\x96\xe4\x0e\xca\x8d\x79\x07\xee\xee\xe8\x9c\x02\x53\xe5\xa6\x17\x58\xe5\xbf\xd9\x86\xf4\x07\x6b\x5f\xea\x83\xf2\xa6\x06\xcc\x96\x6a\x93\x8d\x22\x61\x7a\x55\xe7\x62\x63\x38\x1b\xeb\x9f\x15\x50\xac\xa1\x59\x0b\x7a\x4f\x4b\x58\x40\x28\xd4\xdd\x28\x9a\xd6\x03\xdd\xbd\x06\xa3\x17\x95\x26\xae\xbd\xec\x87\xd0\x3e\xb3\x48\x2c\xa8\xbe\x34\x6f\x2b\x53\x39\x7c\x49\x17\x4b\x8d\x97\x7b\x42\x4b\x62\x68\x50\x03\xa5\x77\x4a\x64\x8b\xa2\x45\xe4\xc1\x54\x99\xe6\x65\x65\x79\x57\x1e\xd2\x48\x59\x84\x5b\x67\x3b\x68\x11\x81\x2f\xf0\x5c\x6c\x18\x59\xd1\x39\x6e\x7e\x73\x6f\x65\x7a\x97\x60\x6e\xc0\xdd\xc7\xff\x42\x10\x16\x56\x40\x54\xb7\x1b\x3f\x3b\xf7\xe8\x00\x8d\xd8\x19\x79\x00\x74\x83\xab\x7e\x6d\x4a\xb8\x35\x94\x50\xfd\xb4\x7b\x6f\x07\xaf\xd6\xfa\x0e\x6f\xc0\xf3\xce\x65\xaf\xe8\x43\xb7\x7d\xb6\x07\x8f\x89\xdf\x33\xa4\x59\xd8\xaa\x93\x65\xb4\x22\xf3\x25\x65\x10\x99\x32\x3a\xb6\x54\xfa\xaa\x2a\x15\x5d\x97\x10\xad\x4b\xa2\x4c\x99\x8c\xe8\x4e\xf0\x95\x26\x1b\xca\x16\xa5\x5e\x89\x4a\xcc\x21\x20\xde\xe6\xb0\xeb\x03\x7c\x6d\x80\xb0\x48\x9c\x1d\x3e\x2c\x5d\x08\xed\x73\xa9\x9c\x4d\x98\x4d\x2d\x1d\xb8\x18\xcf\xb8\x6d\x43\x90\xa0\xbe\xb7\x60\x35\x23\x00\x58\x8c\x5c\xab\x3e\xae\x9a\xfa\xd3\x95\x8c\xe0\xd3\x1c\xa0\x00\x93\x39\x02\xc3\x71\x26\xca\x54\x3d\xdc\x63\x77\x71\xc3\xc9\xcc\x32\x95\xc3\x25\x94\x6b\x10\x72\xbf\xd3\x6f\x36\x4e\x1d\xec\x10\x8c\xd8\xdb\xda\xa9\x55\x0b\x41\x7b\x26\x9b\x70\x03\xbb\xf7\x4d\xe6\xbf\x43\x73\xb5\xea\xd9\xdf\xc9\xda\x1e\x5a\x59\x15\xa3\x1f\x09\xd5\x87\x43\x7b\x55\x8f\x2f\x66\x8f\x1a\x79\x2f\x96\x53\xb3\xfe\x2e\x3d\xdb\xd1\x5e\x2a\x2f\xf8\xdc\x08\xe1\xa9\x09\x1a\x7e\x0f\xd6\x9b\x2f\x7e\xa9\xf9\x86\xa9\xde\xf0\x39\x7a\x79\x0e\xe7\x2f\xd1\xec\x65\xa2\x39\xd6\x1b\xe5\xce\xb3\x38\x94\x00\x4c\x30\xcb\xb7\xde\xf3\xb0\xc1\x64\x55\x0c\xe4\x9c\xac\x6d\x3e\x31\x2f\xe3\xf7\x23\x9e\x1d\x46\x3c\x73\x82\x09\xe9\xc6\xab\xbd\x34\x09\xfe\x4c\xa9\x59\x01\xc4\x9f\xc9\xf6\xd8\xd0\xf0\x47\x8a\x2c\x6c\xf5\x6d\x3d\x91\xc8\x4d\x24\x7d\x69\xb0\x2a\x6c\xd2\xbc\xef\x41\x2a\xf9\xf8\x28\xe0\xa7\x8a\x8a\x26\x92\xc9\x7a\x8d\x92\x4e\xf5\x8a\x3d\xe9\x52\x13\xa9\xf5\xcc\x7c\x3f\x07\x46\x04\xe5\x19\x92\x2b\x52\x96\x7f\xb1\xfc\x0b\x72\x4f\x7f\xa4\x6a\x19\x6a\x70\x34\x7a\xe9\x76\x23\xe4\xef\xb5\x7d\x07\x0b\xa3\x0f\xd0\x18\x38\xfb\x5f\x00\x00\x00\xff\xff\xb5\xa3\x1e\xf1\x1d\xd3\x09\x00") +var _distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x77\xdb\x38\xb2\x20\xfe\xbf\x3f\x85\x8c\xdd\xf1\x8f\x9c\x86\x68\xca\x6f\xb3\x47\x9d\x9b\x8e\x93\xe9\xf4\xcd\x6b\xed\xf4\xcc\xde\xe3\xd1\xce\x81\x49\x48\x42\x9b\x02\x34\x00\x64\x5b\x6d\x6b\x3f\xfb\xef\xe0\x41\x10\x7c\x48\x96\x9c\xa4\x93\xbe\x3b\x3d\x67\x62\x91\x04\x0a\x85\x42\xa1\x50\x55\x28\x14\xc0\x4c\xe0\x8e\x90\x9c\xa4\x12\x6c\x65\x78\x48\x28\x0e\x00\x65\x13\x94\x75\x67\x64\x17\x65\x68\x2a\x31\x17\xbb\x68\x84\xa9\x04\xf0\x12\xe0\xbb\x29\xe3\x52\x00\xd8\x56\x68\x3a\xcd\x49\x8a\x24\x61\x14\x0c\xe0\x70\x46\x53\xf5\x33\xc0\x50\x86\xf7\xc5\x53\x87\x06\x38\xbc\xe7\x58\xce\x38\xed\x94\x45\xc2\x7b\x32\x0c\x9e\x73\x8e\xe6\x11\x11\xfa\x6f\x80\xc3\xf0\x7e\xc8\x78\x70\x83\x78\x47\xf6\x63\x48\xfb\x14\xdf\x76\xec\xb7\x28\xc7\x74\x24\xc7\xe1\xf7\xf2\x2f\xc5\xef\xef\xe5\x77\xdf\x85\xf4\x52\x0e\xfa\xf8\x52\x0e\xb6\x6c\x13\x74\xb1\x08\x70\xf8\xf0\x50\x6b\xea\x62\x3e\xb9\x62\x79\x44\x24\xe6\x48\x32\xde\x21\xb4\xf3\xfe\xea\x57\x9c\x4a\x5d\x18\x5c\x32\xfd\xd0\x79\xce\x47\xb3\x09\xa6\x52\x0c\x40\xbf\xdf\x37\x25\xa2\x29\x67\x92\xc9\xf9\x14\x47\x92\x5d\x48\x4e\xe8\x28\x4a\x51\x9e\x2b\x84\x6d\xa3\xa6\x23\x43\xce\x26\x01\x0e\x6b\xed\x87\xf7\x72\xcc\xd9\x6d\x47\x75\xe6\xe3\x7c\x8a\x5f\x72\xce\x78\x00\x5e\xd3\x1b\x94\x93\xac\x83\xa4\xc4\x93\xa9\xec\x48\xd6\x11\x53\x8e\x51\xd6\xa1\x8c\x76\x35\x9e\x57\x39\xee\x10\x2a\x24\xa2\x29\x06\xe1\x22\x08\x17\x16\x21\x33\x6c\x1f\x38\x9b\x62\x2e\xe7\x01\x86\xe0\x9f\xff\xc4\xe2\x2d\xcb\x66\x39\x06\xf0\xfe\x06\xe5\x33\x9c\x6c\xc7\x8b\x10\x62\x55\x16\xcd\x72\xd9\xbf\x61\x24\xeb\xc4\x5b\x8a\xb8\xa8\x2f\x8b\xd7\x11\xbe\x93\x98\x66\xc1\xfd\x14\xc9\xf1\x2b\xc6\x15\x82\x89\x87\xba\xe9\x1f\xd0\xdc\xb0\x3b\xc1\x93\x2b\xcc\x05\x58\xc0\x19\xcf\x5f\x31\xfe\x8a\xd0\xec\x1c\xa7\x8c\x67\x7e\x15\xd5\x02\xee\x1b\x8a\x94\x94\x13\x39\x49\xb1\x21\x1b\x2a\x68\x1c\x9a\xb7\x41\x2f\x2c\x06\x4f\x8e\x89\x88\x4a\xe0\xcf\xf3\x3c\x52\x3c\x36\x0f\xd4\x07\xa8\xc6\x32\x5c\x2c\xc2\xad\xb2\x57\x68\x11\xc2\x15\x4c\x9c\xe7\xcc\xb2\xe7\x23\x9c\x7c\x8b\x64\x3a\x56\x04\xf7\xbf\xce\x24\xc9\xc5\x2e\xca\xb2\xae\x64\x5d\x45\xa0\x1a\x93\x43\x1a\xde\x7f\xb9\x11\x11\x92\x4d\x13\x9f\x8b\xcd\xbc\x70\xd4\xb3\xb3\xe0\x87\xde\xce\x8e\x81\xb4\xdd\x2f\x3f\x5e\xf6\x06\xcf\xfc\x87\x04\x7c\x78\x7f\xf1\x11\x6c\xd5\xe7\x21\x32\x60\x45\x3f\x88\x21\x2d\x50\x08\x83\xda\x38\x98\x41\x0e\x50\x44\x32\x08\x3c\xa2\x86\x10\x57\x87\x0e\xfd\x8a\xee\x02\x01\x65\xb8\x58\x04\x60\x57\xf5\x00\x84\x90\x63\x21\x11\x97\x49\x55\x3e\xa8\x66\x69\x1f\x80\x28\x65\x34\x45\xd2\x34\x39\x66\x42\x3e\x3c\x80\x5d\x10\x56\x5e\xcf\x78\xfe\x81\xe3\x21\xb9\x0b\xc2\x10\x22\xaf\x12\x85\x60\x37\xcd\x89\x62\xce\x12\x2d\xaf\x36\xd6\x18\xef\x5a\x0c\x40\x0b\xb2\x08\x82\x0f\xbf\x7c\x04\xf0\x3e\x43\x12\x25\x72\x67\xe7\xfe\x23\x12\xd7\xef\xd0\x04\x27\x72\xb1\xd8\x8c\xdb\x3c\x69\x58\x61\x37\x3d\x6d\xba\xaa\x81\xb2\xb0\x42\xa9\xc9\x6b\x29\xcb\xb0\xe8\x0e\x19\xef\x62\x25\x25\x9a\x05\x38\x9e\xb0\x1b\xdc\xe5\x7a\x40\x9a\x9f\x29\xeb\xe6\x18\x65\xb8\xa8\x5f\xe7\x57\x88\xa0\xf8\x24\x9e\xc5\x11\x45\x13\x2c\xa6\x28\xc5\x05\xff\xfa\xaf\xc0\x4d\x0f\x68\x86\x66\x2d\x0c\xed\x8a\x25\xaa\x18\x14\x73\x21\xf1\x24\x79\xa9\x88\x13\x11\xaa\x51\x12\x98\xdf\x28\x89\x10\x42\xc9\xae\x31\x5d\xf6\x71\xac\xfb\x28\xec\xe7\x94\x4d\xa6\x33\x89\xb3\x00\xe8\x4a\x91\xc0\x29\xc7\x12\xc0\x86\x4c\xd2\xa3\x3e\xc2\xb2\x56\x30\xdc\x22\xc3\x00\x5b\x51\x7e\x0f\xfe\x77\xf7\x9d\x26\xea\x47\x55\x06\x24\x78\xb1\x08\xe1\x18\xd1\x2c\xc7\xe7\x58\x4c\x19\x15\x38\xa9\x0b\x01\xcb\x55\x87\x71\xdc\xef\xf7\xf1\xce\x0e\xed\xf7\xfb\x22\x7a\xf7\xfe\x9f\x6f\x5e\x3e\x3f\x7b\x79\xfe\x4c\x89\x7e\x51\xd0\x23\xd1\x68\xfc\x53\xcc\xa6\x98\xfb\xd2\xad\x14\x8b\x0b\x38\x34\xc2\xaf\x29\x89\x3b\x8f\x56\x8e\x52\x25\xca\x82\xda\xf2\x57\x9d\xde\x38\x8c\x08\x4d\xf3\x59\x86\x45\x00\x0e\xe3\x1e\x28\x16\xb2\xcb\xc1\x96\x59\xac\xf0\x22\x5c\x40\x35\x41\xde\x4f\x15\x14\xd1\x3a\x79\x1b\xa2\x68\xaf\x55\x14\xed\xf9\xa2\x68\x6f\x90\xdc\x2f\x14\xc1\x69\xa4\x26\xc4\xc3\x83\xfd\xd1\xbf\x5f\x84\xb0\x1c\x20\xc3\x1c\x91\x18\xb3\x59\x9e\xbd\x36\xb8\x9e\xe3\x91\x16\x3a\xa6\x79\xd4\x6f\x94\x46\xa9\x24\x37\xae\xd8\x16\xda\xd9\xb1\xc0\x23\xae\xdf\xf5\x51\xb8\x68\x92\xd1\x0e\xa2\x21\xfa\x4f\x48\xbc\x45\x74\x5e\x1b\x61\x35\x69\xd6\xa6\xbf\x1c\x63\x5a\x92\x9f\x1a\x6c\x59\x5f\x44\x6a\x1d\x84\xbc\x2f\x23\x33\x7b\x23\x42\x6f\x30\x17\xf8\x15\xe3\x81\x88\xae\xf1\xdc\x49\x27\xbe\xb3\x83\xa3\x29\xc6\xd7\xcf\xf3\x3c\x60\x61\x34\x24\xb9\xc4\xbc\x32\xa4\xb6\x24\x36\xfd\x77\xf2\x90\xeb\xb9\x08\x41\x44\x32\x10\x86\xfd\x7e\x5f\x46\x24\x5b\x84\xd1\x90\xf1\x97\xc8\xe7\x0a\x19\xde\x07\x31\x44\x1e\x4b\x28\xa1\x1d\x42\xaa\xc6\xbd\xb1\xba\x73\xfb\xea\x97\x69\x86\x24\x2e\x5e\x2e\xc2\x2d\xa7\xe4\x71\x8f\x2f\x20\xea\x5f\x0e\xa0\xe8\x9b\xd9\xa9\x10\xd4\x24\x02\x4a\xb8\x83\x10\xb2\x7e\x5d\xa6\x3b\xa9\xac\x06\xac\x2f\xa3\x14\x4d\x70\x4e\x7e\xc3\x41\x18\xee\xec\xa0\x68\x3a\x13\xe3\x80\x86\x10\xbb\x07\x4c\x95\xa0\xfc\xe5\xfc\xf5\x0b\x36\x99\x32\x8a\xa9\xd2\xe2\x42\xc8\x54\x81\x19\x15\x63\x32\x94\x01\x53\x2b\x05\x8a\x7e\x65\x84\x06\x6a\x41\x81\xdb\x62\x67\x07\xed\xec\x80\x5d\xa0\xb8\x33\x4a\xc7\x88\x3f\x97\x41\x1c\xee\xec\x04\xa8\x0f\x76\xc1\x77\x28\x84\x68\x51\x8a\x3a\xb6\x52\xd8\x67\x78\x9a\xb3\xf9\x64\x0d\x25\xb9\x54\x2d\x56\xa9\xc8\xea\x79\x4d\x25\xb9\x18\xfb\xba\x9e\xab\x40\x90\x61\xb0\xfd\xa5\x74\x5d\xdb\xf0\x96\x99\xfc\x97\x03\x88\xfa\xdb\x31\x14\xfd\xed\x1e\x64\xc5\x62\x20\xf9\xdc\xe9\xf0\x1c\xe6\x7d\x7c\x59\x43\x66\x10\x84\xdf\x6f\x07\xa8\x1f\xf0\x7e\x1e\x51\x7c\x27\x83\x30\x8c\x32\x46\x71\xa8\x67\xab\x1e\x5e\x1e\xe9\xb5\x27\x84\xdb\xf2\xe1\x81\x5a\xe1\xb2\xdd\xef\xcb\xf0\x7b\xd5\x64\xf8\xfd\xc2\xc8\x38\x12\xde\x0b\x85\x02\xeb\x93\xc5\x90\x50\x94\xe7\xf3\x7b\x85\x00\x7a\x78\xa0\xb3\x3c\xef\xf7\xf3\xc8\xa0\xfc\xf0\x50\xfc\x0a\x42\x57\x92\x0c\x03\x11\x1a\x69\xc7\x16\x0b\x67\x3d\x68\x3a\x3e\x49\x7d\xcf\xb0\x90\x7c\x96\xca\x19\xc7\x5f\x49\x87\xe7\x6c\xc2\x24\x6e\x51\x1a\xad\x9c\x50\x52\x01\xa2\xfe\xe7\x53\x2a\x01\x44\x7d\x1a\xe0\x48\x4c\x73\x22\x03\xf0\x0c\x84\x70\x2f\x84\xa2\x8f\x2e\xe3\x01\x64\x7d\x74\xd9\x1b\x40\xde\x17\xc5\x77\x35\x0d\xf3\x3e\x8f\xa6\x6c\x1a\x84\x90\xf4\x7d\xc1\xe5\x26\x6a\xa9\xfa\x41\x5f\x11\xcc\xc3\x2d\xb6\xb3\x13\x90\xef\xfa\xe0\x99\xab\xc6\x42\x27\x3c\xc8\x62\x89\xd6\x2a\x21\xf0\x26\x6b\x08\xc1\xae\xa5\xd3\x32\x75\x50\x29\xca\x56\x1f\xbc\x3f\x73\x35\x5f\x67\x89\x84\x6a\x4d\xde\x8e\x37\xd4\x0b\x7f\x65\x57\x5d\x31\x9b\x4c\x10\x9f\xff\x5b\x56\xfc\x5b\x56\x7c\x1b\xb2\x62\xb9\x05\xaf\x34\x1e\x67\x16\xd2\xe0\xe7\x8b\xf7\xef\xa2\x29\xe2\x02\x07\x58\xcf\x6e\xd6\x17\x6a\x76\xf3\xbe\x12\x01\x30\xef\xfb\xaa\x14\x83\xe0\x57\x76\x05\x20\x0a\xbf\x03\xbb\x05\xcf\x7b\x6a\x0d\xb0\x68\xa8\x25\x98\xef\xec\x04\xb9\x9a\xcd\x9e\xf9\xe0\xc4\x41\x18\xc2\x7c\xc3\x39\xf6\xc5\x4c\x7c\x37\xf5\xd0\xbf\xa7\xde\xbf\xa7\xde\x66\x53\x4f\xb4\x39\x76\x56\x1a\xbe\x2d\xa6\x5f\xdd\x7a\xad\x98\x3b\xef\x8a\xd9\x53\x5b\xce\x36\xb0\x51\x4a\x9e\x96\xad\x96\x82\x8c\x5c\x23\x7d\xfc\xcc\xd3\x25\x12\x37\x9f\x95\xf1\xb6\xb0\x36\x54\x9b\x40\xd1\x26\x94\x31\x84\x90\x2f\x52\xa8\x12\x29\x46\x4b\x60\x55\xf1\xc0\x9e\x79\x0e\x03\xb6\x50\x56\xe3\x32\xdb\x0d\x0a\xc8\x2b\x66\x4b\xbb\xe9\xcc\x82\x47\x09\xd3\xb4\x40\x6b\x44\x36\x86\xd5\x2a\x07\xa8\x15\x1a\x66\xf0\x51\x53\x7c\x72\x23\x3e\x73\x2d\x3e\xb7\xda\x50\x0b\xb8\x06\x01\x73\xd7\x4e\xc5\xee\xfa\x42\x2d\xdd\x8d\xf9\x7f\xe2\xf9\x67\xb6\xf3\x37\xa0\xbc\xb1\xd4\x77\x76\xac\xc5\xee\xc6\x3e\x5c\x40\x8e\x73\xed\x55\x13\x63\x32\x7d\x85\xf2\xfc\x0a\xa5\xd7\x6f\x08\xbd\x16\xc9\xbd\x5d\x63\x92\x72\xb5\x59\xc0\x21\x96\xe9\xf8\x1c\xdd\x9e\xa9\xa9\x4b\x54\xc5\x16\x8d\xb8\x5d\x57\xf4\xf5\x64\xbd\x92\xb5\xa8\x88\x12\x82\xbf\xbe\xfc\x08\x14\xb3\x33\x9e\xe2\x0f\x98\x13\x96\x91\x34\xa9\xad\x07\x16\xd4\xd4\x7e\x2e\xdc\x16\x72\x2d\x4f\x6b\x13\x0f\xa5\xb6\x5a\x50\xbb\xba\xdd\x25\xa8\x69\xed\x35\x5c\x2c\xe0\x12\xf7\xf1\x27\xf5\xfb\xec\xe5\x9b\x97\x1f\x5f\xaa\xae\x6b\x3e\x6b\x01\xbf\xb2\x73\xcf\xf3\x3c\x28\x7b\xa3\x20\xac\xea\x44\xa1\x82\xff\xcc\xae\x7e\x7a\xf1\x26\xc1\xf0\x05\xa2\x8c\x92\x14\xe5\xe4\x37\x6c\xb5\x70\x38\xcd\x51\xdb\xe8\x7a\xfd\x79\x78\xb0\x0f\xff\x24\xd9\x8f\x78\xc8\x38\xbe\x40\x37\x84\x8e\xb4\x25\xa4\x5b\x15\x92\x71\x0c\xd7\x73\x81\x4b\x6f\x38\x72\x44\xdb\xf0\x17\x4d\xfc\x93\x02\x05\x8a\x3d\xae\x54\x13\x16\x84\xf0\x8c\x0c\x87\xa6\x3b\x35\xb1\xec\xbb\x79\x5e\x9f\xf5\x25\x34\xde\x8f\x0f\x68\x9e\x33\x94\x69\x4a\x76\x35\x12\xf0\xfe\x57\x76\xf5\x21\x47\x54\x24\x97\x78\xb0\x08\x55\x41\x8c\xaf\x2d\xca\x5e\x39\x19\x2a\x9a\xf1\x59\x95\x64\xcd\x11\x28\xbb\xfe\x82\x63\x27\x79\xdc\xd8\x6d\xd2\x3d\x3d\x4a\x33\x2d\xbf\x9e\x3a\x4e\x2d\x2c\x52\x22\xe8\x8b\x46\x6f\x74\x36\x45\xd1\xf7\x65\xb1\x8a\x9a\x27\xab\xcb\x92\xdc\xd9\x09\xf0\x12\xad\x55\x86\x21\xc4\x9e\x07\x49\xac\x54\x59\x1d\x80\x4d\x76\x59\x1f\xdd\x31\xf8\x3d\x77\xa8\x96\x2d\xf6\xe8\x77\xf2\x56\xdf\xeb\x6d\x1a\xb4\xa1\x39\x4e\x59\xf6\x28\xc9\x97\xdb\xe1\x9f\x87\x9a\xb4\x49\x4d\xbf\x03\x74\x65\x07\xa6\x2c\x27\xe9\xa3\xae\x84\x55\x7b\xf3\x5f\xac\x13\x9e\xca\x26\xcb\x25\xfc\x3b\xb0\x8b\xd2\x1c\x2c\xd6\xef\xa2\x44\xe2\xba\x2b\x24\x92\x1b\x4d\x8e\xd5\x3e\x13\xb3\xfb\x05\x19\xe4\xa1\x36\x3f\x54\x17\x94\xe5\xc3\x06\x01\x0f\x21\xe9\xe7\xc6\x9c\xb1\x46\xcb\xcc\xf1\xb0\xee\x31\x0d\x66\xe1\x22\xd7\x16\xd0\x33\x19\x90\x30\xf9\xc0\xd9\x84\x08\x1c\x71\x2c\x58\x7e\x83\x03\x62\xa5\x37\x82\xe2\x4b\x9a\xed\x2b\xb7\xc5\xf2\xfa\x36\x8d\x3f\x0b\xcd\x96\x17\x9a\xc9\x31\xe3\xe4\x37\x9c\x9d\xe3\x7f\xcd\xb0\x90\x01\xd8\xbd\xe9\x15\x7b\xa8\x43\xb1\x9b\x8b\x5d\x50\xee\x9e\x96\x9b\xaa\x7a\x23\xf5\x99\xb2\x90\xfb\xde\xf6\x6a\xd3\x0f\x2f\xc3\xd0\x52\x42\x84\x4a\x09\x41\xf5\x7d\xdf\x27\xe0\xa4\xa0\x7c\x46\xac\x7c\x59\x2f\xbc\x05\x90\x2d\xd9\x8d\xf3\x16\x06\x6b\x8b\x15\x2b\x12\xee\x73\x3c\xc2\xd4\x98\xcc\xe7\x33\x2a\xc9\x04\x47\x13\xc4\xaf\x9d\x40\xeb\xe0\xa0\xdc\x16\x81\xc2\xb9\x42\x9a\xd5\x6e\x39\x9a\x56\xe4\xa0\xb2\xcf\xbf\xff\x3e\x14\xb7\x44\xf1\x23\x8e\xa6\x1c\xdf\xf4\xb1\x36\xc6\xc3\xfb\x14\x09\xdc\x89\x13\x32\x0c\xb6\x65\xc4\xae\xc3\x7b\xf3\xa1\x7f\xb0\x75\xc5\x31\xba\x5e\x38\xc5\x01\x5d\xf1\xd9\x54\x06\xc0\x06\x72\x40\x19\xfd\x2a\x94\x51\x14\x6e\x69\x10\x07\x89\x2b\xa9\xeb\x1f\x41\x19\x49\x6d\xee\x9b\xef\x47\x89\x35\xab\xfb\x38\x12\x98\x4a\x88\xfa\x66\x97\x53\x46\x6a\x54\x66\x02\x8a\x3e\xf5\xc4\x33\x65\x1d\x31\x4b\xc7\x9d\x21\xc9\x71\x87\xf1\x4e\x46\x38\x4e\x25\xe3\x73\x10\xc2\x7b\x35\x2c\x09\xda\xd9\x11\xcf\x0e\xe2\x83\xc4\x41\x28\x3c\x18\x2d\x26\x1b\x5d\x2c\x0c\x1e\xbd\x5e\xa2\xfe\x02\x4c\x33\x50\xa2\xac\x74\xdc\x40\x29\xbb\x38\x5c\x84\x30\x60\xfd\x9a\xd1\x6c\xd4\x5d\x88\x4a\x23\xc5\x45\x09\xe1\xdb\x8e\x9d\xc2\x25\xd1\x05\x64\xa6\x1e\xef\xe3\x82\x17\x20\xf2\xb8\x25\x57\xe3\x42\x03\xae\xc5\x48\x0e\x09\x04\x8a\x68\x40\x35\xef\xca\x90\x46\x19\x4d\x41\x5d\x28\x0f\xcc\xf4\x56\x6a\x58\xb8\x84\xdb\xd6\x5d\xc6\xf4\xdc\xf9\x36\x17\x01\xad\x50\x2f\x13\x52\xab\x56\x08\xed\x3e\xb8\xc0\xf9\xb0\xdd\xfb\xd1\x54\x04\x6b\xe1\x23\x57\x33\x92\x67\xbf\x9c\xbf\x09\x94\x7e\xae\x09\xb4\x2b\x70\x3e\x54\x0a\xa1\x36\xd9\x9a\x7e\x0f\xd3\x05\x6c\x6c\x00\xc7\x1c\x55\x3d\xdb\x52\xda\xc8\x5e\x91\x5c\x4a\xa5\x62\xd3\x8a\x8a\x6d\x8b\xd0\x88\x32\x3e\xd1\x06\x8a\x7b\x27\x43\x63\xd0\x92\x2c\xac\xeb\x29\xab\xd7\x40\xcf\x5f\xe9\x0f\xf2\xbf\x66\x98\xcf\xbb\x42\xcf\x98\x35\xd4\xc5\xff\x68\x06\x9f\xec\x2e\x8b\x0d\xf1\x56\x4c\xf1\x6f\x57\xe7\xbf\x5d\x9d\x9b\x49\x02\xd6\xa7\x0d\x49\xa0\x79\xf8\x0d\x11\x72\x99\x34\x58\x29\x2a\x96\xc5\x9f\x14\x5e\x2f\xd4\x7f\xdc\xad\x24\xfa\x01\x7d\x78\xb8\x57\xe2\xf6\x8a\x71\xa9\x83\x7a\xb6\x34\xa1\xef\x33\x9c\x63\x89\x3b\xd4\xff\x62\x5d\x94\xd1\x95\xb1\x40\x31\xcd\xb6\xfc\x87\xca\xd6\xa9\x88\x52\x34\x55\xb4\x0d\xb0\x8e\x3d\x28\xf4\x07\x43\x13\x5f\xa6\x17\x63\x89\x5a\x22\x7b\xdc\xdc\xb3\x7e\xbc\xba\xaf\xed\xa0\xd5\xd7\x76\xe0\xfb\xda\x0e\x06\xc9\xfd\x02\x32\x1b\x70\x81\x84\x20\x23\xea\x09\xc4\xff\xa5\x24\x86\xa2\x75\x08\x79\xdd\xff\xf3\x3c\xcf\x03\x19\x4d\x58\x86\x73\x65\x4c\x85\x5b\x65\xd0\x06\x52\x64\x83\xc0\x0a\x0d\x3b\x0e\x91\x1e\x51\xa0\xa6\x06\x8b\x08\xcd\xf0\x9d\x81\xe8\x06\x5a\x55\x7d\xad\xde\xbf\x62\x3c\xe0\x61\xb8\x65\xd4\xec\xc7\xc0\x96\x43\xd0\x66\xef\x73\x23\xbf\xe1\x7d\x59\x2c\xc9\xa1\x36\xee\xd9\x72\xaf\x33\x35\xba\xbe\x41\xe0\xe9\x74\x25\x7d\x51\x5b\x5d\x68\x49\x30\xd5\x04\x04\x65\xfb\x20\xac\xed\x85\xcf\xfa\xe4\x32\x1e\xc0\xb4\x4f\x2e\x7b\x83\xad\xb4\x36\x46\x6e\xc2\x18\xbf\x6d\x1a\x6a\xe2\x34\x87\x2e\x0f\x61\x49\x41\xfe\xc8\xc0\xa4\x8f\x0f\xcc\xcc\x0e\x4c\xd6\x7f\x0c\xec\xea\x81\x99\xb5\x0c\x4c\x66\x06\x26\x5d\x2c\x31\xee\xb7\x83\x52\xfe\xb0\x61\x07\x45\xcf\x55\x5d\x2d\xc4\xc2\xd0\x8b\x3e\xe3\x58\x2d\xbf\xe7\x9e\xef\xb7\x32\xb8\xc5\x84\xd1\x13\x9e\x3d\xd9\x47\xad\xe9\x93\x6c\xf7\xa0\xd7\x03\x25\xaa\x17\x90\xf7\x99\xa1\x1e\xcc\xfb\xcc\xa3\x03\x24\x7d\x65\xf6\x79\x2e\x69\xc6\x03\xaa\x83\x08\xc1\x15\xce\x19\x1d\x89\x8f\x0c\x6c\xf7\xfb\x24\xba\x26\x34\xdb\xd9\x01\x63\x13\x54\x56\xbe\x0b\x4b\x01\x6e\x85\xb7\xd3\x63\x48\x74\x8d\xe7\x10\x74\x26\x33\x21\x3b\x57\xb8\x83\x3a\x0e\xa6\xd2\xa7\x2d\x28\xa8\x29\x88\x51\xd6\x21\xb2\x73\x8b\x44\xa7\xb4\x7e\x6c\x0b\x66\x7c\x67\x7d\x7c\x69\x5e\x0c\x0c\xe4\x30\xca\x09\xbd\x0e\x42\x98\xf6\x4d\x18\x1e\x5f\x9b\x61\xe0\xcc\xd3\xf3\x9f\x15\xfe\xec\xac\x5f\x67\xe2\x99\x37\x03\x2e\x7b\x83\x70\xcb\x2e\x2f\xd7\x78\x2e\x82\xac\x25\x16\x0d\x3b\x51\x9c\x6a\xf7\xe5\x62\x2d\x36\xcb\x4b\x36\x6b\xb8\x4d\x8d\xee\x5f\x78\x76\x69\xdf\x1b\x97\x7e\x31\x06\xcf\x80\xd3\xd5\x94\x20\xfc\xb1\x28\x51\x04\x79\x82\xa4\x5a\xc0\x46\x06\xba\xcf\x50\x99\xe7\x02\x73\xa2\x4b\x70\x45\x24\xa2\x43\xfc\x74\x84\x9b\x91\x10\xfe\x4b\xde\x47\x97\x74\x10\x48\xc8\x20\x0e\xb7\xa4\xd5\x2b\x94\xf0\xaa\xed\x1b\x2c\x9d\x1c\xd6\x84\x6b\xeb\xcb\xfd\x22\xa9\x86\x6e\xae\x0c\x58\x2d\x57\x1b\x79\x09\xee\xba\x46\x85\xd4\x2c\x00\x06\x0f\x0f\xf2\xd2\x85\xc0\xbe\x36\xef\x8a\x79\x2f\x76\x76\x6a\x2c\x22\x3c\x16\x41\x6a\x59\x81\xc5\x1e\xda\xca\xf8\xd6\x8a\x16\xdc\x1e\x67\x37\x9d\x2e\xb1\x6d\xac\xc3\x85\xbb\xb8\x6a\x25\x25\xba\xda\xa1\x6b\x46\xa2\x52\x3a\x65\x74\x48\x46\xbb\x98\xde\x10\xce\xa8\x8e\x00\x6a\xd3\x7b\x35\x35\xb6\x3e\x59\x0f\x72\x41\x8f\xcf\x4b\x1d\xdc\xe9\x42\x13\x0d\xc0\xc4\x3c\x26\x2e\xf2\x32\xf2\x5f\xc3\x29\xcb\xde\xb6\x17\xab\x7d\x81\xe7\x96\x0c\x89\x9b\x7e\xca\x02\xae\xf8\x4d\x05\x6c\x6f\x25\xb4\x5a\x8e\x78\x6c\x10\xb4\x2b\x61\xca\x08\x55\x23\x50\x0e\xc6\xa0\xc2\xb2\x9f\xae\x3c\x96\x2f\xee\x27\xec\x8a\xe4\x38\x01\xc1\x04\xdd\x75\x6f\x49\x26\xc7\x49\xe7\xf8\xe8\x64\x7a\x17\x02\x28\x95\xe6\x2a\xd5\x37\x42\xcb\x6f\xa7\xfa\x5b\x86\xc5\xb5\x64\xd3\xea\xc7\x5e\x7c\x62\x6a\x8e\x66\x52\x62\x9e\x63\x21\xaa\x90\x4f\x8f\x62\xf5\x7d\xd1\xd6\xf7\xb4\xf0\x1d\x89\xdd\x6e\x36\xa7\x68\x42\xd2\x2e\xce\xb1\xe2\xa0\x2e\xca\xe5\x97\xa4\x87\x91\x5e\x86\x91\x9c\x0b\xcb\xa3\x92\xdc\x10\xdf\x6f\x19\x57\x94\x65\x8c\x76\x53\x36\x9d\x77\xaf\x66\x52\xb6\x9f\x9c\x48\x73\xa2\xfe\x3f\xbd\x62\x88\x67\x7e\x6d\xbf\xde\x27\xbb\x37\x96\x56\x28\x76\x7f\xe0\x3d\xa6\xb3\x89\xb1\xa0\x92\xed\x18\x8e\xb0\x6c\x0b\xd0\x77\xf3\x71\x11\x3e\xd6\x79\xe7\xc7\xec\x6a\x0f\x51\xb3\xe7\xec\x06\x73\x4e\x32\xd5\x62\xb7\x38\xe6\x50\x92\x85\xd1\x74\xc6\x39\xa6\xe9\xdc\x17\x79\x63\x9c\x4f\x31\x17\xbb\x39\xfa\x6d\xae\xc8\x96\x5e\xb7\xec\x1a\xe5\x48\x08\x5c\xc1\x40\x48\x24\x45\x57\x72\x94\x5e\xe3\x2f\x70\x70\xa4\x62\x28\xd6\xf8\x65\x3d\xc7\xd1\x4a\xd7\xb7\x44\x23\xbd\x19\x04\x24\x07\x50\xf7\x4e\x87\x6c\x24\x97\xa0\x4e\x64\x40\x44\x97\x50\x65\x08\xeb\xc8\x0e\x30\x80\x65\x09\xad\xf9\xc1\x94\x51\x89\xef\xa4\x79\xd0\x64\xd1\xeb\xaf\x52\x12\x31\x55\x43\xf1\x81\xe5\x39\xa1\xa3\x24\x88\xa1\x74\xa7\x4f\xc2\xa0\xc1\x0b\xdb\x06\x59\x89\x85\x24\x74\xb4\x08\x0d\xb0\xc6\xa9\x15\xff\x94\x1a\xf0\x7d\xdb\xe2\x7c\x46\xa9\x76\xf3\xb4\xbb\xc3\xc8\x30\x28\xe3\x55\x5a\x2b\x3a\xd7\x8c\x3b\x7d\x12\xa5\x7a\x47\x37\xb8\xd7\x51\x12\x49\x4b\x0c\x10\x5e\xea\x96\x97\xe1\xc2\x27\x96\xd1\xcf\xdc\xb3\x66\xf7\x74\x3a\xab\xf5\x2f\x42\x39\x41\x22\x00\xba\xef\x51\x3a\x9d\x45\x39\x12\xd2\x70\x12\x08\xe1\x04\x4f\x18\x9f\xaf\xac\x63\x8a\x54\xab\x31\xfa\x42\x71\xb6\x3f\xff\x16\x30\xad\xbe\xc2\xf6\x8c\x83\x9a\x08\xba\x74\x18\x5c\x6a\x9c\x6d\x65\x88\x07\xe1\x02\x66\x44\x99\x6e\x98\xdc\xe0\xe7\x52\x72\x91\x54\xdc\x2c\x95\x0e\x3e\x33\x48\xf2\x19\x8d\x44\x3a\xc6\x8a\xdb\xdf\xd3\x14\x07\x00\x0d\x25\xe6\xe7\x98\x66\x4a\x2b\xd1\xba\x0e\x0f\x0d\x75\x34\x91\x2f\x4c\xcf\x95\x4a\x97\x2b\x7b\x3b\xb4\x21\x2a\xfa\x7d\xa2\xd7\x6c\x89\xc4\x75\x18\xac\xb1\x99\xe0\x46\xe9\xb3\xee\x20\x98\x28\x08\x24\x85\xdb\x47\xe8\xc5\xf5\x8d\x04\x5d\xb9\x07\x8b\x7d\x06\x3f\x52\x4a\xf7\x6f\xca\xf2\x1c\x84\xd1\x14\xf3\x21\xe3\x93\xc0\xed\x2f\x18\xe0\xae\xdc\x4b\x73\xae\x6d\xbb\x17\xc2\x5a\x53\xa6\xc2\x71\x62\x9b\x3a\x86\x38\x92\x71\x1f\x5b\x23\xb2\x67\xf5\xca\x26\xa4\xd8\x36\xd5\x8b\x6b\x7b\x19\xbd\x3d\xa3\x10\x29\xe2\xb0\x99\x0c\x83\xc3\xd8\x95\xdd\x4b\x8a\xc9\x53\x99\xd2\xae\xff\x45\xf7\x4d\xe9\xfd\xd5\x9b\x0f\x66\xcc\x2f\x2f\x7b\xf0\x78\x30\x08\x17\x61\x18\x65\x5c\x7f\xab\x1c\x90\xf1\xa7\x2e\xb4\x81\x38\x25\x73\x39\xdb\x3a\x32\x76\x6f\x50\x37\x6b\x6c\x50\x91\xc7\x51\x8e\xd4\x50\xee\xec\x48\x33\x16\x3a\xfc\x61\x67\x67\xbb\x7c\x8c\x88\xf8\x80\x69\xa6\xa5\x41\xf9\x41\x31\xdc\x5f\x39\x9b\x4d\x0b\x3b\x8e\xf6\xbd\x2a\x5a\x02\x52\x09\xc2\x2d\xba\xb3\x43\x1d\x46\x6a\x45\x7b\x44\x65\x6c\x5f\xdd\xcc\x46\x4f\xf7\x0a\xf1\x25\x4a\xbd\x57\x2d\x23\x42\x72\x72\x35\xd3\x15\x55\x8d\xdf\x6f\xdf\x22\x47\x73\x36\x93\x66\x1d\x59\x85\x91\x27\x04\x5f\x30\x2a\x11\xa1\x98\x9b\xd5\x02\x28\x9b\xb4\xab\x04\x7e\xb7\xbd\xfb\x4a\x6f\xd0\x76\xeb\xf2\x45\xc0\x81\x8c\xee\xff\x35\xc3\x33\x9c\x3d\x57\x9f\x04\x54\x65\x95\x95\x6c\x1f\x87\x88\xe4\xee\x1b\x37\xf2\xde\x3e\xe9\xc3\xae\xee\x71\x51\x59\x3e\xdc\x7c\x6f\x69\xb0\x3c\x04\xe8\x45\x9c\xb6\x21\x36\xc2\xd2\x12\x9e\x60\x11\x00\x1f\x4d\x00\x41\x15\x51\x00\x81\x8f\x2a\x80\xa0\x82\x2c\x80\xa0\x8a\x2e\x80\x20\x67\x42\xda\x87\xc2\xe7\x74\x79\x9f\xa3\x2b\x9c\x27\xe0\x7f\xe9\xb6\x00\x34\xe3\x8b\xa3\x2a\x89\x8a\x85\x3f\xb1\x38\x81\x05\x2c\x2a\x5e\xd8\x56\xca\xaa\xd5\x76\xfd\xca\xc2\x95\xcd\xd1\x1c\x73\x91\xec\x95\x70\xdc\x9a\x5c\x80\xa9\xd2\xde\x83\x62\x3f\x78\x38\xbc\xb0\x94\x29\x2b\xd7\x06\xd5\xab\x5d\x7c\xf1\xaa\xbf\xd2\x74\x2c\x2b\x57\x58\xc0\xab\x6a\xde\x7b\x15\xdf\x30\x21\xcb\x6a\x25\x79\xfd\x4a\xea\x2d\x58\x0c\xd4\x2a\xfe\xd8\x16\x95\x3f\xc9\xa7\xd3\xae\x92\x94\x59\xca\x67\x93\xab\x2f\x6a\x26\xb6\x9a\x1a\x6e\xee\x7a\x48\x5c\x18\xad\xb0\x5d\x55\x04\x3e\xb6\x9e\xde\x08\xa0\xf7\xa1\xae\x8e\xa8\x2f\xa2\x52\xd5\xb6\x11\x55\xa0\x55\x28\xf7\xa8\xe5\x23\x8d\x50\xc1\xa2\x2b\x70\x2a\x6b\x87\xc6\x7f\x5f\xe2\x95\x54\xd8\xa8\x0b\x57\x48\x90\xb4\xab\xd6\xba\x8c\xdd\x2a\x2b\xce\xac\x1a\x2d\x76\x4c\xb5\xe4\x1a\x30\xfe\x80\xd6\x5c\xad\x27\x92\x93\xd1\x08\xf3\x4f\xa2\x46\x01\xe3\x0f\x4f\x8d\x4f\xa1\xc2\x1f\xb1\xf7\xe9\x98\xe4\x19\xc7\xff\xfd\x34\x9f\x5f\xd9\x55\x43\xd3\x69\xeb\xec\x52\x3d\x47\xa9\x97\xf7\x53\xa3\x90\xbe\xb0\x15\x0b\xf5\xc5\x3d\x67\x18\x65\xc5\xc3\x12\xf5\xe5\x57\x76\xd5\xaa\xae\x28\xf8\x35\xf5\xa4\xd6\x5a\xa9\x81\x78\x6f\xfc\x16\x9b\x4a\x47\xa1\x40\xbb\x25\xb4\xde\x81\x55\x8a\xc7\x32\x85\xa1\xad\x72\x53\x65\x38\xc3\xc8\x5b\xf1\x7d\x34\xdb\x95\x85\x4d\x17\x70\x13\x65\xd7\xa5\x2c\xc3\x4d\x27\xd4\x46\x3e\xa5\xa9\x23\xb9\x09\x5d\xf1\x4b\x4c\xc8\x1d\xa1\x62\xf7\x96\xc8\x71\xd7\x35\xde\xbd\x21\x82\x5c\x91\x9c\xc8\x79\x37\xc3\xd2\x2e\x82\x6d\xee\xf9\xcf\x75\x16\x6b\xc9\xfa\xe7\xdc\xe4\xf0\x11\x0f\xd4\x52\x27\x53\x83\x8a\x4d\x2f\x93\xfa\x66\xa6\xce\xfa\xbe\x0b\xf9\x74\xdf\x45\xd3\xd6\x54\x08\x6c\x69\x4b\x71\xa9\x85\x89\xcd\xd6\x8e\xb3\x2c\x25\xec\xc5\x3a\x58\x0d\x96\x43\xf5\x93\xde\x59\xe2\x49\x75\x52\x66\x2c\xd5\x9b\x3b\xd1\x98\x64\x19\xa6\x61\xb9\x4f\xe4\x3b\x3e\xb6\x70\x2e\xb0\x7f\x9c\x4d\xe3\x84\xfd\x6d\x25\xd7\x36\x36\x6d\x2f\xe0\x2d\xc9\xf3\x33\x2c\x24\x67\xf3\x86\x73\xa6\xd1\xc2\x1a\x9b\x4f\xd0\x6c\xf9\x6a\xd7\x80\xfe\xe9\x6f\x31\x87\xbe\x25\x56\x57\xe9\x5a\xe3\xf9\x97\xb8\xa3\xdb\xdc\xd8\x9e\xbf\xf6\x4b\x89\xf6\x65\x1a\x5e\x95\x5b\x2b\x6e\x73\xe7\x59\xff\x58\x71\x7a\x5a\x66\x25\x34\x23\x29\x92\xf8\x62\x96\xa6\x58\x08\xe3\xf3\xfc\x7a\xee\x2a\x7f\x6b\xd8\xb9\x82\xb0\x32\x22\x0d\x7e\xc0\xb9\x95\xf6\xa1\x41\xb5\x70\xfe\xec\xe1\x7d\xeb\xfc\xd9\x4f\x1a\xd5\x55\x57\x9d\xc7\xea\x71\x5f\x8f\xf6\xf1\xd8\xa4\x52\x4a\x67\x08\x36\x93\xb9\xcd\x65\xb5\x8d\x59\xa6\x73\xb5\x2e\xed\x77\x05\xce\x0b\xfb\x40\x3d\x4a\x8e\xa8\x20\xf5\xc3\x20\x4e\xc0\xd2\x8c\xdd\x76\x39\x16\xe4\xb7\xf6\xa3\xce\x9e\x94\x16\x72\x9e\xe3\x22\x92\xb0\xcd\xe1\x0f\xd9\xe7\x62\x4c\xde\x6f\x0d\x02\xc7\xdf\xc9\x05\xcc\x97\x31\xad\x28\xc5\x72\x95\x7d\xc7\x88\x4b\x45\x8c\xa6\xbe\xe4\xca\xfd\x48\xf4\x02\xad\x8a\x13\xf1\x0e\x71\xce\x6e\x13\x22\xba\x54\xff\x52\x05\x15\x0c\xc3\xe1\x5a\x4d\xd1\xbf\x8c\xac\x3e\x43\x72\x36\xb1\xcc\x5f\x54\xdd\xee\x41\xc9\x58\x2e\xc9\xf4\x42\x11\x4d\xcd\x02\x56\x6e\xb4\x02\xfb\xed\x03\xb3\x03\x13\xc2\x09\x12\xd7\xaf\x33\x03\xe5\x9f\xad\x8a\x90\x7a\xd9\xe2\xd8\xb7\x7b\x0a\xd3\xb9\x3d\x81\xa6\x8a\xc1\xed\x38\x84\xb4\xaf\xa6\xd7\xf4\xc7\x79\x00\x34\xb5\x81\xe2\xc0\x6c\x96\xe2\x80\xc3\xd8\x85\xe6\xe8\x32\x5e\x84\xab\xb7\xd5\x1f\x69\x8d\x42\x07\x27\x68\x00\xb6\x8a\x55\x34\x84\xd5\x31\x98\xa7\x56\xc8\xc8\xfd\x2e\x1c\x21\x0a\x8a\xfa\x01\x75\xb8\x40\x82\xe0\x14\xf3\x14\x53\x99\xb0\x5d\x0a\xd9\x70\x28\xb0\x4c\x6c\xb2\xbf\x20\x86\x28\x5c\x81\xf2\x2e\xb5\x7a\x34\xc9\x5e\x53\x81\xb9\x7c\x69\xb6\x2b\x97\xae\x62\x65\x78\xa1\x99\x12\x86\x40\xff\x33\x00\xe2\x66\x04\xc2\xcb\x78\xa0\x73\xc3\x29\xae\xe8\x2a\xf2\x77\x5d\x4c\x8d\x8d\x71\x9a\x91\xec\x15\xe3\xba\x56\x18\x6e\x15\x32\xc0\xd3\x14\xef\x0d\x57\xc8\x62\xf4\x50\x91\x92\xca\xb4\xd1\x51\x92\xf2\x03\x92\x63\x10\x46\xca\x7a\xd7\xe7\xd6\x20\x0a\xa1\x8c\x18\x0d\xc0\x84\xcd\x14\x5e\xe8\x06\x57\x86\xd5\x6d\x1a\x54\x17\x5a\x2d\x7d\x88\x78\x6e\xd4\x03\xeb\x0f\xd7\x2f\x3d\x2e\xb4\x82\x09\x16\x3d\xd6\x07\x28\x47\x20\x34\xe3\xa2\xdd\x86\x65\xfd\xf2\x25\xa1\xde\x6b\x4d\x63\xdd\x0b\xae\x77\x28\x5e\xa8\x3e\x06\x46\x79\x30\x87\xe7\xda\xf7\x3d\x6a\xa5\xcd\x11\x3e\xfd\x68\x59\x99\x5d\x29\xcd\x08\xf3\x00\x68\x06\x8f\xfe\x03\xa3\x74\x1c\x19\x51\x00\x0d\xaf\x39\xf6\xa9\x2a\xf1\x2d\xf0\x43\xe8\x3d\xaf\xd6\x63\xf4\x20\x15\x67\x37\x75\xd3\xd0\x44\x81\x45\xc5\x74\x2d\x52\x4c\x15\xac\x11\xe9\xfd\xfe\x40\xc7\xe0\xac\x4c\xa6\xa5\x71\xff\x21\x5e\x84\x5b\xbc\x25\x4c\x49\x09\x2e\xd3\x75\x35\x4e\x18\x02\x13\x32\xa3\x4f\x55\xda\x30\x47\xc7\x9a\x20\xba\x42\x5c\x80\xb0\x3e\x70\x0a\xdd\x80\xc3\xd6\xd6\x35\xcd\x16\x21\x24\x7d\x6e\x83\xd8\xb6\xf2\x08\xdf\x11\x19\xa8\x79\x33\x61\x37\x38\x28\xa2\xba\xf2\x08\x2b\xe5\x32\xd0\x87\x08\x94\xac\xd4\xc0\x1d\x17\xea\x8f\x1e\xc9\xe5\x12\x36\x74\xd1\xef\x6a\xbe\x0a\x88\xfa\x74\x25\x79\x34\x82\xfa\xec\x87\x45\x75\x8b\xae\xcf\x89\x71\x08\x51\x4b\xe9\x78\x19\xdf\xb6\x4e\x07\x19\x5a\x4d\x1e\x69\xd5\x31\x08\x95\xad\xf7\xe3\x8f\xec\x2e\xd0\x79\x49\xa2\xbb\xef\x84\x19\xec\xdd\xbd\xad\xe6\x6e\x5d\x6d\xa7\x0e\xc3\xa6\x8d\xdf\x9c\x98\x4a\xff\x2d\x70\xa9\xcb\x79\x78\x9f\xe3\xa1\xd4\x31\xa8\xe1\x22\xfc\x3e\xc8\xfb\x79\x34\xc1\x7c\x84\x83\x59\x58\xc8\x08\xdd\xbb\xea\x58\x14\x56\xb8\x9b\x1e\x0f\x0f\x40\x0f\x41\x29\xb2\x90\x09\xc9\x7b\x3f\xd4\x87\x4a\x45\x1f\x47\x1e\x1d\x0a\xf3\x94\x42\xb1\xb3\x23\xea\xc3\xb2\xb3\xe3\xa8\x5b\x7e\xde\xf6\x3f\x3b\x3a\x0f\xf4\x7a\x84\x52\xc5\x61\x26\xff\x52\x07\x38\x71\x61\xf4\x23\xcd\x19\x00\xe6\x86\xf0\x69\x4b\xee\xa8\xbd\x62\xed\xd1\xc9\x0f\x0d\xde\x3b\x3b\xb2\xdb\x85\xf6\xa1\xdf\xef\x93\x6e\xcf\xbc\x2a\x03\x1d\xd9\x9f\x95\x19\xad\x17\x8f\xae\x84\x60\x7a\x07\x94\x4c\xea\x37\x19\xaf\x5a\xc5\xac\x31\xdf\x05\x5e\x63\xcf\xe2\xa4\x17\x16\x10\x26\xfd\xdc\x9f\x73\x91\x44\x7c\x84\x65\x31\xf3\x9a\xd0\x75\xc4\xe1\xd6\xa4\x31\x9f\xb8\xde\x67\xae\x8e\x21\x70\xc0\xcc\x6b\xcd\x69\x00\xa6\xc5\xf3\x18\x93\xd1\x58\x69\x26\xbd\x38\xfe\x93\x2b\x75\x07\x60\x16\x5a\xb6\x98\x84\x51\xa9\xbf\x05\x61\x94\xcd\xb8\xb6\x34\x82\xbd\x38\x5e\x06\x55\xd7\xd7\xd4\x9f\xd6\xfa\xa6\x74\x9e\x46\xc7\x3c\xf5\xaa\x92\x3e\x59\x2f\xdb\x0f\x0f\x3d\x9d\x4e\x30\x0f\x2a\x71\xc8\xf7\x66\x35\x97\x0b\x88\x43\x25\xcc\xa6\xab\xc9\xd1\x8a\xa1\xfd\x3d\x07\x2d\xb3\x4a\x3c\x03\x87\xf1\x9f\x40\x12\x2f\x4a\x8a\x92\xa9\xc9\xb7\x03\xc1\x8c\xe7\xc1\xff\xa8\x1e\xe4\x31\x0b\x30\x04\x21\x08\xeb\xc4\x6d\x85\x7e\x34\xbd\x03\x89\x21\xbb\x6b\x42\x13\x5a\x99\x92\x4b\xea\xe8\xef\x39\x92\x4a\x51\xe9\x74\xf7\x43\xa0\xdd\xdf\x76\xa0\xa6\xcb\xa6\xaf\x47\x5f\x70\xa5\x64\xbe\xa2\x6b\xd7\x3b\x02\xbe\x78\xea\x10\xab\xd9\xda\xae\xe2\xd8\x38\xae\xb0\x5c\x5c\x14\x7d\x40\x83\xed\x14\x15\xbc\x71\xd0\x34\x57\xf6\xae\x36\x0a\xce\x95\x4d\x80\x5b\xac\xf7\x52\x4e\x32\x9a\x62\x63\x2e\xd7\x57\xe8\x5a\xc8\x66\xfe\x88\x81\x33\xe4\x18\x6b\xeb\x62\x57\x8c\xba\x28\x4d\x19\xcf\x96\xe7\x60\x36\x76\x89\x2e\xae\x54\x34\xac\x4c\x94\x6c\x96\xca\xee\x04\x4b\xa4\xb5\xe4\xdf\xdb\x58\xb6\x08\x08\x3f\xb6\x72\x03\xf3\xae\xd2\xfb\x2b\x76\x87\xb3\xaf\xbf\xc3\x73\x83\x38\x41\xb4\x19\x7c\xd4\x98\x19\x97\xf7\xd7\x78\x9e\x80\x77\x3a\xf4\x19\x40\x49\x64\x8e\xcb\x47\x91\xcf\x46\x6a\x9a\x40\x53\xea\x35\x1d\x32\x57\xc6\x3c\x98\x12\xda\xfb\x35\x64\xae\xe0\xdf\x11\x37\x3e\x50\x5b\xd6\x3d\xbb\xe2\xb7\xf6\x4d\x51\xe3\x0c\x51\xbd\x7b\x62\x2b\x14\x8f\xae\x7c\x66\x5e\x34\xfc\x9d\x6a\xa8\xd6\x1e\x9c\x94\xe5\x8c\x7f\xc5\x4d\x4b\x8d\xe0\xc7\x31\x9e\xe0\x35\xc6\x85\x6a\xd7\xe3\x07\x4e\x4c\x22\xc1\x2b\x24\x70\x02\xfe\xc7\xde\xe1\x15\x3a\xe9\x29\xb2\x55\xbe\x77\xce\x10\xbf\x76\x85\x7a\xd9\xe9\xc1\xd1\x71\x59\xe8\xa3\x3e\xb5\x6a\x3f\xc6\x48\xfd\xaf\xfc\xf8\x86\x50\xaf\xe6\xe1\xd1\xfe\x70\x58\x7e\xfc\x2b\x47\x65\xdb\x57\x57\xe9\x41\xe6\xb5\xfd\x7e\x38\xec\xde\x8e\x89\xc4\xae\xc4\xf0\x50\xfd\x4f\x8f\x12\xb4\xb3\xea\x85\xa6\xf9\xda\xfd\x7d\xc1\xa8\x98\xe5\x9d\x0f\x3e\x52\xc3\x61\x1c\x9f\x78\xdd\xf1\xca\x54\xfb\x9d\x1e\xed\xa1\x63\x9f\x38\x3a\xb8\xb1\xf3\xa3\xb2\x45\x4b\xda\x20\xec\xf7\xd0\x2b\xd3\x24\x62\x96\xf9\x44\xe4\x1c\xa9\xf5\xa5\xf3\x61\xc6\xa7\x79\x09\xf1\x30\x3d\xc0\xf8\x70\x79\xc1\x2a\xd8\x83\xf8\x20\xbe\xda\x2b\x4b\xff\x0d\x8d\x38\xa2\xb2\x86\x64\x6d\x18\xfc\x42\x35\x2c\xe3\x03\xec\x83\xd3\x81\xfc\x9d\xbf\x72\x8c\xe9\x52\x9e\xf1\xca\xac\xe6\x9b\x7a\x41\x35\x23\x8b\xa2\x47\xc7\xf1\x41\x66\x46\x1a\x4f\x98\x52\x2f\x37\x1c\x69\xeb\x61\x2c\xb1\xdc\xcf\x7a\x47\x71\xd9\xb8\x93\x19\x05\x17\xa0\x13\xbc\xb7\x5f\x7e\x2f\x44\x44\x31\xf6\x27\x07\xf1\xfe\x41\xf9\xd9\x88\xa7\x1a\x3d\x5b\xa4\xc7\xfa\xa2\x3d\x23\xc3\x61\xf7\x86\xe0\xdb\xea\x2e\xef\x97\x11\x21\x4d\xcd\xf5\xfe\x15\xc1\x79\x26\x8c\x8f\xe9\xf5\x59\x02\x88\xf6\xa2\x10\x46\x45\x97\xd1\x7c\x0e\xec\xbe\xa7\x2d\xf1\xb1\x88\xf8\x12\xc9\x65\x51\xf5\xf2\xfe\x39\xa5\x4c\x1a\x67\xb7\x29\xf6\xce\xce\xa8\x19\x95\x00\xbe\xc3\xb7\x09\xd8\x03\xf0\x7d\x9e\xe9\xbf\xfa\x76\x08\xf0\x8e\x51\x0c\x16\x03\x5b\x34\x45\xe9\x18\x97\x6d\x39\xd8\xd8\x7e\x3f\x37\x6e\xd2\x0f\x36\x69\x49\x15\x27\x0d\xef\x65\x46\x24\x56\xac\x53\x7d\x86\xc6\x3b\x61\x8a\xd6\x3f\x2e\x16\x70\xf9\xfa\x5d\x12\xe2\x3d\xcd\xe7\x89\x0c\x96\xf6\xf3\xb9\x39\x2b\x2b\x6c\x57\x7b\x87\xb6\xaf\xea\x87\xdf\x59\xb8\x0c\xc0\x19\xce\x95\x40\x34\x84\x3a\x8c\x8b\xff\x2c\x98\x02\xc8\xf3\x2c\x33\x5b\x82\x4b\xa0\xbc\x56\xda\xf6\x8d\x5a\x60\x35\xa0\xd3\x38\x7e\x2a\xa4\xb7\x3a\xb9\x8d\x86\x92\x19\xd4\x74\x75\xfb\xbb\x32\x7e\x8a\xd3\x73\xfc\x2d\x90\xa9\xf2\x66\x2d\x78\x8f\x13\xac\xfa\x6a\x2d\xa0\x1e\xed\xda\xc8\x76\xa6\xcf\xa8\x65\x9a\x72\x38\x23\xf2\xbf\x23\xd5\x3c\x98\x0e\x68\x31\xe3\x3e\x0f\xcf\xe5\xca\x84\xd6\x29\xcf\x1a\xf2\x0b\xdf\xa1\x89\x5e\x47\x1f\x95\x5b\x5e\xe3\x35\xf1\xe3\xaa\xb4\x0a\xb7\xc7\xc4\xde\x5b\x2c\xd1\x25\xa3\x78\x60\xbb\x33\xcc\xf1\x6d\x87\xdd\x60\xde\x91\x63\xdc\x49\x67\xe9\x35\x63\xff\x9f\xe8\x50\x7d\x77\xc7\x66\xf3\x52\x41\x96\xb7\xac\x80\x7c\x45\x78\x26\x3a\x8c\x76\x50\xe7\x96\x70\xdc\x0e\xad\x10\xb1\x1c\x67\x44\xb4\x88\xd8\xa5\xfd\x20\x13\x34\x2a\x86\x44\x57\x4e\xf6\xa3\x03\xdb\x46\xf1\xbc\xb7\xf6\xf8\xaa\x65\xed\x9f\x13\x34\xbd\x8c\x07\x97\xd9\x55\xd1\x83\xa3\xfd\x93\x82\x6b\x8e\xf6\x8f\x4f\xeb\xd0\x06\x6e\x25\xa1\x43\x32\x5a\x29\xf7\xe1\xe3\xcb\xd1\x87\x5f\x8a\x49\x54\xf2\xea\xe1\x06\x2c\x7a\x46\xc4\xf5\xdb\x1f\x2d\x8c\x02\xc0\xda\xd3\xe6\xfd\x87\x8b\x27\x56\x7d\xab\x8f\x2e\xb8\x96\x0f\x7b\x6e\x31\x3d\x3c\x5a\x46\xb1\x73\x2c\xd8\x8c\x6b\xaf\xdb\xfa\x23\xfe\xf6\x47\x52\x0a\x9a\x65\xab\x46\xd1\xc2\x3b\x2c\x6f\x99\x52\xf3\xd6\x87\xff\x06\x5d\xe1\x42\x6e\x64\x57\xab\xc1\x9f\x99\xe3\x67\x9d\x0f\x8c\xcb\xd6\x81\x77\xe5\x6b\x73\x67\x93\x4e\x16\xb2\x34\x6e\x8a\xe7\xcf\xd3\xcb\x42\x8a\x5d\x2d\x6d\xe0\xd1\x7e\x7a\x35\x96\xbc\x58\x7f\x0a\x3c\xcf\x32\x8e\x85\xf0\x64\x2d\x9a\x49\x66\x91\x34\x3f\xd7\xe2\x48\xf5\xaf\x2f\x19\xba\x85\x00\x75\xb2\xa1\x78\xb3\x16\x38\xd5\xf7\x56\xde\x28\xe9\x56\x55\x17\x6d\xe0\xec\x26\xa3\xf2\x11\x8d\x84\x8f\xf2\x86\xa2\xd7\xab\xee\xf7\x75\x93\x5e\x7a\x20\x46\x39\xbb\x52\x2b\xa8\x86\x51\x3c\xb4\x75\xd4\xd4\x59\xce\xfd\x4f\x19\xf2\x5a\xcf\x1f\xc1\xfa\x05\x9b\x4c\x10\xcd\x9e\x54\xf7\xaf\xe7\x1f\x5e\xb8\xa1\x7a\x62\xfd\x5f\x04\xfe\xf8\xa6\x90\x9c\x43\x94\x8b\x82\xf4\xf6\xf7\x9a\x3a\x8b\x3e\xd8\x7d\xa1\x43\x0b\x9f\x84\x4a\x4d\xeb\xe9\x35\x14\xa9\xde\x53\x74\x1e\x2c\xc7\xec\x69\xa4\xf5\x66\x20\xca\xf5\x36\x8d\x99\xc3\xe6\xf7\x7a\xb3\x4e\x3b\xce\x9f\xd0\x76\x7d\xba\x6e\x58\x9b\x33\xc9\x52\xf6\xb4\xca\x1f\xdf\x5c\x5c\x5c\x93\xe9\xdf\x30\x27\xc3\xf9\x27\x32\xc5\x47\x13\xd4\x63\xa1\x1c\x37\xb4\xd8\xcd\xc7\x53\x15\xb3\xe0\x64\x3a\xb5\x70\xf4\xaf\xb6\xb9\xfd\x62\x8c\xd3\xeb\x4d\x6c\xd9\xc7\x9e\xab\xb6\xee\x1a\x0a\x91\x67\x9f\xf7\x9e\xa2\x8a\x5e\xe3\x79\xa1\xc8\x99\xd0\x8c\x27\xc0\xe0\x38\x73\x8a\x32\x11\xe3\xd5\x4a\x81\x16\xb7\x7b\x9b\x88\xfd\x9a\xf9\xb4\xb7\x21\x8a\xbe\xf1\xd4\x9c\xf3\x4f\xb4\xcc\x7b\x27\x9f\xc5\x34\x1f\x22\x92\xaf\x26\xd7\xe3\x5e\x93\xf5\xb5\x26\x32\xe2\x3a\xc8\xad\x31\xe5\xd6\xc5\xfc\x82\xfc\x86\x9d\x0e\xbb\xbf\x71\xc7\x2f\x24\x49\xaf\xdb\xa6\xfc\x92\xbe\xbf\x9c\x8e\xf1\x04\x73\x94\x2b\xad\xfd\x11\x05\xf2\xa9\x96\xde\x19\x27\x3a\x87\x88\x51\x5a\x98\x3e\xf3\xbe\x59\xaf\xfe\x93\xe4\x79\x55\x0e\x3d\x99\xc9\xde\xe8\xeb\x0c\x3f\x65\x80\xc6\x33\x99\xb1\x5b\xea\xf3\xfc\x23\x36\xc0\x67\xb1\x29\x37\x9d\x93\xcb\x2c\x49\x65\x3e\xae\x42\x76\x85\x11\xb9\xf6\x34\x28\x6d\xc8\xc3\x8d\x07\xa8\xd5\x7c\x5c\x5b\x84\x34\xcd\xc7\xf5\xc5\x6c\xc5\x7c\xd4\x46\xe3\x23\x52\xe3\x53\x4d\xc7\x3f\xa2\xe5\xb8\xc9\xe3\x23\x5e\xe5\x27\xef\xf3\xd6\x83\x51\xbb\xbf\xce\x26\x57\xec\xeb\x6d\x2d\xfa\xf8\xfc\x88\xf8\x59\x4b\x08\x6a\xcb\x4e\x8c\x3d\x74\xa2\x94\x1d\x1b\x0f\xda\x8b\xcb\xb3\x28\xf2\x96\x15\xaf\xf7\xfc\xd7\x63\x8e\x5d\x79\xef\xfd\x90\xcd\x78\xf1\x7a\xff\xf0\x53\xf7\x5a\x96\x87\x4c\xff\xce\x67\x25\xc9\x04\xf3\x8f\x24\xbd\x16\x49\x6c\x4e\x5a\xab\x55\x80\x17\x41\x91\x34\x00\x84\x92\x65\xb7\xcf\x6e\x95\x91\x55\x1a\x0e\x80\x3a\x83\x96\xd1\x31\xaa\x01\xa2\x84\xa6\x5c\x87\x7d\xb8\x3e\x80\xb2\x69\x10\x2e\xe0\x61\x1c\x87\xe1\x22\x5c\x76\x3e\x22\xcd\x31\xe2\x0e\xb4\x49\xb7\xad\xea\xeb\xc8\xcf\x3a\x6f\xcc\x26\x4f\x65\x8e\x81\x8e\xe0\xfd\x3a\xbc\xb6\xbf\xb4\xf9\xbf\x13\x39\x7e\x61\x72\xdc\xac\x8f\x49\xf5\x68\x79\x2f\x5e\x79\xaa\xab\x7e\x94\x7b\x2f\xde\xe8\xf0\xf6\x7e\xdc\x76\x60\x7b\x49\x6f\xce\xb5\x5c\xa5\xa3\xe6\x7d\xc7\x25\x43\x34\x63\x9c\xda\x28\xfc\x16\xc9\x71\xc4\xd9\x8c\x66\xc1\x61\xfc\x67\xf3\x84\x68\xc6\x26\x41\x18\xb6\xd2\x7e\xcd\x0a\xfe\xa8\xac\xac\xf2\x69\x42\xa0\xe5\x34\xe9\xef\x3b\xf9\x99\xcd\x46\x5b\x8d\x4e\xa8\x6d\x90\xd7\x63\x09\x5a\x22\x01\x1a\x3b\xf9\xfe\x0b\x7d\x9f\xd6\x00\x4e\x10\x9d\x17\xd9\x6f\x2f\xc1\x7b\x35\x88\xe0\xa3\x1a\x19\xf0\xd1\x90\x1b\xbc\xd2\x02\x16\xbc\xd2\x8e\x03\x70\x41\xee\xd4\xbf\xf8\x46\x1f\x68\x7c\x69\x63\xc2\xde\x11\x53\xd1\xbc\xcc\xed\xd7\x8f\xb7\x38\xd7\x95\x3e\x8e\x09\x97\x3a\x36\x40\x43\x2b\x7e\x92\xa1\xfe\x35\xa8\x9e\x26\x28\xb7\x9e\x35\xaa\x78\xf1\x29\x83\xf9\xab\x60\xf4\x77\xdb\x3d\x5f\x36\x9e\x0a\x89\x8b\x09\xca\xf3\xe4\x7e\xc8\x58\x02\xf4\xca\x42\x67\xaa\x74\xd2\xdb\xdb\x3f\x38\x3c\x3a\x3e\x39\x85\x2e\x1e\xec\xb2\x18\x70\x68\x47\x1a\x16\x43\x0c\xbd\xb1\x85\x6e\x50\xa1\x1d\xcd\x01\x34\x07\xbf\xf4\x52\x91\x04\x14\xdf\x76\xce\x90\xc4\x61\x24\xd9\xeb\x8b\xf7\x26\xa9\x75\x10\x42\x8a\x85\xc4\x59\x72\xcf\xae\x7e\x4d\x80\x4e\x74\xb4\x80\x94\x51\x7c\x47\x84\xc4\xd4\x1e\x57\x19\xcf\xc6\x89\xcd\x36\x48\xc4\x47\xae\x3a\xde\x5b\x40\xd5\x91\x37\x88\x8f\x70\x72\x7f\x21\xd9\x34\xd9\xee\x41\x73\x0f\x76\xe9\xa4\x7c\x57\x5e\xbf\xee\xce\x3d\xbf\x3e\x4b\x80\x98\x8b\x9c\x8d\x00\xfc\x80\x14\x86\xea\x0d\xb0\xea\x58\xf1\xc5\xe8\x48\xe6\x42\x34\x00\x3f\x70\xc2\x38\x91\xf3\xe4\x30\x86\xcf\xf3\xfc\xb9\x7c\x4f\x53\x85\x04\x54\xa2\x2a\xd5\x81\xa3\x8a\x52\x59\xda\x03\x10\x64\xe9\x1e\x18\x40\x45\x35\xc9\x11\xa1\xad\x9b\x7a\xd5\xc6\xb4\x6b\x23\xe9\x59\x3d\x4d\x75\x07\x8d\x46\x6a\x38\x70\x2f\x86\x6f\xd1\xdd\x07\xc4\x51\x9e\xe3\x3c\xe9\xc1\x9f\x30\xca\xe5\x58\x3b\x63\x12\x90\xaa\x3f\x02\xc0\xb7\x84\x9a\xf7\x73\x4d\x6c\x5d\xcd\xbe\x38\xc3\x28\xcb\x09\xc5\xc9\x3e\xee\xf5\xe0\x07\xce\x46\x1c\x0b\xe1\xde\x1e\xa9\xb7\xcf\x67\x92\x9d\xe3\x1b\xcc\xa5\xea\xd2\x0b\x44\x11\x9f\x2b\xa5\xc6\x5a\xd1\x06\x7d\xbf\x3f\x97\xf7\x6f\x3e\xea\xb0\x60\x45\xb7\xf3\xf2\xe7\xfb\x29\x56\x62\x2f\xd1\x07\x52\x08\x4d\xe5\x3f\xc7\x4c\x48\xa1\x66\x76\xc5\xb8\x4f\xee\x0b\x47\x87\x5a\x72\x8a\x05\xdb\xa0\xa8\xed\xb9\x64\xef\x10\x9f\xc2\xb7\x2c\xc3\xc5\x9e\xea\xc2\xd9\xbd\x55\xd2\x19\xa3\xb6\xb4\x67\x7f\x11\xea\x49\x91\x54\x99\x4f\xc9\x7d\x61\x7e\x25\x97\xf7\x32\x9d\x26\x47\x71\x0f\xce\xb2\x69\x72\xd8\x3b\x58\x0c\xa0\xb6\xef\xd4\x0c\xc8\xd1\x15\x91\xbb\x06\x66\x97\x8e\x92\x5c\xa9\xcb\x8a\x15\x5f\xd2\x1b\xd3\x7d\xeb\x18\xb6\x63\xa9\x59\xdc\x0e\x2b\x9e\x4c\x73\xa7\x5d\x37\x87\xdd\xd9\x27\xc9\xfd\x8b\x0f\xbf\x24\x87\x71\x0c\x0b\x13\x27\xd9\x3b\x3c\x82\xc6\xce\x4a\x62\xa8\x6c\xa6\x24\x86\xd6\xdc\x50\x3d\x3d\xc3\x3a\xa7\x87\xea\xcd\xeb\xb3\x73\xf5\xf7\xf5\x07\xf5\xaf\xb6\x5e\x14\xe5\xce\xb1\x3e\x8e\x92\x29\xdb\x41\x8f\x8a\x59\x9a\x66\xd9\x14\xc0\xbf\x69\x01\xa1\xfa\x09\x8b\xf7\xda\xb7\x67\xde\x1f\xc5\xbd\xc5\x00\x5a\xdb\xc3\x54\x37\xc6\xc1\x42\x21\x34\x45\x32\x2d\xee\x02\x30\xbd\x78\x8b\x8b\x03\x63\x9e\x0f\x20\x51\x83\xf4\x86\x8d\x0a\x5a\xbf\x45\x77\xaf\x48\x8e\x35\x6a\xf6\xb7\x71\xa3\x68\x2d\xe7\x39\x97\x64\x88\x9c\x71\x63\x1c\x00\x8a\xe1\x2a\x96\x7c\x12\xeb\x16\x2e\xc8\x88\xa2\x3c\x01\x8a\x75\x2a\xbe\x11\x35\x39\x48\x7a\x3d\xd7\x15\x0d\xf0\x7d\x45\x52\xcb\xaa\x4a\x2e\x94\xb8\x9e\xe3\xe2\x18\x84\xe5\x3b\x6b\x00\x6d\x3a\xcf\x1a\x33\xac\x39\xbd\xe2\xe6\xdc\x8a\x97\x4e\x2c\x77\x7f\x9e\xc6\x52\xb5\x3a\xc1\x12\xeb\xbc\x73\x3f\x17\xc9\x06\x8a\x61\xc0\x99\xaa\xbb\x64\x30\x34\x1f\x9a\xdc\xc0\x00\x40\xb3\x61\x50\x9e\xa8\xb7\x2f\xce\xb0\x48\x39\xd1\xab\xaa\x2d\xa5\x53\x3e\xf4\xe0\xdf\x30\x17\xea\x65\x0c\x2f\x66\x57\x13\x62\x24\x75\x7c\xd7\x3b\xdc\xbf\xca\x8e\x0e\x71\x96\xee\xa1\x34\x8b\x63\x68\x2e\x44\xd3\x49\x6f\x93\xbd\x63\x35\x2d\xc9\x70\xee\x1e\x7f\x66\x57\xd5\x37\x8b\xa7\x2f\x90\x8a\x6e\x5d\x7b\xd6\xd1\x0f\x9c\xce\xf6\xbb\x4a\xef\xeb\xaa\xb5\x06\x7d\x86\x4c\x29\x1b\x06\x47\x7f\x23\xf6\xcf\x56\x71\x81\x9c\x22\x93\x8e\x51\x7f\x43\x6e\xf0\x96\x8c\x50\x96\xd9\xab\x25\xee\xa5\x48\xd4\x32\x1b\x51\x76\x1b\x84\x50\x4b\xd5\x9a\x42\xfa\xdd\x9e\xa2\x80\x2c\x72\x86\x1f\xc5\x3b\x3b\x52\xa7\xaf\xd6\xc7\x17\x8b\xf7\xdd\xa3\xf8\x93\xec\x2d\x87\xe2\x9a\x96\xd1\x1c\x23\x9e\xec\xc5\xbd\xd8\xb7\x8b\x8a\x97\xbd\xb6\x97\x7b\xbe\xa9\x54\xbc\xdc\x2f\xcd\xa4\xf2\xe5\x81\x7d\x79\xe8\xbf\x3c\xb4\x2f\x4f\xfc\x97\x47\x45\x43\x95\xfa\xc7\x45\x4b\x95\xf6\x4f\x8a\xa6\x0e\x8c\x49\xe6\x7a\xfc\x96\xe4\xd9\x93\x7a\xdc\xd6\xe5\xd3\xb6\x2e\xf7\x5a\xfb\xdc\x6b\xed\x74\xaf\x77\xd8\xd2\xeb\x5e\x7c\xd8\xd2\xed\xd3\xb6\x5e\x9f\x1c\xb6\x74\xfa\xb4\xd6\xe7\xbf\xa2\xe9\x17\x1f\x68\xbb\x4f\xf4\x99\x87\xba\x06\x75\xc3\xb1\x56\x13\xf0\xf1\x4e\xab\x2a\x02\xa7\x8c\x66\xe2\x95\x96\x60\xab\x32\xed\xe8\x29\x64\x8a\x05\xe0\x4f\x3f\x25\x7f\x7a\x9b\xfc\xe9\x02\xac\x73\x8d\xce\x52\xa9\xca\x46\x5d\x21\x39\x46\x93\xaf\x67\x75\x4c\x58\x86\x7b\x09\x10\x32\xd3\x9b\x07\x44\x7c\xc8\xd1\x9c\xd0\x51\x2f\xd9\x8e\xa1\xd0\x41\x70\xef\x67\x72\x3a\x93\x09\xb8\xd0\x4f\x1d\xa6\x1f\xff\x41\x7f\xe8\xf4\xd4\x3f\x7b\xea\x9f\xfd\x7f\xd0\xcb\x38\x4e\x7a\x7b\xc9\xe1\xc9\xa0\xf3\x86\x8d\x6c\xa9\xce\x18\x73\x6c\xbf\x1d\x26\x7b\xa7\x83\xce\xe5\xcb\xf3\xf3\x41\xe7\x97\x71\x87\x8d\xff\x41\xdf\x30\x94\x11\x3a\x8a\xca\x5f\xfe\xcf\xe8\x1f\xf4\x1f\xb4\xd3\xf9\xe1\x87\xce\x19\xa3\x78\xbb\xf3\x97\xbf\xa8\x17\xc0\x62\x65\xf2\xe0\x16\x48\xe9\x6b\x84\xd4\xe7\xcb\x7e\xbf\xdf\x7f\xe8\xb6\xfc\x37\xe8\xec\xc5\x7f\x52\x45\xb6\xb7\xb7\x3b\xbf\x50\x8e\x53\x76\x63\xaf\xa0\xd1\xb5\x13\xd3\xdc\x0b\x44\x29\x93\x9d\x94\x51\x49\xe8\x0c\x77\xae\xf0\x9c\xd1\x4c\x67\x79\xe8\xe8\xfc\xe3\x51\xe7\xe5\x5d\x8a\xf5\xb2\xdd\x11\x63\x36\xcb\xb3\xce\x15\xee\xa4\x68\x36\x1a\xcb\x48\x41\xf8\xa8\x8a\x12\xd1\x51\x60\x50\x67\x42\x84\x44\xd7\x38\xea\xfc\x17\x9b\x75\x32\x92\x75\x04\x9b\x60\x39\x26\x74\xd4\xb9\xe5\x8c\x8e\xa2\x8e\x56\x66\x4c\x54\x1f\xcb\xb0\x06\xf1\x8e\xc1\xce\x9c\xcd\x3a\x4a\xbe\x6b\x38\xdc\xa4\x56\xe9\x20\x3a\xef\x4c\x18\xc7\x9d\x0c\x4b\x44\x72\xd1\x61\xbc\x33\x9a\x91\x0c\xd1\x14\x77\x86\x9c\x4d\x34\xa2\x0a\x84\xee\x53\x67\x82\x85\x40\x23\xac\x49\xb9\x59\x42\xb5\x0a\xa7\x4e\x66\xb9\x24\x36\xfb\xc3\xb7\xe3\xfa\xe8\xad\x7b\x82\xc8\x94\xef\xf6\x00\xb4\x4e\x22\xe3\xcb\xe8\xbc\x37\x3b\xfb\x7e\x99\xbd\x7a\x99\x8f\xb7\xac\x5e\x66\xbf\x51\x46\x3b\x41\x6a\xa5\x0e\xea\xa5\xb4\x8b\xa4\x56\xe8\xb0\x51\x88\xdc\x98\xcc\x49\xd0\xe5\xda\x58\xa3\x9b\x1e\xf6\x5e\xf3\x65\x23\x0a\x9e\x25\xda\x5b\x44\xeb\x29\x8e\x9b\x00\xed\x51\xcd\x5e\x1c\xdb\x23\x9a\xfa\xec\x7f\xcd\x03\x53\x9e\x3e\xbc\xaf\xf6\xc1\x3b\x81\x08\xfd\xce\xfa\x27\x13\x75\x2a\x00\xd7\xc5\xb5\x90\xba\xf4\x7a\x51\xda\xf7\xeb\xf2\xc0\x34\xbb\xf3\x18\xc0\x3c\x15\x83\xf1\xeb\xf0\xda\xfb\x66\x9e\xfc\x6f\x7b\x95\x6f\x7b\xee\xdb\x64\x96\x7a\xf5\xcc\x53\x75\xec\x36\xc1\xb3\x40\xc3\x36\xe2\xf5\x56\x3b\x3d\xd6\xec\xe7\x95\xc9\x77\x65\x71\xfa\x51\x3f\x15\xf8\x8a\x22\x8a\xaa\xc8\x43\x6a\x9f\xdd\x77\xeb\x56\x29\x3e\x9b\xc7\xe2\xab\xbb\x3e\x1c\xba\x54\x64\xf6\x85\x2b\xe1\x5b\x4c\x65\xb1\xca\xdb\x2a\x7d\xd6\xeb\x99\x43\xcc\xf5\xc0\x23\x8e\xb5\xae\xd6\x65\x83\x22\x7d\x5a\x2d\x9d\x5a\xd1\x05\x67\xa3\xd5\x32\xa6\x15\xdf\x33\x9d\x03\xcd\x4f\x88\x56\xed\xd0\xba\xd8\x7c\x92\xf3\x79\x6a\x4d\xda\x7f\xef\x3e\xe9\xdd\xa7\x1e\xde\x7f\xea\xee\x13\xa6\x6c\x42\x28\x92\xac\x31\x3f\x57\x6f\x68\x74\xbc\x9d\x85\x1e\xde\xaf\x6f\x2d\x84\x45\x2e\x1a\x34\x6a\xb0\xf7\x06\x80\xe3\xfa\x9e\xc5\xae\x32\x46\x42\x68\x12\x44\xb6\x21\xed\x75\x08\x40\x50\x22\xf1\x48\x4b\x26\xbd\x4f\x59\xf7\xcf\xfa\x45\x59\xfd\xcf\x6a\x25\xb0\x8d\xe7\xe4\x06\x9f\x19\xed\xe3\x91\xe6\x1d\x9a\x8f\xa2\x52\x24\x70\xf7\x53\x25\xae\x05\x2b\xfc\x94\x69\x64\xaf\x99\x20\x13\xdc\x15\x98\x13\x2c\x56\x3a\x37\x20\x98\xb0\xd6\x4b\x7b\x3e\xdf\xb5\xe6\x9b\xce\xb4\x4f\x9b\x59\x85\xd7\x62\x82\x25\x27\xa9\xf8\x89\x8c\xc6\x90\xf6\x0b\x47\xc3\x33\x79\xe9\x7c\x0e\xbd\x81\x49\x47\x93\x44\xa7\x5b\xd8\xe6\x61\xf8\x78\xa1\x3d\x96\x81\x84\x9a\x8f\x26\x84\x06\xe6\x07\xba\x0b\xe8\x77\x51\x7c\x58\x65\xdd\x6e\x14\xef\x1d\xc2\xe8\x30\x84\x3d\x7b\x1f\x18\x2a\x9b\x7e\xc3\x6e\xa1\xe8\xa3\xa2\x65\x74\x89\x9a\x2d\xf7\x1a\x2d\xa3\x96\x96\xc5\xb2\x96\xe3\x50\x35\xee\x84\x45\x29\x9e\x42\x58\x81\x5a\xbb\x21\xda\xf8\x9f\x9e\x78\xa1\xdb\x7e\x1c\x2b\xa4\x3d\x27\x10\x99\x60\x21\xd1\x64\x5a\xf3\x05\xcd\x70\x22\x35\x57\x58\xf0\x74\x67\x07\x97\xae\x9f\xe2\x75\x97\x86\x4b\x33\x10\xae\x90\x71\xde\xf0\xae\xa7\x62\x95\x83\xb2\xa6\x05\x2d\x91\x24\xe9\x5b\x53\x6b\x45\x15\xc3\xa2\xcd\x1d\xbc\xea\x4d\x51\x61\x24\x66\x57\x92\xa3\x54\xa7\x35\x9a\x80\x30\x92\x4c\x51\x2b\x08\x17\x2e\x15\x6a\x49\x47\x1c\xec\xc5\x05\x09\xa3\xc3\x05\xac\x7c\xea\x9d\x2c\xff\x74\xe4\x3e\x1d\xd4\x3f\x1d\xb8\x4f\xfb\xf5\x4f\x7b\xee\xd3\x69\xfd\x53\xbc\xb4\xd6\xc9\xd2\x2f\xcb\x91\x38\x58\x8a\x79\x89\xc2\x51\xed\x4b\xec\x7d\xf9\xfc\x9e\x8d\xd6\x1b\xa0\x97\x49\x56\x69\x6f\x09\xa2\x43\x32\xb2\x39\x47\xbe\x9e\x9e\x52\x66\x37\x4f\x8c\x0e\xa7\x63\x68\x33\x8c\xa7\xfe\xb3\xb2\xaa\x13\x20\xe4\x4c\x9f\x6d\x47\xca\xfe\x49\x2e\x4d\xbc\x82\x09\x42\x28\x22\x0b\x4c\x2c\xd1\x00\xde\x60\x3e\x4f\xee\x4b\x30\xf7\x84\xa6\x6a\xc1\x1a\x25\xf7\x8c\xe2\xa4\x07\xe5\x2d\x4b\xf6\xa0\xae\x95\xec\x43\x55\x2b\x01\x62\xc6\xa7\x9c\x08\x42\x47\xf9\xbc\x93\x33\x3a\xea\xe8\x7e\x75\xe4\x18\xc9\x0e\x11\x9d\x19\xcd\xc9\x35\xd6\xce\x00\x26\xc7\x98\x77\xca\x1c\x89\x1d\x62\xd6\xc9\x8e\xb9\xa0\x18\x2c\xf4\x7f\x4f\x5e\xfc\x64\xf3\x3a\xe7\x6f\x38\x0d\x8a\xc0\x88\xa7\xe3\x8f\x98\x4f\x12\x00\x8a\x1d\xec\x0f\x4a\xbb\xea\x41\xc1\xb8\x53\x0d\x13\x40\xf5\x91\x06\xf5\xee\x0c\x8b\xd4\x68\xf7\xc9\x76\x0f\x8a\x31\xe3\x52\x5f\xff\xeb\xf8\x1e\xaa\x01\xd0\xaf\x2e\xef\x53\xa2\x2a\xbf\xc3\xb7\x9d\xff\xd2\x41\x85\x23\xce\x6e\xe5\x38\x89\xe2\x83\x13\x38\x65\xd3\x99\x49\xcb\x9a\x80\x93\x83\xf8\xf0\x64\xff\x18\x40\x8e\xe8\xb5\x0e\x78\x37\x09\x4a\xcb\xaa\x0b\x68\x81\xbd\x61\xa2\xf3\x9c\x8e\x70\xae\x14\x8b\x65\xf0\xf6\x4f\x4e\x0e\xf6\x63\x07\x6f\xcf\xc1\x7b\x81\x72\x32\x64\x9c\x12\x54\x42\x7c\x31\x26\x29\x1a\x31\x07\xad\x1b\xc5\x47\xbd\x0a\xb8\xbd\xe3\xde\xc9\xf1\xc9\x5e\x01\x6e\xdf\x81\x7b\x9d\xe7\x84\x32\x22\x4a\x60\x3f\xb1\x99\xd0\xd9\x61\x0b\xd4\x7a\x35\x50\xbd\xd3\xc3\xd3\xde\x41\x01\xea\xc0\x81\xfa\x88\xef\x90\x07\xe7\xc3\x98\xe4\x28\xc3\xf9\x74\x4c\x90\xd7\xcf\xbd\xa3\x0a\xb4\xde\xe1\xe1\x7e\xef\xe8\xb0\x80\x76\xe8\xa0\x7d\xc0\x94\x8a\x79\x7e\x83\x2a\x3d\xfd\x30\x66\x98\x92\x3b\x0f\xb9\x83\x1a\xb8\xde\xfe\xfe\x91\x23\xdb\x91\x03\xf7\x9c\x93\xdf\x18\xf5\x20\x5d\x20\xda\x79\x4e\x25\xa3\xa4\xa4\x5b\xb4\x57\xed\x6a\xef\x20\x3e\x8d\x7b\xa7\x05\xb4\xe3\x65\x5d\x55\xb0\xce\x08\xf6\x46\x20\xea\xc5\x87\x55\x50\xfb\x87\x87\x27\xa7\x47\x05\xa8\x93\x95\xe3\x79\x86\xf2\x1c\xf9\xcc\x71\x58\x23\xda\xde\xe1\xf1\xd1\xb1\x03\x76\xba\x0a\xaf\x9f\x99\xc0\xcb\xd1\x3a\x3d\x3d\x39\xf4\xb8\x36\x5e\x89\xd6\xf3\x99\x90\xc4\x63\x8c\xfd\xde\x71\x75\x0e\x9c\x1c\x1e\xc4\xb1\x03\xd6\x5b\x86\xd6\x6b\x9a\x11\x44\xd1\x94\xe5\xc4\xef\xe4\x71\x7d\x46\xed\xef\x9f\xee\x3b\x68\xe5\x0c\xb0\xd5\x4b\x78\x3f\xa3\xf4\x5a\x30\x7a\x43\xf2\xdc\xef\xea\xc1\x7e\x0d\xde\xde\xe1\x49\x09\xaf\x9c\x02\xaf\x72\xc6\x49\x56\x63\x8d\x57\x1c\xd1\x94\x88\x94\xf9\x08\xd6\xba\xbb\x7f\x7c\x70\xe0\xa6\x54\xef\x60\xf5\x14\x65\xf9\x6c\x72\x35\x13\x3e\x7e\xb5\xfe\xee\xed\x1d\x1e\x96\xf8\x95\x33\xe1\xfd\x98\x30\x7f\xae\x23\x9e\x33\x29\xbd\x9e\xee\x9f\x56\xd9\xf6\xf8\x74\xef\xe4\xa8\x44\xac\x9c\x04\xef\x18\x97\xe3\xce\x0b\xc4\x59\x4e\x7c\x02\xbe\x62\x5c\x76\xfe\xae\x3e\x96\x40\x0f\x0e\x1b\x40\x8f\xf7\x4a\x4e\x59\x3a\x17\xce\xb0\xe4\x4c\x99\xf7\x4e\x16\xed\x1d\x57\x21\x1d\x9d\x9c\x1c\xc7\x3d\x07\xa9\x9c\x0a\x6f\x49\x3a\x26\x23\x44\x4b\x60\x2f\xf3\xce\x07\x24\xfc\x69\x75\x5a\x9d\xef\x47\xc7\x07\x07\xfb\x25\xd1\x96\xce\x84\xb7\x78\x32\x1d\x7b\xdc\xd6\x8d\xe2\xc3\x2a\x7b\x1c\x1d\xee\x1f\x1c\x3a\xe6\xdd\x8b\x3d\x48\x94\x62\x21\x8c\x23\xd7\x32\x08\x46\x52\x56\x78\xad\x36\x41\x8f\x0e\xf7\x0e\x62\x27\xd4\xf6\xca\x99\xf0\x77\x24\xc6\x84\x8e\x94\x7c\xf5\x28\x46\xf5\x39\x0f\x07\xec\xa8\xca\x67\x47\x07\xa7\x07\xa7\x25\x30\x6f\x29\x60\x39\xe3\x28\xf3\x98\xc3\x03\x5f\x82\xab\xf5\xf3\xe0\xe8\xe0\xc0\x89\xb4\xbd\x72\x1a\x9c\xe9\xa0\xce\x54\x76\xd8\xb0\x63\xb8\xd5\xe7\xdf\x1f\x59\x75\x51\x88\xeb\x03\x71\x70\x78\x7a\xe4\x24\xd2\x5e\x39\x19\xde\x22\x21\x50\x3a\x9e\x09\x2c\xa5\x37\x20\xef\x90\x18\xeb\x09\xdb\x3d\x43\x37\x24\x13\x15\x8c\x8f\xf6\xaa\xb0\xf7\x0f\x0e\x8e\xdc\x82\xb3\x77\xb8\x6a\x68\x7e\x44\xb9\x24\x4a\x67\xf3\x87\xba\x86\xea\xde\x5e\x2f\x2e\xc1\x1d\x79\xa8\xf2\x79\x8e\x68\x56\x42\x7b\x7f\x9d\xa3\x31\x9b\xa0\xce\x0b\x22\xe7\xde\x32\x11\xd7\x10\xec\xc5\x47\x3d\xc7\x85\x7b\xe5\xdc\x28\xea\xfb\x8b\xff\x8c\x08\xdd\xf1\xdd\x9f\xf1\x70\x88\xb9\x60\xb4\xa3\xe3\xc9\x3c\xf8\xb5\xf9\x12\x9f\x9e\x94\x82\x70\xaf\x9c\x2f\xff\x89\xa9\x9c\xa5\xd7\x73\x6f\x79\x64\x5c\xea\x1e\x78\x9c\x59\x87\x75\x70\x58\x0e\x53\x39\x5f\xde\x73\x3c\xf2\x99\xf2\x0d\x12\x9d\xbf\xe1\x91\xbf\x0a\xed\x1d\xd4\x61\xed\x1f\x9c\x9c\x38\x95\x22\xf6\x54\x9e\x1b\xe4\xcb\xd3\xb7\x24\xbf\x45\xb3\x6b\xec\x4d\x98\x38\xae\x72\xe5\xe1\xe9\x69\xaf\x1c\xe2\x7d\x6f\xc2\x28\x19\x4c\x05\xf1\x50\x7b\x9e\x5f\xcd\xfe\x35\xc3\xfc\x5f\x33\x0f\xe0\xde\x7e\x15\xb9\xc3\xc3\x23\x6f\xd2\xec\xef\x55\xf4\xb1\xb7\xf8\x8e\xa4\xde\xb4\xf9\x38\x4b\x2b\x0c\x18\x1f\xd7\x80\xed\x1d\xf5\x7a\x8e\x6a\xfb\xfb\xcb\xb5\x8a\x57\x1c\x0b\xea\xcb\xab\x93\x5a\x3f\xe3\xd3\xd3\xbd\xb2\x9f\xab\xd7\x8c\x0b\x94\x72\x34\xc1\x54\xfa\x00\x8f\xab\xac\x77\x70\x7c\x7a\x74\x52\xa2\x76\xb8\x12\xe0\x1b\x65\x58\xfc\x88\x51\xea\xc9\xf9\xb8\xc6\x21\x07\x47\xa7\x07\x7b\xe5\xa8\x1e\xad\x04\xf8\x9f\x88\x0a\x24\x6a\xb3\x23\x3e\xac\x43\x3c\x8e\x4b\x4d\x76\xff\xd8\x93\xf7\x42\xb0\x19\x27\xbe\x98\x16\xc8\x97\x5c\x35\x40\x87\xc7\x87\x27\x25\xa0\x93\xe5\xc3\xf0\x37\xc2\x47\x84\x12\xd4\xe8\x6c\x6d\x51\x3b\x38\x38\x39\x38\x76\xc2\x70\xbf\x9c\x0e\x05\x00\x8f\xeb\xd4\xc4\x92\xbe\x26\x5b\x93\x52\x07\x07\xc7\x27\x07\x6e\x59\x3b\x28\xa7\xc3\x5f\x31\xe3\xa3\x9a\x2e\xa0\xe5\x76\xe7\x62\xca\x09\x1d\xf9\x53\xac\xa6\xce\x1e\xec\x9f\x9e\x94\xa3\x7b\xd0\x5b\x21\xfa\xdf\x4f\xd0\xd8\xc7\xee\xf0\xb4\x06\xe9\x60\xbf\xd4\x2e\x0e\xfc\xf9\x70\xc5\x91\xb8\xf6\xd0\x3b\x47\x39\x26\x23\x5f\x15\x38\x39\xae\xc1\xea\x1d\x1f\x94\x58\xed\x3f\xaa\x5f\xbc\x25\x68\x42\x7c\xcd\xa7\x86\x5b\xef\xf8\xa8\x5c\x7a\x0f\x0e\x96\x6b\x66\xef\xd1\x75\x55\xbc\xc5\xb5\xd5\xed\x20\x3e\xda\xf3\xba\xb9\x7a\x3a\xbc\x25\x94\xe2\x86\x1a\x5a\x93\x72\x07\x71\x1c\x1f\x97\xc8\x79\xab\x85\xaa\x2d\x98\x44\xbe\x1c\xc9\x7d\xfe\xad\x23\xb7\x7f\x7a\xd2\xdb\x2b\x39\x64\xd5\x32\xf1\x22\xc7\x37\xb8\xd2\xd5\x6e\xd4\x3b\xe9\xd5\xc0\xc5\xbd\x72\xd5\x39\x38\x59\xa2\x30\xfe\x5d\x69\x55\x15\xc6\x3d\x3d\xae\x99\x9a\x47\x87\x87\x4e\x5d\x3c\x28\x27\x81\x99\xdd\xde\x14\xe0\x79\x53\xb9\xa8\x75\xf1\xf8\xf4\xf0\xd8\x4d\xd1\xc3\xb8\xae\x8f\x0d\xa0\x49\xde\x8d\xb3\x0b\x67\x77\xd7\x37\x0b\x4a\x9b\x1e\x40\xe0\xcc\xf3\xe8\x72\xb0\x64\xcb\x28\x2a\x2b\x44\x92\xbd\x61\xb7\x98\xbf\x40\x02\x07\xee\xc2\x01\x53\xc8\x01\xaa\xa7\x0f\x97\x9e\xe7\x8b\xa2\x09\xae\x02\x89\x08\x4d\xf3\x59\x86\x45\x80\x4d\x9e\x7a\xc1\xb8\x5c\x89\x7e\x05\x63\xe0\x7b\x21\xec\x63\xe9\x80\x58\xda\x23\x07\x43\x95\xff\xd1\x5c\x10\x13\xf9\xa0\x6a\x9d\xab\x40\x7d\x86\x23\x8e\x6f\x30\x57\xe8\x27\x78\xc3\xcb\x96\xaa\xce\x20\x32\xc1\xb9\x3e\x9d\xe1\xfb\x83\x5a\xf7\x3b\xbe\xbc\xaf\x67\x8e\x85\xc4\x3c\x43\x8f\x47\x04\xe8\xb8\xc8\x36\xcf\x71\x0f\x82\xcc\x64\x0f\x67\x4f\x80\xb3\x29\x25\xc5\xb7\x71\xed\xa4\xbb\x12\x8a\xa2\x9b\xda\x9d\x50\x25\x7e\x60\xe0\x5f\x97\x56\x43\x3d\xd9\x8e\xa1\x44\xe2\xda\x04\x31\x4f\x91\x1c\x9b\x5f\xcb\xaf\xa3\x0c\x80\x49\x9c\xdd\xce\xde\xea\x9b\xde\xc7\x90\x01\xd8\xd5\x37\x6e\xe8\x7d\x10\x7b\xa5\x95\x78\x39\x99\xca\xb9\xbb\x87\xa3\xbe\xa9\xa6\xf7\x88\xb6\xc8\x30\xa0\x3f\xc4\xc5\xc5\x21\xf8\x92\x76\x7b\x83\x2d\xd4\x2f\x13\xb1\x9b\x56\xa0\x86\x5f\x86\x97\xe0\x5c\xe0\x0e\xea\xcb\xf2\x2e\x92\xe9\x4c\x8c\x03\x73\x58\x48\x9a\xae\x21\x45\xe2\x05\xbc\x1c\x78\x37\x96\x98\x9d\x96\x9d\x9d\x00\x5f\x62\x6f\x0f\x8a\x88\x37\x48\xc8\xfe\x76\xac\x6a\x6c\xb8\xe3\x28\xba\x19\xe1\x38\x95\x8c\xcf\xbb\x98\x4a\x3e\xff\x06\x38\x04\x68\x0a\x7c\x64\x2f\x15\x3e\x4b\x86\x14\x68\x64\x23\x93\x22\xa6\x7d\x7c\xf5\x25\xcd\x53\x73\x0b\x09\xc7\xd3\x1c\xa5\x38\xd8\xfd\x3f\xff\xd8\xdd\x85\x00\x84\x50\xf6\x31\x4d\x59\x86\x7f\x39\x7f\xed\x50\xf1\x2e\x89\xf7\xc0\x87\x6e\x04\x2a\xac\x11\xe0\xf0\x99\x4c\xca\xa1\xc6\xf5\x51\xde\x6c\x24\xcc\xe1\xa3\xee\xd8\x66\x38\xf8\x5a\x83\xe0\x4d\xbf\x2a\x46\x6a\xf6\x31\xfa\x13\x9a\x5c\xcd\xf8\x08\xf3\xe6\xc5\x6c\x9b\xf5\x76\x26\x25\xe6\xdd\x09\xa6\xb3\xaf\xd7\x57\x13\xb7\xb3\xec\x0e\x3b\xce\x66\x65\x60\x54\xe3\xab\x59\x7f\xdd\x49\xb1\xa6\xe4\x31\xc0\xf5\x52\x6e\x4a\xd8\x6b\x5f\x68\x9d\x63\xad\x90\xf7\x6e\x89\xaf\xd7\xd4\xbb\x8c\x26\xe6\x2d\x7c\x78\xb8\x1c\x84\x7a\xa5\x0d\xda\xf6\x82\xb1\x01\xa1\x1b\x09\x21\x2a\xae\x2a\x37\xcf\x96\x8d\xdd\xa1\xb6\x7e\xbf\x4f\x9f\x75\x7b\x89\xff\x02\x3d\xeb\x25\xf4\x2f\x48\xbd\xa6\x3f\xa8\x87\x58\xab\x1b\x2b\x47\x1e\x8e\x98\x64\x3f\xb3\x2b\xf1\x8a\xf1\xf2\xec\x9c\x3f\x92\x78\x67\xc7\x62\x46\x32\x10\xda\x5b\xec\x0c\x81\xbd\x3b\x00\x3e\x32\x7d\xeb\xa5\x00\xf0\x5e\x59\xd6\x73\x1d\x9a\x25\x92\x7b\x47\x89\xc4\x03\xb2\x58\x84\x9b\xb1\x9c\xe2\xe3\xf6\x9b\x77\x5d\x69\x59\x9c\xca\xd2\x85\x7f\xff\x03\x23\xa5\x00\x9c\xb0\x0c\xe7\x4b\xee\x65\xd6\x1d\xd1\xfb\x5c\x21\x34\xd7\x91\x3e\x31\xfd\xbe\x06\x64\x20\xb4\x5e\xac\x96\x13\x3d\xf9\x97\x55\xf9\x03\xde\x36\xab\x8f\xee\x75\x87\xa4\xba\xb7\xf8\x95\x96\x39\xbd\xfb\x8c\x2b\xba\x10\xf0\x11\xf4\x44\xb1\xf7\x5a\x47\xbe\x73\x7b\x08\x0c\x15\xe7\x09\x05\xf9\xcd\x9e\xb8\xd4\x37\x66\x24\x31\x34\x77\x5d\x24\xb1\x32\x75\xb0\x6e\xb0\x21\xa1\x78\x5a\xbf\x31\xd6\xa8\xf1\x3c\x0d\x2b\x6a\x3d\x4f\x4b\xf3\x43\xad\x71\xcf\xdc\xeb\x09\x92\xe9\x38\xd8\xfd\x3f\xd1\x9f\xff\xb1\x1b\x44\x7f\x0e\xff\xe7\x6e\x78\xd9\x1b\x24\xc5\xf7\x45\x68\x6f\xc3\x7a\xad\xf0\xd7\x07\xd0\x9a\xb7\xe2\x60\x7b\xf3\x4c\xeb\x3d\x63\xa6\x37\xca\x22\x92\x33\x8e\xf2\xbf\xab\xc7\xa2\x6b\xee\xed\x4f\xfa\x79\x53\x79\x40\x6e\xe6\x5d\xa5\x00\x4c\x08\xe7\xac\x76\xb3\x60\xf5\xdb\x8a\x5a\x7f\xc0\x39\xf0\x2b\xbb\xea\x66\x78\x9a\xb3\xf9\xa4\x26\x09\x7f\xdf\x79\x50\x31\x01\xea\x48\x81\xea\x6d\x20\x03\x58\x7e\x2c\x2e\x1c\x7c\x3f\xc5\x34\xd9\xee\x6d\x34\xe6\xd5\x66\x76\xcb\x9f\x5d\x1b\x56\xf4\x0d\x88\x85\xcd\x0e\x42\x54\x7b\x24\x5a\x4e\xec\x14\xe2\x9c\xdd\x60\xce\x49\x66\x63\x5f\x8c\x10\xf8\xaa\x61\x83\x45\x87\x59\x5e\xb3\x07\x9d\xbd\xef\x0f\xbb\xbd\x50\xb5\xc0\x3c\x5c\x16\xee\xa5\xf5\xb2\x33\xaf\x5a\x33\x0a\xd4\x7d\xb3\x2a\xd9\x8d\x39\xd1\x5a\x1e\x67\x5d\x1a\x04\xea\xd7\xb5\x3e\x11\xd0\xac\x1d\x96\x8e\x8f\x45\x08\x91\xc9\xf6\xb4\x1a\xa9\x06\xda\x55\xd4\x96\x7a\x68\xea\xd5\x1e\xbf\xdd\xf2\x7e\xa1\xac\xd6\x58\xa9\x7a\xa1\x76\xf1\xdc\x9e\x21\x89\xfb\xdb\x71\x79\xe5\x30\xeb\xe3\xc8\x84\xf1\x3c\x97\x01\xea\xf6\x42\xa3\x75\x59\x5c\x22\xe1\xf5\x14\xf2\x42\xc5\xf4\xdf\x6e\xf1\x9d\x1d\xb6\xb3\x53\x0d\x9d\x63\x61\xa4\x83\x43\xdf\x0f\x03\x90\xa1\x39\x08\xa3\x8c\x0c\x87\x41\xb5\x10\xaf\x17\x52\xab\xe0\x5c\x80\xf0\x87\x78\x67\x27\xa8\xe0\x1b\x2e\xec\xf1\x0e\x4f\x34\x48\x38\x51\x8b\x8c\x58\x2c\xea\xe6\xd7\x63\x01\x62\x7a\x1e\x91\xe1\xb0\x3b\xd4\x59\xba\xba\x88\x66\x5d\x43\x83\x3f\xa8\x4c\x20\xc3\xe1\xb7\x24\xdb\x15\x3a\xcb\x6e\x9d\x35\x39\xc5\x12\x22\xba\xd8\x26\xf9\x04\x44\xe8\x24\x64\xea\x1d\x32\xd9\xc8\x00\x11\x36\x29\xb4\x7a\x99\xd9\xfc\xd0\x03\xa8\x20\x9b\x25\xe1\x06\xf3\x2b\x26\xf4\x22\xe9\x60\x56\xe7\x59\x84\xff\x35\x43\x79\x00\x54\x9d\xc8\x24\x32\x2d\x12\x9a\x85\xb0\x68\xf2\xf1\x2a\x26\x3f\x9a\xaa\x51\x60\xf4\x78\x9d\x22\xa1\xf5\x66\x4e\x01\x45\x3a\x45\x93\xba\x7e\xd2\xbc\x26\xbb\x11\x1f\x67\xcf\xd6\x75\x87\x9c\x4d\xba\x28\x43\x53\x65\x6f\x63\xa3\xea\xac\xb8\xea\x38\x67\x29\xca\xbb\x42\x32\x8e\x46\xf8\x6b\x5c\x31\xbf\xfa\x62\x79\x13\xb4\xb9\xec\xab\xa7\x31\x7b\x94\x53\x0c\xf1\x6b\x91\x20\xa1\x10\xd4\xb5\x3b\xe5\x95\x59\x78\xd7\xf0\xa2\xdf\x2f\x51\xb6\xf4\x7d\xaa\xb6\xce\x02\x0a\xbf\x90\x7f\xab\x60\x19\xea\x5e\x14\x06\x50\x86\x50\xe9\x68\xb0\x78\x53\x38\x33\xb9\xb0\x67\x46\xcd\x73\x8e\xa8\xf7\xc8\x67\xb4\xf6\xd1\x9e\x7a\x35\xba\xff\x98\xdd\x7e\xc8\x11\x7d\x6b\x46\x5c\xad\x93\xc8\xbb\x72\x59\x8f\xb5\xfd\xf6\x33\xbb\x52\x25\xcd\x25\xa3\xaa\xde\x4b\x4d\xa2\xf5\x6a\xbe\xb4\x8c\xa8\xeb\xb6\x9e\x1d\x29\x31\x5b\xba\x82\x96\x45\x9e\xe9\xe2\x20\x01\x76\x98\x16\xa1\xee\xd9\xc6\xf7\xa6\x6b\x49\x04\x11\x74\x6b\xdf\x97\xb8\x41\x9d\x63\x35\x8e\x8a\x97\x75\xc9\x5e\x71\x77\xfa\x81\xb9\x00\xf0\x57\x76\x15\xe9\x31\x0c\xdc\xdd\xe8\xb6\x40\x6f\x6f\xeb\x8a\x63\x74\x6d\x5e\x1f\x95\x17\xa5\x6b\x38\x47\x10\x47\x32\xee\xe3\x28\xd5\x86\x54\x2f\x84\xb2\x5f\x5d\x10\xd5\xf7\xf0\xe1\x01\xbc\xd0\x47\x79\x29\x93\x1d\xdd\x4e\x87\x50\x4d\xe5\x92\xc5\x4a\x16\x32\x4c\xa6\x3f\xa4\x9c\xe5\xf9\x47\xa6\x5f\x6b\xec\xd1\x15\x9f\x4d\x65\x00\xac\x27\xc8\x62\xdb\xdb\xab\xe1\xd5\xdb\x2b\x3a\xd8\x3b\xf4\x7a\x98\x23\x5a\x74\xb0\x77\x98\xa0\x3e\x8e\x04\xa6\xd2\x47\xc2\x63\x00\xe4\x2e\x98\xdf\x3b\xf0\x69\xd0\x3b\x4d\x8a\x56\x4e\x55\xf7\x7b\x65\xf7\xf7\x42\x28\x9a\xfd\xef\xd5\xfa\x9f\x23\xda\xf9\x95\x5d\x81\x5a\xbb\xb6\xef\xa2\xbd\xef\xa6\xed\xbd\x75\xee\xac\x87\x97\x97\x3d\x78\x34\x80\x97\xbd\x3d\xd8\x3b\x1d\x0c\xf4\x1d\xf6\x19\x57\x65\xa0\xd1\x72\xbe\x1d\x1e\x25\xc3\xe2\x43\x0c\x01\xc5\xb7\x60\xbb\x6f\xef\x7e\x36\xe2\x25\xbc\xb7\x63\x70\x64\x86\x60\xe1\x3a\x5d\x67\x5f\x3e\xa3\x0d\xe6\x3d\x59\xc2\xbb\xe6\x63\x59\xd7\x18\xf9\x45\xf5\x93\x44\x7a\x0e\x78\xcb\x38\x84\xbe\xce\x8c\x47\xb2\xf2\xc5\xb9\xf6\x8c\x5f\x54\x8d\xb4\x33\x7c\x2b\x13\x4f\x3f\x14\xc2\x5b\xeb\xb3\x8e\xbb\xe2\x0a\x77\x1d\x38\xee\x3a\xa8\x4e\xae\xb8\x95\xb9\x6a\x93\xcb\x8c\x6f\x9d\xbd\x0a\xf9\xeb\x71\x57\x9d\xdb\xed\xf5\xe3\xcb\x39\x2f\x5e\x8f\xf3\x62\xd8\x3b\x30\x2c\x07\x75\xd7\x1b\xb7\x8d\xaf\x6c\xb9\x36\x17\x1a\x9f\x3c\x19\x51\xff\x56\xf6\x51\x7f\x59\xc0\x4a\x37\x1a\x68\xe8\x11\x34\xab\x71\x44\xc4\x47\x2c\xa4\x1a\x3c\x73\x81\xaa\xa3\x40\x10\xc3\xb8\xe6\x95\x11\x6b\x68\x3c\x53\x34\xc2\xbb\xe8\x4a\xe8\xdd\xd2\x6f\x75\x7b\xc0\x69\x14\x95\x00\x7f\xf7\xc6\x0b\xef\xd7\xef\x46\x4c\x32\x97\xcb\xad\xd5\x7b\x5e\x7d\xa9\x35\xb5\x62\x5d\x36\xbe\x3e\xfd\x51\x24\xe6\x34\xd5\x4b\xff\x7b\x2b\x8f\xf8\x10\xdc\xa0\x8e\xf5\xad\xb6\xb5\x21\xc5\xcb\xab\xe1\x70\xc3\x53\x1c\x6e\xfc\xec\x49\xef\x56\x3f\xfb\xca\xf1\xfe\x52\x5e\xf7\xf2\x40\x91\x1d\xe0\x9a\xab\x7c\xe5\x65\xa8\x0e\xcd\xca\x21\xf2\x6e\x3a\x26\x79\xb6\x41\x27\x8b\x43\xea\xb6\xe2\xef\xd6\xd5\xfb\xa9\xcd\x04\x56\x33\x54\x50\x4e\x90\x30\x92\x38\xc3\x29\xcb\x70\x66\x53\x86\x81\x10\xda\x2a\x3f\x5f\xbc\x7f\xd7\xb2\x07\x6b\x4a\x35\xdc\x12\x5b\x92\xcf\xef\x71\x5f\x55\xb2\x0a\x91\xdd\x6a\xd7\xe5\xc3\x85\x11\xc5\x32\xbc\x77\x0b\xd1\x86\xe1\x0c\xed\x03\xf1\x47\xe2\xb3\xb5\xbb\x27\xc5\xae\x66\x13\x8e\x97\x5d\x08\x3d\x21\x77\x84\x8a\x5d\x25\x6f\xf4\x79\xa9\xdf\x79\xc3\xaa\x3c\xaa\x74\xef\xa4\x61\x35\xb0\xa3\xe6\xc4\x5d\x4f\x54\xfa\xe7\xa7\x9c\xec\x6c\x08\x48\x45\xa5\x0b\xf2\x9b\x4e\x3f\x2c\xcb\x24\x99\x75\x4e\x55\xac\x5d\x7e\xae\x87\x6f\xd5\x0e\x78\xd7\x8b\x03\xbd\xdd\xba\x08\x61\x31\x0e\xad\xe0\x8b\x8f\x6b\x01\x77\x23\x5a\x80\xce\x89\x90\x1f\xd9\x05\xe3\x75\xeb\xb3\x98\x9c\x65\x0d\xeb\xdc\x7c\xd1\x8e\x4c\x51\x5e\x01\xbc\xd0\x05\xc1\xd3\xa7\x96\x14\xbb\xb8\xbe\x2d\xf2\xd5\xa2\x41\x9a\x6b\x21\xa3\x67\x44\x4c\x88\x10\x4f\x8f\x40\xa8\xf5\xd6\xe4\xee\x5c\xb2\x31\xf2\xa9\x0e\x97\xdf\xdf\xb9\xee\xe6\xa3\x47\xc6\xd6\xb5\x5f\x4d\x25\x22\x2e\xc6\xec\x96\xd0\x51\xe9\x48\x2e\x52\x28\x6c\xf7\xe0\x94\xb3\x09\x93\xf8\x69\x36\xcf\x17\xb2\xc9\x9d\xcd\x63\x6d\x80\x7d\x58\x9d\x65\x66\x34\xcb\xee\x44\xc5\xbe\x7f\x18\xd9\xee\x14\x7a\xf9\xbe\x33\xd4\x2b\x66\xc4\x61\x61\x45\x1c\x36\x8c\x88\xa0\xd5\x44\x0f\x77\x76\xc0\x2b\xc6\xaf\x48\x96\x61\xaa\xad\xb0\x87\x87\x40\xf6\xc1\x7f\xb1\x19\xef\x3c\x7f\xf1\xa6\x23\xd9\x35\xa6\x9d\x8c\x61\x93\x7a\xcb\xdc\x4a\x3d\xc5\x5c\x71\xb1\x22\x99\x64\x1d\x8b\x5a\xc7\xdf\x65\x00\x56\x47\xf7\x06\x2f\xb8\xb7\x57\xbd\x1b\xb3\xe5\x1d\x93\x9d\x0f\xb6\xe6\x99\xc7\xbe\x99\x97\xc0\x53\x2e\x0a\xb3\x7d\x6d\x33\xe4\xd0\x58\x21\x1b\x3b\xd1\xbd\x39\xa5\x43\xae\xf4\xee\xda\x10\x91\x7c\xc6\xf1\x57\x74\xa5\xb7\x4c\x88\x4f\x11\x17\x1c\xa7\xaa\x5f\x28\xcf\x59\x6a\x6e\xf2\x58\x79\x58\x39\x35\x19\xf6\x77\xd5\x08\x13\x81\xbb\xfa\x00\xf7\xef\x1e\x5f\xb2\x72\x6d\x7e\x3c\xdc\xa9\x3c\xc5\x3c\x29\x33\xb7\x36\x0f\x33\xc7\x76\x99\x7a\x5e\xd2\xa6\x75\xd9\xf4\x68\x67\x37\xbb\x2a\x60\x57\x65\x04\x48\x75\x6a\xd9\xe0\xde\x92\x33\xa9\x4e\x7e\x7f\x50\xc2\x48\x8e\x31\x6d\x49\xcc\xae\xb8\xde\x6e\xe0\xf9\xcd\x7a\x5b\x77\x91\xb0\x19\x2e\x0e\x43\xb3\x9b\x54\x5a\x60\x4a\x21\x29\xbb\xd7\x34\xa4\x5a\x23\x9b\xfc\xfe\x96\xbf\x01\xc4\x11\xc9\xea\x56\xd6\x86\x4b\xb5\x98\x4d\x26\xe8\x6b\x86\x6e\xae\xa7\xfe\x11\xf1\xf2\x6e\x8a\x68\x73\x93\xa5\x99\x87\xc3\x3a\x12\xf4\x6e\xc4\x85\xd9\x8c\x88\x34\x21\x0c\x84\x9f\xd9\xd5\x85\xe9\x73\xb1\xc0\xa8\xd6\xfb\x7d\xfc\xf0\xe0\x99\x1e\xd8\xa6\x3a\x12\x44\xd4\x3d\xf4\x6b\xc3\xef\x5b\xf7\x26\x65\x92\x0c\xe7\x05\xe9\x5e\x8c\x11\x1d\xe1\x00\x94\x3d\xaa\x27\xa4\xd8\x50\x9e\xa8\x75\xb5\x3b\x32\x4a\xe7\xff\x4b\xba\xfe\x0a\xb7\xc8\x17\x57\xea\x1f\xd5\xbc\xfd\x3a\x56\xa8\x7d\x5c\x86\xd4\xe7\xd6\xbe\xf5\x12\xff\xc7\xd6\x41\x3d\xd5\xb3\x5c\x7d\xb5\xe6\x62\xae\x67\x58\xa6\x8e\x2a\x6d\x44\x99\x7b\xdf\xa4\xc2\x69\x5d\xdb\xbf\xb2\x2b\x6f\x0b\xc8\x2a\x50\x85\xf7\xdc\xf9\xc5\xb5\x43\x4d\xd8\x0b\x59\x4d\x72\x3e\xe7\xb6\xae\xea\x9b\xc7\x85\xbe\x79\xdc\xd0\x37\xd7\x50\xff\x2e\x24\x9b\x76\x7e\x66\x57\x55\xa5\x6f\x23\xdd\x53\xf5\xa0\xf3\x2b\xbb\x12\x11\xd8\x5c\x57\x3c\xb6\x1e\x6b\x1d\xba\xf1\xe4\xa1\xfb\x92\x7b\x78\x8d\x51\xdb\x87\x32\x1a\x62\x99\x8e\xcf\xd1\xed\x99\x9a\x01\xc4\xf0\x5f\x61\x15\xd8\x8a\x26\xce\x20\x28\xb6\xba\xc2\x48\x91\x5a\x0d\xb8\xde\xd5\xa5\xd8\xab\x0b\xa0\x5e\x7a\x84\xbe\xa3\x84\x0c\xe7\x01\x0a\xdd\x7e\xe1\x51\xd1\xec\x29\x94\xd5\x8d\xc2\xd3\xda\xae\x4a\xaf\x07\x65\x6d\x3f\xa5\xd7\x4b\x64\x8d\x95\x8a\x3c\x90\x25\x37\x9d\xae\xb7\x09\x72\x14\xc2\xa0\x75\x17\xa4\x61\xbf\x88\x87\x87\x40\x6c\x66\xbf\x78\x3c\xb4\x26\xdb\x22\x2e\x9b\x7c\x2b\x1c\x03\x9e\xae\xc7\x80\x47\x6e\xcf\xe4\x89\xd6\x4a\xd5\x2b\xfb\x2d\xfb\x12\xef\x57\x1d\x76\x52\x22\x47\x07\xcb\x43\x92\x2d\x00\x04\x76\x57\x5a\xc9\x64\xef\x75\x7b\x24\x99\x9a\x1a\x8d\x6d\x3b\x5d\xd7\x9d\x1b\x70\xd7\x64\xfd\xac\x63\xf4\x11\x1f\xd9\xe8\x1e\x01\x06\xee\x86\x2b\x59\x3d\x80\x50\x96\x89\xcc\x9e\x5a\x59\xd2\xc6\xf2\x4b\x4e\x26\x13\x73\x92\xa2\xad\x02\x1e\x34\x6e\xc2\x5a\x7f\x25\x75\x29\x61\xbf\xe5\x11\x5d\x19\xef\xb2\x62\x1b\x68\xc8\x78\x8a\xdf\xa0\x19\x4d\xc7\xab\x52\x2d\xaa\x81\xd4\x45\x8b\x7c\xb8\x41\x68\x65\x41\x25\x8d\x69\xcb\xde\x4f\x73\xc2\xbe\x52\x70\x3a\xa6\xcd\x4f\x59\x6b\xdc\x26\xab\x5e\x6d\x16\xe1\x02\x7e\xc2\x9e\xd6\x13\x2d\x27\x97\x6d\xf8\x1b\xe6\x8d\xa7\x75\xcc\x66\x23\xfe\x6f\xd4\x2f\xce\x6e\x97\xf4\x67\x8c\x73\x65\xe0\xed\xe6\xe8\xb7\x79\x37\xcd\x49\x7a\xfd\xfb\x27\x7f\x5b\x35\x7f\x9d\x0e\x2c\x79\x2d\xc8\xd9\xf5\x0b\x10\xd1\x25\x54\x62\x35\x04\xe4\x46\x19\x76\x5e\xb0\x5a\xcb\x61\xab\xb4\xfa\x0a\x87\xf7\xe6\x02\x16\xf4\xdb\x5c\x97\x0e\x83\x4b\x1b\x2c\xa1\x1f\x21\x1e\x6c\x78\x0b\x84\xc2\xcc\xc5\x1d\x7f\x69\x8f\xc2\x65\x71\xdb\xac\x8b\x90\x74\x21\x99\x03\xb8\xa6\x2b\xab\x82\x70\xc3\x10\xb5\x5f\x6a\xc7\x06\xfc\x68\xd1\x54\x5b\xf3\xe6\x3a\xb5\xfa\x9a\x5a\x04\x3d\x9b\x78\xda\x15\x07\x4d\x2b\x05\xf5\xf1\xd2\xa8\x34\x16\x95\xc5\xe9\x42\xb3\x9f\xb1\x00\x87\xdf\xc9\xe2\x64\x31\x87\x71\xf8\x5d\x20\xa3\x09\x9a\xfe\x38\x0f\x80\xbe\xb0\x0c\xd8\x73\x7e\xb6\x08\x82\xde\x83\x2a\x9f\xc4\xbe\x3b\x4a\xb2\xd1\x28\xc7\x67\x64\x38\x6c\x48\x4d\xf3\xa9\x4c\x4d\x6d\xfa\x0f\x1a\x52\xd3\x9a\x72\xad\x61\x8c\xd8\x3b\xd3\x0a\x85\x5f\x86\x7a\xbe\x39\x77\x42\x88\xea\x90\xd7\xf0\x19\xfe\xae\x97\xe0\xc5\x96\xd3\xf3\x99\x97\x53\x15\x47\xe6\x32\xe4\x4a\x2f\x85\x26\x04\x8e\xec\x6d\xc6\x95\x6f\xaa\xd3\x0b\x07\x8a\x57\xc3\x2c\x9f\xe1\xef\x58\x20\x43\x7d\xcd\xe2\xba\x9c\xfd\xdf\xee\xa4\x44\xd1\xaf\xf5\x8e\x49\x78\xdc\xef\xce\x27\xfc\xad\x80\xb0\x64\x0e\x34\x1c\x2d\xde\x14\x70\x45\x0a\xa7\xaa\x68\x3d\x0e\xf1\x65\x8e\x27\x40\x5e\xb3\x68\x58\xf3\x48\x42\xe3\x5c\x41\x5e\xab\xd3\x72\x8c\xa1\x5e\x67\x8b\x9b\x23\x0b\xf9\x1a\x87\x12\x0a\xa9\xf3\x09\x27\x12\xbe\x85\x6b\x3f\xab\x72\xd6\xc3\x68\xa0\x2f\xd2\x34\x42\x55\xdf\x0d\x2a\x9b\xe9\xde\x7f\x15\xb5\x93\x2b\x76\xf4\x6b\x76\xb2\x51\x53\x05\xa3\x5a\xa1\x83\x7b\x9b\x9e\x9c\x5f\x76\xfd\xdb\xca\xc9\x9c\xed\x77\xdd\xad\x08\xf6\x31\x45\xe6\xd4\xe5\x7e\x17\xdd\x11\x9b\x62\xdd\x6c\xd4\x98\xef\x63\x34\xb5\xdf\x5d\xce\xf5\x46\x12\xf6\xba\xbb\xd6\xf8\x99\xbb\x1c\x0b\xf2\x9b\x49\x69\xbb\x22\xf6\x5e\x27\x3c\xe9\x1a\xc2\xb4\x84\xde\x43\x01\x19\xe4\x30\x87\x04\xce\x60\x1a\xde\x3b\x71\x98\x79\xdb\x1a\xc3\x00\x87\x0f\x0f\x3e\x8b\x90\x61\x70\x31\x9f\x5c\xb1\x3c\x22\xd2\x78\x54\x3a\x84\x76\x6c\xd2\x6f\x55\x18\x5c\x9a\xd9\xd4\x79\x5e\xa4\x07\x1f\x80\x7e\xbf\x6f\x59\x6b\xca\x99\x64\x72\x3e\xc5\x91\x64\xe6\xfe\xd5\x28\x45\x79\x1e\xe0\x30\xf4\x6f\x63\x89\x86\x9c\x4d\x02\x1c\x2e\x34\x48\x65\xa0\x3b\xf4\x26\x15\x69\x5d\x47\x50\x7d\x22\xc3\x60\xfb\x4b\x21\x69\xb1\xb4\x4a\xdc\xe5\x00\xa2\xfe\x76\x0c\x45\x7f\xbb\x07\x59\x31\x07\x24\x9f\x6b\x6f\x92\x2a\xc3\x61\xde\xc7\x97\x35\x64\x06\x41\xf8\xfd\x76\x80\xfa\x01\xef\xe7\xda\xe1\x12\x84\x61\x94\x31\x8a\xc3\x9d\x9d\x80\x9a\xec\x1d\xdc\xe4\x82\x0f\xe1\xb6\x7c\x78\xa0\x36\x3d\xc7\x76\xbf\x2f\xc3\xef\x55\x93\xe1\xf7\x36\xf8\x89\x84\xf7\x42\xa1\xc0\xfa\x64\x31\x24\x14\xe5\xf9\xfc\x5e\x21\x80\x1e\x1e\xcc\x26\x46\x1e\x19\x94\x1f\x1e\x8a\x5f\x8a\x9a\xb6\x24\x19\x06\x22\x94\x63\xce\x6e\x3b\x6c\x51\x04\x51\xd1\x85\xa6\x63\x8d\xee\x53\xad\x04\xa8\x92\x14\xdf\x76\xd4\xa2\x6c\x1c\x31\xe0\x35\xbd\x41\x39\xc9\x3a\xc8\x5c\xa7\xaa\x4c\xb2\x0c\x0b\xc9\x67\xa9\x9c\x71\xdc\xa1\x8c\x76\x75\xc7\xaf\x72\xdc\x21\x54\x48\x44\x53\x0c\x3c\xc0\x43\xcb\x56\x66\xe0\x89\x30\xa9\x09\x4a\x86\xc0\x8b\xcf\x23\x96\xae\xfa\x9e\x93\xd0\x5b\xef\x1d\x52\x6c\x68\x98\xef\x99\xd6\x9e\x02\x1c\xfa\x57\x6a\x2b\x6d\x65\xbc\x4c\xb0\xcd\xca\xed\x8c\x8a\x88\xb3\x62\x04\x78\x32\x65\x00\x33\x54\xdc\x9c\x79\xa7\xfa\x62\x7e\xce\xcb\x9f\x3a\xcd\xb9\xbe\xa2\x41\x29\x96\xba\x96\xbe\x52\x3d\x51\xaa\xfd\x94\x13\xb3\x37\x67\xad\xe9\x37\x84\xe2\xce\x0b\xd3\x8c\x6f\x41\xb7\x1f\xde\x26\xe2\xb9\xb6\x0a\x14\xe0\x21\xc9\xf3\xd7\x8f\xdf\x11\xe8\xe1\xde\x55\x55\xca\x8b\x8d\x4c\xcd\xd1\x8c\x64\xaf\x18\xd7\x62\x57\x5f\x06\x32\x41\xe2\x7a\x43\xb8\xaa\xca\xa3\x70\x8d\x3d\x63\xee\xcc\x77\xae\x0b\xfb\xc2\xdc\x2d\x5b\x5f\x30\xbc\x02\xcb\x14\x0d\xaf\x88\x52\x14\xca\x53\xe4\xc6\xe8\xd1\x03\x34\xa8\x64\xa5\xba\xb3\xb9\xe3\xdd\xb5\x03\x66\xa8\x42\x73\xcf\x93\x8f\x94\xb9\x62\xe1\xf3\x23\x35\x6f\x22\x35\xb7\x48\x15\x58\xdc\xd5\xf3\xe0\x7b\x1b\xd5\xcf\x48\xd4\x9a\x0a\xff\x0a\x84\x49\xee\x3e\x0d\xed\x6b\x08\xc2\x05\x9c\x2f\x4d\xab\xdf\x52\x21\xda\xfb\xbf\x5c\x55\x92\x8c\xe5\x92\x4c\x3f\x30\xb3\x67\x6d\x79\xdb\xbc\xbc\x50\x4b\x93\x52\x2d\x53\xef\x7c\x50\xad\x02\x08\xe1\xdd\x85\x5a\x44\x9b\x47\x6e\x91\x44\x26\x0f\x99\x1e\x1f\x00\x41\x39\x0e\x00\x82\xf9\xf3\x3b\x22\xde\x0f\x87\x02\x2f\xbb\x8f\xc7\x8c\x6b\xe1\xa0\x2c\x2b\x3f\x73\xc7\x95\x22\xbd\x7c\x2b\xbd\x2d\x08\x93\xda\x5b\x35\xe5\x10\x0f\x42\x48\x4d\x7d\x8d\x8e\xbd\xcd\x83\x55\x7d\x13\x96\x4d\x54\x09\xd8\x96\x9a\xed\x12\x0f\x16\x61\x72\x19\xc3\x5e\x39\x9e\x11\x57\xe6\xe3\xb9\x16\x3a\x97\xbd\xd8\x78\xbe\xbd\x3e\x0d\xd4\x52\x31\x41\x84\x06\x34\x84\x4a\x99\xb9\x3b\x57\x15\x56\x51\xe9\x55\xa1\x4f\xb4\xd1\x6b\x23\x0a\xf9\x7d\x86\xa8\xdf\xe8\x2e\x5d\xde\x4d\x28\xfa\xd5\x09\xe4\xd4\x77\xa4\xc5\xad\x50\x93\x7c\xfe\x58\x5f\xe6\xae\x2f\x73\xd3\x97\x76\xf4\xe7\x16\xfd\xa7\x8c\x47\xd1\x47\x37\xa9\xca\xa1\x51\x78\x52\x8d\xe7\x63\x9c\x69\xb1\x03\x77\x8f\x33\x63\x13\xd7\x09\xba\x5b\x07\xd1\x87\x87\x9e\x43\xed\x87\xde\xce\x4e\x20\xfb\x57\x81\x0c\x43\xb8\x84\x61\x2b\x9c\x65\xc6\xa2\xc4\x0e\xf6\xe2\x92\xb3\x2e\x63\x28\x07\xaa\x9f\xba\x40\xa3\x9b\x66\x5e\x2e\x65\x9d\x25\x12\xb2\xc0\x55\x38\xec\x94\x62\xfc\x23\x93\x92\x4d\x82\xd0\xa0\x6a\x2a\x19\xf8\x61\x24\x49\x7a\x2d\x82\x43\xf3\xc3\x42\xd5\x51\x18\x73\x73\x3f\x50\x03\xaf\x35\x66\xbe\xd7\x63\xd9\xdf\x33\xb7\xe7\xa4\x98\xe4\x01\xde\xed\xed\xc5\xe1\x77\x3d\x37\xfc\x1a\x89\x82\x22\x21\xac\xbb\x33\x0a\x0d\x8f\xf6\x95\x46\xba\xa7\x0a\xd0\xcb\x78\x00\x45\x3f\xa0\x97\xbd\x41\x17\x85\xbb\x81\x54\xe6\x24\x53\x6a\x22\xef\xc7\xdf\xf3\xbf\xc8\xef\xf9\x77\xdf\x85\xcc\x68\x78\xe8\x3b\xf1\x67\xee\xa8\xc2\x16\x01\x85\xe5\x9c\xd0\x20\x14\xbc\x1f\x7a\xcf\xae\x02\x14\xea\x04\x6e\xf3\xd6\xd1\x98\xaf\x1c\x8d\x06\x17\x57\xc9\x7f\xae\x34\x83\x2a\xf5\xe7\x1e\xf5\xf5\x1a\x26\xec\x7b\x4d\xf4\x96\xc1\xf8\x2b\x27\xfa\xb2\xf1\x0d\x50\xcb\xaa\x20\x4d\x6c\x54\xef\x93\x70\xb4\x4f\x17\xe4\x37\x1c\x74\xeb\x42\xb3\x82\x35\x00\x8e\xb5\x4d\xae\x97\x15\xca\x8a\xb2\x25\x34\x30\x9c\xeb\xd8\xc3\x42\x29\xed\x6d\x79\x34\xb6\xdf\x22\x9d\x66\xea\x42\xdb\x81\x4a\x31\x8e\xee\x8c\xe9\x57\xfa\x29\x6c\xde\xaa\x1f\x7f\x64\x77\x41\x18\x8d\x6d\xa2\x19\x33\xae\x3a\x19\xcd\x97\xc2\x64\xbe\x1a\x13\xad\x28\x16\x34\x31\x14\xab\x3b\x7e\x80\xc1\xb6\x10\x69\x3f\xd9\xa7\x25\x81\x32\xa6\x70\xb7\x9c\x72\x3f\x55\xfa\x6a\x9b\xa8\xb3\x8b\x46\xa3\x58\xc1\xff\x6e\x1e\x96\x34\xa0\x8b\x7a\xc3\xfc\x77\xdb\x03\x7d\xe9\xfd\x8a\xa5\xd0\x32\xe4\x23\x93\xc6\x14\x2b\x96\x3f\x53\xb6\x90\x0b\x66\x65\x44\x9e\xec\x76\x51\x06\x8e\x6b\x15\x16\x41\x68\x0d\x96\xac\x2d\x5e\x50\x69\x43\xdb\x7d\x7c\x89\x06\x8b\x30\xba\x6b\xcb\xdb\x8a\x03\x79\x49\x95\x10\x8e\xe6\x6d\x00\x64\xa0\x2a\x87\x8b\xb0\x5c\x29\xb4\x96\xcc\x71\xe3\x02\xec\xdf\xbf\xff\x0a\x8b\xcf\xd8\xff\x38\x90\x41\x1c\x86\xd1\xbc\xb7\x01\x25\x32\x92\xbd\xa6\x02\x73\xf9\xd2\xcc\x89\x55\xbb\x9a\x26\x42\xe2\x8c\x4c\x30\xd5\x7e\xc7\xa0\xb8\xe6\x9e\x96\x2b\xa9\x9e\x4c\xc1\xca\x59\x96\x22\x7a\x83\x04\x08\xdd\xc1\x54\x03\xf7\x79\xa9\xcf\x47\x57\xc4\xde\x40\x58\xe8\x43\x5b\x52\x5f\xcf\x36\x61\x33\x81\xf5\xdd\xa9\x2d\x63\x52\x62\xa1\x8b\x99\xfa\x97\xf1\x60\xcb\xee\x63\x9a\xf8\xf4\xb7\xea\xdb\xff\x06\x10\x87\x10\x05\x38\x84\x86\x0b\xf8\x8c\x46\x22\x1d\x63\x65\x24\x07\x00\x0d\x25\xe6\xe7\x98\xea\xa4\x90\xa2\x65\x72\x59\x88\x85\xa1\xa8\x8f\xe7\xeb\x68\x55\x0f\xcd\x09\xbb\x69\xe3\x9c\x27\x61\x59\x85\x9c\x63\x54\x03\xfd\x68\x27\x70\x4b\x27\x70\xa3\x13\xbd\x50\x7b\x05\xf4\xeb\x8a\x05\x66\x36\x7d\xc3\x85\x62\x97\x5f\xcc\x68\x49\xc9\x45\x63\xe7\x83\xeb\xe6\xb4\xa1\x1d\x84\x0b\xd8\x18\xd8\x96\x4c\x64\xfe\x4c\x6a\x9d\x3b\xe6\x93\xf0\xb5\x40\x5e\xaa\xd7\xca\xf4\xe3\x3b\x3b\xdc\x9a\x16\x06\x6a\x0e\x89\xa7\x27\x5e\x11\x61\x58\xaf\xcd\xce\xbb\xa4\x6a\x6a\xe5\x78\x28\xe1\xac\x2f\x23\x42\x6f\x30\x57\x2b\x36\x4c\xfb\x24\xe0\x70\x06\x7b\x21\xcc\xfa\xfc\x32\xed\xf6\x06\x70\xa2\x7e\x0c\xb6\xf2\x7e\xb6\xb3\xb3\x3d\x79\x96\x25\xb3\x6e\x76\x49\x07\x3f\x4c\x2e\xe9\xa0\x3b\x7b\x36\x49\x32\xef\x6c\x6f\x85\x80\x95\x53\xbf\x75\x13\x0e\xde\xab\xf6\x13\x19\xe4\x6a\x2a\x43\xc9\xa6\x09\x0a\xf2\x4b\x31\x08\xbb\xbd\x78\x11\x2e\x0a\x42\x6a\xba\x16\x77\xa9\x5e\x09\xcc\x6f\x30\xf7\xc4\xd6\xea\xc1\x08\xa1\xf7\xbc\x6a\x96\xdb\x69\xab\x14\x65\xf5\x38\x61\x33\x2a\xcf\xf6\xad\x78\x10\x81\x3f\x63\xb4\x53\xae\x12\xd1\xd0\x1e\xb1\xeb\xaf\x85\x3a\x7a\xaa\xb5\x94\xb7\x9e\xa9\x42\xcd\x86\x71\x54\xf0\xaa\x5a\x97\x1b\xcc\x15\xe0\xc8\x9f\x3c\x3a\x34\x09\xd6\xa0\x34\x38\x96\x08\x7b\x75\x22\xce\x1e\x1e\xaa\x6f\x08\x1d\x3d\x3c\x04\x9b\xc9\xb6\x42\x97\x09\x8d\x2b\xb4\x5c\xd9\x43\xb8\x19\xa0\x79\x0b\xa0\xf9\xd3\x00\x8d\x0a\xc5\xb3\x06\xcd\x29\xa4\xa1\xbe\x44\x92\x66\xec\xf6\x1c\x0b\xf2\x1b\xfe\x49\x07\x90\x55\x02\x44\xcb\x31\x67\x34\x35\x42\x0b\xb6\xae\x09\x6e\xd6\x97\xaf\xda\x99\x2d\xfa\x9f\x01\x10\x37\x23\xbb\x6b\xab\x15\x15\xed\x2c\xc0\x56\x2b\x0a\xc2\x55\xb9\x09\x0b\x67\x1d\x5d\x84\xb0\x85\xd9\x2b\x5b\x19\xe3\x47\xb7\x32\x84\xec\xa2\x34\x65\x3c\xab\xed\xbe\xaf\xdc\xce\xf8\xaa\x07\x49\x4a\x74\x07\xe6\x3e\x75\x92\x01\x28\xd8\x8c\xa7\x78\xbd\xbd\x48\x46\x3f\xea\x5d\xea\x7a\x14\x30\xe2\xd2\x9d\x17\xd8\xee\xc1\x0c\xa7\x8c\x23\x89\xb3\x0b\x03\xbb\x99\x42\x4d\xbd\x5e\x95\xa0\x5f\x2a\xc1\x85\xd2\xb1\xd3\x93\xae\xf1\x1c\xd2\x3e\x20\x12\x4f\x22\xff\x5a\x78\xe4\x2a\x94\x28\x14\x62\xdf\x36\x53\xd9\xbf\x14\xa1\xdb\x98\x1c\x12\x9a\xfd\x38\x0f\xa8\x15\x4d\x23\x2c\x03\x01\xa5\x4b\x21\x7d\xaf\xda\x4a\x44\x11\x87\xc0\x9e\x6d\x6f\xb3\xc8\x3e\x20\xc5\x2b\x8d\xd4\x41\x25\xd6\x3a\xfb\x84\xb0\x57\x9a\x9a\x57\x6b\x11\x78\xa3\xe0\x8f\x2a\x07\xee\xba\x5f\xdd\x2b\x96\x7d\x1b\xb9\xc1\x9f\x96\xf9\x71\x69\xbf\x74\xa6\xdf\x6f\x63\x7f\xb5\x86\xd4\xb2\x74\x69\xba\xfb\x09\x11\xdd\xdc\xda\x77\xc5\x29\x14\x9d\x22\x34\xd1\xe1\x44\x2e\x96\xc8\x4b\x89\x55\x03\x9f\x6c\xc7\xf0\x6a\x26\x25\xa3\xc6\x19\x0f\x4c\xac\x88\x47\x60\x58\x01\xbc\x1d\x43\xcd\xbc\x2e\x32\x89\x89\xda\x94\x65\x54\x57\x7c\xf2\x91\x5c\x3d\x46\x53\x34\x22\xb4\x71\x27\xeb\x37\x25\xfe\x36\x11\x6e\x3a\x31\xef\xde\xa1\x3e\xae\x9e\xf4\xa0\x98\x72\x8c\xb2\x64\xcf\x88\x37\xf1\xbc\xe5\xe2\x0e\xf2\x9b\x32\xf7\xa6\xed\x77\x91\x17\xe9\x14\x46\xb8\xdb\x0b\xcd\x3d\xe8\xaa\xc2\x77\x3d\xd5\x0b\x9a\xb5\x02\x2c\xe5\xe2\x23\xc0\x3b\xee\xc6\x6a\xd7\x4a\xd9\x84\x77\xc2\xd6\x42\x34\x6a\x2e\xd0\x7b\x3d\x39\x12\xe6\xc0\xfe\xe3\xad\x2f\x69\x56\xbb\xf4\x96\xb6\xb1\xeb\xf0\xd0\x67\xba\xd0\x08\xbf\x21\xb4\xc5\xa1\xe8\x37\x67\x7a\x09\x0c\xc9\x97\x2e\x0a\xfa\x6b\xb1\x20\xa8\x2a\x85\xea\x5f\x74\x49\xa9\xf5\xbd\x7e\xbf\x4f\xc3\x62\x58\x6d\xb8\x8e\xbb\xd6\xbb\x07\x65\x17\x2b\xf3\xd0\xd1\x8f\x42\xf9\x1d\x0e\xbf\x73\xde\x5e\xb3\x43\x2a\xba\x28\x8c\x86\x24\xcf\x03\x6d\xc4\x54\xd7\x10\x6f\x8f\xfc\x5e\xa1\xf1\x6e\xa6\xba\x96\xa0\xef\x6c\x4a\xdf\xbc\xf5\x96\x97\x96\xee\xd6\x89\xec\x77\x56\x8f\x63\xbf\xca\x44\xb8\x76\x87\x8b\x86\x68\xfc\x7b\x52\x77\xe3\x29\x2b\x48\x39\x8b\xdd\xf3\xd7\x0c\x63\x79\xe2\xa1\x5f\x8d\x7a\xcb\x55\xc4\xdf\x90\x2c\x2a\x03\x4c\x0d\x9a\xd5\xf0\x30\x7b\x52\x70\x13\x81\xf5\x34\x35\xab\x85\x85\x26\xb5\xe3\x3a\x96\xb7\x4d\x66\x7b\xdc\x8c\x87\x5a\x8b\xaf\x74\x8f\xf4\x21\xc8\xee\xd5\xb7\xa0\x8e\xc8\x31\x80\xee\x06\x6f\x6f\x95\x36\xc7\xf7\x06\x2e\x97\x09\x67\x53\x7d\xaf\x89\xfd\x5b\x19\x25\x22\x6c\x28\x92\x1d\xad\xf6\x55\xdf\xc6\x01\x10\xd1\xb5\x6b\x7b\xfd\x16\xa7\x24\xc3\x22\x4d\x90\x48\xf5\x49\x5b\x5b\xbc\x3e\x7a\x1e\x3e\x4a\x64\xd4\x37\xe4\xfc\x61\xf4\x8a\xf6\x6d\x52\x39\x55\x7e\xa1\x13\x47\xce\xf2\xec\xa2\xda\x7a\x5b\x46\x63\xff\x8a\x29\xcf\xb9\xd3\x68\x70\xdb\x5a\xbb\xa6\xc0\xc3\xc3\xb6\xe5\x23\x1f\xc2\xc6\x41\x61\x8e\x5b\xcc\x75\xef\xdf\x88\xfe\x2a\x35\x1e\x9f\xd6\x95\xaf\xab\xb2\x7a\xbc\xaf\xf0\xd8\xa8\x2b\x93\x59\x2e\x89\xe5\xf6\x6e\xc6\xd9\x34\x63\xb7\xdf\xae\x9e\x57\x99\xa5\x0e\xdb\x01\x64\x53\xb9\x7e\xa4\xad\x8b\x32\x5c\xd7\x18\x36\x0e\x93\x7a\x86\x96\x42\x25\x2f\xd0\xb0\x27\xb0\xd1\x54\xce\x38\x5e\x92\xca\xad\x24\x30\x36\xfe\xd2\x73\x9c\x62\x72\xd3\x74\x98\x7a\x2a\x42\x51\x67\xcb\x4e\x49\xd5\xee\xce\x0e\xde\xd9\x69\xfa\x75\xdf\xd3\xb4\xee\xdb\xad\x38\xe0\x6c\x7c\x7a\xc4\xf1\xd4\xba\x17\xf5\xe5\x65\xf5\xb8\xf5\xd6\x2b\x21\x8c\x65\x6e\xbb\x62\x09\x68\x95\x92\x70\x8b\x96\xc1\xe6\x32\x7c\x46\x23\xae\x1d\xdc\x36\x58\x50\x86\x09\x8d\x50\x96\xb9\x47\x97\x3a\xd2\x78\xa8\x68\xb8\x80\x6c\x8a\xe9\x7b\xfa\x9c\x73\x76\x7b\xa6\x68\xd9\x88\x46\x34\x02\xd0\x10\x37\xc0\x16\x84\x21\xc6\xc3\xc3\x41\xbc\xdd\xef\x4b\x85\xe2\x0b\x96\xe1\xb2\x7c\x41\xac\xe0\xb4\xef\x7d\x57\xe5\xfd\xe7\xb0\xb8\xaa\x67\xa5\xab\xac\x18\x86\xae\xe4\x64\xa4\x54\x27\x9d\x83\xfd\x79\xb1\xd2\x04\x00\x71\x82\xba\xec\x96\x0a\x9d\x54\x33\x63\xe9\xac\x0d\xce\xff\x70\x5e\x0d\x0a\x41\xa7\x84\x6a\x38\x18\x84\xe1\x16\xda\xd9\x09\x50\x34\x64\xe9\x4c\x04\x21\x94\xfa\xd4\xa8\xce\xff\xa3\xe7\x49\x10\x86\x0b\x73\x5b\x59\x39\x9c\x8a\x78\x9a\xac\x8d\xb2\x0b\x28\x39\xd2\x91\xde\x6f\x9a\x19\x17\xc8\x30\xd8\x3b\xae\x10\xc2\xa7\x83\x63\x3b\x32\x0c\x68\x78\x4f\x5d\x6b\xa9\x32\x33\x03\x19\x5a\x9d\x7b\x43\xa2\xa9\xee\xad\xea\x1d\x6c\x9b\x2c\xf6\x58\x99\xee\x36\x19\x06\xfb\x27\x4d\xac\x45\x5f\xda\x5b\x4b\x34\x48\xc2\x66\xc2\xba\x75\x2f\xc8\x55\x4e\xe8\x68\x4b\xe8\xc8\xf0\x55\x74\x2d\xe0\xd7\xd8\xc3\x7a\x92\x1c\x7c\x8a\xef\x64\x0d\x36\xdb\xd9\x09\xd8\xe3\xb0\xf7\xf7\x7c\xc0\x85\x13\x5d\x28\xd1\xe6\x6c\x7d\xbc\x64\xcc\x37\xd2\xcc\xb4\x25\xd1\xbc\x47\xe8\x2b\x7a\x52\x7c\x8c\x94\x36\xf4\x57\x7d\xdd\xd8\x12\xbf\xd1\xca\xc4\x8f\x8d\x1c\x46\x5f\x73\xe1\x2d\xf2\x64\x68\xd9\xaf\xf0\xc1\xd9\xc7\xbf\xea\x44\x34\x2e\x33\xb8\x41\xf6\x95\xcd\xb7\x54\x4f\x52\xa1\xa6\x89\x03\x13\x35\x8a\x03\x08\x2a\x50\x37\xcc\x56\x3f\x65\xb7\x98\x17\xab\xbb\x5e\xea\xa7\xed\x96\x93\x5f\xf0\x71\x00\x7f\xc0\x3b\x76\x5a\x3b\xb2\x5b\x88\xa5\x4f\xa5\x88\x03\xf4\x07\xa7\xcc\x53\x09\xf1\x47\xef\xf7\xee\x15\x1e\x32\x8e\xed\x2a\x2c\x9e\x4a\x86\x3a\x98\x3f\x3a\x55\x3e\x95\x1c\xff\x5d\xe8\xa0\xc5\xf2\x98\xe5\xd9\xd3\x45\x45\x05\xc6\x1f\x9e\x1e\xbe\x0c\xd4\x39\xb2\x9e\x4e\x96\x26\xa8\x3f\x3a\x75\xcc\xb5\xe3\xdd\x49\x91\x14\xe1\x89\x94\xa9\x81\xf9\xa3\x53\xe5\x13\x97\xda\x3f\xf4\x0a\x6b\x0e\x1c\xd9\x1b\xed\x1e\x4b\x21\xf6\xbb\xfb\xab\xd9\xb5\xcb\x5c\xdc\xcc\x32\x29\x91\x14\x1f\x39\x4a\xaf\x31\x17\xe7\x78\x44\x44\x79\x01\x74\xfd\x16\x54\x5d\xb6\x2b\x6d\xe1\x2e\xb7\xa5\x41\x58\x75\xae\xd6\xa8\x31\x80\x1c\x5b\x6f\xb8\xd6\x98\xcd\x6b\xf3\xdb\xdb\x2a\xad\xd5\xd2\x37\x8f\x9b\x96\x1a\x7e\x4e\xf3\x3e\x3b\xb7\x60\x01\x04\x52\xdf\xf8\xd4\xee\x5e\xa9\x95\xae\x6e\xbd\xb4\xf5\x5e\x99\xfd\xf6\x9d\x0d\xbe\x9b\x4f\x9b\x6e\x5d\xee\x5a\x6f\x6f\x96\xd7\xda\xd3\x51\x4b\x29\xa3\xe6\xd0\x1f\xe3\x91\xf6\xca\x2b\x9a\xa9\x16\xaa\x38\xae\x68\xac\xd9\x55\x7b\x54\x4c\xa7\x33\xd4\x61\x0a\xa0\xf0\x1d\xab\xa2\xcf\xca\xfd\xbd\x02\x88\x9f\x0a\x33\x4c\x2a\xc8\x2e\x42\x3b\x3c\xed\x87\xc5\x0a\xfe\x6e\xef\xb1\xf9\x5a\x44\x5d\xa4\xd3\x59\x02\x5e\x7c\xf8\x05\xc0\x09\x9e\x30\x3e\x4f\xc0\x5b\xfd\x17\x2c\x2e\xf1\xe0\xe1\x41\x35\xa5\x0f\xf9\xad\xe8\x6a\xd1\x5c\xb3\xcf\x2e\xce\xdb\xb2\x48\x75\x9f\xb0\x8a\x0f\x19\x06\xcb\x88\x53\x89\x42\xb4\xa9\x91\x34\x3c\x9d\x48\x4d\x80\xb0\x88\x2d\xd1\x00\x00\x6c\xa1\x25\xad\x5e\x57\x2e\x77\x76\xf4\xb9\x93\x46\x42\xc4\x02\x70\x79\x77\x79\x68\xa2\xf2\x74\x20\x5f\xf6\x7c\xd2\x9a\x0a\x63\x2d\x62\x98\x2e\x83\x74\x3a\x73\x9d\x33\x85\x9f\x81\x02\xbc\x1a\x87\xc4\x3d\xd9\x81\xd8\x5a\x9b\x73\x9e\x4a\x95\x4b\x3c\x48\x1e\x25\x81\x77\x78\x73\x0d\x7e\xf3\xb9\x4b\x87\x5d\x0c\x59\xc9\x61\x44\x74\x33\x44\xd5\x22\xb2\xb8\xf4\xe8\x30\x78\x78\xf0\x8f\x85\x2e\x42\x38\x65\x79\x8e\xf9\xc6\x39\xf3\xbe\xe0\x6d\x57\x15\x0a\x29\xf4\x40\x18\x4d\x31\x1f\x32\x3e\x09\xc2\x32\x83\x9e\xc1\x98\x4c\x30\x9b\xc9\x30\xe8\xc5\xb1\xcb\x9e\xa7\xa6\x84\xa1\x9f\x12\xa7\x84\x8e\xdc\x3d\x44\x36\xeb\xe1\xc2\xa6\x4a\x7c\x3c\xbf\x9b\x4e\x2c\xb8\xc2\x77\xed\xcf\x3c\x7b\xb1\xb8\x21\x68\x89\xf1\x02\xde\x92\x3c\xb7\xa1\x94\x8d\xba\xb6\x74\x8a\x68\x8a\xf3\xe7\x79\x5e\x78\x05\x2b\x44\x10\x64\x44\x51\xfe\x01\xcd\x04\xf6\x69\xb1\xa1\x9f\x8c\xb3\xbb\x79\x57\xa2\xd1\x37\xb0\x79\xb3\xd9\xbe\x8d\x5a\x5d\x19\xed\x1a\x06\xfa\x9a\x1b\xf9\x9f\x74\x65\xff\xaa\x44\x4d\x26\xbd\xeb\xb9\xee\xe7\xd2\xcb\xfc\x0d\x19\xc4\xea\x6c\xb3\xb5\xb2\xde\xdd\xfd\xe6\xda\x7e\x25\x66\x46\x4c\x32\xd3\xd6\x9a\xc9\xa3\xdb\xae\xc5\x37\x2d\x98\xad\xf4\x0d\x47\xb3\xd8\xc2\xe9\x6a\xc7\x6f\x33\xbf\xd6\x37\xb4\x09\xb7\x5e\x7a\x2d\x00\x4b\x3d\xe2\x75\x56\x5c\x8e\xee\x32\x74\xd7\x8f\x46\xf9\x85\x97\xc7\x31\xa8\x96\xf5\xf2\x72\x8e\x53\xc6\x33\xbf\x9a\x5d\x68\x7c\x38\x5a\x39\x23\x13\xab\x58\xe6\x84\x5e\x7f\xf4\x93\x84\x6f\xc7\xd0\xa6\x4f\x04\x1b\x09\x0d\x6b\x98\x5d\xb1\xbb\xaf\x38\xeb\x34\x0e\x1f\x31\xb7\xd1\x7f\xff\xf4\x5e\xd4\x3c\xcc\x1c\xa3\x4c\x04\xa0\x2c\x00\x54\xf7\xae\xd8\x8c\xa6\x38\xe9\x1d\xc6\x90\x51\x13\x64\x5f\x4f\x6a\xe6\xe9\xec\x7e\x97\x81\xbe\x8f\x17\x40\x30\x46\xfa\x2a\x58\xe3\xe0\x71\x5b\x88\x02\xcb\x8b\x12\x97\xf6\x6d\x50\x0f\x5b\x00\x8b\xdb\xe6\x8b\x64\x1d\xe5\xb6\x66\x81\xa5\x89\x28\xa7\x66\x80\x8b\x97\x45\x8a\xc2\xf6\xb4\x84\x95\x16\x00\xd8\x00\xaa\x9a\xb8\x6e\x55\xaf\xa9\xb0\x1e\xd4\x2d\xbb\x87\x69\xcf\x27\x60\x7f\xe3\xaa\xd2\xbb\x70\xb1\xbe\x18\x30\xa7\x36\xba\x68\xd4\x2a\x02\xbe\xa5\x14\x7b\xff\x5c\x25\xd8\x41\x57\x7d\x35\xd9\x70\x2b\xe5\xea\xa9\xb9\x2d\x14\x2b\x60\xc1\xaa\xe4\x7c\x4d\xd2\x34\xb3\xf4\xad\x19\xa6\x33\x80\x1a\x4a\x91\x7e\x6e\x49\x5c\x8e\x2e\x03\x20\xb0\x28\xda\xd8\x9b\x5f\xce\xdf\x2c\xb5\xe8\x74\x41\x7d\x60\xc1\xea\x7f\xca\x26\xd6\x68\x8b\xc8\xfc\x2d\x64\x94\x02\x5d\xd8\x04\xa0\xd4\x77\xad\x96\xcc\x98\x6e\xa6\xbc\xee\xa0\xdb\x0b\xc3\x5a\x21\x0f\x9d\x30\x12\xd3\x9c\xc8\x00\x3c\x03\xe1\x65\xac\x13\xb4\x69\x5f\x63\xb0\xfb\xa7\x83\x78\x77\x04\xc1\x7f\x80\x50\x6f\x3b\xb6\xbc\x57\xfa\x75\x3d\x9f\x61\xd9\xa5\xef\x1b\x69\x0c\xdb\xce\x89\xb5\xae\x8e\xf5\x7e\x63\xdb\xe9\x05\xd4\xeb\xdb\xa6\x09\x10\xad\x6b\x81\x4c\x70\xb7\xc8\xb9\xe0\xcf\x0c\x9b\x07\xae\x25\xfb\x53\x2d\x35\x94\x9f\x51\xca\xe6\x91\x7a\x2c\x7f\x55\x3d\x3b\x94\x01\xd7\xcd\x66\xdc\x2c\x3b\xcb\xb3\x42\x79\xf9\xa0\x48\x35\xe1\x92\x27\x14\x57\x26\xed\xf9\x77\x62\xa6\x2f\x97\x98\xa9\xb2\x6c\x7c\xbe\x94\x4c\x41\xf8\x99\x52\x2d\xcd\xfa\xbc\x9e\xa4\xf5\xde\x24\x3b\x32\xa9\x47\x24\x9a\x4c\x81\xcd\x79\x04\xa6\x98\xa7\x7a\x06\xf8\x89\x8f\xe2\x66\x0e\x9b\xf2\xec\x70\x7b\x02\x9b\x9f\x92\x3f\xbd\x4d\xfe\x74\xb1\x3a\x61\x0d\x6a\x24\xac\x89\x7a\xff\xf7\x4f\x3a\x5f\x8d\x49\xa8\x74\xa1\x66\x6b\xe7\x23\x99\xe0\xce\x85\xc6\xa5\x2d\xbb\xd2\xe3\x19\x69\x56\x66\x27\xa9\x24\x57\x31\x07\x3f\xd7\xcf\xab\xe2\x1f\xf1\x94\x26\xaf\xca\x46\x69\x58\x78\x2d\x2f\x04\x24\xfd\x20\x86\x79\x99\x88\x47\x5c\xf6\x06\x5d\x71\x19\x0f\x20\x98\x08\x7d\x00\xb8\x90\xf6\x9a\x2a\x66\x84\x3a\x0a\xd3\xce\x90\xf1\x8e\x1c\xe3\x4e\x8e\x84\xec\xb8\xb5\x80\x40\x00\x3b\xb7\x44\x8e\x3b\x9a\x4f\x44\x87\x23\x3a\x22\x74\xd4\x19\x72\x36\xe9\x00\xb7\x1c\xf0\x00\x29\x99\x0f\x81\xe2\xcf\xea\xeb\xde\x40\xfb\x4f\xbe\x70\x02\x20\xda\x48\x00\x24\x5a\x13\x00\x89\x25\x09\x80\x90\x37\x68\xbc\x4f\x82\xc6\x38\xac\xca\x32\xb3\x17\xc2\xbc\xcf\x15\x99\x67\x7d\x7e\xd9\x1b\xc0\xb4\xaf\x97\x2c\x37\x0e\xb3\x30\x12\xb3\x2b\x9d\x4b\x39\x38\x84\x60\x42\xe8\x4c\x62\x63\x01\x9e\xe9\x7c\xfe\x30\xeb\xbb\xc4\x43\x97\xee\xb0\x40\x0e\xd3\x10\xce\x06\xc9\x65\x0a\x95\x54\x50\x45\x5d\x72\x21\xba\x7e\x72\xa1\x2c\x84\xf4\x0b\x25\xba\x29\xcf\xe9\x9b\xa4\xac\x26\x55\x2d\x0e\x21\xed\xc7\x10\xf5\x7b\x5b\x64\x18\x18\xfb\x4a\x75\x3d\xac\x1c\x80\x6e\x25\xb3\x54\xd4\xdc\xa2\x86\x9a\x48\x53\x73\xd1\xc8\x24\xf2\xd4\x54\x38\x8e\xb0\x31\xa4\x21\xf4\x4e\x69\xa0\x70\x50\x0f\x3a\x9f\x3d\xaa\x0a\x70\x8c\x26\x84\x8e\xba\x43\xb2\xd1\x7d\x2c\xcb\xf2\x3f\xfe\xee\xd9\x63\x69\x99\xe9\xce\xe9\xbb\x53\x5e\x3f\x29\x90\xe6\xa4\x6b\x70\xad\x9e\x19\xcb\xd9\x48\xe9\xfc\x7a\x07\x64\xc2\x32\x9c\x00\x47\x11\x00\x89\xb8\x28\x1e\xb4\x79\xcb\x46\x23\xcc\x8d\xa2\xbb\x56\xb0\xa9\xb1\x6a\x4c\xb5\x15\x01\xa6\xa9\x6c\x38\x5d\x9c\x27\x73\xa2\x43\xe6\xb4\x17\xd1\x1c\x6a\xc3\x91\xfa\x5b\x7a\xe8\xbc\x6b\x31\x80\x44\x24\x57\x25\xd4\xdf\xf6\x12\x65\xe7\x12\x1c\x79\xdd\x7b\x86\x23\xf3\xa9\xac\x96\x60\x8b\xb9\x73\x58\x9a\x18\xdb\xa5\x29\x2c\x74\x67\x87\x24\xcf\x9f\xdf\x20\x92\x2b\x66\xf8\xc9\x9e\x2e\x7e\xfa\x91\xe7\x16\x70\xe1\x02\xb6\xbc\x5d\x12\xed\x6b\x23\x29\xb7\x54\xf7\xe6\x79\x71\xde\xb9\x5f\x5a\x09\xf6\x9e\x2c\x42\x29\xe6\x06\x52\x17\x47\x4c\x4f\xba\x8f\x6c\xda\xdd\x8f\x21\x98\xde\xa9\xc5\x58\x51\xfd\x69\xd7\xbe\x18\x56\xf8\x52\xd7\xf6\x98\x2b\xe2\x3d\x8f\xae\x1d\xb4\x11\x93\xec\x27\x7d\x21\x8f\xc7\x09\xe6\xa6\xf6\x64\xd3\x50\x67\xe9\x22\x52\x8b\x8b\xcf\xa7\xfd\x78\xe1\x9c\xe1\x6b\xfa\xb8\x15\x57\xfe\xd1\x28\xf8\x51\xcd\xa8\xcf\x40\x41\xcb\x92\x3e\x3f\x3a\x4a\x16\xbf\x8b\x84\x44\x1b\x92\x55\xcc\x69\x3a\xe6\x8c\x92\xdf\xf0\x85\x86\xe3\xf2\x1b\x36\xda\x47\x85\x05\x63\x17\xb0\x1f\xe2\x9d\x1d\x23\x62\xb7\xfb\xe5\xc7\xcb\x78\xb0\xb3\xe3\x3f\x15\x7a\xa1\x45\xfe\xfb\x40\x56\x30\xee\x7a\x6c\xf1\x97\x5e\xfc\xf0\xa0\x6d\x13\x9f\x57\xaa\xe5\xc3\x05\x34\xb2\xe6\xdb\x63\x06\x4f\x5e\x47\x4c\x2d\x99\x92\xa4\xd7\x8f\x64\x7f\x59\x3d\xf0\x2e\xbc\x61\xe9\x30\x05\x2e\x9f\x4d\xa5\xf1\xa2\x6d\x2d\x0b\x41\xd1\x98\xa9\x7a\xe1\x60\xd9\x7d\x65\xef\xaa\x2e\x0f\x88\x3e\x82\xeb\x44\x7c\xed\xfa\xae\xa2\xa1\xe1\x70\xa3\x96\x8a\xdb\x63\xd7\x65\xce\x55\xd0\x96\x2c\x9a\x4f\x24\x31\x5e\x41\x62\x7d\x2c\x63\xd5\x1e\x59\x7d\xa5\xdb\x20\x8d\xb9\xde\xd0\x6d\x2a\x4f\x4b\x2e\x48\xcd\xd9\xa8\xf9\xd1\x6e\x31\x7e\x8d\xcc\xfb\xab\xa2\x55\x56\x5c\x7f\x08\xcd\x3e\xb6\xea\x4d\x45\x9d\x52\x74\x28\x32\xa8\xeb\xdc\xfb\xe5\xfe\x80\xbd\x9c\x56\x5c\xdb\xe8\x6e\x52\xdc\x93\x27\x24\xb2\xde\xc3\x99\xc0\x17\xda\xc3\x95\x6c\xf7\x20\x65\x2f\x18\xa5\xf6\x68\xd1\x76\x0f\xa6\x39\xc1\x54\x27\xae\x67\x33\x99\xf4\xf0\x3e\x34\xde\xb0\xe2\xcd\x21\xde\xb7\x1a\x9c\x39\x3e\xa6\x1a\x70\x1d\x6e\x6e\x78\x49\x24\xa3\x17\xe6\xd2\xe4\x8f\x2b\xe2\x59\xea\xe5\x1e\x1e\x00\xd8\xf2\x58\x1e\x71\x29\xfe\x4e\xe4\x38\x00\x64\x82\x46\x78\x17\x84\xcf\xcc\x2f\xa5\x60\xf9\x9f\x25\xbe\x93\xbb\x20\x7c\x78\xa8\xbe\x46\xd3\x69\x4e\x0c\x85\x74\x42\x7c\x55\xdf\x5e\xdc\x90\x80\x19\xbd\xa6\xec\x96\x82\x45\x08\x89\x78\x83\x78\xe3\xf8\x79\x34\xb2\x09\x34\xa2\x0b\x7d\x2a\xfa\x10\x1f\x84\xba\xe3\x0a\xd5\xd7\xe2\x17\x53\xbf\x5e\x09\xff\x6b\x86\xf2\x00\x54\x08\x04\xa0\x6b\x2d\x74\x7a\xaf\x0e\xd9\x5a\xaf\xb2\xc5\x39\xac\xea\xcc\x3d\x98\x22\xf9\x0b\x6f\x49\x84\xec\xf8\x22\x22\x99\xe5\x26\x13\xc7\x00\x81\x99\x4b\x8d\xe1\xc0\x34\x65\x19\xfe\xe5\xfc\xb5\x6b\x36\x28\xd5\x38\x63\x35\x17\x40\x20\xd8\x2d\x8d\xf7\x42\x8f\xc4\x2e\x6e\x04\xec\xde\xf4\x76\x0d\x3b\xed\x0e\xc5\x6e\x8a\xe4\x6e\x15\x50\x05\x3b\x08\x9e\x4d\x91\x1c\xf7\x4b\x88\x3a\x4c\x49\xdf\xad\xf7\x56\xf1\x5b\xbd\x6f\x76\xa8\xb4\x23\x35\x6b\x8d\x1e\x2a\xb5\x70\x17\x42\xc2\x32\x5c\x0e\xbc\x3d\x6d\xa5\xc1\x3c\x33\xec\xec\x17\x7c\x78\x30\x9a\x7e\xb5\x32\xc7\x28\x43\x12\x24\x66\xde\x27\x20\x45\x52\x31\x8e\xea\xf9\x3a\x23\xe0\x3d\x53\x96\xe1\x68\x2c\xe5\xf4\x79\x96\x71\x35\x20\x45\x57\x15\x93\x14\x53\x74\xe5\x5d\x31\x4b\x81\x85\x50\xf6\x6b\xe4\xaf\x92\xde\xb5\xd5\x1c\xc3\x0a\xc6\xd5\x44\x32\x0e\xab\x67\x32\x01\xbb\xbb\x5e\xcc\x8b\x77\xb5\x8b\xa1\x85\xdd\x5c\x6e\x44\xb9\x35\x18\xb0\x39\x7a\x36\xf4\x67\x33\xa6\xdb\xb2\x7a\x87\x1b\xa9\x8a\x35\xe7\xf2\x21\xc8\x71\x82\xa1\xb1\x3b\x92\x18\xe6\x64\x42\x94\x44\x3b\x58\xf8\x86\x5d\x6b\xe1\x52\x4a\x29\x11\xd0\x3d\xc4\x07\x8d\xda\x9e\xd1\xd7\x0a\x42\xd5\x61\x9c\x8c\x08\x4d\xf4\x92\xbe\xd8\xb2\x6b\x48\xb5\xf8\x62\xb1\x08\x0b\x1b\xb8\x4e\x3e\xcb\x65\x96\x78\x86\xc6\xcb\x49\xa8\x35\x0d\xd4\x5f\x8f\xb3\x8b\xbc\x44\xde\x18\x9b\xad\x41\x5f\xf8\x9b\xf3\x8c\xfe\x0a\xb1\x55\x0f\x2c\x75\x97\x6a\xe7\x6c\xf4\x4a\x71\x59\xd2\xe2\x09\x33\xfd\x3a\xbf\xf8\xdb\x87\x88\xa3\x14\x07\x97\x38\xd2\x4b\x64\x84\x66\x72\xcc\x38\xf9\x0d\x67\xe7\xf8\x5f\x33\x2c\xb4\x8b\xa7\x7a\xc1\x8a\x08\x07\xf5\xdb\xb8\x3d\x17\xdb\xce\x8e\x8c\xd8\xb5\x12\xff\xfa\xc0\x1b\xe7\x8c\x5f\x48\x85\x8f\x0c\xa1\x5c\xb4\x79\xe5\x5a\x4a\x2a\x35\x66\x9a\x23\x42\x3f\xe2\x3b\x99\x20\x38\x35\xcc\xec\xb8\xcd\x10\x1e\xce\x78\x5e\xbe\xfb\x85\xe7\x5a\xbd\xac\x02\xab\x6d\x25\x73\x76\xdb\x98\x49\x6e\x03\xd6\x5f\x89\xb5\xf7\x35\xf1\x0e\xda\x0d\x11\xc9\x99\x1a\x09\x66\xe5\x42\x08\x71\xe3\x08\xac\x59\x12\xda\xf7\x96\x0d\x8f\x78\x4c\x6a\x35\xe1\xe6\xcd\x4e\x17\x65\x91\x05\x2c\xec\xdb\x95\x40\xc7\xe6\x46\xda\xf2\xbd\x0f\x44\xe7\x60\x84\x85\x95\xb7\x12\x8e\x66\xca\xd5\x70\xea\x74\x68\x87\xe7\x89\x4f\xa5\xf6\x3f\x41\xd3\xd4\x41\xfd\xdf\xf6\x6e\xf6\xf2\x6d\xe7\x7a\x0f\x9a\x9b\xce\xb5\x33\x80\x5f\xe7\x82\x38\xa7\xdb\xfe\xbf\xaa\xd1\x2f\x57\xdb\x3f\x59\x45\xaf\xf9\x54\xcd\xb4\x7f\x5b\xf7\xbc\x16\xae\xd8\x4c\x1f\xb9\xcd\xd9\xe8\x13\x55\x98\xcf\xa0\xb6\xb4\x16\x23\x4a\xbc\xd0\xba\x4a\x93\xb3\x91\xaf\xd7\x2c\xd3\x55\xe8\x12\x5d\x45\xe7\xf3\xcf\xd9\x68\x85\xaa\xb2\x5c\xb9\xd4\xa7\x68\x13\xa7\x9a\x98\x70\x7a\xb7\x98\x7a\x4b\xb8\x99\x33\xfa\x77\xa8\x7d\x5e\x66\xfd\x76\xed\x2e\x5b\xb7\xe5\x27\x2d\xc7\x0e\x26\x7a\xca\x9a\x8b\xea\x6b\xae\x6c\xae\xb9\xde\x6e\x64\x75\x59\x35\xab\x1c\xf6\x30\xc7\xcb\xd6\x37\xbc\x7c\x71\x93\x0b\x77\xab\x4a\x11\xa0\xa5\xb9\xb7\x11\x9a\x55\x71\x29\xc0\xfa\x92\x82\xf5\x7d\x24\x8f\xad\x8d\xe5\xec\xf8\xec\x2b\x64\x05\xf4\x27\xaf\x93\x15\x68\xdf\xd0\x6a\xb9\x24\xf0\x73\xc9\x9e\xd6\xa3\x6b\xe7\xef\x21\xc0\x57\xc7\x83\x7e\xf9\xd3\x45\x8f\xac\xde\x2b\xd6\xed\xd2\x9d\x23\xb4\xa2\xa9\x96\x04\x4c\xd1\x55\x8e\x3f\xb0\x3c\x6f\xc9\xa1\xd4\xcc\x93\x54\x89\xa9\xb7\x99\x40\x97\x4a\x40\x6d\x7a\x11\x71\x6e\xef\x8a\xaf\x1d\x59\xf1\x62\xdc\xab\xe5\x5c\x44\xd0\x7a\x87\x92\x6a\x70\xfc\xe3\x3c\xda\x6b\x8b\xc4\xf5\xc5\x52\x2c\x0b\x93\x52\xb7\x62\x4e\x74\xd4\x33\x8b\x15\xa8\xea\x22\x61\x33\xda\xba\xac\xb9\xe2\x2c\x48\xd9\x96\x39\xe5\x31\x9d\x2d\x89\x11\x74\xe8\x46\xe9\x74\xa6\x53\x00\x1a\x7e\x06\x61\x71\xae\xe3\xb1\x7a\xa6\x58\xb5\xea\xfa\x6a\x1a\x5d\xad\xa6\x19\xb7\x8a\xa1\xe7\x57\x3e\x2f\xe2\x4e\x3d\x99\x81\x29\xce\x77\xf4\x8a\x03\x1e\xce\x4a\xd3\x95\x7b\x35\x17\xbc\x37\x76\xf5\xf3\x25\x15\x37\xbc\x4b\x81\x6b\xa6\x8c\x16\x8f\xb0\xd6\x94\xa9\x70\x9c\xd8\xa6\x8e\x21\x8e\x64\xdc\xc7\xf6\x96\xf3\x5e\x25\x56\xd6\x87\x54\x1c\x57\xe9\xd5\x37\xbb\x7a\x7b\xb5\xa3\x2d\x87\xee\x68\x4b\x6f\x2f\x29\x18\xb2\x32\x75\xdb\xcf\xb7\xf4\xd6\xd9\xa5\x82\x97\x97\x3d\x78\x3c\x18\x84\x8b\x30\xd4\x29\x6c\x82\xc7\xcf\xbb\xb4\xcf\xb7\x67\xa5\x8b\xc8\xf0\x62\xb9\x59\x5d\xff\xe2\x9d\x76\x79\xc2\xb2\x21\x66\x57\x14\xdd\x7c\xbd\x78\xf4\xd5\xe7\x3c\xbc\x43\x01\x43\xf1\xba\x3d\xe2\xb6\xf0\xd3\x56\xe3\x6d\xcf\xd5\xd3\x3b\x23\x92\x4a\xc2\x56\x5c\x6b\x9a\xe8\x43\x01\x42\x38\x14\xe7\x8c\xc9\x2f\x04\xbf\xcb\x19\x53\x92\x63\x48\x72\x2c\xde\x10\x7a\xdd\xde\x0a\xe3\x01\x28\xfb\x08\x20\xa8\x22\xb5\x61\xfe\x16\x79\xcb\xba\x42\xe2\x69\xd7\xa4\x05\xfe\xd6\x8e\x0e\x57\x17\xdb\x1a\xae\x03\x48\xb2\x1c\x6b\xbf\x0f\x00\xd0\xb0\xb7\x7b\x62\x74\x48\xf8\xa4\xf6\xa8\xe9\xfd\xd6\x9c\x77\xd7\x07\x48\x6e\x11\x51\xcb\xea\x0b\xef\xb3\xce\xb8\x46\x84\x9a\xe8\x3a\x07\x39\xa3\xf6\x6b\x3d\xf1\xf1\x0b\xdd\x60\x23\x83\xb9\xc4\x09\x50\x78\x01\x48\xc4\xeb\x6c\xe9\x6e\x81\x39\xef\x08\x4d\xd1\x10\x12\xf1\xc1\xe4\x3c\xac\xa0\xb2\xba\xea\x94\xb3\xc9\x54\x71\x8c\xe9\xfa\x7b\xb3\x68\xbc\x9f\x49\x41\x32\xfc\xa4\x9d\x64\xfa\x65\x23\x0a\xec\xf1\x41\x45\xf4\x57\x8c\xbf\xbc\xc1\x54\x86\x81\xcb\x63\x76\xc5\xb2\x39\x04\x46\xc7\x74\x3b\xfe\xb4\xaf\x0d\x0f\x09\xfd\xed\x76\x65\x15\x4a\x44\xa8\x08\xa8\x3d\xda\x11\xda\xdb\x13\xda\x06\xd4\x7e\x32\xe6\x8b\x0e\x62\x79\x6d\x68\x5e\x15\xdf\xc5\x92\xb2\xe6\x36\xae\x6f\xed\x18\x88\xcb\xcc\x80\xca\x38\x1b\x33\xb0\x65\xbc\x2a\xe2\x19\x9a\xa1\x7d\xc5\x78\x85\x1d\x56\x44\x54\x55\xda\x72\x8c\xb1\xea\xae\x8c\x56\x24\xca\x53\x8e\xe1\xa2\x98\x34\x2b\xf7\xa4\x8d\x8d\x8a\x05\xcb\x6f\xec\xad\x5f\x6e\xbe\x04\x61\xdd\x0e\x55\xcd\x36\x86\x61\xb1\x66\xea\x31\x2a\xb9\x3e\xb5\x29\x76\x3d\x31\xea\xfd\xde\x25\x34\xc3\x77\x1b\x5c\x07\xbd\x4e\x2c\x9f\x60\x5c\xd6\xef\x70\x6e\x31\x89\x56\xdd\xf0\x7c\xab\x54\x92\x25\x41\xfc\x9f\x4b\x80\x72\x27\x40\x0b\x2a\x15\x12\x14\x79\xa1\x80\xab\x0c\xa5\xca\x29\x43\xd5\xeb\x02\x97\x44\x67\x75\x05\xb0\x96\x78\x16\x64\x58\xa4\x60\x01\xab\x45\x8d\x6a\x5f\x2b\xba\xdd\xd3\x89\xac\x3f\xb2\x0b\xc6\xeb\xbb\xce\x85\x2e\xad\x73\x11\x98\xdb\x1a\xd4\x3a\x6b\x4e\x66\x6a\xaf\x7c\x23\x9f\x99\xad\xa1\x40\x5e\xe8\x62\x20\x84\x53\x8e\xf1\x64\x2a\x8b\x48\x44\xac\x4d\xad\xc7\x72\x6f\xea\xeb\xad\xf4\x2e\x80\xbc\x65\xfc\x7a\x25\x66\x96\xcd\xca\x0c\x09\x22\xb2\xd5\x44\x34\x24\xdc\xd3\xfb\x2d\x49\x5b\xce\x92\x6b\x40\x65\x26\xb6\xa2\x60\xf4\x1f\x18\xa5\x63\x6b\x15\xad\x3a\x64\xba\x0c\x00\x08\xdd\x0d\xfc\xc6\xdc\xd1\x29\x45\xcf\x88\x98\x10\xd1\x54\x23\xb5\xa0\xc0\x46\x1d\x36\x59\x0f\xa1\xe6\xd0\x77\x6a\xa5\x0c\x62\xc8\x22\xfd\x68\x8e\x3f\x56\x8e\x4d\x2a\xa3\xc6\x5c\xfb\xf3\x77\x57\xa1\x7e\x1b\x90\xc1\x51\x09\x9b\xf2\x18\xa4\xf5\x7a\xa9\xd1\x9c\x2d\xbd\xca\xb4\xad\xe2\x56\x91\xb2\x42\x62\x2a\x8d\xa2\xeb\x50\x75\x92\x0a\x5b\x45\xb7\xfc\xe2\x0b\x52\x7d\x02\x78\xfa\xbc\x72\x2a\x94\x7e\xfd\x13\xf7\xf6\x63\x5c\x9e\xab\xf7\x88\x60\x56\x9b\x62\x01\xf4\x3f\xe8\x73\x59\x15\x62\x02\xc5\x5f\x39\x96\xde\x72\x76\xea\x2f\x67\x47\x85\x85\x74\x54\xb5\x90\x62\xdf\x42\xb2\xdc\x70\x6f\x0f\x57\xbc\x60\xb3\x3c\xeb\xbc\x63\xb2\x73\x21\xd9\xb4\xf3\xdc\x3b\x00\xeb\x1f\xaf\x00\xff\xc5\x66\xbc\xf3\xfc\xc5\x9b\x8e\x16\x2c\x9d\x8c\x61\xd1\xa1\x4c\x76\x46\x1c\x51\xd9\x29\xf9\xa6\x93\x93\x21\x4e\xe7\x69\x8e\x3b\x53\xcc\x15\x53\x6a\x05\x18\x14\x61\x7d\xa7\xeb\x19\x4c\x31\x3c\x32\x06\x13\xe4\x58\x87\x8b\xfc\xb1\x46\xd5\x22\x5d\x0e\xac\x2d\x74\xe2\x0f\xd7\x61\x31\x5c\x87\x4f\x19\xae\x73\xd3\xc4\x97\x1f\xb1\x93\x75\x47\xec\xd0\x8e\x98\x53\x96\x8c\xcb\x54\x5c\xd7\x12\xc5\x4a\x9b\xd0\xc1\x9d\xef\xd3\x56\x53\xb0\xca\x60\x02\x50\x86\x0b\xed\x6a\xaa\xf9\x59\xac\x4f\xb2\xcc\x1d\xfb\x7d\x10\x43\xf1\xc8\x21\x43\x64\xf5\x92\x02\x3f\xa0\x7a\x11\x2e\x20\x1d\xd4\xb5\x13\xfe\x44\xed\x44\x61\xba\x5b\x18\x79\xed\x9b\x68\xeb\x43\xf9\x62\x76\x98\xac\x9f\x08\xfb\x1c\x8a\x59\x81\xf4\xef\xe6\x3b\xa8\x2b\x41\xf7\x9f\x47\xbb\x79\xb7\x44\xbb\xd1\xb1\x20\xb5\x4d\xc1\x8c\x70\x9d\xa2\x78\xfe\x92\x4a\x7d\x58\xce\x9e\x05\x7e\xd5\x12\xe3\x57\x94\x25\x4d\x65\x67\x48\x72\x89\xb9\x5a\xda\xeb\x00\x01\x04\xaf\xc5\x19\xe1\x85\xc3\xe0\x09\x35\xb5\x63\x4d\x21\xff\x77\x22\xc7\x6f\x30\x52\xfd\xb9\xc8\x91\x68\x5c\x70\x0b\x54\xa1\x65\x2b\xb7\xfa\xd6\x1e\xfe\xb7\x0b\xc2\x67\x38\x01\xfe\x7e\xde\xa2\xd0\xed\xce\xea\xf4\x69\x1c\x5e\xaa\x15\xb0\xd7\xc9\x78\x03\xd2\xb8\x0d\x61\x69\xc0\xa2\x57\x09\xca\x3e\xd0\x81\x81\xfd\x7e\x1f\x3f\x33\x43\x9a\xb8\xfb\x5f\xbc\x91\x28\x74\xaa\xf2\x6a\x30\x4d\xe6\xe2\xb5\xbe\xfb\x85\x16\x1d\x43\xb5\x4b\xbc\x2a\x68\x3d\x13\x11\xc7\x3a\x45\x76\x10\x26\x62\xbd\x3b\x0d\xd6\x9b\x53\x9f\x6e\xf1\x7c\xf9\xbd\x9c\xc6\x5c\x5c\x47\xdd\xe6\x8f\x69\xd9\xba\xbb\x0d\x9e\xb1\x85\xa3\x22\xcf\xd4\x07\x55\xca\x30\x4e\xf1\x29\x9b\x53\x34\x21\x69\xf9\xa5\xb1\x16\x78\xbb\x1b\xad\xf0\x40\xe8\x0e\xc4\xb5\xdd\x75\xa2\x54\xf0\x04\x47\x3a\x7f\x99\x46\x33\xc1\x91\xbe\xfc\x1a\x12\x71\x66\x1a\x4f\xb6\x7b\x8b\x85\xdb\xda\x6e\x69\xcf\x47\xf2\x73\x34\x17\x2f\x16\x61\x8b\x91\xb0\x99\x99\xb4\x91\x49\x61\xb5\x1d\xbd\xd4\xff\x5b\x39\xf3\x95\x33\xa3\x5d\x7c\x13\x6a\xd9\x3a\x9b\x00\x9e\x20\x2a\xc3\xb2\x57\x07\x01\xb1\x0c\x8b\xee\x90\xf1\xae\xa5\x45\xbd\x00\x65\xdd\x1c\xa3\x0c\x17\x05\xbe\x82\x0c\xd2\x9e\xad\xd1\xd2\x4d\xe3\x95\x09\xa7\xda\xf2\x31\x01\xf3\x17\x28\xc6\x1f\xb9\x10\x21\x33\xbf\xca\x9f\x17\xb2\x19\x25\x6a\x69\xb4\xc4\xee\xd7\x5f\x5d\x1a\x85\xc0\x4d\xda\x17\x8a\xc6\x6b\xc3\xaa\x9e\x58\x2e\x01\x87\x3a\x88\xfe\x20\xde\x6f\x87\xa4\x1b\x59\x75\xe9\x93\x57\xca\x5d\xce\x01\x0e\xe2\x7d\x50\x00\x3e\xf8\xbc\x80\x0f\x2c\xe0\xc3\x38\xfe\x9c\x80\x0f\xe3\xd8\x02\x7e\xc7\xde\x68\xc6\x7c\xca\x28\xb9\x14\x0d\x6c\x58\xe6\x3e\xd0\x47\x98\x38\xbb\x35\x7b\xff\x75\x67\x49\x13\x6a\xdd\xab\x6b\x32\xb1\x68\x66\xd5\x17\x03\xdf\x80\xf0\xd9\x72\x9f\x6e\x11\xcd\xa3\xe1\x2e\xc2\xa4\x12\x39\xf0\xf0\xb0\xbc\x62\xca\xa8\x60\x39\x8e\x6e\x11\xa7\x01\xf8\xe5\xdd\xf9\xcb\x17\xef\xff\xf6\xf2\xfc\xf9\x8f\x6f\x5e\x76\x5e\x9e\x9f\xbf\x3f\x4f\x00\xc4\x8e\x67\x16\x1b\x0a\x0e\xe3\xb1\xf8\x9a\xea\x3f\x11\xaf\x18\xbf\x22\x59\xb6\xf6\x5d\x10\x0d\xec\xed\xdf\x25\x92\x6f\x85\xb7\xb8\xf8\xa4\x33\x36\xfd\x4e\xc7\xc1\xeb\x04\x70\xb3\x1f\x7a\x27\xc3\x2b\x72\xac\xb8\xf8\x4b\xef\x8b\x99\x5b\x05\xbd\x7c\x5f\x36\xdf\x14\x80\x6b\x9b\x4e\x90\xd1\x7c\xfe\xc1\x78\x65\xb5\xe5\x0f\xa6\xe5\x03\x58\x40\xbf\xbd\x9e\xbe\xdb\x51\x29\xe5\xc9\x49\xad\x85\x09\xcb\xc8\x70\xfe\xda\xa8\xb9\x75\xc3\x2b\xb6\x28\xaa\xe2\x0d\x61\xd8\x98\xaa\x97\x40\x8c\x19\x97\xaf\x95\x1e\xac\x35\x20\x73\xf3\x52\x15\xcb\xed\x1e\xbc\x21\x82\x5c\xe5\xb8\xf4\xa1\x2c\xf3\xe4\xfa\xbe\x09\x73\x19\x63\x09\xc8\xbc\xa8\x41\x5f\x2a\x3f\x6a\xe5\x8c\xa7\xd3\x83\xe6\xfb\x00\xbd\x56\xed\x05\x91\x2b\xfd\xea\xcd\xde\x00\x57\x4b\x13\x6f\x1d\xef\xba\xb1\xd8\x96\x53\xa4\x52\x49\x43\xf5\x9d\xf2\x6b\x92\xd0\x78\xc1\x6f\x91\xb0\x94\xc0\xcb\x93\xf4\x35\x2b\x97\xc6\x6e\x05\x40\x69\x6e\xea\xbd\xc6\x65\x68\xe8\x84\x51\x05\x06\x4a\xd1\x5c\xc7\x0f\x6f\x2a\x79\xbe\x77\x5d\x31\x2c\x4d\xbd\xd2\xd4\xe5\x44\xbd\x5a\xd2\x78\x66\xbe\x6e\xb8\x0b\x60\x6b\xb5\xb9\xfe\x2b\xbe\x36\xcf\x47\xda\x88\xc6\x5c\xdb\xdf\x66\x42\x33\xf5\x4d\xe8\xc5\x88\xbe\xd2\x04\x5f\x92\x7c\xaf\xc1\xf7\x78\xcd\x40\xc5\xa6\xd4\x6d\xb1\x70\x73\x96\x21\x31\x8e\x74\xac\x5d\x19\xa9\xfd\x34\x51\xdc\xd0\x4d\xff\x35\xd5\xe9\xbf\x50\x4e\x7e\x6b\x0a\x6a\x88\xa0\xf8\x5c\xc2\x9a\x2d\x15\xd6\xa5\x88\xf6\xf6\xee\x2c\x3d\xca\xd2\x55\xed\xb4\x24\x5d\xb1\x41\xa0\xe6\x39\x6d\xd1\x12\xab\x76\xb6\x2e\x01\x42\x93\xae\x6e\x75\x51\x53\x04\xd4\xf4\xdf\xcf\xbe\x6e\xfc\x6b\x6a\x32\x31\x03\x1d\xf9\xa1\x9e\xcd\xd9\x9c\x62\x6f\xfb\x5f\xd3\x33\x24\x51\x8a\xd5\xe8\x27\x20\x4b\xbf\xd2\x5a\x42\xdc\x32\x62\x8e\xfa\x1a\x84\xf4\x9a\xe2\x7a\xe0\x21\x5f\xc7\x1b\x94\x57\x04\x9a\xc2\xda\x45\x9d\x61\xc7\x7b\xd9\xff\x72\x54\x0e\x03\x60\x41\x02\xef\x66\x41\x03\xf8\xb1\x6a\xba\x94\x5f\xcd\x43\xe2\xb1\xba\x65\x51\x10\x16\xd7\x1f\xb6\x67\xc9\xa6\x6d\x6a\xb7\x17\x1e\x4f\xff\x7f\xf6\xde\xbd\xbb\x6d\x5b\x59\x14\xff\x3f\x9f\x82\xe6\x5a\xd7\x47\x3c\x25\x61\xbe\x44\x3d\xba\xb5\x7d\xd3\xa4\x3d\x49\x4f\xd2\x9d\x15\xa7\x3e\xbf\x7d\x7c\xbd\xf6\x82\x45\xd8\x62\x42\x91\x2a\x49\xc9\x71\x6c\x7d\xf7\xdf\xc2\x00\x24\xc1\x37\xe5\xc8\xa9\xdd\x9d\xd5\x46\x96\x88\x07\x31\x83\xc1\x60\x5e\x18\xcc\x58\x02\xba\xcb\x28\x5c\x0e\x02\x72\x2d\x9d\x10\x7e\x1c\x90\xb5\x64\xa9\x85\xa0\x1b\x0e\x27\x64\x23\xe4\x99\x85\x9e\x15\x62\xe2\xfb\xe5\x8a\xe1\x51\xec\x29\xde\x54\x80\x35\x83\x54\x19\x14\x35\xa2\x40\x25\xa8\x38\x1f\x0a\x84\x8c\x06\x3c\x79\x6f\x93\xed\xe5\x13\xb9\x99\x12\x9e\xe1\x95\x5d\x6e\x9b\xe2\x89\xcd\x4e\x27\x19\x41\x0f\xb2\x17\x78\x09\x0c\x0c\x4c\x98\x3c\x61\xec\x6b\xf1\xe1\x56\x65\x35\x23\x82\xdd\x9b\xac\xca\x7b\xf8\x95\x96\xb1\x7b\xec\x78\xd1\x4b\x38\x22\xad\xa6\xfd\x13\xdf\xbb\xf2\x80\xdf\x65\xbd\x67\x8f\xb2\xf6\x11\xf6\x02\x71\x04\x2f\xd3\x07\xdb\xf3\x1c\x30\x81\x7e\x1e\x88\x0a\x84\xd5\xb4\x3f\x32\x10\x68\x79\x17\x5a\xc8\x9b\xdd\x9b\x20\x98\x64\x42\xdc\xdf\x6a\x35\xf6\x1c\x67\x72\x91\x00\xc5\x07\x27\x3c\xaa\xa7\x66\x58\x8d\x16\xef\x42\x67\xe9\xf9\x94\x62\x8f\x95\xbb\x36\xf3\x6e\x55\x3c\x4b\x04\x05\x59\x20\x20\x45\x8d\x0b\x45\x19\xd5\x28\x6a\x38\x4b\xd0\xb5\x97\x2c\xc2\x75\x52\x6c\x92\x3f\xcd\x6b\x17\xcc\xe5\x0c\x0b\x0c\x53\x35\x07\x45\x0f\x06\xe9\x9d\xf0\x87\x87\x07\x44\xb8\x07\x94\x1b\x4d\x45\xb6\x71\x78\x38\x38\x18\x84\x79\xf5\xb0\x52\x3d\x66\x9e\xf3\xb4\x6e\x90\xd7\x0d\x2a\x75\x8b\xb4\x78\x78\x38\x18\x1c\xe0\xbb\xbb\x03\x5e\xea\xc5\x3f\x67\x30\x2a\x87\x87\x07\x83\xf8\xf0\x30\x2f\xcb\x96\x8f\xa2\x00\xf1\xf4\x91\xd6\x0b\xc4\x72\x6f\x41\xbd\x8e\xd4\x1a\x44\x74\x51\x31\xae\x6f\x50\x11\x3c\x90\xd0\x06\x76\x96\xe4\x17\x3c\x27\x49\xbe\x79\xd4\xb9\x76\xe9\x32\x24\x95\x95\x97\x28\xe2\xcd\xb0\x54\x5c\xfd\xad\xf6\xd8\x50\x8d\xa0\xca\x87\x85\x52\xad\xbc\x22\x61\x86\x5d\x12\xe6\x65\x44\x08\x24\xc0\xaa\xf3\x9f\x64\x85\x0d\x4d\xbe\x99\xfb\xb5\x5b\x4b\xef\xef\xcc\x2c\xca\x49\x7d\x02\xb7\x74\x15\xd0\xf1\x4b\x0a\x77\x83\x49\x74\xb7\xe8\x3d\x96\xd6\xfe\x4f\xb3\x05\xed\x60\xdc\xfd\x18\x5e\x40\xe8\xf1\x0a\xcf\x09\x43\x11\x7c\x95\xb7\x6a\xd1\xa0\xa4\x16\x2b\xa6\xb7\x3c\xed\xe6\xe7\xa3\x68\xf9\xae\xee\x70\x75\xa7\x7d\x92\x28\xaa\xfa\x68\x42\x40\x69\x7d\x98\x5c\xb1\xc3\x12\x87\x7b\x68\x7d\xe7\xc3\xcd\x8a\x4c\xf9\xa5\x3a\x4c\x62\x5f\xc7\xd3\x74\x9b\xaa\xea\x3b\xea\x1f\xab\x77\x11\xb9\xf4\x3e\x83\x49\xed\xd2\xfb\xdc\xac\x01\x19\xfa\xb7\x51\x81\xa8\x7c\x78\xb9\xfe\xf2\xe5\xe6\x64\xa7\x0e\xea\xda\xfe\x1c\xf0\xb8\x7b\x3d\xc3\x8c\x88\x95\xaa\x1e\x95\x63\x43\xd0\xa9\xa0\x61\x97\x7e\x03\x29\x8e\x4a\x1a\xd5\xba\x5b\x13\xe3\x91\x77\x7b\xd0\xa9\xb2\x0e\x38\x04\x5d\x8d\x59\xb5\x5c\x19\xfb\x50\x73\x2b\x58\x93\x8e\x71\x01\x41\xc8\xa9\x68\xff\x13\xfc\x4a\x25\x7f\xc8\x98\x41\x12\x02\xc7\x8a\xb3\x3a\xef\x0a\x4f\xb3\xba\x24\xf2\x42\xd7\x9b\xe7\xd5\xd2\x07\x69\x0d\xbe\x4c\xb3\x0a\x27\xfc\x77\x56\x0e\x4b\x3b\x2f\x66\x3f\x45\x1d\x83\x4f\x44\x4f\xc8\x56\x69\xec\x47\x36\x20\xf6\x3b\xd3\x99\xd2\xa3\x90\xa9\xd6\xc4\x7f\x67\x7a\x0f\x64\xc6\x4a\x75\x1e\xfa\xa3\xa7\xbe\xc3\x4d\xab\xbf\x86\x17\xed\x5a\x4f\x41\xd5\x11\x1b\x55\x14\x9e\x18\xcc\x87\xee\x7a\x4e\x06\x45\xf1\x22\x73\xe6\xe6\x99\x7b\xd4\xb3\x73\x45\x51\x71\x41\xa7\xfa\xf6\xda\x12\x6e\xd3\x96\xf0\xbd\xd5\x67\xbe\x20\xee\x8b\xf1\x23\x74\xa6\xa1\x7f\x9d\x1f\xa5\x81\x3b\x35\x48\x67\xd6\xd2\x7a\x6c\x7b\x97\x83\x00\xbc\x66\x54\x40\x4d\xe3\x08\xd1\x12\x7c\xfd\x47\x03\xf4\xc3\xb1\xc2\xba\x57\xce\x8c\xf3\x67\xe4\x0c\x9f\xcf\xe8\xc7\x31\xfd\xf8\xc1\x98\x1a\xdb\xfc\xa8\xfd\x2d\x05\x29\x4d\x8b\xff\x89\xdc\xc4\x03\xdc\x88\x0d\xc6\xcc\xa7\x44\x9d\xc3\x45\x6c\xf8\x8c\x9c\x6f\xb7\x4a\x45\x2b\x22\x05\x6a\x58\x07\xc9\xdf\x0d\x48\x17\x1e\xa6\x90\xf1\x4d\xe1\xeb\x28\x80\xb3\x9a\x8e\xd9\x8f\xc4\xd9\x67\x4d\xd8\xcc\x87\x99\x55\x3a\x1d\x4d\x2b\x0d\x20\x56\x2b\xbb\x2b\x27\xbf\x89\x82\x17\xc8\xd2\x40\x48\x35\xc6\xe0\x56\x65\x45\x56\x18\xd5\x08\xf3\xdb\x60\x64\x07\x0d\x9b\x7d\x65\x76\xf6\x15\x8e\x40\x6f\x68\xc9\x7c\xc1\xef\x74\xca\xc4\xbe\x34\x43\x68\x29\xf3\x05\xaf\xc6\x4e\x7d\x67\x52\x20\x64\xc1\xb8\xbb\xcb\x64\xc1\x67\x55\xff\x45\x9e\x3a\xbb\x3c\xc7\x41\xa6\xf9\x92\xbb\xbb\x80\x6b\xb9\x85\x9e\x67\x33\x2a\x50\x36\x13\xc7\x01\xbf\xc4\x83\x81\x99\x86\xd0\xcb\x4a\xc1\x24\x51\x8b\xaf\xf2\x1a\x93\x0b\x9b\x6a\xd9\x2c\xb1\x8e\x9b\xec\x12\x72\x89\x30\x3a\x2d\x15\xb4\xfb\x5a\x43\xc5\x3a\xee\xb0\x54\x14\x8a\xd8\xdb\x0a\xe8\x16\x41\x2a\x63\x2c\x86\xe5\x5e\x6f\x5f\xe0\x13\xec\x7a\xf1\xca\xc7\x37\x4c\x5c\x48\x0f\xca\x1f\xf0\xfc\xe7\x59\xbb\xa4\xd2\x2e\x37\x34\x88\x4d\x04\x7b\x43\x5c\x36\x32\xa4\xa7\xd9\xeb\x56\xbb\x60\x9c\x20\xca\x56\xe8\x93\x49\xd7\x71\x4e\x25\xd9\xd2\x3f\x18\xe0\xfc\x65\xb8\xb1\xe7\x50\x8c\xd9\x24\x2c\x2e\x68\x17\x63\xc5\xaf\x4c\xca\xbe\x9f\xad\xa2\x86\x06\x1b\x4d\x15\x27\x8b\xf0\xda\x0b\xae\x5e\x92\x95\x1f\xde\x2c\x49\x90\xbc\x24\x09\xf6\x7c\xf0\xda\xee\xd7\x0c\xf1\x6b\x78\xd1\xcb\x0a\x41\xf5\x06\xf4\x31\xbc\x90\xd5\x74\xbd\xf9\xd8\x0b\x5e\xbb\xb2\xb2\xb3\x39\x02\xd4\xbf\x8f\xe1\x85\x18\xef\xb9\x8f\x60\x83\xba\xf4\xf4\xc9\x42\xcb\xd8\x89\x16\x91\x98\x24\x70\x95\x52\x55\xff\xdb\x97\xf6\x17\xef\x14\x99\x80\xbf\x51\x8c\x42\xa3\xde\x64\x0e\x77\xd3\x9b\x3e\x86\x17\x6d\xae\x33\x10\xf5\xbf\x22\x50\x81\x65\xf5\x80\x33\x5f\xbf\xa5\x2a\x13\xde\x39\x3c\xa1\xdb\xa7\x2c\x52\x1e\x04\x9d\xf6\xe1\x02\xf8\xcf\x88\x2c\x78\x20\x17\x77\x71\xc9\xc6\xbd\x97\x2c\xd4\xf2\x92\xe6\xc0\xc8\xdd\x56\xde\xfe\x4f\xd5\x37\xaf\xba\xdb\x0e\xda\x05\xee\xc6\xf1\xc0\x32\xa8\xb7\x55\x16\x10\x41\x19\xf6\xcf\x2e\x9c\xc5\x86\x9c\x37\xae\x57\xbd\x18\xe1\x63\x78\xc1\xef\xd2\x0b\xc8\xf5\x4b\x01\x89\xbf\x9e\xfc\xe3\x37\x14\x43\xcc\xa3\x77\x79\xc3\x6f\x22\xc9\xca\x21\xc6\x58\x35\x95\x62\x3a\x25\xfe\x32\x96\x16\xa9\xf6\x74\x7e\x7d\x6d\x03\x6a\x9f\xac\x2f\x96\xe2\x08\x5b\x4f\x25\x09\x6c\xbf\xc4\xa2\x0a\x86\xc0\xa4\x72\x49\x67\x2f\xdb\x28\x27\xa9\x74\x93\xeb\xd8\x05\x9e\x20\x4d\xc9\xf7\x30\x18\x03\x52\x08\x1d\x5d\x9f\xad\xb1\x11\x29\x2d\xbb\xe8\x63\x8c\xca\xbb\xf7\x49\xa5\xaf\xde\xb0\x04\x54\xb7\xae\x78\x71\x4a\x7a\xec\x16\xc5\xea\x69\x68\x56\xd7\xab\xc4\x2d\x63\xb7\x30\xa2\x8c\x74\x6a\x0c\xeb\x4f\x61\x25\xed\xe0\xac\xd8\xa7\x6f\xa8\x87\x40\xd3\xeb\xd8\x7f\xe5\xd8\x27\x4b\x63\xba\x8b\x68\x8d\xf2\xfc\xa8\x99\x94\xcd\xf6\x24\xc2\x33\xf0\xdd\x43\x58\x6f\xe3\xda\xa4\xac\x6f\xf3\xc0\xba\xdd\xd3\x54\x64\xc4\x27\x82\xf0\x5d\xa2\xff\x33\x24\xfa\x87\xf5\x84\xd4\x04\x16\x7f\x97\xcf\x1f\x91\x7c\xbe\x21\x51\xfc\x15\x42\xc3\x5f\x4c\x92\x8a\xd6\xc1\x9f\xe8\x7e\xff\x56\xa2\x76\xa7\xbf\x9d\xdf\x1f\xdc\x93\x23\xff\x89\x34\xf0\x27\x45\xf1\x7e\x35\xcf\x2d\xc7\xdf\x7a\x31\x3b\x5c\x55\xc7\x6f\x4b\xf1\x14\xdd\x5c\x2d\x05\x83\x33\xa8\x36\xc0\x1b\xa5\xc7\xce\xe5\xc2\x49\xa4\x2a\x3c\x7e\xeb\x90\x15\x36\x8e\x3e\x21\x0f\x29\x55\xf7\x89\x7a\xa8\x74\x5b\x0c\x7c\xb8\xd7\x72\x3a\x4a\xaf\xe3\xfe\xd3\x90\xc5\x1c\x31\x1f\xf0\xc5\x54\x4e\xf0\x55\x2c\x73\x12\xf9\x80\xaf\x9a\x53\x32\x5d\x35\xa6\x25\x2a\x24\x5e\xba\x82\x7d\xf7\x76\x9b\x7a\x17\x44\xc7\x1e\x29\xb9\xb8\x92\xe2\x09\xed\x44\x65\x20\xc1\x6d\xc0\xdb\xb6\x53\x1b\x31\x49\xe8\xe0\xeb\x4f\x56\x64\xc0\xd5\xec\x87\x3d\xa6\x08\xf6\xb3\xf8\x08\x8e\x19\xff\x99\x31\x58\xed\x29\x9b\x5b\x75\x9e\xd6\x54\xd0\x31\x99\x47\xa4\xc2\x33\x22\x82\xdd\x78\x20\xb3\x04\xea\xac\x8a\xcc\xd3\x46\xbf\x8e\x4f\xb1\xef\x41\x9a\x47\xfe\x9b\x5f\xca\x9d\x3d\x61\x79\xb0\xd8\x21\x5e\x10\x09\x4e\x60\x00\x15\xb3\x12\x7d\x8a\xd6\x81\x1f\x62\x97\xa7\xf0\xcb\x66\x74\xee\x13\x1c\x7d\xa0\x9d\xbd\xcb\xb2\xc2\x55\x3a\x48\x47\x97\xe4\x75\xe8\xc2\x07\x78\x18\x52\xb7\xb9\xbd\x4b\xac\xb3\x3b\x1c\x69\x47\x39\x38\x74\xb8\x1b\x12\x79\x97\x37\x30\xcc\xfa\x84\x7f\xb9\x73\x8e\x0e\x4a\x4d\xf7\xae\x2b\x92\xfc\xe3\x3a\xe0\x49\xa1\x15\xe4\x87\xe1\xa7\xf5\x6a\x20\x63\x17\x43\x3e\x36\x78\xb9\xac\x08\x49\x0a\x0b\xf3\xa0\x26\x8a\x1a\x80\x6b\xea\x84\xf8\x97\x83\x9a\xcb\x62\xd2\xc0\x48\x16\x56\xeb\xca\x94\xe4\xb9\xcf\x15\x00\x18\x50\xf2\x13\x41\xe1\x56\x17\xc2\xe7\x84\xf6\xcd\x80\xe7\xaf\x96\xd5\x00\xfa\x68\x43\xa3\xde\x81\x46\xbc\x55\xb6\x35\x8e\xf3\x22\x68\x6c\xda\x14\xb5\xe3\x5d\xd5\x29\xd3\x6b\xa6\xac\xa2\x7e\xd6\x2e\xf7\x34\x35\xa1\xc6\x13\x65\xd6\xc5\xb6\xf2\x22\x8d\xd5\xad\x36\xf9\x6a\x51\xa7\xb1\x41\xea\x0c\x57\x6f\x49\xb0\x5e\xb2\x9b\xed\x29\xb4\x57\xa4\xee\x12\xf8\x4c\x04\x62\x4e\xfe\x46\x58\x71\xe0\xd6\x81\x99\x44\xeb\x64\xa1\xa5\x95\xc4\xca\x8f\x11\xc0\xe6\x3e\x01\xbc\x9e\xfd\xe1\xc0\xed\x42\xd6\x6a\x45\xea\xf1\x05\x39\x81\x21\xeb\x6d\x15\x69\xac\xd1\x13\xc3\x1b\x87\xb4\x2f\xea\xa0\x7a\x17\xf6\xa2\x08\xdf\xec\x8a\x3c\x68\xf3\xc4\x70\xc7\xe0\xec\x8b\x3a\x5a\xbb\x03\x73\x73\xbc\x24\x10\x64\x5c\x87\x3c\xdf\xd3\x98\xb3\xa7\x82\xbc\xac\xd9\xd3\xc2\x5f\x0e\x6d\xcf\x4e\xd3\x06\x9d\x58\x0c\xe6\xc4\xd7\xb0\xef\x77\xe4\xe9\xae\x6b\xf1\x18\x51\xd8\x0e\xec\xca\x4b\xf0\xbd\x88\x26\x6b\xf8\x18\x61\x6e\x23\x9b\x1c\xe2\xde\x84\x93\x36\xe9\xc2\xe6\x62\x1d\x7c\xda\x91\x75\xb1\x36\x4f\x0c\x87\x0c\xce\xbe\xe8\xa3\xb5\xbb\x30\xe7\xe3\x38\xf6\x2e\xeb\xf9\x7e\x0b\x15\xa6\xcd\x9e\x18\xfe\x32\x68\xfb\xa2\x90\x37\xe8\xc2\x22\x8b\x76\xdc\x95\x02\x79\xab\xc7\x88\xc3\x2e\x68\xd7\x49\x3d\xe3\x6a\x87\x96\xb6\x7a\x8c\xd0\xb6\x50\x4c\x0a\x6b\x5f\x82\x61\xf5\x3b\x31\xc8\x32\xfc\xef\x8c\x42\xde\xec\xa9\xe1\x30\x85\xb6\x37\x12\x59\x83\x2e\x2c\xc6\xb1\xc6\x13\x29\x34\x19\x7b\xb2\xd4\x7b\x49\xe1\xac\x81\x58\xc5\xbb\x1c\xb0\x63\x06\x5e\x0c\x7f\x07\x24\xbb\x2f\x8a\x6c\x07\x44\xb9\xbb\xab\x04\xd0\x1f\x0c\x4e\x6e\x96\x17\xa1\x8f\xbc\x84\xa5\xf0\x93\xbc\xd4\x5e\x06\x0d\xe4\xb3\x10\x7e\x48\xcf\xa3\x2b\xb8\xfd\x21\x3e\x97\x67\xb3\x34\x54\x7e\x15\x85\x49\x98\xdc\xac\x48\x96\xfa\x0c\xcd\xb1\xef\xd3\xf7\xf2\x17\x73\xf3\xf9\xd9\xb9\x8a\x67\x07\xba\x1a\xcf\x0e\x0c\x35\x4c\xad\x4f\x49\x74\x03\x99\x01\x21\x33\xbe\xea\xcf\xc8\x59\x69\x30\xe7\x03\xe5\xc7\x83\x01\x9e\x0d\xa2\x19\xcb\x39\x3e\x50\x14\xe4\x86\x01\x51\x0e\x0f\x07\x01\x5a\xad\xe3\xc5\x20\x42\x40\x0c\x8a\x7a\x90\xdc\xdd\xa5\x51\xbb\x07\xb3\x59\xa2\xfc\x48\x5f\xa9\xfc\xb8\x65\xd9\xff\x3c\xe5\x36\xa6\x43\x08\x67\xde\xf6\xd2\x0b\xb0\xef\xdf\xdc\xd2\x01\xe0\xbb\x3b\xaa\xb9\xcf\x66\x3e\x62\x43\xbe\xbb\x4b\xbf\x0d\x94\xac\xa6\x77\x39\x88\x15\x96\xb7\x2b\xdc\xa6\x27\x07\x82\x2d\xe0\x51\x40\x6b\x9a\xdb\x2b\x20\xd7\xd2\x87\x9b\x15\x81\x7c\x62\x03\x99\x5b\x0c\x24\x9c\x24\x64\xb9\x4a\xa4\x24\x94\x5c\x12\x27\xd1\x7a\x9e\xac\x23\x22\x05\x61\xa0\x01\xc8\x17\x3e\xc9\xd2\x93\xc9\xca\x96\xbe\x3f\x9d\x75\x31\x12\x98\x52\x80\xa1\x9c\xe9\xe7\x28\x22\x2b\x1f\xcf\xc9\xe0\xe8\xff\x1d\x1d\x5d\xa9\xb2\x26\x2b\xc8\xc5\xf1\x02\x0e\x03\x0d\x94\xed\x3d\x0c\x84\xf3\x98\x25\x8f\x98\x05\xed\x61\x32\xaf\x80\x72\x11\x23\xe0\x41\x50\x8a\xf6\xa8\xa6\xea\x4a\x29\x3d\x1b\xde\x8e\xdb\x74\xde\xee\x69\x71\x0c\x01\xde\xbe\xbd\xa6\x2d\x3a\x78\x86\x4b\xe6\x3b\x32\x5d\xda\xe2\x89\x61\x8f\xc2\xd8\xbb\xbf\x79\x17\xc6\xa2\x70\xb5\x2b\xca\x68\x93\xc7\x88\xb3\x36\x38\x19\x54\xab\xf0\x9a\x44\x1a\x3b\x70\xa1\x79\x71\x5d\x60\x4b\xb5\x62\xaf\x3e\x1e\x23\x3e\x9a\xfb\x04\x48\xde\x51\x40\x4e\x00\x8e\xd7\xf1\x7f\x31\x4c\xf4\x7c\x47\x43\xfb\x7b\xcd\x01\xfb\x46\x6a\x0d\x7b\x3b\x4c\x43\xd6\xcd\x53\x9f\x89\x93\x0c\x1f\xf7\x9e\x8c\xb4\x8b\xae\xf9\xf8\xa3\xbf\xf1\x19\xae\xef\x7a\x6a\xb8\x85\x31\xf7\x46\x23\xad\xdd\x81\x31\x76\x6e\x48\xbb\xd8\xd5\x90\x9a\xb7\x7b\x8c\x18\xec\x86\xf8\x5e\xe0\x3e\x41\x58\x03\xf7\x3e\x73\xcb\x5a\x3d\x39\x68\x7d\x2a\x7a\x37\xdc\x9a\xd8\x0c\x2d\x6f\xf5\x18\xa1\x6d\xee\x33\x83\xb5\x67\x9f\xbc\x7e\x17\x06\xc3\x68\x89\x13\xed\xe2\x26\x21\xdf\x95\xd4\xef\x4a\x6a\x41\x49\xbd\x87\x9a\xc9\xc8\xe9\x27\x4a\x4d\x33\xdc\x14\x74\x77\x26\xff\xc4\xc8\x4d\xfe\x6f\xef\x27\x59\x95\xdf\x7a\x3f\xc9\xe7\xcf\x32\x1a\xc3\x94\x9c\xf8\xb1\xff\x54\x23\x7e\x86\xef\xee\x06\x78\xa6\x2b\xcf\xd2\x39\x8b\x67\xfa\x8f\xf8\xef\x33\x43\x37\xed\xc3\xc3\xf8\x6f\x29\xf2\x35\xe3\x47\x05\x1f\xc1\x63\x35\xfe\xe1\x07\x1e\x2a\x94\x9f\x69\x7f\x8b\x93\x05\xba\xf4\xc3\x30\x1a\x60\x45\x95\xa5\xfc\x5c\x7b\x70\x16\x9f\x2b\x5b\x31\xb8\xba\xa8\x0b\xe3\xce\xe0\xd7\xd2\x9a\x72\x71\xd9\x02\xb9\x0c\x6b\x3d\xfc\xa2\x31\xe0\xfb\xea\xfa\x77\x59\x5d\x75\xf4\x1e\x64\xf4\x5e\x77\x73\x00\x56\xf8\xfa\x1a\xc8\x6f\xdf\xbe\x7d\x2b\xbd\x54\xa5\x7f\xfe\xf3\x9f\xff\x94\xbf\x62\xa5\x7e\x68\x5c\xa6\xfb\x5a\x04\xeb\xa8\xfb\xca\x8a\x72\xdd\xef\x0b\xe4\xfb\x02\xb9\x17\x51\xf7\x36\x6c\x0a\xc4\x80\xd9\xe2\x8b\xf3\xc5\xa7\x86\x33\x8c\xd6\x81\x97\xc4\x6a\x34\xc3\xc8\x0f\x83\xab\x5f\xc2\x68\x59\xbb\x26\x63\x35\x54\xa3\x1e\xa7\xe2\x4a\xcb\x62\x19\x06\xc9\x42\x2b\x1f\x2e\xfd\xbe\x3f\x7c\x27\xff\xbd\xed\x0f\xd2\xcb\x97\xd2\xab\x57\xd3\xe5\x72\x1a\xc7\xd2\xff\xfe\xef\xd7\xec\x12\x6f\x29\xb5\x3e\xf8\x56\xb1\x22\xd1\x9c\x04\x09\x1c\x7f\xe8\xa3\x88\x30\xa4\x24\x2a\x9e\xe1\x94\x42\x39\x0d\xfc\xdd\x38\x3c\x64\xe3\x3b\x98\xe5\x85\x67\xc6\xf9\xb1\xf8\x63\x7a\xbb\x55\x61\xd5\x9f\xe9\xe7\x0a\xac\x79\x76\x99\x2b\x2d\x87\x85\x9f\x84\x09\xf6\xd3\x60\x73\xfd\x6f\x83\x84\x52\x63\xd6\x6f\x74\x1c\x0c\x22\x65\x9a\xfd\x0e\x8f\xe3\x1f\x82\x41\xa8\x4c\x63\xe5\x38\x3e\x8a\xa6\xba\x72\x78\x98\xfc\x0d\xe9\xc6\xb1\xfc\x37\xc9\xf8\x3f\xf2\x14\x44\xcf\x28\x5c\x07\xee\xc0\xd0\xf5\xff\x4c\x94\x1f\xe4\xff\x23\xd7\x7b\x82\xbc\xf8\x37\xfc\xdb\x80\x28\xc7\xfa\xf4\x07\x72\xff\x79\x7b\x97\x61\x74\x96\xec\xc2\x1d\x93\x5d\xd9\xd9\x77\x46\xf6\x9d\x91\x3d\x24\x23\x53\xa5\xff\xf8\xe7\x3f\xf7\xc5\xcd\x1e\x8e\x91\x81\x1b\x65\x77\xeb\x5b\xd6\xec\x31\x1a\xa4\x5a\xe1\xad\x8d\x27\xaa\x37\xbe\x5f\x3d\xce\x28\xa2\xe6\x3e\xaf\xfa\x77\x77\xd5\x8d\xa8\x5a\xbf\x78\x13\xa6\x9e\x9a\x33\xfc\x6a\x87\xf0\xa3\xab\xce\xd0\xa3\x05\x8e\x35\xca\x28\x77\x5c\x45\x59\xb3\xa7\x85\xbb\x05\x8e\x7f\x03\x60\x7b\xf6\xc9\xeb\xf7\xc0\xe1\x2a\x22\x1b\x2f\x5c\xef\x1a\xc2\x55\x68\xfa\xe4\x70\xf9\x2e\x03\xba\x3f\x3e\xd3\x36\x5d\x38\x4d\x96\xbe\x16\xe3\xcb\x5d\x43\x5c\xf2\x76\x4f\x0c\x9b\xc9\xd2\x3f\x01\x70\xfb\xa2\x92\x37\xe8\xc2\xe3\x7a\x89\x83\xdd\x23\x85\xb2\x66\x4f\x0c\x8b\x19\xb4\x7d\xb1\xc8\x1b\x74\x60\xd1\x0b\x76\x0d\x13\xa2\x2d\x9e\x16\xee\x00\xc6\x9e\xfd\x79\x41\x57\x98\x90\x17\xf8\x5e\x40\xb4\x78\x73\x55\x87\xb8\xbc\xb4\xb6\x41\xde\x5d\xbc\xb9\x2a\xf3\x45\x35\x10\x74\x1b\xfc\x5d\xb7\xf9\xf7\xd1\x6d\xf6\x9b\xcd\x87\xe9\x1d\x87\x87\x35\x5a\xc8\x71\x87\x15\x33\x66\x9a\x55\x38\xc3\x75\x9a\x15\xa3\xe4\x93\xcd\x95\x22\xdc\xf7\x10\xaa\xb1\x92\xdd\x52\xfb\x0a\x07\xae\x4f\x2e\x70\x14\xa3\x25\xfe\x44\x7e\x0a\xd7\x81\xfb\xaa\xce\x56\xda\xd5\x2b\x51\x31\xdd\x53\x17\x77\x77\xb7\xa5\x8b\x6a\x5b\x55\xa7\xec\x7e\x8d\x9d\x99\x5a\xda\xee\x31\xb2\xb6\x76\x88\x37\xe1\xa7\x5d\x8f\x28\xf0\x46\x8f\x11\xd6\x36\x36\xce\x20\xed\xcd\xc9\x69\xf5\x2e\xec\xc5\x1a\xbe\x6c\x88\xea\x61\xd6\xa7\x6a\xd5\xc7\x88\xb5\x2e\x18\x9b\x4e\xbc\xd6\xab\x8e\x59\x8b\xc7\x08\x6a\x0b\x81\xb0\xfd\xb0\x3f\x85\xb0\xfa\xdd\xe8\xbb\x20\x97\x61\x54\xbb\xc6\xaa\x34\xc2\xeb\x3e\x46\xcc\xb5\x05\xde\xc3\xc8\x93\x6b\x52\x1f\x05\x55\x07\x26\xab\xfc\x38\xe1\x6c\x9d\xcd\xb9\xef\xad\x2e\x42\x1c\xb9\x5a\xbc\x5e\xad\x58\x4a\xa1\x06\x1d\x22\xab\xda\xd5\xfe\x31\xa2\xa1\x6d\xa1\xbc\x48\x61\x38\xc9\x51\xd0\x7b\xd5\x54\x1b\x77\x23\x9d\x0a\x44\xbb\x71\x20\xd6\xe2\x31\x22\xb6\x0b\x54\x16\x6b\xbb\x0b\xa8\x4f\x30\xa2\xd8\x8b\x7f\xde\x29\xa6\x98\xd7\xef\x46\x1f\xd3\x44\xfa\xfa\xee\xb8\x1c\x99\xcc\xe4\xf4\xb9\x3c\x9b\x51\x5d\x25\xbc\x94\x98\x9a\x71\x78\x28\xc7\xf0\xa5\x5c\x90\xe9\x1f\xc7\x62\xf7\xe9\x80\x59\x4d\xb2\x9d\xd6\x14\x92\xc3\xc3\x96\xd7\xc1\xfd\x3e\x4c\xec\x0f\xa3\xd9\x6c\x96\x3d\x3f\x48\xbf\xe7\x1a\xd5\x71\x3a\xb6\x69\xf6\x42\x65\x40\x8a\x07\xbb\xbe\xab\x81\xff\x2e\x6a\x60\x1f\x17\xd7\x41\x71\xd2\xb1\x72\x78\x48\x21\x3a\x98\xcd\xf0\xe1\xa1\xcc\x17\xcf\x6c\x36\x4b\x06\xf8\x5e\x7a\xa5\x17\xb3\x46\x0f\xe5\xdc\xf2\x62\x2d\xc6\x4b\xa2\x85\xd1\x2e\x92\x77\xb1\xc9\x63\xe4\x94\x3d\x61\xde\x45\x94\x2c\xb5\x79\xa2\x50\xf7\x87\xf5\xc9\x41\xf8\x31\xf4\x76\x3d\x34\x00\x4d\x9e\x1a\x9c\x3e\xfe\x72\x43\xc5\xde\x79\x29\xf5\xc8\x47\x48\x3f\xfa\x3d\x3e\xe3\xfb\xe6\xd5\xb2\x79\x99\x8a\x1a\xcf\x30\x8f\x87\x3c\x33\xce\x7f\x2c\x06\x69\x84\x28\xc1\xd1\x15\x49\x14\xe4\xc5\x03\x19\xcb\xca\xdd\x5d\x3c\x08\xef\xb5\x75\x51\x32\x7d\x41\xa9\xf4\xa1\xf6\x2e\x3f\xbc\x26\xd1\x1c\xc7\xbb\xfa\x9c\xf2\x76\x8f\x71\xe5\x37\xf7\x29\xc0\xdb\xb3\xd7\xac\x45\x17\x47\xd9\x21\xe4\xc3\x7f\x9c\x46\xd9\x16\xb4\xf5\xef\xae\x9b\xf5\xee\x12\xf2\xe1\x3f\xb9\x90\x0f\x7f\x87\x90\x0f\xbf\x33\xe4\x63\x89\xef\x11\x36\xc5\x1b\x3d\x46\xbc\x75\xc0\xba\x3b\xa0\x4f\x0f\x4a\xe2\x7a\xb8\x0e\xce\x88\xc4\xab\x30\x88\xbd\x0d\x29\xd5\x7d\x8c\x10\x36\xf7\xc9\xe1\xeb\xd9\x23\xd4\xee\xc2\x18\x88\xd6\x1a\x76\x6b\x8d\x9a\x25\xc1\x5b\xa8\xfc\x18\xf1\xd6\x03\xce\x39\xf6\x49\xe0\xe2\x3e\x6a\x64\xb9\xc5\x13\x85\xd8\xf5\x2e\x2f\xfb\x43\x0b\xb5\x9f\x2a\xa4\xb5\x87\xbe\x5a\xa1\x6d\x3a\xfa\xf5\x44\x20\x66\x91\xc5\xfd\xe1\xe5\xf5\x9f\x2a\xb4\x51\xb8\xd4\x82\xf0\x7a\x07\x78\xd3\x16\x4f\x18\xe2\xdd\xa0\x7d\xaa\x90\xc6\xeb\x8b\x24\x6a\xc8\x14\x59\x0f\x6d\xd6\xe2\x89\x42\x9c\x84\x35\x47\xb5\xdb\x00\x4e\x1b\x3c\x5d\x78\x77\x5a\xbb\xbc\xfe\x93\x85\x76\x17\x48\x9f\x2a\x94\xeb\xc0\xfb\xdc\x03\x4e\xa8\xf6\x34\x41\xec\x3d\x8b\x4f\x0e\xbe\x7b\x9c\x75\x78\x82\xe7\x1c\x82\x5d\x0e\x39\x04\xe9\x09\x87\xe6\xb8\x97\x20\x4c\xb4\x5d\x92\x7f\xb1\xfa\x4f\xcf\x5d\x1f\x84\xc9\xcf\x7f\xf4\x47\x1c\xad\xdd\x45\x6f\xe1\x0e\x36\x3c\x5a\xf9\xc9\x21\x6c\x17\x74\x75\x22\xab\xcf\x4e\xf9\x14\xf7\x47\xe6\x74\xd1\xea\xb5\x96\x16\xde\x93\xb7\x7b\x8c\x10\x37\xf7\xc9\xc6\xfd\xbc\x7f\xa7\x69\x83\x2e\x3c\xae\x68\xc3\xfa\xc0\xa1\x36\x34\xa6\xcd\x9e\x18\x16\x33\x68\xfb\x62\x91\x37\xe8\xc2\x62\xad\x21\xa8\x9e\x27\x85\x8f\xd3\x04\xd4\x82\xb4\xa8\x3f\xba\xa2\x0e\x44\xad\xf0\x15\xd1\x12\x2f\xf1\x6b\x15\x96\xbc\xb4\xae\xc1\x43\xdd\xa2\x99\x61\xa1\xeb\x76\xc7\x6c\x4c\x24\xba\x0c\xa3\x5a\x8d\xba\xee\x16\x95\xb4\xfa\x63\x9c\xf5\x56\x30\xbd\x15\xd1\xd8\x3d\x74\x3b\x72\x07\xb1\xe5\x53\x84\xfa\x1e\xe0\x3e\x4a\x38\x9b\xfb\x64\x50\xf6\xec\x90\x56\xee\xc2\x9a\xbf\x8e\x70\xd3\x6d\x3b\x5e\x70\xe9\x93\x79\x52\xc3\xf8\xbe\x87\x6c\x7c\x0f\xd9\xa8\x09\xd9\x48\xb3\xd6\x18\xb3\x19\xc4\x6e\x1c\xc7\x53\x88\xde\xc8\xa8\x4c\x19\xc4\xf7\x0a\xd5\xc8\x3a\x60\xa1\x18\x0f\x15\xb0\x71\xcf\xb3\xeb\x4f\xf4\xdc\xfa\x6a\xd7\x43\xeb\xab\x7e\x27\xd6\xff\x58\x93\xf5\xae\xac\x98\xb5\x79\x5a\xf8\xe3\x70\xf6\xec\x11\x6a\x77\x60\x2e\xc2\xc1\xd5\xae\x98\x63\x6d\x9e\x16\xe6\x38\x9c\x3d\x7b\x84\xda\x5d\x98\x23\xee\x7a\xbe\x33\xea\x58\xa3\xc7\x88\xbb\x76\x58\x41\x15\xde\x39\x72\x25\x6f\xf7\xf4\x20\x5e\x91\x9d\x2d\x06\xbc\xd1\x63\x84\xb5\x65\x65\x70\x48\xfb\x2e\x0d\xa8\xde\x89\xbd\x0d\x89\x1a\x82\x10\xdb\xd0\xc7\x5a\x3d\x46\xfc\xb5\x41\x1b\x2f\xd6\x97\x97\xf5\x6a\x6a\x0b\xb4\x69\xab\xc7\x08\x6d\x73\x9f\x19\xac\x3d\xfb\xe4\xf5\xbb\x30\xe8\x05\x57\x6b\x1f\x37\x5d\xab\x94\x69\x05\x47\xbe\x77\x51\xdb\xe8\xd1\x28\xfc\xb1\xef\xed\xbc\x29\xb0\x36\x8f\x91\x0e\x5a\x21\x0d\xa3\x7b\xec\x08\x69\xab\xa7\x06\x6d\x82\x77\x4e\x61\x00\x4d\x9e\x1e\x9c\x71\xc3\xed\xad\x55\x6b\x15\xd4\x7d\x72\x00\x7a\x89\x4f\x76\x4f\xca\x94\x35\x7b\x8c\xf0\x36\xf7\x99\x43\xdb\xb3\xd3\xb4\x41\x17\x16\xc3\xab\x2b\xff\x9e\x26\xbf\x62\xdb\xc7\x88\xcf\x6e\xc8\xef\x05\xf2\xa3\x84\xb5\x85\x76\x38\xa4\x7d\x29\x07\xaa\x77\x61\x2f\xf2\xea\x8d\xe1\x2d\x2b\x8f\x36\x79\x62\x98\x03\x28\xfb\xe2\x2d\xf2\x96\x9d\x58\x5b\x07\xf3\x86\xc8\xad\x56\xcc\xf1\x66\x4f\x0d\x7b\x29\xb4\xbd\x31\xc8\x1a\x74\x60\x71\x1d\xb8\x24\x8a\xe7\x0d\x87\x5b\x5b\xf0\x28\x34\x7c\x5a\x98\x14\x21\xee\xd9\x6d\xde\xa4\x23\x2c\x65\x1d\xec\xce\xf9\x59\x9b\xc7\x88\xc3\x76\xba\xf9\xeb\x86\x9c\xad\x57\xab\x7b\x9d\x17\xcc\xdb\x3d\x46\x88\x5b\x56\x44\x0e\x6f\xdf\x05\x91\xb6\xe8\xc2\x64\x52\x9b\xa6\xb2\x4c\x24\xc9\x53\x4b\x4d\x09\x70\xf5\xc5\x55\xd2\x95\x9a\xb2\x36\xc6\xa8\x85\xce\x1e\x67\xb4\x51\x73\x9f\xd7\xbd\x7b\xbb\xee\xc2\x94\x97\x2c\xc2\xf5\xae\x16\xc8\xb4\xd5\x13\xc3\x5a\x0a\x6b\x5f\xdc\xb1\xfa\x1d\x18\xfc\xac\x79\xf3\xfa\x2d\x6a\xaf\x29\x50\xb3\x6b\x75\x08\x3b\x41\x7e\x86\x11\xdc\x84\xaf\xca\xec\xf5\xf0\x47\xf3\x62\x2d\xbb\x9a\x2d\x56\xce\xe1\x06\x0e\x3c\x4f\x06\x0a\xfa\x18\x7a\xc1\x40\x96\x64\xa5\x33\x8f\x65\xac\xde\x42\xcf\xd3\x70\x7b\x2f\x97\xe6\xe7\xd7\xf3\x30\x78\x28\x47\xe6\xe7\x5d\x02\x9b\x3e\x3f\xb9\xc8\xa6\xcf\x3b\x84\x36\x7d\x6e\x8c\x6d\xf2\x02\x2f\xf1\xc0\xab\x1c\xc5\x47\x78\xb5\xd2\x48\xb0\xe9\x95\x47\x8a\xd1\x18\x29\xdc\xf1\x72\x77\x97\xff\xd2\xcf\x9f\x11\xe4\x05\x10\xb7\x20\xcf\xc3\x20\x89\x42\xdf\x27\x91\xac\xd2\x1f\x97\x1e\x25\xea\x98\x44\x1b\x6f\x4e\xa6\xfc\x01\x64\xd2\xc9\x1a\x2c\x57\x61\x00\xb1\xe7\xcd\xf5\xef\x95\xaa\x27\x83\xb7\xe9\x5e\x96\x60\x76\x1b\xe0\x25\x99\xca\x14\x1b\xe9\xbb\xf3\x66\xd3\x64\xdb\x65\x79\xad\xe0\x34\x09\x3f\x15\x73\x04\x3e\x00\x56\xf9\x3b\x32\x24\xb1\xdf\x4d\x38\x6d\xa8\xfd\x0d\x30\xca\xdf\x7c\x7f\x84\x52\xa8\xb1\x17\x90\x48\x73\xc9\xc5\xfa\x4a\xc3\x2e\x5e\x35\xe4\x44\x8a\x48\x1c\xfa\x1b\x12\x1d\xa5\x5f\xe2\x23\x60\x57\xde\xbc\xb1\x97\x87\x32\xdb\x73\x0c\x34\x0e\x5e\xc0\x87\xb0\x80\x7b\x10\x43\x44\xae\xbc\x38\x21\xd1\xa0\xa9\xef\xe9\x12\x7b\x81\x2c\xa4\x0f\x51\x8b\x14\xd4\xdc\x44\xa6\x63\x8e\x57\x78\x4e\x64\x95\xce\x9d\xef\xcd\xe1\xa4\x28\x2b\x56\xb6\xbb\xcd\x5b\x2e\x59\x2d\xbd\xa8\xf5\xa6\xa9\xaf\xc7\x79\xfe\x80\xe3\xbd\xfa\xf2\x7a\x84\x6f\xb7\x7d\xe1\xc8\xad\xcf\x5d\xc6\xe9\x8e\xd6\x8f\x71\xd7\xe9\x89\x04\x17\x27\xb5\x89\x06\xe8\xf3\xa3\x98\x24\x6b\x60\xa0\x8c\xc2\x0a\x85\x35\x12\xcc\x7e\x16\x1a\x2e\x4e\x38\x1b\xa0\xc8\x6b\x32\x20\xbb\xae\xd9\xaa\x01\x37\xcf\x9f\xa0\x5d\x44\x04\x7f\x5a\x85\x5e\x50\xbe\x7e\xab\x92\x69\xa1\xd0\x4f\xfe\xfc\xcf\xf7\x0f\x16\x01\x04\x00\x34\x61\x91\x6b\x57\x7e\x78\x51\x0e\xad\xcf\x1a\xb3\x7d\xf1\x88\x04\x1b\x2f\x0a\x83\xae\x1b\xc7\x7a\x30\x32\xef\x72\x70\x60\x1c\xcc\xf2\xe1\x23\xf6\xd6\xe7\xf9\x88\xfe\x0b\x06\xc4\xfa\x0a\x68\x03\xb0\x26\x51\xa8\x5c\xf9\x20\x4d\x28\x79\xed\x05\x6e\x78\xad\x04\x33\xf6\xe5\x19\xf1\x63\x22\x35\xd4\x65\x10\x2a\xc1\x8c\x7d\x81\xba\xb7\xc5\xba\x59\xa2\xca\x98\xf8\x97\x69\x04\x65\x30\xa3\xbf\xe0\xbe\x62\xac\xc6\xdd\x43\x7e\x86\x67\x32\xd3\x26\x85\xfe\x8e\x63\x9e\xfe\x3d\x0d\xd3\x84\x8d\xe9\xf2\x66\x90\x77\xb7\x84\x59\x7f\x17\x91\x4b\xef\xb3\xa2\x06\x67\xf8\xfc\xee\x6e\x40\xff\xcc\x88\x4a\x19\x7f\xb8\x22\xc1\xe0\xf6\xda\xf3\xfd\x97\x24\x4e\xa2\xf0\x66\x5a\x08\x7b\xf4\x62\xf4\xaf\x78\x4d\x45\x67\x3a\xad\x37\x03\xfa\x44\xcd\x90\x4e\x29\xc2\x27\x09\x91\x68\x87\xdb\xad\xa2\x6c\xbf\x72\xf3\x0f\xba\x56\x64\x33\x89\x09\x0b\x34\xd8\x6d\x61\x5e\x46\xf8\x8a\x9d\x84\x26\x11\x7f\xd8\x40\xb1\x79\x85\xbc\x55\x6b\x48\xaf\x72\x2b\x6e\xae\x79\xf3\xa9\x96\x35\x17\x36\xd5\x07\x46\x5e\x2d\x9c\xf7\x47\xdb\x32\x74\x89\x9f\xc1\x51\xcb\xc2\x28\xeb\xd4\xca\xf5\xf6\xcf\xb4\x2a\x3b\x75\xfa\xb2\x0f\x11\x0e\x62\x76\x52\x81\xe5\x72\x6c\xe4\xe9\xa2\xe8\x90\x8b\x36\x49\xde\x5e\x8e\x13\x30\x38\x67\xd2\x2e\xfb\xad\x34\x6d\xf6\x2c\xdc\x57\xdb\x75\xc3\xcb\xeb\x6b\xf0\x02\x8d\xbf\xee\xa1\x65\xca\x5d\xb6\xba\x86\x9d\xa0\x0e\xe2\x05\xc1\xae\x76\x11\x85\xd7\x71\x71\x4d\x3d\xb8\xac\x56\x7c\xf1\x2e\x72\xda\xd2\xfb\xec\x05\xf1\x51\x4c\x70\x34\x5f\x50\x69\xa7\x38\x57\x97\xeb\x98\xa0\x8f\x55\x2a\x2e\xae\xfa\x9e\x61\xfc\x59\x9c\x7c\x32\xd3\xd5\x60\x16\x90\x6b\x89\x97\xf1\x88\x77\xe5\xc7\xe4\x6f\xe9\xf7\x1f\x93\x1f\x7e\x50\x82\xb3\xe4\x7c\x46\xce\x92\x2c\x42\x3c\xd8\x96\xcf\x00\xc0\xab\x1e\x28\xfe\x9f\xbf\x94\x01\x72\x19\x85\xcb\x01\x51\x4a\xef\xef\x1f\x2c\x1f\xaf\x22\x82\xdd\x6f\x77\x85\xf4\x5b\x3a\xb3\x68\x1e\x11\x9c\x90\xc1\x2d\x9b\xe0\x0f\x24\x5a\x4e\x65\x59\xf5\xbd\x38\xf9\x10\x9e\xc0\x33\xbe\xa7\x52\x55\x77\x9d\x10\x77\x50\x11\x73\xcf\xce\xb7\x8a\xca\xda\xd3\x41\xc5\xd3\x60\xed\xfb\x2a\xf9\x8c\xe7\xc9\x5b\x9c\xcc\x17\x27\x42\x51\xb1\x2f\x44\x21\x8e\xe9\x4e\x90\xd5\x90\x15\x35\x22\x57\xe4\xf3\xae\x8d\x2e\xd7\x5f\xbe\xdc\xec\xda\x28\x1f\xe3\xcf\x01\xc5\xb7\x4b\x45\x79\xa1\xa7\xec\xa9\xc1\x06\x25\xd4\x8a\x48\x4c\x92\x77\xf8\xca\x0b\x98\xfe\x26\x60\x85\xe5\x41\x06\x61\x81\x69\x24\xb4\x1e\x39\x3c\x84\x27\x31\xa1\x3a\x62\xfe\x58\x56\x0d\x65\xab\xd2\x65\x54\xc6\xb3\x2c\x4e\x02\x3a\x3b\x87\xd5\x56\x04\x12\x9e\x56\xd5\x0e\x4a\x6b\x19\xab\x02\x19\x05\x89\x7d\xa9\xb7\xf1\x22\x5c\xfb\xee\x49\x18\x25\x14\x94\x64\x11\x91\x78\x11\xfa\xee\x14\xd9\xaa\x1f\x72\x85\x54\x57\x5d\x8f\x11\xdf\xd4\xd0\x75\x15\x6c\x0c\x94\x63\x1c\xe8\xea\x92\x62\xec\xb9\xef\x7f\xa0\xcf\x62\xf6\xe4\xf3\x3b\x4a\xca\x51\xf0\x06\x16\xe7\xd4\x32\xd5\xa5\x17\x00\x6a\x5f\x2c\x70\xc4\x9f\x1a\xea\x27\x72\x13\x4f\x61\x44\x65\x58\xee\xee\xce\xce\xa9\x1a\xf5\x8b\x80\x4b\xf1\x0c\x10\xc3\xce\x15\x49\xe0\x29\x53\xa8\x28\x54\xac\x0b\xe2\x56\xd0\x97\x53\xb4\xac\xd6\xe0\xb2\x32\xf7\x45\xfc\xe6\x0f\xc5\x99\x2f\xb4\x2b\x4f\x44\xfd\xf4\xc8\x65\x72\x2e\x4f\x1a\x93\xe3\x39\x71\xa4\x43\x86\x80\x81\x81\x02\x32\x3c\xb9\xbb\x3b\xc8\x38\x60\xaa\x59\x96\x27\xf5\x19\xe3\x9b\x67\x19\x27\x84\x1a\x15\x20\x0f\x0f\x13\x38\x51\x94\xca\xaf\x6a\x30\x28\x6b\x8d\xde\xe5\xa0\xf2\x36\x74\xe9\xf9\x89\x78\x79\x52\x3e\x2f\x01\x8a\xc3\x25\xc9\x4b\x82\x9a\x19\xa3\xfd\xce\x66\x33\x42\x27\x0d\x8e\x13\x55\x48\xb2\x34\x5a\x01\x5d\x8a\xa2\xa8\x65\x82\x69\x06\x86\xd7\x8c\x09\xc7\x25\x9c\xd2\x62\xed\xc5\x79\xdc\x11\x0d\x70\x86\x8a\x9f\x4b\x22\xd7\xd2\x7b\x72\xf5\xf3\xe7\x15\x65\xbc\x5e\x66\xd0\xaf\xc1\x11\x69\xc4\x51\x8e\x3d\x8c\x12\x12\x27\x83\x22\x71\x2b\x80\x27\x76\xa2\x2b\x56\x6e\xb7\x19\x9b\x6d\xc1\x5d\x99\xca\x00\x6c\xb4\x0e\xbc\x3f\x06\xca\xb6\xc7\x8d\xfe\xe9\x3e\x1f\x46\x49\x79\x97\xdf\xb7\x74\xc2\x28\xb5\x76\x13\x0a\xa3\x24\xed\x92\xed\x22\xf4\xc9\x4b\x12\xcf\x49\xe0\x7a\xc1\x15\x65\x35\x1c\x74\xca\xbb\x7a\x6d\x4c\xc0\x23\xe0\x76\x90\x26\x06\x1b\x46\x09\x5b\xa9\xe2\xeb\xf9\xcf\xfc\xdd\x4d\x6b\x56\xe8\x24\x77\xf7\xd0\xa6\x3f\x31\xf5\x10\x89\xbd\x2a\x85\xd5\x59\x7c\xc1\x31\xd5\x8d\x20\x36\x7e\xa0\x4c\x49\x69\xce\x92\x96\x39\x63\x6a\xb9\x16\x91\xd8\xfb\x52\x95\xd0\x1a\x92\x63\xef\x4b\x60\xae\x9b\x46\x36\xa0\xf7\x74\x3c\x84\xdd\xc4\x16\x15\x04\x4d\x15\xec\x58\xff\x23\xd4\xe2\x53\x13\x06\x03\xd9\xf5\xdc\xd7\x41\x4c\xa2\xe4\x67\x76\x77\x7d\x03\xde\x9f\xb1\x16\xd1\x3a\x40\x31\x65\xff\x6b\x9f\xfc\x23\x98\x93\x81\x0c\xa9\xf9\xdf\x93\xc0\xa5\x92\x2e\xe8\xe7\x42\x7b\xc2\xf6\xdf\x7f\xd5\x8c\x50\x56\x09\xaa\x79\x8c\x2e\xbc\xc0\xa5\x5c\x44\x2d\xe6\x8b\xe6\x46\x11\x18\x32\x60\x9e\xd0\x0e\xea\x3a\x86\xe5\xa7\x46\x64\x19\x6e\x48\x03\xcc\x82\xbd\xa1\x0e\xea\x86\x37\x5f\x5e\xe6\xaf\x66\xa6\x89\xa6\xb7\x77\x69\x2b\x19\x21\x25\x0b\x2d\x73\x69\x68\x1b\x2f\xf6\x2e\x3c\xdf\x4b\x6e\x34\x97\x24\xa4\x12\x05\xfa\xed\xf8\x42\x3e\x92\x66\x72\x7a\x19\xce\x41\x76\x3f\xcd\xea\x0a\x08\xa6\x1a\x4f\x01\xa5\xac\x88\xf2\x5e\x2f\xb8\xba\xbb\x1b\xe4\xb2\xd9\xbf\x2a\x2f\xe3\xd8\xad\x3c\x67\xa4\x41\xcb\x14\x45\x75\xf9\xeb\x11\x76\xdd\x9f\x37\x24\x48\xde\x78\x71\x42\x02\x12\x0d\xe4\xbc\xe1\x7c\xc1\x0e\xa8\xb1\xd9\xaa\x74\xa8\xe4\x84\xf2\x55\xd0\x64\x63\x61\x7d\xdd\x7b\x38\x3b\xf1\xa0\x64\xa1\x5d\x86\xd1\x85\xe7\xba\x24\xd0\xe2\xa4\x14\xc8\xf8\x0d\xf7\x10\x4a\x0c\x2f\x32\x37\x5e\xc1\x94\x01\x80\x7a\xf1\x2f\xe9\x38\x0f\x0f\x85\x89\x17\x9e\xcb\x2a\x7b\x0d\x7d\x71\xb5\xec\x40\x4f\x45\x8a\x36\x5b\xe0\x96\xa9\x08\x0d\x23\xa9\xed\xd7\xe8\xd3\xed\x6e\x53\xc2\xac\x4d\x84\x2a\x9d\xda\x82\x4e\x2b\xec\x64\xb5\xd6\xbc\x75\xe2\xf9\x90\x21\xc9\xbb\xbc\x61\x2d\xbe\xe9\xa6\x01\x23\xad\xf3\xa1\x74\x61\x04\x31\x41\xa9\xc8\x24\xd9\xaa\xdc\xee\xc6\xfa\x32\xdf\x9c\x06\x53\x97\x94\x70\xf5\x0d\x69\xf8\x26\x4e\xc8\x92\xaf\x78\x66\x7d\x43\xdc\xf2\x35\x50\xd4\x8f\xe1\x45\x2c\x90\x55\xa1\x56\xee\xbf\x1e\xc8\xb4\x9e\xac\xa8\x2c\x04\x3f\x9e\xde\x5e\x85\x49\xf8\x6b\x78\x11\x57\x97\x04\xd0\x22\x7b\x29\xa2\xd5\x37\xe4\xb7\xdc\x4d\x09\x35\xa8\x68\x2a\x17\x5f\x8c\x3e\x86\x17\x79\xb5\x74\x49\xc4\x5d\x15\x55\xc2\x3a\xf3\xdc\xac\x0d\xd8\x15\x3d\x3a\xa2\x0f\xe1\xfb\x70\x9d\x90\x74\xec\xdb\x1d\xa9\x3d\xa2\x8d\xff\x4a\xfb\x16\x4c\x06\xb0\xd2\xbf\xca\xde\xe5\x92\x3e\x30\xfd\x59\x3b\xd8\x35\x65\x25\x24\x8a\x1b\x58\x64\x4f\x5a\xfb\x86\x6c\x33\x63\x79\xea\x6d\x3a\xf6\x7e\x6a\xd1\x1c\x07\x73\xe2\x3f\xf7\xfd\xff\x49\x9b\x95\x1d\x5d\x69\x7f\xe8\x32\x8c\x7e\xc6\xf3\xc5\xa0\xb8\x7f\x65\x1d\x80\x7e\xa9\xc6\x09\x8e\x92\xba\xbe\x38\x99\xd7\xed\x83\x45\x1e\x5f\xe8\xa1\xc1\xbf\xd6\x63\xd7\x6d\x5d\x73\x19\x5d\x2d\x60\xcf\x3d\x66\x46\xba\x32\x2a\x06\xca\xb4\x3a\x22\xb6\xcc\x72\xfe\xaa\x96\x7e\x33\xae\x06\xbb\x98\xac\x28\xdb\x9c\xed\x52\xe1\xfe\x43\xc6\xe1\x6a\xef\xf1\x43\x5e\x90\xd0\x51\xd1\x0d\xe8\xf0\xb0\xf0\x93\x0d\x22\xfe\x1f\x2f\x59\xb0\x11\x00\xdd\x51\x76\xaa\xdc\xdd\x35\x0d\x5f\x3d\xd0\xb7\x7d\xf6\x3e\x3a\xd8\xf8\x08\x5f\x35\x24\x24\x05\x17\x0c\x83\xa8\xf0\x08\x27\x49\x59\x36\xd8\x67\xb8\x81\xe8\xfc\x4d\x48\xe0\x76\xed\x87\xe0\xe2\x18\xe8\x6a\x90\x6f\xff\xa9\x6f\x58\x51\xb1\xeb\x46\x24\x8e\x1b\xcb\x63\x12\x5d\xbe\x0b\xa3\xa4\xb1\x42\xb4\x9a\xb7\x96\x27\xf8\xaa\xdc\xfb\x2d\xff\x76\x0a\xa0\x56\xc8\x9d\x79\x5a\xa8\x88\xbc\x6e\x1e\x17\x45\xf4\x9c\x04\x09\x89\x9a\x47\x46\xae\x28\x41\xb5\x0c\xfc\xb9\xeb\x46\x15\xab\x07\xc7\x88\xac\xca\x74\xb6\x9b\xcc\x1a\xbc\x96\x9a\xb0\x9f\x1c\x0b\xa9\xf9\x82\x1c\x1e\x26\x87\x87\x72\x16\xec\x4a\x54\x79\x2a\x2b\xe9\xaf\x84\xee\x05\x5e\xfc\x86\x60\x97\x54\xdf\xcf\xe5\x0c\x1f\x4a\x11\x1f\x65\x9d\x19\x3b\x17\x3c\xea\x9b\x28\xb3\x59\x36\x38\xfa\xa0\x6a\xe6\xaa\x1e\x6c\x49\x49\xde\x4f\xed\xdc\x3b\xd3\x7d\xe1\x49\x44\x7c\xe8\x25\x5e\x78\xab\x76\x3f\x2f\x34\xf6\x2e\xd6\x09\xa1\xf5\xfc\xd0\xc5\xf1\x02\x65\xd7\xbd\xc3\x40\xca\xa2\xf8\x8a\x2d\x21\x8f\xc4\x47\xf1\x22\x8c\x12\x6d\xbd\xf6\xca\x17\x64\xa8\x81\x8a\xd5\x58\x0d\xd5\x68\x5f\xeb\xcf\x9f\xdd\xae\xb8\xb5\xcd\x50\xa3\x75\x10\xd0\x6f\xa6\x4a\xe7\xcf\x27\x09\x99\x5a\xea\x25\xf6\x7c\xe2\x4e\x6d\xd5\x0f\xe3\x64\x3a\xdc\xaa\x5e\xcd\x92\x05\x7f\x41\xd3\x8a\x05\x70\x5e\xbb\x94\x74\x23\x81\x74\xa9\x48\x48\xa5\x5b\xfa\x1c\xa3\x0b\xe2\x87\xc1\x55\xfc\x21\x54\x40\x1c\x94\x15\x35\x08\x5d\x52\x2d\xa3\x4f\xe5\x0e\x2e\x90\xe0\xf8\xd3\x7f\x45\xe1\x7a\xf5\x5b\x5b\xad\x88\xc4\xe1\x3a\x9a\x13\x58\x95\x31\x4a\xe7\x4e\x01\x33\x0b\x2b\xa1\x1c\x85\xd1\x0e\x71\xdf\xf7\xaa\xfe\x31\xbc\x38\x25\x51\x5c\xb3\x52\x83\x35\xc5\x8e\xac\xa8\xcb\xd0\xf5\x2e\x6f\x5e\x07\x2e\xf9\xdc\x51\xe7\x83\x57\x1d\x3e\x24\x6f\x57\x54\x26\x10\xb4\x77\xc2\xea\xb4\x75\xe2\x7b\x24\x48\x4e\x3a\x58\x13\x89\xbd\x88\xb8\x1d\xb5\x18\x7f\x63\xe3\x29\xb3\x00\xf1\x35\x75\x2b\xdf\x3f\x63\x3b\x9b\x50\xed\xfc\xee\xce\xd0\x75\xe0\x2b\xef\x39\x51\x96\x3c\x7c\x90\x0e\xb9\xdc\xb7\xcc\x29\x58\x56\xd4\x34\xcb\xd4\xf3\x6c\xed\x57\x69\x49\xe4\x0b\xb7\x5e\x00\xd6\xd8\x29\x24\x7b\xce\x5b\xc9\x5b\x45\x2d\x3e\xe9\xdb\x4f\x75\x04\xb4\xaf\x55\x44\xc8\x72\x95\x10\x37\x7f\x1c\xb3\x1e\x17\x38\x7e\x8b\x83\x9b\xb6\xfe\x58\xcb\x9f\x6e\x1a\xba\x14\x0b\x76\x18\x65\x65\x3c\xb4\xd3\x6b\x1c\xbf\x4b\x8b\xca\xb3\x7e\x11\x86\x3e\xc1\x81\xac\xa8\x97\xa1\xef\x87\xd7\xbf\xaf\x7e\xa6\x7c\xa6\xe1\xbd\x24\x2b\xcb\xe8\xe4\x05\x1c\x79\xd8\x91\x4e\x32\x46\x25\x7b\xb1\xb6\x4a\xcd\xf4\x29\xcf\x82\x87\x91\xb7\xc4\xd1\x8d\x9c\xb3\x2f\xfa\x34\xfd\x21\xa7\xac\x8c\x3e\x64\x16\x0f\xc6\xd3\xe8\x6f\xdf\xbb\x5a\x24\xf2\xb6\x96\x12\x69\xb9\x8b\xa3\x4f\x14\x2d\x19\x6b\xa9\x8c\xbe\xc0\x74\x64\x95\x32\x31\x94\x3d\x6b\x73\x03\xa6\xca\xb6\x50\x3b\xf7\x33\x81\x80\x78\xe9\x05\xee\x4f\x37\x03\x88\x26\xe6\xda\x4f\xe1\x6d\x74\x03\x5e\x07\x0b\x82\xfd\x64\x71\xf3\x32\xf2\x36\x35\x7a\x41\x3e\x3e\xe4\xb2\x1a\xcc\x0b\x42\xf9\x29\x2a\x35\x06\xf5\xbd\x6b\xc4\x95\xfe\x28\xe3\x15\xca\x1b\x3b\x2e\x00\x97\x1c\x0f\x74\x35\xcc\x69\x8b\x6a\x50\x53\x16\x62\x90\xe0\xa4\xcc\x6c\x21\xf4\x42\x61\xef\xe6\x56\x47\xe0\xe3\xdc\x25\x00\x8a\x63\x43\x93\xbc\x96\x46\x68\x35\x59\x51\x17\x38\x7e\x5f\x6e\x5b\xc6\x5a\xb9\x73\xee\x23\x94\xd5\x32\x9b\x68\x95\x68\x9a\x7a\x51\xfe\xae\x73\xb1\xbe\xd8\xdb\x16\x06\x77\x92\x84\xab\x15\x6c\x3c\xac\x71\x95\x0b\x0e\x2a\xa3\x28\x33\xc4\xea\x02\x05\x25\xa6\xec\x73\x60\x23\x3e\x10\x66\xaf\xd0\x6f\xd6\x46\x39\x3c\x14\x2a\xb5\x74\xae\x1c\x1e\xca\x6c\xb9\xc9\xa9\xdc\x26\x8e\x0c\xe6\x37\x5c\x35\x2b\x87\x61\x44\x10\x8f\xa5\xff\x25\x8c\x0a\xcc\x4b\xa1\xc5\x2b\x66\xcd\x00\xb3\x2b\x55\x99\xea\x14\xad\x3e\x5d\xf1\xe6\x4c\xb1\x24\x25\x13\xa2\xd7\xa2\x46\xcd\xc3\x20\x5e\xfb\xda\x3c\x0c\x02\x52\x7f\xe1\x4c\xad\x5c\x98\x47\x3e\xf6\x94\x1e\xbf\xa9\xe2\xe5\xb9\x64\x8e\xa3\x13\x1e\xe4\x07\x5c\x5f\x90\x73\x78\x71\x16\x95\xd7\xc7\xcf\xcc\x90\xe5\x92\x95\x1f\xde\x34\xdd\x84\xf1\xf0\x02\x78\x2f\x51\xbb\xb5\xda\x7a\xa9\xe1\xab\xab\x88\x5c\xd5\xdd\xf4\xf5\x10\x62\x79\xcd\xec\xe4\x62\x74\xd8\x5b\x8c\x16\x76\xfa\x7c\x12\x60\x83\xff\x18\x5e\xfc\x12\x46\x6f\x28\x93\x4d\x3a\xdb\xfa\x50\xed\x65\x3e\x8d\x5b\x45\xdd\x30\x39\xf7\x37\x10\x37\x1b\x85\xd0\x88\xfc\xb1\xf6\x22\x12\xbf\x8b\xc2\x65\x08\x02\x42\xe3\xc6\x74\xb2\x5e\x2e\x71\xe4\x91\x18\xfd\x5f\x82\xe7\x0b\xb4\x82\x26\xc4\xad\xe1\x54\x99\xa0\x97\x32\x17\x26\x57\xf0\xa8\xab\x9a\x1e\x93\x90\xc5\x16\x2a\xa5\xd8\x0c\xd1\x2c\xc3\x59\x75\x69\xbc\xc0\xf3\x78\x61\x36\x22\xe6\xe5\xed\x50\xea\x59\xf1\x4b\x12\xcf\x23\x6f\x95\xb4\x29\xef\x5d\x52\x6e\x5c\x95\x6f\xab\x30\xb6\x6c\x95\x57\xb4\xa2\x96\x13\x80\x16\x43\xa3\x9b\x5c\xbf\x69\x17\x43\xe9\xde\xce\xa7\xbb\x32\x7d\x05\x32\xe0\x72\x0f\x7f\x16\xa7\xdb\x01\x9f\x50\x4e\x14\xd5\xe9\x1c\x14\x05\xa1\xb4\xb9\xac\xdc\xdd\x9d\x9d\x2b\xb9\xfc\xc3\xdb\x33\x23\xb7\xf8\x5e\x25\xa7\xc7\x93\xf5\xc5\xd2\x4b\x40\xeb\x29\x21\x13\xfb\x1e\x8e\xb3\x01\xa3\x38\xab\x48\xd5\x05\x1f\xcf\x89\xfb\x02\x07\x19\x2a\x45\x55\xb5\x8a\x6c\x59\x95\x8b\x4d\x72\x4d\x69\xa7\x4e\x4a\x6d\xf2\x5e\x3e\x84\x09\xf6\x77\xe9\x02\x1a\x64\x90\xc0\xde\xbd\x0b\x1c\xac\x01\x95\x8a\x98\xc0\xb6\x43\x07\x85\x16\xb2\x20\x8a\xee\xd0\x47\xa9\x4d\x87\xa6\x10\x37\xea\x08\xa2\x3a\x90\x2e\x16\x35\x5e\xcf\xe7\x24\x8e\x2f\xd7\x7e\x51\x4d\x58\xe1\x75\xcc\xf5\x01\x26\xff\xd7\x68\x08\xcc\xde\x9a\x3e\xcc\x7e\xa5\xaa\x42\x5c\xa7\x24\x70\x36\xd1\x5f\xba\x11\xf6\x47\x25\x65\x7b\x5c\xc0\x29\xec\xb1\x7e\xdb\x1e\x1b\x61\x2f\xd0\xe2\x24\xc2\x09\xb9\xaa\x3d\x52\x57\xbf\xa9\x36\x8b\x28\x0f\x27\x7a\x04\x95\xcd\xcd\x25\xd8\xf5\xbd\x80\x4c\x8b\x8e\xdd\x7c\x1f\xb9\x0c\xa3\x39\x79\xd9\x50\x8b\xdb\x33\xbc\xab\x20\x8c\xc8\x09\x98\x0f\xc1\xf5\x59\xaa\x96\xeb\xad\xe0\x89\x9f\x57\x82\xc4\x90\x9f\x80\xcf\x0a\x5e\x22\xab\x3a\x88\xe1\xbf\x85\xd9\x6b\xeb\xb9\xb3\xd8\xa0\xb7\x48\x24\x68\xc5\x8f\x57\x24\xaa\x17\x73\xf6\x45\x07\xd1\x8e\x42\xce\x2a\xf2\xc2\xc8\x4b\x6e\x1a\x65\x8d\xe4\x66\xd5\x62\x14\x8c\xbc\xab\x2b\x12\x11\xf7\xa7\x4a\x07\xa5\x1d\x7b\x0f\x1b\x3a\xe3\x23\x1f\xfe\x2b\xe7\x80\xd5\x9d\x19\xf8\x2e\xbb\x72\x13\x7b\xfe\x1a\x12\x3a\xb5\xbb\x12\xce\xce\xb7\x4c\x33\x7c\x97\x36\xfd\x85\xb5\xac\xc4\xbf\x53\x4a\x1f\xc8\xc5\x51\x64\x4a\xa7\xea\xc5\x3f\xf9\xe1\xfc\x53\x95\xfc\xcb\xe2\xc6\x05\xab\xd6\x6e\xa7\x7d\x3c\xf6\xcc\x6b\xec\x25\xbf\x07\x89\xe7\xd7\x97\x17\xd6\x66\xd4\xb2\x36\x3f\x86\x17\xda\xca\xc7\x5f\xb7\x32\xdb\x97\x5f\xe3\x0a\xae\x5b\x72\xfb\x5a\x70\x61\xcd\x82\x73\xbd\xcb\xcb\x12\xba\xea\xc8\x17\xef\x8d\x7c\xb9\xc1\x31\x15\x38\xe3\x7a\xbb\x67\x71\xb2\xc2\x8e\xc9\x4a\xc5\xd9\xc7\xc6\x49\x7b\x69\x8d\x0f\xc9\x4e\x5b\x96\xed\x3d\x14\x88\x5c\x6b\x80\x6b\x08\x04\x21\x33\xec\x92\xef\xc4\x06\x8c\x93\x46\x89\x17\x5c\xed\xd0\x43\xb1\x09\xd5\x2c\x99\x78\xb7\x43\x17\x85\x16\x94\xa1\x70\xcb\xf0\x0e\x5d\x14\x9b\x64\x9c\x7e\x87\x1e\xc4\x06\xb2\x02\x16\xe8\x1d\x5a\xe7\xd5\x53\xdd\x2d\x7e\xe3\xc5\xe5\xe0\x78\x34\x0f\x7d\x1f\x0e\x71\x16\xf0\x5e\x41\x62\x19\x25\x15\xf8\x4a\xc3\x2d\xbd\x3f\xa1\x2a\x07\x1f\x7c\x69\x00\xf1\x7a\xc9\xd7\x33\x8c\x8f\xee\xde\xcc\x62\xff\x62\xe1\xf9\x6e\x44\x9a\xdd\x63\x7c\x44\x9d\xf5\xa8\xd4\xd5\x59\x69\xce\x2b\xb4\xe2\xa8\x34\xb2\x1c\x2b\xc2\x13\xf1\x6d\x29\xe4\xd9\xdb\xeb\x60\x17\xdf\xbc\xe3\xd6\xc3\x15\xd4\x7d\x72\xb3\x2a\xe7\xd9\x17\xd7\x89\x77\xe3\x3a\x31\x9c\x37\x69\x76\x28\xe5\x4a\x79\xc3\x1e\x1f\xb4\x9b\x9b\xea\xb6\xb3\x6d\x67\xc2\xab\x1c\xf9\x7f\xc6\x16\x52\xbf\xe5\x67\x67\x6a\xc3\xef\x67\x6a\x1f\xd9\x99\xda\x68\x76\x96\x9e\x84\xa7\x42\x32\x4e\xe6\x0b\xca\x5b\x41\xef\x94\xcf\xd5\x3a\xe3\x6d\x47\xf4\x4e\x6b\x38\xc3\xca\xc7\x5e\xf0\xba\xe2\x85\xcd\x35\x9b\x36\xb5\xa7\x53\x69\xc2\xbe\xff\x3c\xf9\x47\x30\x6f\x5b\x94\xfb\x52\x8b\xfa\x48\xf9\x7d\xd4\x89\x15\x89\xbc\xd0\xf5\xe6\xcd\x43\x5e\xe1\x08\x2f\x49\x42\x22\xef\x4b\x9b\xff\xda\xf5\xe2\x15\xc4\xd1\xb5\xd4\x49\x5f\xf6\x92\x24\xd8\xf3\xcb\x68\x28\xbd\xaa\xa9\xd2\x02\xc7\x0d\xdb\x05\xdd\x7f\xd8\x0b\x64\x55\x2e\xf4\x45\xb7\x9d\x6c\x7c\x8d\x0e\xc6\xb4\x35\x77\x24\x16\x7a\x48\xbd\x75\x79\x37\x5b\x18\x2f\x09\xba\x4d\xfe\xe9\x06\x26\x6f\xf3\x6d\xb4\x6c\x21\x2e\x35\x61\x3d\x83\x9b\x3c\xf2\x96\x4b\xe2\x42\xfc\x4d\xc5\x65\xc9\xfc\xe3\xbc\x72\xab\xdf\x94\xd5\xc9\x9d\x8a\x2c\x82\x13\x02\x25\x23\x02\x0a\xc8\xe0\x08\xfd\x70\xfc\xff\x8e\x8e\x54\x59\xe6\x61\x9c\xb4\x74\xcb\x66\xd6\xc7\x37\x94\x61\x54\x3d\x0e\x37\x2b\x18\x41\x23\xde\x3b\x50\x7d\x9c\x37\x9d\x56\x91\x7e\x5c\xea\x8d\x55\xa1\xef\xa4\x88\x21\xcb\x95\x4f\xb5\xd8\x7b\x8d\x2b\x45\x48\xb1\x06\x3c\x69\x04\x40\xf0\xdb\xd3\xfe\x9f\x35\x21\x39\xeb\x53\xc9\xc1\xd3\x60\xe2\x39\x04\x85\xca\x85\xd7\x29\x25\x90\x0b\xcd\xee\x89\xb4\x08\x79\xc1\xdc\x5f\xbb\x24\x1e\x10\x3e\xef\xc0\xe7\x32\xc6\xbb\x15\xa3\x26\xab\x0b\x2e\x0f\xa6\xe8\x52\x6b\x7a\xea\xad\x5c\xf9\xa9\x5d\x37\x82\x66\xe4\xc5\xef\xa8\x88\x8d\xfd\x06\xdb\x8a\x10\x12\x92\x86\x12\xe8\xc2\x68\x5f\x84\xeb\xa0\x22\xa9\xd2\xed\xae\xa6\x5d\x9d\xe7\x2c\xb3\xf1\xd4\xa8\x77\xf5\xee\x10\x3e\xf4\x1a\xa7\x59\x59\xcf\x6b\x6f\xdf\xae\xe1\xb5\xb7\xed\xd0\xed\xda\x1b\x77\x68\x75\xed\x8d\xdb\xf5\xb9\xf6\xb6\xcd\x9a\x5c\x7b\xbb\xbe\x3a\x54\x79\x82\xf2\x9a\x35\xea\x54\x7b\xdb\xb2\x8a\x53\x55\xb3\x7a\xe1\x58\x68\x5f\x50\xbf\xda\x1b\xef\xa2\x3b\xd5\xc1\x2c\xb4\xdd\x74\xc4\x56\xa6\x9e\xc3\x9a\x8d\x4a\xcb\xbd\x8a\xfd\x9d\x9e\x82\xcf\xbc\x5c\x51\x74\xa7\x2b\x6a\x6e\xce\xaf\x54\x14\x8a\xb8\xa4\x07\x47\xa3\x6a\x42\x5b\xf3\xe3\x55\xaa\xdb\x15\xc5\x95\x3a\xc9\xd3\xe0\xab\xa6\x3d\x4b\x68\xb0\xc4\xab\x9f\x6e\x06\x72\x16\xae\x85\xd8\xcd\x85\x83\xda\x04\x1c\x44\xcc\x98\x40\xd4\x70\x90\x28\x8a\x4a\xb6\xea\xd9\xb9\x92\xe5\x19\xe8\x0e\x3a\x13\xb0\xc9\xc7\x5b\x6e\xd2\x90\xd4\x84\x45\xa5\x0b\xad\xf9\xe0\xcb\xcd\xf7\x01\xc5\x02\xa7\xf6\x70\x21\x8c\xb1\x0c\x89\x30\x8b\x1c\x92\xcc\x8a\xde\x38\x7e\xb1\x4d\xef\x00\x84\xbc\x5b\x16\x64\xd0\xc7\xdc\x8f\x03\x77\xc0\x63\x34\x78\x95\x9f\x05\xf7\x92\x5c\x07\x20\x65\x58\xd0\x60\x27\x98\x05\xe1\x9c\xaa\xb7\x42\xb9\x17\xbf\x6b\xcf\x9c\x20\x54\xe6\x32\xc8\x01\xb9\xbb\xcb\x80\x4e\x5b\x2b\xc7\xc1\xda\xf7\xa7\x24\x4d\xaa\x20\x8b\xaf\x54\x58\x6d\x1f\xc7\x09\xd3\xe4\x64\xc8\x0b\x53\x0f\xf8\xb7\x03\x87\xa7\x6d\xa9\xc2\x92\xaa\xb7\x14\x24\x7e\x70\x90\xf0\xc4\x21\x14\xb4\xba\xa9\x15\x52\x8c\x1c\x27\x7d\x91\x30\x65\xca\x29\x48\x29\x2b\x30\x5e\xbc\x14\x18\x57\x83\x20\xc2\x84\xcd\x2c\x98\x4b\x2d\xc7\xf8\x54\x19\x94\x18\xc6\x95\x4b\xfd\x62\x20\x11\x95\xca\xf8\x5e\x21\x74\x54\xc9\xc4\x51\x8e\x26\x52\x2b\x8f\x50\x16\x12\xd3\x98\x89\xa3\xd4\xe2\x19\xa4\x70\xe1\x33\x90\xb6\x15\x2e\x0b\x57\xd4\x4b\x92\xcc\x17\xef\xf1\xf5\x4b\xaa\xfd\x97\x8e\x67\x75\x79\xe8\xc1\x7a\x85\xaa\x3d\xa4\x61\x88\xe0\x9e\x7e\x97\xaa\xa5\xbb\x76\x2b\x36\x4e\x7b\xdc\x2d\x3e\x92\x75\x24\x06\x46\xae\x7c\xbc\x33\x7c\xb4\x4d\x16\x58\xb9\xde\xb9\x79\xb4\xce\x5a\xaf\x57\x2e\xde\x25\x02\x82\x75\xc0\x5a\x65\x10\x60\x4a\x5f\xe5\xd9\xe7\x41\xc6\x6a\xc0\xc8\xe0\x5f\x01\x11\xa6\xe3\x59\x9e\xba\xe7\xd7\x93\x7f\xfc\x86\xa0\x8b\x41\xa0\x3c\x13\x4e\xcd\x16\x1a\xd0\x5a\xb2\x8a\xf9\x59\x43\x2f\xfe\x8d\x5c\xe7\xa9\xbb\x5e\xbb\x3f\xdd\xbc\xc3\x37\x7e\x88\xdd\x01\x56\x54\xc2\x8f\x64\xbe\x3f\x39\x7d\x87\x78\x42\xec\x41\x20\xa4\xee\x49\xf3\x3a\x35\x61\x17\x06\x53\x33\x6a\x05\x25\x0b\x12\x14\xf6\x84\xa4\x79\xb0\x44\x51\x93\xf2\xe8\x08\xdd\x2b\x32\x52\x57\x8b\xa5\x85\xd8\xd8\x94\x0b\x65\x47\xb4\xef\xee\xf2\x34\xc7\x01\x2f\x10\xd0\xc5\x8d\x4f\xb2\x1a\x88\x47\xbe\xff\xe5\xb9\x3f\x41\x4e\xc9\x13\xbc\x81\x35\x0a\xd8\x66\x76\x1e\xef\xf2\x66\x70\x16\xa8\xc9\xb9\xa2\xa4\x91\xa6\x39\x56\x56\x84\x7c\x7a\x4f\xe6\x61\xe4\x8a\xf2\x8e\x9a\x28\xcf\xb0\x98\x32\x4d\x28\xc2\x69\x6e\x85\xd7\x6e\xe5\xd0\x6a\xcc\x8f\x96\x57\x5e\xcf\x14\x4c\x36\x74\xe1\x48\x7b\xd6\x2d\x58\x09\x64\x45\x80\xfd\x5c\x61\xc7\x5a\xef\x11\x73\xd4\xff\x5c\x02\x95\x84\xab\xc7\x0d\xea\x63\x88\xf8\xdc\x35\x1f\xcb\x99\x87\x2e\x71\xd3\x29\xae\xd8\x94\xd8\xf3\x3a\xd1\x84\xa5\x8d\x41\x38\x09\x2f\x06\x5c\x11\x87\xba\x77\x77\x32\x6c\xa7\x45\x9a\x6b\x1c\x40\x95\x34\x9b\xaa\xf6\x0e\x61\x12\x66\xfd\x11\x1f\x4f\x0d\xaa\x46\x2d\xc8\x37\xf8\x8f\xc0\xbf\xe1\x91\x2a\x0b\x1c\x2f\xda\x0e\x54\x75\x19\x4a\x7b\x47\x11\x05\x24\xb9\x0e\xa3\xda\xdb\x3d\x77\x8d\xf6\xba\xbf\xb7\x62\x7f\xae\xa4\xba\xb8\xb0\x34\x14\x3d\xa9\x35\x28\x7b\x6e\xd4\x58\xe8\xad\x1a\x8b\x96\xfc\x6c\x61\x7d\xe1\x85\x97\x54\x62\xc7\x72\xdb\x33\xc5\x32\x93\x8d\x30\xb3\x25\xf5\x77\x30\x05\xa1\x4b\x34\x31\x78\x60\x1f\xd3\x76\xe9\x57\xee\x27\xdf\xef\xac\xe0\x6c\x56\xd6\x01\x7d\x59\x42\x02\x35\xac\x99\x2b\x0a\xdd\xf3\x0c\xb8\x12\x02\x15\x35\x87\xfb\x24\x89\xd6\xf3\x64\x1d\xd5\x24\x69\x2b\xf6\xd1\x24\xfb\x15\x6b\x81\xe4\x97\xee\x6c\x1c\xe8\x4f\xe4\x26\x1e\x10\x96\x9a\x6d\x50\xd5\x11\x81\x45\xa4\x12\xc9\x59\x70\x3e\x23\x67\xc1\xb9\x9a\x6c\xd5\xdb\x6d\x26\x7f\xc7\x83\x44\xbd\x0d\x37\x24\xba\x8e\xbc\x84\x61\x68\x0b\x3a\xef\xa7\x20\xbc\x0e\xb2\xc4\x75\x25\x3f\x19\x53\x5c\x6b\x40\x55\xaa\x79\x12\x9b\xaa\x56\x0e\xa2\xb4\xc5\xbf\x00\x4d\x31\x9d\xfe\xeb\x4e\xa1\xec\x16\xc2\xf4\x6d\x3d\xca\xf9\x59\xe0\x74\x30\xff\xb8\x0e\x48\x54\x24\xab\x62\x05\x7e\x56\x58\x5c\x6e\x05\x1a\x5c\xd4\xe4\x14\x4c\x7d\x13\x79\xb5\xda\xf9\x69\x3d\x17\xd7\xd5\x36\xa3\x2f\x31\x0b\x24\x37\xca\xa0\xec\x88\x7d\xe6\xca\x80\x4c\x2b\xad\xee\x41\x96\x89\xa4\xd9\x83\x55\x32\x6f\x1f\x18\xdb\x2c\xc8\x7b\xf7\x26\x7d\xbc\x7c\x4c\x8a\x6f\xf1\xe1\xb3\xae\xea\xc5\x2c\x3e\xb2\x46\x9b\x0a\x2f\x3f\xce\x8e\x42\x4c\xd3\x73\x66\xdb\x1d\xf9\x30\x3b\x06\xf8\xef\xb8\x64\x96\x24\x8e\xf1\x55\x33\x45\xc5\xeb\x0b\x9e\x83\xa3\x85\xe6\x6a\xdd\x9c\x49\xf3\xa4\x33\x0a\x6f\xb0\xf7\xf2\xfe\xb8\x35\x53\xde\x6d\x26\x1f\x5d\xd8\x5f\xcb\x99\x32\x6f\xa5\xad\x70\x39\x2d\xd5\xb7\x3a\x41\xd6\xce\x46\xba\x53\x90\x50\x64\xb3\x55\xdb\x7c\x90\xe9\x65\x84\x3d\x50\x7c\x9a\xa3\x09\xb2\xd3\xac\x3f\xfb\xde\x55\x9a\x33\xea\xc1\x43\xb2\xdb\x22\xcb\xfb\xc4\x1c\x2c\x92\x64\x05\x19\x56\x1a\xc3\x30\xfc\x38\xcd\x18\xde\x08\x7b\x71\xb3\x8a\xdb\x37\xab\x25\x49\x70\x8f\x6a\xfd\xf2\x58\x50\x15\x3a\xda\xb0\xb1\x35\x56\x82\x33\x24\x27\xfc\x08\x49\xa5\x66\xe9\x84\x09\x9d\x6d\x36\x83\x7e\xd3\xc9\x88\xda\xa9\xa6\x6b\x8c\x37\x13\x32\xf6\x54\xf6\x01\x8e\xee\xba\xd3\x62\x85\xf3\x44\x6c\x57\xe0\xb5\x95\x34\x93\xcd\x96\x09\xea\x7b\xeb\x96\x76\xb6\x6d\xf6\xee\xb6\x76\x0c\xe6\x5f\x7e\x4e\x31\xad\xb6\xed\xed\x84\x12\x33\x53\x50\x66\xb7\xcd\x9d\x43\xb5\x8e\x6d\x51\x1e\x54\x54\xd2\x72\x24\x5e\xd8\x05\x73\x29\xa2\xc9\x93\x93\x26\x0d\xe0\x5e\x27\x5e\xbb\x71\x9b\x4e\xab\xe7\xc6\xee\xac\x49\x2f\xc7\x51\x69\x38\xfc\xb5\x5d\xc2\x41\xb9\x95\x60\x6a\x4f\x5b\x1e\x18\x35\xef\x07\x63\x58\x65\x0c\x15\x57\x15\x3f\xc5\x08\x32\x62\xc3\x08\x2a\x6d\xb8\xdf\x8a\xd9\x9b\xb6\xcc\x3b\x1d\xc6\x5e\x42\x78\x42\x95\x26\x33\x93\x9c\x2f\xae\xc6\x97\xe5\x55\x8e\x05\x43\xd2\x54\xf6\x82\x6c\x81\x6d\xfb\x5b\x5f\x6a\x02\xfa\x9f\xd6\x19\xb2\x74\x7b\xab\xb7\x14\x84\xd8\x27\xf1\x9c\xb8\x99\x0f\xad\x49\xc1\xa7\xcb\x22\xe6\x6e\x24\xc6\x2f\x5b\xaa\x7d\x5e\xe0\x75\xdc\x59\xed\xf9\x06\x7b\x7e\x1a\xf8\x5a\x50\x8a\xe1\xd2\xaa\x5f\x80\x4c\x2b\x9d\xd0\x41\x07\x94\xdd\x7a\x41\xd2\x5c\x85\x76\xd0\x34\x0c\x45\x75\xbd\x25\x09\x62\x2f\x0c\x9a\xab\xfc\xb1\x0e\x13\xdc\x5c\x0c\x17\xc7\x57\xb4\xf9\xde\x16\xaa\x55\xe8\x7b\xf5\x37\xfc\x3d\x2e\x83\xde\x57\x58\xeb\xd4\x68\xed\x93\x46\x11\xa5\x37\xa6\x2a\x19\x4a\xbe\xa1\x6a\xf2\x15\xe7\x01\x1f\xf2\x70\x12\x2e\xa5\x33\xaa\x68\x32\xd5\x1c\x4b\x2d\x71\xb2\x69\xe5\xdf\x42\x97\xb4\x85\xd3\xb6\xe8\x30\xc4\xc7\xcd\xa2\x6a\x75\x30\x27\xb9\xcc\x19\x0b\x2d\xea\x46\x5d\x1a\x5f\x47\x4b\xa1\xca\x0e\x47\xa5\x72\x51\xef\x2f\x6b\x2f\x9e\xaf\xd6\x8d\xac\x78\x49\x96\x21\x0b\xe0\xab\x2d\x76\xbd\xf8\x53\x63\xa1\x17\xae\x5a\x76\x0c\x66\x85\x6f\x38\x28\x97\xd9\xe8\xfb\x84\x19\xf6\x56\x7c\xb3\xf8\xf3\xbf\xea\x4c\xb6\xee\xe6\x14\xe0\x37\xf8\x82\xf8\x8d\x35\xd2\x44\x9d\xe5\xfd\x34\x20\xf3\xa4\x62\x28\x2c\x25\xf3\xd9\x61\x16\x78\x4a\x9c\x55\x14\x7e\xbe\xd1\xd6\xab\x38\x89\x08\x5e\xee\x83\x73\x7f\xcb\x0d\xd0\x85\x44\xcc\xc0\x88\x5a\x33\x26\x52\x6e\xe5\xff\xe4\x05\x6e\x5b\x8a\xd4\xde\xfb\x5d\x01\x77\x7f\x8d\x04\x4a\x29\x01\x70\x61\xa0\xcc\x09\x1a\xa8\x65\x77\x94\x75\x2c\xfe\xa7\x85\x34\xc0\xc6\xb4\x29\xd9\x14\xa3\x8e\xfe\x28\x82\xb8\xee\xbf\xb8\x69\x17\x32\xdf\x35\x48\x44\xad\x87\x81\x62\xef\x2a\xc0\x95\xd3\xf1\xd9\x3e\x46\x3e\x7b\xc9\x0b\x6e\x36\xae\x4f\xb0\xd0\x2c\x1a\xd1\xa2\xdf\x70\x10\x56\xe4\x60\x61\xfb\x6d\xb5\x3a\xf7\xe6\xb9\xed\x19\x8d\xfe\xb2\x93\xee\x96\x02\xf3\x2a\x33\xdf\x9e\x18\x7b\x9d\x84\xef\xc9\x86\x54\xf9\xb6\x70\xd0\x89\x67\xb7\x6a\xae\xd1\x95\xcc\x0b\x5d\x41\xfe\x94\x62\x4a\x23\x55\x2f\xa4\x57\xba\x29\x25\x3e\xed\x9f\x49\x9b\xe7\x0f\x28\x66\x6a\xaa\xf7\x27\x34\xbc\x2f\x3f\x1e\x51\x93\xab\xa9\xe1\x94\x71\x31\x1b\x53\xfd\x71\xb4\x52\xca\xa5\x7a\xfb\x71\x39\x27\x52\x6d\xad\x9a\xdc\x49\x6d\x69\xd5\xde\x45\xe1\x55\x44\xe2\xb8\x9a\xd3\xa4\x26\xe5\x45\xcf\x45\xf5\x97\x5f\x49\xd9\xf1\xe4\xdd\x96\x50\x39\xe7\x41\xed\xbc\x54\x13\x1b\xb4\x1d\x72\xef\xa8\x55\xcd\x4f\x50\x5b\xad\x9c\x82\xa0\xb6\x52\x31\xcf\x40\xd3\x49\xd0\x27\x93\x4e\xe0\x1e\x84\xfd\x68\xec\x29\x3d\xb2\x82\xec\xcf\xa8\x52\x77\xd0\xe0\xee\xee\xec\x7c\xab\xb6\xe6\x0b\xd9\x6d\x69\xcc\xe1\xd4\x5a\xa3\xd4\x80\xe3\x26\xdd\x98\x16\xb1\x6b\x19\xa8\x3c\xdb\x50\x29\x0f\x51\x6f\x3b\x15\x53\x3c\x10\xd3\x7a\x1e\xa6\x74\x14\x46\x16\xce\x82\x88\x4e\x99\xf2\x5b\x3e\x86\x17\xa8\x7a\xa0\x25\x3b\x60\x53\xf7\xca\xb0\x94\xd9\xb0\x70\xba\x48\x11\xfc\x13\xa5\xec\xd1\x79\xf8\xc7\x36\x77\xdd\xbd\x78\xf7\x7b\xd9\x1e\x04\xd0\xc0\xad\xb3\x59\x15\xc1\xd7\xf7\x36\x33\x78\xb4\xb5\x61\xb5\x84\x66\x2f\xb9\x21\xa4\xad\x11\xad\x23\x34\xf9\x79\xb5\x20\x4b\x12\x61\x3f\x6d\xdb\xbc\x4f\xb6\x9c\x63\x61\x38\x6a\x38\xce\x81\x4a\xd9\xac\x7a\x24\xd4\xee\xd7\x53\x77\xb2\xed\x74\x22\x18\xf7\xfb\x47\x74\xd2\x76\xb6\x31\x3f\xbc\x76\x2b\x72\xcb\xd2\xce\xb0\xed\xb8\x02\xa3\xf6\x50\xe5\x0f\xd5\x0a\xe5\x93\x93\xc2\x41\xd5\x3a\xdc\xd6\x9c\x18\xad\x3f\x7f\x55\x26\xdc\xba\xd3\xa1\x4a\x0b\xae\x7a\x27\x3c\x11\x52\x79\xff\x65\x05\x8e\x4e\x33\x76\x2b\x73\xcd\xb4\xbd\xa6\xd2\x28\x21\xee\xf3\x0a\xfb\xe5\x7a\xd9\xa5\x17\x78\xf1\xa2\xad\x02\x4b\x79\xd9\x28\xf3\x7b\xf1\x73\xb8\x23\xae\xbc\x25\x07\x21\x9d\xce\xbc\xfb\xb6\x34\xb6\x70\x3e\x2d\xed\x48\x56\x05\xff\xb6\x70\xce\x87\xb6\x7f\xc1\x2c\x70\xef\xc0\x24\x50\xc7\xe5\xd1\x27\x2f\xa8\xf3\x3a\x0f\x8a\x89\xe9\x59\x35\x05\x42\xda\xc5\x3b\x95\x64\x6e\xe2\x63\x66\x85\x29\xac\x17\x5a\xbf\x31\x10\x30\x1f\x68\x9e\xef\x9e\x6d\x21\x1d\xfc\xa7\xb9\x65\x7f\x7e\xd3\x1a\x32\x05\x60\x66\x7e\x7e\xf6\xa5\xc1\xa7\x2c\x56\x2d\xc0\x04\x39\xfa\xdd\xb6\x83\x98\x83\x5a\x88\xc4\x76\x95\x24\xbd\x39\x1c\xf9\x74\xa4\xe3\xe4\xdb\x59\x1e\xaf\x82\x9b\x42\x51\xf2\xc0\x85\x7a\xa9\x21\x0b\x5c\x80\xe5\xd1\x7c\x64\xa3\xce\x7b\xbe\xc3\x89\x8d\x94\xbe\xbb\x6e\x92\x10\x8e\x72\x90\xd2\x49\x8e\x4a\x86\xfa\xa6\x43\xae\x85\x64\xf4\x9c\x08\x54\x3f\xde\x21\xb5\xbd\x78\x2f\x02\xf2\xe3\x2c\xab\x3d\x20\xe9\xbe\xfd\xd0\xbf\xf5\xf9\xf1\xbb\xe4\xee\xbf\x54\x00\x01\x5f\x8c\x4d\xc5\x94\xe1\x34\x16\x56\x05\xb2\x5a\x3f\x52\x49\xd0\x6b\xad\xf3\xb2\xcd\x5b\xd5\x28\x96\xd5\xd5\xee\x6f\x5a\x0d\x3f\x91\x27\x9c\x95\x2c\x26\xf3\x88\x34\xdf\xec\xd6\xba\x07\x5f\xf9\xe1\x45\xd5\x00\x94\x6f\x92\x9d\xa9\x49\xdb\x73\x34\x85\xbe\x37\xf7\x48\x25\x0c\x8c\xc7\x4e\xf0\x0a\x37\x2c\x4a\xa9\x1c\x72\x8b\x21\xb7\x75\xd8\xb4\x4d\x78\x65\x07\x71\xdc\x70\x51\x9a\x77\xe9\x91\x28\x3e\x72\x3d\x57\xf3\xe0\x46\xf6\xe2\x4c\xff\x5f\x98\xc5\xa3\x08\xae\x5a\xd7\xf2\xfa\xb5\x2d\xbf\xfa\x4a\xcc\xc6\x06\x1c\x0a\x59\xbd\x25\xc1\x7a\xc9\x72\x7c\x4d\x0f\x74\xf5\x8a\xd4\x32\xd8\x14\x6a\xf0\xac\xd6\x12\xb6\x30\x78\x16\xb7\x7e\x1f\xb0\x79\xcb\xa7\x07\xf6\xb5\xe7\xfb\x9a\xcb\xee\xa2\xdf\x15\xf0\x42\xdb\xa7\x02\x3a\x3f\xb6\x5b\x7b\x54\x26\x2b\x7b\xa8\x1b\x5d\xb3\xc1\x75\x5d\xd5\x09\xb7\x7e\x46\x0d\xd7\xd2\xce\xc3\xe0\xd2\xbb\x3a\x22\xc1\xc6\x8b\xc2\xa0\x66\x93\xdc\xf7\x15\xb4\x70\x49\x73\x94\xf1\xd1\x4c\x97\xc9\x59\x6c\xfa\xe8\xc3\xcd\x8a\xa8\x51\x18\x26\xbf\xbf\x7f\x23\x14\xf3\x27\x5b\xe5\x59\x80\x96\x78\x35\x28\x1f\xe3\x8d\x84\x5b\xa0\xd5\x86\xc2\x68\x0d\xb9\x63\x8a\xd5\x65\xf5\x76\x85\x93\xc5\x54\x3e\x9a\x7e\x0c\x2f\xfe\x05\xa2\xe7\xb6\xa9\x87\x42\xc6\xa7\xb4\x19\x6b\x52\xec\xd8\xcd\x4e\xb5\x96\xde\x28\x64\x90\x29\xd6\x17\x33\xc1\x88\x25\xc5\xd4\x2f\x62\x49\xc1\x10\x04\xa4\x2a\x96\xb2\xab\x92\x9a\x91\xc1\xca\x45\x30\x42\x97\xfc\xcb\x63\x67\x60\x0a\x3d\x81\x1c\x10\x35\xf7\xc4\xca\x85\x9e\xe0\x7a\xd8\xda\xae\x0a\x41\xc9\x0d\xdd\x15\xee\x98\xcb\xba\xcc\x1e\x42\xbf\x6d\xf3\x53\x99\x99\xa6\xca\x7e\x78\x55\x46\xe9\x65\xac\x51\x42\xcb\xbb\xb8\x8c\xcb\x33\x7b\x19\x8b\xa5\x47\xff\x49\xbf\x02\xa0\x35\x78\x83\x0b\xe1\x9b\x21\x05\x61\x88\x19\x5c\x64\x97\x6c\x88\x1f\xae\x60\x29\xce\x66\xa2\xe8\x91\xaf\x51\x7e\xba\x3d\x1d\x48\x44\x48\x9c\xdc\x40\x04\xbc\xf8\x3c\x08\x13\xed\x32\x5c\x53\x15\x37\x1d\xe7\x7f\xb2\x18\x5e\x2e\xb3\x76\x89\x6a\xd0\x8f\x78\xe3\x69\xf3\xed\xa7\xcd\x16\xea\x6b\x9e\xd1\xb2\xe3\xd2\xec\x72\x0f\x41\x98\x78\x97\x37\xe9\xc5\x19\xe5\x52\x08\x54\x25\xf1\xd1\x1f\x6b\x12\xdd\x68\x90\xed\xad\xa6\x8f\x8b\x88\x60\x77\x1e\xad\x97\x17\x1a\x3c\x68\xcc\x99\x9d\xa5\x47\x8d\xbe\xa7\x47\x7d\x64\xe9\x51\x7d\x71\xdf\x48\xb7\x8d\x4c\x66\x55\x6f\x1b\x2e\x0f\x87\x9d\x2b\x39\x3c\x24\x2c\xad\x03\xa7\x33\x6e\x4a\x80\x5f\x68\x45\xa2\xcb\x30\x5a\x0e\x12\x45\xd9\xaa\x39\xa9\xc4\x35\x19\x2e\xc0\x7e\xfd\xc7\xea\xa7\xb5\xe7\xbb\x24\x52\xc0\xb5\x91\xe5\xbc\x98\x92\xdc\xb2\xd9\x92\x13\x22\x3b\x0b\x7c\x76\xeb\x43\xb0\x99\xfc\x2b\x6c\x51\x38\xba\x8a\xa7\x67\xb0\x5f\x21\x8f\x25\x0f\x4a\xce\xb7\xe7\xe9\xd9\xcd\x68\x00\x67\x8c\x3e\x86\x17\x2f\x60\x74\xca\x20\x7f\x9d\xac\x28\x8a\x9a\x76\x47\x4a\x37\x29\x82\xed\x5f\x29\x74\x9f\xda\x5e\xd3\x8d\x4b\x18\x78\x9a\x99\x43\x51\x1b\xfa\x49\xce\xb7\x6a\xf1\x4d\x71\x1a\x32\x9a\xbe\x43\x74\x67\x88\x7c\x82\x9c\x6f\xcf\x95\x2d\x1c\x93\xf7\x9b\x0c\x17\x6d\x17\xb3\x57\x13\x9a\x14\x93\x5c\xb1\x84\x28\xc5\x4a\x79\x1d\xca\xf0\x10\xcb\xaa\x02\x1a\x51\xa6\xed\x40\x62\x18\x65\xab\x02\x35\x30\x7d\x16\xbe\xb2\x8c\x22\xa5\x1b\x04\xd4\x86\x2b\xf2\x73\x6f\x26\xe3\x73\x3d\x4e\x48\xb4\x72\xd5\x23\x4e\x02\x39\x6f\x15\x79\xd6\xbe\x84\xb1\xa4\x6e\x51\xdd\x36\x5e\xb6\x0f\x8b\xc9\xbb\x1c\x24\x6c\x3d\x04\xb3\x1a\x34\xf3\x04\x2f\xfc\x96\x57\xba\xd2\x50\xed\x55\xb2\xca\xf6\x59\x43\x09\x9b\xc1\x40\x0d\xb2\xe4\x33\x9d\x94\xc1\x93\xb9\x34\x8e\x19\x18\x00\x4c\xcc\x6f\xe4\x73\x92\x5f\x77\x3f\x28\xd9\x9e\x92\xdd\xe7\xa9\x6c\x92\xfa\x86\xd3\x94\x84\x11\x69\xba\x1e\xbb\x89\x8f\xa5\xd3\x74\x5c\x62\x17\x41\x81\x4b\xd4\xaf\x60\xc4\x60\x25\x65\xcb\x2d\x65\x16\xe7\xdb\xf3\xe9\xd9\x79\x65\x71\x0b\xb9\x81\xe8\x1b\xd2\xfc\x4a\x50\xab\x74\x6f\x66\x81\x57\x28\xcf\xbc\xcb\x41\xa0\xdc\xa6\x46\x35\xc6\x68\xe0\xf2\x56\xb9\x62\x15\x86\xca\x07\x98\xd5\x8e\x61\x03\x66\x58\xe1\xbb\xd6\x07\x1c\x7f\x92\xf2\x43\xf0\xaa\x2c\x05\x61\x22\x81\x44\x24\x5d\x86\x91\x94\xbf\x57\xca\x2f\xa0\xe7\xef\xf4\x5c\xca\x5c\x9f\xc5\x68\x1e\xba\x64\x26\xdb\xba\xcd\xf7\x8e\x79\x46\x6b\x0c\x8e\xd5\xca\xf7\xf2\xbb\x44\x69\x53\x2e\xb2\xc4\x19\x19\xe3\xed\x5e\xa8\xed\x28\x93\x49\x6b\x05\xaf\x5e\x1d\x3c\xbc\x36\x9a\xdf\xe2\xce\x93\x13\x43\x10\xb0\xdc\x31\xac\x02\x7e\x9a\xb5\xd8\x4e\xf0\xda\x64\xd2\x82\x44\x59\xc6\x43\x26\x01\x16\x53\x3e\x76\xc9\x80\xd9\x26\x53\x12\xe3\x38\xc3\x3c\x78\x28\x51\x8e\xbf\x98\x23\xff\xec\x5c\xc5\xb3\x03\x5d\x8d\x67\x07\x86\x1a\xa6\x13\x93\x44\x37\x99\x88\x1a\xa9\xfe\x8c\x9c\x95\x06\x73\x3e\x50\x7e\x3c\x18\xe0\xd9\x20\x9a\xf9\x70\x67\xf0\x40\x51\x90\x1b\x06\x44\x39\x3c\x1c\x04\x90\xec\x72\x10\x21\x98\x7b\x45\x3d\x48\xee\xee\x02\x2e\xcc\x1e\xcc\x66\x89\xf2\x23\x7d\xa5\xf2\x23\x4f\x58\xe6\x29\xb7\x31\x1d\x42\x38\xf3\xb6\x97\x5e\x80\x7d\xff\xe6\x96\x0e\x00\xdf\xdd\xb1\x03\xab\x3e\x62\x43\xbe\xbb\x4b\xbf\x0d\x94\xac\xa6\x77\x39\x88\x15\x26\x79\x86\xdb\x6d\x26\x1c\x03\x1e\xef\x25\x9d\x82\x25\x89\x25\xc9\x78\x78\x11\x15\xd7\xb2\xe9\x7a\x8e\xc8\xf2\x97\xa9\xf1\x8c\x20\xaa\x92\xa9\xe1\x8c\xe5\xde\xfa\xfd\xfd\xeb\x17\xe1\x72\x15\x06\x24\x48\x06\xac\xef\xd9\x6c\x16\x1f\xcb\x47\xf2\x34\x56\xd4\xa8\x1f\xff\x44\x3c\x04\xc6\x9f\xc9\x19\xdf\x8b\x98\xf3\x27\xfd\x19\x16\x3c\x98\x47\xb2\x72\x2c\xcb\x53\xfa\x37\xab\x90\x79\x14\xa3\xdc\x9f\x7a\x2c\x24\xab\xa3\x24\x78\x16\x31\x4f\x8e\xaf\xa8\x51\xad\x43\x4f\x56\xce\x6b\xe4\x36\xce\xa8\x07\x44\x35\x94\x33\x3d\x53\x83\x62\xf4\x3a\x7e\xe9\x45\xe2\x4b\x16\x38\x5e\x0c\x98\xd6\x1a\x32\xa7\x6a\xa4\xba\x5e\x44\xe6\x49\x18\xdd\xfc\x1c\x24\x10\x67\x19\x21\x3f\x1e\xf8\x82\x74\x27\x78\x24\xb0\x02\x17\xf3\x79\x3e\xcb\x38\x32\x2d\xf5\x95\x16\xe9\xcc\x9b\x15\x6f\xb7\xf5\xdd\x30\x21\xb1\xd4\x7a\x0b\x49\xf1\x1a\x64\xa5\x74\xe7\xcb\xa4\x14\xbe\x68\xfe\x6e\x1c\x1e\xb2\x89\x3d\x98\xe5\x85\x67\xc6\xf9\xb1\xf8\x63\x7a\xbb\xa5\x9b\x25\x23\x0e\x3c\x4b\x60\x46\x55\xf0\x40\x94\xa0\x57\xc3\x59\x82\x18\x18\x10\x7d\x45\xe1\x78\xd6\x29\x31\xa9\x20\xa8\xbd\xcb\xd4\x73\x8e\xe3\x80\x41\x86\xab\x38\x8e\x53\x54\x85\x0c\x53\xd1\xb6\x24\x3b\xed\x6e\x39\x60\xdc\x1a\x8c\x2e\x7f\x8a\x00\x55\x51\x44\x04\x77\x7b\x1b\xee\x0a\x9e\xf6\x7a\xa2\x6f\xd3\x42\xfa\xcb\x00\x82\x4c\x51\x63\x46\xe7\xee\x30\xe6\x61\x3d\xaa\xdf\xce\x1e\xc0\x66\x9b\x9f\x8a\x03\x93\x71\x93\x00\xca\x73\xbd\x34\x95\xb6\xc9\xae\x60\xcc\x79\x07\xb6\x9c\x69\x7a\xc7\xc9\x6d\x44\x2e\x23\x12\x2f\xde\xc2\x9c\x1d\xe8\xdb\x5e\x22\xbf\x28\x87\xd1\xed\x87\x2a\xf8\x90\x61\xf2\x6d\x83\x98\x4a\x67\xba\x98\x4a\x29\x67\x75\x42\x9c\x14\xc0\x86\xd8\xd0\x32\x8b\xa1\x58\xc4\x91\xf8\x1e\x6a\xd4\xf0\xc0\x80\x89\x05\x49\xa1\x51\xbc\x08\xd7\xbe\x7b\xb2\x08\xaf\xdf\xa7\x3d\x67\xb9\x7e\xf9\x06\x43\x45\x00\x24\xe0\x87\x8f\x01\x18\x43\xe3\xfb\x79\x25\x59\x01\x56\x21\x56\xc3\x10\x3b\x93\x8e\xf2\xee\x2e\x85\x7d\x80\x0f\x0f\xf1\xc1\x6c\x16\xde\xdd\x1d\xe0\xc3\xc3\xf0\x60\x36\x8b\xa9\x30\x90\xa0\x0c\x74\x8a\x5a\xc8\x19\x0a\x7e\xfe\x75\xe0\x87\xd8\x05\x8d\x8a\x27\x12\xad\x7f\x87\x8a\xef\xee\x62\x45\x0d\xb6\x55\x3b\x80\xa8\xce\xb3\x01\xb7\x71\x57\x41\x36\x4b\xd2\xeb\xba\xbb\x11\x70\x78\xc8\x26\x35\x5a\x07\x4c\xd0\x11\x56\x28\xa7\x16\x5e\x95\x93\x0b\x9f\xda\x76\xdd\x13\xcf\x59\x68\xe7\xad\xeb\xb9\x1f\x22\x1c\xc4\x95\x34\xc0\xf9\xf0\xd8\xa2\x41\x5e\xfc\x81\xc4\x09\x45\x39\x4f\x9c\x19\xcf\x29\x88\x1f\xc2\x81\xae\xea\xca\x56\xbd\xf6\x7c\xbf\xa5\xab\xde\xca\x07\x27\x7a\xf8\x55\x40\x75\x2e\x01\x85\x97\x52\x82\x9e\x5f\x84\x51\x02\x62\x14\xbf\xf1\xa5\xf7\x1b\x88\x52\xd2\x6a\xda\xa4\xf6\xcc\x05\x51\x2b\x9e\x8b\x06\xe1\xcb\x30\xba\xf0\x5c\x97\x04\x69\x18\x5f\x83\x14\x9f\xd5\x7b\xc0\x98\x8e\x1a\xe6\x97\x88\x86\xc7\x16\x56\xd6\xce\x05\x45\x25\x3d\xb3\x06\xbe\x48\x71\xc4\x75\x71\x8e\x33\x6e\x13\x3c\xdf\x9e\xd7\xb3\xb0\xba\x78\x4f\xb6\x14\x7c\x82\x5d\x08\xc9\x68\xb4\xbc\x55\xe4\x2d\xc8\x2f\x31\x15\xe2\x78\xa8\xc6\x4d\x57\x37\xcb\x16\xa3\xa8\xe0\xd0\xa9\xaf\x01\x45\x72\xc1\xd8\x16\x54\x8c\x6d\xbd\x25\x07\x0e\xfd\x51\xea\x9c\xea\xab\xd7\x7d\xbd\x27\xe2\x21\xe3\x48\x6a\x28\x0a\xf7\xa4\xa8\xfb\x5b\x4f\x9b\xc5\xda\x66\xb3\x77\x93\xb9\xa8\x62\xf3\x4d\xa9\x34\x9d\x27\x92\x9b\x4f\x52\xd3\x10\xbe\x4c\x48\x54\xdd\x78\x2b\xc2\x54\x96\x0e\x49\x56\x8e\xe9\x56\x00\xb9\xa8\x3b\x8d\xbf\x25\xdf\xe7\xb4\x4e\x38\xa3\x25\x6a\x87\xa3\x60\x20\x7a\x0a\xde\xb2\xf0\xa3\x7a\x67\x81\x2a\xd6\x7c\x2e\xfa\x31\xf3\xfa\xe2\x31\x31\xa1\xa9\x68\x6d\x0e\x4a\xd6\x66\xbe\xc2\xca\xcd\x0b\x55\xf3\x78\xa7\xca\xe5\x22\x3d\xed\xd3\x6a\x75\xd8\x3d\x8e\xbf\x94\x16\x65\xc5\x46\xbd\xff\x55\xf7\xa0\x5c\xbc\x87\xfb\x28\x93\x0b\xda\x3c\x47\x75\xde\x83\xe7\xbe\x5f\x9a\xcc\x5d\x9d\x06\x6d\x6c\x31\x77\xf5\xfe\x29\x9a\x13\xe8\x1f\xbf\xa4\x63\x68\xdc\xde\xea\xf7\x29\xf1\xbe\x8b\x42\x3f\x99\x5e\x85\x48\x10\xaf\x23\xf2\xca\xff\x18\x57\x16\x7e\xdd\xa6\x05\xe2\xb9\xd8\xea\x0d\x0e\xae\xd6\xf8\x8a\x0c\xe4\x05\x0e\x5c\x9f\x5c\xe0\x08\xc2\x7f\xeb\xab\x24\x4b\x9f\x55\x38\x57\x76\x51\xcf\xfe\x44\x0f\x4d\x44\x98\x7e\x5e\x11\x0c\x93\x4c\x66\xfc\x10\xf2\xd8\x97\x1d\x20\x62\xb1\x32\x7f\x25\xd9\xec\xfe\x4a\x68\xad\x6c\xd6\xe4\xa9\xa5\x52\x59\x41\x6b\x2d\xf8\x85\x6b\x74\xd7\xfe\x5a\x68\x45\x9c\xcb\x5c\xcb\x71\xc5\xcc\x90\x39\x4c\x2a\x6a\x62\xd6\x28\xeb\xb6\x46\x47\xfb\x4d\xb8\x1f\x41\x70\x58\xd7\xab\x6b\x75\xd1\xde\x99\x0c\xc8\xa2\xa8\xd8\xd6\x0d\xd3\xd7\x26\x0b\xe6\xfa\x13\xc7\x13\xcc\x66\x85\xb4\x79\xe1\xa0\xac\x6f\xb4\xb1\x49\x3a\x45\xff\x56\xbb\x14\x4c\xd2\xff\x30\x18\x76\xda\xa8\xd8\x45\xca\x7b\xdf\xa7\x60\x02\x2a\x37\x20\xef\x24\xb8\x77\x06\xef\x3c\x28\xf2\xdb\x85\x71\x88\xd7\xea\xc3\x41\x82\x3c\x70\x43\x8d\x49\xe4\x61\xdf\xfb\x42\x6a\xc4\xe0\xdb\x34\xe2\x30\x15\xb4\xb3\x78\x8c\x6d\xd5\x60\xa2\x0a\x0e\xd2\xa6\xf5\xce\xd5\xf9\xaa\xd1\x27\x5b\xec\x08\x92\xd5\xc6\x33\x82\xd2\x77\xab\xe1\xac\x7c\xf5\x49\x5c\xe0\x08\xe7\xca\xb3\xfa\xc5\x9f\x5e\xc2\x02\x33\x1e\x16\x39\x40\x93\xfc\x5e\xdd\xc7\xab\x52\x7b\xaa\x4e\x14\x42\x1f\x2b\x46\xb5\xa6\x58\x8f\xaa\xbe\xb3\x33\xfd\x1e\x15\xe2\x14\xff\x0a\xac\xa4\xcd\xf8\x9d\xbb\x97\xd2\x70\x21\xb9\xd5\xe8\x5d\xdd\x89\x0a\x53\xd1\xa5\x72\xdd\x5f\x8f\xda\xd6\xaa\x49\xc9\xde\xd4\xa4\x66\xf5\xa8\x17\xd1\x08\x31\xbf\x8f\xce\xc1\x51\x3b\xc7\x70\xe7\x45\x26\x85\xd7\x5c\x4c\x56\x9e\xe7\x44\x64\x5c\x53\xa2\xe6\x10\x4f\x21\x58\xbe\xc3\x48\x2f\xc6\x12\x01\xff\x79\x16\x20\x5a\xf1\x02\xcf\x3f\xe5\x57\x71\x0c\x14\x35\x40\xfc\xb6\xa6\x41\xa6\x76\x7b\xf1\xcf\xae\x97\xc0\x21\xbb\x03\xa3\x2c\x14\x74\x49\xb9\x7c\x7a\xf2\x10\xeb\x7f\xf7\x35\xdd\xc0\x85\x4b\xf7\x91\xb2\x87\x79\xc4\x7a\x3b\x0b\xde\xc9\xd4\xf2\x52\x9c\x8c\x7c\xe1\x0b\x8f\x1b\x6d\x2f\xa7\xe9\x78\x84\x76\xe9\xb3\x3a\xab\xcb\xcb\xe2\xfd\xab\xf5\xec\xa2\x08\x79\xa1\xcf\xe6\x46\x42\x2c\x7f\x3f\x06\x53\x80\xba\x04\xcd\x3d\x18\x8e\xb8\x3f\xfe\xbb\x53\x74\x9d\xc8\xb0\xaf\x5d\xea\x67\x11\xcf\x39\xd1\x09\x8f\x6b\x76\xa9\x9f\x8b\xb7\xf9\xd6\x53\x50\xf1\x70\x47\x3f\x22\x12\x47\x73\x0f\xa2\xf9\x37\xd0\x8f\x6a\x83\xc0\x63\x39\xa5\xaf\x5a\xfb\x6e\x96\xf2\x22\x2f\x3d\xc9\x2e\xbe\xe6\x95\x0a\x69\x33\x64\xa5\x98\xe9\xa5\x4b\x7a\x29\x5c\xef\xdc\x45\x44\xd5\x8b\x54\xb3\x97\x57\xee\x66\x95\x15\x7e\x2e\x04\xfa\x7b\x53\xbe\x04\x55\xec\xd4\x8b\xb3\x8e\x16\x38\xce\xef\xc4\x16\x3b\x78\xee\xfb\xb9\x02\xb9\x6d\x0b\x94\x16\x94\xc8\xe7\xbe\xdf\xa6\x63\x9e\xe4\xf7\xde\xd7\x74\x22\xdc\x7c\xff\x55\xf2\xdd\x7d\x57\x5c\x19\x65\xcd\x8d\x2b\x97\xce\xde\xc3\x00\x9f\x7e\x3d\x49\x53\xa4\xd5\x48\xc2\x35\x6c\x47\xae\x1d\xea\x7d\x18\x40\x53\x36\xab\xbd\x9f\xe5\xe9\x77\x5a\xa7\x25\x3e\x73\xdf\x79\xac\xda\xb9\xc9\xd7\xc5\x50\x77\x9c\xb4\xc8\xc5\x29\xde\x0c\x0e\x25\x7c\xf5\xd9\x92\xfb\xc6\x61\x17\x95\x80\x80\x2b\x01\x59\x14\xb4\xe0\x92\x0b\x32\x97\xdc\xb4\xe6\xe6\x5a\xa5\xba\xc7\xb2\x2d\x3b\x28\x1d\x27\x69\x8c\xe3\xce\x02\x24\xeb\xe3\xb8\x01\x91\xc5\x68\xee\xcb\x30\x92\x3e\x86\x17\xd5\xe0\x6d\x8e\x59\x21\xde\x5b\x56\x94\x67\x2c\x76\x14\x8b\x11\xdd\x38\x8b\x35\x4d\x0f\xca\x97\xd5\xdb\x06\x37\x64\x93\xc9\x21\xae\x5a\x39\xdb\xf6\x26\x51\x0f\x4a\x04\x12\x79\x56\xdd\xb1\xa8\x9e\x95\xf3\xe6\x5f\xc3\x8b\x8c\x37\x07\x7d\xb6\xac\xe0\x2b\xb6\xac\x00\xdc\x23\x6a\xfa\xe2\x8e\x1d\xe0\xdb\xb0\xf8\x4e\x46\xfb\x6b\x78\xd1\x83\xc1\xf6\x48\x77\x5f\xe6\x9a\x99\xac\xff\x97\x90\x9c\xbe\x5e\xd0\xce\x75\x9f\x7d\x49\xd9\x45\x6f\x6b\x9d\x46\xb7\x7d\x30\xc5\xec\xbe\x5a\x58\xb4\xfe\x93\x6c\x3d\xfb\x0e\x43\x7a\x4f\x01\x11\xb7\x32\x0a\xd9\xf9\xf6\xbc\x8f\x1f\x88\x25\x2e\x29\x18\x83\x6f\xb3\x5d\x6b\xda\x65\x90\x86\xa3\xeb\x7d\xa2\x3b\x61\x24\xc8\x25\x3e\xc9\x5e\xb6\x83\xb3\x53\x38\x15\xfd\x88\x6c\x73\x95\x4d\xef\x1d\xbe\x22\xe2\xfe\xf5\x8c\xdc\xff\x28\x52\x39\xd5\x52\x1b\x7a\xb2\x33\xfe\x7f\x25\x77\xf0\x9e\xd7\xc8\x49\x8a\x23\xbe\x4e\x38\xce\xfe\xda\xa1\x7a\xd5\x3c\x3f\x45\x8a\x39\x4a\xb3\x3f\x74\x12\x0e\x4b\xcf\x05\xb4\xa9\x41\x9c\x86\x17\x5c\x7d\xcb\x08\xf6\xdc\x2f\xd4\x15\xbe\x9a\xb9\xec\xa2\xf8\x88\x21\xad\x1e\xba\x42\x3d\x31\x7a\xbf\x77\xc8\xfe\xc3\xde\x8a\x80\x93\x24\x8a\xa7\xb7\xc2\xad\x9c\xb2\x3b\x97\xb3\xeb\x12\x65\x76\xd7\x60\x4c\xa2\x4b\xb8\x8c\x43\xa6\x9f\xf2\x56\x0d\xc2\x68\x59\xf6\x58\xa6\x27\xdb\x12\x51\x5c\xcf\xa8\x67\x70\x76\x9b\xde\x1b\x47\xf9\xd4\xf6\x3c\x17\xbb\x79\xc6\xfe\x99\xfc\x9e\xfc\xb1\x26\x71\x42\x5c\xe9\x39\x45\xa9\x74\x8d\x63\xe1\x60\xa6\x17\x48\x31\x49\xa4\xf0\x52\xc2\xe9\x3d\x67\xac\x5e\x2c\x88\xeb\x09\x7a\xfd\x72\x96\x20\xba\x75\xa8\x09\x7a\x99\x81\x35\x4b\xd0\x07\x7c\x15\x1f\x1e\xb2\xbf\xc8\x9d\xab\x09\x62\xb1\xe0\xe5\x22\x1e\x40\x9f\xa0\xf7\xab\x39\x05\xb7\x5c\x4e\xe7\x58\x0c\x02\x07\xc8\x05\x94\xbc\x27\xf1\x2a\x0c\xe2\x22\x6a\xe8\x2c\xa6\x47\xee\x70\xe5\x04\x90\x1a\x0b\x49\x22\xf0\xdf\xad\x63\xac\x59\x53\x5d\x51\xc3\x99\xf5\x63\xf8\x37\xfc\x63\xf8\xc3\x0f\x4a\x7c\x16\x6a\xd6\xb9\x70\x3e\x28\x3c\x7f\xd6\x1e\xe9\x79\x06\xef\x45\x6f\x81\xd0\xe2\xbb\xbb\xb3\xf3\x2c\x77\x00\xe8\x1f\xd9\x88\x4f\xbc\xe0\xca\x6f\x1a\xb7\x8a\xf3\x91\xc7\xd5\x91\x87\xc2\xc8\xe3\xbf\xdb\xc7\xb1\x66\xd3\x91\x47\x33\xfb\xc7\xe8\x6f\xf1\x8f\xd1\x0f\x3f\x28\xe1\x59\xa4\xd9\xe2\xc8\xa3\x9e\x23\x4f\xb5\x41\x96\xac\x18\x2b\x2a\x3e\xcf\xcf\xa2\xf5\xf1\xd9\x16\x56\x5f\x57\x7e\x92\xa6\xa5\xfa\xed\x0e\xc6\xb6\x6f\x38\x7c\xa9\x16\xd2\x2f\x4c\x41\x05\xe6\x79\xa1\xd9\x69\x68\xf6\xe8\x84\x9d\x8c\x6e\x5e\xa9\xe9\x18\xf2\xca\x77\x77\xb7\xdb\x3c\x18\x28\x7f\x5e\xb8\xeb\x3e\x50\x8a\xa9\x95\x72\xdd\xfc\x8c\x9c\xd3\x1e\xd4\x78\x76\x0b\x23\x23\x59\x67\x62\x7b\xac\xa0\xcb\x30\xfa\x19\xcf\x17\x75\x9e\xff\xf8\x8c\x9c\xcf\xf0\x19\x39\xdf\x2a\x6a\x8c\xde\xa7\x79\x3a\xf9\x30\xb3\xdf\x6c\x29\x0a\x0f\xce\xc8\xb9\x1a\x6f\x15\x35\x41\xbf\x86\x17\x5c\x50\x9f\x05\x6b\xdf\x3f\x98\x89\x8f\x8e\xc5\x1f\x53\xe1\x86\x7c\x55\xa6\x6a\x33\x2f\x90\x69\x3f\xef\x7c\xec\x05\xbf\x86\x17\xaf\x5d\xd6\xc3\xeb\x97\x2a\xe3\x2a\x20\x90\xce\x84\xef\x77\x77\x95\x8e\x04\xc1\xb5\x67\xb4\x85\x60\xb1\x51\xf9\xfb\x2a\x11\x17\x35\xe3\x38\xa7\x43\x7d\x0b\xb7\x0a\x7f\x48\x2f\x46\x99\x89\x4f\xfe\x8f\x41\x9c\x42\x95\xd9\x5b\x9c\x2c\xd0\xa5\x1f\x86\xd1\x40\x7c\x7e\x64\x10\x87\x76\xf6\x22\xcb\x30\x98\x76\x96\x3f\xe1\x9d\xe5\x0f\x8a\x9d\xe5\xcf\xd3\xce\xde\x67\x57\x0d\xfe\x0c\x69\x56\x67\x03\xf1\xd9\x87\x08\xcf\x3f\x91\x88\x12\x8d\x82\x58\x05\x8a\xf8\xea\xa5\x75\x94\xa1\x57\x1f\x1f\xd7\x3d\x9c\xd2\x49\xa7\x18\x22\x9f\x93\x52\x0f\xc5\x47\xc7\xe5\x07\x69\xcb\x5f\x42\xdf\x0f\xaf\x7f\x5f\xe5\x96\x55\x68\xcd\x1e\xaf\xe1\xf1\xeb\x97\xc7\xe5\x07\x69\xeb\x77\x69\xfa\x0a\xf1\xe5\xf1\xac\xb6\x00\x38\xb2\xd8\x46\x4c\x79\x91\x02\x5d\x2d\x61\xc7\xa6\xd5\x04\xfd\x0f\x8e\xb3\x0a\xb3\x83\x83\xc6\x8e\xd4\x04\xf1\x9f\xc4\x15\x97\x54\xf5\x21\x5d\x57\xd5\xa7\xe8\x64\x81\x23\xe2\x56\xb7\xbc\xee\x43\x3e\x8d\xd2\x4f\x35\x2b\xde\x3c\x5c\xdd\x14\x93\x78\x8a\x8d\x3f\xc6\x20\x33\xb1\x52\x2f\xb8\xf4\xe1\x28\x6a\x55\xb1\x88\xc8\x32\xdc\x10\x2d\x02\xdd\xaf\xc1\x54\x9c\x1d\xe8\x0f\xbf\xa7\x74\x7a\x64\x29\x9d\xa2\x9a\x6c\xb9\x3c\x47\xf2\x7f\x93\x9b\xa9\xfc\xfa\xa5\xac\x7e\x22\x37\xbf\x84\x51\x16\x0b\x52\x7f\x5c\x70\x8e\x97\x84\x92\xce\x80\x2a\x32\x2b\x2f\xc1\xec\xc7\x96\xb7\x16\x6d\x41\xb5\xfb\x62\x7e\x48\x1e\x8c\xf0\xb1\x17\x5c\xad\x7d\x1c\x79\x5f\x88\x32\x20\x4a\x53\xf7\x2a\x1d\x60\x6a\x08\x93\xb9\xdd\x18\x52\xb5\x1d\x43\x37\x2b\x7f\x1d\x41\x55\x65\x10\x28\xd3\x60\xab\xae\xd6\xf1\xe2\x1d\xbe\x81\x90\xb8\xda\xed\x19\x0e\xec\xcc\x40\x3c\x9f\x9e\x9d\xab\x5e\x30\xf7\xd7\x2e\x71\xa7\x67\xe7\xdb\x67\xe2\xb6\x9a\xd4\x6c\xab\x31\xeb\x85\xe2\x14\xf4\x2a\xba\x6b\xfc\x12\x85\x4b\xfe\xc2\xff\x26\x37\x83\x58\x51\xfd\x19\x41\xf9\x4a\xfb\x25\x8c\x06\x91\xa2\x7a\x33\x92\xdb\xf8\x22\xe5\x19\xdb\xe1\x96\xf8\x13\x61\x44\x9f\x9c\xc5\xe7\xf5\x1b\x39\x2c\x11\x35\x98\xf9\x28\x13\x3c\x06\x9e\x4a\x54\xc8\x54\x10\x20\x0a\x88\xba\x9e\x05\x28\x85\xe4\xc7\x01\x86\x87\x3c\xa7\x84\xa2\xae\xe1\x54\xe9\x0c\x67\x35\x14\x28\x4a\xa5\x43\x35\x1c\xac\x15\x96\x47\x8f\xb0\x36\x58\x94\x64\x7f\x61\x8a\x6c\xad\x28\x2b\x22\xb5\xd7\x69\x6e\x66\x4a\x59\xfb\xfe\x09\x55\x92\x69\x17\x39\x22\x55\x06\x8b\xa2\x06\x5b\x35\xab\x52\x88\xc4\x54\x79\xfa\x99\xb0\x7a\xde\xdf\xaa\x3d\xef\x6f\x89\xe7\xfd\xad\xf3\xaa\xaa\x7f\xa0\x6f\xd5\x68\x06\x16\x4d\xca\x2d\x15\x10\xa6\xe0\x6a\x8f\xe6\x28\x4a\x2a\x78\x10\x35\x4f\xcf\xbb\x22\xe4\x13\xd5\xf4\x83\x1d\x9b\xa6\xb5\xc3\x9a\x69\xcf\x30\x1b\x81\xc4\xde\xab\xc7\xd9\x6c\x56\x10\x9b\xf8\x00\x83\xe3\x08\x31\x1e\xce\x79\x60\xa0\x94\xae\x08\x81\x9d\x27\x35\x87\x54\x49\xba\x86\x1d\xd4\xac\x60\xe4\xe2\x78\x41\x22\x58\xb4\xa5\x7d\xac\xf6\x12\x09\x71\x2b\xca\xc3\x80\x1e\xad\x1e\xc1\x35\x05\x6e\xe2\xfe\x0d\x12\x70\xc3\x51\x85\x54\xc2\x6d\x55\xe0\x4b\xca\x01\xf3\xcd\x81\x72\x20\x3c\xc8\xee\xe7\xe8\xa3\x1d\x24\xa0\x1d\x14\x4f\xd1\xe3\x38\xf6\xae\x82\x41\xaa\x2b\xc0\xac\x3e\x0e\xb9\x1b\xfe\xfe\x12\x46\xcc\x91\xde\x57\x10\xaf\xc9\x4c\xc6\x0d\x03\xe4\x73\x12\xe1\x79\x22\xee\x39\x65\x37\x87\xc0\x98\x2a\x59\xf2\x49\xce\x74\x94\xdc\x89\xc9\xc1\x54\x31\x3f\x36\xc5\xde\xf1\xda\x85\xfe\xea\x31\x2d\xba\xf5\x6e\x7d\x2f\xf8\x04\xe7\x2b\x7c\xb8\x7d\x5e\x3e\xca\x36\xbc\x40\x95\x05\x1a\x2f\x24\xea\xc8\xdd\xa9\x58\xd9\x6e\xb7\x15\x89\x70\x57\x91\xd0\x8d\xb0\x17\x68\x71\x12\xe1\x84\x5c\xdd\x3c\xda\xe5\xd4\xb4\x56\xf8\x3e\xaf\xeb\xba\xa1\xc1\xff\x1f\x74\x7d\x0a\xff\xff\x2f\xcb\xcf\xfa\x4b\x18\xcd\xc9\x4b\x82\x5d\xdf\x0b\x08\x24\x4b\x28\x3c\x01\x0d\x55\xf9\x5a\xb9\x3a\x8f\x56\x79\xb4\x08\x6c\xb7\x6b\x74\x59\x28\x7e\x29\x5c\xa3\x54\xb4\x52\x14\xcb\xfa\xf3\x22\xb1\x97\xc7\xce\x8f\x9e\xbc\x1d\xe0\xeb\xe8\x3b\xbf\x86\xe9\x91\x52\xf7\x6e\xe0\x7c\x0c\x2f\xb4\x95\x8f\x1f\xef\x62\xfd\x76\xcb\xb1\x75\xfd\xa5\xab\x94\x2f\x43\x66\xda\xe0\xe6\x94\x41\x61\xa5\x3d\x0f\x82\x30\xe1\x81\x29\x45\x33\x4b\x76\x69\x10\xbf\x87\x8f\x6a\x67\x3d\xd2\xb7\xec\x3e\xa1\xb5\x77\x99\x3e\x81\x39\x6d\xe0\x6f\xfd\x98\x4e\xe1\xf8\x97\x20\x3d\xbd\x7e\x99\x8d\x83\xc7\xd7\xec\x41\x78\x04\xd3\x32\x6e\x35\x2d\xd7\xe9\xc0\x39\x95\xe1\xb3\x5c\xa7\x27\xaa\x9c\xd2\xc7\xf9\x2c\x61\xe6\x66\x9c\x25\x3f\x2f\x10\x57\x1e\x00\x9b\xbe\x12\x1f\x1e\xf6\x37\x68\x27\xc5\xb7\xe6\xbd\x65\x66\xee\xaf\xe4\x8e\x94\xfa\xb8\x9c\xff\x68\xa9\x8f\xab\x23\x01\xd7\x43\x6a\x94\x10\xaa\xb6\xbf\x62\xe6\x92\x46\x2f\x94\x1a\xa7\xfa\x74\x80\xb2\xc8\x9f\x22\xc1\x08\x29\xa0\x8a\x4c\x65\xab\x12\xf5\xf6\xa5\x77\x79\x39\x0d\x10\xfd\x13\x1f\x1e\xf2\x2f\x67\xc9\xb9\xfa\xfa\xe5\x54\x98\x25\xf4\xfa\xa5\x2a\x6b\xb9\xa8\x4b\xd2\xb7\x29\x2a\x50\xf8\xb4\xbc\x34\xa0\x05\x69\x5a\x17\x27\xeb\x8b\xa5\x97\xc0\x95\x3d\xc2\x2e\x49\x50\xfe\x9c\xed\x92\xf9\x6f\x76\xbd\xb9\x58\x83\x6e\xb8\x90\x9d\xbf\x5e\xc7\x50\x43\x8e\x9f\xdd\x69\x67\x67\xaf\x35\x0b\xd4\xe5\x57\x0a\x55\x1d\xd5\x99\x6d\x15\x7f\x4f\x96\xfa\x3d\x59\xea\x1e\xae\xb4\x64\xac\x03\x02\xc3\x49\x02\x16\x1b\x77\x2a\xbf\x13\x7f\xfe\x1a\x5e\xb4\xd8\x33\x32\xd1\x24\x5b\x9e\x59\x7c\x00\xfc\x4a\x45\x7c\xd8\xff\x9a\x37\xbf\xe2\xce\xf7\xfa\x65\x79\xef\x7b\x87\x23\x12\x24\xe0\x18\x4a\xbf\xd6\xf4\x92\x16\xb5\xf4\x35\x15\x3a\xe0\x7e\x1e\xbe\x89\xf2\xbd\x95\xbe\x8c\x44\x5e\xe8\x7a\x73\x31\x61\x1b\x9b\x02\xd0\x31\xd3\xe2\x97\x24\xc1\x9e\x0f\xce\x27\xfe\x44\x68\x4b\x89\x8e\x8d\xbb\x80\xc9\xa6\x2e\xc5\x6a\x42\xbf\xa5\xd6\x35\x1d\xf2\xf7\xfc\x1a\x5e\x70\x30\xf8\x39\x12\x66\xe6\x10\xec\xdf\xc5\x18\x60\xf5\xb6\xf0\x73\x7a\x26\x76\x51\xbb\x6d\xee\x60\x66\x11\x91\x7f\x78\x98\x21\x9f\x2e\x47\xb1\xe8\xb8\xf0\x6b\xca\x28\x15\x8e\xc5\xe7\x56\xe0\x68\x86\x07\xf5\x66\x9b\x58\x41\x17\x6b\xcf\x77\x7f\x7f\xff\x66\x10\xab\x6c\xe6\x54\x39\x3f\x12\x2f\x2b\x28\x5e\xf9\x5e\x32\x90\x8f\x65\xa5\x98\xf4\xb6\xb0\x77\x75\xe7\x6d\x6d\x35\xec\x84\x03\x21\xdf\xaf\x2a\x1f\x15\x03\xa6\x85\x18\xcc\x00\x22\xb9\xd3\xa8\xd8\xce\x7e\x84\xf0\x59\xb1\x13\xd5\xa5\x9b\x2a\x2c\xf2\xed\x56\x15\x4e\x4c\x76\x76\x58\x3c\x5d\x59\x19\x58\xe5\xb0\x53\xff\xfe\xea\xba\x13\x0f\x5a\x75\xf5\x54\x3c\x0e\x54\xee\x8a\xe5\x07\x12\x7d\x8a\x6a\x1e\x00\x95\xf1\xb3\x9c\x0d\xe4\xd6\x39\x7c\x5c\x90\x0d\x8f\x45\xeb\xda\x94\x6c\x3b\x12\x6f\x89\x5b\x74\x6e\x10\x7c\xac\x22\xa0\xe8\xc4\xfb\x8d\xdd\x85\xb5\x8b\xa4\x12\x90\xe4\x3a\x8c\x3e\xed\x2c\xad\x78\xb1\xe6\xad\xfe\x8c\x78\xba\xb9\xe7\x46\x53\xf9\xc5\xeb\x97\xef\x65\xd5\x5b\x4d\xe5\xd7\xef\x64\x75\x79\xe1\x25\xf1\x54\x7e\xfb\x93\x97\x74\x05\xe6\xd0\x9e\x5f\xbf\x7b\x96\xd3\xcf\xc6\x19\x60\x96\x6e\xf5\xf5\xbb\x99\x7c\x96\xd1\x0d\x56\xe5\x73\x59\x51\xf8\xfe\xc9\xc2\x2b\xe0\x4a\xce\x77\x14\x49\x99\xf2\x5b\xa3\x9a\xdc\xf2\x9c\x22\x6f\xf0\x05\xf1\x55\x8a\xd3\x29\x41\xa7\x14\x62\x35\x09\xa7\x04\x7d\x08\x55\x2f\x7e\x79\x13\xe0\xa5\x37\x9f\x1e\x18\xdb\xad\xa2\x86\xf4\x05\xfc\xd1\x9e\xfb\xd7\xb7\x82\x74\x8b\xa0\xf3\x59\x9c\xc7\x7a\xa1\x38\x8c\x92\xec\x5c\xd0\xce\x3a\x7c\x67\x6c\x58\x10\xba\x44\x13\xee\xed\x7e\xac\xcb\xa8\x4b\xca\x29\x6c\x8a\xb7\xbf\x85\x2e\xc9\x73\x26\x4c\x93\x72\x2a\xb3\xee\x65\x47\xd1\xc2\x2e\x40\x7e\xac\x18\x49\x83\xe2\x3c\x88\x85\xf3\x96\x24\x4e\xf0\x72\x25\xdf\x03\xd0\x47\x0b\x62\x7b\x56\x6d\x8e\x00\x2f\x7e\x19\x61\x8f\x5d\x2c\x0d\xdf\x64\x75\x91\x24\xab\xe7\x2e\xe5\x43\xaf\x3e\x7c\x78\x07\x81\xbc\xdd\xe1\x80\x2f\xd9\x6d\xdb\x45\xb3\x1e\x7f\x78\x2f\x7b\x1e\xb3\xe4\xa9\xa9\xe1\x46\xf9\x3a\xd9\x4d\x94\xbd\x70\x83\xc3\x2c\x10\x24\xaf\x40\xad\x71\x8f\x95\x05\x31\x0e\x68\xbb\x83\x4c\x64\xb9\x45\x29\x6a\xbb\xed\x93\xef\x58\xa4\x23\x7e\xe1\xee\x63\x25\xb8\x4e\x5d\x4a\x08\xb1\xfe\x3a\xeb\x55\x94\x05\x03\x3e\x72\x36\xd3\x89\x12\xd1\x53\x22\x84\x38\xe6\xde\x92\xaa\x9f\xa4\x58\x2d\x75\xbc\xd4\xc4\x3f\xba\x3c\xfe\x11\x1e\x31\x1d\x33\xff\x25\x44\x1e\x42\x3b\xca\xf4\xb3\x16\xf0\x23\x6d\xc0\x7e\xf0\xfa\x5f\x3d\x6f\xfc\x06\xfd\xc7\x3a\x61\xa9\x1c\xb6\x5a\x4f\xe5\x17\xef\x7e\x97\xd5\x25\xbb\x13\x5d\x66\x77\xa3\xbf\xfd\x49\x56\x5d\x2f\xfe\x34\x95\x5f\x7a\xf1\x27\xfa\xcb\x0b\x57\xf1\x54\x7e\xfd\x8f\x77\x27\xbb\x6e\x1e\x9c\x17\x3f\x7a\x54\x84\x41\x40\xe6\xc9\x54\x7e\xc1\xbe\xf4\x31\x9a\x7c\xc0\x57\xf1\xdd\xdd\x80\x7d\x99\x9d\x9d\x7f\xb5\xb9\x1a\x4e\xbe\x3f\xee\xa5\xce\xd1\xc5\x0f\xa5\x00\x81\xac\x7c\x7c\xf3\x96\xfd\xee\x85\x35\x81\x17\xb4\x72\x80\xbd\xf9\x48\xf3\x84\x02\x5a\xae\xf7\x3e\x59\xaf\x54\xae\x07\xf8\x78\x4e\xdc\x17\x38\xc0\x91\x10\xd1\x0c\x96\xa7\xbc\xc4\x23\x2c\x90\x9a\x9d\xfa\x94\xca\x65\xfb\x43\x6d\x4b\xd4\xf2\x8e\x48\xdd\xa7\x0a\x5a\x0d\x98\xad\x45\x6b\x90\xa1\x35\x00\x3f\x5c\x5c\xeb\xb5\x22\xe8\xe7\xd5\x82\x2c\x49\x84\x7d\xca\x17\xc5\x58\xc3\xa0\x58\x44\xe5\xb8\x20\xd3\x36\x8b\xad\x4a\x55\xd1\x89\xf7\x85\xbc\xfd\x49\x0d\xd0\x09\xe3\x94\xf1\x2c\xff\xca\x62\xe0\x0b\x53\x14\xec\xaa\xbd\xc1\x14\xf1\x93\xa6\x4f\x92\xd4\xdb\x42\x88\xbc\xc0\x8b\x17\xc4\x7d\xce\x0c\xb1\xf9\xcf\xfd\x04\x0f\x95\xef\xaa\x7c\x12\x48\x4b\xeb\x67\x27\x14\xb2\x08\x7b\xc0\x51\x4a\x94\x6c\xa7\x9f\xc1\x01\x38\xd8\xf2\xd5\xbc\xec\xc5\xbb\xdf\x67\x01\x7a\xf1\xee\x77\xe1\x19\xa7\x5d\x26\x10\x08\xcf\x8b\xc4\x9d\xd4\x12\xf7\xd7\x4f\x44\xf8\x89\xb4\x9d\x8b\x78\x54\x1c\x46\xb4\xe6\x3d\x9f\xcf\x49\x1c\x87\xd1\xeb\x97\x72\xaa\x8b\xc6\x64\x1e\x91\x64\x2a\x9f\xc0\xdf\xd7\x2f\x9b\xf6\x4c\x91\x27\xbd\x03\x95\xe8\xf5\x4b\xca\x1b\xe0\x3b\x65\xdd\xe9\x63\x30\xc3\x17\x99\x51\x5a\xa7\x8c\xf8\xbe\xcc\x03\x98\xcf\x11\xfe\x88\x3f\xd7\x21\x9d\x3e\x2f\xd5\xfa\x6a\xb2\x6f\x6c\x90\x05\x7c\xdd\x92\x60\xbd\x64\x0e\xb6\xe9\x81\xae\x5e\x91\xa4\xee\x84\x78\x0a\xda\x16\x74\xe9\x66\xd8\x84\xf3\xe9\xcd\xf9\x0c\x32\xbb\x75\xf2\xfd\x2c\xcc\x23\x3b\x0b\x93\x1e\x50\xe7\x3b\x65\x9e\xe9\x3f\x5c\x27\x24\xea\x93\x95\xa0\x98\xce\x64\x20\xb3\x96\x68\xbe\x8e\x22\x12\x24\xbf\xbf\x7f\x23\xab\xa5\x67\x70\x18\x9e\x9d\xb6\xad\xe4\xa1\xc8\xc2\x62\xfe\x71\x1d\x90\x88\xe5\x02\x50\x83\xd9\x20\x8f\x6b\x6c\xea\x8b\x4e\x5d\xee\xee\x42\xb2\x82\xae\xbd\x64\x11\xae\x93\x01\x7d\x5c\x0e\xe1\x28\xb0\x85\xd8\xa7\x60\xe9\x6a\xf2\x83\xa1\xa0\x8f\xa1\x17\x40\xfb\xad\xa2\xe2\xd9\x59\x4e\x4c\x55\x59\x86\xe7\xc1\x8e\xd5\x70\x46\x90\x1f\x86\x9f\xd6\x2b\x3e\xbe\x69\x1e\xe8\xac\x28\xcf\x42\x96\x45\xf6\xa7\x1c\x6b\x87\x87\x03\xda\xb7\xc2\xcf\x23\x85\x48\xc0\x28\x15\x56\x9e\xc9\xe9\x4b\xe4\xd9\x8c\x92\x5b\x78\x29\x45\x87\x87\x83\x68\x16\x0d\xc2\xec\x46\x2f\x9e\x7d\x83\x59\xab\x64\x85\x85\xa1\xa9\x83\x78\x86\x0b\xc7\x59\x62\x35\x19\x44\x8a\xc2\xc2\x8f\x7a\x6d\x18\x6c\x6d\xcf\x43\x97\x68\x4b\x8f\xe5\xf0\x10\xd9\x97\xb7\xb9\xd1\x68\x21\x2b\xab\x6f\xf0\x38\x39\x59\x35\x89\x84\x30\xf8\xe0\xd2\xbb\x6a\x10\x53\x58\xe1\x11\x09\x36\x5e\x14\x06\xe0\xef\x7b\xd8\x84\x11\xe5\xf5\xb8\x0e\x3e\x05\xe1\x75\x90\xf6\x5b\x77\x1e\x4d\x88\x28\xcb\x52\x8f\x10\x65\xab\x7a\xf1\x4b\xb2\x29\x67\x1d\x22\x7f\xac\xb1\x3f\x90\x45\x80\x28\x66\x37\xc4\x0f\x57\xdc\x9d\xe9\xc5\xef\xa2\xd0\xed\xd5\x70\x15\x85\xee\x9a\x91\x2b\x6d\xf7\x81\xc4\x49\xaf\x76\x09\x5c\x46\xb7\x03\x49\xb2\x8d\xb3\xf6\x16\x9a\x74\x57\xcd\x0a\x9b\x5b\x7d\x3b\xe1\x92\xff\xfe\x40\x65\xb9\xa9\x1c\x87\xec\x6c\x90\xab\xf9\xde\xd5\x22\xe9\xe7\x9e\x64\x20\x2c\x08\x76\xe1\xc0\x6a\xad\xf4\xe6\x7b\x1a\xad\x50\x57\xfd\x71\xae\xc3\x16\x48\x97\xc4\xf5\x6a\xa1\x8c\x58\xcc\x9e\xb7\x21\xe5\xca\x0f\x3e\x9f\xbd\xa7\x69\x19\x56\x83\xc8\xd9\xe8\x59\x49\xb5\xe6\x0e\x3c\x66\xff\x09\x8b\xae\x48\xa2\xd6\x05\x44\xf1\xdf\xbf\x50\x79\x3a\x99\x62\x21\x61\x9b\xcc\xc6\x8d\xc2\x75\xb2\x5a\xf3\x0a\x7d\x6e\xf0\xca\xe0\x5e\xe1\x2b\xa2\x25\x5e\xe2\x13\xcd\xf7\xe2\x5a\x54\xe5\x55\x5a\x9a\xfd\x49\x78\xbb\xdd\xfe\x78\x26\xc7\x64\x85\x41\x74\x04\xd6\x47\x56\x24\x70\xa9\x90\x43\x56\x3e\x9e\x13\xf9\xbc\xd6\xe8\x91\xeb\x37\x14\x94\x0f\x14\x92\xc3\xc3\x9a\x87\x67\xe4\x9c\x0a\x07\x67\xd9\xf2\x4a\x05\x89\xfa\x13\xc8\x0b\x1c\x3d\x4f\x06\xba\x82\x92\xf0\xf7\xd5\x8a\x44\x2f\x70\x4c\x06\xca\x0f\x84\xcb\x34\x06\x48\xa0\xca\xf9\xac\xfe\x4d\xca\x56\x69\x0a\x8a\xc3\xfd\xa7\x34\x4e\x70\x12\x6b\x09\x4b\xb4\x10\x6b\x11\xb9\xf2\xe2\xa4\x6c\x11\xf4\xa3\xf5\xbf\x96\x78\xd5\x9c\x9c\x15\xdc\xc0\x85\xae\x9a\xeb\xe6\x9e\xb1\x52\x8b\x07\xbc\x3c\x51\x0d\x1b\xb6\xe6\xd6\xcb\x58\xbc\xc0\xab\xde\x96\xd5\x1a\x68\xc5\x92\xf4\x24\xe8\xcd\xfb\xdf\xdf\xe2\xd5\xc0\xd0\x21\x29\x1d\x43\xe9\x7b\x72\x59\x96\xb7\xab\x9c\x96\x4e\xd6\x15\x49\x78\xe2\x8b\xa6\x6b\x9e\xe0\xca\x05\x1e\xea\x0c\xc9\x14\xe7\x61\xc0\xc2\x30\xc3\xa8\x10\x7a\x96\xfb\x24\x43\x55\x9e\x8a\x11\xcb\xd9\x4d\x8b\x70\xe1\x3b\x78\xb7\x67\xb3\x59\x78\x9c\xd1\xda\x34\xbf\x5c\xd2\x13\x2b\xb0\xaf\x53\x59\x4c\x96\xb3\x9e\x31\xf9\x3e\x82\x6c\xac\x6b\xa5\xa2\x25\x0a\x36\x5b\xf6\xea\x44\x39\x3c\x3c\x48\xbf\x22\x2a\xe5\xc4\x49\x14\xde\x10\xb7\xf6\xb1\x17\x5c\x6d\x07\x6b\xd5\x53\xee\xee\xd6\x90\x9c\xce\x53\x89\xa2\xae\x61\x6e\xe7\x33\x9f\xe7\x0e\x6c\xd2\x11\x12\xaa\x24\x92\xe3\x26\x52\x4a\x52\xfa\x09\xd4\xe2\x5e\xc8\x78\xd3\x3a\xfb\x7d\x1d\x79\x09\xff\xbe\x55\xa6\x54\x57\x9d\x05\x2a\xd9\x0e\x6e\xe1\xce\x8b\x3a\xa9\x2e\x41\x40\x5f\x08\xaf\x93\x45\x08\xc2\x03\xcf\x5f\x45\xb5\xcb\xad\x4a\xa1\x50\xf2\x7b\xec\x29\x60\x91\x3a\x57\xd4\x79\xc9\x5b\x5c\x9b\x5a\x34\x5f\xc1\x70\x56\xac\x35\xa3\x68\xba\xf4\x56\x51\xb8\xf4\x62\xa2\x31\x25\xb9\xbb\x1e\xa6\xea\xb0\x58\x8d\xfb\xd0\xcb\x41\x54\xa5\x6e\x3e\xc6\x61\xa0\x41\xb6\xb6\x2c\x6a\xf5\x1b\x64\x64\xde\x69\x69\xb7\x66\xf5\x63\x19\xf5\x2a\xca\x71\xf1\x52\xea\x8a\xf6\x0b\xbc\x80\x1f\xd1\x85\x77\x3f\x2b\x4b\x4f\x29\x9d\xde\x72\xfc\x4e\xeb\x28\x43\x38\x67\x8b\xf3\xb4\xcd\xaa\x7c\xc4\x72\xa3\x1d\xa5\xe9\xfe\xda\x2e\x37\xa5\x13\x30\x50\x9a\xef\x4f\xba\x8d\x56\x73\x88\xfb\x20\xdb\x4a\x25\x71\xa5\xb2\x24\x8c\xe9\xcc\xbc\x58\xe0\xe0\x8a\x0c\x64\x36\x02\xc4\xfb\x90\x15\x35\xd9\x2a\xa9\x5c\x88\xb3\xfb\xb3\x5b\x78\x9d\x90\x26\xb6\x27\xa2\x88\x88\x28\x7c\xdd\x89\x2b\xc8\xb7\x77\xb4\x64\x69\xcd\x32\x5c\x15\xd3\x04\xdc\x6e\x9b\x71\x98\xde\x20\x4f\x10\x4b\xd7\xc8\x40\xda\x72\x38\xf9\x1d\xee\xf7\x80\x30\xd8\x1b\x84\xd9\x3d\xf2\xb5\xb0\x9d\x9d\xf3\x0c\x18\x22\xcd\x56\xad\x3d\xac\x0f\x74\x76\x2e\xab\xb7\x25\xc9\x5f\x80\x80\x57\x53\x93\x19\xbf\x77\x9c\x32\x7e\x48\x67\x81\xaf\x28\x8d\x2c\xb1\xfb\x5c\x78\x4d\x7e\x23\x27\xcf\xcf\x11\x0f\x12\xe5\x38\x81\xa8\x02\xb8\x9d\xbd\x9a\x4f\x80\xe7\xe1\xca\xec\xf6\x3f\xc8\x72\xda\x4b\xaf\x57\xce\x02\x35\xd8\xd6\xd5\x64\x89\x22\x5e\x27\x64\xc9\x39\xe7\xf3\xc2\xe5\xf5\xdb\xad\xa2\x56\x2e\xd0\x6f\x45\x53\x8d\x6e\x94\x1b\xb7\x78\x3d\x66\xd5\x94\x95\xbf\x1b\x59\xf7\xaf\x19\x26\x1a\xe6\xa1\xc8\x58\xe4\xc2\x32\x4a\xaf\xa1\x57\xe5\xea\x4d\xff\x4d\xa3\xa9\xd4\xe4\x11\xf5\xe2\x7b\x0e\xc4\xfb\xef\x6b\xdf\x08\xfe\xbb\xec\xde\xc8\xfe\xdc\xb0\x93\xd4\x6b\xf3\x8e\xe6\xe7\xa0\x5b\xf8\x1a\x7d\x3b\x9e\x27\x70\xa3\x84\x52\x98\xbb\xdf\x9a\x07\x9a\xc3\x50\x9e\x41\x81\xc6\x85\x4a\x49\xc8\x4c\xd5\x79\xba\x6a\x3e\xa3\x90\x68\x3a\x5c\x92\x9a\xb1\x89\x27\x04\x04\xd9\x4a\x58\x82\x79\x56\xfe\x8e\xf1\xd5\x2f\xc4\x8e\x65\x50\x77\xb2\x4c\x4d\x2a\xa0\xa5\xd9\x12\x3d\x57\x56\x49\x1e\x4d\x7b\x77\x37\xd8\x61\xf1\x08\x47\xd6\xd5\xb6\x17\xe4\x77\x81\x2a\x1d\xcb\x9e\xe3\x90\x1f\x19\xcb\x6c\xa6\xc9\x71\xed\xb0\xea\x86\x32\x4b\x5a\x87\x92\x28\xca\x74\x87\xbe\x0a\x17\x01\x24\xca\xb3\xfb\x21\x67\x0b\x3b\x45\x4c\xaa\x2a\x04\xa4\x57\xae\x5c\x9f\x0a\xde\xda\x5d\x04\xbf\x84\x7c\x4e\xb4\x25\xc1\xf1\x3a\x2a\xa7\xce\x65\xba\x78\xa1\x42\x53\xbb\x27\x67\x63\xaa\xf1\x83\x16\x8e\x1c\x56\xc4\x51\x10\xcf\x1f\xdc\x1c\x53\x16\x3f\x3b\xae\x11\x66\x0e\xd0\x12\x2f\x28\xaf\xfd\xae\x3d\xf0\x03\x45\x05\xf3\xa1\xd6\x2d\xb1\x94\x13\xc3\xb1\xc0\xe4\xb8\x17\x19\x0b\x5d\xca\xca\xb4\xcf\x9b\xe9\xda\xa3\xb4\x5e\x27\xbf\xd4\x28\xb0\x95\x54\x57\x46\x6d\xaa\x2b\x43\x4c\x75\x65\x9c\x4f\x6f\xe7\x11\x71\x49\x90\x78\xd8\x8f\xa7\x32\x97\x2c\x64\x38\xf0\xbd\x55\x63\x1e\xe7\x0b\xe3\xc9\x14\x2a\x66\x8a\xf9\xff\xb4\xdf\x80\x1c\x60\xc4\xf2\xf9\x2c\x86\x5b\x53\x84\x94\xd5\x44\x2d\x9e\xa6\x52\x6f\x17\x20\xe0\xc6\x53\xbc\x85\x9b\x86\xcb\x22\x7a\xc9\x41\xed\x5d\x0e\x2a\x89\x3b\x6a\x76\x7d\x59\xc9\x0e\x6e\xd4\xa7\xf9\x48\xab\x3d\xc3\x87\x87\x03\x32\x2b\xbe\xa4\x7c\x98\x24\x3f\x2d\x14\xb0\x7b\x58\x33\x59\x4b\x3e\x96\x95\x63\xf9\x50\x9e\xca\xc7\xa9\x10\x25\x1c\x22\x52\xf2\xf4\xbe\x42\xa2\x9e\x01\x51\x53\x89\x17\x60\x16\x85\x89\x5a\xb1\x74\x57\x2f\x3a\x5c\x8f\xd0\x68\x33\x84\x00\x86\x87\xb2\x03\x43\x52\x80\xfa\x25\x0a\x37\x59\x95\x5c\x1d\x11\xc1\xee\x3f\x02\xff\xa6\x6a\x9b\x11\x83\x0b\xd4\x03\x9d\x32\xa9\xdd\x0d\x44\x74\x3c\x5b\xca\x01\x5f\x07\x2e\xf9\xfc\x4b\x18\xd5\x99\x0d\x58\x36\x03\x03\x96\x74\x4d\x3d\x8a\x1d\x5a\x65\xf6\x43\xd2\x67\x0e\x36\x57\x2d\xde\xfd\xaf\xc7\x72\xfe\xe0\x56\xc6\x3e\x89\x12\x6d\xee\x45\x73\x9f\x68\x97\x9e\xef\xcb\xd3\xff\xf8\x5b\xbc\xb9\x92\x36\x1e\xb9\xfe\x29\xfc\x3c\x93\x75\x49\x97\x4c\x5b\x32\x6d\x59\xfa\xbc\xf4\x83\x78\x26\x2f\x92\x64\x35\x3d\x3a\xba\xbe\xbe\x46\xd7\x16\x0a\xa3\xab\x23\x53\xd7\x75\x3a\x6c\xf9\xef\x7f\x5b\xe1\x64\x21\xb9\x33\xf9\xad\x61\x4a\xe6\x0b\x07\xd9\x63\xc9\x94\x4c\x89\x7f\x31\xcc\xd8\xa6\xdf\x0c\x3d\xfb\x5f\xe3\x0f\x34\x43\x3f\x31\x46\x68\x68\x42\x35\xc9\xfc\xb2\x34\x24\x63\xb8\xd0\xcc\x8d\x66\x2e\xcc\x8d\xf9\x65\xa9\x6b\xf6\x42\x33\x4f\x47\x0b\x73\xe3\x7c\x91\x25\x3a\xda\x99\xcc\x1d\xd3\x2f\x42\x3f\x8c\xe4\xa3\xbf\xff\x8d\x0e\xe3\xef\xff\xa1\x16\x01\x0b\xd7\x89\xef\x05\x64\x7f\xb0\xc1\xd0\xcc\x8d\xc9\x86\x47\x87\x36\xa6\xa3\x82\xe1\x7d\x59\xa2\xc9\x44\x1b\x52\xd8\x47\x55\xd8\x47\x14\xea\x09\x9a\x4c\x24\x43\x7f\xc1\xe1\x85\xff\xb3\xef\x86\x99\xe3\xc1\xa0\x15\xcd\x2f\x80\x4c\x7d\x4e\x51\x65\x4a\xba\x36\xd6\x2c\x34\x1c\x6b\x63\x6d\x1c\xb3\x2f\x12\xfc\x93\xe8\x0f\x89\xfe\x60\x5f\xe8\xb3\x9e\x78\x4a\x22\x0f\x07\x57\xfe\x1e\x31\x24\x99\xc6\xc2\x34\xdf\x18\x00\x86\x64\x1a\x5f\x96\x86\xa9\x59\xd5\xe9\xdc\x68\xf6\xc2\xdc\xd8\xdd\xe3\x8c\xa2\xf0\x5a\x73\xc3\xeb\x60\x9f\xb3\x68\x6d\x0c\x1b\x99\xbe\x66\x21\x87\xfe\x7b\xe3\x48\xc6\xd0\x77\x24\x47\x72\x34\x47\x33\x90\x0d\xff\x2c\xe4\x48\x16\x72\x4e\xe9\xe8\x7b\x8e\xd3\x27\x97\xc9\xde\xc6\x69\x1a\x92\x61\xbc\x72\xd0\xd8\xf2\x61\xba\x2d\x34\x9c\xbc\x99\x48\x8e\xaf\xc1\x48\x25\x47\x32\x90\x6d\xd0\xa1\x1a\x6f\x68\x2d\xc9\xb0\x5e\x99\x46\xcf\x91\x46\xe0\x1a\xdd\xd7\x50\xe9\xbb\x17\x19\x4a\x29\xd6\xde\x18\x43\xc9\x18\xfb\x14\x9f\x1c\xa7\x74\xb4\x12\x2f\x7d\x65\x6d\xfa\xa2\x74\xbd\xda\xdf\xc4\x5b\x92\x69\x9c\x3a\x68\xec\x67\x83\x1c\x4b\x13\x9f\x0d\x91\xa1\x93\xfe\x7b\x63\x18\x92\x83\xc6\xa7\x94\x92\xbb\x06\x79\x11\x86\x09\x1f\xde\xb5\xe7\x26\x8b\x99\x6c\x8c\x1d\x59\x5a\x10\x8a\x5e\xfe\xa3\x30\x6e\x63\xec\x48\xf0\x74\xb7\x91\xeb\x3a\x9a\x8c\x2d\xc9\xb1\x90\x33\xf1\x2d\x64\xe9\x96\x34\x46\x8e\x3e\x94\x4c\x1d\x8d\x2c\x47\x1b\xa1\x89\x33\x37\x26\xc8\xd6\x46\xc8\xb6\x47\x92\x6d\x20\xdd\xa4\xd0\x98\xa6\x23\x0d\x75\x64\x18\xa6\x44\x8b\xed\x11\x36\x75\xa4\x8f\x0c\x89\xff\x81\x31\x49\xa6\x64\xa1\xf1\xc4\x1f\x21\xc3\x19\x4b\xc6\x18\x39\x23\x63\x6e\xa1\xc9\x90\x32\x68\x64\x19\xa6\x66\x20\x63\x42\xb1\x87\xc6\x63\xcd\x30\xd0\x90\xbe\x79\x88\xc6\xb6\xaf\x8d\x27\xc8\x31\x2d\xc9\xb2\x91\xad\x5b\xd0\xf9\x84\x75\x3e\xe1\x9d\x6b\x16\x1a\x8f\x27\x92\x81\x74\xc7\xf0\x35\x5a\xe2\x18\xd2\x08\x8d\x74\x03\x53\xae\xc5\xea\xd0\xd7\x58\x8e\x66\x23\x47\x37\xdf\xa0\xb1\x33\x92\xec\x21\x72\x6c\x27\xaf\x22\x41\x19\xab\x38\x7c\x33\x32\xd0\x68\x68\x49\x13\x5a\x55\xa8\xc3\x4a\x59\xd5\x37\x13\x13\x19\xb6\x64\xeb\xc8\x19\x9a\xd8\x44\xf6\x78\x2c\xb1\x4f\x5a\x57\xa7\x20\x19\x23\x34\x36\xe7\x9a\x85\x0c\x9b\x36\xd2\x47\x14\x36\x63\x44\x47\xa7\x99\x16\x9a\xd0\x61\xeb\x68\x38\xc1\x26\x1a\x4a\xf4\x9f\xce\xde\x83\xe8\x68\xc6\xa3\xf1\xdc\x30\xd1\x78\xa2\x99\x68\xa2\x3b\x14\x39\x43\xdd\xd1\x1c\x34\x9c\x8c\x29\x72\x26\x86\x4d\xbb\xb3\x8c\xb1\x3f\x44\xba\x61\x4b\x86\x85\x74\x87\x0e\x64\x42\x3b\xa3\x9f\xe9\x40\x74\x1b\x8d\x26\x6c\x1c\x76\x3e\x0e\x67\x9c\x0f\x64\xdc\x63\x20\xe6\x58\xa3\xc3\x31\xe9\x48\x6c\xd3\xa2\x23\x71\x4c\x98\xa6\x21\xed\xcf\x1c\x7e\x11\x08\x77\x8e\x7d\x12\xb8\x38\xda\xdb\xda\xa2\x7b\xd4\x84\xd2\x98\x61\x5b\x0b\x3a\x80\xf1\x86\xae\x7a\x73\xf2\x8a\x16\x59\x1b\xf8\xfe\x65\x49\x87\x38\x1c\x4b\xfa\x2b\xc3\xe2\xe5\x0b\xf6\xa7\x50\x61\x24\xe9\x0b\xf6\x94\xf7\x31\x46\x23\xc3\x6e\xaf\x42\xe1\x1c\xa5\x55\x0c\xf8\xcb\x2a\x16\x46\xc3\xde\x36\xae\xed\xea\x91\x8d\xf8\xd4\x30\x5b\x47\x7b\x6a\x98\x8d\x23\xcd\xda\x36\x8c\x92\xb6\x6d\x19\x21\x2d\x6e\x1a\xdd\x98\xbf\x9d\xcd\xb4\x30\xc0\x71\x65\x80\x50\x45\x18\xe3\xb8\x38\x46\xa1\x87\x49\x6d\x0f\x13\xde\x43\x3e\xd2\xf1\x97\xe5\x88\x3e\xd2\x86\xf4\x11\xaf\x94\x81\x0a\x6d\xbf\x2c\xb5\x31\x1a\x52\xd6\xc6\x47\x61\xbe\x1a\x21\x73\xec\xf0\xd2\xb7\x8c\x50\x4d\x9d\xd6\x59\x18\xd0\xcf\xe9\x88\x7e\xbe\xb2\xd9\x40\x78\x3d\x53\xa7\x2f\x92\x2c\x94\x8f\x91\x32\x94\xb9\x2e\x21\x5b\x43\x96\x61\xa3\x91\x31\xd4\x68\x43\xfa\x65\xc1\x06\x8e\xd1\x48\xa7\xbc\x6d\xc4\xf9\x1a\x2d\xa6\x1f\xc3\x53\xd6\x8f\xcd\x47\xd2\xd8\xcf\x2b\x07\x75\xf5\x42\xc7\x69\x3d\x37\x90\x6d\x49\xf0\xc1\x78\x81\x45\x39\x01\x9d\x30\x80\xe8\x05\x30\x6b\x6b\x38\xa2\xdb\x9c\x6d\x51\xf9\x92\xc3\x6d\x72\x98\xe7\x68\x34\x76\x80\x87\xd8\xe6\x58\x83\x4a\xec\x2b\xc3\x29\x74\x36\xd7\x35\x5a\x8b\x96\x9a\x5a\x5e\xca\x3f\xf9\xde\xa8\x45\x6b\x9f\xcc\x64\xb2\x21\x41\xe8\xba\x5d\x9b\xfa\x1c\x07\x73\xe2\x3f\xa8\xe6\x91\x49\xdf\xa3\xa2\xf4\x2d\x6a\x1e\x23\x41\xf3\xb0\x32\xcd\x63\x48\x79\xf4\x70\xf2\xc6\x18\xa2\xe1\x44\x32\x46\xf4\xb1\x61\x21\xdb\x90\xc6\xf4\x83\xee\x0c\x12\x2f\xd3\xe1\xd3\x94\x46\xac\x08\x3e\x58\x7d\x56\x02\xb5\x46\xb4\x09\x6b\x0a\xbd\xd0\x62\xde\x43\xa7\xf4\x53\x44\xd4\xde\x35\x19\x9b\x8e\x6f\xfc\x26\x1b\xf0\x04\xa0\x90\xc6\xec\x4b\x06\xde\x58\x62\x35\xd9\x53\x27\x47\x08\x7b\x4c\x9f\x38\xe9\xf7\x0c\x44\x87\x57\x67\xef\xf8\xb2\x87\x89\xa1\x72\x13\xa8\x41\x46\xaa\x06\x4d\x52\x35\x68\x22\xaa\x41\x93\x54\x0d\x9a\xf4\x54\x83\x38\x96\x57\x3e\xf6\xf6\xa8\x60\x4c\x28\x90\xc6\x1b\x0a\xc3\x44\x1a\xe6\x54\x41\x9f\x4a\x43\x69\xc8\xbe\x64\x48\x1e\x4a\xac\x26\x7b\x3a\x11\x90\x0c\x8f\x0d\xf6\xff\x48\x44\x72\x5f\xc0\xe2\x3f\xd6\x38\xda\xf7\x3a\x9b\x48\xd6\x9c\x8a\x1e\xba\x64\x4a\x68\x42\x27\x75\x03\xfc\xcc\x40\x86\x46\x7f\x6b\xa6\x64\xbe\x1a\xce\x35\xa8\xa3\x99\x1a\x9a\x68\xa6\x66\x9e\x0e\xe7\x20\x74\xd1\x5f\xb4\xce\xc2\xb0\x29\xbb\x97\x0c\x13\x96\x9c\xb0\x40\xd8\x8a\x49\x57\x50\x8a\x3c\xbe\xc4\xd2\xe2\x7c\x01\xb2\x9a\xe9\x0a\xcd\x91\x97\x2d\xe2\x1d\x97\x1c\xc7\xd9\xde\x97\xdc\x44\x1a\x6e\x0c\xfb\xd5\xf0\x74\x08\xa0\xeb\x9a\x88\x24\x89\xa1\x25\x43\x24\xc3\xab\x44\xb1\x94\xe2\x9a\xe3\x36\xc5\x23\x47\xab\x66\x7e\x59\xb2\x95\x31\xfc\x26\xab\xb9\x03\x89\x0c\x87\x25\x95\xc8\x16\x34\x22\xbb\xac\x10\xd9\x92\xb1\x3b\xf7\x02\xd5\xf7\x0d\x90\x8e\xa4\x4b\x23\x89\xcd\x35\xf0\x07\xb6\xa7\x19\x12\xa7\x1f\x9d\x11\x18\x7b\x66\xd8\x19\xfd\xb0\x87\x36\xfc\x6f\xe6\xf4\xf5\xa5\x48\x10\x11\x49\xf6\x6b\x7c\xa0\xfc\xcd\xa7\x2c\x60\xa8\x0d\x7b\x10\x24\x7d\xff\x1e\x35\xe0\x91\x64\xd8\xfe\x50\x83\xf7\x77\xbf\x7d\x41\xe6\x9f\x1e\xa9\x8d\x90\xf2\x8d\xa1\xaf\x51\x50\x72\x23\x08\x6d\x63\x23\x63\xe4\x53\x56\xa9\x8d\x80\xad\x4c\xa4\xb1\xaf\x4d\xa4\x1e\x8b\x5f\x84\x76\xef\x6b\xff\x6b\x01\x7e\x4b\xa9\x74\xae\xb3\x85\x9e\xef\x7a\x71\xed\xae\x27\xec\x90\x5f\x96\x96\xa4\xfb\x02\x8a\x40\x14\x31\x46\x3e\x5d\x1d\xda\x10\x50\x04\x36\x90\x91\x34\xd2\x6c\xad\xdb\x1e\xc7\xd0\xb4\xdf\xfd\x92\x72\x1e\x64\x8c\xde\xd8\x60\xc4\x32\x7d\x10\x2f\xd9\x0a\x87\xad\xcf\x34\xa4\x11\x3c\x64\x40\xf4\x19\xe3\x26\x0a\x83\x3d\x5b\x0d\x1d\xc6\x24\x28\xc6\x4c\x86\x44\x69\xc4\x44\x3f\xba\x75\xd3\x65\xcd\x0d\x88\xbd\xc7\xb7\x57\x6b\x21\x95\xea\x29\x1e\x27\xbe\x66\x23\xb0\xa4\x48\xfc\x6f\x66\xd0\x14\xcc\x86\xf4\x77\xef\x71\xee\xd7\x56\x38\x46\x96\x34\x42\x23\x5f\x18\x21\xfd\x9b\x5a\xdf\xa4\x92\xc9\xb0\xf7\x28\xf7\xc9\x26\xe9\xab\x1d\x5f\x1c\x1d\x1f\x21\xc3\x23\xb3\x17\xbe\x61\xd5\xba\x07\xe8\x87\xf3\x4f\x0f\xc2\x40\x87\x9c\x9d\x0c\x53\x6e\x32\x2c\x31\x93\xa1\xc0\x4b\x32\xde\x69\x23\x93\xf2\x49\x93\x31\x83\xd3\xd1\xc2\x40\xc3\xcd\x10\x99\xbe\x0d\xc6\xa5\x91\x86\xc6\x92\x81\xac\x9e\x70\xed\xdf\xc7\x02\xbe\x8f\x47\xe2\x46\x59\xa2\xa1\x66\x58\xaf\x0c\x63\xe3\xf8\x43\x64\x0e\x25\x0b\xd1\x85\x36\xd4\x0c\x64\x5a\x14\xc1\x9a\x89\x9c\xd1\xe9\xa8\x53\x2c\xa2\xb8\xe2\x28\xea\x46\x47\x2a\x38\x8d\x73\xb9\x69\x5c\x12\x9b\xc6\xd2\x58\xc4\x9a\x2d\xe9\x2f\x0c\xc4\xcd\xa0\xf0\xd7\x8e\xe9\x5f\x9b\xfd\xa7\xc1\x77\x0d\xfe\x52\x36\xaf\xd9\xa0\x53\xcd\x0d\xe4\x38\x60\x3b\x30\x90\x65\x4b\x96\x64\x9d\x0c\xe9\x93\x91\x44\xe5\x24\x2a\x42\x39\x8e\x64\x40\x57\x96\xad\x59\x92\xa5\x59\x5f\x96\x1a\xa5\xaa\x8d\x89\x4c\xd3\x47\x94\x6f\x5b\x68\x88\x86\xc8\xb2\x91\x35\x46\x23\x53\x83\x7f\xd6\x58\xa3\x2d\xf8\xbf\x53\x13\xe9\xe6\x42\x33\x0a\xf6\xc7\xd0\x25\x7b\xdb\x3f\x60\x1d\x22\x87\x6e\x20\x74\xff\xe0\xeb\xf6\xcd\xb8\xe4\x2b\x01\xa6\xb7\x1c\x22\x53\xd2\xd3\x3a\xe9\xbf\x37\x86\x23\x39\x3e\xb0\x6f\x29\x63\x98\xdd\x2b\x20\x5c\xdd\x68\x98\x9d\xc8\xdb\x9f\x93\x02\x8d\x4d\xc9\x7a\x41\x05\x70\x3a\x95\x20\x9e\x5a\x92\x21\xd1\xd5\x4a\xd5\x05\x8b\xaa\x0b\xc8\x46\x63\x5b\x33\x69\x55\xf3\x95\x5d\xd5\x22\x9c\x9d\xb5\x88\x85\x66\x23\x63\xfc\x85\x6e\xc6\xd6\x2b\x67\x63\x2e\x2c\xf0\x70\x6a\x96\xe4\x2c\x86\x1b\xcd\xa4\xcf\xbe\xbc\x75\xa4\xc9\xc6\x5c\x38\xa7\x93\x57\xce\x97\xe5\x50\x73\xe6\x68\x38\x04\xcb\x3b\xb2\x87\x74\x8c\xb1\x06\x5f\x34\x83\xfe\xa3\xdf\x35\xfa\x1d\xfe\xd2\x27\x5f\x96\x13\xa4\xeb\x96\x64\xe8\xaf\x4c\x0b\xdc\xa8\x68\x32\x19\x6d\xcc\x57\xc6\x78\x63\xbf\xb2\x4f\x87\x0b\x73\x63\x20\x5d\x1f\x2d\x0c\x1d\x7e\x0c\xd1\x64\x62\x2e\x4c\xda\xe8\xd4\xb0\x28\xd1\xea\xaf\x0c\xfa\x70\xa3\x59\xb0\x0f\xdb\xbe\x45\x17\xb9\xbd\xd1\xac\x85\x8d\x74\x03\x46\xdd\x6b\xde\xe2\x35\x64\x3b\xd8\xa7\x49\x85\x4d\x9c\x9d\x4d\x9c\xc5\x26\xce\x6c\x9a\xb8\x1a\xf5\xcf\x41\xba\x39\xbc\xf7\xe4\x19\xa6\x64\xed\x3c\x25\x5c\x96\xb6\x35\xbb\x24\x4b\x0f\xa9\xa0\x48\xc5\x1e\x70\x6a\x50\x41\xd1\xd0\xfd\x3e\x66\x15\xd7\x8b\xf1\x85\x4f\xdc\x47\x23\x3e\xe7\x06\xa4\xe2\x06\x00\xde\x97\xf1\x10\x39\x16\x7d\x44\x75\x09\x67\xa2\xd9\x68\xf2\x86\x0a\x52\x92\x31\x46\x96\xf1\x7c\x84\x26\xba\x29\xb1\x4f\xee\x65\xa2\xdb\xc9\x97\xa5\x83\x2c\x43\xb3\x90\xf1\x66\x84\x80\x55\x4e\xea\xab\xda\x73\xf6\x5a\x61\x87\x61\x4c\x7a\xa8\x21\xc7\xa2\xcf\xe8\x6e\xe2\x4c\x24\x1b\x75\x6a\x29\x6e\x38\x8f\xf7\x86\xd4\x31\x65\xe4\xc6\x2b\x53\xdf\x4c\x10\x25\x39\x66\xea\x1d\x81\x72\x4d\x87\x44\xd1\x31\x5c\x68\x86\x3d\xd7\x98\xad\x98\x3e\x63\xb6\x68\x5e\x61\xa3\x19\xa3\x17\x16\x95\x19\x0c\x5b\xb2\xe0\xd3\x94\x40\x8a\x78\x65\x58\x1b\x03\x0d\x5f\xd9\x68\xb8\x31\x46\x0b\xc3\x3e\x35\x8c\x2f\x54\xfd\x04\x4b\xfb\x82\xbb\x40\xc6\xaf\x46\xa9\x55\x5f\xe7\x9e\x8f\xc9\xa9\x01\x36\xee\xb4\x80\xb6\x31\x17\x99\xcb\x64\x74\x6a\xb0\x10\x02\x64\x8e\x9d\x53\x87\x7e\x2e\x86\x1b\xde\xd7\x97\xb7\xc6\x48\x32\xd1\xf0\xd4\x58\x38\x1b\x67\x41\x47\x78\x6a\xd1\x66\x94\x74\xa9\x06\xa1\x81\xee\x44\xa7\xfa\x95\xd1\xb9\x65\x53\xed\x01\x2e\xf3\xdc\x9f\xfd\x67\xb2\xd0\xec\x53\xeb\xd5\x64\xe3\xbc\x1a\xfa\x23\x89\xea\x5c\xa3\x2f\x6f\x87\x92\x31\xde\xd0\x55\x4e\xb9\xec\x10\xd6\xa3\xb9\x30\x37\x9a\xfd\xca\xda\xd8\x5f\x96\x86\x23\xe9\xf0\x73\xa1\xf5\x08\x98\x20\xae\x97\xec\x6b\xc4\x43\xca\x02\x46\x13\x67\x63\x21\x7d\x38\x5e\xc0\xa7\x3f\x46\xc6\xd0\xd2\xe8\xa7\xad\xd1\x27\x23\xf6\xf9\x26\xad\xfc\x65\x69\x20\x4a\xfe\x0b\x03\xe9\xc6\x98\x72\x73\x93\x7e\x05\xbe\x6e\x8c\x5f\x51\xfe\xb6\xd1\x4c\xa4\x5b\xe3\x2f\x4b\xc3\x44\x43\x70\x5e\xdb\xf6\x1b\x63\x84\x4c\x4b\x9a\x20\x67\xec\x43\x8f\x63\xd6\x2f\x95\x4c\x4c\x4a\x6c\x96\xe9\x60\xda\x05\xa5\x4a\xfa\xc9\xd7\x17\xb2\x2d\x47\x43\xba\x6e\x2c\x90\xae\x9b\xbe\x81\x1c\xaa\x39\x3a\xa6\x39\x47\xd6\x64\x94\xfe\xa3\x6d\x6c\x66\x18\xb2\x3a\x27\x9e\x7c\xde\x2b\x0a\x27\xa7\xc3\xc5\x10\x4d\x6c\x3a\xf3\x43\x4c\x59\x12\x73\xfb\x32\x6b\x5f\xfe\xa0\x9e\xd5\x6f\xb4\x21\x9a\x8c\x17\x9a\x79\x6a\x4c\x28\x71\x4c\x34\x03\x36\x67\x34\x9c\xf8\xda\x84\x2a\xcc\xf0\xc1\xac\x5b\xc0\xb8\x99\x1d\xf9\xd4\xd0\x17\xe6\xa9\xb5\xd0\x3a\xc1\x95\xc9\xe7\x15\x0e\x5c\xcd\xdf\xe7\x66\x38\x94\x0c\xcb\xa7\x72\x8b\x89\x2c\xf0\x4a\x4b\x26\x1a\x8f\xa4\x54\xb1\x37\xdf\x8c\x99\xb6\x3a\x02\xb1\x66\xb2\xd1\x1c\x0a\x9c\x61\x6b\xa6\xaf\xb1\x26\xb4\x29\xf8\xd6\xc7\x23\x58\xfb\xf0\xf1\xc6\x18\x82\xf6\x68\x49\x86\x25\x0d\x37\xce\xa2\x5b\xfb\xe2\xd0\x2d\xc3\x68\x9f\xde\x13\xc9\x6e\x85\x8e\xb2\x39\xaa\xe4\x4a\x26\xdd\x96\x4e\xed\x85\xe6\x7c\x59\x6a\xa0\x54\xb6\x82\xe7\x50\xc8\xe8\x87\x2d\x19\x76\x2f\xf0\x2e\xbd\xbd\x1b\xe7\xc0\xdb\x2a\x01\xa3\x7e\x03\xbe\xdb\xd4\x07\xaa\x6f\x8c\x11\x32\x6c\x08\xf4\x19\x0f\x99\xd3\x34\xf3\x93\x8e\x36\x54\x13\x18\x19\xd9\x46\x92\x7a\x14\x27\x8c\x75\xb3\xef\xb9\xef\x92\x39\x2f\x2d\xbe\x8e\x2d\xee\x90\x05\x07\x27\x6c\x29\x0e\xbc\x17\x7c\x97\xa9\xeb\x72\x61\xe8\xf4\x95\xfe\x50\x1a\x7e\x79\x0b\xee\xe9\x74\x3f\x31\x74\xbe\xa1\xb0\x51\x16\xb7\x14\x43\x67\x7b\x4a\x7d\x59\xee\xd3\xd7\xc5\xbd\x65\xc1\x1c\xc3\xb0\xc3\x08\xae\xf0\x6e\x8f\x12\x4c\xc8\xbe\x95\xe2\x3f\x07\xc7\x4b\xd6\x2b\xf8\xc6\x81\x10\x4e\xdb\x08\xa1\x03\x31\xec\xce\xe1\xbd\x11\x29\x15\xe8\x16\x74\xc7\x5c\x68\x36\x55\x4c\x2c\x89\xb2\x45\x63\x7c\xea\xbc\xb2\xbe\x2c\x2d\x69\xb4\x30\xcc\x54\x6b\xe9\x1a\x99\x8f\xaf\xf6\x19\x06\x23\x39\x6f\x28\x83\x78\x05\x92\x8f\xb9\xd1\x46\x8b\x21\x72\x7c\x64\x4b\xe6\x62\x74\xda\x63\x45\x87\xbe\x4b\xa2\x3d\xaf\x69\x5d\xb2\x73\x35\xd1\x40\x93\x09\x9a\x68\xcc\x3a\xf2\xc6\xa4\xa2\x71\x49\xe1\x70\xca\x0a\xc7\xb8\xa2\x70\x8c\x7d\xf0\x3d\xf5\x84\x66\xff\x0b\x42\x72\xd2\x31\xec\x15\x30\x50\x15\xcc\x57\xf6\xe9\x78\x61\x38\x1b\x43\xef\x04\xf0\xca\x4b\xb4\x8b\x08\x07\xf3\xc5\x3e\x4d\xcd\xe6\xd8\xa1\xb2\xd0\x64\x82\x0d\x34\x1c\x3a\x12\xfb\xe4\xb1\x72\x68\x68\x5b\xec\x73\xae\x6b\x68\x6c\x39\x68\xa4\x8f\xd8\x03\x49\x28\x44\x63\x0b\x14\x41\xf8\x3e\xd2\x47\x92\x50\x43\xd2\x25\x5a\xac\xa1\x91\x3e\x16\xdb\xb0\xef\x6f\xc7\x88\xf2\xd6\x09\x9a\x8c\xed\x86\x01\x98\xe2\x00\x86\xd9\x00\x4c\x29\x2f\x34\xe9\xd0\x1a\x06\x60\xb2\x01\x50\x7d\x23\x7d\x2e\x0e\x60\xa9\x6b\x54\xcb\x1f\x0e\xe7\x68\x6c\x4f\xee\xd7\x07\x1d\xb8\x03\xba\x8c\x63\x0b\x03\xef\x31\xee\xa5\xa1\xc3\x04\xd8\xc8\xa0\x02\x1a\x1a\x3a\x94\x59\xd2\x4f\x2e\xb9\x51\x2e\x0a\x9f\xe6\x73\x93\x05\xd9\xc1\x27\x0f\xca\x1b\x42\x18\xe2\xd0\xde\x20\x6b\xec\xcc\x35\xa4\x9b\x0e\x72\x9c\x89\x86\xcc\x09\xc5\xa3\xe9\x68\x68\x4c\x85\xb5\xd1\xc8\xd6\xd0\xd0\xb0\xd1\xd0\xa0\x02\xae\xa1\x3b\x68\x34\xa6\xdf\x46\x23\x1b\x8d\xe9\x68\x75\x67\x44\x5b\x53\x82\xd6\x2d\x64\xea\x0e\x7b\x29\x1a\x8e\x29\xcf\x1d\x5b\xcf\x2b\x63\x93\xc6\x68\xe8\x48\xf0\x68\x68\xf2\x4f\x56\xe0\x48\x43\x3a\x6c\x0c\x83\x97\xd8\x67\x1a\x45\x48\x81\x35\x91\x69\x98\x9b\x31\xb2\x2d\xfb\x85\x83\x86\x26\x88\x67\x8e\x33\x92\x1c\xba\xc9\xda\xe0\xe2\xa0\xa5\xf5\xef\xa4\x5d\x1a\x55\x54\xc1\x7b\x4c\x86\x30\x8a\x72\x67\x6c\x6a\xc8\x1c\x52\x9c\x9b\xb0\x7f\x8d\x29\xca\x47\xf6\x04\x19\x06\x15\xe3\x47\x23\xe4\x18\x63\x0d\x0d\x4d\x07\x8d\x86\x13\x0d\x39\xba\x8d\x2c\xd3\xd0\x90\x61\x9b\x60\x59\x34\x0d\xba\xcb\x99\xfa\x24\xfd\x4a\x89\x58\x77\x6c\xfa\x26\x7d\xa4\xa1\xe1\x08\xd4\x6c\x0b\x74\x6a\x20\x0b\x1d\x76\x47\x1d\x76\x47\x4a\x22\x26\x1a\xda\x74\x1e\x1c\x7d\x04\xa1\xa9\xd6\x42\x03\x9b\x0b\x1a\x8d\x6d\x0d\xd9\x0e\x18\x43\x0d\x83\x0d\x91\x7f\x37\x91\x49\x57\x71\x37\x27\x98\x87\xcb\xa5\xb7\x47\xa7\x0e\x58\xea\x27\x30\x6d\x63\x3a\x9f\x63\x6e\x58\x00\x0b\x12\x88\x8f\xe6\xf8\x79\xa9\x4c\x32\x4c\x69\x82\x2c\x20\xdd\x62\x01\x34\x62\x9f\x75\x8d\xe0\x55\x5f\x96\x36\x9a\x38\x96\x06\xc4\xff\x82\x0a\xa3\x63\x5b\x1a\x23\xc7\x86\xc8\x00\x8b\x87\x64\x8c\x62\xcd\x86\x12\x83\x96\x68\xd0\x44\xb2\xa8\x98\xf4\xca\xda\xc0\xa4\x2f\x6c\xa4\x5b\xa3\x17\x74\x42\x1d\xaa\x1a\x3a\x36\x65\x68\x10\xd3\x02\x78\x35\xf9\xb7\x18\xfa\xd1\xa0\x1f\x89\xbd\x9a\xf5\x63\x1a\x1b\x46\xee\x0b\x0d\xba\xea\xc5\x89\x57\x6b\xdf\xd7\x22\x76\xf6\x69\x8f\xee\x20\x6b\x32\x96\xc6\x48\x07\x4b\xc8\xc4\x84\x9d\xc6\xb6\x35\xe4\x38\xec\x0b\xfd\x90\x20\x56\x2e\x7d\x24\x65\xcf\xd1\x88\x99\x7b\x6c\x1b\x8c\xe9\x69\x99\x04\x22\x9c\x96\x3e\xcb\x1b\x2d\xd9\x37\x1d\x0d\x1d\x10\xf3\x26\x66\x4d\x25\x0d\x7a\x6d\x1c\x85\xd1\x3e\x0c\x16\x0d\xc1\x5f\x87\x26\x8e\x06\xae\x65\x03\x59\x96\x09\x4c\x67\xac\x99\xc8\x4e\xff\x61\x13\x59\x13\x4a\x3a\x16\x0f\xe8\xa6\x35\x41\x5c\x74\xec\xcd\x08\x8d\x81\x07\x5a\x13\xa8\xc0\x17\x3d\xc3\x17\xf0\x83\x62\x81\x81\x4c\x0d\x1a\x9e\x52\x44\x41\xd7\xc0\x79\xac\xb1\x23\xd4\x30\xe9\x7a\x5e\x8e\x10\x0b\x4e\xe9\xc6\xf9\x0e\xd0\xb6\x61\xdd\xd4\x2c\x34\xd4\xed\xd3\x09\x65\xd9\x74\x57\x99\xd0\x0f\x5b\x1f\x53\x0e\xe5\xd0\xba\x06\x44\x58\xdb\x23\xf3\xc4\x18\xa2\xa1\x65\x4b\x43\x64\x5b\x3c\x60\x66\x4c\x7f\x2c\x28\x6a\x4e\xad\xec\x10\x44\xfa\xef\x74\x84\xc6\x0b\x03\x99\x73\x64\x99\x36\xd2\x4d\x1b\x0d\x47\x0e\x32\x2c\x58\xbe\xc8\x1a\x99\x31\xb2\x1c\xfa\x72\xfa\x9d\x3e\xdb\x8c\xd0\xd0\x72\x00\x7f\xa6\xc4\x3e\x33\xfc\x30\xd4\x4b\x8d\xb8\xed\x5a\x26\x0b\xe2\xaf\x1e\x69\x54\x07\xe5\x0e\xe2\x51\x21\x13\xe9\x23\x6d\x84\x46\x43\x5f\x43\x13\x34\x31\xc1\x29\x32\x94\x0c\x13\x4d\x24\xc3\x82\x60\x4d\xf8\xcb\x8e\x8b\xa1\x34\xc0\xcc\x1e\x6a\x26\xa2\x3b\xac\x31\xa2\x1c\xd2\xf2\x0d\x64\xd2\xf9\x33\x9d\x39\xb2\x46\x1a\xe0\x7a\xa2\xa1\x31\xfc\x61\x41\x43\x05\x19\x30\xce\xec\xf1\xaf\xa8\x78\x48\x77\x46\xba\x5d\x4f\x34\x5b\xb2\x35\x3b\xb6\xe1\x87\x64\x4b\x10\xc3\x3b\x1e\xd3\x0e\x29\x1f\x1c\x53\x92\xa1\xfb\xe8\xf0\x5e\x91\xb1\xe2\xbc\x3c\xc4\xc1\xb5\xf1\x02\x10\xab\x01\x66\x0d\xcd\x70\xf6\x64\x51\xdf\x35\x24\x93\xca\x76\xf6\x9c\x61\x55\xd7\xec\x0c\xb3\x0b\xb3\x18\x1f\x18\xa7\xc1\x85\x73\x2a\xae\xd3\x5d\x79\x34\xd4\x2c\x69\x08\xf5\x4c\xf0\xc5\xd2\xfd\x41\xb2\xb4\xa1\xc4\x26\x49\x63\x5d\xf5\x89\x63\x59\x78\x71\x12\x46\x37\x0f\xe8\x91\xd5\x25\x7d\x63\x2f\xec\x53\xfd\x95\xfe\x65\x39\x94\xcc\x8d\xf5\xca\xdc\x18\x0b\xfb\x14\x6c\xbc\x26\x3c\xb0\xe1\x81\xfd\xaa\x18\x75\xe6\x05\x97\xe1\x83\x2d\xd0\xf9\x90\x8a\x9c\x12\x4c\x2f\x9d\x5b\x87\xcd\x73\xac\xa5\x3f\x34\xf8\x7d\xc2\x3c\xea\x36\x0f\xc1\x75\xa0\x30\x5b\xa6\xcc\xd6\xa0\x23\xdd\x60\xea\x01\x78\x0a\x86\xe9\x79\x16\x64\xdb\x96\x86\x26\xe3\xe1\x5c\x63\x52\x9e\x49\x05\x37\xca\x4b\xcd\x09\x7d\xee\x40\x0d\x1e\x53\x3f\xd7\x90\x35\x1e\x22\x1d\x62\xd0\xc7\x43\x64\x8c\x87\xd0\x96\x56\xc1\x74\x29\x83\x59\x6d\x38\x12\xfa\xa6\xc5\xe9\x09\x08\x07\x59\x73\x2a\xdb\xd1\x2d\x04\x19\x43\x30\x5d\xf1\x3a\xa0\x44\x21\x73\x3c\x44\x4e\xf6\xc4\xe6\x67\x53\x26\x73\xfa\x56\xba\x1b\x38\xf4\x7d\xb4\xe1\x84\x7e\xa1\xf5\xd2\x21\xb3\xe1\x3a\x29\x34\xce\x2b\x30\x22\x9d\x1a\xe6\x86\xc2\xfd\x85\xae\xa9\x11\x1a\xd1\x41\x5a\x94\x27\xc1\x27\x0f\xd7\xb7\x35\x90\x76\x6d\x64\xd0\x2e\x46\xb6\x45\x9f\x48\xc8\x1c\x19\x54\xfa\x1d\x03\x2e\xa0\x5e\x0c\x85\x86\x39\x06\x77\xdd\x9c\x8a\xc6\xb4\x16\xb2\xe9\x7b\xc1\x75\x67\x98\x13\x34\xb2\x4d\x68\x80\x2b\x36\x1d\x70\xe4\x99\xe3\x39\x2d\xd6\xe1\x4d\x14\x98\x11\xf8\xf9\x9a\x6c\x55\x75\xac\xa9\x81\xfa\x1e\x22\x0c\x6e\x1f\x04\x08\xee\x33\xaa\x5b\xb1\x36\xba\x36\xe6\x47\x35\x1c\x73\xcc\xbf\x8f\xa9\xf8\x2a\xa5\xaf\xb0\x90\x33\x1c\x49\x59\x49\xf6\xc9\xdb\xb3\x5f\x1a\x33\x85\xb1\xef\xac\x1c\x62\x68\x34\x68\x4d\x9f\x98\x13\x2d\x2b\x35\x27\x94\x0e\x86\xe9\x6a\xa0\x4f\xc6\xff\xd6\x8b\x61\xfc\x14\x17\x43\x4e\xf8\x3e\xc1\x51\xb0\x3f\x42\x47\xb6\x3e\x91\x86\xc8\x1c\x59\xfe\x18\x4d\x8c\xa1\x04\xc7\x29\xe7\xc8\x76\x90\xa9\xdb\xc8\x19\x39\xc8\xa1\x92\xeb\x88\x8a\x0e\x86\x4e\xc5\x55\x64\x9b\x23\xaa\xd5\x3a\x68\xa2\x53\x41\x37\x2d\xa2\xe2\xa4\x41\x77\x70\x64\x8d\x8d\x8d\x85\x46\xce\x88\x0a\x1e\x86\x4d\x35\x5f\xfa\x8a\x89\x86\x0c\x88\xbf\x81\xd9\x1b\x81\x4a\x6c\x5b\x36\x72\x2c\x8b\x21\x7c\x3c\xa4\x42\xca\x88\xa2\xd3\xd6\xd0\x78\x38\x44\x43\x9d\x8a\xfa\xd6\x04\x39\xa0\x7b\xe9\x23\x0b\x59\x0e\x15\x9b\x6c\x87\xea\x5c\x74\xc3\x9e\x38\x16\x7c\x33\x10\xdb\x5f\xc7\xa0\x72\x5b\x50\x62\x82\xa2\xad\x81\xf7\x0e\x19\xa0\xc4\xeb\x06\xd5\x9e\x0d\xe8\x55\x83\x6e\x91\x45\x67\xd8\x1c\x6a\x68\x48\xa9\x68\xa8\xc3\xf4\xc3\x00\xc6\x98\xea\xf9\xf4\x5f\x4a\x25\x06\x1d\xab\x35\x1e\x6e\x40\xa7\xb5\x7d\x50\xdb\xd1\xc4\x1e\xbe\x19\x22\x90\xf8\x86\xb0\x38\xd0\x90\xf6\x37\x06\x8f\x9e\x6d\x39\xa0\xd8\x83\xc5\xc1\x72\x30\x15\xd0\x4d\x89\x7d\x32\x9d\x16\xe9\x60\x01\x98\x18\xe6\x9c\xae\x55\x64\x8c\x47\x48\x37\x20\x3a\x49\xd7\x47\x68\xe8\x38\xd8\x42\x63\xa6\xb9\x3a\x29\x15\x21\xdd\x32\x91\x69\x8f\x16\x74\x1d\x52\x44\xeb\xba\x8d\x74\xdd\xa2\x3f\x91\x6e\x38\x48\x1f\xd9\xd0\x9b\x3e\x34\x91\x4e\xd5\xe4\x09\x18\x2e\x8c\x09\x2b\x32\x86\x0e\x32\xc6\x0e\xb2\x2c\x0b\x59\xe6\x08\xd9\x93\x11\xb2\x90\x35\xa4\xcc\x09\x0d\x2d\x0b\x4d\xe8\xe7\x1b\x76\x26\xd4\xd4\x29\x58\xb6\x03\x04\x6b\xd2\xb5\x36\x84\xc3\xb6\x54\xc3\x1b\x52\xa4\x8d\x41\x29\xe1\x67\x44\x87\x14\x60\x6b\x04\xdf\x7c\xaa\x9b\xd8\x74\x31\x8e\xa8\x54\x0b\x9a\x8d\x6e\x69\xc8\x74\x1c\x34\xa1\x10\x8e\x0d\x13\x19\x86\x49\x9f\x20\x63\x6c\x68\x68\x08\xb4\x37\xd2\xd0\x58\xa7\xc8\x72\x4c\x88\x77\x30\x33\x4e\xa5\x1b\x23\x0d\xd9\x60\xa3\xaa\x20\xd2\x02\x23\xca\x64\xe4\xcc\x29\xa9\xd1\x11\x8e\x2c\x34\x34\x41\x59\xb3\x0d\x34\xb1\xe9\x37\xc7\x19\xfb\x9a\x81\xc6\x06\x15\xae\xf5\xf1\x0b\x2a\x93\x39\x92\x41\xa5\x6f\x60\xe3\x3a\x1a\x39\x0e\xfb\x62\xd9\xc0\x13\xcc\x11\xad\xa2\x51\x82\xa7\xf4\xae\x31\x7a\x87\x05\xa3\xf1\x05\x63\x52\x62\x33\x0c\x07\x0d\x29\x3e\xe8\x97\x31\xa5\x9a\x2f\x4b\x4a\xe3\xa6\x64\xa1\x91\xfd\xff\xb3\xf7\xa6\x5b\x6e\xe3\x68\xa2\xe0\xff\x79\x0a\x0c\xeb\xf4\x64\xd5\x69\x91\x16\xa9\xdd\xdd\xd5\x7d\xbd\xa4\x33\x9c\x15\x76\xba\x1c\x4e\x67\x77\x39\x7d\x6e\x41\x24\x24\x22\x83\x22\x94\x24\xa8\x08\xb9\x4f\x9f\x73\xdf\x61\xde\x61\x1e\x62\x7e\xce\xa3\xdc\x27\x99\x83\x0f\xe0\xbe\x4a\xa2\x22\xc2\xae\xe8\x7b\x2b\x1d\xe2\x02\x02\x1f\x3e\x7c\xfb\x32\xf1\xf4\x09\x88\xa6\xc6\x6c\x2c\xa3\x73\xc7\x86\x65\xcd\xbc\xb9\x31\x03\x37\xf2\x7c\x0e\x89\x4e\x53\x43\x3c\x09\x17\x21\xdd\x19\x09\xf8\x18\x8b\xd1\xec\x12\xa8\xd7\xc4\x33\x16\xb3\x99\x31\x31\xe7\x60\x02\x59\x8c\xd1\xd8\x18\x4d\x2d\x4f\xb0\x00\x30\xf1\x0d\xad\x09\x36\x8d\xe1\x50\x80\x66\x18\x47\x78\xe8\x72\x3a\x97\x02\xb1\x20\xe0\x67\x66\x7a\x02\x94\x23\x95\x30\x38\xc5\xc6\x64\x32\x12\xff\x4b\x71\x72\x6e\x0c\xad\x99\xa0\xd4\x42\xbf\x59\x18\xe6\x70\x66\x58\xd6\xd8\x18\x4d\xe6\xc6\x58\xfc\x3d\x1e\x1b\xe6\x6c\x6e\x4c\x8d\x11\x18\x5e\x87\x93\x85\x31\x11\x3a\x8f\x39\x33\x46\xa6\xc0\x76\x73\x2a\xe6\x29\x16\x3f\x11\xc7\xd5\xb4\x42\xcb\x98\x0a\x72\x20\x2f\x8d\x74\x71\x4d\xd0\x1a\x1d\xb0\x71\x2e\xd0\x69\x34\x1a\xc3\x58\x73\xb8\x69\x58\x13\x71\xe8\xe6\x23\x48\xbb\x36\x46\x42\x0d\x15\xb7\xc6\xc3\x59\xc5\x84\x17\xba\x98\xf1\x4e\x17\x67\xa0\x29\xc8\x42\x08\xe5\x53\x63\x36\x41\xe6\x0c\x4d\xbd\xee\xa1\x16\x1e\xf5\xaf\x7b\x74\x95\x0d\x67\x63\x29\x9d\x4e\x3c\xa1\x17\x40\xba\xb5\xb5\x18\xe3\x91\x31\x84\xb3\x3e\x4c\xce\xba\x80\x83\xb1\xb0\xa6\xb6\xa4\x29\x42\xff\x98\x4e\x4d\x01\x8f\x11\xbc\x29\xce\xd7\x4c\x28\x9f\x33\x63\x31\xb3\x8d\xe9\x78\x26\x88\xaa\x21\xc9\xcf\x50\x1c\x08\xa1\x82\x0f\x81\x79\xce\xe7\x82\x82\x0d\xe1\x50\x09\x26\x69\xc2\x67\xc7\x30\x85\x99\xc0\x1f\x6b\x6e\xd9\xba\x31\x15\x67\x0e\xce\xb1\x3c\xa7\x72\x0a\x70\x60\xe7\x23\x39\x03\x41\xf9\x46\x43\x41\x8d\xad\x31\x0c\xe4\xc1\x55\xf1\x1f\xf3\xc5\xc8\x18\x49\xdb\x19\xd0\x2d\xf1\x87\x69\xce\x10\xb8\x8d\x2d\x79\xaa\xe6\x73\x31\x27\x71\x5e\xa7\x23\x4b\xac\x0e\xbe\xe1\x01\x24\xf4\x1a\x48\x80\xda\xaa\x03\x28\x24\x24\x10\x40\x42\x00\x42\x02\x4f\xc0\xc1\x58\xcc\x04\x28\xf0\xc8\x30\x87\x02\xd3\xcc\xf4\x10\x2c\x84\xa6\x3d\x1a\x4e\xe4\xf7\x47\x30\x7d\xf1\x7d\x38\xc9\x00\x06\x80\x82\x2e\xa1\x60\x08\x18\x4f\x2d\xb0\xae\x82\xa1\x65\x1e\x7f\x7f\x34\x97\x60\x00\xca\xb4\x00\x70\x8a\xb7\x01\x08\x71\x6c\x87\x69\x8b\x77\x8d\x29\x1c\x5e\x08\x55\x9e\xcc\xe2\x31\xc6\x72\x27\x2c\x01\xc0\x05\xec\x84\x05\xab\x82\xf1\x37\xfa\xc2\x18\x8f\x66\x68\x6c\xcc\x47\x9e\x0e\x7c\xd8\x32\xb1\x24\x28\x8a\xac\xc8\xd5\x58\xa3\x99\x61\xc1\x80\x70\xf0\xa7\xc9\x32\xad\xe1\xc2\x30\xa7\x53\x63\x3e\x1f\x8b\xff\xc5\x97\x05\x95\x36\x61\x77\xad\x05\xc8\x1e\x13\x90\x3d\x86\xc0\x7e\xc5\x66\x0a\x69\x65\x08\xf4\x76\x68\x25\x82\xd1\x68\x38\x17\x54\xde\x98\x2f\x04\x31\x52\x87\x4d\x30\x53\xc1\x2f\xa1\x54\x81\xa5\xfe\xab\xee\x8d\x87\x42\x94\x19\xcf\x3d\xa1\xeb\x8a\xe9\x3f\x33\x8d\x21\xc0\x64\x98\x78\x1f\xe6\xc0\x4d\xcc\x91\x60\x2b\x43\x13\xe6\x32\x31\x4c\x98\x87\x61\x2d\xe6\xf2\x40\xc0\x96\x2e\x4a\x73\x1a\xc2\x9c\x8c\xd9\x04\x1c\xcc\xd6\x7c\x26\x96\x60\x4c\x84\x68\x21\x2e\x8f\xc5\x0e\x80\xcd\x7d\x6a\x0a\xf1\x4c\xf0\x97\xc5\x02\x24\x06\x6b\x21\xee\xcf\xe1\x5f\x00\x01\x4a\x40\x10\x43\x40\x20\x00\x58\x16\x2d\xc1\xb0\xac\xa1\xa0\x56\xc3\xa9\x04\xc2\x78\x32\x8d\xa1\x01\x53\x16\x82\x83\x29\xd6\x08\x42\xc6\x48\x1c\xa7\xf9\x70\xb6\x99\x1b\xc3\xc9\x44\x9f\x19\x8b\xf1\x18\x4e\x84\x09\x38\x6e\x02\x18\x26\x73\x49\xdd\x62\x6b\xd8\xd4\x18\x59\x13\x34\x69\x02\xc3\x14\x30\x66\x3e\x6f\x81\xc3\x48\x30\x42\x53\x4c\x45\xcc\x44\x4c\xc4\x13\xb0\x17\xc2\x90\x2d\x94\x0c\xc1\x94\xe6\x86\xb9\x10\xcb\x5d\x08\xbc\x11\x42\xdc\x68\x8e\x0b\xc8\x83\xa4\xd3\xa2\x84\x3d\x48\x60\x0f\x08\x51\x76\x06\x74\x31\xe4\xc4\xd7\x2d\x21\xe4\x49\x50\xc5\x90\x32\x66\x13\x9c\xc5\x1b\x78\xbf\x1a\x6d\x74\x20\x54\x02\x6b\xc4\x8c\xc5\xcc\x6d\xc3\xb2\x0c\x6b\x24\x54\xaa\x89\x31\x9a\x8c\x8d\xd9\x62\x04\xff\x36\xec\xdc\x02\xf0\x66\xde\xb6\x71\xd6\x7c\xa6\xf0\x7e\x02\xa1\xdf\x70\xab\xcd\x22\xe9\x31\xec\x50\x7f\xdd\xdd\x16\x03\x8f\x3c\xbd\x15\x5c\xa3\xea\x41\x73\xb1\x58\x3c\x81\xbb\x5a\x25\x3b\x81\xda\xd9\x7f\xd6\x64\x19\xf6\x28\x20\x3a\xb5\x99\xaf\xab\x59\x68\xff\xf6\xaf\x0e\x59\x85\x8a\xa1\x84\x3c\x60\xd7\xa4\xa8\x40\xcb\xab\xba\x32\x09\x8d\xe2\xe5\xf9\xcc\x27\x1a\xa2\xce\x9f\x35\xac\xc5\xea\xee\xc4\x9b\xa2\xd1\x6e\xee\xe9\x53\x34\xd2\xa7\xfa\xe8\xe3\x5c\x9a\x7a\xe4\x37\xa2\x90\x20\x98\xe8\x53\x37\x20\xab\x3f\x6b\x7f\xc0\x2d\xb3\xd3\x97\x38\x24\x62\x80\xc3\xdf\xdc\x06\x6c\x1d\x90\x30\xcc\xea\xfa\x90\xc0\x61\x7b\x2c\x24\x4e\x8f\xe1\x43\x68\xee\xea\xe6\xc7\x29\x58\xe9\x66\x53\xc9\xc5\x26\xe2\xff\x5d\xcd\xd0\x48\x90\xe8\x19\x9a\xee\xac\x8b\x69\x39\xf8\x79\x58\x74\xd7\x5b\x45\x77\xbd\x78\xa4\x98\xfc\x3a\x32\xe6\xb3\x29\x9a\x08\xbd\xe8\x62\x61\x8c\x67\x10\x78\x66\x2e\x84\xc6\x05\x34\x7c\x34\xb2\x74\xf8\xfb\xcb\x1b\xa1\x03\xa0\xf9\xc5\xdc\x58\xc0\xfc\x4c\x63\x06\x6a\xd5\x42\x68\x58\x82\xa1\xc1\xbf\x70\x75\x88\xe4\x9f\xa3\x05\x52\xf7\x3a\x54\x2c\x02\x78\xc6\xc1\xcf\x7d\xd6\x81\xb2\x4c\x63\x36\xbf\x14\x52\x2d\x9a\xa0\x11\x9a\x1a\x96\xe5\x09\xc9\x5b\x48\xa5\xe3\x17\x10\x5f\x3c\x37\xa6\x68\x8c\x16\x42\x04\x13\xd2\x4f\x25\x30\x0d\x0b\x1c\xff\x4a\x71\x9c\x0a\xf1\xd0\xba\x34\x17\xc6\x6c\x8e\x04\x9f\x57\xdf\xf9\xf2\x66\x6e\x2c\xd0\x11\xf0\xb9\x58\x18\xd3\xe9\xa5\x35\x84\xc0\xe9\x71\x79\xaf\x6a\xd0\x42\xb7\x8c\xc9\x14\x4c\x2d\xe0\xae\x5f\x8c\xf4\xb1\x01\xd2\xf7\xf8\x52\x4c\x44\x08\xc4\x1d\xc2\x66\x64\x32\xd2\x96\xf4\x98\x89\xd1\x09\x93\x5d\xd3\x58\x1c\x01\xaa\xbe\xb0\x1f\xa2\x55\xa6\x1f\xcd\xa1\x6b\x8a\x21\xe2\xe3\xa0\x0b\x69\x70\xd4\x72\x1c\xda\x40\x0a\x6d\x7f\xf4\x2d\x8e\xc2\xc4\x04\x78\x0e\x4b\xb9\x89\xcc\xdd\xd4\xb5\x3e\x9a\x17\xe6\x97\xcd\x18\x0d\xd5\x8f\x5c\xb9\xa2\x78\x2e\x1e\xde\x9f\x7d\x2a\xde\x54\x07\x5a\x9d\xfd\xfe\x86\xf8\x51\x5f\x78\x35\x46\x26\x04\x17\xe9\xd6\xc5\x58\x16\xc4\x9b\xe4\x7f\xce\x76\x96\x6b\x4e\x3f\x4e\x2f\xda\x33\x90\x36\xd4\x8f\xc2\x07\xea\xcd\x83\xec\x82\xd9\x4e\xb7\x5c\x73\xd8\x81\x78\xe6\x96\xd2\xb7\xe5\x79\x86\x4c\x73\x07\x13\xd1\xad\x8b\xd9\x97\xcd\x44\x5f\xdc\x93\xfb\xab\x1b\x18\x7a\x2f\x48\x62\x8e\x2e\x26\x3b\x59\x74\xa3\xdb\x0c\xce\x55\x39\xa4\xb7\x9a\x17\x16\x32\x87\x87\xa0\x17\x0b\x88\x0e\xf5\x71\x99\xcf\x71\x7f\x6b\x9a\x22\x73\x58\x5c\x51\x18\xaf\x24\x59\x40\x66\xe2\xa6\x85\x0e\x7b\x41\x9f\x1e\xf6\x42\x27\x48\xec\x48\xc0\xa9\xdd\x23\x1c\x4c\x0b\xcd\x0b\xbb\x16\x26\x73\x4a\xe6\x8d\xe2\x79\x8b\x13\x64\x1d\x04\x86\x21\x2a\xf1\xcc\x53\xa0\xb0\xf5\x1e\x34\xe1\x74\xf5\xf1\x4e\xd5\x49\x95\x48\x3e\x86\x02\xb8\x63\x77\xdc\x01\xd7\xb3\x6b\xeb\xdd\x87\x37\x42\x10\xa3\x21\xa6\x65\xb9\x62\x92\x90\x9b\xa4\x42\xb1\x3f\xce\xbe\x6c\x74\x53\x56\xc1\x7d\x80\xc4\x15\x00\x73\x06\xda\xea\xea\x60\x0b\xb5\x20\x8f\x45\x40\x62\x0a\xd9\xab\x5d\x12\x38\x60\x4a\xe7\x23\xb6\x07\x27\x1c\xd5\x91\xda\x53\x10\xf2\xf7\x88\x44\xbd\x65\x7b\x9b\x0b\xb4\xb8\xb0\x04\x33\x9f\x7d\x5c\x80\xf4\x14\xff\x1a\x7f\x79\x63\x21\x73\xea\x42\x12\xf0\x85\x8c\x20\x1a\xa2\xf1\x4e\x9f\x7a\xba\x50\x9b\x26\xa8\xb5\xa8\x41\x40\x56\x01\x09\xdd\xde\xe6\x3a\x33\xa6\x13\x34\x35\x46\x93\x67\x33\x28\xa7\x2a\xff\xab\x6c\x54\x16\x1a\x27\x39\xa9\x33\x63\xb1\x80\xfc\x50\xf9\x17\xe0\xfa\x0c\xc1\x0b\x0b\x34\xb7\x47\xc6\x4c\xa8\x6e\x53\x99\x3c\x3c\x99\x40\xe8\x81\x2e\x50\xce\x18\xce\x9f\x4d\xc4\x43\xf0\x9f\x34\x96\x73\x6e\xeb\x23\x63\x24\x0e\x90\x50\x5c\xa6\x0b\x7d\xaa\x4f\x43\xf9\x07\x9a\xea\xd3\x24\xf5\xdf\x30\xc7\x32\xf9\x14\x5c\x3e\xb3\xf9\xa5\x39\x12\xe4\x67\xf6\x11\x2c\xd7\xa3\x89\xd0\x18\x5a\x6b\x05\x05\xd1\x69\xae\xd3\x1a\xdb\x45\x10\xf9\xda\xbf\xfd\xeb\x3a\x67\x5f\xa9\x88\x5e\xf8\xb7\x7f\x95\xb4\x0e\xd9\xb7\x7f\xd6\x4c\x4b\x43\xf6\x5e\xfe\x1b\x80\xc0\xdf\xc5\x88\x33\x16\x8b\xa9\x1f\x65\xd2\x6d\x14\xab\x61\x21\x39\x03\x4c\xfd\x97\xea\x8d\x65\xeb\x04\xda\x21\xc1\x81\xed\x16\xcb\x0e\x67\xab\x0e\x97\x8a\x0e\x23\x71\xed\x50\x17\xb6\xe4\x43\xc6\x6c\xe1\xe9\x86\x35\xd7\x0d\x6b\xf6\x6c\x6a\x8c\x67\x26\x92\xff\x55\x58\x3c\x82\x02\x24\xf1\xff\x04\xfa\x0d\xe1\x2f\x73\x24\x70\x4c\xaa\xbf\xc3\x85\x2e\x88\xf4\xd8\xb0\x20\x44\x7f\xe6\x19\xd6\xcc\xb0\xe6\x3b\x31\xf6\x04\x8d\x8d\xc5\xe2\x52\x06\x99\x9b\x53\x4f\x68\xff\x0b\x7d\x22\xe5\x9e\x17\x63\xf0\xab\x99\xc8\x42\x73\xc8\xea\x10\x43\x5f\xc1\xc5\xa4\xf0\x89\x89\xe2\x87\xc4\x05\x78\x4c\xfd\x6d\xe6\x4a\x4e\x84\x84\x73\xea\xaf\xfb\x4b\xa0\x5e\x40\x09\x4e\xcb\x58\xcc\x6d\x63\x38\xd6\x8d\x11\xc4\x2b\x1a\x53\xa8\xe0\x6b\x2c\xe6\x60\x48\x1e\xeb\xc6\x70\x04\x61\xab\xea\xaa\x67\x19\x10\x5d\x3e\x9d\xd8\x86\xb9\xd0\x0d\x73\x02\x6e\x9e\xb1\x65\x98\x96\x78\xd9\xd3\x85\x7e\x3e\x9e\xda\x3a\x5c\xb0\x2c\x1d\x3c\xea\x62\x0c\xf0\xa7\x8b\x63\x29\x20\x65\xeb\xc6\xc4\x82\xf0\x0a\x03\xcc\xac\x23\xc8\x22\x87\x2f\x40\x01\x0e\xcb\x98\x4e\x9e\x19\xe3\xf9\x3c\xad\x79\x8c\xcc\x31\x12\x5c\xda\xd6\x0d\x6b\x02\x01\x24\x53\xc3\x9c\xeb\xc6\x78\x61\x8c\x2d\x78\x0b\x89\xb7\xa4\x97\x0a\xb2\x6e\xa1\xea\x20\x0c\x6c\x48\xab\xf9\x78\xa1\x8b\x2f\x5b\x23\x1d\x36\x75\xbc\x10\xc3\x88\xa7\xc5\xbc\x50\x3c\xef\x11\x4c\x7b\x28\xb6\xd4\x30\x2d\xb1\x28\xb1\x68\x64\xca\xc1\x21\xa6\x1f\x6e\x4f\x27\xf0\xcf\x02\xc2\x1f\x46\x23\x63\x38\x32\xa6\x53\x79\x45\x7c\x2c\x7d\xc5\x5c\x18\xe6\x44\x37\x2c\x41\x2d\xf5\x78\x48\xf9\x39\xf1\xcb\xb2\x8c\xd1\xc2\x18\xa9\x89\xa8\x59\x1a\x13\x0b\x2a\x31\x0c\xe7\x82\x78\xc6\x6b\x48\x16\x29\x3e\x66\x8d\xe5\x90\x12\x02\x2e\x04\x9d\x80\x85\x0c\xc2\x1a\xc4\x30\x02\x30\x31\x34\xa5\xdf\x0a\x5c\x05\xe6\x4c\x97\x45\xe5\x14\xc4\xd5\x96\x18\x96\xc0\x75\x80\x0a\x8a\xb7\x4b\xed\xa6\xda\x4c\x40\x02\x31\x6e\xb2\xd9\x31\x36\x40\xf5\x06\x73\x62\x80\x7e\xb4\x18\xa1\xa1\x10\x6c\xe0\xb4\xe8\xca\x93\x1a\xc6\x3f\xe2\x2c\x76\x34\x92\x49\xfa\x33\x14\x5f\x8c\x7f\xc4\x77\x5b\xc5\x8f\x90\xe3\xbe\x73\xcd\x64\x64\xff\xec\xd2\x9c\x1b\xe6\x1c\x59\x26\xf8\x6a\xc6\xfa\xcc\x18\x8e\x2e\x2d\x0b\x2d\xc0\x29\x3a\x03\xdc\x9f\x9a\xb2\x53\xc0\xc2\x30\x17\x68\x6e\x4c\x47\x48\xdd\x9f\x18\x90\x0d\x30\x1b\x5d\x4e\x20\x4f\xa1\xbd\xe8\x17\x2c\xa4\xf7\x34\xb3\xc2\x74\xad\xae\xd3\x8d\xf3\x1b\x66\x28\x07\x85\x51\x0e\x0a\xf1\x8e\x8f\x3d\x7d\x64\xcc\xc0\x47\x39\x43\x26\xe4\x9f\x0a\xde\x6d\xe9\x96\x31\x9f\xa3\xb1\xac\xa6\xa3\x42\x18\x4c\x0f\x6c\x8a\x63\x63\x08\xf1\x09\x73\x71\x53\x3c\x8b\xe0\x59\x71\xc3\x92\x55\x5d\x27\x1d\xea\xd7\x84\xd1\x52\x3f\x43\xe3\x02\xd3\x44\x0b\x2f\x9b\xea\x3d\x1f\x21\x73\x7c\x61\xce\x3f\x0a\x65\x01\x2a\x4f\xcb\x9e\x06\x52\xe2\xb9\x14\xe4\xdd\x84\x32\xfc\x07\xcc\xb8\xdf\xa2\x64\x42\x8a\x9f\x78\x71\xf1\x9f\x34\xd9\xdc\x9c\x21\x73\x7a\x31\x96\x13\x1f\xba\x0b\xc3\x9c\x79\x52\x1f\x91\x33\x1f\x75\xa8\x2c\x18\xde\xe0\xed\x59\x2c\x0f\x92\xd3\x5d\x8e\xc4\xd4\x93\x2a\x38\x17\xb2\x8e\xc4\x54\xd6\xc8\xf9\xf2\xc6\x12\x9b\xa1\x8b\xdb\xfa\x78\x37\xba\x30\x87\x3b\xcb\x9d\x19\x43\x73\x37\xba\x14\xb7\xba\xcd\xbe\x7f\x6b\x01\x64\x95\x0d\xa1\x4c\x81\x6e\xed\xc4\x9f\xae\x3e\xba\x34\x27\x02\x13\xc6\x30\x5d\x57\xcc\x7e\x81\x46\x97\x42\xb0\x58\x2c\xdc\xd1\x47\x73\xec\x5a\x1f\xe5\xdf\x97\x8b\x76\x59\x5e\xe3\x94\x04\x3a\xf1\x39\x09\xb6\x01\x0d\x4f\xa4\x0a\x07\x78\x1d\x73\x2e\xc4\x18\xbb\x4c\x63\x36\xf9\x38\xf7\xf4\x99\x3e\xd6\x67\x68\xbc\x9b\x7b\x50\x65\x4b\x1f\xef\xc4\x81\x87\x64\x6b\x64\x4c\x66\xa6\x60\xa3\xa6\x61\x8e\x47\x1f\x17\x06\x54\x74\x9d\x41\x19\xd7\xc9\x6e\x64\x2c\xa4\x70\x20\xef\xce\x8d\x89\x37\xd5\x47\x10\x72\x83\xc4\x3f\xbb\x91\x31\xb7\x4c\x59\xec\xcc\x83\x5a\xb3\x43\x4f\x5f\xa0\x89\xbe\xd0\x27\x1f\x67\x1e\x88\x54\x42\x32\xb3\x26\xd0\x9b\x63\xb8\x13\x64\x07\xa2\xea\x2f\x17\x48\x20\xcd\xd8\x13\x22\xc4\x4c\x31\xa2\x19\x8c\x3e\x9b\xec\x20\x78\x44\x97\xdf\xd0\xe5\x17\x77\x10\x51\x02\x64\x66\xf6\x25\x76\x79\x3e\xf9\xb7\x7f\x15\xb4\x17\x07\x3f\x04\xd8\xa1\xc4\xe7\xe8\xd6\xfc\xb3\x36\x19\xfe\x93\x86\xf6\xe6\x9f\x35\xf1\xef\xad\x15\x5f\xb0\xfe\xac\x99\x43\xf1\x97\x78\x77\xa9\xfd\xdb\xbf\x86\x9c\x6d\x91\xf8\x8f\x6e\x8b\x6d\xfc\xb3\xf6\x87\x57\xaf\x5e\x69\xf2\x0a\xdb\x62\x9b\xf2\xfd\x9f\x35\xc3\x9a\x68\x88\xad\x56\x21\xe1\x30\xe0\x93\xae\xef\x65\x5e\x83\xcf\x0a\x24\xc9\x4f\x36\xf1\xc9\x76\xd0\x36\x36\x38\xbc\x86\x89\xdb\x31\x06\xfe\x61\xb5\x5a\x69\x95\x5e\x59\xf1\x25\xf1\xbc\xbc\x59\x15\x8e\x5d\x7e\x01\xf0\x46\x3e\x1a\x05\xde\x1f\xff\xb0\xfc\x93\x86\x72\x6b\x11\x03\xaa\x7b\xf6\x9f\x12\x5f\x73\x6e\xd7\xbf\x14\x74\x06\x79\x18\xd8\xa9\x25\x3e\x4e\x3a\x05\x8d\x88\x69\x5d\x4e\xd0\x3c\x3d\x15\xea\xa8\x7c\xd9\x18\x43\x21\xdb\x5f\x9a\x73\x34\x37\x26\xbb\xd9\xa5\x69\xc9\x2b\x90\x90\x3a\x31\x26\x3b\x3d\xb9\x36\x79\xc4\xc5\xaf\x02\x17\x79\x80\x7b\x34\xb1\x4c\xd1\x0c\xa4\x8a\x62\x01\xf2\x79\xa9\x00\xb9\x7c\xce\x9d\x7f\x9c\x7d\xd9\x8c\x74\xf3\x62\xf2\x71\xec\x8e\x8c\x89\x67\xea\xa6\x3b\xf1\x4c\x64\x5e\x98\x8b\x9d\xf5\x65\xa3\x03\xb9\x36\xe7\xf3\x8f\x33\xd7\xdc\x99\x43\xf1\xa7\xab\x9b\x50\x4b\xb7\x70\xa9\x85\x05\xf1\xc8\xef\xcd\xee\x35\x42\xe6\x6c\x67\xb9\xe0\x28\x1c\x7d\x79\x33\x42\x13\x70\x68\x7d\x9c\x5c\x8c\xbe\x6c\xcc\x21\x02\x17\xa2\x3b\x07\x3b\xec\x5c\x65\x7a\x4d\x5d\xeb\xcb\x9b\x19\x5a\xec\xac\x8b\x11\x58\x6b\x2d\xd7\xfa\xb8\xb8\x98\x7d\xd9\x98\x63\x04\x72\x82\x72\x8b\x09\x6d\x5b\x17\xec\x75\xe6\x8e\x3f\x4e\xa0\x4c\x15\xbc\xdf\xca\x63\x23\x7f\xc5\xbc\x9e\x8b\x07\x41\x59\x5d\x13\x4a\xed\x82\xec\x68\x0d\x65\x21\x72\x90\x23\x41\x26\xb3\x72\x35\x8d\xa1\x0c\xa0\x3e\x96\x16\x86\xc9\xe2\xcb\x66\x21\xb4\x5a\x73\x64\x98\x73\x25\xc3\x8d\x21\x67\xd9\x80\xda\xf2\xf3\x91\xa0\x30\xb2\x42\xb8\x2a\x71\x3e\xf4\xc4\x7b\x30\x42\xd7\x05\xf7\x5b\x4f\xc8\x42\x13\x63\x3e\x52\x93\x5d\xe4\xd7\x36\x92\x93\x9d\xc9\xf2\xc3\xf3\x11\x92\x3d\x03\x8c\xf9\x48\x7a\xff\x8d\xd1\x58\x89\xd8\x13\x59\x24\x39\xae\x8d\x0e\xa2\x54\xbc\xae\x58\x98\x95\xdd\x08\xe6\x46\x7b\x50\x6e\xb4\xed\xb3\xfa\x99\x90\x38\x5c\x28\x69\xb4\xd3\xa7\xae\xd0\xa8\xc4\xff\x43\x33\xb1\x86\xfe\xaa\x9f\x69\x51\x28\xb8\x5c\xb0\xc6\x3e\xfd\x82\xfb\xad\xcb\x69\xa1\xd9\x47\xc8\xe1\x9b\xbb\xd6\xf0\xe3\xec\xc2\x84\x72\x98\xe6\xe2\x62\x9c\x6d\x6d\x57\xfc\xf5\x71\x91\xfd\x31\x91\x3f\x04\x3a\x5e\xcc\x73\x0f\x16\x7e\x65\x5f\x9b\xc7\xaf\x89\x43\x1e\x1f\xee\x38\x97\x33\xfd\xf3\xe3\xc2\x9d\xcb\x08\x10\x4b\x9f\x43\x9a\xa7\xab\x9a\x14\xa2\x71\xe6\x67\x27\x08\xf6\xec\x22\xb1\x90\x69\xd9\x32\xe1\x13\x6a\xd1\xce\x16\x90\x48\x9b\xc9\xd7\xcc\xe4\x81\x26\xd9\xb5\x68\xac\x9c\x84\x96\x31\x9d\xa1\xa1\x0e\xa1\xbe\x63\x7d\x8e\xc6\x10\x1f\xb1\xd3\x65\x22\xe8\x74\xaa\x4f\x8c\xd1\x48\x1f\xeb\xf3\x0e\xf5\xcb\x61\x79\xe7\x70\xb7\x8c\xa0\xbb\xc3\xc1\xde\x95\xa2\x87\x06\xfc\xc3\xb2\x00\x28\x64\xb5\x8f\xc6\x68\xa4\x8f\xd0\x28\xd4\x47\xba\xac\xc2\xab\xcb\x6a\xbd\xb2\x1c\x6f\xa6\x74\x2f\xf0\x2d\xc8\x57\x46\x63\x08\x3e\x12\xb2\xba\x19\x42\x3a\x07\xa8\x08\xe6\xce\xbc\x98\xee\xda\x99\x56\x0e\x46\x5f\x55\x17\x0c\x34\x7b\x00\x80\xe3\x04\x6f\x7a\xad\x3a\x8f\x20\x10\x6c\x34\x87\x72\x2a\xe3\x05\x14\x22\x90\x7f\x59\xc6\xe4\xca\x9c\x19\xf3\x39\x82\x6a\x2d\x13\x34\x2b\x34\x88\x1b\xa2\x09\x54\xf4\x4d\x2a\x3d\x5b\xc6\x62\x21\x81\x03\x7f\x8d\xae\xcc\xa1\xb8\x31\x41\x0b\x34\x79\x31\x13\xd7\x85\x3a\x39\x15\x7f\x4c\xd1\x3c\x8c\x41\x24\x80\x34\x33\x26\x68\x24\x76\x0a\xd2\x14\x26\xc6\xc4\x58\x58\xe2\x1f\x64\x09\xcd\xd6\x5c\xb8\xa6\x29\xf5\x42\xd8\x98\x39\xa4\x53\xce\x74\x71\x53\x3c\x05\x7f\xc8\xea\xc2\xe2\x40\x8f\xc4\x18\x33\x69\x48\x05\x83\xa5\x18\x60\x96\xbc\x6f\xcc\xe1\x48\x5b\x72\xa2\xa3\x99\x3e\x32\xc6\xb3\x17\xe6\x10\xdc\x0a\x86\x89\x16\x50\xc1\x01\x58\x61\xbb\x19\x60\x47\x43\xba\xa4\x1e\xe5\x7b\xdd\xa5\x4e\xaf\x5c\x7b\x66\x5b\xc6\x4c\xc0\x55\xa6\x29\x40\x6f\x9f\x21\x02\xb3\xb6\x39\x52\xb5\x7e\xa0\x38\xc0\x7c\xe4\x59\x06\xd4\x72\x58\x88\xcd\x9c\x40\x79\x99\x29\x54\x5b\x87\xfa\x81\x23\x63\x3c\xd2\xc7\xb2\xb0\xf8\x4c\xfc\x35\x5a\xe8\x53\x7d\x66\x4c\x74\xd3\x94\xff\x40\x52\xa3\x65\xcc\xc6\x42\x0d\x1f\x19\x8b\xb9\x31\xf3\x2c\xc3\x9c\x42\x3a\x90\x00\xcd\x4c\x48\x35\xe0\xbc\x33\x46\x13\x55\xa5\xe5\xcb\x1b\x0b\x8d\x0d\x4b\x3c\x69\xc9\x68\x77\x63\x3c\x35\xc6\xd3\x67\xa6\x69\xcc\x87\x63\xa4\xfe\x19\x26\x7e\x43\x5b\x7c\x1e\x41\x9d\x97\xa9\x10\x39\x10\x64\x39\xcb\x94\x56\xe9\xc9\x19\xe9\xc6\x48\xd9\x24\xe7\x63\x0f\x6c\xe7\x32\x86\x14\x9a\x8c\x59\xa6\xec\x48\x89\x46\x86\x35\x43\xb2\xae\x9c\x35\xfb\xf2\x06\xba\x39\x2d\x8c\xb9\x67\x1a\x2a\x41\xd6\x96\xc9\x8b\xa6\x6e\x0c\xe7\x62\xf1\xe2\x9f\xe9\x44\x25\x9e\xa0\x14\xf1\x90\x01\x59\x68\x50\xfb\x63\x38\x92\x1e\x83\xfc\x30\xd3\x99\xc0\x15\x21\xf4\x18\x13\x48\xdb\x91\xff\x88\x7d\xd1\x27\x49\xd0\x26\x64\xd8\x2d\x0c\x28\xf1\x34\x52\x0f\x7e\xd9\x8c\x21\xd7\x60\x36\xf7\x46\x86\xa9\x8a\xbb\x0f\x2d\xdd\x30\x65\xf4\xab\x22\x24\x82\x74\xe8\x23\x4f\x37\xc0\x64\x75\x08\xbe\x85\x2e\xbb\xe9\x13\xdf\xc6\xc6\xe4\xc5\x0c\xa9\x3a\xfd\x42\x30\x9c\x9a\x4d\xdb\x16\x2e\x0c\x6b\x06\xd9\xa3\x48\xa2\x91\x5d\x83\x5e\xca\xe4\x63\x97\xc1\x16\xca\x3f\x90\x6c\x1a\x13\x23\xb9\x2e\xff\xd0\xa1\x4a\xe0\x50\x07\x55\x4b\xd0\x97\x0c\x89\xcd\xd0\x0e\x34\x4a\xe8\x71\x06\x9e\x6d\x70\xbc\xc1\x81\x7f\x50\x5a\xc0\xc1\xd1\x9e\x23\x63\xb8\x40\x43\x81\x88\x90\x7f\x69\x82\x13\xcf\x14\x57\x2f\x8d\xa1\x85\xa6\x06\x94\x82\xb1\x8c\xe1\x04\x50\xcf\x1c\xc9\x7f\x16\x3b\x63\x0e\x99\x21\xc3\x89\x31\x1c\x1b\xc3\x85\xfc\xff\xee\x54\x5c\x36\x64\x32\x18\xa4\xcc\x8d\xe5\x3f\x8b\x9d\x0e\x2f\xe8\x72\x20\x28\x66\x25\x9d\x82\xe6\xe2\x72\x6c\x0c\x4d\x63\xb8\x78\x06\x05\xae\xcc\x71\x2c\x3c\x8c\x04\x51\x1f\xba\xe2\x45\xa1\xea\x8d\x5c\x53\xa8\x70\x1f\x41\xe4\x17\x3f\xcc\x8b\xd1\xc7\x69\xc6\xb9\xf9\xdf\x55\x0d\xc5\x39\xd9\x6c\x3d\xcc\x49\xf8\x04\x7b\x1e\xb3\x41\x1e\x3e\x6b\x87\xf1\x1d\x0e\x10\x57\x2d\xdc\x2f\x3e\xbc\xb9\x7c\x8e\x83\xd0\x88\x67\xf1\xc7\xff\xa2\xce\x53\xed\x87\x1f\xdf\x7e\x78\x1b\xde\xfc\x4d\x1b\x2c\x65\x4b\x84\xff\xd2\xc2\xfd\x66\xc9\xbc\x50\x7b\xfa\xe9\x33\xb8\x71\x38\x81\x16\xec\xda\xd3\x4f\x9f\xc6\x03\x6d\x8b\xd7\x44\xf7\xf0\x9e\x45\x5c\x1b\xf8\x91\xe7\xc9\xff\xfc\x57\xe1\xc9\xe1\x40\x43\x48\xfb\x3c\xf8\x64\x0e\x3e\x59\xd6\x40\x13\x72\x0b\xe1\x62\x85\xd8\x0b\xc9\xe7\x81\x78\xe0\xd7\x5f\x7d\xed\xf3\x67\x31\x64\x80\x37\x84\x93\x00\xbe\xf9\xdf\x30\xa0\xb8\xee\xe2\xf0\xfb\x1d\xf6\xb4\xa7\xf0\xce\x7f\x7f\x37\xd8\x10\x8e\x9f\xfe\xd7\x06\x96\xfe\x16\x6f\xc8\xd3\x16\xd8\x1a\xee\x32\xd4\xf2\x9d\xde\x79\xe7\x8d\xc9\xfc\x7d\xcf\x7b\x64\x8e\xd7\xbf\x98\xef\x5e\x7e\xe9\xb6\x47\x1d\x00\x7e\x32\x60\x33\x7f\xf7\x05\xe3\x27\xd4\x77\xc8\xed\x3d\x43\xfa\xe7\xd5\xf4\xf9\xf7\xd6\xfa\x65\x25\xa4\x35\xae\x0d\xb4\x80\xdd\x68\x83\xcc\x5f\xd1\x36\xe4\x81\x90\x30\x07\x15\xb7\x2b\xf7\x66\xae\xce\x10\xa7\x5c\x4c\xf9\x93\xf6\x2c\x81\x01\xd2\x06\x9f\xac\xf1\xe0\x93\xb6\x61\x0e\xf1\xb4\x81\xe6\xe3\x0d\xd1\x3e\x7f\xfe\x2c\x8f\x44\x69\x2b\x07\x9f\x66\x03\x2d\x24\xb2\xe1\xc5\x80\x07\x91\xb8\x69\x0e\x07\x1a\x44\xbd\x68\xe9\xbd\xcf\x83\x4f\xf3\xdc\x7b\xe3\x81\x46\x57\xda\xe0\x93\xfc\x1c\x09\x02\x16\x24\xdf\xa9\x3e\xcb\xf2\x34\xcf\x06\x9a\x43\x77\x95\xdf\xf2\x19\xa7\x2b\xaa\x16\x42\x43\xdd\xc1\xfe\x9a\x04\xf9\x4f\x23\xd4\x61\x20\x9b\x79\xd1\xc6\x0f\xab\xde\xec\xf8\x6e\xf5\xab\xc9\xcb\xee\xa8\xf2\x5d\xd8\x10\x31\xf3\x71\xfc\xbe\x39\xc8\xc2\x47\x3d\x21\x4e\x50\xbc\x11\x8b\xfa\x8f\x6c\x93\x6f\x54\x8d\xe4\x90\xd0\x0e\xe8\x56\x6e\x4e\xd3\x78\x5a\xed\xd5\x56\x28\x88\xa5\xd8\xe0\x6e\x23\x8e\xf8\x7b\x43\x7d\xba\x89\x36\x2d\xc0\x59\x46\x9c\xd7\x60\x93\xbc\x95\xdf\x5b\xd3\x1c\x68\xcc\xb7\x3d\x6a\x5f\x6b\x12\xb9\x55\xff\x15\x81\x5b\xa3\xc1\x70\xf0\xe9\xf3\x67\xb5\x76\xe6\xbf\xa4\xe1\x86\x86\x61\x8a\xd1\xe9\x54\x7e\xba\xc6\xfb\xfa\xb5\x16\xaf\x96\xaf\xe5\xaf\xd4\xb3\x95\xf4\x9d\x18\x19\xcc\x06\x64\xb8\xa1\xdc\xd5\x5d\x82\x9d\x80\xb1\x0a\xc0\x65\x4f\x6e\x66\x93\x0b\xa7\xb7\x70\x6c\x33\xb0\x0e\xb7\x38\x03\x69\x33\xf9\xfa\x27\x6b\x31\xf8\xa4\x2d\xa3\xcd\x96\x04\x10\x0a\x80\x38\x5e\x97\x88\x83\x38\xa4\x51\xf8\x02\x5e\xf9\x2c\xfe\x2f\x8f\x6a\xf1\x63\xb6\x47\x89\xcf\xaf\xe0\xe1\x7a\x5c\xab\x9c\x51\x16\x1e\x78\x2d\x36\xde\x65\x9e\xc7\x6e\xc4\x5f\xe1\x06\x7b\x1e\xf2\x99\xce\xc9\x2d\xd7\x79\x80\xfd\x70\xc5\x82\x4a\xec\xaa\x82\x0d\x75\xaa\x21\x93\x3e\x3d\x57\x7d\x61\x62\x84\x04\xd2\xf4\xe9\x93\x58\xcf\x76\xc9\x70\xe0\x7c\x20\xb7\x82\xbf\x7d\xaa\x18\xf8\x73\x2d\xd4\x17\x0d\x64\x30\x19\x22\x7c\x1f\xf9\x42\xd6\x6d\x25\x89\xb9\xd9\xf2\x1b\xa6\x87\x9c\x6c\x4b\x33\xa6\x8e\x47\x60\xb2\x71\x4b\xd3\xf8\x07\xf3\x57\x34\xd8\xe4\x7f\x01\x3a\xbd\x21\x61\x88\xd7\x44\x1b\x68\xf8\x06\x53\x4e\xfd\xf5\x8b\xcc\x5d\x41\x3f\xe2\xa4\x46\x71\xfa\xd4\x3d\x31\x15\xed\x8a\xb3\xad\x36\xd0\x5e\xc0\x77\xb4\x81\xf6\x9f\x24\x1c\x20\x75\xf1\x59\x40\xd0\x9e\x45\x28\x8c\x02\xf2\xef\xe8\x83\x4b\x43\x74\x43\x3d\x0f\x05\x24\xb4\x5d\x22\x38\x28\xe2\x2e\x41\x29\x4f\x46\xcc\x47\x18\x39\x74\xb5\x22\x42\x23\x40\x12\x95\x8c\x18\x11\x43\xce\xb6\xcf\x32\x42\x52\x0e\x70\x12\x26\x82\xd8\x7d\xea\xf6\xb4\x78\x26\x20\x21\xc7\x01\xaf\x7d\x2c\x66\x84\x92\x8b\x92\x00\x30\xae\xe6\x03\x29\x91\x69\x47\xb4\x07\xb1\x75\xef\xe5\xe2\x4b\xbb\x97\x5e\x6f\xd8\x40\xf1\x44\x71\xf7\xa8\xaf\x6f\x3d\x6c\x93\x64\xc3\xda\xc0\x7b\xf7\x7b\x56\x7e\xb9\x61\xdb\x5a\xa8\x7a\xf1\x80\x67\xa9\x7c\x1d\xa7\x5c\xb2\x5b\xe2\xe8\x4a\x4c\x4a\xc8\x5a\x99\x88\x1d\x32\x8c\xbe\x64\xce\x1e\x51\xdf\xa3\x3e\xd1\x41\x5e\xa5\x52\xd3\xab\x17\x85\x6a\xc9\xae\x87\x97\x24\x3b\x9d\x0c\xc7\x79\x49\x38\xa6\x5e\x58\xc7\x1e\x9b\x46\xdd\x62\x1a\xa0\xdf\xd8\x52\x87\xc0\x00\x35\x7a\x23\xf5\x27\x39\xca\xfe\x23\x5b\xd6\xf3\xea\xf1\x40\x13\xc3\xea\x9c\xa5\xc7\xe8\xf7\x88\x04\x7b\x10\x8a\x23\x2e\x8e\x86\xa4\xb4\x40\xbb\xe7\xa0\x8e\xb8\xe9\xb3\xbf\xb1\xa5\x50\x41\xc2\x2d\xb6\x49\x99\xbc\xff\xc6\x96\x8a\xb3\xca\x07\x32\x04\x5f\xdc\x0b\x0d\x78\xa0\xfc\x0e\x3c\x51\xa4\xe2\x45\xa6\x94\x0e\x9e\x32\xa7\x76\x41\xa2\x49\x48\x69\xdd\x05\x9f\x39\xe4\xd8\x6d\x78\x01\xe4\xf8\xb0\x9d\x28\xed\x80\x92\x0f\x42\x43\xfe\x5b\xd2\x40\x98\x43\xba\x01\x0f\x9e\x1c\x68\xa1\xcb\x02\xfe\xda\x39\x1d\x80\xc5\x2b\x27\x1e\xee\x13\xcf\xb4\x10\x02\x53\x01\xa8\xea\x28\xbf\x27\x21\x8b\x02\x9b\xa0\x9f\x39\xf5\x94\xb7\xb3\x66\x29\x47\xd0\x93\x36\x15\xee\x18\xd9\xe5\x34\x4d\xec\x44\x5d\x2c\xc7\x7f\xb7\x01\xdd\xe0\x60\xaf\x6f\x08\x0f\xa8\x9d\xc1\x56\x05\x53\x81\xb0\xf2\x56\x81\x20\x08\xec\xb2\xb7\x91\x56\xc7\xe3\xeb\x55\xa8\x07\x33\xfd\x0d\xd9\xb0\x60\x7f\xc4\x0a\x3a\xa8\x3c\xc7\x6f\x3d\xd9\x6c\xb9\x58\x90\x14\x66\x8e\xd2\xa7\x73\x43\xc0\x01\x02\xcf\x65\x25\x33\xa3\xa1\xff\xeb\x77\x1c\x05\x31\xee\x76\x54\xad\xeb\x3f\x57\x38\x33\x3f\xf9\xde\x3e\x1e\x3d\x23\x22\x85\x28\x82\xc3\x4a\x50\xbc\x55\xa1\x71\x2c\xb0\x63\x21\xe4\x21\x52\xae\xaa\x0d\xfc\x80\xc3\xeb\xf0\x20\x02\x55\x52\x50\xcb\x52\x8f\xb2\x01\x64\x08\x53\xc8\x02\x4e\x1c\xa1\x7e\x12\x10\x68\x88\xbf\xe6\x2e\xc0\x8f\x86\xfa\x2a\xf2\x3c\x7d\xe9\x11\x22\x66\x98\x48\x7d\x8d\x84\xae\x6e\xbc\x1a\x62\x07\x3c\x30\xe4\x3a\x17\x32\x77\x7a\x32\x93\x73\x29\x86\x8b\xad\x89\xea\xe7\x4b\x12\xda\xc4\x87\xe2\x43\xf1\x82\x3f\x57\x7e\x3d\x11\x81\x73\x83\xe4\xae\x66\xc6\x52\x4b\x0e\x79\x40\xb7\x04\xf8\x63\xc5\x5c\x6d\xb6\xd9\x32\x5f\xf2\x61\x80\xa4\x8e\xc3\x90\x04\x5c\xa7\x9b\xad\x47\x6d\xd9\xd1\x42\x3e\xa1\xbb\xc4\xdb\x92\x40\xc7\xc1\x3a\xda\xc4\x6f\x8c\x06\xf3\xc1\x27\x4d\x6e\xf9\x67\x68\xb6\x46\x6c\x4e\x1c\xf4\x77\x6e\x88\x8b\x7f\x47\x9c\xa1\x25\x41\x18\xd9\xcc\x17\x8a\x7b\x84\x3d\x94\x8c\x88\x96\x11\x47\x2b\x16\xf9\x0e\xc2\x48\xcc\xd3\x5f\x1b\xe8\x25\x75\x40\xe7\xd8\x10\xec\xa3\xbf\xff\x31\x7d\x58\x8e\xf8\xa7\xbf\xff\x3b\xfa\xe3\xaf\xdf\x1d\x68\xe6\x35\xdc\x65\xf8\xeb\x77\xe8\x7f\xa0\xcb\x85\xf5\xf4\x85\x39\xfa\x13\x4a\xf6\xbf\x95\x67\x65\xb0\x93\xbb\x95\xf8\x4f\x43\xdd\x87\xa4\x84\x18\xed\xab\x68\x49\x22\x22\xf5\x03\x72\xb1\xd9\xfa\x72\x5f\x82\xba\xba\xde\x2f\xe0\xd5\xa0\x27\xc3\x7e\xfc\xf4\x85\x39\xc9\xc2\xfe\xd3\x27\x6d\x1b\xb0\x2d\xc8\x85\xb1\x18\x5c\xb1\x15\x6f\xd5\xad\x2e\x82\xdd\x23\xac\x25\xac\x27\x4d\xb0\x06\x08\xd7\x00\xfb\x2a\xbe\x77\x18\xb4\xf3\xc7\x43\x51\xd4\x4b\x1c\x72\xf4\xfd\xae\x56\x6b\x78\xdc\x2a\xb1\x55\xb3\xa6\xad\x22\x3b\xd0\x96\x3c\x1c\x72\xe5\x92\xe2\xb4\xf6\xa0\x7c\xa0\xc7\x1c\x94\xca\xad\x7b\xe6\x38\x01\x09\x43\x52\xa9\xf0\xb7\xbc\xfb\xe2\xdd\xcf\x47\xbc\xf5\x46\x09\xa6\x5d\x0d\xeb\xbd\x21\x8d\x94\xdd\x0a\x18\x23\x2e\xf6\x8b\x2e\x62\xc4\x53\x71\xc5\x1c\x1e\xcd\xbf\x62\xd3\x23\x0e\xaf\x75\x70\x1b\xc6\xb2\x89\xb8\x22\x8d\x83\xe0\x55\xf9\x2c\x01\xb3\xc8\x2a\x0d\x75\x8e\x16\x78\xf7\x45\xec\x8c\xc9\xbe\x34\xd0\x70\xd6\xc6\x36\x28\x0e\x79\x80\xd1\x6d\x91\x71\xd1\xe7\x6e\xcc\xeb\x6e\x3c\x78\x4d\xe4\x2d\x93\xe2\x70\xff\x8a\xc7\xb3\x8c\xae\x01\xb6\x5a\x9f\x71\xe4\xe2\x1d\x41\x62\xab\x42\x14\xf9\x9c\x7a\x88\xbb\x64\x8f\x70\x40\x10\xf5\x11\x4e\xf4\x14\x80\xd8\x5d\xe8\x23\x65\x29\xdb\x27\xfc\x86\x05\x02\x0d\xa5\x2f\xbe\x5d\xd0\xee\xe6\x24\x6e\x51\x6c\x7a\x52\x6d\x10\x7a\x27\x66\xdd\xc5\x3a\x77\x88\x45\xb7\xa0\xaf\x94\xd5\x94\x06\x4d\xe3\x73\x1d\x64\x2b\x6d\x6b\xbd\x90\xd2\xe9\xd7\xa5\x09\x98\xd6\xe4\x2c\xaa\x80\x95\x3d\xe7\x20\xb8\x76\xe7\x84\x85\xa1\xcc\xcc\x50\x2f\xf7\x3e\xde\x50\xfb\xdf\x8f\x60\xac\x17\x2c\xe4\x48\xf1\xf3\x63\xf8\x32\xde\x6e\x89\x03\x28\x7e\xc7\xcc\x79\xfa\x95\x31\xe7\x91\x79\x0a\x46\x05\x45\xc0\x17\x36\x28\x7d\xd2\x29\xc5\x7a\x8c\x06\xb3\x86\x40\x80\xea\x0d\x6f\x1a\x2f\xb5\xa9\xe4\x47\xa6\xa1\xc2\x43\xd8\x92\xff\x04\x93\xc8\x5b\xa6\x15\x03\x86\x0e\xfb\x60\xd5\x93\xc9\xb3\x38\x67\x0f\x72\x03\xb2\x8a\xcd\x41\x2a\x16\x34\xf6\x20\xa4\x84\x8e\x6e\x61\x76\x4f\xb5\x12\x60\xb6\x80\xc3\xd2\xe8\x23\xce\x1a\xc7\xc1\x9a\x70\x6d\xa0\xfd\xcf\xa5\x87\xa5\x4f\x44\x5c\x0e\x94\x83\x81\x6d\x89\x4f\x02\xe4\xb3\x80\xac\x48\x10\xa4\xd1\x45\x66\xcd\x37\x33\xa2\xcc\x53\xad\x72\x6b\xd4\x0c\x3a\x41\xea\xf0\x6d\xcb\x7f\x8b\xb3\xf6\x2f\xb5\x9d\xe8\x59\x9d\x8c\x35\x2d\xf8\x42\xab\x27\xdd\x9d\x60\xd4\xda\xdf\x48\xb0\xa3\x76\x27\xdb\xdb\xc3\x12\x09\xae\xd4\xc4\x1f\xa4\x54\x90\x40\xf5\x7c\xe2\xc0\xe8\x2b\x13\x07\x26\xa3\xaf\x49\x1c\x28\x73\xe3\x4e\x74\xf6\x03\x5e\x77\x10\x01\x4a\xaf\xbd\x60\xbe\x4f\x6c\xde\x41\xf8\x28\xbd\xfa\xb3\x0a\x58\x0d\xef\x58\x76\x18\x7d\x65\xb2\xc3\x74\x78\x7f\xb2\x43\x53\x10\xe1\x31\x4c\x68\x5c\x60\x78\x97\x32\xaa\xe4\x44\x81\xe4\x37\x46\x21\x32\x7e\x80\xb4\xd2\x57\x38\xe0\x75\x29\x70\xf9\x34\xc1\x27\x17\xd5\x28\x4f\x40\xff\x62\x8f\x22\xda\x04\xdb\x6e\xc3\x67\x07\x5a\x48\x1d\x62\xe3\x40\x71\x15\x01\xd8\x80\xdd\xee\x33\x11\xe1\x61\x27\x0f\x7c\x7e\x52\x72\xbb\x26\x83\x4f\x9a\x43\x42\x4e\x7d\x40\xcd\xb7\xe5\x30\xd2\xa7\xf9\x87\x05\x12\x7b\xcf\xa9\xef\xbc\x2b\x48\x33\x75\x67\x7b\x52\x21\x2c\x64\xe7\x71\x9c\x6c\x32\xae\x93\x4d\x46\x77\x24\x9b\xc4\xbb\xe4\xe2\xf0\x7d\x12\xd3\x08\xe6\xee\xf6\xcd\xb8\x73\x29\xa5\x39\x9a\x04\xe2\x49\xe2\xa8\x4c\xb9\x84\x7e\x05\x97\xea\x8f\x66\x0c\x93\x69\x54\xa8\x0e\x36\x6f\x9d\xd3\x0d\x01\xbb\x59\x22\xc5\x64\x4d\x8a\xc5\xc0\x86\xa6\xa8\xcb\x73\xed\xfb\x0d\x0e\xdf\x05\x84\x6c\xb6\x1c\x1c\xac\xfd\x6d\xb8\xd8\x2b\x95\xff\xd6\xb7\x84\x9a\x4c\x18\x3d\xaf\x0c\x80\x3f\x71\x63\xf3\xc0\x9a\x43\x9a\x46\x02\xb7\xad\xfa\x76\x90\x8d\xc8\x6f\xa7\x58\x7d\x18\x6c\xfb\x0d\x1e\x41\x6b\xe6\xb7\x4b\x72\x47\x98\x6f\x21\xc6\x36\x13\x52\xeb\xe2\x10\x2d\x09\xf1\xa1\x88\xd0\x96\x38\x08\xfb\x0e\x5a\xe3\x60\x89\xd7\x04\xd9\xcc\xf3\x40\xac\xa9\xb1\xd9\x9e\x1a\xb2\xd3\x5b\x34\xeb\x31\xc3\x1d\x12\xd5\x5a\x18\xbf\x31\x02\xb2\xe9\xfd\x8e\x89\x12\xd9\xe4\x88\x14\xa5\x6b\x13\x24\xaa\xbf\x94\x4f\x53\xc8\x0e\x53\x97\x40\x51\x3f\xe3\x13\x8c\x08\x7d\xc3\xaa\x26\x7a\xb4\x6a\x9d\x5d\x25\xcd\x43\x82\x4b\xb3\xc9\x98\xb9\x7c\xca\x32\xfd\xa9\x8f\x30\xcd\xed\xe9\x71\xe1\xa5\x7d\xed\xc0\x59\xa2\xa6\xdb\xc0\x7a\x7a\xf4\x74\x16\x82\x87\x44\x50\x17\xdf\xeb\xbc\x4d\xc7\x47\x52\xf7\xba\x53\xdb\x80\xb2\x80\xf2\xfd\x11\xbb\xf5\x2e\xf3\x6a\xf3\x96\x15\x07\xad\x3b\x5f\x12\x26\xe9\x94\x7a\x31\x3a\xde\x4f\x74\xf9\xe1\x84\xa0\x3a\xca\x3c\x47\x7e\x5a\x23\xcd\x4b\x4f\xdf\x3b\x39\x38\x02\xac\xef\x49\x48\x82\x1d\x71\x50\x63\x50\xc6\xa1\xb8\x95\x84\xaf\x6a\x71\x3c\x74\x96\x4d\xa1\x37\x17\x5f\xee\x82\x2f\x1d\x03\x86\xaa\x28\x93\xbe\x20\x91\x84\x56\xe7\x81\x41\x9f\x1f\x07\x8c\xe3\xa5\xba\x73\x2a\xbe\xf3\x81\x86\x7d\xa7\xa4\x0b\xc5\x30\x71\x9e\x65\x6b\x4d\x68\x34\x7c\x15\x79\x2b\xea\x79\x32\x04\xb5\xd3\x3b\x05\x3b\xff\x43\x53\xa4\x2b\x95\xa9\xec\x0a\xce\xa6\x55\x35\x46\x16\x17\x22\x87\x1b\x61\x2c\xb6\x3c\x1b\x95\x4e\x43\x9d\x86\xcc\xc3\xfc\x8c\x81\xc2\xe6\xd7\xe5\x0f\xb0\x46\x8b\x7b\x8d\x14\xae\x74\xc5\xbf\x7e\x79\x88\xfb\x20\xb1\xf9\x87\xd7\xe8\x87\x80\x45\xdb\x23\x5e\x7e\x11\x10\x89\x15\x87\x87\x0d\x30\x87\xae\xe8\x51\xaf\xc6\xba\xcf\xc1\x2f\x7e\x24\x41\xa8\x8e\xf9\x81\x6f\xbe\x05\x69\xe0\x5b\x8e\x74\x34\xbf\x2e\x87\x88\x35\x39\x3a\x98\x42\x19\x14\xd3\xb1\xf3\xf1\x8e\x59\xbd\x50\x53\xcb\xd5\x54\xd4\xa3\x95\x4b\x95\x52\x2a\x48\xab\x79\xdb\xaa\x33\x44\x9b\x3d\x1b\xa2\x0b\x4f\xf5\x59\x57\x27\x85\x7f\x2f\xd5\x75\x64\x50\xe9\xbd\x16\xd7\xe1\xe6\xd0\x09\x57\xd7\xf6\x83\x2c\x63\x04\x00\xea\x15\xda\x4f\x56\xf7\x5d\xdb\xeb\xd5\x3f\xff\xe5\x6f\xc4\x76\x36\xcd\xd5\x8c\x3a\x15\x29\x52\x72\x36\xe6\xee\x2f\x94\xbb\x97\x04\x7a\x98\x5f\x79\x38\x94\xa9\x5c\x48\x97\xf9\x64\x89\x19\x4e\xc5\x30\xc7\x06\x00\x28\x2d\x47\xc2\x7d\xc8\xc9\xa6\xe4\xa5\x4b\x45\xaa\x6c\x48\x74\x18\x2d\x7d\xbc\x2b\x44\x45\x27\xd2\x94\xfc\x55\x19\xae\x5c\x5d\x14\xa9\x68\x33\xcc\x18\x49\xa1\xe1\x7a\x50\x91\xba\x46\xc3\x57\x54\xd6\xfb\xd1\x20\xc4\x03\x0a\xda\x65\x44\xd7\x6e\x09\x6b\x0a\x14\x1d\x12\x73\xc7\xd5\x5f\xaf\x7f\x1a\x00\x25\x20\x5b\x43\x4c\xd5\xa7\xe5\x13\xf0\x7a\x59\x2e\x55\xcf\x14\xa3\xc3\x33\x40\x1e\xa4\x9b\x9f\x49\x6e\x13\x83\x01\x64\x42\x9d\xdc\x6e\x3d\x06\xd1\x58\x95\x49\x10\x15\xac\x60\x15\xea\xcb\x80\x60\xc7\x0e\xa2\xcd\x32\x2c\x85\xbe\xcb\x4f\x15\xf6\x3a\x3f\x8d\x43\xaa\x43\x1c\x62\x65\x6f\x51\x0c\x32\xab\x45\xad\x9a\x4c\x6f\xa1\x4b\x67\x87\x5d\xf6\x33\x4d\x15\x72\x1c\x1a\x10\x9b\xb3\x60\xff\xbd\xcf\x03\x4a\x1a\xbc\xaa\x67\xc9\xbb\x7c\x59\xfe\xfc\xa1\x19\x98\x6d\x11\x5c\x40\x10\xd8\x66\x8b\x65\x6c\xc1\x3f\xa4\xe6\xa5\xb8\x57\x46\xf6\x1b\x16\x33\xa2\xba\x85\x35\x68\x7d\xca\xca\x5f\x45\x2a\x59\x19\x74\x42\x6a\x9e\x55\x25\x93\x65\x70\x5c\x06\xa2\x81\x3a\xca\x6f\x98\xce\x5d\x1a\x38\x61\x6f\xb9\x97\x8f\xfb\x20\xf6\xc1\xea\xb2\x0f\x57\xf4\x0b\x91\xf1\x23\xb2\xac\x99\x6c\x6a\x56\xbd\x11\x82\x3b\x23\x78\xe1\x71\x37\x0e\xde\x8d\x51\x97\xdd\x78\xc3\x1c\x48\xa0\xec\xb8\x21\x90\xdc\x9a\x5a\x39\xda\xad\xa8\xff\xe0\x0a\x7e\x79\x57\x4a\x39\xca\xdd\xc9\x7c\x2a\x9c\x24\x32\x82\x4e\x7c\x1e\xec\x53\xde\x0f\xd2\x47\x22\x94\xca\x9b\x9f\xb3\xaa\x45\x95\xe4\x99\x37\x01\xf4\xa3\xfc\x9f\x33\xea\xa2\x21\xb6\xaa\xc3\x50\x1d\x43\x67\xfa\xc8\x77\x14\xe4\xab\xc1\xa4\x77\x4a\xd0\x4c\x85\x07\x27\x91\xdc\x10\x0d\x91\x2a\x30\xee\xed\x11\x0c\x63\xdc\xb3\x0b\xa6\xf2\xe9\xee\x38\x72\xea\x96\x9e\xb8\x95\xa0\x76\xd3\x10\xf2\x4a\xdf\xd7\x97\xcf\xe9\x65\x37\x5f\x60\x5f\x7c\x06\xdb\x36\x09\x43\xa9\xd2\x23\xb6\x42\x18\x72\x59\x11\x77\x31\x8f\x67\xa2\x52\x58\x8d\x93\xc2\xfe\xce\x6c\x60\xcb\xd0\xbf\xfe\x8c\x3e\x0f\xa1\x8a\x75\xf0\x97\xc9\x5f\xde\xbf\xfc\x8f\x69\xd7\x2a\xd6\xdd\xca\x54\xe7\xec\x3b\x9d\x0b\x54\x77\x37\xe9\x34\xd1\xf8\xc7\x42\xd7\x87\x55\x27\x6b\xa6\x29\x8f\x85\xae\x1f\x0b\x5d\xe7\x91\xa1\x0c\x2a\xad\x73\x3d\xeb\xf2\x29\x4b\x93\x53\x55\x9e\xd2\x3b\x48\x8d\x38\xa8\x98\x32\x64\x53\xe8\x1c\xaf\xb3\x85\x9f\x63\xc5\x20\x53\x19\xbb\x93\x3f\xa8\xe4\xf5\xa9\x0c\x6a\x29\x98\x88\x61\x1a\x91\x0f\x9d\x14\x5b\x57\x36\xc8\xcf\x49\x7d\x4e\xab\xad\xdb\x4d\x5a\xcb\x76\x27\x25\x81\xca\x47\xa6\x09\xe2\x5f\x6f\xe5\xea\x7e\xca\x1f\x83\x24\x52\x57\xf8\xf8\x43\xd9\x14\xdf\xe5\x81\xfa\xba\xc5\x1f\x94\x1b\xe2\xb1\x62\x71\x6d\xc5\x62\x10\x1b\x4e\xac\x55\xdc\xc8\x21\xbb\x46\x9c\x5d\x89\x0d\x23\x0e\x7a\xd6\x50\x31\x37\xd6\x62\x99\xc0\x57\x9d\x97\x0f\x7e\x28\x07\x79\xc6\x6b\x85\x9e\x6a\x0d\xa3\xee\xc0\x0a\x50\x87\x6e\x6e\xc0\x0e\xa5\x72\x8e\x0a\x12\x3f\x10\x5c\xaf\xd4\xcc\x6a\xe1\xd5\x11\x62\x15\x2b\xec\xea\x7d\x68\x25\xe3\x77\x88\x3d\x2f\x03\xba\x93\x82\x40\x3d\xe6\xe4\x13\x20\x81\x92\x38\xea\xb5\xe3\x72\xa1\x4e\xa6\x0f\x27\x92\x85\xc7\xa2\xc7\xb5\xc7\xe8\xbe\xab\x06\x3f\x16\x3d\x3e\x26\x83\xaa\x0f\xf3\x5b\x3f\xf6\x9a\x3b\x2c\x77\xac\x0a\x8d\xdd\x47\xa1\xe3\xf2\x91\xfd\xda\x0b\x8b\x25\x65\x18\x1f\x64\x19\x91\xbb\x2b\x2e\xf6\xd0\xab\x89\xa4\xc6\xb8\xd4\xbf\x31\x9f\x9d\x25\x82\xf8\xd4\xaa\x60\x3d\x16\x28\xc9\xd7\x0a\xed\x2e\x4f\xfd\x43\x54\xf8\xa8\x42\x89\xd3\xca\x4f\x9f\x52\xe5\xa3\xae\xb0\xc5\x59\x2a\x7a\xf5\x5d\x56\xa4\x31\x4d\xe7\xe4\x0a\x61\xc5\x72\x25\x7d\x54\x08\xab\x9e\x71\x5e\x76\xef\x56\x3d\xac\x62\x76\x67\x49\x09\x6e\x3b\xbd\x77\x5c\x6d\xe3\xce\x15\x8f\x6a\x75\xc3\x16\x04\x20\x57\x0f\xa3\x07\x3d\xe3\x34\xee\x9b\x0b\x56\x83\xc2\x19\x3b\x12\x84\xa4\xa4\xa5\x90\x7c\x21\x92\xbb\x69\x07\xf0\x55\xc4\x9a\x15\x6b\x2f\x99\xe3\xa7\x2f\x4c\xf3\x30\xaa\xdc\xca\x57\x47\x59\x21\x9c\xd6\xf3\xd5\x83\xf8\xfd\x87\xfd\xf6\x80\x81\x62\x21\x21\xeb\x13\x79\xcc\x39\x69\xc5\x86\xc5\xf1\xd8\xd0\xc6\xa1\x1b\xf9\x73\xde\xa8\x95\x8d\x44\x19\x68\xaa\xe8\x7b\x37\xb6\xdc\xc4\x94\x73\x83\x02\x36\x1d\x37\x5a\x95\x8d\x24\x3f\x7a\xa2\xd7\x1e\x50\x96\x4a\xab\x9c\x67\x3a\x52\x17\x7b\x77\xc7\xcf\xcc\x84\x4e\x5b\x4e\x03\x43\x19\x75\xbc\x7b\x84\x47\x33\x73\x6d\x1b\xeb\x80\xfc\xa1\x66\x15\xb8\xe2\x43\xfd\x87\x30\xf4\x9f\x28\xf4\xc4\x63\xeb\xfb\x4e\x5e\xf9\x0f\xfc\x6c\xc9\x7e\x79\xf7\x97\xee\xd9\x42\x07\x45\x2c\x0c\x34\x04\x8b\x7c\x28\x91\x0b\xa8\x32\xc3\x24\x47\xb5\x8a\x93\xf2\xd8\xba\x29\xef\xa3\x94\x79\x5c\x95\xe2\x51\x8c\xe3\xa8\x5c\xc1\xd9\x31\x58\xec\xc4\x11\x08\xbc\x15\x5c\xef\x21\x34\xe8\x67\xf6\xbb\xef\xd9\x97\xd5\x0f\x07\x65\xb6\x09\x71\x49\xf7\xf0\x9e\x45\x55\xe9\x6d\x83\x9a\x34\xac\x42\x73\x2d\x99\x51\x05\x75\x30\x22\xcf\xb9\x72\xd9\xcd\x7b\xb2\x8e\x53\xca\x55\x0f\x65\xdf\xc6\xbc\xfc\x06\xb6\x39\xdd\x11\xf9\x74\x9c\xc3\x95\xe7\xb0\x9f\x05\xf9\xdd\x48\x41\xfc\x93\x16\x12\x41\x09\x39\x03\x8d\x4a\x3e\x5c\x89\x2c\xe6\x64\xa0\x85\xbb\xb5\xbe\xc5\x9c\x93\xc0\x17\x64\xe4\x73\x91\x3d\x15\xbc\xea\x5d\xa2\x72\x62\x88\xb4\xa4\x04\x76\xe2\x3d\x6d\x56\x60\x31\x1d\x5d\xc8\x40\x98\xfa\x55\x1a\x64\xa7\xf7\x2b\xad\xc8\x65\x7b\x28\x0d\xdf\xb2\x4b\x82\x1d\xd2\x1e\x96\x94\xf9\x74\x63\xd3\x72\xa1\x55\x6c\xb1\x9d\x53\x64\xde\x32\xf4\xc2\x8b\x42\x4e\x02\x14\x7f\xad\x21\xdc\xa6\xda\xe2\x1c\x46\xcb\x9a\x60\x11\xf9\x7f\x1f\x5c\x82\x6c\xf5\x11\x17\x87\xc8\x67\xc8\x83\x6f\x19\x15\x96\x81\x61\x6c\x19\x00\xa3\x40\xf8\xf4\xc9\x93\x9b\x9b\x1b\x03\x4e\xf9\x36\x60\x70\x66\x29\x7b\xb2\x8e\xa8\x43\xc2\x27\x2c\xe2\x78\x4d\x0c\x97\x6f\xb2\x9e\x65\xf4\x9e\x60\x07\xe1\x25\x8b\x38\xfa\x09\x9e\x10\xfa\x21\xdb\x91\x60\x7f\xb4\x6d\xbb\x35\x27\x6f\x32\x1c\x9e\x75\xa3\xae\x48\xb0\x23\x01\xfa\x5e\x1e\x89\x3e\xf6\xe8\x19\x0a\xe5\x98\x80\x97\x68\x1b\x80\x1e\x4a\x1c\xe4\x60\x8e\xd1\x2a\x60\x1b\xb4\x24\xd0\x6e\x04\x04\x77\x06\x61\x14\x71\xa7\xef\xd3\x01\x36\x1e\x8e\xcf\x8c\xd9\x1c\xbd\x12\x6a\x49\x3f\xd0\xfa\xc5\xc5\x5c\xa8\x34\xbf\x7e\x17\x10\xe4\x31\x76\x2d\x20\xb3\x62\x01\xb2\x05\x81\x05\xaf\xcd\x92\x48\x3d\xc8\x40\xaf\x39\x22\x94\xbb\x24\x40\x0e\x23\xd2\xa5\x43\x6e\x69\xc8\x11\x0b\x40\x2d\xc2\x01\x81\x68\x58\x1c\x71\x97\x05\xf4\x0b\x71\x04\x7c\x43\x42\x10\xed\x09\xb6\xa3\xb3\xc3\xf6\x59\x32\xf7\xb2\x68\x5b\x48\x74\x65\xd7\xc4\x97\x12\x4d\x40\xba\xc5\x33\x1c\xbe\x3f\xff\xc9\xa2\x00\x69\x8d\x65\xa7\xa0\xa1\x1a\xe1\x9c\xfa\xeb\xd0\x80\x49\xd5\xe5\x52\x3d\x7b\x71\x89\xe4\xac\x5b\x62\x0d\xc4\xf6\xc2\x4e\x6e\x03\xb6\xa3\x8e\xec\x93\x1f\x90\xdf\x23\x1a\x10\x07\x6d\x49\xb0\xa1\x61\x08\x45\xee\xd0\x0b\xc1\x37\x6c\xc0\xa1\x00\x61\x67\x43\x7d\x1a\x72\x60\x9c\x88\xae\x10\x77\x69\x88\x68\x88\xb0\x2f\x8f\xe3\x31\x58\x70\x12\xfc\xde\xa9\x05\x60\xff\xee\xa1\x78\x43\xb9\x2b\xa1\x16\x52\x4e\xb2\x60\x13\xc7\x62\x47\xc9\x0d\xc0\xa7\x03\x4c\x8e\x73\xfb\x1e\x8c\xff\x3d\x52\xe1\x2b\xb6\x21\xdc\x15\xc4\xe4\x46\x90\xd9\x9b\x80\xf9\xeb\x4a\x2e\xd5\x71\xb9\x1d\x2f\x15\x0a\x45\x91\xdf\x93\xd3\x0a\x41\x7b\x6b\x48\xc4\xd9\xd1\x80\xf9\x60\x25\x12\x43\x38\x64\x47\x3c\xb6\x95\xbf\xbb\x5a\x5c\x62\x70\x04\xa4\x41\x24\x0a\x39\xb6\xaf\x75\x1e\xa8\xd2\x84\xaa\x62\x98\x0d\x95\xdc\x0a\x76\x11\x4b\xbd\x73\xc5\x03\x2d\x6f\x0f\x51\xf0\xea\x18\xe4\x79\x90\x61\x58\xce\x52\x9c\x87\xda\xc8\xb7\xaa\xf3\x12\xbf\x9e\x9e\x9b\x34\x7e\xf8\xc6\xa5\x50\x08\xef\x37\xb6\xac\x3b\x3e\x3f\x30\x81\xfd\x3f\xaa\x07\xba\xf6\x4a\x3f\x76\x22\xaa\x0e\x5f\xe3\x5c\x5e\xa4\xcf\xb4\x4f\xa7\xcd\x00\x52\x8d\xa7\x89\x0e\x29\xb6\xa1\xb3\x0a\x99\x2a\x7c\x87\x6b\x8b\xf1\xc2\xef\x57\x53\xfc\xf1\xfd\x5f\xaf\x6e\x7f\x5f\xec\xbb\x69\x8a\x63\xa5\xfe\x29\x2d\x51\x6e\x74\xef\x3a\x52\x6c\xe9\x3a\x4e\xaf\x8f\x0b\x3b\x1e\xbb\x21\x4f\x92\x8a\x90\xf7\xb9\x2f\x17\xb7\xaf\xbc\xf0\xd9\x3b\xbf\x3a\x65\x06\x67\x92\x65\x80\xe6\x1f\x98\x3a\x23\x0f\x54\x5c\x61\x84\x05\x25\xd7\x50\x6c\x94\x2a\x04\x9b\x26\xc5\x2d\x0b\x7a\x79\x3f\xe9\x31\x27\x64\x06\xb4\x96\x64\x86\xc2\xa3\xb2\xfe\xb2\xee\xd1\xb5\xcb\x4b\x76\x38\xf0\x15\x08\x39\x20\x29\xac\x9c\x84\xc2\x97\x89\xb6\x79\x2a\xe4\x2a\x3c\xb4\x95\xeb\xc8\x2e\x1f\xaf\xd3\xd8\xc7\x24\xd0\x1a\xf9\x4c\x66\x22\xf3\x00\xfb\x21\xc4\x84\xd7\xb0\x8a\x62\x44\x28\x75\x9a\xc2\x40\xcd\xd8\x5a\xb3\xdd\x97\xa2\xf0\x6d\x8f\x6e\x97\x0c\x07\xce\x87\xa4\x32\x56\x69\xe0\xea\x48\xba\x66\xe2\xfc\x2d\x86\x9b\xab\xa3\xf6\x40\x02\xce\x6b\xab\xe6\x75\x3a\x44\xea\xfc\x08\x74\x93\x95\x7c\xab\x32\x49\xa2\xd6\x2c\x92\x7c\xd5\xf2\xf6\x0c\xa3\x3b\x04\x51\x63\x13\xc4\xaa\x43\xe4\x72\xbe\x15\x2f\x75\x8f\xa8\xbe\xd3\x18\x71\x4c\xcb\xf1\x9c\x65\x45\x39\x13\xea\x93\xbc\x71\x88\xb2\x5c\x3b\x9f\x2c\xc2\xd0\x50\xa7\xfe\x8a\x65\xa6\x27\x5e\x38\x55\xdd\x04\x98\x1f\x55\xe4\xf6\x0e\xf7\xe1\x7b\x8f\xae\xe9\x92\x7a\xa5\xea\xdd\x4d\x5b\x21\x5f\x6a\x2a\xb8\x55\xda\x8a\xd2\x61\x93\xfd\x52\xa8\xbf\xce\xcd\xe0\x74\x27\xe9\x81\xfb\x5e\xe8\x54\x72\xf0\x34\x4f\xa9\x65\x7c\x97\xc7\x0d\x73\x2c\xd3\x3e\xbb\xd3\x0f\x27\xf3\xce\x83\xa4\x20\x74\x27\xe0\xdc\x11\x6b\x23\xdf\x25\xd8\xe3\xee\x3e\x7e\xaf\x73\x34\x75\x49\xf0\xb8\xd5\xa9\x2d\xfd\x68\x19\xec\xc9\xe6\x5c\xd2\x0a\xfc\x6a\x89\xde\x2f\x02\xbf\x69\xba\xb9\x0a\xdd\x6c\x55\xbd\x79\x84\x43\xc0\x4a\xdb\xeb\x99\x65\x6d\xbd\x28\xc0\x1e\x54\xf5\xf9\x14\x27\xe3\x74\x1f\xb5\x42\x78\x44\xc9\x22\x8e\x3a\xc9\xcf\x3c\x0f\x35\xbf\x7f\x48\xd4\x5e\xa7\x88\xfb\x64\x9d\x82\xd7\x5c\xf1\x00\x73\xb2\x6e\x4f\xc6\x3d\x4a\x2c\xac\x60\x3a\xa7\x84\xc4\x77\xec\x35\x73\xa8\x88\x08\x4c\x17\xa5\x90\xe8\x2c\x9f\x9d\x27\xd1\xee\x65\x26\x47\xa4\xcb\xa1\xcf\xef\x23\x54\x74\x67\x81\xdd\xa1\xe1\x55\xd7\xf9\x2d\xb1\xb3\x26\x95\x85\x0d\xe4\x87\x10\x00\xf0\x64\xf7\x45\xdd\x7a\x5c\x1c\xbe\x65\x29\x50\x3a\x2e\xea\x2d\x43\x8e\x7a\xe7\xc8\x38\x24\xad\x14\xf8\xe5\x44\x01\x4e\x52\xfc\x9b\xa6\xec\x14\x67\xdb\x44\x17\xbb\x1a\x6e\x0b\xd6\xd5\x63\x50\x63\x25\xf6\xeb\x40\x50\x9e\x82\xf9\x07\xe3\x7e\x8c\x50\x95\x47\xa0\x79\x73\x2a\x52\x4d\xbb\x2d\xbf\x29\x5a\xfb\x8f\x99\xef\x6c\x98\x00\x90\xbe\x0a\xd8\x46\xf7\xd9\xcd\x11\x5f\xfb\xf4\x49\xa3\x42\xd4\xd8\x61\x20\x3f\xe6\x70\x38\x2c\xb0\xcc\x3f\x1d\x14\x96\x56\xd9\xb4\xf1\x0e\x29\xd5\xeb\xb5\xcf\x02\x82\xae\x20\x84\x04\x2c\xd6\xb5\x79\x2e\x5a\x29\xcb\xa1\x91\x84\xc1\xc0\x72\xdc\xc4\x10\x5e\x9b\xfa\xd0\xe4\xd3\xaf\xbb\x76\x10\x68\xff\xb1\xd3\x6c\x73\xa8\x71\x3f\xa5\x6b\xce\x9f\x20\xdb\xc8\xf5\xef\x77\xe2\xad\xa9\xb1\xc7\x60\xfc\xc9\xa6\xbf\x1e\x50\xbc\x23\x9a\x55\xe4\x5c\xa6\xa1\x83\xe5\xcd\xaa\x28\xe3\x13\x30\xa8\x77\xad\xee\xd4\x49\x37\xd2\x23\xf6\xb9\x63\x65\x1f\x2d\x24\x5c\x75\x97\xa1\xcc\x7f\x45\x3d\xe8\x36\xa4\x36\xa8\x50\xe2\xa7\x55\x11\xc2\xd5\xed\x75\x8e\x2c\xca\xbc\x4d\xa6\x75\x94\x02\x78\x12\x0c\x53\x5d\xf1\x04\x28\xca\xcf\x36\x01\x31\x0f\xc6\x9a\x05\x77\xd2\x01\xd3\x77\xb5\xe6\xd1\xda\x05\xb9\xa3\x8a\x55\x54\x1d\x5c\x35\xcf\x90\xe0\xc0\x76\xf5\x25\xbb\xcd\xa4\x18\xc1\xb5\x0f\x82\x0f\x43\xbd\x1c\x57\x88\xe4\x82\xab\x7b\xd8\x26\x2e\xf3\x1c\xd5\xa1\x52\x25\xa7\xf8\xdb\x88\xbf\xc8\x25\x23\x6d\xa2\x4c\xec\x67\x3a\x58\xba\xbe\xe6\x52\x56\x01\x11\x3b\x86\xd7\xaa\x15\x75\x36\x79\xe9\x0a\x46\x43\xd9\x0e\x8f\x86\x21\x33\x64\xa4\xe6\x86\xb6\x91\xe7\xa9\x8a\xad\x70\x39\xad\xab\xdd\xc5\x57\x71\xc6\x3c\xae\x6d\xba\xa0\x8a\xca\xe4\xb2\x06\xf0\x56\x05\x6f\x66\xeb\x8f\x17\x5a\x36\xc5\x95\x4b\xd7\x24\x2e\x03\xac\x42\x2b\x64\x7d\xcb\x77\x2a\xd9\xa2\x32\xb3\xab\xaf\xe2\xe8\x32\x1f\x51\x8c\x76\x44\x31\xf4\x1b\xca\x5d\x7d\xc5\xd8\xf9\x4a\x9d\x4f\x1e\x4a\xfa\x59\xde\xdb\x9c\xc9\x2e\x1a\x9d\xd4\xe7\xff\xe4\xb6\x52\xbd\x41\xf9\x61\x15\x82\xae\x07\xb7\x55\xac\x31\x1c\x57\x7e\x86\x80\xb3\xb4\x9d\x63\xc5\x06\xbc\x7e\x79\x58\xa9\xed\x7f\x48\xf8\x8e\xea\xe0\x9b\x71\xe8\x0b\x41\x84\xae\xf6\xaf\x65\xad\x52\xd9\x19\x6c\x8f\xe4\xcf\x6a\xd0\x77\x2f\xab\xfd\x0f\xbf\x01\xe3\x2e\x1b\x60\x43\x1b\xb7\x78\x03\x64\x53\xb7\xc6\x0d\x48\xfa\xbe\x3d\xc2\xbf\x05\xfe\xa5\x22\xe6\x39\x02\x03\x9e\xb2\x26\x40\xa7\x7d\xbe\x1f\xe1\xdc\x08\xe7\x69\x13\x9c\x7f\x63\x4b\x23\x0e\xcd\xa9\x00\x32\xb4\xc2\x7e\x84\x70\x0b\x84\x67\x2d\x10\x4e\xba\x2b\x56\xc2\x38\x73\xf7\x30\x38\x7f\xed\x8d\x15\x27\x0f\x25\xc9\xbd\x76\x67\xc7\x77\xda\x4a\x11\x14\x47\xd0\xcb\x95\xc6\x30\xcd\xd9\x9b\x64\x27\xed\x5a\x8d\x7d\xcd\x38\x7b\x96\xeb\xdc\x9f\x1f\xe0\x80\xda\xa7\xd3\xba\xb4\xea\x49\x93\x65\xbb\x4e\xfd\x03\xe5\x49\x69\x2f\x8d\xe6\x6d\xc8\xdc\xad\xb4\x8c\xa7\x6a\xed\x91\xfd\x1a\xd2\x21\x74\x3f\xda\x2c\x95\xeb\xbe\xa9\x18\x50\x5a\x43\x06\x4a\x89\x86\xcf\x8a\xf5\x63\xfe\xf7\xff\xfa\xbf\xf3\xcf\x11\xdf\x29\x3f\x55\x74\x91\x97\xf5\xd3\x76\xbb\x12\x6a\xc8\x90\xef\x91\xe2\x2a\x1b\xcb\xae\x70\x1c\xb7\x86\xb8\xd8\xe7\x71\x94\x23\x1e\x71\x1c\x27\x55\x22\x5b\x1a\xf9\x90\xd9\x64\xf1\x01\xca\xa2\xba\xf0\x79\xf4\xaf\x95\xfe\xbd\x3b\x60\x6b\xb2\x7c\xd1\x2d\x2f\x01\x59\x5c\xec\x17\xc8\x62\xc4\x63\x80\x5c\x25\x97\x55\x02\x39\x5e\x47\x15\x80\xff\xed\x08\x00\xcf\x06\x5a\xe4\xb5\x1d\x5f\x69\x41\xa9\xd7\xd6\xeb\x1d\x06\x9d\x6a\x34\x0d\x3e\x75\x2d\x99\xf8\x20\xcc\xf2\x2a\x8a\xf6\x01\xd7\x59\x4a\x89\xde\xf7\xbb\x24\x59\xe5\x0e\xea\x29\x59\x0f\xde\xa0\x35\x3d\xa1\x5c\x4e\xa7\xa2\x84\x27\x15\x4f\xca\x0e\x74\x15\x2d\x93\x96\xb0\x87\x55\x50\x7a\xd3\xb5\x26\x4c\xaf\x82\xa5\xf5\xe0\x05\xcb\xd9\x09\x85\xb3\x7a\x2d\x95\x34\x3a\x47\xa9\xa4\xec\xa0\x61\x8a\x3b\x7d\xd6\x4b\x1a\x1d\x52\x2f\xa9\xee\xc5\xa4\xe8\x77\xf7\x3a\x4b\x07\x44\x65\x85\xc4\x66\xbe\x83\xa1\x95\x56\x3e\x1b\xa3\x0c\xa5\x72\xf9\xf1\x83\xe3\x4b\xb2\xf3\x2b\x7f\xe0\x5b\xaf\x04\x35\xaa\x53\x59\xac\xaf\x94\xb3\xcb\x28\x57\x24\xad\x5c\xe7\x0a\x21\xc9\xf2\x72\x6c\xdb\x2c\x70\xaa\x5d\x6d\xd7\x64\x5f\xe4\xe6\x49\x04\xf4\xe7\x34\xb7\xeb\x2e\x0b\x23\xe2\xde\x19\x39\x3e\x92\x91\x5b\xc3\x61\x91\x98\x7f\x8a\x33\x7a\x2f\x21\xa4\x15\xd2\x16\x6e\xb7\xd8\x77\x40\x5e\x12\x62\xb4\xa3\xf2\x9e\x06\xf1\x12\xa9\xac\xf6\x13\x07\x39\x57\xfb\x23\x5b\xbb\x1d\x16\x33\x93\x54\xf8\x4f\x45\x88\x6e\x9c\xe4\x98\x29\xf1\x53\x37\x11\x90\x07\x56\xd8\x01\x49\xd0\xaf\xe8\xa5\x5e\x41\x17\xda\x1b\x41\x99\x6d\x1a\x78\x91\xc8\xa6\x94\x33\x33\xcd\x6e\xe5\x71\x5b\x2d\x62\xed\xd3\xb5\x2a\x4f\x4e\xc2\x56\x6a\xb6\xf0\xa0\xfa\x7d\x55\x0b\xae\x02\x4e\x2d\x17\xaa\xd8\x7d\x16\xe8\xe1\x0d\xe6\xb6\x8b\x4a\xa8\x26\xc3\xdb\x4b\xfd\x8d\xea\x0a\xe0\xa2\xca\x68\xc1\x8a\x11\xa5\xd8\x75\xa1\xfe\x1e\x68\x3f\xfb\xc9\xf5\xd6\xb8\xce\x2e\xa4\xbe\x96\xfb\x9d\xb8\xcb\x87\xe2\x63\xf7\x60\xdb\x2e\x23\x94\x82\xcd\x63\x24\x6a\xda\x91\xa6\x63\x52\xb3\x47\xb9\x73\x7d\x54\xd5\xea\x96\x0a\xd4\xb5\x2b\xa4\xa1\xbe\x8d\x3c\x8f\x38\x71\x73\xe0\x53\xc0\xd5\x0e\xf0\x83\x41\x0e\x6d\x89\x7f\xde\x3a\xb8\x15\xec\x1d\x86\x66\xcc\xe3\x74\x1b\xc7\x5b\xe1\x80\x62\x5d\xa6\x37\x64\x7a\x96\x15\x65\xf1\xcc\x2e\x45\x30\x8d\x0f\x39\x81\xbc\x81\xe8\x66\xa7\xd5\x10\x15\xdd\xf4\x89\xf6\x18\xe8\x5a\x40\x34\xe3\xe7\xa9\x05\xb5\xeb\xae\xdf\x57\x0d\x5e\xdc\xbb\x16\x89\x8f\xd4\x22\x2d\xeb\x78\x0b\x42\x75\x3d\x9c\x42\x2d\xbc\x12\xb7\x95\x84\xfc\x65\xd7\x56\x91\xa7\x0a\xd2\xc7\x8c\xd2\xd0\x12\xa4\x7c\x48\x6c\xbc\xa5\x3c\x0e\x39\xac\x96\x2c\xaa\x52\xcb\x9e\x71\x1e\xd0\x65\xc4\x49\xd8\x88\xb9\x0d\x32\x02\x4e\x46\xc8\xfd\xb8\xe2\x41\x64\xf3\x28\x38\x48\x78\xe8\xd5\xba\xd7\x40\x51\xd2\x69\x16\xed\x7e\xb9\xd5\xe4\x62\xde\x2a\x97\x7c\xe5\xaa\x6a\xfc\xe5\x21\xdb\x48\x4e\x07\x12\xd0\x3f\xbc\x3a\x71\xaa\x93\x3b\x85\x67\xc6\x3a\xa1\x5b\xb8\x52\x1b\x53\x0c\xed\x8b\x40\x77\x51\xdf\xbb\x12\xe8\x53\xab\x35\x3f\x14\x1d\xbd\x44\x07\xce\x6c\x7a\xef\xe1\x48\xe6\xa2\xdb\x3b\x10\xa1\xce\x67\xf4\xc4\xa5\xd7\x81\xf8\x0d\xe1\xb8\x26\x35\xa8\x2e\xb9\x6e\x43\x38\x3e\x9e\xaa\x9e\x85\x9a\xf6\xb6\x65\xcd\x6b\x3b\x80\xa0\x9e\x42\x48\x7b\x22\xa0\x7d\x10\xce\xd3\x09\xa6\x40\xb0\x0e\xe4\xb2\x51\x6c\x6a\x6c\xf1\x06\xed\x6f\xa5\xe8\x86\xc4\x5f\x50\xce\x4f\x6c\x98\x2c\xb3\xe8\x33\x24\x36\x15\xa5\x3b\xd7\xa9\x26\xee\xa1\x24\xba\x7c\x78\x7a\x29\x16\x5e\x16\x4d\x8f\xab\x2d\xf6\x10\xba\xf1\xbf\xf9\xf1\xf9\x72\xbe\xb9\x31\xab\x4b\x8b\x1d\x5b\x4c\xac\xa9\x72\x7d\x3f\xbd\xf2\x21\xaf\x7c\x49\x1d\x87\xf8\x9d\xaa\x05\x98\x13\xc0\x12\x4e\xb1\x17\x3e\x59\xc5\xaf\x26\x27\x2d\x5f\x06\xbc\x3b\x5d\x68\x39\xce\x42\x23\x5e\xe2\x63\xba\xef\xab\x37\x75\xaa\x1c\x90\x4d\xb0\xf0\x99\x43\x4e\xa9\xae\x71\x6c\x6a\xcf\x9d\x65\xf1\xc4\x55\xfc\x0c\xe3\xb8\x86\xea\xf5\x74\xa4\xe3\x0e\x08\x76\x07\xf6\x1b\x1d\x7b\x74\xed\xab\x46\xfe\x6c\x49\x3d\xa2\xa7\xad\x11\x8e\xa2\xf8\xd2\x64\xae\xd7\x60\x49\x61\xa7\x36\x91\xc7\xa9\x1e\x12\x8f\xd8\x5c\x77\x02\xb6\x75\xd8\x4d\xc6\x75\xa1\x8c\x2d\x1a\x4b\x12\xc6\xe4\xa3\x32\xe2\x8e\xf9\x57\xf0\x0b\x4c\xf1\x2f\x62\x93\xa9\xd8\x01\xf5\x7c\x6c\x15\x8d\xa3\xb6\xe2\x77\x33\xd7\x9b\xf6\x31\x24\xfc\x15\xb6\x09\xff\x6b\x44\x82\xfd\x3b\xb1\x21\xb0\x35\xbf\x6f\xe3\x9c\xaf\x9a\x50\xbc\x33\xaf\xf4\x0a\x5a\xd5\xe7\x57\x7a\x15\xb7\xaf\x2f\xac\x34\x73\xfd\xa8\x95\xaa\xf7\xef\x69\xa5\x99\x92\x43\xf9\xe5\xbe\xcc\xd5\x15\x2a\xac\xb9\x78\xf3\xa8\x85\xe7\xaa\x1d\xb5\xac\xbe\x9d\xa7\x77\x11\x7c\xa5\x43\xee\x2d\x90\xbe\x26\x1f\xf8\x49\x29\x75\xf1\xf0\x0f\x24\x99\xce\x7c\xc8\xc9\x74\x0f\x2e\xf6\xa8\xd0\xa9\x6b\x3c\xff\xfa\x53\xe9\xac\x07\x9b\x1f\x50\x00\xf6\x64\xd8\x94\x1d\x40\x1f\x5c\x0e\xdd\xd7\x03\x58\xb3\x36\x50\x75\x90\x01\x70\xa8\x5b\xc3\xe1\xf6\x56\x88\x29\x3c\x88\x7c\x1b\x2b\xfa\x53\x1b\xb5\x90\xb4\xf3\x7d\x04\x7f\x23\xf8\x9b\x13\x44\x93\xec\xac\x9a\xd4\xad\x23\xe0\xdb\xbd\x85\xf2\x3f\xf8\xce\xd4\x66\x36\x42\xe4\x49\x4e\xc8\xa9\xd8\x9d\xbc\x14\xd4\xc3\x16\xfd\x41\x16\x06\xb9\xeb\x36\xd7\x0f\x2e\x0a\xb4\xb8\x4d\x47\x77\x39\x8f\xbd\x57\x30\xae\x0e\x15\x87\x73\xd9\x45\x32\x53\xa8\x98\x4d\x34\xca\x66\x13\x35\xa6\x11\xbd\x55\x99\x46\xf9\x77\x0e\x48\x20\x3a\x20\x1a\xaf\x8b\xfa\xf9\x15\x27\x10\x99\x1d\x13\x88\xcc\xc3\x12\x88\xde\x16\xed\x1c\xf7\x9b\x3a\x64\x3e\xb4\xd4\xa1\xc2\x51\x9b\x56\xe5\xc0\x7e\x5d\x89\x43\xe6\x43\x4b\x1c\x2a\x82\xb8\x2a\x09\xf6\x5b\x4f\x1b\x32\xeb\xe8\xdc\x09\xee\x93\x06\xbf\x87\xd6\xd0\x26\xa8\x64\xf9\x1c\x0c\x0f\x8f\x0a\x39\xc1\x8f\x92\x5a\xbb\x7b\xf6\x9f\x14\x76\x3c\xdb\xbc\x50\x99\x1c\xbc\x7d\xdc\xc6\x50\xb9\x59\x00\x16\xc6\xa1\xb1\x43\xf5\x59\x03\x79\x48\xaf\xa0\x1a\x56\x15\x0d\xbe\x5b\x88\xbf\xc1\xdc\x76\xcf\xe1\xb1\x2a\x40\xfc\x6d\x0c\xd7\x10\x6d\x20\x92\x14\x3a\xa6\x29\xd8\x23\x09\x0d\x94\xd8\xd0\x7a\x04\x7b\x8d\x11\xfd\xab\x85\x6b\x09\x90\xdc\x25\x88\x93\x60\x93\x84\x13\xf2\x80\xf9\xeb\xaa\x1e\x5b\x59\x30\x54\x75\xd9\xca\xd1\xac\xae\x61\x17\xad\x05\x6d\x3b\xb8\x17\x2b\x07\xa8\x73\x2d\x1e\xd2\x43\xaa\xc4\x66\x8e\x73\x2c\x7a\x0c\x4b\xf3\xe1\xbd\xba\x16\x9f\x7f\xdc\xed\xbe\xff\xdb\x4f\xd5\xae\xc5\x92\x37\xb1\x63\x23\x6a\x17\xcb\x4a\xef\xba\x54\xd6\xd2\xd8\x83\x9c\x83\x4f\x01\x40\x0f\xb7\xd4\xf7\xc1\x1c\xfe\xb9\xe7\x1d\x52\x5f\x38\x62\x8f\x62\x99\x23\xdb\x68\x5a\x6a\x32\xf7\xba\x5b\x3f\xbf\x1d\xbd\xfb\xcb\xf6\xc7\x67\x9d\x77\x2b\x93\xb1\xd6\x68\x12\xad\x33\xe0\xe7\xaa\x41\x1c\xdf\x2b\x40\xeb\x16\x94\x8c\x32\x48\xa3\xe5\xab\x48\x66\xc3\x96\x87\xf9\xb0\x65\x2d\xad\x59\x80\x1c\xb2\x15\xba\x0a\x62\x7e\x5a\x65\x1f\x39\x69\x4b\x84\x86\x88\xa5\x2e\xed\x0b\x9a\xdb\x16\x1c\x64\x45\xa8\x03\xb2\x90\x41\x9f\x65\xdb\xac\x3f\x10\xc8\xde\xe0\x10\x05\x44\x35\xfe\x68\x0d\xff\x4a\x81\xe9\xd2\x90\xab\x02\x2e\x05\x60\xaa\xbc\x9d\xf3\x81\xf2\x06\x87\xaa\x52\x68\x87\xf8\xaa\x3b\x05\xe4\x36\x9d\x56\x47\x30\x2e\x95\x8d\xe1\x2c\x30\x5c\x14\x63\x3f\x9a\x12\x5d\x5b\x7a\x46\x0e\x62\xab\x8c\x9c\xa0\xaa\x63\x9c\xaf\x58\x6b\xe0\x5c\x35\x98\xc2\xc6\x35\xe5\x97\x65\xed\x0d\xb9\xbd\xce\x94\xfd\xeb\x1e\x79\x50\xe7\xba\x2c\xb5\x39\xe5\xb1\x7a\xfb\x1b\x5b\x76\x31\x8a\x1d\x03\xc6\xdf\x23\x02\x70\xca\x81\x31\xad\xc2\xea\xe2\xd0\x4d\x1f\xfe\x8d\x2d\x05\xf7\x83\x76\xb3\xa9\x3f\x34\x07\x11\x31\x55\xe9\x4a\x90\x4f\x65\xba\xbc\x41\x2f\x51\xe3\x37\xb6\x34\x38\x0e\xaf\xf5\x75\xc0\xa2\x6d\x5c\xbf\x27\x08\xf0\xbe\xfa\x38\xfd\x26\x2b\x6e\x55\xdc\x11\xa3\xfc\x20\x06\x79\x8b\xf3\x69\x21\xcd\xaa\x66\xe5\x46\x16\xc7\x3a\x34\x90\xa4\x3b\xd6\xb7\x65\xa2\x6f\x98\xcf\xdd\x6c\x93\x80\x7c\x69\x24\xa8\xa6\xf7\xa1\x2d\x31\xbd\x09\x13\xfa\x4d\xd6\x69\x9e\xae\x2c\xd7\xd8\x9a\xb6\xa3\x35\xa7\xe9\x74\x1a\xb6\x44\x8a\x9a\x23\xfc\x8a\xf0\x29\xc8\x29\xcc\x27\x7a\x41\x13\xaa\x07\x5d\x6b\x9a\x61\x79\x1b\x41\x54\xac\x6d\x20\x59\x8f\xa7\x85\x17\x2b\x62\xe8\x1a\xa8\x8b\xea\x42\x59\x4f\x67\x92\x53\xa0\xe5\xc2\xb3\xba\x52\xa5\x23\x88\x53\xe5\x22\xf3\x15\xe2\xaa\xd2\x69\xaa\x07\xab\xef\x09\x9e\x65\x0f\x71\xc4\x58\xd2\xbe\xb5\x42\x1a\x62\x4e\x4d\xcc\x46\xe5\x7c\x95\x7b\xa1\xc4\x0c\xba\xb1\x80\x13\x2c\x2f\xd9\xdd\x90\x73\xee\x85\x49\x94\x30\xa6\x86\xca\xd3\xf0\x5d\x1a\x46\xd2\xf0\xd4\x7b\x12\x6b\x9d\x9f\xbb\x60\x8a\xf8\x3f\xc3\x30\x8e\x0a\xc3\xee\xcc\xe2\xce\xcb\xe1\x2a\xb1\x4a\x72\xb2\xae\x48\x95\x7e\xa6\x0b\x42\x55\x04\x2f\x36\xe5\x9d\xc6\xc9\xeb\xf1\xde\x3f\xe9\xc0\x19\x1b\x93\xcb\xbb\x87\x5a\x57\x61\x60\x61\x76\x49\x26\xfc\x51\xd4\xe1\x20\x7b\x4f\xdb\x4c\xea\x8d\x0a\x9d\x74\x57\x1a\xbe\x8f\xfc\xe6\x3e\x99\xb9\xf3\x86\x7d\x27\xfe\xd3\x67\x69\xe4\x6c\xdc\x12\x24\xa6\xc9\x60\x75\x25\xdc\x76\x05\x23\x08\x2b\xbf\xd3\xe7\x09\x2b\x58\x20\xc5\x37\xbf\x0f\x02\xd6\xa5\x50\xcc\x79\xf5\x9b\x17\x2c\xf2\x1c\xff\xd7\xef\x38\xb2\x99\xe7\x11\x9b\x23\x98\x5c\xb5\xe9\xb6\x57\xa5\xfb\xac\x09\x23\xaa\x38\x85\xed\xe2\x80\xa7\x2d\xea\x0a\x80\xa8\x00\x4f\xb5\xac\x16\x23\xd0\x40\x8b\x42\x95\x15\x83\x9e\x24\x62\x49\xa8\x30\x28\x20\x21\x09\x76\xc4\x81\x72\xa9\xe2\x91\x37\x17\x5f\xb4\x9a\x0c\xeb\xd8\xe2\x1b\xb0\x35\x84\x9a\x54\xba\x9a\xd4\xcd\xb8\xb3\x5e\xae\xe6\x8f\x98\x29\xd8\xa4\x2a\x26\xb9\x25\x81\xc0\x83\x58\x2a\x12\x63\x6e\xf0\xad\x36\xd0\x6a\xeb\x63\x64\x49\x57\x71\x8c\x13\xe3\x4c\xbb\x19\x78\x8f\x53\x71\x1f\x26\xa9\xc9\x34\xf1\xf9\x76\xa9\x4d\x7a\xa6\x1e\xc9\x4e\x0d\xd9\x39\x96\xda\xa4\x9a\xe1\x72\x0f\x99\x7b\x79\xbc\x4a\x88\x50\x92\xc7\xd1\x40\x8b\xe2\x22\xcc\x40\x8e\xe8\xf3\xbe\xc8\x91\xec\x0e\xd9\x81\x20\x25\x73\x3e\x8d\x26\x55\x0c\xf3\x80\xc8\xd2\xf1\xa9\x6e\x75\xde\x8a\xd3\x1c\x1f\xdb\xad\xbe\x0c\x08\x76\xec\x20\xda\x2c\xc3\x7b\xf6\x7c\x4c\xfe\xfa\x3b\x7d\xf2\xdb\x5b\xbf\x3a\x05\x2e\x9d\x27\x9c\x1e\x28\xcd\x5f\xf4\x86\x8c\x07\x1a\xc1\xb6\x9b\x9c\x83\xec\xda\x9a\x09\x9a\x42\x6b\x8f\xd6\x1a\x1a\xb2\x35\x6d\x52\xc5\x50\x5c\xf3\xed\x34\xe6\xaf\x48\xca\x73\xd0\x2d\xb7\x8d\x12\x44\x08\xdb\x9c\xee\x48\x4d\x71\x2b\xad\xaa\x8a\x43\x46\x13\xec\x48\xa4\x71\xee\x9c\xba\x01\x59\x69\x03\xed\x0f\x95\xf4\x36\xd1\x1e\x93\x69\xfc\xef\xff\xf5\xff\x1c\xe7\x49\x2f\x29\x87\xf0\x4e\x2e\x8b\x02\x07\xeb\xb0\xb5\xda\x98\x96\x0b\x54\x53\x8d\x7a\xbb\x5b\x0d\xbb\xe7\xa5\x96\x22\x6c\x06\x56\x66\x90\xd3\x4f\x6e\xfe\xb8\x9d\x76\x74\xd3\x5c\xeb\xc4\x5d\x7b\xaf\xa7\xf7\xe5\x2b\x62\x5f\xfc\xb6\x7d\x57\x7d\x7a\x15\xbd\x57\xb5\xfc\x1a\x8e\xed\x7c\xa0\xe9\xe2\x87\x4e\xd3\x86\xba\x99\xdc\xf4\x36\x19\x28\x27\x75\xd1\x50\x67\xb0\xf4\xf4\xf0\x74\x94\xa1\xb4\xd6\x6a\xa7\xad\x22\x66\x18\x2d\x5d\x92\x1c\x25\xb8\xc9\x3c\x29\x2c\x69\x56\xbd\xf4\x52\x6a\xda\xb7\xa2\xb7\xf5\xe7\xfc\x10\xcb\x83\x0a\xe6\x88\x87\xcc\x1e\x1f\x95\xf4\x5d\xcf\xc3\xe4\xe9\x03\xfa\xd6\xb1\x1d\x7e\xf5\x95\x72\x19\x82\x04\x79\x13\x1a\x21\xe7\x97\x2b\x10\xf1\x39\x4f\x7e\x73\x90\x51\xd1\xc8\xcc\xb7\x31\xaf\xb8\xab\x19\xda\xa0\x82\x36\x57\x5c\x90\xd8\x71\x52\x89\xd2\x63\xd0\xe6\xdb\x46\x83\xca\x83\x62\xc6\x3d\x8e\x62\xce\x9a\x01\x7e\xbe\xf4\x53\x6d\x81\xa7\x76\x86\x74\x76\x62\x5e\xc2\xe1\xbe\xe8\xb9\x4a\x11\xba\x57\x6a\xfe\x63\xf8\xb7\xb5\x35\xb3\x7e\xec\x1e\x85\x22\x27\x5d\x17\x40\x8f\xd2\xa2\xeb\x50\xb2\x84\xde\xca\x3f\x54\xb3\x47\xa9\x29\x04\xd7\xc4\x2f\xfb\xcb\x63\x04\x82\x9c\xc6\xea\x53\xd3\xfd\xdc\xd5\xa6\x0f\x32\x9f\xe8\xdc\xa5\x41\xf6\xf3\xd2\x3d\x59\x8f\xd2\xa5\x5c\x93\x8f\xc0\xe5\x0e\x6c\xb2\x9b\x8e\x07\x11\x7b\xf5\x2b\xec\x40\x3c\x8b\x34\xb3\xcc\x3d\x2b\x4e\x6e\xb3\xef\xae\xe7\xb3\x02\xd8\x70\xd2\x49\x29\x25\x9e\xdc\xeb\x41\x79\xfd\xfe\xc9\x87\x8f\x7f\x79\xb6\xb9\xb3\x70\x2d\xe5\xff\x7a\xa8\x81\x5a\xaa\x27\x84\x8b\xc3\x07\x1d\x9d\xd5\xe6\xbd\x3f\x21\x08\xa6\xda\xe5\xa9\xb6\x8d\xd6\xd4\x56\x36\xf3\x8f\x1d\xe9\xdd\x6c\x11\x49\x2b\x53\x51\x2b\x19\x72\x66\x2a\x71\x25\xc2\xcf\x05\x37\x51\xfe\xf6\x3d\x84\x45\x64\xc1\x95\x76\xe3\x53\x16\xae\x79\xd5\x99\xa1\xe1\xcb\x00\x53\x3f\x4e\xc5\x77\xe2\x1f\x60\x94\x45\xc9\xcf\xa2\xb5\xac\x66\xac\xef\x3d\xba\xa6\xb2\xca\xd5\x40\x23\xf1\x0f\x39\x56\xf2\xb3\x8b\x56\x5f\x37\xc3\x53\x0d\xb0\x12\x2a\x60\xe5\x8e\x1d\x03\x99\x13\x98\x59\xee\x49\x1e\xf2\xac\x3d\xbb\x0a\x36\x1d\x6d\xd6\x07\x2e\x26\x43\x21\xd4\x7a\xa8\x9f\x01\xfa\x49\x56\xdb\xe2\x59\xac\x89\xff\x38\xc4\x3a\x58\x63\x6f\x68\x3f\x2e\x85\xb9\xb8\x9c\x6f\x9f\x39\x4e\x6d\xaf\x86\x0e\x43\xe4\x33\x70\x0f\x3b\xb6\xb5\x78\x9b\x6f\x55\xdf\xdd\x40\x75\x78\xe4\x41\xc5\x06\x75\xeb\x93\x5f\xe3\x34\xef\x5b\xd4\x29\x48\x27\xa7\x49\x3a\x6c\xbb\xd7\xe3\xae\xfb\xf7\x2a\xe5\x30\xe2\xfc\x1c\xfd\x1c\x2c\xbb\x49\x39\x75\x11\x34\x61\x92\x79\x1f\x46\xb6\x4d\x32\xb5\x88\xda\x2d\xb3\xcd\x65\x9b\x04\x49\x58\xb2\xc0\x21\x81\xa7\xfc\x0e\xd2\xe5\x04\x5a\x07\xe6\xd4\x2e\x8b\x1e\x47\x88\x41\x08\x7b\x37\x78\x9f\xb1\xd8\x76\xf7\x61\x6d\x29\x71\xfe\xcf\xce\xf2\x0f\x6c\x7c\x01\x46\x1d\xaa\x5e\x9e\x4a\xca\x2b\xb7\x8a\x48\x77\xe0\x57\xb5\x51\x07\x6c\x0d\x78\x3b\x91\x00\x78\x9e\x9d\x34\x6f\x10\xf6\x48\xc0\x75\x1e\x50\xec\xaf\x53\x2e\x7f\xb6\x2d\xc2\x8e\xc3\x7c\x3d\x47\x0e\x8a\x42\xa9\xed\xd1\xed\x92\xe1\xc0\xf9\x20\x9b\x79\xc6\xd8\x93\x6e\xe0\xa7\xe6\x2d\x88\x05\xd5\xfc\x40\xb1\x7d\x6d\x4b\x82\x15\x0b\x36\x69\xd9\x3f\xdf\xa1\x36\xe6\xe4\x2a\x46\xd2\x0e\x35\xe6\x8a\x15\xea\x14\x8a\x25\xe2\x56\x1e\xd3\x5a\xe3\xc3\xcb\x27\x06\xc7\x15\x0b\xab\x76\xe3\xd4\xcc\xb4\x5e\x98\x43\xba\x83\xd5\x8c\xe1\xff\xe8\xc6\x18\x1c\x1a\x4a\x85\x9a\xaa\x8a\x75\xf7\xcb\x1d\xde\xdd\xbc\xb4\xfc\xb7\xff\x8c\xab\x4d\xff\x0e\xe6\xd1\x26\xf1\xd9\x0d\xb4\xff\x4b\x7d\xa0\xec\x07\x10\xa7\x7c\xb7\x6e\x52\x17\x1c\xb2\x0a\x9b\x6d\x40\x02\x7d\xdf\xe1\xb2\x69\xa6\x68\xbc\x09\xc0\x2d\x50\x55\x85\x1e\x87\xd7\x31\xa5\x10\xd3\x1d\xc6\x3f\xf6\xd9\x1f\xb2\xce\xe0\x40\x33\x87\xc3\x7f\x8a\xaf\xb9\x04\x3a\x4b\xe4\x2f\x06\x62\x0c\x6b\x7b\x9b\xfc\xde\xa7\xbf\xcb\xe9\xe0\x1d\x2d\x45\xeb\x9a\xde\x5f\xa9\x8a\xdd\x24\x65\xa6\x34\x7f\x32\x18\xb5\x92\x74\x73\x3c\x18\x55\x46\x6f\x0a\x41\x52\x93\x47\x7d\x47\x5e\xc2\x26\x27\x36\xa7\xff\x09\x37\xd3\x40\xd5\xec\x33\x9f\x95\x32\x79\xa8\x78\x5e\xc5\x5f\x4a\xc1\xe0\x2e\x16\x74\x59\x71\x84\xb2\xf2\x46\xc3\x67\x8a\x77\x7f\x8e\x67\x0e\x98\x59\xe1\x83\x15\x63\x87\x7c\x2f\x95\x62\x2b\x61\x22\x57\x70\xa9\x3a\xaa\x7e\x36\xd0\x98\x57\x2f\x36\xe7\x5c\xd3\x31\x84\xda\xb3\x8a\x8f\x75\x4d\x17\xbc\xa5\xe5\x9d\x18\x24\x37\x13\x12\xdc\xe8\x8b\xce\x07\x5c\xb4\x06\xe6\xc3\xe0\x85\x3d\x28\xce\x4e\xba\x05\x33\xc9\xeb\x60\xa7\x80\x3c\xe6\xee\xdd\x9e\x0e\xcc\x0f\x28\xb6\xa6\x81\xa7\xe3\x4c\x94\x9a\x8b\x59\x0f\x93\x26\xc7\xd2\xcb\x7e\xa5\xe2\x8c\xeb\xeb\x9e\xb4\x7a\xb3\xf3\x8f\x37\x64\x82\xd7\x8a\x45\xbb\xd8\x16\x9d\xef\xa5\x91\x40\xbc\xbe\x71\xc6\x01\x5e\xf1\xc1\xa7\x4e\x25\xf3\xeb\xd4\xe4\x93\x19\x6a\x91\x11\x9e\xa4\x6e\xad\x02\x42\xe0\xc4\x3f\x09\xd7\xd9\x86\x74\xf7\xca\x5b\xf7\xaf\x9e\xff\xed\xea\x5d\xf0\xd7\x6a\xde\x0a\x04\x18\x88\x70\xa5\x57\x3d\x59\x91\x1e\xa9\xea\xca\x5a\xba\x2e\x30\xae\x4a\xb3\x9f\x10\x0e\x9f\xa5\x37\xea\xab\x67\x76\x6e\xd3\xb7\x0d\x98\x13\xd9\xfc\x0e\x3a\xf4\x8d\x6a\x3a\xf4\xd9\xfd\xb7\xe8\xb3\xdb\x0a\x5e\xb6\xe1\x52\x5a\xb0\x66\xf4\xf4\xc5\xac\xa1\x67\x5f\xb6\x49\x5f\x5b\x8a\x5d\x6b\x6b\xb1\xaa\x06\x7c\xf5\x01\x08\x87\xb5\xcf\x4b\x7b\x7d\x76\x6e\x89\x77\xf8\x47\x0e\x25\x7d\xcb\x68\x23\x10\xc5\x23\x2b\x8e\x92\x86\xa8\x5e\xb6\xed\x57\x69\xda\x1e\x96\x46\xe1\xae\x54\xb1\x1b\xa5\xec\xb9\xa6\xdc\xa8\xa6\x27\x94\xdd\x7f\x53\x28\xbb\xad\xaa\x5c\x77\x54\x37\xcd\x02\xae\x77\x32\x04\xbb\x66\xb5\xb2\x2f\xe8\x95\xd8\xce\xf1\xd1\x18\xa8\x15\x4b\xa8\x54\x8e\xe2\x90\xd0\x3e\x78\x94\x7c\xa4\x9d\x19\x47\xda\x25\x51\x0e\x59\x84\xa3\xfe\x75\xd6\xad\x32\x1c\x68\x97\x04\x07\x3e\xda\xb0\x80\x40\x81\xf5\x62\x89\x95\xee\x0a\x6c\x6d\x01\xbc\x62\x0a\x93\x12\x4c\x9b\xd8\x84\x1e\x52\x65\xe2\xa8\xe6\x16\x03\xf4\x93\x4f\xd0\x6b\xd5\x62\xf9\x24\xbe\x31\x1f\x68\x1c\x5f\x8b\xcf\xc7\x06\xde\x0c\x17\x49\xe4\xc3\xb3\x32\x93\x9a\xda\xc9\xf7\xd0\xee\xb5\xfb\xf9\xb2\x8a\xe7\xeb\xeb\xe6\x25\xd6\xd7\xc9\x4b\xac\xaf\x8c\x97\xd4\xd4\x27\xbd\x87\xfe\x82\x07\x60\xfa\xe2\x0e\x38\xc9\x01\xf8\xd7\xc0\x49\xac\x13\x39\xc9\x34\x13\x69\xf7\xe9\x93\x69\x95\x58\x89\x55\xc5\x4a\xc4\xb3\x9f\xe1\x9d\x0a\xa0\x14\xd8\x4b\x17\x6f\x58\x27\x6e\x63\xf5\xc9\x6d\x7c\xc6\x75\x92\x6b\x56\x5d\xc3\x75\xde\x32\x8e\xb2\x5d\xad\xbf\x2a\x9d\xe5\xe1\x74\x15\x3f\x40\x63\x29\x1e\xbe\x83\xda\x8c\x17\x0d\x3f\x05\x52\xa9\xad\x99\xfc\xb3\x5b\x55\x91\x07\xc0\xa6\x0e\xea\x02\xfe\x70\xd8\x54\x05\xec\x1f\x34\x9b\x7a\x38\x6d\x70\xbb\x9f\x94\xf1\xec\x0e\xd8\xd4\x01\xf8\xd7\xc0\xa6\xcc\x5e\xd8\x94\x59\xcf\xa6\xcc\x07\xc3\xa6\x9a\xaa\xe5\xf6\x16\x14\x5e\x8f\x1a\x3d\x59\x25\x3d\x12\xf0\xfb\xce\xd3\x73\xaf\xdf\x5e\x4e\xe9\xba\x3a\x4f\xaf\xab\x19\x12\x1c\xe8\x21\x17\xec\x42\xc6\x5c\xe7\xf8\xbc\xb8\x5b\xab\xac\xb4\x50\x53\x9f\x71\xba\xa2\xaa\x12\x5b\x39\xee\x2d\xef\xaf\xa9\xa9\xd4\x5a\x3e\x75\x71\x2f\x45\x1a\x22\xec\x23\x2c\x27\x58\xd3\x74\x74\x5b\x6a\x13\x01\xdb\x86\x70\x40\x50\x14\x12\x07\xad\x58\x80\x96\x8c\xbb\x28\xa4\x3c\x82\x89\x62\x0f\x61\xdf\x41\x01\x91\x3e\x6c\x1c\xec\x91\x98\x77\xb0\x81\xbb\xa5\xa6\x8c\x07\x51\xe1\x14\xfc\xd8\xf7\x19\xcf\xb6\x5f\x6a\x8d\xe6\xa8\x5b\x4a\x14\x12\xf4\x3c\xf2\x36\xf8\xd7\xef\x42\x94\x83\x78\x82\xba\x46\xf7\x49\xb6\xca\x87\x80\x2d\xe0\xc9\x09\x2b\x71\x05\xc5\xf7\x1e\x51\xa6\x1b\xca\xe4\x9c\xea\x1d\xa1\x92\x06\x24\x3d\x02\x26\x07\x98\x72\x30\xea\x23\x60\xfc\x34\xf9\xff\xdb\x86\xcb\x3d\x10\x5f\xb1\x14\x19\x8a\x88\xb6\x98\x26\xcd\x7c\xb1\x8f\xc8\x86\x71\xba\x23\x92\x1c\x1a\xe8\xf5\x0a\x71\x97\x04\x02\x98\xc8\x67\xc9\x5d\x1c\x86\xcc\xa6\xaa\x54\xa9\x78\x93\xbb\x44\x8a\xd0\x3e\x47\x0c\xde\x91\x40\x1e\x88\x3f\xfd\x04\xe6\x62\x18\x71\xef\x26\x60\xfe\x3a\x23\x68\x73\x26\x20\xdb\x3b\xbd\x77\x68\xb8\xa1\x61\x88\xbd\x6a\x92\x9f\xb9\x7d\x07\x54\xbf\x45\xdf\xac\xd2\xdb\x3a\xbd\xd9\xa8\x95\xf6\x7b\x40\xee\xf4\x90\x34\xe9\x8f\x9d\x54\xe1\xb8\x2e\x0f\x74\x78\xa5\x3e\xdd\x44\x9b\x46\x58\xc5\x81\x91\x8d\xa1\xa7\x85\x2d\xfe\xe9\x1a\xef\xbb\x4d\xfc\xee\xb9\xe9\x23\xc2\x7d\x0b\x08\x57\xde\xe5\xfb\xc4\xb9\x36\x41\xe5\x11\xe7\xbe\x05\x9c\x2b\xef\xf2\x7d\xe2\x5c\x8b\x0c\xf8\x88\x72\xdf\x02\xca\x95\x36\xb9\x2f\x8c\x6b\xb4\xef\xf5\x6c\xae\x83\xad\xea\xcf\x56\xb7\x64\xb7\xc4\x79\x20\xc5\x79\x7e\x7b\x7f\x7d\xf5\x97\xe5\xec\x43\x75\x14\xa1\x2a\xac\x27\x4b\x1b\xee\x70\x40\xb1\xcf\x25\xce\xdc\xc5\xe5\x66\x8b\x61\xf6\xfd\x24\xf2\x5c\xae\xff\x2f\xd2\x79\xa7\xbd\x15\x87\xa5\x52\x0b\xe8\xc7\x05\x21\xc3\x66\xe5\xcc\xf3\x6e\x88\x74\x72\x86\x7a\xa0\x4f\x97\x44\x79\xf4\xc3\xdd\x13\x39\x24\xcc\x78\xd2\x9f\xbe\x28\x76\xcb\xbb\xee\x02\xcd\x0a\x5d\x2d\xf7\x05\xdd\x87\xb7\xd5\x3f\x45\xbd\x4d\x0e\x8d\x9e\x8b\x37\xd0\x55\xbc\xfd\xc7\xfb\xfa\xf2\x27\xec\x18\xf7\x5e\x7e\xf2\xd2\x25\x5b\xed\x80\xab\x9a\x7b\x8b\xab\xec\xc0\xaf\x37\xf5\x41\x6b\x19\x68\xc3\xec\x6b\x5d\x29\xf0\x75\x43\x74\x1b\x84\x6e\x32\x7d\xff\xea\xe3\xd7\xdb\xe7\xb2\xdd\x9f\x7f\x94\x7a\xa0\x1f\xeb\xb5\x3c\xb7\x37\xf3\x1b\x24\x25\xe6\xbc\x9e\x96\xbc\x06\x75\xfb\x24\x4a\x12\x6b\xec\x59\x3a\x22\x86\x3d\x13\x15\xa9\xb7\x03\x3d\x52\x93\x47\x6a\xf2\x48\x4d\xce\x4d\x4d\x46\xe3\x7a\x6a\xf2\x4b\x52\xfb\xe7\x14\x82\x92\xab\x2d\x94\xd2\x14\x35\xf8\x19\xc9\x4a\xad\xf1\xe5\x91\xb2\x3c\x52\x96\x47\xca\x72\x6e\xca\x32\x19\xd6\x53\x96\x97\xca\x7c\x71\x12\x61\x49\x6d\x20\x59\xba\x22\x87\x3e\x23\x59\xa9\xb3\xaf\x3d\x52\x95\x47\xaa\xd2\x13\x55\x29\x85\xd2\x99\xad\xae\xdc\x53\xcd\x36\xb9\x5c\x79\x45\x0a\x1a\x6a\xb8\xf7\x42\xf5\x16\xdf\x1e\xd1\x9b\x0d\xcb\x41\xdb\x49\xcc\xfb\x68\x60\x0e\x07\xea\x77\x55\xc8\x75\x17\xda\x17\xd0\xb5\xcb\x75\x17\xfb\x4e\xb5\xcd\xa7\x58\x9c\x59\x7d\x53\xdd\xff\x3c\xa8\xb4\x09\xa1\x5f\x28\x77\xd1\x7b\x31\x34\xba\xc0\xbe\x83\x5e\xc6\xe9\x4b\xed\xe1\xe1\xd5\x67\xab\x58\x14\x20\x4f\x45\x65\x26\x3f\x4c\x2c\xf4\xa2\x75\x21\x2d\xef\x10\x52\xd4\x9d\xa2\xa2\x6e\x4b\xae\xa6\x1b\xb5\x61\xe0\xdb\xc8\xf3\xe4\x9e\x68\x99\x38\x5f\xa8\xd2\x77\x93\x1e\x44\xea\x73\x12\xec\xe4\x5e\x99\xc3\xe1\xf0\x73\x63\x14\x78\x1d\xa5\xe9\x91\xc0\xf7\x44\xe2\x7b\x23\xf2\x7d\x91\xf9\x3e\xd9\xc5\xb1\x2c\xa0\x07\x72\x3f\xac\xbb\xb3\xf8\x26\xf9\xc0\xec\xdb\xe3\x03\x0b\xab\x91\x0f\xcc\x4f\x65\x03\x1e\x59\x71\x1d\xf2\x4e\xba\xb2\x81\x79\x8e\x0b\x54\x0a\x98\x92\x26\x7e\x00\xa7\xec\x4b\x62\xb3\x00\x67\xcb\x7b\x9d\x87\x09\xcc\xef\x9d\x07\x14\xd7\x7b\x20\x07\x48\x92\x7f\x6e\x5c\xca\xb3\x1d\x75\x67\x87\x11\x91\x47\xea\xfe\x0f\x42\xdd\xe7\x75\x37\x66\xdf\x24\x71\x9f\x7c\x7b\xc4\xdd\x34\xc7\x8d\xd4\x7d\x7a\x2a\x75\xbf\xa1\xdc\xd5\x57\x8c\xf1\xae\xc4\x7d\x9a\x27\xee\x15\x54\xee\x15\x63\xfc\xbc\x94\x7c\x7a\xef\x94\xfc\x12\x07\x6b\x82\x2e\x08\x76\x48\x70\x1e\x8a\x8b\x92\x9d\x79\xa4\xbd\x77\x41\x7b\x0f\xdc\xa2\x4e\x1b\x93\xe3\xe4\x49\x25\x98\x15\xd7\xb1\x47\xd7\x3e\x71\xd0\x86\x84\xa1\x82\x6b\xa3\x31\xa9\xb9\xc7\x5b\xbd\x86\x38\x1c\x68\x1f\xd8\x7a\xed\x11\xc4\x02\xc4\xb8\x4b\x02\x94\x14\x52\xbd\x47\xbe\x34\xad\xbb\x31\xf9\x26\xf9\xd2\xe8\x1b\xe4\x4b\x55\x25\x03\x32\x7c\x69\xdc\x0b\x5f\xf2\x04\x95\x05\xe2\x5c\x32\xbe\x97\x19\xd3\xb8\x95\x31\x65\x89\xf6\x79\x19\xd4\xf8\x6e\x19\xd4\x41\x43\x95\xfa\xd0\xe4\x69\xef\x21\xcc\xae\x8e\xd4\xd5\x2b\x2d\x32\x6e\x7e\x29\xd4\xa0\x4c\x59\x83\xcc\x7c\xae\x54\x47\x86\x43\x89\x7a\xbf\x40\x68\x5b\x14\xc7\x6b\xb1\x12\x16\x71\x8f\xe6\xdb\x5a\x3d\x43\xe2\x1e\x77\x31\x47\x6b\x46\x42\xc4\x7c\x71\x52\x89\xcd\x7c\x07\x89\x67\xd1\x92\xd8\x38\x0a\x09\xa2\xfc\xd7\xef\x42\x14\x60\x20\xca\x1e\x2b\x36\xeb\xb8\x33\x46\xf6\xa8\xdd\x7d\xad\xda\xdd\xb8\xb5\x46\xdc\x37\xc5\x45\xbf\x41\xbf\xb5\x39\x9d\x36\x72\x51\xab\x17\x2e\xea\xe0\xe0\x3a\x39\xe6\x8d\x2c\xd4\x6a\x65\xa1\x2f\x71\x70\x8d\x9e\xcb\xb1\xce\xc8\x3f\xad\x7b\x57\xf0\x92\x85\x9e\x49\xbb\x53\x4d\x11\x1f\x29\xef\xd7\x48\x79\x6b\xcb\xa2\x99\x67\xcb\x60\x29\x51\x90\x9e\x12\x59\x1e\x4c\x87\xf8\xf9\x6b\xf2\xb7\xfd\x85\x3f\x3e\xa5\xf2\x4c\x66\x35\xb5\xf5\x67\xae\xd4\x75\xf4\x3c\xd7\x40\xfe\xb8\x2c\x73\xbc\x5b\xe2\x00\x64\x5a\x90\xf0\x70\x50\x21\x4a\x75\x1a\x43\x87\x42\x4a\x95\x28\xaf\xde\xf7\x71\x0d\x6d\x49\x96\x01\x65\xc1\x84\xa8\x5e\x45\x0f\xd4\x28\x99\x4e\x03\xb5\x21\x45\xf5\xc6\x86\xc4\xa4\xb0\x95\xcd\x7c\x0e\x48\x5e\xeb\xe5\xc3\x57\xd1\x52\xe7\xa7\x7d\x3c\x0b\xba\x6c\x83\xfe\x13\x66\x25\xdb\x4e\xa0\x03\xa0\x52\xbc\xd2\x95\x3e\x1d\x5f\x75\x22\x83\xec\x90\xb0\xc8\x7c\x6f\x8f\xc8\x8e\x04\x32\x75\x91\xfa\x50\xfc\x21\xc1\x62\xe4\xe3\x5d\x5c\x2d\x42\x75\xbf\x44\x52\x0d\xaf\xed\xe9\xd6\xb1\xfc\x43\xee\x88\x56\x96\x1f\xbe\x82\xab\x99\x19\x3f\x9e\xce\x73\x9d\xce\xfb\xc7\xc3\x35\xdd\x11\xa1\x21\x7b\x0c\xaa\x93\x90\xcd\xd6\xc5\x21\x64\xe4\x3a\x88\xad\x38\xf1\x91\xc3\xa2\xa5\x47\x10\x0e\x11\x46\x5b\xbc\x26\x08\x30\xc5\x40\x57\xd4\xb7\x89\x40\xd0\xbd\xaa\x99\x12\x32\xb4\xf6\xd8\x12\x7b\x08\xbe\x3b\x48\xef\xd1\x8d\xe0\x6a\xd8\xe7\x90\xa2\x2b\xb4\x0b\xea\xaf\x11\x16\xa8\x1f\xa0\x6b\x42\xb6\xe2\x51\x1a\xa0\x25\xc1\x42\x17\x08\x9b\x71\xbc\x7f\xd6\x9e\xc2\xa4\x47\xc6\x0e\xf9\xbb\xf7\xcd\xd4\xdf\x59\x5f\xfe\x73\x38\xba\xba\x69\xcd\x4d\x3d\x39\x51\x34\x65\xf7\x67\xac\xeb\xfa\xd5\xaa\x9f\x12\x19\x3a\xe5\x88\xb6\x00\xb2\x8a\xa4\xcb\xd1\x3b\x48\x5c\x0a\x27\x4f\x09\x91\x16\x68\x74\x00\xbb\xce\xa7\xb3\x67\x5e\x7c\x9e\x5c\xa8\x0d\x6e\x6e\x1a\xa9\x2a\x0a\xe3\x97\xf8\xf7\xd1\x23\x7a\x05\xdf\xcd\x65\xfc\xfb\xe8\x11\x0b\x3a\xe6\x4b\xf5\xf3\xe8\xf1\x96\x1e\xce\xc1\xff\x79\xfc\xfb\x84\x35\xfb\xd7\xb9\x25\xfb\x95\xe3\x35\x48\x77\xe7\xc1\x15\x94\x69\xfc\x9d\x8e\xf1\x2e\xbd\x72\xf4\x8a\x0b\x39\x88\xaf\xd5\xcf\xa3\xc7\x2b\xd7\xa1\xb9\x4a\xaf\x1c\x8f\xdd\xa5\x94\xa6\x5f\xd2\x2b\x27\xe0\x63\x21\xa3\xe1\x65\x72\xe1\xa1\xe6\xcb\x7c\x53\x74\xdf\xac\x27\xfc\xca\x99\x51\x49\x9e\x9b\x09\x7f\xfa\x66\x9e\xf0\xff\x24\xaf\xdf\x3f\xdd\xaf\xf1\xd5\xfc\x94\xb9\x74\x34\x46\xc7\xea\x51\xf5\x27\xfa\xa2\x17\x35\xc3\xf7\x45\x3b\x6a\x86\xef\x91\x8e\xd4\x7c\xa1\x3f\x9a\x92\xfd\x00\x40\x2d\x16\xfa\x1f\x89\xcd\x3d\x11\x9b\xd1\xa8\x9e\xd8\xb8\xcc\xf3\xd8\xcd\xe1\xa4\x26\x7e\x2f\x4f\x68\x2e\xe0\x6a\xaf\x74\x46\x5c\x54\x2d\x42\xb5\x25\xb6\xaf\xd7\x81\x80\xe5\xd3\x3f\x58\x93\xe7\xcf\xe6\xe6\xbf\xa0\x2d\x76\x1c\xea\xaf\x9f\x8e\x86\x69\xbf\xd7\x53\xe9\x07\xf5\x77\x24\xe0\x12\x7d\xcf\x4c\x4b\x5a\x3e\xd5\x27\x5d\x69\xf9\x54\xcf\x34\xa6\xe5\x6b\xfd\xd2\x9b\x96\x8f\x3d\x92\x9b\xbb\x24\x37\xe3\x86\xf2\x02\x21\xfd\x72\x58\x75\x81\x58\xa5\x55\xef\xe5\xc9\x8d\xa4\x33\xe8\x8a\x7e\xa9\x96\x96\xee\x4e\xa8\x91\xdd\xdd\x33\x87\x29\xfe\x7d\x14\x72\x67\x06\x7a\x9b\x04\x03\x1f\x7d\x4c\x36\xc4\xa1\xb9\xfa\x73\x6f\x92\x0b\xc7\x2b\x8b\x05\x03\xea\x65\xfc\xfb\xec\x69\xb1\xe7\xb3\xfe\xa5\x78\xdc\x8f\xe5\x4f\x95\xcb\xbf\x67\x6f\x1e\xa1\x8e\x4f\xf6\x3f\x9f\xe2\xcd\x4b\x7a\x02\xb4\x34\x31\x97\x59\x90\xe9\x00\x5b\xec\x11\xce\x49\x6a\x2a\x84\x81\xde\xc5\x57\xd5\x41\x96\x5d\x51\x02\xba\x8d\xc3\x61\x65\x30\x0b\x00\xfa\x83\x4b\x36\x71\x0a\xeb\x06\x3b\x48\xfe\x1e\x68\xcf\x6c\x1b\xfa\xc9\xf8\x0e\xf2\x49\xc4\x03\xec\x85\x86\xf6\xb9\xd4\xe0\x39\xb1\xa5\xf7\x3b\x35\xd5\xc3\xea\x45\xd2\x0e\x41\x7b\x27\xaf\x20\x75\x69\xa0\xc9\x3f\xd0\x2a\x60\x1b\x15\xee\x7b\x81\x43\x97\xbe\x60\xc1\x16\xc5\x2d\xb0\x0c\xf4\x13\x18\xd6\x97\x2c\x08\xd8\x8d\xaa\x5b\x89\x3d\x4e\x02\x1f\xcb\x12\xe2\xb0\x4a\x69\x83\x87\xf9\xa1\xd0\x16\x00\xb8\xcb\xb5\xaa\x72\xe6\x99\xb5\x7e\xaf\x0a\x9c\x17\xd7\x1a\xfb\xaf\x6c\xe6\xff\xa6\xb0\x3c\x5f\x32\x1d\xca\x70\x06\x24\xdc\x32\x1f\x0a\x99\x97\x96\x70\x87\xa6\x7e\x89\xd2\x7d\x9e\xf5\xed\x5e\x8f\xab\x78\xde\xeb\x81\x67\xfe\x9b\x77\x6f\x9f\xdd\xbe\x39\xed\xc0\xa7\xab\x29\xb0\xdc\x17\x6c\xbb\x47\xb1\xcd\xb6\xd9\x1d\xd8\x16\xb4\x29\x55\x88\x84\x7b\x22\x9f\xe9\x42\x9c\xd1\x79\x80\xfd\x70\xc5\x82\x8a\x92\xa9\x64\x6e\xcf\x17\x73\x3c\xd4\x67\x8b\xf1\x52\x5f\x0c\xa7\x23\x7d\x86\x67\x2b\x7d\xb9\x1a\xda\x63\x3c\x1e\x4e\x56\xf3\x51\xc6\xa5\x66\xc6\x5d\xe5\x33\x9b\x93\x1c\x02\x8f\x6e\x97\x0c\x07\xce\x07\x72\x0b\xaa\xa9\xd6\x65\xf0\x0a\xac\x3d\x88\xc7\xf5\x8d\xc5\xc9\xc2\xfa\x43\x65\x87\xae\x56\xfa\x8e\x92\x1b\x12\xdc\x33\x2a\xff\xf3\xf8\xe3\xd5\x7f\x44\xe6\xdb\x53\x50\x39\xb3\x1a\x9d\xfa\x42\x2a\x8f\xdb\xd4\xe5\x0a\xc8\xd0\xd5\x0a\x7d\x84\xa7\x24\xcd\x7a\x9d\x79\xf4\x38\xa7\x77\x4b\xdd\xcc\x43\xde\x6e\x0d\x54\xcb\xe0\xfa\x6f\x6c\x09\x3b\x98\xf1\xcf\x89\x5f\x09\x3d\x4f\x61\xf0\x93\xef\xed\x55\x58\x5f\x11\xa1\x7b\x73\x48\x57\x6e\x83\x43\x3c\xc2\x2b\x9a\xe3\x97\x36\xe1\xa5\x7a\xf0\x5b\xdb\x83\x18\x00\xf7\xb7\x05\x29\x16\xe8\x3b\x12\x2c\x59\x58\x0a\xfe\x28\x6d\xc6\xf7\x0e\xe5\xdf\xda\x46\x10\xb1\xa6\x33\x6d\x42\x4d\xfc\xcd\x01\x21\x1a\x52\x3a\xe4\x74\x43\x42\x84\x91\x98\x39\xba\xa1\x9e\x27\x43\x86\x5c\xbc\x93\x26\x80\x68\xeb\x11\x48\x68\x08\x0d\xf4\x86\xfa\x2c\x40\xfc\x86\xe0\xeb\x10\x71\x86\x30\xfa\x8d\x2d\x51\xb8\x25\xb6\x90\xbb\x22\x8f\x0b\xf9\x4c\x32\x5b\x31\x5c\x4b\x7c\x45\x7b\x0c\x51\x16\xa5\x12\x8d\xb0\x11\x8b\xde\x60\x7f\x8f\x5e\xb8\xd8\x5f\x37\x68\xec\x5f\x27\x32\x01\x00\x5e\xc2\xa5\x9e\x91\xa9\x77\xb9\x21\xb3\x6f\x7d\xca\x0d\x21\x0f\xe8\x32\x92\x70\xc5\x81\xfe\x5b\xb4\x59\xb2\x7b\x16\x21\xf6\xcf\xd9\x5f\x5f\xbe\x7e\xbd\xaf\x89\x7b\x71\x71\xc0\x85\xe6\x83\x79\xb4\xd1\x06\x1a\xf5\x1d\x72\xdb\x12\x02\x93\x20\x3f\x2c\xaf\xb4\xea\x3a\x2d\x79\x2c\x30\xb2\xf0\x68\x8a\x48\x98\x63\x2d\x46\xd1\x94\x4d\x64\x9e\x7f\x8e\x83\x97\xe2\x21\x81\x0b\xe1\xd6\xa3\x1c\xb6\xaf\xc1\xe6\xa5\x4e\x01\xf3\x2a\x0f\x81\x47\xd6\xc4\x2f\xc4\xe1\xab\x63\x9e\x64\x94\x48\xab\xa4\x23\xbf\xda\xd6\x5f\xb5\x32\xc2\xb3\x90\x60\x10\xe7\x13\xc0\xb5\xb7\xaa\x9f\xaa\x86\x54\xe7\x62\xba\x8a\xad\xa7\x49\x0f\x63\x68\xbf\x2d\xb7\xe4\x73\xd2\x49\x55\x06\x8a\xbe\xcc\xef\x98\x9a\xdf\xe7\x7c\x28\xa9\xba\xd4\xf2\x05\xc0\x30\xf1\x85\x61\x76\x10\xb2\xd9\xf2\x4c\x6e\x45\x73\xea\x43\x5e\xd3\x29\xe6\x55\x80\xae\xa9\x87\x37\x98\xdb\x6e\x61\x2e\x15\x00\xa9\xb9\x98\xcd\x10\xd1\xe4\x58\xba\x4c\xd1\x18\x0d\x3e\x25\xeb\x2f\xce\xb7\x21\x45\xa2\x56\x3b\x53\xf0\x48\x2b\x5b\x15\xc0\xd4\x56\xc4\xaa\x69\x6c\x0f\xba\x58\x37\xa6\x5a\xa4\x5f\x54\x0f\x57\x51\xd2\x2a\xdb\x62\xf5\xd5\x32\x55\xb5\x06\xf9\xb4\xac\x2e\xef\xb4\xf6\xb5\x3d\xb9\x0d\xdd\x81\xa6\xe9\x67\x08\xec\xf5\x60\x64\x51\xe1\xc1\x2f\x33\xe4\x02\x3d\xc7\x41\xc6\x27\xb0\x62\x01\xba\x71\x89\x8c\x2d\xce\x92\x15\x24\xe3\x72\x65\x6f\x3a\xe2\xf3\x20\xe7\x4a\x88\xe3\x8e\xf1\x9a\x18\xe8\x35\xa4\x49\x62\x04\x6c\x2e\x40\xb2\x79\x8a\xcc\xaf\x0c\xc8\xef\x11\x0d\x08\xb4\xbf\x83\xb2\x67\x32\xb5\x5d\x48\x20\x21\x21\xf2\xa3\x98\x8b\x57\x97\xc4\x93\xe6\x2c\xc0\x26\x90\x3f\xaa\xd9\xe2\x03\x64\xff\x21\xf3\x13\xb5\x38\x26\xdc\xe2\x62\x1b\xc1\x7e\xf0\xb2\x40\x15\xdb\x3e\x9f\x58\x70\xcf\x02\xc1\xef\x4f\xc2\x0f\x3f\xfe\xc7\xe5\xab\xbe\x03\x61\x1f\xd3\x2d\xbb\x6c\xfe\x99\x02\x5f\x4b\x38\x9c\x89\x80\xed\xd4\x17\xfe\xa0\x28\x04\x97\xd0\xb5\xcb\x9f\x4e\x86\xdb\xdb\x7f\x41\x37\xd4\xe1\xee\x53\x6b\x28\x7e\xd4\x7b\x10\x15\x0d\x69\x91\x00\x8f\x22\x24\x77\x91\x2c\x70\x9a\x0b\xf5\x43\x15\xd3\x01\xd1\x1b\x6d\x03\x26\x28\x01\xb8\x06\xbc\x3d\x0a\x5d\x76\x23\x59\x05\x85\x6c\x7d\x99\x80\x22\xf0\x06\xbd\x16\xba\xab\xed\x45\x0e\x28\xc3\x9c\x31\x8f\xd3\x2d\x62\x51\xc2\xa5\x96\xec\x76\x80\x70\x18\x46\x42\x5d\x86\x1c\x1a\xfa\x85\xc4\x37\xc5\x69\xc0\xd4\x27\x01\x22\x1e\xac\x6d\x00\x5c\x88\x86\xc8\x21\xa1\xac\x00\x23\x0f\x0e\x80\x46\xb5\x7a\x7d\x71\x75\x65\x9c\x14\xf6\xda\x73\xe7\x9c\x2e\xe9\xaa\xe7\x63\x58\x4d\x40\x78\x8c\xa0\x38\x13\x95\x34\x17\xf5\x64\x12\x70\x14\x30\xe5\x90\x50\xd1\x12\xa9\x84\xcc\xf4\x64\x98\x6f\x85\x5c\xfe\x42\xb9\xfb\x22\x81\xcd\xd7\x4a\x39\x5f\xaf\x10\x46\x60\x9c\x10\x94\x72\x47\x25\xf1\x53\xe3\xd9\xcc\x21\xc5\x2c\xb5\x8c\xd2\x98\xac\x0c\x88\xac\x10\xa5\x06\x88\x72\x69\x41\x5c\x42\x7b\xea\x84\xee\x49\x0a\x19\x48\xd7\xac\x43\xfd\x75\xd3\x27\x02\x62\x67\x33\x21\x32\x04\xd5\xf3\xd8\x8d\x78\x59\x68\x1b\x76\x14\x72\xb6\x91\x5e\x6b\xfa\x45\x76\x59\xfc\x87\xa3\xa5\xdd\x90\xf0\x91\xac\xde\x39\x59\x1d\x4d\xeb\xc9\xea\xca\x23\xb7\x74\x49\x3d\xca\xf7\xa7\x08\xa0\x10\xaf\xa6\x9b\xe7\xa4\xa8\x66\x86\xa2\x4e\xbf\x42\x01\xb4\x15\x7a\xd6\x39\xa1\x27\x79\x90\x02\xdf\xe8\xeb\x83\xde\x1d\x31\xa1\x97\x45\xc1\x3d\x2b\x62\x3b\x74\x43\xfc\x90\x32\x3f\x2c\x09\xda\x75\xd4\xfe\x91\x92\xf5\x4a\xc9\x26\x0d\xa1\xfd\x1e\xdd\x11\x14\x6d\x1d\xcc\x0f\x0a\xb9\x2d\x9d\xc6\x74\x88\xbb\x91\x0e\xcf\x4f\xcb\xde\xc3\xc9\xf1\xd7\xdf\xd0\xa9\xf4\xe9\x46\xa0\x90\xd4\x5c\x41\x85\xb6\xa5\x97\xf5\x1f\x4f\xec\xea\xb0\xbb\x8f\x32\xd7\x9d\x53\xaa\x59\x43\x6b\xb0\xd4\xd0\x73\x92\xc8\xa5\x8a\x98\x7c\x1b\x44\x2a\xda\xf4\x40\x9d\xee\x3f\xaa\xbe\x0a\x21\x7a\x72\x2c\x04\x6c\xeb\xb0\x9b\xfb\x8e\xb7\xfd\xc1\xbd\xfc\xed\x62\xbe\x7f\x5f\xed\x50\x60\x32\x9c\x7a\x50\xfa\xa3\x6b\xf8\x62\xbc\xc8\x52\x6d\x9e\xcd\xd6\x23\xe8\x65\x72\xbb\xf2\xd8\x6c\xd9\x0d\x09\xf4\x90\x88\x63\x9d\x62\x9e\x9c\x81\x40\x76\x79\x87\x38\xf0\x27\x0e\x6c\xf7\x15\x25\x5e\xfa\xeb\x7b\x1f\x2f\x3d\xb8\xcb\x7c\x19\xb3\x93\x22\x6c\x3c\x08\x38\xa7\xa1\xca\xae\x1a\xeb\x27\xb5\xbe\xcf\x03\xcd\xc7\x1b\xa2\xfc\xdd\x6b\xae\x15\xdf\x1c\x68\x1e\xf1\xd7\xdc\x15\x8f\x9a\x89\xef\x1d\x9e\x56\xa5\xb1\x25\x39\x1c\x0e\x3e\xc5\x1e\xf0\x4d\x94\x0e\x53\xfa\x5e\xd1\x05\xde\x14\x19\x61\xc6\x9e\x73\x39\xc7\x0e\x91\xe8\xa3\x76\xe2\x7f\x7a\xc4\xd7\x3b\xb1\x5f\xe8\x0a\x56\x86\xec\x28\x08\x88\xcf\xbd\x3d\x5a\x45\xde\x8a\x7a\x5e\x88\xb0\xe7\x09\x41\x1b\x72\x21\x7e\xfd\x2e\x44\x31\x76\x20\x9f\x10\x27\x2c\x58\xc3\x4f\x0e\xee\x52\x83\x0b\x6d\x8c\x94\x6a\x89\xc4\x98\x87\xde\x13\x75\xff\xb8\x60\x2e\x9b\x79\xd1\xc6\x0f\x0f\xf6\xe3\xca\xf7\x84\x2c\x31\xaa\x0c\x63\xb9\x3f\xd4\xb7\xee\x1a\xf7\xad\x03\x90\x1f\x95\xa2\x2c\xba\x1e\x00\xab\x25\x68\xe2\x6e\x63\x23\x63\xf4\x0b\x55\xcd\xa9\x1b\xbc\x0f\x91\x39\x1c\xfe\x93\x60\xcf\xc4\x40\x1f\x18\x08\x44\x01\xf3\xe0\x38\x00\xcf\x16\x67\x03\x27\x67\x66\x80\xb0\xf3\x5b\x14\xf2\x0a\x45\x96\xf2\x30\xa3\xc8\xa2\x9f\x7c\x82\x6e\xf0\x1e\x02\x2a\x6d\x97\x92\x1d\x41\xdc\xa5\x21\xa2\x21\x8a\x84\xd0\x81\x14\x0e\xf7\x77\xe0\x00\x05\x6b\x4f\x1c\x88\xf8\x57\xea\x99\x7f\x98\x53\xb7\xc1\xfe\xfe\xa7\xe6\x93\x37\x6a\x38\x79\xd9\xd7\x7b\x3d\x7d\xa3\xa3\x4f\x9f\x79\xc0\xe9\x33\x1f\xd4\xe9\xfb\xc5\x25\x90\xd3\xc6\x02\xe4\x33\x75\x82\x62\xec\x74\xa1\x40\x9c\xdc\x4f\xc1\x86\xc4\x31\xb1\x99\xbf\xa2\xeb\x28\x10\xbb\x6b\xa0\x0f\xfb\x2d\xb5\xc1\xdf\x0b\x2f\x4a\x89\x0b\xa2\x90\x98\xf4\x00\x27\xaf\x33\xdf\x26\x99\x23\x0b\x63\x6f\x58\x20\xce\x1f\xf6\x91\x39\x44\x0a\xb3\xee\xb8\x4e\x5c\x3c\x9f\xfe\x64\xd9\x15\xf3\x79\x9c\xe3\x7c\xbf\xe2\xec\xea\xcb\xd6\xfa\xf9\xf2\xe6\x3f\x4e\xc9\xb9\xc9\xae\xa6\x2d\x69\xf4\x70\xeb\x87\x7a\xcb\x35\xab\x73\xcb\x62\x7a\x99\x4d\x4c\x96\xfd\xde\xca\x2a\xbf\x1a\x6a\x5b\xf4\x71\x5d\xb1\x0d\x41\xdb\x80\x85\x44\xe0\xe4\x4a\xe6\xa9\x09\x64\x85\xe0\xb7\xb8\xf0\xe1\x5b\xc6\x91\x4f\x6c\x12\x86\x38\xa0\xde\x1e\x14\x6a\x19\x6b\x17\x10\xec\x08\x5d\xbb\xf9\x8c\x9e\x0a\x00\xab\x1e\x00\x82\x42\x8f\xb5\x62\xc6\xf7\xb7\x09\x86\x51\x33\x18\x26\x5a\x21\x2b\xff\x61\x42\xe1\x0e\xc9\x57\xe6\x78\xf6\x4d\xc1\x38\xb6\xaf\xef\x3b\xe3\xdd\x5d\xee\x26\xcf\x3e\x0c\xab\x13\x60\x4f\x2b\x75\x49\x7d\x8f\xfa\x80\x3a\x80\x22\x8f\x05\x2e\x9b\xd0\xa0\x53\xac\x9f\x8e\xb7\x5b\x8f\xe8\xe1\x3e\x84\xc2\xbe\x5d\x8d\x7f\xf0\x99\xfc\xab\x79\x61\xb9\x75\xdc\x9c\x3d\xb0\x94\x32\xcf\xf7\x5b\xb2\xc2\x76\x26\x67\x5e\x7c\xf1\x15\xde\x50\xaf\x7a\xde\x07\xa5\xb2\x3f\x1a\x8f\x0f\x40\x9e\x59\x3d\xf2\x3c\xf7\xa8\x7f\xfd\x06\xdb\x57\xb0\x0b\xaf\x98\x5c\xf2\x01\x18\xb4\x14\x03\xe8\x1b\x6c\xd7\x60\x51\xb7\x0f\x9c\x88\x4a\x95\x1f\x79\xc4\xa7\x73\xe1\x93\xd9\x40\x8d\xae\xc8\x9a\x11\xf4\xf3\xeb\x03\xd1\x28\x14\xaf\xe9\x11\x2d\x19\x69\x1b\x86\x3b\x11\x69\x32\x43\x3f\xa2\xca\xd9\x50\xa5\x81\xf6\xbc\x67\x4b\xc6\xd9\x81\x88\x12\xa8\x97\xf2\x68\x52\x3f\xd4\x89\x48\x92\x0c\xfc\x88\x22\x67\x13\x6d\x1a\xa8\xc9\x4f\xb7\xfb\x35\xf1\xd1\x15\xae\x2e\x60\xd0\x80\x27\x0c\xde\xd4\x43\x5c\xae\x54\xd1\x32\xe8\x89\x18\x23\x47\xd7\xd5\xe8\x8f\x68\x73\x36\xb4\x69\xa0\x2c\x3f\x2f\x23\x9f\x47\x07\x62\x4c\xa4\x5e\xca\x23\x4b\xfd\x50\x27\xe2\x49\x32\xf0\x23\x8a\x9c\x0b\x45\x46\x0d\x94\xe5\x05\xf6\x39\x0e\x88\x57\xd7\x15\xb0\x0e\x4b\xec\xf4\xbd\x42\x55\xa7\xa6\x01\x4f\xc4\x95\xec\xd8\x8f\xe8\x72\x36\x74\x69\xa0\x28\x17\xc4\xdb\x11\x4e\x6d\x8c\xde\x12\x99\xc3\x7d\x00\xce\xb8\xf1\xcb\xba\x4f\xa2\x52\x81\x8f\xf6\xa1\x4f\xc4\x9e\xd2\x07\x1e\x51\xe8\x5c\x28\x34\x6e\xca\xc9\xc4\x7e\xa8\x87\x24\xa0\xab\x43\x75\xa3\xcc\x8b\x79\xd4\x69\x1e\xf2\x44\xb4\xc9\x0d\xfe\x88\x32\x67\x43\x99\x06\xaa\xb3\x61\x3e\x0b\xb7\x62\x93\x0e\xc3\x98\xcc\x7b\x79\x84\x69\x1c\xf0\x44\x7c\xc9\x8e\x7d\x3a\xba\xdc\x5d\x78\x5d\x61\x57\xfa\xb1\xe5\xaf\x23\xce\x49\xa0\x6f\x88\x1f\xdd\x77\x05\xc0\x2f\x1f\x56\x3f\x0f\xdd\xcb\x6a\x5b\x3e\x34\x83\x1b\x14\xfe\x39\x2c\xbe\x4e\x2d\xd5\xc7\xbb\x22\xb6\xfd\x00\x77\xd0\x1b\x01\x84\x7b\x8b\xb2\x18\x57\x05\x98\xb6\xbc\x2d\x97\xd4\x18\xac\x8d\x43\x9a\x49\xec\xcb\x75\x7d\x85\xe5\x36\x16\xbb\xd9\xd6\xbe\xa8\x17\xcb\xbb\xbc\xf3\xb0\x4d\x6a\x7b\xc8\xab\xf1\xa2\xea\x12\x45\x72\x40\x1a\x36\x34\xd5\xd5\x2a\x9b\xf5\x35\xb6\xe6\x6b\xeb\x3a\x09\x33\x46\x3f\xf9\x89\x7f\xb0\xb1\xc5\xfd\x21\x5f\xce\x7d\xe0\xc3\x0d\x6b\xfa\x40\x1e\x62\x27\x6e\xc2\x2b\x82\x79\x14\x3c\xac\x6d\xc8\x4f\xed\x9c\xf0\x8e\x3f\x71\x10\xc4\x9b\xae\x56\x3b\x8e\x2b\x5d\xc9\xcd\xe7\xfb\x88\xa3\xdd\xde\x6b\xba\xcb\x00\x3b\xbc\x8e\x6a\xbb\x4c\xb7\x2f\xef\xe4\x40\xa3\x0a\xe2\xab\x07\xd4\x76\x53\xf1\xa9\x64\xf5\x52\xc4\xf8\x2d\xde\xd1\xb5\x2c\x7a\x04\x41\x70\xef\xa9\xed\xa2\x17\x99\xb7\x1e\xe9\xf4\xd7\x43\xa7\xcb\xcf\xb5\xa3\xaf\xf8\x56\xb6\x05\x6c\x87\xe0\xc3\x4c\xc8\x61\x1a\x87\x98\x0f\x2f\x9c\x0f\x34\x16\x14\xc2\xfb\xe2\x18\x76\x49\x9a\xb2\x11\x82\x41\x80\xf7\x02\x7b\xc5\x9d\x81\x26\xe8\xca\x40\xfb\xe0\x06\xa4\xf8\x5c\xe7\x48\xc2\xc3\xc2\xd7\xcb\x00\x93\xd1\x84\x63\xf8\x44\x9b\xe4\x3a\x2e\xc5\x11\xb6\xd1\xc0\xf6\x3b\x8f\x2c\xf8\x91\x05\x3f\xb2\xe0\x87\xc9\x82\x8f\x8d\xf0\x7d\xed\x23\x16\x38\x24\x40\x9c\x25\x8d\x99\x91\xe4\x58\xc8\x4f\xb9\x70\xc8\x03\x82\x37\xb2\xd5\x1b\xf6\x1d\x44\x70\x08\x71\xf2\xe9\x23\x03\x24\x58\x7b\x6a\xb8\x08\x51\xe8\xb2\xc8\x73\xc0\xb4\x21\x14\x41\xe2\xc8\xd2\x84\x5b\x16\x86\x14\xe2\x83\x7f\x11\x3f\x7d\xc6\x93\x4b\xaa\x83\x74\xfa\xe2\x35\xd9\x72\xe4\x13\xa1\x3f\xba\x04\x71\xb6\x3d\x35\xf4\x3e\x23\x89\x6c\xb0\xbf\x07\x1e\x53\x12\x42\x2e\xf6\x5b\xc6\x5d\x30\x46\x7a\xa8\x46\x22\x81\xfa\xc6\xaf\xe5\xdb\x8f\xc2\xc8\x43\x11\x46\xb4\x42\x69\xdb\x02\x1b\x47\x59\x26\x3e\xd0\x5e\xb1\x28\x10\xff\x08\xb6\x34\xd0\xae\xe8\xad\xf8\x2f\xd9\x11\x5f\xcb\xf1\xe8\x76\x06\x7d\x2a\x8b\xd2\xb2\x99\x6a\x85\xca\xab\x4d\xc7\xbf\x5c\xdf\xf4\x6b\xe1\x69\x5f\xdd\x46\xc5\xbc\x4d\xcb\xe6\x54\x1d\xb0\x55\xe5\xac\xaa\x33\x6c\xd5\x4f\xdc\xad\xee\x7e\x77\xf4\x3e\x9d\x08\xbc\x36\x11\xf0\x83\x4b\x10\xf3\x89\xac\x2e\xeb\x50\xc7\xff\xf5\x3b\x8e\x56\x94\x23\xea\xdf\x99\xcc\xf6\xc1\xa5\xfe\xfa\x1f\x1c\xbb\x01\x06\xf9\x8c\xa5\x03\x70\xbb\x9c\xb3\x54\xb5\x4d\x4d\x57\x1f\x05\xbd\xb3\x0b\x7a\x1f\x5c\x12\x90\x4c\x5f\x09\xb2\x23\x81\x10\xb1\xc4\xf1\x53\xf2\x9e\xc0\x66\x44\x65\xf1\x68\xd9\x86\xed\xe7\xd7\x03\x70\x40\x51\x8e\x5c\xe2\x6d\x21\x73\x8b\x6e\xf0\x9a\xfa\x04\xca\x76\xf2\x48\x89\x44\x30\x38\x87\xff\xe2\x80\x20\x21\x5b\x65\xc5\x47\x10\xb3\xe2\xa1\xe5\xd7\x7a\x94\xe4\xa8\xcd\xfc\xe3\x25\xb9\xd7\x36\xf3\x1f\x25\xb9\x87\x26\xc9\xf5\x40\xd7\x94\x73\xf0\x16\xf0\x03\xba\x9d\xa9\xfc\x22\x89\x61\x19\x0b\x0a\x3a\x9f\x29\xa2\x91\x03\x96\x66\xe8\xd2\x90\xb3\x60\xdf\x30\xc7\x47\x6b\x46\x05\xd8\x6e\x92\x1e\xc3\x65\xb0\x9d\xdb\xee\x51\x9a\xcc\x86\x38\x14\xeb\x5b\x1c\x85\xa4\x71\x42\x8f\x56\x92\xaf\x87\x79\xbe\x96\x9c\x6b\x15\x89\x9d\x1b\x64\x6d\x24\xc0\x33\x37\x58\xf5\x69\x12\x38\x70\x72\x79\x80\x0c\x67\x5b\x7b\x6c\x89\x4b\x41\x7c\x3f\xc0\xd5\x32\x3f\x7b\x30\xfc\x4b\xad\x2d\x17\x5e\x50\x0b\xe1\x46\x40\xdd\xcf\x76\x97\x48\x65\x9c\x21\x4a\x7d\x3b\x16\x73\x3a\x4b\x52\x42\x86\xa2\x1c\x6d\xf0\x35\x09\x51\x48\x7c\x99\x5e\x4a\x6e\xb7\x01\x09\x65\x75\x45\x78\x5a\x66\xd3\x43\x69\x2b\xce\xfc\xd4\x8e\x66\xa0\x0f\xaa\x06\xc5\x8d\x1b\xf7\xe1\xa8\x78\x0c\x79\x8c\x5d\x87\xc8\xa3\xd7\xc4\xa8\x60\x02\x95\x2b\x9a\x0d\xb4\x90\x07\xcc\x5f\x17\xd7\xf9\x96\x71\xf2\x34\x33\x0a\x92\xcd\xa9\x55\x22\x7f\x6e\x8d\x21\x0a\x88\xef\x90\x40\xd5\x52\x87\x72\xee\x5b\xbc\x26\xc8\xc3\x7b\x16\xf1\xb8\xfa\xfa\x8a\xde\x12\x07\x6d\x59\x48\x21\x38\x09\x4a\xc5\x2b\xb4\x83\x52\x00\xbe\x84\x16\x0d\x11\xb9\xc5\x50\xf1\x48\x88\x91\x00\x5e\x10\x39\xa9\xd8\x24\xf8\x3a\xb6\x21\x40\x4a\x16\xfa\x10\x9f\x84\xaf\x6c\xb7\xde\x1e\x4a\x12\xe7\xbe\x53\xce\xc6\xbd\xc3\xec\xdb\x0c\xf6\xf7\x17\xb1\xe3\x12\xec\xdc\x7b\xbb\xce\x37\xc3\xdb\xe7\x6b\x7c\x73\x71\x4a\xe9\x00\xb5\x90\x6a\xca\x76\xa1\x6e\x36\x93\x33\x1f\x57\x93\x25\x1f\xef\x64\xb7\x1b\x7d\x1b\xd0\x0d\x06\x71\xea\x30\xc2\x26\x47\xd0\x97\x01\x2e\xf6\xce\xca\xf1\xb4\xda\xee\x47\x6a\xeb\x39\x5b\xcb\x42\x75\x70\x13\x07\x14\x2b\x11\xab\x49\xfe\x86\xc7\x27\x80\xa4\x9c\x62\x2f\x7c\xe2\xe2\xcd\x32\x0a\xd6\x69\x9c\xd6\xe7\x56\x06\xd9\x3e\x43\xb5\x42\xa1\x34\x41\x97\x77\xb6\x66\x1d\xa7\x23\x91\x15\x5e\xe8\x32\x95\x83\x45\x11\x35\xb3\x52\xd7\xb2\xdc\xba\xaa\xbb\xd6\x67\x16\x95\x79\xf7\x8a\xd8\xcc\x77\x14\x1a\xd4\xc0\xe9\x90\xf1\x2e\xa9\x7f\x5d\x29\x12\x1f\x31\xd6\x05\x09\x6a\x0a\x14\x9c\x5a\x40\x40\x4c\xe1\x54\x0a\x26\xcf\x68\x7f\xc4\x4b\x66\xd5\xeb\xf0\x26\x55\x1e\xfa\xfb\xed\x99\xbf\x7f\x63\xde\x58\xb8\xba\x47\x50\x47\x42\x56\xb1\xa8\x02\x51\x7b\x0d\x4f\xa0\x97\xd9\x27\x7a\x68\x88\x99\xf4\xd3\x3e\x98\xbc\x55\x95\x6a\xad\x5c\xc5\xa1\x74\xaf\xa8\x40\x42\x45\x8d\xcb\xf8\xe2\xa1\x34\x6a\x8b\x69\xb3\x79\xa3\xbe\xef\x38\xc9\xf5\x14\xff\x40\x82\x0d\x2a\x34\x4b\x68\x19\x2d\xfb\xe6\xc7\xb8\x4f\x5e\xbb\x66\x72\x87\x8b\x7a\x1f\xf9\x42\xbe\xf9\xf7\x83\xd7\xf4\x9f\xd5\x0a\xfd\xbd\x2e\xe6\x12\x87\x1c\xfd\xbc\x75\x30\x97\x05\x08\xbb\x2f\x28\x8e\x00\x87\x2e\x75\x3a\x0f\x63\x7b\xbb\xcf\x6e\x32\x62\xfe\xe7\xa2\x22\xfe\x10\x95\xcc\x67\x71\xf1\x39\x4e\xd7\x2e\xf7\xf6\xc8\xa1\xe1\xd6\xc3\x7b\x74\x4d\xf6\x4f\x80\xd2\x21\xea\xcb\x85\x4a\x19\x3a\x29\xaf\x15\x12\xe2\x23\xcc\x63\x27\x39\x62\x2b\x90\xc1\x4f\xd6\x44\xcb\x54\x41\x57\x69\x05\x1d\x88\x1c\xfa\x98\x3c\xda\x27\xb5\x83\x3f\x22\xdb\x26\xe1\xe1\x0a\xeb\xdd\x11\x3e\x39\xc1\x47\xda\xf7\x48\x2e\x32\xbf\x8f\xc2\xf5\xd4\xb6\xf9\x40\x71\xfd\x17\x39\xc1\x47\x5c\x7f\xc4\xf5\x53\x71\xdd\xc1\xfe\xba\xca\xa5\xf5\x50\x50\xfd\x25\xcc\xef\x11\xd3\x1f\x31\xfd\x54\x4c\x17\x82\xdc\xc3\xc5\xf3\xd7\xfe\x8a\x3d\x62\xf9\x23\x96\x9f\xd1\x9f\x06\xda\x42\x06\x6d\x65\xd8\x08\xd4\xd2\xe4\x0c\x09\x68\xa3\x1b\xe2\x79\x32\x44\x83\x6c\x18\xa7\x3b\x22\xbb\x0c\xa6\x0d\xd1\xef\xba\x1c\x70\xf9\xb0\xf5\x67\x1b\xcb\x75\xc0\xb9\x57\xa3\xd8\xe4\x2f\xab\x17\x6b\xf6\x57\x72\x8a\x51\x2c\xbb\x9a\x82\xa2\xf8\xe3\xd5\x4f\x6f\xd1\x47\x75\xab\x07\xc5\xb0\x17\x2a\xda\x57\x63\x78\xf1\xeb\x4a\xda\xe4\x7a\x6e\x07\xdf\xae\xac\x67\xa6\xa7\xaf\xa2\x72\xe9\x97\x0c\xe0\xa1\x5c\xed\xab\xc8\xf3\xd0\x4b\x66\xcb\xba\x05\xdf\xe4\x56\x40\x4d\xe8\x87\xdf\x99\x3f\xb3\x9a\xfe\x08\x0a\x90\x2a\x68\xbe\x7d\xcf\xf4\xe4\xb7\x0f\x3f\xdd\xac\x57\x3f\x4f\x4f\xa1\x27\xe9\x62\xb2\x1d\xdf\xf3\x35\x18\x1b\x9a\xc9\x1f\x54\x84\xdc\xac\x6a\xc0\x99\x69\x08\x85\xc6\x35\x1d\xa1\x32\xf8\x99\x05\xbe\x9f\xed\x03\x35\xd0\x6e\x05\x9c\xb5\x81\xb6\x57\xff\xc2\x53\xd0\x3c\x36\xc5\x5d\xf1\xfa\x0b\x71\x5d\x75\x94\x1c\x68\x7b\x82\x03\x6d\xa0\xc1\x56\xc8\x48\xb2\xc4\xb7\x59\x81\xdb\x87\x8a\xa9\x0f\x71\xe9\x6f\xa8\xe7\xd4\x2c\x5d\x0a\xcf\xad\xeb\x3e\x85\x98\x66\x10\x6e\x45\x3d\x4f\x87\xf5\x17\x51\xee\x95\x17\x51\x07\xa9\x5b\xfd\x63\x9d\x35\x79\x08\x78\x16\xeb\xe4\xe7\x45\xb3\x3b\x5c\x6b\x03\x62\x25\xb6\xb6\x93\x70\xab\xef\xa8\xa3\x67\x08\x84\x65\x58\x94\x0c\x3b\x92\xad\x59\xf3\x0d\x6f\x0a\xbd\x6c\x64\xd0\x90\x6f\x7b\x91\x53\xdb\xc3\x15\xdf\x92\x70\x80\x6e\x5c\x6a\xbb\x20\x7e\xdb\xd8\xb3\x23\x41\xb8\x1d\xb4\xc4\x21\x71\x10\xf3\x51\x40\xb0\x87\x5e\xfe\xf4\x46\xc8\xe6\x61\x14\xc8\x29\xab\xe1\x03\xf2\x7b\x44\x03\x68\x55\xce\x6f\x98\xbe\xc5\x61\x1c\x0d\xf4\x14\xad\x68\xa0\x5a\xee\x88\xaf\xc0\xf0\x5b\x0f\xdb\x2a\x4c\x48\xdc\xa0\x81\x1c\xdc\x61\x1b\x4c\xfd\x10\xfd\x91\x66\x52\x11\x6d\xbc\x85\x20\x49\xb9\x3c\xec\x3b\x48\x22\x0a\x4c\x9d\xda\xd7\x08\x54\xd6\xf0\x4f\x03\x14\x82\x7b\x3f\xff\x25\xd9\xf0\x47\xf6\x3c\xdf\xe0\x6b\x82\xc4\xcc\xd1\x92\xc9\x0f\xa3\x5b\x18\x70\x9f\x3e\xaf\x22\x97\xc4\x3d\xf5\x19\xf1\x80\xfc\xf6\x92\x45\xbe\x53\xd1\xf6\xf6\x2c\xb4\xc6\xa3\x3b\xa2\x27\x0d\x03\x33\xa4\xe6\x52\xa8\x3f\x8e\x3a\xa5\x67\x21\x34\x7d\x9d\x3d\x4e\x37\x24\x24\x01\x25\x61\xfe\x20\x0e\xb4\xdb\x57\xa0\xb9\x56\x1c\xc9\x4b\x88\x89\xfe\x3c\xd0\x84\x52\x2b\x0e\xa4\x5c\x42\x8e\xcf\x25\x8d\x80\xc4\x76\x87\xf1\x50\x95\xa2\xdd\x59\xb6\x46\xe0\x88\xbe\xc6\xdb\x92\xe7\x4b\xd0\x4e\x89\xd4\xf2\xee\x03\xdf\x9f\x46\xda\xf8\x03\xde\xf6\x22\x72\xdc\xa1\xf0\x9c\x2e\xbd\x47\xd9\x99\xad\x75\x99\xf1\x7c\xcf\xb2\xf3\x90\x3f\xe1\x2f\x28\x3e\x4d\x76\x4e\x17\x53\x24\x2a\x6c\x8d\xae\xd4\x9d\xfb\x57\xff\x5c\x82\x3b\x07\xdb\xd5\x5a\xe1\x96\x11\xe7\x2c\x63\x87\x33\x93\xaf\x7d\xb2\x16\x83\x4f\xea\x3e\x52\x6d\xc3\xe8\x2a\xb6\xa1\x91\xdf\xd3\x06\x62\xcc\x21\x26\x20\x70\xc8\x1d\x16\xf1\x24\x88\x3f\x15\x3d\xe3\xd2\x1d\xea\x0b\xcc\xb7\x3d\x6a\x5f\x6b\xdd\xeb\x81\xc4\xdf\x48\x86\xce\x7f\x2a\x5d\x61\x72\xbd\xde\x4e\xd8\xf7\x92\x49\x10\xe4\x96\x9c\x38\x65\xce\xb1\xe8\xcc\xc7\x72\x8b\x96\xd7\xfb\xb1\xdc\x46\x9e\xa7\x07\x82\x90\x36\xda\x6f\x8b\x60\xcc\xe2\xa9\x84\xa0\x10\x10\x5d\xca\xb3\xf9\xab\x17\x0a\x67\x3b\x6f\x4e\xa7\x51\x3f\x60\x5a\x69\x78\x3f\x72\xd4\xf2\x6e\xa9\xc0\xd4\xc1\x27\x8d\x86\xef\x3c\xbc\xa7\xfe\xda\xd4\x06\xc9\xd6\x95\x36\xa4\x94\x98\x52\x4c\x7a\xc9\xa2\xd6\x38\x3f\xac\xc0\x2a\x95\x12\xe3\xe1\xbd\x36\xa8\xca\x8f\x01\xba\x64\xc7\x3c\x49\x20\x1d\x27\xb7\x55\xdd\x31\xb2\x73\x38\x43\x1a\x4c\xbd\x3d\x4a\xfc\xbb\x12\x88\xb4\xf4\x08\x69\x22\x53\xdb\xa0\x3a\xe1\xce\xf6\xa8\x7e\x43\x7d\x87\xdd\x68\x69\xf4\xbd\xcd\x32\xe9\x79\x19\x13\xff\x61\x74\x49\x09\x46\x10\x36\xff\x53\xc4\xb7\x11\xcf\xf4\x4d\x84\xab\xdf\x07\x01\x0b\x32\x27\xaf\x22\xb1\xf7\x41\x19\xc4\x52\x96\xd5\x1f\x4f\xdf\x10\x1e\x50\xfb\xbe\x23\x4e\xff\xe3\xaf\xaf\xff\xf3\xc5\xf7\x2f\xbd\x53\x18\x7a\xbc\x92\x02\x37\x7f\x13\x5f\x3e\x8e\x95\xcb\x51\xf5\x75\xc0\xa2\xed\xc1\x9c\x5c\xbe\xdc\x70\x2c\x6a\x9a\xb7\x15\x1d\x8f\x6d\x3e\xc7\xea\xe4\xc5\x5d\xec\xe8\x53\xa3\x98\xd6\x43\xf0\x71\xd5\xa9\xf3\x6a\x9f\xa4\xa2\x1a\x87\xfc\x41\x3b\xcc\x50\xf6\xfa\x86\xe5\x84\xe8\x8f\x6b\xe2\x93\x00\xe2\xfb\xfc\x48\xe0\x54\xf8\x27\x43\x3a\x65\xe5\xbb\xe0\x4b\x16\xda\xb2\x8b\xfd\xf8\x09\xf0\x9d\x45\x1c\x91\xcd\xd6\xc5\x21\x0d\x85\x06\x0f\xba\x3f\xe6\xb8\x47\x8d\x35\x8b\x2b\x35\x78\x88\x7e\x50\x37\x1f\xb1\x11\x3d\x41\x1d\x10\xf2\xce\x56\xf5\x16\x50\xe5\xf4\x65\x0d\x46\xc3\xe1\x03\x5a\x96\xd0\x5b\x6d\xe2\xf3\x1e\x96\xe6\xd8\xe6\xa1\x04\xa4\x8b\xfd\xf3\x41\xe0\xf4\x07\xe6\xe0\xa6\x4c\x98\x6e\x10\x9a\x9b\xff\xdf\xff\xfb\x80\xf6\xfe\x03\xdb\xb0\x20\x90\xa2\xd5\x49\xeb\x9a\x8d\xba\xac\xeb\xfe\x78\xc7\x7b\x22\xcd\xb3\x4a\x04\xc8\x54\x4a\xf3\xa2\xcd\x16\x0c\x9e\x6b\xd9\xb1\x99\xfa\xea\x21\x24\xa9\xb4\x81\x9e\x79\x5e\xf2\x1e\x24\x2b\xcb\xb2\xf3\x90\xb1\x99\x7d\xd4\x40\xcf\xf7\x82\x89\x70\xea\xaf\xd1\x26\xf2\x38\x15\x4c\x29\x7e\x13\x1e\x97\xf9\xa7\xf2\x71\x55\xb3\x0d\xec\xd2\x4b\x82\x76\x34\x8c\x80\x67\x15\x26\xd4\x3f\xf7\x81\x60\x90\x3a\xee\xf3\x42\xdd\xbc\x37\xee\x53\x1f\xe4\x75\x28\x72\xbf\x56\xa3\x9c\x46\xad\x7b\x3b\xad\x8d\xf1\xf7\x87\xae\xed\x2a\x1d\xe8\xa4\xe5\xf5\xc7\x5f\x1b\x43\xae\x0f\x5d\xde\x2f\xe9\x40\x27\x2d\x6f\xd4\xeb\xf2\xea\xa2\x6c\x0f\xe7\xb8\xf1\x38\x27\x2d\x6e\xfc\x40\x79\x6d\x95\x65\xe6\x58\x3c\x88\x87\x39\x09\x50\x93\x5e\xb1\xc0\xab\xb3\x88\x1d\x28\x23\xc7\xc3\x9c\xb4\xb4\x69\xaf\x4b\xab\x4d\xfb\x3e\x74\x71\xef\xd2\x81\x4e\x13\x2b\x7a\x3e\xbf\xf5\xf1\x51\x87\x9c\x5e\x39\xca\x69\x72\x60\xaf\x0b\x5b\x7a\xb8\xaa\xff\xfb\xa1\x2b\x7b\x1e\x0f\x73\xd2\xd2\x16\x0f\x59\x0e\x14\xb2\x1c\xc8\x3f\xfa\x86\x39\x74\x45\x85\xea\x7f\xc3\x82\x6b\x08\xec\x53\xa2\x9a\xac\xdc\x16\xb2\x0d\x91\xb7\x96\x04\xca\x76\x80\xb9\x80\x09\x91\x2c\xac\xec\x54\x5f\xf5\xb9\xef\xb3\xf1\xb7\xea\x4b\x10\x9d\x8b\x7d\x47\xba\xf6\x23\x08\xdb\x8d\x42\x22\x6b\xfc\xe2\xed\xd6\xa3\x36\x86\x2a\xbf\x50\x94\x32\x7e\x15\x04\xcf\x1b\x16\x84\x04\x85\xd1\x76\xcb\x02\xe9\x6a\xf7\x48\x18\xa2\x88\x53\x8f\xf2\x7d\xff\x92\x22\x00\xb6\x4e\x52\xbc\x52\x37\xef\x55\x52\x54\x14\x0b\xac\xcc\xd8\x69\x34\x30\x77\x3c\x04\x99\x72\x57\x47\x1f\x81\x67\x0f\x93\x2a\x67\x0a\x67\x1d\xbd\xb4\xe7\xe7\x58\x5a\x8f\xdb\x17\xf7\x19\x38\x6d\x95\x2f\x1e\xb0\x68\x25\xa5\xd0\x6f\x1a\xe3\x7b\x5f\xe2\xc3\xc3\xfc\xbe\x74\x89\x7b\xc2\xf7\xfb\xb0\xfb\x03\x0b\xc4\xc8\xa1\xa1\xe0\x8f\x0e\x82\x21\xd2\x2a\x5f\x51\x18\x17\xca\x4f\xcc\x32\x34\x44\x3e\xf3\x75\x72\x4b\x43\x4e\x7c\x8e\x58\x80\x68\x10\x10\x8f\xec\xb0\xcf\x0d\xf4\x9a\xff\xfa\x5d\x88\x7e\x8b\x42\x8e\x70\x88\xe8\x46\x70\x55\x95\x47\x03\x6e\x05\xee\x12\x24\x44\x22\xc4\x56\xd2\xb7\x00\x8f\x71\x31\x6c\xfc\x08\x96\x37\x06\x28\x64\xd2\x0b\xb1\x87\xba\xfc\x32\x98\x8f\xfa\xeb\x86\xef\x27\x96\xa1\x9b\xd8\x14\x05\xec\xfd\xfe\xea\x6e\xa9\xf9\xf4\xe8\x39\x8c\x3c\x4e\x55\xbb\x19\xdd\x09\xd8\xd6\x61\x37\xfe\x3d\xfb\x11\x57\x93\xd5\xfb\xd9\xf7\xcf\xad\x93\xfc\x88\x95\xeb\x2a\x4a\x49\x99\x87\x50\xfa\x50\x83\xb4\x64\xc6\x91\x1f\x95\x50\x8b\xa3\xd3\xe2\x42\x58\x69\xab\x9e\xb4\x47\xce\x40\x63\xfe\x95\xec\xee\x23\xa6\xf0\xbd\xaa\x08\xf7\x32\x05\x3d\xf8\xb6\xd5\xab\x66\xc6\xdb\x1d\x0f\xa1\xae\x1d\xda\x9d\xc7\xac\x68\xcf\xd3\xbd\x49\xe4\x49\x95\x3f\x02\xbc\xdd\x92\x00\xe1\x00\x5a\x7d\x2e\x71\x48\xed\x04\x6a\x20\xd5\xdb\x01\xc1\x60\x92\xc5\xc8\xa3\x21\x04\xc2\xda\x2e\xb1\xaf\x97\x0c\xa2\x58\x7d\x07\xf1\x00\xdb\xd7\xe2\x09\x71\xe0\xc3\xb8\x60\x5e\x40\xd8\xea\xd4\x3a\x20\xb9\xbd\x84\x50\x1a\x1d\x7b\x74\xed\x93\x52\x16\x46\x25\xba\xa0\xc2\x2b\x87\x89\xda\x71\x30\xa4\xaa\x86\xf2\x74\xe5\x91\xdb\x7f\x01\x72\x47\x57\xfb\xb8\xf6\x28\x5c\xad\x2e\x1a\x76\x56\x9c\xcc\xad\xec\x81\x60\xe8\x21\x4c\xee\xa0\x9d\x8f\x21\xa6\x6f\xa4\x0b\xa9\x7d\xe3\x21\x2c\x16\x8a\x81\xc7\x30\xbd\x53\xca\x71\xc9\x38\x44\x6e\xab\x47\x11\xf5\x91\x38\x10\x85\xed\x79\x83\xfd\x7d\xc5\x0e\xa5\x97\x0f\xdd\x24\xf5\xe6\xfd\x50\x92\x90\x07\xc4\x5f\xcb\x9c\x00\x28\x2e\x5a\x05\x4d\xc1\xfb\x29\x0f\xe3\x88\x83\x6d\x40\x42\xe2\x73\x55\x57\xe8\x35\x88\x06\xbf\x47\xd4\xbe\x06\x01\x41\xee\x69\x0c\x43\x28\xe8\x99\x7f\x22\x20\x1b\xb6\x23\xf1\x13\x06\xa0\xe0\x05\xbb\x21\x3b\x12\x0c\x64\x51\xcf\x64\x52\x4b\x62\xb3\x0d\x64\x0c\xdc\x10\x7c\xed\x0b\xb5\x1f\x64\x9d\xb4\x74\x3c\x67\x2c\x87\x31\x06\x4a\xaa\xae\xa2\x04\xc2\x88\x86\xd0\x2a\x62\x4b\x7d\x71\xee\xa8\x8f\xc4\x1b\x37\x78\x3f\x90\x93\x91\x74\x32\x79\x1c\x66\x64\x63\x5f\x7d\x1e\x61\x1f\x61\x67\x47\x7c\x48\x31\x60\x2b\x14\xda\x01\xf3\x3c\xf1\x52\xb4\x85\x05\x0a\x18\x19\xe8\x99\x07\xe2\x50\xcb\xd7\xd5\x12\x33\x4d\x98\x31\xdc\x8d\xed\x1b\x21\xc1\x81\xed\x0e\xd4\x40\xf2\x97\x14\x96\x60\x5a\xc4\xe7\x34\x20\xde\x1e\x6d\x70\x78\x9d\xff\x4e\xaf\x64\x3b\x39\xbc\x4b\x5c\xca\xc9\xad\x3e\xbc\xf0\xe0\x91\x71\xc1\x10\x85\x18\x7f\xea\x0e\xe8\x71\xc6\xfb\x9f\x3f\xdc\xd9\xb0\x80\xd2\x11\x2f\xde\x3c\xf4\xa0\xe7\xde\x6f\x27\xcb\x67\x5a\xfb\x87\xfd\xb6\x48\xd2\xe0\x52\x79\xbd\xe9\xe5\x43\x57\xaa\xde\xbc\xb7\x35\x5e\x71\xcc\xa3\xb0\xb0\x4a\x75\xb1\xbc\xce\xec\x8d\x43\x57\x9a\xbc\xdb\x27\x9b\x3d\x96\x9c\xc7\xa4\x4f\xaa\x86\x18\xd9\x2c\x20\x19\x4a\x23\xe4\xc2\x15\xb6\x09\x17\x6a\xa4\x22\x33\xe5\x52\xd3\x36\xf3\x43\x1e\x44\x36\x07\xba\x17\x04\x42\x65\xdf\x80\x1e\xb7\xca\x71\x87\xe4\xe4\x2b\x12\xfe\x92\xc9\x2f\x2f\xf7\x52\x3c\x05\xa2\xea\x79\x40\xa3\x32\x1c\x15\xc7\xc4\xa0\x14\xcd\x3a\x1c\x68\x46\x9e\x12\xc4\xc1\xa6\x69\x1a\xd5\x1d\xeb\x86\x55\x08\xd9\x9f\xa6\xb8\xc5\x6b\xa2\x73\xbc\xbc\xef\x28\xd3\xf7\xd7\x1f\x5f\xde\xfe\x1e\x9e\x94\x36\x92\xae\xa5\xc0\x2c\xde\xe1\x35\x41\x1f\xe0\xc6\x71\xcc\x21\x1e\xb4\xd2\x70\x98\x69\x26\x51\x63\x51\x3a\xa2\xbd\xd1\x4f\x3b\x12\xec\x28\x49\xe2\x83\x6a\x8c\x4c\x7d\x76\xb6\x4a\x0b\x21\xf6\xf8\x51\x35\xf6\x47\x12\x84\x71\xa9\x9f\x7e\x47\x7e\x49\xb6\x1e\xdb\x6f\xe2\xce\xcc\xe5\xc1\x8f\x37\xa7\xb5\x09\x2b\x09\xbe\xe9\x32\xba\xa8\x88\x76\x57\x32\xe6\x28\xc6\xbe\xaf\x00\xf9\xda\x50\xa4\x19\x2b\x8f\x85\x74\xef\x34\x33\xd9\x98\xbe\xe9\x24\x6c\xed\xfd\x12\xca\xdd\xbb\x1f\xbd\xe8\xa7\xe0\xaf\xa7\x13\xca\x18\x4f\xcb\x94\x52\xfe\x3c\xd2\xbd\xc8\xec\x6b\x3d\xdc\x62\xbb\xa9\x02\xa4\x6b\x56\x63\x7a\x3c\x8f\xc4\xc4\x2e\xa5\x08\xc1\xbe\xb3\x33\x7b\x28\xf6\xf1\xd7\x7e\x46\x25\x0d\x41\xb8\xd9\x0c\xe2\x6e\x12\xb0\x18\x31\x7b\x69\xe6\xf6\xd1\x85\xd9\xa3\x9f\x38\xdd\x42\x1d\xaf\x38\x09\x74\xe2\x91\x4d\x55\x7b\xfa\x14\x6e\xd2\xb4\xf1\x4c\x3c\x8d\xbe\x4f\x9e\xbe\xff\x5d\x4e\x08\x56\xf5\x76\x17\xe9\x59\x6d\xd6\xdc\x32\xda\x6c\x49\xa0\x7b\x64\xc5\x11\xc7\x6b\x44\x43\x3d\x90\x15\xa7\x33\x1f\x7b\x9f\x5e\x39\x34\x2b\x4f\x8d\xe9\x32\xcf\x63\x37\x69\x69\x3c\x9f\x41\xea\x97\xce\x03\xec\x87\x02\x03\x32\x5f\xb3\x46\x33\x4c\x1c\x7b\x39\x5f\xcc\xad\x15\x19\x2e\x96\x36\x21\xc3\xf9\x6c\x86\x6d\xe2\x54\x64\xe1\x3d\x20\xcc\x06\x73\x89\xcd\x36\x1b\xe6\xc7\x19\x1a\x2e\x5d\xbb\x3a\xdd\x6c\xb1\x0d\xf0\x95\x76\x95\x25\x76\xd6\x04\xbc\x32\x62\xd7\x82\xb4\xe0\x01\xf7\x08\x14\x5d\x20\x42\xa2\x17\x4f\xab\xc0\xdf\xb4\xff\x0c\xde\x6e\x09\x0e\xe2\x7c\x0f\x69\x96\x74\xc5\x98\x21\x75\x48\x6c\x0b\x82\x81\x06\xd2\x58\x9c\x6f\xb4\xec\x51\xa8\x97\x40\x7d\xe4\x90\xd0\x26\xbe\x23\x84\xfd\x1b\x48\x3f\x17\x1f\x16\x9f\x04\x84\xc7\x68\x89\xed\xeb\xb5\xb4\x52\xe3\x80\x20\x97\xe0\x1d\x8d\xc3\x4a\x60\x6a\xd0\xa1\x06\x6e\xc1\xde\x1a\xe8\x92\x81\x1b\x54\xa5\xb5\x94\x5e\x0a\x5d\x16\xf0\xe4\xfe\x79\x4e\x35\x24\xef\x87\xa0\xd9\xa5\x81\x6f\x4d\x07\x5b\x6a\x81\x48\x45\xb7\x3d\xa0\x63\xdd\x76\xae\x7c\xe6\x90\xdc\x4a\x11\x88\xa1\xd8\xa3\x5f\x32\xd3\x28\x9e\xd6\x47\x62\xf1\x60\x88\xc5\xb3\xd8\x28\x2b\x8b\x1d\xb2\x00\x6d\x31\xe7\x24\x00\x9b\xed\x0a\x87\x5c\x16\x48\x09\x6d\x71\xde\xc4\xf9\xc1\x8a\x39\x8a\x53\x2d\x2e\xb2\x15\x27\x3e\x0a\xf1\x1e\x6d\x18\x34\xe5\xc4\x3e\xba\x61\x81\x13\x8a\xbb\x06\x7a\x05\x23\x02\x99\x11\x07\x55\x7a\xa3\xfd\x8c\xdb\x58\x22\x4f\xc6\xca\x20\xc9\xd1\x06\xfd\x91\x18\x6b\x63\x80\x6c\x8f\x8a\xab\x0e\xe1\x98\x7a\x30\xd4\x9f\x04\x9b\x56\xaf\x49\x9c\x93\xb6\x56\xd5\xd9\x49\x91\x33\xc0\x8e\x2c\x21\x8a\xbb\x86\x26\x65\xec\xc9\x9e\x84\x71\x22\xc1\x9a\xfa\xc9\x32\xa5\x0c\x70\x46\xca\x20\x0d\x44\xed\xdc\xde\x3e\xa9\x7b\xc7\x23\x3d\xf8\x7a\xe8\x41\x32\x87\x6e\xa9\xf6\xaa\x04\x7a\xbe\xc2\xaf\x47\xfd\xec\x96\xbd\x5e\xa1\x3d\x8b\xd0\x0d\x0d\xdd\x53\xbf\x97\x06\x16\xb1\x88\x8b\xcf\x38\xf0\xc5\xe4\x08\x37\xce\xe3\x2d\x43\xef\xc9\x3a\x20\xbc\x22\xed\xe2\xe1\x90\xc1\x5f\x20\x02\xc6\x56\x3e\xa7\xed\x56\x36\x82\x13\xf8\x28\x1d\x26\x60\x42\x24\xb7\x40\x51\x24\x7d\x18\xc4\x04\xea\x37\xb6\x4c\xde\x54\xf2\x90\xb8\x94\x27\x58\x12\x98\x21\x98\x50\x39\xc8\x55\xf1\x2b\x6b\x16\x77\xee\x4b\x35\x0f\x03\x3d\x57\xcf\x43\xd6\xae\x77\x83\xf7\x61\x5c\xcf\x4a\x7d\x62\x85\x03\x25\xb1\x11\xdf\x49\x67\x15\xbf\xff\x96\xa1\x58\xa9\x00\xea\xb8\x66\x65\x31\x0f\xa6\xa1\x26\x76\x7f\xf1\x33\x29\x71\xec\x51\xe1\x0f\xd8\x3a\x20\x61\x08\x76\xe0\xfb\x55\xf9\x6f\xbf\xff\xf1\xc9\x5f\x76\xf6\xeb\x93\x54\xfe\xec\x72\x8a\x4c\x43\xdd\x43\xcf\x8f\x77\x9f\xa9\x42\xc3\xb2\xe2\x1b\x67\xcc\xe3\x74\x1b\x5b\x94\x02\x06\xd1\x10\x85\xab\xb9\xe6\x72\x13\xf4\x04\x99\x93\x5a\x16\x13\xcf\xbe\xba\x5a\x4a\x3c\xfd\x7c\x58\x6b\xd2\x68\x4a\x3c\x1b\x97\x84\x1a\x1a\xa3\x51\x7c\x6d\x83\x6f\x35\x95\x66\x56\x64\x51\xe2\xb1\xf3\x9b\x0f\x33\x5b\x52\x93\x1a\x98\xdd\x99\x13\x13\x04\x4f\xeb\x98\xda\xc0\xc7\xef\x18\x23\x8e\xc1\x0a\xea\xaf\xd8\xa9\x28\x51\x40\x8b\xea\x20\xd4\xba\xc0\xd4\x83\x42\x55\xbf\x05\x88\xab\x74\xcb\x47\xa0\xdf\x25\xd0\x8b\x32\xdd\x23\xd0\xef\x00\xe8\xa9\x60\xfb\x20\x60\x7e\x26\xf6\xe4\x29\x3f\x50\x2d\x73\x82\x6a\x9f\xb2\x47\xc4\x3d\xb1\x28\xd0\x2d\x7c\xa2\x73\x97\x06\x4d\x89\x0b\x3d\xe1\x94\x99\xc7\x29\x28\x5c\xf7\xc9\xb2\x06\x9a\x1f\x6d\x48\x80\x39\x13\x62\x96\x86\x9e\x40\x15\x3b\x6b\xa0\x39\xc4\x67\x1b\xea\xcb\x1b\x9f\xab\x2b\x95\xf5\x22\xed\x98\x09\xf2\xa5\x73\xda\x92\xc0\x26\x3e\xc7\xaa\xb4\x7c\x27\x74\xd4\x54\x50\x4c\xe1\xf5\x5e\xcb\x9b\xdd\x99\xb2\xf6\xf5\x35\x03\x10\x27\xee\x25\xe8\x7f\xe1\xc3\x6f\x07\x90\xa5\x15\xbd\xaa\x60\xb7\x7b\x9d\xe3\xf5\x3d\xeb\x5f\x21\xbb\xb8\xba\x7d\xf2\x43\x78\xa2\xfe\xa5\xd6\x52\xa6\xa2\xb7\x7b\xf4\x41\xdc\x68\x89\x33\xb6\x06\xb9\x51\xba\x46\xe6\x9e\x63\xb3\xe5\x24\xfa\xdb\x69\x19\x09\xa6\x2f\xd9\xed\x3d\x6f\xb5\xeb\xbe\xdd\xcd\x16\x3f\xd2\x53\xb6\x3a\xb3\x98\x62\x40\x88\x8c\xa4\x7d\x2e\xee\xb4\x07\x95\x67\x81\x12\xd3\x08\x79\xed\x03\x09\x36\x82\x15\x78\xd8\x26\x2e\xf3\xe2\xae\xf4\xe5\x00\xc1\xf8\xe1\x5c\x0d\x53\x35\x0b\xee\x52\x7f\x1d\x1a\x86\x51\x51\xb4\xf2\x2e\xcd\x66\x1f\xdc\x24\xc4\x78\xc9\x6e\x33\x46\x7c\x08\x1f\x84\x2a\xe7\x85\x54\x13\x1c\xfb\x1b\xa8\xbf\x8d\xb8\x81\x9e\x79\xdc\x65\xd1\xda\x55\xa1\xc8\xf1\xa2\xd1\x16\x87\xa1\xac\xa8\x4e\xd5\x68\x9b\x88\xe3\xa5\x47\x50\x40\x56\x24\x20\xbe\x4d\x06\x88\xfa\x9c\x04\xbe\xea\x49\x2b\x01\x23\xde\xa5\x21\x72\xc8\x92\x45\xbe\x4d\x9c\x34\xd3\x8d\x33\xb4\x0d\xc8\x4e\xcc\x6e\xcb\x38\xf1\x39\x95\x5e\x80\xdb\x2d\xf1\x43\x99\x6e\xee\x10\xe9\xa5\x70\xc8\x96\x40\x15\x76\x3f\x3b\xa5\x55\xc0\x36\x28\x20\x62\x91\x91\xac\x56\x84\xfd\x3d\x82\x02\xe4\x08\x8b\x19\x46\x21\x09\x10\xdf\x6f\x4b\x6e\xc5\x46\x00\x06\x44\x66\xdc\x41\x04\x42\xec\xb1\xa8\x04\xaa\x9a\xdb\x8a\x04\x21\x8a\x84\xb8\x96\x64\xdf\xa4\x93\x4c\xa0\x83\x22\x9f\x53\x19\x3d\x09\xf3\xda\x60\x5f\x56\x4a\x82\xca\xac\x62\xba\xbf\xfe\xaa\xd0\xe9\xd7\x5f\x35\x65\x07\x54\xd0\x52\xfe\x14\x6c\xbb\x94\xec\x88\x83\x96\x7b\xb0\x3e\xca\x30\x77\x65\x17\xf6\xc9\x6d\xec\xab\x49\x66\x8b\x83\xcc\x6c\xb1\xef\xa0\x28\x04\x9d\x46\x36\xd9\x22\x01\xac\x30\x8e\x1c\x85\x72\x01\xf2\xc5\xd4\x31\x8c\x23\xce\x36\x98\x53\x1b\xe2\xf4\xc1\xd5\xbc\x65\x61\x48\x97\x5e\x9f\x0e\x99\xf4\x74\xea\x62\xbe\xd8\x2e\x39\x68\xd3\xd3\x8e\x5e\xc4\x4f\xf4\x7c\xea\x85\xd4\xba\x8d\xb2\xb5\xd1\x6b\x49\x80\xd5\x48\x02\x20\xdc\x2b\x59\xc7\xbd\xd2\x83\xab\x14\x6d\xb7\x01\xdb\x51\x07\x72\xc5\x50\xba\x50\x71\x19\x88\xbf\x8a\x14\xe6\x01\x93\x38\x4a\x7d\x1f\xca\x88\x01\x51\x88\x8f\xac\x4f\x6d\x22\xa3\x8e\x29\x2f\x20\x3b\x7c\x83\xfa\x9c\x25\x85\x29\xc3\x2d\xb6\x49\x38\x40\x61\x64\xbb\xe2\x3c\xe6\xbb\x21\xba\x04\x3b\xf7\x68\xe5\x4e\x31\xa3\x47\xc6\xcb\x31\x0f\x75\x41\x7f\xf4\xb8\x03\xc2\xbd\xf2\xdf\x77\xd1\x8f\xd1\xc7\xdf\x7f\x38\xa9\xd8\x6c\x69\x4d\x4d\x0d\x98\x78\x88\x3e\xd0\x0d\x41\x57\x72\xf5\x0f\xa1\x13\x53\xc5\x9e\x14\x1a\x24\x54\x35\x44\x10\x6f\x51\x3b\x53\x51\xb7\xaf\xf6\x07\x1d\x48\x61\x09\xe0\x40\x49\x02\x1a\x2b\x34\x4d\x20\x47\x17\x74\xed\x3e\xb9\x64\x37\x92\x48\xaa\x97\xee\xd6\x80\x00\xdb\x87\x52\x6b\x54\xc5\x2e\x5a\xd9\x5d\x84\x4d\x6c\x51\xf1\x8e\xdb\x45\x95\x09\x2e\x60\x12\xef\x61\x6d\xeb\xa8\x23\x0c\x6e\x0f\x6e\xa1\x97\xec\xe6\x88\x75\xde\x99\xd9\xa0\xc4\x9c\x2e\x93\xb6\x46\x61\x12\x94\x16\x90\x15\x0b\x64\xfa\x72\x08\xa2\x1c\x92\x70\x48\x9e\x8b\x42\x02\x89\x30\x7e\x08\xae\x6e\x8f\xfa\x04\x07\x68\x1d\x60\x07\xc2\x52\x54\x94\x9a\x6a\xe3\x43\x7e\x8f\xb0\x17\x0b\x45\x36\xf6\x77\x38\xee\x5d\x24\x73\x64\x64\x4b\x1f\x8f\x05\x20\xb9\xfa\x21\xe5\xfb\x58\xe0\x4b\x46\xc4\x3c\x0e\x5d\x13\x1f\x55\x25\x10\xb0\x1d\xb0\x30\x9e\x94\x60\x6e\x1e\x13\xb2\x98\x18\x91\x85\xf1\xa2\x54\x99\x4d\xc1\x22\xf1\x86\xa0\xbd\x8e\x6f\x85\x24\x0c\xfd\x8e\x0e\x10\x48\x33\x75\x21\x38\x43\xeb\x80\x60\x8e\xc8\x6a\x45\x6c\xb5\x5a\x09\x2b\xf5\xc9\x24\x5d\x71\x0f\xb9\x3a\xaa\xd8\x44\xee\xd3\x62\x85\x43\xdd\x1c\x0e\xff\xe9\x1e\xd9\x6f\x11\xcf\xfb\xe3\xc2\xa0\x94\xe8\x36\xf3\x57\x74\x1d\x05\x0a\x43\xef\xb7\x8b\xcb\xc7\xbf\xbc\xbc\xb9\xfe\xe7\xf5\x29\x7c\xb8\x6a\x55\x05\x6e\xf0\x41\x3c\x32\x40\x2f\xf2\xcf\xb4\x0b\xc9\x98\xf3\x80\x2e\x23\x4e\x42\x09\xbb\x94\xe4\xa4\x77\xb4\x41\xda\x9f\x41\xd2\x9c\xcc\x3d\x81\x1e\xa5\x41\x0e\x91\x7b\x7b\x47\xaf\x0a\x68\xf5\x8c\x60\xf7\x8c\x52\x5f\xf6\xd3\x5b\xba\xbc\xfc\xe7\x4a\x94\xd2\xa0\x0f\x97\x36\xd0\x02\x76\xd3\xfa\xd7\x21\xcf\xc6\x7f\x1d\x84\xb3\xd2\xbc\x50\x89\xac\x55\xd8\x39\x1e\x68\x1e\x0d\x79\x11\x15\x43\x16\x05\x36\xc9\x48\x68\x2e\x0b\xf8\x25\x0d\x65\x0f\xb0\xaa\x51\x92\xed\x8b\x7b\x69\xe8\x38\x0c\x49\xc0\x75\x31\x1f\x6a\x53\xae\x27\x4f\xe8\x2e\xf1\xb6\x24\xd0\x71\xb0\x96\xdd\x70\x65\xaa\xa8\xb9\x18\x7c\xd2\x64\x5b\xa2\xcf\x03\xb1\xdb\xc4\xe6\xc4\x41\x7f\xe7\x86\xb8\xf8\x77\x55\x40\x19\xc7\xa1\x48\x82\xd5\xa4\xda\xb6\xd0\xa6\x57\xb1\x85\x85\x07\xd4\x5f\x1b\xe8\x25\x75\x20\x06\x6c\x43\xb0\x8f\xfe\xfe\xc7\x8c\x21\x01\x46\xfc\xd3\xdf\xff\x1d\xfd\xf1\xd7\xef\x0e\x45\x45\x81\xd9\xbf\x7e\x87\xfe\x07\xba\x1c\x3d\x7d\x31\xfb\x13\xd2\x72\x99\xab\xd5\xc7\x3f\x23\xde\x70\xb7\xc8\x72\xea\x5a\xae\xd7\xbe\x70\x89\xfd\x75\x24\x1d\x1a\xdd\x5f\x7a\x49\x42\x3b\xa0\xdb\x6c\x8a\x5c\x27\x11\xa4\xa7\x7d\x5d\x32\x67\x5f\xda\x57\x71\xb1\xdf\x7d\x15\x23\x9e\xbc\xaf\xf3\xc2\xbe\x7e\xfa\xa4\x5d\x13\x28\xc1\x01\x5d\x61\x3c\xc3\x87\x1d\xab\x21\xf5\xd9\x5d\x08\x6a\x13\xdc\xd2\x67\x9c\xdc\x33\x26\xf4\x05\xb2\x86\xf1\xb7\xb4\x81\x16\x7f\xad\xae\xc3\xfc\x01\x43\x79\x18\xda\x6d\xf6\x31\x94\x43\x42\xbb\x69\xa8\x36\x24\xb3\x86\x19\x76\x94\xbb\x63\x2e\xea\xee\x9c\xd1\x90\x2b\x30\x20\x2e\x16\x46\x83\x3d\x72\x48\x48\xd7\x7e\x92\x86\xb1\xa1\x3e\xdd\x60\x0f\xe1\x0d\x8b\x64\x2a\xf7\x12\x9a\x67\xa6\xf2\xed\x2d\xdd\xd0\x2f\x52\xc6\xa5\xc1\x19\x8a\x6b\x2a\xea\x0e\x76\x94\x4a\xea\x8e\xae\xd4\xbd\x87\xdb\x5b\x4e\xce\x53\xd0\xbb\x4a\x65\xec\x30\xeb\x61\xea\xfb\xee\x68\x45\x2c\x1b\x11\x13\xeb\xa1\xf4\x9f\xa3\x4c\xef\xb2\x16\xa3\x62\x77\x0d\xb6\xd4\x1f\xae\xec\x77\xcd\xf7\x8a\x13\x93\x5e\x51\x8f\x93\x80\x38\x57\x09\xdb\x1d\x68\x1e\x94\x74\x89\x35\xce\x5c\x77\xac\xb4\x55\xdc\xbc\x88\x49\x5d\x07\xad\xe1\x5e\x1d\xc5\x83\xf2\xd0\x67\x14\x13\x66\x5f\x9b\x98\x30\x7e\xfa\xc2\x1c\x75\x17\x14\x8e\x14\x17\x4e\x10\x1a\x1e\xae\xe8\x30\xfb\xca\x44\x87\xd1\xa2\xb8\xd7\x87\x0b\x0f\xdd\x45\x88\x76\x96\x6d\xce\x0f\x12\x24\x0e\x1c\xb0\x5d\x9c\x38\x70\xc0\x36\xa1\xa2\x9b\x68\x61\xce\x6b\x45\x8b\x59\x83\x68\xd1\xb0\x21\x2d\xdc\x8f\x6c\xb6\x7c\xaf\x6f\x48\x18\xaa\x03\x56\x17\x93\x54\x5f\xa1\x35\x37\x04\x30\xd0\x72\x1e\xc9\x1b\xcc\x6d\x97\x54\xb6\xef\x40\x6d\xb5\x5b\xf3\xe3\xcb\x23\x95\x1d\x7b\x1b\x30\x27\xb2\xb9\x90\x64\xb8\xed\x8a\x33\x12\xa0\xdf\x23\x12\x14\x45\x98\xae\x7b\xf0\xf9\xbf\xe5\xcd\x2a\x46\x79\x7f\x26\x50\x25\xe6\xc1\x61\x0e\x55\x9a\x59\xde\x4f\x06\x79\xc1\xb9\x2b\xea\x61\x25\x0a\xa6\xde\xb7\xfe\x65\x3b\x16\xc4\x86\x94\xc4\x15\x50\x21\xe5\xa9\xa7\xd0\x8b\xf8\xa9\x43\x95\xfa\x81\x26\xbe\x14\x9b\x4a\xd4\xcf\x97\x49\x1e\x72\x46\xe9\x67\x01\xcf\xf3\xf4\x41\x7a\x23\x79\x3f\x77\x35\x3b\xcc\xf9\x24\x80\xc9\x57\x26\x01\x4c\x27\x07\x5b\x0a\xfa\x03\x94\xd8\x16\x7d\x59\xe6\xa0\xea\x7a\xbf\xe0\x52\x83\x9e\x0e\xb1\xe9\xd3\x17\x8b\x02\x1b\xdd\x06\x0c\xc2\x57\xb5\x06\x0e\xfa\x56\xdd\x6a\x3e\x89\x8f\x60\x8e\xc1\x3c\xab\x01\x73\xc6\xfe\x2c\xb9\x3c\x28\x1d\x56\x0d\xd4\x53\xd9\xb2\x3b\xe4\x1f\x9a\xa4\x39\xf9\xca\x24\xcd\xd9\xf0\xde\xad\x54\xe6\xb4\x37\x2b\x55\x6e\xa8\xd3\xac\x54\xb9\xa1\x4e\xb5\x52\x99\xd3\x5a\x51\x72\x72\x0f\x56\x2a\x57\x96\x0e\x91\xb8\x90\x41\xc0\x34\xd8\x28\x7e\xb7\xaa\x3a\x60\x42\xa2\xf2\x95\x01\x4b\xe8\xbc\x62\x01\x5a\x46\xd4\x83\xaa\x24\x0d\xe3\x79\xd4\xbf\xd6\x39\xcb\x8f\x17\x23\xaf\x14\x97\xb8\x4b\x10\xde\x0a\x92\x12\x50\xcc\x89\x14\x29\x11\x80\xeb\x90\x20\x41\x1a\x22\x8f\xe0\x5d\xe2\x42\x8e\x67\x0a\xb0\xf3\x48\x18\x0e\x50\x40\xbc\xbd\x98\x2f\xf3\xa1\xfd\xae\x3a\xb0\x2a\x8c\x12\x0a\xac\x42\x79\x16\x55\x6b\x25\xce\x3e\x5e\x62\xfb\x1a\x45\x5b\xb4\xa3\x58\x66\x07\xb3\x88\x93\x00\xfd\x51\xfc\x56\xcb\xfb\x53\xef\x82\x9e\x2c\x8b\xa8\x1a\x68\x96\x25\xbc\x37\xe9\xed\xbe\x45\xbb\x92\x5b\xf1\x54\x11\x0f\xd8\x82\x20\x79\xdb\xea\x4a\xe3\xfd\xd0\xe6\xd1\x57\x26\xef\x2d\x8a\xb4\xf9\xae\xe4\xbd\xd1\xd7\x2a\x88\x2c\xcc\xff\x9f\xbd\x37\x5f\x6e\x1b\xc9\xf2\x85\xff\xef\xa7\x40\x63\xe2\xeb\x6b\x47\x03\x34\x17\xad\x9e\xeb\xe9\x51\x49\x5e\xcb\x8b\xca\x92\x5d\x5d\xe5\xeb\x98\x49\x02\x49\x12\x16\x88\x44\x25\x12\xa2\xe8\xea\x8a\xb8\xef\x70\xff\xf8\x1e\xe8\x7b\x93\xfb\x24\x5f\xe4\x02\x20\x01\x64\x62\x23\x24\xca\x65\xf6\xc4\xb8\x28\x12\xc8\xe5\x9c\xcc\x93\x27\xcf\xf2\x3b\xdf\x92\xbe\xf7\xed\x92\x79\x5c\x41\xe6\xe4\xd8\xdd\x48\xc1\xbb\x7d\x45\x6d\xf2\x8d\x29\x6a\xc7\x7b\xdb\x57\xd4\xf6\xfa\x53\xd4\xf6\x5a\x28\x6a\x55\x0e\xea\x76\x73\x61\xa6\x2c\xe4\x73\x88\x1a\x5e\x7f\x56\x33\xa6\x8d\x35\xbe\x3d\xad\xc6\x37\xd9\x82\xc6\xf7\x42\xa3\xf1\x01\x42\x17\x22\x89\x92\xf5\x1e\x19\x33\x1f\xde\x78\xf4\x21\x10\x65\x39\x03\x0c\x7f\x8a\xc1\x4a\x63\x08\x22\x14\x58\x55\xfa\x1c\x5f\xf0\xb2\x3a\xe7\x22\x18\xb1\xd2\x44\x42\xc1\xe4\x68\x52\x1c\x41\xaa\xb2\xa5\x1c\xfc\xb4\x40\x62\x49\x4a\x27\x45\x68\x09\x79\xd6\x88\x0b\x23\x0f\xf3\x38\x3b\xe6\x79\x4d\xcb\x5f\xa7\xd8\x2d\x21\xc4\x2c\xe5\x04\xbb\xbd\x6b\x61\x21\x98\x7b\x81\x3e\xb2\xcb\x38\x97\x7e\xd7\xeb\x61\x52\x2b\x0a\x65\xcc\xfb\x4a\xff\x13\x0a\xab\xb0\x48\x8e\x44\xc1\x3c\xd1\xb5\xf6\x85\x5e\xe5\xc4\x18\xc3\x80\x9c\xa7\x49\xae\x6d\xd5\x3e\x49\xad\x9b\x58\xa3\x21\xcb\xc1\xe4\x5d\x98\x0c\x72\x6b\x86\x90\x32\x83\xa3\x1f\x91\x3c\xfa\xc6\xf4\xb3\xd1\xa8\x78\x0e\xd6\x79\xe4\xca\x16\x8b\x02\xdc\xb0\x9c\x8a\xfc\x1e\x04\xca\x82\xa8\x15\x86\x8f\x53\x8f\x28\xeb\xde\x56\xbc\xc2\x2a\x69\xb6\x7c\xe7\x1c\x85\xb1\x0f\xca\xe6\x95\xda\x17\x9f\x63\xb4\x22\x8b\xbb\xb6\xc9\x8c\xbe\xb1\xa3\x7e\x34\x3a\x2e\xeb\x57\xf9\xb3\x1e\xb3\xb5\x51\xe9\xfd\x6b\xe6\xf9\xab\x3c\xa4\xc7\xd2\x81\x98\xf4\x58\xe5\x53\x6b\xdc\x98\xe3\xf1\xeb\x60\x2f\x8d\x45\x7c\x05\xf7\xd4\x5a\x28\xad\xed\xae\x4d\x1e\x59\xe6\x0c\xe1\x25\x20\xb6\x04\x1b\x20\x16\xa3\xdc\xd7\x5c\x6c\x07\xce\x61\x82\x08\xe0\xf8\x05\x9f\x6b\xf5\xaa\x4a\xd5\x63\xac\x55\x3d\x46\xb9\xd3\xcd\xa8\x77\x49\xf2\x33\x8e\x8b\x7d\x2d\x9c\x44\x00\xd4\x2f\xe7\x8f\x46\xad\x7e\xd6\x04\x90\x50\x6a\xe0\xc3\xe0\x62\x60\x50\x41\x67\x64\xac\x62\x46\x19\x4e\x4d\x9e\x5f\x3a\x1e\x0e\x87\xf6\x78\x38\x52\xd4\xe0\x6f\x30\xeb\x6c\xe0\x76\x10\x2f\xa7\x10\x2b\xf2\x69\xb2\x86\xc4\x22\x1a\xf2\x34\x20\x4c\xa2\x13\x62\xe6\x23\x7d\xfe\xef\xff\xfe\x3f\x85\x07\x61\xe0\x96\x1f\x33\xd0\x2c\x6d\x30\x77\xc4\xcb\x51\x3b\xcd\xb1\x27\x8c\x5e\x2f\xab\x43\x96\xc1\x0f\xaf\x0b\x42\x34\x1c\xd0\x2f\xfb\x14\xa2\xbc\xc5\xcd\x85\xe8\x64\x5f\x11\x43\x91\xb9\x23\x24\x1e\xd3\xfe\x3c\x14\x6b\x53\xdf\xfe\xa7\xd1\xd4\x36\xd0\x3f\xc9\x03\x78\x43\x4a\x24\xa7\x5f\xf6\x4b\x72\xda\x62\x0f\x24\x3f\x68\x4a\xf2\x64\x5a\x2a\x72\xff\x47\x6b\x72\xe7\x8b\x40\x68\x76\x32\xd7\x64\xd5\xc8\xa9\xea\x18\xbc\x4a\x21\xab\x8d\x3b\xbd\xbd\x5b\x5c\x76\x95\x60\xc5\xdc\x23\xc3\xf7\xae\xa0\x11\x21\x4c\xbc\x60\xfe\x58\x64\x89\xb7\x32\xb4\xf3\x5a\xb2\x90\x18\x40\x36\xa9\x37\xb6\xa8\x67\x03\xb2\xf8\x58\x44\x32\x0b\x07\x1a\x10\xb1\xae\x3c\x04\x76\x60\xbc\x0b\xfc\xb5\x01\x78\xc2\x3b\x15\xd7\xc9\xae\x4b\x32\xe1\x19\x46\xe7\x35\xf0\x7c\x5e\x80\xfe\x72\x01\x0d\x71\x9f\xe1\x98\x9d\x09\xbe\x27\x1d\x2e\x9a\x09\x34\x64\x2f\xe2\x05\x34\x79\x76\x7d\xb4\x40\x2b\x06\x81\xbe\xf0\x9c\x85\x11\xf9\x9e\xc3\x40\xd4\x3d\x02\x97\xec\x51\xd1\x9e\xcf\x9f\x6c\x93\xcd\xc5\x60\x45\x13\xe2\x67\x1b\x07\xde\xf0\x98\x8e\x99\x87\x23\x51\x13\x1f\x44\x44\x76\x5f\x3c\x98\x21\x6c\x7c\x89\x97\xac\x0e\x93\x48\x69\x63\x38\xc9\x0c\xa6\x8c\xbe\x91\x02\x8f\xd2\x05\xfa\x90\x5e\xbb\x79\x91\xfe\x88\x4d\xf1\xb5\x17\x5c\x71\xbc\xd3\x39\x0c\x20\xe6\x60\x05\x3e\xfb\x52\x40\x41\x10\x99\x50\xfd\x22\x2e\xf3\xd3\x1f\xa3\x95\xcd\x7a\x54\x5f\x70\xdf\xa3\x95\xf1\x9a\xff\x7c\xaf\xf3\x42\x8e\xbe\xb5\xdb\xe5\x7e\x7b\xf3\xff\x77\x99\x18\x72\xf4\xad\x5d\xef\xf6\x8b\x71\x3c\x7d\x98\x72\x0b\x86\x04\x86\xe9\x52\x2a\x5e\x54\x6b\x9d\x6d\x53\x1a\x29\xcd\xac\x97\xef\x52\xc7\x35\x26\xe2\x76\x66\xe2\xe3\xde\xdc\xf9\xc7\x3d\xda\x76\xb5\x89\x25\xda\x80\xd1\x3b\xaa\x52\xc2\x60\xb1\x79\x6c\x22\x41\x06\x70\x58\x69\x79\x2a\x7f\x59\x3d\x5d\x26\xc3\xad\x7c\x41\x00\xfe\x33\x4b\x3a\x06\xbe\x8f\x1c\x36\x98\xc8\x32\x20\x70\x16\x06\x46\x2b\x71\xd4\x88\x83\x2b\x7b\x44\xe0\x72\x3f\xe4\xe7\x34\xdf\x97\x06\x5b\x1b\x55\x0a\x48\x79\x5d\x26\xb6\x5d\x01\xc7\xdd\xd8\x16\x2c\x12\xc1\x39\x92\x11\x5a\xa5\xf5\xf9\x43\xc4\x3a\xa0\x07\x62\x84\x70\xeb\xd1\x49\x4b\xba\xf9\xc8\x80\xc2\x48\xcd\x4b\x2c\xa6\xe3\x93\x12\xd7\x29\x41\x8d\x29\xf2\x5d\x1e\x23\xca\x4a\xfc\x7b\x41\x44\x20\x60\x6a\xc0\xd4\x8f\x61\x29\xd9\x9d\xbd\xc3\x10\x3c\x0c\x14\x13\x83\x47\x2a\x64\x25\x6e\x05\xb6\x3a\x66\xa8\xfa\x06\x8f\x38\x68\xac\xdb\x9c\x18\x33\xb8\x32\x70\x4c\x17\x0d\x5d\x3f\x5c\x8b\xcc\x46\xce\x16\xc0\x63\x4d\x6b\x48\x57\x7a\xcd\x54\x16\x5e\x13\xaa\x54\x6b\x1e\x38\x54\x21\x12\xe8\x46\x02\xc6\x7d\xca\xa7\xce\x15\x2f\xfa\xbb\x5a\x85\xbf\xd5\x31\x88\x7a\x98\x82\xe2\xc9\x26\x71\x61\x44\x12\x4d\x51\xa8\xac\x09\x24\x15\x08\xda\xae\xa3\x1c\xee\x56\x52\x9b\x18\x85\x30\x48\x6a\xca\x07\x57\x7c\xa9\x05\x70\x45\x99\xa6\x08\xb3\xae\x24\xc3\x2c\xf6\x7d\xc6\x66\x31\x33\x56\x84\x81\x15\x40\x54\x4d\x87\xea\xbe\xbe\xe7\x5c\xe5\x46\xe5\x2d\x43\x8c\x04\x62\x42\x1c\x81\x29\xcb\x58\xe3\x1a\x2d\x5f\x45\xd3\x75\xae\x0c\x3e\xc0\x73\xb6\x1b\x3d\xe7\x8a\xea\xfc\x40\xb9\x52\xfb\xd4\x5f\x29\xe7\xaa\x14\xd8\x53\xca\xd9\x6f\x41\x83\x3d\xf8\xd6\x34\xd8\xc3\x83\x9d\x06\xdb\x94\xb1\xdf\x94\x06\x7b\x34\xda\x62\x30\x42\x5e\x47\x1d\x25\x3a\x2a\x25\xe4\xa1\xac\x2f\x7a\xcc\x61\x91\xd3\x02\x0f\x7b\xd5\x4e\x0f\x7b\xd3\x4e\x0f\x7b\xd4\x4e\xb5\xb9\x49\xda\x18\xd4\x5b\xc5\x0a\xba\x62\xe5\xa6\x45\xdc\x01\xf4\x7d\x5e\x8c\x85\x15\x84\x64\x32\xb9\x77\x73\x05\x13\xf7\x2e\x74\x10\x47\x10\xa9\x12\xfa\x67\xf2\x53\xf7\x5a\xf4\xef\x7d\x6b\xa2\xff\x78\x27\xfa\x1b\x33\xf6\x5b\x12\xfd\xe3\xe1\x3d\x15\xfd\xfb\x35\xa2\x7f\xbf\x07\xd1\x9f\x2f\xd1\xb6\xc2\x20\xac\xf2\x0b\x96\x5c\x9b\xc5\x1c\x7e\x86\x61\x66\x47\x2b\x40\x9c\x45\x31\x37\x35\x97\xcb\x7f\x64\x99\xf0\x37\xb1\x60\xf6\x15\x87\x8e\x89\x63\x16\x8f\x2f\x50\x09\x78\x8b\xf6\x41\xf6\xcd\x66\xad\xcf\x11\xff\x58\x68\x7f\xbf\x04\x19\xa0\xf3\x40\x96\x39\x50\x3c\x2e\x9b\x78\x33\xab\x0e\xd0\xfd\x1e\x0f\x50\x6d\x46\x86\x36\xa4\xef\x16\x91\x60\x79\x41\x38\x87\x15\x31\xa3\x1b\xdd\x71\x98\xd5\x06\xcd\x04\x02\xde\x12\x5c\xc1\xc4\xe6\x03\x41\xe4\x65\x75\x26\x6f\xe7\x60\x65\x43\xa9\x38\x52\x5f\x3a\x35\x87\xe9\xbd\x8c\x74\xbb\xdb\x40\xb7\xf1\x37\x76\x98\x8f\xc7\xbd\xc7\xb9\x05\x00\x8b\xc4\x15\xb5\xdc\xa8\x6d\x60\x17\x28\xd7\xbf\x2e\x32\xfe\xd6\x74\x91\xc9\x70\x8b\x71\x72\x95\x2b\x5a\x05\x9e\x73\x64\x99\x7e\x42\xea\x89\x2a\x0a\xcc\x1a\xb6\x82\x76\xc9\xa1\x1e\xdd\x30\xc9\x4c\x85\xb5\x28\x81\x65\x16\x82\x2f\xb2\xe2\x58\x2d\xc1\xcd\x73\xbd\x56\xc5\x19\xe9\xce\xe6\x49\x8f\x51\x84\x93\x1e\x83\x08\x27\x7d\xc6\x10\x4e\xee\x2e\x84\x50\xb9\x76\x7a\x8d\x20\xd4\x66\x28\x8c\xbf\xbb\xf8\x41\xf6\xa8\x97\xc0\x76\x04\x70\x0e\x88\x77\x0d\x93\x67\x5d\x18\x20\x02\x8b\x49\x05\x85\xf1\xf5\x1a\x65\xd8\x34\xc8\xf0\x9b\x8c\x31\xfc\xc6\x42\x0c\xc7\xfb\xa3\x6f\x3d\xc4\xf0\x1b\x8b\x30\x1c\xef\x8f\xbf\x9f\x08\xc3\xba\xdb\xe6\xed\xe0\x2f\xab\x11\x97\xff\xd2\x05\x71\xd9\x5b\x42\x86\x3e\xb5\x5d\xd0\xe5\xe3\x60\x14\x7f\x7c\x39\x1b\x6d\x84\xe3\x9d\x4c\xa5\x58\xca\x81\x17\x61\xba\x4c\x7f\xae\x06\xcd\x44\xea\x25\x24\xb7\x5e\xe7\x46\x57\xbd\x67\xd3\x43\x48\x77\xbe\xe6\x95\x09\x97\xaa\x39\xc9\xc5\x7a\x0d\x23\x02\xb1\x0b\xd6\x12\xa4\x65\x0b\x7c\xca\xba\x51\x21\xc6\xdd\x8a\x73\xbf\x23\x86\x68\xdb\x16\x18\x0c\x9a\xe1\x45\xb6\xcf\x20\x39\x35\x67\x2c\x5f\x8b\x06\x3f\x89\x0d\x14\xc0\x9a\x93\xaf\x6e\x43\x7f\x27\x84\x22\x2b\x74\x77\x84\xea\xb8\xce\x09\xda\xad\x71\x15\xeb\x16\x18\x6e\xbe\xca\x37\xb6\x32\xf6\x91\xde\x2c\xd8\xc1\x7d\x8b\x54\x5f\x59\x4e\xd3\x98\x95\x99\xc1\x99\xc4\x0d\xa8\x74\x09\x45\x03\x41\x09\x15\x84\x9f\x21\x28\xca\x62\x5b\x58\xdc\x0a\xa4\xea\x4d\xec\x90\x18\x17\x63\xab\xeb\x47\xc4\xfb\x93\x2a\xb3\xb1\x82\x20\x51\x08\xa8\xbe\xe4\xaf\x59\x79\x36\x29\xcd\xfa\x65\xc0\xb3\xac\xe1\x0d\x60\x07\x0b\x49\xea\xda\x01\xd6\x10\xcb\x63\x76\xc1\xda\xc0\x80\xfe\x62\x90\x05\x08\xe4\x9f\xf8\x44\xfb\x34\xfc\x26\xeb\xdc\x0b\x08\xf6\x1c\x61\x00\x93\x4f\x40\x5e\x9f\x15\xba\xdf\xea\x19\xb8\x93\x0d\xf9\x16\xb5\x97\x69\x02\x58\x55\x75\x1c\x07\x89\x75\x29\xb1\xbe\x66\xdf\x54\x98\x38\x9a\x5c\xd2\x8d\x10\x78\xac\x8c\xf8\x0c\xb8\x50\x89\xfc\xdd\x70\xa8\x0c\xa5\x5b\x36\xdc\x4e\xfd\x7a\xc0\x62\xfd\x08\x81\x3b\x87\x29\xfd\x4a\xe3\xd3\x45\xf3\x4d\x8e\x0e\xe1\x78\x2f\x4d\x40\xd4\xd1\xe6\x9e\xd2\x2c\x9e\x2e\x3d\x42\x78\x8b\xdd\xc8\x56\x5f\x29\x3c\xdb\x92\x4b\x14\x90\x85\x4d\xa2\xe4\x22\x1b\xa0\x95\x74\x18\x7c\x2e\xfa\x19\xc5\x7e\x5e\x22\x2a\x61\xec\x19\x46\x4b\x9b\xbd\x51\xf5\x72\xad\x1d\xae\xce\x4c\xd6\xbb\x36\xf3\xa7\x94\x0f\xf4\x40\xf5\x61\x4e\x14\x9f\x4a\x5f\xdd\xcf\xd5\xfe\xf4\x26\xf4\xf0\x26\x6b\xbd\x9b\x88\x98\x4e\xc6\xe3\x21\x9c\x4d\xbf\x2b\x11\x51\x36\x70\xe7\x36\x7f\xdd\xbd\xf4\xde\xec\xde\xdd\x9d\xfb\xce\x64\x0a\xc4\x18\x61\xa9\x8d\x67\x4c\xe3\xbc\xbf\x3b\xe3\x3d\xbc\x86\x78\xa3\xb3\xb3\x9b\x3c\x99\x41\xe7\x78\x3c\x3a\x82\x3b\x79\x72\x7f\xe4\xc9\x2d\xdc\xc5\x08\x9a\xcf\x7d\x58\x0e\xc2\xa1\x5f\x7b\xc1\x3c\xbd\x89\x25\x97\xdc\xdd\x8d\xec\x4f\x2d\x1d\x77\x37\xb2\xbb\xbb\x91\x71\xa8\x02\x0d\xd5\x18\x8a\x81\x3c\x28\x87\xd7\x7d\x92\xeb\x41\x89\xcb\x10\x0a\x58\xfe\x93\x88\xc3\xe4\x28\xc2\xc2\x25\x37\xb4\x3e\x31\x9c\xdc\x42\xfd\x29\xbe\xe9\x47\xd2\xbe\x10\x77\x9d\x8a\x47\x32\x1f\x99\x9e\x6b\xa3\x52\xd1\xa8\xac\x19\xcb\x3c\xf5\x51\x04\x4d\xcb\x7c\x17\xc2\xc0\xd4\x6f\xc8\xe6\x62\xd3\x2c\x95\x93\x2a\x8e\xba\x3a\xea\xa5\xd5\x2e\x2b\x94\x27\x51\x2f\xb2\x72\xc8\x25\x5a\x42\x91\xde\xca\x33\x22\x19\x58\x61\x22\x53\x95\x26\x36\x1d\x0d\x1a\x85\xd5\xec\x74\xd2\x6f\x51\xea\xee\xee\xb9\x77\x7a\xcf\xdd\xb6\xe0\x1d\xd7\x0b\xde\x71\x3f\x82\x77\x7c\xb7\x82\x77\xbc\x13\xbc\x77\xaa\xbc\xc3\x65\xb8\x00\x91\x57\xd2\xde\x9f\xf2\xef\xbf\xf2\x24\xe9\x82\x0a\xbf\xd3\xe0\xff\x9c\x67\xc9\x4e\xbb\x6e\x38\xa2\xfb\x6a\x7c\xe8\xea\xef\xd8\x79\x3a\xb6\xb7\x6b\x75\x6b\xe6\x1c\xac\x19\x1c\x7a\xc0\xc2\x06\x16\x10\xd7\xc5\x46\xf4\x78\x28\x6e\x47\x50\x7c\xbb\xea\xe0\xb7\x27\x29\xca\x66\xca\x7b\x62\xa0\xdc\x5d\x2e\xff\xf4\x0a\xc1\xce\x1f\xb1\xdb\xe8\x6d\x2e\x33\x5d\xc3\xf3\x7e\x58\x0b\xf4\x30\xc0\x71\xa5\xf2\x05\x70\xe9\x8d\x0e\x04\x86\xb8\x00\x7d\x85\x6e\xf1\x6e\x67\xb1\x0b\x1f\xff\x6c\x10\x06\x7e\x16\x87\xc6\x12\x61\x68\x44\x21\x70\x20\x4f\xd2\x81\x24\xe2\xdf\x5d\x7b\x51\x0c\x7c\x63\x05\xe9\x92\x1c\x18\x2f\x89\x01\xfc\x08\x19\xc0\xa5\x47\x37\x8b\xde\x83\x37\x5e\xc4\x50\xa7\x42\x7a\xae\xe3\x20\x1a\x54\x4e\xbc\xff\x78\x7a\x31\x3f\x75\x48\xbd\xd5\x25\xa4\x7e\x85\xec\x88\xc0\xd0\x4e\xec\x21\x5b\x8d\xac\x8f\x3f\x3c\x7b\x75\x36\x7e\xb1\x59\x64\x7d\x61\x46\x45\xa7\xd6\x0a\x19\x17\x04\x86\xc6\x0f\xe2\xe7\xf2\x45\xb8\x42\x42\x2f\x91\x73\x65\xd3\xb5\x93\xf7\x8f\xa4\xdb\x41\xec\xd3\x12\x55\x93\x6c\x71\xcf\xf5\xe1\x25\xbc\x21\xa6\x65\x3a\x20\x70\xa0\x9f\xfc\x81\x82\x99\x87\x97\xf9\xbf\xd8\x1e\x79\x93\x15\xef\x36\x2f\x1c\x80\xd7\xc6\x89\xb0\x31\x99\x6f\xaf\x97\xa6\x65\xfe\x02\x43\xd3\x32\x7f\x06\x1e\xb1\x0c\x0c\x81\xef\xaf\xff\x61\xbc\xf6\xae\xe0\x60\x30\x88\x20\xf6\x50\x1c\xf9\xeb\x7f\x28\x33\x34\x7b\x33\x45\xe4\x67\x6b\xa7\xc4\xae\xa0\xbb\xe1\x05\xc6\x25\xff\xb1\x57\x06\x1c\x5a\xe6\x62\xa4\x39\xe0\xc5\x50\xe4\x57\x12\xd4\x39\xc0\x80\x8e\x0d\xf6\xcc\xb7\xc8\x4c\x95\x71\xee\x76\x98\xeb\x23\x90\x16\xe3\xae\x60\xef\x6b\xfe\x98\x71\x91\xa4\xc1\x56\x59\x9b\xba\x30\xbb\x13\xbb\x2b\x18\x7e\xdb\x2c\xb7\x4c\xb0\x02\x1e\x3d\x3c\x4e\xa5\x5f\xb3\x44\xe1\xcd\x56\x04\xa3\x80\x65\x86\x18\x2d\x43\xa2\x5c\x1f\xdb\x38\xbe\x13\x6d\x86\x60\x14\xcc\x8b\xba\xdc\x5b\x44\xa0\x8c\x02\x5a\x07\x8a\x1a\x15\xd0\x12\x8c\x50\x1c\x42\x94\x9d\x0c\xa3\x35\x00\x3e\x2f\xbc\xca\xce\x75\x14\xf8\x6b\x1e\x1c\xcf\x42\xde\x09\x32\xa6\xeb\x10\x44\x1c\xff\x94\xf2\x51\x3c\x4b\xb5\x08\x17\x2e\x51\x10\x11\x8e\xdc\x65\x84\x31\x66\x20\xec\x77\x7d\xb8\xe7\x17\xdd\x66\x67\x7c\x64\x4f\x31\x04\xae\x83\xe3\xe5\x34\xda\xf2\xa9\xfe\xf7\xd9\xdb\xf7\x2f\x5e\xc5\xaf\x95\xa7\xba\x99\x8d\xd3\x2c\x9d\xf0\xf9\x24\x49\x85\xac\x97\x2f\x73\x32\x18\x52\xde\x0f\x22\x93\x82\xf2\x8d\xe3\x2b\xa4\x98\xc1\x65\xd7\x8a\x10\x87\x49\x79\x83\x74\xfb\xf3\x57\x4e\x85\x88\x61\x35\x79\x99\x98\x72\xa1\x9f\x62\x22\x88\x66\x2d\x53\x82\x3f\x1e\x64\x9f\x07\x04\x44\x57\x83\x59\x64\x63\xc4\x1c\x3e\xcc\x6b\x84\x31\x58\x67\xc6\x6e\x10\x5d\xe5\x5e\xcf\xca\xdc\xb2\x9f\x32\xa7\x50\x0d\x22\xd6\xc8\xca\x35\x58\xc4\xa8\x6a\xe8\xd8\x28\x1f\x2c\x7b\x96\x09\x81\xb3\xd0\x90\xb7\xda\xf7\xd3\x98\x6f\x3c\x95\xd8\x8b\x5e\x03\x81\xa2\xb3\x75\x8e\x75\x64\x56\x9a\x3d\x1f\x02\x81\xab\x50\xcb\xbc\x8c\x7d\x22\xa1\xba\x1b\xe7\xea\x45\xbc\x54\xbd\xe9\xb8\x1f\x81\x96\x93\x3b\x9b\x8a\x30\xd7\xc3\xd0\x21\x08\xaf\x6d\x18\x10\xbc\xde\xb2\x18\x7b\x89\xf6\xd0\xe9\xc5\x18\x35\xbb\x9c\xe8\x01\x60\x4c\x25\x44\xc7\x37\xb0\x8c\xf7\xc4\x22\xbe\x44\x4f\x19\x3b\xaa\xd6\x72\xde\x33\x2c\xd8\x67\xbe\x8c\xce\x3c\xdc\xc8\x3f\x2c\x29\x63\x19\x10\xcd\x0c\xf9\x2e\xc4\x36\x8a\x89\x70\x42\xaa\x8c\x7f\xca\x6d\xd1\xba\x27\xcf\x87\x1d\xfa\x51\x1b\x0c\xb5\xf6\xa1\x40\x40\x51\x1e\x49\xc2\x3a\x21\xd5\x5b\x6d\x35\xdc\x96\x12\x5b\xb5\xe0\xe4\x41\x2c\x40\x64\x13\x78\x43\xb2\xb0\x86\x23\xbe\x08\xe3\xc0\x87\x51\xd4\x96\x87\x79\x4b\xd5\x74\x4d\x60\xb9\x89\x0b\xef\x2b\x2c\xd9\xab\xf4\x93\xda\x64\x2e\xf4\x74\xe1\x57\x01\x9d\x05\x2d\x19\xd4\x1b\xe4\x5e\x7a\x4b\x28\xc7\x5c\x68\x1c\x66\x95\xaf\xd2\x4b\x02\x55\x46\xaf\x05\x6e\xce\x70\x38\x54\x43\xe7\x28\x64\x73\x1f\xe2\xb7\x20\x33\x37\x12\xc1\x73\x1f\x4d\x81\xcf\x0c\xd1\x10\x6f\x59\xfa\xc2\x9f\x0f\x3f\x7e\x04\x1f\xd7\x6a\x25\xf2\x6f\xa2\x41\xa5\x0a\xa9\x43\x03\x0a\xc0\xf5\x14\x30\x3b\x6f\xa1\xf0\x48\x61\xb1\xe9\xae\xa7\xfc\x7d\x7b\x8a\x41\xa0\x30\x12\xd7\x6d\xfe\x79\x4c\x08\xc4\x22\xf6\xda\x14\x3f\xca\x3e\x5e\x73\x09\x83\xd8\x6c\x1e\x66\x44\x57\x24\x0a\x5e\x80\xe5\x34\xc6\x73\x88\x4f\xd9\xf3\xc5\xd5\x5c\xf2\xb3\xec\xb3\x6d\x47\x3c\xe0\x47\x8f\x16\xc9\xbb\x36\xeb\x9a\xb7\xab\xbb\x40\xea\x8e\x2a\x27\x77\x48\xf1\x32\xf9\x8c\x4e\x1e\x81\x4b\x66\xf1\x47\x73\x64\x5a\xe6\x17\x34\xd5\x07\x92\x2b\x87\xc7\x17\x2b\x7f\x5d\x1a\x5a\x57\x79\x58\xc3\x56\x58\x64\xaa\x59\xc4\x5e\x13\x18\xa7\x0c\x3d\x92\xde\xe9\xe7\xa6\x65\xc2\xe0\xda\xc3\x28\x60\x88\x38\x74\x5c\x2e\xbc\x86\x3e\x0a\xf9\xdf\xcd\x91\x8b\x5b\x13\xd6\x94\xae\xe8\x1a\xaa\x5e\xd0\xdf\xe6\xb1\xe7\x6e\x58\x2d\x3f\xaf\xc9\x2b\x8b\xfb\x2c\x08\x09\xa3\xc7\x8f\x38\xc7\x42\x8c\x98\x7c\xf0\xd0\x23\x17\x39\x91\xa9\x26\x37\x9b\x44\x46\xef\x33\xe4\x30\x58\x21\x0d\xd4\x61\x57\x1a\x45\x90\x10\x2f\x98\x47\x03\x82\xae\xa0\x1a\x56\x74\x68\x99\x27\xa7\xaf\x8d\xcb\xf4\x81\x3a\x54\x9f\x6a\xcb\x5b\x83\xa5\x46\x37\x45\x04\x1d\x14\xb8\x9d\x65\x50\xb2\xb7\xb8\x50\x51\x0b\x23\x71\x90\x61\x38\xf7\x50\x60\x47\x2b\x8f\x38\x0b\x2a\xd6\x13\xda\x65\x08\xe7\x89\x46\x29\x14\x20\xb7\x81\xc1\x31\x1d\xa8\x4e\xd8\x66\xd7\x02\x26\x03\x00\x9e\xeb\xa3\xc8\x34\x77\xfe\x74\x22\x7b\xd6\xa8\x95\x65\x4b\x7f\xd0\xd2\x5e\x3a\x9c\xb3\xb9\x83\x71\xb3\x23\x96\x9f\x02\x42\xde\x6e\x15\xd5\xe8\xe6\xc7\x8b\xaf\xcf\x7e\x7c\xae\x3e\x60\xa9\xaa\xca\x7c\x66\xa6\x55\x7d\xd8\xe6\x16\x6a\x11\x9f\x3a\x04\x73\x68\x3b\xc8\x8f\x97\x3c\xbc\x16\xce\x88\x51\x36\xd7\x78\x11\x0f\x52\xe5\x97\x7e\x24\x05\xac\x7e\x2e\x1e\x63\xaa\xdd\x51\xec\x94\x93\x78\xb3\x7e\x32\x6b\xb3\xd0\x85\x74\x9d\x39\xc8\xf7\x41\x18\x41\x97\xb1\x74\xd3\x4e\xbf\x05\x2d\xa2\xbd\x1e\xa1\xf7\x37\x57\xcd\x94\x9e\xfb\xb6\x28\x90\xa4\x12\x71\x6d\x54\x86\xa6\x1e\xee\xec\x94\x8b\x3c\xc9\x22\x9d\xf3\x51\x08\xf2\xea\xf4\x04\x56\xcf\x61\x1d\x89\xe3\x87\xa1\xb6\x5c\x2c\xd0\xea\x3d\x93\xc2\xf5\xf6\x32\xa3\x3e\x6a\x24\x5b\x72\x28\xf0\xeb\x02\xc2\x42\xed\x24\xc4\x82\xd1\x06\x3b\xf0\x11\xb7\x09\xb5\xd0\xe0\xdb\xf1\xce\x24\x64\x3b\x6d\x18\x44\xb9\xc2\x54\xe1\xb9\x7a\x0f\x12\xed\x2b\x39\x1c\x57\x4c\xf5\xd1\xb7\x95\x1d\x93\xe3\xf2\x31\xa9\x0f\x96\xaf\xa2\x44\x35\x8d\xea\x43\xec\x1b\x06\x9d\x77\x66\xec\xcf\x08\x5f\xf9\x08\xb8\x4d\x76\x66\x3b\x76\x36\xda\x05\x6f\x93\x53\xa5\xd9\x46\x68\xbe\x30\x36\x5b\x16\x62\xec\x21\x5a\x41\x6c\x47\xd0\x87\x0e\xc9\xd4\x24\x14\xf2\xf2\x2e\x54\x99\xf4\x19\xbc\x25\xfb\x08\xb0\xb3\x78\xe6\x41\x3f\xfb\xeb\x69\x00\xa6\x3e\xfb\x15\x05\xa7\x0b\x10\x30\x27\x20\x01\x73\x66\xd9\x49\xc6\x92\xd5\x7c\x41\x98\x40\x37\x47\x10\xab\x40\x37\x6e\xe0\x4b\x1f\x61\xab\x83\x99\x90\xb8\x38\x9f\x67\xf9\x23\xa5\xc6\x64\x2c\xd6\xd1\x30\x97\x77\xa2\x3d\x05\xe6\x88\xa0\x57\x68\x1a\x3d\x43\x58\xee\x33\x2d\xda\xc0\x88\x9b\x29\x06\xd2\x56\xa9\x32\x07\xca\xb5\x21\x64\xdb\xb6\x99\x29\x15\xad\x10\xab\xe9\xff\xce\xf8\xab\x46\x3a\xcc\x0e\x66\xc0\xb2\x10\x68\x6b\x7b\xaf\xb2\xae\x17\x3a\x6a\x26\x14\x1a\x62\x68\xab\xf7\x44\x53\x2b\x72\xd1\x78\x5c\x71\x2d\x7f\x25\x7e\x6a\x62\xa7\xab\x91\x25\xdd\xa4\xd5\xa9\x1f\x47\x04\xe2\xfe\x85\xd5\xed\x90\x52\x14\x44\xd5\x50\xf3\x34\xfb\xb5\x29\x41\xfb\x1e\x60\x04\xf1\x35\x03\x89\x56\xdb\x0b\xb2\x5f\xbb\x73\xbc\xdd\xd5\xac\x52\x68\x17\x2e\x0f\x58\x15\x16\x2b\xae\x87\xe3\x16\x3d\xa8\xaf\x0b\xf6\x14\x38\x57\x2e\x46\x61\x7b\x15\xbe\x4f\x45\xbb\xef\x7b\x6b\x76\xdb\xdc\xe8\xd6\xea\x2d\x29\x2f\x66\x9e\xbf\x6d\x28\xde\xd9\x55\xb4\xbf\x04\x97\x3f\x36\xf6\xc9\xa9\x8b\x3d\x8d\x2d\x33\xc2\xac\xc4\x0f\x5b\x71\x04\xe0\x39\x24\xa6\x65\xfe\xd7\xd4\x17\x95\x40\xe8\xd7\x98\x97\x7a\x42\x94\xe3\x10\x1b\x01\xc2\x70\x06\x31\xe6\x97\x11\x79\xa5\x66\xe4\xb1\xd9\x47\x8d\x4d\xc7\x5b\xce\x73\xa3\xa1\x43\x28\x0c\x66\x64\x99\xc0\x4f\xc2\x04\x10\x4e\x97\x20\xfd\x32\x5d\x45\xb4\x23\xe1\x2e\xca\x56\x4f\xce\xf1\x31\xb6\xe4\x87\x92\x25\x4a\x15\xbf\xba\x15\x1a\x87\x2e\x20\xf0\x25\x9d\xc5\x1b\x48\x40\xe5\x02\x55\xec\xb4\x99\x37\x77\x00\xaf\x82\xa6\xda\xd2\x12\xa1\x92\xc7\xd4\xa4\xd2\xde\x0a\xcb\x2d\xe8\x8c\xf9\x55\xe1\x48\xa3\x22\x8d\x34\xfe\x9a\x9c\x1a\x03\x02\x37\xe5\xc7\xca\x73\xb9\x72\xc5\xff\x5c\x40\x2e\x9c\x3e\xb7\x2b\x56\x57\x0a\xfb\x1e\x5a\xe6\x03\xe9\x4e\x22\x7a\x91\x75\x91\xf0\xc6\xf8\xff\xfe\x5f\xf9\xde\x92\x74\x9d\x7f\x48\xa1\x8d\xcb\x3e\x38\xd5\xc8\x2c\x45\x1e\x46\xde\x9d\x17\xb5\x73\xe3\x0d\x2d\xf3\x61\x4b\x05\x47\x75\x5a\xf4\xe1\x27\xcb\x56\xcd\x46\x62\xf0\x0b\x9a\xda\x2e\x0c\x7d\xb4\x66\xbe\x41\x91\x69\xbc\x65\x91\x78\xe8\x1f\x1d\x90\xdf\xfc\xb0\xad\xa3\x6c\xb4\x47\xf5\x5d\xc6\xed\x05\x88\x16\x99\x26\xb1\x84\x04\x7b\x0e\x47\x2a\x88\xae\x9e\x63\x14\x87\x51\x3e\xca\x80\xdf\x62\x8e\xf2\xf5\x03\xcc\x3c\x75\x1e\x49\x84\x4a\x5a\xfc\xcc\xcd\xce\xc9\xf7\xd9\x65\x48\xfe\x8e\x1f\xaa\x75\xad\xd3\xa1\xd9\x73\x3e\xb6\x1e\x9b\x95\x06\x5d\x9c\x6f\xa3\x1e\x44\x37\x7d\xfa\x78\xd5\x8b\xae\xc7\x75\xbc\xe5\xf5\x3b\x0c\x67\xbf\x1e\xf8\xe0\x27\xf5\xfa\x75\xeb\x8d\xce\xcd\x12\xaa\x0c\x2f\x60\xe9\x5e\x6c\x32\x5e\xca\xd6\xba\xb3\x47\x0e\xd5\x90\x49\xc6\x6b\xb6\xbe\x74\x75\xf5\x79\x94\xe7\x58\x51\xf5\x94\x53\x90\x08\x98\x33\xd5\xb3\xdc\x11\x01\x24\x8e\xb8\x62\xff\x39\x9f\xd7\xab\x79\x56\x17\x46\x52\x3c\x12\x72\xaf\x62\xf8\x5b\xec\x61\x18\x9d\x63\xb4\x44\x22\x22\xa8\x51\x68\x5f\xa3\x04\xab\x34\xfd\x4b\x54\x90\xa2\x1f\x17\xc8\xf7\x73\xf5\xae\xde\x8b\x21\x18\xd2\x18\x5a\x1f\x1f\x95\xc9\x71\x39\x34\x8f\x76\xee\xfb\xda\x14\xb1\xba\x06\x0a\xc9\x61\x1f\x21\x8e\x34\x55\xdd\xea\x5a\x5a\x80\x28\x87\x02\x21\x5a\xfc\x37\x53\xb7\x2c\xae\x45\x5f\x96\xc9\x81\xdb\xeb\x6a\x5b\x6a\x54\x93\x7f\x95\x2f\xa6\x7d\xe6\xb2\x57\x0c\x3b\x62\x99\x74\x85\x70\x1d\x1d\x3a\x8a\x59\x9d\xf5\xde\xb2\x9b\x16\xa5\x8c\x5a\xf8\x17\x92\x3c\x83\xa4\xf1\xd1\xb8\x03\x1c\xcd\x44\x8f\x3f\x23\xfc\x43\xd9\xe5\xd5\x4a\x1f\xc8\x62\xf8\x12\xea\x25\x7a\x4c\x7e\xb0\x75\x37\xf7\x3d\xf5\x1d\xb9\x4a\x66\xd4\x5c\xf8\xeb\xb2\xdd\x45\xaf\x3a\x2d\x2c\xf3\x6b\xd7\x9e\xd3\xf5\x71\xd4\xdc\x18\x98\x2a\x2e\xea\x65\x90\x7f\x58\xd2\x96\x1a\x3d\x9f\x53\x30\xea\x0d\x8e\x45\xeb\x62\x53\xd9\xd8\xbf\x0e\xd2\xa3\xee\xa1\x53\xb8\xb6\xab\x92\x4c\x0e\x57\xaf\x8e\x83\x97\x5f\xd4\x2a\x09\x3b\x2d\xd9\xc1\xd5\x51\x31\xd1\xe8\x1d\x9b\x00\x50\x9c\x64\xb4\xab\x0a\xd6\x68\xbe\xf3\xd8\x51\x47\xa5\xcd\xd4\x87\xc5\xf3\xce\x4c\x4c\x90\xcd\xaa\xe3\x96\x04\x6e\x61\xe1\x17\xff\xbe\x95\x8a\xb9\xa3\x7b\x58\x31\xb7\xd1\x56\xc8\x4a\x97\x1d\x6f\xbf\x84\xae\x58\x03\x2f\xcf\xf4\xde\x4c\xe5\x0b\x97\x20\xba\x32\x98\x6c\x6c\xf9\xe2\x29\x2b\x9f\xa2\x49\xa0\xd7\xbe\xf5\x06\xb9\xde\xcc\x6b\xfd\xda\x85\xd0\x9e\x5b\xbd\x54\xa1\xc7\x55\xbc\xf5\x16\xb9\x6d\x2b\x01\x9f\x9e\x7f\x68\x4b\x06\xb8\x44\x78\xdd\x5c\x87\xee\x6d\xa3\xdd\xb7\x12\xc0\x2d\x37\xda\x78\xd4\x61\xa7\x09\x8d\x33\x6b\xd0\xc6\x29\xb6\xd2\x27\xf9\xb0\xe7\xf9\xa2\x84\x15\x17\xcc\xaa\x26\xf3\x72\xac\x94\x66\x5f\xd0\xb4\x51\x7d\xdd\xb1\xae\xba\x5f\x9d\xa2\xd0\x7f\x18\x7a\x63\xfa\xde\x82\xd6\x90\x5a\xab\xb6\xaa\x31\xfc\xfc\xe1\xf9\xfe\xf0\x60\xfc\xb5\xb1\x5f\xa2\x22\xb8\x27\x5e\x06\x91\xa1\xb6\x9e\xb5\xd0\x1a\x84\xe3\x2c\x40\x2b\x0c\x42\xed\x75\x57\x1f\x30\x41\xfb\xe4\x06\xb6\x8a\xcb\x6e\xa5\x63\x8d\xb7\x51\xf0\xa7\xe5\xc3\xa8\x73\x6a\x41\xe8\x03\x07\xba\xa7\x20\x00\xd8\x93\xe3\x21\x72\x0f\xb9\x30\xf2\x70\xee\xa9\x34\x3e\x21\x17\xd7\x2f\xbe\x6b\xde\x7b\xb9\xe1\xb4\x98\x36\x6b\x3a\xb9\xf7\x57\xdd\x3d\x05\x55\x16\x13\x75\x40\x5b\xc1\xd1\x9d\x75\x55\x21\xd5\xd5\x8e\x73\xb6\x5a\xcd\x2a\x4b\x50\x99\x98\x72\x09\xdf\x47\x86\xd6\x56\xa0\xa0\x43\x95\xa9\xa0\xea\xbe\x7b\x7b\x4b\xad\xf4\x7a\xa5\x7b\xbf\x21\x3f\xce\x19\xc9\x6e\x91\x1b\x4c\x49\x6f\x49\xd1\x3b\x9c\xff\x19\xe7\xfc\xad\x10\x40\xac\xaa\x4b\x5e\x5e\xfc\x3e\x2e\xa9\xa6\xd2\x4b\x8a\xba\xca\xcd\x70\x01\x81\x4f\x16\xeb\x8c\xc7\x43\x95\x60\xba\x25\x51\xf2\x82\x77\x7e\x2b\xac\x2b\x4d\xec\xcf\xc7\xbb\x38\xa8\xe6\x9e\x0b\x82\x39\xc4\xb7\xc5\xbc\x0f\x49\xef\xb7\xc2\x3e\xc5\xdc\xba\x32\xb0\xb5\x59\x81\xeb\x20\xcd\x94\x8f\x22\x0f\x03\x44\xbc\x99\xc7\x75\xc7\x56\x8e\x11\x95\xc1\x4d\xf3\xee\x19\x8c\x1c\xec\x85\x49\xfe\x73\x7b\x08\x95\xbb\x54\xa5\x85\x1a\xd8\xa7\x1a\x2d\x3b\x51\xb7\xab\x3f\x5f\x3a\x8f\x86\x97\x31\xb9\xf8\x76\x2c\x6e\x99\x49\xe3\x1b\xb0\xb8\xa5\xa6\xe9\x8b\x78\xb9\x4c\xf5\x3a\x33\xe7\x44\xff\x7e\x0d\x6f\x12\x19\xfa\xb4\xb6\x25\xa6\x1e\x91\xf4\xdf\xc6\x3a\x04\xa1\x2b\x79\x41\xff\xd1\xf2\xf5\x93\x98\x20\x83\x43\x76\xb6\x7d\xb5\xd1\x9d\x44\xd1\xa3\x38\x5b\x5a\xbd\x24\x94\x16\xa3\xd3\xcb\xe9\xa1\xd9\xed\xf5\x73\x8c\xe6\x18\x46\x91\x71\x06\x81\x9b\x20\xdc\xef\xac\x64\xb5\xbb\x62\xd4\x75\x5b\xa8\xa1\x51\x8a\x4f\xb9\xa5\xb8\x0b\xd9\x3a\x56\x86\x34\xaa\x48\x46\xaa\x82\x5b\x49\x21\x87\xe4\xb6\xdb\x07\x40\xe4\xfb\x1c\x15\xe0\x8c\xe4\xb6\x43\xd6\x26\xe4\x42\xf0\x2d\x62\x30\x6f\x51\x4f\x78\x26\xfc\x7f\x6f\x1f\x9d\x54\x62\x94\xe4\xc7\xda\x9c\x6e\x55\xb3\x02\x31\x41\x5c\xcc\xb0\x7e\x7f\x61\x79\x27\x6f\x51\x69\x5e\xad\x7b\x13\x81\xaf\x05\x1a\x96\x2c\x1a\x43\x05\x01\x25\xd3\x46\xfe\xf5\x16\x76\x8d\x36\x2b\x52\x77\xb3\x6f\x30\x94\xda\xcb\x70\x9b\x71\x34\x56\xf2\xdb\x34\xda\xe2\xee\x50\xb7\xf3\x8a\xbb\xa5\x12\x26\x27\x67\xb3\x54\x42\x21\x2b\xb7\x6e\x22\xd4\x7f\xe8\x13\x1c\xf9\x96\x0c\xef\xb7\x75\x61\x28\x48\xed\x9e\x6e\x0a\x91\x1d\x11\x0c\xc1\x72\xcb\xb7\x84\x67\x61\xe8\xbd\xf3\x5f\xbe\x54\xdf\x12\x30\x74\x10\x56\xc4\x0b\x16\xe1\xeb\x04\xa0\x25\x74\xcf\xb2\xf9\x25\x50\x3e\x57\x90\xdd\xc2\x25\xed\x79\xe0\xb9\xd5\x09\x6e\x69\xa4\x08\xe0\x51\x81\xab\x33\x8e\x80\xda\x1a\x17\xaf\x19\x64\x7e\xf1\x08\x1b\xb5\x0a\x67\x6a\xe8\xc5\x2a\xc2\xf0\xb7\xed\x66\xd3\x33\xed\x43\x70\x15\xa0\x55\xc0\xf0\xbd\x6b\x8f\xb5\xe6\xaa\x9b\x1c\x84\xd4\xb5\x2c\x80\x44\xa5\x62\x18\xad\x2e\x00\xa9\x44\x3d\x6e\xad\xa8\x43\xf4\xd5\x8a\x97\xfe\xc5\x46\xb2\xbf\x37\x17\x19\xde\x6c\x66\xcf\x3c\xe8\xbb\x91\x0d\x02\x57\x50\x71\xdb\xd6\x85\xe8\x3a\x3c\xfd\xed\xf8\xd1\x81\x5a\x6e\x08\x4e\x5b\x26\x1b\x77\x2b\x23\x03\x9b\x6e\x72\x89\x4f\x8b\x26\x95\x36\x6b\x4e\xfc\x70\xea\x34\x15\x10\x95\x36\xb2\x72\xf7\x36\x46\xab\xc4\xee\xe9\xa0\xc0\x01\x2c\xba\x3b\xf7\x1c\x33\x3f\x1a\x5e\x64\x8b\xc7\x7c\xb4\x82\xd8\x01\x11\x94\x0e\xd6\xcb\x75\x08\xcb\xc5\xe8\xba\xe0\x55\x28\x86\xe8\x40\x5f\x93\xef\xa9\x6c\xac\x64\xdc\x05\xf8\x2a\x83\xf7\xc8\x26\xb9\xf9\x8c\x4c\x0d\xe0\x53\xa3\x26\x2d\x13\xb8\xb2\x65\xb8\xd1\xcd\xe1\xef\x4d\x65\xe3\x06\xc3\x72\xa1\x0f\x49\xdb\x81\xd9\x77\x30\x30\xe8\x7a\xad\xc7\xf5\xf7\x47\x76\x41\x83\xab\x08\x7b\xac\xcb\xd7\x2e\xde\x8d\xf4\xea\x60\xa6\x1a\x17\x61\x1a\x87\x96\xf9\x58\x63\x40\xbf\xdb\xe5\xd4\x71\x23\x1a\xb9\xef\x1d\x0e\x5b\x20\xef\x0a\xb3\x30\x7f\xb8\x2a\x99\xca\xcd\x06\x27\xf0\x36\x17\xf4\x1d\x91\xe6\x9d\xef\x6e\x9b\x34\x6d\xb7\xd4\x36\x29\x63\x3c\xf9\x0f\xe3\xd6\x96\xd7\xe6\x73\xdc\x70\x13\xe8\xc5\x53\x5b\xc9\xd4\xf8\x3a\x5a\xba\x5e\x96\x75\x0f\x94\xd6\xf3\x6f\x1b\xa6\x5f\x38\x85\x37\x51\x30\x46\x2d\x14\x8c\x5b\xd2\x08\x9a\x0e\xa1\x85\x08\x2f\x37\xd9\x5a\x84\xf7\xad\x0d\xa8\x86\xd4\x5a\x78\xf6\xad\x09\xa8\x06\xd5\x56\x6c\xc9\x5a\x40\x6f\x1a\x80\xda\xfb\x9d\xa5\x6b\x28\x4e\x7e\xe3\xf7\xa6\x51\x3a\xe5\x0d\xa2\xd7\x80\xe5\xdb\xa5\xee\x3a\x95\x5c\x35\xc5\x65\xc2\xca\x76\x76\x46\xe5\x67\xc9\x45\x23\x9d\xc2\xbb\x6c\xfb\x57\x64\xa8\xe4\x89\xf0\xc7\x96\xee\xa6\xea\x99\xf7\x72\x41\xdd\xf2\x6d\xf4\xcb\xb3\xd9\x73\x3c\xfb\x59\x93\x5d\xc2\x03\x5f\xac\x14\xa1\x5d\xaa\xbe\x62\x7a\x81\x0b\x6f\x58\x5c\x45\xcc\x63\x3b\x18\x58\x03\xdf\x4d\x2d\xa1\x19\x8b\x18\x27\x9c\x2e\xc9\xce\xdc\xe0\x02\x59\x6e\xac\x58\xd2\xbc\x12\xd9\xb1\x5f\x49\x5f\x3b\x98\x8e\xe2\x5e\xdb\x6e\x4b\x99\xdf\xaf\xc4\xaf\x18\x55\x4b\xb1\xdf\xaf\xd0\xaf\x18\x57\x3b\xc9\x9f\xc9\xfd\x9e\xa4\xbe\x26\x68\xa3\x99\xae\x38\x45\xbe\x1c\xa6\xf1\x0a\x4d\x1f\xcb\x0a\xad\x34\xeb\x97\x67\xf5\x4a\xad\x5a\x7b\xcb\x88\x2b\x81\xc1\x5c\x43\x3c\x45\x51\xb6\x4f\x7b\xa2\xfb\x26\xa9\x9b\x4d\xce\xb7\x7e\xce\x36\x69\x52\xf2\x01\x27\x7d\x5d\x7d\xca\xb5\xb2\x16\x6b\xd4\xe8\x84\xa8\x72\xc2\x67\x1f\x0a\x75\xce\xa8\xbf\xb9\x28\xae\xd2\x73\x77\x1a\xf7\x4e\xe3\xbe\x9f\x1a\x77\x57\xf9\x9b\x05\xe4\x3d\xce\xdb\x15\x34\xca\xbb\x52\x06\x17\x3d\x6b\x1f\x98\x86\xd5\x04\xad\xf4\x41\x51\x50\x1c\x59\xa6\x4d\xff\xb0\xbd\xa0\xa2\xc1\x8a\x76\xdb\x1a\xc6\x53\xa1\xca\xd5\x42\x9b\x69\x89\xe9\x1e\x8d\x22\x3b\x79\x9a\x8e\xe5\x20\x07\x05\x90\x8b\x00\xd8\x67\x30\x02\xf2\x35\x27\xa3\xe5\x41\xee\xb7\x7a\x73\xc7\xbe\x75\x90\x07\x84\x6a\x23\x73\x4b\x87\xdf\x86\xcb\xdc\x2a\x1e\x9f\xed\xd0\xba\xfe\x5c\x77\xbb\xf6\x27\x9f\x20\x31\x88\xae\x9a\xec\x87\xd6\x67\xde\xb8\xa7\x33\x4f\xef\xed\x69\xeb\xc6\xfa\xf3\x7a\x9e\xee\xa9\xdf\xe9\x7e\x7a\x9d\xf2\x3e\xa7\x1e\x3d\x4e\x2a\x8b\x31\xdd\x5e\x8f\x15\x76\x71\xe5\xf9\xa5\x89\x68\x3c\x49\x6d\x06\x4d\x61\xb6\x4b\x87\x57\xbb\x86\x9a\xc4\x77\x29\x0d\xc8\x85\x43\x69\xa2\x3f\x94\x26\x95\x07\x4f\xd6\x6f\xbe\x8e\x99\x0c\x3e\xbd\x97\xa1\xe3\xb8\xd0\xd1\xcc\x52\xc2\xcd\x6e\x7a\x37\xb2\x9a\xd4\x8c\xd1\xaf\x9e\x89\xb5\xd7\xea\x84\xdc\xf4\x52\xd8\x7c\x57\x34\x06\x68\xef\xe3\x50\x1b\x97\x0e\xb5\x71\xcd\xa1\xd6\x18\x2c\xbf\xa1\xf3\xa4\x11\xa8\xce\xad\xd8\x39\x37\x36\x6a\x52\xee\xa1\x6d\x17\x6c\x8b\x7f\x7c\x3f\x7a\xf9\xfc\xd1\xac\x3a\x85\x47\x44\xcc\xd2\xc5\xf4\x0c\x78\x7e\x8c\x15\xa6\xcb\x3c\xb2\x54\x08\x70\x04\x9f\x62\x8c\xea\x0a\x49\xd6\xa8\x69\xb9\x84\xb2\x2c\xa9\x4f\x5b\xf8\x45\x9d\xbc\xc7\x20\x76\xe9\xeb\x7b\xd2\x9b\xe7\x74\x88\x86\x18\xa3\xe6\x4e\x13\xaa\x00\x68\xe5\xb9\x69\x61\x04\x1b\xa7\x25\xc8\x44\xf3\x41\x70\xcf\x69\xe6\x83\xa0\x13\xc9\xb2\x99\xf5\x4a\x31\x1c\xdf\x73\x82\xbd\x8f\x3b\xd1\x2b\x9b\xd7\x86\xe4\xaa\xd6\x54\x19\x3e\x30\x61\xd8\xd7\xe2\x38\x61\x5d\x56\x9d\x23\x5a\x70\xe5\x68\x81\x56\x4f\x59\x0b\x49\x31\xfd\xc2\xa1\x26\x2a\xf0\x71\x0c\x95\xcf\x96\x19\xc0\x55\xab\xa3\xab\x25\x13\xbd\x60\x86\x54\x57\xba\x9a\x66\x04\x94\x47\x65\xa8\x5b\xdb\xcc\xd9\xdc\xcb\x6d\x57\x0f\x30\x5e\xa1\xa9\x3a\xc8\x49\xb3\x86\x98\x6c\x8b\x08\x34\x10\x36\x40\x4c\x16\x08\x1b\x2f\x4e\x5f\xd3\xbf\x5e\x5d\xbc\x7b\x6b\x10\x64\xf0\xe0\x5f\xfa\x69\x8d\x62\x6c\x38\xbc\x62\xc3\xc0\x38\x31\xe8\x46\x35\x56\x9e\xef\x1b\x53\x68\x60\xf8\x5b\x0c\x23\x02\x5d\x63\x0a\x67\x08\x43\x56\x94\xff\x0b\x9a\x1a\x5e\x24\x9a\x20\xd0\x1d\xe8\x03\xb0\xb4\xa9\x5d\x35\xf0\x27\x5e\x64\x3b\x30\x20\x10\x43\x86\x04\xbb\xf4\x02\x6f\x19\x2f\x6b\xe8\x9a\x80\x33\x2a\x31\x4d\x13\x6c\xc6\x64\x51\x94\xd1\xff\x39\xf6\xa2\x9d\x42\x33\x2a\xd6\x73\x19\x8d\x31\x1d\xd0\xbb\x2b\x50\x91\x08\xde\x36\x65\xbb\x69\x34\x74\xa7\x2c\xda\x5e\xf2\x68\x0d\xba\x28\x8d\xb3\x14\x95\x57\x89\x2e\xe9\x80\xc0\x81\x3e\x8f\xaf\x6d\x1e\xd6\xd4\x88\x8f\x35\x18\x9b\xad\x8a\x3b\x9c\xb2\x61\xaa\xaa\xa7\x25\xbf\xb4\x2c\xf7\xa2\x15\xf5\xfd\xa4\x15\x97\x54\x78\xef\x7a\x6d\x3b\xc8\x85\x4b\x8f\x1d\x19\xa9\xd6\xce\x61\x06\x04\xdc\x00\x37\x61\xb2\x3a\x47\x61\x1e\x0e\x5c\xba\x8e\x7c\x41\x53\xd3\x32\xff\x2b\x80\xab\x8c\xb5\x99\xa7\xe6\x0b\x9a\x5e\x84\xd0\x91\x6e\x20\x7a\xd2\x1e\x59\xe6\x32\x26\x75\x0d\xe7\xc5\xbf\xa5\x82\x35\x47\x2e\x2b\xc8\xb4\x80\x4b\x5e\x98\x69\xca\xca\x52\xb3\x52\x2a\xf0\x2d\xc3\xc5\xe5\xa5\xd5\xbf\x80\x6b\xc0\x71\x01\x38\xd6\xee\xc2\x33\xad\x31\x27\xb6\xce\xb8\xa6\xf2\x23\xb6\xc2\x49\x08\x08\x0c\xd8\x2a\x04\x51\x84\x1c\x0f\xb0\x82\x2d\xba\xed\x56\x5c\xd7\x65\x58\xe9\x64\x71\x0b\xd8\x11\x45\x4d\x13\x2a\x9d\x19\xa0\xc5\xfb\x38\x08\xbc\x60\x9e\x54\x37\xf1\x11\x70\xd9\x9f\xd2\x2d\xbc\xbc\x07\x42\x88\x67\x08\x2f\xf3\xad\x15\xab\x51\xb8\x5e\x24\x0a\x62\x15\x17\x87\xaa\x73\xf6\x4c\x80\x5a\x32\x5a\x10\x92\xd0\xeb\x6c\x4a\x98\xbc\x92\x59\xcd\x9b\xbe\x34\x1e\x4e\x81\x86\xfa\x4e\xa2\xe4\xd0\xe1\x65\x2a\xce\x4e\x67\x29\xe8\x2c\xf4\x60\x50\x71\xb0\x4e\x65\xb9\x5c\x78\x11\x55\x2c\xa8\x8e\xe1\x71\xa1\x8e\xf9\x42\x33\x08\xfd\x89\xea\x1d\x4c\x31\x59\x80\x6b\x68\xa0\x20\xaf\xba\xfc\x89\x95\x10\x79\xbd\xed\x54\x90\xaa\x05\xd6\xe9\x98\x75\x01\xbe\xaa\x39\x60\xb3\x10\xb4\xe4\x58\x12\xb1\x04\xa9\xf9\x4e\x96\x91\xef\x62\x12\xc6\x44\xb8\x98\x32\xf3\x6f\x6f\x47\x50\xe9\xe0\x90\xa7\xa5\x39\x34\xd2\x31\xcd\x80\xe7\x43\xf7\xf2\x79\x96\x1b\x6c\x66\xf8\xfe\xa6\x0a\x8e\x4f\x1f\x6d\xd0\x89\x7b\x17\xce\x02\xba\xb1\x0f\xb1\xe1\xe2\xb5\x8d\xe3\x3e\xd8\x68\x56\xb8\x65\xea\x29\xa0\x17\xfc\xb9\xf0\x91\x4e\x8d\xe8\xac\xae\xa9\x39\xcd\x9e\x09\x7b\x5a\x66\x6b\x95\x9b\x4e\x0c\xad\xdc\xc6\xde\xc0\x9a\x3a\xd1\xfb\x35\xaa\x06\x77\xe2\xfb\x06\x01\xd1\x15\xbd\xd7\x39\x0e\x8c\x22\xaa\x7c\xae\x0d\x01\x04\x0a\xdd\x41\xcb\x7c\xce\xda\xac\x1a\xd9\x72\x90\xa3\x6c\x88\x21\x5c\xa6\xc5\x3b\xbd\xe8\x59\xec\xcf\x3c\xdf\xe7\x28\x0c\xb5\xcf\xab\xfd\x00\x1d\x4f\xe7\xfc\xc6\x92\xb6\x49\xfb\x13\xba\xd9\x9d\xca\x30\xce\xb3\xd9\x18\x0f\xbc\x19\x43\x07\x71\x16\x08\x45\x90\x5e\xd6\x71\x1c\xa4\x67\xa1\x45\x0f\xca\x08\x1a\x12\x56\x6b\x7a\x6f\x8f\x08\x0a\x43\xe8\x3e\xac\x90\xf6\x7d\xed\xb2\x36\xe0\x46\x5a\xbe\x15\xe0\xc4\xd9\x19\x19\x21\x1f\x08\xec\x8d\xef\x0a\xe1\x88\x1b\xe1\x24\xec\x96\xe1\xf0\xf1\xe9\x68\xd2\x06\xbd\xc5\x50\x62\xe8\xb4\x84\x11\x57\x37\x52\x03\x25\x5e\xf9\x52\x1d\x9c\x78\xe5\xcb\x95\x90\xe2\x95\x6f\x56\xc3\x8a\x57\xbe\x5a\x05\x2d\x5e\xf9\x62\x25\xbc\x78\xe5\x9b\x7a\x88\xf1\x6a\xf2\xe8\x60\xc6\xab\x49\xb3\x83\x1a\xaf\xd8\x78\xa3\x71\xd7\x8d\x77\x7f\x51\xc5\xd5\x87\x41\xbf\xaa\xff\x16\xec\x22\xdc\x18\xdd\x9f\x65\x44\xb4\x57\x65\x1b\xd1\x76\x5b\x63\xdc\x78\x5f\xa1\xf1\x36\x37\x7d\xb6\x34\x72\x62\x18\xc1\xc2\x74\x2a\x86\xa8\x32\x7b\x36\x5f\x24\x7d\xf9\xd8\xb3\xfd\xb8\x91\x97\x3d\x04\x73\xf8\x68\x0a\x08\xd3\xe4\xb7\x9a\x40\x74\xf0\xe2\xe5\xd7\xb3\x9f\xde\x35\x03\x9b\x17\x15\x93\xd8\xe8\x43\x80\x49\xf4\x88\xc9\xcc\x54\x86\x7c\xe1\x3e\xa1\xcc\xe8\xa6\x2f\x90\x54\xb8\xc8\x4a\x4d\xc2\xbc\xbd\x98\xfd\x99\x5a\x1a\x4c\x14\x9c\x79\xd1\xd2\x93\x35\xb8\xdc\x13\x9f\xf5\xf6\x5f\xd3\xf1\x21\xc0\x4f\x73\x4f\x67\x1b\x30\x2f\xcd\xd2\xc5\xa5\x1e\xa3\xa8\x8e\x2b\xcf\x9b\x2e\xb0\xc0\xf5\x53\x17\x7c\x8e\x0a\xfa\x31\xe5\x5f\xaa\x1b\x4d\xe3\x7b\x01\x1d\x2f\xa5\xba\xc2\xfc\xb6\xa1\x8a\x9d\x3b\xbd\x4b\xa5\xdd\xd4\x35\x72\x87\x3c\x6b\xe4\xb1\xb4\x5b\x53\xe2\x66\xf6\x59\x22\x22\x36\xe5\x70\xe1\x7f\x55\xdd\x12\x9a\xf7\x7e\x8e\x3d\x84\x3d\xb2\xae\x19\x41\x28\x1e\x2b\x8e\xa2\xc5\xb5\x91\x37\x14\x80\x25\x8c\x42\xe0\xc0\xec\x7e\x18\xad\x23\x02\x97\x1c\xd7\x29\xf6\xdd\x8b\x05\x5a\xbd\x4d\x9e\x6a\x14\xc3\x5d\x50\x9c\x54\x55\xf5\x04\xb9\xb4\x64\x48\x3b\xac\xa1\x43\x36\xfc\x2a\x9c\xc4\x0e\x4e\x27\xb3\x8c\xe2\xad\xdf\x64\x11\x03\x98\xad\x13\x2f\x2d\x77\x6e\xc9\xc6\x11\xf5\xdb\x7e\x0e\x07\x39\x2f\x1f\x22\x84\x49\x22\xc7\xc5\x9f\x67\x30\x72\x60\xe0\x72\x2b\xd7\x1c\x11\x94\xe6\x01\x29\x24\x08\x5b\x45\x72\x1b\xb9\x6f\xa5\xa6\xd2\xef\x0b\x2d\xb6\x9f\x0d\x86\x4e\xa9\x9c\x5a\x2b\x6a\xdd\xfe\x89\x9c\x1d\xa5\xfd\x9c\xca\xe9\x60\xbd\xaf\xd0\xb5\x9d\x85\xe7\xbb\x5b\x3e\xa3\x9f\xdf\x7c\x09\x86\xcf\x23\xb2\x3b\xa3\x37\x3f\xa3\xc5\x97\x35\x67\xb5\x74\x26\x61\x6f\xb9\x84\x6e\x5a\xfd\x7e\x77\x8c\xff\x69\x8e\xf1\xda\xd3\x54\x91\x34\xa5\x1e\x15\xc0\x30\x20\x8f\x95\x4a\x82\xef\x05\x57\x36\x41\xd9\x32\xfc\x2d\x86\xac\x76\x07\x46\x31\xa1\x0b\x51\x5c\xab\x2d\x55\xf5\xf4\x2f\x68\xfa\x36\x53\x24\xf2\x1a\x46\xc8\x3a\x55\x9f\xd5\x9f\xc5\x2d\x3d\x1a\xb0\x67\x15\xaf\x55\x17\x2e\x95\x2d\x06\x9a\x1e\xcb\x35\x0e\x3a\xc5\x50\xef\x14\xa9\x9d\x22\xb5\x53\xa4\x5a\x51\x6b\x3b\xee\xed\x73\xb0\xf6\x11\x50\x98\xab\x5b\x1f\x43\x6a\xef\xb6\xc2\x3d\xca\x7b\x7c\x75\xf1\xee\x6d\x5b\xc8\xd9\x2f\x11\x0a\xec\x6b\x0f\xae\xa0\xa4\xa3\xd0\x2f\x25\xaf\x4f\xbe\xf5\x66\xd2\xac\x5e\x96\x84\x18\xaa\xad\x8f\xbe\x67\xaf\xbc\xc0\x45\x2b\x3a\x7d\xe8\x83\x88\x64\x85\xb6\x0e\x2d\xd3\x61\x01\x65\xaa\xa0\xfe\x84\xec\xb2\xd4\x10\x1c\xd8\xcc\xf5\x79\x27\x7a\xb9\x42\x99\xbe\x05\x2d\x7d\xcb\xfa\xf9\xfe\xc7\x0f\x18\x3c\x7b\x33\xd9\xe9\xe7\x25\x91\x65\x66\x65\xd6\xef\xce\x7a\x56\xe3\x58\xd7\x22\x02\x10\x30\xa7\xbb\x73\x81\x7c\x3f\xf3\x41\x72\xfd\x4e\x5a\x6b\x2d\x43\xfe\xbe\x75\x85\x5f\x38\x0d\x6b\xf4\x9c\x04\xc1\xfb\x1b\x50\xfb\x77\x4a\xe7\x7d\x56\x3a\xab\x5a\x64\xc7\x07\x86\x41\x5b\x75\xd0\x89\x31\xbd\xb9\x9c\x73\xe1\x47\x55\xb9\x57\xe5\xa1\x74\x52\x0b\xe5\x96\x73\xba\xe2\xab\xed\x9a\xc3\x72\xa7\x63\x6f\x07\x6e\x7a\x54\x6d\xf5\xb4\xc5\xc3\x1f\x1e\xbd\xdd\xfb\xb8\x54\xe7\x86\xfe\x4d\x34\x58\xce\x04\x1d\xed\xf3\x3b\x31\x9d\xd2\xa3\x28\x9e\x06\xe0\xda\xe4\xce\xc8\x4c\x2e\xd0\xad\x27\xb4\x67\x95\x88\xad\xa8\x00\x37\xda\xb3\x46\xb9\xa6\x0a\x1b\x2d\xe5\x2d\x6d\x76\x43\xd6\x0a\x3e\xf4\xc9\xd7\x6c\x6b\x6d\x57\x93\x3a\x1b\x81\xf1\x2b\xff\xef\x6a\xde\x32\x28\xc3\x4d\xcb\xf7\x29\xc3\xdc\x5e\xa1\xa9\xf1\x1a\xc4\x81\xb3\x80\x91\x82\x7f\x2d\xa3\x5d\xf9\x35\x47\x11\x0f\x80\x30\x81\xee\x69\x4a\xea\x2c\x2e\x90\x57\x03\x95\x33\x6b\xea\x91\x3d\x14\x2d\x56\x45\x8d\xb2\x90\xb8\x10\xcc\xbd\x40\xc4\x78\x94\xe2\xe2\x22\x9e\xc2\x12\x72\x9d\x4e\xd7\x43\x12\xed\x08\xe6\x90\xe5\xbc\x68\x64\xa1\x3a\x40\xae\x32\x2e\xaf\x56\x8c\x67\x71\x7b\x3c\x5e\x87\xb6\xd6\x5e\x72\x9b\x2b\x8f\x2c\xec\x19\x42\xe4\xd6\xa2\xf8\xc6\xf7\x34\x8a\x4f\xb1\xe1\xa5\xc8\xa2\xfd\xc7\xa7\xa3\x51\xbb\xc0\x22\xb3\xaf\xf0\xab\xb1\x60\x95\x3d\x2d\x47\x60\x89\xef\xfb\xa5\x9b\x68\xb4\x27\xd2\x1d\x14\x63\xb2\x3e\x7d\x32\x43\x8c\x98\xed\x29\x55\xc1\x14\x94\x4c\xdc\x0a\xcd\x21\x3f\x76\xf4\xa6\xf4\x3e\xac\xa2\x77\x24\xe2\x23\x95\x14\xbf\x48\x7f\xdc\xd1\xbc\x1d\xcd\x8f\xaa\x68\x9e\xf8\x7c\x14\x14\x4f\x70\xb8\x76\xf4\x6e\x47\xef\xe3\x2a\x7a\xcb\x57\x5d\x05\xcd\xcf\xa5\x9f\xdb\xd0\x5d\x19\x8f\x9b\xc0\x92\x56\x17\xea\xd3\x86\x74\x4f\x24\x65\xeb\x42\xdc\x09\xef\x36\xb6\x77\x7c\x4f\x63\x7b\x2b\xf9\x3f\x9e\x14\x8f\x63\xa9\xa4\x1c\x73\x1a\x6a\xaa\xc9\x55\x41\x2a\xe5\x02\x7e\xf9\xe5\x19\x05\xa7\x2c\x56\x33\x4b\xe9\xc9\x22\x7d\xab\xc3\x37\xb3\x7b\xae\x55\x7c\x53\x6b\x12\x6c\x91\x1a\x54\x84\x53\x6a\x60\x02\xe3\x15\x37\xb8\x6a\x57\xe1\xc5\x65\x37\x3f\xc5\xeb\x92\x76\x5c\x9d\x4f\xa9\xeb\x3f\x6b\xc0\x0e\xb2\x24\x70\x7d\xe1\xca\x0c\x53\x34\x22\x74\x19\x9c\x90\x82\xe9\xea\xff\xfe\xef\xff\x93\x7f\x0e\x06\x6e\xf9\x29\x03\xcd\x72\x56\xa0\x8a\x7b\x86\x0a\xcb\x51\x65\xe9\xe9\x5d\x18\x8f\x98\xd0\x82\xd7\x85\x3d\x18\x0e\xe8\x97\x7d\xee\x41\xde\x62\x3f\x7b\x70\x52\x8a\xb5\xff\xf4\x29\xbb\x86\xc8\xec\xa6\x7d\x7a\x48\xab\x75\x18\xff\xb3\x02\xeb\xef\x96\xa9\x1e\x24\xc8\x36\x32\xd5\xe9\x97\xfd\x52\x9d\xb6\xd8\x13\xd5\x27\x4d\xa9\x9e\x4c\x4d\x45\xf1\xff\x68\x4d\xf1\x43\xcb\x8c\xfd\xba\x7d\xcd\xef\x9c\xba\xf4\x24\x9d\xb5\xbb\x29\x0c\x5c\x43\x87\x63\x8d\x18\x82\xcb\x90\xac\xed\x65\xea\x9e\xd1\x39\x01\x34\xf9\xf3\xb9\xd7\x99\xb9\x24\x29\x6a\x9e\x66\x03\xe5\x0c\x26\x15\x26\xfe\xb0\x41\x07\x05\x4f\xc5\x5b\x64\x60\xb8\x04\x1e\x4b\xb1\xf7\xbd\x6b\xfa\x9f\x2f\x68\x6a\xf8\xa2\x37\x45\x4e\x7d\xbd\x3a\x51\x61\x8f\xeb\xc3\xd6\x5a\x58\xc6\x7d\x19\xe5\x84\x13\x6f\xab\x16\x39\x6f\x75\x70\xe5\x3f\x72\x9c\xc6\xbe\x4d\xc9\x3a\x55\xf0\x29\xde\x1d\x14\x5a\x07\x44\x8a\x46\x6f\x56\x6a\x15\x8d\xd1\x28\x92\x63\xba\xe0\x94\xe5\x4e\xd1\x4a\x60\xd2\xd2\xae\xaa\x68\xce\x85\x1c\x77\xa6\xe0\x95\xab\x47\x5c\xb8\x0d\x24\x0a\xb3\x45\x26\x51\xc6\xdb\x56\x78\x49\xa9\x47\xbb\x39\x06\x45\x9d\x24\xd9\x5e\xcc\x44\xb2\xf9\xfb\x94\x26\xec\x77\x92\x2b\x32\xbc\x5d\xc9\x32\xbf\x9e\xbc\x71\x6e\x7e\x51\xdb\xfa\xd5\xb5\xb7\x25\xe1\xc2\x6f\x2f\x7c\x52\x67\xb9\x72\xc8\x2d\xc5\x4c\x5b\xe0\x0a\x4d\xc7\x8a\x2c\x3f\x81\xa8\x72\x1b\x78\x15\xdd\xf2\xe5\x71\x2e\xac\xa1\xb0\x3f\x47\x5d\x67\x7a\xe2\xb0\x4c\x4a\xcb\x7c\xcd\x9e\x4c\x11\xf2\xe5\x1b\x4a\xf6\xba\x22\xa8\xb6\x12\x28\x7d\x0a\xdc\x39\x93\x9f\xab\x85\x47\xe0\x46\xfc\x88\xe2\x29\x13\xb1\x62\x7c\xa6\x31\x8d\x97\x54\x69\xf6\xe1\x8c\x2f\x9c\x9c\x3c\xd5\xb6\x1b\x2d\x10\x26\x2f\x5d\x9d\x57\xbd\xe8\xa3\xd1\xb6\xd3\xb9\xb8\x7a\x7d\x24\x4b\x86\x3b\x27\x10\x11\x6d\xe2\x2d\xa1\x41\x10\xf2\x89\x17\x26\xb2\x15\x60\x0f\x88\x22\x03\x12\x90\xb6\xa8\xd7\x4e\xa2\x0d\x67\xa0\x06\xc7\x2f\xad\xb7\x25\xe2\x31\xa4\x18\x2d\xed\x00\xad\x36\xed\xb4\xe1\x0d\xb7\x43\xb0\x72\xdf\xfb\xad\x76\xe5\x8b\x70\x24\x14\x13\xaa\x7f\xbb\x86\x59\xbb\x30\x99\x6d\xfb\x94\xdf\x94\xf4\xe4\x2f\x07\x8c\x68\xdb\xd2\x9b\x0c\xaa\x62\x6a\x2a\x1b\xc6\xf0\xb7\xd8\xc3\x30\x3a\xc7\x68\x89\x72\x38\x6c\x8d\x96\x7c\xf3\xbc\x6c\x01\x8b\x42\x3f\x46\x4b\xe0\xfb\x12\x18\xa3\x0a\x8e\x88\x0d\x07\xb6\x49\xd6\x2e\xe6\x5d\xab\x9b\x68\x86\x79\x27\x5e\x6d\x9a\x0b\xcd\x89\x07\x8d\x53\x10\xb4\x32\xa7\x36\xce\xb6\x6f\xbd\xd4\x99\xcb\x5b\xf2\xac\x2a\xfc\xd6\x0c\xaf\x2a\x5d\x0a\xb6\x0b\x09\xf0\x7c\x29\x0c\x5a\xd2\x4c\x3e\xd7\x9f\xf2\x95\x86\xcf\xbc\xd1\x6c\x09\x09\xf6\x1c\xc5\x62\x2e\x2f\x5b\x2f\xba\x58\xa0\x95\x17\xcc\xb3\xce\xce\xc4\x38\xdb\xa1\x29\xf1\x9e\x89\x5c\xd5\xab\x52\x34\x65\xef\xc8\x21\xe2\xed\xe2\x87\x6a\x30\x16\x36\xe4\xb0\xce\xac\x2a\x1a\x01\x66\x3a\xd4\xd1\x58\x75\x12\xd1\xe7\x26\x7a\x5c\x4e\x0e\x32\x67\x56\xf3\xa0\x0c\x34\xd7\x42\x9d\xa9\xe4\xad\x65\xbe\xf0\x18\xa6\x27\x7d\x46\xa9\xc2\x64\xcb\x93\x61\x52\x19\x3c\x35\xc1\x00\x81\x2b\xa3\x1d\x7d\x1b\x97\x8b\xd2\x5d\xa0\xcf\x8b\x86\x2a\x31\x64\xbb\x37\x8d\xb7\xeb\xe7\x27\xe3\xe9\xbe\xa6\x9a\x80\x94\x28\xd2\xe0\xc6\xb1\x00\xd1\x79\xa1\xea\x40\x97\x92\x7d\x55\x80\x5e\x1d\xad\x1b\xcd\x2e\x0c\xe9\xe0\x8d\x64\xf4\xfd\x1d\x00\x4a\xb1\x9f\x83\xab\x13\x19\x82\x4d\x8b\x1d\x96\xb6\x73\x05\x42\x1d\xc9\x27\xfc\x30\x61\xda\x2c\x04\xb3\x5e\x54\x6e\x71\xab\x96\x77\x53\x9f\x7b\x55\x95\x96\xb4\xd5\xbd\xfa\x81\x90\x5f\xdf\xee\x7f\x79\x56\x5d\xf9\xa3\x73\xf4\x9f\x2a\x74\x73\xc3\x2d\xf5\x9e\x91\xd0\x38\x29\x9c\x01\xaa\x25\xd4\x4b\x14\x21\xdf\x42\x39\x8e\x6d\x1e\x48\x58\xd9\x68\x4d\x50\x61\x0f\xf1\x7c\x99\xd7\xf2\x24\xaf\xfd\xdc\xbb\xd0\xbe\xfb\x0a\xd0\x57\xb9\xa7\xa5\xa8\x92\x71\xb7\x20\xbf\x0d\x41\xfb\xb4\xb1\x25\x7a\xc8\x3e\xed\x2b\xf5\x80\x7d\xda\x57\x6b\xe0\xfa\xb4\xef\xd5\x81\xf5\x69\x5f\xac\x86\xea\xd3\xbe\x56\x03\xd4\xa7\x9f\x9f\xef\x89\xdb\x53\xbb\xd7\xf4\x30\x7d\x7a\x92\xec\x40\xfa\x5a\x6f\xbe\xf1\x5e\xb7\xcd\xd7\x05\xb8\xaf\x14\xd8\x53\x86\xf0\xd3\x67\xd5\xcd\x11\x41\x27\x52\xab\xc5\xf7\x5b\x84\xf7\xd4\x63\x00\xb6\xc9\xb3\xdd\xd4\xf1\xdd\x87\xeb\x3b\x77\x42\x35\xf2\xd2\xb5\xf1\x7d\xcb\x80\xb3\x0c\x52\x7e\x0a\x61\x60\x30\x25\x50\x5d\xd3\xa6\x91\xf3\x5b\x59\x8f\xae\x0f\x1d\xa0\x03\x64\x71\x9d\x21\x41\x4d\xb7\xbc\x1d\xe1\x48\x03\xae\x51\x02\xd5\x48\x51\x30\x06\x79\x15\xb7\x36\xb9\x56\xe2\xe7\x47\x0f\xae\x28\x5f\x14\x86\x53\x9d\x16\xa6\x2a\x78\xcc\x6e\x2f\x31\x06\x3e\x4b\xb3\xc8\x6f\xdb\xc6\x0c\xd0\x55\xe3\xd5\x0b\xde\xae\x98\x9a\xb7\x1c\x2f\xa1\x96\x93\x7d\x5d\x6b\xd2\xdc\xc3\xad\xde\x65\xae\x7f\xbe\x58\x4d\x97\x3f\x7b\xea\xbb\x0c\xa0\xd2\x7a\x01\x30\xc3\xe4\x07\x24\x5e\x52\x65\x2a\x70\xe1\x8d\xd2\x0e\xc1\x34\x6d\xe0\x38\x08\xbb\xea\xec\x9d\x2b\xb8\xe6\x66\x7b\x4c\x9e\xde\x84\x20\x70\x79\x55\x9d\xe0\x92\xdb\xd5\x12\x80\x19\x80\x31\x58\x9b\x85\x2c\xcc\xc4\x21\xe6\xa5\xb6\x6c\x2f\x4a\x1b\xa9\x8d\x03\x0d\xa9\xb6\x12\xc9\x40\x9e\x77\xab\x7b\x83\xde\x75\x6f\xd0\x59\xf7\x16\x0b\x4f\x3a\xf3\x1f\x9f\xee\x17\x42\xd9\xb8\x35\xff\x75\x52\xdc\x3b\x5f\xb9\x7a\xc4\x88\xff\x2e\xe4\xb9\x56\xa6\x83\x7c\x1f\x84\x11\x65\x30\x64\x0c\x69\x9c\xe5\x7e\x5b\x31\x30\x52\xac\x87\x11\xa0\x15\x06\xa1\xd2\xea\x93\x9f\x10\x4f\x9d\x5e\x80\xa8\x3e\x55\x2d\xa7\xfd\x24\x8f\x1b\x5c\x91\x56\xa9\xa6\x4d\xbc\xc7\xf9\x4b\x74\x89\xc8\x89\x73\x99\xdf\x66\x12\x24\xdb\xa6\x3e\xcc\xdc\x14\x53\xc1\x63\x12\x44\x80\x2f\xe7\xcd\x6d\xe0\x98\xac\xa4\x51\xa6\x8f\x7c\xab\x54\xca\xaa\x7e\x74\xa7\x91\xde\xb9\xa5\x4a\xf9\x4f\x6a\x43\x15\x26\xd9\x36\x89\x7f\xa3\xea\x45\xba\x97\xbd\x80\xea\x9c\x36\x3b\x1a\xf2\x11\x0a\x7d\x6e\xb3\x1c\x39\xe6\xa4\xdc\x4a\x69\xfd\x0e\x5b\x01\x8e\x17\xee\x2e\x49\x78\xa4\xcd\xfd\xca\xf6\x14\xe0\x62\x22\x82\x17\xbd\x4d\xed\x08\xb9\xb1\x7c\xfe\x9c\x14\x4c\xdb\x10\xa3\xa7\xc0\x00\x3a\x4d\xb5\x41\x63\x06\xdc\x5c\x79\xbb\xb7\xc8\xc8\x28\x51\xbb\x12\xbb\x0c\x4a\x7d\xcd\x53\x11\x2b\xfb\xf9\x14\x05\x04\x78\x01\xc4\xbd\x11\x4f\xde\x44\xe5\x8d\xd4\x42\x60\x55\x59\xd3\xb7\x65\x25\x00\xbd\x5b\x09\x40\x67\x2b\x41\x49\x4d\x98\xec\x17\xf4\x04\xdd\xa6\x2d\x91\xa7\x5e\x02\x68\x76\x9f\x66\xa1\xc9\x9a\x8a\x7a\xad\xf1\xed\x5a\xca\xc6\x2e\xc8\x76\x91\x15\xa4\xfe\xc5\x8c\x42\xdf\x23\x0c\xa2\xab\x22\x85\x49\xec\x53\xa4\x0e\xca\xf7\xe1\x1c\x06\x6e\xb5\xcb\x89\x9b\x2d\x5c\x40\x40\x9b\x5a\x9f\xbe\xa7\x3d\x2a\x93\x44\x27\xf6\x5d\x9a\xbd\x5b\x38\x3a\xb3\xba\x7e\xfc\x61\x1e\x62\x25\x95\xa2\x07\x2c\x62\xee\x4c\x28\xfd\xc9\xcf\x99\x1a\x1e\xd9\xfc\x09\x29\x54\xad\xba\x07\x5e\x53\x53\x12\xd2\xac\x11\x66\x6b\xa8\x3d\xa3\x1b\x69\x08\x0e\xf2\x11\xb6\xa3\x15\x20\xce\xa2\xa4\x28\x94\x08\xa2\xf9\xf2\x88\x99\xa7\x1c\xc0\x22\x4f\x79\x5b\x36\x37\x2e\xed\xe5\x6a\xc7\xe5\xc7\x5b\x61\x96\xd4\xc6\xbf\x09\x7a\x64\x01\x7d\x05\x32\xe9\x43\xac\xeb\xdb\xf6\x13\xc5\xbd\x4e\xe1\xc9\xb1\xbe\x5d\xe2\x55\x9d\xc4\x9c\x58\x7b\xad\xa5\xac\xd6\x12\xd7\x2c\x82\xe4\xb6\x0c\x01\x92\x28\xec\xeb\xf6\x9f\x43\x8e\xdc\xaa\x05\x00\x7e\x38\x7f\xf3\x73\xf4\x01\x7c\x3b\xde\xcc\xcc\xbb\xd2\xdc\x8d\xd9\xb9\x66\xb0\xd9\xa0\x5a\x57\xb5\x17\xb1\xe0\x3d\xbc\xcc\xc5\x5b\xb5\x72\x1e\x7e\xc7\x0e\x43\x69\xbf\xc8\x15\xbe\x1e\x9f\x1e\xb7\xf1\x55\x98\x7d\xea\x6f\xdf\x4a\xde\xbe\x9a\x74\x23\x45\xea\x76\xff\x70\x20\x3b\x82\xeb\xbd\xda\x32\xc1\x1d\x14\x07\xba\x34\xd1\xd3\xe4\xb7\x1d\xc9\x5b\x92\x5c\x05\x4f\xc0\x48\x2e\x5d\x0d\xcc\xdf\x62\x18\x43\xf7\x1d\xbe\x20\x00\x13\x2f\x98\x0b\x4b\x4f\x82\x0b\xa1\x64\x49\xc9\x9e\xb5\x63\x4f\x07\xf6\x94\x5c\xcd\xf2\x8e\xc0\x30\x82\xf8\x1a\xba\xcc\xf1\xaf\x64\xc2\x7b\xf1\x84\x21\x1e\xd9\xd1\xbf\x25\xfd\x4b\x60\x5a\x2a\xfa\x27\x41\x14\xd5\x2c\xc8\x9e\xda\x71\xa1\x25\x17\x0e\x9a\x70\xe1\x69\xb8\x80\x4b\x88\x81\x7f\xe6\x45\x57\x75\xcc\x48\x9e\xa9\xab\xf3\xbf\x8b\x84\x51\x73\xe4\xa8\x83\x56\x29\x0c\xa3\x59\x83\xf9\xf8\x97\x2c\xf0\xb7\x3a\xe8\xa5\x1e\xcd\x46\x46\xf8\xbf\xdd\xa0\x17\x6d\x48\xc6\x2d\xbb\xdd\x0b\x4c\xe9\xed\xc6\xcd\x01\xbd\xb7\x7a\xd7\x5e\x8e\x26\x63\xe7\xf8\xc7\xe3\xb6\xb8\xb0\x87\x96\xb9\x18\xe9\x53\xf7\x55\x77\x6c\xb1\x20\x19\x38\x03\x5f\x3d\x69\xf2\x7e\x11\x87\xb9\x22\x72\xa3\x99\x6b\x2e\x73\x00\x19\x04\xcc\x0b\x49\x80\x9a\x8c\xbf\x91\xe2\x21\x9d\xd9\xcb\x54\x81\xd7\x2a\x9d\x65\x99\xd1\x51\xd5\xb6\xe9\x72\x7b\x42\xce\x86\x57\x1b\x34\x94\x6c\xed\x15\xb2\x23\x02\x43\x3b\x49\xef\x4b\xf6\xb6\xe7\xfa\xf0\x92\xc7\xb3\x39\xac\xfe\x67\xf2\x07\x0a\x66\x1e\x5e\xe6\xff\x62\x4a\x63\x86\x80\x00\x56\xc0\xa3\x4a\xe7\xa9\xf4\x2b\x17\x11\xfc\x0b\x76\x08\x5c\x10\xa6\xb2\x8a\xe2\xa2\x96\xf9\x0b\x8c\x2c\x43\x7c\x79\x82\x21\x13\x8a\x51\x2c\x3e\xac\x00\x95\x88\x88\x55\x32\x4f\x4b\x9e\xff\x23\xad\xbb\x4a\x50\xf8\x4a\xb8\xb2\xa4\x14\x42\x75\x29\x57\xf1\x6c\x2b\xb1\x52\x0d\x08\x73\x0f\x48\xc9\x83\x59\x8a\xb4\xe4\xdf\x56\x10\x13\x60\xa2\xa2\x26\xc0\xa4\x39\x39\xc5\xc3\x2d\xe9\x79\x07\x02\x97\x0a\x86\x9e\x44\x2d\xc4\x1e\x72\x3d\xe7\x5e\xd4\xa4\xfb\xf8\xfe\xdc\xf9\x32\x74\xd4\x48\xcd\xdf\x77\xcd\x8b\xaa\x31\xee\x6a\xd2\xed\x6a\xd2\xed\x6a\xd2\xed\x6a\xd2\xed\xca\x83\xec\x6a\xd2\x7d\xfb\x35\xe9\xee\x2a\x11\x36\xa7\xf8\xf4\xab\x4c\x6d\x59\x8d\x0a\xdf\x0e\x5f\xae\xce\x9f\x47\x3b\x35\x6a\x93\xd2\x61\x77\xaa\x40\xf5\x5d\x5d\x2c\x5d\x89\xba\xfc\xfb\x46\xa8\x79\x25\xb4\x1b\x86\x3f\x96\x64\x2f\x35\x42\xd2\x33\x67\x08\x3b\x90\xa3\x7a\x9a\x25\x10\xbd\x67\xf4\x47\x23\xfd\x75\x57\x03\x6d\x57\x03\xed\xbb\x50\x72\x36\x1a\xed\x29\x56\xac\x1a\x5d\xb9\x4f\x89\x89\x42\x24\xa4\xb0\x37\xe6\x45\x08\x9d\xe2\x14\xda\xa0\xcb\xec\x6a\xb5\xdd\xdf\x5a\x6d\x82\xd9\x6a\xbd\xe6\x2f\x2d\xf5\x9a\x08\xe2\x6b\xcf\xd9\xb6\x2d\xfe\xc3\xc7\xbd\xe7\xef\x86\x07\x68\xa7\xd6\x6c\x6e\x1d\xea\xaf\x2e\xea\xce\xf4\xb3\x3b\x93\xff\x14\x67\xf2\xf7\x67\x78\x50\x80\x37\xdf\xb9\x94\xd8\x99\x44\xee\x8f\x49\x44\x1c\xf3\xfd\xd8\x42\x12\x19\xb2\x55\x95\xe1\x5d\x84\xae\x7e\xfc\xf1\xa7\x78\xa7\x32\xec\x54\x86\x9d\xca\xb0\x53\x19\x76\x2a\xc3\xce\x57\xf1\x2d\x1e\xcc\x6c\x73\x6d\x7c\x2e\xb3\x00\xc7\xad\x9e\xc7\xc1\xf9\x33\xf7\xfd\x4f\x3f\x1c\x36\x3b\x8f\x0f\x2d\x93\xb8\xb9\x4d\xae\xf2\x33\x27\x92\xbd\x0c\xd3\xe4\x45\x76\x88\x3d\x01\x0a\xa1\xf1\x12\xfb\xc0\x0b\x58\xd9\x05\xc5\x49\x5e\x96\x1a\x99\xa4\x68\x86\x71\x64\x29\xe6\xd0\x2a\x52\xef\x16\xa2\xf3\xca\xd2\xbe\x3c\xc6\x7c\x6b\xae\x17\x85\x3e\x58\x5f\x16\x0e\xb0\x76\x8d\xa8\x0e\x9f\x66\xa4\x32\x35\xa0\x62\x69\x88\x6e\x92\x6f\xd3\x2c\x32\xb0\xa2\x81\x0d\x82\xe5\x6c\xbb\x59\x34\x58\x83\x15\xd1\x04\xc3\xc3\x6c\x44\xa1\xce\xa0\x1d\x12\x8d\xba\x23\x76\x98\x1b\x20\x75\x48\x27\x43\x3f\x30\x1d\xe6\xfd\x81\xe7\x30\x7b\x85\xe5\xe8\x44\xa9\x44\x85\x29\xcb\x82\xdb\x88\x5c\xc4\x68\xb5\xf1\xd9\x95\x16\x68\xd9\xea\xf9\xf5\xe3\xcd\xc7\xd9\xf1\xec\xc5\x9b\xc6\xe7\x57\xf3\xac\x69\x23\xc1\x3f\x32\xc4\x3e\x67\x33\xf1\x52\x48\x48\x59\x50\x08\xd7\xa1\xf1\x6f\xb2\x4c\xcb\x4a\xd8\xf0\x32\xb1\x2a\x80\x80\x3a\x77\xb2\x1c\x18\x1e\x02\x0f\x1b\x8a\x8d\x91\xbf\x67\xe9\x3d\xd3\x10\xcb\x75\xdb\x2e\x78\x2a\xb6\xce\x1d\xad\x1f\x51\x52\xa9\x49\xd0\xa6\x30\x9e\x2a\xb7\x97\x54\xd3\x47\x74\xae\x77\x75\xa9\x34\xf9\xca\x5a\x48\xfd\x12\x87\xd5\x1c\x52\x82\x08\xd7\xb5\x24\x2a\x31\xb9\x80\xe4\xa0\x29\x94\x25\x97\x1a\x16\x39\xaa\xc2\xa8\x2f\x9e\x33\x59\x93\xae\x37\x9b\x35\x85\xf4\x4c\x82\x0f\x54\xb5\x3d\xb2\xe8\x83\x94\xe3\x54\x14\x00\x87\x18\x4d\xca\x7e\x88\x92\x1f\x67\x7c\x34\x19\x41\xc6\x0c\x17\x31\x98\x43\x71\xd6\x37\x42\xd3\x3c\x65\x6f\x24\xfa\x57\xee\xfd\x0a\xaa\xb5\x8d\xb1\x6f\x56\x73\xab\x78\x34\xd1\xb1\x44\x0d\x4e\xa6\x6a\xfe\x15\x50\xca\x36\x2f\x35\x91\xc2\x33\xb8\x00\x5f\xa9\x37\x86\x74\x17\x63\x8b\x26\x3d\xee\xf8\x5f\x74\x4d\x4d\x51\x24\xc5\x81\x96\x16\x59\xb6\xc1\xf9\x83\x5a\x37\xf2\x5d\x96\x57\x10\xa3\xec\xeb\xa4\x8b\xec\x88\x60\x08\xb6\x6d\x41\xbd\x7a\xff\xf5\xd9\x59\x7c\xf3\x55\x9d\x00\x85\xa1\x83\xb0\xba\xaa\x62\xae\x42\x07\x08\x02\x44\x1f\x70\xc5\xc9\xc5\x2d\x42\x52\xed\xf9\x84\x78\xea\xea\xf3\x45\x4c\x3a\xca\x1e\x6e\x6a\x5a\x9d\x01\x52\x5f\xdf\xce\x2c\x43\x30\xe5\x32\xb2\x96\x90\x9d\xb8\x01\x22\xda\xca\xc6\x79\xa1\xca\xc4\x6d\x36\x9e\xd6\xd5\xe3\x9a\xae\x4d\x2b\xb7\x01\xeb\xc6\x8f\xd8\x82\xa8\xdd\x74\xe9\x68\x93\x7d\x97\x0d\x3f\xb7\xf5\xf2\x73\xeb\x69\xd7\x8d\x6e\x69\xdb\x25\xdb\x65\xb3\xed\x17\xa1\x80\xe1\x87\xc1\x6d\x57\x48\x5e\xff\x18\xef\x2f\x7e\x79\x0d\x9b\x29\x9a\x49\x59\xaa\xeb\xb5\x4d\xb5\xa1\xa5\x97\xf7\x31\x70\x84\x2a\xcb\x44\x61\xaa\x4d\x8a\x7b\x43\x84\x82\x0b\x82\x53\x0b\x7e\x3e\x28\x7f\xc9\x14\x2b\x93\x2c\xe0\x92\xfd\x17\x4c\x2f\xd8\xb9\x68\xd2\xc5\xf6\x96\xe9\x98\xcc\xee\x02\x81\xfb\x2e\xf0\xf9\x3e\xfe\x02\xae\x01\x2f\x11\xcc\xaf\x9f\x0b\xcf\xa6\xbf\xdb\x88\x3e\x60\x8d\xd9\xf2\x4d\xee\x29\x9a\xab\xca\xe6\xab\x22\xe3\xe2\x46\xab\x41\xba\x6d\x6f\x77\x31\x7c\x3d\x7c\xf6\x32\x3c\x5b\xfc\xb3\xf1\xad\x23\xba\x9e\xe7\x24\x05\x46\x2c\x92\xd5\x5b\x32\x6c\xa3\x7c\x95\x4e\x1f\xba\xd3\xb5\x5c\xaa\x33\x43\x53\x63\x6e\x20\x3b\x51\x7f\xa0\xcf\xfa\xe0\xc6\xb2\x22\x84\x5c\xf6\x92\x0b\x23\xa7\xea\x9d\x12\x64\x5c\x62\x13\xe1\x3e\x27\xc9\x10\xc6\x81\xa3\x3b\x0c\xeb\x73\x41\xf1\x4b\x52\x6e\x75\x0a\xee\x61\xbe\xb0\x75\x93\x31\xb4\x9c\x65\x59\xf1\xca\x57\xd2\xae\x33\xa6\x98\xd9\x64\x72\x2f\x6e\x64\x14\xf9\xa7\x0d\x6e\xbc\xc8\x60\x8b\x33\x32\x30\x55\x28\x8d\x19\x46\xcb\x9c\xa5\xec\xe6\x3d\x57\x81\xcd\x99\x87\x23\xf2\x4e\x9c\x30\x79\xf5\x99\x20\xf5\x2b\x3e\xd0\xbc\x61\xa5\x47\x2b\x08\x5c\xe3\x97\x26\xe3\x58\xb7\x1f\xc7\xba\x76\x1c\x83\x56\xe6\x11\x69\xb1\xcc\x22\x4d\x0a\x55\x7a\x52\x07\x10\xe0\xe7\x18\xb8\xac\x76\x8a\xbc\x17\x6f\x46\xa6\x65\x0e\xcd\xe4\xaf\xb1\xfc\xd7\x3a\xf7\xdb\x9a\xfe\x36\x32\x95\x80\x91\x63\x01\xf3\x9e\xd9\x81\x4b\xeb\x75\x4c\x69\xe5\xfb\x89\x71\x5b\xeb\xe3\x64\x69\xc9\xaa\x9b\x25\x11\x76\x46\xfa\x25\x9a\xcd\x22\x48\x65\xfa\xf0\xff\x31\x35\x10\x8a\x75\xed\x09\x5c\xcd\x5c\x6b\xa3\xa1\xae\x3d\xed\x4d\xd8\xf1\xbd\xf0\x1c\xc8\x75\x83\x4a\xd3\x5e\x82\xe8\xaa\x6e\xda\x21\xd0\x94\x1e\xa2\x34\x4b\x68\x9e\x6b\x15\x60\x08\x4c\x1d\x82\x64\xb5\x27\x30\xed\x75\xae\xec\x72\x6d\xcf\xb1\xc7\x8a\x82\x44\x46\xfa\x29\x19\x03\xc1\x20\x88\x44\x5e\x32\x77\x09\xd0\x2f\xd8\xe1\x60\x72\x89\xb0\x3e\xb9\xf1\xa2\x77\x9c\xa4\x9f\x2d\xd3\x32\x86\x0f\x4d\xe5\x30\xcb\x83\x28\x21\x72\x82\xe0\x1a\x44\x86\x69\xa9\x57\x98\x72\xad\x6b\x29\x29\xe7\x09\xe4\x28\xc9\x7f\xa8\xa0\xe4\x21\xd5\x2a\x1c\xa2\x6c\x95\xb3\x41\xec\x9e\xdc\x76\x49\xff\x18\x59\xe6\xca\x73\xe9\xa8\xb2\x3e\x73\x44\x4a\xb7\xcb\x02\xb2\xab\xb5\xf4\xdc\x8d\xf2\x39\xb6\x28\x04\x8d\x62\xec\x3f\xf8\x37\x41\xa1\x64\x83\x59\xe6\xc3\xac\x2a\x2f\x5d\xa1\x36\xa7\x4a\xf9\x8d\x64\x6d\xa6\x6f\xb4\xa7\xc0\x02\x5d\x43\x6c\x13\x80\xe7\x90\xdc\x29\x25\x54\xeb\xa9\x76\x91\x33\x4d\x63\xe1\xb9\x2e\x0c\x58\x92\x0c\x87\x50\x95\xe7\x73\xc3\xe5\x3f\xfd\xa7\xc1\xa2\x1f\x5a\xc9\xf2\xbc\xc9\xaf\xfb\xc6\x8b\xbe\xd1\xa0\xd6\xad\x06\xd5\x6e\x27\x2a\x3d\x70\x95\x35\xfc\xd8\x4e\xb4\x45\xa5\x75\x96\x8e\x13\x80\x30\x54\x15\xf2\xf3\x22\x51\x39\x9f\x1e\x6b\x20\x29\xa2\xef\x05\x79\xec\xdf\x94\xed\x11\x59\x33\x8c\x15\xa6\x26\xf1\xe6\x2f\xd8\x57\x1a\x2d\x2d\xac\x3e\xf7\xda\xe3\xdb\x36\xf2\x82\x96\x80\x82\x75\xc2\x49\x75\x26\x09\xbd\x49\x82\x47\x4e\xaa\x64\xd4\xdd\xcb\x9b\x4c\xac\x04\x0a\x9c\xef\xea\xa3\xf8\xb9\x99\x6d\xb5\x6f\xe7\x4b\x76\x83\xd9\xf0\x22\x94\x2f\x13\xb3\xd5\xcb\xd0\x8b\x93\x59\x40\x96\x50\x1d\x42\x90\xa0\x82\xeb\x81\x79\x8a\x96\x29\x17\x3a\x08\x03\x02\xdd\x0b\x8e\x0d\x5b\x6f\x09\x1d\xed\x59\x63\x65\x12\x3b\x03\x64\xb5\x38\x82\x96\x95\x8c\x24\x31\xb0\xa6\x37\x88\x0c\xa4\xab\x50\x7e\xe7\x51\xfa\x29\x45\xd1\x4d\xed\xb3\x96\x89\x82\xf4\xc3\xa9\x5f\x30\xd1\x64\xf5\x34\xf4\x68\x54\x47\x16\xc7\x4d\x4c\x83\xba\x34\x0f\x2d\xe3\xaa\x22\x16\x62\x07\x08\xdb\x54\x25\xf4\x55\x56\x24\xa8\x80\xd9\x2e\xff\xad\xac\x91\xf1\xb9\xbe\x83\x9e\x66\x23\x76\xe5\xdd\x4c\xe7\x73\x06\x57\xde\x64\x0d\x24\xa1\x89\x9f\x72\x4b\xa8\xd8\x51\xa3\xd1\xf0\xc7\xee\xc4\x22\x97\x9f\x4e\x8f\x52\xa7\x48\x99\xed\x0a\x21\xe7\xad\xfb\xe5\xef\xab\x5f\xce\xda\xc2\x82\xf5\xef\x7c\x29\x2f\x18\x85\xed\x57\x46\xe2\xba\x5b\xc7\x48\x25\x13\x6f\x67\x79\x70\x31\xbc\xd5\xe5\x11\xcd\x8e\xc0\xeb\xf3\x9f\xd5\x06\xbb\x6a\xd4\xb8\x7a\x3e\xd3\xf9\xd9\x0c\x83\x31\x28\xd9\xfa\x4b\xdc\x56\xaa\x9a\xc5\xdc\xef\x32\x3c\x5c\x03\x17\xac\x91\x8d\x88\xbb\x5c\x13\x65\x34\x0e\x7c\x18\x45\xd2\x22\xe7\x45\xdf\x12\x0f\xbc\xc9\x72\xc8\xaf\xbd\xc8\xe3\xf1\x00\x79\x7d\xb4\x36\x9f\xbc\xac\xef\x66\x67\x1f\x97\xd3\xe2\x78\xcc\xbe\x28\x08\x7d\xf1\x1e\x97\x96\xa5\x8c\xf4\x5c\xc4\xe8\xd8\x2a\xd4\x55\x2b\x9a\xdb\x6e\x43\x65\xab\x58\xd6\x9b\x6f\x98\x10\xcc\xbd\x20\xa9\x0f\xb9\xcd\x2d\xf2\xfc\xb7\x93\xc3\x97\x60\x38\xdb\x4c\x82\xa6\x80\xfe\x8d\x4a\x8a\x26\xbb\x43\xa9\xbd\x31\xbb\x22\x8b\x53\x84\xd7\xa6\x65\x06\x1c\xb9\xce\x07\xfc\x4b\x30\x87\xaf\xbd\xe0\x2a\x2a\x25\x13\xb3\xf8\x38\xfa\x39\x35\x99\x45\x27\x84\x5b\xbb\xf8\x07\x9f\x55\x31\xd4\xaa\x7f\x19\x43\x52\x06\x41\x9e\x5f\x61\x12\x98\xf6\x4d\x2f\x1a\xe9\x8e\x49\xc7\x2a\xdc\x3e\x6a\x28\xc5\x50\xa4\x8b\x8c\x1a\x6b\x21\x9d\x86\xc2\xc9\xc5\x5a\x74\xa1\x53\xec\x3d\xa7\x5b\x6d\x75\x9c\x9c\x9f\x5c\x7a\x04\x9b\x8c\x93\xff\x45\xd7\xc5\x79\xee\xdd\x5b\x1a\x37\x5f\x80\xa5\x4e\x7b\x1b\x69\xf2\x02\x5f\xdd\xb9\xaf\x94\x6d\xc8\x40\x8a\x74\x81\xa7\xdf\x88\x05\x9f\xbd\x23\xaa\x77\x56\x2b\x9f\xbd\xeb\x1a\x19\x91\xfb\x14\x96\x32\xc3\xb6\x2b\x37\x4f\xd1\xeb\xf0\xc5\xe5\xf0\xb4\x46\x6e\x5a\xe6\x7f\x26\x80\xf9\x95\x02\x34\x5d\x6a\x15\xd1\xc1\xda\x88\x7b\x8e\xf0\x96\xa1\x22\xab\xdd\xc8\x39\x88\x84\xe2\xbe\xab\x82\x67\x53\x28\x33\x4d\xab\x0c\xdd\xe2\xb2\x92\x96\xc2\xe6\x2b\x4c\xd4\xa7\xd9\xea\x8a\xfa\x01\x84\xcf\x5e\xbd\xfa\x72\xd1\xf6\x24\xd6\x9e\xa4\x79\x3b\x48\x8a\xf5\xae\x3d\x02\x19\x11\x1e\xb1\x7f\x13\xcb\x87\x24\x8d\xab\x9f\xcf\x6e\xc9\x18\xad\xa4\xc8\x06\x85\x59\x47\x2f\x98\x79\x83\xf2\x40\xd3\x45\xcb\x6b\x4f\x54\xd5\x07\x6a\x54\x05\x48\x21\x06\xfb\x59\x97\x6c\xe8\x3d\xad\xc3\x94\x02\x5b\x2e\x70\xfd\xe2\xf5\x0f\xfb\x07\x8f\xde\x77\xd0\x0c\x35\x18\x94\x6a\xcc\xc9\x86\x35\xa0\x38\xb2\x7f\xca\x5b\x9e\xdd\xa8\xe4\x70\xb5\xd2\x79\x97\x87\x60\x8e\x9d\x7d\xad\x0e\x69\xc3\x6d\x77\x81\x1c\xbe\x79\x75\x1c\x8e\xe1\x44\x13\x92\x88\x56\xad\x0c\xc0\x5c\x6e\xe4\xa2\x11\xf9\x0f\xec\x8f\x3a\xb6\x8e\x53\xa3\xdc\x5d\x1b\xd9\x8a\x4c\xe9\x97\xcd\xf7\xc0\x88\xe2\x9c\x06\x67\x07\xe8\xe8\x63\x07\x23\x0a\xc1\xda\xfc\xaa\x4a\xeb\xc8\xad\x30\x67\xe3\x8b\xfb\x32\xf6\x89\x67\x47\xd0\x87\x0e\xb1\x5d\x8c\x42\x17\xad\xb6\x7d\x7d\xff\xf8\xeb\x99\xb7\xff\xdb\x07\x35\x16\x93\xe9\xba\x69\xb4\x61\x99\x3f\xfb\x96\x39\x05\x91\xe7\xc8\x53\x61\xbb\xef\x3f\x17\x08\x7b\x5f\x51\x40\x2f\xd4\x28\xf2\x04\x1c\xfc\x7f\xa6\x9e\x8f\xff\x94\x5c\x1f\x26\x2b\x5e\xdd\xa3\x87\x40\x61\x8f\x6d\xe3\xed\x70\x40\x48\x62\xac\xb8\x64\x35\x71\x65\x54\x8e\x41\xf6\x51\xa8\x85\x51\xba\xb6\x0f\x52\xdb\xff\x25\xf6\xe6\x73\x9e\x02\xf4\x29\x97\x5d\x91\xd0\xdc\x26\xc9\x13\x2c\x91\x82\x9b\x83\xae\xe0\x5a\xf0\x43\x07\xe7\x80\x42\x18\xbc\x0b\x4e\x30\x46\xab\x33\xf1\x64\x22\xfc\xa4\x4b\x25\x65\x67\xc5\x50\x6b\x6d\xda\xc5\x41\xda\x95\xde\x63\x61\xa8\xf3\xb5\x26\xba\x82\xc9\x88\xed\x23\xbe\xb6\x1a\x59\x8d\x2a\xfc\xd4\x65\x20\x4e\xbf\x90\xaa\x51\x2a\xcb\x9a\x04\xa7\x29\x87\xa1\x29\xe8\xda\x32\x5a\xbc\x8b\x1b\xbb\x44\x72\xcf\x41\x81\x01\xa9\x08\xb0\x43\xb4\x82\x38\x91\x3f\x22\x4d\x91\xfe\xac\x0a\xdc\xd2\x47\xd3\x29\x56\xe9\x69\x62\xc4\xd6\xae\xd2\x34\x62\xb9\xc5\xaa\x8a\x7d\x55\xec\x2b\x15\xcb\x53\x74\x63\x56\x56\x76\x66\xf6\xe2\xb4\xcb\x5c\x82\x02\xd7\x06\x5a\xd6\x79\x56\x11\x38\x15\x8b\xec\x67\x02\xa6\x5e\xe0\xc2\x1b\x39\xd2\x0f\x05\xf5\x1b\x91\x60\x70\x0d\x71\x04\x5f\x7b\xdc\x3c\x24\xee\xdf\x6a\x73\x76\x71\x84\x6c\xa7\xe8\x21\xe0\xa5\x47\xbd\x20\x8c\xf3\x41\x48\xd2\x80\xed\x2c\x36\x71\x01\x9d\x2b\xe8\x66\xb1\xc0\x04\x78\x41\x24\x15\xcb\x16\xd4\x2b\x2e\x7d\x79\xc0\xc2\xfa\x9f\x66\x5c\xe9\x26\xce\xbd\xb0\xaa\x29\xb3\xe1\xad\x43\xca\x6d\x36\x20\x89\xdd\xaa\x92\xcc\xd9\x7e\xe4\x63\xbc\xa5\xaa\xca\xe3\x4d\xf2\x92\xd3\x55\x93\x54\xdd\x56\xb2\xeb\x2d\x32\xc4\xaa\x6d\x25\x34\xaa\x70\x4c\x2a\x76\xb1\x52\xb9\xed\x45\x75\x52\x2a\x3a\x1b\xa9\x4e\x21\x98\x43\xdb\x07\x6b\x14\x6f\x3b\x86\xff\x17\x74\x32\x7d\xf3\xcb\xc1\x87\x0e\xb7\xda\xb9\x8f\xa6\xc0\x67\x7a\x24\xc4\x65\x2b\x1c\x0a\x5e\x80\xe5\x34\xc6\x73\x88\xd3\x32\x65\xcc\xbe\x96\xbe\xd1\x42\xf9\x78\x1e\x13\x02\xb1\x5e\x0d\xaa\xc3\xbb\x1a\x5b\x26\x08\x43\x7b\x8a\x21\x70\x1d\x1c\x2f\xa7\x51\xb3\x20\xf5\x20\x2d\x63\x37\x67\x23\xb0\x97\x30\x88\xcb\x73\x95\xc2\x61\x74\x93\x16\x17\x54\xd5\x7c\x36\x26\x44\xbd\x2e\x76\xe7\xf7\x7d\x69\x85\x6f\xb6\x53\x8a\xc0\x41\x5b\xde\x2f\x7f\xf7\xbc\xb3\xa5\xb3\xd4\xb8\xd0\x33\x70\x23\x33\x72\x10\x4e\x81\x9c\xa8\x4e\xb9\x84\x81\xc8\x66\xfb\x2d\x46\x2c\x4f\x90\xd7\xea\xcd\xff\x96\x7c\x97\xac\xac\xf4\x6f\x14\x44\x04\x03\x4f\xfc\x91\x7f\x08\x5c\x03\xcf\xe7\x26\x5b\xd3\x05\x04\x38\x30\x20\x4c\x87\xae\xb4\xb1\xa7\xa4\x7d\x96\x8c\xba\xca\xda\xbe\xf2\xc8\xa2\xcb\xab\xf9\x54\xc7\xc5\x44\x5f\x7c\x8e\xea\xa9\xfb\x55\xda\xb4\xba\x67\x5d\x39\x94\x66\xfa\x71\x3e\x8f\xdf\xcc\xa7\xaa\x27\x1e\x39\xae\x16\x3a\x08\xf8\x30\x72\xa0\x5b\x9a\x74\x3e\xdd\x23\x0e\xd8\x20\x35\x49\xf3\x4a\xfd\xb7\xa0\x1b\xa6\xa9\x0e\xde\x32\xf4\xa1\x9d\xb8\x6a\x75\x79\x3b\x99\x9b\x8d\x0f\x34\x40\x2e\x64\xdb\x37\x06\x2c\x77\xbf\x2d\x38\x4a\x5e\x5b\xcc\x92\xbb\x59\xbb\xc6\x0a\x62\x68\x40\xdf\x9b\x7b\x53\x1f\x1a\x33\x84\x0d\xc8\xbb\x12\xea\x63\xb3\x1b\x81\xac\xde\x1e\x59\xa6\x4d\xff\xb0\xbd\xa0\x38\x8b\x93\x74\x65\xd7\x41\xb5\x69\xc8\xb1\xc7\x04\x69\xf3\xf9\x37\xa1\x00\xc0\xd0\x48\xb7\x9c\xe1\x05\x46\xb6\xe7\x24\xdd\x6d\xb4\xcf\xba\x6e\x03\xe0\x56\x52\x60\xf6\xac\xd1\x7e\x1b\x9a\xb1\x85\xf3\xcc\xf3\x09\xc4\xd0\xed\x80\x6e\x57\x9e\x34\x8b\x64\x96\x67\x35\xc9\xcd\x8a\x36\x31\x13\xfd\xc9\x4f\x8d\x4b\x4f\x99\x1a\x2c\x83\x80\x65\x73\x66\x2f\xb5\xc1\x2f\x18\x8d\xad\xd1\xa4\x15\x7d\x52\x29\xda\x2f\x91\xd2\x66\xd3\x6c\x20\x15\xf8\xc7\xc4\x1a\x8d\x54\x6b\x42\x49\xc1\x61\x17\x0a\x0e\x5b\x53\x70\x68\x8d\x46\x39\x0a\xe6\x12\xda\xb9\x24\xb9\x59\x80\x38\x22\x12\xad\x3a\x11\xe9\x3d\xe4\x51\x31\x91\x01\x93\x06\x0d\x14\xc8\x53\x56\x75\xd8\x96\x02\xfa\x41\xb7\xc5\x52\x6c\xb8\xdb\x14\x1d\xf5\xb8\xdd\x8e\x4b\xab\x40\x43\xbc\xa3\x0e\xcb\xe5\xa8\xed\x6a\x39\xb2\x8e\xdb\xd0\x27\xd5\x6b\xfa\xa5\xd1\x59\xd2\xac\x34\xfd\xc3\xa6\x74\x3a\xe8\x40\xa7\x83\xb6\x74\x3a\xb0\x0e\xdb\xd0\x89\xe9\x83\xfd\xd2\xe8\x27\xda\xa4\xe1\x7b\x4b\x8f\x18\x0b\x8f\x48\x04\xd8\x6b\x7c\x2a\xed\x59\xad\xce\x1e\xa6\xf0\x76\x81\x54\x2d\x8f\xfe\x82\x36\x25\x8d\xb9\x7c\xe6\x3c\xc9\x1b\x49\x1a\xce\x68\x6c\x4d\x6a\x6c\x92\xd5\x1e\xb2\xdb\xbb\x2d\x15\x6f\x39\x9b\xdd\x99\x38\xb8\xa4\xbd\x84\x04\x6f\xbd\xe8\xd7\x2f\x63\xf2\xe3\x59\xf8\x65\xd4\x18\x24\x60\xb1\xd7\xf0\x8a\x20\xee\xf5\x7c\x96\xc5\x48\xd8\xea\x3c\x36\x19\xc9\x48\x10\x6b\x8e\x41\xb8\xe0\x85\xa9\x34\x15\xb0\x19\xb0\xb3\x4d\xbc\x25\xb4\x23\x88\x3d\x19\xc2\x96\x2a\x80\x66\x3e\xf7\x2b\x8d\xf8\xa0\x3f\x65\xfe\x98\x7c\x76\x58\x5d\xe4\x6e\xe5\xc8\x1d\xe4\xc7\xcb\x20\x32\x22\xe8\xa0\xc0\xad\x99\x43\x6d\x3b\xea\x10\xfd\x4e\xb0\x8f\xb9\xdd\x1d\x62\x34\xc7\x2c\xf0\x5a\x17\xd6\x9d\x3c\xa1\xca\xa0\xb3\xcc\xb4\xc8\x57\x96\xc8\x2a\x70\x43\x44\x4a\x68\x4a\xe4\x5c\x42\x3d\xab\x2b\xe4\x24\x95\x36\xc5\xd0\x97\x20\x35\x68\xab\x2b\x8c\x26\xb7\xcc\xea\xf6\xb4\x17\xcd\x4e\xb9\xd7\xd5\x6c\xa1\xd3\x5f\x7a\x81\xb7\x8c\x97\x5a\x0e\x69\x2f\xb7\x01\x5a\x61\x10\x9a\x4a\xfc\x35\x31\x1d\x16\xd9\xd9\x8c\x8a\x2c\x20\x14\x11\xc0\xd3\xd0\x3f\x57\x94\x58\x6f\x93\x52\x2a\xe7\x12\x70\x34\x26\x0f\x05\xcd\x6e\xbb\x7b\x1c\x72\x89\xca\x38\x86\x33\x1f\xc6\x66\xe3\x5a\xec\x6a\xb0\xee\x2a\xfe\xc7\x51\x59\x21\x7d\xb3\xf8\x2a\xcd\xd0\x78\x24\xdb\x1b\x31\x8c\x20\xbe\x86\xee\xc9\x52\x81\xec\xf6\x66\xf1\xd5\x48\x1e\x68\x0a\x90\xd1\x80\x04\x4b\xb8\x44\x2c\xb0\x68\x63\x2a\x64\x0b\x65\xba\x26\x30\xaa\x5c\x23\x82\x32\x1a\x0d\xa9\x0d\x55\xbc\x1f\x5a\x53\xa5\x57\x9e\xb6\x1f\xb2\x34\x5c\x8d\x7f\xe2\x4e\x0a\xb1\xe7\x8f\xfc\x0d\xb5\x07\x74\xb3\xb6\x09\x98\x6f\xbb\xac\xd6\x87\x29\xfc\xe7\x7b\x1c\x36\x47\x17\x6a\x88\xd5\x29\xf2\xc9\xcd\xbc\x23\xb6\xf0\x6d\x06\x44\x64\xf2\xfb\x7d\xec\x1b\xa7\x28\x08\xa0\x43\x0c\x46\x21\x83\x80\xa8\x04\x24\x78\x4e\x7f\x49\xc5\x5e\x3f\x8c\x15\xdc\xd8\x88\xa7\x18\xce\x19\x96\xef\xca\x23\xce\x62\xeb\xb1\xe2\x47\x3f\xbb\x1f\xe2\xa3\xe7\x40\x87\xdd\x37\x57\xc6\xe7\x14\xc2\x25\xca\x75\x1d\xde\xb3\x17\xab\xad\xd8\x72\xcc\x40\xa6\xbe\x11\x30\x7f\xcb\xcd\xf4\x22\xcc\xe0\x34\xf1\x61\x09\xa7\xbb\x25\x9c\xc3\xd0\x65\x1f\x01\x76\x16\x4f\x03\x30\xf5\xd9\xdf\x28\x10\x78\x9c\x9f\xd9\x9d\xf7\x3a\xf1\xf2\x88\x58\xdf\x1c\x48\x5d\x84\x30\x81\x6e\x36\xd2\x62\x95\x0a\x9e\xa2\xff\x5e\x90\x40\x88\x9a\x9a\x18\x9f\x39\x22\x28\x7d\x63\xe3\xca\xad\x8a\xd8\x8a\x10\xc3\x99\x27\x87\x28\xf0\xde\x1e\xa7\x67\xfd\x28\x8b\xb7\xa9\x75\xaa\xdd\xc9\x7d\xaa\xb0\xde\x37\xdc\x3b\x91\xb3\x80\xb4\x67\x1b\x5e\xd3\x2b\xda\x3d\x28\x57\x40\xe6\xfb\x57\x67\x93\xd7\x8d\x45\x63\x7b\x84\xc9\x72\x80\x52\x12\x87\xb0\x89\x56\xa1\x88\x87\x6a\x09\x37\xa9\x05\x11\x26\x55\xd8\x96\x4a\x35\xb4\x1b\x6c\x65\x8d\x0e\x9b\x03\x9d\x55\x92\xb4\x90\x87\xea\x7b\xc1\xd5\x25\x3a\x49\x11\xd5\x1b\xa2\xae\xb5\xc2\xf0\x56\x5f\x78\x2e\x17\x5e\x64\x64\x1d\x6b\x6e\x32\x0d\xc3\xba\x5a\xe2\xf0\xd6\x42\x89\x37\x68\x57\xdc\x7f\xf5\xb7\xb9\x46\x97\x2b\xee\xb7\x81\x6e\xe5\x45\xab\xc2\x97\x58\x55\x19\x23\xc3\xc9\xd7\x17\xc8\xd0\x87\xff\x94\x5a\x70\x7c\x0f\x06\xe4\xa2\x54\x43\xa3\x4b\x40\x50\x2b\x3a\xd5\x10\xa4\x19\xe3\x71\xae\x10\xb8\x3a\xae\xab\x12\xd7\x5c\xff\x76\x6b\x60\x73\x79\xbb\x55\x03\x51\x37\xdf\x9e\xaa\x3c\x8f\x72\xed\x17\xa9\xa6\xcf\x40\x66\xae\x82\xdd\x9e\xa6\xfc\x4b\xce\x5b\x59\x20\x80\x16\x74\x3e\xbf\x14\x17\x08\x73\x58\xc8\x8d\xdc\x93\xd5\x11\x64\x77\x33\xb2\x4c\x0a\x55\xaf\xf3\x2d\x2c\xb2\x53\xb6\x5d\xf5\xc3\x51\x37\x58\x3a\x2f\x1a\x2c\x2a\x2e\x18\xa2\x01\xff\xaf\x72\x31\x71\x6f\xc6\x2d\xae\x29\xb9\x83\xae\xc5\xc7\x9b\xb1\x50\xf5\x4b\x73\x91\xd7\xd6\x4e\xa7\x38\x0d\x7b\x50\x4f\xcb\x2a\x65\xbf\x3a\x6a\xa2\xc4\x6c\x59\x51\xdd\x5f\x7f\x78\x79\x72\x0d\x22\xf5\x4d\x8f\x0d\x55\x99\x28\x83\xd4\xf1\x30\xe9\xac\x6a\x54\xd5\xfc\xc2\x84\x37\xa4\x85\x7a\x25\x29\x99\x6a\xcd\x3f\xd9\x86\x89\x71\x20\xd7\x19\xd7\x42\xad\x4f\xe6\x5b\x78\x43\x24\xe5\x4a\xbd\x27\x8b\x23\x6b\xf0\x10\xdb\xf6\xde\x6c\x9d\x40\xb9\xb7\x28\xfd\x56\x49\xa5\x05\x88\x2e\x08\x0a\x43\x7a\x39\x15\xb3\x16\x29\x84\x4d\xd4\xfd\x1e\x10\xec\x6f\x78\xec\xbe\xf5\xc9\x5c\x01\x1c\x24\xa9\x8e\x66\x92\x2d\xce\xaa\xa6\x89\x5f\xa8\xaa\x46\xe0\x0d\x37\x4a\xcb\xc6\xb8\xb7\x74\x93\x18\x0b\x10\x19\x11\x9f\x8b\x01\x08\x5d\x90\x84\xbe\x44\x90\x91\x31\xd4\x20\x54\xf9\xcd\x28\x30\x68\x0d\x80\xaf\x2d\x45\x99\x23\xeb\x0c\xf9\x3e\x5a\x7d\x08\x9f\x66\x21\x52\x96\xb9\x02\x1e\xf9\x10\x10\xcf\x2f\x01\x26\x34\x5d\xbc\xcd\x7c\xac\xb7\xc1\x1c\x87\xee\x63\x05\x6b\xbc\x60\x86\x6a\xf8\xb2\xf2\x7c\x3f\x61\x48\x9e\x1b\x8d\xa3\xf5\x64\x23\xdd\x28\x6f\xa4\xcb\xd0\xb0\xcb\x77\xc3\x76\x2c\xd1\x01\x82\x97\xa8\xb2\x44\xdc\x65\x8b\xd1\xd2\x0e\x98\x51\xa0\x5b\x77\x9f\x3e\x99\x1e\xbd\x84\x5c\x0b\xd7\xca\x70\x38\x54\x95\x30\x68\x72\x7a\xb5\xb9\x43\x57\x8b\xb7\xdc\x24\x4a\x5a\x70\x26\xe9\x4a\x53\x96\xac\x56\x25\x62\xd4\xc8\x2e\x45\xea\x0b\x1b\x27\x4b\x29\x51\x93\x37\x9b\xc4\xd3\x6b\xb6\xfc\x1b\xc6\x1f\x74\xa0\xc3\x4b\x37\x37\x6d\x1e\xf5\x10\x62\x78\xed\xa1\x38\x3a\x91\x1f\x93\xd0\xee\x48\x73\x39\x3d\x52\xd7\x6a\xbc\x15\x85\x23\xd9\xfc\x1b\x69\x1d\xdc\x10\x6a\x4f\xd1\xcd\x96\xd5\x8c\x37\x67\x3f\xbd\xb9\x18\xbe\x51\x17\x83\x69\x83\x66\xe6\xa0\x80\x60\x54\x4a\xe9\xab\xbd\x38\x30\x03\x69\x2e\xf9\xac\x24\x38\x39\xb1\xcc\xba\xa2\x56\xe5\xe4\xa6\xa2\x81\x81\xfd\x9c\xf8\xca\xd9\x1f\x45\xb0\x75\x16\x4d\xb2\x40\xbe\x48\xb2\x18\xe7\xbf\x29\x79\xd1\xc7\x96\xf9\x5f\x7c\x74\x97\xec\x02\x93\x26\x3d\x89\x81\x68\x73\x9e\x22\x48\x2e\xa4\xf7\x72\x09\x4f\x11\x2f\xc9\x31\x32\xf3\x09\x50\xfc\x78\xd0\xa2\x21\x17\x11\xe0\x72\x05\xc5\x66\x32\x8d\x1b\x81\xb2\xf1\xd2\xe3\x66\x3e\xfb\xac\x7c\xa4\x81\xc0\x61\x17\x29\x7d\x80\x57\xff\x3b\x32\xdb\x3b\x1b\x6e\x41\x7c\x0d\xb1\x0d\xe6\xf7\xc3\x30\xfd\xf3\xd5\xc7\xe7\xd3\x17\xce\xb3\x2d\xd4\xd1\xe5\x94\x88\x06\xfc\xbf\xa9\xbe\x3d\x67\x17\x62\xed\xbd\x77\x54\x78\xae\xaf\x62\xba\xc5\x76\xeb\x0a\xdf\xaa\x5b\xc8\x43\x0a\xa6\x73\x89\x5e\xf3\x04\x2a\x3a\xbe\x4b\xcc\x4a\xe8\x3c\xa3\xad\xd6\x2c\xe1\xfa\x51\x02\xd7\x65\xa1\x3a\x1d\x8a\xe9\xa6\x13\x85\x78\x76\x8e\x30\xd9\xa4\x0d\x39\x85\x45\x6b\x4b\xe8\x61\x07\xe6\xb7\xce\x66\xfb\xb0\x1c\x1b\xb6\xd5\x8d\xf8\xea\xf5\x2f\xc7\xde\x97\x1f\xd5\x20\x15\x65\xc8\xa4\x7d\x09\x7e\xa8\x50\x60\x48\x07\x0f\x44\xf9\xd7\x85\xea\x45\x42\x6d\x48\x76\x0c\xc1\xd2\x0b\xe6\xf6\xcc\xdb\x3a\x60\xd5\xd7\xd5\xe2\x78\xe5\x91\x71\x63\xe1\xa7\x35\xac\xf9\x88\x61\x20\x58\x26\x8a\x09\x3d\x82\x73\xbb\xa0\x97\xb5\x9f\xa3\xdb\x46\x2c\x60\x95\xf7\xef\x01\xf5\x9f\x62\xe0\x5c\x3f\x5f\x05\x9b\x01\x77\x06\x48\x04\x79\xd4\x9b\x8a\x6a\x9c\x1f\x01\x22\xde\xcc\xe3\x57\x02\x7a\x31\x86\xac\xf6\x99\x2e\x84\xaf\x2e\x2f\x6e\x4f\xb6\x2b\xb3\x38\x39\x63\x06\x89\xb3\x30\x18\xe5\x75\x69\x65\xa5\xaa\x08\x97\x0b\xc8\xde\x88\x58\xde\x16\xb3\x81\x50\xfe\xb1\x8c\x26\x2f\x00\x8e\x03\x23\x86\xbb\x37\x30\x4e\x17\xd0\xb9\x32\xc8\x02\x1a\x0e\x0a\x5c\xe6\xa3\x33\xd0\x8c\x7f\xc1\xac\xcc\xec\x63\x76\x39\x32\xbc\xc8\x40\xc1\xa0\xce\x96\xaa\x3f\x51\x37\x72\x68\x9a\xc5\xe4\xd6\x06\x3a\xbb\xaa\x82\x69\xee\x0e\x9a\x99\x77\x64\xf3\x0c\x25\xdf\xe5\x3a\x84\x2f\xa3\x0f\xc1\x55\x80\x56\x25\xa3\x4c\xad\xdf\x16\x68\x4a\x1c\x27\xe0\xc6\xab\x85\x47\xa0\x04\x6e\x9c\xa8\xbb\x0b\x0c\x67\xb9\x42\x4b\x80\x7c\xc0\xbe\x99\x85\xb7\x8a\xd2\x2b\x96\xf9\x5f\x53\x1f\x04\x57\x69\x80\x13\x33\x53\x06\x08\x85\x30\x80\xd8\x08\x10\x86\x33\x88\x31\x94\x57\xe3\x47\x0f\xae\x8c\xf7\x60\x65\x3c\x2b\xad\xa7\x4e\x46\x30\x2f\x7a\x4d\x07\x93\xd9\x34\xbd\xe8\x82\xc9\x9c\x46\xb9\x7c\x45\x8a\x55\x5c\x0b\xea\xc9\x56\x7f\x4b\x98\x23\x82\x5e\x48\x00\x7f\x19\x59\xc4\xb7\xba\x9a\x52\x77\x30\xae\x4b\xe0\xf9\xe5\x71\x89\x6f\x5b\x73\x49\xcb\x89\x6d\xb3\x80\xc3\x67\xf0\x81\x95\xa7\xab\x36\xbf\xa5\x37\xb8\xa2\xa2\x9c\x1e\x9f\xc9\x54\xb9\x25\xdb\x32\x97\xd0\xf5\x80\x1d\x82\x38\x62\x17\x09\xfe\x97\x0f\xa4\x80\xd9\xa2\x59\x53\x65\xce\xec\x1a\x28\x51\xed\x57\xaa\x2f\xb6\xa3\x88\xa3\xc8\xd7\xd9\xc9\x87\x05\x53\x41\x75\x9a\x62\x4a\xb2\xfb\x7a\x8e\xbc\x0c\xf1\xdc\x05\xf8\x8a\xd5\x0b\xa7\xd2\x70\xea\x43\xe8\x9a\x4d\x2a\x05\xb6\xeb\xa9\xb1\x25\xae\xa8\xce\xa5\xae\x96\x84\xa1\xa2\xf4\x67\x8e\xaf\x05\xae\xa7\x12\x87\x3d\x5b\x92\x3f\x29\x2e\x62\x97\x12\x85\xcd\x09\xe0\x2d\x39\xac\x6c\xbb\xf9\xb3\xb7\x0a\x73\x8f\xb0\xc3\x9c\x4c\xec\x72\xe5\x7d\x95\x6c\xae\xa9\xfc\xcf\xb0\x8f\xe9\x43\x6f\xc5\x15\x36\xf7\x25\xab\x90\xda\x79\xde\xcd\xe2\x7c\x18\x16\x8c\xbd\x84\x51\x04\x78\xb8\xed\x82\x99\xbe\x2b\x22\x7b\x34\x5a\x4f\xae\x21\x76\xde\x17\x9c\x7e\x1f\x82\x28\x0e\x43\x16\x4a\xc9\x0e\x2c\x83\x1e\xc8\x15\x72\x5a\x53\xf8\x2f\xd7\x0d\xdb\x4f\xe2\x0f\x33\xaf\x31\x71\xf7\xc5\x87\x97\x86\x83\x62\xdf\x35\xa8\xf2\x85\x61\xe0\x42\xa1\x41\x51\x7e\x59\xc6\x34\x26\xc6\x1a\xc5\x86\x03\x02\x23\x22\x9e\xef\x1b\xd7\xf4\x4c\x25\x42\xe3\x32\x5c\x0f\x43\x87\xf8\xeb\x92\x8a\xd4\x61\x9c\x95\x21\x4f\x75\xea\x45\x0a\x74\xb0\x45\x9d\xa2\xb9\x2b\x7e\x5b\x01\xf5\xe9\xb5\x66\xf3\xcb\xd1\x1c\xa3\x38\xbc\x07\xc6\xb9\xf5\x6f\x6f\xf6\x5e\xfc\xbc\x77\xd4\xd5\x38\x57\x1d\x95\xa2\x34\xd3\x45\x65\x3b\xdd\x17\x34\x8d\x06\x5f\xd0\x74\x90\xd1\x26\xd1\x0b\x30\x06\xeb\x2c\x9e\x13\x44\x57\xcf\xf9\xaf\xf4\x9d\x4c\xa2\x65\x3f\x34\x8c\x76\x1e\x95\x5e\xd4\x41\x86\x54\x1d\xe1\x4d\x8d\x58\x72\x2f\x1c\xa7\xa5\x85\x25\xac\x61\x90\xa9\x2a\xf5\x4e\x1c\x21\xd9\x8d\x2c\x81\xc4\x9b\x02\xac\xf2\x66\x9d\x72\x34\x34\xa1\x27\xbd\x05\x58\xc4\xe7\x95\x67\x11\xc5\x4b\xc6\xbb\xcf\x9f\x93\x0a\xd9\x0d\x6c\xe4\x4d\x49\x94\xe4\xcf\x9c\x9e\x7f\x28\x25\x57\xbd\xf8\xba\x69\xab\x6f\x44\x3e\x54\x29\xcd\x68\xd3\x86\x9f\x86\x0b\xb8\x84\x18\xf8\x67\x5e\x74\xd5\xa0\xfd\xde\x44\x52\x2a\x4c\xd4\x72\xe9\x2f\x2d\xe4\x92\x8f\xb6\x9d\xe2\x73\x7a\xf3\xec\x04\x3d\x9b\xc4\xcd\x24\xd2\x37\x6e\xa9\xf1\xd1\x3c\x6a\x67\xa9\xa1\x6f\x6c\x62\xa8\x09\x90\x0b\xef\x9d\x99\x46\x1f\xef\xa8\xb8\x6d\x26\xbb\x4a\x02\xe1\xcc\x95\x82\xaa\xba\xff\x24\xfa\xbf\x19\x11\x17\xc5\x24\x77\xed\xf1\x82\x19\xca\x5d\x74\x26\x5a\x0f\xe7\x1b\x7e\xe5\x48\x1a\xc9\x46\x9c\x36\xab\xe6\x68\xdf\x53\x80\x18\x17\x6e\x6e\x01\xc7\xc9\x6d\x37\x09\xd6\x4c\x6e\x12\xbc\xe1\x26\x99\xca\xad\x6d\x69\x9d\xec\x07\xb7\x67\xb7\xb9\xe5\xa1\x34\x35\xd5\xdc\xf2\x50\x1a\x9a\x52\xee\x8f\x21\xa5\x4e\x18\xb5\xc8\x20\x57\xa5\x9a\x68\x8c\x1c\x7a\x94\x87\x1e\x6d\x10\xbc\xb1\x37\x2d\x2d\x11\xb7\xa4\x3a\xf8\x68\xb3\x24\x52\xd6\xc8\xf6\xaf\x31\xf8\xa7\x5f\x3f\xb8\xe8\x86\xa8\x1d\x3d\x01\x24\x2b\x84\xaf\xa8\x50\x62\x5e\xe8\xea\x6b\x4d\x4e\xa9\x8e\xec\x20\xd5\x82\x2b\x0c\x5f\xb2\x33\x80\xe5\x00\x5b\xa6\x8b\xbd\x6b\x88\x45\x62\x8e\x65\x2e\x20\xf0\xc9\x62\xdd\x26\x14\xad\x41\xd0\xa3\x41\xb7\x90\x9d\x42\x3b\xea\x02\x20\x4b\xc3\x62\x2b\x88\x9e\xfb\x71\x20\x0f\xac\xa7\x58\xdc\x46\x7b\xba\xeb\xbd\x4a\x8f\x65\xd1\xcf\x5d\x54\x9d\x8c\x33\xe0\xe4\xd3\xdc\x49\xf3\x11\xdf\xb9\x5b\x69\x97\x0b\x69\xc5\x5d\xb4\x68\xb8\x17\x8f\x7b\x91\x50\x7c\x59\xb2\x79\x43\x0b\x7e\x02\x70\x95\xe5\xf6\xe7\x69\xf5\x99\x29\x24\xcb\x10\x62\x9b\x55\x30\x68\x13\x57\xde\xcf\x9d\x59\x04\xc9\xc0\xf6\xd7\x65\x2d\xa5\x20\x8f\x08\x2d\x60\x3e\xa4\x36\xbe\x86\x76\xd9\x16\x0d\x6e\x6e\x5b\x95\xf0\xb6\x33\xd4\x49\xc9\x2a\x59\x9b\x0c\xd5\x30\xac\x48\x91\x3f\x5b\x35\x45\x4d\x72\x6d\x4b\x73\x46\xac\x42\x77\x17\xdc\xcb\xc1\xcb\x8a\xb1\xe0\x04\x31\x90\x05\xc2\x33\xb9\x4e\x3f\xb2\x2a\x93\x62\x68\x55\xd9\x78\x69\x0c\xb1\x88\xd4\xe5\x07\xd6\x26\xb8\x64\xca\x6c\x50\x75\xa6\x33\xc7\x6e\x57\x6c\xed\xc7\x2a\x4b\xa8\xda\x7c\x9b\xb7\xcf\x9a\x0b\x42\xc2\xc7\x8f\x1e\x65\x40\x87\x1e\x2b\x00\x65\x3e\x4e\x51\xe7\xc5\x99\xb7\xb9\xf5\x76\x54\xe8\xa3\x38\xfe\x51\xb1\x47\x65\x3c\x6b\x33\x2f\xd9\x58\x8b\x7e\xda\xde\x7f\xa6\x3f\xda\x47\xc6\x02\x70\x2d\x34\xcd\xf8\xad\x3a\xe7\x73\xf2\xf6\x7d\x1c\x04\x95\xc9\x30\x4a\x37\x78\x41\x55\x60\xe8\x44\x85\x62\xbf\xcc\x30\x40\xd5\x86\x48\xd9\x4f\xed\x52\x1d\x0c\x06\xed\x5d\x57\x89\x57\x28\x7a\xca\xed\x1c\x4d\x3d\xc0\xad\xf5\x93\xa6\xd8\x2a\xb1\xef\x06\xff\xeb\x7f\x10\xc3\x41\xbe\x0f\x1d\x62\xb0\xc1\xe9\x5d\x1c\xbd\xe9\x28\x8d\xb4\x94\xae\x49\xf8\xb2\x89\x36\x85\x30\x6b\x00\x3d\xa3\x57\xea\xe8\x02\xca\x10\x8b\x18\x46\x91\x74\x3a\x25\xab\xa8\x60\x4f\x15\x56\x54\xbd\x2f\x5d\x89\xd0\x96\x0b\x6d\x17\xe0\x6c\x52\x8e\x8f\x80\x63\xd3\x81\xb1\xf1\x81\xb6\x85\x5f\xcb\x1f\xb8\xc5\x36\x1a\x55\xa0\xd1\x7b\x95\x9a\x79\x91\x36\x57\x52\xef\x83\xa0\x49\x30\xc0\xfe\xd4\xb2\x26\xdb\x51\x3b\xa1\xa3\x11\x3a\x5d\x65\x8d\x0e\xf9\x4d\xac\xab\x12\xdc\x5b\x9d\x24\xca\x7c\x30\xc2\x33\xd2\x8f\x30\xe2\xf6\xcf\x06\xe2\x28\x1d\xf7\x66\x12\x49\xd1\xcc\x3d\x12\x4a\xbd\x19\x89\x36\x0d\x84\x67\x8d\x44\xf1\x34\x00\xd7\x5b\xb6\x13\xbd\xfd\xfb\xf1\x87\x17\xee\x2f\xc3\x8d\x93\xc2\x08\x98\xb2\x15\x27\x66\xd5\xe2\x6e\xa3\xbf\x4c\xa8\xac\x16\x1c\xfb\xeb\xb4\xd2\x76\xc1\x9f\xa9\x36\x5d\x0c\x44\x21\xac\xfe\x0d\x18\xef\xae\x21\xbe\xf6\xe0\xaa\x99\x3d\x67\x4b\xb3\x67\x7e\xb6\x5b\x98\xfc\x6b\xe6\xbf\xeb\x7f\xe2\x7a\x63\x55\xd1\x1c\xcf\x22\xb7\x5f\x7b\xc1\xd5\x09\xa7\xc3\x67\xee\x09\x12\x54\x49\xe5\x71\x15\x71\x66\x91\x8d\x11\x22\xb7\x41\x9f\x67\x74\x74\x4d\x09\x54\x7d\x97\xeb\x4d\x9a\xf1\x2d\xbb\x99\x40\x5b\x21\x3b\x22\x30\xb4\x13\x5f\xcd\x56\x85\xda\xe5\xf0\xec\xf5\xc9\xde\xbe\x1a\x50\xa3\xc6\x63\xee\x45\x2f\xdd\xda\x90\xdf\x36\x8e\xa9\xec\x08\x46\x31\xa1\x9a\x07\x03\xd1\xf2\x96\x94\x3a\x20\x20\xa5\xb3\xd9\xf5\x22\x81\x99\xc8\x62\xcd\xd2\x3f\x3f\x37\xf6\x6d\x85\x18\x2d\x43\xf2\x0c\xe1\x53\x14\xcc\x3c\xaa\xa4\x70\x08\xa7\xa0\x5c\x6a\x4f\xcc\x40\x29\x8f\x05\x14\x9d\xe7\xfa\xf0\x92\x27\xa4\x16\x4f\xf2\x0e\x4a\x5a\x91\xd8\xe7\xbc\x0a\x77\x7e\xa4\x4d\x68\xaf\x55\x7e\x1d\xa9\x29\x5b\xce\xa4\x15\xf3\x91\x7f\x7f\x93\xda\x0c\x2b\x32\x8d\x1b\x72\x99\x7b\xcf\x64\x1e\x57\xb1\x15\xac\x80\x47\xca\x13\x6f\xc8\xe2\x46\x15\x72\xcd\x08\x92\x4b\xc4\x57\x73\x7a\xc9\xa9\x82\xc8\x44\xc1\xa9\x48\xf2\x55\xd7\xc1\x6d\xbd\x74\x78\xce\x70\xa3\xc5\xa3\xa5\x76\x29\xbe\x5b\xb1\xb1\xf8\x25\xc7\x2c\xe7\x82\x6a\x88\x4c\xcf\x03\x1f\x01\x51\x2a\x3e\x0b\x0d\xe8\x9d\x4f\xc9\x62\xd3\x7a\x98\xcd\xd2\xba\xec\xbe\xd5\x34\x6e\x86\x7e\xce\x89\xbc\x7c\x6f\x7f\x56\xcc\x30\x84\x11\x59\x6f\x3d\x01\xee\xcb\x87\xeb\xc5\xfa\xe7\x63\x75\xfa\xa1\x19\xa5\x55\x7d\xcb\x9f\x9a\x28\xc3\x1e\x43\xbe\xa5\xd3\x9c\xc7\x9e\xab\x46\x60\x4a\x29\x61\xf3\x67\x32\x7c\x5d\x8f\xb0\xcb\x67\x14\x4f\xf9\x47\x86\x90\x24\xa2\xaa\x4d\xcb\xbc\xa0\x2f\x45\x06\x08\x5c\xe3\x1c\x10\x02\x31\xc7\xc6\x55\x48\xd8\xac\x8b\x74\x1a\x49\x27\xdc\xd6\x6e\x7d\x32\x2f\x17\x90\x5b\xdd\x15\xef\xa7\x8c\x4f\x0b\x99\x80\x28\x82\x98\xd0\x53\xcb\xf7\x1c\x8f\xd8\xe9\x13\xf6\x02\xfa\x21\xc4\x36\xc0\xf3\x78\x99\xbc\xc1\x6a\x91\xd0\x79\xa4\xb4\xfb\x6c\x51\xa6\x33\x6c\x60\xe3\xbf\xc5\xb7\x83\xec\x81\xff\x36\x08\x32\xa6\xd0\x00\x86\x83\x02\x2a\xb3\x63\xe0\x1b\x69\x1f\x2c\x6a\x7c\x86\xe2\xc0\x35\x80\x11\x11\xec\x05\xf3\x81\x71\xe6\xb9\x2c\x92\x7c\x09\x41\x60\xfc\xf7\x83\xec\xe1\x72\xeb\x0f\xff\xfb\x1f\xc6\x83\xff\xf5\x3f\xaa\x56\x25\x5d\xd0\xff\xeb\x7f\x18\xff\x69\xbc\xde\x7b\x7c\x7a\xfc\xd0\xc8\x85\x68\xa4\x34\x7b\x86\x02\x62\x5c\x10\xe0\x5c\x29\x29\x5f\x70\x8e\x88\x7d\x9d\xf6\xf1\x28\x9a\xdb\x33\x14\xb0\x2a\xcc\xac\x85\x16\x71\xb5\xb9\x15\xf4\x3d\xb3\xe7\xa8\x82\x3d\x54\x74\x1a\x17\xde\x57\x11\x7f\xd3\x99\x3d\xa2\x85\x1d\x7b\xda\xb3\x67\x34\xae\xe0\xcf\x29\xf2\x11\xee\xba\x73\x1c\xf1\x72\x67\x87\xfb\x44\xc3\xae\x26\xc2\x32\x4d\x5b\xd2\x49\xdc\xcd\x79\x3e\xfe\x76\x79\x5e\xb5\x27\x4f\x1c\x07\x61\x57\xcc\xa8\x03\xdb\x41\xf6\xfe\xf6\xf6\xe3\xb7\xcb\x9b\x71\xd5\x7e\x3c\xf1\x21\x56\xaf\xe8\x26\x8c\x11\x2f\xef\xb8\xd2\x81\x2b\x07\x15\x5c\xf9\x01\xdd\x40\xd7\x90\x66\xd5\x81\x39\x45\x7c\xf5\x1d\x8f\x5a\xf3\x68\x32\xac\xe2\x91\x5c\x21\xbd\x1b\x87\x3a\xd6\x58\xdf\xf1\x27\xe1\x4f\x95\xa2\xfe\x03\xbb\xa5\x76\xe6\x4d\xf2\xf6\x8e\x2f\x1d\xf8\x52\xa5\x0d\x9c\xa2\x70\x6d\xfc\x20\x0c\x47\x1d\xd5\xc0\x70\x6d\xa7\xa6\xa7\x1d\x7f\xda\xdf\x6f\xab\x34\x82\x33\x6f\x36\x33\x3e\x7a\x70\xc5\x03\xa2\x3b\xf0\xc7\xf5\x66\x33\xfb\x5a\xb4\xb0\xe3\x4f\x07\xfe\x54\xe9\x06\x67\x18\x85\x2e\x47\xd3\xe9\xc4\x9c\xf4\xf5\x1d\x67\xda\x73\x66\xbf\x4a\x23\x78\x1e\x13\x02\xb1\xb1\x84\x41\xdc\x91\x39\x73\xd6\x82\xcd\x5b\xd8\xf1\xa7\x03\x7f\xaa\x34\x82\x17\x29\x18\x64\x07\xd6\x2c\xc4\xcb\x3b\xae\x74\xe0\x4a\x95\x3e\xf0\x92\x85\x62\x19\xb9\x0a\x47\x9d\x38\xa4\x2c\x95\xb4\xe3\x56\x6b\x6e\x1d\x54\x69\x07\xaf\x2e\xde\xbd\xdd\x4c\x3b\xf8\x12\xa1\x60\xa7\x1d\x6c\xc2\x9f\x2a\xed\xe0\x35\x9a\x1b\x49\x46\x6b\x27\xf6\xf8\x68\x6e\xa7\xa0\x54\x3b\xee\xb4\xe6\xce\x61\x95\x86\xf0\x86\x15\x9d\xed\x2a\xe0\x96\xc9\xdb\x3b\xbe\x74\xe0\x4b\x95\x66\xf0\x26\xf6\x89\x27\x8a\x78\x1a\xee\x66\x0a\xf6\x52\x6a\x6b\xa7\x6d\x6f\xc6\xb3\x2a\xbd\xe1\x1c\xcc\xa1\x41\x40\x67\xeb\x5b\x08\xe6\xd0\xe6\xef\xef\x78\xd3\xc1\x09\x5b\xa5\x25\x70\xde\xf0\x00\x86\x0d\x98\x23\x22\x20\x76\xdc\x69\xcf\x9d\x2a\x1d\x81\xa5\x43\x1b\x97\xa0\xab\x87\x3c\xcb\x8d\xde\xf1\xa6\x03\x6f\x8e\xab\x34\x04\x5e\x26\xc4\x98\xa2\x9b\x8e\xcc\x91\x4a\xcd\xec\xb8\xd3\x85\x3b\x55\x7a\xc2\xa5\x80\x02\x6e\xc2\x98\xa3\x02\x63\x08\x7b\x37\x43\x2b\x45\x98\x24\x01\x6e\xa6\xc5\xfe\x3c\x83\x91\xc3\x43\x61\x4d\xcb\x74\x62\x8c\x61\x40\xce\x45\x3a\x7b\x56\x14\x3d\x7d\x29\x57\x2a\x5d\x7a\x37\xfd\x3e\xd7\x44\xcb\x02\x78\xbb\xf5\x90\x44\x36\x0c\x47\x75\x0b\xc2\x32\x58\x64\xe8\x3c\xce\x6a\xd8\x77\xd8\xb8\x6c\x7d\xd8\x4e\xbe\xa5\x1d\xc7\xba\x70\x6c\xbf\x8a\x63\x69\x65\xcc\x6e\x5c\xca\x0a\x6b\xee\x58\xd3\x81\x35\xc7\x55\xac\x11\x01\xc6\x9b\x79\x07\x8b\x69\x28\xdd\xa3\xc5\xc6\x9b\x44\x8b\x2d\x80\x26\xae\xa6\x97\x25\x30\xfa\x76\x97\xc0\xa8\x6a\x77\x9e\x79\xb4\xff\x69\x4c\x9b\x35\x7e\x00\xdd\x3d\x90\x59\x33\x0c\xd6\x75\x8b\xbb\xf5\x5b\x66\x55\xd5\x6e\x7d\x15\x2f\xa7\xc8\xb8\x25\x86\xd9\x5f\x68\xeb\x3b\xb6\x75\x62\xdb\x78\x52\x65\x20\xf6\x02\x68\x9c\x72\x3c\xe4\x6e\x06\x62\x19\x50\x79\xc7\x9e\x0e\xec\x39\xac\xbe\x9b\xf3\xc4\xfd\xee\x7b\x29\xc9\xfd\xdf\x09\xbe\xce\x2c\x9a\x54\xe9\xfc\x0c\xb6\xc1\xa0\x7a\xa4\x71\xc1\x2b\xd8\x75\xbc\xa9\x97\x2a\xe1\x75\x57\x55\x46\x6d\x20\xe6\x36\xcb\x1c\xce\xd1\xab\x5d\x02\x18\x43\x3a\xde\x6e\xee\xd7\xeb\x2f\x7b\xe0\x23\xf8\xa7\xdb\x1c\xda\x9f\x67\x64\x29\xb0\xf8\x78\x79\xcd\xe4\x89\xbe\xeb\x2f\x52\x5a\xb5\xa7\x70\x02\x68\xb0\xd5\xd2\xa6\xcf\xde\x5e\x4e\xc0\xf9\xab\x46\x24\xee\x4c\x1f\x36\xd3\xf6\x04\xfa\x82\xa6\xdb\xae\x38\xf9\x3c\x7c\xb3\xd8\x7b\x35\x7b\xd9\x38\x33\x9d\x19\xc3\x7d\xb0\x46\x31\x11\x37\x8d\xea\xcc\x68\x21\x6c\x50\x4c\x7c\xd8\xe6\x90\xee\xcc\x0b\x56\xa9\xa2\x13\x2b\xee\xc5\x82\x7d\xfb\xf2\x74\x78\x38\x02\x4b\x75\x3e\x68\x48\xb7\x38\x43\x9d\x58\x95\xf3\x3f\x13\xb4\xd0\xcc\x5d\x41\x35\x63\xc4\x9c\x4a\x79\x04\xc8\x1c\x28\x56\x7a\x6f\x54\x95\x6f\x4e\x23\xf6\x2b\xa1\xb0\xbc\xe8\x19\xc2\x53\xcf\x75\x61\x5d\xb2\xbc\x58\x14\xfb\x8c\xeb\xc4\x03\x7e\xf4\x68\x96\xbc\x9a\x14\xcb\x29\x97\x2f\xed\xa7\xd2\x11\x41\xc8\xe7\x6a\x88\xae\xb2\x51\xcd\x9b\xb6\x47\xe0\xb2\x8e\x16\xd7\x1e\x83\xf8\x67\x74\xb7\x4c\x1f\x06\x73\xb2\x68\x84\x5f\x99\xc7\xb3\x96\x8a\xb4\xa7\x56\xda\xac\x6a\xb7\x65\xa2\xe0\x74\x01\x02\x4a\xac\x7c\x99\x70\xa1\x20\x2d\xe3\x0c\x5a\x2c\x57\x25\xbc\x59\xe6\x3d\x86\x11\x24\xe7\x60\xee\x05\x79\x04\x84\xcf\x56\xe2\x14\x60\xdb\x6c\x30\x68\x05\x39\x6b\x7d\xca\x41\x62\x1d\x6b\xa8\x78\x24\xb0\xc9\x4d\xb6\xb2\xde\xa0\xa9\xe7\x37\x2c\xca\xd5\x92\x95\x86\x17\x71\xfc\x7b\x1b\xf8\xde\x3c\x28\x03\x8c\xcb\x6d\xd6\x83\xc0\x7c\xce\xa1\x01\x14\x6a\xe7\xe0\x58\x67\x43\x7a\x1f\x07\xc6\x2b\x5e\x2a\xa7\x5a\x19\x96\x47\xd3\xa2\x80\xdd\xa6\x44\xa1\x5f\x2c\x19\x13\x38\x14\xfb\xca\x73\xe9\x8a\xae\x40\x03\xd3\xe2\xbc\x33\xe2\xd8\x9a\x3d\x58\xd8\x01\xea\xd0\x85\x94\xf4\x09\x26\x1c\x0a\x79\x74\x1d\xdd\x32\x7e\x22\xc9\x4c\x14\x5c\xb0\xbf\xb8\x29\x8f\xe1\x43\x08\x48\x09\xfe\x38\xaf\x3c\x96\xfa\x2c\x92\x37\xb3\xaf\xab\x36\x47\x04\xc9\x33\xe0\x40\xf2\x53\x0c\xf1\xfa\x9c\x52\x9e\xf1\xe0\xb7\x50\xd4\x33\x4b\xf1\x1b\xd4\x40\x63\xb7\x34\xcb\x04\xc7\x3c\x37\xcf\x8b\xb4\x80\x79\x61\xa6\xf2\x0f\x9d\xe6\x9a\x34\xb0\xa5\xd9\x9e\x65\xc5\xc6\xf3\x33\x3e\xcb\x55\x21\x2f\xcc\xba\xf8\x63\xa7\x99\xcb\x8d\x6c\x69\xf6\xe7\x18\xce\xbc\x9b\xc2\xcc\xc5\x97\xe5\x59\xcb\x3f\x74\x9a\x71\xd2\x40\xdd\x6c\xcd\x5a\x08\xbd\x92\xa0\x4f\x20\x30\xeb\x65\xfe\x4e\xf4\x77\x11\xfd\x55\xe4\x4f\xdc\xb5\xd0\xe5\x4a\x62\x05\x7c\xa9\xef\x45\xc4\x0e\x33\x7d\x40\xf2\x1c\xc7\xd8\x81\x49\x91\x4b\xae\x7c\xe6\x5d\xc4\x69\xeb\x62\x95\xd1\x27\x44\x5d\x4b\x8d\x6b\x58\x3b\x80\x92\xd7\x3a\xe9\xbb\xce\x7d\x9d\x00\x7d\x26\x96\x20\xda\x5a\xde\x65\xdd\xc4\x91\xcd\xd0\xce\xed\x19\x42\x4a\x6b\x65\x6f\xde\x34\x5e\x82\x29\x67\xa0\x22\x03\xfa\x65\x9f\x46\x29\xde\xa2\xde\x10\x95\xdd\x87\xa4\x58\xdf\xfd\xc7\xa7\xa3\x89\x6c\x89\xaa\x57\x69\xd3\x0d\xd4\x93\xa7\x11\x61\x62\x4f\xd7\x25\xf2\x88\xef\xfb\xa5\x90\x68\xb4\x25\x91\x0e\x1e\x9f\x8e\xf6\x0b\xe6\xba\x10\x23\x86\xdd\x9a\x22\xcb\x2b\x68\x96\x14\x80\x6d\x26\x08\xbe\x47\xca\x1e\x56\x51\x36\x4a\x15\x1a\x05\x6d\x33\x6d\x67\x47\x5d\x1d\x75\x8f\xaa\xa8\x4b\x84\x62\xac\xa0\x6d\xa2\x33\xef\x28\xab\xa3\xec\x71\x15\x65\x43\xec\x21\xec\xf1\x83\x47\x41\xdd\x73\xe9\xe7\x76\x14\x3e\xb4\x4c\xb2\x28\xa2\xdb\xb2\x82\x98\x8a\x7a\x86\xfa\x17\x0b\x38\xe9\x13\x49\x4f\xba\x48\x2a\x8c\xb6\xa8\x68\xdf\x0f\xd3\x79\x35\xe5\x02\xc7\xe9\x97\xfd\xb2\x9b\xb6\xd8\x8e\xd7\x87\x93\xe2\x11\xf9\xe9\x93\x79\x05\x19\x8d\xb8\x8d\x7e\xe0\xb9\x35\x2e\x9a\xc2\xad\xe1\x0b\x9a\xf2\xf2\x5d\x89\xda\xf3\x05\x4d\xb9\xfd\x87\x41\xfd\x7d\xce\x10\x9a\xb8\x0f\xa0\x42\xcd\x67\xf5\xee\xa8\xbe\x69\x15\x5f\xd1\xaa\xf6\x65\x76\x4e\x9a\x45\xa8\x34\xd5\xc9\x59\xa0\x19\xd7\xa9\x2a\x0b\xb6\x30\x64\x6a\x15\xb8\xb8\x64\xa4\x52\x37\x50\x3b\x86\xac\x09\x3b\x88\x97\x53\x88\x35\x88\xf2\x79\xd6\x08\x9f\x22\x01\x98\x44\x27\x45\x5c\xf1\xff\xfb\xbf\xff\x4f\xfe\x39\x18\xb8\xe5\xa7\x0c\x34\xcb\x81\x95\x4b\xea\xb2\x64\x39\xac\xad\x30\xa5\xb0\xef\xd5\xad\x2f\xa3\xaa\x76\xd1\x03\x69\xf5\xb9\xd0\x51\xdd\x15\xe4\xe1\xa5\x28\xc7\xac\x6a\x82\xda\xee\x99\x9f\xf6\x82\x99\x7b\x8d\xe9\xda\xe0\x43\x37\x08\xc4\xcb\x87\x1d\xcc\x5a\xaa\x4b\xd1\xad\x9c\x34\xac\x12\x11\x86\xd7\x05\xa1\x13\x0e\xe8\x97\x7d\x0a\x1d\xde\x62\x3b\xa1\x73\xb4\xaf\x38\x60\xb2\xe2\x06\xd2\xf2\xa6\x6d\x7b\x48\xab\x26\x19\xff\x53\x89\x6f\x7f\x07\x27\x39\xa5\x6f\xc0\x6b\x4d\xe6\xe9\x4b\xbf\xec\x97\xbe\xb4\xc5\x96\xf4\x55\xa9\xf4\x4a\xfa\x26\x53\x50\xd1\xf6\x3f\x3a\xd0\x36\x8f\x50\xaf\x91\x59\xfc\x32\xcb\x77\xaf\xae\x42\x55\xfb\xfa\x4e\x55\x4e\xfc\xae\x85\x2e\xe0\x32\x24\x6b\x5b\xaa\x8b\x56\x51\xaf\x51\xaa\xa7\xab\xf1\xa8\x58\xc3\x16\xf7\x50\xb3\xb2\x0c\x74\x6e\x60\x2c\xbb\x5e\x84\xd5\x4a\xe5\xdc\x84\x23\xad\xaa\x08\x58\xd8\xa0\x71\xae\xba\xe8\x8e\x97\xcb\x05\x34\x1c\x3f\x8e\x08\xc3\x11\x36\x84\x65\xc4\x5f\x1b\xac\x91\x41\x05\x5f\x1b\xf9\xc9\x74\x14\xd6\x09\xef\x3b\x26\xf1\x1b\x40\x9c\x05\xbc\x7d\x2a\xbf\x45\xcc\x7d\x65\x2c\x69\x7f\x54\x4e\xe0\x84\xd2\x06\xa7\x84\x91\xda\x4e\x7b\x24\x79\xa7\xa3\xfa\x1e\x13\x35\x4f\x45\xb2\x80\xec\x18\x4f\xe1\xd0\xd5\x05\xf6\xc6\x56\x8e\x06\xb9\x30\x15\x95\x90\x6a\x07\x2b\x5d\x2e\xac\xa8\x75\x38\x36\x6d\x40\x17\x3f\x43\xe7\xd5\x26\x24\x61\x93\x18\x91\x47\x4c\xe5\xdf\x6a\x58\xc2\x7a\xea\xcf\x5e\x04\xee\xdb\x66\x71\x22\x0d\x82\x3e\xba\x07\x77\xd0\x7f\xba\xd3\xf1\x91\x54\x67\x63\xcb\x34\x0d\x9f\xad\x5f\xfd\x33\xf6\x7e\xea\x31\xd4\x23\x2d\xe9\xc4\x2f\x89\x89\xb9\xd1\x34\xe4\x59\xeb\xa3\x41\x46\xfb\xdc\x65\xc1\x08\x95\x96\x03\xfa\x7c\x0b\x11\x23\x39\x2e\x34\x8d\x92\xa8\x51\x2f\x98\x76\x18\x28\x2f\x92\x8a\x37\x2b\x2b\x86\xdd\xfb\xf0\x0b\xb9\x5a\x8c\x32\x0a\x43\xa7\xfb\x35\x73\x08\x9d\xc8\xcb\xa5\x37\xbf\x50\xce\x13\xa3\xeb\xac\xa1\x9b\x28\x57\x30\x47\xe3\x8f\xd9\x39\x8d\xb6\xe0\x34\x2a\xc8\x58\x09\x64\xb6\xb3\xfb\xa8\xd2\x22\x99\xaf\xfe\x7e\xcb\x76\x80\x7b\x6a\x71\xd6\xd3\xbc\xda\x67\xb2\x40\x98\xbc\xd4\xd9\x23\x5f\x9e\xed\xcc\xfa\xcd\x88\x5c\xed\x3a\x01\xd1\x15\x33\xbb\xbf\xd5\xfb\xfe\x2e\x41\x74\x65\xb0\x87\x76\x24\x6f\x46\x72\xad\x4f\x25\x0d\x81\xa7\x27\x06\x86\x80\xc0\x97\x3c\xaa\xd7\x3c\x65\x7f\x19\xfc\x4f\x35\x1f\xf8\x23\xee\x8e\x09\x8d\x98\x30\x19\x36\x61\xc2\x12\xb9\xde\x6c\x9d\x30\xe1\x0d\xfb\xab\x92\x09\xec\x11\x6f\xc7\x85\xa6\x5c\x18\xd5\xbb\xc5\xab\xc8\xbd\xf3\x8d\xb7\x21\xf6\xb8\x8a\xd8\x5f\xd0\xf4\x23\xc4\x91\x1e\x76\x41\xfa\x75\x47\xec\x7a\x62\x4f\x2a\x43\x69\x90\x0b\x07\xd5\x1a\xcc\xa9\xef\x89\x92\xbf\x3d\xb8\xce\x59\x69\xf6\xe6\x7e\x73\xf1\x56\x52\x46\xf9\x3b\x76\x91\xeb\xf9\x7b\xd8\xf5\x42\x20\x6e\xe9\x59\xab\x79\x0f\xb9\x54\x0b\x55\x58\x05\x6e\x48\x8d\xcb\x9c\x1b\x4c\x2a\x1d\xe7\x27\x52\xab\x3b\xff\xf9\xfd\xf5\x9f\x9f\xa8\x4d\x4b\xda\x08\xed\xef\xd0\x81\xac\xdd\x92\xfb\x2a\x95\x6e\xe7\x4a\xee\xee\x4a\xd6\x53\x5a\xa5\xb6\xed\x9c\xca\xed\x9d\xca\xb9\xd2\x42\x15\x8e\xbf\xee\xbe\xe9\x12\xf9\xee\xa9\x37\x4e\x5a\x67\xb7\xeb\x94\xab\xcf\xf2\x68\xe4\x5d\xeb\x68\xe6\x6f\xc6\xf0\xcd\xd9\xbd\x39\xb3\x73\x86\x6d\x1d\x29\x7b\x61\xf7\x02\x5c\x43\x63\x0a\x61\x60\x30\x6f\x84\x3b\xa8\x67\x52\x43\xb6\xf5\xe8\x01\x55\xc8\xc2\x8e\x3e\xbc\x0c\x56\x7f\xcb\x2e\xbc\xd1\xbb\x57\xe1\xd1\x24\xbe\x6e\xee\x16\x6d\xe5\xb5\x93\xe6\xb9\x35\xa7\x5d\x1c\xf8\x90\x55\xbb\x4e\x52\xbd\x9f\xba\xac\x00\xf5\xa6\xde\xba\x62\x49\xb8\xb6\x3b\x38\x2f\x06\xb8\xff\x43\xb5\x8d\x29\x7d\xcf\x52\x3a\x96\x37\x5f\xa3\x6a\xea\xbe\x37\x5f\xb0\xca\xf8\xf4\xf8\x07\x0e\x31\xc2\xd8\xf7\x79\x02\x99\xd9\xbc\x46\x3a\xa5\x1f\x74\x3d\x22\xd7\x33\xaf\xac\x60\xfe\x94\x3d\xdc\x64\x27\x77\x90\x9a\x74\x3a\x2c\xa1\x77\xea\x43\x5d\xfe\x9b\x74\xd9\x92\x4b\x25\x64\xb1\xc8\x11\x1f\x2f\x9f\x9b\xbc\x5c\xb5\x69\x82\x5d\xa4\x50\x25\x96\x40\x16\x26\x4d\x69\x8b\x70\x31\x52\x9a\x17\x7d\xe7\x5e\xc0\xfc\x6d\x90\x17\x97\x67\xb9\x95\xf1\x74\xc9\x49\x9d\x6d\xc4\xcf\x9f\x19\x1d\x2d\xce\xb2\xd6\xa5\xea\x6b\x5f\x48\xfa\x6c\x73\x79\xec\x5f\x20\x67\x3c\xdb\x48\x1e\x87\x3e\x5a\x73\xee\x6c\x57\x20\x4f\x3f\x4c\xc6\x47\x37\x58\x0d\x9f\xd1\x87\x40\xce\x26\x7a\xf7\x12\xb9\xb4\xe0\xa5\xe1\x24\x75\x32\xd2\xc5\x9f\x1f\xea\xa7\x3c\x4c\x50\xee\x47\xe5\xca\xeb\x7d\x99\xa5\x1d\x6e\xb0\xce\x20\x5d\x1d\xf7\x22\x76\xe7\x62\xf5\xe1\xc7\xf0\xd5\xbb\x1f\xd4\xb1\x3b\xfd\xc5\xed\xc8\x33\xbe\x0f\x71\x3b\xdc\xc4\xf2\x54\xe6\x43\x6d\xf4\xce\x66\x91\x18\x9f\xf5\x5d\xb7\x0d\xc6\xb8\x4d\x00\xd4\xfb\x15\x80\x21\x2d\x1b\x09\x4d\xbc\x80\x23\xd7\x30\x9d\xbe\x6c\xd4\x7e\x79\xa6\xbf\xce\xf4\x87\xd6\x77\x3f\x3d\x15\x4a\xca\x8e\x46\x8f\x4f\x47\xa3\x3b\x4b\xf1\xfb\x7e\xe9\x3c\xae\xa2\x33\x77\xf7\x5f\x7a\xda\x30\x8b\xd6\xee\xfd\xef\x97\xd0\x93\x2a\x42\x13\xec\xcd\xe7\x10\x43\xf7\x07\xdd\x9a\xbe\x4c\x9e\x30\x7e\xd8\xad\xeb\x06\xe4\xde\xab\x22\x77\xaf\xa9\xed\xdf\x2f\x8d\xf7\xab\x68\xbc\x00\xd1\xb9\x0f\x1c\x46\xda\x67\xc0\xf3\x63\xac\x85\x52\x4d\x9f\x33\xe4\x07\xeb\x70\x6c\x6f\xd9\xe5\x3b\xba\x77\x2e\x5f\x35\x13\x8a\x70\xc3\x4d\x75\x10\x5c\x11\xb7\x9d\x3d\xe5\x96\x4c\xdb\xdc\x19\x9e\x5c\x7b\xa4\x70\x81\x32\x3e\x6a\xfb\xe6\xe4\x83\xbd\x5b\x7b\x47\x96\x39\x43\x78\x09\x88\xbd\x44\x01\x59\xd8\x24\x92\x5c\xf8\x49\x37\xb9\x73\xad\x78\x09\xd8\x64\xfc\x05\x39\xde\x47\x93\x99\xac\x6a\xdf\x5a\x75\x26\xa0\xae\x1f\x93\x5d\xc0\x98\x01\xab\x45\x14\x81\x61\xbc\x7d\x74\x62\xd8\xc6\xcb\xc0\x48\x50\xae\xdb\x67\x74\xe5\x87\xa4\x11\x21\x4d\xc7\x73\x89\x63\xd8\xd2\xfc\x95\xfd\xef\x19\x25\x76\xc9\xd7\xd7\x3a\x49\x4a\x6d\x9f\x2b\x7f\x5b\x6e\x7a\xdc\x05\x0c\xba\x9b\xe1\xb8\xd6\x75\xb3\xb9\xe3\x26\x77\xc9\xd4\x9a\x5a\x3b\xb8\x6d\x2e\x17\x5e\x64\x78\x91\xb1\x44\x11\x31\x7c\xef\x0a\xfa\x6b\xc3\x8d\x21\x95\xcf\x73\x80\xa7\x60\x0e\x0d\x07\xf9\x49\xee\xe1\x7d\x70\xd8\x14\xc4\x78\x47\xc3\xcd\x7d\x40\xd6\xfd\xed\xe9\xd3\xb7\x3f\x44\xf0\xac\x27\xd3\x60\xb2\xed\x85\xad\xa6\xc2\x38\xc3\x5b\x2a\x9d\xf1\x0e\x0a\x1c\x40\xff\x62\xa6\x3c\xda\xd1\xa3\x62\xdb\xc9\x04\x04\xc6\x8e\xac\xb9\x70\x43\x51\x9b\xc2\x5d\x12\xfc\x07\xfb\x74\x99\x04\xa6\x17\xcd\x83\xad\x73\x5c\x94\xf9\x39\xb5\x20\x24\x75\x76\xf2\xd2\x20\xab\xac\xe4\x9b\xa5\x13\x6e\x9a\x9c\xf9\xc8\x47\x80\x53\x7c\xab\x2b\xfc\xa7\x7f\xa2\x78\x11\xbd\xfb\xda\x70\x85\xf7\x66\x34\x34\x16\x20\xb2\xa9\x5e\x69\x73\x5c\xcc\xcc\x9b\x94\x03\x7a\x16\x44\xb2\xa3\xd0\x0b\x02\x06\xdc\xf9\xb9\x6f\x69\x25\xba\xd8\x80\x93\x29\x21\xb6\xc9\x48\x82\xc9\xf9\xe8\xad\x1f\x36\x2e\x0c\x50\x11\x1e\x48\xcf\x1b\x5b\xcc\x4a\xe1\x4d\xc8\x47\x03\x1d\x95\x4e\x9b\x43\xcb\xf4\xbd\xdc\xef\x2a\x34\x4c\xba\x7d\xaf\xe1\x69\x0e\x13\xd3\x4a\xc4\x09\xf3\x1a\xdb\xfc\x91\x04\x13\xf3\x0b\x9a\x0e\x92\x43\x41\xf2\xb8\xa9\x6f\x5c\xef\xae\x21\xbe\xf6\xe0\xaa\xea\x16\x55\x3e\x27\x6f\x71\xe4\xb9\xf8\x83\xda\xe1\x9f\xc9\x6e\xd1\xfb\x31\x81\x6b\x1e\x88\x1e\x35\x19\xfe\xc7\xe4\xd9\x46\x83\x2f\xbb\x0c\xc4\x49\x15\x87\x6c\x3b\x9d\xe5\x3d\x4f\x35\xca\xf1\xad\xf3\x51\xf6\x5b\x36\x60\xa4\x3c\xf6\x46\xc4\x68\x04\xd0\x7a\x8b\x33\xcc\x67\xbb\xd7\xce\xb0\x90\x8a\x7b\x2f\xd6\x6a\xde\xe9\x57\x3b\x85\x82\x83\xa8\xc9\x14\x8a\x5a\x75\x4f\x55\x53\x0a\x67\xca\x06\x87\x12\x01\xd1\x95\x3d\x67\x6a\xd0\x76\x0f\xa6\x5f\xd0\xcb\xe0\xd5\xf0\xe7\x9f\xeb\x21\x0b\x2c\x93\x97\xe5\xb2\x4c\x17\x90\x78\x69\x5a\x26\x17\xf7\xcd\x14\x6d\x96\x10\xc9\x26\xac\xd3\xb7\x2d\xd3\xb0\x0d\x95\x3e\x9e\xf3\xa0\x56\x16\xbe\xb8\xc7\x87\x66\xa4\xdf\x0e\xb9\xb5\xc0\x54\x67\x8c\xc1\xda\x2c\x7a\xf8\x45\x04\x4b\x5e\xaf\x4f\x75\xe8\x3e\x4e\xd9\xea\x5d\xb3\x49\x84\x03\xbd\xbc\x8f\xd4\xac\x49\xd2\x0a\xcb\x34\x2f\x56\x42\x4a\xd6\x49\x31\x06\xc9\x2c\x96\x9f\x6a\x17\x3a\xc5\x16\xc6\x12\xf8\xbe\x7a\x14\x2d\x23\xb0\x02\x56\xc0\x2e\x53\x27\x94\x99\x13\x09\x31\x43\xa0\xa6\x24\x07\x8e\x97\x8c\x0c\x69\x36\xb1\x71\x06\x09\xf0\xfc\x48\x31\xe7\x26\x0d\x87\xc0\x4b\x2b\x35\x54\x3d\x47\x78\xd8\x70\xd2\xff\xbf\x19\x74\x04\x72\xa7\x4a\x06\x11\xf6\x90\x2a\x43\x43\x63\x6f\xe9\x7b\x9c\xef\x61\x04\xf1\x35\x74\x8d\x7c\x6a\x97\x72\xb0\x58\x3c\xcb\x1e\xcd\x27\xa1\xbc\x79\xf1\xb5\xc2\x48\x74\x6b\x83\x2e\x65\x96\x55\x8e\x3b\x79\xba\x30\x74\xef\x87\x6d\x0c\xfd\xcc\x8b\xae\x9a\x0e\xfc\x69\xb8\x80\x4b\x88\x81\xcf\x5f\x6a\x30\xfe\xe2\x37\x1b\x6e\xf8\x0d\xf7\xb9\x2e\x30\x55\xd1\x88\x78\x24\xd3\xc1\x0c\xee\xdc\xab\xe5\xc7\x14\xb8\x73\x48\x05\xd3\x6a\xe1\x91\x54\x3c\x26\x14\xd5\x40\xed\x54\x44\xf9\xab\x69\xba\x41\x48\xbe\xb8\x14\x48\xf9\x7a\xdc\x7e\xcf\x4a\xc1\x28\xd2\xf6\x4e\x51\x40\x80\xc7\x6c\x04\x45\xc8\x98\xd4\x01\x90\x80\x0f\x53\x85\x22\xf4\x3d\x62\x27\x67\x57\xbd\x37\x09\xa9\xd3\x5f\x7c\x38\x87\x81\xab\x1c\x39\x04\xce\x42\x18\xa7\x58\xa0\x2b\x20\xa0\xb1\x69\xbf\xac\x10\x8c\x46\x69\xa7\x9f\xc6\xc7\xbc\xd9\x7d\x4b\xa4\xff\xa4\x38\xf0\x86\x38\xdf\x15\x9e\x10\xfa\xb0\x90\xfa\x9f\xad\x64\x50\x5c\x55\x38\x13\xda\x56\xf2\x73\x0a\x1c\x94\x29\x13\xe9\x57\x35\x3d\x30\x5d\x51\x46\x01\x64\x8d\x30\xfb\xb6\x6c\x8d\xab\xcc\xf4\x2b\x2d\xdb\xc2\xd4\x4d\x07\xf9\x08\xdb\xd1\x8a\xe5\xab\xe4\xc7\xa3\x20\x8a\xe6\xcb\x9c\x35\x95\xb7\x65\xf3\x24\xcd\x03\xeb\xd3\xe7\xcf\x85\x3a\x22\x9f\x2b\xb1\x62\xea\xc5\x9f\xa0\x8b\xec\x02\xcb\x91\xab\xca\xf3\xd5\xe5\x3c\x2f\x35\x20\x27\x51\xe6\x96\x82\x3e\xc5\xb1\x2e\xc9\xb1\xea\xce\xba\x6f\x1d\x68\x53\x53\xab\xde\xdb\xab\xa9\x46\x72\x5f\x45\xb3\x74\x09\xce\x89\xeb\xa6\xd8\x60\x32\x20\x58\x0e\x29\x2c\x45\x2d\x0a\xc2\x98\x9c\x66\x72\xad\x09\x60\x98\x06\xf8\xab\x3b\x90\x98\x17\xd9\x5c\xfd\x94\x73\x19\xd8\xd7\x22\xc7\x41\x03\x2a\xd6\xc3\xe1\x50\x95\x79\x50\xb6\x1f\xed\x10\xc9\x76\x88\x64\x1b\x07\xc4\x66\xb7\xe6\xaa\x52\x2d\xcd\x3c\xf5\x66\x1f\x90\x64\xdf\x07\xae\x87\x92\xec\x47\x8f\x4f\x47\x87\x77\x83\x49\xf6\x1d\x53\xf9\x58\x47\xe5\xbb\x47\xc8\xfa\x7e\xb9\x70\x38\x6c\xc2\x85\x3b\x82\xc8\xfa\x8e\xd9\x30\xaa\x14\x39\xb7\x82\x91\xf5\x1d\x53\x7b\x5c\x45\xed\xdb\x01\xc9\xfa\x8e\xa9\x3d\xa9\xa2\xf6\x2d\xa1\x64\x75\xc5\xc9\xda\x21\x65\x75\x62\x71\x09\xc5\xb5\xb9\xa2\x7a\x0b\x50\x59\x29\xa2\xe9\xbd\x04\xcc\xea\x01\x32\xab\x17\xd0\xac\x9e\x61\xb3\xee\x25\x70\x56\x95\x55\xe9\x4f\x0d\x9e\xa5\xda\xa5\xac\x4c\x50\x51\x10\xdf\x09\x76\xd6\x9f\x1a\x3d\x4b\x49\xea\xc3\xa6\xa4\xee\x13\x3c\xab\x47\xf8\x2c\xfd\xc6\xa9\x3b\x00\xdb\xc4\xd3\xf7\x50\x72\xa1\x91\x24\x6b\x0a\xc1\xd5\xa0\xa9\x46\x30\x5c\xc6\x5d\x40\x71\x19\xdf\x08\x1c\xd7\x26\x8b\xa9\x2e\xb5\xe4\x4f\xc9\xf7\x5a\x54\xae\x9e\x79\xdf\x08\x9b\x6b\x53\x3e\x56\x26\xf6\x54\xbb\x5d\x14\x8d\x6f\x18\xef\x96\x17\xd9\x1d\x63\xde\xa4\x10\xd5\x6d\x46\xbc\xad\x9c\x00\x3e\xbd\xfa\xe9\xe9\x2d\x01\xca\xa4\xb3\xbc\x07\x68\x32\xc9\x58\x4a\x50\x32\x19\x2b\xe8\xc7\x29\x8a\x60\xd9\x1f\x7f\x2d\x45\x09\xb3\x11\xdc\x3e\xa6\x4c\xd2\x65\xc7\x45\x76\x3f\x72\x36\x5e\xed\xc7\xb3\xfd\x6b\xb2\xdf\x38\xd4\xff\x9b\xc9\xc7\xd8\x2c\x17\x03\xc7\xdb\xc6\xf6\x3b\xfd\x29\x3a\x09\x9d\xab\xc3\x0d\x76\xfe\xfb\x38\x30\x80\xf1\x45\x4a\x76\x52\x06\xa2\x6e\xbe\x75\x35\xc8\x67\xd2\x7d\xbe\x88\x70\x96\x5d\xe7\x03\xb8\xaa\x47\x37\x6b\x02\x56\xd6\xe7\x31\x82\xe3\x0e\x78\x64\xf7\x63\x47\x83\xb7\x17\xfe\x9b\xe7\xcf\x48\xb3\x75\xb3\x27\xd6\x8c\x0f\xd6\x28\x26\x82\x83\x7a\x8d\xbc\xf9\x8a\xe9\x53\x08\xe8\x4a\x30\x76\x12\x0e\x9d\xe5\x42\x3a\xe6\x19\xc2\x53\x56\x42\x3a\x55\x18\xb7\x9c\x77\xb7\x7a\xf5\xf2\xa7\x17\x8b\xbd\x8d\xd3\xb5\x2a\xb5\xe0\x8d\x35\x5f\x62\x9c\xc4\x64\x81\xb0\xf7\x95\xaf\x85\xa2\x4a\xd8\xb9\xb6\x6a\x39\x66\x83\xa0\x2b\x18\xf0\xb5\x88\x21\x69\x70\xcb\xfc\x05\xc5\x38\xb1\x62\x94\x02\xe5\x79\x68\x3c\x73\xd5\x40\x42\xbc\x60\x1e\x0d\x58\x07\x3a\x03\xca\xc9\xe9\x6b\x83\x8f\xa0\x26\xff\xc6\x45\x30\x32\x02\x44\x8c\x10\xa3\x6b\xcf\x85\xec\x86\x86\xe1\x6f\xb1\x87\xa1\x6b\x84\x10\x2f\xbd\x88\xab\x18\x06\x0b\x49\x74\x08\xaf\x16\x0b\xdc\xa5\x17\x78\x11\xc1\x80\x20\x6c\x78\x33\x83\x88\xbc\x6e\x10\x18\x10\x63\x84\x07\xad\xaf\x5b\xe7\x62\x04\x20\xb8\x7b\x32\xac\x3c\xb2\xe0\xd3\x8e\x3c\x02\xe5\x79\x1b\x04\x19\xd7\x1e\x5c\xb1\x09\xea\x26\x95\x5c\x34\x6e\xe9\x5a\xa1\xdf\xf6\x1b\x88\x90\x05\x58\x4e\x63\x3c\x87\xd8\x5e\xc2\x20\xde\xb2\xfc\xf8\xf8\xfa\xd7\x7d\xef\xd9\x12\x35\xd7\x01\xaf\xe7\xca\x8d\x5a\x98\x95\xf8\x95\x32\xf0\x07\x74\x63\x5a\xe6\xd0\x18\x1a\xa3\x21\xfb\xff\xe4\xc7\x9b\xa5\xcf\x14\xfb\x05\x21\xe1\xe3\x47\x8f\x56\xab\xd5\x60\x35\x19\x20\x3c\x7f\x34\x1e\x0e\x87\x8f\x58\x4f\xba\x1f\xd9\xbb\x8f\x34\x72\x0a\x43\x87\xe4\x06\xc9\x06\x90\x74\xbb\x96\xff\x58\x79\x2e\x59\x98\x96\x29\x0d\x6b\x01\x45\x3c\xda\xe8\x40\x65\x47\x6b\xdc\xc7\xde\xf8\x0e\x3a\x39\xda\xeb\xda\x49\xff\x9b\x24\xbf\x04\x36\xd8\x21\x65\xc5\x60\x9b\x5b\xe4\xe5\xa9\xbb\x7a\x7d\xf9\xa2\xe1\x35\xbc\xe2\x88\x2d\x4e\x4b\xbd\x78\x1b\xbe\x6d\x47\xbf\xc5\x00\x43\x43\xfd\xf5\xa8\x62\x51\xf5\xd2\xc1\xf8\xb6\x3b\x98\xdc\x76\x07\x7b\xb7\xdd\xc1\xfe\x6d\x77\x50\x25\x39\x7a\xe9\xe0\xf0\xb6\x3b\x38\xba\xed\x0e\x8e\xef\x42\xee\x15\xba\xde\x40\xf0\xf1\xdf\x7c\x34\x47\xdb\x36\x40\xfc\x73\xf2\x1a\x41\xd4\x5c\xe6\xe9\xd4\x02\x69\x46\xbd\x9e\xfa\x65\xe5\x62\x3c\x3c\x18\x4c\x46\xc6\xc1\x70\x30\x3c\xd4\x88\xd6\x79\x75\xde\xac\xee\xe7\xec\x8a\x02\x0a\x81\xb7\xae\x69\x99\x6f\x0e\x8f\x06\x7b\xc7\xd6\x78\x34\x38\x9a\x7c\xdc\x3b\x18\x0c\x0f\x17\xf6\xfe\xe0\xf8\xda\x9e\x8c\x17\x47\x83\xe1\xc1\xeb\xe3\xf1\xe0\xf0\xd8\x9a\x1c\x0d\x26\xc7\x1f\x47\x7b\x83\xd1\x82\xfe\x3a\x19\xbf\x38\x1e\x0e\x0e\x26\xbf\xea\x5c\x75\x95\x5d\x8e\x46\x93\xc1\xf0\xd8\xda\x3b\x18\xec\xef\x3b\xf6\x91\x35\xb4\x47\xc3\xc1\xe8\xc8\xde\x1b\xec\x8d\xc5\xc7\xe3\xc1\x78\xfc\x71\x32\x1a\xec\x4d\x9c\xa1\xbd\x37\x38\xb2\xc6\x83\xd1\x01\xfb\xd6\xca\x1e\x88\xd8\x47\x8b\xbe\xc6\xbf\xb5\xe8\xb7\xd7\xfb\x83\xe3\xd1\xe9\x68\x3c\x19\x8c\x0f\xad\xbd\xf1\x60\x34\xb1\x46\xe3\xd1\x60\x34\xe2\x1d\x5a\x72\xef\xbf\x2e\x87\xf6\xe8\x78\x30\xd9\x77\xec\xc9\x60\x34\xb6\x68\x5f\x93\xb1\x35\x1a\x4c\x8e\xf9\xa7\xbd\xeb\x83\xc1\xf8\xd8\x19\x5a\xe3\xc1\xc1\x9e\x35\x1a\x8c\xad\x3d\x8b\xff\x10\xd1\xff\xd8\xf4\x49\xf6\x85\xbd\x47\x87\x3b\xde\x3b\x1d\x8d\x0e\x07\x7b\x23\x6b\x7c\x34\x38\xb0\x46\xa3\x83\xc1\x78\x64\x8d\x0f\x07\xe3\xa4\x5b\xfa\xb9\x23\xd5\xf6\x46\x83\xe1\x91\xc5\x78\xf4\x71\x7c\x3c\x38\xdc\x77\x86\xf6\x68\x30\xde\xb7\x07\xfb\x13\x7b\x34\x38\x3a\xcc\xfe\x01\xa3\x83\xc1\xe8\xc0\xe2\xff\x0e\xe9\xff\xd9\x07\x83\x91\x35\xce\x38\x7c\x74\xf0\x71\x3c\x1e\x1c\x1c\x2f\xf6\x06\x7b\x07\xfe\x60\xff\xc8\x1a\x83\xf1\x64\xb0\x37\xb1\xf8\xbf\xf4\xa5\x91\x75\x3c\x98\x1c\xd8\xe3\xc1\xde\x3e\x25\xf2\x1e\xff\x87\xff\xc2\x88\x3e\x1e\xec\x5b\x63\xfa\x46\xfa\xf8\xde\xc8\x1e\x0f\xf6\x9d\xc9\xe0\xe8\xd8\x1a\x5a\xfb\x83\x31\xe5\xdc\xe1\x1e\xff\x74\x30\x38\x1e\xf1\x11\xbc\x18\xed\xef\x0d\x8e\xeb\x67\xb1\x3f\xd8\xb7\xd8\x3f\xa5\x39\x74\xa4\xe1\xd1\x78\x70\x24\x68\xb8\xa0\xeb\xca\xb7\x07\x7b\xb4\xdb\xfd\x23\x30\x62\x0b\x9d\xff\xcb\xa6\x63\x1f\x5a\xe3\xc1\xf0\xc0\xb1\xf7\xe8\x4a\x62\xbd\xdb\xe3\xc1\xf1\x84\x7d\x38\x64\x6b\xe5\x70\x9f\x3d\x62\x1f\x50\x02\x1e\x0c\x8e\xc6\xec\xd3\x8b\xd1\xe1\xe1\xc7\xc9\x70\xb0\x7f\xe0\x0c\x29\x39\x8e\xed\xc1\xe1\xd8\x9e\x0c\xf6\xe9\x0a\x3f\xa0\x1f\xc0\x64\x3c\x38\x1c\x59\xfc\xdf\x64\x6e\x7b\x47\x83\xc3\xb1\xcf\x9e\xa5\xcf\x01\xda\xc2\xd8\xe2\xff\x72\xfa\x1e\xd9\xa3\xc1\xc8\x39\x1c\x4c\x28\x17\x8e\x29\xf1\x07\xfb\xc7\xec\xc3\xd1\x60\x6f\xff\xd7\x37\xa3\xc3\x43\x6b\x72\x38\x18\xef\x2d\xd8\xea\x75\xec\xd1\xe0\x98\x2e\x6a\xca\x41\x4a\x5e\xc6\xc9\xf1\x60\x12\x0d\xf6\x27\xf4\xbf\xfb\xd9\x3f\xe0\x78\x30\xa6\xdb\x87\x8f\xc6\xe2\x5b\xb1\xf3\x52\x3d\xa2\xb3\xa1\x43\xdf\x3b\x74\x86\xf6\x3e\xdd\x9a\xe3\xc1\xc4\x3e\x1a\x8c\x0f\xac\xc3\xc1\x21\xff\x44\x89\x30\x1e\x5b\xfc\x5f\x3e\xc1\x83\xc1\x78\x6f\x70\x70\xf8\x71\x34\x19\x8c\xf6\x7c\xba\x4a\xed\xc1\x51\xba\x6a\xf7\x06\x07\x07\xbe\x3d\xd8\x3f\xb2\xc7\x94\x5b\x93\x91\xc5\xff\x15\xdc\xa2\x5b\x91\xce\x90\x32\x8c\xb2\xe7\x70\x30\xb6\x29\x37\xd9\x87\xa3\xc1\x68\xf4\xeb\x72\xb4\x67\xd3\x8d\x0c\xc6\x07\xd6\x38\xd9\x18\x74\x74\xf6\xe0\x60\xec\xd8\x63\x2a\x24\x86\x8c\xc7\x16\x67\xb5\x45\xa5\xc2\x35\x1d\xac\x33\xb4\x28\x31\x07\x87\x63\x8b\x92\xee\xe8\xc8\x9a\x80\x23\xba\xa8\xd9\x3f\x9c\x68\xfb\x83\xf1\x84\x35\x52\x4b\x35\xe4\xaf\xe7\x1a\x23\xe4\x0c\xb8\xdc\xc8\x44\xbf\x0c\x91\xc7\x10\x56\xcc\xc9\xd1\x60\x38\x36\xc6\x93\xc1\x68\x62\xf0\xcf\x93\xc9\x60\x78\x64\x4c\x46\x83\xe1\xb1\x31\x39\xa4\xff\x8e\x0f\x06\xe3\x7d\x63\xb2\x97\x7d\xa6\xa7\xc9\x01\xfd\x3c\x39\xe2\x27\x8b\xb1\x3f\x1e\xec\x1d\x1b\x7b\xfb\xd9\xe7\xd1\xfe\x60\x34\xa2\x9f\x87\x23\xf1\x59\xea\xab\xc3\x3c\xd2\x21\x8f\x0f\x06\xc3\x89\xc1\x7a\x1d\x8a\x96\x47\x87\x83\xfd\x03\x63\xbc\x3f\xd8\x9b\x18\x4c\x24\x1b\x4c\x4a\x1b\x4c\x0e\x18\xe3\x23\x3a\x23\xfe\x79\xc4\x3e\xf3\x91\xd0\xc5\x90\x1b\x55\x71\xe4\xfc\xf3\xf0\xd0\xc8\xba\xdc\x68\xe0\x63\x3a\x82\xc9\x98\xd1\x91\x7d\xde\x1b\xd3\xd1\x8c\xf6\x06\x47\x87\xc6\xde\x61\xf6\x79\xcc\x3f\x1f\x0e\x8e\xd8\xac\xc6\xfb\xc6\x70\x30\xda\x17\x03\x1b\xa6\xff\xdd\x4b\x06\x27\xb3\x24\x63\x55\xd6\x9d\x7a\xd4\x77\xe4\x84\x56\xa8\x71\xed\x75\x41\x96\x7a\x8e\xb7\xed\x7a\x7e\xf9\x74\x8d\x9f\x87\x8b\xa8\x1e\x6c\xe5\xee\xbc\x0a\x75\x86\x5f\x2f\x7a\x96\x58\xe9\x1a\xc2\x3b\xe5\xbc\x11\x2a\xcb\xfe\xe7\x76\x01\x2c\xad\x73\x00\x8b\xb9\x7f\xf3\x04\xdf\xa9\x59\xda\xdf\x2e\xd1\xef\x3e\x24\xfa\x89\x1d\x5b\x80\xfb\xee\x54\x5c\xf8\x4f\x9a\x44\x50\xa6\x50\x29\xfd\x31\x97\x38\x00\xb4\x65\x14\x52\x84\x82\x5d\x09\x73\x15\x59\x4b\xc1\xfa\xb7\x86\xe5\xff\xdd\x91\xf6\xa8\x8a\xb4\x5e\xf4\x1a\x02\x17\x62\x0d\x71\xb3\x1f\x77\xc4\x55\x12\xf7\xb8\x8a\xb8\xc0\x75\x31\x8c\xb4\x9e\xc6\xec\xd7\x1d\x71\x55\xc4\x1d\xab\xea\x6a\x67\x42\x01\xe2\xd9\x39\xc2\xba\x40\xf5\x50\xfc\xb4\x23\xad\x92\xb4\xaa\x42\xda\x29\x69\x5d\x40\x00\x8f\x7f\xd1\x10\xf7\x2c\xf7\xc0\x96\xab\x78\xdc\x9b\x74\xb4\x32\x95\x27\x5d\xd5\xa9\x14\x35\x85\xb6\x68\x03\xaa\x5d\x17\x52\xd0\xe6\x2c\xfd\xb0\x9c\x69\x76\x0b\xc9\x61\x35\x6e\x8d\xfa\xd4\x30\x73\xf3\xc4\xb0\x9a\x31\xb4\x4b\x0b\x33\x6f\x3d\x29\x8c\x5f\x87\x9a\xe5\x83\x55\x47\xb6\xff\xb9\x72\xc1\x4a\x5b\x64\x32\x6e\x5a\xd1\xbf\xef\xfc\xaf\x5e\x89\x7b\x2f\xb2\xbf\xca\xc4\x9d\x34\x25\x6e\x9f\x19\x5f\x66\x5f\xf9\x5e\xea\x8d\xa1\x30\x7a\xa9\x73\xbd\xac\x82\xc9\x84\x27\x09\xa1\x98\xf8\x90\x98\x0d\xab\x06\x2b\x43\xb4\xfa\x8e\xed\x94\xf8\xd6\xc9\xe2\x76\x2f\x0a\x85\x1c\xbf\x9b\xde\x9c\x45\xa8\x21\xfa\xbe\x32\xf0\xfb\x42\x18\x10\xf3\x61\xdf\x9d\x8d\x9a\x39\xea\x74\x27\xee\xfd\x88\x8f\x5e\xbf\xfa\xf2\xe1\x0d\x3c\x5e\x34\x23\xef\x16\xa3\x9e\x37\xd9\x01\xdd\xa3\x9c\x93\x06\xf8\x7f\xb7\xcd\xab\xe1\x62\xfc\xf6\xed\xb9\x3a\x04\xc1\x24\x60\xde\x10\xcf\x9b\xef\x87\xf6\xb5\x73\x2a\xf4\x24\x07\xf9\xf1\xb2\x0c\x98\xdc\xe8\x2d\xc3\x8b\xec\x05\xf0\x67\x65\xcd\xaa\xe6\xf5\xfa\xaa\x53\x35\x6f\xb2\xc8\xec\x72\xd8\x19\xff\xdf\x25\x98\xe7\x11\x07\x35\x7e\x1f\x61\x57\xd6\x29\xb0\x86\xd0\xb5\x09\x98\x6b\x74\xc7\xa4\x1d\x66\xba\x6d\x52\x58\xaf\xba\xfc\x5e\xf6\x5c\xa9\x35\x6e\x2b\xac\xd2\x0a\x95\xaf\x7d\x4c\x20\x36\xbb\x1e\xa6\xc5\x1e\xd8\xad\x4a\x5b\x6c\x2e\x85\x77\xcd\xf4\xde\x4b\x46\xbc\x76\x10\xaf\xb5\x64\xd2\xcd\x38\xd3\xcc\x8b\xa8\xe5\x75\x30\x2a\xba\x76\x1a\x82\x91\x76\xd1\x40\xf4\x4b\x73\x2b\x0e\xbf\xbc\xbc\x54\xcb\xdb\xbf\x54\xca\x5b\x1e\x4b\xbf\xed\x3c\xd3\x57\x2f\x83\xf7\x8f\x2e\x3e\xde\x5a\xd6\x50\x7b\xa5\xb1\xac\x0a\xb6\x64\x8c\x48\x52\xe8\x70\x04\xf2\x37\x1f\x89\xf4\x86\xed\x72\x66\xfe\x7c\xe1\xff\xf2\x6a\xfc\x5a\xe3\x86\x45\xbe\xe7\xac\x9b\x96\xb5\x10\xe9\x1a\xb7\x90\x0c\xd8\xbc\x66\xc2\x89\xe3\xc0\x28\x62\x09\x2d\x18\xf9\x46\x3a\xa6\x36\xf1\x9f\x9a\xc3\xb7\xc5\xf1\x4b\x56\xc8\x26\x0b\x0f\xbb\x55\x25\x0f\xd4\xe9\x48\xe5\x43\xf8\xd4\x8f\x23\xba\x6c\x0d\xb2\x00\xc4\x88\x23\x68\x14\x26\xf9\xda\x8b\x48\x94\x64\xf6\xf0\xa4\x18\x96\xdb\x12\x42\x3c\x43\x78\x69\x38\x10\x13\xe0\x05\x06\xab\x49\x30\x30\x7e\x58\x8b\x8c\x20\x2f\x98\x1b\x80\x3f\x5f\x01\xda\x30\xb4\xcc\x0b\x96\xe8\x64\xe4\x2a\xe3\x5b\x06\x3d\x57\x8c\x59\x4c\x62\xcc\xd3\x8a\x60\x44\x8c\x95\xe7\xfb\xec\x1a\x1d\x93\x05\x0c\x88\xe7\x00\x02\x5d\xcb\x08\x11\xa1\x7f\x01\xdf\x5f\xb3\x9f\x10\xf6\xbe\xd2\xde\x31\x04\xae\x01\xf8\x6c\x08\x32\x80\xeb\xb2\x42\x11\xc0\x37\xbc\x80\x97\x8e\xf5\x50\xd0\x65\xc4\x9c\x42\x08\x17\xc7\x4c\x16\xd0\x60\x8b\xda\x83\x91\x01\x02\xd7\xc0\xb1\x0f\x23\x63\x86\x30\xc7\xaf\x60\x2d\x27\x93\xa0\xf7\xde\x12\xa2\x41\x53\x95\x28\x40\xc4\x9b\x79\x02\xea\x9e\xc1\x11\xcf\x50\xa5\xbe\xd2\x7a\x35\xb6\x78\xbb\xd6\x5e\xa7\xc9\xbb\x63\xbb\x8b\x8e\x7e\x4f\x6a\x81\xed\x29\xe3\x82\x20\x2c\xd6\x69\xa5\xfa\x13\x16\x59\xc3\xb7\xa4\x01\x30\x34\x22\x82\x30\x74\x0d\x87\x61\xb4\xd9\x91\xe7\x42\xc3\x4b\x19\x0b\x72\x23\x5a\x60\x38\x13\x51\xbb\xd1\xe3\x47\x8f\x5c\x78\x0d\x7d\x2a\x11\x07\x4b\xf4\xd5\xf3\x7d\xc0\x22\x78\x61\x60\x7f\xb8\x78\xe4\x22\x27\x7a\xf4\x33\x9c\x3e\x3a\x39\x7f\xf9\xe8\x67\x2f\x70\xd1\xea\x91\x8f\x1c\xe0\x4b\x43\x16\x63\x61\x5f\xb3\x61\xe4\xa7\x32\x30\x58\x2d\x53\xb6\x10\x42\x88\x23\x2f\x12\xb9\x71\x7c\x81\x00\x07\xa3\x28\x32\x22\x98\xe4\xcf\xfd\x82\x62\xc3\x01\x81\xb1\x04\x41\xcc\x16\xb9\xe3\x43\x80\xe5\x57\x16\x10\x43\x2d\x36\x46\xd5\xf7\x8d\xe4\x4d\x72\x1d\xa4\x9f\x97\x5e\xe0\x2d\xe3\x65\x2d\xcb\xa7\x31\x21\x54\x12\x27\x72\x7a\x34\x96\xb0\x4f\xd8\x6f\xf2\xb2\x9d\xa8\x91\xd0\xd8\x3c\x19\x47\xc5\x01\xe5\xf1\x82\xe1\x99\xec\xa2\x74\xb8\xe4\x79\x7a\x9b\x2a\xbc\xa5\x8d\x68\x16\xab\x29\x07\x88\xe4\xb3\x34\x5f\x46\x1f\x81\xef\xb9\x66\x01\x26\xbf\x41\x19\x05\x1d\xd1\x67\x1e\xf4\x95\xc0\xea\xd2\xbb\x1c\xb2\xbe\x09\xfa\xbd\x4a\xb2\xb6\x5b\x02\xec\x08\xa8\x65\x36\x03\x65\x57\x23\x3a\xb3\x5f\x92\xf8\xba\x1c\xb8\xfb\x3f\xc5\xff\x6c\xc5\x3f\xc9\xff\x4c\x51\xf6\x80\xab\xe4\x96\x36\x41\x96\x3d\x84\x02\x31\x0e\x7d\x42\x7e\x09\x2d\x3e\x97\x62\xcb\x2d\xa3\x69\x89\x02\x93\x00\x3c\x87\x64\x90\xdc\x07\x3e\x8b\x69\x90\x75\x08\x59\x85\x96\x9b\x0e\x76\xcb\x9a\xf3\x79\x01\xfd\x30\xc7\xc0\x80\xf0\x14\x53\x78\x0d\xf1\x3a\x3d\x08\x09\x32\x5c\xaa\x6c\x2e\xbd\x00\xa6\x47\x5e\xea\x3b\xa9\x5b\xef\xe5\xd3\x41\x3d\x18\x66\xab\x0e\xd2\x49\x36\xde\xd5\x21\xf6\x78\x7d\x11\xed\xc6\xbe\x86\xd8\x9b\xad\x2f\x93\x04\xdb\x6c\xba\x24\xbf\x9b\x1b\x97\x03\xd4\x67\x52\x17\xf7\xe8\x06\x9b\xb3\x78\xe8\x46\x31\xd3\x03\x36\x3a\x3b\x2b\x3c\x54\x1b\x9e\xbd\x1b\x9c\xbe\x27\xb2\x7e\xf5\x57\xfd\x21\xac\x3f\x86\x7f\xc9\xce\x26\x2f\x32\xae\x29\x07\x98\x42\x04\xd2\x2c\xfa\x54\x2b\x9a\x21\xdf\x47\x2b\xaa\x7b\x25\xaa\xd3\xc6\x28\x4f\xea\x6f\x37\x58\x42\x2f\x83\xeb\xdb\x5a\x44\x2e\x08\xe6\x3a\xa3\xd6\xb7\xbc\x86\x9e\x01\xcf\x87\x2e\x95\x54\xf2\x6a\xea\xb2\x96\x2e\x53\xd5\x99\xcb\x6b\xe6\x16\x63\xc8\x60\x02\x7a\xc0\xcd\xc0\x08\x38\x58\x1c\x08\x0c\x78\xe3\x45\xf4\x22\xcc\xdf\xbc\x6f\x2b\xea\x3d\x74\x10\x6e\xb5\x9c\x5a\x33\xe0\x71\xce\x21\x2d\xf7\x5a\xae\xef\xa7\xb5\xfd\x55\x29\x06\xd2\xc9\xd0\x60\xd5\x16\x6e\x4e\x2f\xcf\x1e\x27\x4f\x39\xc8\x85\x25\x4b\x5c\x79\xcc\x40\xbc\x59\x5d\x7e\xab\xae\x7f\xae\x11\xb5\xef\x3d\xd5\x14\x6a\xfa\xae\xb4\xa4\xb6\xe1\xe1\xb9\x90\x85\x65\xcb\xdf\x9e\xa2\xe8\x54\x79\xc0\x84\x97\xbd\xb7\xcc\x25\x08\xc0\x9c\xad\xac\x36\xf1\x27\x35\xfc\xaf\x29\x25\xd4\xa5\x15\x5e\xdd\x66\x01\xb2\xeb\x86\x2d\x6b\x58\x2a\x81\x41\x05\x43\x36\xbd\xe4\x2a\x04\x22\x03\xf0\x8b\x55\x82\xc4\x71\x7b\x88\x8f\x45\xfb\x77\x9e\x07\x61\xca\xc3\x76\xb6\xf0\x0d\xa9\xde\x92\xee\xba\x52\x4e\xf9\xe6\xf4\x66\x76\xdd\x00\x6a\xc4\x7c\x1f\xc0\x98\x46\x4b\x0d\x56\xb5\x89\xf8\xa4\x5c\x18\x39\xd8\x0b\x73\x85\x9e\xea\x41\xc2\x55\xe4\xc9\xb7\xd4\xc4\x54\xdc\xa2\x9b\x43\xcb\x84\xcb\x92\x9f\x88\x5e\x06\xa4\x4e\x6b\xf1\x2e\x2d\x55\x17\x55\x2c\xcb\xa8\x8c\xf3\xc2\x52\x27\x40\x39\x29\x98\xf5\x4b\x23\x33\x9b\x76\x5e\x37\x9d\x0a\x4c\xdf\x66\x05\xc4\x9b\xba\x59\x36\xf5\xb4\xe4\xcc\xf2\x1d\xec\xfa\xd7\x73\x3b\x04\x84\x40\xbc\x75\xa3\xfe\xaf\xfe\x7c\x39\xde\xc7\x3f\x6e\x9c\x5b\x2f\xcd\xc9\x2c\x22\xbe\x94\x00\x6e\x7a\x46\xdd\x61\xf9\xf7\xa2\x5a\x86\x65\x8e\x06\xa3\x82\x94\x49\xa4\x14\x9c\x45\x0a\xc7\xa4\x58\x1d\x49\x01\x56\x9e\x06\xcb\xe6\x21\xcf\xd3\xa3\x87\x80\xeb\x81\x39\x0a\x80\x6f\x47\x04\x7b\x21\xb4\x27\xa9\x35\x84\xbf\xf1\x21\xf0\x58\x8c\x60\x1c\x41\x7c\x11\x02\x07\xbe\x0b\x3e\x70\x90\xd0\x3c\x28\x4e\x89\x42\xfc\x2b\x85\x2f\xc3\x5b\xb2\xe4\x2f\x19\x75\xc7\xf7\x82\xab\xc7\xc2\xc8\xe9\x02\x02\x1e\xb3\x67\x28\xad\xfe\x7e\xb3\xf4\xff\x7d\x0a\x22\x78\xb0\x67\x9d\xbf\x78\x3b\xfe\x75\xfd\xc3\xde\xf4\xe7\x9b\xd8\xf9\x3a\x0c\xc0\x8b\xf7\x43\xe7\x0c\x5d\xbf\x9e\xb8\x13\x77\xbd\x3f\x79\xb3\xde\xbf\x76\x96\xce\xf5\x9b\x2f\x27\xab\x37\xa7\xc7\x5f\xdd\xa5\x13\xbc\x7c\xe1\x86\xbf\xbe\x78\x8f\xce\x2f\x9c\x9b\x37\xa7\xce\x1c\x3c\xff\x18\xfe\x3a\x5e\x0c\xc5\xdf\x7f\x3f\xf5\x4e\xe6\xe7\x2f\x5e\xf9\xbf\x4c\x7e\x9a\xbb\x63\xff\xca\x7d\x3e\x3f\x7e\xf5\xf5\xe9\xea\xd5\xfa\x07\xf4\xeb\xcf\x7e\x00\x5e\xfc\x94\xfc\xbd\x04\x3f\xdf\x44\xe7\x17\xee\x04\x3c\xf7\x87\xbf\x5e\x38\xd7\xe7\x73\x34\x7f\x79\x76\xb3\xfa\xe5\x9f\xef\xd1\xcb\xe7\x3f\x1d\xbf\x1a\x0e\xc9\x9b\x8b\xd5\xcd\xcb\xe7\xab\xf5\xeb\xd3\xe1\x9a\xb6\xfd\xf2\x34\xfb\xff\xcb\xcb\x93\xe8\xcd\xe5\xc9\x7c\x7a\xf6\x74\xf5\xfa\x74\x78\xf3\xe6\x04\xe5\x7e\x7f\xf9\x74\xb8\xff\xfa\xec\x69\xfa\xfe\xab\xf5\x0f\x5f\xdd\x17\xaf\xae\xc1\xf8\xc3\xf1\xab\xf1\xab\xe8\x97\x9f\xdf\x62\xe9\x3b\x92\x8d\xf7\x4d\xf0\xfa\xeb\xde\x8f\xe7\x7c\xce\x7f\x57\xae\xaf\xd1\xf1\xf1\xf1\x23\x46\x68\xb3\x05\x68\x53\x05\x57\x8f\xf3\x8b\x31\x6f\xbe\xa9\x92\x54\x9b\x88\x29\x49\xca\x34\x96\x51\x18\x04\xd1\x0c\xe1\x65\xf4\x28\x29\xa7\x9e\x4a\x27\x7a\x5c\x4d\x21\xb6\xe9\x9a\xb3\x59\xe4\x8a\x3d\xc3\x60\xce\x84\x43\xf9\x45\x59\x96\x59\xa4\x2f\x69\x16\x3c\x21\xc9\xd7\xd2\x54\x82\x9a\xa9\x24\xc3\xb4\x3b\xcf\xa9\xd0\xc2\x7d\x9c\xdc\x26\xd3\xda\xfe\x84\x62\xe2\xf9\xd1\x23\xe0\xba\x36\x41\x36\x87\x21\xb8\x85\x73\x51\x6e\x86\x1f\x8e\x49\xe0\x6f\x34\xe0\x71\xdd\xff\x31\xfa\xdb\xdf\xf8\x0c\xfe\xfa\x24\xfb\xf1\xd3\xe8\xf3\x3f\xe4\x3f\x1e\x9b\xa6\x15\x3c\x79\x80\x9f\xc0\x01\xab\xb9\xfc\xc0\xfc\x87\xf9\xd0\xf2\x9f\x8c\x73\x03\xf5\x66\x0f\x4e\xe8\x72\x19\x78\x11\xfb\xef\x03\xf8\xf0\x21\x86\x24\xc6\x81\x01\xff\x78\x80\x1f\xfe\xeb\x5f\x79\xa2\x7b\xb3\x07\x17\xec\xec\x1d\x78\x04\x0a\x48\xc5\xc0\xe0\xd3\x7d\x00\x1f\xfe\xeb\x5f\xe6\x27\xc4\xfe\x30\x4e\x92\xb1\x7c\x36\x9f\x3c\x79\x22\x08\x12\x62\x44\x10\xbd\x2a\x0e\x08\xba\xe0\x81\xc7\x0e\xf0\x7d\xda\xeb\xef\x9c\x1b\x9f\x3e\x5b\xe0\xc9\x5f\x87\x56\xf4\xe4\xaf\x23\x0b\x25\x9c\x22\x78\xfd\xfb\x0c\xe1\x07\xf4\x19\x6c\xf9\x4f\xe0\xa7\xc2\x28\x3e\x3f\x78\xf8\xef\x7f\x7d\x00\xe8\x7c\x7d\x16\xaf\xfc\xe0\xe1\xc3\x81\x8b\x02\xf8\xf0\x6f\x7f\x7b\x10\x0c\xc2\x38\x5a\x3c\xc0\xdc\xb2\xfe\xd0\xfa\x2b\xf9\xd7\xbf\x02\x41\xcc\xbf\x3e\x79\x42\x1e\xfe\x3b\xed\xf2\xe1\xbf\xff\xe1\x00\xe2\x2c\x1e\x78\x0f\x7f\x8f\xe8\x10\xd0\x13\xef\x8f\x99\x17\x00\xdf\x5f\xff\x4e\x07\x00\xfe\xf5\x2f\xaa\xce\x3d\x79\xe2\x0f\x38\x89\xfe\xf5\xaf\xe4\xd3\x83\x87\xe9\x93\xde\xec\x41\xf4\x90\x2c\x30\x5a\x19\xe8\x8f\x3f\x04\x2d\x83\x3f\xfe\x78\x80\x2d\x5f\x26\xe7\xc3\xdf\xf9\x43\x01\x5c\x19\x97\xeb\x10\x3e\xc5\x18\xe1\x07\xa6\xb0\xfc\x19\x54\x28\x2e\x43\x61\x79\x8f\x08\x8e\x1d\xe6\x99\x0e\x50\x60\xb3\x39\x4f\xe9\x15\x3e\x88\x08\x08\x1c\x68\x3e\xfc\xe3\xc1\xc3\x87\x16\x78\x12\x7c\x1a\x7e\xb6\xa2\x27\xc1\xa7\xd1\x67\x0b\x3d\x31\xcd\x01\xaf\xb4\xfc\x00\x3c\x4c\x3e\x91\x87\x7f\x11\x34\xfc\x4b\xf4\xb7\xbf\x3d\x40\x7f\x7f\x62\xfe\x23\x7d\x2c\x7a\xf8\xf0\x2f\x62\xc0\xe8\x0f\xfd\x0e\x98\x62\x08\x5c\x07\xc7\xcb\xa9\xcd\xbe\xc8\xef\xea\xc2\xc3\x4c\xf7\x82\xd1\xa3\x10\xa3\xa5\x17\x41\x9b\xaf\x0e\xfd\x73\xbf\xc5\x10\xaf\x6d\xa6\x46\x47\x85\x2d\x6f\x05\x9d\x36\xd6\x17\x34\x3d\xa5\x83\x8d\x9e\x64\x9f\x65\x09\x00\x72\x5b\x8e\xcf\xff\x77\xe6\xd9\x7a\x0c\x07\x73\x48\x1e\x98\x04\x7b\xcb\x25\x74\x59\x7c\xdc\x43\x0b\xe0\x79\xf4\x98\xc1\x36\x47\xb4\xbd\x81\x08\x83\x16\xcf\x86\x3e\xf0\x82\x97\xae\xf9\xd0\x7a\x30\xb4\x82\xc1\x6f\xe1\x0f\xb1\xe7\xbb\x10\x3f\x7c\xf0\xfb\x17\x34\xa5\x4d\x44\x54\xe9\x4a\x9a\x0e\x92\x2f\x06\xec\x9a\x4b\x37\x90\x10\x04\xe6\x1f\x0f\x3f\xff\xf1\xc7\x5f\xa4\x31\x83\xbf\xc8\x93\x29\x0f\xda\x80\xff\x48\x06\x01\x30\x0c\xc8\x20\xb9\x8d\x3e\xfc\xc7\xa7\x54\xc8\x0d\x78\x19\xc9\x07\xbf\x0b\x86\x3c\xce\xbd\x62\x3e\x1c\x90\x05\x0c\x1e\x28\x1a\x07\x0f\xe0\xc3\x3f\x1e\xfe\xf1\xd0\xa2\x1f\x3e\x3f\xfe\x24\xfe\xf3\xb9\x62\xa1\x38\xc0\x77\x62\x7a\xd0\xdb\x21\x8a\x3c\xe1\x95\x29\x1d\x00\x53\x10\x79\x8e\xed\x62\x14\xba\x68\x15\xe8\x5f\xdd\x58\xfe\x6b\x5f\x48\x28\x6e\xfd\x0e\x83\x78\xc9\x37\xd7\xe3\xbf\x0e\xad\x39\x24\x8f\xa5\xfd\x2a\x08\x91\x92\xf2\x0f\x46\x0e\xdd\xdc\xc5\x7a\x06\xd3\x88\x60\xe0\x10\xdb\x47\xf3\x79\x3e\x46\x38\x21\x00\xba\x86\x18\x7b\x2e\xcb\x67\x72\xd0\x32\x8c\x09\xa4\x8a\x3c\xdf\x09\x3c\x3d\xa3\x9f\x9d\xa0\x38\xfe\x80\xb8\x7a\xbd\xf1\x6e\xbc\x20\x5d\x1b\x31\xf6\xe9\xf1\xc1\x77\xe1\xe3\x07\x43\x8b\xae\x25\x3e\xb0\x87\x0f\x4a\x14\xf9\x9d\x2e\x01\x1f\xcd\x9f\x41\xe2\x2c\x64\x82\xfd\x61\xc1\xc0\x7d\x37\x9b\x45\x90\x3c\x66\x06\x0e\xc4\x3e\x9f\xf3\x66\x79\xc7\x49\xbb\x0f\xcc\xf4\x59\xd3\x92\xda\xa0\x83\x84\x4f\x18\xa4\x6d\xfa\xc0\x5f\xd2\xf5\xfe\x3b\xc2\xde\xdc\x0b\x1e\xf3\x6c\x2a\x53\x74\xf0\x18\xfe\xf1\x38\xfd\x05\x06\x6e\xfa\xfd\x3e\xdc\xa3\x63\xcd\x02\x73\xce\x5b\xcc\x70\x16\xfb\xfe\x07\xec\x97\xc6\x1d\x63\xdf\x14\x17\x7f\xca\x53\x79\x8e\xa6\x65\x16\xfb\x52\x4c\x2e\x48\xf7\x26\x67\xb6\x37\x5b\x3f\xe0\x9d\x80\x28\xf2\xe6\xc1\x83\xdf\xff\xb0\x18\x01\x78\x1f\xfc\xb3\xdc\x0d\xff\xa6\xd8\x53\x2a\xcc\xb3\x73\x80\x3d\x17\x63\xdf\xa2\xba\x40\xf2\x25\xdf\xd6\x92\xf2\x03\x5a\xac\x6a\x7a\xf7\x8e\x6c\xfa\xf9\x4a\xbd\xb8\x69\x27\x0c\x83\xc3\x59\x97\x85\xfe\x97\x08\x05\x36\x43\xbe\x48\xb6\xe0\x56\xd6\xf9\x34\x9e\xcd\x20\xbe\xf0\xbe\xc2\xc7\xfb\xc3\xa1\xb5\x04\x37\xcf\x30\x58\xc2\x37\x1e\x9d\xeb\xe3\x7d\x6b\x56\x5e\xd8\x20\x0c\x61\xe0\xe6\xbf\x0b\x41\x1c\xc1\xfc\x57\x33\xa9\x9d\xa1\xb5\x00\x81\xeb\xc3\xf7\x30\x0a\x51\x20\x3f\xf9\xff\xb3\xf7\xb5\xdb\x6d\xe3\xd6\xa2\xff\xf5\x14\x32\xd7\xad\x42\xd4\x30\x2d\xc5\x9e\x34\xa3\x94\xe3\xa6\x9e\xcc\x9d\xde\x35\x93\x49\x1d\x4f\xfb\x43\xd1\xca\x82\x49\x48\xc2\x35\x04\xa8\x04\x18\xc7\xc7\xe6\x63\x9d\x17\x38\x4f\x76\x16\x36\x00\x12\x94\x28\x45\xc9\xd8\x39\x6d\xd7\x99\x1f\x19\x8b\xf8\xda\xd8\xd8\xd8\xdf\x00\xac\x1e\x46\x13\xb8\x8e\xda\xab\x5f\xb0\x56\x4c\x64\x05\xb8\x36\xea\x89\x47\x41\x97\x11\xc2\x66\x8a\x76\x59\x83\xef\xdf\xd9\xfd\xd2\x9e\xc7\x60\x10\x3b\x22\x2a\x15\x8d\x91\xa5\x19\x65\x58\x7f\xd8\x23\x1e\x22\x84\x7a\x5b\xcb\x1c\xa5\xc1\xe4\x0d\xe1\xe0\x95\xe4\xdc\x6e\x1f\x4d\xd4\x35\x8a\x0b\x3a\xa7\xc2\xaa\x64\x17\xa5\xd0\x6c\x49\x93\x25\x29\xae\xeb\x2d\xd5\xa7\x8e\xec\x09\x56\x00\xa5\xdf\xcb\x1d\x0d\x6f\x0a\xb2\x6a\x49\x22\xa3\x01\xbe\x78\x81\xd4\x0d\x33\x6a\x1a\x85\x43\x7f\x29\xb5\xc7\xd3\xee\x32\xa2\x68\x7f\x38\x0e\xb1\x67\x36\x8f\xd9\x0d\xa5\xa2\x49\x66\x14\x25\xfe\x92\xf3\xd8\x50\x08\xb4\x1c\x61\x92\xd6\x3b\xc2\x76\x93\x3e\xb3\x33\x84\x15\x37\x6a\x13\x48\x43\x90\xe4\x8e\xa8\x50\x7c\x07\xcb\x04\xb4\xb6\x5d\x5a\xaa\xa4\xbd\xd8\xb0\xcb\x7a\x00\xe3\xb3\xb1\x1b\x6b\x34\xea\x19\x55\xea\xda\x7e\x7e\x3e\xb6\xfa\xa0\x03\xee\x39\xa6\x89\x1e\xa6\x06\x70\x03\xca\x08\x61\xa3\x28\x5a\x25\xd1\x94\xb8\xce\x46\x23\x3f\x63\xdf\xe9\x09\xb6\xcb\xc1\x96\x54\x96\x1a\x39\x4e\xa2\x29\x44\x27\xcf\x86\xe3\xa7\xf4\xc4\xb7\x3d\x19\x9b\xff\x03\x87\x6c\x7a\x51\x5a\xae\x62\x54\x55\x98\x02\x2a\xf0\x64\x32\xc2\xcf\xa7\x53\x64\x66\x6b\x84\x74\x8c\x70\x80\xd7\xcf\x5e\xfb\xc7\x59\x6e\x37\xf9\xa7\x7b\xcf\xfd\xe9\x38\xdc\x0c\xf6\xdb\x3e\xe8\x08\xd0\xf0\xd9\x3c\xb3\x79\xd6\x73\x07\xd7\xdc\xd2\xb8\x90\x9c\x33\x31\xf7\xde\x81\xcf\xe4\xcb\x0f\xc2\x55\xa1\xcb\xb4\xad\x83\x39\x34\xad\x89\x44\x8a\x37\xb5\x26\x59\x33\x5d\xcb\x4d\xb5\x35\xfc\x00\xa7\xb8\x41\x8d\x5d\x16\xa3\x91\x5a\xb1\x54\x6d\x63\xe7\x9d\x70\xd0\xc1\x40\x9f\xd1\x63\x3d\x1e\x56\xb8\x4b\x43\xbe\x33\x94\xa1\x34\x59\xae\xc6\x14\x97\x8a\xe6\x56\x2d\x59\xd1\x22\xa3\xc2\xea\x28\x55\x85\xa5\x93\x15\x0e\x47\xf4\xa3\x36\xdc\xae\xe6\x00\xf8\x2e\x00\x17\xda\x97\x1d\x5a\x41\xf8\x58\xeb\x06\x36\xa2\xe3\x0f\xa3\x63\x9b\x27\x1a\x90\xc5\x71\x5b\x4e\x83\x5a\xde\x94\x26\xcc\x18\x15\xd1\x31\x2c\x43\x04\x8a\xf8\x9a\x0c\xaa\x1d\x06\x86\x53\x7c\x6f\x70\xfd\x33\xd1\x8b\x64\xc6\x25\xf0\x8c\x4b\x3f\xf7\xe3\x11\x7d\x86\x10\x16\x69\xab\xf8\x82\xda\x3b\xaf\x7e\x85\xdb\xfa\xcf\x57\xe5\x5b\x33\x50\x72\x29\x35\xe1\x97\x2c\xbb\x56\xe8\xfe\x7e\x68\x25\x43\xb6\x2a\xc1\xa2\x76\x66\x7f\x80\x55\xed\xb0\x5a\xa3\x94\xc4\xc2\x72\xd4\x82\xc2\xa1\x8f\xfc\xfc\xcd\xaf\x66\xe7\x18\x40\x8d\x41\xd6\x1e\xd5\xbe\x2b\x6c\x07\xbe\x78\xfb\xb6\xe7\x4d\x7e\xd9\x67\x8e\xa5\x2f\xa1\xc6\xee\xd1\x55\x30\xba\x3a\x1e\x0d\x9f\x9e\xc2\x3f\x6d\x38\xec\x50\x08\x28\xfb\x92\xa8\x6b\x65\x91\x57\xa4\xee\xe7\x44\x4e\x31\xb7\xe2\xc1\x26\x9a\xcf\x98\xc8\xff\x7c\x1b\xc3\x8b\xba\x11\x96\xa8\xc7\x66\x31\xb7\x8d\x58\x27\xc6\x8b\x0d\x8c\x97\x69\xab\x78\x3f\x8c\xf3\x1d\xe8\x66\x76\xc2\x65\x30\xe1\x12\xf3\x2e\x5c\x67\xe9\xfa\x78\xeb\xb8\xe6\xbb\x71\xeb\x86\xca\x82\xa1\xb2\x00\xb7\x7c\x13\xb1\x55\xd5\xa1\x12\x39\x8d\xd7\xa1\xab\xb7\x65\x4d\x55\x4c\x91\xd3\x35\xd6\x26\x1f\x94\xb8\x65\x91\xc5\x2b\x92\x2d\x1a\xc1\xa1\xd1\x9d\xde\xde\x65\x67\x7f\x86\xcd\x04\x38\x5b\xdb\xcb\x09\xe1\x8c\xa8\xd6\x56\xac\x5f\x55\x0e\x51\x1d\x21\xdc\xc6\xc1\x97\xf4\xe3\x5e\xd6\x46\x38\x5b\x95\x9f\xc7\x53\x40\xf2\xd5\x4a\x0a\x60\xa8\xd1\x6b\x0d\x9d\x2f\xbb\x80\xfa\xad\x9d\xc2\x22\xec\xdb\x67\x60\xcb\x35\xbd\x38\x05\xb0\x9b\xe7\x35\x08\x82\x81\x22\x74\x7f\x3f\x99\xa2\x64\x19\x6a\x0a\xa2\xe1\xee\x44\x5d\x3b\x58\x4c\x47\xc2\x25\x1e\xa1\x8e\xc5\x75\xe5\x7b\x2c\xdf\x5a\xcd\xd6\x02\xb5\xd1\x43\x6b\x1c\xaf\x7f\x07\x4f\x41\x85\x70\x91\xca\x40\x67\x28\x3e\xad\x33\x70\x39\xff\x52\x8f\xc1\x5e\x06\x98\x1f\xc7\xbe\x22\x58\xfb\x28\xb6\x3a\xf1\x24\xe7\x5b\x2b\xb9\x3e\xc0\x62\x00\xcb\x57\xa8\x0e\xd5\x03\x13\xac\xb0\xc4\x05\xe6\x5f\xa4\x84\xd8\xc1\xd3\x75\x75\x66\x9b\x1e\xa2\x3b\x34\x91\xb2\xd6\x44\x6a\x9f\x85\x08\x95\x11\xe7\xf5\xa8\xe9\x51\x23\x10\xf0\x3b\x14\x13\x6a\xed\x85\x1f\x08\xe3\x65\x41\x43\x3d\x85\x75\xb9\xe9\x36\x41\xca\xa4\x50\x92\xd3\xe4\x86\x14\x22\x8e\x7e\xfa\xe5\xff\xf6\x7f\x78\x75\x79\xfe\xe3\xb8\x7f\x2e\x4b\x9e\x8b\x27\xda\xd4\x10\x34\x03\x77\x70\xd4\x18\xee\x08\x1c\x84\xad\xc1\x19\x8c\x5b\x76\xaa\x30\xf6\xdb\xab\x0f\x54\x68\x9a\xe3\x2f\xf1\xf2\x80\x77\xf3\x92\x7e\xd4\xe3\x83\xd1\x16\x97\x0f\x53\x6f\x81\x10\x98\x98\x6f\x61\x80\x5c\xce\x6d\x15\x5a\x24\x86\xa2\x12\xa6\x2e\x4a\x21\x0c\xd1\x82\x1f\xe9\x8d\x64\x42\xd3\xc2\xea\x56\x41\x65\xfb\x61\x41\x49\x6e\xc0\xd6\x84\x01\xf8\xb2\xd4\xab\x52\x6f\xb0\xa0\xa6\x1f\xc8\x72\x27\x90\xa3\x46\x18\xef\x60\x48\xb6\x38\x4d\x2d\x67\x6a\x1a\x9e\xc1\x6f\x18\xcf\x09\x1c\xc6\x7b\x34\xa5\x49\x41\xe1\x64\x41\x7c\xfc\xc7\xe3\x39\x8e\x06\x5c\xbf\x88\x50\xf3\xf1\x3b\xf8\x38\x37\x1f\x5d\x76\x03\xaf\x1d\x3c\x44\x28\x76\x29\x7f\xd4\x4b\x1e\xd3\xda\xd7\x6e\x41\x77\xe1\x90\x85\x5e\xf2\xb7\x64\x46\x63\x6d\x18\x06\x13\x4c\x6f\x8a\x4f\xb0\x9b\x01\xa4\xf7\xaa\x5c\xd1\x22\xf6\x03\x79\x1a\x6d\x4e\xaf\x6c\xb8\xa7\xfc\xa2\x45\xa8\xa7\x93\x9b\x82\x69\x9a\x86\xa2\xd3\x06\x61\x28\xcc\xf5\x50\xf7\x7c\x94\xe4\xbb\x6f\xe8\xe9\x60\x10\x8b\x54\x24\xaa\x34\x36\x46\xec\x4b\x8e\xbe\xa1\xa7\x08\xcc\x03\xf0\x94\x03\x86\x85\xf9\xad\x0b\x66\xb6\x6a\x1c\x69\x96\x5d\x47\x58\xa3\x0a\xab\x1a\x0f\x4c\xbd\x2d\x57\x2b\x38\xbc\x7d\xd6\x38\x1b\x82\xb5\x8e\x82\xca\x6e\xbb\x6a\x84\xc6\x5b\xea\xca\x8e\xba\x15\x86\xb8\x89\xbc\x1d\xb7\x42\x2e\xa6\x3d\x98\x74\xb8\x85\xc0\x0a\xcf\xa5\x96\x3f\x9a\xb5\x8e\x87\x98\x7c\xae\x37\x43\x3b\xb6\xc6\x1f\xcb\x9d\x51\xd3\x26\x2c\x1e\x26\x7b\x38\x0d\xbb\x5d\xa3\xc3\x96\x2f\x11\x21\xac\xd2\x4f\xf8\x07\x89\xf7\x15\x59\xb4\x35\x8e\x92\x58\x6d\xf7\x7f\xd0\x44\x43\x10\xae\xc2\x0c\xc2\x4a\xce\xf3\x21\x53\x43\x28\x42\xe3\xd8\xe9\xd6\x35\x43\x39\x93\x06\xf1\x45\x92\xd3\x4c\xe6\x14\xc5\x12\x25\xee\xec\x28\x1a\x0c\x78\x9b\x0c\x79\xca\x3d\x19\x0e\xb1\xa1\x3f\xcc\x0f\xd3\x27\xef\xc4\x3b\x71\x54\xff\xd7\xbf\xbc\xf8\xf5\xf5\xf9\xcb\xcb\x57\xdf\x8f\xfb\xe7\x9c\x65\xd7\x7d\x4b\x9c\xc1\x2b\x69\xb4\x7f\x25\xb5\x96\xcb\xbe\x9c\xc1\x2f\x2e\xe7\xfd\xa6\x83\x27\xa1\x8b\xcc\x32\x10\x1e\x7e\xda\x64\x30\x8d\x4b\x66\x3f\x3f\x02\x90\xdc\xa5\x61\x63\xff\x6e\x24\xb7\xee\x73\xff\xa7\x20\xb9\xfd\x29\x2e\x58\x65\xcb\xd0\xb6\x2f\x3c\x94\xfb\x85\x1f\xee\xbb\xf0\xb0\x25\x1b\x31\xd9\x11\x63\xda\x35\x1a\xf6\x0b\x53\x4b\x51\xe8\xcf\xcc\xdc\x0c\xb6\xc1\xef\xda\x35\x2d\x34\x08\x67\x69\x19\xe8\xa2\xd9\xa7\x75\x51\x21\x73\xfa\xbf\x9e\xab\x35\xcf\x95\x41\xca\xbf\x84\xcf\x0a\x00\xdd\xea\xad\x12\x90\x54\xbb\xd3\x4f\x05\x48\x3c\x33\x15\xdf\xb3\x3c\xed\x70\x55\x99\x22\x70\x52\x3d\xbc\x6f\xea\xfc\xcd\xaf\xe0\x10\x39\x97\x42\x95\x4b\x9a\x3f\x8a\x2b\xca\x5a\x76\xc9\xaf\x8a\xe6\xdb\xfc\x12\xbf\xd5\xd7\xf4\x58\x0e\x91\x7d\xdc\x17\xb0\x3c\x85\x73\x01\x41\x37\xfb\x3a\x2c\xd6\x5a\x2e\x77\xb9\x28\xb6\x10\xd2\x97\x3a\x27\xbe\xb0\xbb\x2f\x31\xb5\x5b\xb6\xed\x67\xc6\x31\xd7\x4d\xdf\x7d\x73\x01\x76\x99\xfd\x5d\x86\xf3\x43\x45\x43\xbb\xb9\x05\x69\xb8\x05\x08\x9c\x0f\x84\x8f\x47\xf4\xc4\x4a\xab\x6d\x42\x0a\x0c\x38\xce\xc4\x35\xcd\x63\x94\xb8\x3b\x3a\xba\x44\xd1\x46\xa3\x20\x22\xf7\x9b\xe2\x88\xe0\x4c\xc0\x0c\x97\x38\xc3\xf9\x43\x2b\x43\x2e\x42\xe8\xf1\x81\x65\x5b\x2b\x72\x82\xdf\x4b\xfb\xc2\x96\xba\x4c\x01\xaf\xb7\x7c\x83\x65\x5c\xec\xd0\x5b\x2a\x1c\x0f\xb1\x6a\x99\xf1\x28\x2e\xbc\x06\xf3\xcd\x98\xcd\x62\xee\x94\x18\x74\xe7\xfa\x7c\x6e\x43\x87\x55\xad\x66\x90\xab\xa2\x5c\xe9\x38\x72\x8c\x1b\xf9\xa0\xe2\x5a\x74\x70\x88\xb9\x53\x93\x6a\x9d\xc5\x6d\x29\xe6\x87\x18\x0c\xe2\x32\x75\x21\x4f\xab\x19\x31\xd0\x16\x5c\xca\x01\x8e\xf3\xb4\x0c\x74\xf3\xb8\xd1\x55\x82\x0c\x8e\xcc\x71\x2b\xb0\x30\xe3\x1c\xa1\x5a\x8b\x1b\x9d\xae\x05\xe9\x88\x07\xe5\xb4\x0e\x8c\x86\x71\xd1\xd1\xb3\x3d\xb5\xaa\x56\x3c\x4e\xee\xb1\xe1\x5d\x46\xda\x46\xc2\xed\x63\x1e\x71\x80\x24\xcb\x37\x85\xfc\x78\xdb\x76\xca\xbc\xb1\xc0\x40\x09\xe4\x28\x7c\x32\x0d\x7a\x77\x7a\xdd\xd7\x99\x8d\xed\xed\x11\xa6\xd3\xca\x02\x7c\x8c\xc9\xd0\x26\x33\x6f\xfb\xc4\xfc\x9c\xee\x98\xfa\xab\x01\xc8\x65\x0b\x1d\x0c\x31\xf4\xa9\xac\xf2\x65\xa6\xd6\x74\xd6\xb1\xc1\x9b\x9c\x3b\xd7\x8c\x56\xa8\xf2\xc9\xc7\xfb\x25\x1d\x6f\x51\xa6\xb7\x21\xa6\xe6\x92\x3a\xa6\x56\x6e\x78\x27\x7b\x1a\x70\x64\x36\x8b\xa3\x52\xd8\x11\xf3\x28\x4d\xf5\xed\x8a\xca\x59\xff\x82\xce\x38\xcd\xf4\xfd\xfd\x81\xfb\xcb\xa8\x7a\x36\x03\xd5\xe5\xa6\x1c\x8c\x7a\x6c\x16\x6f\x94\x26\x6a\x41\x96\xad\x2a\x91\x1f\xad\xe9\x1d\x48\xc2\x57\xb2\x89\xbd\x0e\x4d\x46\xff\xd9\x9a\x20\xbc\x31\x58\x6c\xaa\xe3\xc9\x34\x54\x0e\x8c\x69\x75\x30\x74\x59\xbc\x35\xfe\x0f\x46\x55\x15\xa3\xb3\x8d\x1e\xc6\x2d\xf9\x4a\xac\x38\x51\xe9\x04\x8e\x6c\xf5\x14\x28\x59\x09\x59\xad\xf8\x6d\xac\xb0\xcb\x9b\x95\x46\x53\x8b\x7f\x70\x0d\x93\x2b\x26\x72\x57\x85\xe2\x20\x7b\x96\x0c\x06\x22\x96\x98\x34\xd3\x41\x58\x56\xc8\x55\x05\x2d\xbc\x4e\xd5\x46\x55\xbd\x5a\x2d\xc3\x20\x16\x3e\x69\x5a\x81\x43\xcf\xf6\xf3\xcb\x6c\x3d\x23\xbb\x66\x89\xef\xdf\xc3\x68\xef\xdf\xa7\x1a\xd3\x0a\x41\x69\xf5\x40\x89\xe8\x3e\x10\x2b\x36\x92\xd1\x31\x01\xe5\xd5\x26\x8f\x8b\xef\x46\x67\xe2\x68\x34\x1e\x22\xcc\xd3\xd1\x0b\xfe\x47\xf1\x82\x1f\x1e\x22\x32\xe1\x47\xa3\x69\x90\xaa\xce\xa7\xce\x3b\xae\x6d\xf6\x39\x26\x35\xea\x58\xb2\x24\x1f\x7f\x82\xae\x53\x8a\x59\xf2\x9e\xb3\x25\x6b\x91\x6d\x10\x45\x72\x2e\x48\x9f\xed\x64\x9b\xf5\xe8\x77\xc3\xc1\xc0\x4a\xa5\x15\x67\x19\x8d\x87\x98\xa2\x0a\x33\x58\xd1\xb0\x27\x3f\x2b\xba\x39\x2b\x1d\xcc\x8a\x1a\x7b\x64\xf8\x42\xfc\x91\xbe\x10\x87\x87\x48\x4f\x44\x38\x17\x31\xed\xd5\x39\x3f\x76\x7d\x21\x6d\x46\x7b\x07\x23\xc0\xef\xdd\x8d\xb6\x77\x03\x8b\x05\xed\x31\xa0\xb1\xb6\xa6\x6c\x03\xd3\x0b\xd5\xaf\x1a\x26\x62\x20\x61\x42\xd1\x42\xbf\xd4\x8f\x07\x4b\xb1\x0f\x2c\x36\xb3\xcc\x74\x7b\x6e\xd3\x96\xbf\x67\xf9\xf9\x82\x88\x39\xf5\x80\x96\x42\x2d\xd8\xac\x05\x67\x93\x42\xef\xd2\xe7\xcf\x89\x10\x52\xf7\x5d\xd5\xbe\x14\x5a\xf6\x49\xff\xc2\xb2\x4d\x00\x3a\x32\xa4\x50\x39\xc8\xec\xd9\x87\x7a\x97\x62\x95\x12\xa0\x12\x2c\x53\xe2\x96\x08\x17\xeb\xb5\x6a\x8c\x7d\x9a\x5f\xaf\xc5\xd5\x3e\xd3\xac\xf0\xbd\xc0\x1d\xc9\x56\x19\xdb\x23\xee\xf6\x58\xc6\x07\x96\x81\x60\x29\x5a\xcc\x67\xff\x13\x25\xb4\xeb\x44\xc9\xc1\x63\x9d\x29\x71\x03\xf7\xfe\xbd\x8f\x96\x00\x1e\x1f\xf1\x64\xc9\x6f\x11\x22\x81\x6e\xe5\x6c\xb4\x4e\x0d\x4b\x35\xa6\x67\x01\x97\x2e\x5b\x57\xd5\x46\xa2\xf6\x9a\x7f\x60\x33\x48\x69\x2f\xf7\x31\x50\x54\x68\x0f\xc3\x75\x87\xbd\x1a\x88\x19\x0b\x52\xaf\x71\xd8\xf9\x74\x52\xcf\xb6\x1e\xd0\x9e\xd5\x58\x35\xd6\xec\xa3\x66\xc8\xb6\x6d\x55\xb5\xe6\xee\xe7\x66\x93\xb0\x34\x8a\x70\x09\x0c\xbf\x71\x25\x3a\x23\xed\x0f\x58\xc5\x7a\x97\x37\xfe\x4a\xe6\xb7\xc9\x9c\xea\x0b\xc0\x9e\x41\x4a\x3c\xc4\x72\xcd\xcc\xd5\xde\xcc\xfd\x83\x31\x73\xb3\x75\x33\x77\x34\xdc\xcf\xce\x1d\x0d\x83\xd0\xa0\x5d\x2e\x63\x83\xd6\x01\x19\x9b\xab\xe5\x3b\x7d\xb6\xde\xa9\x37\x4c\x33\x58\xea\xb8\x63\x56\xd6\x38\xa0\x76\x9b\x63\x91\x52\xe0\x00\x90\x03\x96\x0a\x7c\x34\x3a\x48\xd3\x98\x1d\xa6\xa5\xb3\x99\x63\x8d\xef\x2c\x5f\x76\x79\xc2\x70\x48\xe8\x97\x59\x1c\x55\x11\xf2\x9a\x66\x11\x1b\x65\xc7\x2c\xd4\x71\x9c\xfc\xfe\x5d\x85\xe2\xe4\xf7\xe8\xff\x1c\x23\x7c\x82\xb0\x4c\xd5\x64\x34\xc5\x59\xaa\x26\x4f\xa7\x3d\x96\x66\xb0\x85\x96\x29\x44\x8a\x9a\x88\x05\x5e\xa5\x4b\x6f\x97\xcf\xd2\xa5\x37\xcb\x7b\xb3\xc1\x20\xce\x37\x8c\xf2\x15\xc2\xb9\xb3\xc8\x67\x08\x55\xd5\xa6\xe1\xfd\xa5\x96\x77\x52\x50\xb9\xa2\xe2\xdc\x88\x10\x63\x2e\xd5\xd1\xdd\xf1\x41\x7c\x70\x03\x97\x56\x26\x86\x0e\x0c\x73\xb1\xb1\x88\xfb\xfb\x98\xa7\xc7\xb5\x32\x2e\x8b\x63\x06\x89\xba\xb1\xab\xfd\xe3\xe5\xcf\x3f\xbd\xe2\x90\xfb\x8e\x70\x99\xfa\x4e\x14\x99\x91\x82\xdd\xdf\xd7\xe7\x1f\x5b\xdf\x07\x83\xd6\x4f\xe0\xcd\xaf\x83\xfb\xaf\x0c\x41\x7b\x59\xf2\x16\xaa\x5c\xd0\xa5\xd4\x34\xac\x03\xa2\xa5\xac\x65\x49\x8c\x30\xbf\xbf\x67\x6b\xee\x85\x3d\xc2\x25\x6d\xa1\xfd\xd8\xf6\xb8\x9b\xf7\x25\xfd\xa8\xbf\xb7\x63\xae\x09\x04\xa6\x1c\xd9\x74\xea\xf5\x3a\x85\xd3\xa2\x27\x46\x95\x4b\xae\x6e\x35\xb5\xaa\xb4\xd5\xea\x0e\x53\x27\x56\x67\x85\x5c\x9e\x2f\x48\x71\x6e\x28\x9c\x4e\xc4\xb4\x51\xe5\x20\x11\xe5\x33\x0c\xfc\x8f\x8b\xe2\xc8\xdd\xab\xb8\x97\x11\xab\x43\x1b\xc4\x68\x9c\xda\x09\x59\x00\xd1\x7a\x02\x53\xa3\x7f\xf6\x48\xd2\x1c\xe2\x4a\xc3\x1f\xf7\xf7\x07\x23\x4c\x8c\xfd\x37\x63\xf3\xd2\x96\x1f\x0c\xfd\x5d\x8f\x0c\xac\xb6\x98\xc0\xfe\x70\x65\xdb\x8f\x8c\x91\xe4\x9a\x1a\xab\xa5\x7a\x20\xd9\x28\x5a\xca\x77\x28\x13\xe2\x0e\x6d\xa9\x91\xcf\x72\xd6\xd7\x08\x75\x8a\x7b\xa7\x09\x1b\x55\xa8\x4f\xfa\x80\xf7\x3e\x51\x7d\x52\x2b\x6b\x11\xaa\xac\xef\xdc\x58\x47\x00\x84\xd1\xf2\xfc\x8a\x8a\x94\xe2\x98\xa4\x93\xbb\x6b\x7a\x3b\x8e\x32\xb2\x32\x4a\x42\x64\x1d\x1f\xad\xb0\x8e\xd5\xe2\x3f\x2e\x8a\x94\x56\x15\xb6\xd5\xc9\x95\x2c\xf4\x46\xe5\xa0\xae\xb3\xcf\xcc\x9f\x09\x54\x36\x1c\x65\x8a\x06\x03\x6d\x34\xaa\x5a\x1d\x27\x08\x2b\xf8\x86\x15\xc2\xb4\x8a\xd1\x9e\xde\x12\x99\x53\x75\x34\x93\xc5\x11\x1c\xd5\xf8\x4a\xc7\xb4\x27\x34\x31\x03\x4f\x7b\xee\x20\x8f\x32\x7a\x82\xfd\x6b\x33\x4b\xd5\x20\xce\xaa\x8e\x36\x3c\x59\x1a\x46\xda\x6b\x1c\x46\x72\xb9\x22\x99\x8e\x51\x52\x0a\xf6\x8f\x78\x2d\xe3\xb1\x96\xb2\x51\x74\x48\x2b\xb4\xe3\x04\x26\x08\xdb\xb6\xdd\xe1\x3e\x35\x35\xed\x86\x38\xa6\xe2\x03\x2b\xa4\xe8\x38\x6a\xff\x90\xa7\xb0\xa2\x55\x21\xf3\xd2\xd2\xdf\x41\x1a\xa4\x14\x04\xc3\x0f\x06\xf5\xe7\x89\x37\x93\x38\x3b\x5a\x32\x7b\xad\xf1\x60\x70\x30\x0a\x9b\x76\xd5\x49\xa8\x30\x7b\x38\xc7\x2a\x6d\x9d\x01\xb9\xbf\x27\x67\x75\xe4\x68\xec\x98\x26\x60\xe4\xfe\xbe\xeb\x1e\x00\xb5\x03\xb5\x70\xa1\xf7\x51\x5e\x16\x2e\xd1\x35\x44\xf2\x52\xda\xeb\x0e\x1c\x68\x4c\x80\xef\x49\x3e\x50\x3c\x7b\x83\x06\xbd\xb6\xba\x71\x53\xc0\xb0\xf3\xa6\x80\x61\x78\x53\xc0\x70\x3a\x1e\xe2\x4d\xbf\xce\xbe\x97\x0c\x08\x15\x19\x63\x79\xbd\xf5\xd3\xce\xd6\x4f\xa7\x83\x41\xf8\x0b\x17\xe9\x5d\xd5\x33\x7d\xa4\x69\x2a\xce\xe2\x22\x11\x44\x48\x45\x33\x29\x72\x95\xd2\xdf\x8d\xe8\x09\x2e\x92\x25\xcb\x8a\xfa\x63\x18\x17\xfe\xdd\x88\x3e\x3b\x1e\xd1\x13\x84\x69\xeb\xbb\x0d\x22\x8f\xa3\xe5\xd2\x76\x3c\x18\xc4\x6b\xbd\xd8\xae\x37\x5a\x9d\x20\xeb\xe6\xe3\xa9\x00\xa8\x0e\xa0\x31\xf4\x63\xfe\x04\x9d\x25\x5a\x2a\x97\xd8\xc7\x9a\xab\x23\x12\x4f\x06\x31\xc5\x1c\xf5\x48\x32\x63\x5c\xd3\xe2\xcf\xb7\x71\xc4\xc4\xcf\x96\x18\x60\x13\x9b\x2f\x36\x29\xb9\x93\x27\x14\x13\x3a\x4d\xd9\x84\x4e\x63\x1f\x99\x2e\x53\x92\x14\x34\x2f\x33\xba\x29\x09\x8a\x89\x86\x63\xe3\x53\x9f\xb7\x57\x7f\xe8\x51\xcb\x5c\x54\x2c\xb0\xc6\x12\xa1\xaa\x09\x36\x4d\xa6\x70\x76\xa1\x74\x4b\x85\xea\xb4\xd8\xff\x2f\x99\x88\xa3\x7e\x54\xf3\x21\x05\xda\xa6\x3f\xf8\xa0\xca\xd9\x8c\x7d\x84\xec\x3e\x89\xbc\x03\x65\x72\x27\xe0\x6e\x97\x5b\x4a\x0a\x15\x61\x5b\xc7\xfe\x8c\xb0\x9f\xfa\xf8\x60\x88\x57\xbc\x2c\x08\x67\xff\xe1\xce\x56\x57\xd8\x35\x5c\x4a\xa1\x17\x41\x4b\xf8\xbd\x5f\xd3\x9c\xdc\x06\x0d\x73\x72\xbb\x5f\xb3\x85\x2c\x43\x50\x17\x11\xe6\x52\xcc\xdf\xfa\x9f\xb2\xdc\x09\xf9\xa8\x81\x9c\x89\x52\xd3\x10\xf4\x76\x4f\xb6\x7c\xbf\xbe\x1c\x5d\x36\x7d\xa9\x76\x5f\xb6\x7c\x5f\xb8\x38\x67\x1b\x1d\x2e\xd5\xbe\xad\x9b\x6d\xd2\xb4\xfe\xaf\xff\x6c\x35\x1f\x6d\x6d\x1e\xec\xdf\xa6\xb5\xf8\x44\xe3\x29\x6e\x67\xe7\xd4\xce\xf8\x9e\x4a\xc9\x60\xa0\x93\x06\x15\x67\xa3\x34\x4d\xe9\x59\xf8\x69\x0c\xb1\x4a\xdf\xa7\xb1\x29\x83\x42\x34\x36\xb2\x82\x9a\x4e\xc2\x51\xcf\x36\xdb\x28\x57\xdf\xff\xe5\xfc\xfd\xed\x76\xf7\xf7\x6b\xf0\x6c\x1c\xb1\xa6\x75\x12\x9b\x3c\x8b\xfa\xd1\x38\x6a\xb2\xda\xd4\x2e\x49\xcd\x56\x47\x2b\x02\xc2\xe3\xab\x28\x2b\xf4\xac\xbe\x16\x66\x1c\xa1\xf1\xa4\x76\x62\x0f\xd3\x34\xf5\xba\xf5\xd9\x9d\x7b\x4a\x7a\x4c\xb1\x81\x68\x6c\x59\x7a\x35\x7e\xda\x59\x49\x4f\x86\x53\x5b\x4f\x4f\x46\xd3\x6a\x4c\x6d\x5e\x9a\xfa\x3b\xd3\x8b\x38\x9a\x44\x28\xa8\x9a\x28\xe7\x99\xf7\xdd\x1c\x8d\x90\x63\x40\xe3\x08\xf9\x5e\x9a\xc2\x69\x35\xde\x02\xcc\x0e\x9c\x6e\x1e\x2f\xef\xf4\xc0\xae\x1e\xef\xb2\xa4\x5d\xd9\xff\xcd\xb1\x05\x91\xc8\xeb\x33\x91\x18\x70\x63\xe4\x13\xf1\x57\xb7\x28\xa6\xf8\x60\x88\x5a\xa6\xd5\x0e\xad\xd7\xbf\x5a\x66\xac\xb4\x23\x92\x93\x95\xa6\x5f\x4b\x01\x6e\x4e\xaf\xab\xda\xd7\xeb\x55\x5f\x27\xf4\x72\x6a\x93\x17\xdd\x22\xbf\x13\xef\x8c\x01\xb2\x7d\x36\x42\x1e\x71\xf0\xe3\x6c\x4e\x01\x47\x7f\x6a\xae\x8e\x3a\x76\x33\x3d\xb6\xd5\x1e\x70\x21\x69\xf2\xfa\x97\xf7\x3f\xbd\x7a\xf9\xfd\xab\x0b\xbf\xa8\xe1\xa7\xe8\xb5\xec\x67\xf6\x2d\x9b\xbe\x85\x34\x5a\xbf\x50\xaa\x8e\x1f\xbb\xa5\x19\x77\xb4\xa9\xf6\xb4\x69\xe0\x1a\xef\xdb\xaf\xb4\x9e\xeb\xa4\x0a\x0e\x39\xf7\x38\x03\xa7\xc5\x0f\xc6\xbe\x24\xab\x15\x77\x2e\x93\x08\x39\x57\x93\x05\x4e\x23\xb3\x29\x37\xdf\xf1\x6a\x4d\x64\x26\x8b\x2b\x96\xe7\x54\xec\x4e\x22\x5d\xb3\xe4\x1e\x70\x79\x3f\xb1\x35\xc1\xd0\x6e\xa5\x99\x09\x94\x30\x91\xf1\x32\xa7\x2a\x8e\x4e\x87\x27\x51\x6d\x78\xf7\xdc\xe9\x07\xa6\x7e\x68\x66\x05\x3b\x77\xfb\x7a\xae\xea\x23\x1a\xf6\x35\x97\x23\xff\x6c\xcb\xe3\xae\xed\xf6\xd4\xd7\xbb\xb5\xdb\x6e\x2c\x2d\x3b\x13\x29\x7c\x70\x26\x99\x53\xfd\x17\x4d\x97\xc1\x09\x16\x71\xf6\xff\xde\xfe\xf2\x3a\x59\x91\x42\xd1\x58\xa0\xb1\xae\xb0\x0a\x7b\x0b\xcf\x68\x75\xf5\xa8\x7c\x8f\x18\xfa\x69\xd2\xcb\x05\x42\x58\x54\x3b\x4d\xdc\x00\x91\x6a\x21\x0b\x7d\x54\x96\x2c\xff\x5a\x3b\x64\x8f\xf4\xe1\x20\x39\xd8\x4b\xdc\xa3\x08\x4d\x86\xd3\xbd\x67\xa5\x6f\x39\xad\x4f\xf5\xfd\xcf\xcf\xab\x7d\xd4\xc8\xc6\x80\xa3\xa8\xf6\x5d\xc0\x31\x21\x07\xcd\x35\xbd\x85\x20\xc1\xa6\x01\x23\x5a\x3e\xbb\x5a\x66\x80\xd1\x22\x0e\xa3\x71\x74\x18\x47\xf6\x49\xf5\x26\x75\x84\x9c\x91\x44\xcb\x1f\xd8\x47\x9a\xc7\x4f\xd1\x61\xb4\xfa\x18\x8d\x09\x42\xd8\xda\x34\x4e\xb0\xbc\x88\x0c\xc9\x34\xc7\xa8\xd0\xde\x68\x2e\x97\x47\x64\x3e\x2f\xe8\x7c\xc3\x9e\xff\xaa\xfb\x30\x50\x25\x71\x94\xfc\x89\x92\x6c\x91\x44\xc1\xfd\x6d\x9f\x20\x31\x2b\x6e\x3b\x71\x1e\x24\x8b\x1c\xea\x0a\x0f\xf7\x46\xcd\x0d\xd9\xf0\x22\xed\x11\xbd\xbe\x21\x6c\xc7\x3d\x6f\x81\x03\xf8\xb3\x5c\x51\x36\x9d\xa9\x76\x91\xca\x86\x68\x63\x99\x76\xe4\x1b\xd9\x60\xee\x60\xe0\xae\x0c\x5e\x2f\xa8\xa3\xbc\x67\x5d\x89\x5b\xb6\x26\xad\xc6\x5d\x01\xae\xc1\x60\xc7\x70\x34\x09\x42\x1b\x69\x9a\xd6\xdf\x0f\xfc\xdf\x8d\x9b\xf3\xcc\xc3\x36\xae\x07\x84\x43\xc3\x5f\x40\x68\xb0\x52\xf6\x3e\xf8\x8e\x6d\xfd\x39\xf1\x48\x63\xae\xdc\xd5\x61\xdb\xc6\x87\xb3\x77\x34\x52\xaf\x47\x23\xb5\x8d\x46\xea\x76\x34\x92\xa7\x65\x97\xc7\xa9\x9c\x8c\xa6\x67\xe6\x9f\xf1\x53\x7a\x82\xed\x05\x0b\x4d\x7e\x72\xe4\xd2\x1c\xd3\x34\x95\xb1\x42\x83\x41\xec\xfd\x7c\x66\x17\x28\xb8\x09\x19\xd5\xb7\xba\x18\x51\x5e\xdc\xdf\xb7\x1c\x81\xe8\x4e\xbb\x90\xd7\xb7\xed\x60\xa0\x83\xf2\x14\x6b\x1f\xe6\xb4\xed\x2e\xde\xfe\xed\x4d\x42\x38\x8f\x27\xfe\x64\x52\x41\xc1\x35\x62\xb1\x1d\x53\xac\xf0\x5d\x41\xb9\x24\xb9\x31\xaf\x9d\x56\xfa\x0b\x5c\x91\xae\xc6\x77\xb0\x30\x50\x70\x25\x0b\x6d\x1f\xcc\x60\x66\xf7\xb5\xef\x16\xe2\x68\x5a\xc7\x43\x3d\x80\xa7\x61\x4c\xee\xdb\x71\x1b\xce\x6f\xcd\x8a\x0e\x53\xed\xae\x09\x3a\x45\x1e\xee\xd1\x09\x94\xd4\x37\xfd\xd4\xcd\x7c\x00\x15\x3a\x8d\xf0\xe8\xdb\x26\x0a\xd8\xee\x7a\x74\x8a\x99\x77\xce\x63\x6d\xe6\xca\xd4\x22\x1e\x9d\xfa\xfa\x35\x84\x27\xad\xa0\xe1\xb7\x9b\x41\x43\xdd\x04\x0d\xb5\xbf\x54\xe8\x14\x7f\x8b\x47\xa7\x78\xf4\x87\xd6\xd5\x42\x55\x43\xc3\x1c\xd8\xb0\x5a\xb0\xd5\x43\x51\xb2\xc4\x1c\xb3\xc7\xa3\x64\x99\xb2\x2e\x4a\x66\x86\x92\x99\xa7\x64\xde\xa6\x64\x7f\x19\xd1\x6e\x12\x7d\xde\x49\xa2\x27\x7e\xa9\x9f\xed\x22\x51\x47\x88\x46\x65\x57\x21\x4f\x4a\xe0\xca\xdd\xd7\x64\x49\x8d\xa8\x30\x64\x1b\xa2\x3c\x56\x98\xe2\x4e\xa2\xe5\x1b\x34\x2b\x6b\x9a\x7d\x56\xd3\xec\x49\xfb\x66\xab\x36\xe0\xcf\xdb\x34\x7b\xd2\xd0\xec\xd3\x90\x66\x9f\x6e\xa7\xd9\xe7\x68\x93\xae\x2d\xcd\x9e\x60\xde\x41\xb3\xf5\x8d\x57\x35\x84\x4f\x5b\x34\xfb\x7c\x3f\x9a\x3d\xc1\xcf\xf1\xe8\x04\x8f\x9e\x75\xd3\xec\x4b\xce\x7f\x33\xa9\x3a\xc7\x17\x96\x98\x3f\x1e\xa5\xaa\x94\x77\x05\x08\xf8\x64\x38\x3d\x33\xff\x00\xa5\xca\xaf\x4d\xa9\x86\x99\xbe\xe4\x3c\xa6\x9f\xcb\x47\xe5\x26\x1f\x55\xff\x5c\x34\x29\xbf\x3a\x4d\xda\x5b\x7e\x53\x88\x94\x35\x27\xe9\x5f\xbe\x79\x93\xc0\x1b\x0a\x4c\xcc\xff\x5a\xd2\x82\xd1\x1d\x01\xae\x7f\xac\x8e\x14\x2d\x18\x38\x48\x1f\x58\x1b\xae\xfb\xcd\x9b\xbc\xfa\xb4\x55\x00\x89\x40\xfe\xef\xda\xfb\xd2\x7c\xea\xcc\x38\x72\x0e\xc9\x35\x1b\x92\xa2\x71\x14\x55\x2e\x4f\xa2\x15\x80\x6d\x72\xcf\x03\xf3\x15\x1c\xb8\x3e\xfa\x7a\xc3\xf4\x42\x96\x3a\x8e\x22\xe4\x32\xf8\x6a\x25\x7a\x32\x75\x8e\xb9\x06\x28\xdd\xdb\x3a\xb9\x2f\xb4\x1d\xe3\x40\xb5\xdf\xad\xae\x17\x74\x29\x3f\xd0\xa3\xc2\xbd\x05\xf4\xe8\xc6\x8b\x4f\xa9\xec\xe9\xc4\x98\x28\x2d\xe1\xb1\x59\x93\xa4\x3a\xb9\x66\x22\xef\xb9\x7c\x49\x48\x13\xa0\xd8\x7c\x1a\x93\xca\xde\xc2\x65\x0b\xe0\xb5\x88\x3b\x96\x8f\xb5\x3d\x55\x0a\xb7\x9e\x19\xbd\x78\xac\xbb\xc5\x17\x2e\x82\xa1\xd5\x58\xec\x36\x7c\x26\x60\x94\x4e\x53\x3b\x4e\xb4\x20\xea\x67\x22\x6e\xe1\xf2\x0f\x00\xf0\x6c\x32\xb5\xa7\x3a\x8c\x55\x79\x67\x31\x4e\x93\x52\x58\x01\x09\x9a\x9e\xde\xb5\x0c\x6b\xc9\xb8\x0f\xba\x0c\x1b\xd9\x3b\x3e\x29\xad\xbe\x7a\xe4\x5d\xf5\xee\xee\x78\x8e\xa3\xea\x9d\xb8\x8b\x6a\x77\xc3\x3b\x11\xb5\x28\x79\x4b\x32\x41\x7b\x13\x54\xc8\xc5\x30\xbb\x93\xfb\xbe\x27\x9a\x54\x10\x47\xd4\x6b\x71\x44\xdd\x1d\xd8\x0c\x1b\x7a\xaf\x12\xd1\xf2\x2a\xb6\x9f\x0c\x09\xdc\xb9\x1b\x03\x5a\x7e\xff\xc4\x26\xaf\x61\xef\x42\xd5\xde\xa1\x6c\x5a\xd5\xee\xe4\x08\x55\xbd\xfa\x9a\x9a\x5d\xab\x73\xcb\xe9\xbc\x64\x39\x3d\x76\x79\x08\x47\x4b\xaa\x89\xa1\x85\xc7\x4c\xd1\x6a\x3e\xf8\x70\xe9\x6b\x03\x57\x84\x39\x11\xf3\x71\x34\x97\xe6\xff\x11\xce\xa9\xca\x5c\x51\x9f\x41\xa6\x0e\xa7\x1f\xd9\x15\xa7\xb8\x0f\x2f\x94\xad\x0a\xa6\xe8\xd1\xbc\x20\x39\xad\xbd\xc8\x2a\x5b\x50\x03\x41\xd1\xcf\xa9\x62\x73\x61\x5f\x40\xa4\x44\x31\x7e\xdb\x67\x42\xd3\x79\x41\x34\x35\x7f\xc9\xe6\x89\xc2\x1b\x59\x5c\xcf\xb8\xbc\x51\x49\xdf\x8e\x96\x11\xd1\x2f\x4a\xd1\x27\xfd\x9c\x7d\xa0\x85\xa2\x50\xc5\xd0\x7c\x5f\xce\xfa\x10\x12\x34\xb2\xe0\x03\xcb\x28\xee\x5f\x19\x3e\x88\xfb\x99\x14\x9a\x30\x41\xed\xe3\x9a\x44\xe4\x90\x41\xbc\xf6\xb5\xf1\x11\xab\x24\xc2\xf0\x2a\x4c\xfd\xe8\xf5\xcd\xcd\x4d\x02\xeb\xb3\x2a\x24\x60\x98\xc9\xe3\xa8\x0e\x24\x5e\xd2\xa2\x20\x33\x59\x2c\xbb\xb1\x54\x17\x5b\x4c\x69\x29\x39\x3c\xf0\x79\x55\x32\x9e\x33\x31\xc7\xfd\x6c\x41\xc4\x1c\xfe\x32\xb0\x65\x72\x79\xc5\x84\x99\x3c\x13\xb3\x82\x34\x69\xcf\x8a\xcc\x28\xbf\x85\x3a\x74\x36\x63\x19\xa3\x42\xf3\xdb\x4e\x60\xb5\x1f\xb3\x0d\xe9\xdf\x6c\x64\xa9\x0b\xca\x97\x0d\x60\xf6\x41\x3f\x15\xbc\x1f\x67\x56\x35\x2b\x6e\x41\xb3\xb1\x99\x59\x35\x8a\x0d\x34\xab\x82\x7d\x60\x9c\xce\x69\xfd\xa4\x7c\xf0\xb2\x5e\x07\x74\x1f\x0c\x18\x9d\xa8\x84\x53\xf3\xbc\x1b\x42\x5b\x66\x91\x98\x33\x23\x34\xaf\x4a\x78\xe3\x7e\xc1\xe6\x0b\x83\x97\x0f\x84\x71\x02\x34\x68\x80\x32\x3b\xa5\x6f\xdf\xcb\xeb\x93\x1b\x78\xf4\x5c\xf2\xd2\xea\xae\xb2\xbe\xa4\xca\x22\xdc\xa6\xd9\xd1\x16\x11\xf8\xb7\xc6\xf3\x5b\x41\x96\x2c\xc3\xe1\x98\x6b\x2b\xd3\xb9\x04\x19\x80\xbb\x8e\xff\x79\x41\x44\xbd\x02\x45\x79\x75\xeb\x67\xe7\x8a\xb6\xd0\x88\x9d\x91\x07\xc0\x7c\x70\xef\xb0\xc3\xeb\x7e\x81\x13\xaa\x9b\x76\x3f\xd8\xce\xcb\x95\x91\xe1\x01\x3c\x6f\xdc\xdd\x18\x5d\xe8\xb6\x65\x6b\xf0\xc0\xe9\x40\x20\xcd\xdc\x3e\x5b\xca\xfb\x4b\x92\x2d\x98\xa0\x7d\x78\x36\xc9\x3e\xe8\xbf\x2c\xb9\x66\x2b\x4e\xfb\x2b\x4e\x34\x3c\x8d\xd2\x9f\x15\x72\x69\xc8\x86\x89\x39\x37\x2b\x51\x16\x19\xad\x11\x6f\x2f\xd0\xeb\x02\x7c\x05\x40\x58\x24\x4e\xb7\x33\x4b\x77\x40\xf7\x6b\xb9\x9c\xe1\x10\x4f\x63\x1d\xb8\x13\xa4\x71\x3b\x86\xa0\xa8\xbe\xb4\x60\x85\xb9\xff\x22\x8e\xdc\x57\xc3\xae\x42\xff\xe9\x52\xf5\xe9\xc7\x8c\xd2\x9c\xc2\xbd\x14\x98\xee\x56\xa2\xe0\x65\xcc\x35\x75\x17\x07\xe9\x65\x56\xa9\x3c\x5a\x50\xbe\xa2\x85\x5a\x6f\xf4\xaf\xf5\x40\x81\x75\xcf\xfe\x93\xac\xed\xb6\x95\xd5\x71\xf4\x77\xc2\x0c\x73\x68\xaf\xea\xee\xc5\xec\x70\x23\xaf\x9d\x14\x35\xaa\xbf\xbb\xfc\x6d\x67\x2b\x9d\xe6\x32\x03\x23\x3c\x81\x23\xc9\x6f\xa9\xcd\xe3\x8b\x9f\x18\xbd\x61\x62\x36\x7c\x1a\x3d\x39\xa4\x87\x4f\xa2\xe9\x13\x64\x34\xd6\x97\xda\xf1\xb3\xb8\x7e\x0c\x12\x61\x91\xde\xf9\x9c\xc3\x40\xc9\xb2\x1a\xdd\xaf\x17\x7f\x39\x97\xcb\x95\x14\x54\x68\xb8\xb7\xcc\x5b\xfb\xdd\x4b\x20\xb6\x2f\x81\x70\x26\x0a\xd9\x3c\x17\xf7\x04\x2e\x12\x84\x17\x8b\x0b\x4a\x3c\x77\xb6\x0c\xc4\xcc\xa4\xaf\xc9\xdc\xbe\xfb\x6e\xa6\xd4\x77\x53\x4a\x9e\x00\x7e\x0b\x7b\x39\xdf\x25\x55\x5a\xdd\xdf\x17\xf4\x1f\x25\x2b\x42\x74\x93\xd5\x2a\x42\x1b\xef\x8b\xac\xd9\x99\x86\x5c\x6d\x76\xe6\xdb\x8c\x0a\x52\x30\x39\x8e\xd4\x92\x70\x7e\x6e\x35\x99\xc8\x95\xfe\x9d\xe9\x45\xfd\x4a\x4a\xd0\xca\x7c\x07\x73\x7f\xed\xdb\x05\x9d\x83\x67\xc0\x60\xa0\xf7\xdf\x01\x00\x00\xff\xff\xf4\xea\xeb\x4d\xb7\xbf\x0a\x00") -func distAssetsNomadUiD6840652e28d16a3bb9c1052422e1bc6JsBytes() ([]byte, error) { +func distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0JsBytes() ([]byte, error) { return bindataRead( - _distAssetsNomadUiD6840652e28d16a3bb9c1052422e1bc6Js, - "dist/assets/nomad-ui-d6840652e28d16a3bb9c1052422e1bc6.js", + _distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js, + "dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js", ) } -func distAssetsNomadUiD6840652e28d16a3bb9c1052422e1bc6Js() (*asset, error) { - bytes, err := distAssetsNomadUiD6840652e28d16a3bb9c1052422e1bc6JsBytes() +func distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js() (*asset, error) { + bytes, err := distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0JsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "dist/assets/nomad-ui-d6840652e28d16a3bb9c1052422e1bc6.js", size: 643869, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} + info := bindataFileInfo{name: "dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js", size: 704439, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _distAssetsVendor4b52c9afd07b1f7fae097395f2dbaf27Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\xfd\x7b\xd3\xb8\xd2\x30\x8e\xff\xde\xbf\x22\xf5\x77\xc9\x91\x88\x92\xda\xce\x5b\x6b\xaa\xcd\x97\xa5\xe5\x65\x0f\x01\x96\x96\x65\x21\xcd\xe9\xed\x26\x4a\xeb\x25\x91\x8b\xad\x50\x4a\x9d\xfb\x6f\xff\x5c\x1a\x49\xb6\x9c\x38\x05\xce\xb9\x9f\xfb\x79\xe0\xba\x1a\xeb\x6d\x34\x7a\x1b\x8d\x46\x33\xa3\x9b\x88\x4f\xe3\x9b\xd6\xf1\xe2\x82\x25\xc7\xaf\xfe\xa4\x77\x4f\x8f\x1f\x9f\xbe\x7b\x7b\x7c\x12\xdc\x39\x4c\x46\x36\x93\x78\x29\x22\x7e\x09\xbf\x2c\x69\xa6\x2c\xf9\x12\x4d\x98\x13\xec\xba\x2b\x72\xfc\xd7\xe9\xf1\xab\xa3\xf3\x37\x6f\x5f\x9f\xbe\x3e\xfd\xf0\x46\x96\x3a\x0a\x05\x0b\x76\xbd\x15\x39\xff\xfd\x8f\x77\xc7\x6f\x3f\x9c\xbf\x78\x75\x7a\xfc\xec\xed\xe3\xd3\x17\xaf\x5f\xc9\x32\x3b\x5f\xc2\xa4\x36\x8f\xc3\x29\x4b\xc8\x94\xcd\x22\xce\x48\xc2\x3e\x2f\xa3\x84\x0d\xe3\xe9\x72\x9e\x87\xcc\xef\xdf\x29\x49\x96\x9c\x47\xfc\xf2\x94\xa5\x22\xa5\xbb\xde\x4e\x34\x43\xb3\x25\x9f\x88\x28\xe6\x88\xe1\x3b\x67\x99\xb2\x5a\x2a\x92\x68\x22\x9c\x1d\x93\x50\x13\x08\xdf\xc9\xaa\x18\x7d\x7d\xf1\x37\x9b\x88\xd6\x24\x61\xa1\x60\x88\x2f\xe7\x73\xbc\x93\x30\xb1\x4c\x78\x8d\xb5\xce\xcf\xe9\x97\x38\x9a\xd6\x5c\x32\x65\x73\x26\x18\x44\x11\xb6\x92\x45\x39\xbd\x53\x88\x06\x25\x7c\x83\x2a\xb4\x83\xca\x46\x04\x1b\x8d\x09\xf2\xaf\xd5\x4e\xfe\x49\xf5\x17\x2d\x01\xa1\x76\x23\x67\x71\x82\x24\x4e\x82\x8e\xc6\x84\xd3\x39\x62\xc4\x41\x3a\x3b\x76\x88\xc0\x24\xa1\xa2\x35\x67\xfc\x52\x5c\x35\xbd\x47\xc9\xaf\xd4\x7d\x94\x34\x9b\x58\x8c\x92\x71\x8b\x7d\xbd\x8e\x13\x91\xa2\xbc\xdd\xbc\xb5\x80\x2a\x4c\xca\x8a\xa8\x16\xd2\x3b\x1e\x3f\x89\xf9\x6c\x1e\x4d\x44\x90\x57\x2f\x54\x4f\x26\x24\xda\x91\x68\x24\xb5\x88\xd7\x04\x16\xad\xab\x30\x7d\x7d\xc3\xdf\x24\xf1\x35\x4b\xc4\x2d\x4a\x70\xbd\xce\xab\x22\x51\x44\x25\x1a\x84\x8d\xa2\x31\x65\xea\x2b\x19\x53\x3e\x4a\xc6\x78\x45\x16\xe1\x27\x76\xc4\x66\xe1\x72\x2e\x8e\x01\x9b\x7c\x96\x24\x54\x20\x4c\x22\x8a\xe4\x8f\x8b\x21\x2e\xa6\x23\x47\x37\xdb\x21\x8e\x46\xdf\x21\x8e\x6a\x8f\x33\x2e\x26\x40\x88\x18\x11\x84\x93\x04\xdf\x89\xab\x28\x6d\x2d\x97\xd1\x94\x46\x8d\x06\x81\x50\x34\xa5\x4c\x7d\x4d\xd9\x75\x4a\x77\x4d\xdf\xc9\x26\xa8\xaf\x41\x1c\x08\x95\x43\xc1\xa6\x77\xba\xb6\xe0\x6e\xb5\x52\x09\x93\x70\x3e\xbf\x08\x27\x9f\x28\x57\xe1\xab\x30\x55\x4d\x48\x1f\xa7\x47\xec\x9a\xee\x7a\xba\xb2\xf4\xf1\x3c\x0a\x53\x9a\xa8\x60\xc2\xa2\x59\xc4\xa6\x94\xb3\x9b\xda\xe3\x24\x09\x6f\x91\xa9\x1d\xab\x0c\xa9\x08\x05\xa3\x0e\x67\x37\xce\x2a\x6f\x4f\x8a\xf0\x5d\x11\x5a\xca\x49\x91\xb7\xa4\x88\x9f\xab\x56\x17\x13\x26\xa2\xc9\x88\x8d\xb3\x2c\x19\xb1\x86\xb3\x17\xf1\x29\xfb\xea\x8c\x1f\x45\xf5\x7a\x64\xd0\x7a\x84\x65\x9e\xa8\x15\x4d\x21\x9b\xfc\x28\x72\x9a\x19\x13\x65\x59\x31\x1d\x89\x90\x75\x27\xf1\x4d\x4d\x36\xe1\x38\x49\xe2\x04\x39\x4f\xe2\xe5\x7c\x5a\xe3\xb1\xa8\xcd\x22\x3e\xad\xa9\x4e\xab\xfd\x97\xd3\x60\x0d\xe7\xbf\x6a\xd1\x42\xf6\x0b\x9b\xd6\x66\x49\xbc\x90\xb1\xa2\xe1\xfc\x97\x83\x57\x00\x8c\xf0\x7a\xdd\xb9\x66\x7c\x1a\xf1\x4b\x67\x97\xd2\x48\xf5\x40\xbd\xee\xcc\x22\x1e\xce\xa3\x6f\x6c\x5a\x8a\x46\x51\x4b\xd6\x71\xc4\xae\x53\xc4\x31\xe1\xad\xeb\x65\x7a\x85\x22\x8c\x49\x54\xf4\xc4\x44\xe1\x19\xcd\x90\xd3\x92\xa5\x59\x6b\x72\x15\x26\x8f\x05\x72\x31\x36\xcb\x7f\xc7\xf4\x12\xa7\xac\x95\x5e\xcf\x23\x81\x9c\x3d\x47\xad\xa5\x22\xd8\x4a\xe7\xd1\x84\x21\x97\x34\x3d\x39\x1d\x5d\x12\x53\x33\x49\x1e\x45\x87\xf1\xa3\xa8\xd1\x50\x2b\x24\xa4\x7c\x14\x8d\x77\xa0\xca\x96\x43\x29\x0d\xa1\x7e\x97\x52\x9a\x98\x11\xde\xec\xb7\x90\xcb\x4e\x0b\x27\x13\x96\xa6\xb5\xeb\x30\x61\x5c\x98\xde\x8b\x67\xb5\x24\x8e\x85\x83\x77\x92\xd6\x75\x7c\x8d\xf0\x8a\xcd\x53\xa6\xdb\x04\xf0\x27\x31\x17\x11\x5f\x32\x99\x41\x76\x42\x88\x57\x2b\xdd\xba\xa4\xf5\x77\x1c\x71\x68\x41\xd1\x2b\x33\x39\x6f\x54\x86\x5d\xb4\x2b\xa7\x46\xbd\xbe\x5b\x9a\x1b\x78\x15\xb6\xae\x93\x58\xc4\xe2\xf6\x9a\xb5\x36\x56\x67\x41\x95\x0c\x7d\xb5\xd6\x88\xa1\x27\x3b\x92\xca\x52\x4a\x59\x96\x39\x31\x90\x5f\x67\x97\x4a\x78\xf1\xac\x06\xc3\xaa\x61\x58\xb1\x59\xa6\xe8\x30\x8c\xd4\x54\xd5\x98\x65\xbb\x9a\x78\x47\xe9\xf1\x57\xc1\x78\x1a\x5d\xcc\x19\x62\x38\xcb\x50\x9e\x89\x32\xbc\x22\x36\xca\x1a\x07\x1b\x51\xd9\x61\xc5\x54\xa2\x94\x16\xcb\x2c\xcb\x1c\xb9\x1e\x6f\xe5\xd4\x2b\x25\x98\x49\x52\xd5\x3c\x45\x2d\x5b\x37\x49\x78\xad\x68\x75\x5a\xaf\xa3\x32\x49\xd8\xcc\x82\xf4\x72\x2d\xd3\x0e\x8c\x0b\xa2\x70\x8b\x14\x91\xd3\x7d\x6a\xb2\xb4\xc2\xeb\xeb\xf9\x2d\x14\x2f\x11\x90\x9c\x9c\xdb\x91\x7a\x9e\x51\xb7\x44\x4a\x8a\xc6\x57\x52\xaa\x7a\x5d\x75\xbe\x1a\x32\x54\xd1\x64\xca\xb0\xde\x23\x36\xa7\x44\xbd\xae\x0a\xac\xc7\x23\x4c\x2a\x20\x95\x07\x6b\xc9\x53\xc6\xec\xa1\x5a\x27\x80\x5b\x49\x70\x19\x0e\x74\xdf\xfa\x90\xeb\x2e\x91\xab\xdf\x1a\xd7\x52\x15\xf9\xd8\xef\x88\xe4\xf6\xae\x44\x9e\x21\x70\xae\xc7\x85\xac\x17\x92\x70\x57\xd0\xad\xf3\xdb\xbb\x2d\x53\xc8\x4c\x0a\x5d\x8c\xc9\x05\xcf\xa6\x0e\x5e\x47\xfe\x7c\x03\x7b\x43\x97\xf4\x4c\x30\x63\xab\x08\x11\x26\x82\xba\x8f\xc4\x21\x33\x44\x48\x18\x02\xc4\x29\x1b\x89\xf1\x8e\xfc\x43\xb9\xe9\xf0\x41\xfe\x15\xac\xef\xfb\x08\x1b\x62\xc1\xca\x18\x19\xf2\x5a\xe2\x41\x64\x97\xca\x21\xa1\xdb\xbb\xd3\x10\xf1\x9d\x82\x5f\xc9\x37\x59\xc2\xa9\xfb\x88\x1f\x9a\xbd\xee\x11\x37\x58\x27\x54\x8c\xf8\x98\x44\xa5\xb6\x8e\xf8\xb8\x18\x6e\xcd\xa2\x29\xe4\x75\x68\xb5\x93\x6f\xff\x92\xbe\x0e\x50\xf5\x16\xec\x92\x28\x9f\xc3\x15\xb3\x11\x07\x39\x3b\x01\x50\xd6\x33\x87\x9f\xd8\x5b\x95\x8e\x70\x60\xb8\x8c\xca\x9c\x0a\xb7\xc8\x4c\xd5\x39\x9a\xa0\xc4\xf0\x1a\xd8\x7c\x10\xb6\x31\xf8\x56\x15\x5b\x68\xab\x24\x19\xd4\xe6\xc6\x0c\x81\xd7\x88\x4d\x90\x20\x0c\xe3\x55\x4e\x0e\x72\xd2\x28\x88\xd0\xf8\xbc\x00\x7e\x47\x76\x4f\x15\xa4\x59\x0e\x83\x88\x15\x41\x8a\xc1\xa5\xf6\x86\x2f\x59\x8a\x82\x9d\xd8\x89\xea\x75\x98\x0a\xc5\xae\x9c\x65\x28\x4c\x2e\x97\x0b\xc6\x45\xaa\x47\xf8\xd0\xaf\xd7\xed\xf9\xb3\xb1\xf5\x85\xbc\xb6\xe4\xe9\xf2\x5a\xb3\x06\x7a\xd3\xbb\x09\xd3\x9a\xc2\x60\x4a\x6a\xec\xeb\x35\x9b\xc8\xc4\xff\x52\x51\x28\x9a\x92\x1a\xcc\x26\x9d\x1d\xff\x57\x2d\xe2\xa9\x60\xe1\xb4\x76\x19\x8b\x20\x67\x38\x72\x64\x6a\x22\xd6\xe0\x80\xdf\x58\x47\x12\x13\x60\xc1\x24\x33\xa4\x58\x31\xb9\xb9\x70\xd9\x73\x74\x34\xc6\x44\xb6\x96\x72\xa8\x22\xe4\x13\xb9\x53\x2d\x07\xb2\x05\x21\xe2\x30\x2e\x84\x93\x5d\x17\x07\x2a\x4a\x31\x9c\xbb\x1e\xc6\x2b\xbc\xb9\x0d\x01\x3b\xa2\x56\xa9\xea\xc3\x19\xda\xe5\x59\x66\x96\x14\x2f\x6d\x3b\x88\x53\x03\x73\x34\x26\x29\x81\x63\x0b\x5e\x27\xca\x82\xf0\x0a\x0a\xaf\x70\x26\x7c\xa5\x0f\x2c\xad\x10\xb8\xcf\x32\x22\x7a\xe4\x7d\xc9\x45\xac\x75\xc9\x40\x77\xb5\x20\x12\x05\xc9\x69\xaa\x06\xca\xaf\x55\x71\x94\x69\x31\x2e\x92\x88\xe5\xa7\x97\xbf\xd3\xd6\x39\x0b\x3f\x9d\xa7\x8c\x71\x9a\x58\xf9\x60\xd2\x59\xe1\x35\x9a\xcf\xf0\x9d\x3a\xce\x40\x3c\x76\x64\x07\xaa\x3c\xa8\x54\xdd\x64\xce\xc2\xc4\x5e\x22\x3f\x88\x09\x9c\x22\x84\x84\xa5\xdb\xe5\xcc\xe2\xd8\x21\x16\xa0\x15\xb6\x93\xf6\x2e\xc2\xc4\x91\xbd\xbe\x3d\x47\x98\x4e\x67\x0e\x19\x19\x7a\x60\x1f\x44\x0c\x35\xb1\x8a\xeb\xe5\x03\x67\xa3\xa2\x06\x79\x5a\xb2\x42\x1b\x38\x7c\x03\x1c\xec\x11\x54\x88\xe3\x72\xc6\xcf\xcb\x6f\xce\x7d\xb9\xec\x48\xa2\x4b\x7c\x75\xaa\x1a\xac\xb3\xb4\x14\x48\xa7\xa5\x70\x70\x5a\xba\xb5\x10\x91\xc8\xdf\xd6\x9e\xcc\x79\x5f\xff\x2c\xc2\x88\x6b\x88\x50\xa8\x3a\x6f\xbe\x0b\x41\xbe\xbc\x0b\x65\x06\x43\xda\x4a\x29\x6b\xd1\x50\x49\x1e\xa7\x67\x4c\xd1\xa1\xeb\x33\x07\x61\x62\x78\x51\x9a\x73\x9d\x0a\x72\xbd\xbe\x91\xa2\x46\xb6\x5e\x2f\x2f\xb8\x7a\x1d\xad\xad\xc0\xbb\xf5\x93\x7e\x49\x46\xb0\xc2\x2b\xd8\x96\x30\x71\x96\x5c\xd3\xb4\xa2\x8e\xa7\x61\x2a\x7e\x8b\x63\x61\x53\x49\xb9\x34\xef\x41\xb3\x80\xb2\x5b\xc6\x74\xb0\x4e\x19\xe4\x76\x95\xb3\xd9\x39\x24\x55\xba\x5e\x37\x73\x63\x31\xcd\x17\x3b\x0e\x58\x6b\x11\x4b\x3a\x20\x0b\x2b\xbc\xed\x61\x2b\x89\x59\x60\x77\x22\xa2\x38\x6d\xab\xf5\xa8\x85\x2a\x8a\x5f\x95\x24\x8b\xe4\xb4\xc5\x3a\x83\x24\xc5\x19\xa4\xc6\x6c\xd2\x0a\x14\x38\xcb\x9c\x91\xea\x00\x15\x1e\x4b\xe2\xa8\x8f\x01\xc5\xae\x29\xe2\x13\x91\x44\xfc\x12\x98\x64\x49\x97\x72\xe8\x91\x05\x5d\xa2\xb0\x4b\xe5\x89\xc3\x80\x54\x80\x7e\x16\x66\x6c\xc1\x2c\x38\xe5\x95\x2d\x6b\x30\xe9\x0e\x5f\x2e\x2e\x58\x62\x0d\x9e\xd5\xa0\x57\x90\xf6\xb3\xb5\xa7\xdb\xfa\xeb\x48\x9d\x5f\x0c\x74\x19\xfc\x59\xd8\x4b\x6b\x5b\x22\x09\x1d\x8d\x81\x73\x53\x9c\x5a\xce\x5f\x36\x1a\x1c\xeb\xf3\xa5\x40\x4c\xf2\x6a\x1c\xe7\x87\x8f\x64\x4d\xf8\x90\xa3\xba\x81\x45\x59\x34\xa4\x71\x21\x02\x6f\x9c\xd9\xf3\x53\xb9\x92\x34\xcd\xe5\x4e\x84\xeb\x75\xa8\x1a\x78\xc5\xbc\x72\x99\xe4\x98\xd6\x39\x90\x27\x6f\x2c\x15\xf9\x27\x26\x90\xf1\x4b\x38\x5f\xb2\xd7\x33\x9d\x4f\x87\xa8\x30\x5f\x98\xb0\xd2\x41\xd9\x88\x8f\x74\x5d\x8f\x85\x89\x92\x5b\x7e\x6b\x29\x26\xc8\x42\xfd\x6a\x6d\xda\xc9\x63\xec\xf9\xf5\x0c\x6a\x3a\xbf\x9e\xd1\x3b\xb6\xb8\x16\xb7\xc1\xae\x47\x96\x7c\x99\xb2\xe9\x69\xfc\x89\xf1\x34\x18\x8d\x75\xf8\x05\xbf\x5e\x0a\x19\x8c\xbf\xb0\x64\x36\x8f\x6f\x82\xa6\x4f\x26\x57\x61\x92\xbe\x64\x33\xf1\xfa\x0b\x4b\x02\x17\xb8\x00\x95\x71\xd7\x23\x11\xff\x12\xce\xa3\xe9\x30\xe6\xe2\x2a\x80\xc5\xa6\x63\x9e\xc6\xc9\x22\x84\x2c\xcb\x94\x25\x2f\x54\x64\x28\xd8\x14\x4a\xa5\xb1\xfc\xb9\x0e\x93\x94\x4d\xe5\x8c\x79\x13\x4a\x0e\x7b\x34\x26\x0b\x96\x44\xd3\x88\x2d\x14\xac\x64\x36\xf1\xf7\x7d\x5f\xe6\xbd\x61\xec\xd3\x34\xbc\x1d\x46\xe9\x22\x14\x93\xab\x60\xd7\x5b\x61\x02\xad\x2a\x9a\x7f\xad\x0f\x08\x79\xd3\xa3\xf4\x4f\x59\xad\xe1\x78\x64\xf7\x80\x58\x05\x46\x9d\xb7\xd6\xea\x27\x36\x37\x50\x5e\xbc\x2b\x4c\x22\xba\x1b\xa5\xaf\xc2\x57\xb2\x2b\xa7\xad\x4b\x26\x4e\xa3\x05\x43\x18\xe4\x8d\xa6\xbb\x0e\xdd\x7a\x7d\x97\xb7\xa0\x97\xe1\xcb\xee\x1e\x3b\xe2\xbd\x6a\x0d\x44\xad\xb5\x0c\xe2\xf2\x3e\xb6\x0b\xa9\x2e\x85\x98\xb5\x3e\xad\xd7\xd1\x2e\x6f\x99\xbe\xcb\xb2\xe2\xbb\x5e\x4f\xb0\x64\xf2\x58\xeb\x5c\x91\x4d\x90\x84\x46\xf5\xba\x0b\xdc\x5e\x69\x6c\x4d\xa4\x3d\x37\x72\x89\x64\x4e\x71\x78\xeb\x22\xba\x7c\x1e\x2f\x13\x4c\x54\xe7\xe4\xd2\x91\xa7\x49\xfc\x8d\xf1\x7a\x7d\x2d\x42\xb2\x6e\x46\x80\xb7\x53\x0c\x0a\x8d\x56\x85\x00\x5c\xc7\x15\x43\x39\x95\x63\xa0\xce\x6e\x33\xf4\x2a\x7c\x55\x48\x8d\xd5\x80\x0c\x26\xe8\x0a\x09\x4c\x18\x0e\xe4\xef\x7a\x87\xc8\x23\x97\x58\x09\xaa\xd8\xea\x62\xf5\xa7\xf1\x82\x0d\xaa\x22\x83\x6a\x39\xb7\x6a\x8a\xde\x3e\x79\x2e\xdc\xfe\xf5\xd7\x5f\x5d\x92\x50\xf7\x51\x72\xc8\x1f\x25\x8d\x06\x8e\x66\x5a\x22\x5d\xaf\x33\x35\xbb\x94\xa0\x64\x94\x8c\x49\x42\x84\xe9\x80\x5d\x57\x37\x63\xd7\x53\xd2\xe5\x05\xe5\x7a\xbf\xd3\x14\x49\x32\x90\x23\x4b\x80\x7c\x5b\x22\x8d\x24\x92\x63\x19\x23\x21\x7b\xec\xf1\x10\x0a\x2a\x14\x95\x34\x6a\x3d\x96\x56\x64\x24\xaa\xb8\x29\x00\x59\x74\xe4\x4c\x47\x4a\x72\x74\x3e\xd3\x91\x73\x1d\x39\xa7\x10\x50\x91\x6a\x2e\xe9\x14\x15\xa0\x45\xb4\xca\x23\xbe\x2d\x74\x06\xf1\x6d\x41\x75\x84\xae\x3d\x7d\x77\xfa\x24\x47\xf9\xdd\xe9\x13\x9a\x47\xaa\x0c\xf1\x6c\x96\x32\x03\x5f\x05\x68\x11\xad\xf2\x5c\x1b\x74\xaf\x67\x54\xce\x01\x83\x6f\x3c\x09\xe7\xcc\x20\x0d\x01\x5a\x44\x13\xf7\x70\x61\x0e\x5d\xc5\x26\xb3\xb0\xc5\x01\xb1\xba\x2a\xa0\x8b\x11\x1f\x8f\x01\xce\x28\x19\xd3\xa8\xb8\xaf\x81\x7b\x99\x2f\x74\xd7\x2b\x86\xe9\x52\x4e\x1b\x2d\x1d\x63\xfa\xa0\x7d\xae\x84\xeb\x47\xe6\xc2\x67\x57\x52\xa4\xe9\xa0\x4c\x3e\x02\x39\xb7\x8d\x80\x1e\xd6\x00\xc2\x46\xf8\x65\x03\x90\xd9\x30\xd9\xf5\x28\xa5\x5f\xea\x75\xf4\x45\x4e\x70\xde\x5a\x5e\xcb\xd9\xfe\x1a\x7a\x45\x4f\x52\x89\x97\xb5\x23\x5c\x6c\xdb\xb6\x2f\xb3\x2c\x67\x4c\x72\xec\xd6\xe6\x4a\x01\xe6\xdc\x06\x73\xe8\x0e\x86\xa1\xb8\x6a\x4d\x58\x34\x07\x39\xa8\x1b\x40\x78\x36\x8f\xe3\xa4\xb4\xb1\xdf\x14\xab\xb8\xc1\x08\xa7\x66\xfa\x83\x84\x55\xd4\xeb\x51\xfa\x34\xe2\x91\x90\x8c\x5f\xbd\x8e\x38\x3d\x87\x61\xe4\x05\x80\x63\xfb\xd8\x9f\x90\x88\x42\x45\x8b\x88\x23\xc3\x17\x90\xe2\xda\x22\x56\xa9\xe1\x45\x9a\xa7\x36\x8b\xd4\x90\xba\xea\xe6\x08\x96\x6d\x04\xcb\x16\xf1\x7a\x5d\x8e\xae\xc4\x66\x94\x8c\xb3\x6c\x97\xd7\xeb\x37\x30\xe0\x78\x97\xd2\x1b\x24\x63\x25\x89\x0f\x1b\x0d\x83\x7a\xd8\x88\x0b\xfc\xbe\xca\x06\xc2\xa8\xf0\x56\xba\xbc\xbe\x4e\x58\x9a\x1e\xb1\xeb\x84\x4d\x42\x99\xfe\x3e\x4c\x78\xc4\x2f\xb7\x30\xcd\x93\x98\xa7\xb1\xe4\xef\xf5\x47\xeb\x26\x4c\x78\x39\x84\x1c\x0b\x5a\xed\x46\x81\x0b\x6a\x4e\xc3\xee\xe5\x93\x82\x46\x24\x34\x27\x31\xb5\x09\x2a\x4b\x22\xd5\x28\xf3\xd6\xb4\x80\xf8\x3c\xe4\xd3\xb9\x24\xfc\x55\xb1\x8a\x77\x96\x3b\xa6\x75\x91\x43\x62\x3a\x1a\xcb\xbe\x7c\x14\x1e\xae\x1f\xd9\x1f\x85\x8d\x06\xd4\x14\x51\xc7\xd9\x3c\xe7\xe4\xd9\x47\xe1\xb8\x80\x98\x4a\xb2\x19\x35\xa8\x73\xc6\x47\x4e\x23\x6c\x38\xe3\x9a\x53\x30\xec\x23\x77\x8c\xa3\x06\x4d\x1b\x8e\x6c\xb4\x1d\x3d\x4a\xc7\x0d\x87\xd4\x9c\x9d\x88\x46\xc5\xdd\x88\xaf\x2e\x27\x6a\x11\xb5\x6b\xdb\x89\xcd\xe5\xcc\xea\x2b\x62\x0d\xe7\x8c\x3f\x36\xa9\x12\xec\xc6\x7e\x20\xa1\x29\x2a\x1e\x63\x7d\x7f\xe1\x60\x59\xcc\x69\xa0\x5c\x72\x84\x5b\xa9\x08\x27\x9f\x24\x43\xb1\xeb\xad\x72\xa9\x97\x25\x26\xb7\x8e\x1d\x92\xc1\x94\xad\x7d\x4d\x1e\xd3\xbb\x55\x41\x37\x3e\xa9\xa1\xfb\xe9\xa1\x81\x0b\xab\xc7\x70\xa7\x86\xbe\x22\xfd\x4d\x77\x5d\x6b\x56\x0c\xb7\xad\xfc\xa7\x3a\x87\xc5\xb4\x9b\xa8\x9f\x65\xdc\x4f\xcb\x8c\xfb\x04\xdd\xad\x08\xc3\x8a\x7b\x5f\x63\x9b\x23\x60\x9c\x71\xbd\x1e\x21\x60\x9e\x07\x28\x01\xe9\xea\x8a\x4c\xe0\x8b\x40\xb2\x09\x40\x16\x1c\xa8\x7e\x91\x81\x41\x62\xd8\xee\x40\xdf\x91\x27\xc0\x82\xe7\x55\x31\x2c\xf9\x78\x59\xd5\xae\xa9\x33\xaf\x52\x55\x05\xd8\x41\xa9\xaa\x63\xc3\x13\xd9\x5d\x39\x45\x54\xe2\x64\x26\x64\x6b\xef\x5d\xd9\x74\xd7\x23\x55\x23\x44\x61\xf1\xbc\x36\x9d\xf9\x89\xdd\xa6\x03\xeb\xbb\xc4\x6e\x00\x81\x24\xdc\x9c\x7b\x44\xd1\x1c\x01\xdc\xa5\x3a\xf3\x14\x1c\x90\x62\x1d\xde\x96\x26\xd2\x1b\x5b\xb2\x27\x87\xec\x65\x7c\xc3\x92\x27\x61\xca\x10\xde\x79\x2b\x9b\xff\x76\xc4\x1b\x4e\xea\xc8\x0f\x31\xb6\xcf\x8d\xaf\xac\x73\x63\xaa\xce\x30\xc5\xb9\x71\xf0\x16\x26\xd9\xdb\xd1\x1a\xcc\xb1\x11\x80\xe7\x60\xfe\xb6\x9a\x42\x12\x40\x6e\x73\x6c\x90\xa0\xaf\x10\xc7\x6a\x4c\x24\x1a\xf6\x39\x2a\x81\x25\xf2\xa2\xd4\xae\x23\xd5\xae\x17\x72\x7a\x5b\xfb\xd1\xcb\xd2\xbe\x40\x1d\xa7\x51\x90\x7e\xc9\xaa\x8b\xa6\xb9\xeb\xd4\xc0\x91\x7b\x48\xd9\x80\x0f\x9c\x86\x13\x38\x4e\xe0\x34\x1d\xac\x8a\x5c\xc7\x37\xc8\x73\x89\xda\x57\xc2\xaf\xc8\x25\x11\xc6\xf9\x94\x47\xb8\x95\x2e\x2f\x52\x91\x20\x0f\x37\x14\x7e\x4f\xe9\x1e\x3a\x1b\x8d\xfe\x75\x36\x1a\x3f\x3c\x1b\xe3\x0c\x9d\x9d\xe1\x01\x1a\x3d\xbf\x1a\x2f\x16\x28\x4d\xf1\x20\x1b\xc6\xd9\x70\x38\x90\xff\xb3\xa3\x38\x3b\x3a\x82\x3f\x03\xf9\x3f\x9b\x4e\xa7\x83\xe9\x20\x9b\xc6\x83\xec\x66\x14\x67\x37\xe3\x41\xf6\x7e\x14\x67\xef\xc7\x83\xec\x8f\x78\x90\x7d\x80\x7f\x59\xf1\x37\xfb\xf0\x21\xbb\xbc\x44\x97\x97\x97\x03\x3c\xc8\x9e\x3d\x43\xcf\x9e\x3d\x93\x5f\x2c\x3b\xce\xc2\xec\x71\x76\x75\x35\xc8\x9e\x3f\x1f\x64\x9f\x3e\x0d\xb2\xc5\x62\x90\xa5\xe9\x20\x3b\xb9\xf3\xc8\xc1\x2a\xfb\x9a\xfd\x95\x7d\xfb\x36\xc8\x3e\x7e\x1c\x64\x2d\xbc\x77\x49\xbe\x55\x22\xfe\xf2\xf4\x24\x7b\x79\x9a\xbd\x7c\x39\x90\xff\xb3\xf9\x9d\x47\x3a\x2b\x99\xfd\xb9\x5c\x9b\xbf\x95\x06\xe3\x5d\x71\x1c\xd5\x62\xf8\x9d\x8d\x19\x93\xc0\x01\xa3\x24\x20\xcd\xaf\x07\x47\xc9\x18\x61\x79\x6c\xab\xd7\xd1\x6f\x72\x44\x23\x4c\x04\x7c\x8b\x91\x3b\x1e\x57\x94\x7a\x89\xa2\x6a\x8a\x4a\xc4\xc8\x93\x64\xc2\x1f\x4b\x80\x1c\x80\xf0\x2a\x08\xb0\x92\x15\xf3\x77\x14\x8a\x10\xe1\x56\x9c\x4c\x23\x1e\xce\xb7\x42\x66\x78\x65\x91\xb8\xcf\x25\x71\x02\x2b\xb8\xb4\x01\x12\xf4\x3d\x12\x84\x95\xa0\x63\xf2\x5c\xce\x6b\xf9\xc7\x56\x56\xb0\x56\x06\x89\x28\x6b\xc1\x49\x0f\x3d\x55\xf4\x4b\x50\x97\x70\x1a\xe5\x17\x69\x87\x1c\x2e\xd3\x7e\x1b\x45\x23\x31\x1e\x0f\xe4\x5f\xaa\x03\x01\x04\x50\x42\xe5\x2f\xd6\x60\xf6\xce\x46\xa3\xb3\xf4\xec\x64\xbc\x87\x07\x49\x2b\x61\xd7\xf3\x70\xc2\xd0\xde\xbf\xce\x46\xd9\xd9\xf8\x97\xbd\x4b\xe2\x38\x38\xb0\x12\xce\xce\x54\x9c\x59\x77\x9b\x3a\x36\x31\x75\x1c\x8b\x59\x52\x67\x9c\xb8\x41\x87\x28\x92\x0c\xd1\x40\xfe\xd5\xc7\x1c\x79\x02\x93\x41\x03\x2c\x5e\xad\xe4\x7e\x24\x3b\x00\x64\xf6\xe5\xee\x31\x47\x59\xe0\x69\xad\x5e\x7e\x6f\x93\xaf\xee\x4e\xa5\x94\x4e\xb4\xe6\x31\xbf\x94\x25\xd5\x41\x18\x58\x4f\xb6\x92\x68\x7e\x6b\xcd\xc3\x54\xbc\xe0\x53\xf6\x95\xba\x8f\xdc\x43\xca\xeb\xf5\x6f\x2d\xc1\x52\x99\xe9\x11\x66\x94\xe5\xad\xff\x46\x12\x4c\x4a\xf9\x09\x6f\x52\xaf\xcc\xdc\xff\x49\xf7\xce\xa6\x7b\xe4\x83\xfc\x91\x1f\xcf\xe4\xc7\x5d\x7b\xb5\x47\xfe\x09\x5f\x9d\xd5\x1e\xf9\x85\xee\x8d\x1a\xcd\xf1\xe0\x6c\x7a\xd7\x5b\xed\x91\x3f\x54\xde\xc1\x1e\xf9\x4b\x7d\xe9\xd0\xc7\x22\xa4\x63\x7e\x07\x10\x1e\x91\xe0\x18\xd3\x01\x09\x51\xb0\x02\xa4\x47\x24\x50\x0e\xc9\x8d\x3d\x92\x14\x49\x8d\x3d\x12\x31\xba\xf7\x31\x93\x61\x09\x32\x18\x00\x92\x97\x11\x89\x4b\xf1\x68\x10\xa8\x24\x3c\x90\x89\xa1\x04\xe1\x36\x0f\xc6\x77\x2e\xf1\xbb\xbd\xd5\xe8\x1f\x61\xf3\xdb\xd9\xd2\x75\x1f\xbb\xcd\xb3\xa5\xdb\x7d\xfa\xf4\x6c\xe9\xf6\x5d\x19\x38\xea\xcb\xc0\xd3\x03\x08\x3c\x3d\x7a\x22\x03\x47\x4f\x21\xf0\xd4\xed\xcb\xbf\x9e\x0a\x1c\x3f\x1d\xdf\x79\x00\x2d\x1b\x9d\x2d\xdd\x1e\x14\x70\x7b\x4f\x9f\x9e\xed\x99\x04\x74\x96\x3e\x1c\x94\x13\x4d\x12\x96\xbf\xab\xbd\x88\xa4\xac\x44\x66\x96\xcc\x50\xf7\x94\x49\x2a\x31\x44\x02\x0f\x2c\x55\x30\x66\xc9\xc3\xe4\xe9\x65\xc0\x03\xb1\xb2\x04\x80\xac\xb4\x64\xe7\x28\x65\x84\xe1\x01\xc0\x2a\xce\xae\xa4\x38\x13\xc2\xbd\xd2\x5b\x76\x79\xfc\xf5\x1a\x4d\x18\x2a\xe6\x8a\x73\x76\xe6\xc8\x85\x62\x2f\x1d\x74\x36\xc2\x99\xfc\x19\xe3\xec\x6c\x84\x46\xff\x3a\x1b\x4b\x82\x8a\xcf\xc6\x32\x16\x08\x6d\xf9\xce\x45\xae\xf8\x62\x0e\x67\x19\xcf\xb2\x24\xcb\xa2\x15\xc6\xb6\xcc\x91\xd9\xdc\x5a\x51\xdf\xa8\x79\xb6\x77\x76\xf6\xaf\x5f\x1e\x36\x06\x2d\x84\xb3\xd1\xd9\xf8\x6e\x35\x96\xab\xf7\xec\xec\x97\xba\xa3\x78\xca\x59\xb9\xf7\xae\x58\x99\x29\x13\xb0\x90\x37\x77\xf6\x7a\x1d\x31\x3a\x62\x63\x4c\x42\x75\xfc\x4a\xec\xcb\x39\x8e\xef\xb8\x24\x35\xf2\x04\x27\x09\x6c\x59\x16\x2b\x8f\xc9\x33\x36\x92\xbb\xf7\x98\x5a\x4c\xd4\xb5\xae\x1b\x70\xb0\xa1\xe9\x4e\x68\x9d\xdf\x50\xf9\x27\xcb\xee\x56\x44\xc8\x81\x6c\x9d\xdf\x40\xda\x4a\xb5\x65\xca\xa8\x4b\x16\x8c\x7a\xe4\x96\x51\x9f\x7c\x61\xb4\x4d\x2e\x19\xed\x90\x0b\x46\xbb\xe4\x9c\xd1\x1e\xb9\x61\xb4\x4f\x8e\x19\xdd\x2f\x9a\xfc\xd5\xee\xbd\x13\x19\x18\xb4\x7b\xbd\xa0\xdd\xeb\x5a\x87\xa4\x52\x0f\x3f\xe8\x50\xea\xd6\xeb\xec\x81\xe7\xba\xbb\xd4\xcd\x32\xf6\xa0\xe3\xba\x94\xba\xab\x77\xc8\xf9\xe0\x10\x97\xb8\xa4\xfa\x1e\xfc\x16\x6e\x71\x72\x72\x71\x48\x0f\x0e\x0e\x0e\x06\x8e\xd3\x60\x81\xd3\x70\x1a\x6c\x85\xc9\x3b\xe4\x92\x91\xf3\xe1\x83\x43\xfc\x71\x19\x8e\xbd\x27\x29\x40\x12\x01\xab\x88\x2c\xd4\x91\x85\x1c\x99\xec\xd8\x09\x1f\x1c\xd2\xdd\x92\xf2\xc1\x21\x3d\xb2\xeb\xda\xa9\x6f\x90\xfa\x22\xce\xad\x83\xc9\x91\x09\x79\x98\x2c\x19\xb4\x30\x61\xfa\xf3\x83\x43\xfe\x20\x1f\x4c\x40\x06\x19\x23\xff\x2c\xc2\x1f\x1c\x22\x18\xf9\xc5\x8a\xc8\x63\xae\x18\xca\x71\x33\x49\x63\x32\x65\x90\xa2\x81\xad\x29\xec\x8d\xa6\x6c\x4c\x7d\x4a\xa9\x99\x4b\x03\x2d\x86\x3d\xbd\x89\x8f\xa2\xcb\x48\x7c\x90\xdd\xc2\x70\xa0\x27\xde\x95\x46\xb1\x0a\x4c\x75\x49\x53\xa8\xba\x0c\x94\x78\xc1\xe5\xdc\xf3\x5c\x98\xd9\x9b\x40\x68\x85\x1c\x58\xa2\xd3\x40\xbd\xfd\x43\xf9\x31\xf0\x0e\x5c\x37\xf0\x59\x1b\x2b\x56\xfc\x35\x23\x8f\x19\xfd\xc4\x90\xf3\x74\x39\x9f\x7f\x80\x9e\xde\x75\xb1\x75\xcc\x2b\x93\xa4\x1c\x7e\xb2\x26\x67\x4e\x06\xe8\x94\x69\x29\x92\xdc\xa7\x2a\x24\x3c\xf2\xe0\x07\x92\x9e\x60\x68\x72\x62\x8b\xf8\x0d\xd9\x56\x7e\x85\xb5\xce\xa7\x23\xe7\x92\x09\xa7\x91\xcb\xdd\x06\xce\xbb\xd3\x27\x92\x23\xc6\x0d\x31\x56\xd2\x28\xeb\x74\x97\xd3\x61\x0b\x4c\xbd\xae\xc5\xe0\xc0\xce\x17\x0d\xa6\x20\xd0\x91\xab\x4c\xcf\x6c\x5c\xaf\x7b\x30\xce\x8b\x98\x8b\x2b\x59\xd0\x3f\x80\xf0\x14\xf6\x7e\x8d\x4e\x7a\x0f\x3a\x9c\xe4\x85\xc9\x13\x66\x07\x81\xaf\xf8\x6e\x71\x9b\xc0\x3e\x61\xb9\x26\xa6\x96\xe2\xe3\x2c\x53\x5f\xb9\x74\xb6\xf6\x2a\x7c\xb5\xa3\x58\x10\x24\x1e\x78\x7e\xc3\xf3\xf1\x03\xcf\xcf\xd7\x7a\x83\x22\xd1\xe4\x78\xcf\xf3\x09\x48\x7c\x06\x8a\xd4\xf8\x07\x81\xbf\x1f\xb4\xbd\x26\x7f\xd0\x7f\xe0\xaf\x5e\xb3\x0d\xa9\x33\x28\x35\xbe\x9e\x6d\x08\x9e\x75\xfc\xe6\x61\xd0\xb0\x85\x8f\xc4\xa1\xe2\x5f\xcd\x15\x98\xc0\xd1\x0c\x46\x5d\xd2\x66\x4a\x0b\xfd\x40\x8d\x64\xd3\x5b\x91\x77\xc8\x19\x3a\x64\xe4\x0c\x87\x40\x80\x9c\x61\x59\xcf\xa0\xac\x51\x08\xdd\xd9\xf0\x80\x04\x39\x43\x59\xa4\x44\xfa\xd8\x3d\x7c\x34\x14\x4e\x4f\xae\xe2\x44\xe4\x13\xd1\x80\xf9\x79\x38\x16\x88\x37\xc8\x81\x38\x87\x38\x43\x45\xbc\x74\x70\x5f\x11\xa1\xa1\x43\xfe\xd0\x5f\x43\x8b\x78\x41\xad\x95\xfa\x25\xc2\xc6\xf5\x2d\xbb\x64\x5f\x15\x9d\xd0\xa5\xbe\x57\xcc\x2a\x01\x14\x6f\x28\x11\x1b\xae\x29\x57\x48\x02\xb3\x60\x6a\xc3\x6c\x7a\x79\xd6\xa1\xca\xbc\x91\xdd\x3e\x45\x71\xc3\x89\xe8\xfa\xde\x48\x82\x24\x37\x47\xc2\x73\x91\xfa\x8e\x22\x10\xd1\x40\xd5\x12\x05\x57\x88\xe3\xd2\xf5\x12\x65\x2b\xa5\xb8\xf9\x96\xd1\xbd\xa3\x51\x7c\x34\x1e\xe8\xe3\xde\xd9\x58\x1e\xf8\xb2\xb3\x14\x37\x24\x26\x83\x3d\xf2\x86\x51\xe7\xf7\x90\x2f\xc3\xe4\xf6\xfc\x29\xbb\x48\xe0\x63\x18\x26\x93\xab\xf3\xc7\xd7\x49\x34\x3f\x1f\x86\xb7\xe7\xbf\x2f\x39\x3b\xff\x7d\x39\xbf\x3d\x7f\xbc\xbc\x5c\xa6\xe2\xfc\x84\x5d\x0b\x30\xc7\x38\x7f\x3d\x11\xb1\xfc\x7d\x15\x7f\x51\x11\x47\x6c\x02\x1f\x8e\xd1\x58\x3e\x77\x30\x79\xa5\x6a\x91\x35\x48\xe0\x12\xb4\x01\x2c\xe1\x4a\xb0\x12\xa6\x84\x26\x21\x49\x20\x76\xf9\x82\x7c\xfe\x6d\xb3\x34\xa0\xb2\x64\x11\xa4\x42\x8f\x3a\x9a\x6d\xb2\x39\xb0\x60\xf6\xfe\x75\x36\x6d\xfc\xb2\xa7\x0e\x04\x02\x63\x41\x6f\x90\xc0\x3b\x4a\x52\x38\x43\xbb\x21\x12\x94\x55\x4d\x4a\x35\x12\x02\x5b\x95\x18\x7a\x6d\x4b\xa2\x15\x45\x93\x34\xca\x10\x3f\x22\x30\xdc\x4e\xde\x47\xa2\x1c\x18\x36\x67\x0c\xd2\x2a\xfb\xd6\xf7\x05\xdb\xbc\x80\x1c\xa0\xbf\x73\x72\x5f\xb9\x2d\xec\xba\xeb\xfb\x82\x86\xaf\x18\xab\x23\x46\x43\x46\x5e\xca\xbf\x45\xbf\x3e\x65\x08\xdf\xe5\x21\xb6\x36\xf9\xb5\x04\xdd\x6c\xd4\xab\x42\xb6\x33\x1a\x93\x48\xfe\x89\x73\x91\x15\x90\x2a\xcf\x87\x73\x2b\xa7\x33\x34\xf2\x59\x9b\x88\x31\x26\xe6\xc6\x3e\xa7\x36\x9a\x60\x70\xc9\x57\x63\x12\x6d\x24\x9b\x94\xf8\x27\x52\x6c\x90\xea\xd8\xda\x4a\x65\x0c\x93\x15\x98\xaf\x38\xff\x2a\x61\x0b\x62\xa8\x09\x03\x71\x14\x26\x91\x0e\xc1\xf1\xda\x6a\x9a\xdf\x81\xcc\xb1\x4e\x8e\x21\x59\x5d\xd2\x58\x34\x82\x5a\x07\x09\xe7\x5f\xc8\x69\xc4\x5a\x7a\x9c\xc9\xe1\xc6\x0e\x71\x22\xc7\x5c\x0e\xad\x53\x24\xba\x01\xad\x9c\x11\xc8\x40\x75\x2d\xd1\x0f\xd5\x72\x1f\x84\xa4\x02\x42\x31\x1f\xbf\xb1\x62\x63\x8a\x66\x88\x1d\x7a\xae\x5b\xaf\xbb\x87\x94\x99\x13\xfb\x3d\x12\xf4\x42\xb0\xb2\xc3\x47\xee\x98\xb2\x46\xc7\x75\x89\x28\x6e\xb6\xe4\x9f\xd6\xbb\xd3\x27\xb6\xc2\x0e\x97\x53\x23\xbf\x1b\x6a\x5d\x32\xf1\xee\xf4\x89\x61\x35\x80\xb5\x10\xad\xb4\x1c\xc9\xb4\xe4\xff\x3b\x90\x0b\x74\x0a\xc5\xf5\xa2\xa5\xcf\x59\x59\xae\xd8\x6f\x88\x26\x37\x5b\x2b\xea\x37\x64\x4f\x10\x97\x24\x58\xa3\x74\x14\xde\x22\xdc\x14\xf8\x41\xbf\x91\x34\xbd\x02\xce\x6f\xcc\x3e\xfb\x81\xc9\x10\x09\x49\x4a\xbd\x46\xff\x21\x12\x4d\x0f\x37\x50\xbf\xc1\x9b\x89\x2c\xf8\x5c\x91\xfa\xe2\x7e\x31\xa4\xe9\x21\x75\x07\x5f\x19\x8a\x29\x93\x79\xd3\x20\xfd\x15\x8e\x38\x03\x19\xd3\xf0\x48\xda\x84\x20\x0e\x64\x98\xa4\x98\xdc\x49\xaa\x13\xc4\x64\x1a\xde\xbe\x9e\xc9\xee\x08\x42\x8b\x27\x7c\xc7\xd6\x6e\xd1\x48\x4c\x9f\xdb\xb4\x4a\xd2\x9f\x90\x5a\x77\x78\x40\xd3\x34\x28\x84\x9b\x71\xd3\xc3\x7b\x7d\xdc\xc8\xa5\x24\xe1\xa1\x37\x48\x68\xd8\xf8\xcc\x50\x44\x0d\x9c\xa6\x07\x90\x82\xf0\xd7\xcf\x6b\xc0\x07\x28\xa1\x61\x73\x3d\x96\x14\x45\x1b\x1e\x0e\x2c\x48\x24\xa1\x21\x26\x77\x37\x8c\x7d\x0a\x12\x02\x6d\x8b\xac\xf6\x7c\x5e\x1b\xa5\x7c\xd4\x48\x04\xdf\x0d\x85\x88\x91\xfc\x42\x5f\x35\x93\x46\x84\xf7\xfa\x96\xc4\x69\x9d\x51\x56\x77\x48\x82\xf4\x71\x6b\x12\xf3\x49\x28\x10\xcb\xef\x95\x04\xc6\xf2\x60\x78\x23\xd9\xaa\x9b\x1b\xc5\x56\xdd\xc4\x0e\x71\x24\x8a\x70\x16\x73\xde\xcb\xb4\xf7\xef\x55\xda\x7b\x99\x16\xa5\xf1\x7b\x95\xfc\x06\xa9\x8c\xc4\xb9\x51\x21\x93\x44\x9c\xf7\x8a\xc1\x51\xc9\x5d\xf8\xce\x13\xbb\x8a\x43\xb9\xc9\xd9\x1d\x59\x75\xce\xee\xbc\xcf\xa3\x65\xad\x10\x7d\x2d\x59\x8e\x1b\x59\xcd\x0d\x80\x26\x32\xa9\x8a\xef\x10\xa3\xc4\xc8\xb5\x5d\xe2\xe1\xfc\x98\xff\x0e\x39\x53\xc9\xb9\x39\x53\xd9\x80\x69\x78\xab\xda\x36\x9d\xfe\x04\x3b\xa7\xd5\x59\xd2\x61\xc4\xcb\x6c\xe1\xf4\xdf\x02\x53\xc1\x5f\x4e\xff\x3d\x48\x65\x20\x4c\x41\x70\x74\xaa\x6a\xe8\xb1\x8e\xd4\x43\xa0\xe2\xdf\x20\xe8\x09\xe2\x4c\x8b\xa1\x54\x11\xac\x34\x9a\x2a\xee\x58\x0d\x28\x04\x3c\x2f\x1f\x5c\x3b\x6c\xe7\xf7\xf4\x89\x7c\x9a\x8f\x26\xcb\xbf\x8e\xf3\x2f\xd9\xde\x2d\x2c\xaa\xd5\xdd\x6b\x9c\xed\xf4\x07\x4a\x55\x71\xc4\xd3\x1f\x29\x68\x95\x81\x59\x27\x8b\xa8\x1a\x55\xf9\x1f\xe1\x76\x0d\xac\xfb\xf9\xdd\xd6\x74\x8d\xdb\xd5\x7d\x07\x4a\x59\xaa\x6e\x18\x0a\xd9\xf5\x5b\xe6\xba\x99\xdf\xc0\x1e\xff\xc9\xa8\x73\xb2\xe4\xd3\xf0\xf6\x7c\x18\xc3\xcf\xe9\x92\xa5\xf2\xf7\x3d\x9b\x72\xf5\x75\x7a\xb5\x4c\xe0\xe3\x69\x12\xc9\x9f\x93\x50\x2c\x13\x39\x5e\x36\x7b\xfb\x41\x01\x92\x50\x24\x08\x59\x5c\x16\x94\x65\x64\x81\x52\xde\x67\x90\xf7\x7c\x18\x9f\x9f\x2e\xcf\xdf\xb3\xf3\xd3\xab\xf3\xa7\xc9\xf9\x49\x58\xca\xf4\x4f\xe0\xd1\x7e\x81\xbf\x7f\x94\x39\xb5\xbf\xfe\x3d\x4e\x4d\x92\x7a\x12\x4a\x56\x2d\x95\x7f\x96\xf2\xcf\xbc\xcc\xb4\xf5\xcb\x3c\x9b\x37\xc6\x92\xf4\x23\x65\xcb\x2b\xd7\x92\xbd\x9e\x81\xc5\x32\x36\x32\xe5\x15\xaa\x92\xe2\x72\x92\x8e\x0d\x15\xc7\x96\x60\x92\x9a\x8b\x78\xb2\x54\x5f\x31\x26\xf3\x3c\x75\x9e\xa7\xce\x4d\x2a\x60\x1a\xe6\xac\x5b\x9a\x7f\x2d\xf3\xaf\xf9\x1a\x63\xa7\x5a\x94\x6a\x56\x2d\x05\xbe\x6e\xa9\x43\x4b\x08\xcd\x75\x68\x6e\xb1\x71\xa5\x89\xbd\xc1\x20\xcd\xb7\xb3\x58\x9b\x4b\x89\x56\x40\x5c\xcb\x6c\x56\xeb\x0f\x64\xbd\x8f\x6f\x5b\xfe\x20\x5a\xf7\xc1\x48\xbf\x0f\x63\x18\xf1\xfb\x20\x84\xf7\x72\x8f\x1f\xd9\x9a\xd0\xe1\x2a\x5e\x26\x29\xc2\x0f\x3c\x3f\xcb\x3c\xbf\xc8\xf8\xbb\x9e\xd6\xef\x80\xc7\xda\x2a\x37\x2d\x1f\xd3\xb4\x9a\x23\xb2\x21\x6b\x6b\xbd\x88\x2f\x05\x83\x60\xe9\x42\x8f\x89\xb5\xd5\x73\x6e\x80\x00\x1d\x92\xfb\xfc\x73\xb9\x97\x3f\x7f\xae\xe5\xb7\x8e\x04\xab\xf6\x87\x2b\x99\x70\x75\xa5\x13\x3e\x32\x88\xfc\x24\x23\x3f\x7d\xba\x5f\xda\xab\x51\xcb\x32\xbf\xa3\xf6\x9f\xab\xc5\x62\x43\xcc\xac\x2f\xe1\x9d\xc6\x47\x66\xdd\x4d\xe2\xc6\x4b\xb4\xd6\x22\x1f\xe7\x40\xd2\xf4\x3f\x01\x63\xe2\x52\x36\x89\xf9\xd4\x06\xfd\xfc\x3e\xfc\xec\x26\x6d\xc7\xee\xf9\xfd\xd8\x7d\x0f\xc8\x16\xdc\x7e\x67\xc8\x09\x41\xbe\x0a\x9f\x8f\xc1\x54\x47\x6e\xc3\x30\x4c\xc4\xb9\x52\x1b\xb0\x0a\x79\x6d\xb5\xa7\x85\x0e\x61\x42\x7d\x3e\x2e\x3e\x9f\xe7\x1b\xec\x55\xfe\xf5\x29\xff\x92\x13\x20\xe7\xb6\xe4\xa0\xe7\x01\x39\xd8\x45\x8a\xec\xa8\xbf\xf2\x6f\xd9\xe2\x8f\x1a\x80\x95\xf2\x3c\x4f\x01\xb9\xd0\x73\x87\x48\xf8\x63\xf2\x85\xe9\x18\xc9\x0c\x7e\xfa\x54\x61\xb1\xa3\x78\x5c\xb9\x81\xed\x88\xd1\x17\x36\xa6\x7e\x07\x4c\xff\xdc\x20\x31\x52\xa6\xd0\x21\xce\xe3\x4a\x63\x9f\xf3\x28\x7d\xb3\xb0\xb6\xdc\x28\x7d\x33\x44\x20\x41\xc8\x67\x3d\xec\xa3\x00\xe6\x4a\xf6\xde\x55\x05\x1c\x55\xaf\x44\x81\xc0\x46\xac\x15\x80\xe9\xae\xab\x85\xed\xd0\x07\xd5\x88\xe7\x9a\x78\xfe\x4e\x0e\xa6\xe0\x3d\x13\x8c\x89\x18\x5d\x96\xa3\x65\xe4\xd6\x7a\x64\x2f\x7e\xa7\xa6\x0e\x9c\x2c\x7e\xbe\x5a\xe2\x43\xf4\x45\x39\x3a\xda\x8a\xcd\xf3\xff\xe9\x56\x17\x70\xff\x6f\xb4\x52\xf3\x47\x42\x10\x2e\xe0\x32\x43\xb6\x36\x55\x2b\x2d\x11\xf4\x4e\x4e\x20\x3e\x0d\x93\xe0\x2e\x0d\x17\xec\x28\xbc\x0d\x9c\xd1\x69\x3c\x0d\x6f\x6b\xa1\x18\xd7\x5e\x9e\x3a\x84\xb3\xaf\xc2\xc4\x2f\xe2\x24\x89\x6f\x4a\x49\x92\x71\x0b\x80\x3d\xac\x8d\x4c\xfc\x3c\x4c\x75\x91\x0f\x2c\x15\x2c\xb1\xc1\xc9\x34\x55\x66\xf4\x32\x4c\xc5\xb8\x56\x2e\x2a\xb1\x38\x9e\xa7\x2c\x70\x5e\x3a\x2b\x52\xd6\x0d\x08\xee\x5e\x9e\x9e\x04\xce\x55\xb0\x58\x04\x69\x5a\x7b\xec\x90\x97\xa7\x2a\x08\xdf\x81\x33\x1c\xee\x1d\x1d\xed\xa9\x2b\xaa\x97\x10\x1e\x0e\x6b\x47\xa4\x66\x62\xd6\xa2\x6a\x79\x51\x48\x92\x88\x90\x5a\x55\x86\x15\xb1\x34\x1c\x02\x47\xab\xa4\xd7\xa6\xa1\x60\x0e\xd1\x9a\x27\x81\xf3\x60\xea\xa8\xb3\x3a\x88\xe8\x5e\xab\x68\xd8\x7e\x02\xa5\x0e\xe0\xaf\xf6\x48\xc2\xe6\xa1\x88\xbe\xb0\xd3\x68\xc1\x82\xbb\xd9\x52\x2c\x13\x16\x38\x11\xaf\x3d\x48\x1d\x72\x1d\xa6\x22\x70\x1e\xa4\xb5\xf0\x32\x76\x48\x1a\x38\x61\x6d\xc6\x6e\x6a\x9a\x56\x3a\x24\x4d\x65\x2d\x45\x78\x21\x73\x28\xea\xea\x90\xc5\x02\x12\x35\xb1\x75\xc8\x55\xe0\x84\xbc\xa6\x28\xe6\xd5\x15\xa4\x5d\xa9\xb1\x9f\xca\x62\x70\x50\x99\x4e\x21\x5e\xb2\x03\x0e\x19\x02\x34\x25\x94\x1f\x0e\x15\x30\x90\x34\x39\xe4\x56\x26\xa9\xcb\xc6\xdb\x5b\x48\x91\x81\xd4\x59\x11\x95\x23\x78\xc3\x88\x25\x95\x0a\x5e\x31\x30\xed\x08\xee\xa6\xf1\x4d\xe0\x92\x69\x7c\x1b\xf4\x56\xc6\xda\x23\x0d\xfe\x64\xc4\xe2\x42\x82\x67\x45\x50\x15\xff\xc0\x48\x69\xfb\x0e\xf6\x46\xe1\xf5\xf8\xac\x35\x58\x0c\xce\x5a\x83\xbd\x68\x45\x22\x41\xef\x56\x24\x16\xa5\x4b\x72\xd0\x1e\xc9\xcf\xfe\x83\x35\xe5\xb6\x42\x01\xe0\xdc\x21\x4e\xd3\xc1\x81\x25\x9d\x05\x9d\x12\xad\xd4\x2c\x0f\x29\x20\x8f\x8e\x04\x38\xb1\xd8\x6e\x1a\x67\x8c\xf8\xd6\x8d\xf9\x30\x58\xfc\x53\x21\x5a\xe7\xe1\xc5\x45\x52\x18\x17\xb6\xf6\x14\xc9\xde\x73\x1a\x92\xdb\x15\x48\xe0\xd5\x04\xd4\x7d\x18\xbe\x33\xea\xa6\x50\xad\x65\x47\x25\x6c\x39\x79\xa1\x21\x81\x10\xa7\x31\x12\x78\x30\x91\xb8\x07\x73\x95\x0d\x0f\x84\xa0\x3c\xf8\xb7\x35\x93\x5f\x02\x7e\x35\x30\x75\x56\x2e\x57\xe2\x25\x9f\xb6\x6a\x47\xd1\xb4\x76\x1b\x2f\x6b\xb3\x38\xb9\x64\xa2\x26\x62\xf0\xb4\x54\x8b\xc4\xc0\x91\x94\x47\xb7\xd4\xd2\xd7\x10\xf9\xd5\x9c\xf6\xd8\x21\x8c\xb8\x5d\xab\x7a\x42\x33\xc1\xda\x64\xc7\x68\x35\x24\x20\x8a\x14\x2d\x09\x8a\x32\x6d\x89\x02\xf9\xf0\x27\xe4\xa8\x06\x29\x04\x5f\x7f\x61\x49\x12\x4d\xe5\x01\x71\x99\xb2\x9a\xb2\xb6\xd0\x02\x74\x95\x03\xa9\x9e\x7e\x15\x2e\x18\x91\x4d\x9f\x45\x97\x58\xa2\x3d\xb9\x0a\xf9\x25\xab\x85\xbc\xc6\xbe\x46\xa9\x88\xf8\x65\x4d\x6f\xa3\x06\x8a\x5d\x4f\x25\x94\xf4\x0a\x1c\xd2\xc4\x7c\x7e\x5b\xbb\x60\xb5\x65\xca\xa6\xb2\x5f\x6a\xe0\x07\x4a\x02\x0c\xc1\x14\x5d\x15\xad\x9d\x30\x56\xbb\x12\xe2\x3a\xd8\xdb\x53\x15\xfc\x9d\xb6\x26\xf1\x62\xef\x72\x19\x4d\x59\xba\xf7\xff\xdb\xd3\x0a\xe0\xe9\x9e\xaa\xb8\xa9\xa7\x08\x80\x5c\xc4\x09\xab\x45\x7c\x16\xb7\xc0\x77\x0c\xf4\x45\xeb\x5c\x21\x92\x5f\x75\x68\x85\xda\x96\xf2\xf0\xa2\x10\xc7\x79\x7c\x24\x46\xe5\xa4\x31\x4e\x2a\x22\x4b\x50\x8b\x61\x43\x9c\xa6\x02\xad\xc1\xce\x6f\x4e\xe2\x0d\x30\x59\x86\x36\x23\xc1\xde\x7d\x33\x5a\x1d\x07\xef\x78\xb8\x60\x01\x23\xaa\xfa\x40\xac\x94\x09\xd2\x4e\x22\x39\x1c\x15\x59\x5a\x19\x70\x52\x79\x82\x4e\x11\x98\xe0\x48\xb0\x72\x91\xc2\x4f\x6b\x16\x27\xc7\xe1\xe4\xaa\xe4\xc4\x4b\xce\xc4\x96\xac\x83\xb0\x96\x1e\xc1\x15\xac\x3d\x86\xc9\xda\x52\x9b\x88\xb2\x4c\xbc\x5e\xcf\xad\x4d\xac\x4f\x35\xd5\x41\xd3\x66\x2d\x0e\x93\xdd\xe2\xf2\x16\x40\xec\x26\x88\x61\x58\x05\x82\x02\x8d\x29\xee\x76\x41\x4f\x67\xb5\xae\x3c\x60\x1b\x2a\x99\xc3\x3e\x75\x1f\xc5\x85\x9a\x8e\xca\x20\x28\x8a\xa8\x24\x78\xa3\x78\x8c\x8d\xbc\xa1\xe9\x60\x6c\x2c\x28\xb8\x1c\x3a\x95\xa1\xe1\x8d\x31\x1e\x70\x2b\x17\xe8\x60\x3f\x72\x0f\xc5\x23\xc0\x2d\x91\xb8\x45\x96\x60\x54\x9f\xfd\x24\x3c\x83\x70\x22\x9b\xc3\x0b\x27\x56\xbf\x52\x51\xaf\x1f\xa3\x48\xb9\x29\xf8\x95\x8a\xa6\x87\x2f\x12\x16\x7e\xda\x11\xcd\xe6\x2a\x6e\x34\x72\xed\x79\xb1\x2a\xa9\x97\xcf\x84\xad\x1e\x2d\x7b\x2e\xbf\x7e\xab\xd7\x9b\x3e\xa5\x60\xd1\x97\x5b\xdf\x81\x7a\x31\x1f\x2d\xd8\xf8\xd0\xcd\x32\xcf\x3b\x84\xef\xc1\x82\x05\x7c\x74\xcb\xc6\x87\x5e\x96\xc1\xc7\xaf\x4f\x18\xe2\xa3\xa9\x24\x29\x32\x03\x1e\xdc\xca\x1c\x5f\x54\x31\xbf\x73\x08\xdf\xf2\x8b\x52\x0a\xdf\xf5\x3a\x72\x77\xe5\xf7\xa5\x8c\x57\x9f\x17\xc5\xe7\xb9\x84\xf1\x45\xc2\xb8\x54\x30\xba\x07\x87\xf0\x3d\xb8\x94\x91\x17\x56\xe4\x05\x1b\x0f\x2e\x64\xe4\xb9\x8a\x3c\x38\x90\xb1\xe7\x6c\x3c\x38\x67\x41\xd3\x23\xd0\x9e\x73\xd3\xa0\x23\x23\x83\x97\x2d\x3b\x9c\xb2\x2c\xbb\x65\x87\x42\xa9\x51\xdf\x02\x33\x6e\xe7\x96\xac\x52\x5a\xaf\x37\x3d\xa5\x8a\x81\x04\xbd\xa9\xcc\x03\x76\x87\x56\xae\x63\x93\xcb\x64\xa2\xa2\x74\x1d\x79\x25\x0c\x07\xba\x76\x25\xc9\x8c\x7e\xfe\x40\x04\x96\xcd\xce\xb5\x35\x6a\x5a\x02\x05\xe2\x27\x7d\x71\x7b\xae\xcd\x31\x97\x64\x0e\xc2\x9d\x25\x65\x64\x6e\x59\x4a\xb5\x78\x7c\x83\x30\x26\x11\x5d\xb6\xce\x97\x29\x7b\x77\xfa\x64\x30\x9a\x6f\xdc\x01\x11\x13\x35\xd4\x1a\x22\xf3\xfc\x4e\x46\x80\x7e\xba\x2a\xb3\x5e\xa0\x94\x5b\x67\x25\xac\x75\x7e\xa3\xac\xa0\xc0\x6a\x34\x94\x93\xa4\x14\x5e\xc8\xf0\x16\x6d\x5e\xd5\x3e\xb2\xdc\xc9\xc9\x28\xdc\x26\x9f\xdf\xe0\xd6\xb3\x67\xc6\xc8\x4a\xb4\xde\x17\x9f\xc7\x38\xa6\x1e\x09\x69\x87\x70\x7a\x25\x29\xe6\xb3\x67\x04\xaa\x91\x53\xf2\x1d\x43\x9f\x04\xc2\xc4\x23\x1d\x0c\xd7\x21\x92\x98\x43\xae\xf7\xc4\xc3\x04\xa1\x48\x85\x8e\x89\x87\xb1\x9c\xd2\xfd\xc3\x48\xce\x88\x25\xdd\x75\xd5\x95\xf6\x5d\x6c\x13\x1b\xc9\x2e\xb5\xa6\xf1\x0d\x09\x2b\x62\x6f\x95\x23\x44\x6a\x2a\x8d\x49\x88\x77\x34\x52\x97\x97\x05\x52\xf3\x32\x26\x37\x64\x0e\x22\x3e\x63\x01\x2a\x5a\xd3\x81\x44\x4c\xb4\xa6\x58\xce\xea\x9e\x85\x92\x99\x23\x2d\x36\x80\x1c\xac\x11\x13\x24\x5a\x4c\xe5\x13\x2d\x96\xe7\xc4\x41\x44\xe3\x55\x22\xdb\x94\xfc\xfa\x99\x21\x0e\xe8\x0c\x2a\x26\x39\xdd\x75\x35\xd8\x65\x45\xf2\x34\xbc\x95\x19\x50\x4a\x7f\x93\x40\xf4\x10\xe1\xbc\x35\x54\xe9\xde\xc1\xf5\xbc\x59\x60\x34\x2d\x2e\xbc\xf0\x0a\x4e\xc8\xb9\xc5\x9e\xb5\x08\x43\xd9\xfe\xbc\x57\x22\xf9\x17\x13\x64\x67\xfa\xf5\x2b\x43\x21\xce\x32\xb0\xcd\xb7\xe2\x65\x2b\xb7\x2c\x6e\x0a\x07\x2c\xfa\x8d\xa1\x90\xb8\x25\xac\x34\xce\x0b\x36\xa6\xc9\xda\x6c\x37\xd3\x34\x4f\x50\x73\xd9\xc8\x40\xdb\xa5\xe9\x2b\xc6\xa0\x3a\xa4\xbf\x29\x88\x46\xa3\x91\x50\x62\xe0\x5c\x62\x5a\x4a\x2e\x95\x1e\x48\x52\x2b\x06\x5e\xe0\x06\x3a\x66\x07\x88\x23\x04\x80\x3e\xba\x26\x74\x59\x0a\x5d\x94\x42\xe7\x40\x49\x59\xeb\x5c\x9f\x13\xe9\xae\x4b\x0c\x08\xea\x2a\x7d\x09\x2a\xd3\xf5\xaa\xff\x66\x5b\xe5\x12\x6b\xb9\xa9\xf5\x97\x16\x4a\x98\xf9\x85\xf4\x00\xa5\x05\x29\xd1\x57\xcd\x56\xb9\xe2\x52\x39\x2d\x13\x07\x5c\xaf\x83\xbd\x8f\x75\x9d\x8c\x03\x1b\x54\x19\x4c\xba\xc2\xf6\xa5\x72\x8a\x09\xac\x39\x8d\xb7\xb1\xf0\x34\x17\xc4\x81\x89\x80\x50\x31\xb3\xc4\xb7\x05\xf0\x0a\x53\x7d\x97\x3d\xd4\xc2\x2f\xab\xbc\x89\xc2\x4d\xa6\xed\x67\x8b\xee\x53\x7d\x19\x6a\x99\x10\xd6\x54\xcc\x72\x60\x77\x7e\xd3\x9a\x42\x05\x37\xad\xe9\x2e\xa5\xb1\x99\x82\x6b\x06\xe7\x60\x36\xa6\xb4\x6f\x05\xdd\xfb\xd7\x59\xfa\x10\xa1\x41\xa0\xb4\xc8\xef\x7a\xab\x0c\xf4\xdd\x71\x13\x0d\x82\xb3\xe9\xd9\xb4\x29\xff\x64\xef\xf5\xa7\xfa\xc8\x94\x6e\x3b\xfc\x60\x8c\x06\x01\x3a\xcd\x6a\x18\x19\x25\xf4\xb5\xdf\x51\x8b\x8c\xcf\xa6\x0d\x3c\x80\xff\x68\x74\xd6\x38\xdb\x50\x58\xcf\xce\xd2\x87\x1f\x65\xfa\x2f\x7b\x64\x71\x0f\x56\x1a\xa9\x02\xa7\x1f\x43\xa9\xfc\xf3\xb3\x08\xdd\x8a\x6d\x6a\xf6\xe4\x8b\xa0\x23\xa3\x94\xdb\x1c\x0e\x9b\x47\x47\x0e\xd9\xcb\x91\x6e\xe6\x1d\xb8\x37\xd6\xba\xbb\x79\x26\x68\xcf\x5a\x86\x67\xcf\x9e\x3d\x6b\x8e\xde\x8f\xdf\xbf\x6f\x1e\xe7\x59\x4c\xd7\xaf\xe5\x28\xa7\xef\x91\x5d\x2f\xaf\xe2\xa8\x54\xc1\x5d\x7b\x65\xd7\x5e\xaa\xda\x2e\xf6\xe1\xc3\x70\x68\xa3\xef\xb9\x45\x39\x9d\x72\x36\xbd\xdb\x5f\xe5\x78\x00\x1a\x39\x9e\xef\x8b\x9a\xf2\x44\x3b\xcd\x5f\xd9\x95\xe5\x28\xf6\x57\x7b\xe3\x31\xb9\x84\x6e\x7c\xfe\x5c\x89\x6f\x5a\x27\x27\x27\x27\x90\x7c\x36\x0d\xf2\x3f\x67\xad\xb3\x69\x03\xe0\x9b\x7c\xa4\x32\x1f\x59\xcf\xb6\x91\xa3\x48\xb5\x93\x74\xec\x62\x51\x46\x20\xff\x6f\x55\x2f\xf3\x90\x8a\x3c\xa4\x9c\x65\x2d\x35\x4f\xb1\xe2\x75\x9c\x8e\x91\x5d\x71\x01\xb3\x7f\x6f\x20\xc9\xd0\x19\x42\x67\xcd\x81\x9c\xaa\x7b\x51\x21\xcb\x38\x17\x95\x1c\x09\xd8\x73\x93\x25\x9d\x8a\x16\xfb\xca\x26\x28\xc5\x59\xb6\xc8\xbf\x25\xb7\xb2\x54\xe7\x03\xa0\x09\x51\x1a\x83\xcf\x04\x30\x45\xfa\x22\xd6\x6d\x91\xa2\x19\xfa\x22\x46\x62\x3c\xf2\xc6\x0a\xc2\x72\x24\x4f\x0a\x77\x11\x55\xd1\xee\x18\xcc\x60\x77\xa9\x0e\xfb\xe3\x1d\xe0\xf0\x57\xf9\xe9\x30\xc2\x96\xeb\x1a\x64\xb9\x81\xd8\xf5\x14\x32\xa3\xf6\xd8\x9c\x57\x24\x0e\x97\x55\x38\x5c\xae\xe1\xd0\x96\x38\xc4\x14\x2d\x47\xfe\x38\xcb\x9c\x9a\x83\x1b\x97\x1a\x9f\xf5\xfa\xe3\x7b\xea\x5f\xc1\xf1\xcb\xd8\xc1\xdf\x97\x53\x61\xda\x19\xc3\x59\x68\xf7\x56\x18\x44\x3a\x63\x7c\x5f\xa9\x90\x3a\x1f\x9d\x15\x78\x56\x88\x1a\x28\xce\x32\xc7\xc1\x0d\x14\xc2\x2f\x39\x11\xb9\xf2\x52\xa9\x18\x90\xe4\x1b\x39\xfc\x92\x7c\x0d\x63\x9e\x9d\x2e\x59\xf6\x9e\x4d\xb3\xd3\xab\x65\xf6\x34\x89\xb2\x93\x50\x64\x27\x4b\x8e\xc9\xe0\x2c\xc5\x03\xa4\x25\x87\xf8\x2c\x45\xbf\x87\x3c\x7b\xca\x2e\xb2\x61\x98\x64\x8f\xaf\x93\x6c\x18\xde\x66\xbf\x2f\x79\xf6\xfb\x72\x9e\x3d\x5e\x5e\x66\x27\xec\x3a\x7b\x3d\x11\xd9\xab\xf8\x4b\x76\xc4\x26\xb2\x88\x5c\x93\xa4\xb3\x52\x9f\x67\x53\x1c\xa8\x1f\x49\xde\xd4\x17\x1e\x9c\xa5\x12\x93\x77\xa7\xd9\xb3\xe1\x69\x36\x3a\x7e\x32\x7c\x33\x1e\x9d\x1c\x8d\x4f\x71\x86\x46\x1f\xbf\x8d\xe5\x8f\xa2\x15\x9d\x15\xc6\xbf\xec\x01\x73\x79\x2c\xe8\xdd\xbb\xd3\xc0\x25\xcf\x86\xf2\xef\xf1\xd1\x69\xd0\xf4\x3b\x2e\x39\x3e\x39\x0d\x9a\x6d\xd7\x25\x4f\x8e\xcc\x07\xc4\xf4\x5c\x32\x3c\x32\x1f\x32\xa6\xe3\xbb\xe4\xcd\x91\xf9\x80\x98\x7d\xd7\x12\xe5\x7d\x5d\x9f\xfe\xf4\x46\x0f\x8b\xec\x4d\xcb\x74\x07\x8d\xfe\x85\xc7\x0f\xcf\x70\x36\x3a\xe3\x67\x02\xac\x68\x6a\xb6\x6d\x0f\x3a\x4b\xcf\xd2\x06\xde\x88\xff\x97\x8c\x7f\xb8\xb7\x66\x08\x24\xe3\x7e\xd9\x53\x2a\x87\xd1\x0c\x19\x35\x2f\x5a\xc5\xb1\x18\xc7\xbc\xa3\x8d\x23\xc4\x9a\x3d\x42\xae\x92\x76\x48\x3b\x07\x03\x9f\xb5\x1b\x22\x10\x60\x62\x02\x26\x07\x32\x04\xcc\xe9\xab\x5c\x77\x1c\x09\x4c\x72\x18\x5c\xc2\x28\x82\x49\x39\x18\xc9\x60\x61\xa7\x57\xaf\xeb\x6b\xf9\x3c\x43\x2c\x33\x60\x12\xae\x50\x34\xea\x48\xf6\xb6\x2d\xff\xf8\xf2\x4f\x57\xfe\xe9\xc9\x3f\xfd\x31\xb4\x97\xd3\x98\x24\x94\x11\x24\x68\x24\x49\x41\xbd\xfe\xc1\xc6\x49\x9e\x8b\xf3\x13\x9d\xa4\x0e\x7c\xe4\xc9\x3f\xfe\x18\xe7\x8c\x10\xb0\x23\x49\x15\x3b\x42\x76\x51\x52\x5a\x40\x66\x71\xed\x48\x86\x87\xc6\x44\xfb\x14\x59\xbf\x21\x89\x66\x28\x17\xaa\x1c\x0b\xed\xde\x30\x17\x26\xba\xda\x9f\xf7\x5a\x77\x45\x34\x79\xe0\xb9\xc6\x6b\x02\x4a\x9a\x11\xde\xf3\x5c\xf7\x61\xcf\x6d\x44\xb2\x27\xf6\x65\xab\x0f\xe4\x1f\xcf\x1d\x6b\x26\xf5\x5b\xc9\xbd\x98\x44\x4a\x25\xfc\x0c\x23\x07\x64\x57\x3b\x38\xa2\xbb\x6e\x15\x01\x28\x8c\x97\x84\xf6\x6c\x24\x49\x88\xec\xdb\xd6\x8b\x93\xd7\xe7\xfb\x3d\xd7\xc3\x76\xe4\xdb\xa7\x4f\xce\x25\x38\x7c\x07\xfd\x34\x1a\xab\x4a\xc0\x1d\x11\xdd\x55\xed\x17\xf6\x99\x95\x4c\xc8\x8c\x3a\x4e\x03\xb6\x8a\x6b\x3a\x33\x12\xa1\xa9\xf6\x95\x11\xd1\xf7\x00\x9d\xe4\x47\x47\x9c\x9b\xae\x66\xd9\x68\xac\x4f\x1b\x91\xed\x03\x36\x86\xa3\x05\x41\x09\x45\x33\x9d\x79\xce\x50\x4c\x18\x86\x22\x78\xe4\x82\x49\xbe\x7b\x88\x42\x3a\x2b\x2e\xab\x66\xf9\xec\x49\x70\x2e\x9a\xaa\xd7\xa1\x01\x96\x73\x2a\xe3\x60\x9a\xcc\x64\x61\x90\x42\xd9\x25\x1b\xb9\x8b\x6b\x32\x6d\x14\xfe\xae\xc9\x6f\xa3\x78\x3c\x40\xc9\xc0\xee\x0f\x2f\xb0\x80\x6b\x6f\x47\x46\x27\x25\xa5\x31\x99\xe4\x72\x65\xb4\xa4\xf2\x00\x37\x47\x33\x46\x52\x5c\xaf\xcf\xd8\x28\x1d\xa3\x25\x99\xb4\xce\x43\x32\x21\xa9\x32\x47\x31\xfe\x95\xe4\x4e\xb2\x15\xf2\x0e\xa4\x94\xdc\x2e\xd1\xeb\xe6\x94\xb8\x87\xb3\xef\xb4\x79\x86\xf3\xc3\xd2\x21\xf5\xfc\x7a\x7d\xd7\x35\x02\x30\x7d\x33\x29\x8f\x40\xc5\x91\x0c\xd9\x49\xfa\x7d\x01\x3d\xeb\xd6\xfc\x5e\xc1\xe9\xcc\x88\xf4\x74\x96\xe2\x76\xb8\xb8\x29\x2e\x0e\x6b\x95\x57\x93\x3b\x25\xc7\x63\x7c\x20\x02\x73\xd2\x31\x00\x24\x26\x83\x72\x10\x94\xdf\x83\xdc\x3f\x4e\x94\xbe\x19\xd6\xeb\x08\x25\xfa\x5b\xf9\x0a\x10\x87\xb2\xbd\x48\x34\xa8\xe7\x63\x92\x64\x99\xe7\xef\x52\x2a\xb2\x4c\xf2\x0a\x18\x14\x3c\x0a\x67\x3f\x39\x96\xc4\x42\x1d\x13\x90\x4a\x91\x59\xb1\xd7\xc2\xbe\xa1\x04\xe3\xc0\x41\x15\xab\xed\xb5\xb5\xa3\xcc\xc9\x8c\x2c\xc8\x17\xc5\x4c\x9d\xcb\x9f\x99\xf5\x6e\x83\x76\x2f\x94\x7f\x65\xd9\x04\xe4\x03\x73\x75\xca\xa3\x94\x7e\x31\x2e\xc5\x29\xa5\xe7\xf5\xba\xe3\xc8\xb8\xc1\x14\xdd\x59\x5e\xd4\xdc\x15\x0e\x36\x2d\x17\xbe\xa8\xf3\x5d\x44\xbf\x58\x82\x9b\xeb\x84\xc1\xe0\xa1\x2f\x18\x93\x0b\xf4\x05\x83\x1f\xd8\x4b\x34\x13\x32\x26\x40\xa9\x8c\x02\x12\xf5\x25\x48\xd0\x39\x1e\x6c\x15\x5a\xed\x68\x9f\xf0\xb2\x45\x66\x99\xe8\x86\x29\x86\xd0\xf6\x39\xa6\x4f\xea\x6b\xfe\x88\x34\x89\x70\x1f\x45\x87\x16\x14\xf0\x44\x1f\x53\xc9\x4b\xde\x2a\x7f\x20\xc5\x89\x57\x1d\x90\xe5\x50\x9a\xef\x22\x16\x13\x21\xf9\x23\x09\x69\x14\x8d\x25\x57\x24\xb7\x36\x65\x9a\x1a\x37\xc0\xc3\x53\x79\xdd\x90\xb8\x41\x3d\xf7\xa1\x72\xff\xb5\xe9\xb2\x8c\x40\x42\x3a\x89\x13\x46\x63\xa2\xb9\xc0\x24\xcb\xe2\xc3\x44\x59\xbb\xc6\x84\x53\x81\xf1\xce\x04\x31\xc2\xb3\x0c\x26\x11\x0e\xce\x07\x40\x6c\x83\x18\xcd\x41\x90\x87\x5b\xe7\x11\x1e\x88\xb2\x37\x27\x2d\xa3\x0c\x52\x34\x5f\x4f\x9b\x1b\x47\x7e\x32\x7d\x63\x50\xe7\x03\x34\xa3\xc2\x4c\x0e\xb4\xa0\x17\x9a\x57\x99\xc9\x6a\xf0\x00\x9d\x0b\xb9\xd0\xc1\xa3\xd0\x2c\xdf\x0b\xea\x75\xa4\x6f\xc2\x8a\x38\xf2\xf5\x87\x73\x72\xfd\xec\xc8\xd3\x24\x5e\xc0\x94\x7b\xaa\x7d\xba\xa3\x19\xc6\x18\x07\xb3\x52\x03\x1a\x0b\x60\xed\x83\x44\xb6\x4d\x0e\x54\x48\x97\x68\x5e\x90\x87\x0a\x9d\xdb\x0d\xa3\xca\x6b\x30\xb3\x09\x22\x09\xc2\xce\x5f\x96\x00\x0b\xfa\x37\xcc\x70\xac\xb6\xf5\x25\x1a\x09\x25\x99\xd3\x86\x57\x44\xb4\xa6\xe1\x6d\x96\x09\x30\xb0\x21\x02\x94\x85\x64\x22\xec\xa5\x44\x68\xcd\x20\x88\x99\xcf\x23\x15\x1a\x57\x21\xc8\xea\xf5\x2a\x1c\x19\x06\x67\x05\x41\x58\x31\x8c\x38\xd8\xde\x6d\x30\x31\x8d\x8b\xb1\x29\xc8\xca\x30\x38\xae\xce\x49\x48\xee\xa6\xb1\x90\x56\x91\x25\xbd\x33\xde\xb1\x77\xe1\xe2\xa0\x5e\x87\x13\x13\xcf\x32\x14\x53\x2e\xcf\x5d\x9a\x48\xa3\x08\x31\x5c\x16\x38\x47\x33\xa4\xdd\xc7\x5c\x32\x61\x39\xb0\x7c\x15\x2e\x58\x9a\x73\x38\x85\xf7\x9e\x8a\x5c\x72\x55\x6b\x9f\x28\x96\x91\xa1\xf2\xcf\x02\x5c\xc4\xda\xab\x29\x85\xd7\x3a\x2f\x47\x7b\x05\xcd\x4e\x00\x3d\xd7\xb2\xe2\x05\x67\x96\x39\xfe\xcb\x4d\x47\x74\xbb\x2e\xc9\xc5\xf9\x74\x69\xbc\xbe\x85\x32\x72\x4e\x39\x94\xa0\x4c\xfe\xc8\xe5\xb1\xcc\x7d\xca\xc5\x44\x0b\xf4\x80\xc4\xbd\x16\x68\x29\x67\xac\x2d\x02\x4b\x5b\xe1\x74\x8a\x3c\xa5\x9d\x9d\x16\xb2\x45\x83\x4b\x5a\x0c\xca\x27\x71\xaf\x3b\x4d\x0f\xaf\xb6\x0e\x39\x3d\x41\xca\x71\x67\xed\x3a\x89\xbf\x44\x53\x36\xad\x45\x29\x5c\x7a\x47\xbc\x16\xd6\x12\x36\x89\x2f\x79\xf4\x8d\x4d\x6b\x6f\x9f\x3e\x91\x2c\x58\x2d\x4e\x6a\x2f\x4e\x5e\xd7\x66\x40\x3f\xcd\x85\x31\x5c\xac\x8b\x64\xa9\xaf\xb7\xc2\xf9\x3c\xad\x49\xf0\x35\x11\xd7\xfe\x4e\xd5\xcc\xc3\xa4\x76\x73\x15\x4d\xae\x4c\x05\x09\x9b\x47\xe1\xc5\x9c\xd5\xc2\x49\x12\xa7\x69\x2d\x9c\xcf\x6b\x17\x49\x7c\x93\xb2\x24\xad\x85\x7c\x5a\xfb\xc2\x92\x34\x8a\x79\xda\xaa\xbd\x8a\xb9\xa9\x7f\x4f\x56\x2e\x97\x8d\xc6\x20\xad\x85\x09\xab\x4d\xa3\x74\x12\x2f\x93\xf0\x92\x4d\xa1\xe8\x4d\x24\x81\xb1\x5a\xc2\x16\xf1\x17\xd9\x26\x5e\x0b\x79\x6d\x79\x3d\x89\x17\x11\xbf\xac\x2d\xc2\xbf\xe3\x44\x22\xc0\xc2\x94\xb5\x6a\x6f\xe0\xb7\x96\xb0\x19\x4b\x24\xc6\x3f\x76\x55\xfd\x77\xda\x94\x78\x6c\x5c\x52\x97\xd6\x69\x79\x73\x91\x44\xa1\x61\x09\x82\x9d\x9a\x31\x9a\x53\x16\xdb\x86\xf9\xb5\xdd\xbd\xac\x48\xc1\xff\x96\xe2\x61\xb2\x0f\x85\x1c\x41\x85\x29\xc2\x92\x82\xc8\xee\x35\x6e\x9b\xd8\x94\xd4\x2c\xdd\x80\x45\xf8\xd5\xb8\x73\x6f\xfd\x60\x23\x17\x11\x6f\x2e\xc2\xaf\x7b\xce\xa6\xd7\x80\x4f\xa2\xda\xfe\xa8\xf4\x6e\x86\x65\x5e\x5d\x32\xd9\x06\xf3\xdf\x81\xfc\x13\xb0\x60\x0a\xce\x73\x4e\xd7\x9a\x22\x91\xdd\xde\x94\x88\xff\x3f\xd2\x14\x99\x76\xc8\x4a\x4d\x29\xce\xf0\x4f\x6c\xc5\x15\xe5\xe4\x12\xee\x27\x73\x96\x38\x41\x42\x9f\x1b\x04\x85\x2f\x92\x3f\x96\x64\x88\xdf\x27\x81\xb4\x3b\x30\xc8\x41\x22\xea\x3d\x8a\x8a\x87\x1e\x1a\x8d\x08\x8b\x51\x34\x2e\x59\xb2\xcb\x88\x11\x1b\x23\xae\xfd\xed\x8f\xa2\xb1\xe5\x66\x0b\x8c\x69\x05\x1d\x19\x4f\x0a\x9f\x97\x61\x22\x58\x02\x0f\x3d\x29\xf3\x64\x6d\xd5\xa3\x2c\x3f\xb4\xfe\xa9\x51\xb2\x72\xd4\x7e\x04\x31\xf9\xee\x64\xbf\x0d\xf5\xc6\x52\x24\xfa\x1b\xae\x9c\xa8\xda\xff\xb2\xcc\x05\x2f\xb5\xba\x3e\x19\x8c\xa8\xde\x13\x65\x20\xa6\xca\x0e\x43\xee\x8c\xda\x96\x44\x46\x87\x54\xef\x97\x2e\x49\xa9\xda\x2c\xe5\xf7\x92\x9a\x1d\x53\x86\xe6\xd4\x6c\x9b\x32\x34\xa1\xa5\xbd\x33\xcb\x5c\xad\x0d\x6f\x0e\xa1\x95\xca\x06\xf9\x96\x01\x97\xc8\xaf\xb5\xa1\xdf\x5b\x41\x04\xce\x9d\x4a\x8e\xc4\xb8\x5e\xd7\x96\xf6\x23\x31\xb6\xb6\x92\xe2\xb5\xa3\x5d\x4f\xfb\x50\x7d\x6b\x8d\x52\x02\x7b\xd1\xe8\xad\x18\x25\x63\x25\x66\xe3\x45\x59\xd8\xc4\x9f\xce\x63\x50\x56\xd0\x59\xc0\x4f\x63\x1e\x02\x37\x92\xbb\xae\x79\x52\x44\xee\x58\x22\x37\x86\x2c\x5a\x9a\xd2\xc6\xa4\xe1\xb1\xf6\xc3\x79\xa3\xc7\x3a\x0f\x97\xf0\x9d\x3e\xec\xc9\x63\xbf\xf1\xde\x19\xde\xa6\xb4\x11\x36\xfa\x0f\xe3\x92\x31\x25\x6d\x44\x8d\xf6\xc3\xa4\xe1\xf9\x0f\x79\x9e\x55\x84\xf4\x4e\xbf\xc7\x65\x0e\x05\x93\xfc\xe9\x99\xf3\x8b\xe5\xc5\xc5\xbc\xe4\xef\xe8\x95\xd8\xe6\x9d\xef\x8d\x65\x8e\xf8\xb7\x58\x73\xbb\xd9\xf4\x1e\x82\x95\x5e\x12\x2f\xf9\x14\x35\xbd\x87\x0c\x07\x56\x84\x7d\x88\x79\x21\xb6\x6a\xd3\x5b\xde\x4c\x96\x62\xa2\x8d\x88\xe5\xf4\x73\x1a\x4e\x71\xa7\xe6\xc2\x96\xde\x64\x32\xbe\xe9\x60\xc2\x1b\x2f\xd1\x7f\xff\x37\x62\x7b\x3d\x17\xb4\xb3\x05\x84\xd9\x83\x9e\x0b\x7a\xd9\xab\x17\x02\x39\x1f\x1d\xe2\x04\x0e\x26\xf0\xfd\x11\x7c\xe7\x80\xf6\xf3\x47\x87\xc4\xda\xdf\xc8\x47\xfd\x0d\x1a\xc7\x32\xcb\xc7\x8f\xd5\x9a\xcb\x9a\x57\x00\x3f\xa7\x20\xed\x79\x29\x50\xcc\x48\x6e\xc7\x73\x24\xe8\x9e\xbe\xab\x51\xb7\x3c\x7b\x97\x96\x50\xfc\xa5\x4d\x51\x28\x12\x20\x6a\xd5\xe2\x08\x86\x77\x0a\x5d\x33\x33\xbb\x6a\xb9\x7a\x59\x42\x11\xe2\x23\x9e\xbf\x63\x37\x06\xb1\x45\xa3\x28\x7f\x24\xe7\xf9\xc8\x69\x82\x6a\xbb\x24\x34\x3d\xf7\x61\x32\xf2\xc6\x8d\x1b\x94\x8c\xfc\x82\x82\x48\x06\x29\x1a\xb8\x81\xd3\x80\xc7\x5a\x46\xee\x78\x10\x05\x4d\xeb\x75\xb0\xa7\x16\x92\x09\x89\x8a\xa7\x53\xb4\xad\x38\x02\x5f\xd5\xf3\x98\x33\xf5\x04\xdd\x05\x70\x5f\x92\x91\x1b\xb0\xe2\x98\x11\x48\xbe\x06\x5b\xc7\x8e\x66\x52\x04\x48\xa2\xc5\x52\xe0\x6e\x16\x02\x79\x5a\x23\xda\x30\x25\x07\x36\x88\x24\x06\x26\x4c\x65\x7b\xde\x7e\xb3\x67\xa4\xd7\x7d\xd8\xb4\x67\x9f\xe5\xd8\xf6\x5b\xcc\x0d\x48\xbc\xe7\x75\x2d\x08\xcf\x45\x6e\x03\xb0\xbb\xbb\xbe\x61\x18\xe2\x03\x87\x44\xd7\x3c\xf1\xa3\xdd\xfe\xae\xca\xb8\x6e\x6e\xf2\xbf\x81\xac\xfc\xac\x99\x9d\x35\xf0\x00\x0d\x02\x74\x36\x7d\x88\x47\xad\xda\x18\x64\xe3\x0d\x7c\x16\xc0\x0f\x1a\x04\xe6\xeb\xac\x25\xb3\xa8\x5b\xbd\x77\x50\x5a\x15\x7e\x23\x4b\x8f\x9a\x8d\xf1\x60\xe4\x36\x0f\x48\x6b\xfc\x10\x7f\x50\x20\xcb\x91\xc3\xaa\xc8\xf7\x55\x91\x47\x10\x79\xba\x99\xf0\xfc\x87\xe1\x9e\x28\x44\x8b\x39\xfe\x59\xac\x39\x87\x26\x60\x0e\xac\xb4\x52\x8d\x4b\x13\x39\x60\x83\x98\xde\x2d\xd2\x80\x95\x49\x20\x99\x06\x4a\xd9\x20\x25\x43\x48\x03\xf2\xb6\x0a\x42\x6d\x69\x2c\x09\xda\x00\x2c\xde\x59\x10\xb7\x4a\xc4\x93\x61\x50\xaf\x30\x72\x76\x79\x70\x05\x2a\x41\x29\x4d\x47\xde\x78\xd0\xf4\x02\x8f\xc4\xf4\xee\x36\x70\xc9\x34\xb8\x41\xe9\xe8\x96\x8d\xf1\x43\x4e\xae\x20\xf0\x45\x05\x16\x10\xb8\x54\x81\x14\x02\x17\x3a\x45\x86\xfe\x16\x08\xa8\x32\xe8\x57\xe1\x87\x7c\x05\x95\xbe\xfb\x81\x4a\xdf\x0b\x94\x8e\xfc\x31\xe1\x98\x0c\x55\xa0\x0d\x81\x1b\x15\xe8\x40\x60\xaa\x02\x5d\x08\x5c\xa9\x40\x0f\x02\x0b\x15\xe8\x43\x20\x55\x81\x7d\x19\x58\x29\x6d\x16\x4a\x63\xd9\xa3\xab\x60\xc3\xc5\x6d\x5c\xaf\x23\x67\x96\xc4\x0b\x27\xe2\xb5\x38\xcb\x1c\x11\xc3\x17\x2e\x3b\x45\xac\x50\xd2\x2d\xad\x82\xb2\x93\xc1\xa7\x02\xbc\xec\x11\x99\xe7\x37\x36\x8b\x13\x86\x04\x1e\x70\xfa\xa7\x1a\xfe\x00\x21\xf8\x86\xa7\x93\xca\xc3\xd4\xe4\xa5\x30\xe1\xda\x5f\x02\x24\xc0\x17\x26\x1c\x07\x77\x76\xa6\xc0\x35\x8a\xda\xee\x6a\x85\x3e\x09\x14\xb7\x64\x83\x30\x81\x4f\x11\x63\x4c\x60\x6e\xe0\xd6\x22\xa5\x51\x19\x7e\xdc\x1a\xca\x28\x0d\x39\x01\x86\xfe\x8d\x40\x31\x26\x30\x0d\xeb\x75\x78\x62\x47\x6f\x90\xf0\x00\x42\xb2\x29\x43\xc3\xc4\xd2\x0d\x7e\x5f\x22\xe3\xe6\x18\xaf\x39\x80\x42\x4d\x9b\x38\xc4\x69\x39\xb9\x49\x3f\x32\x1e\x8a\x06\x6e\xc0\xf1\x43\x6b\x47\xfd\xb3\x04\x2f\x3f\x8f\xd7\xf2\x9e\x11\xc6\x27\x4e\x93\x15\xde\x71\xfc\x87\x48\x18\x23\xf7\xdc\xbd\x11\x61\x86\x34\xc3\x09\xd4\x40\x00\x9f\x35\xad\x28\x7d\x3c\x13\x2c\x01\xe9\x55\x33\xef\x6d\x52\x1e\x0f\xda\x10\xcd\xc6\x3d\x50\x6c\x47\xd8\x1f\x44\xb5\x07\xa9\xc2\xb0\xb6\x2c\x7e\xa5\x89\x71\x6f\xd4\x48\x24\x73\xfb\x09\x09\x52\x1c\x1a\xe0\xe5\x4b\x74\xcd\x92\x28\x9e\x92\x9a\x7a\x2c\x04\x97\x8f\x11\xf9\x71\xaf\x38\x4d\xe4\x05\x55\x01\x52\x53\x00\x70\xeb\x27\x14\x97\xc3\xe9\xb4\x19\xf1\x2f\x2c\x11\x6c\xda\xbc\x0e\x93\x70\x51\xa1\xbd\x1c\x81\x34\x24\x21\x09\x8d\x30\x79\xa6\xad\xbf\x3f\x0b\xb9\xdc\xd7\x05\x6a\x7c\xd0\xe0\x81\xec\x04\xe3\x76\xdd\xf2\x13\xf0\x4c\x1d\xee\x0b\x1f\x0c\x54\xac\x51\xc0\x90\xfe\x2d\x90\x50\x44\x10\x93\x54\x87\xf4\x04\xde\x29\x2d\x4a\x14\x69\x9d\xa8\x28\xcb\x22\x92\xd6\xeb\xe0\x94\x06\xdc\x6d\x19\x47\x2b\x8d\xf4\x61\x82\x49\x58\xaf\x83\xe3\x2c\xe7\x08\x6c\x3e\x86\xc5\x37\x6e\x84\x32\x43\x5c\x28\xfd\xc0\xa6\xcc\xca\x9b\x72\x2c\xf3\x44\xf5\xfa\xda\xce\xcc\x48\x98\x65\x29\xc6\xab\xcf\xa2\x35\xe3\xf4\x8d\xe5\xa0\x99\x7c\x16\x46\x5c\x5b\xe1\x00\xf5\xb3\x00\x61\xad\xda\x22\xff\x29\xe8\x07\x81\x3c\xe2\x84\xd3\xa9\x83\xc9\x2f\x10\x6c\x7a\xc4\x49\x97\x17\x22\x09\x27\xc2\x76\xbb\xf3\x47\x69\xb1\x54\xaf\x82\x06\xaa\x58\x31\x72\xed\xaf\xcd\x6b\x7d\x66\x4a\x73\xaf\xa3\x4d\xc4\x1b\x48\x34\x93\x43\x77\x20\x7f\xf0\x1e\x4a\x9a\x6b\x65\x24\x5e\xa6\x14\x0e\x74\xae\xb5\x3c\x0d\x2b\x4f\x33\xc1\x18\x67\x99\xe5\x93\xf8\x2f\x4b\x4b\xdb\xba\x9e\x57\x2f\xe7\x0c\x6c\x76\x5d\x69\x65\x07\x85\x06\x27\x28\x78\x63\xf3\x78\x62\xfe\x90\x80\x76\xb2\xb3\xe2\xe6\x79\x3b\x2d\x20\xb7\x94\x79\x4e\x8d\xa2\xc9\x47\x87\xac\x65\x7b\x27\x26\x95\x39\x47\x1f\xc7\xea\x39\xa3\x8f\xe5\xc3\xfd\x3c\xe4\x97\x68\x63\x61\xbe\x50\x07\x7a\x52\x5e\x9a\xb6\x5d\x6c\x4d\xc4\x35\xb0\xbd\xb8\x62\x35\x09\x63\x19\x5e\x32\x6d\x93\xb0\x4c\xc0\x4d\x75\xab\xf6\x6e\xb3\x30\xb2\xcd\x1e\x4c\xb9\x74\x4d\x54\xb3\xa5\x1f\xed\xea\x03\x2b\x46\x19\xde\x17\x46\xbe\x62\xcd\x30\x56\xf7\x2c\x1c\xb6\x99\x9c\x65\x3d\xdf\xef\xef\xbb\xfb\xcc\xf2\x02\x2b\x4a\x5e\x08\x10\x7b\x20\x1a\x02\x3f\xb0\xc8\x3a\xe7\x6b\x2a\xca\xb6\x4a\xe0\xa6\x3e\x20\x6e\x32\x1e\x94\x75\xfb\x2c\xfe\xd9\x7a\x23\xea\x3e\xb0\xc6\xbb\xcc\x1a\xd8\x22\x1a\xa2\xac\xe7\x9b\xb8\x39\x90\xb9\x64\xc4\x88\x91\x9c\x8e\x89\x5b\x7a\x7d\x28\xe4\x1b\xae\x63\xca\x94\x9d\x0d\xde\x69\x07\x4f\x32\x07\xac\xc3\x00\xa1\x98\x7e\x36\x7e\x64\xf0\xa1\xd2\xeb\x8e\x71\xa5\x27\x52\x45\x09\x4b\x1e\x6a\x48\x48\xbf\x31\x14\x2b\xe1\xbb\x4b\x62\x4b\x17\x76\x67\xc3\x65\x65\xb8\xe9\x8e\x87\x58\xce\xe4\xc2\xb2\xa2\xaa\x4e\x03\x0f\x59\xe1\xba\xaa\xaa\x24\xd7\xd6\x6b\x29\x05\x42\x78\xa5\xbc\x5b\x5e\x5e\xde\x6f\x55\x7d\xc3\xd8\xa7\x0f\x9b\x7e\x34\x9f\x3d\xbb\xbf\x98\x16\x9a\x94\x4a\xc6\x1c\x39\x97\x97\xb2\x42\xc7\x40\x75\x8a\xd8\x8a\xe8\x67\xcf\x64\x35\x8e\x05\xcb\x4a\xd8\x4c\xd1\x8e\x43\x94\x73\x48\xd9\x30\xdb\x75\x88\x8e\x7d\xf6\xac\xf0\x06\xf3\xc1\xf8\xeb\x3c\x5a\xcb\xa5\x1d\x86\x3c\x2b\x5c\x78\x5e\x16\x9f\xb2\xe2\xdc\x32\x59\x62\x9d\x07\x14\x52\x85\x6b\x4f\xd5\xa8\x22\xac\xb1\x2e\x5c\x7d\xea\x66\xab\x08\xf0\xb3\xa1\xfb\xc1\xf4\x87\x6e\xa6\x2a\xf8\x5d\x2f\x33\x7e\xe1\x65\x46\x03\x53\x0d\x5e\x2b\x08\x53\x54\x8c\xa2\x7b\xbc\x7b\xbe\x43\xce\x1f\xe0\xa4\xe6\x8f\xd8\x12\xca\x41\x77\x16\x12\xba\x3f\x54\x4f\xe6\x11\x7d\xd5\xa8\x3f\x1c\xf2\xa7\x32\xb2\xfd\x63\xd3\x3f\xe8\x82\x8d\x69\xfb\x21\x52\x1e\xfc\x74\x4d\x47\x0e\x19\x39\x47\x47\xca\xad\xcf\x91\xf2\x8a\x23\x98\xf1\x0a\x03\x72\xbe\x23\xe3\xf1\x45\x86\x0e\x54\x3d\x47\xb9\x15\xb9\x2c\x9b\x0f\xc2\x51\xbc\xc5\xb1\x0a\x1b\x08\xad\xf7\xbd\x61\x11\x9a\x65\xa2\x75\x1e\xdb\x26\xa2\x5b\xb3\xbe\x64\x3c\x62\x5c\x18\x7b\xee\x23\x89\xdc\x91\x33\x26\xb7\xda\x23\xeb\x66\xf5\x02\x74\xc8\x6f\x90\xf1\x48\xfe\x07\xa8\x67\x68\x09\x4b\xca\xc1\x0c\x58\xf1\x31\xbb\x2e\xde\x91\xfd\x71\xa4\x7b\x44\xfe\xb6\x65\x9f\x1c\xe9\x5e\xd1\x14\x23\x77\x98\xa3\x83\x90\x23\xf7\x89\x63\x22\x3b\xa6\x73\x8e\x1c\xf2\x7b\xfe\x7d\xe4\x90\x67\x06\xf7\x23\x85\x3d\xe0\x5f\x21\x1d\x2a\x34\xf7\x0b\xd7\x45\x0b\x78\x0d\x73\x61\xdc\x36\x68\x41\xac\xf2\x27\x69\x84\xb2\x0b\xed\x50\x52\x87\x3d\x8d\xc8\x22\x1f\x2f\x59\x1e\xc6\x0b\xd0\x58\xc8\x22\x0b\x67\x4c\x2e\x99\xea\x93\xa5\xea\x93\xa1\x31\x9d\xdd\xf5\xa0\x5b\x52\x59\x75\x9a\x9a\xaa\xb5\xb0\x17\xaa\xce\xc5\xc0\xa9\xaa\xda\x84\x3d\xed\xde\x29\xcd\xab\x96\xe5\x8b\xaa\x53\x59\x24\x75\xc6\xe4\x42\x57\x3d\xe7\x64\xa2\x6a\x3f\x31\x56\xbd\xb2\xf6\x59\x9c\xa0\x77\xc8\x39\xd9\xe2\x68\xe1\xbf\xff\xdb\x78\x56\xc8\xf9\x5e\x04\x0a\x4e\x38\x27\x97\x27\x27\xdb\xc8\xe5\xb6\xc2\x76\xd9\x13\x98\x07\x6e\x59\xcc\x6d\x25\x9f\x68\x8f\xc6\x9b\xb4\xd8\x73\x1f\x6e\x42\xb7\x21\xcb\xb2\xdd\x6d\x65\xbf\x5f\xf8\xc4\x21\xbd\x2d\xa5\x59\xfb\xfb\xa5\x4f\x1c\xd2\xdf\x56\xbc\xf3\x03\xc5\x4f\x1c\xb2\xbf\xad\x7c\xf7\x47\xca\x9f\x38\xe4\x60\x1b\x80\x5e\x35\x00\x98\xea\xc5\x30\x10\x67\x91\x9a\x09\x6f\xc5\x7a\x3d\x35\xe1\x4e\x1c\xf2\xbb\xa4\x87\xf0\x0d\x81\x0f\x26\x00\xa1\x67\x98\xcc\x39\x55\x83\xf8\x68\x6e\x24\xa2\x87\xf4\xe0\xd1\x9c\x37\xa8\x73\xe2\xe0\x25\x43\x73\x4e\x38\xb3\x38\xbc\x59\x4e\x5a\xce\x81\xb4\xc8\xbe\x46\x8e\xdb\x72\x1a\x70\x43\x1e\x27\x08\x60\x6e\x01\x78\x05\x00\x67\x5c\x4d\xf9\x2b\xb3\xda\x8a\x33\x5b\xbe\xe4\xbe\x69\x5f\x5d\xdf\x62\xce\x1e\x5f\x5c\x68\x0f\x2d\xdf\xec\xe8\x57\xe1\x82\x39\x0a\xd2\x35\xa7\x97\xc5\x89\xa9\xc0\x76\x5a\x52\x13\x58\x5d\x73\x79\xac\xa0\xff\x14\xe4\x9a\xb7\x8c\xc3\x83\x0a\xc1\x4d\x42\x59\x96\x81\xc9\x54\x44\x9f\x0a\xfd\xc6\x36\xbc\x08\x94\x88\xd7\x33\xa4\x5d\xa7\xc5\xb4\x00\xa2\xdf\x2c\x00\x46\x27\xc2\x59\xe6\x18\xf7\x05\x0e\x09\xc1\x10\x6f\x88\xc4\x28\x1e\xe3\x81\xfc\x6b\x31\x45\x09\x0e\x20\xbe\xc4\x88\xa9\x3b\x5d\x14\x66\xd9\xa6\x4b\x1c\x53\x21\x52\xd7\x16\xe4\x93\x00\x8d\xba\x15\xb4\x48\x1e\x9d\x2a\xce\x88\xea\x86\x5d\x9d\x6c\x64\xbe\x69\x34\x9b\x55\x2b\x79\x19\xd5\xa1\x35\xd1\xad\xed\x41\x59\xa6\xa2\x84\x2a\xe1\xb6\x04\x89\xab\xf3\xa5\x37\x91\xdc\x72\x22\xda\x63\x9d\x87\x28\xb1\xef\x22\x9a\xeb\x97\x13\x98\x08\x0a\x9e\x9a\xef\x26\x61\xca\xd4\x85\x5c\x10\xd3\x3f\x84\xe9\xa4\x3d\xcf\x57\x1a\xdf\x3b\x90\x41\x5d\xd0\x95\x72\xd8\xc9\x86\x2d\x28\x83\x68\xdb\x59\xf4\x5a\x09\x62\x0a\xe9\xf2\xec\xe9\xb1\x52\x0e\xbd\x87\xd8\x39\x7a\xac\x63\xe7\x80\x1b\x41\x3b\xbd\xdd\x63\x5d\x3b\x83\x9c\x26\x45\x7a\x33\xc2\x7b\xfb\xbd\x4e\x39\x0b\x5c\x31\x96\xf3\xf4\xdc\xce\x7e\x9e\x49\x9f\x2f\x03\xe5\x79\xab\x99\x18\x5b\x5a\x3e\x88\x83\x73\x14\xab\xf1\x64\x7c\xfa\x7a\x46\x37\x74\xc1\xe4\x50\xe5\xe7\x38\xc4\xe8\x2b\x04\x4a\x9a\x25\x62\x21\x4f\x78\x59\xb6\x65\xb8\x65\xac\xbe\x33\xb1\x44\xf7\x83\x84\x07\x9c\x9b\xf1\x65\xa5\x31\x13\x34\x41\x96\xfb\xfb\x86\x47\x5c\xe2\xe1\xa6\x57\x39\x3a\x6b\x99\xed\x63\x86\x9e\x22\x3a\xf0\xa0\xdd\x68\x6f\x80\xd1\x73\xe0\x3e\x20\x0d\x6f\xa3\x94\xea\xef\xfb\x0a\x59\x27\x1a\x8d\x85\xd6\x60\x46\xb8\xd1\x5f\x83\x66\x7c\x39\xfe\x38\x40\x64\x9f\x50\x00\x68\xd3\xdb\x84\x0b\x13\x47\x7f\xc9\x39\xf8\xa3\xe0\x1b\xeb\xcd\x55\x53\x54\xe8\xe1\xb3\xe4\x50\x44\x34\xa8\x9c\xae\x4d\xc1\x91\x68\x20\x7b\x78\xdd\xa0\x67\x36\xc0\xd2\x12\x95\xd9\xd7\xc7\x40\xaf\x91\x2d\x15\xf4\x58\x07\xe0\x93\x1e\xeb\xac\x95\x34\xeb\x6f\x4b\x49\x8f\xb5\x55\x49\x8f\xb5\x71\xb3\x78\x7f\x4d\xe7\x35\xb2\x35\x71\xbf\xb3\x64\x58\x1c\x8a\x98\x96\x56\x07\xcb\x32\xa4\x6f\x48\xa3\xf4\x9d\x98\x20\x3c\xd8\x94\xe4\x04\x6b\x51\xda\x7d\x0e\xfd\x6c\x1c\x4d\xee\x6c\x75\x5b\x76\x1d\xa7\x42\xd3\x70\xa1\x56\xe8\x2c\x89\x17\xd5\x8f\xe3\xaf\xdf\x91\xc1\x2d\x60\x49\xb7\x02\x76\x22\x66\x53\xd9\xc1\x67\x81\xee\x44\x0c\x72\x18\x22\x41\x07\x6c\x95\x0b\x79\x6c\xe1\x0c\xc6\xad\xab\xe5\x22\xe4\xd1\x37\x86\x76\x45\x49\x70\x53\xf9\x60\x8f\x41\xf5\x55\x7c\x53\xf5\x4a\x82\xda\x9c\x92\x78\xa1\xcc\x89\x99\x2a\x20\xe2\xff\xe1\x96\x41\x8b\xa0\x6d\x22\xfe\x9f\x6c\x99\x88\xef\x6b\x97\x88\x4b\xad\xba\x64\xa2\x2a\xeb\x50\xb9\xe7\x57\xc4\x74\xac\xf4\x5e\x46\x6c\xac\x85\x62\x50\x52\x57\xfc\x58\x54\xec\xc4\xca\xaf\x75\x61\x8b\xaf\x0a\xa8\xdb\x84\xaa\x0b\x24\x7a\x01\xb7\xc1\xea\xbe\xd6\xa8\xe9\xad\xef\xce\x59\xb6\xcb\xad\x3e\xac\xd7\xd1\x3a\x89\x47\x6a\x7b\x5d\xa3\xfd\x0a\xfb\x62\xe1\xfd\xca\xad\x5b\x67\xeb\x5b\x3d\x52\x60\xe4\xb2\x86\x09\x12\xf6\x9d\xb4\x6e\x87\xba\xbf\xfa\xbf\xde\x90\x43\xbb\x21\x25\xe4\x61\xa7\x2c\xa1\x6e\xe7\x2d\x9a\x21\x6e\x18\xe3\x1b\xc6\x3e\xc6\xc7\xa9\xdd\x16\x12\xd3\x0b\xf5\x80\xd1\x27\x51\xbc\xe2\xb7\xbb\x8b\xd6\xa7\x7f\x64\x07\xe2\xb5\x66\x22\x68\x5c\x42\x93\x2c\x73\x10\x76\xe4\x31\x7d\xa0\x01\xa8\x9b\xa6\x88\x70\x1c\x98\xee\xd2\xd7\x84\x32\x0e\x4a\x63\xa5\x80\xe0\xe5\x65\x74\x86\xd8\x2e\xa4\xe0\xc8\x28\xd3\xcc\x93\x70\x51\x39\x56\x24\xf9\xd1\xd1\x4a\xfe\x27\x46\x4b\xe2\x6e\x8d\x17\xe2\x76\x90\x7c\x77\xee\xc1\x6b\x60\xfc\x90\x7e\x67\x9c\x4b\xad\x7e\x9d\x54\xad\xb8\x32\xdd\x92\xf9\x20\x5e\x73\xe1\xa6\x07\xe1\x35\x79\x1b\x54\xe5\xa4\xff\x1e\x2c\x3d\x42\x16\xb0\x3f\xb7\x5c\xf0\x5c\x5b\x8c\xfb\x3c\xe4\x97\xf4\x23\x9c\x5e\xf4\x8d\xc5\x5f\x56\x40\x12\x3e\xfa\x3b\x44\x2c\xc2\xaf\xf4\x54\x7d\x45\x9c\x0e\xe1\xeb\x3a\x4c\xd2\x88\x5f\x3e\x9d\x87\x97\x69\x45\x3d\xf0\x7e\xa6\xa6\x4f\xaa\xb6\x92\x16\x86\xf1\xe1\xb4\x71\x29\xce\x70\xa1\xf2\xb5\x69\x00\xa7\x9d\xd1\xe6\x2f\xed\x33\xac\xed\x5d\xee\x96\x3c\x12\x01\x27\xd7\x49\x14\x27\x91\xb8\x0d\x5e\x8c\xf8\x78\x55\x6c\xaa\xca\xeb\x6b\xb5\x34\xad\x65\x0a\x35\x45\xfe\xb9\xc2\x44\xac\x10\x03\x55\x3b\x6c\x1e\xef\x36\x7a\x67\x49\xa3\x81\x81\x52\xf3\x51\x32\x6e\xc9\x9a\xc7\x88\x59\x81\xe2\xb1\x88\x35\xfa\x6e\x73\xc2\xf0\xbe\x58\x69\xd7\x57\xbd\xa4\xe6\xe4\xff\x8b\xec\x37\x30\xdf\xff\x29\xeb\xbd\x06\xe2\x07\xd8\xee\xb5\x12\xff\x11\xcb\x8d\xff\x0f\xb0\xdb\xf8\x7f\x82\xd5\xc6\x3f\xc8\x66\x37\xe9\x4f\x72\xd8\x3f\xcc\x5f\x2b\xc8\xc0\x5b\xff\x30\x67\xad\xcb\x48\xae\xfa\x3f\xe1\xa9\xcd\x75\x32\xfd\x45\x28\xc6\x0a\x5e\x88\xa0\x95\x4a\x88\x7a\xc1\x8c\x72\xef\xff\xc5\xab\x4f\xf9\xd3\x2a\x0c\xd4\x59\x55\x1a\x34\x19\x3e\x8d\xe0\x0b\x62\x2d\x41\xd8\x58\x73\x73\xda\xf6\xe0\xbe\x5a\xe1\xe5\x84\x34\xc8\xeb\xd6\xba\x2f\x05\x0a\x12\x81\x20\xc7\x03\xdc\x22\x06\x2c\xf7\x34\xac\x5d\x28\x06\xcc\xf2\x5c\x6b\x14\x69\x98\xe5\xb9\xb6\xa4\x61\x53\xc2\x36\x45\x78\xa5\xd1\x95\x9c\xe8\x16\xe1\x0c\x30\xa9\xe5\x5d\xd1\xb0\xac\x2f\x4e\x5e\xab\xb7\x6a\xe9\xba\xa5\x4d\x35\xd1\xc8\xf5\x1c\x05\x05\x33\x14\x46\x38\x15\x83\xd2\xe6\xb8\x94\x27\x9e\xc0\xea\xa5\x1a\xd7\xfd\xa3\x7d\x56\x1d\x1c\x9a\x88\xc1\x67\xc4\x89\x18\x94\x5c\x5e\x8c\x4e\xc7\xb6\xeb\x86\xd1\xc7\xb1\x13\xdc\x97\xe1\xa3\x83\x83\xa1\x7a\xad\xc3\x7e\x74\x3a\x6f\x18\x1e\x68\xfc\x54\x17\x21\x6c\x27\x22\x1c\x6c\xe9\xa0\x46\xcf\xdd\x58\x42\x0f\xe5\xc4\x2e\x17\x2f\xb4\x88\x3e\x3a\x44\xb6\xc6\xf9\xe8\x60\x1c\x58\xed\xfa\x4e\xab\xb6\xb5\x49\xf3\xfa\xe9\xf5\xda\x1c\xdc\x3a\x34\xfa\xde\xdf\x9c\x0f\xd0\xde\xc3\x9a\xf6\x92\x7c\x1e\x35\x9c\xda\xc3\x3d\xac\x94\x04\x18\xd5\x39\x1d\x22\xa8\xe3\xec\x68\x60\x2f\x95\xb2\x26\x1c\x5d\x73\xdd\x49\xab\xed\x03\x03\x7f\x29\x26\x4e\x60\x02\x70\xc9\xf6\x31\xe6\x0c\x80\x7d\xd4\xe2\x52\x4e\x9d\x91\xd3\x60\x8d\x7f\x20\x67\xfc\x0f\xb9\x59\x1e\xda\xaf\x1f\x6a\x45\x4d\x3d\x25\xf4\x0b\x88\xe0\x39\x35\xc8\x5f\x08\x8c\xa8\x68\xfc\x63\xe4\xe0\xf1\x3f\xaa\x24\x97\xbc\x91\x34\x9c\xca\x8e\x73\x1a\x91\x99\xd9\xbf\x9f\xbc\x7e\xb5\xed\x45\xdf\xb2\x61\xc1\xfa\x84\x58\xce\xe7\x1a\xc6\xfa\xd2\x28\x43\x31\x13\x5e\x9f\x19\x1d\xc6\x1d\x6c\x50\x74\xa6\xd3\x69\x0d\x3c\xbc\x1e\x29\x0f\xaf\x06\xcb\xda\xe8\xd9\xf0\x74\xfc\xd1\x8c\xf0\x92\x47\x5f\x2b\xe0\x5b\xaf\xa9\x94\xa7\xe5\x1e\xd0\x56\x59\x52\x47\x6d\x43\xce\x26\xcc\x4d\x90\x91\x0a\x4b\x1b\x36\xcb\x5c\x2d\xd3\x05\x57\x92\x31\x07\xe6\x6e\x03\xd4\x5d\x04\x36\xa6\x7a\x16\x11\xd5\x36\x1d\x9c\x11\xd5\x6e\x1d\xd4\xe6\xb3\xb0\x03\x05\xd6\x6e\x44\x94\x2d\x96\x8e\x52\x01\x45\xb2\xe4\x04\xa0\x8f\x99\x62\x4f\x5f\xb2\xf0\xba\xfc\x7a\xa2\xfd\x24\xa7\x35\x61\x14\xda\xe6\x8e\xbb\xea\x0c\x1d\xf2\xb2\x56\x80\xd9\xf0\xcd\x06\x9b\x6f\xfe\x64\xf3\x54\x5f\x38\x3c\xdb\x9e\x76\x6b\x58\xea\xfc\x5a\xfd\x47\xb1\xd0\x45\x4c\xcd\x36\xdf\x00\x1e\xdb\x00\xae\x66\xa2\x68\xf1\x99\x56\xc1\x37\xea\x1c\x30\x53\x26\x2c\x9a\x23\x54\x96\x4d\xe2\xbd\xb6\x3e\x9d\xaa\xa8\xf6\x43\x04\xef\x01\x95\xd9\x2f\x55\x27\x04\xe9\x0b\x18\x8b\x69\x78\x9b\xbe\xe0\xea\x51\xb8\xcd\xc1\x78\xc2\xb6\xb2\x2f\xc5\xc8\x50\xfd\x9b\x56\x70\xec\x9b\xfd\x0a\x63\x03\xe7\x82\x75\x55\x15\x3d\x6b\xc2\xe9\x14\xf5\x25\xf6\x02\x83\xa1\x9e\xdd\xfd\xb4\xf8\xac\xaa\xcd\x28\xbb\x80\x3f\x3c\x59\xd1\xcf\x54\x01\x4d\x78\xc1\xd7\xa7\xa5\x65\x00\xb1\x39\x3f\x0c\xfc\xcf\xe5\x7e\x62\x30\xa7\xd8\xc6\xec\xa9\x00\x5f\x0d\x20\x9f\x1e\x92\x95\xa0\x29\xd7\x23\x45\xf5\x80\xfd\xc4\xee\xbd\xab\x75\xae\x02\xf3\x5e\xa5\x7a\x95\xcd\x66\x20\x0d\x01\xb1\xbd\x90\x59\x71\x10\xb1\xb3\x06\x12\x09\xc5\x0b\xac\x77\x0b\x61\xb9\xda\x65\xee\x20\x58\x0c\x44\x60\x5e\xcf\x1c\x38\x4a\x1f\x34\x3f\xf1\x21\x41\xf9\xda\xe3\x2e\xe0\x6d\x18\xe8\x72\x90\x1b\xe2\x0a\x70\xbf\x91\x0f\x1e\x6b\x26\x30\x70\x38\x48\xf2\xb1\x9b\xda\x3c\xe3\xbf\xd1\x2f\xea\xd6\xa4\xa5\x65\xf3\xcd\x7b\xa8\x05\x7e\xd0\xbf\x67\x62\xb1\xa6\xd8\x98\xb7\xff\x01\x6e\xb9\xf5\x09\xb3\x4f\x72\x0a\xcd\x2c\xeb\x5b\x63\xba\x75\x4c\x36\x1f\x3a\x1c\x6c\xf6\xf9\x83\x7e\x96\xf5\x8b\x71\x82\xee\x2f\x1f\x50\xd5\x5b\x2f\x79\xe5\x0f\xfa\x83\x24\x48\x9a\x7d\x33\x51\x8d\x8e\xc5\xe6\xb2\xb4\xec\x3e\x50\xa5\x04\x46\x5d\x81\x36\xab\xd3\xd4\x23\xc5\xfa\xb6\xcb\x7a\x57\xec\x7b\x5d\x2f\xd9\x6e\xaa\x7f\x53\xca\x8d\xfc\x62\x29\x18\xcd\xbf\x52\xba\xe4\x4a\x38\x21\xd9\x6b\x9a\x7f\xa5\x74\xc2\x55\xfe\x9c\xf7\xa6\xd7\x6b\x0a\xd9\x57\x90\x23\xe7\x99\xca\xf2\x3d\x23\xdd\x33\x8f\xdc\x14\x1b\xf1\x3d\x17\xa2\x3f\x3a\xf6\x7a\xdd\xc6\xc1\x37\xa1\x29\x69\xd5\x6b\x96\xcc\xf6\x92\x8d\x58\x6e\x12\x55\x92\x08\x28\xf7\x16\x30\x40\xe1\x45\x8a\x18\x3e\xf4\x7a\xca\x2b\x09\x62\x0f\x69\x2f\xf7\x32\xb4\x6b\x55\x5c\xaf\x0b\x50\x71\x36\xb5\x1b\xcb\x35\xd5\x44\xaa\x77\x3f\x6d\xb5\xbd\xeb\x1a\x7f\xdb\x9a\x11\x94\xe3\x14\x29\xdd\x9a\x58\x9e\x28\xea\x75\xb4\x2b\xb4\x24\xeb\x5c\xa9\x93\xbe\xe0\x6f\x92\xf8\x32\x61\x69\x3a\xb0\x14\xba\x59\x33\x56\xc5\x3c\xb2\xeb\x19\x0a\xb5\x5e\x20\xcb\x50\x75\x82\xb2\x0d\xdb\x7e\x12\xad\x28\x01\xa6\xfa\xd6\x39\x75\x29\x26\x5b\xe5\xfd\x05\xeb\xec\x1a\x99\x3f\x2c\xc1\xad\x05\x4c\x57\xa2\x8a\xe2\xe5\x0e\xf4\x08\xd3\x5d\x67\x0e\xca\xc8\xf4\x3c\xf4\x87\x85\x61\xce\x9f\xaf\x1d\x21\xb4\x5b\x55\x80\x2a\xbe\x2d\xf0\x5a\x9d\x79\x02\xd9\xf5\x88\xf1\x0c\x5b\xab\x7c\x21\x55\x21\x66\x76\xc5\x97\x02\x45\xf9\x70\x9b\x67\xb8\xb4\x8e\x6f\x01\x9e\xe9\xc1\xb2\x1b\x59\x58\x5d\x16\xb2\xaf\xab\x30\x7d\x3c\x8f\x2e\x39\x9b\x3e\x8f\x97\xc9\xc6\xaa\xda\x6e\x09\x86\x18\x65\x03\x75\xf9\x63\x1d\x61\x02\x97\xac\x77\x2e\x6e\x32\xfc\xa0\xe7\x52\xea\x1a\xea\x7c\x74\x72\xba\x8d\xa5\xb6\x8a\xfd\x5a\xa2\x4c\x8a\x01\x72\x4b\x95\xe9\x09\xfc\x9d\x32\xdd\x52\x19\x8d\xc2\xcb\xf2\x3c\xd9\xde\x4c\x7b\x0d\xea\xb2\xef\x36\xa9\xcf\x0f\x19\xcc\x15\xc5\xe9\x73\xa1\xbf\x4f\x9f\xe8\x6f\xa3\x24\xb3\xf5\xac\x51\x7e\x9c\x76\x65\xca\xbc\x2a\xdd\x00\x54\x97\x79\x12\x2b\xed\x44\xc1\xa6\xb5\x77\x3c\xfa\xc2\x92\x34\x9c\xd7\x4e\xa3\x05\xcb\x41\xc9\x15\x9a\xd2\x13\xa5\x24\x99\xd6\xc2\xc9\x84\xa5\x69\x9c\xac\x2b\xb6\xbf\x4b\x99\xf2\x59\x60\x4c\xd6\x1d\x92\x72\x9c\xb3\xb7\xa9\xd2\x8d\x97\x5f\xf7\x82\x80\x2c\x06\x86\x43\x5e\x30\x6c\x0e\x2b\x00\x01\x3e\xee\x05\x20\x73\x14\xe5\x1f\xab\xf2\xb2\x3b\x4a\xca\xf9\x32\x62\xbb\xe9\x3d\xb2\xe6\xc5\xcf\x9a\xe0\x4b\xc8\x7b\x5b\x34\x45\x73\x6e\x6d\x83\x27\x63\xda\x60\x57\xd3\x1a\x6b\xb1\x16\x6f\xc6\x6f\x28\xd6\xac\x70\xbe\x68\x4e\xae\xa2\x99\x60\x53\xd9\x46\x3b\xbc\xde\x41\x3f\xf1\x48\x41\x2a\x9a\xa9\x02\xb2\x66\xe4\x23\x0f\xa1\x51\xcc\x4b\x2e\x06\xe4\x1e\x1a\xe7\x52\xd0\xa2\x7e\xbc\xbe\x4f\x16\x49\x5a\x1a\x72\xb7\x92\x9b\xe5\xad\x51\x37\x22\x88\x51\x70\xe1\x84\x5b\xe7\xa1\xe1\x57\xf2\xf7\x97\xc1\x5d\x5a\xa8\x0c\x5c\xe5\xc7\xce\x26\x58\xba\xbe\xca\xdc\xc3\x63\xc8\x4c\x84\x91\x64\xca\xb3\x92\x7a\x6e\x76\xb3\x74\xee\x2e\xa5\x22\x51\x6b\xd6\x2e\x38\x7d\x52\xa5\x8d\x76\xbb\x71\x93\x08\x56\xe4\x31\x9d\x49\xee\x09\xec\x73\x0b\xfe\x2d\x1a\xf1\x31\xf8\x55\x2b\x8c\x07\xbe\xd8\xae\xf0\x42\xb8\x4d\x07\x0e\xb2\x70\xcd\xc2\x28\xcb\x32\xc7\x31\x8e\xbb\x4d\xdf\xe6\x15\x6b\xf1\xbd\x42\x33\x81\x67\x9e\xd5\x8b\xca\x70\x5f\xe2\xf9\x70\x53\x12\x8d\x92\x31\x85\x22\x89\x5d\xc4\xe0\x55\xe0\x73\x69\xb5\xc7\xb9\x88\xe3\x39\x0b\xb9\xc5\xcd\x0c\x42\xe5\xde\x89\x53\x41\x84\x41\x31\xd0\x18\xef\x7a\x24\x94\x29\x1b\x19\x30\x11\x14\xec\xb9\x77\x0c\x3b\x06\x9d\x94\x52\x36\x88\x0b\x86\x3e\x70\x0b\x87\xec\xdc\x6a\xa6\x20\x88\x37\x52\xfc\xa0\x4f\x12\xfd\xc2\xa9\xd2\xeb\x35\x0d\x55\xfe\xac\xfa\xe0\xc5\x6a\x39\x8a\xa0\x9d\x82\xa0\x68\xad\x8c\x06\xb8\x5c\x2d\xb6\xe8\x09\x16\x2f\x36\x69\x56\x44\x67\x1a\xb1\x71\xce\x19\xe9\xa8\x96\x51\x05\xdc\xc9\x75\x08\x12\x3c\x48\xb4\xf4\x81\x70\x38\x11\x2d\x24\xf7\x61\x3f\x71\xb4\xed\x64\x7e\x5e\xce\x06\x2f\xa7\x6c\x49\x69\x89\xf8\xdd\xf5\xb5\x79\xf5\x26\x77\x0d\x29\xb2\x6c\x97\x0f\x44\x80\xb6\xc0\xa3\xbc\xf0\x83\x39\x1c\x0e\x87\xd9\x70\x98\x1d\x1d\x65\xd3\xe9\x74\xba\x77\x59\xe9\x7e\x49\x7b\x8f\x02\xa5\xfa\x2d\x40\x31\x34\xd1\xd2\xc9\xd8\xbe\xed\x14\x79\xa0\x8c\xd6\x8d\xdf\xce\x96\xe9\x0c\x85\xa0\xf7\xc1\xd4\x01\x8e\x6e\xc1\x73\x87\x6a\x74\xca\x21\x98\x2b\xe6\xe8\x08\xfb\x11\xa6\xad\xd7\xfd\xaa\x1a\x3b\xeb\x88\x8f\x8b\xc1\x8c\xf0\x20\xca\x8b\x04\x96\x4b\xd2\x07\xd3\xbd\x28\x47\x24\x4c\xc5\x53\x78\xe3\xa9\x52\x3b\xa2\xa2\x0a\xf7\x90\x0d\x1c\xf5\x2c\x94\x13\x38\xb2\xbc\x63\x55\xca\xf1\x80\x23\x81\x03\x6b\xac\x1e\xa4\x7b\x11\x5c\x27\x2f\xd6\xaf\x6e\x73\xdf\x70\xca\x81\x8a\xba\x87\x1d\xca\x85\x38\xe2\x46\x87\x85\x8f\xa9\x3a\x96\x8d\x9c\x73\xa7\x21\x43\x9a\x74\x2a\xbb\xb2\xfc\x8c\x70\xaf\x69\x82\xfd\x76\x24\xba\x2f\x7f\x2b\x8d\x97\xc9\x84\x99\xa5\x12\x6f\x26\xe1\x86\x93\x39\x8d\xfc\xb9\x2c\x13\x0b\xad\xd3\xec\xc2\x16\x53\x0b\x2d\x91\x35\x76\x9e\x03\x3b\x34\xca\x6f\x7e\xc6\x41\x29\xbe\x54\xa6\x15\xa5\x6a\xe2\x66\xd9\x5b\x86\x5b\x82\xa5\x02\x04\x21\x6a\xea\x38\x81\x93\x8a\x90\x4f\x43\xc9\x28\x3a\x63\x1b\xe4\x7d\x55\x97\xea\x6b\x15\x10\xac\x16\xc1\x9b\x57\x3f\xd6\x2c\xc8\x5a\xae\x00\xa2\xb6\x35\x50\x25\xbe\x65\xff\x76\x63\xb6\x55\xb8\x59\x4b\x75\xdb\x60\x6c\xef\x57\x3a\xb6\x21\x41\xf6\xe3\xaf\xe1\x24\xdf\xc3\xb6\x16\x85\xa7\x2f\x44\xac\x9e\x12\xb2\x9e\xf9\x2a\x8e\xed\x36\x4c\xd0\x56\xd8\x88\xa5\xa3\xb1\x45\xb9\x86\x55\x09\xa9\x6c\xdb\x5a\x4a\xbe\x6d\x36\x1a\x09\x8e\xcd\x23\xbb\xc9\x18\x6f\x29\x23\x37\xd6\x42\x22\xab\x9f\xd6\x8d\xc1\xf5\x70\x45\x03\xaa\x31\x5a\x83\xb1\xbd\x78\x2e\x75\x19\x38\xc3\xe1\xd0\x81\x37\x1e\x9a\xde\x2e\xa5\x28\xca\xbd\xfa\x54\xa3\x49\x42\x8c\x07\x91\x92\xe7\x55\x97\x58\xc3\xc9\x2e\xf0\x6f\x56\xf6\xd3\xf5\xfc\x4c\x81\x9f\x6e\xf6\x86\xdd\xa2\x32\xc4\xd9\x98\x37\xb9\xf0\xe2\x3f\x9e\x4b\x98\x94\x78\x30\xc9\xe1\x45\xf6\x84\xe2\xf9\x69\x72\x73\x3e\x58\x66\xcc\x1b\x53\xa5\xf4\x9a\xaf\xd3\xb0\x67\x4e\x54\xf2\x79\xed\xb4\xc0\xa1\x4f\xc3\xf9\xa5\xf4\x48\x70\xd5\x14\xde\x0e\x53\xcd\xe8\xfb\x01\x63\x70\xc7\xb9\xde\x6b\xa3\x04\x5e\x0c\xa3\x95\x48\x36\x9c\x6c\x6b\x3d\xa4\x0a\x94\x8d\x62\xbc\x8e\x89\xc1\xa2\x5e\x87\x47\x20\x1d\xf5\x54\xd2\xb6\x1e\x54\x14\x93\x6d\x3c\x7f\xe5\xac\x17\xad\xe8\xa9\xca\xb2\xbb\xdc\x94\x58\xdc\x9f\x79\x65\x91\x4f\xf5\x34\xf3\x56\x1e\x68\x9d\x68\x0e\x90\x9e\xbc\xce\xb9\x55\xde\xc1\x59\xf6\xd4\x5a\x02\x98\xb0\x32\x41\x2f\x5e\x81\x2e\x91\x75\x88\xc1\xc1\x56\x98\x68\x23\x33\x7d\xc9\xca\x03\x63\x81\xae\xd7\x7f\xa6\xd6\xf5\xed\xf1\x7f\xa7\x23\xd6\x5e\xd5\xde\xdc\xe4\xb6\x74\x49\x91\xb6\xd1\x2f\x16\xf6\x47\xeb\x9d\xb3\x56\xdd\x46\x0f\xfd\x20\x3a\xd0\x57\x70\xbf\x57\xd1\x3f\xef\x18\x62\xd6\xc3\xdf\xc5\x1d\x6a\x71\x6d\x0a\x65\x01\xc8\x2c\x4a\xe0\xe1\xd6\xf5\x0b\x82\xb5\xde\x36\x25\xd7\xca\xbc\x2f\xa1\x50\x5d\xe6\x26\x47\x76\xed\x7a\xac\x60\x8a\x0d\xbd\x35\x99\x0c\xf7\x91\xbf\x1e\x5a\x0e\x8e\x58\xbd\xae\x54\x5e\xcc\xfa\x32\x29\x39\x3f\xf7\x1d\xee\x27\xf7\x83\x0a\x7e\x0f\xde\x33\xc4\xd7\x3a\x0c\x07\x6c\xc0\x47\x4c\xdd\xa6\x8c\x03\x5e\x6a\xc3\x30\xe2\x55\xb2\xcf\x1c\x58\x19\xa7\x61\x54\x05\x7c\x23\x4f\x51\xd9\x46\x52\xa9\xf2\x75\xd6\xf1\x7b\xd5\x43\xfe\xef\x22\x60\x58\xca\x4a\x14\x20\xb1\x84\xc4\x0f\xf3\x78\xa5\x02\xff\x63\x5c\x5e\x09\xaa\xc5\xe7\x95\xd1\x2b\x6f\xc2\xef\xab\xd3\x16\x11\xdf\x48\x51\xfb\x73\xbf\xcc\xeb\x79\x63\x0c\xbd\x93\xe0\x2d\x25\x73\x76\xcd\x1a\xb9\xef\xb2\x7c\x9b\xa8\x6d\x80\xf9\x31\xde\xf1\xe6\x5e\x18\x3f\xc4\x3b\xca\x73\xff\x7d\xfc\x5c\xa9\x8a\x12\x23\xf8\x9d\x82\x9b\x8d\xfc\x3e\x7b\xb7\xde\xbb\xeb\xf5\xfd\x34\xa6\x3f\x89\xda\xbf\x87\xd5\xbf\xd5\x0b\xff\x69\x1b\xee\x43\xea\xa7\x4a\xfc\x1f\xeb\xcc\xef\x32\xda\xa5\x3a\xf2\xed\x74\xcb\x72\xae\x5a\xb2\xdf\x5f\xe8\xb3\xe5\x7c\xbe\x9e\x84\xf3\xa5\xbe\xc1\x89\x5b\xcb\xbd\x60\xc8\x37\x60\xd8\x2c\x79\x55\x62\x25\x03\x9d\x2f\xca\x0a\xee\xf9\xec\xac\x35\xd8\xc2\x9a\xff\x14\xec\xad\xec\x79\x75\x05\x55\xb4\xec\x3e\xf0\x92\xb4\x7d\x1f\xf8\x36\xda\x54\x66\xff\xcb\xdd\x61\x1d\x00\x2a\xda\x52\x91\x9a\xa3\xb2\x8d\x10\xfe\xe0\x01\x21\xa7\x29\x86\xa7\xa8\x1a\xcf\xad\x47\x84\xf5\xc2\x95\x23\x76\x4f\xe9\x52\xe1\x8a\xd1\xf8\xce\xf9\x62\xbd\xd1\x5b\x4e\x18\x26\xdb\x77\x58\xeb\xcd\x4d\xdb\x62\xae\x4b\x30\x24\xef\xfb\x57\x25\x7b\x9d\x0f\xde\x06\x33\x5b\x02\x60\x33\xd6\x1b\x90\x51\x45\x01\xfa\x4f\xb6\x3e\xd2\x95\xfc\xf4\x8f\xd6\xbf\xc9\x5b\xfd\x6f\x76\x4e\x35\xbb\xbf\x89\x4e\x55\x37\x55\x9e\x40\x2a\x5a\xf2\xcb\x66\x87\x6d\x3d\x85\xfc\x3c\x62\xeb\x8c\xf1\xff\x62\xef\x0d\x23\xbe\x1d\x45\x83\x4a\x55\xcf\x99\xb4\x8a\x7e\xcb\x5b\xf0\xc7\x46\xaf\x95\xab\xdb\xec\xb3\x1f\x43\x47\xdd\x8e\xa4\x6f\x86\x15\x7d\xe4\x5c\x83\x2d\x1d\x6b\x18\x5e\x2d\xe7\xd2\xe0\xc1\x94\xc7\x02\xb9\xfa\x94\x6c\x1e\xf5\x59\x67\xa2\x8d\x5b\x11\xef\x90\x0d\xf8\xc0\xb9\x5e\x38\x81\xf3\x66\xe8\x04\x7c\xe0\x84\xf2\xfb\xf1\xd0\x59\x91\xa5\x00\x05\x69\x72\x57\x2d\xb1\x0f\x8c\x28\x1e\x89\xab\x2c\x15\x19\x9f\x66\xc9\x14\xef\x11\x2d\xba\x0f\x36\xaf\xab\xd8\x03\xcf\xcd\x1d\xa0\x36\xc0\xe3\xfb\x0d\x92\x91\xee\x9e\xe7\xe2\x81\x23\xae\x9c\x00\xdc\xc0\x0f\x9c\x54\x38\x81\x7a\x84\xd6\xe1\x53\x27\x68\xab\xcf\x64\xea\x04\x32\x17\x5e\xc1\xb3\x00\x60\xfc\x96\xdf\xd0\x43\xb0\x5a\x3d\x40\x25\xab\x37\xf7\x0b\x55\x83\xa5\x30\x40\x40\x95\xba\x0c\x48\x46\x7d\x17\x98\xca\x94\x03\x9c\x68\x93\xf0\x0b\x4e\x8d\x36\x96\xf5\x6a\xe3\xc6\x2d\xd2\x67\x01\x97\x7d\xd6\xf3\x42\xb6\x6e\x5a\x83\x26\x0f\xa3\x35\xf7\x95\xda\x7d\xaf\x4e\x02\x4f\xbe\xb9\x1f\x5f\x93\x5f\xb9\x13\x65\x55\x4e\xc8\x6f\xf8\x9a\x7b\x71\x4b\x67\xdd\x38\x16\x07\xbd\x64\xfb\x8a\xf9\xd8\x2e\xd4\xd9\x77\xdd\x87\x6c\xcf\xeb\xf4\xdc\x83\x7e\x91\xe7\xab\x9d\x47\x25\x3e\x64\x7b\x32\xb3\xf5\xa4\x99\x9d\x67\x8b\x28\x20\x4c\xe1\x89\x16\xd9\x3d\xaf\x39\x3d\xe1\x48\xb9\xb3\x79\xac\xbe\xe5\xe7\x27\x1d\xed\x60\x32\x54\x9f\x57\x0e\x26\xa7\xea\x73\xea\x60\xf2\x44\x7d\xde\x38\x98\xbc\x55\x9f\x43\x07\x93\x37\xea\xf3\x0f\x07\x93\x57\xea\xf3\xd6\x76\x7c\xf9\xf7\x0f\xe0\xb6\x66\x80\x00\x3e\xe0\x47\x6c\x1c\xbc\x0a\x5f\x29\x8c\x5f\x70\xfa\x37\x2f\x59\xbc\x82\x2b\x1e\x15\x5b\x44\xbc\x34\xd9\x94\x43\x29\x4c\x9e\xaa\x08\x50\x71\x74\x30\xf9\xa6\x82\x72\x70\x1d\x4c\x9e\xeb\xdc\xda\xe3\x25\xf9\x4d\x85\x41\xa5\xc5\xc1\xe4\x1d\xb7\x14\x33\xc9\x67\x4e\xef\xd2\x34\xe8\x74\x48\x1a\x74\xba\x64\x21\xff\x5c\x05\xbe\x4f\xa6\x81\xdf\x23\xc3\xc0\xf3\x56\xe4\x7d\xd5\xdc\xfc\xd3\x6a\x3f\x72\x0f\x19\x6e\x22\x76\xe8\xe2\x2c\x6b\x58\xcf\xc2\x7f\xb8\xd7\x96\xa5\xc2\xe9\x41\xc9\xde\x5e\xa9\x6e\xc8\x05\x40\xdf\xf3\xfc\x78\x51\x74\x15\x98\x49\x90\xa4\x48\x54\x2e\x5a\x23\x2b\xb7\xf6\xd2\x2a\xe8\x39\x42\x8c\x9e\x23\xbe\xd7\x73\x31\x06\xf7\xf4\xfc\x01\xed\xb9\x84\xc9\xbf\x3b\xca\xdf\xe1\x39\x8a\xf6\x3c\x1f\x93\x90\x46\x0f\xa8\xe7\x93\x94\x26\x64\x49\x05\x99\x53\x46\x26\x94\x0f\x78\x4b\xc4\x4f\xa3\xaf\x6c\x8a\xda\xf6\x2b\x8f\xad\x81\xdb\x50\xaf\x3c\x06\x8e\x43\x66\x54\x4f\xcb\x13\x63\xba\x05\xec\xd4\xcc\xd8\xef\xbc\x71\x8f\x94\x52\xc2\x15\x9d\x1d\xba\x03\xa7\xe9\xc8\x52\xd7\xf4\xcf\x35\x9c\x77\xa9\x8c\x9a\x61\x93\x63\x5a\xe4\x80\x66\xae\xa7\x2f\x2c\x08\x76\x1f\xad\xe5\x33\x94\xe3\xaa\xe1\xbc\x71\x1a\x28\x1e\x5c\x37\xe2\x86\xf3\x01\x1e\x4e\x69\xa0\x70\x70\xdd\x08\x1b\xce\x50\x07\xd3\xc1\xb4\x91\x36\x9c\x23\x1d\x5c\x66\xd9\x3c\xcb\x26\x03\xe7\xd4\x44\x0c\x16\x8d\x65\xc3\x79\xae\x83\xf3\xc1\xa2\x31\x2f\x4a\x4f\x06\x8b\xc6\xa4\xe1\x9c\x40\x10\xa6\xfb\xb3\xb2\x4f\x5a\x83\xcb\xb3\xfb\x2c\x97\x55\x93\x74\xfa\x8a\x3c\xe3\x72\x1a\x6e\x51\xd4\x87\x05\x56\x56\xac\x29\xa9\xee\x5e\x54\xf6\x90\xfd\x96\xc3\x45\x79\x2a\xd9\x23\x62\x95\x56\x23\x54\xb6\x28\x84\xf4\x72\x4c\x61\x7e\xa8\x13\xad\x78\xa3\x87\xac\x0b\x41\xc0\x98\x30\xea\x58\xf8\xcc\x2d\x1d\x4d\xd6\xbc\x6e\xa5\xab\x06\x91\xf0\x69\xf4\x41\x9f\x29\xf7\x54\x95\x17\xc0\xe7\xbc\x38\x24\x7b\x18\xf2\xe6\x56\x98\xdf\x2d\xd0\xd4\x25\xc2\x1f\xb5\x43\xa8\x32\x3d\xb0\xfb\x07\xd4\x97\x95\x62\x50\xd9\xb8\xd9\x58\x18\x2b\xc3\x66\xa5\x09\x2e\xbf\xb1\xb6\x57\xce\xad\x52\xe5\xc6\x96\x28\x0d\xf1\x5c\x81\x45\x6f\x6d\xc7\x1c\x09\x4c\x8c\x65\xb3\x36\x38\x36\x02\xa9\x35\x43\x66\x13\xbd\xd7\xde\xb1\xec\xa0\xf3\x58\xcf\x57\x7a\x5c\x55\xb5\x5b\x3a\xee\x5f\xd7\xe6\x47\x51\xbb\x32\x5e\x36\xf3\x72\xaf\xdf\x48\x8c\x7f\xa6\xc2\x7a\xd8\xa4\x9a\xf6\xd8\x36\xc1\x3a\xcd\xef\x3c\x94\xc9\xe0\x20\xaa\x64\xd9\x9b\xef\xa2\x1d\x17\x72\xf4\x58\xa7\x6c\xc6\xab\x33\xec\xf7\x3a\xae\xca\xe1\xb1\xb6\x01\x51\xd8\x91\x07\x9b\x66\x69\x80\xca\x43\x81\x1b\x49\xee\x44\x4a\x5c\x25\xf1\x0d\x18\x9c\x1e\x27\x49\x9c\x20\xe7\x1d\xff\xc4\xe3\x1b\x5e\x5b\xf2\x48\xd4\x9c\x86\xdc\x8d\xd5\x34\xb1\x5d\xb2\xd1\xd7\x5c\x45\x6a\xb2\x48\x1f\x73\x93\x49\x2d\x84\x4f\x3a\xfc\x1c\x16\xc0\x50\x87\x8e\xe4\xa2\x3c\xd5\x01\x65\xfe\xf3\xc4\x14\x54\xab\xe2\xad\x0e\xfe\x61\xac\xa8\xde\xe8\x88\x0f\xb0\x3e\x5e\x41\xe8\x3b\x56\x74\xeb\xfb\x74\x89\xa7\xd2\x5d\x50\x0c\xb9\x3d\xc8\x0f\x3c\xff\xa1\xdf\x3d\xf0\x59\xaf\xd1\xf6\xba\xed\x1e\xeb\x3d\xbc\x29\xcd\x02\xb9\xa1\xc0\x7e\x2f\xd1\xd0\xfc\xd5\x06\xf5\x2a\x5e\x01\xae\x58\x25\x24\xb4\xe6\x1b\x49\x4b\xb3\x5c\x6e\x4f\x1b\x84\xcf\x3d\xa4\x31\xf8\x1f\x0e\xe1\x6f\x9a\x65\xf1\x21\x75\xeb\xf5\x10\xfe\xa6\x87\xd4\xcd\x32\x14\x37\xa8\x6a\xd8\x0d\x97\x13\x37\xc5\x8d\x10\x93\x94\x86\x14\x9e\x66\x2b\xd1\xb5\xf8\x81\xdc\x66\xe5\xee\x19\x83\x5d\x22\x59\xe6\x54\x0d\x5e\x76\x91\x9b\xab\x7a\xf1\x65\x99\x93\x35\x21\x13\x38\x3d\x47\x42\x27\x68\x6b\x8c\x07\x7e\x87\xa4\x0d\x1a\xd1\x73\x74\xcc\x51\xd8\x80\x2d\xd9\xef\x60\x8c\x49\xd8\xa4\x0a\x97\x08\x5c\x2f\x9c\x23\xe8\x3b\x92\xc2\x56\xbc\x54\xf6\x4f\xa1\xac\x42\x8d\x7b\x4a\x96\x9a\x04\x26\x05\xe1\xdb\xe6\xbb\xee\xb3\x30\xfe\x2f\x9e\x6d\x75\xca\xa3\xc8\x0f\xa9\x98\x10\x23\xd6\x70\x52\x67\x8c\x8a\x81\x2c\xf5\xcf\x0b\x98\x62\x26\x74\xc4\x55\x06\xd5\x0f\x2f\x21\xa4\x1a\xff\x14\xbe\xa1\x1d\xdf\xe0\x73\xcd\x78\xae\x20\xba\xb9\xb5\x4d\x8a\xf0\x5e\x5f\x61\xad\x9b\xfd\x1c\x4a\xaa\x86\xff\xa6\x80\x6b\x0f\x46\x3f\x48\x94\x7f\x84\xe7\x2a\xbd\x11\x4f\x96\x64\x0e\x6f\x00\x6f\x94\x24\x57\x14\x09\xba\xcb\x08\xa7\x33\x92\x50\xd3\xc9\x60\x51\x22\xd9\xb0\x77\x1c\x25\x92\x3f\x97\x5c\x38\x26\x71\x11\x06\xeb\x85\xb0\x08\x5f\xc9\x70\x5a\x84\xa7\x32\xbc\x2c\xc2\x43\x19\x9e\x17\xe1\x5b\x19\x46\x13\x1a\x1d\xd2\xcf\xbc\x95\xa6\xf5\x3a\xb8\x42\x8d\xc6\x59\x16\x1d\xca\x18\x88\xd0\x31\xf1\x21\xf5\x64\x78\xe1\x40\xe0\x33\x6f\x2d\x20\xb8\x70\x48\x3c\xce\xb2\x50\x27\x5f\x39\x10\xf8\xcc\x5b\x57\x10\xbc\x72\x48\x38\xce\xb2\x54\x27\x4f\x1d\x08\x7c\xe6\xad\x29\x04\xa7\x0e\x49\xc7\x59\xb6\xd4\xc9\x43\x07\x02\x9f\x79\x6b\x08\xc1\xa1\x43\x96\xe3\x2c\x9b\xeb\xe4\x5b\x99\x3c\x72\x6e\x6f\x1d\x32\x1f\xe3\x91\x3f\xa6\x82\x4c\x46\xed\x31\x75\x0f\x81\x9c\x90\xc9\xa8\x33\xa6\xbc\xd2\x17\xb7\xd1\x98\x2d\xa9\x19\x22\x91\x65\x1e\xd9\xdd\xe5\x84\x91\x04\xaf\xec\x27\xd7\x26\xb8\x38\x1e\xd6\xeb\xe8\x8a\xce\x2c\xbd\x41\xa4\xaa\xbb\xc2\x98\xcc\x6c\x0f\x63\x57\x6a\x92\xd9\x9e\x02\x3e\x70\x15\xb3\x16\x04\x83\x6b\x15\x28\xbc\xc7\x3c\x5b\xf7\x1e\xa3\x60\xa5\xa6\xf0\x09\x72\xac\xe0\xa6\xb7\x7a\xeb\x19\x89\x92\x95\xb6\x39\x28\xd7\x10\x8f\x45\x34\x61\xe0\xac\x7e\x12\x5e\x47\x22\x9c\xa7\xd8\x21\x1f\x38\x86\xba\xb5\x47\x9b\x77\xc8\xf9\x4b\xbb\xf6\x5c\xf2\xe8\xab\xf2\xf6\xf9\x55\xc7\xe8\x3d\x40\xbf\x36\xf5\xb5\xf0\x87\xfd\x97\x43\xf6\x46\x8d\xe6\x78\x70\x36\x6d\xc0\x6b\x3f\x77\x1e\x69\xaf\xf0\x60\x4f\x39\x44\xfe\xcb\xa9\xf4\x2d\x5c\xbc\x44\xe8\xb1\xf6\x43\xfb\xc9\x11\x78\x21\x5d\xf9\x57\x96\xd5\xdc\x5f\xf8\x46\xb2\x3c\x20\x99\xd0\x4f\x34\x52\xc7\x6f\xf9\x9d\x96\xeb\x10\x46\x3f\x09\xc2\x5b\x33\x4e\xaf\x39\x51\x3e\x78\x2a\x2c\x75\x05\x72\x8c\x23\x20\x87\x8c\xc6\x4a\x8b\x56\x89\xb6\xf2\xc7\xf7\x88\x44\x88\x28\x87\x3e\xdb\x40\x80\x5f\xa2\xef\x42\xe0\xb6\xef\xb3\x1c\x02\xb8\x65\xe0\xf1\xcd\xc0\x7c\x20\x1c\x34\x4c\x13\x65\x31\x30\xa1\x22\xeb\x76\xf0\x05\xed\xfd\xa4\x9e\xf1\x61\x0a\xcb\x7b\x14\x33\xb5\xf2\x7a\x7e\xb8\x95\xf9\xa3\x14\x54\x81\x53\x92\xcf\xc8\xa5\xec\x37\xf3\xda\xc5\x94\xf0\xd6\x54\xbf\x68\x40\x3f\x43\x4a\xaa\x9e\x1d\xa5\x17\x64\x8b\xf2\x80\x25\xef\xca\xd5\xd3\x1d\x93\x53\xd5\x5a\x69\x73\x95\x37\xa7\xfa\x0d\xc4\xa2\x10\x02\x18\xd6\x9a\x99\x28\xc4\x8e\x0c\xa2\xaf\x04\xf9\x01\x85\xce\x72\x77\x40\x46\x85\x5d\xb5\x3a\xc1\x77\x1a\x36\x8c\xb8\x2a\x3d\x65\xb3\x88\x33\x75\x9f\x4b\xe7\x22\x37\xa0\xd3\x31\x1b\xee\x9c\x8c\xa1\x40\xf1\xca\x14\x4d\x84\x36\x0b\x43\x09\x4d\xcd\x33\x19\x11\x4d\x8c\x2a\x30\x26\x88\xc3\x2a\x78\x82\x04\x3d\x45\x11\x11\x18\x43\xff\x30\x2e\x74\x35\x11\xe8\xa5\x47\x4a\x9b\x9c\x2c\x8b\x57\xb9\xb5\x61\xa1\x4c\xa8\xd7\x91\x15\x2a\x95\x1f\xa8\x92\x9b\x09\x41\xa9\xbc\x7e\x0a\x19\x42\x85\x79\x82\x0c\x15\x23\x54\xb5\x49\xbf\x46\x91\x28\x75\xf5\xe6\x30\xdd\xdb\xd9\xd6\x60\x71\x49\x83\xe7\xd1\x37\xf6\x8e\x47\x22\xa5\xaf\x48\x59\xa5\xfc\xad\x3c\x5d\xac\xfb\x6e\x31\x13\xa0\x78\x61\xe3\x1d\x0f\x1c\x93\xc3\xb2\x9f\xa8\xd7\xd1\x3b\x4e\x19\x58\xde\xad\x01\x3e\xbd\x4a\x58\x7a\x15\xcf\xb7\x1c\x16\x15\xec\x5d\x4a\x3f\x73\xd5\xd3\x79\x65\x62\x00\x51\x01\x82\x1f\x2a\x88\x93\xc2\xf9\xac\x5e\x47\xb0\x1f\x53\xd1\xf4\xb0\xac\x11\xaa\x2c\x7b\x37\xae\x54\xd2\x61\xe0\x4d\x18\x09\xa2\x64\x58\x60\x8c\x68\x8e\x5f\x87\xcd\xde\xa0\x70\x84\x1c\xf0\xc3\xa6\x37\x70\xe6\x61\x2a\x94\x17\x27\x7e\xe8\xaa\xe0\x91\x3c\x45\xf1\x43\x4f\x65\xd6\x21\x7f\xe0\xe8\xc7\x7e\x65\xa8\xaf\x42\xaa\x60\x01\x13\x96\xb3\x11\x4a\x28\x62\xfb\xfc\x74\xf8\xb2\x7b\xfe\x74\x78\x4a\xef\x8e\x1e\x9f\x1e\x9f\xbe\x18\x1e\x9f\xbf\x7c\xfd\xe4\xf1\xcb\x60\xe3\x69\x16\x87\x94\x73\x9c\x9f\x1c\x3f\x79\xfd\xea\xe8\x64\x33\x67\x20\x59\x92\xb5\xcc\xc3\xea\x7c\xe0\xe5\x04\xf2\xda\xc9\x0e\x91\x25\x03\x47\xd7\x0b\x60\xf2\xda\x8a\x2a\x20\x7e\x68\x45\x29\x68\xef\x8f\x8f\xff\x19\xc0\x53\x0c\xcd\xd1\xfb\xf1\xfb\xf7\x0e\x19\xbe\x7e\x75\xfa\x3c\xaf\x40\xf6\xc3\x0a\x57\x78\x12\xcf\xc5\x79\x0c\x69\x61\x74\x1e\x13\xa1\x90\xa4\x8a\xdd\xe4\xa3\x70\xac\x19\x4f\xf8\x52\x16\x33\x15\x53\x32\x61\x9f\x97\x51\xc2\xea\x75\xfd\x01\xf2\xb1\xb4\x5e\x5f\x1a\x16\x75\x89\x42\x98\x01\xd1\x0c\xc5\x26\x2e\xd6\x71\xe0\xe4\x9e\x5a\xa7\xcf\x27\x21\xe7\xb1\xa8\xcd\x22\x3e\xad\x2d\xe2\xe9\x72\xce\x6a\xff\x70\x1a\x61\xc3\xf9\x87\x83\x77\xd4\x59\x75\xde\x9a\xc4\x53\x46\x9d\xe1\xeb\xa3\x77\x2f\x8f\xcf\x5f\xbd\x3e\x3d\x7f\xfa\xfa\xdd\xab\x23\x87\xcc\x41\x2c\x35\xa1\x12\x77\x7a\xc7\xbe\x5e\xc7\x89\x48\x83\xbb\xd5\x6a\x47\xb6\x61\xe4\x6a\x27\xdb\x93\x96\x4e\x22\xeb\x17\x14\x9c\x42\x46\x6f\x3c\x62\xb9\x5d\x45\x84\x78\x96\xc9\xad\x6c\x42\x8a\x82\x46\x8e\x9f\xbb\x5e\x1e\x85\x63\x93\xb8\x32\xce\xed\xe2\x1f\xe9\x2e\x12\x52\xf7\x51\x78\x98\x18\xb7\x74\x61\xa3\x81\x23\x94\xc8\x3e\x2f\xac\xab\x56\x08\xa3\x3b\x2f\x18\xad\x93\xa3\xc2\x17\x9e\xc0\x77\x8e\xe4\xb7\x94\xaf\x16\x67\x87\x21\x1f\x13\x86\x3a\xf2\x4f\x5b\xfe\xf1\x5c\xf9\xf7\x00\x3e\x21\xc9\xf3\xe0\x2f\x24\xf6\xe4\x9f\xbe\xfc\xd3\x95\x7f\xf6\xe5\x1f\x7f\xbf\xaf\x7e\xf6\xe1\x99\xfe\x8b\xf0\x82\xcd\xdf\xc4\xf3\xdb\x59\x34\x9f\xd7\xeb\xce\x92\xab\x6d\x65\x5a\x58\x23\x4e\x62\x9e\xc6\x73\x56\xaf\xeb\x8f\xd6\x4d\x98\xf0\x72\x08\x39\xff\x7f\x00\xb4\x77\xad\x21\x49\xd6\x71\x1e\x87\x53\x36\x55\xa6\x82\xe2\x2a\xe4\xb5\x98\x4f\x58\x2d\x56\x87\x9b\xda\x75\x78\xc9\x5a\xb5\x53\xf9\x29\x43\x49\x7c\x11\x5e\xcc\x6f\xe1\x9d\xec\x29\x4b\xa3\x24\xbc\x98\xb3\xbd\x88\x0b\xc6\xa7\xfa\x89\xeb\x45\x78\x5b\xbb\x0a\xbf\xc0\xf3\x47\x29\xfb\xbc\x64\x7c\xc2\xd2\x5a\x34\xab\x49\xaa\xc4\xe4\xce\x91\x3f\xa0\x5d\x03\x6b\x68\x56\x33\xe8\xa8\x37\xb3\xe5\x6e\x1f\xb1\x69\x4d\x15\x16\x51\x38\x9f\xdf\xb6\x6a\x2f\x66\xb5\xdb\x78\x59\x9b\xc6\x35\xce\xd8\xb4\x26\x62\x40\xbc\x54\x7c\xad\x0d\xca\x38\x74\xad\xc5\x7b\x3c\x7e\x12\xf3\xd9\x3c\x9a\xe4\x46\xa2\x12\xd6\xc5\xed\x75\x98\xa6\x00\x4d\x5b\x53\xb6\x9c\xcd\x8e\xa7\xbb\xee\x0a\x5b\xea\x31\x55\xc3\x70\x39\x8f\x2f\xc2\xf9\x40\xfd\x04\x55\x39\x52\x36\x9f\x0d\xe4\x9f\xca\xd4\x9b\x88\x4f\xe3\x9b\x81\xfa\x09\xee\x56\x78\x45\xee\x3c\x37\xf0\x5c\xe2\x79\x81\xe7\x11\xcf\x0f\x3c\x9f\x78\xed\xc0\x6b\x13\x3f\xf0\x89\xbf\xdf\x0f\xfc\xfd\x3e\xf1\xf7\xf7\x03\x7f\x7f\x9f\xb4\x83\x36\xe9\x04\x1d\xd2\x0d\xba\xa4\x17\xf4\x48\x3f\xe8\x93\xfd\x60\x9f\x1c\x04\x07\xab\x31\xf1\x37\x67\x31\x43\x7e\x57\x4d\xcc\x83\xae\xfa\xe9\xab\x9f\x9e\xfa\x81\x34\xdf\xf5\xd4\x4f\x4f\xfd\xb8\x2a\x4d\x4d\x55\x57\xff\xa8\x19\xeb\xb6\xd5\x4f\x47\xfd\xa8\xd9\x7e\xa0\x43\x5d\xf5\xa3\x60\xaa\x45\xe1\xf5\xd4\x52\xe8\xa9\x85\xd2\xf3\x55\x9a\xfe\x51\x69\xfb\x1a\x8a\xfe\x51\x39\xf7\xf5\x4f\x47\xfd\x28\xe4\xf7\x7b\x78\x47\xfe\xa8\x36\xec\xef\xab\x1f\xdd\x3e\x8d\xb5\xae\x4f\x15\xe8\xa9\x66\xf6\x54\x81\x9e\x2a\xd0\x53\x05\xfa\xaa\x40\x5f\x15\xe8\xab\xda\xfb\xaa\xda\xbe\xaa\xb6\xaf\xa0\xf4\x15\x94\xbe\x82\xd2\x57\x50\xfa\x0a\xca\xbe\x82\xb2\xaf\x7a\xb0\xa3\x7a\xb0\xab\x42\x5d\xd5\x75\x1d\xd5\x21\x1d\x9d\x45\xb5\xbd\xa3\xfa\xb3\xeb\xcb\x16\xf9\x5d\xd5\x83\x6d\x15\xd9\x56\xe5\xda\xba\x9c\xab\x7e\x54\xcf\x77\x54\xce\x8e\xea\xeb\x8e\xca\xd9\x55\x59\xba\x2a\x4b\x57\xa5\x75\x35\x2e\x0a\x6b\x15\xf2\x14\x4a\x9e\x8e\xec\x29\xe4\xf5\x0c\x51\xa0\x3d\x85\xa0\xd7\xd1\x91\xba\x9c\x8a\xec\xea\x2c\xaa\xcf\x54\xed\x5e\x5b\xc3\x54\x5d\xd7\x56\x63\xa4\xba\xc0\x53\x98\x79\x0a\x79\x4f\x35\xda\x6b\xab\x6e\x55\xad\xf5\x54\xfb\x3c\xd5\x5a\x4f\x21\xef\xe9\xf6\xf9\xaa\x7d\xbe\xea\x09\x55\xce\x6f\xab\xd6\xb6\x55\x7f\xb6\x55\x7f\xb6\x55\xdb\xdb\xaa\x7b\x3c\x3d\xdd\x74\xb7\xaa\x9e\x50\x23\xed\xab\x91\xf6\x55\xdb\x7d\x35\x3f\x7d\x35\x51\x7c\x35\x35\xfc\xbe\x4e\x53\xc5\x7b\x7d\x18\x23\x35\xa5\x7c\x35\x89\x7c\x3d\x93\xd5\xbc\xf6\x3d\x5d\xad\xca\xe2\x29\x60\x9e\x1a\x4d\x4f\xb7\x41\x55\xe4\xa9\x1a\x7c\x55\x83\xaf\xa0\xf8\x0a\x8a\xaf\xa0\xf8\xba\xed\xaa\xb8\xdf\x93\xa4\x4a\xef\x7f\x94\xa1\x76\x1b\x88\x46\xbb\x1b\x78\xed\x2e\xf1\xda\xbd\xc0\x6b\xf7\x88\xd7\xee\x07\x5e\xbb\x4f\xbc\xf6\x7e\xe0\xb5\xf7\x89\xd7\x3e\x08\xbc\xf6\x01\xf1\x3a\x6e\xe0\x75\x5c\xe2\x75\xbc\xc0\xeb\x78\xc4\xeb\xf8\x81\xd7\xf1\x89\xd7\x69\x07\x5e\xa7\x4d\xbc\x4e\x27\xf0\x3a\x1d\xe2\x75\xba\x81\xd7\xe9\x12\xaf\xd3\x0b\xbc\x4e\x8f\x78\x9d\x7e\xe0\x75\xfa\xc4\xeb\xec\x07\x5e\x67\x9f\x78\x9d\x83\xc0\xeb\x1c\x10\xaf\xeb\x06\x5e\xd7\x25\x5e\xd7\x0b\xbc\xae\x47\xbc\xae\x1f\x78\x5d\x9f\x78\xdd\x76\xe0\x75\xdb\xc4\xeb\x76\x02\xaf\xdb\x21\x5e\xb7\x1b\x78\xdd\x2e\xf1\xba\xbd\xc0\xeb\xf6\x88\xd7\xed\x07\x5e\xb7\x4f\xbc\xee\x7e\xe0\x75\xf7\x89\xd7\x3d\x08\xbc\xee\x01\xf1\x7a\x6e\xe0\xf5\x5c\xe2\xf5\xbc\xc0\xeb\x79\xc4\xeb\xf9\x81\xd7\xf3\x89\xd7\x6b\x07\x5e\xaf\x4d\xbc\x5e\x27\xf0\x7a\x1d\xe2\xf5\xba\x81\xd7\xeb\x12\xaf\xd7\x0b\xbc\x5e\x8f\x78\xbd\x7e\xe0\xf5\xfa\xc4\xeb\xed\x07\x5e\x6f\x9f\x78\xbd\x83\xc0\xeb\x1d\x10\xaf\xef\x06\x5e\xdf\x25\x5e\xdf\x0b\xbc\xbe\x47\xbc\xbe\x1f\x78\x7d\x9f\x78\xfd\x76\xe0\xf5\xdb\xc4\xeb\x77\x02\xaf\xdf\x21\x5e\xbf\x1b\x78\xfd\x2e\xf1\xfa\xbd\xc0\xeb\xf7\x88\xd7\xef\x07\x5e\xbf\x4f\xbc\xfe\x7e\xe0\xf5\xf7\x89\xd7\x3f\x08\xbc\xfe\x01\xf1\xf6\xdd\xc0\xdb\x77\x89\xb7\xef\x05\xde\xbe\x47\xbc\x7d\x3f\xf0\xf6\x7d\xe2\xed\xb7\x03\x6f\xbf\x4d\xbc\xfd\x4e\xe0\xed\x77\x88\xb7\xdf\x0d\xbc\xfd\x2e\xf1\xf6\x7b\x81\xb7\xdf\x23\xde\x7e\x3f\xf0\xf6\xfb\xc4\xdb\xdf\x0f\xbc\xfd\x7d\xe2\xed\x1f\x04\xde\xfe\x01\xf1\x0e\xdc\xc0\x3b\x70\x89\x77\xe0\x05\xde\x81\x47\xbc\x03\x3f\xf0\x0e\x7c\xe2\x1d\xb4\x03\xef\xa0\x4d\xbc\x83\x4e\xe0\x1d\x74\x88\x77\xd0\x0d\xbc\x83\x2e\xf1\x0e\x7a\x81\x77\xd0\x23\xde\x41\x3f\xf0\x0e\xfa\xc4\x3b\xd8\x0f\xbc\x83\x7d\xe2\x1d\x1c\x04\xde\xc1\x01\xf1\x5d\x37\xf0\x5d\x97\xf8\xae\x17\xf8\xae\x47\x7c\xd7\x0f\x7c\xd7\x27\xbe\xdb\x0e\x7c\xb7\x4d\x7c\xb7\x13\xf8\x6e\x87\xf8\x6e\x37\xf0\xdd\x2e\xf1\xdd\x5e\xe0\xbb\x3d\xe2\xbb\xfd\xc0\x77\xfb\xc4\x77\xf7\x03\xdf\xdd\x27\xbe\x7b\x10\xf8\xee\x01\xf1\x3d\x37\xf0\x3d\x97\xf8\x9e\x17\xf8\x9e\x47\x7c\xcf\x0f\x7c\xcf\x27\xbe\xd7\x0e\x7c\xb9\x29\x79\x9d\xc0\xf7\x3a\xc4\xf7\xba\x81\xef\x75\x89\xef\xf5\x02\xdf\xeb\x11\xdf\xeb\x07\xbe\xd7\x27\xbe\xb7\x1f\xf8\xde\x3e\xf1\xbd\x83\xc0\xf7\x0e\x88\xef\xbb\x81\xef\xbb\xc4\xf7\xbd\xc0\xf7\x3d\xe2\xfb\x7e\xe0\xfb\x3e\xf1\xfd\x76\xe0\xfb\x6d\xe2\xfb\x9d\xc0\xf7\x3b\xc4\xf7\xbb\x81\xef\x77\x89\xef\xf7\x02\xdf\xef\x11\xdf\xef\x07\xbe\xdf\x27\xbe\xbf\x1f\xf8\xfe\x3e\xf1\xfd\x83\xc0\xf7\x0f\x88\xdf\x76\x03\xbf\xed\x12\xbf\xed\x05\x7e\xdb\x23\x7e\xdb\x0f\xfc\xb6\x4f\xfc\x76\x3b\xf0\xdb\x6d\xe2\xb7\x3b\x81\xdf\xee\x10\xbf\xdd\x0d\xfc\x76\x97\xf8\xed\x5e\xe0\xb7\x7b\xc4\x6f\xf7\x03\xbf\xdd\x27\x7e\x7b\x3f\xf0\xdb\xfb\xc4\x6f\x1f\x04\x7e\xfb\x80\xf8\x1d\x37\xf0\x3b\x2e\xf1\x3b\x5e\xe0\x77\x3c\xe2\x77\xfc\xc0\xef\xf8\xc4\xef\xb4\x03\xbf\xd3\x26\x7e\xa7\x13\xf8\x9d\x0e\xf1\x3b\xdd\xc0\xef\x74\x89\xdf\xe9\x05\x7e\xa7\x47\xfc\x4e\x3f\xf0\x3b\x7d\xe2\x77\xf6\x03\xbf\xb3\x4f\xfc\xce\x41\xe0\x77\x0e\x88\xdf\x75\x03\xbf\xeb\x12\xbf\xeb\x05\x7e\xd7\x23\x7e\xd7\x0f\xfc\xae\x4f\xfc\x6e\x3b\xf0\xbb\x6d\xe2\x77\x3b\x81\xdf\xed\x10\xbf\xdb\x0d\xfc\x6e\x97\xf8\xdd\x5e\xe0\x77\x7b\xc4\xef\xf6\x03\xbf\xdb\x27\x7e\x77\x3f\xf0\xbb\xfb\xc4\xef\x1e\x04\x7e\xf7\x80\xf8\x3d\x37\xf0\x7b\x2e\xf1\x7b\xff\x1f\x6d\x7f\xb6\xdd\xb8\xb1\x26\x0a\xc2\xf7\x7a\x0a\x11\x67\x17\x2a\x22\xf9\x11\x02\xc0\x39\xa8\x10\x4f\x3a\xad\xf4\xce\xda\xce\xa1\x9c\x69\xbb\x76\xd1\x2c\x2d\x88\x0c\x8a\x70\x92\x00\x37\x06\x4a\xb2\xc0\x5a\x3e\xff\xdf\xa7\xc7\xb5\xfa\x01\xfa\xa6\xcf\x6d\x5f\xf5\x3b\xd4\x9b\x1c\xf7\x8b\xf4\x8a\x09\x03\x09\x32\x65\x57\xb5\xbd\x56\x0a\x0c\x04\x62\x8e\x6f\x1e\x1c\xe2\xf6\x1c\x70\x7b\x2e\x71\x7b\x2e\xb8\xbd\x36\x71\x7b\x6d\x70\x7b\x1d\xe2\xf6\x3a\xe0\xf6\xba\xc4\xed\x75\xc1\xed\xf5\x88\xdb\xeb\x81\xdb\xeb\x13\xb7\xd7\x07\xb7\x37\x20\x6e\x6f\x00\x6e\x6f\x48\xdc\xde\x10\xdc\xbe\x4d\xdc\xbe\x0d\x6e\xdf\x21\x6e\xdf\x01\xb7\xef\x12\xb7\xef\x42\xbb\x4d\xda\xed\xdd\x14\xda\xb5\x24\x04\xc7\x8a\x7b\x30\xc8\x12\x81\x1b\xac\xc5\xca\x4b\xde\x7a\x9b\x1d\x3c\xb9\xfd\x36\x71\xfb\xed\xbc\xa5\x4e\x7d\x4b\x9d\x63\x2d\xf9\xc1\x6c\x95\xce\x59\x2c\x9a\xea\x10\xb7\xdf\xc9\x9b\xea\xd6\x37\xd5\x3d\x6c\x4a\x86\xa8\xb5\x58\x90\x44\xbe\x6a\xaa\x4b\xdc\x7e\x37\x6f\xaa\x57\xdf\xd4\x21\x8c\xd5\x4d\xdd\xb1\xe4\xfd\x7d\xf0\x21\x0a\x37\x2c\x4a\x1e\xbf\x66\xf1\x2c\xf2\x37\x49\x18\xc9\xc6\x7b\xc4\xed\xf7\xf2\xc6\xfb\xf5\x8d\xf7\x8f\x36\x2e\x04\xad\xb2\xa5\x3e\x71\xfb\xfd\xbc\xa5\xc1\x61\x4b\xfb\x2c\x88\x44\x71\x6e\x7f\x70\xd8\xfa\x87\x28\x5c\xfb\x31\xb3\x16\x7e\xc0\xc9\x6b\xde\xbe\xbe\xbe\xfd\x01\x71\xfb\x83\xbc\x9f\x61\xfd\x88\x87\x87\x6d\x4a\x39\xb3\xb5\xf1\xe6\xd7\xc1\x5c\x8c\x78\x48\xdc\xfe\x30\x6f\xc9\xb1\x6b\x9b\xe2\xe4\xd1\xf1\xa6\x3e\x26\x5e\x94\xf0\xc6\x06\x36\x71\x07\x76\xd1\x58\x0d\x3f\xc6\x1b\x73\x8f\x36\x96\x44\xfe\xfa\x3b\xff\x6e\x29\x5b\x73\x89\x3b\x28\xce\xb4\x53\x4f\x17\x73\x92\xed\x44\x6b\xdf\xb2\x85\x6c\xcc\x21\xee\xc0\x29\x1a\xab\xbf\x21\x83\xbd\x1b\xe2\xb4\x5d\x6c\x2d\x90\xe1\xc5\x8f\xc1\xec\x4d\xc2\x22\x2f\x09\x23\x43\x62\x6e\x97\x38\x1c\x62\x0d\xda\xc4\x1d\x88\x26\x6b\xae\x4a\xd1\xd6\x9e\xae\xaa\x60\x7b\x8b\x48\x35\x58\x32\xef\x9f\x1e\x37\x4c\xb2\xfa\xac\x69\x70\x86\x8e\xf3\x71\x5e\x2e\x93\x68\x14\x71\x36\xd8\x6e\x07\x4f\xbc\xe7\x9a\x9b\xa5\xf2\x71\x21\x77\x88\xcf\xea\x46\xa1\xe3\xd2\xab\x28\x85\xe5\x78\x39\xc6\x3b\x5d\x16\x21\x86\x0f\x46\x95\xc7\x5a\x69\x8a\xfe\x39\x44\xe7\x5c\x8b\x53\x73\x27\xf5\x20\x9c\x76\x1b\x23\x23\x0d\xe2\x59\xb8\xe1\xcc\x68\x2c\xd2\x59\x4b\x80\x51\x18\xc7\xa8\x4c\xd2\xc2\x0d\x80\xa1\x6e\x1b\x23\x1f\x22\x78\xda\x95\xb7\xa4\xb2\x8c\x93\x68\x3a\x61\x53\xce\xf0\x89\x0d\xe1\xec\x56\x1b\xba\x6d\xd2\x15\xdb\x51\x73\x8d\x2b\x97\x2f\x1f\x9c\x63\x63\xd4\xb0\x8f\x2d\x53\x49\xa6\x99\x34\x51\x30\x96\xa9\x0c\x94\x2c\x82\x38\x58\xf4\xcd\x99\x3f\xc7\xe6\xbd\xd6\x5c\xf9\x63\xed\x42\x24\xa5\x47\x48\xda\x5b\x7a\xc1\x4c\x44\x1e\xc3\x59\x96\x0b\x22\x23\xd3\x8c\x54\xfc\xff\xbd\x5d\x08\x9a\x06\x39\xf7\x83\x59\x18\x45\x4c\xb0\xc9\xdb\x70\xe6\x1d\x3b\x1f\x35\xf0\x41\xcf\xbe\xe7\xd6\x4f\x5c\x0e\xad\xf6\x00\x94\x8f\x65\x70\x2e\x13\x1b\xec\xf7\xda\x73\x49\xcf\xe5\xbc\x6c\x0d\x3c\xa9\xdf\x05\x4e\x3c\xfb\x62\x3b\x06\x18\x42\x51\x52\x19\xda\x64\x6a\xcd\xc2\xcd\xe3\x8f\x7e\xb2\xf4\x83\x2c\x3b\xee\xf9\x88\xc1\xa3\x21\xd2\x49\x0c\x30\xc4\xd4\x47\x0c\x3c\x0c\x29\xf5\x51\xc2\x1f\x56\x34\xd7\x50\xa8\x5a\x57\xee\x38\x2f\x9a\xb8\x53\x22\x37\x00\x66\xd2\x0c\x70\xed\x07\xa8\x90\x05\xaf\xc6\x1e\xf1\xd1\x0a\x3c\x8c\x5b\x29\x78\xad\x18\xc3\x82\x3a\xc2\xff\x26\xbd\x8c\x4d\x33\xbe\x4c\x9b\x33\xd3\x44\x0b\xda\x72\x20\x6d\xd2\x59\xcb\x81\x58\xfc\xc1\xa3\x59\xab\x75\x7e\x65\x8f\x70\xca\x37\x35\x18\x07\x93\x78\x4a\x83\x49\x3a\x25\x4a\x28\xcf\x0b\x78\xe5\x05\xff\x70\x91\x4b\x84\xe5\x19\x1b\x10\xc7\x19\x80\xe3\xba\xc4\x71\x5d\x70\xdc\x36\x71\x5c\x7e\xd2\xdd\x1a\x30\xfb\xc7\xd6\xb8\xbc\xfd\x5a\x44\x97\xe4\xcb\x1a\xd0\x10\x25\xf9\xb2\x7a\x07\x8b\x28\x56\xda\xbb\x72\x4a\x4b\xe9\xe4\x4b\x19\xf0\xf5\xf7\x8e\xac\xf3\x8a\xe6\xab\x9b\x8e\x03\xe2\xa3\x14\x02\x3c\x5a\x5d\xc5\x23\x9c\x4c\xe2\x66\x73\x4a\x73\xd3\xb9\xe4\x0b\x6b\x51\x83\x24\x8a\xe9\x3b\x6a\xfa\x9c\x5f\x0b\xd5\x3a\x1c\x99\xfe\xbe\x9d\x2b\xbf\xaf\x2a\x6e\x56\x0c\x29\x5f\x13\x7e\x8e\x7c\x94\xe6\x0b\x32\xa3\x21\xf2\x60\x25\xa4\xb8\xcc\x34\x83\x06\x0d\xe4\x2a\x8e\x56\x57\xb3\x11\xf6\x17\x08\xc5\x34\x9d\xcc\x9a\xcd\x29\x6e\xd0\x18\x6b\x4f\x53\xa9\xe2\xc9\x2b\xce\x9a\x4d\x51\x97\x65\xd9\x8c\x9f\x92\x14\x9b\x66\x3a\x99\x4d\x29\x2d\x22\x36\xf1\x77\x59\xa6\xcd\xc4\x1b\xcc\x34\x5b\xce\xae\xba\x30\x0e\x71\x5c\x47\x2f\x10\x5f\x98\x1a\x84\xa7\x17\x86\x33\xe4\x7c\x5d\xba\xf9\xa9\x68\xf3\xfd\x55\x0b\xc5\xf1\xa0\xdb\x3b\x8e\x45\x54\x22\x7c\x4a\x19\xa4\xd4\xe5\x7f\x56\xb4\x4d\x85\x05\x69\x87\xff\x59\xd0\x1e\xff\xb3\xa4\x5d\x61\xdc\xb6\x80\x0d\x4d\xb2\x2c\x0f\xa2\x5f\x5a\xe1\x18\xe6\xc5\xb9\x5b\xc3\x23\x6c\xf9\x89\xc3\x70\x47\x7d\xb4\xc5\x70\x4b\x23\x14\xc3\x1c\xda\x18\x6e\xa8\x87\xee\xf2\x95\xbf\xa7\x36\x5c\xd3\x60\xbc\x41\x09\xdc\x60\x92\x8a\x07\x1b\xab\xd3\x35\xba\xb9\xba\x1f\xdd\xab\x55\x5d\x66\xd9\x3d\x5f\xd5\x3b\x6c\x9a\xe8\x91\xde\xa2\x35\xbd\x9b\xdc\x4f\xe1\x1e\xb6\x18\x18\xe6\x75\x02\x7c\x3d\xb9\x9f\xd2\xc7\x3c\x38\xe4\x23\xae\x66\x0d\x39\x6f\x13\xbd\x77\xc2\xa4\xec\xbc\xab\xed\xc8\xd6\xf2\x77\x4f\xff\xbe\x97\xbf\x5d\x72\x2d\xb3\xb7\xac\x95\x3e\xcf\x5f\xa0\x99\xde\xff\x3c\x2e\xda\x62\xdc\x72\x88\x30\x37\x9d\x91\x6b\xb9\x9b\xd5\xe3\x0d\x9c\xa9\xea\x41\xbb\x4b\xda\x5d\xe8\x0e\x48\x77\xc0\xf7\xb5\x86\xea\xc8\x0f\x7c\x47\x9f\xf7\xb6\xdc\x58\xbe\xc1\xde\xa9\x6b\x2f\xd0\x52\x0c\x29\x7e\x12\x78\x5e\xea\x1e\x7c\xc4\xe4\xe9\x5e\x71\x48\xe7\xa1\x55\xbe\xf0\x4b\x9a\x8e\x17\x2d\x87\xd8\xb0\xa1\x29\x1f\xbe\x23\x9c\xb0\x2e\x5d\xe1\x46\x3c\x1a\x09\x24\xb2\xe4\xeb\x3d\xc3\x4f\x31\x9d\x4d\x96\x53\x58\x36\xe9\x46\x26\xde\xd8\xf1\x97\x4d\xba\x81\x74\xbc\xbc\xb4\xc9\xe2\x92\x2e\x0f\x70\x8d\xf1\x1d\x9b\xa7\x33\x76\xce\x29\x93\xf5\x26\x79\x3c\xf7\x38\xd1\x70\x7e\xef\x27\xcb\xf3\x20\x3c\xf7\x03\x3f\xf1\xbd\xd5\xb9\xa0\xc0\x0d\x99\x48\x75\x94\x8e\x97\x57\xd4\x26\x8b\xab\xe5\x88\x37\x8f\xe5\x00\x4c\x13\xc5\x34\x41\x31\xc8\x51\xc0\xaa\xb0\x1a\x89\xeb\x16\xdb\xe9\x10\xa7\x53\x2c\xf3\x09\x12\xab\xe7\xca\x65\xee\xd9\xea\xfa\x08\x6a\x27\xde\xb0\x99\xcf\x29\x9d\x23\x00\x46\x26\xbb\xc9\x35\x28\x22\x2a\xdd\x21\x55\x88\x12\xca\xac\x59\x18\xc4\x49\x94\xce\x92\x30\xc2\x59\x96\x34\xa8\x24\x9d\x4c\xb3\xe1\xa3\x92\x75\xb1\x70\xc0\xc9\x63\xda\x45\x22\x8a\x9c\x8e\x8a\x9b\x50\x91\x2f\x55\x44\xbe\xcb\x23\xc6\x95\xd4\x9b\xa2\x41\x92\x94\x09\xa9\x9e\x4d\x7a\x36\xe4\x88\xfc\x04\x79\xe7\x76\x8f\x43\x07\x8d\xc2\xd8\x3d\x12\xc4\x04\x4a\x04\xc5\xe4\x72\xbe\x99\x37\xfb\x6c\x2a\x4d\x9d\xe5\x9e\x02\xdd\xdd\x3e\x3f\xca\xda\x78\x03\x62\xfa\xb4\x2b\x8d\xe1\xb5\x6a\xd2\xba\xf5\x83\x79\x99\x58\xd0\x5e\x36\x05\x4e\xf3\xf6\x0d\x3f\x1c\x8e\xa9\xf6\x0c\x16\x23\x1a\xf0\x5d\x98\x79\x09\xda\xaf\x8f\x2b\xa1\xa3\xcb\x94\x5c\x3a\xde\x9f\x99\xa0\xf6\x38\xb1\x76\x1e\xe3\x02\xd2\x45\x74\x32\x05\x19\x61\x2f\x11\x11\xf6\xa2\x89\x3f\xa5\x86\x37\x31\x9a\x7e\xd3\x98\x1a\x67\xf1\x24\x99\xe6\x53\x42\xc6\x6b\xf0\x0c\x30\x8a\x85\x3d\x7f\x8d\x8c\x66\x64\xfd\x1c\xfa\x01\x32\xc0\xc0\x4d\x03\x1b\xb9\xda\x8d\x7f\x8b\x18\x04\x78\x87\x12\xd0\x2a\x34\x88\x30\x09\xf9\x6f\x60\x78\x57\x9c\xc1\xf2\x59\x32\x4d\x94\x96\x74\xc4\xe5\x57\x90\x8a\x63\x22\xef\x47\x9f\x74\xfb\xc5\x21\xa9\xa1\x7e\x4b\x8c\x88\x04\x46\xe2\x76\x68\x2b\xab\x4f\xde\x9d\x48\x09\x6c\xbc\xd4\xeb\x69\x50\x1a\xa1\x43\x95\x6c\xbe\xde\x3b\x84\x4f\x5e\x29\x8e\xa7\xcf\x0e\x8d\x05\x8c\xef\x73\x35\x0e\x51\x97\x82\x8d\x8d\x77\xe9\x6a\x25\xa2\x59\x54\xa2\xff\xa2\x60\xef\x10\x27\xd1\x63\x6e\x34\x39\x49\xa6\xbb\x99\x48\x0b\x1f\xe0\xa7\xdd\x0e\x25\x54\x4a\x01\x38\x90\xf4\x31\x1e\x07\x24\x1c\xf3\xbb\x47\x8c\xf7\x3a\xe5\x17\xf2\x04\xbd\x80\x4d\xb3\x46\xdb\x99\x88\xf3\xc4\xd8\xb8\xb4\x04\xc4\x2b\x5f\x44\xcd\x61\xb9\x47\xc9\xf8\xa7\x5d\x6e\xb6\x76\x9a\x9c\x51\xe1\x13\x19\x56\xb1\x07\x07\xc2\xc6\x5d\x72\x09\xed\xe7\x92\xea\x03\x1b\x5b\x0b\xb1\x97\xfd\xa1\xbc\x8c\x43\x85\x57\x38\x21\x21\xd8\xe6\x01\xbf\x43\x0c\x75\x86\x9c\x48\x62\xa8\xd7\xe3\x08\x84\xa1\xde\x80\x63\x10\x86\x1c\xbb\xc3\x91\x07\x43\xed\x21\x86\x0d\x6f\xa8\x8b\xad\x85\x17\x27\x7f\x61\x8f\x30\x17\x87\xc4\xc6\xb0\xa6\xcb\xb1\x71\x13\xf3\xfd\xf1\x7f\x61\x06\x3c\x1e\xc9\xba\xb7\xe1\xa8\x8a\xf3\xb2\xaf\x0d\xce\x32\xe1\xc2\x55\x8c\x73\x88\x32\x78\x1f\x65\xd6\xcd\x62\x14\x8c\x02\x1a\x58\x81\xc0\xf2\xd6\x67\x5a\x44\xfa\x0c\xca\xc0\xe3\xe9\x8e\x25\xaf\x0a\x90\x4b\xf6\xd0\xe3\x4a\xf6\xcc\xe7\x53\x7a\x13\xe1\xa7\x18\x31\x98\x41\x02\xc6\x8d\x6f\x60\x60\xd6\x4d\x42\x13\xfe\xc7\xa7\xbe\xb0\xd9\x11\x65\x0b\x05\x7e\xf9\xf3\x2a\x7f\x9e\xac\xa7\x54\xc7\x0f\x8f\x4c\x33\x45\x11\x04\xc0\x26\xab\x29\xbf\xa0\x39\x80\x09\xd1\xac\xb8\x86\xf0\x34\x5b\x31\xaf\x34\xba\x02\xa0\x30\x3a\x97\xba\xcf\x84\x03\x38\x3e\x02\x88\xe4\x02\x44\xa3\x88\x46\x56\x80\x23\x2b\xa2\x0d\x1b\x22\x6b\x63\x9a\x28\xb2\x36\x34\xb2\x36\x56\x90\xe3\x8e\x9c\x1b\x89\x2c\x7f\x7a\x26\x46\x7d\x38\xdc\x9d\xaa\x76\xe0\xc3\x18\x94\xba\x8f\xe8\x23\x0a\x80\x89\xfd\xc9\x7d\xfa\x22\x2b\x80\x90\x77\x79\xa6\x3b\x12\x5b\x65\xf9\x53\x50\x03\x0b\x4d\x13\x85\x56\x40\x7d\x0c\xbe\x69\x22\xdf\xda\xd0\x10\x43\xc0\x07\xc2\xd7\x07\x89\x27\x5f\x94\xac\xf2\x92\x95\xa8\x33\x59\x4f\x5b\x2d\x05\xfd\x1a\x8d\x68\x07\x8b\x30\xba\xf6\x66\xcb\xca\x30\xf3\x01\x16\x69\xf6\x20\xa2\x1e\xe7\x13\xf7\x39\xc3\x7a\x76\xa6\x8d\xf9\x51\x1a\x07\x56\xa0\xd3\xc6\x8c\x04\xcd\x13\xa1\xc0\xda\x42\x60\x7d\x96\x51\x77\x47\x81\x69\x06\x56\x34\xc2\xfc\xdc\x6d\x76\xb0\xf4\x62\x52\x13\x6d\xa6\xf1\x88\x8a\x25\x63\xc2\x71\x73\x69\x9a\x51\x65\xbb\xd5\x25\xe0\x87\x93\x1c\x82\xc7\xfc\xf3\xc9\x7a\xca\x3f\x9f\xf1\xdd\x59\x90\xa3\x71\x61\xa8\x08\x0c\x5c\x9c\xac\x71\x68\x6d\x69\x40\x90\xd8\xe6\x90\x3e\xf9\xc4\xe7\xf7\x4a\x44\x8d\xff\x4c\x12\xd8\x92\x00\x36\x44\x9c\xa2\x15\x04\x7a\x15\x22\xd2\x70\x76\xe2\x54\x67\x19\x12\xc7\x24\xc4\x10\x89\x23\x15\xf0\x47\x7e\x50\x9a\x4d\x90\x17\x93\x6f\xa4\xb8\x93\xfe\x94\x86\x18\x03\xdb\xc1\x1d\x4b\xae\x83\x24\x7a\x24\x8f\x10\xb3\xe4\x63\x12\x85\xc1\xdd\xc1\x98\x57\xe2\xa1\x54\x1a\xe0\x27\xb9\xe6\x09\x9d\x17\x61\x9c\xad\x9b\xcf\x54\xc7\x06\xd2\x27\x75\x07\xb5\xb7\x43\x55\x87\x3c\x36\xec\x28\x31\xcd\x84\x6f\x53\xc2\x11\x5d\xd5\x9f\x2a\x29\xc2\xc4\xd1\x84\x26\xe3\x24\xdf\xf2\xc4\xba\x59\xe0\xf1\x0c\xd9\x60\x7c\x66\x8f\x1c\x71\xb1\x71\x62\x7d\x26\xd2\xf0\x56\xff\xde\x92\x49\xc2\x8f\x83\xb5\x9d\x62\x1d\x3c\x56\xd3\x60\x30\x43\x8e\x30\x19\x1b\x1b\x4a\xd6\x6d\xe4\x5f\x43\x23\x10\xab\xbf\x10\x14\x93\x30\x30\xe8\x10\xc7\xee\x80\xd3\xb6\x89\xd3\xb6\x81\xb3\x7a\x03\xc5\x0d\xb4\x87\xa4\x3d\x84\xce\x90\x74\x86\xd0\xeb\x91\x5e\x0f\x7a\x03\xd2\x1b\x40\xbf\x4b\xfa\x5d\xe8\x0f\x49\x7f\x08\x03\x9b\x0c\x6c\x18\x0e\xc8\x90\x13\xb4\xed\xe7\x0a\x0d\x38\x6c\xf7\x15\x88\xbe\x63\xc9\x8f\xcc\xfb\x2c\xa9\xdc\xa1\x84\xf9\x3d\xb7\x1e\xe6\x73\x9e\x83\xc3\xc8\xae\xab\x60\x3e\x07\xe9\x4b\xba\x42\x5d\x0e\xf2\x57\xa8\x87\x61\x4e\x6d\x58\xd7\x7a\x26\x58\x37\x2b\x79\xa2\xa4\xe5\xd3\x23\xde\x41\x25\x4f\x9e\xf4\x38\xa4\x93\xe9\x0e\xb6\xf5\x04\xe7\x12\x31\xcb\xab\x0d\xbb\x3b\xb1\x39\x2f\x9d\xec\xf0\xee\xac\x24\x7d\xa4\xd5\x8b\x95\x13\x8a\x5b\xe5\x0e\x26\x20\x58\x8e\x2f\x92\x89\x33\x3d\x7e\x9b\xf3\x6f\x76\xfc\x58\x93\x3a\x76\xb9\x68\x36\x18\x07\x13\x47\x47\x91\xb5\x3c\xc9\x28\x4e\x18\x24\x53\x7c\x14\xc2\x26\x54\xa6\x37\x2d\xcf\xb0\x94\x3d\x55\xce\x90\xe5\x88\xe3\x5f\x75\x30\x0c\xcf\x8a\x37\x02\xef\x27\x9c\xca\x6d\x34\xfe\x95\x13\xfc\xcf\x46\x7c\xa1\xec\x7c\x55\x8b\xf8\x56\xb5\x88\x6f\xde\x6c\x56\x10\xdd\x01\x86\x0b\xab\x18\x2e\x42\xab\x32\x86\xab\x99\x3e\x27\xa1\xbd\x22\x18\x47\xc3\x51\x99\xd9\xfc\x52\xca\x5d\x4e\xf1\x05\xe3\x35\x5a\x68\xa0\x88\x2d\xd9\x12\x62\x98\x04\xa6\x39\xcb\x23\x94\xf9\x38\xb7\x87\x0d\x26\xaa\xa8\x66\x63\xff\x60\xa7\x4b\xe1\xaa\xbd\xdf\x23\x07\xcf\xab\x13\xe0\x99\xfa\x48\x48\x3d\x0a\x93\x50\xd1\x76\x34\x5e\x0b\xba\x8d\x25\x2a\xfa\xf5\x84\xaf\xf0\x94\x06\x1c\x90\xa6\x8b\x38\x09\x23\x46\xd6\x92\x6e\x2c\x03\x08\x67\x48\x9c\x21\xb8\x6d\xe2\xb6\x15\x80\xe8\xba\xa4\xeb\x4a\x9a\x5d\x01\x88\x1c\x28\xd4\x48\xcf\x6a\x81\x42\x57\x49\xd2\x3a\x4a\xb0\x30\x54\xc0\x80\x03\x8b\x58\x02\x8b\x0a\x30\xe0\xc0\x61\xa6\x80\x05\x07\x06\x9d\xae\xa4\xff\x7a\x7d\x49\xff\x39\x76\x17\x0b\xc2\xaf\x7b\x54\xd0\x04\x01\x08\x91\x90\x5c\xa5\x3b\x1a\x4d\xd8\x14\x6e\xe9\x1d\xdc\xd0\xc7\xb1\x11\xb3\xc4\x20\x86\x37\x9f\x1b\x70\x4f\x6f\x4d\xf3\xb6\x74\x8c\xae\xe9\xd3\x0e\x1e\x6a\x22\x83\xdf\x4f\xd8\xf4\x2c\x44\xf7\xc0\xc0\x90\xa7\x40\xc0\xec\x9a\x2b\x8d\xb6\xa6\xd9\x98\x49\xa3\xee\xa4\x64\x5c\x26\x79\x0b\x9b\x30\xbc\x23\xc6\xd2\x8b\xff\x5d\xdf\xdf\xb1\xe4\xc8\xf7\xe7\xfa\xf3\xb1\xbc\x47\xe4\x68\x1b\x9e\x88\x7e\x53\xdb\x46\xfd\x37\xd2\x95\x8c\x54\xd1\xeb\xa9\x2f\x20\x50\xdf\x60\x91\x60\xa0\x86\xa3\xb9\x35\x4d\xb4\xcd\xb2\x7b\x4b\x51\x5e\xa6\xd9\x58\x94\x39\x3a\xc4\x41\xfa\x2d\xd6\xea\x5d\x84\xad\x80\x3d\x88\xac\x0b\x58\xee\xcc\x47\x01\xf4\x6f\xe1\x3d\xfd\x38\xb9\x99\xa2\xed\xf8\x69\x47\x5a\x36\x38\xb8\x41\x3f\xc2\x4b\x5a\x69\xec\xa3\xb8\x65\x22\x86\xfa\x67\xba\x44\xe5\x79\x8b\x46\x10\x07\x2f\xf0\x96\x36\xb6\xa6\x59\xf9\xb0\x20\x07\x64\x67\x09\xed\x8e\x92\x56\x6b\x84\x19\xef\x33\x29\x88\xa3\x06\x13\x5d\xb4\x6c\x0e\xa7\x3e\x67\x19\x42\xb7\xb4\x94\x62\x59\xd1\x28\x09\xdc\x72\x68\x2e\x2f\xc8\x5c\x4c\xf1\x0e\x12\xb8\xdd\x4b\x28\x16\x70\xd0\x17\xc0\x23\x44\x93\x9b\x29\x44\x18\xa2\x1d\xc6\x25\x2c\x74\x0f\xf7\x65\x71\x0f\xbd\xc5\x80\x5e\x66\xd9\x5b\xce\x8f\x3f\x20\x7d\x4a\x31\x3c\x20\x71\xdc\x30\x3c\x9a\xe6\x03\x12\x47\x07\x63\x40\x6f\xb3\xec\x3d\xe6\x25\x37\x18\xb6\xa6\x79\x6f\x09\x1e\x21\x87\x71\xea\xb7\x14\x42\xde\xd2\xb5\x55\x05\xf8\x28\x01\x06\x8f\x70\x83\xc1\x43\xe5\x0b\x14\x60\x88\xad\x77\xd7\xd7\x5f\xd3\x46\x1e\x9a\x64\x83\xf8\x7c\xe1\x7a\xc2\xa6\xf4\x16\x7c\xe4\x5b\xdf\x34\x7d\xeb\xc7\xa6\x6f\xbd\x7e\x81\x6e\x1b\xf4\x0e\xc3\x35\x86\x6d\x96\xad\xad\x9c\xb4\xe3\x9f\xc0\x23\x86\x5b\x49\xce\x74\x89\x63\x77\x15\x94\xea\xb4\x49\xa7\x0d\x9d\x2e\xe9\x74\x35\x94\x72\x48\xd7\x81\x6e\x8f\x74\x7b\x0a\x56\xf5\xfa\xa4\xd7\x2f\x43\x2c\x18\x0e\xc9\x90\x73\xc6\xed\xa3\xc2\xed\x12\x72\x53\x06\xad\xc4\x70\xad\x9e\xd5\x35\x76\x67\xfb\x19\xda\xce\x6f\x6e\x98\x69\xa2\x9b\x1b\x46\x23\xac\x78\xe2\x1a\xe9\xea\x31\x9e\x58\x00\xc4\x61\xff\x94\x1e\x51\x88\x7e\xd8\x38\xb2\x16\xa2\xc4\x47\x36\x04\x18\x13\x36\x49\xa6\x54\x28\x79\x14\x8d\xd6\x27\xc3\x3e\xef\xfd\x84\xd0\xd1\xe9\x9c\xea\x88\x73\x5b\x88\x95\x25\x7c\x39\x57\xac\x53\x60\x07\x4a\x98\xed\x90\x7d\x41\x7c\x50\xa2\xc3\xf2\x6c\x0b\x3b\x2d\xca\x3e\xa8\xcd\x29\x80\x83\xfa\x10\xe9\x2f\xda\x75\x5f\x94\xdc\xfc\xca\xdf\x00\xc7\x8e\x47\x23\x8c\x30\xe5\x63\x94\x94\x1c\x8c\x76\xb9\x28\x8a\xaf\x57\x8d\x8c\xb2\x76\xb7\x3a\x42\xe1\xb1\x97\x5b\xf7\x4e\x66\x72\x86\x70\xff\x45\xc9\x41\x0f\xbc\x5a\x72\xf5\x6a\x38\x66\xc4\xb0\x8d\x26\x2b\xcb\x11\x6a\xc4\x58\x86\xdd\x1e\x74\x5b\x76\xbf\xe5\x76\x3f\xd9\x7d\x62\xf7\x48\x7b\x68\x0d\x87\xc3\x7f\x36\x1a\x34\x94\x0b\x91\x3b\xca\xb5\xba\xcc\x69\xb7\x38\x7f\x80\xb3\xac\x51\x69\x6c\xbf\xea\x3b\xef\x1d\xaf\x36\x2e\x55\xe1\x24\x8b\x1f\xbf\xf6\x03\x3f\x61\xc8\x2f\x45\x7e\xd2\xfa\xdc\xef\xbc\xe0\x4e\x0b\xd9\xdf\x48\xcf\xb1\xf3\xc4\x5f\x33\x2d\x4b\x3f\x2b\x78\x25\x48\x28\x53\x49\x13\x5f\xa7\xab\xd5\x5f\x65\xea\xc6\x20\x2f\x7c\x5b\x49\xdc\x0c\x11\x4d\x54\x9c\x8f\xe4\x4a\x66\xc1\x6d\x96\x03\x71\x44\x4d\x64\xd8\xfc\x3f\xa3\x99\xa7\x63\xe3\xd4\x92\x94\x48\x45\xe3\x56\x8f\xb4\x3a\xb8\x69\xb4\x8c\xa6\x87\xf2\x2e\xf2\xf4\x9f\x7b\x2f\xa4\x13\x2f\x6e\x1a\x9f\xca\xa5\x7f\x96\x99\xa8\x31\xef\xb8\xdc\x8a\x4e\x47\xbd\xff\x22\x0f\x5d\x82\x9b\x86\x65\x34\x51\x70\x35\x1c\x8e\x03\xb1\xa5\x1e\x0a\x78\xe9\x3f\x1b\x3b\x12\xee\xe0\x49\x80\x28\x7e\xd6\x9e\x2d\xb8\xd6\x72\x4f\xf7\xc8\x8d\x95\x76\x18\x79\xde\x22\xca\x4c\xb3\xb0\xca\x10\xbf\x54\x20\x02\xf1\xf3\x50\x43\xf2\x26\x37\x02\x58\xfa\x41\x52\xca\x38\x83\xb4\x90\xbb\x68\x8e\x49\x73\x05\xb7\x43\x1c\xb7\x23\x49\x43\x3e\x97\x67\x1a\x2d\x94\xf2\xec\xd5\x8c\xe3\x95\x17\xfc\x7d\x72\xce\x0f\xda\xf9\x9a\x25\xcb\x70\x7e\x1e\x06\xe7\x22\x3c\xc2\xbe\x3d\x42\xbb\x46\x90\x59\xf4\xd7\x10\xf7\xb3\x46\x04\xdc\x6f\x28\x51\xab\x72\xd7\xd3\xd6\x5c\xe8\x69\x07\x86\x77\x54\x34\xd2\xdf\xed\xb0\xe5\x09\x1b\x7d\xbd\x79\x9d\x1a\x51\xe7\xbe\x36\xa7\xeb\x60\x6b\x1e\xce\x04\x9c\x81\x90\x46\x88\xf3\x0a\x11\xbf\x4a\x11\xf3\x12\x76\xbd\x62\xfc\xcd\x17\xd4\xc7\xe1\x78\xaf\x3e\xe7\x07\x9e\x04\xd0\x92\xf8\x4d\x4b\xce\x3b\x35\xec\x78\xd1\xb2\x51\x22\x09\x38\x73\x52\x32\x65\x03\x3f\xfe\xa0\x21\xd5\xfb\x05\x6c\x54\xf1\x9b\xf8\x3a\x48\xd7\x4c\xb8\x7e\x80\x8e\x54\xab\x60\x98\x16\x15\x83\x76\x10\x16\x5c\x61\x22\x74\x07\x72\x83\x3a\x27\xb4\xe8\x03\x25\x0f\x18\x74\x25\xe9\x3f\x38\x62\x60\x54\x68\x5a\x18\x87\x15\xbe\xb5\x10\xba\x41\xac\xe9\x2e\x0f\x62\xca\xab\x41\x4a\x43\x6b\x01\x2b\x6a\x8f\x72\x99\xdb\x6a\x84\x53\x25\xa9\x06\x8f\xc6\x93\x55\xb3\x39\x15\x94\xb3\x60\x8e\x3d\x5c\x31\x06\x18\x74\xc9\xa0\x0b\x83\x01\x19\x0c\x60\x30\x24\x03\x7e\xa2\x3b\x27\xb4\xdd\x9a\x77\x69\x6b\xa5\xa8\x52\x76\x73\x1e\x26\x56\x42\xec\xb4\x36\x1c\xb3\x88\x0a\x00\x4b\xce\xb1\x98\xa9\xf5\x9a\x33\x2c\x66\x6a\x7d\x03\x6b\xf1\xf7\x23\x3c\x8a\xbf\x1f\x60\x2b\xfe\x7e\x05\x77\x74\x3e\x8e\xc8\x7a\x1c\x4d\x92\x69\x96\x21\xfe\x87\x3e\xed\x30\x41\xb2\xe0\x69\x57\xa2\xfc\xe0\x96\xce\xc7\x3e\xf1\x65\x55\x5f\x55\x85\x1b\x5a\x22\xc4\xb2\xac\x4c\x96\xf1\xf7\x42\x7c\xb9\xe2\x54\xc5\x5c\x26\x84\xc2\x10\xe0\x05\x45\x68\x46\x1b\x1b\xd3\xbc\x33\xcd\xdc\x94\xe8\x6e\xb2\x9a\xe2\xf1\x1d\x09\xf0\x64\x35\x85\x25\xdd\x9a\xe6\x6c\x1c\xa3\x05\x44\x98\x3c\xd6\x6a\x26\x16\xe3\x18\xe5\x8a\x34\xbe\x1b\xb0\xc0\x64\x01\x77\xa6\xe9\xa1\x3b\x58\xc1\x02\xf8\x34\xbf\xc7\x70\x3b\x59\x4d\x1b\x74\x61\x9a\x21\xba\x85\x15\x2c\x05\x55\x7a\xa3\x0b\x11\x7f\xa2\x0b\xbc\x3b\x8b\xac\x59\x18\x31\xea\x43\x6a\xbd\xa6\x0e\xa4\xd6\x37\xd4\x85\xd4\xfa\x48\x3b\x90\x5a\x1f\xe8\x00\x52\xeb\x2b\xea\xf4\x20\xb5\x7e\xa4\x6d\xfe\xe6\x7b\xda\xe3\xaf\xbe\xa3\x8e\x3b\x28\xc9\x29\xd2\x1d\x3c\x09\x43\x3e\xad\x0b\x97\xa4\x62\x9b\x74\xdb\x39\x49\xd8\x39\xa5\x17\x17\x2a\xa8\xb5\x97\xcc\x96\xa7\xd5\xb3\xf4\xc2\xba\x38\x4b\xa2\xc7\x27\xe3\xc2\xba\x30\x26\x6c\x8a\x12\x5c\x28\x7f\x4a\x5a\xa1\x64\x12\x4d\x69\xc3\x81\xc6\x61\x45\x1f\x3f\x69\x9a\xa6\x62\xa8\xc6\xc7\x58\x43\xdf\xd5\x8f\xa6\xe8\xaa\xd1\x60\x48\x37\x9d\x14\xe1\xca\x77\x0a\xb4\x76\xbe\x44\x02\x49\x37\x8c\x42\xba\xa7\xb0\x53\x57\x5d\x06\x4e\x19\x09\x4d\x8e\x62\xe4\xf9\x52\x09\x4e\xde\xb1\x1d\xce\xca\xc7\x25\xc5\x36\xcc\x68\x23\x44\x7b\x9a\x52\x26\xd6\x2c\xa7\xd8\xd8\x03\x9b\x1d\xc6\xae\x9a\x4c\x8b\x1a\x77\x51\x98\x6e\x62\xfa\xe4\x11\xa3\x6f\xec\x80\xed\xc0\xe8\x73\x4c\x67\x18\x79\xc4\x31\x06\xc6\x9f\x2e\xbd\x2b\x83\x73\x72\x8b\xc3\xd6\x2e\xd0\x98\xe0\x0b\x41\xa4\xf0\xee\xce\x0e\x7b\xcd\xf9\x59\x45\x40\x72\x9a\xa6\x44\x43\xea\xe4\xfe\xde\xad\x06\x85\x05\xce\x72\x29\xa5\xda\x96\xcc\x34\x0d\xcf\xe0\xbf\x27\xf6\xd4\x34\x8d\x5b\xf9\xec\x4c\x77\xe8\x14\x2d\x2e\x43\x9f\xc5\x1c\xd4\x6d\x6a\x16\x2c\xa1\x4f\xb9\x0a\x36\x99\x2c\xa7\x35\xe3\xee\xef\xa0\xdf\xa0\x86\x3e\x57\x18\xe6\x74\x33\xae\x6b\xa9\xe1\x40\x40\x2f\xbc\x7c\xfd\x83\xa3\x2b\xa1\xd3\xd5\xee\xc0\x10\x33\xd6\xde\xcc\x41\x85\xfb\x7c\x12\xde\xcc\x45\x81\xb8\xc8\x07\x8d\x05\x3b\x0c\xc1\x64\x39\x45\x86\x81\xa1\x91\xec\xb4\xe1\x8d\x70\x73\xdd\x64\x59\x63\x9e\x65\x86\xda\x4b\xd5\x4f\x63\x96\x65\x95\x8e\x1b\x0b\x39\x87\x35\x3f\x3e\x93\xe5\x14\x1e\x69\x80\x3c\x58\x82\x98\xf5\xa9\x30\x21\x89\x9c\x23\xa5\xe9\x78\x63\x9a\x0d\x7f\xfc\x34\x0f\x03\x46\x1a\xb6\x44\x6f\x64\x5d\xe1\x49\xc8\xde\x5b\xc5\x7d\x04\x22\x93\x71\xfe\xd6\xd9\xed\x30\x6c\xe9\xe3\xc4\x9e\xc2\x1d\x7d\x9c\x38\xd3\xb3\x08\x69\x7b\xe7\x1c\x62\x33\xd8\x62\xf0\x91\x0c\x87\x5c\x2a\x5f\x82\x4b\x69\x32\xae\x15\x4b\xdf\x69\xb4\xa6\x84\x84\xbb\x1a\x01\x72\xb5\x12\xde\x69\xf1\xbf\x43\x1c\xdb\x81\x5c\x2b\xac\x5c\x29\xda\x03\xd2\x1e\x28\xce\x79\x0f\x04\xfe\x0e\x12\xb5\xee\xfc\xea\xfb\xa5\xc9\xc8\x84\x16\x44\x3c\xb3\xa4\xf3\xa4\x69\xa2\xa4\x49\x8d\x3b\x21\xf7\xf5\xef\x82\x30\x62\xaf\xbc\x98\xa9\x62\x29\x0e\x5e\xa7\xab\xc4\x5f\xf9\x81\x2e\x5d\x8b\xd2\x34\xf0\x67\xe1\x5c\x97\xa5\xa2\x2c\x4e\xfc\xd9\xe7\x47\x55\xf4\x68\x60\x90\x06\x29\x8a\x4c\xed\x7c\xc9\x9c\x3e\x27\xe1\xec\xaa\xad\x88\x30\x63\xab\xe8\xa7\x05\x02\xf0\xe3\x57\xc2\xa4\xe3\xe3\x26\x62\xde\x9c\x53\x4a\xb5\xd8\x40\x39\x81\xab\xa0\x40\x1c\xfd\x17\xc2\xa3\x39\xac\xe1\x91\xce\x60\x4b\x6d\xb8\xa3\x8d\xc6\x92\xe3\xc6\x25\x6c\xa0\x8d\x47\xdb\xcb\x95\x34\x80\xda\x4a\x33\x3e\xfe\x38\xa7\x77\xe3\x3b\x94\x4e\xb6\x53\xd8\x42\x80\x89\x78\x5a\xf3\x7b\xeb\xa3\x39\x36\x4d\xb4\xa6\x39\xc2\x46\x6b\x3a\x9f\xc4\x53\x3c\x6e\x34\xd6\x24\x42\x73\x8c\x61\x6d\x9a\x8b\x2b\x1b\x3f\x52\x39\xa4\x39\x84\x68\x9e\x1b\x63\x3d\xc2\xa2\xe5\xe0\x96\x23\xec\xd6\x78\x67\x8f\x57\x74\x68\xdb\x7d\x67\x38\x74\xbb\x9d\x7e\xc7\x1e\x0e\x9d\x03\xaa\x1d\x9f\x25\x93\xc7\x29\x9d\xef\x1e\x9b\xcd\xdd\xb6\xd9\xd4\xdc\xf7\x63\xc5\x24\x4a\x1d\x39\x89\x6d\xab\x76\x41\x9d\x13\xb6\xc5\xda\xae\xb0\xd7\x51\x94\x96\x92\x12\x3b\x8a\xd2\x12\xfb\x22\x90\x4b\xbb\xc3\x91\xcb\xd3\x0e\x66\xf4\x69\x37\xe2\x84\xcc\x31\x19\xf0\x02\x96\xb2\x83\x0d\xcc\xa5\x40\x98\x2e\xc7\x35\xb2\x82\x1d\x49\x39\xc4\xbd\xa3\x11\xe2\x1f\x25\x63\x97\x38\x18\x6e\xa9\x7d\x56\x6f\x7d\xbf\x3d\x65\xe6\xec\x27\x92\x92\x6e\x18\xd2\x47\x1f\x6d\x95\xf9\xce\x86\xc3\x75\xbd\x03\xa3\xcd\xd5\xed\xe8\x56\x19\x1a\x3e\xd2\x64\x7c\x87\x3c\x34\xa7\x6c\x72\x3b\xc5\x1c\x92\xcc\x27\xce\x14\x93\x3b\x24\x0a\x30\xa5\x74\x95\x65\x8f\x94\xd2\x59\x9e\x88\xb3\x30\x05\x5d\xd3\xad\x36\xd5\x18\x35\xd0\x9c\xae\x95\x8c\x94\xf3\x24\x01\x1b\xa9\x2e\x7c\xb4\x86\x3b\x98\x4b\x07\x14\x48\x8e\x34\x8a\xad\xaf\xbe\xbb\x7e\xf9\x17\xba\x82\xc0\xfa\xee\xfa\xd3\xf7\xdf\xbd\xa3\xb3\xca\xee\x76\x88\xd3\x56\xdc\xa0\xa6\xa8\x86\xa4\x3b\x84\x5e\x87\xf4\x3a\xbb\x29\x74\x6b\xd8\xa5\x8a\x97\x84\xdd\xc7\xc8\x08\x44\x98\x8d\x96\xae\xd8\x4a\xc2\x96\x62\x6a\x21\xa7\x22\x35\xeb\x21\x1d\xa6\xfb\xc4\xb1\xfb\xbc\xfd\x1a\xe6\x67\x5f\x7c\x77\xdc\x0d\xdb\x34\xe5\x5f\xeb\xad\x97\x2c\xa9\xb0\xd8\xd6\x9e\xd9\xc7\x3c\xbb\x4d\x93\xff\x5b\xfe\x40\xb8\x7a\x17\x26\x56\x25\x0d\xb0\x81\x11\xae\x13\x15\xde\x09\x51\xe1\x5d\x2e\x2a\xec\x1e\xe5\x99\x9e\x76\x56\x95\x67\xfb\x92\xb1\x5c\x94\xc3\x7f\x6d\x9b\xd3\x3d\xc1\xcf\xd4\x8b\x1e\x85\x6d\xcd\x81\x01\x5a\xde\x81\x16\x40\x3a\x10\xe0\x0a\x12\xaa\xd4\x93\x82\x49\x10\x7c\xbb\x54\x31\x57\x05\x94\xdd\x13\x44\x76\x99\x7f\x2e\x0b\xc5\x4c\x33\xca\xcb\x15\x53\xac\xb9\x61\xde\xe2\x49\x92\xb8\x21\x66\x65\x9a\xbf\x5f\x44\xc0\x50\xc7\xc6\xc8\x98\xfb\x5b\x03\x3f\x53\x58\xa0\x74\xea\x36\xe9\xd8\xa0\x05\x07\xdd\x13\x56\x90\x5a\x70\xe0\xd8\x6d\xa1\xa6\xfb\x02\x49\x18\x82\x47\x93\x32\x71\xa5\x51\xab\xd7\xa0\x34\xa8\x65\xc8\x3c\xd3\x44\x21\xf5\x4a\xa6\x78\xbc\x6a\xf1\xd3\x34\x23\x14\x62\xd3\xf4\x4d\xd3\x47\x0c\x42\x2c\x77\xce\xb1\xdb\xc4\xb1\xdb\x39\xc8\xee\xd6\xd0\x05\xa7\xc7\x1a\x15\xf6\xf9\x81\x96\x1f\xe7\x9e\x00\x52\x8c\x6c\x6b\x31\x6f\x34\x66\x08\xe7\x74\x15\x3e\xab\x0a\x99\xf9\xdb\x64\x62\x4f\x71\x89\xf2\xe2\x3f\xf7\xa4\xcb\xba\x1a\x24\x02\x66\x56\xea\xca\xb2\x3d\xe1\x72\xe5\x03\x48\x26\x6e\xed\x57\xf2\x85\xfc\xb4\x73\xfc\x53\x48\x26\xed\xe3\xdf\xcb\xb7\xbb\x3d\xa1\x74\x50\xba\xac\xa7\xad\x20\x4b\xe7\x42\x59\x0e\x1a\xbf\x18\x42\x12\x70\x20\xb9\x41\x36\x1e\xcb\x3a\x35\x64\xa2\xf1\x51\x5b\x2d\x46\x88\xe1\x31\xd3\x52\x1c\x03\x93\xdc\x22\xb1\xec\xa0\xd5\x3d\xe5\x05\x54\x31\xce\xf4\x73\x47\x37\x08\x0f\xbc\xb4\x4e\xca\xbb\x72\xe2\x85\x09\x23\x20\xf1\xad\x8c\x69\x1b\x4e\x7c\x61\x94\x80\x2b\x26\xc6\x43\xd2\xe3\x43\xeb\x9d\x90\xc7\x55\x57\x4c\x39\x99\xc6\xe2\x6f\xd5\xb0\x57\xad\x8a\x78\xa3\x16\xa5\x3c\xfd\xde\x51\x24\xa3\xaf\x6e\x11\x05\xf6\xe4\x24\x85\x53\x94\x69\xe6\xc2\x75\xf1\x03\x31\x2c\x4c\x2e\x4a\xae\x4f\xbd\x1a\x84\x70\xaa\x5d\x23\xd4\xf6\xa2\x79\x26\x70\xa9\x33\xa4\xac\x36\xce\x95\x3a\x6d\xbd\x13\xa8\x41\x83\x24\x77\x58\xb6\x4c\x7f\x86\xe0\xa3\xb0\xc7\x10\x96\xc0\x05\x4d\x9a\x50\x36\x09\x05\x4d\x9a\x10\x43\x72\x3e\x06\x15\x76\x10\xf8\xc0\x64\x35\x07\x38\xbd\x53\xb2\x98\xa3\xfe\x89\x10\x70\x2e\xaf\x24\x64\xf1\xc7\x09\x8a\x50\x20\x68\xa9\x40\xc0\x85\x04\x05\x5a\x16\xa2\x7c\x73\x42\xca\x2c\x59\x5d\x85\x42\xca\x87\x1e\x0a\xe8\xa8\x89\x2a\x0c\xde\xae\xcc\x5b\xf4\x6a\xf0\x4e\x2d\x6f\xd1\x1f\xe6\xd8\x56\x2e\xa9\x2d\x24\x26\x4f\xbb\x33\xe9\xb2\xe8\x41\xcd\x2d\xaa\x61\xc0\x85\x06\xbd\xd6\xb1\x51\x39\xa3\x96\x04\x7d\x11\xf2\xe0\x89\xd3\x7f\x44\x22\xec\x1d\x86\x90\xd7\x6b\x1a\xe7\x25\x9f\xd4\xb2\x4e\xb5\xec\x0b\xa9\xcc\xbf\x34\xce\xee\x3d\x57\x49\xd6\xb7\xeb\x6d\x3c\xba\x6d\x49\xbd\x73\x98\xc1\x89\xf7\x5e\x57\xd9\x78\xf0\x95\x98\x71\x82\xa4\xa7\x2d\xbe\xf6\x96\x61\x49\x1b\x68\x32\xb5\x3e\xb3\xc7\xd8\x34\x45\x60\x32\xc3\x0f\x54\x01\xc2\x18\x36\x47\xc2\x15\xef\x8e\x9f\x90\xb9\x36\x0a\x49\x05\x0f\x3f\x97\x92\xad\x3b\xb8\x85\x1b\xb8\x3f\x70\x67\x5c\x9a\x26\xe3\xcc\xd8\x7b\x4d\x1c\xbf\x9f\xb0\xe9\x59\xd5\xbb\x47\xda\xf2\x11\xf1\xa8\x4c\xf1\x0e\x34\x98\x65\xb7\x86\xf3\x20\xb7\xf6\x3a\xae\xba\xdc\xab\x07\xd7\xb4\xb2\x79\xf0\x40\x0b\xa3\xc1\x35\x7c\xe4\x0c\xe1\x7b\x5a\x3a\x02\xf0\x92\xbe\x9f\x2c\xa6\x59\xf6\x7e\x62\xfc\xe7\xff\x9c\x2f\xe9\x34\xcb\xd6\xa6\xf9\x7e\xb2\x9e\xc2\x67\xfa\x32\xcb\xee\xd1\x1a\xc3\x5b\xba\x1e\x3f\x8c\xef\x51\x6e\x52\x88\xc9\x67\x6d\xb0\xf9\x89\xe6\xf0\x31\x31\xcd\xf7\xda\x04\x23\xcb\x5e\x72\xbe\xe6\x13\x27\x69\xe9\x0c\x7d\x2a\xd4\x8b\x0c\x63\x4e\x64\x28\xa2\xaa\x44\x69\xdc\x08\x86\xc4\x34\xd1\x0a\xdd\xc0\xb5\xb0\x54\x8c\xb2\xac\x06\x4e\xdd\x88\x71\x7b\xe8\x06\x16\xb0\xc1\x18\x1e\x4c\xf3\xa5\x69\xea\xe9\x36\x28\x7d\x69\x05\xde\x9a\xe3\x8b\x8f\xb4\x61\x43\x5d\x06\xcc\x97\x25\xf5\xe5\x4e\x18\x98\x36\xb6\x59\xc6\x77\xb3\xf1\x91\x4f\x5f\x76\xf0\x1e\x16\xf0\x19\x83\x70\x96\xf8\x0c\xf1\xe4\x7a\x4a\x37\xb0\xe6\x9c\xd2\x1d\x7d\x92\xdd\x91\x87\xf1\x67\x72\x8f\x74\xe7\x18\xf8\x5e\x93\x47\x59\x28\xf6\x1d\x83\x5a\x12\xf2\x76\x07\x5b\xa1\xac\xb8\x95\xfe\x62\xe2\xcf\xfb\x2c\x0b\xd1\x7b\xb8\x85\x3b\xce\xc3\x29\x0f\x31\xe4\x5b\x1f\xa4\xdd\xc3\x32\xcb\x3e\x62\x48\xe0\x2e\x17\x1f\xde\xd5\x5d\x4b\x69\xec\x20\x2f\x67\xaf\x4b\x7a\x5d\x89\x08\xa1\x6f\x93\xbe\x0d\x83\x1e\x19\xf4\x72\x21\x4e\xaf\x86\x58\xab\xca\xb1\x4b\x17\xcc\xa7\x0d\x47\xc8\xab\x25\x28\x9c\xf4\xa7\x93\x68\x8a\xf0\x59\xa8\x60\x62\x79\x6d\x7d\xda\xb0\x77\xa0\xc2\x3f\x44\xe1\x1a\x85\x50\x31\xb0\xe4\xc0\xd3\xdd\x95\xc0\xeb\xee\x84\x1b\x79\x23\x31\xcd\x86\xbf\x6f\x1e\xb7\x3f\x18\x88\x69\x28\x07\x14\x8b\xd3\x73\xb8\xd5\x52\xfe\x16\x48\x97\x6e\x5e\xb7\xe6\x34\xc4\x3b\x60\x28\x2c\x0f\xac\xe2\x26\x9b\x4b\xd7\x7b\xcf\x76\xc5\xce\x7b\x97\x32\xc1\x04\xa4\x14\xb0\xc1\xb4\x54\xbd\x77\x52\x61\xf9\xa4\x6a\xf5\x4f\xb2\xc9\x0d\x47\xd5\x3a\x4a\x87\x08\xfa\x83\x3d\x6c\xd6\x4e\x09\xde\x35\xa2\x2c\x8b\x90\x63\xe3\x2b\xd7\xb5\xdd\xae\xd5\xe9\x75\xfb\xc3\xce\xc0\xee\xf5\x9d\x81\x7a\x73\x59\xf7\xa6\xe5\xb2\x96\xd3\x6f\xd0\x08\xc9\x27\x5c\x67\x12\x66\x8b\x24\x04\x4d\x4e\x3d\x12\x76\xd5\x72\x58\xab\x67\x9a\xec\x92\xff\x1d\xb3\x26\x7b\xc1\x2e\x5c\xa2\x47\x85\x18\x6e\x39\x3b\x12\xa9\x59\x9c\xd0\x10\xf6\x3b\x39\x35\xb5\x09\xef\x21\xa4\x3e\x72\xa1\xd5\x95\x79\x46\xf8\xa3\xdb\x96\x5e\xd9\x2e\x38\x6e\x1f\xbf\x40\x6e\x4b\x79\x67\xbb\xd0\x72\xaa\xae\xa6\x92\x26\x13\xe9\x06\x6a\xdc\xb8\x38\x89\x90\x67\x6a\x41\x8c\xe3\xa1\xa8\x24\xbb\xf7\x2f\xd3\xf1\xea\x05\xf2\x2f\xd2\x0b\xaf\xe9\x5c\x84\x2d\xe7\x22\xc4\x2f\xd2\x17\x1e\x41\x01\x27\x65\x90\xd3\xf4\x78\x89\x8f\x5b\x28\x69\xf9\x18\x5f\xc5\x59\x16\x34\x68\xc0\xbf\x72\x2e\x6c\x4c\x56\x2f\xc4\xa1\xea\x77\x48\xbf\xc3\x67\x5d\x43\x6b\xed\x8d\x75\x15\xde\x39\x9b\x3a\xc2\x54\x2e\xb4\x58\xe4\x81\x5a\xe4\xc1\x98\xb5\x4a\x8b\xbc\x0a\xef\x90\x23\xb3\x09\x88\x25\x3e\x19\x4f\x42\x7c\x11\xfb\x77\x41\x5d\x5f\xc5\xc6\x66\x19\x6b\x50\xc6\xb7\xf7\xd2\x16\x0e\x9a\xba\xf1\x53\xa6\x45\xee\x80\x53\x89\x2c\xf1\x8c\x3d\x9f\x3b\x25\x46\x95\x0e\x40\x31\xb5\x21\xd5\x98\xc1\x8f\xaf\x1f\x12\x16\xc4\xfe\xed\x8a\x95\x46\x54\x52\x50\xc1\xea\xb8\x66\x3f\x45\x39\x82\x61\x5b\x16\x24\xaa\xad\x30\x88\xd1\xd3\x4e\x44\x8b\x9e\x55\x70\xb9\x87\x18\x44\xa0\xae\xeb\x93\x4f\x8c\xf7\x46\xf3\xbc\xd9\x8c\xe1\x5e\x28\xd7\xf1\x0e\x16\x65\xcb\xaf\xbf\x5c\xff\x95\x44\xf0\xee\xfa\xfa\x6b\xd2\x70\x40\xf9\x19\x91\x43\x20\xe6\x17\x26\xbe\x46\xfc\xb8\xbe\x0d\x57\x65\x62\x9c\x11\xb4\xef\x28\x76\xce\xc6\x22\xdb\xcb\x07\x03\x37\x65\x54\xcf\x50\x58\x44\xcb\xe6\xd2\x52\x73\xaf\x0d\x99\x71\x57\xff\xbe\x36\xce\x66\x9c\x41\xc9\x05\x2d\xd1\xd4\xf2\x85\x43\xc4\x8f\xcc\xfb\x5c\x33\xb6\x23\x0d\x37\xec\x4a\xbb\x0d\xe7\xb0\xd9\xfb\x1d\x84\xc1\xeb\x88\xb1\x5f\x58\x9d\xb2\x61\x65\x9a\x0b\x61\xdc\x67\x9a\xa9\xa0\xf6\x55\x57\xa6\xc9\x5b\x02\xa6\x3c\x91\x07\xc4\x71\x73\x35\x43\xc9\x80\x58\x08\x84\xf8\x81\x3a\x21\x19\xd1\x1a\x77\xc7\xe9\x0b\xc9\x88\x70\xfe\x79\x9b\x26\x22\x5e\xc5\xfb\xdb\x98\x45\x5b\xc6\xc1\x9c\xf5\x23\xbb\xfd\x8b\x9f\xec\xbf\x01\x8f\x46\x9c\xf4\x98\xb1\x38\x86\x98\x46\x3a\x30\x0e\xa4\xd4\x50\xc5\x06\x95\x5c\x0e\xf2\x4e\x69\x32\xa4\xfb\xd6\x81\x6f\x27\xf8\x32\x78\x03\x67\x59\xa9\x67\xcd\xc3\xb5\xe7\x07\xd8\x34\x23\x8b\x3d\xf8\x09\xc2\x23\x36\xe2\xe8\x92\x59\x8b\x00\x18\x65\x02\x75\x09\xc4\xe6\xe7\x9a\xd8\x50\x63\x4c\x36\x0e\x10\x26\xb9\x7f\x47\xb8\xdb\xe5\xcf\x42\xf2\xc5\x82\x84\x45\x48\x9a\xce\xa6\xb8\x82\x90\x3d\xd1\xf0\x27\x7f\xf6\x19\xad\xf0\x2e\xf7\x3e\x6f\x84\x7c\x65\x02\x6f\xeb\xdf\x71\x2c\xcf\x1b\xc9\x7f\x58\x45\x1a\x6e\x4e\xe7\xc4\xa6\x19\x5b\x11\x8b\xc3\xd5\x96\x69\x27\xb5\xbc\x40\x31\x71\xf8\xac\xd2\xe9\xcc\x4a\x96\x2c\xe0\x1d\xaa\x48\xd3\x15\x12\x41\xd2\x5d\x11\xe8\xf1\x88\x36\x17\x9c\x4c\x5b\x52\x2d\xc3\x53\xf6\x2d\x9f\xd8\x43\xf2\x2e\x9c\x33\x64\x18\xf8\x8c\x53\x8e\x21\x5a\x61\x2b\x94\x5b\x88\x96\xf0\x34\x5b\x7a\x91\x37\x4b\x58\xf4\xb5\x97\x78\xa4\x61\xef\x30\x54\x3a\x5b\x5a\x73\x2f\xf1\xe8\x82\x36\x16\x87\x84\x74\xee\x3a\xf6\xb4\x08\x48\x04\x82\x17\x52\x2e\x3e\x67\xc2\x41\x47\xd2\x13\x3e\x06\x96\x65\x88\x51\x1f\x02\xce\x50\x24\xd4\x57\x61\x11\xfa\xc4\x71\xfa\x8a\x2d\xd5\xb2\xc6\xfe\xef\xf0\x3d\x2e\xd2\x80\xf9\x25\xec\x73\x26\x6c\xfa\x37\xf2\x38\x0a\x3b\xe2\x7d\xd7\x08\x7f\x51\x30\xcf\x49\x29\xb0\x4b\x70\x68\x3f\xf5\x95\x37\x3f\x57\x27\xfb\xbc\x24\x16\xe4\x8c\x3a\x65\x10\xd0\x68\xa7\x1c\x9d\xd4\x86\xca\x18\x14\xaa\x84\x43\x4f\xca\x99\xe3\x82\x4a\xb3\x16\x75\x12\x1a\x3e\x48\x5f\x89\x46\xb4\xdd\x64\xff\xb9\x8a\xb5\x1a\xdb\x1f\x15\x4f\x40\xf1\x84\x5d\xe1\x04\xa4\x80\xb9\x17\x73\xfc\x54\xa6\x65\xd2\x2c\x3b\x40\x01\x52\xc7\xf8\xb4\x83\x44\xa8\x9b\xe9\x47\x01\x78\x85\x19\xa1\xe1\xdd\xce\xe6\x6c\x71\xb7\xf4\x7f\xfe\xbc\x5a\x07\xe1\xe6\x6f\x51\x9c\x14\x2a\xc8\x49\x30\xa5\x7d\x88\x0a\xb9\x97\x36\x38\xaf\x58\x81\x8b\x98\xe8\x6c\x87\xa1\xdf\xa0\x29\x7a\xda\x01\xc3\x93\x80\x73\x52\x72\x90\x82\xf7\x14\xe5\x09\xc6\xca\x87\xda\xc0\x0d\xbe\xda\x7b\x1a\xdc\xdc\x53\x90\x7a\xd2\x6c\xe9\x20\xfe\xc9\x8a\x3a\x30\xa3\xbe\xb5\x80\x05\x0d\xad\xc5\x28\xbd\x5a\x8d\x72\x7b\xa7\x25\x6c\x68\x5c\xb8\x8d\x4b\x9b\x26\x98\xd3\xd9\x38\x42\x1b\xac\xbd\xcb\x67\x68\x83\x31\xe1\x25\xb0\xa6\x5a\xb7\x07\x8f\xd4\x1e\xad\xaf\x1e\x47\x78\x21\x6f\xe4\x86\xdf\xbf\xc9\xa3\xb4\x8a\x42\xc1\x64\x39\xa5\x9b\xc9\xb2\x08\x87\x1c\xec\x48\x2a\xa0\xb6\x0c\x65\xa0\xa0\xf6\x80\x74\x07\x50\x67\x2d\xd5\x3f\x21\x19\xd4\xe6\x8b\x03\x47\x19\x88\x38\x6a\xcb\xed\x1e\x46\xc6\x9b\xeb\x9b\x0f\xdf\xbd\xff\xf4\xde\xe0\xdb\x5f\xda\xd4\xdd\xa1\x0b\x7d\x02\x01\x55\x52\x78\x7f\x11\x79\x6b\x66\xf0\x2d\x0e\xd5\x14\xa5\x97\xae\x15\x27\x8f\x2b\x66\xcd\xfd\x78\xb3\xf2\x1e\xa9\x11\x84\x01\x33\x80\xa1\x6e\x07\x5b\xde\x66\xc3\x82\xf9\xab\xa5\xbf\x9a\xa3\x00\x43\x60\xc5\xd1\x8c\x1a\x3f\x7b\x5b\x4f\xc6\x72\x23\x06\xa0\x44\xba\xe9\x27\x2c\x48\x7e\x94\x3a\x21\x0d\xa5\xb0\x15\x6e\x58\x80\x30\x24\xd6\x7d\xe4\x27\x0c\x19\x97\xf2\xb3\xab\x1c\x8e\xbd\x56\xe7\xf6\xf2\xa7\x0b\xf5\x4a\x44\x17\x9e\xad\x42\x91\x19\x3e\xa5\x89\xf5\x7a\x14\xb5\x5a\x23\xac\xac\xe9\x4b\xfe\xf1\x13\xce\xab\xe4\x46\x2d\x29\x07\xf0\xfb\x52\x5e\x05\x27\x6b\x23\x17\x55\x7d\x04\x28\x1b\xa3\xb8\x22\xfe\x11\x16\x74\xfc\xe6\xc6\x50\x7e\x21\x92\x2d\x88\x48\xde\x0c\x93\x80\xa6\xa8\x12\xd2\x21\x20\x7e\x2e\x95\x76\xec\x1e\x71\xec\x9e\xd2\xf1\x29\x9d\x86\x43\x3a\x0e\x74\x3b\xa4\xdb\x81\x81\x43\x06\x1c\x24\x0e\x4e\x08\x62\xf5\x49\xe8\x76\xb5\x56\xbd\xc3\x8f\x42\xad\xbe\xe5\x2c\xb0\x16\x4a\x05\x55\xfb\xfe\x40\xe1\xa4\x0d\xd6\x13\x1a\x2a\xaf\x53\x0e\xcc\xc0\xc7\x25\xf9\x9f\xa7\x2a\x2b\x9c\x1b\xe3\xa7\x9d\xbf\x90\xbe\x0f\x7e\x70\x1e\x64\x99\xf0\x02\xe2\x8f\x87\xc0\xf5\xe5\x8c\x93\x09\x61\x24\xf5\xb9\x71\xba\xe1\x5b\xc3\xe6\x45\xd8\x2a\x29\x13\x10\x5f\x9b\x26\x92\x8a\x2f\xa9\x57\xd5\x5a\x94\xb2\xd1\xac\x72\xb8\xec\x76\x49\xb7\xcb\x97\xed\x84\x6c\x59\xab\xe7\x1c\x25\x83\x1d\x0c\x0e\xd5\x74\x75\x6b\xe4\xb3\x78\x9f\x0c\xe4\xac\x4d\xe1\xaf\xec\xc9\xe0\x38\x31\xf5\x34\x98\x48\xa9\x3d\x8a\xaf\xd2\x11\x96\xfa\xbd\x80\x7a\x93\xb4\xd9\x9c\x42\x32\x09\xa6\x55\x23\xdc\xf2\x24\xa4\x4a\x4f\x40\x04\x3e\x95\x53\xa6\x9f\xfb\xb2\x4f\x57\x03\x03\x7e\x14\x62\xc5\x21\xa4\xea\x8c\xac\xe8\x17\x62\x2f\x96\x0e\xc9\xea\x90\xe2\x65\x34\x94\x07\xc2\x53\x07\x22\x2d\x9f\x05\xa5\x1d\x2d\x02\x31\x70\xf2\x47\x94\xe1\xdc\xfc\xb9\x11\x59\x8b\x42\x93\x0a\x7c\x4f\x95\xf9\xb3\x0e\x8e\x24\x77\x54\xed\xa5\x20\x6a\xc5\x8e\x4a\xc0\x98\x4b\x4c\x07\x27\x24\xec\x79\x4c\xa9\x41\x87\xf3\x44\x61\x39\x14\x03\x78\xf4\x40\xa6\x5f\x55\x59\x9b\x66\xed\x12\xbd\xf3\xd6\x2c\x1e\x1f\x7f\x85\xe4\xd7\x98\x4c\xa6\x67\x5f\x40\xf7\x9e\x69\x1a\x13\x39\x88\x73\x09\x12\xa7\x06\xa5\xb9\x18\x7c\x5c\x6f\x64\x28\x29\x84\x3d\x23\xc3\x73\x4f\x99\xe8\xe3\xdd\x0e\x31\x4c\x7c\x19\xd0\xa5\xbc\xa2\x83\x0e\x19\x70\x82\x62\x70\x42\xe0\x3f\xe8\x2b\xb1\xb2\x93\x23\x3d\x43\x9e\x5f\x03\x8c\x1c\xb6\x71\x22\xd2\x5a\xd4\x9f\x20\xb1\x06\xb5\x6c\x6f\x84\x98\x70\x21\x81\x27\x09\xdc\x06\x7d\x32\x10\x3b\x58\xc3\xed\x1e\x6d\x5e\x12\x20\xb1\xe4\x93\x07\xa7\xd8\x1a\x77\x2f\xbc\xd2\x01\x4e\xf4\x0e\x04\xa7\x87\x68\xe1\x8e\x25\x25\x03\xee\xda\x69\x31\x19\x82\x29\x12\x3a\xdd\x31\x9b\x84\xd3\x5a\x85\x50\x59\x99\x2c\x05\xdd\x79\x28\x9a\xca\xbb\x71\xe5\x57\x31\x36\x52\xf9\x44\x0e\x6f\xec\x89\x68\x29\x15\x1c\xa2\xa8\x0a\x71\x61\xf8\x12\x9d\x90\x50\x16\x4b\xa4\xc8\x07\xd7\xc5\xa8\x71\x84\x84\x38\x1d\x61\x4c\xc6\xf1\xe3\xe0\xc5\x86\x15\x9d\xa8\xb8\x1e\x32\x96\x4e\xd0\xa0\x9e\x69\x46\x28\x06\xce\xb7\xad\xa4\x99\x78\x20\x81\xe5\x48\x2b\xaa\x05\x60\xe4\x55\x68\x22\xc0\x22\x27\x9d\xfe\x35\x44\x2b\x08\x70\x96\xe5\xdf\xe4\x70\x72\x6f\xce\xf2\x80\x8b\xb0\xc7\xc5\xcc\x4f\x28\x7a\x4b\xc7\xfc\x70\xcf\x39\xd1\xf9\xfb\x0e\x70\x0d\x85\xc6\x0f\xf0\xd3\xae\x56\x6f\x2c\xcf\xee\xf0\x04\x32\xef\xb4\xab\x46\xf0\x9d\x13\x21\x9c\x24\xd1\x8b\x7c\x15\xee\x56\x18\xae\x4f\x58\x4e\x42\x4f\xd8\x54\x2a\xc0\x3c\x91\x1a\x87\xa3\xed\x08\x45\xd6\xc7\x66\x64\xbd\x7e\x51\x31\x52\x0d\xa4\x9f\xa6\x0e\x8c\x03\x9e\x98\xa9\xb4\xe4\x2e\x39\x00\xf2\xa1\x9f\x42\xa8\x83\xbd\x33\x35\x18\x62\x6b\xf1\xdc\x30\x7e\x25\x3a\x5e\x88\x23\x05\x06\x8d\x90\x10\x40\x96\x08\x79\x1b\x66\x74\x32\x95\x14\xbc\x82\x96\x1e\x04\x85\x2b\xc2\x4c\x9e\x17\x36\x9e\x04\xe0\x4d\x82\xe9\x94\x78\x65\x24\x3b\xdb\x55\xc0\x62\x85\xda\x1e\x9e\xc2\xb0\x9d\x2a\x83\xa5\x83\x2c\x74\x1d\x6c\x7d\xc7\x16\x2b\x36\x2b\x9b\x95\x78\xa6\xe9\x59\xe1\x7d\xf0\x97\x83\xe3\xa4\x5c\x2f\xac\x05\x0a\x85\xb2\x53\xfa\x5f\x68\x2a\x73\x9c\x68\xc8\xcb\x2b\x63\x52\x58\x59\x2a\x53\x7a\x01\xc7\x25\xab\xc0\x07\x7c\xda\x99\xc2\x2a\x52\xc1\x29\x29\x4f\x17\x8b\xd0\xbb\xa5\x91\x3a\x17\x11\xe2\x6f\x7a\xb8\x69\xb4\x6c\xce\x5f\xb5\x9c\x0b\x7b\x7c\x38\x64\x5f\x99\xd9\xf2\x9b\xde\xe6\xe3\x2e\xc5\x9b\x95\xf6\x27\xa6\x69\xb4\x38\xd0\x2b\xb2\xf8\x8f\x5b\x36\x09\xa4\x64\xda\x71\xba\xc4\x71\xba\xe0\x38\x3d\xe2\x38\xbd\x9c\xd5\x1f\x7e\xc1\x50\x49\x4c\xe1\x4d\xb0\x37\x01\x15\x23\xb2\xc7\xf7\xe0\xe2\x5f\x26\xad\xe6\x74\x6c\x4f\x1e\xfe\x69\x7a\x51\x9a\xd9\xa0\x41\x69\x84\xc2\xa6\x61\x0f\x0c\x9c\x65\xae\x9b\xff\x7e\x70\x7a\xc6\x3e\x0f\xa9\xc3\x06\x94\x27\x59\xe8\xda\x03\x48\xae\xae\xae\xec\x2c\x43\x9e\x95\xb0\x98\x5f\xa5\x31\x9f\x88\x8d\xf1\x17\xa6\xf7\x07\x1c\x09\x9e\x18\x69\x38\xb0\x25\x02\x9f\xef\xa1\xfa\x27\x69\x21\xcd\x0f\x86\x92\x17\x0f\x4f\x45\xf7\x1d\x56\xc5\xc4\xfd\xa3\x3e\xb0\x05\x9d\xef\x8b\xe8\x74\x15\xfb\x27\x61\x1d\xa2\xb5\xbe\x4a\x83\x14\x72\x42\x56\xaf\x10\xb2\x45\x3a\x2f\x29\xde\xe2\x17\x37\xd0\xa2\x97\xe2\xfc\xaa\xa8\x06\x7d\xd2\xe7\x60\x73\xf8\x6c\x4b\xa7\x62\xe6\x39\x10\x25\x0d\xe4\x98\x0c\x83\x4c\xdf\x96\xea\x32\x97\x97\x71\x1e\x52\xfd\xee\xf0\xdf\x4a\x71\x94\xaf\xd6\x09\xc4\x30\x3c\x61\xf0\x50\x00\x27\x9f\x23\xb6\x04\x0b\x7c\x00\xc9\xc4\x9f\x42\x50\xa5\xe0\xb5\x7e\x70\x78\x82\x77\xd7\x72\x57\xed\xdc\xa1\xe5\xf7\x52\xc0\x1f\x47\x33\x43\x51\xed\x9c\xba\xa6\xc8\x30\x9a\x31\xd6\xd2\x14\x4d\xc4\x1a\xf8\x4c\xc6\xd4\xf6\x83\x78\xc3\x66\xc9\xc7\x30\x8d\x66\xac\x0e\xc6\xc6\x9a\xa8\xdc\x01\x3a\x1e\x5b\x52\xc7\x10\xa9\x21\x60\x82\xb3\x95\x69\xa2\x10\x05\x60\x04\x42\x3e\x90\x65\x7e\xfe\x83\x53\xf6\x82\x84\x97\xd6\x71\x48\x57\xf5\x54\x2d\x4f\xbc\x1c\x1b\x46\x93\xff\x25\xa9\x14\xe5\xa8\x7b\x96\x60\xcc\xbf\x16\x51\x34\x24\x6b\x47\x62\xf1\xa0\x7f\xf9\x6a\xe9\x08\x52\xbc\x3d\x2f\x07\x5d\x8a\xf1\x0e\x17\x9e\x50\xa5\x90\x4c\xf9\x22\x1d\x5a\x78\xd4\x45\x7a\x5b\xfa\xb1\x0c\xc4\x32\x11\x89\x56\x2b\x5a\xed\x92\x90\x5d\x22\xc4\xae\x4d\xba\xb6\x76\x6d\x92\xbc\x89\x8e\x6c\x6d\x3f\x37\x52\x9b\x2b\x50\xe5\xbe\x83\x82\xf4\x92\x39\x8d\xed\x55\xa5\xfa\x00\x0f\xda\x82\x91\x06\x05\x7b\x25\xaa\x2a\x6e\x27\xb7\xb5\x0d\x71\x91\x3b\xbb\x12\xd3\x93\x0f\xe8\x9c\xf7\xa0\x5d\x45\xe5\xa2\xb1\xf9\x79\x1c\xf2\x12\x3f\xb8\x3b\x0f\x93\x25\x8b\x64\xa6\x28\x2f\x50\xe4\xe8\x79\x18\x09\x21\x49\xe1\xe5\x1a\x0a\x19\x80\xb2\x44\x6a\xd0\x72\xc8\xf2\xda\x5e\xff\x93\xe8\x55\x84\xdc\x13\x0e\xaa\x7e\x30\x0b\xd7\x1b\x2f\xf1\x6f\x57\xec\x3c\x62\x33\xe6\x6f\x59\x54\x72\xa2\xad\x9a\xe2\xba\x03\xe2\x0e\xc4\x16\x3c\x2b\x7c\x92\x88\xb4\xc5\x50\x47\xc4\xaa\xac\xdd\x06\x88\xe9\xbe\x5f\x89\x76\x7b\x82\x94\x7a\xb0\xa2\x28\xa2\x17\xde\x05\xf8\xf4\xe2\xf6\xc5\xc5\x1d\x78\x5a\x26\x6f\x78\x9c\xc1\x90\xbf\x7c\xf9\x4b\x44\x0c\xb7\x56\x5e\x9c\xbc\x09\xe6\xec\x21\xcb\x78\x81\x5f\x14\x60\x98\x15\xee\x05\x17\x08\x8f\xc7\x17\x62\x10\xc8\x30\xf0\xc4\x99\x8e\xd0\x2a\xcb\x66\x22\xf2\x63\x6d\x58\x45\x3e\x1d\x99\x7e\x3b\x27\x73\x84\xd3\x21\x5f\x67\x39\x39\x64\xfc\x8b\xd1\x4c\xad\x58\xc0\x88\xa6\xf1\x27\x34\x6e\xfc\xf4\x53\x8c\x0d\x50\x24\x54\xca\xaf\xa1\xf0\x19\xa1\x69\x79\x58\x91\x8e\xc2\x99\x02\x13\x15\x22\x11\x7e\x32\xaf\x41\x53\xe5\x6e\x32\x8e\x2c\x9f\x17\x34\xa3\x89\x3d\xd5\x31\xd8\x13\x0c\x33\xf1\x49\x94\xc7\x6c\x33\x4d\x75\xbb\x22\x61\x2c\xb6\x1f\x06\xcc\xa7\xce\xc8\xbf\xdc\x97\xdf\xb6\x5c\x11\x7d\x33\x17\xa1\x15\xb2\x5a\x7f\x6a\x9a\x48\x44\xe5\x54\x4a\x94\x9d\x08\xdc\xb1\xe7\x92\xd8\xe9\x93\x4e\x5f\x1c\x8e\x93\x96\x7f\xb9\xc6\x74\x5f\x14\x98\x73\x7b\x94\x26\x63\x61\x44\x99\x65\xce\x05\xa3\xd4\xb9\x48\x08\x6b\x50\x66\x9a\x49\x83\x26\x3a\xa8\xbb\xfd\x0c\xc3\x3f\x29\x74\x3a\x40\xc1\x82\x91\x6a\x14\x11\x62\x1b\x94\x26\x87\x71\xfe\x9b\x06\x39\x9f\x09\xa7\xee\x98\x25\xe7\x9e\xc8\x2c\x27\x8f\x68\xc3\xa8\x08\x38\x9f\x62\x96\x28\x9b\x53\x2b\xde\x63\x67\x91\x71\x73\x23\xbe\xbb\xb9\x31\xfc\xe0\x69\x57\x10\x44\x2a\x02\x3e\xa7\x48\x90\xf2\x16\xd9\x73\x37\x65\x68\x20\xd2\x2f\xec\x33\xd1\x50\x6a\x53\x2a\x14\x5d\x8c\x51\x02\x93\x29\xa7\x18\x65\x84\xd5\x9c\x8f\x15\x16\x2e\x25\x67\x4c\x61\x5c\xb2\xcf\x16\x94\xd7\x3f\x94\xe2\xa2\x60\xcc\xac\xbc\x1b\x9a\x90\x48\x49\x91\x76\x3b\xf4\xb4\x83\x86\xa3\xbd\xdc\x30\xcc\x96\x6c\xf6\x99\x84\x25\xb9\x9a\xf4\x93\x91\xfa\x51\x97\x0c\x5c\xb1\x5d\xcf\x0d\x25\xa2\xb1\xf6\x40\x85\x13\x6e\x6b\x25\xcb\xf3\xc3\x0a\x8b\xe0\x48\x67\xa1\x69\x26\xa6\x29\x92\x53\x9a\xa6\x6f\x2d\x50\x02\x1e\x3c\x55\xc9\x19\x1b\xea\xed\xe0\x85\xd9\xdd\xae\x62\xd3\xa9\xc4\x64\x92\x41\x50\x5a\x5f\xc7\x3e\x61\x47\x50\xc4\x09\xed\xba\x65\xfb\xd3\x4a\xec\xd7\x13\xb4\x10\x13\x01\x8e\x19\x0d\xc6\x8c\x94\x6d\xe1\x42\xe1\x88\xcf\x20\x3c\x9c\x8c\xa6\xc3\x2a\x03\x97\xd8\xb3\x18\xf2\x29\x52\x56\x78\xb2\x28\x4b\x30\x5f\x91\x4a\x5f\x08\xa9\x2a\x58\x61\x14\x89\xd4\xbb\xb9\x40\x4c\xfa\xb6\x80\x42\xe9\xa2\xdb\x13\x62\x92\x76\x3b\x8f\x39\x00\x21\xf5\x27\xc6\xcd\xcd\x2c\x8c\x58\xeb\xe7\xf8\x26\x5e\x7a\x11\x9b\xdf\xdc\x18\xd2\x2d\xbc\xf6\x0d\x7d\xda\xe1\xd1\x11\x9a\xab\x38\xd6\x72\x9c\xfc\x4f\x81\x04\x92\x71\x22\xd2\x17\x62\x64\xe8\x7c\x8f\x06\xbf\x46\x92\xbb\xcd\x43\xe6\x44\x3a\x57\x37\xac\xc3\x39\x23\xc2\x36\x74\x6c\x6c\xd2\x88\x19\xc4\x90\x90\xd9\x80\x59\xb8\x79\x8c\xfc\xbb\x65\x42\x8c\x7f\xfb\xbf\xce\x5d\xdb\x19\x9e\x7f\xcd\x02\x3f\x3e\xff\x90\xc6\xcb\xcf\x5e\xc4\xb6\xe7\xe8\x97\x55\xe8\x47\xe1\xec\xb3\x15\xa5\xd8\x90\x5e\x16\x92\xd8\x11\xa7\x4a\xd8\xbf\x89\xb5\x3a\x41\x3f\xe7\xf1\x34\x3a\xcf\x8f\xb6\x5d\x08\x91\x3c\x41\x20\xd4\xb9\x5d\x14\x60\x3f\xcb\x64\x8c\x0b\x14\x08\xc1\x80\xb0\x77\x4e\x88\x8f\x82\xca\xa9\x92\xf1\x8f\xb5\xfd\xb0\x63\xd7\xd0\xe1\xc7\x62\xcf\x7c\xc1\xff\xa7\xd1\x10\x9e\x1c\x65\x6b\xbc\xb1\xf6\x45\x48\x57\x2b\xa8\xe8\xd9\x9c\xc2\x4f\x21\x5d\xad\xb0\x3c\xf9\x5a\x8c\xe2\xd4\xa5\xf3\x29\x44\xd7\x4a\x33\xd1\xfe\x3d\x49\x10\x72\xe7\x95\x9c\x72\x41\x9c\x97\xc3\x22\x27\x42\x20\x5c\xc4\xb5\x4a\x4f\x6b\xc3\x2e\xed\x2c\x4b\xaf\xe8\x6a\xcc\xc6\x86\xa1\xa0\x26\x41\x21\x8d\x05\x0b\xff\x2a\x9c\xb3\x97\x09\x27\x0d\x2e\xbb\x5d\x77\xd8\xcb\xb2\xf0\xaa\xdb\x6b\x3b\xc3\x2c\x4b\x9b\x8e\x74\x68\x43\xde\x5e\xe5\xa6\xc3\xab\xf7\xda\xae\x9d\x65\xde\x55\xb7\xdf\xee\xb4\xc7\x6c\x1c\x6b\x99\x40\x8a\x49\x48\xf8\x6f\x29\xb0\x4e\x21\x6d\xba\x98\x78\x2d\xf1\x45\x13\x85\x2d\xd1\xd3\xe5\xa5\x63\xe3\x66\xaf\xdb\x6d\xf7\x94\xb8\xc6\x26\x8e\x6b\x4b\x8f\x5a\xb1\x7a\xa7\x5c\x06\xda\xa7\x17\xaf\xa4\xd6\x4a\x0e\x53\xa8\x28\xdf\x8d\xff\x64\x34\x83\xa6\x71\x3e\x0f\x59\xcc\xd1\xac\x37\x9b\xb1\x4d\x72\x1e\xb1\x3b\xf6\x50\x4a\xa8\x92\x2f\xb3\x02\x2e\xd2\xe3\xb7\xd7\x26\x3d\x99\x64\xe9\x84\x3c\x49\x8b\xf9\x3a\x4a\x9e\xd4\x16\x81\x9a\x2f\x8c\x8b\x3b\xa8\xcb\x46\x23\x6d\x2c\x54\x7f\x52\x72\x14\x53\xe3\xd2\x68\x6a\x87\x00\xc3\x50\xec\x57\xdc\xa4\xc6\x39\x1f\xfd\xdf\x53\xe3\xef\x9b\xea\x8b\x08\xe7\x2e\xfb\x1e\x18\xe6\xdf\xd2\x30\x19\x19\xb8\xf9\xf7\xc6\xdf\x63\x88\x9b\xc6\x95\x88\x67\x7e\x79\x61\x34\x13\xfe\xe3\x98\x55\xb7\x66\x41\x9e\x76\x67\x32\xd9\x36\x8a\xa5\x44\xf1\x83\x90\x28\xfa\x87\x6e\xef\xd2\x33\x9e\x77\x93\x3b\xd2\x73\xd8\x66\x25\xe1\xb7\xe1\x3d\x8b\x5e\x79\x31\x43\x38\xcb\x12\xc5\xdb\xf2\x8a\x9a\x52\x6c\xef\x30\x68\x47\x1a\x08\x4a\xcb\x5b\x95\x47\x3a\x75\xf9\xa2\x8a\x8b\xa4\xa9\x2d\x0d\x93\x4e\x1d\x8a\x3c\x8b\x48\x75\x9d\x2b\xd2\xc7\xc2\xdb\x6a\x6c\x9c\x1b\x44\x55\x0c\x38\xfd\x1e\xa9\x60\xd7\xb3\x4b\x9a\x66\x99\x61\x50\xba\xd2\x42\x93\xf8\x4c\x9a\xe7\xcc\x5a\x29\x2c\xa9\xe2\x5c\x56\x20\x2c\x05\x67\xcc\x5f\xa1\xc5\x45\x9e\xba\x21\x5f\xa9\xa5\x5e\x89\x85\x69\xa2\x25\x5d\xaa\x2b\x63\xc3\x02\x63\xf0\xc6\xcb\x66\x4c\xe2\xe6\x52\x1a\xd1\x74\x88\xc3\x41\x9e\xf2\x1b\x2d\xae\xc9\x73\x29\x9b\x67\x40\x1c\xb9\xa1\x05\x60\x11\x11\xab\x20\xa0\x86\x21\x62\xf0\xc8\x30\xac\x21\x87\x28\x21\xa7\x8b\xed\x9a\x60\x56\xaf\xc2\x34\x48\x14\xe1\x7a\xcb\xce\x03\x76\x27\x1c\x53\x0d\xa5\x0e\x08\xaf\xec\x11\x0a\xaf\xae\xae\xa8\x83\xa5\xa7\x79\x82\xb1\x63\x86\x9c\x95\xe1\xcf\xd5\xa4\x3b\x07\x20\xe1\x04\xbd\xd3\x29\x40\x42\x25\x96\x86\x90\x20\xc6\xd4\x98\x88\x2c\xdd\x53\x03\x52\x5a\x62\x97\xe2\x66\xdc\x34\x5e\x18\x1c\x72\xaa\x52\x59\xf2\x27\xa3\x6a\xf5\x58\xf4\xe5\xd3\xa7\x1d\xc4\x34\x3c\x34\xa4\x6c\x34\x3c\x7e\x13\x70\x96\x19\xbf\xfd\xfa\xbf\xfd\xdb\x7f\x35\x1a\x54\x3d\x88\xe2\x9d\xb0\xb2\xe5\x77\x2a\x1e\x27\x68\x81\x09\xaf\x7d\xc6\xaf\xb3\x3f\x09\xa6\x34\x2d\x5f\xb3\xb8\xb8\x16\xbe\xb0\xa7\x9c\x09\x91\x68\x3d\x6d\xc1\x68\x19\x46\x81\xc3\xe9\x4e\xc4\x68\xce\xca\xa2\x14\x0c\x03\x63\x70\x0f\x5e\xac\xe4\x8b\x4a\xdc\x34\xe1\x9c\xac\x24\x9c\xf5\x97\xb1\x86\x82\x2b\x79\x0a\xff\x94\xfc\x14\xfc\xb4\xfd\x69\xf1\x53\x74\xfe\x6f\xff\xed\xbf\xff\x1f\xbf\xfe\xf7\xff\xf6\xbf\xff\xf6\xeb\xaf\xbf\xfd\xfa\x5f\x7e\xfb\xf5\xff\xf7\xdb\xaf\xff\xff\xdf\x7e\xfd\x1f\x7e\xfb\xf5\xbf\xfe\xf6\xeb\xff\xf8\xdb\xaf\xff\xd3\x6f\xbf\xfe\xcf\xbf\xfd\xfa\xbf\xfc\xf6\xeb\xff\xfa\xdb\xaf\xff\xf7\x6f\xff\xe5\xff\xfc\x7f\x7e\xfd\xf5\xa7\xd4\xb5\xdd\x81\xf8\x77\xf8\x53\xba\x60\x8b\x85\xa1\xf8\xad\xba\x84\x62\x39\x97\x5f\x09\x2f\xd0\xed\x2b\x2d\x78\x47\x7a\xc6\x74\x6c\x15\x0a\xd9\xc1\x62\x21\xb5\x2d\xe3\x92\xce\x38\xf7\xf2\x66\xbd\x66\x73\xdf\x4b\x18\x6c\xe8\x4c\x46\x68\x2c\x8a\xe6\x74\x66\xbd\x65\x71\xec\xdd\xb1\x57\x4b\x2f\x08\xd8\x0a\xd6\x74\x66\x7d\xed\xc7\x1b\xce\xd1\xc0\x23\xb5\x61\xcb\x0f\xc4\xdd\x61\xe0\x86\xa6\xe0\xd5\xfd\x05\xda\xee\x39\x20\xf3\x5d\xd2\xf1\x8d\xf9\x11\x50\x42\x2f\xfe\x0c\x09\xe2\x50\xf0\xb6\x72\x2b\x75\x40\x0a\x61\xa2\x87\x77\x67\x4b\xd3\xdc\x64\x19\x5a\x1e\x49\x18\x35\x99\x42\x40\x9d\xd1\x41\x28\xf5\x60\x84\x75\x08\xa7\x9c\xb5\x0e\x9a\xcd\x42\x6d\xb2\x9d\x34\x9b\x8f\x15\x9b\xff\xb8\x4e\xfe\xc4\xc6\xac\xf0\xd5\x66\x18\x12\xbc\x83\x08\x3d\x62\x78\xdc\x95\x7d\x88\x18\x7e\x2a\x4d\x6c\x07\x07\xc6\xa2\x0b\x3c\x8e\xaa\x53\x28\x4c\x30\x3d\x74\x07\x0c\x1c\x8c\x77\x64\x6d\x9a\x6b\x2b\x08\xef\xf7\x2a\x8b\xb2\x72\xbd\xf9\x18\x85\x14\xf9\x42\x1e\x32\xc7\x16\x3f\x8d\x2e\xf8\xe2\xaf\x63\x85\xc1\x5a\xee\x22\xbd\x15\x91\xe6\x43\x6b\x13\xc6\x89\xda\x59\x08\x79\x0b\x64\x66\x79\xf3\xf9\xf5\x96\x05\xc9\xb7\x7e\x9c\xb0\x80\x45\xb5\x6e\xc0\xa5\x0f\x4d\xb3\x31\xb3\xfc\x35\xef\xe2\xa3\xb0\xaa\x88\xc7\xa8\x3a\xca\x59\xb9\x1f\xc4\x9a\x86\x01\x1c\xda\xec\xe0\xb0\x33\x64\xa8\x21\x1a\x70\xcb\x19\x5c\x4c\x22\x6a\x84\x41\xc4\xbc\xf9\x63\x9c\x78\x09\x9b\x2d\x39\x98\x35\xfc\xe0\x7c\x85\x0c\x69\xc5\x61\x54\x4d\x08\xd2\x8a\x99\x56\xa9\x16\xb6\x0e\x1b\x2a\xef\x73\x6a\x45\x6c\x1d\x6e\x99\xfc\x50\xc6\x1b\xb9\xcb\x05\xca\xd5\x28\x29\xb1\x0c\xd4\x18\xa6\x49\xbe\xfa\x20\x44\x32\x7b\x12\x89\x25\xc8\x0c\x09\x9b\xdc\x0d\x54\x71\xe6\xd2\xfe\x49\x89\x56\x85\xfd\x93\x48\x63\x22\x2e\xf9\x29\xce\x43\xa2\x2f\x99\x12\xce\x7b\x80\x30\xcf\x0e\xf7\x05\x82\x1e\x49\x1b\x2e\x7c\x69\x8f\x7d\xc4\x9a\x22\x37\x55\x98\xcb\x14\x15\x8e\x11\xbd\x9f\x32\xc4\xd3\xc8\xf3\x44\xce\xb6\xdc\xda\xb4\xac\x4b\xb1\xcf\xaa\x81\xd8\x14\x01\x91\x94\xac\x50\xcb\xe8\xf3\xc7\x28\x0c\xee\xce\xe5\x8d\x2d\x11\xa1\x15\x74\x58\xa4\x15\x73\xea\x12\xfc\x95\xdc\x59\x38\xdd\xf1\x7c\xd7\xda\x73\x3f\x7e\xe7\xbd\x53\x2e\x29\x36\x41\xec\xca\x1e\xfb\x24\xc2\x28\x77\x8a\x70\xea\x92\xdd\xe5\x92\x93\xc1\x33\x19\x9a\x68\x9f\x98\xd6\x69\x9e\x9c\xd3\xf9\xe3\x4a\xfb\x7f\x64\xd3\x4b\x31\x41\xf9\x66\x8b\x35\x3f\x08\xc2\x42\xec\xbd\x7d\x3f\x99\x9c\xed\x4b\x93\x51\xce\xde\x51\x65\x46\xa2\xd5\x13\x4a\xcf\x63\x69\x1f\xb5\xbb\x41\x54\xb8\x18\x9c\x33\xa9\x8c\x03\x5f\x1c\x9b\x3a\x90\x24\xf2\xab\xe4\xb1\x3d\x4c\xb3\x11\x71\x30\x98\xfb\xda\xe6\x26\x59\xf5\xfa\x04\xf1\xb5\x8a\x45\xf8\x85\x8f\x1b\xff\xbe\xee\x8f\xc5\xac\x0c\x83\x2d\x8b\x12\x95\xca\xf2\x3c\x09\xcf\x37\x91\xbf\xf6\x39\xd5\x98\x67\x16\x2b\x39\x76\x3b\x75\xc9\xc0\x2a\x04\xaf\xbf\x40\x42\x6e\x57\xf2\x89\xb2\xcb\x12\x9e\x82\x36\xec\xb4\x75\x28\x1c\x45\x33\x38\x6e\x4f\x12\x0d\x6d\xe5\x4d\xeb\xa8\x9c\x39\xc3\xbe\x0c\x99\xde\x6d\xcb\x90\xe9\xc3\x81\x8c\x98\x2e\x4e\xe5\x5a\xb3\x21\x8f\x82\xde\x1c\x62\xd8\xea\x34\x8f\x77\xda\x3e\xef\x56\x09\xe2\x6e\x94\x62\xe8\x5e\xc9\x89\xaf\xb5\x09\xd3\x83\x0a\xd1\xf3\x51\xb9\x39\xbf\x57\xbe\xbc\x2f\x73\xf3\xb6\xcf\x3a\x56\xcf\x5b\x25\x1a\x83\x4f\x3a\x46\xdc\x2b\x95\xf2\xe1\x3b\x69\xe4\x03\x1f\x84\x34\x6d\x80\xe1\x9d\x90\xd5\x74\x31\xfc\xac\x7c\x86\xdf\xa8\xb8\xef\x5f\xeb\x44\x40\xdf\xf2\x4f\x1c\x0c\xaf\xf9\x5f\x1b\xc3\x2f\x4a\xf8\xf9\x67\x2a\x04\xc0\xf0\x15\xfd\xc5\x5a\xc0\xf7\xf4\xcf\xd6\x02\xfe\x46\x7d\xab\x80\x56\xf0\x23\xf5\xad\x7c\x3b\xe1\x07\xea\x5b\xdf\xfb\x41\x32\x10\x32\x5f\xf8\xeb\x7e\xec\x02\xf8\x86\xa6\x32\x26\xc1\x57\xe9\x62\xc1\x22\xf8\x0b\x4d\xad\xaf\xbd\xc4\xfb\xc1\x67\xf7\xf0\x27\xfa\x0a\xd9\x18\xfe\x91\xbe\x42\x2e\x86\x7f\xa2\xaf\x50\x1b\xc3\x3f\xd3\x57\xa8\x83\xe1\x1f\xe8\x2b\xd4\xc5\xc0\x18\x7d\x85\x7a\x18\x12\x46\xbf\x43\x0d\x1b\x43\x20\x1e\x1c\x0c\x11\xa3\xef\x54\x1e\x68\xf0\xf9\xf3\x67\xf6\x18\x43\xc8\x9f\x94\x43\x29\x78\x8c\xfe\xb5\x50\x69\xbc\x5f\x40\xcc\x0b\x22\x91\xdf\x0e\xd2\xe2\x59\xe4\x3f\x86\x15\x2f\xf8\x39\xf4\x03\x98\xf1\xa7\x38\x8c\x12\x58\x88\x27\x91\xef\x6c\xc9\x1f\x73\x43\xc3\x8d\xfc\x55\x89\xf2\x39\x67\xf4\x53\xc5\x39\x74\x2d\x0a\xaa\x89\xb7\x1e\x19\x7d\x8b\x0c\xbe\x36\xf3\x9b\x8a\xcf\x01\x6c\xc5\x9b\x39\x5b\xec\x95\xdf\x31\x1a\x5b\xaf\xde\xbf\xfb\xf8\xe9\x3b\xb8\xe5\xcf\x9f\xfe\xfa\xe1\xfa\x6b\xb8\xe1\x8f\x3f\xbc\xb9\xfe\x11\xee\xf9\x1a\x39\x50\xcb\x27\xbc\x64\xe8\x03\x62\xc0\x26\x5b\x36\x15\x64\x1b\x86\x6b\x56\xc7\xc8\x9c\x3b\x9c\xf9\x65\xf7\xe7\x3f\x08\x2f\x64\xbe\xa9\x4e\x4f\xec\x1c\x9a\x38\x53\x6c\xdd\x8a\xfd\xc3\x13\x7b\xba\xc3\xf0\xc0\x68\xa3\xf1\x83\x69\x36\x1a\x3f\x94\xb4\x68\x31\x4b\x4c\xb3\x6a\x7e\x24\xda\x73\x64\x0e\x05\x21\xf5\x84\x8f\xac\x56\xf4\x30\x57\x8c\x66\xc0\x19\xcd\xe0\xef\xb4\x6e\xe4\x6f\x1a\x3b\x86\x8b\x45\xcc\x92\x0a\x76\x84\xf7\x6c\x1f\x15\xdf\x0b\x77\xaa\x5b\x26\x13\xf8\xe6\xc0\x54\xb6\xf5\x63\x35\xbb\xb3\xd8\x02\x99\xdc\xb0\xc1\xa9\xb3\x97\xfb\x03\x13\xa9\xe3\x64\x8b\x8f\xaa\x45\xac\x5b\x32\xde\x24\xb5\x2d\x95\xdd\x48\xca\x83\x15\x7e\x2a\x9c\x68\xfe\xbc\xdf\x8b\xaa\xf1\x76\x7f\x9f\xe0\xed\x7e\xcd\xc2\x1b\xc2\x86\x88\x6a\x1b\x3b\xf0\xe9\x4b\x26\x3c\x5f\x46\x11\x27\xf7\x05\x5f\x99\x08\x22\x3f\xd7\xa8\xee\xe0\x13\x3b\xe0\x6b\xbf\x12\x0f\x47\x82\xf2\xc8\xcc\x19\xf3\x49\x30\x15\xbe\x7d\xaf\xd8\x51\xf5\xa4\x94\x4b\x5e\x1f\xf1\xcf\x98\xd1\xf4\x48\x3a\xa7\x45\x21\x12\x9f\xc1\x92\x7e\x46\xb1\xdc\x7f\xa1\x1b\x5b\x9a\x66\xe3\x01\x2d\x55\xc8\x2f\x8f\x2e\x25\x66\x89\x31\x88\xcc\x7d\x09\xb5\x47\x0d\x11\x97\xa7\x12\xa2\x2b\x69\x36\x71\x24\xb9\x9d\x50\x19\x92\x9f\xc5\x34\x12\x29\x2a\x17\xa6\x99\x5e\xb9\xa6\x89\x66\x74\x85\x66\x50\x4e\x89\x0b\xae\xf0\x5b\xb2\x21\xa0\x6b\x14\xe7\xc1\xdd\xc4\xba\x8a\xf8\x01\x01\x1e\x05\x57\x89\x68\x5e\x44\x89\x5d\x8c\x67\x28\x9e\x24\x53\x48\x30\xe1\x7f\x4b\xeb\xfc\x5d\x85\xc4\x2e\x12\x1e\xd8\x90\x1c\x2e\x4e\x90\xf7\x90\xe0\x51\x72\xc5\x46\x58\x48\xdf\x8a\xb1\xb1\xd2\x26\x06\x3b\xf8\xa0\x6e\x5d\xe5\x8a\x6d\x58\x11\x3a\xe0\x07\x91\xdb\x08\xc3\x3b\x56\xe3\xc4\xbd\xd1\x71\x73\x3e\xb0\xf1\x42\x7d\xf4\x9e\x29\x79\x0f\xd1\x4f\xe5\x20\x9d\xf0\x33\xa3\x4f\x45\x06\x68\x52\x7b\x70\x5f\x57\x5b\x02\x7e\xa8\x9e\x97\xeb\x19\xef\x80\x6d\x59\xf4\x58\xe7\x22\xf9\xcf\xe5\x06\x9f\x97\x20\x0c\xef\x60\xe1\xaf\x56\x75\xad\x7d\xab\x66\x5e\x3b\xc9\x85\xbf\x4a\x58\x54\xf7\xd9\x67\xb5\x3b\xff\xf8\x07\x06\x23\x1a\x0e\xe6\x75\xcd\xfe\xc3\x1f\x9c\x5b\x30\x17\x68\xac\xae\x49\xc6\xfe\x58\x9b\x35\x79\xda\xfe\xf4\x87\x5a\xf2\x25\x82\xad\x1b\x5b\xf0\xc7\xc6\xe6\x07\xb3\x55\x3a\x67\x75\xe9\x9e\xce\x93\x3f\xd6\x24\xc7\xed\xb5\xfe\xb8\xec\xd4\xf9\x28\xd1\x0f\x75\x1f\x7b\x27\x3f\x5e\x7b\x9b\xba\x8f\xee\xff\xd8\x04\x24\xb5\x52\xd7\x60\x7c\x72\x14\x25\x2a\xa7\xee\xe3\xf4\x0b\x1f\x6f\x59\x14\xb3\xda\xac\x87\x90\x50\xfd\x4d\x01\xd4\x0a\xce\x13\x25\x17\x2e\x07\xd9\xf6\x28\xba\x0c\x46\x58\xa6\x36\x98\x44\x53\x90\x7f\x9b\xcd\xa9\x2c\x69\xb5\x12\x55\x96\x94\xf3\x8e\x2f\xfd\x78\x07\x71\xb8\xae\x9d\xf1\x3f\xfd\xa1\x15\xe4\x44\x5d\x5d\x6b\x33\xb6\x0f\xc6\x78\xe5\xf4\x56\x20\xf5\xda\x74\x62\x79\xcd\x28\x0f\x56\x0c\x3e\xdd\x0a\x4c\x5c\x42\xfb\xe8\x03\x0a\x20\x10\x58\x1d\xa3\x40\x51\x51\x10\x58\xb7\x8f\x09\x7b\x2f\x68\x9a\xa6\xff\x22\xb0\xbe\xfa\xeb\xa7\xeb\x8f\x37\x1f\xae\xbf\xbb\xb9\xfe\xf6\xfa\xed\xf5\xbb\x4f\xb0\x2e\xe5\xbf\x4f\xc6\x11\xd9\xa2\x04\x22\x8c\x5b\xbe\x60\x39\xdf\x1c\x21\x23\x34\xc8\xda\x07\xf0\x20\xfc\x74\x76\xf0\x75\x15\x91\xeb\xd7\x4a\x5e\xf1\x91\xa1\xf2\xb2\x81\x83\x21\x90\x09\xfb\x74\x12\x5b\x89\xe8\x7d\xba\x46\x51\x8e\x28\x43\x19\xe1\xd3\x6f\x26\x57\xc1\x3e\xd9\x56\x08\x35\xa4\x26\xe0\xd2\x1f\x61\xb9\xd1\xcd\x70\x4a\xa3\x49\xd8\x6c\x4e\x77\xf0\x2d\xa3\x4f\x3a\x08\xcc\x21\xe2\x0a\xf7\x91\xd5\x4e\x06\x91\x39\xac\xe9\x1f\xd6\x54\x51\x68\x0e\xeb\x46\x07\x75\x77\xf0\xfa\xc8\xaa\x4a\x22\x90\x4d\x6e\xd9\xd4\x34\x75\x9c\x82\xdc\xe4\x2e\x31\x4d\x99\x65\xc6\x34\x95\x4c\xbe\x99\x60\x4a\x73\x43\xc8\x1d\xfc\x72\xa4\xdd\xd7\x9c\x70\x4b\xe8\x9d\x74\xb7\xc2\xe3\x05\x72\xa5\xcf\x14\xf9\x5e\xca\xaa\xe0\xcf\x87\x74\x9b\xd2\x3b\xa0\xbd\x8f\x4d\xf3\x1e\x05\x9c\xf8\x45\x01\x28\xcf\x3a\x8c\xb3\x4c\xfc\x14\xb9\x8a\xd4\x73\x2c\x9f\x85\xd7\x66\x6e\xc8\xa1\xde\x69\x1b\x5b\x83\x73\xf4\x81\xa5\x7f\xaa\xb7\x85\x9d\xae\x7a\x5f\x14\x8c\xbf\xca\xad\x39\xcb\x7e\x7c\x22\xd7\xf1\x1d\xcb\x32\xf4\x67\x6b\x41\x7f\x61\xf0\x8b\xb5\xa0\x7f\x66\x18\x3c\xe4\x59\x1f\x9b\x9e\xf5\xfa\x45\xe3\x8e\x15\xde\x09\x4f\xc7\xfc\xd6\xc8\x2f\x0c\xf6\xdc\x19\xff\xcc\x44\x4c\xae\xd2\xc6\x2e\xd5\x8e\x0a\x3e\xc3\x34\xd1\x92\xd1\x4d\x1d\x21\xb4\x62\x15\x33\x50\x71\xf6\xbf\x62\x74\x83\x9e\x38\xc5\x83\xcf\x36\xe8\x2b\x06\xdf\x32\x0c\x4b\xfe\x30\xe7\xcf\x8a\xcf\xc4\x20\xde\x3d\x09\x86\x90\xbc\x61\x22\xd7\xe0\xd7\x0c\x66\x75\x19\xfc\xf0\xd3\x2e\xcf\xfb\x40\x96\xfb\x29\x21\xc8\x3b\x3e\xfe\x4f\x8c\xb7\x67\x48\xa8\x60\x80\x71\x6b\x14\x65\x39\x80\x30\xc0\x08\xab\xe5\xdf\x6a\xe7\xad\x55\x51\x9e\x3b\x74\x31\x03\xc3\x57\xbc\x68\xcd\x4e\x51\xf7\xfc\x30\xef\x4e\xc4\x43\x83\x34\xcf\x3d\xd8\x44\x28\xa5\x8d\x46\x8a\xc7\xc6\xab\x95\xb7\xde\xb0\xb9\x41\x0c\x03\x37\x55\x60\x2b\x58\x50\x71\xc2\x9a\x0c\x36\x54\x9c\xaf\x26\x83\x39\xf5\x27\xab\x29\x6c\xe9\x3c\xcb\x84\xaa\x64\x6e\x9a\xef\xd1\x1c\xc3\x2d\x6d\xcc\xb3\xac\x11\x5b\x2f\xbf\xfa\x41\xe7\x89\x9b\x9b\xe6\xbc\x24\x33\xf8\x5c\x1e\x8a\xe2\x54\x82\x63\x73\xa9\x56\x55\xc2\x1f\xeb\x66\x9e\xdb\xf8\x5b\xdb\xc9\x62\x8a\x82\x17\x49\x33\xb2\x42\xb8\x66\x78\xa7\xa9\xfa\xfd\x5c\x91\xb5\x6d\x16\x4a\x7a\xd1\xaa\x0c\x59\x81\x94\xac\x55\x44\xc9\x41\x91\x90\x33\xdb\x24\xba\x72\xbb\xdd\xb1\xdb\xed\x12\xb7\xdb\x35\x23\x0c\xbe\xb5\x9d\x6c\x64\xdf\xbe\x15\x42\x54\xee\x5d\x60\x98\xb2\xe9\xbb\xbd\xc3\xbb\xb3\xdb\x31\x9a\xd3\x00\x55\x07\x00\x3e\x7e\x9a\x21\x06\x73\x58\x81\x71\x33\x57\x89\x82\x04\xe3\x05\x29\x2c\xa8\x0d\x1b\x09\x82\x39\x04\x50\x7c\x6b\x50\x36\xc8\xfb\x26\xcb\x8c\x92\x10\xc6\xa0\x14\xa5\xf4\x86\x57\xce\x32\xe3\xa3\x30\x6a\xaa\xbe\x4e\x73\x09\x9e\xe4\xa5\x83\xf1\x5b\x86\xe6\xfc\x7e\xbf\x52\x97\x87\xff\x38\x0b\x69\x00\x1b\x8e\x35\x22\x48\xe4\xa0\xb6\x54\xa2\x36\x79\x42\xcf\xca\xd2\x71\x5f\x0a\xcb\x0f\x59\xfb\x02\x47\xf8\x0b\x84\x3c\xba\x6d\x6d\xf0\xa5\x7d\xb4\xd6\x4e\x87\xe9\x40\x1e\x5d\x23\x1f\xbf\x48\x70\x73\x73\xb5\x3d\xde\x6a\x4c\xbd\x8b\x44\x7e\x15\xd3\x47\x14\x70\x8c\xc5\xb9\xa5\x6f\x90\x47\xe3\x17\x2a\x21\xf1\x12\x31\xb1\xb6\xf0\x74\x4b\x42\x08\xc9\x06\x56\xc4\x03\x46\x62\xd8\x12\x5e\xf9\x2f\x28\xc4\x3b\x3c\x5a\x5c\xc6\x23\xfc\x19\x31\x58\x34\x9b\x9c\xd3\x7a\xa0\xa5\x83\x4b\x3f\xa2\xaf\x04\xd8\x78\x80\x72\xfa\x18\x03\xe6\x18\x93\x0a\xa8\x9a\x0b\xb7\xac\x1a\x61\xc9\x1c\xb5\xe4\x9b\x37\x07\x79\xf5\xe6\x20\x2b\xc8\xbc\xd6\xf2\xd9\xb1\xba\xfa\x91\x1f\xa7\x86\x8d\xb3\xec\xc8\x01\x12\x47\x26\xb7\x22\x96\xa7\x09\x03\x3f\x31\xe3\x2f\x9d\x95\xf0\xe4\x59\x09\xc7\x39\x23\xef\x8f\xf9\x58\xb6\x28\x00\x75\x26\xc0\xd7\x36\x9b\x0d\x4a\xa3\xfd\xb7\x98\xa8\x02\x4c\x4e\x1d\x33\x55\x8b\xef\x1c\x5f\xf2\x3f\xa1\xbb\x06\xa5\x87\xbe\x01\xe3\x97\x68\x9b\xfb\xb7\xbe\x44\x77\x18\x13\x5e\x52\x49\x48\x2b\x7a\x99\x67\xd9\x12\xcd\x81\xc1\x76\xc2\xa6\x22\xb7\x43\x69\x0b\x1f\x20\xca\x32\xf4\x50\xf1\x92\x99\x63\x79\xb8\xdf\xd2\x87\xc9\x9c\x4d\xe1\x13\x6d\x34\xde\x9a\x26\x2a\x02\x08\xbe\x15\x01\xf5\xb4\x15\x9b\xfc\x85\xe1\x15\xcd\x31\xc7\x19\xef\xf1\x91\x09\xaf\x6a\x7e\x3e\x6e\x19\x5f\x7d\xfe\x74\x53\x14\x6e\x19\xcc\x31\xa0\x74\xac\x36\x17\x4f\xd6\x6c\x4a\xe9\x8a\xac\xc5\xb8\x1f\x70\x96\x7d\x85\x1e\x4e\xc0\xf5\x15\x07\xe8\xd7\x93\xd5\x94\xce\x05\x8a\xfd\xa6\xe9\x59\x3f\x0a\x34\x8b\xe6\x0d\xba\x15\xf9\x01\x05\xea\x85\x15\x3c\x1d\x90\x9c\x24\xd9\x95\x31\x73\x35\xd9\x85\x15\x2e\xf4\x8e\x08\x8f\xc2\x15\x3c\x2d\xa2\x70\x4d\x5e\x31\x08\x17\xe4\x3b\x8e\xcc\x8c\x83\x16\x0d\x3e\x6a\xbe\xda\x0f\x75\x2f\xf9\xf9\xe0\xdd\x7d\x80\x15\xc7\xbb\xf0\x35\x5a\xa9\x02\xd1\xff\x03\xe3\x9d\x48\x0c\xbb\x2b\xbf\x68\x7c\x82\x95\xc0\xcf\x51\x96\x3d\xe4\x12\x59\x4a\x97\x4c\xec\x5c\x5e\xb0\x64\xe5\xaf\x6a\xae\x9a\x83\x73\xf7\x6a\x31\x21\x8d\xd6\x2b\xbd\xa1\x1a\x59\xe9\xc4\x01\x77\xba\x27\xfd\x45\xb8\x21\xd5\xd0\x48\xbc\xc5\x07\xaf\x45\x4e\xb9\x4a\x63\x0f\x7b\x75\xe4\x02\xcb\xcf\x77\x58\x0c\xa9\x8e\x68\xf8\x99\x6f\xf0\xa7\xf1\x5b\xf2\x8a\xaf\xc0\x27\xb9\xbe\x73\x06\xaf\x74\x44\xa1\xda\x70\x4c\x95\x7c\xd6\xf6\x80\x38\xf6\x40\xe8\x5e\x1d\x67\x20\xb4\xa0\x8e\x33\x84\x3d\x65\x63\xee\x77\x9c\x07\x62\x70\x7b\xc4\x71\x7b\xe0\xb8\x7d\xe2\xb8\xb9\xad\x6d\x1e\x65\x31\x8f\x6b\xdf\xe9\x12\xa7\xa3\x13\x4d\xba\x36\x71\x6d\x70\x1d\x92\x7b\xf3\xca\xd4\xb8\xc2\xb3\xa3\x9a\x4d\xbb\x94\x92\xf2\xc0\x0d\x47\x47\xc8\x2f\x25\xa6\x2c\xc7\x70\x2c\x67\xdc\x16\x16\xe0\xda\xa5\x52\xc6\x76\xec\x93\x61\x3f\x4f\xba\xcb\xe7\xf1\xfb\x2c\xc3\xdb\x2a\x94\x44\xdf\xd6\xfe\x5c\x7d\x65\x78\xa2\x92\xf5\x0c\x07\xca\xf0\x64\x4f\x87\x24\x74\x45\x4b\xad\x2b\xda\x68\x5d\xd1\x3c\x57\xf0\xac\x73\xb3\xed\x47\xa5\x94\xd9\xea\xc8\xae\x77\xb4\xe4\x9d\x0f\xb7\x54\x61\x36\x21\x6b\x69\x18\x70\x43\xa3\x8a\x6a\xe5\x9e\x46\x85\x6a\xe5\x9a\x46\x22\xd8\x3e\x3c\xd0\xa8\xac\xbe\xf9\x48\x23\xeb\x4d\xb0\xf0\x03\x3f\x79\x84\xf7\xf4\x06\x5e\xd2\x6b\xcb\xbb\x8d\xe1\x33\xbd\x16\xb1\x03\xdf\xd2\x6b\xc9\xbc\xc3\x27\x7a\x6d\xad\xc2\x3b\x78\x45\xaf\xad\x6f\xdf\xb9\xf0\x1d\xf5\xc7\xc6\xcd\xad\x41\x72\x7a\xf5\x83\x28\x59\xf1\x92\x12\x55\xfa\x4e\x94\x86\xaa\x54\xd1\xb0\x45\x34\xa7\x9f\xeb\x2c\x79\xf8\xcd\x91\xca\x86\x80\xaf\xeb\xe0\x45\xd0\x4a\x5a\x0e\xa4\x14\x39\x97\x97\x31\x6e\x39\xb0\xa2\xe9\xd5\x95\x03\x33\xea\xb6\x05\x47\xfc\x59\x84\x35\xec\xe0\x96\x78\xe8\xf7\x31\xb1\x05\x29\xb4\xa4\xec\xd2\xce\x32\x5b\x26\xb9\x71\x2e\xd8\xa5\x3d\x76\x88\x2d\x90\x3c\x62\xf4\x25\x62\x18\x37\x28\xcb\x32\x46\x29\xfd\x38\x46\x3e\x15\xe1\xfa\x1c\x62\x43\x44\x53\x4c\x38\x69\x87\x3e\x21\x86\x2f\x5e\x61\x60\x2f\x50\x48\x45\x07\x9c\xc6\x73\x38\xed\xd7\x6a\x41\xf8\x82\xba\x18\x10\x6b\xd2\xa8\xb9\xba\xa2\xce\x78\x76\x11\x92\xd9\x0b\x5e\xcf\x69\xad\x30\x7e\x11\x5e\x51\x97\xd7\x6d\x36\x21\xbc\xe0\x75\x45\xbd\x94\x77\xa6\x7a\x51\x1f\x22\x9f\x22\xf6\x22\x6c\x39\x58\x7c\x9d\xf0\x9a\x74\x85\x09\x1f\x95\x28\x59\x95\x5f\x51\x1b\xe3\x51\x72\x45\x07\x23\x6f\xb2\x68\x36\xa7\x94\x93\x99\x3e\xf8\x17\xd4\xed\xf6\x20\x69\xd1\x01\x1e\xf1\x69\x46\x34\xba\xbc\x4c\x32\x1f\xe2\x26\x4d\x46\xf1\x95\x5d\xae\x1f\x41\x24\xeb\xc7\xa2\xbe\x96\x62\x4d\x5a\xad\xc5\x34\xa3\x8e\x3b\x78\xb1\x04\x6f\x97\xef\xd6\x9b\xbd\xdd\xca\xb7\x26\x14\x5b\xe3\xf3\xad\xf1\x68\xc8\xb7\x26\xa6\x7e\xab\x0f\x29\x0d\xc4\x6e\xb1\x49\xda\x6a\x4d\x61\x46\x1d\xb7\x6f\xae\x64\xd6\xb4\xab\x2b\xda\x17\xe3\x99\xf1\x11\xbc\x98\x35\xd9\x24\x9d\x42\xda\x6a\xa9\xc1\xc8\xc1\xcf\x4c\xde\x72\x4b\xec\xfa\xec\xea\x8a\xb6\xe2\x62\x22\x91\xf8\x30\xda\xff\xd0\x5f\x20\x5b\x64\xe0\x98\x51\xa7\xe5\xe5\xe9\x58\x66\x94\xd2\x50\x53\xb2\xd1\xf8\x9d\xf7\x8e\xac\xc6\xad\x8f\xe4\xe3\x59\xd4\xa4\x6a\x55\x67\x2d\xea\x29\xe7\x14\xb4\x12\xf1\x1a\xf1\x8b\x48\x2c\xf9\xac\x95\xe0\x62\x21\xbe\xae\x24\xb4\x6f\x4f\x2f\x2f\xdd\x4e\xc6\x26\xee\xf4\xf2\xd2\xe9\x65\x6c\xe2\x4c\x2f\x2f\x07\x19\x9b\xd8\xd3\xe2\x9b\x6f\x8b\x6f\x26\x7c\xed\x59\xe9\xdd\xeb\xfd\x77\xc0\xae\xae\x06\xa6\xdb\xed\x96\x2a\xfd\x72\xb4\x12\x7f\x70\x7a\xfa\xc9\xed\xec\x7d\xf8\xe7\xd2\x68\xf9\x85\xeb\xba\x30\x28\x4d\xe6\xab\xbd\xd7\x6e\x1b\x3a\xa5\xd7\xdf\xeb\x4d\x5f\x23\x36\xb9\x9b\x9e\x56\x13\x29\x1d\x51\xfe\xf1\xdf\xf6\x8d\x9b\x37\xa8\x19\x60\x2d\x21\x62\x93\x0f\x53\x45\xaa\x3f\xa0\x5b\xc5\xc9\x50\x36\xf9\x6e\x6a\xdd\xdc\x82\x47\xfd\x26\x9b\xbc\x13\x61\x6b\x15\x6e\xf6\xc0\x6b\x16\x26\xa2\xd1\x38\x26\xb1\xa5\x44\x92\xa8\xd4\xeb\x8f\x28\xcf\x53\xa5\xb3\xe6\x7b\x45\xcf\x5e\x4d\xcf\x5a\x88\x19\xe7\xbd\xa7\xd4\x93\xbd\xaf\x68\x84\x9a\x3e\x07\xe4\xf6\x68\x76\x99\x8c\x66\xcd\x26\x8e\x27\x69\x73\x36\xa5\xab\x49\x38\x9e\x91\xa4\x35\x6b\x39\xd3\x1d\x6f\x99\xf3\xb1\x92\xe7\x5a\x95\x71\xfb\x8d\xa0\xf0\xb3\xac\x5a\xca\xc1\xdc\x8d\x24\xf1\xb3\x6c\x55\xa3\x84\x15\x15\x40\x56\xcb\x89\xfb\x1b\x91\x6d\x16\x2a\x64\x79\x83\xde\x08\x2a\x73\x87\x0b\x71\xec\x0f\xf0\x57\x8a\x6e\xea\x0c\x56\x66\x92\xe9\xbc\x91\xed\xbd\x47\x1b\x61\xb9\x82\x27\x77\x53\xfa\x9e\x6f\xf0\x37\x74\x8e\xde\x63\xf8\x0b\xb5\x47\xdf\x68\x11\xea\x5f\x46\x18\xfd\x40\xbf\x99\xfc\xa5\xd9\x9c\x62\x3f\x38\xbf\xc9\xb2\x18\xdd\xc0\x0f\xf0\x7e\xf2\xc3\x14\x9f\x85\x59\x86\xfe\x5a\x21\x93\x6f\xf0\x8e\x8f\xe2\x4f\x02\x98\xdf\x23\x39\x72\x17\x63\xf8\x47\x7a\x3f\xb9\x9b\x0a\xbb\xcb\x20\x19\x9c\xfd\x49\x3f\x21\x4e\x15\x74\xfa\x9d\x41\xbb\xd7\x19\x60\x28\xca\x9d\xa2\x7c\x88\xa1\xf1\x27\xeb\x4e\x7f\x80\x4d\xb3\xf8\xe5\xe0\x2c\x4b\x11\x6f\x5b\xd0\x89\xbc\x6c\x4f\x54\xfb\x8f\xa5\x74\xea\x0c\x12\x7e\x67\xf9\x65\x91\x9c\xbf\xb0\x5b\x78\xee\x07\x82\xb9\x92\xe4\x55\x75\x85\xf5\xd2\x56\xb7\x47\x4b\x54\xf9\x42\xcb\x90\x85\x37\xb7\xf4\xb1\xd0\xd4\x49\x5c\x97\x60\xb0\x65\x3c\xc1\xc9\x87\x29\x4d\x76\x95\xf8\xe9\xf2\x06\xaa\xe6\xef\xc1\xd0\xa8\xdd\xc0\xc0\xd9\xb7\x9b\x72\x89\xa6\x57\x26\x1f\xa6\xe0\xd3\x85\xb2\x37\xf3\x39\x22\xf4\xaf\xa2\xfc\xd4\x1f\xe8\xd2\xc5\xa5\x44\x41\xd9\xfa\x3d\x6a\xf9\x44\x44\x65\x39\xfc\xae\x60\xa9\xc5\x90\xbf\x9b\x52\x99\x2f\x6d\xf2\x6e\x4a\xfd\x7c\x1a\xc1\x0e\x7c\xd3\x44\xdf\xa3\x9b\x3d\x61\xd5\xcd\xca\xc0\xf0\x3d\xba\x2f\xc9\xbb\x6e\x6e\xf3\xa2\x23\x35\xcb\x52\xb0\x9b\xd0\xc0\x18\xf4\x8e\xdf\x1d\xec\x78\x7e\xdc\xff\x26\x17\xcd\x01\x86\x27\xf6\x54\x6f\xa2\x88\xf5\xba\xbf\xe9\x47\xbe\x11\x75\xdf\x04\x89\xd3\x23\x87\xb6\xf2\xaa\xaa\x5b\x56\x3c\x88\x04\x29\x0a\x8d\x24\x0a\x19\x88\x34\x2b\x1c\x3d\x70\x50\x9d\xf7\xfe\x47\x9a\x3c\x2f\x37\xa9\xc7\xd6\x76\xeb\xe6\xf1\x35\x52\x6d\x75\xf6\xdb\xc2\xf9\x10\x7e\xf7\x97\x57\x57\x57\xb6\xf8\x5a\xc4\x1c\xa9\xff\xfc\xcd\xd1\xcf\x15\x7a\xc9\xbf\xef\x75\x4e\x7e\x3f\x38\xf8\x5e\x62\x2f\xa8\xbf\xe3\x3f\xe6\x1b\x07\xdf\x0a\x99\xf9\x91\xab\x5d\x57\x6f\x7f\x87\x4b\xf5\xf8\x56\xbc\x2e\xeb\xb2\x27\x9c\x2b\xd3\x8d\xff\xfe\xaf\xf6\x37\xac\xf4\x11\x5f\xb0\x5f\x8e\x76\xf5\xfb\xbf\x3a\xdc\xa4\xbd\xcf\xbe\x3a\xfe\x59\x65\x6f\x4a\x9f\xf1\x4d\xf9\xf3\xc1\x67\x3b\x7c\xb6\x45\xfb\xa0\x0f\xb6\xa8\x0a\xae\x62\x79\x63\x3d\x69\xad\x24\x8c\xb8\xca\x8c\x0b\xbd\x81\x20\x67\x5c\xe8\x7d\x39\x7a\xff\x51\xbe\x54\xf1\x9f\x92\xbf\x14\x9c\xa5\xe2\x20\xcb\xbc\xa3\x4c\xc5\x21\x23\xfc\x4b\xbe\x50\x70\x84\x05\x17\x58\xe3\x5e\xa0\x71\x69\x54\xb1\x1d\xd4\x09\x8b\x85\x01\x5e\x4c\x3d\x6d\xc0\x25\xd4\x83\x86\xb0\x7c\x41\xc6\x56\xce\x76\x45\x1b\xa8\xe1\x97\x27\x98\x65\x0d\x3f\x9f\x20\xa7\x2a\x56\x8a\x53\x31\xde\xe4\x96\x73\x25\x23\x3a\xf1\xa8\x04\xed\xb2\xe4\x4d\x6e\x8b\x05\x25\xbb\x2c\x10\x47\xaa\x28\xd6\xcf\x6a\xfb\x4b\x3f\x7a\x1d\x29\xa9\x2f\x65\x9d\x1e\x2d\x2e\x87\x23\x8c\x22\xea\x4f\x96\x82\x39\x98\xe2\x31\x0a\x51\x29\x36\x19\xc4\x62\xab\xaa\x65\xa9\xd0\x35\x91\x99\x48\x34\x50\xd8\x7e\xbf\xfc\xea\x07\xb2\x02\x69\xa3\x46\x66\x20\x0c\xd4\x48\x0c\x7c\xbf\x49\x5a\x8e\x66\x5d\xda\x19\xb1\x03\x47\x6d\xbf\x6d\x6d\xf6\x1b\x79\xc1\x3c\x5c\x1f\x49\xf7\x5a\x24\x66\x92\x21\x6c\x0d\x2d\xff\x2b\x6c\xb2\xc7\x86\x41\x18\x18\xf8\xc6\x00\xd4\x6c\x46\x4d\x1f\xe7\x12\x22\xd4\xee\xe1\xc2\xca\xf9\x74\x54\x97\x22\x02\xf4\x7e\x66\xb5\x34\x66\xd1\xcb\x3b\x16\x24\x59\x66\x18\xa5\xbc\x6a\x4e\xfb\x74\xca\xf3\x2f\x1a\x03\x67\x19\xb3\x6e\x92\xda\x40\x01\x22\x03\xfd\x41\x0c\x0d\x38\x17\x7e\x7e\xe7\x11\xfb\x5b\xea\x47\xe5\x50\x9b\xe7\x95\x34\x49\x4e\xfb\x94\x45\xf7\x5e\xae\xee\x5c\xe2\xd1\x76\xa5\xc4\x43\x08\x2b\x4e\xfa\x92\xf9\x96\xdc\x8e\x2c\x43\xfa\x91\x86\xe3\xa7\x1d\x89\xf2\x17\x4f\x3b\x7c\x66\xdc\x18\x94\xb2\x22\xa8\x54\x96\x09\x31\x67\xc2\xe9\xcc\x04\x98\x0e\x36\xef\x89\x80\x44\xda\xbf\xdc\x25\x4e\xdb\x85\x03\x17\xe6\xc2\xd7\xbc\x5d\x63\x4e\x2e\xa3\x5e\x3a\xed\x36\xae\xa4\xab\xe0\x4f\x5f\xf0\x4b\xbf\xff\x5c\x76\x4b\x97\xb0\xc0\xc1\x6a\x1a\xe0\xd5\xc5\xd4\x09\xeb\xfd\xc2\x6b\xbd\xd7\x3d\xd3\x54\x4e\xe2\xde\x38\x24\x3e\x46\xea\x20\x5b\x46\x53\x10\xe8\x56\x9c\x84\x11\xa3\xd1\xa1\x7f\x3b\x14\xc7\xec\x84\xcd\xb9\x3b\x38\x9a\x64\x4c\x58\x06\x57\xc3\xa2\xb6\xb1\x20\xad\x55\xad\xb7\x22\x4c\xcc\xbe\x85\xa5\xb4\xcf\x2b\x6c\x2b\x27\xfe\x34\xcb\xd8\x7e\x8a\x9c\x70\xc2\x0f\xf0\xb4\x92\x9f\x4a\x4a\xfb\xc4\xc6\xe9\x24\x64\x4e\xfb\xb4\x6f\xdf\x99\x70\x8e\x03\xad\x67\x2c\xdb\xa2\x09\xbb\xe5\x1d\x06\x86\x9c\x1e\x46\x46\xf1\x46\x24\xd4\x77\x7a\xc4\xe9\x29\xc1\xa3\x10\x2a\x8a\xce\x9e\x2b\xf4\xd3\x5e\x85\x6e\x1b\xa3\x8e\x1a\x84\xf0\xd0\x6b\xf0\x63\x31\xc4\x68\x32\xb5\x84\xe5\x9a\x00\x90\xf9\xe8\x8e\x1a\xb3\xf9\x9a\x9f\xa8\x50\x35\x3b\x19\x81\xc8\x1e\x12\xc7\x1e\x2a\x91\x68\x31\xd6\x13\xa1\x0b\x6a\x16\x46\x18\xbe\x09\xe9\x61\xb1\x24\xbc\xac\xbc\x18\x02\x4b\x16\x1d\x3c\x37\x00\x79\x79\x31\xdc\x23\x8b\x21\x4d\xe8\xaa\xab\x71\xdc\xac\xee\x8f\x2c\xc7\xb3\x5d\xfd\x4b\xa3\xed\xf1\x63\x6e\xe4\x76\x73\x06\x78\xb4\x61\x9f\x85\xe7\x7e\x30\x99\x9a\xa6\xe4\xc0\x1c\x3c\x09\xa7\x65\x3e\xdc\xa3\x0d\x67\x57\xf6\xca\xf4\xca\x53\x3a\x61\x82\x77\x38\xab\x2f\xd8\x22\xe5\x3b\x15\x96\x36\xa9\x3a\xed\xce\x73\xa3\x4e\x95\xa7\x2d\xfc\xce\x1b\xf6\x99\x98\xb9\x51\x9d\xac\xc5\xcb\xca\xd3\x0d\xf7\xa7\x1b\x56\xa7\xfb\x1f\x3b\x53\x39\xa4\xe3\xd3\x7d\x56\x84\xa7\xbd\xe9\xda\x3a\x10\xac\x3a\x8a\xd2\xa4\x91\x9f\xc5\xf2\x59\x2d\x4f\xab\xc6\xe8\xf1\x8f\x9f\xcc\x4e\x0d\xba\xa9\x1d\xb3\xce\xcc\xac\x73\xbb\x09\xff\x0f\x4f\xa5\x6a\x8e\x95\x1f\x48\xaa\x15\x05\xc2\x1d\xa5\xa3\x54\x09\xed\x0e\x3e\xf3\x39\x2a\x15\x29\xaf\x1a\xc2\x97\xa3\xa2\x1e\x2e\xa5\x94\x62\x22\xdc\x67\x3e\xd7\x28\x5c\x1f\x72\x9b\x10\x80\x0f\x0b\x58\xca\x70\xcf\x9b\x3a\x24\xc6\xd7\x61\xcc\xff\x21\x92\x8c\x9c\x1f\x5a\x2f\xaf\xe9\xfc\x88\x69\xf7\x63\x61\xda\xbd\x56\x79\xba\x67\x68\x29\xa4\x0d\x8f\x22\xe1\x76\x84\xd6\x30\xaf\x37\x0a\x16\xc6\xd8\x52\x8d\x7a\x97\x65\x1b\x2a\x1d\x4a\x4c\x33\x46\x77\x58\x04\xf6\x97\xc1\xaf\x36\x28\xa1\x29\x5a\xe6\xbe\xf5\xa3\xe4\x6a\x3b\xda\x36\x9b\x78\x85\x02\xd8\xc2\xe3\x78\x8d\x96\x22\xe5\x37\x26\xfc\xaf\xca\x1b\x26\x0c\xc1\xa9\xd2\xb3\x2d\x75\x84\xf7\xcd\xa8\x81\x7c\xba\xa8\xda\x92\x97\xdb\xf2\xd0\x02\xd6\x30\xf1\x95\x51\xd3\x76\xca\x4f\x17\xf1\xb5\x89\xb9\x16\xdd\xa9\xc1\xd0\x2d\x04\xea\xc8\xec\xab\xd1\x94\x7a\xac\xdd\x21\xfc\x5f\xe9\x18\x29\x13\x93\x15\xc9\x9f\xa5\x6a\x4b\x1c\xad\x1a\xea\xe4\xf4\x75\x50\x91\x7e\x43\x3a\x99\x5a\xca\x22\x97\x03\xbd\x46\x68\x9a\xce\xc5\xc4\xc9\x0b\x91\x03\x2d\x1b\x5f\xda\xa5\x1b\x82\xbc\x2c\xd3\x10\x3d\xc4\xa5\x23\x74\xc2\xb2\xd7\x1b\x87\xca\x70\x54\x5c\x9b\xc2\x68\x34\xcb\x6c\xf2\xac\xbb\x24\xb4\x81\xc5\x5d\x3a\x41\xc9\x68\xa4\xf7\xb1\x34\x32\x99\x92\x94\x88\xec\xf3\xa2\x5d\xb9\x98\x22\x5b\xba\x68\xef\xb9\x19\x26\x9d\x9e\x0a\xa7\x39\xc8\x29\x23\xc5\xee\x39\x55\x12\xa9\xd7\xc3\x48\x5e\x88\xdc\xf6\xa9\x42\xba\x4b\x49\x5f\x22\xd3\x55\xc8\x1f\x3e\xb5\xd5\xd3\x67\x9a\xec\xca\x91\x64\xa4\x67\x80\xfa\x04\x12\xf5\xf4\x59\x9b\x5c\xde\xf8\xcd\xa6\x3a\x5b\x0d\x96\x65\xc1\x15\xd5\x69\xcf\xc7\x48\xf7\xa3\xee\x8c\x8f\x1c\x8c\x89\x8f\x6c\x90\x81\x94\x64\x2e\x82\xc2\x3c\x21\x19\xb3\x49\x30\x25\x93\x00\xf8\x5f\xce\xee\x17\xf9\xf8\x42\xeb\xa5\xde\x20\x1a\x4a\xae\x15\xa2\x3c\x20\x53\x54\xca\xdc\x17\x95\xf2\x1b\x96\x63\xba\x0b\x50\xde\xeb\x91\x5e\x0f\x7a\x03\xd2\x1b\x14\xe4\x5d\xe7\xf7\x52\x5c\x2a\xc0\xf0\x64\x2a\xfc\xb0\xca\xc7\x53\xb8\x9a\xea\x54\xd3\x47\x8e\xea\x31\xfb\x6e\x15\x0a\x4f\xc5\xb6\x80\x32\x6f\x08\x06\x61\x7b\x87\x52\xcf\x4b\xdd\x4c\xed\xa6\xda\x79\x6e\xea\x9a\xbd\xb9\x28\x15\xb0\xa7\x21\x7b\xcc\x67\x57\xf6\x49\x4b\x69\xa3\x11\xeb\x0b\x5a\x7a\x51\x77\x49\xd3\x62\xe6\x71\x79\xe6\xc7\x6c\xd4\x45\xca\xa3\x3c\x58\xe8\xb1\xbb\x7a\xa6\x03\x01\xcb\xf5\x09\xa8\x57\xa4\x9a\x86\x88\x06\x2d\x47\x28\x4b\x0e\xd1\xbd\xb0\x85\xd3\xce\xb9\x28\x82\x10\x55\xc5\x86\x18\xa2\x4b\x5b\x54\x0a\x9a\xc2\x3f\x89\xda\xa3\xa8\xd5\xc2\xfe\x02\x45\x82\xd5\x33\xcd\x64\x12\x4d\xcb\xae\xd3\x11\x1f\x8f\x7c\x6e\x39\xfb\x1b\xa3\xa5\x40\x3a\x99\x80\x04\xaf\x05\xfc\xf8\x23\x34\xad\x73\x84\xa6\x5d\x7b\x9b\x2a\x41\x7b\xc4\x94\xff\x8f\xd0\x0c\xbf\x97\x9a\x6d\x2b\x2e\x44\x06\xf8\x3e\xc8\xe7\x93\x2b\xc1\x18\xca\x53\x33\x36\x24\x9c\xca\xcd\x76\x18\x2e\xc7\xa6\xaf\x10\x09\xe1\xa2\xd6\xb6\xff\x98\xcf\x52\xc0\xee\xeb\x22\x44\xec\x51\x0c\x18\x69\x9f\x26\x1f\x05\x95\xd5\x61\xe5\xf0\x13\x39\xd2\x4c\x34\xd2\x94\xc8\x71\x2f\xfc\x48\xf7\x77\x13\xc2\xc7\xf8\xb6\xb2\xc3\x67\x65\x7b\xbf\xe0\x23\x71\x94\xe8\xad\xec\xbb\x50\x12\x55\xb7\xbe\x43\xdc\x4e\xb1\xf5\xdd\xdf\x4d\xe2\x9e\x9e\x48\xdd\x1c\xfe\x3d\xc3\x77\xbe\x30\xfc\xe7\x52\xbb\x7a\xf8\x5d\x15\x9e\xc9\xd5\x18\xd5\x19\x68\xef\x6b\x91\xb7\x64\x32\x95\x6a\xde\xd2\x1c\x0f\x8e\xb7\x6f\x9a\xa9\x82\xe0\x95\x73\x2b\xcd\xb5\xea\x7c\x33\x62\x54\x72\x5a\x10\x39\x8f\x94\x9b\x83\xbf\x40\x09\xad\x24\xec\x49\xa0\x48\x5f\xae\x61\x50\x5a\x55\x02\x16\xaa\x62\x9f\x23\x76\x10\x21\xd7\x3c\x11\x99\x0d\x66\x34\x46\xab\x96\x8f\x61\x51\x32\x61\x99\x61\x58\x52\x7b\xb4\xbc\x9c\x8d\x96\xcd\x26\x5e\x4c\x96\x53\x5a\x4a\x1d\x2f\x6e\x89\x16\x7b\xf9\xcd\x25\x26\x42\x75\xe6\x37\x97\xb9\xb3\xdf\x42\xed\x82\xb6\xcf\x52\x90\x4e\x46\xd4\xa8\x58\x49\x75\x48\xb7\x23\x76\xe6\x77\x13\x8b\x6d\x8c\xda\x47\xce\x56\x1c\xae\xf7\x4e\xd6\x31\x2f\x9c\x3f\x00\xfd\xba\xcf\x8d\x5d\x95\x23\xd2\xce\x1e\xc7\xd4\xe9\x2a\x34\x2a\x5c\xb4\x53\x3a\x71\xc0\x85\xf6\xb4\x42\xcd\x96\x0f\x50\x2a\x2a\xa2\x3c\x90\x6c\x96\x35\xea\xde\xab\x68\x7e\x47\x50\xec\x31\xcf\xa1\x12\x35\xa1\x02\xe0\x86\xda\xa7\xb2\xfa\x1b\x54\x00\x8c\x2a\x4a\x53\x9c\x81\x88\x6c\xb8\x0f\xf4\x6a\xc8\x57\xe9\xbf\x8f\xd4\xa8\x70\x61\xd3\x27\x3e\x38\x11\x66\xb3\x44\x3f\x7f\xed\x25\xcc\x80\xa7\x20\xbc\x3f\xb4\xe8\x10\xca\x69\x5e\x41\x88\x02\x3f\xf9\x6b\x11\xab\x3e\xa7\xad\x45\x2f\xa7\x45\x53\x12\x61\xf5\xca\x27\x0b\xf1\x06\x4b\x7e\xe2\x49\xf8\xe6\xe3\x7b\x79\x1f\x1a\x94\xfa\x38\x1f\x52\xe9\x05\xf1\x25\x36\xe8\x91\x76\xaf\x74\x76\x7e\x2f\x86\x2f\x12\xc5\x54\x01\xe9\xb1\xb4\xa8\x2a\x34\xaf\x5e\x05\x61\x78\x61\x25\xe1\x3f\x7c\x7c\xff\x0e\xe1\x2c\x73\x1a\x94\x1e\x4c\x86\xbf\x54\x9e\x27\xe5\x09\x1c\x36\x2e\xe8\x99\xf2\x6c\xf9\x97\x35\xca\xe0\x82\x10\x0b\x8b\x54\x0c\x46\x90\xae\x6f\x85\xe1\x87\x0e\x09\x9e\x65\x7e\xfc\xda\x0f\xfc\x84\xa1\x00\x8f\x93\xf2\xb2\x22\xac\x72\xc8\xe0\x52\x4e\x3a\x6d\xc5\xb9\x7f\xcc\x4e\x45\xc0\x51\xd1\x63\x3f\xe8\xe0\x1c\x42\x18\x5e\x5d\x81\x33\x41\xca\xf9\x59\x26\xb3\xf1\xfb\x10\x01\x43\xed\x3e\xc6\xe5\x40\xb6\x7d\xd2\xee\x17\x6a\x9f\xde\x51\xcd\x48\xb5\x69\xf0\x69\x54\x84\x5c\x08\x69\xa4\x0f\xe5\x59\x65\x83\x9a\x86\xd1\xa0\xc6\x9b\x60\xeb\xad\xfc\xb9\x28\x36\x4c\x53\x84\xfd\x47\xd1\x91\x88\xf1\x92\xc2\x09\x4b\x8e\x40\x67\x45\x2c\x68\x36\xf6\x4b\x2f\x48\xb5\x65\xb1\xa4\x3a\x15\x80\xd3\x3b\xa1\x49\x29\xc9\x69\xb5\xb5\xba\x01\x4f\xb7\x7e\x30\x27\x0c\xb9\x7d\xc9\xb2\xba\x7d\xe2\xf6\x8b\x03\xde\x7b\x2e\x82\xd5\xe1\xa6\x07\xbd\x72\x4c\xd6\xa5\x17\xbf\x51\x64\x9e\xc8\x85\x74\x68\x25\x2f\xe4\x9f\xe7\x1e\xdf\x2d\xa1\xc8\x41\x1e\x84\x5a\xd3\xb2\xc7\x39\x14\x44\x5e\xa3\x4c\xe4\x65\x59\x39\x54\x4d\xc3\x39\x93\xfa\x2a\x9d\x97\x53\x76\x53\x44\xb2\x29\xfb\x16\x88\xe0\x68\xc2\x11\x50\xe6\x57\x1a\x71\x4e\xa0\xfa\x61\x89\x17\x68\x68\x46\xa0\xa1\x19\x01\x75\x9a\x4a\x69\x70\xa5\x79\xaf\x58\xb9\x13\xba\x1c\x1d\x16\xb9\x26\xa1\x40\x48\x2f\xfe\xe5\xa7\xf8\x45\x4e\x42\xa3\xc9\xbf\x9c\xa3\xe9\x0b\x7c\x71\x26\x93\x20\xe8\xa3\xdd\x1e\x8a\x10\xc8\xbe\xce\x8d\xf0\xa5\xa0\xce\x45\xd6\x0f\x64\x18\x4d\xe9\x21\xbb\x56\x89\x6b\x27\xce\x54\x05\xc7\x2e\x14\x98\xc6\x4e\x91\xbf\x45\x82\x38\x31\xab\xe7\x22\xcb\xb6\x0e\x55\xd5\xb6\xf7\xb4\x3a\x2e\x46\xc6\x5b\x6f\x63\x40\x0d\xf2\x3a\x84\x51\x6c\x8f\x3f\xd4\xbc\x9e\x5d\x12\xd6\xd9\x25\xd1\xee\x9e\x65\x60\x29\x11\xce\x1d\x4b\xae\x83\x24\x7a\x54\x7c\x37\x88\x41\x60\x28\x04\x66\x9c\xfb\xb3\xb6\xfb\x4e\x58\x25\xf7\xc8\xc8\x9a\xb3\xc5\xde\xe7\x12\xd3\xda\x44\x85\xf2\x12\x4a\x07\x71\x34\x6c\xe2\xb4\x6d\x68\xdb\x84\xff\xeb\x92\xb6\x50\x74\xf6\x9e\x11\x3b\xb2\x2f\x30\x84\x4c\xee\xfd\xb7\x28\x01\x4f\xa5\x37\x9f\x85\xf1\xb2\xc4\x75\x35\x90\x67\x9a\x7d\xc7\xa6\x65\xff\x66\x0f\xbd\x13\x50\xd9\x7a\xfb\xf2\x9f\x6e\x7e\x78\xf9\xed\xf7\xd7\x18\x9b\xa6\x27\x32\x99\xcb\x60\x99\x7c\xdc\xc9\xd2\x80\x27\xd1\x5e\x0d\x01\x21\x43\x6f\x5d\x3a\xc2\x3a\x95\x5d\x0d\x3b\x43\xbb\xe7\xf6\xba\x56\xcf\xed\xb8\x5d\xa7\xdb\x1b\xe7\x89\xca\x19\x6e\x8a\xe7\x6f\xdf\xb9\xc4\x47\xac\xe5\x34\x43\xfe\x2f\x7e\x11\x22\xd6\x74\x70\x19\x4f\x43\xbf\x4d\xfa\x12\xa0\x9c\xa6\x09\xf2\x64\xee\xb1\x1f\x54\x67\xeb\x9b\xa6\x73\xe1\x23\x1b\x5f\x95\x27\xc1\xab\x91\x12\xbf\x99\x94\xe2\x88\x29\x5c\x94\xd0\x66\x82\x4d\xd3\x6e\xd0\x64\x9c\x5c\xda\xe3\x16\x43\xad\x04\x17\xf9\xd6\x93\x66\xbe\xd6\x28\x79\x91\xf0\x91\x93\x64\x8f\xc6\xe8\x7d\x91\xc6\x90\xa3\x4e\xbc\xfa\x51\x0b\xc1\x49\x69\xd8\xbc\x5e\x1d\xf1\x56\xce\xc6\x9f\x0f\x50\x64\x84\xbf\x40\x4e\x8b\x61\x7c\xe1\xee\x8f\xec\x44\xb4\xba\xfc\x44\x75\x72\x5a\x4b\x0d\x60\x76\x5b\x4f\x3c\xfa\xb2\xf7\x17\x3a\x73\x3f\x2a\x67\xd6\x77\x2e\xda\xd5\x3d\x55\x29\xf1\x9d\xde\x09\x8c\x5d\xa2\xf3\x74\xdf\xab\x5f\x6a\x0d\xb6\x10\xbb\xba\xba\xa2\x36\x1e\xb7\x9d\x56\xe9\x48\x17\xc7\xad\x69\x75\xd5\xc8\xbe\x7d\xff\x8d\x7b\x8d\xf9\x9d\xaa\x2e\x46\xff\x8b\xe9\xce\xc4\xe7\xec\x61\xb3\x3f\xa6\x23\x77\x41\xad\x47\xd3\x47\xb5\x8b\xdf\x3f\x8d\x6d\xe5\xe2\x3b\x65\x59\x09\xf2\x1b\xf9\x18\xd6\x4e\x71\x22\xc4\x4f\x45\x63\xaa\xd5\x75\x48\x5f\xe8\xd3\xfb\xa7\x83\x3b\xef\xcd\x64\x21\x5c\x40\x09\x43\x7d\xb7\x2c\x83\xee\xbb\xa4\x2f\x20\x50\xff\x04\x5a\x2a\x9f\xe4\xdb\x78\xaf\xe1\xe5\xe3\x26\xdc\x87\x8b\x45\x1e\xb5\x08\x42\x6a\x83\x47\x6d\x88\x0f\x65\x34\x29\xb5\x47\xde\x65\x3c\xc2\xe9\x25\x0a\xa8\x5f\x12\xca\x79\xcd\xe6\x14\xe3\x31\x0a\x69\xf8\x02\x45\x34\xbd\x08\xf0\x8b\xa8\xe9\x40\x4a\x03\x4c\xc2\x26\x0d\xae\xec\x31\x8a\x68\x70\x91\xe2\x17\x11\xc9\x93\xe4\xa6\x54\x00\xb3\xb1\x73\x61\x93\xf4\x45\x71\x7d\xc3\x7d\xde\xa0\x7f\x5a\x82\xaf\x67\xeb\xaf\xd3\xd5\x29\x81\x96\x92\xff\x75\x1b\xd4\x47\x1d\x77\xd8\x19\xf6\xfa\xee\xb0\x0b\x5d\x9c\x65\x6e\x83\xfa\x6a\x9e\xbb\x62\x3b\x79\x83\xb5\x92\x80\x26\x83\x88\x36\x13\xf0\x69\xaf\xdb\x6d\x77\xcd\x00\x42\xf5\x94\x47\xa1\xb7\x33\xff\x45\xd8\x44\x48\x55\xb8\xba\xba\x72\x7a\xf8\x45\xd8\xf4\x5f\xa8\xa2\x48\x16\x49\x43\xce\x2b\xbb\x72\x27\x73\x2a\xba\xff\x0c\x4b\x86\x62\x73\x57\xe1\x9d\x63\xd7\x01\x84\x12\xb0\xcf\xaf\x9e\x63\x5f\xef\x2f\xf3\xf3\x18\xbd\x52\x67\x1b\x22\x10\x5d\x1d\x86\xa8\xcb\xc9\x7e\xb2\xb1\x5a\xeb\xcf\xd2\xc0\x2f\x34\x96\xda\x1f\xf5\x69\xd0\xb9\xd7\x51\xec\xdf\x05\x44\xc0\xd2\x3a\x10\x78\x2a\x7f\x76\x09\x12\x68\xc4\x9e\x43\xa0\x93\xe7\xcd\x65\x2d\xa7\xdf\xa0\x0d\x79\xc0\xfd\x60\x89\x64\x11\x2e\x9d\xb4\x0a\x02\xdc\x9f\xbf\x00\xdc\x0a\x9d\x8b\x78\x97\x2d\x0d\xc8\x08\x92\xb8\xba\x15\xa2\x16\xff\x8b\x5f\x48\x40\x7b\x7d\xe1\x1e\x9e\xa7\x02\x16\x9d\x4a\x0e\x7d\x6a\x9a\xf9\x70\x0f\x10\x9f\xe6\x30\xc5\x30\x45\x6c\xd2\x56\x89\x22\x53\xd7\x9c\x04\xf2\xa1\xe5\x10\x94\xb4\x02\x7c\x21\x22\xa6\x37\x43\x31\x99\x5d\x1d\xd0\x3c\x95\x8e\xf9\x70\x6f\x93\x28\x0d\x66\xf5\x28\xc9\x1e\x17\xb8\x88\xe4\xf1\x4c\x65\x38\xd2\xca\x69\xaa\xcb\x9a\x7c\xd2\x85\x4f\x67\x44\xd1\xa2\xc8\x6e\x4f\x4b\x22\x3b\x52\xf1\xde\xe9\x4a\xbd\xbb\xf4\xcb\x9b\x51\x95\x0b\x47\xb8\xf1\x49\x0e\x62\x59\x49\x55\xb8\xa1\x91\x25\xc9\x3f\x98\xd3\x0d\xac\x69\x29\xd3\x14\x3c\x52\x43\xbe\x33\x28\x0d\x91\x88\xee\x88\xd6\x18\xc3\x96\x1a\xfc\x63\xce\x57\xec\x67\xa1\x2a\xc7\x93\xce\x77\x2a\x46\x0c\x1a\x8e\xcc\xf5\x15\x6b\x11\x62\x29\xf0\x48\x1e\x61\x4b\xa7\xdb\x90\x19\xb0\x50\x42\xb7\xe3\x44\x8c\x13\x61\xb2\x44\x09\xb4\x31\x2e\xe7\x73\xb0\x45\x93\x9d\x36\xa5\x34\xcc\xb2\x4e\x57\x78\x4a\x71\xae\x6f\x30\xa0\x22\x0f\x47\x52\xae\xed\x62\x9c\x65\x8e\x2b\x3c\x04\x34\x67\xf7\xce\x7b\x97\xbb\xe2\x77\x06\xf2\xfb\xf8\xde\x17\x59\x0d\xcb\xdf\x3a\x18\x3f\xcd\xbc\x98\x9d\xf7\x7a\x44\xfc\x1d\x0e\x48\x44\x5d\xf0\x69\x67\x78\x76\x1b\x31\xef\xf3\x99\x28\xee\x0f\xe5\x6b\xc7\x71\x48\x44\x07\xe0\xd3\x6e\x57\xbd\x9f\xb3\x85\x97\xae\x12\x22\x7b\x6e\x26\x3b\x8d\x08\x3d\x91\x23\x5e\x3a\x0a\x09\xab\x09\x1b\x66\x34\x55\x6b\x32\x5a\x5d\xce\x46\xab\x66\x13\xcb\x58\x01\x69\x79\x50\x2b\x8c\x2f\x3b\x83\x2c\xf3\xae\xfc\xd2\x7c\xf4\x3d\xd0\xb9\x29\x51\x0a\x11\xde\xed\xf2\x6e\x05\xab\xbb\x41\xc6\xb9\x1d\x3a\x06\xce\x32\xfe\x6c\xdf\x8a\xc7\x0d\x32\x9a\xf6\x83\x63\x60\xfc\xb4\xa9\xd9\xc6\x7d\x1c\x7d\xe9\x08\x1e\x26\xa8\xe4\xf6\xaa\xf8\xe1\x6f\x4c\x13\x3d\x8e\xd3\x32\x98\x5a\xeb\x90\xad\xca\x8f\x04\xef\x30\xd1\xa7\xac\x41\x43\x14\x60\x3c\xf6\x90\x74\x42\x16\x19\xf8\x20\x80\x0d\x26\x22\x06\x4d\x2e\xc3\xbe\x15\xd1\x48\x45\x06\x70\x34\xc7\xc4\xc8\x39\x17\x78\xfb\xe6\x9d\x7a\x7a\xe7\xbd\x83\x77\xd7\xdf\xbc\xfc\xf4\xe6\x87\xeb\x9b\x37\xef\x5e\xbf\x79\xf7\xe6\xd3\x5f\xe1\xc3\xfb\x8f\x6f\xaa\x25\xd7\x1f\x3e\xbe\xf9\xf6\xfd\x3b\xd0\xb4\x3f\xf8\xf1\x9b\x20\x61\x77\x2c\x02\x11\x56\x18\xfc\xf8\xa3\xb7\x60\xba\x8c\x77\xf5\xf1\xe5\x6b\xde\xc0\xa7\xeb\x6f\xae\xbf\x13\x3d\x56\x0a\x4a\x79\x4d\x8b\xfc\xa0\xba\xcd\xb2\xf9\x32\xdc\x53\x7b\x74\xa3\x0f\xff\xfd\xe8\x9e\x6f\x33\x9a\xc3\x2d\xbd\x99\xdc\x4f\xb1\x48\x63\xb4\x81\x5b\x6c\x9a\x0b\xfe\x17\x66\xfc\x1d\xc6\x67\xa5\x2b\x4a\xd7\xb0\xae\xf8\x2f\x6d\x20\x97\x19\xa9\x45\x85\x8d\xb4\x3a\xd5\x39\x40\x95\x00\x4d\x05\xb6\x3e\x34\x38\x97\xce\xca\x3d\xd2\xed\x1d\x75\x47\xce\x25\x47\xa7\x52\x9c\x97\x20\xa6\x1e\xc9\x93\x5a\x6b\x92\xb3\x0a\x2e\xb4\xba\x65\x9a\x53\x34\xfa\x45\xfa\x4b\xda\xaf\xea\x0d\x3b\xe8\x45\xbf\xa8\x01\xce\x5a\x00\x59\xc4\x84\x37\x4d\xbf\x0a\x97\x0b\xa3\xd4\xba\xf4\xdf\xa7\x66\x97\x6f\x32\x61\xa8\xe7\x54\xac\x39\x1c\xd2\x93\x4d\x3e\x8f\xe8\x29\x35\xc9\x39\xea\x1a\x54\xcd\x1a\x94\xed\x23\x93\x67\xc8\xb4\x7b\x05\x9e\x2d\x51\xeb\xa5\xee\x4a\x47\xfd\x08\xaf\x27\x22\x7e\x30\x7c\x49\xf7\xe3\x53\xef\x6a\x27\xfc\x3c\x7a\x29\x1f\xc1\xfe\xf5\x22\x07\xbd\x54\xe7\xfc\x3c\x2e\xb2\x68\x7e\xef\xb2\x92\xd6\xe9\xf6\x9f\x93\x0b\x7b\xd8\xae\x30\x6b\x4a\x98\x52\x40\x81\x86\xd0\x0e\xe4\x43\x28\x5e\x54\x58\xb7\x61\x9b\x0c\x65\x97\xcf\xe0\x0f\x87\x9d\xa3\x5d\xbe\x09\x6a\x3b\x7c\x13\xec\x75\xd7\x21\x43\x41\x84\xd6\xa5\x95\xfe\x82\x36\x42\x5b\x2b\xe6\x79\x4a\x84\xf1\x9f\x63\x59\x49\xf8\xda\x7f\x60\x73\x48\x4b\xe2\x25\x58\xd1\x89\x0d\xf9\xff\x53\x98\x69\xa2\x42\x57\x27\x22\x99\x66\x14\xb1\x59\x72\xee\x07\xdb\x70\xe6\xf1\xb1\x34\x0c\x58\x1c\x8d\x1d\xdb\x72\x20\xa2\xc9\xa8\xd9\x0c\x2e\x7b\x23\x1c\x35\x29\x7b\xb1\x9a\x04\x53\xe0\xff\xd0\xe8\xef\x1c\xd6\x87\x88\xa6\x28\xba\x70\x58\x1f\xef\xe0\x58\xc2\x89\x1e\x04\xd4\x1e\xb5\x5a\xc9\x15\xb5\x47\x38\x68\xd2\xd5\x24\xe1\x8d\x24\x53\x9a\xa2\xe0\x42\xd0\x96\xc1\xdf\xb1\x17\x0e\xeb\x57\x32\x44\x94\x0d\x0c\x7a\x90\x50\xc3\x18\xb5\x5a\x4c\x34\xc2\x49\x1c\xa3\x41\x69\xa2\xbc\xf7\x65\x32\xcd\xd5\x84\x4d\x35\x37\xa7\x94\x1b\xa2\xe8\x8c\x7f\xab\x95\xb8\x4d\x95\xcc\xd2\xb0\x0d\xe8\xb7\xb4\x51\x01\x6e\x06\x3a\xed\x60\xb2\x83\xf9\x91\x48\x6a\x85\x2a\xf8\xef\x5c\x4a\x9d\xf1\x9c\xbf\x6e\x39\x10\xbc\x60\x98\xcc\x11\x7b\xc1\x20\xb9\x70\x21\xc0\xbb\xb2\x4a\x4b\xd8\xec\x20\xc3\xb6\x6c\xdb\xe6\x83\x1e\xb0\x56\x57\xef\x0a\x6a\xe3\x2c\x33\x1c\x5e\x6c\x0d\xf3\x42\x5b\x14\x5a\x6e\x97\x97\xf3\xbf\x45\x7d\x57\xbc\xb2\xab\xff\x39\xee\x80\xd7\x44\xf6\xc3\x9c\xd9\xb7\xbd\xdb\xb6\xd7\xef\x75\x6c\x9b\x53\xa2\x45\x93\x52\x5b\xb9\xc7\xce\xc4\xa5\x38\x68\xe5\xd3\xac\x0f\x4d\x9d\x41\x68\x04\x31\xa4\x4a\x4f\x0e\x33\x4e\x4a\x89\x8c\x95\x6b\x6a\x18\x9c\x96\xb5\x45\x84\xf5\xd5\xa5\x9d\x65\xab\x2b\xb7\x26\x07\xd0\x4c\xd0\x93\x69\x83\x6a\x7b\x23\xe3\x9d\xf7\x4e\x7c\x94\x5e\xd2\x96\xc3\x5c\x47\x64\x24\xe3\x0f\x9a\xe0\x52\xbb\x99\xca\x2f\x85\xa1\xd0\x9a\x1a\x2d\x03\x52\xda\x4a\x31\xa4\x57\x0e\x6b\xb9\x0e\x3f\x16\x01\xa7\x67\xeb\xcf\xa1\x0d\x01\x65\xa3\xe0\x8a\x76\xec\x61\x6f\x84\x93\x26\x75\x5c\x08\x2e\xc4\x4f\xa9\x6a\x08\xae\xa8\x2b\x5f\xf0\x72\x37\xe7\x75\x76\x28\x7d\x31\x47\x2e\xf4\x86\xe0\x60\xdc\xea\x0d\xf1\xa5\x3d\x96\x45\xad\x04\x1c\x4c\xd2\x0b\xfe\x9c\x88\x28\x88\x2f\x68\xa7\x6b\xb7\xbb\xc3\x61\xcf\xed\xb7\xfb\x76\x67\xd8\x03\x94\xd0\xae\xdb\x4a\xf0\x95\x2d\xc7\xb3\x40\x36\x04\x18\x22\xba\x1a\x45\x57\xb4\x3f\xc2\x0b\xc4\x2f\x93\x8d\x21\x6a\xd1\xfe\x99\xac\x32\x47\x8e\x0d\x91\x4c\x9f\xc1\xef\x61\xcb\xe1\x95\xdd\xf6\x08\x2f\x91\x73\x79\xe9\xb6\x45\x6d\xb7\x7d\x26\x7e\x46\x18\x16\xc8\xe1\xb5\x97\x48\x44\x9a\xdf\x20\xe5\x83\xac\x3a\x5b\x88\x48\x09\x09\x6f\x4c\xbc\x2c\xdf\x83\x55\xce\xd6\x3d\xd2\xd5\x95\x3d\x5e\x37\x11\x8a\xe9\xa3\xbe\x1b\x97\x74\x35\x36\x6c\xcb\xa8\x7c\xd2\x8a\x71\xf3\x91\x3c\xe6\x19\xa9\xe2\xd6\x0a\x37\x0d\xcb\x68\xea\x22\x5e\x80\xc9\xba\xf9\xa8\x0d\x14\x74\x82\x2a\x65\x9a\xd5\x25\x4e\x77\x5f\xc1\x58\x97\xcc\xfe\x24\x98\xd4\xa9\xd3\x24\x94\x14\xc0\xf1\x43\xc4\x66\x7e\xec\x87\x15\x9b\x40\xff\x90\x87\x97\xb7\x4e\x4d\xc9\x81\xb2\xca\xbf\x52\xdb\x3b\x7a\x45\xf2\x9e\x6a\xd8\x66\x75\x3d\x54\xf5\xff\x54\xae\x7c\x04\x10\xe3\x83\x5c\x87\x6c\xac\xfa\x4e\x30\xd1\x4f\x90\xdb\x20\xd6\xae\xdf\x73\xcc\x62\xf9\x8a\x94\x02\x29\x7a\xb1\x96\x9f\x0c\x2a\xf2\x93\x01\xe9\x0b\x6b\xc6\xe1\xf3\xe8\xb3\xbc\xbd\x59\xc4\xbc\x44\xa4\xa1\x1c\x56\xda\xe3\x54\xae\x68\xef\x39\xc4\x99\x36\x33\x69\x0f\x71\xa9\xe9\x4a\x5c\x47\x9f\xc5\x84\xa1\x81\xa2\x00\xcb\x51\x81\x06\x0e\x19\x08\xb2\xa8\x2e\xc3\xfc\x1f\xe9\xea\x91\x28\xb6\xfe\xb0\x2b\xad\x7d\x3b\x95\x54\x5e\x2b\x60\xfb\x5d\x6c\x85\xc1\xeb\x88\xb1\x5f\xd8\x19\x43\x43\x1b\x23\x63\x21\x7e\x9d\xd6\xb8\x95\x52\x79\x99\x66\x84\x12\x3c\x66\x32\xad\xa3\x56\x86\xa8\xbc\xfa\x5d\xd2\xef\xc2\xd0\x26\x43\x39\xa2\x93\xe9\x6a\x74\x1a\x5b\x17\x5b\x0b\x3d\x96\x63\x21\x35\x6b\x12\xa8\xd7\x27\xe7\x55\x29\x55\x12\x7d\x44\x95\xf5\xa5\x64\x6a\xf4\xc0\xdc\xba\x04\xe9\xb5\x23\x78\xe7\xad\x59\x5c\xd7\x39\x43\x83\xb6\xde\x8d\x41\x9b\x0c\xda\xa5\xc6\x4f\xd0\x75\xc2\xc2\x43\x69\xc2\x4b\x73\x2e\x65\x44\x3e\x3d\xd3\xbd\x79\xe2\xaa\xcd\x84\x8a\x1e\x95\x0f\xe4\x84\x6e\xa0\xe7\xe6\xfd\xfb\xf1\xf5\x43\xc2\x82\xd8\xbf\x5d\x3d\xf7\x14\x34\x54\x6e\x68\xd4\x60\x59\xc6\xf8\x39\x28\x9f\x82\x62\x00\xa7\x33\x50\x17\x03\x78\x1d\x85\xbf\xb0\xe0\xb9\x9d\xf3\xbe\xb3\x4c\x64\x41\x15\x69\x0a\x6a\xbb\xfe\x42\x6e\x9b\xbc\xeb\x8f\xcc\x5b\xb1\xf9\x7f\x68\xd7\xbf\x13\x5a\xf9\x1c\x88\x38\xb6\xe2\x8e\x1d\xdb\x25\x8e\x5d\xd8\x09\xbb\x27\xd3\x11\xe7\xc7\x69\x90\x4f\x49\xd8\xc2\xff\x7b\x0e\xd1\x80\x0c\x06\xa5\xd9\x9c\x00\x60\xa7\xa0\xca\x26\x62\x5b\x16\x24\xea\x68\x89\xbc\xc1\xff\xe1\x00\xc6\x3d\x95\x07\xf8\xd4\xe0\x62\xe6\xad\xfe\x3f\x19\xcf\xf3\xb8\xd4\x7c\xeb\xab\xc9\xd0\xc5\x31\x68\x8b\xf4\x23\xea\x28\xb4\x89\x63\x17\xc6\x88\x6e\x5d\xb6\xde\x5a\xda\x44\x7a\xd2\x3e\xed\xce\xfc\x49\x6d\x52\xed\x29\x35\x7e\x31\xc0\x97\xa6\x48\x13\x95\xd6\xe8\x97\x69\x6e\x88\x74\x98\x50\xbd\xd6\x2e\x49\x51\x31\xba\x01\xa3\x29\x0d\x6b\x70\xd3\x98\x1a\xbb\xdc\xd6\xa1\xec\x51\xab\x05\x4a\xee\xa9\xd4\xb9\xfb\xfc\xf6\x37\x92\x80\xda\x63\xb4\xbf\xc4\x5f\xbb\xcf\xc9\x7b\xab\xf9\xeb\x72\x17\x9a\xb1\x3e\xcd\x4f\xbb\x75\x19\x5f\x0f\x37\x23\xcf\x39\x22\x7d\xd3\x53\x25\xe2\x2f\x27\x70\x72\x55\xf0\x3d\x3e\xa6\xa5\x3a\xb8\x1b\x65\x49\x3a\x57\xc1\xf9\xd6\xfc\xfd\x50\xa5\x6f\xb2\x07\x3a\x7d\x53\x5f\x66\xb7\xbf\xe3\xad\xf7\x30\x92\x39\x9c\xfa\x7d\x99\xc3\x69\xd8\x95\x39\x9c\x1c\x77\x28\x93\x38\x0d\x7b\x18\x1e\x68\x5a\x4a\x88\xf4\x91\xa6\x79\xb2\xc9\xf7\xf4\xa3\x69\x7e\xd4\x89\xbc\x63\x78\x49\xdf\x9b\xe6\x7b\x6b\x3b\xc8\x32\xc3\x80\xcf\x34\xb5\x3e\x44\xe1\xda\x8f\x19\xbc\xa5\xa5\x4c\x89\x33\xf4\x11\xc3\xa7\x4a\xec\x46\x78\x45\x7d\x7a\x6b\x2d\xe0\x3b\xda\x68\xec\x59\x19\x49\xd2\xf4\xb3\x15\xb1\x38\x5c\x6d\x19\x12\x41\xdb\x51\x52\x11\x6d\x3e\xed\xf0\xe4\x20\x6f\xf7\xb4\xc2\x52\x31\xf4\x09\x3e\x71\x1e\x57\x6a\x62\xde\x66\x59\x8d\x91\xbf\x1a\xef\x77\x8c\x9f\x4e\x3f\x0c\x44\x32\x43\x6c\x9a\x89\x95\x2c\x59\x80\x3e\x95\x9d\x0c\x02\x61\x03\x42\x5f\xe6\x4e\x67\x46\xcf\xea\x19\xd8\x34\x5b\x0e\xa5\xf4\xbe\x28\x7e\xb5\x8c\xc2\x35\xbb\xe8\xf5\x0c\xac\xcc\xa2\x22\xfc\xb4\xdb\x21\x0c\x1f\x0e\x25\xe9\xda\x24\x0c\x35\x96\x22\x44\xc2\xa1\x91\x1a\x4a\x28\x13\xc3\xc1\x7c\x60\x3b\x78\x57\x13\x5e\x81\x59\x37\x9c\x3e\xb1\x6e\x02\xda\x90\xee\x2f\x01\x65\xd6\xcd\xec\xec\x0e\xd5\x48\x2a\x44\x40\xe9\x2d\xf8\xd4\xa1\xfc\x29\x56\xba\xf7\x32\x64\x93\xba\x17\x79\x2e\xfd\x71\x62\x85\x9f\x49\x62\x2d\x3c\x7f\x25\x14\x14\x6a\x6b\x60\x25\x9e\xf9\xda\xc1\x8c\x26\xd6\x3c\x5c\x7b\x7e\x70\xc6\x37\x31\x1e\x23\x3f\xcb\x90\x2b\x3a\x58\x9a\xe6\xd7\x9c\xe4\xe2\x8f\xd4\xc1\xd0\xe0\x7c\x43\x3c\x0e\x68\x44\xd0\xcc\x34\x67\x16\x0b\x12\x16\x21\xbe\xcf\x31\x8a\x30\xcc\x4c\x13\xcd\x2c\xf6\xe0\x27\x08\x0b\x27\x67\x91\xbf\x97\x52\x01\x6e\xf8\x7e\x8d\x57\xe8\x01\x19\x6a\xf3\x5a\xb3\xa5\xe7\x07\xe7\xb3\xc7\xd9\x8a\x19\x18\x13\x14\xd2\x0f\x42\x75\xa0\xac\x21\x03\x48\x61\x85\x49\xca\xcb\xc8\x0a\x45\x7a\x53\x16\xf8\x69\x66\x9a\x0d\x4f\x0c\x40\xf6\xb5\x42\x0b\xbc\xdb\x8d\xb4\xbc\xe5\x2a\x1c\x61\x0f\x05\x22\xa8\x3f\x3e\xe3\xeb\x49\x27\x53\x90\xab\xec\x40\x62\x9a\x0d\x39\xb9\x9f\x75\x3c\x87\x9f\xab\xfb\x2b\xfb\x4f\xf7\xed\x34\x55\x58\x37\xb9\x09\x21\x7d\xa3\x53\x12\x9b\x26\x4a\xe8\x4d\x79\xc3\xde\x8e\x3f\x5a\x6c\xed\x27\xc8\x48\x83\xa5\x17\xcc\x57\x6c\x9e\x1f\x55\x03\x7c\x60\x98\xa0\x80\xa6\x56\x18\xe4\xef\x23\xfd\x1e\x8f\x03\xf4\xa4\xd6\x8b\x30\x88\x98\x17\x87\x01\x87\x53\x04\x45\x34\x15\xb7\x29\x5c\x31\x6c\x9a\x91\xc5\xf8\x4d\xcf\x1f\x90\xf1\xbd\x6e\xec\x5c\x7d\x7f\x1e\x95\x7a\x15\x2e\xf9\x7c\x27\xdf\x66\x19\x1f\xfb\xd8\x25\x8e\x28\xf1\xb4\xfb\x5e\xc8\x2f\x10\x53\x32\x95\xc4\xda\x72\xd8\xf8\xa6\x2e\x74\x84\xd3\xd0\xe7\x83\x9f\x08\xc4\xdb\x10\x41\x42\x66\x3a\xfb\xc6\x0e\xbe\x7e\xde\x92\x9e\x15\x4b\x95\x8f\xf5\xcf\x72\x12\x86\x58\xa6\x44\x2c\x53\xfe\x4e\x4d\x90\xdf\xa8\x9a\x55\xe2\x3b\xb3\x13\xc4\xd6\xb7\x35\xba\x2f\xa1\xe2\x4a\xac\x9b\x79\x96\x21\xfe\x87\x36\x6c\x40\x09\x4d\xac\x9b\xfb\x2c\x4b\xfe\x5f\xe6\xde\x7d\xbb\x6d\x23\xe9\x17\xfd\x5f\x4f\x21\x62\xbc\x91\x6e\xb3\x44\x11\x92\xaf\x90\x5a\xdc\x8e\x2f\x89\x67\xec\x38\x63\x39\xc9\xcc\x40\xb0\x36\x44\x36\x45\xc4\x20\xc0\x00\xa0\x2e\x11\x30\x6f\x76\xd6\x79\xa4\xf3\x0a\x67\x75\xf5\x05\x0d\x10\xf4\xe5\xfb\xe6\xac\xef\xac\x95\x58\x44\xa3\xd1\xf7\xae\xaa\xae\xae\xfa\x15\x1d\x9d\x5f\x31\x0e\xe5\xe8\xbc\x60\x07\xe2\x4f\x24\xb3\x45\x22\xc3\x54\x03\xf4\x52\xf8\x49\xc5\x39\xa8\xe1\x55\x5f\x2c\x2a\xa6\x03\xef\x0e\xd2\xd1\xf9\x8c\xde\xa5\xaa\xa2\x94\xa5\x58\x8f\xdc\x66\xa8\x4b\x62\x8c\x37\xc8\x66\x6a\x53\x34\xc1\xab\xd5\x5e\x9d\xed\xc6\x65\xc1\x93\xb9\x43\x8f\x48\xc9\x7e\x16\x42\xdd\xe4\xb2\x1b\x07\x3d\x67\x77\xe7\xd7\x7e\x0a\xe7\x33\x7f\xe0\xd5\x58\x43\xa9\xdc\xad\x20\x21\xaf\xa4\xa2\x27\x21\x6f\xf0\x87\xde\x47\x31\xbd\x7b\x23\x33\xe5\x62\x71\x88\x05\x96\xca\x31\x48\xc5\x18\x78\xf0\x13\x49\x31\x16\x6c\x43\x0c\x55\x7e\xbb\x32\xbc\x98\xac\x77\xde\x57\x15\xf9\xd4\x8e\xbf\x2b\x75\x14\x9f\x40\x77\xcd\x01\xe7\x7c\xe1\x50\x58\x09\x92\x92\xdb\x16\xcf\xa2\xbd\x9c\x88\x86\x4a\x64\x2c\xd9\x56\xf5\x5b\x57\x5f\x9a\xea\x55\xa4\xaa\xba\x86\x4e\xc0\x5b\xe9\x8d\x8a\x9b\x5d\xfe\x34\x2b\x5b\x3e\x16\xc6\x05\x76\x86\x84\x00\x7f\x5e\xb5\xf3\x2c\x4c\x9e\x14\x21\x09\xac\x7b\x3a\x04\xd7\x25\x9f\x2c\xd9\xe9\x4e\x90\xf7\x5e\x7b\x9f\xe7\x44\x39\x38\x7e\xa2\x96\x8f\x59\xf6\x89\xf5\x18\x33\x8b\x83\x16\xa4\x48\xa5\x7b\x5d\xe0\x5d\xb7\x84\x54\x11\x69\x26\xf6\x8b\xfc\xe9\xb7\xda\x3d\x95\xf1\xc6\x52\xed\xee\x1b\xb9\xae\xfa\xd1\x79\x51\xb8\xee\x4f\xb2\x69\x03\xc1\xa1\x35\x69\xae\x01\x87\xb9\x37\xca\x91\xf8\x0e\xf9\xaa\xaa\x11\xb5\x44\x90\x6d\x46\x9d\x4e\xf9\xf5\x6e\xbe\xa3\x0d\xa9\x45\xb1\x0a\x99\x4f\x73\x1e\x26\x26\x19\xa3\xf6\xaa\x54\xb1\xad\x99\x98\x6d\x91\x58\xc3\xc5\x68\xce\x9e\xf7\xc6\x54\x65\x8c\x7d\x92\x58\xb9\x11\xc2\x92\x67\x84\x53\x3f\x96\x30\x03\x73\x32\x1f\xfd\x30\x9c\x8f\x7e\x1b\xce\x47\xaf\xee\x0f\xde\xc3\x9d\x5a\x72\xfe\x27\x09\xf9\x30\x7e\x48\x89\xb5\x10\x65\xda\x03\x4a\xac\x94\x48\x01\xcf\x68\x49\x48\x94\x79\xaa\xcb\x6b\x96\xf0\x9d\x6c\x72\x8f\x4e\xee\x79\xcb\x7c\x9f\x8c\x41\xb3\x58\x8a\x5a\x0b\x33\xce\xaa\xbd\xb2\x6c\x52\x54\xd5\xe0\x3d\x6d\x57\x80\x23\xd5\x37\x11\x2f\x49\x21\x67\x15\x47\xe1\x93\x2f\x5d\x9e\x68\xbb\xc8\x01\x79\x2f\x64\xfd\x2e\x34\xc3\xa7\x91\xf4\xbe\x1c\xc9\xdd\xf4\x41\xea\x1b\x9b\x6a\xa3\x4e\xc4\xb2\x86\x64\x82\x58\xcd\xa5\x8c\x2f\xa4\x05\x88\x18\x7f\xa3\x00\x91\xb5\x59\x9f\x5c\xfe\x41\xa8\x64\x13\x6f\x67\x89\x86\x23\xd0\x2d\xbb\x60\xd9\x70\x08\x6b\x36\xf0\x76\x52\xb9\x42\x95\x8e\x14\xa2\xe1\x10\x8c\xa8\x22\x5a\x8c\x4b\xcf\xfe\x7e\x5d\x55\x64\x8d\x44\x35\x28\x42\xc6\x61\x6f\x2f\xaa\xaa\x1c\x61\xf9\x25\x9b\x33\x09\xb5\xd9\x7c\xd9\x08\xaf\x89\xb3\xd1\x55\x6b\xd1\xe7\x51\xc7\x4f\x71\x5b\xbf\xb1\xaf\x71\xbb\xaf\x3d\x5d\xdb\x6c\x78\x33\x68\xb9\xe0\x4c\xa6\x41\xf1\x08\x8f\x9f\x71\xbb\x41\x35\x6d\xc1\xa3\x2b\xf8\x39\x03\x93\xfe\xd8\xf7\xbc\xc7\x88\x11\xe6\x1d\x3c\x6d\xe0\xce\xd1\x6b\x4b\x81\xd0\x59\xf0\x46\x36\xb2\xc3\x83\xa7\xfe\x83\xa7\xca\x3e\xc0\x86\x2e\x57\xa0\xe5\x8f\xfc\xc7\x8f\xe0\xf1\x63\xff\xf1\x63\x78\xfa\xd0\x7f\xfa\x10\x9e\x3e\xf2\x9f\x3e\x32\x10\x75\x07\xde\x57\x5c\xe8\x1b\xff\x38\x34\x6c\x22\xf2\x86\xff\x3d\x9f\x27\xe8\x29\x7f\x57\x53\xe9\xf8\x0d\x45\xe3\xff\x80\x09\x6d\x4d\x69\xe7\x0e\xa9\xe5\x20\x27\xdd\x96\x54\x91\x62\xd1\x8a\xcf\xfd\xfe\x76\xc5\x32\x12\x64\x46\x52\x33\xe4\xd1\x24\x22\x39\x94\xb0\x36\x2e\x71\xf2\x49\x8d\xba\x1c\xc5\xa7\xbe\xd7\x03\x00\x8f\x63\xf0\x35\x46\xfc\x0a\x9f\x5d\x8c\x45\xa4\xc6\xa2\x50\x27\x3f\xdb\xb6\xeb\xe0\xb1\x38\x21\xf6\x8d\x91\x39\x2e\xc1\x9c\xad\xbf\xec\x5d\x3d\x6d\x8d\x0f\x08\x39\x77\xc3\xc3\x7a\xc1\x06\xad\x92\xa6\xdd\x31\xb5\x2f\xa2\xe7\x55\xb5\x68\x0d\xb2\x69\x50\x87\xd1\x21\x68\x4b\x44\x54\xc0\x95\x74\xd3\xb4\xe8\x70\xc2\x7d\xdb\x13\xff\x20\x44\x79\x79\xe1\xba\x83\x39\xb5\x02\x80\x88\x81\xc4\xb8\xc9\x8c\xa5\x96\xe9\x96\xba\x1f\x92\x36\x5b\x63\xdf\x02\x26\xe6\xd2\x50\xcb\x6b\xa5\x11\x44\x39\x95\x6f\x0e\x36\xdf\x40\x89\x30\xa6\xf8\xfa\x70\xcb\x6b\x28\xb1\x8d\x98\xe7\xc1\xe7\xf2\x40\x19\x1c\x86\x12\x65\x38\x67\x41\xba\x4e\x92\xb0\x09\xf3\x23\x88\x99\x82\x38\xc0\xd0\x23\x29\xbf\x26\x89\x4a\x10\x44\x40\x7e\xb7\x66\xb6\xf7\xcf\x8a\xc5\xa4\x20\x6b\x3a\x59\xfb\x5d\x05\x0d\x85\x59\x67\xbf\x68\xc9\x6e\x05\x0d\x1e\x75\x41\x66\x74\x32\xf3\x57\x9b\x4b\xd9\x72\xec\x6a\x19\x09\x29\x2d\x97\xba\x38\x39\xf0\x3e\xa3\x8b\x7c\x32\xee\x40\x06\x19\x58\x92\x16\x20\xd0\xc6\xde\x55\x6b\x68\xd4\xbe\xee\x20\xf9\x68\x4e\xee\x6a\xf0\xb4\xbb\x97\x57\xd3\xe6\xe1\xa0\xbb\xc7\x3b\x77\x25\xdd\x36\xe2\x2a\x2c\xd1\x0d\x5a\xa2\x44\xa6\x52\x9e\x34\xd3\x31\x57\x39\x61\x30\x6e\x04\xdf\xc6\x9f\x4b\x29\x48\x55\x5c\x89\x8d\xcd\xaf\xaf\x60\x0e\xbc\xaf\xb0\xcc\x91\x66\x9a\x6a\x84\xb4\x46\xd0\xee\x49\xc2\xcb\xfe\x9e\x68\xbe\x19\x13\xd9\x1f\x6a\xd4\x0b\x29\x46\x38\xb3\x9d\xbc\xa8\xeb\xca\x92\x76\x79\x50\x86\xaa\x03\x56\xc3\xf1\x42\x04\x9b\xfc\xcd\x4e\xaa\x4f\x5b\x52\x1d\x6f\x70\x64\xe2\x16\x8e\xcc\x8e\x7d\xd6\x19\x9d\x7f\x62\x41\x88\xd7\xca\x32\xfa\x1c\x55\xfc\xbc\xa4\xf5\x0e\x27\x8f\x1e\x52\x92\x35\x7a\xd1\xae\xc8\xd8\xc0\xcd\xec\xcc\xb2\x3b\xed\x85\x77\x1e\x9f\x98\xb8\xc2\x8a\x52\xa8\xe5\xa1\x24\xd0\x59\x96\x62\xa4\xaa\xfa\x7a\x11\x27\x9c\x0c\x08\xe1\xac\x0c\x0c\x5c\x0d\xe2\x84\xab\xb6\x1b\xf9\x5b\x95\xc0\xd5\xc7\x5e\xad\xf0\xc6\x5a\x73\xa4\x02\x61\xf5\x1a\x9e\xed\x6a\xb9\x73\x73\xcc\x1f\x3d\xf4\x1f\x3d\xc4\x31\xff\x8c\x9a\xf8\xc9\xc1\xc6\x36\x92\xbb\xc7\x6e\xc0\xd6\xc8\x73\xbd\x77\x62\x62\x79\x67\xad\x5b\xb1\xbe\x85\x70\xf0\x15\x16\x50\xc6\x7f\xb3\x6f\xe5\xb6\xef\xb1\xfa\x8d\xca\x32\xeb\xbe\xc1\x6e\x84\xf2\x8b\x3c\x38\xf8\x8c\x5a\xf8\x49\xc7\x89\xf4\xe1\x41\x3b\x44\xbe\xe6\x9e\xa2\x71\x32\x6e\x50\xbb\x71\x2d\x4f\x30\x5d\x70\x04\x09\x4c\xfb\xb8\x52\xe9\xdb\x3c\xc9\xf8\x96\x90\x92\x32\xc6\xa6\x93\x32\x48\x43\x9f\x44\x4c\x8c\xad\x28\x8c\x4e\x32\x12\x99\x50\x86\x93\x68\x64\xaf\x44\xbc\xe4\xbf\xe4\xe5\x04\xff\x95\x94\x79\xaa\x63\x4d\xf9\x05\x49\x18\x5e\x2d\x4c\x38\x49\x20\x05\xf3\x66\x73\x9c\xa4\xcd\xa6\xf2\x28\x95\x76\x9a\x66\xe4\xbe\xce\x11\xa8\x19\x91\x45\x54\xf4\x2f\x17\xb9\x41\xdb\x36\x87\x07\x07\x5f\xf4\x0c\xd2\x94\x41\xb1\x26\xfb\x56\x71\xb3\x72\xfb\xed\x36\xf3\x43\x18\x64\x55\xd5\xbb\x93\xb0\x41\x5f\x07\xbf\xd5\x54\x99\x5d\xa7\x7f\xe3\xb7\x85\xcf\xc9\xd3\x96\xf3\xd3\xd3\x03\xff\xa9\xdc\x00\x5f\x21\xb9\xb5\xba\xb8\x71\xc5\xb5\x59\xe9\x46\x96\xb6\xdb\x32\xe2\xed\x37\x7c\x28\x93\x16\x97\x0d\x13\x2a\x37\x99\x50\x67\x14\xbe\xe8\x30\x29\xef\x94\x76\x62\x71\x8c\xe8\x34\xae\xd8\xb6\x61\x51\xf1\x3c\x9a\x2e\xf8\xf4\x13\x3e\xd8\x6d\x8c\x31\x3a\xbe\x48\x6d\x9a\x99\x6e\x36\xb3\x7b\x75\xd5\x87\x5e\xdd\x95\x1c\x9e\x28\x9f\x07\xb1\xc1\x23\xb5\xc1\x0b\xd5\x11\x8c\x5a\xf4\x58\x8a\xc5\x62\x12\xa6\xea\x1e\xb7\x20\xc5\x46\xa7\x3a\x1b\x1d\x0a\x59\xd5\x1c\x16\xb0\xda\xdc\xea\x0f\x5a\x5b\xfd\x30\x84\x19\x8b\x47\x73\x92\x88\x53\x9d\x14\x39\x07\x33\xd4\xc3\x4f\xc9\x02\x21\x0e\x1a\x6f\x71\xb2\x10\xa5\xc3\x8a\xee\xcc\xd8\x9a\x8c\x29\x86\xd8\x20\xb3\x26\xa2\x29\xaa\xef\x3d\xc6\xd8\xcc\x0a\x4f\x3a\x98\x92\x55\xdb\x21\x7d\x8e\x35\xae\x40\xc5\x43\x9c\x0b\x2a\x51\x55\x73\x31\xd2\x55\x85\xdf\xcf\xcd\xf7\xcd\x87\x73\x49\x63\x58\x01\xb9\xfc\x1a\xe6\xca\xde\x4a\x3f\xaf\xc9\x18\x0a\xc3\xda\x06\xe3\xba\x65\xde\x33\x10\xcd\x2a\x78\xe9\xba\x04\xff\x4a\xba\xb4\x82\x82\x5a\xc0\x40\xdb\x88\x8f\x6d\x2a\xde\xc4\xac\xc2\x99\xfe\xcc\x9d\xac\xf1\x6e\x51\x24\x5c\x3a\xaa\x44\xc6\x8d\x05\xc9\xb8\x9a\xed\x07\x38\xdb\xf9\xe8\x3d\xbf\x7c\x79\xb3\x52\x38\xe4\x89\x25\x0e\x2f\xd8\x7e\xb4\x7f\x09\x2b\xf9\x67\x86\x7a\xa5\x84\x2c\xe8\x80\x31\x8c\xe5\xa8\xdc\xe0\xc9\x60\x56\x55\xdb\x10\x34\x56\xe6\xa2\x09\xdd\xdd\x1d\x1a\xb2\x81\x07\xb2\x94\x45\x55\x25\x64\x45\x19\x5b\x55\x95\xb3\x1f\xed\xc7\xce\x80\x25\x64\x01\x4e\xec\xd0\x9a\x52\x7a\x97\xb0\x3e\xe9\x4c\x48\x14\xb6\x6b\x44\x02\x39\x43\x0f\xd9\xcc\xc2\xf2\xd1\x53\x92\xba\x6e\xee\xba\xbc\x75\xfd\xc5\x58\xe2\xba\xd9\x84\xfb\x31\x99\xa1\x16\x6b\x4a\x72\xd7\x1d\x64\x13\x3e\x2a\xb2\x75\x3e\xe5\xe8\x4e\xee\x4f\x09\xc9\x59\x0b\xb0\x20\xa1\x76\x96\x5c\x14\xb2\xd6\x78\x5a\xbe\x58\xcd\x12\xf1\x6a\x0e\x89\xe5\x61\xb1\x6c\xdf\xab\x09\xda\x9f\x08\xb2\x9b\x00\xff\x22\x6c\x80\x3e\x9e\x05\x3c\xec\x38\xc6\x97\xf4\x4e\xa4\x32\x79\x59\x7e\xcb\x22\x32\xa5\x70\xc5\xc6\x47\xda\xa2\xef\xe4\xea\x88\x2e\xc9\x6d\x70\x85\xb7\x2f\xf3\xd6\x00\x24\x60\x4d\x33\x9b\x37\x8e\x0e\x72\x29\x38\xa2\xfd\x5a\x37\xa7\x92\x5a\x0a\x11\x0d\xe3\x61\xb9\x3c\x3c\x78\xec\x3f\x78\xac\x1d\x1f\xd0\xe5\xe1\xd1\xa1\xff\xe8\xb0\x8d\xb4\xaf\xef\xa6\xfb\xc0\xd5\xfb\x91\x18\xc7\x1e\xdd\x41\xfa\x44\xee\xca\x28\x17\xa3\x63\xda\x88\x1d\x10\x63\x36\xcf\xf2\x29\x9f\xf9\xf9\x80\xb1\xfd\xd1\xfe\x88\xdf\xf0\x69\x0d\x77\xe2\x8f\x9f\x2b\x5a\xe9\xf9\xde\xb8\x41\x3b\x3e\xe8\x83\x62\x57\x8b\xd9\xb9\x74\x06\xa2\x98\xcb\xd1\x3c\x89\x2e\x0b\xd7\xd5\xc0\x18\xb2\x5a\xfb\xc6\x1e\x33\x6c\x81\x7e\xc0\xdd\x65\x5b\x92\xe1\xf0\x98\x63\x4c\x1f\xe2\x7a\xff\x00\x3c\xd5\xa6\xe2\x8a\x74\x7b\x8f\xd5\xa1\x6f\x3c\xc6\x91\x79\x64\x76\x16\x78\xd0\x2e\x52\x90\x65\xb9\x80\x9a\xba\x2c\x52\xa1\x50\x88\x98\x44\x57\x4d\x55\xd8\x4e\x3f\x0d\xca\x70\xa7\x4b\xc6\x62\x0d\x81\x92\x42\x2e\x03\x70\xca\xe1\x20\x29\x0d\xca\x90\x28\xd3\x5d\x71\xa8\xde\xd0\x30\x96\xac\x40\xc4\xb7\x06\x71\x0b\x11\x55\x35\x89\x2f\x25\x8d\xdd\x91\x87\x71\x34\x2d\x4b\x4c\xac\x6c\xfd\xc9\x60\x3d\xba\x4c\xb2\x8b\x28\xd1\x5f\x45\x64\x0d\x89\xd4\x78\x4c\xd9\x7a\xb4\x4e\xe3\x69\x36\xe3\x3b\xeb\x06\x30\x91\x8d\xcd\x06\x9c\xc3\x82\x05\x21\xac\xd8\xf8\x48\xe1\xf9\x90\x39\x93\x25\xd0\x23\xd9\xc8\x99\xae\x72\x8e\xda\x8b\x45\xb0\x0a\xd9\x0c\xd0\xa0\x7c\xe6\xba\xc4\x2e\x57\x6c\xdc\xd8\x4e\xa1\x30\xa5\x14\x56\xc3\x61\x6d\x19\x90\xaf\x26\xa2\x2a\x7f\x51\x87\x6a\x05\x8e\x7d\x6f\x6c\x45\xac\x78\xec\x7b\x8f\xf5\x39\xf7\x91\xff\x00\x05\xcc\x3e\xa8\xfa\x2f\x2c\x0a\x83\x66\x74\xa0\x55\x01\x63\xe5\xc5\xf8\x58\x89\xea\xe3\xb1\x18\x50\x09\xca\x18\xdd\xc0\xd4\xe0\x33\xc2\xdc\x76\x2d\x58\xb0\xfd\xb3\x7b\x24\xb8\xe7\xfe\x9f\xef\xc2\xea\x6c\x76\x36\x9b\x54\xc7\xc1\xc7\x93\xf0\xfe\x09\x95\x1c\xa0\xf3\x96\xee\x5f\xea\xd5\x97\xf3\x55\x12\x4d\xb9\x03\x07\xdd\xf5\x37\xdb\x5c\x7f\x4d\xec\x59\xb3\x02\x23\xb5\x02\x73\xbd\x02\xf3\xbe\x15\x18\x69\x3b\xd9\x1c\x32\x88\xa9\x9f\xca\x27\x35\x6d\x19\xc5\xa8\xb6\x35\x6c\xf2\x8b\x98\xcd\xcc\xfa\x03\x15\x08\xa9\xb5\x02\x63\x6b\x05\xce\xe5\x0a\x5c\xb4\x56\xe0\x16\x48\xe4\x9d\x55\x55\x91\xb2\x89\xeb\x2e\x97\xe3\x2d\x9b\xab\xb5\x8a\xf8\xc6\xb2\x0d\x57\x6c\x6e\xd6\xe8\xdc\x5e\xa3\xc6\x73\xf1\x92\x05\xe1\x91\x5a\x8c\x17\x6c\x4d\xe6\x20\x01\x92\xe5\xd0\xb0\x0b\x2a\x3d\x1f\xe3\x39\xb9\x94\xc7\xfa\x0b\x0a\x83\x5b\x95\x8a\xeb\x54\xb5\xe3\x42\x2c\x60\xd7\x25\x76\x35\x05\x59\x40\x66\xa7\x50\xb8\xa2\xd4\xd4\x7d\x0e\xd7\xcc\x71\xe0\x25\x1b\xc3\x0d\x1b\x1f\xdd\x1c\x5f\x6a\x8f\xc9\x9b\xe1\x90\xde\x5d\xb0\xcb\xe0\x26\x34\xbb\xe9\xb4\x55\x13\xbc\x63\x09\x99\x92\x88\x5c\x48\x03\x0e\x0a\x06\x84\x19\xc6\x14\x9e\x89\x8d\xf7\x89\x79\x47\x9f\x8e\x2f\x74\xa1\x9f\x86\x43\xfa\xcc\xbe\x6b\x60\x8c\x91\x73\x76\x11\x7c\x0a\xe9\xe4\xdc\x57\xa5\x9f\x9b\x20\xbb\x17\xa3\xcb\x3c\x5b\xaf\xf0\x36\x77\x25\x47\xe8\x03\x0b\x4e\x43\x13\xdb\x17\xde\x89\xc1\x32\x2b\xe5\xad\xeb\x7e\x90\xc5\xbf\x95\x45\x3c\x37\x73\xa4\xd4\x7f\x4a\x7b\xf1\x81\x2a\x69\xee\x39\x5b\x92\x53\x58\xc0\x3b\x78\x06\x6f\xc5\x1a\x79\x77\xc2\x5e\xba\x2e\xb9\x1e\xb2\x85\xba\x71\x7e\x09\xef\xe8\xf0\x39\xbc\x64\xef\x86\xa7\xba\x83\x7a\xbf\x5f\x0f\x4d\x2e\x5a\x87\x4d\x64\xcb\x25\x6e\x83\x5c\x9a\x81\xc8\x86\xaf\x59\x3e\xd4\xb0\xbd\x90\xb0\x4c\xff\x9c\xb2\xd5\xe6\x8a\x77\x5d\x12\xb1\x98\x44\x42\x16\x5f\x50\x50\x2b\xbe\x80\x69\xb3\xca\x53\xbd\x9d\x8a\x1d\xa5\xb0\x8d\x9b\x00\x1a\x52\x67\xeb\xdc\x73\x94\x0e\xd5\xb9\xe7\xa0\x52\xd5\x71\x75\x8a\x52\xe1\x3a\xff\xc7\x24\x94\xc6\xd6\x3f\x97\x1a\x58\xe7\xbb\x8d\x77\x6b\xf5\xe6\xd8\xf1\x0b\x16\x05\xb1\x4a\xf6\x60\xcf\xa3\x61\xc7\x45\x57\x52\xe8\x61\xbc\x63\x42\x32\x6a\x25\x8e\x48\x99\x9e\x24\xb2\xf9\x0b\x36\x27\xd3\x7d\x6f\x6c\x14\xa9\x22\xef\x62\x92\xfa\x8b\x63\x96\x4c\xcc\x32\xc9\x82\xc5\x9e\x17\x4e\x4c\x1f\x3d\xea\xcb\xa4\xa1\x9d\x94\xd6\x05\xcb\x02\x8c\xc8\xd7\xb5\xb6\x2f\x26\x8e\xe3\x17\xb5\x81\xdd\xd3\x54\x79\x4b\x9c\xdb\x5e\x2a\xfd\xb5\xee\x0b\x86\x4a\x8f\x35\xeb\xb6\x58\x76\xc1\xa3\xbc\x97\x67\x47\xff\xff\xe0\xd9\xd1\xd7\xf2\xec\x42\x52\xcc\x75\x9b\x62\x26\xac\x68\xa8\xcd\x4e\x4c\x12\xc0\x50\xe4\x85\x4d\xfb\x34\xfb\xce\x48\x01\xeb\xe6\x3e\xce\xce\x04\x49\xf7\xab\x44\xa3\xc1\xb3\xe9\x64\xcf\xf3\xa7\x92\xea\x74\xb9\xac\xb2\xf0\xed\xce\xdc\xd7\x82\x67\x3d\x6a\xe9\x22\x94\x3d\x60\xa4\xb8\xaa\x85\x56\x6a\xd8\xab\x14\x54\xf1\xc8\xfc\xe0\x21\xd5\x9c\x55\x30\x59\x21\x79\x20\x31\x82\x15\x1b\x4c\xdb\x5a\x79\x9c\x0c\x0b\xcf\xc4\xb9\x15\xc7\x1e\xb3\x42\x56\x49\x5c\xf6\x30\xd5\xa9\x92\x58\xf4\x80\xcd\x98\x33\x75\x18\x73\xa2\x8b\x8b\xa9\x76\x89\xde\x27\x17\xf4\xfe\x3e\x0d\xbc\xb0\xaa\x1e\x0c\x98\x53\xf2\xa2\x6c\xde\x4d\x7c\xba\x2f\xf6\xaa\x22\x3e\x08\xa2\xe2\x44\x17\x76\x86\x08\xbf\x37\x19\x44\x19\xa3\xe6\xfd\x68\x42\xc5\xff\x56\x06\xfb\x2d\x25\xcd\x9b\x13\xaf\xaa\x1c\xf3\x6a\x34\x31\x2f\x26\x7d\x8c\xba\x2b\xf6\x35\x4e\x32\xd2\xc2\xa9\x54\x0b\x30\x08\x77\x74\x50\x24\x43\x4e\x14\x22\x6c\x1b\xa0\x15\x29\x2f\xc2\xca\xe2\x2d\xdf\x28\xbe\x4c\xb3\x9c\x3f\x8f\x0a\x3e\x71\x62\xc7\x77\x1c\x3a\x24\x7c\xb4\x5c\x27\x65\x9c\xc4\x29\x9f\x38\x4b\x93\xa8\xd8\xf5\xc4\x59\x9b\xa4\xa2\x8c\xa7\x9f\x6e\x27\xce\x2d\xa6\x60\xcc\xae\x95\x8d\x1e\xdb\x4c\xa5\x5f\x9e\x9c\x9c\x8c\xd5\x89\x59\x4d\xb4\x3e\x38\xc2\x74\xe8\x5c\x3a\xf4\x88\x64\x2c\xd1\x21\xd4\x63\x4a\x5d\x77\x40\x48\xc4\x66\x16\x93\x3e\x99\xa3\xe8\x89\xac\x4c\x13\xd9\x39\x64\x8a\xd1\x52\xc8\x2c\xe0\x6d\x95\x7a\xac\xc1\x70\x5c\x57\x5f\x7e\xad\x41\x87\x4e\xf5\xa8\x58\xbd\x59\x30\x0e\x35\xdb\x99\xb3\x08\x34\x3c\xc2\x09\x5b\x09\x71\xd8\x6a\x80\x20\xb8\xb2\x58\xd7\xb5\x92\x0d\x0c\xfd\xee\x9c\x31\x83\xbe\x33\x19\x14\x22\x97\x58\x69\xc4\x71\x68\x55\xa9\x86\x3b\x0e\xf5\xbb\x7d\xa0\xb4\xa9\x75\x35\x59\x1b\x96\xb3\xa2\xfe\xba\xf6\x9d\xb1\x5e\x30\x8a\x4f\x8f\xb7\x2c\x9a\x0d\x57\x2a\xb5\x4a\x26\x41\xa8\xc5\x43\x83\xd9\x5b\xfb\x29\x58\x14\xb5\x89\x46\xab\x69\x6a\xf6\x55\x34\x35\x6b\xac\x22\x63\x41\x55\x67\x2d\x29\x34\xa6\x18\xe7\xb6\x4f\x0a\xcd\xd9\x94\xcc\x8c\x14\x0a\xb3\x01\x63\x52\xf5\x95\xb7\x28\x6b\x6e\x51\x56\xe5\x72\xd9\x91\x45\x97\x78\x00\x91\x6b\x8a\xc2\x2d\x4b\xf4\x4a\x85\x2b\x46\x92\xde\x15\x9e\xf4\xad\xf0\x64\x73\x85\xaf\xe4\xd2\xbe\x74\x28\x5c\xe2\xca\x5d\x92\xd5\x24\xf1\x9d\x8f\x64\xe2\x3b\xc3\x44\xad\xdf\xa1\x43\x1d\xb8\xa2\x70\xf1\xb9\xa5\xaf\xd9\xfd\x45\x6b\xc7\x22\x53\x6f\xdf\x27\xed\x2a\x6a\xbe\x26\x97\xb0\xa0\x93\x60\x11\xfa\x41\x23\x6b\x9e\xb3\x31\x5c\xb3\x31\xbc\x14\xd2\xf1\xf5\xb1\xfe\xf6\x88\xde\x5d\x5a\xcb\x74\x35\xb9\xf6\xe5\x65\xd8\x0d\x9c\x62\x49\xab\xc9\xc2\xd7\x32\xd9\x35\xb5\x05\xe9\xd3\xaa\x22\x37\x6c\x4e\x0a\x62\x95\x20\xba\x3e\xf6\xaf\xa9\x25\xbc\x52\xc6\xd8\x39\xbd\x66\x11\x59\xc0\x35\xdc\x52\x13\x43\xfa\xa5\x5c\xcb\xba\xf4\x73\x10\x9f\xbd\xd4\xb0\xe5\x4d\x8f\x77\x5f\x9a\x5e\xbc\x63\xde\xd1\xbb\x63\xa6\xe5\xc6\x3d\xef\xe8\x9d\x44\x21\x51\x65\x9d\x06\xef\xc2\x6d\x65\x5c\xb3\x73\x76\xa3\x21\x47\x76\xbb\x95\x8b\xaa\x37\x78\x9f\xd4\x75\x18\x63\x95\xbe\x13\xa7\xd4\xd8\x08\xbe\x28\xb5\x34\xc8\x1d\xbf\x14\x1d\x83\x93\x83\xc3\x31\xdd\x10\x6f\x1e\x3c\x96\x4c\xf2\x10\x6f\xa3\xf7\x47\xfb\x0d\x42\x6b\xd1\xb2\x89\x96\x4a\xa6\x4d\x35\x4a\xe3\xf8\x80\x77\xc7\xf5\xce\x16\x55\xa2\xb3\x1f\xed\x5f\x38\x03\xed\xcd\x79\xa7\xf4\x70\x4e\xe4\x00\x6a\x62\x7c\xe7\xc2\xa9\x69\x4d\x27\x45\xd7\x10\x8a\xb3\xbc\x65\x15\xe6\xec\x9b\xc0\x80\x86\x2a\x3b\xfb\x8e\xd6\xe8\xc4\xe9\x2e\x9f\x70\xa9\xff\xf1\x07\x99\xeb\xb6\x74\x80\xb2\x03\x5a\xb6\xe2\xd4\x60\x5f\x52\xbf\xe9\x8a\x68\x65\x1a\x2d\xb9\xeb\x16\x3d\x3a\xd1\xc8\xb2\xba\xb4\x94\xc0\x07\x87\x63\xff\xe0\x70\xdc\xa3\x56\x33\x8a\xb3\xaf\x8e\x59\xf6\x79\xfc\xcf\x53\x5e\xfe\x7f\x86\xff\x19\xcd\x7a\xa3\x44\xb5\xc1\x3b\x45\x03\x28\x70\xd6\xc0\x77\x72\x84\xef\xdc\x8e\xdd\x79\xd0\x17\x02\xad\xb3\x3e\x3d\x4f\x74\x2e\x4a\xa7\x8b\x96\x3f\xe3\xe7\x9d\x8f\x54\x8b\x22\x47\x43\xb9\x9a\x3b\x5c\xef\xc0\xf7\x3c\x59\xf7\x97\xae\xf0\x75\xdd\x17\xf1\xe5\xb7\x0d\xac\xfc\xc2\x11\xff\xf5\x54\xfb\x25\x35\xa9\xa9\x36\x89\xd3\x4f\xdf\x5a\xb1\xfc\x66\x4b\xd5\x5f\x0c\x35\x66\xaa\xce\x92\x2f\xf8\xf6\x6d\xd6\xbc\xbd\xd6\x6f\x0d\x87\xe0\x79\x63\x8c\x71\xa4\x81\x95\x35\x25\xb9\x13\x9c\xed\xe7\x2c\x4e\xcb\x67\x9f\x0d\xdf\x60\x9a\x30\xf6\x3d\xaf\x89\x0d\x78\xf0\xd5\x61\xbc\x1a\x28\x0f\x7d\xc8\xf3\x3c\x41\x07\x1d\x67\xc4\xd3\x59\xf1\x5b\x5c\x2e\xda\x30\xe3\x0f\x28\x71\xf4\x1b\x87\x5a\x2d\xd6\x89\xdb\xfd\xcc\x39\xd8\x5f\x6e\x5a\x7a\x6d\x09\xbf\x95\xb3\xd8\x8a\xdf\x52\xb4\x82\x7b\xfb\x26\x5a\x4b\x4c\x52\x0a\xb9\x75\x90\xe3\xb6\xbd\x9e\x76\x4c\x5f\x43\x41\xfd\xd2\x38\xff\x6b\x29\x0e\x0a\xc1\x2f\xd7\x7a\x30\x3d\xdf\xf3\x3a\xf1\x58\xe0\xc1\x03\xff\x01\x7a\x75\x7d\x31\x8c\x95\x5e\x59\xf3\xf8\xe6\x4b\x6e\xa3\x1b\x4b\xab\x2c\xb7\xaf\xad\x2f\x9d\xfe\x4c\xbd\x59\x5a\x4e\xb3\xe4\xdb\x49\x88\xf8\xd0\x01\x47\x7d\xdb\x43\x46\xbe\x18\x80\xca\x6e\x42\x11\x7f\x83\xcb\x78\xbb\x05\xf2\xd3\xbe\x06\x7c\xcd\x65\xb6\x87\x51\xaf\x14\x1a\xdd\x3c\xcf\x96\xcf\x15\x4e\x1a\x44\xad\x54\xbd\xc3\x6c\xab\xc5\xc1\x20\x72\x5d\x4f\x70\x3f\xbd\xde\x9a\x05\xde\xfa\xa8\xb5\xca\x0d\x7c\x07\xa0\xc9\x72\xbe\x09\x61\x1a\xb1\xf1\x51\x7e\x12\x1d\xe1\xed\x6d\xc9\x86\x6d\x08\x53\x88\x49\x09\x9e\xe7\x3d\x10\x9b\xcf\x0a\x90\x6b\xe1\x91\x94\x43\x67\x37\x2e\x76\xd3\xac\xdc\x8d\x76\x25\x7c\xbb\x20\x11\xbb\x2b\xd1\x18\x87\x6a\xe3\xe7\xf2\xf8\xd1\xc3\x87\x87\x8f\x26\x19\x29\xa9\x9f\x91\x87\x0f\x0f\x9e\x3e\x1a\x12\x52\xee\x21\x4a\xe8\x23\x7a\x72\xe2\x8d\x29\x94\xff\xcb\x1b\x1f\x3c\x18\x3e\x7c\x74\x78\x30\xa6\x46\x0d\x98\x62\x90\x2a\x62\xad\x3d\x19\xad\xa3\x21\x2a\xdf\x1c\x32\xca\xf3\xe8\x26\xf5\x88\xd3\x69\xb2\x9e\x61\x08\xae\x66\x70\x75\x62\x0f\xb1\x1b\x0c\xfe\x6d\xc2\x72\x58\x1f\x1b\x87\xbb\x6f\x09\xdc\x68\x6d\xef\xee\xb6\xfe\x5a\x16\x19\x97\x51\x12\x4f\xbf\xe0\xac\xbc\xb1\xb2\xe3\xed\xfb\xfa\xab\xef\x12\x91\x57\xa0\x0a\xee\xd1\x23\xaa\xce\x6c\xcd\x10\xf6\xd9\xdb\x19\x52\xd8\x18\xdd\x6d\x86\x6c\x33\xb6\x73\x8d\x29\x5e\x6c\x7c\x4d\x1a\x03\xba\x49\xbf\xe9\x9c\x4f\x50\x3a\x05\xe3\x18\x12\x0f\x4d\x60\x37\xd8\xb0\x95\xa3\x2d\x76\x85\x41\xd6\xc4\x18\x7c\x31\x1e\x92\x1e\xfc\x2f\xcb\x09\xfd\x92\xd1\x22\xe7\xf3\x5e\x8a\xd2\x17\xc0\x68\x93\x37\x7a\xcd\x35\x95\xb6\xe0\x31\x2b\x37\x8f\xae\xfb\x89\x81\x38\xfe\x8e\xf2\xe8\x5a\x05\xbe\xb0\xc2\xf7\xf4\x90\x87\x20\x84\x82\x8d\x8f\xd2\x93\xe2\x88\x2a\x57\x1b\x7d\x6c\x0e\x0a\x44\x39\x86\xe2\x38\x77\xdd\xf6\xbb\x66\x95\x17\x61\xe3\x20\x14\x75\x37\xf2\x96\x00\x63\x07\x7d\xe1\x8f\xba\x16\x52\xb6\x50\x92\xf3\x15\x8f\x4a\x5f\xe2\x7c\xb5\x00\x73\x9a\x22\xbf\x96\x3b\x16\xcb\x28\xf9\x82\x87\xfd\xc6\x4c\xaa\x6f\xb6\x6c\xa4\x6f\x0f\xc4\xb3\x29\xf3\x14\x65\x94\x97\x5b\xa4\x9e\xe6\x5d\x8b\x72\x35\xc9\x9f\x95\x7c\x5a\x5f\xa7\x2c\x26\x46\x72\xf9\x4a\x31\xc8\x2c\x20\xb1\x82\x3e\x27\xe3\xe4\x90\x36\x32\x4e\x0a\xe9\x30\xd7\x5f\x32\xc6\xf2\xaf\x92\x71\xfa\x42\xf5\xf4\xcf\x62\x99\xc7\x9f\xbe\xc0\xe6\x37\xa7\x51\x7d\xb4\x6d\x1e\xbf\x74\x46\x34\x95\xaf\x2f\xbe\xb5\xe6\xf5\x76\xd9\xbd\x2f\x0e\xd0\x96\x6a\xbf\x31\xf8\x84\xfc\x62\x5b\xb5\x5f\xc3\x77\x1e\x52\x22\x61\x76\xbf\xa9\xde\x43\x53\x1b\xe2\x7d\x62\x6d\x5f\xcb\x6c\xba\x28\xc3\x87\x4f\xdb\xa6\xb4\x4f\x55\x74\xdf\xc7\x0f\xe9\xe8\x6f\x2f\xff\x89\x77\x08\x0f\x14\x5c\x81\x37\x7e\x2c\xf1\x0a\xbc\xf1\x43\x09\x58\x80\xc1\xe6\x57\x2a\xac\x8b\x84\x2c\x38\x3c\x90\x98\x05\xde\xa1\x27\x41\x0b\x1e\x1c\x48\xcc\x82\x47\x63\x8a\x70\x05\xde\x53\x09\x56\xf0\xe8\x40\x82\x15\x20\x15\xbe\xd6\x00\xc7\x2f\x95\xb5\xdf\x8d\x72\x96\x39\x65\x88\xb7\x03\xef\x94\x95\xe0\x33\x65\x35\xf8\x49\x42\x9f\xc0\x5b\xf6\x6e\x34\x87\x0f\xec\xd9\x68\x0e\xcf\xd9\x29\x42\x0f\xe8\xf0\xfd\xf0\x33\xcb\x47\x7f\x3d\x7d\xf7\x13\xfc\xc4\x7e\x76\xdd\x9f\x47\x12\x98\x38\x9e\xdf\xc2\xef\x6c\x45\x9c\xf3\x45\x3c\x9b\xf1\xd4\xa1\xf0\x5a\x3c\xb6\xc3\x07\xbd\x60\x77\xf5\x68\xa5\xec\xac\x5f\x17\x2f\xa5\xe1\xf7\x45\xc2\xe1\x0d\x9b\x12\xa7\xc0\x1a\xf6\x72\x7e\x19\x17\x65\x7e\xeb\x50\x78\xd5\x24\x0b\x11\xe8\x4f\xf1\x98\xad\xf6\x9a\x94\x1f\xd9\x06\xb8\xc6\xf7\x7d\x17\xf8\xef\xe1\x17\x96\x8f\xfe\x2e\x33\xc3\x1f\x6c\xf0\x4b\x55\x0d\x7e\x69\xbe\x6a\x3f\x61\xa8\xec\xe7\x8b\x38\x99\xc1\x6f\x2c\x73\xdd\xa4\x47\xaf\xf3\x78\xc0\x6e\xc8\x07\x72\x57\x23\xd3\xbc\xeb\xb7\xe5\xfa\xd0\xb0\x55\xc5\xde\x1f\xd7\x74\x14\xd5\x35\x15\xff\xd2\x49\x3f\x43\x79\x4b\x7e\x44\x77\x04\xe3\x74\xf0\x63\x50\x86\xf0\x41\x3b\x55\xe4\xae\xcb\x07\x8c\xfd\xe8\xba\x1f\x44\x46\xc8\x69\xed\x7f\x80\x5f\x7b\xbc\xaf\x5f\x05\x3c\x64\x37\xe4\xbd\xe5\xd9\x62\x20\xf0\x46\xe7\x9f\x18\x87\xb2\x86\x7f\xb2\xef\x5d\x57\x0d\xb2\x35\x60\x23\x1d\xd3\x7f\xb2\xb9\x8d\x36\x72\xf3\xba\x17\x6c\xb5\xa5\x4a\xab\xe1\x87\x6d\x28\x8c\x9c\x61\x77\x7e\x20\x7f\xca\x1e\x4a\x29\x8c\x5d\x2b\x07\x93\x4b\x71\x5c\x8d\xc9\x2b\x28\xe9\x84\xa4\x23\x6e\x96\x0d\x02\xad\xc3\xef\xd4\x75\x79\xf0\x7b\x18\x94\xa1\xeb\x12\xf5\x8b\xa1\xa7\x2d\xbb\x21\xa9\x71\x30\xb8\x48\xb8\xff\x92\x8c\x31\xd0\x21\xa5\xbe\xfa\xb6\xaa\xc4\xc0\xfe\x0e\x2f\x89\x07\x77\x35\xa5\x60\x0a\x18\x53\xf8\x4d\x35\x94\xfa\x7a\xf4\x6b\xf8\x5b\xc7\x4e\x11\x39\x8b\x15\x9d\x81\xdd\x22\x34\x41\x49\x05\x51\x18\x63\xe4\x2a\xa5\xc9\xce\x4e\xe2\x23\xfa\x03\xe1\x90\xb2\x3c\x88\xc5\x59\xa6\x0c\xd2\x26\x1e\x26\xaf\xe1\x5e\xcf\x24\xbe\xb0\x6f\x37\xd8\x35\xc1\xe8\x7c\x8d\xb3\x8a\xf2\x4d\xfd\xd1\x75\xc5\x08\x71\x09\x7f\xfc\x27\x70\x8a\xc6\x9a\xa4\x44\xf4\x3b\xa5\x00\xc1\xdf\xaf\xf0\x87\x4a\x13\x63\x87\x11\x08\x7f\x0f\x03\x1e\xd2\xaa\x2a\x69\x0d\x7f\xdf\x44\xcd\xe0\xec\xbc\x3d\x27\xb8\x02\x55\x79\x25\x96\xf7\x27\x94\x54\x5b\x6d\xbe\x95\x86\xce\xda\x2c\xb3\x95\xaf\x35\x61\x55\xd5\x9a\x50\x1c\xf4\xb4\xae\xe1\x1f\xfd\x90\x8f\xe8\x1f\x2a\x5a\x22\xf8\xba\x74\x78\x6d\x21\x50\x60\x2d\x4c\xa1\x50\x54\x55\xc9\xd8\xef\xf8\xef\xba\xaa\x72\xed\x21\x63\xbc\xc6\x6a\xf8\xd7\xd6\x5a\x70\x45\x42\xce\x9e\x93\x74\xf2\xa7\x2f\x6b\xcc\x44\x8d\x78\x38\xd5\x35\x46\x47\x54\x76\x8c\xe5\x32\xbc\x46\x55\xa5\x38\xfe\x3f\x62\x5f\x33\x59\xe5\xab\xa0\x6c\x26\x39\xab\x77\xbe\xaf\x2a\x52\x10\xf2\xde\xf6\xe5\x56\x5e\x38\xad\x0d\xa3\x0e\xb6\x06\x5f\x86\x38\x92\x04\x37\x67\x5b\xcb\xcc\x73\xe0\x48\x6d\x3d\x67\x8b\x4d\x21\xa9\x5f\x81\x0b\x16\xae\x66\x2a\xcf\x41\x72\x21\x29\xdb\xe5\x3f\x01\xb7\x9d\x59\x27\xf2\x67\xf0\x7b\x88\xab\x8c\x34\xcb\x06\xf7\xda\x6f\x5a\x7a\x13\x1b\x29\xa5\x06\x4d\x66\x37\x73\xdd\x3f\x5c\xf7\x37\xf2\x63\x9f\x09\x6c\xc1\x4b\xbf\xac\x29\xfc\x8a\x5e\xe5\x5f\x09\x91\xa4\xdc\x8c\x3e\xd5\x14\xde\x8d\xe6\xec\xef\xf0\x6c\x34\x67\x3f\x80\x32\x7b\x16\x0c\x8b\xfd\x43\x3c\x3d\x15\x4f\xf7\xc4\xaf\x87\xe2\xd7\xbf\x20\x73\xdd\x01\x22\x07\xb9\x6e\x41\x7e\x04\xa7\x8f\x15\x39\x70\x0f\x17\xf8\x6c\x34\xef\x73\x8a\xff\x95\xac\xd0\xe9\x86\x42\x44\xa2\xd1\x0f\xc3\x68\xf4\xdb\x30\x1a\xbd\xba\x3f\xf8\x1e\xee\xe4\xf4\xf8\xef\xeb\x86\x1e\xfc\x95\xd9\x71\xd9\x20\x2e\x9e\xe3\x55\xc4\xe9\x2a\xe7\xd1\x0c\x39\x9f\x26\xb3\x80\x86\x9d\xa0\x0c\xec\x40\xda\x8c\x80\x02\xec\x01\xbc\x23\x05\x8b\x9b\x82\x85\x40\x05\xeb\xb4\x98\x66\x2b\x51\x5c\xd1\x02\x4a\xe7\x9c\x8d\x8f\xfe\xaa\x57\x01\xe7\x47\x74\x45\xfe\x1a\x70\x19\x85\xd7\x2c\x77\xce\x3e\x91\xd5\xa8\x28\xb3\x9c\x53\x48\xc5\x27\xa5\x3e\x94\x9e\xa4\xfc\x88\x2e\x49\xc9\x83\x54\x7e\x84\x9e\x40\xba\xc3\x6a\x3d\x3a\x20\xb6\x4e\xbf\xe6\xf5\x0d\xf0\x21\x73\x1c\x3a\x79\x13\xf0\xd0\x17\xff\xb0\xf7\x62\xaa\xe1\x13\xbf\x7d\xd5\xf9\x28\x9e\x93\xc1\x3f\xc5\xe0\x76\xd7\x3d\xb7\xf5\x39\x92\xf5\x88\xe5\x6e\x3a\xb0\x1b\xa7\xbb\x6f\x68\x3c\x27\x6f\x04\xdd\xb6\x02\x4a\x97\x35\xac\x0b\x7e\xca\xcb\xd2\x86\xe5\xa6\x77\x7f\xb0\xc1\x58\xbe\x8a\x97\x2b\xdb\x65\x06\x5f\xa1\x97\x5a\xbb\xa3\x5d\x2c\xcc\xcf\xdf\x4d\x97\x93\x1b\xc2\xa9\xff\x37\x72\xa3\xdc\xc4\xa0\xe3\x50\xf9\x03\x6c\x00\x5f\xfe\x0d\xb6\x7a\xa1\xfd\x1d\x7a\x50\x14\xfd\x7f\x74\x52\xe5\x5c\x14\xfe\xbf\x6a\x0a\x3f\xbb\x6e\xd3\x7e\x32\xf8\xbe\xaa\x92\xcd\x6b\xb2\xf7\xc4\x5c\x91\x49\x77\x5a\x67\xc0\x7e\x22\x92\x0b\x38\x77\x35\x3e\xdd\x45\x3e\xaf\xad\x67\x39\x0e\x72\x03\x50\x70\x84\x1c\x88\xa7\x3a\x25\x02\x6e\x53\xf4\x09\x62\xcd\x43\x88\x99\x77\xb4\x41\x9b\xe2\x23\xaa\x48\x73\x43\xa3\xd0\x9d\x10\x2f\x72\x99\x20\xad\x5e\x08\xe4\x02\xa1\x02\xcd\xdd\x3c\xf2\xb9\x7f\x5a\x36\x21\x57\xf8\xbe\x05\x15\xac\x58\x57\x8f\x34\x98\x22\x7c\x50\xd7\x6c\x80\xc2\xe0\x9f\x82\x6d\x9b\xc5\x43\x41\xd4\xcd\x4a\xf8\x49\x99\x57\xfc\x8c\xc8\x2b\x14\x2c\x81\x2a\x78\x1d\xea\xe8\x97\x56\x2a\xbc\xb6\xf3\xe8\xd0\x0d\x14\xe6\xe4\xbd\xd9\x35\xe2\x49\x9c\x6b\x75\x64\x14\x41\x74\xe6\x44\x09\xd7\x6a\x68\x15\xe8\x9b\xc1\x24\x78\xec\x7b\xe3\xc7\x56\x10\x74\xe5\x42\x7b\xf0\xc4\xf7\x0e\x9e\x80\x77\xe8\xf9\xde\xa1\x07\xde\xe1\x81\xef\x1d\x1e\x34\x58\x05\x78\xe3\xa8\x6e\x1a\x0f\xfc\x07\x07\x3d\xae\xc9\x2a\x7e\xc1\xa1\xff\xf0\x10\x1e\x8d\xfd\x47\x63\xed\xac\x2c\xb1\x0a\x10\x98\xaf\x27\xae\x01\x62\x75\x4a\x83\xff\x27\x0f\xfd\x27\x0f\x15\xde\xe1\x93\xa7\xfe\x93\xa7\xd2\x89\xa5\xb9\xcf\xec\x8b\xfc\xf9\x05\x9d\xc3\x63\xad\x4b\x7a\xd4\x76\xed\x47\xbd\xf5\x5a\xab\x25\x12\x75\xf2\x99\xaa\x08\x07\x18\x20\xf7\xfb\xf5\x7c\xce\x73\x75\xb4\x7a\x22\x8e\x56\x59\xeb\xc5\x8a\x65\xa3\x17\x51\x19\xfd\x1a\xf3\x6b\x74\x52\x7a\xf6\xfd\xaf\xae\x3b\x1d\xc5\x05\xa6\x2c\xd9\xc2\x9a\x40\xd4\x0f\xc0\x2d\x8b\x47\xbf\xbe\x7e\xf9\x9b\xc1\xb8\xfb\x4d\x2a\xc2\xa7\x03\xc6\x16\x14\xee\xac\xe2\xfd\x85\xf6\x74\x95\x18\x0b\xf1\xe8\xf9\xbb\x9f\x4e\x3f\xbc\x57\x31\x85\x65\x26\xf4\xdc\x13\xb5\xf5\xd1\xce\x99\xeb\xce\x10\xe5\x2c\xc1\xd8\x01\xb7\xda\x8d\x10\xb4\xae\xe5\x97\xcf\xc5\x33\x1a\xa4\xfc\x7a\x77\x41\x0e\xa8\xb1\xd7\x54\x4c\x7f\x74\x71\x5b\xf2\x37\x26\x86\x56\xbb\x35\x7d\x51\xb5\x8d\x69\xd6\x80\xb1\xa5\xeb\x36\x44\x4e\xef\x93\xa5\xdc\x46\x91\xb2\x59\xb1\x85\x61\xa6\x12\xad\x4a\xa5\xfb\x0e\x4a\x16\xac\x20\x9d\x70\xdc\x29\x9a\xe6\xf0\x6b\x22\xa5\x21\x58\x50\x4a\xd6\x24\xde\xcb\xa9\x98\x64\xd1\xa5\x95\xaa\x65\xaa\x9e\x32\x71\x42\x1e\x1f\xe5\xc7\xf1\x11\x9d\x8e\x0a\x5e\xfe\x12\xa7\xe5\x13\x32\x1b\x0e\x21\x19\x5d\xea\xc7\x7c\x38\xa4\x96\x04\x56\x37\x60\x34\x76\xff\xdb\x30\x20\x1a\xfe\xa3\x1d\x85\xdb\x3b\x78\xe4\x7b\x07\x8f\xc0\x3b\x78\xec\x7b\x07\x8f\xb7\x41\x57\xc8\xcd\x83\x8b\xfe\x2b\x82\x23\x35\x4b\x69\x20\x17\xbd\x58\x8b\x70\xa7\x57\xa7\x2f\x37\x80\x59\xad\x4a\x4f\xd9\x6e\x88\x51\x2a\xf6\x45\x91\x15\x05\x3c\xa4\xc4\x41\x78\xc7\xc3\x03\x07\x1e\x7c\x5e\x2d\x8c\x96\x4d\x1d\x05\x89\x4c\xd4\x4a\xd2\x87\xbe\x77\x80\x4a\x92\xbe\xd0\xab\xad\xea\x1e\x3d\x70\xe0\xc9\x7f\xae\xba\x1e\xbd\xa5\xae\xee\x75\x5a\x7a\x8f\xda\x46\x94\xff\xcd\xca\xfa\x83\x70\xeb\xca\xfe\xc3\x03\xd9\xa3\xc9\xb3\x2a\x7b\xd2\x36\x1f\xfe\x6f\xd6\xd5\xa3\xbe\xd3\x75\x89\x1d\xf3\x1f\x1e\xc6\x1e\xad\x9d\x5d\xdb\x7f\x78\x1c\x7b\xb4\x76\x76\x6d\xff\xd1\x81\xec\x0b\x82\xf9\x9f\xab\x4c\xb3\x7f\xab\xbe\xaf\xb2\x99\xd0\xa1\x7e\x64\xc8\xb3\x43\x4a\xc6\x92\x7b\x3e\x55\xdc\xf3\xf1\x43\xa5\x8f\x7c\xa2\xa0\x53\x3d\xe3\x01\x2c\xf9\xe5\xe1\x58\xa9\x22\xc5\x8f\x15\x1b\xc4\xa3\x67\x53\x71\xe8\xf8\x87\x94\xff\x5c\xd7\x69\x3d\x63\xa0\x64\x98\xb1\x42\x50\xdc\xdf\x78\xf4\x09\x96\x7d\x7e\xeb\xd2\x80\x71\x8e\x07\x0d\xb8\xea\x3b\x5c\xfd\x07\x4c\x92\x2e\xd9\x46\x50\x62\x74\x36\xe6\x54\xeb\x53\x66\xcd\x4d\xc0\x40\xb2\x9e\x5b\xcd\x6f\x1c\xd1\x78\x8c\x35\x8c\x21\xf0\xd1\xd1\x73\x62\x30\x2e\x42\x03\x24\xb0\x3d\x6c\x71\x82\x96\x4f\x1b\xc5\x81\x0a\x59\x7c\xc1\x36\xcc\xb3\x74\x1e\xb8\x82\x4b\x48\x60\x30\x16\xb3\xbe\xb3\x70\xdd\x95\xeb\x92\x35\x21\x39\x43\x46\xf6\xbc\x39\xea\x93\xab\x56\x43\xad\x18\x72\x14\x8a\xd1\x4f\x2f\x5f\xbe\x60\x83\x31\x64\x24\x70\xa4\xfa\xd0\x01\x71\x06\x75\xc0\xb9\xe4\x68\x30\xc0\x4b\x27\xec\xf1\x02\xb8\xb0\x4a\x4a\x59\x19\xf0\x70\x27\x22\x25\x70\xb0\x16\x6b\xac\x46\xb3\x14\xe2\xf7\x52\x08\xcb\xea\xfa\x74\x2e\x64\x6f\xf9\x4b\x22\xd2\x49\x6d\x44\xa6\xee\x48\xe7\x01\x0f\xf1\x73\x7d\xe2\x10\x8d\x60\x8c\x4b\x17\xda\xac\x6e\x1b\x76\xab\x4d\x10\x23\x76\x97\x6d\x25\x76\x70\xe8\x1f\x1c\xc2\xa1\xe7\x1f\x7a\xd2\x56\xac\x8d\xab\x23\x85\xd4\x27\xfe\x63\x0b\x19\xb9\x2f\xa2\x6b\xbf\x11\x9d\x67\x19\xd1\x59\x73\xf3\x3f\x6e\x3e\xa7\x1b\x21\x16\x11\x7a\x92\x43\x0e\x03\xaf\x1b\xfb\xba\x19\x13\xec\xf5\x37\x87\xdd\x78\xa2\x25\xed\x43\xed\x5c\xa8\xe0\x02\x3c\x15\x21\xf1\xe0\x91\xb9\xe3\x44\xa1\x49\x9c\xfa\x93\xa8\x7c\x1b\xad\xfa\x63\xca\xa8\xeb\x3c\x0b\x2d\x49\x81\x06\x99\x1b\x36\x48\xd9\x9a\xe4\x30\xa6\x10\x93\x14\x72\xc8\xa1\x84\x31\x78\x60\xd9\x28\x04\x5e\x88\xfa\x40\x14\xd8\x1e\x51\xe2\xa8\x2a\xa5\xac\xd6\xf5\xe0\x91\x08\x4c\x8f\x7c\xef\x11\x1c\x3c\xf2\x0f\x1e\x69\xb9\xec\x89\xff\x00\x01\xd5\xfa\x22\xd4\x7e\x76\x54\x0e\x0e\xa4\x11\x41\xa7\xdf\x9f\xb1\xbf\x30\xc6\x66\xdf\x60\x67\xa1\xfb\xd6\x98\x6b\x88\xce\xc9\x6e\x1c\xf8\xf6\x1d\xf4\x17\x02\xcd\x4a\x0c\x6e\xaf\x69\xb3\x0d\x8e\xce\xd3\x32\x8f\xb7\xb5\xb9\x1d\xc9\xed\xa9\xe7\x3f\x45\xf4\xb5\x2f\xc4\x9a\x95\xf5\xe9\x7b\xe1\x03\x4f\xae\x9c\x27\x6a\xe1\x1c\x3e\xd8\x6c\xc4\x36\x1d\x47\xf1\x19\xcd\x41\x26\x5d\x8e\xa2\xd1\x1c\x03\x13\xe5\x82\x57\xdd\xd5\x30\x67\xe3\xa3\x44\x8f\xed\xfc\x88\x9a\x43\x0a\x91\xcb\xaa\x64\x49\x30\x47\x63\x00\xd7\x2d\xc8\x54\x22\x9e\xa9\x0e\x4f\xdb\x77\xfd\x87\x0f\xfc\xc3\x07\x36\x80\x4f\x83\x62\xf2\x85\x00\xb9\xcd\x88\x7b\x9b\x9d\xc5\x53\xff\x37\x0e\xf8\xb7\xc2\x47\x1d\x2a\xa7\xe0\x87\x9e\xf6\x14\x7f\xa2\xee\x1c\x1f\x35\xd6\x44\x2d\x30\xcd\x79\x9c\x46\x49\x72\xdb\x73\xff\x2e\x0f\x6b\x10\x6b\x3c\xce\xaa\xca\xf4\x4f\xb1\x57\x7b\xf4\x28\x7c\xc7\x56\xc8\x4a\xe8\xc5\x89\xad\x53\x36\x7b\xbf\x04\x4e\x68\x17\x56\xb2\x01\x79\xaa\x69\xed\x73\xf8\xb6\x6f\xa5\x96\x50\x7e\x6a\x7c\xfc\xe4\xa9\x4d\x42\x31\x5a\x61\x09\x25\xb4\x22\x8e\xf0\xd7\x5e\xea\x36\x76\x59\xc6\xef\x5a\x1a\xbd\xff\x2a\x21\xdd\xcf\xf6\xbd\xf1\xd9\xe8\x6c\x36\x24\xf8\x2f\x9d\x90\xdd\xb7\xd9\x45\x9c\xf0\xb3\xfd\xb3\xeb\x21\x9d\xec\x9e\x46\xf3\x28\x8f\xcf\xf6\xf7\xa5\x9f\x4c\x66\x5b\x77\x45\x96\x4d\xc4\x2a\x9a\xbd\x4c\x7b\xf9\xc0\x37\xd2\x12\xbc\xd8\x52\x97\xd8\x87\xbe\xe7\x1d\x1a\xd0\x4a\x43\x40\xfa\x62\x0a\xff\x8f\xf7\xfe\xb4\x8c\xb6\x45\xc8\xff\xc6\xfe\x8f\xbf\xd8\xff\x2f\xc9\xcf\xb6\x01\xc1\x1b\x3e\xff\x46\xd6\x2f\xc6\x1f\xf0\x5b\xec\x93\xd3\x31\x28\xf8\x62\xd8\x62\xbb\xf6\xf7\xf1\xe5\xe2\x1b\xab\x3f\x30\xd5\xbf\x4c\x67\x1b\x95\xf7\x1f\xd4\x0f\x3d\x4a\x9c\xa8\xb8\x4d\xa7\xaf\xd5\x45\x84\xfc\x50\xaa\x12\xf1\xc3\x1e\xae\x69\xa1\xe3\x13\xef\xc1\x43\x13\x35\x05\x97\xca\x53\x1d\x64\xd9\x93\xa4\xe8\xa1\x82\xa0\x79\xf4\x54\xb9\x4f\x0a\xa2\x35\x65\x09\x71\x62\x53\x25\xcc\xc5\x73\x2b\xaa\x06\x2c\xd8\x5a\x6a\xec\x60\xc5\xee\x9e\x9f\x9e\xbe\x5f\x27\xfc\x4d\x5c\x94\xfe\x60\x0c\xcf\x4f\x4f\x4f\xcb\xdb\x84\xbf\xe0\xd3\x24\xca\x31\xe0\x96\x3f\xf0\x44\xf2\xaf\x82\xea\xca\x6c\x1e\x3c\x4f\x62\x9e\x96\xef\xf9\xb4\xd4\x29\x2f\xde\xbd\xed\x3c\xca\x2a\xad\x84\x0f\xd9\x27\x9e\xea\x8a\x5e\x44\x65\xf4\x21\x8f\xd2\x62\xce\xf3\xd7\x25\x5f\xea\x7c\xaf\xe2\xc4\xd4\xf2\xe3\x87\xb7\x6f\x9e\x25\xc9\xf3\x2c\x49\x24\x62\xba\x4e\xdc\x4c\x79\x95\xe5\xcb\x97\x09\x17\x2b\x57\x27\x9d\x72\x91\xc7\x4a\x7c\xcb\x67\x71\xa4\xeb\x7f\x1b\x2f\xf9\x87\xdb\x15\xc7\x81\x10\x6f\x7f\x8a\x96\x7c\xf6\x53\x36\xe3\x42\xf2\x12\xcf\xd9\xcc\x8c\xca\xcf\x51\x2c\x7a\xfb\xc7\x9a\x17\xa6\x87\x3f\x27\xeb\xcb\x38\x6d\x7e\x99\x82\x4e\x7f\xfd\x41\xaa\xe4\x74\xce\xd3\x5f\x7f\x90\xc1\xcd\xac\x84\x9f\xa3\x72\x71\xca\x2f\xed\x94\x2c\x4e\x4b\xeb\xb9\x3d\x7c\xa7\xbf\xfe\x20\x47\x2b\xcb\xcd\x50\x9d\xa2\xd3\x8d\x54\xb2\x99\x34\x31\x79\xa7\x0b\xce\x4b\xdd\xf6\x0f\xfc\xa6\xfc\x90\x47\xd3\x4f\xcf\x9b\xe9\x33\x69\x26\x21\x5b\x4f\x75\x7b\x6b\x98\xb1\x98\xac\x28\x2c\xd9\xf8\x68\x79\x3c\xd3\xb7\xec\xcb\xe1\x50\x72\xb4\x5b\xb8\x62\xb3\x60\x19\xc2\x25\x5b\x05\x57\x21\x5c\xb0\x48\xfc\x39\x67\x17\xae\x6b\x1d\x76\x76\xe2\x39\x39\x77\x5d\x72\x1e\x4c\xc3\xaa\x2a\xc8\x39\x4c\x61\x41\xe1\x3c\x98\xab\xc7\x39\x5c\x51\x58\x07\x57\x21\x5b\xc0\x25\xa5\x62\xed\xa3\x36\x36\xa7\xe7\xc1\x6d\x58\x55\x19\x39\x87\x5b\xc8\x83\xdb\x50\xc9\xe7\x77\x0d\x48\xf0\x43\xdf\x6b\x54\xec\x52\xb9\xfe\xd4\x7f\xf4\x54\x87\x05\xd2\xa7\x94\x2f\x84\xcc\x55\xa4\xf8\x71\xa3\x2e\xfc\x1e\xa1\xb9\x5e\x2f\x97\x62\xad\x94\xdc\x47\x1c\x31\x98\x26\x3c\xca\xed\x44\x4c\x50\x24\x51\xe2\x18\x37\xa4\xf0\x33\xb2\x9d\x36\x68\x7a\xd0\x26\xfe\x41\xa8\x14\xe1\x05\xdb\x7f\x7b\xfa\xfa\xe5\xee\xe8\x6c\x64\xe8\x3b\xac\x3f\x7b\xa2\xb7\xca\xdf\xa0\xe6\x07\x10\xb3\xc1\x00\x0d\x36\xa5\x2a\x59\x67\x80\x83\xc6\x38\x82\x58\x86\x28\xf4\xae\xef\x56\xa7\x9c\x94\xfe\xab\xc6\xb4\x55\x41\x1f\x2b\xa1\x86\xd6\xa8\x5f\xae\x6b\x84\x7f\xfc\x61\x18\x8f\xbe\x47\x00\xd5\x02\x07\xf2\x43\xbc\xe4\xd9\xba\xf4\xd7\x24\x1f\x35\x8f\x54\x9c\xf3\x5f\xa7\x25\xcf\xaf\xa2\x44\xbf\xd3\xcf\xca\xa6\xd3\xe6\x30\x0d\x6c\x71\x5f\x4c\x61\x4e\x0e\x9e\x3c\x12\xc2\xfe\xc1\x93\x87\xf2\xcf\x03\x0a\x2d\x75\xc0\xa1\x28\x51\xd0\xdb\x83\x27\x0f\x70\x4d\x1c\x3c\x79\x88\x13\x75\xf0\xe4\x91\x94\x69\xb0\xec\xad\x88\x60\xf6\xf8\x6f\x70\xf5\x12\xd2\x4d\x5b\xa9\x9c\xa5\xa3\x45\x54\x58\x32\x39\xc4\x7d\x82\x9e\xbc\xb2\x9a\xa8\x0b\xee\xbb\x1a\x32\x16\x1b\x03\xa1\xaa\x72\xfe\xf7\xff\x36\xa4\x1c\x22\x16\x8f\x5a\x0c\x05\xdf\xb7\x59\x0c\x14\x2c\x1e\x59\xd4\x1e\xb3\xd8\xd4\xbf\x01\xd6\x58\x2b\x57\x78\xe3\xc4\x8b\x91\xef\x4d\x17\x6c\x8b\x89\xe5\xa4\xf4\x97\x0d\xa0\xa0\xbc\xab\x25\xb1\x8d\xeb\x1b\xa1\x76\xe2\x13\xc9\xab\x2a\xb0\x8c\x32\x46\xe7\x71\x7a\x95\x7d\xe2\x1b\x06\x4a\xca\x9d\x77\xa7\xbb\x9c\x63\x90\x11\xf3\x73\xc6\xd8\x42\x5d\x58\x8b\x92\x95\xa1\xc6\x0f\x3c\x95\x3d\xdd\x8d\x8b\xdd\x28\xc9\x79\x34\xbb\xdd\xcd\xd7\x69\x2a\x84\x1e\xe9\x0a\xcc\x18\x5b\xc9\xfb\x49\xfc\xda\x61\x8c\xc5\xaa\xa0\x6c\xc7\x98\x8f\x49\xe0\x96\x74\xb4\xe4\xe5\x22\x9b\xb1\x18\xd2\x51\x94\x5f\xb2\x4c\xc3\xc7\x44\x2c\x1d\xcd\x78\xc2\x2f\xa3\x12\x09\x59\xa4\x91\xde\x4f\x49\xa4\xf0\xf6\x0a\xac\xa5\x60\x8c\xcd\xe8\x34\x4b\xcb\x38\x5d\x1b\xb9\xbd\xa8\x6b\xd1\x82\x94\xdf\x94\xa2\x01\xba\x1e\x9a\x8e\x0a\x9e\x96\x2c\x1d\x9d\xab\xbf\x51\x7e\xb9\xa3\x03\xfe\x37\x0d\x36\xf9\xf5\x50\x4c\x55\x0f\x72\xb6\x92\x2d\xdd\x49\x47\xb3\xb8\x58\x45\xe5\x74\xf1\xf2\x66\xca\x57\x52\xb8\x17\x6f\x24\x1c\x8b\xa3\xf4\x41\x56\x61\xae\x9b\x8e\xa2\x8b\x7c\xbd\xc2\xf8\x24\xf8\x56\x96\x45\x77\x72\xb6\x50\xd8\x51\x89\x85\x61\xed\xa4\x59\xbe\x8c\x12\x51\xc6\x7a\x84\xd3\x2c\x9b\x93\xa2\xb7\xf5\x64\xe5\xcf\x61\x8d\xa3\xd6\x33\x02\xca\x2a\x0f\xdf\x4b\xc3\x7b\xf9\x55\x5d\x37\xbd\x94\x85\xba\x2e\x91\xbd\x52\x53\xa1\xde\xab\x09\x59\xcb\x2e\xd5\x35\xe1\x88\xeb\x01\x59\x6d\x56\xb0\x6e\xeb\x5d\x83\xfb\x78\x27\x4a\xf4\x75\xc3\x85\x7c\xeb\x73\x6d\x92\x2c\x88\x94\x89\xfe\xd1\xca\xae\x6a\x14\xb9\xf3\xba\xae\xf9\xe8\x3a\x8f\x56\x6c\xad\xa0\x35\x9c\x62\x5d\xac\x78\x3a\xe3\x52\xa0\x76\x60\x6e\x25\xfd\x33\xe6\xc9\xcc\x81\x05\x73\xf8\x0d\x9f\xae\x4b\x14\xbe\x57\xcc\x99\x66\xcb\x55\xc2\x4b\x3e\x73\x60\xc6\xee\x6a\x1b\xcf\x86\xde\x35\x5d\xb8\x6d\x3d\x5d\x89\x27\x09\x64\x74\x57\xef\x5c\x06\x59\xc8\xfa\x6d\x74\xea\x1d\x09\x71\xa4\x36\x64\x1b\xd2\x56\x31\x62\x72\x41\xde\x92\x20\xa4\x94\xee\x9c\xbb\xee\xf9\x80\xb1\xd4\x75\x55\xa8\x92\x73\xc8\xa8\xeb\x92\x4b\x76\x2e\xd5\x89\xd7\xec\xca\x8e\xe1\x6f\xfd\x6e\x6f\xf9\x4b\xda\x74\xe4\xa5\xa0\x86\x81\x5c\xe2\xa0\x87\x50\x2f\xac\x70\x34\xcf\xf2\x97\xd1\x74\xd1\x1c\x2c\x4b\x7a\xc7\x83\x32\xec\x63\x66\x4a\x0f\x8c\x94\xc2\x04\x6e\x35\x15\xdd\x34\x71\xaa\xec\x8c\x96\x8d\x15\xc4\x16\xa2\x7c\x46\x5a\x18\xc7\xea\xa0\x6d\xb5\x43\x50\x18\xf3\xb8\x5b\x22\x0a\x41\x06\x66\x83\x27\x84\x07\x69\x08\x1c\x62\xb9\x09\x64\xcf\x06\x8c\x15\x6a\x0f\xc8\x8d\x52\xe0\xca\x9e\xb2\xb5\x02\x1b\xd0\x1a\x10\xd7\x75\x64\x9c\xb9\x86\xc8\x4f\xcd\xb8\x4f\xc1\x39\x3f\x8f\xae\xa3\xb8\x74\xe8\x44\xb5\xcc\x04\x59\x98\x8e\xd4\xbb\x9e\x28\x11\xa5\xa2\x25\xc0\xb1\xa9\x6d\xb0\x99\x52\x37\x52\xbf\xa5\xfe\x46\xd9\x7d\x91\x27\x14\x30\x27\x87\x8c\xac\x3b\x45\xea\x89\xd9\x28\xb9\x8e\x48\x21\xb7\x24\xc5\x81\x13\xa3\x59\x1b\xef\xad\x92\x95\x13\x15\xb6\x2c\x83\x8c\xfa\x19\xa1\x75\x33\x91\xa7\x78\x3f\xad\x85\x21\xc3\xe6\x02\xbd\xf5\x43\x4d\xbf\xe5\xed\x78\x43\x80\x11\x55\x02\xb6\x90\xc7\xa6\xa0\x91\x6c\x85\xeb\x36\x74\xbd\x4d\xe8\x58\x09\xb2\x0d\x7d\x65\xe9\x6b\xf7\xd9\xce\x16\x52\x24\x56\x93\x65\x33\xf8\x61\xc1\x77\x75\xcd\xbb\xb3\x8c\x4b\x3b\xaa\x55\x9e\x5d\xc5\x33\xbe\x1b\xed\x7e\x87\x1f\x7f\xb7\x2b\xcb\x72\xcc\x18\xcd\x6a\xc9\x6e\x13\x92\x43\xd3\x76\x4d\x89\xdb\x7c\x4b\xae\x38\xa3\xc4\xef\x6d\x56\x8c\x0b\xb1\x3b\x58\x33\x75\x4d\x80\x6f\x0d\x3b\x9e\x64\x92\x74\x93\x34\xc0\xb5\xb1\x4e\x4a\x71\xec\x09\x59\x26\xd7\x02\xa4\x23\xb1\xcc\x18\xc7\x3f\x6f\xb2\xa9\xd9\xd0\x03\x9b\x8f\x58\xe3\x2b\x57\xa5\x1a\x5d\xba\xd9\x0c\xea\x67\x3e\xf9\xba\x01\x35\x83\x29\x1b\x66\x2c\xd3\xd2\x5d\xb5\xa1\xfa\x8a\x6f\x56\xd7\xbb\x46\xe1\x26\x18\xc2\x9b\x6c\xea\xf3\x60\x1c\xd6\x3b\x1e\x5a\x78\xb8\x2e\x29\x65\xbc\x98\x37\xd9\x94\x71\x54\x80\x1f\x34\x6f\x94\xf6\x4e\xbe\x3b\x08\xa1\x1c\x45\xf3\x92\xe7\xf2\xf9\x30\x54\x7e\x65\x65\x7e\xfb\x52\xaa\x7b\x0d\x2c\xbc\xa9\xff\x59\x53\x3f\x1f\x29\xf2\x1f\x67\x69\x55\xdd\xd5\x3b\x25\x4e\x24\x33\x7c\x49\x99\x9f\x97\x38\x75\x76\x6e\x56\x36\x05\x7e\x32\x4e\x74\x4d\xb5\x2c\xd0\x7d\x73\xf2\x2c\x2b\x9d\x3a\x04\x6e\x48\xed\x3b\x09\x35\x65\x82\x14\xf1\x92\x88\x73\x93\x29\xf0\xad\xba\xb4\xe3\xda\x9a\x98\x07\x19\xee\xb9\xb4\x03\x00\x24\x63\xc1\xf5\xe9\x25\x71\x5d\x18\x60\x61\x04\x10\x8a\x8b\x9f\xa2\x9f\x08\x37\x8e\x41\x4a\x9a\xdc\xf3\xac\x68\x7e\xbb\x3a\xf2\xdf\xd1\x70\x18\x1f\x73\x83\x40\x82\xd0\x2d\x2a\x02\x44\x6c\xc1\x10\x29\xc2\x14\xc4\x21\x48\xb1\x81\x0d\x3c\x48\x77\x3a\xef\x4b\xf3\x72\x0c\x69\xdd\x38\x9e\xe1\x12\x8e\x34\xde\xc7\x9d\x78\xf4\x3f\x58\x74\xe8\x83\xe1\x10\x4a\x4a\x29\x1b\x0c\x7e\x55\xc8\xad\xc5\x02\xaf\x5b\xa8\xaf\x57\x70\xd5\x7a\xbe\x85\xab\xa0\x08\xd9\x2d\x8a\x63\x49\x84\x46\x84\xac\x91\x53\xf5\xb9\xc9\x11\x7b\xbd\xd8\x48\xee\x31\x4b\xef\x1b\xf6\x0e\xf6\xae\xbe\x65\x1d\x94\x68\x6f\xc7\xd8\x6d\x55\xf5\x54\xc9\x18\x23\xa5\xdd\xae\xaa\x2a\x11\x50\x83\xd2\x1a\xf8\x68\x19\xe5\x9f\xfa\xb8\xb1\x62\xf9\x6d\xd8\xed\x49\x6f\x2a\xe1\x70\x45\x7d\xc2\x47\xe7\xe7\x38\x5e\xe7\xe7\xec\x0a\x0a\xdc\x55\x55\x45\xb8\x18\x98\x9e\x76\x51\x0a\x7c\xab\x88\x71\x4d\x81\x8b\xd6\x45\x28\x83\x6d\x36\xef\x4e\x31\x49\x9f\xd7\x35\xbc\x24\x37\xf6\x21\xc4\x7a\x08\xa2\xad\xb2\x13\xf0\xd1\x33\xfb\xd0\xc4\x6e\x44\x75\x22\x85\xb5\xcd\x07\x1a\x94\x4d\x41\xa9\x6e\xc8\xda\x24\x37\xa7\xe7\xbe\x49\x25\x29\x9d\x64\x7e\x86\xeb\x90\xf4\x30\x5e\xf3\x2d\xd2\x62\x65\xc5\x68\xf2\x8b\xe3\xef\x4b\x31\x0c\xd7\xed\xe1\x73\xe0\xfa\x33\x02\x21\x5c\x9b\x63\xdf\x66\x16\x13\xfa\xd6\x14\x16\x3a\x62\x18\x3e\xf1\xdb\xa2\x67\x05\x5a\xd8\x41\xa9\x8c\x82\x51\xea\xb8\x6b\x8d\x97\x4b\xce\xaf\x78\x5e\x70\x42\x61\x73\x93\x97\x0d\xc4\x90\x64\xf6\xe5\x68\x95\xad\x88\x3c\x9f\xc9\x12\x3b\x5b\x39\xb7\xf7\x79\x73\x6b\xdd\xec\x6e\xd1\x5c\x79\xef\xc3\xde\x82\x15\xb6\x8e\xdd\x59\xfb\xc2\xff\x04\x48\xf6\xba\x56\x0a\x2a\x88\x1b\xbf\xd2\xf1\xf0\x90\x42\xa8\xdf\x78\x10\x53\xe1\xe4\xf0\xa7\x4c\xd6\xad\x91\x0f\x2d\xae\x83\x49\x6d\x06\x88\x49\x52\xc2\xe8\x32\x0a\x4d\x9d\x9f\x51\x18\x70\xda\x1a\x58\x24\xd7\x8e\x3a\x21\x1a\xc4\x49\x23\x2d\xca\xc0\x5d\xe8\x78\x82\x34\x76\x98\x36\x18\x64\xda\x4f\x20\x0d\x59\x49\x6b\x28\xca\x6c\xe5\xb7\xee\x70\x4c\x17\xc6\xca\x7d\xa1\xd3\xae\x60\x1c\x5a\x7c\xa7\x2d\x77\x70\x29\x77\xc8\x23\x27\xb7\x25\x08\xc9\x5a\xae\xa2\xa4\x86\x8d\xe3\x67\xef\xa8\x23\x2e\x97\x2a\x68\xa7\x41\x1e\x6f\x8e\x11\xb1\x44\xb3\xd5\xe7\x66\xc5\x28\x95\x9c\x20\xc7\xd4\x88\x25\x39\xc4\x9f\x13\x3e\x06\x83\xd8\xc0\xb1\x66\xdd\xfe\x36\xb8\x51\xd9\x09\x1b\x1f\xed\xed\x65\xfa\xa0\xdf\x1d\x98\x2c\x84\x82\x45\xdd\xc1\x41\x76\xcb\x18\x8b\x46\x92\x01\x1b\xe0\x5b\x44\x22\x91\xba\x07\xfd\xee\x98\x99\x15\x67\x10\x4b\x95\x06\x0e\x1c\x2d\x83\x38\x12\x37\x5e\x27\x37\x02\x88\x2c\x6b\xed\xba\x49\x7b\xf1\x1e\x47\x46\x7e\x69\x2a\x6f\xd2\xd0\xbc\xa5\x93\xbf\x29\xd4\xfe\xc2\x4a\xad\xb5\xee\x61\xfd\xcd\x75\xd5\x1a\xcc\x6b\x90\x6c\xea\x69\xca\xfc\x76\xb7\x28\xa3\x12\x75\xef\xbb\xd7\x71\xb9\xc8\xd6\xe5\x2e\x7e\xbe\x9b\xe5\xbb\xaa\x05\xce\x7f\xa1\xc1\x75\x5d\x83\xd4\x62\x74\x0c\x85\x1a\xe3\xd8\xad\x33\x9f\xca\x99\x4f\x8d\xc6\xab\x33\xf3\x69\x28\x81\x8d\x37\x66\xd1\x6c\xc9\xb8\x3d\x51\x2a\x2e\x25\x36\x3e\xb6\x9b\xa9\xf8\x46\x2c\x81\x5c\xeb\x3a\x73\x5d\xe2\xe0\x6f\xdc\x5f\x55\xe5\x68\x7d\x09\x3e\x53\xd7\xcd\x9a\x5a\x5d\xb7\x3c\x66\x99\x55\x9c\xeb\x12\x89\xac\x27\x4f\xeb\x91\x44\xd0\x33\xeb\xd3\xbf\xb3\x84\x1f\x19\xdd\x13\x22\x45\x8d\xb2\x09\xd9\x46\xae\x70\x4b\xd9\xd5\x08\x69\x1d\xdf\x68\xe5\x05\x11\x27\x4d\xfd\xb0\x69\xbe\xfc\x15\x04\xc3\xea\xf3\x48\xba\x83\xb6\x3b\x8e\x89\x93\xa6\x39\xf8\xad\x6f\x29\xaf\x54\x0e\x62\x08\x0f\x33\xa4\x16\xf3\xb6\x89\xb1\x3e\xed\x35\x05\xca\xcd\xe9\x5b\xaa\x2c\xae\xb4\x4e\xa5\x22\xa1\x32\x5f\x49\x61\x56\xc3\x3c\x4e\xe3\x62\xb1\x05\x49\x61\xeb\xb2\x2a\xe5\xb2\x6a\x85\x56\xb0\x97\x55\x29\x85\x6c\xfb\x8c\x61\xfb\xd2\xb4\x46\x3c\xb5\xe6\x55\x50\x36\x75\x08\xa1\xf0\x8c\xa4\xa2\x89\x7d\xa1\x4d\xff\x83\x4d\x94\x6b\x10\x9b\xa7\x58\x77\xba\x95\x4b\xe4\x96\x3e\x24\x66\x39\xce\xba\x68\xa5\x66\xdf\x71\x5d\x6f\xd0\x85\x38\x11\x8c\x34\x51\x94\x20\x2a\x4b\xbe\x5c\xe1\x75\xae\xe6\xb0\xa8\x4f\xb3\x97\x9a\x6d\xc6\xd9\xe6\xc5\x77\xfa\xc0\xe8\xbf\xc5\x28\xbc\xe6\x38\xeb\xa7\xa0\x8e\xaf\x7e\x5e\x83\x51\xc2\x5a\x2b\x45\x4f\xbd\x62\x1c\x62\x58\x79\x4d\x36\x14\x37\xe5\xc4\x5c\x23\xf8\x77\xb5\x8e\x2f\x73\xa9\x85\xa8\xf7\xeb\xb4\x8c\x97\x9c\xe5\x4d\x2c\x36\x23\x02\x3a\x39\x2a\xc3\xba\x79\x77\xd9\x6e\xee\x50\x82\x46\xa8\x77\x75\x28\xfe\x01\x3c\x8a\xb6\x37\x57\xeb\x92\x61\xa3\x59\xcb\x6c\xb6\x4e\x78\x8f\xa2\x49\xbe\xd0\x4d\x9e\xb4\x1f\x99\x90\x37\xa7\x78\xff\x33\x29\xa5\xb3\xeb\x86\x97\x58\x93\x65\x93\xa4\xff\xfe\xf7\x35\xcf\x6f\x77\x73\xfe\xc7\x3a\xce\x79\xb1\x1b\xed\x5e\xc7\xe9\x2c\xbb\x46\xea\xbe\x1b\xed\xea\x2f\x9d\x46\x48\x24\x9c\xd6\x3e\xfe\x4b\x9c\x75\x2a\x5d\xb3\x66\x4d\xac\x60\xf9\xfd\x44\xfe\x91\x01\x60\x3f\x33\x0c\x57\x3a\x18\x6b\x6e\xf5\x04\xe2\x2d\x3a\xd0\x8c\x29\x61\x09\x22\x5c\xc2\xe9\x34\x2a\xa1\x60\x12\xa1\x08\xd6\x2c\xd5\xc8\x3d\x90\xb0\xbb\x1a\xa6\x2c\x69\x10\x17\xe7\x2c\xe9\x5e\xde\x2c\xd8\xbc\x79\xbf\x62\x0b\xc9\x0d\x64\xd5\x14\x35\xbc\xb0\xec\x39\xac\xf4\x9f\xe5\x9c\x14\x6f\x83\xad\xa0\xc9\xa3\x34\x9b\xe1\x6d\x74\x0d\xb7\x7d\x47\x32\x19\x71\x41\x1c\x03\x91\x80\xc9\x11\xab\xe1\x8a\x49\x05\xf6\x60\x0c\x45\x3e\x15\x7f\xd2\xec\x2d\x4e\xba\x38\xcb\x36\x32\xd6\xa5\x7d\xeb\x12\x43\xc6\x48\xc9\xca\xaa\xca\xa9\x3a\x74\xa9\x3b\x72\xe2\x48\xb3\x31\xc9\x96\xb3\x51\x89\x14\x19\x52\x14\x5a\x63\x21\xb0\x5e\xd1\x34\x88\x43\xc1\x8e\x82\x38\x64\xe2\x37\xdd\x29\x47\x0b\x1e\xcd\x46\xd1\x6a\xc5\x95\x6f\x3f\xc9\xe8\x68\x15\xe5\x3c\x2d\x7f\xca\x66\x7c\x94\xf3\x65\x76\xc5\xf5\x9b\xe6\x18\x7e\xd1\xe9\x20\x63\x7c\xc2\x87\x8e\xe3\x6f\xac\x6b\xc1\x36\x7a\x46\x72\x92\x04\x53\xad\xb0\x08\xab\x4a\x7f\xe6\x1b\xdf\x79\x89\x7e\xda\x6b\x4f\x2c\x16\xf6\xf9\x68\x2e\x96\x41\x2c\xe3\x44\xd5\x70\xcd\xf6\x3f\x06\x67\xc5\xd9\xfa\xd5\xcb\x57\xaf\xce\x6e\x9e\x8d\xc3\x61\xd5\x79\xbe\xb7\x7f\xd9\xd1\x80\x4b\xc2\x3b\x18\x88\x79\x95\xe4\xd6\x91\x4a\x25\x83\x3f\x94\xb2\x0b\xcb\x32\x7a\x89\x5e\x47\x83\x5b\xfc\x43\x9c\x08\x4d\x1f\xc5\x01\xa0\xaa\xd0\x68\xba\xaa\xf4\xf2\x68\x05\xcd\x3e\x19\xbb\x6e\xb9\x27\x55\x59\xb4\x16\x2d\x67\xe7\xf6\x29\xe8\xf7\x3f\xc4\xee\xf4\x9d\xc3\xd1\xe1\xc8\x73\xc0\x3e\x14\x9d\x83\x6c\x88\x3f\x86\x32\x93\x56\x0a\x9b\x87\xc8\xcc\x46\xd3\x84\xae\xa5\x77\x67\x96\xec\xcc\x3e\x3f\x1e\x23\x03\x0f\xf8\x10\x69\xaa\xac\x2c\xf4\x65\x5a\x58\x83\xd8\x71\xa7\x65\x34\xfd\xd4\x63\x1a\x77\x3e\x5a\xf2\xfc\x52\x9a\xd9\xd8\x1a\x0e\x82\xfe\x4e\xe6\xb0\x29\x04\x2c\xb9\xd9\x64\x34\xe3\xb2\x06\x1e\xf5\x07\xf8\x3e\x1f\x89\x37\x06\x99\x10\x96\x1d\x3b\x5a\x9b\x95\x98\x96\x91\xf3\xd1\x32\x92\x2e\x50\xd0\xbe\x59\x37\x67\x75\x7d\x89\x24\x56\x0a\x15\x27\xae\xb6\x4b\xd7\xb6\x82\x33\xfb\xb2\xdc\xdc\xbf\x23\x5c\x7c\x9c\x17\x7d\xd0\x16\x58\x00\xff\x83\x8c\x69\x0d\x49\xf4\xd9\x2c\x7b\x1e\xad\x81\xff\xb1\x25\xe6\x73\xb3\xfe\x86\x7c\x48\x70\x9a\xfc\x26\x36\x40\xa7\x9d\x42\x34\x76\xdd\xf4\xb8\x9c\x04\xea\x5c\x19\xfa\x41\x28\x8a\xb7\x4d\xe8\x3a\xbd\x34\xb3\x52\x55\x9b\x13\x28\x27\xde\x2f\xa0\xc8\xf2\xd2\x4f\x47\xe2\x0f\xba\x5b\x4f\xb9\x78\xc2\x1f\x35\x9c\x8f\xf8\x4d\xc9\xd3\x19\xc3\xcd\xa8\x7e\x5b\xf5\x29\x70\x30\xa9\x77\x81\x0c\x22\x66\xdb\x7c\x57\xd5\x5d\x0d\x05\xf3\x60\xbd\x09\x67\x95\xb0\x81\x87\x7a\x0c\xe7\x22\xcb\x12\x1e\x59\x94\x23\x72\x5d\x92\xb0\xa8\x55\x58\xa1\x0a\x1b\x0e\x29\x6c\x10\xa0\xa8\xaa\x96\x24\xa2\x55\x45\x22\x76\x57\x53\x28\x18\x63\x6b\x8c\x2c\x81\xf3\x5a\xec\xed\xd1\xa3\xe2\x78\x7d\x54\x48\x48\x62\x49\xae\x09\x67\x6d\x68\x2c\x3b\xac\x28\x8b\x82\x32\x84\x68\xc0\x18\xc9\x19\x0f\x4a\x0c\x37\x92\x60\x98\x2d\x72\x3e\x8a\x8b\x9f\x93\x28\x4e\x95\x57\x70\x2e\x2a\x8e\x19\x6e\xdd\x51\x5c\xe0\x5f\x92\x53\x4a\x27\x24\x9e\x90\x98\x0d\x3c\xc1\xee\x5c\xb7\x9d\x21\xa5\x93\x54\x4c\xa1\x8f\xef\xba\x65\xe2\xdb\xbb\x1a\x44\x33\x98\x9e\x04\x92\x40\x06\x39\xa5\x4d\x3c\x48\xd1\x1c\xcc\x92\x5b\xc8\x5e\xcd\xac\x91\x3b\x7e\xb3\x8a\xd2\x59\xe6\x2b\xf1\xc0\x19\x12\x45\x82\x86\x08\x2d\x95\x8b\x97\x4b\x42\xe9\x48\xf9\xdf\x93\xfd\xb3\x17\xfb\x97\xe0\x38\x14\xe2\xe2\x3d\x8f\x66\xb7\x82\x6d\x71\x21\x62\xb4\x96\x71\x57\xfc\x10\x5b\x39\xcd\xda\x4a\x8e\x1a\x5a\x7d\xea\x33\x97\x37\x68\x1e\x03\xc1\x43\xb4\x1a\x4c\xe6\x0f\x9d\x01\x63\x86\x81\x28\x54\x0f\x84\x0b\xa7\x7d\xfc\x86\xa4\x6c\xae\xa9\x80\x63\xad\x74\x3c\x05\xda\x4b\x9f\xba\xae\x92\x0f\x52\x8a\xc6\x08\xa2\x9d\x2f\x97\xab\xf2\x76\x5b\x3b\xed\x80\xb3\xaa\xc1\x5e\x13\x0d\x0f\x64\x24\x9c\x97\x57\x51\x3b\xaa\xfd\x25\x0e\x4a\x87\x0e\x9a\x00\x6f\x90\x33\x04\x10\x17\x4c\x0a\x57\x5e\x6a\x10\xf1\x8e\xf2\xe3\xd4\x75\x07\xde\x80\x31\x85\x48\xc1\x83\x3c\x84\x1c\xc4\x1f\x7a\x94\x0f\x87\xf4\x08\xf5\x02\xe2\x33\xa5\xaf\xd3\x11\x02\x7b\x3e\x50\xf1\x73\x34\xa5\xac\xa1\xcc\xe3\xe5\xe7\xd8\x87\xe3\xf8\x44\x30\xfa\x66\x51\x5c\x23\x2a\x15\x2c\xa3\x4f\xbc\xc3\xa0\xec\x88\x75\x55\x15\x18\x30\x79\x23\x11\x91\x97\x96\xf3\xfc\x44\xf3\x93\x54\x02\x7c\xa5\x97\xb6\xb8\x10\xf0\xd0\xe7\x26\x5c\x7a\x0a\x9c\x52\x48\x6b\xd0\xa6\x7b\x5d\x13\x95\x56\xab\xcb\xc9\x9e\xe7\xaf\xf5\xfc\x73\x04\xac\xc1\xaa\xb6\x6a\x21\x86\x5a\x0b\x2a\x66\x02\xe2\xd6\xe8\xe3\x18\x73\x74\xc7\x67\x65\x90\x87\x8d\x3a\x59\xc1\x97\xc7\xc0\x6b\xb8\xcc\xf9\x6a\xa3\x55\x8d\x85\x68\x10\x2a\x1c\x1c\xde\x20\xf8\x0d\xd2\xa3\xf8\x38\x3b\x8a\x87\x43\x3a\x28\x09\x5e\xa0\xc4\x54\x86\xc1\x51\x60\x00\x1c\x85\x36\xed\x10\xd3\xe5\x8f\x96\x71\x8e\x20\xb7\x6c\x0c\x05\x93\xb0\xf3\x66\x1d\xe5\x4d\x4f\xb2\xe3\xfc\x28\x1b\x0e\xa9\xa2\x77\x31\x13\x55\x66\x21\x64\x90\xa2\x77\x80\x8a\x58\x20\x71\xdf\x71\x35\x65\x8a\xfc\x7d\xe9\x03\xa3\xce\x90\xdc\x33\x08\x01\xc5\x92\x75\x3c\xf3\x3d\x28\xd6\x2b\x71\xa2\xf1\x67\x35\x85\xad\x36\x55\x48\x47\xe7\x69\x20\x9f\xcc\x3d\xab\x90\x5a\xbb\x49\x14\x94\xd0\xe0\x7c\x2f\x39\xc5\xae\x34\xd7\xdc\x95\xf2\xfe\xee\x2b\x73\xc5\x27\xd6\xc9\xee\x8b\xa8\xe4\x0a\xc0\x5c\x51\x12\x49\xa3\x54\xc5\x06\x28\x64\xd7\xe9\x1e\xeb\x92\xc0\x90\x20\x67\x58\x0e\x9d\xd0\x09\x59\x39\x2a\xb3\x37\xd9\x35\xcf\x9f\x47\x05\x27\xb4\x96\x2a\x9e\x9b\x4d\xb5\x7c\xc3\x02\xa1\x80\x35\x24\x30\x05\x0c\x15\x0a\x33\x58\xc2\x2d\x7a\xb9\x5d\xc0\x39\x73\x8a\xf8\xcf\x3f\x13\xee\x0c\xbd\xfb\x82\x7a\x8a\xc6\xc2\xb5\x7d\x62\x52\x11\xaa\xe0\x94\x45\x9c\x50\x78\x27\xff\x3c\x93\x7f\x3e\xf5\x4b\xcb\xe2\xd8\x51\xba\x2e\x99\x23\x8e\xd0\xb8\x86\xb7\xec\xae\xee\x9e\x91\x3e\x88\x15\xf9\x9c\x7d\x18\xad\xb2\x15\xbc\x67\x32\x7c\x14\xfc\xac\x7f\xfc\xc4\x3e\xa8\x13\xd9\xef\x6c\xdb\x9e\x19\x83\xb5\xba\xd2\xe3\xfc\x28\x95\x0c\x95\x07\x69\x68\xbb\xc6\x6b\xba\xbe\xe7\xd5\xf0\x9a\x39\x18\x02\x96\xcf\xaa\x02\x2d\x7e\xf9\xac\xc2\xdb\x9c\x2a\x5a\x97\xd9\x3c\x9b\xae\x0b\xfc\xb5\x4a\xa2\xdb\x6a\x9a\xa5\x65\x9e\x25\x45\x35\xe3\x73\x9e\x57\xb3\xb8\x88\x2e\x12\x3e\xab\x24\xb8\x5a\x15\x17\xcb\x68\x55\x25\x59\xb6\xaa\x30\xda\xc3\x2a\xe1\x55\xb6\xe2\x69\x95\xf3\x68\x96\xa5\xc9\x6d\xa5\x8e\xbf\xb3\xaa\x98\x66\x2b\x3e\x73\xe0\x05\x73\x82\xb3\xb3\x9b\x83\xf1\xd9\x59\x79\x76\x96\x9f\x9d\xa5\x67\x67\xf3\xd0\x81\x37\xcc\x21\x13\xff\xec\xec\xec\x6c\x54\x05\x67\x67\xd7\x7b\x61\x15\x7c\x3c\x1b\xef\x9d\x9d\xdd\x44\xe3\x90\x0e\x1d\x78\xc5\x9c\xb3\xb3\xc0\x19\xbe\x18\x3a\xf7\x89\x33\x7c\x33\x74\x28\xc6\x88\xc0\xe7\xe0\xfe\xc7\x7b\xd5\xe0\xdf\xe1\x84\x51\x95\x32\xf1\xbf\x23\x4d\x89\x1f\xc5\xdf\xef\x42\x7a\x9f\x7e\x57\x9d\x39\xdd\x17\x67\x8e\x78\x73\xe6\x54\xaa\x5c\x5a\xa9\x52\xce\xce\x42\x07\xfe\x64\x8e\xdf\x54\x78\x76\x46\x08\xf9\xf6\xa2\x69\xd5\x7d\x43\x68\x70\x76\x16\x86\x95\x33\x7c\x35\x74\xe8\x7d\x5a\x8d\xee\xd3\xb3\x33\x51\x35\xfc\x68\xc7\x70\x79\x31\x74\x86\x0e\x60\x84\x8c\xef\xed\x74\xe7\x23\xb6\x71\x88\x05\x7f\x54\x85\x86\x54\xd7\x42\xef\xcb\x3e\x0c\xef\xa9\x8f\x7f\xe9\xf9\xf8\x3e\xc8\x3f\x0e\x85\x3f\xfa\x5e\x93\xe0\x64\xf8\x6f\xd1\xc4\x17\x43\x87\x9a\xac\xbf\xb5\xb2\x32\x9d\xf5\xe3\xd9\x59\xf8\xdd\x99\x13\xde\x9f\xd8\xa3\x87\x75\xff\x6a\x7f\xf1\x27\x85\x7f\x76\x2b\x7b\x33\x74\xee\x39\x14\x7e\x60\x77\xaf\x5f\xf8\xad\x77\x7f\x51\x43\xef\x50\x78\xfe\xe6\xd9\xe9\x69\xfb\xed\xd9\xd9\xa8\x79\xff\xe1\xd9\x0f\xed\xb7\xf2\x55\x15\xdc\x0f\xc5\xeb\x67\x1f\x3e\xbc\xf7\x3b\xf5\xbe\xa2\xf0\xf3\xe9\xcb\x5f\x5e\xbc\xeb\xbe\xf8\x93\xc2\xf3\x1f\x5f\xbf\xe9\x34\xc6\x27\xb8\xaa\xf1\x2c\x52\x89\xd3\x46\x95\x96\x0b\xf1\xff\x9e\x78\xa0\x7b\x64\x2a\x8e\xed\x55\x36\xdf\x43\x5d\x9f\x5c\x2e\x6a\x7c\xf8\x15\x4f\xab\x6c\x36\xab\x08\x09\x86\x7b\x61\x45\xc9\xd9\xd9\xec\x3e\x4d\xab\x66\xc5\xaa\x17\xea\xf9\xec\x6c\x36\xa4\x15\x35\x83\x89\x4b\xc3\x89\x1d\x0a\x42\x42\xef\xf4\x54\xec\x84\xd7\x43\x87\xde\x53\x59\x52\xce\x67\xc5\xf3\x2c\x2d\xf9\x4d\xd9\xed\x9b\x28\x4e\x4e\xac\xdf\xb4\x8a\xff\x51\x5d\x96\x55\x22\x7b\xd4\x74\xb0\xdd\x07\x32\xf1\xf7\xce\xce\x66\x74\x82\x4d\xb7\x1a\x46\x26\x2c\xf8\xb8\x17\x56\xf7\x54\x13\x6b\xf8\x1b\xdb\x17\xad\x8a\xd3\xd5\xba\x54\x94\xa6\x12\x8d\x89\x72\x1e\x55\x17\xeb\xb2\xcc\x52\x7a\x6f\x3f\x86\x7b\x6c\xff\xe3\xe2\x6c\x26\x7e\xfe\x9d\xed\x7f\x0c\x3e\xde\x85\xc3\xb3\xbb\xb3\xe2\xfe\x59\x90\x46\x65\x7c\xc5\x77\xcf\xae\xf7\xe1\x1f\xb2\xb4\xbf\x90\x40\x90\x86\x21\xad\xc8\xd9\xf5\x90\x56\x67\x23\x9d\x40\xef\xed\xc3\xbf\xd8\x7e\x30\xfc\x77\xb8\x0f\x7f\x6d\x2d\x2f\xdc\x6c\xc1\xd9\xd9\x2c\xda\x9b\x87\x77\x1e\x3c\xaa\xb1\xe1\x93\x4a\xf6\x8a\x56\x23\x6c\xf4\xa5\x04\xaa\xea\xb7\xbc\x75\xc6\x37\xce\xb0\xdc\x43\x40\x6e\x23\x0d\x0c\x58\x5e\x55\xe9\xa4\xf4\xf3\xe3\xf1\xa4\x07\xbb\x9c\xe4\x43\x89\xe0\xed\xf7\xbe\x3c\x39\xf1\xc6\x15\xa2\x7d\x83\x37\x3e\x38\x74\xf3\x4a\x82\x7b\xd7\x50\x72\xb6\x4f\x02\x41\xfd\x6e\xbc\xf9\xd9\xcd\xe3\x79\x58\x7d\xdc\x9b\x9c\xcd\x68\xf5\x71\xef\x9e\xa2\x8b\xea\xcd\xde\xd9\xfa\xd5\xab\x57\xaf\xc4\x20\xec\x5f\x42\xca\xfb\x19\x52\x39\x71\xce\xc6\xa8\xcd\x9f\x38\xff\xcf\xff\xfd\x7f\x39\x3e\x37\xf1\x8f\xf6\x3c\x3a\x74\xce\xce\x9c\x21\xc7\x2b\x55\xd1\xb4\x67\xa5\xb1\x4f\xd9\xf3\xa8\x51\xe4\x11\xef\x11\x1d\x3a\xbb\x8e\x2f\xb3\xd7\x90\x73\xfb\xe8\xb9\x10\x67\xd8\x98\xb3\x4b\xde\x73\x7b\x8f\x1e\xee\x7c\xa4\x19\x88\xeb\x12\x67\x9e\xe5\x4b\x47\x9a\x3e\x38\x49\x74\xc1\x13\x47\x2a\x6b\xe0\x6e\x16\xe7\xbe\xd3\x68\xc4\x1c\x54\x4f\xfb\x4e\xc2\x2f\x79\x3a\x73\x94\x62\xf9\x67\x25\xeb\x7c\x60\x3f\x49\x31\xf3\x7a\x84\x9b\x4f\x7c\x51\x50\x68\x3f\x7d\x08\xec\x67\xad\x73\x69\xd4\x88\x52\x21\x7d\xc3\xe9\xdd\xcf\xec\x0e\xcb\xf5\x3f\xf4\xc7\x7f\x7a\xaf\xaa\xe5\xa0\xaa\x2d\x29\xad\xb7\x0a\xb5\xdc\x92\x69\x8f\x78\x90\x2a\x01\x76\x38\x0c\x8f\xe8\x91\x91\x5e\x05\x5f\xb6\xec\x6d\x32\xae\x62\x38\x6a\x7b\x0a\x28\x94\xf8\x32\x13\x62\x8b\x34\x3c\xcf\xae\x53\x9e\xbf\x68\x84\x94\x72\x52\x9a\xee\xf8\x4f\xa5\x65\x20\x1a\x97\x1b\xc9\x7e\x60\xa9\x07\xc5\xf1\x4e\x9c\x67\x5e\xba\xee\x53\xf9\xc7\xc3\x47\x13\x12\x4a\x9a\x2a\xb9\x2e\x21\xa2\xe0\x56\x65\x55\x55\xfa\xd7\x42\x48\x5e\xb9\xee\x82\x94\x14\x50\x39\xba\x82\xa5\x0c\x73\xee\xa9\x72\xc9\x9c\xfd\x03\xc3\x22\x0b\x41\x58\x08\x25\x19\x9b\x07\x5e\x88\x79\x9e\x32\x51\x17\xaa\xd0\x49\xc2\x50\x19\xad\x74\xaa\xdf\xdf\xbe\x9e\x91\xac\x09\xc6\x8e\x0d\x49\x46\xf1\x8c\x31\x96\x35\x01\xab\x50\xee\x4d\x28\xe4\xe6\x42\xf6\x12\x75\x14\x97\x3d\x45\xb9\xee\x05\x29\x21\xa1\xae\xfb\xa5\x72\x30\x4a\x7b\x70\x10\xea\xf7\x7a\x89\xe5\x60\x37\xb1\xf8\xfe\xf6\x43\x74\xf9\x53\xb4\xe4\x12\xff\x51\xb4\x10\x3b\x77\x18\x52\xd7\x4d\xdb\x39\x9f\x27\x51\x51\xfc\x84\x41\x79\xca\x2d\x6f\xbe\x58\x9b\xc9\x29\x7a\x03\x79\x8d\x37\x4f\x7f\x14\x91\xeb\x0e\x9e\x05\x5c\xec\xc8\x50\x1c\xc6\x6f\xab\x6a\x70\x2b\xbd\x60\xc4\x88\xe3\x5c\xe0\x9c\x5e\xb2\x12\xae\x18\x6f\xec\xe6\x95\xba\x06\xcf\xb3\x62\xcd\x88\xb2\xdb\x62\xb5\x5c\xc3\x64\x2a\xe7\xe6\x59\x59\xe6\xf1\xc5\xba\xe4\xc4\x89\x67\x0e\xa5\x93\x29\x9b\x9a\xb3\x68\xc9\x21\xe5\x88\x5d\xdd\xcd\x08\x53\x76\x4e\xa1\x60\x64\xc6\x22\xd1\x24\x2d\xa8\x16\x7b\x7b\x47\x74\x86\xd6\x3a\x7f\x71\x86\x53\xd1\x81\xe1\x15\x27\x22\x85\xee\x5c\xb1\x99\x42\x42\x07\x0c\x09\xf6\x2f\xdd\x23\xd7\x5d\x72\x52\x5a\x8a\x72\x5a\x55\xa5\x18\x8b\x2b\xda\xd8\xb3\x5b\x83\x78\x39\x42\x15\xaf\xf4\x6a\xcb\xf2\x67\x49\x42\xae\x70\xf8\xd4\x5e\xa7\x77\xb5\xba\x60\xbc\x9b\x32\xc6\xce\xc5\x04\x49\xd5\x7b\xa7\xbb\xb5\xb1\x72\x5b\x13\x6e\xba\xfd\x3d\x38\xf7\x3c\x87\xaa\x7d\xda\x6c\x5e\x71\x2c\x50\xc0\x76\xcd\xe9\xbb\x6d\x3d\x6d\x69\x49\xa5\x99\x90\x18\x01\x7a\x92\x8f\xa6\xd1\x74\xa1\xe0\xa9\x0c\xe4\x6e\x19\xf0\x51\xb1\x88\xe7\x25\xa1\x08\xd3\x8a\xd3\xcd\x62\x8b\x5c\x14\xdc\x36\x92\x0a\xce\x43\x36\x18\x03\x6f\xde\xaf\x79\xa3\xe7\x5c\x75\x6f\x30\xe6\x31\x4f\x66\x05\x2f\x1d\x7d\x5b\x27\x0d\xe5\x38\x29\xa9\x45\x14\xb5\x92\xc5\x8c\x98\x3d\x0f\xe8\x06\xd3\x7f\x7d\x81\xc4\x41\x1c\x5e\xad\xe6\x26\x7c\x93\x48\xaa\x13\x60\xe5\x60\x98\x51\xbd\x4e\x62\xb1\x4e\xf2\x51\x54\x96\xf9\x8f\x51\x3a\x4b\x78\x90\x06\x71\x18\xda\x36\x9f\x53\xde\xd2\x78\xb8\x2e\xba\x12\xb9\xae\x87\xdc\x46\xd3\x43\xf9\x5c\x5a\xcf\x3a\x02\x17\x46\x62\xdb\x2b\xed\x27\x24\x9d\x2d\xf2\x23\x2f\x74\x8e\x52\x26\xcd\x6a\x4e\xe3\x8b\x24\x4e\x2f\xd1\x1a\x33\xb5\x4e\x59\x7b\x9e\x51\x4b\x4c\x3c\x7f\xcf\x6b\x5a\x39\xe7\x9f\x0d\x7a\xe0\xa0\x8c\xe4\xb0\xed\xdb\x51\x0c\x31\xde\x5b\x30\xc6\xad\xa1\x5c\x6c\x2b\x57\x0d\xc7\x96\xd2\x54\x33\x49\x53\x6f\x5a\x55\x8e\x14\xc9\xf0\x69\x5b\x7d\xab\x2f\xf4\x43\x73\x74\xc1\x32\xec\xf5\xa1\x34\x61\x9a\xf9\x4f\x1a\x76\x5f\xda\xbf\xad\x6f\x5a\x05\x98\x0f\x45\x73\xfc\xb2\xfb\x18\x17\x2f\xac\x84\xaa\xb2\x53\x06\x8c\x0d\xb8\xeb\xc6\x62\x3d\xf7\x7d\x6d\xd5\x2e\xfa\x6c\xbf\xb3\xfa\x3d\xb3\xfb\xdd\xf2\x8d\x68\x04\x2c\x36\x2c\xc1\x7e\x85\xf7\xf0\x7a\x8d\xc7\xe8\xbd\x18\x84\xa0\xd7\x36\x94\x14\x22\x13\x89\xf9\x28\x12\x2b\x3d\x0d\x62\x96\x05\x51\x28\x88\xb9\x58\xe8\x6c\x40\x72\x73\x6d\x88\x10\x34\x4d\x8b\x96\xad\x3d\xaf\xd1\xf0\x06\x62\xd1\xf7\x31\x2a\xd7\xe5\xb5\xd1\x99\xa6\x2c\xe3\x23\xa5\x13\x62\xe8\x42\x97\xf1\x51\x5c\xfc\xe3\xed\x9b\x1e\xdb\x46\xee\xba\x84\x77\xf9\x3f\xa7\x46\x3d\xa2\xaa\xb2\x2d\x6c\x9d\x1f\x3f\xbc\x7d\xd3\x66\x2e\x35\x2c\xb0\x52\x5e\xea\x42\x7a\xf4\x35\x31\x44\x8c\x4f\x36\x2b\xf3\xaf\x8d\x7a\x4b\x0a\x1d\x4f\xd1\xac\xac\xd9\xcc\x51\xb7\x35\x13\x32\x63\x64\xc5\xa2\x8d\x66\xc2\x92\x0d\x32\xb2\xa2\x70\x2d\x4b\x22\x31\x5b\x8d\x54\xd4\xe8\x5f\x63\x7e\x4d\x5d\x37\x1e\x95\xd9\x6a\xc0\x98\x90\x7d\xe2\x51\x34\x9b\xbd\xbc\xe2\xd2\xcf\x98\xa7\x3c\x9f\x6c\x26\x11\x67\x9d\x26\x59\x34\x73\x20\xe7\x30\xf0\xa8\x1f\x0b\x8a\x15\x4d\x17\x98\x4b\x14\x68\x3d\x12\x27\x4b\x9b\xec\x94\x42\x8a\xe4\x0d\xb9\x4d\xc1\xd6\x7d\x92\xf3\x2e\x1f\x4d\xb5\x00\xc0\x9c\xd8\x81\x01\xef\xf0\x64\xf3\xda\xa1\xb5\x28\xb1\x6f\x05\x6c\x2d\xdb\xbe\x87\xd6\xdc\xe1\x79\xb6\x94\xdc\xc1\xa1\x54\x55\xb7\x29\xfb\x38\xf7\x1d\xcd\xd1\x37\x6b\x35\x22\x0b\xfb\xbb\xe4\xdf\xab\x6d\xc2\x8f\xfc\x52\xc8\x6a\x5b\x9a\xd8\xbe\x2a\xe7\x54\xc8\x70\xe7\x30\xe8\x14\x28\xcd\xb5\xfb\x52\xc9\x79\xb7\x99\xa2\xb2\x09\xc9\x47\xf3\x38\x29\x79\x3e\x7a\xfd\xa2\x6f\xdd\x1b\x46\xff\x57\xe0\xcd\xd5\x6a\xef\x10\x6e\x4a\x48\x82\xdc\xd5\x35\xe4\x88\xdf\xdf\xae\xa0\x0b\x65\xd9\x15\x7e\x5d\x77\xd9\xd0\xef\x8e\x30\xdb\xb4\x23\x9d\x04\x69\xe8\x07\x61\x5d\x53\xff\xbf\xdf\x13\x59\x5d\x9b\x86\x98\x1e\x49\x12\xbe\x99\x26\x7b\x6a\x1a\x24\x24\x5f\x69\x9b\xfc\x9f\xe8\xbb\x54\xdd\xf6\x8e\x80\x38\x49\x60\x31\x24\x65\xd9\x96\x56\x51\xbb\x35\x5a\xc0\x0e\x32\x69\xa7\x1d\xb3\xb2\x67\x95\x70\x8a\x67\xb4\x8c\xc5\xea\x78\xf6\x5f\xab\x41\x89\x8a\x38\x33\x7a\x0c\x3e\x3c\xfb\x81\xf5\xef\xca\xcf\xc5\x16\xee\x8c\x8f\xf5\xd1\xd6\xc3\x88\x8f\xc7\x82\x49\xb9\x29\xf9\x9a\x88\xa1\xdd\xa3\xaa\xbe\xfb\x32\x97\x23\x5b\x0b\x47\x63\xb6\xfb\xd2\xfc\xf2\x4e\x09\x44\x19\x5e\xc9\x1c\x51\x0f\x2d\xb2\x1b\x8a\x9c\x77\xed\xdf\x73\x2d\x42\x67\x66\x65\xa0\x32\xaf\x3b\x2e\xd6\x71\xe9\xeb\x96\x4d\xfb\x9b\x65\x13\x2c\x7e\xcb\x09\x8a\xd3\x1a\xae\x44\x6f\x6f\xc5\x3f\xf2\x1c\xd5\xd0\xa8\xee\xb8\xe1\x2d\x67\x87\x2c\x6d\xd2\xa3\x34\xe5\xb9\xe0\x79\xcc\x39\x8e\x76\xe3\x19\xfb\xce\x19\x9e\x0f\x9d\xef\x4e\x8e\xf7\xa3\x93\x63\xa9\xf9\x6a\x92\xf7\xce\xf2\xb3\xb3\xef\x76\x97\x45\x94\x24\xd9\xf5\x34\x5a\x95\xeb\x9c\xb3\xef\xbe\x3b\x39\xce\x56\x4a\x9c\x97\x4a\x79\x4c\xdb\x97\x89\x27\xc7\xfb\x32\xf9\xc4\x01\xbe\x39\xbb\x4e\xd0\x2e\xee\x23\xfb\xee\xbb\xd0\x50\x67\xd7\xbd\x55\x51\xb1\x83\xfb\x1f\xef\x85\xac\xd1\x8f\x7f\x57\x9d\x39\x67\xa8\x39\xed\x2d\x54\xb7\xa4\x29\xaa\xaa\x74\x51\x8d\x26\x7e\xe2\xe3\x36\xa8\xa4\xfa\x71\x5b\x59\xf1\xec\xdf\x4c\xf6\xbf\xaf\xb4\x7f\xb3\x2d\xdf\xf9\xea\xaa\xa2\xe7\x9b\xe6\x55\xef\x97\xd1\x5f\xb0\xba\xe1\xfd\x9e\x4f\x47\x7f\x19\x0d\x83\xe1\xbf\x43\xe4\x97\x9d\xe9\xe5\x9d\xf9\x5c\xe4\x7c\xce\xbe\xfb\x6e\xd7\x88\x86\xdf\xe9\x5f\xed\x09\xee\x7d\x2f\x67\x6f\xdf\x9a\xbe\x9d\x2d\xe7\x30\x29\x8a\xd3\x9d\xee\x31\x5a\x48\xe1\x0e\x38\x26\x98\x4d\x9b\x61\x97\xb4\x93\x5d\x06\x93\x75\x5e\x6c\x9b\x06\xf1\x9e\xcd\xfa\xd6\x06\x7e\x29\x35\xc3\xe6\x2a\xc5\xa1\x70\x80\xfc\xa0\x67\x62\x78\x8a\x9d\xec\x29\xc9\xbc\x02\xc7\xd7\x63\xe1\x50\xd8\xd8\x37\x66\xc4\x06\xe3\xed\xd5\x34\x05\x7c\x6d\x3d\x7d\xc5\xdc\x07\xff\xc6\xa1\xa0\xbf\x84\xd1\x7d\xdf\x41\xe4\x78\x92\x8e\x30\xdc\x01\x2f\x74\x7e\x4d\x0c\x2e\xd9\x4c\xbf\xaa\xaa\xd9\xe8\x9a\x5f\x7c\x8a\xcb\xb7\xed\xbc\xe2\xc5\x32\xfb\xb3\x27\x35\xeb\xcb\x59\x74\x12\x05\x75\xe9\xac\x3e\x44\x29\x98\x66\x69\x8a\x1b\x0f\xf3\xb3\x4b\xed\xf1\x87\x77\x2f\xcd\x53\x50\x0c\xc4\x3e\xc7\x9e\x5d\xa9\x9e\x0d\x98\x03\x7f\x8a\x55\x7d\xcb\x6e\xcd\x80\x59\xba\xf0\x5b\xa5\x5b\xa9\x84\x64\x77\xc5\xae\xfa\xf2\x5c\xd9\x79\x4a\x3d\x1e\x33\xb4\x6b\x8e\x72\xae\x25\xf3\x9f\xb3\x22\x16\xcd\xa6\x70\xc1\xca\xaa\xb2\xb2\xa5\x65\x14\xa7\x05\x9d\xf4\x19\x25\x3c\x6d\x1d\xcc\x27\xbc\x2b\xa1\xfb\xe2\x00\x5f\xb6\x55\x0a\x3b\xd6\xad\x6a\x5e\x55\x03\x32\xc8\xa5\xf6\x32\x37\x05\x89\xd4\xd4\x54\x3d\x69\x7e\x92\x9c\xfa\x7c\x5b\xd3\x5d\xd7\x7b\xe4\x6e\x7d\x8b\x26\x43\x5d\x7e\x19\xcf\x49\x29\xd5\x01\x25\xb3\xdb\x88\xf2\x42\x69\xc9\x02\x83\xf1\x8e\xd1\x9a\xc0\x27\x56\x4e\x36\xca\xe1\xf6\x0d\xed\x5c\xec\x82\xb1\x82\x3d\x1b\x6c\x6d\xd3\xde\xa0\xdc\xf6\xca\xb0\xda\xaa\x22\x9e\x4b\x72\xd6\x77\x6e\x93\x2e\x8e\x5d\x75\x2e\x9d\x6c\x1f\x84\x92\xfa\x1e\xad\xaa\x81\x34\x48\x7b\xc1\xc5\x51\x86\xcf\xa4\x09\x4f\xff\x17\x58\x4b\x3e\x11\xdd\x5b\x55\x55\xa7\x11\x8c\xb1\x6b\xd7\xbd\x20\xd7\xc0\xe9\x64\xcf\xf3\x4b\x99\xab\xdc\x96\xab\xa4\x13\xcf\x9f\x4e\x7e\x27\x53\xe0\x74\x4f\xfc\x29\xa9\x3f\xf6\x1f\xb8\xb9\xf8\xda\xeb\x9b\x9f\x6d\xe3\x9a\x1a\xc3\x92\x66\xda\x50\xe0\xb1\x1e\x23\x8c\x0f\x51\x30\x65\xe0\x3f\x88\xab\x6a\x60\xd4\xc5\xd8\x23\xd3\xe8\x89\xe7\xc7\xe2\x21\xeb\x6b\x20\xfa\xc5\xd8\xaa\x66\xa5\xa8\xda\x51\x96\x45\xa8\x4c\xb2\x57\x4f\x34\x5a\xa7\x52\xcd\x97\xea\x4c\xe5\x46\xa6\xa2\x9b\xe9\x28\x0a\xf2\x90\x31\x56\x04\x79\x78\x44\xf3\xe1\xd0\x2c\x82\xc9\x94\x13\xf1\x12\xc4\x2b\xea\xab\x7c\xd7\xa2\xc1\x85\xfe\xed\xf9\xe3\x1a\x56\xd4\x5f\xd5\x90\x71\x4d\xec\xfa\xef\x8f\xf0\x4a\x02\x9d\xf9\xa4\x47\x1f\xb5\x3f\x31\xa4\x73\x63\x2a\xfa\x96\xa0\xbe\x38\x40\x14\xd6\xd2\x1c\x4e\x7e\x03\x87\x7d\x77\xcf\x13\x72\x0b\x6c\x10\x65\xd7\x5d\xa2\xb2\xbb\x34\xca\xee\xab\xaa\x1a\x5c\x49\x92\x53\x4a\x5b\x34\x4b\xfd\x5d\x52\x8a\x3a\x61\xb9\x9b\x0c\xc5\x2c\xa5\x43\x65\x55\xf5\x50\x59\xb1\x50\x35\x29\x52\x97\x21\x4d\x82\x21\x33\x46\x2d\x68\xe9\x46\xeb\x66\x88\x4a\x58\xc9\xf1\x09\x78\x48\x0d\xea\x2e\x0e\x95\xa6\x47\xbd\xc3\xfb\x85\x61\xba\x50\xf6\xd6\x19\x47\x65\x41\xa7\x88\xcf\x7f\xbc\x63\xbc\x4d\x1a\x2d\x6a\xc7\x84\x26\x84\x8c\xc5\xae\xfb\x56\x0e\x93\x9d\x13\x3a\x39\xe9\x24\xc6\x9b\xa9\xc1\x52\x1f\x27\x76\xba\x47\x96\x6c\x92\xf9\xb6\x4e\xa3\xaa\x06\xcb\x49\xe7\x88\x5c\x52\x9f\x64\x3d\xa7\x4c\x39\x93\xd9\x08\x63\x0d\xcd\x63\x3e\x9b\x28\x98\x05\x1f\x55\xc8\xa2\xff\xbc\x98\x46\x2b\xde\x63\xf2\xdf\x31\x90\x93\x97\x12\xf2\x93\x3c\xcf\xda\x90\x54\x1b\xae\x1a\xa7\xb7\x69\x19\xdd\xec\x62\x4e\xd8\x5d\xa7\x39\x9f\x66\x97\x69\xfc\x27\x9f\xed\xf2\x9b\x55\xce\x8b\x22\xce\x52\x7f\xd7\x19\xaa\x22\xd7\x69\xfc\xc7\x9a\x9f\x66\x79\x9f\x1a\xcb\x3a\x4b\x21\x19\x98\xb3\x41\x3a\x9a\xf1\x92\x4f\xcb\x17\xeb\x55\x12\x4f\xa3\x92\x17\x30\x65\x8a\xa2\x9e\x96\x42\x70\x41\x8d\xb4\xbc\x90\x15\x12\x8c\x78\x41\x3e\x51\x98\x6b\x07\x61\xc6\x31\x94\xd8\x11\x45\x16\x13\x64\x21\xea\xae\xd4\x31\x2b\xa3\x8a\x1a\xa0\xc2\x9c\x2b\x5b\x61\x54\x1e\x82\x67\xdc\x8b\xa6\xd2\x19\x97\xd7\x10\xb3\x0c\x07\xff\x03\xbf\xe9\xeb\x40\xca\x1c\x07\x49\x65\x66\x71\xea\xe6\xd8\x2d\xce\x7a\x59\x55\x3d\x95\x7f\x3c\x7c\x94\xee\x6d\x1b\x16\x84\xe8\x11\x81\x36\x08\x69\x03\x82\x60\x27\x62\xb3\x39\xe3\x23\xb4\x37\x40\xc9\xf0\x88\x1f\x71\x85\xa7\xa1\x14\xed\x34\x1d\xa2\x95\xa9\xb9\xea\x3b\x94\x55\x3f\xb0\xe9\xab\x6c\x29\x62\x2e\xd6\xc6\x7a\x0e\xc7\x4d\x9e\xe6\xb1\x8c\x26\xe6\x5a\x5a\x03\xc9\xa5\x4a\x52\x52\x98\x82\xdd\x59\xb7\x2f\xfe\xc3\x31\x48\x01\xfd\xe7\x82\xaf\x67\x99\x5f\x70\x19\x16\xcb\xff\x01\x9a\xed\xe1\xdf\xa1\x07\xdc\x4c\xfc\xcd\x79\x82\xc6\x0a\xfe\x9d\x73\xe2\xf8\x9b\x37\xd8\xd2\x7a\x7d\x30\xae\xc1\xd9\xed\x79\x5f\x83\x33\x34\xc9\x39\xbf\x8a\xb3\x75\xa1\xba\xdf\xfa\xf6\xdf\xdb\x32\xd5\x35\xac\x72\xfe\x0a\xf5\x40\xfe\x1d\x5a\xba\xf4\xe9\xaa\x02\x2f\x44\x2c\x8f\xb6\x4e\x08\x78\x70\x18\x32\x22\xfe\xad\x2a\x1e\x3c\xc0\x7f\x1f\x86\x55\x65\x6f\x29\x99\x53\x1c\xd5\x70\x09\x1e\xc8\x18\x87\x87\x21\x73\xc4\xc6\x08\x0e\x43\xbc\xc5\x82\xc6\xb0\xe0\x01\xad\x95\x09\xcd\x67\x5b\xd2\xa2\x30\xe0\xa4\xe5\x42\x56\xe0\x85\xa6\xa4\x43\x3a\x51\x8d\xd3\xfb\x99\xf0\x60\x1c\x8a\x76\x3f\x08\xd9\x90\x88\x3f\x13\xd1\x62\xf1\xf3\x51\x58\x55\x1e\xf5\x0f\xee\x13\x87\x5f\x71\xe9\x14\x89\xdf\x3a\xd9\x6c\xa6\x9f\x30\xbc\xe2\x43\xf9\xed\xe3\x70\xc8\x83\x27\x1b\x19\x7c\xf1\xc7\x75\xbb\x35\xd6\xda\x5e\xa8\x6f\xe3\x0c\x44\xf5\xae\x2b\x46\x47\xaf\xb4\x1f\x46\x38\x06\xea\x16\x53\x94\x31\x11\xfb\xd0\xc7\x0e\x4d\x44\x4e\xd6\x1e\x71\x3f\x75\xdd\x5f\x65\xf6\x14\xdd\xd6\x59\x44\x52\x0c\xb5\xa8\x82\x45\xe9\x10\xea\x0e\x75\xcc\x7d\xc2\x5e\x49\xf7\xf4\x6f\x8a\x13\x33\x16\xe5\x8e\x9b\x31\x2c\x45\x8f\x0f\x42\xed\xe6\x85\x29\xf6\x6c\x1d\x52\x5a\x8b\xe5\x2c\x17\xd0\x87\x67\x3f\xf4\x78\x49\x74\x54\x89\xbd\xb7\x4a\x4a\x45\x34\xd9\xf0\x81\x18\x8c\xfb\x63\x73\x9a\x4b\x02\x41\x03\xfb\x2f\xac\x94\x4a\x51\x9a\x7f\x6d\x36\xeb\x54\x5d\x82\x1b\x57\x0d\x8c\xbf\x65\x5b\x00\x91\x8f\xc6\x84\x8d\x0f\x1d\x69\xf6\x53\xdd\xa3\xa8\xc6\x3b\x25\xbc\x17\xca\x49\x4e\x41\x0f\x51\x9b\x36\xfa\x26\xeb\xc1\x8e\x09\xd6\xe2\x6c\x5d\xdd\xa9\xd2\xd7\x3b\x14\xb7\x57\x4d\x6b\xe8\xec\xd6\x96\x35\xb5\x49\x36\xb0\x83\x4a\x0a\x20\xb9\xe5\xf1\x23\x6d\xae\xe3\x89\x38\xff\x89\xc1\xf2\x07\x62\x0c\xe2\xa1\xa0\xe4\x8e\x4c\x9a\x08\x71\x34\xf5\x75\x8e\x49\x3c\xc0\xc7\x8f\xea\x31\x75\xdd\x31\x22\x28\xe9\xd5\x95\x52\xdf\xb9\xdf\xbc\xb4\x5f\x9c\xec\x79\xbe\x73\xcf\x7e\x27\x17\x51\xb3\x02\x65\x55\xff\x56\x59\x88\xa0\x10\xb1\x59\x3b\x3f\x0a\x12\x88\x86\x44\xb4\x5b\x68\x25\xbf\x40\xe6\x86\xb7\x92\xb1\x59\x9f\xba\xec\xa1\x87\xa5\x0f\x9d\x3d\x07\x57\x6c\x97\xc2\x40\x07\x8a\x04\x09\x0a\x4e\x4a\xb3\xd2\x21\x62\x4e\x12\x15\xa5\x9d\xbe\xf7\x80\x42\xc1\x1c\x65\xb9\x87\xcd\xd0\xa3\x2b\x58\x5c\xae\xc6\xa7\x27\x08\xed\x60\x60\x9f\x28\xac\x45\x2e\x5a\xb2\x96\xed\x68\x59\x1f\xb3\x6c\xc0\x58\x34\x71\x2c\x1e\xe7\xf4\x90\xfd\xdb\xf6\xd1\xe4\x8a\x15\xe2\xd4\xd5\xbf\x43\xe0\x92\x0d\xd6\xae\x3b\x28\xe0\x82\x0d\x3c\xc1\xac\x6f\x91\x27\x67\x4a\x80\x58\x1e\xc9\x1f\x0b\x56\x1e\x2d\xd8\x22\x58\x4a\x05\x77\x31\x59\x6c\xdf\x72\x57\xbe\xe8\xf8\xa2\x2b\xfc\x0e\xbc\x9d\x19\x5b\x32\x27\x4b\x13\x74\xc4\xe3\xae\x3b\x98\xb9\x6e\xab\x37\xb5\xd9\xf2\xf1\x9c\xcc\x58\x10\x4d\x6e\x2d\x16\xef\xdf\x8e\xc4\xe8\xe3\xef\x10\x22\xd7\xbd\x94\x8d\xbb\x60\x64\xc5\x48\xc2\xc8\x94\x91\x39\x23\x0b\x76\x4b\x83\xf3\xb0\xaa\xc8\x22\x38\x0f\xd9\x5d\x4d\x69\xb0\x50\xb2\xd7\xeb\x17\x22\x7d\x6e\x3f\xcb\x0c\x3c\x44\x40\x4d\x41\xfe\xd0\x0a\x29\x09\xbc\x90\x8a\x3f\x07\x21\x2c\x84\x50\x7c\x6b\xd9\x81\x05\xab\xf0\x68\xc1\x86\x43\x21\x2b\xbb\xae\x18\x95\xaa\x22\x17\x6c\xc5\xc6\xb4\xaa\x66\x12\x83\x05\xc7\xa9\x3d\x10\xae\x3b\x1c\x5e\xb8\xee\x42\x22\xaf\x4d\x03\x1e\xb2\xe0\x25\xac\xe0\x22\xd4\xf0\x05\xb6\x51\x92\x28\xcf\xee\x54\xf9\x1f\xea\x14\xe0\xad\xfa\x85\x54\x46\x90\x2f\x75\x43\x30\x85\xcf\x4c\xf7\x00\xa7\x7b\xd0\x9a\xee\xaa\x1a\x0c\x87\x17\x55\x85\xbd\x90\xcd\x5f\xfc\x17\x9a\x2e\xc6\xe6\x22\xa4\xb0\x18\x88\xe1\xa2\x47\xf4\x48\x49\xec\x17\x7b\x2c\xa6\x52\xa5\x73\xf1\xbf\x72\xc6\xc6\xae\x7b\xb1\x9f\x9f\xb0\x71\x5d\xf7\x30\xd9\xe6\xb2\x02\xe5\x5e\x14\xcb\x0a\x1c\x19\x44\xc3\x95\x92\x4f\x11\x74\xfa\x65\x8b\x0c\xce\x3a\x55\xb7\xde\x7c\xb6\x2b\x0b\x90\x32\xbd\xde\xe7\x71\x70\x1e\x4e\x84\x94\xe8\xc7\x0d\xbe\x3b\x49\x59\xc0\x81\x83\xe3\x40\x19\x82\x5d\x57\xc7\x9e\x9f\x74\x4d\xa8\x26\xb6\x39\x00\x6f\xf9\xa2\x88\x13\x17\x76\x69\xc3\x08\x80\x07\x39\xfb\x9d\x70\xc8\x82\x28\xa4\x21\x1b\x90\x54\x9c\xd6\xf1\xa9\xa6\x5b\x42\x38\xc0\x18\x52\xf1\x36\x16\x42\xa0\x1c\x18\xff\x2e\xcd\x4a\xbf\x68\x2b\x17\x35\x5a\x11\x28\xb7\xf0\x62\xd3\x9c\xa9\xb9\xb0\x11\x63\xd1\xee\x80\x20\x67\x71\xd3\x89\x0c\x22\x96\x6b\xad\x40\x0c\x41\x88\x20\xeb\x2d\x1b\x2f\x92\xb1\x28\x28\x42\x29\x90\x14\xa2\x37\xa5\xf8\x93\xd1\x76\x5f\x00\x41\x6c\x35\xdf\x45\xc9\x05\x72\x41\x3d\x45\xc9\x19\xa4\x14\x30\x11\x1f\x07\xa9\x5c\xcf\x75\x4d\x61\x11\x15\xdd\x2e\x6e\xb5\x4d\x51\x46\x95\xd6\xa9\xbc\xa6\xa0\x0f\xe5\x5b\x4a\xe1\x5d\x81\x07\x36\xcb\x25\xa5\x7d\x9e\x41\xe3\x93\x34\xe5\xb9\x38\x5a\x61\x6c\x6b\xda\xf0\x38\x2e\x78\x9c\xa8\x36\x89\xd2\xcb\x2d\x55\xfe\x53\xc9\x89\x28\x1b\x6c\x5b\xbb\xf8\x3d\xae\x5c\xd8\x68\x62\x87\x2d\x6c\x18\x05\xed\xcc\x32\xc4\x8a\x64\xcb\x49\x39\xc2\x82\xba\x16\x7e\x37\xcb\xc4\x17\x2f\x44\xfd\xdd\x77\x32\x5d\x31\x02\x92\xb2\xb4\xb3\xe4\xa5\x01\xce\x18\x6f\x03\x4d\xb7\x91\x55\xd7\xd7\x8b\x38\xe1\x84\xb4\xb5\xa6\xb4\x6b\x99\x45\x1b\xa5\x69\x4d\xa1\x8c\xf2\x96\x67\xb5\xd1\x22\xf3\x51\x92\x4d\x23\xa9\xc2\x6d\x7e\x8b\x0d\xb9\x68\x5d\x48\x6b\xf8\x27\xac\x23\x9e\xd5\x90\x67\x59\xaf\xa7\x36\x67\x8c\xcd\x6a\x40\xef\x97\x6d\xef\x57\xa3\x08\x83\x8d\x29\x4d\xb5\xeb\x92\xc1\x4a\x54\xf9\x0a\x5d\x66\xaa\xe6\x37\x52\xdb\xc1\x80\x68\x08\x17\x3e\x5a\xe4\x7c\x5e\x55\xff\xe6\xa3\x32\xba\x40\x23\x33\x74\x14\xc6\x1b\x0b\x7f\xc5\xc9\xc0\xa3\xa0\x6f\x30\xf0\x79\x4c\x41\xdd\x6e\xf5\x4a\xe1\x9f\x35\xeb\xb2\xac\xc9\x44\x2b\xf8\x48\x7b\xfb\x54\x8e\xbc\x8e\xb2\x5e\xe9\x1b\xbe\x1a\xf4\xaf\x7e\x11\xdd\x36\xe6\xb2\x9f\x4c\x01\xd8\x29\x50\x46\xde\x4d\xa9\x7c\xb9\x2a\x37\x83\xf1\x7e\xf1\xc0\x8f\x28\xa5\x7a\x49\x1c\x3f\xea\xf3\xf1\x94\x6d\xe8\x69\xed\xc0\x30\x87\x11\xd6\x8e\x37\xbe\x0b\x1e\xcd\x78\x6f\x64\xe8\x7b\x6a\xc3\x99\x31\xa5\x35\xe0\x00\xf6\x65\xfe\x5b\x4f\x66\x69\x36\xf7\xdf\x9c\x26\xcb\xf8\xce\xe0\xfe\x34\x49\x65\x0d\xe8\xc5\xb1\xe9\x07\xdb\x2d\x6a\x5b\x9d\xae\xeb\x94\x0a\xd5\x45\xc3\xf9\x10\x79\x66\x20\x25\xeb\x1e\x4f\x50\xfe\x45\x9f\x5e\xfd\x4d\x57\x0d\xa8\x9d\xf1\x67\x7c\x33\x86\x4e\x30\x0e\x91\xc4\x75\x5e\x5b\xda\xce\xa0\xdc\xf3\x44\x1e\xfe\x47\x37\x47\x73\xee\x09\xd2\xe3\xf1\x24\x1d\x96\x7e\x8a\x39\xaf\x78\xba\x59\x9a\xe5\x06\x77\x94\x1e\x97\x47\xe9\x90\x1d\x50\xde\xb5\x3c\xe0\x35\x85\x6c\x36\xfb\xdc\xe7\xde\x17\x3e\x4f\x36\xba\xd2\x76\x2c\x35\x6d\x3d\xda\xdb\x13\xf2\xcb\x91\x2e\x26\x6f\x15\x73\xf9\xd5\xc5\x0c\x87\xf9\x71\xd9\x5f\x4a\x5d\x53\xb3\xbe\xd3\x72\xc1\xac\xd5\xfe\x07\xdc\xe5\xd1\x2c\xce\xfc\xc1\x58\x52\x8f\x8b\xec\x46\xfc\x9e\xc7\x32\xc4\xfd\x2a\x2a\x8a\xeb\x2c\x9f\x89\xdf\xf1\x32\xba\x44\xd0\x13\xda\xc8\x52\x65\xc8\xe6\x9c\xa8\x3b\x8a\x72\x37\x4e\xef\x8a\xf5\xc5\x32\xc6\xa0\x18\x12\x26\x70\x23\xff\x42\xe6\xd7\x56\x89\xb7\xbc\x0d\xcf\xcd\xdb\x68\x4b\x63\x68\x39\x44\x38\xce\x51\x79\x9c\x1e\x95\xc3\x21\xcd\x87\xe8\xd3\xdf\x86\x86\xce\x9b\x92\x2e\x79\xdb\x1b\xa7\x1c\xcd\xe2\x1c\x62\xc1\x38\xf8\x4d\x29\xa4\xa9\xaa\xca\x21\x62\xa9\xeb\xda\x5a\x35\xc6\x58\x06\x05\xbb\x69\xee\x45\x4a\x49\x78\x26\xad\x33\x5a\x6c\xb4\xac\x25\xde\xa3\x28\x81\xbf\xb4\x6e\x17\x23\xa3\x67\x54\x5f\x34\x7c\xea\x73\xe7\x3d\x21\xfb\x16\x78\x93\xb4\xde\xac\xa3\xa7\x12\xd7\xe5\xaa\x14\x73\x8b\xd8\xd2\x66\x7e\xa6\x7d\xf1\x5c\x8a\xe8\xa5\x14\xd1\x4b\x23\xa2\x97\x1d\x11\xbd\x6c\x8b\xe8\x10\xbb\x6e\xfc\x19\xd3\x63\x2a\x6b\xad\xaa\x72\x47\xbb\x48\x90\x84\x4d\x83\x4c\x1e\xab\xec\x23\x09\x63\xac\xd0\xe3\xb4\x08\x0e\x42\x26\x4e\x5d\xa2\xf3\x22\x37\x5b\x00\xa6\x6d\x76\xb0\xe1\xf8\x66\xbe\x2f\x5a\xe6\xad\x8d\x30\xde\x1a\x6a\xdb\xbe\xb6\x11\x3c\x51\x07\x8e\xd8\x4c\x41\x1c\xaa\x7c\x3d\x0c\x44\x62\x1d\x9b\x0a\xcf\xb9\xad\x39\xb0\x45\xdc\x20\x84\x82\x8d\x61\xdd\xac\xdc\x84\x49\x77\xec\xd2\x40\x58\x90\x8c\x71\x25\xe7\xa6\xae\x3b\x48\x49\x86\xe5\x54\x15\x89\xb4\x86\x1e\x12\xbc\xd3\x16\x0f\x05\xb5\xb1\x21\x4c\x13\xae\xad\x26\x58\xf2\x70\xee\xba\x03\x21\x8c\x23\xec\xff\x35\x27\x39\xc5\x29\x1b\xc4\x32\x2d\x16\x69\x22\x3f\x6d\x59\x1f\x2b\xaf\xe7\xce\x62\x0c\x61\x25\xfe\x99\xb1\x48\xf7\x65\xc9\xb2\xaa\xda\x4e\x92\xc6\xb8\xc7\x8c\x1f\x7e\x8c\x7e\xf8\x52\x92\x0e\xf2\xd0\x0a\x64\x97\xd6\xa4\xac\x2a\xe7\xbe\x03\x45\x73\xb9\x1f\x14\xa1\x5f\xe0\xc1\xe0\x96\x0d\x78\x55\x0d\x32\xd7\x2d\x27\x4b\xff\x9c\x93\x25\x2c\x80\x63\x0b\xe1\x8a\xa5\x93\xb8\xaa\x48\x36\xe1\xfe\xac\xaa\x72\x3a\x09\x42\x3f\xf2\x6f\xd1\xf2\xde\x75\x53\x72\x0b\x57\x32\x67\x8e\x67\xdd\x84\x9d\x73\x72\x05\x2b\x0a\x39\x49\x40\x4c\x8f\x78\x37\x65\x3a\x06\xdf\xd1\x14\x8f\x1e\x73\x96\x04\x53\x9c\x92\xab\x60\x15\x4c\x43\x71\xfa\xb8\x55\xbf\xe6\xd4\x32\x23\x8c\xab\x4a\xa2\x79\xa9\x89\x4f\xc4\x10\x4d\x8d\x69\x84\x29\xee\x4a\x16\x97\xc8\x49\xbc\x0d\xa6\xa2\x9c\x9d\x18\xf9\xa8\x34\x29\x4b\x60\x2d\xc3\x64\x6c\xff\x9a\x24\x2c\x9e\xfc\x4e\x32\x98\x53\x7f\x21\x92\x4e\xf6\x3c\x84\x87\x4a\x44\xfb\x22\xf1\x67\x4e\xa9\x52\x20\x5c\x61\x4f\x19\x63\xd1\xe4\x4a\x5f\xea\xcc\x40\x17\x4d\xfd\x2b\x0a\xf1\x44\x35\x20\x82\x2b\x58\x53\x5f\xbb\xbf\x44\x70\xd5\xb2\x17\x7f\xc9\xbb\xf1\x0c\xe3\x36\x10\x42\x3e\xd2\x37\x18\x01\xaa\x8d\x85\x10\x80\xb8\x9e\xe2\x7c\x6d\x5e\x39\xbb\x4e\x08\x6b\x16\x4d\x3c\x7f\x0c\xd3\x7e\x4f\x3f\xe9\xfc\x5e\x43\x01\x42\x8c\x9d\x6f\xc9\xf4\x3b\xc6\x2d\x10\x07\x22\x95\x71\xc1\xec\x60\x32\x56\x98\x95\x41\x24\x96\x7e\x55\xa5\x03\xc6\x12\xb1\xa7\x48\xc9\x52\xda\xac\xb2\xa9\xca\xee\xcf\xd5\x8f\x06\xb2\x47\x1e\x19\xe3\x3a\x3c\x5a\x1f\x67\x47\x6b\x05\x36\xd3\xee\xeb\x5a\xf5\x95\x2e\x58\x70\xc9\xc9\x05\x27\x0b\x0a\x29\x0d\x1b\x6a\x27\x3e\x90\x7a\x71\x2b\xbb\x1a\x67\x79\xa5\x26\x52\xd5\x8d\x35\xa5\xc1\x79\x28\x47\x3a\x66\xc3\xe1\xfa\x28\x3e\xce\xc4\x0e\xb6\xab\x8c\x55\x19\x08\x3b\xa1\xb4\x21\x62\xfb\xaf\x4f\x3c\xd7\x95\x0d\xc0\x9f\x82\x7f\x1a\xad\xe5\x7a\xcf\xa3\x0a\x97\x8d\x28\x18\x6e\x67\x57\xde\x56\xac\xf7\x0e\x64\x89\x13\xe7\xbe\xe3\x3b\x4e\x6d\xc1\xc7\x68\x37\xa5\x14\xd6\xc7\xb1\xeb\xbe\x6c\x8a\x5c\x43\x2c\x48\x89\x68\x9e\x48\x35\x8a\x50\x93\x8a\xec\x9b\xd6\x0b\x2d\x12\xe9\x8b\x44\x6c\xa1\x01\xfe\xb6\x91\xa9\xf5\x38\x15\x8d\x58\xd2\xd2\x98\xa0\x4e\xfe\x96\x43\xc4\x32\xc1\x65\x3e\xf1\x34\xfe\xb3\xeb\xb0\xaa\x74\x3c\x36\x6e\x03\x7b\xa7\x15\xfc\x82\x97\x18\x13\xcf\xc9\xd8\x9f\x9a\x4b\x53\x14\x5a\x0a\xc6\x61\x8d\x3b\x51\x34\x40\x5f\x87\x1d\x15\x4a\xf9\x19\xa1\xf7\x83\xeb\x0e\x48\xcc\x7e\x91\xae\x89\x05\x45\xac\x20\xd7\x25\x05\x2b\xf4\x00\x88\xf5\xaf\xf6\x58\x55\x15\x14\xd6\x8a\x88\xb3\x20\xa4\x14\x52\x36\xf0\x80\xc4\xec\x0f\x53\x82\x20\xfb\x2c\xd6\x5e\x5a\x90\xc9\xec\x6a\x92\x52\x40\xc8\x39\x2c\xd4\x9a\x94\x5d\xb4\x3d\x6c\x2a\x35\xaa\x73\x69\x35\x2c\xda\x4d\x45\x3b\x7f\x08\xa2\xd0\x6a\x6a\x12\x44\xa1\xec\x80\xf8\x25\xe6\xaa\xaa\xbe\x5c\x79\x04\x6a\x75\xfa\xf1\x96\x4a\xd1\xd8\x25\x95\xc8\x34\x26\x38\xc5\x44\x3b\xca\xfa\xc5\xa4\xb9\x06\xa3\xfe\x3b\xc2\x61\x4d\xcd\xd0\xd7\x50\xb0\x4c\x1a\x10\xc5\xc9\x96\xe9\x14\x93\x92\x49\x5e\xfa\xcc\x9a\xcc\x41\x21\x67\x46\xde\xd8\xa0\x93\x20\xa4\x0d\xc7\x49\x91\x78\x16\xec\x25\x27\x65\x90\x86\xb8\xb7\x26\xb1\xe6\xa2\x7e\xa6\x7f\x1d\x91\x82\x3d\x6b\x5d\xe3\x58\x3e\x61\x46\xe3\x63\x61\xca\x9c\x8c\x21\x63\x5d\x66\x09\x0a\x86\x76\x0e\x33\xb8\x85\x2b\x36\x86\x4b\xe6\x8c\x1d\xb8\x60\x99\xeb\x06\x21\x9c\x8b\xf6\x5f\xb3\x04\x6e\x04\xd3\x8c\x5d\xb7\x31\xef\x26\x82\xf3\x4d\x29\x9c\xb2\x97\x43\x26\x0f\x56\xd7\x13\xcf\x6f\x41\x3a\x55\xd5\xc8\x83\x77\xec\x46\x35\x01\x17\xec\x54\x02\x6b\x49\x1b\xa8\xa8\xaa\xa6\xf4\xe8\x72\xc0\xd8\x3b\xd7\x55\x88\x2f\x73\x76\x13\x5c\x86\xf4\xe8\x72\x38\x94\x3c\xca\x75\x95\x4d\xc0\x8c\x8d\x21\xaa\xaa\xf9\x86\xe1\xd4\xaa\xaa\xc8\x82\xcc\xc5\x3c\x0f\x96\xf4\xe8\x96\xf1\x60\xa6\x0d\xda\x6f\xc9\x5c\x7c\xb4\x82\x82\xd2\x3b\xb5\xac\xe7\x54\x69\xad\x45\x63\x5e\xb2\x53\x5a\xa7\xae\x4b\xc8\x9c\x0d\x6e\x45\x65\xae\x7b\xb5\xb7\x07\x19\x46\xaa\x93\xd9\x29\x3a\x5d\x0e\xd9\x25\xa4\xae\x2b\x9a\x7b\x65\x5a\x74\x74\xcb\x4a\x55\xdb\x2d\xb9\x80\x73\x31\xb0\x16\xab\xbd\x3a\x19\x4b\x75\xf5\xa5\x98\xd8\x8b\xe0\x32\xac\xaa\x73\xfc\x97\x88\x3f\xec\xb9\x34\x41\x59\x53\xba\x73\x2e\x78\xdf\x39\xad\x35\x43\x5b\xc3\x39\x85\xa9\xeb\x0a\x19\xe2\xdc\xcc\xa2\xeb\x5e\x19\xd8\x20\x41\x31\x5b\xb6\x19\x64\xdd\xd8\x3e\xc8\xae\x41\xc2\xae\x29\x5c\xd4\x8d\x17\x45\xc1\x49\x46\xfd\xac\x26\x99\xa0\x86\xd4\x98\x03\x30\xae\x3f\x2d\x6a\x58\x37\x86\x02\x6c\x53\x1f\x2a\x05\x45\x03\x30\xb3\x2d\x1e\x01\x86\xaf\x77\xdd\x88\x70\xb6\x30\xd5\x08\xd1\x03\xe5\x1c\x96\xa2\xab\xb6\x87\x6a\x26\xb5\x29\x91\xf9\xac\xd9\x4a\xc8\xd8\x2b\xeb\x2a\xd7\x38\xd2\x9e\x1c\xb8\xae\xf3\xfa\x05\xc6\x2d\x48\xd8\x3a\x18\x87\x54\x1d\xee\x9f\x76\xdc\x1d\x97\x62\xb1\x1a\x0e\xb4\xc6\x6b\x77\x64\x7a\xd2\x05\xbb\x64\xc4\xb8\x6b\x90\x44\xb3\x32\x9b\x62\x49\xf5\x67\x49\xf5\x3d\x44\x13\x7b\x62\x67\x81\xd7\xd2\x2d\xad\x1e\x34\xdc\x64\xad\x29\x93\x3c\xdb\xe9\xbe\xa1\x98\x94\xb1\x1f\x46\x36\x4c\x85\xf6\xf4\x9d\x8c\xfd\xb5\x81\x4c\xda\xdb\xc3\x3d\xb2\x0e\xb2\x10\x6c\x36\x8a\x08\xa4\xd8\x07\x79\x98\x9a\x33\xd9\x05\x25\x67\xc5\x6c\xfe\xb9\x9e\x28\xaf\xe2\xb5\x16\x75\xfa\xbd\x8b\x95\x17\xf5\x5a\x0b\x5f\x19\x78\x14\x06\x84\xb3\xd8\xd8\xcd\x5e\x71\xb1\x5c\xbb\x2e\xdc\x62\x61\x40\xaa\x6f\x83\x94\xba\x74\x51\x55\x05\xe1\xb0\xa2\x94\xc4\x68\x44\x05\x29\x0c\xca\xaa\xfa\xbc\x87\x33\x42\x6e\xd9\xa6\x42\xec\x5c\xbb\xcb\x3a\x54\x1b\x0a\x29\x8b\x5d\x74\x3c\x3a\x87\x4d\x73\x23\x36\x18\xcc\x61\x41\x28\xb4\xad\x38\xb7\x78\x5c\x79\x9f\xb1\x89\xfd\x8c\x03\x71\x8f\x31\xbd\x39\xc1\xf5\xd9\xd4\xff\x45\x1a\xd0\x3b\xe0\xfc\x45\x2a\xa6\x1a\x9d\x60\x47\x23\x25\xf2\x0b\x7e\x59\x55\x89\xd2\x4f\x55\xa8\x51\x5d\xf0\xf8\x72\x51\x56\xd7\xf1\xac\x5c\x38\xd0\x3d\xc6\x48\x96\xd6\xef\xa5\x55\x82\x63\xae\x79\xdb\xe7\xdd\x89\xe7\x1f\x48\x37\xba\xc6\x88\x6d\xc3\x4c\xbb\xb7\x5f\xa8\x85\xdb\x47\x0f\x0d\xab\x27\x6d\xfb\x7c\xdc\x04\x0e\xc2\xf9\x39\x5f\xe8\xb4\xcc\x6a\x7a\xad\xbe\xec\xed\xa4\xeb\x7e\x59\x05\xd8\x0c\x84\xf6\x77\x44\x5b\xa9\x6d\x53\xa6\xb0\xe7\x3a\x6d\x6a\xcc\xec\x55\xb3\x5e\x6f\x34\x08\x0f\x8e\x3b\xf6\xd8\x4b\xad\x70\x50\x86\x93\xce\x50\xfb\x88\x8d\xd6\x6f\x05\x98\x5b\x56\x80\xb9\x6d\x05\x48\x21\xe3\x35\xe1\x74\xe7\x1c\xb7\x3b\xbb\x41\x70\xc5\x55\xce\x6e\x1a\x5b\x2e\x95\x14\x38\xbe\x23\xc1\x1a\x57\x8d\x3c\x7a\x6e\x5b\xef\xe9\x07\x76\x63\xa5\xc2\xb9\x44\xf2\xbd\xd1\x36\x72\x70\x2e\xdd\x63\x5f\x64\x53\x76\x23\x7f\xc2\x79\x63\xd1\x79\x63\x7e\x8a\x7a\xd1\x40\xd1\x58\xc4\xde\xa8\x04\x34\xc3\x3c\xdd\xc0\x96\xe9\x80\xd3\x19\x0b\x92\xf4\x48\x08\xe4\x12\xe5\xf2\xe9\xc0\xb6\x98\x37\xda\x9f\x26\x49\x0b\x06\xe7\xe8\x8c\x54\x90\xd4\x20\x0c\x2a\x04\x3b\xc3\x06\xf3\x1a\xde\x6d\xc5\x12\x0b\xc2\x1e\x4d\x7c\xd7\x8f\x9e\x0f\x50\x5f\x9d\xea\x92\x2d\x7b\xba\x67\x7a\xa4\x91\xe8\xb6\x08\x7b\xa3\x21\xfc\xd4\x86\x49\xfb\x4a\xdb\x9f\x0e\xe4\x9b\x68\xef\x5b\xb6\xff\xf1\x98\x04\xd1\xde\x9f\x61\xf0\xf1\x6c\xff\x6c\x7c\xe2\x23\xa8\x58\x79\x96\x9f\xa5\x67\xf3\xf0\x3e\x0d\xda\xcf\x67\xfb\x93\x13\x32\xf1\x8f\xcf\xf6\xcf\xbc\x93\x8a\xde\xdb\x8f\x9b\x56\x7d\xe8\x18\xdd\x2c\x49\x49\x27\xe7\xa3\xcb\x9c\xaf\xda\x52\x65\xde\xd8\x7c\x68\x60\x47\xc8\x01\xed\x6d\xd3\x9a\xfa\x0d\xcb\xed\xfb\xba\x7d\x40\x56\x9f\x6c\x80\xb3\x94\x9f\xfd\xb4\x41\x54\x14\x67\x67\x55\xc6\xb9\x3a\x30\x68\xa0\x45\xfd\xbc\x05\xca\xa8\x0c\xc6\xa1\x75\x4b\x46\x38\x73\xfc\x34\x2b\x09\xda\x46\x51\x87\x82\x54\x2e\x6a\x0e\x87\xd6\x2f\x76\xc7\x50\x50\xe8\x18\x68\xa3\x35\xd2\x24\xc8\x43\x3f\x08\xfd\x76\x16\xc2\x41\xf5\xa8\xec\xeb\x51\x7b\x85\x21\x54\xb0\x05\x6d\x4b\xee\xd0\xc0\xb2\xc7\xd6\x0e\xf2\x16\x68\xaf\x0c\x4e\xb1\x63\x99\xa1\x36\x70\x37\xad\xc8\x01\x16\x86\xb1\xd8\x2f\x6a\xe4\xac\x6b\x0c\x3c\x8f\xb0\xf1\x51\x79\x9c\xa3\x6e\x3a\x9e\x93\x66\xb3\x93\x38\x28\x43\x19\x36\xac\x51\x60\x52\x63\xb1\xdf\xae\x20\x08\x29\xd8\x25\xc9\x71\x21\x1c\xb0\x10\xcb\x39\xf2\xc4\x9b\xd8\x64\x89\xa4\xd4\x4f\x8d\x2d\x5e\x9f\x6d\x5a\xbb\x9e\x0f\x0a\xbd\x19\x45\xc8\x81\x47\x11\xfa\xb5\xf7\x02\xeb\xb3\x1f\x8e\x29\x22\xaf\xf6\xdd\xa9\x0d\x54\xce\x4d\x6b\x38\xd7\x7d\x66\xc4\x36\x31\xa0\xbe\x69\x85\x76\xba\x56\x08\x8d\xcf\xe1\xbd\x84\xf0\x3a\x2b\xee\x93\xe3\xe0\xec\xfa\xec\xb7\x70\x78\x42\x83\x8f\x27\xe1\xfd\xea\x2f\x16\x8a\xd7\x11\x31\x38\xe3\xbd\x0b\x38\x86\x0c\xd9\x4b\x6b\x5a\x8d\x10\xfd\xbc\xa7\x8d\x4a\xca\x8d\x99\x73\x2c\x15\x26\xe3\xd0\x75\x9d\x13\xf9\xbb\x01\xba\x0a\x1b\x0c\xf2\x13\x76\x38\x09\xa4\x6e\x07\xad\x10\x42\xff\xbd\x81\x32\xaa\xaa\x41\x1c\x88\xcc\xda\xa4\x79\x80\xd7\xfe\x12\x50\x7c\x22\x8e\xb2\x29\x55\x13\x6d\xc2\x83\x34\x30\xcf\xa5\x79\x87\x2e\x22\x1a\x10\xa9\x64\xa5\x1d\x40\xf8\x7c\x22\x36\xa9\x2f\x38\x4f\x83\xf7\x0d\xe7\x42\x34\x2c\xb8\x10\x37\xf0\x4b\x28\xb5\x41\x18\xee\xcc\x1e\x98\xa6\x1c\x67\x15\xde\xca\x29\x8a\xa5\x2d\x54\x17\xda\xb8\xa4\x0d\x60\x7d\x49\x97\x32\x4e\x52\x1c\xd2\x89\xfa\x41\x4a\xf1\x24\xbb\x82\x96\x87\x31\x94\x36\x28\x2a\xc6\xd3\x52\x32\x6e\xc6\xf2\xae\xcb\x76\x1c\x1c\x84\x4d\xfc\xa5\x71\xc8\x32\xb0\x36\x2e\xf3\x64\xfc\xbd\xba\xc5\x12\x3e\x98\x18\x26\xd2\x1a\xa4\xf5\x81\xdc\x7e\xfe\x52\x2c\xb9\x86\x63\x8e\x30\xb6\xf1\x44\xfd\xc5\x95\x48\xce\x05\x6d\x34\x20\xb9\x44\x96\x43\x6b\x6a\xa9\xac\xc4\x5a\x83\xe7\xec\x9c\xe4\x72\x99\xfe\x2c\x17\xa9\x94\xc1\x8b\x6a\x95\xf3\x2b\x32\xf1\x7f\x49\xcb\x38\xa9\xd0\x21\x78\x1f\x7e\x62\x77\x68\x42\x96\xf3\x14\xaf\xda\xa4\xe9\x47\x81\xe1\x04\xf8\x0d\x5e\x97\x89\xcf\xda\x21\x05\x7e\x6f\xd8\xad\xc5\xdb\xbd\x0e\x6f\x3f\x32\x17\x7d\x2d\x1a\xb8\x88\x8a\x3e\x2c\x78\xdd\x21\x4b\x65\xd2\x42\x2b\xef\xa7\x6d\x12\x9b\x68\x7c\xc4\x8f\xd3\x23\xbe\x41\xdf\x24\x5c\x7c\xc0\x43\x9b\xbe\xd5\x30\x4d\xb2\x82\x17\xdd\x10\x42\xb6\x57\x95\x4d\x8c\x51\xd3\x13\xb1\x4d\x4a\x2c\x85\x14\xdc\xbe\x86\x6c\x48\x8d\x80\xbe\x5c\x68\x08\x69\x90\x87\x47\xa9\xeb\xa6\x42\xe2\xe8\x78\x42\xa1\x1a\xb7\x31\x10\xf0\x3c\xd7\x25\xd1\x24\x92\x26\x27\xca\x96\xb4\xeb\x92\xbe\x85\x6f\x21\xaa\x31\xbd\xcb\xcc\xbd\x6f\x5b\x05\xd6\x05\xa7\x37\x37\x51\x2d\x7a\x9d\x51\x3f\x43\xbb\x81\x19\xbf\xe9\x35\xa0\x98\xf4\xa0\x2b\x2b\x56\x7e\x8e\x8e\x50\x72\xa5\x53\x83\x98\x8c\x64\x59\xd3\x14\x41\xb0\x7c\x45\x4c\x90\x76\xa9\x1f\x2d\xbc\x1c\x39\xe1\x79\x21\x8e\xda\x62\xf9\x3d\x4b\x12\xa2\x69\xb0\xbf\xe7\xd5\x10\xcd\x66\x7e\xaf\x6f\xd7\x06\xb4\xbf\xd5\xb3\x56\xbc\x81\x4b\x5e\x12\x0a\xb8\xec\x28\x15\xcc\x22\x9a\xcd\xbe\xef\xc6\x29\xb0\x0b\x8d\x66\x33\xa2\x41\xac\x3b\x08\xf8\x7e\xe7\x59\x2f\x56\x4e\xd1\xb4\x4b\x01\x0c\xdf\xf5\x98\x79\x68\xeb\x8a\x4d\xff\x50\xed\xb8\x65\xd3\x44\xe5\x3a\xa4\xf6\x73\x5f\x4b\x4f\x09\x07\xfb\xd2\x98\x9a\xdc\xb8\xeb\xb7\x19\x66\x77\x3f\x43\x84\xeb\xb4\x6b\xa6\x61\x6e\x3b\x38\xb4\x0c\x64\x69\x2d\x69\xc4\xb6\xbc\x5d\x63\x60\x55\xf6\xb3\x24\xd9\xda\x85\x9e\xe2\x3f\x97\x7d\x4b\x0d\x5f\xee\xb3\x5d\x0f\x76\x5a\x94\xf4\x15\x43\xd5\x35\x6f\x16\x9f\x16\xf2\xa1\x77\x5e\xde\x11\x62\x4f\x72\x55\xdd\xd5\xd4\x3a\x2d\x63\xb0\x0a\x43\x87\x7b\xbf\xb7\x0f\xd7\x18\x98\x4b\x11\xea\x9e\xcc\xe2\x5c\xe2\xc4\xf3\x1c\x41\x74\x26\xd2\x5d\x8f\xa7\x06\xad\xc8\x27\x98\xa1\xe4\xcb\x55\x12\x95\xdc\x41\x8b\x46\x66\xb2\x55\x15\xa7\x86\x55\x07\x21\x70\x1b\x7b\x12\xdd\x2a\x5a\xfb\x0e\x71\xb6\x79\x68\x07\xe4\x36\xb7\x5d\x56\x60\x8d\xb2\x11\x11\x1d\x1c\xdf\x96\xb9\xfa\x43\x8a\x37\xc2\x29\x85\xdc\x75\x37\xc8\x4b\x8e\x2a\x30\x73\x30\xc0\x18\x9c\x36\x17\x3d\x11\x24\xf3\x27\x34\x9f\x6d\xed\xf7\x98\xc2\xcf\x8d\x3a\x2a\x6e\xa2\x56\xaa\xaf\x1b\x32\x11\x53\x2d\xd9\xbd\x66\xfb\xc1\xc7\xd6\x61\x6b\x68\x47\x7d\x79\x61\x13\xc2\xe6\x46\xf2\x4d\xe3\x89\x67\xa5\xbe\xd2\x77\xe0\x6a\x3c\x10\x94\x8e\xbb\xee\x92\xa0\xdf\xae\x8c\xd2\x4d\x27\xb1\x8e\x42\x80\xf1\x12\x51\xa8\x8a\xe2\x44\xc8\xcd\x26\x6f\xb9\xe0\x69\x93\x11\x07\xd3\x2f\x95\x7a\x4e\x4a\x0d\x10\x70\xad\x53\xcd\xa9\x46\xbb\x43\x1f\xfc\x6e\x2e\x5a\xd7\xe7\xa3\xe7\x51\x92\x5c\x44\xd3\x4f\xed\x08\xa0\x9c\xf5\x90\xf6\x4d\x72\xd5\x44\x9c\x53\x94\x4d\x39\xcf\x92\xd7\xa8\x52\x85\xb6\x9d\x70\x19\xa4\x21\x13\x8c\x17\xca\x5a\x48\x32\x4d\xf8\x88\x1a\x94\x4b\xa7\x31\x14\x90\xac\x16\x6f\x56\xf6\x3c\x58\xb3\x0e\xb7\x8f\x59\x8c\x3e\xd8\xe9\x14\x1d\xeb\xd9\x60\x7c\x14\x19\x1b\x5d\xb6\xe7\x29\x86\x1b\x69\x35\xed\xd1\x70\x58\x1c\x1b\x93\x64\x8a\x36\xe6\x59\x50\x98\xfb\xce\x60\x1c\x42\x2a\xe5\x48\x3e\x2a\xca\x6c\xf5\x2e\x7d\x15\x25\x05\xc7\x1b\xb4\xac\x09\xa1\x32\xf0\xe8\x0e\x1f\x2d\xf9\x32\xcb\x6f\xf1\x8a\x6a\x20\x04\x3d\x36\xf0\x30\x24\x65\xc6\xd2\x49\x10\xfa\x18\xc4\x20\x61\x77\x2d\xd6\xd4\x58\xec\x2a\x73\x8a\xb2\x55\xf6\x9e\x07\x91\x66\xd6\x56\x2c\x55\x71\x68\xba\x53\x63\x9b\x42\x7b\x67\x2d\x49\x2e\xf6\xb4\x5c\xe6\xae\x8b\xc1\xaa\x30\x48\x48\xa6\x0d\xac\xfc\xdc\x75\x73\x73\xe2\x6d\xe4\x16\x76\x41\x72\xea\xba\x25\xc9\x69\x4d\x6b\xd2\xc4\xa3\x01\xd5\xb0\xb5\xde\x19\x35\x48\xdc\xc3\x9e\x7e\xa8\x56\x99\x8f\x61\x8b\x06\xe6\x88\xa4\xec\x7c\xa4\xa2\x2b\x90\x52\x82\xfc\x9f\xec\x79\x47\x34\xd3\x0a\xe8\x14\x3c\x0a\xe9\x31\x2b\x5c\xb7\xd8\xdb\xab\x75\xd5\x5d\xf9\xd0\x88\x1d\x4d\x71\x1c\x32\x14\x8b\x32\xcb\x2d\xb9\x63\x9d\xd9\x1a\x78\xbc\xec\x54\xc5\x2b\xad\x5f\x4f\xce\x98\x45\xf2\x66\x0f\x7d\x46\x5b\xb9\x7b\x66\x74\x90\xd5\x90\x64\xb6\xbc\xd0\x2d\x28\xad\xaa\xb2\xaa\x88\x2c\x4f\x57\x2f\x3e\xe9\x2d\x6e\x10\xa3\x21\x22\xff\x2d\x2e\x5b\x21\x3d\x1a\xce\x13\xe3\xd2\x0b\x38\xe8\x1b\x16\x75\x6b\x39\xd1\xa6\xc1\xd4\x4f\xc3\x66\x3d\x41\x59\x55\xd6\x8c\x8a\xb2\x7b\xda\x9a\x8c\x74\xa5\xdd\x28\x45\xd6\x77\xbd\xed\xcd\x6b\x43\x06\x12\x3b\x28\xcc\x0b\x3e\xe7\x79\xeb\x1b\x73\x7d\x19\x04\x4e\x9a\x95\xf1\xfc\xd6\x11\x2c\x34\xbb\xcc\x79\x51\x38\x60\x51\x23\xe2\xc8\x4d\xe6\xd0\x2d\xa9\x07\x21\x04\x4e\xce\x8b\x2c\xb9\xe2\x0e\x38\x82\x60\x76\x0a\x10\xc4\x61\xb7\xbf\x94\xf6\xab\x31\xe8\x82\x66\x8e\x2c\x15\x71\x64\xc1\x11\xd4\xf7\xbf\x5a\xa8\x07\xaa\x1c\x51\x68\x08\x39\x73\x56\x3c\x9d\xa1\x88\x10\xb3\x3b\x0c\x8a\xda\x33\x09\x79\x0d\x51\x72\x1d\xdd\x16\xbd\xb1\xb9\x90\x2b\x34\xf3\x22\xb9\xc3\xc6\x3c\x6d\x46\x86\xd4\xcb\x46\xc6\xa0\x96\x0a\x00\x21\xe1\xc4\xab\x56\x1b\xe4\x11\xca\x94\xd7\x90\x76\x3d\x91\x2d\x84\xc8\x2d\x54\x49\xf2\xfb\x25\xe1\x41\x1e\x3c\x08\x91\xa0\xca\x5f\x3b\x59\x90\x07\x5e\x18\x92\x8d\x1a\x63\x44\x13\xec\x8b\x8f\xb5\x83\x7c\xcf\xe2\x90\xe6\x27\x1e\x07\xe4\xba\x21\x42\x30\x16\x6b\x49\xb3\xcd\x91\x9a\x4d\x35\x40\xe2\x19\x03\xf4\xf9\x65\x90\x07\xe3\x70\xe8\x88\x45\xee\x84\xb2\xb2\x18\xe3\xc1\x34\x55\xd6\xb4\xa6\x20\x23\x3c\xcb\x13\xb5\xac\xad\x06\x31\x76\xb6\x51\xa4\xe5\x8c\x37\x6e\xc4\x82\xa8\x89\x19\xde\x75\xda\x90\xb9\x0b\x19\x2b\xca\x8a\x54\x05\xc9\x66\xa4\xab\x64\x47\xde\x60\x1e\x67\x54\x21\x4e\xb0\x5c\x0d\x51\x01\x6b\xf4\x48\x48\x9b\xc6\x59\x51\x1a\xc5\xf1\x40\xb9\xff\x7f\x58\x48\x5b\xfc\xdd\x82\x27\xf3\x3d\x1c\x93\x35\x5e\xe0\xd2\x9d\x04\x01\x30\xbf\x36\xc0\x1e\x32\x45\xd1\x7d\x58\x92\x84\x4e\xe2\x49\xa2\xc5\x8f\x88\x64\x90\xc2\x0b\x88\xa9\xfa\xf9\x46\x48\x64\x3e\xc9\x86\x43\xf8\x7c\x26\x93\x9a\xaa\xc9\x13\x73\x42\xc5\xb7\xf9\x80\xb1\x17\xc8\x1b\x95\xa4\xb2\x66\x42\x56\x01\x12\x57\x55\xaa\xa7\x16\x73\xcb\xa1\xa8\x6b\x98\xb2\x78\x92\xb4\xe2\x5e\xe7\xb7\x77\x09\xb1\x84\x9f\x66\x0d\x8f\xb8\x0e\x54\xfd\x63\x96\x7d\x12\x07\xe8\xfe\x37\x84\xc3\x74\x54\x08\x99\xf0\x43\x1e\x4d\xc5\x61\x76\xe8\x9d\x30\xc1\x43\x44\x03\xdf\xf4\x34\x30\x55\xeb\x0c\x49\xa8\x6a\xda\x4e\x39\x99\x12\xea\x13\xab\x96\x4b\x5e\xa2\xa8\x29\xab\x27\x76\x25\x6c\x4b\x36\x22\x5d\x9a\x79\xf9\x21\x5e\xf2\x6c\x5d\x92\xa9\x28\xfb\x33\xdb\x53\x88\x7b\xc1\x38\x0c\x0e\x43\x3c\xac\x46\x64\x0c\x1c\x96\x24\xa6\x93\xd8\x7f\x01\xbc\x35\xe4\x28\xf7\x74\x73\x96\x74\x52\xfa\x2f\xf0\xe5\xc1\xc6\xcb\x9c\x4e\x72\xff\x0d\xa5\xed\xfd\xa1\x7e\x6e\x8b\xf8\x34\x60\x82\x6f\x2b\xd6\xc0\x21\x96\x7e\x5d\xd9\xa6\x08\x99\xf6\xd8\xbb\x44\xac\x0c\x0e\x84\x2c\x58\x06\x0f\xc3\x9d\x38\x28\x05\x21\x61\x91\x68\x15\x14\xae\x8b\x3f\x5a\x36\xfb\xac\xa8\x21\x0d\x0e\xf7\x78\x18\x1c\x84\x1a\x92\x4b\xa7\x1c\xda\x29\x63\xcc\x21\x98\x31\xe8\x21\x13\x0f\x14\x64\xa1\xa5\x48\x10\x9c\x8f\x42\x16\x94\xc1\x38\xec\x0b\xbd\x2f\xdf\xb4\xe8\x8a\x90\x2f\x95\x1a\xcf\xef\x67\xa7\xed\x8f\x58\x64\xd8\x6f\x4d\x21\x36\x03\x9b\x51\xa9\x0e\xc5\xbd\x94\x41\x46\x21\xab\xe1\x7a\xc1\xfb\x5c\x33\x36\x62\xdf\xa5\xac\x84\x9c\xe9\x38\x70\x10\x33\x15\xb1\xd1\x6a\x4b\x64\xad\x39\x42\xa1\xe8\x0b\x3b\xda\x10\x78\x7a\x97\x8b\x13\x9e\x24\x9c\xe2\x57\xb7\xca\x13\x6f\xb2\x51\x87\x9f\xc2\xde\x5e\x59\x55\x91\xbd\x79\xf1\xec\x56\xd7\x18\xf8\xfb\x98\x89\x63\x9b\x38\x23\x45\x92\x82\xe3\x65\x9f\xce\x0d\x91\xda\x57\x30\x28\x29\x18\x2e\x8a\x60\xb9\xc8\x46\x09\xad\xaa\x25\x89\x83\x34\x74\x5d\xf1\xaf\x3c\x23\x99\x9b\xe1\x48\x72\x3d\x85\x25\x82\xb6\x57\xaf\x30\x37\x88\x6a\x4c\xe9\x56\xb0\xa9\x66\x51\xab\xa3\xe0\x9f\x6c\xff\x23\x79\x79\x15\x25\xd5\xeb\xb4\xe4\x79\x1a\x25\xd5\xfb\x28\xbd\xe4\xd5\x7b\x31\x72\x3c\x9d\xf2\x4a\x62\xad\x54\x68\xb6\xfe\xcb\xfb\xd7\x14\x69\xf0\xbd\xfd\x9d\x6d\xe4\x85\xd9\x36\xdf\xf4\x0e\xcf\xdc\x45\x26\x11\x53\xd4\xcf\xd1\x75\x94\xa7\x18\xa0\xfa\x4f\x85\xff\x33\x4a\xa3\xa5\xa4\xc6\x76\x16\x1d\x93\xd7\xd4\xb4\x6b\x6a\xf2\x77\x9d\x61\x39\x5a\xf2\xa2\x88\x2e\x39\x94\x92\xd4\xa0\x8a\xe2\x5c\x2a\x94\x4d\xd4\x7e\x66\xb3\xf6\x16\xad\xb1\xc9\x2a\xb2\x99\xb2\xa6\x35\x0e\xcb\x8f\xad\xb5\xd3\xf0\xc0\xef\xc5\xce\x50\x80\xe9\x1d\x4c\xe1\x17\xef\xde\x2a\x9f\xc2\x37\x59\x34\xe3\x33\x07\xbe\x17\xa4\xad\x37\xaf\x84\x13\xfe\x9e\xea\xb6\x12\x19\xf0\x54\x3e\xf4\xad\xd3\x1f\xe5\x4c\x73\x2a\x03\xd4\xb7\xc8\x61\xb7\xbf\x84\x53\x73\xce\x68\x24\x56\x13\x8b\xd0\x03\xcc\xfe\x5b\x14\x97\xbe\xfa\xdd\xda\x70\x44\xde\xfe\x4f\xf6\xf6\x54\xc1\x98\xf3\x7c\xa4\x0a\xa0\x55\x45\xcc\x03\x1b\x8c\x61\x80\x00\x0a\xae\xdb\xca\x7f\x32\xae\xaa\x1f\x3b\x9b\x22\x38\x0f\xb5\xaa\x10\xf3\x61\x97\x98\xec\x19\x38\x3a\x3e\xb8\x8c\xbb\x8d\x19\x4e\xc5\x16\xa8\x2a\x1c\x2d\x75\xba\xb3\xdf\xa0\x91\x6e\x07\x8c\x6e\x34\xcb\x4e\xa7\x79\x96\x24\x93\xd6\x44\xab\x1a\x11\x79\x77\x13\x0d\x7a\xcb\xcc\x6d\x66\xd4\xd3\x26\xb7\xce\x2f\x5d\xd3\x32\x15\xbc\x4c\x0b\x43\x3d\x2e\x08\x8c\xc9\x08\xe3\x46\x3a\x61\x17\x82\x1e\xa0\x25\xec\x6e\x2c\x0e\x55\x83\x31\xa4\xf4\x17\x2c\xb0\x80\x34\x28\x42\x18\x8c\xb1\x50\x13\x0b\xa2\x15\xb9\x12\x3f\x58\xca\xf8\x99\x11\x86\x2e\x4b\x50\xb3\x4e\x9a\xcb\x6e\x0d\xe8\x4f\x7d\x92\xb0\x12\x36\xaf\xe8\xcc\x21\xa9\xd1\x6e\xa7\x08\xb5\xa8\xae\x99\x8c\xd3\x44\x89\x3e\xc1\x90\x42\x34\xc9\xfd\x5c\x87\x49\x2c\x42\x28\x40\xbf\xb2\x1c\x25\xe2\x09\xf7\x93\x89\x6e\x07\xf5\xd7\x13\x89\xa6\x02\x29\xf5\xb3\x1a\xfe\x60\xfb\x1f\xf7\x96\xc5\xde\x3e\xfc\xc6\xf6\xf7\xa4\x5d\x00\xb5\xb5\x50\xbf\xb6\x55\xde\xa3\x32\xfb\x65\xb5\x32\x16\x05\x26\xdb\x3f\x5b\xd6\x3d\xda\x66\xec\x0f\x70\x96\xc5\x9e\x85\x85\xf3\x1b\xfc\x2a\xcd\x10\x7e\xe8\xdb\x5e\xed\x2b\x6d\x09\x95\x64\x3f\x0f\x86\xd6\x85\x77\xd3\xc4\xbf\x21\xe1\x88\x8b\x91\x8a\x11\x2a\xed\x29\xc4\xaf\xe1\xdf\x46\xeb\x78\x36\x1c\xd6\xf8\x97\x79\xf0\x37\x3b\x94\x31\xe2\x16\xf5\xa9\xc8\x03\xbb\xb4\x0e\x3a\xca\x5d\x0d\x3f\xc8\x90\xca\x36\x1a\x63\xfb\x0b\x56\xfa\x4a\x39\x2f\x43\x91\x37\x9e\xee\x60\xe7\x03\x65\x6c\x5c\xc2\x34\x4b\xe7\xf1\xe5\x3a\x47\x6d\x01\x5e\x8c\x53\x28\x6b\x28\x78\xb9\x2d\x64\xa2\xbc\x36\xc2\x1e\x68\x88\xe1\xae\x3a\xad\xa4\x71\xf0\x4f\x52\xd2\x90\xa5\x3b\xed\x28\x9b\xf2\x4d\x4e\xdb\x31\x21\xe3\x6e\x38\xe6\x0d\x64\x65\x04\x25\x69\x55\xec\x77\x7a\x2e\xce\x62\xad\x04\xd9\x82\x1a\xa2\xe9\x94\x17\xc5\xff\xcb\xdb\xbb\x77\xb9\x6d\x23\xfb\xa2\xff\xf7\xa7\x68\xe1\x78\x78\x00\x0b\xcd\x56\x3b\xb3\xf7\x3a\x9b\x6d\x44\xd7\xf1\x23\xf1\x8c\x5f\x71\x3b\x33\xc9\xc8\x1a\x6d\xb6\x04\xb5\x18\x53\xa4\x42\x82\xfd\x98\xa6\xbe\xfb\x5d\xa8\x02\x40\xf0\xa1\x8e\x33\xfb\x9e\xeb\xb5\xdc\x22\x41\x00\x04\xf1\x28\x54\x15\xaa\x7e\x75\x48\xd1\xdd\x54\x5f\xd7\x6a\x40\x2b\xab\x2c\x50\xbf\x96\x4a\xa6\xee\x4c\x45\xb7\x30\xc2\x23\x96\x12\x6f\x79\xc6\x78\x73\xb4\x39\xcd\x22\xc5\xfa\x0a\xa6\xd6\x11\x5c\x77\xb0\x5b\x4b\xbb\x03\x9f\xcc\xee\x33\x41\x55\x27\x3e\xae\x66\x64\x41\xf7\xfc\x8b\x6e\x8b\xd0\xdf\xcb\x92\xec\xb8\x98\xce\xd4\x3c\x52\x2d\x6d\x25\xf3\x4d\x98\x91\x51\x30\xc1\x4a\x8a\x99\x9a\x65\xf3\xf9\x9e\xfa\x3d\xa1\xe9\xbb\x17\xce\x95\x02\xee\xe9\x43\xd3\xce\x70\x83\xa6\xce\xce\x53\x2d\xc6\x6c\xe2\xf2\x45\xac\xe2\xaf\x9f\xf3\xcd\xb7\x07\xc1\xa8\xdb\x1e\xa5\xd9\x2b\x5d\xfc\x11\xf8\x27\xfc\x95\xff\x68\x7e\x4d\xcc\xb1\xcf\xf7\x68\xad\xf0\xf8\xf3\xbe\xfe\x3c\xb3\xd7\x73\x1b\x70\xec\xd9\xc9\x3f\xe6\x3e\xa5\xf9\x4b\xcf\x12\xae\x19\xf3\x6e\x60\x12\x06\x61\x9a\xc8\x2a\x56\xf1\x89\x66\x40\x2c\x7d\xf9\x07\x27\x27\x8f\x02\xd2\xf5\xe6\xef\x4e\x28\x88\x51\xdb\xb2\xd0\x2b\x18\x43\xa1\x2e\x1b\x8a\xae\xaf\x8a\x0a\x76\x44\x10\x5f\xe3\xb4\x94\x04\x37\x5b\x4a\x34\x49\x47\xdc\x26\x00\xa7\x92\x42\x88\xb1\x1c\x13\x32\x1d\xcb\xe8\x67\x67\xe0\xf1\x97\x8b\xf7\xef\xd0\x06\x01\xd6\x0c\xdb\xd3\xcc\x8a\x8e\x09\xbb\xdf\xff\xe8\x4d\x5f\xf4\x60\xb2\xa0\xf2\x8d\x99\xd8\xc2\x3f\xd4\xee\x0d\xa2\xc9\xf6\x63\x68\x1e\x52\xc9\xea\xfa\x91\x77\xb7\xe7\xab\x76\x99\xd6\xfa\xfb\x31\xc4\xf5\x69\xdb\x60\x96\xcc\x8b\x6e\x11\x76\xff\xa3\xe1\xa4\x0c\xb2\xe2\xe2\xa1\x5a\x1f\x75\x6b\x5d\x1c\xac\xf6\x51\xab\x5a\x60\x4e\xbc\x63\xfc\xde\x4b\x3a\x60\xf7\x78\xaa\xcb\x63\x2d\x3c\xe7\x9e\xf9\x69\x6b\x0e\xa1\x35\x8b\x77\x94\x03\xfb\xf6\x8f\x40\x48\x72\xb4\xdd\xca\xbd\x63\xef\xd1\x23\x7c\xc2\x89\xe9\x44\x3d\x57\x4a\xc2\x4c\x84\xa7\xcc\xb9\x02\xe2\x3a\x8e\x41\x38\xd0\xef\xa1\x85\xd0\x37\xc8\x49\x37\x98\x63\x38\x55\xf1\xec\xe9\x17\x5a\x18\x35\xea\x7f\x30\xc6\xff\x82\x5e\x8f\x10\xe1\xf8\xe8\x11\x4c\x85\xee\x5b\xf9\x68\xe2\x6c\x11\x13\x73\xd1\xd7\xad\x20\x61\x04\x11\xd7\x63\xa9\x71\x72\xd9\x30\xf5\x2c\xfa\xa9\x1b\x7d\xde\x02\x5c\x24\x6b\x9a\x7b\x74\xd6\x01\x0f\x3a\x1a\x40\x33\xdb\x5d\x5c\x32\x36\xcd\x22\xff\xc9\x5f\x3a\xa9\x47\xbf\xdb\x18\x08\x70\xbf\x37\xb8\xa8\xbc\x2f\xe7\xe1\x13\xfd\xe5\xc3\xd3\xb1\x13\xa5\xbe\xf7\x26\x33\xa3\xdc\x97\x9b\xe3\x71\x33\xa7\x7e\xab\x64\x25\x87\x77\x57\xdd\x13\x8d\x91\x94\x00\x07\xcd\xf5\x2d\x61\x63\x02\x85\x08\x2f\xc4\x23\xb7\xff\xf0\x2c\x08\x00\x57\xb9\x17\x14\x5d\xe7\xf2\x16\x80\x6f\x50\x93\x31\x16\x15\xcd\x61\x0c\x84\x9b\xdb\xf3\x95\xec\x37\x8a\xdd\x43\x90\x38\xfd\x7e\xc4\xe2\x15\x8b\x10\x72\xe1\xcb\x0b\x17\xf4\x09\xe2\x3f\x39\x67\x26\xb1\x08\x17\x90\x4d\x4b\x82\x25\x42\xb8\x92\x24\x73\x8a\x70\x61\xe2\xb4\x78\x65\x8a\x93\x13\x70\x90\xa5\xfa\x5d\xc2\x58\xab\x5a\xd8\x5c\xbf\x2c\xe3\x66\x83\xc9\xe1\x1c\x8b\xbb\xa3\x42\xaf\xf7\x17\xa1\xf9\x18\x8b\xc0\xca\x18\x1f\x15\x41\x00\x0b\x14\x8e\x4f\x40\x19\x41\x35\x51\x68\xda\x39\x1c\x8d\xdb\x74\x3b\xe4\x20\x47\x8e\xb6\xe0\x00\x64\x40\xe7\x5c\x37\x67\xfc\x1e\x0f\x67\x0e\xeb\xcd\xbb\x9a\x1c\x8f\xf4\xcc\x94\x1b\xe2\x6c\x8e\x81\x83\xba\xa4\x68\x68\x84\xb0\x9d\x4f\xec\x91\xf3\x80\xf1\x0e\x55\x42\x72\x29\x74\xcf\xf2\x4c\xf7\x73\x77\xb6\x3f\xcd\xa6\x76\x5c\x2d\x35\x73\x91\x27\x1c\xd7\x15\x0d\x4e\xf4\xf6\xac\x70\x4b\xeb\xa8\x3d\x03\xcc\x2a\xe0\x66\x70\x25\x5a\xbe\xdb\x21\xd5\xcc\x12\x18\xc8\x34\xe3\xd6\x2c\x9b\x81\x79\xf9\xf0\xd2\x1b\xac\x64\x99\xca\xb8\xf8\xf1\xc1\x7a\xcc\x84\xc1\xd9\xce\x67\xf3\x41\x95\x9f\xcf\xbb\x9d\xf1\xa4\xad\x5c\xc2\xbd\x80\xc7\x2d\xa3\xaa\xd2\xd7\xa7\x9d\x9c\x14\x75\x9d\xb4\x44\xe2\x9c\xcf\x34\x77\x04\x4c\xd9\x03\x83\x87\x83\x01\x2e\x3a\xd8\x42\xc4\x9d\xa2\x99\x21\x06\xf9\x2c\x9e\x73\xd9\x9a\xac\x18\xec\x04\x26\xa4\xa6\xfb\xe3\x31\x37\x77\x30\x07\xcb\x46\x48\x2b\xa9\xaf\x91\x53\x4e\x2d\x24\xa5\x38\x9d\x8d\x4f\xe6\x53\xcd\x4d\xad\x1e\x7f\x0e\x6b\xf6\x79\x35\xa6\xd3\x68\x26\x5f\xce\xe1\xc1\xe7\xd5\xb8\x66\xa7\x26\x0c\x1b\x57\x52\x74\x83\xdb\x42\x64\x5c\x26\x6a\x46\xc9\x58\xca\x31\x61\x20\xe3\xfd\x69\xfe\xd8\x0b\x78\x2b\x66\xe4\x53\xbe\x23\x9c\x7c\x4c\xae\x36\x8a\x70\xf2\x5d\xae\x54\xbe\x25\x9c\xbc\x91\x6b\x45\xe6\xad\x78\xa5\x9e\x58\x40\xb2\x3c\x03\xbe\x88\x4a\x81\xd1\xad\x4a\x75\x97\x42\xd8\x31\x08\x82\x5d\x1b\x57\x8d\x56\xaa\x9e\x64\xce\x6a\xae\x03\xc1\xcc\xb5\x60\xe5\x6a\x5d\x84\x4b\x58\xd4\xc4\x94\x24\x18\x26\xb5\x2b\xee\x3b\xeb\x56\x1e\x8b\x7b\x1c\xc6\x1c\xa5\x9c\x78\x96\xcf\xed\xeb\x67\xf9\x9c\x37\x97\x42\xd9\xa0\x36\x39\x0a\xfc\x99\x8b\x4e\x0a\xc4\x58\x4b\xdd\x5e\x6e\x5d\x51\x23\x26\x35\x2c\x6b\x2e\x87\x1a\xf1\x64\xc2\x4b\x51\xf4\x81\x3c\x8f\x8b\x70\x59\x15\xd4\x87\x5e\xf7\xce\xba\x97\x66\x9f\x80\xb3\xfd\x4a\xe8\x29\x91\x6a\xc6\x37\x03\x0c\x56\x0a\x19\x30\x5c\xfc\x4c\xcd\xa7\x84\x44\x64\x77\x4b\x18\x5f\x8a\xce\xa3\xba\xd6\x0f\x46\x42\xa4\x41\x30\xae\x58\x10\x28\x89\x26\xb8\xee\x15\xe8\xb5\xba\x0c\x82\xe5\xec\x9b\x39\x38\x87\x03\x4b\x53\x9d\x8a\x27\x3c\x15\x69\x5d\xeb\x74\xbe\x14\xe3\xaa\xae\xcf\x70\x96\x2f\xb0\x2f\xa0\x81\xcb\x71\xca\x38\x3d\x3b\xc9\xd9\x63\x7a\x76\x42\x73\xdd\xd4\xd3\xaa\xae\xc3\xff\x60\xec\xa9\x98\x04\x01\x8d\xc5\x84\xf1\xe5\xa9\xc8\x8f\x96\x8f\xc5\x13\xde\x2b\x6c\xce\x94\xf7\x9e\x2d\xfd\x52\x8c\x97\x75\xad\xdf\x38\xd1\x3b\xd9\xec\x6c\x3e\x5d\x8e\xa9\xfe\x1d\x9f\xb1\xc7\xd9\xec\xc9\x3c\x1a\xeb\xbf\xbc\xd0\x2b\x29\xac\xb2\x44\x89\x94\x17\x61\xa9\xe2\x42\x89\x25\x2f\x42\x99\xad\x04\xb8\x60\x83\x7e\x21\x96\x30\x17\xec\x40\x95\xd2\x47\x9b\xed\xce\xba\xc2\x73\xfe\xe1\x89\x88\xa5\x2f\x15\x23\x26\x6a\x78\x99\xaf\xee\x5a\x81\x38\xb2\x8e\x43\x17\xe0\x4b\x98\x39\xab\xbc\x39\xcb\x1f\x0a\xf2\xe8\xe6\x3a\xee\xc6\xe4\x32\xcd\x97\x5f\x08\xe3\xd0\x04\x91\xb4\x02\x64\x56\xdd\xf8\x8f\x9a\x6b\x44\x2b\x82\x09\x8f\x1b\x20\x8f\xfc\x69\x7c\x9e\x8f\xc7\x8c\x16\x00\x78\x6d\x16\x25\xf8\x5a\x17\xed\xa5\xc8\xd5\x94\xba\x16\xe8\x51\x48\xf4\x64\x47\x72\x56\x78\x9f\x50\xd7\x88\x07\x30\xcb\xf5\x4c\xec\x54\x22\x20\xd8\x19\x41\x85\x61\x67\xa5\x17\x12\xcc\x40\xb0\xde\x12\xa5\xac\x08\xdf\x38\xf2\xde\x88\x29\x1c\x79\x5f\xef\xc5\xa8\xc8\x42\x8f\xc7\x89\xfb\x2e\x3c\xeb\x49\x10\xcb\x5b\x7f\x61\xa7\x3d\xfa\x89\x87\xfc\xd3\xda\xbe\xcb\x4d\x7e\x33\xb0\xfa\xec\x56\x05\xcc\xe6\x26\x59\x0d\x1d\x9c\x9b\x3c\x6c\xcf\x55\x7e\x75\x95\x0e\x6d\x63\xe4\x32\xcf\x53\x19\xfb\x27\x9b\x53\xc3\x95\xeb\x17\x53\x63\x0b\xae\x5f\x60\xaf\xbb\x7b\x67\x61\xde\x32\x5d\xe0\xaf\x2d\x68\x6f\xb1\xec\xde\xed\x10\xa9\x44\x59\xdb\xe2\x16\xd5\x80\x64\x04\xf1\xc1\x97\x52\x9c\xb6\x3d\x7d\xda\xb6\x66\xec\x34\xe1\x6b\x5d\xfc\x51\xfd\xcf\x6d\xbe\xaa\x52\xf9\xa8\xfe\x7c\x4a\xa7\xd1\xaf\xf1\x75\x5c\xcb\xe5\x36\x66\xe5\xb2\x48\x76\xea\x34\xe1\x1b\x29\xee\x11\x04\x2d\x9a\x9d\x71\x62\x63\xf7\x6c\xab\x54\x25\xbb\x54\x8a\xff\x6d\xaf\xfe\xf7\xb7\x84\x93\x26\x6a\xcf\x9c\xab\x8d\x8c\x57\x58\x08\xbc\x30\xf1\xb9\xb9\x9c\xf3\x65\x9e\x46\xb3\x27\xee\xe1\xd3\x65\x9e\x5e\x15\x79\xb5\xc3\x6c\xee\xce\x2b\xa1\x8a\x56\x01\xa5\x17\xa6\xa9\x14\x2e\xfd\xac\xab\x68\xf6\x4d\x37\xeb\x53\x55\x98\xec\xc5\xb7\x03\x65\x16\xc6\xcb\x2f\x9a\x4d\x38\x21\x9c\x90\xb9\x47\x46\x76\x7e\xd4\x54\x27\x9b\x8b\xdf\x09\x22\x39\x3d\x10\x08\x10\x81\x5f\x58\xe4\x15\xef\x46\xe0\x99\x0e\x04\xe5\xb1\xc5\x66\x73\xde\xd1\x9b\xa1\x93\xd8\xd4\x19\x54\x4a\xd0\xf2\x66\xed\x78\x9c\x1d\x04\x30\x20\x7e\x56\x92\x7d\x5a\x9c\x67\xe3\x31\xc3\x85\x28\x67\xd9\x9c\x93\xab\x34\xbf\x8c\xd3\x97\xd7\x71\x4a\xc0\xe9\x16\xa9\x83\xea\x3e\x63\x6c\xbf\x91\x61\xbe\x53\x30\x5e\x02\xaf\x93\x3c\xe3\x1b\x19\x42\x1f\xeb\x24\xb5\xce\x73\xa5\x2f\xec\xb8\xc2\x75\x8c\xc7\x43\x1b\xb0\x00\x88\x57\x50\x62\x03\xb7\x2b\x98\xe2\x5b\xc9\xef\x24\xbf\xd6\xb3\xb9\x0e\xfe\xd7\xf4\xf3\xcd\xf8\xfc\xb4\x19\x92\xab\x43\x00\x44\x16\x04\x83\xaf\x85\x32\xa4\xda\x12\xfc\x57\x45\x7c\x05\x34\x9b\x59\x70\x9f\x09\x5f\x35\xdd\xb0\x7b\xba\x3a\xdf\xa1\x81\x3f\x00\x14\xed\xe6\x0c\xb1\x19\x73\xd6\x3d\x35\xc8\x19\xb3\xbd\xbd\xe1\xb9\x87\xe0\x93\xcf\xa3\xdc\x3b\x2c\x90\xa8\x0a\xca\x8d\xf6\x20\x16\x80\x40\xd0\x8a\x48\xd5\xf5\x0f\x5e\x25\xd7\x9a\xb0\x96\x82\x2e\xcd\x06\x9e\xb3\xba\x9e\xe1\x9c\x64\x7d\x00\xf8\x4a\x6c\xe4\xac\x9c\xd7\xf5\x46\x86\x76\x12\xf3\xd8\x73\xb4\xad\xf4\x66\xba\x08\x37\x6a\x9b\x7e\x28\xa4\x31\x70\xcd\xd9\xb8\xd2\xdb\xea\x12\xdc\xe0\x11\x75\x27\x16\x71\x83\x33\x7c\xd4\x7c\x5f\xdc\x8a\x0c\x4f\x63\xb1\xf6\xed\x84\x7d\x38\x4f\x41\x08\xea\xb1\x0c\x06\x8a\xfd\xb8\x4f\xf2\x16\xb6\x41\x17\x79\x61\xdd\x29\xa5\x87\xe2\x3c\x17\x9b\xd9\xce\x22\x2f\x14\xe0\x77\x63\x8c\xf1\x72\x5e\xb0\x6f\x4f\xce\x18\xd8\xf3\x18\x80\x28\xd7\xc9\xa9\xf0\x18\xcb\xbc\xb3\xc5\xe7\x8c\xc7\x62\x27\x69\xbb\xd3\x73\xc6\x09\xd2\x38\x02\x47\x36\x2b\x49\x63\xc6\x31\x6c\xf1\x12\x5a\x12\xcf\x96\xd0\x92\xb5\x1d\x41\x8b\x32\x48\x98\xf3\xe6\xcc\x9b\xd8\x90\xfb\xad\x14\xc5\xc1\xd9\xd6\x7a\x77\x71\x60\xc0\xe9\x5d\x53\x45\x37\xca\x59\x37\x6a\x99\x09\x72\x06\x34\x9f\x30\x7e\x27\x3b\xcf\x6d\xa4\x37\x4e\x9a\x98\x6f\xbd\x4c\x26\xf4\x99\xee\x82\x6d\x3b\x4a\xda\x9d\x64\x7c\x85\x30\x98\xcf\xd3\x3c\x93\x62\x2b\xc3\xa5\xbe\x80\x31\x1c\x4d\x58\xe7\xce\x4d\x1a\x0b\x9d\xa9\x2b\xf4\x3d\xbd\xf5\x60\xc7\x85\x8c\xbf\xbd\x7d\x7a\xea\xae\x09\x5f\x85\x59\x0e\x2f\x78\x8e\xc5\xc4\x68\xd4\x7b\x53\x53\xb7\xef\x86\x0d\x04\xe2\x52\x77\x58\x37\x60\xed\x42\xef\x6c\x5f\xe4\xdd\x29\xbf\x31\x5b\xe4\x36\xaf\x4a\x59\xef\xf2\x24\x53\xb2\xa8\x97\xe8\x61\xbb\x95\x59\x55\xaf\x8a\xf8\xaa\x5e\x15\xf9\x8e\xd5\xcb\x34\x59\x7e\x39\xe5\x2f\xa1\xcc\xec\x9f\xe1\xfc\x31\xd3\xb2\x57\x48\xc3\x31\xab\x99\x47\x77\x6e\xa5\x0f\xd0\xef\x92\x2f\xbc\x64\x2f\x90\xf5\x7b\x69\x6c\x86\x9c\x24\xd0\x82\x44\x6d\xcc\x88\x3c\x2c\xb7\x67\x1d\x5c\x33\x60\x6b\x79\xd9\x3e\xb9\x74\x67\x3d\xf7\xf6\xf4\xb2\x27\xc2\x66\xa0\x73\x2c\xea\x3a\xe3\x99\x93\x62\x15\x83\xea\x4b\xa8\x5e\xcd\xca\x39\xcf\x3d\x9e\x29\x59\x1b\xf7\x93\x02\x01\x55\x84\x48\xa6\x34\x11\x5a\xe6\x76\x55\x44\xe6\x41\x10\xf4\x8f\x9e\x32\x9d\xbb\xe0\x85\xcb\x6b\x6e\xbd\x16\x18\x18\xee\x84\x25\xe2\xa2\x89\xb0\x3f\x4a\x9c\xbb\xbd\x0f\x22\x9f\x83\x50\x91\x70\x9a\x0c\x1d\x1b\x2e\x28\x0b\xf3\xf5\x9a\x4a\x30\xa9\x19\xb2\xf2\xdb\xb3\xf0\xaa\x4a\x56\x22\x86\x1f\x80\x97\x83\xfb\x05\xfc\x8c\xc7\x60\xfd\xd4\x57\x63\xc8\x6b\x99\x29\x34\xd2\x41\xbf\x82\x84\x17\x70\x28\xbb\x37\xcf\xc4\x3d\x6e\x81\xd1\x7d\xdf\x4d\xa8\x85\xa6\xef\x6f\x47\x16\xcd\x9e\xdf\x59\x35\x22\x43\xdc\x79\xd0\x2b\x87\x1b\x08\x91\x52\x00\xbf\x4e\x73\x91\x31\x9b\x02\xd6\x35\xd6\x55\x1f\x54\x75\x07\x5c\xb3\x2e\x25\xa0\x68\xd8\x6f\xcd\x3a\xdf\xca\x69\x25\xee\xb0\xfd\x25\xab\x6b\xef\x0e\x60\x0d\x69\x2c\xee\xcc\x2b\xf1\x38\xdb\xde\xb5\x0c\x38\xba\xba\xe1\x85\x6e\x0d\xf6\x97\x2a\x92\xab\x2b\x59\x40\x0c\x71\x8c\x86\x3e\xb5\x8f\x34\x8b\x0e\x4e\xee\x56\xd8\xf6\x6c\x78\x4c\x98\x55\x2d\xf5\x52\xa3\x74\x25\xcc\x3f\x3e\xd3\xdb\x9e\xdd\xa2\x53\xbd\x4f\xed\xc4\x56\x00\xc8\x11\x6e\x8f\x6a\x96\xce\x0d\xce\xca\xd9\x9c\xaf\x04\x2d\x67\x4f\x4c\x28\x16\x83\xfb\x11\x5a\xe0\x0f\xc6\x77\x41\x40\xd7\xc2\xb6\x0b\x20\x13\xe2\x74\xb6\x9b\xd7\xf5\xfd\x9e\xef\x04\x4d\xa6\xeb\x70\x25\x53\x79\xa5\x77\xad\xbb\x9d\x8c\xd6\xe1\x65\x92\xad\x0c\xbe\xfb\x8e\x1f\x2c\xbb\x14\x8d\x8e\x19\x30\xa4\x76\x3c\x2f\x92\x2b\xa8\x63\x8b\x87\x30\x05\x37\x23\x1a\x65\x5c\x8f\x49\x84\x23\xc4\xed\xd8\x46\x09\xf7\x41\x00\x22\x18\xe9\x03\x08\x01\xc6\x41\x95\x71\x4d\xc5\xcb\x5d\xbc\x94\xd1\xca\x80\x9a\x84\x04\x14\xaf\x9c\x6e\x44\x85\x3c\x0c\x35\x97\x62\x36\x67\xee\xeb\x9e\xe7\x55\xa6\xc4\x84\xaf\xf5\xb6\x50\xed\x82\x60\x74\x36\x12\xc2\xdc\x35\xbe\xfa\x2b\x1e\xb3\xba\xee\x9b\x63\x04\xc1\x80\x89\xc6\x8e\xc7\x8c\xf1\xb5\x7e\xa0\xfb\x59\xff\xda\x9a\x96\x8c\x2f\xed\x8c\xb6\x33\xb4\x9d\x20\xb0\x3b\xb4\x38\x3d\xdd\x58\x03\xfe\x4d\xbb\xbd\xe3\x31\x9f\xf0\x25\x8b\x0c\x7f\xb1\x04\xcd\x3e\x0c\x07\x2e\x48\xfd\x91\xde\xc9\xc1\xbf\xb1\x30\x9b\xa3\xb3\x20\x68\x2d\xd3\x20\xf0\xd7\x8f\x85\x3e\xfc\xca\x29\x9b\xac\xe9\xff\x68\xd6\xe2\xeb\x0e\x4e\x3e\x18\x5e\x41\x8b\x87\x27\x2f\x04\x45\xe0\xa5\x28\x21\x16\x51\x27\xdc\xcb\xe7\xcf\x21\x23\x63\x3b\x87\x3e\x7f\x0e\xe9\x34\x0a\x1f\x7f\xfe\x1c\xd6\x8c\xb0\x31\xa1\xfa\xea\x11\x23\x00\xc0\x2f\x36\x1e\xda\xd0\x39\x5b\x8a\x0d\x80\x0d\x25\x41\xb0\x1d\x09\xb1\x0c\xed\xc4\xaf\x6b\x00\x15\xd7\xa3\x0a\xe9\x38\xec\x65\x10\x8c\x4a\x9c\xbf\xcb\xd0\x4d\x5f\x56\xd7\x45\x10\x14\x90\xaf\x74\x51\xec\x28\x79\xfc\x18\x0c\x8f\xea\x7a\xd4\xa4\xeb\x29\xbd\x69\x61\x0c\xf9\x65\x3a\x53\xe6\xe4\x84\xaf\x8d\xfa\x25\x08\xec\x55\x33\x2b\xd9\x51\x1c\x04\xa3\x4d\x73\x36\xa8\x59\xd3\xb8\x58\xe5\x37\x99\x5b\x12\x36\xc1\x96\x5a\x71\x8f\x52\x2e\x7c\x1b\x33\x2a\xf9\xae\x79\x68\x0f\x4c\x60\x19\x36\xb8\xb4\xbb\xe3\x24\x3b\xae\x98\x1d\x4b\x77\x0c\xb1\x1b\xeb\x49\x01\xd3\x74\x34\x61\x47\xdd\x63\xf7\x0a\x66\xa4\xcb\x4d\xf0\x25\xc7\x38\x21\x09\xdb\x83\x27\xc9\xae\x67\xa2\xdf\x72\x7e\xd2\xd3\xde\x4d\xa2\x75\x72\xab\xf7\xce\x0a\x74\xc7\xc8\x68\x77\xcf\x27\x80\x2a\x1b\xd1\x0f\xf0\x0c\xec\xdb\xc0\xbb\x70\x56\x22\xa2\x14\xcc\xab\x65\x6f\x72\xba\xa7\x46\x3b\xab\x25\x0d\x51\x72\x25\xce\xce\xd5\xd3\xee\x9b\x00\xf0\xa1\x9a\x29\xcf\xf2\xd3\xc4\x94\x2c\x9b\x39\x0d\xf0\xf6\xa8\xeb\x1f\x2d\xc3\x5d\x21\x5f\x98\x2f\xae\x6b\x18\xaa\x56\x9a\xe7\x19\x5c\x3a\xf9\xcb\xb6\xd1\x10\x9e\xd2\xcf\xc4\x53\x84\x9f\xa0\x89\x88\x67\x6a\x3c\x9e\x33\x98\xa9\x49\xf9\xa1\xc8\x77\xf1\x15\x40\xe6\x5f\xa8\x7c\xb7\x93\x2b\xca\xce\xd1\x6c\x2c\x5c\x56\x45\x21\x33\x65\x9a\x96\x84\x32\x95\x5b\x9e\xe9\x5a\x72\x91\xb8\xd7\xcc\x32\xaf\xba\xd7\xdb\xad\x5c\x25\xb1\x92\xc3\xf5\x96\x61\xe1\x56\x05\x94\x68\x6e\xad\x2c\xe2\xaf\x1a\x5a\x9a\xb7\xbc\xbf\xfc\x55\xe4\xbc\x0c\xf5\x5e\x23\x72\xf8\x69\x6c\x62\x68\x21\x28\xed\x0e\x50\xee\x56\xea\x1c\xbd\x45\xb1\xa2\xba\xce\x6d\xc3\x99\xd9\xb1\xcd\x77\x55\x00\xd4\xaf\x39\x33\x5a\x86\x85\x2c\xab\x54\x09\x50\xf4\xa1\x67\xb2\xcc\xd4\x0b\x64\xd2\x29\xe3\x25\x9c\x12\x7a\x9f\x48\x3d\xeb\xb4\x65\xb8\xcb\x4b\x65\x47\x2a\x08\xda\xf7\xad\x91\xe3\xf6\x4d\x60\xc7\x82\xdd\x79\xd8\x28\x00\x26\xf8\x6c\xce\x2b\xa1\xda\x64\x80\xa7\x42\x86\x18\x1f\x01\xe0\xa5\x83\x20\xf5\x4f\xfd\x29\x01\x09\xc0\x07\x7c\x97\x21\x22\xca\x7f\x2b\xce\x8c\x25\x5e\xaa\x39\x9b\x4d\x52\x9e\xa7\x22\x6d\x79\xda\x82\x8e\xce\xe0\x0c\xf9\xd5\xda\x5a\x47\x0d\x4c\x3d\xd8\x6b\xa6\x2e\x96\xb3\x99\x98\xc6\x2b\xf1\x7e\xcf\x11\x9c\xbd\x02\x7d\x8c\x53\xf3\xc4\xb3\x44\x8f\x20\x60\x3a\x3a\x4a\x67\x43\x7b\xc6\xb3\x64\x2e\x8a\x16\x77\x30\x5d\xd0\x04\xa1\x0e\x8c\x8b\x7f\x0a\xbe\x6c\x06\x4f\x05\x1f\x99\xc0\x9b\xa9\xdb\xa9\x18\xd7\x35\x05\x81\x73\xf2\x3b\xca\x1d\x55\x2c\x0d\x4a\xa6\x9e\x05\x51\xda\x8c\x43\xbe\x77\xf6\x09\xa9\x71\x3f\x79\xaa\x7e\xb7\x94\xb2\x58\x77\x00\xe9\x09\x2c\xb4\x9e\x27\x9d\x51\x1d\x36\xa5\x5b\x84\x40\x68\x1b\x7b\x3e\x2e\xf9\xbd\xcc\xaa\xad\xb4\x56\x74\x5d\xab\x3a\xb0\x6e\x03\xc7\x03\x8f\xc9\xb7\x26\x21\x7a\x01\x24\x59\x9c\x42\xa5\xee\xec\x7f\xe8\x59\xeb\xf4\xe6\xe1\xe2\xbd\x27\x33\x39\xef\x58\xf5\x1d\xfc\x3e\x73\x90\xfb\x3b\x9f\x74\x53\x24\xca\x5e\x1b\x63\x42\xd0\x0d\xef\xf9\x3a\x19\x46\x54\x98\x39\xe3\xc8\xf9\x54\x46\x9a\xe2\x9b\x9e\x04\x23\x21\x43\x11\xa2\xfb\x34\x8f\x57\xd1\x7d\x96\x7f\x57\x5d\x1a\x9b\x44\x13\xe3\xe3\xde\xb0\xf7\x03\xbd\x30\x12\xe2\x3d\xc4\x4c\x40\x4c\x05\x9d\xbd\xd5\x15\x6b\x8c\xf1\xc1\x47\x67\x7b\xde\x62\x4f\x08\x3c\x49\x32\xb2\xe7\x97\x69\x55\x3c\xf4\x0e\xd1\x7a\x87\xce\xdd\x7a\x85\x4e\x38\xfc\x86\xbc\x52\x64\xcf\x61\x29\x1e\x7a\x07\xb1\x8a\x74\x30\x81\xd0\x55\x22\x11\x40\xab\x47\x5d\x32\x08\xbe\x98\x3d\xd0\x2a\x65\xfc\x06\x40\x16\xd3\x02\xa7\x4a\x1e\xf6\x9b\x37\x54\x88\x93\x18\x36\xed\x4b\xb9\xce\x0b\x59\x65\xd8\xf3\x3e\x19\x6c\x6f\xe3\x8d\xb2\x18\xc9\xa1\x26\x50\xad\x49\x06\x36\x82\xad\x94\x10\x5f\x0a\x1a\x13\x57\x8e\xed\xf7\x7b\xb4\xd2\x77\x5c\x4b\xcf\x26\x79\xd0\x6e\x5e\xbf\x70\xc8\x9c\xde\xd8\x78\x85\xfd\xaa\x2c\x5a\xe6\x26\x29\x5b\x60\x3d\x98\xb5\x81\xc4\xf4\x27\x23\x57\xe0\x9b\x87\xe4\x72\x3a\xb0\xca\x2c\xba\x0d\xd8\xf2\x62\x36\x4c\x48\x4a\xb3\xf9\x7c\xc0\xad\x48\xae\x84\xc3\xee\x73\x49\x36\xea\x20\xd0\xf9\xee\x43\xb3\xb7\x49\xbf\xdf\xa6\xb7\x32\xba\xb0\xaf\xc4\x4d\xde\x8e\x60\x10\x7c\x83\xdb\x05\xdc\xf9\x31\xda\x4d\x4a\xb3\x45\x44\x6e\xd4\x71\xb6\xb4\x98\x06\xd9\xbe\xc7\x2c\x80\xdb\x29\x57\x2e\x4b\xeb\xde\x1c\x22\x61\x17\x70\x85\x72\x22\xc8\x9e\xa8\xb0\x30\xe0\x03\x2a\xd9\xca\x0b\x15\x6f\x77\x02\x7b\xd4\xde\xd6\xf5\x8b\x58\xc9\x30\xcb\x6f\xa8\x81\x52\x69\x88\x83\xd0\x4b\xbe\x47\x64\xc5\xbd\x87\xc9\x14\x99\xc7\xbc\xdf\xe3\xba\xab\x86\xf8\x25\x4c\x7f\x80\xf1\xc1\x0c\x17\xc9\xb6\x82\xcf\x8c\x46\x67\xbc\xcd\x51\xf4\xdd\x49\xfb\x53\xe3\xe8\xd0\x3c\xb8\x95\x5c\x6f\xf2\xe6\xb1\x7b\x0b\xc4\xe6\xe9\xf0\x2d\x7b\xde\x61\x5b\xfe\xc8\x8b\xfb\xdf\xf5\xd0\xab\x7b\xfc\x11\xbe\x7b\xa8\x97\xfe\x48\x23\x1e\xe8\xe5\xdf\x6b\xcd\x50\x51\x33\x45\x06\x5a\xbb\x77\xa8\x33\x71\xaa\xfe\x2a\xef\xf4\x66\x74\x09\xfb\x06\x60\x3b\x2d\xf5\x72\x4f\xdd\x0e\xb6\x89\xb3\x2b\xb9\xfa\x94\x57\x80\xab\xad\x53\x54\x91\x9a\x52\x2b\xa9\xe2\x24\xd5\x57\x30\x18\x1f\x36\x71\x09\x85\xb6\x52\xc5\x26\xcb\x2e\xbe\x92\x3f\xdb\x8b\x5f\xf4\x05\x58\xa8\x99\xa7\xd7\x89\xbc\x31\x6f\x29\xec\xef\x73\xbd\xee\x46\x13\xfe\x05\xb3\x7c\x91\x77\x36\xc5\x84\x20\x72\x57\xd8\x9c\x34\x91\x99\xfa\xb9\xb9\x84\x97\xe4\xeb\x75\x29\x31\x15\x2f\x21\xd5\x28\x93\x5f\xaf\xbc\x1b\xd8\x6f\x74\xb3\x96\x85\x94\xd9\xcf\xcd\x25\x94\xc0\xd5\xef\x7d\xbd\xca\x8d\x0e\x18\x6f\x5c\xfa\xcd\x26\x19\x12\xe0\x84\xe5\x46\x8f\x3a\x78\xa3\x90\x3f\x08\x16\xd2\x86\x5a\x02\x74\xde\xa9\x71\x8c\x0c\x6d\x47\x4c\x9b\xcb\x48\x86\xae\x2f\x5c\x79\xdf\xe0\xfb\xa6\x53\xd7\x59\xa0\xa6\x67\xd1\x93\x40\x4d\xbf\x89\xfe\x1c\xa8\xe9\x93\x68\x12\x99\x82\x38\x07\xac\xba\x54\x4f\x8f\x06\x8a\x08\xf4\xee\x7a\xfd\x15\x11\x81\xeb\xfc\x5a\x16\x84\xc3\x65\x2a\xe3\x6b\x69\x93\x2b\x45\x6c\x27\x9a\xec\xe6\x0e\x0b\x98\x1b\x53\xc4\x3e\x82\x2d\xbd\xbd\xd9\x74\xc5\x1b\x39\x17\xf7\x2d\x6e\x40\x71\xab\x0e\x89\x94\xe1\x46\x7b\x3d\x0d\xbe\x01\x6d\x6a\x0b\x38\xe8\x4e\xc6\x72\x20\x84\xa0\x5e\x47\x66\xa1\xae\xbb\x88\x60\x05\x00\xcd\x63\x0f\x8a\xc4\xc9\x59\x3c\x6b\x84\xc2\x61\x95\x35\x37\x65\x00\xc7\xb8\x67\x86\xd8\x0a\x9c\x65\x2d\x90\x4c\x83\x9e\x35\x56\x80\x90\xbe\xe7\x79\xd6\xd7\x80\x1d\xca\xce\xcf\x74\x81\xf5\xfa\x90\xe3\x09\x18\xc7\xf6\x09\xa6\x4e\x71\x5d\xe3\xa2\xfd\xfb\xfd\xc5\x17\x54\x76\x24\x78\x54\xdb\x17\x8d\x18\x3b\x2d\x5c\x0f\x8d\x49\x48\xc6\xde\xa3\xa8\x79\x04\xa1\x11\x50\xf6\xe1\x85\x93\x50\x81\x3a\x0d\x1e\x8e\x98\x00\x1e\x80\xd3\x27\x19\x12\xcc\xf5\x1a\xb0\xa4\xe5\x01\x3c\x3e\xd0\x22\xa8\x20\x68\x9c\xd5\x1b\x9c\x51\x80\xc6\x50\x5c\xb9\xb3\x14\x60\x16\x32\x50\xd8\x5f\x18\x4c\xb2\x83\x87\x09\x2d\xa3\x64\x9e\xa1\x0d\xb4\xb1\xe5\xf8\x02\x06\x1b\xd3\x51\x5c\xc8\xb8\xbe\x2c\xea\x65\x9e\xd6\x72\x7b\x29\x57\xf5\xa6\xa8\x93\xed\x55\x0d\x0c\x67\x9d\x26\xd9\x97\x5a\x53\xc4\x7a\x17\x17\xf1\x96\xd1\xc3\x36\x1e\x8f\x11\x26\x92\x7d\x3e\xfd\xf6\xf4\x2a\xe1\x6f\xf5\x0b\xf0\xbc\xb3\x7e\x0a\x46\x33\xf5\x53\x5d\xdb\x69\xc2\x3f\x49\x71\x6a\x0e\xed\x3e\x97\x8f\xe9\x34\x9a\xfd\x53\xcc\x6b\xf1\xb9\x7c\x6c\xcf\xf2\x42\x76\x9a\xf0\xe7\x52\x9c\xfe\xf3\x73\xf9\xf8\xe9\x88\x4e\xa3\xcf\xb3\xe7\x2f\x9e\x7d\x7a\xf6\x79\x56\x9f\x9c\xb0\x5a\x27\xcc\x3f\xcf\xf5\xf5\xb7\x9f\xcb\xc7\x8f\x7c\xd7\x8e\x8f\xb2\xe5\x4d\x84\x98\x50\x7a\x47\x20\x4c\xb3\xd3\x7d\xf0\x31\xe5\x03\x56\x11\x55\xe8\x7c\x00\x3b\x6a\x81\xab\x28\x01\xab\x02\xc2\x66\x93\x79\x5d\x7b\x40\x48\x1f\xda\x11\x90\x60\x0d\x51\xa4\x82\x87\x02\xb6\x8d\xc9\x29\x19\x1b\x0e\xd2\xab\xe9\x9d\xec\x78\x80\x9c\xa2\xa9\x63\x73\x02\xec\x62\x8c\xfc\x07\x9b\x4a\x9f\x11\x75\xd6\xfd\x91\x65\x95\x7b\x6f\xf5\xdf\xf4\xab\x1c\xd4\x5f\xf0\x0a\x51\x1a\x3a\x91\x1e\x35\x33\xdd\xd6\x4f\xd3\xdc\x33\x35\x67\x3c\x16\x68\xc0\x01\xa7\xde\xa9\xc8\x9d\xae\xda\xad\x02\xa3\x8f\x8c\xcd\xe2\xe1\x71\x73\x00\xc4\x53\x83\x6c\x34\xe1\x85\x48\x67\xc9\xbc\x6b\x1c\xd2\x3a\x16\xe3\x09\xd7\x79\x66\xd9\x9c\x1d\xfd\xd8\x6e\x53\x29\x7e\xf4\xda\x54\x09\x1f\x8b\xa9\x64\xdc\x78\x02\x20\x88\x81\xeb\x89\xd7\x9e\x41\xa5\x12\xf6\x34\x6f\x36\xd7\xd2\x80\x35\xb0\x6c\xec\x3a\x26\x7c\xd3\xb8\x76\xee\xc4\xe6\xe4\x8c\xdf\x01\x4a\x2f\xbf\x16\x5b\x7a\x07\xfa\xfa\xeb\xba\x06\xd0\xae\xde\x19\xe5\x5d\x10\x8c\xfc\xc3\xed\x20\xf8\x64\xf6\xbb\x3b\x0f\xf3\xbb\xbd\x8e\x1d\x1e\x87\x0c\xe5\x6f\x34\x61\x47\xd7\x41\x40\x21\xc6\xea\x9d\xa7\xab\x4a\x78\x0e\x56\x16\x94\x31\xc6\x5f\x4b\x9a\x5b\x42\x0c\x0d\xda\xc0\x78\xd1\x44\x5c\x49\xaa\x09\xd0\x64\xde\x31\x55\x18\x9d\x71\xa9\xf7\x0d\x7f\x09\xc0\x51\xa9\x67\x7e\xe1\xbb\xb0\xe4\x8c\xe7\x75\x5d\x18\x0d\x52\x25\x68\x69\xc0\xd0\x76\x92\x26\x9e\x7d\xc3\x07\xe9\x02\x20\x9c\xaf\x9f\x6e\xce\xd7\xe3\x31\x4b\x45\xc2\xd7\x23\x21\x76\x10\x2b\x60\x81\x67\xee\x34\xe5\xe0\x50\xcc\x78\xa5\x25\x0a\x34\xff\x28\xf9\x4e\x3f\x70\xd5\x31\xc6\xad\x1e\x7c\xb6\x9e\xf3\x94\xaf\x19\x86\x6b\x43\xdb\x89\x72\x56\x36\xf8\xb0\x9d\x0f\xc4\xd6\x95\xfc\x9d\x64\x7a\x10\xcf\xd7\x4f\x2b\xd3\x98\x52\x57\x65\x4d\x2d\x52\xdf\xd4\x62\xe4\x26\x78\xda\xb6\x3b\x6a\x99\x13\x2f\x79\x0a\xb1\xa2\xc2\xb2\x58\x06\x01\x41\xab\x36\x32\x12\xc2\xaf\xac\x03\x5b\xbf\x08\x17\xf2\x3a\x4e\x7f\x2a\x52\x5d\x95\xbd\xc6\x3a\x58\x74\xa5\x4b\x36\x26\x2a\xce\xd1\xec\xb9\x04\x2c\x7a\xfd\x42\xa7\xf9\xf2\x56\xf4\x0b\xd9\x43\x2a\xe7\x89\x50\x53\x1f\x71\x9a\x45\x92\xe7\x62\x72\x6e\x22\x96\x14\x68\xb8\x88\x26\x8e\x75\x7d\x36\xf2\xd1\xa3\x81\xb1\x48\x65\x9c\xc1\xfa\xda\x61\x34\xb3\xa2\x15\x5e\x94\x66\xad\xae\x28\xba\x36\xae\x0c\xcc\x5b\x74\x51\x6f\x10\x5b\x75\xb4\x8c\x53\xbd\x70\x50\xd2\x77\x3e\xf3\xad\x87\x86\x63\x9e\xda\x2e\xfa\x22\x39\x79\xfa\xe8\xec\xdb\xa7\xa7\x8f\x9e\x7c\x4b\x10\x0b\xb5\xc7\x88\x38\xbe\xa2\x15\xb7\xa8\x63\xfc\x01\xa7\xad\x0f\xd8\x8c\x23\x94\x4d\xd7\x8a\x04\xfb\xd0\x07\x61\x3f\x6b\x27\xa0\x87\x25\xe2\xd3\x53\xc9\x90\x3e\x82\x95\xd0\x92\x19\x70\x56\x9a\xeb\x5b\x6f\xe1\x58\xb8\xd5\x52\xe4\xb3\x02\x42\x7a\xe9\x9f\xd4\x02\xb5\x34\xe1\x04\x68\x2a\xaa\x43\x11\x05\x82\x20\x35\x73\xbc\x34\xac\x75\x65\x77\x59\x51\xda\xab\xc8\xd4\x85\x96\xdc\xc4\x9a\xcb\xc0\x7d\x5d\xd3\xaa\x65\x07\x23\xca\xd6\x2d\xf4\x88\x02\xb4\x57\x86\x6a\xe5\xbc\xae\xe1\x43\x38\x98\x9e\xf9\x9f\x98\x77\x3f\xed\x57\x49\xe1\xdb\xf4\x97\x19\xeb\x2a\xd8\xa0\x96\x76\x42\x98\x3e\xf2\xa6\x91\x17\x57\x66\x25\x69\xcc\x47\xeb\x20\x00\x5b\x49\x6f\xa6\x2d\xd1\x07\x24\xeb\x79\x71\xf9\xc1\xd5\x0a\x30\xa1\x6e\xb1\xef\xb0\x46\x7c\x4f\x33\xe9\x96\x49\xb2\xa6\xdf\xd3\x8c\x19\x20\xe8\x6c\xf6\xa8\x71\x76\x85\x24\xbb\xf1\x35\x8e\xcf\x36\x25\x99\x15\xf3\x69\x87\x27\x83\x58\x68\xed\x53\x3c\x30\x8e\xb1\xa7\x78\x47\xfe\x0b\xcc\x80\xef\xb3\xd9\x8f\x9e\xf3\x33\xf5\x6f\x2d\x7f\xd8\xe7\xde\x57\x10\x46\x64\x68\xf5\xbc\x70\xac\xe1\xf0\xe9\x75\x3f\x23\x1b\x88\x71\x6b\xf2\x74\x3d\xfd\x64\xdf\xdf\x5a\x4e\x31\x66\x03\x5a\x17\x1b\x93\x64\x88\xfe\xcb\x7a\x2c\xec\x99\x39\xf5\xe8\x2e\xa8\x4e\xda\x7f\x75\x93\xea\x1a\xb5\x77\xbe\xa5\x9f\x6c\x5c\xff\x64\xcf\x19\x8a\xed\x39\x5a\xa1\x0d\x58\x61\xbf\x96\x1d\x41\xa9\xf5\x79\xff\x7e\x13\x3f\xba\xfe\x6c\x59\xc0\x61\x3b\x77\x85\xfc\xb7\x9a\x63\x79\xb7\xf6\xab\xce\x06\xd2\xfe\xab\x9b\x64\xc5\xfd\xa6\x5d\x47\x2a\x4c\xb2\x52\x16\xea\x3b\x50\x14\x6b\xf2\xd9\x82\x69\xd5\x0d\x45\x1d\xf2\x1f\x6e\x27\xbc\xd9\xdf\x4b\x3a\x09\xbd\x17\x23\x1a\xf8\x9e\xc7\x6b\xd5\xd6\xa0\xff\x5f\x7b\x5d\x2b\xb8\x86\x7e\x75\x0f\x83\xd1\x41\x74\xc3\xd9\xad\xd9\x54\x51\x3f\x36\x53\x73\x06\xe7\xca\xdd\xa8\x1c\xb4\xb3\xab\x4a\x88\x02\xa0\x45\xef\x96\x55\x6a\x5b\x42\x1c\xd8\xc7\xbc\x08\x15\x46\xe1\x12\x04\xd2\x00\x7e\x08\xa1\xa6\x32\x32\xda\x5c\xcd\xf8\x0c\x3a\xff\x00\xdf\xd5\xf2\x8b\xd5\x3b\xed\x57\xae\x6a\x9c\x2a\xc6\x71\x10\x0c\x41\x90\x7d\xf7\xbc\xe0\xda\xae\xd0\xbd\xe8\xf1\x0e\xde\xc3\x59\x6b\x0e\x42\x4a\xc8\x20\x18\xbd\x95\x0d\xce\xed\x68\x23\x67\xce\x3c\x59\x3e\x64\x9e\x3c\x67\xf7\x52\x74\x8d\x8f\xf5\xa4\x2e\xee\x10\xdb\xdd\x8a\x17\x70\xa8\x6c\x3e\x26\x33\xc7\xd1\x87\x07\x4c\xe1\x80\x79\xed\x16\xba\x52\x31\xf1\xbc\xeb\xf7\xca\xcc\x30\x4b\xd8\x70\x81\xc3\x79\xd7\x61\x0a\x64\xb8\x98\x36\x44\xa6\x55\xba\xce\x9c\x7b\xd0\x03\x33\xbd\xf1\x60\x6d\x4f\xef\x23\x0f\xab\x14\x97\xf6\xd3\xc9\xc0\x97\x41\xa8\x0c\x0e\x86\x33\xa6\x2d\xc6\x50\xdc\x44\xd1\xd8\x6b\xda\xef\x21\x7e\xe3\x57\x7d\xca\x23\x82\x57\xc4\x92\x2d\x9d\x64\x2e\x09\xf7\x97\x56\x44\x90\x5e\xd8\xd4\x67\xb0\x9a\x09\x2c\x6a\x62\x3b\xe0\x59\x9a\x46\xc4\xeb\x8c\x01\x6d\x5b\x07\x94\x59\xb6\x5c\x94\x30\x40\x0f\xc0\xd9\xe4\x2e\xfc\xd7\xc9\x19\x8f\xc5\xe4\x3c\x7e\x2a\xf2\xf3\x58\xf3\xbb\x10\xca\x2f\xf7\xbc\x5c\x71\x41\x68\xde\x6f\x41\x93\x59\x3c\x67\x33\x35\xa7\x19\xe3\xa5\x11\x09\x0b\x9e\x21\xac\x7a\x6b\x6d\x7a\x30\xcb\x85\x53\xab\xbc\xe9\x3a\x45\x5a\x47\xc8\xe9\x68\x77\xcb\xd0\x1b\x72\x6c\x9d\x21\x5f\xb5\xcd\x1c\x6d\x28\xc4\x16\xc7\xe9\x58\xad\x44\xde\x78\xf1\x60\xb2\x30\xdf\xc9\x4c\x16\xa0\x1f\x92\x0c\x1b\xf8\x3c\xdf\xee\x2a\x25\x57\x17\xe0\x01\xa7\xd8\x9e\xff\xab\xd5\x9c\x4c\x1a\x4b\xab\x9a\x30\x68\x41\xa3\x34\xf9\x41\x0e\xb2\xc8\xd6\xa1\xd1\x32\x63\xe0\x4c\xf7\x0a\x98\xd4\x20\xa0\x04\xa4\x9d\x58\xc0\xcb\xed\x61\x32\xf0\x84\x54\xb1\xba\xce\x34\x29\x6c\x69\x29\xfb\xdc\x34\x18\x7d\x7a\x3e\x7b\x8c\xf1\xd1\x2a\xdc\x25\xb7\x32\xfd\x2e\xbf\x85\x0f\x29\x29\x0b\x82\x37\x86\x10\xc4\x2c\x08\xfe\x65\xae\x15\x02\x1c\x94\x21\x84\x16\xe3\x89\x28\xc3\x6d\x92\xfd\x1d\x6e\x72\x7d\x13\xdf\xe2\x4d\x93\xee\xa5\xda\x72\x22\xe6\xfa\x0b\x6e\x4c\x4e\x4c\x2b\xfc\x32\x09\xf7\x4a\xe5\xcc\x03\x7d\x89\xa7\xf1\x98\x90\xc8\x8b\x0f\xfd\x5d\x4b\xf9\x74\xdf\xc2\xb8\xc1\x93\xc9\x26\xca\x97\xc3\xeb\x17\x8a\x1d\x00\x0c\x35\xba\x13\x9b\x71\xbf\xdf\xb7\x02\x45\xd8\xb7\x2a\xac\x7b\xc9\xee\x53\xe3\x9f\xb6\x2c\xcb\x4f\xf2\x56\x09\xb2\x33\x31\xe1\xa2\xf8\x12\x10\x33\xe5\x79\x2a\xd7\x2a\x3a\x39\xd3\xff\x76\xb7\xe7\xf0\xbd\xd1\x7f\x4e\x76\xb7\xe7\xdb\xb8\xb8\x4a\xb2\x13\x95\xef\x22\xfd\x64\x17\xaf\x56\x49\x76\x15\x4d\xce\x2f\xf3\x62\x25\x8b\x68\x42\x00\x43\x72\xb8\x7a\x1b\xf2\xef\xdc\x78\xc6\x45\xe0\x5d\x78\x7e\x99\xdf\x9e\x94\xc9\xbf\x74\x3d\x58\xcb\xc9\x65\x7e\x7b\x9e\x5f\xcb\x62\x9d\xe6\x37\x51\x09\xc0\x5d\xe6\xcd\x51\x5c\xa9\xdc\xbe\xcc\x6f\x81\xdf\xce\x3f\x9d\x43\xfb\xfe\x44\xf8\x65\xdb\x7f\x20\x6d\x33\x53\x4b\x83\xc0\x8d\x7a\xb8\xf6\xca\x58\xb2\xa3\x44\x90\xb3\x3f\x11\x34\x1a\xce\x77\xbc\x12\x67\x4f\x84\x10\x19\x55\x21\xb6\xe5\x8d\x5c\x2b\xe6\x3e\xb7\x48\xae\x36\x4a\x90\xff\x9c\xfc\x89\xf0\x52\x7c\xf3\x9f\x26\x2b\x24\x6b\x52\xe3\x52\xa0\x95\x4d\x39\xdb\x3b\x82\xd8\xde\x27\x3c\xc6\xdc\xcb\x10\x8f\x76\x60\x56\xd5\xb5\x97\xe1\xb2\x2d\x1b\xa7\x8c\x2f\x11\xbf\xb5\x99\x65\xfe\x16\x8d\xe1\x4b\xf3\x2a\x5b\x51\x00\x7d\x79\x95\xe6\x31\x44\xec\xd8\x3b\x27\x61\x14\x75\xfb\x8e\x1e\xe0\x04\xc2\x97\x07\x1e\x1c\x2d\x9d\x33\xa7\xfd\x9e\xcb\x78\xf9\xe5\x0a\xde\xf5\x3c\x4d\x76\x82\x18\x64\x7d\x3d\xa6\x7a\x6e\xb4\x9d\x28\x86\x8b\x10\xbe\x82\xbd\xa7\x00\xe9\x19\xc6\xa3\x5d\x0f\xf4\xcd\x50\xd9\x06\x4f\x63\xc5\xef\x2f\xf3\xdb\x0b\x98\x56\x1f\x65\x9a\x1c\xc0\xbd\x06\x70\x8a\x3d\x6f\x13\x93\x03\xf9\x4a\x93\xcf\x86\x50\x3c\x90\x2d\xd1\x7b\x35\xbe\xf0\xad\x9b\x27\x07\xf2\x56\x7b\x8e\xd3\x1b\xdb\x7a\xa8\x85\xf1\x7e\xcf\xd8\x9e\x51\x03\x30\x07\xbe\x20\x59\x9e\xc9\x1a\x74\xd6\x74\x3a\x3a\x59\xce\x64\x3c\x67\xe1\x98\x9d\xf2\xdf\xf4\xe3\x93\x93\x53\xfe\x77\x29\xee\xdd\xda\xf3\x26\xcf\x75\x52\x26\x97\x49\x9a\xa8\xbb\x88\x6c\x92\xd5\x4a\x66\x84\xdb\x15\x69\x1c\x7e\xf7\xfc\x6f\x52\xdc\xa7\x52\x29\x59\x5c\xec\xe2\xa5\x5e\x61\x64\x42\xf8\x3a\xcf\xd4\xdf\x21\x56\x63\x44\xfe\x3c\x99\x90\x3d\xff\x45\x8a\x19\xf9\xbb\xbc\xfc\x92\x28\xc2\xc9\xdb\xfc\x5f\x84\x93\x6d\x49\xe6\xfc\xfb\x01\xaf\x21\x98\x33\x66\xb7\x68\xd0\xd2\xa4\x17\x09\x47\x53\x0d\xbd\x4b\x94\x33\xd9\xc1\x39\x6b\x3d\x12\x1d\xa9\x46\x6a\x61\xfa\x7b\xd9\xf8\x6a\x38\x19\x5e\x60\x10\x74\x1f\x24\x6e\x6c\xd5\xe1\x67\x8c\x67\xe2\x17\xd9\xc2\xcd\x41\xe4\xe1\x5f\xe4\x2c\x9b\x8f\x15\x6b\xd7\xba\x07\x96\x52\x32\xae\x9a\x65\xf6\x48\x76\x62\xb2\x59\x33\xea\x26\x28\xd8\x14\x96\xdf\x36\xbe\xa5\x13\x5e\xcc\x9e\xcc\x4f\x68\x56\xd7\x13\xc6\xc6\xb4\x00\x57\x7a\xf0\x9b\x8f\xbc\x3a\x7f\x1c\x72\xb4\x11\x04\xa3\x63\x02\xfa\xc6\x59\x34\xe1\x88\x24\x38\xc1\x80\x59\x42\xd0\x62\x4a\x90\x2e\x92\xc8\x2e\x96\xc6\x16\x68\x82\x10\x5f\xf1\xd3\x3f\x9f\xc7\x63\xf1\x84\x11\x24\x61\xd6\xcf\xba\x1a\x3b\x70\x83\x6c\x9c\xc9\x59\x0c\xf8\x82\x09\x63\xbc\x98\x52\x57\x9b\xcd\x7c\xd2\x20\x21\x18\xf2\x4b\xda\x85\x6c\xed\xa3\x7e\x01\xd3\x44\xcc\x3f\x26\x7f\xc7\x88\x9f\x58\x8e\x45\x7e\x43\x06\xeb\x6e\x52\x01\x4f\xcd\xcf\xfe\x40\xcd\x51\xf9\x75\xf9\xec\x98\x01\x32\xcc\xb7\x00\x1d\x50\x8d\x85\x37\x7c\x70\xb9\x94\x49\x4a\xe5\x8c\x20\x71\x26\x63\xd5\x9f\x61\xca\xcd\xb0\xf9\x49\x7e\x52\x9d\x94\x27\xe1\x7f\x30\xa6\xd7\xbb\x1b\xe4\x9f\x3b\x13\x07\x38\x26\x9e\x08\xc3\x65\x15\x7a\xcf\x20\xcd\x7e\xd8\xc2\x9f\x70\x94\x8d\xf0\xd1\x99\xce\x1a\x0b\x08\xa5\x66\x39\xa0\x84\x75\x82\xa6\x26\x7a\x33\xd3\x5b\x27\xb1\xba\xe1\x58\xc4\x41\x40\x57\x61\x8f\x48\x52\x56\xd7\x49\x83\x92\xa1\xf9\x33\x4e\xb1\xac\x10\x22\xa9\xeb\x91\xb7\x85\x24\x0c\x70\x5b\xd2\xe4\x00\x40\x06\x36\x0f\xc3\xf8\x7e\x75\x8f\x71\x44\xac\xa4\x89\x68\xbd\x49\xaf\x99\xb1\x5d\x1a\x75\x4d\xf3\xa1\xf9\xce\x63\xf0\xa5\x18\xeb\x35\xd5\xf4\xf5\x3f\x5a\x3e\xb9\x9e\x75\xd7\x3f\xbc\xa0\xf7\x10\xa8\xce\xcb\xe7\x29\x99\x97\x65\x89\x78\x40\xf7\xb9\x26\x86\xea\x2e\xba\xef\x23\x13\x82\x86\xd3\x30\xe8\x30\x88\xc4\x64\x76\xe2\x3a\x60\x12\x64\x53\x72\x46\xa2\x0c\x8c\xdd\x1c\x4c\x46\x74\x1f\x67\xc9\x16\xec\x57\x5e\x2b\x59\xc0\x05\x58\x07\xa3\x8d\x65\x5a\x6d\x9b\xdb\x75\x92\xa6\xef\x4d\x33\xf4\x6d\x2a\x6f\xbf\x2f\xf2\x1b\x7b\x7d\xb1\x29\x92\xec\x0b\xdc\x35\xc4\x7a\x34\xe1\x7a\x8c\x7e\x70\x77\x79\x53\x01\xf2\x52\x70\xb1\xdb\xc4\x68\x73\x72\x93\xac\xf2\x1b\xb8\xfa\xd7\x6b\x88\x85\xa5\xaf\xf2\x7c\x0b\x76\x97\x96\x0e\x47\xf7\x7b\x0e\x73\x64\xe0\x2c\x1f\x0f\xe5\xbf\xe9\xe8\xbb\xff\x4f\xe7\xde\xcc\x31\x0f\xab\x84\x97\x00\x58\xc8\x2b\xf1\x9b\xe3\xe0\xc1\x42\x1a\x37\x8d\x64\x4d\x2b\xd8\x0d\xfe\x2a\xa9\x96\x46\x63\x9c\x72\x30\x38\x00\x35\xe2\xdd\x96\x9e\x3b\xba\x5b\x08\x71\x10\x90\x2b\xa9\x48\x02\x97\x8d\x16\x37\x11\xb1\x01\x70\xc2\x19\x3b\x4d\xa2\x74\xa6\xe6\x47\x8d\xc6\x41\xd0\xdc\x79\x13\xe2\x84\xb6\xa4\x3e\xd3\x13\x1c\x23\x09\xd2\x4c\x18\x08\x96\x04\xd6\x6f\x06\xa3\x4b\x18\x47\x2d\x8c\x16\xca\x90\x24\xda\x27\xc6\x97\x30\x1b\x43\x48\x80\x3e\xb2\x4a\xd9\x20\xab\xb0\x3e\x57\x54\xd7\x20\x5e\xe9\xed\x04\xd8\x54\x07\xee\xd6\x70\x45\x44\x8b\x4f\xfa\x53\x04\x49\xb2\x8d\x2c\x12\x58\x24\x41\x40\xca\x4e\x2f\x08\xd0\x65\xc7\x06\xf9\x2f\x33\x86\x22\xd5\x34\xd5\x29\x8d\x15\x30\xcf\x18\xf4\x8c\xc8\x10\x87\xbe\x87\xa1\xd9\x82\x9e\x31\xc3\x69\xb7\xc2\x66\x4c\xfd\x41\xa4\x0f\x8f\x22\x6b\x0d\x99\x3f\x52\x13\x9e\x39\x49\xcb\x41\x96\x38\xfa\x09\x60\x26\xc5\x36\x4e\x0d\x9c\x89\xd2\x3c\xc2\xdf\x24\x64\xfa\x1b\xd2\x35\x5c\x90\x75\x9d\x4d\x69\xde\x26\x36\x1c\xd0\x8e\xb3\xba\x4e\xca\x57\x9a\x2e\x48\x9a\xb3\x69\x5e\xd7\x93\x08\x61\xdc\x9d\x9a\x63\x46\x30\x76\x35\xe1\x66\x7f\x9e\xf7\xd4\x11\xde\xa7\x89\x2e\xdd\xb0\x8b\xc5\x85\x58\xfe\xc9\x74\x51\x1f\x6b\x08\xbc\xdd\xb4\x9c\x02\x46\x60\x1f\xe5\x52\x95\x2e\x2e\x9c\x5e\x4a\x57\x52\x7d\xa7\x47\x3c\xc9\xae\x9a\x2c\x94\xa1\xbc\x31\xfd\xd9\x76\x4b\x94\xe8\xab\xbf\xb7\xd0\xd1\xcc\xf0\xb8\x3c\x7b\xd6\xc3\x7a\xf5\xc7\xd5\xec\x55\xf1\x57\xee\x4f\x39\xe3\xa5\x28\x82\xc0\xd0\xee\x82\xc7\x9e\x6f\x6f\x1c\x04\xab\xb0\xc5\x03\x43\xa4\xe0\xdc\xc9\x45\x41\x40\xcb\x13\xf1\xef\x6c\xbc\xde\x80\xe6\x7a\xb8\x4f\x4c\x03\xec\xb6\x81\x6d\x83\x9d\x99\x97\xfd\x15\x6d\x50\x8b\x68\xd2\x30\x69\x60\xc9\x6c\xb7\x45\x70\x1e\xf6\x30\x8c\xf8\x23\x49\x27\x3c\xe3\xa5\x3d\x60\xb1\xe3\xee\x89\x8b\xe2\x3b\x49\x57\x61\x5f\x3c\xe0\x03\x5b\x89\x51\x00\x78\x5f\x81\xbb\x4a\x53\x5b\x33\x27\x06\x07\x5e\x0b\xf1\x27\x30\xda\xf7\x4d\x99\x68\xb2\x1f\x18\xf9\x87\x2b\xd9\x33\xb3\xa1\x7a\x36\x74\x28\x8d\x13\xc2\xad\x00\x4e\x08\x37\x62\xb9\x61\xa9\xfa\x7a\x39\xb7\x10\xe4\x58\x2f\x05\x3c\x97\x6a\x26\x59\x2b\x8c\xf6\x84\x27\xe2\x7e\xaf\x69\x68\xdf\x97\x3b\xb3\x9e\x88\xc7\x84\x45\xb3\x6c\x7e\x5e\x3c\xfd\x33\x9c\x14\x26\x33\xa9\xd9\xba\x62\xae\xeb\xcf\x67\xc5\xbc\xae\xf3\x59\x71\xf2\x04\x7e\x27\x1e\x62\xd6\xde\x67\x51\x8d\x1a\xd7\x6f\x9c\xa6\x79\xe2\x11\x00\xa6\xb7\x0e\xca\xba\xe4\xee\xb0\x12\xbc\xa3\x28\xd3\xdf\x12\x23\xb3\xde\x45\xeb\xc5\xaf\x6e\x18\x40\xeb\xa6\x72\x1e\x3f\x4d\x40\x19\x99\xcf\xd4\x2c\x9e\xcf\x9b\xb9\x06\xdc\xb0\xde\xa6\xec\x07\xe5\xfb\xae\xfb\x73\x36\xf5\x41\xae\x32\x16\x35\x13\x75\x0f\x96\x75\x7d\x78\x4b\xa3\xbc\xfd\x74\x23\x65\x26\xfe\x21\xb9\xcf\x1b\xb5\xcd\xac\xff\x21\xb9\xa6\x89\x03\x4e\xac\x5a\x5a\x41\xd5\x76\x2a\xb7\xd6\x20\x7e\x57\xe4\x3b\x91\x59\x33\xb4\x32\xc9\xae\x34\x1b\xb9\x30\xd7\x0d\x36\x08\x1a\xc2\x01\xf8\x4a\x29\x94\x35\xee\x8d\x0b\x65\x4f\xa2\x6e\x84\x35\x52\xb7\xb6\xbf\x32\x5b\x89\x02\x2f\x01\x81\x2b\xef\x6c\x9f\x59\xb3\x7d\xee\xf9\xb2\x2a\xfa\x9a\x73\xfc\xca\x9d\x21\xd0\xb6\xb9\x6e\xaa\x48\x43\x59\x11\x32\xc7\x9c\x4a\xfa\x65\x5c\xf3\x9b\xe7\x7b\x5e\x54\x03\xc1\x2a\x78\xf6\x7b\x2f\xf3\x3b\x20\x5c\x55\xc8\x06\x9a\x78\x9b\x79\x29\xb4\x0c\x8c\x7d\x36\xf3\xfa\x72\x6e\x0f\xa4\xba\x05\x1f\x4b\x3e\xe1\x67\xc3\xcf\xcc\xc9\x2a\xd6\x6a\x0f\xb4\xf2\x1b\x41\x6d\xaf\x9e\x34\xbd\xcf\x1e\xab\x71\x73\xd7\xae\xaf\x54\x72\x67\x0e\x33\xfc\xa4\xc6\xf6\x08\xdd\xf3\x6c\xfd\x36\xca\x6d\x10\x64\x7a\x85\x4d\x33\x87\xbe\x7a\xa8\x53\xdd\x73\x0c\x5c\xb0\xe7\x3d\x8e\xdd\x9b\xa4\xfe\x33\xee\xd7\x27\xee\x9d\xeb\x4b\x67\x03\x36\x63\xe3\xb0\x1d\x80\x41\xd5\x6d\xf6\xce\x42\xad\xc9\xb2\x4e\x9e\x61\xad\x73\x0b\x43\x61\x32\xe3\x9e\x60\x9e\x4d\xdb\x59\x23\xab\xbc\xa0\x98\xce\x31\x9d\x13\x80\x63\x44\xc9\x6a\x04\x90\x9a\x9a\x36\x97\x9d\xe6\x2d\xc2\xf5\x2d\xf4\xa9\xab\xbd\x97\x42\x25\x8b\x0e\x36\xbc\xd3\x44\x5f\x8b\x82\xa5\xe7\x00\xa4\xdd\x50\xbf\xc1\x6f\x00\xae\xfd\x26\x72\x34\xa5\xf5\x21\xf0\x6c\x0c\x61\xf9\xc0\x89\xa7\xd5\xf5\x66\x6f\xff\x94\xef\xc4\x40\x32\xec\x89\xf7\xdd\x6f\xee\x7c\x88\x5e\x82\x90\xd0\xb2\x2e\x1a\x6a\xa0\x35\xfd\x07\x1a\x73\xaf\x25\x9e\x78\xd8\x26\x68\xcf\xcb\x1b\xbd\x69\xf5\x9f\x85\xff\x71\x82\xbc\x46\x5e\x52\xf9\x18\x2e\x3f\xbc\x66\xa7\x4f\x3c\xef\x29\x02\x65\x09\x84\xb7\xbf\x15\xbd\x09\xc9\xdd\x00\x89\x7b\x84\x23\xff\x8b\xe4\x52\x71\xa5\x10\xf6\x05\xd1\xda\xea\x72\x93\xdf\xd4\x9b\x64\x25\xd9\xa3\x53\x9e\x29\x71\xda\xe0\x74\x3e\xf2\x60\x5d\x0a\x45\xd9\xbd\x54\x41\x40\x47\x18\xbf\x1f\x35\x76\xe8\xf3\xf4\x5b\x25\x4b\xf5\xcc\x4a\x8e\xaf\x0a\xc4\xf6\x1a\x4c\xa7\x85\x62\x51\x2b\xf8\x45\x61\x5a\x0a\x66\xeb\xd7\x71\xca\xf0\x56\x81\xbf\x98\x07\xf3\x97\x28\x9f\x4f\x18\x0e\x93\xf2\x17\x0b\x47\xba\x67\xfc\x2f\x52\x34\x5e\x3c\x4d\x35\xb9\xea\x87\x9a\xbe\x47\xde\x39\x92\xe8\x87\xad\x50\xb3\x65\xb6\x73\xf1\xe4\x44\xb1\x64\x66\x37\xea\x31\xcd\x04\xec\xed\x6c\x2e\x92\x99\xa7\x1c\x9a\x0b\x3f\x6e\x30\x4d\x42\x23\xdb\x8a\xc4\x1c\xd4\xe8\x5d\xb5\x69\x47\xac\x86\x2c\xe1\x68\xa9\x42\xa5\x77\x3e\x59\xa0\x08\x32\x9b\xb3\x70\x99\x67\xcb\x58\xb5\x1e\x91\xc7\x64\xce\x0c\xc0\x61\xd2\x05\x38\x04\x0c\xf8\x64\x96\xcf\x91\xfe\x65\x5c\x71\xe9\x34\x70\x45\xd3\x84\x52\xf5\xf9\x03\x5d\x61\xa9\x89\x99\x39\x8b\xf6\xd0\x62\x7d\x44\xd9\x10\x63\xe5\xf9\x7d\x6f\x7d\xf9\x61\x3d\xec\x59\x3b\x72\x68\xb2\xa6\x16\xc1\x66\x74\xe6\x69\x45\xff\x22\xeb\x5a\x0f\x2c\xcf\x7c\xf5\x56\x8a\x34\x5e\x0f\xf0\x38\x75\x9b\xc5\x09\xe0\x3a\x9f\x9d\xd0\xec\xb4\x49\xac\xeb\x89\xed\x87\x14\xbb\xa7\xec\x76\x87\x4d\xd7\x1d\x52\x54\x19\x6d\xf8\x95\xd2\x0b\xc7\x45\x25\x9f\xa5\xbc\xe0\xd9\x9c\xf1\xe2\xe9\x59\x10\xc4\xd3\x2c\xa2\x71\x5d\xf7\x33\x9d\xf1\xc9\xdc\xb8\x5d\x3b\xb0\x5c\x09\x9e\xc2\x7c\x74\x06\x01\x48\x4b\x87\x59\x8b\xbe\xbd\x92\xef\x40\x53\xe1\xdb\xfa\x2a\xc6\xf3\x9d\xf2\xd2\x46\x13\x7e\x6f\x6c\xbb\x5e\x02\xe9\x88\xee\xf7\x1c\x89\x48\xd4\xe3\x52\xf6\x3c\x63\xdc\xba\x37\x19\xb1\x38\x91\x65\xa4\x5c\xe2\x7b\xdc\x08\xa3\x8c\xbb\xce\x8c\x5c\x77\xdb\xee\x8b\x32\xd7\x93\x1c\x7b\x29\x9a\xcd\xb9\x01\x25\xd3\xf7\x7e\xdc\x3d\xa7\x23\x34\xdc\x19\x95\x3c\xd5\xfb\x2d\x44\x16\x36\x97\x61\xeb\x0b\x60\x0a\x9b\x07\xf8\x01\xae\xef\xdd\x68\x19\x67\x6a\x5e\xa0\x77\xd7\x40\xc8\x4a\x30\xd9\x98\x76\x86\x37\x02\x26\x36\xf1\x9d\x4c\x8f\x30\x3e\xed\x68\xe2\x8c\x26\xdc\xd0\x67\x38\xf4\x67\xcd\xa9\xf8\x94\x7e\xfd\xc0\x72\x35\x67\x2c\x2a\xfd\x28\x73\x36\xd9\xf0\x03\x8c\x2f\x45\x0a\x5b\x00\xb6\xe2\x01\xff\x7b\x78\x9e\xa1\xcf\x85\xfe\x02\xa1\x66\x85\xf8\x85\x66\x6c\xce\x73\x01\xd8\x82\x6d\xce\x3c\x47\x2d\x4f\x3e\x3b\xb3\x19\x84\x16\x22\x18\xcf\x4c\x90\x1d\x80\x44\xcd\xb9\x8b\x6e\xa1\x67\x70\x5b\x97\x51\x80\xf2\x02\xe5\x1c\xd0\x5f\x30\xd7\x86\x5c\xc4\xc6\x30\x8f\xe6\xac\xa9\xa3\x98\xf3\x9c\x61\x23\xeb\x9a\x9a\x97\x66\x73\x0e\x81\x84\x13\x63\xfd\xa8\x00\x8b\x75\x4f\x97\x83\x63\xcf\xda\xf4\xa8\x45\x54\x1c\x6d\x4a\xb9\xe4\xb6\xb8\x23\x51\x5b\x80\x52\xcd\x77\x0c\x04\x22\x1f\xad\x3b\xc5\x0d\xdf\xbc\x0e\x1e\x30\xc8\x2a\xb0\x04\xc0\xb9\xa0\x0d\x70\x13\xdb\x6e\x1b\xef\xe8\x92\xc7\x8a\xa7\x8c\x6f\xa9\x6d\x2a\xb0\x94\x41\xe0\xdf\x5a\xf8\x92\x94\xf1\xb4\x89\x71\x69\x72\xd8\x7b\x13\xea\xd2\xa4\xea\x6b\xdb\x1c\x1b\x22\xca\x04\xbf\x34\xa9\xfa\xda\x91\x4b\x93\x86\x77\x6e\xa3\xdb\xca\x82\x3a\x2a\x50\x71\x4b\x32\xe2\x2c\xd9\x46\x29\x47\x8c\x71\xff\x93\xf7\x8c\xf1\x74\xbf\x08\xdd\xce\xda\xf8\x10\x94\x8a\xdf\xdb\x4d\x22\xba\x27\x8f\x49\x34\x1b\x98\x8a\x46\x7e\x69\x56\x39\xba\x15\x5b\x29\x4e\xd2\xcc\x30\x56\xbc\x39\x46\xd2\xf4\x26\xdb\xcf\xf7\xdc\x54\xdf\x91\x3f\xb7\x54\xb2\xa9\x41\x04\xc7\xdd\x29\x92\xa2\x89\x49\x7d\xe4\x5b\xbe\x4c\xc0\x61\xac\x63\x5d\x9b\x09\x98\x75\xfe\x26\x97\xcd\x45\xfb\x16\xf1\x79\x5a\x49\x0e\x89\x5f\xa1\x3d\xa2\x99\x60\xed\xcf\x3e\x60\x4e\xcd\xd7\xf6\x30\x2b\x81\xd3\x3d\xab\x42\xd3\x77\x7c\x83\x70\x0d\x9a\x79\x02\x0c\x4c\xe0\x38\xf9\xb6\xa5\x37\x2e\x40\x54\x76\x70\x65\x9c\xac\x6f\x35\x3b\x45\xf0\x73\xc1\xb2\x36\xc3\x21\xab\x6b\x03\x1c\x07\x0b\xb3\x1d\x82\x00\x62\x28\xb0\xb0\xca\x20\x75\x15\x04\x34\x76\x37\x62\xc2\x4b\xbd\x42\x5d\x64\x00\xee\xdf\xf8\x3b\x6c\x53\xa6\xae\x4b\xca\xf6\x8c\x37\x29\xe3\x31\xdf\x0c\xec\xd8\x43\x69\x4d\xa1\x93\x13\xde\x84\x54\x80\x36\x9a\x21\xab\xeb\xb8\x1d\xaa\xc0\x44\xe3\xb2\xc4\x6c\xce\x95\x6a\x9d\xff\x58\xcb\x10\xa0\x2a\x5a\x36\x26\xc8\x7b\x82\x42\x94\x27\x42\x08\xba\x9d\x12\xcd\x83\x92\x88\x60\x07\x22\xe6\x00\x5c\x8f\xf0\xb4\xe7\xce\xf3\x4c\xbf\xd3\x14\x6d\x99\x67\x2a\xc9\x2a\x79\xb4\x15\xa3\xc9\x7e\xa7\x69\xd1\x5d\x10\xdc\x81\xb6\xa5\x51\x3a\x14\x6c\x9f\xac\x29\xad\xc4\x40\x94\x1e\x56\xd7\xbd\xd4\x1d\x6b\xac\xa2\xd7\xdd\xe8\x3a\x41\x40\xb3\xd0\x1a\x84\x88\xd9\xca\x5d\xf3\xe6\xf2\x67\xef\xfa\x97\x39\x37\xa3\x9e\x42\xdb\x2c\x14\x33\xf8\x62\x34\xb3\xa6\x51\xad\x36\xb8\xd7\x74\x39\x00\xf3\x0e\xe5\xa6\x4b\x91\x46\xb4\x42\x18\x5b\x08\xa9\xd6\x45\x92\xaf\xeb\x94\x0f\x15\xe7\x58\x88\x31\xc6\xa9\x77\x5a\xb6\xac\x6b\x73\x77\x82\xa7\xee\x3a\x0d\x05\xcb\x91\x48\x07\x81\xe7\xd7\x69\x1e\x2b\xd0\x43\x56\x00\x35\x05\x24\xd1\xe7\x05\x1d\xe8\x74\xba\x67\xa6\x0f\x52\x40\x33\x77\x4f\x78\x2a\x5c\xbd\xcb\x29\x21\xd1\x12\x4e\x16\x1c\x78\x76\xab\x45\xe0\x54\x63\x7b\x15\xce\x0b\xdd\x28\x38\xd3\x81\xa1\xd9\xec\xe5\x6b\xca\xcf\x26\x73\x7f\xbc\xfc\x27\x67\xfe\x93\x5f\xfc\x27\x4f\xe6\x7a\x92\x57\x62\x74\xc6\x77\x4c\x7f\xf4\xdd\xd4\xbe\x39\xc9\x8e\xef\x82\x80\x6e\xc5\x9d\x11\x8a\x58\x74\xe7\x87\x38\xb1\x54\x81\xdf\x5b\xeb\x06\xdd\x29\x79\x10\x50\x5b\x40\x8c\xb6\x8c\x6f\x83\xc0\x1b\xd4\x7e\x9f\xba\x69\xb9\xad\x6b\x33\x90\xdc\x87\xbb\xb2\xb4\x87\xef\x3c\x54\xfa\x82\xeb\x85\xc1\xb0\xed\xb1\xa2\xdb\xa9\x5e\x20\xd1\x84\x17\x7c\xc3\x38\x54\x77\xa7\x3f\x46\xaf\x9e\xca\x68\x56\xb6\x7a\x58\x41\xa5\x65\x53\xcc\xaf\x98\x30\xb6\x9f\x37\x54\xb6\x1b\x90\x65\xda\x16\x1c\x2c\x65\x96\x2c\x6a\x3f\x00\x8e\xcf\x1a\x69\x96\x3b\x29\x57\x3d\x80\x0d\xe4\x33\x65\x10\x0c\x44\xf3\xf1\x99\x68\xc9\xa2\x7b\xbb\xef\x46\x59\x5d\x8f\xb2\x20\x50\x75\xbd\x05\x2b\x5c\xd9\xb0\xb9\xd2\x32\xd2\xf8\x5c\x05\xc1\x68\x0b\x46\x79\xca\x0b\x82\xbb\xbe\x0d\xf3\xf5\x7a\x5a\x38\x96\x58\x4c\x22\x7b\x40\xe6\xdc\x5c\x9b\xa7\x00\xb8\x6f\x6f\x74\x4f\xa2\xc0\xad\xbf\xa7\xf4\x2b\xf1\x92\x67\x4d\xf2\x3c\x1a\xce\xe2\x38\x7c\x7b\x58\x57\x20\x11\x0e\x02\x40\x46\x2a\xdc\x7e\x62\xae\x20\x78\x0a\xe3\x45\x98\xa7\x2b\x51\x38\x26\x84\x37\x97\xfe\x2e\xa1\x59\xab\x3c\x5d\xb1\x20\x80\xdf\x46\x41\xa6\x6b\x30\xef\xe9\x84\x29\x31\xe9\x6c\xaf\x39\xf4\x96\x16\x7a\x1d\xaf\xe4\xa7\xfc\xb0\x07\x35\x82\xdb\xa0\x49\x73\x21\x19\x10\x0f\x77\x18\xcd\x27\x16\xc3\x5d\x4f\x35\x2d\x51\x02\x37\x23\xa9\x3b\xdb\x56\x7b\x2e\x8d\xa3\xb6\x79\x76\xe8\x88\x4f\x74\xa9\xb8\xc4\x50\x3f\xd0\xa3\x18\x16\x9c\xf1\xb8\x1b\xeb\x5b\x89\xd2\xa0\xb6\xb5\x67\x14\xcf\xd9\x39\x4d\x1c\xa2\x37\x40\xda\xac\x93\x2c\x29\x37\x40\x81\x15\x70\x9a\x74\x34\x61\xfb\x26\x70\x2d\x3e\x17\x31\xd7\x5b\x15\x86\xcc\x82\x5e\xf3\x42\x4f\xc5\x46\xd9\x89\x5d\x6b\x9e\xf3\x98\x75\xc5\x9e\xd6\x0a\x18\xc2\x39\xd0\xd9\xad\xb5\x25\xde\x71\x45\x33\xd7\x9a\xc1\x50\x2d\xe8\x98\xed\x87\x6b\x51\x06\xbd\xcf\xba\x19\xf4\x82\xcc\x0c\xfb\x6b\x63\x23\x46\x10\x8c\xc2\x59\xf4\xb7\x82\xbb\x40\xcf\x03\x53\x5b\x82\xc7\xad\xd3\x47\xa3\xbc\x86\x18\x5a\xfa\x2f\x34\x3d\x08\x0a\x00\xe8\x62\x4d\x28\x46\xf0\xc4\x8d\xfb\x19\x33\xc7\x55\x34\x85\x50\xe2\x73\xae\x5a\xc9\xc9\xc9\x39\xcb\x75\x11\xcd\xbf\x8e\x2c\xf8\x80\x6b\x29\x3c\x82\xb6\x8e\x20\x68\x1d\x85\x04\x3d\xbb\x70\x50\x33\xc6\x95\x26\xf1\xb9\x05\x4f\x4c\xf8\x19\x63\x47\x23\x15\x04\x99\xe6\x2a\x06\xe2\xf7\xe0\xc8\x0f\x68\xf0\x6c\xef\x52\x17\x18\xe7\xa1\x2e\xe5\x99\xdf\x55\xbc\x10\xd9\xcc\x76\x2b\x99\x43\xe4\x8f\x76\x2f\xcf\xdb\xdd\x5c\x4c\x8b\x46\x2e\x46\xbc\x5c\x33\x25\x47\x13\xde\x89\x81\xa4\xc7\x16\x80\xc2\xb1\x5b\xf1\xd7\x73\xd3\xd5\xdb\x8f\x6a\xfa\x54\x61\x9f\x2a\xec\x53\xe3\x8f\xa3\xbb\x52\x99\xae\x44\xc7\x09\x38\xdb\xf4\xba\x52\xd7\xe2\xba\x51\x41\x37\xa2\x6e\x6d\x72\xae\x9e\xc6\xe0\x75\x52\xcc\xd4\x3c\x08\xf4\x5f\xd3\xd8\xd6\x8d\x47\x9b\xec\x6c\xb7\x1f\xb5\x67\xad\x93\x6f\xc3\x4d\x72\xe4\x17\x39\x72\x92\xdd\xf3\x6f\x1b\x0e\x6a\x9d\xcd\xd4\xfc\xc8\xfc\xfa\xfb\x4e\xcb\x26\x07\x35\xd6\x75\x3d\x14\xb9\x22\x1b\x36\x80\xc6\xd5\x6d\xa9\x58\xae\xa8\x82\x9e\xc4\x8a\x7d\x87\x84\x32\x4d\x56\xf2\x45\x7e\x93\x45\xb9\x32\x3c\x2e\xe3\x90\xf8\xd3\x0e\x92\xa0\xfd\x26\xe9\x13\xc6\xd4\xd0\xc9\xe6\x33\x19\xd7\x74\xf7\x75\xd6\x18\x01\x61\x1d\x7b\x48\x7f\x5f\x29\xef\x01\xd4\x84\x0f\x4c\x45\xcd\x33\x53\xdd\xfe\xf7\xfd\x16\xfa\x44\xdd\x7e\xa5\xb2\x14\x1a\x3e\x0f\x67\xa3\x98\xcd\x1b\x0d\x6e\x97\xe6\x82\x13\x12\x9c\x57\x63\x66\x98\x13\x2d\x4d\xed\xb9\x7a\x9a\xf9\x90\x97\x54\x0a\x30\xce\xa7\xc6\x4a\x1f\x17\x6e\xe6\x66\xd6\xc9\x09\x3f\x63\x47\x99\x93\x4d\x8c\xd6\x3b\xdf\x51\x50\x01\x1b\x75\xb0\x27\x6a\x8b\xf6\xb1\x06\xb6\xc3\xf2\x24\x56\x69\x1e\x17\x00\x75\xd4\x52\x4c\x8b\xb3\x6f\xbc\xc7\xfe\x97\x49\x55\xd7\x54\x02\x59\xd4\xe5\x6c\x41\x50\x4c\xb4\xb2\xa1\x71\x34\xf7\xb6\x7b\x71\x5f\xa6\xf9\x4d\xf4\x9f\x93\x09\x5f\xc7\xa5\x8a\x9e\x4c\x26\x8d\x86\xff\xcf\x93\x89\xd9\x72\x57\x52\x33\xc5\x6d\x5d\x9c\x0b\xc4\xa7\xab\x03\xd0\x6b\xc7\x66\xa8\x79\x5d\x2b\x0c\x27\x04\xe4\xdc\xa3\xf0\x5e\x90\x7f\x6f\x03\x6d\x29\xd4\x33\x50\x06\xf4\x9b\x8f\x66\x3f\x36\x57\x62\xf0\xf4\xba\x27\x99\x87\x30\xfa\xb9\xea\x3f\x42\xb8\x12\xf2\x3b\x01\x00\xf0\x48\x8f\x30\x76\x64\xc0\x24\x1a\x30\x3a\x0b\xc3\xff\x3e\x13\x04\x51\x24\x01\xed\x4f\x73\xf1\x3b\x85\xc0\xdf\x72\x25\x94\xc1\x45\x91\x2b\x4e\x1f\x0a\x22\x00\x65\x05\x51\xc4\x82\xcc\x98\x08\x02\x7c\x15\xc2\xc5\xdf\xec\x73\xe1\xde\xb4\x37\xc6\xd0\x95\xe2\xa9\x12\x06\x8e\x3a\x56\xaa\xf8\x01\x9c\x63\x8f\x5a\x0c\x93\x4e\x7f\xf0\xdc\x7e\x01\x45\x0f\x1e\x8c\xf3\x06\x33\xe3\x0f\x04\x9d\x6b\x0a\x1d\x8a\xf9\xd8\x6b\x57\xfb\x4c\xa0\x11\x80\xf5\x16\xfe\xcd\x08\x6c\xc5\xfe\x0f\xfe\x3c\xd1\x3f\xac\xe7\x3e\xdb\x02\x14\x99\x2e\x40\x33\x6a\x4d\x00\xa8\x41\xae\x6f\x39\x99\xd7\x35\xd5\x6c\x1c\xf4\x1c\x1e\x4b\x77\xfc\xe4\xe0\x44\xdd\x03\xfb\xd6\x84\xd9\x5a\x71\x4d\x2b\x15\x39\xf8\x7c\x3f\xcc\x31\x90\x71\x91\x4d\x21\xad\xd5\x13\x10\x22\x39\x69\xec\xcf\x12\xdf\x0a\xaf\x10\x89\xb3\x3f\x53\x8c\x4d\x8b\x88\x76\x82\x43\x28\x9e\x8d\x09\x61\xfa\x73\x92\xc6\x2e\x2c\xb1\x52\x33\x56\x61\x43\x61\xea\x0a\x8c\x1e\xa0\x10\x06\x9b\x3e\xb6\x8d\x60\x53\x13\x9d\x18\xf8\x5c\xfb\xf9\x11\x62\xa4\xdf\x77\x23\x5d\xa3\x3d\xad\x3f\x1d\x83\xc0\x4c\x52\x0c\x4d\x09\x10\x32\x76\x42\x9b\x4d\xcf\x4c\xd5\x23\xff\xf0\xac\x17\x2c\xc3\x44\xec\x34\x79\x85\xe6\x84\xc0\x36\x74\x70\xca\x75\x0f\xd0\x94\x66\x8b\x9d\xae\x4f\xf3\x79\xbd\xc0\xc4\xe8\xcc\x28\x92\x59\x01\x71\x43\xfa\xf8\x2f\x19\x4c\xca\xaa\x77\x0e\xeb\x87\xce\x05\xd6\x5a\x4d\x3b\x23\x99\x99\x13\x45\xaf\x2e\xd4\x56\x3a\x00\xb6\xfe\xcc\xc1\xc0\x80\xa6\xcd\xa7\x9f\x6f\xc6\xa7\x57\x6c\x90\x63\x48\x95\x31\x05\x74\xc3\x76\x04\x49\x6d\x91\xb5\x15\xe7\xae\x33\x75\x9d\x01\xbe\xe6\x37\x75\x7d\xf1\x9c\xc3\x5f\x50\x7e\x19\x8b\x4c\x53\xcb\x34\x86\x99\x62\x9e\xe7\x8c\x27\xd6\x5b\x6f\x69\x8e\x6d\x11\xeb\x08\xe9\x59\x6d\xc1\x0f\x6a\xc4\x3e\x83\xf0\x56\x6b\x93\x31\xae\xf5\x13\x9d\xd4\x9c\xe2\x6e\x54\x43\x2e\xa8\xec\xc4\xe0\x46\x7f\xbb\x63\xe2\x1d\x96\xee\x54\x0b\xc1\xc2\x5f\xd4\xc6\x20\xc5\x0f\xaa\x92\xc6\x25\x20\x5f\x13\xcf\xe4\x79\xe5\xd7\xd0\x3e\xd8\x90\x6c\x2a\xa3\x21\x57\xda\x76\xc3\xda\x81\xca\x76\x7d\x1c\xdc\x2e\x09\x45\x63\x80\x87\x49\x68\x07\x4e\xf7\x61\x12\xea\x79\xb6\xcd\xb0\xfa\x57\xc9\xed\x4c\xce\xeb\x5a\xce\xbb\xa4\xb4\xd7\xbe\x7f\x93\x94\x1e\xa0\x91\x7a\x8b\xb1\x0d\xc0\x4d\x3e\x31\x29\xd6\xb4\xb3\x45\x00\xbf\x9e\xc0\xa1\x25\xe1\x57\x12\x33\x9d\x19\x62\x90\xee\x2c\xb1\x8a\x2f\xd1\x3e\x7b\xd8\xac\xa5\x43\xf4\x88\x8a\x2f\xc1\x44\xd8\x73\x20\x9f\x82\x7d\xe1\xeb\x4c\xb3\xcd\x67\x13\x16\x2d\x95\xc5\xd8\xb3\x58\x21\xac\xae\xd7\xfd\x44\xc0\x57\x2b\xe4\x7a\x3a\x89\x4e\xce\x34\xbd\x32\xbd\x13\xdd\xaf\xf3\x22\x22\x1b\xb5\x4d\x5f\xe5\x05\xe1\x30\x39\x23\x9c\xa3\xba\x20\xd1\xc3\xd6\xe2\x12\x60\x83\xf1\x0c\x43\x2c\xf3\x70\xe0\x93\xa4\xef\xb9\xdc\x9c\xfb\xab\xb6\x03\xbf\xef\xbd\x6f\x6b\x84\x9e\xe2\xc8\x09\x76\x4d\x4e\x06\xea\x56\x41\x40\x55\xa7\xf0\xd7\xbe\xa5\x23\x27\x99\x51\x22\x9c\x14\x32\x5e\xbd\xcf\xd2\x3b\xc2\xc9\x36\xbe\x7d\x03\xcb\x83\x70\xb2\x94\x69\x6a\xfc\xac\xcc\xdd\x07\x63\xdf\xc0\x49\x91\xdf\x5c\xec\xe2\x4c\xa7\xe7\xa9\xb9\xaa\x4a\xf9\x36\xde\x11\x4e\xd6\x45\xbc\x95\xdf\x19\x7b\x56\xeb\x06\xf1\x72\x85\x20\xcc\xbe\x2c\xa6\x19\x12\x37\x81\x01\xfd\xa2\xb5\xcb\x83\x70\xd9\xb5\x76\x8c\x57\xab\xe7\x30\x7c\x03\xb6\x6c\x3e\x2a\x18\xda\x35\x6e\xa9\x6c\x43\x0f\xb7\x97\xb3\x96\x70\x4c\xcc\x40\x5b\x2f\x95\x9e\xf4\xab\xf8\xce\x08\xe1\xcc\x00\x53\x51\x25\x80\x8a\x39\x1c\x70\xb3\x95\x01\x3d\xa8\x6c\x3c\xae\x44\xec\x14\xcd\xc0\x42\x41\xb3\x1c\xde\x99\x01\x39\x26\xe3\x8d\xe6\x97\xc7\x9a\xb8\x1a\x9c\xfd\xc9\x79\x2e\xd4\x2c\x86\xd2\x45\x63\x30\x7f\x4c\xc6\x39\x64\x03\xd7\xf7\x62\x2c\xf0\xee\x28\xd1\xcb\xb0\x14\x1b\x08\xa7\x69\xcc\xd6\x7a\xa4\x97\x97\x0e\x72\x09\x01\x19\x8c\x6f\xe6\xff\x8d\xbe\xf3\xaa\xfe\x9d\xee\x1b\xf5\x40\x04\x5a\x92\xa4\x26\x09\xb6\xfd\x84\xfc\xff\xd3\xe1\x50\xdf\x50\xaf\x7f\x7b\x72\x76\xce\x0a\x51\x38\xac\x26\xf7\x88\xff\x0f\x86\x01\x25\xed\xee\x30\x78\xa7\xb1\x66\xe7\xe3\x85\x67\x65\xac\x65\xb7\xee\x7e\x79\x74\x28\x9c\xa6\x0a\x82\x62\x8a\xc1\xb0\xbd\x59\x6d\x54\x12\xad\xa1\x62\x11\x9c\xd4\x0e\x0c\x6e\xd6\x0c\xae\xd7\xe0\xd6\xe0\x66\x6e\x70\x01\x42\x99\xed\x0f\x04\xeb\xc4\xf9\x85\xd6\x0e\xc9\x9a\x16\x08\xb0\x27\x26\x3c\x17\xe6\x15\x3c\xc6\x21\x3e\x57\x22\x9e\x25\x30\x28\x79\xb8\x89\x4b\x7c\xa7\x62\xd3\xbc\xd5\x6c\xc5\xa2\xbc\xf9\x30\x65\x94\x85\x0d\xe4\x77\x10\xb8\x3e\x41\x3f\x14\x3d\x87\xdc\x44\x0c\x82\x47\x4d\x78\x7d\xb2\x58\xb8\x4d\x60\xb1\x20\x0e\x0b\xba\x6c\xf1\x36\xbd\x24\x37\xb8\xca\x28\x78\xe5\x94\x90\xc8\x57\x11\xb7\xeb\x05\x36\x88\x21\x60\x89\xf9\xac\xe1\x25\x28\x26\x46\x2f\xa6\xa7\x9a\xd4\x53\xcd\xce\xf4\xc2\xce\xf4\xee\xfc\xa6\x66\x82\xc3\xfc\xc7\x49\xee\xe6\xb2\x82\x38\x80\x36\xfe\xda\x91\x8b\xb8\x66\xb8\xc8\xad\x12\xa7\x9f\x8b\xd3\xab\xb6\x5c\x7a\x1d\xa7\x87\xe8\x83\x45\x4f\x71\xaa\xee\xce\x62\x9e\xd2\x42\xe8\x19\x35\xa4\xda\x34\x9c\x4f\x72\xd4\x03\xf6\x09\x02\x7b\x1c\x9e\x88\x62\xda\x9e\x62\x76\x12\x5e\xc7\x29\x65\x2c\x92\x6c\x9a\x08\x42\xa2\xc6\x53\xc9\xcc\xf9\x64\x9a\x8c\xf5\x83\xf6\x22\x49\xd0\x5a\x06\xad\x3e\x92\x21\x8c\x27\xa3\xdb\xd3\xc3\x27\xc7\x84\xec\x19\xe3\xc0\x56\x5d\xc7\xa9\x67\x10\x6d\x22\xb3\x74\x93\x87\x81\xcb\xc0\xbc\xc6\xf0\x59\xca\xc7\x0a\x6e\xa6\x5d\xc2\x09\x08\x56\xe0\x07\x05\x55\xa1\x9c\x95\xe8\x39\xc2\xa2\x64\xda\x6e\x43\x32\xd0\x80\xe4\xa1\xb7\x5f\xf5\xdf\x4e\x33\x81\xd6\xe0\xcd\xbb\xd9\x34\xeb\x71\xdc\x34\x13\x09\x36\x86\x4d\x1d\xa4\x0a\xdd\x42\xc0\x6d\x23\xb6\x66\xba\xb3\x32\x1b\x89\xac\xc5\xef\xda\xd6\x45\x36\x0c\xee\xd7\x71\x80\xa6\x3d\x3e\x58\xf3\x08\x4c\x8f\x37\x8a\x1a\xe4\x2d\x09\x8e\x5d\xc8\xce\x1c\xa8\xd5\x4c\x51\x1b\x53\xb5\x04\x06\xbb\xcd\x29\xc5\xc2\x28\x99\x4e\xcc\x59\xb3\xc1\x33\x2d\x45\x0c\xea\x81\x08\x62\xa1\xc4\xd3\x7c\x7c\x16\x59\x43\x4a\xb4\xde\x10\xf9\xd3\xc9\xb4\x8a\xe2\x69\x0e\xa6\xa0\x15\x7a\x76\xac\x29\xa5\x20\xc5\xba\x40\x23\x9a\x73\x2c\x20\x08\x6a\x10\x8c\x32\x17\xb8\x24\x08\xe8\x28\xf3\x19\x33\xfb\xa0\xae\x47\x5f\xa8\xff\x84\x13\x1b\x1e\x96\x30\x8b\xd9\xb6\xa0\x99\x59\x01\x3c\x76\xfb\xe5\x91\x51\x53\x2a\xb7\xbf\x94\x3d\xff\xa8\x5e\x1c\x6c\xbf\x73\xf4\xaa\xf8\x22\xad\xc3\x87\x6f\x3a\x8a\x21\xfb\xc1\x6c\x34\xf6\xbe\x4c\x34\x90\x3c\xcd\x44\x34\x15\x62\x34\x6c\xc6\x73\xa0\x38\x70\xc6\x34\x9a\x34\x23\x0a\xe8\xce\xad\xb1\x10\x27\x67\x8c\xe7\xfb\x7d\x8b\x27\x35\x0a\xb6\x46\xa3\xd7\xe1\x15\x5b\xcb\x6f\xde\xd7\x0d\x40\x7f\xf5\x5c\x59\x9c\xc4\x6a\xd1\x03\xbd\xef\xa0\xd2\xf6\x2c\xd0\xca\xfd\xbe\xd1\x21\x82\x08\xd0\x7e\x23\x60\x9e\x1c\xa4\x22\x3d\xe4\x5c\x33\xaf\xa7\x24\xcf\x48\x64\x55\x84\x0c\x44\x0d\x13\xcb\x43\x90\x3c\xb3\x61\x3d\x92\xec\x18\x23\x75\xde\x19\x99\xdd\x3c\x80\x9f\xda\x86\xe6\x80\x60\x1e\x8f\x4e\xf9\x75\xbb\x21\x43\xf8\xf8\x47\x6e\x61\x1a\x0c\x3f\xde\x0f\xe7\xa1\x57\x8d\x1f\x37\xd3\xd8\x42\x61\x8c\xb7\x6b\x31\x4b\xea\xba\x98\xf3\x2b\xb1\x36\x54\x99\x1b\x60\xde\x29\xc6\x2c\x8c\x14\xbf\xf4\x9e\x39\x1c\x6a\xc8\xd0\x04\x62\x6a\x62\xb4\x45\x33\x8c\x52\x25\x56\xa2\x12\x89\xd0\xd5\x73\x2d\xf8\x26\x1d\x87\x5c\xff\x7e\x74\x67\x24\xbd\xab\x71\x2f\x7a\xa2\x9e\x6a\x57\x0d\xef\x16\x02\xd7\x16\x04\xf4\x52\x5c\x79\x6f\xe5\x57\xe2\x32\x44\xfb\x03\xc6\x2f\x4d\x9c\x38\xc6\x97\xc2\x2b\x1a\x21\x9b\xad\xc7\x6a\x7c\xa5\x37\x01\xe5\x07\x81\x51\xad\x20\x30\x57\xbc\x1f\x5b\x34\x08\x14\x63\x61\x52\x7e\xc2\xa6\x89\x7c\xfa\x24\xfa\x86\x7b\xbd\x20\x2e\x9b\x90\x83\x5c\x79\x71\xaa\x84\x97\x69\x3a\x18\x68\xee\xf2\x77\x03\xcd\xa1\xa2\x48\xd9\x30\x53\x06\x68\x53\x99\x38\x1a\x7a\x97\xb1\xf1\x38\x12\xc6\x33\x61\x29\xf9\x4c\xcd\x23\x9f\x0e\x64\x1c\x94\x06\xbb\x5e\x74\xb2\x2b\x44\x4c\xcb\xeb\x7a\xb4\xb3\xbd\x6f\xc2\x88\xb9\x7b\x1b\xfd\x0a\x02\xd2\x83\x6a\x32\x0f\x82\xd1\x2e\xb4\xf1\x71\xf4\x48\x82\x15\x18\x06\x03\xdc\xb5\xa2\xef\xd5\xf5\x15\xb7\xe3\x9c\x8e\xaf\x20\x54\x97\xf0\x01\xc1\xd8\x79\x79\xde\x49\xb9\x46\x0a\x58\x32\x5e\x89\xf2\xa8\x12\x9a\x83\x68\x03\x35\xd5\x75\xc1\x82\xc0\xe4\xab\x7c\x48\xaa\xba\xae\x4c\x55\x7f\x4f\xb2\x55\x7e\x53\xd7\x92\xed\xad\x70\x40\x4b\x71\x0d\xd2\x81\xa6\xe2\xea\x60\x4c\xb3\x95\x28\x39\xae\x03\x11\x7f\x7b\x36\x4d\xa3\x9d\x8b\x20\xa8\x3f\x87\x6e\x6c\x34\xb8\x5e\x28\x38\x2c\x35\xb7\x41\x13\x4b\x1b\x9f\x0e\x6c\x0a\x6c\xe0\xcf\x92\x67\x10\x97\x72\x19\x04\xe5\x6c\x39\x6f\x9e\x04\xc1\xf7\xb4\x64\xa0\x09\x30\xe3\xdd\x2a\x82\x7a\x51\x17\xf8\x46\xf5\xa2\x76\x34\x8a\x16\x6c\xfc\x95\x1e\x57\x35\x10\x0a\x84\xb2\xba\xde\x39\x1b\x14\x63\x23\xd0\x24\x98\x97\x5e\x87\x3b\x38\x60\xcb\x58\x5d\x8f\xbe\x07\x50\x84\x65\x10\x6c\x69\x32\xbb\x82\x0e\x34\x7c\x18\xad\x44\x82\x9f\x41\xf5\x2f\xcc\xc1\x26\x22\xa5\x5b\xd1\xe2\x8a\x1f\xea\xf1\x20\x58\xf5\xa3\x68\x5e\xf1\x6b\xc5\xb8\x7e\x17\x65\x0f\x96\x1c\x8a\xc6\x83\x85\xfb\x6d\x30\xeb\xa7\xb2\x6d\xad\x00\x3e\xcf\x45\x56\x2b\x4d\x28\x90\x03\x76\x1a\x8e\xee\x7a\x34\x83\x67\x1c\xb5\xf8\x9d\xc8\x2d\x93\x3d\x3b\xea\xbc\x9f\x16\x88\xb8\xa7\x58\x0f\x13\xb5\x47\xbf\x7d\x9d\xe7\x81\x13\x9f\x76\xdd\xba\xa1\xca\x22\x53\x9a\xc4\x1f\x4c\xa0\xd5\x43\xc6\xc1\x9a\xe3\xf7\xdc\xc1\x8f\x87\xea\xcc\x00\x8b\xd5\xdf\xdb\xd0\x9b\x72\xb9\xa1\xf7\x18\x13\xcb\xc5\xaf\xc2\xf0\x55\x7e\xb0\xa9\xa1\x17\xb7\x0f\x66\x0d\x35\x32\xfd\x46\x15\x77\x21\x82\xda\xf1\x19\x71\xd7\x6b\x91\x2e\x85\x8c\x42\xb5\xeb\xfa\x59\x1a\xe8\xc7\x0e\xc1\x40\x06\xbd\x31\xd9\x2b\xb8\x62\x47\x7a\x9f\xea\x4f\x3d\x89\x5f\xcd\xfd\xbc\x9c\x26\x80\x09\x72\x06\x90\xb3\x18\x09\xf3\xdf\x7f\xf1\xc9\xd9\x51\x32\x6d\x55\x9f\xb0\x88\x16\x83\x73\xb9\x69\x8d\x31\x03\xd4\x15\x80\xdb\x37\x70\x15\x57\x4a\xc8\x30\xcd\x97\xe8\xde\x71\xa9\xbc\x53\x76\xbe\xd0\x82\xe0\xf4\xf4\x68\x11\x82\xe2\xf5\xe7\xb7\x6f\xfa\xf8\x7e\xa0\xbd\x51\x75\xdd\xb3\x28\x72\x91\xdc\xf4\xa4\x05\xa8\xca\x4c\xc0\xcc\x97\xe1\x8b\xf7\x6f\x3f\xe8\x0a\x0b\x86\x15\xbf\x2a\xf2\xed\x05\x14\x07\x4e\x42\xde\xaa\xd3\xdb\x6d\x4a\x98\xc1\xa1\x2c\xd8\xbd\x8d\x7c\xbd\x6f\x10\x03\x47\xc0\x5c\x9a\xf3\xd9\xf2\xbb\xbb\x4f\xf1\x95\x16\x7b\x28\x81\x2a\x0b\x59\x14\x79\xe1\x99\x23\x2f\x42\x48\xa1\xe4\x75\x76\x1d\xa7\xc9\xea\xf8\xe7\xb7\x6f\xa2\x63\x32\x86\x10\x21\xd0\x13\x37\xfa\x6b\x67\x9f\xe7\x8f\x4e\xf9\x4b\x90\x80\xa7\x9f\xb3\xd3\x2b\x7e\x6b\xd8\xae\xb2\xba\xdc\x26\xca\x1c\xa2\xd4\xc9\x36\xbe\x92\x75\x21\x4b\xa9\xea\x75\x92\x4a\x38\x55\xb9\x78\xf0\xf8\xe5\x8b\xbc\xbb\x92\x19\xf3\x8f\x5a\xde\xab\x8e\x91\xda\xa0\xcf\xb5\x59\x2f\x9e\xe3\xbd\x1e\xef\xfb\xac\xae\x6f\xac\xae\x9b\x4d\xf5\x40\x27\x2c\xd2\x35\x8e\xc9\x8c\x8c\xfb\x91\x3c\x9c\xae\x3e\x99\xaa\x88\x68\x36\x61\x4e\x78\x62\xc1\xf5\x6d\x10\xf1\xac\xae\x6d\xc9\x91\x10\x97\xc0\x28\x9b\x80\x62\x2d\xdb\x2b\xc5\xdc\xab\x12\xa8\x49\xcd\x92\x39\x56\x06\xd3\x25\xde\x8a\xe1\xa3\x40\x80\xb4\x1c\x5a\xd9\x10\x5d\x50\x51\x16\xa9\xa3\x62\x66\x2d\x95\xe6\x42\x66\xcb\x7c\x25\x7f\xfa\xf8\xfa\x79\xbe\xdd\xe5\x19\x06\xdb\x1b\x13\x41\xc6\x03\x4f\x7c\x51\x94\xed\xfb\xbd\x09\x98\x58\xe1\xaf\xbf\x55\xb2\xb8\x03\x5f\xd2\xa4\xfc\x90\xc6\x49\xe6\x4c\x02\x6d\x67\xb7\x20\x27\x12\x14\xc6\x35\x37\xc6\x1b\xb1\xdc\xf5\x9a\xe7\xab\xf3\x5e\xd1\x8c\x83\x7f\x8e\x1e\x22\x77\xa8\x67\xf8\xb4\x80\xb0\x8e\x75\x64\x29\x8b\x24\x4e\x87\xc1\xd4\x4c\x37\x52\xa3\x66\x32\x19\xf1\x3b\x18\x80\x5e\xf8\x49\x43\x68\x6c\x03\xa0\xb9\x68\x7e\x61\xce\xda\x51\x27\x25\xcd\x12\x6a\x24\x6d\x39\xf5\x99\x3f\xa3\x22\xdc\x33\x6b\xa6\xd9\xab\xce\x29\x43\x5a\xce\xe1\xba\xbb\x74\x1f\x1b\x55\x4d\x52\x52\x12\x59\xf9\x96\xb0\x20\xb8\x30\x93\xb7\xa5\x33\xd1\x8c\xc1\xad\x6a\x40\x72\xf1\xe9\xd2\x82\xd2\x8f\x52\x07\xa0\xcb\xf6\xac\xfd\x71\xbe\x05\x97\xaf\x1e\x6a\x07\x7b\xc2\x03\xff\x8e\x42\x28\x63\x53\x54\x06\x65\x03\xca\xa0\x7b\xfd\x21\x11\x32\xe3\x26\x4e\x64\x83\xd3\xff\x52\x71\xf2\xb9\xf8\x9c\x11\xbd\xc9\x45\x03\x59\xb3\xe1\xac\x88\xbf\x6a\x89\xf0\x33\x25\x4e\xff\xf4\x64\x72\x7a\xc5\xbf\x28\x71\xfa\xbf\xc2\xc7\x8f\x4e\xf9\x5b\x25\x4e\xe9\x6c\x1a\xcc\xd9\x42\xcc\xfe\x19\xcc\x1f\x9f\xf2\x4f\x40\x5f\xc2\xc7\x53\x16\xcd\x8e\x3f\xab\xf9\x63\x3a\xfb\xa7\xae\x71\xfe\x98\x3d\x3a\xbd\xda\xf2\xe7\x86\xfe\x7c\xff\xf2\x53\xfd\xc3\xcb\x67\x2f\xb4\x40\xf8\x51\xa7\x7d\x3e\xfd\x7c\x7a\xca\x3f\x28\x71\xbf\xe7\xef\xe0\xef\xaf\x4a\x90\xc7\xa7\xc4\xba\x8d\x92\xc7\x84\xf1\xd7\x03\xc6\x37\xb1\x0f\xaa\xfa\xc2\x3f\xa7\x6d\xdb\x19\xf5\xc9\xbf\x33\x28\xd5\x75\x1f\x59\xdf\xd5\x09\xcf\xbb\x47\xdf\xad\x83\x5c\x3c\x60\xc8\x4c\xac\xd8\x42\xe4\x46\xf1\x4b\xc6\x44\x08\x51\xcc\x26\xf3\x29\x2d\x44\xe1\x90\x53\xea\x9a\x3c\x26\x1c\xdd\xdb\x24\xb8\x75\xcc\xe6\xcc\x59\x95\x67\x8c\x45\xdd\x67\xc0\xf3\x67\x7e\xdc\x94\x37\x5d\x2a\x8c\x60\x1e\x52\x08\xf1\x4e\x35\x5f\x1f\xd3\x12\x9f\x57\x0e\x9b\x63\x56\xce\xd1\x76\x12\x69\xc6\xac\x44\xef\x23\x6f\x4a\x9a\x22\xa9\x28\x8d\x89\xf1\x21\x03\xdc\xb4\xae\xf3\xba\x4e\x66\xe9\x7c\x9a\x4f\x47\xb4\x12\xa9\x8d\xea\x1f\x51\x05\x71\x88\xb5\xfc\xd0\x18\xcc\xa7\x8c\xc7\xfa\xcf\xe8\x8c\xed\x19\xaf\x1c\x54\x9a\x9f\x79\x36\x99\x6b\xde\x3b\x01\x5f\xab\x20\x88\x61\x98\x9b\xef\x7e\xa5\x3a\x9e\x87\x62\x11\xc6\xbf\xc6\xb7\x17\x52\xa9\x24\xbb\x2a\xc3\x75\x1a\x2b\xe3\x21\xea\xe2\x4f\x67\x48\xfc\x1b\xf5\xe5\x2c\x9b\x6b\x2e\x3e\x99\x65\xf3\xa9\x8c\x8a\xba\xa6\x85\xb8\xdf\x33\x36\xcb\xe6\x18\x6b\xd7\x8b\xf5\xe5\xbb\xb1\x4a\x5e\x30\x2e\xf7\xaf\x15\x1c\xcd\x8a\x2b\xfc\xf5\x0d\x8e\x96\x2a\xb9\x96\xd1\x84\xa7\x71\xa9\xde\xe6\xab\x64\x9d\xc8\x15\xb8\xbb\xaa\x18\xdc\x5e\xfd\xb6\x46\xf7\x55\x91\x46\xb6\x12\xe0\xa8\xc9\xf7\x2f\x3f\x11\x9e\x94\x6f\xf2\x65\x9c\x46\x68\xee\x70\x99\x57\xaa\x8e\x77\x3b\xfd\xff\xa4\x54\x79\xa1\x77\xf1\x70\x7c\x02\xef\x2c\x93\x3c\x83\xcd\x5c\xef\xeb\xf5\x4d\xb2\x82\x20\x91\x8f\x4e\x8d\x96\xc1\xa0\x37\x2c\xf3\x94\x71\x0c\xa2\x02\x81\xeb\x8a\x5c\x33\x61\x10\x98\x61\x34\xe1\x71\x79\x97\x2d\x4d\xb0\x59\x25\x33\x85\x01\x54\xb5\x40\x94\x20\x8b\x75\x7a\x7b\x72\x73\x73\x73\xb2\xce\x8b\xed\x49\x55\xa4\xb8\x87\xad\xce\x8f\x97\x1b\xcd\xb6\x28\xf1\xd3\xa7\x57\x27\xff\x87\x70\xcd\xda\xed\x94\x71\xcf\xfb\x55\x61\x98\x02\x64\x8d\x76\x7a\xc3\x22\x08\x71\x8e\x29\xfa\x92\xf0\x5b\x7d\xdf\x7a\xd3\x36\xe5\xc7\x8e\x9b\xe2\xbf\x96\x00\xad\xe9\x65\xd0\x29\x26\xc7\xaf\xf1\x75\x6c\xc2\x4d\xec\x6d\xdb\xcb\xe8\x5e\xd7\x79\xfa\xf9\xf2\x76\x9b\x7e\xbe\x3c\xc5\x57\x9e\x7e\xbe\xd4\xbf\xa7\x58\xdf\xe9\xe7\x4b\xfd\xfb\xf9\xf2\x74\xcf\x0b\x59\xee\xf2\xac\x94\xaf\x12\x99\xae\x4c\x61\x62\x13\x7f\x7e\xfb\x86\x98\xaf\xb0\x49\x9f\xe4\xad\xb2\xcd\xb2\x69\x7f\xb9\x78\xff\x0e\x5b\x70\x2d\x0b\x65\x1c\x14\xa1\x89\x24\x42\x16\x11\x19\xc4\x63\xf8\x66\xdd\xd1\x78\xab\x6b\x21\x91\x2e\x8d\x2c\xa5\x49\xd6\x1f\x1e\x35\xec\xeb\x9e\x7b\x53\x1a\xa7\x8c\x1d\xaa\x5b\xa5\x85\x2e\x37\xa9\xaa\x03\x06\x24\x6a\xfa\x4a\x51\x58\x38\xed\xb5\xc2\xb8\x62\xd1\x2b\x45\xdb\xa9\x10\x61\x42\x27\x34\x51\x5f\x5e\x28\xfa\x41\x31\x48\xfc\x54\xc4\x59\xb9\xcb\x0b\xa5\x13\xdf\x99\xc4\x8e\x2f\xf5\x90\x42\xa9\x13\x41\x0d\x2c\x38\x0d\x7a\x43\xc7\x75\x11\x15\x76\xcd\xb2\xae\x76\xf4\x1e\x9c\xc2\xb7\x62\x15\x9a\xcf\xae\xeb\x15\xbf\x6b\x6e\x83\x80\xfa\xb0\x1c\x5b\xc3\x2c\xb1\xe9\x82\x6e\x59\x64\x35\x86\xd7\x2d\x47\x7f\x7e\x25\x16\xe1\xf3\x38\x4d\x2f\xe3\xe5\x97\x92\x92\x3c\x5b\xca\xe3\xad\xdc\xe6\xc5\x1d\x61\xfc\x52\xac\xc2\x52\xc5\xaa\x2a\x9f\x43\x9c\xef\xfb\x3d\xbf\xd1\x14\xf6\xa5\xfe\x73\x2b\x08\x86\xb8\x94\x2b\xc2\x2f\xc4\x7d\x21\xe3\xd5\xdd\x85\xd2\x42\x34\xc4\x9c\xfe\x68\xe6\xc5\x0f\x32\x5e\x75\x62\xe6\x20\x18\x0a\xc2\x44\x6b\x21\x04\x43\x95\x94\xe2\x7e\x7f\xae\xc4\x27\x85\x3e\xa9\x31\x3b\x67\xe5\x4c\xf5\x21\xf5\x85\x9a\x3d\x99\x1f\x29\x51\xce\xba\x27\x25\xfb\x16\xbf\xa0\x90\x5f\x50\x7b\xdd\x9a\x67\x69\xda\x6e\xd0\x10\xfc\xee\xd2\xd8\x67\x81\xda\xfd\x23\xe2\x5b\xf4\x9a\xef\x4d\x29\x7c\xcf\x12\x9c\x00\x5e\xf6\x5a\x33\x90\x54\xd7\x92\xdf\xcc\xe4\x5c\x98\x63\xc9\x3d\xcf\xaf\x65\x51\x24\x2b\xf9\x36\xd9\x62\x90\xc6\x83\xca\xe8\x25\x38\xc6\x6d\x4d\x3e\x21\x6d\x0d\xcd\x00\x0d\xf7\x31\xb8\xa1\x2f\xd9\x85\xf5\x9f\x93\xb3\x0b\x33\xa8\xbe\x57\x86\x42\x2e\xf8\x52\x0b\xd7\x33\xfd\x97\xcb\x99\x9a\xcf\xdb\x11\x20\xe2\x4b\x3d\xe5\x07\x0c\x5a\xea\xfa\xd6\xed\xac\x41\x90\x84\x90\x91\x2a\xc6\xdf\xd3\x89\x3d\x82\xdd\x03\x53\x7f\xed\xa0\x13\x2e\x18\x5f\x85\x55\x91\x0a\x4a\xf5\x4c\xd6\x97\x75\x6d\xb6\x01\x36\x26\x84\x39\xf6\xeb\xa3\xe2\x1e\x09\x1f\x93\xd3\x53\xa2\xcb\x82\xa6\x2b\x0b\xb7\x52\x6d\xf2\x55\x5d\x67\x26\xd4\xd5\xca\xa5\x60\x16\xbe\x6a\xb6\x55\x41\x9b\x1b\xe0\x3f\xd8\x61\x86\x86\x10\xeb\xde\xb9\x0a\x97\x45\x5e\x96\x2f\xf2\x6d\x9c\x64\xec\x7e\x00\xbe\x5a\xf3\x5a\x5a\x4e\x4e\x71\x47\x84\x8f\xe1\xe6\x06\x7f\x78\xab\x12\xf1\xba\xf3\x3d\x63\xbd\x99\xe6\xa5\x1a\x21\xcc\x80\xf7\x20\x85\x74\x23\x4f\x3f\x63\xf7\xed\x7a\x34\xe1\x4b\xd6\xe6\xab\x82\x60\x15\x7a\x9b\x5a\x13\xfc\xcd\xb1\x2a\x36\x9f\x29\x20\xac\xa0\x82\xb7\xba\x4f\x8b\x78\x05\x78\x78\x71\xca\x18\x7f\xa3\x29\x1e\x5f\xf1\x8c\x5f\x30\xbe\xb4\x5a\x81\x0b\xe0\x26\x36\xc7\x49\x46\xd7\x56\xad\xac\x5f\x8d\x3b\x2b\x0b\x82\x89\xd0\x74\x0b\x78\x80\xf1\x18\x58\x87\x96\x72\x89\x00\x49\x53\x71\xa1\x9a\x61\xc4\x9f\x36\xca\x1e\x5f\x81\xc9\x80\x09\x47\x32\x7a\x6e\x64\x0b\xcc\xca\x78\x8e\xdd\xdc\xc4\xdd\x82\x23\xcd\x56\xa1\xe9\x81\x7e\x01\x14\x4a\x43\x37\x71\xa3\xc7\x08\x69\xee\xe8\xe0\x77\x77\x7d\x70\x8e\x35\x9d\x88\x3f\xae\x1d\xcf\x14\x27\x63\xa2\xd9\xd7\x9d\x69\x21\x72\xbc\xd6\xe3\x86\x71\x6f\x14\xbc\x66\x35\x8a\x18\xd1\x1e\x2e\x88\x74\x38\x16\x74\x61\x3a\x20\x67\x53\x12\x90\x88\x4c\x09\x1b\xdb\x81\x43\x13\x46\x93\x1f\xf5\xc5\xab\x70\x19\x2f\x37\xe0\xba\x23\x72\xd7\xba\xb7\x8a\x93\x47\x67\x84\xf1\xdd\x70\x85\x64\x21\xc8\xf8\x52\x8d\xc7\xe3\x9d\x5d\x9f\x39\x5e\x26\x6b\xcb\xc9\x01\x6e\x83\xcf\xda\xcd\xf2\x79\x10\x5c\x84\x5d\xa2\x49\xc9\xeb\xf5\x89\xcd\x73\x72\x91\x64\x4b\x49\x78\xaf\x24\x68\x6b\x55\x7c\xf5\x50\x25\xef\xf2\x4c\x9e\xbc\xd5\x4b\x80\x34\xb9\x19\xe3\xde\xc4\x6f\x46\xdd\x68\xb5\x3b\xe3\x9b\xf9\xb7\x6c\xf8\x4d\xa6\x82\x93\x4f\x60\x32\xdd\xaa\x80\xf1\xa1\x02\xcf\x80\xd7\x23\x3e\x89\x99\x4d\xe6\xa0\xd5\x46\x2e\x70\xd6\x7e\x32\x9f\x1e\x7c\x32\xd6\x2c\x3e\x34\xdb\x4f\x9e\x12\x7e\x4c\xc6\xbf\xaa\x31\x39\x3f\xfe\x4d\x4c\xc2\xc9\x19\x89\x08\x61\x51\x53\x0d\x42\x05\xad\xc2\x0d\xee\x6a\x6c\xa0\x99\x9b\xe6\xf1\x6c\x33\x07\x1b\xac\x55\x88\x31\x50\x2e\x64\xb6\xb2\xa0\x4f\x7e\x1a\x1e\x00\x6e\xf9\x05\x5f\xb1\xba\x5e\xba\x23\xd7\x0b\x43\xda\xa1\x92\x5b\x41\xe0\x8e\xf0\x2b\x08\x8b\xb9\x6a\x30\x32\xf8\x05\x3a\x38\xaf\xc2\xb2\x02\x55\xa7\x4e\x01\xdc\x8c\x15\x6a\xf3\x18\x4f\xc4\x1b\xcd\x3b\x19\xf2\x02\x8c\xc0\x45\xd8\x30\x11\xe2\x8c\xaf\x83\xe0\xae\x43\x35\x20\x98\xcb\xec\x82\xaf\xe6\x2d\x82\xb4\x0a\x81\x7b\xd7\x1d\xaf\xd0\x7f\xe5\x5b\x40\xd5\x16\x87\x90\xa4\xec\x77\x10\x93\x9d\xb0\x3d\x77\x65\x19\x12\xf3\xa5\x18\x9d\xf1\x24\x2c\xb5\x48\x73\xc3\xdf\xb3\x86\x06\xc3\x86\xaa\x36\x45\x7e\x73\xfc\xec\xe8\x3d\x3d\x39\xe3\xcf\xd8\x7e\x0f\x7b\x29\xdc\x91\x77\xf9\xb1\x63\x11\x7d\x31\xfc\x3d\x8a\x92\x4e\xb6\x04\x2e\xef\x86\xbf\xe4\xb7\x22\x3b\x5a\xd6\x35\x5d\x6a\xa1\xb4\x0a\x82\x8e\x33\x4e\xa5\xbb\xcb\x1c\x61\xc4\xa2\xd4\xd4\x8a\xb7\x3a\x4b\x7d\x3b\x99\xfe\x59\x0b\x5c\x42\x7d\x2b\x9e\x4c\x26\x41\xa0\x9e\x7e\x33\x99\xd4\xf5\x37\x93\x3f\x0b\x21\x14\x2f\x82\x80\xde\xf4\xfc\xb0\x3d\x6c\x2a\x17\x65\xc5\x8a\x10\x5c\xf7\x9e\x9b\x8b\xe7\xe4\xb1\x16\xe3\xab\xd9\x64\x7e\xce\x2a\x77\xf4\xea\x5c\x42\x30\x1c\xb4\x74\xfc\x49\x5d\x83\x71\x4a\x9b\xe7\xea\xac\x30\xc6\x3c\xf3\x31\xcd\x7f\x94\x9a\x55\x29\xc1\x31\x54\xff\x45\xea\x54\x30\x76\x5f\x39\xe1\x39\x61\x47\x97\x85\x8c\xbf\xe8\x5d\x4f\x37\x26\xc9\x8e\x33\x96\x43\xbb\x80\x99\x69\x42\x1e\x67\xc8\x5b\x56\x18\x29\x37\x6c\xe4\x92\x59\x32\x26\xc7\x64\xac\x1f\xcc\xd9\x7d\x2e\x12\x53\x63\x0c\x11\x60\x12\xb6\x07\x10\x8b\x58\xbf\xc1\xd9\x6b\xe7\x23\xfc\xf6\x20\x68\x9a\x92\x33\x9e\xcd\xf2\xf9\x9e\xae\xf8\x05\x00\x01\x77\xfb\xb7\x83\x51\x0c\x91\x2f\xee\xf7\x10\xe7\xb1\xd1\x0a\xe0\xe6\x00\x3d\xb1\x9c\x9d\xcd\x31\x18\x23\x30\x63\x5e\x93\x59\x3a\x8b\xbb\xdc\x65\xeb\x93\xe2\xf9\x11\x06\x3c\x5c\xda\xa1\x39\xcf\xc1\xb8\x4c\x86\x6d\xd9\x6e\x66\xe2\xf5\x0d\xa4\x03\x57\x3a\xaa\x82\xa0\xd0\xf3\x4f\xb7\xf0\x15\x08\x3e\x41\x40\x95\xf0\x13\xe0\xb0\xc6\x7e\x01\x40\x0f\xe4\xdc\x7b\xb3\x7e\x2d\xce\x96\x5c\x8f\x8c\xd3\x4f\x23\x7d\xab\x82\xa0\x02\x4b\x78\x18\x1d\x1a\x8b\x74\x56\xc1\x78\xe4\xf3\xba\x4e\x67\xe4\x31\x5c\x7a\x41\x7b\x53\xb0\xca\x29\x45\xe2\xc1\xb1\xb2\xd9\xd9\xdc\x60\x5a\x37\x15\x00\x19\x75\x75\xc0\x1d\x63\xf7\x80\xb0\x1c\x4f\x63\x08\xea\x1b\x81\x93\x7d\x0a\x33\x8c\xe6\x42\xe7\xe1\x4b\x37\xa0\xa5\xee\x7f\x6f\x7e\x41\xe6\x58\xbf\x3e\xd6\x3d\x02\x0b\xbe\x64\x4a\xc4\xce\x44\x51\x93\x09\xbc\x6f\x88\x83\x51\x3d\x96\x20\x09\xb5\x8e\x34\x38\xfc\x44\xf1\xf4\x59\xa4\x29\x04\x0e\x5f\xa9\xe9\xc2\xba\xc8\xb7\x7a\x4a\x8e\xc9\xb1\xca\x75\x07\xec\xf7\xfb\x76\x3d\x86\x8c\x12\xae\xfb\x3d\x52\x7b\x3d\xeb\x6e\xf8\x05\x80\x19\x4d\x69\x67\x77\xa6\x2f\xc5\xc5\xd0\xea\x7b\x13\x97\xca\x6d\xc8\x88\x37\xd2\xdb\x8e\xc5\x4b\xc6\x0f\x95\xd7\x1b\xaf\x2d\x66\x36\x61\xf1\x92\x31\xfe\x04\x89\x4c\x5d\x93\x1f\x5e\x3e\x7b\x41\x60\x2f\xd1\x2c\xcc\xf4\x56\x90\x2c\xb7\xa8\xf9\x91\xa1\x45\x98\xaa\xb6\xb6\x1d\x11\xbd\x15\x37\x20\x92\x48\xbe\x11\x37\xc8\xd1\xa4\x62\x44\x77\xe2\xc6\x6c\x16\xc8\x4d\xdd\xf2\x91\x0a\x82\xdb\xba\xd6\x3b\x8f\xe9\x52\x05\x96\xd4\x80\x5d\x01\x5b\x34\x08\x36\x42\xb9\x4b\x88\x0d\x44\xb3\xba\xbe\xd5\x32\x05\x4f\xa7\xd7\x2d\xf8\xaf\x2d\x9f\x6d\xf8\x2d\xbf\x98\xb3\xe8\xda\xc7\xff\xda\xea\x4d\xe6\x96\xef\xe6\x4d\xa5\x5a\xc2\xa2\x97\x5a\x28\x36\x84\xb8\xb5\x3d\xa5\x53\xdc\xa0\xcc\x30\x45\x70\xf7\x12\xdb\xa8\xf7\x2b\x9e\x4e\x37\x91\xae\xee\x0a\x60\x75\xbc\x97\xcc\x99\xae\x89\x76\x76\xba\xe7\x66\x27\x75\xbb\xdd\xc9\x89\xe5\xa9\xe1\x44\x6c\x88\xa3\xce\xc1\xc2\xcc\x0a\xc1\x17\x20\xf7\xfe\xe5\xe2\xfd\xbb\x03\xde\x56\xc7\x0b\xeb\xf5\xc1\x33\x4e\x40\x0d\xc3\xa0\xcc\x05\x68\x93\x86\x45\x5e\x5b\xc6\xda\xa3\x34\xa1\x4e\x5b\x76\x5f\x57\x52\x11\x4e\x76\x79\xa9\xfa\x48\xe5\x1d\xef\xaa\x76\xb8\x84\x2d\x35\xb0\xf7\x60\x48\x54\x00\xfa\xb5\x55\x97\xa0\x32\xa4\xc1\xd2\x02\x2d\x90\xe4\xc6\x6c\xc9\x12\xa4\x28\xc1\x35\x92\x71\xb3\x66\x22\x00\xb6\xe8\x1e\x17\x05\x01\x58\x20\xea\x5a\x6d\xf0\xe3\x21\x43\x30\xf3\x4e\xff\x55\xa8\x9d\x74\xaf\xb3\x1d\xc0\x81\xdd\xf6\x34\x89\x67\x4e\xd7\x78\xc6\x91\x76\x80\x71\x40\xe7\x1c\xe9\xa6\x88\x77\xcf\xd2\x01\x03\x5d\x5f\xf4\x86\x9d\x87\x22\xec\x09\x95\xc2\xb3\xa8\x9d\x4d\x34\x1f\xac\xc4\xc2\xe0\xf3\xf6\xe2\x6a\xb3\x50\xfe\x46\x27\xcc\x8b\x2c\x67\xb3\xb5\x7d\x4c\x5a\xc1\x27\x6d\xcd\x5c\x75\x4f\xa1\x5c\xb8\x49\x38\x3a\x3a\x97\x18\x8b\xd3\x08\xc2\xe0\xe0\x7b\xce\x74\x03\x7b\xc9\x4d\x54\x65\x17\x89\x10\xcd\xb7\x8d\x1a\x43\xf7\xc3\xeb\x2c\x1b\x8e\xae\x7c\xc8\xa8\xdd\xf3\x58\x70\xe5\xdb\xfe\x0a\xec\x61\x2b\x76\x67\xb0\x9e\x09\xe5\x38\x1f\xda\x38\x9c\x4f\xb3\xd0\x0c\x10\x1c\xa6\x79\x31\x14\x19\x36\x79\x40\x1b\xb2\x6d\x4c\xf9\x87\x2c\x38\xb2\x76\x9b\x75\xd5\xaa\x6d\x23\xcd\x22\xac\xbf\xca\x7a\x6f\x68\x05\xfd\x83\xf1\xa3\x92\x85\x59\xae\x28\xb9\xcc\x57\x77\xa4\x1f\xbe\xb6\xf1\xe8\x70\xb1\x0c\xed\xc9\x9c\x8d\xaa\xce\xf6\x0d\xce\xa1\x71\xa5\xdc\x95\xb2\x5a\xe5\xa5\x05\x30\x1a\x80\xbf\xe8\x64\x84\x68\x4f\xa9\x84\xe8\x92\xc3\x8f\x86\x2a\x19\x51\xd9\x0e\x3e\x66\x6f\x31\x84\xc8\x03\xa1\x08\xe0\x35\xad\x23\x8f\xdb\x4d\xe1\xbb\xb3\xeb\xad\xd9\x0b\xc1\x22\xc3\x9f\xdf\xbe\xf9\x41\xa9\x9d\x11\x8d\xcc\x7e\xad\xd8\xfd\x1e\xf5\xaf\xff\x52\xe2\x7e\x02\xfe\xf9\x67\x4f\x9e\x7c\x13\x3d\x99\xfc\x79\xcf\x7f\x50\xdd\x73\x95\xdb\x4d\x41\xd9\x91\x16\x74\x8a\x52\x8c\x46\x3f\xa8\x20\x20\x37\x89\xda\x3c\x2f\xe4\x4a\x66\x2a\x89\xd3\x92\x24\xd9\xf1\x0f\x8a\xaf\xa0\xa0\xf8\x41\x41\x36\xd3\x58\x27\x14\xd0\x9e\x35\x06\x2f\x50\x2e\xd3\x35\xd7\xb5\xae\x78\xa4\x5a\x7a\x27\xcb\x0f\xb4\x22\xf2\xfa\x96\x9e\x42\x99\xe6\x69\x26\x1a\x82\x32\x52\x34\x07\xe3\x0a\xf4\x51\x0a\x85\x24\x7d\x57\xca\x02\x8f\xc4\xc3\x5d\x5c\x96\x37\x79\xb1\xd2\x4b\xfd\x76\x53\x20\x33\xd8\x30\xa1\x7e\xa2\xe6\x32\x85\x97\x60\x99\x4e\x93\xd1\x72\xfe\x41\x50\x86\x5d\xad\xe6\x50\x1a\x6d\x8a\xe8\x97\x7b\x9f\x5a\xd7\xc9\x8c\xfc\x7c\x62\x46\x4a\xae\x4e\x20\x00\xe7\xbc\xae\xe9\x60\xba\x20\xed\xa1\x25\x8c\x27\xac\xec\x8b\xc1\x31\x07\xeb\xe7\xa3\xa1\xe9\x7c\xec\xcd\x9c\x0c\xf4\xf4\x85\x28\xc3\x3c\x4b\xf3\x78\x05\x17\xc0\x6e\xc0\x15\x08\x8e\x70\x65\xc4\x45\xb8\x06\x59\x0c\x78\x98\xe5\x26\xce\xae\x30\x20\x2e\x37\xf2\x31\xf8\x93\x94\x56\x74\x8e\x0c\xef\x82\x5e\x26\x5d\x00\xaa\xd2\xb0\x1b\xd3\x9c\x4e\xb8\xc9\xc9\xa2\x9c\xda\x74\x5e\x7a\x9c\x8d\x7e\xf0\x2f\x35\xb3\x49\xf3\xba\x1e\xcc\x86\x47\x2a\x10\x66\xa2\x74\x7c\xbf\x51\x7b\xc1\x13\x36\x60\x05\xe4\xe5\x94\xb7\x6a\x7a\x7f\x99\x64\x71\x71\x17\x35\xc9\xfb\xe8\x1e\x0e\x5f\xda\x19\xf7\x1c\xe2\x43\xf6\xf5\xed\x94\xa1\xc5\xbf\xed\xd5\x8c\x32\x5e\x74\xfa\xd6\xf6\x68\x46\xed\x97\x37\xee\xae\xae\xef\xa7\xcd\x28\x14\xd1\x60\xdf\x7b\x83\xa9\x39\xce\xd2\x93\x94\x21\x1a\xd0\xa0\x4a\x20\x0b\x82\x82\x62\x7c\x6e\xfd\x7e\x1c\x39\xd4\x04\x94\xa8\x04\x50\x2d\x25\x13\x9e\xd6\x22\xfa\x90\x65\xff\x2b\x13\x65\x05\x75\x03\xd5\xbe\xa7\x32\x87\xd7\x64\xd4\xc6\xee\x68\x1d\x30\xd1\xb6\xf9\xb7\xb7\x20\xc0\x71\xdf\xee\x4e\x21\xf2\x1b\x02\x8f\x8f\x5b\x07\x44\xee\xe8\x11\xb3\x98\x33\xc6\xe6\x80\x90\x1f\xb7\xce\x10\x0f\xa4\xcb\xe5\x76\x30\xfd\xf6\xa4\x79\xd2\x3a\x6a\x34\x6f\x3b\xfd\x7c\x49\xa7\x91\xae\xb5\xd6\x19\x19\x26\xc3\xf9\x62\xeb\x50\x10\x8e\xf7\x4c\x35\x43\x9b\xdb\xc2\x68\x92\x5f\x5e\xc7\x7a\xd7\xe5\x72\xb0\xb3\x1c\xdb\xd5\xda\x80\x1b\x84\x0a\xab\xfc\x34\x57\xba\xbb\x78\xbf\x53\x11\x06\x44\x33\x74\x4d\x67\x36\x44\x7a\xf8\x1d\xe8\x9a\x02\x47\x2b\x5f\x49\xa0\x35\x9b\x41\x9e\x62\x65\xdf\x12\x86\x26\x3c\xf7\xe6\xdc\x38\x92\x66\x44\x9f\xe3\x3d\x2f\x8b\x65\x24\x35\xc5\xde\xb3\x30\xcf\x28\xd1\xab\xe5\xd8\x88\x3b\x6d\xda\xe5\x62\xf8\x5b\x0b\x70\x2e\x83\x20\xa7\x1e\x7d\x41\x31\xec\xcf\x93\x3f\xc3\xce\x86\xb7\xfa\x4b\x0b\x50\x08\xb6\x70\x59\x94\x66\xf8\x1e\x9c\xb0\xb0\x4f\x7e\xa7\xf8\x4f\x4a\xcc\xe6\xfc\x37\x25\x4e\xa9\x60\x9f\xa7\x74\x2a\x82\xfa\x11\xab\x3f\x4f\xd1\xe2\xd0\x9b\x90\x5a\xa8\xd8\x45\x64\x69\x0e\x18\xf1\xc8\x78\x67\xcf\x1b\xfb\x61\x32\x7e\x52\x68\x79\x0c\x22\x0e\x5a\xea\x8f\xc9\x02\x15\xd2\x2d\x7e\x58\x82\xf5\x86\x1c\x9c\x18\xfa\x1d\x70\xaa\xbc\x23\xbc\xe5\x16\xd1\x09\x19\x05\x5a\x62\x15\x42\xce\x20\xa0\xbf\x59\xa3\x26\xdd\xf5\x6c\x4a\xaa\x22\x25\x7d\xfc\x02\x65\x14\xce\x70\x84\xa0\xfe\xa7\x47\x08\xcd\x3b\x8d\xa2\x9f\xe8\x5f\x74\x93\x2d\xeb\x9a\xe0\x57\x80\xf1\x77\xcb\x34\xc4\x9e\xb5\xd9\xe6\xdb\x1e\x15\x5b\xda\x49\x61\xd3\x4e\x02\xd5\x6c\x6c\x2b\x85\x97\x53\x35\x2b\xe7\x42\xff\x71\xe7\x04\xbf\xe1\x39\xc1\x38\x61\x51\xa7\x9f\xa0\x7f\xbc\xe3\x08\xdb\x5f\xf6\x04\xc1\xe4\x04\x3b\xbf\x04\x76\xf6\x46\x4d\x65\x16\x14\x9e\xf9\xcf\x45\xff\x04\x36\x6e\xcc\x3d\x93\x31\x39\xbe\x89\xcb\xe3\x2c\x57\xc7\x7a\x02\xe9\x1e\xe3\xf1\x6c\x32\xdf\xf3\x76\x6f\x08\x94\x5d\x01\x3d\x3b\x99\x73\xfd\xa7\x85\x9c\x2b\x9c\x53\xe3\x9e\x17\x03\x28\xa2\x8e\x68\xe4\x53\xf0\x1e\x6a\x20\x24\x68\xc2\x22\xa8\x2e\x07\x1b\x49\xf8\xf8\x76\x7f\x67\x9d\xae\xd4\x13\xb8\x2a\x37\x34\x61\x10\xfe\x6c\x0b\xf0\xde\x39\x8d\x41\x98\x8a\x45\xde\xc4\x2f\xb0\xb4\x05\x0c\xac\xf1\x38\xf1\x87\x4f\x00\x05\x01\x6d\x15\x94\x7e\xa7\x44\x11\x26\xdb\x1d\x0a\x51\x30\x93\x06\x32\x52\x3d\xeb\x34\xef\xcf\xbc\x60\xf0\xe4\xa9\x9e\x6c\xdf\x3e\x3d\xc5\x1f\xff\x86\xf0\x27\x42\x88\xef\x94\xc7\xff\xbb\x83\x29\x63\x6e\x01\x55\x0c\xeb\x0c\xfa\xe8\x83\xd3\xd9\x3c\xa2\x83\x2e\xcb\xc6\xd8\x41\x13\x5e\x55\xd7\x74\xe8\x2b\xa7\x94\x26\x82\x7e\xf5\x77\xb2\xee\xb9\xeb\x65\x5c\x4a\x9d\x0c\x07\xad\x85\x33\x86\x36\xa6\x44\x7d\x1a\x97\x30\x16\x29\x01\x68\x91\xa3\x2c\x08\x66\x73\x4e\x73\xf1\xd6\xc6\xf1\x67\xd3\x99\xea\xbc\x21\x9f\x9d\xcd\xd9\x3c\xa2\xb9\xb8\x42\xf0\x56\xc5\x63\x18\xd9\xd8\x85\x44\x5b\xd0\x98\x35\x74\x78\x11\x6e\x65\xa1\xf3\xce\x79\xee\x8b\x58\x8c\x35\x56\x1e\x46\x03\x00\x5c\xd0\x41\x2c\x11\x1e\x23\x42\x75\x29\xa4\xef\xc9\xde\x04\x37\x40\xb7\xa8\x42\x6c\x14\xb5\x91\x66\xb5\x34\xad\x85\x6f\xbc\x9b\x70\x7d\x0f\xb6\xb9\x6d\xbb\x93\x48\x0d\x00\xaf\x42\x50\x0b\x41\x3e\xbc\xbf\xf8\xa4\xd7\x99\xc5\x54\x99\x04\xc1\x80\x0a\x24\xa9\xeb\xae\x16\x04\x2d\x99\x8c\x76\x92\x75\xe0\x6d\x25\xbb\xcf\x9b\x65\xc8\xe3\x50\xe7\xa6\xc5\x54\x6f\x8b\xab\xe4\xfa\x5b\x07\x11\x46\xbd\x29\x08\x10\x01\x6b\x44\x7c\x07\x89\xd8\xae\xdd\x2c\x08\xda\x2a\xa5\xb8\x27\xf5\xb6\x40\xfc\xf2\xba\xf6\xf4\xdd\xc0\x10\x2b\x2e\xe7\x80\x6c\x6d\xb4\x0f\x4e\x71\xd5\x9c\x4d\xf3\x46\xab\xc6\x3b\x2a\x39\x5f\xb9\xd7\x52\xfb\xf1\xe6\x94\xaa\x1f\xa0\xaf\x0b\x49\xd8\x96\xe6\x61\x8f\x92\x6c\x40\x06\x37\x68\x7c\xab\x61\xf5\xd4\x55\x21\x77\xd4\x41\x45\xfa\x62\xa5\x55\xb8\xc0\xf6\x81\x51\x3b\xcc\xa8\xea\xef\x45\x39\x1b\x1c\x29\xde\xc3\xe5\x61\x58\x1b\x77\x78\xd1\xc4\xcc\x35\x51\xf3\x20\x66\xb7\x26\x9a\x7c\x2d\xee\xf7\x47\x44\x33\xe1\xc9\x52\x6f\x58\x69\x13\xc4\xce\x8b\x3d\x6e\x43\xb3\x13\xc6\x4b\x17\x77\x9c\x22\x9a\xab\xa9\x1a\xb4\x98\xbc\x6a\x12\x52\x08\x41\xc7\x69\x13\x5a\x5a\x57\x5f\xd7\x64\x9d\xdc\xca\x15\xdc\xe0\x09\x79\xe5\xef\xbe\x95\xca\xc1\x73\x70\x4a\x63\x41\x0b\xb1\x74\x8d\xa0\x8c\x41\x9c\xf5\x44\xd3\x0b\xb9\x56\x2c\xa2\xb1\x1f\x94\x31\x67\x75\x3d\xe1\xad\xa0\xb0\x15\x04\x85\xe5\x88\x28\x4c\x95\x70\x91\x04\xb2\x16\xb4\xac\x5e\xe4\x06\xd4\x17\x42\xb9\x07\x01\x5d\xeb\x5f\xbc\x3b\x29\xf5\xdf\x71\xdc\x64\xd1\x6f\x87\x3c\xfa\xc2\xdc\x9f\x94\xf0\xa3\x37\x4e\x52\x95\x9a\xd2\x6a\xd9\x7a\xaa\x45\xf6\x24\xbb\xb2\xef\x5d\xb3\x68\x09\xdd\xb3\xc6\x50\x44\x9e\x3a\x31\xef\x8e\x25\x48\x24\x87\x30\x3a\x1a\x7e\x19\xb4\x6b\x43\x8a\x32\x98\xba\x58\x6b\xe8\xe6\x8a\xc5\x1a\x55\xcc\x70\x85\x88\x75\xd0\x01\x13\x28\xa6\xc5\x21\xf5\xcd\x14\x88\xfe\x81\x68\x80\x3c\x13\x45\x5b\x89\xe9\xfb\xf9\xf1\x7b\x95\xef\x22\xe8\xd3\x71\x16\xee\xe2\x2b\xf9\x0b\x36\x8a\xeb\x9e\x8b\xb0\x1f\xcd\x93\x9f\xf1\xc9\x9e\x45\x50\x68\x82\x59\x26\x7b\xeb\xeb\xce\x77\x03\x41\xd6\x93\xb5\xd3\x7f\x5a\x50\x4b\xff\xeb\x78\x22\xda\x95\x69\x66\xad\x99\x8c\x38\x6f\x0b\x7f\x8d\xb0\x07\xbe\xb5\x39\xb4\x34\xf1\xe7\xdc\x9a\xe8\x75\x02\x97\x3a\x05\x1e\x7f\x00\xd5\x5f\x5d\x67\xe1\xca\x3c\x34\x1b\xd6\x39\x22\xd2\x0a\x91\x01\x4f\x50\xd7\x78\xdd\xc9\x05\x78\x06\x6e\xa9\x0e\xac\x6a\xd4\xe1\x7a\x28\x45\x5a\x6e\xc6\x78\x24\x3d\xc8\x7c\x9a\x00\x05\x70\x0d\x87\xe5\xd5\x0b\x84\xfd\x29\xdf\xb9\x10\xd8\x8c\x27\x38\x48\xdd\x4c\x6f\xe4\x5a\x35\xb9\xec\x49\x46\x33\xde\x27\x09\xfc\x75\x5d\x8c\x31\x9b\x3e\x69\x0a\x0d\x48\xf9\xcd\xf8\x9f\xe0\x1b\xba\x59\x21\x9c\x25\xfa\xb5\xed\xb9\xdf\x95\x5f\xe9\x83\xd1\xd6\x7e\xb7\x06\x43\xf7\xfc\xd7\x74\xaa\x5f\xc6\xe9\xc4\xeb\xfa\x52\xee\xdb\x28\xb2\x2e\x70\x59\x44\xbc\x99\x4c\xb8\x0b\x74\x86\xe9\x66\xee\x1f\x70\xb9\x6b\x65\xd1\xfb\xc0\x51\x0f\xfe\xb5\x78\x20\xb8\x24\x1c\xcc\xe8\x9a\x20\xec\x37\x40\xba\xe5\x42\x46\xff\xd5\x9d\x02\xb9\x90\xfe\x0a\xf5\x83\xe5\xba\x03\xf4\x69\x3e\x53\xf3\x48\xce\x8a\xf9\x51\x3e\xcd\x5d\xbc\x36\x9a\x4d\x73\x7f\xa9\x46\x09\xcf\xa6\x49\x94\xfb\x0b\x9b\x41\x31\x91\xec\x01\x6d\xb7\x47\xcb\x3a\x60\xc1\x7a\xbb\x86\x3d\xe3\xe1\x10\xb9\x10\x22\x75\x97\xdc\xca\xf4\x83\x19\x21\x3f\x7b\xd6\x0a\x97\x6b\x43\x6d\x2b\xc6\x6d\xec\xf3\x8c\xa1\xb0\xd0\x6c\x2b\x33\x35\x87\xf0\xa5\x51\xb6\x67\xde\x40\x9a\x60\xd8\x2e\x7e\x2f\xcc\xef\xc8\x04\x26\xe9\x83\xf3\x62\x21\x17\xed\x14\x58\x7a\x32\x96\x56\xdb\x12\x29\x4e\x48\x44\xf2\x4a\x41\xf2\xbe\x83\xf6\x0a\xa3\x5b\x78\xa3\xeb\x05\xf6\xef\xf6\x9b\x66\xd0\x3d\x04\x64\xc7\xd1\x27\x7a\x6f\xce\xea\x9a\xc2\xc9\x79\x52\xd7\x23\x94\x8d\x6c\x84\xb4\xc8\x06\xb6\x75\xac\x68\x77\xe2\x00\x04\x81\x9d\x38\x26\xcf\x9d\x66\x43\xc1\x50\xa4\xd9\xa4\xf1\x2b\xd8\x54\xcd\xdc\x77\xce\x23\xe5\x88\x55\x97\x6a\xcd\xc8\x12\x08\x27\x64\xfb\x2f\xe0\x6a\xec\x1c\x9c\xd2\x5c\xf4\xf2\x73\x17\x72\x4c\x01\x31\x04\xe9\x33\x4f\x53\x5d\x9e\xe7\xad\x3b\x9b\xc1\x86\xfc\xc5\x0c\xed\xbb\xe6\xe5\xcc\xfa\x77\xe8\xfe\x99\xe2\x4a\x57\x10\x92\xd7\x85\x2e\x44\x14\x86\x92\xed\xb5\xc0\x30\x4d\x22\x6b\xbb\x03\xa0\xba\x6e\x72\x90\xcb\xb4\x2a\x8e\xc1\x6d\xf6\xd8\xf8\xd2\x1e\x5b\x27\xda\xe3\x42\x96\xc9\xbf\xe4\x31\xb6\xf2\x78\x99\x26\xcb\x2f\xc7\xab\xcb\x14\x2f\xb6\x79\x55\xca\x55\x7e\x93\xe1\x55\xb5\xc3\x5f\x2d\x84\xe0\x55\x7e\x2d\x0b\x73\x55\x29\xbc\x90\x99\xb2\x69\xa9\x8c\xaf\xe5\x31\x6a\x4b\x8f\xd1\xdb\xf1\x18\xbd\x24\x8f\xbf\xc8\x3b\xa8\xf7\x8b\xbc\xdb\x15\xb2\x2c\xf5\x45\xb5\x3b\x36\x36\xe6\x5b\x99\x55\xc4\x33\xc4\xf8\x5d\x26\xd7\x3b\x6e\xee\xe1\x35\x4e\xa6\x0d\xe7\x8b\xda\x2b\x6e\x43\x86\xda\x93\xed\x01\x8f\xe9\x8d\xfe\xb4\x07\xfc\xa5\x9b\x6f\xd5\xeb\xb3\xf9\x5c\xaa\x00\x11\xa0\x5b\xdd\x65\xe2\xab\xeb\xda\x07\xe4\xb6\x79\xd2\xb8\x6f\xf3\x0c\x4e\xe5\x7a\x45\x3a\x05\xd6\x6b\x57\x82\xed\xb9\xc5\x44\xf8\x9d\x40\x0a\xc8\xff\x9b\x80\x08\x55\x76\xa0\x94\x2b\xa3\xb7\xe1\x1e\x58\x93\xf7\x7a\xf2\xf8\x31\x31\x7d\xa9\x13\x14\x07\x7b\xe7\xc7\x84\x67\xa6\x0b\x76\x45\x7e\x7b\x37\xec\xe8\xc9\xc1\x99\xb5\xaf\xfa\x02\x91\x5e\xce\xd4\xdc\xc4\x1a\xc8\x34\x4f\xec\x85\x1e\x14\x39\x32\xa8\x8d\xa0\xf7\x84\x71\x9a\x0c\xa8\x79\xa4\x15\xcf\x8c\x93\x74\x61\xbd\xd9\xba\x35\x00\xcc\x5c\x78\x55\x25\x2b\x21\xfd\x9f\xba\x5e\xc0\xef\x78\xcc\x13\xcd\x01\x6f\xf2\x74\xf5\x51\xc6\xab\xbb\x36\x86\x0a\x40\xc9\xc6\xab\xbb\xbf\xc7\x89\x1a\x8f\x23\x73\x07\xc1\x1d\xc0\x24\x00\x7c\x08\x45\xcb\xa3\xd0\x2a\x41\xfe\x72\xf1\xfe\x9d\xf0\xbc\x52\x16\xce\xd1\x51\x7c\x81\xb2\xaf\xcc\x8b\xc4\x16\x6e\x11\x74\x42\xe8\xf2\xcb\x78\x2b\xd3\xe7\x71\x29\xc5\x2f\x7c\x81\x2a\xe6\x4b\x28\x7f\xe3\x5c\xb4\xa1\xc8\xbb\x6a\x2b\x8b\x64\x39\x10\x05\x02\x4b\x35\xe7\xc8\x7e\x20\x7f\xe5\x1b\x0a\x0b\xcd\xcb\x8d\x92\xf2\x5d\xfc\x8e\x4a\x3f\x14\xb9\x64\x6c\xcf\x89\xad\xd9\x33\x29\x96\xeb\x24\x93\x41\x80\xbf\x61\xbc\x5d\xd9\x6b\x4a\xd0\x5f\x84\xf0\xd9\x7c\x20\x76\xf7\xc2\x70\xfa\x7f\x57\x42\x86\xbf\xfe\xa8\x73\xf2\xbf\xe9\xeb\x47\x4d\x84\x95\x2c\x7f\x9e\x67\xeb\x34\x59\x2a\x31\x24\x88\x86\x8f\x34\x63\x04\x82\xe1\x23\xf1\x37\x05\x41\x2a\x6c\x5d\xee\x89\xb9\xfd\xbb\x62\x7c\xb1\x07\xc5\x91\x4b\xd3\xc5\x16\x3a\x99\xf5\x60\xc9\xf5\xda\x38\xda\xc6\x49\xf6\x1c\xe9\x94\x68\xef\x48\xec\xde\x99\x60\x22\xa2\xb0\xd9\x13\x25\x2f\x01\x12\xe9\xa8\x04\x74\x92\x64\x16\x8f\x05\x39\x45\xf0\xd2\xb9\x41\xfe\x16\xb9\xce\x90\xac\xa9\x3b\x89\xaa\xec\x8c\xaf\x8e\xf0\xa9\xd0\xd2\x5f\x5d\xb7\x17\x13\x9e\x01\x29\xc0\x7f\x79\x89\x0e\xec\xcf\xf3\x2a\x5d\x81\x42\x73\x9d\x64\xab\xe3\x6d\xbe\xaa\x52\x69\x70\xe1\x0a\xf9\x5b\x95\x14\x72\x75\x7c\x79\x87\xce\xed\xd1\xd7\x14\x64\x7b\xf8\x1c\x17\x7f\x2d\x15\x65\xb8\x92\xbb\x92\x2f\x45\x19\x5a\xb5\x3b\x5f\x0b\x5d\x17\x3a\xcc\xa6\x4e\xdb\xb7\x11\x93\xf3\xcd\x53\x7b\x7f\xbe\x19\x8f\x19\x91\xb7\xbb\xbc\x50\x25\x48\xd5\xb3\xcd\x7c\xba\x9e\x6d\xe6\xa2\x8a\x88\x69\x5d\x3b\x5d\x45\xf0\x53\x50\x9d\xc4\x63\xc7\x0f\x2c\x7d\xe5\xcb\x9a\xf1\x6a\xaf\xc9\x89\xa6\x69\x7a\x9e\xad\x9a\xc9\x78\x03\x6b\x26\x08\xbc\x67\x8e\x0d\x31\x96\xf1\x41\x40\x66\xa8\xaa\xb2\x29\x73\xdd\x88\xfb\x7d\xa8\x72\xf4\x2a\x43\x8a\x61\x1e\xb2\xba\xa6\x26\xfe\xdd\x4b\xbd\x60\xbc\x4b\xc0\x69\x69\x38\x53\x3c\xe5\x6d\x27\x85\x8b\x45\x9a\xc7\x2b\xd9\xf6\x26\xbd\xdf\x1f\xc9\x03\x11\x8c\xee\xf7\x47\xd9\x94\x16\xd0\xe5\x42\x69\x32\xe6\x14\xc3\x80\xea\x00\xe9\xb3\xb9\xff\x00\xa0\x4d\xe4\x5c\x14\x7b\x4e\x07\xa1\xa7\x0a\xb3\x79\x68\xc2\x67\x98\x6a\xa1\x38\x9c\x3d\x0e\x9a\x50\x24\x00\x55\x0c\xbf\x63\x37\x77\xf7\x5c\x85\x0b\x19\x7f\x59\xe8\xad\x50\x24\xbc\xf9\x34\x71\x8f\x5d\x1d\x49\x6e\x06\x35\x52\xbc\x90\x57\x49\xa9\x8a\xbb\x28\x31\x66\xcc\xd2\xeb\x8c\x10\x0b\x70\xe5\xa7\x99\xb2\x7b\xca\xb8\xa4\xe4\xff\x91\xba\x87\x4f\xfd\x33\x0f\x3c\xc3\x2b\x4f\x8c\xb5\x5d\x41\xf8\xcc\xcd\x2e\x4e\x20\xff\xc9\x65\x7c\x29\x53\x77\x57\xa9\x24\x6d\x9e\x6d\xa5\x8a\xf5\x33\x53\xf5\x4a\x5e\x56\x57\xcd\xad\x21\x80\x36\x73\x51\xc1\xd1\x71\xf3\xdc\x6f\x49\x9a\x5c\x9e\x02\x70\x44\xac\xe4\x09\xa2\xa1\x9b\x62\x57\x69\xb2\xdd\xca\xa2\x23\x29\xb4\x91\x53\xd9\x3d\xa9\x4a\x79\xac\x5f\xb8\x54\xe4\x08\x17\x99\x3f\x0e\x8e\xb2\x24\x8e\x58\xd2\x09\x57\x5a\x32\x00\xbb\x97\xe7\x4d\x48\xfb\x8f\xf0\x94\x19\xed\xc9\x70\x9c\x11\x2b\xf5\x42\x1d\x49\xb6\x91\x45\xa2\x4a\x46\x13\x2e\xb5\xd8\x8c\xda\xe9\x61\xea\x8a\xcf\x5a\xc6\x4f\x7b\x9e\x74\xc2\x46\xb7\x4c\x64\xf4\xda\x58\xc0\xa6\xa1\xf7\xb5\xe7\x70\x4e\x4a\x27\x3c\x0b\x57\x09\xe4\x89\x8b\x3b\x46\x71\x2e\xb6\x2a\xca\xf2\x62\x0b\xf8\x05\xc3\x01\x8c\x90\x3b\x8c\x08\x58\x55\xcd\x26\x73\x5e\x08\x35\x3b\xb3\x6a\x21\xa2\xe4\x76\x97\xc6\x4a\x12\x04\xf1\x1f\x93\x88\x8c\x1b\x48\xd6\x53\xfa\x39\xac\x17\xf5\x09\x0b\x4f\xaf\x86\xf0\x1d\x65\xb8\xdc\xc4\xc5\x33\x45\xcf\x58\xdb\x5d\x68\xcf\x22\xd9\x6e\xa6\x99\x7a\x03\x8d\xb4\xf6\x53\xf8\xe1\x54\xa2\xfd\x97\xc9\xff\x16\xdc\xc7\xf4\x03\x5e\x18\x95\x79\xeb\xec\x11\xbc\xa6\x8d\x3a\x28\x9b\x53\xc5\x18\xa7\x85\x28\x90\x95\xb1\x95\xbc\x57\x1b\x60\x5f\x59\x10\xd0\x09\x2f\xed\x4a\x66\x80\xe1\xc2\x8b\x76\x43\x5d\x4b\x0e\x6a\x87\x3b\xa3\x04\x4b\x9e\x1e\x78\x22\x3a\xe9\xc8\x0b\xf8\xef\x5b\x0c\xbf\xd0\x2a\xf2\x92\xf6\x20\xc6\x22\xd1\x83\xa8\xb7\xc7\xb3\x39\xaf\x44\xc9\x53\x3d\x4b\x40\xa5\x65\xe6\xb2\x8f\x13\xc7\x97\xa2\x02\xa3\xe2\xd7\x56\xce\x3b\xd5\x72\x82\x38\x39\x1b\x09\xb1\x9c\x56\xee\x74\x62\x89\x18\x67\x47\xad\x09\x11\x07\x01\x66\x04\x4d\x6b\x65\xdb\x71\x0a\x3a\x61\x35\x53\x66\xb7\x3a\x39\x9b\xf3\x4c\xb7\x42\x33\x8c\xbb\x44\xc1\x6c\x64\x54\xb9\xca\x4f\xce\x58\x03\xce\xc6\x6c\x8b\xf5\xee\xf9\xce\x36\x95\xd1\xcc\x9c\xca\x6c\x04\xd1\xbc\x83\xde\x58\xca\x29\x79\xab\x2f\x23\xac\x3b\x8d\xcb\x32\x59\xdf\x31\x1a\x23\xd8\x71\x55\xd7\xa3\xd8\x98\x77\xe8\x3d\x55\x0b\x9f\x2f\xdb\xe8\x34\xeb\x2a\x4d\xf5\x3b\xa2\xe3\xff\x86\x9d\xfd\xbf\xf9\xf1\xb6\x2a\xd5\xf1\xa5\x3c\xd6\x4c\xf4\x06\xfc\x2d\xb7\xc7\xff\x0d\x07\x29\xba\xdf\xfe\xbb\x39\xd5\xb9\x77\x85\xcd\x41\x4b\xcc\x6d\xca\xdf\x13\xb5\xc9\x2b\xf4\x4a\x2f\xf9\x2a\x01\x03\xae\x68\xcd\xe1\xa7\xe2\x45\x9e\xab\x28\xe5\xbd\x29\x0c\xfe\xd9\x3a\x89\x8c\x37\xfb\xf6\x2c\x48\xf3\xfc\x4b\xb5\x7b\x21\xf1\x20\x52\x73\xb2\x5f\xb7\x50\x5a\x4b\xa2\x19\x3c\x10\xc8\xc1\xdc\xc0\xa5\x1d\xc7\x4a\xb3\x32\xe1\xc0\x37\x34\xeb\xfd\xb3\x5e\xe8\x7a\x80\x23\x40\x34\xd5\x1f\x32\x26\x21\x19\x77\x06\x00\xa1\x39\x58\xb7\x1c\x61\x9c\x6c\xf3\x95\x4c\xc9\xc8\xbe\x5f\x6f\xec\x63\xd1\x2b\xae\xd0\x59\x21\xeb\xac\x85\x6d\xfc\x45\x7e\x32\xac\xc4\xd0\xf2\x93\x8e\xd1\xa0\x9d\x92\x55\x29\x3f\x82\x0a\xe3\x5d\xbc\xed\x16\x26\x97\x71\x89\x8a\x40\x09\xed\x9e\xe2\x8f\x20\x24\x32\x57\xf8\xd3\xfd\x9c\x05\x61\x83\x34\xec\x93\xe9\xd1\x41\x82\xfb\x75\xdd\x7b\xe4\xf6\x95\x4a\xaf\x5c\x5b\x23\xa3\x4a\x33\x4d\xbd\x54\xe8\xbf\x95\x04\x59\x06\xd7\x56\x97\x8a\x98\xa6\xfd\x2d\x91\x37\x07\xe9\x56\xa7\x8f\x1c\x92\x70\x8b\x4a\xca\xe1\x8a\x35\x2b\x5f\xe4\x69\xda\x89\xe9\xf4\xff\x55\xf5\x50\xf0\xff\x4a\xcd\x6f\xf5\x7c\x1c\x18\xa9\xce\x94\xc4\x19\xe0\x8d\x8b\xa1\xa8\x12\xd6\x40\x6f\xf7\x36\x95\xff\x20\xd3\xdd\x03\x3d\xf2\x35\xed\x83\x87\x5f\xdd\xbe\xee\x42\x34\x46\x44\x7f\xb0\xd9\x9a\xa8\x7e\xcd\x2b\xff\x50\xdd\x5f\xb2\xfc\x26\x7b\x95\x17\xe0\x10\xdf\xdf\xc9\x12\x1e\x3f\xb8\x51\x95\xbd\xd7\xeb\x4d\xc6\xc3\xeb\x2c\xc7\xe4\x11\x31\x9b\xc7\x00\x53\xc4\x97\x02\xdd\x09\xc2\x2f\xf2\xae\xd4\x5b\x44\x13\x02\x6f\xe9\x07\x39\x4b\xc4\x72\xa6\xe6\xbc\x6a\x02\x1c\xd2\xd4\xe0\x50\x17\x71\x56\xea\x05\xf7\x49\x8b\xce\x2a\x4e\x32\x59\xbc\xaa\xd2\x34\x03\x6a\xcb\x13\x36\xf7\x51\x77\xd3\xf6\xe7\x3f\x54\x78\x10\xa7\xab\xff\xb9\x85\xf0\xb7\xcc\xc7\xd6\xec\xbd\xc1\x93\x02\xee\x0c\x69\x41\x5c\x6a\x66\x54\x93\x82\x42\x8f\xc3\x9e\xc6\x21\x7e\x3e\x3b\x72\xea\x7f\x08\x08\x3c\x2c\x10\xa0\x64\x32\x20\x05\xc0\x21\xd7\x61\xd6\x3d\x8d\xff\x75\x07\x52\xc7\xe1\x2c\xde\xfd\x00\x2f\xdf\xe1\xe0\xcd\x90\xa1\x50\xf3\xa1\xc8\x77\xb2\x50\x77\x54\x72\x72\x25\xd5\x7b\x6c\xca\xbd\xcc\xaa\xad\x2c\xe2\xcb\x14\xfc\x39\x5a\xe0\xd4\xcd\x72\x0b\x6d\x81\xfd\x9e\xf1\x83\xb5\x96\x7f\xb4\xd6\xf2\x6b\x6a\xcd\xb3\x37\xd0\x23\x5f\x55\x67\x16\x62\xf6\x07\x6b\x2c\x2a\xc8\x63\x82\x7c\x7e\x65\xbd\x7e\xa1\x07\x6b\x47\xb1\xf1\xeb\x1b\x6c\xf2\x3f\x58\xa7\x99\x72\x5f\x59\x67\x61\xa7\x28\x6a\xe0\x0f\xcd\xd1\x52\xc5\xe0\xa6\xee\x4f\x53\x93\x71\x97\xa7\x77\xeb\x24\x1d\x90\x51\x8d\x34\x5b\xe4\x37\xa5\x2c\x4e\x64\x76\x9d\x14\x79\xa6\xc5\x39\xf7\xec\x3a\x91\x37\x5e\x55\x32\xbb\x4a\x32\xe9\xbd\xee\x2b\x05\xd2\x01\x61\xb4\x14\xb9\xfd\xb2\x06\x7f\xa9\xf9\x24\x84\x11\x5e\x56\xa5\xca\xb7\x80\x2e\x59\x62\x8a\xa6\xa7\xe6\x9c\x04\x13\xb4\x70\x18\xf5\x84\xc3\xb2\xda\x39\x18\xe0\x8e\xa0\x8a\xfb\xa1\xf7\xaa\x70\x71\x13\xab\xe5\xe6\xb5\xf9\x28\x1b\x49\x02\x77\xa5\xab\xa4\x04\xe3\xcc\x13\xaf\xc0\x89\xfd\xfe\x08\xb8\x6f\xc8\xca\xef\x31\x51\x25\xb1\x92\xd1\xe8\x0c\xfc\xa5\x2e\xf3\x5c\x5d\xdc\x65\xcb\x87\x9d\xa4\x42\xc8\x27\x57\x68\xca\x40\x25\x50\xf2\xca\xed\xdc\x80\x18\xfa\xd1\x28\x3a\xc0\xae\x38\xf4\x3a\x01\x75\xe7\x5e\x82\x68\x3d\x8e\x7a\x8f\x7b\x5f\xef\x3d\xe4\x0d\x2e\x27\x88\x31\xb0\x7d\x78\x9b\x50\x61\x4e\xbe\x38\x3c\x28\xe1\x01\x27\xb6\x08\xf1\x8a\xb3\x81\x6e\x2e\xaa\xcc\xf6\xf1\xeb\x2c\x51\x88\x24\x58\x94\xa6\xbf\x65\x98\x94\xaf\x33\x25\x0b\x74\x16\x6c\x62\x5d\x54\x3b\x18\xff\x17\x49\xb9\xd3\xc3\x24\x0b\x6a\xea\x36\xdd\x26\x46\x13\x83\x23\xcb\x5b\x5d\xd5\xea\x74\xf4\x1c\x6a\x34\x1a\x9d\x5e\xc5\xfa\x16\x56\x9d\xb4\x58\x00\x8c\x12\x7e\x6e\x04\x1f\xbb\xcc\xb7\xbb\x4a\xc9\x15\xa3\x07\x4e\xdc\x51\x2a\xa1\xa6\x8f\x70\x66\xb0\x3d\x0b\x6d\x48\x23\xca\xf8\x2a\x59\x3d\x07\x5d\xc7\xc7\x3c\x87\x03\xe7\xa8\x6d\x39\x8f\xa6\x64\x9f\x72\xda\x1d\x34\x08\xc6\x1c\x17\x4a\x73\x76\x49\x76\xe5\x4f\xf7\x43\x43\x14\xfa\x05\x5c\x8f\xad\x92\x15\x58\x38\x23\x8b\x28\x46\x13\xdb\x67\xd8\xe8\xde\x32\x6a\xe7\x77\xa2\x7b\xaf\x1a\x7e\xb8\x19\x4d\x3e\x80\x90\x44\x74\xe9\x9f\x3e\xbe\x19\x70\x40\x3b\x54\x49\x6b\xb1\xb4\x2a\x04\xf5\xa2\xa9\x10\xb8\xc6\xa1\xf9\xd2\x37\xd7\x6e\x0d\x18\xb8\xa4\x2e\x56\x4d\x76\x1c\x3a\x5e\x74\xda\xe3\xcf\x65\x4e\x7c\xca\x44\x18\x4f\x7a\x8d\xef\x64\xc8\x05\x28\xc6\x34\x0b\x73\x95\x31\x7a\xbf\x07\x23\x85\x56\xec\xc3\x6a\x47\x73\xde\x1b\x7a\x2e\xc1\xb7\xb5\xd5\x63\x9e\xbe\x6e\xa0\xc3\xc2\xaa\x48\xb5\x38\x76\x9d\x94\xc9\x10\xea\x91\xce\x7b\xd4\xef\xcb\x23\x0f\x10\x78\xb1\x58\x5a\xc6\x6c\xb1\x70\x3d\xe5\xef\x10\xb6\x97\xfa\x1f\xee\x88\x44\x3e\x70\x80\x56\xd8\xb0\x0f\x61\xb9\xc9\xab\x74\xf5\x51\x66\x2b\x59\x4c\xe9\x84\xc7\x61\x01\xd7\x17\x52\xa9\x54\xaf\x33\x16\xaa\x8d\xcc\x86\x96\xdb\x9e\x45\x6a\xcf\xdb\x5a\x65\xf0\x6a\x40\xa7\x6b\xd4\x72\x98\x3b\x38\x11\x04\xcf\x08\x30\x77\x78\x76\x99\x17\x0a\x0d\x9e\xa4\x81\x0b\x4d\xc2\x05\x36\xf9\x6d\xb2\x2c\xf2\x34\xb9\x34\xee\xca\x4d\x21\x67\xb6\xfe\xbb\x39\xb1\xc9\x39\x2f\xd9\x11\xb4\xe2\xa1\x37\x7b\x07\x2c\x32\xdc\xca\xb2\x8c\xaf\x24\xa8\x02\x2b\xaf\x4b\x13\x8f\xbc\xba\xd9\x52\xe9\x81\xc3\x19\xcf\x13\x6f\x01\x80\x24\xac\x2f\x18\x6b\x1a\xb2\xe7\x37\x49\x9a\xbe\x90\xa5\x2a\xf2\xbb\xff\xe9\x46\x59\x65\x03\x5b\xe5\x7e\xcf\x8e\xf4\x56\x99\xef\x64\x86\x91\x90\xee\x0f\x13\x62\x9c\x82\xfd\x10\x88\x5e\x80\x18\xf7\x70\x76\x36\x9f\xfa\x37\xd1\xfd\xfe\x48\x85\x2a\x7f\xd9\x4c\x43\x88\x3d\x88\xfb\xa5\x62\xb0\x35\x36\x3b\x76\x6f\xb6\xf2\x4e\x61\xca\xfa\xbb\x76\xab\x8a\x52\x16\xd7\xc9\x52\x46\x27\xd6\x42\x43\x57\x61\xaf\x07\xca\x7a\x5d\x0a\xe2\x8b\xf5\x3d\xa9\xc4\xd0\x89\x9e\x74\xf4\xa8\x6f\x61\x30\xd8\x1d\x13\xbf\x3b\x26\xd8\x1d\xfa\x8d\xe6\x98\x31\xb1\xc7\x9b\x90\xd8\xda\x4d\x45\x11\x6e\xe2\xf2\xc5\xfb\xb7\xa6\x89\xb8\xd4\xb4\xbc\x2f\xa4\x7f\xd7\x78\xad\xe9\xed\xf8\x3b\x64\x0c\xa7\xa6\x3e\x73\x2b\x46\x23\xef\x61\xd4\x79\xd8\x7e\x91\x4b\xb7\x5b\x87\x69\x2a\x1a\x19\xf4\x9b\x09\x1e\xe7\x40\x9b\x71\xc6\x09\x92\xe5\x99\xf4\xbd\xe9\x64\x9b\x70\x20\x19\xf3\x52\xa0\x75\x7e\x42\x34\x90\x65\xc2\x7b\x89\x5f\xdd\x40\x3d\x43\xec\x14\xc0\xd7\xdb\x3b\xd1\x3c\x88\xda\x0f\x86\xce\x09\x5d\x1d\xae\x0c\x9a\x92\xf8\xc4\xdf\x82\x11\x1f\x64\xef\x5a\x1d\xe3\xb3\x6e\xad\x4e\xf4\xd8\x32\x3f\x3f\x7e\xaa\xcd\xed\xce\xaa\xf1\x82\xb5\xa7\x42\x8b\x33\xa3\x43\x1d\x33\xea\x64\x73\x78\x0e\xd2\x97\xfc\xfd\xe5\xd7\x0b\xc2\xde\xdf\x22\xbd\x0d\x12\xa7\x95\x68\x4f\xab\x2e\xd7\x28\xfa\x2d\xe3\xad\x09\x2e\xba\xf3\x9f\xbb\x40\x44\x78\xf4\x2e\xf7\x1c\x82\x67\x37\x9a\x81\xf2\xa0\xd4\xd5\x15\xe1\xff\xe0\x49\xe1\x90\xbc\x35\x2c\x8b\x0d\x9f\x25\x16\x55\x96\xe6\x60\x36\x38\x78\xf2\xf8\x90\x3e\xa2\x7b\xfa\xd8\x16\xf6\xcc\x53\xe4\x1d\x87\x2b\xf4\x24\xc0\x96\x68\x68\xa2\x6c\x02\xe7\xf0\x87\x8e\x2b\x7d\xf4\x50\xbe\x1d\x90\x17\xef\x70\x76\xa8\xf8\xea\x4a\xae\xac\xba\xf7\x4d\xa2\xc7\x39\x7d\x93\xe7\xa5\x64\x74\x46\x4e\x2e\xab\xe5\x17\xa9\x4e\x10\xd2\x02\x88\xfe\x9c\x0f\x27\x33\x7e\xad\xc9\xcd\x15\x44\x7f\x69\x8b\xa1\xbe\xfc\x84\xf0\x04\x5c\x76\x58\xca\x03\xd2\x69\x5c\xa9\x5c\x4b\x25\x5a\x9c\x5f\x98\x93\x64\x3d\xcb\xe0\xde\xeb\x3f\xbb\x81\x96\xff\x23\x19\xf6\x91\x25\x5a\x8f\xc4\xb2\x59\xb6\x75\x4d\xaf\x35\x89\x4b\xcc\x92\x09\x82\x91\x7d\xfa\xc2\x05\x01\x2b\xc3\x34\xb9\x2c\xe2\x22\x91\x8d\x90\xfb\x3c\x2f\xe4\x1b\x48\xbd\xa3\x04\x0b\x10\xcd\xd8\xbb\xba\x29\xb3\xd0\xac\xcc\xed\x23\xf1\x2a\xc9\x64\x59\x22\x32\x6b\x9c\x96\xe2\xac\x23\x9c\xd9\xfb\xa1\xaf\x87\x9d\xfb\x42\x2a\xc3\x69\x98\xce\x33\x6b\xd4\xeb\x3e\x31\x1a\xb5\x72\xf0\x5e\x0e\x23\x2e\x2e\x76\x85\xdc\xc5\x85\x7c\x95\x17\xdf\x37\x0f\xad\xf8\x63\x8b\x9b\xcc\x37\x71\xa2\x5e\xe5\xc5\x8b\xf7\x6f\xc1\x02\x8b\xb2\x3d\xbf\xac\x92\x74\x65\x9b\xd7\x97\x1b\xfe\xfd\x7d\xda\x91\xb1\xcb\xb8\x94\xc2\x3b\x47\x37\x5d\x82\x49\x1b\x37\x15\xf1\x4c\x1c\x51\x29\x5a\x2c\x57\x5f\xaa\x1d\xec\x59\xc0\xb5\x83\xd2\x1d\x96\xed\x20\x2a\xc7\x70\x35\x08\xd0\x88\x35\x0d\xf6\x6d\x6f\xda\x1a\x99\x90\x7a\x37\x75\xbd\x36\x57\xcc\xae\x31\x27\xc2\xeb\x0e\x7f\x21\x77\x85\x5c\xc6\x10\x90\xcd\x30\x96\xa0\x3d\x19\x7e\x76\x40\x9c\x6b\x0d\x1d\x65\x47\x46\x8e\x59\xf5\xca\x2f\x16\xc2\xc4\x54\x68\x49\x39\x9a\x11\xf2\xef\xf7\xbc\x33\x3f\xfc\xf7\x8e\xec\xfa\xc3\xdf\x30\x29\x21\x0b\xca\x31\xe5\x72\x23\x57\x55\x2a\x19\x25\x31\x14\x28\x8d\x8a\x88\xac\xf2\x2d\xe4\xb3\x16\x8e\x8f\x28\x33\x96\x7d\x50\xf0\x32\xc9\x56\x56\x8a\x6a\xb2\xb2\x3d\xb7\x37\xbd\xce\x4e\x4a\xc3\xd8\xcb\x95\x69\x8b\xd3\x39\x51\x30\xe1\x5c\xcb\xe2\xa3\x5d\xa3\x7d\x0a\xd3\x5f\xbe\xe3\xf1\x9e\xc7\xab\x6b\xdd\x4f\x7f\xa8\xdc\xc9\x09\x9f\xd8\x68\x9a\x03\x8f\xc1\x98\x20\x0e\xf3\x6c\x29\xcd\x07\x22\x83\x94\xac\xbe\x93\xcb\x7c\x0b\xef\xba\xd3\xeb\x4f\xd3\xce\xbe\x4b\x0b\x7e\xd5\x07\x04\xe0\x65\x3d\xd5\x99\x79\x00\x90\x07\xbd\x4e\x40\x80\x03\xc9\xee\xf7\x87\xca\x0d\x2a\xea\x10\xe6\xcd\x27\x65\xad\xd9\x06\x69\x1f\x8d\x89\x90\x48\xc3\x8f\x17\x7f\xfb\x10\x42\x77\xbb\xa9\xe7\xbd\x41\x48\x8b\x1e\xdc\xb4\x11\xb4\x61\x9e\x16\x0c\x94\x6a\x55\x4b\x33\xcd\x5a\xde\xd8\x38\x89\x2c\x29\xeb\x8c\x91\xfb\x50\x67\xc0\x27\x0d\x2c\x18\x55\x8c\xab\xfd\x1e\xb0\xd2\xdb\x0a\x66\xff\x73\x06\xd7\xc9\xd1\x57\x11\x79\xfb\x8d\x0d\xcb\xdc\xee\x9c\x4e\x3a\xee\x09\x30\x1d\x7e\xcd\x13\x6b\x54\xd4\xd6\x68\xc5\xba\x1b\x18\xea\xca\x61\x7a\x93\xdf\xa5\x17\xfc\x77\x96\x9e\x1b\x62\x02\x50\x19\xed\x99\xd7\xeb\x15\x18\x26\x38\x3d\x4a\xca\x4f\xb2\xd4\x7c\x10\xa3\xac\xae\x29\xd8\xc4\x18\x9b\xbd\x67\x78\x7a\x0d\xa7\x72\x25\xc3\x26\x80\x4e\xc5\xa5\x5e\xc8\xb8\x58\x6e\xec\xae\xcb\xe8\x68\xc2\x7a\x5b\x11\x95\x16\x97\x8d\xca\xfe\xce\x37\x7d\x60\x78\xa2\x21\xba\xc7\xfc\xc9\x6f\x95\xd8\xb0\xbb\x71\xd9\xd1\x09\xb2\x81\xd1\xb2\xc7\x9e\xbe\x12\xbc\xd1\xb3\x76\xe7\xd8\x60\x79\x6f\xd2\xf1\xa2\xdb\xbb\x2d\x58\xee\x7f\x5b\x31\xf1\xfb\x1d\x7d\xd6\x6d\xfb\x1f\x9e\xb1\x95\x3d\xcb\x69\x6d\xd3\x48\xe2\x82\x80\x0e\x3f\xb6\x88\x6f\x0f\xec\xa8\x65\xf2\x2f\x27\x42\x0d\xe7\x58\xe7\xc5\xcb\x96\x2b\xa3\x6f\xd4\x61\x16\x04\x65\xfb\x07\xdf\x02\x28\xac\xa0\x70\xed\x6a\x01\xdb\x01\xd5\x5a\xaa\x55\xdd\x09\x03\x6a\x37\xd4\x0b\x66\xbd\x1d\xd6\xa9\xf4\xa0\x9c\x3a\xa8\xaf\x2b\x00\x49\x4b\x01\xf8\x58\x88\x33\xa8\xcd\xc4\x14\xf9\x4d\xb3\xe8\x0b\x7f\xd1\x43\x90\xd2\xfd\x9e\x1d\x5d\xb5\xf5\x4b\xd0\x94\xbe\x7e\xa9\x4d\xd3\x1e\x98\x41\x47\x5d\xf4\x24\xd0\xbf\x37\x8a\x1f\x5f\x89\xcf\x2d\xf3\xe2\x78\x97\x8e\x9e\x49\x8b\x4d\x27\xce\x12\x15\xcb\xdc\x23\x03\x77\x40\x65\xdb\x37\x53\xec\x28\x9e\xe0\xfd\x11\xda\xe2\xd8\xf7\xb7\x73\x0c\x6b\xad\xf9\x32\xec\x28\xbf\xe1\x60\x25\xd3\x6b\x52\xb7\xa2\xfd\x61\x9e\x51\x01\xf7\x77\x1a\xab\xdb\xf5\xdf\x67\x35\x08\x11\x78\x28\xf3\x75\xf8\xac\x52\xf9\x1b\xa7\x56\x18\xcc\xba\x89\xcb\x8d\xce\xfa\x43\x5c\x6e\x7e\x2f\x6b\x52\xaa\x5c\xcb\x1b\xeb\xf0\x07\xbc\xfc\x9d\x02\xa0\x17\xe2\xeb\xf0\x5d\x9e\xc9\xc1\xac\x74\xc2\x57\xe1\xae\x48\xae\x63\x05\x67\xff\x77\xec\xf0\xa0\x80\x49\xdc\x3a\xfc\x0e\xa4\x44\x30\x47\xec\x0e\x88\xd5\x04\x1a\xe5\xb6\x9b\x13\x17\x98\xde\xe9\xe5\x6e\x6e\xb2\x70\x57\xed\xe3\x21\x2a\x81\x98\x6d\x51\x13\xff\xac\x19\x02\x3b\xb7\x99\x01\x12\x02\xad\x93\x51\x48\x5c\x3d\xa8\x90\xf0\xc4\xfc\xbe\x3a\xe2\x6b\x55\x0e\x5d\x49\xbd\x23\x8f\x4b\x4b\xfc\xec\xd6\x25\xcd\x49\xfd\xa0\xf5\x46\x32\x93\xf3\xa3\x02\x6c\xc7\xc1\xfe\x73\x36\xe7\xfa\xc2\x06\x8d\xe6\x59\x10\x28\x9a\xb1\xbd\xee\x70\x8f\xfb\x19\xa8\x2b\x3f\x02\x13\x74\xc5\xb3\xd0\x99\xe0\xf7\x5d\x45\x9e\x37\x62\x39\xf8\x78\xea\xc1\xf5\xd2\xa8\xe4\xf7\x2b\xa9\xe2\x24\x8d\x14\x5a\x21\xca\x3d\x73\x35\x86\x76\x49\x61\xde\x9c\x31\x68\x6c\x10\x40\x93\x1f\x22\xcd\x54\x69\x5a\x65\x4f\x51\xc2\x97\xef\xfe\x16\xbe\x7c\xfb\xdd\xcb\x8f\x8b\x37\xef\x9f\xbd\x58\xfc\xf0\xfe\xfd\x5f\x2f\x20\x12\x49\x02\x86\xf9\xae\x07\x93\x07\x47\xb3\x63\xff\x3d\x70\xba\x8f\x4a\xa1\xae\xcf\x68\x67\xb8\xec\xd4\xe9\x77\x69\x21\x32\x1b\x03\x16\x41\xad\x8b\xd9\x99\x1e\x9f\x27\x73\xfc\x94\x4c\xdc\x23\x31\x9a\x91\xb8\x2c\x25\xe0\x4b\x24\x25\x4c\xfe\x57\xf1\x12\xd7\x2c\x01\x3f\x05\x5c\x11\x64\xce\x97\x36\x36\x5e\x34\x23\x8e\x6f\x81\x62\x2e\x6a\x5e\xb7\xa8\x7b\x40\xe6\x5c\x93\xd3\x5e\xc9\xbf\x25\xf2\xa6\x5b\x48\xa7\x91\x39\xb7\x8b\xad\x5b\xc4\x2c\xcd\x6e\x29\x93\x4c\xe6\xfb\x56\xc7\x2f\x63\x4d\x8e\x4f\xd6\x32\x56\x55\x21\xcb\x21\xab\x9f\x83\xe6\x14\x7f\x68\xe5\xe0\x9c\xf8\xfe\xcd\xeb\xb7\x6f\x5f\x7e\x5c\x3c\x7b\xf7\xfd\x9b\x97\x8b\xef\x3e\x3e\x7b\xfe\xd7\x97\x9f\x16\xaf\xdf\xfd\xed\xfd\xf3\x67\x9f\x5e\xbf\x7f\x27\x6c\xc6\x4f\x2f\xdf\x7e\x78\xf3\xec\xd3\xcb\xc5\x77\x6f\xde\x3f\xff\xeb\xe2\xcd\xcb\x4f\x8b\x1f\x5e\xbe\xf9\xf0\xf2\xa3\x90\xa1\xad\xe4\xf9\x4f\x17\x9f\xde\xbf\x5d\x3c\x7f\xff\xf6\xc3\xfb\x77\x2f\xdf\x7d\x5a\xbc\x7d\xf6\xee\xd9\xf7\x90\x05\x2b\x79\xfb\xf2\xd3\xb3\x37\x8b\x4f\xf0\x96\x17\x8b\x0f\x1f\xdf\x7f\x78\xf9\xf1\xd3\xeb\x97\x17\x4d\x86\xf7\x2f\x7e\x7a\xf3\x72\xf1\xd3\xbb\xd7\xaf\x5e\x77\x1a\xf0\xf2\xdd\xf7\xaf\xdf\xbd\xbc\x58\xbc\x7d\xff\xd3\xbb\x4f\x8b\x0f\xcf\x3e\xfe\xbf\xe4\xbd\xfb\x5b\x1b\xb9\x96\x28\xfa\xbb\xff\x0a\xf0\x39\xe3\x53\x35\x08\xb7\x0d\x79\xb5\x13\xb5\x87\x24\xa4\x9b\x33\x04\x72\x81\xf4\x3e\xfb\xba\x3d\x9c\xc2\x96\x8d\x26\x46\xe5\xad\x92\x21\x34\xf8\x7f\xbf\x9f\x96\x1e\x25\xa9\x54\xb6\x49\xd2\x7b\xe6\xfb\xee\x2f\xe0\xaa\xd2\x5b\x4b\x4b\xeb\xbd\x0e\x3e\x96\xf5\xce\x4e\x3f\x5f\x1c\x9d\xfc\x0a\xff\x0f\xcf\x2e\xcf\x0f\xcf\x7e\x3f\x7a\x77\x88\xc3\x59\x9e\x1c\x7c\x3c\x7c\x7f\x79\x70\xf6\xeb\xe7\x8f\x87\x27\x17\x65\xf5\xa3\x8f\x9f\xce\x4e\x7f\x3f\x7c\x7f\x79\x74\x72\x7e\x71\x06\x1f\xfd\xce\x8f\x8f\xde\x9e\x1d\x9c\x1d\x1d\x9e\x5f\x1e\x9d\x9f\x1d\xfe\x7a\x74\x7e\x71\x78\x76\xf8\x1e\x93\xf6\x87\xc3\x83\x8b\xcf\x67\x30\x83\xf7\x87\x1f\x0e\x3e\x1f\x5f\x5c\xda\x57\x16\x27\xd1\xe2\x90\x01\x41\x18\x31\xe0\x53\x48\x49\xb9\xa2\x74\x94\x77\x9a\xca\x56\xdc\x17\xbd\xed\x6d\xa6\x8e\xef\xc9\xc1\xdb\xe3\xc3\xcb\xd3\x4f\x72\x4c\x07\xc7\xb6\x07\x73\xc8\x23\x7d\x3f\xac\x1a\x77\x6f\xbb\x8b\x56\x4f\xbc\x2c\x51\xb3\x74\xbd\xed\x0e\x5a\xb5\xf4\xe5\xf7\xd8\xbe\x95\x5f\xab\x1b\x2e\xbb\x5e\x07\x50\x65\xfd\x5a\xb0\x74\xba\xa8\x01\xba\xea\x1c\xeb\x0e\x41\x6f\xbb\xb3\x04\xa3\x7e\xbb\xbc\x9e\x82\x80\x23\xb5\x4d\xe6\xab\x93\xaf\x20\x77\x1c\x8d\x92\x35\xbb\xa9\x22\x21\x6e\x63\x0c\x99\x3a\x97\x6b\x40\x2f\x4f\xe8\xca\x02\xf2\xa2\x5e\x03\xdc\x65\x13\x75\x45\xca\x46\xea\x4e\x50\xd9\x46\x4d\x89\xb2\x89\x9a\x33\x5a\xb6\x10\x2f\x50\x36\x10\xc5\x00\x65\xf5\xd8\xe7\xb2\x72\x04\xb3\x94\x55\xab\x1f\x9d\x8a\x75\x38\xcb\xa9\x5e\x53\x44\x36\xb2\x16\x37\xca\x66\xd6\x15\x2a\x47\x53\x8f\x86\xcb\xe1\xd4\x96\xa9\x6e\x67\x2d\xda\xaf\xee\x6b\x5d\x51\xdf\x18\x70\x64\x6d\xce\xeb\xed\x55\x2b\xce\x66\x4e\x25\x49\x6b\x94\x8f\x97\x37\xf4\x2b\x30\x08\xae\x62\x69\xad\x81\xaa\x21\x81\x71\xd4\xc5\x5c\x52\x61\xbc\x7d\x04\x25\xc8\xd8\xda\x43\x36\xcb\x5e\x9b\x2a\x30\x8f\x8a\x37\x86\x85\x36\xd2\xb5\x19\xcc\xad\x2b\x92\x43\xcf\xd0\xba\x45\x88\xcf\xa7\xba\x26\xbe\x25\xa4\x59\xa1\xb5\x97\xb8\xf5\x6f\x6c\x7f\x94\x2d\x1b\x71\x3d\x6b\x1f\x40\x2d\x9d\xc6\x1c\x3d\xd0\xa2\x74\x06\x90\x98\x51\x65\x0a\x57\x4a\x1f\xc9\xe5\x10\xf5\x13\x1c\x41\x54\x06\x37\x7f\x5b\x81\xb8\x5b\x41\x8b\xa8\xef\x72\xb2\x77\x19\x67\xb1\xf7\x2e\x4d\x54\xf9\x28\x94\x68\xcb\x51\xe2\xe9\xd8\x60\x9b\x73\x06\x11\x28\xb8\x94\x63\x39\x9a\x7c\x2e\x28\x9b\x9e\x0b\x4e\xe7\x73\x32\xfe\xa0\xe8\xaa\x0f\xb3\x6c\x5a\x60\x08\x8e\xfd\x5e\x8e\xc2\xfa\xa2\x83\x01\x54\xf8\xca\x8e\x5d\xbe\xc3\x44\x89\x4c\xa1\x10\x7c\x94\x85\x39\x21\x7f\x12\xf3\x74\x4e\xb2\x99\x5b\xcd\xbc\xc7\xa4\x2d\x87\x04\x01\xe9\x26\x39\x26\x6d\x45\xc9\xea\x24\x3b\x6a\x0d\x40\xcb\x5d\xfe\x36\x9c\x9f\x11\x35\x96\x9b\xea\x7c\xfc\x5b\xc6\xed\x5b\x4d\x74\xd4\x9b\x29\x57\xeb\x6c\x6c\x59\x6d\xea\xea\x7a\xab\xcd\xa1\x6b\x07\xbe\xb9\x71\xf4\x13\xba\xb3\x6b\xb6\xb1\x35\xb3\xad\xb1\xce\xfa\xfc\xa9\x0d\x97\x55\x8c\xd9\x8d\x17\xc1\x41\xf2\x5c\x7a\xdf\x29\xd2\x90\x20\x7f\x00\x64\x50\x64\x40\x45\xfd\x32\x00\x64\xdf\x03\x68\xd9\x27\x0d\x76\x14\x79\x30\xe9\x55\x05\x90\xad\x0e\xb3\xd4\x0b\x86\xba\xc4\xdd\xee\x50\x72\xc0\x95\x63\x20\x5b\xad\x1c\x17\xf9\x72\xed\x31\xb3\x21\x3b\x43\x7c\x12\xe0\x85\x28\x5e\x31\xe2\x66\xcb\x11\xd5\xc8\x10\x62\x88\xaa\xda\x9b\xb2\x51\xe3\x85\x87\x3e\x2a\x88\xe3\x86\x16\x72\x32\x3a\x59\xea\x67\x26\xe8\xcc\x01\x63\x1c\x16\x38\x1a\xaf\xfa\xea\x7f\x0b\x60\xba\xe4\x11\x2a\x9c\x71\xfa\xb0\x44\xd5\xf2\xc1\xe7\xfa\xae\x6c\xc3\xab\xc6\x5a\x53\xa8\x32\xe3\x95\x3b\x68\xd7\xd4\xd9\xc0\x95\xcb\xfb\xdb\xc1\xc9\xfb\xe3\xc3\xb3\x73\xbc\xc9\x0c\x29\xbb\xcd\xbf\x78\x11\xc9\x97\x35\xe3\xb0\x97\xc8\x86\xc3\x28\xd1\x6c\xcc\xb4\x13\x79\x48\xd9\x93\x13\xe3\xed\x6d\xa2\xa8\x03\x81\x95\xa9\x5e\x64\x34\xea\x1e\x5c\x27\xf9\xda\x0c\x6a\x57\xde\x9d\xdf\x02\xd2\x4f\x81\xe6\xbf\x14\x62\x37\x02\xc7\xb5\x90\x58\xc1\x11\x55\x4a\x65\xe5\xe2\x9c\x1f\x9e\xbc\xbf\x3c\x78\x07\x84\xef\xb6\xec\x5f\x93\xf0\x7f\xbf\x7c\x7b\x70\x7e\xf8\xfe\xf2\xfd\xe1\xf9\xbb\xb3\xa3\x4f\x17\xa7\x67\xe7\xea\xbb\x66\x38\xfe\xcf\x85\xac\xf8\xe9\xec\xf4\xe2\xf4\xe2\xef\x9f\x0e\xf5\xc7\xf7\x87\x9f\xce\x0e\xdf\x49\xfa\x5b\xb1\x78\xe7\x97\x1f\x8f\xce\xcf\x8f\x4e\x7e\x0d\x3f\x1f\xbd\xaf\xfb\xf2\xf9\xe4\xe2\xe8\xd8\xff\x78\xf6\xf9\xe4\xf2\xfc\xef\x27\xef\xf4\x13\xf0\x79\x67\x7f\xbf\x3c\x3b\x3c\x3f\x3d\xfe\x5d\x92\xe7\xe7\x97\x1f\x3e\x9f\x38\x73\x38\x3e\xfd\x55\xb2\x17\x6a\x3e\xa7\xe7\x47\x9a\xdb\x04\xbe\xe8\xf2\xdd\xe9\xc9\x87\xe3\xa3\x77\x17\xba\xe3\x23\xc9\xf9\x1d\x5d\x5c\x1e\x5c\x5c\x98\x29\xda\x25\xf8\xdb\xd1\xf1\xf1\xe5\xbb\xdf\x0e\x4e\x7e\x3d\x0c\xbe\xc8\x6a\xee\x07\xcd\xb7\xa9\x7f\xea\xd5\xe9\xd9\xa7\xdf\x0e\x4e\x2e\x4f\x3f\x5f\x48\x2e\xe4\xec\xf0\xe4\xbd\xf9\x72\x70\x76\x76\xf0\xf7\xcb\x83\x8b\xcb\xc3\x83\x77\xbf\xa9\x57\x17\x07\x67\xbf\x1e\x5e\x5c\x9e\xbe\xfd\xdf\x87\x66\x64\xaa\x86\x61\x71\xe0\xd5\xdb\xa3\x93\xf7\x92\x4b\x3c\xff\xfc\xe9\xd3\xe9\x99\x2e\xf7\xf1\xe0\x93\xe9\xf0\xbd\xe4\x7e\x2f\xcf\x0f\xe5\x17\x0f\x4e\xac\xcf\x50\x1d\x11\xab\x0b\xc8\x43\xa5\x7e\xee\xaa\x00\x8e\x6b\x8c\xe8\x2a\x44\x7f\x84\xd1\x71\x6d\xd1\xc6\xd9\x74\xf7\x26\x9b\x57\xcd\xe9\xd6\x5a\xcf\x55\x43\x82\xac\xf3\x87\x2a\x6d\xe7\x34\xf6\x31\xc9\xde\x77\x8b\xc5\x1c\x92\x2b\xc6\x6d\xee\xbe\xdb\x52\x0e\xb0\xe7\x21\x8c\x4a\x85\x6a\x54\xc4\xb6\xf7\x66\x1d\xa9\x1a\x94\x7f\x8a\x5b\xa1\x5b\x6f\x1d\x7d\xf7\x4d\x7d\x14\x95\x3e\x4a\xe3\x40\xf6\x03\x8d\x03\xa1\xd5\x5b\x9c\xb7\xad\x8a\xd9\xf0\xa1\x79\xdb\xe8\x66\x3e\xf1\xfc\xeb\x3d\xf0\x7f\xe8\xe1\x1b\x2d\xf8\x3c\x3d\x26\x18\x3d\x51\xc7\x26\xe4\x2c\x63\xbd\xed\x2e\x22\xac\x58\x70\xcf\x65\xaa\xda\x53\x50\xcd\x18\x06\x56\x8d\x4c\xa2\xc5\x31\x04\x16\xfb\xab\x8d\xdf\xa0\xeb\xea\x64\xc0\x32\xa1\x34\x8b\x9b\xc4\x6c\xe0\x6a\xf5\xbd\x9e\x4d\x8f\xe3\xbf\xa5\x54\xc0\xae\xc3\x97\xbf\xd4\xca\x71\x01\x39\xeb\xb0\xda\x5d\xcc\x29\xa8\xbc\xd3\xab\x8e\x6c\xeb\x1a\xa8\x54\x80\x86\x82\x1d\x8a\xeb\xb2\x8d\x21\x8e\x57\x36\x69\xba\xbb\xe8\xa7\x8c\x48\x1f\x98\x33\x64\x9d\xf6\xab\xc6\xff\x2e\x62\x51\x58\xed\xa8\x5a\x6d\x83\x0e\x83\x76\x62\x46\x08\xca\xcb\x6a\xe6\x78\x59\x39\x8b\x06\xa1\x83\x22\xb2\xfb\xc1\xd0\xc6\x0d\x63\x2a\xfd\xbb\xce\x5e\xc0\x4a\x57\xb1\x65\xc2\x53\xa4\x74\x7f\x36\x88\x0d\xca\x4c\x0c\x10\x59\x9d\xe1\xce\x6b\xf6\x86\x1a\x7f\x77\xb6\xb3\x93\x66\x98\x0f\xe8\x80\x0d\x87\x28\x07\x03\xca\x0c\x1c\x75\x50\x86\x32\x9d\x62\x18\x65\xed\x6c\x22\x08\x4f\x1b\x79\x5b\xe4\xf3\x42\x65\x8b\x97\x58\xc8\x8a\x9e\xa7\xa5\xe8\x39\x29\xa7\x46\x50\xd3\x98\x97\x34\xd3\xc7\xc7\x91\x15\x66\x19\x28\x7f\xb0\xba\xf8\x1e\x59\xa6\x4b\xdb\xdc\x95\x27\x44\x73\xe3\x27\xc1\xf4\x1b\xf6\x04\x2a\x8f\x06\x89\x70\xc0\x51\x1e\x74\x96\xd5\x77\xda\x80\x05\xbe\x26\x2a\x8e\x98\x7c\xab\xf1\xb4\x1e\x8b\x2e\x61\xcd\x87\x4a\xc3\x0b\xe3\xd7\x39\x20\xc3\x81\x0a\x6c\x32\xc4\x62\xb9\xbc\xf5\xad\x33\x5c\xb8\xec\xf9\x4d\xab\xf8\x03\x31\x78\xaa\x29\x58\x42\xcf\x55\x08\xf0\xee\x63\x33\xda\xa8\xaa\x13\x83\x5d\xfb\x7a\xcb\x6f\xa4\x06\xd1\x58\xd0\x93\xf0\x94\xd9\x1b\x20\x79\x30\x24\x41\x6f\x0a\x30\xdf\x70\x2f\x2a\x3c\x93\x7f\x91\x70\xcc\x08\x2a\x46\x16\x88\x44\xdc\x88\x7c\xab\x14\xed\x9e\xa0\xc3\x45\x24\x4d\xab\x5e\x6d\xa2\x07\x49\xad\xcf\x88\xc8\x99\xf1\x5d\x0a\x0b\x4b\xf2\x22\x56\xae\x1c\x52\x49\x3f\x19\x7b\x13\x6a\xcf\x4b\xcc\x3b\xca\x31\x73\x50\x8d\x37\x2f\xe5\x7f\xb3\x24\x4d\x14\x35\x88\x09\xcd\x50\xc0\xff\x42\x99\x46\x3c\xbd\x76\x8d\xed\xcb\x37\x0d\x04\x74\xd6\xa8\x79\x29\xf2\xf9\x31\xb9\x25\xb3\xdf\x29\xb9\x33\x04\x44\x13\xd9\x88\x40\xbd\xdd\x7c\x21\x66\x44\x84\xf5\x41\x59\x6d\xbe\x6d\x60\x50\xe3\x54\xf5\x08\x57\x25\x18\x0e\xed\x43\x56\x54\x78\x4a\x4f\xa5\x19\xca\x55\x69\xe1\xd2\x54\x16\x93\x9e\x85\x4c\xdd\xe2\x7c\x63\xb5\xb8\xd1\x4b\xdc\xc3\xce\x52\xcc\xd7\x6d\x6d\xa0\xb8\xda\xb4\xc6\x21\xb1\x37\xe8\xc6\x1c\xd3\xdd\x49\xce\x77\x81\xee\x9f\x52\x36\x35\x47\xd0\x18\x3d\xf2\x75\x00\x6f\xd9\x09\xd5\xc6\x6e\x36\xce\xe6\x8e\x39\x95\xc3\x1f\xac\xea\x30\x68\x74\x9c\x89\x2c\x6c\xc9\x76\x04\x62\xbf\x03\xf5\xd1\x7d\x1f\x1b\x40\xf5\x5c\xd7\x8f\x75\xde\x7e\x17\xeb\x22\x6c\x42\x63\x9a\x5d\xe5\x01\xac\xeb\x8e\x4b\x73\x8d\x63\x78\x9f\x2e\x13\xe1\xda\x31\x29\x0a\xbd\x34\x61\x02\x63\x50\x64\x51\x25\xa8\x3c\xce\xdc\x27\xcf\xbc\xe9\x36\xce\x3d\xc6\x02\x5c\xac\xf7\xb1\xaa\xe8\xbc\x02\x1f\x2a\xa3\xf0\x70\x19\xc5\x75\x6c\x69\x3d\x73\x16\x71\x5b\x5a\xfc\x70\xb7\xa5\xd9\x26\x2d\x1a\xbc\xb5\x2b\xf7\x90\xce\xcc\xbe\xcb\x56\xeb\x3e\xa5\x68\x84\x79\xa0\x74\xe3\x31\x66\x87\x97\xb0\xe3\xb2\x40\x92\x84\xff\x56\x77\x26\xe5\xf0\xbc\xa0\xe3\x0f\x39\x57\x74\xa0\xe2\xc0\x8c\x6f\x47\x56\x90\x06\x79\x7c\x34\x16\xd2\xae\x27\xbe\x2d\x80\x89\x4e\xe9\x81\xab\xdc\x40\x78\x6d\x4f\x4c\x26\x37\xe2\x95\x5b\x5a\xb7\x11\xd7\x31\x44\x65\x4b\x83\xa7\xe4\x01\x82\xfe\x80\xe5\xf5\xb2\x62\x62\x1c\xfa\x2f\xf8\x1e\xf7\x75\xee\x07\xfd\xca\x9b\x5e\xd5\xe9\x01\x2b\xf5\x29\xb8\x19\xe8\x57\x5e\x66\x5e\xa3\xbc\x49\x84\x63\xff\x4d\xd2\xd4\x1b\xa4\x71\xa0\xa8\x8b\x4c\x52\x1f\x93\x44\x51\xe6\xb3\xdc\xf0\xdd\xef\xc9\x5c\xde\xe0\x6c\x44\x89\x65\x2a\x2b\x71\x4a\xec\xce\xac\x89\xfc\x11\x18\x99\xaf\x09\xe6\xf1\x9d\xec\x68\x75\x7f\x57\x85\x37\x68\x54\xf8\xb8\x4d\xe2\x86\x2c\x98\xc1\xa1\x11\xde\xca\xeb\x1a\x7c\x32\xec\x5a\xad\x3a\x22\x9a\x07\x86\x74\x60\x0a\xbf\x46\x3d\xba\xbe\xd3\xbd\x1e\xb1\x20\x36\x06\xf4\xd4\x6b\xee\x10\x15\x46\x92\x39\x21\x24\x6d\xf8\x9e\xa4\xf9\xf7\x7c\xb1\x95\x09\x89\x58\x04\x19\x6f\x89\x7c\xeb\x26\x5f\x30\x01\x31\x23\x55\x0b\x5b\xff\x0b\x42\x4a\xfe\x2f\xb4\x75\xb5\x10\x5b\x54\x6c\x51\x95\x1f\xcf\xac\x13\x19\x6f\xdd\x51\x71\xbd\x45\x45\xb1\xa5\xb0\x6c\xbb\x69\x02\x52\x84\x86\xe7\xc2\x09\xb3\x56\x84\x02\x21\x88\x53\x0a\x50\xc5\x97\xa8\x06\x60\xe3\x3c\x36\x82\xf8\x23\x45\x28\xc5\xd2\xd8\xe8\xf5\xc0\xb7\xc9\x8e\xd1\x21\xf6\x95\x96\xe2\xf9\x7a\xf3\xaa\xed\x28\x73\xcc\xfa\xed\xa5\xcb\x90\x8d\xe7\xaa\xa1\x2c\xd3\x85\x4d\xca\x22\x86\xc5\x7a\x90\x5d\x19\x06\x81\x55\xe9\x1c\xbd\xd6\x03\xdf\x40\x3c\x24\xf5\x16\x69\x9c\xa8\x46\x96\xa0\xef\xed\x36\x77\x12\xe6\x7b\x60\xf7\x9b\xe3\xfc\xa6\xd9\x6b\x4a\x98\x97\x04\x74\x2c\xac\x42\xd8\xd3\x2c\x1d\x36\x58\xe8\x77\xce\x15\x97\x5f\x1f\xb1\xe5\x09\x6b\xac\x57\x90\x45\x42\x40\x18\x9c\xa9\x68\xb4\x92\xcd\xf1\x55\x48\xb1\x60\x28\x5e\x35\x4b\x06\xaf\xad\xb7\x5c\xa6\x8d\xd1\x66\x01\x34\x20\x40\x3b\xc4\x9b\x8f\xf0\x61\xeb\x07\x18\xa7\xd3\x37\x98\x58\xb0\xa3\xd1\xfe\x1d\xa6\xae\x04\x07\xb9\xf5\x15\x2a\xda\x32\xb0\x2b\xea\xa4\xbd\xcd\x3b\x31\x90\xf5\xb4\x6e\x74\xad\x34\xf5\xcd\xeb\x47\x31\xfa\x33\xa2\x9c\xa8\x12\xa2\x8a\xf4\x5c\x63\x8a\x1d\x4a\xe3\x63\xa6\xe4\x03\x66\x6c\x01\x6a\x8a\xca\x76\x65\x29\x2c\x8c\x95\x36\xd0\x84\xc5\xfd\xcd\x55\x3e\x4b\x93\xa6\xb2\xc9\xbb\xfc\x74\x70\x76\x78\xa2\x52\x04\x3b\x33\x92\x24\x6f\xbd\x95\x98\xa2\xa6\x57\x4e\x42\xf5\xe8\x0e\xdc\x8a\xab\x20\x2f\x93\x4e\x18\x89\x37\x0c\x27\x6e\x03\x7f\xa7\xea\x92\x49\xf2\x2d\x43\xee\xe7\x93\x2d\x96\x96\x59\x63\xe5\xb5\x23\x7b\x40\xeb\x5a\xce\x11\x55\x28\x2d\xc3\x10\x61\x47\xf5\x91\x3b\x01\x25\xf2\x76\x21\xb2\xd1\x17\x9c\xa9\xff\x10\x33\xb6\x0c\x28\x9c\xb9\x4f\x28\x6f\x4f\xe8\x4c\x85\x9d\xce\xec\x4f\x94\xb7\x67\x94\x91\x13\xc8\x6f\x81\x33\xe7\x01\xe5\x26\x9c\x0f\xce\xcc\x2f\x94\xab\xe8\xb9\x5a\xa2\x98\xb7\x99\xa9\xc7\x4c\x9d\x51\x3e\x96\xdf\xe5\x3f\x94\xc7\x83\xa9\x33\x44\x52\xc4\x96\x49\x74\xe9\x45\xa2\x63\x88\x45\x88\x07\x2b\x96\xb2\xa1\x38\x02\x91\x9f\x13\xa4\x43\x9e\xf6\x32\x62\x87\x43\xfb\x60\x81\xc4\x32\x81\xf5\x4c\x5d\x23\x3c\xe6\x81\x17\x85\xf2\x36\x23\x6a\x3d\xa0\xd5\x5b\x95\x55\xce\xcc\x64\x06\xcc\xce\x91\x6d\x1a\x93\x76\xb1\xb8\x92\x3b\x74\x45\x78\xe1\x58\x7c\x97\x25\x3c\x1e\xad\x4c\x08\x66\xca\x1a\x51\x30\x32\xb5\x1b\x91\x74\x83\x6f\xf0\x7e\xd4\xc3\x44\xf4\x93\x1c\x3f\x2c\x51\x86\x05\x2a\x30\x4f\x7b\x49\x8e\x05\x38\x77\x64\x98\xa3\x02\xd3\x14\xa9\xbc\x0c\x7e\xd6\xc2\x4c\x81\x61\x61\x82\x02\x41\x4a\xc4\x8a\x2e\x23\x2f\xc5\x88\x8b\x7e\xd5\xd8\x4e\x19\x36\xe9\x31\x0b\x7e\xff\x40\xb1\x3e\x42\xdc\xf8\x00\xe7\xe9\x03\x6b\x93\xaf\x23\xa2\x80\x39\x47\x14\xb3\xe5\x84\xb2\x6c\x36\xbb\x7f\x10\x89\x05\x07\xba\x4c\x32\xb4\x40\x39\x2a\xd2\x9e\x1d\x9b\x44\x3c\x97\xe5\x3a\x42\x4e\x51\x3c\x43\xce\x82\x47\xbc\x48\xe4\x69\xb7\xb1\xd7\xdb\x10\x7b\xdd\x2e\xaf\x96\xd6\x53\xdc\x79\x4d\xdf\xe4\x46\xdc\x4e\x77\x76\xd2\xe6\xbf\x36\x31\xc6\x49\x86\xf3\x01\x1d\xa6\xfd\x42\x5f\xef\x83\xff\xf8\xe3\x8f\xf6\xf0\x5f\x9b\x69\x4f\xbf\xc9\xcc\x82\x15\x3a\x34\xfa\x1f\x7f\x48\xf2\x70\xb1\x83\x9b\xc9\x1f\x7f\xb4\xdb\xff\x9a\xf6\x4d\x82\x83\x87\xb9\xa4\x43\x39\x83\x2c\x11\x53\xf2\xb5\xe7\x44\xc5\x6d\xfe\x47\x73\x67\xa1\x22\xe3\xaa\xcc\x1c\x3d\x61\x75\x53\x4c\xf5\x34\x4b\x11\x97\x1b\x3b\x93\xab\xb0\x60\xb1\x29\xdb\x20\xbd\xb8\xe3\x84\xcd\x65\x6e\xd8\x5c\x48\x25\x85\x31\x81\xcc\xb4\x22\x6d\x30\x58\x99\x11\x49\x28\xea\xaa\x0e\x94\xc1\x46\x41\x3c\x2b\x0e\xd3\x06\xee\xa8\x32\x1a\xcf\xfa\xa0\x3e\x18\xc2\xc7\x86\x9b\x10\x3c\xa1\xd1\x08\x43\xc6\x45\x4a\x3b\x36\xcd\x09\x9f\xe4\xfc\x46\xa2\x55\x00\xd5\x24\xc7\xb4\xcd\xf2\xbb\xc7\x47\xda\xbe\xc9\xff\x3c\x51\xbf\xee\xc8\xd5\x17\x2a\xf4\xc3\x4d\xa1\x7f\xe4\x27\xf9\x5d\xda\xcf\x21\x42\x41\x42\xd3\xaa\x06\x6e\x47\xae\xf3\xfb\x4c\x10\x57\x15\xb2\x48\xd2\x87\x52\x93\x21\xa1\x1d\xd2\xba\xd1\x49\x12\x3b\x1d\x0b\x8d\xb0\xf9\x40\xb9\x22\x65\x8f\x8f\x49\x16\x5d\xf8\xc1\x10\xe5\xae\x26\x27\xb2\x05\x49\x8e\xe5\x2e\xa4\x6d\x80\x02\x15\xbf\x98\xa4\xad\x16\x55\xfb\x9c\xb7\x73\x1d\x01\xd8\x98\x0f\x0e\xc8\x10\x53\x44\x97\x92\x69\x86\xc3\x9b\x45\x87\x37\xc3\x34\xc9\x53\x34\xd2\x0e\x5e\xe7\x17\x67\x9f\xdf\x5d\x7c\x3e\x53\xe6\xe7\x1f\x8e\x8e\x0f\xd1\xc4\x8c\x6c\xd4\x6a\x25\x13\x4c\x76\x9a\xbd\xad\xe6\xce\x4c\x77\x88\x24\x3e\xcd\x67\x04\xf2\xde\x26\x13\x1b\xc7\xbf\xcc\x73\x63\xfb\x45\x73\x73\x86\xac\x9b\xdd\x0d\x2e\x12\x15\xac\x79\x8e\x3b\xaf\xe7\x6f\x4c\xd9\xd7\xf3\x9d\x9d\x74\x8c\xb3\xc1\x7c\x88\xae\x07\xf3\x21\x1e\x6b\x7d\x55\x42\xd0\x0d\x9a\x55\xdd\x5d\x0d\xa3\xa8\xdb\xb5\x26\x40\xdc\x76\xa0\xd6\x34\x73\xd7\xb4\x8a\x08\x13\x86\x33\x58\x65\x50\x8a\xb5\x5a\x4c\xfd\x80\x0c\x8c\x33\x74\x2d\x3f\xc9\x65\x70\xe7\x7c\xc8\xc6\x90\xfd\x35\x86\xd4\xb3\x9a\xe4\xdd\x5b\x2c\x01\xb4\x14\xa9\xe1\x5d\x3d\x37\xd9\x7c\x9d\xad\x74\x9d\x15\x89\xac\x2a\x69\x3c\xc8\x10\x48\xc6\xbb\x90\xb2\x32\xfc\x18\xd4\x89\x19\x49\xc6\x65\x83\x11\xfa\xc9\xaa\x22\xf3\xf6\xc7\x83\x4f\xad\x96\x0b\xea\x41\x8c\x38\x25\x1b\xf8\x42\xee\x0b\x2d\x05\x32\xea\x19\xf5\xe1\x36\x9b\x2d\x48\x81\x63\xea\x33\x25\x97\xa1\x7f\x12\xdc\x59\x06\xe9\x56\x22\xc6\x77\xb2\x71\xe5\x98\xef\x86\xec\x9a\x12\x11\x06\x5a\x2c\xd5\x8d\x92\x57\xf3\xa4\x46\x6a\x30\x03\x5f\x9e\x47\xd2\xa1\xdf\xa6\x87\xf8\x1c\x57\xc4\x72\xa6\x88\x62\xb7\x41\x45\x4c\x7a\x4d\xa2\x0c\xef\xaa\x0c\xc0\x9d\x1e\x29\x7d\xd1\x41\x6d\x8b\xf2\x14\xd1\x41\x3e\xc4\xc2\x59\x02\x0e\xff\x50\x75\x86\x2a\xc6\x4d\x65\x92\xb8\x3a\xc9\xed\xae\x27\x61\x84\x81\x72\x7f\xa0\xb4\x32\x50\xe3\x65\xb6\x2d\x6c\x34\x1d\x04\xa1\xd4\xd5\xd3\x16\x1f\xd0\xa1\x33\x4c\xa1\x86\x09\x16\x19\xee\x28\xe3\x69\x94\xb6\xca\x91\xc8\x12\x60\x52\xe0\xd6\xd2\x0c\xf1\xea\x1d\x74\xa4\x94\x2e\x2a\xd0\x00\xba\x17\xcb\xd8\x97\x70\x4f\x8e\x84\x1c\x76\xc0\x65\xb9\x15\x5d\x82\xc0\x36\x48\xf2\xda\x0c\x32\x2f\xf7\xe2\xa5\x13\xbf\x18\x72\xa6\x66\xf8\x7a\x96\x2e\xfd\xf9\x41\x9c\x83\x6a\x6e\x20\xa8\xa4\x63\x20\x3c\xed\x98\xf8\xad\xe7\xf3\xfb\xea\x41\x49\x3a\x88\xc2\xa7\x8f\xd9\x5c\x33\x31\xf2\xe8\xc0\xd2\x2f\x55\x74\x00\x43\x1a\x57\xf1\x53\x05\xc9\xd4\xeb\x33\x9e\x82\xb7\x7e\x14\x6a\x22\xed\xcb\xcb\x53\x35\xbc\x73\x22\x2e\x2f\x0d\x10\xb8\x28\xab\x24\x99\x73\xd7\xee\x0f\xa4\x12\x41\xed\x35\x48\x4d\xef\xd0\x37\xe3\xa6\xf8\xee\xcf\x25\x65\xc5\x46\xe4\x9c\x88\xfa\xed\x9e\xd1\x42\x48\x42\xa2\x76\xef\xb3\x71\xdc\x9b\x5d\x40\xd2\x11\xee\xa1\x22\x8d\xac\x9c\x8e\x51\x8e\x6d\x37\xd6\xcd\x74\x1b\x63\xaa\xb2\x30\xc9\x7f\x65\x18\x4a\xd9\x7b\xae\x08\x13\x92\xa6\x9b\x60\xa8\xd2\x7e\x86\x46\x07\x94\x57\x07\x94\x45\x06\x84\x31\x90\xde\x25\x2e\x92\x4f\x48\xde\xea\x36\xd9\x2d\x49\xd3\x5f\x76\xbb\xad\x56\x66\x68\x58\x86\xba\xee\x89\x31\x14\x42\x15\x61\xd1\xe2\xf0\x66\x2e\x22\xe7\x67\xcb\x43\xad\xab\xb1\xdc\x3a\x44\x1c\xce\xdc\x73\xe9\x0d\x96\x60\x20\x86\xdf\x8c\x1c\x6d\x22\x75\xb5\x80\x74\x92\xc4\xd0\x62\x5a\x52\x4e\xdc\xa5\x9c\x48\x90\x1d\x54\xb9\xd8\x4b\xea\x08\x92\xd6\x95\xd6\x48\xdc\xb5\x46\x22\x09\x1f\xb0\x61\x88\xf1\x44\xae\x92\x7f\xd6\x18\xc1\xc9\xe1\xe9\xcc\x18\xe9\x6a\x64\xa6\x44\xdf\x8c\xdc\x25\x1a\x0e\x1d\x56\xdf\x89\xbb\xe9\x9e\x26\x8b\xf9\x4e\xe4\x41\x4a\xc2\x05\x96\x98\x0f\xce\x15\x7c\xd0\x03\x55\x81\x87\xe0\x66\x33\x6b\x6a\x82\x6c\x06\x21\x9c\x1d\x21\xd2\x13\x13\xd2\x39\x12\xa4\xd5\x82\x93\x0c\xb0\x73\x88\xa4\x50\x5d\xb0\xcf\x00\xbb\x6e\xe8\x28\xb3\x46\x98\x61\xd6\x0f\x13\x73\x89\xb8\x48\xb6\x72\xff\xbe\x4e\x84\xa4\x10\x1f\x1f\x85\x8b\x6c\x53\xc0\xb6\xb6\xa9\x58\x8a\x9a\x08\xea\xab\x98\xcd\x49\x34\x44\x06\x6c\xd8\x70\xfd\x2f\xcc\xa8\x78\x94\x46\x23\xe6\x76\xcd\xe7\x72\x6f\x29\x66\x12\xed\xab\xdb\xd5\xb1\x7f\x52\xf4\xaa\xbc\xfa\xcd\xcd\x4b\x91\x22\x6d\x30\xd1\x84\x18\x48\x5d\x6d\x67\xc8\x9d\x4e\x65\x17\xee\xa8\xb8\xde\xb5\x89\x33\x36\xbe\x33\xab\x8c\xc1\x7f\x15\x4d\xef\xc3\xb7\x4d\xc4\xf9\x0d\x22\xd2\x30\x2f\xc8\xef\x72\x79\x31\xf3\x1e\x11\x5f\x75\x0e\x2a\xd7\xac\x23\x7a\xee\x2b\x19\x2b\x51\x69\x5c\xcb\xe4\x23\x88\xd5\xf1\x04\xd6\x14\xd1\x45\x43\x92\x16\x15\x69\x3f\x60\x24\xbc\x1c\x8f\x3d\x93\xf0\xd4\x1d\x38\xd8\x8a\x68\x6d\x32\xd8\x95\x42\xde\x33\xb6\x16\x8d\x85\x08\xac\xb1\x9a\x54\x4b\x1e\xdc\x4e\x7b\x95\x61\x2c\x53\xd9\xeb\x32\xb1\xf3\x5f\x41\xd5\x29\xc6\xfe\x27\x93\x20\x22\x8a\x26\x74\x19\xe5\x95\xac\xca\xd9\x1f\x97\x37\xd9\x88\xe7\x6b\x0a\x73\x32\x5e\x8c\xc8\x65\x58\x67\x8d\xa3\x72\xad\xf9\x3d\x91\x37\xf3\xc6\x46\xf7\x50\x7a\xa5\x39\x3f\xcb\xc5\xe1\x93\x9a\x34\x15\xd6\xb4\xca\xc8\x13\x5a\x64\x64\xdd\x18\x9f\x32\xbc\x95\x6d\x5d\xe5\xf9\x6c\xe3\xc6\x64\xe1\x95\xad\xdd\x64\x62\x74\xbd\x71\x73\x50\x7a\x65\x7b\xe4\x1f\x8b\x6c\xf3\xe1\x41\xe9\x95\xed\x4d\x9f\xe0\x03\xb2\x7a\xdd\xa6\x62\xf3\x0d\x9d\x8a\xd5\xfb\xb9\x71\x06\x25\xd1\x9e\xad\x1e\xd5\xec\x09\xa3\x9a\xad\x19\x55\xce\xc8\xdf\xb2\xcd\xcf\x81\x2a\xbe\xc6\xa3\x5b\x25\x90\x79\x82\xbb\xb8\xaa\xb0\x26\x09\x95\x76\xee\x63\xd3\x83\x19\xcd\x36\x4d\x9d\x25\xda\x61\xc5\x95\xbd\x64\x6c\xd3\xd4\x59\xa2\x9d\xb1\xd5\x69\xb3\xf2\xcd\x1d\xe6\xf3\x35\xa9\xcd\x16\x37\x1b\x3b\xc3\x17\x8b\x9b\xd5\x67\x17\xa2\xfd\x6d\xd6\xd6\x0d\x65\x6b\xf0\xc0\xd7\xcd\xdb\xca\xbe\xae\x69\x6b\xfe\x84\xb6\xe6\xab\xd7\x0b\x1c\xd6\x36\x5d\xb0\x9c\xaf\x75\xfd\x7a\x4f\x27\x93\xcd\x1b\x54\xe5\xd7\xcd\xf6\xed\xa6\x07\x04\xe6\xfb\x76\xf5\xe9\x98\xd0\x99\x78\x42\xc4\x04\x55\x7c\x83\x16\x9f\x30\x48\x53\x61\x65\xab\x0b\x46\xff\xb1\x71\x8b\xb2\xf0\xda\xd6\x9e\x30\x42\x55\x7c\x5d\x8b\xf9\xe6\xe7\x03\x4a\xaf\x0e\x37\xc1\x04\xe1\x05\x19\x6d\x0e\x8e\xb6\xc6\xca\x76\x47\xf9\x6c\xf6\x94\x56\x75\xf9\x30\x25\xdf\x46\x64\x5e\x7d\x10\x9a\x15\x11\xfd\x2a\xa4\x9d\x65\x26\x20\xed\x7e\xd5\x41\x28\x7d\x90\xbc\x5e\xd5\x4c\x12\x71\xac\xd8\x72\x10\x5b\x75\x5e\xd3\x37\x04\x74\xb1\x7c\x40\x87\x8e\x48\x97\x0e\x95\xfd\xad\xe2\x75\x5c\x46\xd0\xb0\x2e\xf0\x7e\x30\x2c\x07\x92\x49\x36\xc2\x8a\xb1\x96\xb2\x7b\x8e\x3b\xaf\x79\xa9\x98\xe3\x90\x52\x94\x0d\xf8\x50\x19\x70\x90\xaf\xf3\x8c\x99\x50\x40\x94\x40\xb6\xf8\xac\xb4\xd0\x58\x26\x1d\xc7\x60\x03\x24\x80\x60\x79\xbe\x70\xe3\x07\x85\x9c\x80\x1c\x30\xce\x6d\x4c\x8d\x86\x5a\x85\xce\x6b\xf2\x86\xbe\x26\xb2\xff\x49\xa2\xb9\xae\x32\x65\x55\x0e\xce\x4e\xdb\x2c\xe1\xd6\xd6\xc4\x61\x20\xfc\x92\x74\x98\x2e\xd1\xc3\x58\x9b\x13\x8a\x7f\x27\xf7\x45\x2f\x5f\x82\x42\x2b\x97\xcc\x71\xc6\x9c\xa0\x98\xc4\x17\x80\x11\x4f\xac\x51\x66\x94\x23\x3b\x4d\x3d\xe0\x66\xd5\x1e\x40\x71\x70\x4a\x96\x06\xd9\x8d\xdd\xf1\x80\x85\xaf\xe4\xd9\x0d\x3d\xfd\x9d\x9d\x6d\x6f\xda\x1b\x8b\x71\x8f\x61\x4f\xb5\x93\x39\xc9\x19\x59\x39\x97\x6f\x6a\x7c\xbb\xd2\xa0\x6a\x4f\xd2\xdf\xdf\xd6\x60\x5d\x8b\x40\x82\x07\x87\x62\x7d\xa3\x0e\xc7\xef\x36\x59\x9a\x20\x80\x96\x9a\xeb\x3e\x80\x2c\x7f\x72\x1f\x51\xa8\x25\x29\xc6\x98\xa9\x66\xa7\xe2\x47\xb5\xf9\x8b\x6d\x91\xfc\xb0\x26\xcd\x28\x67\x3f\x6c\x94\x6f\x6c\x8b\x3f\x6c\x94\x6f\xcc\x28\x15\xf1\x5e\x07\x5a\x99\xa4\x8e\xd3\x84\xa4\xba\x9c\x92\xc7\x1a\xe2\x7c\x7d\xad\x32\x71\xe4\xd2\x09\x2c\x64\xc8\xee\xcd\x26\xf3\xe0\x5d\x60\xac\x76\x4a\x60\x6d\xef\x14\x44\xdc\x2b\x5a\x94\x45\x11\x4f\x91\xa4\x74\xe4\x98\x24\xae\xe3\x49\x07\xc5\xe4\x48\xca\x1b\x91\xd7\x7c\xdf\x26\x1b\xdc\x9c\x35\x32\x8f\xf5\xba\xfd\xcd\x82\xba\x55\x22\x97\xd9\x9b\x8c\x96\x36\x63\xce\xe5\xc3\xd6\x5e\x3e\x95\x5c\x88\xce\xe1\x5e\xcc\x66\x18\x63\xfa\xf8\xd8\x54\x53\x2d\xcd\x74\x68\x9f\xf7\x68\x5b\x4d\x36\x91\xdd\x6a\xff\x87\xe0\x92\x19\x48\xc4\x3d\x18\x36\x87\xc8\x00\x46\x6f\xbb\xe3\x7a\x0a\xe7\x8e\x39\x96\x91\x1d\xff\xf4\x6f\x24\x1b\x5d\xff\x64\xec\x5f\xfa\x14\x7b\x19\xf6\xe1\x6b\xfb\x5f\xff\xe7\x4f\xa8\xd9\x4c\x7b\x09\xc5\x04\x91\x1d\x0c\xdd\x28\xc3\x14\xe5\x40\xbd\x7e\xe6\x24\x9c\x39\xf5\x72\xa1\xd3\x02\x68\x0e\x09\xd6\x7d\x78\x71\x90\x26\xae\x30\x90\xa4\x69\xcf\xbc\x97\x33\xf7\x66\x58\x5a\x6c\xce\x2d\xc5\x96\xa2\x7c\xe9\x12\x1e\x48\x94\x06\x7e\x12\x3d\xcf\xa3\x11\x9a\xd5\x02\x2e\x3d\x92\x62\xf5\xdc\x9c\x39\x54\x87\x5c\xa5\x03\xea\xb6\xa6\xf0\x9c\xb8\x73\x17\xcb\xb8\xb1\xfd\xe5\xb8\x85\xde\x7e\xa7\xf6\x62\xb3\xda\x8a\x61\x88\x35\x30\xb3\xc4\x91\x40\xb4\x51\x43\x17\x8a\x38\x5d\x28\x2a\x74\xa1\x31\x66\x4c\x04\xaa\x2a\x1d\xd4\xe6\x63\xbb\x99\xda\x05\xff\x9c\x88\x52\xa3\x14\x0b\xa2\xad\xc4\xe7\x0e\x10\x21\x92\xbe\xf6\x61\x27\x4b\x5b\xad\x2c\x5a\x39\xd7\xa6\x0f\x8f\x8f\x49\xae\x13\x1f\x21\x6a\xf5\xa9\x80\x69\xe8\x32\x5d\x12\xc5\x60\x94\xe4\x59\xb1\xb8\x89\xc9\xc0\xa9\xb7\xc2\xce\xd2\x93\x1d\xb1\x44\x1d\x25\x3f\xd0\x74\xc0\xd7\x27\x35\xf0\x31\x13\xd7\xb2\x92\x4a\x0e\x89\x76\xbb\x3f\x75\x14\xd7\xaf\x5a\xa3\xec\x1b\x5a\xa3\x4c\xb7\xa6\x1a\x03\x7f\x02\x18\xda\x1c\x17\xea\xff\xdb\xfb\x78\x44\xce\x02\x68\x41\x85\x03\x9a\x3b\x22\x02\x55\xe5\x7e\x40\x17\xca\x08\x0b\xc0\x0c\x2f\xec\xcf\xa0\xf9\x8a\x8d\xaa\xb5\xde\x8e\x1a\x92\xac\xed\x34\xe2\xa1\xe6\x97\xc0\x18\xf3\x25\x5a\x04\x93\xa1\xa9\x32\xe1\xa4\xff\x00\xe3\x55\xc5\xab\xd6\x47\x26\xfd\x1e\xe4\xee\x83\x29\xd5\x28\x4e\xf5\x28\x59\x1a\xe1\x23\xb7\xcd\xd0\x3a\x18\x33\x6b\xd6\xb5\xa2\xee\xf8\xa7\x9d\xe3\x2a\x2e\xad\x2c\xc5\x8a\x75\xa0\xbd\xc1\x70\x29\x51\x00\x6d\xcf\xf3\x79\x92\x1a\x14\x55\xe9\x0e\x74\x6a\xb9\x63\x77\x48\x5d\xed\xf9\x83\xd2\x8f\x6f\x77\x11\xc7\x74\x20\x86\x28\xc7\x9d\xd7\x79\xa9\x2b\xcf\x35\x5b\x37\xc8\xc1\xea\x36\x7d\x60\x78\xbb\xd3\xb8\xe2\x24\xfb\xb2\xa4\x93\x04\xc2\x7a\x33\x6b\x38\xb0\x34\x16\x02\x4b\x57\x9c\xe0\xcd\xe1\x20\x4d\x72\x0d\xed\x5a\xf8\xf4\x3d\x80\xa3\xb5\x5c\x53\xe5\xe8\x47\xcb\x27\x11\x5f\x38\xa6\x01\xc8\x5d\x49\x16\x5b\x3a\x55\x79\x57\x4e\x8f\x3a\xf6\x1a\xcb\x12\xdc\xd8\x26\x90\x87\x44\x2d\x04\x6a\x31\xc7\x3f\x0f\xfe\x42\x6a\xc2\x95\x0d\x68\xb5\xa1\x7b\xbb\x58\x7d\x76\xae\xf4\xd9\x60\x3f\x72\x7a\xc7\xec\x56\xe4\x69\xab\x95\x28\x3c\x24\x41\x63\x90\x0f\xfb\xfa\x62\x00\x7d\x78\xcf\xdc\x12\x83\x7c\x58\x6a\x56\xe9\xb2\x14\x08\x29\x20\xc8\x79\x3c\xa8\x71\xd4\x35\x20\x0a\x2a\xe1\xad\x5d\xcd\xc0\x43\x8c\xd5\x06\x74\xe7\x6c\x74\x49\x8b\x6f\x69\x02\x84\x01\x19\x0e\xa9\x71\xa0\x93\x48\x60\x1d\xba\x96\x70\xcb\xf5\xa5\x8b\x74\xe2\xd3\x45\x88\xdf\x44\x8a\x66\x98\xb6\x2f\x95\xcb\xd7\xe9\x55\x41\xf8\x2d\xe1\x1f\xb3\xf9\xe3\x63\x12\x7b\x0d\x3d\xfe\x8d\x64\x5f\x3e\x66\xf3\x14\x8d\xf0\x4c\x01\x39\xf8\x72\x5b\x52\x64\x62\x8c\xb4\x58\x2e\xe8\xe4\xde\x0c\xeb\xdd\x75\xc6\xa6\x44\x9e\x3a\xeb\xa6\x3a\x6a\xb5\x46\xab\xf2\x6d\xb0\x36\x27\x37\x79\x39\x02\xed\xf9\x62\x2e\x77\xe3\x2d\x79\x8d\x9b\xff\x26\x3b\x84\xbc\xdb\x68\x1e\xd5\x79\x47\x91\x9c\x28\x1d\x1a\x7a\xcd\x14\x31\x2c\x06\x9d\x21\xe2\x58\x0c\xba\x06\x76\x07\x0c\x71\xcc\x1f\x1f\x9b\x59\x31\x6a\x0e\xe5\x6e\x2c\xd2\x86\x04\xb4\xb9\x35\x93\xcc\xf0\x75\xbf\x39\x18\x36\x7b\xe6\xb0\xc1\x22\x67\xe3\xb1\x19\xb6\x5e\xec\x0c\x4d\xe4\x9a\x0d\x06\xe6\x69\x38\x4c\x7b\x23\x3c\xf7\x87\x56\x1a\xca\xca\xb1\x50\xd9\xb6\xb9\xf1\x78\xcf\xbd\xff\x1c\xf1\x55\xd0\x5b\x81\xa8\xec\x6a\x00\xff\x25\x76\x9e\x29\x55\xbb\xec\x76\xa4\x96\x6c\x8c\xaf\xb5\xdb\xf7\x46\x17\xde\x38\xed\xfb\x73\xd6\xa7\x73\x6c\x00\x3a\x84\x4f\x1f\xd3\xd6\xc3\xbd\xa1\xe8\x4d\xd8\x3b\x38\xed\x0a\xf7\x8b\x00\xf7\x67\x58\x0c\xf2\x21\x2a\x70\x26\x17\x66\x81\xb3\x41\x77\x88\x24\x14\x25\x33\x85\x2d\x24\x13\x99\x71\x25\x74\xb2\xb4\x83\x0d\x3c\xa0\x32\xad\x17\x69\x6a\xe4\x7f\xcd\x31\x29\x46\x12\x64\x16\xfd\xdd\xee\xbf\xce\x7a\x33\x73\x4a\x3b\xcb\x34\x5d\x26\x63\x34\x5f\x89\x59\xe3\x18\xd5\xe2\x97\xd8\xe1\xd1\x70\x4b\x97\x9a\x9a\x33\xc4\xea\xcc\x63\x93\x6d\xee\x91\x4d\xf2\x93\xa8\xfc\xc4\x90\x2c\xa1\xee\xeb\x0d\xe1\xd3\xb5\xe1\xce\xeb\xb5\x7b\xba\xed\x8d\x35\x87\xca\x94\x64\xa5\xc2\x10\x9a\xfc\xa4\x07\xb9\xb9\xee\x10\xaa\xad\x56\x11\xc1\x54\x37\x15\xf0\x97\x63\x5d\xa6\x8d\xd8\xfa\xbb\x6b\xbb\x51\xb8\x53\x8b\x02\x85\x4f\xf6\x50\x4b\xf8\x74\x5f\x8b\x37\xe1\x75\x0a\x04\x10\x05\x47\x0b\x7b\x77\x8a\x61\xaa\x84\xeb\x7a\xae\x5f\xc8\x7d\x91\x30\x73\xdd\x72\xd7\xc3\x8a\x0c\x72\xcc\x07\x74\x38\xc4\x6c\x90\xdb\x2b\x97\x2c\x89\x5e\x31\x2c\xb4\xd1\x99\x6e\x4a\xbd\x75\x7d\xfb\x1e\x1f\x45\x0d\x04\x96\xf0\xb3\x69\xbc\xd7\x78\x16\x22\x39\x3b\x25\x1d\x11\x11\xe9\x88\x30\x12\x79\xd2\x30\x01\xe3\xdc\x69\x03\x3d\x50\x09\xea\xe6\x9b\x51\x0e\x28\xe6\x03\x36\x1c\x62\xe1\x90\x1d\xc4\x0f\x67\xac\x73\x69\x6f\xec\x3e\x02\x4e\xb4\xbb\x10\x03\xd8\x8d\xf3\x69\x24\x4f\x57\xd9\xe8\xcb\xd5\x82\x7b\xf1\x64\xbe\xc3\x26\xfb\x8a\xb2\x31\x26\x36\x31\xe4\xd9\x82\x61\xd2\x2e\xfb\xc0\xa4\xfd\x8f\x05\x59\x90\x02\x92\xf9\x17\xb7\x73\xf0\xd1\xfc\x7f\xe4\xab\x92\xd9\x9d\x12\xf1\x6e\xc1\x39\x61\xe2\x6c\xc1\x8e\xf3\x7c\x1e\x8b\x4e\xae\x73\x70\xe1\x09\x22\xe0\x6a\x87\xaf\x11\x69\x5f\x91\xa9\xcb\x99\xa6\x0f\x23\xf5\x4a\x09\x26\x09\x1b\xfb\xdf\x20\x45\x1e\x90\x4d\x3a\x19\x67\xec\xce\x1d\xd9\xaf\xfa\xde\x1e\x79\xb1\x2e\x80\x90\x3b\xd7\x25\xc6\x17\xf4\x86\xf0\x22\x32\xde\x91\x2c\xa6\xbe\xaa\x2e\x47\x19\x1b\x91\x59\xb5\xfc\xc8\xfb\xa2\xca\xce\x32\xe1\x87\x49\xb6\x8d\xc2\x97\x9a\x71\xe5\x6c\x44\x62\xf4\x30\xdb\x80\x1e\x56\xc0\x49\x00\x2a\xc1\xf4\xb2\x3c\xd3\x8e\x09\x66\x7b\xc1\x8a\x6b\x3a\x11\x65\x0a\xd3\x14\x95\xcb\x75\xca\x46\xe5\x92\x09\x6f\x9d\x4f\xbd\xa1\xc5\xd6\xda\xab\xec\xcf\x8b\x91\xaf\x51\x3a\xff\x07\xce\x0b\x48\xed\xae\x9c\x8c\xbf\xc0\xc2\xd9\xba\xf8\xf8\xd5\x37\xed\xdc\x32\x26\x57\xf9\x22\xd8\x05\x5b\xd2\x7c\xac\x99\xa5\xb8\xe6\xb9\x10\xb3\x78\x5d\xf3\x31\x56\x57\xdb\x77\x4a\x44\x05\x3f\x63\x47\x2d\x69\x36\x77\x40\x26\xc3\x33\x36\xce\x6f\x92\x74\xe7\x7d\x26\x48\x9b\xe5\x77\x49\x9a\x5a\xb1\x6b\xb3\xdd\x44\xcd\x66\x8a\x16\xe5\xa9\x1d\x94\xc9\x6a\x75\xfc\x8d\x0b\x9e\xb1\x82\xda\x77\x10\xb2\xa0\x89\x9a\xe0\x5d\x77\x66\x9e\x4c\x9a\x4c\x54\x0c\xd1\x0c\x1b\x8b\x46\x18\x4b\xaf\x6c\x31\x67\x6f\xe5\x61\xf5\xc4\x28\x19\x26\x4b\x94\xb3\x43\x36\x0e\x48\xb3\x0c\x0b\xf8\x20\x27\x75\xa1\x73\x95\xb4\xbd\x67\xf3\xf5\x23\x11\xd7\xf9\xb8\xd7\xcc\x99\x0a\xa1\xb5\x6c\xe4\x36\x56\x36\xa4\x47\xb5\x50\x5c\x40\xd2\x5d\x49\x67\xde\xb3\x11\x7e\x50\x8e\x89\x3d\xae\x70\x88\xcf\x00\x14\x08\x66\xd8\xe3\x12\x89\x04\x9f\x34\x3d\x3f\xf2\x31\x9f\xe4\x39\x6c\xbc\xc2\x64\x81\x66\x01\xaf\x61\x37\x97\x2f\x58\x6c\x5f\x6d\xe1\x6b\xb7\xb0\x44\x7d\xb1\xd2\x3e\x0a\x9e\x28\x77\x58\xe5\x54\xa2\x91\xf4\x5f\x79\x82\x2a\x6d\x33\xc4\xeb\xda\x66\x65\xdb\x4a\x09\x4f\x40\xfb\xce\x06\xdc\x6d\x9b\xdb\xb6\xaf\x7d\xf6\x09\x42\x5e\x8d\x32\x01\x61\x67\xfc\x9b\x52\x07\x6f\xd9\x24\xcd\xd0\xaa\xec\x41\x4f\xce\x1d\xc4\x22\xb9\x83\xf4\x58\xdc\xc4\x41\xbc\x92\x38\x28\x6d\xf0\x20\x3c\x69\x90\x1a\xb0\xa7\x02\x96\x5b\xf2\x84\xfb\xf3\x15\x9c\xb2\x55\x39\x78\x74\x01\x49\x0e\xa9\x9f\x36\x1c\xd4\xca\xb4\x9b\xb1\x60\x21\xf1\x74\x3a\x05\x11\xe7\xd0\x30\x20\x9d\x69\xf9\xb4\x2e\x90\xb7\x53\xf6\x29\x41\xbc\x75\x95\x95\xd4\xb4\x33\xa8\xa7\xc4\xee\x76\x9a\x26\xed\x59\x3e\xc2\x97\x88\xb4\xef\xf0\x1d\xac\xfe\x28\xbb\x21\x33\xfa\x27\xc1\x87\xf2\x31\x2b\xae\x09\x97\x4f\x5f\xe1\x72\xd0\x9f\xce\xe5\x83\xdc\x46\x3a\xb9\xc7\xa7\xc0\x25\x8d\x09\x2f\x46\x39\x27\xf8\x00\x0a\xce\xa9\xc8\xa0\xe8\x17\x9d\x03\xe6\xa7\xc1\xd6\xe5\xf0\xa7\xa9\xd6\x44\xf0\x36\x84\xb1\x4c\xba\x64\x3f\xa6\x46\x39\x54\x9a\x57\x85\xaa\x29\x6a\xee\x42\xf0\x94\x0c\xff\x94\xfc\xb1\xfb\xf8\xc7\xe5\xe3\x1f\xed\xc7\x3f\x8a\x74\x27\x69\xa7\xfd\x9f\xa6\xa8\xc0\x3f\x25\xff\xf1\xf8\xc7\x4f\x69\x32\x38\xd8\xfd\x7f\x87\xe9\x4f\x53\xb4\xd8\xa4\x97\x52\x09\x97\x55\x8e\x85\x01\xf9\x3e\x6b\x8b\xfc\xf3\x7c\x4e\xf8\xbb\xac\x20\x49\xda\x6b\x36\x97\xe5\xd0\x8a\x78\xb3\x22\x3f\xce\xef\x4c\x0d\x50\x7c\xcc\xf0\x4f\xff\x21\xc7\x7e\xa9\x07\x8d\x46\xf8\xa7\xa4\x9d\x46\xa7\x33\xd1\xd3\x79\xfc\xa3\x9d\x26\x83\x6c\xf7\x4f\x98\xd1\xf5\xca\x19\x69\x46\xa6\xd6\x73\xbb\xdf\xbc\x6c\xee\x44\xa6\x82\x38\xae\x42\xbe\x01\x95\x9d\x84\xf7\x79\xa5\x4e\xaa\x92\x01\x6a\xa1\xcc\x4f\xcd\xb4\x4e\x60\x4c\x07\x62\x08\x92\x62\xbb\x5c\x33\xc4\xca\xb5\x1b\x39\x56\x45\x54\x47\x94\xf8\xa9\x59\x7e\x9f\xd4\xad\xad\x33\x1c\x58\xdb\x39\xfe\x09\x96\xe9\x8f\xf1\x50\x43\xc0\x8e\x5c\xb0\x31\xfe\x49\xae\x6e\xb1\xf3\xd3\x14\xdd\x3c\x0d\x1c\xe6\xa8\xf9\x3f\xbb\x97\xff\x73\xcf\x19\xcd\x18\x35\x2f\x9b\x69\xb8\xb3\xe8\xbe\x04\x3d\x39\x82\x45\xa7\xf3\xae\xb3\xfb\xc7\xa2\xb3\xf7\xec\x03\xec\xda\xed\xd3\x3a\xbe\xdf\x74\xce\xd3\xca\x9c\x65\x6f\x57\x4f\xeb\x6d\x5a\x4e\x33\x98\x57\x79\x7b\x5f\x7a\x86\x0d\xdb\x70\x9d\x19\xa1\x53\xc2\xd2\xc7\xc7\x4a\x90\xbb\xbd\xb4\xd5\x4a\xf4\xc5\xe7\x3a\x9b\xcf\xe8\x28\x74\xc0\x43\xdd\x34\x45\x55\xa9\x29\xc3\x9d\x46\x65\xb0\x3f\xfd\xcb\xbf\x25\x83\xce\xee\xcf\xc3\x1d\x75\x48\x3c\xc1\xac\x42\x31\xbc\x3f\xcf\x78\x41\x8e\x98\x48\x38\xea\x76\xd2\xdd\x6e\x8f\xed\xec\xa0\x1c\x53\x2b\xa9\xea\x4b\xe6\xb3\xe7\xa9\xc4\x9a\xea\xba\x28\x65\xc7\x79\x3f\xef\x69\x56\x38\xef\x37\x15\x61\xd1\xec\x59\xf1\x75\xde\x6f\x36\x7b\xcd\xe6\x4e\x0e\x72\x5f\x6b\x48\xa4\x70\x6a\x0a\xfa\x4f\xb9\x64\x25\x4d\x73\xe7\x2d\xbe\x3a\x37\x3f\x49\xb8\x74\xca\x1c\x3a\x65\xae\xb4\x92\xa2\xfc\xfa\xd5\xf9\x9a\x57\xbe\x9e\x3b\x5f\x17\x95\xaf\xa7\xce\xd7\xeb\xca\xd7\x03\xe7\xeb\x4d\xe5\xeb\x17\xe7\xeb\xad\xf9\xaa\xd3\x78\x86\xd9\x5f\xda\x6a\x01\x5a\xad\xd8\x65\x45\x49\x91\xa8\xef\x25\x44\xa0\x87\xbb\xde\xc3\x28\x67\x13\x3a\x5d\xd8\x4b\xcb\xbd\xc2\xba\xe8\x8e\x53\x41\xcc\x27\xf0\x5f\x8b\xdc\x68\x77\x3a\x8b\xc0\x12\xcd\xf2\xd1\xf7\xb5\xf8\xc3\x69\xc5\x4b\x23\xc3\x5f\x2e\x91\xb9\x3c\x7f\xc8\xa4\xcf\xed\xa4\xcb\x0b\xfb\x87\x34\x7c\x58\x36\x6c\xae\xfe\x1f\xd2\xee\x57\xdb\x6e\x49\x2a\xfc\x90\x86\x0f\x6c\xc3\x86\x20\xf9\x21\xcd\x9e\x96\xcd\x5a\x5a\xe6\x87\x34\xfc\xc5\x34\x1c\x98\x5e\xad\xa2\x5f\x37\x14\xec\x39\x14\xaa\x5b\x4a\x60\xf0\xee\x9e\x46\xbe\x96\x77\xbd\x57\x22\x1a\xe1\x62\x40\x86\x26\xed\x97\x4d\x42\xa6\x43\x6c\xfe\x44\xd8\x28\x07\x6e\x78\xc3\x91\x1e\x69\x0f\x41\x2a\xb9\x5f\xa8\xea\x3a\xdf\x8a\x9a\x70\x05\x26\x78\xeb\xd5\x62\x32\x21\x1c\xab\x20\x22\x90\x34\xfd\x53\x5e\xe0\x4e\x3c\xce\x4a\x79\x03\xa9\x41\x46\xdd\xf7\x79\x83\x4e\x12\xf2\xcb\xde\xf3\xe7\x4e\x64\x55\x60\xb0\x93\xe6\xe9\x5c\x56\xdb\x92\x4d\x6c\xe5\xb7\x84\x6f\xbd\xda\xbd\xa2\xa2\x68\x6f\xfd\x9a\x8b\x2d\x88\xa7\xda\x36\x34\x50\x39\x38\xad\xd0\x7c\x14\x95\xfb\x71\x77\xef\xcd\x9b\x57\xa9\x3f\x74\xb7\xa2\x31\x99\x46\x0c\xef\xbd\x66\x55\x49\xb4\xc4\x37\x0f\x74\x92\x34\x55\xc4\xba\x32\x08\x10\xf7\x30\x50\xda\x6a\xf1\x5f\x9e\xed\xfd\xfc\xec\xe7\x17\x2f\xf7\x7e\x8e\x4e\x8b\xf0\x8c\x8d\xd5\x94\xf6\xf7\xbc\x39\x71\x35\xa7\xca\x7c\x78\xba\x74\x22\xa4\x54\x06\xed\x3b\xba\xcf\x43\xeb\x5c\x25\x64\xde\xed\x1a\xbf\x7e\x55\x77\x40\x76\xba\xc3\xea\xf0\x2e\xf8\x3d\x65\xd3\x2d\x91\x6f\x41\x3b\x5b\xb9\x1e\x2e\x65\x5b\xf3\x7c\xbe\x98\x65\x82\x8c\xb7\x8a\x59\x2e\x20\x48\x21\xc9\xc6\x5b\xf9\x64\x2b\xdb\xe2\x04\x74\x39\xea\x53\x30\x07\xe8\x09\x8b\xc8\x28\xff\x46\xc5\x75\x85\x74\xfe\xef\x30\x56\xe4\xbf\xda\x1b\x62\xa6\x7c\xf6\xe3\x67\x48\x04\xc7\x72\x96\xdf\xed\xce\xc8\x2d\x99\x6d\x9e\x0b\x0e\xa2\x31\xca\xff\x39\xcf\xa6\x64\x93\x53\xa9\x0f\x65\x06\xe1\x10\x4c\x28\x0f\x90\x63\x46\x4f\xa1\x1f\xd0\xa3\xe4\x5c\x6c\x35\x13\xe1\x01\x1a\xb4\x36\x82\x18\x63\x6e\x69\x38\x53\x74\x67\xa7\x97\x08\xd0\x2a\x38\xbd\x1a\xd7\x65\xa8\x0f\x9e\xf5\x88\x85\x71\x3c\x38\x99\xd4\x46\xf1\x51\xf5\x48\x10\xa4\x62\xcc\x73\x5f\x6b\xed\x95\x75\x46\x5f\x0e\xc4\x84\x57\x60\xb5\x0b\xf7\x5d\x21\xb4\x07\x43\x05\x30\xb7\x64\x84\x49\x6c\xa5\x21\xee\x72\x4d\x10\x17\x95\x5d\x46\xd6\xb5\xea\xe1\x20\x36\x94\x7c\xfb\x81\xe7\x37\x9e\x87\xf9\xaa\x16\x44\xb4\x09\xa7\xba\xcb\x8f\x46\x1b\x40\x2c\x6c\xc2\xf7\x32\x57\x61\x77\x75\x25\xc9\x5c\xda\xdf\xe1\x6e\xc1\x4d\x7c\x96\xdd\xd5\xd5\x25\x15\x3c\x30\x25\xc2\x2f\xef\x03\x45\xac\x93\x4a\xe4\x40\x3b\x1f\x13\x40\xd0\x2f\x3f\x23\xac\x2e\x5c\x48\x59\xc9\x1e\x6f\x73\x02\x05\x32\xa7\x92\x05\xa7\x9b\xe5\xe3\x95\x89\x18\x6c\xc1\x8d\xf3\x69\x17\x84\xab\xa0\xf0\x6f\x17\x74\x36\x06\x8d\xd6\x49\x3e\x26\xef\x4f\x3f\x5e\x70\x52\xc6\x45\x28\xad\x37\xb5\xac\xcf\x5d\x35\x0b\xe0\x3c\x30\x74\x7f\x42\x78\x05\x00\x04\xa7\x6a\x19\x39\x01\x92\x51\x71\x3f\x86\xd9\x62\xfe\xb9\x20\x33\x52\x14\x87\x33\xe2\xc7\x1c\x4d\x1f\x96\x5e\x61\xca\x0a\xc2\xc5\x6f\x17\x1f\x8f\xdf\x82\xf8\xbb\xc6\x62\x52\xf4\x45\x7b\xce\xc9\x2d\xcd\x17\xc5\x39\xbd\x9a\x51\x36\xed\x91\xf6\x2c\x2b\x04\xc4\x7d\x37\x61\x7d\x4c\xd8\x6c\x1d\xc7\xe1\x2c\xbb\x93\x2d\x9f\xeb\xc0\xc7\x3c\x6d\x98\x0e\x55\x67\x49\x8e\x84\x89\x86\x4b\xfb\x14\x70\x44\xd9\xfa\x84\x72\xd3\x7c\xb1\x6e\x00\xa1\xe1\x34\x1b\x71\x22\xc8\xdb\x7c\xc1\xc6\x45\x42\x20\x03\x86\x3f\x6f\x35\xc0\xca\xf2\x04\x30\x1e\xcc\x47\x17\x57\xe9\xd1\xfc\x15\x3f\x10\x82\xd3\xab\x45\x10\x0b\x49\x02\x94\xff\x19\x8e\xf4\x12\xf1\x65\xc2\xda\x11\x20\xaa\xa4\x87\xf6\xc1\xc7\x08\x03\x36\x84\x9e\x68\xc8\x5d\xc7\xad\xa7\x04\xee\x59\x3e\xfa\xf2\x9e\xcc\x21\xc4\x27\xdb\x10\xce\x2e\x2f\xf3\x39\x61\x50\x35\xd4\x2e\xe8\x40\x3b\x91\xf6\x77\x76\x4c\x22\x8b\x6c\x3e\x27\x6c\xfc\x2e\xbf\x81\x25\x6d\xfe\xcb\xce\x55\xaf\xb9\x23\x76\x9a\xff\x02\xe1\xb2\xa3\xdd\x38\xd1\x46\x96\xc1\x50\x46\xb3\xbc\x20\x95\xb1\x90\x9a\x32\x4e\x43\xa8\x66\x38\xbb\x72\x38\xbb\xbb\xb5\xf3\x90\xe3\x0c\x07\xa1\xda\x90\x20\x5f\x09\x42\xc2\x6d\xdc\xc0\x4a\x4f\xd3\xd9\x0d\xff\x97\x66\xda\x68\x5e\x1c\xbc\x3d\x3e\x6c\x9a\xf8\x50\x44\x01\x5b\x5b\x64\xd3\x93\xec\x86\xb4\x5a\x09\xc7\xc2\x5a\x53\x36\xdf\x34\x75\xfc\xab\xa6\xe0\x50\x47\x5f\x19\x7c\xa7\x8b\xf8\xce\x7e\xda\x6a\x25\x02\x37\xdf\x88\xab\x7c\x7c\xff\x0b\x2c\xec\x9b\x9f\xf4\x43\x8a\x9a\x50\xa3\x5f\x33\xa0\xad\x7f\x69\xa6\x3d\x52\x33\x33\x2f\x52\x8a\x76\xc5\x58\x33\xb1\x55\x67\xd3\x9d\x2a\x58\x18\xc4\xd7\xf4\xc2\x53\x02\x97\x4c\x0a\xf8\x7a\x26\x1c\xeb\x88\x2d\xa9\x6d\x4a\x4b\xab\x12\x8a\x99\x8b\x56\xd2\x3e\x2f\x91\x46\x8f\x86\x28\xc5\x8c\x75\x83\xf5\x49\xf2\x56\x6b\x1f\x63\x9c\xb7\xe5\xa5\x73\x71\x3f\x27\x3a\xab\x5d\xb5\xfc\x63\x15\xa4\xcb\x59\x79\xeb\x19\x22\x29\x09\xb0\x11\x14\x5e\x06\x11\x33\x40\xc2\x08\x19\x17\x87\x5f\x05\xcf\xde\xc9\x3a\x72\xf3\x57\x7c\xc6\xdb\xdd\x20\x5a\x5d\xd9\x8f\x1b\xd1\x67\x93\x42\xfe\x88\xe5\x51\xad\x0c\xb8\xb4\x4a\xd5\xa0\xda\x6a\x35\x2f\xde\x9e\xbe\xff\x7b\x73\xbb\x16\xd6\xe1\xb5\xd3\x5a\xd2\x04\xe0\x35\xa9\x0c\x6c\x40\x1d\xca\xa6\xd5\xd9\x69\xbe\x77\x32\x5b\x14\xd7\xa6\x7e\x30\x1b\xa7\x69\x6f\x07\xfc\xe9\x48\x16\xef\x8c\xdc\xe4\x91\x9b\x42\x58\x7f\xe3\x2a\xb5\xba\x17\xa5\x56\xf7\x5c\x6a\x75\x6f\xa8\x33\x12\x99\x8b\xf3\x06\xac\xd1\xfd\x7b\xa6\xa9\x22\xbd\x37\xd3\x46\xee\x5f\x22\x4d\x79\xb4\x9a\x88\xa5\x88\xfa\x17\xaa\x40\x39\xe2\xfe\x4c\x2b\x73\x70\xe7\x0b\xda\x0d\x7d\x1d\x9d\x90\x3b\x5d\x42\xd3\x3a\xf2\xba\xae\x23\x76\x38\x8a\xd0\x46\x51\x15\x29\x6d\x4f\x72\xae\x93\xeb\x28\x0b\x01\x65\x48\x18\x90\x6e\x39\xc8\x14\x6c\xea\xa7\xd5\x06\x84\xf5\x84\xdd\x42\x50\xef\xf9\xf6\xc6\x7d\xba\xa3\x9c\xec\x42\xac\x69\xe1\xbe\xb6\xb2\x9a\xf2\xd5\x9c\xe7\x53\x9e\xdd\x3c\x31\xa5\x16\x9a\x35\x48\xfb\xd3\xf1\xc1\xbb\xc3\xdf\x4e\x8f\x21\x4f\x35\x64\xb6\xc7\xa4\xfd\x37\x2e\x8f\xfc\xb8\xa4\x22\x67\xf9\x54\x89\x51\x30\x18\x8e\x2c\xa6\xe7\xc0\x1b\xe8\x07\x4c\xda\x26\x1b\x96\xd6\x05\x63\xd2\xfe\x94\x71\xb9\x88\xef\xc9\x04\x52\x43\x42\x32\xf6\x73\x31\x56\xcd\x94\x2d\x87\xcf\x87\xd9\x94\xf0\xf0\xe5\x71\xf6\xe7\x7d\xf8\xee\x1d\xac\x7d\x76\x35\x23\x9f\xd4\xec\xbd\x77\xea\x72\xd5\xe3\x7b\xa7\xb7\x09\x93\xf6\xc1\x55\x21\x78\x36\x12\xce\x2b\xbd\x89\xba\x1b\xe7\xc3\x47\x70\x94\x94\x95\x2e\x2e\xce\xce\x2f\xdf\x1e\x9f\xbe\xfb\x77\xa3\x2c\x4e\x66\x78\xf1\xf8\x98\x2c\xf0\xc3\x32\x4d\x07\xb3\xf6\xe9\x9c\x30\x9b\xce\xcd\x1c\xbf\xce\x10\x37\x63\x1f\x9a\x68\x36\x98\xb5\xdf\xd3\xf1\x3b\x8f\xae\xeb\x0e\x71\x33\x7c\xa9\x8a\x9e\x13\x61\xdb\x90\xe7\xaa\xc0\x7b\x43\xdc\xac\xbc\xb5\xed\x2a\xc8\x3d\xce\xee\xf3\x85\xc0\xfb\xaa\x59\xf7\x9d\x2e\x08\xf9\xf4\x08\xc7\xcf\x64\x09\xfd\xd0\xd4\xe6\x21\x79\xfb\x74\x5e\xa0\x09\x6e\xb6\x32\xd5\xf4\xf5\x5f\xc3\x05\x77\x14\x85\x95\x4f\x26\x92\x19\xd3\x22\x41\xc8\xca\xa8\x2c\x8e\xc7\x74\x24\x52\x13\x7d\x56\x76\x5b\xe0\xc1\x70\xbd\x5c\xc2\x72\x8b\x50\x45\x49\xbf\x8c\x60\x01\x5a\xb7\x4c\xbf\x2a\x60\xa4\x76\x21\xfb\xaa\x40\x23\xa6\xe2\x22\x03\x67\xe0\x43\x23\xf4\x50\x6d\xb3\xe1\x6b\x13\x0d\x12\x9a\x1f\xf0\x61\x6a\x0c\x92\x97\x49\x19\x92\xbc\x54\xd3\x8d\x0d\x01\xae\xa3\x03\x0e\xba\x43\x44\x31\x19\xec\x0d\x51\x8e\xc9\x60\x7f\xd8\x60\x6d\xf2\x75\xce\x13\x9a\xa2\xbc\xcf\xda\xe3\x7b\x96\xdd\xd0\x91\xdc\xf6\x84\x23\xc9\x99\xf4\xc2\x97\x80\xb1\x45\xba\x94\x2d\xde\xb8\xfc\xde\xfd\x6a\x41\xd0\x7f\x97\xc5\xcf\xc6\xe3\x8f\xb4\x28\x42\x71\x36\xd4\xbb\xd1\x1f\xc8\xfa\xfd\x2a\xad\x41\x15\xeb\xe6\x8d\xa2\x61\xb5\x82\x59\xdf\xec\x98\x6e\x3b\xf5\x2a\xf7\xfc\xfd\xcc\x86\x69\x52\x7e\xd4\xbb\x7a\xfb\xff\xab\x75\x75\xa8\x5a\x00\x57\xc8\x39\xe3\xab\x97\xa9\xf1\x03\x80\xdb\x91\x37\x91\x0e\x87\xb2\x3a\x7b\x08\x1d\x74\x86\x18\xe3\x51\xfb\x37\x32\x9b\x13\x9e\xe6\x98\xca\xd3\x90\x61\x2a\x4f\x43\x81\xa9\x3c\x0d\x64\x56\x90\x07\x5d\x78\x5b\x16\xfe\xcc\xbe\xb0\xfc\x8e\x55\x3b\xb4\xd5\x0b\x30\x3b\x5c\xaa\x14\x18\xce\x9a\x95\x06\xdd\x16\x18\x16\x9a\x3a\xd6\xcb\xd1\x07\xdf\xb7\x44\x71\xb2\x1e\x88\x28\xa7\x0a\x91\xa6\xfd\xb2\xc7\x1e\xeb\x59\xbc\xb7\xd0\x55\x39\xf6\xe1\x67\x31\xac\xa9\xcb\x7b\xe5\x83\x16\x25\xc9\x01\x4f\xeb\x34\x2a\x16\x24\x46\xf6\xde\xd2\x81\x99\x15\xf2\x17\xc8\xfd\x3a\x56\x4b\x10\x93\x35\x86\x3b\x6c\x0d\xca\x0d\xd5\x6b\x9a\xf0\x02\xd5\x9b\x97\x0d\xbf\x97\xdd\xae\x9b\x76\x52\x0d\xa5\x7d\x05\xbc\x6c\x21\x32\x01\x37\x9b\x9f\xc9\xd1\x56\xf5\x26\xa3\xbc\x90\xdd\x09\xa5\x4b\xe5\x6b\xa2\x48\x4f\xb0\x44\x93\x07\x75\xf0\xf0\x85\xdc\xf7\x9a\x2a\x71\xd3\x85\x24\x00\x9a\x75\xf6\x53\xe1\x88\x96\xcb\x61\xaa\xce\xef\xd5\x93\x17\x19\xcc\x15\xc6\xff\x2d\x16\x59\x0d\x05\x09\x4c\x2a\x0b\x8d\x18\x50\x39\x90\x2e\x91\xb2\xa9\x22\x01\x36\x5d\x7d\x25\x01\xfa\x01\x6b\xae\x06\x18\xac\xb9\x6f\xa7\x62\x71\x4a\x1e\x2c\xd1\xdc\xac\xc7\x5c\x4f\x59\x79\xc9\x5d\x37\x00\x9b\x25\xa3\xb6\xe4\x4d\x03\x43\x14\xd1\x16\xe4\xab\x48\x24\x6a\x02\x45\xad\x2e\xa9\x19\xdd\x4a\xe1\x91\x66\x80\x2b\xe5\x1d\x46\xb2\x5a\xc9\xf9\x98\xb8\xb5\x3e\x38\xcc\x5c\xa5\x96\xcf\xe9\x39\xb5\x3e\xe6\x63\x3a\xa1\x84\x47\x4d\x6a\x44\x9b\x93\x09\xe1\x9c\x70\x14\xa3\x0f\x50\x86\x45\xb9\x73\x3a\xf5\xa1\x69\x50\x52\x03\x90\x14\x4c\x0b\x1a\xb2\xaa\x0e\x4c\xd3\xbd\xea\x51\xa9\x10\x4d\x76\xc9\x6c\xeb\x46\xb7\xd3\xdb\x52\x38\xb9\xd8\xba\xc9\xee\xe1\xdb\x15\xd9\x5a\x14\x04\x54\x65\x90\xa6\x52\xcd\x6a\x4b\x72\x2d\xa0\x11\x6b\x9b\xaa\x49\xa6\xae\xca\x72\xb6\xe7\x22\x13\x8a\x58\x89\xce\x17\xa6\xc8\xd5\x14\xa9\x22\x81\x04\x00\xb5\x26\x70\x18\xa2\xe0\xbd\x69\xdb\x7b\x5f\x52\x3f\x41\x83\x12\x87\x6c\x77\xc1\xf5\xde\x96\xbe\xe0\x8b\x02\xa2\xc0\xd4\x14\xef\xf8\xc5\x4f\x4b\x0e\xbc\xb2\x9f\x92\x3b\xff\xc4\xe9\x0d\x15\xf4\xb6\x94\xba\x06\x70\x24\x1b\x38\x97\x2c\x92\x20\xe3\xba\x86\x8a\x90\xa0\x4f\xb6\x3b\x90\x46\x6c\x51\xbe\x07\xb5\x2f\xd8\xa4\x4b\xfa\x61\xb3\xbe\xf5\xca\xd8\x36\x62\xeb\xad\x6f\x71\x80\xa6\x3d\x09\x4d\x00\x54\x05\x26\x83\x67\x43\x34\xc3\xc2\x72\x78\x49\x91\xa2\x89\xb2\xe0\xcf\x1d\x52\x3f\x61\x78\x30\x90\xc7\x85\x12\x26\xce\xe9\x98\x9c\x1b\xfc\x83\x16\x55\xfe\x05\x6d\x77\x86\x43\x63\x1c\x9d\xa3\x27\xd5\xec\x0e\x87\x72\x04\xa2\x4d\xd9\x8c\x32\xc5\xe9\x25\x0f\x25\xba\xeb\x31\x34\xcf\x78\x76\x43\x04\xe1\x45\x8f\xb7\x0f\x3f\x7e\xba\xf8\xfb\xe5\xc1\xd9\xd9\xc1\xdf\x97\xa9\x5c\xb3\x71\xb0\x1c\x09\x45\x13\x45\x2d\x67\x12\x4c\x66\xf0\x3b\xc0\x19\xab\x16\x4e\x72\xd8\x6a\xf1\x0a\xb5\x78\x33\xb5\x78\x13\xb5\x78\xd7\xee\xd1\x9d\x47\x4e\xa9\x42\xc8\x1f\x72\x7e\x91\x4d\x93\x0c\x5d\xa7\x68\x8c\xe7\x6d\x70\x8a\x22\xe8\x06\xcf\xdb\xa3\x6c\x9e\x5d\xd1\x19\x15\x94\x14\xe8\x5e\xbe\xb0\x7c\xae\x73\xa8\xc7\x8f\x8f\xfa\xd7\xcd\x9a\xe3\xdd\xdb\x7a\x97\x31\x79\x7a\x27\x94\x8d\xb7\x6c\x82\xc7\xad\xe6\x4e\x96\x36\xbe\x7d\x1f\x8b\x6f\xd8\x47\xfa\x8d\xfb\x88\x72\x17\x24\x27\x29\xba\xef\x27\xca\x35\xc6\x76\x53\x4a\x1e\x92\x31\xa4\xde\x64\xb7\xf9\x17\xa2\xb0\x4e\xb9\xf7\x37\xe8\x1e\x51\xb5\xfb\x33\xb9\xfb\x79\xab\x95\xa7\x69\x6f\xb3\xc6\xdc\x66\xaa\x8d\x38\x10\xa4\x85\x21\x1b\x20\xba\x12\x56\x1a\x42\xd9\x4e\xde\xcb\x7d\x3e\x9a\x24\x0f\x19\x9f\x16\xf1\xd0\xc3\x92\x31\x64\x00\xda\x8b\x79\x92\xa2\xbd\x25\xa2\x93\x0b\xee\x9b\x2f\x99\x31\xeb\xa1\x24\x14\x89\x36\xb9\xcd\x66\xe7\x70\x7f\x4b\x6c\xc2\x01\xd7\xe4\xf3\xf3\x51\x3e\x27\x89\x7e\xf8\x20\x77\x20\x49\xb5\xb5\x93\x9e\xce\xdf\x29\x99\x8d\xd7\x4d\xa6\x21\xda\xf7\xb2\x1c\x84\xc1\x72\x2a\xcb\xed\x07\x4c\x58\xdb\x80\x53\x73\x30\x4c\x51\x14\x31\x76\x3d\x04\xa7\x85\x17\xab\x5a\x1c\xeb\x32\x49\x38\x6d\xe6\x5f\xf7\x55\xe8\x75\x1a\x65\x9a\x54\x90\x67\x09\x1e\xdd\x79\x81\x94\x7c\xed\xaa\x40\xfe\x92\xc4\xb6\x72\x04\xc0\x0f\x56\xa7\x2c\x6d\xb5\x44\x7b\xba\xc8\xf8\x98\x8c\x55\x6b\xe1\xda\xc1\x21\xd9\xf0\xba\x04\x54\xfe\x4c\xa1\xf2\xe7\x12\x37\x39\x07\x26\x4f\xd1\xc2\x7d\xce\xe4\x55\xad\x47\xa4\x0e\xa2\xe2\x6d\x8b\x56\xab\x40\x8b\x56\x6b\x61\xe2\x00\x08\x45\x78\x25\x5d\x27\x47\x81\x1c\xda\x22\x2a\x01\xab\xdc\x70\x4f\xbf\xc9\xf6\xe0\x26\x33\x9d\x84\xe2\xb1\x4a\x07\xe3\xa0\x40\x42\x75\xba\x7a\xc2\xdb\x45\xc7\x6d\xaa\x8a\x91\xd6\x5f\xc7\x95\xe1\x54\xe0\x2e\x7d\xf0\x47\xeb\x4a\xdd\x62\x83\x75\xbf\x57\xc7\xaa\x48\x64\xeb\x8f\x4b\x5c\x1b\xb2\xbc\x84\x43\xb0\x9f\x71\x36\x44\xd2\xb2\x54\x92\x96\x72\xc7\xee\xea\xb9\x1a\x00\x67\xe0\x67\x33\xca\xac\x39\x9e\x26\x8c\x7e\x75\xe1\xd0\xb2\x38\xd9\x42\xd0\x7c\x51\xf8\x1f\x99\x93\x79\x28\x64\x71\xa2\x46\x27\x85\x18\x27\xb1\x40\x49\x10\x43\x02\x3c\x62\x4d\xfa\x82\xfa\x82\x85\x30\x67\x64\xbb\xf3\xc4\xf2\x12\x77\x28\x97\x4f\x11\x8a\x57\x8c\x51\xaa\x4a\x96\x6e\x83\x08\x78\x76\x26\x7a\xd6\xb1\x5e\xfa\xf5\x4b\xd8\xab\x5f\x40\x2d\x3f\x3a\xdc\x68\xa7\x94\x4c\x5a\xf3\x9f\x5a\xf2\xad\x77\x47\xd3\x13\x1c\x33\x93\x42\x1b\xf4\x18\xf4\x4f\xe2\x26\x87\x72\xcd\x29\xcc\xf7\x8a\x15\x4c\x21\xc6\xc7\xf4\x0a\xdf\x59\x20\xd3\xea\xb3\x08\x3b\xab\x30\x58\x7c\x1d\x9d\x31\xeb\x6b\xbe\x70\xd0\x67\xb8\xb6\x2e\x02\xaa\x91\xe1\xb9\x0d\x02\x2b\xe9\xb5\xe7\x4a\xe4\x56\x4a\xd1\xac\x79\x37\x31\x16\x7a\xa0\x56\xf8\x90\xf3\xaa\x19\x94\x3a\x4d\xb5\xb2\x2f\x77\x23\xda\xd7\x24\x9b\x83\x6a\xec\x26\x9b\xcd\xf2\x91\x77\x7a\x85\x7b\x7a\x23\x49\x20\x39\x16\x03\x36\x4c\x75\x64\x9d\x4f\xb3\x6c\x44\xae\x73\x39\xaa\x84\xdb\x08\x3b\xae\xc7\x8d\x24\x48\x8a\xeb\x8f\xaa\xa3\x1c\x41\x30\xbf\xd0\xbe\x29\x24\x2f\xe3\xa9\xb8\x5c\xd8\xd1\x19\xdd\x63\x84\x0f\x71\x90\x8c\xa6\x34\x59\xff\x41\xd1\xa9\x4a\x3f\xe8\x12\xaa\xfa\x8d\xa5\x54\xe1\x79\xd9\x73\x3b\xb3\x23\xfb\x0d\xda\x48\x58\xba\x7a\x02\xaa\x58\x24\x47\x8f\x37\x03\x24\x79\xe5\x29\x11\xef\x9c\xc1\x28\x07\x4e\x60\x5a\xca\xd8\x14\x8a\x0d\x50\xad\x3f\x3e\x82\xc1\xc2\x94\x08\x8d\x8b\x49\x9a\x22\x33\x37\x12\x4c\xcc\x9d\x15\x5f\x46\xc7\x6c\x38\xef\x15\xc7\x22\x58\x71\xcb\xab\x57\xcf\x85\x2e\xa9\x78\xef\xcd\x5b\x54\xe5\x75\x7b\x2b\x24\x38\xa0\x9e\xce\x98\x28\x56\xcb\x6f\x34\x88\xdb\xd2\xa5\xe0\xec\xeb\x8f\x94\x4e\x36\x8c\xb8\x03\x8e\xb7\xdc\x35\x9d\x8f\xbd\x30\x96\x8e\x88\x62\x6e\x4d\x4b\x26\xda\xec\x16\xb4\x54\x80\x39\x74\x2a\x71\x15\xd0\xab\xaf\x2d\x9f\x27\x69\x8f\xee\x74\xf5\x25\x51\x4a\xac\xf0\xc3\x75\x56\x1c\xde\x66\xb3\x1e\x6b\xeb\x5f\x48\xf7\x26\x77\xf6\x2f\x90\xe1\x79\x79\x76\xd4\xa2\x20\xe1\xca\x49\x41\x5a\xe7\xe1\xa3\x06\x6b\x17\x22\xe3\xe2\x38\xbb\x22\x8a\x62\x6d\x4f\x88\x18\x5d\x7b\xf4\x42\x37\x55\x11\x78\xec\xc1\xbd\x50\xd6\x09\x01\x51\x01\x39\x80\x34\x91\x75\x26\x19\x0d\xc2\x60\x49\x99\x66\x1d\x58\x7b\x96\x67\xe3\x6a\xcb\xff\xb9\xb8\x99\x7f\x66\x33\x52\x14\x49\x13\x8c\x21\x56\x8c\x22\x2e\xc6\x60\xf5\xc4\x1f\x03\xe2\x4f\x4b\x29\xac\x60\x4c\x8e\x69\x35\x35\x87\x98\xe6\x13\xa2\x10\x00\xbc\x43\x74\x34\x30\x4a\x5f\x0a\x27\x27\x2e\x97\xd7\x99\x9d\xcb\x2f\x2a\x9a\x38\x7a\xf2\x24\x59\x73\x95\x08\xf4\x00\xf0\xda\x73\x19\xd8\x88\x28\xb6\x96\xa3\x45\xa1\x80\xb6\x47\x96\xe9\x12\xe2\x02\xae\x58\x6a\x77\x5b\x0e\x4f\xde\xc3\xb8\x7d\xa1\x64\x39\x31\xf3\x3d\xbe\xc1\x85\xc8\xe7\x06\xc0\x4c\xcc\x5a\x4b\x48\xc6\x85\xc5\xb9\xa3\xa0\x38\x5f\xeb\xf2\xa1\xf5\xf6\xb1\x33\xa5\xa4\x7a\x75\x37\xac\x64\xf5\x07\x1d\x10\x70\x2a\x19\x8b\x90\x3c\xce\x02\x0b\xc9\xe3\xcc\xb0\xdb\x7c\x43\x9f\x43\x65\x7f\x96\x30\x3c\xab\x17\xb6\xe8\x3b\x87\xa4\xa9\x2f\x5f\x01\x23\xac\x12\xc1\xa7\xfd\x64\x56\x2b\x0a\x20\x29\x9a\xd5\xc8\x15\xb8\x11\x08\xe4\x4a\xaa\x54\xa0\x45\x9a\xf6\x36\x6b\xcb\x6d\xa5\xd2\x86\xd1\x36\x9e\xae\xd6\x36\xc2\xa6\xc7\xd4\x8d\x02\xe2\x4f\xd4\x29\x1c\xa1\x5a\x4c\xe5\xa8\xda\x8b\x18\x5e\xab\xf6\x62\x55\x74\x4f\x0a\x01\x3f\x64\xa2\x47\x90\x7a\xd5\x13\xcb\x74\xb5\xaf\x49\x10\xd9\x09\xbb\xed\xd9\x14\x9c\x30\x22\xc7\x79\x39\x77\x9d\x97\x61\xfb\x73\x95\x55\x5b\x20\x8a\xb3\x01\xd3\x0d\x0c\x77\x39\xd2\x3d\xca\x5d\x32\xeb\x79\x50\x0f\xc1\x8a\xc8\xa8\x18\x38\x74\xa3\x06\x0e\x5d\xd7\xc0\xa1\x6b\x0d\x1c\x94\xcb\x8d\xda\x02\x6d\xc1\x03\xac\x74\x16\xf1\x03\x49\x40\xea\x51\xce\x51\x9b\x8f\x83\x6b\x30\xfc\x46\xc1\xa5\x5a\xee\x24\x1c\x84\xa8\xdd\x97\x66\xbf\x4a\x0a\x2e\xe1\xa9\x8a\xe8\xa6\x78\xc5\x8a\x19\x96\xb7\x1d\xc5\x1d\x95\xeb\x55\xc9\xd4\xf9\x30\xca\x0a\xb2\xd5\xed\xb9\x08\x42\x4f\x4f\xff\x4f\x08\xea\xa4\x0d\x28\xb6\xb7\xa6\x18\x72\x17\x4e\xd7\xd9\x7f\x4a\x1d\xe4\x9a\xac\xa5\x0d\x1d\x89\xe2\x9b\x5b\x70\x1e\xf6\x2b\x09\x44\xe5\x12\x7d\xcc\x46\xd7\x34\xc8\xe1\xf0\x5d\x2b\xd5\xed\xec\x3d\xdb\x6c\xb1\x64\xc9\x6f\x58\xaf\x4a\xb5\x6f\x59\xb2\xd5\x8d\xac\x5c\xb5\x90\x99\x0a\x68\xcc\x72\x4d\x93\xbd\x67\xa9\x0f\xe6\x06\x54\xed\x71\xf2\x0e\x93\x76\xb2\xaa\x52\xce\x84\xdf\x92\xaa\xa1\x43\x04\x0c\x76\xbb\xf1\xca\x7f\xa3\xe2\x5a\x3b\xdb\xc5\xb0\x5c\xb4\xa5\x18\x09\x2f\xdb\x8a\x01\xcc\x8a\x35\xae\x0c\x09\x04\x35\x21\xaf\x0e\xf8\xf5\xc5\x2b\x14\x10\x47\x5a\x04\x00\x32\x5f\x4e\xe6\x19\x27\xe3\xf2\x62\xd9\xee\xca\x0b\xa5\x92\x6c\x38\x66\x13\xee\xf6\xb2\xf7\x2a\x5a\xe1\x3c\x9b\x90\x15\x95\x7e\x8e\x56\x7a\xaf\xdd\x15\x3e\xf0\x6c\x1a\xda\x0c\x97\x95\xf7\xe3\x43\x3c\xf1\x3c\x41\xbd\x0a\xe1\x9a\xc5\x6c\xb2\xbd\x0a\x7b\x41\x05\x88\xa8\x54\xd2\xd1\x3c\x63\x85\x0a\x03\x15\xaf\xff\x73\xd8\xa1\x82\xd3\x27\x34\x10\x0e\x40\xbe\xd5\xd4\x30\xc8\xe2\xe3\xd5\x9e\x3d\x0b\xab\xe5\xf3\x0d\x6a\x3d\x8f\x74\x56\x63\x35\xec\xd5\x0b\x67\x39\xcf\xe7\x9b\x54\x8b\xcd\xed\x2c\xcf\x45\x30\xc4\xf2\x3c\x29\x90\xe9\x20\x82\x44\xbf\xdb\x0b\x77\x5f\x7e\xfd\x9d\x72\xb1\xc8\x66\xb1\x56\xbc\x36\xba\x28\x4c\xe3\x0f\xb4\xd7\x35\x9d\x8d\x57\x2c\xd0\x5e\x65\xc4\x5a\x23\x52\x53\x7c\x3f\x2c\xae\xce\xda\x01\x0f\xbd\xb8\x6d\x95\x97\x3f\x57\x06\xa6\x19\x73\x03\x32\xb5\xeb\xf2\xaa\x8b\x3a\x8f\xa2\x52\x9d\xeb\x73\xef\xd0\x95\xc6\xc9\xa6\x66\x0c\xaf\xf6\x22\x8b\x13\x63\xcf\xe2\xb3\x7e\x15\xce\xda\xe5\x3c\xcf\xc9\x6c\x52\xd7\xed\xb3\x4a\xb7\x11\x9e\xb5\xae\xf2\xf3\x95\x95\xb5\xb9\x6b\x4d\xdd\x17\x95\xba\xe0\x79\xf6\x21\xe7\x92\xe9\xaf\xab\xf5\xb2\x52\x2b\xa0\xd0\x57\x76\xfa\x73\xa7\x52\x3d\xe4\x68\xeb\x6a\xee\xc7\x6a\x7a\x66\xbd\x35\x15\xab\x0b\x2c\xdf\x83\x16\x2f\xba\x95\xe6\xba\x7d\xfe\xb2\x0a\xf6\x1b\xd4\x0a\xef\x03\xf9\xf1\xfc\x26\x9b\xcd\x36\xa8\x1b\x5e\x0b\xf2\xa0\x6d\x56\xf5\x45\x25\x49\x3e\xec\x8a\x46\x0c\x2b\xab\x3e\x0b\x7b\x55\x55\x41\xa3\x19\x87\xf5\xe7\x21\xe6\x13\xf9\xdb\x3c\x9f\x91\xac\xee\x26\x0e\xcf\x46\xcd\x1d\x5c\xf1\xbd\xab\xf1\xcf\xd8\x8f\xb2\x19\xfb\x2e\x9b\xb1\xaf\xfc\x33\xb4\x03\x7a\xdd\xf5\x65\x38\xc0\xf0\x7a\x31\xef\x03\x24\xe4\x0b\x5b\xc0\x9f\xae\xd5\xe2\xa6\xf0\x0a\x94\x13\x4a\x69\xa0\x7c\x88\x20\xa2\x85\x62\xd8\x3d\x5a\xb0\x20\xe2\xf7\x8c\x53\xc9\xa0\x27\xce\x3b\x7b\x9e\x2b\x82\x22\x6d\xd0\x59\x10\x21\x11\xcc\xd8\x54\x2e\x2a\xad\x97\x05\x41\xe6\x53\x2d\x00\xe3\xcc\xe7\x89\x47\x60\x05\xf8\x20\x5a\x69\xb5\xb6\xcf\x36\xac\x15\xee\xf6\xd9\xdb\xa2\xe0\x8a\x4f\x4a\x12\xb9\x86\xe2\x08\x19\xbb\x3a\x9d\x8d\x4f\x87\xbb\x24\xb7\xab\xa4\x46\xf5\x5a\xa0\x3a\xa5\x4d\x20\x00\xf6\x95\xcc\xa5\xca\x26\xd2\x70\x28\x8a\xf0\x04\x11\x5a\xa8\x45\x4a\x77\xfd\x4f\x79\xd8\x80\x23\x34\xad\x9c\x54\x87\xb1\xd6\x89\x0c\xc8\xdd\xd6\x69\xa5\x01\x23\x13\x5b\x5d\x1f\x92\x72\x28\x81\x82\x4b\xcc\xc7\x88\x8f\x05\xe7\x34\x8a\x03\x3c\x02\xa1\x42\xd9\x95\x27\xd6\x56\x3d\x02\x31\xfc\xa8\x86\x2c\x79\x19\x22\xa1\xaa\x84\xb5\x86\x1a\x0e\xfb\x76\xe5\xa4\x35\x55\xc2\x4b\xa0\xce\x13\xd0\xa9\x52\xc1\xfd\x0b\x71\x24\x24\xcd\x91\xf3\x1a\xac\xfa\x22\xa8\x41\x98\x20\xfc\x98\x16\x91\x9b\x50\x33\x5b\xc9\x8b\x67\x9e\x18\x45\xcb\x7f\x12\x7d\x92\x8a\xca\x4d\x49\xbe\x52\xe1\xb7\xe8\x8d\x20\xa4\x9c\x29\x0c\x38\x42\xad\xd8\xfe\x5f\x3e\xad\xff\x0a\x76\xaa\xa3\x6c\x63\x35\x15\xba\xaa\xa9\x51\x25\x27\x1c\x0c\x5a\x53\xa7\x4a\x49\x98\x5e\x6a\x2a\x44\xc9\xb3\x35\x9d\x54\xc9\xb2\xe9\xea\x4e\x5e\x55\x2a\x5c\x67\xc5\xaa\x0a\x11\x62\x1b\xcc\xd5\x6a\x8a\x77\xab\x5c\xc3\x2c\xcf\xc6\x75\xa5\xab\xc3\x01\x49\x7d\x5d\xf1\xea\x60\xc6\x8b\x79\xe8\x8f\xfe\xcd\xbe\x54\xee\x8d\x32\x47\xdf\x21\xb1\x0c\x65\x32\x49\xf7\x05\xaa\xaa\x25\xe7\xf9\x8f\x1b\x7a\x37\xd2\x67\x95\xf8\x56\x65\x2e\xf2\xda\x23\x67\x85\x47\xcf\x9f\x76\xf2\xaa\x3a\xb1\x38\x0e\xe8\x86\xd8\x91\x13\x3a\xb9\xff\xbc\xbf\x57\x53\x3c\x44\x19\x80\xb4\xea\x8e\x42\x15\xf2\x24\x42\xaa\x41\x46\x21\x97\xaa\x96\x66\x25\xe9\xbb\x17\x0e\xfe\x3f\x17\x37\x91\x98\x38\xc1\x52\x3e\xdf\x7b\xda\x52\xca\x46\x8f\x22\xfc\x9f\x41\x8a\xcf\xf7\x9f\xde\x9e\x52\x71\xad\x68\xf3\x89\x88\x5e\xb6\x79\xf8\x8f\x18\x97\x5d\x95\xf9\x25\xcf\x25\x5e\x5b\xd9\x7c\x78\x30\xb2\xa2\x20\x5c\x9c\xd7\x71\x31\xc9\xf3\xf0\x2e\x93\x6f\x21\x57\xb0\x2f\x35\xf0\x2e\xf4\x90\x3f\x53\x72\xe6\x95\x66\x29\x90\x59\x1a\x65\x58\xe5\x74\x10\x81\xfe\x52\xe7\x98\x7e\x80\x2c\xbc\x60\xe3\x30\x9b\x5d\x65\xa3\x2f\x3d\x81\x60\x9e\xbd\xe6\xbb\xe3\x83\xcf\xe7\x87\xcd\x9d\x6c\x67\x67\x69\x4d\xac\x00\x84\x13\x03\x14\xe5\x54\x4b\xc6\x40\x9d\x88\xc4\x9a\x64\xb9\xaa\xeb\x5c\x2b\xf1\x41\xdc\xba\x2a\x2f\x11\xd5\x9b\x94\xe8\x34\xc1\x48\x13\x84\x72\x1c\xcc\xc9\x4c\xfd\x9a\xfd\x82\x3b\xaf\xd9\xee\x6e\xca\x71\x6e\x03\x49\x29\xea\x90\xeb\x2a\x25\xd1\xbe\x07\x2a\x0f\x3d\xd1\x24\x85\xdc\x36\x86\x37\x90\xfd\x69\x2d\x69\xc3\x69\x44\xeb\x4d\xf5\x5c\x4a\x25\xa9\x5e\x8d\xaf\x55\xe5\x89\xb5\x34\xab\xb1\x54\xd1\x0a\x21\xa5\x27\xd0\xd4\x31\x13\x92\x6e\xbf\x07\x92\xde\xd6\x62\xe9\x03\x4b\xba\xae\x71\x21\xe9\x27\x22\x58\x73\x47\x66\x9b\xa4\x69\x4f\x38\xf2\x4e\xb0\xa3\x63\x6e\xe6\x58\x65\x83\x59\xa5\x43\x95\xb5\xef\x0a\x2a\x33\x29\x8d\x9e\xdf\x66\xdc\x61\x12\x55\x17\xfb\x7e\x17\xd1\x11\x1a\x21\xb1\xae\xf2\x6c\x83\x2a\xa1\x88\x58\x57\x7d\xbe\x41\xd5\x93\x7c\xac\x63\xed\x56\x2e\x2d\x08\xe8\xb6\x5a\x5a\x54\xbd\xa7\x23\x73\xaf\x5e\x7e\xe5\xee\x56\xf5\xf5\x96\x0d\x5c\xcc\x13\xff\xa2\xee\x1a\xec\x12\x2a\xe6\x5d\xb6\xd8\x67\x0b\x5d\x7c\x61\x5f\x96\x82\xc7\x68\x2b\xeb\x54\x01\x1e\x9c\x45\x24\x6b\x61\xa3\xe1\x5a\x46\x4c\x6d\x6b\x66\x15\xac\x6c\xb1\x86\x1d\x7a\x11\x32\x0b\xce\x71\xa9\x41\x96\x31\xb1\x31\x10\x89\xab\x24\xe3\x2f\x57\x9b\x49\xcd\xf3\xd5\x06\x52\x46\x85\x23\x54\x50\xc8\xe5\x12\xa9\x7a\x9a\x39\xdd\xa8\x6e\x41\xff\x24\xb6\xa2\xba\x6d\xd6\x38\x32\x96\x6c\xe8\x48\xa5\xa5\x29\xcd\xb2\x7c\x8a\xd8\xaa\xb4\x45\xe2\x84\xca\x82\xf9\x3e\x25\xb2\x97\x40\xbc\xcf\x8d\x5d\x8b\xb6\xcb\x52\xb8\xb8\xd7\x71\x72\xff\x55\xfc\x0d\x31\x47\xb4\x6d\x5d\x4d\x54\x36\xdb\x84\xa6\x88\x82\xf7\x02\x29\x0a\x9a\x33\x1b\x7b\xc1\x37\xae\xba\x31\x96\x54\x37\xda\x7a\xea\x46\x7b\xff\x59\xad\xb7\x32\x8e\xd7\x2e\xc0\x35\xde\x73\xd6\xda\x8a\xbb\xfe\x38\x14\xbe\xf8\x43\x6d\x67\x85\xf1\xd7\xc8\x95\x5d\x7d\x86\x99\x6f\x84\x97\xe4\x88\xa7\xc6\xda\x24\xeb\x8b\xf6\xb5\x7a\x9d\x29\x7b\x0d\x9d\x15\xb1\x2f\xac\x39\x60\x76\x7f\x45\x8e\xf3\x51\x36\x4b\x72\x70\x2e\x99\x06\x02\x2c\x27\x4b\xe3\x7d\xe2\xfb\x8e\xbc\x03\x76\x25\xea\x7a\xa4\x1c\x01\xeb\x32\x36\x69\xc7\x10\x3e\x60\x43\x65\xde\x0f\x5e\x3a\xa6\x88\xdb\x85\x9a\x54\xbc\x0b\xbd\x44\x7a\xf1\x72\x77\xf1\x7c\xaf\xa7\x85\x72\xd2\xa3\x93\xa4\x69\xf7\xb9\x09\xce\x86\x36\x06\x64\xa1\x72\xff\x19\x4b\xbe\x6e\x8a\x80\x35\x10\x00\xbb\xf7\x25\x4a\x92\xdd\x2e\xd0\x76\x47\xd9\x16\xcd\x30\x0d\x56\x3f\x43\xb9\xeb\xce\x38\x5b\xeb\xef\x24\x69\x18\xc7\x9f\x51\xed\x16\xf8\x27\xea\x8d\x9b\x81\x71\x8d\xb3\x24\xbf\x92\x55\x4b\xae\x7d\x2f\x15\x5d\xe5\x6d\x26\x37\x91\xa5\xa9\xbf\x15\xee\xfe\x52\xb9\x23\xae\xdf\xa7\x85\x8e\xda\x2d\xb0\xfb\xbc\x0a\x5c\xfb\x09\xc3\x54\xa5\x34\xa4\xe5\x12\xc7\x80\x90\x01\xa5\x10\x00\xa1\xca\x70\x62\xc7\xcd\x23\xe3\xe6\xde\xb8\x3f\x33\x15\x24\x3c\x74\x7a\xf1\x52\x15\x7d\xaa\x9a\x1b\x2a\x7e\xd0\x03\x40\xcd\xc3\x57\x5c\x24\x0c\x73\x5f\xf1\x69\x34\x35\x3e\x65\x3c\xbb\xa9\xfa\x6e\x5c\x7b\x9f\xcb\xda\x12\x2f\x52\xf7\xca\x51\xe1\x54\xb6\xbb\x80\x9d\xb4\x65\xab\xc2\x09\xea\x37\xa2\xc6\x16\x5e\xe8\x1f\x88\x96\x21\xe7\x98\x13\x72\x4e\x00\x9b\xe0\x8b\x4b\x82\x6e\x2a\xd4\x46\x65\x20\x64\xe9\x35\x21\x0f\xb0\x57\xcb\x0f\xb0\x40\xd2\xbe\xa6\x42\x43\x14\xea\x5a\xc5\x5f\xd3\x22\xed\xd9\x7b\x2e\xb2\x1f\x92\xd6\x11\xc1\x6d\x19\xe8\x2f\x03\x6b\x71\xbb\x3c\x6d\x15\xeb\xda\x0c\xa7\xe1\xdc\xc1\x2f\x10\x03\xce\x28\x6c\x19\x54\x2d\x65\x8c\x9e\x28\x05\x76\x5e\x9a\xe8\x26\xa4\xd5\x22\xae\xcd\xae\x43\x03\x95\x57\x7a\x12\xbe\xad\x4c\xca\x47\x31\x15\x49\xb5\x49\x7b\x6f\xe9\x71\xef\x88\x95\x3e\x79\x51\x7a\x4c\x2f\x36\x90\x5e\xb2\x35\xb8\x04\xb8\x33\xa4\xe4\x55\xc7\x32\x0c\x73\x9e\xb8\x73\x48\x5e\x76\x51\xb8\xa6\x3a\x54\x15\x4c\x3f\x4f\x6b\x74\x03\x15\x12\xf3\xb6\x13\x59\x6d\x67\x25\xab\xec\x48\x43\xf2\x13\x95\x1d\x75\x7b\xf7\x46\xfa\xec\x15\x12\xa9\x01\x25\x03\x46\x2a\xbf\x82\xdf\x71\xa0\x14\xa9\xaa\x05\x72\x94\xa9\x21\xd8\xac\xb9\x15\xb9\xd1\x8b\xa8\xdc\xe8\x85\x2b\x37\x7a\xa1\xc3\x92\xcd\x9c\x02\x2f\x87\x7f\x2d\x01\xae\xc3\x23\x41\x50\x3b\xf2\xf8\xe8\xe9\xfb\x1f\x1f\xb7\x93\x6d\xfe\xf8\x28\xbf\xf1\x41\x67\x68\x6e\xda\x46\x05\x48\xe4\x1a\x3c\xdc\x64\x94\xf5\x32\x44\x66\x05\xe9\x2d\x10\x98\x2f\xf7\xc4\x12\xe5\xdf\x49\xcf\x1b\xaa\x04\x6d\x6f\x27\xd9\xe3\xe3\xe2\xf1\x51\xa4\x68\xe4\x52\xf7\xb3\x7e\x52\x3d\x66\x33\xff\x8c\xa9\x02\x9a\xb2\x9f\xc9\x67\xcf\x80\x56\xb2\x9a\xc5\x06\x4c\x42\xf1\x1d\x4c\x42\x15\xa2\x02\x23\xdb\x10\xae\x74\x8a\x5b\x05\x59\x33\x34\x42\xd7\x68\x8e\xc6\xe8\x06\xdd\xa3\x5b\x34\x45\x57\xe8\xb2\x0a\x66\x2f\xa3\x60\xf6\xd2\x05\xb3\x97\x1a\xcc\xee\xe4\x15\x50\xae\x91\x24\x40\xee\x8c\xd7\x40\x00\x09\x69\x4c\x37\x98\x90\x72\x8c\xe8\x12\x89\x54\x45\xb1\xf9\x91\xe0\x0a\xd0\x79\x88\xef\x0c\x69\xde\x30\xa6\x25\x72\x50\x26\x50\xe1\x4a\xf4\x25\xc7\x07\xb3\x2d\x0c\xde\x59\xa5\x4f\x26\xc6\x8b\x06\x90\xb0\x16\xa4\x44\xf4\xcb\x66\x18\x46\x9c\xa0\x4b\xae\xd6\x38\x6b\x40\x5e\x94\xd5\xd5\x2c\xa2\xd8\xb0\x32\xa9\xcd\x15\xd4\xb0\x68\x5f\xf1\x60\x58\x26\x01\x58\xa7\xad\xfe\xaa\x65\x67\x6a\x99\x7b\x1d\x44\x15\xb9\xd1\xdb\xee\x42\xb2\xa8\xce\xeb\xd9\x9b\x43\x43\x48\xcd\x76\x76\x52\x2d\xed\x49\x46\xf8\x70\x30\x1b\xa6\xed\xd1\x75\xc6\x0f\x44\xd2\x49\x95\x5d\x68\xb3\xd5\xec\xd1\x49\x72\x0d\x1e\x30\xa8\xd9\xd2\x66\x98\x92\x7c\x1e\xa5\xd7\x78\x01\x90\xb2\x25\x49\xeb\x16\x65\xb7\x84\x17\xc4\x7c\xba\xb4\xa1\x90\x46\xdb\x18\x4f\x14\x25\x0c\x56\xdf\x0b\xc6\x49\x36\xba\x86\xe3\x9c\xa4\x8d\x6b\xcc\x96\xd7\xfd\x12\x02\xfc\x6b\x38\xb9\xae\x4c\x6a\xb6\xd3\x2d\xa7\xd5\x59\x82\x53\x7c\x4d\x65\x95\xbb\x6f\x5d\xfd\xc6\x15\x27\xd9\x17\x30\x53\x6d\xfe\x1b\xcc\x77\x3b\x4b\xd5\xbb\xb9\xca\x38\x3d\x56\x19\xa7\x6f\xf0\x08\x49\x68\xbd\xc1\x23\x4b\xc6\xa6\x08\x82\xf9\x27\xf7\x78\x6e\x7d\x7f\x6e\xd2\xd4\xc6\x0e\x95\xd7\xea\x78\x70\x3f\x5c\x3d\x8c\xee\x32\x4d\x97\x76\x97\x3d\x5b\xb4\xc4\xec\xd7\x4e\x57\x62\xce\xc5\xe3\xe3\xe5\xe3\x23\x4b\x53\x74\x8b\xbf\x96\xd2\xc6\xdb\x5f\x70\xe7\xf5\xed\xee\x6e\x7a\x85\x93\x29\xfe\x3a\xb8\x1d\xa6\xfa\xac\xa1\x69\x5b\x77\xa3\x68\x32\xa3\x2c\x4b\xae\xf4\x8d\xe9\xda\x2c\x5c\xe9\x3b\xc1\x45\x6b\x89\xa8\x3d\x27\xdf\x69\x3a\x10\x3f\xa5\x4f\x37\x25\xa8\xc7\xd5\x3e\xb2\x0e\x03\x6c\xd4\xf8\x72\x96\xf1\xd8\x50\xf1\x3d\xf7\x7f\x43\x9f\x77\x13\x2b\xa1\x36\x52\x42\x66\xa9\xaf\xac\x8c\x94\x70\x95\x8f\xef\xdd\xb2\x99\xef\x54\x73\x7c\x7e\xd8\x94\xe5\xf5\xed\x17\xca\x47\x93\xac\x9e\x58\x94\xd5\xd6\xc8\x54\xb3\xca\x1d\xb1\xdd\x71\x02\x77\x16\xb2\x84\x11\x43\xc3\x48\x96\xcb\xe0\x62\xbc\xf7\x0d\x97\x2a\x2e\x77\x86\x26\x35\x62\x09\xb4\xdd\x2d\x2d\x72\x0c\xa5\xec\xb9\x0f\xab\x97\x1e\x91\x01\xc7\x7d\x85\x4d\x8a\x09\x12\xe1\x8d\xcc\x0b\x64\x50\x67\xd1\xe8\x81\x6c\x85\x36\xb6\x3a\xa8\x8e\x75\xef\x3e\xa6\x57\xa5\x0f\x76\x22\xaa\xc4\x71\x3d\xdd\x50\xe5\x37\x4c\xee\x8a\x6f\x55\x94\x22\x8e\x3d\xd6\xa4\x5d\xba\x77\xa1\xdc\xe6\xbb\x40\x19\x86\x7c\xb6\x37\x94\x25\x4c\x4b\x2e\x2a\x0b\x90\xa5\x1e\x5a\x2a\xad\x54\xe5\xe2\x80\x7b\x4b\x06\x7e\x2d\x31\x9a\x60\x32\x47\x6c\x57\x44\x4c\xa3\xf8\x40\x0c\x1d\x9e\x6c\xd3\xed\xd6\x26\x58\x72\x54\x25\xb2\xd8\x68\xcf\x8b\xfa\xf4\x43\x31\xb6\xb1\xc2\xa4\xa9\x18\x89\x91\x2d\x42\xdc\xde\xcf\xb0\x18\xc4\xf5\xf5\x81\x60\x9c\x43\xc4\x6d\x4a\x89\x4a\x3f\x2c\x74\x61\x33\xdf\x21\x01\x48\xc2\xc3\x69\x28\xea\x69\x83\x79\x64\x9a\xf1\x0d\x18\x2f\xc3\x1c\x45\x34\x40\x1d\x64\x93\x2f\x18\x15\x90\x4a\x5b\x47\x34\x29\xa0\xf3\x02\xf5\xc8\xbf\x74\x31\xee\xf4\xc9\x2f\xbb\xdd\x3e\xc3\xa4\x97\x54\x78\x6f\x55\x12\x36\x14\x3f\x4b\xd7\x14\xe8\x7a\xf7\xaf\xce\x99\xd7\xd3\x55\xec\x76\x20\x81\xf7\xdc\x72\x57\xca\xd2\x51\x16\xec\x3c\x12\x24\xf0\xbe\xfb\x55\x67\x99\xef\x31\xbc\x17\x7e\x5a\x18\xd9\x90\xfc\xba\xef\x7c\x35\x1e\x26\x15\x91\xdd\x11\xbb\xcd\x66\x74\xbc\x65\x17\x6f\x6b\x9e\x15\x05\x19\x43\x5e\x1e\x57\x70\xd1\x54\x81\x2d\x74\xc4\xd5\x82\xfe\x49\x8e\x6e\x6e\xc8\x98\x66\x82\x24\xec\xcd\x9b\xfd\x47\x81\x98\x2b\x89\xe8\xee\xa3\xca\x06\xbb\x95\xe2\x1e\xd5\xe4\x17\x5c\xa6\x5f\x7a\x7c\x24\x6f\x3a\xfd\xf8\xea\x8a\x54\xf6\xf9\xbc\x47\xaa\xcc\x77\x55\xd6\x12\x11\x77\x58\x46\xda\x62\xbe\x88\x83\x6e\xb5\xed\x88\x0f\x61\x9d\xbd\xf9\x5e\x28\x60\xb8\xb6\xbe\x8f\x7e\xbb\x35\x97\x5c\x5d\xbb\xcf\x57\x0a\x2e\x2a\xad\x17\x3e\xf7\x16\x71\x67\xb7\x56\xb0\x26\xae\xc2\xca\x50\x59\xc4\xe0\x31\x73\xdd\xe6\x98\x9a\xb0\x59\x19\xa6\xbe\x5b\x67\x81\x69\x24\x6c\xd6\x36\xc6\x79\xab\x65\x38\xe6\x56\xab\x00\x85\x83\x00\x5c\xac\xc4\xa1\xa2\x14\x87\xe2\xbd\x54\x0c\xf8\x70\xd0\x19\xe2\xe6\xbf\x35\x77\xf4\xef\x8a\xe1\x4a\xcc\xb9\x33\xf7\xf0\x6b\xe8\x2b\x2a\x39\xc2\xf2\x82\x16\x68\xbb\x8b\x58\xab\xc5\x52\xb4\x6d\x32\x30\x6d\x77\x63\xd7\x9a\x16\xfb\xd6\x18\x12\xaf\x11\xeb\xd0\x55\x92\x3c\x91\xa2\x3c\xfc\x9e\xe9\x94\xa1\xce\xc9\xfa\xf9\xb9\x8d\xb7\x11\x01\xa3\x52\xde\x5c\x67\x9a\xf5\x02\xf9\xd8\x27\x68\xc7\x84\x6c\xaa\x75\x87\xf8\xf9\x65\x05\x02\x3d\x71\x64\xf8\x35\xd3\x93\x0b\xfa\x11\x9e\x6f\x90\x6f\x6a\xf7\x22\xde\x43\x75\xb0\xb1\xf8\x45\x75\xd6\x78\xfb\x9b\x36\x7a\x13\x0b\x23\x61\x83\xc1\x6c\x26\x87\xdc\xee\x78\x32\xbc\x4e\x3d\x32\x58\x7d\xb7\xeb\x08\x99\x75\xe1\x37\x22\x93\x71\x20\x65\xef\x65\x45\x16\xec\x44\xab\xde\x10\x82\xed\x25\x45\x4d\xba\x8b\xca\x47\x91\x1a\x87\xdb\x50\xb4\xde\x77\xd6\xff\x25\xe2\x08\x24\x78\xac\xdf\x95\xcc\xbb\x23\x1e\x4f\xf6\x5f\x84\x1f\x63\x58\xac\x7e\xd4\x75\x07\x4b\x8e\x3b\xff\x96\x71\x27\xab\x44\xf7\xcc\xdd\xdb\xfd\x97\x88\xa2\x2e\x82\xf8\x75\x75\xab\xe7\x57\x78\x8e\x28\xe2\xb2\x82\x3f\x47\x5f\x7b\x52\x85\xe2\x8d\x58\x07\x75\xf7\x86\x82\x3c\x47\x9f\x54\x77\xad\xac\x46\x0a\xd7\xf1\x6b\xe3\x9b\x0f\x44\x45\xfa\x5e\x7f\x1e\x36\x95\xbb\x5f\x51\x36\x8e\x7b\xe2\xf9\x06\xb6\x1a\x0d\x00\xd1\x1b\xbb\x8c\x0d\x43\x1b\x39\x72\xa4\x2d\x79\x5c\x15\x2b\x24\x1f\xdf\x6b\x93\x22\xcf\xd4\xaa\x4e\x2c\xa6\x4c\x28\xc1\xae\xe9\xe8\xe4\xe8\xe2\xe8\xe0\xb8\x99\x9a\x9c\xff\x89\x3e\xb3\xca\xc8\x8b\xa7\xa8\xe4\xfa\x15\x17\xfa\xe1\xe8\xe4\xe0\xf8\xf8\xef\x4d\xcf\xfc\xc9\x6d\x39\x28\xef\x76\x12\x5f\x4e\xd7\xa6\xaa\x6e\x01\x02\x7b\xc2\x12\xeb\xc0\x02\xc0\x4a\x48\x4e\x4c\x05\x3d\x84\xec\xe6\x74\xf2\x21\x9b\x15\xa4\x46\x34\xc0\x2a\x5c\xbf\x88\x71\xfd\xe0\xec\xa2\xed\xc2\x9c\x89\xfb\x1c\x39\xa2\xad\x16\x4d\xaa\x8c\xb9\x13\xd5\x32\xc6\x47\xe8\xb0\x21\x2e\x91\x63\x42\x88\x90\x6a\x2c\x10\x03\xa2\xde\xdb\xb0\x47\x27\xac\x61\xdc\x34\xa9\x2a\xaa\x80\x0e\x4b\x3b\x0a\x2d\xcc\xee\x5b\x0e\x48\x05\x6d\x0a\xaf\x01\x39\xda\x08\x6a\x50\x2a\x25\x3a\x49\xb6\x89\x51\xf9\x77\xea\x58\x36\x87\xdf\x07\x1e\xd5\x0e\xc1\x64\xd1\x8b\x74\x59\x51\x49\x22\x86\x68\xfa\xc0\x5c\xb9\x76\x28\x98\x04\x8f\x69\xe7\x2c\x54\xbe\x93\x59\x41\x56\x7d\x07\xb5\x4c\xaa\x43\xa2\xa0\x0c\x15\x1e\x61\x6a\xd4\xcb\xe9\x9b\x37\xcf\x1a\xb4\xd5\x4a\x8a\x47\xfc\x0a\xdc\x8d\xe4\xaf\x97\xaa\xda\x02\x7b\xa1\x5e\x1a\x96\xc2\x5c\xa8\xc0\x26\xb9\x0a\x6c\x92\xe1\xce\xeb\xac\x0c\x62\x91\x79\xab\x94\x0f\x32\x97\x93\x07\x84\xb6\x80\x3c\x71\x3e\x21\xa3\xe2\x39\xc6\x00\x4e\xc7\xa6\x73\x83\xad\x92\x54\xef\x6f\xd5\xea\x49\x18\xab\x27\x43\x5d\xaf\x34\x43\x0a\xe1\xca\x88\xf7\xeb\x24\x63\x60\xa3\x24\x96\xc9\x41\x8a\x3e\xd6\x19\x29\x39\xb9\x07\x37\xb1\x50\x8a\x67\x8f\xdb\x50\x53\x6f\x85\x23\xde\x60\x48\x49\x32\x9c\x8a\x6b\xe0\xa3\x37\xd0\x7d\xba\x57\x61\x8d\xa1\xd9\x8b\x08\x3b\x17\xb1\x47\xfc\xae\xfe\xc3\xf6\x56\x0e\xc0\x65\x4b\xe2\x97\x95\x19\x00\xf2\x5a\xa9\x4a\xea\xc0\xbd\x32\x9c\x1b\x54\xae\x73\x89\xd0\xcc\x69\xae\x3b\x08\xa9\xea\x4a\xd5\xb8\x1c\xc6\x54\x5f\x4a\xb0\xfa\x92\xa2\x8b\xff\xbe\x60\xa5\x2f\xf0\xbe\xc5\x6b\x49\xea\x88\xb1\xcb\xbd\x0d\xe9\xe5\x3a\xc0\x7a\x12\x2c\x95\xc2\x86\xb2\xf7\xef\x82\xaa\x0d\x01\xc9\x50\x2d\xb6\xd3\xd7\x10\x9f\x4d\xf4\x63\xb2\xde\x2a\x96\x71\x2a\x2e\x1d\x62\xdd\x95\x0f\xdb\xad\x7f\xb7\xc2\xec\x51\xde\x17\x3a\xb8\x15\xb9\xdb\x2a\x74\xc6\x27\x0d\x44\x92\xde\xc9\xf4\x07\x9d\x53\x2a\xc9\xcd\xd5\xf4\x64\x43\x49\x8a\x32\xc8\x91\xb7\x19\xa8\x94\x01\xdf\xea\x88\x85\x8f\xba\x0b\x35\xcf\xc3\x14\x9d\xb9\xdb\x60\xa7\xe9\x46\xdd\x93\x84\xa5\x0d\xeb\x6a\xae\x06\x11\x0b\xfb\x24\xa9\xf2\x50\x98\xe0\x51\x0e\xa6\x7a\x69\x6c\x06\x72\x69\x67\x5f\xf4\x3a\x3d\x38\xe2\xf0\x9e\x27\x1c\x47\x3a\x9a\xa2\x58\xea\x88\x4b\x9f\xb0\xca\x47\x74\xb2\x76\x22\xf1\xbc\x1b\xc7\x5e\x10\x41\x1d\x52\x50\x89\x50\x74\x21\x98\x50\xf9\xe6\x4e\xa5\x35\x3b\x2e\x4b\xfa\xc1\x06\x35\x15\xad\x49\x28\x1b\x77\x50\x55\xd6\xb4\x11\x2e\x03\x05\x7a\xd2\x27\xd7\x2e\x52\x5d\xb4\x63\x2c\xda\x74\xfc\xf8\xd8\x1c\x41\x4c\xe9\xdd\xe6\xce\xa7\x9d\x9d\x68\x92\x9f\xa2\x7a\xac\xaa\xd9\x4a\xfa\xce\xef\x9e\x37\x63\x72\xb7\x35\x0d\x28\x49\xc8\x86\x9a\x15\x05\x9d\xb2\x34\x91\x67\x34\x5c\x35\xf4\x60\x37\x52\x6b\x45\x03\x0f\x96\x08\x38\x04\xd9\x3c\xc0\xe2\xd0\x7d\xf8\xc1\xa3\xea\x44\x46\xf5\x37\x6f\x07\x6b\xc6\xe6\x6d\x73\xbf\xfa\xaa\x17\x03\x06\x72\xb7\xf5\xf5\x47\x2c\xa2\x4a\xfe\xec\x66\x8c\x9b\x20\x9b\x4a\xae\x72\xb6\x7e\x94\xfb\x9c\x1c\xfe\xfd\xb7\x7b\xfc\xc9\xea\xb7\xbe\x39\x75\x93\x4e\x9a\x91\x6c\x82\x20\x1f\xdd\x26\x8f\x8f\xdd\x6d\x8c\x0d\xb5\x5e\x35\xbf\x3d\xff\xfb\xc9\xc5\xc1\xff\xd9\x3a\x3c\x3b\x3b\x3d\xeb\x6d\xfd\x0f\x3a\xd9\xe2\xe4\x1f\x0b\xca\x49\xb1\x95\x6d\x15\x94\x4d\x67\x64\xcb\x8c\xa0\x99\x36\xe8\x66\x91\xee\xa9\xe1\x18\x3a\xc3\x14\xd1\x32\x0e\x43\x92\xa2\x6e\x2c\xe4\x3d\x8d\xc4\x70\x64\xa9\x2c\x09\xcc\xa1\xd7\x43\xab\x15\x2b\xcd\xbd\xc0\xf7\xcd\x05\xf0\x87\x3f\x6e\x5d\x54\x7b\xff\x25\x6b\x53\x3f\xe1\xd8\xf2\xd4\xac\xa4\xbb\x36\x77\x54\x5c\xff\xb8\x95\x91\xad\xfd\x15\xeb\xa2\xd4\xfe\xfe\xfa\x44\xd3\x25\x44\x67\x8c\xba\xdf\x03\x3d\x24\x1b\xc5\x56\x28\x4f\x1f\xf2\x4d\xac\x17\x44\xab\xd5\xfc\x42\xee\x21\x27\xed\xa0\x33\x94\x38\x20\x57\x93\x93\xec\xa3\x9c\x5f\x2f\xaf\x15\x13\x82\x81\x4e\xee\xae\x45\xc4\xf4\x21\x77\xdd\xf0\xc1\x59\x2f\x22\x14\xc9\x3d\x99\x52\x1e\xd1\x45\x77\xe5\xeb\x52\xce\x74\x74\x71\x78\x06\xf5\xac\xc7\xbe\x0d\xb2\x9a\x1b\x51\x8a\x2d\xa3\x7d\xea\x93\xe6\xdb\xb3\xc3\x83\x7f\x77\x8b\xd8\x2a\xb1\x7d\xd9\x83\x71\x29\x07\xbf\xbc\x22\xb1\x29\xdb\xb0\x8d\x1a\x57\xff\x44\x57\x2c\xe7\x53\x5b\xd9\x08\x85\x5a\xad\xd8\x18\x82\xbd\xa6\x6c\x97\x98\x0c\x9e\x3f\x0c\x8b\xda\x36\xbf\xef\x64\x18\xaf\x02\x2f\xae\xaa\xe3\x44\x92\xbb\x9e\x0b\x72\xa4\x4d\x27\x27\x75\x73\x1b\xd2\xd9\xe5\x03\x36\x4c\x5b\xad\xe6\x74\x41\xc7\xf2\x15\x7f\xca\xe8\xc7\x39\x51\x9e\x18\x22\xfb\x42\xb6\xb2\xad\xff\xdb\xdc\xc9\x07\x9d\xe1\x4e\xf3\xff\x6e\xe5\x73\x39\x48\x98\x04\xc0\x6a\x06\xae\x12\xab\xce\xf2\xb3\xf8\xe9\x9d\x87\x61\xcd\x94\xe1\x7f\x04\x8b\x21\x5a\x89\x65\xe6\xe7\x3b\x69\xee\x4a\x6c\xb4\xab\xf5\x15\xbb\xb7\x19\xaf\xb9\x02\xb4\x8c\xa8\x21\xfa\x89\x1f\xb3\x96\x06\xf2\xa2\x0c\x3a\xad\x9a\x49\xd2\x8a\xe8\x38\xc9\x57\x0f\xdb\x6f\x20\xed\xd5\x20\x6a\x3b\x95\xd2\x33\xa7\x0e\x2c\x8d\x69\xc0\x36\x36\x76\x09\x83\xce\xf0\xf1\x71\x9b\xc6\xf5\xb7\xb0\x1b\x20\x82\x37\x9c\x15\x51\x13\x27\xd6\x74\xaf\x41\xab\x29\x97\x72\x93\x70\x49\xa0\xed\x8e\xca\xeb\x6c\x13\x67\xac\x1a\xa4\xf1\x5b\x13\xad\x96\x5c\xe0\x86\x33\x60\x13\x48\x7f\x8b\xb6\x5a\xbc\x66\xb0\x54\xeb\x00\x4c\x62\xca\xed\x8e\x49\x0a\xaf\x77\xab\x1c\xb4\x86\x39\xbe\x62\xec\x0c\xc6\x6e\x1d\xbe\x90\x24\x59\xb5\x10\xb7\xe8\x11\xa4\x13\x1e\x48\x86\x47\x33\x4b\xea\x13\x08\xad\xf5\x47\x1d\xb2\x49\xc5\xee\x10\xc8\x11\xd1\x15\x98\x49\xea\xd7\xcb\x49\xfc\x0e\x95\x01\xc8\x2f\x51\x24\x9b\xf1\x21\x0a\x53\x1e\xeb\x04\x9b\xd5\xdc\xc8\x57\x28\x96\x43\x79\x8a\x62\xd9\x96\x3f\xa2\x68\x62\xe6\x0b\x14\xe6\x6f\xfe\x82\x22\x49\x9e\x0f\x50\x2c\x1b\xf4\x19\xaa\x66\x8d\x8e\x49\x0c\xe8\x18\xd6\xeb\x86\x88\x0c\x24\xfb\x2a\x2c\xbc\x93\x42\x54\x04\x2c\x96\x61\x44\xe9\xb8\x97\x21\x59\xad\xc7\x90\x92\x6d\xf6\xaa\xfe\x2c\x05\x16\x7d\xb0\x96\x75\xe9\x7c\xc4\xd2\x1e\x33\x00\x90\x3f\x3e\x26\x39\xfe\xdf\xe7\xa7\x27\x8a\xf6\x4f\x68\x9a\x22\x89\xe6\x4e\x12\x82\x54\x27\x4a\x6c\x9f\x23\xc3\x00\xf6\x8a\x65\xba\x84\xc0\xa7\x2a\x3d\x76\xa8\xab\x92\xa8\x96\x56\x68\x75\x94\x63\x9d\x36\xf5\x97\xfd\x3e\xdd\xdd\xef\x75\x52\x94\xe1\xfd\xd7\xd9\x1b\x0a\xc2\xe0\x7c\x90\xed\xee\x0f\x1d\x2a\x3e\x53\xd9\x54\x21\xff\x58\xa3\xc6\xee\xb7\xa9\x53\xbd\x6e\xa9\x2d\xd9\xfa\x48\x44\x36\xce\x44\xb6\x35\x81\x2c\x7f\x2a\xe3\x82\x93\xd1\xdb\x93\xec\xb8\x79\xbf\x63\xae\x40\xa4\x51\x92\x26\x09\xdb\xc1\xa7\x60\x0e\xd4\xfe\x42\xee\x8b\x44\xa4\xed\x9b\x6c\x1e\xf1\xec\x6f\x6e\x35\x77\xc8\x4e\x13\x37\x77\x94\xef\xdf\x80\x0c\x97\x69\xfb\x3f\x73\xca\x92\x66\x33\x4d\x51\x33\x69\xee\xb0\x9d\x66\xda\x94\xfd\x07\x89\xc8\xbf\xa2\x68\xc2\xf2\xdd\x6e\x90\x9e\xdd\xe4\x43\xf7\xd2\xb2\xaf\xca\xc1\x3e\x0c\x1c\xc8\xbc\x64\xe9\x06\xc8\x31\x69\x97\xa9\xc6\xcf\x16\x4c\xd0\x1b\x27\xf7\xf8\xdf\x38\x15\xe4\x94\xcd\xee\xcb\x57\xbf\x91\x6c\x6e\xd3\x8a\x1b\xdf\x32\x79\xea\xca\xdf\xba\x19\xf7\x95\x6d\xc8\x7b\x79\x78\x7c\x7c\xf9\xef\x27\xa7\x7f\x3b\xb9\x74\x54\x09\x97\x9f\x4e\xcf\x8f\x2e\x8e\x4e\x4f\xdc\xf4\xce\x0c\x3f\x2c\x11\x37\x9b\x31\xe1\x84\xfc\x49\x20\xa2\x34\xad\x91\xb3\xd8\x94\x2f\x12\x8d\x16\x78\xa0\x63\x28\x80\xb1\x44\x81\x07\x5c\x3f\x0b\x15\x92\xc8\x7c\x56\xd2\x9c\xf2\x59\x4b\x08\xc7\xf6\x85\x32\x8f\xaa\x0b\x34\x1e\xb1\x14\x74\x8c\x09\xf4\x58\xac\xa5\x37\x29\xed\xf7\x7e\xd9\xed\xf6\x35\x0b\x6f\x4a\x81\x20\x99\xa4\x61\xa2\x63\xc7\x16\x24\x6a\xf5\x29\x0f\xb1\xb6\x14\xb1\x9e\x3a\x75\x16\x86\xd6\xb4\xd0\xa8\xa5\x5d\xad\x55\xb9\x5c\x95\x14\x26\x59\xa5\x77\x3a\x49\xc0\x77\xc8\x74\x69\x35\x65\xce\xf4\xd5\xd2\xaf\x99\xbd\x2e\x54\x33\xf9\xeb\x95\xb9\x52\xf4\xe6\xd5\xf7\x90\x78\x7b\xaa\x43\xa4\xa5\xde\xce\x97\x3d\x57\xc2\x44\x95\x96\x46\x91\x01\x00\x2a\x55\xcb\x48\x27\x60\xa5\xc3\xe2\x9b\xee\xc4\x2a\x07\x1b\xc8\xc8\xa6\x8b\xca\xbc\x15\xd4\xd5\xcd\x5b\xc3\xe4\x9a\x95\x35\xa5\x6a\x96\x56\xe4\x9f\xf2\x3c\x22\x19\x7b\xd0\x43\xf3\xc6\x89\xd4\x36\xb9\x5b\xa6\x05\xa1\xfa\x9d\x7e\x40\xba\x53\x6f\x04\x46\x52\x9a\xaf\x95\x90\xda\xd4\x4f\x04\x79\x87\x59\xd8\x71\xb8\x67\x5a\x98\x91\x78\x27\x59\xd8\xb1\xf8\x07\xda\xdb\x74\x0f\xa9\x97\x02\x6a\xe3\xc8\x65\x0e\xbd\xb0\x53\x88\x4b\x9b\xcf\x57\x1b\x0a\xeb\x41\xcb\xbb\x21\x0c\x0e\x76\x52\xdd\x60\xb7\xa6\xee\x36\x56\xf3\x7c\x35\x3e\x30\x29\xfc\xa7\x44\x58\xfb\x31\xea\x20\x09\x1e\x41\x12\xdc\x37\x43\xe6\x03\x31\x44\xd4\xe2\x0a\xdb\xa7\x63\x7f\x4c\xab\xe9\xc4\x2a\x03\xaa\xa0\x95\xea\x74\x8c\x3f\x7c\xcd\x29\x37\x73\x31\x7b\x38\x20\xd6\x4e\x91\x63\x08\x79\x93\xf8\x98\x60\x40\x86\x91\x3a\x41\x6a\x28\xfd\x03\xac\xee\x79\x75\x79\xeb\x8e\xbd\xee\xd8\x21\xa1\x82\x3d\x36\x29\x18\xb2\xb8\xe6\x86\x27\x8e\xde\x06\x84\xb2\x4f\xd0\xc3\x94\x31\x29\xf2\xf2\x90\x70\x44\x5b\xad\x24\xb7\xa7\x84\xda\x53\x92\x9b\x23\x42\xcd\x11\xc9\xed\xf9\xa0\xf6\x7c\xe4\xe5\xe1\xc8\x37\x38\x19\xb9\x3d\x16\xd4\xfc\x4a\x51\x5e\x6a\x86\x84\xa3\x19\xe2\x10\x68\xf5\x9b\x41\x9e\x7f\xf3\x31\x8b\xd6\xfc\xaf\x3f\x2c\xfc\x1b\x0f\x0b\xff\x6f\x76\x58\xc2\xe5\xfd\x9e\xc3\xc2\x97\x09\x4d\x51\x11\x3f\x2d\x56\xc2\xb3\xe9\x51\x89\xab\xb8\xcb\x3c\x69\xa0\x5a\x07\x3a\x8f\x79\x57\xbb\x7a\x15\x87\x62\x26\xa1\x98\x6d\x4e\x13\xa8\x39\xba\x8d\xaf\x23\xfd\xbc\xb2\xce\x45\xcd\x9e\xb6\xce\xd5\xc6\x00\x7a\x82\x56\xaa\x06\x0c\x6e\x75\xb5\x40\x03\xb2\xdb\x0d\x6a\xae\x36\x5e\x50\xd5\xcc\xd8\x97\x88\x2d\x93\x2c\x45\x8b\xba\xab\x5e\x5f\xf4\xd7\xc0\x53\x68\x9b\x89\xc9\xa4\x20\x02\x77\xdc\x3d\xa8\x49\xd2\x4f\xff\xac\xcd\xce\xdf\xdd\x49\x92\x97\x2f\x5e\xb5\x6c\xf3\x72\xc6\x57\xf7\xd9\x78\xac\xfd\x91\x54\x37\x69\xfa\xcb\x2f\xaf\x52\x1b\x9c\x88\x16\x5a\xf9\x5e\xdb\x6c\x67\xef\xd9\xda\x36\x6d\x73\x72\xbd\xea\x5a\xda\x7b\xfe\x7c\xf3\x86\xf2\x79\x77\xa5\xa9\x52\x7d\x1b\x3b\x5d\xb7\x95\xbd\x6f\x6d\x65\xcf\x6d\x65\xff\x5b\x5b\xd9\x4f\x6d\x1c\xa7\x86\x85\x82\x99\x1f\x5e\xe5\x91\xbc\x79\xb3\xb7\x54\xf1\x08\xba\x9d\x67\xaf\x9e\xbf\x7c\x81\x26\xf5\xe0\x63\x31\xb7\x36\x34\x29\x13\x4c\x96\x4c\x9c\x81\x28\x97\x30\x34\x4f\xa3\x6c\x9e\x8d\xa8\xb8\xc7\x23\x04\x61\x23\x88\x4e\xb9\x02\xe2\x19\x60\x0e\xc1\x08\x53\x3b\x60\x94\xc0\x2a\x2f\x85\xcf\x94\x89\xfd\x3d\xeb\x5b\x50\xf2\x93\x26\x55\xa9\xee\xb8\x5c\x16\x2d\x13\x71\xc7\xc1\x83\x71\x74\x8c\x47\x72\xb4\x9b\x91\xd7\xcd\x60\x18\xcd\x80\x3a\x0f\xf3\x1c\x29\x7c\x40\xff\x24\xef\xae\x49\x69\xca\x2c\x3b\x18\xb8\xdb\xb3\x33\xc4\x24\x60\x7a\x4c\x9d\x8a\x4e\xb7\x21\xd9\x3d\x6f\xe4\xad\x56\x42\xf0\x4d\x39\x76\xd4\x71\x17\x21\x5d\xb1\x76\x86\x6b\xdc\x19\x39\xa5\xda\x05\x11\x90\x65\x29\xdc\xa7\xe0\xc5\xee\x6e\x85\x66\x53\x90\x57\x8b\xa2\x60\xde\x21\xe9\x59\x44\xaa\x59\x3e\x44\xd7\x08\x93\x84\xa9\x74\xa8\x15\x6b\x34\xa1\x9c\x26\x81\x93\x2b\x17\x00\x75\x90\x76\xca\x27\xee\xb5\xeb\x71\xdb\xea\xd5\x0e\xde\x47\xc1\x3e\xb8\x59\x51\x63\x03\x84\x2e\x07\x64\xa7\x3b\xc4\xb3\x44\xa0\x30\x50\x5c\x11\x24\xc3\xf5\x10\x36\x8c\xae\xb2\x86\x2b\x57\x50\x77\x57\x65\x46\x22\xfc\x79\xb8\x24\x04\xcd\x92\x0e\xda\x4f\xcd\x6a\x88\x0d\x56\x43\x54\xa7\x93\x4f\xaa\x13\xaa\x88\x4a\x46\xf9\x9c\x84\x85\xe3\x53\xd9\xe9\x0e\x7f\xf9\x65\x2f\x58\x74\x4e\x6a\x6f\xf5\xb2\x5a\x23\xdc\x00\x7f\x7b\xcc\xf1\x7c\x14\x6f\xde\xec\x77\x96\x89\x40\x95\x94\x33\x7e\x5e\xdc\x95\x07\xd7\x5d\x31\x73\x68\x1b\xce\x61\x1e\xe2\xbd\xee\xb3\x97\xcf\x5e\xed\xbf\x78\xa6\x1d\x0e\x5c\x84\xa8\x36\x60\x20\x90\x62\x4e\xdc\x31\x64\x62\xe4\x0e\xa2\x6a\xd4\x61\xb4\x29\xb8\xd2\x2a\xd0\xc2\x04\x77\x5e\x93\x32\xca\x16\x01\x5a\x38\x11\x98\x4a\xda\x4e\xc5\x47\x03\x9d\x91\xa6\x4c\xcc\xe5\xc0\x10\x4f\x2a\x99\x89\xb3\xb9\x58\xf0\x1f\x67\x45\xe2\x2c\x96\xbe\x23\xc2\xc9\xda\x75\xf5\xb1\x17\x49\xf5\x5d\x60\x64\xef\xc6\xd4\xab\x04\x4e\x04\xfb\xde\x2b\x41\x00\xa9\x1a\xa5\x39\xd8\x75\xad\x78\xf2\xbb\x4d\x63\xe8\xf7\x99\xc6\x4c\x4c\x00\x1f\x2b\x8f\x75\x50\xb4\x56\xda\x5c\xe6\x4a\x46\x2c\xcb\x2f\xca\xc5\x89\xde\x3a\x79\x28\x52\xf7\x0f\x9a\x6e\xca\xdc\x89\xc4\xeb\x40\x2f\xd6\x7c\x03\x9b\xb9\xef\x1a\xed\xf5\xfd\xd8\x0f\x6e\xef\xa9\xdf\x60\x55\x5c\x01\x1d\x24\x17\x94\x7f\xf3\x84\x23\x96\xaa\xb4\x8a\x3f\x76\xca\xe3\x7a\x7e\xc7\xa1\x7f\xbf\xdf\xa4\xb7\xca\xc7\x2c\x93\x6b\x87\x0a\xbb\x31\x6a\x1c\x3a\x49\x2c\x00\x69\x6d\x67\x6a\xd7\x4f\xe9\x11\xc1\x13\x59\x9e\xfa\x32\x07\xa3\x7b\x9d\xb3\xf4\xb5\x78\xc3\x54\xbe\x4a\x89\x92\xc8\x40\x94\xac\xe7\x72\xbd\xd4\xbf\x83\xa2\xea\x02\x8a\x22\x8a\x85\x1c\xb9\x9a\x87\x0c\x85\x7a\x09\xb9\x34\xa0\xb0\x98\xa0\x88\x32\xe3\x1a\x55\x54\x1e\x73\x54\xea\x43\xc6\x56\x13\x88\x17\x81\x2e\x86\x1b\x23\x94\x6f\xd5\xc6\xc8\xa5\x0e\xf4\x31\xb4\xd0\xd9\xb2\xc7\x98\xb4\xad\x95\xcb\xbb\x6c\x74\x4d\xb0\x24\x36\xe6\x98\xb4\xe1\x69\x5c\x3a\x5e\x93\xf6\xe7\xf9\x38\x03\xd4\x73\x91\x4d\x6d\x01\xf5\x7b\x94\xdf\x5c\x51\x46\xca\x5f\x4a\x1b\x66\x1f\x2f\xb2\xe9\x14\x3a\x7b\x4f\xb9\xb8\x2f\xdb\xb8\x5a\xdc\xc8\xbe\x68\x01\xeb\xa8\xde\xe9\x07\xd9\xc3\xe7\xb3\xb3\xc3\x93\x8b\xcb\x8b\x83\x5f\x31\x69\xff\x7e\x7a\x7c\x70\x71\x74\x7c\xa8\x1f\xdf\x9d\x9e\x9c\x5f\x1c\xd8\xaf\x17\xd9\x54\x29\xbb\x38\x4c\xe9\x96\x16\x34\x67\xaa\x41\x53\x11\x93\xb6\xf6\xa5\x72\xaa\xcb\x97\xda\x62\xe7\xfc\x9e\x8d\xae\x79\xce\xe8\x9f\xba\x11\x3d\x75\x9b\x58\xc3\x14\xa5\x39\x3b\xe0\x82\x4e\xb2\x11\xe8\x96\x8e\x69\x21\x8e\x04\xb9\x31\xaa\xa9\x72\xcd\x1c\xad\x12\xc7\xdd\x15\x0a\xa4\x18\x96\x03\x6f\xfe\x1a\x67\x14\x38\xde\xb7\xd9\x6c\x41\x92\x14\x63\xac\x8f\x78\x83\xb6\xe9\x18\x1b\x95\x3c\x84\x2e\x1f\x0c\x51\xb1\x16\xd5\xc9\xee\x0c\xce\xa0\x8c\x11\x1e\x37\x72\x86\xfe\xaa\xb4\x50\xd2\x41\xf9\xc0\xb6\x33\x54\x78\x42\xb5\x13\x20\xb1\x15\x33\x4a\x3a\x28\xab\x69\x44\x85\x92\xf6\x18\xb9\x45\x49\x23\x19\x63\x9b\x86\x0e\xc7\x1e\x59\x2c\x62\x56\x6a\x69\x22\xca\xc4\x33\x51\x97\x03\x4c\x84\x32\xf9\xa0\x63\x2c\x96\x61\xc3\xb6\x7c\x67\x4d\x7b\xc0\xb7\x2c\x4d\x0c\x56\xb0\x8b\x4f\x94\xbd\x43\x5a\x19\xad\xad\x74\x92\x9d\xac\x69\xf6\x24\x3b\x71\x1a\x1e\xe9\x86\xbb\xeb\x1a\xbe\x5e\xd3\xac\xc0\x18\x5f\xeb\x46\x27\xba\xd1\x3d\x6d\x98\x71\x8d\x39\xbc\x9f\xaf\x13\x99\x7d\x23\x8d\x71\x8d\xf8\x77\x08\xa6\x79\x9b\xeb\xf3\x8e\x19\xe2\x2b\x05\x6a\x4a\xba\xf3\xc3\x08\xbe\x6b\xf7\xfe\x2e\x34\xcc\x8e\xc1\xba\x81\x29\x5f\x1c\xb6\xfe\xfc\x6c\x69\xb9\xa7\x9a\x82\x5f\x65\x4c\x3d\x3f\x5f\xab\xac\xd2\xd3\xdd\xd9\xb9\x06\xb9\x17\x75\xce\xc6\xd8\x49\xa2\x4b\xfc\xe4\xb9\x1d\x93\x96\x76\xd6\xf0\x93\xe9\x92\x41\x67\x18\x64\xcd\xbd\xd7\x6b\xa5\xec\x93\x20\xfe\x6b\x98\xdc\xf6\xd6\x16\x49\x97\xcb\x45\x32\x57\xb0\x73\xf3\x4f\x12\xab\xce\xb2\x42\x00\xaf\x42\xc6\xca\x45\x41\xbd\xfa\x1d\x16\x59\xbd\xd8\x50\xb6\x5a\xd9\x17\x87\x75\x76\x7a\x69\xd8\x17\xd0\x87\x35\xf7\xde\xc6\xf8\xda\xb8\x50\xba\x83\xba\x46\x7e\x85\xd2\xf1\x71\x21\x48\x92\xa6\xc1\x67\x7f\xe3\x29\xab\x22\x4b\x9b\x3a\xcb\x9f\xb8\x86\x00\x74\x5f\xb7\xf0\xcc\x0b\x57\xfe\x8d\x87\x8c\xb6\x27\x94\x17\x02\x33\x44\xdb\x05\x19\xe5\x6c\x8c\xb9\x1b\xc9\x77\x83\xc3\x16\x66\xfd\xaf\x1c\x18\xf0\xf7\xf1\x96\x41\xaf\x56\xe4\xd0\xa8\x88\x50\x99\xf6\x39\x80\xb1\x19\x34\x6f\x58\x3f\x39\x48\xf3\x4e\xc9\x87\x6f\xd2\xc6\x22\xb9\x57\x70\x7a\x5b\xbb\x5c\x26\x7c\xc2\xf7\x60\x24\x91\x4d\x8b\x27\x63\x23\xb2\x7a\x79\x36\x58\x1c\xcb\x40\x1b\xd9\x01\x78\x76\xef\x76\x1d\xce\x99\xb9\x9c\xb3\xc0\x6c\x40\x86\x76\xe1\x38\x2e\x97\x15\xf1\x72\x3a\xe5\xe2\xdd\xaa\xc5\x9b\xae\x59\xbc\xef\x83\x34\x91\x4d\x01\xce\x24\xa4\x03\xd1\x49\xbe\x01\xd8\xbe\x7b\x2d\xa3\x80\xe6\x0c\xc9\x88\x47\xa7\x2e\x8c\x39\x4d\x2e\xe6\x15\x5a\x47\xe2\x0a\x53\xcb\xa0\x0c\x39\x59\x82\xc2\xc6\x0d\xf6\x28\xf1\x80\x07\xc3\x53\xb5\x0d\x57\xe8\x72\xb5\x4d\x92\x6c\xf1\xcc\x5e\x8e\xd6\x91\xcb\x47\x94\x1b\xd1\x7a\xae\x2f\x5b\x36\x45\x02\x57\xda\x37\x40\x57\xc1\x90\x3a\x3c\x90\x68\xb5\x3c\x0a\xeb\xf1\x31\x09\x6b\x04\x28\x12\x55\xe7\x60\x69\x39\xc9\x56\x86\x09\x46\x56\x61\x4c\x6f\x15\x34\x47\x7c\xf7\x17\x63\x4c\x80\x63\x58\x2e\xda\xb6\x6c\x1c\x40\xf6\x8d\xe2\x54\xd6\x01\xf5\xfa\xb3\x6e\x94\xa6\xba\xf1\xd2\xd9\x12\xde\xab\x6e\xd2\x84\xf8\x68\xf0\x32\x45\x87\x6b\xd4\x64\xc1\x55\xba\x0a\x98\xc0\x20\x35\x9b\xd1\x3f\xc9\x18\x6f\x77\x51\x09\xd4\x0a\x50\xbc\xf1\x61\x12\xd5\x22\x10\xf2\xa5\x8e\x2e\x72\x5a\xef\xfb\x23\xeb\x05\xdf\xc3\x34\x42\x9c\xc4\x00\x82\x4e\x92\xed\xb0\xe1\x34\xde\x61\xe2\x09\xd1\xed\x1c\x6a\x60\x1f\xa6\x0b\x71\xb1\x5c\x20\x37\x4d\x7f\x6d\x44\x96\xd0\xec\x4a\xc3\x09\xd7\x63\xa7\x07\xc6\xba\xa6\x80\x01\x29\x8c\x31\xef\x7f\xed\x25\xc1\x1e\xd1\x8a\xbc\xa8\x9c\xc5\x3a\x90\x71\xa7\xa3\x5a\xab\x74\x1b\x3b\x86\x0e\xde\x8b\x80\x41\x07\x04\xe9\xf2\x8c\x7d\xc5\xcd\x6c\x7c\xb5\x7f\xf5\xf2\x15\xd9\xdd\x1f\xef\xed\xed\x3e\x23\xcf\xae\x76\x5f\xbd\x7c\x99\xed\xbe\xd8\xef\xbe\x1c\xed\x8d\x9e\x8f\xba\xcf\x9e\x37\xd1\xf9\x1a\x88\x54\x8c\x29\x29\xe1\x6b\x33\xbc\xe5\x6f\x2d\x23\x5c\x8f\xeb\xf4\x2f\x38\xfb\x48\xef\xa8\x15\x00\x7c\xc8\x79\xc2\x53\x17\x25\x70\x22\x32\xca\xd4\x49\x91\x84\x14\x61\xea\xd7\x17\x72\x8f\xb9\xfc\x8b\xa8\xf2\xe1\x51\xba\x3d\xda\xbe\x21\x37\x39\x66\xf0\x2f\x68\x76\x63\xdc\x11\xb9\x88\x34\x08\x98\xb1\x68\x74\x61\x3a\xd6\x35\x7e\xf7\xe6\x92\x94\x32\x07\x9b\xcf\x2d\xa8\xf0\xd1\x1d\xa4\x2a\x2f\xc7\x0d\x0c\xbc\x67\xcc\x70\x9d\x2f\x66\xe3\x33\x72\x93\xdf\x46\xf6\x6a\xdb\x1b\x9c\x5f\x93\x93\x82\x54\x83\x32\xb8\x8b\xaa\x69\x3f\x58\x57\x40\x76\x0c\xe4\x33\x27\xf9\x98\xa4\xe8\x60\x1d\x8c\x19\x49\x4f\x89\xdd\x6e\xb2\xb9\x4a\xf2\x33\xa6\x23\x91\xda\x3b\x89\x16\xca\xe7\x55\xb6\xce\xbe\x90\xb1\xec\x23\x8a\xfa\xec\x66\x46\x31\x1f\x2d\x20\x0d\x55\x44\xa8\xe2\x8f\xc7\x5f\x6d\xe3\xe4\x95\xa6\xa6\x81\x10\xf7\x55\x52\xab\x9a\xb3\xaf\x25\x52\x66\x28\x58\x67\x80\xf1\x7a\xeb\xd7\xf4\xd6\xf3\x4a\xa1\xc8\x8a\x91\x4a\x66\xd1\x08\x41\xb6\xbd\x6d\x16\x36\xa6\xd7\xab\x95\x76\xc5\xca\xdf\x65\xc5\xb9\xdc\xea\x1a\xd5\x99\xaa\x62\x26\x6b\xf9\x79\xd1\x6a\x09\x00\x91\xc0\xd4\x78\x55\xce\x39\xd9\x96\x25\x70\xe4\x5e\x07\x7b\x82\x28\x16\x03\x22\x0f\xf0\x10\xe0\xe2\x14\x0c\xd1\x4a\x6e\x55\x35\x0e\x09\x9b\x42\x44\x5d\x10\x2e\xde\x92\x49\xce\xe3\x4e\x02\xb6\x77\xee\xf4\x4e\x83\xde\x73\x49\xc7\xbb\xbd\x53\xa7\xf7\xdc\x3b\xe9\xdc\xeb\x32\xc9\x91\x48\x51\x1e\x68\x9b\xbd\x73\x19\x8e\x45\x0e\xa0\x41\xbc\x36\x59\x9b\xc3\x61\x06\x63\x64\xbf\xfd\x6a\xda\x53\x1e\x9c\x7b\x4b\x72\xd0\x42\x38\xed\x8c\xc9\x8c\x08\xe2\xec\x3d\x4c\x2f\x30\x56\x26\x5f\xe1\x64\xd7\x02\x0d\xb4\x69\x4a\x25\x95\xcc\xb7\x24\x1b\xd7\x06\x0d\x90\x35\x65\x81\xc4\x58\x57\x7e\x79\x0a\xf2\xd0\x6a\x3e\x30\xe8\xb3\x91\xfc\x32\x2b\x34\x8e\xca\x57\x99\x17\x46\xd1\xbb\xad\x6d\x4d\x24\x70\x2d\x6a\x10\x39\x7f\x7c\xf4\xb0\x03\x83\x24\x86\x2e\x1d\x0e\x31\x43\xe4\x8f\x9e\x01\x78\x88\x93\x22\x27\xf8\xda\x93\x9d\x92\x01\x69\xeb\xd0\xd3\x9d\x21\x6e\xaa\x9f\x4d\x24\x5f\x7f\xe2\x0b\x46\x70\x77\x88\x9b\xf0\x4b\xbd\x7c\x9f\x33\x82\xf7\x86\xb8\x29\x7f\x34\x97\x69\x72\xf5\xf8\x98\x5c\xe1\x87\xa5\x8e\xfd\xf4\x71\x8d\x61\x0d\xe0\x4c\x3e\x25\x42\x87\x24\xd3\xf3\x35\x3a\x6f\xf9\xc5\x28\xdf\xca\x65\x64\x21\x12\x2a\x27\xaf\x4d\x37\x54\x4e\x37\xcc\xcc\x56\xc6\x3c\x29\xee\x99\x67\x59\x61\xd4\x4d\x04\x5f\xe9\x15\x78\xfd\xda\xe4\x1f\xd0\x31\x86\xb7\xcc\x97\x9e\xde\x1f\xb9\xd0\x3a\xa4\xb6\x1b\x26\x78\xeb\x4a\x2d\x96\x5b\x0c\x5e\x84\xa5\xe4\xa2\xf5\x5c\x3c\x65\x8b\xcb\x2f\x49\xba\x0c\x50\xd5\xf8\x36\x63\x23\x72\x91\xff\x3b\x09\xa4\x3e\x7a\xec\x26\xa6\xa4\x9a\xbe\x41\x5c\x25\x14\x71\x2c\x5e\x6b\xb6\x8c\xb7\x5a\x40\x78\x6c\x63\x4c\x5e\xa7\x5c\xdf\x9d\x1d\x24\x57\xd3\x9e\x9c\x32\x59\x1b\x37\x7c\x6b\xb9\xb4\x4e\xa9\xb4\x7a\x3e\xc3\xf8\xe5\x1e\x5c\x97\x97\xc9\xda\x01\x13\x03\xcd\x65\xde\x32\x9e\xfa\xc6\xb8\x19\xb7\xab\xab\x08\x38\x98\x58\x95\x0d\x05\x17\x2b\x8c\x31\xed\xdb\x65\x3e\x03\x6c\x96\xf0\xb4\x07\xf1\x49\x12\x9a\x96\xdf\x3e\x4a\x8c\xc4\xf5\xf5\x27\x5f\x1c\x01\x82\x93\x24\x98\x81\x83\xea\xb4\x55\x83\x75\xb7\x49\x39\x31\xe6\x4d\xfc\x75\xc2\x30\x4b\x35\x39\x55\x06\x60\xd5\x4b\xed\xa0\x32\x66\xad\xb3\xe4\xc9\xd0\xc8\x38\x01\x1c\x69\xa8\x50\xa4\xa8\xc6\xc8\x96\x7c\x0c\xf1\xef\x86\x20\x53\x76\x08\xcc\x89\xec\x4b\xd2\xa6\x53\x22\x54\xcf\x69\x23\x77\x86\xce\xcc\xf5\xac\x3f\xf6\x13\x06\x37\x8b\xba\x72\xb8\xfe\xad\x5a\xd1\x23\xce\x15\xbd\x28\xfa\xb0\x43\x3d\xe5\x69\xaa\x5d\x3f\x1c\x90\x4f\x42\x6e\xa7\xdc\x94\x8d\x17\x5c\xcf\x83\xfb\xb3\xa6\x58\x84\xd7\x97\x04\x7d\xfd\x2e\xa1\x9a\x42\x57\xa3\x55\xc4\x39\xe4\x73\xb4\xa3\x0d\x3d\xa8\x0c\x48\xd6\x5d\x33\x76\x6b\xbd\x41\x6a\x6c\x85\x34\xfa\xa8\x4e\xb6\xd2\x66\xcd\x5d\xe1\x4e\xd5\x87\x34\xe7\x18\x31\x73\x8c\x14\x1e\xd2\xdc\x28\x6b\xc4\xc6\x49\xdc\xd3\x8e\xb8\x47\xca\x27\x69\x3f\x31\xd7\xbb\xfc\x2a\xda\xea\x0e\x4f\x60\x7d\xd2\xb4\xc7\x15\xfd\xbe\x6a\x62\x70\x8d\x54\xcd\xdc\x00\xc8\xc7\x0a\x15\x9a\x18\x31\x81\xae\xf5\x1c\x39\x9a\xd8\x53\x14\xd5\xd5\x1e\xa0\x98\x5a\xf7\x0b\xaa\xd1\x01\x7f\x44\x8e\x9e\xb8\x83\x4a\xf5\x31\x47\x8e\x56\xf9\x24\x3b\x41\xbe\xca\x99\x22\x4f\x1f\x5d\xa0\x40\x5b\x3d\x43\x81\x36\x7b\x84\x7c\x65\xf7\x04\x95\x6a\xf0\xa8\x42\x53\x32\x19\x18\xcf\x96\xc8\xd3\x9d\xc7\x8a\x9a\x62\x57\x5e\xae\xf2\xf4\xe1\x7a\x67\x47\xbe\xf6\xf4\xf1\x73\x14\x2a\xec\x2b\xa7\x49\x9b\x66\x95\xb9\x04\xe0\xba\x36\x7e\x09\xda\x16\xe3\x81\x4e\x92\x84\x83\x35\x86\x1c\x69\x0a\xa9\x76\xf4\x80\x46\x0d\xbe\x8d\xf1\xac\xd5\x52\x0e\xfc\x09\xb7\x77\xf2\x58\x1f\x6b\xcf\x82\x20\x7a\xb9\x21\x86\x07\x43\x65\x2c\x0b\xe7\xc4\x5e\x65\xaf\x55\xd7\x02\xf3\x48\xbf\x42\xf5\xcb\x8c\xe7\x9b\xbd\x53\x34\x34\x97\xe3\x60\xee\x38\xbe\x7f\x0d\x9e\x38\xff\xd2\xae\xe2\x06\x05\x46\x17\x53\x54\xb5\xcb\xb8\x44\xca\x62\xa3\x56\xcd\x72\x67\x69\xf0\xc0\xd2\xe3\x10\x79\x96\x20\x31\xe8\xd9\xc6\xf8\xeb\x32\x34\x48\x51\x66\x2c\x9b\x9b\xa3\xa0\xa8\x31\x4b\xf9\xf2\xf6\xc6\x7d\x9a\xe5\x77\xbb\x33\x72\x4b\xaa\x66\x2c\x26\xef\x4d\x60\xcc\x72\x9d\x15\xef\x4c\xa4\xfa\x7b\x4c\xca\xb0\xf5\xf7\x1f\x66\xd9\xb4\xf8\xc0\x73\xb0\xcc\x58\xf0\x02\x4c\x38\xde\xe5\x6c\xc4\x89\x20\x6f\xf3\x05\x1b\x83\x0b\x31\xd1\xb6\x5a\xc6\x4b\x5a\xe2\x30\xf5\x8a\xe6\xac\x7c\xa9\x7c\xe4\xcb\xe7\x13\x72\xa7\xc3\x5d\x94\xef\x58\xce\x6f\x40\x06\x66\x63\x34\x1b\x0e\xef\xb7\x8b\x8f\xc7\x9a\xcb\x93\xab\xfe\xb7\x6b\x2a\x48\x31\xcf\xc0\x48\xe6\xfd\xe9\xc7\x0b\x4e\x4a\x09\x93\x92\xb0\x1d\xbd\x3f\xfd\xf8\xee\x3a\x63\x53\x22\x47\x79\xfe\xfb\xaf\x97\x27\x07\x1f\x0f\xcf\x3f\x1d\xbc\x3b\x54\x75\xca\x8f\x90\x9b\x51\x99\xce\x04\x89\xc9\x9d\x80\x01\xb0\x06\xf5\x1f\x3f\x1e\x9d\x1c\x7d\x3c\x38\xbe\x7c\x77\xf0\xe9\xe0\xed\xd1\xf1\xd1\xc5\xd1\xe1\xb9\xec\xe7\xf0\xc3\xc1\xe7\xe3\x8b\xca\x6b\xa5\x0a\x3e\x64\xb7\x94\xe7\xec\x46\x5d\x0d\xfe\x93\x0a\xdd\x4c\x6c\xe8\xd6\x5f\xa1\x5e\x19\xb4\x9c\x5e\x2d\x84\xfc\x7e\x4e\x6f\xe6\x33\x12\xf9\xa0\x52\x36\x9d\x91\x62\x31\x13\xc6\xfc\x88\xb2\xe9\xef\x1f\x31\x69\x1f\xe7\x77\xc7\x12\x48\xe0\x61\x4a\x84\xae\xfe\x7b\xa6\xb6\xaf\x20\xe2\xbd\x0e\x7e\xff\x4e\x67\xab\xc7\x60\x79\x1d\x79\xfb\x2e\x67\x63\x58\x84\x6c\xe6\x5a\x3b\x45\x72\x4f\x90\xf6\xe7\x93\xf7\x87\x1f\x8e\x4e\x0e\xdf\x5f\x9e\x1d\x7e\x38\x3c\x3b\x3c\x81\xbd\x38\xf9\x7c\x7c\xec\xbd\xe0\x30\xf2\x8f\x92\x00\x74\x4c\x80\x20\x36\x62\xb2\x52\x5f\x43\x24\x65\x91\x09\xa2\x6d\xc1\x40\xf0\x34\xa1\xb3\xd9\xc9\x62\x36\x2b\xd2\xe4\xe7\x57\xa9\x36\x8c\x8b\x72\x32\xd9\x38\xcc\x13\x54\x63\x95\xb1\x17\xb5\x6e\xd8\x73\xad\x1b\xf6\x86\xbd\x66\x71\x5f\x8c\xb2\xd9\xac\xd9\x88\x8c\x6d\x40\x86\xf8\x41\x17\x28\x4b\x4a\x6a\x02\x99\x82\xca\x34\x35\xcc\x47\x10\x8a\x3a\x4a\xef\xdf\x79\x4f\xc7\xa4\x28\x84\xac\xad\x1e\x62\x4d\x1c\x4c\x44\x25\x82\x39\xe2\xe9\x03\x64\xf7\x53\xa1\x4b\x02\xd2\xc2\x0c\xa9\x12\x4a\xc2\x91\xbc\x07\xf3\x63\xc3\x06\x6f\xeb\x79\xf5\xb9\xfd\x0a\xeb\xda\x73\x9f\xb5\x95\x92\x61\xa3\xff\x79\x8e\x65\x20\x2f\xd0\xa6\x0f\x73\x4e\x6e\x37\xb0\x7a\x58\xba\xe0\xa7\x63\x6a\x1a\xb1\xfd\xaf\x0b\x3a\x56\x7d\xa7\x4b\xcf\x8f\xaa\xa2\xe1\x7d\x92\xb9\xa8\x23\x1d\x5f\x6d\x25\xba\x42\x85\xab\x40\x01\x63\x4c\xfa\x93\x9e\xa6\x5a\x49\xff\xba\xa7\xb2\x88\xf6\xe7\xbd\xed\x2e\xfc\x18\xf7\x4c\xf6\x1f\x1b\xcc\x86\xf4\xe5\x1d\x38\x82\x58\xcd\xe4\x6e\x6b\x96\x84\xc2\xe8\x29\x89\x05\x42\x9c\x80\xec\x98\x07\x44\x66\x8a\x66\xff\x2c\xeb\x16\x38\xa8\x25\xea\x79\x92\x41\x8b\x37\x25\x83\x05\x74\xdb\x4d\xd5\x32\x44\x41\xeb\x1b\x0e\xc0\x2a\x62\xfd\x5e\xd3\x56\xab\xe6\x0b\x56\x8b\x5a\x6a\x55\x8c\xa1\x51\x8a\x58\xda\x0b\x44\xba\x6e\xf6\x7b\xa5\x80\x5c\xa4\x68\xf4\x4f\x87\x2f\xe8\x76\xa2\x47\xae\x53\x68\xa3\x6b\xfd\xac\xec\xdc\xe6\xfa\x69\xbb\x93\xa2\xb1\xf9\xdd\x4d\xd1\xcd\x53\x75\x53\x40\xa1\x3f\x59\x3f\xa5\x82\xea\xb9\xab\x5a\xaa\x6d\xfd\x00\x0a\x6f\xbd\x00\x0a\x8e\x68\xdd\x18\x7b\xd7\x1b\x03\xfd\x08\xc5\xf6\x3c\xe3\x20\x7d\x53\x2a\x6e\x88\x9a\xe3\xf1\x0d\x29\xc4\xd7\xfa\x4e\xd5\x36\xf2\x62\x8c\x38\x16\x2c\xb0\x3e\x30\x04\xcf\x09\x04\x78\x00\xe3\x69\x0c\x9f\x1d\xd3\x16\x00\x65\x79\x67\xdd\x26\xa2\x7a\xce\x7e\xe9\xf4\x99\x0d\xa1\xd3\xb3\x46\x55\x3c\x24\xb6\x1d\x33\xbb\x5b\x27\x22\x8f\x79\xe9\xc4\xfc\x6a\x8b\x5c\x79\x63\xf7\x9b\xcd\xde\xb9\x4d\xd6\x96\x41\x80\xae\x6e\x2c\x4d\x3d\x16\xed\x7c\xde\x55\x19\xf1\x44\x06\x21\x9a\x88\x13\xa0\xdb\xf3\xc1\x4e\x58\x9a\x10\xc4\x21\x62\x5f\x2a\x79\xe1\x59\x9e\x8d\x41\x5d\xe7\xe7\xd5\x40\xb9\xb2\x79\x95\x9d\xbe\x58\xd3\x29\x77\xb4\x8b\x2a\x0b\x42\xc2\x64\xd3\x30\x18\xcb\xab\x98\xd6\x9e\x6d\x32\x05\x35\xbe\x86\x76\x8f\x4a\x52\x88\xce\x66\xda\x46\x4e\x6b\xcf\x37\x6f\x0d\x24\x4f\xee\x73\x1e\x3c\x67\x38\xef\x0f\x80\x53\xd0\xd9\x2d\xfd\xee\x4d\xc4\xc3\xac\xec\xfd\xe7\x75\x4b\x53\xee\x82\xeb\x64\xaf\x46\xa2\x9b\x2e\x03\x40\x7f\xcc\xe6\x49\x3a\xe0\xc3\x86\xbd\xb4\x68\xab\x95\x50\xac\xdd\xa9\x67\x13\x55\x3a\xe1\x69\x8a\xbc\xd5\xa5\xe5\x88\xf6\x3a\x2b\x47\x24\xff\xef\x35\x48\x90\x7f\x95\xa1\xed\x6d\x67\x4d\x5f\x7e\xc7\xa4\xfc\xcd\x73\x86\x68\x46\x6e\x7b\x79\xb5\x11\x28\x07\x2b\x65\xc2\xea\x35\x68\x3f\xe1\xba\xe5\xc1\xde\x10\xe2\x36\xa8\x87\xae\xfb\xd0\x19\x42\x42\x1e\x1d\x44\x07\x10\x75\xed\x83\xb3\xab\x2b\x47\xb6\xbd\x1d\x1f\x91\x0f\xef\xfd\x79\x6f\x5c\xb6\xd8\x75\x77\x25\x7d\xf0\xc1\xce\x5f\x35\xa3\xd2\x70\x4b\x30\x25\x7a\x2e\x53\x5c\x1a\xcb\x75\xaf\x4f\x16\xf4\x19\xc5\x15\x1a\x06\xba\x7e\xc8\x88\x54\xc7\xa0\xe4\xaf\xd9\x2f\x9d\xd7\x6c\x77\x37\xa5\x03\xb6\xdb\x1d\xae\xda\x51\x08\x7c\x9c\x50\xb9\x6e\xda\xb0\xaf\xf9\xee\xf3\xd9\xd9\xd1\xe1\xfb\xad\x77\xa7\x1f\x3f\x9d\x9e\x1c\x9e\x5c\x6c\x01\xcf\x03\x1e\x33\x5b\x03\x3a\xc6\x2f\x26\x9d\xce\x84\x5c\xfd\xbc\x9b\x75\xc8\x64\xf7\xd9\xf3\x67\x2f\x77\x7f\xfe\x99\x64\xbb\xd9\x68\x7f\xef\xd5\xe4\x55\x27\x1b\x91\x6c\xd8\x2c\x51\xe5\x95\x73\x41\x41\xd4\xce\x6d\x32\x98\x0e\x55\x12\xc2\x3a\xfb\xb5\xd2\x39\xc1\xbb\x5b\x33\x3e\x35\x61\xfe\x06\xd3\x21\xb6\xf9\xdd\xbc\x3b\x76\xc1\xee\x78\xe6\x9b\xaa\x4b\xf4\x06\x2e\xad\x9e\xd3\x7b\xc3\x91\x28\x59\x8f\xc3\xd7\x4a\x88\xa4\x7c\x0a\x53\x93\x1c\x47\x68\x2a\x9f\xb5\x5a\x09\x91\xd7\xa6\xe6\x18\x21\x69\x39\x61\xe3\x84\x39\x2f\x25\x34\xb0\xec\x86\x8c\xdb\x37\x84\x4f\x49\xc2\xd4\x53\x9a\xa2\xed\x2b\x79\x7a\x8c\x59\x65\x83\x62\xbe\x5c\xa2\x15\x71\x07\xd4\x40\x2b\x4e\xf0\xae\x06\x45\x31\x1f\xd8\x2e\x8f\x84\xb3\xbe\x70\x87\xa8\xc0\xac\x67\xb5\xfe\x72\x3f\xfa\x6c\xc7\x78\x8b\xf5\x58\xc4\x55\xfe\xce\xa1\xbe\x0f\x65\x79\xef\x1a\xb3\xc5\x0e\x5d\x3b\x4b\xa0\x25\xc9\xe3\xe3\xca\xfb\xb0\xac\xfb\xd5\xb9\x41\x75\x22\xcc\x92\x6a\xb7\x49\x05\x49\xab\x55\xb6\x87\xdd\xf6\x7e\xbb\xf8\x78\x5c\xb6\x76\xbe\x71\x6b\x15\x0e\xa1\xcd\xf2\x31\xb9\xb8\x9f\x93\xb2\xb5\x53\xa7\xb5\x30\x3c\x26\x01\xc0\x3d\x58\x61\x3f\xf4\x63\xa2\xed\x30\x70\x30\x84\x58\x39\x86\xea\xe6\x10\x4d\xb7\xb4\xfa\xca\x95\xeb\x4e\xd3\x84\x56\x15\xe4\xab\x68\xca\xb7\xd9\x54\x89\x40\x75\x79\x6b\xb7\x95\x7b\x76\x5b\x35\x21\x74\x2a\x14\x5a\x95\x7b\x5e\x6d\x4a\x26\xb2\x69\x43\x38\x56\x70\xa1\xf9\x58\xfa\xf8\x58\x7d\x89\x03\xfb\x6d\xa3\x48\xb2\x14\xdc\x7a\xf3\x5a\x47\xdf\x53\x1a\xa1\xd2\x49\x02\x66\xb7\xe6\x06\x50\xd7\xf2\xeb\x84\x61\x03\xd7\x72\xb3\xfb\xa4\x04\xef\x54\x69\x09\xd5\x10\xe5\x2e\xc0\x1f\xc7\x40\xd5\x31\x8e\x4c\x97\x40\x29\x16\x9e\x79\xc0\x3f\xd9\xbd\x72\x8d\xed\x33\xab\xb0\xbc\xb5\xfc\x03\xa0\x06\x6d\x65\x8c\x56\x68\xec\xbf\x97\xe9\xd1\xf4\x3d\xae\x72\x3a\x06\xfc\x23\x63\x93\xdb\xf4\xf8\x78\x08\x7f\x6d\x5e\xdd\xf2\x54\x3e\x3e\x56\x4f\xf6\x32\x11\x69\xbf\xdb\x4b\x08\x16\x69\xab\x25\x6f\x9d\x7e\xa7\xf7\x55\xbe\xdc\xef\x45\x7a\x90\x38\xa4\xd5\xea\x82\x2c\xa1\x44\x0a\xb2\xf8\xb3\xde\xb9\xfc\xf7\xbc\xd7\xd5\xea\x27\x4d\xa7\xbd\x42\x55\xf8\xf3\x6e\x5b\x0b\xd3\x12\xdc\x84\x8b\x46\x85\xbc\x89\x75\x44\xe7\x22\x49\xb5\x35\x86\x96\x63\x4a\xdc\xa6\xe2\x0e\xeb\x8e\x7e\xde\xb4\x23\x8d\x18\xbd\x1e\xc5\x13\x7a\xda\xdf\x5b\xd7\x13\x72\x8f\x2a\xc5\x87\x09\x73\xa7\xc5\x14\x45\x5e\xd7\xdd\x05\xf9\x2a\x12\x9a\xbe\x06\x9e\x51\xab\xae\x52\x30\x06\x37\x27\xfa\x6f\x54\x28\xb2\xe4\x20\xc9\x91\x40\xd4\x21\xe9\xf6\x3b\x9b\xae\xc2\x8a\x09\x7f\xe0\xd9\x14\x62\x54\x0b\xa7\xe1\xee\x0f\x68\x18\xd4\x48\x4e\xa3\x7b\xfe\x4a\x96\xe7\x22\x48\x4f\x5e\x56\xd8\xaf\xa9\x60\x93\x87\x97\xec\xd7\xb3\xfa\xb6\xfd\x90\xd6\x65\x95\xe7\xb5\xad\xd7\xd4\xe8\xee\xd5\x93\xd0\x3e\x15\x19\x70\x13\x2a\xd9\x15\x73\x76\xae\xbb\xbf\x21\x9f\xc0\x7e\xf9\x65\xdf\xe4\xf5\x7e\xd9\x62\xa5\xe3\x9a\xe1\x91\x5c\xbb\x99\xae\x79\x1d\xf4\xaf\xe2\xbd\x49\xaa\xd6\x2d\xbd\x57\x53\x5a\x03\x6e\x50\x7a\x5f\x97\x3e\x64\xa3\x7c\x4c\xc6\x4e\x86\x6c\xaf\xd8\xb3\x1e\xfc\x7b\xbe\x76\x24\xcb\x72\x2d\x9e\xd5\x03\x5b\x43\xa8\x66\x16\xc6\xb5\x4e\x68\x1e\xdf\x59\xca\xe7\xeb\xab\x0b\x30\xa9\x2f\xa1\xd6\xa9\xbd\x9a\xd7\x05\xce\x12\xd8\x35\xc8\xd2\xa9\x44\x0a\x2c\xdd\xe5\x76\xbf\x21\x5d\x81\xd3\xde\x0a\x36\xb3\xe1\x9e\x20\x07\xc5\x74\x57\x30\x8d\x5a\x96\xe1\x15\x5f\xc1\xc9\x35\xf4\x40\xdd\xf2\xcf\xd6\xc1\x9a\xb7\x43\x26\x90\x40\xa3\x9a\x76\xd4\x95\x77\xbc\x58\x21\xb3\x91\x38\x01\xf2\x7d\x3a\x83\x78\xb1\x17\xf0\x8a\x2a\xd3\x67\x39\xc8\xd5\x6b\x50\x7f\xb6\xdc\x80\x6c\xde\x11\x7b\xf6\x32\xce\x9d\xaa\x36\x34\xaf\xeb\x14\x7f\x51\x0f\x46\x80\xe1\x15\xb3\xc8\xfa\x1a\xa4\x98\x97\xef\x0c\xde\x9d\x2c\x66\x33\x67\x4a\xcf\x23\x48\x54\xf3\x55\xa5\x48\x8b\x5a\x29\x8d\xf9\x55\xd8\x5f\x0b\xf3\xcb\xb1\x4d\x29\x52\x0f\xb7\x99\x34\x13\x40\xc4\xa9\x57\x6a\xab\x32\xe3\x66\x9d\xc9\xca\x8a\x7b\x2b\x1c\x5e\x3b\x35\x02\xea\x5f\x3a\x90\x3a\x72\x86\x67\xed\x91\x44\xc2\xe0\xf5\xd6\x79\xcd\xdf\xb0\xd7\x7c\x67\x27\x9d\xb9\x32\x2a\x31\xe0\x43\xb4\x68\x67\x20\xf2\x68\xf8\x23\x70\x3b\x07\x86\x0f\x68\x78\x47\xde\xf6\x3c\x0a\x86\x60\x61\x24\x01\x31\x10\x5b\x05\x17\x62\x9e\xf6\x73\x73\x78\x5b\x2d\xd2\x9e\xe6\x22\x4f\x68\xda\x93\x33\x93\x77\x23\x0f\x74\xf9\x49\x9e\xa6\xfa\xcc\x3b\xc5\x51\xe5\x4e\xbd\x90\x20\xe3\x8c\x31\x2a\xc6\xfb\x86\x31\xca\xeb\xfb\x09\x63\x74\x8a\xaf\x1f\xe3\x6a\xe1\xa0\x91\x85\xe9\x71\x42\xf3\x18\xcc\x14\x75\x17\xce\xa1\x7c\xbe\x02\xe6\x75\xd5\x75\x84\xc9\x85\xeb\x1f\x14\x9d\xa5\x70\x07\xff\x62\x3f\xda\x23\x61\xb7\x60\x33\xa2\x90\xb6\xb1\x48\x69\x8b\x3c\xa6\x8b\x06\xd1\x82\xbe\x03\x00\xc8\x6b\x72\x33\xfe\x28\xcf\x55\xe0\x28\xb3\xa2\x20\x5c\x34\x11\x77\x9c\xd8\x78\x7b\x04\x76\x23\xeb\xdc\x5a\x63\xbe\x47\x76\xf2\x86\x23\x29\xb3\x65\xa9\x85\x47\x62\xb9\x86\xe7\x0c\xec\x14\xe5\x50\xcc\x6e\x19\x1b\x96\x34\x11\x8e\xdb\x17\x48\xfd\x49\x5b\x45\xf6\x4f\x0d\x9f\x56\x93\xde\xf0\x07\x3a\xfd\x81\xad\x32\x47\x54\x2f\xe5\x7f\x2e\x6e\xe6\xbb\x74\xb2\xcb\x72\xb1\xab\xf3\xd1\x8f\x9b\xc8\xf7\x72\xad\xfa\x84\x6d\xac\x3e\x59\xb7\x50\x72\xe7\xa2\x36\x8f\x6e\xbf\x8d\x6d\xd2\xce\x66\x77\xd9\x7d\x71\x66\x97\xaf\xd5\x72\x78\x78\x9e\xba\x07\x2a\x88\x51\x30\x86\xf5\xaf\xc6\x29\xf0\xd9\xfb\x6b\xdf\x5b\xd6\xec\xc7\xd9\x5f\xec\x4a\x0c\xbb\xc1\xec\x6e\x8c\xe9\x58\xed\xc2\xbd\xd9\x03\xee\x19\xe7\x7d\xc7\xba\x07\xd6\x8a\x66\x59\xca\xa9\x7e\x5a\xc3\x51\x47\x46\xa3\xde\xc3\xc8\x67\xca\xb8\x4a\xaf\xec\x15\x71\x33\x33\x96\xea\x7f\x6b\xa4\xac\x1e\xeb\x75\xfc\x6e\x43\x51\xdf\xa4\xd8\x04\x2b\xbe\x2b\x73\x32\x5a\x91\x77\xf1\x8a\xcc\x76\x9a\x5b\x83\xe6\x0e\x3c\x5f\x4e\x17\x74\xbc\xd3\x1c\x36\x7d\x1e\x7a\x05\x45\x1a\xe3\xb6\x80\x83\xac\x53\x5f\x38\xcc\xd4\x6a\xc2\xb4\xd2\xec\xbb\xfc\x06\xb8\xc2\xf5\x2d\xef\xaf\xa0\x2f\xfd\x96\xf3\x39\x61\x26\x23\xd2\x06\xed\xae\xe0\x0b\x56\x31\xa1\x6e\x2f\x0e\xfb\xf9\x2c\x4e\x8e\xad\x57\x9f\x19\x23\x1c\xf3\x63\x11\x1f\x44\x70\x53\xd2\xb4\x2f\x69\x3a\xfd\xb1\x97\x64\x92\x02\x8b\x5e\x90\xd4\x92\x01\xb1\xbb\x5f\x5e\x9f\xa8\x42\x68\x14\x38\x2f\x9b\x2e\xf0\x7a\x0a\xa3\x8e\xac\x40\xde\xd2\x55\x93\x5c\x65\x08\xb2\x82\xdb\x45\xac\x90\xf1\x4e\xe5\x6a\xd2\x2b\xbb\x95\x71\xb9\x90\xc3\x53\x39\x6a\x5a\xd1\x49\x1b\x20\x6e\x6c\x4f\x66\x2a\x96\x31\xaa\x51\xe8\x0a\x1d\x3d\x28\x98\x05\x54\x8b\x0c\xe2\xe7\xfa\xb1\x8f\x66\x79\x11\x19\xf7\xb3\x55\x7a\x47\xba\x52\x1f\x1d\x01\x24\xb7\x47\x54\xe0\x4c\xd5\x06\x03\x47\x36\x45\x0b\x9c\xe9\x2d\x3a\x9d\x6b\x43\xed\x02\xcd\x30\x31\xf9\xa2\x4c\x4e\xaf\x11\xa6\x86\x19\x2e\x50\x8e\x66\x68\x01\xf0\xcf\x6e\xdb\xc5\xe8\x9a\x8c\x17\x33\x72\x24\xc7\x34\x9b\x69\x22\x80\x27\x23\x44\x4d\x18\x23\x50\x58\xbe\x27\xe6\xc6\x48\x46\x69\x63\x22\x2f\x32\x46\xee\xe0\x6d\xae\x52\x06\x4e\x54\xf9\x6b\x55\xfe\x22\x9b\x26\x23\x1f\xbe\x2f\xb2\x69\x9a\x5c\xc7\xa4\x54\x27\xc9\x35\xa2\x68\x64\x89\xb3\x93\xbf\x5c\x2f\xa0\xe8\x86\xbc\x7d\x93\xb1\x6c\x0a\x41\x04\xf2\xb6\xa6\x2b\xb8\xa3\x13\x50\xe3\x34\x14\x07\x6f\x6a\x55\x80\x89\x2f\xc1\x7e\x80\x16\x20\xf4\x90\x84\xf1\x18\x62\xc3\x74\x5c\x3a\x8e\x4c\x8d\xdb\xa2\x33\x8e\x06\x2f\x69\x0c\x9a\x3e\x3e\x26\xfe\xd6\xaa\x52\x76\x67\x19\x12\x69\x35\x54\x06\xf7\xa3\x1b\x14\xe6\x66\xd9\xdf\x80\x73\xd0\xbc\xce\x7e\x60\x6d\xe1\xa9\xc4\xb3\x9a\x4f\x1c\x98\xd7\x7e\x9d\x38\xc9\x58\x1f\x38\xc7\xae\x90\x9f\x33\xe1\x98\xb9\x26\x39\xca\x5c\x84\xb3\xbf\x4a\x3e\x43\xf5\x98\x73\x3d\xe6\xba\x81\x31\x39\x30\xff\x34\x2e\xb0\x8d\x17\x87\x66\x38\xaf\x19\x74\xae\x06\x8d\x46\x38\x1c\x76\x68\x9e\x0b\x88\x72\x7b\x9b\xa2\x59\x78\x11\x14\xb1\x53\xf2\x9f\x49\xe1\x9c\x91\xff\xfc\x8b\x49\x70\x3f\xd6\x46\x66\x4d\x8a\x4b\x9a\x1c\x02\xb3\x96\x19\x26\xfd\x50\x1d\x1e\xd9\x4a\x3d\x8d\xd9\x8f\x22\xca\xed\x98\xcc\x69\x29\x75\x68\xe5\x71\x71\xcf\xc6\x86\x3a\x34\x5e\xea\xd0\x8c\x02\xad\x3c\xe8\x70\xb4\xca\x43\x62\xd7\xfd\xc8\x18\xc3\x5a\x22\x70\x96\xe7\x5f\x16\xf3\x88\x9d\x38\x04\xe4\x04\xfd\xe7\xfb\x7a\xc5\xbd\x32\xc6\xad\xea\x88\x6c\xfa\x10\xed\xc7\x79\x43\x44\x66\x5c\x38\x41\xb1\xcf\xa3\x1e\xf4\x75\xa1\x48\x1c\xeb\xf5\x6f\x89\x62\xe3\x29\xce\xcb\xa8\x1b\x4e\x88\x19\x10\x43\x61\x8c\x45\x1a\xc6\xc1\x28\xbb\x36\xce\x52\xf2\xa8\x5b\x1d\x1a\x4b\xfb\x1c\xb3\x5e\x45\x73\xcc\x5a\x2d\xd6\x6a\x25\x1c\x1f\x79\xe9\xa1\x38\x62\xe5\x82\xa4\xa9\xeb\x93\x76\x0f\x7e\x54\xc1\x2a\x44\x97\x80\x47\x32\xca\xc4\xed\x5a\xbd\x08\xc8\xe0\x38\x50\x07\xa4\x7c\x5a\x34\x4c\x4c\x86\x56\xeb\x4a\xa9\x49\x95\x41\xed\xa5\xb2\x83\x76\x82\xe9\x1c\xaf\x8b\x28\x43\x0b\xe1\x6a\x0b\x63\x56\x83\xc4\x0d\xaf\x10\x65\x4a\xea\x54\x89\xc6\x25\xc8\x56\xaf\xcb\x9b\x92\x10\x7c\x97\xf0\x81\x28\x2d\x03\x53\xeb\x13\x54\x4a\x25\x3a\x18\x63\x63\x1c\xa8\xdc\xa5\x8d\x7d\xe0\x56\xb3\x12\x8d\xf2\x83\xa3\x4f\xe9\xc8\x1b\x4c\x53\x30\x3a\x81\x7a\xb7\xd7\x49\x9d\xb7\x17\xd9\xb4\xbf\xa7\x5f\xcd\x39\x99\x67\x9c\x1c\xf0\x69\xd1\x7f\xa6\xdf\x29\x5a\x07\x5e\xbd\xd2\xaf\x2c\xb6\xf8\x2d\xcf\xbf\xf4\xbb\x2f\xf4\x6b\x8d\xbe\xe0\xe5\xfe\x9e\xdf\x0b\x50\x4f\xfd\x17\x7e\xa3\xef\xb2\xd9\x8c\xf0\x7e\x77\xcf\x34\xac\x50\x04\x34\xb0\xf7\xfc\x85\x57\x16\x88\x2a\x36\x22\xfd\xe7\x5d\xd9\x74\x69\x1a\xf1\xa7\xeb\x60\xb4\xbd\x9d\x90\x96\x30\x76\x8d\x2f\x56\x68\x29\x1d\x99\xb2\x96\x28\x7f\x31\x64\x9d\xcb\x04\xbd\x5c\xa1\xe2\x53\x4d\x00\x79\x6f\xda\x90\xa0\xf8\xd1\x6f\x60\x53\xe3\x4a\x6e\xe9\x54\x6e\x25\xd1\xab\x65\xed\xc0\x09\x55\x28\x60\xbe\xc2\xfc\x52\x0e\xef\x7d\x92\x4b\x9e\x02\x65\xee\x20\x57\x68\xd6\x02\x15\x45\x85\xce\xa6\x98\x5b\x52\x2b\xc7\x1f\x94\x4d\x9e\x75\x80\xa2\xa4\x48\xb4\x07\x44\x1a\x98\x7a\x3d\x8c\x2d\xb6\xe8\x71\xa4\x9b\xe8\x51\x34\x72\xea\xf6\x72\xed\x7c\x01\xa8\x56\x47\x21\x57\x68\x17\xc2\x8f\xc3\x4f\x75\x3b\xa8\xb3\xef\xcc\x29\x46\x6d\xf1\x50\x92\x8c\x32\x9c\x07\x9a\xf1\xd5\xcb\xce\x6b\xcd\x5b\x85\x09\x79\x2a\x3b\x5a\x18\x47\x9b\x58\x42\xdb\x2c\x5d\xe0\xa3\x24\xb6\x77\x40\x7c\x35\xc8\xac\x20\x10\x18\xea\x2a\xc9\xd2\xd4\x64\x02\x65\x7e\x26\xd0\xb4\xb1\xc0\x99\x09\x06\xbb\x70\xe6\x1d\x17\xf1\x06\x40\x8f\x6c\x26\x59\x6a\x46\x0a\xf7\x04\xc5\xea\xf2\xe8\x71\xfc\x21\x49\x28\x66\x66\x6f\xd3\xca\xb6\x32\xb3\xad\x48\x54\x37\x94\xf9\xdb\xe8\xee\xef\xda\x0d\x75\x37\x31\x54\x08\x28\xa9\x86\xda\xca\x52\x4b\xcb\x83\x2d\xcc\x9d\xd5\xdf\xbe\x92\x1c\x7e\xed\x22\xe6\x98\x1a\x83\x4d\x47\x59\xf2\x72\x53\xb5\x64\xcc\x34\xda\xcf\xb6\xa5\x28\xf6\xc1\xb0\xf1\xac\xc5\x5b\x2d\x1d\xf1\xb6\x79\x93\x51\xd6\x4c\xd1\x9e\xfb\x4e\x6e\x7b\x33\x45\x5d\xf7\x9d\x44\xb5\x45\x13\xd2\x3d\xf3\x29\xe4\x0f\x58\xcc\x13\xc8\x10\x8b\xf8\x2f\xbf\x3c\x43\xdb\xdb\xc9\xab\x16\x4f\x4d\xfe\xe9\x44\x95\x73\x26\xf2\x72\xbd\x76\x56\xb7\x4d\x20\x70\x8f\x70\x8d\x69\xd7\x22\x3f\x58\x75\x9d\xb6\xc0\xc1\x82\x4e\xff\x51\x65\xa9\xf2\x9c\x94\xc0\x8e\x16\x68\xa6\x97\x75\x64\x9b\x9e\xf8\xb2\x09\x08\xf8\x3b\xd2\x70\x3b\xc7\x93\x76\x09\x67\x8d\xab\x64\x9e\xb6\x5a\xc9\xbc\xc6\x91\x8a\x38\x65\xb1\xd0\x96\x98\x55\xac\xa5\x31\x54\xa9\x03\x30\xbc\x2c\x45\x8e\xff\x26\x25\x45\x14\xbf\xe5\x90\x11\x2c\x99\xa0\x39\xba\xd6\xd1\x45\xc6\x78\x8e\x6e\xf0\xd8\x76\x71\x8f\xc7\xba\x0b\x09\x91\xf2\x36\xff\x33\x99\x78\x2d\xa3\x67\x3a\xe1\xf6\x2d\xbe\xd6\xf9\xa3\x15\x38\x17\x68\x5a\xbe\x61\xd9\x0d\x29\xd0\x25\xbe\x71\xaf\xea\xe4\x1e\x5d\x03\x71\x78\xa9\x7c\x92\xaf\xdb\xa3\x19\xc9\x38\x58\xc6\x74\x5e\xb3\x37\xb7\x6e\xfe\xf7\x91\xda\xa2\xdb\x01\x1b\x2a\x7b\x53\x8e\x2f\x1d\xe3\x4c\x44\xf1\xa5\xb2\x0e\x85\x65\xd1\x59\x7b\x32\xdc\x79\x9d\xbd\xc9\x21\x6d\xb1\x6e\x80\x0f\x32\xdd\x40\xe1\xe5\x09\xa6\xf2\x5a\xea\xbc\x5e\xbc\xb1\xce\x10\x8b\xb2\x12\x1d\x14\x83\xc5\x70\x98\x36\xae\x35\x24\x8f\x50\x81\xa6\x28\x47\xdb\x9d\x74\xa9\xcb\x5c\xa7\x4b\x79\x10\xb6\xca\x47\x0b\x8e\xab\xae\xd2\x92\x17\xf5\xe5\x5a\x60\x80\xef\x40\x01\x2a\xb0\x15\x55\xa0\x05\xce\xc3\xed\x2d\x2a\xdb\x9b\x59\x3c\xa7\x24\xdc\x8d\x3f\x93\x05\x7a\xf1\x4c\x82\x5d\x55\x3c\x64\x83\x60\x9b\x82\xaf\x64\xb9\x51\xa0\xd5\xb3\x51\xad\x4d\xa9\xee\x1e\x94\x9b\xb8\x56\xf9\x46\x06\x54\xd8\xb0\xc6\xa0\xa7\xd3\xc3\x41\x23\x34\x43\x13\x79\xfe\xbb\x2d\x96\xa6\x8d\x5c\xbd\xc6\xd7\x3a\x30\x76\x61\x24\x47\xd7\x29\xf4\xb0\xf7\xfc\x45\xda\x6a\x6d\x57\x84\x48\x73\x50\xa4\x04\xec\xf1\xe7\x64\x8e\xae\x51\x81\x5c\xfb\xf5\x57\xeb\x68\x04\xcf\x42\x23\x7e\xc0\x40\xcd\xee\x4b\xc0\xf2\xb4\x91\x45\x24\x60\xae\x3b\x44\x37\x90\x1b\x5e\x91\x29\x65\x20\x60\xfd\x95\xe7\x0b\x65\xec\x1e\x08\x51\x95\x0f\xaf\xb2\xa2\x77\xa6\xb0\x1f\xb4\x54\x2b\xd5\x24\x77\x5b\xbf\x39\x42\x90\xd5\xbe\x0b\xdf\x21\x04\x59\x23\xf8\x68\xac\x90\xd1\xca\x13\xe4\x8a\x3f\x0a\xb4\xbd\xcd\xd1\xc2\xc8\x34\x7e\x5b\x1d\x88\xd5\x92\xf0\x45\x24\x9a\xdc\x68\x96\x15\x05\xa9\xcd\xf4\xec\xf4\x1b\x71\x7a\x6d\x42\xed\x26\x06\xe3\x66\xb7\x39\x1b\xe7\x20\x18\x00\x78\xee\xde\xaa\x08\x9a\x08\x10\xdc\x3c\x1b\x91\x1e\x47\x82\x2f\x0a\x41\xd9\xb4\xc7\x02\xa7\x5b\x10\x30\x47\xe3\x20\x50\x94\x5b\x23\xfa\x6c\x8b\x9a\x34\x92\xb6\x2f\x55\xb2\xb0\x6e\x59\xce\x28\xb2\xa1\xa6\x1f\xd0\x02\x8b\xb6\x1d\x07\x5c\x4f\x66\x24\x8d\x72\x72\x59\xab\x95\x14\x20\xf5\x3f\x4e\xdc\x59\xa6\x29\x52\xc9\xef\xb6\x55\x19\xb6\x89\xe8\xca\x91\x85\xa1\x45\xa8\x6e\xa8\x15\x60\x81\x59\x82\xea\xac\x3a\x53\x18\x5e\x42\xc3\x69\x82\xbc\xa9\x9c\x28\xf5\x26\x4a\xed\x44\x43\x9b\xc9\xd8\xb0\x75\x8e\xbf\x6f\x1b\x7b\x0e\xf6\xd3\x3e\xdf\xfa\xb6\x0c\xab\x60\xe4\xd2\x4c\xe7\xcf\x2a\xc0\x00\xc6\x4d\x22\x09\x7c\xd2\x94\x88\x44\xa4\xaf\x77\xbb\xdb\x18\xe7\xad\x16\x8d\x78\x56\xe5\x3b\x5d\x94\xa5\x88\x69\x19\x92\xdc\x11\xfd\x53\xc2\x5d\x66\x58\xc5\x9f\xd7\x19\x69\xf9\xd8\x4d\x62\x34\xe7\x4e\xc9\x2c\x82\xf3\x6f\x97\x55\x2a\x96\xa2\x3d\xa6\xe3\x77\x80\xd9\x4b\x65\x8f\xb7\xe8\xe4\xeb\x9c\x8c\xc4\x3b\x47\x49\x91\x34\xdf\x07\x75\x94\x73\xf8\xff\x30\xf2\xbd\x66\x8a\x1c\x56\xe0\xd5\x3a\xaf\xb8\x2a\xca\x76\x26\xe5\x63\x6d\x3d\x29\x9f\x85\xcb\xec\x6d\x95\xbb\x37\xc5\x3a\xf7\xb9\x1f\xd2\xed\x45\x36\x3d\xc9\x6e\x88\xdf\x73\x8c\x6c\xe7\x8e\xbe\xc8\xe9\x99\xa7\x60\xfe\x65\x36\x4b\x76\xe6\x51\x09\x51\xf6\xcc\xea\x1e\xe1\xb4\xe8\x8b\x18\x53\x9f\x92\x9b\x60\x73\x47\x5f\x3b\x7c\x48\xd5\xd8\x15\x9c\xc4\xff\x4c\x08\xea\xa6\xcb\x64\x94\xa6\xd7\x38\x97\x13\x53\x62\x9a\x64\xe2\x71\x82\x91\xda\x1d\xbf\x76\x2d\x87\xa3\x9b\x7d\xef\x0a\x81\x92\x19\x2a\xd2\xe5\x42\x93\x58\xfa\x78\x5d\x40\x0d\x64\xdf\x2a\xee\xcc\x31\x1e\xda\xc8\xb9\xae\xd6\x2d\x92\x3b\x6b\xfd\x21\xc9\xeb\xc5\x04\xa8\xc0\x71\xd9\x40\xee\x33\x95\x59\x84\x95\xa4\x7e\x7a\x32\xea\x4e\xcd\x13\x14\x78\x5c\x3c\x73\x55\x1e\xaf\x56\x7b\xea\x55\xb8\x4e\x4f\x76\x13\x00\x77\x23\x33\xc9\x2e\x29\xca\x74\xea\xca\xbc\xb4\x09\x58\x27\x1b\xf2\xda\xf2\x51\x61\xc5\xdd\xd2\x10\xeb\x3b\x5d\xa0\xa6\xed\x6c\x62\xb4\x0b\xf7\x4c\xea\x3c\x72\xb9\x91\xeb\x7e\xae\xb3\xe2\xf0\x36\x9b\x81\x7c\x38\xd7\x28\xd3\xa7\x15\x7c\x47\x56\x59\xd8\x98\xa9\x3a\x66\x0f\xab\xd8\x3f\x3d\x86\xc2\x1f\x43\xa6\x04\x5b\xba\x6d\x50\xc1\xba\xb4\x33\x1a\xe1\x99\xf6\x66\xcb\x84\xc4\x00\x85\x76\x33\x1c\xe9\x05\xd8\xed\xbe\x66\xbf\x60\xe5\x70\xc8\xf1\x68\xc0\x86\x88\xe2\xa2\xe6\x22\x91\x9f\xe5\x0e\x9a\x26\xc1\x9f\x14\x6d\x77\x53\x04\x97\x0a\x6d\xb5\x16\xae\x05\x26\xdd\xe9\xa2\x3c\x45\x45\x79\x9b\x98\x9f\x03\x3e\xc4\x8e\x00\xe1\x69\xd7\x09\x0d\xe6\xa8\xd9\xbd\xc6\xdb\xa4\xd9\x52\x12\x00\xa4\x25\x01\xb0\x74\x24\x45\xf2\x0b\x65\xb7\x84\x17\xa4\x89\x94\xe4\xc0\xfd\xa4\x33\xa3\x34\x91\x12\x34\xe8\x4f\x25\x49\xbd\xda\x9f\x37\x04\x62\xad\xd6\xe2\x15\x8c\xf0\xf3\xd3\x2f\x98\x18\x4f\x10\x9a\x31\x68\xba\xbd\x41\xe5\x15\xa9\xa2\xee\x68\xb4\x95\xcb\xbb\x5c\xa9\x64\xed\xed\x99\xe4\x28\x66\xb6\xf9\x0f\x25\x26\x71\x3d\x70\x43\xe3\x89\x51\x7e\x73\x43\x85\xcb\x49\x68\xe2\xf9\xf3\x4a\xa5\x39\xca\xd5\x44\xb3\xef\x50\x0a\x66\x5a\x6d\x9e\x81\x19\x33\x68\xb5\x30\x47\x99\x23\x78\xc8\x3c\xce\x12\xe7\x12\x7f\xb8\x8a\x74\x5b\xaf\x89\xb2\x1f\xe3\x37\x67\x5b\x44\x71\x0d\xba\x3b\x9e\x86\xd5\xe7\x11\xc4\xac\x41\xd9\x3f\xea\xd7\xed\x07\xad\x9a\x59\x1f\x7f\xe5\xe4\x6a\x5d\xa9\xf8\x59\xe5\x3a\x8d\xe9\x78\x57\xaf\xd5\xec\xff\x63\xef\xdd\xbb\xdb\xc8\x8d\xc4\xd1\xff\xf5\x29\x24\x9e\x84\x69\x2c\x21\x0e\x69\xcf\x64\x13\xca\xb0\x56\x96\x29\x8f\x36\x7a\x38\x92\xec\xc9\x84\xc3\x9f\xd2\x22\x41\x0a\x63\x12\x60\xd0\xa0\x64\x8d\xc8\xdf\x67\xbf\x07\xcf\x06\xd0\x68\x4a\xf6\xcc\xec\xdd\x73\xcf\xfd\xc3\x32\xbb\x1b\x8f\x02\x50\x28\x54\x15\xea\xa1\xb0\xa7\x01\xf3\x94\x49\xdb\xd7\xcf\xde\x46\x7b\x83\x72\x36\xcd\x2d\x90\x06\x70\x4b\x59\xe2\x69\x53\x01\x83\xd4\x52\x6c\x2a\x91\xfa\x83\xb9\x26\xb5\xb1\x49\xfc\x9b\xd1\x1f\xf4\x2e\x93\x8c\x09\x9b\xe1\x36\xa1\x13\x96\x35\x3e\x14\x78\xfb\x5f\x23\x46\x05\xfe\x2c\xfe\x05\xb7\x73\x3a\xde\xfe\x97\x24\x63\xaf\x16\xb9\xb8\x7d\x0d\xfe\xb5\x2d\xd8\xb6\x0a\x53\xa4\x44\x84\x6d\x81\xe7\x8b\x59\x2e\x70\xbb\x01\xa0\xc8\x1a\xf2\x5d\x43\x5f\xa1\x7e\x44\x3f\xc0\x1f\x37\x5c\xa3\xda\xbb\x70\xad\xb9\xd3\x17\x5a\x2a\xd0\xa9\x0e\xac\x65\xae\xca\xd8\x28\x9f\x45\x42\x25\x41\x9d\x3d\x52\x5e\x7b\x91\x56\x0b\xe4\x48\x0c\x32\x86\xf8\x80\x0c\xc1\x6e\x77\xa8\xce\x00\xc9\x4b\x6a\x32\xcb\x80\xdf\xd8\x20\x1f\xa2\x22\x25\x89\xc6\xe1\xb9\xbd\xc5\x50\x30\xb9\x00\xd9\xaa\x19\x7d\x76\x2f\x66\x44\x64\x0d\x39\x78\x12\x3e\x32\x44\x06\x9d\xa1\xe2\x03\x75\x48\xab\xae\x64\x44\x84\xec\xa4\x3c\xda\xe4\xd1\x14\x84\x2c\xd7\xf3\x87\x10\x62\xfb\x4b\x5d\x58\x2b\x6f\x7a\x74\xc0\x86\xfb\x4b\x24\xff\xeb\x49\x4e\x8d\xb9\x23\xa7\xf1\x5f\x0d\xd0\x6c\x16\xfa\xbb\xfc\xaf\x97\x2d\x3d\xa0\xcb\x36\xa4\x58\x21\x69\x17\xc7\xe3\xe5\x08\xd7\xe5\x88\xd3\x32\xd0\x5a\xf2\xfd\xbe\x19\xe3\x5f\x9f\xa3\xb3\x20\x4f\xe8\xad\x2b\x7a\x6d\xeb\xd9\x0f\x55\xec\xb0\xed\x1f\x4b\x4f\x0e\xb5\xc1\xb7\x3e\x66\x7e\x58\x09\x2b\x18\x26\xfc\xbc\x72\x1d\xa5\x15\x94\xa9\xf0\x4a\x32\x9d\x14\x1f\x42\x95\x31\x1c\xc1\x09\xbc\x85\x0b\x38\x36\x23\x9a\x9b\x11\x3d\x18\x2d\xcc\x9d\x0f\x39\x9c\xa6\xb9\xf9\x9b\x1a\xdf\xc8\x6b\x74\x57\xb9\xf7\x19\x03\x78\x6f\x5e\x7b\x73\x34\x07\xb0\xaf\xdf\xea\xe7\x07\x00\x3f\xa3\xa9\x61\x09\x4c\x00\x8e\xec\x06\x5e\x03\x78\x89\xa6\xb6\xe3\xec\xb3\x1f\x9f\x43\xe5\x7e\xb8\x0c\xf8\xd4\x03\x74\x69\xb3\x42\x6b\xd6\xe6\xdc\xf2\x2d\x1a\x87\xed\x8c\xa3\x4a\xc8\x0d\xab\xb0\x95\x0c\x0c\xd3\x02\xb2\x8f\xbc\x44\xf1\x32\xfa\xda\xd5\x72\x8d\x8a\x0d\x2f\x5f\x00\x5b\xaa\xac\xc7\xec\x2b\xb5\xac\xdc\xd3\x50\xc2\xdc\xea\x7e\x8d\x8a\x92\xc7\x81\x47\xe4\x1e\xea\xec\x15\xaf\xfa\x76\xf3\x17\xad\x16\x98\xa1\xfb\x41\xb6\x44\xfd\x41\xa1\x37\xff\x48\x43\x6a\x36\xff\x12\xc0\x7c\x30\x1b\xa2\x91\x94\x9a\x98\xf2\x8e\x99\xa0\xce\xde\xa4\xcc\x14\x35\x69\xb5\xc0\x2d\x9a\xb4\xba\xd0\x45\x8d\xcb\x16\x88\x0d\xe8\x60\x32\x1c\x82\x66\x53\x43\x9b\xdd\xc2\x85\xe4\x21\xe4\x6f\x0f\xa4\xdc\xfa\xca\x94\x9e\x33\xea\xa4\x39\xb0\x87\xff\xbb\x67\x58\x45\x7b\xe6\x20\x65\xf4\xef\xe7\x19\x08\xf8\x49\x25\xca\x00\xbb\x7e\xde\x84\x72\x13\xff\xf9\x59\x4e\x51\x8a\x99\x2f\xad\x67\xe5\x39\x62\x03\xf1\x1f\x49\xf4\x81\xa4\x4c\x52\x94\xc7\x86\xaa\x36\xd0\x6c\xc6\xdc\xf5\x4d\xee\x6e\xf4\x64\xd9\x77\x59\x5e\xc2\xe9\xbb\x92\x6c\xe0\xfd\xac\x07\xda\x09\x29\x44\xe0\x85\xf6\x5d\xc2\x0b\x4d\x15\xf2\xca\x24\x09\x17\xf4\xa5\xf8\x80\x55\xb6\x51\xb8\xf7\x95\xaa\xcd\xc6\x5b\x37\xb1\x90\xcd\xc8\xf5\xf1\x2a\x30\x3f\x16\x78\x6e\xa2\x26\x53\x00\x7a\xc6\x83\x80\xdb\xa5\xff\x5b\x14\xae\x50\x2d\x92\xe1\x4d\xed\x01\x27\xfb\xbb\x24\x37\x33\x42\xa7\x48\xac\xe1\x1f\x36\xd9\x1d\x99\x16\x16\x39\xc7\x54\x27\x06\x30\x8d\xe8\xdc\x75\xa2\xb4\x9c\x41\x34\x99\x88\x48\x55\x34\xaa\x9e\x3a\xb3\xf6\xb2\xf5\x38\x73\x3e\x2f\xa2\x6c\x04\x61\x45\x55\x20\xac\x23\x41\xd9\x54\x45\x7e\x37\xf6\x35\x7f\x7f\x32\x52\x4a\x75\xd8\x2a\x84\x44\x32\xd7\xc0\xef\x3b\x52\x5a\xa9\xf2\xd4\x40\xa9\xcb\x53\x5d\x72\x5f\xff\x88\xec\xd2\xe4\xee\xf8\x83\x79\x57\xda\xa3\xfc\xb3\x12\xf0\xf6\xef\x3a\xe0\xad\x2b\xf1\xdf\xba\x84\xd5\x53\x53\x45\xd4\x83\x09\x30\xc4\xdd\x8d\xcb\xec\x6c\x0b\xb4\xf6\x57\xdc\xcb\x6d\x64\x98\xdc\x47\xca\x38\xa1\x46\x0e\x85\x2c\x8e\x10\xb3\x66\x63\x74\x2b\x2f\xd1\x4d\x29\x43\xca\xe5\xc3\x71\x60\xe3\x2a\x64\x3c\x82\x8c\x84\x90\x31\xc4\xf7\x98\x86\x4c\x20\x16\x40\x66\xd3\x72\x28\x6f\x73\x79\xac\x30\x84\x10\x71\xd6\x6c\x5b\xac\xc4\x8d\x10\x2c\x2d\x66\x48\x06\x94\x4c\xb2\x1d\x5c\x0e\x24\x54\x8d\x95\x54\xc8\x5a\x0d\x19\xa8\xcf\x2e\x33\x01\x1b\xc5\xdd\xb4\x01\xb6\x04\x7f\x78\xb4\x01\xd4\x0f\xc6\x3f\xe7\x23\x4c\x55\x30\xdc\xac\x71\xa3\x26\x4c\xa5\x95\x68\xbc\x1a\x11\x3e\x9a\xe1\xd7\xaf\xbe\x31\x3f\x1a\x60\x3d\xca\xc5\xe8\x36\xe3\xe0\x71\x3d\x21\x34\x9f\xcd\x1e\xec\x22\x77\x77\x10\xa2\xda\x7d\x53\x4e\x82\xbd\xf9\x5c\xad\x1a\xb7\x42\x2c\x7a\xdf\x7c\x73\x7f\x7f\xdf\xbe\x7f\xd9\x66\x7c\xfa\xcd\x8b\x4e\xa7\xf3\x8d\x84\x44\xd5\x51\xf3\xa8\xa6\xa3\x54\xc4\x7f\xb8\x38\x5e\xaf\x55\xa0\xf7\x72\x9c\xda\x06\x35\x1a\x55\xd6\x18\x93\xbb\x46\x32\x44\x85\x27\x7a\xfd\xfe\xe1\x3e\xe2\xe4\x31\x5e\x68\x61\x07\x93\x80\x54\x0a\x80\x76\xa9\x83\xd1\xee\x20\xc4\xf7\xab\x39\x68\xca\x66\xfc\x80\x8d\xaa\x9d\x5e\xf5\xda\x49\xcf\x90\xe1\xcd\x1b\x47\xe7\x17\xfd\xe3\x77\x67\xe7\x6f\xfe\xbb\x7f\x78\xa5\xee\xa2\xe4\x81\x7d\x96\xcf\x71\x5b\xb0\x0f\x8b\x05\xe6\x87\x79\xa1\x02\xc4\x9b\x40\x4a\xb2\x33\xd4\x78\x55\xdc\x4d\x5f\xbf\x92\x5d\x92\x29\xd5\x9c\xcd\xeb\x46\x2b\xa3\xab\x55\xe3\xa7\xcf\x2f\x47\x3b\xbb\xbb\xbb\xbb\x3f\x7d\x7e\x89\x1b\xa0\xd5\x78\xf5\x4d\x58\xee\x95\x5c\xd5\xd7\x0d\x75\x18\x7b\xcb\x5a\xfe\x04\xbd\x44\x67\xf5\xad\xa7\x5a\x03\x26\x95\x76\x9d\xb1\x43\x59\x12\x12\x6d\x9d\xca\x10\x57\x3c\xa4\xdc\x92\x04\x31\xc8\xa2\x2d\x19\xa5\x17\x20\x90\x5a\x7c\x1a\x70\x48\x86\xeb\x8c\x40\x89\x89\x30\x47\x4c\x4a\x47\x05\x62\x83\xee\x70\x2b\x22\x80\xca\x62\x3c\x13\x8a\x41\x37\xca\x00\x9f\x22\x52\xad\x24\x70\x22\x4b\xb3\x99\x62\x6a\x92\xa8\x2d\x89\x88\x3f\x67\x6a\x80\x0d\x07\x75\xfd\xfe\xd5\xd9\x56\x1b\x00\xbe\x40\x08\x89\xea\xde\x04\x56\x05\x6f\x0d\x4a\x3b\xeb\x0c\x83\xfd\xdf\xda\x91\x55\x72\x19\xa5\x2b\xeb\xb2\xc0\x33\x5c\x14\xc6\xb5\x0b\xd9\x40\x39\xd6\xd5\xab\xd1\x00\x4f\x78\xb2\x3e\x77\xa7\xb9\xfd\xb0\xd3\x85\x0c\xd1\x7d\x1d\x8f\x97\xb0\x65\x61\xd6\xbd\x27\x4c\xda\x5e\x32\x1b\x6f\xb1\x66\x93\x6d\x13\x63\x5f\xc9\x26\xdb\x57\xf8\xb3\x50\x21\x02\x77\x3a\x31\x7e\xe8\x48\x48\xc1\x30\xd4\x10\xb5\x62\xe7\x0b\xf6\x70\x99\xcc\x95\x34\x9b\x22\x38\x17\x12\x7d\x00\x98\x1b\xac\xea\x51\xa5\xaa\xe0\x18\x6d\xa2\xad\x90\x60\xf4\x18\x6c\xcf\x5e\x17\x8e\x71\x31\xea\x75\xa1\x20\x62\x86\x7b\xdd\x35\x64\x38\x12\x5e\x94\xf5\xde\xde\xa0\x71\xd3\x80\x8d\x1b\x32\x95\x7f\x67\x6c\xf4\xe9\xdf\x4b\x26\xb0\x7c\x60\xe3\x07\xf9\x1f\x6f\xc0\xc6\x48\x71\x93\xf2\x07\x1b\xcb\x6f\x63\x89\x73\x12\x65\x61\x63\x3c\x93\x7f\x84\x8a\x41\x6f\x02\xd1\xcb\x8f\xb7\x5d\xf9\xe7\x85\xfc\xf3\x52\xfe\xf9\x56\xfe\xf9\x4e\xfe\xf9\xb3\xfc\x83\x73\x55\x48\x36\x49\xe4\xbf\xb9\xec\x7e\x46\xd4\x1f\x75\x23\xeb\x54\xb9\x8d\x39\x16\x79\x03\x36\x28\x53\x90\x30\xd9\xdd\x42\xfe\xe3\x12\x10\xbe\xbc\x91\x40\x16\xf2\xdf\x3c\x9f\xc9\x8f\xc5\x22\x97\xd5\x0a\xc1\x99\x6a\xa6\x10\x9c\x7c\x92\x65\x8b\xe5\x8d\xfa\x2b\x6b\x2b\xed\xb8\xfc\x5f\x02\xbe\x94\xff\x64\xd5\xbb\x9c\x37\x86\xed\x09\xe3\xfd\x7c\x94\x4c\x65\xcf\x54\xdc\xed\xae\x61\x9f\x73\x8c\xbe\x19\xfc\x24\x76\x7f\xe2\xdb\x3f\x7d\x3e\xe8\xfc\xb4\xec\xfe\xf9\x2f\xf2\xef\x5f\x3a\xfd\x9f\x96\x72\x71\x76\xd5\x7f\x07\xf2\xef\x8b\xbf\xa8\xbf\x7f\x55\x7f\x8f\xe4\xdf\xef\x8e\x7e\x5a\xbe\xec\x74\x3a\x3f\x2d\x8f\xfa\x47\x47\xc3\x6f\x60\x81\x51\x63\x49\xd5\x4d\x10\x1e\x97\xd6\x93\x63\x36\x52\xc7\x92\xb6\x83\xb6\x4f\xda\xea\x12\xc3\x19\x7e\x42\x7c\xb3\x15\x2c\x4f\xaa\x0c\x91\x3e\x68\x74\x2b\x3d\xd0\xd2\x76\x0f\x71\xc1\x8a\xaf\xed\x32\xfc\x1c\x74\x98\xa4\x70\x91\xf9\xbb\x5f\x22\x19\x3a\xdd\x18\x6d\x72\xef\x62\x51\x48\xc9\x27\x3c\x51\x11\x42\x1c\xaf\x56\x8a\xe3\x91\x87\x1f\xe4\x88\xe0\x81\xb0\x67\xe0\x10\xf4\x32\x8a\xfc\xaf\x3b\x5d\x00\x69\xb3\xb9\xa3\x39\x2c\xb5\xaa\xfa\x42\x51\xd1\xf8\x3e\xe7\x8c\x67\x8d\xc3\x9c\x52\x26\xb6\x35\x90\xdb\xf9\x76\xa3\x85\x5b\x0d\x49\x38\xc8\x18\x6f\xe7\x74\xfb\xf2\xe3\xbb\x6d\xa3\x87\x6c\x84\xb9\x3a\xd3\x53\x70\x76\x99\x71\x0c\xb1\x9b\xec\x4d\xb3\x15\xa7\x4a\xab\x4d\x53\x27\x0f\x1a\x1c\x11\x2d\x48\x93\xb5\x53\xd4\x33\xe4\xf0\x27\x21\xc5\x33\xc0\x40\xc3\xf2\x27\x96\xee\xea\xa9\x04\x70\xd1\xf0\xae\xea\x52\xc1\x05\x27\xc3\x73\x5b\x73\x3e\xc3\xc9\x0c\x6a\x1a\x81\xfe\x17\x70\x89\x11\x12\xa4\x33\x85\x6c\xc6\x1b\x9d\x41\x84\x3e\xcf\x2a\xc9\x1e\xde\x95\xb4\x03\x2f\x93\x69\x07\x5e\xfa\x69\x07\x5e\x9a\xa0\xbd\x92\x41\xf5\xbb\x90\xb8\xab\xda\xee\x85\xef\x0d\xb2\xd1\x75\x36\xc3\x60\x0b\xb7\x2b\x79\x34\x68\x99\xce\x08\x51\x9c\x15\x8a\xbb\xe2\x48\xe8\x9f\x90\x2b\x5d\x45\x2a\x01\x07\x5f\x83\x6c\x89\x57\xab\x6c\x89\xcb\x2c\x76\x71\x46\x9a\xdf\x9c\x65\x71\xd4\x92\x42\x5e\x92\x18\xcd\x5b\x3e\x97\x57\xd9\xb8\x34\xe9\xe9\xab\xa4\x67\x4c\x37\xa0\x03\xa9\x06\xdf\xb3\x18\x31\x0c\xa7\x98\x48\xd1\xe0\x7c\xc2\xc2\xf4\x90\x90\xfa\x1c\x72\xb9\x98\x6e\x72\x27\x38\x16\x3b\x84\xe4\xb2\x54\xa4\x67\x56\xe1\xb4\x48\xc9\x69\xf9\x3e\xec\xbc\xc2\xf5\x6f\x99\x10\x43\x6c\x3f\x23\x4f\xf1\xb7\x4b\x1d\xa7\xc8\xb5\x0c\x7a\x01\x07\x27\xcb\x9b\xcd\xb2\x9f\xb1\x0d\x8d\x29\x53\x4a\xd3\x5c\x05\x74\xd0\x73\x80\xb8\xd9\x61\x12\x3d\x9f\xd7\x1e\x8e\xdb\x53\x59\xc7\x4b\x3e\x0f\x03\x17\x23\x69\x3f\xd0\x60\xf4\x88\x27\xc8\x84\xb2\x06\x81\xca\x70\x45\x19\xc6\x62\x34\xc2\x5b\xb7\xd8\xec\xa2\x5b\xac\x5b\x5b\x60\x74\x8b\xcd\x76\xba\xc5\x6a\x3f\x8d\x31\x5a\x26\xf7\x14\x9c\x63\x34\x68\xfc\x9c\xdf\xe5\xc5\x88\x93\x85\xe8\x49\x96\xe7\xc6\xfe\x1e\xc2\x07\xf9\xf9\xa0\x01\x1b\x6f\xce\xdf\xfe\xd8\x80\x8d\x93\xe3\xb3\xbf\x35\x60\xe3\xf8\xf4\x9d\xfc\x7b\x74\x71\x70\xda\x97\x1f\x0f\x2e\xe5\x7f\x47\xe7\x17\xa7\x8d\x21\xbc\x93\x75\xfa\xa7\x6f\xfa\x6f\x1b\x43\x38\x95\x0f\xb7\x1c\x4f\x24\x9f\xc5\x47\x92\x7b\xcc\x47\x9f\xa6\x9c\x2d\x95\x90\x92\x2b\x28\x1a\x43\x78\x23\xcb\xc9\x02\xc3\x12\xcb\xae\xb1\x4f\x0f\x95\x35\x02\x76\x77\x48\xbe\x3a\xe9\x3e\x28\x68\x03\x55\xe1\xd5\xea\x1a\x67\x0f\xf2\x7c\x05\xcd\xe6\x35\xce\xa6\xa1\x12\xaa\x8f\x43\x3d\x95\x8b\x47\x9b\x5d\xe3\xec\x4e\x56\x53\xb5\x6e\x64\x21\xaf\xda\xe7\xb0\x9a\xe9\x7b\xb5\x32\xcd\x79\xf1\x6f\xe3\x4d\x22\xb7\x88\xa4\xa4\x2e\x96\x16\xf7\xe2\x0e\x4f\xb2\xcf\x7e\x20\x62\x17\x34\x72\x8b\xa9\xe0\xc1\x49\xd9\xbd\xe7\xf2\x9a\xe6\xe8\x3e\x2b\x05\x8a\x7b\x9c\x49\x31\xd4\x04\x39\x57\x84\x60\xc4\x66\x47\x8c\x7f\xb8\x38\xc9\x72\x00\xaf\x71\x36\xc7\x90\x00\xb0\xdf\x58\xd2\x22\x9f\xe0\x5e\xa3\x95\xf7\xfa\xba\x56\xf0\x2e\xf7\x02\xf0\xe2\x94\xfd\x4a\x14\x9a\xc2\xf1\x3c\xdb\x84\x6e\xe3\xfd\xac\x40\x02\xe6\xa8\xb1\xe0\x6c\xd1\x50\x2c\x97\x68\x0b\x76\xc2\xee\xed\x08\x80\x2e\x66\x8b\xc0\x02\x51\x15\xa9\x42\xd9\x7a\xc8\x47\x01\xa0\xfe\x64\x0c\x4e\x1b\x85\x78\x98\x61\xf9\x54\x84\x2d\xad\x56\x19\x2f\x75\x1c\x90\xa0\x02\x66\x0c\x1d\xe0\x01\x0f\xe7\x6c\x08\x9a\x4d\x36\x20\x61\xe5\xa1\xca\x46\x60\xbb\x05\xf0\xd1\x65\x8d\x1a\xf7\x0a\x28\x89\x68\x2f\x5f\xeb\x20\xc3\x18\x3d\x1e\x9f\xbd\xff\x70\xd5\x93\xd2\xd5\xbc\xb7\xd3\x81\xf9\x52\x4e\x2f\xe7\x52\xc6\xda\xe9\x40\x29\xad\xf4\x76\x3a\x6b\x78\xd9\x3f\xe9\x1f\x96\xe5\xd6\xf0\xfc\xfd\xd5\xf1\xf9\x99\xf7\xe2\xaa\xff\x8f\xab\x83\x8b\xfe\x81\xf7\xea\xe4\xe0\x4d\xff\xc4\x7b\x3e\x3a\xee\x9f\xbc\xbd\xec\xfb\xcd\x9c\xf4\xdf\xf5\xcf\xde\xfa\xed\x2a\x1d\x8f\xf7\xe2\xcd\x87\xab\x2b\xbf\xa3\x75\xb9\xa7\x3e\xe1\x58\x63\x52\xce\xd8\xa3\xd1\xf3\xf7\xb0\x32\x42\x0e\x6c\x91\xe9\x5a\x85\xed\xad\xf2\xd8\x16\x63\x4f\xb1\x62\x07\x88\x55\xd0\x18\x74\x51\xbe\x07\x72\x02\x15\x79\x2d\xa7\xd5\x5e\x1e\xab\x09\x97\x6b\xbb\xaf\x1a\x28\x20\x89\x55\x5b\x8a\x1f\x37\x9b\x0e\x78\xa4\xf0\xbd\x3e\x2a\x43\xc3\x42\x8f\x0a\x34\xd4\x32\x35\x34\x21\x68\xd8\xa9\x56\xcf\xa0\xd9\x6c\xa8\x5b\x11\x95\x73\x65\x5d\x69\xfa\xe7\xcd\x4d\x37\xf4\x42\x1a\x03\xef\x86\xe4\x8c\x47\x42\xc9\x67\xa9\xc6\x8e\x4d\x63\xde\xab\x0b\x73\xca\x9b\x01\x97\x7b\xec\x14\x47\xec\xb7\x19\xb7\x72\xf0\x3d\xc3\x4a\xfa\xc7\xf7\xdb\x87\xf2\x97\x42\xc7\xab\x44\xd6\xe6\xd2\xbb\x1e\xaf\xe1\x61\x2d\x7b\xf4\x3f\xc9\xef\x06\x29\xe2\x63\x2a\x82\xde\x4a\x96\xc5\x66\xb3\x65\xca\xdc\xce\x26\xb9\x71\x63\x01\x0a\xf3\x20\x41\xd4\xb3\xd7\xc6\xed\xeb\xeb\x80\x77\xe2\x90\xa9\xf0\xb4\xcf\x0b\x4b\xfd\x56\x27\x45\x8d\xfd\xff\x39\xa2\xf6\xc6\xcb\xf5\xb7\xe5\x32\x35\xf3\x0a\xbb\x45\x40\x8f\x87\x2c\x1c\xb1\x96\x2b\x57\x18\xc0\x8b\x7a\x06\xf5\xeb\x63\x2b\x40\xee\x47\x57\x28\xb7\x95\xdc\xc9\x88\x3e\x3b\x28\x42\x75\x5d\xf4\x2a\xb8\x58\xdb\xfa\xee\x56\xd8\x99\xb6\x39\xf4\x6c\x20\x6e\xbf\x5b\x75\x4a\x7e\x41\x3c\x70\x37\xe1\x76\xb2\xb7\xca\x1e\xcd\x39\x2c\x06\x89\x7e\x86\xc8\x83\x0c\x43\x13\xe3\xde\x38\x5a\xc4\x6b\x13\x83\x54\xcb\x4a\x07\x66\x60\x25\x2e\x88\xd2\x32\x4f\xdd\x04\x39\xdc\x53\x61\x38\xa3\xd6\xce\x2e\x33\x0a\x13\x10\x83\x5e\xa5\x68\x6a\x02\x4b\x94\x79\xff\xbf\x6f\xd3\x86\xcc\x7e\x38\x49\x0c\x5d\xca\xad\x47\xca\x5d\xa3\x37\xab\xb2\x9b\x0c\xda\x0b\x54\xa0\x0c\xf2\x27\x10\x26\xce\x07\x57\x76\x49\x64\x97\x52\x20\xb3\x5d\x6a\xd1\x0c\x8a\xb0\x4b\xdd\xa0\xd7\x2b\xb1\xb2\xe9\x05\x06\xf0\xec\xff\x9f\xe6\xdf\x7b\x9a\x0f\x31\x80\x3f\xff\xef\x9b\x66\x23\x38\x87\x34\xcd\xb0\x04\xf0\x3e\xfb\xb5\x94\xac\x8c\xc7\x0e\x39\xba\xcf\x30\xd8\xa2\x36\x4f\xbb\xa1\x5b\xbc\xc4\xc2\xe3\xff\xa5\xd3\xe3\x4e\x82\x9d\xae\xce\xbe\x50\x99\x2f\xc7\xf8\x28\x73\xfb\x5f\x47\xfa\xdb\xb6\x31\xa4\x32\xa6\xe9\xb9\x29\xd9\x56\x75\x54\xfb\x4e\x23\x78\xb5\x72\xd9\x4d\xca\x5c\x84\x65\x8e\x2f\xa5\x19\x37\xc9\x08\x1b\x8d\x5e\x2a\x61\x89\x2e\x53\xa6\x50\x91\x00\x9e\xd4\xea\xce\x83\x20\x3a\xc5\x8c\x89\xc2\xaa\xcf\x47\xa5\xed\x98\xb5\x67\xc1\xd6\x72\xcc\x86\x86\x59\x38\xeb\x2b\xc4\x4b\xcd\x3a\x67\x2c\x91\x16\x10\x26\xf4\x74\xdd\xa4\x9e\xae\xeb\xeb\xe9\xba\xc3\x5e\x27\xcc\x3e\xd4\xea\xda\xfc\x43\x9d\x3d\xfa\x0a\x71\xe5\xfd\x4c\x06\x74\x88\x26\x3e\x37\xaa\xee\x3c\x55\x32\x43\xfb\x07\xa8\xf8\x94\xd9\x63\x81\x67\x93\x9e\x58\x2b\xc5\x6c\x21\x8f\xa9\xf8\xbc\x94\x98\x5e\x81\xb5\x93\x84\xb5\xe3\xc3\xda\x91\xb0\x72\x0f\x56\x6a\x61\xd5\xf1\x61\x90\xce\xd8\xcc\x07\xa2\x02\x2b\x8f\x61\x8d\xf5\xda\x24\x65\x11\x2b\x11\x7c\x36\x09\x34\xf2\x6a\x0d\x07\x9d\xa1\x59\xb3\x4a\xa8\x9e\x4b\x3c\x9b\xd4\xd9\xc6\x4c\xb1\xc8\x3a\xa0\x5a\x45\x99\xef\xd5\xea\xaa\xb5\xbd\x67\xa5\x96\xb2\xf5\xaf\xdb\x2a\xba\x8e\x03\x1c\x21\x34\xd1\x78\x2b\x2a\xed\x38\x73\xc5\x3a\xa8\x1d\x56\x56\xaa\x96\xc6\x81\x1b\x0c\x8f\x4c\x89\xb0\xf2\x0d\xa1\x71\x86\x5b\x7b\xa7\xe4\x92\x5c\x87\xa5\xc3\x79\xc5\x5e\xf9\x0e\x8c\x67\xa7\xf4\x3b\xf9\xb2\x3e\xe2\x29\x7d\x46\x95\xc4\xec\x61\x2f\x05\xb0\x49\x9d\x5c\xad\x97\x9a\x3a\x5c\x9a\x7f\xd9\x6f\x89\x9a\x9e\xcd\x69\xb5\xaa\x4f\x54\xaa\xeb\x95\xac\x1a\x2e\x98\xd7\x40\x74\xaf\x72\x4b\x66\xe3\x44\x2d\xbd\xbd\xca\xad\x61\xd3\x1a\x57\x88\x5c\x44\xe2\x62\x02\x57\x45\xf0\x60\x74\x64\x92\xe1\xd7\xc8\xeb\xc6\x58\x23\x94\x77\x6d\x17\x39\x9d\x62\x73\xe1\xf6\xe6\xc3\xbb\xde\xf6\x48\xdf\xba\x4d\xb1\xd8\xfe\x83\xbe\x71\x9b\x70\x36\xdf\x56\x46\xc0\x7b\xdb\xba\x3e\x32\x11\x6d\x83\x36\x13\xfb\x1d\x0f\x43\xf0\xaa\xe7\xde\xff\x28\x80\x01\x64\xc8\x1a\x16\x1e\xd5\x9d\x42\x16\x8b\x4d\x2c\xc6\xb1\x8d\xb3\xa9\xfd\x2e\x0a\x34\x18\xc2\x74\x01\x13\xae\x31\x51\x22\x8c\xe7\x58\xdf\x52\x58\xae\x2c\xa0\xef\xa5\xca\x0c\xe6\x95\x2f\x95\x26\x35\x6f\x90\xaa\x61\xbe\x54\x6a\x8c\x5d\xb0\x84\x3a\x8f\x7c\xe7\x0a\x95\xda\xf4\x15\x10\x6d\x6c\xb1\x24\x9c\xd6\x49\x3f\xca\x72\x6d\xdd\x52\x52\x1d\x54\x46\x14\x76\x10\x0d\x2b\xdd\x41\x4d\xe8\xd4\x24\x11\xab\x59\xfe\x30\xbc\x40\x2d\x0e\x58\xe0\xd2\xfd\x87\xeb\xbc\xb1\xfb\x34\xea\xd4\x40\x11\xe1\x4f\x1a\x88\x31\x19\x9b\x10\x18\x55\x8a\xe8\x21\x41\xba\xb2\xf6\x65\x4b\x46\xa2\xab\xba\x4e\xa0\x34\x66\xc0\x5b\x94\xc2\x09\x2f\xd5\xed\xc4\xcf\x70\x2b\xd0\x64\x80\x87\xf0\x76\x80\x87\x9e\x37\x9e\x30\xf7\x30\x28\x8d\x1c\x70\x8c\x52\x68\xe1\xb1\x6a\x0b\x3f\x5c\x0d\x47\x8b\x01\x1d\xc2\xf1\x80\x0e\x3d\xe7\x28\xae\xfb\x98\xa3\x78\x6e\x54\x33\xda\xdd\x68\xee\xbb\x1b\xcd\x07\x64\xa8\xcb\xb1\x07\x93\x0e\xf3\x01\x6d\x44\x27\x78\x57\xf3\xdd\xae\xa1\xea\x8a\xa1\xce\x1e\x7b\xf5\x60\xbb\x62\xca\xb3\xe9\x61\xc0\x86\xb0\x40\x77\xf2\xbf\xbc\x4d\x74\xbd\xac\xb0\x09\x2d\x9f\x83\x46\xf0\x66\x63\x31\xdd\xb9\x8e\xb3\x33\xf5\xe3\xec\xcc\xd0\x74\xb0\x1c\xc2\x11\xba\x91\xff\xcd\xac\x8f\xde\xc8\x18\x04\xc0\x5f\x36\x58\xc7\x58\x5e\x51\xc7\x1f\xf7\x82\x20\x53\x84\x2b\x91\x91\x35\xed\xbe\x16\x3c\xa7\x45\x6e\x6e\xb6\x5d\x34\xcc\xb8\x05\x2b\x18\xc4\x8d\xa4\x8d\xde\xd3\x59\x27\xea\xb2\xc9\xcd\x53\x4c\xe5\x41\x0c\x40\x0d\x9b\x10\x03\x5a\x69\xe8\xed\xf9\x69\x5d\xdd\x78\x30\x11\x8b\x83\xa7\x84\x56\xcc\x83\xc2\xf9\xc2\xf7\xdb\x47\xb8\x42\x02\xea\x29\xb9\x57\xd9\xdb\x6f\x55\x86\x6e\x23\xb5\x8e\x1a\xf9\x60\x9d\x38\x7f\x05\x45\xf6\x9b\xac\x8b\x81\x5d\xdf\xc1\xd3\x24\x37\xd5\x7e\x14\x88\x39\x39\x09\xb5\xc4\x34\x9a\x03\x53\xee\xb9\x24\x15\xc5\x6d\xd4\xed\x05\xdb\x42\x16\xb5\xeb\x14\x00\x47\x2c\x1e\xaf\x41\x30\x73\x4f\xf5\x2b\x0c\x56\xc0\xc6\x34\xae\x1e\xa8\x95\x5c\xae\x3e\x8e\xfb\x63\x72\x49\x59\xe1\xf7\x4f\x1a\x9d\x38\xa1\x55\xdd\x4b\xde\x13\x3a\x66\xf7\xce\x94\x04\x52\xf4\x18\x6f\x3c\x75\xb1\x33\x56\x41\x39\xe2\x7d\xa5\x3e\x8d\x4c\xf2\xab\xdf\x3e\x07\xff\x2f\x18\xc0\x37\x4f\xea\x3d\xb4\x4a\xb2\xb2\x1e\xdf\x26\xd7\xe3\x5b\x7f\x3d\xbe\x1d\xf6\x76\xbb\x90\x55\xeb\x7e\x97\xac\xfb\x9d\x5f\xf7\x3b\x59\xd7\x70\xc9\x22\x1f\x7d\xb2\x3a\x97\x5b\x9c\x2f\x2c\x4d\x5d\x70\x36\xe5\xf9\xdc\xaa\x5a\xf0\x67\x81\x39\x75\xa1\x8b\x17\x23\x44\x4c\xb0\xe3\x1c\x31\xc3\xf1\x2d\x39\x57\x91\x63\x2e\xc9\x2f\x18\x25\x33\x16\x3b\xf7\xb8\x0a\x05\xf3\xa2\xb0\x98\x66\x2d\xab\x13\x7d\xd0\xcf\x93\x45\xf0\x79\x62\xb8\x02\xfd\x54\x2c\x76\xbb\xe1\xce\x58\xb0\xc5\xa6\x6e\x8b\xa0\xfa\x64\xb1\xdb\x75\x63\xf3\xde\x6b\xf5\x44\x7d\xb7\xf2\x7b\x37\xda\x92\x2a\x66\xd8\x3c\x9f\xcd\x9e\x3d\xea\x0a\xe0\x1b\xaa\x87\xf0\xa9\xb2\x24\x26\x0a\x53\x26\x58\x9d\x1a\x64\x31\x6a\xe1\xdd\xea\xda\x6d\xd9\x25\x8e\xb4\x21\x12\xfb\xab\x44\xcf\x02\xb1\x18\x39\xd4\x70\xc8\x24\xe7\x24\x1f\x8f\x79\x85\x04\x6a\xdc\xb8\xfa\x3a\xc8\x64\x8f\xa9\xe6\x2a\xf3\x63\x41\xe1\x79\x58\x5c\xd9\x04\x89\x5c\x54\x6c\x6d\x3d\x3a\x2c\x87\x83\xfc\x9d\xb0\x45\x26\xd9\xae\x52\x92\x02\xcf\xb6\x65\xcb\x78\x27\x7a\x05\xdb\x4c\xc5\x4e\xca\x30\x50\xea\x3d\x3f\xcc\x75\xb9\x3d\x68\x20\x45\x2f\x46\x2d\xb9\xb3\xca\x9a\x21\xbc\x36\x42\xc0\xf9\x32\x36\x36\xf3\x74\x29\x4b\x15\xcc\x98\x26\x0f\xad\xe0\x7b\x45\x61\x4f\x8a\xd3\x7c\x74\x4b\x28\xde\x0f\x1a\x33\x2f\x33\x0c\x7a\xc1\xfb\xcb\x87\x42\xd1\xc1\xfa\x6e\x4c\xcd\x60\x71\x4d\xae\x4b\xac\x03\x85\xe9\x74\x97\xdf\xfd\x67\x2f\x98\x85\xd2\x79\x56\x27\x9d\xfc\xee\x2f\xe1\x77\xb3\x8b\xdd\xe7\xbf\x56\xaa\x97\x9b\xc5\x16\xfa\x73\x27\x6e\xa3\x5a\xe6\xbb\xb0\x8c\x1e\x5d\x9b\x2d\xba\xe6\xfb\xb7\x7f\xad\x7e\x4f\x6c\x3c\xdb\xda\x8b\xa0\xb4\xf2\x04\xf5\x5b\x7b\xf1\x6d\xf0\xdd\x9c\x22\xf6\xe3\x77\x89\x8f\x57\xb6\x81\x75\x7a\xbe\xcd\x8a\x44\x0b\x9b\xbb\xef\x99\x80\x18\x9a\x99\x37\x0c\xfb\x87\xa7\xcc\xd9\x95\x4b\x65\xd2\xf3\xf8\xb9\x5e\x91\xb2\x9b\x7f\x7f\x7d\x37\xcf\xf7\xa4\x84\x3f\x6c\x3a\x67\xed\xed\x82\x9f\x94\xc5\x93\x29\x98\x27\x35\xb8\x97\xa3\x25\x2f\x18\xbf\x54\x67\xa3\x4a\xe4\xd6\x56\xbf\xf5\x47\xe5\xbc\x51\xf3\x6d\xe1\x65\xa8\x91\x5d\x9b\xc3\x93\xde\xd9\x23\x76\xcc\xe6\x28\x29\x4a\x84\xe9\xc0\x3d\x11\xc3\xca\x0b\xbe\xf3\xc0\x84\xf1\x63\x9d\xeb\x4a\x47\xb1\x49\x9a\xf4\x4b\xe0\x64\x93\xf2\x9d\xbb\x43\x13\x81\x0d\xaa\xe3\xa7\xaa\xc1\x2d\x21\x95\xb8\xc6\x71\xb1\x9c\xd7\xd9\x3d\x07\x1d\xc4\xde\x9c\xd4\x33\xf6\xad\x36\xae\xdf\xa9\xa7\x2b\x9e\x8f\x3e\x61\x9e\x09\x10\x47\xf6\xaf\xc6\xa9\xab\x55\xcb\x7a\x65\x22\x79\x29\xd4\x59\x87\xd5\xca\x95\xb4\xd4\xb9\x72\xfa\xd6\x39\x64\x78\x18\x62\x5c\xe4\x2b\xaf\xd3\x4d\x86\x53\x51\x7b\x31\x10\xcf\x8e\x9c\xeb\x8f\x46\x91\x6c\xd6\x12\x24\x78\x0d\x25\xbe\xe4\x37\x5f\xd3\xfa\xbb\xa7\x5b\x57\x75\x4e\x48\x51\xef\x38\x90\x6c\xf9\x6f\x61\xcb\x10\xd7\xb6\x6d\x6a\x25\xb8\x82\x67\xdf\xdd\x35\x9b\xfe\x93\xb5\x43\xaa\xae\xf4\x56\x68\xa0\x4a\x55\x00\xc7\x28\x58\x2c\x06\x50\xac\x56\x4a\x96\xd3\xdb\xf5\x8d\x0a\xb5\x93\xa9\xd8\xe4\x4a\x8e\xb9\x66\x0b\x4c\x2d\x52\xc7\x3d\x59\x75\x25\xae\x60\xd5\xc6\xd5\xb9\xd1\xcd\xb5\x95\x33\x30\xf9\x05\xfb\x69\xec\xae\xaf\x55\x46\xab\xda\x1e\x25\x26\x86\xbd\x79\x20\xfa\x1d\xc6\x85\xca\x66\xeb\x4b\x79\x09\xd8\xea\xf8\x36\xdd\x5b\xe9\x5c\xb3\x55\xb7\x4b\xa5\x98\x91\x02\x34\xd5\x7e\xe8\xb9\x31\x8f\x3d\x78\x60\x80\xb6\x89\x88\xae\x89\x3d\xec\x31\x7a\x8e\x32\xa2\x0a\x90\x46\x00\xbf\x0e\x12\x8f\x61\x97\x9b\xe9\x4b\x4e\x94\xf0\x60\x50\x92\xb4\x39\x10\x88\x3c\x04\xfc\xc4\x76\xd1\xac\xa4\x87\x50\xf2\x7e\x72\x46\x2a\xae\x06\xfa\x84\x0c\xbc\x0d\x02\x4e\xde\x4b\x8b\x56\x21\x6d\xf7\x64\x36\x3b\x0c\xf2\xa6\x41\xcb\x3a\x95\x7e\x6c\x95\xfd\x1b\xa4\x88\x4b\x9e\x47\x95\x2d\xfc\x22\xb9\x85\x5f\xf8\x92\xea\x0b\xe3\x26\x63\x16\xa2\x9a\xc7\x2e\xe5\x32\x95\x28\x97\xf6\xd0\x58\x04\xcb\x4a\xc1\x56\x79\xae\xfd\x28\x77\xff\x56\x9a\xa6\x71\x6d\x99\x11\xed\xe9\x9a\xfe\x6c\x57\x2e\xfa\xdc\x73\x26\x73\xc3\x72\x07\x07\x8f\x8d\xa5\xf2\xb7\xcc\x18\x0a\x46\x9a\xaa\x83\xf1\xd8\xa3\x67\x55\xd9\xcd\x92\x9a\x0a\xdd\xab\xb6\xe4\xd1\xbf\xda\xcd\x69\x9b\xab\xd2\xcb\x98\x06\xba\x12\x1b\x9d\xda\x2a\xed\x19\x97\xb6\x44\x6b\xe7\xcf\xa0\x1d\xb6\xb9\x90\x44\xc5\x8d\xc5\xe8\x5f\x59\x4a\xdb\x4c\x94\x5b\x30\x54\xc5\xb9\x14\x9e\xf5\x94\x2c\x18\x94\x41\x70\x3f\xf5\x67\xbc\x9e\xfe\xd7\x3a\xfa\x3b\x66\x73\x7b\xe4\x39\xe3\x32\x14\x13\x03\xe5\xfc\x5f\xf1\x13\x74\xa4\x3a\xa4\x26\x14\x12\xc9\xc7\x92\x34\x2c\x4f\xf8\x24\xce\x13\x5e\xde\xb8\x74\x76\x8c\x89\x54\xbc\x14\xb6\x97\x23\x9e\x4f\xd3\xa7\x8e\xba\x43\x48\x38\xf5\xec\x67\x02\xfd\x23\xec\x8f\x42\xec\xf9\x35\xc1\xaf\x84\x50\x80\xde\x3f\xc3\x52\xc1\xca\x79\x2e\xf7\x35\xab\xa7\xe2\x0d\x3c\x3d\x63\xa5\x0f\x69\xa2\x37\x7f\x2d\xe3\xbd\xaa\x7b\x31\x41\x79\x2b\x9d\x79\xa8\xa2\x42\x72\xe3\xf1\x21\xa3\xc2\x9c\xd5\x21\x5a\x9a\xbd\x1b\x1f\x48\x41\xfb\x9b\x50\x71\x49\xab\x3d\x6c\xc0\x7f\x10\xf3\x03\x41\x47\xf5\x18\x80\x82\xf9\xb7\xe5\xbe\x6e\x38\x15\x6c\x4e\xf4\x60\x49\x10\x45\x31\x1e\xd4\xf4\x18\x9f\x4e\xe1\xac\xd4\xa2\x82\x8f\x2f\x15\x82\x1c\xcf\xed\x93\xad\x18\x8a\x92\x1a\xfb\x93\xbe\xc0\xf5\x74\xaa\xf4\x0b\xae\x41\xf6\x54\xdb\xbf\x82\x5a\x95\xfd\x7d\x21\xb1\xda\xe8\x29\xea\x76\x5e\xe8\x30\x1a\x73\x78\x49\xef\xec\xc0\x76\x33\x79\x5c\x7b\x2d\x58\x63\x94\xd0\x50\x26\x4a\x94\x99\x06\x2f\xf2\xc8\x48\x81\x92\x08\xa5\x1f\xb5\x15\xd9\x40\x07\x83\x63\xc8\x6a\x2a\x82\x6b\x24\x15\xa6\xc5\x8f\xaa\xc1\x94\xb1\x97\xd0\x46\xd0\xb6\x0a\x80\x6c\xe3\xb5\x90\xcb\x3f\xb9\xe1\x4a\x28\x21\x39\x5b\xa4\x58\xaf\xa1\x6e\xc7\xc3\x8a\x2f\x6e\xcb\xab\x5b\xde\x38\x7d\x7c\x4a\x3d\xa5\xb5\x1a\x61\x74\xb5\x30\x3b\xa3\xf7\x38\x2e\x59\xa8\x22\x48\x52\xae\x02\x6d\xa4\x6f\x44\xc6\xf1\x5d\xa2\xb3\xaf\x40\x95\x36\x55\x50\x86\x66\x53\x58\x3b\xa7\xd2\x7c\x42\x04\xe6\x13\xca\x6e\xc2\xda\x24\x44\xcc\xe5\xf3\xc3\xa1\x7d\x4d\xd0\x37\xe3\x2f\xa2\x7e\xfb\xb1\xbc\xbe\x3c\x18\x9c\x69\x49\xfe\xf4\x82\x80\x3d\x4f\x1e\x4d\x90\x2d\x6b\x34\x64\xd6\xa2\xd5\xfa\x02\x79\xc8\xd4\xd9\xdd\x7d\x2e\x0b\xdb\x41\x08\xf9\x35\xad\xdb\x8f\x9a\x10\x9b\xce\xd4\xe0\x12\xbe\xdf\xfe\x80\x4b\x85\x82\xc6\x28\x7c\xbf\xfd\x6f\x5c\xa5\xaa\x9b\xd8\xf0\x2f\xe8\x13\xfb\x7d\xc5\x67\x42\x28\x09\xd4\xd8\x0b\x59\x1c\xaf\xbc\x59\xad\x02\xe3\x32\xf3\x36\x6d\x58\x64\xd5\x1b\x41\x1f\xd6\x21\xcc\xc3\xa8\xe8\x9c\x92\xac\x95\x51\xfb\xfe\xf8\xbf\xc2\xc6\x3f\xb1\x83\x13\x1b\xdc\x8b\x3a\x0d\xb1\x51\xe9\x28\x83\xfc\x8f\x18\xc0\x77\xff\x2b\x06\xc2\x71\x91\x8a\x7b\xec\xa2\x74\x47\x94\x88\x36\x9b\xd4\xa7\x44\xda\xc6\x9c\xfa\x39\x48\x7d\x6b\x89\x8c\x0e\xc4\xd0\x4a\xd8\x76\x06\xb6\x2a\x14\xe4\xeb\xa9\x2b\xe4\x6e\x3e\xff\xb6\xe1\x3e\x20\x49\xd8\x55\x08\x6d\xa5\xd8\x14\x70\xf3\xe7\x67\xd2\xf0\xb0\x9a\x8d\x74\xa4\x48\x51\x82\xcf\xc2\x1e\xb9\xfe\x5d\x09\xb6\xa7\xf6\x2a\x81\xbb\xc5\xf9\x38\x73\x4b\x81\xe5\x8e\xfb\x22\xd2\x9d\x6c\x54\xe4\x64\x16\x35\xfa\x45\x64\x3c\xd6\x3d\xd6\x51\xe8\x67\xd1\xe4\xda\x62\x31\x21\x8d\x0b\xd6\x51\xc3\xb8\x5c\x95\x96\xa9\x12\x92\x48\xfd\x01\xa3\x17\x7f\xfe\xcb\xb7\x2f\xbf\xfb\xf6\xbb\xef\xe0\xdf\xeb\x4d\x90\xf5\x2c\x7e\xa5\xdb\x87\x3c\x31\x98\xbd\x87\xfa\x5a\x3f\x97\xc1\x50\x0b\x30\x41\x2e\xeb\x9f\x8b\x34\xce\x2b\x33\x76\xcf\xcb\x26\x0a\x5f\x8a\xb3\x06\x5d\xce\x6f\x30\x2f\x3d\x83\x44\xb3\x59\x79\x47\xf7\xcb\x1e\x8d\x65\xbc\x8a\x7d\x93\xaa\xec\xfc\x91\xaa\x95\x8e\x38\x9b\x67\xc2\x5c\x53\xeb\xf7\xa3\x19\xa3\xce\xcc\xfe\xe7\xc2\x6b\x3c\x66\x9b\xe5\x87\xd4\xbd\xb8\xf5\x1a\x1a\x0c\x8d\x0d\x29\xde\xa3\xaf\x84\x36\x1e\xf5\x4c\x36\xa6\x58\x64\x7e\x64\x9b\xd8\xd4\x6b\x91\x14\x0b\x0c\x90\x6c\xf1\x90\xb8\x46\xbf\xe7\xa4\x62\x63\xa7\xcd\x9f\x82\x74\x3d\x2e\xe0\x85\x35\x48\xd8\xe9\x6c\x99\x5b\x76\xeb\x8c\xa5\xef\xd9\x1b\x37\x8c\xcd\x70\x4e\x1b\x3d\xf5\x54\x86\x3e\xeb\xb9\x7a\xea\x83\x99\x74\x7b\x01\x8d\xff\xd8\x45\xa8\xd3\x6c\xee\x64\xa7\xb9\xb8\x6d\xe7\x37\x45\x86\xc1\xeb\x3f\x60\xb0\x65\xb2\x80\xd8\xea\xdd\xf5\x3a\x13\x60\x3f\x33\xb2\xdb\xcf\x16\xef\xdc\xe4\x07\xb6\xcb\x7a\xe8\x6a\x8c\x17\xf9\x7d\x86\xe1\xff\xe5\x20\x58\x3a\xef\x53\xc2\x80\x20\x1a\x5a\x04\x73\x34\x3f\xf8\x55\x47\xfd\x1f\x0d\xa0\x12\x81\x8c\x32\xb1\x5d\xcc\x49\x19\x5d\xcc\xab\xf0\xea\xd5\xcb\xd5\xb7\x6b\xe5\xbf\xf0\xac\xaa\x58\x56\x50\x51\x1f\xb7\xc2\xc9\xb7\xdf\xf7\xbb\xdd\xde\x4b\xfd\x8d\xa9\x38\x81\xee\x53\xf7\xaf\x5b\xe9\x15\xda\x7e\xf1\x9f\x6e\xd2\xeb\xf2\x31\xa9\x45\x48\x61\xd2\x45\x7e\x5f\x8f\x82\xde\x64\xc7\x68\xb8\x21\x0b\x82\xae\x3b\xc5\x42\xd5\x2c\x8f\xf1\x57\x9d\x7d\xb3\xe6\x83\xff\x2b\x86\xbd\x94\xfd\x87\x31\xfd\x78\xe9\x90\x47\xdb\x3d\x74\xbb\x21\x32\x6e\x77\x9d\xcd\x85\xba\x00\xd0\xc6\x11\xd6\x5e\x24\xc2\xc0\xed\x44\x47\xff\xd9\xb4\x5d\x39\xe3\x0e\xfc\xfa\xf5\x4b\x63\xd0\x61\x5e\xed\x66\xf2\x1d\x78\xce\xdc\x62\x3d\xc1\xb1\xdd\x51\x81\xab\x02\x83\x9e\x1d\xf5\xcd\xa3\x40\xc6\x61\xa5\xb3\x51\x52\xd6\x85\x36\x0a\xb7\xba\xf5\x19\xa6\x12\x2c\x2b\xc8\xfe\x63\xa3\xa5\xa1\x6f\x6d\xe6\x64\x59\x67\xe9\x57\x2c\x7c\x7b\x69\x95\xad\xb7\xc6\x91\x49\x16\x57\xf7\x0d\x7f\xc7\xb0\x03\x77\xb5\xb1\x1b\xc7\x85\x08\x43\xdd\x95\x8c\xa3\x2e\xeb\xb9\x20\x62\x9f\x3d\xa4\x1a\xfb\x32\x01\xb1\xe2\x0d\x2b\x3d\xc1\x0e\xc4\x2e\xf9\x52\xe2\x9a\xa4\x2a\x9e\x68\x83\x1c\xdd\x6c\xcb\xb8\x06\x2d\x2a\x3a\x52\x75\xc5\x42\x47\x6c\x8c\xc7\xc7\xf3\x39\x1e\x93\xd8\xab\x36\x6e\x4b\xa2\xf9\xe6\xe6\xce\x96\xbe\xfd\xcd\x46\x68\x12\xfe\x95\xe3\xe5\xa2\xca\x51\x7d\x25\x2f\x60\xba\xf1\xcc\x3b\xed\x39\xe3\x40\xa8\xd8\x23\xa7\x0f\xa9\xa0\x72\x8c\xfa\x0b\xf6\xdb\x81\xdc\xb5\xda\x8e\xd2\x90\xd2\x42\x1a\x3a\x9b\x2d\x76\x25\xfa\x26\x4c\x24\x49\x1d\x6b\x5c\x69\x71\x77\x37\x1e\x08\xc6\x9f\x7e\xb3\x91\x74\xb6\x36\x77\x9e\xf0\x29\xf8\x35\xc6\x0e\x21\x03\x67\xf6\x75\x1d\x08\xad\x8a\x73\x52\x3a\x7e\xcc\xd7\x5e\xd4\xda\xee\x2b\xa8\x4f\x5b\xa2\xb2\x67\x22\xfe\xb1\x12\xa1\xd1\x18\xe6\x2a\xae\x2d\x61\xe3\x2f\xdf\x2b\x1f\xe7\xe7\x35\x51\x67\x17\x69\x32\x8c\xd7\x1d\x73\xc5\xa2\xd5\x4d\xcc\xa6\xd7\xa4\xd8\xad\x36\x9a\x3e\x14\x74\x55\x73\x28\x44\x37\x02\x2c\x1a\xca\x13\xe3\x30\x13\x0d\x1d\x8c\x36\xb9\x87\x04\xfd\x9f\x4f\xd8\xc2\x69\x05\x30\x6f\xe7\xb3\xfb\xfc\xa1\xb8\xc0\x77\xf9\x8c\x8c\x73\x15\x08\xc3\xad\x31\x69\x36\x89\x5e\xc6\x09\xcf\xe7\xb8\xc6\xd6\xcd\xb3\x6a\x73\x39\x70\x90\xf0\xb2\xe3\x58\xc5\xba\x67\xc2\x66\xfc\x78\xa2\xbe\x11\x4b\x89\x18\xf8\x33\x1e\x55\x03\x33\xba\xac\x1d\x21\x78\x65\xd6\x28\xc1\x35\xb9\xda\xdb\xe1\x65\xf6\x93\x3d\x60\xec\x7c\x6c\x08\x24\x55\x33\x34\x04\xce\x00\xd8\xa7\x9e\xcd\xe4\x2d\x29\x0c\x5f\x5a\x76\x93\xb2\xb0\xa9\x58\x58\x7b\x1d\x68\xe3\xcf\xca\x0d\x50\x92\xdc\xfa\xbd\xd8\x8b\x7d\x2e\x52\x37\xfb\x8a\x4d\xa9\x60\x98\xee\x51\xe7\xf7\xe9\x7f\x1e\xe1\x85\xfe\x08\x6b\x86\xb0\x81\x0b\x51\x85\x37\x32\x21\x5e\x73\xd6\xcc\xcd\xf1\x22\xff\xbd\x29\x34\x93\xf6\x18\x74\xe9\x92\xbf\x3a\x63\x9b\xda\x16\x5c\x20\x0a\x0b\x93\xa0\x9c\xc3\xa2\xcd\x97\x54\x90\x39\x46\x04\x16\x26\x59\x9b\xba\xac\x6f\x40\x7d\xa3\xa4\xd5\x46\x85\x8a\x1f\x69\x7f\x2b\xc7\x6d\x8e\x29\xca\x61\x51\xe6\x7a\x2b\x9e\xa9\x33\x7b\x96\x7a\x46\xb7\x1a\x5b\x48\x86\xa1\x3d\x9e\xd4\xaf\x9b\x46\x02\xcd\x0c\xfd\x02\xa5\xba\xa9\xef\x2b\x61\x9e\x4c\x42\xa7\x50\xd5\xdc\x84\x99\x69\xb2\xdc\xcb\x13\x1a\x50\xbf\x4b\xef\x2a\x82\x3e\xe1\x48\x65\x5d\x0a\xf4\x32\xda\xcc\x75\x56\x83\xe8\x35\xea\x32\x03\x46\xe7\xa7\x43\x36\xa2\x53\x03\xaa\x14\x02\x0a\xd9\x96\x5f\x11\xb0\xd6\xb5\xe0\xd0\x6e\x69\xd0\x4a\xf0\x87\x06\x5c\xaa\x94\x4d\xcb\xf6\xb5\x4e\xfe\xe7\x6c\x2f\xaf\xf2\x69\x99\xb7\xca\x4f\x09\x08\xe0\x32\x8d\x57\x2a\xbf\x26\x09\x27\xc7\x18\xf8\x92\x5f\x74\x58\x53\x89\xa2\xf1\x3c\xc9\x8e\x8d\x3c\x60\x1c\x32\x55\x96\xec\x11\x9b\xdf\x10\x8a\x2f\xe5\x89\x01\xc2\xe5\x93\x94\x84\x7c\xcd\xb2\x1b\x85\xb5\x5f\x37\xa2\x34\x69\x95\xa0\xc7\xd9\x09\x1c\x66\x2c\x84\xf6\x1e\xd2\xf6\xc1\x5c\x51\x2e\xa0\xf5\x2a\xe1\xf8\x0e\x16\xe5\xa5\x30\x34\x29\xed\x0c\x8a\x6c\x91\xf6\x68\x86\x73\x9e\xd9\x90\xaf\x3f\x58\x9b\xe5\x6c\x29\xd1\x07\x72\x68\x25\x31\xf5\x0c\x00\x1c\xa1\xb9\xb0\x65\x04\x5c\xc2\x19\x80\x13\x73\xb8\x9d\x10\xfa\x09\x2b\xfd\xe5\xd6\xc8\x1e\x3f\x19\x2b\xb5\x10\x14\x3c\x52\x23\x45\xfd\xc3\x09\x3e\x99\xd0\xaf\x24\x61\x50\xab\x40\xe8\x54\x67\xcf\xf6\x68\xf9\xc4\x7d\xd5\x89\x44\xf1\xc6\xd2\x04\xac\xad\x99\x98\xa4\x54\x79\x69\xf5\x81\x8a\x35\x24\xeb\xec\xbf\x31\x80\x42\x3c\xa9\xe4\xd6\xee\x24\xf6\x90\x9e\xe7\xfc\x13\xe6\x56\xea\x53\x18\x56\x60\x2e\xd0\x4e\xd7\xbd\x79\x8b\x67\x58\x60\xf7\x66\x9e\x2f\x10\x96\x7f\x3d\xd3\x74\x42\x55\xd2\x3b\xb3\x66\xa9\x73\x5b\xdf\xc8\x87\x77\xcf\x5e\xea\x75\xdb\xb2\x5d\x61\x0d\xa4\x5d\x63\xdb\x07\x5c\x6a\x02\x3d\xd3\xc1\x5d\x97\x88\xec\x67\x33\xc4\x06\x64\x08\x12\xa4\xb0\xe7\x0d\x50\xc7\xaf\x46\x79\xfb\x6e\x7e\xc4\xb8\x1e\xa3\x04\x63\xa9\xd6\x59\xa5\x74\xd6\x79\xb4\xb9\xbf\xca\xb7\xe5\x2a\x13\xf0\xc8\x06\x78\x88\x26\x88\xb8\xb4\x5f\x1c\x0a\xb9\x41\x6b\x57\x2c\xc6\x1f\x57\x58\x2f\xf7\x64\x63\xe5\x49\xb9\x3d\xd7\x00\x46\x81\xa3\x27\xd0\xb3\x14\xb5\x2b\xd6\xa9\xb8\x3f\xe5\xa1\x57\x70\xf8\x7d\xce\xee\x9e\xb0\x05\x90\xeb\xc1\xa2\x15\xc8\x11\x19\xe0\x21\x2c\x10\x19\xf0\xa1\x0e\x0c\xb5\xf5\xdf\x59\x0e\xf9\x7e\xed\xdc\x03\xc8\x4c\x4c\xbe\x2c\x97\xbf\xa3\x84\x51\x45\x2c\xf6\x6a\x74\xab\xe1\xbe\x25\x4c\x14\x89\x01\x1e\x6e\x05\xee\xb4\xea\x02\x8d\x82\x10\x27\x6d\xb7\x14\x40\xdd\xea\xb6\xac\x58\x41\xec\x68\xe2\xc6\x8c\x56\xbd\xea\x34\x42\xa6\x49\x70\x16\xae\xc4\x6a\x15\x76\x60\x6f\x26\x69\xed\xa9\xe4\x05\x4c\xd0\x83\x1d\x7d\xf9\xb9\xe4\xda\x00\x60\x6b\x64\x0e\xa4\x19\x29\xc4\xae\x61\x76\x46\x6a\xe3\x06\x99\x52\x47\xea\xe0\xd7\x39\xf9\xf0\x18\xf1\xf6\xf1\xd9\xf1\xd5\xf1\xc1\x09\x1c\x79\x79\x06\xb5\x33\xdb\x04\x8d\xbe\xe0\x44\xb3\x07\xe3\x48\x9d\x85\xfe\xf1\x03\xb2\xc1\x4c\x65\x33\x9c\x0c\x01\x1c\xfd\x56\xe7\x9e\x3e\x59\x76\xb2\x67\xcb\xe7\x60\xb5\xf2\x1f\xb7\xdc\xd5\xa2\x9b\x0c\x2d\x92\xb8\x8c\x89\xf2\x4c\xb5\x09\x3b\x6d\x00\xcc\xdf\xe3\xa0\x75\xb2\x8c\x59\xce\x08\x0e\x7b\xd0\xf9\xa0\x6e\x39\xe8\x94\xd8\x94\x2d\xc1\x6a\x65\x05\x1a\x73\xa6\x32\x94\x11\x24\xa4\xd4\x05\x12\x59\x80\x88\x1f\xb5\x3e\xa3\x15\xa7\x1d\x06\xa9\xc7\x21\xda\xac\x8e\xc2\x18\xfc\x30\x00\x75\x92\x47\x9b\xdb\xf1\xf2\x81\x8e\x6e\x39\xa3\xe4\x17\xcc\xb3\x47\x91\x73\x29\x31\xe4\xd0\x8d\xa1\x57\xac\x41\xbb\x78\xa0\x23\x67\xf5\x1c\xf6\x17\xa5\x6d\x03\x49\xe7\x36\x3f\xec\x62\x34\xa9\x21\x85\xaf\xa3\x23\x66\x66\x68\x82\x11\x31\x5c\x04\x24\x92\x6f\x88\x9d\xaa\x32\xae\x38\x08\x17\xbf\x39\xe1\xe3\xe4\xc5\x96\xc7\x6b\xb7\x17\x4a\xfe\x42\x09\x3c\xc0\x1d\xd9\xfc\x39\x47\xb6\x8b\x80\x87\x2d\x67\xf5\xbd\x62\xb4\xdc\xc9\x6d\x04\x2e\x84\xcd\xcd\x6d\x32\x83\x71\x52\x26\x75\x35\xbf\xdc\x1d\xd6\x54\xb5\xec\x1c\x5b\x14\xde\xdd\x6e\x16\xb4\xae\x6d\xad\x8c\xd9\x4d\xc5\xa6\x77\x03\xd7\x98\x1c\xb5\xd9\x81\xf1\xeb\xaa\x9c\x6b\x48\x2f\xd9\x30\xc7\x5e\xac\x41\x4f\x79\x61\x3d\xdd\x45\xc4\xe5\x50\xef\xf2\xbf\xf0\x03\x0c\xfa\x07\x2f\x8f\xfc\xef\xec\xa4\x3d\x9f\x40\x85\x0a\xc4\xc7\x58\x37\xd2\xdb\xe9\xae\x41\x55\x5b\x23\x4a\x6d\x0d\x6e\x36\x5d\x46\x6a\xc5\xf2\x06\xde\xc8\x96\xcb\xb6\xc3\xda\x92\x5b\xf8\x9f\x1a\x35\xab\x9d\x89\x35\x70\x2c\x11\xb1\x4c\xff\x17\xdb\x23\xd4\x09\xbc\x5f\x64\x50\x96\x12\x78\xbf\xc4\x8a\x2c\x21\xf0\x3e\x1b\x0f\x39\xbb\x57\x09\xb8\xb7\x8b\x5b\xb6\x9c\x8d\xb7\x29\xbe\xc3\x7c\xfb\x56\x19\x22\x35\x62\x1e\xe6\x79\xc2\xaf\xb5\xfa\x29\x05\x58\x85\xae\xac\x0e\x5d\x83\x3b\x1b\xcf\x8f\x88\x15\x26\x82\x8d\x22\xcd\xb9\xb5\x08\xcf\xe7\x78\xac\xde\x2c\x85\xe7\x15\x56\xa8\x57\xa3\xe4\x0d\x7e\x74\xd1\xe3\x07\x75\x8c\xd5\x9e\xaa\x75\x5d\xc1\x73\x7f\x2a\x41\xa9\x7c\xd2\x9d\xc7\xaf\x2b\xda\x67\xff\xd6\xc3\x45\x94\x0a\x2f\xab\xb6\x3c\xa1\x41\x81\x21\xc5\x06\x7b\xbf\x5c\x28\x60\x77\xf3\x56\x77\x8b\xe9\xf6\x32\x0c\x0b\x98\x97\x11\xf3\x97\xa8\xd8\xe5\x5b\x31\xb8\xb6\xe8\x12\x72\x2b\x37\x7a\x60\xc3\x11\xb2\x56\x4c\x5b\x5e\xd9\xdd\x97\xff\x31\x82\xa3\x8a\xd9\x6d\xbe\xc1\x19\xb2\xec\x31\xaf\x5a\x5f\x73\x9c\xcf\x66\x6c\x94\xba\x37\x33\x11\xdc\xcb\x79\x50\x59\x02\x24\x05\xb1\xe1\xdc\x75\x2e\x55\x1b\xa0\xc0\xf5\x63\xc9\x80\x9e\x29\x8e\x44\xfb\x26\x2f\x70\x0b\x2b\x1b\x6a\x3d\xa4\x16\x75\x37\x6a\x7b\xe4\x35\xea\xec\x91\xdd\x5d\xc0\xf4\x2d\x0f\x69\xe9\x0a\x90\xb4\x38\xd8\x32\x95\x11\x86\xd4\xfd\x62\x12\x39\x10\x5e\x3f\xa1\x46\xb7\x54\xd0\x59\x25\x7a\x53\xa1\x7b\xdf\x5f\x88\x5e\xfc\xc5\x34\x23\x99\x85\xb2\xa6\xc6\x3d\x53\xe9\xd6\x54\xd2\x2f\x5d\x79\x83\xac\x8f\x22\x9f\xea\xef\x92\xed\xd4\x55\xf4\xb3\xc1\x97\xb2\x2f\x93\x8c\x61\xdc\x13\xf1\x50\x66\x38\x4f\x90\xf3\x72\x29\xec\x09\x68\x10\x44\x78\xab\xa2\xac\x9c\x16\x6c\xa1\xae\x89\x37\x45\xc9\xc9\xeb\xcc\x97\x7d\xae\xf2\x2a\x9f\x4e\xf1\x18\x64\x83\x78\x8d\xcb\x19\x18\x02\x67\x1a\x2d\x17\x68\xa3\xc6\xd6\x6c\x49\x59\xce\x55\x7a\xc6\x6d\x73\x65\xe1\x5a\x95\x55\x69\xbd\xfc\x0f\xbf\x07\xfd\xb2\x54\x07\xe7\x4f\x50\x38\x09\x11\xea\x40\x6f\x52\xed\x53\x4c\xfb\x94\x54\xe2\x3d\x72\x1b\xc3\x4b\xdb\x03\x3e\x87\xc8\x85\x77\x9b\xce\xbe\x4f\x82\x20\x52\x20\x18\x41\xc8\x17\x79\x12\x9d\xb7\xfb\xa7\xef\xaf\x7e\xbc\x3e\xb8\xb8\x38\xf8\xf1\x49\x22\x47\x9e\x09\x01\x81\x72\x0f\x90\xfd\xec\x2b\x01\x01\xbd\xec\x39\xb3\xb6\x99\x9c\xf9\x6c\xb4\x24\x0c\xd4\x47\x7e\xcb\x69\x68\x12\xe5\xcc\x5f\x3a\xab\x15\x7e\x8d\xe8\xfe\xa4\xc7\x75\xa0\xdd\xa7\xaf\xdd\x02\x2b\x83\xc2\x5c\x97\xba\x4c\xf8\x25\xc4\x31\x33\xc2\xf1\x02\x07\x91\x72\x63\x12\x6a\xcd\x07\x54\xca\xff\xd7\x9d\x80\x6c\x3e\x31\x20\x7f\x61\x76\x6d\x8c\x23\xb3\x36\xb4\xc5\xa0\x8e\x06\xc8\x54\x18\x40\xae\x43\xe0\x4a\x32\x4f\x00\x24\xce\x17\xe8\x29\x8c\xfd\x62\x32\xe1\x51\x23\xd9\xb6\x9b\xf4\xd5\x2a\xf3\x5e\xa3\x14\x1d\x89\xa7\x52\x6e\x4f\x4b\x08\xca\xd7\xe9\x1e\xf5\xd9\x8c\xe2\x41\x38\xa3\xb7\xb2\xfb\x80\x46\xd6\xcf\xb0\x3f\x13\xfe\x75\x6e\x26\xa0\x68\x51\x00\x20\x2f\x09\x48\xb1\x51\x6a\xfa\x75\x57\xd6\x8e\x8c\x1b\x84\xb3\xfb\xd1\x03\x2f\xdc\x95\xcf\xb4\x94\x89\xf5\x24\x30\xd8\x9a\x30\x76\x1f\xde\xc0\x44\x94\x90\x54\xa2\xec\xea\xa0\xf7\x35\x84\xbb\xac\xd7\x9e\xe7\x0b\x2f\xef\xc8\xf9\xe4\x39\x36\x08\x76\xd9\xca\x66\xec\xd2\x99\x19\xd3\x7d\xd9\x23\x44\x45\x84\x5f\x3a\x1d\x91\xa4\x3d\x68\x91\xf3\x02\x1f\x2b\xd7\xea\x6e\x07\x00\x49\x17\xc4\x6b\xc4\xf7\x27\x3d\x3a\x10\xa9\xa1\x9c\x4f\x52\xb3\x80\xad\x36\xc6\x70\xcc\xcb\xaf\x3e\x4f\xe2\xed\x67\xde\xaa\xec\x23\x21\xed\x34\x5f\x72\x71\x56\xfd\xf6\xbb\x1c\x33\x75\x44\xfc\x2b\x41\x7c\xea\x0c\x52\xc4\xf1\x99\x20\x72\x75\x0e\x71\x7b\x0e\xfd\xb6\x90\xba\x43\x2a\x5e\x1a\x66\xfb\xd3\x0d\x92\xb8\x11\x79\x72\xf5\x82\x22\xde\x8a\xda\x52\x24\xbe\x38\xbf\xcd\x53\xce\xeb\x2a\x07\x9e\x63\x6b\x0a\x97\x0c\xef\x79\xc6\x3a\x09\x5d\x64\x9d\xb9\x4e\xa0\x8b\xf4\x82\x93\x48\x32\x19\x1c\x3d\x04\x65\x62\xbf\x84\x48\x33\xb1\x66\x54\xc0\x83\x6f\xcb\x0e\x40\x71\x0a\xf6\xc0\x25\xd5\x24\xb2\x1b\x0f\xdc\x59\x7c\xe0\xaa\x4e\x9f\x38\x7b\xe7\x98\x4f\x93\x46\x7f\x65\x54\xe0\xe0\xf4\x2d\xa2\xd3\x57\xf7\xb1\xe1\xf8\x25\x36\x31\x10\x34\xd9\xb4\x49\x71\xc4\xd9\x2f\x98\x66\x02\x34\x9b\x4a\x3e\x30\xf5\x9a\xcd\x4c\xa0\xc1\x10\x40\x1d\x35\xb7\x30\xe1\x72\xc9\x80\x0d\xa1\x9a\x1a\xe1\xa6\x2c\x07\xcd\xa6\xca\x97\xa7\x2e\x5e\x72\x1b\x88\x28\xc3\x3e\x9d\x65\x43\x60\xce\x6f\x4b\xf4\x9f\x41\x3f\x44\x02\x43\xd7\xb1\x9d\xcf\xe5\x03\x15\xb7\x58\x90\xd1\x59\x10\xce\xcf\x27\x76\xda\xe4\x29\xb6\x76\x14\xec\x40\xd4\xd4\x69\xfc\x57\xa3\x85\x7f\x43\x79\xa3\xb2\xec\xce\xfb\x52\x8e\x6b\x23\x47\xa2\x4a\xa4\x78\x12\x33\x45\xfe\x04\x95\xa7\x52\x34\x2d\x01\x63\x62\x0a\x6f\xec\xd5\x94\x49\xf5\x6b\x17\xc3\x83\xc2\xef\x57\xcf\xe9\xef\xc4\x09\xa9\x5d\x1d\x08\x8b\x9e\x0a\x7a\xf4\x29\xc5\x09\x51\x9f\x13\xc2\x10\xb7\x44\xc8\x09\xcd\x36\xea\x36\x6d\x10\xda\x92\x8b\x09\x30\xd3\xef\x27\x20\xf0\x22\x30\xd7\xbf\x9e\xe7\x8b\x5a\x71\xea\xf7\xa0\x9f\x55\x6a\x10\xf2\x1c\x35\xe4\x4e\xf3\x11\xfc\x29\x96\x28\x70\xa6\xd5\xbd\xf0\x4a\x2f\x24\xb8\x2c\xdb\xaa\xf1\xab\x25\x03\x31\xc0\xc3\x21\xe2\x03\x3c\xb4\x3c\x89\xcb\x16\xb7\x71\x03\xce\xf3\x45\x2d\x36\x71\xab\xa0\x95\x13\x2f\x09\xe5\x0e\x31\x8e\xbd\x3e\x29\x4e\x80\x5c\xae\x56\x70\xd3\xc7\x51\x67\x8f\x97\x76\xd6\x5c\x01\x8e\x07\x7c\x38\x44\x62\xc0\x87\x25\xc0\x0e\xab\x46\x4f\x30\x54\x84\x0a\xcc\x69\x3e\xfb\x28\x87\xec\x53\x3e\xfb\xe1\x2a\x10\x72\x6a\x39\x80\x90\xe5\xd1\x6c\xda\xd7\x33\x53\xb5\xdd\xd4\x73\x59\x3e\xbc\x29\x51\x3a\x1e\xe8\x97\x89\xf5\x69\x86\x4a\x83\xc9\x9e\x29\xe5\xff\x1a\x08\x2d\x3b\x94\x5e\x95\xc4\x22\xfe\x0f\xf0\x46\x15\x29\x30\x20\x7d\x1a\xb7\x09\xe2\xfe\x16\xb7\x51\x56\xfd\x97\x95\x80\xab\x0c\x51\xc5\xe9\xbc\xfc\x0f\xa2\xb3\xa1\xba\xc7\x56\x57\xbe\x28\xbc\x17\x2f\xa4\x34\xee\x35\x80\x10\x2a\x74\xb2\x9f\x41\x01\x73\xc8\x86\x5f\xc2\x2a\x4d\x0c\xab\xe4\x71\x48\x8a\x12\x14\x9b\x35\x7e\xba\xcc\xd3\x27\x4a\xb8\x4a\x5f\x7f\xa8\x54\xf0\x24\x3a\x57\x5e\xfe\x47\x74\xb2\x4c\x9e\xbe\x99\xd4\x98\x8c\xfd\x41\x47\xb8\x6c\x89\xce\xff\xfc\xc9\x51\x73\x46\x08\xb3\xce\x1e\xc8\x83\x97\xff\x21\x5a\x2f\x86\x30\x7e\xd5\xad\xbc\x1a\x0e\x8d\xc0\x79\xab\x3d\xf2\x67\x62\xb3\x4c\x1f\x6e\x46\xb8\xd0\xb5\x8a\xcd\xb5\x00\x1c\x0b\xa4\xf4\xd6\x51\x29\xa3\xbd\xee\xf8\x3a\xeb\x85\x30\x4a\xeb\x5b\xb1\x86\xf3\x4d\xbc\x40\x64\x6e\x65\xc2\x26\x1b\xe3\xd8\x30\x60\x9e\x36\xee\x36\xf2\xd5\x58\x07\x10\x51\x19\x88\x6a\xac\xbe\x8b\x0d\xdf\x12\x16\x4e\xd5\x42\xa3\x7c\x74\x8b\xdf\x71\xb6\x5c\x14\xd5\x8f\x33\x52\xe8\xcc\x5d\x75\xbd\x77\x3c\x9a\x56\x74\xbd\x07\xe1\x7f\x11\xfe\x97\x3b\xff\x8b\x0e\x71\x7e\xeb\x45\x6b\x96\x6f\x2a\x56\xec\x7e\x81\xc8\xa0\x3d\x35\x6f\xe5\xa4\x84\xbe\x8e\x95\xf9\xd4\x9f\x6d\x5c\xd8\x9c\x4f\xf5\x1c\x30\xe1\xf9\x46\xaa\x37\x6f\x70\xf6\x0f\x73\x14\x5a\xe3\x09\x05\x28\x76\xf7\xba\x8f\x63\x7c\xb3\x9c\x6a\xdb\xaa\x5e\x42\x94\xc8\xdb\x5e\x81\x8c\xf9\x11\x80\xd5\x07\x65\x03\xd2\x0b\x8f\x59\x53\x47\x9b\x87\x94\x55\xa0\x00\xeb\x75\xd2\xce\x60\x82\xc5\xa8\xd6\x0d\xcb\x39\xc9\x0e\x48\xfb\x02\x4f\x49\x21\xb0\xe4\x9d\x86\xf1\x45\x2e\xcb\xc7\x95\x26\xa2\x2a\xbe\x7b\x50\xc2\x04\x5f\x81\xf1\x31\xe4\xfd\x42\x3d\x5a\xd4\x5e\x15\x82\xb8\xb6\xa5\x7b\x15\x40\xaa\xbe\x5f\xe9\xe0\xec\xda\x5c\xc8\x8b\x69\x5d\x71\x5b\xda\x58\xcf\xc5\xba\x7e\x8e\xb3\x81\xf1\xc7\x4c\x39\x1b\xa4\x83\xb6\x1b\xff\x63\x15\xe8\xfa\x39\xa1\xd9\xbd\x4a\xf6\x7b\x4d\xc5\x5a\x6f\x48\x25\x6f\xaa\x2a\x44\x5b\xd9\xf8\xde\xe3\x3c\x36\xd6\x16\x3a\x7e\xbc\xda\x58\x05\xf9\x05\xb3\x49\x56\x00\xa8\x2f\xbd\x71\xf6\x68\x36\x41\x4f\x40\x4c\xef\x7a\x7c\x0d\x4f\x74\xde\xc7\x8c\xc0\x25\x50\x1e\x06\xf6\xf0\x9c\xb5\x17\x23\x34\x0b\xa3\xd1\xcb\x96\xbe\xc4\x96\x73\x26\xa1\x8e\xd8\xd2\x80\xc8\x3e\xa6\x6f\xd0\x26\x6b\x58\xd4\x7d\x50\x86\x62\x89\x4f\x6c\xbd\x36\x66\x57\x9b\x86\x39\x81\x1d\xa0\xb2\x72\x6f\xb9\xdd\xfe\x05\xe3\xc9\xd7\x89\xd0\xce\xc6\x3a\x26\x50\x62\x53\x28\xf4\x12\x40\x11\xd0\x32\x95\xfc\xf6\x29\x47\x2a\x73\x29\xeb\xd7\xeb\x55\xa8\x62\x06\x60\x51\x7e\x29\xec\x2b\x09\x7d\xcf\xdb\xf3\xf6\xaa\x17\xc7\x21\xd0\x55\x3e\x9c\x43\x77\xa4\x54\xb0\xcf\x3b\x6d\x3c\xa7\x7d\x3b\x57\x19\x30\x81\x2a\x92\x19\x5a\xd2\xcd\x6a\xd5\x83\xca\x95\x9f\x35\xfa\x67\x6f\x1b\xc0\x32\x64\x65\xab\xce\xb4\xdd\xef\x5d\x45\x89\x66\x88\xec\x7b\x06\x52\x04\xf4\x6c\x00\x0e\x65\xd8\xa0\xa1\x81\x05\x4a\xd8\x17\xda\x75\x2c\x84\x7a\x91\x49\x2c\x07\x70\xa9\x40\x39\xcc\x0a\x88\xc1\x56\x14\x0e\x6d\x09\x19\x80\xc2\xc4\xcf\x51\xf5\x2f\xb2\x25\xf0\x5e\x55\x12\x0d\x50\x91\x8c\xbe\x1c\xa3\x90\xcb\x69\xe0\x96\xc5\x8e\xd8\x9c\x8e\x45\x06\x12\xf1\xa8\xd5\xf8\x15\x66\x19\x36\xda\xee\x4a\x6d\x8c\xa3\xdf\x2d\x46\x00\x9a\x2c\x23\xce\x3c\xcf\x0f\xae\xd7\xa7\xea\x70\x8a\x33\x94\x6a\x13\xc9\x54\xd4\x84\xe0\x92\xd2\x9d\xcf\x56\xf1\xa7\x0d\x40\x48\x38\x9e\x17\xc0\x05\x44\xdb\x3c\x9e\x20\x8b\xea\x13\x83\x22\xe1\xa0\x18\xac\x6c\xcc\xc4\x62\x1c\x0b\x3c\x4f\xc9\xc2\x8e\x51\xca\x40\x7b\x9e\x2f\x54\x68\x39\x18\x4e\x51\xb2\xbd\x4a\xf4\xee\xe7\x2d\x70\xa7\x6e\x81\x5d\x48\x70\x39\xa7\x2c\x38\xa6\x31\x96\xc0\x95\x06\xad\x2e\x4f\x48\x32\xb5\x87\x35\x80\x8d\x66\x2f\xb7\x18\x4e\x45\x56\x24\xf0\x02\x32\xab\xaa\x0d\x38\x47\xbd\xb8\x4b\x10\x4d\xc9\xb2\x1a\x51\xab\x5f\x41\xf9\x72\x2f\x3b\x5f\x8d\x3a\xee\xd6\x2a\x8f\x4b\xfb\xfd\x70\xc6\x3f\x93\xaa\x23\xa8\x3f\x81\x51\x50\xe0\x64\x0f\x65\x70\xf9\x0a\xd5\xaa\xb1\x51\x4f\x40\x11\x2e\xbb\x33\xb5\x24\x2e\x40\x41\x3c\x7d\x55\x1e\xab\x9c\x91\x9a\xd9\xd2\x90\xd5\x50\x16\xd7\x7e\xdd\x7d\x65\x04\x40\x32\x78\xbe\x33\xcd\xac\x69\x23\x35\x7f\xc9\x86\xec\x1a\xd4\x35\xe4\xf3\xf8\x91\xe6\x67\x53\x76\x58\x4f\x0c\x48\x76\xeb\x1f\x7c\x75\x6d\x54\x45\x86\xda\x3c\x02\x6a\xc1\x2b\x8d\xa5\x05\x12\xef\x74\xd5\xd8\x5a\x39\xf3\x64\xb9\xb7\x35\x00\x7a\xea\xf6\xf0\xf0\xb6\x6d\x6d\x6d\x1e\x42\x5d\x24\xfc\x65\x71\x7b\xc1\x98\x88\xb3\xf5\x96\xf7\xfa\x27\x26\x45\xb6\x1f\x64\xa4\xd9\xa4\x71\xa6\xdf\x60\x7c\x20\x2d\x93\x51\x93\xd2\x22\xec\xbe\x26\x51\x70\x5c\xb9\x12\xf2\x81\x2d\x9e\x9e\xf8\xea\x1e\x5a\xb0\x45\xdd\x14\xd7\xcd\x5c\xb5\x91\xa7\x42\xf4\x79\x04\xa6\x12\x02\x3c\xa5\x59\xd9\x94\x92\xdb\xa2\x8c\x29\x16\x83\xe2\x14\xd2\x47\x8c\x3f\x91\xa6\xdb\x6f\x49\x95\xac\x32\x1f\x49\x7f\x6f\x73\x66\x84\x87\x83\xc9\x29\x05\x45\xb3\x29\x4c\x24\xb9\x09\xe3\x99\xc6\x19\x7d\xf5\xba\xb7\x63\x3d\x23\x24\xb3\x95\x01\xa0\x9c\x7d\xf6\xc0\x9e\x3d\xb1\xb5\xaa\xa7\x6a\x09\x5f\x83\xf7\x98\xde\x45\x09\xa1\xac\xe6\x2d\x41\x75\xec\xf1\xe9\xd3\x11\x7b\x80\x6a\x79\x28\xf2\x3c\x77\xde\xf7\x51\x5a\x8a\x52\x31\x2c\x2b\x05\x79\xa0\xac\x7d\x36\x64\xe8\x51\x0e\xad\xb7\xd3\x85\x6a\x48\x2a\x62\xfe\xda\xaa\x83\x83\xb8\x03\x65\xd9\x8e\x2d\x8b\xef\xb7\x89\x09\xa3\x6f\xce\x1a\xee\x9d\x4b\x60\xad\x62\xbb\x06\x1c\x37\x71\xf1\x92\xab\x9b\xc7\xdd\x01\xa7\x88\x85\x89\x03\x53\x86\x74\xd9\x13\xaf\x51\x67\x4f\xec\xee\x02\x8a\x42\x0d\x8c\x42\x13\xc1\xe5\x91\xa2\x62\xc3\x40\x6d\x61\x45\x61\xac\x07\xd8\xac\x77\x55\x05\x9f\x11\x4d\xa7\xd0\x84\x3e\x10\xd6\x42\xa9\xd7\x28\xf5\xdd\x3d\x61\xc0\xbb\x34\x36\xd5\x0c\xf3\x7e\xe1\xf5\xd3\xd0\x04\x35\x5c\x8f\x8b\xd1\x33\x06\xb2\x18\x6d\x1c\xc5\x62\xe4\x0d\x81\xe7\xcf\x68\x90\xe7\x1b\x1b\xe4\xb9\xd7\xe0\xa4\x7a\xcb\x55\x8d\x63\x31\x59\xd4\x34\xe8\x52\xea\x95\x0d\x16\xcf\x69\xb0\xd8\xdc\x60\xe1\x37\x68\x76\xee\xc6\x56\xad\xf3\xb9\x29\xeb\xea\x62\x7a\xf7\xac\x7a\x98\xde\x95\x7a\xf5\x87\x5a\x2d\xad\x01\xf2\x6e\x9e\xce\x7e\x15\x53\x22\xbf\xa7\xbb\xb9\xa1\x69\x46\x41\x7d\xf7\xb4\xf2\x5e\xb3\x2d\xde\x9d\xd4\x05\x9e\x20\xe1\x27\xaf\xbb\xcb\xf9\xd5\xb3\x9d\xfe\xb4\x92\xb5\xea\xf0\x27\x94\x0d\x09\x1d\x26\x75\x85\x1b\xcd\xd5\xa6\x58\x7c\xcc\x79\x06\x3c\x63\xaf\x0d\xfa\xff\x64\x4d\x65\x6b\x5a\xad\xf8\x31\x65\xcf\x6d\x68\x8b\x3f\x1d\xb6\x67\x27\xce\xab\x39\x33\xad\x06\xfc\x8d\x9e\xaa\xd0\x1f\x50\x8d\x5c\xc7\xb0\x97\x4b\x32\xad\x71\x00\x35\x31\x30\xac\xde\xe8\x2b\x42\x12\x70\xe0\xc7\xe2\x16\x52\xbc\xa2\x53\x45\xad\xdf\xe2\x85\xba\x50\x64\xed\x51\x4e\xc7\x3a\xb0\x8a\xb6\xa5\x6a\x13\xfa\x33\x1e\x09\x3c\x3e\x9f\x13\x21\xb0\x8e\x8e\xb9\xd3\x85\xac\xed\x72\x03\x99\xca\xbb\x5d\xc8\x36\xe7\x35\xfd\x1b\x80\x37\x35\x83\xe3\x99\xb1\x2b\x93\x83\xcb\xbf\x7c\x70\xba\xb6\xba\x02\xcc\xdb\x4b\x3a\xcf\xc5\xe8\x16\x8f\x5d\x34\x73\x73\xf5\x9c\x6b\x43\x73\x0d\x70\x07\xb2\x6a\x48\xbe\x0b\x7c\xfb\x30\xd6\x29\x78\xb6\xef\x89\xb8\xdd\xf6\xfc\xf4\xb6\x55\xbc\xbe\xe5\x62\xc1\xb8\xc0\xe3\x46\xc9\x37\x14\x28\xb7\x84\xf7\x50\x85\x0f\xb7\x87\xb7\x97\x5e\x42\xf2\x14\xe6\x06\x71\xb5\xba\x16\x59\x01\x9a\x4d\x75\xf9\x4e\x8a\x4b\xcc\x95\x14\xa6\x7a\x3d\xb2\x3e\x4b\x20\x2b\x00\xd8\x03\x05\x0a\x22\xda\x97\x3a\xbb\x72\xa1\x0a\x98\xa7\xe7\x9d\xcb\x79\xe7\x71\xf0\xb2\x0d\x69\x76\x14\x8a\x96\x53\x04\xf5\x7d\xc2\x54\x9f\xf1\x5e\x10\xcd\x4e\x8f\x96\x7a\x2a\x7f\xe0\x5b\xa4\xd9\x24\x25\x68\xcd\x66\xc6\x3d\x40\xfd\x74\x1b\x90\x04\x1f\xc2\x44\x19\xb7\xa9\x64\x35\x1c\xac\x83\xc1\x28\x77\x8b\x53\x52\xa8\xb5\x4e\x5a\xa1\xc6\xf9\x33\x2d\x8c\x3a\xf8\xe5\x0e\x42\x5c\x45\x78\xcc\x04\xe2\x11\x36\x83\xd7\x88\x27\x76\x88\xb2\xae\xd8\xa3\xcd\x66\xb6\x73\x2d\x32\x0a\x56\xab\x7b\xf9\xdf\x0e\x42\x02\xec\x01\x67\x82\x62\xbc\xc9\xb7\xf0\xac\xc0\xdb\xba\x8a\xc9\x14\x96\x28\xc4\xfd\xb1\x23\x0a\x79\xb4\x05\xd7\xe1\xa8\x6b\x72\x72\x55\xdd\x2d\x2b\x83\x8d\x6e\xd6\xdd\xa0\xb6\xa2\xe7\x56\x6b\xcb\x06\x4a\xc2\x25\x2c\xc1\xac\x5d\x8b\x8c\x4b\xfc\xcd\x28\xe2\x2a\x99\xa2\xba\x01\x69\xab\x95\xc8\xbe\xf9\x3f\x7f\xfc\xa9\x75\xd3\xcb\x7e\x1a\xb7\xc0\x1f\xff\xf0\x0d\x00\xcd\x26\x1d\x74\x87\xfb\x67\x2a\xdc\x66\x26\x7f\x03\x9d\x0f\x5a\x5d\xb3\x66\x5e\x27\xc1\xdc\x70\x00\x71\x4c\x64\x6c\xa0\xd6\x60\xed\x25\x66\xc4\x93\x94\xce\x49\xf6\x25\xb3\x14\xf7\x1d\x4f\xd3\xee\xae\x39\x02\xfd\x49\xf2\x32\xc2\x29\x04\x69\x36\x15\x82\x6c\x1e\x28\xad\x0e\x74\x77\x37\x39\x50\x0a\x12\x73\x82\xe2\x05\x6d\x36\x6b\xbb\x8a\x36\x5a\xa2\xdb\xca\x4c\xa6\x92\xf5\x84\x04\xa3\x1c\xbe\x15\x40\x56\x2b\x5c\xd3\x46\xe4\x91\x9d\xea\x2a\x4c\x3c\x53\x86\xed\xd2\xd7\x3c\x36\xbe\x03\xff\x84\xb9\xc9\x92\x52\x5e\x64\xec\x67\x14\xe5\xbe\xdb\x27\xe4\x28\xf7\xdc\x38\x21\xa9\x64\xf6\x09\xd2\x85\x70\x15\x34\x85\xb0\x65\xe1\xa6\x88\xc5\x4b\x15\xa1\xa8\xf5\xaa\x6b\x36\x2f\x45\xc6\x80\x73\x68\x4e\x4e\x3f\x73\xe5\xc3\x42\xc6\x51\x39\x5c\xec\xb0\x08\x00\x90\x80\x5e\x6a\x5a\xe5\x7c\x6d\x98\x56\xdd\x75\xd2\x59\x53\x3b\xd9\xca\xa9\x51\xb9\x90\x12\xc7\x8c\x08\xdc\xec\xd5\x29\x1e\x34\xee\xaf\x43\xc2\x74\x0e\x56\x30\x44\x07\x7f\xff\xac\xe2\x1e\x1b\x93\xde\x0c\x23\x0a\xfc\xce\xf7\x44\xb3\xb9\xf3\x59\x64\x92\xa6\x5a\x97\xf0\x08\xae\x7f\x54\xb2\x2d\x39\xb6\x51\xd1\xcc\x24\x62\x85\x19\x87\x7c\xc4\xaa\xc1\x63\xb2\xff\x12\x21\x44\x14\x85\xbb\x7a\x58\xe0\xfd\x8c\x94\xd4\x4e\x2e\x62\xb3\xe9\xbf\x41\x2e\xb9\x9f\x5b\x7c\x12\x66\xa3\x01\x3d\xd2\x6c\xa6\xa2\xb8\xff\x05\x21\xb9\x00\xa6\x9f\x66\xb3\xf1\xc7\xd5\x1f\x1b\xee\x9d\x6a\x7d\x9d\x11\xb0\x5a\x5d\x8a\x8c\x00\xb0\x1f\x23\x59\xd8\x8f\x8f\x72\xc4\x65\x7f\xf4\xb2\xf9\x08\x00\x7a\xaa\xa5\xfd\x2c\x3c\x8f\x48\x65\x04\xa5\x3c\xee\xb2\x27\xba\xc4\x5f\xe2\x59\xa9\xb0\x38\xa4\x00\x72\xab\x53\x08\x71\x9c\x80\x64\xee\x1f\xd9\x43\x80\xd2\x69\xcc\xaf\x14\x4b\xaf\x7b\x25\x93\xd0\x53\xe4\xab\xd9\x54\xc4\x7b\x3f\xa3\x95\xe5\xa6\x1b\x97\x3b\xa4\x26\x14\xf4\x24\xb2\x27\xe9\xf8\xa6\x94\x47\xe1\xc8\x53\xc7\x7f\x85\x87\xab\x1b\x91\xde\x6e\x7d\x7d\x14\x85\x1c\x1f\x99\x64\xc6\x48\x7e\x91\x8f\xf0\x87\x8b\x63\x84\x10\x77\xf9\xc9\xb1\x94\x49\x94\xd5\x38\x42\x2e\xdf\x69\xf0\xb2\x2d\xd8\x87\xc5\x02\xf3\xc3\xbc\x90\x32\x57\x46\x25\xb0\x81\x46\x3d\xc1\x85\x0f\x86\xda\x9c\x4c\x0f\x91\x96\xf9\x82\x0a\x00\xa9\x82\x56\x01\x66\x00\x6e\x5c\xbd\x39\x7f\xfb\xa3\xdc\x07\xd4\xf6\x1c\xf4\xe0\xe7\x60\xa4\x7e\x62\xcc\x90\x19\x4f\x4a\x30\xd6\x7b\x26\x48\x3a\x6a\xaf\x0a\xe3\xd5\x4a\x89\xa4\x41\xcd\x8d\x58\x98\xce\x20\xe5\x07\x52\x72\xf1\x93\xaa\x53\xe6\x04\x36\x49\x6b\xd0\xb9\xc8\x98\x9c\x67\x49\x89\xee\x0c\x5a\x52\x45\x85\xb4\x84\x4c\x81\x66\xd3\x59\xbb\x58\xe8\x8b\x5e\x67\xde\x46\x00\xec\x56\xf6\x91\x0f\x9a\x3f\x06\x05\x5b\x62\x1c\xd5\x74\x55\x65\x4e\x67\x17\x2d\xa2\x7e\x10\x92\xfa\x71\x39\x08\xa2\x07\xc1\x83\x41\xf0\x68\x10\xc4\x0e\x82\xb8\x41\xf0\x9a\x41\x58\xb8\xc2\x31\x54\x46\x90\xce\x87\xfa\xbc\x21\x10\x39\x85\xea\xc8\xd2\x66\xd2\xc4\x37\x93\x2e\x35\x90\x26\x29\x96\x21\xa8\x65\xda\x2d\x32\xe0\x43\xb5\xdd\x0c\x8a\xd5\xc9\xa8\x6b\x25\x34\xe0\x5a\xb0\x37\x8e\x70\x53\xfe\x49\x8f\xf7\x77\xf4\xc1\x9d\xcf\x01\x33\x6c\x59\x94\x34\x57\x02\xa0\xca\xde\x92\xd8\x54\xa6\xbc\x9f\x9e\x34\x8c\x28\x1f\x41\xe7\xc5\xe6\x0c\x87\x31\xc5\xe2\x54\x07\x9c\x4b\x09\xa9\xb8\xfd\xef\x25\xe6\x0f\x97\x78\x86\x47\x82\xf1\xec\x4f\xc5\x88\x93\x85\x18\x4c\x67\x73\x8e\x1a\x7f\x6a\x89\xd6\x9f\x1a\xc3\x3f\x01\x4d\x4d\x2c\x49\xdf\xaa\x48\xfa\x87\x39\x95\xf2\xfc\x84\xd0\xf1\x76\x61\x24\x70\x3c\xde\xd6\x62\xa7\x94\xda\xb6\xff\x45\xe8\xae\x39\xc4\xfe\xd5\xa8\xe0\xd2\xb3\x12\xd7\x1a\x57\xe2\x5f\x91\xbe\xd6\x72\xbc\x6e\x4e\x54\xeb\x5b\xb9\xc7\xbc\x21\x15\x3e\x20\xe3\x2e\x40\x6d\xb0\x9c\xc0\x5b\xee\x0a\xd5\xc4\x2a\x30\x93\x77\x82\xf1\xf8\x48\xf3\xb9\x83\x5c\x32\xd0\x2e\xc3\x6d\xd9\x5a\x90\xe1\x96\xc0\x9d\x4e\x7c\x6a\xd5\x26\x4d\xb1\xf3\xb4\x95\x20\xb0\x51\xa5\x80\xc4\xc2\x98\x7f\x56\x8e\x59\x1e\xa3\x1f\x1f\xcc\x12\x65\x43\x1d\x43\x4a\xf9\xcf\xad\xf2\x3f\x98\xc1\x2f\xcd\x17\x57\x2a\xfa\x6d\xff\x4f\xb5\x50\xf6\xb5\x9f\x38\xbf\x5c\x33\xfa\x76\x26\xad\xb1\xae\xa9\x82\xb0\x52\x28\xf3\x75\xf6\x03\x06\x5b\x4e\xdd\x76\x2d\x6a\x99\xcf\xb5\x2b\x74\x2f\x7c\x61\x21\x25\xe6\xef\x7a\x62\xbe\x77\xc7\x2a\x3c\x71\x5f\x38\x71\xbf\x6c\xb8\xef\xf7\xde\xad\xe9\xfd\x73\x3d\x88\x92\x3f\x96\xbb\xbd\xc2\x22\xbb\xca\x97\x9b\x2b\x6f\xd7\xd7\x3c\x17\xc1\xf6\x35\xf9\x5b\x3a\x7b\xb4\xf4\x8b\xa1\xad\x16\x20\x93\x2c\xe3\x08\x0f\xe8\x10\x28\xaa\x2e\x39\x22\x4b\x6c\xf8\x5a\x4a\x5d\x74\x8c\xf9\x69\x10\x5a\xd1\x85\xa9\x29\xf5\x9c\x73\x61\x2d\x1a\x83\xaf\xbe\x69\xd0\x83\xc8\x72\xa5\x99\x3e\xfb\x70\x72\x72\x7d\xd1\x3f\xea\x5f\xf4\xcf\x0e\xfb\xe8\x16\xe2\xf6\x87\xb3\xb7\xfd\xa3\xe3\xb3\xfe\x5b\xef\xfd\x04\xe2\xf6\x7b\x4e\xe6\x44\x90\x3b\x7c\x61\x2f\x59\xd1\x12\xe2\xf6\x21\xa3\x63\x63\x10\x5e\x7e\x98\x43\x9d\xff\x11\xdf\x2c\xa7\x53\xc9\xce\xcd\x66\x37\xb9\xaf\x36\xc1\xe0\xf1\xa3\x0e\xfb\xa5\x6e\x02\xeb\x0b\xca\x72\x3f\xc8\x72\x53\x97\x4e\x32\x50\xa0\x07\x34\x3c\x32\xe4\xe3\x48\x44\x31\x6f\x3a\xc1\x2c\xdc\x49\x0e\x4f\x5b\x0e\x9e\xb0\xfb\x13\x7c\x87\x67\x1f\x4f\xd1\x5c\xc8\x49\x30\x77\xa8\x1f\x4f\xd1\x3f\x31\xc4\x6d\x1d\x81\xed\x02\x17\xcb\x99\x40\x44\x96\xb8\x24\xf3\xc5\x0c\x57\x32\x5c\x1e\xca\xd2\x95\xb7\x57\xf2\xad\x35\xb3\x7f\x77\x89\xc6\xaa\x05\x75\x07\x72\xa2\x3e\xd1\x3b\xc2\x19\x55\x14\xff\x17\xd5\x82\x4e\x00\xe2\xbf\xff\x5e\xbd\xef\x1f\x1d\x7c\x38\xb9\xba\x3e\x3c\x78\x7f\xf0\xe6\xf8\xe4\xf8\xea\xb8\x7f\x89\xac\x49\xe3\x49\xfe\xc0\x96\xa2\xb7\xd3\x81\xe6\xc5\x55\x3e\x95\x4f\x0b\x8e\x25\x61\x3f\xe0\xd3\x42\x3e\x6a\xea\x64\x9f\x1c\xb7\xfc\x3d\x63\x9f\x7a\x3b\x5d\x68\x4e\x27\xfb\x18\x98\x4b\xba\xda\xda\xd6\x41\x7e\xd7\xf7\x0d\xba\xb4\xfd\x7a\xac\x6e\x4d\x47\xb2\xbc\x9c\xdc\xd3\xe3\xb3\xe3\xd3\x83\x93\xcd\x40\x77\x03\xa0\xbb\x21\xd0\xdd\x00\xe8\xee\x17\x02\xdd\xdd\x08\x74\xb7\x02\x74\x57\x02\x7d\xb8\xe4\x9c\x60\x29\x3e\x2d\x18\xc5\x54\xbc\xc5\x13\xb5\xab\x18\x45\xd7\x10\xb7\x49\xb1\xa1\xc0\x0d\xc4\x8a\x76\xa6\xc2\x59\x7d\x65\x2e\x05\xe5\x6a\xe4\xe1\xee\xb5\x0b\x63\xf2\xf6\xfc\xf4\xf0\x36\xa7\x53\x5c\xa0\x85\x44\x91\xcb\x8f\xef\xae\xcf\x0e\x4e\xfb\x97\xef\x0f\x0e\xfb\x88\xcb\x57\xc7\x5e\x99\x11\xd6\x75\xae\x38\x2e\x2f\x41\x24\xd0\x63\xac\x86\xf5\xc3\x2d\x11\x5a\x7c\x4b\xdd\x70\xe5\xb8\x2d\x70\x61\xef\xb5\xe2\xd4\xd0\x68\x22\xdb\xa0\x8c\xcf\x15\xe3\xe3\x18\xfb\x73\xf9\xfa\x0c\xdf\x1b\x0e\xe1\xcd\x92\xcc\xc6\x98\xa3\x1f\xf0\x16\x6e\x8f\x66\xc4\x7b\x15\xee\x6b\xd3\x69\x2a\x16\xa2\x1d\x3d\x2f\xef\x56\x36\xb6\x71\x23\xea\xdb\xb0\xf7\x33\xd8\xb6\x70\x23\x34\x61\x1b\x71\x2c\xb0\x61\x2f\xfe\xa0\x71\xa2\x60\x1c\xfd\x4d\xdd\x12\x2d\xf2\x1b\x32\x23\xe2\xe1\x68\x96\x4f\x8b\x23\xce\xe6\xe8\x08\x2a\xbf\xa2\x43\xf7\x09\xfd\xb2\x06\x10\x67\x8d\xff\x9a\xce\xc8\x7c\x8e\xf9\x37\x4b\x41\x66\x0d\x38\x68\xe0\xcf\x0b\xc6\x45\xd1\x80\x0d\x2c\x0f\xb4\xdd\x9b\xfc\x06\xcf\x1a\x43\x18\x82\xde\x58\x16\x78\xbb\x10\x9c\x8c\x44\x63\x0b\xfb\x29\x80\x10\x6e\xe3\xcf\x0b\x3c\x92\x67\xe8\x92\xde\x73\x15\x17\xd9\x73\xe3\x41\xb8\xb4\xcb\x35\xbf\x15\x53\x87\x3d\x93\x4a\x57\xe3\xf2\xe4\xf8\xb0\x2f\xa9\x27\x51\xed\xbd\x25\x23\x71\x89\xe5\x2f\xed\x52\x82\xdb\x97\xfd\x8b\xe3\x83\x93\xe3\x7f\x1e\x5c\x1d\x9f\x9f\x5d\x1f\x1d\x5f\x5c\x5e\x5d\x9f\x9d\xbf\xed\x5f\x5f\x5e\x5d\x1c\x9f\xbd\x43\xb8\xf6\xbe\x09\x39\xe3\x7a\xf2\x0b\x7e\xb7\x24\x63\x09\x38\x2d\x96\xdc\x3e\x4c\xc8\x6c\x76\xb6\x9c\xcd\x0a\x84\xdb\x79\x51\x90\x29\xd5\x3f\x30\xb7\x01\x05\x8d\x42\xdc\xf8\xdc\x7f\xc2\x0f\x05\xe4\xa8\x53\x72\x1d\x24\xf0\x56\xbf\x9e\xca\x76\x5b\x2d\x5e\x1e\xbe\xac\x5a\x60\xb5\x92\xb5\xca\x22\x79\xc9\x3d\x99\x7e\xcc\x3d\xb3\x76\x4b\xd4\xd7\x71\x1b\x7d\x52\xd5\xdc\xe5\xe9\xd8\x97\xf9\x78\x9c\x72\x93\x2f\xd4\x95\x6f\x99\x52\x0e\xef\xbb\x96\x06\x78\x88\xac\x6d\xba\x7c\x94\x43\x18\x9a\xdb\xf2\x27\x23\x16\x27\x1a\xb6\x11\x88\xbd\xf6\x7b\x66\x2a\x9a\xcd\xea\x47\xfd\xc5\xba\x9b\x2d\x9f\x13\x10\xd0\xa6\x59\xb5\x31\x37\xeb\x1c\xb6\xd3\x59\x92\x5c\x1c\xd0\xc0\x9c\xa6\xc6\xce\x6d\x53\x30\x34\x6b\x9d\xea\xbf\x0a\xe2\xc3\x04\xdc\xb1\x0e\xea\xa6\x7d\xf2\xca\x0a\x03\xb1\xdb\x1d\x96\x17\x93\x58\x7f\x8f\x0c\xb3\x4c\x22\x8f\x84\xf5\x80\x0b\x14\xe7\xf7\xbe\xd9\x28\x48\x59\xec\x3c\x69\x57\x12\xc7\x31\x9b\x6d\x5e\x17\x13\x86\x3e\xe9\xfb\x88\x7d\x07\xa7\x28\x41\xbb\xfc\x18\xc5\x7a\xc8\xc9\xac\xb6\xb8\xfc\xf8\x44\xc4\xba\xb2\x5d\x54\xd6\xd1\x18\xf2\x54\xda\x19\xbd\xbe\x83\x61\x98\x97\x35\x95\xbc\x54\x78\x7b\xdc\x98\xd4\xaf\x2b\xf6\x9d\xd6\xcd\x21\x1d\xe9\x42\x7e\x8d\xdc\xb8\xca\x9e\x42\x0b\x03\x73\x47\x6f\x53\xf1\xcb\xb1\xd9\xeb\x58\xb1\x07\xb4\x12\xdb\x5c\x32\x44\x78\xe3\x69\xb4\x7f\x27\xe6\xc0\x64\x2c\xd6\xd4\xc4\x59\x3f\xf7\x32\xa1\xee\xa1\xf6\xf5\x7f\xda\x9e\xc7\xd0\x18\xbd\x36\x58\x01\x8a\xef\x90\x2e\x01\x8d\xcd\x8f\x80\xfa\x59\x7e\x4f\xe6\xeb\xaf\x73\x84\x55\xcb\xec\x16\x6e\x3f\x13\xa6\x4f\xd7\x8d\xed\x41\xc7\xce\x09\x20\xf1\xf0\x04\xc7\x16\x9e\x95\x9b\x27\x0f\xc3\xf1\xdd\x3e\xf6\xc7\xa7\xfe\x0b\x9a\xd6\x49\x1b\xf4\x7f\xfb\xfa\x3f\x33\x3c\xf5\x5f\xcf\xef\xd9\xcc\x83\xa1\x83\xa3\x27\x8d\x9a\x12\xd0\x27\x23\x9d\xfe\x4a\xb4\xba\x35\x36\xa4\xe6\xba\x24\xf2\x9a\xff\x5d\xf7\xf6\xff\xcb\x5b\xd4\x92\x56\x05\x99\xa1\xcb\x76\x93\x29\xaf\x71\x1d\x5e\x56\x1d\xdb\x46\x75\x7f\x6b\x39\x87\x09\xc7\xf8\x17\x9c\x0d\x86\x60\xcb\x71\x18\x95\xcb\x8b\x9d\x6a\x42\x4d\xb1\x5a\x35\x74\x71\xb9\xdc\x93\x9c\xcc\x96\x1c\xab\x94\xdf\x96\x61\xa9\x5a\x89\x98\x6b\x65\x63\x5f\xda\xdd\x13\xaf\xe2\x8d\xad\xf2\x0d\x96\x06\x02\x19\xf7\x76\xb7\x18\x82\x66\xd3\xa6\xe2\x74\xa7\x38\x57\x76\x22\x04\xd1\x8c\xdb\xc0\x42\x4e\x5b\xcc\x5a\x2d\x80\x07\x3a\xc2\xd0\x10\xf1\x41\xee\x56\x43\xcd\x6e\xc9\x64\xa5\x0c\x5a\xe4\x50\x8d\x27\x3e\xf0\x33\x23\xea\x94\x88\x03\x31\x44\x01\x79\x51\xae\x87\x25\x0b\xc7\x60\x85\xc5\x23\x70\x03\x43\x98\x60\x84\xfe\xd8\xba\xe9\x75\x2a\xca\x13\xf8\x34\xdf\x69\x6b\x42\xcb\xaa\x2e\x61\xc9\xbe\x16\xd0\x70\xb4\x39\x0c\x19\xdd\x09\x0c\xb8\xe0\x19\xf4\xf8\xe3\x0a\x67\x52\x66\x69\xd2\x8a\x49\x97\xa8\xc9\x18\xde\xcd\x96\x58\x53\xa8\x92\xdd\x1e\xc1\x90\x15\xbf\x85\x8e\x47\xf7\x9b\xf7\xb2\xe5\x56\xd4\xc8\x7d\xc5\xdb\xe3\xf1\xb6\xea\x60\x5b\xb0\xed\x1b\xbc\xbd\xe0\xb8\xc0\x54\x78\x89\x5d\xd5\x52\x68\x31\xa0\x82\xc9\x75\x6d\x8b\xb0\xba\x2f\x53\x54\x36\xf5\x57\x86\x0c\x6f\x78\x8d\x36\x7c\x99\x55\x43\x80\xc1\x3a\x92\x8a\xee\xe6\xbe\x4c\x34\x0c\xb2\xec\x06\x32\x90\x42\xd9\xbd\xe0\xae\x1b\x0f\x70\x7b\x31\x42\x9d\x21\x52\x06\xc9\xf2\x91\xe7\xa8\x3b\x44\xca\x9c\x58\x3e\x4e\x16\xe8\xc5\x10\x29\x63\x60\xf9\x58\x2c\xd0\xcb\x21\x52\xa6\xbc\xea\xb1\x83\xbe\x95\x8f\x1d\xf3\xd8\x45\xdf\xc9\xc7\xae\x7e\x14\x1d\xf4\xe7\x21\x6a\x08\xf3\x55\x74\xd1\x7f\xca\x47\xf3\xf5\xae\x83\xfe\x32\x44\x8d\xbb\x4e\x63\x0d\x24\x9d\xc8\xb0\x73\xcd\x46\x02\x3d\xae\x95\x61\x4d\xf9\x26\x1a\xf5\x3d\xe1\x78\x77\x22\x65\x65\xf1\x25\xc3\xdf\xf2\x6c\x37\x4b\xd2\x98\x20\xb2\x6a\x4f\xb7\x49\x61\xe2\x58\x82\x66\x53\x0c\x3a\x43\xb9\xcb\xd6\xeb\xca\x14\x2a\x33\x06\x39\x89\xf2\x87\x1e\x9d\xd6\x93\xab\xa9\xd4\x3f\xf5\x6b\x7b\xf1\x2d\xe7\xd4\xfc\xd6\x1f\x4e\xd9\x98\x4c\x08\xe6\x6a\x7a\xed\x83\xfe\xa4\x6d\xa6\xe4\x3c\xbf\xd1\x19\x41\x4c\x43\x5a\x71\xa2\x66\xdc\x3d\xe9\x8f\x46\x83\x56\x96\x91\xcb\x10\xbf\xd4\x45\xcf\xbd\xbb\x6b\xb9\x3a\xde\x73\x59\xe0\x72\x31\xcb\x85\xc0\x63\x5b\xf0\x2f\xa6\x60\xf4\x5e\x57\x38\xf2\x6f\xf4\xfe\x3a\x44\x0d\xff\x85\x01\xde\xbf\x10\xeb\xca\x89\xf3\xdf\xe8\x32\x97\x22\x17\x5a\x09\x88\xba\x72\x16\xcb\xe7\x60\x8c\xba\xc0\x8b\x72\x7c\x65\x09\xf9\x4b\x41\x88\xba\x72\x52\xdd\xa3\xfe\xfa\x23\xc1\xb3\x31\xea\xca\x69\x55\x3f\xf5\xdb\xf7\x39\x57\xce\xec\x5d\x39\xab\xe6\x21\xec\x8f\x4f\x51\xd7\x9b\xce\x03\x3e\x0d\xe0\x95\x9f\xff\xb3\x04\xd7\x7e\xbd\xe2\xcb\x42\x10\x3a\xd5\xe0\xca\xf9\xf3\xdf\x98\x1e\x8c\x1a\x17\x75\xe5\xac\xd9\x27\x3b\x63\x04\x53\x71\x49\x94\x47\x8a\x49\xed\xf0\x42\x4f\x5c\xe5\x83\xae\xf1\x81\x7e\xa2\xec\x9e\xa2\x17\x72\xf2\xcc\x83\xfe\xf2\x0e\x0b\xf4\x42\xce\xd8\x3b\x6c\x91\x2f\x7f\xb8\xc1\x27\x6c\x94\xcf\xd0\x0b\x85\x7f\xee\x59\x7f\xff\x3e\x2f\x34\x12\xbe\x90\xd3\x65\x9f\xc2\x6f\xef\x73\x9e\xcf\x0b\xf4\xe2\x3b\xaf\x84\x7e\x67\xe1\x31\x59\xb0\xd1\x8b\x3f\x2b\x88\x6c\x52\x6c\xdd\x0a\x9e\x2d\x30\x47\x2f\xe4\xd4\xe9\xdf\x16\xcd\xe9\x28\x17\xe8\xc5\x5f\x14\x92\xcb\xdf\xf1\x7c\xf4\x3f\x4b\xd2\x5e\x10\x46\xd1\x8b\xbf\x06\x13\x52\x7e\x29\x29\xcc\xf9\xa2\x30\xc4\x65\x4b\x7b\x13\xd3\x4c\xb8\xbd\xa7\xee\xd2\x32\x11\x60\xb0\xf2\x71\xce\x44\x89\x4c\xba\x62\xae\x5e\xbe\xc3\x3a\x3a\x91\x6c\xc3\x4d\x99\xe4\x90\x48\x81\xa8\x3a\xc7\xdd\xb6\xe6\xea\x31\xd8\x1b\xfa\xa4\x2f\xb1\x94\xb9\xe7\xc8\x2e\xc1\xe3\xe1\x34\x0d\x12\xde\xee\x58\xad\xdc\x4b\x6f\x07\x78\x6f\x7d\x44\x5b\xeb\x2e\xcc\x79\xf3\x9c\x1e\xf8\x34\xd1\x01\x9f\xea\x86\x24\x26\xe5\x7a\x9c\x25\x06\x49\xd6\x41\x4d\xb3\xa6\xd8\x37\xf9\xe8\xd3\xcd\x92\x53\xb9\xa2\x5f\xa9\xba\xbb\x59\x92\xd9\xf8\xfd\x2c\x17\x92\xde\x87\x8a\xad\x02\x8b\x2b\x32\xc7\x6c\x29\x60\x20\x35\xaf\x23\x15\x97\x66\xd7\x6c\x24\xcb\xc0\x39\xab\x61\x4b\x96\xdc\xe2\xe9\x52\x28\xc6\xeb\xfc\xa6\xc0\xfc\x0e\xf3\x7d\xc9\xd5\x99\x8b\xd6\xf8\x5b\x86\x25\x8a\x8c\xd9\x68\xa9\x2f\xd0\x43\x7b\x2c\x9d\xa6\x87\xe9\xb2\x19\x83\x8f\xa3\xdb\x9c\xe7\x23\x81\xf9\xdb\x5c\xe4\xbd\x9d\xce\x5a\x22\x50\x42\x84\x40\xad\x96\xf8\xe3\x0b\xc8\xda\xe3\x5c\xe4\xa8\xd1\x68\x09\x28\xd6\xa0\x97\x00\xf6\x3d\x67\x73\x52\xe0\xfd\x2c\x47\xe6\x67\x9b\xe3\x82\xcd\xee\x54\xe8\x85\x44\xdb\x79\x5b\xdc\x62\xb9\xe6\x6b\xd0\x4b\x7d\x97\x8b\xd0\x01\x6b\xf8\x58\x4e\x6e\x2f\xa9\x15\x2e\xbf\x1b\x65\xb0\x52\x5e\x54\xab\xb8\x0a\xfe\x77\xa5\x9c\xa2\xec\x3e\xa1\xb6\x79\x9b\x0b\xc9\xcb\xde\xab\x1c\x93\x52\x04\x2d\x74\xcb\x67\xf2\x37\x5f\xaf\xb5\xb7\xc5\x37\x3f\x8d\x5b\xdf\xc0\x1c\xfd\xb9\x5c\xea\xc2\x13\xa2\x8d\xf6\xce\x2e\x32\x55\x77\x9f\x92\x4d\x16\xcd\x26\x46\x08\xaf\x56\xa5\xaa\x4f\xbe\x63\x4e\x35\xef\x9a\x5b\x06\xf2\x31\xa3\x8a\x03\x5b\xad\xdc\xcf\x2b\x95\x22\xa9\xd9\x8c\x5e\x0c\xdc\xf3\x29\x16\xb7\x6c\x3c\x2c\x5b\x9c\xd9\xd8\x8e\xc6\xb6\x05\x32\xb4\xdb\xdd\x32\x16\x2c\x12\xc1\x9c\x05\xcb\x2b\xb2\xc7\x5b\xe8\x5b\x25\xe5\x0c\xf8\x50\x1b\x14\xd0\x01\x6f\x75\xd5\x56\x04\x8f\x0c\xf1\xad\x1b\x8e\xf3\x4f\x6b\x17\x6a\xc4\x75\x33\xda\xd0\xcd\x8b\x44\x37\x7f\xde\xd8\xcd\xee\x8b\xda\x8e\x26\xbf\x99\x61\x45\x07\xe6\x52\x0c\x4e\xde\xed\x22\x01\xd4\xc5\x6e\xeb\x65\x8b\x0d\x21\x41\x36\x37\x95\x7c\xd5\x91\xaf\xe6\x6a\x9e\xd5\x73\x57\x3e\xe7\x7c\x5a\xa8\xa7\x17\xf2\x49\x87\x1f\x71\x30\xf0\x66\xd3\x78\x12\x12\xba\xcd\xf7\x8d\x33\x60\xaf\xd1\x58\xc3\xdc\x26\x6c\x74\xe6\xcb\xe5\x50\x6f\xf5\x50\x4b\xc7\xd4\x8e\xba\x21\x35\xce\x8f\x39\x24\x86\xaa\x38\xdf\xcf\x3d\xfa\x8a\xef\x01\xfc\x1a\x89\x01\x41\xb4\x95\x31\x94\xf1\x5d\x0a\xbe\xc9\xc1\x2e\xfb\x63\x3e\xdc\xa7\x88\xb4\xf2\x1e\x47\xc4\x89\x14\xb2\x28\x1d\xee\xd3\x56\xde\xa3\x0a\xc9\x17\xf5\xee\x66\xbf\x4a\xe3\xf5\xb8\x86\x5f\x1d\x64\xfd\x71\x6d\x82\xe1\xff\x7b\x89\x97\xf8\x0d\x26\x74\xaa\x4e\x35\x3c\x76\x6a\x6c\xbd\x3c\x7f\x97\xdf\x75\x40\xac\x53\x1b\x93\x4b\x19\x8d\xb9\x30\xd9\xaa\x05\x57\x4b\xdd\xd9\x1b\xf5\x0f\x53\x59\x7c\x5c\x44\xba\xe9\x8c\xdd\xe4\xb3\x73\xf3\x32\x99\xa6\x52\x2d\xe2\x11\x4b\x84\x3b\x51\xd9\x56\x5e\x79\x3d\x9a\xf1\x1a\xdb\x00\x1b\xc1\x58\x7f\x1b\xbc\xfc\x0f\xdc\xfa\x76\x08\xf6\x4d\x1a\xd0\x5e\x55\xd1\xaa\x4c\xbf\x36\xb9\xc9\x1a\xe0\x55\x28\xc4\x1b\xa5\xab\x84\x0c\xf1\x76\x3e\x11\x98\xc3\xdc\x1e\x3e\x95\x99\xb2\x3a\x67\xe8\x74\xe0\xd5\x29\xf6\x42\x24\xd7\xac\x81\xf7\x3e\x9a\x65\x63\xc2\x67\x33\x82\x9b\x1c\xab\xf6\x30\x84\xb3\xba\x3e\xe5\xfc\xcd\x9c\x0c\xab\xf4\x28\x05\xca\x04\x5a\x66\xd5\xb5\x01\x60\xdf\xac\xf3\x1d\xfb\xa4\xa2\x4b\x9c\x6b\x4a\xd8\xf3\x5e\x5b\x13\x37\x85\x0c\x7b\xf4\xd5\xcc\xdb\xe9\x8a\xe0\x95\x5f\x5b\xe8\x5b\x6b\x9e\x9f\xe5\x68\x26\xf7\xf7\x10\x34\x9b\x45\x36\x1b\xd0\x21\xcc\xa1\x7c\xf3\x62\x08\x85\xfa\xf1\x72\x08\x3c\x2c\xdb\x79\x7a\x12\xab\xf0\xb7\xe7\xcb\x42\x28\x71\x60\xf3\xd7\xcc\xd9\xd5\x76\xb7\xdc\xac\xb2\x66\x93\x59\x3b\xa7\xda\x5e\xcb\xe8\xa5\x7a\x27\xec\x74\x75\xaa\x99\x2a\x7e\xbe\xee\x98\xb7\x0a\xe1\xb2\x9d\x38\xcb\xc0\x6d\x5e\xfc\xc0\x78\x6d\x04\x8e\x5a\x08\x5e\x77\x4c\x9e\xcb\xa8\xb7\x38\x04\x14\x1d\xe1\x59\xd2\x47\x41\x23\xad\xf2\x4f\xd0\x84\xd7\x05\x3f\xd6\x68\x67\x2c\x36\x03\xdc\x9e\x62\x65\xca\x1b\x60\xa0\xb9\x7e\xcb\x28\x30\x51\x40\x67\xc6\x02\xd7\x19\xd8\xbe\xde\xed\xee\x67\xdc\x19\xce\xc2\x6f\x01\xdc\xe9\x80\x5e\xe6\x8a\xd6\x2d\x31\x00\xaf\x77\xbb\xcd\x66\xc6\x07\x4c\x9e\x64\x4a\xe7\x54\x99\xc0\xe8\x36\x0d\x86\x21\xb3\xfc\x29\xd2\x97\x69\xa6\x00\x7c\x54\x2f\x7b\xda\xee\xcd\x9c\x44\xf6\x08\x8a\x13\x10\xa9\x28\x43\x94\xfc\x7b\x59\x9b\xb1\xb5\xf4\xa0\xa9\x4c\x18\xb6\x13\x86\x10\xca\x9b\xcd\x2c\x0f\x89\x69\x50\x5e\x65\x2c\x81\x39\xb0\xbb\x3a\xb7\x53\x6e\x86\xe3\x1a\x2a\xf6\x33\x82\x6a\x07\xb7\xfb\x2d\xcc\x55\x5b\x02\x12\x00\x7a\x59\xc6\xfc\xb2\x60\x50\xb4\x5e\x0c\x11\x85\x6c\x50\xb4\x5e\x0e\xd1\x17\x4e\xc6\xf5\xd4\xd8\x2a\x1d\xd3\x09\x8b\xd5\x79\xce\x8e\x7c\xe2\xd3\x36\xf8\x6d\x1c\x19\x4a\x91\x90\x68\x32\xc1\xa3\xe7\x09\x29\x6c\x20\xbc\x9e\x0a\x8c\x35\x7b\xc8\x70\x25\x82\x7e\x85\x3e\x25\x4c\xc2\xc0\xa3\xe0\x0f\xcf\x68\x78\xa4\x6c\xef\x18\x78\xe4\x19\x83\x44\x45\x34\x5b\x67\x00\x8e\x6b\x2f\x18\x7f\x95\x7a\x50\x9e\x96\xc1\xc9\xae\x0f\x92\x7f\xeb\xc3\xf6\x71\x0d\xcb\xc7\xb3\x7c\x8e\x8f\xfd\x03\xd7\xbd\x2d\xd4\x3d\x12\xc7\xe3\xe5\xc8\xbb\x61\x90\xa3\x29\xc5\x40\x3a\x54\xd8\xb6\xc8\x28\x94\x5c\x09\x14\xea\xb2\xc1\xeb\x2c\x79\x39\x5a\x8c\x6e\xf1\x78\x39\xab\x62\xbb\x6f\x62\xe7\x35\x32\xc0\x43\x79\xbe\x94\x68\x5e\x55\xe7\xfe\xc8\x96\xdb\xb9\x10\x78\xbe\x10\x78\xbc\x2d\xd8\xb6\xed\x63\x3b\xa7\xdb\xb9\x91\xf1\xe8\x76\xbe\xad\x5a\xdc\xce\x1a\x2d\xdc\x6a\x80\x6d\x71\x9b\x8b\xed\x31\xc3\x05\xfd\x93\xd8\xc6\x9f\x49\x21\x1a\x60\xcb\xa9\x76\xe9\x6f\xd6\xcf\x84\xf1\xed\x7c\x5b\x63\x7c\xba\x53\x9f\xa0\x54\x16\x86\xec\xe7\x1e\x91\xd0\x54\x0d\x32\xd0\x33\xac\xa8\x7d\xde\xc8\x82\x94\x5c\xe9\x17\xa0\x55\xb3\xe9\x3f\xb9\x0c\x94\xd0\x46\x5c\xb1\xc4\xb5\x44\x1a\x77\xf9\x52\x1d\x88\xe4\x74\xe5\xdc\xc6\x55\x06\x89\xb2\x43\xb8\xd3\x45\x08\x59\xbe\xcb\xe0\x01\x1d\x02\x7b\xa2\x65\x40\x11\x84\x44\xd5\x56\xcb\xe5\xf0\x8d\xfb\x77\xe7\xb1\xb6\xd6\x27\x93\x4c\xa7\x8a\x30\x87\x67\xb7\x3c\xb0\x9f\x4b\x93\x82\x04\x18\x8a\x89\xb4\xee\x71\x8a\x7d\x76\xb3\x64\x7e\x90\x9a\xe9\xb2\xb7\x4d\x7b\xa0\x32\xa1\x03\xe6\x92\x86\x98\x59\xe0\x43\x28\xa4\x18\x46\x43\xb8\x94\x8e\xa1\xd5\x72\x98\x64\x68\x4c\x29\xf8\xce\xc3\x0b\x50\x29\xf9\x53\x73\x83\x9e\x81\x3d\x35\xdf\xd4\x44\xcc\xa1\x2e\x1d\x72\x59\x42\x09\x1b\xc1\xbd\xe4\x1a\xde\x25\xae\xfe\x5c\x7f\xd3\x30\xdc\xb5\xf1\x03\x8d\x71\xcf\x69\x5a\xe0\xb2\xe4\x32\x0d\xfb\x4b\x26\x99\xde\xef\x7b\xfe\x7a\xe5\x40\x9b\x36\xc0\x65\x80\xab\x5b\xb6\x0c\x46\x2f\x02\xf2\xd7\x19\x42\x5f\x23\x82\x32\x6e\x04\xff\x8c\x86\xa9\x5a\xc0\x7e\x36\x43\x02\x2e\x11\xd5\x96\xcf\xda\x99\xc2\xd3\x00\xf0\x66\x53\x6d\x6f\xb1\xbf\x44\xb2\x28\x18\xd0\x61\x4a\xdb\x22\x9a\xcd\x0c\xa3\x2e\x74\x70\x0a\x00\xf3\xd7\xd8\x5c\x2f\xe6\xbb\x18\x16\xde\x9d\x20\x71\x97\x8d\xea\x96\x51\xae\xb8\x07\x17\x6b\x61\x7b\xd5\x38\x98\xc1\x25\x2c\x3c\x4d\xc1\x8d\x97\xed\xa0\xba\x33\x1d\xce\x45\x32\xa7\xc5\x90\x17\x08\x55\x56\x63\x3f\x98\x93\xce\xd0\x97\xd5\x07\x5d\x49\x01\x6c\x1a\x1e\x94\x61\x34\x35\x47\x9c\xe9\xc0\x95\x04\x40\x56\xa5\x08\x0f\x7c\x33\x9f\x8c\x20\x3c\x78\x31\x04\xfb\x0c\x75\x7a\x45\xc6\x10\x31\xf1\x7c\x56\xab\x8c\xa3\x1d\x59\x84\xc1\xf2\x2d\x80\x03\x89\x37\x04\xb2\x32\xad\x14\x83\xdd\x0e\x80\x7c\xa8\x70\xf1\x1a\x75\xe0\x3d\xea\xc0\x3e\xea\x40\x49\x25\x2f\x51\x07\x9e\xa3\x0e\x3c\x40\x1d\xf8\x09\x75\xe0\x29\xea\xc0\x2b\xd4\x81\x87\xa8\x03\x2f\x50\x07\xbe\x47\x1d\x78\x86\x3a\xf0\x67\xd4\x81\xc7\xa8\x03\xdf\xa2\x0e\x3c\x41\x1d\x78\x84\x3a\xf0\x17\xd4\x81\xdf\xa3\x0e\x7c\xb3\xc9\x02\xa1\x74\xd5\xd3\xe7\xe9\xdb\xfe\x9b\x0f\xef\xd0\x4e\x37\xb0\xcb\xb2\x36\xae\x41\x20\x7e\xfd\xea\x32\xb0\xe3\xba\xc6\x77\x98\x0a\x6b\x8e\x5d\xa0\x47\x4c\xc7\xf2\xe4\x56\xe1\x4d\x7b\x83\xe1\xda\x1a\x39\x90\x39\xb6\xfa\xb0\xe3\x71\x90\x1b\x51\x7e\x29\xca\x06\xf3\xa5\x60\x7c\x49\x83\xb4\x48\xfa\xd5\x65\x94\x56\x31\x38\xe4\x43\x61\x7a\xb5\x7a\x5c\xc3\x8a\x81\x9b\x5f\xa6\x3d\xd6\x96\xd3\x8a\xa9\xd4\xa2\xdc\xb5\xff\x0a\xd5\x16\xee\xd5\x15\xf6\xc8\x5d\xc7\x8e\x86\xd1\x37\x72\x26\xc2\xd6\xcc\xcb\xd5\xea\xc1\x95\xea\xd3\x71\x5c\xa6\x4f\xc7\x65\x09\x95\x7c\xf7\x62\x49\xfb\x9f\x17\x84\xe3\xf1\x95\x9e\x34\xfd\x8d\x47\xaf\x55\xa4\x2b\xed\xda\xe4\xd7\x3e\xd0\xb3\xd8\xa7\x01\xbf\x76\xd4\x6a\x59\xb9\x93\xba\x99\x56\xbe\xa6\xe1\x4a\xd0\xd4\x32\xd0\xf6\x35\xa6\xe3\x4c\xf9\xdc\x6c\x79\x31\x4b\xed\x20\xae\x03\x7d\xf6\x6a\x45\x8c\x42\x65\x61\x35\xdc\x3c\x4b\x02\x98\x64\xb8\x14\x4a\xf9\xa0\xdf\x9b\x60\x11\xe1\x5a\x59\xcb\x97\x08\x93\x1d\x4d\x89\x02\x95\x05\x18\xa6\x3c\x92\xcd\x9c\x69\xb1\xd0\xc0\x94\x49\x09\xa1\xa4\xa6\xd9\xf7\xad\x56\x62\x57\x58\x6b\x15\x00\x7f\x91\xb3\x9a\x84\x43\x91\xcc\x71\x74\xe4\x17\x10\x03\xf8\xd9\xb6\x79\x2d\x38\x99\x4e\x31\xcf\x1a\x6a\xc8\x0d\xa8\xbc\x5b\x43\x84\x52\x1e\xaf\x71\x5c\x40\x1c\x2e\x6d\xdf\x35\xa8\x16\x29\x4e\xcd\xc4\x68\xd5\x1a\xa0\x3c\x06\x76\xdc\xa6\xf1\xf8\xc7\xab\x87\x05\x76\x1e\x6c\x7a\xcb\x6f\xcf\x97\x85\xd8\xbe\xc1\xdb\xb9\xbb\x5b\x6e\x00\x3f\x3e\x53\x44\x21\x62\x36\x98\xd6\x35\xaf\x1c\xe4\xe4\x38\xb6\x55\x03\xdb\x8a\x09\xdd\xbe\xc1\xa3\x7c\x29\x4f\x48\xcd\x7c\xaa\xa8\x38\x96\xfb\xa4\xce\x5a\x28\x1c\xe7\x64\x92\xf6\x8e\xdb\x04\xdf\x0e\x5e\xad\x1c\x8c\x7c\x33\x8c\x93\xc9\x17\x00\xa9\x83\xf6\xee\x74\x65\x27\x02\x94\x4a\x60\xee\x3b\xf8\x70\x29\x93\x18\x17\x7f\xb4\xd3\x81\x4e\x31\x40\x61\x17\x40\xba\xbb\x0b\x4c\xc2\x9d\xa7\xe1\x1a\xd9\x75\x72\x0c\xbb\x0f\x4e\x64\x33\xb7\x0c\xf6\xd7\xa5\xdb\x5f\xb5\x47\x24\x14\x08\x7b\xa7\x24\x57\x67\x63\x20\x06\x48\xea\x94\x59\x97\x5e\xbf\xb3\x9f\x59\xb8\x9b\xcf\x7f\x93\xde\x64\xab\xc9\xee\xc6\x78\x82\x63\xd9\xd7\xbb\x35\x50\xea\xf8\x83\x56\x0b\xf2\x2a\x6f\x47\x90\x66\x71\xf8\xeb\x97\xfb\x7c\xf7\x65\xaf\x23\x59\x9d\x97\x7b\xec\x15\x57\xac\x0e\x19\xb0\xdd\x97\x01\xb3\x13\xc2\x64\x85\x2b\x33\x2a\xa5\x3f\x18\xa8\xfe\x87\xed\x91\xba\xe8\xcd\x2a\xf9\xfe\x12\xc2\xa5\xe6\x7a\x3f\xc9\x3d\x5d\x05\x91\x1a\x10\xc5\xeb\xee\xbe\xd8\xed\x4a\x10\x39\xea\xee\xf1\x57\x42\x79\x08\xd3\x01\xdf\xed\xfa\x20\xf2\xe1\x96\xc7\xf4\xc7\x33\x4e\x55\xb8\x6f\x39\xd3\x39\x22\x72\xa6\x0b\x44\x06\x2f\x86\x92\x05\x74\x1c\xc3\xbe\x93\x27\x7b\x21\x5d\xb5\x14\xa7\x58\x72\xe7\x2a\x93\x01\x37\xa2\x0c\xeb\x9b\x49\xb8\xd3\x85\x71\x54\x63\x5b\xe6\x58\x60\x1e\x85\x08\x95\xdb\xf6\xd4\x06\x07\xfa\x6d\xc0\x50\x27\xd8\x1c\x0e\x84\x14\xd3\x2a\x7a\x13\x85\x2f\xe7\x74\x94\x50\xc0\x04\x38\x73\xf5\xbb\xe2\x8c\x04\xe0\x6b\xf0\x26\x02\x5c\xe3\xce\xe1\xff\x77\x70\xa7\x53\xc5\x1d\x77\x43\x9b\x50\x13\x5f\xd8\x93\x70\x96\x0b\xcc\xfd\x09\x2d\x89\x4b\x14\xf6\x39\x0f\xa2\x6b\x83\xc7\xf7\x8e\x3c\x55\xcc\xdf\xbe\x8c\x5e\x41\x82\x4a\x29\x66\x07\x21\xbe\x6f\x49\x7f\xaf\x53\xaa\x83\x3b\xcd\x66\x91\xf1\x01\xdb\x55\xb7\x00\x19\x29\xa5\x07\x6e\x7c\x17\xba\x1d\x2b\x5c\x70\x48\x86\xeb\x2f\x85\x01\x0f\x5e\x46\xa4\x53\x0d\x39\xb3\x2a\xc1\xc8\x9e\xf7\x96\x33\x21\x42\xdb\xbf\x33\x3b\x23\x50\xa0\x9b\xda\xee\x29\x12\xb2\x7b\x8e\x84\xec\x9e\x20\x21\xbb\x67\x48\x0c\x5e\x4a\x0c\x11\x83\x6f\x87\x4e\x76\x96\x92\xdc\x6a\x95\xc3\x25\x1a\xa9\x68\x83\xbe\x7c\x00\x4a\x79\x5a\x03\xad\xf2\x24\x2d\x95\xac\xeb\x41\x2f\xab\x15\xfb\x77\x3d\x02\x19\x80\x85\xbd\x6b\x50\x87\x82\x1e\x16\xe8\xb9\x1a\xba\xe1\xc1\xb2\xd5\x1d\x42\x8c\x96\xad\x6f\x83\x0e\x07\x78\xb8\x83\xd0\x9d\xbb\x7f\x72\x6f\x11\x01\x26\xb1\x86\x4f\x2c\x24\x03\x3b\x0a\xa6\xe7\xe7\x72\x7a\xcc\x4e\xa9\x9f\x24\xb3\x63\x0a\xbd\x63\x96\x7a\xc7\xcc\x10\x91\x93\x34\x41\x44\x4e\xd2\xa2\xc4\x98\x49\xb3\x39\x81\xe3\x60\x14\x70\x8e\x46\x19\x83\x05\x1c\x03\xf8\x90\x98\xa8\xf9\x7e\xf6\x10\x4c\x94\x2c\xbb\xd8\xbf\xeb\x2d\xe1\x0c\xc0\x45\x30\x51\xf2\xd3\x52\x4e\x94\x4d\x46\x69\xb9\x75\x6d\xa8\xd0\x9a\xc1\xf1\x40\xa0\x79\xeb\x5b\xc9\xa2\xc8\x09\x5a\xa2\x3b\xd9\xeb\x78\x30\x6f\xa9\xdc\xb0\xb7\x19\x96\x70\xcc\x5b\xb9\x52\x26\x67\xe3\xc1\x7c\x88\xb0\xac\x35\x44\x4b\xd0\xcb\x78\xb8\x00\xf3\xd6\x77\xc3\x60\xea\x4b\x66\xa7\x03\x31\x7c\x80\x0a\x20\x68\x73\x0f\x45\x85\xe6\x2a\x99\x84\xc4\x9d\xb9\x1d\x05\xc7\x8a\x2b\x9f\xcd\xae\x3c\xa1\x33\x03\x00\x3e\xa4\x2e\x7e\x8c\x28\xe5\xad\xdc\xb1\xe3\x9b\x9d\x15\x47\xd9\x4a\x8d\xd4\x1a\x49\x0b\x95\xfb\xab\x6a\x2f\xa1\x05\xbd\x1e\x53\x79\x6d\x95\x92\x4e\x9e\xbc\xb6\x22\x93\xec\xad\x11\xe7\x10\xb2\xb7\x0c\x3b\xdd\xad\x27\xed\x44\xf6\xfd\x41\x9c\x48\x04\x51\xf0\x66\x18\xf4\x76\x32\x6b\x61\x2e\xc1\x59\xad\x76\xb0\x16\x5b\xd4\x2f\xad\x0b\x06\xcd\xa6\x79\x69\x80\x4a\xa4\xe7\xf0\x29\x7a\xd5\xe7\x27\xa6\xf8\x95\x58\xa8\x09\xbd\xa5\xef\xd4\xb5\x65\x95\xa8\xea\x78\x31\x03\x7f\x34\xd3\xd6\xab\x2a\x11\xe0\x88\x2d\xa9\xc0\xdc\x24\x28\xb6\x4f\x50\x2f\x43\x6f\x12\xec\x79\x98\xc3\x17\x00\x06\x82\x9e\xc9\xcc\x16\x89\x76\xee\x58\xae\x4a\x86\x2a\xd7\x45\xca\xc3\x41\x34\x9b\x22\xd6\x80\x9a\x51\xac\xe3\x94\x31\xd7\x1b\x9c\x68\xaa\xd2\xae\x32\xc6\x77\xb7\x00\x48\x54\xaf\x01\x30\x1d\x2b\xf1\x00\x8f\x55\xb4\x51\xb6\x94\x72\x9c\x14\x38\xad\xc5\xe0\x4e\xd7\xe9\xdd\xb6\x04\x7f\x78\x24\x4e\xcb\x8c\xc1\x7a\x42\x68\x3e\x9b\x3d\x3c\x72\xa3\xf8\x82\x3a\x97\xb3\x9e\x39\x7b\x62\xbb\x0d\x61\x03\x70\x3d\x4f\xbd\xe4\x69\xf4\x33\x77\x85\x1e\x08\xda\x65\x72\x89\x4a\x93\x20\x96\xa2\x95\x49\xb2\x64\xdd\x7c\x6d\x8b\x0a\xbc\x03\x2a\x53\x1c\x4a\x25\x86\xe3\x8b\x3c\xa6\x12\xbd\xee\x97\xb2\x8e\xae\xd3\x2b\xfd\x02\xed\xad\x84\xbe\x59\xcb\x36\x5d\xd6\x5d\x07\x12\x98\xcf\x6f\x5a\x1b\x04\xa3\xe4\x00\x0e\xe3\xd5\x8a\x65\x00\x72\x20\x57\xc8\x45\xce\xab\xdc\xda\x11\xf0\xc8\x33\x52\x2e\x9b\xaa\x8c\xe9\x38\x03\xfa\x1a\xa1\xae\x76\xa2\x7c\x04\x73\x40\xfa\xfc\xfd\x99\xa2\x61\xee\x3c\x75\x87\x8a\xb3\x77\xcb\x82\x82\xe0\x0b\xd4\x81\xf1\x2c\x46\xcc\x5b\x7c\x0b\xbd\x89\x13\xb5\x37\xd4\xf1\xa1\xc7\x61\x81\xae\xcb\x7b\x89\xd2\x70\x25\xa0\xdc\xfb\x01\xe1\x30\xb9\xba\x61\x01\x35\x04\xcc\x8e\x29\x7d\x3c\xf5\x32\x82\x64\xf1\x90\xed\x49\x9d\x79\x04\x76\x60\xa2\xd9\xda\x73\xaf\x48\xae\x58\x49\xe7\x13\x96\x44\xa5\x47\x52\x62\x98\x7b\xa2\x85\x72\x67\xbe\x62\xcf\x71\xa1\x6c\xea\x40\xea\x5c\x33\x70\x8b\xdd\x2e\xcc\x81\x22\x14\xe2\x89\xc3\x1a\xee\x58\xfe\x65\x27\xbe\xc6\x32\xfb\xba\x4e\x2e\x7b\x5a\xeb\xb4\x83\x90\x4e\x55\x9c\x88\xa5\x45\x06\x7c\x98\x89\xe4\xc6\x0c\x55\xaf\x95\x33\xec\x29\x0d\xb7\x4f\xd3\x82\x9d\x1b\x52\xcc\xa0\x17\xfb\x55\xed\xbb\x18\xa4\x64\x8d\xe4\x55\xa9\xe3\x40\x83\x63\x8d\xa1\x8e\xe4\x38\xad\x18\x68\x04\xb4\x40\xaf\xed\x4c\xa5\xc2\xdd\xb0\xc7\x5e\x15\xcd\xe6\x4e\x46\x06\x6c\xf8\x7a\x06\xf6\x98\x44\x87\x0c\x23\x32\x60\xad\x6f\x87\xc0\xf2\xcd\xea\xf9\x85\xe4\x08\xe5\x8f\x97\x52\x08\x90\x3f\xbe\x1b\x26\x09\x77\x29\xe5\x2d\x15\xbc\x58\x4a\xe5\x1c\x80\x2d\x17\x89\xad\xf3\xc4\x0e\x8a\x97\x2c\x85\x59\xd5\x75\xab\xe7\xf1\x9e\xd3\x49\xa5\x76\x2d\x01\x0c\xf1\xa3\x86\x0e\xda\x6e\x52\x55\x40\xfd\x55\x4a\x0c\xd5\x13\x03\x27\x93\xac\xb3\x93\x24\x60\x61\x82\x7a\xb3\xb1\xd5\x9d\x79\x0a\x0f\x20\x45\xa7\xb9\xb8\x6d\xcf\xf3\xcf\x59\x07\xe2\x5d\x1b\xc1\x30\x06\x31\xaa\xeb\x19\x53\x6f\xb8\xdc\x90\x7b\xb0\xc2\xff\xd4\xb1\x91\xd5\xd8\xca\xb6\x54\xe4\xee\x8c\xdd\xc4\x07\xa7\xc8\xa6\x13\xc1\x66\x30\x4e\x6e\xd7\xf2\x7e\x20\x76\x50\x8d\x8b\xf8\xe0\x9e\x84\x37\x17\xde\xb4\xe2\xcf\x62\x2b\x3c\xf8\x14\x3b\xbc\x21\x2a\x80\x65\x5e\x6b\x22\x03\x3c\xea\x9b\xb8\x7b\x88\xe9\xb8\xd7\x87\x8a\x2c\x16\x3d\xf3\xf6\xb3\x7a\xdb\x59\x43\xd3\x59\xd1\x7b\xd4\x9d\x8c\x7b\x27\x70\xc4\xe6\x8b\x19\x96\xbf\x8f\xd6\x50\xf2\xd1\x97\x50\x72\x47\xbd\x73\xa8\x74\x63\xbd\x03\x68\x47\xd8\xfb\x04\x63\xd5\x5d\xef\x14\x3a\x0d\x5a\xef\x0a\xfa\x7a\xa9\xde\x21\xf4\xcc\xed\x2f\xa0\x3a\xad\x7b\xef\xa1\xd5\x31\xf4\xce\xa0\x95\xa7\x7b\x3f\x43\x5f\x48\xeb\x1d\x9b\xc7\xde\x5b\x38\x63\x6c\x51\xf4\x1e\x05\x13\xf9\xac\xf7\x0b\xa4\xb8\x90\x90\x7e\xbf\x5e\xbb\x00\x68\x3e\x21\xdb\x18\x36\x21\x20\x79\x2e\x6e\xc2\xd6\x9b\xb6\xbe\xdb\x5b\x40\x6c\xef\xff\xd0\x1b\x18\xfb\x68\x10\xed\xfb\x31\x62\x54\xe4\xa4\xe2\xfa\xf1\x5f\xca\xf7\xe3\x1b\x95\x9c\xb6\x7c\x5c\xb0\xd9\xc3\x84\xcc\x66\xa5\x73\x08\xbb\x57\x55\xcd\xd3\x52\x90\x59\x50\x7b\xc1\xf1\x48\xae\xca\xee\x04\xe7\x62\xc9\x71\x59\x11\x97\x81\x9f\x22\xdf\x92\xd2\x5a\xa1\xe2\x65\x72\x74\x70\x78\x75\x7e\xf1\xe3\xf5\xd1\xf9\x05\x52\x8e\x47\x1a\x74\xe5\xc8\x4e\xee\x72\xa1\xf2\xbd\x18\x87\x44\xfe\xe0\xbb\xa1\xd4\x45\x37\xf9\xf5\x66\xda\x26\xd5\xb3\xed\xd3\x5e\xe8\xca\x79\x41\x42\xff\xaf\xa5\x62\x2f\x19\x33\xca\x3a\x90\x28\xe7\x5d\xc2\x68\xce\x1f\x40\x26\xf4\x07\x5d\xd2\xec\xd5\x49\x3e\x12\x8c\x3f\x9c\xe6\x34\x57\x91\xc3\x6a\x2a\x26\x8a\x05\xcd\x90\xc2\xa4\xa3\xc2\x63\x77\x5b\xee\xde\x11\x3a\x45\x3b\xdd\xd4\xad\xe5\x8c\xb1\x4f\x51\xca\xfd\xd2\x49\xc4\x44\x14\xf4\x47\x5e\x46\x45\x52\x51\x0e\x2b\x5a\x69\xd5\x9d\xbf\x0a\xc1\x4d\x6f\x08\x50\x64\xe8\xaa\x58\x79\xf2\x0b\x7e\x5b\x6d\x64\x9e\x6c\x44\x8e\xb4\x13\x87\x55\x28\xa2\x94\x26\x71\x95\xd5\x2a\xf3\x62\xa2\x64\x16\x3c\xd3\x03\xe8\x25\xae\xe2\x54\x14\xfb\xd1\x2d\x1e\x88\xe1\x96\x89\x32\x83\x53\xeb\x31\x10\x43\x28\x25\x08\x57\x66\xe4\xde\xda\x99\x69\x36\xdd\x4f\xc9\x31\x3d\x35\xc1\x31\x53\xa5\xf0\xec\x58\x45\x17\x25\x8c\x56\x4e\x18\x73\x98\x64\x18\x3d\xae\xc1\x80\xb7\xcf\x7f\x38\xeb\x5f\x98\x1c\xcf\xaa\x6a\x7c\x08\x98\x41\x24\xad\xf5\x7f\x95\x4b\x43\xfd\x90\xd4\xcd\xa0\x68\x17\x6c\xc9\x47\xb8\xd9\xdc\x11\x65\x9c\xe5\xd5\x2a\x8b\x6b\xe2\xcf\x8b\x9c\x8e\x95\x3b\xdb\x89\xc2\x54\xb5\x2c\x20\xb4\x50\x95\xdc\x18\x88\x0d\xb1\x96\x3e\x2a\x6b\xdb\xee\xb2\xd9\x29\x16\xda\x92\x3c\x13\xb0\x51\x10\x3a\x9d\x61\xc1\x68\x03\x44\xfe\x41\xcf\xaa\xae\x25\x7f\x41\x72\x81\xfd\x06\x46\xe1\x5d\xee\x57\xfb\x78\x48\xb6\x58\xcd\x19\x2f\xe7\x8c\x07\x73\x46\x7c\xd0\xaa\x13\x26\x24\x97\x0a\xbc\x81\xf0\xb6\x1b\xb1\x07\x43\x56\xa2\x39\x19\x82\x7d\xda\xab\x91\x4f\xd1\xc4\x08\x34\xc1\x35\x39\x31\x1d\xc8\x97\x69\x05\x01\x6d\x7b\x13\xb5\xe5\x81\x43\x7d\x70\x34\x80\xcd\xa6\x5e\xbd\x66\x53\x2f\xc3\x5a\xca\xfa\x72\x18\x8e\x80\xd9\x9d\x85\x88\x0d\x71\x05\x9e\xd9\xb5\x72\xba\x72\x3d\xfa\x80\xf0\x66\x33\x53\x3f\xc8\x6a\xa5\xfb\xaf\x05\xe0\x8b\x7b\xad\x1f\xb0\x37\xd8\x9d\xb0\xb3\xd5\xea\xab\x87\xa3\xc7\xc1\x57\x2b\x3d\x1e\xdb\xc5\x6a\xa5\x7b\x48\x8d\x47\xb2\x6d\x89\x40\xc0\x6c\x39\x1b\xab\x1b\x79\x3d\xe0\x6d\x43\x31\x1a\xaa\x09\x02\x25\x72\x45\x4e\x68\x25\xa0\x75\x44\x32\x10\x75\x9d\xbd\x28\x37\xb6\x07\x1e\x32\x5b\xef\x49\x01\x22\xe9\xd8\xa4\x79\x52\xc1\x2f\x15\x1c\x14\x7a\x01\x21\x6a\xba\x45\x0c\xb2\x75\xe4\x46\x16\x5c\x98\x2a\xa5\xc5\x0c\xd9\xf8\xcd\x84\xd1\x42\xa7\x31\xb2\x58\x3e\x6b\x36\xb3\xf0\xbb\x24\xb4\x50\xcb\xe9\xc2\x97\xd3\x19\xca\x08\x12\x03\x3e\x04\x92\xda\xaa\xe8\x81\x30\x47\x52\x54\xc4\x23\xe5\x86\xac\x44\x5b\xbd\xa1\xe1\x6c\xc0\x86\xa8\xd8\x97\x14\x23\x87\x8f\xfa\x65\xaf\x58\x83\x9e\x7a\x03\x54\x1e\x24\xe3\xf0\x2b\x49\x64\xf9\x84\x76\x96\xda\xd5\xa0\x1c\xd5\x22\x3c\xb7\xec\x54\x2a\x0f\x39\x29\xa7\x8a\xac\xd1\x6b\x80\x41\xc7\x5d\xae\xa5\x71\xec\xb1\x1c\xa2\x95\x33\x5c\xaf\xbd\x9d\xee\x3a\x74\x66\xd0\x56\x47\x7a\x42\xb9\xe7\xdd\x44\xf5\x4b\xe5\xab\xc1\x15\xce\x49\xd2\x79\xf5\xb0\xc0\xee\x0c\x2b\x54\x9e\x10\xf9\xda\x7b\x25\xfc\x11\x8d\x43\xc7\x2e\xb3\xf7\x21\xf1\x43\xe9\x65\xdc\x0f\xf9\x42\xfc\xe0\x34\x19\x45\x7c\x40\x06\x62\x38\x04\xc9\x43\x78\x1d\x9a\xee\xe2\x3a\xd6\x4d\xb3\x5a\x49\xdc\xaa\x29\x6c\x6c\x79\x25\x92\xfe\x80\xf3\x4f\xa7\xf9\x02\xde\xd5\x5b\x3e\x6a\x12\x6b\xf4\xfd\x8e\xe3\xf5\xd9\x4c\x73\xfc\x1b\x06\x53\xee\x57\x6b\x0c\x36\x59\xce\x66\x2a\xf5\x80\xc9\xe3\xe8\xce\xdb\xb1\x7a\x6b\xaa\xcc\xf3\x31\xbe\x62\x3a\x43\x9b\x35\x57\x35\xba\x6b\x87\xce\xe6\xf5\x83\xf6\x3c\xb1\xcc\x49\xd2\xde\x4d\xd8\xa6\xaa\x62\x8b\xdb\x30\x95\x7e\xad\x78\x1b\xc0\x12\x0e\xba\xdc\xfe\xf3\xfc\x93\x2b\x94\x95\xa3\x0e\xc7\x6c\x2d\xcf\xfc\x16\xa3\x9b\x28\x45\xb9\x12\x16\xe5\x4e\xd7\xea\xed\x77\x07\x3a\x6b\x36\x33\x86\x08\xca\x04\x5a\x64\x21\x84\xa9\x49\x06\xc0\x6b\x05\x8a\x60\xc7\xc6\x93\x4c\x80\x0d\x5d\xc0\x02\xba\x86\x95\x67\x91\x4a\x7c\xa6\x43\x32\x81\xec\x71\x0d\x19\x94\x63\xdc\x29\xc7\x6f\x06\x54\xbd\x30\x39\xca\xc9\x4c\x3b\x4c\x18\x62\x9d\xd3\x6d\x7b\x2f\xb1\xcd\x26\xdb\x7f\x6a\xb4\x12\x90\xb7\x1a\x7f\x6a\x6f\x9f\xb2\x42\x6c\xcf\xc8\x27\x3c\x7b\x50\xb5\xe6\x9a\x6a\xcd\x1e\xb6\x4d\x70\x88\x6d\xd5\xf5\x36\xe3\xba\xd1\xbb\x7c\x46\xc6\xdb\x73\xa6\xbc\x32\xb4\x3c\xd9\x6e\x80\xad\x94\x99\x76\x09\xf7\x35\xa1\x44\x1c\xe9\xfd\xb3\x5f\xf3\x5e\xb3\xe1\xbd\x60\x52\x4a\x3e\x69\xb5\x4a\x4c\x50\x0e\x00\x54\xf9\x12\x0b\x2c\xce\xe5\x0e\x01\x56\x4b\xad\xf6\x8b\x73\xc4\xaa\xcc\x60\x96\xbb\x33\x43\x23\xbc\xc1\x76\xa5\x90\x56\xd9\x06\xd1\x37\xff\x67\xf0\x7f\x7a\xc3\x56\x4f\xfd\xfd\xc3\x37\xf0\xe6\xf7\xf1\x25\xb2\xf2\xe5\xc4\xc6\x8d\xc6\xee\xa7\x2f\x55\x9a\xf3\x90\x23\x17\x58\xc0\x0a\x9d\x79\xbb\x7f\xf6\xb1\x7d\xdd\x3f\x3b\x78\x73\xd2\xbf\xbe\xe8\x5f\x9e\x9f\x7c\xec\x5f\x5c\x1f\x7d\x38\x3b\x54\x41\xa7\x2e\x3f\xbc\x7f\x7f\x7e\x71\x05\x59\xfb\xa2\xff\xee\xf8\xf2\xea\xe2\xc7\xb2\xd0\xc1\xa5\x2b\xd7\x6c\xd6\xad\xa0\xed\xaf\xd9\x54\x36\xe4\xcf\xec\xcf\x6e\x77\x07\xf8\xa3\xf9\xd5\x0b\x5e\xaf\x41\x20\x03\xe5\x7a\x9b\x54\xa8\x2a\x0e\x0b\x04\xe2\xef\xb5\x08\x4e\x95\x3a\xfa\x6d\x35\xa7\xcf\x2b\x37\x2b\xd9\x68\x4d\xe8\x13\x51\x55\x4d\x51\xb7\xa7\x36\x9d\x08\xee\x22\x44\x0d\xfb\x19\x25\x27\x39\x99\x5d\x62\xa1\xce\x90\x4b\x6c\x4d\x7f\xad\x19\xf9\xc6\xaa\x72\x3e\xce\x37\x16\x4c\x11\xf5\xf2\xe8\x49\x04\x8d\x90\x50\x14\x26\xbd\x64\x25\x61\xb5\x89\x0e\x95\x12\x9f\xbf\x5e\xf6\x31\xa6\x18\x81\xfc\x18\xcc\x8c\xf5\x5c\xe5\x29\x0c\x1a\xf0\x21\x8a\xe6\x4c\xb9\xf4\x44\xc9\xef\x69\x02\xf8\xe0\xf2\x3a\xd1\xfd\xb3\x30\xc3\x8f\x48\x1b\x02\x26\x86\xc1\xc7\x00\x23\x2a\x1f\x2d\xe8\x62\x08\x93\x63\x8f\x95\x30\xa6\xb1\x1a\xa3\xe2\x34\xbf\x27\x82\x83\x48\x1b\xd8\x6b\x46\x74\xb5\xa2\xa5\xb4\x29\x85\x94\x8c\xeb\xa8\xcd\x15\x31\x93\x3a\x31\xd3\x71\xf2\xe1\xc0\x78\x7c\xc9\x65\xa5\x0f\xe5\xd3\x55\x8e\xeb\x36\x97\x0c\x9d\xdf\x96\xf3\xaa\xc1\x1e\x21\xca\x98\x47\x07\x9d\xac\xa0\xe8\x7d\x78\x88\xe3\x0a\x5a\xf8\x45\xf6\xbd\x9e\xf3\xf1\x38\xe3\xa0\x57\x05\x1c\x31\x67\xfb\xe6\x2b\x6d\x22\x65\x58\xc5\xc5\x97\x37\x9b\xfe\x25\x8b\xa5\xe9\x41\x42\x12\xfb\x12\xd8\x21\x98\xeb\x6d\xea\xbb\xfa\x40\x5e\x51\xb4\x8d\x38\xb9\x49\x86\x26\xf2\x7b\x2c\x67\x2b\x78\x34\x6a\xbf\xb7\x58\xa7\x87\x21\x8c\xee\x3f\xf1\x3d\xc3\xa5\xbb\x96\x0f\xf5\x7e\xf0\xe4\xe0\x92\xc5\xe3\x88\x98\x76\xae\x8e\x2c\xb7\xfa\x95\xb0\xbb\x86\xf6\x6b\xde\x3f\x13\xd6\x0a\x40\x9b\x80\x4e\x01\x9b\xa2\xfc\x03\x3c\xb4\x1c\x5f\xf5\x4b\x44\x4e\xbc\x7e\xa3\x2d\xec\x73\xbe\x69\xdd\xec\x73\x26\xca\x6f\x65\xbf\xfe\x93\x6a\xf7\x39\x13\x56\xad\x54\x4a\x01\x09\x9b\xb2\x44\x58\x52\xa3\x8c\xfd\x28\xb9\x47\x7f\xf4\x81\x29\x18\x55\xb7\xef\x4e\xdb\x15\x6d\x34\xfb\x41\xa5\xc5\x90\xe5\x3c\x55\x58\x68\xad\x5b\x1b\x50\xa0\xe4\x2d\x4b\x0d\x83\x93\xbb\x29\x74\x0d\xf6\xf8\x1a\xd4\xee\xf6\xaa\x09\xbf\xa1\xd3\x47\x8c\x4b\x09\x37\x1a\x7d\xe5\x50\x56\xe8\x50\x31\x24\x3b\xaf\x6b\x23\x0a\x49\x1c\xb4\x53\x21\x3b\xa2\x96\xec\x88\xf0\x4d\xb5\xcb\x4c\x09\x54\xc9\x81\x25\xcf\xf6\xba\x03\xd2\x1e\x5a\x74\xc3\x28\x9f\x73\xde\x5a\x5d\xb2\x77\x0a\x56\x86\x4b\x6b\x87\x4b\x6b\x87\xab\xc6\x49\x6b\x20\xab\x1f\xa9\x03\x23\x32\xd8\xf0\x35\xa9\x74\x20\x86\x2e\xb7\x96\x84\xd7\x6a\xc3\x52\xfa\x17\x0b\x62\xb0\xa4\x7c\x08\xa2\xf6\xf6\xe5\x9f\xe7\xec\xd1\x52\x35\xad\x36\xa8\x6e\x24\x32\x96\xf6\x39\xe5\x0a\x3f\x40\x43\x30\xf7\xb2\x14\x7b\xed\x53\xb9\xca\x17\x34\x18\x02\xa0\x8d\x8b\x1e\xad\xf2\xab\x27\xa0\x53\x7d\xf5\xe8\xba\x12\x04\xa2\x0e\x1a\xcf\x69\xaf\xc4\x0a\xad\x7b\xde\xd5\xc9\x91\x6c\xf6\x3b\x09\x6f\x60\xdc\x13\xc0\x65\x54\x53\x86\x31\xa9\x60\x99\x1d\x65\x29\x18\x0c\x48\x39\xc2\xe0\xed\x93\xa3\xe3\xf1\xe8\x54\xc0\xc7\xda\x1d\x0d\x39\x64\x75\x9c\x7c\x1e\xe8\xb8\xaa\x7c\xa4\xaf\xf4\xca\x03\xa5\x17\x47\xb9\xc4\xc2\x70\x2d\x8d\x7d\x01\x93\xfc\xcc\x4e\x27\x8a\x3a\xb4\xdc\xe0\x7f\xe8\xed\xa8\x22\xda\x51\xfe\xe0\xf4\x9e\x7a\xc6\xc1\xe4\x57\x52\x06\xda\xf5\x9f\x55\x9b\xb1\xc4\x5f\x40\x56\x71\xb0\x88\x4e\x95\xd4\x79\x3d\xf5\x73\xbe\x04\xdb\xde\x13\x1c\x13\x81\x07\x50\x05\x0d\x4a\x9a\x9b\x9e\xa6\xf2\x56\x25\x41\x70\x3d\x45\x27\x06\x40\x51\x29\xdf\x02\xb3\x47\x9d\x9d\x6e\x92\x44\x85\xea\xd3\x0d\xf0\x56\x36\xe6\xaf\x80\x39\xd2\xd9\x7e\x31\xdc\x15\x79\xe1\xeb\xb9\x9a\x4a\x53\xfb\x75\x37\x55\xb8\x2a\xa7\x29\x57\x06\x31\xdc\x62\xab\x55\xa6\x7f\xa6\x24\x37\xab\x9e\xe3\xab\x15\x85\x05\x62\x83\x3c\xa4\xf6\x85\x25\x34\x85\x2a\xb8\xf4\xe5\x90\xa4\x64\xe4\x87\x52\x1a\xe4\x43\xb4\xac\x17\x22\xea\xb8\x1d\x8f\xd1\x79\x16\xb3\x96\xbe\x39\xb5\x51\xd4\xd6\x26\xe8\xd8\x75\x1d\xe9\xb9\x47\x59\xa3\xd1\x52\xe6\x53\x3c\xa7\x63\x36\xcf\x40\xab\x8c\x06\x29\x65\x95\xc5\x2c\x1f\xe1\xac\xd1\x6e\xc0\x46\x03\x6c\x79\xf6\x18\x37\xd0\x37\xd4\x48\xc4\xad\xd2\xfe\x3e\xd7\xe6\x26\xc8\xcb\x43\x69\xa8\xbd\x47\xb5\x20\x43\x5c\x3b\x6b\xf1\x41\xd7\x21\xb0\xac\xaa\x01\x27\x54\x60\x4e\x41\xc6\x5a\x8d\x5e\xa3\x95\xb7\x1a\xbb\x8d\xd6\xbd\xda\xdf\xa5\xd9\x48\x01\x43\x93\x92\x07\x6d\x12\x33\xce\xa7\xbb\xf3\x7c\xf1\x25\x31\xab\x37\x67\x2a\xb9\xbe\xc3\x5c\x90\x91\x89\xb4\x97\x8c\x8d\x17\xa6\xd0\xb1\xd8\x9a\x0e\xd8\xdf\xb0\xe2\xdf\xf6\xbf\x3e\xe1\x87\x7f\x6d\x93\x62\x9b\xe3\x7f\x2f\x09\xc7\xe3\x46\x70\x90\xb9\x7e\x55\x5c\x07\x29\xc2\xea\x5b\x76\xd6\xbe\xcb\x67\x48\x1e\xa3\x64\x92\x55\x82\x0d\x50\xa0\xca\xf6\xc7\x53\x9c\x31\xa8\xeb\x51\x00\x74\x80\x0f\x6b\x9a\x99\xa3\xce\x5e\xfe\xca\x05\xa9\xcc\x5b\xad\x54\xad\x41\x3e\x04\xaa\x47\x9e\xec\x89\x7b\x75\x88\x11\xb1\x21\xf3\x7a\xd2\xbd\xf0\x74\x2f\xa6\x86\xec\xa3\x12\x7d\xc7\x94\x29\x12\x73\xaa\x66\x46\xcd\x05\x4c\xb9\xdb\xe2\x7c\x94\xc8\xdf\xe3\x66\xb2\x7d\x9f\xcf\x3e\x55\x0e\x0a\xc1\x16\x05\xe3\x09\xf3\x12\xd9\x5a\xe6\x4c\x10\x4a\x73\x2c\x61\xe4\x99\x8d\x68\x13\x46\xa3\xd3\x69\x88\x24\x16\x98\x6b\x86\x45\x2e\x6e\xfd\x67\xae\x73\xf7\xa9\x37\xcf\xc9\xd2\x54\x83\x5c\x73\x52\x14\x84\x4e\xb7\x3f\xe1\x07\x83\x4d\xfa\x7a\xad\xb3\xf2\x80\xf2\xd8\x0b\x6e\x33\x3d\x18\x86\x55\x71\x17\x9f\xf0\x83\x6f\x53\x4d\x03\x87\x3d\x33\x2e\xde\xd2\xc6\x48\x92\xe9\x78\x24\xe3\xcf\x3d\x0e\x3f\xe1\x87\x1e\x86\x77\xf9\xcc\x5e\x2d\x9a\xc4\x79\x93\x99\x4e\x99\x67\xdd\x0d\xd7\xc9\xd5\x4e\x09\x56\xa3\x5b\x3c\xfa\x24\x9f\x25\x48\xc6\xbd\x5f\x0f\xc6\x1f\x89\xf1\x64\xb7\x39\x2a\x85\xf6\x62\xc7\x6d\x32\xfe\x6c\x95\x4d\x22\x00\x5b\xc2\xac\x3e\x43\xdc\x66\x4b\x51\xb1\x36\x92\x58\x92\x3a\x80\xf5\xbc\x99\xd5\xc2\xca\x62\x57\x4d\xa2\x37\x2f\xf6\x6e\xd2\xcd\x25\x5b\x0a\x13\x0d\xf0\x8e\x14\x44\x64\x54\x91\xd5\x12\xbd\xbc\xc5\xaf\x68\x5f\xd5\xf0\xd3\xfa\x3e\xad\x5a\xd3\x0b\x95\xf0\xb1\x19\x3d\x8c\x66\x78\x7b\x8c\x85\xca\xd3\xd0\xdb\x6e\xb4\x44\xab\xb1\xfd\x6a\x57\xfe\x50\x5b\x5a\x8b\xc9\xd6\xfa\xb6\x3e\xe1\xa7\x1a\x07\x1e\xd0\xe1\xf0\xab\x3a\x53\x20\x86\x3d\x87\xf3\x57\x4e\x0c\x76\x29\x6e\xe5\xd6\x28\xc3\x61\xea\xee\x38\x4a\x75\x03\xa3\x79\x94\x35\x03\x5a\xcf\x5b\xc8\x42\xb2\x06\xb0\x84\x99\xc7\x46\xbe\x91\x81\x99\x0b\x0d\x54\x2e\xb9\x9f\xe5\xca\xee\x6a\x0f\x52\xfb\x4a\x2f\x65\xf9\x12\xcb\x0f\xc8\xc7\x10\xfc\x4a\xec\x61\x93\x3f\x7b\x80\x87\x6d\xb9\x3d\x50\xec\x6e\xa0\xe6\x24\xbd\xf4\xd6\xa0\x5e\x01\x64\xaf\x3a\xd5\xc8\x73\xe4\x81\xa0\x20\x27\x26\xf8\xa0\xda\x0b\x7b\xee\x02\xdd\x6c\xf8\xce\xca\xc6\x0b\x7a\x8d\x3a\x8a\xa4\x18\x27\x49\x15\x2c\x4c\xc2\x05\x46\x8c\x0a\x42\x97\x2a\xab\x3e\x37\xa0\x76\x20\xd3\xcd\x52\xb9\x01\x10\xe2\x6a\x77\xaa\x08\xc6\x5b\xa6\xc3\xff\x4b\xbd\x54\xc9\xc7\x74\xc4\xe6\x84\x4e\xe5\xac\xab\xc3\x81\x19\x47\xaa\xdc\x15\xae\xc6\x74\xb4\x95\x36\xc5\x81\x55\x33\x60\x88\x99\x45\xdc\xdd\xee\x9e\x78\x2d\x77\xe5\xee\xae\x9e\x61\x8a\xf0\x40\x0c\xf5\x34\xaf\x56\xdc\x42\xbe\xf1\xdc\x08\x66\xdb\xd2\x18\x65\xa4\x60\x77\x87\x21\x37\x22\x33\xb1\x1e\xf5\x1e\x51\xa4\x13\xaa\xc4\xf4\xe6\xd4\x08\x83\xa6\xd7\x9f\x12\xcf\x4e\x46\x37\xf0\xaa\xb5\x5a\x43\xd4\x59\xe1\x8d\x29\xe8\xac\xe7\x90\xa2\x41\x83\xdd\x5d\xaf\xba\xc9\xa0\xa7\xd9\x26\x3f\x5a\xfc\xf3\x58\x27\xac\x2f\x5d\x0f\xf3\xd9\xec\x30\x24\x54\xe0\x51\x67\xdf\xbc\xc5\x9c\x88\xe0\x14\xe7\xe0\xd1\x83\x15\x09\xeb\x26\xc8\x75\xb6\x24\x2f\x7f\x36\x7c\x74\xa9\xe5\x19\xef\x3d\xaa\x90\x6a\x3d\x0c\x31\x5d\xce\x8d\xa9\xf7\x4e\x17\xde\x73\x22\xf4\xef\x0e\x1c\x31\x3a\x21\xd3\xa5\xf9\xd6\x59\xaf\x9d\xcc\xca\x9b\x4d\xdd\xb7\x84\x4a\xe4\xd3\x29\x1e\x5f\xe1\xf9\x62\x96\x0b\x7c\x42\x04\xe6\x8a\x93\x2e\xe2\x03\xc8\x2d\x08\xcf\xef\x91\xd0\x16\x96\x9e\x29\x7c\x4d\x80\x4c\x6d\x32\x43\x32\x6f\x94\xd0\x0f\xcb\x4a\xd5\x47\x48\xc3\x34\x37\x0b\x56\x14\xe4\x66\x56\x26\x3c\x65\xfc\x42\x7d\xde\x2c\x4e\x25\xd2\x30\x89\xd5\x2a\x75\xd5\xbb\x2f\x7a\x78\x6d\x98\xdd\x40\x30\x82\x2e\x75\x65\x81\xc5\x7b\x0b\xf2\xf9\x04\x72\xfb\x5e\x1b\x0a\xd8\x5c\xa9\x41\xd4\xff\x28\x5c\xf7\x1e\x2d\x8d\xa5\xe4\xe6\x30\xe2\x9a\x3c\x8f\xb7\x48\xbb\x5c\x39\xe4\x3f\xac\x56\x3b\x5d\x48\xda\xfe\xea\x49\x0a\xd3\x50\x0b\xde\x20\x74\x9b\x34\x9b\x19\x69\xdb\x95\x46\x3b\x1d\x00\x79\x86\x21\xd1\x5b\x0d\xac\xd7\x01\xfe\x72\x76\x5f\x44\xf6\xe9\x5f\x22\x08\x54\xe6\xb3\xc0\xb3\x89\x53\x43\xea\x07\xf9\xb7\xad\x27\x07\x21\x33\x4b\xcd\x66\x63\xe9\xf2\x6d\xb8\x18\x46\x3f\x10\x3a\x66\xf7\xa6\x86\x87\xce\x08\x21\xfb\xa9\xd2\xa1\xcd\x73\xe0\x3a\x2d\x5f\xa8\x66\xec\x23\xf2\xbf\x54\x5a\x91\xf2\xb1\x1c\xa6\x6b\xa5\x7c\xa1\x5a\xb1\x8f\xc8\xff\x52\x69\xe5\x96\x14\x82\xf1\x07\xd7\x88\x7b\x56\x6d\x98\x27\xe4\xbd\xaf\xb4\x40\xf3\x3b\x32\xcd\x05\x2b\x2f\xcc\xbc\x37\xaa\x15\xf7\x8c\x82\x6f\x55\xb9\xc6\x7e\x6b\x2f\x0b\xcc\x0f\xa6\x98\x2a\x8d\xc8\xbe\x6c\x44\x49\xbf\xf2\x50\xd8\x0f\x06\xa7\x5f\x13\xfb\xda\x40\xa9\xdf\x32\xfb\x36\xd1\x6e\xaf\x71\xf2\x40\x3f\x6f\x67\x02\x7f\x16\x73\x36\xc6\xa0\x01\x73\xb4\xb3\x23\x9a\xcd\x6c\x67\x87\xb6\x47\xb7\x9c\xcd\x71\xb3\xb9\x43\xdb\x72\x4f\xe4\x00\x16\xfa\x6b\x0a\x05\x8e\x8d\x4b\x94\x76\x1e\xdc\xc2\xed\x7b\xb5\xf0\x2a\x79\x89\x5b\x04\x0e\xb1\x9b\x4d\x02\x71\x09\x89\xc9\x58\x72\xa8\x7a\x34\x89\x40\x8e\x08\xc7\x13\xf6\x59\x89\xbf\xb7\x79\xf1\xf6\xfc\xd4\x26\x02\xd1\x5b\x40\xe2\x19\x9b\xe1\x6f\x94\x02\xf5\x39\x6e\x21\x29\x3f\x8f\xd8\xa7\x23\xb1\x59\x6c\x8c\xc4\x2d\xda\x3e\x39\x7f\xf7\xae\x7f\xa1\x6e\x3f\x1f\x67\x6c\xda\xab\xb7\x5f\x37\xc0\x81\xf6\x8c\x4d\x9d\xbb\xaf\x1f\x0c\xe5\x3e\xe7\xf4\x39\xf5\x65\xb9\x64\x03\x58\xf9\x50\x3d\xa3\x05\x55\x30\xd9\x04\xa1\x13\xf6\x9c\x16\x64\xb9\x64\x03\x6a\x82\x2b\x2d\x40\x61\x69\xbe\x69\xa1\xad\xca\xed\x67\xa2\x6c\x52\xbd\xb1\x81\x62\xbc\x36\x7b\xcf\xea\x57\xe7\x01\x7c\x0e\xe8\xba\x64\xaa\x11\x89\x4a\x4e\xd0\xe5\x3e\x62\x7d\x39\x4d\x75\x67\x85\xf0\xf3\x7c\x34\x9b\x38\x26\x9f\xfb\xd8\xde\x68\xb8\x18\x69\x92\x3f\xad\x90\x13\x1d\x2c\xbe\xd9\xd4\xff\x03\xdf\xc5\x5d\xa5\xe6\xbb\x7a\x58\xe0\x7d\x6a\xda\x02\xab\x95\xc8\x6a\x08\xba\xfc\x9b\xfe\x7e\x6f\x08\xb3\xfe\x1f\xac\x56\xa9\x5d\x3d\xcf\x09\x3d\x64\x54\x12\x88\x66\xd3\x7b\x58\xad\xa4\x88\x71\x64\xe7\xa3\xe1\xc9\xcd\x0d\x90\x01\x48\xd2\xe7\x79\x79\xc1\xb7\xff\x48\xe6\x6a\x5a\x25\xab\xf3\xd9\xfe\xd2\xb7\xf6\x3d\xbc\xee\xb9\xcf\xa2\x6d\x7e\xad\x56\x65\x49\xd1\x36\xbf\xe4\x4b\x53\x49\x98\x3b\xff\xd5\x0a\xaf\xd7\x19\x87\xbc\xdd\x97\xab\x09\x20\x43\x8f\xc6\xcc\xeb\xfc\xfd\xd5\xf1\xf9\xd9\xc1\xc9\xf5\x51\xff\xe0\xea\xc3\x45\xff\x52\xb2\x56\xfd\x7f\x5c\xf5\xcf\xde\x5e\xbf\xbf\x38\xbf\x3a\xbf\xfa\xf1\x7d\xff\xb2\xf7\xa8\xe2\x35\x49\x56\xcb\x0e\x50\xfe\xd6\xd7\xc4\x2a\x93\xfe\xc9\xf9\xbb\xeb\xcb\xab\x83\xc3\xbf\x5d\x5d\x1c\x1c\xf6\xaf\xcf\xcf\xae\xdf\xf6\xdf\x5f\xf4\x0f\x55\x7e\x44\x59\x56\x16\xf8\xd8\xbf\xb8\x34\x8f\x17\x07\xc7\x97\xd5\x62\x5d\x78\x79\x75\xf1\xe1\x50\x02\xa2\xba\x3f\x3a\x3e\xe9\xcb\xb7\xd7\x07\xef\xdf\x9f\x1c\xeb\x52\xd7\x57\xfd\xd3\xf7\x27\x07\x57\xfd\xeb\x1f\x2e\x0e\xde\xbf\xef\x5f\xc8\xe6\xca\x97\xe7\x67\x27\x3f\x5e\xbf\x3b\x39\x3e\x3d\xed\x5f\x5c\x1f\x9e\x9f\xbe\x3f\x3f\xeb\x9f\x5d\xa9\x61\x5d\xff\xf7\xdf\x3f\xf4\x2f\x7e\xbc\x3e\x3e\xbb\xea\xbf\xbb\x70\x90\x59\x8b\xb7\xfe\xe9\x9b\xfe\xc5\xf5\xdf\xac\x9d\x9b\xaa\x61\x3e\x5d\x1e\x1c\xd9\xcc\x8e\xa9\xcf\xfd\xb3\x0f\xa7\xfd\x0b\xf5\xf3\xf0\xfc\xec\xea\xe0\xf8\xec\x32\x55\xec\xc3\xd9\xdb\xfe\xc5\xe5\xe1\xf9\x45\xff\xfa\x40\x99\xd4\x25\x4b\x5d\xf4\xe5\x34\xf5\xdf\x5e\x9f\xbf\xb9\xec\x5f\x7c\xec\x5f\xa4\x0a\x1d\x9f\x1d\x5f\xa9\xfc\x93\xfd\x8b\xeb\x83\x8b\x77\x1f\x4e\xe5\x18\x93\xad\x9d\x7f\xb8\xea\x5f\x28\x6b\xbe\x0f\x17\x87\x7d\xff\xd3\xe1\x87\x8b\x8b\xfe\xd9\xd5\xf5\x0f\xdf\xf7\xcf\x52\x55\xe5\x50\x2e\xce\x4f\x4e\xfa\x17\x66\xa6\xdf\xa6\x4a\xd9\xf5\xeb\xbf\xbd\x76\x66\x88\x29\x80\x4f\x4f\xfb\x6f\x8f\xd5\x02\x6d\x18\x96\x99\xe2\xa3\xd3\xab\xd4\xd7\xa3\x8b\x7e\xff\x9f\xba\x5c\x0a\x5a\xb3\xd4\xd7\x6f\xfb\x47\x07\x1f\x4e\xae\x4e\x0e\x7e\x3c\xff\x90\x6c\xe7\xcd\xf1\xd9\xdb\x9a\x95\x3c\x3e\x7b\xff\xe1\xea\xfa\xea\xe2\xe0\xec\xf2\xe8\xfc\xe2\x74\xd3\x80\x25\x2a\xea\xdd\x93\x9c\xf8\xf3\x8b\xf7\xdf\x1f\x9c\xc9\x65\xfc\x70\x75\xd2\x4f\x2f\xce\x0f\x07\x17\x1b\xdb\xa8\xb5\xc1\x0c\xe0\x39\x7e\xab\xd0\xe1\xfa\xe0\xea\xea\xa2\xa6\x19\x89\x78\xa9\x2f\xef\x2f\xce\xdf\xf7\x2f\xae\x7e\xbc\xbe\xe8\xff\xfd\xc3\xf1\x45\xb8\xc2\x7a\x3f\x9c\x9c\x1f\xbc\xbd\xfe\xfe\xfc\xfc\x6f\x97\xbd\xc7\x35\x74\x54\xe2\x71\xbd\x0e\x93\x5d\x92\x49\x95\x9e\x62\xc7\xf9\xf9\x01\xb4\xb7\x09\xdd\xc6\x40\x31\x30\xe7\xf7\xd4\x0a\x17\x2a\x0b\x64\xa3\x42\x79\x1a\x46\xd6\x89\x81\x31\xef\x33\x65\xb9\x9a\x51\xc4\x06\x62\x08\xf6\xe5\x5f\xa4\x3d\xbb\x06\x62\xd8\xd3\xa1\xb9\xd5\xf5\xa8\x7c\xaf\xdc\x03\x65\x39\xa7\x4d\x84\x04\xe6\x08\xb7\x2b\xbd\x96\x32\x5b\xde\x6c\x56\xc7\x95\xbb\x71\xe5\xfb\x19\xab\x56\x6f\x1b\x2b\x1f\x05\x49\x6e\x9e\x60\xaa\xa0\xa5\xa6\xb6\xa8\x7d\x4e\x16\xd6\xf9\x8d\x4d\x49\xf5\xa0\x22\x5b\xe9\x17\xc9\x1a\x06\x0e\xbe\xb9\xef\xf4\x67\xdd\x5b\x69\x6a\x8d\xdb\xf1\x1a\x6c\xa5\xd6\xbc\x28\x25\x26\x60\x97\x7c\x29\x97\xbc\x00\x45\xbc\xe4\x4b\x1d\x67\xae\x18\x2c\x87\x30\x4c\x09\x4a\xe4\x17\x56\xe9\x71\xb0\x1c\x22\xd2\x9e\x90\x99\xc0\x3c\xab\xde\x06\x27\xa4\x5f\xbc\x06\x66\x04\x33\x84\xdb\x16\x7d\x93\x90\xcf\x4a\x81\xc9\x41\x3e\x92\x90\xcf\xc0\x2c\x86\x7c\xa4\xe1\xb3\xed\x0d\x46\x06\xbd\x66\x83\xd1\x50\xf2\x51\x99\x39\x6a\xfb\x67\x1f\x57\x2b\xde\xee\x9f\x7d\x94\xac\x95\x66\x5d\x14\xcb\x3f\xd2\x4c\x83\x62\xf9\xa7\x58\xc4\x17\xa8\x8e\x3d\x20\xe6\x08\x5f\x43\x15\x6f\xb0\x72\xd1\x0a\x1e\x6d\x09\x9d\xeb\xb7\x7f\xf6\x51\x09\x0e\x53\x2c\xe4\xcf\x6a\x83\x2c\x90\x99\x15\x23\xbc\x7b\x9b\xd3\xf1\x8c\xd0\x69\x55\x6e\xd8\xa8\x02\x9a\x62\x71\x4e\x71\x98\xe0\xa3\x34\xa4\x33\x10\x57\x4a\x60\xf0\x28\x34\xac\x53\x2c\xde\x92\x62\x91\x8b\xd1\xed\xf9\x1d\xe6\x9c\x8c\x71\x2a\x61\x9e\x69\xa8\xbe\x28\x06\x8f\x14\x39\x15\x87\xb3\x2a\x0d\xd2\xc6\xa1\xc7\x29\x16\xdb\x4c\x03\xe3\x43\xb9\x36\xf7\x39\x86\x07\xf5\xe7\xe6\xb3\xc0\xb4\x20\x8c\xee\x16\xcb\x85\x9c\x8e\x94\x58\x55\x57\x74\x46\x6e\xbe\x19\xe7\x22\xbf\xce\xc7\xf9\x42\x78\x8e\xf6\xe9\xa2\xce\x46\xfb\x5a\x49\x01\xae\xd6\x13\xb2\x58\x52\x4d\x93\x61\xd8\x78\x9b\x8b\xfc\xc0\xf6\xfc\xe8\x2b\xce\x3a\x75\x61\x09\x2c\xe3\x2f\xf1\xa3\xb6\x5d\x77\x03\xab\x62\x87\x7d\x59\x0f\xd4\xeb\x61\xf3\x3c\x6f\x9a\x91\x94\x50\x6b\xf4\x05\x76\x8a\xf9\x92\x0a\x32\xc7\x4f\x4d\x5e\x29\xea\x50\x23\x93\xb4\x15\x28\xe3\xcc\x7a\x34\x70\xad\x2f\x18\xe5\xf4\x30\x17\xf9\x8c\x4d\xfb\x54\x70\x82\x8b\x37\x0f\x52\xd8\x48\xe4\x60\x6c\xcc\xd9\x18\xcf\x1a\xda\xc5\xa5\x21\x8c\xa2\x51\x3d\xaf\xe1\xe8\xa9\x36\xb4\x64\xad\x0c\x63\x0e\x40\x46\xdb\x67\xd6\x38\xa0\x7d\x76\x70\xda\xbf\x7c\x7f\x70\xd8\xbf\x94\x72\x84\x2d\xa1\xb2\xa7\xe2\xfb\xed\x0b\x3c\xed\x7f\x5e\x64\x3a\x60\xc7\x2c\x2f\x0a\x32\x79\x00\x19\x06\xad\xc6\x1f\xca\x04\x29\xdc\x26\xbe\xcf\x2a\x5d\x6e\xb9\xab\xe1\x9a\xa3\x39\x07\x2e\x83\xa3\xfc\x99\x71\x84\x07\xf9\x10\x36\x54\x67\x2a\x33\x84\x84\x48\x2b\x0f\x41\xc6\x41\xb3\x69\xae\x02\x14\x48\xe3\xbc\xb8\xc5\x9c\xfc\x82\x41\x96\x3b\x1b\x03\x06\x1b\x0d\x00\x80\x44\x04\xf2\x2c\x7c\x08\x37\x53\x75\x0b\xda\x70\x16\x06\x25\xf8\x92\xce\x18\x5b\xb8\xcf\x73\x2c\xf2\xd9\x17\x63\x8c\xcd\xac\x53\x83\x37\x2c\xc6\x1b\x42\x49\x80\xf9\xfa\x06\xba\x58\x2e\xea\x22\xc0\xda\x7b\xa3\x19\xce\x0b\xac\x13\x5a\x2a\xd7\x0e\xa6\xd6\x77\x0d\x47\xa9\xfd\xe6\xe2\x86\xd9\x64\xb6\x27\x64\x4e\x44\xef\x25\xcc\x47\x23\xbc\x10\xc5\xa9\x44\x42\x89\x3c\x72\x2f\x86\x6d\xf7\x5c\xdb\x72\x93\x1e\xa9\x83\xb4\xa8\xee\x55\x0f\x82\x7b\x49\x73\x55\x8b\x12\x5f\x8b\x64\x2c\x05\x35\x28\x73\x2f\x33\xc5\xa2\x2c\x9d\x19\x74\xd5\x8d\x6d\xe1\x8c\x87\x41\x09\x71\xe9\x56\xfc\x49\xb9\x01\x32\x44\xdb\xf7\x3c\x5f\xb8\x26\x32\x79\x58\xd2\x7c\x8e\x1d\x22\x1b\xd4\xa2\x36\xef\x6b\x59\x54\x17\x54\x81\xeb\xd9\xda\x19\xfc\xf8\x41\x88\x92\x7b\xc0\xea\x26\xd4\x6d\x08\x8d\x16\xa3\xcd\xf1\x9c\xdd\x61\xbd\xce\x59\x0e\xd6\xc1\x7d\x78\x54\x56\x02\xe6\x4a\xc2\x7c\x0d\xaf\x25\x40\x57\x4c\x5d\x1a\x54\xb6\xba\xbd\x5a\xaf\xa8\x3b\xb1\xca\x82\x92\x51\xa4\xb6\xcf\xd4\x79\xc0\xc9\x2e\x81\x17\xdf\x21\xd3\xe4\xa6\xd7\x68\x29\xdb\x2d\xaa\x37\xbf\x8a\x0a\xa4\x56\xed\x02\x8f\x18\x1f\x17\xb1\xd7\x3f\xf1\x33\x45\x41\x0f\xdd\x5c\x3c\x2e\x0f\xea\x0c\x03\x1b\x91\x6b\x8a\x85\x69\x31\x5b\x42\x0c\xe0\xc8\x1e\xb5\xbe\xaf\x38\x78\xa4\xd9\x00\x0f\xb5\xa3\xec\x2d\x9a\x55\xd6\xdb\x5a\x59\x99\x48\x75\x76\x15\x75\xcb\x19\x86\x13\x00\x60\xae\x70\xc0\xbe\x92\xcb\xb2\x40\x8f\x63\x32\x3e\xbc\xcd\xe9\xd4\xa7\x99\x90\x2a\xab\x41\x35\x9e\x19\x1c\x41\x6d\x13\x30\x43\x74\x6f\xf6\x8a\xb6\x96\x7b\xb3\x56\x0b\x8c\x90\x72\x24\xd4\xdc\xde\x81\x00\x19\x86\x33\x00\x6f\x51\xd0\xc9\x08\xc0\x1a\x88\x46\x0a\x22\x91\x0d\x6e\x87\x60\x8b\x35\x9b\x24\xa3\xca\x66\xe5\x9e\xcc\x66\x31\x3c\x81\x17\xc1\xda\xa2\x8a\xea\x3e\x1f\x8f\x15\x67\x6b\x13\x1b\x83\x4c\xfb\xff\xc1\x85\x9c\x48\xaf\x85\xe2\x69\x1c\x55\x0d\x6a\xbc\xac\xb4\x99\xcb\x06\xf3\x8d\x48\x3c\x02\x6b\x28\xb2\xdb\x24\xed\xf1\x51\x78\x04\xe0\x48\x8f\xd3\x04\x5a\xf9\xd5\x94\xed\xc9\xa1\xad\xa1\xbe\xe2\xaf\x4e\xe9\x4e\x57\x12\xc3\xd9\x72\xee\xac\xda\x37\x52\xad\x98\x36\x24\xc8\x96\xbe\xbb\xb5\x77\xe8\x31\xce\xe7\x15\x9c\x67\x10\x03\x3f\x19\x32\x78\x14\x99\xbe\x90\x0d\x09\x96\x2c\x67\xf0\x7f\x59\x83\xb5\x42\x67\xc0\xcb\xf8\xeb\xce\x6a\x45\x5e\x77\xe4\x99\x2a\x4f\x50\x3f\x64\x15\xc8\x1a\x3a\x2d\x5a\xd1\xd0\x88\x52\xfc\x16\x48\xa7\x9d\x68\xe1\x12\xc0\xd4\xec\xd5\x60\x55\x0e\x09\x5c\x82\xf5\x1a\x06\x03\xad\x3d\x09\xfc\x49\xc3\xa5\x07\xd5\xa3\x9c\xe1\x9e\xd0\x71\x70\x7b\xaa\xb7\x29\x16\x20\xa3\xb0\xa1\xef\x0d\x1b\xc0\xae\xb0\x0d\x91\xeb\x2f\xb7\xca\xd2\xa5\x10\xb3\x87\xd7\x6b\x18\x1c\x33\x15\xad\xb7\x5e\x5a\xe1\xc0\xf1\x82\x65\x05\x8c\x2b\xa8\xa6\x68\x41\xa2\x5d\xc3\xef\x19\x72\xdb\x00\x2a\x57\xe1\x86\xef\x26\xfa\xaf\x24\xdc\x0a\xe0\xe2\x9c\x3a\x56\xae\x50\x21\xec\x2c\xa6\xd2\xba\x20\xbd\x8f\xea\x38\xec\xe1\x10\x2f\x05\x80\x7a\x12\xd5\x05\xb7\xdf\x4a\x2c\x12\xfb\x77\xd8\x7a\x4b\x65\x42\x1f\xb1\x86\x80\x98\x8a\x6b\x58\x03\x66\xed\x94\xda\xba\xac\x86\x3d\xa5\xde\x79\xef\x44\x8b\xca\xbe\x17\x31\xeb\xc9\x54\x7a\x30\x20\x62\xd6\x93\xa9\x48\xcf\x76\x08\x03\x36\xd4\xfc\xa7\xb6\x70\x2d\x19\x4b\x26\x4f\x6e\x45\xbf\xb9\xe2\x29\xa9\xc2\x90\xca\x01\x98\xe2\x6f\xdc\x21\x50\x39\xa0\x05\x7a\x74\x18\x57\x8e\x45\xa3\xe5\xc7\x7c\xb6\xc4\x45\x84\xef\x87\xde\x27\x65\xf8\xdb\x2e\x70\xce\x47\xb7\x7f\xc3\x0f\xf7\x12\x90\xa8\xb8\x7d\xad\x8b\xea\x25\x4c\xb6\x7b\xe4\x7d\xd2\x85\x47\x6c\xc6\x78\xb5\x77\xa6\x12\xe6\x0b\x6f\xf0\x3e\x48\x89\x48\x7d\x6b\xaf\xa8\x05\x67\xe3\x74\x25\x61\x7a\xa2\x61\x05\x58\x4a\x20\x54\x76\xcb\xc1\x71\x9b\x28\xe5\x5b\x96\x44\x92\xc2\x74\x46\xe6\xf3\x8a\x4c\x68\xde\x7e\x63\x99\x7a\xef\xd5\x52\x90\x99\xff\x4c\xd9\x18\x3b\x21\xc0\xd8\xbf\x94\x5f\xd9\x62\xc4\xc6\x78\x77\xc4\xe6\x0b\x32\xf3\x44\x78\x27\x6a\xb8\x9e\xf0\x04\x73\x4c\x47\xb8\x22\x50\xc4\xe1\xf5\x92\xc2\x88\xbd\x93\xd5\x1f\xef\x08\xbe\x2f\x8b\x26\x8d\x1a\x6c\x45\xa2\xac\x0a\xe4\x3b\x75\x97\xec\x89\x37\x98\xdf\x11\x05\x8e\x1c\xe1\xae\x8e\xe9\xb0\x29\x18\x60\xb2\x79\x27\x24\xb9\x81\xde\x13\x8e\x77\x27\x8c\xcf\x73\xf1\x54\xac\x40\x2f\x3a\x61\x55\x26\xe3\xc5\x5d\x29\x9a\x71\xb6\x14\xb2\x9f\xba\x58\x82\x2a\x14\xbf\xe4\xee\x26\xf0\x16\x2e\xe0\x18\xce\xe1\x03\xbc\x83\x53\x78\x03\xaf\xe1\x3d\xec\xc3\xcf\xf0\x12\x9e\xa7\xb4\x53\x87\x6c\xbe\x60\x14\x53\x61\x22\xbb\x20\xa5\x48\x4a\xbc\x1d\xe5\x8b\xfc\x86\xcc\x88\x20\xb8\x40\xb8\x7d\xbe\x14\x33\x2c\x3e\x12\x7c\x8f\x70\x5b\x1d\x18\x3a\x64\x27\x6e\x13\x13\x6b\xf2\x88\xc9\x6a\xc7\x67\x1f\xcf\xff\xd6\x47\xb8\xfd\x61\x21\xc5\xd3\x9b\x19\xbe\xb0\x98\x80\x70\xfb\xe0\xa6\x10\x3c\x1f\xa5\xfa\xbb\xc6\x9f\x17\x98\x13\xb5\x72\xb3\xd3\x7c\xc4\x59\xa1\x3d\xab\xb5\xd3\xba\x7b\x53\x60\xb1\x5c\x1c\x2c\x16\x33\xa2\xad\x05\x9c\x3d\xbe\xf9\xd4\xa7\x53\x42\x71\xf8\xd6\x9a\x37\xc9\xfa\xd3\xf0\xf1\x36\x2f\xec\x63\x58\x36\x2c\xaa\x5c\x1f\xe8\x18\xf3\x4b\x2c\xc4\x0c\x8f\x8d\xd3\xb7\xdc\xce\xf2\x2d\xe6\xb2\xad\x63\x2a\xa7\x62\x24\x88\xdc\xba\xfa\xb5\x7a\x8b\xb9\xf0\x9e\xbd\x9f\xa4\xf8\xfe\xea\xf4\xe4\x32\x9f\xc8\xf6\x6f\xc5\x7c\x66\x7e\xe2\x62\x94\x2f\x70\xff\xf3\x82\xe3\x42\x4a\xfd\x08\xb7\xe5\x17\xa3\xba\xc6\xed\x7e\x89\x9a\xb2\x22\x9e\x2d\x54\x73\xdf\xdb\x1f\x17\xe7\xe7\x57\xd7\x17\xfd\x23\x15\x56\xd2\xcc\x34\xc2\xed\x13\x42\x3f\xf9\xcf\x57\xf8\xb3\x38\xe0\x38\x37\x3f\x8f\x08\x9e\xc9\x81\x29\xeb\xb5\x1b\xf6\x19\xe1\xb6\x28\x87\x7f\xc1\x98\x3f\x1b\x67\x6c\x8c\xdf\x9e\x9f\x5e\x71\x5c\x5a\x69\x69\x48\x49\x71\x89\x39\xc9\x67\xe4\x17\xb5\x3e\x47\x84\x17\x42\x96\x96\x78\x93\xac\xf0\xf6\xfc\x54\x33\x70\xce\x49\xab\x5e\x87\xe7\x8a\x3e\x5b\x85\x57\x56\xd9\xa8\xc5\x4b\x80\xf6\x25\x5d\xc4\x75\x37\xf6\x55\x37\x43\xcf\x56\x1a\xd6\x35\xb0\xb1\xd7\x9a\x15\x7b\x66\xa7\xbc\x6e\xc5\xd7\x6b\xad\x55\x38\x80\x9f\xe0\x29\xbc\x82\x87\xf0\x02\xbe\xd7\xcc\x48\xbd\x6d\x21\xc8\x06\x4e\x15\xd8\x1b\x59\x94\x2c\xbe\xd9\x35\x6a\xa4\xc6\x10\x3e\x55\x00\xc0\xb3\xe7\xf4\xe2\xea\xf6\x82\xb6\x53\xaf\x01\xfc\xf9\x8b\xe0\xde\xe5\x8c\x45\x90\x9a\x57\x00\x1e\x7f\x49\x4b\xee\x38\xed\xcd\x73\x42\x83\x16\xe3\x4f\x9e\xb8\xf5\x36\x0a\x59\x72\x92\x29\x9e\xc4\xd6\x34\x81\x86\x80\xf2\xba\x97\x0b\x74\x52\x1f\x34\xd6\xb8\x54\xa9\x0a\x36\x18\x17\x19\x2b\x9f\x00\x13\x75\x0a\x8b\x5c\x67\xdf\xff\x7f\xd8\xfb\xd7\xae\x36\x8e\x6d\x5f\x1c\x7e\xcf\xa7\x80\x3e\x19\x4a\xd7\xa0\x50\x84\x93\xb3\xd7\x3e\x72\x2a\x5a\x18\x70\xcc\x8a\x0d\x0e\x60\x3b\x8e\x8e\x1e\x76\x23\x95\x50\xc5\x4d\xb5\x52\x5d\x02\x63\xa4\xef\xfe\x8c\x9a\x75\xef\x8b\x80\x24\x6b\xed\x75\xf6\xf8\xbf\xb1\x51\x77\x75\xdd\x6b\xd6\xbc\xfe\x66\xd6\x08\xa7\xd2\x02\x3d\xa5\x26\x21\x0b\xb4\x35\x34\xce\x4d\x6d\x5a\xb4\x31\x69\xb4\x6b\x07\x8b\xef\x81\x9f\xe8\xcb\x95\x75\x1b\x7e\x49\x0e\xd2\x7b\x36\xe9\x27\xbf\xb2\xde\xfe\x8b\xf7\x72\x9c\xe0\xcb\xbc\x18\x7f\xea\x7f\x7d\x9f\x94\x77\xd7\x97\x45\x5e\x26\xfd\xe1\x08\x27\xa5\xcc\x24\x05\x71\x3b\xe9\x0f\x87\xbb\x78\xf8\xec\x6f\xd8\xaf\x76\x82\x87\xc3\x67\xcf\x70\x0f\x0f\x47\xa3\x11\xf8\xc3\x8e\xf0\x34\xcb\x4b\x3a\x1a\xe1\x64\x96\x95\x87\x37\x59\x9e\xf4\xe1\xc9\xea\x6b\xac\x86\xdb\xbf\xd7\x9c\x02\xe8\x0e\x93\x79\x36\xfe\x94\x5d\xd1\xf2\x9b\x88\xd9\x02\x65\xac\x9d\xf7\xf2\x1b\xb5\x07\xba\xb3\xcb\x32\x51\xc7\xf1\x8b\x9a\x83\xbc\xab\xfb\x88\xd2\xe4\xf4\x70\xff\xe4\xcd\xdb\x77\xe7\x87\x17\xe7\x7b\x3f\x9a\x90\x94\x57\x64\xd1\x7d\x29\xb2\x6b\x7a\x5b\x88\x4f\x7f\x89\xfa\x74\xf8\x65\x44\xca\xee\x01\x13\xf2\x4e\x1d\xeb\xf3\xec\xca\x21\x39\xae\xb0\xa0\x6a\x3e\x16\x92\x56\xeb\x1d\x7e\x19\x75\x19\xe7\x54\x74\x27\xea\xcb\x14\xa9\xb3\xfd\x4a\xdd\x52\x70\xb1\x98\x1d\x45\xb6\x34\x08\x71\x6b\x7a\x5b\x07\xef\x06\x8d\xb8\xfd\x54\xab\xe5\x31\x3b\xc9\x31\xcf\xb6\xcb\x61\xd5\xb5\xac\xd4\xef\x2a\x47\xe2\x05\x64\x48\xb1\x6f\x7f\xf7\x6f\xd3\x1e\x5e\x58\xc3\xaa\xda\x96\x83\x30\xfe\xa3\xbf\xb5\x45\xe1\xc4\x7c\xa8\xac\xdd\xbb\xb7\x07\x7b\xe7\x87\x09\xc2\xef\x2b\x2f\x34\xd3\x93\x20\xfc\xb1\xf2\x42\xfb\xb4\x24\x08\xff\xd8\xea\xf6\xde\x34\x0b\x57\x15\x70\x5f\x53\xe4\x67\xbb\x88\xd2\x61\x13\xa9\xb3\xf1\x53\x9c\x62\xce\x3b\x99\x05\xa7\x90\xb5\xfb\x54\x23\x53\x5d\x77\x9c\xe5\xb9\x81\x07\xf6\xa2\xdd\x45\x9e\x95\xf2\x94\xde\x30\xe0\x43\x34\x46\x97\x7e\x08\x72\x8e\x79\xb2\x72\xd3\xca\x9c\x9f\x3b\x4a\x25\x06\xc1\x2c\x88\xe2\x80\x4f\x1a\xc5\x68\x45\x2a\x1d\xbe\x7d\xd8\xa6\x8b\xf3\x75\x6d\x56\xe3\x7b\x95\x34\x0c\x40\x6d\x30\x35\xc8\xc3\xeb\x06\xdd\x0c\xb7\x8d\x43\x8f\x8f\x86\x46\x6d\x9a\x72\x90\x94\xe5\x2a\xfd\x11\xe1\xaf\xda\x66\xd6\x29\x77\x9e\x3a\xb5\x58\xfa\xc9\xe5\xdd\xf1\x8c\xe5\x13\x41\x79\x23\xac\x12\x7f\xe4\xa4\x56\x37\x4b\x98\x8e\xc8\xd4\xdf\x02\x9e\x91\xd6\x8b\x81\xf1\xec\x17\x0b\xe5\x07\x50\xca\x1a\x28\x43\xae\xd2\xb2\x0b\x03\x74\xfc\x3c\xc2\x3f\xb7\xef\xbc\xa0\xef\x0f\x4f\x4f\x23\x21\x43\x6b\xc7\x5f\xbb\x72\xbc\xff\x60\xda\xc3\x8a\xdc\x40\x73\x70\xb8\xf5\x98\xdc\x02\x43\x7c\x30\xbd\xdd\xfc\x55\xc3\xd0\xae\x9d\xcc\x80\x98\xfc\xea\x8f\x9d\x5c\xa5\x3f\x21\xfc\x4b\xeb\xee\xf0\x90\x0e\x7f\xfc\xe8\x89\xee\xc5\x3c\x13\x94\xdb\x0d\x8c\xd5\x03\xc3\xce\xfd\x44\xef\x08\xc7\x42\x9d\x19\xd5\xc2\x58\xfd\xf1\xb2\x10\x96\xdb\x43\xd0\x03\x2c\x1e\xb9\x81\x2c\xa1\x6e\x3e\x97\x61\x2f\x7c\x02\x0a\xdf\x11\xaf\x5c\x1d\x6b\xe5\x65\x6d\x52\x87\x1f\x46\xd1\x4c\x41\xd1\x52\x15\x6d\x68\xa0\x5a\xbd\x9d\xef\x9f\x11\xfe\xf5\x9f\x32\xdf\xb8\x20\x12\x88\x4f\x46\x4a\x2f\xb4\x06\x37\x66\xd9\xdd\x3f\x39\x3e\x3b\xdf\x3b\x3e\x57\x57\x76\x7d\x7d\xbc\x7c\xab\xd7\x08\x1e\xea\x03\x7d\x9e\x5d\x91\x6c\xcd\xc2\x01\x49\xba\x64\x5c\x71\x83\x05\xce\x46\x7f\xf1\x9a\xb9\x9e\xf9\x75\x8b\x3b\xe7\x68\x6b\x38\xe1\xc2\x93\xc2\x0d\x69\xf8\x81\xc5\x1c\x88\x6b\xe3\x5e\x13\x98\x23\x17\xa8\x6d\x42\xa1\x6b\x66\x3c\xc2\x3a\x1d\xab\xd3\x06\x1c\x05\x97\x6d\xd3\xfb\x1c\xa9\x32\x36\x44\x29\x0e\xdb\x21\x6c\xe0\xf7\x97\xf0\x79\xbd\xd6\x6e\xb3\x10\x48\xa8\x32\x1f\x76\x7c\xcf\x83\xad\xb8\x76\xeb\xfd\xe3\x2f\xbf\x08\xc2\x6b\x40\xed\x86\x16\x6e\x0d\xf3\xee\xc5\x8d\x21\x00\x8f\xbd\x10\x6a\xb7\x6c\x84\xe3\x05\x6f\x63\xa2\xa7\x57\x37\x1a\x22\x75\x89\x69\xa0\xbc\x05\xb8\x94\xd9\x55\xcc\x21\xe2\xa0\x10\x31\xf3\xf5\x23\xc2\x94\x36\x4f\x18\xff\xab\x6e\xce\xc2\x9d\xaf\x47\x1d\x5a\xcc\x9b\x8e\x9c\x3e\xf7\x41\x65\xa3\xd6\x5b\x97\xab\x49\xe6\x6d\x82\x8e\xd8\x68\xb9\x79\xd2\xe0\x30\x61\x60\x0d\x59\xf9\x56\x14\x9f\xd5\xb1\xb1\xf7\x92\xc0\x09\x2b\xcf\xc5\x42\xce\xee\x12\xd4\x97\xdd\xb7\x82\x5d\x33\xad\x43\xb2\xdb\xd5\x0c\xea\xf7\x54\x20\xa4\xef\x2e\x0e\x71\xf8\x3c\x8a\xda\x7f\x51\x14\x79\xc3\xe5\x15\x37\xab\x3a\x05\x6b\xe6\x06\xfd\x88\x23\x4e\xc3\x2e\xc2\x40\x1c\xad\x0f\x5f\xf4\x1f\x5b\x33\x08\xa5\xf8\x77\x0d\x08\xc7\x57\xa9\x54\x9c\xc5\x84\xa9\x7e\x67\x79\xc0\x5f\xc8\x96\x6d\xf4\x97\x5d\xb1\x6a\x53\xc0\xd6\xc0\xc2\xaa\xd1\x14\x11\xcf\xc4\x55\xa9\xe8\xf4\x13\x39\x10\x0f\xb2\xde\xb8\x1f\x38\xec\x07\xae\xfa\x6a\x86\x0a\xa8\xf6\x3c\xbb\xa6\x13\x5c\xd2\x94\xa6\xc2\xed\x15\xe6\xb8\x51\xb3\xe0\xd2\xe4\x29\x7c\xfc\x25\xa0\xc7\x63\x49\xbf\x1a\x92\x22\xf7\x61\xeb\x82\x68\xb4\x95\x89\x0b\xbe\x4c\xb9\xeb\x81\xeb\x8b\xe3\x77\xf8\xbf\x62\x35\xaa\x47\x74\xf8\x65\xa4\x0f\xaf\xba\x1c\x5d\xfa\xc9\x3f\xb9\x4a\x01\x57\xf7\xf4\x79\xb5\x7d\x78\xd4\xcc\xc2\x0a\xdb\x29\x2d\x88\x9b\x54\x0f\xe2\x6f\x85\x12\x06\x2e\x14\x7a\xa6\xc5\xbf\xf3\xbe\x5f\x3b\x4f\xee\xc3\x60\x0b\x1a\x3e\x4f\x55\xee\x46\xc8\x5a\x47\xf8\xdf\x20\x3a\x78\x0f\x1c\x9a\x52\xbc\xb5\xfb\x38\x99\xa0\x34\x24\xed\xca\x71\xb2\x56\x60\x32\x55\x34\x49\x4c\x45\xfb\xca\xfe\x15\x9c\x04\xf4\xe0\x09\xac\x42\xeb\x0a\x6e\xfa\x01\xd9\x2d\xfb\xa8\x49\x09\x3e\xbb\xa2\x1a\x83\x0c\xfa\x10\x25\x4d\x93\x36\x69\x9a\xcc\xae\xd6\xa6\x04\xd3\x15\xc9\xec\xca\x66\x13\x7b\xff\x60\xe9\xe1\xfb\x11\xe4\x0e\x83\x6d\xe6\x35\x43\x19\x8d\xe1\x81\x69\x80\x94\x12\x05\x69\x0b\xa2\x7b\x2e\x87\x7c\xe4\x0f\x8c\x57\x22\x95\x2e\xcb\x16\x27\x5b\xe9\xa3\x73\x07\xa1\xe5\x32\xfc\x59\x51\x61\xd0\x86\x50\x61\x3a\xe0\xc0\x20\x7c\x05\x30\xaf\xf4\x76\x93\x01\x70\x6b\x93\x3f\xff\xc0\xbf\x5e\xc7\x3e\x50\xe3\x81\x43\x2b\x4a\xaa\x83\xa3\xd3\xf3\x8f\x5a\x1d\x89\xf3\xea\xcb\xbd\xd3\x1f\xcf\x12\x84\xc7\xd5\xe7\xd6\xc4\x94\x20\x3c\xad\xbe\x3b\x3a\xbb\x38\x38\x3a\x7b\xbb\x77\xbe\xff\xea\xe8\xf8\x47\x1d\x84\x93\x20\x3c\xab\x96\x7b\xb5\x77\x76\xf1\xe2\xf5\xc9\xfe\x4f\x09\xc2\xf3\xea\xcb\x17\x27\xef\x8e\x0f\xd4\x67\x13\x4a\x66\xdd\xfd\x42\xd0\xf7\x8c\xde\x5a\xbd\xe8\xac\xbb\x3f\x63\xf9\x44\x3d\x2a\xcf\xb4\x4b\x2c\x9e\x75\xd5\xcf\x33\x99\x49\xea\x1f\xc1\x96\x03\xb7\x0c\xfb\x6c\xd1\xd5\xee\xef\x7b\x30\x8d\xbe\x64\xf5\xb7\xaa\xec\x0d\xfb\xcc\x38\x4e\xd3\x53\x72\xaf\xae\x71\x6b\x33\xd8\xea\xe1\x3f\xa8\x97\x9d\xd2\x91\x4d\x5b\x36\x5c\xd0\x56\x25\xad\x2e\x30\x36\xfa\x98\xaf\x82\xb4\x60\xc3\xb9\x7a\x08\x5e\x02\x82\x6a\x93\x64\x4d\x8d\xbb\xa0\xa3\x46\x2e\x1d\x7a\x07\x5a\xdd\xe1\xb8\xeb\xe2\x9c\x0e\x8e\x0e\x2e\xf6\x5f\xed\x1d\xff\x78\x38\xaa\x21\x2a\xd9\x3e\x87\xd2\xd4\x30\xa7\x23\xe7\x23\xb4\x05\x69\xcb\x87\x74\xd4\xb7\xe9\xe9\x9a\xa1\x42\x3f\x8c\x3a\x1d\xf5\x6f\x85\x64\x62\x0a\xb9\x9f\x4f\xd5\x93\x3d\x29\x1b\xe1\xd8\x9d\xc3\x92\x22\x26\xa7\x5d\x41\xb3\xc9\xc1\xc9\x9b\x5a\x69\x47\x3c\x67\xaa\xb0\x5a\xbc\xc3\x1c\x0c\x01\xc6\x49\x14\x0b\x12\x20\x7c\xbf\x3b\x3d\x22\x84\xc8\xee\xd9\xfb\x1f\x2f\x9c\xab\x8e\x76\xcc\x95\x1e\x97\xce\x73\xc0\xc0\xff\x17\x84\x81\x47\x37\xa4\xb8\xf1\xd9\x25\x1c\x95\x58\x2e\x93\x4c\x4a\xc8\xe5\x5e\x0c\xb8\x1d\x13\xb8\x23\xa7\x19\xea\xf3\x61\x36\x5a\xe1\x53\x84\x36\x26\xeb\xd2\x8a\x58\xd7\x00\x6f\xb4\x58\xe1\x09\xed\x0a\x5a\xcc\x29\xd7\x4e\x4f\xe1\x66\x34\xfa\x74\xb5\x27\x3d\x03\xf2\x36\x13\xd9\x75\xd9\x1f\x8e\x8c\x71\xee\x9a\x5a\xfb\xc9\xff\xfe\x6d\xfe\xac\x38\xd9\x2e\x1e\x65\x3f\xf9\x0b\x8d\x22\xf4\x7a\x2e\xef\x9c\x55\xe4\x8e\x92\x09\x75\x36\x8e\x3c\xbb\x2b\x16\xb2\x7f\x4d\xf1\xd8\x9d\xd6\xfe\xd0\xc6\xef\x1b\x6b\x74\x32\xc2\x32\xbb\xd2\x2d\x32\x3e\x5f\xc8\xc4\x3b\x7b\xbf\x60\x7c\xc2\xf8\x95\xfa\x48\xad\x4f\x82\x13\xf8\x8a\x4e\x12\x9c\x30\x3e\xa1\x92\x8a\x6b\xc6\x33\xa9\xde\x4c\x58\xa9\x4e\x9b\x7a\x25\xb3\x4b\x13\xbe\x92\xa8\x8d\x91\xe0\x24\x5b\xc8\x62\x5a\x8c\x17\x65\x82\x13\x87\x42\x87\x93\x69\x21\xae\x55\xfb\x77\x73\xda\x4f\x5c\x87\xb0\xad\xaa\xbf\xb5\x8b\xa3\x66\xd4\x83\x09\x9b\x1c\xf1\x92\x0a\x69\xb6\xe1\xd3\x88\x45\xe5\x98\x24\x54\x57\x92\xa0\x6e\xd4\x10\xd9\xda\xaa\x96\x8c\xc7\x8b\x56\x78\x5c\x73\x8e\x8c\x15\x70\xc1\x64\x41\xbf\x4c\x53\x5d\xf3\x14\x8c\x40\x77\x4f\xda\xb0\xdf\xb8\x29\xd2\x91\x44\x37\x8d\x79\x03\xe0\xd5\x55\xb8\x11\x66\xe0\x86\x60\x29\xf0\xfa\x6d\x21\xe9\x67\xb9\x33\x65\x34\x9f\x3c\x72\x63\xe8\x40\x00\xb3\xc6\x36\xa9\xaa\xf9\x59\x66\x37\x7a\x6b\x08\xb3\xd8\x99\x31\x8d\xc3\x0f\xca\xc7\x66\x57\xa9\x5f\xd7\xe0\xb7\x6b\x7e\xf0\xc2\x1a\x1e\xcc\x03\x09\x57\x4b\x82\x93\x19\x65\x57\x33\x09\xfb\x6f\xbe\x00\xd8\x8c\x04\x27\x79\x06\xbe\x43\x39\x2b\xd5\x1b\x53\xe9\x75\xa6\x36\xe0\x35\x53\xcd\x5d\x2f\x72\xc9\xe6\xe0\x97\x64\x76\xe4\x3c\x93\x92\x0a\xf5\xae\x64\x5f\xd4\x83\x52\xd2\x79\x62\xf1\x60\x70\x72\xcb\x26\x72\x96\x8c\xb0\x06\x04\x4a\x12\xbd\x49\x61\x85\x0d\x73\x37\x41\xe9\x7d\x23\xd7\x94\xa8\x39\x4c\x56\xb8\x0c\x5f\x06\x8e\xab\xfa\x7d\x1d\x66\x1c\xae\x06\xba\xc9\xf8\xe6\x8d\xc3\xc4\xbb\xa1\x06\x2a\x7a\x6b\x6e\x50\x38\xa2\x37\x84\x62\x6a\x62\xd1\x2c\x4a\x8b\xd9\x0b\xe6\x74\xa4\x66\xe9\xd0\x86\x14\x77\xf7\x12\xc8\x2c\xa1\x26\x69\x3e\xf7\x56\x32\x5d\x9b\x79\x4f\x08\x5d\x41\x8c\x6c\xca\x89\x44\x18\x9c\x2e\xd4\x2c\xe9\x10\x25\x33\x73\xfa\xc7\x35\xb3\x7f\x64\x9f\x35\x38\x28\xda\xb8\x7a\xda\xa6\x0e\x76\x9c\xde\xd6\x97\x6b\xf6\x6e\xdb\x8e\xcd\x04\xcd\x92\x11\xf6\x5b\xdb\x6d\x5d\xf5\x1a\xde\x36\xee\x5e\x51\xdc\x6a\x0f\x32\x70\x50\x33\x7b\xa3\xa4\xb9\x46\xaa\x3d\xe4\x93\xf0\xe7\x99\xcc\x44\xc3\x4e\xbf\x15\xd9\xdc\x6f\x42\xbd\xd9\xf5\x36\x1a\x61\x55\xbf\x89\xec\x2a\xf2\xd2\xce\xd0\xe5\x1f\x98\x21\x18\x83\x9e\xa0\x0b\x77\xeb\x7c\x23\xcf\xff\xf3\xcd\x6f\xfb\xdf\x35\xde\x3a\x49\xc7\x7b\x66\x54\xec\xf7\xdf\xe1\x84\x4d\xc1\x68\xff\x2d\x1e\x26\x39\xe3\x9f\xce\x99\xcc\x69\x62\xad\xf7\xf8\xbe\xc1\xe0\xbf\x8b\xc3\x92\xde\xbe\x3f\x57\x97\x22\x85\x24\xcd\xea\x66\xac\x7f\xfb\x1d\xde\x6d\x28\xf7\x57\xba\x06\xa8\x7e\xed\xc8\xc2\xdd\x83\xb7\x4d\xf7\xe0\x45\xb0\x2b\x32\xb5\xe8\x3a\x95\xf6\xce\xed\x8c\xf2\x44\x2f\x92\x54\x63\x33\x30\x3f\x34\x37\xcf\xcc\x6d\x66\x7f\x29\x42\xa4\xff\xd6\x2e\x69\x3a\xe2\x26\xd1\x3f\x12\x9c\x17\x99\xda\x5c\xe6\xa9\xf9\xe5\xef\x34\xf3\xdc\xdf\x96\x26\x4a\x4d\x5d\x6d\x4d\x1b\x74\x26\xe8\x54\xd1\x34\x98\x74\x75\x79\xe6\xf1\x05\x6b\x08\xe3\xc8\xd3\xf2\x88\x36\xeb\x3e\xf9\x6e\x44\xd7\xb4\xc8\xb8\x66\x6c\x18\xbf\x3a\xe2\xd5\x27\x27\x0b\x55\x2d\x64\xd4\xd6\x73\x36\xce\xd9\xf8\x53\xf2\x74\x0e\xdd\xe4\x02\xaf\x5d\xbd\xb6\x66\x8b\x53\xa9\xa9\xa4\xc3\x35\xbe\x60\xfc\xa6\xf8\xa4\x98\xd3\x0b\xe3\xb6\xa9\xc8\xef\xb5\x41\x7b\x47\x69\xe2\xbc\x39\x91\xe7\x18\x1e\x45\xa0\xb7\x76\x9b\x88\x73\xa4\xcd\x67\xe5\x81\xa9\x92\x48\xac\x31\x99\x2a\xdd\x8f\x16\x34\x01\x40\x9b\x0b\x56\xee\xc1\x8c\xf7\x2b\x44\xbd\xfa\xad\x5d\x8e\x4a\xe6\x0a\xa9\x3d\xda\xa3\xa2\xd1\x26\x05\x60\xcb\xe4\xb2\x28\x72\x9a\xf1\x10\x8b\xd7\x21\xa8\x6a\x15\xd6\xd6\x16\xdf\xe0\x24\xe5\x84\x2f\x97\xd5\x0a\x7f\x5f\x64\x39\x9b\x32\x3a\x39\x2d\x16\x92\xea\xf9\x77\x40\xef\x9b\x0e\x1a\xb8\xfa\xd9\x85\x9f\xec\xa2\xf6\x12\x82\x11\xca\x04\xe1\xac\xf6\xca\x84\xb7\x4e\x7e\x5e\x50\x71\xa7\xd9\xe7\x24\xc4\x9d\xe7\x21\xa0\x29\x9b\xa6\xac\x6b\x27\xf1\x65\x21\xa0\x8b\x69\x81\x33\xcc\x87\x72\x84\xa9\x4f\x39\xba\xd5\xdb\xf0\x6b\xa9\xb7\x79\x75\xed\x93\xe0\x78\x26\x38\xb9\xb0\x87\xa1\xbe\x1d\xb6\x7c\xec\x86\x2d\x85\xea\x0b\x1e\x56\x87\xd4\x6a\xb7\x34\x6b\x67\xca\xa6\xea\x07\xc1\x59\xdd\x1a\x52\x8a\xb2\x3b\xd7\x53\x80\x6b\x3a\xd0\xb6\x09\x8f\xab\xb1\xaa\x93\xad\x2d\x9b\xda\xc4\x6d\x3a\x1d\xbd\x76\xcb\xf2\xfc\x05\xdd\x7b\xa0\x6b\x9a\x6a\x98\x9e\x3d\xba\x2b\x09\xd2\x41\x19\xde\x48\x11\xd6\x03\x9b\x33\x7a\x1b\xf7\x5c\x89\xb4\xa8\x72\xc8\x4c\xcf\xa5\xea\x79\x85\x1c\xb5\x2c\x27\xb0\x66\x7e\x88\x4d\xcb\xd9\xd3\x51\xc2\xd1\x10\xa2\x6f\x20\x0d\x55\x75\x8c\x7e\xe1\x2d\x5f\x11\xf6\x67\x87\xf1\xa4\xda\xc7\x93\x85\xfc\xe3\x9d\xd4\x29\x76\xd7\x77\x73\xb9\x6c\xef\x66\x5b\x3f\x8b\x85\x4c\x80\x14\x01\xf1\xac\x12\xa2\x2d\x90\xe3\x59\x79\xc6\x14\xf7\xb2\xaf\x08\x3a\x0a\x12\xe8\xf4\x36\x9c\x63\x53\xd4\xea\x5c\x00\xb1\x3e\x30\xec\x04\x6a\xa0\x53\xe6\x1e\xd2\xf9\xb9\x77\x0d\x62\x0a\xef\x74\x92\x8b\x92\xe6\xd3\x64\x8b\x28\x5a\x44\xbb\x71\x4d\x29\x42\x18\x80\x53\xaa\xb5\x5d\x2e\x2e\x2f\x73\x5a\x26\x10\x91\x53\xca\x62\xfe\x56\x14\xf3\xec\x2a\xd3\x73\x88\xab\x34\xda\x93\xd1\xc7\x11\x5b\x36\xad\x74\x2d\xa6\xc3\xa2\xd6\x9f\x26\xa2\x89\xeb\x44\xd2\xd1\xc1\x3a\x89\xfc\xdd\xd3\x3f\xad\xf8\x6d\x23\x97\xc0\x0d\x24\x08\x97\xe4\x3e\xf8\xa6\x5f\x60\x61\x9b\xee\x8b\x20\xf2\x6e\x02\x80\xb3\x57\x54\x09\xc5\x26\x40\x03\x29\xa6\xdf\x78\xcc\x17\xbc\x6b\x78\xa3\x04\xdb\x7b\xf5\x8a\x72\x2a\x32\x49\xcf\xdd\xc6\x49\x4b\x1b\x00\x01\x0b\x02\x91\x5a\xd5\x32\xb5\x84\xde\xd8\xe5\x51\x6e\xa7\x17\x35\x21\x07\xdd\xd3\xae\xdf\xb0\xa4\x08\x7e\x9c\x17\xa9\xad\x77\xb5\xc2\xe1\xd8\x81\xd9\xaa\x2f\x41\xed\xf0\xe9\x3d\xe8\x97\xa8\x8d\x88\x3e\x4c\xf1\x0c\x95\x56\xf4\xce\x7a\x2f\x62\x00\xf8\xdd\x09\x74\xcc\x9d\x0e\xef\xb2\x32\xb8\xd8\x3a\x1d\xb9\xb3\x83\x35\x96\xf5\x8c\x8e\x06\xe0\x0e\xd6\xdf\x05\x34\xeb\xc1\x43\xf4\x3d\xd8\x59\xfd\xe6\xc3\x15\x94\x58\x21\xdc\x70\xb1\xd6\x26\x24\x98\xc4\x86\x41\xdf\xaf\x70\xfd\xa8\xff\x1e\xdd\xd3\xa0\xab\x74\x69\xd3\x6d\x7a\x2d\xb3\x81\x5d\x40\x9d\x50\x32\x2b\x47\xbc\x1a\x50\x27\xd4\x2d\x0a\xe9\xef\x38\x24\xcd\xb3\xf5\xac\x10\x56\x6c\x6d\xad\xbb\xe6\xf8\x34\x1e\xb7\xb0\xfb\x8a\x09\xca\x92\x06\xb2\x61\xd8\xfb\x04\xb5\xad\x6b\xe3\x39\xae\x4f\x82\x3d\xc7\x8f\x21\x27\x2d\xef\x5f\x29\xbe\xdd\x80\x3f\xad\xbb\x50\x9b\x68\x4d\x9d\x52\x78\x4b\x94\x3d\x98\xef\x4e\x5f\x9b\xa4\x44\x8a\xf3\x34\x8d\xd6\x2f\x7c\x3d\x92\x3d\x41\x5f\x17\xd9\x04\xb8\xfe\x07\xe6\xf6\xf1\xf3\xb6\x61\xee\x93\x78\x64\xd5\x06\x91\x4e\xb3\xea\x61\xfe\x5b\xe6\x2b\xe0\xab\x2a\x55\xb4\x6e\x93\x6a\xaf\xd7\x2d\xa4\xda\xaa\x94\xf4\x9e\x53\x6f\x95\xa2\x9a\xe1\xd4\xbd\x93\x43\x3a\xf2\x97\x80\xbd\x0e\x55\x6f\x6c\xf4\x6f\x1d\x54\xc1\x26\x14\xb7\x80\xe0\x98\x81\x55\x41\xa3\x4a\x45\x19\xc5\x75\xf6\x03\x20\x20\xdb\xbb\x23\x0c\x79\x63\x5c\xb6\x03\xb6\xc2\xc1\x9e\xe9\x27\xff\x4b\x09\x8b\x93\x53\x3a\xa6\xec\x86\xee\x29\xa6\xb1\x1e\x20\x6b\xd3\x6f\xb7\x12\xae\x0d\xe3\x86\xda\x2d\x73\x36\xa6\x29\x6a\xdb\x89\x56\x8a\xf9\xa0\xc5\x8b\xd0\xca\x00\x97\x45\xa9\x98\x62\x2f\x33\x1a\xb8\x75\x45\xdd\x4c\xb6\x01\x28\xe0\xd5\x02\x58\x76\xcb\x19\x9b\xc2\xcd\xee\xdf\xd7\x08\xb3\x1c\xf6\x46\xc8\xe6\x6b\x19\x4a\x37\x85\xa3\x0d\x4a\x44\xa7\x23\x62\xba\x3a\x90\x1a\xc8\xdd\xc0\x73\x97\xfd\xfb\xd5\x2a\xa8\x3d\xa2\x72\x60\x88\xb5\x46\xc3\x81\x2f\x64\x37\x8d\xbd\x02\xcd\xa2\xa6\x12\x99\x18\xea\xa8\xd4\x10\x90\xb5\x36\x6e\x1f\xa3\xa7\x31\x67\x59\xeb\x20\x42\xe3\xc2\x6d\xc5\xb8\x50\x33\x23\xd8\xd5\x32\xc6\x84\xc3\xaa\xa9\xee\x70\x6f\xff\xd5\xc5\xd1\x71\x82\xf0\x67\xfa\x40\x50\x80\x36\x50\x1b\x3f\x4f\x99\x5d\x11\xaa\x1d\xbf\xd5\x62\x1d\xd2\x51\x4b\x54\xc0\x5a\x8f\xb6\x8a\x91\xfa\x11\x7e\xf4\x0d\x46\xea\x38\x8e\xe0\x8c\x46\xa2\x76\x93\x43\xf0\x1a\xc3\x6d\xa7\x43\xd5\x58\x56\xd6\xf5\xf8\x18\x6a\x5b\x2e\x93\xbf\x43\x16\x12\x30\xe6\xfe\xe6\x9e\xb1\x09\xe5\x92\xc9\xbb\x44\x5b\x67\x4f\x5a\x67\xd0\x65\x01\x31\x18\xf9\x66\x12\x3f\xd1\xbb\x97\x85\xb0\x09\x80\xed\xda\x35\x23\xe8\xb3\xf2\xf0\x7a\x2e\xef\xea\x33\x59\x4d\xb7\x70\x4d\xaf\x8b\x97\x45\xa3\x39\xae\x9a\x39\x94\x7e\xae\xe7\x89\x08\xf3\x3b\x58\x37\x19\xdd\x4f\xeb\x71\x6a\xfb\x09\x2c\xee\x0f\x41\x6e\x95\x45\x9e\x6f\x04\xd9\xf0\x60\x59\x5f\x16\x22\xe5\xc8\xe6\x79\x30\x7d\x53\x4f\x0a\x22\x53\xc5\x10\xf2\x38\xae\xc8\x56\xbe\xbd\xad\xbd\x06\x0a\xa3\x1d\x17\x58\x7d\xdb\x67\x26\x6e\x04\xef\xad\x73\xb3\xb1\xf9\xb5\x8a\xa7\x7b\x2a\xaa\x6f\x7d\x22\xac\x6e\x06\xa8\x81\x12\x17\x6b\x9d\x32\xa6\xa2\xb8\x6e\x4c\xc8\x68\x09\xb7\xad\x50\xe7\x21\x7b\x4b\xb5\x5b\xd8\x8c\x95\x80\xf9\xa2\x7d\xae\x55\x25\x2f\x35\xb0\x00\xa0\xc3\x37\xd5\x37\x1c\x79\xe7\xa3\x35\xe0\x23\x06\x3b\x00\x84\x75\x98\x55\x55\x77\xca\x6b\x1e\xf3\x76\x85\x5a\x0f\x1a\x0c\x7f\x48\x47\xe0\x11\x73\x42\x11\xfe\xf4\x3f\x6e\xda\x1f\x35\x1b\x70\xa5\x79\xc8\x1d\x3f\x37\xd6\xcf\x58\xcd\xcd\x9b\xf5\x73\x83\x0b\x0b\x54\xf4\xe4\xd9\x51\xdf\xba\xd9\xc9\x20\xd5\x22\x91\x38\x33\xac\x1b\xe1\x38\x7b\x70\x9e\x8e\xf8\x84\x7e\x6e\xdb\x57\x3e\x43\x02\x64\x71\xa4\xea\xbc\x0e\x47\xe0\xf3\x56\xcb\x4d\x54\xe8\x74\x3a\x0e\x10\xcd\xa9\x62\xc4\x90\x8f\x7c\x2f\x75\xde\xea\x70\xca\xb5\xf4\xf7\xf8\xbd\xee\x94\xbb\x58\xa8\xce\x98\x1e\xf5\x70\x46\x1c\xf7\xd4\x78\x0a\x54\x0d\x69\x46\xb2\xe5\xd2\xea\xfd\x7e\x20\xcf\x90\xba\xf0\xa1\xcb\x12\x61\x9b\x49\x06\xe1\x62\x7b\x7b\x85\xb0\xeb\x6b\x36\xa8\xf5\x16\xfa\xbf\x07\x2e\x7e\x4f\x3f\x3e\x7a\x7d\xf4\xf9\x79\x1c\x85\xb6\xe4\xb6\x0c\x0f\xdd\xf9\x9a\x7b\x05\x73\x7b\x3b\x9b\x50\x7e\x7b\xb7\x98\x24\x5c\x32\xba\x69\x78\xfb\x4d\xd3\x7e\x98\x86\x67\xc0\x2c\xe8\x16\x64\x21\x46\xa9\x71\xc8\xa0\x9f\x25\x20\xa2\x99\x1b\xdc\xbb\x28\x4e\x0a\x4e\xd5\x7c\xd6\x41\x50\x9f\x11\x42\x6c\xea\x1e\x3f\xd9\xea\x74\x98\xa9\xde\xa7\xe6\x57\x35\x75\xe6\x23\x6f\xbf\x35\x77\x9a\x9d\x21\x7b\xab\x99\x4c\x55\x95\x5b\xcd\x02\xbf\xe9\x19\x83\x2c\x4f\x30\x9e\xda\x2d\xc7\x2a\xb7\x1c\xc4\xed\x14\xf1\x3d\x07\xcf\x32\x22\x60\xfb\xb4\xdf\x74\xe1\x82\x51\x3b\xaf\x70\xfd\x65\xe6\xfa\x63\xfa\xfa\x2b\xec\xf5\xb7\xff\xdf\xe8\x83\xf9\xb8\x03\x60\xde\x3e\xb4\xf3\x43\xab\x08\x6c\xf8\x73\x8a\xf0\xe9\xff\x2b\xa3\x1b\xee\x3e\xfe\x68\xdb\x4f\x7a\x23\x37\xce\xb7\x94\xdc\x9b\x9d\xdd\x60\x41\xea\xad\xb0\xda\x0a\x6d\x48\x33\x2b\x7c\xfc\x30\xbf\x29\xe8\x34\x60\x36\xdf\x66\x72\x66\x29\x02\x74\xe6\xf1\x41\x18\x8e\xe9\xaf\x38\x79\x7b\x19\xc0\xd5\x38\x42\x8d\xfc\x2b\x50\x8f\xba\x63\xb6\x3f\x8d\x53\x7b\x14\x6d\x45\xe0\x8a\xed\xbc\xea\x49\x14\x84\xe0\xb2\x95\x56\x23\x33\x2c\x9e\xd2\xa2\x7b\x01\xa0\xc4\x5c\x9a\xf2\x08\xf3\x38\xa8\x81\xe9\xac\x4a\x84\x90\x94\x12\x81\x96\x4b\x2b\x0e\x6c\x05\xe2\x80\xf7\xd9\xf4\x4f\xeb\xa4\x4d\x7d\x6d\xe2\x92\x01\x27\xd9\x04\x27\x0b\x34\x78\x43\xe3\xeb\x37\x15\x21\x41\x4e\xb7\x7a\x08\xf5\xf3\xee\xab\xbd\xb3\x8b\xe3\xbd\xf3\xa3\xf7\x87\x17\x67\x1f\xdf\xbc\x38\x79\xdd\xe9\x1c\x50\xf5\xf9\xa9\xfe\xbc\xf2\x15\x42\xfd\x23\x1a\xd4\x1e\x5c\xa5\xf5\x92\x8f\xe8\x41\x25\x5f\x9b\x9a\x71\xe7\x81\xda\xb2\x9b\x15\xad\xfe\x87\x8d\xcb\xac\x54\xa0\xe7\xf7\x7d\x54\x4d\xe5\xc8\xdb\x42\xa9\x6c\xac\x41\x1d\xa3\xc7\xf6\x40\x95\x6d\xec\xc0\x9b\xb0\x92\xf6\xf6\x1b\xbe\x37\xb7\x65\xed\x1a\xa9\xb9\x0c\xf7\x1a\x5d\x86\x7b\xa3\x4e\x27\xfc\x15\x88\x51\xea\x04\x6e\x94\xb7\x4c\x8e\x15\x27\x72\x3f\xce\x4a\xaa\x45\xcb\xbe\x3d\x32\x83\x97\xb4\xff\x8e\xa6\x5f\x28\xda\xd0\x6f\xb5\x15\xde\xbe\x7f\x4d\xed\x63\x2b\x7b\xda\x37\xef\x68\xfa\x8a\xa2\x0d\xe3\x8f\x11\x3c\x7d\x41\x53\x09\xae\x9a\x70\x73\xfc\xf6\x3f\x81\x68\x78\x92\x21\x2b\x24\x23\x08\x06\xd7\x77\xf7\xc3\x11\x52\x1c\x27\xc3\x51\x82\x1c\x35\xe0\x0d\x94\xc0\x99\xbf\xdf\xd2\x50\xc4\xb5\xa7\xcc\x5e\xec\x31\x55\xe0\x68\xb0\x47\xad\xec\x25\x40\xe5\x5e\xa5\x10\x1c\x0d\x3e\x85\x45\xda\x48\x01\x47\x83\xfd\xb0\xdc\x11\x0d\x6a\x0f\x8f\x3f\xbc\x7d\x4b\xff\xbf\x13\xfd\xb8\x13\xdd\x74\x2e\xa9\x3d\x97\x7f\xc5\xc9\xa3\xee\xe4\x79\x15\xd5\x11\x5d\x8f\xf1\x6f\x85\x1a\x1f\xb9\x70\xf0\xc0\x17\x35\x16\xdd\x7f\xfa\xda\x89\x09\xa6\x5f\x5a\xd7\x98\xf2\x00\x5d\xe3\x25\xad\x30\x62\xee\xcd\x97\xf8\xcd\x2b\xb0\xa3\xbb\xb7\xaf\xa0\x5b\x96\x9c\x99\xbe\x98\xd9\x33\xe1\xc3\x8e\xae\xe9\xc9\xe3\x0b\xb5\xf9\xdd\x53\xd3\x97\xda\xe4\xc1\xa5\x7e\xb5\x60\x13\x13\x70\xb8\xf2\x6d\xbe\x08\xa6\xc2\x6b\xf7\x64\x75\x78\x81\x12\x5a\x3b\xaa\xbb\x0a\xde\xd1\x00\x10\x71\x55\xb3\x1e\x46\x56\x47\x6a\x7e\xe2\x8c\xc8\x61\x51\x07\x62\xc8\x06\x00\xe2\x48\x7a\xb8\x40\x7d\xfd\xe7\xf6\x76\x86\x8b\xed\xe4\x92\x3e\xfb\xdb\xdf\xfe\xf6\xbf\xff\xb6\x73\x79\x79\x49\x77\xbe\xfb\x8f\x67\xbd\x9d\xff\x33\x1d\x5f\xee\x3c\xdb\xfd\x96\x4e\xbf\xfb\xf6\xdb\xf1\x38\x7b\x96\x6c\x67\x68\x05\x9a\xc3\xdf\x1f\xd2\xbd\x96\x06\x3e\xac\x89\x48\xae\x51\x1f\x27\xdb\xc1\xd7\xd5\x4c\xd1\xaf\xce\xdf\xbc\x6e\x53\xcc\xda\x3a\x53\x0b\x54\xf2\x81\x92\xfb\xa4\x93\xf4\x93\x4e\x76\x3d\x7f\x9e\xe0\xe4\x7b\xf5\x77\x2e\xd5\x9f\x3f\xa8\x3f\xaf\xd4\x9f\x5f\x27\x5f\xf7\x93\xce\xef\x8b\x02\x9e\x7f\xad\x9e\xff\xaf\xcf\xcf\xfe\xa6\x7e\xfc\x97\xfe\xf1\x1f\x3d\xf5\x83\xe8\x1f\xdf\x1e\x3c\x4f\x56\xf8\x3d\x25\xdf\x0c\x3b\xdf\xff\x90\x7c\xfd\x5f\x64\xf4\x0d\xfe\x18\xfd\xbc\xf2\xc7\xe6\xc7\x70\xe5\x3f\x50\x25\x21\xbb\x77\x3f\xd1\x8a\x82\x97\x10\x3a\xa0\x24\x49\xfa\x76\x23\x6e\xc5\x70\xd4\x49\xb2\x4d\x75\x16\xdd\xdf\x69\x84\x34\xf3\x55\xb5\xa6\x76\x55\x71\xe3\xd9\xd5\xf3\x0a\xab\xfa\xb3\x33\xa2\xfc\x42\x6b\xe0\xd2\xbf\x86\xed\xfc\x42\x97\xcb\xf4\x17\xda\xea\x60\x9b\xa9\xeb\xe9\x17\xda\x9d\xe9\xab\xf9\x17\xb3\x90\xe3\x22\xf7\x1d\xff\x47\xb0\xaf\x41\x48\x35\x7b\xa0\x09\x8e\x5b\x92\x9f\x69\x77\x9e\x09\x88\x88\x72\x75\xb9\x1b\x50\x0e\x92\x7e\xd2\x97\x30\x88\x8a\x1a\xfe\xaf\x88\x7a\x8b\xc3\xc1\x19\x07\x07\x00\xed\x49\x40\xb6\x76\x31\xef\x02\x82\x14\x91\xc3\xac\x7b\xf2\xe1\xf8\xf0\x74\xa4\x38\xf7\x32\x40\xe8\x23\xa6\x88\x49\x15\x92\x26\x21\xe0\xa3\x46\xdb\x42\xf1\x17\x98\x77\x27\x1a\xf5\x99\x4e\x5c\xf8\x45\x49\x86\x71\x42\x90\x28\xe3\x06\x9b\xa6\xd6\x1f\x1a\x66\xec\x57\x33\x02\x8a\x93\x69\x51\x5c\x66\xa2\x7f\x99\x7d\x51\xeb\x62\x7f\x26\x60\x84\xf7\x4b\xf3\xb2\x10\xef\x4e\x5f\x93\x5f\xa9\x4e\x23\xdf\x94\xa3\xe5\xdd\xe9\x6b\xf4\x33\x25\xef\x4e\x5f\xe3\xda\x77\xff\xd0\xdf\x81\x4b\xcd\x5d\xf7\xe8\xec\xe2\xf8\xe4\xe0\xb0\x9e\xb1\x7a\xbf\x58\xe4\x93\x4d\x5e\xc8\xcd\x29\xe3\x93\x4d\xf0\x69\x57\xf5\x6e\xaa\xe5\x65\xfc\x6a\xf3\x9a\x8e\x67\x19\x67\xe5\xf5\xe6\xb4\x10\xf0\xe6\x2c\xe3\x4c\x1a\xfc\xb9\x04\x6d\xfc\x0c\x36\xa1\xbb\xae\x09\x9a\x40\x69\xb2\x10\x79\x82\x9a\x7a\xb4\x5a\xa5\xfc\x21\x74\x9b\xf6\x10\x4d\xaf\x7d\xad\x28\xd2\x2a\xed\x34\x5b\x2e\xc2\x0f\xf4\xba\x7b\x3c\xc4\x26\x7d\x02\xb8\x21\x55\x0a\xa2\x54\xea\x9d\x83\xeb\xf0\x31\xb2\x68\x0a\x64\x6f\xec\x4c\x18\x96\x17\xd5\x11\xe2\x69\x36\xea\x38\x8c\x75\x2a\xfe\xca\xe2\x64\x9b\x04\x9b\x6f\x8a\x09\x9b\x32\x1a\xd4\x10\x68\xf9\xc2\x4d\xdd\xe9\xd0\x87\x6b\x09\x8f\x5d\x2d\x5a\xda\x7e\xf3\x4e\xb3\x57\x7f\xae\xe1\xb8\x92\xb5\xed\x4e\xd8\xc4\x80\xb0\xc7\xc8\x15\xf6\x90\x56\x23\x56\x2f\xe9\x15\xe3\xa4\xea\x10\x5c\xa1\x1c\xbd\xe8\x7e\x83\x4f\x82\x48\xdb\x5a\x98\xf8\x35\xab\x29\x0a\x9d\x32\xb0\x81\x56\xf8\xec\xe9\x2d\x84\xa4\xc1\xd7\x94\x0f\xe5\xc8\x0f\x09\xc2\x23\x68\xad\x13\x61\x1f\xa7\x8c\x67\x79\x7e\xd7\x38\xbc\xdd\x15\xe8\x8d\x64\x88\x20\x8a\xb0\x94\xeb\x93\x72\x4f\x3c\xdc\xab\xc1\x5d\x69\xe0\x20\xe6\x82\xce\x33\x41\xf7\xc4\x55\xd9\x94\xb1\x08\x22\x16\x69\xbc\x7c\xfb\xe1\x05\x55\x4d\x97\x1d\x95\xd4\x98\xa9\xaf\xc1\x3f\x7e\x6d\xc1\xfd\x1a\x7e\x5c\x93\x0c\xb0\xb6\x0a\xbd\x05\x1f\xd1\xd6\xbb\xa6\xba\x22\x26\x9d\x07\x89\x3e\x1d\x6e\x36\x04\x21\x6e\x27\xfd\x64\x9b\x76\x0b\x40\xd5\xd5\xfc\x9b\x90\xe4\x7e\x72\xc7\xb3\x6b\x36\xd6\x8d\x43\x14\x99\x7e\x70\x9e\x5d\xa9\x5f\xc1\x1c\xab\x9f\x9a\x80\xd8\x5f\xce\x2b\xff\x55\x51\x7c\x52\x0f\x4c\x20\x97\xfd\x69\x42\xb0\xb3\x3c\xa7\xa2\xbf\xd5\xb3\x55\x9f\x8d\x8b\x39\xe0\x7e\xea\xa9\xd1\xa5\x7b\xa6\xf4\x91\xc1\x3a\x80\x7c\x96\xac\xe5\x16\xe7\xff\x4c\x8d\xaa\x01\x5e\x59\x83\x35\x69\x7d\xfc\x98\x99\x4d\xf0\x9d\x23\x1c\x24\x7b\xc7\x64\xb3\xae\x28\x0a\x79\xe2\x0b\x40\x16\xed\xca\x33\x12\x55\xa1\x9d\x1d\x0a\xc2\x21\x31\x99\x28\xd4\xbc\x59\xdc\x7e\xc8\xb2\xec\x2a\x2f\x06\xb2\xfb\xee\xf8\xe0\xf0\xe5\xd1\x31\xa4\x7c\x7c\x79\x78\x7a\x78\xbc\x7f\xd8\xd7\xb1\xbb\x05\xc2\x70\x24\xd9\x17\xf0\x04\x9c\x74\x2f\x3c\x46\x35\x44\xea\xa0\x34\xd1\x81\xbc\xa6\xf5\x04\x73\xa0\x76\x31\xbe\x8b\x0e\x0e\xa9\x08\xa0\xb5\x9b\x5c\x67\x95\x80\xab\x1c\x5c\x67\x55\x23\x74\xd2\x4d\x2a\x60\x31\x57\x54\x56\x37\xb8\x63\x5d\x3c\xea\x6f\x37\x2b\x75\x29\xa7\x9c\xb8\x87\xb4\x68\xb4\x2f\x2d\x54\x67\x8a\xb0\x76\x03\x39\x07\xf8\x58\xd9\x0d\x7e\xad\x6a\x6d\xee\x87\x98\xd2\x75\x22\x21\x64\xed\x8b\x33\x9a\x4f\x9b\x15\xe1\x6a\x09\x6a\xc5\xcf\xb3\x06\x09\x66\x33\x56\x29\xc5\x1f\xb5\x12\x17\xb8\x4a\xec\xc2\xa5\xf5\xf9\x83\xbb\x47\xa7\x2f\x6f\x23\x77\x7c\x95\x4a\x89\x70\x21\xc1\xdf\x8a\x49\x9c\x35\xcd\xf7\xa3\x31\x04\x06\xe1\x8f\x7e\x21\x37\x8c\x5c\x96\x79\x90\xcd\x6b\x03\xa7\x2d\x57\x41\x5a\x0e\xa9\x28\x13\x44\xfe\xb7\xd1\xf9\xc0\x53\x16\xaa\xa1\x21\xbe\xb4\xae\xd9\x39\x0c\x59\x35\x9e\xc1\x0a\xd1\xae\x01\x66\x9a\x04\x31\x7a\xe1\x59\x56\x7e\x10\xd9\x7c\x4e\x27\x96\xba\x33\x53\x4d\x9e\x95\xe5\x29\x9d\x1a\xdc\xc8\x96\x47\xaa\xee\x08\x73\x12\x6c\xef\xbd\x3e\x40\x96\x38\x57\x9f\x86\x4b\x68\x52\x65\x08\x22\x1d\x8d\x1b\x83\xd5\xf8\x05\xe3\xdc\x90\x55\xf6\x24\xa5\x5d\xa9\xd3\x94\xa7\x49\x90\xf1\xe5\xd0\x46\xe2\xe2\xca\xfb\xfd\x9c\x66\x42\xef\x25\xc5\xd1\xcb\xa6\x3b\xde\xf9\x54\x44\x77\x89\x9d\xbe\xb0\xdb\x16\x42\xc5\x4d\x2d\xb2\xfe\xe4\x7e\xb2\x4b\x59\xbd\x70\x72\x19\x71\x8a\x74\x38\xa6\x23\x0d\x67\x11\x48\xa7\xe3\xa8\x90\x8e\xf7\x00\xb9\x03\x94\xce\xa9\xf3\x8c\xc3\xe0\x11\x6c\x76\x25\x1a\xe8\xba\x87\xbd\x11\xea\x67\x34\x85\xaa\x71\x58\xed\x54\x1a\xe7\x7d\x9f\xdf\xd4\x79\x1f\x62\x86\x0b\x42\x87\xbd\x11\xce\x08\x1d\xee\x8e\x70\x69\x97\xb5\x18\xec\xec\xf6\x0b\x88\x6a\xfe\x7c\x32\x4d\x4d\xfe\x34\xd0\xbb\xee\xec\x42\xc6\x4c\x55\xa5\x24\xd9\xb0\x1c\xe1\xad\x58\x37\x2a\xad\x6f\xeb\xf3\x94\x43\xef\xd1\x16\x21\x17\xdd\x93\x79\xd9\xfd\x91\xca\x4e\x87\xbb\x9f\x6f\xb2\xbb\x4b\xfa\xba\x18\x67\xf9\x72\x99\x32\x92\x56\xbc\xf9\xd0\x50\xf8\x1f\x58\x35\x45\x86\xfa\x43\x8d\x59\x8b\x93\x1d\xdd\x2f\x3c\x94\x98\x19\xe0\x60\xb4\xd2\xf7\xf6\x4c\x92\x7b\x10\x83\x1b\x92\x65\x50\x3f\xb0\xbe\xf3\x8e\xdd\x81\x79\x1d\x0c\x29\xa6\x78\xab\x37\xea\x0f\x69\xb7\x5c\x5c\x6a\x11\x5b\x2d\xbb\xda\x59\xfe\x81\xdc\xde\x45\x78\x6b\x77\xb4\xc2\x4c\x33\xe5\xfd\xfa\xd5\x07\x17\x15\xce\x88\x50\x33\x5c\x12\x01\x08\x23\xc3\x67\x10\x90\x9b\xb0\x89\x5a\xdc\x12\x45\x8a\x8d\x34\xf4\x86\xe7\x38\x43\x90\xbc\x93\x70\x1b\xfd\x7d\x34\xd1\xc0\x88\xed\x68\x22\x05\xd2\xb7\x2b\xeb\x96\x21\xce\x81\x6a\x0e\x17\x78\xab\x87\x7d\x90\xf7\x82\x64\x7e\x1e\xba\x09\xfa\x61\x67\x17\xe7\x64\x31\x18\x4b\xd5\xb4\x8d\xe9\xea\x26\x08\xf5\x73\x78\x84\x36\x92\x52\xde\xe5\x14\x3a\xde\xe9\xa4\x39\x10\xd0\x89\x4c\x73\x0c\x05\x12\x56\xbe\x67\xc0\x64\x24\x08\x21\x5c\xe9\x42\x89\x73\xbc\xb5\xab\xdb\x5f\xad\xf0\x5c\x92\x9f\x28\x38\x87\xce\xf3\xec\xae\xbf\xc9\x0b\x4e\x9f\x27\x08\x4f\xda\x95\x12\x7f\x0d\xc8\x92\x05\xe3\x11\x5d\xd7\xdd\x36\xf0\x47\x8b\x44\x67\x70\xae\xfe\x24\x08\xa4\x25\x6f\x91\x67\xa4\x8b\x43\xb3\xc8\x7e\xae\x53\xb6\xc4\x40\xf6\xe5\x20\xa5\x44\x6e\x27\x9b\x95\xd9\xc2\x5f\xd1\x54\xa2\x01\x68\xc8\xfa\x14\xf5\xe7\x0e\x11\x36\x53\x82\x5b\x00\x70\x74\x2d\xc9\x7d\xc3\x46\x85\x29\xe5\x95\xad\xa2\xd7\x18\xc3\x5c\x5c\x67\x73\x94\xe6\x6a\xee\xc3\xc5\xb5\xb7\xda\xfc\x4c\x15\x05\xdb\x01\xf2\x6b\x8b\xa3\x17\x0d\xb9\x27\x21\x66\x87\x0e\xe6\x3a\x0e\x76\xb5\xc2\x77\xb2\x81\x71\x34\xa7\x47\xe7\xd4\x20\xc2\xee\xc7\x7e\x82\xf0\x98\xe4\xea\x48\x4d\x49\xae\x88\xd6\x8c\xe4\xea\x50\x25\x6a\x5b\x8e\x07\xd5\x8d\x6f\x28\xc4\xba\x33\x33\x45\xee\x60\xf4\xd3\x4c\x1d\xc2\x71\xf5\x60\xa0\xc1\x38\x38\x10\xfd\xa1\x3a\xcf\x85\x39\x29\xe6\x78\x8c\x11\x5e\x58\xa5\xa0\xfd\x83\x10\x32\x05\x5f\x98\x1b\x99\x96\xb8\x18\x64\xc3\xcc\x53\xb4\xfe\x58\xfb\xc5\x5c\xa9\x77\x53\x3c\xab\x9d\x18\xdb\xf7\x85\x9b\x5b\xb4\xc2\x37\xff\xba\xf3\x31\xcf\xe4\xcc\x1d\x0d\x69\x70\xc9\x1a\x5e\xbb\xec\x46\x13\x30\x28\xea\xf8\xe7\x7f\xe6\x61\x81\xc8\x18\x38\x13\xe0\x6d\x93\xc9\x99\xde\x91\x71\x47\x96\xcb\xb4\xe1\xa9\x9a\x9b\xcb\x30\x21\x13\x45\x08\xf5\xe5\x72\xa9\x2b\x35\xba\x71\x89\xf4\xde\x6c\x39\x4e\x57\x0f\x6b\x4e\xff\x20\xff\xa8\x27\xaf\xfe\xf5\xb3\xc6\xaf\x9f\x85\x5f\x3f\x33\x5f\x3f\xdd\x47\x33\xf4\xcf\xb4\xeb\x5b\x74\x25\x00\x48\x12\x8e\x8b\xee\x34\xcb\xcb\x3b\xc8\xbe\xed\xb7\xc2\x7a\x07\xce\xc7\xc3\xf6\x71\x8f\x86\xa8\x5b\xb4\x9a\x1a\x68\x74\x23\x76\xb1\x01\x72\xc8\x5b\x96\xc5\x33\x5c\x97\x32\xad\xf3\x39\x1a\x66\x08\xd2\xa8\x5b\xcf\x93\xb2\x11\xe2\x7b\xd1\x88\x8b\x32\x2d\x44\x0a\x28\x4b\x64\x61\x14\x42\x45\xa4\x10\x82\xc4\xee\x10\xd1\xa1\x38\x3b\x8e\x70\xdd\x86\x90\x32\x92\x0d\xf9\x08\x75\x3a\x6c\xf8\x71\x34\x50\x7f\x13\xd6\x17\x00\xc3\x94\xc2\x2f\x45\x0f\x6e\xc1\x7b\x1a\x21\xbc\x50\x4f\x04\x2e\xa1\xd8\x86\x93\x9a\x80\x33\x24\x19\x2e\x81\xcf\xb9\x90\xb5\x54\x06\x2f\x13\x84\x6f\xd7\x08\x15\x06\x8f\x6a\xd6\x7d\xf3\xee\x1c\x92\xeb\xef\x1f\xbe\x7e\x3d\x22\x5b\x9a\xb7\x1d\x5e\xc8\x91\x15\x2f\x0c\xc6\x6d\x13\x4f\xdf\x80\x4e\x6b\xbf\x1e\x7e\x18\x79\xef\x7d\x08\x4d\x80\x3e\x1e\x76\xe7\x82\xdd\x64\x12\x4e\xdd\x5b\x84\x3f\xb7\x1c\x22\xf1\xcf\x54\x5c\x00\x10\xa0\x78\x50\xe6\x8e\xe5\x6a\xda\xd5\x7f\x44\x42\x35\xad\x08\xd5\x61\xa5\x2e\xdb\x47\x4d\x59\x6c\x9d\x72\xa3\x48\x67\xad\x44\xd0\xec\xb5\x3b\xe5\x02\xb5\x1a\x85\x85\xd9\x99\x03\xbb\x45\x6d\x2a\x93\x54\xe0\x5a\x6e\x0f\xd4\x17\x3e\x28\x3f\x7e\x15\x05\x9a\xba\x7e\x98\xf8\x2c\x4b\x11\x00\xc7\x85\x39\x7b\x8c\x4b\xaa\x92\x6c\x17\x08\x0d\x78\xdf\xbd\x3a\x94\x68\x55\x9d\xda\x83\x50\x73\xd6\xe2\xd0\xed\xe5\x3f\xe3\x7a\x11\xcc\x1e\x78\xb6\x77\x9d\xd8\xda\xa2\xf7\x10\x2d\x7a\x0f\xb1\x66\x89\xb4\x5a\x42\x8d\xb5\x51\xd9\xe2\x3a\xe5\x09\x50\x4d\x7a\x1e\xc8\x4e\x07\x68\xa1\xaa\x65\xb9\x4c\x26\xec\x26\x31\xd7\x86\x78\x8c\x86\x25\xd4\x9b\x84\x79\xbd\xe2\xcf\x1b\x35\xb8\x6e\x02\x4d\xe0\x6d\x98\x52\x0a\xe2\x85\xb4\xfc\xde\xad\x06\x0d\x6d\xb8\x90\xb5\xcc\xdc\x78\x41\x11\x2b\x53\x56\xdd\x61\xcb\xc0\x6e\x56\xb3\x39\x66\x28\x15\xe4\x7e\x85\x86\xd9\x28\xae\x6c\x9c\xcd\xe5\x42\x68\x2a\x0b\xdb\xf2\xa6\x9b\x95\x25\xbb\xe2\x28\x2d\xb1\xc1\x61\xf5\x85\x80\xd3\xf4\x56\xb1\x34\x16\x29\x33\xd4\xe9\x64\xce\x33\x0b\x45\x3d\x64\x8a\xac\xbe\xc9\xe4\xac\x7b\xcd\x78\x9a\xb9\xf8\x96\x86\x81\xe1\x92\xdc\xaf\x1e\xd7\x15\x7c\xdb\x7d\x7b\x72\x76\x74\x7e\x74\x72\xbc\xf7\xfa\xe2\xed\xde\xe9\xde\x9b\x8b\xfd\x93\xe3\x97\xaf\x8f\xf6\xcf\x91\xba\x0a\x0a\xd2\x7b\x5e\x7c\xcf\x9e\x17\xdb\xdb\xa8\x1c\x66\xc3\x62\x54\x19\x7f\x26\xd3\xc2\x12\xa1\x20\x78\xab\xcf\xbb\x87\x6f\xde\x9e\x7f\xbc\xd8\x3b\x3d\xdd\xfb\x08\x59\x32\x27\xfd\xb2\xb2\x39\x1b\xd2\x28\xf8\x14\xdf\x3a\xd2\x40\x74\x6f\x18\xbd\xc5\x25\x91\x95\x95\xc7\x0b\x8b\x5e\x1c\x2c\x41\x4e\x2e\x65\xba\x40\xcf\xd3\xaa\x67\x8d\x2e\x38\xcb\x4a\x10\x11\x11\x28\x1a\x9c\xb0\x49\x64\x97\x4d\xd0\x4a\x89\xa2\x39\xc2\x79\xd7\xa4\x04\x60\xf4\x96\x64\x38\x1f\xce\xe8\x88\x14\x38\xef\x5e\xe8\x00\x3d\x7d\x69\x12\xe6\x13\x3a\xb8\x93\xac\x84\x45\xa3\x2a\x25\xfe\xa9\xbe\x1c\xc6\xa4\xb4\x17\x6d\x8e\xf0\x94\x3c\xa0\x8c\x0d\x92\x06\x9d\x49\x3c\x46\x1b\x7a\x22\xc8\x18\x6b\x05\x47\x06\xd0\x1b\xb3\x6e\x36\x99\x38\x2c\x4a\x94\x66\x8a\x3d\x07\xbe\xf1\xaa\x7b\x78\xfc\xbe\x7b\x71\x78\x0c\x37\xdf\xc1\xd1\xc1\xc5\xd1\xf1\xd1\xb9\x46\xc3\xbc\x38\x7b\xf7\xf6\xed\xc9\xe9\x79\xa7\x33\xf6\x4a\x24\x40\x8c\x63\xc0\x96\x97\x4a\xf6\x88\xde\x84\x71\x96\x26\x5e\x77\x4e\x92\x64\x8b\x90\xb1\x25\x0c\x1b\xf3\xe5\x32\xa5\x55\x35\xd6\x38\xd6\x52\x59\x05\x15\x1e\x77\x2f\xa2\x98\x76\xc0\x38\x0a\x74\x5b\xeb\xab\x89\xa0\xed\x12\x13\xb6\x79\x0d\x5c\xc5\x42\xa6\x14\x8f\xf1\x02\x4f\xf1\x3c\x30\xd1\x07\xeb\x6f\x74\x3c\x9d\x4e\x7a\x1d\x68\xff\x4c\x09\x9d\x9a\x56\x97\x68\xe8\xc7\xbc\x7d\x44\xd7\x35\x6a\xd8\xae\x3d\x76\x8b\x3b\x1c\xd3\x51\xfc\x5d\xbb\x61\x8a\xfa\xf0\x24\x4b\x0b\xfd\x95\x52\xaa\x5f\x66\x30\x78\x41\x68\xa8\x5c\x7c\x0e\x1b\xa5\xac\xc0\x52\x66\x98\xdb\x8d\x99\x75\x6b\x98\x4a\x78\x4a\xb2\xae\x87\x11\xc3\xf3\xf0\xa7\x2d\xb4\x31\x56\xd3\x61\x42\x21\xea\x92\xad\xcb\x24\x6b\xa4\xdb\x31\x38\x2b\x10\xee\x44\xc3\xe7\xa0\x63\x9b\x3e\x47\x05\xe1\xc3\xa9\x92\x35\xd3\x8c\xcc\xa4\x71\xeb\x28\x10\x52\x62\x2f\xe8\xab\xbc\xa0\x5a\xaa\x85\x1b\x6b\x4d\x66\x89\xf0\x4c\x76\x8d\xbc\x9f\x52\x2c\x70\x06\x0c\xe5\x74\x67\xe7\x79\xe5\x33\x7b\xea\x17\x44\xf8\x73\x3f\x08\xfe\xee\xc7\x0e\x5b\xa2\x2e\xa5\xb2\xc9\x7a\xf1\x7a\xe1\x75\x03\xa8\xda\x6b\xa3\x6c\x40\x9d\xce\x75\xdc\x61\x86\x56\x4a\xa6\xc6\x19\x78\x57\x32\x92\x05\xbd\xcb\x5a\x7b\x97\x29\xde\xee\x69\xbd\x63\xbe\x77\x38\xe8\x03\x87\x96\x11\x2e\xb5\x02\xce\x8a\xf0\x71\x2a\x8a\x7a\x6b\x46\x62\x2f\x82\x11\x4f\x3b\x9d\xa9\x59\x59\xf5\x57\x63\x6c\xdf\xd3\x75\x16\xa1\xc2\x05\xe1\x79\xa7\x33\x77\x6d\xcc\x1b\xdb\xb8\x03\x5d\x05\x80\x20\xad\x5a\xfb\xbd\xae\xc5\x20\xe9\x6b\x12\xcc\x59\x92\x09\x96\x9d\x16\x39\x4d\x18\xdf\xcc\x3a\x9d\x6a\xcd\x42\xbd\xc2\xb9\x4c\xb3\xa0\x68\xf0\x7d\xb6\x96\xe0\x2d\xaa\x84\x26\x5b\x4b\xf0\x6a\x24\xa3\xc5\x88\xa4\xef\x3e\x4f\x6d\xe6\x74\x44\x24\x8e\x0d\x4b\x75\x66\xb1\x91\x51\x34\x38\xf3\x0d\x1c\xa3\x1c\x34\xab\x13\x87\x0b\x3a\x1a\xa1\x3e\xfc\xdf\x42\xe3\x1e\x60\x49\x23\x2a\x56\x33\x90\xc8\xea\x8c\x32\x7e\x70\xf2\x26\x81\xfb\x38\xba\xd4\xa2\xa9\xab\xbc\x75\x16\x93\xb8\x87\x0d\x52\x9f\xf5\xae\x88\x19\x79\x33\x31\xcc\xfc\xe1\xd2\x86\x15\x31\x09\xde\xa0\x81\xe1\xe4\xf1\x37\xff\x89\xce\xa4\xd4\xe9\x6c\x09\x6b\x7b\x62\x26\xf0\x03\x1c\xba\x2e\xa5\x22\x54\x71\xd3\x44\x84\x66\x2a\xcc\x35\xe8\x33\x24\xb3\xa7\xd2\xb8\x8c\x33\xaa\x53\x97\x5b\x40\x68\x1e\xcd\x89\xf6\x2c\xb0\x8c\x00\x5f\xc3\x08\x20\x5c\xd4\x96\x85\xc7\x3b\x57\x57\x16\xd7\x13\xde\x9b\xf5\xbd\xdc\xec\x01\x51\x33\x88\x36\x7e\xf5\x27\x37\x54\x7d\x16\x1e\xbb\x61\x5a\x4c\xb2\x91\xfb\x97\x00\x83\x6c\x10\xe7\x2f\x23\xa6\xc0\x6f\x88\x03\x2a\x33\x96\x97\x3a\xfd\x22\xcb\xcc\x5c\xf5\xb7\x7a\xab\xc0\xe0\x75\xf2\xd4\xaf\x77\x57\x3a\xc6\x7f\xaf\xee\xe9\xd1\x8b\x3c\x3d\x7a\xb1\xa7\x47\x2f\xf2\xf4\xe8\x55\x3d\x3d\x7a\xb1\xa7\x47\xef\xcf\x7b\x7a\x7c\xd2\x16\xeb\xcf\x12\xbf\x91\x0d\xb2\x81\xb1\x12\x2b\x7e\xcd\xea\x6f\x62\xc9\xc0\xda\x88\xb5\xd4\x6c\xad\xc4\xd6\x38\xfd\x49\x1a\xcf\x0a\x40\xd0\xf0\x3e\x06\x38\x23\xc5\xa0\x08\x25\x69\x0b\x2a\xae\x0d\xdd\xfe\x39\xc9\x70\x24\xbf\x5b\xb3\x33\xd8\xa4\x8d\xa5\x59\xdb\xc5\xef\x55\x27\xfb\x14\xc7\xfd\xeb\x4b\x6c\x04\x7a\x8e\x9d\x9a\x41\xe0\x50\x34\xee\xef\xc9\x48\xc2\xcf\x56\x2b\x7c\xfe\xd7\xbb\xb1\x46\xd9\x00\x03\x13\xfb\x13\x92\xff\xad\x51\x79\xd4\x94\x1c\x55\x33\xf8\xc3\x1a\x0f\xde\xa2\xf1\xe0\x15\x8d\x87\x7c\x58\xa8\x34\x9c\x73\xd5\x16\x5f\x3c\x4d\x10\x63\x4e\x10\x63\x1b\x5a\x40\x05\x29\x88\x39\x29\xc8\x86\xb8\x37\x09\x43\xac\x45\x74\x60\x4f\x13\x86\xd8\x7a\x61\x08\x3b\x31\x88\x69\x94\xda\x02\x67\x3a\xc4\xff\xb3\x44\x78\xff\x21\x3f\xaf\xde\x93\xfc\xbc\xfe\xe2\xd3\xbf\xbb\xc2\xa7\xad\x1a\xdd\x20\xb3\xab\xc9\x21\x6e\x80\xf8\xd4\x80\xcf\x15\x39\xdc\x88\xdd\x50\x0c\x9a\xcf\x61\xf7\xe5\xde\xfe\xf9\xc9\xe9\xc7\x8b\x97\x27\xa7\x06\x73\x65\xa3\x76\x4a\x79\x77\xba\xc8\x73\xb5\x86\x06\x0d\x68\xb7\x87\xe2\x33\xb9\x2f\xab\x07\x99\xbb\x83\x0c\x06\xbe\x06\xf5\x71\x03\x47\xd5\x20\x05\x02\x87\x04\x41\x0a\x6f\xd7\x3a\xc9\x98\x19\x80\xfd\x67\x48\x5f\xe8\x75\x66\xe8\x5e\xd5\xaf\x8c\x37\xa6\xba\x9d\xb1\x7c\xd2\xe4\x3b\x44\x6f\x37\x75\x8a\x57\xad\x78\xa9\x36\xd2\xd8\xc4\x13\x80\x6f\x82\xaa\xe2\x8f\x4a\xda\xec\x04\x5d\xfb\x4c\x0d\xd3\xcc\xd6\x71\xfb\x6c\x71\x8b\xd5\x87\x4b\x7d\xf2\x17\x70\xf2\xf5\xba\xb3\x49\x94\xaa\xe1\x68\x02\x5a\x62\xeb\x94\x63\x6f\x0c\x35\xc8\x0a\x16\x81\x45\x94\x82\xcd\x33\x2b\x16\xf9\xe4\x94\x4e\xf3\x45\x39\xb3\x69\x35\xbc\xdb\x0d\x31\x30\x89\xb9\xa6\x38\xc5\x5c\x75\xad\x24\xf7\x59\x7e\x9b\xdd\x29\x6e\xcd\xf0\x72\x6a\xd3\x6f\x98\x36\x14\x3d\xa8\x1b\x90\xa2\x5b\x6a\x4c\x68\x40\x13\xa7\x3a\x65\x84\xfe\xf2\x4d\xc6\x38\x0a\xf2\x58\xab\xc9\xbd\x12\xd9\x35\xe6\x98\xa9\x79\x48\x39\xbe\x37\xa7\xb5\x5f\x40\x60\xf6\x19\xbb\xcc\x19\xbf\x32\x80\xdb\x78\x8c\xf0\xcc\xea\x40\x27\xc5\xfd\x8c\x4c\x4d\x24\xff\xea\x76\xa6\xda\xdb\x9a\x69\x1c\x01\xa3\xff\x59\xd8\x59\x99\x19\xf4\x84\x45\xc3\x10\xcc\x22\xce\xbb\x36\x5f\x48\x9a\xa3\x55\xe3\x51\x61\xe5\x3a\x44\x09\x58\x0c\x42\x2a\x9b\xa6\xcd\xe3\xaa\x19\x20\x81\xf2\x1b\x88\xa8\xac\xac\x53\xcf\xaf\x7c\xb8\xbe\xd0\xa2\xf7\x0a\x6b\xd8\x01\x66\xb4\xf6\x11\xba\x4f\x29\xd9\xaa\x84\x83\xa0\x4e\x87\x6b\x4f\xee\xd4\xa2\xcb\x7b\x0f\x71\xeb\x2c\x4d\x55\x21\xed\x4b\x9d\xaa\xd9\x31\x71\xae\x92\x0c\x47\x41\xcc\x9d\x37\xf6\x91\xdf\xa4\x53\x2d\x50\xb4\xf1\x9b\x04\xa3\xfd\x98\xa6\x12\xef\x06\x2c\xe2\x01\xf8\xde\xd9\x7c\x0b\xaf\xb2\x12\x12\xd6\xa0\xb4\xbe\x3c\xbf\x39\x34\xb0\x9e\x81\xd9\x7a\x6d\x42\x70\xd4\xdf\x2f\x25\xe9\x6d\x7c\xee\x5e\x66\xe3\x4f\x97\x0b\xc1\xa9\xe8\x16\x3c\x4d\x60\x50\x75\x7c\xb9\x00\x44\xee\xb7\x08\x45\xee\x37\x39\xa4\xa3\xee\x85\xf5\xb5\xf7\x27\x20\x55\x92\x7a\xad\x7a\xca\x27\x4d\xe0\x75\xad\xd5\xb3\x69\xba\x65\x9a\x60\xe5\x7b\x55\x75\x8a\xc0\x7b\xeb\xa5\xfc\x61\xb7\x67\xa2\x4e\xd4\x48\xb0\x2e\xe5\x56\x01\x07\x0e\xac\x8c\x4f\x15\xd7\x4c\x37\xf5\xd2\x32\x7e\xb5\xc9\xb8\xe9\xa7\x9a\xd1\x09\x95\x74\x2c\xe9\xc4\xdb\x8d\x5e\xca\xed\xed\xb8\xf3\xbf\x15\x8c\x83\xf1\x01\x1f\x48\xb4\x82\x16\x8d\x4f\xda\x6b\x0d\x37\xf7\x5a\x1d\x58\x80\xa5\xc4\x66\x96\xdb\x2a\x90\x08\x99\xe5\xf8\xb2\x86\xd2\x59\x6f\x88\x3f\x68\x4c\x9f\x75\xa7\x59\x9e\xab\xf6\xd5\xf6\x38\xa5\x57\xac\x94\xe2\x0e\xb3\x7a\x7d\xdf\x36\xd6\xf7\x6d\x14\x2b\xfe\xed\x08\x17\xf5\x2f\xbf\x6b\xfc\xf2\xbb\xb0\x27\xdf\x8d\xfa\xb2\x3b\xce\x19\xe5\xf2\xc5\x82\xe5\x13\x2a\x34\x55\xbc\x50\xe7\xd2\xa6\xe6\x55\x67\xd2\x1a\x01\x2d\x99\xbe\xb8\x09\xba\x6d\x79\xf1\x0b\xb5\xbc\x8c\xd3\xc9\xcb\x42\x1c\x9c\xbc\xb1\x6c\xf9\x45\x48\x9e\x83\x3a\x75\xf8\xc3\xac\x96\x96\x7b\x67\xd7\xa1\xe8\x9e\xda\x1d\x71\x0a\xe5\xfd\xe7\xf4\xba\xb8\xa1\x93\xd3\xb8\x96\x4b\x3d\x04\x52\x34\x51\x3a\xc5\xf1\xf2\x89\xbe\x3f\xc1\xca\x10\xea\x4e\xad\xbd\x0b\xae\x2e\x92\x0a\x42\xb1\xd1\xe5\xef\xbd\x7d\xfb\xfa\x68\x7f\xef\xfc\xe8\xe4\xf8\xe2\xfc\xf0\xcd\xdb\xd7\x7b\xe7\x87\x17\x1f\x4e\xf7\xde\xbe\x3d\x3c\x1d\x68\x97\x3a\x6f\xf0\xb9\x5f\x61\x21\xf1\x7d\xcc\xd9\xc5\xbc\xda\x4a\xc9\x3c\x9c\xde\xa6\x2d\x62\xc5\xbf\x12\xa9\xa4\xc9\x4c\xe9\x7c\x44\x27\xec\x26\xa9\xe5\x7f\x7b\x9c\x07\xf9\x7a\xf1\xe2\xb1\x8e\xe4\xf2\x49\x8e\xe4\x45\x2d\x52\xa8\x55\xa3\x2f\xd1\xbd\x6c\x56\x51\xc6\x6a\xc8\x6a\x21\x36\x49\x70\x35\xc2\x58\xf3\xf8\x4c\x1a\x09\x20\x93\xa9\xd0\x0c\x2e\xce\x4c\x16\x4f\xff\x08\x19\x06\xf8\x42\x6f\xc5\x03\x0a\x64\x4f\xf7\x09\x38\x8a\xf1\x42\x88\x3b\x94\x96\x08\x02\x9f\xea\x9b\xf7\xbc\x68\xda\xb4\xc0\x89\x9f\x7a\xfe\xfa\xa1\xea\x45\xbd\xfa\xda\x27\xcd\x06\x10\x62\x92\xce\x01\x60\x91\xfa\xfb\xad\x34\x24\xb3\x29\x16\xc2\x6c\xf4\xcd\x63\x99\x5a\x4a\x42\xf9\x4d\x03\x4d\xc1\x0c\xab\x93\x17\x9d\x61\x3b\x16\x7d\x25\xa8\x73\x9e\x66\x95\x4e\x5b\xde\xa6\x16\xdf\xd5\x7c\xdb\x55\xbe\x55\x94\x8b\xd6\xd3\x89\xc9\x06\x1e\x75\xa3\x4e\xf1\x86\x72\x54\xe5\x8a\x16\xbc\xb1\xd2\x09\xcd\xa9\xa4\x9b\x0d\x55\xd4\x1b\x1a\x55\x3b\xa9\x88\x5c\x45\x1b\x57\x11\x5a\x0d\x69\x35\x08\xf8\xda\xb7\x9e\x66\x7c\x31\x57\x53\xa6\xc4\x7f\x0a\x89\xa5\xea\x96\x28\x6a\x54\xe4\x4d\x84\xbb\xd3\xa1\x91\xfa\xad\xc1\x0d\x9e\x95\x07\xae\xe5\xe5\x32\x0a\xc0\x8b\x04\x9e\xa8\x33\xd1\x50\x6c\xae\xb9\xe0\x7a\x40\xd6\x78\xe5\x98\x47\x7d\x4f\x58\xdf\x0d\xfd\xcb\xf2\x1f\x62\x67\xe7\x39\x4a\xa5\x06\x70\xd6\x8c\x6c\x4a\xb5\x91\x39\x60\x33\x2c\x93\x26\xf0\x6e\x15\xb0\xa6\x81\x8f\xad\x74\xc8\x7a\xf9\x5d\xd4\x19\xd7\x0b\x35\x34\xb1\x97\xe7\x70\x07\xa5\xd5\xba\xaf\xa8\x7c\x51\x2c\xf8\xa4\x6c\xa2\x95\xc3\x39\xb5\x98\x00\xf7\xda\xec\x6d\x13\x86\xc9\x6e\xf4\x5b\x09\x1b\x4c\x94\xf2\xb8\x98\x28\xfa\xe8\xfe\x4e\x11\x56\x37\xa6\x79\x6c\xff\x4c\x01\x32\xa2\xa6\x94\xa9\x53\xc0\x4a\x42\x11\xca\x6f\x20\x71\x9d\xbe\x20\xe7\x54\x00\xdb\x55\xa6\xa8\x12\x4e\x5e\x95\x38\x83\xc3\xd9\xa8\xb4\x0f\xd6\x6c\xc3\x41\x4b\x42\x84\x01\x77\xf6\xa4\x54\xcb\x0c\xf8\x37\x69\x61\xf6\x10\xae\x9e\xfc\x32\xe0\xec\xab\x1b\x2c\x2c\xd6\x20\x90\x38\x07\xbd\x70\x37\x65\xc4\x53\xa3\x05\xa9\x33\x14\x38\xb7\xd2\xc5\x34\x10\xcc\xb2\x48\xa0\x50\x3b\x75\x4a\xac\x93\x1e\xce\x15\x6b\xa2\x19\xe4\x22\xe4\x8f\x53\x49\x8a\x21\x1d\x21\x2f\xf9\x0c\x16\x76\xa0\xfd\x94\x13\x19\x0b\xb4\x98\xfe\x40\xa6\x9d\xce\x16\x57\x1b\xcf\x4a\xaf\xdd\xaa\xf0\x4a\x38\xae\x7d\xa9\x7d\xad\xc4\x82\x1f\x45\x72\x50\x2a\xb1\x51\xa9\x25\x08\xe7\x24\x5f\x2e\xb9\xbb\x85\x22\x9e\xab\xec\xee\xbf\x3b\x3d\x3d\xd4\xe1\x52\x2e\xdc\xc6\x8a\x4a\x59\x20\x27\x69\xa9\x34\x5f\x2e\xed\x40\x7f\x98\x6a\xff\xc5\xe7\x0b\x3b\x72\x24\xc8\x42\xc3\x22\x63\x46\x7c\xa0\x87\x40\xb8\xb0\xc7\x91\xe1\x5d\xb4\x01\x3e\x42\xb5\x83\xdd\xe9\x1c\x49\x1b\x7b\xdb\xb6\xd4\x61\x84\x6b\xb0\xea\x9e\xa6\x54\x59\x47\x7b\xb4\xeb\x2c\x65\xcf\xe4\x00\xda\xda\xd5\x92\x62\x75\xf3\xa5\x08\x53\xb2\xd5\xf3\x62\xa3\x23\x0a\x0f\x4f\xa0\xf6\x0a\xf1\xa7\x2c\x12\x52\x6d\x92\x14\xf5\xc2\x4e\x2f\x6a\xe7\x7c\x57\x95\xc3\x1d\x13\xa0\x56\x61\xdc\x9c\xbf\x16\x90\xf1\x58\x28\xdb\xa8\x9f\x05\x8b\x3c\xdc\xab\xf1\xed\x0f\xad\x56\xfd\x12\x0e\xfb\x18\xc9\x5e\xb6\xe8\x09\x1f\x53\xab\x02\x4e\xc2\x74\x4b\xc2\xd5\x51\x6d\xc5\x48\x9d\x6d\x78\x24\x21\x29\x6f\xde\x6d\xcb\x65\x6d\xe5\x34\xc7\x50\x5f\xe3\xfa\x7e\x6c\x1a\x99\x5d\x40\x23\x0d\x1b\x2c\xf2\x75\xe4\x6c\x95\x22\xfc\xaa\xd5\xce\xf0\xdf\x99\x1c\xdb\x23\x2f\x74\x15\xb1\xa4\xdd\x88\x6d\xa3\x31\x43\x83\x15\x09\xec\x5a\xfe\xad\xc6\xbf\x37\xc4\x7c\xd7\x42\x59\xf7\xc6\x63\x5a\x02\xfa\xc4\x7f\x69\xed\x90\xfe\xe6\xbf\x36\x59\x09\xf1\xad\x59\x9e\x17\xb7\x74\x02\x39\x1d\x0a\xbe\xc3\xbc\x82\x7e\x33\xb0\x31\x96\x9b\x69\xb9\x18\xcf\x36\xb3\x72\xf3\x65\x56\xca\x17\x45\x21\x11\x84\xc3\xca\x55\xfa\x45\x22\xfc\xe2\x7f\xc2\x5c\xf7\x9e\x34\xd7\x34\x42\xb7\xa8\x26\xcb\xa5\x7e\x6e\xde\x01\xb8\x11\x60\x0b\x49\xf2\xae\x09\x24\xfa\xb2\x9b\x17\x63\x33\x74\x60\xfe\x01\x2e\xfa\xc3\x43\x06\x04\xa3\x7c\x11\xcd\x58\x44\xeb\xdc\x58\x6f\x5c\x1a\x62\x57\x89\xfd\x43\xf1\x13\xea\x2a\x34\xc6\x07\x00\x7e\x04\x51\x2b\x4c\x4a\x11\xd5\x9c\x8a\x3a\xa3\xd6\x2a\xd4\x3e\xb1\x4d\x36\x4d\x9b\xda\xeb\x46\x96\x9f\x06\x3c\x58\xee\x3b\x61\x41\x16\x6d\xa3\x4e\x76\x36\x22\x73\x03\xa8\x27\x33\x26\xd7\x55\x24\x4c\xb3\x8a\x30\x4d\x6b\x28\x28\x3a\xcc\x71\x8d\xf6\xdf\x0d\x3c\x2c\x6f\x60\x48\xea\xd5\xd5\x41\x40\x1e\xaa\xd0\x7e\xd1\x5a\xa5\xb3\xfb\x34\xcb\xa5\xeb\x6b\x77\x1f\xbf\x82\xd9\x69\x6d\xe4\x6d\x26\x24\xcb\xf2\xc7\x57\x6c\x3e\xb0\x15\x2a\xe2\xfd\xfe\x4f\xc1\x38\xd4\x8c\xfb\x0f\xc0\x38\xec\x3e\xd9\xb8\xef\xd5\xd9\x1f\x65\xab\x63\x78\x37\x2b\xef\xf8\xf8\x35\x9b\xd2\xfd\xbb\x71\x0e\xad\xa9\x2b\xba\xf4\x9a\xed\x1f\xd7\x7c\x3c\x71\x7e\x18\x01\xb8\x56\x08\x85\xa1\x7d\x91\xad\x4f\xb0\xe5\x8f\x02\xd7\x65\x1a\xfa\x37\x5b\x06\x14\x7c\x27\xbe\x92\xff\x2e\x0a\xb3\x46\x2b\xb7\x55\xc3\x28\xb1\x33\xa7\x57\xa0\xd0\x20\x3c\xf0\x8f\x2e\xc8\x4f\x32\x05\x30\x38\x1b\x5b\xe1\x36\x67\x5a\x75\xb0\xd6\xfe\x9e\xb8\xf0\x3e\x02\xf4\x76\xf3\x67\x45\x17\x32\xcc\x2a\x84\xbe\xcd\x5f\x8a\x50\xdf\x93\x66\xd7\xa9\x0d\x69\x3e\xf6\x1d\xe1\xf8\x27\x99\x0a\x54\x07\xdc\x59\xe3\x34\xd6\xdc\xca\xc6\x47\x09\x19\x7a\xa5\xff\x3a\x68\xa6\xde\xc0\x1a\x27\xa2\x47\x34\xf0\xae\x3a\x8e\xfa\x6d\xb8\x5f\x70\x49\x3f\x37\x6b\x2d\x5b\x5a\x90\xc1\x77\x4d\x55\xd6\xbc\x8c\x1f\x9c\xf8\x4a\x8d\xe1\xf2\x7e\x95\x36\x5c\xe1\xeb\x1d\x9b\xd4\x51\x74\x6d\xa1\x01\xb5\x01\x85\x4f\x52\x99\xbe\x97\xb5\x2f\x5a\xcd\xe6\x6a\xd7\x74\x65\x76\x55\x5b\xbd\x76\x98\x9e\x87\x55\xc7\xd5\x40\xa8\x06\x10\x92\x16\x5d\x71\x35\x3e\x4a\x82\x97\x17\xc2\x3f\x3f\xc6\x92\x6f\xe7\xed\x01\x9c\x8b\xa7\x83\x4d\xb8\xc5\x97\x15\x87\x97\x0d\x20\x9d\x9d\x8e\xab\x20\x20\x00\xf6\x12\xf9\xa5\xee\x76\xf5\x68\xa7\x2b\x37\x22\xde\xec\x24\x65\x9d\x33\xbe\x92\x86\xe5\x08\xad\xdb\xe1\x54\xd6\xdd\xae\x1e\xe7\x5a\x15\x78\x54\x45\x5c\x08\xb6\x3d\xeb\xf3\xd5\x0a\xff\xfa\xef\x0e\x77\xf4\x8f\x35\x37\xcd\xbf\x16\xf2\x68\xbd\xad\xe5\x5f\x0c\xd2\xf3\x6b\x05\xa4\xa7\x7a\x0d\x56\x31\x70\xd6\xd1\x4a\xcf\x5b\x75\x8f\xdf\xbd\x7e\xed\xcd\x05\x7f\x01\xb0\xcf\x53\x20\x7a\x10\xa6\xbc\x16\x60\xda\x8c\xac\xf3\x8f\x10\x5a\x47\x46\x0b\xe1\x59\x16\x90\x09\x32\x99\xf6\x10\x10\x7b\xa3\x17\x54\x8c\x40\x43\x7c\x39\x1b\x88\x1f\x76\x07\xd5\x60\x71\xf8\x7e\x17\xd9\x0f\x74\x94\x78\x1f\x00\x0d\xd4\x07\xcf\x9a\x3f\x78\x56\xfd\x80\x79\x0e\x8c\xb7\x74\x56\x77\x34\xbc\x83\x7e\x77\x00\xcc\x29\x0a\x9c\x19\x44\x40\xa7\x93\xf1\x8c\x8e\x3f\x5d\x16\x9f\x13\x42\x1a\x6a\x73\x31\xd4\xc9\x8e\x2b\xd8\x4f\x76\xc2\x14\xfa\xae\xda\xe2\xc1\x49\xb4\xb5\x05\xc0\x08\x58\x10\x3e\xe4\x01\x68\x0b\x23\x95\x19\x8b\xa7\xb8\x3a\x5b\x02\xf5\x99\xd6\x02\x31\x1b\x89\xcf\x50\x3f\x09\xba\x95\xc5\xbe\xc3\xee\x79\x59\x4f\x2c\x8a\x33\xab\x23\x76\x01\x8c\xad\x11\xb5\x7c\xf8\x7e\x34\x48\x33\xc2\x71\x49\xd4\xdf\xa8\xef\x03\x1d\x49\x5a\x78\xac\x70\x55\x48\x42\xd4\x9d\xd6\x0e\x95\x8a\xc7\x31\x7f\x0e\xb9\xfa\x2e\xa8\x9c\x14\x9d\x4e\x9a\x11\xaa\x2a\x45\xa1\xcf\x86\x56\xf5\x55\xbd\x01\xb0\x24\x3a\xdc\x11\xc4\xd7\xde\x73\xfe\x3d\x85\x8c\x3c\x72\xc8\x47\x81\x77\x00\x1f\x6d\x78\xd5\x39\x23\xf7\x26\xa7\x7c\xa6\x48\x98\x22\xf4\x79\x76\x49\xf3\x7e\xf2\x77\x9b\xeb\x7e\x9c\x17\xe5\x42\xd0\x1d\xdd\xcb\xe4\x49\xd9\x5f\xb5\xb1\xd5\x7c\x89\x59\x3d\x13\xf1\xe6\x67\x70\xcb\x30\x94\xd4\xcc\xf7\x30\xc3\xe5\xa8\x3b\x2e\xf8\x38\x93\xa9\x48\x25\x42\x68\x65\x04\x85\x05\x6f\x62\x5e\x9a\x74\x2d\x1a\xe9\x77\xb9\x6c\x4a\xd3\xe0\x40\x8c\x21\x9b\x5b\x92\xf4\x1d\xda\x74\x40\x06\xf2\x98\x3d\xaa\x8b\x2e\xdd\xeb\x6c\x9e\x2e\x38\xd2\x8e\x25\x49\x12\x82\x31\x19\xeb\x6d\xd4\x19\xbe\x5c\x02\xc8\x08\x1f\x54\x09\x63\xbf\x16\x16\xab\xd3\xbb\xc6\x20\x22\x83\x0c\xdc\x52\x22\x64\x1d\x8b\x16\x00\x93\x33\xe5\x6d\x50\x7e\x7f\x22\x01\x17\x42\x1b\x45\xb7\x2c\x16\x62\x1c\x00\xbc\x73\x5c\x00\x6e\x86\x7f\x22\x70\x01\x56\x2a\x0f\xe1\x61\xb0\x20\x7c\x91\xea\xa8\x8d\xa3\xaf\x29\xf7\xe8\xdc\x01\x1e\x6b\xa2\x01\x72\x87\x1b\x98\x11\xf5\x6f\x36\x42\x6d\x28\x13\xe6\x32\x6e\x10\xf6\x02\x0e\xa0\xec\xb2\x12\x26\x08\xa5\x12\x0d\x60\x49\x65\x40\x88\xe9\xed\x26\x37\x2a\x02\xfe\x68\xbc\x0a\x3b\x45\x11\x3e\x89\x9b\x22\x6b\x51\xb3\x13\x62\xad\xa2\xd1\x54\x57\x48\xe1\xa6\xd0\x30\xd4\xa9\x24\x63\xae\x55\xda\x95\xd5\xc2\xa2\x96\xe0\x04\x42\x89\x8c\x25\xa2\xba\x4a\x38\xea\x28\x11\xc8\x8f\x3a\x1a\xe9\xf0\xc3\x28\xda\x6e\xd6\x1f\x0e\x35\x76\xc2\x47\xf5\xb6\x0e\x08\x32\xa6\xf1\x55\xfa\x13\xc2\xb3\x96\x9d\xfc\x27\x93\xc9\x85\x40\x25\x97\x22\xe3\xe3\xd9\xe3\x33\x56\x34\x6e\x37\x03\x65\xe2\x2b\x53\x5b\x4e\x51\xae\x49\x2b\x04\xca\xd3\x74\xc7\xa1\x6b\x46\x08\x2e\xbc\xd1\xb4\x4b\x19\x1a\xb8\xe8\xe9\x01\xef\x0b\x9d\x61\x2d\x65\x50\x49\x0d\xe5\x76\xcd\x2e\x55\x03\xf0\x80\x29\x1e\x5a\x45\xe7\x2a\x8d\x80\x55\xe0\x89\x1b\x7e\xbc\xcb\xa8\xde\x65\xd4\x6f\x1f\xa9\x56\xd7\x93\xd8\x79\x25\x02\xcc\xd3\xd8\xe7\x6a\x3b\x17\xbc\x2c\x72\x8a\xba\x79\x71\x65\x59\x6d\xcc\x3d\x0b\xa3\xbe\x9b\xf0\x0a\x7c\xc9\x9b\x77\xe7\x09\xc2\xd7\xd5\xc7\x67\x27\xef\x4e\xf7\x0f\x93\xa0\xed\x3b\xe3\x6d\xe1\xdb\xdc\xb0\xdc\x0a\x28\xb0\x42\xd6\xe9\xa4\x1b\xe4\x83\x4d\xab\xfe\x60\x9e\x28\xe8\x3e\xdd\x70\x32\x4c\xb2\x5c\x26\x38\x01\xcc\xbd\x04\x27\xd7\x54\x66\x09\x4e\xc6\x52\xe4\xc9\x08\x5f\x71\xf2\xcd\xff\x6f\x9c\xb3\xf1\xa7\xe5\x75\xb1\x28\xe9\x52\x16\x8b\xf1\xec\x9b\x8d\x59\x77\x0f\xfa\xf6\x46\x73\xa5\xce\x85\x85\x4e\xf4\xf3\x12\x7a\x78\xc9\x9b\x05\x06\x78\x72\xe4\xfa\xfd\x60\x65\x43\x8d\xd3\xb2\xc2\x17\x0f\x54\x68\xfc\x5b\x1e\x53\xe1\x0a\xdf\xf2\x87\xd0\x28\xb1\x89\x5b\xb6\xa8\x94\xc6\x90\x61\x38\x72\xdb\xaa\x13\xd4\xe1\x37\x38\xb0\xf1\xf0\x09\xe0\x59\x18\xd9\x17\xd6\x6b\x2f\x88\x12\xf2\x6b\x4a\x8c\xd3\x11\xbb\x9e\xe7\x6c\xcc\xe4\x39\x30\x3b\x36\xd2\x68\x52\x5c\x13\x63\x80\xa4\x37\x94\x03\x74\x89\x3e\x01\x57\x54\x1e\xda\x27\x69\x90\xae\x66\xd1\x62\xda\x70\x85\xdb\xcc\x94\xae\x8f\x3a\x14\xbe\xe0\x89\xe3\x69\x97\xcb\x04\x36\x43\x52\x33\x5b\xec\xf9\xa1\x36\x18\x7f\x7d\xba\xe7\xca\xbc\x58\xbc\x8a\xd0\x24\xdc\x58\xc2\x19\x88\x49\xe5\xfd\x90\x8e\xaa\xd7\x8c\xac\xf5\xce\xcc\x65\x33\x09\x89\x27\xdc\x5e\x77\x6e\x16\x5c\xad\x1a\x3b\x40\xf3\xa0\x09\x1a\x48\x3d\x3d\xf6\xb7\xed\x44\x9f\x36\xa7\x02\xd6\x32\x71\x93\x8f\x17\x90\x7e\x4e\x2a\x7b\xc8\x5e\xa8\xae\x1f\x90\xa3\x10\x9a\xbc\x5c\x5c\x5e\xe6\xb4\x4c\x10\x24\xb7\x84\x47\x73\x01\xbb\xe2\x40\x27\x20\x49\xb4\x7a\x17\xde\x18\x2b\xe5\x4f\xf4\x4e\x7d\x50\xba\x3d\xa3\x47\x9b\x22\xbc\x20\x00\xc9\xc7\xaa\x72\x4b\x43\x3c\x97\xc7\x54\x91\xe0\xde\x70\xc5\xbb\x92\x96\x52\x51\xcf\xbb\x39\x0d\x12\xbd\xcf\xba\xac\x3c\x03\xfc\xdf\x7d\xb5\x5d\xb4\xdf\x1a\x49\x92\x95\xc9\x66\x64\x98\xc5\x8c\xdf\x25\xe8\x07\xd2\xb3\x09\xc5\x7b\x41\x8a\xce\x1b\x07\x42\xce\xb5\x6b\x37\x1d\xde\xf0\x21\x1f\x6d\x27\x3f\xd1\xbb\x64\xd4\xe9\x68\x14\x4b\x57\x19\xbc\x44\x0d\xa9\xc9\x53\x6a\x93\x8c\xa6\x08\x2d\x97\x29\x8c\xb6\xb0\x4f\x34\x0a\x7c\x38\x79\x6a\x4a\x96\x4b\xda\x2d\x65\x31\x7f\x2b\x8a\x79\x76\x95\xe9\x3d\x83\xd3\x1e\xd6\x32\x40\xe4\x3f\x6f\x76\x52\x7c\x08\x20\xbb\xe4\x3d\x88\x29\x14\x1b\xb1\xa5\xc4\x3a\xca\x48\xc9\xfd\x1b\x0d\xbc\x3e\x48\x66\x4d\xcf\x07\xa9\xd0\x6a\x37\x8e\xcb\x6e\x49\xf9\x64\xf0\x07\x24\x1a\x11\x4a\x34\xba\x1a\x73\x53\x95\x78\xc8\x9d\x0c\x43\x95\x00\xd3\xff\xd3\xf5\xab\x1a\x6d\xed\x14\xad\xd0\x9f\xaf\x92\x47\xf5\xfd\xf9\xea\x86\xef\x6d\x0f\x39\xd4\xb8\x42\x78\xf1\xb0\x4b\xde\x05\x77\xee\x25\xab\x14\xe1\xc3\xb6\x2b\x04\xdd\x37\x46\x5c\xad\x8d\x4b\x04\xbc\x53\x6f\xa8\x51\xe2\x06\x1c\x7e\x5c\x92\x22\x54\x4b\x2c\x08\x30\x78\x78\x5c\x75\x0c\xf3\xa1\x3b\x21\x14\x5f\x3a\x26\xa5\xd1\x05\xa5\x33\xfd\xe7\x2e\x42\x6a\xaf\x4d\xc9\xac\x9f\xce\x22\x9c\x07\x3c\xb5\xa1\x3c\x8a\x47\x30\x51\x3e\xc3\x11\x9c\x4b\x46\x9e\x3d\x67\xdf\x3b\x82\xcc\xb6\xb7\xd1\xdc\xa0\x70\xa8\x4a\x99\x29\x3f\xd1\xfc\xcc\x62\xc1\x26\x28\x8d\xd4\x3a\xb7\x6a\xc4\x13\x3c\xc5\x73\xb8\x56\xc7\x58\xd4\xa6\xdc\x80\x52\x34\x5b\x33\x8a\x6b\x60\xbd\xcc\x35\xac\xed\x47\xf6\xe6\xbf\xe4\x10\xbf\x15\x3b\x49\x73\x9c\x28\x6e\x79\x27\xde\x07\x49\xdd\x9b\xba\xa9\xe0\x4e\xb2\x2d\x70\xd5\x40\xbf\xc6\xca\x15\xab\xa0\x76\xd1\x86\x1c\xbe\x1f\x41\x0c\x68\xc0\x18\x78\x06\x0c\xd3\xe0\x22\xa7\x95\x5b\xbc\xe1\x02\x6b\x31\x85\x80\x15\x84\x3e\x31\x0c\x3d\xc6\x6c\xfe\x5c\x57\x46\x10\x3a\x00\xed\xdd\x90\x0e\x7b\x23\x50\x1e\xd4\x2b\x4a\xfe\x9e\x6c\xd3\x15\xc2\x74\xb8\x3b\x0a\x92\x18\x9d\xd5\xc2\x6d\x85\x0f\x47\x6b\x33\x8b\x07\xee\xe1\x46\x49\x97\x09\x9a\x25\x58\x7d\x31\xa5\x42\x78\xdf\x83\xcd\x29\x20\x0e\x06\x41\xb9\xa0\x26\x65\xe3\x94\xe1\xa1\x5c\x2e\x87\x23\xfc\x99\x43\x7e\x17\x25\xd8\x6b\x9c\x64\xbc\xd5\x0b\x82\xe6\xff\x64\xff\x68\x53\xa7\x5a\xba\xf3\x40\x57\xf6\xea\x14\x40\xf3\x9b\xfe\x9e\x25\x3a\x5e\x68\x38\x42\x36\x82\x88\x77\x3a\x29\x23\x7c\xd8\x1b\xe1\x82\xf0\xe1\xee\x08\xa7\x19\x61\xfe\x4e\x55\x9b\x20\x41\x80\xe4\x0a\x77\x74\x49\x8a\x61\x36\xc2\x31\xca\x58\xe9\x80\xc5\x16\x80\x5b\x8d\x85\xf5\x0b\xf1\xb6\xa0\x05\x36\xde\xf4\x26\x16\x16\x61\x6e\xc1\x63\x8d\xb7\xf6\x96\xc6\x49\x0b\x35\xb1\x0e\xe5\x59\x2f\xd3\x89\x5a\x4f\xf7\xde\x8c\xd5\x52\xc6\x13\xb7\xd8\x5a\x23\x6b\x5f\xbb\xf9\xf9\x14\x69\x3a\x83\x0d\x6a\xa6\xc1\xe2\x7c\x0f\x52\x66\x97\xd0\xc8\x3d\x14\x81\xc8\x7a\x53\x7c\xa2\x67\xb0\x1c\x2f\xf2\x62\xfc\x49\x51\x7a\xcb\x70\xa2\x7e\x5c\x20\xe5\x08\x16\x47\xad\xc3\x1b\xfe\x00\x3c\xc2\x7f\xb7\x65\xe8\x9c\xff\xbb\xf8\x20\xac\x01\x3e\xf4\x94\x91\xf2\x2b\xc6\x69\x1d\x57\x51\xb5\xcc\xc6\x26\x83\xd3\x9f\x37\x23\x3d\xcd\xde\xfc\x86\x3f\x88\x19\xe0\x30\x2c\x01\xdc\x45\x27\xeb\x02\x2f\x37\x80\x5b\x3b\x84\x51\xd9\x75\x49\x35\xb8\x1e\xda\x60\xdd\xcb\xa2\x90\xa9\x4d\xde\xc1\xba\xd3\x4c\x4d\x3a\xa4\xd8\x4c\x7c\x22\x8f\x78\xf0\x90\x78\xf7\xa4\x7b\x45\x39\xa4\x0a\xdd\x77\xc5\x5e\xea\x8f\x51\xca\x70\x12\x7d\xe1\x55\xfe\x0e\x8a\x39\x27\xb2\x7b\x5d\x4c\x68\x7e\x4a\xa7\xb5\x24\x7f\xf9\x60\x41\xee\xf5\x42\xf4\x19\x0e\xfb\x41\x0a\xab\xab\x41\x18\xd2\x8a\x68\x2f\x80\x0c\x61\x99\x5d\xf5\x2b\x16\xae\x7e\xca\x89\xd3\x2a\x63\x41\xf2\x08\x69\xe6\xe1\x26\xee\xa1\x83\x7d\xbe\x6a\x6a\x0b\x2a\xc3\x76\x08\xfd\xdc\xfe\x79\xd3\x17\x8a\x3b\x7b\xd8\xef\xc1\xdd\x8a\x3a\x37\xc7\x63\xdd\x09\x6a\x9e\x04\x0f\xdf\xa1\x66\x4f\xff\x41\x07\x84\x07\xb0\x85\xec\xc4\x01\x87\x63\xa7\x03\xf6\xa0\x9d\x90\x8d\x1a\x18\xd0\x72\x99\x4a\x22\xbc\x7e\xd2\x15\xad\x82\x01\x29\xc6\x27\x4d\xe0\x6d\x02\xd1\xa5\xce\x5d\x61\xbf\xea\xd0\x16\xd9\x1d\xcf\x79\x93\xed\xdd\x2d\x96\x5c\x05\xf6\x88\xd3\xda\x1d\x5b\xcd\x66\x70\x5d\x2c\xb8\x4c\xb0\xbe\xb0\xf9\x28\xc8\xba\x5f\xbd\x86\x0c\x82\xc5\x50\x27\x3d\xb0\x68\x5a\xee\x06\x02\x82\xfd\x76\xad\x26\xc7\x0c\x44\x66\x57\x24\xc8\xd9\xab\x06\x70\xea\x73\x04\xdb\x81\x58\xd5\x0d\xe5\x37\x56\xaf\x03\x6e\xd7\x5a\xad\xe3\x42\xc1\xe1\xd9\x81\xc9\x19\xd2\xc4\xea\x6b\x3c\xe1\x66\x85\x03\xe5\x37\x56\xde\x37\xbd\xb0\xc2\x7e\xb0\xd8\x55\x53\x6d\xcd\xee\xc2\x06\x95\xde\x11\x12\x3e\x3a\xa0\xd3\xbe\x25\x5a\xb3\xac\x34\xbe\xba\x5a\x94\x4d\xcc\x29\x4d\xb6\x19\x1a\xa4\x95\x6a\x58\x65\x84\x61\xb4\x9e\x3a\xae\xfb\x3c\x65\x00\x18\x17\x15\x33\xe6\xde\xb4\x3e\x3b\x8d\x93\x68\xf0\xf3\x5b\x21\x23\x02\xc3\x7c\x43\x30\x9f\xc5\x7e\x68\x5d\x76\xb3\xe4\x21\x64\x04\xf5\x9a\xb1\xb2\x7b\xc0\x84\xbc\xab\x68\xd1\x1b\xf3\xb9\xb4\xe0\x58\xa8\x79\x38\xe2\xe6\x06\x6d\xca\x3c\xde\xa6\x5b\x6b\xc5\xbe\x68\x01\x99\x0e\x3f\x30\x7f\xab\x23\xc9\x78\x30\x1e\xa3\xc9\x9e\xa8\x31\x39\x17\xfe\xdf\xd6\x1c\x09\x53\xb5\x0e\xee\x82\xaa\x83\x83\xa0\x1b\x39\x36\xa7\x43\x3e\x94\xfe\x5a\x67\x8c\x78\xea\x09\x88\x9b\xf6\x06\x17\x9f\x4c\x80\x0e\xf4\x9f\x7d\x37\xec\xda\x95\x26\x6d\x11\x39\xac\xf7\xdc\xd6\x39\x7a\x14\x2e\x49\x6d\x3d\xd5\x14\x1e\x3d\x76\x0a\x83\x3c\xe3\xe1\x84\xe9\x8b\xe5\xa1\x4d\x25\x1b\x70\x57\x6a\xde\xc1\x0f\xcf\x65\x55\x07\x4a\x3b\x1d\x3a\xb4\xbd\xb2\xd0\x32\x07\x0f\x8f\x28\x44\x3c\x01\x9d\xd3\x63\x06\xb4\xae\x7b\xaa\xc2\x60\x81\x21\xed\x62\xb8\x91\x15\x25\xec\x74\xa4\x5b\xe5\x10\x18\x3c\xe5\x24\x95\x04\x0c\xcc\x17\x17\x20\x9b\x5f\x14\x62\x3e\xcb\x78\x79\x71\x81\x82\x8f\x90\x0b\x3e\x1e\xba\x8e\x8f\x62\x88\xf1\x00\x7d\x40\x18\xd4\x0e\x7b\x37\x35\x41\xe0\x5b\x77\xf6\xa1\x2d\x6c\x9a\x1a\x11\x81\x45\xf7\x36\x2b\xdf\x95\x3a\xfc\xf2\xde\x74\xa1\xcf\xb0\x2e\x68\x20\xc3\x56\xd5\x08\xa9\x27\xec\x3c\x7f\x91\xbe\x7e\xf0\x22\xb5\x19\xdb\xfe\xa2\x9b\xf4\xe5\xe3\x48\x6a\x40\x2f\x26\xde\x1d\xde\x53\x7b\x45\xec\x0d\xf2\x90\x7b\xf6\x47\x76\x50\x93\x34\x11\x24\xc6\xf7\xa4\xa0\x16\xc8\xc0\x89\xc5\xc4\x89\x0a\xf2\x5a\x41\x41\xb8\xf3\x50\xac\x91\x18\xa1\xd5\x20\xf7\x42\x5d\xa6\x46\x7d\x0b\xbb\x0b\xeb\x79\xe8\x73\x33\x21\x11\x8a\x9b\xe7\x7c\xc3\xd4\x7d\xab\x55\x1a\xcf\x20\x0c\x21\xe6\xb8\xbc\xdc\x4f\xe3\x74\x49\x44\x86\x3a\x81\xaa\x96\x7b\xd3\x7b\xab\x82\x4e\xdc\x83\x51\x87\xec\x24\xbc\x0a\xfa\x63\x03\xe1\xdd\x62\x39\xa5\x40\x65\x61\x37\x2a\x6b\x4a\xcd\x0c\x07\x09\x9a\x83\x24\xd3\x29\xaf\xb1\x0c\x5a\xaf\x8c\xea\x1b\xe6\x4f\x72\x00\x1a\x17\x85\x5b\x01\xe8\x95\xfb\xeb\x85\xfd\x6b\xe3\xb6\x7b\x7a\x78\x7c\x70\x78\x7a\xf1\xea\xf0\xf5\xdb\xc3\xd3\x4e\x27\xdd\xfb\xef\x8b\xb7\x7a\x3c\x42\x1d\x6c\x32\x7f\x96\xeb\xb9\x23\x45\x9c\x6c\x92\xde\x6e\x1e\xf0\xb4\x56\x10\xb0\x90\xb5\x9d\x1c\x1a\xd4\xe2\x09\xbc\x02\x65\x88\x4e\x23\x5c\x75\xe5\xff\x57\x25\x67\x7c\xac\x1b\x7b\x2d\xfd\xa5\x71\x54\x97\x4e\x78\xc1\x9f\xfe\xcd\x7d\x79\xdf\xfc\xfb\x6c\xba\x60\x0f\xd4\x62\x47\x5c\x7c\x97\xa3\x60\xd2\xa9\x6d\x82\x87\xc9\x36\x6f\x57\x59\xa0\xd4\x24\x0f\x7d\x9a\x3e\xe6\xd3\x7a\x79\xbd\xd5\xe5\xf6\x11\x72\x7b\xc5\xe5\x56\xae\xd2\x3d\xa4\x88\x85\xda\x45\x6f\xf0\xf9\x3f\x37\x5c\xaa\xba\x55\xaa\xe1\x53\x0f\x6e\x9d\xfd\xff\x37\xb6\x8e\xbe\x4b\x1b\xcc\x20\xf5\x3d\x95\xca\x36\xa5\xd8\xda\x8d\xe5\x74\x61\x12\x57\xbf\x41\x15\xfd\x92\x53\x84\xac\x10\x36\x4f\x56\x8f\x0e\x57\x0a\x14\x30\xdc\xea\x5c\x36\x64\xa4\x37\x09\x5c\x7b\x9e\xb8\xcd\xcf\x1f\xaf\x96\x82\xb6\xfe\x90\x72\x2a\xb8\xe4\xcd\x6e\xff\xa2\x77\xfb\xbe\xba\x19\xab\x2b\x17\xa9\x79\x1a\xb5\x3c\x8e\xb9\x91\x2b\x03\x46\xf6\x6e\xcd\x05\xfb\x8e\x37\xa2\x59\xd9\x8c\x05\x94\xdf\xe0\x92\xf0\x9a\xcb\x36\x5e\x90\xd2\x09\x0a\x39\xc9\x8c\xee\xa2\x21\x1b\xcf\x02\x39\xdb\xa7\xbd\x10\xc6\x24\x4e\xf0\xe0\x26\x20\x41\x83\x38\xb1\x43\xf0\xc6\xb9\x6c\x2c\x0c\x0e\x48\x2d\x8f\xca\x20\xd5\x80\x46\x2f\x78\x3a\xc6\x39\x7e\xc5\x11\x66\xce\xb5\x2d\x86\x31\x42\x00\xde\x1f\x14\xfe\xa2\x81\x89\x02\x8b\x6e\xf3\xa7\x0c\x17\xc8\x81\xbc\xfd\xee\xe6\xd5\x1d\xf4\x0f\x01\x77\x00\x49\x49\xc1\xe1\xdd\xd9\x7b\x76\x92\xc0\xe9\xe1\x2f\x33\x68\x19\x76\x8e\x01\xa7\xd1\x64\xdb\xb2\xac\xe8\x60\x38\xea\x37\xdb\xb9\x02\x43\xce\xfb\x4a\x5e\x97\xc7\x0c\x03\x94\xc6\x4f\x1a\x46\xd1\x3a\x8c\xac\xd3\x49\xb5\x41\xaa\xa8\x0f\x26\xf3\x86\x3a\x81\x99\xe9\x7a\x7d\x57\xff\x5e\x3d\x38\x8e\x5b\xb3\xae\x26\xe9\x56\xe5\xab\xe5\x72\x4b\xc9\x9b\x71\x1e\x16\x53\xc2\xe4\x5f\x41\x60\xcd\xab\x0a\x75\x0e\x74\xc2\x08\x75\x4d\xe6\x39\xe6\xa7\xbb\x59\x9e\xb3\x5b\xea\x23\x27\x43\xed\x47\xff\x23\xb7\xb2\xee\x15\xe0\xc0\x6b\x82\x72\x32\xc5\x3f\x69\xea\xf0\x81\x66\x9f\xde\x64\x73\xbf\xf5\xbe\xd2\x57\x8e\xc5\x41\x22\xf4\xb9\x9e\x50\xf9\x1c\xd6\xf0\x27\x0e\xa7\xcd\x65\xc1\xdd\xfc\x89\x9b\x5c\xbf\x1b\x92\xfc\xc8\x15\x7f\xe6\xf7\xc0\xcf\xbc\x9e\x8a\x3e\x71\x8b\xd1\x4f\xb6\x69\x50\xf8\x97\xc8\xc1\xf9\x5e\x3b\xe8\xf6\x9d\x04\x4f\x07\x21\x39\xb0\x2f\x40\x3e\x2b\xe7\xd9\x18\xe8\x94\xea\xf1\xaf\x9c\xdc\xb3\x69\xbf\xc1\xa6\x13\x25\x30\x72\x7e\x88\xdc\x29\x01\x0c\x49\xe2\xfa\x0e\xd3\xff\x3f\x53\xd4\x5e\xdb\xf2\x5b\xaa\xd4\xee\x1a\xa2\x25\x3b\x94\xde\x9e\x94\x8f\x29\xf8\x72\x69\x0b\xae\x18\xee\x8e\xc0\x59\x4b\x5b\x59\x9f\x29\x32\x98\x16\xb1\x4f\x06\xaf\x78\x9e\xf1\xd8\xf3\xac\xcf\x14\xbd\x6c\xea\x91\x45\x2f\x77\xc8\x9e\x20\x9d\x35\x5c\x19\xb2\xc5\xc6\xef\x93\x11\xae\x90\xf7\x10\x32\x1b\x4b\x54\x68\x30\x88\x25\x91\x62\xeb\xc6\xe4\x3d\xab\xe8\xa6\x78\xa7\x13\x75\x49\x0e\x7b\xa3\x20\x3d\x1b\x18\xa4\xb9\x12\x5c\x56\x08\xf3\x4e\x47\x0c\x1a\x3a\x26\x52\x0e\xbe\x4a\x7d\xbe\x5c\x8a\xe5\x32\xe3\xab\xd4\x4c\x13\x34\x96\x00\xe8\x2a\x4c\x93\xf9\x8d\x33\xe4\x11\x94\x0c\xd3\x33\x25\x0d\x01\x32\xc5\xf0\xfd\x68\x50\xf2\xb4\xc0\x05\x56\x7f\xe3\x1c\xbc\x8d\x02\xe7\xe5\x05\x82\xcc\x4b\xc1\x93\x02\xa9\x2f\x7c\x3e\xa8\x85\xfb\xab\xf0\x57\x1a\xea\x57\x09\x48\x60\xd6\x6e\x60\x74\x23\x2f\x7e\xcf\x72\x60\x81\xe2\x18\x14\xcf\xcd\xad\x56\x61\x1f\x70\x81\x73\x84\x86\x1f\x75\xee\x07\x0d\x96\x37\x45\x2b\xac\xd7\xb1\xdf\x14\x4a\x00\x82\x95\xa0\x69\xce\x71\xe0\x8a\x84\x56\xf8\x8a\xb6\x7c\x30\x75\x67\xa6\x9a\x12\xac\x87\x70\xf5\x11\x80\x9e\xcd\xb2\x72\xd6\x5c\x57\x2d\x3f\xd9\x0a\xe7\xc5\xd5\xda\x8e\xce\xab\x1d\xbd\x5e\x54\x3b\x6a\x6c\xb8\xb5\x94\x65\x3d\xd0\xbf\xa4\x9c\x08\xb5\x57\x86\x13\x3e\xb2\x64\xcc\x66\x11\x8c\x15\x83\x22\xd0\x0a\x5e\x43\xba\x4a\x36\x7c\x3f\x22\x62\xf8\x61\x84\x99\xfa\x5c\x4d\x33\x5b\xe1\xe4\xf7\x05\x15\x77\x3b\x73\xf0\x44\x48\xd6\xf6\xfe\xae\xda\x7b\x41\xb3\x49\xc1\xf3\xbb\x46\xfa\xd2\x74\x3c\x55\x4f\x96\x4b\xba\x6a\x98\xfd\xc8\xf5\xaa\xa0\x10\x38\xbe\xe0\x97\xc5\x82\x4f\x9a\x3b\xe5\xd9\x93\x7a\x65\x01\xbf\xbb\xe0\x39\x2d\xcb\x3f\x4b\x54\x9f\x39\xe2\x8a\x56\x2e\xbb\xf9\xda\xc9\x92\xd5\xc9\x4a\x76\x68\x36\x9e\xed\x30\xbe\xe6\xbb\xcf\x4d\x83\x81\x6f\x19\x9f\x2f\xe4\x0e\x78\xcb\xac\x6d\x56\xd4\x9b\xe5\x85\xb8\xce\x72\xf6\x85\x3e\xa6\xdb\x45\xfd\xfb\x99\xbc\xce\x77\xca\x6c\xfa\x40\xcb\xbc\xfe\xe5\x15\x95\x3b\x86\x13\xd8\xb9\xc9\x44\xd2\x97\x81\x07\xc6\xfb\xcc\x5b\x56\x1b\x97\x47\xf3\xde\x4d\x27\x01\x5b\x95\x93\xe1\x9f\xb5\x98\x83\x06\x32\x64\x9d\xcd\xc3\x7e\x4c\xf5\x01\x79\x93\xa7\x02\x73\xd0\x23\x39\x8d\x74\x4b\x0f\x42\x71\x18\x3c\x08\xe2\xda\x04\x69\x49\xd5\x08\xb9\xa5\xcb\x2e\xd0\x5b\x17\x8e\x93\x26\xd7\x19\xe3\x09\xea\x37\x8c\x48\x95\x7f\xc9\x41\xfd\xf8\x1b\x4f\x79\x04\x60\x2f\x10\x5a\xad\x1a\x24\x97\x5f\xf9\xd0\x31\x5f\x23\xf2\xce\x64\x47\xfb\x07\x27\xf7\xe6\xda\x07\x74\x28\xbe\xc2\x31\xce\x67\xe4\xf7\x09\xe2\x93\x56\x84\x95\x64\xa8\x47\x67\x20\x81\x8b\xcb\xdf\xce\x8b\x57\x26\x25\x89\xe7\xb7\xf4\xcb\xcb\x05\xcb\xe5\x11\xd7\x3c\x60\x49\x7e\xe5\xd1\x63\x0b\x4f\x53\x92\x7f\x54\xa2\xea\x21\x35\xb0\x56\x65\xd8\xaa\xc6\x75\xf6\xb8\xa9\xd4\xa2\x94\xc5\xb5\x09\x91\x68\x78\x1f\x35\xf0\x8a\xc9\xd2\xc2\xae\x45\x2f\xde\xb0\xb2\xa4\xee\x55\x53\xcb\x6a\x3f\xda\xf7\x33\x18\x5d\xed\xa5\x01\xbd\x03\x42\xd5\x7d\x93\x8d\x45\x51\x3e\x4f\x9b\xbd\x23\x18\xcf\x19\xa7\x25\xb8\x46\x5c\xe6\xc5\xf8\x93\x46\x93\xe3\xdd\x6c\x32\x49\x13\x6b\x0d\x79\xcd\x11\xae\x2d\xaf\x29\x63\x99\xeb\xdf\x39\x90\x20\xf5\xc8\x78\x23\x9c\xfa\x27\x40\x1d\x12\xbc\xe7\x9f\x48\xfa\x59\x6a\xa7\xc4\x33\xfb\x50\x8d\x9d\xf1\xab\xf4\x03\x38\x24\x42\x29\x68\xfd\x93\xfd\x6d\x0b\xbc\xe7\xc8\x24\x52\xfe\xc8\xc3\x4c\xca\x69\x0f\x7f\xe4\x43\x39\x42\xea\xf8\xa0\x95\x4f\x41\x60\x05\x1f\x33\x25\xaf\xb3\x2f\x00\xd2\xa0\x1e\xc1\x8e\xfe\x60\x50\xee\xb0\xb5\x1b\x35\x98\x54\x1e\x0b\x5b\x14\x64\x6a\x69\x07\x2b\xda\x88\xad\x11\x5c\xdb\x45\x64\x80\x48\x94\x56\x11\xe9\x1a\x2b\x6b\x6f\xdb\x1c\x19\x1b\x20\x2c\xc2\xa7\xd6\xab\x60\x8d\xf0\x27\x83\xfb\x8e\x80\xbd\x6f\xed\x86\xdc\xde\xc6\xa2\x8a\x6f\x0b\xc3\x68\x05\x26\x35\xfd\x1b\xd2\xd1\xa3\xf1\xab\x1c\xe7\xd1\x30\x3e\x93\x85\xe6\xa2\x06\x67\x55\x95\xc0\x07\xa9\x20\x60\x09\x0d\xe7\x83\x21\x64\x06\xd8\x78\xa2\xb6\xb7\x31\xb7\x69\xdd\x1f\x05\x8e\xd5\x34\xd4\x68\xd2\x3d\x3c\x56\x15\x5b\x76\x1d\x70\x55\xb0\xbc\x17\x75\xbc\xaa\x8d\x86\x36\xab\x9b\x28\x4e\xfa\xbc\x6e\x7e\x23\xaa\x64\xc5\x50\x6f\xc8\x03\xd9\xa4\x9d\xbe\x81\x76\x4f\xaa\x8b\xc1\xe9\x50\x4c\x96\x98\xaa\x49\x90\x0d\x52\x4e\x2c\x02\x9a\xe8\x47\xc7\x75\xa5\x73\x52\x97\x2e\xf1\x34\xc7\x12\x81\xe3\x96\x65\x81\x4c\x3e\xc2\x94\x62\x86\x5a\xa9\xe9\xf6\x36\xea\x37\x93\xe0\xed\x6d\xc5\x61\xd6\xc3\x8a\xaa\x58\xc6\x26\xa4\xbc\x66\xec\x34\xb1\x4d\xc1\x45\xd4\x36\x4c\xe9\xd0\x70\xdd\xce\x35\x98\xb9\x16\x10\x3f\xac\x44\x0f\x09\xe0\x72\x2b\xb0\x94\x0f\x1d\x0f\xd2\x70\xf9\x0d\x2b\xc6\x7b\x6f\xb4\xdd\x30\xaa\x44\x22\x8d\xe9\xaa\x20\x14\x67\xe4\x17\x9e\x82\xeb\xe3\x22\xa7\x10\x3a\xa5\xbf\x44\xb8\xac\xb8\x5f\xea\xc3\xd2\x4f\xb6\x0b\x9c\xa1\xe5\xb2\xed\xa5\x73\xb9\xd2\x6a\x0a\x9f\xd4\x5e\x90\x52\xc9\x0a\xfa\x64\x42\xf2\x30\x60\x00\xdd\x1f\x5d\x56\xea\x21\x18\x55\xf5\xa0\x69\xc0\x2e\x07\x70\x7d\xd2\xb9\x0d\x39\x01\x6e\x07\x58\x66\x13\xfd\x1a\x71\x82\xfd\x94\x76\x39\xbd\x35\x98\xd7\xd9\x25\x9c\x1b\xcc\xfd\x2e\x8b\x4a\x2b\x19\xb9\x46\x09\x2e\x1e\x3e\xb6\x10\xc6\x15\x15\x43\x20\x90\xc2\xc4\x83\xec\xe4\xd7\x05\x6e\x29\x53\x2a\x22\xcb\x1c\x6d\x54\x71\x35\xe9\x76\xe2\x10\x34\x37\xe7\xfa\x9b\xa4\x8a\x66\xfa\x48\x4a\x55\xe5\x8e\x6a\xd4\xf9\x02\x12\xc9\xaa\x4d\xf1\xb2\x10\xc7\x56\x3f\xd4\xa4\xf6\xc7\xce\x78\x2c\x42\xbd\x64\xbf\xef\x12\x7d\x40\xaa\x5a\x01\xe7\xc2\x26\x88\x12\xdb\x4a\x8e\x71\x3f\x7b\xe0\x17\xa7\xb5\xe6\x32\x50\x47\xf1\x2a\x5a\xee\x93\xee\x66\xec\x74\xe7\xb8\x0c\x57\xc5\x7d\x8e\x52\x7b\x1c\x32\xdc\x72\x14\xb4\x76\x5d\xe7\xa5\xc6\x39\x09\xd3\x9f\x8d\x49\xe8\x24\xdc\xcf\x23\x7f\x89\x71\x8d\x84\x4c\xc9\x5a\x1e\x13\xe8\xc9\x38\xce\xef\x3f\x75\x41\x01\x26\xa0\xe8\x81\x7c\x6b\x80\x4d\x56\xab\x3e\xc1\x3f\x73\x9c\x41\xcd\x8b\x4e\x67\x2b\xef\x74\x8c\x62\xd5\x25\xc2\x38\x39\x7e\xfd\xf1\xe2\xc7\xd7\x47\x6f\xde\x1c\x9e\x5e\xec\x9f\xbc\x79\x7b\x72\x7c\x78\x7c\x7e\xe6\x86\x00\xf4\x9f\xf2\x74\x81\xf0\x3c\x45\xeb\x79\x65\x20\x69\x63\xac\xce\x95\x6a\x31\xef\x74\x72\x7b\xd8\x53\x41\xbe\xe2\xa9\xf9\x89\x9c\xf2\x33\xbe\xd1\xdd\x00\x0c\x83\xed\x96\x48\xd8\x74\x05\xbf\xc8\x34\xc3\x39\x66\x78\xb1\x5c\xca\xd8\xd8\x91\xf6\xf0\x61\x77\x2e\xd8\x4d\x26\x01\x2c\xe6\x2d\x42\x8f\xef\x72\x81\x70\x61\xb2\x61\x2f\x96\xcb\x1c\x48\xc9\x1b\x68\xcb\xb7\x13\xd0\xbd\x6a\x5b\xc7\xc8\x28\xf2\x17\x9a\x83\xb0\x44\xea\xb1\xcd\x5f\x43\x1e\xec\x75\xbb\xdd\xcc\x08\xa9\xb9\xbe\xb4\x88\x25\x15\x25\x73\x5b\x29\x7b\xe5\x1b\x41\xd3\x9b\xad\x4d\xb3\x3b\xc6\xc4\xd5\x4f\xb6\x2b\xbc\x47\x43\x65\x9a\x1d\x50\xab\x6f\x5c\xe7\xa4\x20\xf7\x9a\xbc\xd6\x51\x4f\x81\x25\xa7\x02\x79\x3e\x60\x85\xb9\x20\x07\xe9\x3d\x9b\xf4\x93\xff\xf3\x73\xfe\x86\x4f\xbe\x1b\x27\x18\xe4\x95\xfe\xd7\xf7\x89\x76\x83\x28\x93\xfe\x30\xe9\x4c\x4c\xc8\xee\x08\x27\x60\x74\x03\x4d\x5e\xd2\x1f\x0e\x77\xbf\xc3\xbb\xa3\x11\x86\x4c\x80\x37\x59\x9e\xf4\xa7\x59\x5e\xd2\xd5\xd7\xf8\x9a\xca\xac\x7f\xef\xcf\x78\x3f\x99\x67\xe3\x4f\xd9\x15\x2d\xbf\xd1\xf1\x6b\x16\x0e\x27\x67\x97\xdf\x58\x16\xa2\xfc\xc6\x1b\x3e\x66\x97\x65\xb2\x5a\x21\x2c\x5c\x1f\x7f\xdf\x2b\x7f\xdd\x7d\xfd\xbf\xdf\x35\xf6\xb1\xde\x33\x3c\x7c\xb6\x8b\xad\xb0\x35\xc2\xd0\xb1\xbf\xb2\xab\xba\x66\xd7\x4f\x26\x48\xb2\x23\x8b\xf9\x4e\x4e\x6f\x68\x9e\xe0\x42\x10\x2d\xf8\xe3\xac\x4d\x0e\x8f\x31\xeb\x2e\x02\x3c\x66\x9f\xce\x4d\xd1\x1a\x2a\xac\x83\x23\x1c\x8c\x3a\x64\x9d\x61\x07\xcd\x27\x53\x9d\x43\x84\xa7\xce\xed\xef\x5e\x75\xc4\xfa\xfc\x59\x17\xc0\x7b\xa8\xac\xcf\x31\xe3\xb2\xb0\xd6\x09\xe3\x31\x56\x08\xed\x47\xc6\x22\x47\x31\x9b\x40\xcc\x79\x91\xad\x56\x71\x82\x42\x41\xa7\x7d\xe6\xbe\xf4\x75\x35\xfb\x9d\x59\x1f\x44\x1f\xae\xf0\x59\x52\x3e\x69\xf2\x3a\x6d\x74\x2e\xf8\x57\xc0\xcb\x55\x5d\xa0\x02\x0c\xa2\x81\x65\x65\x3c\x1e\x0a\xae\x41\x59\x60\x0e\xa0\x42\xb5\x82\x52\x43\xb3\x68\xb7\x6c\x41\x8b\x39\xe5\x1a\x9e\x30\x1c\x69\x54\x5b\xe0\xc6\x5d\xed\x54\xa0\xda\x0c\x37\x11\x28\xd1\xec\x0e\x02\x76\xb4\xea\x42\xa8\x9d\x79\xd5\xdd\x2d\x87\x59\xf7\xe4\xc3\xf1\xe1\xe9\x08\x14\x64\x0f\x24\xd2\xb1\xfc\x88\x35\xdd\x90\xda\x06\x56\xe4\x10\xd2\xa2\xd4\x22\x02\xe8\x60\x52\x8c\x61\xee\xbb\xa0\x83\x3e\xa3\x39\x55\x6b\x95\x52\xd4\xa7\x3a\x7a\xdd\x82\xdb\xa3\x18\xd9\xde\x8f\x25\xa9\x66\xa6\xb2\xd0\xf7\x8f\xc8\x77\x53\xcb\xe6\x18\xa6\xa0\xac\x79\xb6\x0b\x3a\x75\xe8\x2b\x0f\x07\x5e\x1b\x87\x3f\xda\x3d\x0d\xf3\x7f\xbd\xc4\x81\xe7\xe3\x01\xa6\xdd\x7d\x13\x6b\x48\xee\x28\xa6\xdd\x73\xfa\x59\xbe\x64\x34\x9f\x90\x2b\xfb\x73\x4f\xd0\x8c\x5c\xaa\x5f\xaf\x19\xff\xe4\xee\x24\x72\xab\x1e\xf9\x9f\x13\xf5\xf3\xf4\xe4\xe4\xfc\xe2\xf4\xf0\x25\x19\xab\x5f\x46\x86\x79\x85\xa9\x11\xba\xc9\x3b\x4c\xbb\x87\x21\x65\x91\x98\x76\xcf\xb2\x29\xd5\x18\x5d\xe4\x77\xf5\x19\x2d\xc7\xd9\x9c\x1e\x7e\x9e\x0b\x5a\x96\x31\x87\x07\x97\x9e\x5d\x45\x0f\xf9\x05\x8f\xc1\x77\x53\x16\xaf\xce\xdf\xbc\x46\xde\xc9\x13\x7e\x6b\xdf\xd7\x58\xc4\x4b\x12\xf5\x6c\xcb\x49\x7c\x74\x3b\x49\x36\x28\x49\x92\x6d\x87\x70\xfe\x9e\x1a\xb0\x06\x34\x50\xcb\x37\xcf\xb3\x31\x4d\x3f\x52\xfc\xa3\xda\x1d\x6a\xfe\x67\xf2\x3a\x57\xbd\x27\x3f\x51\xc8\xa9\xa3\xda\x82\xdf\x5f\xc1\x64\x58\x7a\xf9\x45\x8d\xf2\x88\x53\x21\xdd\xa3\x57\xfa\x91\xc3\xbf\x77\x2f\x5e\xa8\x17\x17\x82\x96\xd4\x15\x8e\x9c\x62\x5c\xfe\x3e\xd2\xd3\xa7\x15\xfc\x8b\xa8\x94\x39\x6d\xcc\x4c\xaa\xb5\x4f\x90\x44\xef\xb5\x24\x67\x5d\x73\x79\xaa\xff\xa9\xb0\x08\x0d\x8a\x7d\x5c\x08\x41\xb9\x3c\x5d\xf0\xd7\x45\x31\x47\x29\x5a\x2e\x1b\x73\x3c\xa4\x89\x01\xb4\x4b\xb0\x4d\xd7\x87\xf0\x6b\xf0\xb6\xb9\x66\x25\xcc\xca\x15\x95\x0d\xea\x07\x58\xa3\x77\x70\x16\x4f\x6e\xb9\xc9\xa9\x7e\x97\x7a\x17\xda\x77\xd2\xc8\x22\x65\xe3\xf7\x81\xb6\xff\x9d\x46\x35\x81\x15\xc8\xca\xc6\xb6\x5c\xc9\x7a\x7b\x95\x2e\x36\xb9\x1c\xbd\x93\x95\x7e\xc4\xa4\xf0\x9d\xd4\xc9\xa3\x4a\x2a\x17\x73\x1d\xd4\xe8\x52\xe9\x85\xe5\x7c\x9e\xaa\x34\xb9\x61\xf4\xb6\xef\x7c\xcf\x33\xc8\x40\xef\xdf\xba\x3b\xc9\x95\x10\x50\x82\x71\x25\x4e\x43\x00\x52\x5c\x81\xfb\x22\xf8\xd3\xbd\xad\x7c\x59\x52\x71\xc3\xc6\xb4\xbf\x33\x29\xae\x77\xc6\xb3\x8c\x5f\xd1\x32\xc1\x89\xa5\x7c\x09\x0e\x4b\x98\x67\xeb\xaa\x90\x82\xd2\x9d\xb1\xbd\xd8\x34\x40\xc0\x83\x95\xb9\xb1\xd6\x39\x75\xcc\x2b\xb3\xe1\x6a\x30\xbc\xce\x4e\x40\xcb\x13\x4c\xe5\xda\xfa\x8e\x14\xe7\x59\xe9\x7e\x30\x59\x96\xe1\x84\x54\x70\x95\x0f\xd5\x57\x26\x69\xcf\xcb\x42\x9c\xdf\xcd\xa9\xd5\x71\x24\xf8\x1e\x70\x16\xb8\x64\x26\xfb\x6c\xdc\x63\xa3\x09\xc9\x8b\x71\x82\x7f\x8f\xfb\x17\x78\x6c\x44\xa1\xdb\x57\x74\x7d\x31\xad\x39\xbf\x6c\x2f\xe5\x83\xc4\xef\x5a\x0b\xe5\x8c\x7f\xda\x91\x45\x82\x6f\x29\xc2\x8f\x14\xfe\x96\xcb\x35\xb3\x7b\x8c\xf0\x44\x1f\x21\xd8\xfc\x7b\x3e\xc0\xb6\xe5\x04\x34\x6d\xa2\xc6\x65\xb5\xd7\xa8\xcb\x5f\x15\x6f\xa5\xa6\x6d\x57\x59\x65\x7b\x23\x27\x38\xa1\xfc\x26\xfc\xbc\xa9\xc1\x96\x2d\xa7\x5a\x32\x79\x39\x12\x5c\x93\x5f\x28\xba\x2f\x6f\x99\x1c\xcf\x52\x0a\x41\xcb\x27\x26\xc5\x93\x49\x0f\xf3\xa6\x98\x50\x74\x3f\xce\x4a\xaa\x2a\x64\x60\xf1\x4c\xfa\xce\x27\xdd\x3d\x33\xb9\x3a\xbb\x97\x8c\x4f\x4c\xf8\x0c\x7c\x24\xe8\xec\x6e\x22\xd4\x46\xed\x3b\x03\xbf\x7d\xc6\x0a\xde\xf0\x99\x21\xe7\xbe\x78\x94\x0c\x34\x28\xb9\x5a\xad\xd6\x9d\x69\x37\xe4\x24\x18\x56\x82\x93\x70\xca\xfa\xda\x74\xd8\x3a\xe9\xbe\x8e\xc6\xaa\xd7\x9e\xda\xdf\x10\x7e\xd9\x5e\x73\x98\x4a\xa5\x7e\x70\x7f\x43\xf1\x5a\xda\x0f\xa1\xf9\x04\xbf\x90\x6d\xaf\x99\xba\x92\x13\xfc\x4a\x22\x3c\x77\x3c\xe2\x53\xb6\xac\x66\xc6\xda\xb7\xac\x25\xb6\x6b\xf6\x9a\xa3\xc7\x4d\x7b\xcd\x99\x80\x0d\x25\x0d\x59\x65\xd9\x3d\x38\x79\xb3\xaf\xbf\x4e\x39\x5a\xad\xd6\x34\xd2\x40\xb1\x9f\xd8\x5c\x6a\x27\x68\x00\xed\x9e\x0b\xea\x45\x1b\x56\xf0\xbe\xe8\x1e\x17\x13\xda\xf0\x06\xe9\xbe\xad\x34\x57\xa3\x7b\xa7\xed\x95\x11\xa1\xf8\xe8\x12\xcc\x41\x49\xfa\x79\x4e\x05\x53\x7d\xc8\x72\x53\xfa\x23\xc7\xb4\xbb\x77\x59\x4a\xc5\x31\xd5\x34\x23\x52\x6e\x50\x8f\xf4\xe8\x01\x2f\xff\xa1\xd8\xac\xe3\xf7\x27\x3f\x1d\x92\xf7\x6a\x7b\x29\x86\xeb\x32\xa7\x2f\x0b\x41\xce\x14\x8f\x76\x40\x2f\x17\x57\x67\x32\x1b\x7f\xb2\xba\x4c\xda\x0d\x72\xcc\x66\x02\xc7\x89\x32\x1a\xe4\x8e\x5a\xde\xde\xdd\xc6\xbc\xbd\xbb\x61\xde\xde\xdd\x51\xff\xde\x62\xed\xde\xb7\x24\xee\xe8\x6f\x6d\x49\x9f\xd4\x63\x1c\xbd\xc3\x3e\x5f\x07\x14\x0b\xd2\x77\x18\xda\xfc\x80\xee\xc8\xbb\x1f\x6a\xbd\x0d\x35\x76\x88\xab\x86\x2f\xbf\xe2\x6a\x6f\xa5\x26\xb9\xea\x35\x95\xd9\x37\xa0\xec\x4d\xf0\x30\xa1\x9f\xe7\x85\x90\x3e\xf5\x2a\xbc\xcd\xd9\xe5\x37\x00\x8a\x38\xc2\x71\xab\xc9\xa2\xa4\x9b\x8a\x7b\x1f\xcb\x64\xc3\xf8\x0a\x41\x70\x13\xf5\xfc\x99\xba\xa2\x17\x8a\x31\x56\x67\x82\xf2\xc5\xb5\x5e\xb1\xfe\x56\x2f\x76\xa9\x0a\x7c\xa0\xec\x07\xea\x0c\xb4\xd6\xaa\x81\x0e\xdf\x00\x56\xe3\x23\xeb\xf5\x9f\x3c\x50\x73\x39\x16\x6c\x2e\x0b\xf1\xb2\x10\x4f\xa8\x3c\xf8\x6a\x6d\xfd\x90\xab\xd3\x94\x7d\x74\xf5\xe1\x47\x6b\x6b\x7f\xd2\x8c\x3c\x38\x17\xd7\x4f\xa9\xed\xfa\xa1\xda\xe6\x94\x7e\x7a\x52\xff\xec\x07\x6b\x6b\x2d\xa9\x7c\x52\xa5\xa6\xfc\xda\x3a\x5d\xc0\xdd\xa3\x6b\x75\x5f\xac\x00\x49\x2d\x3e\x5f\xee\x04\x35\x1c\xb1\xcb\xec\x92\xe6\x09\x4e\xfe\x0e\x3f\xbf\x99\x28\x0a\x16\xfe\x9c\x0b\x3a\xce\x24\x9d\xec\x4c\x69\x26\x17\x82\xfa\x2f\xe3\xcb\x4b\x3f\x5b\x48\x96\x97\x95\x83\xea\xdd\xce\xa3\x03\x4b\xdd\x41\x23\x14\xd6\x8e\x50\xd8\x10\x84\xfa\xc1\x78\x2a\x6a\x66\x8d\x4c\x31\x75\xcb\x42\x66\x98\x06\xa7\xaa\x81\x98\xaa\x1b\x60\xc3\x51\x4f\x08\x73\x8e\x52\xd3\x46\xa7\xa6\x25\xa2\xc6\x1b\x07\x07\xaa\xba\x3e\x8f\xe3\x9a\x9d\xcf\x22\x74\xcb\x9f\x92\x52\xe7\xf2\x88\x4e\x4e\x63\xfc\x31\x18\x33\x69\xa7\x53\x35\x76\x6e\xd2\x4e\x07\xb0\xeb\xe3\x3a\x56\xc6\x39\xdf\xec\x1d\xa7\xb3\xc1\x65\x34\x71\x69\x0f\x17\x1e\xd2\x76\xc1\xf5\x1e\x9b\x24\x08\x2f\xec\x3c\xaf\x8f\x33\xbe\x30\xa1\xf5\x56\x31\x3a\x33\xf9\x13\xed\xf0\xe2\x17\xb7\x99\x1c\xcf\x18\xbf\x8a\x9f\x5e\xb3\xcf\x8c\xbb\x92\xa2\xfb\xe2\xe8\xf8\xe0\xe8\xf8\x47\xeb\x7b\xdf\xe9\xb0\xc8\x33\xbf\xf6\xda\x78\x40\x28\xb6\x93\xf1\x2b\x5b\x91\xcf\x52\x3c\xaf\xf4\x62\x3c\xcb\x18\xff\xa0\xba\x42\xab\x1d\x84\x57\x95\x67\x32\xbb\xaa\x3d\xa8\x14\x99\xe6\xea\x91\xf9\xa5\xbd\xe0\xad\xfe\x1a\x66\x3e\xc0\x4b\xe8\x8e\xbd\x72\xd6\x63\x27\x04\x0f\x83\xb5\x32\x86\x2a\xc5\xbe\xf0\x5a\x57\xdd\xe3\x97\x8c\x03\x7f\x3f\x21\x5b\xbb\x4d\x0e\x46\xac\x3c\xe2\x4c\x32\x53\xa6\xcd\x44\x0b\xe5\xb7\x48\x35\x41\x75\x83\x8a\xcf\xe5\x4b\x65\xa5\xda\x20\x07\x36\x59\x66\x8a\x6c\x3e\x0c\x7d\x08\x83\x17\x1b\x21\xd0\x00\xcd\x26\x8a\x4c\xed\xc3\x54\xa7\xc1\xc1\xa3\x41\xae\x9b\x5a\x5a\x62\x56\x9e\xc1\xbc\xfa\x0c\xd2\x6d\xd8\x1d\x17\xb3\xac\x7c\x99\x67\x57\xe9\x33\x54\xd3\x74\xae\xab\x23\x58\xca\x25\x79\xb6\xb6\xf5\x46\xad\x57\xdc\xf8\x77\x0f\x34\x1e\x57\x11\xb5\xfd\x5d\xb5\xed\x68\x36\x1f\x6c\xf9\x3f\xeb\x2d\xb7\x56\x10\xb5\xfb\x9f\x15\x7b\xa0\xa9\xb0\x61\xcb\xa4\xc1\x77\x1d\x8a\x48\x6d\xdb\x5c\x5c\x51\x79\x22\x74\x1e\xaf\x93\x5b\xfe\x26\x9b\xb7\x6d\xbc\x21\x1d\x99\xdc\xb8\x43\x3a\x6a\xc2\x78\xa8\xba\x1c\xc4\x35\x9f\x35\xc3\x35\xd4\x6b\x56\xd2\xcb\x19\xad\xaa\xc7\x2f\xa6\x8c\x4f\x8e\xb4\xc9\x83\x4e\x76\xe3\x10\xce\x4a\x5e\xf1\xe7\x16\xd2\x4e\x47\xd5\x78\xf4\x0b\x49\xf8\x90\x8e\xbc\xe1\x73\x83\x13\x6e\xe0\x3e\xaa\x0e\x05\x51\x73\xcf\x2a\xec\xb1\x6d\x50\x23\x99\x85\x4d\xb2\x6a\x93\x9c\x30\xd5\x64\xc0\xf3\xa7\x80\xaa\xe1\x7b\x21\x36\x18\x61\x8f\xe9\xc5\xb7\xb5\x0b\xcd\xf6\xc3\xfa\x33\x84\x3d\xc9\xaa\x3d\x11\x24\xab\xf6\x84\x11\xa1\x7a\x12\x3e\x2a\x08\x0b\x60\x7f\x37\x8b\x8d\x8c\x64\x2d\x9d\x9b\x65\xe5\x11\x77\xbd\x8b\xd7\xb7\x32\x4b\x51\xcf\x44\x7d\x8e\x84\xee\x59\x25\xfc\x69\xab\xb7\x21\x88\xb0\xad\xdb\x60\xb6\xb8\x17\xb7\xaa\xf1\x03\x75\x73\x34\xdf\xf6\x7a\xff\xd7\x36\x79\x9a\xc0\x75\x93\x20\x08\x1c\xa2\x23\xef\xd8\xc6\x20\x80\x4c\xb4\xed\x71\xcc\x86\x72\x54\xc5\x59\xd0\x9c\x42\xa5\x0f\xb1\xb7\x5e\xbc\x92\xb6\x79\x1c\xba\xed\x05\x8c\x49\xaf\xcf\xab\x5e\x69\x65\xa5\x01\x77\x82\x3c\x3b\x54\x6f\xe8\x99\x6f\xa8\x72\x9e\xa6\x85\x38\xcc\xc6\xb3\x23\xde\xd0\xef\x68\x7b\x9b\xec\xea\xf5\x8c\x38\x76\x39\x8b\xfa\x72\x16\xfa\x32\xaf\xed\x7a\x75\xf6\x6c\xe5\x8b\x4d\xc6\x37\x05\x4a\x33\x7f\xe5\x66\x03\x73\xf6\xfb\x19\x82\x9d\xb0\x40\xcb\x65\x9a\x81\x23\xf0\x02\x61\x31\x5c\x8c\x20\xbc\xa9\x24\xe5\x72\x39\x1c\x21\xad\x13\x58\x20\xb4\x51\x90\xc2\x6e\x93\xb0\x2b\x25\xd2\x30\xbb\xbd\x2a\xcc\xae\x4c\xcb\x21\x1b\xa1\xfa\x56\x32\x10\x56\x4d\x5a\xff\xf6\x9d\xa4\xd8\x8c\xaa\xc3\x95\xbd\x3c\xd7\x56\xa6\x3e\x6c\xed\x43\x0b\xb0\x39\x7c\xb5\xce\xbb\x10\xd8\x20\x1a\x26\xe2\xa8\x7b\x11\x06\xbd\x5b\xd7\xb9\xe6\xbe\xed\x47\x5c\x59\x5b\x2f\x23\xde\x6d\x6d\x7f\x63\x2e\xef\x91\x3d\x6f\xe9\x44\x65\x0c\x51\xd5\x6b\x46\xf3\xc0\x30\x5a\xfa\x1f\x32\xa2\xb2\xd2\x71\x8b\x2e\x2b\x3d\xa2\x94\x71\x30\x36\xf0\x52\x71\xfb\x29\x45\xdd\x71\x31\xbf\x3b\x2f\xd2\x06\xa7\xcf\x98\x13\x6b\x1d\x6d\x7c\x45\xa6\x89\xe9\x5b\x75\x6b\x02\xc9\xfc\x60\x19\xfc\xf8\xe8\xb7\x6f\x72\x2b\x11\x24\xc8\x59\xd7\x62\x02\xd8\x50\x63\x3c\x95\x35\xca\xe4\xaa\xc4\x4d\xfe\xb2\x83\x5e\xbf\xd2\x0a\x04\x00\x7c\x66\x0d\x89\xdd\xea\xbc\x46\x9a\x18\x69\x25\x41\x40\x3f\xaa\xf4\x6f\x96\x95\xf5\xba\xaa\x5c\x5a\x7c\xbd\xf9\x2a\xdb\xa8\xe9\x1b\x2d\x1f\xad\xe3\x4d\x5c\x80\x4e\xc0\xa4\x44\x0c\x8a\x95\xb2\x10\xf8\xc5\x85\xc0\x49\x86\x36\x0a\x2c\x6d\x7b\x69\xe4\x7e\x62\x2e\xcf\xe5\x32\xd5\xb1\x13\x12\x61\xaa\x76\xd3\x0a\x21\x1c\x30\x3a\x4d\xd7\xa7\x97\x02\x1f\xbb\x1d\x02\xc9\xb1\x75\x47\x34\xd7\xfb\xc0\xa6\x08\x2b\x0e\xf6\x85\x24\x84\x94\x0e\x9f\xae\x7a\x3c\xae\x8b\x9b\x96\x51\x98\x31\x54\xc7\x99\x52\x5c\x36\xaf\x61\x5b\x35\xc1\x42\x1a\x7e\x06\xb3\xca\x52\xd6\x18\x1b\x49\x44\x24\x63\xfb\xdb\xaf\x50\xb7\x9f\x44\x29\x23\x81\x1f\xbc\x5d\x61\xa6\x6f\xbf\x42\x2d\x25\x83\xa5\x2c\x10\x4e\x39\x91\xc3\x62\x84\xd4\xb5\xd6\xe9\xd0\xb4\xc0\x1c\xa1\x90\x3f\xaa\x9d\x95\xf3\xe2\xb5\x13\x48\xab\xfa\x1b\x74\xef\x0f\x5a\x2c\xa4\x3a\xc2\xe6\xa5\xd9\xe1\x08\x55\x45\x59\xa3\x8e\xb7\x08\xd3\x35\xae\x15\x64\xd8\x86\xe6\x03\xa1\xb4\x41\x2e\x7e\x6a\xaf\x36\xec\x74\xba\x9c\xac\x7a\x2e\xec\x82\x28\x2a\xed\x57\x83\x12\x19\x7c\x8f\x1a\xaa\xac\x0e\xd2\xa7\x70\xc0\x5b\xb2\xb1\xc3\xcf\x91\x24\xd2\xb4\xba\xd1\x2e\xee\xf7\x56\x4d\x3b\xf6\xa5\x28\xae\xdb\x96\xa8\xc2\xdc\x47\x0c\x74\x8d\xe3\x12\x8a\xe3\xf2\x23\x33\x5c\x8f\xb0\xc9\x14\xbf\x7b\xce\x7e\x50\x3c\xd0\x0e\xf9\x0e\xb1\x69\x2a\x86\x6c\x44\x34\xb2\xd8\x16\x5f\x2e\xc5\x90\x6d\xef\x8e\xf4\x9d\xa6\xfe\x7e\x36\x02\x58\x37\x68\xa2\x30\x37\x18\xaa\xde\x33\xf1\xfa\x5a\x4f\xd6\x86\x61\x99\xd1\x6c\x08\x48\x5d\x37\xa6\x29\xc3\xdf\x21\xc5\xa4\x15\x8d\xf3\x79\x29\x68\xf6\x29\x64\xe7\xe2\x79\xbb\x36\x37\x46\xd3\xac\xfd\x89\x23\x5a\x99\x3a\x9d\x2f\x45\xfa\x74\x29\xe4\x3b\x9d\x48\x11\x26\x6d\x92\x32\xc2\x00\x47\x02\x06\xa6\x26\x74\xcd\x50\x6a\x02\xcc\x26\x83\xa0\x16\x2b\x56\x80\x27\x1d\x4a\x29\x1e\xde\x7f\xa2\x77\xfd\x44\x97\x4d\xaa\x7a\xe1\x68\x93\x1b\x55\x5e\x23\x53\x42\x49\x1e\xf3\x21\x91\xf2\x4f\x12\x8b\x86\xb7\x5c\x52\xcd\x71\x2f\xf2\xbc\x3f\x4f\x35\xa7\xb5\x1a\x21\xed\x15\xf6\x07\x54\x7b\x8b\xea\xad\xf2\xc2\x6a\xf9\x1e\x7b\xa5\x58\xb5\xa0\xbb\x4f\x16\x95\xfb\xa4\xa1\xc6\x75\x1c\xd0\xb3\xb0\x4e\xb8\xb2\x17\x75\x72\xdf\x58\xe7\x63\x2e\xed\x9a\x66\xc1\xeb\x35\x3d\x99\x67\x9a\xcc\xbb\x15\x8a\x6f\xf4\x06\xf9\xb2\x2f\xd0\x90\x8d\xd4\xd5\xaf\x0e\xe9\x56\x0f\xab\x03\x23\x95\xac\x82\x62\x65\x45\x38\x94\x71\x4e\x33\x51\x1f\x88\x9d\xeb\x8a\xba\xd5\x80\x4d\xe4\x2d\xd0\x25\xe3\x66\xe4\x92\xa9\x5e\xbd\xb1\x8b\x4c\xf2\xd8\x22\xb3\x0a\xa6\x89\x0b\xfc\x88\xc1\x4d\x42\x01\x71\x6c\x9c\xcb\x91\x0f\x44\x92\x6a\xe3\x9a\x4c\x9f\x73\x6b\x41\x68\xb1\x00\x84\xb5\x81\x11\xc0\x68\x72\x83\x08\x2d\x69\x21\x15\xe9\xed\xe6\x22\x88\xc7\x9a\x42\x0c\x0d\xe6\x01\xb8\xf6\x24\xd2\x18\x60\x46\xe4\x90\x6f\xef\x8e\x14\xd1\x1d\xf2\xed\x67\x3a\x57\x8b\x20\xbd\xe7\xe2\x7b\x9b\xed\xe0\xb9\xd8\x26\xdf\xea\x1c\x4a\x62\xa4\x95\x06\x74\x28\x34\x19\x2d\x4c\x17\x36\xa8\xbe\x24\x19\x2e\xb0\xaa\xe8\xdb\x11\x5a\x05\x36\x12\xb7\x18\x91\x69\x27\x7f\x84\x49\x67\x5e\xe4\x77\x53\x96\xe7\x65\xc5\x4a\xf3\x57\xd9\x7c\x4c\xc2\x3a\xf3\xb5\x58\xf0\xbc\x28\xe6\xea\x81\xf5\x2d\x77\xb0\x2b\xbe\x14\x15\xa2\x10\xb6\x86\x6f\x6e\xa8\x28\xb5\xe3\x97\xae\x11\xbc\xb7\x5b\xac\x48\x3a\x41\x07\xce\xf1\x18\x4f\xf1\xac\x66\x53\x2a\x35\x00\x31\x84\xfd\x9c\xd1\x4c\x8c\x67\x07\xac\x54\xb2\xd0\x04\xec\x28\xed\xef\xf4\x5d\xe4\x23\x94\xe0\x1a\x19\xd3\xb2\xdc\xcb\x73\xf7\xb4\xf4\x8f\xc3\x92\x8a\x8c\x44\x65\xa2\x07\x84\xea\x48\x95\x73\x93\x48\x96\x00\xb7\x15\xbe\x3e\xde\x7b\x73\x78\xf6\x76\x6f\xff\xf0\xec\xe2\xc5\xc7\x8b\xa3\x83\xe8\x11\xa1\x5d\x29\xb2\xf1\x27\xe8\xa5\x67\x0e\x21\xef\x77\x49\x85\x3c\x2e\xac\x6b\x27\x14\xb0\x10\xf8\x6a\x48\x0b\x7e\xc4\xcf\x45\xc6\x4b\xed\x64\xa9\x4e\x49\x26\x3e\xe9\x73\xbc\x57\x02\x06\xb7\x46\x84\x7d\x09\xf5\xe9\x3f\xac\x1d\x92\xc0\x64\xbe\xca\xca\xf7\x8c\xde\xaa\x41\x1d\x81\x23\x0b\x9d\x04\x05\xc0\xeb\x5c\xcb\x45\xb4\x5b\x5c\x96\x54\xdc\x40\xcb\xd7\xe6\x51\x96\xb3\xac\x7c\x43\xe5\xac\x50\x7d\xb3\x05\xf5\x54\x9f\xf8\xe2\xd9\x64\x12\xfc\xa2\x9f\xe7\x19\xb7\xad\x30\x98\xcf\x12\x68\x8e\xff\x7d\x55\xf9\xfd\x9a\x5d\x8a\x4c\xe8\xbf\xf3\xe0\xef\x5b\x2d\xca\xeb\x28\x77\xf3\x93\xd0\xee\x82\xdb\xbf\x58\xe9\xc4\x50\xf7\x18\x52\x99\x9a\xc2\xe6\x6f\xdd\xe3\x50\x87\xa0\x17\x99\x95\x33\x23\x63\xd3\x2e\xfc\x71\x5c\x4c\xa8\xaf\xe9\x27\x7a\x67\x2b\xd2\x7f\x1e\x84\xcb\x17\x9b\x7d\x09\xed\xbe\x3d\x3d\x79\x7b\x78\x7a\xfe\xf1\xe2\xe0\xe8\xe0\x62\xff\xd5\xde\xf1\x8f\x87\x7a\xbf\x41\x81\x0f\x2c\xcf\xb5\x83\x4e\xf0\xf0\x80\x4d\xdc\xb3\xe2\x86\x0a\xc1\x26\xd4\xf5\x88\x17\x92\x4d\xef\x6c\x03\xae\x1c\x75\x93\x6b\x9e\xa9\xb2\xda\x71\x28\x9a\xd4\x4b\x7a\xc5\x78\xbd\x24\x2b\xdf\x0a\x5a\x82\xbb\x75\x97\x95\x2f\xf2\x8c\x7f\x82\xbf\x0e\xaf\xe7\x30\x0a\x56\x1e\x17\x9c\xc2\xa2\xf1\x09\xa4\x54\x72\x13\x68\xd9\x30\xd5\x59\xb5\x11\x66\x59\xe9\x39\x33\xd8\x06\x41\x09\x9a\x8d\x67\x6f\x45\xf1\xf9\x0e\x32\xe6\x84\x03\x8d\xdf\x44\xf3\xe2\x5e\xe9\x1d\x9d\xa9\x02\xfb\x05\x97\x94\xcb\xb0\x86\xf0\x79\xf4\xbd\xee\x27\xd4\x1b\xef\xcf\xea\x23\xe3\xbf\x7d\xc4\x8f\x33\xc9\xcc\x17\xfe\x31\x9c\x06\x38\x65\x00\xd8\x2a\xee\xce\xa8\xd4\xdb\x58\x6f\xde\x0f\x4c\xce\x4c\xb6\x3b\xfd\x80\x68\xfb\x87\xd9\x6e\x6f\x4f\x4f\x7e\xf9\x78\xb1\x7f\x72\x7c\x7e\x78\x7c\x0e\x3b\xc5\x50\xe4\xf0\xe8\xa9\xa3\x45\x34\xa3\x03\x21\x53\x7a\xc4\x00\x80\x38\x9e\xd1\xc9\xfb\x2c\x5f\x54\x9e\xe9\x5f\x17\x57\x79\x71\x99\xe5\xe5\xbe\x0e\x6c\x55\x07\xd3\xfe\x19\x54\x3f\xb6\x6f\x4d\x1c\x84\xbe\x66\x1b\xaf\xfa\x89\xbf\x6d\xe7\xeb\xa3\x99\x6d\xf8\xf7\x3c\x8a\x57\x76\x15\x5d\x87\x6a\x70\x57\x55\x73\x20\xb2\x61\x08\xfc\xc7\x77\x01\x73\x67\xbf\xd5\x29\x56\xa1\x59\xd1\x85\x29\x48\x77\xe9\xb7\xb8\x09\xc7\x27\x4a\xa0\xbd\x0a\x10\xc0\xaf\x82\x84\x5b\xb5\x78\x8f\x4e\x07\x62\x52\x6f\x6c\x7b\xee\xab\xcb\xb0\xee\xed\xa4\xaf\x8f\x57\x90\x5c\xfe\x22\x84\xa0\x2a\xba\xea\xc4\x1f\x1d\x1f\x9d\x5f\xec\x9d\x9f\x9f\x9e\x75\x3a\x59\xc4\x3d\xc7\x6f\x2d\x13\x8d\x45\x63\xc6\x72\xbe\x5c\xa6\x82\x70\xac\xe1\xa1\xc1\x25\xbf\x04\xee\x08\xa5\x14\x55\xe4\x7c\x9d\x22\x19\xeb\x14\xf9\x41\xf7\x6f\xbd\xdc\xff\x47\x1a\x69\x92\xeb\xaa\xb9\xa5\x0e\x1b\x92\xe8\xeb\x7b\x3d\x8a\x7f\xd5\xb8\x01\xb5\x40\xf0\x22\xd4\x83\x40\xe3\xd6\x29\x44\x75\xa0\xcf\x7c\x94\x78\xd1\xe9\x14\x75\x39\x10\xb4\xa6\xbe\x91\xe5\x12\xfe\xb3\xb9\xa9\xac\xe9\x08\x38\xb9\xcc\x0b\xc6\xdf\x3e\xcf\x94\x60\x9c\xed\x90\x6f\xd1\x82\x88\x61\x36\xc2\xb9\xfa\x4f\x71\x7f\x63\xf8\xe3\xd9\x08\xe7\x9d\x4e\x3a\xee\x74\xf4\x14\x2e\x70\x0e\xd9\x2c\xd3\x05\xa1\x08\xd7\x36\x90\x2a\x9b\x93\xc5\x30\x1f\x21\x9c\x9b\x18\xae\x85\x56\xd4\x18\x8b\x16\x6c\xe1\xcf\xeb\xc1\x6e\xb2\xc9\x84\x4e\x62\x6c\x85\xdf\x17\x74\x41\xc9\x70\xd4\xe4\x36\x90\x4d\x26\xeb\x8c\x5f\x50\x9b\x3d\x7c\x0d\xf8\x0d\x67\xd4\xa6\xdb\x85\x82\xfa\x24\x0b\x84\x70\xa0\x50\xf4\x7d\x08\x14\x3f\x16\xa3\x45\x56\x2d\xbf\xd3\x7c\x51\xce\x6a\xd8\xf3\x76\x77\x10\x5f\x19\xac\x47\xd0\x36\x08\x32\x56\x99\x60\x87\x8c\x75\x16\x5b\xe6\xf3\xd6\x92\x6f\x91\x04\xb3\x2a\x06\xeb\xaa\x5a\x2d\x01\x7f\x3c\x1b\x61\xe3\xda\x66\xbc\x06\x96\xcb\xe0\x37\x9d\x2c\x97\x87\xa9\xc4\x02\x0f\x25\xe6\x23\x9b\x95\xe2\xac\xae\x4f\xdf\xda\x0d\xc4\x83\x13\xaf\x66\xcf\x5b\xf2\x9c\xb8\xb2\x7b\x76\xfe\xd9\x34\xb5\x7b\xdc\xc7\x21\x2d\x97\x55\x2c\xfa\x3c\xc2\x5e\x36\xa1\x91\x81\x1d\x30\x3a\x86\xda\x53\x29\xed\x61\x01\x77\x76\xf1\xf9\x0e\x05\xf1\x31\x9f\x00\x02\xc3\x25\xc9\x0a\x8d\x59\x3a\xf7\xe5\x50\xba\x5c\x06\xd9\x72\x99\xaa\xdf\xe4\x24\x45\x61\x7a\xb8\xd0\xf9\xb3\xc9\x7d\xc9\xe7\x87\x0b\xd4\xf4\x71\x1f\x25\x0a\x9b\x4e\x4f\x50\x3f\x1e\xa3\xce\x07\x57\xc3\x64\x3d\x0f\x37\x2e\x23\x3c\xb4\x50\x85\x9e\x27\xac\xd3\xa9\xcd\xc0\x80\x99\x84\x2d\x53\x26\x4a\x19\x27\x6f\xe9\xb3\xf8\xb7\x9d\xa0\xa8\x01\x3d\x41\xae\x8d\x62\xa0\xe6\xc6\xa2\x72\x79\x5f\xdd\x4e\xe7\x4d\x9a\x05\x54\x86\x59\xf3\x26\x21\x24\x5b\x2e\xcf\x52\xd4\xe9\x2c\xc2\xa0\x28\xca\xcb\x85\xf0\x09\xcd\xd0\xea\x4d\x2d\xfa\x21\xcc\x33\x03\x5d\xdb\xdf\x68\xe0\xf3\xf7\x9b\xdd\x73\xe9\x50\x8e\x52\x84\xd5\x6e\x55\x9f\x9e\x12\x98\x19\xe7\x24\xd6\xc0\x7e\x26\x08\xbf\x85\x43\xff\x19\x1f\x93\x1e\xfe\xcd\xae\x43\xe1\x79\xd5\x0f\x47\xaf\x5f\x9b\xd2\x9d\x4e\xda\xc8\xae\xfe\x16\xc5\x11\xea\x29\x3d\xaa\x2d\xe9\x41\xab\xdb\x5d\x9d\xbe\x73\xa7\xa8\xdb\x22\x04\x12\x4c\x6c\xb1\xe5\x52\xc4\x1e\x51\x6a\xb3\xfb\xe4\xff\x65\xec\xec\x07\x50\x1a\x58\xc4\xec\x45\xd1\xe9\x34\xe1\x51\x2a\xa1\x4a\x0f\x45\xdd\x25\xee\x07\xcc\x2d\x66\x9d\x8e\x88\xec\x59\xa9\x44\x60\x75\xae\x92\x58\x36\x4d\x79\x83\xb3\x53\x8a\x96\xcb\x2d\x6e\x0d\xf6\xde\x99\xc1\x20\x7c\xbe\xdc\x50\x94\xf7\x25\xd9\xda\x45\xcf\xd3\xba\x3c\x6c\x07\x28\x6c\xf4\x7d\x78\x77\x16\x9d\x4e\x5a\x38\x9a\x2d\x8c\x6f\x76\x81\x10\xde\x2a\x80\x56\x73\x33\x41\x76\x33\x6f\xb0\xd8\xce\x9f\x72\x1c\x46\x07\x7b\x8d\x4c\xd6\x38\xa3\x12\x20\xe8\x90\xe2\x5e\x2e\xca\x45\x39\x57\x72\xe8\x44\x9d\xf9\xe5\x92\x9a\x97\x2b\xb4\x5a\xa1\xf4\x00\xab\x01\xbc\x86\x2b\xa1\xd3\x49\x5f\x3b\x42\xfe\x92\x6c\xf5\xd0\xca\x2c\x0d\x6e\xbe\xa4\x78\xb3\x4d\x37\x3c\xf5\x80\x0c\xa3\xa5\x9f\x54\xe2\xad\x1e\x3e\x40\xab\xb4\xd7\x5c\x69\xeb\xb2\xc4\xeb\x70\xa9\x26\xf7\xf8\x87\xde\xe0\xad\x36\x0f\x42\x65\x7d\xc5\xc4\x08\x3c\xa4\x58\x8e\x5c\xb7\x11\x3e\xdd\x64\x26\xff\xcf\xe9\x28\x55\x5b\x04\x5a\x11\x6b\x5b\x39\x37\x5f\xaf\x56\xab\xa2\x49\x10\x8c\xce\x96\x17\x65\x8e\x6a\x37\xb9\x3d\x46\xe6\x9c\xbd\x76\x7c\x81\x9a\x5b\x7f\xda\xbe\xfc\xb1\x49\x15\xd4\xa5\xbc\x0b\x99\xef\x57\x29\xba\x3f\xde\xde\xf6\x0f\x5e\xa4\xe8\x7e\x67\xe7\xf8\x7b\xd2\xeb\x74\xde\xea\x0b\x3e\xbc\xf7\xde\x29\x7a\xf6\x2a\x45\x1b\x52\xdc\xdd\xc3\x8d\xc8\x78\x96\xe7\x77\xf7\x2f\x52\xa3\xd2\xfb\x7d\x3d\xcb\x13\x79\xd5\x6e\xf5\x6c\xca\x38\xeb\x29\x4d\xb6\x7a\x4d\x9c\x0f\x04\x99\xb5\x07\x4c\x4b\x9a\x89\x49\x71\xcb\x1b\xc2\x9e\x5d\x0f\x3e\x44\x67\x2f\x76\x02\x8a\x6e\x36\x7f\xb5\xd6\x88\x03\x6e\x3e\x3e\xaa\x62\x86\x5c\x3a\x49\x75\x85\x6c\x2c\x3a\x9d\x34\x73\x1d\xb3\x45\x58\xdd\x84\xa9\x08\x87\xd1\xd3\x6e\xf5\x36\x28\x21\x44\x27\x9c\x75\xa3\x03\x4e\x73\x6b\x57\x17\x02\xdd\x99\x3d\xf4\x7c\x93\x99\x2b\xa7\x98\x6e\xfe\x3e\x48\x67\x84\xb7\x7a\xa6\x4b\x7c\x3f\x2e\xf8\x94\x5d\x2d\x9c\x47\x7a\xe0\x9f\x9e\x83\x19\x22\x1d\x13\x89\xa7\x64\x86\xeb\x7e\x07\x53\x4d\xa6\x66\xac\xc4\x63\x9d\xf2\x9b\xd5\x4d\xad\x12\xcf\x4c\x9a\xc4\xc5\x5c\x0b\x89\x7d\xcd\x07\x71\xd5\x37\xa1\xd8\xe9\xad\x5d\x00\xcb\xf9\xa3\xbd\xb4\x1c\x87\x7a\x01\xb8\xaa\xfd\xd9\x0a\xf5\xd5\xf5\x48\x04\xea\x3f\x30\x01\x1c\x21\x5c\x74\x3a\x5f\x80\xa0\x30\x84\x1b\x6e\x0c\x50\xc3\x1d\x44\x9f\x82\x07\x6c\xf5\x21\xd4\x37\x0b\x71\xda\xab\xaa\xe5\x76\xde\x0e\x37\x6c\xad\x0d\x16\x3b\x6b\x28\x6a\xbf\xbd\x8b\xb0\xbd\x0c\x42\x0b\x60\xfb\x0e\x44\x51\xaa\xae\x5b\x96\xe7\x50\x9f\x3a\xfe\xee\x87\xdd\x89\x8d\x83\x77\xa5\xc2\xc1\xd7\x1e\x82\x1c\xe0\x46\xfe\xf1\xa1\x91\xc7\xf7\x7f\x74\x6d\xb3\x4e\x67\x8b\xd5\x3d\x79\x53\x77\xfd\xd7\x27\x4a\xed\x9f\x62\x90\xd6\xe7\xab\x67\x19\xb6\xa7\xcd\xd2\x84\x4d\xde\x69\x9d\x9f\x9a\x26\xff\x6b\xed\x3c\xf9\x62\x95\x5d\x52\x79\xaa\x66\xaa\x5f\xfc\xb0\xdb\xe9\x34\xac\xef\xce\xae\xa1\x98\x3f\x36\x6b\x67\x7e\xaa\xa6\x36\xfa\x31\x96\xed\xf4\xfc\x31\xad\x12\xf3\x4c\x9b\xb7\xd5\xbb\x9a\xbe\x7a\x4a\x4d\x07\x21\x97\x54\xa9\xe8\xe7\x40\xbb\x50\xf3\xe2\x49\x25\xe9\x61\x4e\x04\xd9\xd9\x45\xfd\x20\x6f\x18\x20\xa7\xef\xec\x86\x52\x3b\x88\xa4\x3b\xbb\x08\x61\x3f\x48\xac\xae\xe4\xe4\xef\xd0\x87\xfe\x25\x9d\x16\x82\x26\x70\x41\xab\xb7\x60\xae\x74\xdd\xf8\xa5\xc9\xb9\xe1\x0f\xb5\xaf\x05\x31\xb0\x4d\x2c\x48\x6d\xb7\x3e\x4f\xc5\xf7\xbd\xe5\x92\xab\x7f\xc4\x0e\xdf\x22\x3d\xd4\xe9\xa8\x6b\x3a\xd1\x12\x6a\x82\x17\x08\xc3\xef\xe1\x08\xfe\xfe\xaa\x79\x34\x46\x87\x14\x8c\xc6\x10\xfc\xbb\x9a\xc6\x6d\x8b\x90\x1c\x98\x3f\x6b\x80\xda\x49\x75\xc2\x07\x31\xe8\xf5\x05\xda\x49\x19\x81\x9f\xe0\x39\x8a\x94\x34\x23\xbf\xef\x0d\x8a\x6d\xd9\x97\x38\xd7\x08\xc4\x20\x1c\x69\x2a\x98\xa0\x4e\x07\x84\x16\xd3\xed\xf0\x95\xea\xaf\xf9\x22\xcf\xc2\x0f\x8a\x9d\xdd\xef\xb3\x6d\x66\x47\x9a\x85\x5f\xa8\x65\x80\xf4\x00\xeb\x2f\x79\x08\xc7\x88\x54\x0e\xaa\x9a\xd6\x8c\xaf\xb1\x5e\x23\xa8\xc3\x38\x74\x05\x55\x54\x9c\xda\x4d\x52\xcd\x9a\x0a\xc2\x4e\xaa\x73\x30\x81\xda\x4a\xf6\x85\x0e\x62\x29\xb5\xbf\x5b\x2f\xe1\x5a\xeb\xa7\xa0\x96\xf0\xaf\x1b\xbd\xb1\xdc\x78\x14\xab\x24\xd5\xd5\x98\xf6\x70\xee\xf3\x7d\x02\xee\xe7\x1a\x47\x00\xd5\x66\xcd\x0d\x20\x34\x76\xbb\x9e\x79\xb3\x3d\x80\x2b\x13\x87\x2c\x47\x69\xcc\xf9\x48\x5a\x97\x10\xbd\x5e\x3a\x09\xb8\x22\x4e\x23\x0f\x66\x43\xe0\x70\xa8\xb8\x23\x5e\x66\xc3\x5e\xde\x98\xa6\x91\x7e\x11\x3c\x49\x62\xe3\x2f\x6b\xa3\xc1\x01\xf0\x9b\xa6\x43\x58\x8b\x3f\x19\x51\x17\x39\x0e\xb8\xe8\x17\x7b\x67\x87\x07\x17\x07\x87\x67\xfb\xa7\x47\x6f\xcf\x4f\x4e\xcf\x5c\xf6\x00\xcf\x76\xa0\x34\x73\xf5\xfd\x31\xb6\x02\x78\x92\x2c\x60\x42\x5b\x16\x23\xf3\x3c\x90\x84\x38\xeb\x58\x77\xda\xc0\x0e\x65\x48\x63\x9a\x1a\x76\x08\x67\x6e\xbc\x2b\x9a\x97\x74\x53\x8f\x38\x12\xfd\x32\x98\xc5\xab\x00\xb5\x4d\x50\x37\x43\xa2\xd3\xd9\x4a\x25\x08\x29\xa8\x51\xe2\xa5\xdd\x05\xff\xc4\x0b\x8f\x73\xe2\x11\x70\x2a\x2f\xd4\x4e\xb5\xe3\xf2\x94\x55\xd0\x18\x1f\x96\x02\x42\x53\x39\xcf\x99\x04\xfd\xfa\x86\xf7\x9a\x61\xde\x6b\x66\x3b\x40\x4e\x15\x5a\x9a\x77\x77\xb9\x15\x93\x04\xe1\x34\x15\x18\x62\x0e\x6c\xc3\x02\x68\x09\xa3\xd6\x41\x61\x2a\x28\xfd\x42\x53\xf0\xf7\xb2\x3d\x2a\x68\xa4\x09\xd1\xbc\x31\x2b\xe1\x7f\x00\xe4\x19\xca\x51\xdf\x1b\x6d\xd4\xb0\x40\x30\xa6\xe4\x3f\xe8\x77\xbe\x9a\x92\x56\xee\x40\x5c\xa8\x09\x75\x17\x9a\x55\x20\xbb\xbf\xbe\x27\x19\x45\xd4\xf8\x32\x19\x05\x2f\xd5\xfa\x44\xeb\x2d\x26\x10\xda\x80\x65\x54\x93\x62\x8b\x6a\xec\x3b\xed\x89\x2e\xbc\x27\xba\xaa\xad\x70\xb9\x4a\x18\x66\xdb\x19\x80\x75\xd4\xea\xdf\x66\xb8\xe7\x5a\x28\x10\xda\xf8\xa5\xda\x45\xbf\x5a\x0b\x5a\xd7\x27\x40\xca\xd7\x5b\xc7\x0d\x2c\x97\x49\x85\x3f\x48\x70\xa6\x0b\x39\x75\x88\x2d\xe3\x6e\xfe\x04\x2b\xea\xad\xa8\xff\x2c\x2b\x23\xfb\x59\xe9\x20\x3d\x37\x45\xc3\x75\x2d\x71\x81\xb0\x68\xb8\xf9\xe0\x28\x94\x5a\xde\x3a\x68\xa9\x38\xbc\xe1\xf3\x60\xb9\x2e\x52\x8a\x95\x10\xaf\xef\xd5\x4f\xb4\xe2\x94\x32\x0e\x8a\x9e\x1b\xd5\xce\x6d\xf8\x89\x2f\x3a\xa5\xde\xe0\xf5\xe3\xc3\x06\xaf\x99\x2a\x8e\x7f\x8c\x4c\x5e\xea\xe3\x19\x7d\x28\x02\x73\xac\x0d\x94\x36\xe0\xf0\xe2\x13\xbd\x73\xa1\x82\x01\xd1\x00\x87\xbb\xc6\x0b\xb1\x62\x1e\x5d\x17\xf1\xa2\xea\x06\xda\xe0\x54\xaa\x3f\xf4\x06\x72\x9b\xf7\x77\x76\xd5\x63\xf6\x43\x2f\xf6\x45\x15\x68\xa2\x66\xa9\x30\xe0\x64\x98\x55\xc3\xfa\xe2\xbd\xd0\x9e\x68\x33\x6a\xdd\xeb\xb3\xa0\x75\xd1\xdf\xd9\xb5\xc2\xb2\xe7\xa8\x60\xbc\x1b\x51\x5c\x08\x43\xc5\x0f\xbd\x4e\x67\xae\xba\xb4\xb0\x5d\x2a\x14\x57\x05\x7f\x2f\x70\x56\xed\x5e\x4d\x1c\xa9\xb3\x0e\x60\xff\xd6\x3b\x8b\xf1\x2b\x63\x2d\xfe\x89\xde\xd5\xd1\xd2\x6a\x1c\x7b\xbd\xb2\x52\x16\xf3\xc7\xd4\xd5\xd6\x68\xdd\xb5\xc9\x66\xb0\xd7\x93\x57\x61\x54\x83\x0d\xd3\x18\x95\xc4\x87\x74\x34\x50\xff\x6c\x6f\xf7\x53\xf5\x3f\xd9\xc5\x73\xea\x43\x2c\x74\xbb\x58\xef\x3c\xac\xb8\x0e\x43\x36\xaa\x21\x88\xcd\xc3\x7a\x5c\x6f\xb7\xa0\xb7\xaa\x75\xb5\x78\x3b\x3b\xea\x2f\xd0\x18\x4d\x1e\xd3\x93\x2a\x0b\x67\xdb\x6e\xde\x73\xe8\xfe\x20\xc8\xec\x1d\xa9\x74\xe6\x11\xfd\x73\xbb\xfc\xf9\xce\x0e\xfb\x81\x88\xe7\x28\x2d\x08\x5c\x1f\x20\xf3\xe5\x34\x2d\xa0\x70\xd2\xd0\x62\x12\x50\x89\xc9\x53\x6a\x1d\x3f\xb6\xd6\x6b\x1a\x98\xa3\xd7\x58\x5c\x80\xc2\xdc\xb5\x51\x18\xb3\x27\x4d\x28\x4a\xc3\x06\x79\x8c\xd9\x30\x8a\x57\xd3\x55\x45\x81\x71\x7c\x10\xbf\x21\xea\x8a\xe5\x8e\xbf\x6d\xf0\x6f\x5e\x87\x2e\xef\x1b\x88\xa3\xef\x3d\x27\x21\x42\x4e\x02\xdc\x96\xc1\x03\x17\x22\x1d\xcc\xa5\xca\xf1\x2e\xda\x00\x3f\xdb\x55\x2d\xba\xe3\x9f\xd4\xb8\x8f\x4c\x6c\x0c\x47\xf4\xfa\xd4\xbd\x3c\x8f\x56\xcb\x7a\xaa\x83\x47\xa8\xef\x04\x82\xbf\x8d\x6e\x9b\xe2\xad\x9e\x05\x98\x6e\xab\xb7\x4e\x8a\x1e\xfc\x58\x17\x68\xbe\x2e\x9c\x73\x79\xcb\xa4\x14\x9d\x0e\xfc\x67\x4f\x69\x6c\x5f\x80\x51\x05\x67\x3f\xcd\x20\x58\x40\x3b\x4b\x16\xde\x59\x72\x1b\x15\x43\x31\xf2\x2a\xfc\xac\xea\x06\xe2\xe3\xf4\xb2\x80\x3b\x7a\x86\x78\x9a\x0d\xd9\x08\x67\xe0\xa3\x0e\x34\x3f\x3a\xea\x37\x34\x8d\x92\xfc\xdc\x05\xcc\xc2\x15\xad\x64\x85\x3f\xd3\x87\x41\x03\x13\x46\xce\x1d\x34\xbe\x41\x23\x06\x7e\x43\x34\x07\xbe\xa5\x37\xda\xfb\x42\x73\x76\xef\xad\xba\xdf\x3b\x84\x04\x0c\x08\x9b\xa6\x70\xd0\xed\x25\x19\xf8\x00\xd7\x75\x61\x22\x88\x45\x5d\x2e\x6b\x7a\x30\x63\x62\x62\xf5\xa0\xfe\xe5\xd2\x7f\xd8\xa6\xfe\x5f\x2e\xd3\x9a\x62\xbb\xad\xac\x39\xc5\x7a\x80\x1f\xad\x9a\x4c\x2b\xa7\x6e\x95\x08\xec\xd7\xe1\x90\x1a\x83\xa6\x73\xbf\xeb\x74\x52\x35\x03\x86\x03\xc7\xb4\xfb\x89\xde\x61\xe0\x6d\x03\x17\xbd\xad\xdd\x60\xc2\x3e\xd3\x28\x67\xac\x8e\xbb\x8b\x3c\x7d\x1d\xc7\xc2\x43\xb7\x6a\xf5\x66\xc8\x47\x9d\xce\xad\x15\xb6\x41\x98\x50\xe5\xce\x5a\x59\xb2\x60\xb9\x37\x4c\xe0\x88\x9c\xc5\xb8\x0d\x51\x3f\x71\x48\x60\xc3\x52\x7a\x7c\xd1\xa3\x71\x98\xa0\xc7\x38\xde\x1b\x96\xef\x13\xbd\xb3\xf0\xc8\x96\x19\xe4\x38\xad\x36\x67\x89\x3e\xea\x74\xae\x69\x2a\x7c\xbe\x3f\x17\xb3\x62\x5a\x15\xf8\x52\x49\x4f\xba\x46\xd4\x48\xe5\xe1\xcb\x56\x45\x48\x1c\x6e\x63\xba\x64\xe2\x14\xa3\xb5\xa4\x61\x78\x8d\xcb\x88\x17\x0d\x24\xa6\xb7\x6c\x9a\x6e\xe9\x3d\x1f\x98\xdd\x78\x5d\x99\x16\xd3\x01\x25\x80\x68\x1c\x0e\xef\x24\x61\x73\x47\xfc\x9d\x66\xe3\x59\x02\x3a\x3d\xe0\xd8\xfb\xcd\xec\x6f\x9b\x86\x97\x3b\x1f\x9c\x34\x34\x81\x81\x94\x2f\xba\x17\x37\x45\x9e\x49\x96\x53\x63\xf6\xe3\x68\x60\x74\x20\x7d\xed\xc5\xe6\x92\xfb\x7f\xa2\x77\x28\x1e\xf9\x83\x38\x1c\x36\xb5\xab\x9f\xc1\x41\x8d\x9f\x02\x52\x0a\x47\xe0\xf9\x2d\x75\xb9\x1c\x9f\xa3\xcf\x8a\x75\x52\x3b\xbb\x98\xa7\x08\xe1\x43\xb0\xd3\x69\x96\xb9\x7f\x48\x8d\xac\x50\xe1\x9c\xe6\x77\x4d\x08\xc8\x96\x63\x83\x9d\xde\x40\x7e\x41\x81\xe0\x76\x32\x47\x7c\x28\x81\x8f\xa3\xc6\xc9\xa7\x16\x5f\xd6\x16\xd3\x07\x0d\x58\xa7\x21\x7d\xae\xee\x57\x68\x03\x50\x59\x53\x09\x60\x0f\x3d\xb4\xbd\xeb\x80\xe5\x03\x3d\x82\x3f\x65\x29\xef\x96\x33\x36\x95\x29\xc2\xd5\x14\x36\x35\xe6\xa2\xde\x7a\x85\x6e\xdc\x4b\xc3\x93\xaa\xff\x77\x76\x5a\x5b\x5e\xf0\x86\xb6\x2b\xb3\xab\x0a\x04\x70\xd6\x15\xb9\xcb\x90\xad\x8a\x4e\xf9\x01\xee\xcc\xa5\xc8\x19\xca\x06\x20\x02\xa9\x21\x31\xa8\x61\x77\x7d\x02\x0a\xa6\x29\xcd\xf6\x36\xe6\x41\xf2\x4f\xf6\xe0\xfc\x99\x51\x3e\xc4\xfc\x61\x1d\xb1\x1f\x25\x3b\x15\x6e\x8a\xa4\xab\x5e\x22\x2c\x74\x4f\x76\x76\xec\x5f\xc0\xf5\xa7\x7c\x28\xd4\x71\x19\x79\xc0\x20\x87\x19\xf3\x30\x87\x82\xee\x69\x13\x21\x4a\x79\x13\x25\x42\x36\xd2\x5a\x13\x46\x7d\xf9\x04\x0f\xdc\xd1\xd5\x94\x12\x5f\xd3\x94\xa3\x41\x44\x4b\xb9\xa2\xa5\xbc\x52\xd0\xa4\x0d\x8a\x88\x7c\x85\xec\x99\x87\x1b\x31\x1e\x48\xd3\xfd\xc5\x2a\x12\xb7\x9d\x16\x86\x42\x0b\x15\x1b\x16\x23\x14\xf8\x3b\x80\x92\x2f\x8c\x76\x79\x28\xb0\x7c\x5e\xcc\x17\xb9\x62\x40\xa7\x53\x70\xef\x4f\xdd\x90\x76\x6b\xa0\xe3\xd5\xb2\x35\x1e\xd1\x7e\xeb\xaf\x80\x4f\xf4\x6e\x3b\xe9\x26\xdb\x8d\x21\xee\x83\xb5\x1d\xa1\x58\x6e\xef\x62\x8e\xfa\xf2\x87\x5d\xa0\xf4\x70\x5b\xab\x2f\xec\x85\x42\x6b\xc2\xdc\x09\x5d\xef\x46\x74\x1d\xba\x10\xd5\x1c\x77\x0c\xf3\x16\x1a\xd8\x98\x35\xa0\x82\xa3\x4f\x25\x0a\xff\xca\xf2\x74\xa1\x4f\xdf\x03\x3d\x58\x63\xc8\x74\x5a\x91\x7a\xc7\x18\xf8\x14\x35\x74\x6f\x67\x17\x41\xf2\xf4\xb6\xee\x59\xa6\x0c\x85\xb9\xa0\x3f\xb9\x3e\xaa\xca\x07\x6e\xd2\xfa\xd6\x00\xed\x8b\xbe\xa1\x95\x9c\x44\x95\xfb\xb8\x6a\x77\xd2\x77\x72\xdc\xfb\xe5\xb2\xe7\x2b\x3c\x8f\xdb\x76\xd3\xd5\xff\x58\x6b\x7b\xbf\xae\x6e\x85\x0c\xf6\x17\x13\x0a\xce\x45\x20\x27\x97\x16\x8c\x7d\x8b\x64\xcd\x72\xc1\x36\x2a\x08\x88\x05\xc2\xc3\xbf\xa4\x05\x28\x43\x2d\x12\x0b\x84\x47\xab\x95\xfe\xa4\xf8\xd7\x22\xe2\xcc\x4f\xff\xb5\xbd\x50\x0b\x7a\xee\x7a\xa1\x1a\x7c\x4b\xc9\x37\xff\xb7\x0b\xfc\xcc\x57\xdf\xf8\xad\x7e\x1c\xad\x4c\xe0\xc1\x7e\x9f\xa0\x0d\xfe\x7d\x6f\x20\x53\x8f\x33\xff\x96\xe2\xa4\x3b\x1c\x25\xc8\xf3\x41\x9b\x34\xad\x6a\x7d\x7d\x1d\xab\x04\xe1\x8c\x78\xf4\x16\xe7\x96\x62\x6c\x8e\xbc\x5b\x2e\x2e\xb5\x3b\x73\x2a\xb6\x77\x71\x81\xec\xed\x88\x13\xe3\x63\x12\x95\x29\xb6\x77\xd1\x86\xdc\x8e\x9e\xf5\xb0\x40\x1b\x0b\x62\x33\x8c\x02\x4b\xf3\x3c\xfb\x7e\xf1\x1c\xa5\x25\x19\x47\xe3\x41\xdf\xf7\x06\x2c\x4d\xe5\x76\x3e\xcc\xb6\xb7\x47\xdb\x63\xd4\x34\x32\xea\x0a\xe0\x31\x2e\x31\x43\xab\x34\x49\x30\xc5\x3c\x52\xf5\xfe\x16\x4b\x5a\x5b\x34\x32\x34\x54\xed\x26\xad\x8a\xcb\x80\x1b\xd0\xbe\x18\x8a\xe3\x32\xe0\x7c\xac\xfb\x5b\xc1\xb8\x7e\x57\x12\x30\x87\x64\xc8\xef\x10\x17\x1f\xfd\x1b\x4d\x4b\x5c\x98\xb0\xe0\x2d\x81\x7c\xaa\xae\xb1\x85\xd6\x4f\xbf\xb6\x4a\xc5\xcd\x92\xca\xcd\x69\xc6\x72\x3a\xe9\x6f\xea\x2b\x46\xdd\x0b\x8a\x81\xd9\x4c\xbe\xde\xce\xb6\xbf\x4e\x36\xc7\xc5\x22\x9f\x40\x6a\xaf\x4b\xba\x39\x2d\x16\x7c\xd2\xfd\xda\xb2\xa8\x6a\xb6\xf5\xfe\x75\x66\xea\x06\xab\x5a\x44\x90\x16\xb6\xa3\x0b\xab\xbe\xd6\x09\x99\x60\x0f\xd8\xa3\x9f\xff\x41\x83\x5b\x8e\x06\x29\x23\xf9\x1f\xf4\x35\x02\x46\x9c\x3d\x6c\x6e\x63\x4f\x36\xb7\x81\x83\x55\x60\x6e\x63\xd1\xd8\x9d\x53\xc0\x16\x21\xf9\x72\xd9\xe4\xb5\xad\x4d\x6b\x8d\x71\x13\xe0\x83\xf6\x2e\xb6\xa1\x0d\xd2\x9a\x8a\x5b\x09\xbe\xc0\xc8\xe1\x5c\x93\x54\xed\xd5\x97\x41\xc2\x95\x7a\x0d\x26\x53\x52\x48\xe1\x8f\x68\x8a\xee\x81\x7a\x1c\xc4\xac\xaf\xb7\xd9\xa6\x21\x45\x23\x60\x5a\x7e\x38\xcf\x8c\x4b\xf3\x02\x5e\x03\x0d\xb6\x43\xee\x9c\xc6\x07\x05\xc4\x34\x49\x2a\x08\xef\xa7\x8c\x70\xec\x1f\xc0\xaa\x2c\x97\x47\x54\x3d\x2b\xed\xb3\x92\x4a\x04\x0f\x9c\xf3\xa8\x21\x3e\x45\xf7\x02\xe2\x7b\xfd\x4f\x2b\x7f\x29\x59\xbb\xa8\x90\x62\xed\xaa\x18\x3d\x52\x65\x04\xcd\x26\x27\x3c\xbf\x23\x5b\x5b\xa2\xd3\xc9\x0c\xba\xa6\xe8\xda\xe7\xb8\xf0\xe9\x72\x64\x3d\x5d\x4e\x20\x23\xdb\xb6\x5b\x2c\xed\x41\xe7\xb4\x54\xbf\x8a\x3e\x77\xfd\x68\xfb\xdc\x77\xb4\xe9\xf3\x79\xcd\xc6\x50\x0d\x98\x08\x35\x2d\x05\xa4\xca\x70\x68\xd8\x60\x63\xac\x61\x4c\x63\x49\xac\x25\x14\x6b\x7d\x26\x05\x45\x26\x80\x18\x78\x98\x69\x1e\x86\x36\xcb\x50\x5b\x77\x4c\x53\x39\x14\x23\x5c\xc4\x79\xbd\x2a\xcb\xc2\x1a\x46\x53\x0b\xdb\x0e\x5c\x2e\xaa\xdd\xd4\xdc\x22\xec\x84\xe5\xf2\x7e\xd5\x4f\xfd\x6f\xa3\x30\x41\x71\xe5\x93\x16\x53\x80\xc7\x14\xb1\x2b\x65\x58\x62\xbf\xf3\x40\x9f\xd2\xca\xf4\xd4\x94\x10\x41\x40\xb9\x61\xfb\xee\x22\xc7\x28\xb3\x23\x73\x0a\x8e\xb3\x9d\xce\xa9\x11\xcf\x0c\xc7\xb3\x8a\xfb\x7d\x55\xc3\xc6\xb3\xc9\xd9\xbc\xde\xa1\x8a\x32\x26\xa9\xd0\x87\x53\x0b\x00\xd0\xf1\x89\xe9\x6b\x05\x27\xcf\x45\xcf\x6d\xdc\xc4\x98\x77\x71\x1d\xdc\xe5\x64\x35\xf2\x66\x44\x39\xe1\xce\x6b\x73\x1a\xae\x32\x85\x10\x84\x15\xf9\x0e\xe3\xfd\x60\x06\x18\xc2\x22\x9e\x81\xb2\x32\x03\x98\xb7\x9c\x11\xbb\x70\x70\x73\x9e\x9a\x87\x26\xcf\xa5\x22\xde\x66\x59\x61\x6c\x83\x78\x0a\xf5\x4f\xfb\xeb\xcc\xd1\x78\x2d\xc3\x95\x3a\x4a\xf3\x4c\x6f\x88\xe8\xd5\x38\x2f\x2e\x2f\x21\x4d\x8e\xe5\x58\xa3\xbe\x37\xf4\xa5\x86\x69\xd1\x70\xcd\xef\x67\x5c\xdd\xdb\xea\x92\x57\x83\xdb\x29\x78\x7e\xb7\x69\x0f\xbb\xba\xe0\xa5\xba\xe0\xd5\x91\x86\x1b\xa7\xbf\xf9\xf5\xb6\x8e\x6c\xe1\xe5\x9c\x8e\xa5\xf1\x10\xe2\x11\xce\x83\xed\x67\xdb\x5c\x1a\x6f\xe6\x45\x9e\xe3\x6b\x63\x9c\xb6\xdc\x11\x64\xde\x6b\xa2\x7a\x6b\xaa\x0b\x27\xdb\x6d\xa4\xda\xfc\xc4\x33\xbb\xd6\x2a\xed\x8e\xe3\x46\xe5\x37\xa1\xe0\x3a\x5e\x6d\xd7\x49\x10\xc6\x9d\xbc\xfa\x95\xa8\x1c\xb4\x8b\xa6\x7d\xa6\x3b\x00\x1e\x63\x4a\x12\xd3\x47\x07\xfb\x18\x0b\x03\x9c\xd9\x30\x50\x45\xff\xd8\x34\x65\x9d\x4e\x01\x3e\x38\xf6\x26\x84\xf3\xb3\xa8\xda\x09\x0c\x7f\xb2\x5c\x86\x47\x61\x81\x5c\xa0\x46\xa6\xbd\x02\xe1\x59\x16\xf7\xbb\xee\xa9\xee\xa3\x19\x2a\x94\xed\x8f\xd1\x23\xcc\x57\xe9\xef\x81\x58\xfd\x9a\x1a\x9b\xd4\x9f\xb9\x3c\x82\x5b\x8a\x48\xcd\x2f\x63\x06\xca\xaa\x03\x9a\x0a\x7f\x75\x44\xda\x29\x7b\x02\x8c\x73\x0b\x03\x8e\x0c\x18\x9b\x97\x94\xbc\xa6\x41\x4e\x12\xfc\xa5\xea\x02\x74\xbf\x42\xf8\x55\x3b\xfb\x13\xa8\x80\x9f\xc8\xfa\x38\xef\x95\x6e\x96\x83\xbd\x5b\x49\x71\x95\xdb\x6e\xc8\x47\x58\x3c\x92\xa3\xa8\x04\x26\x54\x05\x6e\xb7\x67\x6a\x92\xb5\x9a\xa3\xfd\x78\xed\x1e\xb7\x51\x1a\x6b\x3a\x5d\x53\x93\x73\x98\xa8\x55\xb5\xae\x7d\xef\x1a\x51\xfb\x6c\x5d\x63\xf5\x0b\xd0\xda\x63\xb5\x96\x1d\x42\x40\x61\xe6\xd5\x0e\x9a\x84\xc7\xc9\x1c\xd2\x2d\x42\xbe\x50\x70\x85\x88\x6f\x2d\x66\x0e\xd7\x17\x1a\x5f\x41\x1c\x3d\xe5\x0e\xfa\xad\xd2\x8b\xda\x00\x1e\xe2\xf1\x54\xdd\x2f\x68\x03\x3f\x54\x70\xfa\x21\x5b\xfb\xd9\x3b\xf7\x59\x7c\x44\x5f\xd0\xf6\xcb\x25\x59\x7f\xb9\x7c\x9d\x6c\xcb\xed\xe4\xeb\xf0\x72\x49\x1a\x2e\x17\x1f\xbe\x43\x5b\xef\x91\xe0\x02\xf1\xe5\x7f\xa7\x81\x55\x41\x2d\xa2\x4e\x9d\xa7\xfd\x8d\x3c\xac\xf1\x34\x4d\xf8\xe2\xfa\x92\x8a\xd0\x13\xb1\x64\x5f\x2c\xb3\xb3\xa5\x7f\xd9\x8c\xa0\xa6\x44\x2d\x57\x38\x61\x9d\x4e\xb5\x22\xf0\xc5\x82\x6c\x0d\xec\x0b\x4d\x10\x1a\x6c\xc9\x7e\x43\x63\x9a\xf0\x84\x3e\x91\x5b\x84\xb0\xc1\x96\x7d\xd3\x7f\xa0\x15\x6e\x5a\x31\x8e\xdd\x08\x75\x3a\x5b\xdc\xcf\xc3\x87\xd0\xc4\x0c\x93\xb2\x5c\x36\x81\x0a\x80\x6c\xfb\xcd\xff\x3d\xfb\xc6\x26\x0c\x5c\xbd\x8a\x00\xf3\x42\x59\x28\x7a\x03\x2f\x0e\xaa\x4f\x60\xc2\xde\x3f\xe0\x0c\x62\xd2\xe9\x88\x3b\xe7\xab\x7c\x31\x2e\x04\x7d\xcd\x2e\x8f\xf8\x84\x7e\x26\x8d\x01\x55\x8a\x69\xd4\xd8\x2b\x77\x2f\xee\x8e\xb3\xeb\x06\x2b\x8b\x73\xfc\xb1\xf5\xab\xf5\x0f\x35\x3e\x92\xf4\x9e\xcb\xef\xc5\x73\xa9\x3d\x27\xf8\x50\x8e\xba\x5c\x55\x15\xe6\xcf\x1f\xca\x51\xd5\xa8\xa3\x93\xff\xac\x65\x1f\x6c\x93\xb6\x39\xc7\xe8\x46\x7d\x86\x65\x48\xb9\xb7\xbc\x44\x03\xdf\xde\xb6\x4c\xa4\xab\xcd\x78\x93\x08\xdc\x33\xa9\xc6\x29\x36\x08\x46\x7d\xb9\xaa\x9a\x2a\x6c\x47\xf7\x75\x9d\xaa\xd9\x26\x84\x33\x97\x6a\x49\x0d\x63\xab\xea\x91\x31\x31\x19\x01\x2b\x99\xd8\x03\x33\x56\xd3\xa8\x1c\xb0\xd6\x86\x0c\x9c\xc2\xdc\x30\xac\x7e\x4d\xb6\x0d\x90\xe3\x5d\x64\xa3\xde\x3f\x52\xb8\xa8\xdf\xd3\x8d\x8f\x8d\x63\x4a\x93\x43\x38\x0a\x78\x6a\x89\x8e\x96\x1a\x7e\xa4\xb5\x4c\x15\x95\x1c\x8a\xf8\x27\x10\xe2\xbf\xa2\xe4\x5e\x71\x54\xfd\xff\x3f\x71\xef\xda\xdf\x36\x72\xe4\x0b\xbf\xd7\xa7\xa0\x90\xfc\x18\xf4\xb2\x45\x53\xc9\x3e\x7b\xce\x81\xa7\x87\x47\x63\xcb\x99\x99\x8c\x2f\xb1\x3d\x99\x24\x0c\x97\x0b\x91\x4d\xb1\x63\xb2\xc1\x01\x1a\xb2\x15\x11\xdf\xfd\xf9\x75\xf5\x1d\x68\x50\xb4\x67\xf6\xac\x5f\x58\x20\xd0\xf7\x4b\x75\x55\x75\xd5\xbf\x26\x78\x51\x73\x0d\xb2\x44\x3d\x58\xa5\xec\xfc\x12\xdf\x52\x31\x88\x7e\x6c\x8b\xd0\xd1\x44\x0d\xae\x7a\xf3\x5b\xa3\xcb\x8a\x8a\xd1\x08\x1f\x29\x85\xd0\xa6\xc1\x7f\x86\x36\xff\x15\x0c\xfb\xff\x4e\x63\x97\x74\x8e\x30\x7f\x4f\x15\x8c\xe5\x6f\xe9\x38\x5a\xa0\x2f\xbe\x33\x5c\x90\x5c\xdd\x15\x7d\x12\x3a\x84\x36\xb6\x97\x80\x1f\xe8\x7d\x95\x16\xca\xf6\x51\xa1\x1c\x54\x0e\xe5\x60\x84\x04\xa9\x66\x74\x8e\x53\x46\xc4\x78\xb9\xc9\xcb\x67\xc5\x8a\x5e\x89\x74\x82\xd0\xd7\xe4\x3f\xfe\xbf\xe1\x90\x7d\x45\xfe\x0f\xdc\xb3\x91\x52\xa4\x85\xe4\xf6\x41\x2f\x57\x1a\xd0\x2c\xc9\x98\x08\x5f\x89\x04\xa6\xad\x0f\x69\x4b\x61\xec\xf0\x3a\x88\x61\xd5\x60\xaa\x2b\x22\x9c\xda\xf3\xec\xef\x74\x56\xcd\x09\x7f\xda\xae\xa0\x6d\xba\xc9\xe5\xa6\xff\xa3\xe6\xae\x38\xae\x91\xfc\x5d\x10\x3e\xab\xe7\x58\xcc\xf2\x39\xa9\x31\x48\x8f\xc2\xa0\x67\x11\xc2\x85\xe7\x49\x0f\xe5\xdf\x9a\xf2\x0b\x84\xc2\x0a\x0b\xec\x35\x4a\x1b\x5a\xcb\x0a\x64\x91\x1e\x1c\x18\x4c\x10\xd3\x30\xaa\x48\x8e\x3f\xe3\x35\x3d\xb3\x68\xaa\x4a\x1f\xcf\x50\x63\xe3\xa5\xe6\x0d\x4a\x67\xd4\x36\x2b\x45\x73\x4c\xb1\x8d\x45\x60\x87\x4c\x08\x5f\x3d\x43\xfa\xd6\x00\x48\xe9\xc3\x61\x2a\xd7\x0a\xee\x4b\x44\xce\x2f\x11\xe6\x87\xc3\x9f\xa9\xe1\xc5\xff\x4a\xb1\x22\x9f\x16\x68\x4e\x52\x51\x39\x6d\x33\x31\x47\x67\xb0\x4a\xbd\xf9\xe4\xb6\x31\xad\x61\x03\xae\xb6\x23\xb5\xd3\x29\xcd\xd2\x38\x49\x77\xfe\x1b\xe7\x7f\x52\x83\x27\x3b\x8a\x7d\xcc\xbe\xb0\x06\x1a\x62\xf7\xd1\xb3\x55\x21\x73\xa5\x22\x0e\x2b\x98\x0a\x84\x08\x21\x2f\x74\xd5\x8e\x78\x1c\x0e\x82\x90\x0e\x49\xd1\xe0\x99\x2d\xd4\xc0\x6e\x0b\x1e\x38\x49\xd2\xaa\xbe\x01\x3c\xb6\x41\xb1\x1e\x24\x23\x3e\x4a\x50\x62\x8c\x02\x3f\x6e\xd8\x96\x7a\x4e\x5f\xd6\x44\x86\x1f\x0e\x49\xaa\x7d\x1f\x50\xa2\x0d\x2a\x70\xb8\xd4\x14\x2f\x89\x02\x53\xb1\x52\x78\xec\xab\x27\xb2\xea\x8b\x00\xd9\x4a\xaa\x42\x2a\x74\xac\x39\x79\xe8\x18\x63\xde\x42\xd8\x03\x6f\xe5\x0e\x87\xbc\x59\x82\xab\x61\x89\x1e\x94\xb1\x15\x13\x6d\xe7\x5f\xed\x09\x70\x16\xf8\x3d\x78\x4a\x42\xe1\x59\x95\x46\xdc\x41\x24\x47\x72\xae\x02\x11\x29\x30\xb7\xe1\x90\x9e\x13\xf2\x4d\x51\x6c\x69\xce\xd5\x8f\xd7\xfa\x26\x5d\x3e\xbf\x02\xb6\x48\x3d\x43\x55\xea\xf1\x79\x2e\xa8\x7a\x52\x7b\x46\xb9\x58\x08\xf2\xe0\xa1\xa7\x54\xa2\x7d\xd1\xc2\xc1\x02\x04\x82\x2e\x18\x12\x3f\xa3\x73\x30\x76\x60\x53\x26\x14\xe1\x60\x58\xbe\x44\x19\xfc\x8f\x99\xe7\xdc\x60\xca\x83\x00\x54\x81\xa5\xa2\x1c\x77\xbb\x24\xf5\xbd\x8d\x07\x7a\xe2\x7c\x69\x42\x6a\x13\xbd\x35\x01\x53\x46\x98\xc9\x98\xab\x67\x3e\x85\x95\xf2\xb1\xcc\xf7\x92\x04\xe6\x28\xf3\x98\xc2\xad\x6a\xa1\x76\x1f\xc4\x5b\xbc\x44\x0f\xac\xe5\x92\xcd\x8c\x7a\x0e\xba\xdd\xba\x92\x82\x9c\x6a\xb4\xec\x25\x5d\xbb\x0f\xb2\x63\xc3\x61\x5a\xab\x5e\x6b\x44\xa2\x58\x67\x72\x2c\x30\x45\xde\x4e\xae\x87\xc3\xda\x6f\xcd\x73\x3a\x4d\x53\xde\x3e\xf1\x10\xb2\xaa\x7d\xbf\xab\xe6\x25\xae\xcd\x13\x92\x8f\x95\xe9\x0b\xb7\xaa\x39\xfb\xd4\xca\x5f\xd9\xfc\xea\x09\x65\x2e\xa5\x7b\x89\xb9\x1c\x52\xb0\xa1\x66\xb8\xc6\x39\x74\x21\x9f\x89\x39\x61\xb8\x96\x7f\xb4\xd5\x45\x96\x6e\x87\xc3\xad\xc7\xf9\x7c\x4d\x26\x87\x43\xa2\x76\x07\xe5\xb9\xc3\x40\x63\xb4\x4a\x14\x74\x45\xb2\xa3\xe5\x6d\xe7\xfd\xb4\x3b\x0d\xd6\xdb\x78\x26\xe6\x87\x03\x75\x4b\x09\x7a\xb4\xcb\x3f\x28\x94\x38\x79\x48\x19\xcf\x9c\xf6\x17\x8e\xf4\x65\x1d\xc3\x35\xca\x96\xc3\xe1\xd2\x6f\xeb\xc5\x65\xbb\x56\x58\xd4\xb0\x74\x71\x05\x53\xab\xeb\x95\x74\xd9\x5e\x32\x32\xa7\x7e\xe2\x7e\x00\xff\x0a\xe1\x2d\xd1\x20\x57\x70\x61\xab\x3c\x29\x58\x3b\xc6\xf5\x52\xae\xee\x42\xa4\x72\x7b\x2c\xe7\x68\x9a\x6e\xc9\xf9\x04\xd7\xb3\xe5\x9c\xc0\xee\x5a\x02\x24\xe7\x43\x83\x50\x06\x2f\x73\x7b\x92\x6c\x01\xe7\x77\x51\xd5\x7b\x5a\x92\x12\xc2\xb9\x23\x5c\x7b\x3d\x2c\x44\xca\x10\xac\xe9\xda\xec\x82\x1a\xe7\x66\xee\xcc\xcd\x33\xcc\xa3\xef\xab\xd3\xa1\x11\x10\xfc\x6f\x53\xc0\x59\x89\x8b\x8e\x9b\xa1\x95\x22\x18\x50\x12\x36\x9f\xa6\x05\x91\x7f\xb1\x20\xf2\x25\xca\x1e\x83\x36\x01\x3b\xfd\x69\x2a\x48\x6e\x8b\x47\x59\x6a\xad\xdf\x0a\x42\x65\x31\xf8\x41\x66\xcb\x84\x06\x15\x28\xbc\xa3\x77\xdd\x6e\x33\x9c\xf8\x9e\xa5\x00\xf7\x2d\x05\xa4\x18\x20\x1b\xa6\x54\xb3\x01\x78\xae\x70\xcb\x2d\x76\x3c\x0c\x87\xa9\xae\xca\x9c\x7e\xd6\x37\x4a\x2e\x2f\xbc\xa4\x08\xb7\x12\x58\x50\x34\x48\xf0\x11\x45\x49\x18\x3b\x5a\x30\x43\x78\x7b\xb4\x60\x86\xf0\xc2\xd7\x20\xec\x85\x2f\xaf\xc9\x59\xdf\x92\x87\x06\x2f\xe5\x7f\xeb\x96\xca\x66\x23\x99\xec\xbd\x19\x6a\x7b\x27\xb8\xf3\x8d\xca\x69\xb8\xca\x70\xd7\xc6\xc1\x11\x49\x0d\x1f\x6b\xca\x59\x9b\x07\x03\x88\xd1\xad\xcb\x1d\x4f\x3b\x79\x50\x2a\xbd\xe9\x40\x1e\x49\x58\x3f\xb3\x19\x9d\xc3\xe5\x5a\x45\x26\x4f\x2b\x77\x39\x56\x29\xa1\x76\x49\xc4\xac\x9a\xe3\x9a\x70\x9c\xae\x49\xba\x25\x4b\xe4\x91\xd4\x95\x98\xd6\x36\xc0\x44\xba\x45\xd3\x5c\x64\x69\x6d\xc3\x57\xa4\x5b\x84\xb7\x46\x0f\xca\x68\x85\xb2\x2d\x3a\x27\x24\x17\xb2\xe4\xb5\x62\x05\x37\x72\xef\x16\xa0\xa4\x7b\x29\xc9\x15\x64\x94\x3c\x6e\xf8\x26\x5d\x23\xbc\x27\x95\x48\xfb\x48\x1e\x5e\x03\x4d\xc1\x2b\x48\xd4\xa1\x7c\xe6\xf3\x1a\xad\xdb\x54\x62\x03\x67\xa0\xba\x68\xdc\x20\xbc\x95\x12\xc6\x06\xaf\x67\x9b\xb9\x1e\xff\x3d\x5e\x21\x74\xd6\xc9\x97\x18\x0e\x3a\x01\x32\xe3\xf8\xfc\xb5\x7d\xd4\x6e\xae\x4b\x05\x2b\x5b\x0d\x87\x29\x4d\xcd\x0f\x6f\x72\xf1\x72\xbc\xf8\xc8\xc4\xa6\xa8\x85\x24\x9c\xe6\xd9\xba\x5b\xef\x24\x71\x15\x78\x0d\xd8\xc1\x14\x6f\x8c\x7f\xe5\xc6\xdf\x79\x6c\x0d\x63\x63\x54\xc0\x89\x24\x09\x7b\xb2\x91\xbb\x5b\x16\xda\x6a\xfc\x1e\xa9\xe1\xdf\x91\xed\x6c\x3f\xc7\x2b\xb2\x9c\xed\xe7\x4f\x77\xc3\xe1\xce\x3f\x32\xef\xc5\x53\xb4\x23\x69\x4d\x80\x70\xed\xe0\x88\x47\x40\x61\xf0\x8a\xd4\xca\x98\xcd\xd9\x71\xee\x3c\x76\x63\x75\x38\x78\x1c\x6d\x94\x2e\xed\xd1\x14\x68\xc2\x5e\xd1\x8a\x15\xca\xf4\x4f\x0a\x2d\x42\xb8\xe8\x62\xb3\xe7\xc7\xb1\xd9\x23\xdb\x7f\x25\xc6\x2b\x2a\xe8\x52\x68\xd8\xf0\xe1\xb0\xfd\x26\xdd\xa3\xe1\x70\x1d\x42\xb9\xa7\x72\xce\xf1\x4f\xd0\x9c\x1d\x5e\xe1\xb5\xb3\x39\xff\xfc\x56\x9d\xf3\xbe\x96\x29\x20\xde\x37\x79\x29\x58\xbe\x85\x96\x05\x6f\x52\x8a\xd7\x06\x71\x60\x25\xfa\x2d\xfc\xb5\x06\xc0\x6d\x34\x63\x7a\xaf\xc3\x58\xee\x84\x05\x11\x00\x80\x6a\xef\xa6\xa0\x15\x0c\x53\x2d\x3c\x03\xd9\x6d\xf5\x66\x8a\x59\xf2\x1b\x20\x05\xb4\x89\xbb\x17\x39\xfb\xa5\x37\x2c\x9e\xf7\x8a\x6c\x4a\x2a\x7c\x07\x9f\x5d\x37\xda\x8c\x52\x20\x75\x8d\x4f\x38\x99\x75\xf9\x60\x31\xe5\x59\x2a\xc2\xd8\x35\xa9\x5f\x1a\xf5\xc6\xee\x70\x70\x21\xb8\x63\x26\xd9\xc5\x9e\xf2\xb6\x05\x83\xa6\xd4\x5a\x2b\xd8\x19\x05\xae\x47\x41\x18\x87\x21\x01\xb6\x07\x7c\x56\xfa\xa3\x50\x02\xf7\x03\x17\xf3\x21\x9c\xe7\xa0\x35\xbb\xd3\x94\x69\x43\x69\x7f\xf2\x3c\x32\xdb\x7e\x11\x4c\xb2\x1e\x4c\x60\x1e\xbc\x17\xc6\x8c\xdd\x7c\x36\x91\x50\xf4\x6f\xef\xd9\xb0\x80\x3b\x21\xb9\x3e\xad\xd2\x0f\x2c\xe6\xf7\xfb\xed\x7d\xcc\x34\x02\xce\xce\x99\xcc\x30\xc7\xe7\x97\x6d\x3b\x7b\x99\x4b\x2f\xfc\x47\x33\x77\xd5\x8c\x72\x43\x7b\xd6\xea\x71\x60\x4a\x61\x81\x29\x85\x83\x4a\x65\x6b\xf0\x08\xb0\x44\x8f\xb6\x0d\xe8\xd4\x51\x6c\x14\xb4\x9d\x30\xe7\xbf\x8f\x86\x39\xff\xbd\x1f\xe6\xfc\xf7\xf3\x4c\x2b\x58\x54\x14\x8d\x30\xf8\xdf\xe5\x99\x81\x17\x85\xb6\x10\x87\x16\xac\xb7\x18\xb0\x89\x30\xf6\xca\xd5\xd8\xde\x18\x55\xc5\x8e\x46\xc1\x38\x0c\x68\x2d\x72\xde\x7b\xa9\x76\x9e\x89\xfb\xa7\xb4\x83\xf3\x19\xf3\x10\x7b\xb8\x47\xfc\x2f\x0c\xb5\x88\x6f\x06\xbd\x44\xd5\x8c\xa1\x5f\xbc\x35\x6c\x9f\x2d\x91\xe2\x98\x85\xed\x01\xa7\xe1\xee\xfd\x93\x3f\x8d\xf6\x3a\x0e\xb3\x2f\x8d\x57\x6f\x26\x52\x89\x4c\xbf\x7c\x35\x14\xe1\x6a\x38\x2b\xfc\xb5\xe0\xef\x6a\xe5\xb3\xe9\x2b\x54\x83\xcf\x7a\xfc\xb8\x6f\xdd\xa4\xb4\x80\x72\x30\xb5\x02\x51\x58\x4e\xc4\x3c\x1d\xc5\x74\x49\x95\xa0\xd6\xb8\x4b\xca\x26\xb6\x10\x1c\xe7\xd3\x1e\x7c\xab\x7a\x1a\x40\x6d\x28\x69\x5b\xbd\xc3\xd1\xe4\x5d\xb0\x41\xc0\x5d\xd5\x83\xc3\x61\x62\x81\x57\x60\xdb\x68\x4f\x7e\xb5\xb2\xd4\xb2\x29\x11\xf6\x6f\x61\x94\x4e\x4a\x47\xae\x1c\x84\x8c\x2a\x87\x41\x5f\x89\xd4\xfa\xfd\xb8\x4e\x7d\xfe\x99\x9e\xb6\xcf\x6a\xa2\x98\x98\x16\x6f\xa1\x41\xa6\x57\x22\x36\x5a\x5c\x2d\xa2\x7b\xf1\xdf\x7a\xcf\xef\xe4\x4b\xc2\x4f\xbe\xd6\x8f\x01\x0a\xba\xeb\x59\x65\xa5\x94\x28\x8d\x1a\xd8\xec\xb2\xdd\x7e\x4b\xe5\xea\xa6\xab\x71\x72\xec\x4a\xfc\xcb\x8b\xa9\x7e\x41\x31\x4d\xfa\x33\xc2\x77\xfd\xe3\xec\xe4\xf1\xcf\x1d\x69\x7c\x2b\x90\x77\x85\x2f\x5b\x2a\x09\x93\xba\x07\x2c\x31\x3b\x36\xde\x4d\xfa\x9c\xfa\x78\xed\xa2\xc5\xd8\xb4\x41\x4a\xb5\x96\x16\x68\xf7\x06\xe4\x58\xc9\xcc\x69\x1d\xf8\xe1\x60\x9d\x75\x72\xc6\x69\x09\x96\x2a\xb2\x39\xa3\x24\x4b\x46\xa9\x80\x16\x1d\x0e\xce\xde\x80\xeb\x4b\x9a\xb4\xc4\x0f\xca\x08\x30\x33\xe1\x65\x30\x37\x3a\xda\x4c\xe5\x83\xe7\x46\xd9\xf4\xdf\xfc\xf7\x2e\x57\xd9\x69\x30\x4a\xf1\x31\x31\x2f\x81\x29\xf2\x2c\xa6\x7f\x89\x79\x4a\xbf\xd5\x36\x8c\xa0\x6c\xc0\xa3\x46\x1d\x1e\x2e\xf1\xc9\xa6\x17\x54\xc7\xd3\x55\xd6\x0f\x5e\xa0\x82\x1f\x28\x8e\x44\x32\x78\x2e\xdf\x76\x42\x1e\xbc\x90\x6f\xfd\xb0\x08\x2b\x1c\x0b\x9d\xb0\xc3\xad\xf8\x0a\xf7\xd8\x04\x5e\x88\xb0\x56\x72\x17\x7d\x4b\x35\xa2\x47\x37\x64\x43\xd7\x91\xe0\x4b\x0d\xdf\x71\xe5\x5b\xba\x53\xf4\xf0\x4f\x6d\xc8\xc2\xc1\x21\x2a\x6e\x07\xcf\x4d\x1a\xd4\x34\xd0\xc2\x30\xc8\x84\x50\xe3\xa4\x43\x50\x94\x7a\x7c\x08\xd7\x0f\x7e\xc0\x8a\xf8\x8d\xbb\x76\x7f\xed\x48\x0d\xe5\x94\x67\xa5\xac\x4f\xce\xe9\x3f\x65\x71\x3a\x1c\xc6\x51\xd3\x1a\xcc\x0d\x77\x6a\xe3\x68\x14\x32\xaf\x89\xaf\x11\x6f\x43\x87\x8d\xf8\x43\x94\x8d\xf8\x83\xcf\x46\xfc\x61\x9e\x31\x7a\xd6\x01\x84\xf2\x90\x9e\x32\xe7\x45\xe3\xc2\x17\x46\xe3\x7f\x54\xb2\x89\x9d\x60\x21\x3d\x1d\xb5\xb0\x4b\x0b\xc3\xc5\xc7\x82\x8f\x3c\x96\xf9\xa3\x19\xa7\x9e\x90\x26\x7f\xc6\x7d\x51\x50\xfe\x8a\x5b\xe1\x52\xd6\x14\x1f\x89\xad\xf2\xa7\xce\x47\x57\xd4\x6f\x71\x18\xbc\x65\x81\x5b\xb1\x5d\x7a\x2d\xdb\xe2\x56\xd5\x3e\xef\x7e\xa9\x8d\x94\x79\x34\x88\x43\x87\xdd\x06\xc3\x46\x63\x3f\x08\xeb\x87\xb7\x61\x35\x7e\x1d\x13\x46\x66\x4d\x18\x0b\x22\x7c\x45\x7f\x15\x2a\x3e\x71\x81\x14\x87\xdd\x0a\x81\xf3\x11\xfb\x11\x72\xae\xb1\x0d\x9c\x13\xa3\x2c\xca\x5e\xaa\x39\x73\x71\x76\x7e\xa6\xd8\x85\xdf\xf9\x49\xfd\x30\x71\x79\xba\x25\x9c\xff\x64\xe8\x52\x34\xa8\xcf\xb7\x38\x12\x00\xe8\x47\x1c\x0d\x15\xf4\x0d\xee\x09\x2c\xf4\x1c\x77\x42\x10\xfd\x0b\x47\x31\xab\x71\x1c\x25\x1e\xc7\x23\x20\xbd\xc5\x9d\x50\x49\x3f\xe1\x20\x94\xd2\xcf\xd8\x0b\xb2\xf4\x17\x1c\x84\x5f\xfa\x1b\xf6\x23\x33\xbd\x93\x03\x15\xc4\x6d\xea\x6a\x43\x7a\x62\x46\xa7\xa1\x57\xad\x08\xa1\x5b\xfc\xbb\xef\x76\xfc\xe5\x14\x01\xfe\x6d\xc7\x35\xd3\x2d\x8a\x20\xb0\xd4\x82\x62\x3f\xf8\xd4\x6b\x8a\xc3\xc8\x54\x57\x34\x04\xc5\x88\x1e\xa9\xda\x6b\x53\x6d\x01\x13\xee\xea\xbd\x2d\x99\x7c\xb0\x8f\x26\x3a\xd6\x4b\xf9\xc6\xc5\xce\xfa\x9b\xfc\xe9\xc2\x6a\xfd\x45\x9f\x03\xde\xfa\xe8\x8e\xdc\x43\x83\xb9\xdb\x2e\xb8\x24\xea\x6e\xe9\xf7\x11\x57\x8e\xe1\x30\xa4\xb8\xbe\x6c\xa8\x22\x19\x4f\xfc\xb2\xe4\xdb\xb6\x54\x26\x66\x52\x22\x9b\xab\x83\x47\x09\x67\x46\xd1\xa3\x8f\x9b\x68\x63\xbd\x41\x32\x4a\x8c\x88\x17\x97\x98\x8a\x2c\xfd\x31\x6d\xc9\xe4\x52\xb4\x0a\x24\x47\xe4\x44\xab\x3e\x2c\x20\x52\xce\xf8\x5c\x19\x45\xea\xc8\x8c\x0d\xd2\x7e\xd5\x9d\x40\x67\xaf\xf4\xf9\x61\xa9\xff\x96\x9e\x75\xc2\xa5\x2d\x65\x22\x15\x4a\x6d\x25\x70\x18\x63\xad\x87\x2b\xb9\x17\x7a\xf7\xef\x3a\x21\xac\xad\xcc\xf8\xa8\x6a\xe1\xeb\xcb\xa9\xb8\xb8\xcc\x26\x52\x44\xbe\xf4\x55\x0c\x17\x97\x71\x25\x03\xa8\x9a\xb8\x3c\xdc\x30\x55\x27\x79\xfb\x4c\xfb\x55\xe9\xb1\xa4\xc3\x9a\x22\xe7\x44\xe0\x8a\xcc\xe6\xb8\x8e\x8d\x48\x65\x15\x93\x67\x11\x47\xdd\xd1\x88\xa1\x57\x54\xc1\x08\xd5\xa8\x45\xd8\xbd\x2b\xaf\x02\x57\x08\x17\x70\xf2\xba\x20\x78\x7b\x39\x21\x9d\x38\x79\x77\x02\x87\xb1\xf4\xfc\x46\xbd\x53\x60\xb4\xad\xd8\x7b\x57\xf6\x15\xf9\x80\x63\x61\xfb\xde\xe3\x58\xdc\x0f\xec\x07\x00\xd4\x12\x7a\x2c\x4e\xa0\xfd\xe4\xc5\x13\xec\x59\x3b\x37\x66\xed\x98\x20\x84\x71\x8e\x24\x81\x5b\x8c\x84\xf1\x01\x9f\xc6\x4e\xfb\x77\x80\x21\xeb\x0c\xb5\x1f\x7c\x8e\x76\x82\xdb\xfc\x6e\x9c\x87\xfd\x7e\x38\xfc\x1e\x74\x31\x57\x46\x8c\x43\x98\x1b\x80\x2c\xad\x7a\x95\x4b\x44\xe3\x3c\x28\xad\xea\x8c\xcf\x9b\x90\x63\x16\xe8\xe1\x83\x92\x98\xc2\x88\x2a\xf8\xa5\x5f\xb0\x2d\x0c\x53\x9a\xa2\xa6\x69\x40\x7d\x99\xc5\x3a\x07\xd6\x4b\x20\x2a\x56\x54\x9c\xd2\x41\xb0\x64\xcc\xf8\x70\xd8\x56\xfa\x91\xef\x71\x49\xbe\x07\xd5\xcc\xdf\x31\x23\xdc\x93\xee\xce\xbe\x27\x46\x5d\x56\x1a\x58\x60\xe7\x6a\x65\x87\xa6\x40\x58\x73\x51\xc8\xf5\x46\x33\x21\x72\x14\xca\xa0\xd2\xa0\xc7\xa5\xf6\xb1\x80\x17\x76\x9b\xd9\xae\xcb\x45\xe0\x85\xa5\xfc\x2b\xc5\x91\xc8\x95\x7f\xd7\x24\xcc\x85\xb7\xf4\xd7\x55\xbf\x65\xdb\x04\xff\x95\xda\x7d\x89\xdb\x11\x33\xb9\xc0\xed\xa0\x9a\x91\xe5\xfa\x27\x7a\x38\x80\x19\xda\xdf\xe9\x8c\x82\xbd\x70\x2b\x30\xe7\xf7\x14\xc7\xe2\x77\x0a\xdc\x13\xec\x53\x08\xdc\x0d\x0c\x1a\xbd\x3f\x09\xec\xcc\xce\xf4\xa5\xf0\xdf\x41\x8d\xf6\x57\x8b\xe9\xfa\x57\xe7\xa3\x4f\x11\xbe\x44\x18\x1c\x85\xdb\xe6\x9e\xc3\x21\x44\x5a\x6e\xbd\x55\xf6\x3b\x91\xb7\xc4\xbb\xe1\xe9\x8f\x6f\xda\xdd\x4b\x7f\xa2\xfa\x94\x7c\x34\x0b\x45\x0f\x7f\xa2\xe4\xfc\x9c\x36\x0d\xc2\x36\xfa\x2c\x5c\x81\x3d\x81\xfe\xc4\x62\xd0\xaa\x10\xb3\x61\x08\xd7\x4e\xb0\xd6\xd7\x3f\xbd\xba\x7e\xeb\x88\x91\xd1\xc5\xc4\xe6\x96\xc2\x36\x86\x06\xb7\xd3\x00\xf6\x0b\xec\xd4\xc6\x22\xf5\xa8\x92\x41\xaf\x61\xd1\xab\xe1\x5d\x82\xfc\x4e\x94\x45\x2d\x18\xbf\xed\xef\x86\x49\xb0\x65\x37\x4f\xb6\xc5\x32\x97\x35\x3e\xc9\xf7\xec\x78\x02\x5e\x70\xba\x30\xbf\x8e\x27\xdd\xe4\xd5\xe6\xd4\xa4\xac\x12\x45\x79\x7f\x62\xea\xbc\x16\xc5\xf1\xa4\xd5\x7d\x25\xe8\xee\xc9\xad\x14\x47\x72\x41\x01\x6a\xb3\x2c\xb6\x5b\x5a\x1e\x4b\xee\x52\x2d\xd6\xc5\xd1\x94\xab\x6a\x7b\xec\xb3\x7c\x75\xbc\x2a\x48\x71\x2c\xc1\xcf\x35\x2d\xef\x17\xfb\xbc\xcc\x77\xf1\x29\x03\x60\xd2\x25\xad\x9e\xe8\x97\x8f\x27\x7a\xa4\xf3\xf9\x72\x13\x6f\x11\xfd\x24\xbc\xa1\x39\x29\x76\x31\x58\x44\xb4\xb7\xc4\x37\xf5\xf2\x83\xd6\x43\x11\x3a\x7e\x0b\x2d\x7a\xa7\x1a\xa8\x7f\x33\x7e\xeb\x5e\xfc\x59\x8e\xc0\x1b\x18\x00\x93\xdc\x66\xb3\x0f\xcf\xdf\xfd\x40\x14\x42\xaa\x6a\x9d\x89\x0a\xaa\xe6\xfd\x99\x7b\x9f\x2f\xe5\x02\x8b\x7e\x23\x74\x7c\x55\x8b\xe2\x07\xbd\xa0\x08\x1d\x7f\xab\x96\xa3\xff\x26\xaf\x36\xde\x4f\x29\xcd\x7a\x3f\xed\xa3\xde\xef\x7d\xda\xaf\xe4\x07\xbb\x68\x5b\x67\x68\x0f\xb8\xbd\x71\x38\x90\xe4\xa9\xb7\x50\xbf\x31\x27\x16\xcc\x4f\x2a\xd8\xef\xf4\x89\x05\x97\xa7\x15\x1c\x8e\xef\x89\x65\xb3\x93\xca\xf6\xa7\xf2\xc4\x82\x8b\x93\x0a\xee\x2e\x9c\x13\x8b\xcf\xbf\xb0\x78\xbd\x66\x4f\xae\xa5\xb7\x84\xa3\xf5\x06\x7b\xe7\xc4\xba\xaa\x93\x7a\x64\x77\xe8\x89\xa5\xd6\x9f\x51\xea\x89\x45\x6e\x4f\x2f\xf2\xc4\x12\x97\x27\x95\xe8\xd1\xae\x13\xcb\x5d\x9f\xdc\x52\x47\x24\x4f\x2c\x7a\xf3\x19\xe3\xfa\x79\x25\xef\x4f\x2a\xd9\xa3\xfb\x27\x96\xbb\xf2\xca\x8d\xf1\x34\x91\x53\x29\xc2\xe0\xec\xa8\xc8\xb7\x2e\x2e\xbf\x4b\x0c\xf9\xbd\xc3\x1e\x54\x07\xd1\xa3\x2f\xc6\xea\xa9\x0b\x8e\xe0\x6c\xb3\xe4\x54\x5b\xff\xa4\x0f\x71\x1b\xc4\x6c\x96\xfc\xec\xad\x8c\x39\xf6\x7e\x41\x20\x30\xbc\xf8\x79\xff\x9c\x6e\xe9\x6d\x2e\xa8\x7d\xa1\x94\x88\x2b\x5f\x3c\xf3\x82\xdb\x29\xcc\x29\x30\x80\x36\xa1\x7c\xd1\xd3\x54\xf2\x9c\x5e\x59\x28\x2d\x55\x80\x95\x5b\x2a\x90\x8a\x69\xdb\x60\x21\xc5\x6b\x26\x4b\x7c\x5f\xc0\xec\x67\x2d\x91\x8d\x6a\xdd\x83\xcb\x09\xe2\x53\x22\xf2\xf2\x96\x0a\x40\xd1\x2a\xc6\x9d\x52\x0e\x87\xf0\x65\x9f\xe5\x17\x77\x8a\x10\xa5\xa7\xa0\x60\xa5\xc8\x67\xcc\x57\x84\x30\x17\xa9\x55\x8b\x70\x85\x32\xc2\xdd\x97\x74\xcd\x3e\x41\x8d\x92\xcd\xbf\x2a\x6f\x91\xb9\x05\x42\x0d\xd6\x77\x18\x5f\xde\x2d\xbf\x00\xd9\x23\xfd\xfb\x27\xa6\x5d\x3b\xff\x1f\x77\x48\xee\x02\xb3\xc8\x88\x3b\xbd\x7b\xf6\x46\xc8\xce\xfb\x3b\x43\xef\x85\x15\xbd\xa9\x1d\xc7\x78\x53\x16\x1f\x2b\x5a\x5e\x50\x7e\xc7\xca\x82\xcb\x76\x1e\x67\xc0\xe5\xb6\x78\x7c\x57\xb8\x06\x3f\x28\xf3\xc0\x2c\xa2\x91\x1e\x0e\xe9\xd8\xde\xc6\x43\xe9\xc6\xab\x36\x7c\x5b\x79\xee\x2b\x5c\x9b\x1b\xea\xf1\xe3\xbe\x40\x8f\x5b\xd9\xb2\x87\x06\x5b\x59\x21\xe3\x63\xf3\x88\x17\xb7\xa0\xb5\xda\x74\xc9\x8f\x91\x79\xe5\x57\x35\x05\x36\x17\x6a\x9a\xc7\xc7\x3c\x94\x4e\xba\x74\x09\xc4\xcb\x96\x34\xd9\x43\xb3\xc2\x79\x2a\x6b\x2e\xd8\x8e\xfe\xea\xf3\x66\xf8\xf7\xd6\xfc\x39\x47\x23\x4f\x58\xed\x98\x72\x29\xc8\x40\x33\x66\x66\x2f\x49\xfa\x57\x52\x41\xbf\x0b\x66\x23\xe9\xb5\xf2\x62\xce\xca\xab\x20\x93\xa7\xc5\x57\xe2\x69\x31\x1a\x21\x36\x2b\xfc\xbd\x53\x78\x6e\x27\x7c\x2c\xca\xfb\xef\xf8\x5d\xf1\x81\xa2\x34\xc7\x14\xc2\x74\x38\xcf\xa3\xce\x75\x9c\xbe\xff\x45\xca\x90\xcc\xbc\xd2\x73\x2c\x77\xac\x79\x05\x67\x37\x52\x2d\x49\xb9\xaf\xd6\x30\xa0\xa7\x2d\xe7\x8b\xe4\x37\x4f\x12\x40\xdb\xb2\xa4\xf8\xf7\x68\x9a\x16\x04\xc2\xab\xeb\x77\x97\x16\x43\xf0\x37\x09\x42\x16\x30\x36\x81\x9c\x1c\x5c\x5a\xaf\x44\x6a\x49\xf8\x25\x18\x8c\x93\xc2\x65\x47\x98\x8f\x48\x31\x62\x38\xb7\xd7\x0c\x29\x1f\x91\xe4\x37\xc9\x28\xd7\x5e\xa0\xb2\x64\x94\xf1\x11\x61\xa3\x12\x7b\x5e\x58\xcb\x00\x4b\x11\x97\x44\x0d\x8e\x29\xdb\x58\x53\x19\x7d\x5b\x92\xa8\xbb\xc6\x34\x79\x02\x4f\xb3\xc9\x5c\x05\xaa\x7f\x92\x8c\x4a\x68\x86\xac\x54\x3e\x35\xa0\xd7\xd0\xcc\x3c\x5c\xe0\x6c\x95\xaa\x43\x8e\x2a\xfc\x5e\x7a\x54\xab\x18\x6b\x0e\x81\x7e\x12\x94\xaf\xd2\x07\xbb\x2b\x73\xb7\x2b\xb5\x22\x20\xcb\xc7\xfa\x09\x2b\xfb\x86\x2c\x1f\x7f\x64\x7c\x55\x7c\xc4\x75\x45\xcb\xab\x5b\xca\x45\x96\x8f\xed\x33\x5e\xe6\x7c\x49\xb7\x86\x87\x11\xf5\x3e\x3b\xbf\xc4\x65\x51\x88\x1f\xdf\xfe\x90\x25\x4f\x12\xac\x8c\xae\x3a\x47\x81\x22\x35\x3a\x21\xee\xb9\x3f\x20\xd4\x35\x90\x11\xea\x55\x5b\x10\x6a\x1b\x9a\x13\x3a\x5e\x15\x4b\x58\xaa\x2f\x8b\x15\xc5\xb5\x94\x36\xa1\xf5\x78\x4d\xa8\xad\x64\x43\x12\x5e\x70\x9a\xe0\x3d\x39\xbf\xc4\x2b\xbb\xee\x5e\xd4\xdb\xad\x5a\xa1\x25\x1c\xe0\xd5\xb8\xaa\xf7\x40\x39\xf4\x08\xab\x1b\xd7\x69\x2a\xc8\x36\x5d\xe3\x12\x61\x08\x40\x3c\xdd\x90\x44\x37\x21\xc9\x92\x27\xbf\x91\x0b\x6a\xd5\x5a\x8a\xe6\xf4\x7a\x27\x72\x41\xd3\x87\x7d\x2e\x36\x99\x68\x8c\x07\x0e\xf6\x4a\x40\x59\xba\x27\xe7\x3a\x06\x8f\xce\xa5\x1b\x05\x61\xc9\xb2\xb0\x61\x39\x5c\x36\xf2\x5b\xd8\x82\x35\x02\x07\xec\xa5\x6b\x1c\x3f\x1c\xd4\x0a\x5f\x0d\x87\xc9\x13\xb5\x4d\x38\x34\x38\xaf\x36\xc9\x91\xaa\x38\x42\x70\x67\xbe\xf7\x2c\x60\x35\x33\xdb\x78\x0b\x27\xa0\xcd\x76\xed\xc0\x5b\x33\x2b\x6e\xb9\xc0\x6b\x37\x75\x66\x71\x50\xec\x4f\x9a\x4a\x15\x4c\xa3\x5e\x80\xf0\x41\x3d\x37\xe8\x0c\x60\x2c\xb8\x89\xc0\x5e\x79\x84\xaf\xbd\x10\x13\x7c\x3e\x41\x98\xeb\x49\xf7\xf0\xc6\x44\xdb\x40\xcb\x98\x5b\x25\xb6\x7f\xc9\x88\xa3\xa7\xae\x06\x86\x13\xdd\xea\x04\x53\xe7\xa2\xfb\x08\xcd\x95\x84\x11\x33\xce\x04\xcc\x7e\x56\xa7\x89\xfd\x91\x20\xc9\x80\xcb\x51\xa8\xd3\x44\x3d\x25\x08\x57\xf6\x55\x65\x5e\xe9\xe9\xd1\xaf\xdd\xaf\x04\xe1\x82\xff\xb8\x5f\xe5\xc2\x7c\xf3\x7e\x26\x08\xaf\x8b\x72\x97\x9b\xd2\xec\x8f\x04\xe1\x8f\x6c\xbb\xd5\xc0\xa4\xdd\x3d\x79\xf2\x61\x02\xdc\x83\x05\xd2\x3e\x22\x2c\xf4\xe9\x24\x23\xac\x51\x59\xf3\x6d\x51\xec\x3b\x27\x72\xfc\x08\xee\xe5\xba\x62\xa7\x6c\x2f\x7f\x54\xb6\x49\x63\xc8\xc4\x64\x6a\xbf\xc0\x24\xfa\xa3\x05\xa7\xa0\xb7\x00\x5c\xbf\xe0\x8b\x37\x82\xae\xcb\xe8\x70\x50\x84\xd4\xf1\x34\xda\xb5\x43\xd6\xa1\x2c\x25\xbe\xcd\xf9\x6a\x6b\x6f\xd9\xc0\xea\x0a\x38\x25\xab\x80\x19\x1b\xe6\xc9\x2c\x9f\x38\x59\xd5\x89\x52\xe4\x8e\x31\x2c\x88\x45\xb5\x81\xe3\x45\xa8\xe3\x45\xc8\xe3\x05\x53\xf9\xa4\xce\x17\xb8\xa6\x6a\xcc\x5a\xf4\xc9\x72\xbb\x6f\xae\x6b\x63\xd9\x05\x42\x71\x67\x5c\xf2\x4a\xbc\xa3\x66\xdf\x34\xfe\x6a\x3e\xb1\x60\x63\x24\xa5\x5a\xf6\x68\x05\xfe\x9e\xf0\x6b\x30\x58\x24\xbb\xe2\x8e\x82\x71\x8c\x31\x99\x49\xfb\x27\x01\x28\xc5\x0d\xe3\x2b\x5d\x59\xe7\x5a\xcd\x0c\xf5\x8f\x6f\x7f\x48\x81\x5a\x84\x9d\x70\x4d\x43\xca\xbc\x23\x3d\xd6\x7a\x65\x8d\xac\x30\xb5\xe5\x2e\x85\x95\x92\xaf\x56\x61\x6b\x13\xd7\xcc\xa4\xaf\xe1\xa8\xf1\x76\x7f\xf7\xd6\x03\x46\xb2\xe9\xa3\x03\x47\x06\xaa\xc1\xb1\xf7\xdd\xcc\x9d\x06\x0d\x87\xba\x3b\xb1\x62\x4f\xeb\xd1\x29\x04\xa6\x73\x93\xd1\xaf\x98\xf8\xc5\x24\xa5\x45\x50\xd4\xd1\x72\x7e\xe9\x43\xa4\xda\xf1\xfe\xa4\xff\x5d\xc0\x7f\xff\x2e\xff\xbb\x37\x3f\xcd\xbf\xc4\x2e\xf4\x27\xb3\x4f\xf7\xf3\x27\xb7\xb8\xc3\x0f\x59\x43\x14\x72\xf9\x1f\xff\xf6\x32\x17\x9b\x71\x99\xf3\x55\xb1\x4b\xd1\x61\x82\xd3\xe4\x93\x3c\xe2\xe9\x54\x64\x7f\x18\x8a\xc3\xff\x46\x0e\x43\xe4\xf2\x3f\x50\x83\x1a\x5f\x86\x7d\x8c\xe4\x69\x8e\xa4\x43\xf5\x0c\xf0\xe1\x9e\xf6\x5c\xea\x2a\xcb\x09\x62\x0e\xf1\x31\x28\x59\xde\xd1\x2d\x5d\x8a\xa2\x4c\x93\x9b\xbc\x92\x07\x1f\x27\x49\x72\xa6\x60\xd4\x80\x67\xbd\x12\xa2\x64\x37\xb5\xa0\x69\xb2\x29\xe9\x3a\x41\x48\x69\x4c\xbc\x8d\x22\x73\xaa\x5d\xd2\xfd\x16\xd0\x5e\x11\x27\x23\xbd\xa4\x77\x5f\xec\x2b\x79\x1e\xb7\x09\xaf\x3b\xb5\x63\x67\x64\x50\x8b\x65\xe0\x6c\x25\xfa\xcd\xd3\x76\x4b\xed\xc0\x52\x24\x09\x6e\x02\x35\x27\x8c\x0f\xa8\x09\xa9\xd3\xe2\x3b\xc9\xb9\x89\xe9\x60\x69\x8d\x62\x24\x91\x09\x22\x66\x37\x7a\x1a\x10\x23\x74\xa6\x10\xf3\xa5\x24\x40\x88\xc1\x28\xdd\x97\xf4\x8e\x15\x75\xf5\xe3\xdb\x1f\x42\xda\x95\x69\xb4\x28\x8f\x55\x95\x54\xc4\xe7\xe2\xfb\x8e\x9b\xfe\x31\xc7\x72\x7a\x65\x0b\x78\xbe\xa3\xb8\xec\xa4\x34\x0c\x95\x96\x00\x83\x6f\x66\xbe\xd1\x59\x09\x58\xca\x7a\x6b\xfc\xe3\xc9\x6f\x9f\xe0\x04\x72\xb0\xee\xdb\x33\x83\x37\x6f\xbe\x70\xfa\x71\xf0\x96\xde\x5e\x7f\xda\xa7\xc9\x7f\x26\x23\x36\x4a\xd2\x29\x79\x72\xf8\x2d\x4a\x90\x4c\xdf\x97\xae\xec\x4b\xf7\xe4\x1f\x50\xd7\xad\x14\x1e\xad\x8d\x44\x31\x22\x29\x1d\x57\x70\xcd\x7d\x38\x24\x09\x1a\x85\x27\x70\xf4\x24\x0d\xcf\x0f\x3d\xa7\x67\xb4\x3d\xa7\x14\x61\xb0\x0a\xd4\xf3\x48\xb5\x23\xc1\xbe\xae\x36\x2a\xcf\x91\x33\xf5\x97\x55\x11\xac\x05\x6d\xff\xdd\xd9\x0f\x01\x88\x60\xb8\x72\xa7\xbd\xbb\x64\x0c\xab\x3e\xd3\x94\x5e\xbd\x85\x92\x1b\x6c\xfb\xd5\xe9\x08\x27\x4a\x74\xa2\xb8\xae\xd9\x2a\x2b\x52\xd4\x3c\xed\xaf\xc1\x8d\x0f\x37\x71\xd6\x70\xb7\x3e\xc2\xf1\x23\xdb\xc2\x8e\xed\xaf\xd1\xa8\x60\x44\x7f\x69\xbb\xfa\xd8\x1c\x37\xe9\x67\x8f\x73\x3c\x6d\xda\xe7\xf3\xb7\xec\x70\x48\x19\x40\x85\xdb\x5a\x25\x0f\x13\x34\x0a\xa1\xe1\x90\xa6\x2e\x01\x6a\xfa\xd9\x16\x53\x57\x12\xaf\xbb\x97\x65\xb1\x6a\xa4\x1e\xd2\xd1\x25\x2b\x1e\xe9\x70\x4a\x15\x3a\x4d\xb9\x47\x18\x1c\x21\x89\x92\x17\x94\x29\xd9\x59\x29\x60\xb4\xa6\xc8\x28\x63\x62\xe9\x71\x39\xe2\x5f\xca\x53\x19\x16\xbf\xec\xb2\xf8\xa7\xb1\x5b\xad\xa1\x3c\xce\x6c\x3d\x3a\x0f\x27\x30\x5a\x2d\x43\x94\x47\xaf\x7f\xe2\xaa\xd4\xcf\x50\x62\x3f\x2a\xa4\x69\xad\x8e\xdc\x8c\x49\x4c\xe1\xe4\xab\x9a\xbe\xec\x58\x93\x65\x27\xda\xbf\x2b\xbe\x14\xad\x8a\x3c\xba\xce\x68\xdf\x61\xc3\x5b\x87\x4d\x9f\xe0\x15\x30\x12\xd0\x9a\xc7\xe5\x9d\x1a\x3e\x3d\xcb\xb7\xdb\x9b\x7c\xf9\x81\xd0\x06\x6f\x60\x9a\x4f\x2d\x1e\x47\x4a\x81\xc3\xe0\x8b\xf6\x6a\xb0\x1f\x81\xfb\x8b\x0c\x14\xc2\x72\x23\x9d\xb0\x08\x41\xa1\xee\xad\xbd\x79\xc0\x30\xc7\xb5\xe9\xc2\xb7\xc7\x37\x9c\x49\xaf\x4c\x3c\x12\x52\x0e\xf6\x7c\xe8\x3c\xbb\x31\x7d\xde\x7b\x90\x6c\x7e\xd1\x92\x8b\xc5\x9c\x08\x17\x6c\xe6\x37\xb6\xfb\x17\xa0\xbe\x9a\x26\x49\x26\x8c\x6c\xee\x83\xda\x32\xbf\x9c\xa2\x64\xb7\xcc\x86\xbe\x10\x87\x43\x0a\x0d\x2f\x0b\x51\x2c\x8b\xed\x28\x79\xf2\x24\x19\xd1\xf1\xa6\xa8\x04\xb0\x58\x74\x2c\x87\x42\x0b\xf2\x99\xfc\x24\x7f\x83\x34\x4f\x8d\x12\x9e\x08\xa5\x27\x06\x55\x3b\xe1\x4e\x69\x4c\x4a\xf5\x6c\x74\xa1\x31\x73\x39\x39\x7e\x23\xf9\x62\x54\x6a\x83\xca\x5b\x2a\x5e\x43\x23\x09\xc3\x34\xa2\x9c\x8c\x9a\xc8\x27\x05\xf7\x64\x3e\xc6\x07\xb2\xcd\xd6\x47\x87\x1e\x0e\xf4\xeb\xff\x05\xa5\xb7\xb9\xe1\xb0\x30\xb6\x4e\xd3\x0b\x8d\x20\x67\xc6\xf9\x8a\xaf\x4a\x59\xd0\xef\xc7\x92\x1d\xef\xfb\xfa\xef\xe3\x09\xa0\xe8\xb6\xbf\xbf\x2c\x6e\xd8\x96\x0e\xde\xe5\xeb\xbc\x64\x09\x24\x20\x41\x82\x67\x9b\xb2\xd8\xd1\xd8\x97\x9f\x80\xe6\x56\x83\x37\x1b\xd0\x35\xb6\x95\xa7\xe7\xe7\xa9\x18\x0e\x13\xcb\x98\x40\xaf\x7d\x97\xaf\xd6\x90\x83\xf5\xa1\xdd\x1d\x72\x51\x8c\x54\x9c\x99\xe8\xa6\xe8\xd8\x9a\x45\x94\x6b\x95\x31\x2f\x30\x2f\x94\x73\xc2\x13\xe3\xe9\xf8\x4b\x2e\xe1\x0d\x0e\x82\x39\xc0\x0c\x99\x5e\xd6\x65\x49\xb9\xb0\x17\xab\x19\xe8\x3f\x0c\x8a\x35\x4a\x93\x85\x6a\xf0\xb8\x9d\x30\x41\x58\xbf\x92\x34\xe6\x91\x5c\x8a\x11\xb0\x9a\xdb\xbe\xd4\x9e\x60\x62\x0e\x80\xbe\xa4\x8e\xbd\xd0\x6f\x94\x41\x80\x7f\xb5\x9e\xfd\x8a\xee\x06\x72\x21\x4f\xb0\xe4\x2b\x2a\xba\xbb\xd9\x52\xe0\xad\x52\x49\x8a\x50\x18\x90\x43\x37\x6f\xb1\x2a\x7e\x7c\xfb\xc3\x7b\xdb\x9a\x34\xf1\x5b\x96\x60\xc8\x19\x38\x95\x41\xf1\xf4\x93\x28\xf3\xa5\x1a\xe4\xab\xf2\xb6\xd2\x17\x6d\x6c\x5c\x9a\x61\xc7\x39\x61\xe3\x5d\xb1\xa2\xdb\x0a\x57\x84\x8d\x3d\x1b\x09\x5c\x93\x76\x1b\xbc\x06\x28\x1b\x44\x29\xac\x5a\x83\xa2\xc5\x07\x4a\xf7\xda\xb9\xd3\xd9\xe4\x80\x13\x2c\x18\x66\xd7\x96\xb9\xfe\x89\x89\xc8\x55\xb0\xea\xb2\xdf\xb1\xb8\xca\x41\xfb\xd0\x5b\xd5\xb8\x3c\x41\xeb\x72\xfb\xa2\x28\x3b\x87\xba\xb9\xc1\xa4\x41\x57\x90\xb5\xde\xd2\x15\xd0\xf0\x52\xbb\xba\x5a\x0a\x76\x47\x7f\xcd\x09\xff\x6f\x9e\x1a\xf5\xf7\x25\x5b\x96\xc5\x96\xdd\x58\x0a\x54\x8f\x4d\x5f\xbe\x03\xa7\x4d\x98\x35\xd0\x3a\x0e\x87\xe9\x79\xea\xbb\x20\x55\xc8\x7a\x3b\x22\x03\x3e\x63\x8b\xdf\x97\x74\x9f\x97\xd4\x33\xb4\x72\xf3\xaf\x6f\x46\x36\xf9\x76\x5b\x7c\xbc\xfe\xb9\xce\xb7\x28\xad\x70\xad\x64\x3e\xbf\xd1\x08\x2c\x2b\x3c\x1e\x8f\x9d\x44\xdc\xc0\xda\x36\x42\xdd\xf6\xc5\xf6\x7e\xcd\xb6\xdb\x2f\x21\x78\x8a\x5b\xfd\xac\x5b\x03\xde\x21\x75\x01\x9d\x00\x6b\x16\x25\x33\xea\x8d\x6d\x49\x8c\x1e\x44\x2f\x89\xa3\x75\x47\x73\xf8\x69\x5c\x96\x80\xb4\x1e\xc9\x16\xa1\xac\xf2\xc4\x79\x24\xd7\x1b\xc5\xf4\x6e\xf2\xaa\x65\xcd\x43\x3d\x83\x0d\x16\x32\x7b\x70\x00\xc1\x7d\x00\xe4\x01\x3e\x21\x4e\x38\x03\xe4\x42\xb0\x09\x8a\x17\x15\x92\x9a\x20\x8a\xf2\xa0\x1c\x0e\x8b\x2e\x05\xc0\x45\x83\xb9\x64\x51\xb7\xec\x5f\xfe\x3a\xed\x04\x6b\xee\xaf\x33\xb2\xc8\x4d\x48\x09\x43\x2e\x42\xf6\xf7\x94\xae\x28\x48\x99\xd6\xfe\x34\xc1\xec\x1f\x1a\xaf\x53\x29\x70\xd1\x06\x56\x33\xc7\xa5\xe6\xc5\x63\xbd\x82\xba\x73\x84\x70\xd1\xa6\x64\x05\x9e\xd1\xb9\x81\x84\xe2\x78\xf6\xe0\x1b\xbd\xe5\xcd\x5c\xee\x41\x4b\xe0\x5e\x14\x65\x7b\x96\xf5\x3e\x30\x68\xa0\x47\xa6\x28\xec\xd2\xb8\xa4\xcb\xe2\x96\xb3\x7f\xd1\x72\xac\x24\x8e\xb2\x7a\x51\x48\x46\x17\x57\x24\x9f\xe5\xd6\xd6\x62\x6e\x3e\x07\x3e\x75\x7e\x64\x0e\xdf\x05\x52\x38\xfb\x8b\x72\x04\xe1\xd6\x15\x00\x86\xa5\xbf\xf2\x8d\x2e\x10\x22\x6d\x01\xf9\x7d\x6a\x46\xb5\x01\x90\xdc\x33\xcb\xc2\x6b\x0a\x57\x83\x28\x52\x21\x5c\xb6\xe9\x23\x87\x18\x1e\xe7\xc5\x31\xa1\x38\x34\xe1\x3f\x49\x1c\x51\xdc\xbd\x7f\x9c\x18\xe6\xdf\x86\x4d\x80\xe2\xc0\x5f\xeb\x65\xbe\x8f\x85\x48\xd8\xc4\xc1\x22\x5c\x66\x00\x2e\xa2\x2d\x2c\xa0\x4a\x48\x46\x3f\x8e\x72\xe0\x65\xbd\x05\x84\xf6\x76\xf8\x68\xdd\x1a\xec\x25\x54\xb1\x91\x4a\xe4\xa2\x0b\xb5\x21\xd9\xd4\xbd\x7a\x7f\x40\x21\xd5\xca\x10\x30\x39\xd6\x16\x6b\xe3\xae\xf0\x98\xa6\x26\x6a\x52\xc6\x35\x68\x91\xa3\xcd\xbd\xa6\x79\x3d\xae\x26\x27\xcd\x99\x2b\xbe\x07\x3a\x81\x5a\x13\x02\x57\x7e\x96\x8c\x54\xdc\xa3\xe3\x0d\x02\x8f\x96\xd3\xce\x34\xa5\x49\x69\x1f\x55\x91\xf5\x55\x92\x09\x66\x8f\x83\x12\x42\x88\x64\x1d\xe5\x6e\x4c\x79\x7e\xb3\xa5\x3f\x14\xf9\x8a\xf1\xdb\x77\x52\x34\xcd\x05\xad\x94\x5b\x7a\xfc\x9b\x46\xa1\x03\x87\xef\xca\x46\xf8\xa0\x9f\xf6\x5b\xb6\x64\x42\x45\xf8\xf0\xe1\xed\x8a\x3d\x18\x06\x12\x11\x5b\xd2\x40\x42\x02\x94\x38\x43\x03\xbe\x10\x0c\xec\xa1\xf1\x81\xc4\x66\xbf\x9f\xe3\x8a\x24\x4f\x16\x35\xaf\x2b\xba\x5a\xac\xea\xdd\xee\x7e\x41\xcb\xb2\x28\x17\xfb\x5c\x6c\x14\x09\x5b\x40\xcc\x9a\x27\x19\xbc\x4f\xce\xe2\x4e\xe6\x11\xbc\x48\x05\xa1\x5d\xe2\x92\x3c\x34\xe8\xd8\x70\x0e\x87\x69\xae\xe3\x86\x8e\x92\xc5\x56\x7d\x4d\xf0\x83\xe4\xfd\x9d\xd3\x5c\xa6\x84\x01\xf7\xa2\x41\xd8\xcb\xa6\x5a\xf7\x68\x26\xa5\x10\xab\x1a\x84\x30\x9b\xa6\x39\xc4\x91\xf9\x38\xa0\x69\x61\x82\xb8\xb7\x33\xa0\x60\x9a\x10\x4e\x4c\xfb\x64\xed\x1c\x27\xa6\x5e\x53\x2e\x66\x3a\xc0\x82\x6b\x1d\x2e\xe1\x12\x5c\x1d\x43\x29\x42\x28\x73\x5f\xda\x61\xbf\xeb\x90\x18\xf9\x41\x83\x25\x3f\x49\xb8\x1f\x1a\xdf\xc4\x2a\xd4\x8d\x1b\x53\x7e\xcb\x38\xfd\x8e\xaf\x0b\x54\xc8\x94\xe0\x0b\xd9\x93\x62\xbc\xae\x95\x07\xa6\x9e\xc2\xd1\x25\x52\x86\x93\xee\x88\x05\xcb\xa6\xed\x0b\x9d\x2e\x2b\x1a\xdc\x57\x1b\x66\xe0\x32\x59\xd1\x92\xc1\x49\xac\x9d\xe4\x59\x38\x78\xe3\x7c\xb5\x82\xe3\xf4\x45\x51\x5e\x43\x66\x75\xfa\x98\x50\x11\x0c\x75\x40\xb2\x9e\xd3\x35\xe3\x8c\xdf\x0e\xf2\x01\xac\xc5\x81\xad\xa2\x1c\x14\x5c\xbf\xfb\x1d\x68\x0c\x7f\x37\x28\x6a\x51\xb1\x15\x1d\xe4\x7c\xa0\x8a\x1f\xb0\x0a\xf0\xb5\x80\xf3\x06\x6c\xad\x33\xa3\x69\x53\xaa\x2d\xf9\xa0\x3c\x12\xcf\x09\xa9\x66\x95\x3b\x84\x0d\x87\x1f\x6e\xdc\x73\x13\x63\x5e\xef\x6f\xed\x47\x6b\xb1\x6a\x7c\x08\x26\x35\xdd\x9d\xd8\xa1\xc4\xcf\x1f\xc4\xf0\x0c\xaa\x32\x57\x4e\xc0\x2f\xea\x36\xea\x45\x96\x3c\x49\x1a\x84\x3b\x44\xc1\x63\x0a\xa8\xc3\x45\x20\x7f\x40\x22\xa5\x33\x3e\x47\x63\x51\xc8\x87\xd1\xe5\x1c\xcb\x3f\xbf\x9f\x4b\x46\x27\x08\x60\x04\xe8\x14\xb6\x5c\x8b\x18\xed\x39\xd2\xfd\x02\xb2\xb3\x27\xc1\x52\x28\x69\x55\x6c\xef\x94\x41\xfb\xcb\x7c\x2f\xb7\xcb\x8a\xf0\xb3\xcd\x38\x97\xe4\x60\x45\xe4\x83\x92\xd7\x77\x44\xef\xcd\x15\xde\x74\xf6\xe6\x3d\x51\x71\x81\x38\x36\xe0\x79\xdf\xad\xb2\x72\x34\xc2\xd0\x99\x37\x05\xe3\x22\xdb\x61\xb3\xd4\xb3\x5d\x83\xef\xc8\x06\xd4\x9c\x67\x26\x1c\x94\x45\xa2\xb8\x1b\x0e\xd3\x3b\x50\x72\xae\x54\xcd\xb7\x86\x50\xdf\x9c\x42\x23\x57\x1e\x8d\xdc\x03\xe9\x3b\xbf\xc4\x69\x45\xfa\xf6\x8c\x4a\x32\xe9\xdb\x53\xe4\x5e\x12\x90\x5a\x93\xa7\x1d\x0e\x77\xa6\x4b\x97\xdd\x87\xdb\x12\xb5\x48\x54\xdd\x22\x51\x37\x0d\xc2\x7b\xe5\xf4\xad\x08\x55\x8d\xf0\x2d\xa9\x3d\xfa\x04\x9b\xb9\xaf\x55\x15\x52\x63\xb3\x38\x4a\x2a\x12\xc9\x6b\x33\xad\x5b\x6a\xf0\x3d\x3a\x3b\x4e\xfe\xb7\x64\xe5\x53\xfe\x25\xf1\x0b\x70\xef\xd7\x47\x2b\x5d\xca\x8a\x0c\xd1\xdd\x76\x4e\x82\xf6\xe2\x69\x1e\x25\x4e\x5b\xbc\x46\x58\x35\x4d\x0f\x61\xab\x61\xfa\xed\xaf\xda\x2c\x6c\x67\xe9\x84\xd6\x3d\x9a\x68\x87\x17\x06\x5d\x57\x52\xaa\x3b\xbc\xc3\xb7\xa8\x8d\x69\x59\xb4\xf8\xb6\x88\x79\x94\x3f\x9f\xa0\x1f\x56\x6c\x52\x93\x52\x34\x1c\x9e\x03\xfa\xea\xd4\xbc\x1c\x25\xe3\x64\x24\x32\xef\x9a\x20\xf7\x4d\xbe\xbf\x10\x81\xf4\xa1\xf1\xb9\x9e\xd9\x1f\xe6\x98\x11\xdd\xf0\x36\x55\xe8\x6e\x6d\x65\xf5\x01\x61\x30\xe0\x4e\x5f\xdf\x64\x68\x1c\x04\xf5\x12\x33\x38\xa7\xed\x01\xe3\x9b\x07\x31\xcc\xc6\xbb\x7c\x1f\x41\x24\x90\xdb\x93\x39\xf9\x49\x81\x48\x20\x2c\x1e\x63\x70\xa3\xbe\xe0\x27\xde\x1a\x9e\x78\xad\xe3\x59\xd9\x8f\xd7\xca\xf5\x52\x0a\x9c\x3e\x33\x7e\x93\x57\x6c\x99\x20\x45\x0e\xfc\xcb\x3a\xa3\xc2\x31\x06\x53\x5d\x5d\x64\x92\x9a\x2e\xac\x06\xc0\x20\x0e\x5c\xb9\x28\x51\x1e\x42\x36\xd4\x5a\x57\x00\xd0\xe6\xfa\x7d\x8e\xd1\x02\x47\xa5\x0b\xee\x5f\xbb\xc8\x52\x7a\x44\x8c\xc7\x05\x8c\xd0\xa1\xfd\x4b\xe5\x1d\x73\xa6\x77\xd6\xf4\x24\xba\xa6\x27\xfe\x9a\x9e\xcc\x41\x33\xa6\x28\xe3\x9d\xd2\x01\x6b\xa9\x83\x55\xbe\xb7\xf9\xf9\xe4\xb1\xce\x68\xf7\xfd\x53\xe5\x25\x8d\x97\xb8\xba\x58\xd3\x5c\xd4\x25\xed\xfa\x02\x3d\x62\x7c\xdc\xba\xc3\x36\xca\x45\xb5\xe9\x4e\x31\x24\xfc\x4c\x40\x84\xbe\x2b\x97\xd0\xd3\xbf\x6f\x2b\xac\x43\xfd\xb9\x17\xe1\xc3\xc5\x28\x4f\x8d\x1e\xe5\xab\x4b\x34\x1c\x52\x27\x67\x39\x0d\xd4\x25\x21\x36\x0a\xdb\x34\xe5\x70\x2d\x8a\x18\x1f\xd0\x69\x39\xe3\x73\x79\x04\x14\xc6\x9f\x91\xa3\xec\xc9\x82\xad\x7e\xab\xa3\x4a\x72\xc0\xd9\x6a\x27\x4a\xd8\x2a\x41\x28\x2b\xed\x4b\xe7\x98\xa9\x22\x1d\xe1\xb2\x71\x24\xe8\x9d\x21\x4b\x64\xa3\x20\xff\x9e\xb7\xdf\xc7\xa0\x3c\x1c\x35\x23\x84\x6c\x14\x68\xc7\x9e\xd4\x2d\xd3\x81\x7a\x7c\x05\x39\xbf\x35\x7a\xa7\x31\x18\x48\xd0\x15\x0e\x94\x63\x92\x02\x6b\x8d\xee\xf8\xed\xeb\x1f\xdf\x5f\xbf\x5d\xa8\x3f\x53\xe8\x81\xd1\x21\xbb\x3b\xa3\x04\xf7\xdc\x60\xe8\xef\x8d\x89\x06\x83\x17\x15\xf5\xd4\xb6\x9d\x3b\x7b\xab\xf1\x37\x1b\x44\x32\x74\x36\x3d\xb9\x4b\x6d\xa0\x14\xcf\x7f\x01\x4c\x01\x16\x3f\xef\xb3\x56\xeb\xa2\xee\x97\x72\x11\x69\xa0\x08\xbc\xc3\xf7\xc0\xb4\xe1\x3b\xc3\xff\xdd\x6a\xed\x8b\x5d\xa5\xaf\x00\x9b\x36\x6c\x1b\xbe\x21\xd1\x66\x2c\xc8\x4d\x9c\x48\xdd\x22\xfc\xd1\x5b\x11\x4a\x7d\xe8\x3b\xe4\x22\x7c\x1d\x80\xa0\x7d\x74\x37\x10\x67\x8b\x69\x4a\xbd\xcc\x8b\x56\xce\xc3\xe1\x41\xb2\xba\x11\x1f\x5d\xf0\x35\x7d\x68\x70\x4e\x1e\xf4\xd2\x82\xfb\xa7\x4c\x72\xa2\xf7\x7b\xf8\x5b\x2d\x0b\xf5\x90\x57\xd9\xf9\xa4\xb1\x61\x8b\xaa\x81\x5c\xee\xa8\x1d\x56\x32\xad\x14\x8e\xdc\x43\x13\x32\xa9\x25\xa6\xb3\x6a\x8e\xf9\xac\x9a\x23\x5c\xcc\xaa\x39\x29\x71\x2e\xff\x9c\x4f\x3a\x91\x09\x79\xbb\xcc\x5a\xf2\x15\xf9\xac\x56\xe1\xc7\xda\x45\x33\x0c\x51\x0b\xe9\xac\x86\xa2\xeb\x39\x61\xce\xf6\xb0\x91\xcb\x61\xe9\xd4\xc2\xee\x74\xf1\xa8\x2a\x04\x5f\xf8\x88\x50\x76\x3d\x1c\xa6\xc0\xcc\x5a\xe7\x7c\x94\xde\xe0\x5b\x84\xef\xc8\x47\xc5\xea\x7e\x22\xb3\x39\x7e\x27\xdb\xf0\x9a\xcc\xe6\xb6\xe5\x57\xb2\xe5\x77\xe8\xae\xdd\xf2\x2b\x34\x1c\x26\x1a\x45\xdc\xbc\x94\x3c\xd3\xd5\x70\x98\x28\x3b\x61\xfd\x2b\xb5\x91\x65\xbd\x75\x91\x10\x42\x52\x46\x52\x4e\xee\x66\x57\x73\x34\x86\xb9\x38\x1c\x12\xb8\xe6\x4a\x54\xf4\xb3\xd9\x1c\x81\x26\x20\xaf\xf4\x1a\xb4\xbb\xdc\x75\xf0\x4f\x54\xb6\x44\xb1\xa6\x76\x8d\x5c\x21\x1c\x82\x01\xae\x65\x81\x90\xa6\x1e\x5f\xa1\x74\xad\x55\x06\x08\x21\xbc\x21\x7c\xac\xc2\x00\xc2\x57\x15\x2c\x10\xa9\xb0\x36\x7d\x95\xa6\x6b\x5c\xe1\x8d\x94\xe4\x6e\x01\xc5\xf9\x0a\xef\xc8\x43\xcd\x57\x74\x59\x00\xa3\xf0\xdc\x5f\x70\xad\x86\x05\x8b\x71\x8d\x6d\xe9\x61\xa6\xbd\xf7\xc1\xbc\x81\x65\xbb\xc1\x75\xb9\xfd\x13\xbd\xcf\x2a\xbc\x2f\x8b\x7d\x76\xa5\x56\xb1\x85\x86\x03\xc2\xb2\xc2\xe1\x16\xce\x6e\x15\x45\x03\xc3\x4b\xbc\xcf\x4b\x51\x65\xb9\x0a\x29\xa5\x1d\xe0\xd5\x56\x60\x0d\x7e\x37\xbb\x9a\x93\x77\x72\xf5\xbe\x9b\xad\xe6\x64\x87\x3f\x29\xde\x71\x87\xf0\x6b\xf5\x74\x65\x51\xa1\x1f\x7e\xde\x57\xd9\x27\xbc\xcb\xf7\xd9\x3b\xbc\xf7\x1a\x50\x65\xaf\xb1\x92\x79\xb2\x07\xc6\xf3\xd6\x1d\xaa\x8f\xe1\x36\xa3\xf3\xb3\xfb\xb1\xf3\xb6\xb7\x17\x2d\x8f\x65\xd2\x9b\x20\x92\x17\xdf\x8f\x17\x2a\xf7\x9f\xdf\x98\x2f\x10\x85\x14\x83\x7a\xe4\xb5\x06\x14\xad\xbe\xb4\x6c\x30\x89\x62\xfc\xd6\x2b\x1d\x35\xe0\xa0\xbc\x80\x1b\x09\x0d\x20\x00\xfa\x76\x35\x18\x1d\xd3\x15\x1d\x50\x1f\x92\x7b\x91\x0f\x70\x4e\xbc\x0f\x84\xea\x87\xb3\xdc\x02\xef\xa7\x39\x49\x29\x11\x00\xff\xa9\x3e\x1e\x0e\x33\x7d\xdf\x5f\x75\x68\xec\xe2\xe7\xfd\xf8\xe7\xbd\xa4\xaf\xb5\x07\xcd\x9f\x5b\xc7\x53\xa7\x48\xf1\xb0\x0a\x39\xaa\xe5\x09\x4e\xe1\x7a\x05\x44\x9c\x7c\xc6\x15\x35\x50\x81\x0c\x2a\x97\xb6\x44\x7a\xbf\xaa\xcd\x5c\xcd\x4a\xb3\x93\x25\x35\x1b\xc3\x42\x23\x35\x6a\x1a\xdc\x9e\x91\xd6\x98\x84\x97\xcc\xed\xd9\xa3\xe3\xee\x1a\x87\x09\xed\xce\x45\xcc\xef\x47\x97\xda\x9d\x37\x3a\x56\x7b\x09\x35\xb8\x1d\x97\xaa\x03\x19\xa1\x38\xe8\xc0\xb2\xc0\xb7\x7a\xeb\x1c\x87\xf6\x28\x54\x1b\x2f\x19\x29\x34\xe2\x73\x83\x42\xfc\xd0\x18\xcb\x99\x23\xd7\xf7\x63\x35\x12\xee\x06\x14\x17\x84\x4d\x59\x60\x45\xdd\x93\x13\x92\xe0\x9c\xf0\x90\x87\xc0\x55\x4b\x86\x6f\x70\x31\x56\x7d\x9b\xe5\x73\xb9\x50\x76\x29\xc7\x85\x3d\x64\xfc\x63\xb9\x46\xe3\x92\xae\xea\xa5\x17\xd9\xa4\x8d\xb9\x4e\xea\x99\x98\x63\xda\xe0\x0a\x6c\x19\x63\xd4\x3a\x72\x91\x3c\xa0\xd1\xc4\x9d\x1b\xdb\xa8\x3d\x4c\x8c\x3c\x53\x20\x21\x2b\xfa\xc5\x85\x46\xb3\xea\x62\x17\x5a\x0b\xf1\xa2\x28\xa3\xc5\x7a\xd7\xe3\x7d\x1c\xcf\x38\x19\xd9\xb5\x07\xe7\xce\xd1\x84\x92\xb2\x02\xa3\xd3\x60\x50\x00\xb8\x73\x3e\x5b\x63\xfa\x29\xe2\xa6\xb3\xa2\xb0\x70\x94\x96\x4b\xdb\xd2\xb0\xdb\x5b\x29\xa0\xba\x4f\x89\xf9\xa4\x43\x4a\x00\x90\xa8\x76\xf4\x0a\xe1\xe0\x3d\x58\xca\x90\x3d\x3c\xe3\x3e\xda\x49\x94\xfe\xa8\x63\x60\x6c\x4e\x01\x53\x69\xab\x23\xea\xba\x15\x35\x58\xb2\xe3\x5d\x33\xe7\x65\xc1\x39\x5d\xaa\xfb\x23\x73\xd3\xd4\xdb\x43\xd7\xbf\x06\x0b\xba\xdb\x6f\x73\xcd\x6e\x03\x5d\x6e\x1d\x8c\xf0\x4e\x61\x9d\x56\x99\x2f\x05\x58\x70\xe9\xce\x82\x31\xdc\x65\x1e\xeb\x6f\x82\xc6\xbb\xbc\x1d\x5f\x9b\xda\xe8\x9c\xfe\x5b\x8e\x50\x1f\x55\x65\xeb\x34\x65\x24\x9f\x49\x82\x3a\x57\x21\xb5\xbd\x8a\xc6\xd1\x15\x98\x32\x84\x93\x92\xae\x4b\x5a\x6d\x5e\x1a\x26\x2a\x58\xd5\xbe\x15\x89\x8d\x11\x0f\xe9\x53\xa4\xc3\x15\x9b\xe8\x46\x0d\x5e\x33\xde\x5a\xfe\x3d\xc3\xc1\xd6\x69\x5b\x6b\xd6\x15\x5d\x5c\xd8\x24\x88\x51\xe9\xc6\x50\xcb\xb4\x5a\x24\x21\x5c\x1b\x0b\xe9\x8b\xfc\xef\xf8\xba\xa8\xf0\x2e\xa0\x91\xf8\x8e\xec\xc6\x0b\x6f\xa6\x5e\x14\x65\xba\x42\xf8\x16\x5e\xef\x95\x45\x74\x85\x6f\x7c\x14\x65\xe0\x93\xe1\x40\x86\x2c\x70\x2a\xa3\x74\x87\x57\x26\x38\xcf\x9d\x3c\x27\xfd\x19\xa8\x20\x6c\x27\x23\xf0\x01\x8e\x35\xa8\x1d\x79\x8b\x1f\xd7\x84\xe9\x4d\x3c\x50\x6e\x5c\xe6\x27\xde\x76\x22\x41\xde\xba\xaf\x32\xf1\xed\x34\xdd\x7a\xcb\xa7\xc2\x4c\xed\x72\xbc\x26\x79\x94\xe1\xdc\x62\x5b\xb8\x0a\x66\x82\x50\x56\x4f\x5d\x20\xbf\x35\x01\x19\x01\x54\xcc\xf9\x38\x4e\xbe\xd6\x91\x32\xd2\x35\x61\xe3\x38\x0f\x8a\xb7\xe4\x3e\xb5\xbe\xc7\xf0\x0a\x21\x5c\xf5\xec\xf8\xbc\x6f\xbb\xaf\xcf\x49\x50\x05\x14\x04\x1a\x4a\x6f\x0e\x5f\xf3\xed\xbd\x0e\x09\x7d\x33\x1c\xa6\x1b\x92\xf7\x2f\xf2\x74\xef\x55\xbb\xc1\xce\xf2\x07\x4d\x6f\xc8\xf9\x24\x03\x8c\x80\xfd\x70\x98\xde\x90\xf3\x4b\xe5\x4e\x58\x28\x03\x77\x33\xcc\x78\x8b\x10\xee\xb4\x89\xac\x71\xdf\x50\x10\x42\xd6\xc3\xe1\x39\x3f\x6a\xd8\x78\x38\x08\xc5\x20\x3f\xdc\x69\xde\xfe\x8e\x41\xa0\x15\x29\x61\x7e\xa0\xf7\x59\x7d\x38\x98\x09\x68\xd0\xd9\xcd\x70\xc8\x23\xd6\x4b\x6a\x25\x76\x62\x3f\xf9\xc8\xb0\x46\xb3\xa2\x96\xa4\x26\x3b\x67\xfa\xa7\xb7\x40\xfb\x68\x33\x4e\xf4\x2c\x99\x39\x6a\x10\xf6\xf7\x0e\xc4\x46\x6a\x1a\x79\x80\x1a\x5a\x9a\xad\xb1\xf7\xd8\x67\x0b\x7b\xd4\xd0\x32\x62\xcd\x09\x2e\xe3\xcb\x7e\x04\x26\x67\x8a\x09\x50\x0a\x82\x96\x3b\xba\x62\xb9\xf0\x18\xa2\x48\x03\x9e\x76\xaa\xee\xcb\xfa\x25\xcd\xd0\x14\xb3\xcf\x66\xb5\x8f\x1d\x33\x84\x56\xa8\x20\x5d\x3d\xd6\xaf\x47\x07\xd0\xcb\xf3\x25\x0d\xaf\x28\x5f\x75\x21\xb9\xac\x7a\xf1\x17\x07\x8a\x34\x77\xf4\xba\xbd\xad\xb3\xa7\x35\x1e\x87\xc3\x79\x3a\xc1\xf9\x98\x55\xef\x69\x25\x99\x72\x94\x22\x94\x96\xad\x1e\xcb\x26\xeb\xae\x96\x58\x78\xf7\xe7\x44\x58\x28\x9f\x82\x58\x6e\xa0\xe0\xd5\x8c\xd9\x00\xec\x81\xc9\xb0\x50\xae\x35\xf5\x3e\xc6\xd5\x60\x7d\x12\xd9\xe8\xd0\x27\x69\xc1\xb6\xed\x54\xf2\x1c\xaa\xc1\x0e\xba\x22\x5b\x9d\xbc\xab\xf8\x4f\x6b\xcd\xaf\xb8\x8c\x87\x43\xca\xa3\xbc\x53\x20\x52\x27\xa8\x85\x7c\x2c\xa2\x11\xe2\x02\xb4\xff\x54\x8c\x92\xf1\x6c\x9e\x60\xaa\x70\xe9\xb4\xe0\x83\x1a\xd4\xa4\x15\xe6\x9d\x96\x10\x7d\x15\xbd\x8e\xb3\x36\x78\x43\xd6\x9a\xc2\x9f\x85\xe7\xc0\x66\x1c\xca\xd6\x58\x03\x1e\x44\x4e\xdd\xe0\x2c\x17\x91\xf3\xde\xba\x37\x2f\x6e\x1c\x82\xa1\x0a\x8e\xa2\x4c\x9e\xd7\xe1\xc0\x1c\x21\x96\x6b\xc9\x8c\x49\x89\x5e\x98\x8b\x07\xe6\xa2\x2c\x2e\xc7\xcb\x7c\xbb\xac\xb7\xe0\xdf\xb4\xdc\x50\xc9\x8c\xa7\x42\x53\xd1\x50\x68\x12\x4a\x94\xc5\xa6\x18\x84\x73\x52\x1a\x09\x0f\x58\xd7\x71\x8f\xf6\x07\x90\x21\xec\xf1\x43\x71\x2e\x89\x6d\x4e\x76\x7a\x59\xaa\xee\xbb\x33\xca\x57\x8d\x57\x60\xd7\xa9\x55\x50\xa2\xde\x7b\x6b\xa8\x02\x6e\x59\x7b\xf1\x79\x30\x64\xf6\x82\xb4\xda\x14\xf5\x56\xa3\xf6\xeb\x9d\x58\xc2\x8f\xf7\x9a\x21\x96\x45\x28\xb5\x71\x4c\x20\xd7\x7c\x5d\x68\x1f\xd8\x9a\x8e\xbe\x11\xe4\xd1\x11\xe4\x7a\x04\xb9\x19\xc1\xb3\x52\x2d\x8d\x94\x29\xce\xbf\xc1\x37\x74\x5d\x94\x14\x58\x57\x79\xdc\xac\x25\xb9\xd0\x3f\x4a\xba\x62\x25\xb8\xf5\x61\x8d\x56\x1e\x61\xcf\x8d\xac\xa0\xb8\x5c\xc8\xea\xb6\x28\xfd\x24\x1a\xbc\x53\xc5\xc5\x74\xc5\xed\x00\xef\x3e\x35\x88\x6d\xcd\x5d\xbe\x4f\x9c\x72\x77\xab\x14\xc6\x81\xca\x80\x10\x49\x05\xea\xe1\x10\x3e\xd6\x72\x93\xd7\xdb\xad\xe4\xd5\x4a\xb2\x55\x76\x31\xe9\x93\xff\x4c\xc7\xff\x86\xe0\x06\x05\x29\x3b\x89\x72\x76\x39\xc7\x15\xa1\xb3\xed\x5c\xae\x13\x49\x4d\xd8\x3a\x3d\x67\x30\x1f\x39\xf2\x82\xab\x79\x12\xbc\x52\x2d\x70\x63\x6b\x02\x76\x35\x5f\x5d\x9a\xb8\x95\x16\xbd\xaf\xbb\xd5\x66\x61\x9e\x8b\xcb\xb9\x1d\x2c\xff\x50\x5b\x33\xbe\x82\xf1\x4c\x19\x08\xf6\x1e\x7b\x99\x45\x55\x01\xca\xf4\x07\x72\x18\x5b\x43\xcd\xa8\x87\x44\x54\x85\x2d\xb1\xc5\x1f\x39\x0a\xdb\x73\x50\x89\xa2\x94\x2c\x1f\xb4\x2d\xea\xbb\x01\x29\x1e\xbb\x13\x89\xaa\x6e\xce\x5a\x94\xbe\x33\xff\xfa\x4c\xb3\x01\xf8\xac\x7f\xdf\x83\x6c\x8d\x17\x15\xc2\x59\xd8\x86\x37\xd3\x6a\x21\x26\x23\x15\x4c\xb4\x34\xd3\x5a\x92\x52\xdd\x50\xab\x6e\xa5\x1a\xf7\xd0\x0d\xf6\x06\xb7\x28\x41\x6b\xf8\xa9\x77\x1b\x2b\xb4\xd8\x58\xe9\x5b\x38\xa5\xa8\x83\x01\x0f\xce\xac\xa8\x9c\x1f\xbd\xe0\x61\x84\xc7\xb4\x5a\x06\x26\x5a\x4a\x38\xe1\x99\x39\x1c\xa6\x94\xb4\x5f\x22\xcc\xe3\xd7\x44\xd4\x33\xaf\x8f\xf6\xb0\x1d\x1c\x21\x98\x33\xbb\x33\xbc\xeb\x0d\x01\x34\x0e\x3a\x1e\x53\xdc\x09\x6c\x91\xc3\x59\xbc\xc7\x05\x39\x9d\xa5\x99\x7e\x96\x22\x4f\x5d\x89\x73\xed\xe5\x93\xdf\x6c\xe9\x70\xa8\xe9\x43\x31\xbd\x93\x44\x11\x65\xf4\x4c\x59\xde\xb3\xce\xa8\x3b\x1f\x08\x93\x07\xfc\x56\xf3\xe1\x30\x77\xeb\xf6\x70\xe0\xb8\x30\xfb\x5b\x6d\xb0\xaa\x7d\x87\x23\x10\x9a\xb6\xd3\xcc\xc4\x3c\x83\x92\x7c\x4a\x2a\x59\x56\xff\xfc\xe8\x3a\x58\xc3\x67\x05\x9b\x20\x9f\xa2\xcb\x4a\x8f\x76\x41\x26\x11\xdb\xda\xb3\xe2\x70\xe8\x46\x86\x96\x8c\xd7\x94\x13\x9a\xa5\x5a\xfb\xe4\xab\x74\x3a\x4c\x99\x20\x54\xdb\x6d\xe5\xed\xe8\x88\xce\xba\xb4\x3d\xd7\x14\xf9\xd4\x5e\x3f\x58\x11\x7e\xd9\x91\xe5\x37\x36\xf6\x2d\x88\xdb\x4c\xca\x17\x85\x5c\xfd\xf2\xaf\xef\xd5\xfc\xe4\x16\x27\xe3\x04\xe1\x25\x61\xe3\xa2\x16\x5b\x2a\xf0\x3a\xd8\x0f\x78\x63\x1c\xbb\xd0\xd9\x92\x2c\x0f\x87\x64\x97\x33\x9e\x60\x31\x4d\x2b\x42\xbd\x7e\xd5\x84\xb6\x3a\x5e\xa1\x2c\xad\x42\x27\x6a\x53\x5d\x2d\xd9\xb8\xf5\xe1\x90\xae\x89\x98\xd2\x0e\x1f\x9b\xc7\xb7\x5f\x85\xb2\xde\x2f\x87\x43\xb7\x18\xaf\x79\xce\x10\xc9\xda\x44\xaf\x01\x48\x73\x0d\xfa\x8c\x68\xa1\x05\x42\x67\x9b\xe1\x70\x0d\xbe\x03\x86\x38\x6d\x90\xbe\xb9\x77\x99\x4c\xaf\xb3\x64\x54\x1b\x3b\x49\x3d\xfc\xdb\xe1\x30\xdd\x91\x55\x4a\xe5\xd9\xb9\x25\x84\xec\x5c\x93\x60\x66\x34\x70\xa8\x21\xce\x60\xf4\x91\xe5\x52\x92\x2c\xb2\x2d\x56\x33\x92\x2d\x21\xa8\x6a\x56\x79\x54\x51\x8a\xb8\xa6\xda\xbd\xec\xe9\x42\x14\xfb\x1f\xe8\x1d\xdd\xfe\x85\xd1\x8f\x66\x0b\x34\x2a\xe4\x32\x2e\x30\x97\xc2\x49\x5b\x51\xa9\x74\x01\x39\xf0\x76\x6c\x5c\xf0\x25\x6d\xf1\xbe\xc9\xa2\xa2\xe2\x35\x34\xa2\x4a\xe4\xa9\xca\x2a\x9d\x5d\xbd\x3c\x46\xaf\x0c\x56\x11\x20\x29\x75\x06\x9f\x9a\x0d\x43\xcd\xb2\x2b\xad\x25\x9b\xec\xc1\xd4\xff\x11\x59\x41\xda\x5a\x01\x49\x91\x8f\xbb\x45\x09\x8d\x6f\xb7\x12\x62\xf4\x9e\x72\x95\xa1\xa9\xc9\xb7\x1e\xfb\xa1\x51\x69\x27\x4f\xc5\x57\xcc\x28\xdf\x04\xc0\xcf\x0a\xeb\xcb\xd3\x53\x63\x83\x3b\xef\x7b\x44\xbb\x82\xac\xf4\x11\x21\x6b\x2b\x86\x43\x41\x08\x29\x82\x95\x22\xcc\x4a\xd1\x22\x6e\x67\x2a\xbd\xe8\x6b\x46\x48\xf5\x3e\x83\xd1\xb1\x1a\x68\x02\xa6\xd6\x25\x50\x02\xa2\xce\xe0\x48\x6a\xa2\x97\x62\x39\x86\xbf\x6a\x41\xaa\x4c\x66\x55\x96\x66\xe6\x60\x71\x2a\x5e\xc3\x5f\xa1\xc6\xb3\xc2\x2c\x53\x03\x5d\x75\xda\x62\x43\xc7\xd1\x4a\x3a\x37\x02\xc1\x8b\x63\xda\x79\x7d\x44\x76\xc7\xee\xeb\x49\x64\x28\xc8\x6c\x7e\x72\x83\x1b\xcf\x8e\x73\xe5\x49\x78\x51\xc7\xb1\x2f\x34\xbd\x04\xed\xf4\xb9\x30\x8c\x73\xd7\xf9\x4c\xc5\xdf\x5b\xa7\xbe\xb3\x99\x9c\x72\xeb\xa9\x3d\xe3\xa3\x72\xde\xa4\x20\x6e\x1f\xbb\x98\x0b\x15\xdc\x17\x97\x2e\xd0\xe0\x70\x28\xcc\x47\x67\xc0\xa5\xae\x9e\x1e\x02\x95\xe9\x8b\xa2\x24\xed\x17\x87\x83\xbe\x56\x34\x1a\x8d\x96\x18\xa6\xc4\x84\x30\xcf\xac\xb2\x2a\x93\xc8\x27\x28\xad\x8e\x9b\x26\xaa\xab\x45\xcf\xd6\x64\xda\x79\x93\xa5\x9d\x57\x1d\x1b\x97\x4e\x0a\x1c\xb4\x03\xc9\xb1\x8c\x2a\xb4\xab\x94\x87\xe3\xd8\x29\x09\x45\x5e\x35\xa9\x9d\x1b\xcc\x11\xde\x76\x06\x71\x56\xcd\x65\x1b\x97\xa1\x11\x9b\xba\xdb\xf9\x79\x5f\x79\x77\x36\x4b\xff\xc6\x00\xae\x0b\x96\x70\x55\xb0\x2f\x8b\x3d\x08\x7d\x78\x3b\x53\x1a\xe7\x39\xc9\xa7\xb5\x79\xce\x3a\x6a\x75\x33\xfb\x5b\x37\xe5\xf7\xde\xf5\x68\x27\x94\xb0\xb1\x63\xa1\xd6\x8e\x25\xa3\x2e\xeb\x9d\xb7\x19\x9c\xc5\xae\xe1\x33\xa7\x70\x2e\x38\xb7\x01\x1c\xdc\xde\x00\xb4\x31\xcf\xb8\xb2\x6d\x46\x99\x68\xf6\x3a\xb8\xc2\x33\x29\x98\xa4\x0f\x4c\xb9\xf6\x6a\xfb\xd5\xec\x7c\x12\x40\xe4\xef\x4f\x31\xe0\x8c\x1a\x00\xb7\x2c\x32\x23\xf6\x9c\x8f\x18\x69\x6a\x1b\xf5\xd3\x20\xdc\xfb\x6d\x4b\x3f\x3f\xf8\xd4\xa3\x41\xbc\x42\xa8\xf9\xde\x51\x59\x68\x6c\xa6\xe3\xf6\xab\x7a\x04\xbf\x30\x1a\x94\x47\x51\x42\x5b\x51\x6a\xee\x4f\x55\xf0\xe0\x4f\xb0\xef\xef\x95\xee\xd7\x77\x22\x95\xcb\x0d\xdf\x91\xaa\x65\x59\x59\x39\x4b\x4a\x87\xa2\xac\xd0\x73\x7d\xc0\xa5\x05\xe3\x4c\xd9\x3f\x96\xdf\x57\x3d\xe8\xb5\x2d\x7a\x09\x86\x2b\x36\x30\xc9\x59\xbb\x9d\x00\xd1\x6a\xec\x20\xc7\x0b\xfd\xd1\xc5\x00\x7e\xa6\xd4\x19\x10\x77\xdd\xff\xfa\x03\xcd\xef\x28\xd9\x9d\x79\x40\x79\x4b\x17\x0f\x7f\xbc\xaa\xb6\x06\xf3\xa8\x3a\x1c\x66\xbb\xb9\x89\x8e\xb0\xb8\xa9\xd9\x76\xf5\xfc\xdd\x0f\x29\x3a\xe3\xc6\x6b\xc9\xdf\x40\xce\x77\x09\xb7\x1c\x20\xce\x27\xd8\x04\x33\x06\x35\x3d\x84\xd0\x94\x03\x05\xd7\xad\x6d\xcd\x87\x52\xc7\x4f\x9e\x52\x77\xf8\x50\xd0\xbb\xd3\xb9\x17\xc1\x11\x36\xdf\x2e\xdf\xa7\x81\xdf\x5d\x83\x6d\x33\xbb\x83\xfc\x10\x77\x4e\x31\x98\x7c\x79\xf5\xb2\x58\xd5\x5b\xfa\x4d\x5e\xd1\xd5\x5b\x25\x18\x82\x58\xc7\xa3\xe0\xd9\x5a\x57\xeb\x91\x99\xd0\xdf\x29\x1a\x03\x34\xd0\x85\xc0\x18\x5e\xec\xf2\xbd\x56\x01\xd0\xae\x77\x47\x1b\x48\x68\xbc\x70\x8e\x3a\xdf\xdc\x43\xda\x19\x9d\x1f\x0e\x69\xcf\x17\x22\x64\xfb\xe9\x47\x17\x97\x28\xd5\x08\x7c\xcd\xe7\xc3\x9c\x62\x5f\xcb\xf8\xe3\xdb\x1f\x88\x82\x7d\xf0\x5e\x3a\x83\xdd\xce\x27\x40\xfa\x71\x6f\x17\x3f\xef\x55\x5c\x36\xbd\x9b\x54\x7c\x8d\x54\xa1\x01\xeb\xdd\x20\x17\xd1\x9f\x6b\x5a\xd3\x95\x3b\xc5\xa8\xa0\xa5\x8e\x9e\xed\x41\x18\xcb\x93\x70\x05\xfe\x84\x15\xec\x9a\x77\x54\x58\x15\xb1\x1a\x14\xe5\x39\x56\x1d\xa9\xae\x33\x7c\xb1\xb4\xc6\x44\xe4\x48\xb3\xba\x43\xfa\xb3\x4a\xfc\xc6\x44\xfd\x7e\x68\x00\xab\x25\x03\x06\x30\xaa\xa1\x8b\xa3\x4c\x78\xf0\xd0\x16\x12\x11\xe1\x9e\x85\xdb\x8f\xed\x16\x51\x1e\x9d\x9f\xd3\xe1\xf0\xfc\xdc\x55\x48\x83\xb3\x71\xbc\x58\x28\x3f\x8f\xf2\x7e\xb1\x30\xeb\xbc\x94\xe2\x7b\xbb\x56\x00\x72\x13\x79\x29\x74\xdc\xa8\xc8\xb5\x5b\x07\x4e\x41\xae\x43\x96\x6f\x15\x58\x9a\xb9\x4b\x03\x6d\x9f\xa2\x97\x29\xf2\x71\xb2\x40\xb0\xe8\x94\x11\x19\x1a\x84\xcd\x3d\xa2\x45\x7f\x4b\x05\x60\x37\x8e\xe1\xc0\x44\xda\x15\x55\xff\xd4\xb7\x64\xaa\xca\x38\x81\xd6\xd8\x92\x3e\x25\xb7\x6b\x10\x32\x9b\x28\x70\x29\x3a\xb3\xfa\xba\x9e\x66\x9a\x81\xf7\x52\xc4\xa0\xfc\x91\x91\x1d\x16\xfe\x80\x08\x84\xc5\xd8\x83\xc0\x6b\x5d\x83\xf9\xfd\x6d\x10\x3e\x9f\x80\x88\xbd\xf2\x54\x70\x5e\xf7\x5e\x6b\x6a\xa6\x6a\x51\x2d\x78\xb7\x2d\x3e\x7a\xb7\xc5\x6c\xe7\xd0\x33\x63\xd1\xea\xd3\xa4\x2e\xb7\x89\xbb\xb0\x49\x93\x00\xb5\x45\x1b\x29\x39\xe8\x17\x0d\x97\xe3\x44\x9f\xc0\x8c\x09\x27\x41\x5b\xe5\x8a\xf2\x04\x22\xbf\xe9\xd6\x9c\x94\x55\x5a\x9e\x63\xfc\x76\x38\x6c\xbd\xa3\x2b\xe7\x05\xe0\xb1\x0a\xd1\x23\x37\x26\xaa\x47\xf5\x61\xa0\xc3\x64\xeb\xb4\x36\xa8\x48\xf2\xb8\xaa\xfd\xe3\xea\x41\xc9\x50\xe9\x96\xd4\xf2\xe0\xd2\xdc\x3a\xf2\x85\x40\xab\xcb\xd0\xd1\x9b\x6c\x44\x76\x36\x1a\xa1\x35\x49\x0b\xf2\x3e\x5d\xe3\x25\xe6\x33\x36\x47\x68\xbc\x65\xfa\x70\xa9\x70\x21\xc5\x67\x18\x4b\xad\x7d\x04\x29\xf9\x9c\x90\xad\x2f\xdd\x2b\xed\xc5\xb9\x94\xf9\xdb\xc9\x95\x88\x2d\xcf\x0d\xef\x23\x3a\x9b\x40\x6c\x18\x07\x37\x42\x9e\x41\x03\xb6\x08\xe1\x25\x29\x9b\xb5\x5d\x8d\xa2\xd8\x6f\x8d\x56\x68\xda\x7d\x35\xb6\x13\xa6\x70\x5f\xd7\xa0\xb2\x4b\xf3\x28\x0d\x42\xc1\xa1\x78\xc7\xe8\xc7\xec\x42\xb5\xcf\xac\xa9\xa0\x6c\x52\x19\x8a\x1c\xfb\xda\xad\x19\x3b\x8d\xda\x85\x47\xd3\x2e\x8c\x37\x71\x06\xa3\x84\xc6\x2b\xb6\x7a\x06\xe5\xbe\x2d\x0a\x50\x0f\x45\xba\x0a\xf0\x4d\x4a\x83\x10\xdb\x4d\x0e\x5e\xe7\xc8\xea\x0e\x33\x27\x60\x58\x19\xc7\xa7\x34\x78\x88\x0a\x0e\xe0\xc9\x6f\xd2\xf1\x08\x4d\x9f\xa0\xd9\x64\x1e\x38\x95\x77\x71\xd1\x6c\x71\xea\xd2\xa3\x9d\xa0\xdf\xbe\xb1\xb5\x1d\x66\x74\x9e\x0a\x88\xa8\x62\xe5\xb4\xab\x54\xc1\xf4\x22\xcc\xfb\x00\x8e\x7e\x2d\x64\xb8\xf5\xe3\xc8\x70\x9f\x89\x08\x07\x8e\x58\xeb\x38\xec\x18\x23\xa5\xa7\x75\x2e\x48\x69\x60\xc7\x72\x52\xfa\x62\x72\x7b\xe8\xbd\xda\x81\xb6\xfc\x12\x7b\x1d\x8b\x8d\xf4\xb8\xdd\x8e\xc7\x95\xbd\x7e\xc4\xb4\xe6\x97\x03\xcb\x19\x06\x3b\x7a\x9a\xf7\x75\xe1\x08\xbc\x5c\x30\x86\xe6\x4c\xf4\x31\xdd\x7b\x00\xe8\x8e\x18\x09\x79\x43\xa7\x33\x1e\x85\xb5\x53\x50\x47\x47\x2d\xa2\xfd\x33\xac\x0d\x91\x64\x5c\x35\xa2\x96\x45\xfd\xb3\xaa\x69\x40\xb4\x65\x47\xd0\xc6\x06\xd1\xa3\x2a\x80\x1a\x6b\xd9\x2d\x87\x0e\x00\x26\x4b\x78\x8b\xe7\x19\x68\xc9\x33\xfb\x11\xc5\x68\x40\x06\xa3\xc7\x80\x0b\x8b\x13\x23\xda\x3e\xa7\xfd\xa8\x88\xa1\x5b\x74\xe6\xcb\xc6\x2d\x46\xde\x1a\x20\x08\x65\x80\x60\x7e\x72\xf8\x39\x13\x73\xa4\x30\xde\x6a\x8e\x52\xf9\x73\xc6\xe7\x38\xd1\x2d\x04\x96\xe2\x14\xaf\x8c\x16\xe3\x0e\xf2\x54\x9c\x77\x59\xac\x99\x8f\x9a\xe6\xb6\xec\xa9\xae\x1a\xd6\x04\xd1\xe2\x0e\x3a\xa3\x44\x8b\xad\xe3\xde\xc9\xa6\x48\xe1\xb9\xb7\xde\xae\x66\xdb\xdb\xf9\x69\xe0\xf4\x19\xed\x6b\x73\xba\x14\xa6\xf8\x33\xc7\xfd\xc6\xa2\x5f\x96\x47\x58\x61\x1c\x43\x8e\x33\x48\xa4\x71\x96\xa1\x7b\xeb\x56\x0e\x87\xb9\x15\x13\xce\x89\x24\x4b\x79\x2c\xbc\x55\x89\xd0\x54\x37\x26\x1a\x4b\x83\xa2\x2c\xe5\xa4\x8d\xb4\x5d\x36\xf8\x58\x26\x1b\xa2\xd7\xca\x8a\x08\x21\x84\xf5\x0d\x75\x39\x1c\x9a\xbb\xdd\x00\x38\xa9\x00\x33\x05\x5d\x64\xe9\x45\xda\x2a\x10\x8e\x61\x2d\x8d\x15\xc0\xf7\x70\x68\x9e\xd2\x9e\x74\x36\x88\x87\xba\x8f\x61\x26\x0a\x82\x9c\x29\x80\x3d\x06\x56\xf4\x85\xce\x19\x97\x75\x30\x8f\x8a\xca\xe5\x31\x29\x72\xd0\x06\xac\x61\xb8\x20\x42\x1e\xa0\xa0\x8f\x8f\x28\x28\x8a\xf9\x19\x40\x43\xc9\xaf\xb7\x54\x5c\x07\x7b\x3c\x05\x33\x04\x75\x40\x58\xac\x0d\x45\x14\xb6\xc4\x1a\x04\x14\x78\xe9\x66\x7a\xab\xcc\x81\xe4\xf6\x37\xd1\x93\xcd\x0b\x72\x3e\xc1\x4b\x40\xf7\xcf\xbb\x4a\x98\x10\x25\x01\xe7\x0e\xd6\x60\x8b\x99\xd1\xf4\x01\x13\xec\x55\x85\xf0\x72\x1c\x78\x35\xa7\x05\xc2\xd5\x70\x78\x0e\x3a\xea\x88\xff\x36\x4a\x97\xe8\x28\xfe\xd1\xb2\xae\x44\xb1\x73\x00\x48\x03\x75\x16\x0f\x0a\xee\x01\x1e\x29\x40\x24\x0d\x7b\xa4\xa1\xa2\x15\xf0\x91\xe9\x72\xa3\xe6\xd9\xd6\xfb\xc8\x54\xf7\xcd\x1e\x8f\xcf\x99\x98\x2b\x4f\x06\x67\x5c\x15\x42\x42\x1d\x0e\x75\xc7\xa3\xbd\x31\x34\xa2\x2d\x5e\x7b\xf7\xbb\xea\x46\xd9\x59\xa3\xc5\xce\xaa\xb3\x7c\xec\x16\xb0\x4e\xd1\x5d\xd1\xa9\xe4\xf9\x83\x01\x70\x49\xbb\x83\x92\x1a\x1f\x42\x6f\x70\x00\xe3\x4f\x72\x22\x85\xbe\xc4\x86\x3d\xca\x71\xe2\x61\x2f\xe3\x02\x35\x67\xb9\x86\x89\xff\xf1\xed\x0f\x81\xbe\xaf\x50\x41\xc1\xcc\x41\x51\xf9\x98\xd7\x3f\xbe\xfd\x01\x74\x18\x41\x7d\xee\xdb\x63\x75\xc2\xea\x34\x89\x8f\x55\x0a\xc2\x7f\x3e\x0e\xa4\xe9\x20\x3d\x0f\xbf\x01\x23\x91\x8f\x43\xf9\x24\xb4\x25\x29\x65\xa6\x30\x81\x7e\xaf\x66\xb8\x7b\x51\xd5\x2b\x6b\x9c\x7d\x50\x64\x54\x66\xf7\xd2\x00\x16\x1a\x9b\xa6\x2b\xba\xa5\x82\x0e\xc4\x8c\xce\xb1\x98\x19\xe7\x81\xb9\xc1\x06\x8e\x7a\x8a\x94\x11\x2f\x0f\x87\xe6\x28\x0f\x56\x79\x6c\xf2\xb8\xe3\x5c\xa9\xc2\x42\x1a\x27\xe8\x52\x8a\x7a\x28\xde\xa9\xb8\xe5\x9f\x24\x90\x84\xd0\x29\xcd\x92\x5c\x8a\x39\xea\x42\xe9\xfb\x77\xaf\x5f\x8d\xd5\x61\xc5\xd6\x52\xf4\xc9\x12\x08\x43\xd6\x73\xaf\xd7\x2a\x3a\x3e\x46\x00\xb9\x2a\x4f\x90\x70\x90\x4a\x7d\xdf\xa6\xe5\x98\x1e\x57\x18\x8e\x4b\x33\x48\xa5\x1e\x24\xe8\xe7\xe3\x2e\x83\xb1\x9e\xde\x14\xc5\x96\xe6\xfa\xf2\x2c\x11\x65\x4d\x21\x1c\x57\x96\xf0\x7a\x77\xa3\x5c\xdd\xc5\xf4\x15\x3c\xa7\x14\x29\x0b\xd8\xd7\xeb\x14\x05\x63\x04\x03\x7f\x85\x52\x18\xab\x7d\x5e\x56\x92\xa7\x45\x99\x1c\xa5\x7d\x59\x73\xda\xe3\x75\x12\xb7\x7a\x20\x96\x9d\xf1\xbd\xa4\xa8\xb3\x58\x65\x03\x00\xa1\x4f\xb9\x14\xf1\xf2\xfd\x8c\xcd\xd1\x70\xc8\xfb\xdd\x5f\xc4\x8c\xcd\x87\x43\x3b\xd4\x6c\x0e\x02\x75\x9f\xf8\xef\x63\xf9\x11\xe5\x59\xbf\x86\x60\x5f\xca\x0a\x0e\x94\x60\x70\x8e\xa5\x51\x11\x01\x4b\x6e\x4f\xeb\x19\xf7\x65\xb1\xa4\x95\x16\x3c\x5c\x7d\xfe\x2d\x70\x8e\x05\xae\x70\xa9\xe3\x03\x9a\x6b\xe5\xca\xe2\xe6\xc6\xf0\x7c\x55\x1e\x86\xf4\xfd\x76\x5a\xf4\x0a\x2b\x1d\x51\xb1\xc0\xb3\xdc\x02\xeb\x8a\x16\xb0\x6e\xd5\xcc\x91\xa7\x26\xa8\xb5\x9a\xa0\x86\x59\x7c\xac\x27\x91\x41\x6c\x79\x55\xf4\xda\x13\x1a\xf4\x61\x00\xbc\xe8\x30\xd3\x0f\x0d\xae\xe2\xaa\xbe\x76\x39\x81\x90\x1f\x60\x57\x54\x28\x9f\xd5\xf3\xc3\x21\x05\x18\x8a\x6a\x56\xcf\xb5\xcd\xd3\x62\x5d\x6f\xb7\xf7\xef\x96\xc5\xbe\x83\x98\x6c\x70\x11\x8f\x24\x29\x5a\xd3\x56\x4a\xea\x0e\xa3\xd5\x9e\xb3\x1e\xf0\x68\x46\xde\x59\xfa\x60\x5a\xb4\xb9\x5f\x01\x48\x33\x97\x9c\xc1\x96\xf9\x4c\x7b\x95\x32\xc8\x6b\x35\xd6\x11\xb3\x02\xd6\x32\x2b\x40\xb8\xd4\x96\x86\x47\xb7\x62\x37\x9f\x62\x41\xfe\xfc\xe6\x25\x15\x79\x54\xa9\xa5\xd3\x7b\xd6\x1f\x81\x2a\x1c\x8c\x0e\x1a\xdc\xda\xc7\x11\xc6\xc1\x57\xe9\x1a\x50\x44\xbc\x25\x74\x56\x5f\x5c\xce\xb5\xf1\x10\x09\xae\x9c\x66\x5b\xe0\x60\x96\x8e\x45\x54\x8e\x1f\xe7\x13\xbc\x21\x00\x63\xf8\xd0\xe0\x95\xc1\x01\x51\x46\x5a\xf5\xd3\xd1\x48\x20\xb6\x4e\x3d\x56\x42\x75\x0e\xa4\x4b\xa4\x74\x5e\x4a\x8d\x5b\xfa\x1e\x95\x6c\x34\x42\x69\x45\x36\xb3\x5c\xee\x34\xf8\x24\x29\x8e\x39\xcf\xd0\x70\xd8\x76\xb7\x01\x7d\x6d\xdb\x9a\x78\x33\xcb\xe7\x58\xfe\x47\x0a\xbc\x52\xf6\x75\x85\x0e\xbd\x69\x96\xcf\x1e\x03\x3d\x43\x0d\xf8\x0a\xad\xc9\xf9\xa5\xb6\x19\x04\xac\x8a\x15\x60\x55\xec\x2d\xd4\x91\x53\xe5\xba\x51\x21\x3b\x84\x77\x52\xa6\x8c\x2d\xd9\x5e\x67\x60\xef\xea\xdd\x5f\x8f\xc1\x82\x30\x96\x23\x98\x11\x6b\x39\x52\x7e\xc5\x8c\xc7\x6f\xd1\x19\x54\xb0\x26\x01\xa1\x3e\x27\x13\x5c\x91\xc2\x1f\xd3\xfc\xab\xea\xe9\x68\x94\xa3\x74\x4b\xd2\x5a\x7d\x9a\xe5\x9e\xf1\x09\x1f\x0e\x6b\xf8\x21\x59\xd1\x2e\x7e\x82\x4d\xd2\xfd\x24\x33\x38\x57\x55\x48\xa4\x7d\xd5\x87\x43\x29\xca\xc5\xf2\x0c\x87\x29\x9f\xc5\x3e\xcc\x09\x9f\x6d\xe7\x58\x9f\x1c\xf2\x59\x2e\xe8\x63\x1b\xf4\xa4\x31\x6e\x59\x50\x6d\xba\x2e\x2a\x7d\x76\x3a\xca\x7f\xac\x77\xa4\x0b\x32\x81\x70\x0b\xde\x48\x17\x5f\xe5\x4f\x47\xa3\x02\x55\xea\xf5\xac\x98\xe3\xb4\x26\x95\x1d\x69\x21\x97\xaf\x1a\xe9\xaa\x67\xa4\x21\x49\x6c\xa4\x2b\x6f\xa4\x21\x91\x1e\xe9\x69\x7d\x4e\x48\x2c\x8b\x5c\xb1\xb3\xd8\x87\x39\x11\xb3\xda\x0e\xb4\x7c\x46\x99\x72\x32\x5e\xc7\xdc\x74\xaa\xa8\x9b\x4e\xa5\xdd\x74\xa8\x76\xd9\x40\xb8\xaf\xb2\x8d\x15\x01\xb1\xea\x3c\xae\x5a\xae\xc2\x92\x6d\x5c\x6e\xe8\xaa\xb6\xc6\x06\x60\xb3\x11\xd5\x31\x3d\x7a\xe3\xb6\xa8\xba\xdf\x94\x1d\xb7\xa9\xe3\x35\xb0\xfb\xda\x3e\xc6\xa5\xac\xd4\xcd\x1b\x4e\xf4\x05\x79\x58\x47\xa2\x61\x07\x82\x20\x0c\x9d\x38\x0e\x0a\xd0\x25\x96\xbf\x0b\xed\xf2\x19\xa7\xb5\x82\x64\xde\x58\x9b\x04\x4f\x91\x16\xe6\x8f\xbe\xec\x1e\xdd\xca\x97\xec\xcc\x5d\x40\xfa\x81\x26\x14\x88\xa0\x01\x49\x38\x9f\x38\xf0\x54\xe3\x7f\xd5\x3f\x09\x11\xfb\x88\x6e\x22\x38\xba\xca\xb1\x2a\xc4\x30\x76\x91\x74\xc7\x26\x14\x1c\x8f\xf1\x62\x97\x97\x1f\x40\x2f\x70\x55\x29\xa1\x36\xa6\x2b\x0c\xec\x1d\xc6\xf9\x6a\x05\x92\xdb\x82\x55\xf0\x26\x96\x2f\xd0\x23\x87\xd9\x0d\x60\xfe\x62\xb9\xa5\xb9\xc9\x0c\xdf\x1e\xad\x59\x6d\x38\x95\xbb\xa3\xbd\x89\x80\xc5\x28\x60\x1d\xb0\xc8\x76\x50\xbe\x98\x85\x36\x79\x45\x8f\xbe\xb7\x98\x71\xc5\x82\xf1\x79\x4c\x33\x65\x5c\x1f\xe4\xf7\x59\x69\x2f\xc8\xf2\xc3\x21\xed\xb9\x76\x1c\x83\xa1\xd0\xb3\x0d\xdb\xae\x5a\x7a\x27\x8e\x1f\x8c\xc9\x60\x76\x3e\xf1\x71\x86\x59\x83\xd0\xf8\xa6\x28\xc0\xfd\x56\xd5\x44\x72\x84\xf3\xc0\x46\xf7\xb6\xe5\x60\xab\xad\x69\xa9\x45\x9e\x7e\xca\xbf\x26\x93\xa7\x17\x17\x5c\x52\x64\xa7\xb1\x64\x24\x2d\x89\xc2\x71\x36\xb7\xc5\x1a\x78\x55\xa4\x0c\x97\xe6\xea\xab\x91\x05\xdf\x90\x07\x29\x86\x6b\xb3\x8b\x97\x6d\xef\x3e\x38\x3c\xf4\x62\x8b\x10\x22\x13\xb1\xa0\x35\xcb\xed\xb8\x08\x72\x6a\x66\xae\xd9\xf3\x33\xd9\xb3\xd0\x1e\x96\xad\x53\x7e\x4e\x08\x03\x9f\x87\x8f\x29\x35\x48\xc4\xc8\x5e\xd4\x95\xe3\xc8\xa2\x4e\x05\xc4\x9d\xe8\xb9\xe4\x4a\x0b\x2c\x10\xd6\xfc\x8b\x94\xa3\x16\x5e\xc1\xc6\x70\x22\x57\x46\x4f\x9f\x5d\x76\xae\xca\x46\x4d\xdb\xa9\xd8\xc8\x8f\xb3\xb9\xf5\x89\x3c\x63\x00\x1f\xde\x56\xde\x46\xdf\x29\x2b\x92\xf7\x9b\xb2\xf8\xc8\xa7\xc1\xaf\x8c\x9e\x81\xd2\x16\xb8\x36\x81\xc0\x77\x86\x8d\x77\xb4\xaa\xf2\x5b\x6a\x3f\xd8\x37\x80\xcf\x20\xf2\xe5\x07\xef\x13\xfc\x46\xb8\xa3\xf5\x66\x2e\x0d\x42\x4f\x53\x4e\x96\x05\xaf\x8a\x2d\x45\xaa\x7e\x2d\xb6\x81\xd7\x80\x64\xaa\x61\xa0\x06\x1f\x37\x6c\x4b\x07\x5a\x26\x63\xfc\x56\x69\x14\xb3\x41\x32\xe2\xda\x4a\x03\x04\xd4\x06\x6b\x32\xd9\xab\xc2\x91\x3b\xf9\xd8\xfa\x50\x42\x1c\x53\x2a\x70\xb3\x3e\x2c\x70\xb5\x0b\x7f\x71\x64\x21\x74\x97\x81\xcd\x6f\xb7\xf8\x34\x3d\x52\x42\x0e\x93\x9d\x89\xf1\x9e\xdd\x15\x46\x51\x78\x4e\x08\x6d\x50\xd3\xb8\x3d\xbb\xf0\x5c\x62\xdb\xd4\x42\xce\x48\xe0\x92\x54\xb4\x8d\xcb\x47\xc9\x22\x19\x59\x83\xe3\xeb\xb4\x74\x46\xf0\x98\xa9\x8f\xb8\x40\xd3\x22\x4b\x12\x67\xab\xfc\xf1\x17\x55\x89\x73\xd2\xb6\x5e\x2e\xa6\x3c\x2b\xc0\x7a\xb9\xa7\x29\xed\x0c\x6c\xca\x33\xa6\x32\xe0\x1c\x4d\xf3\xa0\x79\xd7\x6d\x59\x53\xb8\x1b\xc7\x12\x41\x83\xe4\x6f\x65\x16\x96\xeb\xdb\x77\xe7\xb1\xc4\xc1\x73\xaa\x93\xa2\xeb\xc6\xc7\x86\xc3\xc2\xd5\xfa\xa9\xc5\xf9\x12\x6e\xe0\x0e\xc0\x41\x81\x2a\x46\xc3\xb8\x29\x38\x5d\x7a\x61\x59\x89\xe4\x59\xce\x7f\x27\x06\xfa\xb8\x1f\x28\x74\x84\xc1\xef\x20\x0c\xf6\xef\x06\x37\x74\x99\xd7\x15\x1d\xdc\x17\x75\x39\xc8\xf7\xfb\xc1\x26\xaf\x64\xf2\x35\xe3\xac\xda\xd0\xd5\xc0\x69\x3d\xe4\xce\x60\x5c\x14\x03\x26\xaa\xc1\x9a\x95\x95\x50\x1b\x65\x3c\x78\x5f\xb8\xe2\xb9\xa9\xa1\xe0\x83\x15\x00\x3a\x40\x4f\x55\xd2\x6a\xb0\xaa\x4b\xa5\xda\x77\xe5\x62\x59\xf9\x60\x99\xf3\xc1\x32\xdf\x6e\x07\xff\x05\x58\x0f\x29\xfa\x2f\x59\x82\xd8\xd0\xc1\x7f\xb9\xf5\xfb\x5f\x03\x45\x66\x06\xfb\xbc\xaa\x64\xe3\x0a\x95\x02\x2c\x13\x9e\x78\x5e\xe3\x4f\x9c\xcf\xf8\x7f\x0d\x36\x45\xf1\xa1\x1a\x27\xa8\x51\x27\xe2\xf9\x65\xd7\xc7\x4f\x4b\x08\xde\x91\x54\xca\x23\xa9\xbc\xb8\x90\x47\x52\x4d\xd2\x8a\xd0\x59\x39\xf7\xce\x21\x8b\x33\xe1\x3d\x4a\x41\x16\x8c\xb0\x26\x20\x1a\x29\x62\x23\x85\x7f\xb3\xb3\x65\x65\xa9\x26\xdc\x04\x4e\x09\xcf\x49\x2a\x42\xb9\x39\x58\x78\x9c\xe5\xe4\x7c\xd2\xa8\x6b\x9e\x9b\x19\x03\x61\x7d\x8b\xb6\xfe\x85\xb1\x1f\xdf\x09\x39\x74\x8c\xf3\x7c\x38\x3c\x17\x28\xba\x2c\x5e\x15\x62\x23\xa7\x42\xb3\x30\x30\x90\xe1\xe2\x18\x0f\xbe\x5b\xc3\xdc\xac\xd8\x4a\x27\xf3\x52\x61\xe0\x9e\x06\xd0\x19\x98\xbd\x1b\x3a\x80\xb5\xb4\x1a\xdc\xdc\x0f\x54\x87\x65\xf9\xa2\xac\xe9\x60\x5d\x16\x3b\x6f\x6d\xe8\x61\x94\x92\x4e\xee\x61\x68\x63\x28\x00\x32\xb9\xc6\x88\x62\x70\x53\xdf\xdc\x6c\xa9\x9c\x41\xbb\x2f\xde\x75\x24\x42\x42\xbb\x6c\xb1\x1c\x20\x6d\xa1\x00\x90\x8d\x39\x29\x42\x61\x51\x0a\xd2\x7b\xa7\xe1\x52\x32\x62\xee\xcb\x88\x00\xbe\x55\xce\xd1\x98\x55\x9a\xb9\x58\x4d\xab\x19\x03\xce\x6d\x4e\x98\xce\x9d\xf9\xaf\xac\x22\x29\x65\xc6\x87\xde\x43\x6a\xb5\x5d\x78\xed\x33\x82\xa7\xb8\xc8\xb1\x75\x0a\xa8\xf3\x06\xb4\x51\x93\xca\x3b\x9d\xf9\x4d\x2e\x36\x29\x97\x94\x88\xcf\xb8\x17\x5a\x8b\x2b\xea\xa8\x62\x28\xc5\x0c\x43\x9f\xba\xdb\x15\x6a\x6f\x57\x20\xe6\x9b\xd6\xa4\x76\x3e\xba\x30\x72\xb8\x88\xa7\x80\xcb\x99\xdc\x43\xa3\x0c\xa9\x79\xcc\x11\xd4\x27\xc6\x08\xae\x41\x83\xb6\x30\x3e\xa8\x40\x7d\x0c\x0e\x33\x8c\x53\x23\x84\xa2\xb4\x0a\x5b\xed\xb7\xa8\xea\x76\xa8\xdb\x89\x93\x8a\xf6\x43\xe7\xc5\xca\x0f\xc6\x04\x35\x6e\x9e\xaf\x7c\x36\xa1\x25\xe6\x61\xd1\x11\xf0\xa8\x15\xde\x02\x8b\x9b\xc3\x41\xc4\x4c\x49\x39\xc2\xa2\x4f\xc2\xdb\x97\xc5\x8e\x55\x94\xd0\xf1\x12\x20\x26\x7c\x01\x04\x4c\x45\xc7\x2d\x11\x29\xa5\xd6\x06\xf8\x4c\x8c\xbb\x02\x90\x94\x6c\xbc\x3d\xf8\xa1\x7d\x22\xd2\xce\x35\x83\x70\xd7\x0c\x45\x0f\xea\x71\x81\x86\xc3\x32\x2d\x30\x9f\x15\x73\x15\x72\x60\x56\xcc\xbd\x5a\x5e\x5a\x79\xda\x33\x6a\x91\x62\x04\x99\xd1\xf9\x53\x66\x9d\x0a\x9f\xaa\x48\xc0\x5c\x6e\x40\x75\x42\x22\xdf\x16\x94\x10\x22\x5c\x7c\xb1\xa0\x51\x25\xe1\xda\xfe\xb3\x42\x4c\x71\x8f\x25\xb4\xc1\x35\xe2\xbd\x4f\x6e\xbc\x3b\xd9\x07\xed\xe1\xce\xb5\xb3\x66\x95\xc5\x8c\x04\x3e\xe6\xd5\x8f\x15\x5d\x65\xe7\x97\x46\xdd\x98\x16\x04\x78\xb4\x62\x2a\xbb\xa7\x1e\x51\x26\xc0\x9d\x4b\xaf\xac\xc2\xb4\x09\x9b\xd6\xe1\x1c\x65\xfb\xf1\xeb\xb7\x6f\xbe\xbd\x7a\xb5\x78\xfd\xe3\xfb\x1f\xae\xdf\x2f\xde\x5e\xbf\x7a\x7e\xfd\x76\x38\xd4\xa5\xa5\xc6\xcd\xb7\x1a\x2f\x16\xe0\x3b\xb4\x28\xca\xfd\x26\xe7\xd5\x62\x71\x38\x1c\xfb\x6a\xbb\xa2\x82\xcb\x24\x9d\x04\x49\x73\xac\x8f\xe0\x7d\xd2\x5b\xb8\xf9\x32\x53\xcd\x9c\x93\x1c\x07\x0a\x1b\x94\x26\x70\x60\x2b\x94\x9a\x00\x43\xbd\x41\x28\xa3\x24\xc7\x0f\xce\xda\x37\xa3\xd8\x58\xe8\x66\xb9\x37\x49\xcf\x42\x89\x4d\x8d\xac\xe7\x99\x6e\x04\xb0\xc3\x21\x15\xb6\xad\xbb\x9c\xf1\x56\xdf\xb9\xcf\x67\x2a\x1f\x5c\x65\x39\xec\x46\xe0\xa1\x69\xb0\x40\xcd\x5d\xe8\x10\xb7\xcb\xf7\xbd\x5a\x86\xd0\x8d\x28\xed\xbc\xb3\x60\x96\x41\x89\x7e\x8a\xac\x93\xa7\x31\xa0\x40\xfe\x4b\x1d\x9f\x49\x7d\x69\xb0\x3b\x1b\xa2\x46\x06\xb3\xb9\xe3\xf9\x4b\xdf\x59\x30\x12\x59\x69\x34\x02\x01\x5d\x4a\xe4\x10\x22\x9d\xcf\x3b\xe1\xad\x15\x9b\xc2\x1c\xba\x83\xc7\x5e\x09\x72\xf9\x54\xb8\xd2\x84\xb1\x09\x97\x42\xb5\x50\xc7\x94\x17\xe8\x0b\x17\xe4\xde\x44\x15\x7b\x5a\x58\x13\xec\x73\x49\x2a\x18\x7a\x8a\x0a\xcb\x07\x73\xe8\xb1\x15\xed\x98\x76\x84\x34\x79\x10\x6a\xac\x5c\xf5\xcf\x82\x71\x28\xbd\x09\x5c\x15\xef\x4e\x72\x55\x34\x4e\x79\x8f\x84\x9c\x38\x35\x94\x43\x34\x5a\x9f\x6f\x33\x6c\xa6\x85\xfe\x1a\x21\x37\xb0\xf8\xd2\x38\x56\x90\xfb\x8b\x43\xd8\xb8\x70\x1f\x30\x2e\xca\xdc\xc5\x84\x34\x28\xb5\xd3\x08\x11\xe1\x6f\xd8\xda\x84\xc7\xa2\x03\x86\x76\xa7\x24\x34\x94\xb0\x11\x4a\xcd\x15\x67\x50\xa0\x75\xed\x09\x3e\x75\x2d\x59\x4b\xac\x60\xd0\x55\x38\xe4\x62\x38\xf4\x91\x5a\x59\x18\x11\xb9\x1d\x3d\xae\xb1\xf7\x9c\x5e\x77\x7b\xa2\xc8\x96\x38\xd7\x17\x9e\x61\x9c\xe4\x1c\x57\xed\x08\xc9\xed\xd8\x96\xe5\x23\x0b\x56\x78\x5a\xed\xd9\x3c\x24\xa7\xf1\x8c\xda\x31\xf5\xb3\x9c\x71\x8f\xf8\xde\x9e\x14\x45\xb9\x6d\x76\x1e\x09\x35\x94\x4a\xee\xc5\x38\x36\xfb\xaa\x15\x8b\x7f\xe1\x22\xf8\x68\x7f\xf9\x80\xb9\x08\x23\x44\x4c\xe9\x78\x5f\xec\x53\x34\x6e\x85\xf8\x78\xb0\xf4\x3e\xa3\x16\x4d\x50\x59\xbb\x67\x14\xfb\x89\x39\xc4\x8f\x8b\x98\x2f\x44\xda\x4e\x3b\x6a\xf9\x69\xf7\x55\x04\x03\x20\xa3\x91\x97\xf6\x5a\x78\x26\x5a\xac\x7d\x83\x69\x1b\x59\x8f\x74\xae\x22\x24\xaf\x07\x18\x55\xef\x64\x4a\xe3\x01\xa4\xfd\x7f\x48\xb7\x50\x90\x17\x4e\x8c\xe6\x5b\x40\x64\x06\xb9\xcf\x23\x28\x09\xf2\xcc\x28\xe1\xac\xc0\x20\x49\x99\x58\xbd\xc8\x39\xd5\x54\xa4\x44\xb8\x34\x48\xf7\x0c\x97\x0e\xef\xc3\x01\xe7\xa7\x25\xae\x24\x4b\x1c\xf4\x02\xc2\x04\x61\xda\xbd\xd3\xea\xce\x06\x44\x3c\x81\x1b\xc3\x2f\xa5\x83\xb3\x39\x5e\x86\x61\x44\xd7\x24\x49\xbc\x2b\xf1\xad\xeb\xb3\x40\x9c\x6c\x67\x62\x8e\x19\xc9\x55\xd0\x26\xab\x71\x58\x0e\x87\x29\x1b\x0e\xc1\xe8\x66\x39\x4d\x6b\xa2\x5c\x8c\x20\xda\xe1\xeb\x75\xca\xd0\x94\x8f\xab\xfa\xa6\x12\x65\xca\x5c\x98\xca\x8c\x2b\xb4\xf6\x52\xd9\x03\x2c\x67\x6c\x8e\x6b\x84\xb2\xe0\x25\xe6\x08\xe1\xf5\x88\x24\x59\x06\xd1\x21\xb3\x64\xe4\xbc\x71\x47\x6b\x8b\xee\x52\xe0\xe4\x22\x01\x03\xbc\xe3\xf1\x42\x62\xa3\x48\x1e\x1a\xaf\xcb\xd4\xef\x72\x05\x37\xff\x5e\x50\x6e\xae\x6c\xfc\x9c\xcb\x0a\xa9\x41\x2a\x69\x43\x94\xc6\x42\xb6\x10\x3e\x9b\xcc\x95\x21\x74\x4b\x0f\x28\x65\x78\x77\x03\xa1\x42\x69\x3b\xe0\xac\xae\x1d\x34\xac\xff\x3a\x2d\x7d\x4b\x53\xe6\xd4\x20\x6f\xca\xe2\xb6\xcc\x77\xbb\x5c\xb0\xa5\xa7\x94\xaa\x06\x37\xf7\x83\x1f\xdf\xfe\x30\x58\xe6\x9c\x17\x62\x70\x43\x07\xa0\xda\xf8\xc8\xc4\x86\x79\xd6\xa7\xe3\xc1\x9b\x2d\xcd\x2b\xf8\x0a\x5a\x0b\x65\x8d\xca\xd5\x65\x6f\x25\x68\xae\x2c\x51\x49\x0e\x7a\xc5\x12\xcb\x7e\x91\xb2\xf1\x87\xc8\x27\xff\x31\x14\x13\x87\xf4\x03\x8e\x71\x6a\x9b\x29\x2b\x7f\xc9\x8e\xb5\x69\x1e\x47\x4a\x5a\x8a\xb2\x69\xa3\x51\x63\xb3\x0b\xd4\xa1\x97\x1c\x0d\x87\x6c\x34\xb2\xac\x32\x21\x84\x29\x18\x91\x82\x3c\xf9\xc7\xf8\xc9\xad\xe3\x16\xf3\xd6\xad\x0e\x69\x71\x6f\x7a\x6f\x28\x7a\xc0\x7c\x1f\x3a\xc3\xa1\x4d\x30\x1f\x5d\x22\xc7\x94\x61\x70\x67\xb5\x5b\xa1\x44\x2a\x70\x77\x41\xca\x88\xf6\xa4\x72\xd5\x43\xe5\x21\xaf\x09\x5c\xc0\x80\xf1\xd8\x05\x41\x9a\x16\xe4\xa1\x41\x33\x36\x27\x0f\xb9\x0a\xd1\xd1\x60\x46\x0a\xa4\xf5\xf3\xe7\xac\x3d\x2a\xb9\x51\xe0\x75\xcc\xec\x65\x6f\x66\xf9\x5c\x07\x03\xca\xab\x4c\x9e\xcc\x92\xa0\xe6\xf3\xc3\xc1\x94\xae\x23\xaa\x68\x64\xab\x26\x34\x72\x2a\xc0\x00\x09\x0c\x59\x3c\x51\xa6\xf6\xe2\x10\x76\x20\x9d\x86\xc3\x34\x01\xab\x42\xf0\x44\x93\x0f\xb3\xc9\xbc\x15\xfd\x4d\x81\x5c\x3c\xd1\x41\x54\xbb\xc7\xba\x49\xe0\x31\x0d\xfa\x06\x27\x96\x62\xc7\x3e\x31\x5e\x3d\xb1\x3e\xcf\xfb\xb2\xf8\x74\x7f\x2c\xe5\xb2\xe0\x22\x67\x9c\x96\x47\x92\x2e\x8b\x7d\xdf\x87\x9d\xe4\x96\xa2\xdf\x58\x75\x41\xe5\x3e\x39\x56\xb9\xb2\xa4\x3c\xda\x3a\x59\x81\x24\x18\xc7\xc6\xc3\x61\x3a\x1e\x49\x04\x75\x1d\xe9\x64\x30\xb6\x8f\xa7\x5b\x16\x25\x5d\x3c\x3e\x11\x4a\x35\xaa\x6f\x9f\xcb\xe3\x5d\xdd\xdf\xf7\x76\x54\xa7\xa1\xbc\xde\xd1\xfe\xe1\xd0\xa9\x2e\x1e\x9d\xf4\x02\xa0\x86\x1f\x2b\x67\xa7\x48\xf5\xe2\xb4\x5a\x95\x56\x6b\xa1\x3b\xac\xad\xfb\x8f\x76\x46\x81\x8f\x1c\x4b\xa2\xf5\x62\x47\x66\x83\x7e\x12\x4f\xca\xea\x6e\x1f\xfd\x28\xb7\xe1\x45\xb1\xee\xcd\x68\x3d\x50\x4e\x05\x66\xc1\x3b\x7c\x8f\xef\xf0\x2d\xbe\xc1\x0b\xfc\x11\x5f\xe3\x4f\x1d\x56\x59\x59\x61\x13\x3a\x2e\x38\x30\xd8\xda\xec\x90\xd0\xf1\xdb\x77\x7f\x79\x43\xe8\xf8\x8d\xea\xd3\x1b\xd9\xa5\x97\xb2\x9b\x84\x1a\x1c\x16\x42\xc7\x8a\x4f\x55\x11\xef\xde\xa9\x31\x24\x74\xfc\x52\xcd\xc4\xb5\x9d\x08\x42\xc7\xaf\xed\x1c\x4a\x06\x10\xb4\xd7\x5c\xbc\x28\x4a\xf9\x2b\x2c\xdc\xcf\xf5\x4c\xaf\x32\x42\xc3\xb0\x7a\xf0\xa9\xa4\x4a\x80\x82\xd2\xe5\x03\x94\x23\x93\xca\xbd\x63\x7e\x58\x70\x14\xc8\x63\xf6\x27\xa1\x06\xeb\x88\xd0\x71\xcd\xd9\xcf\xdf\xc8\x87\x92\xee\x8a\x3b\x7a\xe5\xf5\xc1\x24\xb9\x82\x92\x24\x8b\x6d\xde\xb0\xea\x5a\xce\x92\x4d\xe0\x5e\xc3\x71\x4b\xc7\x9a\xda\xc0\xd3\xfe\x1e\x6a\xd7\xb4\x2b\xe8\xaf\xbe\xb6\xbb\x0f\x5e\xbe\x28\xf3\x1d\xfd\x58\x94\x1f\x5a\x3d\x34\x27\xb6\x96\x1c\x43\xa5\x72\x4a\x71\xf2\x5a\x6f\xf1\x07\xb7\x0b\xb2\xf3\x09\xbe\x0d\x7d\x16\x0d\xcf\x6f\xb8\x15\x49\xe2\x7b\x8b\x6c\xb5\xe5\xe4\xb2\x5b\xf9\x8e\xd6\xd1\x1d\x84\x13\xab\xe1\x27\x75\x21\x32\xf2\x27\x96\x5f\x9e\x54\xbe\x3a\x71\x4e\x2a\x90\x9d\x58\xa0\x3e\xa9\x4e\x2a\xb3\x38\xa9\x4c\xbd\x32\x4f\x2c\x33\x3f\xa9\xcc\x2b\x75\x22\x9e\x54\x62\x75\x6a\x2b\xed\xb6\x3a\xb9\x60\x3f\xd3\xd1\xd2\xbd\x2d\x7c\x72\xe1\x5e\x9e\xe3\x63\x71\x72\x89\x57\x47\xcb\xf1\x29\xcf\xc9\x45\xfa\x99\x8e\x96\x6e\x48\xdc\xc9\x25\x9b\x0c\x47\x4b\x55\x14\xf4\xe4\x32\x55\xf2\x47\xd6\xc1\xe7\x2e\x81\xc7\xfb\xfe\xcc\x63\xcf\x4e\x2a\xb6\x3e\x69\xc9\xbe\x72\xfc\xdc\x49\xa5\x6e\x4f\xdf\x5a\x6f\x14\x27\x71\x52\xb1\xcb\x93\x8a\xf5\x4e\xca\x13\xcb\x5d\x9f\x48\x62\xcd\x71\x7c\x62\xb1\x9b\xd3\x46\xc1\x3f\xf5\x4f\x2c\x79\x7f\x62\x83\x0d\x03\x7b\x52\xa1\xab\x93\x0a\xbd\xf6\x78\xcf\x93\x8a\xdd\x9d\x54\xec\xe2\xb3\xcf\xad\xfb\xd3\xca\x75\x7c\xd8\xc9\xe5\xba\x2c\x8f\xac\x33\xc7\xb3\x9f\x54\xf2\xdd\x49\x2d\xee\xb0\x96\x27\x96\x7e\x7b\x52\xe9\x11\x76\xf6\xc4\xf2\x6f\x4e\x5b\x1e\x46\x86\x38\xa9\xcc\x85\x57\xe6\x59\x6f\x99\x1d\x06\xfd\xc4\xd2\x3f\x9e\xd4\x62\x29\x05\x9c\x58\xe0\xf5\x49\x05\x86\x72\xc6\xc9\x45\x87\xd9\x8e\xd6\xa0\x44\x9a\x13\x4b\xfe\xa4\x25\xa0\xa6\x41\x31\x35\x47\xa0\x35\x38\xae\xec\x38\x26\xbd\x75\xd5\x03\x8f\x5c\xda\x75\xc3\xe3\x0f\x68\x5a\xe0\x1c\xf4\x48\x05\x21\xc4\x84\xe9\x18\x4c\x94\x25\x8c\x13\xfc\x94\x66\xd3\x78\xd7\x16\x06\xed\x3c\x78\x9b\x83\x91\x5f\x62\x6c\xc3\x13\x42\xc8\x66\x38\xb4\xbc\xb4\x41\x3d\x28\xd0\x70\x58\x04\x98\x95\x7a\x2c\x5c\xfc\xa3\xc8\x47\x68\x67\xa7\xfc\x7d\xa4\xfc\x1c\x41\x08\x80\xde\xf2\x2f\x2e\xff\x2d\xfa\x39\xcd\xb1\xee\xd7\x8a\xb0\xb4\x9c\x6d\xe6\xb8\x9c\xed\xe7\xc8\x18\x32\xad\x4c\xfb\x56\x67\xd5\x47\x26\x96\x9b\x74\x83\x1e\x96\x79\x45\xad\x17\x6d\x06\xbf\xb4\xeb\x6c\x66\x58\x73\xd5\x72\xf8\xa4\x75\x63\xde\x27\x85\x8e\x40\x9f\x99\x26\x20\x3c\xd1\x69\x95\x5a\x28\x5b\x17\x65\x5a\x11\x73\x3b\x8c\x6b\x92\x3b\x27\xb9\x97\xb9\xd8\x8c\x77\x8c\xa7\x15\xae\x11\x5e\x92\xc9\xd3\xe5\x57\xdb\xa7\x4b\x85\xf4\x6c\x82\xeb\xa5\xc5\x6c\x39\xc7\xf9\x6c\x39\x77\x26\xbb\x6b\x6b\xbd\x09\x59\x55\x85\x76\x5c\xb3\xb6\x14\xe4\x66\x6e\x5a\x04\xf3\x91\x4d\x54\xd6\x55\x2e\x68\xd0\xab\x5b\x2a\xde\xb3\x1d\x35\x9e\xfc\xea\x19\x9d\xe9\xf2\x4c\xca\x49\xa3\x31\x9f\x55\x08\x6a\xb9\xe5\x56\xd9\x04\xee\x33\xb3\x4b\xac\x47\x35\xfb\x3d\x56\x23\x9a\xfd\x01\xab\xf1\xcb\xfe\x1d\xc3\xe0\x64\xff\x1f\x56\xba\xa7\xec\x3f\xb0\x45\x03\xfb\x5f\x76\x0b\x64\xff\x1b\x03\x1c\x44\xf6\x7f\xb0\x6c\x5f\x76\x39\xf1\x0c\x86\x99\xaf\xb0\xa6\x17\xc2\x18\xba\xf0\xaf\x27\xe8\x22\xe5\x5f\x4d\xe2\x0a\x4a\xa7\x08\x8c\x5c\xab\x47\x81\x7b\x3f\x4f\x65\x69\xf5\x5f\x5d\x65\xcc\xa3\x7b\xd9\xf7\xf1\x8e\x05\xa3\x50\x6e\xdf\xe0\xf7\x7d\xde\xc6\x65\x56\xa0\x24\xc1\x64\x53\x34\x55\x3a\x86\x54\xa0\xcc\xa3\x17\xea\x6e\xaa\x50\xe1\x33\xdb\xd5\x08\x5b\x8d\xb5\x5e\x12\x67\xe6\x8e\xbb\x6d\xc4\xca\xd6\x29\x1f\x0e\xd3\x1a\xe2\x50\x28\x25\xba\x40\xe8\x6b\x32\xb1\x84\x60\x56\x83\xf5\x68\xd8\x5a\xa1\x2e\x0c\x2a\x22\xcc\x55\x2b\xe6\x60\x6a\x55\x13\xeb\xf8\x76\x71\x51\x7f\x4d\x26\x4f\x51\x35\xab\xe7\x84\xa6\xf2\x8f\x6e\x76\x63\x8c\x4d\x3b\x1d\x16\x08\xc9\x32\xa1\xcb\x2a\xad\x35\x4c\x15\x03\xb3\xbe\x8a\xf5\xe0\x79\x2e\x28\x52\x38\xa5\xf2\x31\x15\xfe\x0a\x57\xce\x9b\x45\x99\xe6\xe0\x79\xac\xbc\x9a\x0d\xe4\x3d\xd2\xa7\x8b\xb3\x0f\x08\x35\xf7\x1a\x1e\x17\x4b\x0a\x96\x2c\x16\xc9\x39\x21\xb9\xbe\x5d\x63\xfc\x36\x9d\xe0\xdf\xa3\xe1\x30\xad\x66\xf9\x9c\xf0\x29\x4d\xc5\x2c\x37\xbd\xca\xe4\x33\x3a\xe3\x2a\x78\xb5\x72\x54\xc0\x85\x7a\xaa\x9c\x5b\x77\xd5\xc0\x6a\x12\xd3\x99\x31\xb3\x30\x4f\xfd\xcb\x3d\xd0\x11\xca\x65\x0f\x29\xbc\xd0\x5d\xad\xab\xf5\x79\xcb\x2f\xa3\xb5\x6a\xaf\x5f\xfd\x65\x7c\xfd\xd7\xf7\xd7\xaf\x9e\x2f\xde\xbc\x7d\xfd\xfe\xf5\xfb\xbf\xbd\xb9\x7e\x37\x36\x60\x1e\xd6\x7a\x21\x38\x80\x19\xad\x52\x93\xc2\x0d\x1e\x7e\x30\xc1\xd4\xb2\x87\x65\xc1\xd7\xec\xb6\xb6\xc7\xb2\x7f\x48\x5f\xe2\x8f\x25\xb3\xde\x40\x3a\xc2\x65\x44\xb3\x64\x90\x5c\xb5\x69\x8e\x9e\xb4\x28\x8e\xb4\x9a\x28\x0f\x74\x4d\x1b\x33\xcf\xc4\x86\x55\x73\x84\x9a\x06\x2b\xed\x32\xad\x7e\x9d\xb6\xe9\xd2\xca\x5f\xa9\x6d\xfc\x57\x6a\x15\xff\x55\xda\xd3\xcf\x24\x39\xc5\xb6\x4f\x6e\xb5\xaa\xbb\x07\x5c\x1d\x38\xba\x0b\xb8\x6b\x00\x1f\xc1\x90\x3a\x9f\x60\xe9\x61\x69\x5d\xe1\x5f\x24\xb7\xad\x51\x0d\x37\x71\x06\x77\x9a\x9e\xbb\x10\x6a\xc3\xf1\x78\x16\x16\x5e\xb2\x2e\x04\x96\x42\xc6\x75\xc8\x42\x02\xb5\x63\x99\xb7\xb8\x52\x81\x93\xc5\xa2\xa4\x79\x55\xf0\xc5\x47\x26\x36\x0b\x28\x7e\x01\xf7\xc6\x7c\xb1\x48\xb0\x0e\xe7\x4a\xc3\xc9\x6d\x10\x16\x4d\xaa\x22\xaf\x25\x3f\x72\x6b\x26\xb1\xfa\xf1\xed\x0f\xd7\xc6\xd6\x5f\xf9\xfa\x79\x7d\x4c\x9c\x11\xc8\xd5\x0d\x40\x16\x75\x93\x99\xcb\x7b\x53\xba\x72\x30\x3b\x4f\x5d\xe0\xab\xe7\xac\xda\xe7\x62\xb9\x31\xe1\x16\x51\x8a\xec\x45\xf7\x99\x80\xb0\x61\x9d\x4b\x83\x02\xcb\xbd\xa9\x56\x2b\x4d\x93\xbc\xba\xe7\xcb\xa4\x45\x64\xf8\xf8\x26\x5f\x7e\xb8\xa9\x4b\x4e\x9d\x99\xa6\x0a\xa8\x0d\x8e\xb4\x0a\x34\x1b\x03\xa4\x4e\x58\xda\x5a\x04\x16\x9c\xb4\xaf\x2c\x3e\x5e\xc8\x75\x07\x03\x04\x70\x6a\xd8\x00\x71\x2b\x30\x5f\xe3\x27\x81\x0b\xdf\x54\x4f\xf4\xad\x6c\x77\x31\xe8\x56\xf6\x3c\x68\xc6\x67\x9c\xf6\xe0\xd1\xd6\x45\x12\xb3\xd7\x06\x53\xfb\x24\xcf\x72\xda\x3e\xcc\x86\xc3\xce\xf9\x36\xa5\xee\x50\x83\x5b\x6e\xfb\x2b\x03\xd3\xe4\xde\xd3\xa2\x75\xfb\x16\x70\x49\xb7\x5b\xb6\xdb\xc9\x1d\x4b\xd7\xb4\xa4\xdc\xbb\xa9\x94\x27\x47\xc7\x42\x4b\xfd\x32\x21\x08\x1e\xdd\xc5\x92\x25\x89\xef\xe3\x3c\x70\x7c\xd3\x4c\xc3\xff\x46\x67\xca\xaa\x60\xc3\x94\x31\x7d\x19\xc5\x46\xd6\x60\x71\x1c\x45\xaf\xf2\x99\x67\xcf\x02\xfa\x75\x50\x62\x28\x48\x3c\x87\x78\x3d\x85\x1b\x74\xd9\x2d\x94\x52\x94\x09\x34\x2e\x69\xbe\x92\xbb\xf1\x7d\x7e\x9b\xda\x4d\x6e\x8d\x7a\x0a\x29\x1f\x31\x0e\xcb\x8f\x2e\x0b\xbe\xd2\x3f\x14\x54\x55\x0a\x55\x8a\xfc\xf6\x45\x51\xa2\x94\x21\x84\x59\x43\x3d\xfd\x09\xa9\xbc\xf5\x57\x8e\x41\x78\x37\xb6\xcf\x0f\x3a\x99\x3a\xfc\x3f\x1f\x40\xde\x98\x7b\x83\x5a\xc0\xe0\xe8\x7b\xbd\x53\x8e\xb9\xe6\xf0\x90\xbd\xeb\x1c\x1b\x20\x31\x2e\x8b\xdd\x0d\xe3\x14\xa5\x33\x31\x7e\xce\x4a\x71\xaf\x93\x7b\xc8\xc0\x63\x80\x80\x69\xbd\x17\xe3\x67\xaf\x5f\xbd\x7b\x7f\xf5\xea\xfd\xe2\xfd\xd5\x1f\xd1\x1c\xa0\x8f\x8e\xc1\x5e\x2a\x17\x04\x3d\x2d\xf8\x44\x10\xcb\x06\xb3\xea\x7d\x59\x8b\xcd\x7d\xa6\x1c\xc3\x2d\xc4\xbb\x2b\xaa\xd3\x2f\x40\x5f\x2f\x7d\x10\x44\xbb\x1a\x1a\x04\x6d\xfc\x49\x12\x3e\xb3\xba\x02\xeb\x66\xc8\xe9\x05\xbf\x6d\x95\x30\x4e\x46\x9a\xda\xe4\x0a\x09\xfc\x47\xfe\xf1\x78\x59\x4a\xbb\x7e\x52\x71\x35\xff\xc0\x0b\xc7\x82\x46\xb0\x5e\x2a\x0d\x12\xe8\x79\xee\x79\x5d\x85\x50\x04\x15\x15\x3f\xf6\x96\x13\x6c\x96\x60\xa5\xc8\x22\x99\xe2\x17\x88\x8a\xbd\xef\x97\xdf\xf6\x6d\xd1\xd0\x24\x8a\x6f\x45\x58\x68\x3b\x1f\xd5\x3c\xcc\xbc\x40\x8a\xa5\x76\x49\xd0\xf8\x00\xbd\xec\x45\x8f\x79\x42\x57\x23\xd3\x32\x1a\x8d\x13\xa1\xa8\x85\xb4\x68\x6d\xc0\x1d\x2d\x6f\x2d\x20\x05\xa3\x55\x36\xb3\x87\xd4\xbc\x05\x47\x4b\x0d\x06\x79\x07\x88\xb9\xd4\x40\xcc\xfc\xeb\xcb\x29\xbf\xb8\xcc\x26\x08\x33\x72\xf9\x94\x7d\xc5\x01\xaf\xa6\x9c\xb1\x8b\x4b\x1f\x92\x59\xf9\xe0\x29\x43\x62\x5d\xdb\xe1\x10\xfc\x84\x20\x14\xe7\x13\x3d\x0b\xde\x5b\x7f\x87\x94\x28\xb4\xc3\x34\xc6\x6e\x66\x7d\x29\xe3\x87\x04\x9d\x01\x01\xf3\x42\x60\x17\xfe\xe6\x6a\x9a\x96\x69\xf0\xd9\xd1\xb9\x51\xd7\x35\x51\x69\x3b\x16\x64\xe6\xe4\x23\xe4\xcb\x0d\x4c\xda\xf6\x3e\x31\x51\xe8\xf3\xcd\x4d\xb4\x79\x51\x2b\x24\xd0\x2f\x35\x4b\x31\xea\xc3\x53\x6c\x3b\x22\xeb\x77\x8f\x57\x67\x1d\xa3\x85\xd0\x60\xe1\xca\x48\xb7\x2d\xdb\x85\x88\x63\x09\x1d\x0e\xe9\xec\x7e\xde\x60\x6b\x1b\x71\x8b\x9d\xc1\xc4\x6b\xec\x59\x4a\xbc\xd4\xd8\x47\x9a\xf1\x5d\x97\x94\xfe\x8b\xa6\xb3\x39\xc2\xf7\x1a\x3b\xe5\x7e\x77\x53\x6c\x51\x9a\x5c\xbf\xfc\xe6\xfa\xed\xe2\xea\xed\xdb\xab\xbf\x25\x08\xdf\x45\xeb\x6d\x02\x70\x07\x43\xd7\xbe\xd0\xb0\xf6\x0e\x97\xe4\x4d\x0a\x31\x65\x75\xa4\x92\x82\x44\x98\x2f\x31\x15\x11\xe7\x1a\xa0\x80\x9a\x5d\x10\xa8\x71\xc1\x67\xfa\x23\x81\x17\xc0\x4c\x03\xce\x87\x40\x87\x43\xca\x00\x31\x04\x40\x12\xb4\xeb\x8c\xa4\x6f\x5e\xc8\xb5\x9b\x80\x35\xfc\x7d\x24\x5e\xe9\xd4\xd6\x52\x3a\x69\x8e\x10\xe2\x5a\x57\x4a\xb2\xee\x85\x03\x0e\x4e\x39\xee\x91\xfe\x26\x70\xc1\x17\xd6\xb9\x0e\x1c\x5c\x75\x74\x54\xe5\x35\x53\x3e\x65\x5f\x15\x40\x9f\xe4\x41\x92\x42\x39\x4a\x7d\x74\x05\xc3\xc1\x10\x66\x98\x5a\x15\x25\x3b\x33\xda\xda\xd0\xe5\xde\x55\x01\x78\x02\x42\x85\x51\x2a\x41\x6f\x6a\x72\x80\x6f\xbc\x9a\xca\x2c\x52\x4f\xc7\x49\xde\xf4\xee\xe2\xf2\x9c\xf8\xa5\x72\x59\x6a\x9f\x73\x3b\xb1\x89\xfc\x7a\x17\x21\x84\x82\x57\xf8\x79\x69\x61\xc7\x27\x6d\xcf\x60\xc3\x9c\x7e\x69\xf4\x3f\x3f\x70\xe0\xec\x0f\x73\xb0\x6e\xd5\x83\x6f\x74\xb9\x5f\x4d\x86\xc3\x94\x8f\x08\x43\x58\xb6\xb1\x1c\x0e\xc5\x39\x11\xd3\xd8\x76\x39\x27\xb4\x89\x39\x86\x29\xce\x3f\xe0\x85\x5f\x7b\xd2\xad\x3a\x63\xb4\xe3\xe7\x77\x5c\x48\x6a\xb7\x75\xb6\xbc\x11\x3d\xde\xe1\x70\xe5\x29\xdf\x8c\x4f\x96\x8b\x73\xbf\xb1\x57\x0b\x2a\xdc\xb4\x03\x9d\xe4\x61\x6a\x39\x19\x41\x7f\x1d\x7e\xa5\x03\x6c\x2e\x5b\x50\xce\x44\x41\xb1\x5c\x11\x1e\x9e\xd1\xd6\xee\x05\xa7\xe9\x1e\x4c\x6f\xef\x01\x7d\x78\xaf\x97\x51\x75\x25\x22\xee\x13\x22\x88\x25\xb5\xcb\xf7\x69\xcf\xee\x77\x6b\x11\x36\x10\x6a\xf0\x7e\x96\xcc\xe6\xc9\x5c\x6d\x3f\xc7\x6c\x3e\xf4\x98\x40\x81\x9f\x5c\xd5\x89\x1a\xea\x7b\xef\x19\xd3\xf9\x89\x62\x76\x4d\xfc\x06\xed\x64\xd7\x20\xbc\x1f\x03\x22\x82\x36\xff\x6a\x55\x1c\xe3\xd9\x83\x76\xcb\xd3\x7e\x82\x1a\x25\xc7\xbc\xe6\xdb\xfb\x54\x96\xb8\xcd\x7f\x51\x81\x5e\x4b\x2f\x2e\x3b\x85\x83\xd0\xe6\xfb\x9b\xfd\x22\x17\xb3\x89\xef\x5f\x36\xbb\x9c\x5b\x92\xee\x35\x42\xc5\x31\x83\x6d\x43\x09\x1b\x51\x84\x9d\x44\x77\x38\x88\xaf\xd9\x54\x10\x96\x09\x48\x20\x08\x1b\x09\xf4\x94\x7e\x25\x9e\xa2\x72\x56\xea\x12\xf4\x8c\xb6\xfa\x49\x47\x23\xe7\xdb\xd9\xe0\xbd\xd1\x7d\xc7\x25\x7b\x87\xc8\x07\xa0\x37\x7a\x98\xbf\x8b\x66\x31\xc6\xe5\xed\x4e\xa4\x61\xc3\x09\x43\xaa\xc9\x17\x97\x08\xeb\xf6\x03\x5d\x28\x89\x08\x70\x24\x62\xad\x2f\x91\x1f\x35\xb4\x74\x44\x1a\xef\xe5\xb9\x04\x3b\xdb\xc8\x1d\xd1\x1e\x29\x6b\xf2\x56\x4a\xe4\x70\x07\x65\x41\x9a\x0d\x38\xad\xac\x48\xe2\x56\x71\x9b\xbc\x0a\x3e\x57\xa7\xad\xcf\x4d\x5e\xfd\xc0\x2a\x41\x39\x2d\x2b\xc3\xe2\xfe\x5f\x75\xf1\xb4\x04\xdd\x40\x82\x40\x71\x70\x34\xa5\x02\xf9\x00\x19\x70\x3f\x86\x57\xcf\x94\x14\xe6\x02\xfd\x75\x20\x9a\xfd\x81\x8a\xe6\x70\xfd\x83\x78\xc2\x61\xc1\xcf\xd9\xea\xf3\xca\xb5\x19\x3a\xc5\x6a\xa6\x24\xea\x9e\x14\x09\x55\xfb\x19\x0e\x9a\xdd\x45\xaa\x83\x29\x83\x9f\xad\x8e\x66\x63\x96\x9e\x64\x76\xb4\x1a\xb9\xc4\x1c\x2b\xef\xcb\x20\x08\x89\x6c\xec\x2d\x15\xd0\x58\xd5\xbf\x2d\xcb\x2b\x85\x67\x8e\xd2\x64\x97\xef\xbf\xb9\x4f\x80\x8c\xe8\x44\xfd\xa4\xb3\xc3\x88\x85\x03\xa7\xc1\xfe\x95\x2a\x51\x56\xbb\x6b\x45\x0a\xfc\x45\xbc\xa5\x76\x5e\x7d\x93\x86\x21\x56\xba\x6d\x52\xea\x2e\x73\xb6\xcf\xd8\x9c\x50\x73\x79\xa4\xbe\x35\x10\xe0\x07\x9a\xf7\x4d\x94\x19\x87\x82\x83\x63\x4a\x74\x99\x54\x7b\x42\x8d\xd7\x6c\x2b\x82\x5d\xf8\xff\xb6\xa7\xad\xde\x0d\x87\x5c\x03\x1f\xd8\x8e\x96\x14\x4e\x9e\x5f\xb5\x81\x61\xd3\x60\x04\xba\xb4\xe2\xdc\x44\xaa\x11\xbe\x94\xeb\x0d\x9a\x3f\xfe\xad\xb5\xa6\x8a\xbc\x09\x6f\x51\x5c\x29\xc8\x75\xac\xbf\x10\xf5\xfd\x91\x42\xd6\x8c\xaf\x62\xab\xe0\xa3\xd9\xf2\xbf\x60\x94\x6c\x05\xd1\x36\xea\x1a\x8e\x37\x8f\xde\xd1\x32\xba\x4a\x3f\xfd\x5a\xed\x63\xd5\x75\x58\x47\xbb\x8a\xe3\x0d\xcc\x79\xb4\x79\xd7\xbf\x5e\xf3\xae\x78\xac\x71\xd7\xa7\x34\xae\xa4\xab\x7a\xd9\x0e\x35\xaa\xb5\xdd\xc7\x77\x97\x8a\x08\x40\x68\xca\x01\xb5\x5b\xa8\x38\x54\xc2\xc4\x07\x93\xbc\xc9\x5d\xf1\x21\xf4\x16\x56\xc4\xba\xa3\x93\xe2\x5a\x27\x25\xbe\xbe\x9c\x0a\x5f\x27\x25\x40\xe6\xe3\x11\x9d\x94\xf3\x74\x2d\x1e\x27\x04\xc2\xb3\x4b\x87\xad\xaf\xd4\xe0\xe5\xfd\x77\xd0\x44\xa0\x55\x98\x83\x2c\x5c\xc8\x96\x8b\xa2\xa5\x87\x38\x42\xf9\x7c\x55\x01\x8c\x28\xa8\x78\x96\xe2\x91\x7d\x1b\xc9\xaf\x42\xc6\xe8\x52\x18\x5f\x6e\xeb\x55\xc7\xbf\xd9\x93\x35\x7d\xee\x6e\x02\x79\xaa\xa2\x6c\xed\xf5\x16\xa3\x1b\x8c\x92\xee\x64\x8a\x20\x5f\x6b\x5e\xb5\x1c\xae\x54\x3c\x67\x0e\xdf\x9a\xfa\xd8\xd6\x60\xf8\x45\x67\x6c\x8e\x2b\xe2\xd3\xfd\x02\xe1\x3a\xd0\x07\x14\x08\x03\x24\xaf\xb5\xe0\x47\x60\x3a\x64\x38\x41\x4b\x2b\x27\xaa\xef\x35\x67\x3f\x47\x86\xef\xd6\xc4\x3a\xdb\x1b\x15\x50\x64\x10\x6f\xf5\xa8\x40\xb2\x8f\x4c\x6c\x8a\x5a\x74\xee\x5f\xa1\xff\x66\x84\x53\x1a\x04\x96\xd3\xd1\x3b\x29\x21\x74\x1a\x59\x40\x02\xf0\x03\x7b\x24\x5c\xda\xc4\xa8\xbe\x50\x62\xda\xff\xa5\xf9\x72\x93\xcc\x89\x18\x83\xc2\x69\x71\xf5\x7e\x71\x7d\xf5\xec\xdb\xe9\x49\xfc\xa4\xcc\x0b\x17\x27\x70\x71\xa3\xc6\xc1\x97\x72\x74\xac\x0b\xbc\x47\x08\x7f\x20\x09\xf0\xf8\x83\xa2\x16\x03\x29\xbe\x02\xbf\xe9\xd4\x58\x2f\x7f\x05\xad\x01\x88\xe4\x1d\x41\x59\x63\x01\x7f\x35\x01\x51\xc1\xac\x15\xcf\x19\xd9\x1a\x84\xa7\x1f\xd0\x99\x0d\x7c\x02\x66\x41\x3b\x8b\x5d\x42\x41\xb4\x7e\xdf\x16\xad\xaf\xb0\x35\xfb\xc6\x0f\x80\xd7\xd4\x13\x4a\x3b\x54\x5e\x4c\xc0\x6c\x49\x7e\xc8\xd2\x96\x7c\x4b\xf1\x0e\x19\xba\xc5\x78\x45\x4b\x71\xd5\x16\x8c\xd9\x3a\xa5\x5f\x7b\xa5\xf6\xf5\x25\x26\x40\x53\x3c\xc1\x33\x31\x37\xe8\x34\x46\x3f\x19\x17\xbd\x5f\x06\x62\x47\x5d\x6d\x94\x34\xdc\x8b\xb1\x63\xda\x9b\xfa\x42\x3a\x45\x98\xfa\xb9\xab\xde\xec\x76\xe4\xbd\xdc\x13\x6c\x91\x74\xf6\xc5\xbe\x5d\x7f\x6c\x88\xd9\x3a\x9d\xf8\x22\x1d\xf0\x3d\x36\xfa\x6d\x57\x7a\xbd\xb8\x6c\x8f\x94\x1a\x92\x94\x5e\x5c\x62\x29\x50\x36\x18\x20\x29\xba\x75\xeb\x9a\xfc\x99\x68\xd7\x49\xa3\x75\x4e\x7a\x6a\x9c\xc0\x50\xd5\x3c\x5a\x5f\xdf\x58\x4f\xf4\x08\x07\xd9\x1e\x1f\xe4\x89\x3f\xb4\xa5\xe4\x57\x2a\xda\xc9\x7b\xca\xf8\x7a\xf4\xa9\x45\xc2\x75\xa9\x69\x7c\x25\x4e\x60\x5d\x61\xab\xfd\x89\x35\xdc\xd4\xd5\x1a\x5e\x28\x07\x76\x9b\x0d\x6c\x1c\xd9\x64\x6d\xc5\x91\xdf\x5d\x75\x9b\xd8\x19\x60\x1b\xc3\xcf\x2f\xef\x70\x98\x3c\xbd\xb8\x10\x60\x7e\x17\xd5\xf3\x80\x06\x41\xc7\x32\xb4\x73\x29\x5a\xf2\x9c\x5f\x67\xd5\xbd\x94\x54\x7a\x0d\x59\xfa\x0d\xbd\x65\x3c\xbc\xb3\xaf\xcc\xcd\xb4\xf0\x11\x32\xa1\x45\xe2\xe2\x02\x79\x15\xab\xf2\x55\x08\x88\x33\x9f\x54\xf3\x55\x5f\x91\xd0\x3a\xb8\xab\x7d\x64\xbd\xd9\x93\x49\x07\xe0\x70\x5b\xda\xa1\x5d\xd9\x72\x22\x5d\xf4\x35\x8a\x8f\xf6\x34\x7e\x81\x60\x0d\xb5\x6c\x3d\x00\x89\x87\x4f\xe9\x63\x83\xf0\xb3\x36\xf9\x7e\x8f\x6b\x47\xbe\xcd\xb4\xf6\x0d\xc1\x8c\xce\x6d\x48\xd3\xc8\x6d\x70\x44\x7f\x70\xda\xb1\xb5\x3b\x0b\x94\x3f\x50\xfe\x77\xdc\xbb\x94\x0a\xd4\x18\x7a\xa0\x97\xc5\xfe\x3e\x7a\xe0\x4f\x8f\x70\x83\xe9\x04\x6f\x1d\xb7\x43\x81\x45\x43\x0a\xd6\x4c\x1b\x9e\xca\x51\x7a\x4b\x66\x89\xea\x40\x32\x3f\x7b\xa6\x60\x97\x50\x74\x3a\x5a\xe6\x71\x33\x3a\x1f\x0e\xdf\x9a\x4b\x1c\x40\xf8\xf2\xaf\xd6\x9e\x91\x74\x45\x9e\x21\xc3\x00\x69\x09\x60\x85\xdf\xaa\x3d\xfc\xc6\x58\xd1\x56\x3d\x26\x95\x50\xca\x34\x7d\xa6\x33\xb6\x2a\x97\xb5\x5d\x91\x37\xd1\xeb\xb2\xc3\x61\x36\x6f\x50\x76\x2c\x41\x4a\xc9\x6c\x8e\xf0\x95\x6f\x2c\x9c\x99\xaa\x28\x80\xb5\x5c\x91\x37\xed\x1e\xe1\xd6\x5d\xe2\x7b\xcf\x52\xe5\xea\x91\x4b\x7a\x1f\x04\xa1\xef\x82\xfe\x11\xd3\x53\x6b\x94\xd5\x31\x8a\x81\x0b\x5d\x05\xad\xf1\x98\xb1\x40\x07\x2a\x22\x72\x35\xdd\x36\x49\x8c\xb5\xee\x88\x73\x46\x6b\xd7\x3d\x2c\x16\xae\xd2\x85\xd2\x9c\x00\xcc\xd5\x77\xfc\x9f\x2a\x12\x79\x5f\xb4\xe0\x20\xe3\x38\xcc\x93\x02\x40\x78\xf1\xa1\xde\x1f\xb9\x47\x08\x0b\xd0\x20\xa8\x8a\xbf\x59\x75\x2d\x6e\xfc\x70\xaf\x7e\xc6\x33\x0a\x11\x16\x04\x40\xa7\x04\xdc\x31\xf5\x82\xce\x42\x0a\x0f\x61\xd1\x04\x7b\xc5\x14\x27\x6b\xc6\xf3\x2d\xfb\x17\x7d\x6e\x03\xc0\x06\x66\x3c\xb2\x2f\x2e\x26\x64\x84\x94\x7e\xa1\x78\xfe\x10\xca\x02\xe1\x68\x78\x41\x28\x4f\x33\x33\x71\xd8\x16\xbf\xfa\xfa\xdd\xdf\x9f\xb6\x78\x7d\x6b\x81\x5f\xb7\x11\x8f\xd6\x6c\x7c\xd4\x7e\xe5\xbe\x87\x81\x4c\x78\xa0\xe6\x86\x73\xcf\x28\xe6\x9d\xfd\x90\x3b\x15\x0a\x4e\x7b\x72\x03\xea\x66\x49\x38\xe6\x3a\xf2\xf1\xb1\xe2\xe4\xc1\xa0\x4b\xd4\xb8\xe2\xdd\xe0\x19\x5e\x20\x89\x5f\xc1\x9c\xe7\xa9\xda\x2c\x94\xaf\xc0\xf7\xcf\x36\xa6\x44\x0d\x2e\xd6\xeb\x63\x43\xa2\x18\x9f\x63\xa3\xb2\xc9\x63\xec\x30\x64\x8e\x5c\x74\xd0\x13\x56\x7e\xcc\x58\xe5\xb8\xdb\x5b\xbf\x25\xce\x2f\xa3\xa5\x16\x9b\xe2\xb1\x26\xfb\xd6\x3a\xbf\x8e\x3d\x58\xff\x1a\x0e\xee\x79\xc3\x01\x77\xd6\x55\x14\xe2\xb8\x0b\xcf\x72\xac\x4d\x79\xe5\x1c\x9e\xf5\x84\xee\xe7\x2e\x74\xbf\x02\x0d\xa7\x4f\x4b\xd0\xca\x95\xfe\xc2\x72\x71\x57\xa0\x66\x57\x57\xa8\x7e\x54\x96\xfb\x1e\x80\x7b\xe7\x3a\x9a\x07\x9d\x70\x31\x97\xa9\x8e\xba\x1e\xed\x06\x6d\x67\x72\x89\xbc\x31\x88\x71\xc1\xdd\xf3\x0f\x8a\x88\x33\xcc\x66\x99\x77\xf9\xdf\x9e\x62\x62\x8c\xb2\x15\xb2\xf5\x07\x77\x37\xd7\xd7\x9f\x6e\x4a\xdb\xa9\x56\x59\xf6\x3e\xee\xb1\xa2\x3a\x17\x77\xa6\xa4\x98\x21\x73\x5f\x61\x47\x8c\x9e\x43\x31\x45\xdd\x9d\x3e\x42\x6d\x3b\x37\xb0\x1e\x5d\x09\x8d\x52\x1f\xa7\x51\xc7\xca\xda\xe4\x95\xf9\xdc\x3e\xf1\x1f\x21\x57\xa3\xc4\xde\xde\xc2\x86\xfa\x89\x89\x8d\xf6\x34\xe8\x5f\xc1\x61\xba\x60\x31\x33\xbe\x2c\x21\xd2\x78\xaf\x05\x6d\x44\x41\x77\x1a\xfb\x71\x79\xd6\xb3\x89\x52\x08\xb2\xfa\x62\x5b\xe4\x60\x47\x15\x92\x09\x74\x38\x4c\xd0\x88\x03\x8b\xf6\x3f\xd0\xb4\x4e\x7b\x64\x73\x2e\x64\x73\x44\x71\x7b\xbb\xa5\xd1\xb6\xf4\x14\x76\xde\xed\x5c\x83\x97\xf9\x72\x43\x8f\x4c\xfa\xad\x8e\xa2\xb7\x82\x60\x6e\x56\xd7\x7a\xd2\x41\xd5\x82\xda\x7a\x94\xf0\xc7\xd1\x63\xfb\xfc\x10\x4a\x4f\x86\x6a\x11\x6f\xde\x31\xa6\xd5\x4d\x71\x71\x72\xb8\xb3\xc6\xe5\x81\x3d\x6d\xff\xc1\xa2\x7c\x83\xf4\x8d\x7b\xf5\x86\x72\x08\x07\x64\x2c\xf0\x8d\x4d\x3b\xab\xde\x51\x21\xb6\x92\x39\xeb\x5e\x6e\xb6\x9b\xe5\x12\xb7\x4c\x74\xec\x87\x48\xf9\x6f\xe1\x8a\x12\x50\xce\x58\xf5\xa2\xde\xae\xd9\x36\x5e\x5d\xb7\x36\x9b\x55\xd9\x5a\xb4\xbe\xba\xb2\x3a\xad\x31\x19\xb3\xf3\x4b\xec\x25\x94\x3f\xf5\xd0\xb6\x1b\xda\xb6\xb7\x72\x6a\x62\x1e\xe0\x6f\x5a\x5c\x84\xdf\x55\x03\x5d\xd4\x60\x57\x57\x00\xba\x59\x51\x91\x1c\x39\x0e\x07\xc7\xce\x48\xff\xb8\xa3\xf8\xa1\xd5\xe8\xa0\x47\x0d\xc2\x7c\x2c\x36\x94\x3b\x61\xca\xd5\x41\xc7\xac\xd2\x82\x12\x5d\x1d\x0e\xde\x4f\xc6\x6f\xf5\x28\x76\xab\xb3\x9e\x21\xe1\x68\x4d\xd4\xfd\xba\x5f\x8d\x0e\xb9\xf0\x45\xb5\x98\x15\x19\x74\x47\xd7\x91\x80\xf5\x70\x36\xf0\x87\x38\x41\x8d\x75\xc0\x01\x99\x8f\xf2\xac\x4c\x13\xf9\x37\x41\x18\xe2\x44\xc8\xdf\xf0\x90\x20\x0c\x72\xe2\xf6\x5e\xbe\xd2\x8f\x72\x61\x3c\xb2\xe9\xdb\x30\x91\x8f\x7a\x76\x9f\xc4\x82\x9e\xb2\xeb\xad\xd7\xb9\x30\x52\xb3\x6d\xcb\x02\x79\xc6\xf7\x3d\xdb\xbd\xab\x27\x70\xd9\xd5\xa6\x2f\x55\x08\x18\x3f\x86\xd3\x51\x69\xdf\xe5\x1f\xeb\xac\x5a\xda\x57\x1f\x68\x29\x47\xd6\x3c\x27\x08\xd7\xdc\xff\xe0\x7e\x25\x08\xb7\x42\x47\xc9\xef\x9b\xbc\x4a\x90\x2d\x8a\xae\x5e\xef\xcd\x97\x5b\x2a\xd4\x0f\xef\xbb\x7a\x51\xc9\xcf\x85\x7a\x8c\x64\xae\x82\xdc\x55\x37\xfb\x8b\xa2\x7c\x7f\xbf\xa7\x5e\x29\xfa\x4d\xac\x30\x2f\xb1\x2b\xd3\xa5\x67\xa0\x3b\x91\x5f\x99\xd1\xa2\x9c\xb0\xbc\x7a\x20\x21\xbb\x67\x4b\xbf\x4b\x75\x67\x1d\x1e\x71\x81\x38\x09\xca\xbc\x6f\x05\xa9\xb6\xfa\x61\x44\xb5\x9a\x9b\x8d\xdf\x5f\xbd\xfd\xe3\xf5\xfb\xc5\xeb\x6f\xbe\xbf\x7e\xf6\x5e\x5d\x78\xae\x68\xb5\x2c\xd9\x5e\xc8\x23\xf6\x11\x7f\xe2\x7e\x53\xd6\xf1\xc2\xaf\xa8\x4d\x3a\x8d\x53\x9a\x9f\x86\xd0\xa6\xb1\x97\xa5\x6a\x58\x55\x8b\xd5\xf3\x33\x15\xc2\x28\xf2\x4a\xf7\xa5\x75\x59\x9b\x04\x69\x82\x43\x49\x89\x55\xa5\x7f\x31\x0e\x07\x4f\x98\xc3\x9c\xd0\x5d\x2c\xe7\xa9\xb3\xbc\x4c\x69\xbb\x94\x12\x21\x30\x2d\xf5\x5e\x9b\xf0\x4b\x5a\xd3\x26\x93\x60\x8a\x00\xa4\x57\x2b\x16\xae\x3a\xfa\x3e\xdd\x46\x5c\x7c\xa9\x2d\x2c\x20\x14\x14\xda\xe5\x07\x22\x4c\xa9\xc1\xc6\xb5\x7d\xab\x7b\x6a\x23\xf6\x91\x5c\x1b\x3e\x76\xc6\x24\x41\xb8\x22\xd5\xe1\xd0\x66\x34\x4b\xe5\x2e\x64\x7d\x1f\x9c\xaf\x10\x5b\xa7\x05\xea\x19\xc0\xc2\x1f\xc0\x32\x28\xa0\x40\x0a\xc4\xf8\xc8\xe8\x15\x08\xe1\x12\x65\x85\x5f\xc5\xa0\x50\x3e\x67\xc1\x6a\x1e\x0e\x69\xb8\xc2\x90\x3d\x49\x83\xd7\x67\xde\x75\x65\xa3\xef\x4a\x6c\xfb\x6a\x40\xb2\x38\xba\x52\x34\x90\x99\xbe\x10\x42\xf8\x3c\x3d\xaf\x0e\x07\x88\x84\xa9\x57\xf3\xf9\xa5\xec\x69\x05\x9a\x9d\x69\x4a\x49\x85\x7c\x37\x2a\xea\x87\xef\xaf\x11\xca\xd2\x92\x54\x48\xbe\x53\xdf\x4b\x3c\xf3\x3f\x23\x74\x8c\xe3\x8d\x01\x02\x77\x69\xd2\x4d\x7e\x43\xb7\x3d\x6e\x55\x5f\x04\x70\x62\xc0\x8e\x3f\xdf\x9d\x57\x45\xc3\x83\xb0\xa9\x5a\xa2\x4d\x16\xb2\x34\x7e\x4b\x57\xda\x92\x15\x74\x1c\x4e\xc0\x4e\xf0\xca\x8a\xd2\xf1\xb4\x56\x82\x4e\x1a\x1c\xe2\xc7\x7b\xc7\x77\x28\x7b\x17\x55\xc5\x6e\xb6\xf4\x99\xc3\x0f\x7a\x0b\x5f\x8d\x94\x11\x77\x29\x35\x86\x11\x50\x06\xe3\x1b\x5a\x32\x51\x29\x37\x1b\x5c\xfa\xf1\x42\x38\x13\x6d\xe3\x1f\xf1\x34\x15\x84\xb6\x12\x21\x30\x88\xb4\x0c\x42\xa8\x92\x39\x09\x87\xc1\x04\xe3\xd1\xf8\xcd\x15\xf8\xe1\x82\xd1\x09\x99\x84\x5f\x88\x3a\x0f\xe0\x95\x22\x2d\x90\x96\x9c\x4f\x82\x97\x36\x5b\x6b\xa4\xfd\xec\xda\xf0\xbb\x3d\x0f\x52\x96\xbf\x53\x7a\x7c\x7f\x34\x3c\xcf\x5e\x12\x30\xe6\x10\x53\xda\xda\x7d\x9f\x58\x9a\xb9\xb0\x34\xcd\x8a\xca\x8f\xfe\x75\x75\x67\x33\x87\x75\x25\x08\x14\x52\x7e\x15\xfa\x3a\x92\xb4\x39\x43\xff\x6e\x5d\xe7\xb6\xce\x40\x91\xfc\xdd\x16\x2a\x03\xee\x76\x83\xac\x87\xb1\x67\xaf\xa2\x6c\xb7\x63\xfd\x8e\x98\x71\x97\x98\x01\x4e\x83\x86\xec\xf1\x27\x7d\x38\x4c\xc3\x45\x30\x9b\x23\x0c\x46\x6b\x3d\xab\x66\x38\xa4\x5f\xf7\x7d\x53\x36\x45\x5d\xea\xd8\x1e\x50\xa4\xa2\x1a\x06\xa5\xe8\xd3\x2c\xb0\x4e\x33\x17\xae\xd6\x65\xa3\x5b\xe5\x53\xf6\x55\x09\xea\xf3\xe0\xfb\x8c\xcd\x43\xdb\x72\x33\x1b\x4c\x43\xf7\x44\xab\x9e\x9c\xf5\xed\x94\x8b\xcb\x26\xe0\x65\x4c\x35\x70\xf7\xed\x5d\xf5\xf2\xf1\x9b\xb7\xaf\xdf\x5c\xbf\x7d\xff\xb7\xc5\xf3\xef\x9e\x2f\x9e\x7d\x7b\xf5\xea\x8f\xd7\xf3\x9e\x19\xe9\x8c\x0b\x98\x3f\xa5\x6a\x23\xb5\xe7\x69\x3a\xc9\x62\x6d\xc6\x2c\x3c\x31\xfb\x06\x7c\xea\xdb\xf8\xd9\x61\xcd\xcc\x56\x3e\x61\x93\xa9\x94\x71\x47\x05\xb0\x23\x31\x21\x86\x16\x8c\xdf\xe5\x5b\xb6\xd2\x0e\xfe\xed\x5c\x96\x16\x87\x99\x1e\xa3\x18\x28\xb3\xdb\xc0\xb3\x2b\x09\xea\x0a\xb7\xc3\x23\x25\x76\x4d\x2f\x1f\x1d\x44\xb8\xdf\xec\xf1\x6b\x51\xa1\xa3\x70\x8e\x7a\x68\x63\x9b\x82\x3c\x3e\xe2\x5d\x4a\xd8\x2a\x13\x2e\x5b\x8f\xf8\xc5\x74\x32\x98\x26\xb6\xc7\xe9\xe8\xe1\xea\x37\xe3\x84\x8c\x7d\x5e\x29\x52\x38\x39\xb6\x80\x54\x12\xed\xea\x2f\xce\x0a\x70\x57\x2a\x46\xad\x49\xe9\x76\xc9\x2e\xe5\x51\x79\xc1\x24\xe1\x6a\xef\x1b\xb7\x89\xa7\x7d\x9b\xbb\xc8\x7a\xbe\x7c\x5d\xb4\xa9\xa3\x9f\x0b\x1d\x39\x2a\xe3\x0b\x5e\x75\xb2\x35\x8a\x6e\x05\x77\x67\xbc\xff\xc8\x0e\x2b\x6d\xd4\xbd\xa5\x12\xef\x20\x46\x9f\xdc\xe6\xb3\x87\x0f\xf4\x3e\x33\x23\xd4\x96\xcd\x60\xd1\x87\xf7\xde\x5e\xa1\x6d\x91\xa5\xe7\x60\x0c\xf8\x02\x3a\x0d\x58\xff\x0e\x91\x09\xda\x7c\x19\x66\xee\x0a\x84\x1d\x83\xb3\x0b\x29\xa2\x39\x48\x39\x08\xb8\x8f\x1e\x94\x63\x5b\x09\x4e\xda\xea\xee\xeb\x42\x20\x2c\xc8\x44\x2d\x26\xd6\xe9\x84\x3d\x4c\x21\xc0\xbb\x6f\x5d\x84\x52\xe6\x5b\x13\x85\xc4\x05\x35\x4d\x33\x47\xb8\x6c\x1c\xa0\x9c\x8f\x6f\x50\x61\x13\x22\x31\x65\x81\xf1\x0b\x7e\x68\x8d\x5a\xe6\x1c\x97\x3c\xa0\x91\x23\xfa\x85\x58\x0c\x8e\x7e\x0e\xde\x9a\x2e\x3c\x86\xa0\xd0\x1b\x39\xad\x05\xa3\x10\x33\x72\x39\x41\x52\xe8\x0b\x09\x12\xd5\xb4\xf9\x2a\x91\xc7\x21\x0c\x22\x02\xc3\x86\xd4\x5a\xc5\xe1\x33\x59\x72\x3a\xf0\x9e\xa8\x08\xd3\x3f\xd1\xfc\xc3\x3b\x2a\xf0\x0a\x7e\xcb\x5f\x2f\xf3\x3d\xde\x05\xbf\xee\x7b\x22\x1d\xda\x63\x3b\x87\x16\x6c\xf0\x3e\x0c\x8e\x41\x56\x10\xc5\x18\x56\x8d\x87\x38\x8a\xce\xac\x5c\xfe\x71\x38\x4c\x57\xe3\x15\xdd\x52\x41\xbb\xe9\x30\x1f\xbf\xb8\x7a\xf6\xfe\xf5\xdb\xbf\x2d\x5e\xbc\x7e\x0b\x68\x36\xb0\x58\x3f\x1a\xe6\xdd\x87\x31\x85\x1e\x6a\x0b\xcf\x6b\xb9\xbc\x2b\x1f\x6b\x05\x7f\x22\xd7\x2a\x89\xdc\x24\xfa\x11\xb6\x11\xb6\x8d\x51\x11\x6b\x73\x62\x8a\x96\x6b\x83\xcb\xf5\xe1\xb4\xb8\x78\xab\xbe\xb6\x71\x4c\xf0\x92\x38\x5d\xc3\x70\x98\x5b\x1d\x04\xde\xb8\x0f\xdb\xe1\x70\xeb\x3e\xec\x89\x1f\xa9\x90\x22\xbc\x23\x93\xa7\xbb\xaf\xf6\xc6\x3d\x61\x37\x1a\xa1\x3b\x42\x67\xf7\x64\x3f\xdb\xcd\xe7\xb8\x1c\x7f\xf3\xdd\xab\xe7\xdf\xbd\xfa\xe3\xe2\xdd\x8f\x6f\xde\xbc\x7e\xfb\x7e\x38\x5c\x83\xed\xdb\xe2\xfa\xd5\xd5\x37\x3f\x5c\x2f\x3a\x9f\xcd\xdc\x2b\x23\xb5\x6f\x18\xdc\x7f\xa4\xf7\x68\x38\xbc\x06\x90\x22\xaa\x5f\x55\xe9\x3d\xbe\x43\x38\xbd\x71\x4d\x4d\x6f\xd5\x08\x3a\x1d\x97\xbb\x49\xba\xc7\xd7\x08\xa1\xc3\x21\x5d\xc0\x58\xcc\xee\xe7\x78\x29\xbb\x6c\x40\x2c\xef\xd1\xd7\x17\x97\xc3\x61\x7a\x47\x16\x92\xf2\x15\xe3\x5d\xfe\xc1\x98\x26\x2e\x2c\xfe\xdd\x1d\xca\xda\x1f\xef\x10\xc2\x1b\x39\x46\xdd\x92\x00\x79\xc9\x8b\xdb\xb8\xc0\x77\x52\x82\xbb\x99\xde\xba\x55\x21\x3b\x91\x39\x28\x0a\x07\xca\xa9\x91\x90\x5a\x10\x3d\x87\xc3\xbd\x01\xc0\x9a\xea\x7e\x90\xbb\xac\x27\x31\x8c\xd0\xd9\x97\x4f\x81\x0a\xd0\xff\x26\x2f\x05\xcb\xb7\xaa\xb9\xd7\x08\x6b\xc5\x37\x02\x91\x36\xa2\xed\xc6\x66\x9d\x7e\x92\x07\x59\xad\x4b\x79\xb6\xc9\x19\xaf\x50\x7a\x8d\xd4\xdb\xb6\x1d\x4c\x22\x4b\x4b\xf4\xb2\x6e\xfd\xb9\x76\x2e\x0a\x92\x8e\x33\xf1\x42\x99\x71\x05\xac\xf8\xca\x8d\xa9\xb2\x65\x6c\x13\x8f\x0e\x93\x28\x09\x52\x9f\xed\x85\x70\xb6\x17\x3a\x42\x2d\xc4\x09\x13\x33\xee\xdb\x5e\xf0\xb9\xbb\x52\xd5\xb1\xf8\x61\xe4\x8c\xd5\xb4\x67\x64\xd4\xd6\x05\x84\xac\x98\xff\x75\xd5\x15\x9e\x2d\x4f\x5b\x8d\xf7\x94\x7e\x78\x19\xa2\x31\x9d\xd3\x31\xab\xde\x15\x75\xb9\xa4\xee\x36\x27\x45\x4e\x21\x56\x51\xd1\xfd\x8c\xc1\x2f\xc8\x8f\x8e\xbc\x54\xea\x78\xc5\x59\xc2\x92\xf2\x64\xf9\x6e\x7a\x6b\xeb\xe7\xd2\x2f\xcc\xe7\x95\xce\xe5\xcc\x11\xe8\xe3\x2a\x82\x30\x51\xa7\xac\x60\xb6\x3b\x5d\xa6\xab\x54\xee\x6e\xbd\xff\x25\x65\xf6\x46\x09\x77\xc7\x40\xa6\x6f\x2d\x13\x51\xbc\x03\x5d\x66\x77\xe4\x63\x50\x31\xca\x0f\x40\xe5\xb8\xfe\x24\x28\xaf\x58\xc1\xa7\x49\x96\x8c\xe2\x9f\x52\x94\x25\x89\xd1\x3a\x7f\x95\x8c\x52\x20\x24\x3a\xb4\xa7\x6e\xe7\xe1\x10\x9e\x1d\xe6\x1c\x32\xe6\xe8\xfe\xc9\x61\x2a\x48\x11\x82\x30\x8c\xaa\xb8\x9a\xad\x9c\xa7\xd2\x88\x8e\x92\xaf\x13\xd9\x49\x2a\x5b\xb1\xea\x76\x2c\xaa\x3d\xe3\xff\x9d\xda\x33\x2e\x97\x04\xd7\x9a\x58\xc3\xb1\x9a\xc8\xca\x10\x63\x4a\xcd\x06\xec\x23\x9f\xaa\x40\x10\x52\xc5\x14\xc7\x3d\xc1\xe5\xd9\x2f\x4b\xf5\x41\xfc\x68\x57\xeb\xae\xb8\x90\x4e\x80\xac\xa3\xe7\xe7\xae\xe7\xfc\xbc\x77\x67\xcf\x6a\x38\x5c\xb9\x63\xf2\xce\x7d\xd8\x0d\x87\x3b\xf7\xe1\xd6\x04\xb7\xfc\x25\x34\x47\x29\x5c\x26\x4f\x4b\x17\x03\xb5\x1c\x8d\x0c\x1f\x30\x2b\xe7\xb8\x0a\x8e\xe9\x1c\xe1\x9a\x4c\xf0\xd6\x41\x2d\xd7\x5f\x6d\x9f\xd6\xa3\x11\x5a\x12\x40\x59\x5e\x93\x7c\xb6\x9c\xe3\x7b\xd9\x07\x73\x8c\x2d\xf5\x31\xb6\x21\xb7\xf2\xdb\x9a\x6c\x3a\xe7\xe2\xc6\x9e\x8b\xeb\xee\xb9\xb8\x46\x08\xdf\xc9\xbe\xb7\x0b\xdc\x9b\x02\xdb\xc7\xe3\x1e\xcb\x3c\xf2\x23\xb1\x58\xe7\xb7\x4d\xdf\xea\xc2\x31\xba\xee\x4b\x40\x92\xca\xbc\x55\x5c\x3c\xc2\x1b\xaf\x98\x23\x8b\xcc\xd0\x2a\x97\xb7\xbb\x67\xa0\x08\x4b\x35\xce\x00\xaa\x02\xd0\xb8\xd3\xbd\xe1\x09\x25\x5f\xa4\xc0\x9f\xe4\x2a\x97\x83\x60\xcf\xa6\xba\x65\xdb\xd8\x6d\x0f\xf2\x3b\x07\xf2\x5f\xb7\x87\xf1\xf3\xc6\x76\x04\x1b\x89\xac\x01\x63\x7d\xd1\x76\xb2\x67\xeb\x34\xc2\x72\x50\x87\xfb\x23\x97\xd2\x53\xfa\x54\xf9\xe1\x85\x30\x7f\xe7\x93\x33\x08\x98\x5c\xef\x69\x09\x50\xed\x8d\xc9\xe5\x2a\xfb\x4e\x03\x93\x46\x1d\x11\x7c\xd8\x52\xd3\x46\xc9\xf3\xbe\x28\x4a\xc3\xb8\xf4\x40\xf5\x18\x6e\x19\xf3\x38\x9f\x87\x5d\x00\x7e\x3e\x5e\xc8\x32\x0f\x87\x07\x88\xde\x4b\xf3\xe5\xe6\x99\xbe\x3d\x3c\x52\xc9\x17\x1a\x56\xc9\xb6\x9d\xf9\x0d\xd4\x68\x48\x0f\xcd\xd3\x16\x47\xef\xf9\x72\x18\x6f\x93\xe7\xb6\x13\x55\x80\xa0\xa0\xda\x54\x9c\xb1\xb1\xbb\x95\x1d\x0e\xd3\x82\x30\xd3\x35\x8e\x3d\x84\x85\x02\x01\x7e\x81\x3e\xcf\x22\xbc\x4e\x7b\xdd\xea\x81\xda\x3b\x90\xb2\xbd\x01\x29\x4b\xf5\x22\x77\x73\x8c\x86\x43\x6a\x47\x3f\x58\xda\x91\x05\x6c\xb6\x1a\x02\xc7\xc2\xae\x32\x83\x1a\x65\x86\x67\x8c\xd2\xd1\x68\xd8\x75\xde\x61\x79\x62\x27\x7f\x4b\xe3\x80\xe4\xac\xb7\xea\x00\x5c\xe9\x2f\xae\x04\x0e\xda\x48\x2d\x73\xd3\x97\x70\x08\xe2\x0a\x1a\xb2\x73\x27\x7a\x08\x20\xab\xb4\xa0\x69\x4a\x49\x8b\x3e\x20\xa4\x5c\x40\xbc\xc3\x57\xc9\x7f\x3b\x9f\xdd\x95\xa7\xa3\xe9\xb0\x9b\xb4\x9e\x46\xe8\x93\x41\xd9\x0a\xab\x36\xbf\x5e\x3b\x6e\x92\x9e\x13\xd2\xc5\x6d\xb7\xcc\x24\x28\x4e\x20\x54\xfc\xbd\x63\x98\xea\x31\x54\xf8\x5e\xff\xc6\x70\x16\x54\x86\xb5\xb9\xd7\x56\x42\x5e\x9c\xc6\x04\xe1\xfb\x31\xab\x14\x75\x3b\x9f\xc0\x0f\x85\xfc\x42\xce\x2f\x3d\x07\xa3\xfb\x47\xf4\x28\x5e\xfc\xd4\xcf\xbb\x07\x35\x7a\x91\xc7\x6e\x45\x4f\xb0\xcc\x50\x6a\xce\x28\x27\xc5\xfe\x3b\x39\x29\x26\x39\x29\x76\x44\xac\x30\xda\x6d\x1b\x94\xcc\x38\xb0\x07\xb9\xfa\xb9\xde\xb6\xb2\x4d\x0e\xb6\x85\x4f\xf2\xde\xef\x0a\xc9\xa6\xbf\x81\x98\xdb\xce\xf4\x91\x2a\x6e\x1c\xa4\x48\xd7\x04\x30\xc3\x6e\x19\x58\x94\x2d\x2e\xd8\x9a\x58\x94\x2d\x7e\x16\x1b\x98\x58\x97\x58\x2d\xfe\x56\x97\x64\x43\x61\x69\xd1\xaa\x33\x1e\xfb\xb2\x58\xd2\xaa\x3a\x3e\x26\x11\x11\xcc\x53\xcf\xb7\xf3\xc6\xa4\x37\x4d\x98\x75\xd1\x4d\xca\x62\x7a\xc6\x02\x17\xfe\xf4\xb9\x46\xc9\x2d\x51\x8c\x5f\x5d\xbd\xbc\x7e\xf7\xe6\xea\xd9\xf5\x3b\xc2\xbd\x1f\xc1\x97\xc5\x37\x7f\x5b\x7c\xf7\x3c\xf8\xae\x5e\xa9\xa2\x65\x57\xaf\xb6\x5b\xc2\xbd\x1f\x6e\x2e\x70\x31\xbe\xb9\x97\x3f\x49\x6b\x96\x1e\xd9\x75\x9f\xa7\xb8\x54\x5f\x80\x8a\xf5\x6c\xbf\x47\x4d\x14\x4e\x0c\x59\x1c\xa0\xb5\x9e\x60\xac\x20\xa5\x80\x8e\x99\x55\x3b\xde\xaa\x56\x52\xcb\x2d\x51\x2b\x96\xd5\xc2\x98\xbe\xfe\xcb\xf5\xdb\xb7\xdf\x3d\xbf\x5e\xbc\xfe\xe9\xd5\xf5\xdb\x04\xe1\xed\xff\x14\x19\xe8\x1e\xb2\xcc\x1c\x4c\x0b\x18\x01\x1b\xf6\xf4\x4f\xf4\xbe\xe7\x5c\xe8\x11\x3d\x3b\x48\xe7\x54\xf2\x02\xeb\x5a\x2d\x24\x73\xec\x94\x63\x18\x83\x76\xc9\x4c\x1d\x2c\xb3\x7a\xee\xfb\xb5\xcf\xea\xf9\xd9\x17\xd4\x09\x4b\x28\x6e\x6c\x06\x11\x63\xe0\x68\x62\x4d\x9a\xc7\xf6\xda\xd6\xe2\xa0\x2b\xe2\xb1\x35\x87\x92\x3d\x90\x6c\x50\x52\x3d\xfc\xdb\xd0\xf1\xb6\xbd\x2e\xb6\x27\x6d\x92\x53\xad\x74\xbe\xc8\x2e\x47\x03\xf6\x3f\x1a\x76\x48\xdd\x9d\xfc\xcf\xc9\xfa\x3c\x36\x21\x0c\xb3\x36\xdf\xa8\xef\x5c\xca\x47\xfd\xbd\x6c\x80\xb5\xcf\x09\x3a\xff\x88\xb3\xa2\x0e\x7f\xdd\x12\x93\x4c\xfc\x25\x63\xed\x26\x7f\x27\x92\x4d\x72\x7c\x9b\xf9\x64\xa3\x61\x99\x01\xe7\xb3\x52\x1d\x03\x14\xcd\x0f\x07\x83\x61\x6a\x54\x40\x9e\x4a\x89\xb0\xa9\xe8\x46\x72\x1a\x0e\x53\x46\x12\xc5\xc9\xa1\xcc\x83\x40\x65\xf2\x7c\xf4\xa5\x28\x88\x6f\x31\x65\x44\x47\xb3\x08\x83\x45\xd8\x92\x65\x02\x17\x2e\x2c\x12\x50\x42\x56\x07\x41\xc1\x20\x3c\x81\x91\x61\x92\x99\xaa\x79\xf0\x8d\x0a\xed\x35\x4f\x32\x1b\x3b\x0d\xdb\x8f\xaf\x00\x91\x46\x7e\xd3\xd8\x34\xee\x93\x62\x2f\xe4\x27\x6d\x2a\xe8\x3e\x19\x3e\x53\x7e\xb4\xe3\xe1\x3e\x83\x26\x41\x7e\x33\x06\x68\xe6\x83\x6c\xaf\x7c\x0f\xad\x75\xaf\xdf\xd2\xdb\xeb\x4f\x7b\xf9\xa1\xa4\xb7\xf4\xd3\xde\xfb\xa4\x36\xad\xfc\x64\xb7\x95\x6d\x04\xdb\x82\x6b\x25\x34\x82\x6d\xe9\x96\x55\x22\x69\x70\x49\x3a\x81\x9f\x0c\xab\xe4\x2f\x4b\x7d\x92\x9d\x14\x10\xc4\xee\x3a\xe1\x44\x4e\xad\x0e\x82\xc1\x06\xcd\xfe\x8c\xce\xc9\x25\x16\x48\x2e\xbe\x00\xe3\xc5\x45\x6a\xf1\x76\x6f\x1b\xc5\x0a\xc4\x08\xb7\x56\x5c\x20\xb1\x58\xa8\x11\xd4\xd0\x31\xb8\xdd\x10\x6a\x03\x44\x40\xdc\x72\xf3\xa4\xaf\xd9\x08\x1d\x7f\x7b\xf5\x6e\xf1\xea\xea\xfd\x77\x7f\xb9\x5e\xbc\x79\xfb\xfa\xaf\x7f\x0b\x5f\xbd\xfb\xdb\xcb\x6f\x5e\xff\x40\x3c\x66\x92\x1a\x4a\x4b\xa8\xe1\xee\x08\x75\xea\x21\x99\xd4\xa0\x80\x01\x0a\x22\xb7\xcf\xca\x10\xd4\x49\xc5\xb2\x41\xbc\xda\xab\xd0\xe7\x15\x15\xd6\x39\x4c\xfd\x74\xf8\xa0\x50\x91\xff\xf5\x36\xfc\xfa\xb1\xcc\xf7\x84\x8e\xdf\xbe\x7e\xfd\x5e\x56\xb9\xa1\xcb\x0f\xdf\xe6\xd5\x3b\x29\x2e\x41\x1d\x82\x96\x5c\xe6\x52\x2c\x27\xe4\xe7\xb4\xcc\x05\xfd\x63\xcd\x56\x84\x8e\xff\xf8\xe3\x77\xcf\x17\x7f\xba\x96\x5d\xaf\xd5\x9b\x15\x83\x11\xcd\x4b\x35\x6a\x00\x9f\xcc\xf3\xed\x3b\xe0\x0f\x64\xf3\xcc\x83\x64\xce\x20\xab\xc7\x4c\x94\x64\x72\x16\xe1\x10\x46\xa3\xb2\x51\x12\x85\x7f\x97\x99\xc3\x2f\xf9\x54\x11\x91\x26\x8b\x05\x2c\xbe\x64\x34\x18\x99\x88\x66\x08\xd7\x64\x36\x77\x25\x6e\x9d\xbb\x18\x64\x48\x46\x74\x94\x56\x23\x88\x3e\xb8\xde\x16\x45\x99\xc2\x63\x99\xf3\x55\xb1\x4b\xd1\xbf\xb9\x82\xd0\x48\x26\xb7\x67\x70\xad\xc0\x2e\xb8\xa4\xe4\xb2\xbc\x65\x4c\x1b\xae\x17\xca\x54\xff\xcd\xe2\x37\xaf\xc6\x12\x62\x97\xef\xfd\xde\xb9\xcb\x1d\xb7\xd5\xf2\x55\x14\xfa\xd0\xe6\x07\xe9\x97\xf6\xdc\xaf\x28\x2d\xdc\xf1\xfc\x56\x53\x17\x66\xdd\xe4\xd5\xf1\x7c\x4a\xd9\xd7\x80\x08\x8c\xd7\xe4\xc9\x3f\xc6\xa9\xc2\x33\x38\x48\x52\xff\x0f\x38\x19\x0f\x70\x48\xaa\x67\xf4\x04\x6f\x22\xf2\xb4\xdd\x29\x78\x4f\x36\xea\x94\x88\xab\x31\x1b\x64\x15\xa8\x89\xf7\x3a\x41\x5f\x5f\x5c\xc6\x80\xc0\xd7\x63\x41\x2b\x91\x6e\xcc\xc9\xe3\x23\xc2\x5b\x07\xb1\x49\xd3\xb9\x39\x0f\x41\xfb\x7d\x1d\x07\x72\x8b\xea\xde\xd1\x2d\x75\x49\x4e\xbb\x7a\x0c\x15\x11\x6b\x9f\x52\x84\x57\x7a\x96\x94\x26\x48\xfd\xda\xe1\xf3\x4b\xa5\x1f\xbb\xf3\x5b\x10\x80\xfd\xcb\xd3\x59\x0c\x87\x77\x36\x7b\x80\x93\xef\x85\x09\x56\x4d\x80\x65\xb9\x88\x97\xf6\xd1\x96\xb6\x88\x94\x76\xed\x95\xb6\xf0\x4b\xfb\x04\xa5\x2d\x5d\x39\x1a\xf1\x3d\xe0\x9b\xf4\xee\x72\x90\x16\x67\xde\x33\x11\x7a\x97\xf7\xb0\x4c\xa1\xb1\x8e\xca\xc2\x71\x69\xf6\xc2\x27\xd0\xc5\x71\x84\x6f\x53\x8e\x65\xa7\x11\xfe\x98\x72\x7c\x0d\x4f\x6a\x23\xbe\xee\x3f\xa0\xf0\xd5\xd1\x25\xf7\x81\x04\xa0\xee\xf8\xa5\x7f\x5b\x80\xdf\x93\xef\xdf\xbd\x7e\x35\x56\x87\x35\x5b\xdf\xe3\x67\xe4\x72\x32\xc1\x6f\xc9\xbf\xe3\x37\xe4\xc9\x7f\xce\xfe\xf1\xf1\xb7\xf3\xd1\x6f\x9f\xb8\xb1\x79\x15\x42\xec\x9f\x5f\x9a\x50\xab\xf6\x9c\x51\x11\x57\x1d\x83\x94\x75\x59\x26\x48\xa1\xcf\xad\xec\x18\xe3\xf5\x41\x0e\xc1\x43\x49\xce\x27\x67\x37\x25\xcd\x3f\x34\x10\xcb\xcd\x1e\x3c\x84\xbc\x3e\x1c\x1c\x73\x66\x3f\x20\x48\xec\xc0\xde\xdd\xf5\x99\xaa\xda\xd2\xb4\xac\x93\x84\x10\x72\x35\x55\x5a\x85\x69\x32\x33\x03\x9b\x25\x23\xf5\x6e\x94\x48\xce\x61\xe6\xf1\x32\xdd\xd2\x5b\x31\x64\xdf\xcb\x8d\xa3\x3e\xc0\x11\xa1\x83\xd0\xc6\x43\xd2\xb6\xe2\xaf\xfa\x85\x37\x3e\x23\xca\x11\xd7\xab\xd6\x44\xc0\xe4\x9a\x5a\x99\x31\x9c\x3d\x63\xe5\xb2\xde\xe6\xe5\x3c\x71\x7a\x72\xb9\xce\x28\xc2\xe5\xb4\x6d\xff\x2c\x65\xb7\xaf\xdf\xda\xbc\x9a\x19\x3b\x33\x80\xe5\xc9\x2c\xf1\x2e\xa2\xa8\x7f\x11\x25\xb3\xb2\x11\x91\x8d\x2a\xa7\xc9\x20\xc9\x12\x3c\x48\x70\xf9\x35\x79\x86\x1e\xd8\x88\x24\xe3\xf1\x78\x90\x8c\x52\x8b\xf3\xf5\x0c\x8d\x92\xc1\xae\x28\xe9\x80\x09\xba\xab\x12\x33\xb1\x23\xf2\x2a\xa5\xb3\x72\xae\x8c\xae\x75\x8b\x65\x01\x83\x79\x02\x41\x31\x47\x97\x98\xa3\xec\x91\x86\x1b\xd6\xcf\xb4\x1c\x17\x24\x79\x48\x70\x4e\x5e\xca\x59\x70\x5d\xc8\xdb\x5d\x28\x7a\xba\x50\xb8\x2e\xe4\xdd\x2e\xc8\x3d\x64\x7b\x40\x72\xd9\xfc\x62\x44\xfe\x99\x32\x34\x4a\xb2\x41\x32\x92\x5d\x62\x61\x97\x64\x81\x83\xc6\xeb\x92\xa3\x50\xff\xf4\x28\xd4\x1b\x45\xda\x01\xb6\x49\xae\x20\x97\xea\xbb\xf0\x22\x54\xe1\x99\xc6\xc3\xcb\xcd\xc4\x1c\xa8\xc7\xf3\x16\x0d\xf8\x21\x38\x0f\x5e\xf4\xd3\x16\xb7\xef\xff\xd5\xe2\x3e\x09\x51\x08\x92\xdf\xc6\x38\x04\xc5\x14\x0d\x87\x4e\x2c\x80\x17\x73\x29\xd0\xf4\xd6\xa5\x0e\x31\x95\x32\x45\x08\x7f\x13\x2b\x19\x98\x55\xfc\xa3\x5a\xfb\xf8\xe7\x3e\xab\x2f\xcf\xa8\x7f\xcb\x76\x4c\x10\x65\xe5\x3b\x96\x69\x88\x32\xa7\x1d\x57\xa2\x28\x29\xe1\xfa\x07\xfb\x17\x35\x26\x9a\x3b\x06\xca\x44\xfd\x6b\xc3\x84\x7d\xd6\x59\x0e\x07\xcd\xa0\xc5\x98\x99\x5b\x1a\x5e\xbf\xb9\x8c\xad\x43\xd4\xfb\xa0\x76\xee\x34\xb5\x15\x8e\x46\xb8\x93\x0f\x69\x68\x4d\xd5\x3c\x9b\x42\x9d\x73\xa6\x73\x32\x5d\x8b\xcb\xa9\x68\x4f\x4c\x42\x37\x3c\x5f\xdb\x31\x30\x66\xb3\xf2\x39\x6c\x84\x7f\xba\x07\xe5\xef\xeb\xf2\xb6\x6b\x01\xab\x32\x69\x4c\xc3\xee\x18\xfb\xa3\x6a\xc6\x5b\xf3\x59\x3f\x91\x6d\x9a\x18\x26\x3a\x41\x67\x1e\x47\xfd\x13\xb6\x7c\xf6\x16\x47\xb8\xf0\x2e\x8b\x04\xfe\x10\xb5\xe5\xaa\x14\x07\xe8\xb1\xf2\xdd\x6b\x41\xbd\x3e\xf5\x95\x8c\x37\x5d\xe3\x85\xcc\xa7\x7c\x65\x14\x43\x69\xde\xa9\x11\x01\x39\x81\x61\x4f\x76\xa8\x70\x4b\xae\xe8\xd6\xf6\xff\x93\xf7\xe6\xdd\x6d\xe3\x58\xa2\xf8\xff\xfe\x14\x32\xa7\x87\x45\x8c\x60\x46\x4e\xd7\x7b\x6f\x86\x29\xb4\x4e\x2a\x71\x3a\x99\xce\xd6\xb1\xab\x6b\xfa\xa9\x34\x1e\x5a\x84\x2c\x54\x28\x50\x4d\x82\x5e\xa5\xef\xfe\x3b\xb8\xd8\x49\xca\x76\xaa\x7b\xde\x6f\x3b\xc7\xc7\x22\x41\xec\xcb\xdd\x70\x97\xe4\x37\xde\x42\x2a\x86\x34\x42\x63\xe6\xbc\x51\x72\x90\x23\x54\x76\xa5\x54\xb7\x0c\x8b\x33\x60\xc9\x60\x38\x14\xaf\xfc\xd4\x37\xe7\xab\xcc\xce\x03\x3d\x5d\xdd\xa4\x6c\x11\x9b\x46\x6a\x64\xec\x3c\x55\x89\x3c\x2c\x61\xcd\x05\x49\x22\x1c\x23\x3a\x8d\x1a\x01\xd5\x64\xce\xb7\x2d\x11\xd3\x88\xb7\x3a\x55\xe3\x49\x95\xda\xdc\xea\xd4\x44\x72\x35\x11\x8a\x70\xee\x1a\xc7\xb5\x1c\xa2\x66\xe7\x04\xee\x72\x7a\x1b\xac\x59\xc0\x35\xd6\x2c\xe1\xe0\x41\x90\x94\xee\xf4\xf0\x46\x5f\x8e\xc6\xf1\x6d\x22\xd0\x54\x12\x81\xa7\x89\xc0\x6b\x84\x32\x45\x10\x66\xa0\x95\x12\x30\x9a\x17\xb8\xc3\x88\x9e\xe0\x0e\xa3\x7a\x89\x3b\x8c\xec\x35\x76\x3c\x6e\x7f\xbf\xf6\xbc\xfd\xd2\x38\x1e\x0c\x10\x25\x4f\x4e\x26\x89\xb1\x09\x6c\xe9\x1e\x23\x1d\x0e\x54\x7b\xb8\x22\xf4\xa0\xa8\xee\x2d\x1d\x71\x48\x48\xc2\xbd\x2b\x42\x2f\xd0\xb5\xab\x29\xa9\xe5\xa1\xf7\x04\x13\x7b\xee\x14\x6b\xb4\xbb\x5e\xb1\x92\x26\x5a\x36\x51\xa3\xc0\x1a\x13\xfb\x8c\xff\x3b\xec\x8b\x04\x06\x50\xba\xc2\x71\xf6\x1e\x72\x26\xe6\xd6\xc2\x92\xc3\x78\x9d\x70\x61\x80\x2d\xd2\xf8\x69\x3a\x9b\x67\xaf\x15\x06\x05\x73\x1f\x27\x9c\x18\x28\xf3\xde\x70\x04\xd8\x49\x33\xc2\x39\x54\xc7\xeb\xbd\xe3\x2c\xf0\xc0\x7d\xda\x88\x26\x6e\xba\xc1\x7d\x73\x2f\x88\xb0\x0b\xbb\xee\x19\x76\xed\x17\x39\x8a\x01\x91\xe3\x60\xc4\x75\xe5\xbb\x2c\x8a\xf0\x80\xb6\x50\xfd\x07\x1d\x5c\x2a\xc2\x11\xc2\x77\x89\x98\xd5\x73\xb4\xdd\xca\x14\xaa\x5e\xdc\x6a\xed\xfa\x32\x4b\xd3\x75\x3b\xde\xa9\xf0\x08\xd3\xec\x8d\xbe\x00\x83\x29\xe9\x4b\x8a\xde\xe2\x01\x91\xd2\x8f\xd8\x49\x9c\x16\xd8\xc9\xa1\xfa\x4b\x73\x78\xa8\x66\xfe\x27\xc7\x8e\x3b\x01\x96\x9f\xdd\x64\x53\x44\xae\xcc\xa6\xe4\x5d\x7f\xf3\x45\x78\x57\x8c\x5e\x37\xcf\x00\x1f\x0c\x49\x94\xd5\x67\x4f\x9e\xfc\xeb\xdf\x5a\x5a\xdf\xee\xff\x1e\x5e\x6e\xf5\x3e\x83\x57\xbd\xf3\x42\x07\x55\xf6\x2e\xc5\x5c\xce\x45\xb5\xde\x54\x5c\x66\x53\x87\x78\x20\x8b\x71\x54\x40\x6f\x84\xf3\x4f\xd0\xcb\xa5\x9e\xe0\xfa\x4c\x3e\xee\xaf\x07\xc4\xcc\xe7\x70\x9d\xfe\x40\x75\x26\xf3\x8a\x95\x05\x54\xf8\x84\xcc\x32\xe1\xbc\x11\xb9\xa0\x4f\xcd\xfb\x58\xae\xae\x57\x86\xc1\xe9\xcb\xc5\xb3\x5c\x88\xfa\x81\x75\x50\x53\x7b\xbe\x51\xea\xcd\x03\xf9\x60\x1d\x75\xb6\x23\xbb\x24\xfb\x2b\xd4\xfd\x5a\xe7\x3c\xbf\xdc\xbb\xac\xb9\x78\xb6\xcc\xcb\xf2\x22\x5f\x7c\x85\x2f\x47\xc6\x7d\xc7\x93\xc2\x3d\xe2\x0d\x2e\xf0\x1a\xdf\x76\x04\xcb\xc3\xa1\xc6\x29\x8e\x7e\xfd\xb3\xda\xaa\xf7\xbe\x67\x87\xc9\x3e\xcf\x0e\xe6\xa6\x60\xb7\x43\xf8\x91\x2a\x5f\xb3\x46\x56\x56\x3c\xb9\xea\xb0\xd8\x83\x2d\xe4\x45\xf1\x4a\xee\xb0\xbf\xc0\x8e\x7d\x52\xfd\xc0\xc6\xda\x42\x0f\xd6\xce\x9a\x53\xb6\xde\x94\xf4\x55\xc9\x16\x5f\x9f\x5c\x7d\x50\xea\xc1\xfa\x2f\xa9\x90\x7d\xf8\xb1\x6a\x79\xd1\x3c\xb9\xfe\xa0\xd4\x53\xea\x7f\x55\x32\xca\xc5\x17\xba\x10\xdf\xdc\x88\x57\xf4\xc9\x23\x61\xfc\xd2\x15\xfb\x4d\xa3\x0a\x6a\x78\xac\xdd\x2f\x55\x05\x25\xbf\x69\x6c\xb6\xd0\x63\xb5\xdb\x8d\xf2\x4d\xd5\xbb\x52\x4f\x99\xb5\x77\x4f\x3d\x1a\x76\x96\xde\x3d\x7c\x2a\x74\xae\x93\x92\x2a\x67\x33\xdf\x56\xb9\x2e\xf6\x60\x0b\xcd\x6f\x6b\xa1\x79\x7a\x0b\x56\x7f\xfd\x54\xdc\x96\xf4\xb5\x36\x65\x63\x15\xff\x40\x9b\x26\xbf\xa4\x4f\x6e\xf3\xb1\x8a\x1e\xec\x05\x98\x9d\xbc\xf6\xf0\xef\x93\x1a\xad\x9f\x04\x1d\x5f\x19\x34\xf1\x5e\x23\xee\x27\xd5\xcd\x9e\x54\xf7\x19\xbd\x11\xa7\x06\xe9\x3d\xa9\xde\xea\x89\x7d\xae\xe9\x37\xc0\xda\xfc\x69\x95\x4a\x82\x02\x14\x8a\xbe\xad\xcb\xcd\xd3\x6a\xb7\x67\xf1\xdb\x6a\x6f\x9f\x54\xbb\xac\xf8\x54\x52\x2c\xdf\x56\x79\xf9\xe4\xca\xb5\x8e\xe8\x93\x6a\x5d\x3c\xa9\x56\xe5\x63\xe8\xdb\xfa\xbb\x7c\x52\xcd\x1f\x7e\x3a\x03\x2b\xb1\x57\x27\xef\xdf\x3f\xb1\xe2\x55\xea\x17\x7a\xb0\x76\x45\x5d\x7d\x36\x34\xd8\x93\xaa\xdf\x3c\xa9\xdf\xab\xbc\xf9\xd6\x6a\x5d\x91\x27\xf4\xf9\x95\x23\x08\x9f\x54\x7d\xf1\x0d\xeb\xf8\xc1\x90\x90\x4f\xaa\x79\xfd\xa4\x9a\x0d\xd5\x29\xf7\xdf\x17\x43\x73\x3e\xad\x81\x5b\xaf\x81\x3e\xe3\xd4\xa7\xb8\xfb\x3c\x94\x62\x89\x1e\xd1\xc0\xf1\x37\x8d\x0b\x50\x1e\xa4\x2a\x0f\x85\x46\xff\x2e\xd8\x9a\x0f\xf7\x6c\x0f\xcd\xfd\x5b\xbb\x6a\x94\x98\xa0\x3f\x4e\x76\x88\x12\x15\x1c\x6e\x6f\x4f\x42\xa6\xee\x51\xa7\x85\x5a\x99\xe9\x5b\x3c\x67\xeb\xf5\x57\x06\x5f\x2a\x4c\x02\x34\x1a\x3a\x5f\xf5\x63\x5c\x8f\x84\xef\x16\x3f\xb2\x25\xb2\x68\xac\x44\x2b\x65\x7e\x5b\xb5\x0f\x57\xa0\xa3\x0c\x44\x82\xae\x37\x65\x2e\x68\x66\x6b\x69\x9e\xe9\x6a\xf6\x6d\x9d\x3d\x4c\xdd\xbe\x85\x79\xc4\xc9\xde\x23\xac\xe0\x37\xfa\xe0\x1b\xf6\x67\x25\x19\x32\x72\xdf\x50\x5e\xf4\x02\xeb\x0c\xc4\xd8\xab\x1f\x8e\xb1\x37\xe0\x28\xfe\xc0\x7a\x95\xc1\xca\xd8\x5b\x7b\x74\x6b\xb4\xb5\x85\x7e\x9b\xd1\x39\x58\x7f\x56\xdb\xed\xe1\x84\x10\x52\xf9\x17\xcd\x35\x52\x22\xa7\xbc\xa7\xc5\x6d\x9d\xb8\x81\xc5\xb7\xe7\xa9\x2c\x0f\x3c\x56\xee\x0e\xaa\xf4\xf4\xe4\xe3\xeb\xf3\x97\xaf\xce\xde\x7d\xfa\x18\xc7\x49\xfe\x94\x88\x82\x7f\xe7\x68\x8d\x7e\x8c\x6f\x14\x41\x89\xf3\x53\x57\xf5\xdd\x58\xc8\x95\x4d\xa3\x31\xed\x2b\xa6\xdb\xe8\xcf\x87\x84\x24\x15\x51\x26\x2b\xda\x09\xdd\x80\x28\xab\x9a\x56\xa1\xcb\xf4\x5a\xc7\x8d\x09\xdc\xf8\x25\xf7\xda\x7b\x61\xd5\x71\x5d\x58\xef\xc0\xa7\xfa\x9e\x7b\x95\x38\x16\x33\x16\xc0\xb2\x39\xe8\x49\x88\xf4\x2a\x2f\x5b\x0a\x82\x79\x65\x14\xad\x9a\x21\x39\xc2\x7b\x5d\x3e\xb6\x0f\x1f\xa5\x41\xf1\xcc\x7e\xb7\xc8\x0f\x4a\xb1\x7e\xb3\x7f\xfc\x85\xa5\xd0\x94\xcb\xde\x07\xfc\x4e\x1e\x3f\xc5\xef\xa4\x59\x5b\x47\xf9\x19\xcd\xfd\x1d\xc2\xf9\x66\x43\xb9\xe2\xff\x83\x23\x69\x2c\x20\x6c\xa1\x7d\x6e\xa5\x9f\x26\x0f\x1b\x9e\xc3\x6f\x0b\x30\xb0\x47\x39\x37\x54\xbf\x99\xcd\xd1\x03\x0e\x3f\x87\x8d\x54\xb3\x99\xd2\x15\x05\x9a\x3b\xc2\xee\xc5\xf8\x4b\x88\xe6\x98\x71\xd6\xf1\x96\x6c\x95\x4f\x86\xb5\x54\x76\xd8\xd5\x99\x31\xdc\xab\x33\x63\x8f\xcc\x63\x28\x9f\x7c\x6c\x13\x1a\x7c\xf7\x0f\xf6\x9d\xaa\xf4\xe9\xee\x8f\x7f\x9f\x45\x2a\xa4\xdc\x47\x7a\x5d\x32\x4e\x23\xfc\xfc\x7f\x65\xd1\x22\xe7\x0b\x5a\x46\x3b\x77\xb1\x9d\x1b\xf7\xf6\xaa\xa0\x73\x61\xcd\x7b\xf0\xc6\x7e\xa0\x08\xe7\x61\x4e\x38\xd8\x11\x3a\x60\x21\x1c\x1d\x70\x98\xc9\x9f\x08\x62\x66\x39\xae\xe7\x3b\xdf\x5d\x84\xab\x24\x8e\xab\x24\xc7\x35\xc2\x55\x1c\x1f\x06\xfd\xb8\x68\x2f\x2e\x4a\xda\x44\x28\x8e\xeb\xb4\x11\xd5\x46\xee\x99\xfc\x32\x57\x7b\x60\xbf\x27\x72\x9e\x9e\x01\xaa\x08\x58\x0b\x7c\x0f\xc3\xca\xa2\x08\xcb\x99\x60\x17\xad\x73\xc8\x91\xcd\xa2\xbc\x15\xd5\x22\xdf\x30\x91\x97\xec\x4e\xae\x23\x24\x54\x75\xad\x54\x6e\xe5\xdb\xb2\x5a\xb4\x72\xfd\x0b\x2b\x41\x8c\x96\x55\xbd\x8e\x70\xb4\xce\x6f\x8c\x7b\xa3\x68\xcd\xb8\x7d\x06\x7f\x3e\xab\xaa\x2c\x40\xa8\x5a\xd3\xbc\xa8\x78\x79\x0b\x8f\x7f\x6b\x59\x0d\x55\x34\xb4\x54\xce\x7d\x5f\xb3\x9a\x1a\x3d\xe2\x66\x43\xcb\x12\xae\xff\x22\x89\xf7\x2e\xb4\x88\x3f\x12\x4c\x94\x92\xa8\xf2\x2a\x56\x9e\x67\x4d\x9f\x24\x14\xb2\xbd\xd1\xae\xd8\xbf\xf5\xe8\xa8\x8b\xec\x8a\x27\xd1\x26\x6f\x04\x0d\xdc\x24\x50\x25\x2b\x01\x67\xf7\x2e\x20\x84\x2b\xb1\x68\xc5\x37\xe5\x67\x7c\xf3\xa4\x12\x3b\xac\x37\x03\x38\x27\xe7\x82\xd6\x9b\x9a\x8a\x3f\xd1\x5b\x10\x89\x0c\xc5\xb3\xab\x66\x34\xfd\x4a\x6f\x5f\x55\x85\xa2\x36\x1e\xa8\x3d\x41\x58\x04\x56\x1e\x62\x0e\x77\x2e\xc3\xb9\xb3\xd0\xb6\xca\x8f\x21\xa0\x4f\x8e\x1a\x89\x2e\xac\xd1\xe4\x0e\x2f\xfa\x81\x31\x1e\xea\x13\xb5\x21\x46\xf5\x99\x0f\x4a\xe6\x49\x44\xe5\x2c\xe8\xa9\x93\x67\x38\xd1\x20\xe2\x88\x1b\x18\x61\x30\x06\x56\x80\xa2\x57\x41\xb3\xc8\x37\xf4\x68\x53\xd3\xa6\xf1\x32\xc3\x36\x7f\xc7\xbb\xb9\x21\xf9\x48\x32\xff\x61\xce\x4f\xed\x90\x07\xe5\x7d\x63\xc2\xb6\xa6\xca\xae\xbb\xac\xea\x2b\xbd\xfd\x2c\xfb\xd1\x6d\xf5\x2b\xbd\xed\x75\xf0\x2b\xbd\xfd\x69\xd3\x6f\xb3\xbf\x2b\x74\x7b\xb2\x0e\xc9\xb4\xf8\x15\xbc\xae\xae\x7b\x23\x94\xf9\x8a\xea\xda\x1b\xe1\x23\x28\x62\xe8\x82\xe8\x1f\x1c\x70\xea\x5c\xd4\x39\x6f\x98\x2c\x77\x56\xed\x73\x4c\x76\xbe\x68\xeb\x9a\x72\x01\x92\x1f\xcc\x07\x12\x8d\xae\xa7\x7c\x06\xf2\xdb\x7b\x27\x14\x4b\x22\x2f\xa5\x37\xcc\xfe\x6a\xf3\x40\x9e\xc2\x26\x8b\x63\xfd\x60\xe9\x96\x27\x4c\xcb\xb7\xb0\x43\x4f\xe3\x8d\x2e\xea\xea\xba\xd9\xe3\xb9\xfc\x5b\xaf\x32\xf5\x4d\xe8\x93\xad\xeb\x2c\x86\x6d\x3b\x4a\xce\x6e\xe9\xea\xa7\x12\x3b\x3d\xf4\x13\xcd\x31\xa7\x79\x4d\x1b\xf1\x69\x09\x1e\xe1\xbb\xec\x8a\xef\x48\x20\x97\x8b\x2a\x29\x42\xcc\x49\x60\x0a\xa3\xdb\x1f\x0a\x41\x6d\xbc\x1b\x24\xc2\x57\xaa\x1e\xfa\x1e\xf8\x03\xdb\xbd\x10\xca\x91\x82\xcc\xeb\x6e\xfa\xe5\x2e\x75\xdd\xd8\xed\x4c\xe7\x7f\x66\x62\x35\x18\x6f\x65\xef\x10\x4c\xfd\x14\xec\x47\x1e\x68\xa1\xa6\x35\xe5\x05\xad\xf7\x7a\x75\xf7\x37\x7b\x6a\x72\x1b\x2b\x56\x0d\x8c\x32\x30\xc2\xfd\x7b\xc9\x79\x13\xb9\x56\x36\x40\xc1\x00\x58\xdf\x1f\x38\xa2\xfe\x77\xdd\x30\xb9\x3e\x3e\xb0\x7a\x20\x53\xed\x09\xc2\x06\xfc\x0c\x72\x65\xe1\xd7\xe0\xdb\x4e\xb3\x0d\x83\x10\x21\x54\x83\x12\xa4\x4a\x57\x79\xf3\xfa\xd3\x87\x01\xfa\x8d\x4e\x8b\x6a\x01\x48\x3f\x85\xe3\x70\x0a\xa4\x48\x55\x27\x14\x65\xba\x3b\x76\x9c\xa6\x45\x13\x55\xd7\xc4\x6a\x82\xe4\x7d\xb3\x64\x0b\xd9\x76\x2e\xaa\xe2\xd6\xad\xc8\xbb\x42\x91\x28\x4b\xc6\x0b\x3d\x8b\xef\xf8\x67\x58\x78\xfd\x3a\x30\xc0\xe8\x9f\xb4\xa3\x22\x5b\xc9\x81\xe7\x0d\xc1\xcd\x18\x9a\x4d\xe6\x40\xe9\xfa\x89\x98\xca\xe4\x1d\xbe\x66\x65\xf9\x0e\xd0\xa5\x69\xa8\xc5\x05\x2b\xba\x49\xe0\xfe\xbb\xa4\x79\xfd\x45\x6d\xbf\x76\x28\x10\xe5\x13\x09\xaa\x70\x8f\x9a\x48\x94\x7a\x8b\x7a\x8e\xa5\x5c\xeb\xee\x08\x38\xe2\xa3\xc5\x22\xbf\x94\x8c\xcc\xdf\x45\xdc\xd9\xa9\xdb\x6e\xa3\xc8\xf8\x2a\xd5\x15\x6f\xb7\x49\x98\x47\x33\x07\x81\x41\x3b\xda\x61\xe5\x4c\x11\x30\xed\x43\x51\x3e\x82\x51\x7b\x65\x6c\xd8\xdc\xfd\xf8\x64\x8f\x76\xc2\xb7\x5a\xac\xa1\x7b\x9f\x55\x80\x80\x5f\x26\x12\x87\xe2\x10\x1a\x72\xbf\x7b\xb0\x07\x7d\xc5\x97\x3e\x56\x33\x66\xe2\x03\x0e\x2d\x1f\x08\xeb\xd2\xe7\x1f\x7f\xa3\xea\xce\xdf\xa9\xc2\xf1\x48\xbb\xe7\x7a\x06\xdc\x75\xe5\x23\x4a\x1f\x03\x7c\xec\x82\xdc\xaf\xab\xb6\xa1\x40\x49\x64\x11\x3c\x57\x57\xb2\xaf\xf0\x58\xd2\xfc\x8a\x9a\xe4\x56\x44\x3b\xdf\xdd\x40\x57\x38\x4c\x15\xd5\x7f\x2f\xaa\x76\xb1\x6a\x44\x5e\x8b\x2c\x82\xe7\x53\xf9\x1c\x61\x78\x5e\x57\xb2\x42\x78\xfc\x50\x5d\x51\x9d\x2a\xc1\x95\x4a\x3c\xe1\x85\x4e\xd3\xf4\xb1\x4a\x7e\xa5\xb8\x6a\x49\x25\x4a\x6a\x30\x8b\x34\xb9\x08\x29\xed\x06\xde\x7f\xda\xc0\x1b\x50\xa6\x90\xf0\x59\xd1\xa8\xd0\x7b\x55\x0a\x1e\x55\x39\x78\x94\x25\xe1\x41\x96\xd5\xb1\x23\xd6\x94\xb7\xda\xa1\xf4\x8d\xf8\x40\x79\x1b\xe1\x45\xc9\x16\x5f\xb3\x68\xa1\x74\x3c\x8a\x8b\x52\x27\x14\x55\x7b\x61\x55\x3f\xa0\x1e\x35\x3c\x78\x54\xc3\x03\xba\x9a\xf1\x2c\xd2\x14\xbc\x4e\xa9\x5a\xa1\x93\x3e\x49\x92\xbb\xb7\x06\x27\x8a\x8f\xe8\x2d\xc2\x7b\xf9\x1c\xe1\xa6\xbd\x58\x33\x91\x45\xea\x37\xc2\xc0\xb1\x65\x86\x71\xd3\x4c\x4d\xb4\x30\x21\x10\xea\xfc\x52\xaf\x87\x7c\xd4\xcb\x21\x1f\x55\x82\x7a\xd6\xcd\xcb\x47\xdd\xba\x7c\xd4\x8d\xcb\x47\xdd\xb6\x7c\x94\x5b\x44\x25\x7e\xba\x52\x39\xab\x8d\x7c\xaf\x36\xa6\xae\xc2\xd4\x54\x44\x3b\x5c\x57\x95\x85\xdf\x91\xc4\x36\xd1\x43\x30\xd2\x68\x73\xab\xfd\xfd\x56\xb9\x87\x6d\x3a\x6a\xd3\xea\x66\x04\x37\x54\xf4\xa2\x17\x2b\xbb\x21\x55\x05\x84\x80\x52\x8c\x87\x92\xf5\x7a\x0e\xc2\xc0\x82\xdf\x93\xfd\xaa\xfd\x0b\x2e\xfd\x0f\x94\x8a\xa9\xf2\xa3\xcd\x7c\x66\xd2\x1b\x4a\x84\x85\xf1\x4a\xdd\xad\xca\xcf\x85\x70\xe3\xb9\x26\xce\x3b\xaa\x4b\x28\x69\xac\x16\xf3\xa1\x27\x3b\xce\xf6\x50\x01\x15\x42\xca\x3b\xce\x7b\xd6\x40\xb8\x45\x03\x1f\x25\x62\x61\x1a\x0c\x20\x6b\xb3\x93\xc0\xb0\x9d\x0b\x03\x28\x9f\x17\x05\xdc\xa7\x0f\x16\xc5\x87\x4d\xca\x9a\x24\x4a\x07\xbe\x21\x17\x0f\x4d\x92\xc4\x60\x28\x9e\x44\x3f\x71\x39\x92\x91\xa8\x46\x79\x51\x8c\xbe\xeb\x95\xfb\x6e\x04\x1d\x96\x19\xe4\xbc\x8c\x34\x0e\x1b\x25\xd1\x18\xe2\x9c\xa8\x91\x6d\xb7\xcd\x6c\x32\x37\xf8\x0e\x8d\x23\x94\x8e\x3e\xe4\x5f\xe9\xa8\x69\x6b\x3a\xba\xad\xda\x51\x43\xc5\xc8\x9b\x58\x59\x9f\x58\xd1\x91\xdc\x4f\xa3\xaa\x1e\xe5\xdc\xd6\x0c\x2e\x4d\xd5\x97\x34\x42\xda\xd9\x86\xda\x10\x5a\x81\xc5\x5c\x59\x26\xc8\xda\x4b\x97\xb2\x58\x8d\x6a\x49\x9a\x79\x7a\xca\x49\x69\xdc\x52\xc1\x5e\xd3\xdb\x31\x69\x70\x89\xeb\x59\x39\xc7\xad\xd9\x85\xfa\x4b\xd6\x17\xd0\x82\x4c\x16\x57\xb8\x35\x3a\x77\x7a\x7b\x11\x1e\xc7\xbd\x0d\x31\x4d\xd8\x80\x6a\x35\x23\xf5\x8c\xa6\xac\x98\xe3\x8a\x1c\x5a\x42\x92\x69\x0f\x5e\x3e\x06\xe7\x60\x41\x51\xed\x70\x35\x50\x8d\x41\x07\xa0\x01\xa8\x6c\x9a\x5f\x1a\xc6\x27\x89\x8a\x5c\xe4\x47\x7a\xf9\xcc\x15\xc9\x92\x38\x47\x16\x3d\x14\x3d\x5b\x80\x14\x07\xa8\x95\x05\x38\x0c\x84\x90\x03\x34\xb5\xdc\x54\x83\xcc\x55\xce\x92\xcc\x64\xe7\x27\x2f\xaa\x1f\xd8\x8b\x6a\x3c\x46\xa0\xd0\x9f\x93\x3a\x65\x82\xae\x61\x5f\xf2\x7c\x4d\x9d\x79\x6a\xaf\x37\x47\x11\x8a\xe3\x64\x49\x96\xc6\x4d\xe0\x43\x3d\xcb\x95\x88\x67\x8e\xc0\x0b\xd5\x12\x3a\xd7\x92\xc9\x8b\xf6\x87\xa5\xf5\x5a\x38\x1e\x23\x79\x44\x4a\xb2\x9c\xb5\x73\x14\xc7\x65\x0a\x20\x00\x34\xb3\x09\xe1\xc8\x2a\x62\x68\x17\xd5\xa0\x7f\x6c\xef\x80\x16\x33\x31\x9f\x26\x2d\xfc\xe2\x25\x11\x78\x35\xa4\x12\x4f\xec\x39\x56\x80\x4b\x2d\x52\xf4\x01\x80\xfc\x95\x72\x36\xee\xd4\x02\x39\x13\xee\x4b\x42\xf1\xe1\xb1\xfc\x13\xa9\xa4\x00\xe0\xd6\x43\xe4\xac\x84\x18\xe9\x35\xa5\xfc\x3f\xec\xd3\x5f\xb1\x48\x17\xa0\x0e\xf7\x1f\xf6\x09\xd2\x44\x5d\xfe\x89\xde\x62\x91\xe6\xa5\x50\x0f\xcd\x8a\x2d\xf5\xa3\xa4\x76\xd4\xd3\x45\x2b\x44\xc5\x81\x0a\x2b\x25\x6b\xac\x44\xb5\xfb\xae\xff\xb9\xbd\xf6\x33\xf2\x5b\x61\x02\x46\x05\xf7\xff\x2a\xa6\xdf\x86\x0c\x40\xf3\x59\x3b\xef\xdd\xff\x29\x4e\x82\x9a\xaa\x38\xa1\x61\x77\x5e\x88\x38\x06\x1f\xfe\x29\xaf\x0a\x2a\x01\x50\x1c\x27\x87\x7c\xbb\xe5\x87\x60\x27\x7c\xa8\xc2\x3f\xe5\x8c\x37\x09\x47\xe8\x05\xaa\x67\x42\x1e\x99\x29\x4b\x04\x5e\x25\x4b\x4c\x11\xca\x20\x22\xec\xc3\x7b\x3e\x8e\x2b\x57\x00\x3b\xb6\xf7\x63\x55\x80\x7d\x46\x5e\x28\x57\xc3\xc6\xe2\x22\x69\xf1\x06\xa1\x2c\x29\x06\x07\x2a\x06\x42\x7c\xd8\x41\x6a\x63\x09\xdd\x51\x60\x4b\x21\xfe\x13\x03\xa6\x08\xdd\xd3\x74\x53\x43\x75\x3a\xec\x6c\x02\xbe\x67\xbb\x42\x77\x6d\x1e\xb8\x33\x40\xff\x49\x63\x84\x76\x2a\xd5\x8e\x32\x66\xed\x8c\x54\xd9\x5a\xf4\xe6\x1c\x0d\x4e\x81\xc0\x05\x92\x73\x40\xd3\x8a\x27\x62\xac\xb1\x47\x84\x0d\x1a\x51\xea\xe2\xfd\x89\xa8\x67\x4a\x4c\x58\xcc\x31\xf3\x00\x9b\x00\xf7\x21\xa2\x03\xd8\x92\x09\x2e\x3d\xde\x1c\x81\x63\x11\x39\x23\x9d\x36\x67\xbd\x01\xcf\x07\xda\xd6\x77\xc4\x34\xd5\xcc\x90\xda\x64\x1e\xe8\xc2\x39\xb8\x40\x00\xef\xaa\xdd\xa6\xb1\x20\x93\x17\xe2\x87\xca\xc0\x12\x31\x1e\x23\xb0\x04\x03\xa3\x26\x80\x68\xc2\x40\xb4\x32\x6f\xc4\xbb\x07\xa0\x1a\x9e\x28\xe7\x2c\x0f\x81\xb3\xda\x80\xb3\x38\x66\x21\x94\x8a\x63\x08\x6c\xe1\x5c\x8f\x33\xa8\xcd\xc2\x2c\x8a\x70\xae\x7c\x2e\x30\x84\x76\x60\xbb\xd7\x45\x82\x7d\xe7\x4d\xe6\xc6\xe7\xd3\xb5\x0d\x10\xef\x3c\xb1\xc5\x31\xb5\x1a\x1a\x21\xc7\x92\xad\x73\xc6\x23\xb4\xdd\x3a\xc5\xb8\x21\xde\xdc\xb6\xf1\x00\xcd\x24\x3c\x9a\x49\x9e\x17\xb3\xfd\xa6\x74\x1f\x65\x24\xcf\xcb\x10\x81\x15\xfa\x43\xe9\x9f\x50\x64\x82\x4d\x87\x3b\x9a\x0f\x11\xa1\x33\x3e\x57\xb4\x55\x48\x54\x51\x94\x56\xcb\x65\xe2\x76\xe0\xbf\xfc\x4b\xe4\x99\xf5\x39\x7a\x4d\x35\x34\x4c\x77\x3d\x7e\x7b\xba\xc3\xc6\x24\xa6\x2f\xdb\x89\x92\x8e\x1e\x2a\x8a\x80\x85\x3f\xd8\xcf\x40\x1b\xee\xf5\x69\x61\x28\x87\x04\xbd\x8f\x5e\xe7\x87\x4b\x11\xfa\x2b\xd1\x6a\x11\x8c\xf4\xb2\x1d\x2a\x88\x03\x4e\xe5\xff\xfd\xcf\x3f\x9d\x7c\xf9\xeb\xf9\xbb\x8f\x67\x27\x7f\xfc\xf2\xf2\xec\xdd\xa7\x8f\x07\xdc\x0a\xcf\x92\x9a\xb8\x90\x7f\x6c\x0d\x83\xd0\x95\xe1\x43\x16\xc7\xf5\xb4\x56\x87\x45\x02\x2c\x09\x32\xbb\xef\xea\x3c\x9e\xd5\x39\x6f\x96\xb4\x8e\x50\x36\x8b\x2c\xb3\x14\x61\xcd\x1c\x45\x96\x3b\xd2\xcf\xa5\x62\x84\x22\xc3\x09\xc1\x23\x84\xc1\xd0\xbc\x4f\x34\x37\xee\x58\x93\xc0\xda\x48\x37\xbe\x64\x37\x6f\xab\xea\x6b\x33\xa3\x73\x72\xbf\xa9\xab\x4d\x23\xdb\xf5\x3b\x32\xdf\xed\x50\xd6\x9b\x17\x09\x21\x7d\x3d\x0e\xa6\x6d\x29\x21\x3a\xe4\x63\xeb\x3c\x20\x2d\x78\x5c\x63\x6c\x68\x23\x7c\xa3\x26\xc7\x80\x25\x1c\x7d\x58\xb0\xd3\xb5\xa4\x79\xa0\x97\xbf\x3d\x06\xb7\xc1\xc3\xcd\xa6\x64\x22\x89\x9e\x45\x08\x73\x22\x66\xc6\xa6\xed\xe8\x78\x6e\xcf\xaf\x9f\x48\xa2\xf3\x68\x2c\x09\xa5\x5f\x2b\xc6\xa1\xd8\x6e\x68\xa8\x92\xfc\xd3\xb6\x77\x87\x84\x1a\x12\x3e\xe8\x5e\xad\xb0\x7d\xad\xa9\x4c\xe5\x79\x1f\x0d\x06\x9c\xb6\xde\xf6\x46\xd7\x79\x33\xe2\x95\x18\x2d\xab\x96\x17\xa3\xeb\x15\xe5\x23\x39\x5b\x8c\x5f\x8e\xda\xcd\x28\x1f\xc1\x5c\x8e\x8c\xda\x5c\x3a\x3a\x5b\xb1\x66\xc4\x9a\xd1\xba\x6a\xc4\xa8\x64\x5f\x69\x79\x3b\x2a\x5a\xe0\xd5\xd6\x39\x6f\xf3\xb2\xbc\xd5\xb7\x15\x82\xe5\x42\x56\x93\xf3\x91\x72\x64\x27\x11\x44\x3a\x3a\xa5\x34\x1b\xad\x84\xd8\x64\xcf\x9e\x5d\x32\x91\xb2\xea\xd9\xc9\x9f\x3e\x6f\xf8\x4b\xcf\x33\x67\x5f\x5d\x2f\x1a\x0b\xb4\xdd\x0e\x7e\xa8\xd1\x2e\x11\x18\xd0\x92\xb3\x7c\x66\xe0\x55\xd9\xe9\xcb\xf6\x67\xf2\x50\xfc\xbf\x71\x6a\x80\x10\xf3\x43\x20\x87\x53\x91\x40\xa4\xfe\x87\x33\xc1\x85\xe7\x03\x87\xa5\xe7\x30\xec\x21\x0f\x99\xbf\x21\x5e\x75\x14\x1d\x82\xdf\x13\xc5\x96\x4b\xd4\x6f\x45\xd0\x53\xef\x59\x45\x2e\xb2\xe2\x68\xf0\x05\x46\xcb\x0f\x80\x8a\x1a\xa7\x7d\x1b\xd8\x3d\x0d\xd2\xc5\x86\x3d\x91\xdb\x47\xf3\x27\xf2\x51\xb1\x2f\xf2\xc9\xb0\x34\x92\x3d\xb8\x5e\xb1\xc5\xea\x0f\xc7\x7a\xba\x0f\x25\x0f\xc0\xc1\x0e\xf8\x11\x7b\x8e\x01\xa0\xf4\x9d\xbe\xf7\x1b\x35\xb2\xc8\xc8\x51\x81\xa3\x75\x2e\x37\x82\xa8\xab\xa2\x5d\xd0\xd1\xa2\xae\x9a\xe6\xa8\x61\x82\x8e\xd4\x95\x95\x2c\x73\xd5\x96\x5c\x72\x3d\xac\x64\x82\xd1\xe6\xc5\x68\x53\xd2\xbc\xa1\x23\xca\x41\x78\x21\x56\xb9\x18\x01\xfd\xd6\x8c\x2e\xa8\x2c\x70\x01\x9b\x34\xaf\xe9\x68\x03\x4c\x55\x79\x3b\x52\x17\xff\x45\x3a\x7a\x53\xd5\xda\x7b\x09\x5f\x56\xf5\x1a\xfa\x8d\x47\x8c\x2f\xca\x16\x3a\xb8\xaa\xae\xe5\x26\xd5\xca\x25\x40\xd1\x8c\xae\xf3\x9a\x33\x7e\x89\x47\x0d\xa5\xb0\x27\x9b\xec\xd9\x33\x58\xf9\x5f\x9b\x74\x51\xad\x9f\x79\x60\xbf\x79\x76\x75\x9c\xde\x3c\xfb\x27\x51\x2d\xce\x2f\xd4\xa0\x8f\x60\xd0\x47\x6e\xd0\xe9\xe8\x54\x4d\xc3\x72\xa9\x02\xb4\x8f\xa2\xef\xc6\x74\xfc\x5d\xf4\x9d\x36\x72\xb6\xc6\x51\x83\x8b\xf8\x20\x75\x88\xb9\x24\xab\xf5\x09\xf1\xe3\x0a\x08\x34\x88\x35\xb5\x38\x6f\x46\xe7\x07\xda\x96\xb9\xf6\xee\x21\xe3\x98\x2b\xea\xb6\x46\x8a\xdd\xa4\xce\x00\x8a\xd4\xee\x4d\x53\x96\x83\xe8\x68\xc6\xe6\xca\xc8\x9f\xed\xcd\x2a\xf3\x10\x63\x66\xde\xec\xab\xd2\xbb\x67\x81\x02\x42\x77\xc7\x69\x19\x0e\xb5\xdf\x24\x14\x77\x08\x6e\x8a\x1e\x9e\x43\x64\xfa\xeb\xd5\x9c\x2b\xbe\xcc\xa6\x0c\x4a\x23\x8c\xc3\x05\xa7\x13\xcb\xe3\x38\xe1\x24\x57\x9e\xa0\x40\xa0\x58\x4b\xd6\x45\x1d\xa3\x52\xd2\xd6\x5e\x1b\x8d\x9b\x50\x65\x5b\x48\x5a\x97\xf2\x05\x62\xfb\x95\x2e\xc1\xb3\x0c\x1c\x1a\x77\x29\x87\x29\x67\xc7\x65\x4b\xd0\xae\xd3\x42\x60\xe7\xf7\x50\x2d\xfd\xdc\x89\xb6\xe3\x57\x30\x68\x70\x95\x16\xda\xaf\x19\x16\x68\xe7\xc7\x84\xb3\x36\x01\x7f\x79\x77\xf2\xf3\xf9\xc9\xfb\x93\x0f\x27\x1f\xcf\x40\x61\x78\xd0\x2d\x58\xee\x36\xbf\xfc\x7e\x4a\x6d\x9c\xe8\xc0\x57\x86\xcd\xdf\xf8\x4b\x32\x9b\x63\xe7\x08\xa3\xe7\xaa\xb6\x8e\xe3\xfa\xb1\x63\x71\x58\x6f\xb7\x75\xea\xbb\xa6\x0f\xde\x69\xb1\xdd\x86\x87\xc4\x53\x9c\xf0\x8e\x41\x70\x7f\xae\x96\x37\x70\x0b\x54\xba\x51\xb6\x2a\xaa\x48\x47\xb6\xf5\x45\xe9\x6d\x1d\xf8\xb6\x7c\x70\xd9\xf0\x23\x5d\x56\x35\x4d\x24\xe5\x5b\x37\x20\x5d\x90\x7b\xad\xa1\xe2\x84\x17\x2f\x97\xa0\xc3\x02\x5c\xb2\xfe\xa2\x1d\x03\xfa\x18\xc4\xf3\x4d\x60\xa5\xe4\xfa\xfc\xc5\x71\xa2\x9f\x3c\x97\x31\x7a\xd5\xb7\xdb\xbd\x9f\x4e\xad\xdc\x79\x20\x4b\x75\xf7\xe1\x09\xb9\x9a\x27\x64\xaa\x9e\x90\xe7\x9a\x5e\x7c\x65\xa2\x93\x71\xcf\xf5\xeb\x3e\x2b\xf2\x6f\xf6\x18\x1a\x08\xa7\x09\x4d\x7d\xd3\x0e\xc9\xfc\x62\xeb\x5e\xe3\x5e\x59\x6c\x64\x34\xb5\xa6\x1b\x3a\x03\x76\xd6\x1d\x6c\x37\x4c\x08\xfb\x02\x70\x0f\x33\xd8\x82\x47\x2a\x45\xc3\x35\xb3\x75\x6a\xc9\xdb\xa5\x0d\x84\x4c\x90\x7b\xd9\x3a\xe6\x47\x71\x9c\x24\x8c\x88\xa4\xc2\xaa\x6e\xe4\x3a\xbe\xdd\x32\xdd\x43\x34\x65\x99\xce\xb2\x8f\x7c\xea\xb9\x32\xd8\xeb\xfb\xf7\xdb\xd5\x99\xd4\x93\xd2\xeb\x7a\xaa\xc6\xb6\xe8\x7a\x84\x36\xd7\xaa\x22\x05\xc6\x9e\x16\x58\xa4\x4a\x1a\xa4\x85\x11\xf8\x9e\x35\x12\x4c\x66\x87\x13\xac\x95\xc8\x94\x32\xcd\xa2\xac\x38\x85\xab\xfd\x06\xc9\x59\x54\x4f\xbd\x1b\x37\xab\x7e\xf9\xb8\x92\x84\x52\x49\x8b\x36\x35\x55\x2a\x17\xd1\x80\xf2\x44\xa0\xcd\x96\xda\xac\x18\xe0\x69\x07\xb5\x1a\x4f\xf7\x87\x81\x3a\x8b\x47\xe1\xeb\x9b\xa5\x57\x39\x97\x24\xbd\x23\xc3\xe9\x28\x1f\xd9\xf5\x1e\x5d\x33\xb1\xaa\x5a\x31\xca\x47\x16\x72\x8d\x3e\xf7\x29\xaf\xdb\xaa\x05\x52\x0b\x80\x94\xa4\xa0\x94\xaa\xca\x38\x82\x0a\x46\xb9\xa6\xc1\x46\xd6\xcb\xfc\x33\x83\x6d\xd3\x08\xed\x3c\x85\x0f\xa3\xdd\x21\x69\xcb\x35\x08\x65\x45\xce\xca\x50\x3d\xd2\x02\x53\xe5\x97\x4c\x2b\x71\x58\x4f\x26\x8a\x38\xb5\xbe\xd3\xf5\xa4\xf5\x7c\xaa\x63\x0a\x22\x7f\x15\x9b\x83\xee\xb0\x56\xe8\x7e\x8a\x81\x10\xef\x9b\xcc\xd4\xe4\xf8\x45\xfd\x83\x00\x3f\x2d\x7c\x56\x87\x26\x33\xf5\xfc\xe0\xd1\x6d\xa0\x8d\x6a\x40\x9d\x40\xc5\x3b\x54\xea\xbb\x03\x9a\xe3\x0c\x59\x23\x64\xaf\x2a\x0e\xaa\x29\x43\x33\xb5\x27\x16\xda\x8c\xce\x75\x90\x32\x7d\x27\x0c\x7c\xd0\x01\xf3\xe3\x18\x25\xfa\x00\xe8\xf0\x7d\xea\xc2\xc1\x93\x8e\x3c\x74\xf0\xf5\xe1\x1c\x92\x2d\xf4\xa3\x9e\x0e\x17\x7e\xa6\x1b\x7a\x2c\xdb\xa6\xa6\xe7\xb5\x3e\x36\x0f\xe7\x5c\xe5\x8d\xd1\xd1\x7d\x2c\x2b\xe3\xe7\x45\xb5\x7e\xbc\x87\x36\x56\xcd\x3e\xcd\x90\x9e\xdc\x46\x15\x75\x2c\x9b\x07\x4d\x7a\xb4\x3e\x27\xf7\xe7\xc6\x9f\xe4\xfd\xce\xb9\x9e\xae\x47\x4c\xa2\x7f\x0b\x04\xba\x77\xf7\xa9\x29\x25\xc9\x00\xd7\xc9\x07\xb3\xad\xf2\xc6\x10\xdc\x0f\x65\x63\xfc\xf5\xa7\x0f\xbd\x1c\xae\x30\xc2\x14\xd1\xee\x15\x6f\x8d\xe0\xa2\x5f\x58\xed\x00\x3e\xab\xe7\x98\xce\xea\xb9\xe7\xb4\x08\xdb\xb9\x71\x83\xb6\x92\x08\x6c\xc7\x9a\x59\xcb\x7e\x0c\x7d\xc9\xac\xd5\x3c\x76\xbd\xc8\xac\x89\x3e\x76\xc3\xcf\x02\x53\xf8\x47\xb6\xae\xdb\x7d\x03\x5b\x78\x48\x1e\xb6\x57\x40\x77\x3f\x68\xee\x84\xee\x1d\x34\x16\x4e\xde\xf2\xd7\xaa\x1d\x2d\x72\xfe\x9d\x18\xc9\xca\xbc\x92\xa3\xaa\x15\x0d\x2b\xe8\x08\x0e\x30\xd5\x10\x59\x42\x5b\x1d\x2a\x24\xda\xa7\x9d\xe6\xbb\x11\x1e\x52\x29\x1d\xbc\x42\xd8\x3d\x6d\x8a\x5c\xa8\xa6\x47\x0e\x7a\x30\x71\x4f\x3c\xf7\xdf\x66\x8b\xa5\xf7\xa2\x8b\x46\xf0\x22\xd8\x71\x0c\x3f\xbe\x0e\x7c\x68\x1d\x24\x03\x13\x2e\x04\xd7\xd2\x2e\x2d\x6b\x28\x6c\x50\x2c\x34\x3c\xc1\x4f\x69\xc0\x94\x7b\xb0\xf6\x6f\x05\xbf\x21\xc0\xfb\xc7\x80\xe2\x5e\x64\x6a\x9d\xe0\xb0\xf6\x7e\x4d\xb9\x41\x3b\xaf\x2e\x28\x19\x5e\xbe\x0a\xdf\xf7\xa7\x16\x02\x8b\x5a\xd2\xc4\x2a\x40\x53\x34\xb0\xa5\xbb\x79\xe1\x9e\x88\x3e\xa0\xd1\xe9\x0c\xa6\x0f\xa9\x0b\xba\x36\xc1\x2c\x5d\x96\xf9\xe5\x25\x2d\xde\xd9\x11\xa3\x24\x02\x3b\x0c\x75\xe1\x98\x46\x63\x81\x95\xb2\x5e\xc6\xb1\x9c\xc6\x8c\xee\xf0\x90\x85\x64\x0d\x52\x6e\x94\x50\x70\xa6\x07\x14\x88\x72\x34\xdb\x59\xea\xea\x09\x4b\x6d\x10\xd6\x93\x56\xb9\x63\x71\xf0\xa4\x53\xe9\xef\xa5\xdf\xb8\xb8\x6c\xff\xe2\x2a\xe5\xb8\xbd\xab\xa5\xae\x6b\x95\x4f\xb8\x1b\x26\xf6\x65\x6c\xb9\x9f\xf5\x9b\xe7\xd0\xa7\x24\x1e\x72\x2c\xf7\x04\x68\xb5\x17\x1b\x84\x33\x22\x86\x62\xa7\x0c\xf9\xb6\xd3\xb6\x73\x7b\x2e\x8e\x78\x55\xd0\x23\x15\xd7\xab\x67\x70\x32\x10\x94\xbe\x7b\x56\x9f\x62\x95\xb2\xc8\x79\x5e\xdf\x0e\x04\xb1\x37\x57\x45\x17\xf9\xe2\xeb\x45\x5b\xfb\x42\xf1\x45\xc5\x9b\xca\x8f\xee\x24\xfb\x52\x57\x65\x10\x8d\xde\xa5\x69\x8d\x5d\xf3\x7a\xbe\x56\x6e\x57\x4c\x46\x1b\x8e\xc4\xbc\xd3\xfa\x8a\x2d\xbc\xda\x15\x47\x00\x3a\xbf\xad\x00\x33\xc3\x61\x3e\xf3\xb2\x64\xeb\xb5\xeb\xe6\xb3\x2b\x5a\x37\xfe\x34\x5c\x29\x57\x53\xa6\x74\xd5\x0a\xd5\xae\x9e\x79\x13\x21\xf8\xc8\x79\xb4\xeb\x9c\xa3\x3d\xd1\xfb\xe1\xf3\x11\xc0\x1b\xbf\xc2\x8e\x0e\xb5\x7f\x69\x3d\x94\xf8\xec\xb2\xac\x2e\xf2\xb2\x39\xaa\x69\x53\x95\x57\x7b\x8a\x3e\xb3\xa1\x63\x5c\xef\xf8\x25\x18\xc8\x85\xef\x03\x19\xd7\xf9\x26\x78\x79\x26\xd9\xb8\xa3\x1e\x0a\x90\x5f\xe4\x8a\x55\xb5\x3c\x7c\xc5\x51\x43\xc5\x23\x9a\xe0\x4f\xf5\xe2\x30\xec\x44\xcf\x85\xfc\xc7\x27\xf8\x06\x9f\xe2\x4f\xf8\x25\xfe\x8a\x3f\xe0\x33\xfc\x0a\x7f\xc1\x9f\xf1\x47\xfc\x2b\x7e\x87\x5f\xe3\xf7\x03\xa0\xe8\x0d\xbe\x23\xbd\x38\x2b\xbc\x77\xb7\x0d\xf7\x4f\x71\xbc\xe7\xc3\x76\x7b\xbf\x3b\xb8\xeb\x46\x7e\xbb\x1b\x8c\xc9\xa7\xb9\x2f\x28\x17\xed\xf6\x28\x7a\xdd\xe1\xe8\xe4\xe3\x5f\x22\x7c\x7f\x49\x25\xad\x7b\x49\xc5\xc9\xc7\xbf\x84\xf6\x38\x7b\x7d\xc4\xdc\x19\xcf\x36\x7e\x71\xe5\xc6\x0a\x62\x6e\x81\xfc\x4f\xbf\x77\x6b\x7c\x9f\x9e\x7c\xf8\xf1\xe4\xcb\xf9\xc9\x7f\x9c\x9d\x7c\x7c\x7d\xfe\xf9\xcb\xa7\xb3\x4f\x67\x7f\xfd\x7c\x72\x1a\xc7\xfb\x3b\xda\xcd\xdb\xf1\x46\xb3\xcf\x72\x88\x83\x9e\x41\xaf\xb4\x84\xce\x77\x56\x22\x4f\xbe\xda\x47\x7c\x07\xee\x77\x75\x6a\xe3\x52\x5f\xba\xdd\x4d\x3e\x58\xf2\xfe\x2e\xd5\xaa\x5b\x5f\xf4\x71\x20\x77\xa9\x7d\x3c\xf3\xb2\x79\xc5\x6d\xbc\xdb\x57\xde\xf7\x13\x38\x0e\xe4\x4b\x2f\xc9\xe6\xfe\xec\x7d\xfa\xa4\x36\xfd\x29\x15\xe4\x9d\x97\x7c\x7e\xee\x3e\x9c\x9f\x93\x77\x9d\x04\x7c\x97\x7e\xc8\x37\xe4\xa3\x57\xe2\x43\xbe\xf9\x99\x89\x95\x1e\x04\xf9\xd5\xfb\xa4\xd0\x23\x79\xad\x1f\xf0\x9d\x8a\x68\x4d\x5e\xab\x5f\x98\x3e\xcf\x35\x35\x0b\x5e\xf1\x9d\xf3\x62\xcd\xec\xa3\x2c\xa3\xbd\x49\x33\xf3\x84\xef\xac\x37\x63\x66\x9e\x64\x5b\xd6\x3f\x2f\x73\xcf\xf8\xce\xf3\x01\xcc\xdc\xb3\x3c\x04\xd6\x1b\x30\x73\xcf\xf8\x4e\x39\x6d\x66\xf0\x83\xef\xb4\x8b\x6d\xf8\xc1\x77\xce\x2d\x38\xb3\x8f\x72\x12\x95\xd3\x57\xa6\x9c\xbf\xe2\xbb\xd4\x4a\x6e\x48\xe5\x9e\x0f\xe4\x3a\x2b\x31\x12\xa9\xec\xa3\x9a\x36\x5a\x0b\xb2\xd0\x0f\xb2\x0b\x79\xcd\xc9\x02\x7e\xf0\x5d\x0a\x08\x8b\x2c\xd4\x2f\xbc\x6b\xb8\x04\x69\xfa\xd9\x4f\x7f\xd3\xf2\x85\xff\x4d\xbe\xe3\xbb\xb4\x6e\xf9\x3b\xfe\x5a\x57\xe6\x5e\xe4\xbe\x91\x80\x9e\x9c\x06\x7b\x54\x66\xbb\x37\xd4\x89\x77\x63\x6a\xb4\x9a\x17\xe9\xfe\x8f\xd8\x7c\xfa\x39\xaf\x07\x0a\x78\xa9\x3b\xb5\x98\x1a\xbb\x83\xd2\x9a\x79\x91\xe7\xaa\xbd\x68\x16\x35\xbb\xa0\x24\x77\xcf\xf8\x2e\x7d\x17\xd2\x03\xe4\xde\x95\xca\x82\x2a\x6c\xa1\xcc\xaf\xa0\xe5\x7e\xba\xf7\x86\x6b\x2a\x21\x51\x9e\xc2\xef\x4e\xcd\x19\xf9\x94\x9e\x6b\x14\xf6\xa5\xe5\x2a\x2d\x75\xc4\x03\xf9\xe4\xbd\x98\xaf\xf4\x92\xc9\x72\xf0\x6b\xd2\x18\x2f\x64\x12\xe3\x85\x4e\x51\xf6\x2c\xe4\x93\x7e\xd0\xa9\x05\xbd\xa8\x5a\x79\x7a\x3f\xd9\x47\xfd\x85\x42\x05\xd4\x96\x5f\xe5\xcd\xe9\x62\x45\x25\x11\x55\x9c\xb1\x35\x98\x44\x0c\x24\xea\xdc\x92\x72\x27\x9f\xe0\x47\xa7\x94\xb9\x80\xee\xc3\xaf\x4e\xe3\xf4\x46\x90\x4f\xf0\xa3\x53\x2a\xd5\x97\xca\xf5\xa3\xd1\xf5\x93\x4f\xf6\xb1\xf3\xe5\x93\x2a\xe3\xbf\xea\x1c\x92\xb5\x14\x02\xca\x9a\xc7\x60\x36\xec\x38\xfc\xd7\x7d\x08\x45\x96\xc3\x91\x96\x39\x7f\x69\xf9\x7b\x20\x5e\x00\xb9\x7c\x82\x7b\xc4\xe0\x4b\x17\xa9\x1c\xa8\x58\x12\xad\x5d\x5d\x13\xc0\xfb\xe0\x2e\x35\x24\x19\x79\x8b\xdf\xa6\x79\xc9\xf2\x86\xb4\xea\x17\x4e\x77\x27\xd0\x77\xdb\x4b\x02\xb0\xb3\x58\x51\x09\xb7\x5a\xe8\x8a\x7c\x2b\xc0\xd0\x5e\x41\x30\x49\xad\x12\x15\xba\x5b\xa1\x15\x95\x4f\x3d\xfb\x00\xb6\xed\x24\x48\x78\x73\x49\xc5\xe7\x5c\xac\xa0\xef\xea\x51\x21\x21\xd2\xca\xff\x0a\xb6\x9d\xc2\xab\x7a\xc0\x77\xe9\x9b\x93\x97\x67\x3f\x7d\x39\x39\x25\xc9\x04\xbf\x76\x46\x2f\xac\x39\xe1\xca\x25\x45\x99\xda\xe7\x1d\x2e\x6d\x7e\x34\x04\xdf\x2a\x4e\xda\xb4\x92\xfb\x28\x2f\x0a\xa3\x20\x29\x67\xc8\xbd\xc9\x55\x05\x9e\xd5\xfb\x1c\x26\x40\x97\xb9\x52\x1b\x26\xad\x7b\xc6\x77\x72\x13\x3b\xef\xf5\x6d\xf0\x8a\x81\x9c\xa9\x38\x25\xad\x7e\x80\x94\x93\xf5\x06\x16\x42\x3f\x41\xda\x8f\x65\xce\xbf\x42\x1a\x3c\x41\xda\x67\x79\xb2\xa1\x3d\xfb\x8c\xdf\xa7\x9f\xbf\x7c\xfa\x7c\xf2\xe5\xec\xaf\xe7\x3f\xbf\x7b\xff\xfe\xfc\xd5\xdb\x97\x1f\xff\x78\x12\xc7\xc9\x5d\xba\xd1\xeb\xf9\x33\x2b\x4b\x65\xda\x49\xda\x81\x44\xe4\xd7\xf1\xfa\xdd\xeb\xa1\x2a\xac\x71\xa8\x57\x83\xe7\x6b\xe3\x2e\xe5\x95\x60\xcb\x5b\xb3\x83\x6c\xde\xa1\x64\xb9\x04\x57\xb4\xae\x59\x41\x5f\xad\x72\xc6\xe5\x24\x85\x09\xf8\x4e\x01\x9f\xb0\x9c\xcc\x37\x94\x8c\xef\x24\x58\xe9\xe7\xed\x27\xca\x8d\x0d\x4f\xce\x56\x9e\xb4\xbd\x24\x7c\x97\x6e\xca\x5c\x2c\xab\x7a\x4d\xee\xc3\x53\x9b\x1d\x4e\xf0\x2a\x6f\xcc\xeb\xcb\xc5\x82\x36\x4d\x55\x37\xd9\xe1\x64\x07\x38\xcc\xcf\x4c\xda\x4e\xc2\x81\xc4\x8d\x62\xb1\xfa\x13\x95\xdf\xcc\xa3\x44\xd3\xdc\x4b\x77\x2f\x76\x17\xc2\xac\xfc\xac\x14\x61\xed\x4e\xf4\x13\x61\x9b\xcb\xf7\x8f\x55\x21\xa7\xdd\x3e\xe3\xbb\x74\xc9\x38\x6b\x56\x76\xa6\xfd\x57\xac\x3b\xa4\x8f\xa3\x7d\x76\x5d\xd2\x5f\xbc\x37\x53\xc6\xe4\x87\x8d\x09\xdd\x50\xb1\xce\xdd\x8b\xab\xc5\xd5\x00\x93\xa4\xc2\x47\x37\x3a\xca\xdc\x07\x05\x44\x4a\x76\x51\xe7\xb5\x5a\x11\xfb\xac\x00\x4a\xb0\x5a\xc1\xbb\x02\x1c\xc1\xf7\xa6\xf3\x9d\xde\x6c\x72\x5e\x04\x59\xba\x49\x0a\x12\x98\x10\x14\x0a\x12\x98\x37\xbb\x06\xde\xe7\x30\x41\x96\x96\xb0\x55\x47\x68\x6f\xfd\x37\xb9\xd5\x5d\xb9\xca\x95\x00\x66\x9b\xb4\xea\x57\xd2\xa5\xfa\x1d\x7e\xf7\xb3\x20\x15\xd7\x4c\x2f\xa0\x89\x97\x40\xc5\xab\x24\x60\x42\x5e\x02\x01\xaf\x13\x9e\xcc\xd7\x08\xda\x28\x96\x1b\x2a\x5d\xa4\xac\x39\x53\x29\x50\xe7\x42\xd6\x69\x12\xba\x75\xde\xa5\xe7\x3f\x3a\x5a\xc2\xba\x4c\xc5\xef\xd3\xf7\x9f\xfe\xf8\xc7\x93\x2f\x00\x43\xde\x57\x97\x97\xb4\x26\x2b\x2b\x7c\x91\xec\x01\xb9\x4c\x5f\xe2\xbb\x54\x73\x72\xf7\x65\xb5\xc8\xd6\x69\x59\x2d\xf0\x75\xb6\x4e\xaf\x71\x91\x37\x2b\x5a\xb3\x3b\x9a\xad\x53\xfb\x8c\x0b\xba\xc8\xd7\xb4\xd4\xc9\xf6\x05\x7b\xa9\x2e\xad\x94\x68\x62\x79\x2b\xd3\xf4\x23\x6e\x79\x41\xeb\x66\x51\xd5\x32\xa7\x7b\xc1\xce\x29\x13\xd4\x60\x5e\xe4\x91\xd6\xf1\x8c\x2f\xf5\x83\x1c\xb1\x21\x7e\x21\xa0\x82\x5a\xb8\xcb\xb4\x9f\x08\x67\xd2\x90\xcf\x41\xde\x81\x54\x8d\xb5\xf3\x9a\x92\x4b\xf3\x24\xa1\x55\xb5\xb9\x85\x84\x8d\x42\x0a\x27\x7f\x6b\xf3\x92\x5c\x9a\x27\x20\x3f\x7f\x0d\x34\x89\xd0\xfd\xce\xa6\xa6\x5a\x66\x43\x6e\x75\x82\xfb\xe2\xe4\x3e\x64\xe3\x3e\x2a\x06\xe4\x32\x35\xcc\xc7\x2b\xe8\x88\x5c\x6e\xe8\xb5\x79\x01\x5e\xcd\x6c\x04\x72\xe9\xbd\x98\x3a\x54\xac\x89\x4b\xef\xc5\x4e\xa5\xf9\xe4\xbd\xc9\x52\xbe\x2a\x80\x2c\x18\xa8\x06\xc8\x9e\xd4\xd4\x2e\x85\x7b\x91\x4c\x4d\x2e\xd8\x15\x35\x3d\xf7\xde\xa0\xd4\xe6\xd6\xf6\x5e\x3d\xca\xb3\xd6\x0a\xf9\x14\x0c\xa1\x97\xe6\xf2\x99\xaa\xfd\x57\x7c\x37\xe4\xfe\x8b\x5c\x0e\x3a\x05\xbb\x33\x2a\x0f\x72\xaa\xb4\xf2\xc3\x5d\xfa\xb9\xae\xd6\xac\xa1\xc1\xc6\xe8\xa5\xc1\xac\x99\xb0\xed\x30\x69\xe6\x45\x92\x49\x2a\x26\xf3\xa5\x7e\x80\x0d\x62\x3a\x6b\x02\x97\x0d\x6d\xe0\x8a\xbf\xaf\xf2\x82\x7c\xd0\x0f\x8a\x82\x95\x4f\xa0\xc5\x4f\x3e\x04\xaf\x9a\x1f\xb4\x7b\xc5\x31\x59\x2e\x59\x75\xbf\xf0\xbe\x9d\xda\x8d\xe7\x31\xeb\xc1\x50\xcf\x83\xbd\xff\xe5\xf4\x2f\x9f\xe5\x21\x3a\xfd\xcb\x67\x58\x52\x23\xef\xb9\x74\xcf\xf8\x6d\x4a\x81\x4c\xba\x52\xbf\xf8\xad\x24\x2e\x4e\x74\x92\x79\x84\x54\x4e\x21\x85\x53\x95\x47\x7d\xc6\x6f\xd3\x8b\xaa\x2a\xc9\x15\xfc\xe0\xb7\x4a\x71\x8a\x5c\xa9\x5f\x59\x3b\x9c\xad\x2b\xf5\x8b\xdf\xa6\x97\xb2\xe0\xa5\x80\x27\x0a\x8f\xb2\xbe\x52\xa6\x96\x02\x9e\x28\x3c\xca\xd4\x8a\xd3\x9f\x73\xd9\x0f\xf5\x80\xdf\xa6\x35\xcd\x8b\xa6\x9b\xf0\x89\x97\x32\x93\x79\xc4\x6f\x2d\x97\xcb\xf8\xe5\x4b\x20\xd4\xaf\x7a\x49\x92\x86\xe7\x05\xb9\x92\xff\x65\x53\xb5\xac\xb5\xc6\x6f\xd3\xa6\x5d\x93\x2b\xf9\x5f\x0e\x86\x71\x39\x14\xc6\x61\x60\x37\x30\xac\x1b\x78\xde\xc0\xf3\x46\xe6\x97\x5b\xf4\x0a\x7e\xe4\x1b\x15\xaf\xd9\x72\x49\xae\xcc\x93\xca\xfd\xe3\xad\xca\xff\xa3\xec\xdd\x92\x95\x92\xc9\xba\xd2\x0f\x36\x05\x32\x99\x47\xfc\x36\x6d\x39\xfb\x1b\xb9\x82\x1f\xfd\x06\x39\xd4\xc3\x01\xa4\x54\x5c\x25\x54\xb2\x87\x70\x7d\xd3\xc8\x6d\x79\xe5\x9e\xf1\x5b\xa3\xa1\x49\xae\xcc\xd3\x7e\xa4\x75\x7a\xf6\xe5\xdd\xc7\x3f\x9e\x46\xb8\xe7\x5f\x47\x22\xb1\x35\xb0\x16\x0a\xb9\x34\x80\xc6\xd6\xe9\x79\x63\x53\x1e\xc2\x86\x3f\x7e\xfa\x74\x76\xf2\x7a\xa0\xde\xbe\xf4\xad\xf5\x65\x93\xa7\x34\xaf\x17\x2b\x63\xdc\x02\x6d\xb6\x26\x30\xd2\x40\x06\x40\x9e\xd6\x4b\x36\xb9\x70\xcf\xf8\x22\x7d\x4b\xcb\x0d\xad\xd3\x15\xfc\x90\x0b\xfd\x80\xef\xf4\x07\x62\x72\xc8\x2a\x56\x74\xf1\xf5\xa2\xba\x91\x35\xe8\x47\x09\x9c\xe8\x8d\x78\xc3\x68\x59\x90\x0b\xf7\xac\xd3\x5f\xd6\x34\xd7\xc9\xf2\x11\xdf\xa5\xef\x19\xff\xea\x77\x25\x78\x97\x27\xb7\xa1\xc2\xbe\x6b\xef\xdb\xe4\x22\x1d\x48\x95\x99\x17\x9d\xb4\x57\xf9\xc6\xaa\x92\x93\x0b\x89\x5e\xed\xab\x1c\x11\x80\xf8\x8b\xbc\x6e\xc8\xbd\xb5\x13\xb8\x48\xcd\x23\xfe\x49\xb0\xb2\xc9\xee\x95\x3a\xf9\xc9\x0d\x78\xc3\x60\x15\xcf\x2e\xd2\x6e\xd2\x4e\x22\xbe\xb7\x67\x1f\xde\xff\xb8\xaf\xb2\x1d\xde\x23\x1d\xd5\x64\x48\x1c\x27\x3a\xb2\xa2\x17\xf2\x58\xac\xcb\xd3\x7c\x49\xfb\xc2\xe6\x64\x82\x2f\xec\x67\xe3\x6e\x15\x59\x9a\xc6\x95\x74\xb9\xdc\x47\xd6\xc8\x9e\xea\xcf\xee\x65\xff\xb6\x3c\x3b\xf9\xf0\xf9\xfd\xcb\x33\x90\x03\xcb\xbd\x77\x21\x69\xbf\x33\x3d\x30\xb5\xc5\x2f\x14\xa5\x66\x92\x1e\xdc\xbf\xd0\xd1\xbf\x9c\x7c\x39\x7d\xf7\xe9\x23\x39\xb7\x50\xfa\xba\x63\xa3\xb5\xdd\x26\x77\xe9\xef\x88\x49\x86\x42\x8c\x5e\xc3\xa2\x90\xfb\xc0\xfc\x21\xbb\x0e\xcd\x21\x70\xa8\xa9\x9e\x5d\x77\x54\xd7\x71\xa0\x78\xed\x3e\xab\x77\xdc\xd7\xb9\x76\x59\xbc\x44\xbc\x57\xb9\xba\x53\x63\xf0\x0d\xfb\x2a\xff\x2a\xa3\x7d\xc5\x81\x82\xbb\xfa\xe8\xde\x31\x6b\x4e\x69\xcd\x24\x79\x08\xc2\xbb\x37\x46\x03\x38\x93\xcb\x38\xfc\x69\xa7\x0f\x9e\xa1\x12\xae\xfd\x37\x1f\x0a\xa8\xeb\x03\x72\xdd\x4d\x31\x14\x84\xb3\x86\x24\xd7\xdd\x14\x79\x8c\x2b\x2d\xae\x3f\xb1\x8f\x92\xb2\x6a\x45\xe5\x7d\xf1\x5f\xe1\xf8\x35\x2b\xef\xab\xff\x2a\xbf\xb2\x46\x54\xf5\xad\x9f\x21\x4c\x39\xb8\x4b\x3f\x56\x9c\x7a\x19\xfc\x57\x20\x60\x0d\x91\xf0\xa6\xaa\xc9\x49\xf8\xee\x89\xd4\x1d\x31\xa1\xd5\xdf\xc8\xc9\xfe\x6f\x83\xe5\x06\x0b\xe0\xbb\xf4\x4b\xd5\x0a\x5a\xbf\x3e\x7d\x4f\x4e\xdc\xb3\x4d\xb7\x89\x26\xc5\x24\xe0\x64\x82\x43\x4a\x08\x25\xea\x7a\xc9\xbf\xda\x88\xf0\x07\x9f\xab\x79\x9d\x8b\xfc\x65\x91\x6f\x64\xc5\x37\xfe\x9b\x2f\x55\x07\xe1\xb4\xcb\x35\x98\xae\x0c\x28\x56\xb9\x6c\x54\x5d\x5b\x1a\x18\x06\x4a\xd2\xac\xa4\x75\x64\x94\xbc\xac\xd9\xee\xfe\x9c\x43\xd5\x29\x9e\x4f\x56\xf2\x86\xec\xa9\x47\x67\x81\xed\xdb\x08\xf2\x06\x7e\xf4\x5b\x6a\x46\xf0\x26\x75\x63\x84\x0f\x7f\xfe\x89\x33\xe1\xbe\xfa\xaf\x8a\x5d\x6f\x37\x6f\xaa\x5a\x73\x94\xe4\x4d\x37\x05\xed\x9f\xf9\xc8\xd7\x30\xb8\xc3\x75\xfa\xee\xf4\xfc\xe3\xa7\xd7\x27\xd3\x3a\x55\xb7\xf1\xa9\xbe\xc1\x27\x77\x99\xbb\x53\xd4\x69\xea\x4e\x91\x0c\xa5\x93\x3b\x5f\x1d\xc0\xde\x4f\x3f\x49\x07\xdd\x75\x28\xfa\x7d\xfa\x7d\xfa\xaf\x91\xaa\x2a\x50\x11\xd8\x57\x91\xf6\x35\xd7\xbd\x27\x55\xc5\x06\x03\x14\xeb\x61\x6a\xf5\x84\x03\x31\x4d\xec\x0b\x09\xbf\x61\xaa\xe7\x44\xa7\x63\x6a\x66\x8b\x08\x70\x6c\x60\x8a\x81\x12\xb0\xcd\xac\xdf\x5c\x56\x35\x9c\x5a\x1e\x89\xa3\x9a\x2e\xaa\x4b\xce\xee\x9e\xec\x20\x6d\x20\x40\xac\x53\xda\x77\xa6\xf3\x42\xb9\x3f\x72\x16\x98\xe7\xe7\x46\x61\x53\xc7\x8d\x95\x49\x58\xc5\x4f\xae\x7b\xe1\x2f\xb5\xc3\x47\xb1\x32\x41\x8b\xd7\x1a\x48\xea\xb8\xc5\xb2\x8e\xcb\x5c\x50\xc2\x77\x07\x75\x10\x47\x79\xd0\xa6\x28\x28\x03\x21\x27\xe3\x98\xa7\xd7\xac\x2c\x5f\x16\x05\xc0\x06\x70\xbb\x1f\x26\x25\x7e\xc3\xd6\x7b\x08\x42\x41\x87\xc0\x1c\xc9\xf6\x16\x53\xa4\xad\x41\x21\x6a\xa5\x56\x78\xee\x6b\x8d\xff\xb5\x6a\x47\xeb\xb6\x11\xa3\x55\x7e\x45\x47\x39\x1f\x19\x45\x66\xe3\x17\xc8\xce\xe8\x26\x6f\x1a\x5a\x8c\x44\x35\xfa\x2f\x51\xfd\x57\x84\x0e\xba\x8d\x03\x1e\xf3\x7b\x80\x3b\x53\x84\x76\xc6\x6e\xa8\xe7\xfa\x16\xb6\x40\x43\xb8\x71\x67\x05\x2e\xec\x6b\xca\x5d\x8a\x1a\x35\xa1\x9e\xaf\xf0\xaa\x13\x0b\xc3\xd6\xca\x70\xae\xe6\xbb\x21\x74\xcc\xc0\x5a\x38\xb7\x21\x53\xe9\xf5\xa8\x4e\x1a\x28\x78\x90\x27\x95\x7e\x44\xbb\x5d\xe0\x83\xdc\x05\xd5\xc7\x8c\x4c\xf6\x45\x5b\x67\x63\x42\x67\xf5\x1c\xc6\xab\xd3\x8d\xc7\x73\x99\x94\x09\x22\xe0\x6e\x4d\xd4\x09\x43\x5a\x3b\xad\xce\xf8\xee\x80\x2a\x13\xa3\x0a\x05\x76\x4e\x9e\x46\xbc\x33\xb5\x96\xfc\x52\x52\x22\xcf\x88\x9a\x79\xdb\x2c\x2f\x8a\xce\x3e\xf3\xe6\x73\x46\xc1\xac\xae\x93\x1f\xd6\x89\x0c\x7b\x5e\xca\xc1\x26\x8b\x25\x42\x2f\xaf\x59\x07\x59\x53\x7e\xa0\xa6\x54\x4e\x7b\x0e\x16\x2f\x71\x5c\x1b\x80\x07\x5e\xd0\x68\xd1\x4f\x49\x04\x6e\x10\xe6\x49\xa3\x8d\xc6\x5a\xf2\xec\x9f\xb7\xbf\x3c\x7b\xe6\x05\x33\x2f\x83\x91\xab\x69\xfc\xe1\xf7\xdb\x2d\xf8\xea\xf0\x9c\x1c\xfd\x73\x84\xa6\x34\x2b\xe8\xa2\x2a\xe8\x4f\x5f\xde\x59\x3a\x26\xa1\x28\xad\x29\x78\x14\x4f\x5a\x4c\x79\xf7\x3b\xd2\x36\x52\xcf\xfe\x39\x99\x66\xcf\x93\x69\xf6\xfd\xf6\x7f\x6e\x7f\xdc\xbe\x42\xdb\xdf\x27\xd3\xec\xc7\xed\xeb\xed\x4b\xb4\xfd\x7e\x82\xfc\x3e\x2d\xfd\x3e\xf5\x6a\xf4\x5b\x5c\xe0\x7e\x8f\x54\x8b\x2b\xf2\x2c\xf9\xe5\xd9\xf6\x97\x74\xfb\xcb\xbf\x6c\x7f\x19\x6f\x7f\x99\x6e\x7f\xd9\x6e\x7f\x49\xb6\xbf\xa0\xed\x2f\xb3\xed\x2f\xf3\xed\x2f\xf7\xdb\x5f\x76\xdb\x5f\x7e\x41\xcf\x2e\xf1\xa6\x13\x15\xbe\xe8\xc7\x66\x0f\x35\xb1\x5d\x67\xd7\xd6\xf4\xdb\x80\x7b\x6b\xf7\x45\xb7\x5b\x6d\x08\x4a\x1f\x38\xfc\xf2\x6c\xcb\xc3\xaf\xe3\xc3\xe7\x0d\x1c\xfd\x86\x2e\x2a\xb0\xbc\xd5\x10\x41\x1e\x7d\x43\x05\xfd\x57\x1a\x81\xb3\xa8\xc3\xc2\x59\x05\x3e\xd4\x40\x5d\x5d\xb1\x82\x8e\x36\x79\x9d\xaf\x47\xff\x15\x8d\xc5\x38\xfa\xaf\x7e\x85\x0a\x46\xd2\x99\x98\x63\x3f\x5e\xb5\x51\xf1\x99\xf2\x2c\x8a\xc6\x60\xfe\x3f\x01\xd3\xd6\x47\xa1\x9a\x69\x37\x0f\x5b\x4e\x3d\xeb\x29\x58\xaa\x5b\x32\x9b\x1f\xdc\xce\x26\xf3\xe1\x48\xcd\x98\x11\x01\x26\x59\x60\x98\x7c\xa0\x62\xfb\x4e\x5e\x70\xe7\xd3\x86\x8f\xc7\xa8\x26\x55\xba\x58\xe5\xf5\xab\xaa\xa0\x2f\x45\xc2\x11\x66\x84\xa5\x9b\x56\x24\xb5\x72\x4e\xe5\xd9\xf0\xe3\xdb\xd9\x71\xb7\x31\x6b\x08\x2f\x8b\x7c\xff\xbf\xf0\xe1\x04\x1f\x4e\x90\xcc\xfa\xfc\xc1\xac\x47\xe0\xf8\x4a\x67\xfd\x7e\x5f\x56\x75\xfc\xae\xe4\x40\xaf\xc2\x81\x7a\x87\x0f\xc6\x67\xb7\xf6\x0a\x47\xbf\xfc\xf2\xbb\xe3\x08\xed\xf0\x55\xd0\x5d\xe7\x48\x65\xf6\x9f\xcf\xe6\x63\x14\xc9\x0c\xcf\x07\x33\xa4\xfa\xeb\xf7\x43\x5f\x23\xd5\xa9\x4b\xd9\xa9\xcb\x87\x3b\xb5\xc3\x97\xfd\x19\x53\xfb\x65\x9d\x08\xac\x73\xd9\x19\xfe\x90\x9e\x7c\x7c\xf5\xe9\xf5\xc9\xf9\xcb\x8f\xaf\xcf\x5f\x9f\xc0\xe3\xe7\x97\x67\x6f\xcf\x4f\x4f\xfe\xf8\xe1\xe4\xe3\xd9\xe9\x74\x99\x70\x94\x71\x59\xed\xbe\xd9\xf5\xeb\x95\xf9\x1e\x1a\xc2\x45\x27\x8c\xc8\xfd\x0e\xe1\xf3\x81\xd0\x22\xf6\xcc\x5e\x5b\x02\xc3\x84\x9a\x9f\xc4\xf1\xf7\xff\x0b\x90\xb5\xb7\x89\xc0\xdd\x91\x87\x46\x8e\x91\x3a\x25\x56\xb7\x4e\x7e\x72\x6e\x39\x5a\x43\xda\x2c\x8c\xff\x18\x87\xb9\x1a\x1f\x73\x4d\x70\x4e\x26\xf8\xf8\x79\x9c\x54\xe4\xf9\x0f\x3f\x24\x39\x01\xc7\x74\x09\x23\xcd\xac\x9e\xa3\xe9\xf7\xd9\xff\xf8\x57\x42\x08\x0b\xfb\x32\x3d\xce\xbe\x7f\x3e\x90\xfc\x3c\x9b\x20\xe5\x97\x89\xa5\x4d\xc9\x16\x34\x39\x46\x38\x69\x49\xbb\xdd\xce\xe6\xc8\x78\x54\xc2\xc9\x82\x2c\xbc\x94\xc9\x21\x49\xbe\x8f\x2b\x84\x10\x3e\xfe\x3e\xae\xe2\x98\xcf\xf2\xf9\x78\x8c\x35\x72\xbc\x97\xc7\x3e\xcb\xb1\xf2\x9a\x56\x26\x0c\xed\xac\x95\x25\xd8\x38\x66\xed\x76\x7b\x8e\x9b\x55\xd5\x96\xc5\x6b\x80\xc1\x4d\xb6\xd8\x6e\xcf\x3d\x54\x7e\xd2\x21\x11\x28\x74\x9c\x80\x0b\x34\x9a\x72\x45\xb9\x11\xa2\xac\x68\x6f\x7a\x48\x11\x33\x8d\x4f\xb5\x31\x8b\x26\x01\x59\x61\xa8\x3f\xa8\x4d\x7b\x3f\xd2\xb5\xd5\xe6\xed\x46\x68\x4b\x20\x36\x15\xca\x1a\xce\xd0\x46\x10\x1f\x3f\x32\x86\x81\x35\xbd\xa4\x37\x66\xdd\x20\x69\x65\xdc\x78\xfa\x89\x72\x36\x4c\x8a\x47\x04\x9d\x86\x96\xf4\xba\x17\x53\x35\x50\xe5\xeb\x0d\x7c\x6d\xa9\x84\xcc\x4d\x80\xc5\xaf\x32\xc1\xcd\xd8\xa7\x0e\xe0\xc3\x95\x71\xec\xc5\xc9\x04\xd7\xc4\xd2\x3f\xfc\x87\x1a\xa0\x1e\x23\x74\xc6\xe7\xb8\x92\xc0\x4f\xb9\x1a\x64\x8a\x2a\x4c\x84\x0b\x63\x5e\xed\x6e\x3c\x3c\xa6\x46\xbc\xcf\x13\x3a\x7c\x35\x3e\x9c\xf5\xec\x48\xd8\xfe\x85\x5e\x9e\xdc\x6c\x12\x7f\x12\x0d\x09\xac\x72\xed\xb0\xdf\x88\xa4\x16\xf7\x00\x73\x13\xdb\xcb\xad\xd1\x81\x75\x40\x43\x2a\xc4\x96\xc9\x26\xa9\x6c\x0c\xf7\x1e\x9c\x67\xcb\xe4\x24\xd1\x4e\x53\x75\x40\x82\x6a\xc6\xe7\x73\xec\x47\xc9\xaf\xad\x87\xb9\x93\x84\x85\x79\xc3\x8c\x2c\xec\xf6\xa6\x15\x3d\x1e\x04\x0e\xbc\xec\xa2\x6e\xf4\x52\x9b\xc9\xdb\xb6\x8c\x5d\xac\x6b\xc5\xa2\x37\x98\xba\x9b\x84\x61\x66\x8c\x1e\x55\xa5\x98\xcd\x4c\xca\x9c\xd4\x58\x11\x09\x9d\x59\x99\x76\x77\x72\x9d\xb2\x22\xd3\x4b\xe0\x92\x51\x37\x9f\xb6\x9f\x4f\x59\xa1\xc3\x78\x79\x55\xcc\x3a\x09\xb8\x06\x87\x76\x75\x38\x0b\xea\xfa\xa4\xef\x86\xce\x59\x55\x76\x16\xef\xd0\xd8\x52\xce\xe6\x9a\x02\x9f\x81\xd5\xe5\x26\x61\x08\x29\xeb\xcf\xc9\x0b\xf1\x03\xf3\x7d\xd0\x9d\x26\x3c\x58\x18\x36\x13\x72\x11\x51\x1c\x57\x6a\x04\x5c\xfb\x86\x3d\xed\xac\x36\x0b\x72\xd5\xde\x2e\x87\xb6\x5f\xf6\xf9\x1b\xd5\x2a\xd1\x47\x19\x7c\x4c\x7d\x96\x04\x49\x43\xe8\x76\x0b\xd6\x80\xe6\xfc\x7d\xb5\x83\x3d\xa0\xc4\xa1\xe2\x67\xbf\x8c\x9f\x5d\xae\x71\xf4\xcf\xcf\x27\x92\xf5\xaa\x6f\xef\x05\x19\xa4\x84\x77\x0b\x38\x7b\x12\xb1\x90\x28\xda\x59\xec\xff\xd2\x9b\x5d\x89\x30\x16\x54\xd3\x9b\xdd\x64\x1c\xe4\x1c\xce\xd8\xcb\x27\x27\xa2\x97\x4d\x26\xc2\x84\x7c\x20\x5d\xe7\xc5\x00\xbf\x25\x73\x77\xa0\x98\xf4\xd9\x1c\x0b\xbd\x53\x29\x9e\x60\x49\xd1\x4c\x80\x60\xa2\x92\x2a\xd0\xc0\x36\x04\xc2\x75\x55\x19\x63\xea\xdd\xc1\x87\x07\x59\x22\xef\xe0\x1b\x75\x74\x12\xd6\x81\x17\x24\xfa\xcf\x08\x2f\xc9\x6c\x82\x27\x78\x32\xc7\x2b\xe8\x8d\xb2\x0e\x36\x20\x0f\xe1\x8d\xec\x68\x41\x0e\x27\x78\xad\x99\x42\x05\x1e\xa8\x0f\x1e\x00\x6c\x54\x12\x95\x5e\x27\x1b\x9c\xd4\x00\x1f\x91\xe2\x89\x97\xda\xcf\x61\x83\x73\x89\x2a\x7d\xd4\xf5\x62\xfd\xc3\xc6\x54\xb3\x1e\x8f\xd1\xf7\x87\x84\x24\x0d\xd9\xcc\xd6\x73\x04\xc0\x3f\x8e\x93\x82\x1c\x1e\xe3\x92\x94\x96\x42\x04\xaa\x12\x2f\xc6\x24\x7a\x16\xe1\x92\xdc\xce\x14\x9e\x98\x27\x0d\x2e\x21\xfd\xca\xa5\x20\x74\xb0\x9a\xf1\x39\xb9\x37\x7c\x68\x6d\x10\x0d\x56\xe8\xb4\xea\xe0\xd2\x7c\xb7\x2b\xe2\x38\xd9\xd7\x1e\xc2\xa5\xc3\x54\x2b\x5c\x5a\xcc\xb6\x18\x47\xbf\x8b\x70\xa9\x31\xd6\x12\xf7\x64\x50\x22\x8e\x35\xb0\x85\x78\x2d\x79\x13\xc7\x49\x4b\xe4\x03\xc2\xad\xa4\x77\xec\x16\x99\xb5\x73\x72\xdf\xd0\x4b\x30\xad\xce\x36\x86\x85\x6e\xb2\xd5\x0e\xed\xf0\x87\x80\x37\x52\x5f\xde\x54\xf5\x30\xdc\x20\x5e\xad\x3a\x7c\xe3\x80\x15\xfd\xd9\x8a\xd6\x74\xc4\x9a\x11\xaf\x46\xc0\x44\x8f\x64\x89\x62\x14\x8d\x29\xd2\x50\xd6\x6d\x0c\x3b\x81\xe6\x80\x2b\x07\xc9\x0a\xd4\xf4\x3e\x02\xcc\xe1\xc4\xa5\x4b\x36\x47\xc2\x1c\xc2\x3d\xbe\x20\x1c\x53\xa3\xc4\xc6\x7d\xb2\xf8\xf0\x30\x18\x4e\x58\xce\xf0\x54\xfb\x99\x19\xbf\x2c\xae\x48\x14\x69\x18\xfa\xed\xf3\x01\xfb\x58\x2f\x90\x77\x22\x72\xff\x44\x7c\xaf\x7c\x7d\xe6\x70\x0e\xf4\x56\xae\xd4\x9e\xad\xc6\xe4\x72\x56\xeb\x2d\x5a\x63\x47\x32\x44\xcf\x22\x89\x8c\x81\x3a\x31\x74\x70\x25\x8b\x8c\x2b\xa4\xc2\xfd\x78\x50\x54\xd5\xa7\x71\xa3\x1a\x3b\x5c\x29\x69\x4f\x02\x41\x5e\xe5\xf0\x79\x68\xba\xbc\x22\xfb\x50\x8f\xa6\xb9\x67\x73\xdc\x12\xdf\x1d\x13\x55\x2b\xdf\xc2\xfd\x77\x62\x3c\x9e\xb6\xfe\xca\x5b\x0a\x43\x41\x04\xd2\x4a\x6c\x83\x64\x32\x23\x03\x12\x06\x8e\xf0\x26\xa9\x15\xee\x52\x9e\xa0\x0d\xbb\x0b\x0e\xa1\x73\xc2\xc7\xd1\x6c\x4e\xa2\xf1\x40\xd9\x7a\x56\xcd\x11\xd6\x68\x38\x37\x0e\xce\xc7\x24\xda\x93\xdd\xe6\x65\x16\x95\x49\xfe\xda\x6c\xdc\x69\x14\x65\xd1\x34\x1a\x37\x5a\x06\x15\x47\x9d\xb3\xb7\xc9\xeb\xe6\x1b\x66\xcf\x4a\xb7\x62\xe0\x58\xee\x77\xde\xa9\x09\x0e\x0b\x38\xc8\xfe\x9a\x24\x9c\xc8\xb3\x62\x4a\x91\x08\xa1\xd9\x64\x8e\xac\xb7\xec\x4a\x42\xc5\xdc\x10\xcb\x92\xa8\xe5\xa6\xe7\x39\x89\x44\xdd\xd2\x28\x4b\xd8\x1f\x9e\xc7\x71\x34\x9b\x47\x20\x38\x50\x4c\x0a\x3b\x7a\xae\xb6\xd5\xe1\x04\xb7\xb3\xda\xa6\x4f\xb0\xfc\x32\xdf\x6e\x93\x76\x56\xcf\xc9\x6c\x8e\x10\xce\x09\x9f\x1d\xcf\xa7\x5f\x13\xf9\x83\xb2\x28\x42\xb8\x9a\xb6\x20\xfc\x53\xb3\x9c\x41\xde\xdc\x4c\x60\x1b\x4e\x91\x95\x6e\xef\x9f\x1b\x4d\x1a\x59\x9c\x34\xc7\x39\xb9\xdf\xe1\x56\xc1\x7c\x4f\x0e\xf6\x4f\x11\x7a\x01\x34\x7d\x09\xb2\x62\x6a\x78\xc3\x09\x2e\x35\x77\xb8\xf0\xb3\x4f\x4d\xf6\x05\x78\xaf\xb2\xd9\x17\xe3\x63\xec\x50\x5b\x50\xcf\x42\x8e\xd7\x84\x3a\x0a\x96\x36\x91\x34\xb7\x3a\x9b\x34\x38\x9b\x14\xce\xa6\x06\x0a\x4b\x42\x0f\x1e\xe7\xc0\x29\x91\x07\x27\x4b\xa8\xa3\x64\x12\x8a\xf0\xd2\x7b\x5d\xea\x01\xad\x2c\xdf\x01\x7b\x65\xf5\x87\xe3\x38\x8e\x9e\x45\xc4\xeb\xc5\xea\xe8\x18\x75\xe7\x43\xa6\xe1\x25\x59\xba\x94\xa5\x75\x4f\x29\xb7\xde\x21\x38\xfc\xf0\xc5\xba\xb0\x1d\x3e\x25\x15\xa6\x3e\x8b\x5b\x23\xbb\xdb\x80\x7b\x7e\x21\xfb\xb4\x31\x8c\x11\x23\x93\x17\xcc\xb1\x08\x6c\x3c\x46\xd5\x8c\xcd\x2d\x9c\x8f\xe3\x8d\x16\xf7\xce\xd8\x1c\x1d\x54\xc3\x52\x0e\x80\x1c\x43\xe2\x0d\xaa\x10\xe9\x76\x6b\x68\x93\x9a\xf0\xd9\x64\x8e\x19\xec\x48\x5c\x11\x3e\x7b\x2e\xf7\x8a\xe8\xe6\x6b\x48\x2e\xf3\xb5\x24\x97\xf9\x4a\x92\xcf\x9e\x03\xde\xab\xe4\xd6\x31\xbc\x43\x75\x54\x42\x1a\x88\x0f\x25\xc3\xd8\x98\x2f\xcd\x11\xf0\x1c\xec\x90\x90\xd6\xa4\xb5\x47\xcc\x90\x94\x90\x3e\x65\x47\x6d\x06\xa5\xa6\xcd\x51\x9d\x4d\x76\x68\x97\x6c\xd4\x92\x15\x64\x33\x9b\x58\xdf\x75\x45\x1c\x17\xde\x84\x24\xad\x7c\xd7\x04\x43\x1c\x83\x98\xe8\x77\x72\x39\x6d\xa2\x3e\x8a\x47\xff\x03\xfc\xd8\x6b\x82\x63\x0f\x6b\xd4\xb7\x33\x24\x8e\x20\xc0\x1b\xa2\x39\xce\x44\x49\x2c\x37\xdb\xed\xe1\x80\xcc\x10\xa8\xcb\x91\x72\xa1\xc3\x04\xdc\xb4\xd3\x22\x32\x63\x11\x9a\xa7\xdd\x20\xbc\x26\xc7\xf8\x56\x51\x01\x92\x43\x90\x3b\xe0\xd6\x10\xf8\x2b\x17\x8c\x59\xee\xaa\x95\xbf\x69\xe4\x04\x03\x59\xb8\x9a\xd5\xf3\xbd\x64\x20\x6e\xc8\x85\x3a\xf3\x72\x99\xce\xe3\x38\x97\x3f\x80\x06\x4a\x32\x79\x51\xba\x7d\x56\x8e\xc7\x48\x6e\x61\xbc\x20\xd5\xac\x9c\xcb\x73\x13\xc7\xc5\x6c\x3d\x1e\xcb\xa5\x27\xe4\x22\x8e\x93\x86\xdc\xef\x10\x7e\xf4\x28\xc6\x71\x3e\x2b\xe7\xd3\x66\xb6\x98\x93\x65\x1c\x0f\x30\x16\x4b\x94\xa9\xaf\x07\xb7\x12\xcc\x59\x1a\xd2\xfa\xce\xc6\x20\x60\x6d\xb2\x06\xb3\xe6\xf5\x2d\xcf\xd7\x6c\x91\xb5\x3b\xb3\x59\x6e\x77\x49\x81\x97\x38\x47\x10\x6d\xf9\x83\x55\x0e\x89\x26\xe9\xef\xd3\xdf\x47\x8f\xf7\x50\x8e\xf3\x43\xfa\xb1\xaa\xd7\xb0\x30\x35\xb9\xe7\xe6\xf9\x54\x51\x1f\x59\x89\x6d\xd2\xe7\x5c\xac\xb2\x46\x5f\x05\xc8\x17\x93\x67\x19\x42\xe5\x75\xbe\x19\x94\x28\xc2\x25\xc8\x01\x4d\xaa\x24\x8a\x30\xef\xdc\x62\x21\x7b\x25\x39\xa2\x89\x15\x13\x01\xd3\x69\xb6\x20\xe1\xfa\x06\x06\x2f\x03\x32\x61\xa1\xb6\x8b\xc2\xe7\x4b\x1f\x9f\x37\x64\x39\xab\xe6\x38\x07\x3a\x58\x6d\x7d\x84\x1b\xbc\x98\x35\x73\x84\x93\x92\x70\x77\x15\xd3\xcc\xd1\x94\x26\xb2\x1d\xd9\x70\x56\x2b\x01\x3c\xc3\x2d\xda\x25\xb3\x39\xe6\xc1\x8d\xa9\x98\x9a\x38\x55\x9a\x15\xcf\x8b\x02\x4c\xef\x4d\x64\x39\x7b\xc3\xfc\xc1\xbb\x8c\x1d\xb4\x99\xbf\xc8\x2f\x68\x19\xe1\xa8\x6e\xae\x36\xf2\xa7\x7b\x6b\xfb\xa8\x8b\x0f\x9a\x9e\xd9\x58\x90\xbe\x7b\x6b\xb6\x87\xc1\xac\x9e\x7e\x03\x92\xab\xd5\x0b\xdd\x97\xa3\x4a\x4d\x8d\x04\x14\x12\x33\x48\xe6\x47\x48\x1a\xb4\x73\xe9\xa6\x3d\x71\x82\xab\x76\xe3\x17\xaa\x13\x84\x2e\x8e\xc5\x1f\x26\x71\x4c\x67\xe2\xe8\x78\x2e\x39\x7f\x75\xe9\x01\xaf\x38\xf2\xa8\xcb\x08\x4d\x13\xb8\xc1\x38\x3a\x9e\xfb\x54\x27\x9e\x31\x73\x51\x32\xc1\x42\x62\x1f\x3e\x47\xd9\x8c\x82\xe0\x65\xde\x71\x32\x68\xc9\x02\xeb\x24\x88\xc9\x01\x51\x49\x2c\x46\xbc\x05\x6d\x05\xc3\x4c\x25\x82\x50\x89\x56\x10\x38\xd1\x8c\xa2\xb1\xb0\xf1\x6c\x82\xfb\xa4\x44\x28\x5a\x52\x49\xf1\x44\x57\x8a\x27\xe7\x05\x4a\xcf\xf8\x3c\xf0\x62\xa8\xc0\x2c\x4d\xcb\xea\x32\x8e\x93\xdf\x13\xd2\xf3\xa2\x35\x85\x8f\x49\xe4\x16\x77\xf4\x4f\x70\xcd\x92\x8d\xa2\x31\x47\x59\xc2\x89\xc0\x2a\x0f\x47\xc8\x9b\xfc\x85\xe7\xd9\xaa\x17\xd9\x6f\xbb\x0d\x62\x43\x2a\xea\x63\xbb\xed\x0e\xbf\x97\xf1\x23\x7c\xdf\xf9\x17\x79\x1e\xef\xb3\x47\x90\x19\xc7\x87\x92\x40\x12\xb0\x47\x10\x4c\xc8\x0b\x57\xc5\xca\xed\x67\xb6\x4c\xac\x7b\x0f\xd0\x91\x42\xe1\xab\x82\x07\x8a\xe2\xb6\xa1\x6c\x24\xcd\x5b\x2b\x67\xbd\x1a\x05\x69\x8f\xd7\xc6\x9d\x75\xdf\x97\x9b\x44\x08\x80\x8b\x74\xe5\x23\x70\x41\x32\xfa\x2e\x1a\x37\xe3\xe8\xbb\x74\xa4\xd8\xb2\xbc\x96\x08\x6b\x94\x2f\x04\xbb\xa2\x23\x83\xf0\x22\x75\xfb\x28\x71\x88\x26\x4f\x9c\x4f\xee\x17\xec\x0f\x92\x58\x39\x3a\x92\x5b\x29\x27\x49\x45\x84\xdc\x3c\x06\x88\xeb\xa0\x00\x2a\xb8\x53\x1c\x9b\x27\x09\x72\xc0\xb1\xf4\xe4\x90\x10\x2f\x51\x7b\x2d\xcb\x71\x6d\x44\x91\x07\x12\x21\xe9\xe0\x1a\x95\xa9\x55\x2b\x9e\xa7\x62\x45\x79\x52\x82\x99\x27\xb0\x42\xb8\x91\x05\xc1\x37\x9a\x32\x3c\x91\x3c\x47\x1c\x47\x3f\x71\x0b\x55\x8a\x9f\xbe\xbc\x3f\x31\xdf\xea\xd9\x64\x0e\x68\x53\x23\x6f\xf9\x0e\xd3\xd9\xc6\xf1\x21\xef\x63\xf4\x8f\x95\x58\x81\x13\x60\xe8\x46\x01\x77\x9a\xe1\x3c\x46\x68\x60\xaf\x73\x33\x40\x6a\x06\xc8\x21\xc6\x9f\xd3\x84\xe8\xb2\xd3\x9a\xf3\x68\xc8\x7d\x5e\x96\xd9\xbd\x89\x94\x5c\xc8\x47\x65\xce\x53\x80\xcb\xaf\x3c\x69\xd2\xbc\x2c\x4d\x28\xac\xd2\xae\x90\x3c\xdd\xe0\x26\xb4\x4d\xc0\xe9\x96\x81\x2f\x18\xe2\x53\x58\x30\xc6\xd0\x76\x9b\x94\x12\x15\x36\xda\x4c\xa8\x90\x87\x5e\x9d\x7f\x57\x93\x90\x8b\xeb\x15\x42\x3d\x58\x00\x25\xe2\xb8\x03\x20\xa0\x1a\xb9\xc3\x25\xf1\xaa\x76\x8c\x3c\x14\xee\x0d\x35\xda\x9c\x0d\x9a\x95\x1f\xb0\xec\x8d\x02\x38\xde\xc9\x72\x25\x2c\x7c\x91\x69\x33\x3e\xd7\xf5\xcd\xf8\x5c\x12\x27\x83\xb5\x69\x76\x55\x16\xd0\xb9\x1f\xc8\x6a\xfc\xda\x4e\x9b\x4c\xdf\x8c\xd8\x55\x2a\x3c\xe8\xa2\xb4\xf0\x24\x3c\xa2\xbb\x81\x5b\x73\xeb\xa1\x2d\x3a\x97\xf0\xd3\x7a\x25\x96\xbd\xe4\xdb\x2d\x9d\x89\x79\x1c\x0b\x6f\x07\xdc\x76\x5d\x82\xaa\xba\xbc\x50\x53\x30\x07\x7a\x11\x65\xbe\x9d\xba\x7c\xf5\xe4\xa0\x1e\x11\xa1\x85\xa2\xfa\xb8\xbc\xe3\xcb\x0a\x44\x0c\x3d\x59\xf1\xfd\xce\x5c\x21\xe9\xd7\x9d\xe5\x1e\x3c\x66\x5c\x9d\xb6\xf7\x12\x5b\x0f\x38\x9c\x8e\x22\xd3\x4b\xed\xd2\xd2\x6f\x35\x54\xb6\x8a\x94\x80\x2e\x11\x63\x12\xa5\x92\xfa\x1e\x13\x0a\xe7\x6f\x87\x70\x91\x44\xdf\x01\x90\xff\x0e\x66\x15\x28\x09\x9f\xdb\x05\xa7\x0d\x03\xcd\x77\x91\x87\x64\xe4\xac\xff\x5e\xe7\x68\xf1\x78\x3e\xf5\x5f\xe0\x20\x11\x6f\xec\x07\x8f\x75\xbe\x9e\xa9\xae\xce\x09\xd5\x45\x40\xce\x8e\x20\x6c\x13\x74\x0e\xa2\xcc\x90\x89\x77\x75\x02\x82\x04\xe7\x90\xd7\x80\x2d\x9d\x3f\xf1\xae\xf0\xbc\x29\x4e\x22\xf0\xda\x3b\x72\x61\xae\x23\x84\x14\xa8\x6b\xf1\xbe\x22\xda\xa9\x85\x01\xd9\xb2\x84\x12\xdb\xf7\x9d\x16\xb3\x70\x8c\x92\xcd\xf3\x07\xf0\x07\xab\x05\x31\xad\x2d\x94\xcf\xc2\x3c\x43\x43\x92\x74\x55\x72\x0f\x60\x37\xa3\x46\xac\xfa\x33\x13\x2b\x80\x9d\x59\xd8\xea\x2c\xb7\xcc\x2c\xbe\xce\x9b\x97\x17\x55\x2d\x68\x91\x55\x18\x78\xa6\x8c\xed\xd0\x6e\x68\x94\x4a\xfb\x7e\xa4\x60\x3b\x42\x3e\xb5\xe6\x79\x14\xe9\x4e\xb3\x24\x7c\x59\xa7\x26\x30\x3e\x18\xb1\xe5\x48\xb1\x4a\xe0\x7d\x94\xf1\x96\x0e\x4f\x9c\xe1\x6c\x25\xa0\xec\x8d\x19\xa2\xd2\x0f\x77\x34\x97\xe3\x8a\xd0\x10\x79\xc8\x3b\xeb\x30\x0b\x67\x78\x9e\xb2\x46\xaf\x69\x61\x81\xc0\x43\x05\xc6\xe3\x39\xa1\x98\x6f\xb7\xb7\x89\xe5\x54\x71\x54\xd3\x82\xd5\x74\x21\x22\xed\xf9\x94\xde\x08\x2c\x10\xce\x93\x70\x43\x75\xbb\xdf\xdf\x4d\x3e\x3d\xe9\x29\x8b\x04\x3b\x9f\x74\x86\x64\xb6\x91\xde\x14\x0a\x41\xeb\xf5\xed\xee\x87\xee\xe8\xcd\xda\xe5\x58\xe8\xae\x36\xc3\x5d\xfd\x5c\x57\x0b\x2a\xd9\x6a\xb4\xdb\x61\xba\x4b\xbc\x4d\x71\xa9\x43\x4d\x1f\xc2\xc9\xf6\x49\xba\x4b\xe4\x2b\xef\x5d\x26\x5a\xc8\x24\x08\xec\x55\x8d\xe7\x14\x8f\x73\x60\x92\x36\xa2\xad\xe9\xa9\xc8\x17\x5f\xcf\xea\x7c\x41\xa7\x7b\xd2\x55\xb9\x4b\xcd\x1b\x35\x32\x5d\xf2\x5f\xf2\xd7\x70\x7d\x3a\x72\x41\xc5\x89\xf0\xdf\xd4\xe7\x25\x2b\x29\x04\x97\x12\xf6\x51\x7d\x28\x19\xa7\x8a\x14\x95\xd4\x97\x7d\xd1\x1a\x9b\x3a\xb2\x82\x30\x4f\xdb\xad\x47\x3d\xeb\xe3\xa5\xd5\x03\x24\x10\x23\xfb\xbf\x9a\x26\xb8\x57\xbd\x64\x7a\x21\xd6\x4f\x41\x77\x9e\xb5\x49\xc7\x5d\x99\x9a\x11\xfb\x15\x69\x35\x96\x61\x0c\x05\x41\x58\x30\xc3\x95\x56\x13\xf4\x2e\xd1\x0e\x8c\x6f\x64\xe5\xf8\xb8\xde\x6e\xb5\xef\x4f\xad\x2b\xc1\x05\xe5\xc2\x5c\xe1\x29\xee\xd2\x5c\xe1\x15\xb9\xd0\x62\x46\x95\x4b\xc7\x8e\x54\x2f\xf0\x55\x02\x6d\x13\xc7\x5b\x1d\xaf\x0f\x55\x41\x4b\x87\x0a\x07\xd1\xa3\xda\x72\x81\xf6\x04\x6c\xea\x20\x45\x23\xd1\x01\xbd\x0b\x85\x80\x03\xdd\x0b\x50\x3e\x85\x85\x0e\xaa\x60\x57\x95\x09\x77\x15\x7c\x68\xe8\xdf\x5a\xca\x17\x61\x6e\x66\x00\x27\x39\x3c\xb6\x29\x40\xba\x4b\x40\x05\x09\x6d\x5d\x6a\x43\xef\xa8\xdd\x14\xb9\xa0\x51\x30\x78\x8d\xb2\x7a\x23\x07\xcb\x3f\x57\xa9\xc7\x65\x1f\x4e\xb0\x75\x32\x1c\xcc\x4d\x0f\x2e\x32\x04\xd1\x1a\x13\x6f\xb6\x18\xb2\x6b\xcb\x9a\x57\x79\xdb\xd0\xe2\xc7\x5b\x18\x03\xe3\x97\x7e\x23\x87\x15\xee\xe4\x7a\xa7\x44\x68\x5e\xa6\x0a\x08\xd9\x07\x72\x6c\xb7\x13\x42\x48\x65\xe7\x0e\x75\xeb\x34\x2d\x7f\x51\x57\xe2\x61\xdd\x91\xbe\x28\x8f\x64\x15\x76\x1a\xe3\x38\x39\xac\x1e\xec\xfc\x76\x3b\xf4\xbd\xd7\x04\x92\xa4\x1e\xdc\x52\x78\x5b\xa7\xd6\x0f\xfd\x9d\x58\x07\xac\x7f\x7f\x6f\xd5\x21\x52\x87\xc8\x9e\x03\xb0\x18\x99\xbb\x50\x6f\xff\xd5\x1d\xcc\x7c\x74\xac\x79\x22\xdc\x90\xc9\x8b\xe6\x87\x1c\xee\x52\x3b\xb9\x9a\x39\xf2\x30\xd4\x8b\xf1\xb8\x41\xfd\x0d\xdc\x9a\x32\x07\xe1\x1e\xb6\x41\xff\x4e\x75\xca\x78\x1c\x9e\xb3\xda\xc2\xff\xd0\x63\x7a\xe9\xb6\x3c\xda\x47\x82\x18\x4d\xfc\x40\x7c\x90\xab\x42\xa3\xa3\x91\xca\x05\x31\x3c\x40\x60\xb5\x1f\xdb\xd3\xd4\x51\x26\xdb\xad\xd7\xf4\xb4\xd7\xe6\x79\x52\x22\x94\x25\xa5\xe1\xdc\x0d\xfb\x89\xa9\xda\xf8\xb8\xc4\x16\x29\x5b\x92\x08\xe1\x32\x85\x7e\x25\x68\x80\xa8\x50\x05\x65\x37\x0b\x4b\x4e\xbc\x34\xe4\x04\xf0\x33\x7b\x4f\x9f\x9a\x39\x07\x41\xd1\x13\x68\x7c\xd6\x9c\xdc\x30\xf1\xc0\x4d\x1b\xe9\xed\x39\x73\xc7\x86\x25\x29\x63\xee\xd8\x7e\xe0\x2f\xc6\x63\x60\x17\x93\x9a\xb0\x99\xd0\x62\x69\x42\x08\x44\x12\xd0\xe5\x41\x79\x58\x5f\x3b\xdb\xf8\x41\x93\x90\xe2\x97\x48\xbf\x27\x9c\x1f\x00\x3c\x8a\x3a\x50\xdf\xc3\x1a\x16\x1d\x95\x9f\x6e\x1c\x7e\x53\x81\xda\x01\x10\x85\x24\x28\x0f\xd1\xab\xcb\xdb\x27\xd4\xa0\x73\x0e\xd4\x01\x0b\xbc\x4f\x31\xcd\xed\x28\xf9\x9a\x25\x8a\xe8\xd0\x28\x2d\x84\xfb\x5d\xac\x31\x8e\x32\x8f\x41\x80\xf0\x5b\x7a\x8f\x9b\x58\x86\x1a\xe7\x6d\x6a\x0f\xe8\x78\xa1\x02\x54\x23\x01\x5e\x75\xd8\x64\xd2\xc5\x26\xc7\x3e\xb2\x4d\x95\x78\xc8\x03\x97\x96\x2b\xe9\x71\x6d\xa2\xbe\xed\xa9\xea\xe8\x4d\xaf\x15\x75\xfc\x8a\xdd\x88\x24\x38\x17\x20\xfe\x72\x63\xf1\xf5\x9d\x8d\xb6\x47\x80\xe3\xe2\x18\xa2\x56\xad\x2a\x8d\x74\xec\x07\x84\x69\xd8\x31\x95\x6b\xe8\xda\xac\x83\x35\xd5\xdc\x74\x76\xa6\x3a\xe4\x03\xbc\xa8\x96\xc8\x7a\xae\xfb\xa3\x8b\xaa\x2a\x69\xee\xd9\x44\xd1\xa9\x30\x92\xbb\x0c\x66\x76\x35\xb0\xea\x72\x55\x42\xf8\x6d\xee\x91\x7b\xd8\x7b\x7c\x8c\xf0\xc0\xde\xad\xca\xb2\xba\xfe\xa2\xc9\xff\xc6\x5f\x83\xde\xb4\x1f\xec\x3f\x14\xb6\x98\xaf\x10\xda\x5d\xfe\x69\x3f\xa9\xdb\x7e\x82\xb2\x1e\x88\x13\x68\xd7\xe9\xf4\x03\x9e\x32\x3d\x58\x9e\x98\x33\xa1\x23\x49\xd8\x33\x32\x8e\x50\x14\x56\x58\x56\x21\x3c\x7b\xe8\x80\x81\xc4\x21\xe0\x1f\xce\xc3\x38\x47\xa6\x18\x75\x65\xa2\x82\x0a\x88\xd0\xa5\x0e\x5f\x1a\x21\x0c\x0c\xc5\xee\xc2\xbf\x7a\xa0\xbc\x20\x17\xfd\xfd\x03\xfb\xff\xba\x77\x3a\x1c\x09\x6b\xc8\xd5\x1d\x3e\x19\xd0\x05\xbf\xd9\x2b\xfa\x51\x0b\xdc\x93\x8b\x4c\x06\xe5\x22\x13\x5f\x2e\x32\x99\x67\xf7\x2e\x8e\x80\x70\x21\x5b\x0d\xdc\x3e\xc1\xc1\xfb\x67\x83\x7d\xac\x54\x62\xa9\xcd\x61\x5d\x0a\x80\x7f\x25\x3a\xc1\x14\x45\x86\xa5\x24\x84\x08\xa5\xe5\x79\xae\x5d\xd4\x9b\xd8\xee\x76\xe3\x2b\x1e\x6a\x26\xe6\x60\xbf\x31\x84\xb5\x2e\xa9\xa5\x35\x02\x8f\x32\xc1\x49\xa0\x62\xb1\x1a\xc8\xe5\x1d\x03\x57\x8d\x53\x14\x43\xc1\xa9\xe8\xf5\xb1\xb3\x73\x3b\xdf\x07\x90\xa8\x12\x36\x05\x95\x76\x27\xb1\x2f\xb8\x40\x38\xe9\xaa\xba\x25\x82\x50\xe4\xb4\xdd\xb6\xdb\xa1\x10\x1e\x68\xd0\x1a\x53\x00\xaa\x9c\x26\x43\x8d\x0f\xa4\x29\xc4\x3a\x00\x22\xeb\x54\xb1\x12\xde\x64\xa0\x80\x24\xd5\x4c\x0a\xca\xa8\x5a\xe1\x6e\x76\x23\x59\x7d\xe0\xac\x4a\x4c\xab\xaf\x88\xd4\x45\x8f\x5d\x18\x75\x0b\xd4\x85\x77\x7b\x65\x94\x46\x5b\x40\x49\x17\x5d\x25\xdf\x0d\x08\x19\x2f\xa9\xf8\x89\x1b\xb6\x70\x0f\xd2\x0e\x4b\x34\xda\x82\x7e\xc0\xdf\xc2\xc8\x23\xba\xd4\x29\xf6\x0b\x06\x53\x32\xac\xbe\x61\x0e\x99\x92\x06\x98\x9e\x87\x13\x4d\x1f\x93\x92\x9a\x6b\x05\x2d\xeb\x5c\xac\xe8\xe2\xeb\x9b\xaa\x06\x4c\xaf\xee\x4d\xb4\x9c\xc3\x50\x78\x75\xcb\x55\xbc\x30\x60\x8b\xdf\x56\xd5\x57\x2f\x9b\x40\x46\xd1\xfd\x92\x0a\xc8\x10\x7e\xcc\x6d\x1d\x10\x57\x6c\x4f\x15\x8d\xca\x75\x41\x17\xd5\x9a\x1a\x16\x22\xc8\xb2\x5f\x64\x3a\xb0\x4f\xf7\x4b\x50\x3d\x61\x28\xec\xe5\x7a\xaf\xf8\x54\x89\x03\x97\x55\x6d\x45\x76\xaa\x04\xdb\x5b\x42\x4d\xd2\x68\x2d\x87\xf8\xe4\x06\xd8\xd2\x72\x22\x45\x0b\xe1\x39\xbe\xbb\x70\x93\xfd\xdd\x68\x55\x55\x5f\x6d\x65\xd5\xde\xca\x3e\xfc\xd6\x46\x19\x1f\x7d\xb7\x1e\x68\x2a\xdf\x5b\x05\xac\xe3\x6f\x1f\xa5\x6c\x30\xb7\x5b\xa1\xd3\x6a\xf3\xc0\xe4\xca\xad\x31\x32\x47\x51\x47\x5c\xf4\xf6\x79\x6f\x93\x0e\x1f\x21\x8d\x69\x25\x0c\x31\x9c\xd9\xe1\x04\x47\xd7\xac\x2c\xf5\xbe\x53\x53\x89\xc3\x63\xa5\xa1\x59\xdd\xf2\xd3\x55\x5e\x6b\x09\x91\x6c\x25\xa1\x38\xf2\x16\x2c\xc2\xb3\x79\xbf\x67\xe1\xd6\xdf\x6f\xb3\x2d\x4f\x73\x80\x0f\x1a\x91\x37\xab\x2f\xbe\x54\x4a\x87\x2e\xdc\xdf\x19\x37\xb7\x11\x06\x66\x2b\x84\xd9\x41\x74\x41\x5f\xda\x35\xe3\xf3\xdd\xde\xd9\x7f\x77\xc9\xe5\xd6\x5e\xb6\xe5\x92\x95\x25\x18\x6a\x82\xc5\xd4\x28\xe7\xc5\xc8\x58\xb2\xc9\x6a\x54\xf2\xd0\xea\x74\xba\xda\x8b\xbd\xac\x24\x9a\xd5\xa5\x1c\x83\x24\x99\x75\x5c\xb0\x71\xa4\x77\x48\x4f\x00\x12\xc7\xb5\xd2\x78\xeb\x7e\x40\x58\x7f\xb0\xda\xd4\x83\x0a\x5d\xe6\x3e\x8d\x2d\x13\x13\xf3\x59\xc5\xdf\xb4\x2a\x07\xb3\xda\x5c\xaf\xa1\xec\x78\xcf\x17\xcc\x67\x93\x39\xca\x9e\x3f\xf4\x19\x2b\x75\x4e\x48\x56\x97\xbd\x10\x07\x2f\x80\x5c\x7e\x7c\xbf\x11\x8b\x63\x16\xc8\xd8\xc0\xec\x0d\x5c\x0c\xe0\x3e\x00\x64\x0f\xdd\xfe\xa8\x65\x52\xf5\xd2\x62\xb4\xac\xab\xf5\xa8\xe2\x36\x2a\x90\x5a\x34\x39\xc3\x4d\x6f\xd1\x0c\x40\xdf\x4f\x48\x05\xb8\x63\x98\x29\x1e\xbe\x7b\xf9\x06\x78\x3b\x80\x45\x7f\xe3\x3e\xf5\x2e\x74\x3a\x28\xbb\x77\xca\x7a\x64\x47\x47\x32\xdc\x4d\x00\x11\x72\xef\x44\xd9\x33\xad\x03\xcf\xba\x16\x43\x44\xb7\x1f\x20\x58\x62\x22\x11\xe8\x80\x1a\x49\xdd\x3e\xa8\x60\x6e\x21\x83\xeb\x48\x9b\xea\x77\x87\x6b\x03\x4f\x02\x46\x8e\x99\x23\x25\x8c\xca\x5d\xb0\x35\xb5\xd6\x1d\xdf\x49\x8a\x80\x68\x16\x5b\xdf\x1d\xe9\x2d\x9b\x44\xfa\x3d\xd2\x0c\xc2\x76\x7b\x08\x7a\x05\xd6\x54\x9f\x18\xb0\xa5\xf9\x81\x24\xb2\xb0\x1c\xd7\xdd\x05\x81\x1b\xb8\xd3\x76\x43\xeb\x05\x2d\xc2\x2b\x5e\x15\x96\xdd\x08\x88\x0e\x4c\x84\x63\xd3\xca\x60\xef\x46\x8a\xd9\x30\xd2\x01\xf9\xbc\xdd\x76\x7b\x1c\xc7\x87\x42\x87\xb8\xeb\x44\x23\x8b\x36\x5a\xed\x2a\x8e\x0f\xc3\xa5\x82\xce\xfc\xe7\xa1\x70\x92\xab\x4e\xf7\x02\x65\x31\xd0\xad\xea\xc5\x3a\xe3\x28\x8e\xa9\x51\x5b\xe0\xf3\x01\x21\x98\x2f\x10\xb6\xcb\x89\x76\xca\x27\x8e\xba\x69\x81\xf8\x7b\x28\xa1\x78\x76\xff\x95\xde\x66\x96\xa7\xda\x13\x63\x21\x60\xd9\x0e\x09\x39\x99\x06\x29\x6a\xf9\x7d\x36\x29\x41\x3b\xf0\xd0\xb5\x4f\x3c\x72\xee\xc8\xcf\x1d\x0e\xba\xa0\x8f\xff\xbe\x9e\xf8\x52\x9b\x0e\x0f\x39\x1d\x4a\xcc\x92\x81\xbe\x0d\xb2\xa0\x4f\xec\xb1\x61\x77\x28\xa6\xbb\xdd\x1c\x29\x86\x5f\x2e\xd9\x69\xb0\xed\x2c\x3b\x5d\x27\x16\x81\xc0\xfc\x6f\xaa\xa6\x61\x17\x25\x7d\x65\x42\x9c\x57\xf5\x17\x68\x06\x69\x3a\xda\xbb\x3b\xe4\xce\x58\xb5\xf6\x64\xe5\xe4\x70\x82\xeb\x9d\xf5\xc9\x26\x52\xc6\x57\xb4\x66\xa2\x41\x49\x2d\xe9\xf0\xfa\x51\x7a\xde\x53\x21\xec\x00\x21\x09\x33\x1e\x82\x4b\xde\x61\x19\xc2\x2d\x8a\xfa\xde\x8b\x5e\x00\x94\xd6\xdf\xc8\x2f\x39\x08\x00\x3b\x39\xc2\xdf\x02\x84\xbc\xa3\xb0\x93\x6d\xef\x92\x1b\x84\x3f\xfd\x37\x2f\x95\xb2\x24\xd4\xbf\xdb\xed\x6c\xfe\xe4\xe5\xea\xe3\xd0\xce\x36\x54\x14\x4f\xc0\xca\xaa\xe9\xd3\x91\xfa\xae\x58\x41\x0b\x43\x6d\xef\x59\x20\xbb\x80\xe1\x5a\x0c\x70\xa2\x4e\x11\x55\x43\x3a\xa3\x01\xe0\x11\xa0\x0d\xae\xc9\xfd\x4e\x02\xb2\x45\xe2\x99\xff\xce\x24\x25\x33\x27\x02\xd7\xee\x32\xd6\x34\x50\x07\xd7\x7f\x2e\x59\xcd\xa7\x42\xd6\x98\xbb\x9b\x3e\xbd\xa6\xfa\x2a\x56\xbf\xb9\x72\x68\x40\x24\xe2\xa3\x42\x5d\x95\x4f\x92\x19\x1d\x29\xee\xcc\x01\x9e\x9d\xb3\xe2\x77\xcf\x52\x41\x1b\x91\x30\x34\xad\x41\xab\x2b\x65\x45\xa6\x9e\x70\xbd\x33\xdb\xe7\xe5\xf0\xf6\xe1\xff\xa8\xed\xd3\xb9\xca\x03\xac\xbc\x67\x03\x71\x0c\x91\xb8\x1f\xd9\x40\x6a\x0d\xbd\xa3\x70\x00\x8a\xc5\xa1\xb1\x5a\x9e\x88\x8e\x32\x17\xc2\x22\x34\x0b\x0e\xa8\xe6\x03\x8f\xee\x30\x87\x4e\x12\xc9\x1c\x47\x05\xb5\xb3\x1f\xa1\xed\x16\xd2\xf4\x96\x0c\xd8\x95\x41\x8e\xa4\x06\x36\x64\x87\xb9\x9c\xeb\xc0\x06\x39\xd0\x85\x4f\x26\xf8\x6b\xfa\x55\xa2\x31\x30\x18\x44\x89\x90\xf3\xe4\xf1\xfd\x46\x8e\xf8\x15\xf3\x9d\xcd\x49\xee\x0d\xb0\xc9\x4e\x15\x88\xc8\x5e\x62\x25\x1f\xcb\x3e\xed\xba\x86\xc1\xff\x2d\xab\x0b\xd2\x4c\xae\x20\x57\x1d\xde\x76\xf2\xe0\x15\x5b\x5a\xa8\x71\x4e\xdc\x34\x38\x09\xd6\x85\x07\x37\xbb\x4f\xdd\x29\xc0\x59\x9c\x55\xea\x42\x67\xc8\xc9\x84\x32\x59\x6f\x12\x0f\xfe\x1b\x6f\x0a\x3e\x2c\x68\xc0\xf2\x0d\x94\xc0\x3c\x7b\xd7\xa4\x92\x7c\x0e\xd8\xf9\xe4\x56\x07\xcc\x6a\x6c\x05\xbb\x40\x77\x44\x8f\xba\x01\x4f\x4e\x1c\xb7\x58\x0b\x09\x98\xdc\x0b\xfd\x7e\x9b\xec\x03\x5d\xc7\x15\x6e\x54\xf7\xfb\x31\xbe\x2e\xc1\x8e\xe2\x0a\x5f\x04\xa8\xcc\x5e\x8e\x20\x7c\x6e\x35\x93\x2d\xf8\xf1\x17\x05\xf4\xd5\x5b\x32\xc1\xa5\xd3\x57\x6f\x7f\x28\x5f\x8c\xc7\xad\xa4\xd6\xc4\xac\x9d\x7b\x57\x94\xbd\xe2\x81\x48\x0e\xdd\x9f\x93\xf6\xe0\xa2\xa6\xf9\xd7\x9d\xaa\xd6\x53\x8a\x6e\xff\x40\x26\x2f\x8e\x8e\x5a\xb4\x24\xc9\x82\xc8\x7a\xad\x46\xb4\x6f\x4a\xa4\xee\xd2\xdb\x39\xde\x28\x81\xf9\x42\xc1\x64\x2b\xb1\x9f\xb6\x7f\x20\xe7\xd3\x8d\x1e\x2d\xd0\x7e\xb0\x4f\xde\xba\xe2\xc9\x12\x73\x53\x0e\x5f\xe0\x15\xca\x92\x82\x34\xc9\x12\xe1\x4d\x57\xb8\x2d\xb3\xbf\xa9\x6a\x6d\x4b\xa3\x0d\x58\xba\xe5\x71\x8d\x5b\x5c\x20\x94\x7d\x5b\xab\xb8\x8a\xe3\x64\x43\x36\x1d\x66\x47\xa1\x83\x8d\x23\x3a\xd6\x64\x15\xc7\x2b\x8b\x89\xba\x03\x8e\x63\x9f\x50\x5f\xc5\xf1\xc6\xa3\xf5\xd7\xb2\x09\x03\x5f\xa1\x1a\x03\xe9\x5c\xae\x35\xc2\xb7\x64\x85\x13\x39\x71\xdb\xed\xa6\xcb\x5c\x24\x2b\xf0\x2a\x73\x4e\x3e\xe4\x62\x95\xae\x19\x4f\x5a\x7c\x2e\x8b\x6c\x10\x66\x71\x7c\x28\x47\x71\x4b\x6e\x07\x47\x71\x6b\x47\x81\xf0\x65\x78\x39\xd7\x72\x75\xa3\x77\x0b\xa8\xea\xc2\x0e\xa7\xaf\x41\xfe\x41\x72\xac\xba\x1e\xed\x1c\xab\x19\x5d\xd3\x9a\x5a\x6f\x78\xab\x1c\xdc\xe4\x69\x65\xfc\x42\x2d\xd6\xc8\x18\x44\x03\xcf\x0c\x11\x7e\xab\x56\xd0\x6c\x14\x8d\x3d\x41\x82\x46\xf3\x8c\x5f\xe5\x25\x2b\x24\xa3\xa0\x2d\x7c\x92\xb0\xbf\x72\xc8\x79\x72\xd9\x57\x29\xf1\x12\x00\x1e\xe3\xcb\xf0\xf4\xf6\x6b\xde\x67\x10\xae\xcd\x22\x44\xd7\xbf\xcb\x78\xcc\x8d\x7f\x17\xb0\x9e\x61\x21\x11\x99\x74\xc0\xc5\x23\x9b\x77\x18\x7c\xe4\x1e\x00\x01\x81\x8f\x5b\x8f\x7b\x20\x74\x5a\x52\xcf\x9c\x6e\xeb\x1c\x05\x24\xc8\x9e\x0d\xef\x40\xeb\x41\x9d\x6e\xaa\x4d\xa2\xb4\x30\x64\x85\x20\xc0\x31\x5a\x0e\xd6\x09\x8b\x32\xcb\x50\xc4\x74\xf7\x0a\xde\x65\x6a\x49\xa2\x3d\x47\xf4\x73\x75\x35\x66\x51\x1c\x97\x66\x0f\x9a\xdb\xb0\xaf\xf6\x82\x48\x13\xd6\x14\xbb\x39\xcb\x04\x76\xe4\x59\x06\x2e\x96\x65\xd9\xac\xd5\xee\x19\xf8\xae\x33\xdd\xc3\x63\x1f\xc4\x2f\x86\xd7\xd5\x66\x92\x92\xf8\x28\x2d\x81\xf6\xa2\x3c\x3a\x7a\x01\x36\x03\x84\xc5\x31\x05\xcd\x50\xd9\xa4\x9c\x28\x8f\x2c\xca\xc3\x75\xc0\x0d\xe1\xb3\x72\x8e\x17\x49\x8e\x50\x3b\x6b\xc0\x7c\x48\x4f\xf6\x81\x99\xec\xc3\xaa\xcb\x52\x37\x7b\xdc\xc4\x15\xac\xe0\xdf\x39\x87\x6d\x94\x57\xed\xe5\x6a\xa4\xcc\x82\x9e\x81\x73\x69\xb6\x50\x4e\xdc\xa8\xa0\x75\x33\x12\xd5\xa8\xc9\x05\x6b\x96\xb7\xa3\xbc\x2c\x8d\xcc\x6c\xf0\x00\x2a\xbf\x05\x60\x9c\x0c\xfd\xac\x66\xcd\xdc\x5b\x91\x80\xd3\xe9\x2c\x88\xe6\x6c\xda\x9d\x22\x92\xae\x3d\x22\xe9\x6c\xaf\xbe\xea\x59\xa0\xaf\x7a\xf6\x8f\xd7\x57\x3d\xfb\x7f\x80\xbe\x6a\xc7\x48\x27\xd0\x56\x1d\x34\xe0\x79\xa2\xc2\xea\xd9\xb7\x29\xac\xbe\xfa\x6f\xa6\x20\xdb\x5a\x9e\x93\xb6\x2e\xff\x11\xb4\x9e\x6f\xae\x6c\x2d\x45\x81\x44\x5a\x82\x5a\xbf\x9e\x33\xab\x0e\xa3\x8c\xc5\x96\xde\x81\x39\xf3\xbe\x29\xbb\xf8\xc3\x63\x43\x3a\xb4\x75\x79\x10\x5a\xbf\xb0\x65\x02\xcc\x07\xe3\x39\xc4\x92\x92\x33\xf0\xe3\xed\x4f\x5f\xde\x07\x35\x6e\x9c\x6f\xdc\x9d\xa3\xb8\x96\x5d\x8a\x4b\xd9\x2e\x77\xcf\x4b\x52\x93\x65\x40\x2f\x79\xc7\x87\x9b\xe3\x53\x5b\xa9\x80\xb3\x34\x9b\x16\x49\x85\x9c\x5e\xb9\x11\xf5\x74\x13\x94\xa0\xb9\x40\xe0\x36\xa2\x4b\x87\xad\xb6\x5b\xd6\xa3\x19\x1a\x34\x4d\x56\x60\x16\xdd\xcd\x4f\x18\xca\xfa\x89\xf6\x96\x3f\x4f\x16\x01\x8e\x5d\x86\x17\x17\x0b\x0d\x01\xf0\x97\xbe\xa3\xa3\x6a\x83\x3f\xff\xb7\x29\x78\x74\xe8\x42\xe2\xe3\x59\x4d\x43\xb8\x04\x6c\xde\x4f\x2d\x2a\x51\x05\xdc\xbb\x2b\xe3\xd2\xb0\x77\xf3\xff\xd3\x97\xf7\x84\xba\x67\x9d\xdd\xbe\x1b\x9d\x26\xd0\x90\x55\x79\xdd\x8b\xce\xec\x12\x34\x54\x62\x85\xa7\x7f\x46\xc3\x77\x5d\x26\x48\x53\xc5\xae\x59\x59\x06\xe5\xc2\x04\x5d\x30\x4c\xec\x78\x65\xa6\xf6\xd1\x34\xa3\x5f\xb5\x8a\x9e\x67\xbb\x49\x42\x53\x4e\x9d\xdf\x4f\xc2\x46\x2c\x44\x40\xcb\x41\xe7\x28\xab\x4b\xdd\x68\x53\xbe\xca\xcb\xf2\xc7\x7c\xf1\xd5\xd9\x6f\x29\xad\x78\x5f\x0f\xbc\xa7\x8f\xe7\x7f\x3c\xd7\x76\x6e\x7f\xf6\x78\x4e\xff\x7b\x55\x16\xa7\xbd\x1a\xb5\x7e\xee\xdb\x7d\xea\xeb\x1d\xfd\x5d\x62\xf5\xd2\x8c\xed\x36\x40\xa1\xda\x06\x6a\xd0\x5f\x1b\x2a\x12\x34\xa4\xc8\x13\x9a\xcd\x1b\x97\xc3\xb6\x36\x37\xfb\x03\x33\xee\x65\x5b\xe7\x9b\x84\xe2\x47\x48\x52\x4b\x70\xe0\x9a\x1c\x4e\x5e\xf0\x3f\x90\x49\x1c\xd7\x2f\x8e\x8e\x24\x65\x2a\x80\x32\x55\x9e\xaf\xf1\x7d\xde\x38\x78\xb2\x43\xb8\x26\xca\x43\x08\x03\xd7\x5b\xdb\x6d\x14\xbc\x28\xff\x28\x91\x6f\x06\x63\x5c\x4e\xfc\xcf\x9e\xaa\xdb\x03\x8e\x98\x46\xdd\x51\x99\xbc\x3d\xad\xa3\xa7\xa8\x3f\x85\x07\x77\x6f\x36\x0f\x30\x79\xfb\xa8\x6f\x7e\xaf\x2d\x90\x03\x65\xa6\x8f\x0a\xcb\x81\x38\xf4\xd0\x98\x5c\xf4\x94\x04\x07\x53\xb3\x24\x51\xee\xaf\x2e\x54\x40\x12\xd4\x37\x42\x98\xe0\x40\x42\x42\xde\xea\xd6\x42\x8e\x26\xd4\x8f\x67\x9e\xc1\x17\x61\xa1\xa6\xf0\xc0\x84\xbf\x4e\x18\xe6\x08\x57\x21\xc4\x88\xe3\x4e\x42\x52\x0d\x9d\x0b\xd0\x2d\x05\x06\x31\x54\x39\x5f\x54\xeb\x4d\x49\x05\x8d\x10\x02\x29\x48\xa8\x41\xda\xd5\x73\x0d\x77\x7f\x7d\xdb\xf3\x40\xee\x34\x79\x30\x23\xda\x57\x57\x77\x36\x71\x45\xd8\xf0\x3c\x2b\xa0\x91\x39\xf8\x81\x73\x12\x12\x16\x49\xd5\x3d\x4d\xb8\x87\x08\x06\x50\x81\x44\xa3\x9b\xa4\x0a\x66\x3f\x0f\x25\x8d\x6c\x99\xbc\x49\xf2\x70\xb9\xaa\xe0\xd5\x52\xb7\x4d\x1c\x1b\xc7\x88\x83\x1b\x32\x69\x14\x83\x87\xd0\x34\xa9\x87\xb6\x4a\x6d\x7c\x52\x74\xc6\xbf\xdd\x7a\x9b\x0c\x44\x43\xa6\x49\x80\x6a\xbf\xaa\x3d\x95\xa3\x83\xda\xdb\x8d\x98\xe2\x1c\x3f\x04\x67\xd1\x30\xa8\x39\x80\x8b\x3f\x67\xee\x6c\xa4\xd6\xf6\xae\x6f\x8f\xef\x53\xc9\x1b\x03\x85\x35\xe3\x73\x7b\x85\x69\x9e\xc3\x4b\xc7\x3b\x95\xc9\x58\x8b\xb8\x67\x64\xf3\xed\xdc\x8d\xe2\xc3\x93\x0f\xf7\xb6\xfd\xb9\xd4\xfe\xda\xbb\x63\xde\x73\xbc\xad\x52\xf7\x30\x42\xaa\xd5\x5d\x85\x36\xee\x78\xec\x3c\x0e\x6e\x7a\x5c\x1d\x78\xe7\x62\x8f\x3e\xae\x91\xd8\x00\x07\x07\x42\xeb\x66\x24\x69\x57\x88\xd5\x91\xab\x7b\x22\x59\xea\xc5\x08\x54\xf6\xd9\x1d\xe3\x97\x9e\x1e\x7d\x1a\x21\x58\x14\x5d\x33\x73\x52\x51\x35\x73\xbf\x26\xf2\x14\x50\x84\xa9\xa7\xbb\x9f\xd4\x03\xfa\xda\xa4\x1e\x82\x15\x7d\x3b\x8f\xf3\x84\x22\x84\xb2\xe4\x35\x80\x58\x6a\xb4\xf6\x25\x39\xae\x1a\xb1\x0a\xf8\xfb\xd4\xee\x57\x09\xc8\x9a\x07\x1a\x3b\x9c\xe0\x59\x14\x40\xb0\x68\x8e\x70\xdd\x85\x72\x9d\x84\x64\xb0\x32\x84\xcb\x24\x9c\xea\xb3\x2f\x2f\x3f\x9e\xbe\x3b\x7b\xf7\xe9\xe3\xe8\xd5\xa7\x0f\x9f\xdf\x9f\x9c\x9d\xc8\xe9\x73\x4e\x60\x3d\x89\xb1\xf1\x21\x9a\x4b\xcc\x2e\xf9\x84\x3c\xb0\xc6\xdc\x6e\x93\x8a\xd0\x81\x59\xc4\xa1\xde\x96\x36\xaa\xc9\x31\xc5\xd5\xac\x1a\x68\x06\x53\xb3\x0f\x11\xce\x77\x3b\xd5\x63\x10\xb8\x38\x10\x7d\x4a\x85\x28\xa9\x6f\x3c\xa1\xb7\xe3\xe8\x7a\x45\xb9\x9f\xce\x1a\xb3\x4b\x40\x05\x0d\xb3\xed\xf6\x41\x67\x51\x83\x43\xd0\x0e\x33\x9a\xd0\x8d\x13\x03\xaf\x60\xcd\xac\x9e\xe3\x24\xef\xec\xb2\x59\x3d\x07\x57\xb0\x5a\xa2\x94\xab\xe3\x0f\x0e\x9f\x72\xdf\x2a\x78\x95\x50\xac\x17\x39\x24\x58\x23\xcc\xe7\x72\x2a\xc2\x54\xc9\xb6\x85\x29\x49\x83\x3b\xfb\xdb\xe8\x29\xe9\x68\x0c\x01\x7a\xcf\x71\x83\x70\xbd\xd3\x3a\x4d\x2a\xc9\xda\x39\xe8\xf5\xf5\x34\x81\x7c\x28\xaa\xee\x04\xd1\xae\xa7\xac\x4a\x45\x4f\xfd\x1d\x66\x30\x8e\x7d\x0b\xd0\x21\x43\x08\x94\xd6\xf4\x8a\xd6\x0d\x4d\x50\x60\xa5\x1f\x58\x3f\xd3\x1b\x26\x22\xab\x9c\x3c\x48\xe8\x2a\x62\x5a\xb1\xcc\x7b\x29\x5f\xd9\xff\x2e\xf9\x26\x3f\x4b\x5e\xc5\xe7\xd1\xaa\x3a\xe9\xb3\x65\x58\x10\xed\x22\x03\x61\xed\xdb\xd5\xf9\xc7\x71\x9c\x19\x57\x5e\x86\x35\xa1\x45\x84\xbb\xda\x54\xbe\xf1\xea\xc0\x37\x9e\xfc\x0c\xee\xf1\x6a\x84\xdf\x1b\xad\x59\x63\xfb\x02\xaa\x63\x43\xea\xc6\x9d\xfe\xf6\xa4\x66\x36\x97\x72\xcf\x29\x46\x10\x1e\x6d\x0d\x21\x40\xa3\x9e\x69\x8f\x65\xd7\x7a\x84\xbb\xad\xa7\x47\xb1\xba\xd3\x75\x56\x0d\x28\x0c\xbc\xef\xed\xab\xa0\x34\xc4\x5e\x5c\xd3\x82\xe5\xc2\x03\x83\x4f\xaa\x49\x05\x33\x08\x07\xb0\xac\x69\x33\xe0\x12\x9a\x0c\xd3\x56\x9c\x88\xa9\xe8\xd3\x51\x35\xe1\xe1\x79\xd7\x32\x1f\xa5\x82\x2c\xd1\x4b\x3e\xd2\x4d\x05\x1e\x1d\x3c\xd7\xaf\x1f\x12\x25\xf9\x08\x84\xa1\xea\x8a\xd1\xbf\x7d\xca\xe8\x76\x0b\x0e\x6b\xcc\xfe\x36\xd7\x5f\xd9\x6c\x8e\x3d\xfc\x9d\xed\x63\xfb\xb6\x5b\xde\x95\xf0\xef\xac\x42\xf7\x80\xe9\x15\xf3\x0d\xae\x44\x60\x11\x4b\x84\x6f\x75\x55\x59\xab\x2b\xdf\xe4\xaa\x1a\xdc\x30\x3f\x33\xb1\x7a\xca\xca\x9b\x2a\x6d\xa3\x3d\xde\xa7\xe7\x91\xd6\x77\xcd\xdb\x24\x5d\x5b\x2c\x7c\x8c\xe4\x60\x6b\xe5\xc0\xb0\x56\x0e\x0c\xfd\xe9\xa7\x6e\x42\xab\x1d\x0a\x89\x63\x6f\xc1\x1f\xa3\x92\x9d\xb6\x62\x87\x50\x5e\x78\x7e\x49\x31\x27\xe5\x90\x7d\xae\x35\xa0\xcc\x93\x05\x2e\x3b\x2e\x12\xe6\x9e\x5a\x84\x93\x28\x06\x22\x26\xd2\xf6\x78\x62\x33\x51\x09\xc5\x8b\xae\x71\xa2\x1c\x62\x8f\xff\x08\x9d\xd6\x0d\xcc\x8e\x00\x56\xf8\x9b\xa8\x43\x98\x3a\x2d\xdd\x80\x67\x77\xd3\x1f\xcc\x73\xfd\x9b\xa7\xb7\x03\x29\x34\xe1\x34\x30\xb8\x90\x8f\xad\xfd\x4e\xe1\x86\x84\xb4\x31\xd0\xda\x4d\x8f\x7e\x57\xce\xb0\x9a\x59\xd3\x3d\xae\xc6\x09\xb8\xcf\xbb\xbb\x4b\xf5\x56\xee\x81\x89\x26\x08\x4a\xb3\xe2\x0b\x49\x0c\x34\xb3\x85\x25\xf9\xe9\x8b\xf1\x78\x81\x5e\xb0\x65\xb2\x20\xc4\xe6\x0b\x5b\x5f\x2a\x94\x75\xb0\x0c\x89\x4e\x67\x26\xb8\x18\x1f\x23\xf0\xeb\xed\x27\x68\x01\xef\x9b\xc4\x5f\xd8\x36\x58\xd8\xde\x7d\xfe\x12\x97\xbd\x35\x68\x55\x20\x99\xa1\x65\xe8\xf8\xcf\x09\x39\x0d\x98\x4e\x0e\xce\x32\xf5\xf2\xaf\xb4\x33\xcc\xfb\xdd\x41\x9e\x14\x58\x6b\xaa\xae\x49\xc0\x50\x5a\xbd\xca\xdb\x11\xe3\xa3\x35\x5a\x77\x6f\x80\x6e\x91\xf2\x05\xda\x4b\x4c\x8a\xd9\xed\x9c\xac\x67\xb7\x73\x7b\x5c\x56\x71\x7c\xb8\x81\xa6\x86\x77\x4c\x28\xfd\x87\xd3\xda\xc3\xe8\x5c\x63\x74\xf1\x87\xe3\xa9\x38\x3a\xce\xc0\xe7\xeb\xf1\x8b\xfa\x07\x01\x54\x1a\x9f\xd5\x47\xc7\x3e\x6e\xaf\x15\x6e\x37\x96\xd4\x4d\xc2\x43\x4d\x9a\x70\xb7\x26\x14\x33\xf0\xc6\x3a\x3b\xee\x5a\x17\xf4\x2c\x4f\xb5\x2c\x58\xee\xea\x83\xbf\x97\xfc\x58\x79\xfa\x7f\x83\xec\xc4\xb1\xb2\x32\x0d\x6c\x24\x3f\x5a\x1f\x67\x71\x9c\xd0\x41\x61\x23\x07\x0f\x65\x60\x60\x1d\xee\x0e\x20\x5d\xbd\x75\x7e\xcd\x8a\x57\x50\x3c\xc2\xdc\x78\xe7\xc2\xaa\x34\x37\xde\xc9\x80\xb0\x1d\x6c\x05\x88\x1e\xdb\xaf\x5f\x07\x28\xf4\x87\x7d\xf8\x77\x6e\x03\x70\xdb\x65\xfe\x4a\x72\xaf\x08\x9b\xe2\x95\xbe\x47\x9d\xcd\xb1\x24\x31\x69\x01\x4f\x2a\x3a\x99\x7c\x6c\xb9\x71\xd7\x36\x9b\x63\x20\x73\xad\xc5\xdb\xc2\x78\x68\xab\xc8\x04\xe7\xc4\xfa\xf3\xae\x7e\xc8\xc1\x6b\x27\x27\x10\xce\xa3\x26\xad\xfc\x81\x50\x7e\x4e\x21\xc5\x82\x93\xed\x36\x61\xe0\x6a\x98\x4d\x93\x32\xd5\x2d\x9b\xd8\x11\xb2\x54\x99\xaa\x8e\x59\xcd\x04\x8e\x50\xb6\x90\x04\x80\x3e\xec\x8a\xa2\x54\xcf\xd3\x64\x41\x0e\x27\xb8\x4c\xc3\xe1\x99\xfa\x50\x56\xa6\x76\x44\x36\x8c\x85\x1a\x83\xe9\x3f\xce\x2d\x87\x63\x87\xd2\xeb\x83\x1c\x99\x73\xb0\xa6\xe9\xff\x5e\xab\xc6\x55\xa9\xce\xe0\xd1\xf9\xe5\x2e\xb1\x8e\x60\x90\x09\x43\x84\x19\xc9\x4d\x43\xc6\x35\xee\x0f\x0c\xce\xa1\x0a\xc6\x98\x54\x36\xc3\xac\x76\xac\xa2\x55\x41\xb9\x4d\x2a\x1c\x41\x53\x91\xdc\x91\x1c\xa9\x14\xe0\x1d\x0c\x40\x92\x9b\xc3\xb2\x0f\xba\x0f\x07\xfa\x97\x08\x8d\x0f\xe8\x20\xef\x90\x7b\x73\xa7\x87\x06\x72\x0c\xbf\xfb\x6a\xa0\x9d\xde\xdf\x42\xc7\xe1\x93\xd7\x6f\xd7\xd5\x63\xcc\xc3\x49\xe8\xcc\x63\xa7\xba\x77\x49\x8b\xbb\x79\x24\xfb\xd9\xaf\xc7\x6c\xa7\xc1\x0a\xf4\x47\x28\x29\x27\x4b\x33\x7e\xa5\xe1\x26\xcc\xa4\xc0\x05\xe8\xc0\x74\x74\x1c\xac\x95\x3b\xc3\x33\x87\x22\x5e\x8a\xdb\x50\x7d\x51\x36\x65\x0f\xf7\xbb\xae\xb3\x3c\x7b\x52\x25\x35\x6b\xcd\x01\x3c\xef\x60\x4c\xb9\xc7\x8c\xe3\xdb\x84\xe1\x08\x06\x11\xe1\x1a\x61\x08\x38\xe8\x7c\x8a\x38\x8e\xe8\x12\x1c\x55\x5b\xb5\xa2\x0a\x43\x41\xfd\xea\x00\x15\x52\xe9\x10\x13\x36\xc2\xd5\x23\x55\xea\x30\x54\xc2\x5e\x81\xb0\xa9\xec\x5a\x26\x7a\xd6\xb8\x83\x77\x96\x39\xc2\x87\x9e\x3b\xc2\xd7\x7d\x30\x66\xae\x80\xa9\xa3\xc3\x41\xb5\x57\xe5\x5a\x3a\xc9\xd6\xaa\x0b\xdc\x36\x64\x35\x5b\x75\xc9\x99\xc2\x50\xac\x9c\xb8\x6f\x70\x61\x02\xb7\x25\x12\x63\x27\x35\x59\xe9\x60\x24\xc6\x1a\xcb\xdc\x7d\xf4\xee\x88\xe3\x38\x59\x28\x38\x7d\xb0\x90\xb8\xb9\xa3\x9e\x7a\x7e\xc5\x20\x6f\xc0\xb1\x84\x9b\x80\x91\xe5\x20\x69\xbb\xc1\x92\xdf\x20\xf4\x21\x6f\x40\xb8\x21\x3e\x03\xb3\x88\xe3\x43\xfa\xa0\x23\x1f\xdc\x86\x3a\xb3\x9f\x78\x79\x1b\x32\x41\x0b\x5c\x76\xeb\x1c\xaa\xb2\xe7\xfb\x07\x57\xdb\x6d\xb3\xdd\xb6\xdb\x6d\x39\x5d\x7a\x9c\xb4\xdc\x0b\x4b\x8f\x7b\x66\x41\x10\xd1\xf7\x21\x4a\x93\x08\x4d\xcc\x26\xf3\xed\x36\x7a\x16\xe1\x86\x88\x99\xf0\x54\x69\x20\x08\x82\x93\xaa\xf7\xad\x5c\x02\x0f\xc3\xe0\xe1\xe7\x8b\xd6\x58\x40\xe1\x2d\xb5\x1f\xed\x75\x9a\x94\x09\xc5\xd1\x4f\xb2\x87\x92\xb5\x85\x8c\x23\x63\x30\x03\xa2\xd3\x01\x21\x5e\xf5\x18\x97\xbb\x8f\x91\x6d\x77\x08\x65\xea\xca\x2d\x77\xe2\x0f\xdd\x89\x97\x42\xd0\xf5\x06\xba\xf1\xd3\x97\xf7\xbe\xdc\x4e\x54\xa3\x68\x9c\x23\xdd\xee\xab\xe4\xbe\xad\xcb\x2c\xdf\x81\x87\x9e\x4e\xc9\xbd\xa5\x4c\x6f\xe5\x0c\xbb\xfe\x31\xe3\x02\xf5\x18\xf5\x3a\x8a\x87\xae\x75\x92\x2a\x00\x5c\x6f\xfe\x61\xf7\x04\xfa\x9a\x60\xbf\x19\x91\x6d\xf3\xce\x33\x5e\x8a\x63\x67\xbd\x34\x39\xd0\x49\x62\xbb\x0d\x3e\x28\x0e\xc3\x84\x90\x08\x63\x92\xe0\x3c\x48\x50\x06\x95\x95\x1b\x43\xfe\xc0\x18\xaa\xc1\x31\x30\x02\x91\xce\xb4\x63\xd6\x87\x06\xf2\xd6\x41\xfd\xc0\x89\x35\x47\xbc\xbb\xbb\x99\xf6\x90\x40\x08\xe1\xe0\xee\x55\xc7\x65\x96\x2f\x07\xbe\xd6\xda\x6c\x7e\xa0\x7c\x31\x03\x2d\x6a\xa4\xbd\x0e\x02\x59\x7a\x14\xb7\xb8\x9e\x03\x70\x4f\xea\x21\x48\x45\xee\x77\xc6\x05\xaf\x86\x99\x03\x04\xde\x78\x5c\xa1\x72\x96\x34\x40\xdc\x21\x39\x85\x73\xd2\xa8\x70\x90\xd8\x78\x8c\x6e\x52\x5d\xf9\xbe\x96\x66\x4d\x50\xd0\x11\x54\x3b\xe7\x79\xfd\x33\x0e\x3c\xa3\x5f\x68\x47\xec\xe0\x66\x7d\xbf\x1b\x76\x3f\x08\x78\xd7\xf5\x7a\xc7\xf1\xba\x67\x75\xe3\xac\x4c\xc0\x0b\x86\x44\x57\xaf\xf2\xb2\xbc\xc8\x17\x5f\x9d\xbb\x8b\xed\x36\x19\xcc\x00\xc1\x04\xc4\x8e\xa6\x4b\x56\x82\x1b\xbf\x34\x6f\x6e\xb9\x44\x60\xeb\x5c\x45\x59\x90\x9b\xcd\x59\x60\x4a\x3a\x6c\x29\xf1\x18\x28\x6f\x2c\x2a\xbe\x64\x97\x6d\xad\x94\x32\x64\xf7\xd9\xf2\x16\x9e\x97\x50\x57\x4d\x01\xfb\x02\x65\xdf\xac\x94\xe0\xbf\xd0\x6f\xf2\x73\x0e\xbe\xc8\xf2\xb2\x74\x9f\xf2\xb2\x24\x34\x05\xdd\x8c\x33\x1d\x1f\x3a\xb5\x46\x63\xe9\x22\x6f\x04\xf4\x31\xdf\x04\xee\xe6\x71\x45\xee\xd7\xec\x86\xf1\x21\x03\x34\xe8\xac\x92\x40\x73\xac\xfa\xaf\xde\x96\x4b\x77\xbf\x41\x7c\xd5\x10\x3c\x34\x53\x5a\x6a\x4d\x77\xb8\xf2\x9b\x31\x61\x7a\xad\xbb\x8f\x43\xe7\x05\xc4\xd3\xc9\xba\xdd\x50\xe3\x09\x5c\xd7\xa8\xc2\xd9\x5e\xd0\x51\x6e\xef\xdb\x6c\xbc\x5c\xe5\x07\x05\x41\x40\x10\x3a\x3f\x60\xc0\x6f\x40\xc8\xe6\xd9\x1c\x61\x88\xf2\xc8\x6c\x38\x18\x81\x40\xad\x53\x53\x36\xb8\x5a\x2e\xb3\x21\x61\x52\xed\x5f\xbe\x5a\x03\x1e\x08\x16\xe5\xd7\xa5\x02\xcb\x54\xb2\x4a\x15\x3d\x2e\xa9\xf0\xb1\xf6\x78\xa6\x7b\xb0\xc3\x7a\x9e\xb2\xa1\xeb\x18\x90\xea\xa8\xb6\x74\x54\xae\x0a\xd4\xfe\xf5\xfc\x0d\x84\x56\x49\x26\x18\xe2\xa8\x80\xad\xd1\x6e\x87\x73\x72\xcf\x40\xa9\x0f\x02\x3c\x1c\x1e\x7b\xb1\xf4\x1a\x3b\xe1\xcf\x0f\xfb\x7e\xeb\x8d\x54\x23\x97\x0d\xe7\x2a\x56\x76\x95\xc2\xc6\x48\x72\xa4\xd9\x84\xd9\x3c\x88\x53\xad\x3a\x2e\x67\xb4\xd5\x41\x4a\xb5\xb8\x6d\x93\xdf\x96\x55\x5e\x64\x60\x5f\x29\xd2\xf3\xcb\x96\x15\x7f\xa2\xb7\x98\x15\xf2\x8d\x15\x18\x7c\x8a\x7f\x54\x99\x0b\x2a\x72\x56\xca\x0f\x35\x6d\xda\x52\x60\x88\xed\xf0\xae\xc8\x80\x83\x94\xb9\x4b\x79\xc8\x65\x06\x78\xc0\x82\xad\xe9\xa9\xc8\xd7\x9b\xec\xb5\xc4\xd7\xbc\xba\x4e\x10\x56\x7e\x5a\xf3\x59\xe4\x86\x7f\x74\xcd\xc4\xea\x08\xd4\x41\xa3\xf9\xd4\xdd\x15\x98\x8a\x10\xb8\x75\xdd\xed\x50\x1c\x37\x54\x9c\xb1\x35\xad\x5a\x91\x3c\x20\x9f\x98\xbc\xa0\x2e\x8a\x15\x95\xb3\xcf\x49\x22\x48\x3b\xa3\x40\x44\xc2\x98\x51\x2a\x07\x4b\xb8\x04\x74\x63\x9e\xb2\x02\xeb\x60\x15\x7f\xf4\x93\xf5\x10\x31\x57\xae\xf2\xe2\x38\xe1\x5a\x7f\x55\xa7\xa8\x37\x84\x73\x7b\x89\x28\xb4\x0b\x15\xdb\xd0\x41\x6b\x03\x29\xee\xf0\xff\x98\x84\xa1\x04\x8c\x2f\xef\x38\xee\xc5\x9b\x03\x25\xc8\x85\x53\xfd\xd4\xd6\x22\x66\x03\xd0\x03\x27\x40\x95\xe9\xc9\xd2\x73\x6a\x72\xad\x35\x3c\xfd\x88\x02\xe8\x5e\xc7\xf7\xd6\xbb\x74\x43\x8e\x71\x41\x9e\xe3\x35\xf1\x9c\xe7\x7a\xfb\xf0\xb6\xa3\x26\xa2\x38\x84\xde\x2d\xdc\x5a\xfb\xdd\x14\x78\xbd\xd3\xfe\xc2\x4d\x10\x5f\xe7\x24\x57\xaf\x91\x7f\xbb\x4e\xc9\x15\xbe\x52\xd7\xcb\xf4\x89\x17\x7e\x41\x53\xb6\xf6\x0b\x0f\x0e\x5e\x11\x8a\x2f\x77\xbe\x77\x2d\x3f\x16\xa9\xe8\x4c\x67\x30\xbd\x71\xcc\x09\x21\x1f\x3a\x93\x6e\x91\x02\x21\x8b\x69\x08\x72\x44\x7a\xae\xf8\x50\x42\x36\xd3\x1b\x10\x3d\xe9\x93\x21\xb9\x2d\xfb\xad\x98\xca\x8d\x5c\x71\xd8\xd3\x6a\xbc\xa7\x41\x66\x94\x7d\x4a\x84\xd1\x01\xb1\x4d\x40\x28\x4c\x42\x38\xd4\xcc\x51\x76\xad\x5c\x3c\xe0\x01\x6f\x69\x2a\x98\xee\x0e\xed\xe0\x37\x93\xc3\x58\x4f\x93\x9a\xe8\xe9\xc2\x66\xda\x6c\xdb\xb5\x24\x79\xfb\xbe\x9b\xf8\xb4\x0b\xeb\x72\x85\x2a\xfb\x0e\xbe\x31\x83\x58\x3f\xe4\x22\xe1\xc8\xd0\xab\x7e\xd7\x99\x96\x1e\xe1\x81\x31\x74\x06\x61\xb3\xaa\x61\xa0\x1d\xd6\xd7\xe7\xd9\x28\x1a\x27\x54\xc3\x80\xed\x36\x1a\xb5\xfc\x2b\xaf\xae\xed\x5d\x7a\x84\x90\xc4\x1a\xd5\x21\x21\x6b\x53\xc7\xc3\x83\xde\x61\xaa\x26\x49\x76\xe6\x46\xcd\x9a\xdd\x2b\xd7\x21\xdd\x4c\xc1\x79\x98\xca\x94\x25\xb5\xf1\x8c\xc5\x89\x40\xd8\x90\x7d\xdb\xad\x8b\x5c\x4f\x6a\xdf\x1f\x96\x7c\x37\x85\xd5\x26\x84\x50\x26\x28\x88\xf1\x8c\xee\xa9\xdd\x18\x72\xdb\x99\x67\x39\x68\xbd\x37\xf0\xcb\x84\x7a\x85\x6e\x8c\xf7\x08\xbb\xbb\x56\x4a\x24\xaa\xb2\x43\xc4\x12\xfd\x69\x03\x4c\x95\x7c\x6d\x2f\x9a\x45\xcd\x2e\x5c\x48\xc7\x69\x9e\x3a\xe0\x1b\xc7\xa5\x44\xec\xe0\xde\x82\x16\x11\xa6\x28\x33\xab\xfe\x12\x53\xbf\xc7\xa7\xfb\x1a\x57\xaf\x05\xf6\xfb\x61\xea\x38\x09\xeb\xf8\xd4\x95\xaa\x84\x1d\x04\x3c\xad\x6d\xeb\x68\xe7\xd0\xb0\x59\x35\x27\x42\xfe\x8c\x37\x73\xc2\xe1\xa1\x98\x93\x1a\xc6\x59\xc1\xfc\xe9\x7b\x7d\xbf\xff\xae\xe9\x97\xde\xe5\x5d\xb7\xd9\x9a\x98\xd2\x07\x10\x4a\x24\x9c\x9e\x1a\x4e\xb8\x37\x49\x59\xa4\x68\x46\x35\x5f\x78\x72\xd8\x37\x1b\xd6\xc7\xb9\x72\x51\x36\xec\xec\x78\x71\x03\xb9\x8b\x1b\x48\x7e\x8f\x24\xad\x22\x54\x68\x34\x31\xae\xe7\x98\x4d\xbf\x26\xc6\x58\x31\xab\x92\x06\x1d\x0c\x2e\x27\x99\x78\xc0\xf0\x6b\xff\xfa\x69\xe8\xa4\xdb\xc0\x83\x07\x39\xa9\xa6\xf2\x14\x27\x35\xca\x6a\x6c\xe0\xd6\x21\x21\xab\xed\x36\xc9\xe1\x10\x9c\x4a\xa2\x25\x24\xf0\x5e\x9a\x43\xd8\x8c\x16\x86\xd6\x5b\xe4\x9c\x57\x62\x64\x2f\x1d\x72\x31\x6a\xf2\x35\x35\x39\xd3\x08\xa1\x2c\x57\xb0\x89\xed\x3b\xa6\x10\xf8\x23\xab\xa6\xd7\x89\xc0\x39\xca\x0c\x6c\xb5\x2f\x45\x1c\x9f\xc2\x9b\xb7\xb0\x1f\x3a\x62\x78\xed\xfa\xc1\x2e\x27\x93\x95\xc4\xf1\x21\xdd\x6e\x99\xaa\xc2\xf2\xa1\xa3\xde\x49\x58\xac\x72\xc6\x8d\xa3\x72\xe5\x6e\x14\xfe\x2b\x9d\xb3\x60\x47\xea\x88\xcd\x06\xff\xfa\x58\x23\x59\x62\x6e\x7d\x90\x99\x65\x7f\x5a\x93\x95\xa4\x88\x09\x59\x4d\x3f\x29\x74\x58\x61\x03\x81\x60\x1c\x53\x9a\xb9\xc3\xd5\xbf\xe2\xfe\x9a\xc8\xed\x52\xe3\x06\xed\x20\x62\xa8\xec\xe2\xd9\x03\xde\xd1\xb9\x75\x94\x74\x6e\x94\xa5\x3c\x63\x13\x12\xfa\x3d\x83\xa1\xd2\x64\x89\x8d\xf3\xaa\x73\x50\x84\xfa\xc4\xbf\x28\x0e\x4a\x6b\xb1\x9f\xb3\xe6\xa7\x86\xf1\x4b\xc5\x2c\x2b\xae\x86\x10\xf2\xb1\xf7\xf5\x8b\xe5\xb7\x3c\x24\x6b\x72\x71\x26\xf6\x50\x05\x03\xaa\xdd\x90\x7d\xd8\xe9\x8d\x3e\x24\xdb\xed\x44\x2d\xa1\x3e\x33\xa6\xaf\x35\x5d\xe7\x8c\x33\x7e\xe9\xa5\x00\x08\x73\xf1\x72\xb9\x19\x2d\x05\x83\x2e\xb8\xaa\xef\xba\x66\xb4\x9f\x86\x54\x05\x88\xd7\xb0\x0d\x08\xa2\x66\xc6\xc2\x82\x3a\x80\xaa\xe2\x07\x0e\xa1\x44\x75\xbb\xf9\x62\x75\xc2\x45\x7d\x9b\x50\x09\x1f\x04\xb6\x8a\x93\xe7\xca\x5f\x52\x5b\x5a\xef\x44\x49\xb7\x67\xbd\x1c\xbd\x8b\xbd\x83\x89\xb1\x43\x76\xb3\x01\x21\x29\xfd\xf9\xc0\x37\x89\xdf\x6f\x4c\x51\x67\xba\xfa\xfa\x40\xe7\x0d\xa0\xf1\x0f\xf9\xed\x05\x3d\x5b\x51\x9e\x5f\x94\x0f\x98\x16\x91\xbd\xbb\xf0\x60\xcf\xbe\x91\x24\x8e\xa4\x51\x91\x21\xdb\x1c\xe8\x9a\x26\x5d\xec\xa1\x61\x82\xe2\xc1\x5f\x0a\x8b\xb6\x40\x21\xd2\x8c\x91\x07\x74\x91\x65\x72\xeb\x69\xb7\xf4\x46\x16\x93\x44\xc4\x9e\x0d\x3f\x4d\xce\xb5\xce\x79\x95\x2c\x11\xa6\xee\xc4\x5c\x33\x23\x09\x78\x29\x12\x86\x55\x9b\x03\x9f\x74\xd9\x3e\xb1\x27\xb4\x2b\x4c\xd7\x7a\x50\xae\xf2\x1d\x7b\xf6\xdd\x55\xbb\xbd\xd4\x5b\x09\xed\x37\x67\x90\x13\x09\x26\x20\x58\x50\x43\x4d\xd9\x0c\x5f\x60\x2a\xbd\x39\x1a\xdc\x14\xc5\xcb\xbd\x0a\x13\xe1\xf9\x60\x21\xb5\x31\x00\x76\x94\xed\x67\x31\x3d\x05\x05\x7b\xed\xcd\x27\xe8\x89\xa9\x1f\xef\x3d\x33\x5d\xff\x5d\x7e\xf1\xde\x44\x75\x8e\xca\xd1\x51\x70\x12\x20\x32\x76\xa7\x36\x7f\x85\xf6\xb8\x8e\x03\x1c\x23\xa9\xa3\x2e\x1f\xe0\xbb\x44\x1d\xd8\x81\xbb\x47\x73\x16\x26\x67\xef\x5e\xfd\xd5\xd3\x47\xa4\x10\xf1\xbd\xd2\x4c\xf3\xc9\x45\x90\x0f\x66\x7c\x97\x99\x6f\x8e\x32\xaa\x69\xde\x54\x3c\xe3\x8a\x2b\xfc\x42\x40\x36\x78\x1e\x8d\x9d\x30\x60\x1c\x1d\x45\xf8\xb3\x8e\x66\xf4\x71\x0f\x9a\xf2\x7a\xc8\x0a\xf2\xd9\xb8\xf1\x57\x6c\x81\x85\xda\x7d\x83\x25\x03\x99\x82\x34\x8f\x7a\x22\xb3\x39\xee\xe3\x62\x30\xda\xd4\xb8\x18\xe1\xa5\x8e\x25\x35\x24\xf9\x8a\xe3\x41\x35\x47\x8f\x48\xfa\x6b\xd5\x2a\x01\xd8\x26\x6f\x1a\x50\xd1\x83\x93\x59\x8f\xdc\xa5\x61\x03\xf6\xbf\x4b\x56\x37\x62\x64\x50\xdc\x48\x54\x90\x6a\x54\x86\x3d\xba\x22\x42\x3b\xed\x9b\xca\xd7\x6d\xa6\xd3\x21\xcc\x77\x78\x0c\xdc\xb6\x08\x80\x08\xdf\x6e\x13\x88\xaf\x71\x6d\x98\xad\xc1\xaf\x86\x15\x33\x2c\x78\x8d\xee\x15\x0b\xb5\xdb\x19\x45\xd0\xec\xb1\xd1\xbf\xc9\x19\x84\xaf\xab\xdc\x00\x46\xdf\x69\xf8\xf8\x5d\x36\xfa\x5c\xd2\xbc\xa1\xa3\x16\x82\x0c\xd0\xd1\x77\x9c\x5e\x7f\x37\xaa\x36\x12\x89\x56\x35\x06\x8a\x4a\xfb\x2e\xf0\x27\xc0\x10\x99\x17\x14\xe8\x4e\x5a\xc8\x29\x74\xc2\xc5\x14\x26\x68\x98\x44\x30\xe8\x60\x58\x17\xf3\x20\x4f\xc1\xcf\xa5\x4f\x53\x09\x8f\x3b\xcb\xfb\x61\x17\xb0\x95\x4f\x75\x0d\xaf\x1e\x0b\x0a\x00\x37\xad\x46\xd6\xfa\xc4\x90\x00\x9e\x2f\x1d\x6f\x3e\x0e\x7a\xd5\x0e\xa0\x0c\xee\x7b\x4a\x7c\xc0\x09\xe2\xb0\x74\xe1\x91\xd2\x6a\xed\xa1\x70\x5f\x73\xe7\x57\x7f\xec\xf7\xb2\xa8\xdb\x36\x00\xf1\xed\x42\x99\x90\xa7\xb0\xc7\x3a\xb7\xf0\x66\xf0\x1d\xc2\xc5\xea\xd5\xf4\xf5\x91\x1a\x8f\x7c\xcb\xc7\x2a\x68\xf6\xb1\x1f\xe7\xdf\xda\xc1\xd4\x81\x7e\x12\x3e\x6c\x21\x35\x69\xc9\xfb\xa4\x06\xca\x62\x6d\xfd\x28\xec\xe3\x59\x14\x0b\xf0\x51\x22\x7a\x86\x70\x75\xd0\xc6\x31\x84\x9c\x6c\xc1\xd0\xe8\xd7\xa4\x05\xd1\x83\xac\x9e\xd4\x3b\x75\x7d\x63\x0a\xd8\xdb\xd3\x59\x3e\xf7\xd7\x9b\xa3\x7b\x3a\x3d\x4d\x4a\x6c\xfd\x58\x03\x23\x76\x9d\x94\x12\xc5\x1d\xba\xb7\x21\x6a\x93\x3a\x52\xd3\x23\x62\x8f\x8e\x91\x26\x36\x8f\x5f\x18\xf2\xb2\x86\x80\xaf\xe0\xf9\xdc\xda\x8e\xef\xbc\xc8\x02\x28\xeb\x06\x63\xed\x34\x1a\x06\x94\xbc\xdf\xc1\xfd\xb8\xd5\xd6\x71\xad\x57\xc8\x9b\xfc\x0a\x74\xc3\x72\x39\x1f\x74\xc6\xe7\x46\x2f\xe4\x45\xfd\x83\xf0\x03\x4f\xb3\x99\x98\xd5\xf3\x39\xc9\x67\xf5\xf8\xd8\xf6\x8f\x79\xfd\x93\x20\x2a\x53\x73\xb2\xc3\xed\xb4\x4f\x4f\x18\xe3\x82\x54\xdf\x39\xef\x3b\x20\xaf\x6d\x91\x1d\xda\x25\x25\x6e\xb4\xaf\x5e\x94\xbd\xf6\xdf\x76\x4e\xa1\xf4\xfc\x1c\xce\xeb\xf9\x39\xa1\xbe\x90\xf5\x75\x87\x96\x31\x05\x40\x4c\xa6\xb8\x99\x1a\x0b\xa4\xfd\xcc\xec\xdd\x51\x54\x72\xc1\x98\x06\xd7\xf2\x5d\xff\x86\x7b\x24\xc6\x49\x57\x64\xfc\x11\xa2\xb5\xa1\xfe\x05\x71\x30\x39\x00\x85\x3e\xaa\xbb\xa7\x05\x86\xb4\x61\xf8\xd5\x89\xc8\x89\xa6\xce\xbe\x1f\x53\xd0\xd7\x44\x86\x76\xcb\xb4\x9e\x2a\xd8\x20\x75\x90\x83\xd1\x39\x01\x13\x2a\x7d\x47\xa4\x01\xfa\x35\x13\xab\x51\xce\x47\xb9\x6c\x21\x42\x00\x55\x3e\xaa\x7b\xb4\xc1\x8d\xd7\x11\x80\xb3\x65\x72\xd8\xed\x24\xb2\x82\xd2\xba\x2b\xc8\xb0\xa6\x52\xf9\x82\x3e\xd2\x13\xe4\x02\xf1\x76\xd8\x35\xfe\x83\xbb\x3b\x1f\x8f\xd1\x27\x1d\x01\xc2\x80\xcd\x19\x9f\xa3\x07\xe8\xba\x6b\x70\xf2\x37\x48\xc8\x9d\xaa\x4f\xce\xb3\x03\x4c\x85\x66\x96\x17\xf0\x0c\x9c\xf7\x3e\xc5\xea\xde\xbd\xc0\xa9\xb9\x17\xc0\x1f\x7d\xdc\xa8\xef\x7d\xc8\x97\x20\x19\xa2\xe3\x7c\x00\xe2\xec\x6e\xaf\xc3\x0a\xe5\xa9\xc5\x73\x32\xf1\x4d\x4e\x2b\x70\x8d\x0f\x8f\xe5\x6e\x7f\xc8\x4d\xc5\x2e\x39\xf3\x70\xca\xdb\xc7\xf7\xe3\x5d\xf2\x11\xf0\xaa\xdd\x89\x1f\x1f\xdf\x86\xfa\x7a\xf6\x09\xbb\xd1\xf6\xe4\xc7\xce\x41\x02\x57\x27\x70\x92\xee\xf6\xf1\x12\xaf\x60\x36\x7f\x7a\x60\x36\x0d\x17\x74\x98\xf4\x7c\x2f\x3c\x1f\xf4\xbd\xf0\x7c\x8e\xb6\x5b\xff\x15\x57\xde\xd7\xdf\x1b\xc8\xf9\x9b\xd6\x86\xe1\xea\xe1\xa5\x79\x44\x06\x13\x10\xe2\xc6\x75\x60\x47\x8e\xc2\x9f\x2e\x47\xe9\xe8\x89\xd4\x56\xea\x8a\x3b\x5c\x63\x57\xb6\x53\x6b\x59\x9d\x3e\x84\x56\xf8\x69\xa4\x2f\xac\x23\x7d\xa9\x01\x3d\xe6\x84\xce\x40\x18\x3b\x9f\xe3\xae\x24\x26\xc7\xd5\x63\x62\x98\xce\xbe\xfd\x5b\xe8\xc5\x5a\x5d\x21\x50\xff\x0a\xc1\x72\xdb\x8f\x6d\xd7\x55\xde\xac\xf6\x6d\x54\x5d\x1b\x82\x9b\x20\x7a\x3d\xfa\xa9\x73\x16\x80\x02\xf9\xf9\xff\xde\xe3\xfc\x93\x37\x2d\x7f\xf9\xfb\xa7\xe5\xcb\xe9\x5f\x3e\xfb\xda\x17\x4f\x9d\x9a\x9f\x61\x6a\x40\xe5\xdc\xce\x8e\xed\xd7\x5f\x95\xa5\x99\x24\x6e\x87\x2f\x9d\xb5\x2e\xea\x2e\x40\xd4\x7f\x74\x5c\x85\xf1\x23\xa9\x09\x38\xac\xfa\x6e\x94\xb4\x2d\xe1\x1e\x08\x57\x3f\x26\x21\x11\x28\x9c\x4e\x0a\x84\x00\x56\x62\xd6\x1d\x48\xdf\x76\x3f\x3f\x0c\x64\xfe\xf4\xe0\x1a\xe3\xea\xef\x5b\xe5\x09\xae\x1e\x5b\xe7\x07\x61\x43\xe8\x42\x72\x9f\x94\xb6\xea\x49\x69\xab\x7d\x52\xda\xca\x88\x77\xd6\xf9\xe6\x0d\x27\xec\x71\x58\xb3\x5f\xc6\xe3\xd1\x6f\xd3\x84\x91\x8b\xc4\xab\x19\x41\x5c\x75\x20\xe1\x7a\x62\xc1\x02\x0b\xcc\x34\x49\x77\x78\x6c\x84\x62\x0e\x68\x30\x0c\xf1\xc5\x8c\x8c\xea\x41\x11\x52\x1f\x80\xfc\xae\x13\xa0\xae\x87\xfa\x86\xa4\x14\x0f\x1f\x9a\x75\xbe\x19\xd1\x9b\x0d\x38\x08\xcc\x03\xb1\x44\x3e\x6a\xe8\xa2\xe2\x85\x95\x4a\x44\x48\xb2\x1e\xb2\x92\x3f\x29\x88\x82\xf9\xe3\xf8\xd5\x36\xf2\x08\x56\xf5\xf5\x17\xff\xdc\xc5\xaa\x86\x8c\x0a\x70\xef\x7f\xf4\x72\xa9\x90\x86\x32\x93\x5c\xba\xff\x2d\xd1\xcd\xbf\xef\x3b\x02\xdf\xb8\xf7\x07\xef\x21\x9e\xbc\xf7\x7f\xab\x04\x3e\x70\x64\xae\x76\x46\x4f\x2c\xaf\x75\xda\x06\x43\x4b\x1e\x12\xf2\xbf\x77\xe8\x89\x82\xfb\xdf\x72\x32\x7a\x7b\x16\xff\x37\x1c\x96\xc1\xd3\xc2\xb7\xdb\x5e\xeb\xff\x1b\xa9\x23\xf3\x27\xef\xc8\x50\x1a\x9e\x99\x6f\x3f\x21\x6a\x7e\xed\x21\x79\xc2\x11\xf1\x77\x2c\xef\xf2\x9c\xda\xf9\x5e\x8f\x41\x19\x94\xa0\xf9\x1d\x78\xf8\x00\x1d\x78\x16\xf1\xff\xde\x3b\x9e\x3b\x75\x24\x04\x25\x13\xcc\x69\x4f\x3b\xa7\x56\x67\xeb\x7e\x41\x67\x82\xce\x09\xc5\xf0\x30\x3e\x9e\x13\x81\x9f\x13\x42\x12\x41\xc7\xe4\x39\x8a\xe3\x4b\x9a\xa8\x9a\x18\x25\x51\xcb\x0b\xba\x84\x7b\x4b\x3b\x95\xd7\x8c\x17\xd5\xf5\x54\xfd\x18\xb4\x57\x51\xc2\xa8\xf2\xc4\x48\x49\x45\xd3\x0f\xad\x00\x1f\x19\x9f\x2e\x1a\x5a\x5f\xd1\x7a\xbb\xad\x68\xfa\x33\xbd\xf8\x13\x13\xdd\x4f\xb8\x09\xda\xb1\x6c\x6e\x43\xcb\x65\x1c\x0f\xf5\x40\x47\x48\x8b\xe3\x68\xa6\x65\x87\x3a\x65\x1e\x11\x42\xee\x77\x36\xfa\x9f\x42\x67\xfa\x23\xc2\xed\xf0\x80\x7e\x62\x5c\xfc\xeb\xab\x32\x5f\x6f\x68\x01\x4b\x35\xdc\x2a\x5b\x6f\xaa\x5a\x9c\x82\xcf\xc2\x66\x38\xcb\x07\xe5\x81\xf0\xd5\x2a\xe7\x9c\x7a\x0e\xef\x4a\x9a\xf4\x3d\x92\xd8\x14\x9f\xf0\xa0\xf8\x18\x29\x49\xfa\x82\x7a\x68\xef\x98\xfe\xde\xdb\xef\x4b\xeb\xb9\xcd\xd3\x84\x13\xf4\x05\x2c\x60\x32\x91\x2b\x4b\xe7\x28\x91\x3f\xe3\xe3\x39\x52\xef\x86\x2a\xd6\xa9\x66\x7f\xc8\xed\xa2\x14\xc6\x28\xde\x50\x5c\x50\xbc\xa6\xf8\x96\xe2\x2b\x8a\x2f\xed\x26\x6a\xe8\x34\xb9\xa5\x44\x4f\x64\xca\xe9\x8d\x38\x63\x8b\xaf\xf8\xca\xa5\x5d\xd1\xba\x61\x15\x6f\x52\x5e\x15\x34\x5d\x83\x3c\xf9\xd9\x7f\x26\xd3\x2c\xf9\xa5\x18\xa3\x5f\x52\x34\x0d\x9e\x7f\xf9\x97\xad\x7c\xfe\xdd\x33\x84\xc3\x53\x72\x45\x51\x1c\x47\x13\xb9\x90\x57\x74\x76\x3c\x8f\xe3\xe8\xd8\xbc\x3d\x9f\xc7\xb1\xec\x47\x43\xc5\xbb\xb5\x36\xde\x47\xb2\x9b\xfd\x39\xbd\xa5\xc9\x52\xb2\xd4\x59\x4e\xa7\xc9\x46\x1e\x89\x42\xcd\x67\x0e\x1f\xf0\x9a\x92\xa2\x5a\xc0\x79\xd6\x2e\x1c\xcf\xe8\x8d\xf8\x58\x15\x34\x89\x22\x84\x0b\x9a\x56\x6a\x7b\x26\x6b\x8a\xef\x17\xab\xbc\xce\x17\x82\xd6\xaf\x73\x91\x67\x87\x93\xdd\x9e\x56\xd7\x54\xc5\x5c\xdc\x50\x32\x1e\x6f\xe8\x3f\x3f\xdf\xa1\xac\xa5\xd3\x24\x59\xa9\xc6\xc3\xfd\x81\x52\xb9\xa1\x8e\xd3\x8a\x1b\x1f\x96\x4b\x3a\x5c\xef\x8a\x42\xd6\xe7\x12\x89\x09\x5d\x49\x32\x91\xc3\xb3\x6b\x44\x08\x61\x74\x30\x56\x1f\x4f\x6b\xfa\xb7\x96\xd5\xde\xfd\xc1\xa0\x9e\xde\x1b\xf3\x35\xf2\xa4\xcd\x11\x02\xff\x18\x50\x3e\x89\xae\x68\x2d\x6e\x22\x23\xe5\x38\x24\x24\xe1\x70\xaf\xdf\xf2\x4f\xfc\x7d\x55\x6d\xb6\x5b\xfd\xa2\xad\xc2\x90\xdf\x24\x57\x4b\x92\xc9\xc3\xd0\xd3\xf9\x83\xc4\x5d\x82\xe0\xab\xd1\x7c\x20\x35\xc5\x5a\x60\x3f\xe4\xdc\xcc\x3b\x37\x14\x4f\x90\xf2\xda\x7e\x41\xc9\x9f\xf1\xf9\x9e\x38\x17\x46\xa3\x02\xe8\x07\x77\x9e\xae\xe5\x79\xca\xd3\x4a\x5b\x90\x27\xb9\xaf\x87\xe0\x54\xb9\x74\xae\xe5\x72\x28\x1b\x5b\x26\xfb\x81\xe5\x80\x10\x4f\x7d\x48\xcf\xcf\x3f\x7f\xf9\xf4\xe1\xdd\xe9\xc9\xf9\xbb\x8f\xa7\x67\x5f\x7e\xfa\x70\xf2\xf1\xec\xe5\xd9\xbb\x4f\x1f\xcf\xcf\x91\x31\x4d\xb8\xa1\x23\xc6\x47\x8c\x3c\x5e\x04\x37\x89\xa7\x70\x1b\x61\xb0\xeb\x44\xac\x6b\xd3\x70\x23\xcf\xd8\x35\x4d\x6e\x28\x66\xb3\x1b\x3a\x47\x07\x4e\xdf\xff\x3e\x6f\xf2\x4d\x56\x53\xbc\xc8\x1b\x91\x5d\x50\x6c\xe2\xa7\x7c\xc4\x9e\x2a\x7b\x56\xe1\xbc\x2c\xb3\x37\xd8\x89\x54\xb2\xb7\xb8\xce\x17\x34\xfb\x11\x4b\x1e\x2d\xfb\x1b\xf6\x58\xb5\xec\x2f\x58\x2b\xd0\x67\x7f\xc5\xa0\x52\x9f\xfd\x11\x5b\x35\xfb\xec\x1d\xb6\xea\xf7\x59\x83\x2b\x9e\x5d\x53\xd0\xfd\x3e\xa1\xd8\x70\x57\x7f\x36\x8c\xd5\x7f\xe0\x75\xbe\xc9\x7e\x87\x61\x21\xb3\x73\x8a\x15\xe6\xcc\x28\xc4\x2f\x04\x75\xfa\x9a\x62\xad\x5f\x7f\x21\x9f\x8c\x76\xca\x47\x1c\x6a\xe3\x57\x58\xe9\xe8\xbf\xc1\x81\xe2\xfe\x5b\xac\xd5\xf9\x7f\xc4\x5a\xbd\xff\x6f\x38\xd4\xfa\xff\x0b\x76\xf6\x00\x7f\xc5\xc6\x46\xe0\x8f\xd8\xb7\x1c\x78\x87\x7d\x9b\x02\x49\x5d\x56\x9c\x5c\x53\xad\xb4\x7f\x42\x5d\xd0\x27\xf2\x67\x6c\x8d\x13\xfe\x03\x2b\x6b\x85\xdf\x61\x63\xbd\x70\x2e\x73\x1a\x8b\x06\xc9\x85\x8a\x44\x99\x5a\xa8\x3b\x42\xef\x78\xa9\xad\x97\x44\xbf\x82\x35\x51\x84\x67\x73\xff\x6b\x60\x72\xa1\x2f\x6a\xf4\x92\x67\x12\xd1\xa6\xbf\x82\x5d\x08\x3e\x3f\xa7\xcd\x07\xb0\xdb\x90\x60\x6e\x07\x8d\x0c\x21\xe7\x37\x79\x23\x7e\xac\x2a\xff\x7a\x14\x0e\x5a\x5f\x58\xad\x2c\x44\x06\x4e\x80\x32\x0f\x99\xaa\x9f\x54\xe7\x23\x22\x19\x54\x5a\x55\x1d\x88\x63\xf5\x9b\xe6\xeb\x62\xaa\x07\x3c\x9b\x4b\x46\x7f\x5f\xbb\x53\xfd\x9b\xbe\x2a\xd9\xe6\xa2\xca\xeb\xe2\xdf\x4f\xa1\x0d\xda\x4d\xd1\x57\x9e\x7d\xe0\xdb\xbf\x49\xbc\xf7\x60\x07\x4f\x6a\x20\xf6\xc4\xac\x9e\x5b\xe7\xdf\xb3\x7a\x6e\x06\xa4\x9d\xb3\xc8\x24\x72\xcf\xb2\x1a\x97\xd9\xe1\x31\xd6\x1f\xb3\xfb\x9d\x15\x11\xb8\xe0\x6f\xcc\x94\xc5\x0c\xbb\x67\x8e\x30\x4b\x4b\x72\x38\x71\x69\x3b\x7b\x51\xb1\x26\x14\xf3\x74\x41\x04\xe6\x69\xd1\x0b\x91\xc7\x53\x70\x3a\x8e\xb6\x5b\x2d\x5a\x53\x53\x67\xe1\x81\xcc\x76\xaf\x59\xe8\x0b\x58\x79\x08\xba\x54\x2b\x9f\xde\x21\xec\x1d\x02\x72\xa7\xb7\xeb\x8b\xaa\x8c\x63\xf5\x6b\xa9\xaf\xb3\xfc\x32\x8e\xf7\xb5\xd8\xcf\x8b\xef\x95\x96\x41\xa4\xf6\x5f\xb4\x43\x78\x5f\xe1\xc8\x6d\xd3\xc8\x14\x93\x58\x59\x76\xb7\x2b\x9c\x64\xcb\xe4\x38\x56\x2c\x95\x1c\x00\xc2\xff\x1a\x0b\xa7\x5c\xcf\x96\xc9\xf7\xf2\xeb\xa0\x5a\x3e\x68\x1b\xd9\x96\x42\x8d\xfc\xba\xe3\x00\x5a\x19\xa3\xb2\x65\xc2\xd3\x3a\xa9\xf7\x75\xbd\xc6\x91\x3e\x75\x51\x77\xc6\xd5\x28\xe4\x11\x7f\x0e\x1d\x52\xde\xc5\x3d\xc1\x18\x0a\x4c\xd5\x28\xe2\x69\x01\x7a\xa3\x03\x37\x5d\x10\xe4\x58\x85\x41\xd5\xa1\x33\xfc\xbb\x05\x9e\xf2\xa1\xc8\x3e\xe1\x68\xa7\xfd\x83\x60\x91\xc4\x6e\x20\x1e\x17\xf5\xae\xcd\x8a\x44\xe0\x28\x8f\x20\xe0\xa4\x6c\xae\x1a\xc6\xc6\x7a\x8a\x02\x4f\xa6\x1e\x9a\x32\x91\x10\xb5\x44\x87\x44\x11\xe6\x09\x4f\x1b\x32\x41\xbb\x64\xd6\xd5\xaf\x09\x00\x9c\x5a\xa0\x01\x30\x62\x76\x6a\xd4\xc0\x43\xf7\x43\xca\x84\xd2\x4c\x98\x0e\x90\x1b\x66\x1d\x76\x83\x96\x59\x83\xa4\x97\x69\xae\x7b\x5b\x67\xd3\x0f\xcd\xb3\x9b\x85\xa9\xe9\x5b\x66\x1b\xc4\x6c\xbf\x6e\xa7\xb3\x60\x54\xd7\xae\xc2\xbf\xa2\x32\x5a\x47\x33\x3e\x3f\xa8\x53\xb7\xdf\x88\xff\xb2\xdd\x82\x4b\x40\x83\xad\xe0\xfb\xe1\x04\x47\x2a\x22\x27\xe3\x23\x65\xa9\x78\x5d\x33\xa1\xbf\xed\x3f\x98\x75\xfa\x95\xde\xc2\xe5\x7e\x17\x78\x86\x77\xb5\x3c\x8e\x69\xe2\x2d\xbd\x84\x6e\x35\xa4\x81\x02\x97\xa4\x04\x71\x45\xda\x84\x27\xc7\x08\xe1\x1c\x9e\x7e\x8f\x10\x6e\xe0\xe9\x7b\xe4\x31\x43\x6d\xb8\x0a\xc1\x1e\xa6\x99\x45\x72\x74\xa7\x2f\xe5\x07\x65\x45\x42\x09\x62\x93\x1e\xe8\x38\x4c\xa8\xaf\x83\x23\xf6\xf0\xf0\xaf\x94\xbe\x8a\xdc\xb1\xa3\x7c\xb4\x28\x41\x13\xa8\x09\xec\xe1\x76\xc8\x86\x24\x56\xab\xd2\x6f\x8b\x7a\x95\x7f\x91\x44\x05\xe5\x0b\xd3\x02\x68\xca\xac\xf2\x86\x7f\x27\x46\x17\x94\xf2\x11\x53\x56\xe9\xac\xa1\xc5\xe8\x68\xd4\xb4\x1b\x5a\x27\x28\xc8\xa1\x84\x08\x56\x6c\x70\x28\x06\xc4\xed\x22\x34\x67\xb0\xd2\x12\x9a\x09\x8d\x10\x13\xe1\xae\xc1\x2d\x02\xb9\xa4\xe2\xb3\x59\x3b\xb0\xb5\x43\x4e\x72\xec\x7b\xa8\xd7\x34\xce\x27\xf0\xf2\xdf\x24\x72\x95\xd3\x92\x35\x82\xf2\x57\x25\x5b\x7c\x85\xeb\x9d\xde\x56\x79\xc8\x10\xd1\xc9\xcb\x86\x17\x02\x5c\xad\x4b\xe4\x5f\xd3\x46\xf2\xa3\x4a\xa2\x42\x99\x58\x51\xc9\x1b\xc0\xcd\xc3\xa8\xaa\xbd\x95\xc1\xe0\x9e\x2e\x1a\x5b\x53\xc7\x03\xba\xd7\xcb\x3f\xc4\xc9\x73\x9b\xf6\xde\x3b\xd5\x99\x46\x43\x14\xfb\x60\xfd\x18\x9b\x63\x23\x41\xbc\x7f\xc4\x14\x79\x85\x25\x62\xd2\x6d\x34\xc1\x9c\x4e\x07\x53\x95\xa9\x09\xf5\x14\x13\x84\x24\x5c\x70\x6e\x40\x33\xc2\x2c\x11\x26\x98\x63\x38\xfb\x46\x8b\xaf\xcb\x05\xfe\xbd\xde\xdf\x73\xa8\x6d\x08\xda\x52\xfd\x6d\x6a\x1e\x94\xf4\x4f\x77\xf5\xa5\x9a\x7e\xa5\xd3\xa4\x48\xf2\xc1\x3a\xd4\xb7\xa9\x79\x08\xea\x50\xa4\xbc\xae\x83\xde\xec\xab\x81\xde\x40\x79\x7a\xd3\x29\x4d\x6f\x84\x09\xf2\xc0\x45\xce\x38\xad\x89\x23\x04\x48\xad\xb4\x2c\xd4\x07\x34\xf5\x5e\x32\x2b\x3b\xb8\xa8\x8a\x5b\x1b\xb9\xd2\xdb\xd9\xbd\xc9\x0e\xd5\xd0\xd4\xed\x07\x64\xa7\x10\x05\xc2\xf6\x09\x41\x1c\x63\x55\xc5\x10\x12\x4a\x2b\x7b\x74\x76\xc8\xb6\x5c\x3d\xd6\xaa\x73\x35\xaf\xa6\x4c\x72\xea\xda\xa9\x8a\x4a\x50\x5d\x5a\x18\x9a\x58\x2d\x8e\x51\xc5\xed\x24\xeb\x88\xc2\xc3\x9f\xe8\xf5\xa8\x32\x83\x49\xee\xfd\x75\xcf\x0d\x99\x82\xfd\x95\x54\xcf\x90\x6a\xd7\x47\x3e\xc9\x14\x37\xe1\xe1\x2a\x59\xab\x5d\x81\xe9\x9a\x09\xa1\x33\x78\x13\x12\xec\xb1\xa1\x69\x31\x2e\xef\x92\x28\xd7\x79\x68\xaf\xb4\x9a\x99\xfd\x93\xba\x48\x22\xa1\xb3\xd0\xd0\x15\xb4\xdd\x1f\xc0\x8c\x9d\xd2\x92\x82\xbd\x88\xe8\x37\x41\x6f\x06\x1b\x70\xdd\x83\x08\x56\x61\xe7\x1a\x51\x57\xb7\x03\xc7\x39\xd8\x55\xa9\xce\x97\x0c\x2f\xd4\x9e\xa5\x7d\xa4\x94\xbe\x47\xd8\xcd\x0d\x88\x61\xcd\x69\xbb\xd9\x80\x7f\x9a\x7f\x34\x7c\x99\x45\x8b\x6a\x73\x1b\xe1\x68\xd1\x8a\x68\x8e\x05\x31\x24\xb1\xa7\xb0\x3e\xa3\xf3\x8c\x62\x4e\x0e\x0f\xc3\x19\x7f\x55\xad\xd7\x39\x2f\x6c\xdf\xdc\x3d\xec\xb2\xaa\x4f\xf2\xc5\x2a\x90\xd5\x73\xc2\xe3\xf8\xb1\x2a\x94\x42\x3e\x87\x58\xaf\x22\x50\x7f\x5c\xf8\xfa\x38\x51\x91\x8b\xfc\xc8\x4e\xdb\x51\x34\x06\x26\x43\x48\xe2\xf6\xa5\x10\x35\xbb\x68\x25\xb7\xe0\x02\x45\x49\x5c\xea\x7f\xd8\x39\x5e\xb8\xdc\x3d\xec\x3a\xc1\x58\x42\xfd\x7f\x87\xd0\xad\xfe\xff\x48\xe8\xe6\x84\x27\xcf\x25\x6d\x9b\xd4\x24\x47\x71\x5c\xfb\x24\x6c\xed\x48\xd8\x7a\xa7\xed\xfe\x87\xe7\x48\xfc\x9f\xa1\x5f\xcd\xcd\x62\x87\xb4\x33\x51\xba\x25\x59\xaa\xe0\x1d\x74\xd0\x4c\x4f\xe5\x42\x4c\xff\x1f\xa5\x4a\x0c\xe5\xd1\x45\xf3\xd4\x47\x26\xf2\x93\xc6\x23\x84\x9a\xa7\x80\x30\x31\xc4\x87\x47\x69\x28\x7a\x22\x88\xd4\xe2\x82\xb4\x68\x8f\xd0\x30\x0f\xb4\x38\x03\xca\x24\xb2\x10\x3c\x98\xa3\x7d\x70\x1c\x88\x16\xaf\x9a\x37\xf9\x57\x9a\x20\x1f\x67\x6a\x0f\xa9\xea\xb3\xc2\x55\x89\x43\x13\xae\xd4\xde\x29\x56\xfc\x08\x89\x6a\x21\x01\x84\x05\x7f\xe6\xe1\x44\x39\x6c\x0e\x01\x54\x54\xb0\x3a\xd2\x0a\x51\xca\x91\xa2\xea\x98\x89\xd1\xfe\x95\x6a\x27\x6d\xc6\x39\xc8\xc0\x75\x06\x0d\x4a\xee\x7a\x45\x49\xb8\x58\x69\x5e\x14\x20\xb8\x7d\xaf\x51\x5b\x62\x08\xa4\x7d\x6d\xa2\xed\xd6\xf8\x14\x95\x5f\xe5\x40\xba\xd7\x3d\x7a\x70\x0a\xbf\xe6\x35\xcd\x23\x14\x16\x48\x1b\x71\x5b\xd2\x74\x59\x71\x71\xca\xee\x28\x89\x8e\x9f\x6f\x44\x34\x98\xe7\xa2\xaa\x0b\x49\x3a\x4e\x86\x3f\x6f\xf2\xa2\x60\xfc\x72\xef\xf7\x75\x5e\x5f\x32\xbe\xbf\x78\xa5\x7d\xef\x44\xf9\x45\x53\x95\xad\xa0\x83\xf9\x66\x62\x1a\xd5\xec\x72\x25\xa2\x2c\x2a\xe9\x52\x44\x73\x12\x1d\xfd\xdb\xbf\xfd\xdb\xbf\x6d\x6e\x22\xed\x43\x42\x5f\x20\x6c\xf2\x4b\xfa\xd7\x4f\xcb\x65\x23\xc9\xc0\xbd\xab\xde\x2c\xea\xaa\x2c\xcf\xaa\xcd\xc1\x50\xa7\x44\xb5\x21\x7c\x1c\x6d\x6e\x7a\x7d\x09\x36\x4b\x4d\xf3\xa2\xe2\xa5\xc4\xe2\xbd\xf9\x85\x4d\x49\xec\x5e\xc7\xdd\x45\xdf\x6c\x28\x2f\x20\x38\x64\x12\x14\x44\x03\x87\x2b\xa4\xa0\x87\xb2\x4b\x5a\x42\x66\xf5\x4e\x88\xdb\x84\xfb\xce\xa0\xb7\xb5\x2c\xbd\x64\x3b\xa8\x8a\x7f\xe3\xc6\xec\xef\x75\x67\xb7\x38\x74\x78\x3c\x4a\xdb\x0c\x68\x5f\x4f\xf6\x4f\x95\x3d\x03\x9a\x7a\x0b\x20\xc4\x1e\x22\xd7\xf8\xd0\x7f\x64\x96\x15\x24\xda\x3f\xc7\x26\xe9\xff\x62\xef\xed\xb6\xdc\xc6\x91\xfc\xc1\x7b\x3d\x45\x8a\x3b\xcd\x21\x4a\x90\x2c\xd9\x5d\x3d\x3d\xca\x44\xea\xf8\xb3\xca\xd5\xfe\x6a\xdb\xf5\xd5\xb2\xc6\xc3\x94\xa0\x14\xdb\x14\xa1\x06\xa1\x4c\x67\x25\xb5\x67\xef\xf6\x62\xdf\x60\xaf\xf6\x59\xf6\x51\xfe\x4f\xb2\x07\x11\x00\x08\x90\x54\xda\xd5\x33\x7b\xce\x9e\xb3\x7f\x5f\x38\x45\x12\xdf\x1f\x81\x88\x40\xc4\x2f\x8e\xd2\x20\x7b\x0d\x2d\x6f\x6e\xbd\x2b\x59\xfe\x99\x2f\x0d\x03\x96\x78\xe4\xdc\xbb\x37\xe4\xac\x3f\x39\xc0\x27\x04\x88\x43\x4b\x96\xc4\xe3\x93\xfd\xf7\x5d\x2c\xb6\x4f\xf6\xe1\x6f\xa2\x59\x92\x3d\x00\x0d\x46\x53\xeb\xff\xd3\x21\xc1\x78\x82\x8a\x3f\x3c\xb5\x50\xe2\x1d\x09\x74\x99\xf3\x54\x3a\x62\x6f\xe4\x98\xe0\x1d\xea\x69\xd1\xf5\xc0\x1b\xb8\x20\xcd\xd1\x43\x02\x6b\x31\x27\x81\x79\x1a\xad\xc5\x72\x5f\x26\x84\x9a\xfd\x0e\xb0\xca\xee\x44\x36\xab\xe5\x61\x9e\xbf\x4d\x8b\x4b\x5e\x26\x5f\x2d\x59\x04\x44\xdb\xe6\xb1\xd2\x53\xc9\xd5\x7f\xdb\x19\x8e\x8c\xbf\x0b\xbb\xfc\xd1\x9e\xe5\x14\x3f\x38\x6b\xa9\xd4\x48\x32\x20\x21\x34\xde\xb6\x02\x79\xfe\xeb\x73\x8c\x38\x7b\x62\x9b\x7c\x82\x68\x69\xe0\x9b\x66\x14\x44\x58\xfe\x89\xd0\xbf\xf6\x2a\xfa\x57\x72\x80\x8b\x90\xf6\x09\xe6\xd7\xe4\x86\xc2\xca\x82\xc1\x50\xa0\x29\x90\xeb\xb4\xb1\x0c\x0a\x2c\x5f\x59\xe2\xae\xf0\xf9\xcc\xbb\x5f\x99\x66\x09\x27\xa4\xaa\x26\x3a\x1f\xd8\x55\x68\x8e\xed\x8e\x8e\x99\x06\xf8\x1d\x4b\x4f\xf0\x9b\xa1\xea\xff\x0a\x62\x2a\x76\xd3\x1a\xa3\xd9\x51\xe4\xa1\x88\x12\xad\xb2\x52\xb3\xc1\xab\xa8\x1d\x14\xb5\x5d\x65\x6a\xf3\x8d\x7c\x97\xbf\x9a\xfe\x03\x13\xca\xd3\xd5\x89\x58\x9f\xd4\x25\xd7\xd9\x6c\xc3\xf6\xaa\xd5\xae\xa4\xd9\x30\x57\x28\xa9\xaa\x3b\x1a\xfd\xfb\x5a\xfd\xab\xd8\x9f\x2c\xd3\xe2\xc3\xbf\xaa\x93\xe5\x5e\x9d\x40\x50\xe5\xb5\x14\xdb\x13\x8e\x23\x57\xa2\x31\x96\xd7\x23\xbd\x4a\x3a\x7a\x52\xfe\xab\x35\x17\xb7\xbc\xe3\xe1\xee\x55\x84\xc9\x40\xae\x04\xb7\xba\x5a\xfe\xdb\x1f\x1a\x4e\x58\xf5\xa7\x96\x32\x02\x86\xef\xdd\xd3\x17\x4f\x1f\xbf\x8f\x98\x5d\x2f\x10\x5c\x9c\x3b\x7a\xa0\x99\x56\x58\x1b\x10\x02\xf7\x44\xe7\x78\xfe\xea\xcd\x8f\x8d\x0c\x55\x15\xbd\x7f\xfa\xcb\xfb\x87\x6f\x9f\x3e\x6c\x94\x64\x44\xdc\xe3\xf3\xd1\x2b\xf4\x8c\xdc\xc5\x02\x70\x43\x32\x13\xfc\x59\x13\x26\x20\x46\xc9\x98\x9a\x16\x5a\x9c\x15\x0a\x25\x1a\x92\xd5\x55\x65\xdd\x29\x0c\xa2\xdc\x6c\x1c\x00\x6e\x16\x8a\xaf\x50\xa8\x8b\x88\x5e\xe8\x66\x40\x8c\x22\xbe\x93\x4c\xd2\xac\xc9\x31\x62\x0b\x49\x2f\x33\x5d\x78\x25\x56\xfc\x31\x96\x8e\x7e\x0a\x6d\xca\x4a\x81\x77\xc5\x8c\x99\x6e\xaa\x74\x17\x9e\xb5\x68\xa4\x0e\xcd\x69\x0e\x4c\x58\x0f\x9e\xcd\x26\xbb\x6d\x00\xf6\x85\x9e\xe5\x23\x6e\x0d\x26\x39\x80\x48\x1a\xcb\x55\x39\xe7\x8b\xaa\x82\x3f\x6c\xbe\x20\xc4\x80\xc3\xad\x8b\xa9\xa2\x4b\xf5\x79\x5a\x98\xb0\x36\x07\x2a\x8a\x25\xbf\xa3\xfc\x5a\xe5\x91\xe9\x45\x3c\x12\xeb\x35\x38\xb1\x51\x8b\xe1\x51\x74\x00\x78\x64\xa3\x8f\xcc\x30\x77\x50\x66\x86\x60\x01\xdb\x2c\x24\x92\x56\xb8\x57\x6c\xbe\x40\x74\xeb\x76\xd0\x0d\x5a\xb0\x24\xe9\xe8\x28\x81\x0e\xce\x17\xc4\x21\x7e\x23\x00\x75\xd1\x04\x9e\x2e\xe6\x72\x31\x5a\x5b\x33\x1f\x78\x5a\xaa\xcf\x9e\xe3\x94\x19\x86\x23\xb8\x83\x1d\x55\x53\x89\xc8\x83\x19\x9b\x03\x40\xa0\x3e\x8a\xdd\x45\x2d\xe2\x76\xca\x26\x9a\xb9\x9c\x0b\xdd\x0a\x74\x3a\x37\x0f\xa3\x8f\xf8\x68\xd0\x0f\xa5\x8f\x6f\x6e\xb1\x92\x66\x00\x5a\x98\x4d\x1d\x02\x29\x47\x87\x15\x08\x86\x64\x09\x43\xd1\xd6\x19\xe1\x04\x16\xc9\xb7\x80\xc2\x98\xfc\xc9\x27\x31\xcd\xb4\x0e\xdb\x35\x8e\xfb\xed\x33\x34\x7a\x99\x95\x65\x56\x5c\x9e\x18\x8b\xb0\xda\x28\xb6\x8c\xd0\x27\x4f\x8e\x50\x49\x97\x1c\xd3\x34\xbc\x0b\x8d\x69\x3d\xe8\x48\xdc\x17\xae\x9c\x75\x91\x14\x47\xca\x78\xbf\xc9\x64\x67\x11\xcf\x9c\xb6\x02\x83\xb5\x6b\xca\xe5\x39\x06\x36\x3b\xeb\xc4\xd1\x96\x80\xa9\x3f\xd3\x5b\xc3\x0f\xf9\x94\x9b\x77\xb2\xfd\x88\xf6\x68\x31\xc7\xea\xba\x75\x82\x2f\xd7\xdf\x8c\xd8\x6b\x54\x94\xf6\xfe\xdb\xdf\x25\x47\x9a\x7a\xe8\x6e\xec\xef\x2a\xf8\x68\xbf\x5a\x3d\x33\x33\xfc\xc5\x7e\x65\x49\x70\x4d\x62\xcc\x95\x5d\x59\xdd\x70\x02\x21\x46\x42\x73\x75\xd0\x93\xef\xdf\xbf\x7c\x61\x98\x19\x7c\x78\x2c\x72\x43\xb4\xa9\x3e\x92\x5f\x99\x61\x8f\x48\x8b\xac\x2a\x98\x93\x2e\x4b\xc2\x9a\x3d\x8b\xe3\x40\x5f\xe6\xd5\x16\xc7\x13\xe6\xf3\x61\x07\xaa\xdc\x1c\xb7\x8e\x63\xe7\xc4\xe6\xb9\x59\x06\x36\xc9\x35\xd8\xae\x5f\x77\xe2\x0c\x9a\x6d\x37\xc0\xa2\xb9\xa8\x2a\xf7\x21\xec\x32\x7e\x26\x71\x1c\x21\x89\x88\x32\xd0\xd0\x26\x08\x0a\x67\xbd\x6d\x94\xd9\x08\xf3\xf1\x82\x10\xdd\x6e\x9c\xc1\x8e\x91\x68\xab\xd8\xab\x2a\x18\x10\xec\x83\x2e\x63\x5d\x74\xe5\xb7\xcd\xb4\x3b\x11\x1a\xf8\xc5\xb1\x38\x1c\x27\x5a\xff\x46\xfc\x53\x07\xbd\x13\xc0\xad\x49\x27\x48\x9b\x7e\x0b\x59\xdb\x6a\xab\x20\xb7\x45\xe3\xf2\x8b\xc9\xa4\x70\x0a\x3d\x42\x9b\x9f\x35\x15\x36\x5b\x44\x6f\xeb\x6e\xbf\x90\xde\x71\xe2\x51\xd0\x94\x8a\xdf\x43\x3e\x30\xc3\xe1\x70\x38\x46\x97\xa9\xac\x1d\xb9\xba\xef\x59\x1b\x6d\x98\x65\xf6\x8c\xdb\xe7\xb9\xd7\xea\x6e\x3c\xc8\xcc\x33\x15\xb2\x5b\x96\x1c\x29\x20\x69\x2f\x11\xb0\xad\xea\xbe\xf1\x7a\x08\xd3\x6b\x6d\xbc\x83\x20\xcd\x5d\x54\xc8\x11\x8e\xba\xd7\x07\xd2\xde\xc8\xb8\xc3\xfe\xbd\x77\xc4\xe6\xd6\x6d\xd8\xbe\xd5\x65\xf9\x15\xab\xe5\x86\x97\x76\x7d\xb5\x12\xf4\xa4\x4d\xc2\xdc\x2f\xdb\x99\xaa\x92\xa3\xad\xf8\xed\x65\xc7\xdb\xb2\xe3\xa5\xe8\x78\x77\xcd\x2f\x3e\x65\xaa\xf1\xe1\xc8\xb4\x23\x4f\x74\x0a\x36\x2d\x96\xe8\xf4\x19\x2b\x4e\x1b\xc6\x11\xde\x32\x30\x0d\xd6\x39\xcc\x4f\x7d\x0e\x3b\xbb\x35\xce\xf8\x68\x97\x4a\x5e\x00\xef\x7a\xd0\x22\xc7\x81\x34\x8e\x81\x27\xfc\x62\x7f\xc9\xcc\x5f\x70\xe8\x30\xbf\x47\x92\x5f\xea\xd5\x25\x9f\xf0\x9d\xe4\x4b\x70\xe1\x38\x12\x32\x3a\x4c\xff\x73\x2a\x3b\x13\x1e\x12\xc3\x78\x3f\xdd\x5e\x70\x19\xd8\xb2\x82\xf6\xe0\x34\xe9\x76\xd7\x80\xe4\x33\xf8\x7f\xea\x2c\xd3\x8d\x4d\xac\xd3\x4e\x8d\x7e\xe6\xe9\xa7\x97\xe9\xae\xaa\x12\x6e\x7f\x33\xf3\xf7\x8b\x46\xad\xd8\x80\x9d\xe4\x6b\x2e\x5f\xa5\x36\x6a\xea\xc7\x4b\x2f\xc6\x24\x22\x16\x81\x71\x25\xfa\xb2\xaa\x38\x4e\x94\xb3\xa1\xaf\x17\x94\x8d\xce\x57\x1b\xce\x78\x26\x6e\x4f\x78\x09\xee\x24\x02\x8f\xda\x9e\xd3\x14\x30\xc6\x9c\xd7\xe4\x31\x93\x9b\x5e\xe8\x4c\x2b\x66\x98\x75\xca\x13\x81\x20\x17\x7a\x95\xb8\xbb\xad\xcc\x01\x9c\x18\x11\x10\xe9\x67\xa6\xcb\x6d\x1d\x45\xe9\x2c\xc5\xed\x29\x89\x0b\x37\xf4\x11\xa5\xa0\xc7\x79\x5a\x96\xff\x3f\xbc\xa5\xab\x4f\xa1\x8f\x47\x3d\x09\xff\x3f\x6b\xc9\x55\xb7\xdd\x7a\x30\xfe\x4f\x23\xab\xdf\x69\x64\x55\x0f\x21\xdc\x8e\x3e\x4e\xf3\xfc\xf1\x86\x2f\x3f\xfd\xbf\x71\xd3\x1a\x18\x27\x58\xbb\xfe\x35\x57\xcb\x8d\x1f\x73\x61\x11\x58\xfe\xb6\x0c\x03\x0a\xc6\x91\xb2\x8e\xc0\xc1\xd0\x78\x41\x50\xc9\xe6\xd1\x33\x21\xb7\x4f\x52\x95\x46\x34\x7a\x96\xe5\xfc\x2d\x4f\x57\x5c\x46\x34\x7a\x94\x8b\x8b\x88\x46\x3f\xbe\x7d\xf1\x8e\xa7\x72\xb9\x31\x31\x5d\x68\x84\x57\xf7\x11\x8d\xe0\x1c\x7f\xb4\x5f\xaf\xb9\x8c\xb4\xd0\x2b\x7b\x3e\x95\x04\xb0\x1b\xd8\xba\xcb\x54\x25\x73\xdb\xe4\xe8\x7b\xa8\x40\x17\xf4\x96\xff\x63\xcf\x4b\x05\xbf\xca\x9d\x28\x4a\xae\x0b\xbd\x10\x52\x3d\x16\x85\x92\x9a\xaf\x95\xd1\x82\x10\x9a\xb5\x0d\x35\x0a\x72\xcb\xe7\xc5\xe2\x98\x49\xb9\xde\xd1\xb7\x8d\xc9\x3f\xa2\x77\xd3\xc5\x1c\x42\x35\xad\xc2\xc2\x99\x3a\x1c\x82\x33\xb1\x03\x94\xca\x23\x78\xe4\xb6\xb9\x1a\xec\x15\xf9\x91\x36\x42\x38\x57\x6b\xa1\x53\x3a\xdb\xf5\xdb\xc3\x9d\x4b\xd8\xe9\x52\x7c\x1a\x5c\x5f\xa8\x37\x99\xbf\xf6\x65\x07\xe8\x0e\x4f\x32\xa3\x71\x74\xf5\x5b\x4d\x86\x7b\x61\xc3\x32\xb4\xde\xba\x98\x0c\xe1\xdd\xd9\x57\x54\x9b\xad\x93\x8e\x9a\x49\x7d\x4a\xb4\xea\x3a\xa6\xbc\xc9\xd6\xa0\xb1\xd1\x67\x6d\x10\x71\xbf\xb0\xd1\x1d\x24\xf8\x4e\xda\xbb\x8c\xac\xdc\x69\x16\x08\x9a\xf8\x05\x6b\x3c\x08\x9e\xa3\xf7\x7e\x47\x43\xbd\xf3\xcc\x5f\x89\xdd\x60\x11\xce\x02\xde\xe0\x9c\x81\x8d\x9e\xc5\x82\xf5\xfa\x08\x95\xe9\xfd\x33\xa6\xa2\xd6\x0f\x65\x67\x02\x82\x48\x14\x89\x9c\x67\x4e\xfd\xd3\x77\x66\xf7\x6f\x24\xc4\x69\xe0\xab\x83\x53\x16\x53\x79\xcc\x9e\xf9\xc8\xd2\x34\xd6\xc7\x9c\xdd\x71\x8a\xfd\x57\xcd\x7e\xb9\xbf\xc2\x0a\x2b\xe3\x1d\x77\xe6\x48\x2f\x8c\xfd\x98\xf5\xe4\xb8\x9b\xa0\xdf\x51\x92\x28\xa0\x2c\x57\x12\x08\x2f\x77\x97\xc5\xdd\xde\x72\x47\x23\x28\x7f\x82\xad\xe6\x2c\x6a\xad\xe0\xda\x71\x45\xd6\x10\x80\x81\xa8\xbd\xcb\x2e\x8b\x34\x5f\x44\x5f\xbf\x2a\x71\x30\x50\xef\xae\x47\xd9\x5e\xf6\x9a\x31\x02\x4e\xa8\xcd\xf9\x1b\xed\x2a\x24\x32\x77\x81\xe6\xc9\x03\xf4\xd0\x72\xd8\x47\x30\xb5\xf4\x41\x00\xbe\x38\xc7\x1e\x2b\x4b\x9b\xed\x87\x79\x0f\xaa\x70\xe6\x71\x47\x7d\x16\xfe\x39\x9a\x59\xc2\x48\xd6\x13\xcb\xaf\x4f\xe4\x7f\x89\x66\xe2\x3a\xf9\x9a\x4b\x69\x50\x7f\x5e\x81\xad\x08\xe6\xf2\x6e\xa1\xbb\xe4\x13\x2b\x09\xcf\x9a\x16\x27\xba\x8c\x59\xd2\x72\x3c\x36\x65\xe3\x90\x12\x02\x16\x54\x41\x7d\xb4\x3f\x41\x3c\x91\xee\xac\x38\x6c\x00\xda\xa8\x99\x29\x93\x69\xca\xd9\xad\x7e\x76\x5d\xbd\xd8\x5f\x5c\xe4\xbc\xd4\xbb\x6b\xa9\x79\x94\xdc\x30\x4f\x07\xbc\x45\xc7\x01\x1e\x05\x13\xec\xdf\xa6\xff\xce\x95\x5f\x1f\xe7\x7a\xf5\xdb\xab\xad\xdf\xeb\x3c\x96\x64\xf5\xea\x9b\xb7\x13\x2c\x58\x8b\x77\xa0\xf2\xab\x72\xe0\xc6\x8c\x42\xe1\xb7\x13\x5e\x63\xf4\xf1\xe3\xb3\xd7\x6f\x1f\xa3\xb3\xed\xc3\x17\x2f\x3e\x3e\x7c\xf4\xfa\xed\xfb\xc7\xaf\x5f\xbd\x7f\xfb\xfa\xc5\x8b\xa7\x6f\x3f\xbe\x79\xfd\xe2\xd7\x67\xcf\x5f\xbc\x98\x25\x9a\x51\x15\x39\x1f\xe5\xe2\x32\x89\xbe\x36\x1b\x53\x72\xcf\x4f\xb2\xf2\xa4\xe4\x8a\x9e\x5c\x67\x79\x7e\xb2\x16\x72\x69\x78\xc9\x3c\x3f\xd9\x89\xfc\x66\x9d\xe5\xba\xb1\xfd\x71\xa7\x02\x87\x8f\x0c\x5b\x05\x71\x08\xcd\xef\xa3\x6e\x55\x89\xdd\x4b\xa4\xaa\xfa\x7c\xd4\x18\xc0\x03\x49\x38\x81\x3b\xd7\xc6\x07\x96\x51\xf3\x0e\xc7\x8e\x49\x72\xa8\xaf\xb5\xd5\x4c\x4d\xb9\x96\xab\x4f\xdb\x41\x44\xd8\x6d\xe9\x71\x93\xd3\x16\x7b\xa9\xcf\x5c\x0a\xf6\xa8\x7a\x41\x5a\x5e\x33\xc3\x38\xf1\xd6\x4e\x55\x3f\xe3\x17\x7a\x91\x8b\x8b\xa9\xcf\xb8\x9a\xa4\xc0\xbd\xe2\x6f\xdf\x72\xa1\x76\x71\xd7\x1b\x59\x27\xa2\xfd\xb1\xd9\xc1\x6e\x9e\xf5\x36\x48\x08\x5d\x1b\xc6\x78\x5a\xb3\xc8\xd0\xba\xb4\x66\x7b\xa7\x01\x0f\xac\xbf\x1e\x50\x2b\xee\xa5\x21\x28\xf2\xcf\xdd\x96\x78\x5e\xa8\x3f\x43\xb6\x45\x44\xdd\x4b\x80\x9d\xe8\x7e\xeb\x83\x51\xf8\x1f\x9f\x17\x6a\xf2\xa7\xce\x2c\x1d\xaf\x9f\x17\xea\xc1\xfd\xce\xc4\x1d\xaf\x9f\xe5\x22\x3d\xfa\xfe\x4f\x7f\x34\xef\x17\x54\x30\xaf\xfb\xa3\xac\xfc\x29\xe3\xd7\x55\xd5\x6d\x27\x5c\xc7\xe2\xfa\xa2\x02\x98\x9c\x0f\xfd\xd8\x58\xa9\x31\x9b\x68\x3b\x41\x82\xae\xf1\x9d\xbb\x80\xa0\xf7\xe6\xff\x91\x0e\x7f\x1b\x0f\xff\xfd\xc3\xf0\x7f\xf9\x97\x3f\xc4\xff\xfa\xcd\x60\xf4\x1f\x1f\xff\xb3\xfa\x5f\x17\xf7\xb2\x91\xe2\x78\xfb\xd2\x29\x87\x59\x5b\x00\x07\xed\xa0\x79\xbf\x0d\x2c\xa8\x93\x75\xc6\xf3\xd5\x49\x91\x6e\x79\xe4\x31\x35\x4a\xbc\x10\xd7\x5c\x3e\x4e\x4b\x9e\x78\xf2\x60\xd9\xd6\x9e\x1f\x6f\xae\x87\x21\xb6\xf7\xfc\x89\x0b\xfe\xb9\x65\x3d\xa3\x18\x1f\x61\xb0\x63\xe2\x1c\xb6\x45\xc1\x3d\xa0\x58\x43\x89\xd5\xa1\x76\x22\x96\x23\xbb\x91\x34\xe3\x30\x6f\x18\x7b\x2f\x3a\x6c\x31\x15\x44\xcd\x73\xad\xca\x9d\x65\xd4\x36\xdd\xb1\xdb\x03\x0d\x84\xda\x7c\xc6\x3b\x0c\xe8\x1d\x04\x20\x9a\xec\x21\xdf\x6b\x90\x55\x5b\xe8\x55\x5d\x05\x84\xd9\xf9\x7c\xbc\xa0\x1c\x23\x96\x63\x21\xdc\xc9\x7c\xa1\xfa\xec\x55\xba\xe5\x7a\xf8\xdb\x45\xb6\x5b\x34\x57\xae\xbc\x20\x32\x17\x4a\x28\x70\x41\xf5\x63\xc9\x57\xc4\xb1\xf0\xdd\x68\x41\x0f\x73\xc9\xd3\xd5\xcd\x89\xfe\x3f\x22\xa4\x57\xe7\x64\x7e\x80\xc9\xb5\x8f\xe4\xca\xaf\x4f\x7c\x3c\x5a\x80\xfd\x1d\x89\x22\x17\xe9\xca\x9f\x10\x95\x00\x26\xc0\x3e\x47\xa4\x68\x51\xf0\x10\xc8\x9a\xdc\x16\x09\x47\x24\x25\xa2\xa5\x54\x57\xd9\xa6\x5e\x49\xba\xae\x9a\x32\xd2\x82\xf9\x8a\x42\x35\xd2\xad\x7e\x58\x7a\x3b\x38\x09\xa3\x87\xed\xdc\x78\xc0\x45\xba\xd3\x1c\x9b\x7b\xf5\x31\x0a\x0f\x58\x4d\x4d\xbe\xf4\xf0\xdd\x28\xfe\x02\x2d\x36\xea\xda\x4a\x8e\xc3\xe7\xa7\x24\x84\xaa\xd1\x05\xd4\x5d\x57\xbb\x6a\x98\xc4\xd4\x43\x3a\xf1\xe2\x84\x3c\x12\xab\x9b\x0e\xbb\x17\x4c\xa0\xb3\x3c\x2f\x32\xc5\x38\xe5\xb3\x0e\x47\x91\x3a\x15\x58\x32\xf2\xa9\x1c\xe9\x73\x24\x8e\xf5\x81\x10\xc4\xee\x0f\x14\x41\xc4\xcb\xa8\x53\x42\x46\x7b\x4a\xc4\xb1\x3d\x25\xbe\xae\x00\x9b\x1a\x0a\xf1\xcf\xc4\x38\x6e\x9c\x89\x5f\x57\xde\x7b\x63\x86\xee\x2c\x4a\xa6\xc1\x29\x14\xc7\xb6\x8f\x49\xa2\x98\x3e\xd5\x75\xe5\x9a\x60\x1f\x2d\x5e\x11\x62\xf1\xbe\x74\x05\xde\x42\x61\x3b\x3d\xcb\x78\xba\xd1\xc6\x90\xdb\x73\x35\x99\x77\x66\x5d\x90\x56\xc3\x12\xff\x10\x39\xde\xd7\xaa\x12\x7a\xc5\xcc\x8e\xb6\xc8\xc2\x89\xd5\xa3\xf1\xe5\xbb\xc6\x66\x96\xc8\x58\xeb\x22\xed\x2f\x35\x89\x71\x56\x43\x43\x5d\x82\x66\x94\x3a\x6e\xbd\x66\x41\xae\xb2\x95\x8b\x82\x65\xf9\xbd\x5d\x9e\x66\xc5\xa9\x3e\x65\x4a\xae\xd8\x8f\xef\x9f\x0d\xff\x1c\xf9\x6d\x78\x04\x33\x14\x3e\x03\x23\xff\xc5\xf2\x3b\xf2\x90\xff\xc2\xc2\x32\x8d\xb8\xab\x43\xe9\x6e\x97\x67\x78\xf3\x73\xef\xf3\xf0\xfa\xfa\x7a\xa8\xb7\xc2\x70\x2f\x73\x5e\x2c\xc5\x8a\xaf\x9a\xfd\x24\x07\xea\xd6\x20\xee\x6c\xbd\x87\x5a\xe2\xd6\xb2\x8e\xe7\xc9\x03\x68\x86\xb0\x8b\x3e\x6d\x46\xe8\xb5\xc6\xf7\x30\x8b\xb7\x56\xda\x39\xbf\xbc\x66\xc3\xc2\xec\xde\x6d\x9b\xc4\x2c\xc5\x5e\x33\x0b\x10\x12\x2b\x5d\x9d\xd8\x84\x27\x3a\xd7\x49\x5a\x9e\xe8\x2e\x7b\xd0\x6d\x77\xb6\x40\x2f\x48\xbc\xa2\x87\xc3\xcb\x5b\xec\xc7\x8c\x07\x1b\xed\x9e\x99\xa1\xac\xaa\xae\x41\xf2\x47\x64\xea\xe6\x23\x31\xe8\x75\x1b\x62\xec\xc0\xd0\xbf\xa5\x39\x4b\x54\x01\xfa\xbb\x37\x57\xf5\x95\xd2\xf1\xb9\xb2\x38\x86\xf6\x3d\x6d\x9d\x51\x12\xce\x28\x6a\x0f\x27\xb0\x1f\xe7\x04\x43\x5a\x7f\xe5\x64\x76\xdb\x91\xb5\x8e\x1e\x5a\x78\x88\x6a\x2e\x44\x36\xed\x00\xa5\x07\x3d\xa3\x21\x1b\x6b\x29\xb6\x8f\x37\xa9\x7c\x2c\x56\x1c\x51\x5e\xea\xb9\xfc\xbb\xc8\x8a\x24\x8a\x0c\x76\x4c\xbb\xa5\xff\x6d\x8b\x08\x9c\x40\x3b\x16\x51\xb8\x74\x60\xbb\xd5\xa7\x93\xf1\x05\xb0\xa7\xce\x91\x25\x04\xbe\xb6\x66\x09\x5c\xb9\x25\xf0\xf7\x52\x14\x5f\x93\xe3\x87\x77\xaf\x5f\x8d\x76\x7a\xd3\x9b\x55\x7b\xf0\x3c\xfc\x0c\xfb\xd5\xb8\xd5\xe6\x2c\x85\xa8\x45\x0c\x82\x7e\x7b\x4a\xe0\x6d\xba\x9b\xf3\x45\xcf\xfb\xcd\x8a\x59\x31\x88\xe8\x49\x34\x50\x53\x75\xa0\x7e\xd1\x68\x04\xc7\xc2\x9b\x12\xb0\x8b\x73\xf9\x75\x35\x8b\x30\x97\x7f\x85\xeb\x0b\x2b\xa6\x49\xe8\x4e\x50\xba\x63\x16\x5b\x81\x11\x53\x83\x72\x36\x69\xd9\x55\x8e\xcd\xd4\x14\xb9\x53\x80\xe6\x0f\x4a\x28\x79\x27\x8a\xb6\x6b\x37\x8c\x4e\x98\xc5\x70\xb9\x1d\x46\x02\x30\x88\x4e\x79\xbd\x4d\x77\xe4\x58\x4b\x0a\xb0\x7f\x35\xea\x69\x57\x63\xb1\xa0\x85\xe1\x8d\x83\x1a\x3f\xf1\x9b\xb2\x4d\xae\xe7\x8b\x20\x1e\x49\x9b\xf9\x46\x0e\x17\xae\x0c\xc0\x36\x4d\x8b\x3a\x61\xc1\x20\xb9\xfc\x33\x45\xbb\x82\x55\x77\xc1\xbc\x50\x32\xfb\xa7\x4a\xf6\x1a\x3d\x2f\xa8\x5a\xd4\xe5\x07\x42\x55\xde\xd6\x2f\xd5\xe2\x55\x47\x4b\x70\x85\x6f\xd9\x3c\x7a\xf2\xf4\xc5\xd3\xf7\x4f\x23\x1a\x7d\xf7\xf4\x7d\x44\xa3\xef\x9f\x3e\x7c\x12\xd1\xe8\xf5\x9b\xf7\xcf\x5f\xbf\x7a\x17\xd1\xe8\xcd\xeb\x77\xfa\xfd\x9b\x1f\xdf\x47\x8b\x20\x3c\x6f\x18\x7e\x23\x51\x4c\x55\xd5\xed\x81\x00\x9b\xdc\x33\xf7\x2b\x4e\x44\xbb\x69\x0a\x34\x9d\xd2\x6f\x28\xc6\xe0\x96\xdb\xcb\x9c\x71\xfd\xbf\x71\xe6\x91\x7c\xc5\x0b\x95\xa5\x79\xc9\xb8\xff\x44\x95\x65\x12\xec\xfd\x91\x79\x04\xea\x9a\x27\xdc\x3e\x13\xb3\xa3\xb6\x5c\x6d\xc4\x8a\x71\xf3\xc3\xbc\x14\x2b\xae\x5f\x89\x95\x89\x3e\x88\x5a\x29\x2d\xf4\xc2\x0f\x9a\x55\x15\x5a\x36\xf0\x9a\xd5\x84\xf8\xaf\xde\x33\x0d\xc4\x2f\x13\xda\xdb\x75\xc6\xc9\xdd\x8e\x0a\xfb\x7d\x52\xfe\x53\x55\x35\xbf\x57\x55\x54\xa6\x5b\x3e\x14\x32\xbb\xcc\x8a\x88\xf6\x5d\xaf\x43\x46\xa9\x7b\x0c\xd4\x91\x31\x48\x0a\xa6\xcc\x6f\x53\xa5\x7d\xc0\x55\x21\x59\x31\x52\xe2\xc7\xdd\xce\xea\x19\xe8\xd6\x29\x51\x24\x39\x1f\x4e\x66\x72\x6a\x03\x15\xc2\x08\x2a\xf8\x63\xcb\x82\x9f\xb5\x43\x99\x19\x52\x65\x7e\x98\x54\x66\x7c\x8d\x4b\xcf\x9a\x4b\x69\xbd\xd0\x12\x68\x84\xf5\xbf\x70\x2d\x83\x95\x1a\xbe\x25\x71\x9c\x75\xaf\x2c\x2d\xa5\xc1\x41\x96\xe6\xb9\xb8\xe6\xab\x93\xb5\x90\x27\xdf\x3d\x7d\x7f\x22\xe4\x89\x2e\x08\x4c\x87\x79\x09\x06\xc3\xa1\x6c\x97\x64\x9e\x4c\x7b\xd5\x90\x69\xcd\x21\xe6\x69\x63\x64\xb6\x4d\x08\x5c\xfd\xa9\x24\x8a\xa3\x0e\x25\x80\x91\x65\x6b\xb7\x05\x93\x98\x45\x18\x54\xc0\x68\x57\x46\x92\xef\xf2\x74\xc9\x93\x7b\x1f\x06\xf7\x2e\x69\x74\x12\x81\x9d\xb4\x39\xdc\x59\xd4\x95\xa0\xa7\xac\x6a\x61\xc5\x35\xe7\xfb\xe3\xdb\xe7\x8f\xc5\x76\x27\x0a\x5e\xa8\x44\x12\xda\xf1\x36\x23\xe4\x10\xea\x5a\x2e\x0d\xdd\xd7\x4b\x08\x6c\xc9\xf1\x74\x05\x25\xbe\x43\x09\xc3\x29\x53\xa9\xda\x97\x35\xd2\xa7\x32\x6f\x66\xf7\xc7\xe3\xa9\x7d\x30\x36\xf6\x9f\x98\x97\xe5\x9c\xdd\x1f\x8f\xad\x9f\x30\xbc\x39\x7b\x30\x1e\xfb\x85\xa2\x0c\x54\xff\x06\x95\xe6\x4c\x79\x5f\xa7\xd1\xeb\xbf\x84\x32\x52\x6b\x91\x53\xb7\xe7\x94\xfe\xbf\xaa\xac\x50\x55\x4f\x2e\x27\x07\xdf\x00\x70\x99\x8b\xa2\x0b\xe9\x54\x97\x6c\xee\x7c\x6e\xf5\xd6\x9e\x86\xb2\xe6\x81\x1c\xe8\x0a\x8f\xaf\x1b\xff\x62\xca\xbc\xbb\xf4\xdf\x5d\x7e\x65\x75\x97\x49\x58\x07\xbd\xc5\xbe\x4f\xbd\x51\xa2\xde\x70\x34\x06\x8f\x9a\x41\x98\x9a\x41\xf1\xc6\x89\xd0\xbd\xcc\xa7\x76\x6c\x74\xdb\x2f\x47\x2d\xa5\x0e\x1e\x4f\xd8\x10\xd8\x85\xb6\xfa\xb1\x5f\x69\x14\x1d\x7c\x55\x24\xac\x11\x1b\xa1\xcc\x00\x9f\xb2\xf9\x83\xf1\x84\x3e\x18\xdf\xa7\x0f\xc6\x0f\xe8\x83\xf1\xbf\xd1\x07\xe3\x3f\x2f\x7a\x97\x23\xc9\x57\x99\x6c\xc7\x8f\xc9\xd6\xc9\x70\xc2\x18\xbb\x70\x14\x26\xb0\x59\x01\xaf\x95\x86\xb2\x14\x1b\x74\xa2\xd7\x76\x88\x46\xdd\x68\x7a\x3d\x28\xb7\xb9\x40\x81\x71\xca\x0f\x18\x3f\xed\xc9\xeb\x97\x4f\x3f\x2f\x39\x78\xff\x33\x15\x3c\xc2\x85\x1b\x44\x9f\x0d\x5e\x1b\x65\xfd\x35\x98\x27\xfa\xb9\xbb\xf8\x27\x83\xa4\x6b\x0e\x95\x22\xdd\x72\xa6\x0c\x93\x69\xa2\x6e\x1b\xba\x63\xe3\xfb\xc3\xdf\x66\xc3\x8e\x1a\x27\x41\x19\xfe\x2a\x3b\x96\x2f\x00\xc2\x68\xf4\xa7\xb6\x25\x82\x48\xc8\x47\x14\x85\x45\x6d\xe5\x6c\x76\x05\xcd\x08\x06\xae\x46\x12\x1e\xc7\xf6\x97\xbd\x1e\x26\x0e\x6d\xa1\x3d\x8a\x09\xde\x7c\xf1\x95\xb5\xb8\x81\xae\x44\x04\x19\x14\xdc\xd3\xbf\xbc\x7c\xf1\xbd\x52\x3b\x73\x85\xe4\x63\xac\x91\x5b\x73\x07\x9d\x90\x43\xd9\xa1\xbc\x74\x22\x22\xb3\x6b\xa0\x6b\xeb\x74\xee\x9b\x84\x33\xd0\xba\x3c\xcc\x73\x6b\x14\x64\x0c\x86\x12\x82\x94\x04\xe9\x0d\xc0\xa4\x5a\x42\x2c\x67\x1f\x8a\xf9\x07\x75\xb2\xb0\x14\xd9\x10\x77\xfc\x72\xaf\xfb\x34\x68\x9c\x03\xd3\xc6\x39\x80\x47\x0a\xdc\xe6\xd8\xf0\x3c\xf6\x14\x98\x46\xee\xb3\xa3\xfc\x92\x66\x48\xd1\xc9\xa1\x27\x81\xf8\x45\xd2\xb4\xff\xc7\xb7\x2f\x34\x1d\x2d\x67\x00\x93\x61\x5f\x4d\x65\xa8\x64\xfa\x65\x68\x06\x7a\xa8\xd3\x5b\x43\x51\x57\x48\xb3\x84\x69\xfd\x53\x8f\x5f\xaf\x48\x70\xe7\x65\x18\xf3\xbe\xec\xd2\x18\x8b\xa6\xfe\xfa\x15\x57\xd7\x42\x7e\xb2\xa7\xf0\xc9\x1a\xc2\x37\x46\xb6\x00\x85\x36\x2d\xff\x95\x22\x60\x95\xb4\x0b\xf8\xca\xc5\x08\x65\xec\x78\x91\xa4\x96\x5b\x4c\x81\x25\xed\x8f\x09\x8d\xb2\x62\x99\xef\x57\x5c\xf3\x22\xa9\xcf\xab\xcd\xca\xd1\x75\xa6\x36\x8f\x3d\xee\xae\x3f\x9e\x46\x62\x9b\xa9\x56\xda\x38\x4e\x3a\x52\x4f\x08\x75\xe3\xae\xbb\x0a\x63\xef\x29\x50\xbd\xa1\x07\xd2\x8b\x4a\x1d\x9a\xba\x09\xed\xbe\x15\x01\x35\x9a\x99\x64\x5c\xd3\xc6\x28\x88\xd6\x7b\x38\xa9\x37\x71\x0b\xe6\xc2\x5c\xdd\xef\x09\x8c\x2c\xb0\xec\x10\xc0\x68\xb9\xd1\xc4\xd9\x1f\xe4\x3f\x32\xc6\x4a\x50\xa1\xdc\xbc\xb3\xe1\xf1\x4d\xb1\x9d\x38\x05\xae\xe4\x83\x2e\xbb\xd4\xeb\xd9\x71\x17\x69\x7d\x16\xce\x34\x59\x9f\x7a\x2f\xc8\x81\x1c\x3e\x8e\xec\x9d\x34\xeb\x8f\xa9\x1a\x81\x99\x9f\x66\x62\xf0\x17\xfb\x48\xd5\xc8\xec\x60\x96\x53\x65\x6f\xa4\xd9\x0d\xfc\xc6\x61\x64\x97\x9a\x74\xd6\xa9\xb8\x97\x8a\x7b\xa9\x28\xb7\x85\x1e\x48\x72\x7b\x40\xe7\x30\x53\x51\x5b\x8d\x02\xaf\x4f\xb2\x12\x18\x50\x63\x69\x70\x32\x3c\xd9\xa6\x37\x17\xfc\xe4\x46\xec\xe5\xc9\x85\x14\xd7\x25\x97\x27\xe8\xfd\x51\x9e\xa4\x92\x43\xe2\xa5\xb8\xe2\x5a\x5a\x38\xe1\x57\x5c\xde\xa8\x8d\xfe\x79\x23\xf6\x27\x05\xe7\xab\x99\xd9\x9b\x82\x8d\x1b\x57\x94\x96\xdc\x0e\x87\x94\x1f\xac\xb9\xe5\x7b\x5e\xaa\x59\xe2\x3f\x79\xa6\xf0\x59\x23\xf8\xa8\x29\x41\x0f\xbb\xd0\xb4\xc4\xe1\x70\xb7\xd3\x88\xc1\xc0\x0e\xb6\xf1\xcd\xe0\x9e\x63\x46\x3b\x02\x85\xe3\x16\x80\xf9\x49\x48\xa0\xec\x4b\x69\x4a\x28\x0f\xa3\xd1\xe1\x70\x82\x26\x84\x1f\xc8\x81\x4c\xeb\xd6\x98\x7a\x51\xbd\xd4\xa2\xab\x56\xf1\x32\xe7\x0b\xb0\x9e\x0c\x4c\x56\xef\xa5\x7f\x4f\x3f\x1f\xb1\x5b\xf5\x63\xca\x7a\xd1\x74\xcd\x3e\x5f\x9d\xfc\x67\x5d\xc2\x7f\x9e\x5c\xec\xd5\x49\xa6\x4e\xae\xd3\xf2\x44\x72\x7d\xb0\x43\xd4\xd9\xff\x04\xcb\xff\xa1\x97\x30\xd2\x6b\x94\xdc\x81\xc6\x6e\x43\x57\x74\xa5\xb8\xcc\xc5\x45\x9a\xcf\xf0\x4f\x67\x8a\x92\xe7\xeb\x99\xfe\x6f\x8a\x0a\x93\xa6\xbc\xf1\xbb\x11\xb0\x49\x03\x01\x9b\x27\x04\xfc\xb3\x8f\x78\x79\xb4\x91\xb0\x1d\xe8\x9c\x03\xc4\xe6\xe4\x14\x18\xd1\xaa\xc2\xae\x92\xd1\x63\xb1\xe2\x2f\x33\x38\x1e\x00\xbd\x81\xf8\x8b\xb0\x65\x3b\xcc\x59\x91\x5e\x65\x97\xa9\x12\x72\xb4\x2f\xb9\x7c\x78\xc9\x0b\xa5\xcf\x61\xf7\x76\x97\xa7\x6a\x2d\xe4\x96\x16\xec\xde\x25\x5f\x7e\x12\x1f\xee\x7d\x58\xd5\x77\xee\x54\xb2\x7b\x2f\xdf\x3d\x7f\x7a\xf2\x61\x75\xcf\xbd\xcb\xd8\xbd\xf7\x32\xd3\x44\xf7\xc3\xbd\x64\x36\x9d\xff\xdb\xf0\xdf\x17\xd5\x87\xd5\xed\x7d\x7a\x20\x1f\x46\xa3\x6f\xe4\x15\x06\x88\xb8\x07\xf0\x1f\x3a\x87\x60\xb2\xaa\x32\x9a\x32\x11\xc7\x89\x9c\xb5\xb0\x6a\x5e\x82\xc0\xfb\xa7\x69\x36\x9f\x2c\x08\x2d\xd9\x3d\x8c\x30\xf2\xe1\x5e\x5d\xe9\x9e\x95\x71\x7c\xef\xaf\x4a\xb7\x6f\xf0\x61\xf4\x61\x35\xa8\xbf\xe5\xec\xde\xe3\x8d\x14\x5b\xee\x67\x58\xb2\x7b\xaf\x77\x5c\xa6\xfe\xbb\x35\xbb\xf7\x70\xb7\xcb\xf9\x89\x16\xe7\xf6\x8a\x4b\xf3\xa9\x1e\x8f\x2b\x5e\xac\x84\x24\x74\xc3\xee\xbd\x4c\x97\x27\xaf\xdf\x9d\xfc\x72\x32\xf9\xb0\xfa\xf0\x24\x99\xff\x19\xbb\xf9\x61\x45\x3e\x3c\xa9\x8b\xdc\xb1\x7b\x6f\x36\x69\xa1\xc4\xf6\x87\x77\xf5\xdb\x95\xa9\x08\xfb\xe1\xde\xc7\xf1\xbd\x97\xe2\x22\xcb\xf9\x87\x7b\x1f\xae\xbd\x0e\x6c\xd9\xaa\xaa\xee\x3d\x2c\x56\x52\x64\xab\xea\x9a\x5f\xbc\x7e\x57\x3d\xca\xd3\xe5\xa7\x47\x5c\xca\x9b\x0a\xfa\x71\xf2\x32\x2b\x32\xfb\x53\x5c\x64\xd5\xf3\xa7\x58\x96\x37\x5b\x37\x50\xce\xcb\x74\x69\x8a\x56\x84\x5e\xb1\x7b\x1f\x2e\x1e\xcb\xd7\xef\x3e\x5c\xd4\xf5\x5d\xb2\x7b\xd7\x59\x61\x33\x2a\x42\x2f\xd8\xd2\x39\x1b\x25\xf7\x7e\xc2\x18\x20\x1f\xee\x25\x1f\x56\xdf\xe8\xb1\xfe\x86\xdc\x23\x3d\x7d\x7e\x5e\xb0\x57\x7b\xbd\x4f\x93\x0b\x3d\x53\x84\x5e\xc4\xf1\xc5\x39\x9b\x7c\x1b\xc7\xc9\x92\xf5\x27\x54\x1f\xd8\x48\x64\x3f\xb2\x9b\x38\x4e\xf6\x55\xb5\x8c\xe3\x04\x15\x40\x17\x55\x75\x71\x36\xb9\x3f\x9a\x4c\x08\xa1\xd7\xac\xa8\x2a\x11\xc7\xe9\x39\xfb\x77\xfa\x54\xe7\xfd\x0c\x41\x7f\x2d\x5d\x7e\xe7\x19\xe4\xab\x46\x04\xed\x77\xce\x17\x4a\x13\x1c\x4c\x89\xc2\x80\x40\x30\x32\xa6\x98\x9a\x5d\x8b\x44\x11\x30\xc9\x16\xc9\xdf\x0a\x0c\x4f\x44\x9f\x78\xba\x6a\xe3\x40\xd3\xba\x12\x2c\x74\x8b\x91\x57\xcf\x92\x82\xa2\x6a\x86\xa2\x3a\x66\x94\x67\x05\x7f\xc7\x77\x29\x68\x0a\xad\x56\x68\x25\x96\xac\x30\x28\x04\xd0\xa4\x51\x56\xec\xf6\xea\x9d\xba\xc9\x79\x39\x57\xde\xd3\x02\xaf\x5d\x6c\x04\xc4\x55\x56\xee\xf2\xf4\x06\x32\xbd\x4e\x38\x38\xb3\xf4\xb2\xd1\xb5\xd4\xbc\xa9\xf4\x77\x3b\x88\xd2\x6f\x4c\xee\xc7\xe6\x2f\x36\xe7\x67\x9d\x1a\x62\x50\x25\x7e\xa1\xae\x14\x30\xd3\x7c\x95\x6e\xf9\x80\x45\x27\x75\x91\x43\xfd\x3d\x02\xa7\xff\xbd\x12\x00\xa5\x10\xc7\xfd\x2d\xda\xfb\xec\xf6\xca\xc1\x4d\x7c\x6f\x6b\xb3\x02\x33\x67\xb7\x9f\xf8\xcd\xcb\x74\x57\x4e\xe7\x0b\xaa\x4f\xdc\x3c\xbd\x81\xdf\x7a\xa4\xbe\xe3\xc5\x74\x0c\x6f\xaf\x65\xa6\xc0\x0c\x78\xc5\xf3\xf4\x26\x2b\x2e\x1f\xe5\x7b\x09\x0c\x8c\x7e\x09\xc5\xf3\x95\xfe\x59\xee\x77\xe0\x83\xf2\x74\x95\x29\xb0\x6c\xdc\xa5\xa5\xe2\xcf\x8b\xa5\xd8\x66\xc5\x25\x98\x3a\xee\x95\xff\x88\xc8\x0d\x59\x71\x09\xe2\x88\xae\x41\xa6\x97\x97\xde\xf3\x26\xbb\xdc\xe4\xd9\xe5\x46\xa1\x38\x2f\xe8\x27\x7e\xf3\x8e\xff\x03\x2d\x89\xcb\x1d\x5f\x66\x69\xfe\x78\x93\x6a\x71\x7f\x9f\xe7\x16\x90\x4f\x01\x38\x82\x51\xc4\xe7\x27\x59\x71\xa2\x57\xe8\xd9\x64\x12\xc7\xdd\x86\xe2\x7b\x37\xd8\x38\x64\x92\x97\x5c\x25\xfd\x31\x39\xd0\xfb\x63\xd2\x8e\xf7\xcc\xb8\xcd\xd0\xfb\x35\x4b\x2c\x38\x17\x97\x34\xda\x0a\x3d\x18\xe2\xba\x88\xe8\x5f\x54\xc2\x69\x5e\x10\x42\x1b\x69\x56\x17\xb9\xc1\xa5\x32\xcd\x9a\x41\x52\x5f\xab\x0e\x4e\x4b\x18\x25\xc0\xca\x49\x7b\x64\x62\x01\xd3\x3e\x8e\xfb\x6b\x7c\x8c\xe3\x7e\x59\x24\xae\x39\x90\xfe\xfb\x2c\x71\xa8\xd6\x10\xd8\x7c\xf5\xb3\x90\xab\x87\x2a\x29\x48\xef\x11\xd7\x89\xc5\x92\xca\x51\x5a\x2c\x37\x42\x52\x94\x82\xc8\xe1\x70\x20\xa1\xff\x85\x0d\x52\x00\xc5\x1d\x48\xef\xba\xaa\x1a\x1d\x59\x62\x58\x99\x2d\x2f\xf6\x51\xd0\xfc\xb7\xd8\xb8\x83\xd9\xa3\x5a\x0c\xe5\xc5\x6a\x3a\x3e\x84\x90\x15\x0a\x40\x65\xae\xf8\x7b\xb1\x5f\x6e\x60\xb7\x1e\x09\xfa\xe8\xa7\x63\x78\xfd\x33\xe1\x0f\x08\x4d\x24\x0b\xbe\x91\x11\x2f\x56\x6c\xa0\xd7\xca\x93\x54\xf1\xd0\x2c\xcc\xd0\x21\x24\x62\x6a\x94\xf3\xb5\x75\x5c\xe8\x8f\x1d\x2d\xd1\x6f\x87\x1c\xfe\x50\x5d\xb8\x12\xbb\x21\xc0\xab\x39\xf5\xca\x37\xc5\x40\x7e\x23\xcf\xff\x38\x1e\x1f\x1a\xc3\xa1\x74\x13\x4a\x95\x6a\x4e\xde\xb5\x3e\xf3\x26\x33\xd3\xd3\xd5\xe0\x4f\x26\x7d\xb0\x19\xd9\x2f\x37\xdc\xc2\x32\xd9\x56\x4d\x7a\x76\xb1\x99\xef\xf3\xf1\xc2\x33\x1e\x4a\x57\xd9\xbe\xfc\xe5\x8c\x4d\xe2\xd8\x3e\xfd\x7a\xc6\x26\x87\x24\x23\xe4\x16\xf0\xaa\xec\x50\x16\x96\x61\x76\x23\xd3\x0b\x87\xf4\x16\x5a\x3d\x15\x54\x8b\x26\xb0\x95\x77\x92\x5f\x4d\xc5\x50\xea\x01\x3d\x63\x0f\xc6\xe3\x99\x34\xf7\x6e\x13\xc6\xb2\x46\x83\x35\xc5\xf2\xcb\x83\xe1\xab\x53\xcd\xc7\x0b\x00\xb9\xfb\x85\x86\xa9\x94\xd8\xb5\x13\xfd\x0a\x42\x7c\xd7\xc8\xea\xb6\x45\xf4\xd8\xb2\x68\xb5\x01\xba\x02\xd7\x10\xdd\xc5\xf1\x62\xe5\x95\x56\x03\xab\xf8\x85\x18\x08\x11\xbd\xc5\x14\x2d\x88\x75\xc4\x93\xd0\xc1\x38\xee\x4b\xac\x25\x8e\xed\xb8\x0e\xe5\x08\x86\xf2\xec\xc1\x78\x6c\x1c\x46\x69\x0a\xe8\x96\x42\xae\x4a\x4d\xa9\xc2\x56\xd2\x48\xf7\x39\x22\x3d\xc1\xfa\x72\xa4\x07\xbd\xaa\xca\x44\x52\xfc\x8d\x71\x95\x5f\x71\x10\x0f\xa6\x26\x41\x2b\x95\x49\x1a\xec\xf4\x14\x83\x46\xbe\xe2\xc9\x8e\x27\x29\x1c\x2f\x74\x4c\xe8\x0b\xbb\xfb\xdd\xdb\xc1\x84\x8e\x09\x69\xa2\xff\x24\xc2\x52\x07\x81\xd4\x81\xd6\xa8\x45\xdf\x67\x49\x41\x0e\x59\x72\x6c\x5c\xd1\x9a\x3d\xa2\x59\xeb\x33\xfe\x6a\x4c\xa1\xfd\x3c\x5a\xe6\x19\x2f\xd4\xf7\x5c\x53\xfb\x38\x4e\xb6\x40\x42\xea\xcf\x0e\xff\x90\xd0\x9b\xce\x4f\x2f\xf4\x96\xed\x8f\x09\xfd\x6b\x96\xf0\xba\x32\x4e\x3a\x1a\x0a\x54\xfa\x7a\xc3\x79\x1e\xd2\xad\x8f\x96\x6e\x35\x33\x3c\x79\xfd\xf2\xa5\xce\xf3\xae\xd9\x85\x76\x26\x73\x5c\x1f\xe9\xae\x3d\xcc\x5d\x77\x58\xf3\x9d\xee\x07\x1b\xa3\xf0\x29\xd3\x4b\xeb\xc2\x5c\x6a\x12\xaa\xb8\xec\xa6\xd1\xff\x00\x1a\x0d\xa7\x75\x77\x82\x86\x26\xa4\x75\xa4\xf4\x0b\x43\x75\xcc\xb9\xd1\xf0\x6c\x78\x62\x1e\x9f\xc9\xf4\x12\x23\x2d\xf7\x0a\x65\x18\x1d\xea\x4e\x1f\x68\xf0\xe3\xbd\x2c\x85\x04\x47\xef\xf6\x6b\xf6\x58\x24\xd1\x2a\xbb\x8a\x90\x0f\x8b\x3c\x36\x66\x09\x09\x4a\x9f\xb3\xd1\xf9\xcc\xeb\xc8\xaf\x06\x98\xb7\x5d\xba\xe4\xa3\xac\x28\xb9\x54\x8f\xf8\x5a\x48\xde\x59\xa1\x97\x0b\x4b\x7a\x92\x5d\x11\xd2\x7b\x23\xba\x53\x4b\xc4\x43\x21\x14\x06\x94\x1c\x28\x12\x46\x7f\x48\xdb\xa0\xbe\x5a\x1a\xea\x73\x64\xa9\x46\x3e\x07\x53\x55\x8e\xe0\x0e\x37\xc5\xd9\x64\x3c\x26\x81\xab\x1c\x54\x02\x57\xc6\x76\x9a\x9a\x67\xb9\x99\x13\x40\xac\x5e\xa5\x2a\x7d\x2f\xd3\xa2\x5c\xeb\xb5\xc2\xd5\x93\x54\xa5\x49\x84\x68\x8e\xbc\x01\x97\x05\xab\xc7\x4f\xcf\xd7\x6b\xbe\x54\x0f\xf1\x12\x90\x01\xe2\xdc\x4b\xa0\xa7\x1d\xe5\xca\xf4\xf2\xf9\x36\xbd\xe4\xfa\xb0\xb2\x4b\x45\xcf\x5b\xb6\xbd\x34\xf3\x86\x93\x67\x91\x50\xa7\x27\xeb\xec\x33\x5f\x9d\x9e\x68\xaa\x38\x3d\x19\x9f\x9e\x28\xb1\xd3\x7f\x23\xd2\x2b\x46\xa5\x5c\x22\x0a\xf7\x34\xd3\x85\xde\xbb\xcc\xd6\xa7\x17\x69\xc9\xff\xf4\x47\xfa\x76\x9c\x7f\xf7\xfa\x49\xbe\x79\xf8\xd7\x87\x8f\x1e\xea\x7f\x8f\xbf\xff\xf6\xd1\xc3\xa7\x7f\x79\xf8\xf0\xe9\xc3\x17\xf0\x42\xbf\x7f\xfa\xf0\xe1\xc3\xe7\x8f\xdf\x3f\x7c\xfa\xf0\xf5\x35\x63\x11\x05\x49\x64\x74\x9d\xad\xd4\x86\x15\xa3\x0d\x10\x0c\x36\xf1\x26\xda\xee\x27\x1f\xb2\xb4\x20\xb4\x18\x7d\x04\x98\xd4\x91\x00\xac\x55\x20\x25\x77\xf4\x3e\x29\xe8\x58\xd3\xcc\x65\x1c\x17\x1e\x4c\x43\x80\xee\x59\x80\xe8\x8e\x31\x71\x56\x52\xec\xa6\xc0\xc8\xed\x0a\x42\x73\x9e\x5e\xf1\xee\xad\xb8\x2a\xc0\x91\xc7\xf2\xaa\x86\xe5\xbc\xe4\xea\x59\xc6\xf3\x55\x42\x34\x4b\xb9\xa7\xd1\x27\x7e\xb3\xdf\x85\x94\xe6\x53\xe1\x05\xe1\x01\x72\x83\xe9\x3c\x7e\xf3\xa1\xe1\x37\xf1\x03\x70\xe3\xe6\xcb\xcb\xfa\x0b\x90\xf2\x88\x3e\x15\xc9\xfb\x02\xfc\xd0\xf0\xf5\x45\xbe\x97\xf0\xf6\x31\xbc\x3d\x18\x79\xc1\xa3\x5f\xd9\x3a\xf9\x5e\xd8\x45\xf9\x6b\x66\x10\x23\x40\x57\x9b\xfd\x16\x1e\xce\xc6\x58\x00\x2c\xee\xbb\xb9\x3a\x8e\xb7\xdc\xbf\x89\x24\x2d\xc8\x81\xc2\xee\xc0\x5e\xd9\x62\xb1\x41\x5e\x96\xdf\x74\xdb\x74\xa2\xef\x05\x33\x4c\x1b\xb8\x5d\x3e\x52\xbe\x6c\xb3\xdc\xcb\xd7\xbb\x11\xb8\xed\xfc\xb8\x5b\x69\x39\xa7\x3f\xa6\x1f\x33\x13\x47\xbb\x25\x29\x55\xd5\x7e\xb4\x49\xcb\x67\x78\xbe\xcd\xbc\xc6\xe2\x00\x61\xc9\xf7\xc7\x64\xfa\xb8\x30\xd5\xfc\x50\x90\x1f\x8a\xa6\x2d\x4f\x4e\xe2\xf8\x87\x62\x9e\x2f\x8c\x6b\xe7\x3c\x5f\x50\x25\x49\xef\x27\x27\xe5\xad\xb3\x22\x2b\x37\xcf\x8b\x0c\x7c\xea\xeb\x27\x63\xc3\x67\x25\x96\x0d\x1b\x9f\x6e\xce\x84\x73\x44\x1d\x0c\x36\x44\xc8\xf9\xc6\x08\x9d\xbd\x1f\x6d\x6f\x4b\x5d\x4c\x28\x3a\x46\x5a\x74\xde\x66\xbf\xf1\x9c\x5f\x66\x17\x59\x9e\xa9\x9b\x88\xb1\x4b\xae\x8c\xaa\x64\x05\xe2\x6b\x92\x41\x36\x4d\x0b\xc1\x7c\xec\x2d\x2f\x56\xa0\x6f\x05\x1f\x2f\xf3\xc9\x42\x0b\xfb\xdf\x59\xa4\x87\x2e\xf2\x18\xeb\xd7\x36\xaa\x99\x09\xac\xe6\xc2\x69\xc0\xb2\x66\x92\x66\xe6\x5c\xbb\x48\xe5\xb3\x0c\x5c\x97\x8e\x9f\x01\x2e\xe5\x70\x0d\x49\x23\xd2\xce\xde\xc0\x33\x5c\x6e\x87\x85\x50\x43\x63\x1a\x1b\xd1\x48\xc9\x3d\x87\x7c\x97\x7b\xa5\xf8\x97\xeb\xc4\x64\x7e\x85\x7e\xc6\xaf\xae\xcd\x0c\xda\x5d\x07\x1c\x5c\xd3\x52\x8b\x57\x98\x89\xa2\x9d\xbe\x49\x58\x25\xcf\xc1\x95\xff\xf4\xe4\xb7\x21\x5c\x0b\x4f\x4f\x26\x50\x86\x3b\xcc\xbe\x7c\xa2\x42\xfa\x2d\x4f\xcb\xbd\xe4\x77\xa4\x36\x29\x5c\x67\x5e\xfe\xee\x1c\x70\x24\xd7\xe9\xe7\xae\xd6\xb0\xc4\xc6\x08\xf8\x9d\xa9\xc7\x71\x71\xc7\x50\x88\xbd\xd2\xa9\xa6\x27\x85\x28\xb0\x76\x4d\x91\xbd\x39\x9e\xfb\x6d\x70\x2d\x5b\x04\x8d\xd7\xaf\xcb\x88\x1c\xaf\x07\xa7\x2a\xfb\x2d\x28\xd8\x54\x15\x16\x05\x89\xea\xe4\x3f\xe3\xc9\x04\x81\xde\xcc\xf1\xf4\x4c\xd3\xa2\xe6\x22\x6c\x56\x6c\xe1\xc4\x4f\x4f\x30\xd3\xf4\x24\x1a\x64\x62\x10\xed\x3e\x9f\x9e\xc0\x69\x37\x3d\x99\xec\x3e\x9f\x7a\x4b\xb4\xfc\xe2\xb2\x2e\xdd\xe4\x7c\x07\xcf\xb6\x59\x96\xb3\x0d\xba\x06\xad\x6f\xb4\xb9\xae\x6b\xd1\xb1\x53\xbd\xfd\xd9\xda\x2a\x2a\xbd\x78\xae\x57\x6c\x44\xa3\x21\xae\x59\x73\x2e\x87\x75\x86\x9b\xbb\xb1\xfb\xbc\xd2\x83\xea\x23\x82\xaa\x93\x3f\x03\xbd\x32\x0d\x34\xf4\xea\x37\xa8\x95\x0d\x27\x41\xd3\x7c\xe4\xf7\xb7\xc0\x31\x8c\x09\x2d\xab\xaa\x88\xe3\x6d\x55\x25\x5e\x52\x60\xe0\x1c\x94\x0d\x1c\x60\x3e\x27\x31\x0b\x9e\x12\xd7\x2b\x32\xe5\xde\x83\xee\xee\x55\xc6\xaf\x9f\x49\xb1\x65\xf8\xf3\xbd\x60\x9a\xe6\xcb\x52\xd1\x6c\x24\x39\x46\x31\xf9\xa9\x4e\xe3\xbf\x0a\xd2\xea\xcc\x6c\xbe\x80\x5c\x9a\x0c\x63\x12\x3b\x93\xfc\xb3\xe2\xb2\x48\x73\xb3\xb9\x56\xf6\xbd\xce\x85\xa0\xf2\x6c\xac\x97\x40\x5a\x2a\x7d\x4a\xa0\x7c\xc5\xea\x17\xb8\x5a\xc7\xbd\x6c\xb4\x87\xb3\xf2\x45\x56\x70\x54\x0e\x97\xb6\xa8\x02\xf6\xc3\xa3\xd4\xac\xec\x6c\x74\x91\x4a\x57\xce\x85\x7d\x3d\xf6\x49\x75\xf9\x38\xcf\x76\x3b\x74\x19\xc2\xf5\xf7\x6a\xbf\xb5\xd9\xcd\xe3\xf3\xa2\xe0\xb2\xf1\x0e\x74\x79\xb6\xde\x34\xcf\x2e\x8b\x9f\xb3\xd5\x25\x57\x25\x16\xb4\x4c\x97\x1b\xbe\xd2\x89\x6c\x3e\x7c\xa3\x99\x60\xd7\x22\x7c\xf5\x06\xe7\xfa\x7b\x5b\xd8\x36\xfd\xac\xbb\xd6\x78\x44\x27\x29\x68\xbb\x79\xf3\x18\xee\x72\x4d\xc3\x41\x44\x7c\xf2\x0b\xb3\xbf\x7e\xb5\xbf\xde\x69\xb1\xe0\x97\xe0\xe9\x57\xb7\xb7\x36\xd9\x5a\x61\xfe\x92\xe7\xcf\x84\x34\xd1\x97\x5f\xf2\x62\xef\xba\xd6\xd0\x67\x51\x09\x7e\xe6\x81\xcd\xdd\x43\x44\x00\x5b\x89\x25\xda\x16\xbe\xd3\x3c\xe2\x4b\x40\x0e\xb4\x0a\x72\x5a\x7f\xc6\xf8\x1d\x84\x42\x24\x2a\x57\xc6\xa7\xba\x8c\xf0\xaa\x13\x5e\x83\xc4\xf2\x70\xad\xc0\x07\xc8\x7f\x34\x38\xf7\x1c\xf7\x4d\x69\xbe\xea\x9f\x06\xb3\x9e\x98\x9a\xd7\x52\x14\x2a\x83\x50\x1b\xf0\x08\x4b\x56\x68\x76\x53\xb3\x73\xd4\x0a\x45\x46\x9f\x3c\x18\x50\x8e\xdc\x59\x1c\xff\xa0\x82\x86\xbe\xac\x75\xab\xcf\x55\x2d\x03\x11\x5a\x30\xd7\xdb\x80\xd5\xa1\x92\x15\x71\xfc\x32\x55\x1b\x3d\x73\xc9\xb7\x1e\xff\xdf\x50\x29\xc0\x52\xb9\xf7\xc4\x2f\x75\xf8\xc0\x99\x4b\x35\x14\x75\x8f\xa4\xd1\x90\x64\x4e\x54\x1b\xbb\xdb\xe6\x6c\xad\xb7\x38\x2e\x48\x07\x99\x92\xb2\xf1\x69\x7a\xe6\xde\x5b\xa6\x2d\x1d\x0c\x88\x7b\x39\x4f\x17\x86\xaa\xc6\x71\x22\x06\xac\xe3\x43\x6d\xbf\x35\x13\x83\x04\xfa\xb5\xe4\x59\x9e\x64\xc0\x80\x99\x52\xef\x49\x52\x55\x13\xf2\x8d\x9a\x8a\x81\x3a\xd4\xa3\xf7\x3e\xd0\x4c\x8b\x25\x2d\xd8\x4b\xb0\xac\x6a\xcf\xba\x31\xe2\x84\xaf\x7d\xc6\x5d\xb3\xde\x65\x46\xac\xa8\x4b\x7d\x6c\x16\xcf\xb1\x7b\x08\x76\xc7\x37\xcf\x36\xa8\xfc\x66\xb9\x1d\x96\xc3\x0f\xef\xc0\x36\x28\x22\x83\x7a\x42\xd5\x86\xfb\x49\x93\xff\xa8\x3e\x94\xe4\x43\xf9\x0d\x18\x11\x41\xae\x88\xd0\x77\xe1\x4a\x79\xab\x5b\xf5\x26\xe1\x84\xc2\x12\xa2\xdd\xc2\xc5\xcf\x60\x2a\x7e\x7f\xec\x65\x7c\xd3\xa1\xbe\xb7\x67\x47\xb0\xcc\xcc\xbb\xde\x5b\xa1\xc5\x73\x3b\xcf\xe8\x97\x52\xd4\x4c\x79\x6d\x95\x34\x97\x0b\xaa\x29\xb6\x7f\x30\x7c\xe9\x64\xd6\x87\x3b\x21\xbd\x26\x4b\x52\x20\xe9\x8d\x18\xcb\x60\xd7\xf9\x2a\x0f\x73\x84\x0b\x2a\xcc\x79\x86\x32\x70\x23\x95\x25\xb4\x7a\xa1\x40\x44\x10\x72\x50\x26\xbd\xbd\xa6\x92\xb3\x28\x9a\x46\xc0\x3d\xd1\x57\xc1\xe0\xbe\xba\x63\x8c\x8c\xdc\x0c\x85\xf7\xbc\xdd\xa6\xb9\x86\x20\x74\x0a\x68\xb0\x14\xd4\x5d\x97\xfc\x77\xa3\xef\x1e\x33\xb7\xe8\xea\x0d\xe6\xbc\x84\x60\x1e\xbc\x05\x4f\x25\xe3\xa7\x8a\x3d\x97\x89\x24\xa7\xe4\x56\xb2\x24\x83\x93\xb1\x58\x25\x63\xda\x1f\x13\x02\xfe\x40\xa8\xdf\x2c\xf4\xbe\x82\xc7\xe5\x66\x98\x8d\x94\x18\x2d\x37\x07\x5d\x32\x96\xf1\xc4\x94\x61\xe4\x14\xaf\x90\x5e\x31\x64\xd2\xaf\x75\xe8\xca\xd1\x85\x26\x12\xb4\xd4\x50\x09\x69\x24\xc3\x4a\xec\xce\xad\x7b\xfb\xbc\x63\x1c\xa1\x6f\x2b\xb1\xec\x29\x77\x18\x5d\x67\x49\x41\x0b\x24\x9b\x5a\x40\x0c\x4f\xa5\xbf\x27\xee\x8d\xf7\xd1\x1d\x50\x63\x5a\x74\x6f\xef\x82\xe9\xc1\xee\x15\xe7\x8d\x02\x41\x45\x1e\x56\x51\xd4\xe5\x32\x1e\x6c\xfe\x27\x75\x0f\xae\x44\xc2\xdd\x46\x39\xb6\x60\xc9\xe9\x70\x02\xb0\x8b\xdc\xae\x42\xfd\x7a\xe6\x32\x32\xf7\xab\x06\x24\x3b\x52\xd4\x82\x4c\xd5\xf9\x70\x02\xf0\x19\x5e\x59\xb0\x1f\xda\xa5\x59\x5f\x68\xea\xbd\x42\x00\x2a\x45\x27\xc4\xeb\xd1\x8b\xee\x39\x51\x5d\xeb\x9b\x4a\x06\x24\x58\x8a\x7d\xb1\xc2\x13\xc1\x2c\xda\x41\xee\x1f\x24\x0e\x0b\xc0\xd7\x5e\x4f\x8f\x68\xb5\xa9\xe6\xc9\x5c\x92\x9a\x64\x7a\x29\x30\x1f\x34\x61\xda\xd2\x70\x63\xcb\xbc\x43\xad\x5d\x11\x26\xd1\xf5\xd8\x04\x61\x35\xf8\xfd\x22\x95\x7a\x8f\x4e\x6b\x92\x07\x0a\x3c\xa4\x2f\xb3\x62\x3a\xa6\x2b\xb1\x34\x0d\x95\xa6\x4d\xf6\x71\xb0\xd6\x54\x77\xa0\x6a\x26\x90\x86\xfc\xe1\x54\x35\x18\x46\x8a\xe3\x8b\x1f\x0b\xef\xd4\x7a\x66\xc1\x85\x51\x6b\xb3\x75\x77\xef\xf0\x7c\xc5\xa5\xea\x12\xe9\x3c\xd9\x69\x9b\x15\xc3\x5a\x32\xd2\xc2\x9c\xbf\xa4\xae\x1c\x37\x1a\xb9\x8b\xfa\x8d\x90\xd9\x6f\x5f\x28\xd5\x4a\x5f\x93\xf1\xf8\x0f\xa7\x27\xba\x0e\xf7\xa6\x5d\xc9\xc6\xab\xa4\xc7\x13\x49\x28\x84\x16\xf8\x35\x4b\xba\x6f\x00\x9a\xf7\x1c\x2a\xf1\xee\x02\x68\xa4\x3b\x9d\x2d\xd3\x3c\x32\x9a\xb0\xac\xb3\x90\xcc\x9f\x4d\x5d\x46\xe6\xdf\x81\x44\xd0\x49\x51\x28\x53\x0c\x8e\xee\x86\x2f\x3f\xf1\xd5\xdf\xb8\x14\xc8\x3a\xf7\x27\xb5\x08\x55\x0f\x8d\xa5\xe3\x59\x61\xd8\x69\x37\x15\xf5\x17\xcc\x1f\x4d\xfe\x0c\x67\x8b\x9b\xcd\xdf\x12\x72\x5b\x3f\x7d\x1f\xf2\x0e\xb5\x60\x10\x9c\x6a\xf5\x6b\x0c\xc2\x93\x90\x16\x1b\x07\x1f\xd3\xd5\x0a\x00\xa3\xe2\xf8\x89\xaf\xb8\xb7\x57\x2d\x77\xe6\x21\xdd\x65\x1a\x03\x0f\xf7\x42\x33\xd6\xf9\xbc\xde\x11\xee\x83\xb1\xf7\x08\x7d\xde\x9a\x7c\x4f\x70\x0f\xa1\xba\x2a\x44\x81\x16\xef\x88\x02\x33\x01\x5f\x23\x6a\xd8\x65\x63\x52\x71\xcc\x5a\x81\x37\xac\x15\xcc\xcd\xdc\x81\xc2\x5d\xa7\xfa\x3a\x95\x95\x67\x6b\x88\x91\x2c\xbd\x55\xc3\x58\x31\xc3\x4b\x36\x32\xdd\x9a\xdb\x2d\xca\xbf\x38\x37\x2f\x7e\xff\xdc\xd4\x0b\xe6\x91\xef\x7d\xa3\x49\x35\x71\xb0\x99\xb6\x00\x2b\x6a\x52\x19\xbe\xc4\xa5\xda\xfb\x11\x2f\xb3\x5c\x58\x7e\x36\x3e\xcd\xce\xfe\x18\xc7\x45\xbf\xa3\x8c\xaa\x92\xfd\xae\x52\x10\xf1\xaf\x2b\x87\x3e\xd9\xba\x04\x91\x38\xfe\x41\xb3\xa1\xba\x76\x68\x36\xfd\xfa\x26\xd7\xbd\xff\xd1\xbf\x96\xab\x4f\x27\x30\x87\xaf\x87\x0d\x25\x74\xcd\x94\x16\x01\xdb\x15\xe8\x35\x92\xa2\x96\xc9\xe5\x08\x42\xd0\x21\x1f\x48\x3b\x33\x3d\x12\x4a\x89\xad\xc9\x65\x36\xbd\x1c\x5d\xc0\x5b\x97\xcf\xd7\x08\x05\x41\xf6\x4c\x6e\x9b\x41\xa7\x3f\x29\x45\x9e\xad\x4e\x94\x4c\x8b\x12\xaf\x4d\x22\x6a\xda\x01\x16\xdc\x90\x70\x96\x14\x6d\xbd\x6e\xc0\xa3\x46\x17\xb9\x58\x7e\x82\x46\x77\xa6\xdb\x84\x4d\x75\x3d\xec\x4c\x7c\xed\x8f\x06\x32\xc5\xd3\x2f\x36\x40\x37\x1b\x0b\xf7\xa7\x1e\x2c\x93\xf1\xa4\x7c\xc5\x3f\xab\xf7\xe2\x9d\x2d\xc5\x4f\xe5\x9f\xa7\x49\xd1\xd0\x28\x1f\xe9\x67\x47\xa2\x23\x9d\xec\x48\x89\x3d\xb4\xbc\x0c\xcc\xbe\xeb\xe7\x5d\xb5\x7b\x1c\xfa\x3f\x1a\x58\xff\xd6\xda\xa1\x18\x29\xb1\x9b\x39\x49\x5b\xb3\x9d\x4a\xec\xc8\x94\x77\x5c\xce\xf7\x0c\xdf\xb4\xce\x85\x66\xbc\x87\x7b\xe5\x76\x72\xe6\x97\x68\x56\x81\xfd\x31\x95\x03\xde\xcd\x10\x09\xf6\x30\x43\xd8\xe7\x14\x7f\x65\xd6\x02\xaa\x18\xf1\xa2\xdc\x4b\xc3\xd3\x95\xcc\x3e\x7b\x12\xc1\xbe\x7e\x69\xf8\xf7\x5e\x79\x26\x66\x89\x60\xa5\x2d\xee\x53\x96\x5c\xeb\xbf\x25\x21\x47\x9a\x40\xc8\x14\xfb\x9e\x15\xc9\x9e\x2a\x50\x9c\x69\x7e\x39\x21\xe4\x9c\xa5\x5a\x9e\x0f\x4b\xda\x13\x32\x3c\x52\x12\x4d\xd9\xde\x02\x21\xde\xea\x66\x4e\x05\x55\x62\xea\x86\x36\xa5\x62\x30\x21\x1e\x87\xf4\xf3\x31\x96\x55\x73\x78\x78\x2b\xec\x2b\xc9\xaa\xaa\x66\x66\x41\xa6\x00\x51\xf4\xc8\xba\xac\x5d\xd5\x25\xfb\x2e\x51\x64\xd8\x69\x51\x31\x40\xde\xd7\x63\x2f\xb2\x23\x1c\xb3\x60\x12\xd7\x27\x2a\x44\x8a\x40\x11\xb2\x4e\xfa\x05\xe8\x3a\xb2\xd5\x8a\x23\xe0\x52\xbb\x45\x71\x0c\x69\x2e\xcd\x43\xe2\x3d\x99\x65\x0b\x76\x45\xc2\xb9\x48\xe9\xef\xd0\xff\xf4\x22\x07\x80\x92\x5a\x2b\xb3\x67\xe3\xd3\xfd\x99\xd3\xc6\xec\x07\x03\x52\xce\xf7\x8b\xa0\x9c\xc3\x91\x56\x24\xaa\xa1\x52\x86\xe4\x72\x90\x19\x71\xba\x9e\x9f\x9f\x12\x1b\x40\x2e\x38\x1a\x8c\xc0\xd2\xb6\xe3\x42\xd5\xcc\xaf\x9e\x02\xcf\xa8\x79\x07\x0a\x68\xf3\x70\x42\xfc\x93\x02\x56\xba\xe9\x02\x58\x1d\x79\x4a\x52\x2b\xc8\x4a\x7b\xc9\xd2\xad\x7d\xf0\x38\x5c\xd2\xbe\x00\x41\x89\xeb\xa4\x7d\x1b\xc6\x73\x15\x11\x42\x85\x96\xa8\xdd\x42\x0a\xa6\x3b\x65\x99\xff\x3c\x14\x35\xe6\x59\xad\xab\x08\x88\x13\x10\xd4\xb6\xee\xd7\xad\x7e\x41\x83\xac\x7e\xe1\x29\x19\x4c\xea\xcc\xf6\x6c\x6b\x95\x35\x48\x69\x38\x48\x5d\x89\x66\x76\x44\xa7\xc3\x09\x3d\xda\xd8\xb0\x32\x5c\xd8\xaf\xf4\x39\xdf\x1f\x1f\x1c\x46\xa1\x5b\x07\xbf\xe2\xf1\x6d\x46\xc0\x3a\xba\x7b\x6b\xe1\x99\x90\xdb\x54\x57\x92\xe8\x1d\x05\x43\x5a\x2b\xda\x7d\x21\xf5\xbb\xc0\x55\xc4\x6d\xc8\x4b\xae\x1e\x69\x51\x34\x2b\x2e\x1f\x03\x45\x79\x0b\x18\xa3\xd6\x5c\x11\xcf\xf5\xbb\x12\xd5\x35\xfc\x25\x24\xf3\xf5\x62\x43\x56\x3f\xe3\xd7\x3b\x21\x95\x8d\x11\x76\x95\x01\x2a\x31\xfb\x47\x22\x51\xe5\x4b\x6d\x74\x51\xbe\xca\x94\x90\xcf\xcb\xef\x61\x4b\xb3\xbe\x74\x34\xcf\x5f\x26\x90\xd4\x7c\x70\xdc\x45\x27\xa5\xf7\x53\xda\x19\xee\x12\x5e\xd1\x40\x3c\x5f\x3d\xc1\x66\x63\xd2\x8d\x72\x80\x21\x70\xef\xcf\x4c\x84\xe9\x55\xb6\x2d\x99\xe2\xee\x23\x20\x36\x97\x6c\xbe\xa8\xc7\xe3\x5f\x8e\xb1\x5e\xa8\xac\x01\x22\x1b\xf6\xd5\xc5\x8a\x2f\x60\x41\x4c\xac\x13\x94\xae\x38\x8e\x95\x1d\x33\x38\x88\xce\x59\xe1\x2e\x82\xfc\x6f\x4a\x9c\x99\x2f\xef\x85\xb3\xac\x2f\xda\x77\x30\x55\xd5\xf1\xf2\xdc\x65\x25\xfa\x1c\x0c\xae\x85\xcc\xa7\x38\x1e\x33\x06\x2a\xa1\x9a\x0a\xfd\x84\x58\xa2\xd8\x6c\xe5\x8d\x8d\x3d\xa0\xa5\x21\x46\x12\x16\x14\x15\xf5\xde\x0c\x3b\x35\xac\xc9\x9d\x5d\x2f\x2f\x41\xf3\x47\xa5\xd5\x65\xa5\xcc\x1d\x9a\x19\xf5\xbb\x3d\x38\x96\x57\x33\xb5\x76\xa4\xce\x44\x1c\x8b\xa1\xf7\x7c\x7f\x0c\x07\xad\x6b\x8f\xa9\x87\xd6\x49\x34\xe3\x6d\x06\xe5\x3c\xd5\xa3\x82\xbf\x87\x29\xe6\x0d\xda\xe3\x46\x8f\xd0\xcf\x50\xee\x6f\x56\xeb\x2f\x74\xcb\xbf\xb7\x4f\xa9\x19\x99\x3d\x13\x7d\x6f\x1e\xab\x2a\xed\xbb\x19\xd0\x13\x14\x5e\xae\xf5\x6b\x93\x3e\x7c\xe1\x27\x81\xe5\xea\xa5\x80\xe7\xd3\xc0\xa6\xac\x6b\x6f\x8e\x19\x93\x50\x61\x1d\x44\xea\xdc\xbc\x81\x26\x9c\x99\x07\xdd\xbc\x59\x82\xbf\xd9\xdf\x94\x29\x8e\xd6\x1f\x99\x22\xd3\xa4\x7e\x3c\x57\xb3\x30\x71\xfd\x89\x58\x3d\x1d\xbe\x22\xd3\xfa\xd3\x99\x82\x98\x1f\x90\xcf\x34\x0b\xb5\x70\x05\x0a\x8b\x24\xac\x91\xda\x86\x9e\x15\xb3\x30\x97\xa9\x01\xea\xb6\x89\x68\x41\x6c\x5d\xef\xc5\x79\x71\xa4\xa6\x31\x85\xba\x0a\x42\x08\xe9\xd9\xd4\xac\x00\x6b\x2c\x41\x53\xbb\x18\xcc\x0d\x28\xf2\x66\xe6\xfc\xf5\x97\x4c\x2d\x94\xc1\xbd\xbe\x1f\x4d\xdb\xcb\x0f\xe4\x1f\x56\x42\x8e\x7b\x0a\x76\xfc\x1e\xf6\x58\x1e\xc7\xf5\xde\x3f\xb6\x17\xff\xf9\xfd\x1d\xf2\x10\x4b\xf6\x77\xe1\xf0\x47\x4f\xf2\xf3\x3f\x82\x29\x5c\x68\xaf\xe3\x58\x7b\x63\x1d\xf1\x85\xa5\x45\x33\xd6\xc9\xbc\x20\x12\x3e\x96\x4c\x53\x26\x3c\x3e\xc0\x77\x44\xaf\x83\x31\x8e\x0a\xfe\x59\xbd\xcb\x2e\xf2\xac\xb8\xb4\x2d\x2c\xe3\xf8\x46\xb3\x9f\x9e\x09\xa6\x16\x08\x7f\xde\x70\x9e\x9b\xd8\x5f\x0c\xd1\x2d\xda\x2d\x9f\xaa\x63\x56\x77\x0a\x40\x32\xad\x7b\x87\x59\x17\x74\xe9\x6d\x01\xba\x66\xe3\xd3\xf5\x59\x6e\xd9\xbf\xb5\x8d\x76\xb3\x61\xf9\x7c\x0d\x91\x21\x37\x96\x17\x3d\xb5\xc1\x57\x37\x10\xd6\x29\x8e\xf1\xaf\x57\x39\x63\xc2\x04\x7f\x4a\xfb\x0c\xbf\x9e\x92\x94\xed\x93\x14\xc9\xc3\x8e\x65\x56\xb2\x51\x71\xac\xce\xd8\x52\x17\x52\x8f\x65\x6f\x33\x42\x0f\xe1\x32\x8e\x93\x2b\x91\xb8\x47\x1a\x21\xbb\x15\x11\x50\x77\x27\x3b\xf0\x7c\x2e\x78\xc2\xe9\x86\x2e\xf5\xe2\xa6\xbb\x38\x4e\xde\xea\x2c\x75\x71\x84\xfa\x4f\x01\xdb\xd7\xb0\xda\x7d\xcf\x3f\x43\x07\x12\x9f\xe3\x5c\xea\x2d\x43\x53\xd3\x11\x7f\xd6\x30\x62\xab\xee\xd1\x8a\xe5\x75\x23\x7a\x22\x54\x6f\xad\x68\x4a\x0e\xcb\x01\xdb\xc0\x29\x71\xc0\x81\xb1\x03\x72\xd0\x9b\xb2\xbd\xa2\xcd\x71\x43\xe8\x17\xd6\x6c\xa4\x37\x6e\x68\xe6\x60\x66\x37\x8e\xf5\xd2\xef\xeb\xb1\x5d\x1a\x0e\xc3\xea\x50\x97\xce\x36\xfd\xad\x48\x0a\xcf\xce\x17\x9f\x7d\x63\x23\xe2\xa4\xe7\x32\x14\xb1\x43\xdd\x48\xad\xff\x1c\xd3\x3d\xb6\x37\xb4\x9f\x68\x50\x78\xda\x20\xf0\x0d\xfa\x8e\x37\xe2\x7f\x1c\x8f\xe1\x90\x3a\x62\x67\xe1\xe3\xd5\xfe\xb5\x19\xbb\x49\xb9\xc3\x92\x4a\xd6\x1f\x9f\x26\xf2\xb8\x3a\x4a\x35\xb9\xa3\x3e\xb2\x47\x55\x95\x84\x32\x3d\x78\xdc\xdc\x2a\xb1\xab\x05\xdc\xe3\x37\x1d\xc3\x1d\xb0\x58\x28\xfb\x83\x9a\xb1\x66\x0d\x6b\x62\x62\x48\x2c\xa1\xfd\xa4\xc9\x07\xd5\x54\xe0\x18\x3f\x14\xa6\xd0\xc4\x8f\xc4\x31\xb2\x67\xa7\x52\x6f\x8d\xdb\x1f\x12\x17\xc0\xeb\x85\xfe\xc9\xa1\x4d\x8f\x30\xea\xed\xdf\xe0\xcf\xc1\xc2\x2b\x25\x9c\x46\x38\xd4\x51\xa8\xbb\x74\x07\x93\x57\x61\xd3\x1e\xc7\x27\x5a\xe6\x6c\x39\x92\x5a\x1f\xbf\x89\x5f\xa7\x9d\x28\xbc\xa7\x8b\x28\xef\xa8\x9a\xb6\xba\x4a\x8f\xb7\xa5\x63\xe4\x8e\xa4\x7e\x2f\xda\x63\x58\x2f\xaa\x5f\x7c\x46\xb7\xe0\xd7\x28\x09\xc0\x59\xf6\x2f\x78\x94\xc2\xf8\xd2\xbf\xc2\x83\xb9\x8a\x69\x0c\xb3\xc4\x61\x96\x04\x6e\x2d\x8b\xac\xdc\x24\xbe\x3c\xfc\x37\x1b\x17\xbb\xf3\x72\xb8\xbe\x54\x18\xb9\xfb\x25\x94\xac\xea\x0c\x1d\x9a\x46\x05\x4e\x12\x47\x73\x74\x6e\x67\x3f\x7d\x87\xe2\xd5\x5c\x62\x85\x37\xd4\x3f\x84\x78\x95\xa1\xc2\xc5\xd2\x2b\x67\x3b\xee\x70\x2a\x3d\xae\x0c\xc0\x2a\x51\x2e\xa7\xa5\xd9\xb3\x73\x09\xc7\x4d\xbf\x74\xba\x0f\xf4\x18\x48\xcf\xfe\x8c\x49\xf7\xac\x44\x4a\xec\x8a\x1e\x04\x2f\x8c\x76\x3b\x63\xfb\x61\x41\x0b\xb6\xaf\xa9\x74\x6e\x73\x1e\x11\xfc\x7a\x19\xcb\x8d\x82\x6d\x98\xeb\x61\x3c\x20\x0f\x81\x04\xc3\x0c\xd5\x10\xd0\x42\xb3\xb3\xfb\x10\x2d\xea\xb9\x4a\x14\x21\x34\x59\x9e\x8f\xc6\xe3\x49\x55\x2d\xcf\x86\xfa\x87\x16\x1b\xde\x65\x09\x66\xd4\x7b\x8d\x73\xf3\x40\x28\x60\x71\x28\xe2\x34\x2f\x78\xf4\xe2\x5b\xff\xfc\x85\x2c\xfa\xe5\x7c\xbd\x20\x07\x6f\xd1\x70\xee\x60\xae\x9b\xb6\x35\x8a\x8d\x4f\xd5\x19\x6f\xda\xd6\x0c\x06\x8a\xb8\x97\x73\x65\x4d\x68\x58\xf0\xae\x71\x88\x07\xa3\x59\x57\x0e\xf2\xcf\x91\x59\xbf\x3d\x50\xa9\xff\xf3\x35\x5e\x28\x89\x82\x22\x4c\xb0\x2e\x6d\x1b\xa8\xbf\xc4\xa9\x60\xc2\x3f\x5a\xe9\x60\x90\x92\x62\xde\xb2\x31\x99\xa7\x8b\x05\x13\xa6\x6d\xa0\x6f\x13\x5e\x15\x83\x8c\xca\xa3\x79\x3c\x99\xd8\x5e\x42\x83\x16\xeb\x8d\x28\xa7\xdf\x69\x1e\x09\x93\xbf\x17\x2a\x75\x17\xca\x5d\x7a\x3b\x7c\x07\xf7\xc1\x45\x70\x55\x2b\xa9\x7f\x86\x75\x5f\x25\x7b\xd3\x08\x6c\x8b\x89\xe3\x17\xde\xc1\x28\xcb\xef\xb8\xc8\x4a\x76\x9b\xe8\x21\x34\xdf\xe6\xd9\xa2\x07\x10\xcd\x11\x63\x62\x26\x30\x7a\xe1\xd4\x32\x48\xfa\x5d\x59\x57\x30\x8d\xc0\xd0\x08\x5e\xa7\x3c\xd1\x09\x71\xe6\xf5\x9b\x38\xde\x73\x63\x94\x7e\x70\xc5\xa3\xd7\xa8\x6b\xac\xe4\x81\x9e\x05\x02\x11\x1b\xcb\x13\xb8\xa0\x84\x17\x5f\x67\x9a\x0d\x9e\x49\x60\x15\x52\x2f\x36\x7d\x7c\x34\x5e\x59\x2b\x27\x64\xd4\xb0\x06\x93\x51\x17\x00\xab\xd5\x67\xe5\xec\x27\x77\x49\x6b\xd2\x04\x46\xae\xf7\x89\xcd\x5b\x77\x2d\xe3\x9d\x0a\x8d\x96\xa1\x68\xaf\x0e\xb6\x88\xec\x18\x33\x64\x6e\x96\x1c\xcf\xc4\x8c\xfb\xbc\x35\x27\x2f\x9c\x89\x77\x31\xba\xd8\x67\xb9\x22\x53\x61\x0c\xc9\x5c\x83\x44\xd0\x20\x85\x03\xe3\x0c\xc5\xa8\x64\xa6\xc5\x3d\xfc\xa4\x9b\x81\x8c\x78\x62\x22\x44\x83\x9b\xa3\xe6\x38\xee\x1c\x52\x48\x65\x12\xd9\xc4\x98\x95\xca\xd1\xc5\x25\xdc\x37\x6a\xc1\xdb\xfc\xac\x2a\x34\xf9\x71\xef\xdd\xc3\x2c\x71\x89\x98\xcb\x49\xbd\x04\xcc\xcb\x49\x61\xf9\x91\x69\x01\xcd\x0d\xbb\xc6\x0a\x6f\x14\x52\xde\x8a\x69\x63\x29\x8e\xa9\x62\xe6\x7e\x0d\xa2\x93\x68\x60\xf4\x87\x75\x7b\xa3\x88\x4c\xc3\x77\xa0\x9c\xd2\x15\x37\x10\x01\x74\x9a\x8b\x74\xf9\xe9\x12\xcc\x57\x60\x81\xd6\x8f\x44\xcd\xfc\x47\xaf\xb9\x6a\x9a\x04\x5f\x8e\x88\x5f\x41\x61\x41\xd1\x68\x1c\xda\xb3\x02\x95\x9b\x73\xd8\x6d\xbd\x30\x65\x28\x53\x84\x5b\x4d\x11\x6b\x14\x05\x35\xa2\x93\x95\xae\x0a\x3a\xaf\xc9\x10\x0e\x18\x94\x1b\xd8\x23\x86\x09\xa6\xb8\x37\xfa\xcd\x9d\xed\x65\x89\x22\x52\x7b\x59\xbb\x15\xe0\xfd\x0e\xe6\xc2\xbd\x0d\x66\xc3\xbd\xed\xf1\xe6\x0a\x50\x3a\xa1\xe7\x85\xee\xd1\x48\x50\x2c\x5e\xd6\x57\x0e\x45\x4b\xcc\x35\x5f\xf5\x62\xbe\xac\xad\xf7\xeb\xc7\x47\x6e\x38\xef\x2e\xe0\x91\x37\x5d\xed\x77\xae\x50\xe8\x0b\x7e\xc5\xcb\x79\x7b\xc3\x00\x37\xce\x1d\x19\xbf\xe8\x53\x53\xcf\xf7\x49\x34\x68\x57\x40\x23\x74\x18\x84\xf1\xed\xba\x39\x95\x23\x77\xa2\x0d\xe5\xa8\x79\x9e\x91\xc0\x35\x22\x1a\xb4\x53\xe0\x7d\x0d\xcd\x1a\xe6\x19\xad\x9e\x58\xaa\x71\xb0\x67\x92\xd7\xd2\x97\xa9\xfc\xc4\xa5\x09\x4a\xd8\xa1\x27\xa9\x2a\x41\x6e\xed\x20\xa1\x3d\xb0\x9b\xae\x2f\x0e\x90\x39\x51\xa3\xff\x8e\x91\x88\xd0\x93\xb4\x61\x1b\x52\x72\xf5\x63\xc1\x57\x18\x98\x2d\x49\x5b\x83\x91\x7a\x14\xb3\x39\x3f\x00\x86\x16\xa0\x8e\x74\xcd\x22\xa1\xdd\xb7\x5f\x00\x0b\x23\x8e\x1b\xf9\x81\xd8\x54\xa7\x67\x69\xf7\x05\x96\xaf\xba\x28\xc8\xef\xbb\xc1\xaa\x87\xd5\x8e\x99\x66\x73\x8e\x37\xa9\xb1\xa0\x5a\x76\xb5\xde\x4d\x13\x0c\x38\x21\x54\x38\x5e\xb5\x64\xe3\xd3\xf2\xac\xc5\xad\xd5\x3c\x6b\x69\xf9\xfd\x36\x47\x57\x2e\x68\xce\x44\xd3\xa1\x70\x4f\xf4\x00\xee\x17\x3d\x80\x96\xec\xbe\xde\xcb\x17\x5d\xeb\xea\x8e\xce\xef\x9b\xbd\x94\xbe\xcd\x80\xf9\x1c\x91\x80\x43\x37\xfc\x54\x01\x90\x0b\xf6\xbe\x15\x01\x17\xec\x93\x21\xfd\xf5\x95\xb2\xa1\x47\x35\x15\x3f\x95\xa7\xd2\x46\xd1\xce\x98\x0c\xd4\x85\xcd\x19\x71\xcc\x9c\x67\x51\x1e\xc7\x1d\x24\x4e\x92\xc3\xd2\x36\xce\x8b\x9a\xe4\x91\x59\xac\xce\xb2\x18\x0e\x3d\x03\xb8\x03\xc3\x5f\x64\xc0\x24\x64\xf6\x54\x85\x8e\x59\x06\xc0\xbd\xd5\x3b\xc7\x11\x7a\x77\xd8\xdb\x44\xee\x37\x41\x86\x80\x7a\x94\x9e\x2e\x2d\x3b\x4a\x55\x83\x57\x73\x6d\xd7\xa7\xc1\x1a\x1e\x50\xc4\xd2\x39\xfb\x63\x0c\xc3\x50\x2a\x12\xda\xa0\xab\x40\xb6\xd2\x32\xa7\xc9\x0a\xd2\x95\x5c\x60\xee\x89\x37\x20\x6b\xd7\x1a\x9a\x99\x93\xa7\x29\x6a\x09\x4d\xc2\x0a\xa2\xc5\x17\x90\x5d\xcd\xf7\xd3\xf4\xcc\x5b\xc2\xa9\x13\x59\xe7\xa9\x5e\xb2\xf5\x3a\xdc\x43\xcf\xda\x37\xcc\x66\x26\x49\x6f\x3f\xda\x40\xd0\x79\x80\x51\x00\xf0\xa0\xb2\xaa\xf2\xb6\xad\x5a\x76\x59\x08\xc9\x87\x78\x51\x57\x3b\x58\x6e\x78\xb2\xa7\x79\x13\x6f\xa0\x8b\xc6\xe5\x84\x66\x71\xbc\x1f\xa5\x17\xe2\x8a\xcf\x1a\xba\xcb\xdc\xe9\xff\xaa\xaa\x40\xc2\x37\x15\xc1\xd6\xca\x09\xfd\x1b\x78\x43\x4b\xbe\x92\xe9\x75\x70\xdd\xbf\x09\x8f\x6f\xcd\x4c\x7c\x8f\xe6\x3f\xe4\x36\x29\xea\xcd\x50\x55\xfe\x13\x9b\x2f\x08\xb1\x28\xf9\xee\xa6\xcd\x97\xad\x7a\x2a\x30\x34\x70\xb4\xde\xaa\x3a\x3c\x9b\xa3\xaa\x4a\xb2\x21\x6b\x1f\x01\x54\x85\x66\x5d\x2f\xb0\xa4\x23\x27\xa2\x0a\xee\xba\xd1\xae\xe1\x10\xd4\x03\x2b\x3c\x90\x35\xbe\xad\xab\x30\x32\x10\x8b\x9c\x0c\x44\xbd\xb1\x40\x7d\x58\xd3\x1f\xa0\xe3\xd8\xb2\x94\xe6\x99\x07\xef\x7b\x2d\x92\x5b\xd4\xda\x75\x44\x07\xe6\xbe\x21\xf4\x39\xf7\x05\xd1\xc1\x04\xec\xee\x7c\x5b\x65\x97\xc0\xe8\x7c\x26\x70\xa7\x1b\xda\x26\x83\x85\x85\x31\x40\xf6\xac\x5c\x9b\xc6\x59\xcd\xef\xa8\x54\x61\x6a\x86\x26\x2f\xd3\x68\x1c\x99\x89\xe5\xa3\xda\xc8\x7b\x98\xa8\x99\x9c\x8e\x0d\xa6\x19\x64\xf7\x8c\x29\x02\x7d\x95\x67\x5d\x15\x76\x62\xd8\xe8\x44\x66\xb4\x56\x35\xb4\x7e\x57\xb3\xfd\x16\x1f\xab\x52\xb7\x19\x99\xf4\x96\xf9\x6f\x67\xf7\xfd\x04\x12\x75\xe6\x5e\xf7\xdb\x69\x60\x2d\x6b\x9e\x1f\xce\x9d\xfa\x0a\x4d\x98\x31\x42\xcb\x0e\x97\x60\x98\x14\xde\x60\x61\x41\xad\xa6\xe3\x7a\x0d\x96\xc1\x30\x5c\x06\xa2\x39\x3c\x9d\xfd\x0a\x9a\x7b\xa4\x16\x3d\x3e\x36\xbe\x7f\x97\x05\x35\x04\xee\xf0\xa6\xe6\x7c\x1c\xc7\xc9\x98\x31\x69\xf0\xdd\x7f\xb3\x09\xbf\x4f\x97\x9f\x92\xa3\x66\xd8\x63\x42\x6f\x25\x22\x9c\xe9\xfe\x53\x63\x10\x07\x2b\xe7\x00\x51\xd1\xdf\x39\xdb\xab\x69\x08\x0f\x5a\xf7\xce\xa5\xe8\x33\xde\xb0\xe7\xae\x31\x65\xac\x0d\xc4\x2a\x2b\x35\x59\xfa\x5e\x7f\x37\x6d\xe5\x40\xa8\x5c\xab\x1e\xa5\xd2\x2b\xa3\x9d\x8b\x78\xed\x7a\x2f\x76\xed\x66\xe1\x9a\xb4\xdf\xbd\x46\x85\x1f\x9a\x4d\xfa\x89\xbb\x78\xc9\xc7\x5a\xa4\x0b\x68\xe5\x21\x07\x1a\x8c\x76\x3b\x82\xf0\x4d\x1c\xf7\x37\xb3\x68\x72\x1f\x96\x2b\x98\xae\xf7\x5a\xcb\x63\xd3\x6d\xf2\x6e\x16\x5d\x7b\x85\xef\x44\x56\x28\x8e\x48\x78\x65\x2b\x5b\xf8\xd5\x78\x5b\xb5\x86\x92\x19\x5c\xbb\x66\x97\xcc\xfb\x03\x6d\x0f\x44\x33\x90\x7c\x77\x7d\x80\xd3\x80\xc6\xe0\xc9\x84\x3f\xa0\xb5\x9e\x2e\xa9\xef\x80\x8f\x29\x8e\xdd\x3d\x22\xcf\x39\xc2\xfe\x88\xed\x1b\x5d\x7e\x82\xd0\x57\x60\x8d\x65\x34\xcb\x13\xd2\x67\x7c\x76\xa4\x15\xf6\x26\xd7\xb6\xa2\x80\x08\xec\x60\xeb\xdf\x9e\x24\x6f\x80\x6b\xd5\x43\xaf\x21\xd3\xba\x34\x84\x76\x7c\xb9\x82\xd5\x70\xa0\xcf\x7c\x4c\xf8\xdf\xbe\x70\xbe\x58\x45\xe0\xad\xd9\x7b\x63\x8a\x1b\xf2\x8e\xfd\x47\x6e\x8f\x6d\x01\xfd\xa5\xd5\xbf\xc3\xc1\x6f\x04\xa1\x4d\xbf\x03\x76\x8b\xc7\xd2\xf4\x19\x88\x8a\xd3\xdf\x0e\xf4\x2f\x7e\x70\x22\x0c\x1c\x12\xce\x7b\x21\x0c\x00\xa0\x67\xd8\x84\x5c\x46\x8d\x42\x1c\x16\x83\x17\x36\x41\x1c\x70\xc3\xfc\x71\x36\x3e\xe5\x67\x7e\x41\x86\xe5\xe3\x83\x01\xf9\x6b\x66\xf0\x8d\xeb\x48\x26\x98\x68\xce\x17\x04\x61\x6c\x76\x9c\xbd\x1b\xbd\x11\x65\x3b\xa4\x41\x1b\xf5\x73\xc7\x03\xd8\xcf\x1d\xf7\x70\x3f\x41\x0d\xc9\x2d\xa9\x64\xea\x40\xc1\xef\x79\xb9\xdd\xb5\x0b\xf7\xa2\xdb\x17\x7c\x88\x7c\x73\x55\xf1\xd1\x72\x33\x54\xa3\xe5\xc6\x83\x1a\xdc\xfa\xca\x5e\x5d\x1f\xf2\xd8\x3a\xa9\xc7\x23\xdf\xf0\xa0\xdc\x15\x3e\x9e\x8d\x67\x6a\xea\x71\xec\x57\xc7\x52\xf1\xa9\x1f\x4a\x84\x7b\x0e\xd6\xd6\x9d\x23\x80\xc4\x0a\xa1\x39\xdf\x83\xa1\x16\xa8\x1f\x2e\x50\x94\xaa\x5b\xff\x31\xe0\xdd\xed\x09\xba\x12\x4b\xdf\x07\xd3\xba\x9c\x6b\xfe\x50\x32\x31\x2a\x79\x6e\xb5\x11\xb6\x15\x01\x16\x67\x55\x45\xf0\x1c\x31\x96\xd1\x52\x67\xd8\xe5\x19\x98\x24\x96\x5a\x7a\x41\x3f\x75\x08\x6e\x10\xc7\x72\x24\x7d\xed\xfd\xf9\x84\x64\xeb\xe4\x82\xc7\xf1\x85\x51\x77\x21\x26\xff\x87\x22\x22\x8c\xe1\xac\x37\xb2\xfc\xe1\x22\x70\xea\x64\x6c\x4c\x6e\xf7\x6c\xbe\xa8\x31\x3a\xd9\xf8\x34\x3f\x0b\x53\x9d\xe6\x83\x01\xd9\xe3\x8a\x0e\xda\x67\x92\xcd\xf3\x85\x96\x52\xe1\xa4\x2f\x5d\xc9\x8d\x9a\xe3\x38\xd9\xb3\x4b\x91\x94\xb4\x0d\xc5\x0d\xf0\xd8\x28\xb2\xe6\xcd\x7c\xc3\xc9\x69\x7e\xae\x1b\x35\x1c\xe2\x98\x2f\x5d\x0a\x2d\x72\xaf\x19\xb8\xbe\x6f\x13\x42\x37\x6c\x39\x52\x22\x21\xbd\xe5\x88\x6f\x77\xea\x26\x21\x71\x0c\xf7\xec\xe7\xe3\xd9\x9a\xed\x78\xb2\xc6\xd5\xb6\xd6\x0b\xb3\x00\xab\x79\x98\x0e\x07\xac\x1a\xc7\xfd\x74\xb6\xd1\x29\xd1\xac\x83\xba\xcb\xf8\xeb\x2c\x11\xc6\xd6\x23\xf0\x3b\xa5\x9b\xd1\x72\x33\xd8\x8a\xa4\x24\x16\x31\x92\x4c\xcd\x84\x80\x29\x40\x56\x1e\x9b\x9d\x38\x4e\xd6\x6c\xe3\x35\x6b\x4c\x88\x35\x62\x31\xae\xf9\xc6\x3e\xe1\xb9\x5e\xa0\x74\xc5\xd0\x4e\x7d\x4d\x95\x98\x6e\xa8\x2e\x70\xba\x9f\xed\xe7\xf9\x1f\xf6\xa6\xea\xc5\xb4\xa4\x18\x94\x69\x9a\x55\x55\x92\xce\xcc\xc2\x72\x1d\xf5\x20\x5f\x67\xd1\x72\xaf\xa2\x69\x34\x80\xd5\x1f\x91\x43\xef\x85\x31\x39\xa0\x2b\x10\xbb\x38\x8d\xe0\xd3\x5b\x9e\xae\x22\xca\xe9\x8a\x1c\x94\x1e\x9f\x38\x7e\x8a\x1b\x8d\xfe\x54\xa0\x26\xb8\xd5\x54\xb6\x73\x6f\xd5\xcd\x2e\x2b\x2e\x59\x7f\x4c\x3b\xd7\x3e\xeb\x68\x19\xf3\xad\x79\xaf\x1b\x37\x28\xcb\x3c\xdb\x5d\x88\x54\xae\x30\x8e\x5f\xe3\x85\x3e\x44\x11\x8a\xad\x0e\x30\x8a\xba\xb8\xa2\x0e\xd8\xbb\x93\x40\x32\x9f\x20\x7e\xbb\xe6\x06\x47\x59\xa9\x7b\xf9\xba\xc8\x6f\x12\x52\x55\xca\xe9\x84\x0c\x13\x00\x9d\xaa\xaa\xef\x54\xa2\x7c\x17\xb1\x8f\x3c\xd1\xb4\x60\x6c\xaf\xa3\x60\xac\xc9\x81\x04\xe6\x23\x66\xb0\x6e\x03\x9d\x25\x58\xc1\xc8\x6c\x09\x86\xd1\xbe\xf5\x48\xb9\x4d\xa5\xd2\x32\x5e\x51\x2b\x1a\x8c\xab\xb2\xa6\x23\xe0\x84\xd4\xdc\x1c\x52\x6f\x0e\x69\x37\x47\xe6\x52\xd8\xdb\xee\x24\x03\xdc\xc8\xd1\x72\x73\x3e\x19\x8f\xab\x4a\x82\x6d\x9c\x49\x32\x9c\x2c\xf0\x2b\xde\x3a\x65\xf5\x03\xa9\x09\x9c\xc1\xba\x78\xa8\x4c\x51\x84\xa6\x0c\x4d\x6d\x45\xd8\x95\xfa\x14\x43\x0d\x5c\xe3\xb3\xa5\x26\x25\xba\x21\x28\x17\x5d\xa7\x99\x6e\xb9\x49\xe5\x43\x95\x94\x10\xfc\x9c\xdc\xa6\xec\x3b\x7d\xd0\x78\x8d\xa3\x11\x8c\x54\x44\x7a\x17\x92\xa7\x9f\x0c\xe9\xa9\x8b\x81\x19\x8b\xe3\xc6\x0b\xc4\xe6\x76\xd6\x87\x7e\x67\x71\x7f\x5a\x7b\x46\x37\x62\x84\x80\xbd\xea\xd1\xea\x49\x2f\x8d\x63\xdc\x2c\x41\x4d\x7a\xc3\xf8\xc5\xfb\x1a\xbc\xcf\x8d\x6b\xee\xf9\x82\x16\xfa\x3f\x54\x28\xb9\xb9\x0e\xe7\xd9\x33\x67\x60\xcd\x24\x73\xe9\xcd\x21\x15\xec\x16\xf1\x42\xa7\x3b\x9e\x64\x74\x4c\x20\x9a\x0c\x3c\x00\xc0\xe8\xa1\x57\x18\x42\xae\x57\x3e\xfc\x82\x19\x86\xa0\x46\x2d\xb0\x51\xe7\x22\x03\xe4\x46\x51\xac\x31\x70\x1d\x7e\x67\x0f\xd8\x40\x7d\xa4\x79\xde\xa5\x90\x92\x2f\x55\x44\x23\xb1\x5e\x47\x06\xd8\xb4\x99\x26\xdd\x65\x2a\xcd\x01\xb2\xee\x48\xb2\x72\xc7\xf3\x1c\xa4\xb5\x88\x46\xeb\x34\x2f\x79\x00\x7a\xc6\x9d\xa8\xb3\xdc\x5a\x86\x45\xef\x71\x24\x45\x56\xbe\xdc\x89\x3c\xcf\x8a\xcb\x67\x69\xa9\x5c\xec\x6c\xf3\x2e\xe0\xfb\xb3\x22\x5d\x2e\xf7\x32\x55\xdc\x41\x38\xba\xf4\x9b\xb4\x6c\xbf\x5c\x8a\xed\x4e\x94\x50\x4c\x70\xad\xfd\x90\x3b\x66\xfa\xb1\x40\x82\x94\x4a\x9e\x7e\x11\x70\xca\x28\x8d\x00\xbb\xd1\x83\x9a\x72\x40\x54\x13\xbe\x6d\xc3\x6e\xf9\xde\xd9\xdc\xe2\x68\xe9\x63\x6d\x9d\x8b\xeb\xe9\x09\x9a\xbb\x9c\x9e\x74\x21\x78\x99\x3a\x1e\xf8\x75\x8c\x01\xdb\xca\x59\x8e\x3a\x89\xc2\x48\xe3\x93\xf1\x78\xac\x85\xb7\xe6\x44\x01\xfa\xb9\x9d\xc5\x55\x8d\x54\x63\x1c\x14\x59\x34\x71\x2e\x89\x17\x79\xba\xfc\x14\x11\xfa\x0e\xfd\x01\x3c\x94\x9c\xae\xe9\xcc\xd3\x52\x3d\x84\x75\x09\x36\xa0\x8d\x77\xc6\xb0\xd8\xbd\x05\xf4\xc0\x30\x21\xbc\x32\xe9\x6a\xd6\xb9\x6b\xfe\x2f\x65\xba\xe4\x6f\xb8\xcc\xc4\x2a\x38\x88\x5e\x06\x07\xd1\x8d\x72\xfa\x61\x03\xd9\x5a\x55\x85\xb5\x2a\xb2\x1c\xb5\x66\xdb\x50\xba\x73\x24\xc7\x64\xa1\x19\x5b\xa9\x44\xb3\x91\xf6\x85\x60\x2f\xb3\x04\x3c\xeb\xe0\xaa\x20\xea\x09\x20\x3c\x69\x9a\x08\xaa\x59\x68\xf2\x87\xfb\xb3\x08\x44\xa1\x68\x8a\x29\xac\xe7\xd5\xb5\xa6\xca\xdb\x74\x07\xc9\x68\x5a\xcf\x9a\xb1\x2c\x61\x26\x1b\x63\x7a\xad\xe6\x79\xba\x2b\xf9\x4c\x0b\xf5\x2b\x8c\x39\x25\x15\x2d\x3d\xf4\x9a\x90\xa7\xc6\x7b\xda\x8b\x74\x85\x00\x5c\x1e\x1e\x0d\x0f\x6c\x98\x41\x7b\xe5\x9b\xe5\x59\x48\x43\x94\x3b\x64\xfb\xcb\x68\xa9\x25\x45\x3d\x4b\xe5\xbc\x58\x38\x31\x44\xd7\x0f\x67\xfa\x1b\x51\x26\x3b\x1f\x47\xd6\xf8\x10\x4c\x08\x01\x9c\x10\x33\x8f\x05\x1b\x23\xed\x47\x70\x11\x75\x7a\x2a\x99\xf4\x44\x56\x6c\x80\xac\x2a\xd9\xd5\x3a\x7f\xa6\x80\x55\xf6\xcd\x46\x64\x60\x76\xdc\xce\x8c\x27\x4f\x68\x5e\x13\x36\xb7\xc3\xc6\x26\x4c\x30\xcf\x16\x78\x8a\xa2\xd1\x8b\x8b\xdf\xfc\x96\xeb\x69\xd7\x12\xba\x87\xb5\xc3\x9b\x56\xe3\x70\x64\x79\xd6\x4e\x19\xb3\xfe\x2f\x55\xd5\x7f\x25\x12\x59\xa3\xd6\xea\x71\xdd\xf1\xe4\x75\x66\x04\x2e\xa2\xcf\x05\x3d\x8c\x38\x6f\x12\x0c\xce\xfa\x63\xaa\x98\x0c\x27\x46\x0f\x30\xed\x2b\x8f\x19\x90\xbc\x54\xb3\xad\x48\xf0\x97\xbd\x78\xef\x35\xeb\x11\x84\x0a\x9f\x51\x26\x34\x43\xa1\x2a\x65\x0f\xac\x59\xc9\x7b\x88\xe5\x6e\x02\x08\x30\x05\xec\x7f\x5a\x55\x93\x3e\x98\x22\xd9\x56\x38\x37\x8b\x07\x7d\x16\xa8\x50\x6d\x11\x9a\xd5\x0d\xbe\x50\x0c\x37\x91\x42\x8a\x9f\xd2\x7c\xcf\x1d\x6f\x7e\x5a\x7a\xb3\xda\x67\xf2\x94\x94\xcc\x7f\xd5\xb3\xd7\x82\xd6\x96\x26\x67\x7b\xbd\xbb\xca\x5a\x08\x5c\x26\x2d\xcb\xaa\xe1\xe4\x34\x3b\x4b\xf2\x99\x35\x72\x9f\x8e\x09\x4c\x7a\x7d\xa1\x93\x9d\x8d\x67\x50\xd0\x34\x9f\x67\x0b\xe3\x97\x29\x6a\xbf\x4c\xf6\xc0\xfa\xce\x8a\x79\x3a\xb8\x0f\xcb\xa2\x64\x4c\x55\x55\xc9\x58\x61\xe5\x9e\xd7\x59\xa2\x0b\xc2\x21\x9f\xe2\x0c\xcc\xb3\x05\xa1\x6b\x9d\x6d\x31\x90\x66\x1a\x12\x79\x36\xae\xaa\xb2\xcf\x14\x01\x29\x43\x97\x99\xc8\xd9\x64\x3a\x26\x0b\x42\x77\x3c\x59\xd2\xb5\xe6\x49\xd0\x46\x70\x99\xa4\xb4\xa4\x05\x2c\x86\xb5\xb7\x60\xd6\x34\xf3\x81\x50\xcb\xc0\x88\x6e\xc7\xd2\x59\x7b\x80\x87\xc5\x74\x7c\xba\x39\xdd\xb0\x8d\x9f\x18\xaf\xd4\xd8\x32\xd1\xe2\x92\x37\x4d\xe3\xc6\xf2\xf4\xc5\xb3\x9d\x5e\x30\xbd\xdd\x80\x6d\xf0\x42\x0f\x21\x13\x4c\x35\x07\x34\x8c\xc7\x73\x3e\x13\xfb\xd2\x5e\x5e\xea\xd6\xee\x58\x71\xba\x3a\x5d\xb1\x55\xf3\xab\x6b\xc6\x8a\xae\xfc\x66\x68\x9a\x72\xac\x1d\x83\xbb\xdb\xe1\x21\x5a\x71\x2f\xd4\x22\x72\x49\x35\x33\x92\x6d\xf1\xde\xc6\x3b\xe7\x5e\xf9\xe9\x91\xe7\x72\x7a\x4d\x9e\xae\xfc\xa4\x7f\x0f\x65\xa0\xb9\x5a\xf4\xf8\xa8\x14\x52\x25\x9d\x5a\x18\x00\xa5\x33\x12\xb1\x32\x3f\xc0\x4a\x1c\xc0\x83\xf4\x3c\xd7\x57\x98\x13\xe0\x38\x3b\x58\x4c\x84\xd1\xe2\x20\x20\xe8\x75\xb1\xd2\xac\xa1\x96\xad\x69\x66\x8b\x3c\x67\x63\x1b\x84\xf1\x4a\x7f\x35\x55\xba\xef\xb4\x64\x37\x5e\x2e\xfd\x87\xd0\x3d\x13\x56\x36\x9f\xd9\x94\x56\xec\x98\x0a\xf7\x02\xb9\xcf\x9e\x3c\xd3\x62\xf2\x70\xa8\x28\xb7\x40\x42\xc3\xa1\xa4\xf7\xa9\x01\xd4\xdf\xcf\xca\x69\x4a\xf7\xb3\x74\x5a\x12\x72\x38\x78\xaa\x2c\x33\x1d\x1e\x0a\x54\x78\xb0\x99\x34\x73\x53\x10\xa7\xaa\xaa\x38\x59\x50\x1f\xa4\xec\x49\x98\xc5\xdd\x0b\x99\x9b\xf4\x5a\x39\xa0\x9b\x87\xde\x7a\xdc\xba\x0e\xfb\x58\x47\xb5\x04\x88\xa7\xfd\x99\x49\x4d\x7c\x35\x18\x16\x39\xae\x91\x36\xc2\x02\xeb\xdb\x72\x5d\xc2\x79\x31\xdb\xf1\xa4\xa0\x9a\xaf\xa0\x45\xa0\x90\x20\xd3\x2e\x74\x79\x3e\x5a\x6e\x7a\xde\x69\xc7\x98\x66\x58\xce\xd5\xac\x56\xc1\x29\x32\x2d\xce\xc6\xde\x8b\x31\x99\xf2\x43\xa2\xb0\x12\xd5\x56\x7d\x78\x5d\x7c\xd6\xe0\x1a\xce\x6d\xfb\xe3\x58\x9d\x85\x5d\xf1\x40\x6a\x78\xd3\xb3\xc2\x09\x41\xc1\x85\x7a\x31\x97\x0b\x86\x83\x38\x97\x8b\x1a\x9b\xcf\x03\xb8\x69\xde\x05\x2f\xc1\x69\x60\xb9\x0d\x95\x72\x55\xc5\xc1\x88\xb2\x58\xd5\xc8\x63\xb8\xf3\xbc\xc0\x96\x82\xad\xf4\xc8\x66\xe4\x6c\xdc\x13\x7d\xfd\x20\xe1\x61\x96\x64\xac\xa0\x05\x93\x64\x8a\xaf\x75\x6d\x67\x63\x38\x68\x24\xf1\x97\xde\x2b\x2d\x76\x15\xcd\x57\xb2\xaa\x8a\xc0\x30\xe2\x91\xd7\xe8\x5f\xf5\x6f\xbb\x24\xa1\x37\x1c\xe4\x3b\x4d\x39\x52\x79\xa3\x37\x32\xf8\x8c\x8f\x09\x95\x5e\x11\x3f\x3a\x96\xa0\xde\xd1\xf3\x05\xb5\xac\x48\x5b\x88\xd4\x67\x92\x9c\x67\x0b\xe6\xd5\x21\xad\xc9\x2f\xd5\x47\x09\x45\xdb\x11\x68\xd0\xdf\x39\x38\x1a\xdb\x86\x00\x09\x23\x41\x1f\xfe\xd1\x32\xee\x08\x6a\xb5\x70\x60\xbd\x6c\xae\x16\xac\xa0\xb6\xd4\xac\x5d\xaa\xdf\xad\x9f\x9b\x23\xf3\x1c\x14\x2d\x61\xa2\x9f\x5a\xec\xd0\x26\x2b\x95\x90\x37\xa3\x95\x28\x38\xcd\xd8\x56\x24\x92\xf4\xb2\x38\xce\x4c\x73\x66\x89\x9c\x4b\xa7\x36\x59\x30\x45\xbf\xb3\x65\x90\xe9\xaf\x6d\xcb\x15\xf7\xea\xd6\xa5\x6b\x38\xf0\xf9\xdd\x36\xb5\x53\xa1\x99\x29\x39\x42\x35\x5c\xaf\x60\x06\xde\xf5\x1d\xcf\x5f\xef\xc0\x0c\xab\x7e\x86\x24\x60\x24\x9d\xe0\xcb\x97\x62\xf5\x3e\xdb\x72\x2f\x8f\x7e\xb4\x59\x5c\xfa\xaa\x3a\xd6\x0c\x65\x35\x27\x63\xbb\x4d\xa2\x6f\x22\xc6\xb2\xaa\x8a\x06\x08\x63\xd8\x50\x1f\x75\x28\x69\x8b\x51\x29\xb6\x1c\xc2\x3c\xa2\xb0\xcb\x57\x9a\x22\xcb\xae\xd7\x5e\xb0\x95\x7a\xfc\xbd\xa6\x9f\x31\xd8\x8c\x33\xd8\x8b\x56\xc7\x65\xd2\x3d\x45\x25\x5c\x9e\xde\x4c\xbf\x1d\x8f\xc1\x59\x4d\xd0\xad\x48\x32\x98\x40\xa2\x79\xd7\x19\xfe\x9e\xe3\x1f\x7f\xea\xa6\xaf\x00\x7f\x04\x93\xf6\x82\xe1\xaa\x03\xeb\xd0\xe6\x50\x0b\xef\xcd\x8e\x15\x54\xc6\x71\x7f\xd2\x47\xcb\x26\x9e\xca\xb7\x7c\x25\xe2\xf8\x6d\x96\x64\xa3\x7d\x01\x25\x1f\xec\x2e\xa1\x75\x37\x50\xaf\x99\xad\xa6\xaf\xd2\x57\xc1\x7a\x71\xab\xe4\x36\x81\xfb\xa0\xe8\x02\xec\x5c\x9c\xc6\xc0\x38\x21\x11\xb8\x18\xd9\xc6\xb1\x4e\x34\x5a\x6e\x8f\xa6\x03\xff\x70\xd6\xed\x32\x7a\x6b\xf4\x30\xca\xcc\x1e\x6d\xde\xa3\x35\x38\x11\x4f\xbf\x5f\xb0\xf1\x69\x51\x53\xd8\x62\x30\x20\x5e\xca\x79\xb1\x60\x86\x62\x19\x92\x5b\x2c\x0c\x91\xc4\x90\x35\xf8\xc6\xe8\x86\xac\xb6\x19\xec\xd6\xf1\xf7\xc1\xd2\x67\x0c\xfd\xd2\xdd\x37\xca\xd1\x76\x48\x0f\x83\x4e\x77\xc7\x30\x40\x2a\x9d\xda\x2e\x54\x2d\x04\x98\x0d\xad\x09\x94\x1d\x80\xd6\xa5\x01\x99\xaa\x83\xdd\xde\xbd\x1a\x46\x67\x74\x91\xa5\x65\x55\x69\x86\x46\xd5\xf4\x15\x3a\xd4\x24\xba\xd8\xcb\xb3\xf1\x6c\x38\x99\x4e\x48\xef\x2f\xba\xf7\x7f\x35\xf6\x63\x00\x78\xa9\xe5\x8c\xfe\x84\x31\x87\x0c\x55\x55\x7d\xdd\xdc\xaa\xfa\xa9\x80\x4e\x79\xab\xe3\x2f\x96\xdf\x1b\xf1\x7f\xec\xd3\xbc\x4c\xa0\x32\x02\x17\x51\x25\xcf\x99\x32\xc3\x91\x78\x8b\xcc\x57\xa9\x7b\xaf\xcb\x70\x88\x00\x7e\x52\xe1\x62\x22\x56\x75\x8f\x8e\x97\x0f\x97\x2a\xbb\xca\xd4\x0d\x86\xde\xa9\x61\x16\x40\xc7\x52\xf7\x07\x97\x38\x7a\x3e\x06\xac\xcb\x5f\xbb\xfc\x48\xa8\x60\xe3\x53\x71\xa6\x1a\x67\x8b\xb0\xdc\x63\xea\x26\x68\x2e\x16\x60\xbf\xd6\x20\x39\x1d\x27\x93\x3e\xae\xbd\xc3\x48\x2c\xe8\x9e\xfd\x4d\x57\x9e\x5a\x7d\x64\x19\xc7\x96\x4f\x46\xcb\xb3\xdc\x26\x80\xa9\x83\xcf\xf0\x4b\x7f\x3c\x4d\xb2\xaa\xda\xf7\x99\xcd\x5d\x55\xb9\x7e\x80\xf9\xd4\xd4\xb6\xaa\x00\xbb\x34\x3c\xa6\xa8\x20\x84\x66\x73\xe1\x36\xc0\x9e\xe6\x4e\xff\x79\x92\xcd\xe0\xe0\x52\xde\xa1\xe5\xdf\x32\xfe\xd2\x71\x33\xe8\x33\x4e\x28\xe6\x6f\x53\xf9\x89\xaf\xde\xed\xd2\xa2\x89\x59\x1c\x7c\x6b\x19\xf9\x95\x2c\xf8\x3e\x4f\xf5\xf8\x94\xf8\x0a\x98\x17\xe3\xd4\x5e\x02\x03\x5d\x55\xc9\x7e\x04\x81\x62\xcb\xec\x8a\xbf\xe0\x6b\x35\xc3\x0f\x67\x70\x40\x4c\xcd\x83\xb2\xfa\x6d\x9b\x57\x89\x30\x27\x60\x98\xcd\xf4\xfb\x73\x9b\x51\x89\x73\xcc\x06\x8c\x56\x16\xc7\xc9\x5f\x31\x5c\x09\xec\x5d\x0c\xdc\xf3\xb4\x00\x37\x6a\xba\x1f\xf1\xcf\x9a\x67\xcf\x54\x7e\xf3\x58\xd3\x57\xbe\xc2\x6c\xe1\x38\xdc\x0e\x87\x69\x6f\x29\x0a\x95\x15\x7b\x7e\x40\xa5\x0a\xb8\xf4\x8f\x52\x25\xb6\xd9\x92\xd8\x6f\xc6\x3e\x0c\xee\x28\xe9\x92\xed\x11\x35\x56\x9e\x8d\x67\x93\xe9\x70\x02\x23\x0c\x4f\xcd\x1e\x4c\x1b\x83\x41\x20\xb2\xe6\x0f\x7a\xc2\x96\x74\x28\x29\x78\x31\x07\x4e\x37\x02\x54\x12\x84\xb4\x3f\xc5\x71\x92\x6b\xe6\x0f\x1c\xc2\xe3\x18\xea\xcb\xcf\xc6\xd3\xfc\xbc\x96\x65\x7f\xc1\x92\x15\x2c\x05\x23\x62\x7b\x8d\x45\x62\x52\xcb\xe9\xb3\x46\xf3\xa6\xcd\xf6\xa3\x08\x0f\xed\x5d\x53\x49\xd7\x47\xda\xba\x9e\xfd\x82\x49\xb0\x62\x8c\x10\x67\x57\xaf\xb7\x52\xff\xd6\xb1\x52\x65\x55\x4d\x68\xca\xdc\x22\x16\x34\x23\x55\xd5\xcf\xe2\xd8\x7b\xd5\x1f\x93\xaa\x72\xcf\xc3\x8e\x34\x43\x48\x64\x0f\x80\x14\x68\xdb\x32\x2d\xd4\xd3\x55\xa6\x34\x91\x0a\x04\x1d\x8f\xcc\xfc\xe0\x91\x19\xcb\x35\x6b\xd6\x7a\xcc\x60\xdd\xcd\x8c\xd0\x63\xf2\xce\xe0\x18\xda\x71\x23\x4d\x69\x61\x0b\x3a\x3b\x2d\xce\xc7\x71\xac\x33\x30\xa6\xd9\x6d\x7f\xfb\x05\x82\xcb\x2c\x14\xc3\x9c\x8c\x35\x73\x65\xc2\x45\x89\x29\x14\xed\x22\xac\x2d\xf0\x68\xb9\x19\xf8\x87\x3e\xb8\xe3\xb6\x50\x20\xcb\x8d\xb8\xae\x23\x40\x35\xbf\xee\x24\xdf\xa5\xde\x49\x97\xf8\x63\xa1\x54\x53\x2a\x32\x31\x22\xd1\xfb\x51\x1a\x97\xfa\xf2\xcb\x51\xc1\x00\x35\xc2\x9d\x15\x5f\x91\xde\x82\x85\xb5\xe5\x06\x8b\x1b\xa6\x99\x25\x65\x20\x57\x42\x06\xde\x01\xbf\x79\x54\x3c\x35\xf7\x8f\xa5\x11\xeb\x71\x16\x5b\x6e\xd1\x55\x55\x82\x72\xc0\x4e\x4a\xd3\xc1\x9a\xd4\xbe\xb9\x46\x73\x70\x9a\xec\x35\x13\xe5\x2e\x4d\x37\xe2\x1a\x49\xcf\xcf\x1b\x5e\xbc\xb3\x71\x4c\x35\x77\xaa\x07\xd3\x9c\x0b\x19\xa1\xfb\xaa\x92\xf0\x86\x8a\x5a\x5b\x20\x3d\xb7\x49\x15\x72\x59\x8f\xf1\xb9\xe9\x78\xe8\xf9\x58\x94\x59\x71\x99\x1b\xba\x87\xa6\x87\x6f\xb8\x7c\x61\x54\xfc\x45\xb7\x9f\x40\xf4\x7f\xff\x5f\x51\x47\x6c\x98\x88\x10\x04\xb5\x0f\xcc\x8f\x73\x6b\xaf\x49\x33\xcf\x05\x5b\xea\xff\xc3\xd7\x6d\xe3\x55\x67\x15\x06\xa9\xc9\x37\x1e\x6e\xa2\xd7\x5e\x2c\x45\x8e\x84\xda\x70\x27\x02\xff\xbe\x96\xfb\x1e\x1f\x25\x5f\x8a\x62\x95\xca\x9b\xba\x53\xa2\x6d\xf1\x29\xc2\x4e\x42\xdd\x5e\x57\x45\xd0\x55\xfc\xea\x3a\x2c\xc2\x0e\x8f\xfe\xfc\xed\x37\x89\x4d\xe4\x3a\xec\xf2\x18\x13\x5d\xcf\xdb\x54\xdd\x05\xbe\x02\xb8\x43\x5f\xb5\x55\x96\x41\x64\x84\x92\xa5\x18\xa7\x74\xef\xe3\x22\xd5\x21\x68\x28\xa0\x3e\x0c\xcd\x2b\xcf\xc7\x98\x0c\x53\xb4\xe0\xad\xf5\xcb\x79\x4d\x0c\x15\x28\x18\x20\x3e\x8a\xf2\x41\xb0\x15\x09\x41\xb1\x25\xa1\xe2\x2b\x11\xef\x4b\x23\xbc\x45\xdd\xb7\x8f\xd6\x4f\x85\xa3\x67\x0a\x04\x8f\x8b\x06\xaa\xe1\xa7\x62\x31\x74\x66\xfb\x21\x9f\x16\xc6\xf9\xab\x8e\x94\x93\xc8\xa1\xc1\x39\xf5\x29\x9b\xd3\x9b\x5f\x61\x28\x4e\xba\xd4\x1c\x52\x46\x15\x01\x1b\x1e\x8f\x40\xd7\x63\xb1\x49\xfc\x43\xe1\xbd\x32\x84\x1f\xbc\x8f\xa0\x7f\x4b\x5a\x2b\x5f\xda\x52\x31\xc0\x01\xda\x73\x59\x42\xfd\x51\xae\x64\xe4\x23\xd3\xf6\x27\x86\xa1\xe5\x35\xdb\x25\x2c\x27\xcb\xe7\x62\x71\x9a\xa4\xc8\x30\x15\x71\x9c\x02\x07\x54\x55\x8a\x31\xf3\xc4\x50\xc7\x2e\x93\x1a\x39\x12\x52\xeb\x6e\x39\x05\xa1\x4e\xa8\xdb\x3c\x61\xb0\x4e\xae\x78\x3e\x8b\xa4\xca\xa3\x29\xb6\x86\x66\x10\x1b\x35\xab\x2a\xbf\x8d\x87\xe4\x65\x96\x2c\x09\x2d\xaa\x0a\x4d\x4c\x18\x93\xb3\xf5\x54\x86\x4a\x08\x73\x86\x2f\xe9\x8e\xae\xe8\x96\x6d\x34\xf3\x6f\xee\x07\xb3\x75\xa2\xf9\x04\xb2\x64\x5b\xba\x63\x2b\xb6\x85\x25\xea\x02\xe8\x2f\xd9\x26\x51\xc3\x09\x35\xf7\x83\x84\x42\x93\x98\xf5\x0b\xba\x61\xdb\xde\x96\x2d\xe9\x92\xdd\x1c\x76\x26\x2f\x5d\xb1\x25\x2e\xd7\x83\x59\x01\x70\x48\x73\xc0\xcb\x29\x09\x5d\x42\x8c\xde\xad\xfe\xff\xfc\x81\xe6\x95\x92\x1d\x85\x27\x5c\x87\x5b\x8b\x65\x4b\x77\xac\x74\x4f\x67\x4b\x04\x40\xc1\xc4\xf8\x0e\xd3\xc3\x07\x2d\x66\x61\xe7\xe3\x58\x31\xb6\x8e\xe3\x64\xc5\xf6\x84\x26\x7d\x51\x55\x50\xf8\x99\xd0\xff\x9b\x07\xc6\x04\x16\x87\x2d\x86\x3b\x16\xe4\xf9\x04\xdb\xea\x5c\x69\x55\x2d\x4d\x2d\xe7\xa9\xf9\x51\xbf\xd2\x13\x64\x81\x66\x4d\x57\xcf\xcd\x0e\x45\x53\x90\x25\xa1\xbb\xb3\x72\x30\xb1\x5d\xd6\xad\x86\x76\xd2\xd5\x50\xff\x32\x3d\x3c\x10\xea\x02\xf9\xf2\x62\x35\x4d\xed\x65\x8b\xaa\x8d\xd5\x14\x1a\xab\x65\xeb\xc4\xf2\x74\xc6\xc0\x6c\xe9\xdf\x40\x80\x85\x19\x3a\xf2\xde\xa2\x71\x18\xec\x9a\xb5\xb9\xc7\x5b\xe1\xa3\xc9\x49\xb7\xec\x99\x4c\x76\x84\xe9\x3f\x2b\x42\x6f\x58\x58\xd6\x76\xb6\xf3\x37\xda\x60\x82\xdc\xe3\x88\x17\x2b\x7a\xc5\x96\xd6\xec\x6d\x3b\x1b\xe3\xad\x1c\xd4\x8d\xb7\xc4\x3d\x2d\x9c\xde\xc0\x78\x5f\xc1\x34\xdf\x9f\x25\x79\x72\x83\x63\x43\x6f\xea\x59\xbe\x71\xb3\x9c\x27\x25\x85\xb4\xf4\x0a\x97\xcf\x95\xfd\x44\xa6\xcd\xac\x98\x62\x58\xbf\xb4\x29\xdd\x4f\xac\x56\xaf\x93\xd2\xbd\xc3\x1a\xaf\x10\x08\x27\x3c\xb5\x7c\xb8\x95\x4c\x39\x58\x8b\xc0\x0c\xb4\x1d\x42\x1c\x14\x41\xcf\xb5\x04\x73\x95\xe6\x89\x1a\x5d\xe4\x59\xf1\x89\x4b\xab\x96\xef\x8f\x7b\xaa\x06\x35\x32\x27\x11\xe0\xe6\x40\x78\x3f\x7d\xb6\x35\x8f\xd9\x47\xba\x84\xb7\xa9\xe2\xe7\xe3\x99\x2b\x8f\x95\x5c\xb9\x5a\x3c\x93\xb2\x3b\x0b\x4f\x0a\xd6\x2f\x08\xc4\x0b\x41\x4b\x83\xe8\x70\xbc\x36\x32\x3d\xfa\x09\x0f\x95\x3b\xbb\x61\xca\xf7\xef\x9f\x85\x72\x80\x32\x26\xcc\x11\xae\x8b\x77\x7a\x40\x01\xa3\xc7\x8b\x41\x74\xd6\x64\xf2\x40\xc0\x87\xa1\x77\x61\xe4\xc1\x10\x5d\xd1\xa7\x22\x49\x55\xa8\x9f\x48\x55\x23\x86\x0e\x22\x3f\xba\xc2\x95\xbd\x5c\xf0\x5e\xda\x0b\x60\x84\x3b\xb2\x6f\xdb\xdc\xa6\x8b\xe1\xee\xd4\x84\x1e\x0a\xe2\xb5\x90\x9f\xde\x67\x00\x84\x50\xca\x44\x41\x2f\x69\x89\xb6\x1e\xb6\x48\xa2\xc9\xf5\x7c\x61\xe3\xf9\xd4\x1f\xbc\xfb\xa0\x00\x48\xb6\x05\x30\x34\xf8\x76\xec\x07\xb2\x17\xe6\x6a\xe8\x58\x9b\x81\x07\x36\xe7\x91\x61\x7e\x4a\xb0\x13\xf6\x36\xf2\x79\xdd\x87\x6d\xfa\xf9\x7b\x3b\xc4\x18\x59\x84\xee\xd9\x0f\x12\xd4\xab\xe5\xac\xee\x96\x24\x53\xd0\x62\x59\xfe\xac\x64\x7b\xf3\xc3\xa2\xeb\xe1\x23\xb8\x52\xf2\x12\x24\xee\x25\xfe\xee\x2d\x67\xe1\x47\xb6\x9c\xe6\x9a\xc2\x86\x2f\x43\x37\xd4\x35\xd3\xa4\x37\x75\x10\xba\xb6\x5a\x77\xbd\x9f\x03\xa0\x58\xd2\xcf\xab\xaa\xbf\xac\xaa\xbc\x06\x8a\x58\xd6\xc0\x0b\xb9\x0f\x14\xb1\xf4\x7d\x3d\x37\x6c\x7c\xda\x5f\xc7\xf1\xe6\x2c\xf5\x83\x75\xae\x59\x3a\xdf\x2c\xea\xea\xe6\x9b\x45\x6f\x1d\xc7\x99\x71\x02\xac\xa7\x15\x18\x4b\x17\x74\xab\x9c\xc9\xa9\x3f\x56\xd6\xc0\xd0\x1b\xf3\x33\x76\xd7\xa0\xc7\xb1\xd2\xf2\x27\xe6\xa0\xcd\xe2\xeb\x7a\xff\xf0\x2d\x63\xe3\x70\x5a\xac\x39\xca\x60\xe0\x2d\x2e\xb7\x5c\xcf\x9d\x81\x11\xec\xc8\x70\xf1\x82\x3e\x1d\x0c\x50\x21\xd6\xa0\x69\xc9\x77\x3a\x61\x87\xab\x01\x42\xfa\xd8\x74\xa7\x6a\x30\x20\x1c\x2c\x1d\xe7\x6a\x41\x11\x00\x86\x1c\x7c\x1a\x50\xb6\x99\x67\xb1\x44\xc6\xb9\x46\x49\x86\x48\xec\x01\x75\x08\x43\xfb\x8b\x96\x4e\xdb\xdd\x5e\xd1\x8c\x1a\x83\x7a\x9a\xb2\x62\x36\x9c\x4c\xd5\x30\xf1\x08\x4e\x56\x14\x1c\xbc\x34\x66\x13\xfe\x60\x0a\x61\xcd\x4a\xa6\x4e\xcb\xf3\xf4\x74\x38\x2c\x61\x1f\x95\x67\x16\x1f\xd1\x0d\x13\x3e\x1a\xcb\x0e\x30\xe4\x2e\x8d\xbe\x68\x1f\x86\x5d\xeb\x17\x55\x85\xf9\xdd\x5e\xb7\xc6\x54\x66\x4f\x2c\x45\xb2\xc7\x19\x85\x83\xc7\x8b\x9e\x95\x5e\xbc\xcb\x7e\xe3\xe4\xd4\xb0\xc6\x9a\x97\x3b\xcf\x41\xd9\xc8\xca\xe1\x84\x4a\x96\xd7\xaa\x44\xab\x97\xa6\x29\x13\xe7\xd2\x12\xb3\xeb\x2c\x91\x54\x0c\x27\xc4\x6b\x94\xd3\xa5\xb0\x54\xaf\x11\x1c\x59\x9a\x92\xe9\xde\x3e\x10\x2a\x91\x10\x09\xaa\x82\x10\xfa\xb0\xfc\xd0\xaf\x96\xa6\xd6\x58\x4c\xb3\xab\xc3\x49\x55\x09\x58\x76\x55\x25\xce\x59\xe6\x61\xc0\x89\x33\x1b\x1f\xb1\x57\x84\xbb\x21\xa8\x1c\xfa\x3e\x18\x88\x03\x68\xc0\x13\x59\x13\x61\x41\x68\xea\xf9\xaa\xab\x00\xd9\xc7\x45\xff\xac\xe1\xb5\x3c\x3f\xf1\x30\x2d\x42\x80\xfa\x38\x51\xc3\x76\x01\x4d\x00\xa9\x65\x7d\xcc\x87\x81\x07\x6b\xe3\xef\xf0\xbd\x81\x1b\x81\x08\xe4\xd6\xe0\x47\x8b\x4e\x3b\xc9\x23\x1a\x69\xf1\x85\x16\x0c\x23\x20\x8f\x9a\x71\x7b\x67\x47\xde\x27\x8a\x4c\x95\x45\xd7\x84\x37\x54\xb2\x5b\x90\xab\x76\xa9\x2c\xf9\xf3\x42\x25\x85\xef\x1a\x4c\x8c\x8b\x53\xfb\x2b\xaa\xff\xdc\x8d\x4a\x56\xbe\x4a\x5f\x19\xaf\x2f\x52\x55\xf6\x11\x99\x53\xa3\x6c\x0b\xc2\x2d\x4a\x42\x3d\xed\xc6\xda\x1f\xe1\x4c\x0c\xeb\x53\x26\xf4\xc3\xf5\x7c\xac\xc3\x39\xb9\x2b\xa6\xdf\x10\x4a\x1f\xb6\xa3\x6d\xd4\xa5\xed\xbe\xaa\x34\x33\xd9\x1d\xc5\x35\x67\x7b\xa5\x3c\x87\x7d\x6e\xb5\xa2\x66\xaa\x6f\xb7\xe9\x6e\xea\x26\x15\xec\x23\x61\x70\xbc\x77\xf0\x7c\x68\xc4\x94\xe3\x2d\x7f\x7e\x28\xdc\x78\xf3\xdf\x55\x7e\x39\x97\x8b\xee\x3a\xf4\x17\xac\xe7\x8e\x3a\xc0\x34\xcf\x54\x43\x1c\x8d\xff\xbd\xd5\x50\x54\xc4\x4f\xfb\x63\x8f\x6a\x6f\x55\x4b\xbd\x7a\xa9\x5f\x5d\x21\x47\x07\x1f\x3c\xdf\x2b\x55\x9b\xab\x1c\x41\x8a\x6c\x71\x77\xa4\x35\xab\x60\xdd\x68\x20\x88\x17\xad\xe8\x31\x77\xe0\x5f\xa9\x73\x86\x10\x58\xaf\x74\x45\xe6\xe7\x00\x21\x41\x67\xc5\x14\x62\xf5\x7b\xee\x15\xa6\x0f\x86\xa7\x7b\x9d\xa1\x6a\x04\xfa\x50\x90\x9e\x8c\xe3\x3e\x02\x44\xcd\x10\xb0\x67\x0a\x97\xf3\x35\x02\x2c\x00\xa5\x49\x5a\x50\xc4\xde\x76\x6e\x2b\x61\xc0\x72\x62\x7c\xb9\xba\x2c\x6b\x74\x95\x5a\xd8\x52\x24\x08\x17\xd0\x81\xd6\xc5\xaf\x4f\x7e\x51\xd6\x0e\x18\x5a\x87\x9d\x33\xa1\xb6\x32\x26\x11\xb6\x8b\x01\x6a\x97\x24\x35\x88\x3f\x00\x64\x20\x32\xc6\x1b\xd1\x08\x31\x58\x07\x72\x06\x60\x2e\x79\x40\xd4\x67\x53\xe4\x4a\x25\xd2\x54\x86\xeb\x09\x0c\x07\x31\xfa\xd9\x54\x52\xc9\x97\xc6\xfc\x52\xaf\xb3\xcc\xdb\x26\x26\x74\xab\x5d\x4f\xd9\x08\x7f\xd0\x4d\x5a\xe2\x3e\x2c\xa7\xfd\x89\xb7\xc6\x2e\x95\x7f\xab\xa0\x4c\x72\xb0\x8e\xd1\x67\x2d\x9c\x3e\x74\xcf\x8a\x41\x22\x01\xaf\xa9\xb6\x67\x82\x7a\xda\x70\x2b\xb3\x92\x99\x6f\xf3\xfd\x62\x9a\xa8\x91\x6e\x2b\xc0\x19\xe8\x1f\x06\xd0\x11\xd9\xb1\x23\x9e\xb3\x84\xaa\x51\xdd\xdc\xaa\x3a\x0a\xec\xdd\x19\xd2\x34\x63\x32\x8e\x81\x00\x1a\x48\x79\xbb\xd7\x36\xb6\x3c\x19\xc7\xf5\xdb\x6b\x04\x77\xcd\x6a\x2c\xbd\x46\x7a\x2d\x32\xa0\x95\x51\x23\x13\xcb\x7a\xf5\x55\xa0\x6a\x1a\xf5\xc2\xf1\xe2\x3a\x55\x26\x9a\xe1\x19\x9f\x96\x8e\xc7\x1d\x4e\xc0\x9b\xc6\x68\xc8\x53\x44\xaf\x49\xe7\xe5\x60\xb2\xe8\x81\x3c\x92\x5e\x94\xc9\xbe\x46\x9e\x34\x52\xf5\xf9\xfd\x38\x16\xc8\x02\xbb\xaf\x03\xc0\xa5\x24\xf7\xee\x0f\x0d\xb0\xec\xc1\xa4\xb0\x91\x61\xdc\x7b\x90\x87\x00\x0a\x18\x67\x23\x1c\x69\xd8\x30\x49\xc9\x8e\x18\xa9\x50\x30\x59\x57\xb0\xd6\xe0\x22\xd7\x82\x6e\xd2\x9c\x59\x83\xf4\x25\x03\x03\x75\xba\xf6\x6c\xd6\xf5\xe8\x3d\x60\x6c\xef\xcc\x7e\x6b\xbe\x11\x83\xf4\xff\xf1\x74\xa3\x47\x02\x30\x90\xf3\x38\x7e\x2f\xcc\xa5\x8d\xc1\x01\x33\x2e\x45\x08\xac\x01\x51\x82\x07\x39\x21\xa7\x64\x38\xcc\x61\x02\x4e\x83\x4f\xcb\x33\xf3\xf8\xb4\x58\x7d\x55\x59\x4b\x5d\xd6\x60\x00\xa2\x2a\xe0\x04\xfe\xbb\x85\x24\x5f\xa2\xe5\x3d\x96\x35\xf4\x33\x91\x8c\xed\x7d\x64\xb7\x63\x2e\xe0\x16\xc4\x4d\x1c\x03\x1a\x26\x46\x33\xf4\x49\x00\x32\xcb\x92\xb4\x96\x4d\x2f\x63\x3b\x7b\xfd\xb5\x9b\x3b\x97\x00\x39\xdb\xb9\x85\x34\x1d\x2f\xa6\x1f\x15\x0a\x3a\x59\x58\x54\x57\xab\xaa\xea\xa3\xc2\x0b\x0b\xcd\x8f\x54\x55\x86\x8c\x48\x55\xe9\x5e\xa3\x71\x7c\x6f\xc9\x72\x9a\x0f\xd9\x84\xae\xad\x17\xc2\x01\xc6\x66\x32\x01\xc6\xb8\xed\xa1\x6c\x78\xaa\x72\x29\x39\x2f\xaa\xca\xdc\x4c\xc3\xd3\x28\x17\x97\xd9\x32\xcd\x7f\x79\xf2\xe6\x79\x55\xb5\xdf\xb9\x74\x2b\x7e\x95\x2d\x39\x26\xeb\xfb\xae\xa6\xd9\x3a\x41\xc4\xe5\xbf\xba\x03\xeb\xaf\xc2\x63\x01\x81\xf5\x2b\x77\x69\x51\xf3\x7e\x47\x89\x0b\x95\x7a\x84\x14\x1d\xd3\xc9\xd1\x11\x72\x96\x30\x26\x58\x82\xde\x8a\x05\xaa\xb9\x0c\x13\x77\x3e\x39\xd4\x51\x21\x4e\x94\x39\x27\xdb\x7d\xbb\xd7\xea\x1a\x95\x8d\x64\xbf\xb6\x92\xe9\x37\x8e\xec\x6b\xf6\x53\x41\xa5\xdf\x14\x86\xdf\x54\x38\x61\xdf\x14\x54\x89\xdd\x54\xe9\xbd\xfd\x8d\x74\x98\x17\x66\xcf\x7f\x23\xf5\x76\xaf\x91\xf9\xed\x69\x43\x50\x22\xbe\xcd\x01\x6a\x63\xcd\x24\x73\x6a\xe4\x26\x88\x7d\x8d\x86\x9d\xec\xd8\xbe\xb5\x32\x89\xf3\x65\xbe\x6b\x61\xee\x8f\x0d\xf2\xc1\xdb\x6f\xfd\x5c\x0b\x71\x59\x55\xf5\x71\x51\xc6\x71\xdf\xac\x4a\xa3\xf5\x59\xb5\xf6\x5b\xd0\x94\xf9\x78\xd1\xcb\xd8\x6a\x86\xc3\xb5\x42\x9d\x25\x0e\x16\x3e\x0c\x82\xc8\xd5\x30\x6e\x2b\xd0\x5e\x9a\x51\x5b\x99\x51\x3b\xe8\x8d\x64\xa9\xd3\x16\x42\xd6\xee\x86\x48\x2b\x21\xf9\x0d\xcb\x2c\x4d\xf5\xde\x5e\xb1\x64\x3b\xb8\x21\xf7\xee\xd3\x4b\x7b\xbe\x35\x0e\x11\x8a\x94\xee\xd2\x0d\x4d\x1c\xf7\x93\xab\xb3\xcb\xf9\x66\x41\x80\xfa\x9d\x82\xdb\x3a\xdb\xcc\x2e\xe7\x9b\xe1\x64\x31\x1d\xd3\x8f\x4c\x7f\xa5\xd7\x46\x04\x49\xdc\x08\xaf\x67\x66\x6c\xa6\x38\x58\xc4\x36\xc5\xeb\x75\x82\x57\x09\x98\x18\xf2\xdb\xf1\x0c\x12\xeb\x71\xb8\xb0\x63\xf0\xf1\xd0\x6b\x91\x84\xe4\x7a\x74\x21\x2e\xf7\x70\x34\xf4\xbe\xe2\xf6\x14\x72\x48\x25\x76\x6c\x4b\xaf\x47\xd2\xa8\xe6\x6f\xdc\x8e\xba\x3e\xb8\x43\x85\x60\xc9\xc0\x19\x58\x76\x81\x95\x84\x50\xec\x6f\xe9\x77\xa7\x34\xca\x65\xdd\xde\x6c\x56\x42\x0d\x60\xd4\xe2\x26\x10\xde\x9a\xdf\xa5\x9d\xcc\xc3\x6b\xde\x40\xad\xc8\x8a\x4c\x75\x60\x22\xa9\x4d\x56\x6a\xa2\x81\xce\x6b\xd4\x04\x4f\x35\xe8\x52\xec\x21\x4f\x5c\xec\x53\xeb\x0d\x68\xc3\xbc\x34\x62\x39\x94\x2e\x96\x95\x48\x0a\xca\xd1\x6c\xa6\xd3\x30\x93\x5c\x70\x76\x6b\x1d\xcd\xa7\xfd\x09\xba\x85\x17\x7a\x69\x3b\xfb\x02\x88\x47\xa9\xba\x3c\x1b\x41\x83\x1a\xfa\x4a\x1e\x73\x80\xcc\x46\x57\x69\xbe\xe7\xac\xed\xca\x4e\x6f\x44\x92\x11\xe2\xee\x95\xfa\x45\xb8\xfd\xb3\x92\x3f\x16\xbb\x9b\xc7\x7b\x2b\x3b\x19\x6b\xbc\xcf\x3c\x29\x48\x2f\x6c\xff\x18\xdb\x8f\x2c\xef\x81\x82\x8f\x3a\x80\x01\xdf\xec\xf8\xac\x18\x95\x41\xaf\x9c\xed\x1f\x70\xb0\xa9\x20\xd3\x66\x6f\x6c\xa3\xe5\x91\x36\x1f\x82\x0a\x20\xb8\x40\x87\x3b\xfa\x98\x1c\x0e\xbc\x3b\xbc\xa8\xa4\xf5\x07\x0f\x24\x15\x9c\x1f\xb3\x06\x84\x11\xa0\x7d\x61\x1c\x59\xf4\xb9\xf7\x55\x72\x9a\x84\x9d\xb3\x7f\xd7\x2c\xa5\xef\x65\x0a\x13\x14\xb8\x9d\x5a\x84\xd0\x9d\xc8\xf3\xa4\x8e\x4c\x8b\xce\xe7\x01\xb2\x82\x59\x3b\x55\x05\x3e\xf4\x05\xc4\x1c\xe8\xf4\xc1\xd7\xa3\x3e\x5a\xa7\xa5\x7a\x03\x65\xd6\x85\xea\xc1\xa1\xa5\x7b\x12\xbb\x1b\xfb\x58\x87\xc3\x6a\x57\x2d\xc9\x6d\x59\x80\x04\x53\x55\xd0\x06\xf9\xa5\xaa\x11\x79\xc3\xd4\xeb\xa9\x79\x68\x84\xb7\xd5\xc0\x14\x7a\x35\x28\x53\x83\x22\x55\xf5\xbd\x16\xf9\xea\x16\xa3\x33\x2e\xac\x8f\x46\x26\xeb\x8c\x0b\x7b\x03\x69\x4e\x12\xad\xa5\xd8\x46\xa4\xa7\x6a\x2f\x5e\xb0\x20\xb2\x0f\xb8\xc0\x5c\x3c\x5c\xef\x0b\x33\xb7\x7b\x1c\x3d\xa2\xa7\x05\xd8\xb4\xbd\xe7\x9f\x41\xf2\xf4\xab\x50\x22\x22\xf4\xd6\x41\x27\x4e\x03\xfb\x09\x5b\x5c\x74\x20\x87\xae\x4e\xf0\x62\x15\x74\x21\x68\x68\x62\x57\x01\xfd\xba\x26\xc3\xd2\x39\x90\x03\x6d\x1a\x20\x1d\x81\xff\x59\x6e\x69\x47\xc8\x74\x4d\xd6\xac\x58\xe4\x29\xc0\xc5\x15\x1a\xaa\xfe\x9c\xa9\x0d\x76\xdd\x1a\xa5\x3f\xc6\x21\x69\x9b\xd6\xe2\x15\x3e\x01\xf0\x76\xbb\x89\x8e\xb1\x5b\xa9\x87\xfb\x7f\x94\xdd\x1a\x29\xfe\x5e\xec\x7c\x1b\x18\xef\x4a\xa6\x2b\xd0\xd9\x70\x32\x06\xcf\xa4\xdd\x20\x85\x23\x5a\x98\x0b\x67\x5d\x12\xe0\x74\x7d\x4d\x51\xa8\xff\x82\x92\x80\x47\x40\x4b\x90\xa1\xb9\x78\x26\xb5\x9d\x11\x0d\xcc\xc2\x8e\x9c\x1f\x9e\xd7\x4a\xef\x8d\xf0\xaf\xe9\x50\x39\x51\x0a\x59\x12\x0a\x5f\xfc\x60\x2a\x68\xc3\x8b\x8f\x78\x61\x8e\x48\xcb\xef\x21\xb4\x88\x7f\x0e\x79\xb6\x35\x26\x01\xda\xd5\x74\xa4\x31\xb0\x71\x38\x16\x26\xe0\x22\x95\xbc\xe4\xe1\xe1\x07\xf2\x31\xba\xc2\x17\x9a\xce\xbe\xe4\xc5\xfe\x0d\x87\xf9\x31\x3d\xd3\x27\xb5\x5b\x53\x19\x93\xf6\x4e\xaf\xd3\xa9\xc0\x58\xae\xfb\x84\xdc\x68\xaf\xb3\x86\x53\xcc\x9e\x25\x8a\xfd\x8b\x88\xe3\xc4\xb3\x20\x1b\x86\xe6\x66\x00\x79\x91\x14\x4c\x06\x47\xa2\xcf\x76\xf2\x07\x84\xcc\xa2\x61\x34\x2d\xaa\xaa\x99\xaa\x17\x9c\xd6\xe6\x34\xd9\x53\xd9\x0c\x0e\x7d\x23\x92\x20\x25\x62\xc5\x03\x41\x4f\xda\xd0\x01\x7b\x73\x9d\xa4\xf9\x9c\x46\x5f\xbb\xea\x8b\xa2\x3b\x4b\x43\xfb\xcf\xde\x51\xf4\x02\x75\x38\xd0\x4b\xae\x9e\x65\x3c\x5f\xb5\x81\xb6\x4e\x82\x1a\x0f\xb4\xdc\xef\x76\x42\xaa\xf2\xbd\xd8\x2f\x37\xed\xe4\xfd\xc9\x81\x42\xaf\xfd\x4f\xd9\x3a\x89\x0a\x61\x2c\xbe\xfa\x6e\x19\x5b\xda\x20\x0d\xb6\x8a\x66\xce\xb7\x55\x85\xb1\x83\xc2\xe1\x22\x4a\xde\xdc\x86\x7d\xb7\x91\xb4\x97\xa9\x5a\x6e\x92\x5f\x05\x20\x77\x5d\xe4\xfb\x00\xcc\x2b\xcc\xa2\xbf\x26\x76\x89\xbe\xb1\xd6\x4d\xcd\xe4\xed\x7d\x70\x6c\xe9\x8f\x75\x51\x4b\x9e\x5d\xf1\xd5\xb3\x66\x9f\x21\x4f\x99\x8b\x6b\x3c\x34\x0f\xd4\xfe\xee\x26\xa6\x3d\xee\x23\x50\x54\x95\x7b\xc4\x5b\xf0\xc6\x88\xe9\x6f\xd6\x3c\x20\x0c\x4a\x6e\x08\x3e\x78\x03\x34\xd6\x20\xf7\x9b\x43\x0e\xd4\x9e\xe8\xed\x06\x69\x36\x11\x5b\xa5\x42\x5c\x8c\x31\x55\x41\xbb\xee\x8f\x43\xac\x3a\x7b\xe0\x54\x15\x9f\x25\xaa\x85\xa9\xe1\x35\x80\x4c\x13\xde\x2e\xef\x4f\x63\x5a\x10\x3c\x82\x8e\x8e\x14\x1e\x3b\xc1\xc4\x5a\x9e\xda\x6d\x13\xb0\x07\xe8\xa6\x38\xe0\x82\xd1\xc0\xfa\xfa\x8b\x48\x14\x89\xe3\x7e\x11\xc7\xfd\x10\xb3\x43\x4f\x44\x08\xfe\xc3\x8f\x80\xff\xd8\x42\x3f\xf1\x9b\x77\xfc\x1f\x61\x28\x38\xa9\xc5\x35\xbd\x55\x81\xa6\x81\x55\x94\x6e\x44\x07\x69\x73\xd9\x8c\xd4\x8a\x2c\x5f\x6b\x4b\x33\x26\xab\xea\x26\x8e\xef\xcd\x3f\xec\xd7\xff\x36\x1e\x0f\xf5\x9f\xf5\x7a\x71\x0f\x11\x6c\xea\x7b\xc9\xa6\x69\x31\xac\xfc\xc4\x06\xc2\x74\x40\x31\x3e\x7c\x41\xc9\xf3\x67\x42\x3e\xae\x07\xae\x86\x81\x5e\x6e\x52\xf9\x18\x81\x7e\x10\x1a\xe0\xcf\xf7\xc7\x0f\xfa\x2c\xab\xaa\x02\x68\x68\xf4\x3f\xfe\xb7\xff\x23\x22\xf4\xcf\x7f\xfa\xd3\x9f\x18\xcb\x88\x4f\x40\x6c\xc5\x76\x25\xf3\xcf\x7c\xf9\x58\x6c\xb7\x69\xb1\x4a\xa2\x7d\xb1\x12\x11\x39\x78\xd8\x40\xce\x4e\x32\x2b\x5c\x54\x5d\x6a\x9d\xf3\xc8\x69\x79\xb6\x8f\xe3\xc2\x6f\x4f\x09\x2e\x68\xc1\x8b\x53\x32\x18\xd8\x7b\x59\x58\xcc\xa6\x3d\xcd\xdb\x6e\x00\x6d\x93\xc6\xcb\xa3\x24\xd4\xd6\x37\x34\x82\x43\x5e\x2f\x87\x59\xf4\x0d\xfe\xe6\x11\x1a\x46\xb9\x36\xe9\x63\x42\x1f\x0f\x16\xb1\x08\xa4\x88\xf3\xe1\x64\x66\x66\x9e\xe5\xc1\x81\x35\xf5\x1f\xa5\x5f\x45\x1c\x27\xf9\x51\x6e\xad\xf5\x85\xf1\x9a\xaf\xf4\x3f\xa2\x9a\x94\xff\x33\x7c\xa6\x01\xa8\xa2\x18\x8c\x5b\xef\x56\xbe\x6a\x11\x36\x6f\x67\x9b\xf5\x89\x1b\xdf\x1e\x40\xe1\xce\x27\x07\x2a\x8a\xbf\xf0\x9b\x37\x92\x97\x01\x91\xfc\xe2\xb1\x65\xc2\xc4\x3a\xd9\x43\x17\xe4\x2d\xcd\x3b\x64\x6c\x14\xb0\x0b\xcf\x7a\x57\xd5\xf4\x62\xcf\xf6\x05\x08\x3f\x34\x67\xb2\x2b\x34\x7a\xb6\x4e\xf6\x71\xdc\x5f\x92\xdb\xc2\x3b\xa6\x7c\xf1\xf2\xb5\xdf\x8e\x38\x1e\x4e\x98\xae\xcc\xe0\x2e\x69\xb2\x93\x66\x45\x09\xb0\xf0\x7f\x51\x49\x41\x7f\xe5\x24\x81\xef\xf4\x39\x4f\xf6\x44\x4b\xa3\x3d\xb4\x7a\xb1\x62\xe0\xb2\x2c\xf5\x34\x52\x2f\x20\x5d\xf8\xa5\x77\xe4\x3d\xeb\x30\xd4\x8d\x0c\x4e\xdc\x17\x19\x67\xdf\xa4\xfc\x8e\xf2\x6a\x18\xa0\xb1\x6f\xca\x8b\x4f\xc6\x08\x38\xb1\x18\xbb\xbf\x0e\x77\xc0\x2d\x7f\x6b\x0c\x7f\xbd\x78\x09\x98\xe0\x97\xe1\x0e\x79\x60\x9b\xe2\xb7\x21\xec\x9b\xe9\xc9\x64\x3c\x1e\x9f\x9e\xd4\xb1\x28\x20\x9b\x98\x45\xf2\xf2\x22\x4d\xee\x7f\xfb\x2d\x3d\xa9\xff\x1b\x8d\xbf\x25\xd1\x34\x52\x32\x2d\x4a\x54\xda\x45\x64\x10\x35\xb0\x8f\x4e\x4f\x10\x5b\x68\x68\xda\x3f\x6e\x7d\x6f\xa3\x20\x89\x5d\xba\xcc\xd4\xcd\x54\xd7\x70\x7a\xb2\xce\x72\xc5\xe5\xf4\x24\xcd\x77\x9b\x34\x31\xdf\xd8\xb7\xe4\x54\xcb\xba\xa8\x34\xac\xb5\xd2\x22\xcf\x7f\x45\xc6\x35\x04\x8d\x2c\xe3\x38\x48\xf4\x5e\x20\x42\xe7\x0a\xcc\x33\x02\xd2\xdc\xa9\xc6\xa9\xaa\xc4\xea\x2a\x02\x15\xc6\x49\x84\x22\x5c\xf3\x94\xd3\x47\xab\x6c\x93\xf2\x7a\x89\x22\xee\xe9\xfb\x6c\xcb\xc5\x5e\x25\x72\xb4\xe2\x0a\xbd\x22\xb0\xce\x87\x7a\xef\xb9\xdd\xa9\x79\xe9\x6b\x72\xfb\x8f\xcc\x86\xf4\xdb\xfa\xc0\xa4\xff\x92\x25\xd8\x37\x1a\x6d\xc5\xbe\xe4\xfb\x5d\x44\xb7\x84\x96\x5c\xd9\xe2\xaf\xe8\xfd\x31\x39\xf4\x7e\xed\x4c\x68\x50\x21\xfd\xd4\xdf\xfa\x28\x0b\x37\x89\xa7\x99\xcf\x6a\x29\x06\x6f\x48\x9c\xd0\xde\x31\x68\x54\xe0\x89\x34\x48\xf8\xcc\x8c\xde\x34\x8a\x48\xcf\x8e\x64\xf4\x3f\xfe\xf7\xff\xb3\xd6\x01\x09\xea\x8f\x2c\x07\x33\x4a\x9d\x9b\x36\xeb\x64\x13\xff\xd5\xd3\x62\xc5\x44\x7d\x42\xdd\x31\xe4\xde\x6d\xe8\x55\x62\x6c\xfa\xba\x66\x4e\x33\x4a\xdd\x1b\x7d\x43\x9b\x5b\x75\x4d\xad\x6e\x5b\xd6\x30\xb5\xe5\xc8\x87\xbb\x4d\xba\x08\x1c\xcb\xad\x10\xd8\x1e\x51\x30\x9c\xc6\x62\x09\xcc\x7d\xcf\xc0\xce\xd2\xd2\x9f\xf6\xae\xbe\xd6\x9d\x85\xcb\xad\x66\xd9\x71\x1c\x0e\xdc\xf9\x38\x8e\x61\x8c\x99\xbf\xaa\x67\x40\x30\x73\xeb\x9b\xa4\x97\x62\x52\x90\x29\x1f\x0c\xce\x26\xe3\x59\xd7\x52\x65\xde\xea\x29\xe9\xb7\xe3\x31\x99\x36\x76\xd5\xa1\xf7\xe5\x7c\xf7\xc7\x63\x72\x38\x68\x96\x1e\xb9\x3d\xe3\x3d\x1b\x9c\x31\xbc\xaa\x7c\x76\x06\x80\x85\xeb\x78\x06\xd3\x0b\x41\x0b\xce\x57\xa5\x41\x81\x71\xd0\x67\x53\x2d\x16\xf9\x5a\x62\x42\x3f\xfd\x4e\x9d\xb1\x51\x18\x8f\x56\xd9\x95\x89\x9d\xf4\x24\xbb\xaa\x35\xc2\xd9\x7f\xbf\x46\xb8\xa1\xfb\x2c\x6c\x08\xaf\x5a\xfc\x8d\xac\xff\x88\x4e\xf9\x7b\x15\xbc\xea\x2e\x05\xaf\xea\x52\xf0\x82\x13\xf9\x8e\xcb\x14\x2a\xf7\x96\x62\x53\xf1\xeb\xbc\xde\xc7\xfa\x9c\xa5\x5f\x6c\xf9\x01\x6e\x89\x5a\xe0\xa1\xfd\x15\xe9\x40\x03\x6d\x42\x8a\x02\x21\x05\x50\xd1\xf6\xb7\xb2\x03\x6e\x94\xb6\x35\xe4\x9e\xf5\xbe\xbb\x06\x08\x14\xff\x45\x60\xd2\x81\x26\x6e\x0d\x3d\x73\x57\x12\x5f\xe3\x7c\x5c\x3f\x6f\x8c\x2e\x9d\x53\x53\xba\x54\xd9\x15\x7f\x8a\x68\xe2\x3d\x50\x84\xfb\xc4\x3c\x18\xf7\x76\x9d\x61\xc4\x17\x2a\x9c\x9c\x0e\x54\xfd\x70\x78\xc7\xf5\xeb\x5f\xb3\xa4\x43\x33\xdc\xa1\x94\x3e\xd8\xb4\x77\x68\x6e\xb9\x67\x6e\x9a\xaa\xb4\x67\x28\x6b\xad\x89\xe5\xf9\xb4\x3e\xf8\x74\x92\xa9\xa4\x50\xc8\x13\xf8\x7d\xa8\x01\x32\x6a\x16\xae\xd6\x22\x09\x54\x09\xbf\xc8\x0a\x9e\x04\x90\xa0\x96\xd7\xb7\x96\xdd\xa0\x06\x74\xd0\xa0\x43\x27\xae\x90\x9e\x80\x98\xd1\xe2\x8c\xb9\xaf\x68\x61\x5f\xf3\xeb\x3c\x67\xcf\x01\x5b\xca\x47\x11\x15\x80\xc5\x15\xbc\x19\xd4\xa5\x5a\x8d\x70\x38\x38\x36\x8c\xae\x3f\x3a\x7e\x4d\xba\xfb\x66\xa0\xba\xb2\x87\x0a\x65\x5e\x47\x02\x74\x25\xf4\x0a\x00\x21\x80\x72\x58\x31\x72\xe3\x58\x55\xf7\x3e\xec\xef\x8f\xc7\x17\x46\x08\xc5\x24\xa8\xda\xf7\x2a\x3d\xbe\x96\x30\xe6\xcc\xaa\xaa\x14\x62\x98\x3f\xae\x5b\x95\x14\xa1\xa6\x9a\x15\xe1\xf8\x19\xd5\xb5\x5e\x62\xf5\x8a\x51\x62\xbf\xdc\xb4\xb5\xfc\x26\x00\xbc\x57\xfa\xd3\x62\x95\xd4\xd9\xda\x77\x2f\xca\xd7\x07\xf4\x8b\x40\x21\x10\xc7\xa8\xc1\x30\x14\x5f\x73\x6a\xdf\xa9\x04\xa8\xb5\x57\xc2\x0f\x2a\x01\x34\xfd\x7a\xc0\x77\x37\x11\xcd\xdc\xa3\xae\x30\xfb\x3a\xc5\xbb\x53\x06\xd1\xbe\x73\x13\x3f\x31\xba\x0c\xa7\x59\x0b\xf4\x1b\x94\x1f\xd7\x2c\x83\xc3\x86\x91\xe0\x3c\x38\x24\x0f\x9c\x30\x8e\x93\xc4\x14\x55\x55\x0e\xc2\x5e\x97\xf7\x06\x77\x88\xa7\x0d\xa5\xee\xdb\xcb\x7d\xae\xb2\x5d\xce\x3d\xa2\xcc\x09\xc1\x76\x34\xf3\xb5\x3b\x59\x5b\xce\x06\x85\xd7\xfa\xef\xd6\x1e\x95\xec\x31\x77\x03\xc3\x0d\xaa\xc3\x2b\x0c\xdb\x99\x7a\x20\xa0\x9a\xb2\x06\x29\xd7\x16\x0b\xd4\xfe\x36\xe9\x7a\x16\x16\x72\x74\x91\xae\xaa\xaa\x9f\x55\x55\x86\x3f\xc7\x80\xee\x74\x85\xb8\x4f\x35\x80\x9a\xfd\x70\xe3\x3e\x00\xa0\x99\xb5\xf7\x7a\x59\x57\xea\xb2\xd0\x34\x7c\x0d\x19\x40\xf3\x53\x55\x0e\xd8\xa1\x6b\x6a\xe8\x9e\x71\x3c\xe2\x1e\x8b\x7d\xa1\xe2\xb8\x06\xe8\x75\xaa\x19\xf4\x1a\xe9\x9b\x72\x72\x56\xce\x6b\xe8\x93\x85\xb3\xd3\x58\xb2\x1c\x8c\x46\x67\xf8\x67\x8e\x7f\xea\x84\x53\x78\xd1\x4b\xd9\x6d\x21\x56\x7c\xba\x9c\x2f\xeb\x6f\x14\x8d\xac\xfd\x97\xf7\x17\x43\xef\xe9\xc1\xe2\x60\x81\x97\x4d\xfe\x72\x3e\x5e\xf8\xc6\xaa\xf3\xfb\xae\x94\xf1\xa1\xa7\xe4\xcd\x2d\xca\xc4\x9f\x84\xc1\xbc\xa4\x36\xde\x2e\x4d\xeb\x1f\xfa\x43\xa0\xf7\x5d\x83\x6d\x7e\xbd\x8c\x83\xe5\x3f\xd3\x07\xbb\xb1\x11\x6b\x96\x4a\xe8\xda\x7d\x5b\x55\x15\x1f\xa5\xab\x15\xe2\x1c\xaf\x41\x43\x69\x4e\xb3\x87\x79\x0e\x6f\x4b\x38\xe2\xfd\x34\x74\x8f\x51\xda\x35\x8b\x52\x2f\xba\x99\x97\x68\x0f\xf1\x46\x71\x63\x68\x5a\xf4\x5d\x8d\x1f\x0b\x26\x88\xc8\x4d\x6e\xf9\xf6\x82\x4b\x6f\xb5\x6b\x46\xb4\x99\xfe\x88\xe6\x38\x90\xe4\x9a\x18\xb5\xa4\x8d\x5a\xdb\x4d\x7f\x79\x03\xd9\xd6\xbf\x30\x32\x9c\xb0\xa6\x76\x06\xa9\xa9\x83\x09\xbb\x1b\x80\xe6\x40\x0e\x20\x04\xd2\x6e\xea\x10\x30\xbe\x6f\x44\xd2\x5c\xf5\x47\x2f\xb9\x1a\xe9\x8e\x5e\x79\x69\xb6\xbe\x31\xc8\x5f\x49\x77\x7a\x5d\x08\xc3\x01\x89\xe9\x86\x1b\x0e\x09\x0f\xed\x40\x1f\xf6\xa9\x4f\x27\x12\x71\x40\x92\xb4\xac\x61\x1a\xf5\xbc\x78\xba\xca\x94\xe8\x08\xcb\xd2\xdd\x03\x90\x0b\x3c\x82\x11\x6a\xa7\x15\x6b\x90\x0f\x7d\xdc\x6d\x45\xf1\xb0\x58\xf2\x52\xa1\x80\x97\x66\x45\xed\x6c\xf2\xca\x8c\xfb\x2a\xbb\xa2\x8a\x74\xdc\xf7\x7c\xdd\x65\x8f\x2d\xa3\xe6\x10\x3b\x6f\x6f\x74\x0a\x7b\x71\xf3\xa5\x6b\xaa\x55\x76\xf5\xe5\x1b\xaa\xbb\x6e\x6d\xbc\x6d\x85\x5b\xb6\x39\xe4\x09\x99\x39\x05\xa7\x37\xc4\xd3\xef\xea\x73\xf9\x77\xec\x89\x00\x66\xfa\xeb\x6f\x7a\x4e\x94\x2d\xbb\x71\xc5\x93\xf0\x66\xc3\x68\x78\x91\xc4\x8f\x96\xad\xf0\xde\xa5\xd9\xcc\xaf\x5d\x62\x8e\x11\xa9\xf7\x45\xbf\x89\xc3\xad\x5f\x02\x91\xf5\xf6\x45\x2b\x11\xbe\xd6\xc9\xdc\xe6\xe8\x77\x40\x77\xbb\x04\xad\x62\x9e\xf9\x5b\x26\x18\x8d\xc6\x95\x64\xe3\xaa\xc7\xde\xfd\x78\x64\xd0\xd2\xed\x16\x1d\xfc\x4a\x46\xa5\x77\x8c\xba\x1b\x43\x4e\xcd\x89\xdc\xcd\xad\x48\x9b\xe6\x28\x9f\x52\xc4\xb1\x04\x0f\xbe\x20\xf4\xc4\xaf\x3c\x51\x56\xdb\x0c\x46\xd4\x5a\x0e\x4e\x0a\xe4\x60\x80\xa7\x21\xd6\xc7\xb7\x7b\x6d\x82\x5f\x1f\xf5\x38\xdb\xd6\x42\xa8\xbb\x09\xea\x09\xab\x67\x07\x1d\x45\x8b\x3f\x03\x79\x16\xfd\xda\x05\xa0\x93\x58\xcd\x33\x60\xba\x14\xce\x79\xa4\xaa\x84\x01\x30\xad\xf1\xbc\xfd\x3b\xb1\xcc\xb8\xf1\xf8\x39\xc6\x8c\x25\x9c\x15\x05\x00\xfe\x21\x9a\x0f\x41\x6b\xf9\xd7\x59\x82\x09\x35\xdb\x81\xfe\xef\x25\xab\xdf\x14\x10\xb2\x4a\xf3\x27\x7e\x52\xde\x4a\xca\x35\xc7\x04\xe1\x4c\xfd\x38\xa8\x68\x51\x0f\xd5\x8a\x1a\xc3\x6b\x6f\xdb\x56\xe3\xcc\x21\xff\x55\x77\x88\x2e\x8d\x07\xcb\x93\xec\x0a\x56\x2c\xca\xf8\xd0\x90\xdc\x6b\xc8\x7e\x30\x31\x4d\x31\x79\xea\xb7\xd0\x98\x2e\x6c\x63\x8b\x21\x00\x33\x50\x87\xe1\x69\x9a\xda\xd7\xc8\x4e\x51\x04\xb1\x3a\x68\x69\xa2\x46\x80\x20\xaf\x85\x90\x14\x88\x5d\xad\x60\xda\x27\x68\x82\x3d\xf1\xc1\xb9\x6b\xf1\xf0\xb2\x19\x1b\x14\xbd\x43\x7b\x4e\x73\x6b\x3d\x96\xa2\x08\xa5\x37\x1b\x5d\xde\x02\x26\x1b\x15\x4d\x62\x85\xc8\x4b\x1a\x45\x84\xd0\x2b\x91\xad\x12\x31\x60\x05\xee\x99\x9c\x2e\xbb\x2a\x43\xa0\x33\xac\x6e\x49\x0c\x13\x09\x41\xb4\x56\x2f\x53\xf9\x09\x90\xe2\x25\x1d\xa3\x38\x0d\xe0\x4d\x34\x59\xb1\xc1\xb2\x23\xd2\xd0\x09\x1f\x65\x2b\xc6\x56\x07\xe2\x88\x1a\xb4\x61\x5d\xcb\x43\x39\x5b\xeb\xe5\x03\x88\x5d\x80\xf2\x25\x06\xec\xa9\x45\xf0\xcf\x11\xdd\x23\x1f\x29\x41\x50\xc9\x52\x6a\x51\x3d\x5b\x27\x26\x34\x05\x6b\x77\x00\x87\xc0\x6a\x11\x23\x7b\x7b\xdb\x0b\xfd\x17\x3a\x30\xcf\xc1\xa6\x77\x9f\xf8\x5f\xc0\xd4\xf7\xde\x7f\x24\x3b\xc9\xab\x55\x76\x55\xed\xc8\xbf\xdc\xcb\x50\x22\xc7\x79\x7b\x95\x6e\x39\x42\x55\xe8\x5d\x6e\x5d\x07\x1e\xb4\xa7\x75\x67\xde\xfc\x64\x6f\xae\xfb\x3b\xdb\xb0\x14\x3b\x5d\xc2\xda\x21\x54\x0c\xd8\x0e\x21\xb7\xe1\x0e\xf7\x54\xaf\x15\xaa\xfa\xac\x38\x25\x10\xb8\xd7\xdb\x35\xd6\xe7\xf6\x90\x28\x5a\xd2\x25\x4d\x69\x4e\x08\xdd\xe8\xf1\x43\x82\xb5\xe3\x49\x6a\x66\x2a\xa7\xd7\xf6\x6d\x1e\x22\x0b\x93\xd3\xb5\xbb\x77\x8d\xe3\x8d\xfb\x7d\x4a\xb2\x75\xb2\x15\xc9\x9a\x30\xb6\x15\xc9\x86\x90\xf5\x68\x27\x76\x09\xa1\x1b\xf3\x37\x1f\x0e\x9d\x9e\x52\xcf\x62\x9f\x6d\xe6\xe3\x85\x71\x47\x58\x23\x0e\x30\x24\xb7\xbf\xd2\xc1\xc0\x5d\x4c\xef\xd8\x98\xae\xd8\x98\x6e\x61\x01\xd0\x1b\xc8\x4b\xaf\xea\xab\xea\xad\xbd\x08\xb8\x71\x57\xd5\xbb\xb3\xab\x38\xde\xfa\x37\xd3\x3b\xc2\xd8\x4d\xf8\xe2\x94\x0c\x06\x3b\x37\xdd\x97\x0c\xba\x40\x2f\xb0\x0f\xf4\x63\x5d\x81\xb3\xec\xd6\xfb\x70\xed\x1c\x36\xa6\x63\x42\x2f\xfc\x4f\x1b\xff\x13\x39\x5d\x9d\x7d\x8c\xe3\x4b\xbf\x4e\x57\xd0\x6a\x38\x21\x8c\x5d\xf8\xdf\x2e\xfc\x6f\xba\x69\xab\xde\x7a\xbe\xf6\xe0\x55\x2f\x1d\x24\x62\x5d\x0c\xa1\x7a\x4c\x70\x67\xe0\xd7\x1d\x6e\xd9\x6b\x06\x53\xba\x23\xf4\x29\x83\x49\x75\x6d\x83\xde\xb9\x02\xa6\x35\x32\x5c\x3d\xb9\x55\xa5\x0b\xac\xaa\x15\x4f\xae\xe9\x53\x32\x4b\x7e\x2c\xcc\x8a\x58\xd3\x6b\xfa\x94\xba\xf0\x54\xb4\x3f\x26\xd6\xf9\xef\xee\xab\xeb\x6e\xed\x4f\xd3\x6c\xed\xee\xc4\x1d\xaf\x5b\x59\x5b\x8c\x45\xad\x83\x33\x9a\x2e\x7b\xed\xdd\xd2\x76\x85\xc9\x09\xed\xce\x0e\xe6\x33\x21\x87\x4c\x9b\x3c\x35\x39\xd0\x66\xe9\xed\x08\xa0\xcb\x6d\xa0\xd2\x9a\xfd\xa5\xe6\x65\x7f\x50\xc4\xfe\x26\x53\x54\xe0\x01\x94\x47\xaa\xd2\x3e\xe3\xb5\xf2\x0f\x6e\xb9\x6d\xa6\x8f\x9c\x78\x1a\x16\x9d\x96\x8e\x51\x18\x6b\x5d\x98\x04\xaa\xdf\x91\x21\x84\x4f\xcd\x57\x66\x28\x66\xb7\xf5\x00\xe4\x68\xc7\xea\xea\xe8\x50\x55\x1d\x69\xdc\x3b\x25\xf5\x78\x6a\x82\xfd\xd8\x2c\xff\xc4\x4a\xf3\x76\x3f\xcc\xc0\xa4\x47\xff\x9a\xd6\x2f\x09\x1d\x93\xbb\x2f\x8a\xdc\x44\x34\xfb\x84\x75\x06\xf6\x70\xbc\x65\xd6\x70\x21\x1a\x36\x6a\xc7\x2f\x96\xc6\x87\xe0\x2a\x89\xd0\x77\x78\xf3\xf5\x0e\x31\x3b\x6e\xad\xcd\xc3\xf4\x35\xa7\x8d\x83\x66\xfa\x89\x1f\xe8\x1b\xff\x1e\xea\xd6\x70\x6c\xc7\xe4\x2b\x03\xdc\x17\x46\x2d\x58\x1c\x28\x42\xd6\x36\x8d\x3e\x39\x03\x0e\xb1\x46\x77\x80\x4b\x16\x97\xaf\xcf\xc2\x72\x34\x4b\x1f\xc0\x0a\x9a\x04\xc1\xbb\x9a\x1b\x0c\x41\x2a\xda\x29\x01\xae\xc2\xf2\x27\x7e\xe3\x17\xe0\x87\xeb\x9e\x74\xab\x50\x75\x57\x58\xfc\x58\x69\x11\x8d\xad\x52\xaf\x40\x7b\x64\x69\x70\x8d\x9d\xa9\x63\x2d\x51\xae\x38\xdf\x3d\x16\xbb\x60\xe4\xea\x88\x9d\xf3\x05\xbd\xb3\x99\x1c\xf0\xcf\x11\x55\x76\x6b\x54\x82\xae\x81\x0e\x5e\xb9\xfd\x05\x9b\xd3\x6b\xc5\x35\x08\xc6\x55\x6f\xba\xe6\x35\x60\x77\x33\x5d\x60\xd1\xb0\x85\xdc\xa0\x3b\xfa\x95\xf3\x85\x05\x5b\xac\xa7\xb7\xb6\x00\xb5\xf6\x2f\x0d\x4d\x33\xf8\xe7\x32\x4e\x9a\x58\xd3\xed\x2a\x0b\x3b\x77\x92\x85\xe0\xd3\x26\xd6\x84\xa2\xd2\x0b\x33\x11\xc7\x2b\xb4\xe1\x02\x0d\xea\x19\x1b\xbb\xc0\x3d\x66\x86\x86\x93\xc3\x81\xbe\x0a\x56\x3a\x86\x4a\x6c\x2d\xf3\x2b\x33\xc6\x66\x25\xb8\x78\x1b\xe4\x40\x95\xe8\x48\x7f\x73\x3c\x3d\x8c\xcf\xb1\x9d\xe4\xc5\xd4\xf3\xf2\x1b\x0c\xd9\x3a\xc5\x72\x13\x7e\x5f\x6e\x0e\x18\xc5\xf5\x42\xd1\x8f\xca\xf8\x6c\xb9\x18\xb8\xe0\xb8\xe4\xc2\x52\x8f\xbd\xb0\xaa\xd7\xaa\x13\x4b\x85\xa6\xc6\x5d\x98\xd7\xa1\xf7\x6c\xa4\x99\x3d\xe3\xe8\x2d\xcc\xd1\x5b\x38\x5b\x27\xea\x6c\x3f\x4b\x32\x36\xa6\x82\x4d\x5c\x24\x2a\x32\x55\x67\xf9\x4c\xb0\x24\x63\x6a\xb8\x27\x83\xc9\x34\x29\x35\x01\xb5\x4a\x60\x00\xc3\xcb\xe3\x58\x17\xf3\x60\x71\xae\x10\xf3\x24\x11\x2c\x1f\xee\xb5\x64\xa3\xce\xf5\xd7\x24\x75\x0e\x82\xce\x32\x01\xc3\x93\x42\xfd\xf7\x17\x74\x0f\xa5\x14\x8c\x25\xd6\xc7\x06\x90\x8b\xb1\x11\x53\x9b\x19\x4a\x2a\x08\xb5\x8e\x69\x08\x40\x97\x11\xf4\xe0\x85\x56\x0c\xef\x2f\x98\x2e\x74\xf8\x60\x81\xcf\x93\x85\x57\xe0\x29\xd1\x35\xde\x1f\x24\xe5\x90\x3d\x20\x8b\x3a\xe0\x96\xe6\xe0\xad\x6f\x5c\x11\xc7\x19\x83\x0e\x60\xb9\x67\x75\x77\x6d\x47\xa1\x8a\xc1\x1f\x17\x71\xdc\xd7\x3f\xbe\x6d\xd7\x91\xc0\x58\xeb\xae\xb9\xbe\xdb\x68\x85\xc6\x2b\x13\x74\xe6\xe6\xaa\x72\x9a\x01\x4e\x9c\xa0\x56\x5f\x3d\x4d\x69\xed\x29\x3c\xdd\x53\xeb\x41\x3c\xf5\x0d\x4d\x9e\xd6\x88\x27\x46\xed\x0e\x4a\xa2\x00\x17\x82\xdd\x1e\x28\x6f\xb9\xa3\x1b\xfc\x1a\x88\xe1\x44\x42\x5a\x1b\xe2\x53\x00\xfd\x6a\x22\x4d\xa8\x05\xbb\xf5\x43\x1a\x36\x50\x70\x1b\xe0\x07\x58\xd9\xdb\x23\xd0\x05\xa4\xd7\xac\xbe\x2b\x86\x96\x6e\xc6\x53\xd5\x88\x07\x36\x57\x0b\xcf\x92\xe8\x1d\xb4\x02\xda\xe2\x61\x6e\x21\x26\x8a\x3e\xff\x7f\x36\x11\xeb\xc3\x2f\xef\xf9\x67\xe3\x0d\xd2\xfa\xe4\x80\x54\x1a\x60\x3f\xbe\x57\x6b\x10\x49\x78\x9b\x7e\xd6\x02\xb9\xa7\x66\xa1\x61\x97\x5f\xed\x81\x13\x29\x1b\xb1\x02\x5f\xab\x9a\x7c\x18\x9d\xd3\x2e\xbd\xe4\xbf\x58\x65\x59\xe2\x2e\xef\xed\x0f\x73\x7d\x5f\x55\xee\xcb\x85\x58\xdd\x10\x2f\xc6\xbc\x17\x89\xb0\xbb\xf4\x5f\xff\xd9\xd2\x03\xdc\x9e\x4f\x2a\x80\xdb\x54\xa3\xeb\x6c\x75\xc9\x55\x8d\x6f\x8e\xd1\x48\xdc\xfb\x1a\x9b\x2b\x23\x7e\xfa\x79\xb6\x18\xa5\x17\xe2\x8a\x5b\xcd\xc5\x4f\x32\xf8\x48\x7a\x80\x3e\x30\x60\x82\x5a\x3c\x82\x01\x13\x20\x77\xeb\x81\x8d\xbc\xe8\x69\x45\x0f\xe1\x3a\xa2\x5c\x2c\xd3\x3c\xb2\xc1\x97\x3f\x65\x09\xde\xfb\x99\xf7\x8c\xc9\x59\x3a\x60\x7b\xdf\xa5\x77\x9a\x0e\x1b\x90\x27\x46\xbd\x1f\xe9\x11\x8b\xc0\x2e\x3b\xc2\x31\x84\x1a\xcd\x25\x1e\xef\x30\x94\x38\x66\x90\x99\x0e\x00\x6a\x7d\x37\x48\xbc\x82\x66\xe3\xa9\x9e\x25\xd2\xb3\x48\xc7\xe0\x49\xd4\x48\xf1\x1a\x52\xa0\x07\xf9\x80\xed\x69\x81\xee\xac\x03\xb6\x77\xb1\x66\x70\x88\x52\x6f\x88\x52\xea\x05\xca\x79\xe9\x43\xe6\x80\xf7\x15\x73\x8a\x1b\xe3\x7e\x2e\x99\x71\xea\x05\x83\x5a\x34\x95\xb5\x9d\x2f\x88\x1c\x32\xdd\x0a\x9a\x0d\xd9\x43\x1f\x99\xc0\x0d\x69\x51\x55\xfd\xa2\x1d\xec\x0e\x61\x6f\x8f\x3a\x6e\x0d\x98\x30\x95\x0e\x10\xbe\xd3\x44\x8a\xfb\x3d\xe3\xea\x7b\xba\xcb\x61\x5a\x7b\x26\x67\x43\x70\xee\xf2\xc8\xd5\xfb\x00\xac\xc4\xfa\x67\xc1\x9a\x69\x46\x6a\x24\x14\x16\xb8\xa4\x5b\xfc\x03\x41\x16\xb3\x30\x0a\xce\x63\xaf\x38\x2a\xc8\x6d\x8d\x63\x98\x28\xea\x2e\x7a\x01\x21\x25\xa3\x8a\xa6\x8d\x40\x8e\x54\xd4\x90\xe9\x33\x9c\x79\x66\x3c\x95\xad\xc7\xb2\x59\x10\xb6\x2d\x65\x50\x7d\xe9\xc3\xd1\xec\x91\xff\x2d\x10\x65\xf6\x0f\xf7\x9d\xe2\x9e\xb1\x1f\x44\x52\x90\x38\x56\x71\x6c\xbe\x9e\xed\xe7\x4a\x1f\x8e\x08\x48\x9b\x70\xc6\xd3\x44\x97\x30\x1c\xaa\x05\x19\x26\xae\x8c\xd9\x78\x3a\x21\x54\x6a\x72\x36\xe5\x0c\x52\xe9\x72\xce\xf6\x9e\x1b\xba\x57\xe4\xc0\x16\xa9\x8f\x22\xa8\x95\xed\xe7\x83\x81\x2e\xd3\x15\xa9\x4b\xd3\x65\xc6\x31\x28\x7b\x95\x88\x63\x7e\x5e\x00\xcb\x37\x4b\x13\x3e\x9c\x90\x69\x0a\x2e\xa4\x07\xc9\x0c\x94\x7b\x18\x3f\x13\x22\x38\x00\xf8\x8f\x74\xbb\x06\x23\x68\xe6\x80\x19\x0f\xfa\xac\xbd\x5d\xda\x69\x62\x42\xb0\x2f\x59\x99\xe4\x34\x4d\x31\xb6\x83\x1f\x11\xab\xcf\x7e\x11\x71\x9c\x2c\x11\x3a\x1a\x92\xfd\x22\x08\xa1\x4b\x2f\x02\x63\x80\x35\x34\xee\x29\x88\x4a\x85\xed\xf2\xdd\xda\x1b\xc7\x43\xc1\x02\xd4\x80\x6f\x20\x80\xc2\xf1\xc0\xa0\x9f\x74\x2f\x06\x01\x55\x0a\xd6\xb6\x85\x6f\x40\xd8\x86\xcc\x79\xae\x0f\xa4\x39\xdb\xfd\xa0\x74\xaa\x19\x21\xc8\x86\xf8\xb7\x30\x60\xa3\xcf\x6f\x79\xce\x24\xe0\xb8\x65\x23\xb1\x57\x65\xb6\x42\xc8\xa3\xcc\x8b\x55\xd7\x05\xfb\x87\x61\x27\x06\x9d\xe4\x92\x9c\x39\x16\xfd\x8d\x4a\xa4\xc5\xfc\xa7\xfd\x31\xb5\x68\x40\x19\x7b\x98\x25\x92\x16\x78\x61\x80\x78\x99\xd2\x06\x3b\xcb\xd6\x49\x76\x2e\xda\x45\xb8\x14\x14\xc1\xf2\xc2\x50\xec\xfd\x31\x9d\x90\x5e\x8d\x99\xed\xe1\xea\x40\xf2\x8c\x9c\x9e\xda\xdd\xf8\x77\xdd\xa5\x14\xf6\x63\x41\xe8\x9e\x3d\x91\x49\xfa\xff\xd0\xf6\xe6\x4b\x6e\xdc\x48\xbf\xe8\xff\x7c\x8a\x66\x85\xbf\x3a\x05\x13\xa4\x48\xcd\xf8\x9c\xef\xab\x6e\x34\x43\xd6\x62\x79\xac\xcd\x6e\x79\xd1\x50\x1c\x45\x35\x09\x36\x6b\x54\x04\x68\x14\xd8\x8b\x9b\x7c\x84\x1b\x71\x1e\xe1\xc6\x8d\xfb\x24\xf7\x51\xce\x93\xdc\x40\x26\x80\x42\x2d\x6c\x79\xe6\xc4\xd1\x1f\x6a\x16\xf6\x35\x91\x48\x64\xfe\xd2\xac\x9d\x5d\x1c\x5b\x5f\x0d\x63\xe7\x1f\xb3\xbf\xdb\xef\xfb\x49\x39\x5a\xac\xcf\x51\xf8\x3b\x5a\xac\xf7\xfb\x12\x78\x77\x1f\x10\xc7\x25\x0c\x65\xe0\x07\xa2\xec\xe5\xec\x6d\x9e\x64\xac\x18\x69\xe9\xdc\x40\xfb\x31\xfd\xa7\x6e\x0b\xeb\xf3\x21\x9c\x51\x4e\x62\xff\xf8\xeb\x6a\x6c\x3b\x4c\x4e\xe9\x8e\x59\xf4\xab\x10\x3b\xbc\x6e\x76\xbb\xb5\xcf\x43\x78\x46\x52\x4d\x77\x15\xad\x61\xfd\x31\x95\xe7\x0e\x88\xc2\x02\x3c\x0c\xcb\x54\x9e\x81\x49\xac\x0d\x18\x94\x69\x92\x21\x00\x00\xd8\xb3\x1e\x70\x1b\xbd\x86\x86\xae\x1c\x60\x91\x73\x86\xcf\x74\x66\xc2\xb7\x4c\xc0\xdf\x25\x2b\x92\x35\xa1\x1b\x96\xd1\x3b\x56\x24\x5b\x42\xaf\x19\xe8\xef\xa9\xf3\xbb\x60\x76\x05\xdd\xd2\x6b\x33\x77\xc0\x6d\x9f\xc2\xe9\xb4\x98\x6e\x19\x5b\xef\xf7\x5b\xc6\x76\x86\x8e\xae\xe9\x84\xa4\xdb\xe1\xfa\x8c\x4d\xaa\x4b\xce\x15\x53\x67\xcb\xfd\x5e\x0d\x97\x67\xec\x6e\xa8\xa6\xeb\x74\x4b\x2f\x99\x1a\x26\x57\x8c\xad\xa7\xcb\xf4\x8e\x9c\x02\x74\x4f\x88\xda\x73\x85\x40\x3d\x5e\x54\x0d\xf5\x5f\x51\xc8\xb1\x49\xaf\xe9\xe5\xd9\x70\x32\x1d\x4e\xd2\xcb\xf3\x09\x38\xcc\x84\x0e\x5b\x11\xed\x82\xe7\x45\xb2\x7a\xf4\x98\xd0\x1b\xb6\x1e\x7c\xb2\xcf\x11\x37\x6c\xed\x97\xda\x73\x36\x3e\x7d\x7e\xf6\xe9\x74\x30\x78\x4e\x6e\xb0\xe5\x37\x74\x82\x85\xdc\xb2\x22\xb9\x21\xbd\xdb\x73\x35\x4d\xb6\xec\x86\xde\xb1\x5b\x9a\x5c\xb3\xcc\x5c\x6a\xee\x06\x6c\xc2\xff\x62\x46\xf4\x13\x49\x93\x35\xbb\xa1\x4b\x76\x0b\x03\xb7\x1a\xb2\x4f\xe1\xc2\xf9\x5e\xd7\xb0\x6c\x78\x8b\x8d\x6d\x82\x1d\x56\x31\xee\xb5\x86\xb1\x4b\x4d\xee\x2f\xd1\x69\xf4\x56\xf1\xa8\xc9\x82\xff\xf5\xbf\x4e\x07\x03\x4d\x2e\x75\x0d\x51\xb9\x01\x8b\x6f\xca\x7d\x23\x97\x3c\x41\xb0\x9c\x46\x62\x53\xf4\x25\xe0\xff\xff\x2b\xa5\x1c\x6a\x50\x8c\x97\xda\xbd\xa4\x5e\xea\x1a\xe4\xe3\xa3\x6f\xc6\x9e\x76\x03\xd0\x78\xbb\xaf\xe6\x92\xf8\x53\x50\x18\xe0\xa8\x07\xfe\x9c\x9f\x75\x0f\xa3\xbf\x27\x34\x47\xd1\x47\x58\x9d\x8a\x10\x2b\xc8\xff\x8b\x08\x15\x7e\x50\xa9\xb9\x9d\xf4\x6a\x1d\x12\xc4\xf3\x58\xc7\x0c\xdd\x73\xe6\x20\x1d\x1d\x48\xd0\xa3\x89\xef\x6c\x7e\xfe\x38\xe8\x6c\x75\xa7\xc9\xe1\x44\x9c\x8c\x61\x99\xbd\xd2\xf4\x85\xa6\x7f\x58\x07\xc9\x2f\x35\x1b\x57\xf4\xe1\x5b\x7b\x51\x83\x77\x61\x76\xbf\xd8\xa4\x1c\xb0\xe0\x9c\x88\xd3\xd0\x1d\x73\xdf\xc4\x31\x4c\xf1\xcd\x10\x8f\x15\x1a\x60\xe2\x99\x74\x81\x73\x2a\x84\x90\xd3\x77\xe6\xc0\x33\x51\x88\xaf\xf7\xf6\xf2\x9f\x25\xc6\xd4\x9d\x51\xbd\x04\xf1\xb6\xea\x8c\x7b\x9a\x81\x4c\x7f\xdc\xd6\x53\xf0\x35\xbe\xc6\x3b\x16\x34\xd5\x5f\x76\xac\x0f\x61\x77\x3d\xa9\x7f\xbe\x93\xb6\x2e\x54\x64\x31\xb4\x6c\x99\x0e\x06\x2f\xf5\x81\xfe\xa1\xa7\x7f\xe8\x91\xdc\x96\xce\x11\x3e\x0c\x0c\x49\x1d\x0e\xa0\xbc\x11\xe5\x77\x4a\xee\xb6\xec\x0f\xcd\xee\xe5\xb6\x4c\x67\x36\x6a\x4e\x97\xbc\xc8\xee\xf8\xd2\x34\xf9\x32\x5b\x7c\x2e\xd3\xd9\x3c\xd8\xa6\x3f\xd7\x30\xac\x1b\xa5\x81\xb0\x05\x6c\x9e\x93\xb6\x45\x00\x1f\x35\x4b\xa6\x86\xdb\x58\x4a\x84\x36\x6b\xfa\x6e\x9b\x89\xf9\x68\x91\x15\x45\x52\x87\x5b\x76\x50\x93\xd2\xab\xfb\xd5\xfc\xbb\x9a\xf0\x99\x9a\xe3\x9b\x7b\xf7\xfc\xa0\xec\xa3\x19\x8b\x33\x74\x76\x2c\x93\xab\x8b\x1c\x4b\x30\xeb\x2e\x70\x30\x08\x7a\x41\x73\xf0\x9d\x76\xb8\x59\xe7\x05\x4f\xaa\x0e\x93\x03\x49\x34\x39\xac\x72\x91\x15\xc5\xdd\xbd\x5d\xe2\x2d\xcf\x76\x41\x97\x61\x84\xa0\xaf\x66\x94\xac\xae\x0e\xe4\x3a\xad\x8d\x7c\x45\xfe\x60\x64\x68\x87\x93\xbc\xdf\x75\x62\xc6\xba\x25\xdc\x0c\xd3\x28\x66\x92\x50\x65\x3d\xb7\x2d\x9f\x59\x97\x27\x6a\xb4\xd9\x95\x1a\xf7\x4e\x1c\x7f\x95\x28\xb0\xf6\xb0\xa9\x2c\x4d\x78\xa8\xdc\x5f\xff\x44\xdd\xbf\xfc\x89\x34\x1f\x6c\x1a\x1c\xc7\xc0\x8f\x67\x7d\xb1\xd6\x34\x3e\x4e\xbb\x97\xa8\x85\xa8\xe8\xeb\xc0\x2e\xe9\x69\x91\x6f\xb7\x7c\x19\xc7\xba\x32\x49\x42\xb2\x0d\x64\x0a\x34\x52\xea\x58\xb3\xac\x3b\xe5\x50\x77\x82\xcc\x52\x6d\x69\xd1\x0b\x43\x8a\x54\xdd\x11\x0c\x20\xc6\x5a\x28\x0b\x7b\xdf\xc4\xf8\x4d\xa6\xae\x72\xf1\x2d\x62\x48\x0d\x9b\x2d\xe8\xca\x81\x26\x85\x80\xbe\x8b\xad\xac\x97\xdd\xec\x2f\xaa\xd3\x18\x7e\x87\x8f\x6a\x34\x2a\x8e\xbf\xc7\xd0\x6a\xf6\x19\x1f\x05\xf4\x16\xb5\x9c\x3c\x59\x45\xc0\x3b\x78\x78\x73\x94\x0c\x0c\xcf\x2b\x3a\x06\xd4\x3f\xf8\x46\xf6\xb3\xa5\x64\x53\x4f\x63\xb9\xcf\x73\xaf\xa3\x42\xf6\x7b\xd1\x90\x55\x99\x39\xeb\xc4\xc1\x74\x5d\x62\xbc\xb6\x86\x05\xbf\x39\xf9\x01\x34\x97\xc2\xd0\x7b\x73\x25\x09\x5a\x6f\x5f\x6a\xd3\x5a\x7b\x0e\xb4\xd6\xe9\xd0\xf1\xeb\x03\xcb\xb0\xc7\x1b\x9b\x2a\x8e\xff\x86\x83\x7b\x99\x29\x27\x67\x7c\x65\x42\xda\x5d\xeb\x77\xf7\x0d\x06\x33\x5b\xfe\x73\x57\xe2\x34\xbf\x97\x6c\xa3\x13\x5d\x15\x50\xfd\xaa\x69\x27\x20\x5f\xfc\x17\xaa\xeb\xe2\x0d\x27\x5e\xac\x95\x58\x6b\x9f\x1d\x05\x4c\xe8\x6d\x4a\x44\xf7\x5a\x17\x2d\x5f\x41\x83\x46\xd9\x83\x95\x4e\x34\x19\xe8\x16\xe6\x32\x2c\xb9\xec\xf6\xc2\x1f\x8f\x21\x8e\xcd\x97\xcb\x1d\xae\x4d\xb9\x84\xd0\xa4\x39\xe6\xb0\xb2\x1a\x27\x33\x41\xb5\x44\xb4\x6c\x58\x06\xf6\xdd\xc7\xbc\x9d\x59\x05\xb7\xd0\xe1\xc3\x2f\x8d\x89\xef\xb9\x7d\x50\x6b\x17\xd0\x8f\xba\x44\xc9\xee\xf0\x5c\x74\x0e\x3e\xee\xd8\xc6\x58\x9c\x59\xed\x29\x1f\x10\xc7\x77\x22\x09\xbd\x79\xb7\xa1\xa9\xab\xc4\xcd\xd2\x40\x31\x21\x58\x09\x4d\x09\xf0\x24\x70\xe8\x6d\x7a\x1d\xc7\xce\x96\x83\xfd\x53\x82\x3d\x7d\xdf\x33\xc4\xeb\xac\x7c\x81\x76\x18\xad\xa0\x84\x90\x5e\xc7\x20\x9b\x5d\xfb\xb0\xe7\xb9\x56\x16\x73\xdd\xed\x9e\xd7\x8a\xef\xeb\x5b\x0d\x33\xa4\xac\x24\x8e\xbf\x85\x9d\x5e\x2d\xe4\x8a\xd2\x55\xbb\xf1\xef\x1d\x69\x9a\x6b\x25\x8e\x73\x0d\xba\x43\x6d\xec\x92\x80\x9d\x6c\xf7\x0a\xcd\x31\xc1\x4a\x10\x14\x26\x44\x1c\x5f\xf1\xa6\x87\xd5\x0f\x0f\x50\x0f\xa7\xb6\x88\x4f\xd4\xcd\xa6\xff\x08\x4d\xb7\xa7\xb1\xf5\x36\x24\x46\x37\x6b\xce\x0b\x78\x7d\xf9\xcd\x21\x91\x06\xa4\xad\xb2\x0b\x08\x57\x52\xbf\x46\xe9\xc0\x36\x2a\x28\xa6\x56\xe8\x07\x8b\x80\xd0\x2a\xd9\x10\xe7\x0e\x8b\xde\x7a\xe5\x7d\x4b\x43\x2f\xac\xdf\xd9\x24\x4c\xda\x85\x5a\xd5\x2a\xd3\x22\x60\xb5\xa8\x0f\x86\xd3\xa0\x36\x02\x46\xeb\x5f\xb0\x3e\x36\xe9\x68\x67\xc3\xeb\x29\x5a\x83\xd6\xd1\x5d\x20\x59\xed\x91\xed\xee\xf0\x51\x9c\xae\x56\xb1\xc8\x5a\x1c\x21\xb7\x61\x6d\x47\x3b\x6c\x22\x6b\x15\x77\x74\xf9\x15\xfa\xb4\x0b\x48\xc6\xaf\x00\x0e\x5e\x5b\x19\x8e\x0f\x6f\x63\x24\x7b\x5f\x57\x89\x0a\x45\x58\xf8\x8a\xf2\x0d\x78\x70\xb7\xd2\xa2\xfe\x84\x66\xd6\x45\x21\x28\xb3\xc6\xb1\xe8\x33\x3d\x45\xb8\x35\x92\x66\x74\xc7\x7e\x37\x05\x07\x5e\xc8\x40\x88\x8c\xb2\xe4\x86\x77\xb2\x2d\x85\x47\x09\x32\x0c\x8c\x1d\x3b\xd3\x43\xb8\x75\xbe\xe4\x10\x32\xc9\x00\xe4\xae\x3c\x20\xac\xe6\xf0\x5f\xd4\x42\xcc\x50\x54\xea\xa2\xbb\x70\x31\x27\x1b\xd3\xce\x5d\xb8\x4e\x3c\x60\x6e\xa3\xd0\x61\x41\xce\x27\xe0\xcc\x0b\x1d\x30\xd7\x0a\xc3\x95\x92\xdc\x85\xa5\xbd\xaa\xda\xde\x2c\xce\x44\x0d\x17\xb5\xf2\xfa\x12\x55\x05\xdd\x83\x4a\x76\x48\x34\x7d\x65\xfd\xe0\x37\xd8\x2e\xd2\x15\xa1\x65\x63\xa6\x2d\xfb\x69\xc8\x77\x18\x9a\x97\x88\xdb\x02\xbc\x72\x9d\x16\xb6\x50\x91\x39\x78\x13\xc7\xdc\x98\xeb\x7b\xa1\xe5\x2f\x39\xbf\xa9\x54\x49\xaf\xeb\x08\xfb\xf0\x04\xf0\xe0\xa3\x0b\xcd\xf1\xf2\x04\x8f\x3c\x03\xf0\x95\x78\x36\x9e\xe6\xac\x3f\xf6\xd8\xbf\x18\x7a\x6e\x41\x1d\xd0\xf9\x0a\x52\x87\xe0\x84\x6a\x3c\x19\xd6\x88\x08\xaa\x02\xf4\x27\x81\x9a\x70\x1e\xc7\xfd\xad\x5b\xc1\x95\x63\x49\x00\x62\x40\x8b\xed\x2e\x70\x12\x87\x40\x02\x8d\x1d\x8a\x40\xd2\x3c\xac\x09\xca\xdb\x9e\x08\x75\x85\xb3\x6b\xfa\x89\x8c\xbc\xa8\xdc\x49\x34\x20\x4c\xb4\xf7\x42\xe9\x11\x51\x1e\x6f\x6f\x4f\x23\x33\x7d\xed\xa7\xa8\xba\xbb\x31\x2a\xed\x0c\xbb\xd9\x49\xf2\xe6\xf3\x6f\xdb\x84\x5a\x92\x83\x59\x62\xd6\x51\xb0\x04\xbc\x9f\xbb\x4b\xfe\x12\xa0\x4a\x5e\x83\xda\x73\x49\x33\x17\xfc\xb3\x58\x87\x11\x68\x07\x18\xc0\x2a\x9d\x96\x67\xb2\x7a\x60\x2d\x89\x9c\x95\xa8\x62\x5e\x79\x59\xfa\x31\x4f\x4c\x28\x8d\xd6\xf9\x92\xa3\x46\x75\x06\x45\xd4\x71\xe5\x21\x7b\xd6\xcc\x0e\xde\xda\x01\x64\x3e\xda\x09\x5b\x80\xf0\xb2\xe9\x50\x42\x07\x6e\x61\xaa\x33\xe0\x28\x4f\x05\x9b\x9d\x8f\x2a\x89\x11\x54\xa1\x69\x64\x7d\x34\x44\x54\xd7\xa2\x2b\xce\xa3\x62\x1a\x46\xab\x5c\xe4\xe5\x3a\x09\x7d\xf1\x57\x4e\x2c\x9c\x4c\xc7\xbd\x72\x26\xa4\x07\x52\x30\x30\x47\xac\x02\xbd\x54\x01\x04\x37\xc1\xdd\xf8\x07\x5b\x54\xd3\xc9\x64\x67\xe1\xa8\xeb\x99\x70\x9a\xa9\x2b\xd8\x16\x65\x57\x6d\x1d\xa9\x9a\xd5\x07\xce\xda\x43\xb7\x29\xf5\xda\x51\xcf\x31\x6c\x00\xb7\x45\x03\xaa\x44\xbd\x0d\xa0\xaa\x17\x36\xe3\x48\xda\xb0\x25\x90\x27\x6c\xcc\x8f\x47\x1a\x53\xc3\xaf\x44\x87\x09\xfb\xbd\xfe\xf3\x6d\xfb\x97\x1b\x56\x6b\xd5\x6f\xfe\x7d\x0a\xad\x84\x72\xc1\x99\x76\xa6\x97\xa5\x66\x2d\x01\x06\x45\xdd\xfb\x53\xcd\x9e\xa9\x84\x93\x53\xc2\xc1\x7d\x9c\x58\x26\x13\xc3\xcf\xa3\x2d\x7e\x82\xa0\x67\xb3\x39\x21\x56\x3a\x58\x3d\x18\x1e\x80\x8b\x05\xe3\xa1\xfc\x0f\x8b\x5b\x67\xaa\x9a\xbe\xcd\x93\x8d\x35\x9f\x43\xd5\x9a\xa1\x18\x4c\xd2\x09\xa6\x15\x72\xc9\x2b\x64\x3b\x94\xcf\xa2\x2e\x18\xec\x6a\xf6\xad\x82\xa5\x16\xf8\xea\xee\x52\xeb\x62\xb3\x39\x95\x4c\x9f\xca\x33\x71\x2a\x9d\x0e\x42\x56\xf7\x2f\xe2\xdf\x15\x0d\x59\x22\x3d\xc5\xe4\x20\x43\x67\x74\xd6\xf1\x59\x16\x78\xa3\xf2\xd5\xfd\x4d\x37\xf9\x10\xf0\xb1\x67\x8f\x71\xeb\x5e\xcf\x3b\xfe\x4c\x44\x18\x31\xb0\x27\x6b\xfe\x07\x77\xee\x52\xc6\xee\xa5\xaf\xe6\x1e\x4c\xc5\xb1\xf0\x6e\xa6\xbc\xf7\xf9\xdc\xee\xe5\x57\xa8\x24\x73\xc9\x55\xb9\xdf\x77\x04\x5a\xfd\xb2\x76\x04\xd3\x95\xf7\x96\x40\xc2\x02\x4a\xd4\xce\xc9\xd5\x7b\x49\x6e\xe3\xf8\x0f\xe5\x1f\x6d\x83\x76\x68\xb3\x3a\xbc\x3e\x83\x38\x0b\xfc\x62\x99\x4c\x2f\x5d\x26\x31\x50\xe4\xbc\x8a\x9b\x42\xbe\x34\xa9\x42\x06\x4c\x51\x57\xec\x80\xa9\xaa\x4c\x7d\x56\xf3\xb5\x25\x82\x56\xd5\x2b\xaf\x25\x24\xf7\x89\x64\xca\x30\x03\xc2\xd4\x4d\x27\x84\x4c\x6d\x6d\x36\x95\x55\xc7\x97\x88\x57\x41\x68\x95\x97\xa1\xe0\xe7\x4d\xad\x3d\x29\x54\xe6\x0d\x43\xc2\x66\xe0\xb1\x7c\xea\x2a\xd4\x54\xd3\xe1\xd1\xfa\xc6\xb4\x51\xe3\x7b\xe9\xea\x0b\xeb\xb0\xab\x33\x2c\x90\x96\xf5\x0e\xf5\xb2\x38\x2e\x8f\x55\x92\xd9\x4a\x46\x0b\x29\x16\x99\x4e\x60\x4b\x64\xb6\x5f\xa5\xad\xcf\xc7\xd6\x32\x97\x36\x2b\xe9\xea\x3f\xaa\x0c\xe4\x6d\x57\x44\x3b\xb3\x26\xcf\x76\x58\xf2\xd4\xfe\x1d\x30\x95\x6a\x17\x38\xd8\xc1\x32\x87\x75\xd8\x76\xf3\x03\x68\xac\x81\x83\x78\xef\x6e\xa6\x7b\x75\xf6\xae\xbb\xdc\x50\x1f\xf3\x93\x94\xaf\x92\x1c\x7c\x24\xe5\x95\x8f\x24\xfb\x73\x90\xbb\x56\xa9\x23\xad\xa2\xfd\x44\x9f\xa9\x40\x4c\xa8\xcf\x99\xaa\xbb\xc5\x94\x36\xa0\x72\xdd\xe4\x39\x37\x34\xad\xaf\x1c\x51\xda\x03\x7a\xbf\x4f\xfc\x6f\x43\x2b\x4f\x87\x13\xc6\xae\x65\x92\x51\x41\xe2\x38\xb3\x1e\x64\x6a\xe4\x5a\x8b\xba\xb6\xa0\x5f\xae\x4d\xb7\x52\x21\x7d\x69\x78\xd1\x34\x44\xb0\x4b\xf3\x80\x05\xbe\xa1\x84\x38\xee\xc9\xaa\xf2\x59\xe5\xbc\x2d\x26\xba\xa9\xfa\x05\xdb\xaf\xd2\x64\x68\xbc\x35\xd4\xd3\x52\x7c\x6f\x11\x0d\xaf\x5e\xa6\x50\x31\x53\x73\xa4\x8b\x55\x59\x81\x5b\x36\xd5\x72\x90\x23\x99\x6d\x39\xcd\x1a\xb5\xc0\xc9\x7a\xbb\xdf\x0b\x76\x8c\xf4\x5a\x4d\x11\x84\xdb\x93\x14\x56\x46\x2a\x2a\x2f\x67\x88\xbd\xd9\xee\xa7\xe1\x1c\xc1\x93\xd0\x6e\x00\x5e\x84\xa0\x34\x30\x78\xec\x33\x1c\x42\x75\x3e\x86\xbf\x12\x7d\x58\x5b\xe3\xc7\xda\x20\xb2\xdd\x20\x9b\x49\xcc\x3b\xd4\x54\x0e\x06\xce\x9b\xcc\x6e\xa8\x7b\x7a\xc0\x72\x2a\x06\x2c\x47\x23\x32\x4f\x86\x05\x01\x4b\x32\x5b\x76\xa2\xce\xc6\xd3\x71\x1a\x54\x51\xab\x43\x0c\x98\xfa\x3a\x9b\xc9\x21\xa4\x9b\xa4\x63\x82\xd5\x51\xb3\xb7\x0f\x47\x7a\x1f\x38\xb1\x6d\xbd\xf6\xd4\x26\x51\xb0\xb1\x9d\x48\xdd\xf1\x68\xa6\xe1\xc1\xcc\x1e\xd6\xe6\x74\x32\x1b\x02\x7c\x8c\xf8\xbd\x30\x18\x08\xaf\x8b\x17\xf8\xb3\xed\x7c\x3a\xd1\x60\x1c\xfa\xab\xca\xb6\xf6\xc5\x9a\x75\x83\x94\x9b\x2b\xa2\x4b\x89\x62\xce\x56\x42\x08\xae\x5c\x60\x04\x2f\xc3\xba\xfd\x30\xae\x3b\xb5\x5b\x3b\xdf\x35\x10\x25\x42\x5f\xe4\x7f\xf0\x24\x24\x6a\x16\x7d\xff\xbe\xda\x0d\xbf\xe6\x89\x26\xa7\xa2\xcf\xbc\x3f\x84\x53\xc1\x44\xe0\x6c\x05\x2c\x0c\xc4\x7e\x0f\x38\x9a\xce\x10\x31\x8e\x23\xad\x76\xa0\x5a\xd8\x36\xfa\xcc\xaf\x84\x54\x7c\x08\x06\x40\x65\x04\x6f\x16\x55\x71\x20\x1e\x32\xf7\x5b\x90\x7a\x58\x7f\x91\xde\x54\x21\x70\x41\xd9\xdc\x5d\x0d\x5f\xa5\xa2\x6a\x02\x74\xa1\xdd\x0c\x21\xf5\xd0\x1a\xd6\x44\xf5\xb5\x78\x6d\xfd\xd8\x97\x96\x1a\x3f\xac\x9f\x68\x18\x5c\xc9\xb4\x87\xc8\xb4\x2a\x7d\x99\x0f\xfa\x30\x04\x11\x8c\x05\x3e\xa9\x6e\x1c\xa0\x2a\x0c\xc7\x15\x2d\x18\xa8\x62\x49\x9a\x11\xcb\x4a\x4d\x18\x2b\x40\xf1\x28\x8e\x93\x5d\xa5\x4e\x56\x58\x08\x2b\xc3\x67\x3a\x13\x3c\x93\x72\xb1\xb6\xee\xe2\xc1\x93\x29\x75\x1a\x7c\x1d\x8e\x4c\x87\x2e\xae\x57\x80\x59\x1f\xf2\xc4\x4d\x39\x1b\x80\x78\x26\x89\x1c\x2e\xc2\x6b\xb8\xd5\x5b\xa8\xa9\xbd\x91\xe1\xa2\xc2\xc2\x0f\x54\x9f\x8b\x2e\x2c\xbc\x70\x86\x12\x2e\x13\x0d\x90\x61\xc2\x42\x97\x01\xf0\x43\x1c\xbb\x07\x86\x1a\x1e\x44\x42\x08\x41\x64\xbc\x75\x0e\xe0\xf5\xf0\xf7\x07\x7e\x47\x4b\x44\x84\x25\x28\x95\xf5\xd7\xd0\xa5\xca\xae\xae\xc0\x72\xab\x3f\x39\x0a\x5d\xd5\x95\x7a\x7c\xa0\x93\xf1\x98\x54\x6c\x5b\x7f\x25\xa0\xa1\x4e\x4b\x6e\x87\x9f\xbd\xf2\x26\x37\x13\x6a\xa5\x28\x0e\x31\xf4\x97\x3c\x31\x49\x17\x59\xc9\x4f\x26\xa9\x13\x02\x59\x81\xb9\xb8\x32\xfb\x75\xda\x19\x6a\xd8\x4d\x35\xad\x0b\x0e\xc9\xbd\x9c\x06\x6d\x7f\x2e\x93\x2b\x4e\xc1\x8a\x2d\xad\x3c\x1a\x2e\x76\x25\xbc\x39\xf4\xdc\x3d\xc2\xbb\x14\xee\xbd\xd0\x71\xfc\x42\x8f\x74\xbe\xe1\xe7\xf9\xf0\xaf\xe3\x31\x58\x55\x2c\x79\xf2\x42\x8f\xb6\xb2\xa4\x82\x4c\x15\x8b\xb4\xca\xb7\x05\x8f\xd2\x57\x3a\x8e\x5f\x75\xa5\x7e\xe5\x53\x27\x8a\x45\x4b\xb9\xbb\x2c\x78\x44\x5f\x68\x76\x6f\xd2\xa6\x39\xdd\xca\x32\x15\x07\x92\x9a\x68\x74\xfe\x13\xd1\x57\xad\xe8\x9e\x5b\xec\xbc\x42\x33\x65\x77\x53\x3d\xda\x70\x9d\xfd\xc0\xef\x52\x3d\x5a\x68\x55\xfc\xc0\xef\x02\xa5\x4b\x33\x33\xcf\x94\xdc\xc6\xf1\xef\x12\xa4\xc5\x75\x14\x2f\x57\x1d\x8a\x56\x77\x2c\xc0\xf0\x15\x84\x00\x7c\x5b\xb2\xe4\x09\xc4\x58\x63\xa4\xdd\x9c\x38\x4c\x03\x41\xce\xc6\x66\xfd\x59\x0d\x3f\x4c\xbb\x03\x73\x24\x2a\xc8\xb9\x8f\x3b\x1b\x93\x69\x5b\xa4\xdb\xa0\x3b\x74\x57\x8d\x3c\x2d\xd8\x0f\x35\xb8\xea\x05\xb9\x2f\xd1\x77\x4c\xd7\x02\x05\xd9\x22\x2c\x09\x08\xb5\x2b\xc2\xac\xdc\xaf\x72\xaf\x58\x15\xa0\xaf\x16\xc4\x44\xe4\x81\xb3\x96\xa5\x92\x18\xee\x25\xa2\x15\x45\x5a\xb8\x5f\x64\xd0\x8a\xfd\xe0\x63\x3f\x90\xb3\xc9\x38\x8e\x93\x97\x79\xb2\x20\xb4\xaf\xe2\xd8\xf7\x66\xf8\x78\x3c\x3e\xdb\xc5\xf1\xb7\xdc\x1f\xed\xb4\x04\xac\xd1\xff\x62\x2c\x9b\x76\xef\xae\x9a\x89\x81\xdf\x1e\x79\x1d\x60\x17\xc0\x85\xd2\x46\x20\x39\x90\xde\xf1\xc1\x02\x4f\x53\x1d\x83\x55\xd0\x46\x7a\x5c\x35\x1d\x81\x09\xe9\x7d\x38\x36\xac\x1f\xba\x87\xd5\xf9\xa5\x5a\x90\xf4\x38\x26\x43\xb5\x12\x32\xab\x4a\x0b\x4e\x6c\x9c\x93\x4c\x5a\xb0\xcc\x2e\x7a\xb7\x16\x7b\x39\x3c\x62\x3b\x5a\x36\x4d\x76\x98\x24\x5c\xc4\xb4\x64\xbb\xf3\xe1\x64\xba\x98\xed\xe6\xa9\xb5\x35\x14\x54\x10\x92\x26\xa5\x4d\x1d\x7a\xce\xa8\x42\xd0\x88\xd0\xd0\xda\xeb\x69\x55\x07\x3a\xb7\x74\xfb\x2d\x2b\x4c\x18\x51\x2c\x52\x7c\xa1\x23\xd0\xbf\x2e\x59\x58\x0b\x15\xcc\x9e\xb5\x7d\xd0\x9c\xa5\x3b\x36\x9c\x54\xf6\x01\x96\x18\x78\x9b\x09\x07\xdf\xf0\xab\x54\xcb\x27\x3a\x11\xa4\x17\x5a\x51\x40\x23\xf6\xfb\x0c\x2e\x32\x62\x39\x7d\xc9\x93\x8c\x96\x74\xe5\xcc\xf0\x56\x68\x83\x97\xae\xfc\x35\xd6\x11\x27\x5f\xc1\xda\xb5\x6e\xcb\x13\x84\xe3\xa0\x63\x90\xd8\x67\xd4\x87\x00\x52\x04\xf9\x53\x55\xaf\x5d\xd5\x6b\x5b\xf5\xda\xe2\x1a\x33\x9b\x40\x90\x5e\x3e\x35\x77\x9f\x9d\x99\x1d\x87\x91\x46\x3f\x98\xd8\x7f\xf2\x64\xe1\x6e\xa8\xb3\x72\x4e\xe8\x8e\xd0\x7b\x5c\x3c\x69\x7f\x42\xa5\xca\xaf\x72\x91\x46\x5f\xc3\x02\x8b\x0e\x84\xa4\x8b\x00\xfe\xc0\x4c\xa8\x33\xc6\x6c\x10\xb2\xda\x9a\xa8\xaa\x72\x77\xe7\x9d\xbf\x17\xbb\xb0\xdd\x60\x42\xcc\xb1\xf0\x60\xf5\x6e\x01\x92\xf4\x77\x53\xe4\x8e\x96\xb4\x94\x24\x4d\x76\x6c\x8c\xfd\xb1\x86\xa8\xb3\x72\x6e\x8a\x2a\x65\x95\xc3\xc2\x92\xe3\x7b\xc4\x92\xc9\x2f\xfa\xf5\xd9\x84\xda\x89\x77\x89\x76\xd4\x72\x30\xd8\xd0\x45\xb0\xa2\x70\xdd\x99\xd9\x45\xa5\x5b\x6f\xd4\xbb\xa0\x5b\x52\xdd\xad\xab\x53\xae\xe6\x2d\xca\xa4\x86\x13\x6a\x4b\xb5\x7f\x32\xc9\x57\xc9\x96\xe9\xa0\xe4\xfb\xea\xb1\x0d\x44\x6c\x2d\xa6\x88\x02\xdb\x74\x93\x9b\x21\x08\x18\x2c\x2a\x46\x8b\x35\x95\x84\xae\x7c\xb4\x0e\xa3\xb5\x8d\x5e\x57\x38\x0f\x0b\xba\x22\x74\x59\x3d\x5b\xc2\xf7\xa6\xe6\x13\xc1\xac\x58\x67\x15\x70\x57\xc5\x70\xb8\x0b\x00\x58\x69\xf0\x24\x57\x4f\x4f\x4e\x37\x67\xec\xee\x74\xe3\xae\x2e\xd7\x0c\x1a\xb5\xb1\xed\xb9\x62\x2b\x99\x5c\x53\xd3\xa6\xde\x9a\xb1\xe5\xd4\xca\x04\xab\x0d\xb3\xa1\x57\x80\xd0\x61\xfe\x12\x92\x5e\xbb\xd5\x78\x65\xe8\xe4\xd1\xb4\x50\xea\x92\x4a\x02\x80\x28\xfe\xc5\xa1\x9e\x03\x89\x85\x5b\xab\x8e\xc0\x75\x2c\xd9\x1c\xb7\x49\x63\x75\x52\xbf\x6e\x0f\xd5\x43\x9b\x7f\x70\xd1\x81\xcc\xe9\x92\x95\xf4\x13\xbb\x74\xfb\xf6\x86\xc1\xeb\xa3\xdb\x3e\x7d\xa6\xac\x11\x54\x45\x98\x50\x7f\xbb\x46\x97\xb4\x65\xef\x30\xaa\xea\xb4\x6e\x51\x14\x5d\xa3\x28\x4b\x9e\x3c\x77\x35\x7f\x22\xe7\xe3\x69\x72\xc3\x9e\xa3\x91\xf9\x27\x76\xcd\x93\x4b\xc7\x59\xb8\x54\x86\x4c\x9b\x24\x2e\x0f\xbb\x33\x89\x80\xc1\x78\x6e\xcd\xc0\x0f\xb8\x34\x9b\x43\x46\x7a\xf9\x6c\xe7\xad\xcb\xa1\x39\x9f\x08\xbd\xa9\xc6\x38\x37\xe3\x58\xc2\x43\xd3\xc2\x39\x25\xf8\x3d\x31\x77\x88\xd3\x64\x61\x35\xc3\x56\x23\x2d\xf7\x7b\xfc\x3a\x5b\xe1\xf3\x66\x1c\x07\x07\xf6\x0f\x0d\xa7\x1a\x1b\xc6\xf2\x38\xbe\x43\xdf\x6b\x93\x6f\xc6\xc1\xc0\xaf\xab\x1b\xcd\x19\x78\xc7\x9c\x0e\x1f\x8f\x53\x1f\x76\xee\x9c\x64\x4e\x1f\x8f\xd3\x71\x6f\xfd\x27\xaa\x49\x64\xc7\xb3\xd1\x80\xad\xa9\xa9\xdf\x34\x00\xa0\x87\x3d\x19\xb9\x32\x5b\x9e\x77\xf1\xce\x86\x53\xda\xb0\xc9\xa3\x31\x85\x13\x17\x24\x98\x21\x8c\x7f\x9b\x8b\x32\xf7\xca\x88\x5e\x76\x45\x19\x4e\xe0\x13\xa1\xd9\x68\x9d\x97\x5a\xaa\x3b\xd8\x98\x17\xbc\x78\x0b\x2b\x96\xf9\x6b\xdb\x65\x83\xc5\xe3\xe4\x1e\x98\xff\xe9\x9d\x61\xe5\xaf\x12\x6e\x7a\xf0\x09\x13\x5d\x55\x4c\x4b\xbd\xe1\x9f\x68\x9b\x15\xf1\x6d\xeb\xe6\x52\x3e\x79\x6e\x44\xd1\x05\x39\x98\xcb\x08\x55\x24\xfd\xd5\xd4\x0d\xc8\xbe\x76\x48\xe3\xf8\x25\x00\xff\x5b\x97\xbd\xe6\x42\xf2\x38\x2d\x41\xd9\x0a\x5b\x62\xfa\xf5\x3a\x5f\x2e\x0b\xfe\x4c\xde\x88\x8a\x79\x05\xfb\xad\x6f\x1d\x12\x99\x3a\x8e\xfc\xdb\x66\xe5\x68\xab\xca\xbf\xa4\x37\xd3\x9f\xf0\xc6\xd4\xc0\x00\xb1\x3c\x1c\x2f\xb2\xbb\x5c\x5c\x7d\x5b\xec\xd4\xf3\x6b\x2e\xc0\x5b\xd1\x31\xa8\xcb\x23\x59\x50\x7b\xf2\x58\x71\x13\xfa\x54\x20\x8a\xad\xb9\xd7\x1d\x1a\x6f\x4c\x8b\x80\xa1\x77\x40\xa6\x79\x75\x9d\xa7\xd5\xd5\xfe\x43\xf3\x06\xdf\x9f\x1c\xc0\xa0\x09\x89\xf8\xaa\x90\x52\x05\x36\xc3\x57\x3b\xad\xb9\x2a\x8f\x9d\x90\xce\x7f\xad\xc7\xc5\xc0\xf9\xd2\xce\xaa\xb5\x62\x26\x0d\x97\xf7\x25\x17\x79\xf9\x2a\x91\xe7\x4e\x6d\x63\xbf\xef\x0b\x09\xca\x22\x4e\xac\xf1\x33\x14\x2c\x87\x68\xa1\x3a\xcc\x02\xc1\xaa\x97\x20\xee\xd8\xf8\x74\x77\x56\x9d\x8d\xae\xfd\xfe\xdd\x78\xe7\x20\x69\x33\x1f\x17\xc0\x57\xed\x40\xa4\x5c\xc4\x71\xf1\x70\x8f\xcf\x9d\x2f\xf5\x05\x7b\x12\x3c\x66\xad\x58\xab\x66\x53\xa4\xf3\xb4\x9c\xc3\xb3\x02\xa7\x0b\xba\xa2\x9a\x50\xe8\x4f\x38\x8b\x2b\x51\x7b\xcc\xb5\x93\x1a\x61\x49\x4f\x8b\x7c\xf1\x39\x32\xcc\x2b\xec\xdb\xb5\x08\x79\x93\x6d\x43\x4e\x01\x40\x15\x86\xb9\xa0\x7d\x2b\xa0\x88\xe3\x7e\x19\x68\x0f\x82\x24\x00\x96\x39\x95\x71\x9c\xac\xc3\x8d\x63\xd5\x35\x50\x42\x00\xdc\xb2\x03\x37\x7f\xaf\x32\x51\xae\xc0\x9b\x68\xc1\xa1\x12\x70\x5a\x55\xbb\xcd\x12\x14\xfd\x28\xff\x28\x6f\x45\x0b\x2f\xf2\x82\x9b\x54\x66\x4b\x07\x41\x81\x25\xb6\xcb\x42\x33\xf6\x44\xa9\xec\x0e\xa0\xdf\x41\x22\x1c\xdc\x56\x94\x45\x4f\xf4\xe3\x9c\x15\x85\xbc\x31\x17\x22\x53\xda\xfb\xbb\x2d\x2f\xf7\xfb\xe1\xa4\xcf\xae\x65\xf2\x50\x22\x8a\xa8\xfe\xfe\x65\xc1\xf4\xbe\x6a\x62\x4f\x8e\xa4\x28\x64\xb6\x34\x84\x4f\xb7\xdd\x74\xca\x91\xe2\xe5\xae\x80\x43\xfb\xd1\xec\xe3\xed\x78\x3c\xfc\x78\x3b\xfe\xcf\x8f\xb7\x63\x3e\xfc\x78\x3b\x59\xcd\xef\x1f\x1f\x1c\x12\x39\xa8\xa0\xb2\x28\x22\x34\x9b\xa9\x39\xe3\x74\x30\x28\x99\x5b\x3f\x3b\x8b\x05\x22\xd8\x2b\x47\xaa\x04\xa1\x5a\xa6\xc2\xb9\x22\x68\x80\xe9\x65\x08\xeb\xa6\xbb\xf0\xf2\x08\xf1\xec\x32\x82\xdb\x1f\x7a\xaf\x1c\x62\xd5\x8e\xd0\x5f\x6a\xb0\x8c\xef\x44\xb2\xb3\x30\xee\x12\x70\x51\x9f\x94\x56\x80\x73\x38\xd0\x82\x8d\x4f\x8b\xb3\xfc\x74\x30\x28\xc8\x2e\x51\xb3\x62\x4e\x8b\xca\xc5\x82\xee\xb8\xb9\x82\x5a\x64\xd3\x01\x91\x20\xe7\x95\x14\xbe\x2b\x97\x59\x7f\x80\x9b\xd5\x4d\x2b\x9b\x9a\x96\x21\x91\x06\x91\x65\xbe\x4a\xb2\xe6\xda\xbc\x72\x6e\x0f\xde\x03\x08\x20\x39\xde\xe2\x7e\x72\x37\xe5\xf6\xf6\x98\x72\x27\xb6\x41\xfc\xc6\x05\xb8\xf4\x2c\x6b\x5e\x29\xcc\x6c\x7f\x57\x1b\x44\xc3\x2d\x2e\x60\x09\xe3\x88\x2d\x2a\x42\x53\x10\x8f\x16\x16\x45\x74\x31\x2b\x1c\x94\x0e\xfe\xb6\x2e\x46\x55\x76\x05\x1e\x5e\x5b\x3e\x22\x32\x1a\x65\x20\xbf\x8c\x9c\xa7\x82\x50\x91\xb7\x3e\x1c\x96\xa4\x73\x72\x7f\x08\xc9\xc9\xb2\xf1\x92\x65\x2a\x73\x7a\x5d\xc9\x97\x54\x7f\xba\xb2\x85\x0a\x43\x55\xa8\x85\xbf\xf7\xd5\x6e\x2c\x15\x3b\xaa\x24\xa7\xc9\xd9\x63\x04\xa6\x08\x83\x99\xa6\x62\xbf\xff\x2d\xe1\x14\xf4\xf4\xf5\x21\xac\xad\xcd\x60\xf5\x99\xae\xf5\xa2\x43\xb5\x53\xb7\x4b\x68\x6b\x88\x6a\xd0\xd7\xfd\x0d\x08\xa1\xe1\x71\x40\x6a\x1a\xf8\xff\xf1\x32\xcc\x44\x4c\x35\x6b\xe9\x0c\xa6\xc7\x75\xf7\x4c\x37\x09\x60\x0e\x55\xca\xdb\xc7\xbb\x84\xea\x9f\x1d\xd1\xc1\x1b\x0a\xf4\xa7\x56\x09\xd3\xf4\xd7\x3a\xa0\x48\x87\xbe\xe7\x17\x86\x0a\xcb\xf9\xd2\x58\x81\x72\xa9\xb6\x7c\xfe\xb5\x60\x63\x7a\x85\x5c\x64\x4f\x4e\xaf\x04\x1b\x8e\xbe\xf9\x4b\x2a\xcc\xaf\xc9\x37\x69\x81\x21\xff\x23\x5d\xc5\x71\x62\x7e\x4e\x1e\xfd\x05\x4f\x95\x4b\xd1\x56\x77\x61\x1c\xf5\x8e\x9f\xf1\x42\x67\xbf\x81\x23\xdf\xea\xfb\x43\x68\x05\x0f\x1a\x1f\x86\x3b\xd2\x59\x5e\x98\x5f\xd9\x6d\x0e\x68\x3f\x2f\xdf\xfe\xf4\xfd\xdf\xdf\xbe\x79\xff\xe4\xd5\xa7\x27\xbf\x7d\x7f\xe1\xd4\x42\x20\x5d\xa0\x13\xd2\x95\xf5\x97\xe7\x3f\xbd\xff\xfe\xa9\xcd\x38\x15\x3e\x5b\x5a\xd7\x24\xa9\x5a\x44\xe8\xfd\x6d\xaa\xe9\x5d\x2a\x0e\x01\xc4\xd1\x27\x51\x59\xdf\x2b\x76\x09\x47\xaf\x39\xd1\x6e\xc1\x80\xfc\x2e\x7c\x2b\x45\xf1\x96\x13\xce\x15\x5e\x3f\x14\xa6\xf8\x7c\x57\xd3\xfb\x5d\xf9\x58\x7c\x1e\xf3\xd1\x95\xc9\x6c\x1e\xc7\x05\x48\x31\x57\xf8\x48\x19\xc7\x77\x71\x5c\x12\x9e\x56\xf8\x9d\x7a\xa4\x33\x75\xc5\x35\xdd\x32\x64\x9a\x4e\xd7\x7d\xb6\x3b\x5d\xb3\x75\xf8\x04\xe6\xd2\x2f\xd9\xf8\x74\x79\xb6\x75\x94\x6c\x89\x6f\xc5\xdb\xd9\x12\x91\x5f\x19\x5b\x87\x44\x65\xb1\x53\xa6\x84\x5f\xcd\xf8\xbc\x87\x5a\xd8\x1a\x39\xe7\x13\x7e\xc0\xe6\x81\x67\xcb\x05\xaa\xa4\xf7\xd9\x95\x87\xf4\x30\x6d\x8e\xe3\x4d\xa5\x05\x5c\xd7\x90\x0e\x34\x6e\x07\xf2\xeb\x2b\x41\xeb\x43\x31\xac\x0f\x85\x39\xfc\xee\xbe\x54\x14\xd8\x93\xe4\x61\x59\xb8\xed\x6a\x83\x0e\xb6\x25\xd6\x0b\xd5\x8a\x58\x7e\x16\xa1\x60\xb3\xba\xbe\x3c\x98\x34\xe2\x98\xfb\xbe\xc1\x0a\xd8\x30\x68\xf0\x75\x4b\xe9\xf8\x8a\x5d\x0f\xb2\xce\x77\xd4\xde\xe6\x6c\x3c\xbd\x0e\x55\xc5\xaf\x07\x9b\xe1\x37\x63\x92\x5e\x85\xe2\x95\xc0\xe2\xf5\x6a\xb0\x19\x7c\x33\x26\xd4\x93\xcc\x6b\x87\xb6\x70\x75\x20\x87\x6b\x71\xf6\x78\xec\x15\x98\x6a\x0d\x9f\x36\xfa\x11\x8e\x0e\xcd\x6a\x46\x00\xc1\x1c\xb8\x98\x67\xbf\xb1\xdc\xff\xfe\xc0\xe4\x91\x6b\x8e\xd7\xcc\xa8\xd5\xe5\xf8\xa7\xb0\xca\x61\x2d\x05\xd5\x61\xa5\xb5\xb8\x0f\x54\x18\x02\xe0\xeb\x8e\x63\xfd\xc8\x7f\xec\xf7\xbc\x8a\xfa\x2d\x8e\xb9\x8f\xfa\xad\x57\xef\x6e\xd6\x32\x73\x00\x7c\x89\x2b\xc1\x92\x2b\xf1\xf5\xb5\x18\x08\xf2\x28\xb9\x16\x83\x09\xa1\x83\xc1\xb5\x30\xec\xd0\x63\x73\x28\xa4\x89\x2f\x71\x10\x0e\xc1\x80\x49\x12\x5e\xf0\x6f\x44\x08\x63\x53\x02\xe2\x62\xc4\x98\xe1\x36\xe5\xea\x04\xd8\x0e\xcd\x0a\x35\xd3\xf3\xe0\xde\xd4\x74\x95\x1a\x82\x88\xba\x47\xb1\xa6\x1c\x98\xe6\xac\x3f\x01\x36\xa8\xf9\x9e\xe4\x2f\x92\xe5\x6e\xbb\x55\xbc\x2c\x9f\x2f\x73\x5d\x02\x70\x86\xa8\x1f\x05\xf0\x0e\xd9\x9f\x18\x62\x65\x98\xb1\x3e\x93\xd2\x6b\x32\x36\x93\x29\x7a\xa4\xd8\x49\xa5\xad\x77\x81\xa3\x02\x97\xd6\x77\xf9\x2d\x2f\xca\x0e\x82\x7f\x29\x02\x6d\x45\x3d\xba\xfd\x9a\x5d\x09\xaa\x47\x77\xf8\x17\x21\xe6\x9e\x0b\x60\xc9\x0b\x59\xd1\xd8\xdb\x8e\x57\xab\xd0\xed\x2d\x50\x43\x18\xf5\xad\x4a\xfc\xa5\x34\xb2\x80\xa5\x51\xef\x39\x78\xea\x4a\xbe\x19\xd3\x8e\xeb\x38\x16\x81\x02\x9d\x46\x98\xc5\xd7\xea\xf4\x65\x4b\x0e\x84\x6a\x96\x0f\xa2\x93\x68\xa0\xad\x96\x74\xf3\xf5\xb3\x69\xf4\xec\x0b\x7f\x9d\x75\x9a\x3f\xaf\x15\x30\x0a\xb5\x64\x33\x35\x37\x57\x47\xc4\x2d\x27\x7e\xb8\xbd\x4e\xaa\xbb\xe8\xf0\x5b\xad\xb2\x1f\xf8\x5d\x19\xc7\xb6\x98\x56\x0c\x45\x17\x57\x8d\x68\xac\x07\xe2\x50\x30\xa3\xdc\x0c\x45\x9b\x5d\xa1\xf3\x88\x31\xd9\x1e\x1a\x4d\xa8\x1f\x5f\x48\xf0\x77\x73\xc7\x8d\x3e\x73\x6b\x51\xbd\x8c\x28\x0e\x42\x95\xac\x6f\x92\xd9\x32\xfb\x4c\xee\xf7\xc9\xcb\x3c\x11\x84\xe6\x66\xfd\x11\x6a\xce\x0b\x19\xc7\x8f\x3e\xfe\xb7\xaf\xec\x05\x4a\x93\xa9\x4d\xd2\x1f\x93\xb4\xdf\x97\x01\xa6\x9a\x08\x31\x6f\x96\xa6\x47\x7d\x0f\xe4\xdb\xef\xa3\x9f\xa6\xea\xcd\xa8\x5f\x6f\xfd\x14\x16\x54\x74\x61\xe2\x87\xd1\x40\x50\x5d\x13\xcb\x3b\x4c\x32\x27\xe5\x27\x07\xb2\xdf\xdf\xa2\x6a\xa0\x6e\x0a\xf0\xdb\xfb\x7c\xfa\xe8\x1f\x57\x72\xf6\x64\xf8\xf7\xb9\xef\x47\xaa\x47\x1b\x69\x32\x91\x5a\xd9\xe4\x40\xd2\xce\x72\x9b\xa9\x90\xf9\x7a\x6b\xf9\xae\x0a\x41\xad\xe3\xf2\xaf\xdb\x4f\x0e\x4e\x12\x80\x8e\x6f\xcf\x26\x93\x38\x7e\xfc\x3f\x0c\x0b\x64\x11\x66\x61\x76\xb1\x4a\x00\xdd\xae\x99\x07\xda\x34\x3d\xdd\xa0\x09\x93\xff\x0e\xa8\x5a\x95\x26\x83\x25\x55\x17\x56\xbd\x60\x11\xc7\xc9\x5b\xc1\xd4\x54\x20\xc8\x41\x5f\xc5\xf1\x7f\xfe\x27\x3a\xa1\x06\xdf\xf8\xe6\x06\xe6\x5e\xf2\xaa\x2b\x98\xb9\x4d\x7e\xc1\x6d\x1e\xa1\x93\xff\xec\x9b\xba\x1f\x7d\xbc\x0c\x9d\x09\x2b\x59\x96\xeb\x2c\x57\x1f\x9d\x2b\x30\x5d\xbb\xe9\x3c\xcb\xaf\x47\xde\x0d\x31\xd9\xef\x1f\x30\x1f\x6f\xfb\x39\x84\x54\xa6\xda\x60\xd0\xdc\x05\x72\xbf\x4f\x9e\x99\x01\x8e\xba\x1a\x13\x35\x44\xb4\x9f\xf9\xdd\x6e\x1b\x99\x7d\xd1\x96\xdc\xca\x6b\xae\x22\xf0\x44\xfe\xea\xa1\xf2\x3e\x74\x97\xd7\x96\xb6\xba\xf2\x0e\x75\xab\xfa\xcf\xd8\x99\xff\x5e\x5f\x01\x88\x1c\x6c\xef\xf1\xd5\xe9\xc0\x51\x6b\x9c\x86\xf6\xd0\xaf\x3b\x96\x5d\x3f\x69\x08\x99\xf6\x7b\xaf\x20\xe3\x67\x17\x36\xa2\x1b\xb4\x3b\x33\x82\x76\x01\x10\xb7\x93\x7d\x8b\x40\xf2\xe4\x70\x8f\xe1\x6d\x0d\x40\x38\xdf\xfa\x1d\x64\x37\x03\x0a\x11\x50\x6c\x6b\x9a\xb1\x30\xd5\xdd\xac\xf3\xc5\xda\x1c\xb7\xf6\xe7\xd9\x64\x4c\xf6\xfb\xbe\x5d\x9a\x24\x69\xd2\x69\x5b\x24\x52\x85\xff\x16\x0d\xc4\x20\xfa\x6f\xd1\x97\x89\xc2\x81\x80\x9c\xec\x38\x9c\xb3\x59\xfc\x8a\x90\xfd\xbe\x79\x7f\xaf\x80\xa5\xeb\x46\x1d\xef\x1f\x96\x2d\x7f\x41\x50\x4c\x68\x0d\xde\xb9\xc3\xf7\x4d\xd2\xf2\x41\x9f\x80\x6c\x32\x82\xef\x88\xf2\x4a\x93\xc3\xa6\x60\xfd\x31\x7d\x15\x22\x64\x5a\x16\xb6\xb6\x3a\x6d\xda\xc8\xab\xba\x9b\x49\x38\xea\xd8\x9d\x55\x0a\x34\x35\x94\xca\xba\x3f\xe2\xb2\xf6\x00\x53\x3b\xb7\xbb\x32\x98\x09\xa1\x8f\xc7\x84\x74\x9c\xd7\x81\xd3\x9d\x84\xb8\xf3\x26\xc0\xc9\x7b\x78\xd0\xa1\x8d\x4d\x87\x37\x38\x6a\x97\xc5\x4e\x75\x0f\xda\x84\x3e\xfb\xd3\x83\x46\xd0\x29\xb2\x73\x89\x13\x64\xbb\x2c\x72\xf1\x99\x1f\x7d\xc1\x68\x4f\x66\x07\x7f\x77\x80\x67\xb0\xa0\xbb\x3f\xd9\xa3\xb3\x14\x55\x72\xaa\x6b\x04\xb1\x12\x45\xf7\x51\x14\xef\x24\xd1\xd5\x24\x46\x24\x8e\x1b\x62\xea\x20\x92\x9a\x8a\xa1\x1c\x20\x03\x90\xca\xfa\x1c\xde\x40\xe6\x70\x81\xb8\x2d\x11\x14\x90\x58\x40\xaf\x77\x82\x5d\x58\x2d\xd6\xe7\x62\xc9\x3a\xdd\x66\x98\x3c\xd3\x2d\x4f\x78\x05\x3a\x31\xa8\x01\x23\x0c\x27\x74\x63\x26\x23\x54\x3a\x1c\x24\x13\x70\xef\x5a\xa5\x9a\x72\x87\x99\x96\x1a\x96\x9f\x8f\xb4\x0c\x6e\xf9\x6f\x2a\x9d\x6d\xc0\x7c\x46\x67\x7a\x81\xe6\x34\xef\x55\x51\x5a\x86\x60\xd0\xef\x44\xa2\xab\xe3\x14\x9a\x57\x43\x27\x1b\x82\xf9\x20\x44\x0c\x75\xd5\x07\x32\x9c\x58\x1a\x58\x39\x39\xb2\xc0\xcd\x2e\x79\x1c\x27\x6a\xc0\xa0\xfc\xd1\x62\x0d\xa6\x84\xa3\xc5\x9a\x38\x74\xb5\x00\xd4\xad\xa5\x17\x3b\x9b\x53\xcf\x94\xf2\xa2\x81\x82\x5d\x03\xe4\xa9\xa2\x67\x6a\xde\x13\xb5\x47\xf3\x37\x22\xc9\x3d\x04\x35\xa1\xf0\x09\xe2\x4d\x73\x29\x77\x2c\xea\x3f\x4d\x6b\x78\x43\xad\x27\xc0\x0d\x6b\x52\xe1\xaa\x9b\xe6\xef\xb4\xd2\x93\xe1\xd8\xc9\xc5\x7a\x20\x4c\x37\xd3\x4a\x5f\x26\xe1\x6e\xf8\x50\x2f\xc1\xa4\x0c\xaa\x78\x26\xea\x38\x81\xf7\x8b\x4c\x2c\x78\x81\xe8\x4d\x20\x84\xc7\x71\xa7\x5a\xa6\x66\x10\x43\x5f\xc0\x4e\xae\xae\x47\xf8\x83\x62\xde\xb6\xdb\x05\x5b\x24\xeb\x8f\x0f\x07\x2f\xba\x02\xab\x07\x0b\x54\x52\x1d\x26\x4e\xed\x4a\xbb\x63\xd7\x54\x0e\xa0\x8d\x14\x6c\xbc\x5d\xb0\x96\x18\x28\x08\x3c\x69\x26\x95\x89\x96\xb2\xc2\xf3\x71\x1f\xef\x2d\x10\x83\x0d\x64\xb9\xb9\x99\x58\xfa\x04\x5e\x7a\xd1\xa8\x23\x82\x67\x56\x33\x34\x1b\xb0\x65\x04\x28\x82\x66\x0a\xc0\xff\x21\x54\xf9\xee\x4c\xcd\x41\x96\xe2\x4b\x85\xf2\x83\xa4\xfc\x20\xa9\xda\x20\x29\xdb\x86\xe0\x44\x7b\x15\xde\x89\x01\x19\x01\xdd\x45\x7b\xd4\x23\xb7\x4d\x7e\x40\x2f\x61\xf4\x95\x20\x36\x47\xcf\xe6\xe8\xba\x7a\xda\x5c\x07\xe0\x3c\x90\x44\xd5\xba\x82\x5c\xc7\x26\x8e\x4d\x5c\xbb\xa7\x04\xc5\xb3\xcf\xfc\x61\xee\xb5\x63\x9f\xa3\xd4\xaa\xc9\x21\x60\xa4\xb3\xc9\xe0\xa3\x5c\x73\xe5\xb4\x2d\xbc\xd2\x56\xd3\x0f\xc1\x08\xfc\x03\x2d\x2f\xb6\x99\x28\x5b\x58\xd6\x41\x5c\xf5\x74\xa0\x2b\x3e\x28\x88\x9f\xe9\x39\x7e\xaa\x5e\x5f\xf8\xd3\x7c\xbf\x57\x71\x6c\xdf\xbb\x14\x15\xa6\x47\x68\xdf\x56\x59\x06\x0a\x78\xe4\xe9\xab\x4e\x53\x91\x9c\xcd\x70\x5e\x35\xbc\x3a\x1d\xe6\x54\xb2\xf1\xa9\x3c\x53\x55\x73\x2a\x23\xde\x8c\xa9\x99\x9c\xc3\x5b\x2e\xa2\x50\x12\x8a\x0f\xae\x79\xc7\x03\x6b\x6e\x5f\x53\xfb\x86\x20\x16\x66\xad\x94\x8e\x5c\x82\x4b\x15\xeb\xab\x08\xac\xd2\xcf\xc7\xc4\xbd\xa7\xce\x76\x74\x32\xa7\x2b\x16\xa6\x40\x83\xf6\x35\xab\x0a\xd2\x92\x9c\x26\x2b\x53\x52\x3f\x1b\xe5\x62\x51\xec\xca\xfc\x9a\x5b\x30\x86\x95\x39\x95\xb0\xef\xd8\xb7\xc2\xaf\x59\x2c\xeb\x40\x68\xb2\x3e\x6f\x64\xfe\x09\xcd\x19\xfa\xeb\x66\xee\x12\xd6\xb9\x4c\x4d\xd5\x07\x42\x73\x78\x8e\x5b\x38\x3b\xd0\x9c\x2e\x08\xdd\x0d\x58\xe5\x9b\xf4\x50\x89\x43\xfc\x19\x81\xe7\x01\xa8\xc5\x77\xbc\x78\x0e\x27\xa7\xf9\x39\x1b\x9f\x0e\x87\x39\x79\x61\x56\x9b\xdd\x6a\xb3\x7c\x5e\xed\x36\xf3\xe1\x36\x5c\x3e\x9d\x45\xd1\xdc\x39\x2a\xb7\x6a\x40\x2f\xec\x3d\xb1\xda\x76\x2f\xaa\xf3\x6a\xd2\xaf\xa3\x61\xee\xf7\x51\xe4\x82\xc0\xc9\x0d\x2a\xac\x85\xad\x75\xab\xd0\x9e\x1b\xbd\x77\xb9\x95\xbf\x98\xad\x34\x0d\xbc\x0b\xe6\xcb\xf4\x4d\xf6\x86\xd0\x6f\x9d\x80\xe6\x09\x9a\x8a\x3a\xb9\xd5\x6c\xde\xbb\xcc\x6b\x4a\x26\x66\x33\x09\xff\x4e\xab\x28\x77\x6a\x2a\x66\xfd\xfe\x61\xc8\x92\xfd\x36\x07\x8a\x72\xf0\x77\x2e\x4d\x55\x93\x61\xfd\x5d\x65\x87\xb0\xe7\x7f\x84\x04\x07\xe8\xcc\x7e\xdf\x3f\x4a\x46\x6a\x06\xac\x55\xdd\x12\x0f\x3e\x9a\xb1\x68\x27\x96\xd2\x5c\xee\xa7\xf9\x68\x29\x05\x4f\xf3\x91\x09\x11\x9c\x96\xb5\x38\x0c\x4c\x31\x91\xdd\x1b\x59\xe5\xbb\x4b\xb1\x6c\xb6\x9b\x53\x31\xed\x2b\x7b\x9a\xee\xf7\x6a\x84\xfe\x4b\x12\xf4\x51\x93\xba\x18\x72\xba\x1b\x0c\xc8\x29\x1a\x39\xb9\x32\xb0\xa5\x39\x28\xbd\x58\x4d\x9e\xbc\x43\xb3\xe7\xd4\xd4\x84\x3e\xa7\x88\x2d\x0e\x4d\x98\xde\xe4\x89\xa2\x25\x1c\x2e\xfd\x46\xc5\x24\xf0\x37\x76\xf2\x01\x3c\x5a\xd0\x7b\x60\x49\x7f\xe2\x4b\x09\x2a\x6d\x3d\xc9\xd4\x01\x37\xf7\x6c\xde\x7b\x93\x27\xd2\x94\x65\xd1\x09\xef\xad\x99\x51\x5a\xd0\x2b\x2e\xac\x8b\xd6\x34\x1f\x55\x1f\xb0\x77\xaa\x4f\xa6\x82\x8f\xfd\x7e\x30\xc8\x47\x9b\xec\xf6\x3b\x1f\x64\x21\x91\xff\x0d\xb2\x0e\xc4\x6d\xc7\x94\xb3\x7c\xaa\x76\xd9\x0e\x77\xd9\xce\xa9\xf9\xfa\x24\x96\x56\xad\xdc\xf1\xa9\xe9\x22\x8e\xfb\x70\x32\xac\x0c\x1b\x1b\x8e\x4e\xe2\x66\x83\x8d\x49\xaf\xc0\xde\x3f\x85\xf5\x6d\x57\xfc\x9a\xed\xa6\xb0\x69\x56\x24\xdd\xc8\x24\x23\xbd\x6f\xb1\xa0\x35\x7d\xad\x30\x1d\xed\xef\xd0\x9d\xad\x75\x6a\xdb\x50\x15\xb4\x0e\x42\xfc\xe6\x7f\x27\x92\x15\x39\x38\x05\xd6\x8e\xfd\x84\xfe\x4d\xec\x7e\xda\x3e\xb0\x9f\x56\x84\x6e\x8f\xec\xa7\x15\xee\x27\xd7\x44\xb3\x9f\x82\x1d\xf5\xb2\xa2\x25\x63\xf7\xa2\x88\x06\x7e\x4c\x23\x63\xc7\xac\xe6\xed\x95\x4c\x42\x86\xb1\xcb\xcd\x5d\xa5\xab\xc8\x43\xe7\x23\x83\xca\x21\xa5\x63\x61\x79\xe5\xac\x04\x62\xad\x63\x12\x10\xbc\x36\xd9\x49\x20\x4c\x04\x1c\x9e\x73\xeb\x60\xdb\x1a\x67\xc2\xdf\xa1\x06\x34\xe2\xc0\x46\xb2\xf2\xdd\x0b\x90\x24\xde\xdc\x50\x9d\x39\x30\x3a\xe0\x82\xb9\xc0\xf2\x94\xbb\xe4\x44\x21\xa9\xf9\x56\xd4\x7c\x0c\xe0\xa4\x3e\xc0\xda\x7c\xeb\x58\x1b\x8a\xea\xc2\x9e\x91\x3f\xb3\xed\x24\x38\xd4\xf5\xcb\xcb\xb1\xfb\x41\x60\xe1\x93\x04\xe1\xe7\xa1\x26\xae\xd3\x81\xa8\xe0\xf8\x5c\x4d\x5e\x51\xac\x51\x97\x1f\xb1\xa0\xa6\x1e\x34\x2b\x27\x54\x5b\x9d\x15\xbc\x6d\x21\x78\x36\xe8\xac\x80\xa2\xa9\x6d\xe4\x20\xa7\xfe\x26\x02\x47\xd6\x6c\xe3\xb0\x8e\xc9\xbc\xc9\x4e\x1f\x3c\xbe\x48\xd5\xe8\x9e\x2f\xea\x1c\xb0\xd5\x6c\xa5\x15\x8f\xbe\xe5\x89\x04\x28\x81\x06\xd2\xb6\xab\xcf\x9f\x6d\xed\xea\x08\xd5\x56\xd9\x61\x09\xbe\x13\x6b\x87\x34\x45\x64\x05\x7b\xea\xe1\xa2\x6a\x59\x34\x5d\x57\x50\xe3\xa1\x4d\x34\x28\xda\x41\x51\x19\x5c\xd0\x68\xc9\xfa\x13\xba\xb3\xa6\xe7\xc7\x51\xd8\x77\xec\x6d\x9e\xbc\x50\x09\x02\x87\x3b\x3f\xa2\x54\x21\x87\xb9\xb3\x26\xe5\x1d\xcc\x25\x63\xb9\x43\x75\xf3\xc8\xde\x0c\x6c\x1c\xc0\x85\x64\x5d\x1d\x27\xec\x25\x18\x15\x69\x99\x70\xd2\x5b\x9b\x4a\xcd\x7a\x7c\x0d\x12\xf8\xa3\x8d\xf4\xad\x91\x1d\xf7\x57\xda\x16\xa4\xfe\x13\x90\x45\xce\x7d\x03\x5f\xb9\x63\xd0\x87\x30\x4e\x1b\xb1\x4c\x57\x21\x01\x48\x42\x09\x32\x0c\x10\x07\x39\x54\x93\x3a\x98\x25\x00\x24\xf5\xe0\x6e\x22\x74\xce\x55\xf5\x66\x5a\x85\xb9\x81\x45\x45\x8f\xbf\x8e\x2d\x02\x44\xd1\x58\xfe\x09\x0e\xf6\x50\xba\x0b\x78\x4f\x8f\x56\xbb\xa2\x98\xfe\x0d\xac\xdb\x30\xb8\x6f\xd5\x19\xf7\xfb\x36\x63\xb5\xf2\xb0\xf9\x04\xf2\xd8\x7a\xab\x49\x2c\x48\x0a\x86\xf7\x36\x3c\xb2\xde\x4a\xc3\xf3\xce\x01\xcc\x10\xba\xaa\x85\x20\x26\xce\x6a\xbf\x5f\x38\x43\x12\xdc\x16\xc0\xa0\x66\xb5\x2b\xab\x5d\xe0\xa9\x5f\xea\xad\x6d\xd0\x5b\xb9\x07\x9b\x85\xbf\x1c\xae\x89\x39\xf9\xfc\x20\x57\xd8\x36\x20\x57\x6a\x06\x06\xb7\x8c\x35\x39\x3c\x24\xed\x03\x85\x63\x24\x80\x9a\x2a\x92\xae\x73\xfb\xca\x44\xbf\x83\xcb\x2d\xcd\x64\x48\x54\x7f\xae\x59\x26\x19\xb6\x19\x2e\x35\x82\xd0\x25\x87\x7b\xce\xd9\xd8\x63\x02\xf4\x14\x13\x54\x30\x79\xe8\x7a\x6c\x05\x4d\x90\x40\x7f\xce\xec\xe8\x57\x15\x8b\x2d\x80\xb5\xb6\xe3\xe6\x06\x28\x3f\x04\x62\x83\xdf\xbf\x60\x23\xf5\x7d\xcd\x17\x82\x00\x7c\x7f\xe1\xd0\x45\x4a\x87\xae\xec\x34\x04\xdc\x10\xfa\x17\xee\x69\x2b\x24\xed\xd2\x27\xa7\x3b\xb6\x05\x6d\xb9\x82\xdd\x1f\x7a\xf9\x50\x9c\xef\x00\xbe\x4a\x0c\x76\x6e\xe1\x84\xca\x01\x83\x42\x27\xa0\x8f\x2a\xce\x32\xba\x66\xf9\xf9\x62\x08\xc8\xf6\xe2\xac\x24\x45\xa0\x22\xb5\x9a\x8e\x53\xe1\x4f\x90\xfc\xbc\x74\xd7\xb7\x6d\x60\xed\x41\x93\xf5\x74\x91\xe6\x64\xb8\x23\xbd\x6d\x9f\x99\x3d\x18\x96\xb1\x45\x21\xdd\xf2\xe1\xae\x82\xbb\xac\x76\x50\xbb\xb3\xa0\x85\xb0\x61\x6b\xd3\x5b\x73\x10\x39\x62\xb4\xca\x6f\xf9\xf2\x3b\x38\x7e\xa7\xd2\xeb\xee\x06\xb0\xbc\xe9\x98\xd0\x3b\xa6\x86\xfa\x7c\xe3\x24\x2f\x77\xc0\x73\xeb\xc1\x86\x50\x7d\x36\x19\x4f\x8b\x50\xe5\x69\x9c\xea\xb3\x65\x3d\x28\xd0\xbe\xd0\xc3\xe4\x6e\x3a\x4e\x27\x63\x42\x52\x75\xbe\x19\x2c\x87\x7f\x09\xfa\x8d\x30\x7a\x03\x97\x64\xb8\x21\x34\xb0\x1a\xfe\xd5\x1f\x13\x5e\x6b\xc9\x6a\x13\xed\xf7\x1f\x0c\x81\xb4\xc8\x70\x3a\xd8\x68\x41\xb9\x95\x17\xc8\xf6\xf8\x35\xb4\xcf\xda\x69\xc8\x40\xbb\xe2\x45\xab\x78\x33\x5d\x9d\xa5\xe3\x42\xac\xe9\xaa\xa4\xad\x14\x64\x10\x3a\x76\xf9\x05\x28\x3d\x74\x27\x74\xe4\x8f\x3a\x81\x09\xa1\x86\x87\x56\x4c\x3f\xe4\x79\x44\x8f\x16\xeb\x69\x65\xaf\x62\x3e\x87\x13\x92\x9a\x7c\xf5\x50\xb0\x0b\x6b\xb6\xe7\x9d\x2c\x59\x6d\x13\x23\x96\x5d\x5a\x55\x88\x8f\x20\xa8\xbf\xf6\x1a\x22\xa9\x43\xb6\x4b\xfb\xe3\x80\xda\x7c\x10\x6d\x38\xf4\xa0\x1a\x04\x44\xbf\xef\x6a\x80\x37\xb5\x17\x0c\x1d\xb0\x58\x59\x85\x72\x9f\x86\xa1\xc8\x1b\x50\x87\xe8\x24\x89\xaa\x26\xd4\x21\x38\x48\x02\x47\x82\x5b\x32\xd4\x16\x9b\x2f\x34\xa3\x02\xdd\x73\x6a\x11\xf8\x6b\x06\x56\x16\xf3\x50\x79\xcc\x43\xdd\x01\xed\xe7\x8d\x42\x61\x8f\xe5\xc1\xcc\x06\x63\xf1\x5d\x07\xe2\x07\xda\x81\x86\x1a\x71\x51\xb6\x5c\x46\x84\x46\xe5\x26\x53\xd6\x27\x5d\x22\x47\x1b\xb9\xe4\x00\x6b\x23\xf4\x34\x67\x25\x62\x93\xa5\x82\x45\x5b\xc5\xaf\xa3\xca\x28\xa0\x69\xb9\x56\xb2\x1b\x73\x99\xd4\x84\xee\xd8\x42\x26\xa5\x35\x5c\x33\xb7\x91\x8c\xf4\x4a\xbc\xb3\x3f\x59\x69\xae\xe2\x38\x09\x3f\xad\x0e\xd6\xb5\x75\xce\x8d\x19\x47\x1b\x50\x87\x7d\xf4\x8f\x8f\xe5\xd7\x8f\xc8\x6c\x0c\x37\x3b\xb5\xdf\x3f\xfa\x78\x61\x9f\x84\x31\x1d\xb1\x2f\xf7\x41\x17\x92\x82\xd5\x7a\x91\xe4\xd4\x96\x89\xf6\x4c\x0b\xcf\x63\xba\x22\x18\x93\x72\xbf\x2f\xce\xe1\x79\x05\x84\x0d\x4e\xce\xd6\x73\xfd\x3e\x1c\xac\x77\xf5\x31\x15\x2c\x12\x52\x47\x3d\x8c\x60\x4c\x4c\x0b\xa6\xcf\x25\x72\xd1\x53\xb4\xcf\x93\x54\x0f\x27\xa4\x36\x04\xe9\x38\x85\x01\xc7\x0c\xbb\x41\x35\x82\xd8\xcc\x9f\x45\xae\xd3\xa8\xdc\x5d\x6a\x95\x81\xb9\x20\x24\x1b\x76\x27\x13\x00\x49\x55\x1d\x92\x02\x9c\x8a\xef\x06\xc2\x1c\x2e\x01\x05\x2c\x9c\x39\x56\x14\xd1\x35\xb3\xfe\x53\xeb\x05\xfe\x9a\xeb\xf5\xfb\xec\xb2\x12\x6b\x6e\x43\x2b\x92\xe2\x51\x46\x4e\xb7\xa7\xc3\xe1\x96\xac\x07\x2c\xa3\xab\x01\x8b\x3e\xa2\x2f\xc3\xf5\x59\x11\xc7\xc9\x6a\xc0\xb6\x32\x29\x86\x6b\x42\xe8\xaa\xcf\x16\xde\xd0\x43\x24\x92\xae\xc0\x6e\xcd\x3a\xe3\xd6\xb4\x1a\xf9\xca\xeb\x72\x6b\x25\xd0\xfe\x18\xee\x77\x5b\x36\x3e\xdd\x9e\xc9\x8e\x47\x8d\xad\x7b\xd4\x58\xb2\x30\x7a\xb6\x45\xdf\x9e\x35\xcf\x98\x71\xbc\x74\xd7\x4d\xaf\xd8\x4d\xee\x7f\x37\xd7\x8e\x2d\xb5\x37\xd8\x35\x6b\xb4\x6e\x4d\x88\xf3\xa3\x18\xa0\xf4\xb5\x34\x97\xb4\xb9\x29\x38\x05\x9b\xe6\x8c\xe8\xa9\x04\xb0\x0c\xfa\xcc\x3e\x06\xa4\xe0\xab\xc7\xc3\x9b\xe5\x28\x8f\x4f\x54\x22\x69\x4e\xbc\x1c\xc1\xde\x52\x73\x70\x5b\x14\x50\xea\xaf\x5a\xef\x3e\xfe\xe5\xd5\x5d\xd1\x15\x9b\xcd\x29\xa2\xb8\x7a\x90\x20\x00\x73\x75\x79\x24\xd3\x89\x98\xe5\x73\x72\x5a\x19\x76\x2c\x79\x22\xf1\x46\xb1\x91\x89\x22\xf6\xc1\xeb\xd4\x81\x30\x29\x14\x40\xd9\x17\xb1\x0c\x53\x4a\xff\x62\x76\x8f\x3f\x19\x46\x78\xdf\x93\xc8\x4c\x4a\x72\xf8\xae\x61\x6c\x57\x49\xce\x03\xa9\xa9\x3e\x67\xe3\x53\x3d\x1c\x92\x9f\xad\x72\x24\x8d\x22\xaa\x66\xda\x8a\x4d\xe1\x97\x96\x34\x1a\x2c\x79\xc1\xb5\xe1\x9e\xe1\xd8\x0a\xf9\xbb\x1f\x3b\xf8\x3b\x7b\xf4\x00\xfa\xc9\x9a\x96\x4c\x50\x44\x2f\xa1\xb2\xe6\xcd\xc8\xe9\xfb\xd2\x92\x25\xf9\x74\x97\xa5\x45\x46\xcc\x65\x8d\x0a\xe7\x9d\x09\xe7\xab\xc4\xfb\x37\x70\xb0\x72\x20\x88\xbb\x7e\xef\xf7\xea\x9c\x71\x0f\x93\x54\xe6\x7f\xf0\xfd\x3e\x91\x4c\xd1\xbe\x85\x4b\xa1\x8a\x90\x40\x4b\x30\x63\xf9\x34\x11\x67\xe3\xa9\xc8\x52\x6d\xea\x22\xa9\xf9\xda\x85\xf7\x8f\x74\x8c\xe4\x26\x63\x65\xcf\x23\xce\x18\x3a\xb7\x58\x67\x0a\x2c\x49\x8b\xd0\x35\xde\x42\x16\xbb\x8d\xb0\xe1\x00\x4b\xe0\x62\x6e\xa4\x5a\x5a\x9f\x82\x57\x4a\xee\xb6\x90\xc6\xcd\xc2\x02\xf7\xdb\x8a\x55\x71\x74\xcd\x02\x81\xd6\x15\xd7\x2f\x79\xb1\xe5\x2a\xd1\x14\x8a\x02\xcf\x92\x11\xa1\x5b\xd6\x1f\x9f\xf6\x4d\x2f\xc8\x7e\x5f\x24\xfd\x2d\x39\xdd\x9a\xdb\x9d\xdd\x95\xbb\x9a\x3b\xa4\x8c\xec\xf7\xd1\x47\x11\xd1\x0d\x7b\x2b\x93\x25\x5d\x93\x69\x74\x13\xa5\xab\x38\x36\xa1\x8c\x2d\xa7\x91\x88\xd2\xfe\xca\x10\xf7\xd2\x12\xf7\x25\xc1\xed\x11\x6d\x81\xd4\x98\xc8\xed\x7e\xbf\xd9\xef\x93\x0d\x8b\x4c\x0b\x16\x71\xbc\xe8\xb3\x0d\xb9\x77\xcc\xfa\x84\x16\x89\xdf\xb6\xf9\x2a\xd9\xc4\x71\xb2\x60\x1b\x42\xc5\xf9\x38\x8e\xfb\xd0\x48\x8b\xbc\x6b\x1a\x79\xc7\xfe\xce\xd1\x7b\x95\xa4\x19\xa1\x9a\x96\x81\xd6\xd9\x09\xf8\x07\x06\xb9\xdb\xdd\x68\x9d\xeb\x0b\xe7\xb1\xec\x2e\x40\x84\x3c\x76\xc4\xc2\x8a\x2b\x2c\x14\xb1\x77\xea\xe8\xbc\x82\x85\x6a\xc0\x9d\x8e\xb7\x2c\x38\xf6\xbf\x8f\x88\xdb\xb3\x6e\x15\x07\xe2\xeb\xa4\x1c\xc2\x4a\x9b\x8c\xbe\x49\x47\xdf\x90\xaf\x6b\xd7\x1c\xb4\xa7\xf5\xae\x2d\xf1\x26\x72\x3e\x9e\x7a\x6c\xde\xbf\xa4\x08\x86\xfb\x97\xca\x6b\x16\x5a\x3b\xbd\xb1\x9e\xcd\xac\xef\x32\xe7\xd3\x0d\x47\x17\x6f\x28\xe3\x69\x7e\xc6\xc6\x69\x7e\xce\xa4\xc3\x78\xbf\xdf\x05\x43\xe9\xe6\x69\xc0\xbe\xf9\xda\xe3\x59\xed\x0e\x17\xa1\x7f\xe5\x85\x14\xa5\x56\xbb\x85\x96\x2a\xbd\xb0\x9e\x75\x02\x5a\xd2\x40\xbb\xb1\xee\xd2\x3b\x2d\x8d\x4a\xae\xdf\xc2\x99\xd7\xf0\x26\x7d\x5d\xb9\xf6\xb6\x67\x22\x55\x4c\xcc\xf8\xbc\x67\xfe\x83\xd3\x23\x32\x8c\x44\xd4\x67\x66\x53\x43\xa0\xa6\x7f\x13\xa3\x75\x56\xbe\xbd\x11\xef\x94\xdc\x72\xa5\xef\xc0\x3c\xcc\x3a\x88\xa7\x7f\x33\xa9\xd0\x41\x3c\x5c\x8d\xc9\x81\x5e\x75\x54\x5f\xf7\xe5\x6c\x6b\x9f\xf1\x39\xa4\x7e\x26\x17\xc7\xbc\x3e\x2f\xe5\xe2\x40\xb3\xe5\xf2\x07\x50\xf5\x6c\x7a\xc7\x06\xb8\xd0\x9a\xca\xa9\x9e\x46\x86\x18\x47\x69\xb4\x13\xa0\x48\x12\xcd\x93\x8d\x42\x23\x54\x14\x29\xb4\x4a\x0a\xc9\x74\xbb\xc4\xa6\xe3\x9a\xc1\x40\x80\x97\xd5\x99\x98\x33\x33\x4a\xe0\x2d\x48\x64\x1b\xce\x18\x0f\xac\xc6\xe0\xb5\x2d\x11\x74\x42\x68\x7f\x0c\x3d\x78\x7b\xcd\x55\x91\xdd\xa5\x5f\xe9\xa4\x6b\x56\xf8\x48\xcb\xcf\x5c\x4c\x79\x7a\x61\xe8\xd0\x6b\xb9\xb4\x7e\xb2\xdd\x4c\xa1\x96\x98\x40\xaf\x02\x17\xa6\x89\x44\xaf\x95\xbc\x01\xb9\xf4\x73\xa5\xa4\x4a\x22\x5b\x47\x79\xb2\xc9\xee\x4e\x84\xd4\x27\x97\xfc\x04\x7a\xb3\xda\x15\xa3\x88\xf4\x82\xee\x49\x9b\xd4\x3e\x84\x98\x69\x4f\x05\x35\x7f\x2e\xb6\x7c\x91\x72\x2a\xb7\xd9\xef\x3b\x9e\x6a\xf4\x63\x62\x7e\x1f\x1c\x40\x2b\x14\x60\x92\x7e\xc7\xc5\x60\x40\xff\xe6\x60\x6d\x89\x1d\xe2\xce\xae\x1e\x19\x66\xd7\x8e\xae\x71\x76\xfe\xcc\xcd\x10\xbb\x96\x01\x5f\x0c\x23\xdf\x92\x9c\xf0\x38\x56\x0f\x4f\x45\x67\xf3\xe1\xf1\xc8\xf7\xe1\x40\x28\xf2\x89\xe0\x12\xab\x31\x59\xe6\x7a\xec\xaa\xed\x07\x02\x1b\xc7\x0d\xf5\xeb\x42\x1c\x7b\x93\x9e\x86\xf3\x38\x02\xd6\xfd\x7b\xbc\x6f\x58\x3e\x3e\x45\xd6\x3a\xd5\x53\xe0\x98\x03\xae\x98\xd0\x17\xdc\xeb\x37\x82\x45\xec\x77\xc2\x6a\x35\x42\x6b\x7c\x6b\xbd\xc6\xe9\x17\x06\xbd\xc1\x43\x09\x06\xba\x3a\x0f\xe3\xf3\xad\x92\xdc\xbb\xae\xcf\x2b\x6e\xf3\xdc\x30\xe1\xae\x39\x41\xb8\xb5\xbf\x15\x2c\x0c\x53\xac\x5e\xbf\x7f\x00\x89\xe3\x5f\xb0\x08\xfb\x2a\xe0\x1c\x37\x3a\x38\x87\x8c\xe5\x08\xda\x50\x06\xfe\x5d\x9c\x54\xb4\x27\x02\x3b\x35\x00\x2a\xae\x90\x3c\xac\x44\x34\xc9\xcc\x85\x7d\x9c\x4e\x08\x19\x4c\x02\x93\xeb\xf2\x74\x77\x26\xe0\xe9\xdf\x75\x61\x47\xb9\x17\xae\xb6\x87\xaa\x37\x66\x00\xd1\x09\xd8\x81\x1e\xfd\xcd\xb1\x95\xc5\x4c\xcd\x6d\x8b\x47\x8b\xb5\x39\x81\x7f\x0f\xe6\x4d\x39\xce\x5b\x52\x48\x08\x4e\xf7\x51\x78\x78\x20\x86\x00\xbe\x37\x5b\xff\x89\x4e\xbb\xf4\xd8\x4e\x7e\x53\x7e\xc6\x91\xb8\x9a\x0e\x42\x8e\xf2\xe1\x0c\x5b\x9e\x70\x62\x35\x3e\x7d\x2d\xef\xef\xb6\xbc\x56\x13\xb9\xe7\x60\xc7\x5b\x2d\x32\x14\x8d\x50\xc1\x78\x8e\x05\xdd\xe4\x41\xb4\xf3\xe2\xab\xd8\x98\xe6\x2c\x11\x15\xac\xe4\xa3\xc7\xc0\x13\xa0\xab\x58\x33\x5c\x44\x33\x31\x7b\x3c\x47\xf6\x2c\x3c\x53\x33\xa6\x06\xf9\xf9\x39\xb8\x25\x4d\xb2\xa9\x98\x3d\xfe\x3a\x1b\x4e\xe6\xe9\x98\x9c\x33\x49\x72\x96\x79\xb3\xdd\x7e\x02\x91\x83\xc9\xfc\x4c\x12\x72\x0f\x05\x7e\x9d\x0d\x1e\xcf\xed\x89\xaa\x58\x36\x98\xe0\x53\x4c\x69\x76\x1a\x02\xd4\xbe\x5d\x01\xd0\xa0\xa5\x2d\x27\x11\x49\x87\x13\xc7\xeb\x94\x67\xe3\xa9\x4e\xc7\x8c\x95\xc8\x72\x69\x8f\x94\x52\x0e\x27\x38\x50\x86\xf8\x36\xc6\xa8\xb1\x85\x0c\xf5\xa8\x8c\x41\x80\x6b\x31\x99\xa6\x17\xd5\xef\xc4\xe2\x65\x57\xd3\x9b\x70\x82\xc4\x87\x40\xfe\x54\x43\x65\xc8\x71\x76\xcf\xa4\x2b\x00\xd3\xa0\x5b\xe2\xd9\x78\x1e\xe4\x6b\x2e\x01\xa7\x23\x07\xac\x4a\xa6\x9a\x27\xb7\xae\xf0\x16\xad\x9e\x43\x66\xee\x1b\x34\x67\xae\x2a\xec\xbb\xd5\x49\x6e\x91\xd8\x7c\xa6\xe7\x44\xcd\xcc\x9f\x79\x1c\x5b\x95\x3a\xfb\x5d\xb1\xe1\x90\xaa\xba\x85\x8d\x4f\xe5\x99\x09\x72\x04\x46\x3a\x02\x93\x31\xcc\x3a\x93\xf3\x79\x2f\xf3\xe5\x65\x0e\x4b\x79\xb4\x86\x3e\x22\xae\xa5\x9a\x85\xdf\xf3\x69\x55\x79\x18\x4c\x52\x13\x60\x0e\x81\x5a\xfb\x30\x04\x19\x3b\xa7\x2b\xf4\xe9\xaa\x90\x97\x59\xd1\x6a\x55\xc9\x7c\xdc\x4c\xce\x7b\xe5\x68\xab\xf8\x32\xc9\x61\x36\x49\x1c\x5b\x34\x5e\x41\xcb\xd1\x75\x56\x10\x5f\x0b\x7e\x56\x58\xa5\x66\x8e\x2e\xfc\x55\xff\x38\x27\xb6\x94\x0b\xbf\x34\x2d\x4f\x95\x70\xf6\x0c\x2c\xb5\x51\xea\x39\x15\xf6\xba\x25\xac\xaf\xde\x94\x1b\x62\x06\xe4\x00\xc5\x85\x4f\xa5\x54\xcb\xee\xa5\xd0\xa2\xba\x00\x57\xe6\x6a\x7c\x6a\x6b\xac\x6a\x32\x24\x3b\x8d\xe4\xe5\x3f\x11\xc3\xc9\x1d\xad\xd3\x3a\x89\x48\xa1\x51\x40\xef\x52\x81\xf4\x59\xef\xf7\xc8\xfd\x9b\x56\x81\x32\x79\x47\x9b\x6c\xb5\xef\x6d\xb5\xf5\x42\xeb\x45\x40\x76\x73\x01\xeb\x2e\xe2\x4d\x35\x56\xaf\xb5\x27\x90\xbe\x00\x44\xcc\xa4\x1c\xe4\x92\x07\xc0\xad\x7d\xe2\x7c\x70\x76\x96\x57\x15\x83\x2e\xd7\x28\x38\xb0\x18\x1f\x82\x32\x41\xd2\xf9\x24\xa4\x85\x83\x1a\x17\x1e\x78\x6b\x3e\x50\xbc\x05\x3c\x41\x36\xa2\x63\x62\xc0\x5f\x37\xec\xb1\xa6\x24\x85\xfb\xd3\xd7\x4d\x1d\xce\x7e\x35\x93\xe8\xd2\x99\x9f\xd5\x13\x4c\x79\x23\x47\xca\xcf\xc1\x32\x8c\xe5\xe8\x6a\x9c\x0a\x56\xa3\xe4\x76\x9b\x09\xe6\x49\xd9\x67\xb7\x1c\x70\x10\xc6\x47\x06\x61\x90\xa8\xa9\xaf\x0a\x3b\x3a\xfc\x9c\x27\x82\xa4\xe6\xa4\x59\xf2\x55\xb6\x2b\x74\x85\x8f\xdb\xc1\xdb\x7f\xaf\x93\x70\xe8\xaa\x5c\x1e\x67\xb7\x23\xd3\xb3\x56\xa6\x92\x6b\x7c\x5d\x41\xf7\x1d\x5d\xec\x9a\x53\x64\x10\x41\xc7\xbd\x4a\x44\xeb\x01\x58\x31\x6e\x9f\x69\xac\x43\x10\x78\x41\xac\x85\xb0\xfb\x83\xdf\x3e\x86\x76\x32\x41\xfb\x22\x8e\x9f\xc8\x44\xa1\x15\x63\x3d\xb5\xc5\x09\x1f\x1f\x0c\xaf\x06\xaa\x49\xd8\xe2\x26\x9f\x76\xdd\xc0\x6b\x35\x6c\x03\xb3\x1b\xbf\x27\xf0\x15\xdb\xa7\x17\xe4\x5e\xd4\xeb\x31\x64\xa8\x16\x30\x33\x04\x30\x69\x07\x5a\xcb\x40\x91\xe8\x50\x35\x84\x3e\x91\xcd\xb4\xa4\x9d\xdd\x42\xb1\xd3\xc1\x40\x41\x77\xcc\xae\xfa\x5e\xac\x64\xda\x78\xe1\xef\x5a\xd2\xe6\x3c\xaa\xf3\xb2\x2d\xe4\x5f\xcd\xb8\xc5\xa7\x6d\xac\xd3\x5a\xd2\x83\x63\x0d\x90\x66\x25\x9a\xbd\x05\xe0\xd7\x5a\x1a\xe7\xde\xdd\x6c\x3e\x4d\xd1\x8c\x2f\xe5\xf8\x64\xca\x2d\x66\x5b\xd8\xb3\xb4\x31\x6d\x90\xf2\x69\x91\x95\xa5\x4d\x0e\xbf\xe9\xe5\x95\x0b\xb3\xbf\xe8\x8d\xca\xb6\x2e\xcc\xff\xa6\x37\xf9\xf2\x8a\x6b\x08\xc3\x5f\x07\x38\x0e\x7e\xc9\xf9\xcd\x56\xaa\x8e\x0d\x61\xf5\x44\x9a\xd4\xe4\x85\x53\xed\x6e\x46\xbc\x97\x07\xb8\x54\xfe\x0a\xc5\x1f\x47\xc6\xa4\x19\x05\xfc\x4b\xba\xa0\x2b\x16\x96\x42\xd7\x2c\xe1\xec\x69\x27\x1d\x26\xc4\x3d\xcd\x6c\x19\xf7\xa2\x1d\x6d\x5d\x03\x3a\x6f\x42\x2c\x72\xde\x84\xc0\x85\xe7\xc3\x58\xd3\x14\x21\xa1\x3b\xc5\x16\x25\xd7\x3f\x0b\xbe\xcc\x75\x76\x59\x70\xf0\x81\x6e\xfd\x2c\x85\xce\x80\x34\xa1\x11\x18\x85\x31\xa6\xc8\x1a\x6e\xcb\xdb\x4a\xec\x97\x5d\xca\x6b\x6e\xe5\x7e\x82\x5b\x91\xa1\x15\xce\xf9\x5b\xc3\xaa\x5b\xf2\xd4\x20\x64\x15\x68\x20\x64\xc1\x96\xd4\xe0\x0d\x02\xf0\x91\xd0\x02\xff\xb4\xd6\x0c\xee\xa4\x4a\x75\x37\xdb\xe7\x4b\x10\x7d\x6b\xb9\x3d\xaf\x47\x4c\x6d\x9f\x86\xf5\xe0\xf4\x48\x39\x67\x6c\x19\xc7\x89\xc9\x63\xdf\xce\xe8\xd6\xa7\x40\x4c\x86\x4d\x1c\x27\x5b\xb6\x19\xd6\x42\xc9\xc1\xcd\xa2\x96\x5b\x56\x79\x6a\x85\xa0\x02\x30\x35\xec\x07\xbc\xd6\xb1\x28\xa2\x11\xfc\x8a\x18\xcb\xa7\xc9\x96\x75\x0c\x48\xbd\x06\xda\x28\x60\xbc\xbd\x8d\x48\x9a\x44\xa6\x70\x28\x64\xcb\xc6\x69\xb4\x01\xec\xb3\x08\x2d\x00\xb6\xac\x6b\x9c\x1b\x0d\x7f\xf4\x98\xd4\x1b\xba\x85\xc6\xa3\xc9\x81\x44\xba\x99\xb1\x2d\x2d\xd9\x9a\xee\x58\x63\x30\x68\xc1\xd6\x8d\x01\xb4\xcf\xcd\xc9\x82\xfd\x2e\x12\xbf\x4d\x08\x09\x9d\xa8\x6d\x4c\xcc\xa2\xe9\x6b\xaf\xcf\x5a\xae\x2e\xab\x54\xe8\xeb\xee\x40\xb5\xca\xaf\xae\xb8\x7a\x2b\x7e\xe0\x77\xcf\xe4\x0d\xdc\xca\x9f\x08\x52\x0b\x07\x23\x3a\x13\xf1\xba\x11\xf1\xf3\x36\xfd\x2c\x28\xbf\xe5\x8b\xa7\x72\xb3\xc9\xc4\xb2\x49\x5f\x8b\x16\x5f\x5f\x51\xd3\x42\xcd\x78\xe8\xf8\x19\xa5\x1a\xae\xfc\xe7\x05\x5f\x68\x95\x2f\x9a\xa7\xcf\x73\xee\x6d\x25\x09\x5d\xe5\x62\xf9\x4e\x96\x2f\x5b\x64\xc5\x31\x26\x93\x9e\x06\x29\x74\xce\x86\x13\xaa\xd9\x30\xd0\x50\x94\x6c\x4c\xb3\xc6\x7d\xf2\x54\x9e\x01\x82\x40\xc6\x7e\x0c\x4e\xe1\x8c\xe6\x50\x26\x71\x62\x52\xd0\xda\x3f\xf5\x6e\xe2\xe8\x46\x5e\xf3\x97\xc7\xc4\x65\x60\xbc\x29\x2c\xa4\x6c\x85\x77\xf4\xed\x5d\x95\x5a\x55\x9a\x9b\x4d\x2c\x5a\x01\x1b\x1e\x33\x83\x36\x33\x4a\x37\xa6\x3f\x8a\x44\xe0\xd1\x8b\xc6\x40\xd0\xef\xca\x18\x51\x17\xaf\xe5\x35\xff\x25\x2f\x77\x59\x51\xdc\x91\x94\x9f\x8d\xa7\xca\xb1\xc1\x0a\xd8\xe0\x03\xdd\x49\x33\x86\xf8\x76\xf3\x60\xf3\x3d\x14\xb7\xaa\x2e\x02\x62\x54\xca\x0d\xd7\xeb\x5c\x5c\x61\xa7\xf8\x32\x21\x53\xf5\x80\x5d\xb1\x7f\x25\x4a\xbf\xb2\x72\x8c\x90\x4b\xc0\xf9\xfa\x51\x24\x8a\x8a\xaa\x4b\xfd\x89\xe7\x60\x4c\x17\xf0\xf0\xc9\xc1\x96\x02\x12\x1d\xac\xd9\x8c\xcd\xa2\x65\x9a\x1f\x0e\xc1\xca\xf8\xe5\xf8\xca\xa0\x92\xa9\xe3\xab\x23\x63\x63\x5a\x36\x57\x47\x76\xa6\x4f\x07\x83\xcc\x49\xdb\xdd\x99\x54\x52\xf0\x64\x17\x3c\x49\xc9\xa9\x64\x3b\xd8\xfd\x29\xfe\x61\x92\x26\x25\xfb\xcd\xcb\x6f\x72\x2a\xaa\xe5\x54\x77\x3b\x58\xe2\x7a\xfa\xe5\xa1\x09\x09\x26\xc2\xf9\x84\xea\x37\x96\x0e\xaa\xa0\xc3\xba\x89\x63\xd4\x54\xec\x98\x30\x90\x51\x3e\xb8\x36\x33\xc4\xbd\x21\xc1\x2c\x64\x6e\x21\x65\xb0\x90\xac\x2a\xd6\x53\x9d\x08\x9a\x39\xe4\x2d\x18\x0f\x07\x51\x72\x25\xb3\xe2\x29\xbc\x84\x81\x82\x01\x0c\x48\x18\x4a\x9c\x67\x2a\xeb\x6e\x12\x41\xe0\xcd\x70\x09\x8a\xd2\x24\xf7\x96\x6b\x1f\x6d\x74\x1c\x67\x8c\xa9\xfa\x4d\x31\x8e\x7f\x15\xf6\x2a\x4a\xdf\x9b\xc6\xec\x6c\x3b\xe0\xb4\x42\x17\x97\x74\x07\xcb\x9e\x3a\x8b\x9a\xc0\xf6\x66\x7c\x9a\x9d\xa9\x8e\x37\xed\x6c\x30\x20\x61\xf8\x2c\x9b\x07\x4d\x67\xf9\x2c\x9b\xdb\xf5\x86\xb8\xb1\x1d\xc2\x98\x0e\xa9\x94\x55\x40\x00\x21\x94\x33\x41\x44\x3d\x98\xe0\x46\x55\xbd\xf2\xf1\xda\x2b\xdf\x69\xc2\x2d\xe4\xfc\x7e\xaf\xc0\x88\x0f\x3b\x13\xc7\x62\x3a\x1c\x8a\x74\x30\x50\x01\x99\xf3\xcf\x7d\x82\xd0\x8c\xbd\x95\xf0\xac\x3d\xed\x78\xf0\x78\x2b\x41\x03\xf9\x90\x56\xaf\x7d\xb2\x2b\x61\x15\xcd\xc9\xa1\xe3\xe5\xa4\x1f\x26\x88\xe3\xbe\x29\x97\x1c\x4e\xe1\xb9\x2f\x4b\xaa\xe6\x0c\x27\x84\x9c\x92\xe1\xd0\x3a\x64\xab\x04\xbb\xb5\x64\xca\x24\x32\x7c\x7c\x87\x72\x3b\x9a\x86\x59\x4d\x76\x94\xde\xc2\x99\x26\xaf\xae\x0a\x90\xed\xdf\xa8\x5c\xf3\x5a\x13\xad\xf6\x5c\x1c\x73\xd6\x14\xee\x43\xe2\xfd\x3e\x49\xba\xc2\x59\xbf\x2b\x94\x4c\x5f\xc9\xda\x55\xcf\x6a\x45\x3d\xcb\xaf\x6b\x76\xc8\x3e\x43\x44\xd2\x67\xff\x6a\x0e\xfa\xa3\x95\x6e\x46\x3e\xf0\x3d\xf4\x30\xa2\xf8\x98\xd5\xd5\x30\x73\xb1\xb7\x0e\xa4\x8f\xbe\x58\xd5\x98\xdb\x2b\xae\x5f\xe4\xbc\x58\x26\x04\xdd\x53\x1f\x68\x85\x7a\xd3\x2e\xa1\x9f\xf4\x6b\x6f\x05\x95\xf9\x7b\xdf\x9f\x18\x8b\x4c\xe8\xe7\xcb\x5c\x9b\xeb\xaf\xe5\x4c\xda\x44\xcd\xca\x73\x9c\x0e\x9f\x06\x1d\x3e\x60\x05\xa8\x9f\xaa\xc0\xd9\x61\xa8\xc9\x57\xd3\xf4\x6b\x25\x41\x8c\x3a\x94\x5a\x5f\x58\xfb\x8f\xf0\x02\xe8\xc0\x92\x6a\x43\xe1\xb4\x25\x7b\xee\x5a\x86\x6a\x80\x81\x5e\x57\xd3\xcb\xfd\xda\x71\xbf\x35\xf4\xac\x95\x7d\xa4\x19\xd6\x4a\xf7\x9e\x47\x29\xfa\x17\xad\x39\x85\x3f\x9e\x07\x39\xc3\xf0\x2a\x90\x6e\x6d\x5a\x1a\xf0\xa1\xe9\xda\xbf\x0c\xd1\xba\xc1\x4b\x7b\xd4\xfd\x49\xc5\xa7\x09\x67\xe1\x9d\xae\x29\x7f\xf3\x07\x2b\xdc\x56\x69\xe8\x1a\xb0\xb6\x00\xda\xda\x80\x84\xb4\xb5\xa1\xf8\x94\x07\xe6\x0d\xd6\xb0\x01\x4a\x4e\x9d\xe2\xe4\x0a\x3c\xe4\xf9\x56\x71\x9f\x82\x80\x8c\x0c\xc4\x1c\x5a\xda\x84\xe8\xed\x5e\x81\x4d\xd1\x7e\x3f\x76\x4b\x26\xb0\xab\xf0\xab\xa9\x63\x81\xbc\x93\x25\xe3\xd5\x5b\x8e\x30\x1c\x36\xec\xa8\x40\x17\x00\x4b\x72\x12\xba\xa6\x4e\xa1\x8d\xd7\x72\x8b\xd1\xa0\x5b\xc8\x5b\xba\x85\x36\x99\xb2\xde\xb5\xb5\x6c\xe9\x18\xda\x14\xf6\x36\x0b\x49\x9c\xae\x21\xf7\xba\x86\xb8\xd1\x9d\xba\xa1\x08\x97\xa5\xa8\xa9\x1b\x02\x98\xc1\x45\xfe\x47\xeb\x59\xb0\xc6\x94\x7a\x8d\x09\x55\xd1\xee\xf6\x8c\xed\xf7\x8f\xfe\xf1\x71\x39\x70\x78\x41\x08\xc4\x61\xd8\xf8\x29\x87\x8b\x4d\xca\x0f\xd5\x46\x15\x2d\xdd\x09\xbc\x08\xc1\x7a\x67\xf0\xba\x1d\xec\xd9\x63\xa9\x71\x4f\x31\x80\x99\x0a\xb8\xda\x50\xc3\x35\x8e\x6f\x9d\x5b\x53\x3c\x30\x45\x4b\x1c\xd1\x43\xde\x19\xe4\x51\x39\x15\x0d\xa9\x44\xdb\x90\xd8\x0a\x40\x5a\x46\xc4\x36\xdc\xf1\x03\x1a\x11\xfb\x7c\xf8\x4c\xcf\x47\x42\xbe\xc4\x95\x4f\xee\xb9\xe1\x41\x72\x1a\x61\x6c\xe4\xf4\x5e\x06\x83\xfc\x60\xfa\xe2\x70\x83\xd4\x82\xff\x8c\x26\xeb\xfd\xb1\xa1\xef\x82\x46\x8a\xaf\x14\x2f\xd7\x11\x75\x4f\xd4\xe6\xc6\x94\x1d\xd3\x4e\xf8\x4e\xfb\x7b\x10\xb5\x39\x6b\x93\xdd\x49\xde\x9a\xfe\xc0\x7a\xee\x31\x39\xdc\x1d\x8d\xc6\x5d\xd4\x92\xf8\xd5\x57\x51\x8b\x80\x36\xd6\xc3\xe0\x22\xfa\xc6\xe6\x76\xf4\x66\xbf\xaf\x30\x3d\x87\x4d\xe1\x2a\x39\x1f\x7d\x43\xe2\xf8\xbd\xcd\xe3\xcf\xbd\xd6\xd0\x94\x37\xd9\xf6\x99\x6c\x5d\x0e\xeb\x6f\x5f\xd5\xb3\xd7\x62\x83\xc2\xc4\x4f\xb9\x1b\xb4\x46\xb7\xba\xe1\x51\xea\x3d\xae\x1d\x03\xa1\x8b\xfc\xd6\xe0\xe1\x5a\x30\x83\xf7\x77\xd7\x03\xdb\x60\x77\x62\x13\xaa\xf1\x64\xfa\xde\x54\x08\xe7\xee\xbf\x7a\x4a\x83\x9c\xee\x57\xdc\x37\x56\xdd\xe8\x4b\x45\xd8\x5d\x76\xa8\x8e\xc4\x3f\x9d\xd5\x1d\x8c\x90\x17\xe5\xc2\x7f\x32\xa7\xb5\x25\x38\x1c\xa8\x92\xc9\x05\x6e\xd7\xbf\x0b\x76\x31\xb2\x72\xf4\x92\xdd\x1f\xe8\xdf\x4c\x00\xee\x73\x84\x36\x03\xe9\x75\x45\xa1\x80\x05\xb6\xf7\xb7\x2a\x27\x6a\xfd\x98\x4b\x05\xe8\xf6\xb0\x86\x6b\x2c\x73\xad\xee\x33\xad\xe2\xd8\x7d\x1f\x52\x81\xe6\x14\x5a\xb1\x8b\xd1\xf7\x22\xd7\xec\x5e\x4b\x24\x69\xed\x7e\x04\xec\x18\xa4\x8d\x0e\x87\x1e\x57\x49\x74\x9d\x15\x3b\x1e\xd1\x28\x6a\x98\x88\x82\xbf\x3c\x00\xf7\x4a\x0c\xcf\xd3\x1f\x13\x6a\x92\x83\x9e\x12\x5e\x4b\x9a\xe9\xdd\x03\x2d\x2a\x21\x31\x4d\x9f\x18\x4e\xd9\xe7\xac\xf4\x8a\x23\xfa\x98\x3e\x69\x84\x3b\xf5\x60\x00\x82\x81\xf0\x40\x61\x23\xf2\x89\xad\x16\x78\x44\xff\x5a\x23\x79\x9f\x13\xdc\x04\x9c\x50\xb0\xbc\xaa\x6a\xad\xc1\x5e\x77\x36\x1c\xc8\x5f\x80\x90\xcd\x74\xf8\xa0\x4b\x55\xe8\xa0\xb2\xc7\x2b\x2a\xdc\xa5\xed\x91\xb3\xb1\x7b\x6b\x97\x0e\x2c\xc6\xbd\x8c\x6b\xab\xc9\x36\x9c\x30\x26\x9d\x12\x1b\x93\x03\x6f\x15\x67\x1f\x34\xb7\x3c\x51\x54\x12\x72\x50\x83\xc1\x81\x04\xe0\x0b\xa2\x81\x00\x90\x87\xba\xac\x9a\x8a\x59\x3e\x07\x20\x97\x59\x3e\xb7\x77\x09\xf3\x6b\xb1\xf6\x35\x20\x82\x37\x8c\xed\x96\x2f\xf2\xac\xc0\x1b\x18\x7d\x34\xfb\xb8\x1b\x8f\xc7\xe3\xa1\xf9\x33\x59\x99\xff\xff\x07\xfc\x9f\x2d\x3f\xee\x1e\x8f\xc7\x97\x43\xf8\xb3\x32\xff\x3f\xfe\x4f\xf8\xff\xbf\x3e\xee\x56\x7c\xb5\x9a\x3f\xba\xa2\xcd\x97\x1f\x0f\xfc\x18\xd4\x01\xe6\xbe\x3f\xf1\xab\xe7\xb7\xdb\x44\x8f\x4a\xb9\x53\x0b\x0e\x4e\xf0\xcd\x21\x1c\x7d\xd4\x11\x99\x46\x51\x1a\xed\xcd\x2f\x1a\x5d\x45\x84\x8a\xbe\x5d\xd3\x71\xcc\x47\x96\x62\x26\xa4\xdd\xfc\x77\x45\xb6\xe0\x6b\x59\x2c\xbb\x9e\x95\x34\x38\xe6\x2f\xb7\x99\x00\xcf\xfc\xff\x4f\x44\x41\x44\x2e\xae\xb3\x22\x5f\x82\x8e\x6b\x00\x2d\xa9\x73\x5d\x70\x16\x7d\xfc\xb8\x8b\x06\x15\x90\xd8\x13\x9d\x8c\xcd\x9d\xdb\x72\x0a\x93\xff\x4e\x5a\x52\xf7\x4c\xe5\xd9\xb0\xc8\x2e\x79\x11\x51\x5b\x8c\xa1\x88\xb5\xd6\x84\x7d\xf0\x6b\x93\x5b\xa9\xa0\x9d\x86\x6a\x43\x6c\x77\xfa\xc2\xf0\x0e\x11\xdd\x4c\x23\xeb\xb2\xd1\x49\xea\xa3\x14\x6c\x00\x33\xc5\xb3\x88\xd6\x30\x65\x1a\x4a\x69\x55\x31\x27\x8b\x4c\x80\x5a\x5a\x72\xc7\x35\x39\xb9\xe4\x27\x68\x95\xb7\x3c\xc9\xc5\x49\x76\xa2\x76\x42\xe4\xe2\xea\xc4\xd4\x20\x55\x14\x34\xb0\x21\x79\x8b\x68\xff\x0a\x23\x6e\xd6\xb2\x00\x9f\xd5\x78\xb2\x7e\x0b\x26\xf5\xc1\x2e\x5d\xf3\x8d\xa1\x29\x96\xb4\xd5\x27\xe6\xa9\xd9\xa5\x3f\xd5\x36\x29\xea\xfc\x75\x67\x08\x6d\x68\x37\x0a\xb1\x92\x83\xc5\xb1\x51\x89\x20\xbd\x3c\x8e\x73\x00\x63\x5e\xac\xab\x5f\xa0\x12\x4d\xd5\x28\xd3\x18\xee\x7e\x25\x9c\xe6\xfb\x3d\x22\x91\xdb\x89\x70\x78\x97\x48\x20\x2a\xca\xe1\x18\x34\x43\x95\x1a\xf3\xd9\xc5\xc7\x4d\x93\x2f\x02\x9f\x99\xb0\xa8\x06\xa0\x0d\x12\x78\x64\x15\x37\xb9\x40\x67\xa7\x51\xd4\x4c\x81\xe1\xd0\xba\x34\xf9\x22\x52\x98\xad\xe5\x7b\x60\x51\xdf\x7b\xb2\x68\x49\x64\x37\x36\xd8\xb7\x30\x25\xe0\x31\xc4\x4f\x8c\x3d\xee\x22\x3a\x9b\xd7\xba\xff\xac\x32\xef\x68\xce\x65\x60\x7b\x67\x16\x44\xfb\x94\x68\x78\x0b\x09\x1f\x41\xa6\xdf\x05\x8a\xc3\xc8\x8f\x47\x63\x33\x14\x1d\x9b\x67\x21\xaf\xb9\x7d\xd3\x7d\xc3\x6f\xf5\x7b\x79\xe1\x90\xc8\x5b\x93\xf5\x6d\xad\x81\x1e\xb1\xdc\x6e\xb1\x48\x64\x3a\xbf\xe6\xf5\x45\xfa\xd2\x8c\xd3\xb7\x5d\x70\xe9\x6d\x58\x78\xde\xe4\x12\xff\x04\x3a\x7a\xd3\x3a\xaf\x71\x62\x59\x57\xf0\xad\x9e\x3c\x38\xee\x0a\x75\xf0\x30\x6f\x44\x27\xf4\xa7\x8e\x32\x5f\x48\xb5\xc9\xda\x8f\xf0\x4e\x20\x7a\x08\x32\x95\x6b\x79\x83\x16\x70\xbf\xae\xb9\xb8\x70\x5e\x7c\xa0\x51\x5c\x57\x44\xc2\xf0\x97\x5e\xdc\xfa\x56\xd4\x51\xdd\x82\x06\xfc\x9a\x97\xfc\xa9\xdc\xde\x3d\xdd\x05\x07\xba\x13\xb5\x34\xba\x6a\xd6\x4a\x05\x4d\xc8\x98\x9e\x26\x00\xba\xd7\xc2\xea\xbb\x2c\x76\x2a\xa9\x39\x1b\xc8\x4b\x43\x26\x97\xac\x0f\x3e\x43\xdb\xc1\x93\x0e\xbc\x3f\x6c\x83\x35\x22\x47\x57\x50\xa6\x71\x36\x13\xb0\xb5\x1d\x0d\xd4\x6d\x4c\x3a\xcb\x6c\x57\xd3\xe2\x5c\x30\xb6\xf6\x82\xc3\x9b\xd1\x7d\xd6\x4f\x04\x38\xff\x45\x9a\x46\x02\xc4\x80\xc0\x81\xc2\x0b\x9b\xb7\xa4\x39\xd3\xd3\x0f\x79\xfa\x55\xde\xcb\x3b\x90\xfa\xd1\x51\x04\x68\x2b\x47\x54\xa1\xda\x32\xa1\xc7\x53\x9a\xa3\x45\x99\x94\xf0\xe3\xa1\x94\x08\x0e\xaa\x40\x2c\xf7\x50\xba\x82\x67\x66\x3b\xa9\x11\xfc\x38\x9e\xd2\x0c\x8a\x1a\x99\xbf\x86\x2f\x01\x66\xb4\xed\x7b\x25\xa4\xc8\xb8\x1a\xbe\x2d\x72\xf1\xf9\xa7\x4c\xf3\x88\x7e\xf3\x97\x71\x18\x13\xca\x6b\x22\x5a\x8b\xc2\x1b\xa2\xd9\x14\xc1\xca\x45\x0f\x6a\x4f\x83\x04\xef\xb8\x32\x5b\x08\x26\x2b\x48\x78\x23\xd5\x67\x43\x31\x23\x20\x8f\x3e\xe8\x19\x2f\xb2\xbb\x20\x6c\x55\x98\x9d\x25\x00\x81\x0b\x8a\xf8\xec\x4b\xc8\x96\xcb\xd7\x72\xc9\x41\x4d\x01\x56\x52\x15\xb5\x45\xd9\x16\x20\x39\x06\x85\xed\xc4\x52\x3e\xe3\x5b\xbd\x8e\xe8\xe3\x71\x07\x19\x95\x0b\xef\xae\xcb\x27\x65\xda\x2e\x5c\x1b\x03\x68\x94\xae\x95\x8f\xbf\xb1\x25\x5f\x5b\x75\x08\x37\x50\x93\xf1\x97\x59\x95\x4d\x76\xfb\x32\xbf\x5a\x17\x66\x90\x10\x7d\x21\xa2\x13\xfe\xd7\xa0\x1b\x1b\x79\x8d\x1b\xc5\x70\xf2\x38\xa6\x1d\xf4\xff\xd8\x96\x79\x67\xb5\x1b\x3c\x8b\xa7\xb3\x4b\x60\x9c\x8f\xdd\x35\x8e\xdc\x23\x47\x3a\xbb\x04\xfd\x66\xa6\xf7\xfb\x28\xb2\x85\x65\x3b\x2d\x2d\x5e\x69\x65\x04\x2a\xcc\xad\xc9\xdc\x57\xe0\xce\xa6\xe0\x2b\xdf\xf0\xd7\x36\xa4\x07\x37\xb3\x5c\x40\x00\xab\xd7\x5f\x5d\xda\xa0\x80\xfd\x3e\x32\xc5\x46\x20\x10\x48\x1a\x91\x8c\x13\x9a\xa9\x2b\x30\xa4\x71\x62\x97\xf3\xc7\x80\x36\xbd\xe4\x5b\x6e\xee\x37\x8b\x9c\x97\xe8\xc6\xa8\xb2\x4b\x41\xed\x58\x7c\x50\xf6\xd9\xe9\x63\x42\xa8\x50\x70\x53\x3c\x50\xdf\xc0\xef\x5f\x3f\x6f\x34\x50\x55\x69\x14\x2f\x65\x71\xdd\xec\x45\x37\x10\x35\x8f\x63\xd5\xf5\xc6\xcd\x19\x14\xe8\x15\x3f\x78\x1c\xb7\xf3\x82\xae\x67\x67\x01\x10\x43\x1c\x4b\x6e\x8a\x42\xbd\xd0\xde\x11\x10\x86\x7b\x13\x0b\x5e\x5d\x12\xce\x3e\x59\x24\x6a\xb4\x30\xd0\xf0\xa7\x72\x96\xda\xd1\x83\x47\xff\x98\x7d\xbc\xf9\x38\x9c\x0f\x3e\x3e\x72\x3f\x06\xb7\x9b\xe2\x2b\xff\x88\xe3\x5e\xff\x6a\x63\x93\x44\xd9\x76\x5b\xe4\x0b\x10\x51\x3d\xba\xdd\x14\xfe\x6a\xd0\xae\x63\x8a\x0d\xe4\x87\x94\xef\xf7\xf8\x1b\x17\xc0\xc1\x0c\xb8\x55\xe6\x6d\xcc\x88\x66\xf5\xea\x3c\xc0\xa7\x50\x33\x6d\x87\x03\xdc\xb8\x57\xad\x73\xe6\x28\x16\xf5\xe3\xd1\xb6\xc8\x72\x11\x39\xa0\x34\x0b\xb4\x96\xaf\x92\xbc\xad\x6e\x1c\x8e\x78\xce\xf2\xaa\x0a\xff\x90\x66\x58\xff\x9c\xe4\xcd\x9c\x92\x00\x00\x65\x67\xe8\x2c\xfa\x14\x0d\xe4\x1c\x70\xfd\x08\x35\xff\xb3\xdc\xfc\x3c\xc0\xb3\x6b\x30\x3d\x54\xd7\x34\x88\x4d\x79\xfe\x93\x85\x71\xe6\x2e\x65\xf6\x88\xa9\xa8\x12\x55\x42\xdb\xc2\x08\xa8\x2a\x08\x98\x49\xef\x27\x4d\x05\xdb\x00\x66\x11\xe6\x81\xb6\x15\xbd\xc0\xca\xa7\xe9\x8f\xef\x73\xbe\x7d\x2f\x9f\x8b\x65\x82\x16\x01\xe1\x86\x4a\xc2\x31\xa7\x58\xac\x95\xce\x3a\xba\xf1\xfc\x56\x73\x51\x9a\x23\x19\xc9\x05\x3e\x3c\x77\xcc\xfd\x8d\x59\xc2\xed\x59\xe2\x64\x9a\x9b\x6d\x95\xc2\xff\xec\xfe\x40\xaa\xce\xf8\xb2\x5b\x94\xc7\x53\x88\x06\x15\x78\x26\x17\xc7\x32\xdd\xe5\x47\x73\x59\x59\x0d\x57\xd0\x35\x09\xf8\x7b\x2e\xce\x30\x23\x2f\xa5\xfc\x5c\x23\x1b\xd2\x21\xec\x11\xf4\xbd\x90\x99\xd1\xc0\x19\xb5\xc3\xa0\xf8\x55\x5e\x6a\xae\xf0\xb1\xb7\xe5\xe1\xa0\xad\x1c\xcf\xc9\x7e\x9f\x64\x30\x06\x17\x30\x10\x56\x0b\x3c\x9d\xcd\x0f\x86\x76\xce\xf8\x1c\xf4\x3d\x91\x9a\x61\xe1\xdf\x41\x8a\xce\x2a\x50\xaa\x56\x6f\x85\xc3\x8f\x81\xc2\xbc\x06\x3a\x9a\x60\x6d\x15\x5f\xa6\x82\x5e\x67\x45\xaa\x0e\xb6\x57\xa5\xe9\xd5\x42\x6e\xef\x40\x93\x9c\xb5\x04\x46\xfd\x31\x63\x4c\x7b\x63\x27\x8b\x3b\xea\xd2\x7b\xf5\x82\x2a\xa8\xda\xef\xf7\x07\xbf\x09\x15\x2c\xf4\xba\xd1\xcf\x49\x2e\x4a\x9d\x89\x85\x21\x34\x70\x24\x80\x46\x47\xee\x9d\x2e\xcf\xcd\x09\x30\x53\x73\x96\x07\x2a\xef\x3b\xd3\xdc\xca\x40\xad\x35\xe6\xf6\x95\x93\x07\x69\x00\x87\xdf\x7f\x25\x60\xd4\xd4\x0b\xcc\x28\x1a\x7d\x86\x37\x6d\x5e\x45\x9f\x56\xf6\x73\x81\xe5\x05\x5a\x6a\x8a\xfd\x5e\xe0\xd1\xc7\x9c\xb1\xa6\x66\x02\xa5\x42\x94\x33\x8c\xf3\xad\xdf\xef\xd1\x08\x8e\x53\x48\x90\xea\x03\x4e\x41\x81\x53\x00\x8a\x58\x25\xbb\x47\x27\xa2\x4f\x8a\xa2\xb9\x87\x83\xbb\x47\x52\xa1\x8c\x59\x63\xa4\xb1\x7b\x4d\xaf\xf0\xcd\xc0\xfe\x87\x22\xeb\x57\x59\x6f\x3d\x50\x68\x08\x55\x12\x21\xe0\x1c\x5c\xe0\x83\xd0\x35\xcf\x96\x91\x2d\xf9\x73\x5e\x14\x0d\xe5\x73\x72\x0f\x66\xf5\x3e\x40\x5b\x8c\x35\x67\xdc\x65\x87\xf2\xc6\x63\x41\x55\x06\x5c\x35\xb4\xb2\x4a\x56\x65\xa1\x06\x00\x88\x22\x48\x7d\x16\xf6\x74\xea\x40\xd0\xdc\x9b\x27\xe0\xa4\x54\x08\x79\x13\x3a\x26\x4e\xe3\xe8\x58\x22\xb3\x2a\x0e\x35\x55\x59\x67\x1f\x66\x81\x8f\x0d\xe5\x04\x2d\xf2\x82\x6b\xfe\xe5\x6e\x87\x45\x6d\x1d\x82\x68\x42\xbc\x0f\x62\x2d\xd3\x57\xce\xe5\xbe\x45\x88\xb3\xb1\xe8\x8f\xd8\x55\x86\x20\x60\x2b\xfd\x40\x6d\xbc\x55\x1b\xef\xa8\xcd\x85\xb9\x82\xf1\x09\x62\xf9\x27\xca\x0f\x2c\x48\x2b\xb3\x0b\x3b\x76\x81\xaa\xce\xe0\x9b\x5e\xd8\x0c\x43\x12\x9c\x81\x45\x82\x0f\xf2\x63\x78\x85\x17\x07\x9b\x09\x47\xf6\x68\xab\x7e\x6a\x98\x52\xfc\xdb\xcd\x42\x3d\x9d\x66\x63\x5a\x0e\x2d\x42\x7d\xce\xc1\x64\xdc\x68\x6c\xef\xd8\xda\x50\xd0\x74\x73\x31\x69\x6c\x2d\x13\x94\xc0\x2b\x5f\x2b\xca\x04\x25\x36\xd7\xb1\x9d\x59\x8b\x73\xe5\x1c\x4b\x5c\x8b\x83\x37\x26\xf9\x4c\x2e\xc0\x99\x53\x23\x65\x43\x67\xac\x8b\x90\xb8\xec\xcf\x1b\x7a\xa1\x47\x32\x87\x88\x8a\x26\xa7\xf9\xfd\x27\x6a\xae\x69\xab\x55\x56\x32\x2a\x4b\x78\x8d\x2c\x1c\x2a\x7f\xe2\x03\xeb\x3d\x39\xcf\xca\x74\x72\xa8\x57\x76\xb1\xf9\x77\x6b\xcc\xab\x1a\xff\x44\x65\x5f\x1c\x94\x23\xb5\x74\x1b\xe8\x54\x84\xd0\x42\x02\x08\xf6\x4c\x25\x8a\x9c\x12\x34\xcd\x10\xcb\x64\x62\xee\x9d\x16\xf4\xa9\x02\x56\xca\xd9\xeb\x3c\x51\x84\x4a\x96\x4f\xf3\xd9\x78\x3e\x2a\xf8\x35\x2f\xfe\xe3\xf1\x54\x67\x89\x22\xa9\x80\xff\x55\x17\x49\xdd\x3a\x07\x1c\x7a\xfa\xd6\x14\x91\x6a\x2a\xd1\x1f\xc1\x97\x07\x7d\x18\x0c\x44\x7b\x7b\x7e\x71\x28\xfe\x25\x2a\x72\xf2\xbf\xbf\x67\x51\x55\xd6\xb6\xb7\x45\xe4\xfe\xcf\x37\xf7\x4b\xcd\xf9\x37\xd6\xec\xff\x0e\xc5\xeb\xa6\x68\x27\x6a\xb4\x58\x9f\xc1\x21\x0f\xbb\x58\xd9\xd3\xb8\xe4\x99\x5a\xac\x93\x47\x1f\x2f\x1e\x91\x69\xb8\x47\x52\x55\xeb\xc8\xcf\xdb\x46\x0f\x40\x0b\x36\x19\x4e\x28\x22\x61\xf8\x84\xa0\xa5\xde\x95\xb4\x96\xf2\x5d\x76\xf5\x50\x91\xce\x78\x0f\x13\x3e\x54\x64\x95\xd2\x0c\x41\xc7\xec\x83\xf6\x37\x14\x8a\xef\x63\x2e\x69\xd7\xc2\xc6\xb4\xf5\xa4\xa0\x47\xfa\x70\xb9\x88\x22\x13\x24\x7f\xb8\xec\x20\xf9\xaf\x52\x2d\x1f\x2c\x1b\x70\x68\x20\xe9\x77\x4a\xee\xb6\x0f\x16\x8c\x60\x34\x55\xe2\x07\x0b\x0e\x12\x9b\x46\x3c\x58\xb0\x6b\xc4\x92\xc3\x0b\x25\x3e\x8e\x35\x12\x5b\x3d\xf5\xda\x40\xdb\xf4\x4d\xbb\xd5\x30\x79\x3d\xb5\x69\xc9\x17\x4b\x0f\x5a\x03\x2a\xbd\x0f\x97\x1e\xa4\x86\x41\xf9\x62\xf1\x7e\x60\x5c\x8e\x2f\x54\xe0\xd3\xe3\xb3\xff\x93\x9d\x6e\xb2\x01\x0d\x60\x05\x07\xba\xe6\xb3\xbc\x6e\x37\xa8\x95\x05\x10\xe7\x5c\x86\x57\xbc\x2c\xbf\x58\x87\x47\x7e\x30\xb9\x4a\xae\xf4\xfb\xec\xb2\xc5\x4e\x34\x8d\x01\x3e\x06\xe9\x2f\xe4\xaa\x95\xa7\x52\xbe\x9a\xcd\x29\xfa\x72\xa9\x7b\x89\x06\x92\xd4\x44\xb8\xeb\xc2\xd6\x42\x8d\x02\xe1\x40\xfe\x01\xa0\x61\x21\x93\x8a\x40\x79\xbc\x5a\x50\xc1\x26\x3d\x6d\x95\x09\x64\xa2\x86\xd9\x7f\x28\x42\x0e\xed\x0e\x94\xa0\xd9\xe1\xec\x46\x5b\xfd\xed\x32\x89\x38\x36\xd6\xa9\xa1\xd1\xde\x70\x26\x89\xfc\x18\x46\x60\x04\x93\x89\x72\x2b\x4b\x0e\x0f\xdd\xb5\x5a\x8e\x23\x77\x75\x0c\x56\xe0\x84\xe6\x18\x6a\x06\x52\x7d\x59\xb1\x10\x79\x70\x8d\x02\xff\xab\x04\x70\x35\xcc\xdd\x49\x56\x60\xfb\x39\x28\x28\x6c\x79\x82\xc9\x69\x8e\xf0\x92\x04\x7e\x9c\x8f\x49\x57\xfc\x60\x42\xa8\x1f\xd3\x9f\x32\x71\x65\x26\xc1\xaa\x79\xdb\xfc\x83\x7a\xc0\x63\xb8\x8d\x86\x55\x3c\x26\x34\xa7\xd1\xc0\x0f\x50\x14\x18\xf3\x3b\x6c\x6e\xaf\x7c\xe2\x8c\xf7\x1b\x7d\x73\x00\x80\xbd\x0c\x55\x25\xba\xda\x33\x26\x03\xde\xe5\x05\x7e\x90\x79\xf4\xac\x0a\x4f\xa2\x6a\xe4\x70\x42\x3b\xc3\xe9\x84\xd4\x5b\x7d\xa8\x7b\xf9\xc9\x69\x0e\x0b\x2e\xbc\x47\x97\x89\x20\x86\x4f\x12\xfc\x06\xac\xc2\xc5\x12\x75\x7b\xfe\xed\xe5\xe0\xd5\x66\x10\xc0\xe6\x54\xb8\x95\xa0\x3a\x12\xcf\xc4\xbc\xd7\x18\x9c\xce\x01\xa1\xca\x79\x27\xb2\xa6\x48\x15\x82\xa0\x5b\xfa\x96\x1f\x08\xee\x92\x83\x09\xb5\x88\x82\xe4\xe0\x30\xe3\xa8\xdc\x72\xd1\xba\x10\x77\x12\x11\x11\xd1\x08\xdf\xeb\xbe\xa0\xed\xcf\x47\x8d\x58\x73\x43\xa4\x0b\xc5\x2e\x2c\x6a\x52\x4d\xcb\x6c\xa5\x6a\x24\x08\xed\x53\xd1\x4f\xc5\xb6\xc8\x75\xf2\x68\x98\x4c\xfb\x5f\x91\x47\x86\x94\x24\x9c\xc9\x99\xf4\x53\x3d\xa7\x63\x72\x9a\x9d\x55\x01\x60\x37\x62\x51\x1a\xe4\x2c\x03\x51\xf5\xa3\x7f\x24\x8b\xcd\x72\xbf\xe1\x3a\xdb\x6f\xc8\x57\x8f\x72\x8b\x97\x49\x48\xce\xfa\x63\xbf\x8e\x1f\xfd\x23\x4b\x0a\x4d\xa6\x61\x02\x5d\x4f\x90\x2c\xf6\x0b\xad\x8a\xfd\x42\x0a\xad\x64\x51\x2b\x4b\xb8\xa4\x20\x76\x7b\xf4\x8f\x32\x59\xe7\x2b\x5d\x4b\xd2\xd2\x7c\xf9\x59\x28\xbe\x90\x57\x22\xff\x83\x2f\x4f\x36\x72\x99\xaf\x72\xae\x4e\x40\x4e\x7f\x12\x0d\x4a\xd2\x53\xe0\x73\xc9\x49\x53\x40\x3f\x3b\x7a\x52\xe8\x61\x34\xe0\xd6\xeb\x2d\x8b\x9e\x6a\x55\x60\x40\x6e\x03\x36\x4b\xfc\x56\xf8\xed\x7c\x81\x72\x42\xf9\x61\xa1\x46\x97\x59\x99\x2f\xd8\x3d\xb0\x11\x51\xc5\x5f\x45\x14\x99\x85\x28\xe0\xa3\x22\xfa\xf3\xd6\x04\x20\xa7\x18\x51\xe0\xd8\xa2\x8a\x21\x8c\xa8\xb9\x50\x45\xfe\x6e\x15\xd1\x97\x72\xc3\x5d\x40\x75\xb3\x8b\xa8\x65\x0c\x23\xc7\x22\x62\x88\x2b\xcf\xfd\x8e\xe8\x33\x38\x81\xd3\x28\xe4\x31\x22\xfa\x6d\xb6\xf8\x5c\x6e\xb3\x45\x15\xe1\x34\x79\x6c\xef\x7c\x82\xa8\x95\xc2\x9c\x17\x51\x75\x76\xf8\x2c\xe6\x77\x1a\x55\xa7\xbb\xe9\x8b\xe1\x08\xa2\xe6\xc6\x8f\xe8\xf7\x70\x48\xa4\x51\x63\x55\x47\xf4\x79\xb9\x48\xa3\x86\x88\x2e\x32\x2b\x7d\xb4\x5d\x3c\xc3\x2a\xd9\x3d\xce\xd0\x93\x28\x8d\xbc\x6c\x30\xa2\x18\xf8\x0c\x9b\x6b\x45\x52\x2e\xf4\xef\x80\x4e\xb6\x94\xbe\xa9\x3e\x54\x71\x08\x85\xef\x0f\x8d\x6f\x33\xf2\x91\x19\x4c\x27\x3a\x70\x11\x66\x5e\x6c\x38\x4c\x11\x86\xfe\xbc\x8d\xc2\x99\xb5\xed\x31\x73\x50\x9f\x60\x8c\x80\x05\x62\x22\x3c\x07\xea\x62\x70\x9d\xf8\x28\xbb\x6c\x60\x95\xfa\x4c\x7e\x31\xd8\x88\x2a\x8f\x5f\x37\x58\x58\x63\x1a\x03\xce\xce\xb7\x10\xad\x19\xab\x68\xbb\x42\x30\xf6\xc2\x0c\x32\x3c\xea\xe3\xf7\x8b\x28\x8d\xcc\x35\xdc\x7d\x7f\x67\xbf\xdf\xf0\x5b\x5d\x1f\x5d\x17\xf3\x4e\xf1\xeb\x7a\xcc\x0b\x18\x67\x20\x86\xf5\x88\x9f\xaa\x88\x60\x4a\x67\x7e\x51\x19\x76\xce\x85\xce\x7d\xe8\xeb\xa0\x33\x3f\xdb\x89\xae\xd6\x4e\xad\x82\x9f\xed\x0c\x87\xd1\x66\xf8\x3a\xc2\x57\x59\x51\x18\xf2\xb2\xbb\x5a\xa7\x11\x6c\x70\x5c\x86\x7c\x93\x2d\xca\x3b\xb7\x06\x5f\x44\x8d\xdd\x6d\x47\x3d\xaa\xd3\x01\x0c\x7d\xd7\xb1\x3e\xde\x34\x17\x87\x69\x0e\x96\xea\x6f\x1b\x36\xf4\x5b\x1f\x1a\x16\xfa\xa4\xb5\x1e\x70\x89\x76\x2d\x86\x5f\xa2\x3a\x69\x08\x87\xa6\x8a\x0b\x16\x6f\xd4\x24\x1b\x76\x63\xb4\x69\x02\xb4\xd0\xa6\xf7\x97\x0d\xd7\xf0\xfa\x1a\xac\xee\x2e\xae\xbc\x1f\xa2\x34\x72\xc2\x73\x17\xf6\x3e\x4a\xa3\x3a\xf7\xe8\x62\xde\x46\x69\xe4\x8e\x58\x9c\x93\x4d\x16\xd2\x86\xcd\xb2\x4d\x1a\x36\xcb\x0e\xca\xb0\x59\x76\x10\x06\x1b\xe8\xe8\xc0\x66\x59\x23\x0b\x9b\x65\x37\x55\xd8\x2c\xdd\xf6\x6f\x84\xb6\x49\x85\x69\x8a\x23\x0a\x3e\xb4\xb6\xb9\x43\x8a\x50\xdf\xdc\x35\x82\x60\x4a\xaa\x11\x04\xb7\x2c\x36\xcb\x06\x3d\xa8\xad\xa2\x2f\x12\x84\x63\xa9\xc2\x29\x3d\x4e\x34\x36\xcb\x1a\xcd\xd8\x2c\x6b\x24\x63\xb3\x3c\x42\x31\x82\x08\x4b\x30\x60\x1e\xed\x66\x68\x51\x8b\x76\x5c\x35\xd1\x6d\x7a\xb1\x59\x76\x90\x8b\xcd\xb2\xb5\x30\xeb\x2f\x00\x6e\xb2\x82\xae\x36\xa5\xf1\x6e\xea\x8f\x53\x1d\x1b\xdb\x24\x3a\xe1\x81\xd1\x3c\x5d\x5a\xab\x23\x24\x45\x33\x4b\x8b\x68\x84\x84\x28\x9a\xc3\x0e\xb0\xa7\x31\xbb\x9b\xd6\xb6\x43\x1a\x9e\x9b\xf4\x62\x24\xa4\xda\x64\x45\xfe\x87\x85\xe4\xec\x70\xba\x1f\xbc\x51\x8a\x93\x5c\x9c\x70\xb4\x11\x6a\xbc\xdb\x8a\x4a\x53\xcd\xb0\xd7\xc8\xca\x19\x2e\x6b\x1f\xb4\x75\x9f\x2c\xf9\x3e\xd3\x44\x67\x8b\x35\x71\x3a\x18\x82\x10\xc3\xeb\xe5\x62\x07\xc8\x33\xd1\x68\x34\x42\xe8\x10\xdc\x9a\x27\x50\x9e\x4b\x71\xa8\x34\xe0\xaf\xc0\x4e\x0c\xb8\xd7\xe8\x24\x22\x74\x05\xb2\x5e\xc0\x39\x6b\x83\x9c\xd1\xb2\x27\x19\xcb\x3d\x0f\x3b\x4d\x4a\x96\x8f\xfe\x29\x73\x81\x99\x33\xa6\x48\x0a\x61\x0e\x88\x4e\x0e\x26\xa4\x96\x00\x1a\xe6\x0c\xb8\xf5\xac\x84\x4e\xee\xe0\xf5\x6e\xd7\x67\x59\x9b\xf3\xfc\x5e\x2c\xa4\x28\xf3\x52\x73\xa1\x4f\x2e\x73\xb1\xcc\xc5\x55\x79\xb2\x92\x0a\xf8\x4e\x54\x5b\x31\xe5\xb0\xec\x10\x74\xd5\xf7\xb0\xc0\x07\x61\x3e\x2b\xe6\x4c\xcf\x0a\xaf\xe5\xc0\xf1\x49\x74\x6d\x38\xfd\x42\xca\xcf\xbb\xed\x0f\xfc\xae\xe3\xd9\x1b\x47\x29\xd1\xa8\x28\x4d\x40\x7b\x68\xaa\x51\x89\x88\x53\x45\x52\x3d\xb3\x6a\x26\x13\xc6\x58\x4e\x9c\x95\x9c\x84\x6b\x7e\x14\xcc\x45\x15\x89\xde\xf7\x1d\x1a\x40\x9f\xe5\x71\x2c\x92\xdc\x29\xd1\x78\x57\xfd\x08\x55\x13\x4c\x3c\x6a\x18\xcd\x10\xd1\x0c\x9f\xb2\xe7\x51\x9f\xbd\x85\xef\x40\xcf\xc9\xa9\xd6\x63\x2b\xeb\x45\xb8\x87\xf4\xb5\x42\x77\x09\x55\x14\x7a\xc4\xaa\x63\xdd\xd5\x12\x74\x80\xde\xb5\x4b\x99\xc9\xb9\x77\xad\x95\x11\x0f\x81\x71\x38\xd0\xad\x19\xea\xbc\x7c\x6d\x2f\x0f\xf5\xe1\x76\xdb\xa4\x43\x33\x88\xa7\x7f\x97\x33\xef\x92\xdc\x4d\x20\x6c\xe9\x08\xec\x81\x0d\xe1\xb4\xbf\x80\x38\xd8\xdf\xaf\xe5\xd2\xfc\x3a\xd0\xa5\xbd\xcd\xbd\xc9\x36\x1d\x7a\x07\x8b\x38\xfe\xcb\x5f\x59\xdd\xa5\xbc\xb9\xc0\x57\xb0\xdf\x28\x0a\xaf\x35\x82\x2a\x26\x7a\x01\x4a\x53\x9f\x29\xe7\x56\xfd\x3b\x95\x6d\xd7\xe0\x66\x3d\x71\x6e\xd6\xe3\x18\x9a\x88\x2e\x41\x94\xbb\x17\x29\x42\x93\x4f\x47\xdc\xef\x63\xef\x7c\x06\x7b\x71\x72\x39\x6c\xba\xb4\xf2\xdc\x6e\x72\x6c\x96\x41\x06\xb8\x58\x29\x42\xfb\x60\xec\x01\x80\x0f\xd8\x10\x1c\x21\x9f\xd0\xdd\xb8\x14\xa1\x8a\x04\x37\xdd\x4d\x68\xf2\xd9\x9e\x93\x05\x28\xd9\xf0\xc3\x05\xdc\xd9\xdf\xf3\x5b\xfd\x44\xf1\xac\x3d\xb8\x89\x66\x7a\x7a\x23\x13\x4d\xd2\xfb\x03\x19\x81\x61\x14\xe3\xf8\x97\xf6\xf5\xc8\xa9\x24\x02\x92\x90\x55\x33\x04\x3d\x3e\x17\xc1\xaa\x70\xd3\x99\xd1\xb6\xb2\x4d\x31\x79\x6a\x9f\x49\x2d\x9a\xd5\x62\x1d\x76\xbf\x1e\x79\xc5\x45\xef\x5f\x53\x82\xb7\x33\x1f\xce\x04\x28\x1d\x3a\x4b\xe1\xab\xba\x61\x8a\x57\x7b\x24\xe0\x0a\xdf\x03\x7b\x5f\xca\x65\x00\x31\xae\xc0\x31\x38\x76\x17\x60\x1a\xd0\xea\x0b\xf4\xba\xf8\x68\x25\xd5\x26\x8e\x93\x0f\xb9\xfd\x4d\xa3\x72\x77\xb9\xc9\x75\x44\x61\xc6\x50\xc9\xf7\x02\x82\x5e\x73\xbd\x96\xcb\x27\x85\x14\x95\xee\x99\xcd\x24\x0d\x99\x85\x44\x3d\xad\xee\xec\x86\x74\x41\x2c\x54\xd7\x4a\xc0\x6b\x2a\x86\x4b\xff\x33\x0c\xcd\x0e\x87\x05\x78\xed\xf8\x20\xc9\xfd\xe1\xa0\x47\xab\x5c\xe4\xe5\x1a\x0c\xe0\xc2\x57\x21\x3d\x32\xfc\x07\x53\x14\x14\x44\xdb\xf3\x1e\x6a\xbd\xeb\x91\x96\x5d\x29\x6a\xe1\x79\xf9\x26\x7b\x43\x51\xdd\x7c\x9b\x29\x2e\xf4\x1b\xb9\xe4\xd6\x65\x96\xc5\xcb\x1a\xb5\xec\x18\x13\x82\xde\xde\xef\x0a\xff\x50\x87\xf6\x1d\x76\x64\xbf\xea\x1c\xd9\xc8\x35\x22\xd4\xb0\x34\xa9\xec\x28\xa0\x4f\xc5\xea\x9b\x49\x42\x0e\x87\x76\x45\x42\x0a\x1e\x59\x50\x93\x8b\xda\xa3\x59\xad\x0f\x28\xaf\x45\x16\x30\xd1\x94\x8f\x04\xbf\xd5\x17\xf9\x65\x91\x8b\x2b\x72\xa8\x30\x4b\x4e\x4a\x3c\x8a\xee\x0c\x99\x42\xc2\x7d\xa1\x15\xcf\x36\x4d\x75\xc7\x75\x5e\x8e\xb6\xb2\xf4\xa8\x14\x4a\xb3\xb1\xc3\x76\x30\xb9\x18\xc7\x2f\x2b\xf4\x36\x44\xf0\x3f\xa9\xc7\x12\xc6\x77\xa1\x77\x2e\x7f\x15\x04\x4b\xd3\x95\x54\xb8\xfb\x0e\x1b\x1f\x7a\x77\x2a\x04\x75\xe7\xb2\x38\x66\xca\xb9\x95\xe5\x39\x0b\x5a\x62\x4f\x8a\x03\x2d\x1f\xcc\x63\x01\x36\x7c\x9d\x07\xba\xe5\xfc\xf3\xb1\x0c\xb6\x68\x2b\x5c\x75\x65\x90\xfd\x1e\x9d\x70\x1f\xa8\x19\xdf\x30\xb3\x39\x3e\x6d\xaa\xb3\x76\xe3\xc8\x97\xcb\x1e\x0c\xc8\x81\xf2\xec\x28\x7c\xee\x91\x16\x75\xc2\xcd\x72\x62\x0d\xeb\x99\x45\x14\x30\xbf\x61\xc5\x19\xf6\x6d\x8a\x7f\x0c\x9d\xe4\x86\xcd\x00\xde\xc0\xb6\x70\x30\x70\x25\x53\x0d\xcd\xf9\x75\x9d\x17\xfc\x21\xd4\xf7\xad\x2c\x4f\xe1\x07\xcf\x74\xc2\xc9\xa9\x87\xa2\xf2\x93\x85\x05\x01\xf2\x5b\xda\x21\x1b\xe6\x55\x39\x8f\x66\x1f\x4b\xb0\x5b\x1c\xcf\x2d\xa7\xf9\x50\xd7\x01\x89\xc5\x7d\xf5\x9a\xb5\xf2\x03\xf5\xfa\xa1\x2d\xdf\xed\xc1\xca\xae\x2f\x21\xc8\xf1\x85\x29\x70\x06\xa1\x76\x07\xb8\x59\xd0\xe7\xc3\x09\x69\x2e\x3a\x0d\x30\xf6\x97\xd9\xe2\x73\xe3\xf9\xd7\xa5\x18\x32\x7e\xa0\xf8\x46\x7a\x6c\x2d\xd6\x36\xd4\x59\xb5\x21\x1d\xce\x48\x73\x77\x2d\x64\x38\x6c\xb4\xca\x50\xdb\xb1\x1d\x9b\xb5\x19\x04\xc5\x91\xa3\xbb\xda\x9a\xa6\x74\x65\x1a\x26\xf5\xcd\x36\xed\x6a\x93\x8f\xad\xb5\x0b\xc1\x50\xf1\x96\xd7\xc0\x1b\xf0\xc3\xd2\x28\xcd\x03\xb6\xf9\x32\xfe\xb7\xeb\x07\xb7\x52\x69\x87\xbd\x4f\x0b\xc6\xde\x23\xa0\x86\x4b\x04\x6f\x24\x7e\x79\x58\x2f\x55\xbc\xd2\x4e\x88\x63\x85\xeb\xe8\x7c\xec\x1c\xfc\xc4\x71\x7f\xd2\x67\x15\x7c\x8c\xa1\x09\x4c\xa1\x16\x0c\xfa\x1b\x52\x68\x2e\x9e\xb3\x0e\xcb\x2f\x61\x76\xb5\x7c\x25\x6f\xb8\x7a\x9a\x95\x3c\x21\x29\x3f\x80\x72\x79\x6d\x0b\x95\xbb\xcb\x52\x2b\x5f\x3e\xe5\xde\xb2\x98\xb1\xbc\x52\xad\xef\x68\x88\x4f\x09\x0b\x7a\xb1\x53\xea\x01\x6b\xfb\xf6\x28\x04\xeb\xcf\x0c\xc8\x81\xae\xf3\x25\x7f\x91\xab\x52\x37\xdf\x14\xfd\xe9\xe3\xa7\x67\xc0\x38\x30\x1d\xae\x86\x84\x1c\x56\xb9\xc8\x8a\xe2\xae\x91\xd0\xec\x25\xab\x7d\x7a\xad\xd8\x98\x5e\x99\x43\xce\x9c\xfe\x88\x4e\xda\x75\xc4\x99\xbc\x25\x9b\xcd\xed\x12\x00\x05\x77\x8f\x1c\xe1\xce\xb8\x7c\xc9\x06\x83\x6b\x75\xe8\x29\x99\x5c\x29\x42\xaf\x82\xa3\x6a\x04\xd8\xb4\xac\x7e\x12\x20\xea\x10\xbf\xdd\x16\xf9\x22\xd7\xc5\xdd\x53\x93\x86\x2f\xeb\x28\x18\x72\x01\x0e\x32\x19\x47\x0f\xc2\x3b\xf5\x76\x0b\x64\x24\x8e\xbf\x05\x2b\x4f\x21\x2d\x5a\x03\xd4\x10\x91\x1a\x06\x1e\x28\x51\x91\x9e\x00\xa7\x9e\x61\x32\x8a\xf8\xd2\x54\x8c\xb4\x24\xfe\x62\x6a\x5d\x66\xe5\xf8\xc7\x5e\xb7\x7c\xff\x43\xf7\xff\x96\xb5\xab\x22\xcd\x1d\xab\x64\x17\x2a\xc9\x46\x1b\x33\x8c\x4b\x30\x8f\x42\xec\x8b\x1e\x77\x08\x4b\x0b\x59\x14\xd9\xb6\xe4\xcb\x29\x78\x3b\x7d\x9b\x27\x19\x71\xce\x4e\x53\xc0\x62\x01\x0e\xb7\x1c\x69\x09\xcf\xb5\x90\xc0\xa1\xaf\x94\x0e\x66\x47\xd9\x70\x42\x6b\x95\xb1\xb7\xcd\xda\x4b\xc7\x62\xbb\xac\xf5\x46\xc4\x71\xff\x5b\x15\x40\x26\x92\x38\xe6\x71\x7c\x91\x27\x19\x6d\xf8\xb6\x41\x63\x98\x56\xee\x6e\xf3\x60\x52\xc1\xa0\x3f\x30\x78\x3b\xf6\x42\x25\xb5\xf1\x23\xb4\x60\xff\x4c\x76\xa4\x57\x9c\x57\xba\x5e\x4d\x47\xb9\xad\x18\xb6\xa3\x47\x52\xb3\xa2\x1d\x53\x39\xd0\x25\x07\x7f\x49\xec\xe8\x1a\x38\xa9\x55\x34\x1f\x38\xb7\x1e\x61\x27\x1c\x63\xd6\x5a\xb9\xac\x6f\x63\x32\x2d\x37\xf9\xc2\x16\x1b\xc2\x6a\x39\x62\x11\x86\x81\xad\x66\x1c\x7f\x65\xdf\x6a\x0d\x1f\xed\x9c\xd0\xc2\x64\x2a\x5b\x7a\x44\x71\xa3\x11\xaa\xe3\xf8\x67\x58\xfc\x48\x29\x80\xbf\xb5\x95\xe1\x07\x6e\x37\x78\x37\xad\xed\x42\xb3\x1f\x58\xa7\x36\x62\xcf\x63\x7a\x45\x97\x52\x7e\x36\x15\x47\x96\x17\xd4\x68\xde\xc2\xd9\x24\x84\x69\x18\x9f\xe6\x9d\xd3\x5b\x79\x0c\xab\xe6\x36\x9f\xd3\xcc\xec\x0d\xd9\xb1\x37\xbc\xc4\x25\x73\xcb\x5b\x80\x03\xb9\xa9\x4c\xdf\xe6\x89\x34\x6b\x1c\x41\xa3\x86\x13\xc6\x02\x58\xe7\x30\x23\xec\x16\xd5\xcc\xa6\x25\xa1\xb5\x3c\x15\x1c\x5d\x1c\x87\x6e\x32\x9b\xa3\x64\x61\x03\x42\x6a\x15\x50\x24\xa0\x29\x43\xd0\xcc\xa4\x15\xa4\x76\x45\xab\xcc\x6e\x17\x71\xfc\x9d\x4e\x04\x6d\x94\x80\x4f\xf6\x82\x53\xd8\xd9\xdc\xe9\xb2\xb0\x3b\x93\x16\x61\x33\x4c\x4f\x9e\x83\xa7\x5a\x87\x3b\x54\x3a\x51\xaa\x5b\xbb\xdd\x80\x44\x55\x86\xa6\x17\x68\x0a\xbb\x1c\x81\x47\x89\x73\x45\xab\xbd\x23\x29\x4b\xc9\xec\x77\xcf\xfd\xa8\xd4\x4d\x4b\xf6\x8b\x4a\x34\x19\x66\xbd\x12\xa8\x03\x2a\x0d\x80\x4f\xdd\x12\x75\xb7\x6b\xa3\x87\xe8\x03\x50\x77\xc3\x10\xaf\xdf\x5a\x2f\xe1\x0e\xd9\xb4\xdc\x60\x38\x77\xf1\x3d\x3d\xda\x64\x77\x97\xfc\x65\xbe\x5c\x72\xe1\x21\xc9\xad\x6b\xff\xae\x48\x5c\x5b\xfb\xbd\x8b\xfc\x59\xac\xc3\xe8\xa3\x11\x81\xf3\x66\x44\x2d\x0a\x5a\xec\xec\x81\xea\xbd\x45\x0c\x86\xae\xde\x06\x59\xad\x93\xa0\x6b\x19\x04\x52\x4e\xc0\x7d\xd3\xbf\x39\x26\xa7\x9d\xfd\xae\x3a\xf6\xf2\xc1\x6e\x1d\x7a\xe6\xe4\xaf\x44\x4b\x97\xaa\xe9\x5b\x1a\xf0\x47\xd7\x70\x1c\x77\x28\x31\xbb\x94\x89\x62\x37\x32\x51\x84\xd8\xb4\xcc\x8a\xe6\x24\x9b\xd5\x8a\x34\xfb\x5f\xce\xc6\xe6\x88\x54\x16\x83\xeb\x4d\xe0\xe3\xe4\x32\x6f\x98\x34\x94\x60\x4e\x57\x25\x64\xe5\x68\x51\x48\xc1\xcd\xef\xa4\x3f\x26\x84\x4a\xec\x0e\xd4\xf2\x0a\x7d\x42\xe2\x5f\x41\xa0\x46\x12\x38\xe3\x19\x9f\xee\xce\x60\xb3\x7d\xe6\xcb\x8a\x50\xed\x50\xda\x8f\xc1\xb3\xdd\x7c\x94\x97\xef\x80\x78\x3a\x67\xa5\x19\xdb\xc8\x04\xe0\x76\x05\xbf\x39\xf9\xa4\xc0\xb7\xdd\x21\xe8\x95\xb5\x87\xda\x20\x67\x62\x27\xc6\x0d\xd7\x0f\x1a\x7d\x4f\x5e\x2a\x12\x66\xb1\x1a\x6e\xfc\xe6\xe4\x4a\x01\x72\x27\xcd\xd8\x12\x0d\x93\x7a\x38\xee\x66\x40\xa9\x04\x7c\xa0\xec\x7c\xbc\xdf\x8f\x19\xcb\x2c\xd3\x2b\x91\xae\xff\xba\xe6\xe2\xf9\x66\xab\xef\x5c\x5d\x12\x28\x87\x53\xba\x59\xfe\x9a\xc3\x51\x29\xab\x03\xcd\x50\x01\x19\x8e\x67\x05\x18\x33\xab\xe7\x9b\xd7\x01\x36\x2c\x20\x9a\xd9\xf1\x20\x01\x7f\x2d\x77\x25\x07\x7b\xeb\x72\xbf\x0f\x4b\xfc\xd3\x10\xed\xca\x0a\x61\x10\xde\x3a\xa9\x95\x51\xc5\x30\x3b\xc9\xbe\x07\xb0\x2a\x5f\xa1\x68\x1b\xf5\xe1\xa9\xa0\x92\xec\xf7\xda\x3a\x9f\x17\xf0\x37\x8e\x21\x8d\x08\xd3\x74\xbd\x5f\x98\x7a\x72\x71\x75\xe2\xcb\x3f\xc1\xa3\xf6\x64\x9b\x29\x9d\x1b\xa6\xf9\x04\xdd\xfb\x00\x47\x73\x92\x89\x13\x7e\x9b\x97\x90\x45\x0a\x1e\x91\xde\x2d\xeb\x8f\x0f\x72\x94\x2d\x97\xef\xe5\x4b\x34\x43\x8f\xe3\x77\xb9\xf7\xa2\xae\x01\x02\xd1\xb9\x4f\x87\x83\xdc\xb0\xd8\x11\xc8\xae\x78\x41\xdf\x64\x6f\x2c\x08\x2f\xdd\x39\xe7\x9a\x05\x78\x8b\xc4\x55\x05\xd8\x4b\x3b\xdb\x91\x41\x1d\x1e\xa3\x88\x63\x59\xe3\xc3\x8a\x23\x70\x7b\x2f\x54\xc2\x09\x63\x45\x93\x0b\x8a\xe3\xa4\x84\x23\xa3\x56\xcc\xae\x6f\x1b\x02\x54\x1e\x4c\x87\x9a\xf6\xe8\x21\xb7\x59\xfb\x9a\xd6\xbe\xbc\x19\x9f\x9e\x93\x74\xa6\xe7\x54\x63\xac\x0a\x0e\x07\x43\x4a\xcd\x4c\xf1\x9b\x93\x5b\xb3\xb5\x76\xcc\xd6\x3e\xd5\xa3\xc5\x1a\xd0\x23\x4d\x18\x0e\xc0\x54\xb8\x30\xf0\x0f\xb1\x3b\x34\x9a\x6e\xc7\xcb\x8e\x63\x7b\xd0\x34\xb9\xff\x16\xd6\x0e\x81\xbe\x69\x3a\x26\x58\x84\xd9\x4e\x6f\x05\xa8\xee\xc4\xf1\x87\x3c\x91\x34\xba\x04\xe9\x20\xda\xbc\x3d\x17\x75\x08\x11\x72\x2f\x3d\x6b\x65\xf2\x57\x08\xaa\xc9\x73\xb3\xc7\x12\xee\xd1\x0a\x96\x52\xb8\xcb\xe0\x7e\xcf\x6b\x20\x06\x3e\x02\x1d\xd5\x9a\xf2\xec\x12\x4a\x48\xa3\x63\x89\x74\xd7\x2a\x2a\x2d\x57\x09\x13\x57\xc0\x7e\x40\xbf\xf3\xdd\xa7\x7e\x7d\xf7\xfc\x4d\x27\x05\x6d\x0c\x4f\xa5\x84\x69\x3a\x95\x95\xe5\x9b\x6c\xc3\xcd\xae\x06\x6c\x27\xf3\xc3\x5a\x4e\xde\xe1\x17\x17\x4b\xff\x7b\x51\x96\x81\xe3\x53\x2c\xf8\x74\x71\x66\xa7\xeb\x74\x31\x18\x10\x2e\x92\x82\x2e\xdc\xed\xa6\x27\x3d\x53\xfc\x15\x4f\x0a\x60\x74\xe9\xdf\xf3\xa4\x70\x4c\xee\x93\xe5\xd2\xb0\xb8\x05\x95\xde\xcb\x91\x84\x7b\xfc\x27\x90\xc1\xc2\xf1\xf2\xf0\x25\x75\x63\x0f\x3b\x27\x70\x42\x34\x54\xa6\xab\x47\x5e\x50\xa1\xe4\xa1\x0f\x40\x3e\x13\x73\xcb\x33\xc3\x19\x1b\x3c\xb7\xdc\xa8\x10\x31\x06\xd8\x3e\x53\x77\x19\x58\x4d\x01\xf8\xc6\x68\x51\xe4\xdb\x77\xb2\x6c\x1b\x44\x75\x42\xcf\xd8\xda\x42\x7f\xbb\xcf\xeb\x2a\x8c\x16\xc2\x32\x80\xae\x74\x96\x1f\x66\x2b\x29\x36\x13\xae\x6f\x66\x14\xe7\xbd\xcb\x3c\xa9\x85\xd4\xab\xf5\x7c\x4b\x93\x79\x17\x6e\xc0\xba\x34\xb0\x5d\xdc\x2c\x9f\x9f\x5a\x97\x54\x66\x05\x9a\x59\x83\x45\x69\x87\x0c\x76\x69\x55\x90\xe5\x73\xf2\xe1\x90\x4e\x08\x09\xdd\x3d\xdf\x2a\x27\x1c\x0a\xa6\xca\xcd\x14\x38\x3d\x76\xe2\x25\xc9\x44\x95\xed\x42\x55\xe0\x75\xe4\x81\x69\x6c\x3c\xd0\x2b\x57\x41\x65\xbc\xac\x82\xc6\xbc\x55\x0d\xef\xcf\x56\xdb\x3a\x28\x52\x11\x3e\x53\x73\x8b\x78\x0a\x9e\xf9\x2b\x16\xca\xc4\x78\x11\x55\xd0\xd8\x27\x55\x63\xf5\x68\x65\x68\x55\xd3\x05\x8d\x60\x2f\xb8\xf7\x88\x8f\xdc\x7f\x1c\x83\x53\xe3\x30\xa8\x76\x49\x52\x2e\x8b\x96\x8d\x0c\x2e\x20\x4c\x8e\x86\xc9\x71\xec\x3d\xae\x9f\x04\x46\x63\xb6\x8e\xc5\x9a\x4a\xf0\x69\x6b\x7e\x65\x6c\xcc\x80\xff\x40\x71\x08\x3a\xe7\x2f\x5b\x96\xd5\xb5\xf1\x57\x56\x75\x9f\x77\x5c\xfa\x38\xde\xf5\xec\x45\x4f\x05\xe8\xfa\x50\xc1\x7e\x9f\x64\xa3\x5c\x2c\x8a\x5d\x99\x5f\x83\xe2\xc9\x14\x23\xce\x98\x4e\xed\x2f\x4d\x0c\x81\x81\x35\x01\x2e\x63\x83\xeb\x68\xe6\xee\xa2\x7d\xb1\xdf\xf7\x5d\x25\x01\xdb\x40\x9c\xf6\xae\xab\x14\xb0\x87\x83\x2a\x41\x93\x65\x6a\xc2\xcf\xa1\x46\x2d\xcf\x35\x39\x4d\x14\x38\xa2\xae\xa6\xd8\x9e\x4a\x99\x75\xce\x4d\xad\x33\x3f\x93\x9e\x78\x53\xe1\x13\x75\x00\xd8\xd8\x8c\xd0\xdd\xff\x91\x11\xfb\x53\x8d\xff\x73\x83\xf5\x67\xc6\xea\xcf\x4f\xd0\x03\x03\xe6\x47\xca\x24\x1d\x6a\x5a\xf5\xa5\x1a\xc2\xa1\xae\x0f\xa2\x61\x77\x33\x42\x0b\x36\x31\x3c\x40\x60\xb6\x48\x17\x86\x05\xc7\x20\xa7\x08\x3f\x48\x8a\x69\x9e\xa2\x2f\xf1\xea\x0c\x5a\xb1\xf1\xe9\xea\x2c\x10\x43\xac\x02\xbc\xec\x64\xcd\xca\xd9\x6a\x0e\xee\xd8\x93\x2d\xbb\x30\x8c\xd5\xda\x0e\x08\x21\xd3\x22\x8e\x93\x35\x10\x1e\x48\xbd\xf5\x6d\x35\xbf\x06\x0b\x92\x42\x64\x7e\x00\xa5\x18\x53\x21\x56\xb6\xab\x55\x06\x8a\x2b\x74\x5b\x49\x25\x92\x35\xdb\xd9\x4a\x6d\xf9\x03\xb6\x70\xf2\xb8\x35\xca\x34\xb0\x31\x65\xd0\x98\xfd\x3e\xc1\x38\xb6\xa0\xa6\x5d\xe6\x46\x17\x5e\xdf\xd6\xd6\x8f\xe9\x09\xa6\x1a\x1c\x4d\x76\x28\x81\xc9\xfb\xac\x92\x92\x10\xba\x03\xee\xce\x04\xed\x4c\xd0\x8e\x20\xef\xb9\x64\x56\xd9\xa7\x5f\x60\x0f\x36\xf4\xae\x3e\x03\xc3\xc7\x26\xfa\xee\x7c\x1c\xc7\x65\xd0\xf7\xda\x40\x5b\x11\xe3\x6c\x35\xc7\xbe\xa2\x5f\xf1\xd6\xda\x80\x04\xd8\x4f\x7c\x8a\x40\x76\xae\x57\x95\x7a\x07\xc5\x2d\x31\xd7\x86\xf4\xec\xaf\x9d\x67\x08\x96\x15\xb1\xfd\xfc\xd0\x99\x39\x18\xe8\xf0\xcc\xb4\x3e\x2d\x84\x15\x30\x09\xbb\x5f\x04\x34\x17\x2e\x56\xee\x08\x6b\xdc\xaf\x40\x4f\x03\xcf\x34\x0d\x67\xda\xc1\x9f\xe2\x58\xd3\x94\x23\xcc\xb9\x6f\xd6\x6b\x15\x22\x76\x77\x48\xda\x98\x9e\xc1\xc5\xab\xfc\x14\x0d\xf8\x28\x5f\x36\xe0\x70\x80\x5c\x57\xe2\xe8\x31\x78\x0a\x01\x43\xa0\x60\x52\xe0\x7c\xb2\xde\x37\xbe\xcf\x13\x61\xce\x23\x7f\x20\xe5\x07\xbc\x0c\x2b\x66\xcf\xa3\x7a\x05\x40\x60\x82\xe3\xa1\xc5\x14\xb4\x29\x94\x40\x0a\xa5\x66\xf9\xdc\x4a\xa8\x32\xc2\x53\x97\xaf\x64\xe3\xd3\xf2\x2c\xab\xf2\x95\xd5\xb4\xec\x58\x36\x2b\xe7\xb4\x60\xe3\xd3\xc2\x9b\x59\x9c\x0e\x06\x85\xb9\x7a\xcb\x59\x31\xf7\xe7\xf4\xce\xed\x00\xa7\x0e\x77\xc2\x7b\xd2\x4f\x3f\x7a\xef\x37\x47\xf1\x2c\x9f\xb3\x2c\x70\x83\xe9\x07\xfe\xbd\xaa\x5e\x21\x79\xf3\x48\x0c\xcf\xfa\xb6\x1f\x68\x74\x00\x8d\xf3\x5f\x89\x73\x12\x4e\x7a\xf5\x0b\x0f\xcc\x74\x55\xe3\xd3\xe0\xb8\xff\xd3\xe5\xd7\xee\x3f\x8d\xf2\x75\x50\xf8\x4f\x75\xe6\xb3\x4e\x91\x87\x93\x74\x5c\x25\x7d\x77\x24\x29\x9e\x16\xb5\xa4\x6f\x54\xdd\x27\x78\x28\x76\x1a\xea\xda\x27\x38\xd9\xed\x33\xd1\x74\xe8\xca\xed\x9b\x0a\x05\x7e\x02\x7f\x4a\xc3\x41\xa0\xa9\x10\x45\xcf\xca\x64\xbf\x87\x1e\x0c\x7f\x52\x16\x2e\xc5\x39\xa3\x19\x4a\xc4\xd3\xc1\x2c\x5a\xd2\xdc\x50\xe5\xfd\x1e\x7a\x31\x7c\x07\xc9\x9d\x86\x9a\xb9\xdc\xe7\xcb\xa1\xd9\x26\x55\x1f\xfe\xa9\xea\x56\xf4\xa0\xa7\xd4\x98\x6f\xe5\xcf\x85\x9c\x3a\x7f\xac\xc1\xfb\x43\x92\x23\xb8\x93\xdf\xf4\xd5\x7d\xcb\x79\xfd\x9b\x62\x3f\x52\x68\x9d\x3d\x43\xdf\x28\x73\xdc\xbb\x85\x7a\x36\x06\x17\x86\xcc\x07\x74\x70\x84\xdf\x87\x53\x03\x0d\xef\x8f\x03\xbe\xff\x59\x3b\x7a\x12\x44\xbf\x52\x2d\x87\x7b\x0c\x79\x3f\x42\x33\xd3\x6f\xd9\xec\x77\x46\x1e\xda\x95\xd5\x8e\x04\xfd\xce\x56\xef\x31\x45\xe1\xf7\x22\x4e\xef\x98\xd0\x85\x99\xac\xc2\x3e\x98\xe1\xd4\xfa\xfd\x6a\x66\x38\x27\x74\x85\x49\xb4\xa4\x0a\x27\xb3\x4a\xf0\xce\x24\x40\xcf\x8b\x8b\x73\x36\x8e\xe3\xd5\x19\x1b\xef\xf7\x8b\x33\xf8\x7d\xce\x60\x1c\xf1\xab\x6a\x54\x7d\x15\xc7\x71\xde\xd8\x02\xae\x36\x41\xce\xd9\x38\x0d\xbe\xc6\x64\xbf\xc7\x6a\xfe\xc5\xc2\xa0\x77\x8a\x9c\xb9\xe2\xdc\xf7\xd8\xfb\x7e\xec\x8f\xc3\x1b\xcd\x8b\xfa\x01\x74\xaa\x19\xcc\xf6\x29\xe1\x6e\x63\x0c\x2b\xf4\x86\x4a\xc3\xd5\xe7\xff\xa3\xb6\x17\xdd\xbc\x2a\xf6\x02\x90\x7e\xdd\x5a\x62\x4c\x4d\x75\x0a\x58\x0d\x55\xd6\x97\x01\xe5\x39\xaf\x5d\x39\x3d\x52\x53\x88\x31\xe1\xce\x00\x90\x80\xa8\x20\xd1\x17\x41\x27\x5c\x33\xa0\xfe\xc1\xa4\x6a\xc1\xb7\xb5\xc6\xdf\xc6\xb1\x6e\x2e\x45\xd1\x62\x7e\x6b\x47\x4b\xbe\x4a\x12\x05\x27\x4b\x7b\x17\x06\x9c\x1b\x12\x15\x3f\xfe\x78\x76\xb9\x0c\x95\xe0\x30\x8e\xc7\x2e\x6d\x1c\xab\xd6\xb4\xa3\xa8\xf1\x67\x07\x8f\x15\x4c\xa7\xef\xd0\xcf\x2a\x60\xdc\xb1\x6e\x78\x1a\xb6\x17\x4b\x51\xdb\x12\x30\x40\x6e\x6c\x20\x27\xe2\x26\xd0\x0b\x65\x11\x14\x6a\x57\x38\xe1\xb9\x3b\xc3\x42\x8a\x63\xab\xd2\xd4\xd7\xe0\x7f\xab\x8e\x37\xe9\x59\x6d\xbc\x43\xda\x66\x06\xd6\x90\xe6\x20\xfa\x08\xa9\xeb\xe7\x5d\x03\x99\xd7\x98\x23\x3b\x14\x39\x5c\x45\xcc\xff\x8e\x8b\x32\x7b\x36\xef\x1c\x68\x40\xc5\xea\xea\x21\xf1\x53\x90\x07\x53\xa0\x64\xf2\x49\x11\xfa\xe9\xdf\xd6\x15\x38\xfa\x12\xdb\xab\x34\xa7\xc6\xa7\xd6\x9b\x71\x43\xe2\x31\x18\x70\x12\x86\x83\x6f\x43\x14\xef\xf5\x1a\x0a\x03\xe4\x70\xa8\x37\xb2\xe3\x29\xb5\xa6\xd5\x64\xe5\x31\xb0\x60\xc0\xb7\x3e\xec\xc9\xdf\x15\xbb\x18\xbd\x02\x94\x60\x33\xe6\x5d\xd7\xc6\x60\xe7\x9c\xe4\xe2\x44\x10\xd1\xb4\x48\x00\x4f\xc0\xa6\x96\x99\x9a\x33\xe0\xfe\x7a\x4d\x5d\x0c\x21\x97\x9c\xe9\x40\x9a\xf5\xab\x5f\xe0\x9f\xf3\x44\x93\xb3\xc4\xea\x52\x80\x04\xb2\xee\x81\x09\xb0\x4b\x6b\x50\xcf\xe0\xa5\x8d\x5b\xae\x3d\x20\x44\xbf\x28\xfb\xd6\xe5\x14\x73\xed\x9b\xa2\x67\x46\xec\x9b\xa2\x63\xcb\xec\x03\x29\x4c\xa7\x4b\x84\x9b\xfa\x8d\x4c\x6a\x6a\xbb\x94\x43\x17\xbc\x36\x47\xe4\xfc\xc2\xa6\x27\x8a\x17\x80\x64\x7d\x1a\xf5\xf8\x28\x80\xc7\x36\xab\x75\xc0\x22\xf4\xbb\x33\x04\xd0\x93\x93\x61\x34\xd0\x2d\x28\xee\x10\x36\x26\xda\xde\x9e\x82\xd1\xb3\xf7\x06\x63\x8b\x41\x67\x4f\x27\x61\xfe\xba\x7f\xd7\x5a\xfe\x77\xe6\x96\xea\x85\xec\x3c\x2b\x77\x8a\xd3\xa7\x32\x01\xb0\x15\x3a\xc3\xce\xcc\xdd\x00\x06\xd7\x08\xfb\xd6\x8a\x09\x42\x4d\xd5\xd0\x9b\xa8\xd9\x24\xbf\x2b\x42\x7f\x7f\x70\x93\x74\x29\xcd\xf8\xc7\x45\xe7\xf8\xc6\x3d\x55\xa3\xdf\x35\xf6\x36\x4f\x44\xf0\x04\xaf\xe2\x58\xd7\xbd\x3c\xe4\x21\x2b\x9b\x13\x6d\xf8\x6f\x28\xc1\x90\xfc\x9a\xb8\xaf\xa7\xbd\xb4\x3b\x11\xae\x3a\x56\xe1\xd0\x4a\x78\x45\x86\x27\xff\x8b\x3c\x09\xfc\x2c\x8d\xc1\x77\x24\x78\xe0\x92\xa8\xfb\xd0\x34\x8f\x87\xb5\x2b\xe8\x50\x12\x0a\x6a\x33\xaa\xf2\xd4\x73\x30\xfb\xf2\xf7\x3f\xff\x78\xbf\xb6\x5e\x79\x6b\xe3\x14\x8c\x49\x2f\x48\x55\xbd\x80\x2b\xdf\xf6\x21\xef\x99\x85\x06\x3d\x70\xcd\x1e\x28\xd0\xc8\xf8\x4e\x27\xba\xe6\xa9\xa0\xdb\x35\xcf\xaf\x2a\x41\x33\x96\x03\xb1\x34\xe1\x83\xa3\x09\x2d\x6a\x80\x12\x51\x7e\xab\x19\xa7\x4f\xb1\x05\xd4\xa9\x12\xba\x36\x4e\xad\xaf\xac\x74\x12\xec\xf6\xef\x14\x1a\xd2\x87\x62\x5a\xb8\x21\x55\x7b\xf7\x87\xa6\x68\xf5\x34\x00\x3b\x44\x45\xbc\x47\xc9\x34\xfd\xc7\xfe\x63\x39\x20\x80\x92\x90\x5c\x66\x8b\xcf\x57\x4a\xee\xc4\x72\x48\xa6\xc9\xc7\x8b\x01\x79\xe4\x6e\x97\x88\x7f\xc8\x19\xf7\x56\x46\x02\x15\xf7\xc8\xc0\x05\xd9\x80\x81\x08\x74\xf5\x1c\xc8\xeb\x6c\x32\x9f\x46\xd6\xe9\xb5\xf5\xfc\x80\xbf\xad\x5a\x8a\x9e\xa9\xf9\x54\x23\xb9\x7b\x3c\x4f\x03\x37\x1b\x11\xb4\xb1\x24\xd1\xc0\xc4\x0c\xcc\xe7\x57\xe6\x93\x58\xc5\x58\x43\x1d\xf7\x7b\xf8\x3b\x60\xd1\x09\x26\xab\x36\x60\x35\x1e\x5f\x05\xe3\x31\xba\x2c\x32\xf1\xd9\x4c\x49\x45\xca\x7c\x90\xbd\xd0\x04\x88\x90\x6e\xdc\x02\x5c\xc9\x24\x70\x80\x79\x82\x50\x90\x55\x09\xd3\x66\x40\x62\x61\x23\x49\x6a\xf5\xa6\xab\x66\xfd\x18\x38\xd1\xa9\x6f\xcc\xc9\x18\x25\xf6\x0a\x40\x6b\xc7\xf3\x46\xf5\x82\x40\x25\x6e\xf3\xf1\x11\x40\xc3\xfa\x87\x66\x8d\x3a\xc7\x56\x3b\xd5\x3f\xb8\xb4\x9e\x4a\x4d\x69\x27\xd1\x00\xa1\x8c\x07\xd1\xc9\x2a\xcb\x0b\xbe\x3c\xd1\xf2\x24\x5b\x5e\x67\x62\xc1\x4f\x4a\x50\x8c\x1f\x45\xc1\xda\xfa\x2d\x6c\xb4\x0b\xcc\x03\xac\xc2\x12\x21\xe2\xac\xbe\x23\x17\xcb\x74\x05\x8a\x96\xa5\xf5\xea\x33\xb2\x9a\x93\x09\xa1\x66\x53\xa7\x12\x6d\x3f\x2c\x76\x26\x9f\x96\xa0\xe9\x26\x97\x9c\x2e\x48\xba\x38\xc0\x3b\x91\xa4\x19\x1e\x31\xb4\x64\x18\xd9\xd3\xec\x15\x4f\x32\xea\x9c\x93\xd2\xc2\xf0\xc3\x99\x7d\x07\x33\xf7\x9a\x52\x57\x0f\xca\xc2\xdc\x62\x4c\xcf\xef\x94\xb9\x4d\xf0\x5b\x4d\x5b\xa0\x35\x28\xad\x52\x20\x47\x9b\xcd\x51\x0e\xba\x42\x65\xf6\xd1\x62\x4d\xe2\xb8\xbf\x1a\x71\x59\x24\xe4\x94\xd8\xce\x31\xec\x98\x64\x3f\xaa\xa4\xa4\x2b\xba\x00\x60\x85\x1d\x8a\x36\x72\xd0\x65\xf0\xda\xae\xd3\x5d\x9a\x27\xc1\x30\xfe\x3d\xb8\x00\x82\x88\xd4\x09\x6c\x47\x21\x04\xbb\xdd\x22\x28\xef\xab\x5a\x1c\x26\xa9\xfa\x3f\xa6\x0b\xa4\x06\xbe\xab\x5d\xbd\xa4\xeb\xa0\xa0\x10\xd3\x3d\x8e\x67\x26\x37\x02\x2c\x47\xe8\xd4\xf5\x07\x95\x7c\x65\x6e\xc6\x8a\x50\x49\x4e\xab\x01\x30\x3b\x69\x85\x3a\xe6\xbe\xac\x36\xbe\xfa\x34\x29\x59\x7f\x42\xb3\x38\xd6\x39\xf2\xe7\x14\x32\x11\xfc\xe3\xfd\xa4\xd2\x9d\xf5\x0a\xb2\x63\x3f\xa8\xe4\x47\x53\xe1\x8a\x2a\xba\x36\x95\xd2\x35\x8e\xcc\x96\xad\x0d\x6d\x31\x2b\xb5\xb7\x85\x39\x8a\x36\xc3\x68\x90\xec\xa6\xdb\x81\xd9\xfa\xbb\x74\x8b\x3c\x78\xbf\xdc\xef\x17\x7d\xb6\xb3\x80\xaf\xc5\x99\x9d\xac\x53\x92\x27\x05\xf3\x8e\x02\xdd\xfa\x2c\x06\xdf\xf0\xbf\x12\xba\x20\xbd\x05\xdb\x1d\x6a\x13\x7b\xf0\x05\x6c\x65\x79\x5a\x77\x0a\x0f\x25\x98\xc9\xc7\xfc\xbd\x3c\x59\x9a\xe9\x2f\xd8\x32\xd8\xdf\x7f\x53\x4d\xbb\xc6\x99\xf3\x2c\x64\x96\xf0\x77\x5c\xcc\xa9\x64\xf7\x87\x1e\x2e\x06\xb7\x2e\x9d\x13\x2a\x2a\x9a\x6e\x9e\xec\x1b\x95\xe1\x38\xa9\x0c\xad\x07\xd1\x5b\x2e\x0f\x9c\x8e\x16\xd9\x5d\xc0\x0a\xfb\xe5\xd5\x4c\x32\xcb\xe6\x74\xc7\x26\x66\xf5\xd4\x5a\x81\xc0\xef\x6d\xf0\xfb\x4a\x14\xb6\x3b\x2d\xce\x1c\x86\xae\x62\xf9\x6c\x37\xef\xa9\x73\xb8\x64\x58\xd6\x61\x47\x27\x94\xd3\x7c\xb6\x1b\x4c\xe6\x66\x01\xed\x06\xec\x31\x0d\x66\xc0\xdc\x57\x0f\x20\x60\xcb\x57\x49\x39\x92\xdb\xec\xf7\x1d\x27\x3e\xbb\xa0\xbb\xa1\xa0\x1c\xdc\x1d\xd9\xd6\x1a\x8e\x8d\x98\xc5\x32\x78\x8c\x82\x72\xbc\xe4\x9e\xed\x4e\xc5\x80\x3d\x76\x62\x94\x7c\x26\x06\x93\x79\x0f\xff\xb0\x44\x4e\xa5\x59\x20\x69\x14\x91\x41\xa3\xac\xc3\xa1\x7a\x90\xbe\x07\xa3\xa3\x32\xcd\x29\x3c\x97\xf3\x32\x95\x23\x7b\x68\xc1\xb3\xb9\x3b\xb5\xa6\xd6\xf9\x65\x35\xcb\x3c\xaf\xf9\xc2\x40\xeb\xa5\x72\xbf\x77\xbf\x66\xe3\x79\x9f\x35\xe6\xdd\x0d\x1b\xd0\xa8\xb7\x39\xf8\x55\xcc\x99\x5d\x2f\xb5\x6b\xe2\xc3\x1b\xac\x54\x49\xb0\x5e\x14\x49\x01\x36\x0b\xaa\x02\x43\x76\xb0\x1c\xc3\x66\xb0\xdc\xfe\xa0\xf9\xc8\x76\x71\x6a\xe3\x9e\xe2\x27\xf3\x11\x69\x3d\x02\x4c\xfd\x6a\x29\xd1\xa1\x85\x60\xcc\x79\x16\x53\x52\xe8\x1c\x6d\x04\xc3\xef\xc1\xc0\x43\xd4\xd8\xda\xab\x71\xb3\x34\x21\xd8\x1d\x41\x57\xe4\x43\x24\x0c\x96\xbd\xd5\x60\x60\x12\x48\x89\xda\xef\xc7\xd4\x12\xad\xaf\xc0\xbd\x24\x39\xed\x4b\x47\xae\x7e\x34\x21\xd2\x9c\x02\xb5\x5c\x86\xf7\xfe\xa0\x08\xfd\x10\xf2\x98\xe0\x67\x46\x76\x98\xd8\xbd\xcd\xad\x82\x1d\x0a\x60\x72\x70\xb9\x90\xd7\xf0\x8a\xf2\xbc\x82\xd7\x46\x3f\x9d\xe5\xd7\x6d\xd0\xfe\xe0\xc9\x58\xd7\x28\xf0\x54\xe5\xa9\xc8\x3d\x67\x31\xe3\x73\xc3\x6f\xcf\xf8\x9c\x79\xd0\xa5\xe4\xd1\xc7\x8b\xc1\xa3\x2b\xd8\x15\x5f\xc5\x11\x09\x4e\x14\x99\x87\x72\x9b\x4a\x09\xcc\xbf\xc7\xd0\x72\x1a\x6d\xb3\xe5\x32\x17\x57\x43\x70\x77\x9a\x9e\x8c\x26\xdb\xdb\x08\x75\x6f\xa8\x62\xf7\x5b\xc5\x53\x93\x71\xab\x78\x44\x67\xa2\xae\x2f\x86\x50\x8e\xd4\xfa\xf2\x4a\x05\x5d\xc8\x22\x1d\xd3\xad\x2c\xd3\x31\x5d\x6c\x52\x4e\xc1\xac\x1d\x8c\x9c\xca\x34\x91\xfb\x7d\x09\x3a\x30\x57\x5c\x23\x44\x7b\xc3\x1f\x15\x39\xf4\xb4\xbb\x4f\x85\xe6\xfa\xc8\x01\xb1\x04\xdc\x6a\xe8\x29\xfe\xb1\xbb\x21\x1d\x93\x4a\x95\x21\xa3\x3b\x96\xdb\xf8\x59\x3e\x9c\xcc\x53\x6d\x25\x5b\xb0\x24\xc6\x54\xa1\x0a\xd7\x67\x2e\x58\x96\xd3\x5f\x42\x8f\x53\xb6\x5e\x73\xd9\xce\xd8\xeb\x3c\xd9\x11\xf4\x1a\xe0\x33\xec\xf2\xe0\x8b\x66\x84\x50\x35\xda\x64\x5b\x36\x9b\xd3\x45\x9e\xec\xa8\xa2\xb0\xef\x77\x54\xf7\x03\x2f\x37\xfc\x56\x73\x25\xb2\xe2\x35\x16\xbf\x8c\xe3\xb7\x50\x36\xa1\xbb\xe6\x8e\xaa\x07\x38\x5a\x03\x8d\xb0\xbf\xd9\x0b\x79\x24\x15\x55\x15\x6d\x8a\xa2\x56\xe9\x15\xb5\x82\xe2\xfc\x57\x47\x81\x3e\x8e\x06\xe9\xb0\x50\x42\x41\xf0\xb6\xc9\xb6\x5e\x79\x15\xbf\xe0\x10\x1a\x53\x33\xbe\x76\x31\x8c\xcc\xe5\x59\x2c\xd1\x7e\xf4\xd7\xae\x71\xc6\xd2\xf2\x69\xe2\xa7\x1c\x46\x13\x0a\xa4\x55\x18\xf8\x43\x65\xf7\x07\x92\x26\xf5\x94\x56\xfb\x35\x08\x08\x1e\x21\xa1\x14\x42\x93\x46\x39\xf5\x3c\x18\x14\xe4\xba\x3f\x20\xc3\x50\x3a\xd9\x78\xd5\x1d\x30\xe5\x32\x9d\x39\x4d\x1e\x7d\xbc\x5c\x6c\x86\x3a\xbb\xfc\x78\x69\x37\x72\x51\x29\x54\x91\xfd\xbe\x18\xfd\xbe\xe3\xea\x0e\x31\x31\xa4\x8a\xe3\x46\x40\x12\x8d\x30\x7f\x64\x57\x98\xab\xc3\x17\xc2\x22\x4c\x00\x1e\xcf\x86\xeb\x6c\xf1\x39\xf2\x77\x98\x1f\xc1\x52\x40\x71\xb1\x74\x5e\x7d\x3c\x4b\x6b\x68\x16\x27\xf8\xa7\x2a\xac\x3d\xe1\x8d\x04\xed\x79\xa6\xaa\xa2\x21\x59\x1e\x70\xa5\x25\xdd\xb9\x17\x30\x1c\x20\x0b\xbb\x86\x3b\x1c\x36\x9e\xa5\x49\x27\xf7\x7f\xa1\x87\x47\x57\xb4\xcc\x49\xaa\xe9\x02\x54\x1d\x3b\x5c\x28\xd2\x15\xeb\x4f\xcc\x05\x65\xe1\xac\x2f\xc9\xfd\x55\x65\xd2\xbd\x50\x3c\xd3\xfc\x99\xfd\x7c\xa1\xb2\x2b\xb4\x3d\xf6\x94\x61\x8d\xae\x29\x17\x30\x3f\xe8\x22\x67\xdd\x43\xe6\x70\x01\xd8\x8d\x89\x26\x74\xc9\xb6\xd3\x2d\x5e\x47\x87\xeb\xd4\xbf\x75\xc3\xa3\x97\x7d\x06\xd9\x34\xeb\x7c\xcf\x6f\x41\x32\x93\x14\xf6\x3e\xbb\xa6\xeb\xc1\x92\x90\x9e\x8c\xe3\xec\xec\xbf\xa6\x57\xb5\x05\x1e\xe8\xd7\x6e\xe6\x84\xa4\xf5\x58\xeb\x02\xdb\x6e\x13\x6e\x6d\xcc\xb6\xb2\x1c\x2c\x29\xc4\x2d\x64\x31\x60\x4b\x1b\xc6\x96\xc0\xb3\x6e\x9d\x33\xcd\x55\xb2\x1e\xb0\xe5\x60\x42\xa3\x8f\x3a\x62\x6c\x3b\x1b\xcf\xb1\xcd\x77\x38\xa8\x4d\xa0\xcd\x6b\x76\x37\x84\x22\xff\xe3\xee\x34\xd9\xb0\x63\x0d\xdd\xca\xe4\x9a\xd0\xc8\xaf\x44\xd2\x50\xe9\x55\x12\xdc\xc8\x6d\x15\x2f\x9d\xcd\x61\x44\xe8\xa6\xad\xf8\xab\x11\xec\xe6\x23\xa2\x09\x42\x57\xae\x2b\x57\x36\x1f\x95\x6d\xf3\x7e\x1f\x7d\x14\xbe\xfd\x0f\x34\xac\xca\x32\x8d\xfe\xd7\xff\xfc\xbf\xa2\x34\xfa\x5f\xff\xf3\xff\xed\xf0\x71\xd9\x6a\xb1\x6f\x0b\x54\xe1\xda\x32\x81\xb6\x98\x0a\x6b\xa3\xd5\xed\x6c\x33\x81\xac\x5f\x28\xf8\xdf\x5d\x01\xae\x39\xdd\x4b\x61\x82\x4b\x01\x6c\x9e\x0f\xd8\x66\x9b\xc5\xa3\x7a\x9b\x49\x6f\x6d\x8e\x6a\xa1\xe2\x03\x73\x47\xd1\xfe\x52\x75\xe5\x1a\x1f\xc7\xc9\x0a\x94\x46\xed\x92\x73\x29\xe0\xc5\x62\xbf\x57\xfb\x7d\xbe\xdf\xaf\xf6\xfb\x1d\xae\xb4\x4b\x26\x0c\x61\x00\x59\xd8\xe5\x80\x29\x44\x0f\xbc\x1c\x30\xab\xe1\xfe\x29\x54\x30\xbf\x9a\xd3\x4b\xba\xab\x4c\xeb\xe3\x38\xf9\x64\xdd\x90\x96\x38\x0c\xed\x03\xe2\x13\x39\x74\x47\x5c\x91\x80\xad\x2e\xf3\xba\x12\x48\x74\x12\xd1\xba\x76\xe0\xf0\x31\x3e\xc1\x0f\x98\xf8\x8f\xc7\x53\xe0\xf1\xff\xbf\xff\x3b\xf2\x56\xd0\x20\x12\xaa\xca\xdb\xe5\x35\x41\xbe\xe7\xef\xfc\x0d\xdc\xd2\x3b\x96\x4f\xf3\x41\x74\xb2\xd8\x0c\x41\xb8\x37\xbc\x94\x6a\xc9\x55\x94\x46\xcd\x10\x4f\x96\x0a\x26\x60\xfc\x17\xac\x18\xf8\xb7\xe8\xd3\xaa\xed\xa8\x00\xe3\x65\xad\x2b\xc7\xbf\xac\x99\x9e\xad\xe0\xbd\x76\x3d\xd2\xf2\xbc\x88\xe3\xb5\x55\xc7\x2a\x90\x1c\x1c\x5c\x14\x5b\x78\x59\x55\xa3\xbd\x3d\x08\xf0\x82\x39\x93\x7a\x58\x10\x48\x80\x2c\x1f\xdd\x11\x8a\xda\x4f\x54\x31\x97\xd0\x25\x2b\x98\xf9\x15\xbe\x7c\x16\x2d\xa6\xbc\xaf\xe2\x58\x84\x76\x1d\x39\x3e\xca\x77\x2d\x3d\x9a\x13\xda\x87\x4b\xc0\x62\xd3\xf0\x6f\x26\x38\x5f\x96\x4f\x71\xd2\xfd\x6e\x8b\xe3\x24\xdf\xef\x93\x9c\x75\xaf\x87\xc6\xe2\x77\x60\x14\xb8\xf6\x08\x40\xdb\xb6\xf6\x2e\xbe\xf6\x44\x54\x8c\xf2\x25\xb1\xc0\x97\xed\xd6\x94\x5c\xff\x2c\x9c\x3b\xda\x24\x3f\xb6\x52\x73\x52\x6d\x9a\x6a\x8c\x16\x79\xdd\xa5\x6b\xfd\x45\x30\xb7\x4e\x93\xa9\x64\xe3\xba\xbe\x02\xcc\x18\x2d\xe8\x82\xae\xe8\x9a\x6e\x3d\xae\x13\x5d\xb2\x31\xdd\xb0\xe4\x2d\x9b\xd0\x28\x22\xf4\x0e\x8f\xb9\x7c\x95\xdc\x31\xb6\x24\xf7\x3b\x56\xb0\x05\x5b\xb1\x92\x45\x11\x45\x07\xaa\xf4\x8e\x4d\x1e\x55\xaf\x60\xd7\xf4\xca\x30\xa6\x97\x6c\x7c\x7a\x19\xaa\x43\x5c\x62\x13\x3f\x31\x35\xbb\x9c\xd3\x1b\xf6\xc9\x29\x22\x86\xba\x84\x37\x56\x97\xf0\xff\x27\xef\xdd\xd6\xdb\xc6\xb1\x46\xc1\x7b\x3f\x85\xc4\xe9\x52\x13\x25\x48\x96\x6c\x27\x8e\x69\x23\xda\xa9\x24\xd5\x95\xea\x54\x92\xae\xa4\xfa\x24\xab\xd3\x14\x09\x59\x48\x28\x42\x4d\x42\x76\x5c\x16\xe7\xdb\xf7\xf3\x12\xf3\x04\xf3\x10\xfb\x29\xe6\x7a\x9e\x64\x3e\x2c\x1c\x49\x51\x4e\xaa\xbb\xfa\xdf\x33\xbd\x75\x41\x91\x38\x2e\x9c\x16\x16\x16\xd6\xe1\xbd\xbe\x1d\x4c\x7b\xbd\x1b\x6f\xbc\x27\x57\x6a\xa0\x6f\x50\xf4\x5e\x4f\xcf\xd4\x5e\x1e\xbe\x87\xcb\x43\xf9\x7c\x9c\x6e\xb7\x37\xfe\x15\xe4\x7b\xb8\xf2\x4c\xbd\x72\xd1\x44\x5f\x45\xbc\x87\xfb\xc7\xf7\x70\xe5\x98\xf6\x7a\xb7\x8f\x55\x40\x78\x0b\x31\x38\x23\xb2\x17\x6e\x6a\x44\xcd\x46\x31\x78\xbd\x40\x48\x51\x2a\xce\x58\x58\x4e\xca\x7e\x70\xae\x0e\xf9\x10\x2c\x63\x9d\x84\x7b\xad\x71\x61\x62\xca\x72\x09\x64\x72\x23\x02\x6f\x40\xbf\xed\xf5\xc2\xeb\xed\x36\xbc\xf6\x68\x46\x97\x0a\xbf\x07\x71\xda\x1b\x85\xec\x7a\xbd\xee\x02\xd0\xec\x8d\x71\x9e\x5c\xeb\x8b\xb0\xbb\x04\x11\x13\x23\x0b\x88\x6f\xb4\x88\xc9\x92\xbc\x47\xa6\x5f\x1f\xeb\xae\xd0\x9a\x92\xb2\x33\xe0\x36\x56\x62\x81\x6b\x98\x44\x6a\x7c\xaf\xcd\xf8\xce\xfb\xe4\x08\x5d\x4f\xe7\xfd\xf1\x4c\x41\x9b\xa9\x86\x5d\x4f\xe7\x33\xc5\xbb\x5f\x6e\xb7\x4b\xdb\xfb\xae\x84\x2b\x7f\x86\x64\xa0\x32\x81\xaf\x4c\xa6\x25\x48\x34\x2a\x79\xd1\x11\x82\x09\xc8\x16\x21\xa4\x0a\x8d\x80\xa3\xe0\x93\x75\x7f\x0c\xb2\x93\x68\x90\x5a\x11\xc7\xba\x00\x24\x76\xa9\x8d\xd6\xd5\xd2\xcc\x89\x70\x49\xba\x63\x54\xc9\xa6\xa5\x8f\x89\xa1\x7e\xcc\x74\x7e\xee\x98\x44\x6b\x7c\x8b\xf4\x62\xd0\xfa\x72\x9f\x48\xda\x5f\x79\x82\x4c\x5d\xcd\x20\x7c\x4b\x3e\x3d\x7e\x3e\x59\x59\x54\xf8\x7c\x90\xa2\x68\x75\x20\xec\x21\x2e\x14\xf8\x2d\x8e\x27\x71\x7f\x13\x6d\x70\x82\xd3\xfe\x5b\xa3\xf2\x4b\x6e\x27\x59\x14\x04\x78\x81\x4b\xe8\xed\x4f\x8f\xc9\x73\x74\xb7\x22\xa6\x30\x59\x14\x4e\xc9\xf3\x03\x85\x95\x53\xf2\x09\x27\x24\x08\xaa\x95\x35\xbc\xc6\x25\x8e\x9d\xbe\xee\xf7\x67\x08\xc7\x84\xb1\x50\x7d\x60\xe1\x51\x21\x48\x6d\xf4\x1d\xd3\xca\xd7\x64\x7c\xfe\xda\x49\x4e\xbc\x96\xa3\x59\x83\xb6\x51\xf8\x0c\x61\x5d\xf0\xb8\x51\xb0\xc7\x04\x58\xd4\x77\xb9\x11\x71\x92\xe1\x20\x48\xa1\x65\xc3\x7b\xbd\x20\x20\x9e\xfc\xad\x9c\xa2\x12\x4d\x6e\xb7\x35\xba\xa9\xd5\x47\xb6\x57\xdb\x92\xdd\x7f\x17\xd0\xc9\x27\xf9\x94\xce\x1a\x72\x94\x1c\x6e\xfc\x18\xba\x0b\x77\xcd\xbf\x29\xdc\x49\x04\xa6\x1e\x17\x0b\x70\xb8\xc7\xd4\xd2\xee\x54\x35\x47\x49\xc7\x02\x8f\x4b\xf3\xa5\xf4\x8d\x35\xec\xd3\x10\x0d\x6f\x3a\x16\xee\xca\x30\x48\xf8\xe5\xda\x1d\x1e\x29\x26\x32\x30\x1a\x1f\x30\x77\xd3\xad\x35\xa5\x18\xaa\x90\x02\x18\x17\xa0\xd5\x42\xc1\x81\x41\x7e\xa5\x0e\x63\x5e\x6f\xc4\x4d\x16\x29\xc5\x9c\x4c\x67\x60\xd9\x5b\x12\x2a\xdc\x89\xcc\xfe\xa5\x08\xb3\x69\x3e\xc3\x2c\xcc\x11\x2e\xdc\x35\x81\xd2\x8a\x29\xf5\xa0\x81\xf6\x18\x20\x44\xcd\x95\x4d\x94\xcc\x4f\xa9\xef\x38\x16\xea\x73\xa3\x3f\x97\x72\x40\x33\x24\x77\x96\x30\xf3\x6c\x9e\xa7\x44\xa5\x18\xe8\x6b\x50\xa7\xc3\x60\xb4\xf2\xc2\x11\x8e\xc3\x11\xce\xac\x29\x0c\x6c\x4c\x42\xd9\x82\x64\x77\xb3\x9f\xe9\xc0\xa6\xb1\x0a\x46\x7a\xca\x99\xa3\x95\x5f\xd0\x60\x8c\x0e\x78\xb8\xc0\x0b\x05\xfe\x1a\xe1\x54\x19\x78\x87\xa2\xf5\x4d\x75\x2a\x0f\x1a\x86\xc3\x60\x21\xd2\x91\x2b\x64\x4f\x17\x09\x21\x4a\xf0\x7b\x4c\x88\x85\x82\x87\x09\x4e\x14\xbf\xd4\x2c\xfc\x72\x98\x2c\x51\x7f\xd9\xaf\x05\x6f\x64\x20\x5e\x2b\xa8\x43\x09\xe5\xd8\x87\x12\xd5\x86\xa6\x3d\xaf\x1c\x27\xbc\xb7\xbe\x6c\x3a\x92\xc3\x39\x42\xca\xca\xba\xd7\x06\x20\xf6\x6d\x2b\xbe\x08\x78\x59\x58\x7f\xb1\x0b\x83\x29\xbf\xd6\x81\xfd\x31\x4e\x55\xbb\xee\xbe\x04\x3a\x39\x1e\xcb\xb6\xc2\xd7\xe8\x60\xa7\x5f\x0e\xd2\xc7\xe3\x9d\x11\x93\x15\x0e\xc6\x7b\xda\x79\xdf\x02\x59\x33\x6b\xf6\x47\x19\x1d\xa1\xbe\x91\x03\x52\x93\x8f\x16\x64\x04\xe4\x7e\x43\xf2\x9b\x4e\x45\x4d\xa7\x0b\xe7\x7d\x10\x03\xb7\x1a\xee\xfe\xf5\xb9\xab\x39\x75\x35\x27\x92\xb2\x2b\x68\x4e\x68\xb3\xae\x36\x4d\x21\xc3\x99\x9e\x16\xb3\x03\xd1\x27\x6c\x98\x2c\x37\xf9\x47\x79\xf4\x0e\x91\xac\x9b\x19\xa9\x03\x56\xd3\x34\x53\x06\x5f\xc0\x28\x58\xfd\x46\x7f\xa7\xc1\xd5\x9a\xf9\x46\xbf\x6c\xf1\x7b\x2d\x21\x79\x72\xbc\x15\x56\xe3\xf2\x22\xcf\x6b\xfe\x4a\x9a\x58\xa8\x20\xb4\x2f\xce\xf3\x8b\xc2\xe9\x53\x31\xdf\x84\x43\x3e\xf3\xfb\x6d\xe0\x1a\xf5\x3b\x90\xff\xfc\x2b\x0b\x19\xd6\x26\x87\x83\x9a\xda\xbc\xbe\xaa\x51\x17\x52\x86\xde\x69\xd8\xfb\x97\x0b\x4b\x12\xd5\xd9\xad\xb1\x16\x05\x79\xad\xd3\x91\x5d\xe0\xad\x74\x84\x16\xc1\x30\xbd\xa6\xe6\x8c\x5f\xbd\x9e\xe3\x14\x19\xa5\x54\xe1\xde\x9a\xc9\xa8\xa7\x36\xde\x70\xc0\x21\x07\x1a\x3c\x6f\xf8\x43\x88\x99\xa0\xc5\xab\x1d\xc0\x5c\x11\xb2\x4f\x29\xf4\x29\xd8\x96\xcd\x7d\x83\x27\x74\xe6\x4b\x22\xe2\xf4\x97\x8d\xb1\x9c\x38\xf7\x8d\xad\x4d\x34\xd8\x51\x80\xac\x4d\xf1\x16\x2d\xba\x5a\x3c\xec\x40\xa4\xf0\xe7\x34\x48\x3f\x5c\x58\x91\x64\x4b\x87\x09\xcc\x06\x14\x0c\xce\x9a\x95\x06\xaa\x78\x1e\x8c\x21\xc5\xbc\x26\xbe\x32\x20\xf1\xa0\xb0\xcb\x83\x10\x6e\xec\xa3\x58\xf0\xcc\x4d\x1f\xc8\x18\xe1\xc2\x5f\x16\xc0\x2e\x0e\xc5\x80\x70\x64\xe5\x4f\x46\x0a\x89\xd2\x81\xd2\xd7\x71\xbd\x20\x2e\x8e\x1e\xec\x14\xae\xaf\xcf\xc6\xdb\x6d\xb7\x1e\x33\x1d\xcd\x3c\x07\xa5\x6b\x86\xac\xb2\xd4\x54\xaf\x03\x33\x93\xc3\x52\x37\xc8\xe2\x8c\x29\xf8\x50\x61\x61\x89\x66\xb8\x59\x68\x6d\xf6\xec\x59\x0e\x75\x9d\x96\x3d\x83\x25\x50\xbd\x68\x31\x73\x10\xd1\x2f\x59\x37\xb2\x53\x1c\x9b\x07\xd7\xd7\x52\x73\x11\xb4\xc3\x50\xd4\xd0\x84\x05\xa5\x98\x81\x19\xcc\x9d\x09\x43\x38\xec\xcc\x6c\xe8\xc1\xa6\x41\xd2\x2e\x5e\xca\x5e\x8f\xd5\x90\xd7\xe3\x07\x23\xd7\x1f\x31\xa9\x47\x7e\x75\xf4\xa0\x7f\xf4\x00\x97\x24\x3e\x2f\x2f\xea\x51\xe7\x46\xd8\x5d\x0f\x05\xab\xad\xf2\x12\x97\x7d\x72\xf4\x00\xa1\x03\x66\xa7\xe1\xc6\x4a\x86\xb5\xcd\xbe\x7e\xbf\xc0\x23\xbc\x41\x78\x53\x1b\x40\x5d\x2c\x61\x0d\x5c\x13\xeb\x29\x01\x86\x38\xde\xae\x59\x96\x85\xa8\x52\xe7\x02\x3a\x20\xbc\xaa\xb0\x8b\x69\x18\x47\xec\xb6\xce\xd0\x0b\x32\x1e\x21\x5f\x8e\xed\x20\xe5\x5a\xd7\x45\xb6\x50\xee\x5c\x3b\x30\xd3\x66\x21\x83\x07\xf8\x01\xd2\xa2\x4b\xaa\x15\xe0\xfd\x48\xa1\x08\xf8\xc7\xd4\xf6\x87\xf0\x45\x37\x73\x72\xcd\x6d\x26\x5b\x2c\x06\x05\x96\x46\xa0\x5d\xaf\xfd\x31\x1e\x49\x94\x0f\x34\x87\x96\xf2\x6a\x82\x8a\x0e\xec\x7a\x96\x75\xbb\x15\x54\x60\x31\xc3\x94\x14\x95\xb0\xf1\x46\x6d\xfa\x66\xc9\xb2\x96\xc6\x3d\x1e\x8f\x3c\x68\x6a\x1d\xff\x79\x2c\xfd\xeb\xcd\x71\x6b\x18\xcc\x43\x8a\x7c\x40\x95\xff\x72\xb0\x51\xf0\x2a\xa4\x38\xc6\x39\xaa\xc9\xb4\x6b\x3c\x16\xb7\xe1\x31\x6e\x6c\xb5\xad\x18\x19\xe1\x5b\x46\xde\x0e\x9f\xf1\xa4\xc5\x2a\xb6\x9d\x3d\xbe\x6f\xe5\x5b\xe6\xae\x94\xe9\x4d\xe7\xd6\x1d\xc6\xb4\xd8\x50\x0e\x4a\x2c\x23\x24\xf7\x1f\x65\x9a\x5a\x52\x4c\x06\x87\x4d\x35\xb5\x1b\xa8\x2b\x62\x34\x43\x33\x3d\xb7\x41\xff\xdd\xec\xba\x56\x52\x98\x78\x9f\x60\xc6\x43\xdb\xc3\xf2\x4d\x5d\xa9\x80\x8c\xc6\xf9\xef\x68\x4e\x0b\xb8\x48\x20\x63\xab\x09\x0e\x32\x01\x24\xd7\x87\xae\x35\x0d\x73\x3c\xd2\xf2\xcd\x25\xcd\xc8\x0b\x60\xc5\x29\x74\xa5\x6c\x26\xc0\xbc\x7a\xc7\x42\xb5\x25\x08\x6b\x89\x6e\xc5\xf4\x2a\xe4\xa9\xf1\xff\x2d\x3c\x8b\x86\x74\x4d\x0a\x63\xc6\x4b\xd0\x3c\x95\xa0\xb5\xf9\xd9\x0f\xb5\xe4\x28\x5c\x6b\xc9\x73\x6e\x29\xc9\x04\xbc\xd4\xe2\xe1\xca\xda\x07\xc3\x82\xcb\x07\xfd\x24\x22\x5a\x21\xfc\x17\x65\xcf\x0f\x2b\x68\x63\x8e\xaa\x03\xdf\x3b\x39\x79\xcf\x43\x7f\xbf\xc7\x77\x09\xcf\x4b\x51\x6c\x12\xc1\x8b\xe8\x96\xc1\x8c\xdd\x99\xb0\xf9\x44\x35\x4e\xcd\xa2\x81\x1b\x06\x2c\x06\xf2\x9c\x1a\x79\xd1\x7e\xa4\x7d\xed\x5b\xcc\x8f\xdd\x1e\xb1\x97\x26\x1c\x35\x7d\x90\xc9\xd5\x90\xf7\x8d\xff\x31\x47\x4a\xd7\xf0\x79\x0d\x2c\x9c\x23\x43\xa3\xb4\x91\x27\x35\xca\xa0\x96\x11\x55\xd8\x18\x68\x6e\xb1\x32\xfa\x49\xf7\xfd\x67\x1a\x69\x4e\xcc\x60\x05\x9e\x4e\x44\x24\x94\xd5\x7b\xba\xdd\xfa\xd3\xc0\xf8\xc4\x42\x15\x2e\x4d\x9d\x7f\x10\xe1\x6e\xb5\x6b\xea\x77\xeb\x08\x61\x6b\x64\xb0\x56\xed\x60\x7c\xf0\x32\xf7\x27\x87\xd0\x0e\xa7\x73\x7c\xa3\x01\xcf\x6b\xfe\xae\x91\x9a\x37\xbb\xb3\xcc\x5a\x8f\x31\x70\x05\x58\x1e\xc9\xa3\xee\xa8\x02\xeb\x63\xde\x2c\x13\x08\x55\x08\xfb\x8e\xbf\xa2\x5d\x0c\xf1\x93\x06\x8b\x62\x10\x8c\x34\xe2\xc4\x39\xc9\x27\xe6\x53\xce\x22\x5c\xa8\xee\x6f\x2b\xc6\xd0\x88\xcf\x75\x4b\x4c\x3e\x8a\xb0\x2b\xb1\xd6\xf1\xf9\xa4\x88\x0a\xd5\xf1\xf9\xde\x8e\xd7\xee\xfd\xf6\x59\x94\xd5\xd1\xdf\x81\x09\x22\xcf\x3e\xa8\xe8\xf5\x14\xd7\xc3\x96\xa0\x92\x44\x0d\x53\x5c\xdf\x5a\x28\x0d\x32\x34\x23\x41\x5d\xe5\xaf\x36\xab\x79\xc3\xa5\xa3\x93\xea\xf1\xd2\xa9\x2a\xfe\xc8\xca\x4d\x9c\xed\xba\x3a\x36\xbe\x06\xa0\xb0\x26\x22\x71\xb5\x22\x0c\xfa\x63\x15\x96\x7d\xf1\x94\x6f\xee\x31\x12\x0a\x84\xbe\x75\xd2\xbc\x2f\x19\x24\xa8\xb0\xd1\x05\xbb\x37\x99\x3f\x57\x2b\xac\xcd\x97\xb4\x35\xdc\x8d\x2e\xb4\x5e\xd9\xc4\xd9\x6b\xf6\x97\x66\x46\xeb\x25\x44\xbe\x21\x7e\x30\xdd\xae\x9c\xc7\xc3\x3a\x04\x8f\x73\x91\xf1\x31\xaf\x82\xd4\x47\x14\xd0\x1c\x12\x6d\xb7\x81\xe0\xea\xc5\xac\x5e\xf0\x91\xee\x5c\x86\xe3\xba\xeb\xbb\xbd\xbd\x47\xb3\x61\x21\xe7\x71\x59\xe1\x1d\x47\x8f\xf7\x65\x6a\xf1\x0a\x09\xf8\x41\xf7\x41\x0d\x41\xa8\x85\xf1\x27\x5a\x5f\x12\xbb\x73\x60\xb2\x86\x73\xf0\x76\x3b\x42\x11\x45\x56\x9d\x06\x61\xdf\x81\xe0\x97\x14\xed\xaf\xb6\xed\x56\x16\x25\x4b\x69\x78\x0f\x6e\x2b\xe8\x9b\xdd\x82\x44\xaf\xe7\xe3\x82\x96\x82\xca\x66\x49\xe8\xee\x27\x9d\xe3\x67\xaf\x9c\xb6\x9c\xdf\xdc\x7e\x3e\xef\x95\xb1\x39\x6c\x87\x0a\xd6\x87\x68\x76\xcc\x0e\x18\xc6\xcc\x86\x41\xa3\x77\x2d\x7a\xf3\xd4\x77\xa0\xc9\x40\x81\x40\xf9\x6e\xb4\x3d\x20\x77\x33\x35\xfb\x5c\xa7\x52\xe3\x62\x13\x19\x32\x09\x0c\x77\x7a\x72\xa9\x96\xfd\x85\x6b\x73\x5f\x39\x45\x70\x98\xf9\x03\x0d\x99\xee\xd6\x0a\xe1\x38\xbd\x7f\x74\xbc\xe3\xb7\xeb\x0c\x73\xaa\x00\x62\xd9\x73\x3e\xb9\x6f\x2e\xd4\x6b\x2f\x70\xe1\x71\x79\x61\x74\xaf\xfc\xc9\xd6\x7a\xf0\x34\x1b\x9b\x37\x22\x8a\x14\xc8\x5b\xdc\x91\x9a\x9d\x40\x12\xc5\xc6\x69\x2b\xbc\xcb\xf5\x8a\x0e\x04\x11\x13\x61\x18\x2e\x0c\x45\xac\xfa\xa5\x9b\xf2\x15\x6d\x5d\xe7\xbb\x7e\x67\x7f\x35\x98\xc1\x24\x04\x5c\x3c\x1b\x4f\x3a\xfb\xa0\x43\x18\x94\x52\x98\x95\x60\xad\x70\xd3\xf3\xe5\x3d\xe7\x8e\xe9\x0c\x7b\x76\x54\xbd\x21\xf7\x0c\x32\x15\x53\x36\x23\x5a\x2d\x69\xd7\xb1\x6d\x21\x8b\xdc\x6e\xad\xf7\xce\xdd\xea\x5b\x57\x4d\x03\x04\x53\xbd\x75\x32\x54\x07\xc3\xf3\x2d\x63\xa2\xa6\x7c\x76\x50\x4c\xf9\x8c\x28\x0a\x27\x36\x9d\x28\x78\x14\x43\x27\xee\x21\x69\xc0\xca\xaf\xa6\x6a\xf2\xca\x5c\x64\xf4\x7a\x80\xf7\xc1\xda\xd2\x67\x40\xad\xdb\xde\xe2\x84\x61\x25\xd6\x6e\x89\x54\xcf\x83\xa7\x50\x82\xeb\x2f\xf2\xb0\xd4\xb6\x09\x30\x47\x38\x93\x01\x6f\xf2\xb0\x04\x09\x08\x75\x32\x03\x83\xcb\x98\x93\x0c\x07\x31\xe8\x37\x05\x84\xe8\xf5\x98\x10\xea\x8d\x8c\x2c\x11\x54\xdd\x13\xe5\x36\x35\x31\xa8\xe3\x62\x74\x50\x4c\x63\x8b\x5d\x16\x93\x2c\xda\xe0\xc5\x64\x13\x65\x9a\xad\xef\xc7\x6e\xb0\x33\x69\x22\x83\xde\xc8\x75\x4a\x1b\x48\xa4\x52\x53\xb4\xc0\x42\xcb\x32\x13\xb7\x92\xcf\xf9\x63\x39\x52\x83\x01\x32\x94\x26\xd8\x33\x38\x28\x27\x7f\xd4\x4b\xbf\xd4\xa7\x81\x64\xd5\xeb\xfd\x51\xb3\x1d\x93\x95\x5c\xfe\x9b\x3c\xe5\xb5\x39\x81\xee\x7e\xd6\x85\x28\xef\x70\x8a\x90\xdc\x9f\x08\xdc\xc3\x99\x92\xda\xf1\x59\xb3\x48\x30\x7b\xa0\x4a\xfd\x6c\x06\xe5\x7d\x4e\x65\x28\xa9\x78\x0e\x3b\x0a\x28\x05\x79\x2b\xdf\x3f\xb7\x51\x40\x11\x2d\xe9\xea\x9b\xba\x4a\x5d\x61\x7d\x6a\x6c\xf2\x56\x1b\x6e\x16\x74\x2a\xdc\x64\xfb\x7b\xc6\xfb\x00\xa1\xa8\x10\x89\x3a\xd4\x04\xd9\x6e\xfb\x7d\xc5\x6f\x35\x39\x6a\x06\xff\x74\x1e\x15\x56\xcf\x65\x7c\x17\xdd\xc1\x00\x09\x35\x04\x79\x25\xe9\x33\x67\x1f\x70\xc7\x43\x43\xe3\x0c\xec\x87\x0d\x57\xf1\x27\x77\xc2\x06\x63\xfd\xc5\xc7\xa7\xf2\xdc\xbd\x53\x4a\xf3\x34\xae\x99\x1d\x12\x36\x17\x1a\xca\x31\xc1\xcd\xd0\x36\xb2\x91\x1a\x46\xab\x81\x44\x52\xa5\xaf\xd7\x64\x27\xec\x2d\xcd\xda\x82\x5f\x03\x82\x20\xde\x81\xde\xc4\x5e\xd9\x7a\x2b\xcc\xca\x46\x63\x68\x7d\xc0\x77\xf3\x10\x62\x11\x79\xa3\xc5\x6a\x9b\x69\xe9\x64\x3d\x26\x72\xb8\xa2\x67\x8d\xfe\x95\x81\x6a\x15\xb4\x44\xaa\x60\x54\x01\xd1\xb8\x53\x70\x9d\x72\xfe\xf2\x41\x3c\x10\x50\x2b\x79\xa6\x7c\x63\xe7\x56\xdd\x12\x59\xd7\xcc\x58\xe8\xba\x55\x22\x3d\xfd\x76\x92\x55\x92\x1a\x01\x8b\xe8\x59\x5c\xb6\x6e\x12\xc6\x8e\xad\x3d\x34\x06\x4a\x81\x5a\x12\xb4\x13\xf3\x1e\x05\x20\x6c\x13\xe0\x66\xd3\x0a\xa2\x0c\x3f\x42\x62\xa7\xcf\x19\x05\x4e\x89\x54\xc5\x39\xad\xcf\xdd\xe2\x4d\xcc\x4d\x11\xaf\xb5\x3e\xa8\x24\xf8\xa6\xc5\x0c\x28\xbf\x17\x3c\xcc\xb5\x9e\x27\x84\x39\xf7\x60\xd4\xa9\x7b\x6a\x46\x1a\x90\x7e\x07\xf6\xbe\x45\xa1\xa3\x15\xbf\xa6\xff\xff\xeb\x03\xac\xef\x1a\xd9\x22\xec\x32\xd7\x66\x67\xb8\x02\xa9\xd6\x6e\xb2\xec\xc0\xb2\x5f\x39\x18\xaa\x11\xc9\x52\xf5\x9a\x92\xfd\xe1\x75\x87\x6a\x31\xe1\x5a\x47\x97\x3b\x1d\x5d\xe8\x4b\xdf\x7b\xa0\xd1\xeb\x0d\xf5\x5b\xaf\x17\x77\xad\x9c\xda\xc4\xa8\x51\x99\x0c\x31\x52\xaa\x9b\x55\xad\xeb\xf5\xdc\x53\x46\x10\xee\xe9\xf8\x5d\x1e\x86\x22\xe0\xe4\x4a\xf9\x87\xd2\x0a\x07\xdf\x88\x60\x37\xd7\xc8\x47\xf4\x7a\xac\xa6\xce\xcf\xad\x60\x5f\x9c\xb1\xab\xfc\x4f\x5a\x35\x5d\xae\x95\xdf\xab\x92\x8d\x3a\x79\xcd\x60\xac\xd1\xbe\xd1\xaa\xec\xa0\x28\x60\xd4\xda\xa7\x33\xe4\xfa\xdb\xdc\x68\x3c\x11\x13\xed\x1f\x9e\xa1\xc8\x72\xc2\xed\x99\x21\x77\x67\x06\x4f\xf7\xdd\x65\x46\x08\x8f\x30\x33\x77\x21\x44\x60\xae\xfc\x33\x38\xc1\x89\x82\x28\xdb\x0d\xd4\x31\x5c\x0f\xc0\x9a\xad\xe1\xd6\xf7\xff\x58\x80\x3c\x62\x01\x06\x1b\xb4\x78\xa7\xb9\xe4\x00\x83\xb0\x2d\x1a\xe9\xde\xc8\x60\x56\x59\x0e\x91\x3a\x2c\xb8\x35\xa2\xc7\xaa\x7e\x71\x6b\x6c\xe1\x62\x63\xdf\x78\x87\xda\x35\x16\xbe\x8b\x7b\xf8\x45\x38\xc7\x39\xd8\x3f\xb9\x5d\xcb\x93\x3f\xec\x89\x81\x3a\x6e\x7f\xa3\x65\x10\xa3\x36\x53\x6a\x77\xbe\xe1\xea\x48\x58\x89\x43\x01\xd6\x14\xde\xdd\xae\xe9\xc4\x0c\x59\x24\x10\x76\xa6\x0f\x23\x60\x1c\xb9\x6f\x5c\x37\xfb\x16\x75\xc7\x58\xd9\x33\x57\x09\xd5\x3b\xde\xb1\x80\xad\x62\x77\x82\xab\x83\x46\xa3\x29\xf1\x9a\x2d\xe7\xac\x13\xad\x44\x15\xb6\x86\x65\x9f\xb4\x39\xb5\x82\x93\x8d\xe1\x1b\x85\x7e\x49\xa8\xdd\xfc\xa7\x67\x3e\xa4\x7e\xfe\xf1\x2e\x33\xe4\x59\xe7\xdc\xce\x5e\x25\xc7\xc7\xb4\xe0\x26\x55\x8a\xcc\x3b\x96\x5f\x1e\x9b\x18\xa1\xe7\xb8\xb1\xf2\xa2\xee\x5c\x64\x22\x6d\xe6\xc6\x3b\x0c\xd9\xb6\xed\xcc\x8b\x5a\x9f\xf8\xec\xc8\x03\x8f\xda\xa7\x35\x2b\x44\x96\xbd\xad\x3d\x27\x68\x2d\x17\xdf\xce\xb3\xbd\x7f\xf9\x72\xd3\x58\xa5\x39\x30\x68\xd3\x58\x4a\x30\x6c\x03\xd2\xa6\x8c\x68\x10\x94\x03\xca\xc7\x10\xac\xf0\x19\x21\x1b\x2d\x85\x09\xe2\x60\x32\x91\xf1\x4f\x68\x23\x88\xb5\xa7\xad\x82\x1e\x13\x31\x4c\x96\xdb\x6d\xde\xeb\x75\x73\x67\x21\x6b\xbb\xd5\x27\xfb\x4d\xb3\x4b\x6d\x92\xaa\xdf\x67\x72\x35\x02\x99\xf2\x24\xcb\x1a\x7d\x6a\xae\x06\xa7\xb3\xdd\xbe\x6a\x43\x69\xbf\x64\xca\x68\xdb\x89\xe6\xa4\x0c\x1e\x1e\x81\x0d\x21\x43\x0c\x78\x08\xd3\x0a\xaf\x79\xf9\x6d\xc1\xd5\xf1\x65\x77\x26\xd7\xb8\xe5\xb8\x20\x6d\xe7\x69\xb3\xe5\xec\x6f\x84\x95\x3a\x60\x3e\x07\xbd\x0f\x56\x0d\xf9\x63\x6b\xae\x41\x10\x8a\xbb\xa3\x03\x3a\x20\x1c\xf7\xfb\x79\xe5\xb0\x0d\xf0\xe1\x05\xd2\xbe\xb3\x3e\x49\x80\x9b\xcc\x4f\xb5\xf0\x1a\x6b\x2d\x59\x1e\x18\x77\x01\xda\x96\x10\x34\x04\x84\x21\x97\x17\x23\x67\xcd\xe6\xda\x79\x1f\xfa\xd2\xd6\x79\xfd\xa2\x67\x76\xed\xac\xd3\xd7\xd2\xe2\xa6\xb1\xb2\x39\xa2\xc2\x09\x5f\xb7\x51\x94\xfa\x9a\xef\x4b\xef\x48\x9a\x77\x64\x3b\x19\x74\x23\x1c\xcf\xbd\xfd\xb6\xef\x1d\x5f\x63\xe1\xdf\xfc\x89\xfa\x4d\xa0\x8c\xa4\x99\x63\x35\x08\xef\xda\x0d\xce\x0b\x35\xca\xf9\x19\x5d\x8b\x25\xd9\x21\xa8\x21\x18\x4a\x32\x24\x75\x68\xee\x07\x9c\x01\x75\xe8\x1c\xe5\xd5\xe1\x19\x4f\xea\x1b\xd6\x76\x1b\x82\xea\xe0\x81\x47\x7d\xab\xb6\xb6\xdf\xe5\x1c\x18\x31\x51\x33\xf5\x61\x19\x2b\x66\x20\xf5\x44\x98\xbb\x60\x5f\x03\x3c\xa6\xf2\x0b\x75\xa5\x2a\x5f\xad\x7d\x93\xc6\x98\xe0\x1c\x14\xc0\x78\x6a\x8e\x23\x7e\xff\xb7\x77\x3b\xd5\xbb\x90\x6c\x27\x28\xf0\x99\x43\x83\xdf\x49\x08\x5b\x01\xa3\x8f\x34\x95\x14\x8b\xfb\xf2\xb5\x1a\x53\x9e\x44\x05\x76\x05\x46\x7e\xe9\x12\xcf\xd8\x3c\x90\x14\x80\x36\xde\x31\xa2\xee\x68\x6f\xce\xd9\x5e\x4b\x00\x35\xa3\x98\xb9\x41\xb9\x05\x11\x46\xbe\xc8\x9a\x92\x74\xf6\xd4\xb5\x29\x49\x30\xeb\xe1\xc2\x84\xe2\xd9\xa4\x14\xdc\x71\x18\x5e\x0f\xf8\x01\xe1\x38\x06\x5d\x47\xb8\x83\x70\x6f\x40\x57\xa0\x83\xc2\x5a\xff\x82\x4e\x28\x11\xb6\x42\x76\x45\x55\x55\x61\x81\x6f\xb4\x91\x1f\x40\xb4\x9b\x5c\xf6\x41\x73\x06\x49\x1c\xe0\xdf\xaf\xbf\x85\x7b\x1d\xe5\xb7\x09\x7b\xbd\x8d\x5a\xa4\x78\x9a\x0e\x48\x44\xcd\x4d\xcc\x47\x9a\x4e\xc5\x0c\x6c\x78\x11\x4f\x02\x52\xe6\x30\x26\x68\x31\x08\x54\x5a\xc0\x14\xb0\xf8\x79\x11\x5a\xc0\xb5\xf4\xb9\x72\x69\x6b\x66\x48\x7d\x8a\xe8\x4d\x60\xaa\x8c\xcf\xee\x78\x5e\xc9\x8d\xca\x0e\x4b\x91\xba\x65\xa4\xed\x17\xed\x75\x4f\x07\xa4\xed\x70\xac\xa6\x79\xfd\x44\xbc\x93\x50\x05\x03\x87\x1c\xae\xbd\x5f\x9a\x95\x5b\x47\xca\xf3\xfa\x85\xdd\x0f\x3c\xdd\x7b\xc7\x25\x17\x93\xe2\x09\xa5\x4c\xf8\xf7\x55\xf5\x64\xc9\xaa\xc2\x8e\x37\xb9\x97\x8d\xa0\x17\xe2\x44\x2b\xb6\x86\xb5\xd5\x19\xfd\x8e\xdb\x5b\x3c\x8b\xe9\xef\x13\xcb\x7c\x4b\xd7\x4a\xef\xb1\xaa\x10\xf6\x45\x02\x86\xd4\xb8\x11\xaa\x85\xca\x1e\x51\x9e\xfa\x18\x09\xe4\x47\x47\x51\xad\x1d\x45\x98\x77\xe4\x26\xd0\xb1\x4d\xed\x78\x62\x04\x81\xe7\x41\xde\xca\x73\x5d\xb1\x0e\xcb\x3b\x7e\x0d\xa8\x56\x5d\xc3\xd0\xdc\x15\x43\xbd\xde\x35\x0f\xaf\x19\xbe\x62\xe8\x62\xd4\xeb\x85\x6f\x5d\xea\xe9\x15\x9b\xb5\xf9\x58\xdc\x6d\x3e\xd5\xc2\x9d\xd0\x0d\xe0\x6a\xae\xb8\x02\xad\xad\x12\x55\x55\xe8\x43\x20\xcb\x44\xc8\x73\x4c\x64\xf5\xa8\x42\x67\x4c\x23\x04\xed\x36\xe5\xa7\xa8\xb9\xde\x14\x3b\xb8\xd8\x59\x6c\xd6\xba\x89\x89\x9a\xc6\x70\x82\x06\x78\xba\x84\x19\x1a\x90\xf7\x7a\xa5\x87\xd2\x0e\x24\xad\xb6\x91\x98\x54\xa5\xc4\x1b\x84\xa9\x7e\x2d\xf0\x06\x9c\x1c\x20\x63\x1a\xaf\x66\xdc\xf5\x3d\xf3\xbc\x01\x24\xab\x5d\x27\x34\xef\x96\xac\xec\x18\xf5\xb5\x0e\x2b\x3b\x71\x56\xd0\x38\xbd\x95\x23\xb4\x29\xe9\x30\x40\x07\x80\x57\x88\x00\x4d\x0e\x42\xf1\xbb\x90\x22\xfc\x44\x3e\xda\x1d\xef\x6d\xb7\x2f\xea\x91\x2b\xb0\x02\xe8\xef\x2e\xdf\x8b\x9a\x11\xb0\x1b\xe6\xb9\x05\x1f\x10\xcd\x5a\x47\x17\xa3\xed\x56\x48\x82\x1f\x48\x84\x16\xc8\x69\x41\x25\xc4\x39\xef\xc8\xfa\x3b\x41\x3f\x14\x7d\x93\xb9\x1f\x80\x7b\xff\x25\xb5\x8d\x1b\x7a\x33\x30\x27\xf4\xbc\xab\xbc\x84\x94\xe7\x35\xba\xb3\x76\x40\xf9\x9c\xa8\x95\xb8\xe0\xe8\x2e\x27\x4c\x23\x3c\x31\x20\xdc\x72\xd4\xb5\x7c\xad\x98\x79\x1e\x36\x1a\xea\x78\xea\xda\xa3\x6e\x9a\xf5\x33\x2e\x64\xa8\x35\xd8\x0f\xc4\xd8\x01\x23\xd6\xe5\x50\xc8\x09\xf7\xec\x9e\x25\x4b\xb0\xd4\x62\x89\x7f\x2f\x5a\xa8\x48\x4d\xef\x73\x84\x0d\x5d\x6f\x21\xfd\xb4\x03\x69\x13\xc0\x9a\xc9\x1f\xe7\xe0\x43\x29\xe9\xd4\x0b\x7b\x5b\x33\xf7\x21\x06\xd4\x13\xcc\xf5\x89\x7e\x7a\x5e\x9c\x17\xc4\x9c\x3b\x50\xe1\x24\x41\x3d\xa7\x19\xcc\xb3\xf5\x48\xac\x40\x5e\xab\xe1\x72\x27\xaf\x87\x73\xe5\xa2\xcd\xba\x3c\x2b\x88\x91\xe9\x3b\x2f\xce\x05\x29\xb0\x57\xaf\x6f\xdd\xa3\x70\x33\x80\xcd\xba\x44\x80\xf9\xc1\xbc\x4f\x6a\xe1\xb5\x59\x61\x00\xe9\x0b\x2d\x0c\x61\x41\x7f\xc2\xea\x66\xaf\x21\xfa\x80\x46\x29\x6f\x08\x01\xee\x88\x15\xd6\xe4\xfb\x77\xe6\xa4\xeb\x4c\x98\x8e\x94\xb0\x03\x67\xbe\x1c\xe6\xa4\x12\xff\xf7\xa0\x74\x96\xcb\x95\x20\x63\x57\x1b\xe1\x46\xb5\x3b\x83\x86\x4b\xc5\xc2\x9c\x6a\x75\x8c\x27\x80\x05\x75\xc7\x5a\x6c\x50\x0c\x48\x6c\x2b\xe8\x7b\xf3\xe0\x63\x43\x4f\x7a\x84\x73\x79\xbe\x01\x11\x14\x64\x46\xca\x9e\xfd\x5a\x2b\x67\x24\xb7\x95\xab\x3b\x33\x42\x4d\xb5\x4e\xc5\xc1\x7a\x52\xe5\x24\x37\xc3\xcc\xcf\x39\x09\x73\xc2\x91\x3f\xcc\xaa\x32\xbe\xbf\xbf\xe5\x11\xde\xeb\x6f\x38\xc2\x13\x92\xbb\x2a\x63\x53\xa5\xe5\x36\xd8\xe6\xfe\xc0\x7c\x5b\xf0\xa0\xd7\x55\x97\x47\x31\x04\xbc\x52\xf9\x4a\x62\xb3\x7a\xe4\xd1\xc1\x96\xf2\xce\xe9\x83\x00\xe1\x62\xbc\xdf\x6a\x3a\xc6\xff\x54\xc7\x95\xf1\xe1\xc8\x79\x79\xfe\x81\xa7\xef\xd8\x8a\x3a\xc7\xee\x6f\x69\x06\x01\x5e\x1a\x73\xf7\xe1\xae\x42\x9c\x8b\x66\xef\x1e\xa4\x96\xc6\x5d\x8d\x60\x7d\xf4\xa9\xdf\xda\xd4\xee\x0b\x08\xdd\x6e\x3d\xab\xcd\x4f\x6b\xeb\x40\x5d\xdd\xae\x8c\xef\x17\xb8\xbc\x7d\x93\x87\x42\xdf\xdd\x3e\x77\x6e\x69\x94\x5b\x18\xcb\xd6\xfa\xc0\x80\xf1\xea\xb9\xac\x71\xde\x68\xfa\x63\x84\x77\x68\xca\xcf\x64\x50\x64\xa6\x87\x6a\x7e\xb4\xd3\xf5\x9c\x3a\x89\x6e\xb6\x08\xbb\x2b\x49\x6e\xe9\x4b\x33\x23\x2b\x3b\x5c\xf3\x75\xe8\x5b\x05\x78\xd3\x62\x34\x4a\x53\x9b\x07\xac\x7e\x1f\x47\xd4\x79\x9d\xe3\x98\xf4\xe5\x06\xf7\x2c\x16\xa0\xfb\x16\x32\x33\x40\xa4\xd8\x6e\x99\x3f\x1a\x44\x0c\xd5\x05\x76\xaf\xe7\xde\xc2\xa0\x1f\xb8\x18\xe3\x82\x7d\xa4\xfc\x7b\xad\x40\xac\xdd\xcd\x89\xc7\xf1\xa0\xa6\x41\xa9\x61\x03\xe6\xe1\x33\x9a\xc5\xb7\xdb\x6d\xf0\x75\x6b\x71\x60\x1e\x86\xef\xb1\x3a\x3c\x09\x7f\x34\xb7\x42\x08\xaf\xb8\x79\x45\x51\xed\xd6\xb2\xd7\xeb\xba\x38\xdd\x93\x13\x17\x52\x4f\xfc\x78\x0c\xae\x0d\xe1\xb2\xb2\x16\x31\x38\x32\x57\x97\x13\x73\x11\x05\xa3\x50\xab\x57\xdb\xb2\x0c\x19\xf6\x7a\xd3\x69\x52\xac\x78\xc8\xf5\x25\x63\x89\x0e\x76\xdd\x10\x81\x2e\xaa\x0b\x2b\x65\xd8\x04\x1c\x44\xc1\x2c\x8d\x6c\x66\xb5\x01\xea\xc9\xed\x49\x9c\x6f\x64\x15\x4c\x41\x03\xe8\x75\xd3\xeb\x6d\xec\x8d\xeb\x2b\xd9\x59\x25\xcd\xb0\x4e\x81\x39\xb9\xd3\x05\x46\x53\x5d\xd8\x0c\xbb\xe5\x15\xb1\xfa\xed\xa3\x6e\xb5\xda\xc7\xcf\x59\xad\xdb\x98\xc3\x0a\xe7\x48\x47\x95\x4b\xb6\x10\x21\xd2\x19\xa7\x23\x77\xf7\x5b\x4f\x50\xf9\x25\x83\x6a\x84\xb7\xc4\xfb\x7d\x56\x5f\xe1\xb8\x36\xb3\x08\xab\xa1\x9a\xd8\x75\x3c\xf3\x90\x4c\x81\x6b\x13\x9a\x35\x70\x8b\x99\x76\xb8\xdc\x6e\x95\x6d\x21\x3d\x41\x95\x87\x36\x8f\x7a\x7c\x55\xc3\x27\x2b\x1e\x0a\x70\xb5\x9d\xeb\x96\xc9\x37\xfa\x8f\x4d\x9c\x95\x21\x05\x47\x8d\xc6\x13\x99\x2d\xe0\xc3\xce\x4a\x6d\x7a\x47\x01\x0b\x09\x9a\xf2\xb1\xb7\x26\x46\x02\x24\x47\xd8\x93\xc8\x52\xac\x1b\x45\xb3\xe2\xc2\x73\xbe\x96\xcb\x53\xad\xc7\xf2\xec\xf5\x42\x6d\x52\xa2\x59\x1b\xb9\xab\x10\x9a\xf2\x19\xa9\xa5\x97\x54\x1a\xf7\xfd\xb5\xbd\x30\xa4\x50\x97\xb6\x93\x3f\x78\x9f\xa7\x39\xcd\xdf\xdd\x31\x57\x3e\x11\xf2\x88\xe1\x5b\xcf\x45\x48\xdd\x2e\x68\x8f\x63\xb9\xf3\x38\x26\x26\x86\x91\x32\x11\xa0\x35\x1d\x79\x56\x6c\x9f\xb1\x16\xf5\x86\x1d\x61\x38\xbb\xcb\x72\x7b\x93\xc8\x0d\x56\xd5\x06\x24\xf3\xc9\x1b\x5a\x73\x73\x4b\xd7\x4f\xf9\xfa\x56\xe9\x08\x70\x14\x71\xe4\xee\x16\xd5\x5e\xad\x84\xae\x40\x43\x4a\x97\x61\xd7\x53\x59\x35\xdd\xb1\xc6\xbe\x1f\x56\x65\x3a\x0a\x27\x24\x9e\x6e\xf4\xa1\x4c\xe5\x87\x1d\x2a\xd1\x38\x81\x47\xc9\x50\x70\xb5\x39\x29\x05\xd6\x0a\x61\x47\x34\x2e\xe4\xa9\x23\x41\x61\x46\x16\xc6\x7c\xf1\xdf\xd4\xe0\x86\x97\x69\x1f\xfd\xe6\x10\xa9\xb3\xac\xc0\x4a\xd0\x37\xcc\xa6\xe3\x19\x42\x8f\x07\xe3\x5e\x2f\x5c\xf1\xb0\x44\xd3\xc5\x8c\x24\xd3\xc5\x0c\x2b\x35\xc6\x8e\x7c\x97\xe7\x3b\xeb\x58\xc7\xf6\xf2\x4b\x6f\xde\xe6\x9a\x5e\x9b\xa8\xbf\x3e\x29\x22\x71\x61\x6e\x0d\x34\xc3\x18\x74\xd5\x93\x25\xf1\xcf\x87\xdf\xb2\x7d\x86\x7d\xef\xf1\x12\xa6\xd4\x45\xec\x58\xdd\xf1\x61\xc2\xd7\x0c\x58\x7d\xa1\x4a\x44\xb8\x1d\xab\x10\x21\x1d\x4d\xba\x23\x37\x00\xea\xfe\x83\x37\x84\xbc\xca\x7e\x1f\xbd\x64\xb6\xe8\x69\x69\xa4\x22\x35\x8c\xb8\x11\x09\xe2\x4f\xda\x90\x35\x4c\x04\x59\xbc\x29\xda\x20\xe6\x5d\xef\x23\x36\x4e\x7b\x21\xc9\x2f\x36\x9e\xe7\x3b\xf5\x4e\xd6\x34\xf4\x42\xfb\x05\xde\x18\xfb\x04\x08\x6f\xe4\x06\x00\x09\x0c\x01\x51\x40\x98\x8c\xb4\xea\xe6\xe2\x82\xd8\x78\x74\x17\x93\xee\xd8\x30\xc6\xe2\xed\x36\xb4\x3e\x9d\x46\xca\xbf\x3b\x93\xe3\xe2\xd1\x0f\x3f\xd7\x4f\x4d\x1e\xd5\x52\x10\x4b\xb7\xc0\xf9\xd1\x77\x94\x15\x16\x83\x1c\x0d\xc6\x07\xdf\x9a\x4d\x58\x3b\x6e\xc1\xdf\x3a\x31\x0c\x1d\x54\x15\x3c\xbc\xd5\x96\x92\xbe\x63\xe4\xed\x90\xbe\x5f\x17\x54\x6d\xff\x8b\x78\x93\x09\xd2\x50\x8f\xad\x45\x4e\x9a\x01\xa1\xdc\xb5\xd5\x24\x05\x2d\x01\xd2\x1d\x57\xf8\x1b\x55\x6e\x29\xf8\xfa\x4d\xc1\xd7\xf1\x95\xda\x40\xea\x05\x37\x62\x27\x3b\x21\x50\x74\x12\xe7\x09\xcd\xbe\xd9\xcc\xe7\x19\xdc\x17\x3b\xee\xcc\x4f\x35\x3b\x0e\x9a\x0f\x9e\x2a\xa8\xde\x28\x18\x69\x3a\xd9\x0d\x8a\x46\x84\xd4\x40\x06\x49\xc0\x7f\x38\x90\x6b\x70\x7e\x27\x6b\xc1\xdf\x80\x10\xbe\xe7\xd0\x80\xd5\xdc\x1e\x89\xb8\xb8\xa2\x70\x1d\x53\x16\x89\xb6\x02\xe4\x39\x2a\xa8\x9d\x08\x6e\x96\x2c\x59\xee\x9e\x08\xc6\x3d\x3a\x9c\x6f\x84\xe0\xf9\x44\x90\x71\x74\xe4\x7f\x1e\x47\x27\xf6\x13\x0e\x0f\x47\x08\x61\xf0\x0f\x96\x88\x22\xfb\x3d\xbd\xed\xf5\xc6\xe6\x5c\x71\x2c\x8f\x11\xb2\xae\xbf\xc8\x06\xf1\xbc\xd5\x37\xe0\x30\x4e\x53\xa0\xf8\x5e\xb2\x52\xc8\xed\x1c\xed\x06\xc1\x59\xbf\xeb\xf9\x69\x35\xce\xd5\x21\x15\xaa\x7d\x85\x01\xcf\x83\x3e\x58\xf7\xf6\x54\xee\xe8\xf0\xbd\xba\x9e\x06\xd7\xe0\xde\x97\xdc\xe9\xce\xc3\x62\x2a\x66\xdb\x2d\xfc\xf9\xfe\xda\x50\x55\xe1\xdf\xc9\x3d\xc3\xf5\xf6\xef\x77\xec\x19\xd9\xa2\x64\x27\xd8\x8f\xa9\xb0\xfc\x8a\x7c\x02\x4e\xc4\x35\x49\x34\x9a\x18\xc3\x52\x28\xfa\x1d\x8b\x8a\xed\xf6\x77\x0c\x3a\xe9\x37\xd0\x49\x8b\x45\x7b\x2f\x29\x36\x67\xb3\xa3\x5a\x42\x5b\xfa\x4a\xf9\xf2\x32\x7d\xe5\x7d\x35\xfa\xaa\xe3\xb6\x4a\xdd\xcc\xae\xc2\x0a\xe7\xcc\x37\x94\x04\x4e\x6b\x40\x1c\x97\xe4\xe8\xae\xb0\xde\x0f\xf0\xd8\xb2\xdd\xf1\x1f\x64\x63\x4a\x76\x95\xc7\x59\xab\xf3\x37\x53\xbe\x72\x5f\x68\x4e\xbd\x1e\x27\xe6\x49\x51\xc4\xb7\xde\xbe\x0b\x5d\xa6\x36\x5d\xcb\x33\xc5\x47\xa8\xcd\xa5\x0e\x30\x44\x14\x9f\x55\x99\xf2\x42\x15\xfe\x33\xd3\x16\x13\xcc\x38\xfe\x95\xb5\x81\x33\xae\x83\xa3\xc6\x18\xb3\x2f\x85\xe6\xe0\x67\x31\x29\xc8\xcf\x62\x98\xca\xd3\x0b\x4d\x9f\xc6\x59\x36\x8f\x93\x8f\x65\xf4\x67\x36\x29\xc8\x9f\x59\x14\xca\xa7\x3c\x32\x97\x54\x48\xd2\x94\x6f\x44\xf8\x3d\xc3\x23\x4f\xdf\x5e\xc9\x1e\xe7\xbe\x2f\x1b\xcd\xda\x8a\xc3\x7c\xca\x67\xa8\x6e\x45\xa5\x8d\xdb\x4c\xfd\xe6\xb3\x1a\x4e\xff\x9e\xd9\x4b\xf2\x3f\xb3\x03\xdb\x2d\xfb\xdd\x07\xd2\xa9\x98\xf9\xb6\xd8\x29\xaf\x4b\xb4\xec\xa8\x0a\xaa\xb5\x7f\x07\xe6\xea\x05\xae\x63\xe8\x1d\x81\xcb\x26\x42\x94\x68\xb5\x42\x18\xc8\xed\x5c\x92\xca\xa0\x15\x08\x1e\xa1\x7e\x62\xa1\x00\xea\x39\xe1\x29\x5d\x81\x99\xdd\x17\xe0\x59\xdd\xb3\x92\xcc\x7d\xec\xd6\xbe\x30\x87\x09\x28\xae\x3c\x49\x04\xbb\x66\xe2\x56\x79\xc5\xf3\x98\xb2\x5a\x34\xa8\x9e\xea\x3b\x1f\x77\xdc\x97\x40\x62\x8f\x36\x75\x41\xed\x3a\x38\x07\x31\x79\x24\x0f\x04\x30\xa2\xf0\xe5\xe0\xcf\x79\xed\x24\xab\x66\x25\xb2\x98\xc3\x25\x2c\xb8\xd9\x10\xcd\x8c\xe4\x4d\x27\x8b\x7f\x61\x56\x82\x09\x55\xb8\x96\xb4\x81\x63\xd0\xdd\x6f\xfc\xb4\x80\x8c\x18\x27\xc7\x23\xcc\x39\x79\x3b\x7c\x13\x97\x25\xb9\x13\xfc\xad\x76\x49\xd0\xbc\xd4\xf0\xcc\x1e\x43\xda\xa0\xaa\x70\xcc\xc9\x9d\xba\xf2\x8e\xe4\x1e\x5c\x72\x72\x67\x54\xf8\xbe\x5e\xf1\x4d\x49\x83\x0a\x6f\xbc\xc0\xbe\x44\x63\x81\xb7\xa9\x65\xdc\xcc\x10\x96\x2a\xd3\x1f\x19\xf7\xd7\x5f\xc3\x63\x10\xba\x03\xc1\x25\xb3\xa2\x74\x46\xa7\x04\xeb\xad\x36\x81\xa9\xb6\x4a\x9d\xc8\xd6\x25\x7c\x93\x8b\xa7\x3c\xdb\xac\x9a\xdb\x93\xf2\x36\x67\x77\x45\x39\x82\xea\x64\x42\xe3\x42\x12\xd5\xd3\xbf\x5d\x96\x97\x9b\xd1\x28\x1e\xcd\x80\xa4\x86\x48\x63\xef\xc7\x2d\x66\x30\xb6\x1d\x13\xb6\xdd\x8e\x8c\x63\x91\x92\x50\x25\x31\xf8\x7a\x11\x06\x97\x22\xd0\xd2\xf7\xe5\xc5\x68\xbb\x2d\x1f\x3b\x57\xcd\x71\x3f\x14\x03\x8e\x0e\xe2\x3e\x29\x07\x1c\xc7\x7d\x92\x0f\xe2\xaf\x72\xcc\x49\xd9\x1f\x57\x15\x5e\xc8\x06\x2c\x58\x9e\xb6\xc2\xdf\x3c\xf9\xd8\xea\x79\xb3\xfa\x02\x81\x6b\x6b\x0e\x3c\x15\x5a\x73\x49\x12\x13\x3e\x50\x32\x25\x84\x38\x2f\xee\xac\x1f\x7b\x60\x16\x7d\x7b\xf8\x8c\xb1\x18\x28\x1f\x77\xac\x2f\x73\xe2\x82\xf0\xfe\x18\xcb\xaf\x7c\xc0\xbe\xca\xd1\xe3\x9a\x23\x6a\xbc\xe4\x64\x1a\x04\xde\xf6\xba\xe6\x96\xe3\xb5\xe4\x56\xe9\x9f\x9e\xa3\xa5\x36\x08\xb5\xe2\xe1\x92\xa3\x3e\x5c\xe6\xe9\x82\x96\x7c\x4a\xbd\x2b\x0e\x60\x8d\x59\x7a\x68\xea\x34\x94\x66\x30\xb3\x6f\x79\x93\xf6\x03\x41\xfc\xd0\x27\xa9\xae\x79\xdb\xb5\x7d\xed\x14\x0b\xe2\xb7\xf9\xcc\x73\xac\x6d\x84\x6a\x07\x1e\xa3\xf1\x6a\xa7\xa0\xe9\xac\x69\x39\xa7\xe8\xf7\x51\x3e\x2d\x66\x44\x09\xef\xe2\x56\x07\x8a\x73\xb9\x1e\xbc\x3b\x35\xee\xed\x5e\xd6\x39\xdd\xfc\x03\x4d\x8c\xfd\xc7\x49\x4e\x6a\xdf\x21\x45\x51\x38\xf7\xd6\x10\xa1\x38\x87\x8b\xec\x39\x07\xdd\xb7\x1b\x0e\x2e\x51\x7c\xf6\xe3\x0d\xdf\x99\x49\x70\xa3\x05\x47\xf4\xbb\x0a\x61\x8a\xba\x3b\x57\xa5\x05\xd2\xaa\x8a\xb9\x92\x09\xdc\x89\x04\xa4\x47\x6a\xbe\xc3\x3d\x02\xf5\xb9\x87\xc2\xbf\x68\xd7\x1d\xdb\x52\xf6\x5f\xb7\x2a\x2e\x31\xaa\xaa\x74\xb2\x67\xf8\x19\xcf\x41\x85\x95\x8c\xb0\x17\xf4\x3c\x4f\x09\x1d\x5e\x4b\xc2\xdc\x58\x11\x8a\xc0\xf6\x62\xbd\x10\x51\xdc\xfa\xf3\x28\x81\x43\xb7\x40\x77\x95\x96\xaf\xf9\xc4\xc9\xe1\x54\xa2\x8a\x74\x71\xb9\x19\x3d\x78\x74\x2a\x9f\x67\xa3\x81\xfc\x5b\x9c\x5c\x6e\x46\x0f\x47\xf0\xf1\x70\xb1\xb8\xdc\x1c\x8f\x4e\xe4\xc7\xf1\xe8\x0c\x3e\x62\xf5\x01\x31\x27\x90\xec\x24\x9d\x3f\xb8\xdc\x9c\x50\xf8\x38\x5b\x24\xc9\xe5\x26\x4e\xe0\x23\x3d\x8d\x17\xb3\x43\xfc\x56\xa2\x05\x56\xfe\x89\x17\xe9\xd3\xa5\xef\x1a\xcb\x2e\x8b\xc3\xcb\x1b\x6b\x68\x7f\xbb\xa5\x8f\x83\xff\xf1\xdf\x03\x38\xa3\x0b\xfe\xd3\x7a\x4d\x8b\xa7\x71\x49\x43\xa4\x64\x79\x5e\xf2\x1b\x13\xb0\xdd\x7e\xe2\xd6\x3e\xbf\xb7\x5c\x5e\xf3\x06\x03\xb6\xdb\x0d\xc5\xb0\xe4\x9b\x22\xf1\x31\xcd\xe5\x4d\xa0\xb8\x0c\x6f\xe5\x18\xc3\x56\xae\x0b\x8b\x20\xc4\xbb\xa7\xe2\xb5\x6b\x1a\x39\xe9\xc0\x6c\xd0\xce\x64\x13\xa8\xd7\x93\x04\x8a\x13\xdf\xb6\x32\xbc\x32\xe7\x47\x8e\x7f\xd0\x7d\x7f\xac\xba\xf8\xf8\xa1\x1c\x82\x93\x47\xc7\x03\xf8\x3b\x83\x91\x18\xc3\x48\xcc\x53\x78\xc2\x10\x25\x63\x78\x1e\xc1\xf3\x04\x9e\x0f\xe0\x29\x87\xee\xe1\x58\x8d\xd6\x38\x96\xcf\x93\x39\x7c\x3c\xa0\xf2\x79\x3a\x92\xcf\xf4\x21\x04\xa5\x09\x3c\x29\x7c\x50\x18\x67\x0a\xf9\xe9\x23\x78\xc6\x2a\x42\x56\x7b\x3a\x96\x15\x9e\x1e\x43\xc1\xa7\x27\xb2\xe0\xd3\x18\x4a\x39\x9d\xcb\x22\x4f\x29\xd4\x72\xba\x38\xbe\xdc\x8c\x1e\x8d\x21\xe6\xd1\xf8\x0c\x9e\x10\xf3\xe8\x08\x62\x8e\x1e\xa8\x8f\x53\x78\x9e\xa9\x0f\x59\xc1\x99\x6a\xfe\xd9\x48\x36\xe9\xec\x58\x42\x76\x76\x02\xed\x3e\x3b\x79\x04\x4f\x48\xf5\x40\x05\x3d\x90\x8d\x3d\x7b\x08\x69\x1f\xca\x82\xcf\x1e\x49\xf8\xce\xe6\x90\x6f\x2e\x9b\x7a\x96\xa8\xa4\xd0\x3b\x67\x09\xe4\x4e\x65\xb5\x67\x14\xb2\x51\x99\x2d\x1e\x8d\xe1\x29\x43\x62\xa8\x34\x3e\x81\x90\x13\x08\x39\x39\x85\xe7\x23\x78\x42\x33\x62\x00\x23\x7e\x00\x89\xa0\x33\xe3\x53\xf5\x2e\x21\x8a\x01\x8a\xf8\x11\x64\x06\x58\x62\x05\x45\x0c\xa3\x13\xc3\xe8\xc4\x09\x94\x07\x10\xc5\x00\x4b\x0c\xb0\xcc\x01\x96\x39\x40\x31\x3f\xa6\xf0\x94\x63\x3d\x57\xdd\x30\x3f\x39\x81\xa7\xcc\x36\x7f\xf0\x10\x9e\xb2\xb8\x39\xf4\xc2\x1c\x7a\x61\x0e\x35\xcf\xa1\xfd\xf3\x64\x04\x4f\x48\x0f\x0d\x4f\x8e\x61\xa4\x93\x93\x11\x3c\x1f\xaa\x8f\x47\xf0\x8c\xd5\x87\x4c\x9c\x40\xe7\x26\x50\x45\x02\x85\x27\x50\x78\x02\x0d\x4a\x60\xfe\x25\x30\xf3\x92\x04\xd2\x24\x10\x0e\x15\x25\x29\xe4\x4d\x21\x1c\xda\x96\x40\xdb\x52\x68\x4f\xaa\x5a\x92\x42\x4b\x52\xa8\x2c\x85\x36\xa4\x50\x4d\x0a\xd5\xa4\x49\x0c\x4f\x59\x4d\x9a\x1e\x41\x86\x14\x32\x40\xa9\x29\xa0\x28\x7a\x3c\x86\xe7\xc9\x00\xfe\x64\x0e\x7a\x72\x0a\x1f\x27\xb2\x26\x3a\x87\xf8\xb9\x8a\x9f\x9f\xc1\x73\x0e\x4f\x09\x2c\x4d\x1e\x41\x04\xc0\xbc\x18\x3f\x82\xa7\x4c\xb4\x38\x7e\x00\xcf\x53\x78\x42\xc8\x29\xc0\xbc\x38\x95\xc5\x2e\x1e\xc1\x24\x5d\x3c\x3a\x81\xe7\x43\x78\x42\x5a\x85\x2c\x17\x67\xea\x03\xe6\xf5\x02\xaa\x5a\xc8\x3e\x1a\x8f\x8e\xd2\x81\xfc\x3b\x1e\xc1\xf3\x48\x7d\x9c\xc2\xf3\x0c\x9e\x31\x3c\x53\x78\x52\xf9\x7c\xf0\x08\x9e\x10\xfb\x80\x42\x86\x87\x90\x1b\x00\x1a\x8f\x4e\x4f\xe4\x53\x0e\xf8\x78\xf4\xe8\x01\x3c\xa1\xa6\x47\x50\xc6\x99\x7c\x1e\x3f\x58\x5c\x6e\xc6\xa7\x63\xa8\xee\x74\x2c\x33\x9c\xaa\xba\x4f\x8f\xe1\xe3\xc1\x11\x3c\x8f\xe5\xf3\x14\xde\x4f\xe1\x7d\x7e\x0a\x89\x24\xc2\x19\x9f\x42\x03\x4e\x93\x33\x08\x4a\x21\x3e\x95\x11\x8f\x46\x72\x45\x8c\x1f\x8d\xe0\x23\x96\x80\x9e\x1d\xc9\x6e\x18\x9f\x1d\x1d\xc1\xf3\x14\x9e\xb2\x1d\x67\xc7\x10\x72\x0c\x85\x9c\x1d\xcf\x2f\x37\xe3\x78\x7c\x0a\x4f\x19\x1d\xcb\xc9\x36\x8e\x1f\xc8\x51\x19\xc7\x12\x53\x8d\x63\x68\x6c\x2c\x27\xc6\x38\x7e\xf8\x00\x22\x1e\x26\xf2\x79\x7a\x0c\x1f\xa7\xea\x43\xb6\x70\x0e\xb8\x63\x3c\x1f\x49\xe0\xe6\xd0\xb4\xf9\xf1\x43\x08\x82\x7e\x85\x35\x35\x9e\xcb\x35\x3d\x9e\x3f\x04\xa8\xe7\xd0\xd0\xf9\xa3\x11\x3c\xc7\xf2\x19\x43\xcf\xcc\xe3\x07\xf0\x7c\x04\x4f\xd9\xa8\xe4\x28\x91\x11\xc9\xf1\x31\x3c\x1f\xc2\x53\xc2\x9e\xa4\x50\x6d\x92\x1e\xc1\xf3\x04\x3e\xe8\x08\x9e\x47\xea\xe3\x11\x3c\x65\x07\xa5\x09\x24\x4e\xa9\xcc\x9f\x2e\x60\x3a\xa4\x72\xd3\x3c\x1a\x8d\x12\x78\xa6\xf2\x09\x45\x1e\x8d\x16\xa3\xcb\xcd\x51\x42\x17\xf2\x23\x59\x8c\x2f\x37\x47\x29\x85\x98\x54\xed\xc0\x47\x31\x6c\xba\x47\xf0\x71\x76\x06\xcf\xf8\x72\x13\x3f\x7c\x28\xb3\xc4\x0f\xe5\x60\xc6\x0f\x65\x17\xc5\x0f\x4f\x53\xf9\x94\x25\xc6\x0f\x65\x51\xf1\x23\x89\xee\xe2\x47\xa3\x87\xf0\x9c\xcb\xe7\xd1\x03\x78\x42\x88\x44\x98\xf1\x23\xa8\x2e\x7e\x04\x19\xce\x8e\x64\x67\xc6\x67\x12\x51\xc7\x67\xb0\xce\xe2\xb3\x07\x10\x03\x0b\x22\x3e\x93\xd3\x30\x3e\x9b\x1f\xc3\x53\x25\x96\x8b\x2e\x06\x84\x1c\xc7\x80\xe8\xe3\xf8\x88\xca\xa7\x5c\xba\x71\x2c\x27\x44\x1c\xcb\xe5\x16\xc7\xb2\x4f\xe3\xf8\xe4\x18\x9e\x90\x41\xee\x29\x71\x3c\x3f\x82\x6c\xf3\x13\x78\x9e\xc2\xf3\x11\x3c\xa1\x20\x89\x89\xe2\x58\xee\x84\xf1\x9c\x3e\x80\xe7\x23\x78\xa6\x97\x9b\x54\x13\x1c\x0b\xd9\x5f\x8b\xf9\x98\x5e\x6e\x16\x8a\x20\x59\xd0\x91\x0c\xa2\x47\xea\x43\xb6\x79\xb1\x38\xa3\xf0\x5c\xcc\x0e\x1d\xd1\xf0\xae\x46\xa6\xc3\xd5\xae\x3c\x48\xc2\xf5\xee\x63\x72\xfa\xf0\x51\xaf\xf7\x83\xa5\x36\xbc\xab\x7b\xde\xbc\x29\xdb\x63\xf8\x5c\xd9\x9a\xca\xc1\x3d\xaf\x73\x1f\x92\x83\x4e\x50\xa8\xdd\x3b\x0d\x93\xb2\x7c\x47\x3f\x09\x52\xa0\x5d\x93\x47\x02\xb1\xfb\x0c\xac\x5b\xef\x02\x02\x79\xfc\x76\x54\xe7\xe2\x88\x9a\x47\xe2\x5a\x71\x02\x14\x95\x77\xaf\x54\x7e\xac\xd3\x3e\x46\xda\x46\x56\x65\xef\x11\xc4\xe3\xd1\xf9\x60\x20\x2c\x03\x50\x95\xa8\x6f\xfe\xe0\x03\xb5\x38\xda\x7e\x53\x27\xd3\xa0\xa2\x3a\x48\xa8\xfa\xc8\x9b\xfd\x09\xc6\x6f\x26\xfb\xf4\xcf\xda\x12\x3b\x11\x24\x30\x39\xff\x3c\x4f\xc3\x62\xbb\xa5\xca\xbc\x5d\x49\x05\x10\xda\xca\xcb\x37\xab\xf6\x98\xd5\xa9\xf9\xc0\xf5\x7a\xdc\x54\x20\x49\xee\x62\x28\xdb\xfe\x8e\xeb\x11\x97\xd1\xa1\xef\x3a\xd6\x50\xe2\x7f\xe1\xb6\xcd\x85\xb9\xc3\x72\x0e\xa0\xc3\xee\x08\xdc\x15\xf1\x6b\x2a\x21\x0d\xe4\x44\x8c\x13\x01\x66\xf1\x4d\x84\x82\xd8\x8f\x12\x08\x17\x8a\x8b\xf0\x4a\x71\x11\x72\x11\xb3\xbc\x6c\x30\x25\xd8\x22\x3c\xf6\xb5\xb0\x80\x49\x20\x7c\x10\xb5\x2d\x7d\x99\xd7\x79\xd8\x34\x21\xa1\x40\x07\x29\x07\x2b\xbe\xe3\x96\x62\x96\xbc\x14\x08\x0b\x42\xa8\x33\x9f\xa9\x84\xa9\x1a\x95\x78\xa4\xfa\x07\x5e\x53\xf1\xb6\xdd\x1c\x27\x82\x5d\x9b\xb5\x73\x0e\x6a\x3e\x05\xe7\xc2\xfc\x37\xe2\x11\x25\x6d\xe1\x2d\x73\xee\x85\xbf\xca\x6b\xde\x4a\xff\xb6\xbd\xbc\x2c\x51\xd0\xa7\xda\x55\xa9\xfc\xba\xbc\x2c\xbf\x0e\x50\x05\x9e\x38\xc6\xe3\x5e\x2f\xfc\x50\xf3\x2d\x06\x83\xae\x8a\x6a\x07\x7c\x77\xc0\x6b\xf3\xc8\x9c\xc7\x9e\xc9\x21\x2b\x56\xca\xeb\x4f\x1b\x77\xba\xe6\x02\x88\xbc\xe0\xa1\x40\xca\x65\x8e\x72\x19\xea\x49\x82\x29\x4e\x7e\xa1\xb5\x45\x0b\xdf\xa3\x2b\xf5\xd1\x8e\xbd\xcf\x2e\xac\xd6\x28\x9b\x14\xd3\xf1\xac\xcf\xa2\x00\x7c\x6a\xbf\x94\x40\xc5\x69\xfa\x45\x50\x1d\x28\x98\x00\x3b\xe6\x48\x71\x25\x4d\x5c\x9f\x84\xb9\xd5\x3e\x15\xfe\xe0\x7f\xbb\xc3\x8d\xa0\x9e\x6c\x74\x9b\x99\x90\x7c\x5a\xcc\x7a\xbd\xee\x0b\x0e\x5a\x4e\xc6\x95\x2c\x30\xbb\x8c\x13\xd9\xf6\x63\xfc\xcf\x5c\x4b\x06\xd4\x17\xf2\x15\x15\x7a\xa8\xca\x6f\x6e\x9f\x5a\xef\x04\x0e\xdb\x7d\x49\xf2\xd0\xe3\x38\x06\x08\xdf\xaf\x53\x31\x74\x69\x0f\x8a\x5e\x8f\x86\x85\xe6\x70\x7e\xc7\x89\xd6\xf6\xfd\x86\xe3\x9f\x38\xfe\x07\x6f\x38\x5a\x57\xfe\x60\xea\x8a\xc1\x94\x18\x5f\xd6\xa6\xd1\x41\x5a\xc4\x57\x57\xf1\x3c\xa3\x81\x3c\xa5\x6e\xb7\x10\xf0\xac\xe0\x6b\xf8\xae\x42\x4f\x86\xfb\x4f\xbc\x26\x39\xfa\x0d\x37\x8c\x0e\xcf\xc5\xcf\xff\xf3\xdf\xff\x8f\x00\x1d\x00\xaa\xf6\x3c\xc7\x08\xbc\x6f\xf7\x09\x3e\x05\x68\x86\x10\x1e\x75\x89\x8f\xff\x6b\x6e\xb3\x7b\xbd\xf0\x1b\x4e\x84\xef\xef\xfb\x82\x8c\x41\x6c\xcb\x4b\xf5\xf8\xa8\xd7\xeb\xaa\x56\x3f\x42\xa8\x52\x13\xe4\x1b\x3e\x69\x02\x17\x79\x01\xff\xe3\xff\xd4\x2e\xf3\x02\xad\x59\x1c\x75\x58\x0e\xe6\xd3\xe7\x19\x4f\x3e\x9e\x77\xb4\xf7\xf0\xf1\xfa\xd3\x79\x47\x3b\x24\xd7\xde\xf4\x06\xe3\xf5\xa7\xc0\xf3\x0c\xbc\xcf\x7b\x52\x50\x63\x49\xfd\x91\xd7\x1c\xad\xff\x64\x14\xb7\x3b\x3f\x71\xad\xca\x04\x5d\xb7\xb7\xb7\x9e\xfc\xdf\xff\xd7\x93\x00\xc9\x49\xf3\x91\x83\x2b\x87\x31\x92\xb3\xec\x1b\xbe\x01\x9b\x19\x4f\xc1\xa3\xf9\x8f\xc0\xc7\x51\x0e\x9d\xb7\x5b\xb9\x20\x16\x82\x90\x7c\x58\x78\x3e\xdd\xf5\x84\x28\x54\x39\x63\x7c\xb4\xbf\x1c\x0b\x21\x29\x54\x11\x03\x5d\xd4\xc5\xb1\xba\x1d\xe5\xf8\x77\x72\xf1\x3b\x1d\x0c\x72\xdc\x25\xc1\x65\x7e\x99\xcf\x8d\xf2\xc2\xe1\x65\x7e\x68\x2e\x02\x26\x3e\x43\xa7\x2e\xcb\x0a\xdc\x45\xcb\x59\x14\x17\xa4\x38\x77\xa2\x7f\x8e\x13\x93\xcb\x0d\x0c\x78\xbe\x0c\x8c\xfb\xd4\x79\xbe\xdc\x8a\xdf\x08\xed\x72\x8a\x1a\xc9\x3b\x36\x18\xa3\x09\x1b\x8c\x23\x86\xb0\x55\x92\x7f\xad\x9c\x59\xc9\x02\xbb\x24\x9e\x84\xfa\x6e\x83\x7b\x66\x60\x11\x16\x7d\x12\xf7\xc7\x28\xb2\xb1\x72\xe7\x62\xfd\xb1\x27\x08\xdc\x6a\x41\xc3\xb6\xbf\xb8\xcc\x27\x5b\xd9\x0b\x15\xfe\x3d\x27\x37\x2c\x4f\xf9\xcd\xd0\x37\x89\x34\x69\xb2\xe4\x5c\x11\x35\x16\x5f\x97\xd4\x39\x7c\x3b\x9b\x46\x77\x5c\xd5\x61\x91\x85\x59\x21\xda\x9b\x9c\x16\xc6\xed\x9a\x2b\xa7\x4e\xff\x78\x45\x1a\xa5\xf2\xb0\x2b\x40\xf2\x0b\x76\x65\x43\xa3\xa2\x2e\xa1\xa8\xd7\x1b\x75\x89\x18\x26\x7c\x25\x23\x9f\xe7\xe9\x1b\xce\x72\x51\x86\x01\x40\xfb\x8e\x3f\xcf\xd3\x00\xee\x70\x7e\xc3\x49\xc0\xf3\x84\xaf\x6f\x03\x96\x87\x7f\xe1\x0e\x17\xc9\x1d\xe0\x2f\xbc\xb1\x84\x74\x52\x1c\x28\x08\xce\x03\x84\x03\xd3\x2a\x47\xe5\xfe\x85\x0f\x55\x42\x84\xff\xc0\x9d\xa3\xf7\x3f\x73\xfc\x57\x39\x27\x3f\xd2\x5b\x89\x72\x4b\x72\x77\x1c\x05\xcf\x73\xa0\x7d\x1e\x45\xc1\x37\x71\xf2\xb1\x5c\xc7\x09\x0d\xf0\x59\x14\xbc\x8b\xe7\x01\x1e\xbb\x04\xe3\x87\x51\xf0\x76\xc9\x16\x22\xc0\xe3\xd3\x28\x78\x2a\x8a\x2c\xc0\xe3\x47\x51\xf0\x24\x93\x41\x67\x51\xf0\x26\xde\x94\x34\xc0\x47\xa3\x28\x78\x1a\xaf\xcb\x97\x3c\xf9\x18\xe0\xa3\xd3\x28\x78\x5e\x26\x01\x3e\x3e\x8a\x82\xb7\xaa\xf4\xe3\x63\x99\xf8\x8a\xfe\xb4\x0e\xf0\xf1\x89\x7a\x7f\xc6\x6f\xf2\x00\x1f\x3f\x90\xf5\xa5\x01\x3e\x7e\x18\x05\xdf\xf1\x95\x4c\x7c\x1a\x05\x2f\xa9\xac\xf6\xf8\x51\x14\x40\x96\xb3\x28\xf8\x51\x2e\xb5\x00\x9f\x8c\xa2\x40\xe5\x3c\x91\xe5\x14\x2c\x17\x6f\x93\x42\x7e\x3e\x88\x82\x17\xa0\x4b\x14\xe0\x93\x87\x51\xf0\x4c\xd9\x6e\xc7\x0f\xce\xa2\xe0\x3c\xc0\x0f\xc7\x51\x40\x02\x7c\x36\x8e\x82\x1f\x78\x1a\xe0\xb3\x23\xf3\x72\xac\x5f\xc6\xa3\x87\x51\xf0\xb5\xfc\x3f\x85\xa4\xe3\xd1\x59\x14\x0c\x02\x3c\x1e\x8f\xa2\x60\x28\xff\xc7\x51\x70\x18\xe0\xb1\x6c\xa0\x29\x7d\x7c\x7a\xac\x12\x3d\x7a\x08\xd5\x8c\x1f\xe9\xcc\x8f\x1e\x45\x01\x96\xff\xba\x90\x33\x5d\xc8\x99\x2e\x44\xd6\xff\xf7\x00\x1f\xc9\x6e\x9c\x06\xf8\x48\xf6\xe1\xe5\xa5\x7c\x19\x47\xc1\x4c\xfe\x1f\x45\xc1\x6f\x03\xfc\xf0\xf8\x48\xf6\xa3\xec\x05\xf9\x7a\x6c\x5a\x2f\x3f\x4e\x4c\x3f\xc9\x8f\x07\xb6\x8b\x1e\x1e\x1f\x9d\x1e\x39\x10\xe5\xe7\xb1\xe9\x5b\xf9\x61\x7a\x5c\xbe\x3f\x74\xe3\x22\x3f\x4f\xfd\xa1\x79\x78\x7c\x3c\x3a\xb2\x9d\xea\x11\x20\xdf\xd7\xcf\x7c\x19\xbd\xa6\xd9\x57\x47\x13\x3a\x14\x3c\x52\x5a\xa4\xde\x3d\x73\xbc\x27\x2d\xc8\xc2\xc9\x2c\xde\xbd\x6f\xec\x2e\x0d\x40\xe6\xdd\x89\x08\x7e\xcf\x43\x31\x1d\xcd\x50\xe4\xdd\x9e\xe6\xfb\x93\xd3\x38\x04\xf1\x4d\x14\xd5\x54\x8d\xbd\x9b\xd7\xd8\x27\xc9\x6e\x94\x8c\x53\x02\xe7\x01\xf2\x6d\x21\x09\xc4\xa2\x4b\x94\x64\xcc\x6b\x16\x16\xc8\x38\x4d\xf9\x41\x7e\x60\x4e\xd8\x84\x29\x22\x51\x35\x27\x8f\xc3\x02\x45\x02\x9e\x23\x03\xc6\x5a\x62\x5e\xee\x1d\x7a\x59\xad\x52\x05\x82\xf6\x63\x52\x38\x18\x72\x1d\xa4\x2b\x53\x66\x51\xb6\xdb\x11\x21\xae\xca\xba\xad\x7a\x30\xbc\x51\x68\xef\x16\xfa\x5a\xf3\xf2\xed\x21\x92\xc8\x5d\x55\xe0\x74\x7b\xc4\x30\x59\x5e\x10\xae\x5e\x3c\x48\x55\x3c\x8e\x27\xa3\x88\x7b\xc8\xdc\xc2\xce\xe3\x86\xc0\x8c\x85\xc5\xf6\x3a\xc8\x96\xe7\x5d\x52\xf4\x7a\xe2\xc2\xcb\x1a\xeb\x66\xff\x99\xd7\xa5\x14\xf2\xcf\x39\x9f\x00\x23\xd3\x60\xc5\x41\xf4\x7a\x60\xb3\xc1\xdd\x3a\xba\x48\x42\x84\xb2\xe8\x40\x88\xf0\x68\x8a\xdc\x24\x05\xc8\x99\x82\x15\x83\xd4\xaa\xea\xc2\x89\xce\xdf\x05\xa3\x10\xbd\x5e\x28\xe1\x43\xb8\x40\x51\x4b\x44\x81\x70\x8e\x0e\x72\x52\x54\x2d\x7d\x53\xc6\x75\xab\xd5\x85\x55\xdb\xef\xe7\xf2\xe4\x07\x8a\x47\xfa\x48\xf7\x78\xd4\xeb\xbd\xe3\x5a\x41\xc3\xec\xc7\x02\xa1\x36\xea\x7b\x13\x37\xcf\xe9\x6a\x9a\xfb\x86\x72\x3a\x99\x4b\xe4\x5d\x57\xc7\xb1\x32\xd4\x18\x13\x36\xe5\x33\x5c\x12\x0d\x63\x6c\xa7\xec\x20\x8f\x64\x1e\xed\x68\xaa\x7c\x1c\x6b\x9d\xf0\xf2\x22\x76\xde\xab\x3a\x60\x4f\xa1\x24\x24\xd6\x56\x35\xe0\xd5\x45\x43\x35\x25\x22\x84\x4f\xca\x28\x7f\x3c\x22\x24\x84\x1a\xfb\x24\x9f\x21\x5b\x95\xcc\xa1\x6d\xea\x01\xec\x5e\x9a\x9a\xbc\x71\x49\xa0\x08\x07\x23\x00\x2d\x73\xe3\xc1\x58\x0e\x8c\xfe\x06\xf9\x59\x19\xe0\x3b\xf1\xdb\xe9\x2b\xd9\xf9\xd6\x17\xdd\x39\x6b\xed\x78\x86\xd0\x39\x62\x7d\x6b\x49\xa9\xc3\x2e\x46\xdb\x2d\x7b\x5c\xc3\x1a\x13\x10\x4a\x66\x95\x6f\xde\xcd\x9d\xbd\x47\xe7\xf4\x62\x3c\x3a\xa7\xfd\x3e\xfa\x2b\x9f\xd2\xfe\xc9\xa3\x19\x81\x97\xb3\x87\x33\xa2\x84\x2d\x42\x2d\xaf\x4f\xc9\xc3\x07\xe7\xf4\x82\x9c\xb9\xe4\x26\x09\xb4\xe9\xa9\x66\x9e\xb9\xf4\x63\x99\x7c\x7c\xe4\x4a\x1f\x8f\xc7\xba\x78\xc0\xf9\x33\x12\x7c\x1b\xf4\x69\x85\x42\x85\xa0\x92\x98\xec\x18\xd1\x08\xe6\xe6\x27\x4a\x71\x53\xce\x6b\xbf\xb2\x2c\xc5\xcd\xab\x57\x5f\x7d\xf5\xd5\x2b\xf8\xe1\x57\xf8\xd5\xd8\xfe\x54\xd8\xab\x97\x7b\x7f\x5f\x12\xaf\x2b\x9a\xef\xfd\x61\x59\x3d\xd4\xaf\xca\xfb\xea\xab\xf1\x18\x5e\xc7\x2f\xef\x2b\xfe\x9e\x6a\x55\x7c\x80\x05\x09\x0a\xef\x87\x8b\x57\xaf\x56\xf0\x2b\xfe\x99\xdf\xaa\xf6\xd3\x81\xb9\xfd\x7d\x95\xe7\x32\xd1\x3f\x55\xf4\xbf\x06\x0a\xfc\xa0\x65\x81\x36\xd7\x01\x77\xa5\x7b\xef\xa6\x47\xa7\xea\xe3\x51\x9c\xcc\x0e\x71\x41\x0e\xa7\x72\x12\xcc\x0e\x31\x23\x87\xd3\x97\x3f\x16\xb3\x43\xcc\xe5\xdb\x7c\x9c\xcf\x0e\x71\x4c\x0e\xa7\xf2\xc5\xed\xff\x65\xcd\xf3\x06\x2c\x56\xe3\xd6\x08\x10\xb2\x36\xf9\x20\x38\xc9\xab\xe6\xa5\xbe\x72\xaf\xdc\xcd\x15\x0f\x62\xe3\xd9\x38\xb3\xae\x45\x71\x42\x36\xc6\x8f\xc7\x42\x9e\x85\x96\x64\x74\xbe\xbc\x48\xce\xfb\xfd\x25\x5a\xa8\x73\xc7\x15\x09\x33\xb2\xf1\xd9\xcd\x4b\x84\x2e\xc8\xd1\xc9\xe9\xc4\x9e\x72\x32\x14\x8d\x4f\x8e\x4e\x2e\x48\xd6\xeb\x65\x17\x64\xfc\xe0\xe8\x64\x12\xfc\x18\x44\xe3\x07\xc7\x0f\x6d\xe0\xe9\xe9\xf1\xc4\xa2\x83\x6c\x20\xe3\x50\x34\x3e\x3d\xb5\xd9\x8e\x8e\x8e\x46\x93\xa0\x08\xa2\x47\xe3\xb3\x23\x13\xf8\xe8\x68\x74\x3c\x09\x6e\x82\xe8\xd1\xd1\xe8\x84\x90\x6c\x12\xcc\x83\x28\x78\x19\xa0\x83\x25\x71\x2e\x2a\xd7\x24\x78\x19\x58\xc8\xef\x82\x55\x40\x48\x78\x45\x16\xd3\xe5\x0c\x4d\xe4\x93\xac\xa3\x35\xb9\xaa\xfc\x3c\x69\x23\xcf\xd8\xcb\xd3\xeb\x05\xf2\x18\x97\xaa\xbc\x41\x1e\x44\x4c\x75\xe3\x15\xea\xf5\xc2\x94\x5c\x61\x88\xbf\xea\xf5\x42\x95\xe2\x47\x70\x96\xcf\x8b\x70\x49\xc6\x78\x4d\x16\xd3\xd1\x4c\x16\x3d\x18\xeb\xc2\xfb\xf5\xc2\x65\x5d\x6b\xfd\xbf\x98\x2e\xfb\xe3\x99\xae\x69\x1c\x48\x62\xb6\x4b\xae\xb6\xdb\x75\x57\x47\x6d\xb7\xc1\x38\xe8\x42\xfa\x5c\xfe\x6f\xb7\xaa\xd2\x35\xc2\xb2\x4d\xaa\x56\x37\x6e\x72\xd4\x03\xec\xd5\x87\x54\xd1\xaf\x02\xcb\x75\x0f\xbe\x92\xc0\x3b\xdc\xba\x22\xcb\xfe\xf8\x7c\x75\x91\xf4\x7a\x10\xb5\x98\xae\x66\xe7\xfd\xfe\x0a\x9d\x9b\x14\xb7\x64\xd9\xeb\x05\x5d\x05\xee\x40\xc2\xa4\x52\x8f\x75\xea\x09\x40\xfe\x2a\xc0\xd7\x64\x79\x7e\x7d\xb1\x3a\xef\xf7\xaf\xd1\x62\x7a\x3d\x23\xb7\x07\x4b\xb2\x1a\x8c\x2b\x03\x27\x6e\xf4\x3b\x18\x17\x00\x40\x0f\x82\x97\x01\xf8\x6f\x84\x52\xaf\x74\x8f\xbc\xdc\xe9\x7b\xb4\xd3\x64\x50\xe7\x87\x34\xaa\xc1\xd0\x30\xaf\x51\x36\x72\x35\x43\xaa\x5d\xd7\xe0\x8a\x18\x2a\x0c\x97\x13\xd5\x26\x98\x56\xf8\xbd\x0e\x5d\x5d\x24\x13\x99\x41\x4d\x36\x59\xe0\x2d\x99\x6f\xb7\xef\x27\x12\xa2\xe0\xc7\x7b\x5a\x2a\xcb\xbe\xc1\xcf\x41\x0a\xda\x03\x14\x81\xfe\x85\x0f\x25\x88\xba\x90\x25\xa4\xea\xf7\x97\x32\x55\xaf\xe7\x27\x81\xc6\x9d\x3f\x77\xd6\x9b\xcb\x70\x84\x3f\xe1\xa5\xaf\xab\xf6\x96\x2c\xf1\x6b\xf2\xdc\x98\x08\xaa\x95\x15\xbc\x0c\x60\x12\xcd\x54\x41\x30\x98\xe4\xed\xf9\xf5\xc5\x12\xa0\x89\x4d\x55\xd7\x12\x9a\xb7\x17\xd7\xbd\xde\x73\x23\x9c\xfc\x1a\x8f\xb0\xaa\x71\x8c\xdf\xe2\x6b\x4d\x96\x3f\x21\xd7\xba\x86\x6b\x59\x4a\xaf\xe7\x17\x01\x3d\x71\xde\x52\xc2\x11\x7e\x22\x4b\xc0\x6f\xb5\x37\xef\x7e\xff\xfa\xe0\xad\xcc\xbd\xa7\x36\xd9\x3e\x8d\xcd\xc6\x84\x3c\xb7\xf4\x6f\xaf\x17\xde\x90\x8d\xd5\xd1\xb9\x2c\xfb\x4a\x8e\x10\x52\x00\x3e\xbc\x71\xfc\x64\xfc\x7c\xb8\xc9\x95\x66\x9c\xe9\xb9\x11\xf6\xe2\x11\x42\x78\x0c\x5e\x2a\x9f\xa3\xb6\xe2\x2f\xcb\xbe\xd2\xfc\x09\x55\x12\xc1\x07\x8d\xe2\x6b\xa3\x92\x0c\xfc\xc8\x44\x96\x7e\x54\x87\xbd\x09\xcf\x18\x43\xac\xe0\xe6\x1f\x21\xec\xd2\x77\xeb\x90\xd5\x6a\x73\xa9\x70\x22\xab\xc2\xcf\xab\xca\xb1\xcd\xde\x0e\xaf\x69\x51\x32\x9e\x93\xe0\xc1\x70\xfc\x60\x78\x14\xe0\xb7\x15\xaa\xa9\xd5\x06\x1c\x24\xdd\x3c\x03\xf3\x9f\xd6\xbc\x10\x65\xaf\xb7\x13\xb3\xe2\xe9\x26\xa3\x13\x1a\x16\xf4\x1f\x1b\x56\xd0\x30\x18\x0e\x0f\x87\xc3\xc3\x8c\xcd\x0f\x9d\x5c\x71\x80\x50\xd4\xc2\x2b\x49\xe9\x02\x8e\x42\xea\x7f\x18\xaf\xd2\x89\x7a\x0d\xa7\xed\xc5\xcc\x30\x45\x11\x0d\x1d\x0b\x1a\x55\x35\x77\x1a\xc1\xa6\xa4\x9d\x52\x14\x2c\x11\x81\xdb\x25\x85\xbd\x3c\xda\x95\xae\x13\x68\xd7\x0a\xc5\x4f\xb9\x82\x22\xed\x80\xdb\xcf\x4e\xd0\x17\xca\xf4\x44\xc9\x56\xeb\x8c\xca\x36\x53\x5f\x5b\x31\xf7\xca\xd7\xbb\xe8\x61\x38\x89\xd0\xa1\xa6\x01\x02\xeb\x16\xbc\x66\xe1\x47\xdd\xdc\x4c\x42\x3a\x64\x20\x76\xfd\x34\x2e\x29\x18\x78\x0a\x58\x80\x30\x25\x54\x4b\x7c\xa1\x88\x3a\xf2\x15\x7b\x77\x3e\x21\x88\x05\x8a\x49\x10\x44\xc1\xdf\x02\x04\xf7\x3e\x70\xff\x83\x02\x9c\x7b\xf0\x15\x21\x95\xc4\x78\x48\x87\x39\xfd\x04\x9a\x2c\x72\xb2\xa0\x5e\x4f\x80\x75\xe8\x5a\x20\xd6\xf6\xc0\xaf\xe8\x27\x92\x83\x9a\xc4\x15\xfd\x84\x0c\x19\xf1\x91\xd6\x15\x7d\x76\x35\x15\xe5\xee\xb1\xe3\xeb\xc6\xdd\xc4\x69\xbb\x8a\xe1\xe1\xe5\xf0\xf0\x0a\xd7\x2c\xc8\x68\x8b\x84\x35\xc1\xd0\xbc\xdf\x47\x9e\xa6\x62\xaf\x07\xa7\xc6\xdd\x42\xbc\x33\x1b\x08\xdd\x7d\xa4\xb9\x86\x39\x8d\x45\x4c\xbc\xfb\xb3\xfd\x7e\xd8\xb5\xd5\x97\xb5\x32\xf6\x6c\xce\x2e\x36\xc0\x68\xd1\x9a\x9a\x46\xc4\x8b\x33\x1a\xd0\x2e\xbf\x71\x06\xab\xfc\x77\xd7\x6c\xca\x61\xa6\x20\xac\x94\x95\x19\x9e\xc4\x99\xb1\x38\x23\xdf\x87\x34\x4f\x7b\xbd\x5c\xe3\x19\x2f\x10\x19\x5e\x83\x17\x06\xde\x7a\x95\x79\xc0\x03\x7b\x13\x0b\xb1\x26\xd5\x5b\x39\x85\x95\x5a\xbf\xf6\xef\x7a\xe0\x4a\x90\x33\x59\x01\x03\x8e\xdc\x5d\x06\xd4\x28\x0d\x3c\x4f\x27\x71\x0e\x0e\xaf\x1b\x61\xfa\x26\x6f\x98\x6c\x8a\x02\x98\xb0\x80\x15\xa1\xe5\x24\x57\x6e\xae\xfb\xa5\xbe\xa5\xc3\xbc\x72\xea\x9a\x74\x5a\x28\xc7\xba\x33\x9c\x91\xd1\x79\x76\x61\x88\xcd\xf3\xcc\xdc\x39\x25\x64\x33\xcd\x66\x78\x41\xc2\x6e\x02\x63\x39\x2c\x79\xb6\xdd\xe6\xf2\x2f\x44\xc8\xf5\x53\xa2\x67\xaa\x9c\x80\xca\x51\xab\x4e\x2f\x67\xf7\x44\xd7\x43\xbc\xb0\x48\xbf\xcb\xc9\x35\x09\x43\x48\x91\x7c\xdc\x6e\xcd\x9b\xa7\xb6\xa4\x73\x23\xdc\x28\x06\x16\x8c\x2d\x87\xaf\x25\x21\x01\x79\xed\x8b\x3f\x31\x54\x56\x13\x01\x4a\xed\x08\xeb\xcc\x72\x1c\x7a\xbd\x38\x14\xb8\xf0\x83\x70\x62\xe6\xb2\x0e\x94\x9d\x98\x0b\x59\xbc\x7a\xd3\x58\x5f\x7f\x69\xc5\xba\xbe\xd0\xdf\x3f\xe5\x4c\xd8\xac\x29\x6d\x66\x05\xb5\xfa\x85\x51\x86\x38\x02\x83\x2f\x7a\xf2\x6a\xd2\x44\x8e\xc0\x92\x1c\x9d\x2f\x2f\x4c\xb2\xf3\x65\xbf\x0f\xf4\xa2\x2c\xc8\xcc\x7e\xa5\x52\x0b\xea\xb3\x32\x0a\x03\xcc\x91\x86\x1d\x48\xa7\xca\xbb\x97\x9a\xc7\xc9\xc7\x9f\xd6\xe1\xc2\x6d\x87\x83\x70\x31\x05\x0a\x77\x6c\x42\xa2\x11\xf4\x8d\x2a\x60\x34\x33\xbb\xbd\x0e\xe9\xf5\xf4\x0b\xb8\x50\x98\xb8\x74\xa6\x4e\xc7\x1a\x82\xa1\x0e\x95\x29\xbd\xaa\xee\x04\x5a\x61\x6c\x4a\x9c\xc4\xb9\xd2\x81\xed\xd2\xed\xd6\x6c\x73\x5d\x8b\xc2\xb6\xdb\xae\x68\x09\x6f\xdc\x5e\xe5\xde\xf9\xa1\xd8\x2f\x65\x5b\x20\x85\x3a\x5b\xc5\xb9\xbb\x5c\x89\xad\x8b\xba\xe1\xe9\xbc\xdf\xaf\xea\x52\xe3\xa8\x25\x7b\xaf\x97\x0f\x06\x1e\x8a\xf2\x99\x7f\x30\xbb\x18\x36\xf6\xaa\x14\xdf\x6e\x2d\x69\x81\x52\xf8\x46\x72\x36\x80\xd8\x4c\x30\xa0\x83\xf2\x7c\xd3\xeb\x75\xcb\xf3\x0d\xd9\x40\x8f\xa2\x90\x0d\xcb\x35\x4d\x26\x5c\xbf\xe0\x0d\xfc\xa1\x88\x29\xd3\x50\x92\x4e\xe2\x29\x45\x80\x2f\x36\x8a\x38\xcc\x48\x39\x51\x96\xa3\x74\x2a\xb9\xe9\x68\x8b\x6b\xca\xe1\xb8\x2c\x01\x27\x90\x0c\x56\x4b\x44\x8d\x97\xfc\x58\xd0\x30\x43\x07\x3e\xbc\x12\x20\x8d\x71\xeb\xb0\x92\x3b\xa8\x23\xc3\xb2\xbc\x48\xc3\xa7\xca\x4b\x30\x2c\xfd\xdd\x3c\xca\x34\xa1\xc3\x97\x89\xf9\xb4\x85\xd1\x3c\x8d\x98\xc6\xcd\x21\xbc\x20\xac\x11\xa0\x09\x07\xef\x1e\x4c\x19\x41\x7e\xee\x25\x04\xad\x3f\x83\xac\xa3\x58\x52\xc5\x30\x71\xe3\x69\xec\x74\x29\xa2\xd8\x9b\x9f\x65\xd8\x6a\xab\xba\x66\x9d\x4c\x42\x07\x6a\x90\x0e\x93\xab\x95\x8d\x1a\xa8\xdb\x8b\x0a\xfd\x46\x5a\x2f\x15\xea\xf6\xdc\x20\x86\xed\x56\x27\x92\x68\x36\xe5\xb9\x78\x01\xc1\xaa\x9f\xea\x6e\x34\xee\xb5\xc3\xc8\x16\xa1\x00\x85\x0e\x5f\x9c\xc6\xe0\x41\xbc\x5b\x34\x7a\x3c\x18\x3b\x42\xe1\x4d\x5c\x96\x5a\x61\xc6\x62\x2c\x6b\xe5\xba\x24\xc2\x6e\x1d\x07\x34\x02\xb6\xe2\xb9\x03\x46\x19\x02\xb0\xc2\x5d\x1b\xb3\x99\x64\xa4\xd4\x66\x00\xb2\x3a\x4e\x84\x81\xab\x85\xbd\x58\xbc\x64\xb9\x12\x53\x32\x1b\x51\xa6\x76\x18\xb5\xdb\x29\x9d\x9c\xa4\xd7\x4b\xa6\xa3\x19\xba\x8b\x07\x03\x1c\x66\x9a\x92\xca\x0c\x79\x15\x4a\x38\xeb\xa1\x33\x84\x99\x35\x79\x9e\xf8\xd2\x2d\x9e\x7d\xa7\x4a\xbb\xf4\x34\xac\xdd\x8b\xd1\x64\x14\x99\x5e\x98\xc6\xb3\xaa\x02\xc5\x67\x09\x20\x10\xa4\x72\x01\x39\xb2\x4c\x19\x41\xd6\x09\xf4\xda\x72\x91\xfe\x45\xb0\xcd\x1c\x2a\x9b\xdc\x15\xf6\x03\x89\x47\x1c\x71\x74\x27\x42\x8e\x03\x58\x8d\x81\xd1\x64\xba\xab\xf0\x86\xf0\xe1\x8a\x8a\x78\xbb\xbd\xab\x70\x46\x3c\xe6\x51\x22\x71\x14\x97\xb3\x20\xe9\x92\x8d\x3c\xb7\x36\x90\x55\x82\x9c\x85\x05\x12\x4f\x93\x99\x62\x30\xf1\x69\x32\xc3\x6b\x32\x3a\x5f\x5f\x2c\xcd\x08\xae\xcd\x08\xa6\x64\x39\x5d\xcf\x0e\x16\xee\xb4\x53\x84\x29\x96\x27\xa3\x30\xb5\xd3\x37\xd5\x63\x28\x47\x20\x23\xdd\x91\x12\xbd\x58\x91\x3b\x87\x4b\x5a\x1c\x31\x28\x04\xa1\x5b\x88\xf5\xd6\x06\x56\x30\x30\xac\x06\xef\x55\x15\xa1\x74\x41\xa1\xce\x28\x9b\x4c\x67\x91\xda\x63\xc0\x7a\x6e\xa3\x12\x67\x19\x49\xd5\x22\xf4\x22\x30\xb5\x08\xb3\x95\xea\xaa\x84\x5a\x80\xfb\x6a\x13\x96\x0e\x30\x6f\xd6\x0b\x43\x75\x20\xbc\x15\x0e\x64\x98\x87\xd5\xe8\xd0\x02\x17\x0a\x0f\x3b\x60\x3f\x13\x42\x58\x18\x32\x26\xcc\x35\x31\xa4\x43\x6c\x3d\xbe\x37\x6b\xb1\xbb\x5b\x28\xa3\x6f\xb0\x53\xe4\xfb\xf0\x73\xa1\xaa\x06\x24\x5d\xf8\x48\xda\x90\x4a\xc4\x87\x6a\xe2\x37\x24\xf2\x1b\xa2\xcb\xb1\x44\x1a\x60\xf8\xdd\x5a\x2b\xa7\x04\xa6\x09\x14\x16\xc6\x20\x42\x99\xe7\xb4\xa8\x5b\xfd\xac\xdd\x93\x2a\x3c\xab\x60\xa6\x7e\xa7\x99\x2d\xca\xc1\x55\x55\x66\x88\xca\x30\xc6\x1b\x54\x49\x24\xb1\xb1\xd3\x5c\x19\x60\x44\x9b\xe6\x4a\xb8\x05\x2e\xc2\xf4\x76\x46\x36\xd3\x5b\x27\xfd\xb5\xaa\xfe\x23\x8f\xe5\x74\xb8\xda\x64\x82\xad\x33\xfa\x89\xe5\x57\x0d\xdc\x65\x16\xca\x97\x6a\xaa\xd5\xce\xb8\xee\xe2\xaf\x45\xf6\x78\x47\x6a\x07\xb4\xf4\xcd\x56\xd9\xeb\xb1\xc7\x83\xf1\x84\xf5\xcd\x2e\x13\x29\x1b\x02\x9c\x08\x7d\xbc\x99\x18\x19\x9e\x1c\x45\xee\x78\xc4\x27\xc6\xb1\x45\xde\x0f\x8b\x89\xe7\xdd\x22\x1a\xa1\x68\x30\xae\x1c\x76\xd9\x8f\x7a\xf8\x46\xd0\xa2\x4e\xeb\x08\x3d\x2f\x41\x1d\xda\xae\xfe\x9c\x16\xf7\x60\x99\x7c\xa7\x40\x6f\xb5\xe3\x7c\x08\xa1\x8d\x72\x87\xde\x97\xa9\xc0\x0f\x03\x3b\x14\xb6\x94\x5a\x94\x5a\x04\x3a\x08\x55\x66\x55\x59\x70\x0c\xa9\xc2\xfd\x4c\xce\x04\x9f\x17\x78\x90\xc9\x2d\x11\x46\x0c\x08\xf0\x78\x98\x64\xbc\xa4\xbd\x1e\xd3\xc7\x3c\xd3\xd9\x7e\x26\x53\x84\x67\xb1\x4e\x1d\x64\x0d\x55\x13\x2e\x88\x2e\x68\x52\x84\x19\xd6\xef\x98\xc9\x73\x29\x8e\x87\xeb\xb8\x28\xe9\x33\x9a\xb1\x15\x13\xb4\x28\xe5\x60\x21\x49\xbd\xad\x79\xd9\xeb\x75\x77\xe3\xad\x04\xb6\x3a\x6f\xea\xe2\x10\xbe\x07\x28\x49\x4c\x64\x6c\xf5\x56\xdc\x66\xf2\x74\xe7\x7d\xf5\x83\x4e\xd0\xaf\x07\x0c\xa0\xbc\xe0\x60\xa1\xec\x06\x99\x0e\x21\x99\x95\xfa\x5a\x68\x26\x6b\x49\x62\xff\xe0\xce\x0c\x08\x4e\x6f\xb3\x59\x04\xc2\x0b\xdb\xb4\x9d\x96\x81\x1f\x93\x7d\x6d\x40\x38\x56\x5f\xba\x11\x61\x29\xa9\x73\x0d\xbe\x8b\x88\xfc\x0f\x84\x4b\xef\x90\x3f\x3e\x1c\x61\x37\xbe\x38\x21\xa3\xf3\xc4\x37\xc6\x90\xa8\x29\xb1\xc0\x4b\x92\x4f\x93\x99\x1e\x39\x39\x62\xcb\x21\x5f\xd3\x5c\x0d\x18\x32\x63\x63\xc6\x61\xd9\x6c\x86\x72\x13\x21\x87\x46\xe5\x6b\x8e\xcc\xd2\x7c\x93\xda\x42\x5b\x9a\x0d\x50\x21\xee\x89\x79\x09\xb9\x5a\x2f\x38\x08\x50\x34\x42\x78\x59\x1b\xcb\x65\x73\x2c\xeb\x01\x03\x09\x40\x00\xe2\x7b\x8b\x5e\x6f\x71\xb1\xe9\xf5\xc2\x0d\x59\xa0\x6a\xd3\x95\xfd\xd1\x3e\xbc\x1b\x3d\xbc\x6b\x30\x05\x64\x46\x56\x2d\x5a\x33\xb2\x2d\xf9\x11\x5e\xdb\x5d\xa7\xce\xce\x32\x22\xd5\x5e\x2f\x4c\x76\x57\x70\x24\x9c\x72\x81\xee\x03\xf3\x12\xb6\xe6\x8d\x34\x26\xc1\x05\x8a\x14\x9d\x5e\xe1\x79\x16\xe7\x1f\xeb\xde\x61\x0b\xc7\x41\xf3\x0b\x29\xda\x00\x80\x93\xa8\x2d\x43\xae\x7b\xfb\x11\xb6\x66\x8f\x0a\x83\xcd\x6a\xd1\x28\xb8\x94\xdb\x58\xbd\x4a\x83\x4c\xea\x25\x99\x34\x6a\x96\xd7\xad\xb5\xb4\x18\x0c\xd1\x68\x2b\x9f\xf2\xd9\x81\xae\x24\x86\x69\xb6\x53\x6e\x6c\x40\xaa\xcf\x33\xcd\xd0\xd9\xed\xe3\xa2\x36\xcf\x24\x1e\x05\x11\xc8\x82\x25\x4f\x97\x71\x51\x46\x62\x58\xfb\xfe\x1c\xb9\x02\xd1\x93\x3b\x43\x9b\xc0\x27\xd6\xb4\x4b\xb3\xe7\xab\xc8\xa6\x53\x30\xa8\xe1\xa8\xe4\xef\x57\xa4\x3c\xe6\xfc\x86\x16\xef\x13\xbe\x5a\xf3\x5c\xee\xdb\x1e\xe5\xb0\x43\x8f\xe0\x2f\xca\x15\xa7\x29\xcf\x0f\x25\xb4\x87\xea\xbc\xf2\x4f\x10\x32\xbf\x00\x2a\xfc\x0b\x81\xf9\x85\xe4\x90\x77\x52\x0b\x96\x62\x95\x29\xc3\x2a\xf3\xb8\x28\x83\xf6\x83\x5b\x93\x7e\x0a\x7d\x36\x0a\xb8\x03\x3b\x94\xe5\x04\x08\xdf\xc9\x29\x1a\x05\x77\x77\x01\x86\x55\x10\x05\x55\x15\x98\xe9\xe0\xe5\xf1\xaa\x44\xb8\x81\x58\x23\xed\x59\xcb\x02\xfa\xe2\x87\xe7\xa1\xaa\xe5\xd3\xc0\x65\x1c\x08\xba\x5a\x67\xb1\xa0\x01\x6e\xb6\x02\xfd\x47\xd2\xb1\xf5\xeb\x25\xc7\xae\x39\xfc\x5b\x38\x89\x24\x65\x1f\x0b\x5e\x6c\x4b\xbe\xd8\x7e\xa4\xb7\x37\xbc\x48\x3b\xc9\x36\x89\x4b\xba\xcd\xe9\xcd\x76\x7a\x39\xbd\xab\x2e\x43\x7c\x1e\xcd\xb6\xe4\x31\xfa\x8d\xb6\x1e\x20\xc0\x62\xe6\xbb\xdb\x35\x45\xdb\x6d\xf0\x8f\x4d\x5c\x32\x30\xd7\x6a\x42\x7b\xbd\xc3\xcb\xbb\xcb\xf2\x6b\x93\x9e\xea\x6d\xc0\x6e\x22\x54\xee\x91\x83\x30\xdf\x6e\x47\x08\xa1\xaa\x3e\xb9\x3e\xc4\xd7\x71\x99\x14\x6c\xed\xfb\x23\x73\x5b\x05\xe6\x38\x26\xb9\xc7\x3b\xc6\x25\xd1\xa7\x2a\x49\x6f\x2b\x5e\x0d\xde\x90\x62\xf8\xa1\xe4\x79\x96\xe2\x4c\xbf\x6e\xb7\x1b\x9c\x90\x02\x4c\x0b\xa9\xf2\xf1\x82\x14\xc3\x1b\x6d\x2f\x01\x34\xbc\xca\xed\xf6\x70\x7a\x79\xf3\x9b\xcb\x4f\xf1\x78\x70\xb9\x59\x2c\x16\x8b\xd9\x21\x5e\xfa\x42\x52\x4e\x52\xd5\x61\x34\x65\xf5\x48\x9e\xb5\x24\x95\x11\xe8\x9e\x0c\x94\xc6\x89\x20\x34\x34\x41\x9d\x18\x34\x57\xbc\x80\x39\x68\xe0\x78\x01\x49\x80\x30\x93\x01\x66\x70\x02\x30\xcd\x0a\x35\x04\xb1\xe0\xab\xc0\x54\x03\x1f\x15\x8e\xc9\x1d\x5b\x44\x34\x0c\xd8\x22\x40\x18\xc4\x06\x23\x81\x6f\xc0\x25\x18\x96\x3b\x46\x94\xe3\x94\x47\x39\x16\xc5\x6d\x94\xe3\x05\xcb\xe3\x2c\x93\x6f\x0a\xf6\xa8\xc0\xc0\xc7\x89\x0a\x6c\x98\x3b\x51\x81\x73\x7a\x23\x8b\xcc\xe9\x4d\x80\xb4\x3d\xc8\xa8\xc0\x70\x07\x19\x15\x38\xa5\xf3\xcd\xd5\x95\xdc\xe0\xf0\x75\x5c\xc8\x84\xd7\xb1\x84\x13\xdc\x2f\xb8\xcf\x8c\x7a\x1f\xa6\xdf\x64\x88\x5d\x04\x08\x83\xc8\xbc\x0c\x83\x17\x99\x8e\x43\x81\x0b\x68\x78\x79\xc3\x74\xb4\x7a\x83\x0c\x25\x55\xe9\x4b\x0a\xb0\x29\x0b\x53\x34\x0c\xf4\xab\xec\xbf\x3c\x62\x58\x2d\xaf\x88\x61\x77\x99\x29\x43\x8b\x0d\x8d\x38\x5e\xc4\xb2\x63\x94\x87\xb8\x88\xe3\x8d\xb9\x4b\x8d\x38\x7e\x15\xbf\x8a\x38\x7e\x91\x2f\x58\xce\xc4\x6d\xc4\x81\x6a\x97\xe5\xcb\x7f\x09\x00\x38\x4b\x94\x10\x80\x37\x42\x84\xcb\xcd\x9a\x02\xcc\x30\x20\x08\xdf\x32\x9a\xa5\x51\x81\x15\xbe\x90\x11\xea\x4d\x02\xb6\x32\x41\xea\x2d\x30\x2e\xc3\xcb\xa8\xc0\xf1\x4d\xcc\x84\xfc\x2f\x6f\xf3\x04\xca\x93\x2f\x81\x3a\x9f\x27\xc6\x86\x90\x9e\x09\xd7\x71\xc1\x40\xfd\xc8\xcc\x06\x13\x30\x38\x0e\x2a\xbc\x21\x77\x2c\x17\xb4\x58\xc4\x09\xf5\x41\x05\xcc\x0f\xc7\x52\x39\xc6\xf1\x8a\x82\x34\x7f\x04\x7b\xea\x26\x83\xa4\xea\x4d\x02\x96\x6f\x56\xb5\x80\xf5\x66\x9e\xb1\x44\x07\xb1\x05\xa3\x72\x84\xd6\x05\xbb\x86\xcd\xb9\x11\xca\x85\x72\x31\x5f\x0f\x8f\xe7\xa5\x90\x2b\xad\x19\x5c\x46\x0c\x2b\x1c\x11\x95\x58\xf9\x8d\x8f\x4a\x3c\xe7\x1c\x3c\x9c\x96\x38\xce\x6f\xa3\xb2\x72\x22\x5f\x8a\x45\x11\x4f\xb3\x19\xdc\xbc\x59\x1e\x64\x15\x22\xbc\x26\x87\xd3\xfe\xe5\xe0\xeb\xde\x57\xe4\xe2\x71\x77\xb2\xfd\xdf\xff\x36\x3b\xc4\x29\x39\xfc\xdb\x7f\x0b\xe5\x04\xa7\x9f\xc4\x96\xa5\x5b\xb0\xee\xb2\xcd\xe2\xfc\x6a\x13\x5f\xd1\x2d\xb8\xde\xd3\x0a\x98\xb4\xd8\x66\xac\x14\xdb\x92\x8a\x6d\x41\xaf\x69\x51\xd2\x2d\x9c\x9e\xb7\x73\x89\x18\xaf\x79\x12\xcf\xb7\x57\x45\xbc\x5e\xa2\xc0\x93\x72\x5b\x35\x5c\xfe\x31\x42\x31\x27\xb9\x6f\x52\xfd\x36\xa4\x56\x22\x1a\xdc\xbb\xa9\x7b\x1f\x39\xbe\xbf\x0d\x7e\x4b\x08\xdb\x6e\x83\xdf\x06\x84\x58\x61\xdd\x5c\xd1\xd8\xec\x67\x4a\xc2\x82\x30\xdc\xa2\x1f\x88\x19\x51\xce\x2f\x37\xbd\x5e\xf0\xdf\x40\x6b\x67\x4d\xe9\xc7\x10\x6c\x6f\xab\xa3\x46\x6a\xcf\xa6\xc2\x95\x77\x8b\x57\x61\xa0\x50\xe4\xc0\x20\x2c\x1c\xac\xa8\x88\xf5\x6d\xf7\xb9\x92\x8b\x06\x57\x4e\x0a\x4e\xb8\x30\xed\x82\x45\x70\x74\x8e\x18\xe9\xb2\x5e\x2f\xb8\xbc\x0c\x88\x27\x0f\x0b\x6e\x22\x5d\x25\x48\xd6\xa2\xd9\x1c\x56\xd7\x5a\xee\xb4\xae\x65\xd0\x27\x70\x23\x3f\x0c\x40\x33\x89\x3a\xd9\x98\xb4\x1f\x4e\xa2\x29\x7d\x3e\x93\x23\x3a\x9b\x5c\xa6\x7d\x34\x39\xb4\xad\x59\x85\x81\x9a\x2b\x01\x36\x2f\xad\x05\x05\xc3\x61\xe0\x67\x2a\xd7\x05\x8d\xbd\xd6\xb2\x45\x78\x38\xbd\x9c\x5e\xce\xe4\x66\x77\x89\xf0\xf9\x65\x74\x39\x9c\xe9\xcd\x8b\x79\x39\x15\x3f\x3d\x20\xa6\x78\x1a\x8b\x30\x78\x5c\x2b\x9b\x3c\x0e\xb0\x87\xba\x21\xfd\xc8\x4f\x7f\xf8\xe9\xd0\x15\x09\x41\x7f\x02\x49\xef\xc3\xe9\x65\x1a\x0f\x16\xb3\x43\x06\x7d\xd6\xde\xb0\x7a\x49\x7c\x5f\x49\xa3\xc1\xe9\x2f\x29\x67\xbe\xb7\x9c\xf1\xbd\xc5\x1c\x5e\xa6\x3b\x9d\xe4\x0f\xde\xd7\xe1\x24\xba\x1c\x5e\xa6\x5f\xa3\x49\xdb\x30\xee\x07\xef\xd0\x5f\x03\xba\x9b\xbf\x0e\xd0\x24\xf4\xd6\xc3\x35\xbe\x86\x99\x23\x8f\x77\x90\xe0\x50\x26\xa0\xc3\xf2\x23\x5b\x83\xf6\x54\x08\x15\x24\x7c\x25\xf1\x5d\x80\xed\x1b\x42\x91\x00\x7b\xfc\x63\x34\x09\x5b\x75\xea\x70\x4e\xba\x63\x5c\x90\xee\xd8\xac\x01\xe1\xd6\x80\xb6\xc4\xaf\x0c\x74\x02\xa4\xa2\xd7\xb3\x22\xfc\x07\xc1\x14\x9c\xd7\x16\xa4\x3b\x8a\x8a\x5e\x2f\x98\xa9\x04\xa1\x2c\x0d\x55\x39\xe9\xe6\x66\xcd\x88\xaa\x52\xde\x6a\x6c\x87\xcd\xc3\x70\x7a\xc5\x56\xb7\x9b\x19\x0a\x27\x5d\xfd\xfa\xf5\xe5\x11\x42\xfd\xcb\xb9\xea\x2f\xb8\xdc\x59\xdb\xa5\x34\x38\x92\xcd\x09\xbd\x41\x5b\x43\x32\x3b\x01\xbd\xb9\x88\xa9\x2f\xfb\x00\xfd\xfc\xf7\x3d\xb8\xe6\x0a\x5f\xb9\x55\xf9\xbf\xd5\x07\xa3\xd1\xbf\x54\x9f\x3d\xd4\x3f\xe4\x58\xef\xce\x89\x5f\x0a\x1e\xc8\x47\xd8\x62\xee\xbc\x02\x16\x4e\x59\xd1\x26\xc7\x31\x59\x0e\xd7\x9a\x4f\xfd\xa2\x7c\x9e\x6f\x56\xb4\x90\x7b\x61\xc8\x51\xaf\xb7\x04\x67\xfd\x7a\x83\xe8\xf5\x82\x61\xd0\x25\xb9\xa5\x55\x27\xab\x30\x56\xd6\x26\x63\x65\x1c\x02\x73\x14\xad\x42\x6f\x7f\xf5\x5e\xb9\xaf\x41\x70\xdd\xb8\x5b\xd4\x13\xc6\xce\x94\x73\x37\x43\xf2\x5e\xaf\x40\x77\x3e\x5e\xd4\x16\x53\x0b\x02\x9e\x0e\xac\xd8\x73\xfb\x84\xf5\x0c\xcb\xb5\xd7\xb9\x83\xa8\xf5\x24\x2d\x7a\x3d\x35\xc8\xf9\x76\x1b\xfc\x46\x01\xa2\x57\xcb\x5d\x80\xd0\x1e\x90\x64\x36\x8d\xd6\x3d\xb8\x14\x99\xef\x4d\xbc\xda\x80\x55\x5a\x14\x35\x9c\xde\x55\x33\xe4\x1d\x3b\xde\x2b\x88\xc5\x70\x11\x8b\x27\x45\xc1\x6f\x9e\x80\xa1\x50\xef\x53\xf3\x36\xac\x66\xba\x3a\x2a\x58\x15\x53\x89\x50\x35\x8f\x42\x69\xb2\x84\xf9\xc5\x08\x35\xad\x1c\x76\xc7\x72\xaf\x1d\x8c\xcf\xf9\x63\x32\x3a\x1f\x0c\xb8\x73\x19\xa3\x0b\xd4\x22\xdb\x1c\xe1\x92\xcc\x6d\xf1\xb1\x32\xc1\xf8\x98\x8c\x7a\xbd\xf2\xe2\xd8\xe8\xe3\xdc\xf5\xfb\x5c\xf7\x07\x5b\x84\x23\x42\x06\x83\x42\xf9\xdb\xa8\x8c\xf4\x71\xf9\x98\x1c\xcb\x3c\x0f\x51\xbf\x5f\x58\x99\x64\x3d\x69\x63\x24\xb7\xc7\x91\x32\x45\x0c\xdb\x4b\xf0\xdb\xcb\x43\xb3\xa5\xc4\x66\x65\x00\x4b\x09\xb0\x87\x57\x61\x55\x41\x50\xb3\x97\xb8\x56\x60\xbf\x21\x77\x92\xce\x8c\xba\x23\x43\x28\x75\x47\xd8\x4c\x51\x70\x4e\xa8\xe8\xa8\xee\x08\x2b\x64\x21\xdf\x80\x84\xed\x8e\x70\x73\xc3\x8f\x6a\xe6\xac\x9f\x3b\x0b\x98\x70\x97\x0a\x56\x34\xe1\x3c\x45\x53\x23\xb0\x9f\x28\x9b\x93\x46\x64\xff\x76\x4d\x89\xf6\x99\xb9\x2e\xe8\x35\x61\xda\xf6\x66\xbe\xe0\x84\x6b\xd7\x90\x85\x71\x87\x0f\xee\xa7\x49\xe1\xcd\xe7\x4f\xbb\x96\x09\xe0\x9e\xea\x8f\x71\x51\x9e\xe7\xe7\x39\x51\xa2\x31\x08\xac\xf3\x4a\x7a\xb5\x26\x06\xe3\x39\x70\x1a\x6a\xd2\xce\x38\x72\x2a\xe8\x35\x5c\x68\xe5\xa4\x18\x5e\x7f\x49\x61\x95\x92\x42\xd6\xac\x26\x60\x8c\xab\xa6\xaa\x77\xe5\x0e\x41\x87\x27\xea\x7a\xc3\xb3\x84\x57\xd3\xf0\xb1\x57\x3f\x56\x14\xe0\x9c\xca\x59\x49\x07\x03\xf4\x76\x98\x24\xda\xaa\xaf\x49\x35\xa5\xbe\x2d\xd8\x27\xce\x8c\xe1\x6b\xdf\x8c\xa1\xf3\x18\x87\xbb\x9e\x4e\xe3\x47\xd8\xb8\xdc\x19\xbf\xd6\x99\x62\x4f\xab\x9d\xa4\xc3\x81\x55\x7d\x56\x39\xde\xaa\x83\xb4\x9c\x97\x6f\xb5\x0b\x08\x22\xcf\x55\x01\xce\x4d\x0f\x2b\x8f\x6e\xe6\xc6\x56\x0e\x94\x9d\xcd\x5e\x18\xb9\x93\x55\x45\xd4\xdc\x73\xda\x88\xaa\x32\x6b\x42\x96\x71\x95\xf1\x79\xa3\x90\xc2\x0b\x84\xab\x5d\xf7\xd9\x2c\xd4\xc5\x54\x7a\x71\xfc\xa0\x93\xa8\xb3\x9a\x4a\xa7\x43\x6c\x07\x06\x95\x37\x72\xef\x42\x74\xa7\x1b\x6d\x1a\x48\xee\xe4\xec\x89\x1a\xa1\x72\x89\x95\x36\xd0\x35\x07\xef\x04\x91\x1f\x3c\xb3\x45\x5e\xf1\x2e\x41\xa3\x68\x98\xa0\xb8\x09\x45\x33\x91\x04\xca\x33\x17\xe4\x6b\x86\x36\x54\xb8\xec\x30\xe2\xc2\x32\x4a\x68\xaa\x65\x5e\x63\x11\x80\x72\x27\xfd\xc4\x92\x38\x53\xae\x41\x0b\x2f\xc0\x26\xaf\xf1\x9a\x99\x4b\x71\x2e\x89\x7e\x14\x80\x6b\x6c\xe0\xf5\x30\xb5\xae\xcf\x19\x61\x6a\xdd\x15\x84\xb9\x62\x6c\x3e\x30\x3a\xfa\x3c\x2c\xa0\xa1\x05\x8d\x57\x1a\x95\x84\xe0\x12\x5c\x4e\x71\x9b\x14\x0b\xe7\x6c\x09\x02\x89\x44\x76\x9e\x45\x23\xab\xab\x66\xe6\x2b\xb5\xf0\x4b\x08\xe4\xae\x87\x02\x65\xb9\xd6\x35\x13\x2c\x5d\x3a\x74\xb6\xd3\x62\x49\x8a\x19\x58\xeb\xe5\xf9\x2e\x5f\x5a\x2c\x6f\x77\x84\xbb\xd4\xec\xe4\x84\xd0\xc9\x93\x10\x45\xc1\xb9\x84\x60\xf2\x3a\x44\xd1\x93\x50\xf8\x84\xc3\x07\x5f\xb8\x17\xb8\x23\x2a\xcf\x8f\x40\x75\xc0\x6a\x33\xf7\xbb\x08\xc7\x14\xbf\x0a\x83\xf3\x00\xe1\x37\x28\xf2\xd8\x48\x36\xcb\x82\x17\xab\x00\xe1\x17\xf8\x43\x2d\xc5\x7c\x27\x85\x8a\xbf\x73\xe1\x55\x80\xb0\xa0\x10\x7a\x1e\x58\xb0\xd9\x02\xde\xc3\x40\x4e\x80\x80\xd8\x79\xe8\xba\x6b\xc1\x7b\x3d\x3b\x3b\x93\xa9\x7b\x75\x62\x62\x84\xbc\xf1\xd3\x28\x29\xce\x10\xe1\x1d\x88\xf1\x82\x36\xb8\xa2\x12\x8c\x6b\x2a\xc3\x78\xb1\xd3\x86\x25\xd5\xcd\xb0\x34\x99\x4d\x01\x53\x1b\xe1\xdf\xa3\xc8\xf0\x8a\x76\xbb\x08\x1a\x8d\x1d\x2f\xe9\x15\xd0\x41\xd0\x09\x50\x2a\xf0\x94\x54\xb6\x17\x32\x32\x02\x96\xad\xe1\x2b\xa9\x08\x1b\xac\x18\x56\xcd\x4a\xde\xc9\x7c\x61\x80\xf0\x15\x0c\x1c\x52\x1d\x8f\x9f\xca\x0c\xc0\x84\x69\x66\x98\xab\x11\xd0\x2c\xa2\x66\x73\x3e\xa9\x58\xcd\x2d\x6a\xc6\xbe\x55\xb1\x9a\x43\xd3\x2c\xb9\xa4\x58\x8f\x72\xb3\x9d\x8a\xb1\xa4\xd2\x7f\x40\xd1\x6b\xaf\xc8\x17\x6e\xba\x79\xe6\x9c\xbc\x59\xff\x32\xa4\x58\x1e\x65\x6c\xe4\xb3\x66\xa4\xef\xe5\xe5\xa5\x15\x61\x35\xb3\xc1\x23\x69\x88\x45\x05\xa5\x13\x61\xcb\x89\x98\xfc\x31\xfa\x13\xa0\xab\x30\x70\x9b\x55\xe7\x49\xf8\x4e\xb6\x47\xf6\xe8\xf7\x61\x49\x31\xbc\xbd\x91\xe0\x92\xc7\x01\xc2\x39\x7e\xaa\xce\x2b\xfe\xd4\x30\x79\x5f\x87\xef\x64\x77\xf8\x69\x2b\x2d\x16\x34\xf9\x26\xfa\xce\x20\x9b\x9b\xa6\xcc\x0b\x45\x93\x27\x61\xd1\x36\x41\x71\xe1\x2d\x36\xd3\x97\x62\xf2\x73\xf4\x2d\x8a\x14\xdc\x6a\x2c\x24\x90\xdf\xe2\xa7\x76\x32\xbc\x81\x8c\xf6\xd4\x43\x08\xdd\x6e\x0d\x43\xc2\x14\xf2\x2c\x7a\x81\x22\x38\x48\xea\x42\x66\x01\xc2\x3f\x50\x9d\x57\xad\x60\x4a\xc3\x3f\x60\x39\x9b\xb5\xaf\x83\xc8\xf2\xe1\x25\xce\xf9\x09\x42\x72\x7a\xa3\xcb\x68\xb9\x84\xdb\xbd\xb3\x01\xb6\x89\x98\x3c\x09\xe9\xe4\x77\xd1\x5f\xe4\xb4\xa0\x00\x4a\x55\x81\x65\x84\x27\xbe\x3b\x80\x6f\x6b\xd7\x79\xfa\x04\x3b\x3d\xbf\xac\x2e\xd1\xe5\x0c\xcf\x0e\x11\x20\xbe\xd7\xe1\x0b\x2f\xcf\xcf\x5f\x98\xe7\x99\x97\xe7\xbb\x1a\xae\xc4\x66\x71\xa2\xe8\x1b\xe3\xb9\xc1\xa5\xfd\xa6\x6e\x71\x60\x44\x48\x3e\xf9\x2e\xfa\x06\x33\xf5\xfa\x22\x7a\x66\x8c\x37\x91\xc7\xba\xa0\x77\x38\x97\x93\x0d\x96\xa7\x3f\x26\x93\xc3\xcb\xfe\x65\x7f\x3b\x18\x98\x1b\x0f\x33\x0f\x26\xba\x8b\x0c\x7a\xc0\x4c\x76\x0c\x6b\xed\xfe\xf3\xa0\x4b\xe8\x44\x4f\x06\x4a\xc3\x67\x72\xca\xe2\x20\x89\xb3\x2c\x80\x04\x43\x0d\xc5\x6f\xe0\xab\x31\xde\xdf\xca\x1a\x66\x66\xc6\x28\x5f\x72\xc6\xa5\x9c\x6d\xf2\x4f\xb5\xee\x51\x20\x74\xf5\xae\x13\xfc\xe6\x2e\xe8\x12\x61\x3d\xaf\x1a\xcf\x75\xb2\x29\x3f\x49\xa8\x5f\xe0\x7f\x78\xbd\xf7\x0f\xad\x29\x13\x54\xfe\xc2\x71\x54\xa0\x3b\xf7\x99\x95\xec\xb1\x0b\x64\x89\xae\xa8\x3f\x79\x03\xfd\x3e\x34\x8b\xdc\xe4\x43\xf8\x75\xa8\x27\xf1\x87\xc8\x9f\x1f\x7f\xfc\xf2\x6c\xfe\x14\xf9\x8b\x45\x31\x81\x72\x82\x13\x78\xd6\xd9\x1d\xfc\x96\xc7\xf9\x24\xfc\xce\xcb\xfd\xbb\x5f\x9c\xfb\x1b\x2f\xf7\xef\x1d\xc8\x41\xa4\xc7\xef\x0d\x06\x94\xfa\x5d\x1b\x22\xfd\x8d\xe9\xe4\x36\x24\xe5\x6a\x33\xbc\x0c\x59\x9d\x97\xfb\x0f\x4d\xc2\xc1\x16\xb1\xdd\x5a\x08\x15\x56\xbd\xcd\xe8\x24\x6c\x2f\x30\xd0\x8d\x94\x78\x47\xbd\x4d\xfe\x1c\xfd\x55\xee\x68\x9a\x07\xa7\x71\x92\x91\x4d\xf3\x0b\xda\x4c\x5c\x51\x91\xae\xa7\x1f\x74\xfc\xe2\xa1\xa4\xc6\x31\x53\x75\xcc\x5f\xd5\x56\xa5\x98\xfe\x2a\xe8\x0f\xde\xbc\x7f\x61\x26\xbc\x4c\x57\xc3\x88\x2f\xd0\xce\xc4\xff\xb3\xd7\xf1\xb6\x23\xd4\xcc\xff\x2b\x8a\xf6\xb4\xfc\x9a\xfa\x4e\x54\xfe\xda\x32\x76\xcf\x2c\xf2\x7e\x0d\x44\x48\xb3\xda\xef\xf5\x79\xd5\xe9\xd4\x81\xb7\x08\xa3\xab\x6c\xbd\xca\x35\x88\x26\x83\x77\x60\xe9\x13\x10\x5d\x5a\x80\xdb\x05\xd0\x3e\x52\x7f\xdb\xed\x08\xf5\xc7\xe0\xdf\x1a\xe7\x56\x73\xb4\x50\xd6\x4a\x14\xd2\x91\x8b\xf6\x95\xc4\xc5\x3b\x5a\xf2\x00\x45\x7b\x96\xd7\xaa\x3c\xcf\xc2\x0e\xdd\x75\x14\x71\x7c\x5e\x5c\x34\x8f\xad\x60\x09\xb0\xed\xbc\xea\x99\xfe\x93\xd8\x0a\xdc\x07\xa8\x8e\xa9\xcd\x75\xe1\x5d\x90\x2a\xa4\xa2\xe1\xf9\x80\x85\x6f\xda\x35\xa7\x7a\x51\x24\xbd\x9e\x1a\x08\xb7\xe3\x33\x3f\x61\x41\xdd\x5a\x25\xfe\x32\x7d\x52\xdb\x32\x18\xfd\xb2\x45\xe6\x5d\x98\xe1\x27\x21\xf7\x6b\xe2\xb4\xb6\xd2\x2e\x34\xd2\xff\x3e\x64\x14\x07\x92\x80\xe0\xd4\x9b\xb8\x7a\xda\xf2\x96\xf9\x12\x53\xef\x38\x2f\x89\x96\x9c\xe2\x8c\xe2\xc4\xaf\xac\xac\x57\xd6\x58\x21\x25\x6d\x52\xbb\xe1\xc7\x50\xc8\x69\x82\x9a\xcb\xa4\x74\x40\x51\x0a\x14\xd2\x2c\xf0\xe9\x85\x0d\x95\x04\xc3\x2e\x90\x1b\xda\x8e\x57\xba\x12\x0f\x58\x12\xcd\xe9\x2b\x7f\x1d\x1d\xca\x8d\x77\x52\xef\x60\xf0\x8d\xbf\xb3\xea\x10\x6e\x81\xb1\xf2\x4e\x46\x7a\x1b\x2d\x65\xbf\x20\x14\x99\xc6\x65\xb5\xa5\x9a\x7d\xd9\xc8\x27\x76\xe4\x71\x7d\x1a\xc5\x7e\x7f\x2f\xbc\xc2\x6a\xa7\xa5\x5e\xcf\x9c\x79\xbc\xf2\x0d\x39\x8d\x55\x9c\x3a\x46\xb9\xc2\x96\xb6\xca\x06\xad\xaa\x49\xbf\xb5\x23\xfc\xbc\x5c\x6b\x5a\x47\x5f\xba\x73\xdc\x59\x6f\x45\xbd\x43\xd9\x6a\x67\x0a\x3c\x09\x53\x0a\xd4\x95\x97\xde\x95\x9e\xd6\xc7\x93\xe5\x1a\xdb\xf3\x05\xcc\xe3\xb0\x75\x57\x7b\x01\x14\xde\x77\xf5\x92\x56\xf5\x92\x0c\x40\xb7\x12\xa0\x2f\x2f\xd6\x83\xf3\xd6\x2f\xfd\x16\x7a\x21\x40\x72\xa2\xf5\x7a\x4f\x6a\xb4\xe2\x75\xbd\xe6\xaf\xef\xa9\xe2\x1a\x4e\x90\xad\x4b\x44\x45\x85\x96\xd8\xb3\xc7\x87\x2b\x7b\x7c\xc8\xe5\x89\xf2\xe9\xee\xa2\xb8\xf2\x87\xa8\x36\x85\xaf\xa0\xeb\xd5\x5a\x2e\xfc\xf6\xcc\xbd\x89\xd5\x86\x7a\x34\x50\xef\xfd\x3c\xef\xeb\xed\xd4\xc2\x00\x96\xc8\x7c\x4f\x77\x8f\xec\x37\x70\xe8\x6b\xc2\x7b\xb3\x67\x11\xef\x23\x0e\xe0\xbc\xc7\x92\x7b\xfa\xf5\x06\xd6\x63\xdb\x4e\xda\x42\x41\x3c\x09\x9f\x53\x7c\x4d\xf1\x0d\x95\xd3\x48\xbd\xa0\xe8\xde\x71\x53\x29\xcc\x9c\xba\x71\x88\x41\xee\x12\xcd\xe6\x3d\xa7\xfb\x37\xfc\xbd\xfb\xbd\x8f\x42\x3e\x7d\xf9\x84\xfa\x68\x96\x61\xfd\xf0\xbf\x77\x8a\xbb\xd4\xaf\xc3\x0f\x5e\x95\x6f\x6b\x53\xc8\x91\x53\x6a\x17\x7c\x4d\xf1\x47\x7f\x26\xbc\xae\x03\x68\xb1\xf6\x6b\x8d\xb5\x9b\xd8\x16\x66\x93\x6a\x47\x0d\xf5\x1a\xc8\xe4\x54\x7b\x52\xc3\xa2\x4f\xbc\xf9\x19\x97\x9f\xa5\x73\x5f\xfb\xd0\x7d\xf4\xf2\x2e\x0a\xbe\xfa\x6c\x6e\x7f\x31\xff\xe0\x77\xc4\xcc\xeb\x83\x67\xf8\x9d\x5f\xc9\x3b\x3f\x9d\x61\xff\xbc\x0e\xd5\xe1\x79\x06\x4c\x17\x73\x02\xfc\x3e\xfc\x19\xab\xa0\xd7\xe1\xf7\xf2\x64\x35\x0b\xfc\xa6\x3e\x6d\x2b\xe9\x49\xb8\xa4\xf8\x29\x75\x3c\x2e\x39\x76\x4f\xdd\xae\xad\x9b\xf3\xc6\x70\x1c\x5b\xd5\x21\xac\x05\xc1\x3b\x73\xfc\x89\x6e\xb1\xb9\x4c\x8c\x82\x92\x2f\x02\x9c\x24\xd1\x74\x86\x35\xed\x17\x29\xbe\x67\x48\x25\x81\x37\x88\xf1\x08\x07\x60\x24\x37\x00\x7d\x4b\xcb\x14\x8e\x0a\xc7\x20\xc6\x9a\xe7\xeb\x87\xf5\x7a\x77\xd7\x8d\x64\x46\xa0\x9a\xa6\x91\x2c\xbc\x72\xca\xf0\x3e\x07\x7d\x47\x58\xb1\xc1\x60\x17\x3e\x83\xdd\x8f\x43\x58\xec\x68\x4b\x58\x7d\x64\xa5\xf2\x00\xd9\x0d\x63\xb0\xc1\x3a\x09\x80\x2b\x1c\x80\xe7\x27\x9b\x46\xdd\x00\xc9\x86\x0b\x9f\x15\x5b\x53\x0c\xc7\xea\xca\x10\x61\x77\x39\xd9\x25\xd7\xfa\xe2\x12\xec\x83\x86\x75\x33\x70\x9a\x6b\xe4\x0b\x94\x08\x6b\xa7\xd9\x5c\xa2\x12\xc2\x26\x79\xe4\x89\x2e\x12\x77\xe0\xef\x82\xe0\x4d\xbf\x1f\x74\x09\xef\xf5\x82\xc1\x40\xbe\x4c\x98\xdc\xe3\x92\x94\x26\x41\x4d\xec\xc6\x78\x88\xb3\xb7\xd0\x09\xdc\x43\x69\x8a\x9f\x50\xcb\xdf\x26\x0c\xdb\x95\x01\x4c\x1a\x49\x4b\x13\x8e\x35\x06\x06\x9f\xc8\x9f\xef\x3b\xda\xec\xbb\x11\x3a\x07\xb3\x37\xa1\xf1\x93\x36\xe1\x8a\xbd\x1a\x65\x93\x17\xd1\x07\x04\xa2\x92\xda\x97\x1a\xb7\x9a\xfd\x7c\xca\x1d\x77\x56\x16\x79\x8e\xb8\xe1\xca\x1e\x34\xd6\xf1\xc4\xbc\xd4\x76\xd5\xbc\xd7\xfb\x04\x16\x3a\x26\x8e\x72\x3e\x0a\x22\x51\x55\xe0\x7a\x94\x61\x8e\x25\xb6\xd9\x11\xf2\x37\xbe\x4c\xbd\xab\x66\x72\xdd\xd0\xa0\xad\x45\x77\xc9\xad\x89\x1e\x69\x2b\x9a\xe0\x54\x5d\x5f\xe0\x8e\x10\xe6\xc4\xce\x28\xb8\x11\x06\xa2\x54\x92\x67\x97\xf3\x43\x63\x1c\xdd\xd3\x13\x17\x3e\x6b\xfa\x7c\xa3\x2e\x88\x8d\xd7\x6d\x88\x35\xfa\xb6\x84\xbc\x41\x9c\x70\x60\xfa\xdb\x2b\xdd\xac\x4b\x16\x54\x5f\xfe\x9a\x0b\x14\xae\x6f\x14\x60\xc7\x62\xe0\x40\x4f\xe5\x42\xb8\xd4\xd7\x23\x36\x89\xcd\x22\xe3\xcd\x4d\x84\x4d\xaf\xcc\xf0\xe9\xd4\x78\x41\x18\x21\xc9\x81\xdb\xe7\x52\x2a\x51\x55\xa2\xf5\xb7\xe4\x72\xe9\x87\x3e\xa7\xca\xcd\xe7\xed\x16\x90\xa3\x0b\x98\xa8\x63\x66\x7f\x1c\x8d\x14\x37\x5d\x22\x6d\x79\xc6\xba\x83\xc5\xe0\x4a\x74\x91\x7e\x35\x71\x64\x20\xaf\xd7\x5e\xc7\x05\x1a\x52\x9f\x77\xd6\x84\xc8\x0f\x58\x1b\x01\x62\x3b\x98\x68\xbb\x3d\x9c\x62\x2b\x6d\xe5\xc7\xc0\xc4\x42\x93\x72\xbb\x8d\xa1\x09\x9a\x6d\xdf\xd5\xe7\xe7\xed\x76\x01\x56\x4e\x8b\x61\xca\x37\xf3\x8c\x6a\x2d\x6d\x48\x34\xe1\x6a\xb9\x4c\xb8\xbe\x65\xea\x87\x8b\xc9\x28\x1a\xa3\xa8\xd6\x94\xc9\x28\x8a\xeb\x41\x20\x16\x0d\xf2\xcf\x7a\xe3\x47\xde\x9c\x9a\xc4\xd1\xd1\xd7\x31\x72\xba\x0f\x2f\xf2\xf5\x46\x44\x30\xfd\x74\xb6\xce\xf0\xeb\x49\x64\xf2\x46\xdb\xcb\xbb\xed\x65\x85\x7e\x73\x88\x01\xe5\x3f\x55\xb8\x08\xf4\xb5\xa3\x4c\x99\x89\x0c\x0e\xbf\x0e\x6a\xb1\xcf\xf3\xd4\xc6\x7d\x7d\x18\xe0\x8c\xe5\x54\x47\xb9\x3c\x87\x01\x5e\xf0\x2c\x8d\x82\x79\x01\xf6\x92\x41\x6c\xfe\x9b\x22\x4e\x3e\x52\x51\x46\x41\x88\xa6\xb3\xbb\xea\xb7\xbf\xbd\x0c\x2e\x83\xbf\xff\x3d\xc0\x4b\x9a\xad\x69\x01\x3b\x54\x36\x01\xe6\x4c\x10\xd5\xe4\xac\x15\xbf\x06\xf4\x35\x36\xf0\xf1\x83\x36\x27\xf0\x69\x5d\xd0\xb2\x64\x3c\x7f\x92\x65\xfc\x86\xa6\x91\xc0\xe5\x47\xb6\x7e\x6e\xc3\x5b\x76\x46\xb8\x15\xaa\xdf\x07\x1d\x88\x2e\x79\xd1\xeb\x89\x2e\x79\xb6\xdd\xba\x1b\x21\xd0\xe0\x00\xeb\x3d\xac\x14\xb4\xf8\x0e\xc0\x0c\x03\x23\x92\x5d\x06\xb8\x06\x25\x88\x66\xcf\x0e\x5b\x85\xfc\xfd\x74\x7e\xa6\xd6\xc4\x34\x59\x7d\x51\xe2\x78\xbd\xce\x58\x02\xfb\xd2\x17\x57\xe0\xe7\xf9\x34\xf8\x67\x72\xfd\x53\xd0\xc9\x31\xc5\xfa\xaa\xbb\x39\xb2\xa0\x1b\x71\x3f\x98\xff\x4a\xf6\x2c\xed\xdf\x9b\x3f\x4b\xdb\x4a\x80\x81\x70\xb2\xf8\xad\xb9\x5d\xf4\xe7\x60\xf8\x65\x05\x55\x20\x37\xce\x72\x1a\x06\xbe\x02\xcd\x74\x86\xbd\xab\xf4\x9a\x1a\x85\x96\xf3\x37\x0b\xdb\xe9\x5e\x54\x5e\x59\xff\x8d\xae\xe6\xb4\x38\xe4\x45\x4a\x0b\x9a\x0e\x4a\x2a\x0e\x41\xce\x28\xc0\x53\x7d\xbf\x57\x06\x33\xbc\x57\x55\x43\x3b\xee\x54\xa5\xb9\x2b\x28\x1c\xbc\x7f\x4f\xcb\x1f\xd4\x1d\x1f\xbe\x03\xc1\x65\x68\x85\xf6\x7c\xa0\xa8\xd7\x03\x41\x9e\xcb\xda\x87\xef\xdf\xbf\x56\xf5\xbf\xa5\xe2\xfd\xfb\xed\x56\x85\xba\x30\x6c\xdd\xd1\x13\xe1\xc1\x0e\xa0\x0f\xe2\x0f\xf1\xa7\xc3\x81\x96\xe9\x3e\x5c\x17\x7c\xc5\x4a\xfa\x85\xe0\xfb\x9a\x26\x66\x63\x08\x05\x69\xd1\x78\x79\x7b\xbb\x9a\xf3\x4c\x6e\x8d\xf0\xd2\x8c\x18\x32\xa1\x76\x93\x49\xcb\xb5\x95\xd1\xc5\x69\x77\x1b\xd0\xeb\xdd\x53\x1d\xc8\x52\x94\xa2\xd8\x24\x82\x17\x84\x10\x1b\xde\x35\xef\x4e\x95\x7b\x62\x60\x8b\x6c\x85\xa8\xe6\x90\xea\xf3\x96\x45\x3c\x6f\x24\x07\xc5\x90\x5a\xa1\x44\xe2\x7f\x6c\xb7\xdd\x31\x2e\x24\x60\x0b\x76\xb5\x51\xf1\xdd\x11\x0e\x60\x94\x03\x06\x3a\xdf\x61\x31\xbc\x29\x98\xd0\x71\x08\xef\x9b\x27\xc5\xf0\x23\xbd\xad\x5b\x39\x2e\x94\xc0\xb9\x96\xf2\xc9\x7d\xd3\x40\x44\xee\x68\x7e\x7f\x59\x6b\x41\x75\x97\x0a\x6c\x11\xaa\x19\x06\x26\x52\x9c\x15\xba\x1f\xe9\x82\x16\x34\x4f\xa8\x36\x47\x27\x96\xac\xec\x2c\xe3\x32\xff\xad\xe8\xcc\x29\xcd\x3b\x2c\x67\x82\xc5\x19\x2b\x69\xda\x19\x74\x40\x49\x22\x44\xb5\x14\x49\x9c\x65\x34\x0d\x3c\xa7\x55\x21\x45\x51\xde\x30\x83\xe6\x1a\x10\x32\x12\x58\x4d\x0d\x07\xef\x8f\x74\x21\xf7\xe3\x5e\x4f\xbf\x0c\xaf\xa8\x98\x78\xef\x7b\x7c\x4d\xed\x9a\x88\x39\xef\xea\xae\x75\x1a\xfd\x75\xc2\x5c\xa9\xf6\xcb\xf4\xbd\x9e\x92\x6d\x23\x21\x25\xe0\xd6\xf4\x1c\x9d\x7b\xad\xc0\xa2\xee\x31\x48\x97\x7b\x45\x85\x57\xda\x33\x8d\x92\x78\x11\x16\xee\xc4\xd2\x61\x00\x3f\x3c\x55\x7d\x39\x8a\x98\xf2\x46\x5b\xc9\x49\x28\xdb\xb0\xdd\xd6\xd8\xd5\xde\x82\xe3\xa6\xae\x92\x8a\x37\xa6\x19\xaf\x17\x13\x07\x81\x17\xda\xae\x9c\xf9\xfe\x3d\xb4\x5f\x22\x8f\xd6\x5c\x72\x1d\xd4\x17\x43\xec\x13\x83\x61\xdc\x0e\xc2\x76\xdb\x46\x3a\xfa\xf5\xc9\x23\x91\x6a\x21\xaa\x7e\x29\x32\xf4\xd0\x9a\x46\x88\x4a\x5d\xa6\x26\xe0\xed\xeb\xc2\xb5\x18\x2e\xb2\xf6\x11\xc3\x9a\x05\xc4\x9a\xf1\x45\x49\x44\xe9\x19\xff\x34\xce\x73\x2e\x60\x16\x77\xe2\x0e\x48\x77\x74\xe2\xb2\x13\x77\x9c\x7a\x53\xa5\x1c\xac\x0b\x84\x0b\xf5\x06\xfe\x9b\x60\x54\xb5\xe7\xf5\x5c\xcb\xce\x96\x78\x83\xb3\x1d\x97\xc6\x8e\xe7\xb2\xb3\x4a\x85\x9d\x82\xa2\x1d\xbc\xb7\x72\xc5\x75\x1c\x05\xd7\x59\x6d\x4a\xd1\xa1\x4c\x2c\x69\xd1\x99\x53\x38\x3b\x77\x78\x51\x83\xf7\xc0\x73\x18\xdf\x70\x24\x0d\x76\x5c\x6c\x24\xbe\xf3\x70\x69\xa4\xc7\x81\x62\x83\xa7\xa2\xee\x08\xfb\x38\x2d\x52\xfe\xfd\x45\xaf\xa7\xa6\x8a\x24\xed\xd5\xc6\xf4\xe3\xdb\x3f\xbe\x19\xbe\x51\x1b\x0d\xc2\x25\x11\x38\xdc\x90\xe9\xdd\x47\x7a\x1b\x05\x62\x49\xf3\x00\xab\xb2\xbd\x2e\xb1\xba\x80\x31\x61\x21\x0f\x3d\xa8\x10\xd6\x79\x64\xe7\x36\xfa\xd9\x73\xb0\x1d\x0f\x3f\x2d\x0b\x02\x22\xa9\x9f\x96\x05\x8e\xab\x0a\x7c\xf3\x87\xa5\xd7\xbe\x0d\xc2\x19\x84\xe1\x0c\x61\x51\x85\xe8\xc0\x4d\xb0\xf2\x33\xfb\x26\x50\x1b\x4d\x72\xe2\x33\x79\x36\x82\x65\xe5\xe1\x15\x15\x83\x25\x8d\x53\x5a\xfc\x9b\x68\x06\x6f\x99\xec\x4c\x32\x35\x20\xac\x7c\xc5\xe1\x4a\xce\x90\x0e\x3a\x40\x58\x09\x4d\xb5\xdf\xa9\xc8\x27\xa1\x86\xe0\x23\xbd\x2d\x25\x1e\x04\xc7\xf4\x6d\xf2\x26\x0d\xa7\xd2\x84\x00\xc7\xc6\x0b\xf1\xac\xef\x4d\xe8\x34\x9f\x19\xb6\xdc\x17\x75\x1c\x2b\x07\x46\xcb\xe8\xbf\xae\xdf\x76\x99\xbb\x96\x58\xf8\x22\xa0\x41\x85\x79\x50\xd0\x72\xcd\xf3\x92\xea\x81\x2f\xff\x6b\x5b\xa0\x2d\x3e\x55\x07\x75\x23\xa9\x07\x4e\xdf\x03\x1c\x31\x09\x34\x2c\x68\xba\x49\x68\xd8\xa6\x82\x56\x10\x61\x3c\xca\x81\x4c\x4c\xd3\xfa\xaa\xb2\x93\xc3\x4a\xf8\x97\xb3\xc4\x6d\x95\x39\x29\x90\xbf\x33\x28\x59\xb1\x3a\x1d\xd8\x61\xc6\xcb\x3d\x4c\xcb\x60\xaa\x88\x98\xce\x13\x73\x25\x3d\x0b\x08\x21\x3b\x7b\xb7\xe0\xda\x57\x82\xda\xb5\x6d\xad\x0a\x9a\x45\xc1\x57\x72\x13\x03\x47\x7a\xde\x3a\x6d\xc5\xa5\x2f\xf2\xeb\x38\x63\x69\x27\x16\x82\xae\xd6\xa2\x23\x78\x27\xa5\x0a\xfd\x6d\x0a\xda\xc9\x79\x3e\x00\x60\xe7\x99\xdb\x39\x24\xf6\x07\xd7\x2f\xd3\xd1\x0c\xc7\xd6\x9c\xda\x18\x1d\x70\xc2\x87\xa2\x60\xab\xd0\x59\x4a\xf9\xc0\x59\x0e\x9d\x67\x22\x34\xac\x65\xaf\x17\xd2\x29\x9f\x91\x12\x61\x5a\xe1\x1c\xac\x9f\x3d\xfd\xf1\xe5\xb7\xfe\x2e\x27\x48\x70\x59\x5c\xe6\xc1\x81\x8e\xfa\x1c\x5d\xaf\x66\xdf\xa6\xc8\x06\x8a\x31\xf0\x6f\x9c\x72\x30\xc5\x7f\xfa\xf1\x25\xc9\x31\x1d\xb2\xf2\xdb\x4d\x96\xc9\xaf\xdd\x35\xd4\xed\x1a\x91\x30\x01\x6d\x5c\xc6\xd7\xf4\x6d\xbc\xa2\xdf\xf1\xb2\x89\xaa\x14\xf9\x26\xf3\x62\x46\xf2\x50\x78\x56\x60\x61\xf0\x13\x9e\x11\xb0\xc3\xa2\x3f\x7a\xbd\x02\x9c\x66\x2a\xe1\x77\xc2\xec\x07\x58\x07\xe5\x85\x50\xa9\x79\x21\x2a\xdd\x9d\x87\x7f\x0b\x97\x42\xac\xb7\xf2\x51\x22\x4f\xc7\xd3\x71\x39\x40\xd4\xd0\x11\xa3\x76\xe9\x7f\x1b\x97\xe2\x1b\xce\xad\x30\xe3\x1e\x37\xb5\x41\x1c\xa0\x83\x7c\xb8\x2c\xe8\x82\x50\x2c\x48\xae\xf4\x4a\x04\x31\xf9\x87\xd6\x94\xc0\xa6\xc8\x02\xa4\x3a\xd2\xf9\x2c\xba\x93\x39\x23\x01\x05\x60\xd3\xd0\x48\xd8\x36\x63\xd3\xc6\x48\xd8\xe6\x62\xd0\x3d\x16\xd0\x52\xbc\x8e\xc5\x52\xc7\x9b\x57\xac\x7c\x01\x45\xc6\x29\x10\x5e\xc6\xa5\xfc\x92\x7f\xd5\x1e\x8c\x26\x1f\x03\x09\x2a\x2d\x85\x3f\x8b\xb0\x9f\x68\xc5\x3e\xb1\xbc\xac\xa7\x9d\x35\x74\x59\x7f\x2d\xdc\xe6\x2d\x0b\xb3\x47\xe9\xd2\xd4\xdd\x6a\x28\x4c\x52\x7f\x47\xcf\xdb\x5b\x07\x4a\x6d\x5f\xba\x3a\xfe\x97\x3c\xff\xfe\xba\xd4\xf2\x7f\xd4\xb9\xf5\x3f\x8c\x70\x2f\x15\xe1\x5e\x3f\x74\xea\xdd\x67\x77\xce\xfd\x10\xaf\x27\xb2\x59\x3f\xc4\x6b\x4d\xc7\x1d\xd8\x03\x6a\x63\x94\x94\x5d\x57\x42\xb7\xdb\x30\x27\x14\x0f\xc6\x84\x90\x6f\x75\x92\xc6\x1e\x9e\x23\xa7\x17\x38\xcd\x63\xc1\xae\x69\x27\xe1\x29\x9d\x05\xc8\xd1\x14\x6a\xed\x1f\xb4\x77\x3e\xfd\x15\xbb\xdc\xce\xb0\xae\xf1\x24\x06\xb8\xd2\xa3\x34\xe0\xe4\x2c\x91\x36\x9c\x85\xe1\xf6\xcc\x9f\xe3\x76\xdd\x82\x9b\x2a\x6b\x30\x70\x13\xea\xe3\x8b\x1b\x28\x27\x0f\xb8\x77\x98\xe9\x67\xc6\xb8\xc0\x8e\xeb\x14\x75\xc7\x9f\x1b\xf1\x32\x2c\x70\xfb\x39\xdf\xe3\xc7\xc4\x0d\xdf\xb9\x6d\x1b\xa2\x66\xc4\x6c\xb7\x5d\xc3\x92\xb1\xc0\x39\xb3\xd1\x6c\x11\xee\xc4\x0e\xcb\x65\xbc\xaa\x25\x69\x99\x67\x6f\x0a\xfe\xe9\xd6\xa9\xb3\x79\xfe\x3f\x9f\xc5\x82\xee\x25\x06\x77\x2a\x0b\x65\xf2\x9d\x13\x1b\xe8\xda\x29\xa7\x9e\xd4\x77\x13\x1a\xa2\xc9\x4e\x09\x7b\xb8\x4c\x53\x39\x75\x66\x07\x05\x08\x51\x6a\x85\x3e\xe0\xf6\xe8\x9b\x4d\x7a\x13\xda\xc9\x3e\x67\x79\xaa\x93\xc8\xa9\xe2\xce\x43\x72\xf5\x31\x9c\xfb\x07\x5d\x56\xa1\x76\xf5\x40\xdf\x3c\xb3\xcf\x95\x29\x7f\x0d\xae\x8c\x93\x19\xf4\xf6\xb8\xcd\x7f\x21\xcb\xe9\x9f\xa0\x0c\x58\xf9\xe4\x43\xfc\x09\x16\x3a\x79\x0f\xdf\x3f\xe5\xf1\x46\x2c\x79\xc1\x7e\xa6\xa9\x0a\x6f\x01\xea\x7d\x48\xd1\xa4\xb6\xb3\x2d\xa2\x93\x91\x44\x4e\xb4\x52\xb4\x2c\x2f\xe6\x2c\x4d\x69\xfe\x0b\x8a\x58\x46\x27\xa3\x63\x57\x84\x3e\x56\xfc\x82\x02\x92\xe8\xe4\xe8\xc8\x15\xf0\x4d\x9c\xfe\xa8\x08\xaa\x5f\x50\xc6\x3a\x3a\x19\x8d\x5c\x19\xaf\xb8\xf8\x96\x6f\xf2\x5f\x02\x45\x1a\x9d\x8c\x4e\x5c\x09\xbf\xe3\x39\xfd\x05\xb9\x57\xd1\xc9\xd8\xab\xff\x1d\x5b\x51\xbe\xd9\xdf\x80\x5a\xde\x5b\x95\xe7\xc9\x9c\x17\xbf\xa4\xc9\xd7\x91\x57\xe1\x53\x9e\x2f\x32\x96\xfc\x92\xfc\x57\xd1\xc9\xe8\xcc\x95\xf0\x96\x16\xd7\xb4\xf8\x05\xf9\xe7\x11\x7d\x4c\x1e\x8c\x46\xbd\x1e\xbd\x78\x38\x1a\xe9\x52\x36\x49\x42\xcb\x72\xe7\x38\x2e\x08\x3d\xd8\x65\x29\x80\x6f\x51\x38\x05\xbc\xc8\xe5\x56\x32\x1e\x79\xfe\x44\x1e\x93\x23\x59\xb8\xb8\x38\x1e\x8d\xb6\xdb\x63\x18\x1c\x21\x6b\xf1\x21\xa5\xc3\x7a\xcb\xe9\xd0\xeb\x46\x3a\xac\x8d\x03\x1d\xba\x41\xa5\xc3\xfa\x14\xa1\xc3\xe6\xb4\xa3\xc3\xc6\x62\xa0\xc3\xdd\x35\x46\x87\xb5\xe9\x4e\x87\x6e\x59\x7a\x44\x7b\xb6\x97\x63\x6b\xed\x7f\xed\x28\x58\x3f\x1e\xf7\x7a\x76\x27\x76\x72\xea\xe3\xd9\xc4\xff\x88\x02\x59\x61\x47\x89\x2a\x80\x20\x70\xcc\x24\x19\x87\xe3\xdd\x02\x8f\xbc\x9c\x47\xb3\x3a\x05\xd3\xc9\x2d\x53\x37\x64\x44\xf3\x75\x37\x75\xbe\x2e\x47\x48\x1e\xd9\x6e\x33\x1e\xa7\x84\x62\x06\xc2\x41\x9b\x92\xc4\x98\x99\x9d\x9c\x85\x02\xf3\x10\xda\x8f\x2c\x87\xd1\x75\x49\xa6\x05\x43\xf6\xf7\xc6\x0e\x34\xed\xa0\x50\x1c\xe8\xb1\xea\xdc\xc4\x65\xa7\xa0\x1f\xc0\x30\x53\x67\x4e\x93\x58\x1e\x5f\x98\x0a\x67\x6a\x6c\x02\x7c\x72\x74\xe4\x14\x0c\x24\x90\x8e\xff\x59\x1b\xbf\xe4\x40\xd9\x44\xff\x35\x00\x84\x81\x31\xf3\xa5\x3e\x38\x27\xa3\xf1\x3e\x70\x5a\xd0\xf8\x81\xf2\x05\xf2\x6f\xef\xb4\x4d\x49\x8b\x0e\x2b\x3b\xf2\x44\xb3\xa6\xc5\x8a\x09\x19\x2b\xb8\xfc\x58\xf0\x62\xd5\x81\x53\x85\x9d\x6a\x43\xd9\x8e\xe3\x7d\xed\x68\xac\x9d\xa5\xb6\xaf\xfa\x6b\x37\x42\xc2\x15\x03\x9c\x2c\x4f\x78\x51\xd0\x44\x64\xb7\x00\xd9\x68\x1f\x64\xcd\x75\xbe\x3e\x50\xe6\xed\x7f\x1d\xd0\x94\xdf\x28\x80\x4d\xf6\xe3\x42\x62\x18\x80\xe7\x64\x1f\x3c\x75\x3c\x94\x1e\x28\x8b\xf9\xbf\x2a\x34\x30\xa8\x9d\x8c\xe7\x57\xb4\xe8\xc4\xd7\x31\xcb\x24\x51\x2c\xc1\x1a\xef\xed\x26\x87\x2a\x57\x07\xca\xcd\xe0\x1e\x90\xbe\x18\x22\xa0\xe9\x82\x77\x4b\xda\x89\xeb\x38\x4b\xb0\x15\x4d\x3b\x7c\x23\x02\x3c\xd8\xbb\x30\x6a\x98\xfc\x16\x40\xba\xfe\xf7\x81\x24\xc7\x2f\x96\x1b\x89\x5c\xae\x7b\xfb\xc8\xdb\x6a\xae\x0f\xb4\xb7\xc4\x5f\x61\xdc\x5a\xe0\x51\x98\xa3\x93\x6e\xa8\x5c\x90\x71\x27\xd1\x9b\x9e\x9c\x59\x67\xfb\xc0\xab\xef\x8c\x57\x07\xca\x9c\xcd\xde\xcb\x43\xf6\x2f\x63\x12\x0d\x5e\x09\xfb\x73\x47\x5b\x51\x62\xed\xe0\x39\x6d\x81\x7d\x64\x51\x56\xd5\xb7\xfa\x79\x3b\x3f\x6b\x47\x1a\xa5\xc6\xa6\xfb\xf7\xb0\xe6\xf6\x66\x30\x92\xf5\xf8\xce\x3f\x98\x8e\x70\xed\xc6\xde\xf1\xbd\x0c\xaf\xae\xaa\x89\xef\x7c\x86\xcb\xb8\xaf\xa9\x86\xb1\xe7\x87\x29\xae\xb8\x7c\xad\x87\x7f\xe1\xa5\xcd\x17\xde\xea\x7d\x29\x43\xfe\xcb\xee\xba\xee\x15\xdb\x99\xb5\xc8\x2d\x63\x8e\x63\x5c\xee\xe3\x5c\xd6\x4f\x75\xff\x59\x9c\xcb\x5f\x87\xa7\x9c\x69\x9e\xf2\x3b\x5a\x0a\x9c\x90\xc3\xbf\x79\x42\x68\x97\x87\xe1\x24\xba\xce\xd3\xcb\x61\xbc\x66\x97\x7d\x34\xf9\x50\xf2\xfc\x90\xb9\xee\x5d\xf8\xd7\x1d\xe1\x08\x2c\xef\x2b\x56\x74\x48\x51\xaf\xe7\xae\x40\x12\x5f\xc3\xcc\xbb\x67\x3c\x0c\xe4\x19\xc4\x89\xc8\x7a\x1a\x65\x7b\x53\x51\x2b\x85\xe9\xab\x88\xd5\x4e\xdf\xe5\x66\xae\x26\x54\xe8\xa7\x59\xd5\xd3\x68\xd3\xbd\xb5\x62\x6e\xbd\x24\x4b\x68\x43\x48\x89\x2c\x1b\xe1\xb5\xf9\x5c\xc1\x27\xad\xd4\x2e\x34\x3a\x50\xfd\x27\x68\x29\x58\x7e\xd5\xeb\x65\x56\xfa\xf3\x4f\xb1\x9c\x3d\xe1\xee\xd2\x97\x47\xb7\x6b\x2d\xee\x76\xa5\xfb\xff\x07\xb9\xd8\x0d\xeb\xeb\x0e\xf4\x25\x72\xad\x82\x51\x97\x6c\xbc\xb9\xb9\x19\x48\xca\x67\xb0\x29\x32\x9a\x27\x3c\xa5\xe9\x79\x47\x76\x4d\x49\x05\xf9\xe9\xdd\xb7\x83\x47\x01\xd6\x6b\x58\x93\xf9\x70\x75\x62\xde\x9d\x8d\x54\x1d\x20\x8a\x4d\x29\x68\xfa\x1d\x2f\x85\xcd\xa0\xb1\x4d\xd4\x72\x35\xaa\xa4\x0c\xf8\x5a\x06\x2b\x7e\x0c\xd6\x92\x07\xef\x57\xf1\x47\xaa\xb7\x86\x30\x87\xab\x2c\x7a\xd3\x29\xcd\x94\x68\xca\x59\x0f\xc5\x92\xe6\x2e\xd0\x95\x3f\x34\xa8\xe8\x80\x86\x39\xaa\xe4\xde\x23\xa7\xd0\xee\x1d\x2f\x75\x29\x45\xa8\x1c\x29\x79\xe8\x23\xea\x04\x72\x91\x25\xb1\x08\x73\x25\x8b\x1e\x74\x02\xe4\x82\x36\x45\x86\x83\x8e\x29\xc1\xf3\x65\xc9\x40\x98\xa2\x00\x49\x0a\x56\xe1\x22\xbe\xf9\xb2\x7e\xb0\x67\xd7\x96\xce\xa8\xb0\x1f\xb0\x23\x62\xcc\xa1\x34\x1c\x13\x3a\x5c\x51\xb1\xe4\xe9\x76\x4b\x01\xe6\xed\x36\xf8\xdd\xf3\x77\x01\xce\xc8\x9d\x8a\x88\x62\x10\xfd\x8c\x62\xbc\x29\xb2\x88\xca\x56\x54\xe7\x6d\x57\xd8\x44\x0c\xbd\x49\x04\x17\xda\x69\x2c\x62\x50\x35\xd0\xd3\xc3\x48\xe5\xcb\x1a\xba\xa0\x82\xd5\x0d\xbb\x0b\xb8\x8c\xe8\x2e\xc2\x70\x84\x99\x5b\xce\x1c\x07\x4f\x55\x71\x03\x59\x5e\x00\xce\x26\x9d\x26\x0e\xd9\x84\x05\xaa\x50\x18\x63\xb5\x48\x94\xff\xcf\xef\xdf\xbe\x7e\xa5\xad\xd5\xb1\xc5\xad\x0e\x45\x08\x5f\xf7\xc9\x58\x9f\x06\xc3\x11\xce\x3d\xa4\x01\xa3\x42\x11\x5e\xee\x9f\x3b\x39\xba\x4b\x86\x29\xcf\xbd\x8b\x7b\xa6\xb6\x00\xa5\x1c\xc1\x87\xca\x04\xfa\x8f\x7a\x64\xc3\x52\x9f\x55\x71\x38\xc2\x85\xab\xab\x1c\x5e\x51\xf1\x24\xcb\x4c\xba\xef\x54\xa7\x84\x08\x61\x86\x33\xe5\xca\x64\x84\x85\xcf\x6d\x43\xe1\x06\x19\xb7\x64\x77\xfa\x30\x1c\x31\x2c\xe8\x27\x50\xaa\xda\x94\x51\x8c\x3f\xfc\xe3\xcf\xdf\xfd\x18\x95\xd8\x4c\xac\x68\x53\x69\x0c\x51\x6c\x94\xe3\x44\xc5\xdf\xcc\x71\xe2\x79\x8b\x5e\xfc\xcb\xe5\x51\xbc\x40\x55\x85\x86\x92\x58\xf4\xbb\x0b\x1c\x0f\xda\x0c\x2f\xf2\x67\x74\xbe\xb9\xf2\x71\x12\x50\x9c\x9a\x6a\x53\x13\x82\xa6\x9d\x38\xef\xd0\xd5\x5a\xdc\x76\xd4\xe8\xc9\xa3\x96\x5b\x4e\xd9\xee\x72\xca\xd4\x72\xc2\x9d\x9b\x25\x4b\x96\x9d\x44\x5d\x8d\xcd\x69\x07\x88\x0b\x79\x40\x03\xca\x55\xc9\x1c\xc0\xb4\xe8\xfc\xa8\x11\xb1\xba\x92\x30\xf7\x11\x77\xd5\x30\x40\x38\x80\x6c\x85\x22\x22\x89\xb6\xec\x6a\x7a\xe0\x1d\xfd\x24\x34\xf2\x2c\xc1\x11\x1a\x24\x86\x01\xb2\x63\x5e\x4f\x8d\xb6\xdb\xf8\xa0\x24\x81\x50\xc7\x08\x28\x11\x2e\x73\x44\xed\x64\x11\x05\x40\xf5\xfb\xd1\x8e\xc8\x8f\x76\xe6\x15\x6d\x9f\x57\x74\xff\xbc\xda\xe0\xcc\xa8\xc7\xd8\xe1\xde\xf8\xc3\xcd\xf4\x70\x53\x0c\x4d\x7f\xb7\x2c\xf8\x4d\x1e\xc5\x6e\xf0\xcb\x7b\x26\x13\x1a\xc6\xd9\x4d\x7c\x5b\xfa\x83\x7b\x3d\x20\xe3\xfd\x78\x91\xee\x0e\x24\xac\x40\x87\x0b\x97\x80\x0b\x13\xbc\xac\xf0\x9a\xef\x6c\x08\x3e\xc2\xd3\x5b\x46\xa8\xad\x2a\xbe\x8f\xd3\x54\x22\x8a\x77\xfc\xb5\x42\x91\xdf\xf2\x22\x14\x38\x78\xf3\xfa\xed\xbb\x00\xa1\x0a\xaf\x37\xbf\x46\x69\x3f\xe9\xc2\xc0\xe6\xfa\xbf\x5e\xdc\x93\x77\x4f\xbf\x83\x02\x53\x9a\xfd\xeb\xc5\x3d\x7b\xfe\xf2\xf9\xbb\xe7\xa6\x3c\x5a\x53\xba\x6c\x16\x99\x52\x25\x86\x5b\xd5\x4f\x0b\xea\x42\x71\x97\x3d\xb8\xdd\x0e\xc6\x12\x65\xbb\xdb\xc3\xc3\xa0\xe6\x51\x1b\x26\x89\x91\xf5\x11\x9d\x92\xd2\x55\xd9\xb9\xe5\x9b\x8e\x28\x98\x62\xec\x48\x7a\xf9\xef\x72\xae\xfe\x5d\x7e\xc9\xdd\xa9\x13\x77\x74\xcb\xba\x9d\x9f\x4a\xda\x11\x4b\x99\x42\x07\xfd\xbd\xa3\x36\x20\x38\xa4\xd1\x38\x1d\x06\x8d\x0d\x0f\xee\x95\xf5\x0d\x8e\xda\xcd\xdc\x0d\x0e\x6e\xeb\xa2\xd6\xde\x08\x29\xa1\xdb\xed\x5d\x85\x94\x25\x4e\x81\x69\x85\xdf\x5f\x51\xf1\xed\x26\xcb\xf4\x4a\xfa\x2e\x2e\x97\x2d\x4a\x3a\xaa\xc9\x57\x54\xa8\xda\x03\x73\x8e\xb1\x60\xaa\x04\x71\x59\xb2\xab\x3c\xbc\xab\xb0\xc0\x14\x55\x58\xef\xe0\x2d\x05\xfe\x93\x4c\xd9\x3b\xa3\xb6\x1a\x1a\x98\xbc\x2a\x11\x92\xeb\x4b\xd3\x4b\xf3\x0d\xcb\xd2\x9f\x7e\x54\x16\xc5\xb0\xd0\x2d\xae\xed\xfb\x6a\xd3\x7e\xa7\x22\xcc\xeb\x76\xab\x34\x9e\x70\x6d\x8b\x27\x46\xb8\xf1\xb9\x44\xdc\x61\x2d\x0e\x4d\x9a\xbd\xe3\x45\x06\x28\xaa\xd3\x0a\x7a\x3c\x97\x7c\x93\xa5\x6f\x69\x9e\x1a\x0c\x26\xd0\xc4\xd2\x0e\xba\x09\xbb\x23\x13\xda\x24\xb2\x58\x9b\xda\xbc\x81\xc3\x4a\x51\x61\xdb\xf8\x5f\xb5\xe3\xd5\x9e\xcd\x9d\x5c\x16\xf2\x65\xf3\xb4\x0c\xcd\x74\x06\xd4\x90\x24\x8a\x8d\x44\xa8\x37\x6b\x78\x29\xe4\x94\x01\x03\xd7\xeb\xb0\x40\x93\x55\x58\xa0\xa8\xc0\xb9\xf6\x49\x8d\xcc\x45\xa7\x18\x5a\x52\x7a\xb7\x18\x1b\x15\xa0\x03\x26\xcb\x9a\x30\x72\x1b\x32\x14\xad\x43\x26\x09\x24\x46\x56\x21\x43\x35\xaf\xf2\xc1\xdf\xc2\x43\x34\xb1\xb8\x59\xa6\xc6\xb0\xaa\xb5\xcb\x11\xb4\xdd\x6a\x18\x98\x87\x9f\xe1\x50\x22\xfb\x25\x77\x3e\xaf\xcd\x89\x45\x27\xa7\xf2\x4d\x89\xe3\x1d\x06\xa8\xc2\xf5\x6d\x2c\x6a\x1e\xa9\xeb\x78\xc9\x5e\xea\xe8\x4b\xe0\x49\x1e\x85\x9a\xf6\xcd\x79\xb1\x8a\x33\xf6\x73\x73\xeb\x85\x74\x7a\x12\xa9\xf3\xcc\x53\xc5\x9c\x55\xe8\xc8\x54\x23\xb1\xc2\x6e\x74\x43\x2c\xda\xea\x25\x83\x46\xad\x02\x68\x87\x4b\xae\x25\xa8\x11\x27\x6a\xd3\xde\x4d\x50\x20\xab\xfc\xaa\x0b\xa9\xb3\xa8\x9b\x25\x34\x62\x77\xb3\xfb\x17\x07\xcd\xcc\xb5\xb8\xdd\xac\x0d\x16\x74\x33\x77\x33\x7a\xb7\x80\x1a\xcf\xb8\x99\xbd\x1e\xb9\x9b\xd9\x72\x76\x9b\x19\x5d\xc4\x6e\x26\x47\x05\x35\x73\xb9\x98\x66\x9e\x1a\xff\xb1\x99\xad\x1e\xb9\x5b\xa1\xc7\xf9\x6b\x66\xf5\xa3\x0a\x4c\x55\x56\x2d\x3c\x0f\xb9\xaf\x68\x4e\x8b\x58\xd0\x67\x54\x00\xdf\xf4\x07\x5a\x96\xf1\x15\xb5\xf3\xe9\xc0\xc2\x6e\xc8\xfa\xb0\xc0\xf2\xdc\x62\x18\x95\x1c\x0e\x6b\x22\x59\xaa\x23\x71\xdb\x2e\xd5\xc6\xec\x08\x85\xcf\xbf\x54\x8b\x7a\x22\xcc\xe2\x8d\x76\x5d\x63\x4e\x04\x21\x84\x46\x61\xc2\xf3\x92\x67\x74\x78\x13\x17\x79\x18\xf8\xc7\xf1\x0e\xcf\xb3\xdb\x8e\x5a\xaf\xa5\x26\xc5\x4b\x49\x25\x83\x1d\x6c\x5a\x0e\x3b\x01\x16\x38\x00\x16\xbf\xa2\xa3\x25\xf1\xdc\x1d\xc3\xda\xda\xc1\xdf\x2d\x98\x56\xf1\xc1\x89\x3a\x76\x15\x84\x02\x52\x3c\xc8\xc1\xba\x7a\x80\x0b\x52\xec\x43\x90\x32\x5e\xe3\xc1\x66\x02\xbf\x01\x81\x95\xb9\x7f\x02\x46\xed\x01\x39\x1b\x09\x5a\x14\xe6\xc8\x8a\x72\x1a\xbb\xcd\x4d\xf4\x9d\xa3\xed\x36\xec\x76\xd9\x5e\x29\x7c\x31\xf4\x06\x0b\xce\x9f\x95\xcc\x22\x8b\xf1\x25\x6e\xb5\x15\x01\x49\x5e\xb5\x4e\x8f\x16\x34\x08\x78\x47\x01\xed\x1d\x84\x45\xf3\x20\xbc\xdd\x06\xb0\xe3\x76\x6a\xc1\x07\x9c\x78\x1e\xc1\xc0\x6d\x5d\x4d\x37\xa0\xd7\xcb\xed\xd5\xec\x83\xd1\x24\x98\xbe\xd6\x57\x6e\x2f\x21\xf0\xb6\xf3\xdd\xbb\x1f\x5e\xce\x82\xa8\x71\x84\xce\x8d\x80\x75\x60\x37\x8a\x62\x97\x88\x2f\x80\x88\xc7\x1b\x12\xbc\x51\xa7\x8c\x4e\x68\x93\xc7\x60\x27\x48\x77\xf7\x34\x80\xd1\xe9\x3c\xf9\xfe\xc9\x9f\x3b\x86\xab\x6f\x93\x96\xc0\x1f\x31\x27\x42\xff\x90\x20\x8f\x32\x7c\xa6\x37\x95\xcb\x5c\xee\x2a\x2d\x78\x79\x47\xc5\x45\xd3\x45\xea\x54\xbd\x93\x1c\x98\x9a\xb8\x89\x9a\xef\x2f\xa4\x9e\xd6\x94\xe0\x63\xe0\xfb\xf3\xfb\x29\x4d\xee\x06\x06\xbe\xbf\x80\x46\x62\x53\x46\x0d\x0d\xdf\x5f\x42\x2d\xa9\xc9\x6f\xb1\xf1\xfd\x79\x6d\x32\x93\xcf\x3b\xaf\xde\x9b\xd1\xa5\x33\x39\x6b\x28\xf9\xfe\xcc\xb5\xa4\x26\xbf\x87\x97\xef\xcf\xed\x25\xb4\x79\x15\x89\xf1\x99\x7c\x2a\x91\xca\xb3\x7b\xe4\xaf\x61\x37\x4f\x6a\x0e\x16\x90\x91\x35\xd7\xa2\x6f\x9e\x54\x58\x55\xe1\x76\x3a\x66\x47\xfa\xcd\x5c\x8f\x55\x95\x2f\x67\x7d\xf5\xf9\xab\x9b\x72\xb3\x06\x5b\xc7\xff\x76\x2d\x98\x9a\x02\x45\x1b\x57\x59\x82\x23\xbb\x9f\x25\x34\xd2\xa7\x85\x5c\xcb\xb9\x41\x60\x18\xc0\x65\x11\x52\x0c\x63\x95\x22\xe1\xab\xf5\x46\xd0\x74\x18\x67\x2c\x2e\x55\x0a\x5d\xc6\x50\xed\x05\x1e\x4b\xf9\xf3\x59\x3c\xc2\xd8\x72\xa9\xbf\xa0\x22\x73\x96\xc3\xc0\xc1\x68\x17\x4c\x54\x1e\x19\x3e\xc4\x9f\xf4\x11\xb3\xfd\x2c\x5a\x3f\x0d\xba\x6d\xcb\xab\x2e\x40\xde\x09\xbf\x40\xf5\x01\xdf\xa3\x8a\xa2\x07\x3c\xa3\x57\x71\x72\x7b\x68\xa7\xd4\x00\xf8\x38\xf6\x72\x6d\xef\xf5\xdd\xde\x0b\xb1\x7b\xaf\x2e\xeb\x5a\x1c\x7a\xb5\xe4\xff\x61\xd7\x5c\xbe\x08\xbd\x33\xcf\x62\x19\xcf\xf9\xaf\x77\x15\xc6\x5a\x17\xcd\xe7\xd1\x43\xee\xdd\x9e\x37\x38\x37\xdd\xc2\x1d\x40\xbb\xe3\x03\x23\x0c\x67\xa8\x48\x31\x54\xf7\xb6\xbd\x9e\x39\xbc\x2b\x85\x32\x13\x8e\xaa\x90\x91\x9a\xd2\x22\x43\x93\xbb\x2a\x62\x68\xc2\x74\x92\xe1\x2a\x5e\xd7\x6e\x51\xd8\x22\x2c\x42\x81\xcc\x35\xc0\x2e\x0b\xc2\x39\x22\xd0\x32\x5c\x8e\x96\x10\x3a\x08\xe1\xdc\xf3\xa0\x2e\x36\x65\xe4\xd2\x50\x84\x05\x13\x19\x38\xac\x45\x51\xc8\x09\xc3\x75\xe0\xb9\x04\xae\x09\x95\x91\xf6\x0e\x05\x9a\xdc\x57\xe6\x10\xfe\xb7\x5b\xe0\x4a\xcf\xe3\xe4\x23\xcd\x53\x7d\x49\x93\xd2\xb4\x73\xc3\xc4\x12\x98\xd3\x4a\xbc\x20\x05\x22\x2e\x12\xda\xa3\x6e\x7b\x99\x5e\xf3\x10\x80\x2c\xf7\x13\x4b\xcf\x31\x34\x99\xde\x93\x99\x55\xb3\xe8\xde\xf8\x7f\x0a\x60\x56\xcd\xb4\xd7\xa7\x3a\x72\x61\xed\xc8\xa5\x88\x6f\xf6\x62\x8e\xff\x12\x1d\xa4\xfa\xf5\x4b\x53\x80\xc1\x2c\x15\x34\x2c\xe2\x1b\x6d\x9c\xb7\xbd\x1d\x9f\x11\x62\xf8\xff\x56\x5b\xec\x16\xb0\xb7\x3d\x7a\xdb\x34\x32\x16\xbf\x96\xb2\xd8\xff\x72\x68\xdd\x3b\x58\x8b\x9a\x66\x94\x44\x1d\xad\x9a\x51\xe2\x7f\xae\x66\x94\xa8\x69\x46\x79\xd6\x3c\xfe\x27\x98\xaa\xe0\x35\xf6\xf9\x1e\x6b\x19\xff\x76\x53\x15\x4f\x1c\xf9\xf4\x34\x8b\xcb\x92\xb4\xee\xb0\xb1\xde\x8e\x0c\x5d\xb7\xa3\xc1\x88\x4b\x12\xfb\x76\x09\x0e\xd4\x9d\xee\xe7\x44\xfd\xea\x8d\xfb\xf7\x1a\xbc\x60\xa1\x40\xed\xa4\xe5\xae\x15\xf3\xff\x3c\xa5\x39\x6e\xad\x5d\xc4\x35\x19\xef\xda\xd8\x6f\xda\xd1\xa5\x2f\x8f\xe6\xe3\xca\x0f\xff\xd8\xd0\xe2\xf6\xbf\x46\x81\xf6\x3e\x0d\xe7\x89\xdb\x05\xe0\x98\xb1\xab\xb9\x9c\xab\xf3\xd1\xbd\x7a\xb6\xf3\xb8\x64\xc9\x20\x2d\xf8\x3a\xe5\x37\xf9\xa1\xe7\xbc\xbe\x1e\xd3\xb6\x5f\x34\xf2\x1a\xd7\xee\xe5\x7d\xa5\xb4\x67\x55\x7d\x6d\xce\x54\x83\x45\x9c\x65\x92\x38\x19\xb0\xc5\xc0\xf5\xc0\xfd\x79\xe3\x2c\xd9\xc8\xda\x07\x6b\x5e\x32\x98\x5f\x38\xd0\x3d\xd1\x2a\x89\xf7\x6f\x19\x31\x8b\xcf\x14\x05\x5b\x37\xac\x60\xfd\x9b\x92\xd1\xb9\xb8\xd8\xb9\x26\xbd\x20\xe3\xc9\x28\xda\x75\x5e\x87\xce\x85\xb1\x66\x95\x13\xd1\x1f\x5f\x8c\xb7\xdb\xdd\xbc\xa2\x3f\x9e\x68\x27\x25\xee\x9a\x49\xf4\xc7\x60\x58\x33\x47\xce\xd5\x80\x6f\x2f\x04\xc4\x9e\x46\xe7\xec\xa2\x30\x86\xb3\x98\xa9\x8a\x93\x62\xca\x66\x07\x60\xfb\x20\x9f\xf2\x59\x55\xd9\x2d\x05\xc7\x64\x1a\x08\xbe\x0e\x70\x90\xd1\x85\x90\xfd\xcc\xae\x96\xf2\xff\x86\xa5\x62\x19\xe0\x60\x49\x21\x60\x86\x4b\x8d\x41\x9f\x9a\x09\x61\x70\xe8\x5d\x16\xdf\xf2\x8d\x88\xec\x1c\xc6\x22\xbe\x7a\x05\x76\xe3\x02\x5c\xd0\x3c\xa5\xc5\x8b\xfc\x4d\x26\x4f\xe9\x75\x99\x9b\xee\x18\xe1\x6b\x5a\x08\x96\xc4\xd9\x1b\x3d\xd2\x8d\x24\x41\xbc\x11\x1c\xd8\x02\x05\xfb\x99\xe7\xe2\xb3\x09\x0b\xce\xc5\xf3\x6b\x23\xc0\xd6\x48\xb3\xe2\x9b\x92\xc2\xdc\x45\x18\x58\xb7\xef\x0a\x76\x75\x45\x8b\x3f\xc9\xb6\xb6\x00\x27\x54\xb4\x6d\x71\xb3\xbc\xe6\xa2\x51\xc9\x95\xf3\x76\x41\x73\xf1\xa5\x19\x75\x72\xf0\xc8\xae\xa7\xfe\x9e\x66\x3a\x69\x0f\xe5\x3b\x5d\x76\x73\x19\x4d\x5b\x57\x53\x30\xc3\x82\xaf\x95\x9f\x45\x39\xb8\xea\x0d\xc6\x57\xbd\xc2\x10\xab\x57\x35\xca\xea\x9d\x4b\x3c\xff\x56\xdc\x66\xb4\x8c\xee\x2a\x2c\x29\x15\x5f\x88\x58\x5f\x75\x88\x30\xa8\x8d\x6d\x20\xc9\x25\x79\x2c\x76\xf1\x7a\x1a\xc8\x18\x08\x2c\xfd\x40\x1c\xa4\xec\x3a\x30\xb7\x75\xf7\x5c\xe1\x63\x97\x57\x79\x4d\x7f\xf2\xe6\x45\x80\xef\x2a\x3f\xc2\x03\x19\xa2\x0e\x94\x4b\x3b\x48\xb0\x59\xa7\xb1\xa0\x60\x7a\x3a\xbc\xdb\xe4\xec\x1f\x1b\xfa\x22\xd5\x9c\x9f\xab\x0d\x4b\x41\x64\x62\xc9\x4a\x84\x59\xf9\x7a\x4d\xf3\xc8\x35\x40\x13\x69\xd9\xad\x0c\x97\xb4\x18\x98\x98\x4b\x59\x29\x77\xa6\xd4\x4b\x68\x82\x74\x8a\x38\x51\x37\xfb\x77\xdc\x96\x27\xdf\x40\x29\x55\xd7\x05\x56\x46\x55\x14\xbc\xfa\x71\x82\x5f\x5d\x65\x3a\x52\xbd\xfb\xb1\x05\x35\x58\x31\xd2\x22\x21\xe6\xdb\x4b\x25\x0f\x77\x4a\xba\x43\x4f\x86\xff\x97\xbd\xbf\xef\x6e\x1b\xc7\x12\xc4\xe1\xff\xf5\x29\x64\xee\xac\x8a\x18\xc1\x8a\x9c\xea\x73\xe6\x3c\x72\x18\x6d\x2a\x49\x75\x65\x3a\x89\xb3\x49\xaa\x67\xea\x51\x6b\xdd\xb4\x04\xd9\xe8\xd0\xa0\x06\x04\xed\xb8\x2d\x7e\xf7\xdf\xc1\xc5\x0b\x41\x12\x94\x28\xc7\x4e\xa7\xba\x33\x67\xba\x62\x11\xef\xc0\xc5\xc5\x7d\xbf\xaf\x96\x51\xed\xf7\x66\xe3\x85\x9a\x43\x0d\x8c\x87\x8e\xad\x8e\xd9\x35\x13\x26\xb1\x5c\x78\xca\x5e\x31\x2a\x02\xd4\x93\x8f\x3c\xc8\x47\x97\x74\xf9\x9e\x2c\x08\xbd\x22\xcf\x84\x70\x55\x3f\x1a\x72\xb6\x1d\xb5\x3e\xb6\x83\x03\x55\x33\x4d\x96\x2f\xf4\xc6\x62\x61\xbe\xd6\xf6\xbb\xd7\xa8\x1a\x09\x49\x2d\x1c\x90\x69\xcd\x5c\x49\x11\x53\xb0\x07\xaa\x26\x9a\x1c\x88\xc1\x80\x18\x09\x88\xa7\x22\x61\x50\xaf\xc0\xd7\x34\x49\x5e\x90\x4c\xf0\xf4\xe6\x2e\x0b\x72\xaf\x8c\x32\xd0\x95\x30\x8c\x7a\x64\x30\x20\x60\x46\x05\x76\x3a\x99\xa0\x0c\x4c\x6d\x6b\x62\xc9\xf0\xb6\xc5\x8c\xdf\xd8\x41\xbc\x28\x9b\xbe\x5a\x86\xa8\xc0\x19\x69\xb1\x70\xb2\xbc\x8a\x98\xb6\xb5\x06\xe1\x4a\x09\xc1\x4a\x05\xf8\x73\xba\xc8\xdb\xb4\x78\x06\x10\xa0\x8e\x81\x84\xb2\xa0\xbc\xb3\x08\x13\x54\x14\x18\xee\x44\x5d\x58\xe5\xdc\xb9\x4c\x6f\xb4\x3c\xdd\xe6\x38\x4e\x77\x10\x66\x49\x98\xd3\x5c\x0e\x06\x07\x62\xa4\xae\x70\xc5\x50\x56\x4f\x4f\x7e\x0f\x50\x8f\x0d\x06\x07\x47\x20\xbc\x13\x98\xa0\xcd\xa6\x89\x22\x34\x16\x80\xd8\xa6\x45\xa1\x2f\x6a\x93\xcc\xdf\x3a\x63\xb6\x65\xc6\xcc\x99\x31\xab\x4c\x98\x57\x26\xfc\x5c\x0e\xac\xdb\x84\x5c\x4f\x9b\x87\xac\x9c\x76\x73\xf4\xcd\x26\x34\x48\x51\xd3\x3d\x94\x64\xe1\xed\x85\x7d\x4d\x00\xc1\x5f\x55\x7f\xde\xe5\x91\x30\xd8\x77\xcd\xc9\x15\x4d\xf3\xec\xcf\xb5\x67\x3c\xaa\x94\xfe\xd2\x78\xbd\x55\x14\xf7\xf6\xcd\x3f\x92\x03\x20\x64\x62\x3e\xda\xc8\x3f\x40\xaf\x7f\x80\x98\xd1\x92\x53\x99\x2d\x63\x11\x1f\x92\xb3\xe5\x21\x5d\x46\x8e\xd1\xb5\x41\x58\x38\x38\xd4\x8f\xf2\x3c\x40\x60\x0f\x43\x47\x22\x3e\x7b\xc5\x96\xe4\xf3\xd3\xc3\x23\xf9\x73\x25\xc1\x16\xc2\x27\x17\x06\xf1\x56\xf4\x39\xcd\x73\xd4\x67\x16\xa0\x69\x89\xbe\x81\x35\x37\x78\x1e\xf0\xa0\x83\xa6\x5d\xab\xc8\x1a\x3e\xa8\x01\x07\xa9\xc0\x83\x28\xd7\x7d\x4e\x84\x0e\x77\xf4\xd3\xcd\x2b\x85\xe3\x1d\x54\x8e\x30\xdb\x73\x8b\x48\xeb\x16\xad\x24\xbf\xc6\xf4\xc2\x1d\xa4\xa4\x87\x8f\x5a\xbe\x6f\x36\x5b\xe7\xaa\xb0\x76\xd9\x2a\xd0\xc6\x4c\x25\xc8\x3b\xf0\x1a\x34\xa9\xbd\x00\x07\x75\x4a\x31\xc0\x41\x83\x86\x0b\x70\xd0\x0e\x73\x4e\x61\x1d\x5c\x81\xbf\xa8\x10\x33\x3d\x6e\xf7\x17\xa6\x68\x4c\xaf\xec\x62\x1a\x94\x5a\x80\x42\x86\x75\x2e\xef\xe6\xfe\x38\x21\x13\x95\xb6\x48\x3e\x17\xef\x2d\x8c\x40\x53\x0a\x08\xa7\x56\xd2\xa2\x72\x72\xef\xf4\xa8\xb9\x5f\xee\x1d\x1f\xd5\x77\xae\x42\xe1\x39\x28\xc7\x21\xa2\x10\x58\xb4\x31\x95\x5e\x61\x30\x28\x83\xb3\xe8\x4f\x23\x91\xae\x21\x9a\xae\x48\xd7\x8e\x14\xdf\x29\xc5\xc1\xfa\x73\x80\x10\x6e\xb4\x94\x58\x66\x1a\x72\xf8\xd7\xd3\x54\x7e\x56\x6d\x31\x1f\x01\x1e\x52\xb8\xa2\xd1\x0f\x94\x41\x56\x6b\xe7\xb7\x66\xe0\x90\x49\x44\xe2\xa9\x6f\x7a\x6d\x0e\x0d\xdf\xed\xd8\x30\x3f\x78\x9c\x9b\x63\x03\x52\x54\xd1\x84\xe5\x5f\x9e\xbe\xe0\x7b\xeb\x1e\x28\x4c\x0a\x1d\xa8\x3f\x3d\x3d\xa8\x02\xd3\x45\x85\xd5\x53\x35\xd0\x68\x95\xf2\x97\x71\xcd\x41\x05\x62\xfe\xc4\xd6\x3a\x97\xa0\xc1\x80\xcf\xc8\xbc\x1c\x7c\x46\xe6\x30\xb0\x73\xdc\x33\x32\x77\x4a\x51\x81\xb0\x0e\x24\xe4\xd0\xf2\xe9\x3a\x28\xf1\xf1\x6c\x6e\x13\xc6\xa7\x7d\xaa\x14\x3a\x72\x46\xf5\x85\xce\x52\x39\x56\x99\x0c\xd1\x44\x97\xb2\xa5\x53\xaa\x2c\x05\xcb\xe5\xa7\x38\x98\x54\xbc\x65\x4c\x55\xbd\x13\x93\xee\x2d\x10\xd2\xd1\x82\x24\x25\x4a\xcf\x72\x41\xc2\x00\xca\x02\x4c\xb5\x05\xc9\x71\x50\xca\xce\x3c\x2f\x27\xaf\x3d\x73\xbe\x87\xcc\x77\xfb\xb6\xbf\x8d\x9e\x1b\xc9\x0b\xc3\x56\x74\x7d\x2d\xcc\x53\x31\x18\x90\x91\xa6\xd6\xf4\x53\x84\x3c\xef\xaa\xe5\x59\x80\xac\xc1\x8a\xb0\x6d\x90\xb2\x2d\x4d\xc0\x8e\xdf\x29\x6b\x35\x81\xce\xac\x4e\xdb\xe1\xd4\x52\xd0\xfd\xb5\xd0\x83\xf2\xe5\x6a\xa3\x8e\xcb\x88\x3d\x2c\x14\x90\x41\xa7\x41\xae\x36\x37\xcb\x2a\xd7\x4f\xae\x19\xd1\x8c\xdd\x88\x93\x2c\x4d\xae\xc8\x7b\xe8\x5e\xb9\x36\x87\x81\x92\x32\x4e\x08\xbb\xa2\x3c\x65\x90\xd8\x46\x25\x3d\x16\x24\x13\xca\xed\xcf\x29\x1b\x0c\xb6\x46\x28\xb4\x01\xab\xdb\x58\xf1\xc1\xa0\xb5\xc8\x7d\x2d\xda\x98\xb2\xeb\x94\x5f\x5e\xa4\x09\x09\xaa\x5a\xbb\x66\xf4\xdc\xae\x32\x40\x23\x73\x38\x24\xea\x7d\xfa\x87\xd8\x88\x34\x45\x49\xb1\xb9\xa9\x3f\x51\xb6\xa4\xec\x3c\x9b\xcc\xcc\x95\x0d\x96\x94\x07\xf3\x1d\x16\x11\xfb\x2e\xff\x7e\x44\xa1\x65\x6f\x5f\x55\x24\xba\xa5\x7e\xb6\xe0\x69\x52\xba\x40\x77\x10\x9a\xba\x5a\x9d\x36\x9b\x82\x46\xec\x59\x57\x0e\x8a\x19\x58\xb7\xea\x32\x93\x74\xff\x58\x3c\x31\x7f\x83\xec\x93\xcd\xc4\x3c\x22\x33\x31\xef\x95\x56\x4d\x60\x61\x5e\x1b\xea\xab\x86\xad\x25\x77\x0b\x5b\xab\x52\x19\x6e\x89\x58\x5b\x89\xf6\xa6\xe3\xe2\x4b\x6a\xea\x80\x8c\x40\x7a\xf7\x9a\x66\x62\xb3\x71\x7f\x81\x37\x44\x4c\x59\xe6\x07\xe8\x43\x2b\x29\x44\xc7\x88\x44\x10\x13\x96\x30\x43\x6e\x97\x9a\x42\x3b\xae\x8e\x5b\x76\x4d\xd9\x32\xbd\x36\x8a\xe5\x67\x8c\x5e\x02\xb6\xf9\x99\xc7\x97\x24\xac\xe1\x50\x16\xe9\xda\xe7\x04\x04\x98\x12\x64\x81\x4c\x08\x89\xc2\x8f\x2c\x65\x04\x54\xa4\xa3\xd8\x74\xf4\x16\x22\xc0\x06\x3c\x67\x4c\x59\x1a\xbb\x85\xef\x92\xf8\x06\xde\x0d\x74\x4b\x46\xf1\x72\x09\xe2\x59\xb9\x58\x22\x31\x74\x60\xeb\x11\xb6\x2c\xd3\x83\xf5\xe5\x74\xc8\x88\x93\xcb\xf4\x8a\x6c\x6d\xc1\x10\x16\x21\x2a\x90\x8e\xfa\x0a\x7f\xde\x0f\x9a\xca\xef\x24\xf1\xa6\xd9\xc7\x34\x5f\x5c\xbc\x20\x60\xec\xf6\x53\x9a\x26\x24\x66\xe1\xc1\x81\xda\xd5\xc1\x20\x48\x99\x90\x15\x20\x23\x5e\x40\x59\x5f\x15\x20\x7c\x11\x67\x6f\xd2\x2b\x78\x70\xb1\x5d\x22\xa8\xb5\x64\xb7\x82\xc7\x4c\xdd\x7c\xca\xce\x5f\x99\xef\x5e\x20\x39\xac\xd4\x3d\xa4\xcc\x6d\x4d\x96\x9d\x1b\x93\x65\xad\x2d\x65\xe7\x27\xb9\xd8\x63\x68\x08\xae\x72\x6a\x3c\x7c\xf4\x1e\xd5\x64\xe1\x4a\x0c\x6c\x17\xfc\x92\x29\xaa\xa3\x26\x03\x6b\x88\xbf\xd4\x33\x7d\x10\x7d\xe1\x8b\xef\xbe\xf1\xf0\x9a\xd4\x19\xb7\xfa\x44\x2a\x5c\x2c\x6e\x4a\xe5\xf6\x65\x83\x0b\x84\xe1\x81\x6b\x8c\xd3\x45\x2b\x83\xab\x92\xef\x06\x35\x24\xe1\xc6\xcb\x61\xef\xdf\x39\x50\x6a\xc0\xd8\x71\x48\x19\xb7\x12\x98\x46\x42\xf3\x4c\x69\x24\x34\xc7\x13\x83\xc3\x15\x7c\xcc\x22\xe1\x32\x19\x12\x77\x64\x83\x81\xcb\xc8\x64\x1e\x16\x46\xa0\x5b\x32\x74\x0d\xc3\xaa\xd4\x7d\x36\x13\x73\x2c\xc9\x76\xc9\xa4\x0c\x06\xa1\xac\x2b\xd2\xb5\xeb\x72\x0f\xc5\x08\x73\x5d\x0a\x52\xad\xb2\x98\xeb\x62\xaa\x8b\x95\xa8\xab\x2c\xa7\xba\x3c\xd5\xe5\x4a\xfe\xd5\x77\xb9\x0d\x28\x8f\x75\xb9\x16\x8a\x95\x15\x62\x84\xb0\x79\xf2\x9e\x8e\x51\xc5\xe8\x53\xbf\x46\x17\xe2\x32\xf9\x10\xaf\xc0\x2e\x18\xf9\x15\x2c\xbb\x35\x22\xda\x99\x2a\x4d\xc5\x9b\x34\xcf\xc8\x0b\x23\xa9\xf0\x15\x54\xb4\x0b\x4a\xad\x90\x2f\x2e\x20\x79\xda\x2f\x50\x5b\xcb\x61\x1a\x9f\xfd\x0d\x25\x9a\x6a\xb6\x73\xbe\x36\x9a\x5d\x5f\x10\x92\x54\x9a\xb8\x5f\x9c\xea\x0d\x89\xb9\xa5\x93\xb5\xa8\x5f\x51\x36\x12\x47\x3c\x63\x0b\x92\x89\x94\x67\xd1\x6c\x8e\xeb\xca\x8e\xfd\x75\x1b\x0e\x8f\x52\x47\x46\x55\x0d\x56\x15\x37\x07\x4e\x3b\x1f\x8e\x96\xb0\xa2\xf4\x34\x39\x4b\xd2\x74\xfd\xec\x3a\xe6\xa4\x14\xef\xb8\x51\x5f\x6b\x7a\x88\x92\xaf\x2b\x65\x89\xa8\xa8\x28\x23\x0c\x8e\xda\x1f\x7a\x4e\x05\x89\xb9\xdc\x93\xf0\x7e\x74\x36\x8e\x18\x29\x59\xbe\xb0\x67\xa6\x9c\x2e\xbd\xc7\xe9\x70\x7e\x3b\x31\x53\x4d\x38\x87\x79\xc4\x00\x15\x51\x70\x3e\x5c\x49\x04\xc4\x34\x2a\x8a\xe5\x5f\x6e\xf5\x63\x49\x6e\x29\x5e\x79\xb3\xd1\x72\x0d\xae\x4c\x60\x94\x7f\xbf\xfe\x2b\xd5\x22\xf6\x58\x1e\xb6\x6e\xe0\xe8\x90\xb2\xc5\x05\x91\x74\xc3\x09\x03\x6b\xf5\x95\x20\xfc\x3d\x0c\xa3\x00\x00\x5b\xe9\x2f\x9a\x94\xac\xb9\xd5\x48\x68\xf8\xa9\x30\xe8\x59\x7d\xb7\xc0\x09\xbb\xaa\x1e\x69\xca\x00\xea\xf7\x41\x0b\x6f\x2b\xe2\xd9\xea\x37\x47\x34\xfb\x45\xb2\xe1\xea\x1d\x33\x03\x76\x15\x51\x37\x54\x87\x15\x4d\x7d\x80\x7a\xb6\xa3\x06\x89\x28\x5a\x11\x1e\x3e\x18\xbb\xf7\xb6\x42\x7a\xc9\x4b\x1b\xb6\x77\x1a\x38\x44\x58\x0b\x4e\x84\xde\x77\xf5\x00\x34\xe8\xb6\xf9\xa1\x5e\x53\x19\x05\xba\xb2\x57\x5a\x1f\xe5\xdb\x56\xcf\x68\xa0\xa8\xa0\x2e\xcd\x21\x9c\xc8\x69\x60\x1b\x55\x97\xa9\xdb\xa1\x4e\x72\xed\x5a\xbc\xcf\x58\x40\xbc\x79\x2d\xa9\x9d\xc1\x68\x65\x30\x58\xf8\x4b\x26\x08\x57\xde\xc7\x1d\x87\x03\xbb\x0c\x02\xcd\x7c\x03\x52\x77\xc0\xb4\x39\xe0\x6b\x12\x5f\x49\x08\x4a\xf7\x1b\x30\x81\x66\xbe\x01\x53\x77\xc0\xb8\x32\xe0\x9f\xc8\xcd\x0b\x75\xfb\xe2\xce\xa3\x7d\x22\x37\xea\x7e\x7b\x86\xd2\x39\x9c\x24\xc9\xd0\xc4\xf6\x16\x53\x78\xde\x3c\x33\xa9\x0f\xcd\x32\xd3\x2c\x5e\x2e\xff\x08\x29\xa8\x61\x3e\xee\x67\xd5\x08\xc0\x9c\xb2\x73\x3b\x8c\x84\xfd\x93\x33\xb0\x2d\x66\xe7\x2f\xd2\xcb\x37\xb9\x4a\x24\x6d\x9b\xb6\xbe\x8e\x7b\xe2\x49\xd5\x05\x79\xc5\x50\x43\xc1\x6a\x9e\x9c\xf2\x7d\xea\xf2\x30\xeb\x0e\x4f\x72\x11\xfa\x0e\xa5\x05\x77\x81\x26\x13\x7b\xee\x6d\x53\x05\x68\x98\x33\xad\x7a\xad\x1f\xba\x65\xdb\xc9\x48\xc4\xfc\x9c\x08\xa3\xa3\xad\xa2\x62\x3d\xdb\xea\x47\x4f\xe3\x69\x65\xcc\xe8\xe0\x68\x72\x60\x19\x63\x12\x3a\x6a\xa0\x38\xac\x65\xc7\x8b\xc3\x56\x64\x1f\x73\x1a\x1f\xa6\xd7\x2c\x8b\x1c\x0f\x4e\x2b\x70\xcb\x46\x74\xa9\x32\xe3\xa9\x04\xf0\x65\x50\xaa\xc1\x80\xfa\xaa\x49\x26\x7f\xb3\x21\x21\xc5\xcc\x88\xd0\x0f\x8e\x0a\xbb\x86\x3a\x45\xa6\xd7\x54\x7b\xc3\x6a\xa2\x6b\x22\x11\xe6\xa4\xbe\xf8\x02\xd7\x20\xd9\x85\x16\x2d\xac\x68\xde\x3a\x4e\x32\xfa\x77\x12\x6c\x23\xbe\x10\x6e\x6d\x9d\x72\x6a\xd2\xa8\x2f\x2e\x62\x76\xbe\xa3\xa3\x02\xb7\x5f\x1e\xff\x6b\xae\x5e\xef\x4b\x5d\x49\x35\x24\x1c\x44\x68\x6f\x6a\x1f\x2b\xcc\x51\x28\x66\xe3\xb9\x9c\x30\x59\xbe\x4d\x97\xc4\x58\x0d\x6e\x36\xf0\x5d\xc9\x4b\x2a\x25\x08\x22\x18\x79\xa7\x1d\x22\xa3\xc7\xaf\xcf\x63\x94\xaa\x3f\xbc\xb7\x09\xdf\x2e\x2e\x68\xb2\x94\x9b\x35\x39\x18\xe3\x2c\x3f\x13\x9c\x10\xad\x5a\x50\x33\xd8\x71\x5a\x5e\xb1\xce\x3e\x07\xe6\xed\xe0\x0e\x67\x96\xae\x77\x1e\x99\x77\x7f\x06\x83\xd0\xbf\x6f\x4b\x9a\x2d\x52\xc6\xc8\x42\x84\x2d\x5b\x1b\x69\x83\x1f\x8b\x03\x5b\xe0\x23\xf3\xef\xbd\x53\x99\xf8\xf9\x11\x52\x67\x46\xac\xc8\x07\xc4\x0d\x76\xe4\x93\xbc\x19\x0e\x0e\x64\xc3\x15\x8d\x4c\x85\xf0\x9e\xd6\x24\x8e\xd5\x5f\x93\x5a\x29\xa6\x11\x91\x17\x9b\x11\x09\x8f\xe1\xc1\x18\xf5\xe8\x48\x52\x9a\x25\xb3\x3d\xa2\x92\xc8\x3c\x84\x4a\x41\xf3\xbd\xf5\x33\x54\xc7\xa1\x88\x68\x29\x33\x45\x1a\x1a\x0c\x7f\x82\xd3\x30\x36\x29\xd4\xfa\x12\x93\xe1\x90\x55\xeb\xc7\x4b\x93\x1b\x82\xe1\x34\x6c\x19\xce\x48\xba\x02\x54\xed\x0c\xf8\x20\xc2\x96\xcf\xe5\x1d\x08\xa9\x4b\xcc\xd7\x4f\x22\x46\x38\x0b\x69\x45\x48\xa4\xe7\x6a\x1a\xcb\xe3\x68\xd0\x9d\x2e\x40\xec\x22\x3f\x65\x67\x81\x9f\x35\x97\xb8\x54\xf7\xee\x7c\x6d\x80\x76\x89\x68\xc7\x25\xb1\xeb\xbd\x5f\xdd\x06\x74\x19\xfb\x36\x93\xb1\x1a\x50\x83\xd5\x89\xff\x0d\x05\x3d\x9c\xfe\xa9\xc5\xd3\x10\x15\xe1\x9c\x88\x67\x26\xa2\xb4\xa2\x66\x90\xf3\xf4\x48\x0e\xd1\x54\x53\xa5\x2f\x48\x22\x62\x70\xe1\xc6\x69\xc4\x47\x4b\xf9\xf3\xbf\x71\x6c\xfe\xfc\xad\x97\x3e\x61\xfa\xeb\x5b\x72\x0e\xe9\x70\xa6\xa1\xe4\x2a\xab\xdf\x30\x01\xb5\x2e\x61\xe2\x85\x8e\x0f\x88\xd0\x24\x7d\x6a\xaa\x29\x7d\x6e\xb5\xa9\xf9\xe6\x6d\x1a\x9b\x51\x7f\x2b\x47\x8d\xa3\xfa\x37\x7f\x53\x33\xea\x6f\x66\x84\xc1\xc0\x69\xbb\x6d\xd8\x52\xdc\xfd\x4e\x15\x91\xe5\x60\x10\xa6\x9b\x8d\xe4\x7d\x55\xd0\x09\x9a\xe9\x07\xdf\x6c\x6e\x8a\x63\xec\x6c\xb0\x92\xb6\x37\xfb\x86\x28\x62\x1e\x9a\xb4\x89\xe4\x66\x73\x1b\x59\xa7\x4a\x0f\xa1\x52\xa9\x04\xf1\xed\x6c\x87\xef\x00\xb9\x20\x5f\x1b\x8d\x78\x24\x9e\x41\xc7\x62\x30\x08\x7e\x3a\x79\xf1\x1b\x64\xb8\x1a\x69\xd1\xfc\x48\xa4\xbf\xae\xd7\x65\x10\x8c\xe0\x97\x8f\x6f\x5e\x6f\xa9\x71\x8c\x88\x32\x34\x90\xc4\x63\xdb\x44\xdc\x61\x7b\x8e\x51\x7d\x9d\xc2\x76\x57\x7f\x30\xae\x18\x56\xe8\x0d\x54\xf5\x03\x34\x0d\x0d\x8d\xfe\xce\x2d\x80\x9b\x68\x5e\x14\x75\x39\xab\x23\x44\x4e\x49\xb3\x25\x9a\x84\x55\xd2\xbf\xca\x11\xec\xea\xd0\x6d\x63\x9f\xf8\xf6\x15\xc2\x06\x34\x27\xd1\x11\xad\x01\xfe\x08\x9a\x62\x43\x7c\xbb\x88\xd7\x22\xe7\xe0\x22\xb4\x8e\xb3\x8c\x5e\x11\x6d\x9b\xd0\xb6\x6c\xef\x88\x5e\xd4\x76\x87\x41\x6b\x7b\xd9\xf2\x8a\xb7\x12\x98\x8a\xa7\xdb\x41\xed\xb4\x71\x7f\x5e\xb1\xb9\x6f\x33\xcd\x28\x6d\x14\x20\x2a\x6a\xe7\xd9\x65\x31\xde\x1d\x7c\x88\xf5\x6c\x1d\x68\xeb\x92\x2c\xfb\xd8\x78\xee\x9a\xf4\xe9\xb6\x5b\xb0\x8d\x03\x37\x52\xe7\x56\x2a\x32\xf4\xd8\x7f\xb7\x09\xbd\x7c\x4b\x25\xf7\x20\xf7\x6a\x7f\xc8\xf7\x10\x7d\xb5\x77\xb2\x5b\xfa\x55\x35\x58\x69\xfa\xe7\x75\xb6\xd8\x30\xde\x35\xf7\x63\xb1\x61\x7b\xfb\x02\x8b\x8d\xba\x55\xc5\x83\xd8\xca\xf0\x68\xa7\xea\xb8\xe7\x73\x09\xee\xd7\xf4\x89\xc4\xa3\xab\xb4\x10\x44\xd0\x34\x10\x3c\x27\x81\x36\xee\x2e\x94\xa4\xad\xb3\xfa\xbb\xaa\xf3\xe6\xbb\x7d\x93\x8c\x5c\x39\x98\x63\x9e\x26\x0d\x9d\xf0\x59\x2e\x44\xca\x02\x84\x63\x4e\xe3\xf7\x69\x43\x3b\x3a\xe2\x24\x5e\x9e\xb0\xe4\x46\xde\xa8\x84\x04\x08\x8b\xf8\x0c\x4c\x1e\x27\x63\x4c\xac\xfb\x97\xe3\xf0\x05\xbc\x9e\x3c\x84\xf8\x5c\xf9\x58\x1c\x1c\x95\xb3\x74\x8c\x8d\xa8\x62\x75\x34\x01\x1f\x58\x2b\x5b\xf3\xe1\xaa\xfa\x61\x8e\x7d\x16\x4b\x76\xd6\x30\x39\x6c\x2d\x98\x84\xbc\xf4\x38\xb0\x4e\x48\x8e\xf8\x5d\x96\x6a\xc3\xf4\x89\x59\x4b\x80\x83\x52\x7e\x32\xb1\xe2\x9b\x00\xc3\x00\xaf\xe3\x33\x92\xa8\xaf\x89\xfc\xd3\xfd\x9c\x90\xe5\x4f\x37\x4e\x59\x42\x96\x67\x37\xba\xc2\x0b\x92\x2d\x38\x3d\x2b\x6b\x2c\xcd\x07\x5b\xe5\x30\xce\x45\x2a\xf7\x3a\x21\x82\xd8\x6f\x0b\x49\x4e\xca\xca\x84\x2d\x63\x30\x76\x52\xcd\x8d\x2f\x8e\xfe\x4d\x3e\xaf\x63\xb6\x2c\x7f\x5f\xc4\xd9\x3a\x5d\xe7\x6b\xf3\xdb\x66\x47\x52\x3f\xc1\xc9\xb8\xac\xad\xdd\x3c\x61\x3f\xa8\x48\x48\x30\x6f\xe8\x47\xeb\x32\x94\x9d\xda\x29\xbf\xfe\x49\x35\x36\x67\x51\x09\x45\xd2\xd4\x7f\x04\xa8\xa1\x61\xac\xfd\xee\xec\x4e\x25\xea\x2a\xc7\x53\xbf\x4e\xb5\xf1\xb9\xa1\x54\x3d\x05\xf0\xce\xd7\xa6\x59\x67\x6a\x47\xb7\x93\x6f\x68\xad\x8f\x2a\xde\x3f\x4b\x97\x37\x8e\x6d\x92\xea\xab\xc5\x32\x49\x90\xcf\xe2\x30\x03\x69\x63\x09\x12\xa8\x00\xe5\xe2\x2b\x96\x11\x2e\xee\xae\xac\x8c\x97\xcb\x37\x31\x5b\xc6\x22\xe5\x37\x7a\xa2\xae\x34\x5b\x45\x5d\x8a\x93\xb2\xe8\xcb\x95\xa4\xfb\x71\xc2\x8d\xb3\xda\xd5\x81\x3d\x01\xdf\x41\x2a\x3e\xba\x76\xbb\x26\xb4\x04\xde\x51\xb9\xc1\xf5\x4b\x57\xa9\x66\x1c\x55\x6a\x37\x4f\xd6\x91\x1f\xb4\x49\x9b\x2d\x37\x57\xd1\x94\xbf\xd3\xbf\x51\xfd\x6e\x9a\x0a\xef\xcd\x07\xc0\xbf\x0a\x79\x35\xcc\x65\x1a\x73\x06\x4c\xa7\x11\xdc\x16\x45\xa7\xad\x64\x38\x2b\xd0\xce\x12\xd7\xf7\xc9\xb3\x1f\xc6\x71\x9a\x6c\x36\xe3\x02\x95\xef\x04\xc2\x2e\x66\x6f\xcc\xb2\x2a\xe7\x72\xa7\x65\x78\x54\x9f\x38\x4c\x1b\x77\x6c\x7d\xe1\x0e\x0f\x29\x3b\x5c\x43\xfd\x02\xe1\xea\x7b\xd2\x98\xc6\x45\xe9\x90\xb2\x65\x67\xca\x5a\xca\x69\xa8\xdb\x34\x9c\x08\x42\x05\xc2\x57\xdb\x27\x72\xd5\x69\x22\x57\xf7\x30\x91\x9a\xa7\xa1\x5f\x05\xb3\x05\x8b\x57\x9d\x00\x7d\x9e\x7f\xb6\x4b\x55\x3b\x3c\x60\x9b\xcd\xc1\xd1\x81\xf1\x01\x44\x83\x81\x43\x27\x54\x78\x73\x52\x52\xea\x00\x08\x63\x08\x7c\xae\x88\x13\xbd\xd6\x5e\x05\x3e\x6a\x44\x46\x00\xb2\xf7\xda\xc7\x52\xdb\x96\xae\x3f\x92\xcf\x42\x69\x68\x68\xca\x7e\x65\x82\x26\x6f\x14\x26\x08\xad\xb9\xcd\xf9\x79\x42\x5e\x65\x3f\x11\xca\xce\x15\x7a\x58\xfe\x74\x03\xc4\x96\x66\xc7\x1d\xcf\xce\xb0\x5b\x93\xe8\xe0\x08\xf5\x84\xd5\xbc\xa8\xfa\xf2\x30\x0a\xa3\x0b\x7b\x9e\xd0\xc5\xa7\x3d\x0e\x40\x80\xa5\x43\xe9\xd6\x18\x2c\x64\x07\xdb\xf7\xf2\x6e\x9b\xf6\x75\xf7\x43\x6f\x87\xaa\xcb\x96\x4d\xad\x60\x87\xbe\xc7\xdb\x48\x10\x15\x2f\x46\xae\xb7\x2e\x8f\xdb\x6c\x1c\xa0\x76\x3c\x4e\x8d\xb4\xd6\x07\xe8\x66\x9e\xaa\xe3\xaa\xa7\xab\x01\x57\xdf\x3a\xeb\xfa\xb6\x2f\x7f\xfc\x8c\xa0\xd0\x78\x57\xe2\x8c\x08\x9d\xef\xa2\x6e\x6e\x2c\x94\xdf\xa3\x16\xf1\x0a\x7e\x73\x1b\x3a\x46\x25\x2a\x84\x8c\x92\x7e\x05\xca\xba\x00\xf6\x35\x40\x68\x24\xe9\xc2\xf2\x53\xa8\x81\x0e\x1f\x8c\xe5\xff\x6b\xa3\xda\x32\xe3\xb4\x00\xd5\x5a\xa5\x2a\x2a\x56\x94\xc5\x49\x72\x73\x6b\xe7\xbb\xa4\x19\x64\x74\x50\xf5\x84\x84\x81\x31\xf2\x88\x50\x2d\x6c\x68\x7b\x80\xfb\xc3\x56\xa5\x81\x41\xdd\x55\x39\x3c\x82\x74\xc7\xa3\x4f\xe4\xe6\x79\xba\x24\x53\xcf\x51\x4e\x7e\x7c\x5c\xa9\x12\x36\x67\x8e\x3d\xcd\xd0\xe4\xf1\x7f\xb8\xed\x06\x03\x51\x57\xcc\x22\x40\x0f\x8d\xa3\xbe\x47\x6d\x42\x13\x8c\x94\x82\xae\x15\x47\x76\x94\x27\xee\x24\xb5\x5a\xe9\xdd\x78\xb9\xdc\x8f\xd8\xc5\x3e\x42\x75\x1b\xeb\xd2\x22\xbd\x81\x32\xd2\x6a\x4f\xe2\x8a\x6f\xf6\x56\x15\x11\xdf\x46\x6b\xec\xba\x63\xc8\x8a\x81\xbe\x1b\xca\x76\x94\x11\x26\xa9\x97\x0a\xb6\x04\x73\x36\xb4\xb3\x67\x87\x45\xdf\xd9\x75\xf9\x92\x2b\x9b\x99\x1d\x5d\x6b\x84\x50\x31\x2d\xf6\x3a\xcd\x57\x47\x79\xae\x9a\x75\x19\x61\x9b\x65\x4f\xb5\x53\x73\xad\xa1\x5b\x00\x94\x3a\xd7\xd2\xcd\xe8\x0f\x8b\x76\x83\x2b\x63\x5e\xb2\x63\xb3\xeb\x86\x56\x4e\x2c\x42\x15\x72\xd0\x67\xb1\x56\x31\xb4\x62\xdd\x06\x6a\x37\xb0\xda\x65\xaf\xe6\x18\xab\xb5\x8f\x01\x6f\xcb\xbe\x16\x6a\x3f\x25\xb9\x6b\x9b\xd6\xde\xfb\x99\xac\xb8\xa7\x35\x5a\x69\xd6\x97\x76\x9b\x7d\x8b\x39\xdf\x16\xfb\x33\xc7\x9c\x2f\xee\x36\x46\x9b\x19\x5f\xec\x0e\x92\xd5\xdf\xa0\x5f\xd7\x01\xea\x65\x3b\x47\xf8\x44\x6e\x24\x6a\xf5\x74\x9f\xe9\xee\xab\xf2\xdf\x74\x97\xfc\xb7\x53\xe0\xb1\x4e\xae\x8a\x64\x54\xca\x59\xe5\x6b\x54\x4e\x42\x31\x3b\xbf\x7c\x7c\xf3\xfa\xa7\x98\x67\x23\x33\x64\x78\x4b\x97\x93\xe0\x97\x3f\x7c\x5e\x9c\xff\xed\x71\x12\xe0\xb3\x24\x5d\x7c\x9a\xfc\x70\xab\xc3\x48\x66\xc1\x64\x16\x0c\x4c\xa6\xd5\x39\x0e\x32\x11\x0b\xd8\x17\x59\x32\x3b\xfa\x03\x3e\xc2\xb3\xd9\xe3\xff\xc0\xc1\x45\x9c\x5d\x04\x2a\xc9\xef\x6c\x66\xa5\x7d\x01\x0e\x34\x3f\x8e\x03\x57\x66\xa6\xde\x59\xc9\x15\x5b\x91\xb4\xf1\xf2\x9a\xcb\x0e\x7f\xc4\x33\xd7\x9d\xb6\xec\x6f\x3e\xc7\xcd\x52\x3d\x84\xb7\xcc\x8e\xea\x2d\x35\x13\x81\xc2\xff\x90\x93\xd0\xfb\x1f\x98\x59\xd4\xc3\x61\x05\x73\x59\x77\x16\x38\x11\xe1\x1c\x06\xd6\xde\xe5\xba\xf9\xb6\x23\x44\x55\x2b\xfc\x0f\x59\x23\x5e\xa6\x2c\xb9\x09\x9a\x2b\x96\x83\xc8\xbd\xd4\xd3\x6a\xd4\x2c\x87\xac\xd5\x54\x0b\x82\x7a\x8f\xf1\x18\xcf\xe6\x73\x1c\x38\xe1\x6c\x82\xed\xdd\x56\xe7\xbc\x6b\x12\x57\xcd\x49\xcc\xdb\x37\xb2\x1e\x1e\x6c\xc7\x46\xd6\xb7\xaf\xaa\x32\xc6\x35\xa5\x92\xbb\xbd\xb8\xea\xad\x74\x07\xb7\x9f\x87\x3c\xa0\x2f\xdc\xf3\xea\x36\xec\xec\xbb\xb2\x49\x77\x38\xcf\x96\x9a\xee\x06\xef\xaa\x2b\xb7\x7f\x57\x1d\x38\x9c\x9d\x8b\x51\x31\xf9\x76\xd4\x52\x07\xbb\xf3\x78\x48\xa7\xce\x2a\x40\xe1\xc0\xf8\x5c\x01\xfa\x18\x07\x7f\xf9\x0b\xe0\x1d\x89\xfe\x5e\x5e\xc5\x49\x30\x59\xc5\x49\x46\x8a\x1f\xf0\x25\x11\xf1\xe4\xf6\x12\x30\xb1\xf2\x92\xbc\x2b\xea\x1f\x5d\x9c\x65\x81\x2f\x6b\xf5\x97\xf8\x6c\x3f\xe4\x6b\x32\xfc\xf8\xf3\xdf\xaf\xfe\xfc\x7c\xb5\xef\x6b\xf2\x07\x1c\xd0\x55\x09\x63\x25\x5e\xb0\xf8\x5d\x9d\x00\xbe\xad\x35\x1c\xe3\xa0\xdf\x97\xb7\xf6\x3f\x54\x80\xbd\x39\x9e\x1d\x1d\xe1\x60\xa1\xd5\x57\x5b\x55\x14\x26\xc8\xc0\x61\xca\xe9\x39\x05\xe4\xfc\xff\x73\x8e\x16\xd7\x66\xe5\xbf\xad\x8d\x19\x55\x1b\xa5\x57\x84\x27\xf1\xcd\x8e\x05\xa8\xff\xdb\x73\x19\xb6\x6b\x35\xed\xa3\x71\x15\x2c\xd7\x31\x8f\x2f\x89\x20\x5c\x0e\x33\x2f\x0c\xb0\xff\x01\xb7\x44\x63\x2c\x23\x23\x98\x97\xbc\x0c\x5d\x08\xea\x2b\x33\x99\x4a\x7c\x02\xb3\xce\x9a\xd3\x6b\xf9\xe4\x96\x1a\x23\xe7\xa5\x65\x8b\x58\x01\xe2\x96\xe3\xe9\x07\xba\x07\x35\xae\x5c\x92\xfd\xa4\xe1\xe8\x79\xb5\xe4\x3f\xb6\x1e\xd7\x0e\x60\xb0\x62\xeb\x7e\xf5\xa1\x74\x7a\x74\x11\xfb\x3e\x2b\x39\x3c\x34\xf3\xf6\x3c\x0d\x66\x30\xdf\x12\xae\xbe\x78\x40\xdf\x3b\x5d\x19\x50\x56\xaa\x99\x71\xba\x98\x51\x16\xab\xf3\x2e\x0f\x54\x1e\xbb\xac\xb3\x03\x92\x25\x81\xd8\x01\x22\x3d\xdf\x7d\x37\x8a\x39\x81\x3b\x1a\x0f\x91\xd6\x78\x19\xb2\xe2\x3c\x07\x78\x65\xe4\xb3\xf8\x40\xcf\x12\x95\xdc\x63\x16\xfc\xef\x45\xce\xb3\x94\x4f\xc6\xff\x3b\x30\x43\x7f\xbf\xbb\xdf\xef\xee\xf7\xbb\x7b\x9f\x77\xb7\xe5\xbb\xea\x4c\x77\xbe\x03\xd8\xbb\x3c\xf1\x8f\x15\x5c\xcf\x1e\x1f\xe1\x3a\x94\x76\x7e\xfe\x01\x62\x2e\xd2\x64\x09\x66\x39\xd0\xae\xbc\x1e\xd9\x3a\x89\x6f\x26\x7d\x96\x32\x72\xdc\xf1\x96\x3e\x30\x2d\x68\xee\xfa\x7d\xd2\x84\x1e\x1b\xb3\xfb\xa7\x09\xff\x78\xf3\x69\xfc\xf8\xef\x7f\x4f\xef\x22\x61\x78\xe8\x3d\xd5\x1b\x50\xee\x69\x6f\xeb\x9e\xb6\x07\x27\xea\xb4\x81\x4e\x42\x05\x9b\xfb\xd0\x18\x7f\xd3\x88\xfb\x22\xab\xa5\x11\x6f\x46\x4f\x8b\x23\x3e\x6a\xc4\x82\xc4\x59\xc4\xb7\x04\x6e\xc3\xb9\x53\x5c\x0f\xd1\x86\x13\x13\x04\x67\x1d\x9f\x93\xff\x3e\x59\xad\x32\x22\xf0\xc2\xfd\xf8\x9b\xfe\xb8\x8a\x40\xa6\xfc\x53\x9a\x83\xf9\xd7\xf3\x84\x12\x26\xde\x2b\xff\x9f\x8b\x68\xa5\xdc\xd3\xd7\xd1\x0a\xfc\xd5\x97\xd1\x4a\xc7\xc9\xb8\x8c\x56\x26\x4e\xc6\x4d\x24\x5a\x7b\xb8\x8a\x6e\x4c\xb5\xf3\xe8\x46\xb7\x3d\x8b\xea\x1a\x0b\xd9\x02\x16\xbd\xd9\xe8\x29\x52\xc6\xcc\x3e\x9c\x46\xb7\x05\xbe\x8e\x98\x63\xac\x8e\x5f\xb6\x06\xf9\xb9\x46\x23\x73\x8a\xc7\x01\x27\x09\x38\x20\x40\x9c\x95\xc1\x20\x88\xcf\xb2\x34\xc9\x85\xfd\x6d\xac\xec\xaf\xdb\x6c\xe8\xaf\xa3\xeb\xbd\x87\x85\x20\x43\x76\xe4\x28\x8a\x5e\x6e\x36\xe5\xc8\xf2\xb7\x12\x90\x7f\x8e\xae\xdb\xf6\xad\x77\x71\x18\x7d\xd6\x5b\x2f\xff\x92\x7b\x7f\x3d\x4a\xe1\xc4\x94\xf1\xfe\x60\x10\x5e\x1c\x46\xd5\x6f\xda\xca\xf7\xb5\x6e\xe6\x2d\xfc\x98\xae\x51\x71\x1e\xc5\xd3\xe5\xe4\x1c\x62\x80\x9c\xea\x10\x90\xe7\x4a\x90\xfa\x21\xba\x18\x26\xb0\x02\x08\x48\x1f\x45\x11\x95\xb3\xcf\x45\x7a\x08\x9c\xbd\xfc\xa0\xa6\x7f\x12\xbd\x89\xc5\xc5\xe8\x92\xb2\xf0\x0c\x5f\x0c\xcf\xd1\xa1\xfa\x1d\x7f\x0e\xc7\xf8\x02\xe1\x67\xd5\xf2\x65\xb5\x7c\xb8\x3c\x3c\x47\x3d\x1a\x9d\x3f\x3d\x19\x0c\x9e\x3d\x3d\x99\x6a\x99\xc0\xe4\xfc\xe9\xb3\xc1\xe0\xe4\xe9\xb3\xa9\x92\x24\x4c\xb2\xcd\x46\xfd\x55\x98\x4c\xb7\x6a\x36\xaa\x7a\x39\x9d\x4f\x3b\xa6\xf3\xa6\xe3\x74\xde\x0c\x06\x9f\x9e\xbe\x31\xa3\x9f\x3f\xfd\x34\x18\xbc\x79\xfa\xc9\x4e\x4f\x4e\x47\xfd\x59\x04\xe5\x14\xa6\xa7\x3a\x28\xe7\xd9\x61\xf8\x61\xb8\x44\x93\x53\x1d\x1e\x74\xa1\x94\x15\x50\xe7\xc3\x30\x94\xa3\x3c\x7a\x3c\xf9\x00\x5b\xfd\x31\x5a\x37\x40\xa5\x0d\xbc\x2a\x17\x06\x39\x31\x27\x6e\xfe\x1c\x27\x39\x09\x03\x8b\xb9\xd0\x66\x13\x7e\x1c\x46\x0b\x84\x83\xf8\x2c\x55\xbd\xa6\xe8\x14\x02\x9d\x7e\x3c\xbc\xb2\xf9\x82\x83\x33\x92\xa4\xd7\x95\xd2\xe1\x65\x99\x12\xf8\xb9\xfc\x39\xbc\x7a\xb2\x18\xba\x17\xf2\x17\x75\x95\xdf\x47\xeb\xa7\x57\xbd\x34\x2a\xfb\xc8\x07\x83\x83\xe7\x83\xc1\xfb\xa9\x1e\x74\x52\x0e\x2e\x8b\xde\x0f\x06\xcf\xa7\xba\xf6\x24\xdf\x6c\xc2\xf2\x97\xae\x88\xb0\x99\x84\x3b\xb3\xe9\xe5\xe4\xf0\xca\x78\xe7\xde\x7a\x92\x28\xd0\x66\x02\x86\x54\xc7\x23\x3a\x2d\x0a\x37\x1d\x94\x9b\x9b\x96\x02\x1a\xf6\x60\xe7\xd8\x87\x9d\xb3\x48\xe5\x47\xb7\x37\x22\x55\xbd\xe4\xed\x98\xb3\x47\xdb\x71\x22\x9c\xbd\x0f\x3f\x0f\x1b\xa8\xaf\x97\x79\x26\x19\xe5\x00\x5b\x43\xaa\x2e\xee\xd3\xc4\xc2\x66\xfd\x9e\x94\xc0\xa7\x67\xbc\x68\x9f\xb1\x46\xcd\xab\xf6\x79\xab\x1a\xbd\x4c\x85\x27\x8d\x6e\x21\x2e\x51\xb8\x38\x5c\xa1\x47\x8f\x8b\xb6\xcb\xa9\x07\xbe\xd8\xf2\xc8\xac\xb7\x6c\x95\x77\xfd\x17\xea\xae\x3d\x5d\xab\x19\xf9\x96\x5f\x5e\xcd\x74\x30\x08\xbd\xbd\xe8\x2a\xc6\x38\xaf\x84\xd7\x78\x1a\x66\x0d\x20\x88\x62\x4c\x25\x26\x6c\x7f\xe9\xec\xbe\x88\x74\x3d\x39\xa4\xfa\xd5\x2b\xd0\xc4\xd3\x99\x86\x70\x9c\x7d\x49\xa0\x37\xc7\x76\x9f\x63\x8a\xd3\x52\xfb\x56\x8d\x1f\x33\x65\xda\x44\x54\x59\x16\x3a\x46\xa2\x13\xd1\x56\x52\x60\x32\xb2\x54\xd1\x7f\x69\xb1\xda\xb2\x0c\x8e\xee\x16\xeb\x61\xca\xe8\xb0\xca\x81\xd7\xf5\x34\x8b\x9a\xd6\x25\xed\x31\xfa\x30\x8b\x2a\xaf\xa5\xb0\x0f\x2b\xe6\xd1\xa3\x50\xc2\xd7\x46\xbd\x65\xe8\x11\x5c\xcb\x15\xfd\x0c\x31\x4d\x9d\x9a\xa8\x1e\xcc\x4c\xa2\xcd\x5e\x49\x9a\x91\x63\x1a\xd1\xaa\xb3\xef\x31\xa2\xab\xb0\x7d\x5e\x14\x61\x30\xbc\x03\x9a\x96\x2e\x94\xe3\x9d\x1d\x6e\x30\xe0\x2a\x5d\xb9\x18\xa5\x57\x84\xaf\x92\xf4\x7a\x58\xfe\xf9\x9b\xf3\xf7\x7f\xdb\x18\x8e\xb4\xe7\x9b\x64\x33\x5f\xde\x9d\x62\x71\x3e\x74\x30\x54\x4f\x06\xb6\x6e\x49\x1f\x48\x2d\xbb\x83\x9b\x20\xd8\x66\x77\x60\x53\x32\x61\x45\xe1\x49\x1e\xd8\x25\x58\xe8\x83\x2d\xbe\xe6\x8c\xdb\x80\x6a\x0a\xa9\xdb\xb4\x63\xae\x5d\x0c\x9d\x8e\x27\x14\x67\xa6\xec\x37\x9c\x97\x65\xd9\x74\x3c\xc9\x70\x62\xca\xde\x48\x1a\x73\x51\x16\x27\x53\x31\x01\x62\x6c\x01\xc9\xce\x6e\x17\x72\x6f\x06\x83\x30\xfe\xf7\x88\xe3\xfc\xdf\x23\xae\x1e\x93\x55\x94\x86\xa8\x17\xff\x7b\xb4\x92\x1f\x57\xe6\xb9\x54\x53\x99\xc4\x58\x8d\x3b\xc9\x8b\xc2\x5d\xc4\x6b\xca\x88\x7a\xcf\xa3\x54\x7d\xaf\x39\x24\x47\xd5\xa4\x11\x60\x53\x21\x51\x4d\x74\x5b\xf5\x29\x9e\x8c\x71\xd5\x53\xd8\x7c\xf8\xad\x5e\xe3\xb7\xb2\x46\x01\xb7\xf1\xd8\xf5\x9a\x36\xee\xd2\xc7\x88\x45\x44\x93\xab\xf0\x0c\x1e\x12\x97\x45\x80\x6c\xfb\xaa\x54\x4d\xdf\x16\x6b\xea\x84\xd6\x7c\x9e\x87\xd1\x21\x71\x49\x63\x5a\x73\x6c\x1e\x46\xcc\x5b\xe1\x37\x4f\x07\x1f\xd3\xb5\x2d\x2e\xdb\xf3\x4a\x79\x19\xd7\x54\xf2\x0c\x36\x0c\x89\xdc\xfc\xba\x5b\x72\x54\x0f\x6b\xeb\xf0\x8f\x38\x8d\xaa\x31\x53\x54\xd0\x5b\x65\xb5\x51\x4f\xba\xf5\xf4\x0f\x83\x81\x0d\x5e\x5e\x26\xdd\xfa\xc3\x7c\xea\xfe\x98\xcc\xe6\xda\x24\xe3\x56\x0b\x18\x27\x1c\x97\x0b\x9f\x8c\xb1\x5d\x85\x3c\x21\x65\x58\xc1\x2b\x47\xc1\xdd\xa3\xd0\x51\x46\x79\xf5\x38\x78\xe5\x38\x34\xb9\x53\x87\x99\x43\xee\xee\x78\x0d\x7e\x32\x4f\xe9\x6f\xcd\xa6\x72\xb3\x6b\x70\x95\xbb\x85\x6a\x05\x8b\x56\x9c\xce\x51\x2f\xb8\x80\x1c\xf8\x12\x9d\x2f\x4a\x1c\x2d\xaf\x98\x33\x81\xc8\x9d\xcd\x50\x60\xf1\x34\xa9\xfb\xcb\x8b\xc3\xa8\xfe\x6d\x22\x9e\x24\x75\x8f\x7c\xa7\x9a\x5d\x8e\x88\xc6\x2d\xf3\xf8\xcd\x99\xc7\xc7\x74\x1d\x39\x4b\x1b\x32\xcc\xcc\x2c\xec\xea\xa7\xcc\x76\x5f\xee\x08\x33\xb3\x28\x3d\xf4\x9d\x6a\x76\x16\x4c\xce\x82\xae\x42\x7e\x00\x31\xe5\x42\xb1\xd9\x30\xfb\x54\x69\xf0\x73\x39\x61\x8a\x53\x63\x06\x3f\x8b\xe7\x65\xb4\x9d\xca\xd7\xc2\x82\x35\x8e\xa3\xf1\x71\xfc\x24\x35\xa1\x94\xe3\xe1\x10\x85\x34\x4a\x65\x2d\x6b\x9e\xe3\xec\x38\xad\xde\xc7\x6a\x0d\xb9\x17\xd4\x39\x66\x4c\x46\xaf\x5f\xbd\x7d\xf9\xe1\xf4\xdd\xcb\xf7\xa7\xef\x9e\xfd\xf1\x65\x44\x46\x2f\x4e\xde\x9c\xbe\x78\xf9\xfa\xe3\xb3\xe6\x07\x59\xb7\x5a\xe3\xd5\x7f\xbf\x7c\x5d\x8d\xef\x3d\xee\x35\x2b\x88\x5e\xa3\x97\x23\x6d\x69\xf6\xb8\xd7\x18\x91\x69\xdb\xb0\x1f\x7b\x8d\xd9\x71\x6d\xd7\xc5\xf2\x24\x71\xe3\x56\x2b\x33\x69\x6a\xcc\xe7\xea\x46\xc4\x6a\x0f\xc2\x80\xae\x38\x64\x25\xeb\x91\x51\xc6\x17\x51\xf0\xbf\x02\x4c\x74\xce\x05\x1b\x95\xb1\xa4\xa0\x6c\xd9\x15\xcd\xe8\x19\x4d\xa8\xb8\x89\x0c\xb4\xd9\x32\x9d\x05\x62\xbc\xfe\x5c\x7e\x33\x89\x1d\x2a\x1f\xcf\x52\xbe\x24\x3c\x52\x31\x94\x6b\x86\xa7\x6e\x58\x11\x62\x3c\xd7\x20\xe1\xad\x00\x84\x01\x97\xd0\x34\xe9\x09\x95\x6a\x06\x61\x31\xba\xe6\x54\x90\x30\x78\x72\xb0\x4c\x17\xe2\x66\x4d\xfa\x17\xe2\x32\x79\xfa\x44\xff\x97\xc4\xcb\xa7\x4f\x1e\xa9\x7f\xe4\x38\x4f\x9f\x64\xeb\x98\x3d\xfd\xef\x27\x8f\xe0\xdf\x27\x8f\xd4\xc7\x47\x50\x3d\x90\xfd\x99\x28\x85\x92\x09\x83\x99\xad\x28\xcf\x0c\x9d\x07\xf3\xd3\x92\x11\xfd\x60\x54\x97\xe1\x06\x38\x21\x36\xb9\x02\x6d\xd2\x22\x8b\x84\xca\xff\xad\xcf\xd2\x98\x2f\x5d\x99\xe4\x22\x5d\xdf\x1c\x6a\x17\x50\x8f\xb7\x6f\xb5\x9d\x57\xaa\xe9\xf6\xb0\x77\xc2\xe3\xef\x51\xcf\xbf\x30\xea\xf9\x7d\x39\x3e\xcf\x82\x2c\x5f\x2c\x88\xd2\x5c\x40\x16\xf3\x39\xa6\x77\x88\xc9\x6d\x40\xa9\xe2\x95\xac\x40\x44\xb0\x16\x17\x5e\x0b\x60\x1f\xc9\x67\xa1\x1c\x75\xed\x27\x30\xff\x06\x25\xa2\xa9\x03\xce\x03\x8d\x5a\xf0\xd5\xad\xf7\x0c\xf6\xba\x5e\xcf\xd8\xa9\xe9\x79\x82\xe7\xb2\xf6\x14\xae\xfb\xd6\x1a\x47\x5f\xe3\x1a\xeb\xb4\xb0\xab\x74\xf2\x76\xc8\xd7\x5d\x3e\x50\xca\xa4\x59\x85\xc4\x38\x18\xe3\x53\x85\x10\x9f\x9b\x19\xb4\x58\x1e\x57\xb6\x00\xdb\xcc\x4f\xf5\x1e\xa7\xc1\xff\x2a\x7d\x5b\x1d\x6b\xd1\x57\x4b\x1d\xc9\x8d\x54\xa3\xd3\x4b\x08\xd3\x14\x85\x9d\xc1\x7f\x7e\x08\x05\xbe\x95\xdb\x3a\xf1\x24\xff\x26\x53\xa2\xd3\xf9\x40\x68\x07\x9b\x25\x44\x7b\x8e\xf9\x5d\x2f\x30\x2d\xe9\xb8\x1e\x6f\x06\x98\xe0\xe8\x96\x8c\xe4\xbf\x35\x67\xbf\x86\x7b\x06\x89\xc4\x8c\xcf\x2b\x57\xa5\xe8\x05\x19\xdc\x30\x77\x8e\x02\xec\xbd\xd5\xa4\x6c\x28\xaa\x19\x99\xdb\xb8\xd4\x21\x45\x08\x4d\x48\x55\x66\x00\x5f\x41\xd3\xe2\xac\xcc\x7b\x32\xd5\x33\xb1\x01\x65\xf5\x6f\x48\x22\xc2\xd3\x9b\x6a\xcc\x89\xfa\x49\x87\x26\x5f\x62\x6d\x0f\x43\x82\x70\x3d\x85\x8b\xed\x3a\xc0\x3a\xaf\xe3\x97\xba\xf1\x36\xd7\xa7\x83\x0f\xff\x0a\xb9\x65\xf6\x8f\x3d\xbc\xad\xdb\x0e\x0e\xc0\x1d\x36\xb3\x6a\xbd\x4c\x77\xbc\x61\x9a\x83\x7e\x44\x33\xe7\x7a\x67\xf9\x5a\xbe\x5f\x5f\x43\xaa\x40\x46\x34\xb3\x9b\xf0\xc1\x8c\x5b\xa5\xcc\x4c\x2c\x89\xe6\x15\x9c\x36\x3f\x8d\x68\x66\xbb\x69\x0a\x23\x0e\x8e\x8a\x5e\xcb\x90\x42\x13\x76\x5a\x11\x0a\xfb\x32\x52\xdb\x13\x8a\xed\x59\xac\xf7\x7c\xde\x1f\x54\x55\xfb\xec\xd7\x9b\xa3\xab\x93\xdf\x9e\xdd\x49\x55\x7b\x37\xa3\xc8\xfd\x96\xdf\xaa\xfc\x96\xdd\x48\x9a\xcf\x6d\x27\x7f\x1f\xaa\x67\xb2\x8d\xae\x82\x26\xde\x41\xdd\xc6\x0f\x95\x2f\xbd\xed\x69\x77\xb2\x6b\x34\x5e\xf9\xec\x22\xcd\x93\xe5\x47\x12\xf3\x17\xe9\x35\x3b\x81\x7c\xb4\xf2\x91\x93\xf3\x6d\x49\xe1\xd0\x94\xaa\x79\x73\x48\x24\x69\xfa\x29\x5f\x87\x41\xa6\x12\xcc\x4f\x0e\x0d\x9d\x1b\xa0\x91\xec\xfd\x4e\xa1\xfb\xed\x48\x1a\xcb\xfa\xa6\x6f\xa3\xda\x42\x14\x23\xf9\xfd\x17\x12\x03\x52\xab\x7c\x98\xd4\x1f\x2e\x68\x42\xb3\x9f\xe3\x4c\x9c\xa5\xa9\x08\x51\x83\x13\xaa\x86\x84\xfd\x41\xc2\xe0\x8c\xc5\x97\x24\xaa\x81\xc0\xa1\xf2\x2e\x9b\xff\x80\xb0\xb8\x43\x6b\xc2\x96\xb2\x2d\x78\x76\x0e\x06\xa2\x24\x98\x59\x44\x46\x8e\x19\xda\x31\x1b\x0c\xd8\x41\x14\x89\x63\x64\x07\x91\x1d\x54\x78\x08\x86\x70\xad\x59\xaf\xbd\x32\x71\xbc\xf9\x1a\x85\x42\xf9\x30\x96\x3b\xd4\x44\x69\x4e\x92\xaf\x83\x7a\x92\xaf\xad\xd7\x4c\x03\x89\xbe\x27\x92\xc2\x7b\x78\x74\xaf\x73\x4a\xa8\x91\xed\x65\xd9\x36\xcb\x9d\x37\xfb\x41\xb1\xe9\xff\xff\xdd\xbb\xf7\xe3\x93\xbf\x3d\xf2\x62\x53\xaf\x09\x74\xd3\xca\xd1\xb9\xd6\x5f\x6e\xde\xe8\x5a\x52\x49\x68\x36\x66\x4f\x4c\x59\x0a\xfa\xef\x84\xb6\xa8\xb2\x19\xbf\x2a\xd6\x50\x47\xca\x04\x0b\xea\x97\x5e\x3c\x80\xf3\xbb\x0e\x03\x97\x67\xeb\x20\x1d\xcc\xd0\xf6\x7a\x6e\x3a\x81\xc6\xd6\x97\x46\x51\xc3\x46\x83\xf0\xe8\x70\xcd\xe9\x55\x2c\xc8\x23\x45\x7e\x56\x8b\xff\x21\xca\x15\xd7\xd9\x51\xfb\x1c\x86\x0c\x1f\xa1\xd9\xd8\xb2\xe4\x95\x0c\x2d\x34\x93\x30\x0c\x39\x5a\x38\x1a\x0c\x42\x1e\xf1\x91\x5a\x05\xc2\x44\xfe\xda\x6c\x82\x00\x15\x85\x26\xaa\x9a\x2f\x4a\xf5\x81\xf4\x49\x11\x8c\x6c\xb0\xb7\x83\xef\x47\xde\x1e\x15\x36\x9d\xcd\x31\x97\x17\x90\x46\x07\x47\x38\x35\x84\x9e\xe0\x37\x16\xe3\xc6\x38\x8b\xc8\xac\xd6\xff\x3c\x44\xc7\x07\x21\x8f\xc2\x38\xca\x00\xb1\x86\x08\x8d\x96\x29\x23\x08\xf2\xa9\x42\xd8\xcb\x58\x45\xf9\x46\xf8\x40\x6c\x36\x4c\x0b\x33\x40\x8d\x72\x2c\x87\x44\xc7\xda\xb5\x3e\x47\xb7\x54\x4e\x21\x8d\x72\xeb\x4e\x2f\x27\x70\xc0\x07\x83\x6c\xa4\xe6\x5e\xfe\x15\x96\x3e\xf7\x74\x15\x52\xa4\x84\x0e\x69\x51\x58\xb9\x08\x2c\xaf\xd7\x55\x18\x01\x84\x7a\xbe\x10\x39\x27\xad\x12\x89\x22\xec\x04\xb4\xe6\xdf\x45\x7c\x49\x12\x08\x44\xed\x27\x91\xf6\x82\xf5\xfb\xa6\x94\xcc\xe4\x5c\x9a\x5e\xbe\x8e\xf6\x7b\x38\xc6\xa2\x0c\xa4\x56\x81\x69\x53\xc7\x25\xbf\x7d\xf4\x39\xdb\x73\xbb\xd6\x54\xc4\xdf\xf0\x86\x99\xe9\x35\xb7\xcc\x96\x6c\xdd\x34\x53\xeb\x9e\xb7\x2d\x89\xb3\x8c\xae\x6e\xbe\xcd\x4d\xd3\x93\x6b\x6c\x99\xf9\xbe\x6d\xc3\x74\x9d\xfb\xdd\xae\x65\x9c\x5d\x10\xfe\xad\x02\x99\x9d\x5d\x7d\xc3\xca\x82\x2d\x3b\x66\x2b\xdd\xef\x96\x5d\x88\xcb\xe4\x30\x8b\x57\xdf\xe6\x96\x99\x14\x68\xf5\x1d\xb3\xdf\xb7\x6c\x98\xa9\x73\xcf\xfb\x95\x5f\xc6\xac\x06\x61\xf7\x4b\x9f\x98\x11\x22\xfa\x9d\x6c\xf8\x5d\x90\x0d\x98\x45\x8f\x4e\x87\x9b\xc3\xe1\xa3\x73\xcc\xa3\xa0\x1f\xd4\x22\xad\xea\xf0\x12\x21\xd1\x94\x24\x5d\x85\x6d\x54\x24\x95\x7b\x44\x23\x6a\xa9\x48\x95\x75\x8c\x9a\x90\x69\x81\x0e\x27\x41\x47\x22\x7d\x9d\x5e\x1b\x0b\xea\x11\x27\xe0\x96\x11\x32\xcc\x5d\x1d\xf1\x45\xcc\x9f\x89\x70\x8c\xaa\xf6\xd6\xc3\x74\x94\x25\x74\x41\xc2\x23\x54\x6c\xbf\x1a\x74\xaf\xab\x91\xc8\x09\x2d\xe2\xac\x2b\x2a\x51\x66\x45\x4e\xab\xfb\xc1\x3a\xf7\x11\x61\xd7\x4e\xaa\xaa\x6a\x72\x0b\xaa\xb1\x68\x4b\x24\xb4\x03\xdb\xf0\xbd\xb6\x14\x34\x38\xdd\xdf\x33\xb5\xa3\x65\xa3\x6f\x67\x43\xcd\x9c\xea\xfb\x69\xbf\x7f\x9d\xed\xe4\xf4\x72\xbf\xad\x84\x06\xdf\xd0\x36\x72\x7a\xd9\xd8\x42\xf9\xed\x2b\x6d\x5f\xce\x16\xb1\x78\xc0\xb7\xcf\x8c\xa0\xed\x3a\xbe\xbf\x7d\xdf\xfa\xdb\x57\x33\x8d\xd0\x11\xa1\x42\x82\x7f\x84\xf4\x9b\xb3\xf1\x1c\xd3\x88\xcd\x8e\xe6\x76\x13\xc1\x56\xf3\xe8\x0f\xe3\x09\xc5\x71\xc4\x66\x8f\xe7\x38\x2b\x4b\xe2\xcd\x26\xc6\x79\x94\x4d\xd3\xc3\x1f\x27\xe9\xde\x32\x17\x3e\x18\x70\x63\xaa\x97\x4f\xb3\x29\x1f\x65\xf9\x99\x2a\x0c\xc7\x38\x47\xc3\x60\x34\x1a\x05\x93\xfa\xe7\x09\xdf\xf1\x0e\xee\x47\x22\xe6\x6c\x49\x78\xb6\x48\xf9\xb7\x49\x53\x97\xd3\xab\x53\xd5\x4e\xc9\x16\xba\xba\xac\x75\xbf\x94\x75\x2e\x29\x94\xbd\xc9\x07\xa7\xd5\xb7\x83\xa6\xed\xa4\xea\xb8\xba\x2c\xf8\x2a\x08\xfb\xfa\x0e\x1e\x96\x26\xde\xa6\x46\x2b\x22\x22\xb8\x8a\x61\x05\x9a\x8a\x89\x63\x24\x24\x10\xd2\xf4\xe4\x18\x8d\x2e\xe3\x75\x15\x5a\xae\x25\x71\xba\xcc\x17\x24\xac\x42\xb1\x0d\x7f\x67\x6c\x42\x50\x81\x67\xf3\x3b\x59\x05\x5d\x83\xa7\xc4\xb6\x5d\x13\x9d\x76\xad\x41\x8f\x7e\x35\x09\xb4\xd1\xc0\x35\xec\x8d\xc7\x5e\x7b\xe3\xb1\x6b\x6f\x3c\x9e\x4f\x82\x00\x3c\x34\xb4\xb1\x89\xd5\x48\x11\xe4\x45\xf6\x2f\x3f\xaf\xc9\x42\x90\x65\x3f\xee\xab\x16\xb8\x7f\x9e\x8a\x7e\xdc\x0f\x86\xa1\x45\xc4\x64\xea\xe8\xb8\x26\xf0\x5a\x96\xa9\x8b\xaa\xcc\x87\x91\x6e\x7b\x4c\x72\xd4\xeb\x38\x18\x68\x05\x4e\xbd\xc0\x3e\x9b\x53\x8f\x2c\xde\x2c\xa2\x98\x78\x0a\xc9\x60\xb0\x65\x38\x00\x2a\xf5\x7c\xa5\x3c\x8a\x22\xfb\xfd\xc0\xfc\x5d\x9a\xc1\x4d\xcd\xdc\x26\x76\xc0\xee\xb0\xe2\x23\xcf\xbf\x83\x4a\x3b\xa8\x58\x3e\xf5\x51\x38\x9d\xfc\xbf\xcd\x5f\xb2\xcd\xe1\xe6\x2f\x8f\xd0\x5f\x3e\x3c\x3a\xc7\xbe\x53\xae\xf2\xad\xc5\xbf\x34\xa8\xd5\x58\x97\xef\x60\x56\x05\x33\x4e\x2f\xff\xa5\x51\x91\x97\x7a\xfa\x0e\x24\x35\x5c\xe4\x62\x93\x7f\x7e\x58\x49\x2f\xd7\x29\xd8\xa8\x7a\x08\xe1\x24\xcd\x72\x4e\xac\x55\xf1\x43\xc3\x4c\xc5\xb8\x50\x91\x68\xa7\xa7\x49\x1a\x2f\x09\xc7\x2c\xba\x7d\xf6\xfc\xe3\xab\x93\xb7\x2a\xad\x54\x4f\x4f\xff\x42\x5c\x26\x67\x31\xcf\x1e\x7d\x22\x37\xd7\x29\x5f\x66\xf5\x49\x53\xd6\x17\x23\x65\xd5\xc9\x6f\xa6\x2c\x92\x3f\x20\xd3\x48\xd8\xb5\x07\x64\xec\x1b\x78\x9a\x0b\xb8\x53\x7b\x8d\x29\x79\xfa\xe6\xa8\x9d\xfb\x42\x26\xb0\x31\x1b\xa9\xf5\x3b\xb4\x3f\xdf\xef\x34\x15\x5b\x73\x99\x27\x82\x1e\xc6\x92\x34\xdf\xcf\x8a\xa2\x4a\xff\x7f\x65\x0f\x83\x87\xf0\x8f\xd5\xe4\xbf\x31\x76\xd2\x36\x7d\x0d\x1b\x70\x86\x79\xb4\xcb\x8d\xc3\x7a\xd4\x86\x2c\x02\xe7\xc9\x90\xdd\xcd\x23\xa2\x8b\x44\x05\xdc\x69\xb8\x65\xa7\xaa\x02\x90\xd2\xe8\x1a\x8e\x38\x0b\x30\x05\x7e\xab\x75\x17\xca\x55\x4c\xd5\x87\x67\x21\x41\x13\x52\xa0\xa6\x81\xa1\xb1\x21\x42\x05\x86\x9d\xce\x5e\xd0\xe5\x73\xc8\x8e\xad\xcd\x22\x53\x93\x65\x5c\x0f\x3e\x9a\xcd\x2b\x61\xe5\x8d\x8d\xb5\xde\x6a\x18\xf8\x4f\xe4\xc6\x64\x37\x94\x3b\x5d\x1f\x53\xaf\x02\x59\x6f\x8d\x5a\x91\x6c\x1e\xa0\x9e\x59\xcb\xcb\xcb\xb5\xb8\x09\xb9\x59\x4b\x0d\x5e\xaa\xcb\x90\xac\xe4\xa4\x4b\xbd\x9a\x9d\xfd\x57\xf2\xe9\x61\x11\xfd\x12\x48\xda\xe9\x5b\x83\x24\xbf\xab\xd7\xd8\x7e\x90\x26\x32\x96\xef\x24\xed\x41\x82\x55\x8c\xe7\x5c\xfd\xde\x20\x58\xb4\x9f\x72\x0b\x00\xa8\x53\xde\x6c\x66\x73\xf0\x24\x93\x00\xcd\x54\xf6\xe5\x15\x4d\x84\x9b\xd6\xde\x82\xf7\xe1\x51\x14\x45\x74\x04\x79\x9f\x4e\x56\x90\x20\xa8\x97\x7a\x93\x83\x36\xee\x0f\x08\x78\x20\xb3\x3a\xc2\xa2\x6b\x13\x06\xd9\x7d\x65\x13\xef\x45\x84\x15\x60\x0a\xfe\x19\x5a\x96\xd6\x9c\x73\x70\x7a\xaa\x10\xb3\xf5\x82\xd1\xbb\x91\xd3\xe5\xcf\x29\x57\xa9\x33\xee\x80\xf3\x19\x21\x4b\x59\x1c\xdf\x64\x22\x5e\x7c\xfa\xfa\xd6\x73\x5f\x48\x04\x8a\xde\x76\xc4\x0d\x20\xda\x48\x3c\xa5\x56\x0d\x90\x1b\x98\xa5\xab\x5f\xe9\x5a\xf8\xf2\x51\x35\xe1\x52\x75\x11\x20\xcc\x1a\x45\xa6\x47\x2f\xd0\xea\x01\x4a\xb2\x52\x79\xed\xa2\x6a\x1a\xb1\xb6\x17\x47\x65\xce\x0f\x59\xf4\xe3\x4e\x5c\x53\x3e\x3c\x22\xaa\x3a\x01\xfe\x2e\xd4\x14\x7c\xb3\x51\xca\x6b\xa3\xa1\xd8\x6c\xf6\xd0\x55\x08\xfc\xa0\xaf\x2c\x3c\xb3\xb3\xf1\x5c\xe2\x99\xd9\xd1\x1c\xc7\x11\x9f\x3d\xae\xd9\x78\x9a\x17\x07\xb2\x9d\xc7\x51\x8a\x53\x70\x25\x6e\x22\x01\x0d\x49\x98\x36\x8b\x2c\x24\xe1\xb8\x59\x68\x40\x35\xdd\xfa\x1c\x77\x45\xe3\x3b\x70\x78\x29\x3c\x71\x3d\xd4\x1a\x91\xfb\x3c\x18\xc7\xfc\xab\x1c\x8f\xbd\xc2\xf9\x3b\x91\xa6\xdf\x3d\x6e\xbf\xb6\xc7\xad\xdd\x54\x1e\x96\x7b\xd5\xc4\xdc\x58\xb8\x5b\x27\x71\xe0\xf8\x98\x3f\x21\xc7\x7c\x38\x44\x62\xc6\xe7\x0e\x36\xe7\x73\xed\x64\x1f\x8a\x48\xc8\x37\x1c\xb5\x50\xa4\x65\xde\x54\x82\x03\x89\xa9\xe5\x9b\xed\x0d\x69\xd3\x74\x7c\xb4\xb1\x0e\xea\x6f\x0e\xe6\xc6\x87\x53\x34\x86\xad\x23\x7d\x8e\x09\xaa\xdf\xef\x52\x9f\x31\x12\xa9\xfa\x81\x26\x33\x31\xb7\x53\x0b\x49\x24\x97\xa4\xc6\xd7\x13\x23\xda\x19\x73\x8e\xee\xc4\xba\xa8\x5b\x14\x71\x3f\x6f\x4c\x6b\x8a\x37\xbe\xc3\xaf\x70\xcb\x6d\x95\xcb\xd9\x9f\xfd\xfb\xc2\xd7\x7c\x56\xc3\xa1\xcf\x42\xa2\x99\x99\x3b\xee\x96\x5c\x45\x45\xbd\x53\x51\x59\xde\xc5\x6f\xb0\x7d\xcb\x16\x17\x39\xfb\x74\xa7\x98\xa4\x9d\x31\x54\xf9\xa6\xff\xcb\xbd\xe8\x72\x8d\x0f\xf8\xa2\xdf\x05\xba\xe0\xc0\x23\xda\x06\x5d\x26\x72\x25\xe6\xea\xcf\x05\xa1\x49\xc5\xb4\xcf\x9c\x1a\x8d\xd6\x31\xcf\xc8\x2b\x06\x36\x7e\x63\xc9\xbd\xb0\x90\xe2\x31\xc4\x63\x29\xcd\xfd\x4a\x84\x03\x04\x85\xf3\xe6\xe3\x40\x1d\x46\x80\x10\x3e\x88\x37\x9b\xf4\xc9\x91\x06\x95\xd9\xdc\xc6\x53\xcb\xa2\x31\xce\xa3\xc3\x23\x9c\x38\xe8\x99\x87\xf1\xa3\x14\xa1\xe3\xec\x49\x7c\x8c\x92\xd9\x70\x98\xcf\x23\xa1\xaf\x5c\x86\xb3\x61\x94\x5a\xac\x97\x54\xd2\xb5\x77\x25\xb4\xf3\xcb\x40\xb3\x39\x75\x3e\x51\x21\x0a\x2f\x4f\x57\x52\xc7\x34\x6c\xd0\xdd\xf9\x65\x80\x30\x51\x1c\x6a\x8b\x58\x06\x2c\x48\x1e\xd7\x2c\x48\xb6\x0a\x43\xbc\xd4\x17\x4c\x9e\x7f\x1d\xea\x6a\x6b\xf6\xaa\x6d\x48\x27\xbd\x5c\xc7\x8b\xae\x2e\x75\xdf\xd1\xce\x3f\x01\xda\xd9\xfd\x94\xed\x94\x5b\x3a\xd6\xc4\x5e\x9a\x86\xa1\x69\xd8\x72\x4f\xd8\x96\xfb\x60\x64\x66\xcf\xc2\x19\x9b\x97\xb7\xa3\x86\x15\x8c\x60\xc6\xf4\x68\x86\x7e\xc7\x49\x46\x98\xe8\x2e\x79\xda\xe7\x52\xed\xf7\x92\xab\x4e\xee\x24\xfd\xfe\xfa\xbc\x06\xff\x0a\x14\xff\x3e\x6c\x54\x15\x5b\xdc\x79\x76\x1d\x2f\x90\xc3\x94\x7c\x7d\x5e\xab\x69\xa8\xcf\x23\xb9\x2f\x8e\x78\xc0\xda\xca\xdb\x27\xad\xca\xa1\x88\x30\xbd\x1b\x6d\xab\x81\xb4\x8d\xfe\x48\x5b\x2c\xf2\xef\xfe\xd0\xa8\x08\x90\x77\x64\xe0\xdb\xe4\x8c\xed\x3d\x28\xbd\x34\x65\x8b\x24\x5f\x92\x6c\x97\x95\x9d\x0b\x06\xe5\xcb\x56\xb5\x92\x33\xc8\x49\x00\xfd\x50\xa7\xc4\x74\xb4\x91\x03\x0f\xb1\x55\x57\x87\x0c\x06\x25\x0a\x24\x25\xf1\x35\x25\x1e\x5b\x35\xe6\x6a\x6f\x79\xc8\xb0\x40\x05\x3e\x18\xa3\x89\x9a\xe8\x1d\x8f\x5e\x9d\x45\xfb\xd9\x57\xd9\xc0\xbb\x9f\xfa\x92\x2c\xbe\x93\x16\xbf\x53\xd2\xa2\xcd\xb4\xba\x41\x18\x3b\x1c\x86\x12\x59\x6a\x37\x22\x8e\xb9\xde\x6e\x89\xd0\xde\xe6\xb2\x4e\x48\x11\x3e\xa0\xd9\xdb\xf8\x6d\x48\x11\xaa\x87\x04\xe6\x60\x50\x7d\x84\x30\x3d\xe4\x77\x23\x6d\x16\x10\x99\xda\x1b\xa8\xcd\x6f\x22\xbc\xaf\xd2\xdb\x42\x36\x4f\xd7\xdf\x41\xfb\x77\x0a\xda\xff\x40\xaa\x79\x7f\xb6\x92\x6a\x12\x80\xa3\x02\xc3\xd7\xe7\xbb\xe8\x5b\x2f\xbf\x7c\x9f\x04\xae\xa2\xc0\x0f\xcf\xfc\x8e\xe1\xad\x6f\x71\x76\x48\xfe\x27\x8f\x93\xee\xa2\xf7\xef\xb7\xe5\x9f\xe7\xb6\xf0\xfd\x6e\x8b\x90\x84\xb0\x72\xe3\x11\xea\xb6\x08\xe5\xc6\x23\x4a\x4d\x59\x8d\xd6\x4a\x2d\x61\x65\xbe\xc0\x43\x94\x46\x14\x53\xfb\x10\xb5\xdc\xb3\xb4\x59\x72\x76\xf3\x2e\x16\x17\x8e\x04\xa7\x2c\x82\xb5\x3a\x32\x1f\xaf\x6c\x47\xb5\x6f\xbf\xa5\xa6\x7f\xd3\xdb\x4e\xd9\x96\x6e\xe0\x53\x19\xab\x2e\x50\xf3\x29\x26\x08\x75\xb4\x57\x29\xb3\xc2\xf0\x9e\x39\x2b\xcb\x54\x4b\x8e\xde\x63\x3a\xc8\xa6\x1e\xd3\x05\xe6\xca\xdc\x30\x41\xc8\xb1\x45\xe4\x0e\x65\xdd\x70\xf0\x31\x7a\x12\xcc\xdc\x26\x0d\xd2\xda\xf4\x5b\x68\x95\xc5\x36\xe9\xc0\xe8\xff\x90\x78\x71\x31\x2a\xb5\x3f\x08\x73\x63\xd2\xb3\x7d\x47\xc0\x9e\xe2\x41\x44\x09\x7b\x91\x19\x6a\x35\xdf\x09\x8d\x7f\x69\xd4\xf9\x95\x08\x8d\x46\x6c\x55\x9d\x75\x64\xa7\x10\x5b\xd7\xdb\x72\x4b\x6c\x4f\x3b\x91\x9c\xad\x7a\x4f\xc8\x4c\x6c\xc5\x0f\x01\x26\xdd\xd0\x81\x78\x30\x74\xb0\x27\xe1\xc5\x96\x35\xb2\xeb\x3b\x3e\xf8\x8e\x0f\xba\xe0\x03\x8f\x47\x34\x6b\x18\x1d\x7d\x4b\x74\x51\x67\x7a\xa8\x57\xc7\x12\xf7\x6a\xa2\x5b\x57\x49\xb6\xd1\x15\x2d\x64\x5c\x8b\x45\xea\x56\x2a\xae\x66\xc3\x20\xd0\x48\xde\xfb\x9f\xc0\xf8\x03\x15\x7b\x59\xd7\x3e\x1c\x26\x4a\x24\xf4\xdf\x2d\x87\xea\x77\x4c\xf4\x8f\xc7\x44\x5e\xd5\x4c\xc3\x6e\xdf\x27\x91\xf6\x78\x4f\x4b\x2a\x5d\x39\x50\x4f\xc8\x5d\x70\x9c\x06\xa6\x8e\xb2\xbb\x5d\xf8\x8e\xb7\xa9\x27\x1b\xd8\x8d\x23\xcc\x1e\x58\xae\xb2\x17\xb5\x7f\xce\xd3\x7c\xfd\xfd\x7d\xff\xfd\xde\xaa\xfb\x7a\xdf\xbb\xda\xb9\x78\x1c\x1e\x1a\x52\x02\x3d\x27\xa5\x48\x0b\x1d\x7f\xc4\x86\xfb\x81\xbd\x3f\xae\x7a\x4a\x54\x1d\x64\x58\xc9\x40\x97\x52\x96\xcd\x26\x34\x75\x9e\x85\x08\xb3\x59\x69\x6f\xc9\xd1\x3c\x02\x21\x26\x9c\x3e\xd8\xdd\xb0\x02\xef\x79\xa3\xef\x8b\xa3\x69\x90\x2e\x5f\x89\x40\x21\x9d\x28\x92\xae\x94\x06\x43\xdd\x28\x17\xe3\x68\xf2\x0f\x17\x62\x5c\xc4\xd9\x21\x83\x6c\x34\x9d\xa4\xc5\xe6\x5f\xd5\xe4\x2b\xe8\x88\xfd\x72\x69\x95\xa9\xcf\x8f\x70\xa9\xd2\xcc\x2a\x01\x54\xc3\x58\xf5\xb1\xd7\x58\xf5\xf1\x7c\x30\x70\x7f\x61\xad\x66\x95\xcb\x44\xb2\x3f\x4c\xcd\xe5\x3c\x08\xc7\x98\x97\xe2\xb1\x14\x13\x4c\x1d\xe1\xa6\x11\xca\xa5\x77\x42\x38\x17\x71\xf6\x96\x7c\x16\x5b\x95\xbf\xec\x3e\x94\xbf\xf2\xd8\x4d\xee\xfa\x3d\x8f\xbe\x6c\xf6\x4f\x7f\xfc\x66\xa9\x5f\x19\x04\xde\xe9\x61\x1f\x1e\x0c\x28\xfb\x6e\x03\xf0\x7b\xa5\x67\xfe\xa1\x36\x00\xc3\x3b\xd9\x00\x50\xf6\xd5\x6c\x00\x28\x13\x84\x67\x64\xd1\xf5\x61\xfb\x52\xaf\xa4\xfb\xa2\x2e\x7d\xca\x17\x2b\x1f\xb5\x8b\xba\xb3\x68\x80\xb2\xab\xf4\xd3\x83\x5a\x3f\xb6\xdd\xf8\xdf\x8d\xb3\xd4\xc3\xb1\x13\x6a\xf3\xdb\x1c\x7c\x0c\x4f\xf0\xfe\xc3\x9f\xdf\x8d\x62\x37\x31\x29\xaf\x70\xcf\x5e\x0b\x44\x1c\x47\xe9\x68\x9d\xae\xc3\x16\x4f\xa6\x18\x4d\x9b\x6e\xb9\xdb\x43\x04\x08\x7e\xf3\x0a\x26\x1c\x42\xb2\x59\xc7\x2b\x4b\xd6\x2d\x3c\xa9\xc5\xeb\xed\x62\xd5\xae\x70\x75\x81\xf5\x98\x75\x77\x75\x62\xfa\x5b\x4a\xbf\x0b\xb8\x7e\xaf\x4f\xd7\x37\xab\x7a\x33\xc7\xcf\xcb\x17\x32\xc0\x41\xab\x65\x02\x30\xcf\x12\x12\xbf\x25\x03\xa0\xcb\xf8\xbb\x98\xea\xfb\xdd\xf8\xd7\x12\xe2\x7c\x45\x2d\x93\x7c\x34\x7f\xba\x71\x74\xd4\xdf\x84\xca\xe7\x32\xfe\x6e\xf1\xfa\xfd\xc6\x7f\xc3\x86\x28\xbb\xee\xfc\xdd\xcc\x50\xbe\xf2\xbd\xff\xd6\x6e\xfd\x1e\x82\x5b\x25\x4f\x3b\x27\xe2\x10\x62\x23\xdd\x83\xf0\x6e\x1f\xaf\x1d\x9b\x34\xef\xae\x02\xb9\x7a\xf4\x03\x86\x89\x04\xb8\xb4\xa2\xfd\xb0\xde\x3a\x87\x47\x3d\xba\x0a\x0f\xea\x52\x0f\x83\xc4\x68\x14\x45\xe9\x94\x58\x8f\x46\x86\x46\x8a\xf1\x7c\x26\x42\x3a\x3c\xba\xd3\x8d\x94\x47\xb1\x35\x74\x03\xbb\x8f\xd0\x0d\x6a\x9a\x87\xf1\x77\xa7\xe0\xdf\x2b\xb2\xaf\x9b\xd0\x7b\x42\x00\xd8\xed\xaf\xc7\x0e\x70\x8c\x4e\x2c\xbc\xde\x2d\x4a\xa2\x69\xbe\xb7\x56\xdf\x1f\x0a\xc0\xa0\x14\x2f\x6f\xe3\x33\x3d\x06\x44\xab\x5a\x35\x5f\x0d\xad\x3f\xbd\xbf\x30\x00\x7a\x7a\x1e\xa3\xa8\xfa\xbb\xf6\xd5\x02\x01\xec\x25\xcb\x54\xd1\xa0\xe2\xe4\xfb\xa5\xff\x27\xb8\xf4\x6d\x6e\xfa\x5e\x13\x7e\xe6\x0d\x15\x5c\xdc\xe9\xca\x6b\x20\xfa\x5a\x02\xf8\x35\x5d\xfb\x62\x08\x77\x51\x30\xd2\x35\xe9\x46\x9f\x54\x83\xe6\xde\x7f\xb2\x0e\xef\x36\x89\x91\x9c\x60\xcf\xbe\xe7\x83\x41\xc8\x67\xf6\xd7\x5c\x42\x6b\xef\x21\x24\x9e\x6a\x5b\xf6\xf3\xe9\x5a\xf3\xf4\x92\x66\x64\x0f\xaf\x2e\xe6\xf7\x02\x01\x7b\x33\x71\x41\x58\xc8\xd0\x84\x55\xfc\xe3\xf9\xfd\x45\x86\x72\x6e\x60\x19\x43\xa1\x11\x83\x8c\x3b\x21\x15\xc0\x02\x66\x7c\x4c\x9f\x88\x63\x3a\x1c\x22\x3e\xa3\x6e\x0c\x32\x3a\x2f\x2d\x6a\x3c\xc6\x72\x98\xda\x3b\xa5\x72\x0f\x89\xaa\xff\x3e\x87\xa5\x82\x57\xb7\xd6\x93\xdd\xe9\xe6\x29\xb1\xff\xcf\x7a\x60\xb8\x7f\xf2\x2c\xdb\xa9\xc5\x7b\x86\x9b\xfd\xd4\xfc\xff\x94\x8c\xc2\x56\x76\x40\x9d\x7d\x0b\x3b\x70\x78\x37\x76\xc0\x6c\xfa\xc3\xb3\x04\xff\x93\x93\xfc\xc1\xf1\xc2\x43\xde\x70\xb6\xfd\x86\x33\x73\xc3\xd9\xfe\x37\x9c\x35\x6e\x38\x6b\xdc\x70\xb7\xfa\x2e\xdc\xe7\xa1\x6a\xeb\xfd\x15\x68\xd2\xfc\xa6\x8c\xc3\xbf\x08\x89\xc0\x31\x7f\xad\xb7\x9b\x4b\x32\x77\x2f\x98\x82\x58\x55\x9c\x66\x8d\x67\xf8\xbb\x07\xf1\xef\x85\x36\xe5\x95\x38\x37\xf8\xc7\x96\x40\xb8\x71\x14\x9c\xa5\x69\x42\x62\x49\xa8\x6a\xb8\x93\xf4\xea\xc9\x0a\xc2\xe1\xc6\x3d\x15\x90\x6e\x06\x76\x27\xf4\x49\x8a\xcc\xfe\xe7\x51\x3c\x15\xa3\x44\x90\x89\xfc\x2f\x4e\x22\x7a\x9c\x87\x09\x4e\xd1\x71\x32\x1c\xa2\x4c\xed\x75\x02\xa8\x9a\x3e\x2d\x9b\x2d\xa0\xd9\x39\x34\x3b\x17\x78\x15\xd1\xe3\x45\xb8\x92\xcd\x56\x87\x87\xa6\xd9\xaa\x0c\xc1\x13\x45\x51\x3a\x18\xc4\x83\x81\x2e\x4a\x11\xce\xee\x72\xe1\xe0\x0e\x7c\xad\x37\x5a\xa1\xae\xef\xfc\xdd\xef\xf4\x0e\xfd\x7e\x5c\xc7\x3c\xe2\xfa\x2e\x7e\x65\x94\x51\x41\xe3\xe4\xcf\x5d\x7c\xc8\xf6\x71\x39\xad\x75\xdc\x10\xfd\xb7\x24\x0e\x28\x35\x00\x1e\x4f\xad\x4a\x97\x1e\x4f\x55\x71\x17\xb7\xfb\xc8\x6f\x00\xee\x17\x75\xb9\x26\xfa\x46\x9a\x65\xa8\x13\x01\x6e\x62\x9d\xfc\x5a\xf9\x43\xfa\xb5\x76\x0f\xee\xcd\x09\xc8\x9c\xbf\x07\x14\xf9\x8e\xca\xbe\x07\x14\xf9\x1e\x50\xa4\x1a\xf7\xa3\x53\x40\x91\x83\xbb\x44\x14\xa9\xf6\xfb\x2f\x11\x50\x84\x93\x35\xf9\xae\xda\xfb\xdd\xa2\xce\xce\x06\xf9\x5a\xe0\xcf\xc0\xe2\x3e\x38\xa8\x71\x51\x1c\x4d\x67\x74\xae\xd3\x28\x2b\x49\x82\x5c\x34\xbe\x55\xdb\x35\xe1\x45\x2d\x93\x82\x3d\x7b\x5a\xdc\x09\x7f\x2b\xb0\xfb\x6a\xb2\x05\x72\x45\x78\xe7\x5c\x94\xdf\xa1\xfc\x5b\x83\xf2\xdf\x6f\x54\x6b\x90\xec\xda\x74\xe4\x1a\x0e\x43\x84\x26\x33\x36\xff\x66\xac\x77\xb3\x8b\x7c\xb5\x4a\xbe\x5f\x8f\xdf\xeb\xf5\xa8\x73\x34\x24\x22\x65\xce\xc6\x2b\x95\xee\xb0\xe2\xb4\xed\x04\x19\x86\x7c\x0e\xd5\xb4\xb3\xd5\xa7\x41\xa0\xc1\x40\x6c\x36\x90\x72\x82\xc7\x6c\x99\x5e\x1e\xd3\xa7\x47\xc7\x48\x27\xa4\x58\x25\xa9\xec\x20\x44\xff\x4e\x0f\x0f\xe5\xa3\x43\x66\x74\x8e\xe5\x7f\x22\x32\x63\xf2\x2f\x36\x8f\xb8\x15\x98\xdf\xe5\x2a\x6b\xf0\xbc\xd7\x68\x10\x8f\x6b\x92\xc6\x5e\xdd\xed\x2c\x6d\x21\xec\x4b\x5e\xa0\xf5\xf2\xa7\x08\xb3\x30\xc5\xd4\x8d\x5f\x9f\xce\xbf\x9d\xa8\x12\x00\x1a\xdf\x2f\xfb\xef\xf4\xb2\xff\x7e\xe4\x7e\xe5\x75\x48\x4d\xc8\x5a\xc9\xf5\x7c\x33\xaf\x5e\xca\xeb\x12\xa6\xef\x17\xe1\xfb\x45\xd8\x75\x11\x6c\x06\x31\x79\x17\x94\xfb\x23\xa6\x91\x08\x59\x85\x54\x0c\xdb\x1f\x54\x8a\x36\x9b\xba\x14\x09\x0e\x2d\xf2\x98\xba\x97\x81\x89\xea\x25\x12\x7c\xe5\xaa\xb3\xed\x39\x54\x0a\x6c\x2b\xb6\xdf\x35\xa7\xaf\x9d\x42\xa2\xb2\x6e\xd3\x14\xde\x88\xc7\x76\xca\x82\xb0\x47\xd6\x73\x97\xa0\x28\x23\x39\x1b\xd7\x42\xfe\x2e\x46\xf6\x95\x3e\xdc\xf5\x7d\x13\xf6\xf6\x22\xbe\x93\xef\xf4\x77\x1c\xf5\x2f\x8c\xa3\xbe\x2c\xb0\x3c\x98\x8f\x7c\x2b\xaf\xb4\x48\xcf\xcf\x93\x3b\x1a\x75\xaa\xb6\xdf\xb4\x59\xa7\x9a\xe2\xd7\x37\xec\x34\x5b\xf3\x3d\x26\xc3\x03\x49\x60\x3d\xa4\xb2\xbe\x5e\x8f\x91\xc7\x30\xad\xfe\xd6\x52\x6d\x40\xd8\x8c\xef\x63\xb4\x57\xa9\x93\x70\x1e\xbb\x29\xde\x4b\xcc\x0f\x89\xe9\xc5\x66\x23\x86\xf2\x0f\x32\x1d\x4f\xc4\xf0\xa8\x70\x74\x21\x69\x29\x07\xc0\x02\x35\x31\x04\xc5\x1c\xa7\x90\x7b\xcd\x5b\x74\x40\xee\x66\x57\xa6\x80\xef\x6b\x09\x7f\x73\xd6\x1d\x73\xfc\x2e\x22\xb2\xc0\x82\xee\x8c\x50\xaf\xa9\xb8\x48\xf3\xbb\x86\xa8\xf9\xc7\xe4\xdd\xfa\xa2\x2c\x5a\xa2\x61\xa4\x29\x30\xf7\xa0\xb1\x6e\x69\xbe\x40\x7f\x38\x15\x13\x51\x06\x34\x2c\x1c\xef\x4e\x70\x94\xd2\x5b\x2c\x31\xd2\x5d\xae\x87\x6e\xfe\x70\x49\x99\xb5\x91\xf5\x5e\x6f\xa9\x49\xb7\xde\x39\xd5\x73\xe7\x04\xc7\x7b\x24\x25\xdd\x23\xd5\xe2\x3e\x19\xe8\x3a\xe6\x2d\xeb\x9a\x04\x6a\xaf\x7c\x39\xdd\x53\x3e\xec\x11\x0d\x7e\x9f\xc8\xb2\x1d\x03\xb6\xed\x15\xfd\xaa\x7b\x4c\xa8\xae\x41\x77\xba\x87\x20\xe9\x18\xb7\x60\x1f\x0f\xb8\x2f\x77\x1f\xf2\x3a\x28\x75\xb6\x89\xee\x6e\xcb\xb9\x97\x65\x55\x77\xe3\x80\x3d\x54\x48\x7b\xc8\xdd\xba\xf2\xbe\xf7\x41\xe8\xb7\xb0\x13\x9d\xa9\x87\x3d\xde\xd5\x3d\x62\xa5\xef\xe5\x7c\xdd\x59\xb0\xff\xe5\x91\x54\x9b\x6e\x3c\xfb\x04\x75\xdd\x37\x12\x68\x57\x7f\x93\x66\x3c\x4e\x4c\x71\x8a\x63\x9c\xe1\x1c\x27\x78\x81\x57\xf8\x02\xaf\xf1\x12\x5f\xe2\x1b\x7c\x85\xcf\xf1\x19\x3e\xc5\xd7\xf8\x25\xfe\x8c\x3f\xe0\x13\xfc\x0c\x7f\xc2\x6f\xf0\x47\xfc\x1c\xbf\xc7\xef\xf0\x5b\xfc\x37\xfc\x0a\xbf\xc0\xaf\xf1\xcf\xf8\xef\xf8\x97\x2f\xa5\xe3\x5a\x1b\x3c\x83\x77\xf3\x17\x4d\x26\xdd\x12\x96\x5f\x2a\x36\x62\x72\x30\xc6\xe7\x44\x78\x42\x9a\xd9\xb7\xbd\xd8\xda\xb1\x7c\x66\xf7\xea\x97\x75\xea\xf7\xb9\x7c\x95\xf7\xea\x97\x77\xeb\x57\x3d\xe2\x7b\xf5\x4c\x3b\xf7\x9c\x0b\xb2\x57\xcf\x69\xc7\x9e\x15\x89\xb0\x57\xd7\x71\xa7\xae\x5f\x90\xc5\x5e\xbd\x66\xdd\x7a\xe5\xe9\x7a\xaf\x6e\xf3\x4e\xdd\xfe\x0c\x24\xc8\x4f\xfb\x81\x5b\xb2\x47\xd7\x7b\x75\xbc\xe8\xd8\x31\x5b\xee\x39\xe3\x55\xa7\x8e\xff\x28\x49\xa7\x3d\x7b\xbe\xe8\xd4\xf3\x2b\xb6\x1f\x4c\xac\x3b\xf6\xaa\xe9\xb2\xbd\xfa\x5e\x76\xec\x5b\x92\x71\x7b\x75\x7c\xd9\xa9\xe3\xff\x4c\x29\xdb\xab\xdb\x9b\x4e\xdd\xbe\x89\xf7\x3d\xb9\xab\xae\xfd\xee\xd5\xeb\x79\xa7\x5e\x4f\x34\x05\xba\x57\xd7\x67\x9d\xba\x7e\x47\xd7\xfb\x1d\xdb\x69\xe7\x6e\x9f\x41\xcb\xbd\x3a\xbf\xee\xd4\xf9\x7b\x49\x0d\xef\xd5\xef\xcb\x6e\xfd\x02\xf1\xbc\x57\xc7\x9f\x3b\x76\x2c\x0b\xf6\x04\xb8\x0f\x1d\xbb\x96\x94\xf9\x5e\x1d\x9f\x74\xea\xf8\x83\x22\xe4\xf7\xea\xf9\x59\xb7\x9e\x53\xbe\xef\x5e\x7c\xea\xd4\xf1\xc7\x78\x4f\x14\xf4\xa6\x5b\xb7\xc0\x2a\xec\xd5\xf1\x47\xa7\xe3\x76\x1a\x52\x75\x7c\x87\x6b\xf2\xbc\xd3\xbc\x7f\x65\xfb\xf6\xfb\xbe\x53\xbf\xff\xa5\x18\x9c\xbd\x7a\x7e\xd7\xed\xa9\x56\xfc\xd0\x5e\x3d\xbf\xed\x86\x41\xb5\x4f\xfd\x5e\x5d\xff\xad\x1b\x38\x4b\x66\x6b\xaf\x7e\x5f\x75\xea\xf7\x2d\xf9\xbc\xdf\x74\x5f\x74\xc3\xcc\x9a\xdd\xda\xab\xeb\xd7\x9d\xba\xfe\x45\x25\x90\xd8\xab\xe7\x9f\xbb\xf6\x7c\xa7\x79\xff\xbd\x53\xef\xff\x57\x72\x95\x7b\xf5\xfb\x8b\xd3\x6f\x17\x41\x6b\xc3\x4f\xbd\x9b\xbe\xed\x0e\x32\xe3\x44\x10\xaf\x0a\xa8\x4f\x9e\x44\xa2\x80\x0a\x6d\xe5\x50\x7c\xde\xda\xfe\x69\xa4\x2b\xb4\x95\xc3\x26\x77\xdc\x0a\x27\xc4\xc7\xbd\xfb\xf5\x7d\x81\xee\xc5\xe9\x15\xb2\x7c\x28\x31\x3b\xeb\x71\x88\xc8\x6c\x24\xfb\x44\xe5\xdd\xf3\x44\x2f\xaf\xc5\x6e\x80\x4e\x0a\x84\x74\xe2\x0c\xa7\xbd\x51\xd9\xd9\xb4\x1e\xfd\xf4\x69\x34\x9e\xa6\x13\x96\x27\xc9\x1e\xfb\x68\xd5\x29\x0f\x06\x50\xcd\xad\x71\xe3\xe3\x40\x5a\x05\x98\xc1\x66\x03\x59\xdf\x80\x4d\xc6\xbb\xc2\x6a\x3c\x3d\x9a\xb2\xc3\xa3\x09\xe4\x7e\x38\x72\xc3\x6b\x1c\x1e\xf9\x03\x6c\x98\xe0\x38\x44\x3b\xa6\x76\xdd\x1e\x03\x30\x5f\x71\x7b\x9c\x3b\x71\xc7\x38\x32\xd3\xff\xfc\x70\xf2\x76\x94\x81\x4a\x9b\xae\x6e\x42\x82\xa2\x28\xaa\x7d\x13\x46\xd1\x44\xb3\x97\x72\x85\xda\x82\xa5\xfa\x0d\x9c\xd7\xf6\xda\x2d\x25\x66\xfc\xba\xd0\xa4\x3d\x92\xf4\xd0\x75\x2b\x39\xb0\x03\xb0\x9a\xf6\x66\xe9\x7e\xeb\x33\xb1\x67\xf6\xc4\x3a\x7a\x6e\x0f\x8f\x76\xda\x82\xc0\x0c\x06\x0d\x1b\x81\x3b\x86\xc3\xb9\x2d\x3c\x31\xdf\x6a\x9b\x0a\x01\x67\xd0\x60\xb0\xad\x0a\x58\x63\x81\x51\x85\xef\x04\xd8\x22\xe7\x9c\xb0\xc5\xcd\xa3\xc3\xb3\x7c\xb5\x22\xfc\x70\x9d\x26\x74\xd1\xd5\xc8\x76\xdf\xbd\xec\x29\x6c\x54\xc7\x51\xc7\x64\x14\x2f\x04\xbd\x22\x1f\xe3\xec\xd3\x2b\x0d\x43\x66\xbf\x9e\x90\xd1\x65\xfc\xf9\x79\x39\xd5\x63\x63\x51\xa1\x03\xde\x2c\xab\xad\xb2\x0b\xba\x12\xa1\x8a\xe6\x24\xd0\x19\x27\xf1\xa7\x9e\xbf\x7f\xb0\x67\x13\xa8\x28\x7a\x55\x9b\x10\x1b\x2c\xa8\x3a\xee\xa1\x7f\x3c\x35\xcb\xc3\x6d\x4b\x28\xc8\x88\x30\x68\x2b\x4b\xb3\x77\xb0\xc5\xd1\x2d\x27\xff\x93\x53\x4e\xb2\x5f\xd9\x59\x9a\xb3\x25\x59\x3a\x83\x49\x9a\x26\x5b\x5c\x10\xb9\x85\x15\x83\x31\x88\xe6\x29\xc9\x1d\x49\xc2\xbd\x23\x7c\x95\xf2\xcb\x0f\x22\x16\x79\xe6\x0b\x03\x28\xff\x7e\x3a\x9e\x06\x59\xbe\x58\x10\xb2\x0c\x26\x81\x9e\x48\x50\x48\x22\x61\xc9\xd3\xf5\xff\xb5\x6b\xb2\x13\x5b\xc8\xc9\x27\xef\x49\x9c\xa5\x6c\x12\x50\xd1\x3f\x23\x49\xca\xce\xb3\xbe\x48\xfb\x71\xff\x07\xd9\xea\x87\xbe\x6c\xd1\x17\x17\xb1\xe8\x5f\xc7\x59\x3f\x4e\x38\x89\x97\x37\x7d\x9e\x33\x46\xd9\x79\xd0\x3e\x79\x4c\x46\xd9\x5a\xd2\xe2\x95\x9d\x02\xe3\xb6\x91\x3b\x30\xf6\x6e\x37\x1e\xfb\xbf\xeb\x9d\xfe\xa2\xad\x01\x6d\x30\xec\x8b\x9a\xc7\x09\x3b\x4f\x29\x3b\xdf\x67\x6b\x38\xc9\x44\xcc\x85\xc4\x4e\xf5\x1d\x1a\xad\xd5\x8c\x42\x44\x96\xfd\xf8\x3c\xa6\xac\x65\x93\x0c\x70\x7b\xe0\x09\x33\x3f\xd0\xf7\x04\x00\xb3\x7e\x7c\x05\xde\x65\xeb\xe5\x50\x06\x63\xcc\x22\xfd\xdd\xec\xe1\xb1\x78\x62\xfe\x3e\x16\xc3\x21\x62\x33\x31\x8f\xc8\x4c\xd8\x57\x9e\x15\x7e\xc3\x2d\x86\x10\x36\x26\xa1\x91\x31\x0e\x02\xaf\xa3\xcb\xf8\x33\xa0\x4a\x7b\x59\xaa\x57\x0b\xf5\xba\x02\x85\xc0\xca\xda\xf1\xee\xa7\xac\xba\x3b\xb5\xea\x2c\x7b\x11\x7e\xca\xc5\x9f\x08\x59\xbf\x8e\x05\xc9\x44\xc7\xf3\xfe\x64\x1b\x7c\xa3\x17\xe2\xf0\x08\x15\x3b\x10\xbf\x1a\x03\x1e\x54\xfd\xec\x9a\x87\xd5\xff\xfc\x3a\x4d\x45\x9c\x7d\x3a\xb4\x8f\xbe\xaf\x0a\x3c\xcd\x0f\x60\x9e\x79\x11\x67\x17\x11\x19\xf1\x78\x41\xe4\x55\x49\x92\x0f\x44\x88\x84\x2c\xd5\x8f\xaa\x79\x1a\x27\xe7\x84\x29\xc3\xc5\xf7\x39\x13\xf4\x52\x82\x1f\xff\x14\xa6\x92\xac\xcd\xb4\xbd\x10\x64\x54\x7a\xa7\xd6\x8f\x83\x38\x49\x02\x1c\xa3\xf2\x61\x48\x1d\x98\xf2\xf4\x77\xcd\x5d\x67\x6b\xa1\x9f\xb5\x63\x94\x5d\x53\xb1\xb8\x08\x55\x96\xc0\x48\xe7\x8a\xbc\x5d\xc4\x19\xe9\x8f\x27\x25\xcd\x7c\xc6\xf3\xb5\x08\x03\xfd\xe0\x63\x82\x7a\x50\xe5\x68\x22\xff\x09\x08\x5b\x06\x65\xe5\x4c\xa4\xeb\x10\x15\x05\xe6\x58\x82\x08\x2a\xd4\x8a\x6b\x57\x7e\x1c\x45\x91\xbd\xd0\xe6\x41\xeb\x99\x6b\xcf\xa3\xf1\x31\x2f\x2f\xf9\x70\xa8\x79\xa8\x38\x22\x33\x0e\x41\xb9\x0e\xe2\xcd\xe6\x20\x9e\xb1\xd1\x0d\x25\xc9\x52\x02\x87\x32\x01\x9d\xdb\xf8\xe8\xf2\xc6\xab\x30\x5e\x07\x47\x38\x8f\x48\x23\x51\x94\x36\xad\x34\xe4\x91\x49\x60\x7b\xbb\x62\x93\x14\xc7\xfc\x3c\x9b\xcc\xc8\xbc\x40\xa3\x53\x40\x99\x65\x52\xaa\xa3\x83\x28\x62\xa3\x53\x49\xe7\x25\x44\x76\x26\x6f\x37\x19\x0c\xc2\x2c\x3a\x18\x23\xcc\xca\x1c\x53\xd9\x94\x86\x39\x9a\xe4\x6d\x39\xaa\x88\xb2\x55\x2f\x90\xbc\xe2\x0e\x8c\xb8\x67\x0e\x67\xad\x0b\xe4\x91\x63\x0d\x54\x7e\xb8\x90\x45\xba\x16\x40\x60\xb5\x27\xf9\x29\xc0\x9e\x89\x68\x00\xff\x44\x6e\x32\xc9\x55\x5e\xd6\x80\xc5\x4c\x77\x26\xe6\x60\x7a\x6d\xa1\x2e\xae\x44\xf4\xb5\x9f\x33\xc3\xf7\xd6\x6d\xe2\xa8\xda\xf5\x34\x82\x1c\x7d\xb1\x9b\x2c\x6c\x49\x56\x84\x87\xa8\x47\x66\x6c\x1e\x52\xa4\x62\x15\xc6\x23\x4e\xb2\x34\xb9\x22\x58\xfe\xf5\x37\x48\x1a\xe7\x9c\xa9\x43\xcb\x66\x9b\x0d\xec\x3f\x4e\xbd\x69\x87\xe5\xf1\x94\x86\xb6\xe9\xaa\xd4\x89\x4f\xcd\x6b\x1a\xa2\x89\xcf\x89\x64\x74\x7a\x4a\x16\xa7\x1a\x29\x9f\x0e\x06\xb5\x0f\x21\x82\x84\xf9\x38\x89\xe2\x91\xc6\x4e\x23\xed\x24\x10\xe6\x16\x10\x92\x6a\xa3\x28\xc7\xc9\x2e\xac\x47\xd8\x22\x5e\x67\x79\x12\x0b\xb2\x04\x3c\xb6\x27\xb2\x7b\x28\x1e\xa3\xbc\x2f\xc6\x6d\xe0\xf4\x32\xfe\x44\x5e\x69\xcb\xeb\x49\x83\xbf\x80\x77\xe2\x9c\x88\x30\xd0\x04\x46\xe0\xa4\x88\xd6\x04\x01\x44\xc8\x92\xf5\xe4\xb5\x43\x05\xd6\x35\x95\x14\xc3\x27\x19\x73\x96\xed\x79\x0b\xee\x97\xd7\x94\xfb\xaa\xa4\x7a\xcf\x95\x51\x7f\x54\x37\x1b\xb1\x02\x1e\xe5\xff\xcb\x6c\x46\xbb\xaa\x05\x34\xcf\xd9\xe8\x8c\xb2\xa5\x0a\x85\xe1\x6c\x14\x5d\x85\xb4\xca\x25\x69\xe8\xa3\x33\x31\x2f\x89\xa1\x26\xaf\x56\xd2\x46\xf2\x36\x8d\x8f\xe3\x27\xe4\x38\x06\x8a\x28\x76\xe5\x1f\x31\xa0\x4c\x3e\x18\x70\xed\x1c\x73\xab\x2e\x91\x76\x37\xeb\x69\xd7\x99\xd2\xdc\x35\xc3\xa6\xa6\xb5\xd4\x96\x53\xd1\xc7\x45\xff\x51\xf4\x5b\x8a\x8c\x91\x2c\x43\x92\x5d\xdc\x71\x85\xd6\xfa\x78\x0f\x2f\xd3\x25\x5d\x51\xc2\xb3\xc3\x4b\xfa\x99\xb6\xd8\x6e\x3b\x0d\x0d\x29\xc4\xfd\xc5\x55\x4e\xf4\xfe\x69\x07\x33\xef\x37\x66\xda\x9a\x5c\x80\x30\x27\x80\x0e\x3f\x98\x09\x36\x24\x8d\x54\xf2\xd4\xa7\x12\x64\xc1\xac\xe0\x5d\x2c\x2e\x2c\x74\x2a\x4b\xe6\x7a\xa9\x0d\x3a\x39\x3a\xb5\xeb\x2e\xea\x96\x43\xf6\x71\x54\x6b\x57\xd4\xe7\x84\x8c\x4e\xdd\xdf\xb8\x4a\x34\xcb\xe2\xea\x97\x02\x15\x3d\xdf\xf2\x6e\x2b\xdd\x4c\x98\x87\x1b\xc5\xb5\xae\x26\x47\x8f\xc6\xb8\xba\x12\xc0\x16\xf8\xf4\x22\xce\x7e\xcd\xc8\xd2\xf4\x3e\x39\x38\x82\x6f\x1f\x88\xf8\xc9\x1d\x44\x7f\x7e\xc9\x24\xed\xb0\x7c\x79\x25\x2f\x8a\xfc\xe8\x70\x48\x3e\xd3\x24\x85\xab\x58\x2b\x07\x26\x9f\x72\x35\xf9\x6d\xad\x9b\xeb\x43\x05\x96\x34\xfe\xb6\x46\x5e\x66\x18\x15\xb8\xa4\xf1\x77\xb5\xf6\x70\x10\xa8\xa8\x9f\x9a\x87\x3c\x00\xd4\x5c\xdf\x58\xf9\xd8\xaa\x82\x6a\x07\x11\xc1\x14\x06\x45\x50\x5c\x60\x30\x0d\x6e\xef\xb6\x72\x86\x8d\xc6\x44\x1e\x0c\x59\xfa\xac\xda\xcc\xa4\x2a\x47\x68\x66\x55\xe0\x25\x39\xcb\xcf\x5b\xdb\x41\xa9\xad\x5c\xb4\xf8\x09\xc8\xe7\xbf\x09\x3b\xb2\x19\xf1\xee\x47\xed\x42\x44\x02\x53\xc5\x40\xd5\xf7\x28\x8a\x8e\x1e\x8d\x25\x4d\xd2\x28\x39\x42\xd8\xa1\xa4\x64\xf3\xdb\x1d\x68\xce\xc1\x56\x0f\x29\x14\x1b\xdb\x28\x6e\xba\x03\xf3\xfe\x27\x71\x66\xf8\x5c\xb2\x54\x97\x50\x7e\xfa\x20\xaf\x91\xfb\xe1\xbd\xe2\x34\x9d\x1a\x92\xe7\xcd\xb2\x55\x9e\x94\xdf\x9e\x2b\xaa\x9a\x94\x5f\xc0\xa1\xca\xed\xe7\x39\x5c\x3d\xf7\xcb\x2b\xb6\xa8\x34\xd3\xe4\xc3\xf3\x34\x67\x62\x32\xc6\x20\xbd\xfa\x25\x66\xcb\x84\xfc\x9c\x27\x2b\x9a\xe8\xf1\x9c\xef\xca\xb2\x42\x7d\xa6\x8c\x56\x6e\x92\x02\x98\x2c\x5f\x13\xee\xd2\x2b\xf6\x79\x45\x9a\x74\x69\x8a\x43\xa2\xd9\x5c\x95\x79\xf8\xdf\x68\x36\x2f\xb0\xc2\x22\xcf\x92\xc4\x23\x60\x99\xcd\x7b\xd0\xd6\xc7\x7b\x93\xd6\x21\xf1\xb8\xb5\xc8\xd0\x0c\x42\x4f\x78\x4b\xc7\x7e\x3e\xbe\xad\xc8\xe9\x98\x87\x02\x15\xd8\xd3\xf3\xa4\x69\x6a\x5b\x52\x09\x69\xc4\x8e\xd3\x27\x6c\xc8\x8f\x87\xc3\xd4\x70\x7a\x62\x96\xce\x7b\xb1\x64\x63\x34\x24\x6d\x36\x31\xd0\x62\xa3\x25\x59\x70\x22\xb7\xde\x02\x6f\xc0\xf2\x4b\x85\x1a\x03\x84\x63\x43\xd0\x13\x84\xe9\x60\x40\x8d\x5f\xb0\x6c\x8b\x0a\xa1\xd7\x1d\x82\x4e\xcd\x2f\xf5\xa8\xbb\xb4\x56\x20\x5c\xb2\xbf\x6a\x2b\x28\x6b\xcc\xc3\x85\xbc\xc0\x10\x8f\xbe\x8a\xee\x84\x5b\xf7\x15\x26\x6e\x46\x3b\x5d\x25\x79\x76\x01\x8d\xb2\x10\x15\xd8\xfd\xed\x82\x6b\x49\x2d\x4a\xe8\x8b\xc6\xc7\xe2\xc9\x0e\x88\x38\x1e\x0e\x05\x22\x5a\xdc\xdc\x52\x55\x52\x7f\xb0\x81\xbd\x56\x60\xf7\x6b\xf6\x66\x73\xcc\xa2\x31\xe6\x96\xdb\x3f\x66\x4f\xe4\x39\x33\x43\x96\x48\x86\xaf\x77\x70\x64\x35\x03\xca\x5b\x31\xa0\xd9\xcf\x94\xd1\xec\x42\xee\xd0\x60\xa0\xe4\x87\x21\xb5\xe4\xa8\x28\x5a\xa7\xaa\xf7\xcb\x45\xc4\x23\x73\xcc\xea\x6d\xe9\x95\x61\xfb\xd5\x8d\x57\xd9\x37\x76\xee\x92\x65\x5f\x5b\x77\x89\xce\x7b\x69\x05\x64\x43\x8d\x3d\xe4\x6f\xb7\x6a\x98\x22\xcc\xa2\x14\xc8\x3d\x88\xf0\xad\xc1\x93\x19\xaf\xb3\x2a\xf4\xe9\xfe\x9c\xd0\x0c\xd5\xf2\xf7\x46\x8a\xc7\xca\xc5\x29\x86\x60\xc7\xa5\x3d\x1e\x0e\xe3\xca\xd9\x7b\xaa\xce\x62\x73\xf6\x5c\x42\x63\x23\x1c\x73\xf9\x18\x05\xbb\x90\x8f\x84\xdb\xc6\x5e\x78\x90\x9f\x22\x5a\x22\x75\x7f\xc0\x9b\x79\xeb\x0d\x62\x2d\x57\xcc\x6c\x0b\x3c\xc1\x5a\x8c\x33\x3a\x4d\xd9\xcf\x92\x43\xa7\x7f\x27\x6e\xfc\xc1\xb6\x41\x6c\x1f\x5a\x5a\x47\x1a\xa2\x9f\x9e\xb3\x23\xea\x38\xcc\x2b\x06\xb8\x42\x82\x36\x9f\x36\xea\x94\xaf\x9f\xac\x35\x09\x1f\xfb\xab\xe9\xe7\x0f\xea\xfc\x28\xab\x54\x00\x44\x0f\xa7\x5f\x44\x18\xae\x51\x5a\xbe\x8e\x10\xd1\x02\x97\xcc\x68\xca\x20\x98\xb3\xa8\xe0\x16\x04\x7c\x55\x2d\x71\xbb\x18\x0e\x9d\x4b\xd3\x7e\x9d\x53\x75\x9d\xd3\xd1\x69\x46\x08\x7b\xc5\x96\xe4\xf3\x13\x31\x18\x84\xee\x07\xa0\x8a\x52\xc9\xc0\x55\xc9\x1c\xd7\x1a\xa0\xdc\x77\x80\x02\x7b\xd6\x30\x30\x08\x13\x80\xaa\x0c\xd0\x31\x3f\x46\xe5\x8a\x39\x76\x4f\x4c\x3e\x48\xf5\x32\x0d\x32\xf2\x1e\xf1\x88\x57\xba\x2a\xb6\x3b\xc0\xd6\x25\x2d\xaa\xd5\x0e\x56\x52\x89\x97\xdb\xc5\x35\x99\x00\xaf\x60\xc5\x95\xee\xc5\xc3\x36\x9d\x57\xda\x3c\x5f\xa9\x4d\xd2\x77\x50\x93\x81\x21\xe4\xf5\x5d\x7f\x1e\x33\x96\x8a\xfe\x22\x4e\x92\x7e\xdc\x5f\x24\x71\x96\xf5\xe3\xac\x1f\x5b\x39\x5e\x70\x27\x37\xd4\x8f\x96\xd0\xd7\xd5\x23\xe7\x9b\x91\x88\xbb\x9f\x7c\xd4\xa6\xf5\x39\xc1\xb7\x34\xb3\x55\x27\x92\x90\xd7\xce\xfb\x4d\x92\x3f\x78\x52\x56\x0c\x86\x0a\x21\x9b\x7d\x7d\x1b\x5f\x92\x61\xf0\x34\x28\xf0\x69\x09\x39\x27\xfc\xad\x81\x94\x5a\x9a\xc0\x91\xdc\x1f\x17\xc4\x2a\x68\x88\x66\x86\xc6\xad\xb5\x3a\x4b\xd3\x24\x0c\xfc\x23\x40\x3b\x3d\xd8\xc1\x51\x61\x8c\x7c\x7c\xfb\xd5\xdc\x23\x5b\x94\x56\x9f\xdf\x52\x5f\x5c\xfa\xbe\x68\x4e\x10\xd5\x04\x83\x12\x2e\x88\x03\x08\xef\xc9\x8a\x48\xe0\x33\xd0\x20\x5b\xf5\x2f\xe2\x8c\xfd\x20\xfa\x67\x84\xb0\xbe\x8e\x4d\x4f\x33\xb2\xec\x1f\xf6\x81\x2e\x0e\x51\xa5\x86\x84\x1c\xb9\x30\x13\xf5\x5a\x6c\x36\xc6\x2c\xe3\xc0\x88\xb6\x84\x2b\xf0\x2a\xbf\x4e\xc9\x44\x3f\xed\x38\x64\xa3\xd3\x53\x08\xce\x70\x7a\xba\xd9\x68\x30\x38\x27\x12\x3b\xab\x78\x0d\x27\xab\x90\x21\xe4\xa7\xc9\x2d\xa1\xd0\x58\xac\x6f\xd4\xc1\x40\xd2\x01\x10\x25\xc6\x7b\x23\x3e\xc8\x45\xf6\xc9\xe7\x35\x27\x59\x26\xf7\xf5\x32\xcf\x44\x9f\x50\x71\x41\x78\xff\x8c\xf4\x65\xeb\x7e\xca\x9d\x2b\x82\xfb\xf2\x0a\x05\x43\x33\x02\x52\x82\x0f\x35\x71\x13\x79\x42\x0b\x55\x04\xd0\x37\xa6\x10\xdf\x2e\x52\xa6\x22\x45\xa4\x7c\xa2\xaf\x10\xc1\xae\x39\xe1\x11\xbe\xe6\x54\x18\xd3\xc2\x45\xca\x56\xf4\x3c\x37\xa6\x86\x92\x5b\x94\x28\x57\x8f\x91\x55\x36\x6c\xea\xfd\x0a\x7b\x33\x21\xe5\x76\x47\x02\x15\x21\x93\x0f\x83\xf6\x85\x5a\x1a\x40\x43\x98\x15\x21\xc2\xa0\x2c\xd5\x09\xa6\xb2\x8c\x9e\x33\x14\xa6\xce\x12\x78\x53\xc8\xb3\x43\x8a\x5b\xd3\xd4\x75\xc1\xaa\xf7\x2d\xe1\x7e\xf7\xf2\xfd\xcf\x27\xef\xdf\x9c\x7e\xfc\xed\xdd\xcb\xd3\xd7\xaf\xde\xfe\xe9\xe5\x8b\xa8\xf6\xf5\xd7\xb7\xfe\xef\x2f\x5e\xfe\xfc\xec\xd7\xd7\x1f\x4b\x39\xdd\x39\x31\x24\x99\x21\x72\x22\x8f\x63\xd7\x2c\xb6\x5a\xd0\x39\x68\x79\xe9\x52\x3d\xe5\x51\x26\xfb\x48\xa3\x15\x56\xaa\xbb\xa8\x49\x21\x35\xcc\x76\x8e\xbc\x66\x3b\x47\xae\xd9\xce\x91\x63\xb6\xd3\x39\x8b\xd5\x7e\x19\xac\x56\x2a\x76\x0a\xdc\x46\x8e\x21\xef\x5c\xa1\x63\x50\x04\x12\x6b\xa9\xf5\xc5\x70\xff\xe0\x31\xf7\xee\x63\xe0\xfb\x1a\x60\xda\x7a\x1e\x81\xf7\x73\x80\xd3\x7a\x0b\x6f\x7d\x53\x3b\x96\x4c\xb7\xab\xc5\x2a\xe5\x40\x83\x01\x19\xb1\xf8\x92\x44\x51\xc4\x4a\xba\x25\xf7\xc5\xaf\xd1\x27\xd4\xab\xcb\xa9\x3e\xe4\x67\xd9\x82\xd3\x33\xb2\x8c\x0e\xc6\x38\x14\x8e\x66\xe4\xd4\xd8\x93\x21\x34\x23\x73\x6b\x26\x51\xa2\xb3\x02\x54\x99\x49\x74\x6b\x22\xdc\x68\x61\xe7\x92\x66\xeb\x34\x23\xe6\x67\x8d\x30\x9d\x8c\xb1\xbc\x57\xaa\x50\x69\x34\xe7\xb8\x3a\x15\x90\x83\xf2\x9c\xbd\x4e\x53\x78\x45\x95\x60\xac\x55\x3a\x5a\x31\x37\x50\x63\x6a\x96\x57\x62\xcb\x09\xc7\xa7\xe4\xf3\x9a\x2c\x44\xf6\x9a\xb2\x4f\x64\xf9\x1b\x25\x09\x0c\xa1\x2e\x1a\x34\x20\x12\xa5\x6a\x49\x4b\xe6\x88\x80\x0e\x8e\x30\xcd\x00\xdf\xaa\x3f\xad\x98\xa7\xf6\x96\xc6\x6c\x19\x06\xa6\x58\xbd\xc1\x2e\xaf\x88\x9d\x22\xd9\x51\xc9\x8c\xa9\x6e\x4d\x4d\xf5\xab\xe5\xbd\x66\xa9\x08\xab\xbd\x02\xa1\xd6\xcc\x19\x9c\xbd\xe0\xe9\x7a\x2d\x09\xca\xda\x94\xca\x61\xab\xf3\xdb\x9a\x69\x45\xe7\x7e\xb1\x9d\xa2\x29\xd8\xfc\xc8\x3f\x27\xcd\x5a\xe5\x70\x68\xaa\xad\x46\xfc\x15\xcb\x65\x4c\x83\x95\xf9\xbb\x51\xcf\x99\x31\x9a\x06\xc6\x2c\x64\x12\x5c\xc7\x54\xc8\xbf\x0a\xb9\xb5\x7a\x66\x9e\x8d\x68\x5b\x7c\x97\xf5\x3a\x2b\x19\x0c\x0e\xb6\x4d\xac\x40\xf8\x14\x6c\x9e\x27\x47\x9a\x91\x6c\x93\xf0\xba\x4c\xb8\x92\xd6\x94\xc3\x4c\xe5\x87\x49\x23\xdc\xae\x3b\xed\x83\xb1\x11\xbb\x18\xd1\xc1\x3b\x9e\x2e\x08\x59\x86\x62\xf4\xdb\xab\x97\xaf\x5f\x3c\xfb\xe9\xf5\xcb\xd3\xe7\x27\x6f\x3f\xbe\x7a\xfb\xeb\x4b\x93\x15\x4f\x37\x11\x9c\x9e\x9f\x13\x0e\xd7\x26\x0c\x32\xd3\x67\x29\xd7\x46\x85\x97\x5c\x05\xb1\x8d\x11\x8f\x45\x81\xa6\x55\x81\x05\x36\x9a\x31\xe0\xbd\x82\xd2\x56\x2b\xc0\x21\x89\xa8\x0d\x09\x8e\x45\x74\x78\x84\x86\x21\xdf\x6c\x82\x00\x0d\x4d\x6c\x49\x31\x64\xc8\x48\x1b\x9b\x1a\xda\x3b\x5a\x80\x06\x56\x71\x0e\x06\x45\xe4\xf3\x3a\xa1\x0b\x2a\x92\x1b\x43\xff\x29\x13\xc7\xda\xde\x7b\x0e\xd8\x85\xd0\xa6\xf0\xad\x02\x5a\x26\x7c\x59\x33\xa1\x08\x08\xda\x2a\x64\x7d\x80\x36\x9b\xe0\x49\xce\x3e\xb1\xf4\x9a\x3d\x0d\x7a\xcd\x34\x52\x25\x2e\x0b\x70\xe0\x4a\x24\xfa\x3f\x04\x43\x36\x0c\x7e\x80\x85\x99\xab\xd5\x3f\x23\x8b\x58\xd2\x18\xc1\x90\x0c\x83\x51\xff\xe7\x94\xf7\x2f\x53\x2e\x59\x2a\x79\x16\xb1\x22\xfb\x32\x42\x26\xfd\x0b\x21\xd6\x93\x47\x8f\x1a\x94\x8b\xbc\x31\x8f\x96\xe9\x22\x7b\x04\xf4\xce\xa2\x7c\x0c\x41\x8d\x6d\x64\x81\x25\x20\x4e\x2d\xb7\x22\x61\xef\x43\x9a\xb2\x2a\xfc\x3d\x7b\xfb\xfc\xe5\x6b\x2c\x91\x29\x9a\x68\x29\xa1\x11\x6d\x00\x86\xfd\x11\x15\x85\xc4\xe9\x2b\xfb\x44\xe8\x97\xa6\x7e\x83\xdb\xf5\x24\x2b\xc2\x3d\x76\x1a\x56\xf5\x73\x73\x46\xde\x2b\xa5\xe4\x8b\x4a\x09\xd4\x33\x26\x11\xf2\xda\x36\xaa\x36\x65\xec\xd0\x66\x30\x50\x3f\x9a\xf6\x35\x10\x7d\xcc\x57\x36\x75\x87\xd4\x2a\x52\x25\xcd\x52\x4a\xec\x49\xb5\x1c\xe2\xc2\xc1\x27\x78\x8b\x90\xbc\x8d\x17\x84\x4d\x72\xc9\xec\x10\x16\x20\x0c\x46\xc9\xf2\x37\xfc\x11\x20\xac\x4d\x3a\xe4\x27\xfd\x67\x80\xb0\xdd\xeb\x49\x95\x10\xd5\xb1\xf8\x24\xb9\xa2\xa4\xa5\x0a\x65\x0d\x87\xb8\x79\x19\x42\x1e\xfd\x88\x29\xf8\x34\x28\x5e\xa3\x61\x56\x87\x70\xe8\xa8\xac\x8c\x69\xfe\xcb\xb7\x7f\x1e\xbd\x78\xf9\xd3\xaf\x7f\x3c\xfd\xf8\xec\xc3\x9f\x3e\xa0\xc1\x40\x72\x0d\x69\x42\x46\x49\x7a\xee\xeb\x84\x2a\xf2\x85\x61\x0a\x08\xc5\x92\xa5\x0a\x29\xd5\xef\x46\x7d\x87\xbd\x11\x63\x4f\x39\xc9\xf2\x04\x52\xcf\x68\x21\x57\x03\xa5\xba\x2f\xbc\x42\xaa\xad\x99\x89\xd0\xe4\x71\x5b\x1f\xb0\x33\xfe\xe6\x44\x15\xc9\xe6\x4d\xe9\x58\xb5\x46\x33\x21\x9c\xf3\x2c\x97\xf8\x5e\x93\x54\x16\x90\x79\x6e\xc5\x85\xcf\x75\xca\xb6\x2c\x74\x2b\x4b\x10\x31\x35\x14\xa5\xa4\xc4\xf3\xf5\x46\xfa\x02\x96\xd2\xc7\xaa\xa5\x65\xe5\xf6\xda\x46\x56\x82\xdc\x28\x89\x66\x73\xab\x19\xa8\x97\xd5\x34\x07\x8d\xab\xb4\x6d\x65\x05\xf6\x16\x4c\xaa\xf6\x2a\xbb\xae\x7f\x63\x4a\xae\x62\x42\x3e\x53\x6d\x33\xd7\x52\x45\xf2\x44\x1c\x0f\x87\x04\xb5\x54\x9b\x91\x79\xa8\x55\x11\x9e\x9d\x01\xb3\x21\x67\x86\x1f\x25\x4f\xff\x2b\xbb\x00\x55\x1f\xc8\xb6\x01\xa2\x5e\xc7\x42\xce\xb8\xc0\xbb\x6b\xf9\xcd\x9a\x7a\x1e\xda\x7e\xb3\x79\x7c\xd0\x82\xa6\xcc\xdd\xe5\x39\x2b\x15\x12\x8e\x69\x50\xbc\xf8\x74\x96\x73\x46\xb8\x12\xc2\xcb\x37\x2c\x9b\xed\x28\x2f\x19\x48\x97\xd2\x22\x8d\x49\x65\x21\xd1\xd8\xce\xcc\x02\xb0\xb9\x46\x86\xa6\xac\x90\x9b\xe1\x87\x69\x77\x07\x8c\xd5\xa8\x6f\x91\xda\x7a\xf4\x68\xe2\x25\x85\x94\x95\xb3\x25\x86\x7a\xca\xfd\x01\x5a\x3c\xf6\xb6\x20\x46\xfc\x0d\x57\xb6\xfe\xe8\xab\xbb\x8d\x2a\xfd\xfc\xe8\xed\xc7\xd2\xc7\xfe\x8e\x2a\xb4\x00\x52\x8f\xa6\xc2\x03\x5e\xb8\x37\x6c\x57\xc5\xc6\xcd\x7e\xed\x55\x7f\x2a\x1d\x13\x01\x9b\xd8\x53\x9a\xfd\xd1\xd8\xe6\xbe\x48\x19\x69\x31\x97\x3b\xb5\x06\xbc\x4a\xc1\xa0\xe5\x98\x2f\x4e\xde\xbe\x0c\xa2\x28\x22\x9b\x4d\xf0\xf2\xfd\xfb\x93\xf7\x2f\x5f\xc0\x4f\x79\x65\x49\x96\x5f\x12\xdb\x77\xed\x45\x12\xfc\xe6\x36\x2e\x95\x3c\x86\x86\x32\x63\x09\x63\xbd\x17\xa2\x99\x98\x87\xc4\xdc\x2c\x3b\x0b\xc8\x43\x19\x31\xf5\x9c\x62\x06\x31\x97\xa7\xbe\x99\x46\x6a\x8e\x13\x7f\xd9\x2f\xcf\x3e\x9c\xbe\x39\x79\xff\xf2\xf4\xcf\xcf\x5e\xff\xfa\xf2\x43\xa0\x43\x31\x73\x83\xfd\x6a\xe3\x71\xec\xef\xc6\x2c\xbd\x8c\xdb\x0c\xd5\x9a\x9c\xe7\x60\x10\xfa\x3a\x36\xf8\xaf\xfa\x75\xe4\x72\xb2\x51\x14\xa5\x9b\x8d\x79\x52\xaf\x63\xce\xc2\xe0\xb7\x34\xef\xaf\x8d\x16\xb8\x1f\xf7\x47\x09\x8c\x14\xa2\xbe\x7c\x50\xfb\x3a\x5e\x57\x9f\x5e\x5e\x92\x25\x8d\x05\x49\x6e\xfa\x60\x9c\x4c\xd9\xf9\x23\x75\x80\x94\x9d\xf7\xa9\x18\xf5\x3f\x5e\xd0\xac\x4f\xb3\xbe\x22\x0b\x25\xc5\x9c\xb3\x2c\x5f\xaf\x53\x49\xf2\xf5\xc3\xb3\x5c\xf4\x2f\xe9\xf9\x85\xe8\x9f\x91\x7e\xf9\x9d\xb2\xfe\x2a\x87\xe8\xb1\x57\x84\x83\x14\x32\x5d\xf5\x1b\x24\x26\x1a\x19\x2a\xd2\xb3\x21\xd1\xc1\x11\xc2\xb1\xb2\xfa\x93\xd0\xe8\x1c\x7d\x1b\x1f\x65\x04\x0e\xe6\x21\x32\xbf\x23\x83\x5f\x4b\xdb\xcf\x10\x19\xc5\xb8\xfe\x00\x98\xd5\x6f\x1b\xea\x0e\xb1\x62\x8e\x0c\x17\x9c\x3f\xc9\x67\x51\xb1\x07\x3d\x8d\x97\x57\xf2\x86\x82\xfe\x68\x52\xb3\x3e\x74\x48\x2c\x79\x19\xb4\x01\xf8\x70\xe8\x7c\x2f\xb0\x4b\x42\x7b\xc8\x35\xe6\xe2\x73\x77\x30\xb7\x77\x87\x22\x78\x9d\xa6\xeb\x69\x89\x9a\xff\x96\xd2\x4a\x62\x75\x0f\x9e\x0f\x54\x88\xb8\x2c\xc0\x0c\x33\x4b\xd1\x2b\x09\x19\x9a\x64\x44\x7c\xa4\x97\x24\xcd\x85\x37\x3f\xbb\xa9\x0e\x13\x2e\xf0\x11\x2a\xb0\xfe\x32\xa9\x1b\x1f\xb6\xbc\x3c\x9e\x95\x11\x64\x2e\x42\x85\xbd\x80\x2c\xef\x75\xae\x77\xd7\x96\x35\xc6\xd3\x8c\x9f\xd9\x2b\xf7\xe9\xd3\x50\xff\x5e\xef\x62\xad\xde\xc1\x8e\x8a\xee\x4e\xec\xbd\x6d\x13\xdb\xb9\x63\x73\x5c\x39\x0b\x54\x82\x4a\x1d\x87\xb6\x2c\xd4\x62\x65\x1f\xb2\x9a\x1a\x0a\x41\x19\x19\x01\xa1\xb4\x7c\x0f\xf3\x23\x4b\x40\x3b\x6a\x21\xbe\x6a\xcf\x53\x26\x28\xcb\x49\x59\x4d\x4e\x6e\x4b\x57\xee\x84\x99\x7d\xa5\xcd\x8b\xec\x93\x5b\x4c\x1a\x25\xef\x5f\x7e\xfc\xf5\xfd\xdb\x06\x2f\x89\x8f\x2a\x6f\xac\xdb\xe2\xe3\x2f\xef\x4f\xfe\xab\xd9\xe0\x71\x6b\x03\xc5\xb4\x4e\x76\xf1\xf9\xb8\x9d\x9f\xad\xee\xf1\x24\xf8\xe9\xe5\xcf\xf2\x55\x79\xfe\xfe\xe5\xb3\x8f\x2f\x03\x5c\x43\xec\xd6\x2e\xb4\x75\x73\x6b\x1b\xa7\xf5\xfc\x3d\x2e\x0f\xb5\x31\x71\x1b\x29\x78\xcb\xd4\x79\xd4\xdc\xd3\x06\x7f\xa1\x83\xef\x3a\x08\x46\x5f\xa6\xda\x5b\x0e\x96\x4a\xd8\x73\x81\x21\x59\xac\x7d\x0d\x0f\x3a\x40\x20\x3c\x02\x06\xf0\x1a\x12\x03\xdf\xab\x88\x1f\x3b\x50\xe7\x36\x6f\xca\xad\x94\xd4\xca\xd7\x49\x8f\x4e\x69\xd5\xf9\xe2\x7d\x7c\x0d\x25\xd5\x4b\xfd\x5f\x54\x5c\x7c\xa0\xf2\x82\xa9\x19\x52\xc3\xbf\x87\x66\xf5\xcb\x17\x9a\xa8\x0a\x69\xd5\xa5\x02\x61\x3a\x13\x0d\x67\xa0\xa9\xd9\xdc\xab\xf4\x93\x9a\xbd\x2c\x0c\xa9\xd7\xd5\x83\x82\xcf\xc9\x34\x24\x11\xc5\x0a\xb9\x61\xee\x9e\x0e\x56\xfe\xcc\x15\xbf\x12\x36\x32\x28\x86\x63\xaf\x60\x90\xa0\x02\x77\x69\x00\xb7\x48\xd6\x46\xe6\x58\xda\xf6\x64\x77\x85\x12\x85\xd5\xca\x9a\x0c\xa7\x99\x8c\xbb\xcc\xd6\x75\xb8\xfb\x5f\x7f\x84\x7d\xae\x33\xae\x31\x4f\x3b\x75\x2c\xa6\xae\x1c\x28\x44\x40\x29\x4f\x08\x10\xcb\xd5\x73\xab\x4e\x9f\xdf\x98\x04\x3a\x9e\x83\x77\xd1\xbb\x7a\xbb\x7b\x4d\x10\x62\xa8\x24\x40\xe5\x70\x2e\xc7\xe0\x27\x32\xea\x2a\x11\xb3\x42\xaf\x30\x52\x13\x32\xde\xf4\xc7\x3e\x69\x65\x4f\x0e\x33\x18\x88\x91\x9e\xc7\x60\xc0\x4a\xa6\x99\x37\x55\x73\x54\xab\xe6\xf8\xd3\xa3\x29\x57\x51\x30\xd2\xe8\xe8\x38\x7d\xc2\x8f\xd3\xe1\x10\xd1\x59\x5a\x8d\x82\x91\xce\x7b\xb6\x6f\xab\x62\x9a\xb1\x61\x30\x09\x86\x64\x6e\x3c\x2b\xfe\x41\xae\x1d\x14\x49\xae\xab\x28\x7a\x89\xe7\x34\xa3\x26\x7e\x56\x36\x78\x36\xe8\x89\x47\xc1\x96\xb6\x19\x7a\xa9\xed\x4c\x9b\x66\x5c\x4a\x86\x45\xec\xa5\x60\xfe\xab\x90\x1a\xac\xf4\x78\x6b\x7d\x75\xa3\x53\xcd\x59\x1b\xe9\x54\x6b\xef\x8e\x24\xb7\x40\x35\xe7\xa0\xb4\xc2\x9b\x1c\x44\x11\xf5\x7c\x96\xfd\x37\xe1\x91\x6c\x05\xc6\xb4\x5e\xaa\x61\x90\x0d\x06\xe2\x20\x8a\xe4\x3f\x23\x9a\xbd\x20\x99\xe0\xe9\x0d\xc8\x2b\x2b\x6d\xad\xfe\x2c\x40\xc6\x6a\x37\xf8\x6b\x30\xd4\x56\xaf\x35\x1b\x9b\xbf\x06\x38\x83\xe2\xb4\xa5\xb8\x57\x61\xb7\x7e\x68\x70\x36\xfd\x25\x11\x64\x21\x80\xf7\x5a\xa7\x82\x30\x41\x25\xf7\xd7\xbf\x88\xff\x1e\xf3\x65\x9a\x67\xfd\x20\x23\xc9\x4a\x4b\xd5\xfb\x49\x9a\xae\x83\xfe\x19\x11\xd7\x84\xb0\xfe\x3a\x96\xa4\xa4\xe2\xd4\x7e\x18\xc6\xc3\xa0\x1f\xb3\x65\x7f\x71\x41\x93\xa5\xfa\x18\x0c\xb3\x61\x30\xea\xbf\x5a\xf5\x6f\xd2\xbc\x7f\x1d\x33\xd1\x28\xed\x8b\x54\x72\x64\x56\x1f\x70\x7d\x51\xeb\x38\x80\x8e\x69\xa9\x32\xc0\xfd\x75\x42\x24\xfd\xb3\x80\x6c\x37\xfd\xbf\x96\x8a\x9b\xbf\xca\xde\xfe\x6a\x79\x48\xa7\x60\xf7\x24\x3e\x11\xb2\x36\x8e\xdb\xfd\x78\x25\x08\xdf\x35\x0d\x3d\x3e\x15\x6a\xd4\x9c\x79\xc6\x0d\x50\x51\xa4\x56\xa7\x53\x68\xbd\xfd\xc2\x6b\x86\x95\x38\x06\x82\x2b\x97\x27\xe8\x1c\xaa\x66\xea\xfe\x70\xcc\x12\x16\xc6\x2a\x46\x0f\x18\x83\x79\x49\x78\x0b\xea\x6b\x82\x57\x6c\x22\xb0\x06\x57\x78\x07\x0b\xcc\x50\xe9\xa3\xeb\xd8\xf0\x2d\x3a\x18\x9c\x18\x10\xbc\x07\x47\xf2\x2f\xb5\xe7\xdb\xd3\x7a\xb0\xe9\x1e\xea\x8f\x66\xfd\xe5\x66\x31\x1f\xe3\xec\x53\xcd\x62\xcf\x75\x5f\x8f\x5d\xc3\x16\x0b\x13\x8a\x5f\x71\x0c\x4b\xc6\xc7\xec\x89\xb0\x26\xa3\xc3\xa1\xd5\x92\xcc\xd8\xbc\xc7\x47\xa5\x75\x53\xe4\xfe\xd8\x6c\x0e\x8e\x30\x1f\xb9\x16\x4e\x12\xb5\x6b\xa5\x01\x65\x7d\x3e\x18\x84\x7c\x64\xac\xa1\xc0\xff\xba\x6d\x89\x7c\xf4\x89\xdc\x40\xd8\xa7\xba\xc1\x86\xa8\x38\x2b\xb3\xc1\x80\x84\xae\x3d\x16\x43\x98\xc3\x37\x20\xc3\x8b\x22\x34\x3e\xc8\xce\x6a\x75\x17\x2a\x73\x58\x24\x06\x83\x50\x44\x3f\xeb\xe2\xb2\x2b\x43\xf2\x97\xb6\x6c\x27\xd7\xcc\x4c\xf1\x05\x91\x8f\xd7\x5a\x12\xfc\x92\x07\x97\x98\xd8\x26\x8f\xb5\x86\xe7\x7e\x2b\xb8\x32\xd5\x8e\x9e\x40\x3a\x55\x4d\x27\x24\x4c\x55\xf0\x30\x49\xa2\xd9\x5d\xa3\xd6\x49\x5e\x3d\x65\xfa\x20\xa9\xec\xb7\x9a\xb8\x56\x5e\xda\x69\xac\x6c\x7a\x38\x9a\xa8\x8f\x8e\xb7\x54\xfe\x10\xb6\xa5\xb6\xf7\xe4\xeb\x12\x21\x80\xee\x54\xd0\xf7\xc8\x43\xcf\x2a\x62\x64\x30\x08\x32\xf8\xa3\x5e\x60\xa5\x5e\x53\x9f\xab\x9b\x26\x89\x0b\x9f\x1f\x1c\xf1\xfa\xfe\x9a\xe1\x20\x1c\x9a\xb1\x07\x8c\xa2\xc8\x7e\x3f\x30\x7f\x97\x00\x36\x35\x73\x9b\xd8\x01\xf1\xd2\xef\xb5\x75\x5a\x5a\x06\x55\x4c\x78\xd4\x17\xf5\x3c\xa8\x26\x15\x9f\x2a\xbf\xa7\x49\x83\x36\x15\xa5\x5f\xb2\xba\xfb\x04\x2e\xbd\xbc\xed\xce\x2b\xc0\xe6\xbd\x86\x2b\xa0\xa5\x69\x3e\x5c\xc4\x5c\x72\x26\x46\x48\x53\xce\x51\x7f\x71\xe7\x08\xae\xc0\x97\x06\x3d\x6d\x37\x1c\x0e\x17\xd1\xed\x4a\x5b\x2f\x99\x97\x44\xab\xe6\x54\x1a\x3a\xa3\xa9\x93\xd8\xf6\xe6\x99\x7c\x77\x9a\x9b\x92\xf9\x7d\xc5\x2c\xa7\xb0\xcd\x5d\xcc\x09\x51\xb6\x0e\xb5\x04\x14\x35\x52\x76\x9d\x5c\x33\xc2\x2b\x22\x51\x84\x45\x44\xa6\x64\x94\xca\x92\x57\x4c\xf6\x01\xa3\xca\xd7\xb3\xdc\x40\xa3\xd9\xfd\x39\x96\x00\x73\x13\xa5\x75\x87\x7d\xbd\xa3\x2b\x86\x8a\x70\x8c\xe9\xe8\x74\x91\x90\x98\xe5\xeb\x13\xa6\x09\x3d\xd4\x14\xc4\x1a\x0d\xc9\xb3\x24\x09\xf0\x2d\xd7\xe1\x66\xc4\x05\xe9\xeb\xcc\x6a\x54\xf4\x13\x7a\x45\xb2\x7e\xca\xc0\x68\x62\xa9\xba\x22\xcb\x7e\xca\xfb\x39\xe3\x84\x2d\x09\x27\xcb\x00\x34\x4c\xb0\xb1\x7e\x48\xd2\x52\xb6\x24\x65\xa0\x81\x6d\xf7\x78\x17\x08\xab\x28\x21\xe2\x98\xc3\x1d\xe7\x2e\x64\xf1\x79\x19\x63\xa0\x3c\xc7\x68\x66\xd9\x9c\xc4\x68\xaf\x4c\xd9\x66\x33\x9b\x23\x9c\x40\x8c\x20\x52\x60\x75\xd6\x4d\xf5\x0c\x18\xbe\x36\xad\x3b\x91\x0e\xe8\xe5\x1a\x52\x6b\x8c\xf7\x5b\x9a\x4b\x42\xac\x9f\x32\x6d\x19\xe3\x28\x0e\x24\xe6\x01\xc5\x01\x65\xfd\x18\x88\xb7\x51\x19\x1d\x61\x69\x9d\xae\xd5\x5d\x85\x73\xa8\xdc\x55\xe1\xb3\x6d\xac\x5d\x5e\x88\x2e\x62\xe8\x3d\x6f\x5c\xf6\x3d\x47\x31\xc6\x95\xea\x24\x93\x9a\x12\xcb\x06\x65\x77\xa2\xa9\x68\x70\xab\x90\x6d\x16\xba\x4e\x53\x4e\xcf\xa9\xae\xa4\x7f\xd4\x1d\xbb\x4b\xe0\xb6\xdf\x4a\x09\x35\xd7\xc5\xf6\x37\xae\x70\x16\xa5\xb0\xc4\x7e\x2a\x5a\xcc\xaf\x5c\x6f\x81\x6d\x8e\x02\x9e\x5b\x36\xb1\x9e\xf2\x7b\x22\x4a\x27\x80\x83\x0e\x7a\xb3\x1d\x9c\x2b\xc8\x50\xa3\x48\xc9\x49\xfa\x0c\x66\x35\x37\x89\xab\xd5\x27\xf5\x90\x01\xae\x18\xd2\x5e\x87\xe9\x96\xab\x22\xaf\x09\x41\x68\x42\xb0\xf6\x84\xf3\xed\x88\x0f\x00\x80\x86\xa7\x7e\x38\x00\xa4\x56\xfd\xe4\xc0\xa3\xb2\x4a\x15\xa5\x1d\x8c\xc7\x3c\xd5\x2f\xa2\xa9\x00\x58\xed\xa9\x2b\x23\xf5\x30\x10\xf5\x7a\x6e\x13\xd0\x97\x5e\x4d\x9a\x91\x50\xeb\xd9\xd6\xf8\xe4\x92\x91\xaa\x99\x11\xf2\x52\x25\x94\x22\x9c\x16\x05\x5e\x45\x74\xf4\xea\xed\x9f\x4f\xfe\xf4\x12\x5f\x78\xac\xc4\x95\x9c\x4e\x4d\xdb\xff\xa0\x14\x78\xd5\xa7\xac\xbf\x98\xfa\x49\x5f\x49\xd2\x68\x92\xfe\x02\x57\xa3\x12\xd7\x5c\x07\x5c\xb7\x82\x02\x4d\x16\xb3\xd5\x3c\xba\xc0\x0b\x84\xb0\xa1\xfc\xeb\xae\x28\x96\x54\xbb\xaa\x32\x1d\x74\x15\x32\x54\x75\x44\x64\xae\xc7\xa1\x09\x40\x32\x8b\xe7\x38\x8f\x24\xf7\x21\x9f\xbd\x53\x87\xc5\xd1\x22\x67\x7e\x1a\x0c\xcf\x86\xc3\x9e\x98\xe5\xf3\xe8\x3c\x54\xdd\x63\x49\x70\x67\x00\xde\x38\x77\xfd\xc8\xce\x8d\x16\xcc\x6f\x93\xcd\x4b\x93\x6b\x82\x7a\x6c\xda\x54\xd3\x9d\xb0\x85\x09\x4a\xa3\x6d\xf9\x67\xa5\xe2\x8e\x63\x61\x2f\x85\xa2\x1c\xcb\xd4\xa1\x60\x67\xa9\xe8\x64\xc7\x09\x05\x4d\x78\x19\x36\x85\x57\xec\xb9\x6b\xfb\x79\xe3\xf7\xdf\x11\x4e\x66\x15\x2d\xd3\xfc\xfd\xf8\xef\x88\xdd\xfe\x3b\xe2\xbb\xff\xce\x83\xf9\xef\x08\x49\xdb\x35\xfd\x77\xe2\x50\xe0\xd9\xed\x27\x72\x33\x09\xe4\x39\xc3\xd6\x7c\x20\x22\x5f\x07\xda\x4a\xdf\x35\xf4\x71\x19\xe1\x0e\xa7\xe9\xb0\xba\x38\xc8\x54\xa7\x60\x70\x32\x18\xdc\x5b\x57\x2d\x38\xb0\x98\x4b\xe6\x5c\xb9\x26\xd1\x9a\x6b\xd2\x8d\x7b\x3a\xd0\x97\x4f\xb7\x5b\xdd\x0d\xad\x1b\xaf\x7e\xdc\x16\xff\xc1\x1b\xe2\xc3\x28\xde\x9b\x41\x44\xea\xd6\x25\x1f\x2f\x48\x3f\xcf\x48\x3f\x5d\xf5\xab\x1d\x85\xc8\x9a\x96\xc4\xfd\x6c\x4d\x16\x74\x45\x89\x96\x08\x1a\x21\x52\x9f\x4a\x8a\x7b\xcd\xc9\x22\x06\xf9\x28\x5b\xf6\xaf\x53\x75\x9d\xb7\x19\x90\x64\x5e\x0b\x92\x51\xff\x9d\x12\x5a\xaa\xc1\x6e\x34\x65\xea\x0c\xc6\x32\x41\xe2\x25\xee\x93\xd1\xf9\xa8\xff\xd7\x60\x28\x86\xc1\x04\xea\x84\xa3\xd1\x08\x99\xe8\x36\x21\xaa\x45\xd1\x0c\x0d\x4d\x55\xfd\x3c\x0c\xd0\x5f\x03\x84\xaf\xb4\x5a\x35\x5e\x2e\x5f\xd3\x4c\x10\x46\xc0\x7f\x08\xcc\x74\xe5\x4b\x0e\xe6\x6e\x58\x60\x1b\x46\x0c\x1f\x1c\x6d\x6d\xa5\x1e\xe0\x97\x95\xb6\x0e\x17\x53\x6b\x7d\xa2\x53\x90\x9b\xd6\x96\x19\xac\x0e\x39\x46\x05\x76\x2d\x48\xaa\xcf\x74\x39\xd1\xa8\xf6\x5b\xb2\x17\xf5\xc5\x54\x62\xa2\xd6\xd6\x59\x83\x2e\x63\xbc\x7f\xd2\x3a\x74\x7d\xb5\x91\xf7\x6b\x39\x8d\x7a\x49\x63\x32\x8d\xed\x6b\x4c\xc9\xb2\xcb\x0f\x29\x13\x30\x83\x44\x42\x8f\xea\xa1\xaf\x1b\x3c\xd7\x33\xd6\x04\x6b\x05\xc4\x86\x9c\x07\x26\x55\xa2\xf8\x8c\x08\xc9\xb3\x52\x91\x19\x56\xf6\x8a\xc6\xfd\x1f\xaa\x34\xd4\x0f\xa3\xfe\x07\x42\xec\x15\xa3\xc0\xe4\x2a\x7b\xae\x55\xca\xfb\x4b\x22\x62\x9a\x64\xa3\x00\xc4\x10\x3b\x10\x90\xcf\x37\x12\x04\x70\x67\xd1\xb8\x83\xc8\xba\x22\x61\x7e\xc8\x78\x3f\x75\xb7\xab\x84\xc6\x99\x93\x18\x58\x15\xbf\x91\xf3\xb0\xa4\x7e\xab\x3f\xd5\xb9\xa8\x7a\x4d\x8f\x1d\x9f\x67\x7f\x55\xe3\xa7\x0f\x35\x5f\x2d\x13\x9f\xef\x55\xe9\x84\x6d\x3a\xf3\xb8\x1b\x1d\x58\x92\xcf\x55\x57\x0d\x06\x95\xef\xc6\x13\xbb\x68\x77\xf4\xea\x34\x58\xdf\x3b\x98\xe3\x4d\xe5\x1b\x74\x1a\xa8\x98\x1b\xc1\x24\xa0\xcb\x84\x04\x05\xaa\x71\xb0\x5a\x38\xa5\xd8\x18\xf8\xc1\x80\xb1\x55\x7e\x83\x8e\x06\x19\x3b\xe0\x32\x11\xb5\x08\x18\x49\x9c\x09\x68\x53\x72\x22\x6e\x64\x11\x54\x89\xd1\xd4\xac\x57\xed\xa8\x8c\xf7\xd4\xac\x59\x46\xca\x41\xf5\x30\x4f\x9e\xe1\x4b\xf7\x00\x54\x0d\x00\xd5\xac\x6b\xa3\x6a\xa0\x4a\x60\xa8\x66\x45\x13\x33\x03\x55\xe3\x45\x79\x7a\x34\x56\xc1\xa8\x1e\x47\xaa\x59\xd7\x09\xa3\x81\xaa\x11\xa6\xaa\x75\x6b\x21\x80\xca\x33\x98\x8c\xb1\x05\xec\xc9\x18\x97\x01\x31\x26\xe3\xad\x81\xa0\xc8\x66\x73\x5b\x60\x16\x89\x91\x92\xbb\x81\x75\x11\x27\x19\x11\x4a\x6d\xcd\x22\xb6\xd9\x18\x67\xac\x67\x49\xab\x3f\x96\x44\x73\xe2\x82\x40\x1c\xe8\xa0\xc1\x95\x96\xcd\x95\xbe\xc3\x9a\x22\xe9\x61\x42\x64\x22\xb9\x75\xf4\x1c\xaa\x88\x6b\x0c\x35\xa5\x79\x65\x63\x08\x51\x8f\x45\x28\x41\xbf\x94\xeb\x28\xb8\x2f\xa7\xd0\x70\x18\x52\x54\xb0\xbc\x00\x94\x64\x2a\x10\xd9\xb6\x70\x63\xf5\x80\x64\xbe\xa0\x65\x5f\x27\x24\x19\x84\x58\xd9\x8e\xec\xaf\x63\x2a\x0e\x57\x29\xbf\x07\x5f\x78\x27\x1a\xc4\xb7\xca\x31\xd6\xc3\xef\x7d\xe7\xf3\x3a\xf3\x79\xdf\x5c\x9c\x17\x09\xb9\x3f\xa7\x1c\x10\x9d\x27\x25\x09\xcc\x22\x83\x2c\x11\xb6\x2e\x50\x99\xfe\xdc\x37\xb2\x76\xae\x0d\x78\x6d\x7d\x2b\x36\xa9\x5b\x3f\x3b\x8d\x12\xfd\xad\xd0\x01\x55\xfe\xf5\xd4\xd4\xb8\x4d\x37\x8f\x6e\x75\x30\x18\x62\xc5\x2c\x69\x48\x8c\x54\x00\x7c\x20\x9b\xb2\x00\xa0\xea\xf5\xfd\x0e\xb5\x22\xc4\x1a\x6a\x7d\x4c\x75\x08\x72\xa5\x3b\x42\x2a\x7e\xb7\x4d\xb6\x54\xe3\xd3\x89\x9c\x5c\xe6\x97\x78\x41\xd4\x05\x3d\xbd\xcc\xd0\xa2\xda\x5c\x3b\xcc\x76\x0b\x0e\xe4\xd8\x36\x04\x05\x42\x65\xe2\x27\xeb\x33\x15\x11\x2c\x0a\x1b\x1e\x35\xc3\x31\xc2\x69\x98\xe9\xd5\x37\x8c\xcf\xea\x1b\x01\x16\x68\x1e\xfb\x7e\x78\x90\xec\x18\x55\x67\xac\x1d\x06\x65\xda\xe8\x0b\xb6\x26\x93\x5b\x93\xb7\x6e\x0d\x5c\xf0\xca\xe6\xf0\x7b\xd8\x1c\xae\xd9\x95\x48\x82\x9f\x65\x42\x23\x81\xf9\x17\xee\x53\x29\x74\xc5\xd4\x85\xc5\x02\xa7\xd1\xc1\x91\x0b\x9f\x1c\xdd\xa6\xf2\xce\xd0\x50\x47\x40\xde\xb6\x61\x1c\xf9\x92\x0f\x19\x14\x2e\x0f\x22\xd5\xc6\x43\x4b\xa5\x05\x30\xa2\x81\x69\xb8\xad\xb4\xc6\x84\xcb\x05\x57\x66\x6d\xb6\x69\xc4\xc9\x65\x7a\x45\xaa\x6d\x79\xa5\x61\x61\x6c\x96\x75\x8b\x94\x11\x4f\xef\x4e\xdf\xe9\x66\x63\xbb\x4f\x57\xab\x46\x77\x25\x70\x24\x5b\x81\xc3\x6f\x2b\xda\xd1\x0a\xeb\xa7\x34\x4d\x48\xcc\x7a\x55\x08\x4b\xef\x01\xc2\xd2\x12\xc2\x52\x89\xe0\x22\x81\xd3\xd1\x9a\x93\x25\x5d\xc4\xc2\x7a\x6e\xfa\xac\x2e\xf8\x94\x7b\x6d\x26\xa2\x28\xe2\x05\x4e\x1f\x08\x40\x95\x4e\xac\x34\x76\x34\x67\xa3\xd0\x33\xe8\x7a\x79\x73\xfe\x21\x45\x36\x97\xc5\x2e\x18\xa6\x08\x1f\x8c\x0b\x50\x1a\xd3\xd0\x36\xab\x81\xa7\x11\x4a\x29\xd8\x91\x0f\x83\xb2\x3a\xa8\x80\x4e\x0d\x2c\x6d\x1b\xee\x36\x28\x2c\x00\x6d\x25\x3b\x4d\xc6\x32\xc5\x0d\x1c\x42\x9a\x91\x1d\xa6\x71\x26\xfe\xfe\x7d\x87\x63\x52\x53\x50\x81\xf7\x23\x6e\x62\x08\x49\x06\xe6\x87\x72\x76\x3f\xf4\x05\xb9\x5c\x27\xb1\x20\x7d\x35\x0f\x60\x7d\x94\xdd\xf8\x32\xa8\x05\x31\xd4\x7e\x1d\xb3\xb1\x11\x31\x1d\x70\x79\xeb\x2c\xe7\xa3\xa2\x5a\x35\xc2\xfd\x23\xe3\x3d\xaa\xb6\xc3\x95\x21\xce\xb8\x35\x86\x60\xc5\xdc\xb5\x3e\x54\xa0\xa3\xfa\x19\xa9\xa9\x85\x1c\x15\xa8\xb7\x7b\xef\xad\xb0\xf1\x3e\x36\xbe\x42\xfb\xb3\x4a\x5a\x38\xdf\x42\xed\xd8\xe5\x5f\xb2\xd9\x5d\xc8\x40\xdd\x81\x3e\x40\x86\xb7\xef\x0d\xeb\x06\x97\xf5\x44\x18\x0f\x93\x55\xd0\x37\xc1\x06\x5f\x8e\x59\x14\x4a\x7c\x56\x35\x4e\x13\x68\x2a\x26\x8e\x59\x99\x40\x08\x73\x95\x18\x82\x7a\x12\x43\x70\xad\x56\xb7\x2a\xc2\x7f\x9c\xf9\xfd\x0e\x86\x74\x4b\x96\xd5\xee\xe1\x2e\x4b\x7b\xdb\x2f\x31\xb2\xd5\x91\x37\xf7\xcd\x15\xb5\x9d\xcb\xfe\xc2\xe0\x9b\x98\xe2\x14\xc7\x38\x6b\xbb\x7e\x6e\xa4\xb0\x9a\x00\x85\xdc\xe9\x7a\xad\x52\x4e\xae\x08\x8f\x9a\x3c\x51\x8d\xab\xaa\x31\x64\x64\x24\x94\xc7\x64\x99\x9d\x4a\xe7\xaa\x2a\xa3\xcf\xb5\x26\xac\xd2\x01\xad\x3d\xe1\xe8\x72\x5f\x7e\x23\x85\x63\x7e\x66\xa3\x25\xcd\xd6\x49\x7c\xa3\xa8\xef\x61\xd0\x0f\x21\x9c\x70\x80\x19\x28\xc1\x2b\xa6\x22\xba\x49\xc5\x48\xa4\x66\xc3\x51\x33\x0e\xda\x62\x19\x14\x8e\x71\xd6\xc8\x99\x81\xb4\x05\x1c\xa6\x65\x1c\xcd\xba\xc8\x95\x58\x93\x93\x2d\xf6\x26\x4d\x63\x13\xc8\x8e\x54\x5b\x7c\x44\xb0\x9f\x99\x17\x7a\xf9\xe6\xe0\x5c\x8d\x27\xa4\x48\xb6\xcb\xea\xba\xdf\xce\x82\xbe\xc5\x3d\xdd\x73\x77\x68\x33\xcc\x69\x63\x8b\x24\x68\xa6\xf2\xbf\xd5\x04\x5a\xa9\xf3\xa3\x12\x57\x91\x97\x7f\x9b\x14\x59\x10\xaf\xfb\xc2\xa4\xd5\x4a\xe1\x1f\x5c\xde\x12\x61\xfe\xaa\x4b\x36\xe2\xca\xcf\xba\x2c\x23\xae\xfc\xf4\x48\x2e\xe2\xfa\x17\xe7\x4e\x0b\xf3\xd7\x0e\x8c\xac\xa4\x72\x7f\x97\x0f\x63\xa3\x78\x07\xaa\x7e\xa0\x97\xf3\x16\x34\x13\x9e\xe1\x70\x39\x5b\x57\xa8\xb0\x23\x0b\x96\x7e\x4f\x3a\xbd\xf7\x8e\xcd\x4c\x55\x18\x24\xfa\x94\xf5\x49\x8b\x71\x94\xac\xaa\x97\xc2\xf6\x32\x8e\x92\xaf\xaa\xa4\x6a\x8a\xba\x74\x55\x98\xb8\x05\x91\xd6\x24\xab\x10\x5a\xe2\x2e\x48\x9e\x66\x2f\x55\xfe\x13\xd5\xd6\x27\x4d\x23\x83\x81\xd7\xf9\x52\xb2\x9c\x5e\xbb\x72\x22\xf9\xcb\xcd\xc6\x5b\x52\xe7\x88\x5b\x3a\xf0\xf0\xbf\x20\x9d\x7b\x66\x98\x49\x20\xf7\x1a\x76\xc5\x0d\x69\x5d\x27\xe7\xc6\x1f\xa7\xfc\xf0\x47\xe5\xdc\xf8\x63\xc5\xb9\xf1\xc7\x9a\x73\x23\x88\xb5\x47\xd7\x34\x49\x8c\x1d\xb3\xda\xa2\x66\xc1\xc8\xd8\x9b\x01\x8f\x96\x65\x24\x3b\x35\xf6\xca\x3c\x3b\x3d\xb5\xb9\x06\xdd\x36\x38\x8b\x66\xf3\x5e\xe5\x53\xe4\xd1\x7b\x2b\xb2\xcc\x86\x31\x12\x4f\x18\x10\x62\xd9\x4c\xcc\x43\xd4\x8b\x7d\x12\x31\xbc\xcf\xdc\xa2\xac\xd8\xa7\xba\x8a\xf9\xe2\xea\x4d\x66\xac\x8c\x2f\x4a\x91\x4a\x3d\x68\x70\x5d\xf3\x99\xd1\xcf\x3e\x53\x01\xca\x2e\xeb\x09\x07\xcb\x9e\x19\xba\x35\x74\x33\xcf\xd9\x28\x81\xd0\x4a\x0c\x1c\x9a\x7b\x65\x3c\x86\x4a\x12\x3c\x67\x56\x4e\xcc\x07\x65\x35\x29\x50\x81\x99\x9c\x9a\x71\x14\x8f\x72\xc0\xd0\xd7\x6d\x02\xe5\x5c\x0b\x94\x79\x7c\xfd\xd1\xb3\x1a\x83\x0a\xc2\xdb\x02\xa7\xd8\x15\xa9\xd6\x64\x00\xfe\x88\x12\xc2\xe1\xe6\x63\xcc\x47\x3a\xf2\x99\x1c\x11\x79\xe2\xe9\x5e\x53\xb6\x4c\xaf\x47\x12\xfe\xf9\x2b\x26\x08\xbf\x8a\x93\x90\x82\xce\x07\x13\x8f\xd0\xd4\xb3\xf1\x9e\xcc\x88\xf6\xe5\x34\x79\x06\xab\xdb\x49\x66\xe9\x3c\xbc\xf5\xc4\xae\x50\x9e\x49\x51\x14\x6f\x36\x2c\x8a\xb2\xa9\xb0\x21\xf2\x38\x9a\x08\x13\x02\x8a\xa3\xa2\xc0\x63\x84\x6d\xf7\x05\x76\x3c\x97\x4c\x93\xa8\xe1\x41\xee\xc6\xec\xab\x06\xe0\x23\x90\xed\xcb\x35\x84\x88\x2a\x3e\x7d\x9b\x4d\x8d\xd9\x51\xce\x4b\x64\xbb\xb2\x22\x65\x57\x84\x8b\x7e\xce\x14\x1e\x05\xff\x02\x50\xeb\x88\x54\x1b\x70\x04\xa8\x67\x34\x37\x21\x29\xd3\x61\x88\xe8\xe8\x58\x3c\xa9\x23\x1a\xb8\x9d\x75\xdf\x45\xc9\x30\xe9\xf9\x1c\x44\xa5\x1d\x2b\x97\x0f\x09\x43\x7a\x11\xe5\xde\x5c\xc4\x99\xe3\xc7\xa5\xc4\x5f\x72\xd3\x07\x83\x90\xcc\xf8\x3c\x62\x33\x3e\xb7\x82\x76\x22\x37\x45\x99\xfb\x46\xc1\xa9\x76\x71\x3f\x55\x6e\x3b\xa7\xa7\x81\x93\x02\x75\xa6\x1f\xc4\xf3\x84\x5e\x5e\x12\x6e\x79\x60\x65\x8f\x6a\x1f\x75\x9e\xe6\x82\xb2\xf3\xc3\x0b\x71\x99\x9c\xc5\x3c\x7b\xf4\x89\xdc\x5c\xa7\x7c\x99\x3d\x5a\x28\xb6\xfe\xd0\xdf\xa0\xb5\xde\x5c\x47\x7a\xe6\x66\x8b\xa8\x44\xb8\xab\x90\xcf\xe8\x9c\x1a\xee\xe5\xf4\x34\x49\xe3\x25\x9c\xf6\x39\xcd\x04\xbf\x41\xb7\x76\x59\x8d\x1a\x90\x46\x1c\xda\x23\x5d\x47\xc5\x06\x29\x4c\xa8\xfb\x9a\xa8\x0e\x0c\x82\x17\xa7\xf6\xeb\xe9\x69\x80\x25\x3a\x6e\x8a\xd1\xa2\x80\x91\xcf\x22\xc0\x59\x14\x92\xba\xef\x75\x14\x00\x20\x05\x98\x34\x62\x71\x44\x26\x95\x2d\xea\x91\x86\x13\x76\xa4\x25\x3c\xb2\x61\xc3\x7e\x52\x2f\xae\xfe\xb9\xe7\x10\x6f\x35\x1c\x83\x6e\xdd\x6c\x1a\xb9\xbd\x38\xf0\xd0\x47\xc4\x47\x00\xad\x6f\x1e\xc9\xff\xf8\x49\x38\x5d\x28\xf7\xe5\xc1\x92\x7c\x3a\xbd\xaa\x9c\x82\xa5\x32\x37\x2a\xbd\x12\xc9\x34\xb0\xd7\x30\x98\xc8\x5b\x8c\x36\x1b\xed\x81\x48\xca\xa4\xbe\xf2\xf9\xad\xcb\x31\x06\x83\x32\xb5\xa0\x72\xeb\x96\xad\xad\xec\x54\x2e\x30\xe4\x0d\xd4\xda\x27\xa1\x66\xb4\xdb\x27\xc5\x6b\x93\xe2\xce\xa4\xb8\x19\x81\x6b\x0f\x4e\xfd\xbc\xe5\xc6\x9c\x5d\x25\xe2\x0c\xf3\x28\x1d\x81\xbc\xe3\x64\x25\xdb\x3f\x8d\xc6\xc8\x86\x6c\xcf\x01\x35\x54\xd7\xc3\x11\xcc\x27\x8b\xb8\x16\xf0\x20\x4c\x01\x6b\xe4\x25\x25\x70\x78\x98\x3f\x8d\xc6\xc7\x28\x9b\xe5\xf3\x88\x84\xf2\x1f\xbd\x94\x82\x24\x19\xe9\xd3\x55\xd8\xd8\x12\x8e\x90\xec\x13\x76\x43\xd5\xed\x99\xba\xdc\x55\xf0\xbe\x88\x05\x41\x19\xbc\xd1\xf2\xcf\x10\x64\xd6\xf2\x19\x0b\x91\x6a\x71\x9b\x45\xb7\x4a\x0f\x6a\x53\x4f\xcb\xe9\x25\x12\xa1\xf1\x6e\x08\x8d\xe3\x04\x0d\x06\xc1\xe9\xa9\xdc\xee\x64\x94\xe5\x67\x19\x38\xd0\x84\x63\xfc\x58\x62\xba\x6c\x96\xcc\x23\x3a\x95\xd7\x3c\x31\x2b\x9b\xc8\xbf\x51\x41\x21\x01\x0c\x50\x22\x1c\xc2\x8f\xc9\xbf\x1c\xe5\x40\x56\x48\x38\xc3\x7c\x3a\x9b\x2b\x63\x09\xfb\x17\xb2\xb1\xe3\xff\x59\xdc\x31\xdb\x6f\x3b\x5c\xe8\xaf\x24\xda\xac\x9a\xed\xc9\xd1\xdb\x53\xed\xae\xb7\xca\xfe\x2c\xaa\xea\x80\x9f\xbe\x3c\x37\x6a\x6b\x03\x35\x87\xdb\x2a\x03\x77\x4e\xbc\xd1\xc1\xcd\x5e\x14\xdb\x3a\x7c\x6e\x4f\xa4\x53\xa7\xcc\xe9\xb4\xb1\x87\xcb\x58\xc4\x87\x97\xe9\x92\x24\x87\x2b\x1e\x9f\x03\x89\xf1\x28\x96\x98\xe3\x91\xf9\xed\xdb\xdc\x2d\xcd\xc0\x48\x11\x42\xea\x6e\xab\x5b\x76\xbe\xad\x96\xe4\xb1\x1f\x19\x64\x72\x98\xae\x0e\x25\xac\xee\x9b\x5e\x48\xe5\xf3\x53\xcf\x79\x25\xf8\x08\xb8\x75\x05\x65\xae\x6f\x1d\x39\x24\x13\x29\x27\x01\xc2\x59\x2d\x54\x89\x1c\x1a\xe1\xbc\xd6\xc7\x5a\x39\xe0\x20\x9c\x54\x0b\x98\xb6\x7a\x34\x38\xcd\x0a\xd5\x2b\x09\xcc\x39\x5e\x19\x0e\xa3\x32\x8c\xc4\xe3\xe1\x18\xb3\x11\xcd\x7e\xd6\xbb\x81\x00\x95\x2f\xb4\xba\xe9\x22\x52\xc5\x92\x82\x67\x71\xf2\x46\x6e\xdc\xcf\x29\x47\xe1\x02\x8d\x4e\x61\x61\xbd\x8b\xcd\x06\xea\x64\x44\x98\x3e\xc0\x6f\x17\x85\x0b\x9c\xe2\x44\xe1\xf6\x70\x11\x89\xd9\x6a\x8e\xa6\x74\x5a\xaf\xfc\x22\x16\xb1\xac\xcb\x51\x19\x0f\xcd\x31\x69\x83\x82\x85\x9a\x86\xba\xad\xe5\x4c\x63\x9c\xc9\x21\x70\x8e\xcb\x87\x72\x51\xec\x2f\x4b\xd6\x3a\xde\x66\x5e\x6f\x61\xdd\xc1\xf5\x01\x68\x83\x3c\x96\xf2\x4b\x10\xe4\xc8\xc9\xfb\x10\xa8\x56\x1f\x37\x62\xac\xa6\x4c\x10\x95\x16\x51\xd9\xd1\x9f\xaa\x25\x7d\x60\xf1\x3a\xbb\x48\x5b\x23\xf9\xb7\x26\xcf\xaf\xb5\x0f\x55\xf8\x5a\x48\x65\xf6\x1c\xe2\x9d\x2c\x9f\x09\xc1\xe9\x59\x2e\xaa\x36\xea\xde\x5e\xc9\xa8\xa5\xa5\xee\x36\x5e\xc6\x6b\x41\xf8\x0b\xba\x7c\x9e\x5e\x5e\x52\xe1\x09\xde\xbc\x33\x45\x68\x23\x33\xbd\x8a\xd8\x38\x6a\x74\x1e\x92\xc1\x80\xcc\xd8\xbc\x3e\xb4\x4a\x8f\x71\x2f\x23\xd7\xc6\x55\x5c\x16\x81\x01\x2f\xe2\xec\x05\xe5\xe2\xc6\xd9\xbd\xba\x3d\xf4\xff\x21\xf1\xe2\x62\xd4\xac\x18\xe0\x40\xcb\x95\xe3\x44\x07\x0e\x6f\xb3\x0f\xdd\x32\x67\x9b\xb1\xe1\x19\xbb\x09\x03\xcf\x28\x12\xc7\xf2\x54\x29\xdd\xb7\x9c\xf1\xee\x7d\x51\xec\x57\x18\x34\x3b\x0b\x50\x81\x33\xc2\x9b\x22\xcb\x4a\x70\x54\xdd\xdc\x56\x94\xad\x38\x59\x27\xf1\x82\x3c\x57\xe0\xde\x08\xd0\xa9\x98\xbb\xf6\xcb\x91\x46\xfa\xfe\x18\x62\x92\x60\x32\x14\x08\x33\x47\x69\xa8\x87\x80\x2e\x53\x54\xe0\x78\xb9\x34\x88\xa1\x35\xd1\x32\x98\x13\x68\xa6\x58\x4e\xf2\x32\xbd\x22\x3b\x1b\x19\x93\x02\xdb\xae\x8a\x85\x3c\xd6\xca\xf5\x85\x99\x07\xa0\x12\x03\xad\x7c\x00\x9a\x3b\xa1\xdf\x00\x1a\xd5\x51\x5e\xc8\x1d\x69\x8b\xf2\x8a\xcd\xb3\x0b\x3d\x37\x8a\x0a\xec\x88\xc5\xee\x00\x0a\x8d\x2b\x02\x48\x41\x0b\xd3\xc0\x6c\xc2\x75\x51\xd7\xe0\xbd\xbb\x55\x51\x20\xc7\x6b\x22\xdd\x87\x38\x28\x5f\x79\x3f\xe5\xb5\xfd\x5d\x87\xd6\x75\xeb\x80\x2f\x26\xc1\x7a\x2e\xf8\x02\xf7\xf3\x8e\xa7\x9f\x6f\x6c\x6c\x89\x91\x21\x9c\xf0\xad\xf2\xe8\x2e\xfd\x15\xbe\x24\xb9\xf2\xe9\x9a\xb0\x25\x65\xe7\xf2\xc9\x31\x5c\x5b\x23\x1d\x41\x0d\xf1\xcc\xe6\x12\x5e\xf5\x2d\xdc\x69\xb4\xae\x57\x04\x07\x0d\x04\xf1\x96\xd7\x48\x00\x4b\x06\x08\x42\xe4\xeb\xc6\x33\x68\x83\x80\x38\x93\x3e\x90\x2c\xf1\x6d\x73\x2d\xa4\xe7\xc6\x48\xac\x3c\xad\xda\x37\xed\x32\xfe\x44\xac\xfa\xdf\x13\x4a\xd0\x62\x8e\x46\x82\x93\xfa\x86\x48\x24\x62\x51\xc7\xd8\x79\x9f\x19\x0e\x14\x97\x1a\x20\x9b\x1d\xda\xb3\xe3\x45\xd1\xe1\xf1\x27\x9d\xdf\x75\x91\xaa\x65\x75\x7b\xb4\x77\x3d\xc1\x3a\x94\xa8\x3d\x91\x90\xa0\x46\x88\xd9\xc6\x86\x54\xa6\xb1\xf5\xa9\x95\x13\xe8\xf0\x2e\xce\xe6\x9d\x5e\xc0\xf1\x41\xe4\xf8\x57\xc5\x5c\x1b\x07\xda\xa9\x34\x68\xa7\x5a\x97\xa8\xe3\x03\x98\x11\xa1\xc3\xd5\x84\xbb\x7b\xdc\xfd\xdc\x39\x27\x06\x18\x4a\x3f\x71\xf2\x40\xe0\xe8\xf6\xba\xd8\xbd\x5a\xbc\x9b\xda\x7b\xd1\x7c\x49\x14\xb5\xdf\xf3\xa4\x87\x6a\x90\x07\x8a\xce\x36\xb8\xf0\x05\x5d\x42\x0d\x04\x18\x10\x0c\x13\x27\xf5\x0a\xef\x49\x46\x04\xd2\x76\xe6\x26\x38\xc8\x4b\x89\xd4\x32\xea\xf3\xf7\x54\xf3\x0c\x83\xa1\x77\xfe\x23\xba\x0c\xd0\x30\x40\x41\x15\xfb\x37\xf5\xb9\x7e\xec\xef\x90\x53\x77\xc1\xfc\xfb\xf0\x88\x75\x36\xb4\xc3\x8b\xf2\x15\x79\x4e\x23\xec\xfb\x52\xe9\xc7\xca\xe5\xcd\x22\x32\x82\x55\x47\xe5\xf7\x67\xb5\xdf\x6e\x80\xbb\xec\x9f\x47\xf8\x54\x8b\xdb\x56\x52\xa3\xc1\xe1\xe5\xea\x30\x18\x92\xe3\x50\x0c\x06\x21\x1f\x46\xc1\xbf\x05\x40\x73\x0e\x06\x6c\xb4\x4e\x93\x9b\xcb\x94\xaf\x2f\xe8\x02\x95\xa5\x21\x1b\xc9\x7e\xff\x44\x6e\x36\x1b\x4d\xb3\x95\x04\x6a\x25\x84\x9b\x11\x1f\x28\x9b\x5a\xc5\x56\x12\x4c\x33\x7b\x61\x27\x07\x63\x5c\xf2\xe0\xf2\x97\x61\x38\x45\x24\x36\x9b\xdb\xc2\x06\x87\xac\xa1\xdb\xdb\x8a\x30\xc6\x92\xa0\xe1\x18\xa7\x1e\xae\x1d\x2e\x3e\x36\xf6\xf2\x23\xa0\x40\xb1\x76\x83\x28\x95\x6b\xa7\x16\x4a\x67\x64\x1e\x71\x78\xe3\x3d\xd1\xef\xe9\xf6\x51\xe2\xad\xa3\xc4\x11\xd7\xfe\x17\x38\x96\x0f\x2e\xad\x8d\x1a\x17\x05\x1a\x5d\x12\x11\x4b\xb2\xd6\x6e\xe5\x42\x09\x5a\x2c\xa8\xa8\xad\x75\xa6\x46\xb1\x0d\xac\xd2\x32\x39\x0a\xbe\x05\x61\x26\x87\xc5\x01\xdc\x02\x90\xaa\x64\xee\x04\xe2\xb9\x12\x98\x9b\xd9\xe6\xae\xa8\xd9\x0a\xba\x06\x83\x83\x64\x9a\x44\xf9\x24\x1f\x0c\xf2\x83\x28\x4a\xa6\x61\xb2\xd9\x84\x49\xc4\x43\x39\x0f\x84\xb3\xd1\xa9\xbc\xfb\xb3\x78\x1e\x25\x38\x71\x1e\xe6\x1c\xa1\x49\x12\xe5\x38\x29\xea\xf7\x7d\xd7\xf4\xcb\x1d\x54\x80\x60\xe4\xef\x31\x9a\x86\x6c\xb3\x09\x59\xa4\xdc\xc7\x90\x12\xb2\x98\xa7\x2f\x46\x68\xa2\x35\x00\xf1\x60\x10\xaa\xa4\xff\xe5\x04\xc5\xfc\x20\x8a\xd8\x66\xc3\xdc\xe8\xb6\xac\xfd\x61\xa1\x2d\x0f\x0b\x83\x57\x85\xb6\xbc\x2a\x98\x15\xce\x59\xae\x42\x1d\x2f\xbd\x94\x20\x82\x95\x8a\x9a\xd2\x54\xff\x3b\x63\xf3\x96\x68\x4d\xa5\xbe\xc2\x83\x2d\xec\x19\x81\xe6\x1c\x49\x4e\xca\xfd\x10\x96\x5a\x84\xc0\xfd\x1e\x80\x76\xb3\x5e\x5b\xe9\x0f\x64\x5d\x05\x2e\x07\x8e\x1a\x05\xa0\x84\x46\xb3\x79\xd1\xea\x8d\x51\xed\x6c\x4a\x27\x60\x7a\x0c\xe4\x73\x48\x41\x0c\x14\x8e\x61\x1f\x0a\x07\xfb\x56\xaf\x9b\x05\xf7\x3c\x0c\xca\xe7\x85\x60\x8d\x1c\x90\x7b\x09\x58\x29\x88\x8c\xdb\xa0\x88\x83\xef\x51\x18\x63\x2a\x2f\x81\xd1\x19\xe3\x3c\x8a\xdd\x5b\x60\x53\xda\x1e\xe4\x83\x81\xea\xc9\x11\x13\x66\x68\x9a\x47\xd9\x24\x1b\x0c\xb2\x83\x28\xca\xa7\xf9\x34\x8c\xf5\x99\xd1\x79\x94\x63\x68\xd0\x90\xf3\xe5\x38\x43\x68\x12\xe6\x6a\x66\x75\x81\x1e\xc3\x04\x5e\x3c\x81\x25\x02\x71\x7a\x43\x93\x3c\xca\x70\x5e\x54\x97\x09\xc6\xa6\x72\xa1\x79\xc4\x34\x9a\x49\xda\x96\xac\xc2\x89\x66\x48\x49\x3c\xeb\x4b\x41\x7a\xab\x9a\x42\xcc\x0c\x60\xce\x82\x40\x8c\x2a\xd7\xaf\x2a\xab\x8c\x61\xda\xbd\xd8\xbf\xb8\x1c\x2b\x80\x97\x8b\x53\x0a\xaf\x38\x72\x91\x4c\xa2\xd7\xcb\xe7\x10\x72\xb4\xe5\x9a\xc1\xba\x5b\xaf\x19\xe4\x49\x88\x95\x91\x45\xf5\x65\xf7\x02\x94\xd8\x6c\x42\x11\x49\x00\x5a\xb8\xa0\x75\xa8\xe0\x1c\xb2\x81\x54\x41\xab\xbc\xac\xdc\x0a\x4b\x8d\x0e\x45\xbf\x6a\xf6\xe1\x52\x2c\x2f\xd5\x61\xcd\xe4\xdd\x87\x69\xc5\xad\xd3\x71\x82\x42\xb6\x69\x58\x33\xc9\x01\x4e\xc1\xe8\x9c\x68\x0c\x80\x26\xb5\x55\x98\xc9\xa3\xea\xd3\xc0\x9b\x9a\x0a\x3b\xf5\xda\x9c\xb9\x9e\x33\x31\x73\xae\x12\x4f\x6d\x9c\x73\x3b\x6b\xbd\xed\xa1\xd4\x72\x74\xf3\xdc\xdd\x96\x80\x09\xa3\x01\xfd\x36\xe2\x24\x5e\x9e\xb0\x44\xf2\x1d\xdd\x08\x68\x30\x09\xf0\x2b\x54\x1e\x29\xc1\x53\xe5\x13\x34\xaf\x7e\x3a\x5c\x73\x7a\x05\xcc\x5b\xa5\xad\x61\x90\x78\xf6\xe8\x6f\x99\x63\x52\xf1\xc0\xe4\x72\x8d\x48\xef\x6c\x7d\x7e\x07\x4a\xf9\x3f\x3f\x9c\xbc\xfd\x60\x97\x19\x91\x11\x1c\x58\x44\x46\x1f\xe4\xbe\xb9\x74\x71\x1e\xf1\xd1\x2b\xf7\x54\x4b\xd2\xb3\x57\x27\xff\x4a\xdf\x1b\x31\xef\x81\xe5\x64\xcd\xd7\x8a\x44\x6d\x5c\xa2\x05\xdb\x32\xaf\x78\xd5\x9f\xb4\x54\x5c\x70\x92\xae\x09\x0b\x6f\x5b\x65\x94\x65\x98\x72\x46\xae\xfb\xb5\xe9\xcb\x07\x36\x4f\x12\x45\xab\xc9\x47\xc9\x06\x61\x35\xb0\xba\x48\x99\x88\xa9\xfc\xd0\xb3\xc9\x89\x54\x4a\x32\x27\xc6\xea\xe5\x5a\xdc\x60\x36\x3a\x55\xd9\x36\x41\xf8\xa5\x81\xdc\xfc\x02\xb3\x98\x25\x90\x42\x26\x20\x34\x83\x90\xa2\x64\x91\xf2\xa5\x63\xe8\x35\x18\xd0\x1a\x8e\x05\x5a\x51\xa7\x70\x08\x03\x79\x2f\x24\xfd\x46\x47\xa7\xe5\xbd\x01\x27\xca\xc2\xa5\xa7\x6b\xa2\xa9\x40\xee\x33\x55\x51\x6c\x4c\x32\xb9\x43\x3d\xfd\xc0\xb1\xdc\x38\x38\x72\x45\x53\x97\xfa\xde\x3a\x34\x58\x5c\x37\x57\x10\xae\x0c\x81\xff\x5c\xd3\x54\x58\xda\xbc\xb1\xb1\x98\xa9\xcf\x56\xb6\x04\xe7\xf1\x36\xbe\x24\x2e\xc9\xa7\x55\x02\x56\x1a\xcc\xd0\xd4\x77\xb2\x64\x94\xa4\xe9\xa7\x7c\xed\x08\xe5\xf9\x44\x32\x33\x8d\xc0\xd6\x6c\xca\x26\xf6\x47\xd8\xd2\xd2\xde\xc2\x00\xa1\x29\x9b\xb4\xd5\x32\xfb\x07\x61\xd7\x98\xc9\xd0\xb2\x45\xfa\x21\x31\x19\x6b\x42\xee\x36\x09\x98\x1b\x20\x77\xab\xc0\x54\xee\x66\xdc\x86\x71\xcd\x36\x68\xdc\xf0\x89\xdc\x64\xa1\xcb\xf5\xa0\xa6\x48\x9b\xa1\x5b\xa0\x4e\xc5\xe8\xb4\x14\x4d\x80\x71\x1b\x9b\x47\x92\x84\x83\x88\xb9\x77\x95\xbe\xf7\x6c\x60\xdd\xd6\x39\x63\xc7\x10\xd5\x31\x5f\x11\x9a\x64\x2e\xe7\x0e\xa7\xe8\x10\x71\x62\x2e\x39\x56\x56\xca\xe3\xf1\x92\x24\x44\x90\x7e\xbd\x56\xa5\xbf\x25\x10\x6b\xaa\x2f\xcd\x21\x20\x87\x05\xb2\x70\xbf\xd9\x30\x97\x35\xca\xcc\xf7\xf6\x31\x4d\x6f\xbe\xd3\x7f\x9e\xc4\x59\x16\xde\xae\x28\x49\x96\x0d\xc1\x62\x03\x0c\x24\x02\x7b\x13\xaf\x2b\x97\x83\xc4\x8b\x8b\xba\x61\x5a\x4d\xd7\xe8\x2a\xbb\xa7\x44\x89\x46\x71\x49\x55\xa3\x89\xac\xf0\x5e\xe7\xa4\xce\x2e\xe8\xda\x56\x62\xa3\x4f\x94\x2d\x55\x05\x0b\x9f\x83\x81\xed\xc3\x42\x46\xa0\xe0\xa1\xf2\x6c\x23\x9c\x84\x39\x0e\xaa\x72\xe1\x00\x37\xd1\x03\x71\x41\xcc\x0b\xaa\x1e\xf8\x24\x36\x21\xdd\x8c\xcc\x7b\xcc\x2b\x41\x61\x75\x6d\xf1\x60\x10\xca\xea\x51\xa3\x20\x44\x7a\x01\x6a\xce\x1e\xcd\x20\xf6\xd8\x7d\x13\xb8\x20\x2a\x9f\x96\x05\xc7\xda\xef\x19\x99\x9b\xb8\x3a\xee\xb7\x51\x73\x88\x72\xcb\xfc\x82\xf1\xca\x14\x14\x40\x38\xf7\x02\xb6\xd2\x37\x9f\xd0\xa0\x8f\xda\x0d\xd9\xaa\xfb\x56\xf3\xa8\xcb\xde\x03\xec\x43\xbe\x62\x36\x96\x4b\x9c\x8d\xe7\xa3\xf2\x18\xad\xab\xb8\x26\x38\x15\xf7\xcd\xeb\x33\xa6\xde\x19\xf3\xc6\x8c\xa9\x9c\x31\xf7\xe8\xcc\x99\x2c\x6a\xce\x57\x27\x8f\x6e\x9b\xee\x83\xcf\x4e\x69\xd6\xc1\xbf\x95\x36\x10\xbe\xe0\x31\xcb\x56\x29\xbf\xac\xbf\x96\x46\x51\x20\x1f\x64\x6b\x8b\xa8\xc4\x74\xd5\x77\xcf\x11\xe2\xd9\xce\x26\xc1\x90\x81\x02\xf5\x12\xd2\x5b\x3d\xfa\x7f\xb2\x5d\x68\x26\xb9\xa9\x72\x3a\x1b\xf8\x2f\x0a\xa7\x93\xbf\xfc\x5b\x38\xfb\x7f\xff\x36\x1f\x4a\x26\x03\x7e\x8d\xe4\x9f\xff\xf6\x08\x74\xd2\xb3\xa3\x39\x8e\x23\x3a\x7b\x3c\xc7\x59\x44\x67\x3f\x1a\x7f\x8b\x8b\x38\x7b\xaf\x4c\x80\x63\x65\x6d\x83\x0c\x57\x4a\x46\x2b\x15\x0a\xfa\x67\x08\x2a\xe4\x4c\x2e\x45\xbd\x3c\xca\x07\x83\x7c\x04\x41\x67\x30\xd1\x56\xc4\x84\x87\x1c\xe7\xd6\x00\x05\x48\xf5\x89\xc0\xc0\x5b\xc5\xd8\x91\x43\x7e\xbc\x59\x03\x3d\x3b\xc9\x8a\x32\x52\xac\x7d\x99\x39\x2a\x42\x2f\x9d\xe1\x48\xe4\x48\xc7\x37\xda\x10\xbe\x65\x7c\x6f\x43\x12\x33\xe7\x4b\x8d\x6a\xb6\xe7\xdc\x8d\x5d\xd9\x66\x04\xb6\x5b\xda\x2f\x99\x9d\xfb\xb6\xb3\x23\x72\xeb\x9e\x2d\x44\x1e\x27\xe6\xb5\x80\x14\x53\x14\x93\xc6\x1b\x1d\xa5\x98\x34\x44\x07\x51\x5c\xfd\x08\x5a\x44\x79\xd0\x55\xda\x3c\x6a\x30\x32\x29\xce\x15\xfc\x24\x11\x0d\x05\xfc\xc4\x8b\xa8\xde\x2e\x4c\x4a\x2a\x34\x5c\x80\x90\x02\x67\xe1\x02\x2a\x17\xe0\x37\xe5\x19\xc1\x95\xb1\x13\x97\x64\x2e\x4c\x20\x15\x75\xb2\x06\xfe\x4a\x4b\xef\x18\xac\xff\xb0\xab\xdc\xd6\x7a\xbb\x89\x57\xb2\x40\xa2\x28\x12\xd3\xf1\xe4\xa8\x68\xa8\x92\x4b\x22\x4e\xe7\x18\x74\x25\xfa\x98\x47\x1e\x64\xd4\x63\xf0\xb2\x5b\xac\x5c\x21\xcc\xb8\xa4\xc1\x1c\x99\x9a\x6b\xe7\xc6\xe4\x4b\x66\x39\x8c\x4b\x43\x54\x9b\x98\xb4\x95\x83\x2c\x8b\x2b\x24\x05\x5c\x96\xfa\xe6\x53\xcc\xbb\xe9\x6c\x53\xcd\x38\xb5\x3e\x2e\x3b\x74\xba\xa6\x7d\x03\xd5\xdf\x96\xaf\xcb\x84\x78\x31\xf8\x76\xc3\xa9\xb2\xeb\xd3\x2c\xbe\x22\xff\x25\x71\xd8\xdf\x20\xb7\x58\xb8\x4b\xfd\xa7\x0e\x30\xb5\x84\xa9\x02\x26\x65\x0d\x68\x76\x6e\xea\xd3\x0e\xe2\xc0\x28\x05\x27\x41\x50\x00\x7d\xe4\x92\x7d\xee\xed\x29\x39\xbe\x9d\x74\xe0\x6c\xfe\x25\x24\x20\x8c\x06\x49\xe9\x20\x35\xb8\x8f\x72\xab\x1b\x7a\x3a\x7e\x95\xae\x66\x08\x72\xc6\xb1\x99\xa8\x2b\x85\xe6\x9b\x8d\xe3\x22\x99\x56\x28\xbd\x0a\x00\x3a\x5c\xef\x81\xcb\x8f\x48\x3a\xcd\xf9\xe9\xbb\x20\x08\x3b\x01\xe4\xe2\xea\xa3\x98\x3a\x1c\x24\x37\x8c\xb8\xc0\xdc\x30\xe8\x8e\xa6\xbd\xa2\x5c\x2b\x89\xe2\xda\x89\x04\x1e\x02\x54\xa0\x5b\x32\x62\xa9\xa0\xab\x1b\xb3\xe9\x0a\xda\xcd\x96\xda\xd9\xe9\x28\x3d\x72\x56\x8e\x46\xc4\x05\x67\x51\xb8\x61\x44\x3a\x6a\x8c\x5b\x0d\xb4\xbd\xb5\x75\xf4\xe7\x07\x90\x4c\x6d\xad\x6b\x29\x80\xae\x9d\x7b\x1a\x18\xe1\x6c\xc7\x66\x1d\x6a\x3b\xca\xf6\x07\x93\xab\x69\x79\x99\x02\x35\x08\xa6\xbc\x8e\x17\xc4\x0a\x60\xff\xfc\xf2\xfd\x87\x57\x27\x6f\x9d\x1c\x22\x56\x76\xc3\x1a\x9f\x40\xa0\x3d\xe1\x8d\xef\x1f\x2d\x7d\x45\xfd\x6d\xca\x0a\x56\x5a\x85\x6b\x05\x96\xb3\xc5\x66\x7f\x26\x99\x15\xff\xe2\x8a\x48\xdd\x29\x80\xdf\xca\x20\x64\x92\x29\x09\x37\xae\x5c\x1e\xa7\xee\x89\x92\xf6\x6a\x23\x8e\x84\x9e\xf1\x98\x53\x92\x19\xcd\x9b\xfd\x50\x12\x84\x01\x60\x87\xbe\x59\x4a\x16\xe0\x7c\xa4\x37\xcc\xf5\x6b\xc8\xbb\x5d\x14\x23\x93\x6d\x11\x0e\x5b\xb1\xef\x7d\x3b\x56\xd5\x55\x19\x40\x34\xd5\x35\x18\x51\xfc\xcf\xe6\xed\x82\xb9\xc7\xb5\xd5\x3c\x97\x18\x04\x2c\x12\x0d\xf7\xc4\x60\x90\x42\x7c\x43\x82\x0a\x4c\xa3\x5b\x9a\xbd\xbc\x5c\x8b\x9b\xc9\xc1\x11\xa6\xd9\xeb\x34\x5e\x52\x76\x5e\xfe\x20\x4b\xf5\x37\xec\xa4\xfa\xf3\x43\x7c\x65\xab\xbc\x00\x71\x8b\xae\xf3\x96\x5c\xab\x3f\xfe\x1c\x27\x74\x39\x39\x18\xe3\x25\x5d\x7e\xb0\x42\xd5\x9b\x89\x18\xbd\x4f\x53\x25\xc6\xd5\x92\xd9\x91\x24\x09\x96\xa3\x6a\x3d\x6c\x42\x59\x00\xad\x90\x55\x9d\x40\x0a\x7c\x46\x16\xe9\x25\x51\x13\xaa\x14\x48\xde\x9e\x2c\x7f\x8a\x17\x9f\xaa\xdf\x41\x4e\x3c\x29\x17\x3a\xc6\xa5\x58\xb8\x6a\xd7\x36\x02\x7c\x46\xe5\xef\x8f\x69\x18\xe8\x39\x2a\xdc\xb1\x0c\x50\x81\xe5\xdb\xdd\xbd\x21\x2c\x2e\x40\x45\xa1\x07\x9c\xdc\x76\x6c\x6f\x1a\x62\xf8\x63\xd2\xc8\xa3\xb0\xed\x78\xeb\xc4\xa6\xc3\x30\xb3\xb9\x4d\xa8\xae\xc8\x24\x36\x0c\x7c\x86\xe5\x68\xb3\x89\x81\x80\x69\x59\xb1\xdc\xd4\x65\x93\x8a\x6c\x3d\x1c\xcf\x0a\xf3\xf5\x52\xef\xa9\xb1\x73\x5e\xca\x13\xd2\x60\x36\x36\xd0\x34\x56\x66\x9f\x13\xee\x1b\x6f\xcb\xc6\x15\x58\x0f\x50\xe9\xd4\xf4\xd5\x80\x2f\x0f\x60\xea\xf6\xa3\x9c\x2d\x60\x58\xf9\x77\xbd\xdd\x9e\x93\xf2\x02\xe8\xb6\x45\x14\x8e\x15\x51\x6a\x68\xad\x8a\x77\x8d\xbd\x81\xf2\xcc\xc2\x3a\x9d\xe7\x0a\xf8\x74\x08\x8d\x51\x26\xd9\xad\xc0\x39\xa6\x00\xa1\x1a\x45\x87\x6e\x4b\x29\xea\xb6\xfe\x70\x6d\x2a\x6f\xc9\xb5\x9c\x86\x19\xa3\xbe\x5b\x01\x16\xa8\xa0\xd5\x4c\x9e\x60\x41\x60\xe4\x3e\x69\x9f\xb2\xb0\x6e\x91\x60\xe3\xc5\x82\x50\x08\x81\x1c\x5c\x38\x99\x0b\x48\x11\xf2\x69\x95\x50\xe5\x68\x72\x5b\x60\x81\xd0\x48\x65\xea\x55\x7a\x23\x8e\xc5\x08\x9e\x24\x88\x8c\x44\xb1\x40\xa2\xe6\x7c\x19\xa6\x68\x30\x08\x9c\x36\xc1\x41\x14\xa5\xf2\x1d\x30\xcd\xcc\x87\x52\x7f\xcc\x42\x31\x4b\x41\xf2\x2d\xff\x8d\x08\xfc\x83\x05\xa6\xc3\x60\x14\x0c\x53\x27\x28\x6a\x11\x52\xa5\xf4\x0a\x78\x9a\x82\x67\x8e\x7d\x50\x69\xb7\x07\xb5\x49\x6c\xb5\x3c\xad\xb6\xe2\xfd\xbe\xad\xfa\xc5\x6c\x7a\x2f\x29\xe1\x91\xd2\xe8\x59\x47\xa6\x25\xf1\xd8\xb8\x56\x83\x0f\xb8\xa6\x2d\x2d\xc9\xdd\xed\x4a\xec\x46\x1a\x33\x56\xd7\x56\x1b\x8b\x29\xd1\xd6\xe2\xce\xb0\x10\xc0\xd9\x6b\x6a\x7b\x2f\xd3\x20\xc6\x46\x77\x4a\x4a\x6b\xdd\x09\x71\xe6\x52\x9f\x49\x29\x97\xab\xdb\x32\x03\xff\xd6\x14\x34\x0b\x9b\xc2\xa0\x74\xa3\x3b\xd8\x3a\xe1\x32\x93\x25\xb2\xca\x33\x57\x1c\xe8\xe8\xf8\x20\x44\x54\x09\x84\x6c\x6f\x20\xac\x33\x0a\x1d\x59\x22\x1f\x6f\xf2\x75\xe0\xb4\x0d\x24\x4b\xdd\x6b\x35\xb7\x2f\x99\xca\x7f\x27\xa4\xcd\x2d\xae\x02\x6d\x1f\x28\x3b\x4f\x20\x12\x87\x32\x7b\xde\x02\x78\xde\x23\x2c\x65\x40\x65\x3a\xcd\xd6\x71\x2b\xaa\xdf\x90\x94\x12\x25\x54\x16\x29\x0f\xb3\x7b\x3a\xe3\x0e\xb8\x66\xab\xf9\xc6\x61\xbc\xa6\x0f\xe4\x1f\xd3\x11\x1f\xf9\x44\xda\x5b\x11\x95\x0f\x14\x74\xe8\x15\xdf\xa1\x6f\xed\xc4\x78\x4c\x80\x88\xaf\xe3\xe1\x29\x37\x71\x6c\x4b\xfd\x4a\xfe\x16\x97\xae\xa6\xef\x8a\x67\xfd\x0e\x36\x03\x99\x12\x51\x14\xa2\x88\xc0\x1f\x12\x8b\x02\x37\x96\xda\x72\x6f\xb4\xa4\x9f\x39\x06\x0c\x7a\xca\x2a\xdb\x66\x1d\x62\x19\xc2\x34\x12\xa5\xa5\x03\x43\x38\x8d\x1c\xab\x84\x90\xe2\xba\x01\xaa\xf6\x66\x96\xd0\xe5\x28\xbc\x02\x74\x27\xb3\x7f\xbf\x51\xfc\x83\x47\x04\xf0\xdb\xc6\xb9\x8a\x6d\x4f\xd4\x82\xed\x72\xa5\x87\x9e\x72\xf0\xe3\xe8\xc7\xd1\x38\xf0\xce\xca\x31\xdd\x6a\x62\x07\xca\x56\x09\x91\xac\x6c\x80\x83\xff\x03\x9f\x1e\xa5\x1c\x12\x13\x1f\x02\x31\xe8\xf6\x63\x56\xb3\xd3\x13\x9e\x45\x60\x26\x5f\xa3\xdb\x02\x6b\x12\x32\xb5\x42\x9c\x09\xc3\x3c\xe2\x83\x01\xdf\x52\xd9\x4a\x76\x26\x5c\x8b\xee\x5d\x6d\x73\x49\xa7\xfe\x53\x27\x2e\x68\xcd\xd6\x60\xec\x49\x2e\xe3\xb5\x31\x81\x28\xdc\x88\xdb\x3a\x80\xc9\x22\x5d\xdf\xd4\x4d\xcc\x04\x34\xa8\xaa\x37\x64\x3f\x1e\x7b\x02\xe5\x95\x9d\x81\x19\x38\x01\xcf\xcf\x02\xbb\xdd\x6b\xae\xdd\x63\x0b\x39\x8e\x22\x8d\x7b\xe8\xdf\x49\xb5\x11\x44\x03\x6b\xd8\xbd\x95\x09\x15\xec\x84\x90\xaa\xda\x12\x2a\xae\xec\x50\x31\x44\xdd\x7a\x54\x75\x77\x76\x49\x98\xe0\x94\x64\xdd\xfa\xd4\x95\x77\x76\xaa\xf7\xb7\x5b\xa7\xba\xf2\xce\x4e\xcf\x89\xe8\xd6\xe1\x39\x11\x3b\x3b\xbb\x88\x3b\x2e\xf9\x22\xde\xbd\xdc\x4f\xe4\xa6\x63\x6f\xb2\xe6\xce\xee\xb2\xae\x0b\xcd\x3a\x2c\x14\xee\x75\xc7\xd9\xa9\xba\xde\x2e\x69\x99\x2c\x44\xc2\x79\xf0\xff\xb1\xf7\xae\xdd\x6d\xe4\x56\xba\xf0\x77\xfe\x0a\xaa\x4e\x0e\x53\x38\x82\x69\xaa\x67\x66\xad\x73\x68\x57\xb4\xdc\xbe\xa4\x9d\xf8\x96\x96\x3b\x3d\x09\xc3\xd1\x94\x59\x90\x85\x98\x42\x29\x28\xd0\xb6\x22\xf2\xbf\xbf\x0b\x1b\xf7\x4b\x15\x29\xb7\x3b\x6f\x66\x75\xbe\xd8\x62\x15\x0a\xd7\x0d\x60\x5f\x9f\xdd\x87\xb4\x62\xb7\x18\xec\x06\x9b\xf9\xa3\xee\x0d\x1f\x56\xcf\x35\x2a\x1e\xbc\x01\xa4\x1a\x7c\x7b\x45\x44\x1d\x67\x8a\xe3\xa4\x6e\xba\xd2\xc4\xbf\x82\x03\xb1\xca\xe0\x16\xe4\xff\x3f\xa4\x7e\x14\x05\x46\xd9\x11\x74\x56\x47\xaf\x41\xf1\xe6\x29\x06\xa2\xc3\xbb\xc3\x02\xf9\x31\x1e\xeb\xa0\xaa\xfa\x0b\xaa\x92\x8b\xb3\xaa\x3a\xcb\x43\x66\x66\xc1\xb7\x08\xee\x10\xe6\x64\xdd\xd6\xb9\x34\xef\x4e\x6a\x3b\x7f\x47\xd6\x2d\x7b\xdf\xbd\x6d\x75\xe4\xe7\x54\x7d\xa4\x33\x55\xef\x7c\x93\xdf\x85\xc7\x2e\xc6\xc7\xa9\x21\x9a\x94\xdd\xb3\x11\xc9\x68\x41\x1c\xd8\xa4\xef\x57\xa1\xd0\x55\x6a\x3b\xb0\xe1\x6e\xcb\x83\xb8\xd0\xb3\xa6\x83\x76\x61\x24\xb6\x1d\x3b\x02\x9b\x2c\x13\xa6\x5a\x39\xd4\xce\x2f\xca\xc2\xff\x5d\x20\x48\xe0\x59\x16\x2d\x83\x3f\x89\xfa\x5b\x32\xa8\xda\xb3\x56\x3e\xd0\x7f\xca\x12\x17\x17\x50\xe2\xe2\xa2\x40\xf8\xb2\xee\xe4\x8f\xcb\x1a\x30\x28\xe0\x82\xbe\xee\xcb\xdc\x6c\xdd\x8c\x42\x0e\xeb\x9f\x30\xfb\x96\x76\xab\xce\x25\xee\x08\xe3\x77\x9c\x5c\x03\x3f\x31\xfb\x57\x96\xe6\x9f\x9e\xa5\x99\x68\xd0\xcd\xdc\xcd\x26\x1c\x9a\xc0\x65\xdd\x95\x22\xcc\x2f\xe2\xbe\xf0\xbc\xe3\x85\xd5\x35\x68\x48\x4e\x17\xf8\x25\x42\x67\x6a\xed\xd8\x89\x30\xdb\x61\xb1\x2b\x5b\x84\x9b\x3d\x27\xb3\x46\x23\xc6\xb7\xe7\xc6\x3e\xf7\x9d\xca\xd2\xde\x25\x30\x27\xd0\x42\xcb\x40\xad\x5b\x5f\x91\xe7\xec\x63\xbd\xa6\x8d\x09\xab\x09\x5f\xfe\xd1\xbc\x62\xf2\xbe\x92\xc4\xd0\x7d\xeb\x74\xff\x00\x1e\xbe\x17\xbf\x41\xd2\xd2\x75\x79\xeb\x8f\x37\x73\x9e\x38\x94\x07\xc0\xe9\x52\x6d\xf5\xf8\xde\xc5\xc7\x5a\xb6\x63\x05\xd2\xe9\xe4\x77\xf8\x8a\x74\x5d\xfd\x3e\xf1\xd9\x98\x5e\xd5\xd7\xdf\xde\xb8\xd3\x0a\x17\xba\xa0\xca\xd7\x79\x77\x74\x8a\x0d\xfb\xc0\x5a\x27\x3c\xf4\x49\xbf\x76\x6c\x25\x01\x1d\xdd\x4c\x6e\x3c\x93\x28\xc2\xea\xdb\xb0\xb1\x40\x45\x9d\x66\xad\x28\x2d\x28\x84\xe7\x10\x82\xeb\xa6\xc9\x46\x54\xc4\xb3\xa5\xeb\x2d\xd0\x48\xb1\x01\x75\xd3\xe8\x38\xc8\xc9\xe4\xa8\xb7\xb0\xf6\x8f\xb5\x21\x0e\x21\xf1\x28\x9f\x9e\xb8\x7d\x03\x9e\x71\x41\x59\xf3\x9a\x3f\x86\xdd\xfe\x52\xaf\x45\xe9\xc8\xcd\xe2\xdf\x40\x18\xc5\xdd\x16\x37\xfa\x18\xea\xcb\xfa\x7b\x10\x70\x8c\xca\x74\x64\xde\x63\x41\x48\xd7\xca\x42\xe2\x38\x65\xb2\x00\x38\x1c\xf2\x69\xac\xe1\x26\xcd\x2a\xe2\xb6\x9a\x3d\x68\x1d\x50\x6b\x6b\xe4\xbe\xba\xe2\x8b\x76\x89\xbb\x8a\x4d\x65\x67\x24\xf9\x19\xa2\xc3\x35\x1a\xd1\x45\xbb\xac\xba\xed\xd6\xf9\x9d\xcc\x89\x21\xdf\x79\x6d\x05\x38\x6a\x60\x82\x02\x12\xeb\x5d\xbb\xed\x56\xc3\x9e\xa8\x8f\xe4\x50\xee\xb8\xce\xea\x1c\x00\x20\x8e\x4c\xc3\xf2\xe2\xec\xad\x30\x20\x7d\x05\x69\x2c\x47\xed\xbc\xd2\x31\x49\x01\x52\xec\x96\xbc\x03\x41\x28\x49\x0a\xf4\xfb\x03\x54\x30\xf0\xd2\xee\xaa\xdd\x0e\x83\xa0\xe7\x1f\x53\xfb\x27\x17\x3e\xd1\xbc\xda\xc0\xfc\x25\x35\x1f\x30\x7b\x29\x18\x47\xcf\x24\x58\x70\x8e\x47\x25\x1a\xe5\x30\x90\x94\x00\x0d\x4e\x65\xe0\xf8\xac\xa5\x5f\xd9\xed\xac\xfb\xfe\xf0\x86\x52\xae\x76\xc9\xcd\x14\x89\xd6\x1e\xf7\xb2\xdb\x29\x46\x2d\xa3\xa5\x8e\x77\x9b\x49\x90\x36\x0b\xf8\xde\x2b\x7d\xb2\x68\x90\x5e\x79\x70\x1a\xb8\x14\x15\xc7\x5c\x3a\x6b\xa4\x6f\x7e\x9c\xb2\xfa\x8a\x2c\xf1\x80\xb5\x11\x4a\x20\x34\xd7\x55\xc3\x99\xdc\xae\x1b\xa8\x55\x45\x53\x24\xa6\x50\x4c\xb4\xe1\x57\xf1\xaf\x30\x03\x5d\xa9\xa4\x83\x9b\xea\x56\xb3\x87\x2a\x43\x6e\xe1\x99\x86\x0b\xec\x99\x99\xbd\xe7\xf3\xdb\xc8\x05\xe2\x0a\x5c\x01\x34\xd6\x4f\x68\x3a\xef\xf7\x7a\x80\x09\x02\xd1\x39\xe3\xd8\xe9\x0c\xae\xce\xbc\x3c\xe8\xaa\xa0\x06\x98\xa9\x09\x0f\x35\x31\xe8\xe0\xd0\xef\x93\xf1\x89\xae\xd7\x07\x98\xc8\x29\x7b\xb6\xa6\xef\x2f\x85\xc2\x74\x93\xb5\x1b\x81\x22\x17\x4a\x60\x64\x37\x50\x2c\xeb\x90\xda\x11\x2b\x89\xd6\xaf\x9f\xfb\x35\x40\x40\xee\xe1\xb6\xf7\x70\x60\x98\x98\x6d\xff\x02\x40\xf6\xa3\x29\x0e\x6e\xcc\x3d\xe3\xb3\xb7\xaa\x89\x40\x89\xca\xe7\x02\x53\xd2\xe6\x55\x14\xe2\x6e\x87\xcd\x84\xcd\x6f\x9d\x43\x4e\xe2\x6f\x73\xd5\xbf\x2e\x7d\x6e\x1d\x1b\xe6\x4d\xfe\xd3\xec\xf2\xf5\x78\x7f\xf4\x3b\x32\xd8\x3d\xaa\x20\xfc\x5e\xd0\x0b\xb2\xba\x59\xad\x6d\x2a\xbf\x4e\x0b\x9a\x8d\xec\xa6\x94\x51\x86\x97\xeb\xab\xae\xc7\xfe\xbe\xd9\x7a\x53\x40\xc8\xc4\xa9\xc5\x3b\x10\xd2\xc5\xf3\x6a\x91\x37\x24\x2c\xa2\xea\xe9\xad\x75\x99\x3a\xd1\x01\x6c\x09\xf5\xa7\x8d\xa9\x82\x81\x83\x8a\xec\x6b\x44\x02\xf1\x19\xa2\xd3\x89\xc8\x4e\x68\x76\xe9\x19\x6f\xaf\x9c\xbf\xbb\x3e\x34\xb1\x3a\x95\xd5\x89\x00\xa5\xe1\x18\x80\x65\xf2\xee\x3f\xb8\x32\x7a\x66\x7d\xd0\x55\xab\x8f\xfc\x7a\x8f\x0b\xb8\x76\xfc\x6e\x9b\xed\xd1\x7b\x8a\xf4\x11\xd0\x41\x35\xed\x3b\x06\xf4\x3e\xc4\xde\x5c\x1c\x4e\x19\xb0\xf0\x59\x62\x1b\xa4\xf5\x58\xb8\x43\x81\x7f\xd0\xc7\x43\xdd\x65\xec\x17\xef\xbd\xbb\xfa\x63\xe9\xbb\xe5\x98\x83\xf6\x76\xd7\x17\x9c\x85\x78\x25\x16\x74\x89\xd9\x82\x2e\x2b\xee\x7b\xc4\xd8\x54\xa2\xe0\x87\xc3\x5d\x32\xbc\xf2\x06\xc9\x3e\xcb\x3a\xde\x55\xef\xcb\x5b\xbb\xdb\xe7\x85\x71\xb0\xb3\x5e\x5f\x3b\x34\x7a\x37\xd5\xbb\x63\xea\x56\xb2\x3a\x64\x3f\x1c\x78\x74\x07\x8e\x5d\x3f\x47\x13\xa0\x19\x38\x8f\x46\x6a\xdc\xde\x7c\x06\xe8\xd3\x61\x4d\xed\x3d\xa6\x6c\x85\x4f\x65\x85\xbb\x70\x84\xfe\xb1\x52\x7d\xc2\x6e\x76\x93\x17\xf1\xbc\xbc\x8b\x67\xe5\x26\x5b\xa4\x27\x40\x7a\xcf\xb8\xe2\x85\x70\xe7\xc2\xe0\x42\xf4\xfb\xe8\x65\x56\xa5\xa1\xcd\x8b\xb6\xce\x35\x16\x31\x5c\x61\xd6\xe4\x73\x3b\x45\xde\x26\x3f\xa4\x57\x76\x68\xb2\x06\x75\x20\x4d\xfd\x6b\xb5\x7a\x8a\xcf\xfb\xd7\xe6\x0b\x8e\xfc\xf3\xfd\x5b\xe5\xab\x1c\x7a\x09\x75\x7f\x0e\x9d\xf9\xc0\xf2\xe8\x9f\x13\xa5\xa8\x3e\x96\x2c\xf2\xce\x63\x59\xef\x3c\x16\x78\xe7\xf1\x9c\x77\x1e\xcd\x78\xe7\xd1\xd8\x3b\x8f\x66\xce\x22\x79\x52\x81\x83\x1e\x55\x0e\x7a\x74\x89\x05\xe6\xe0\xa0\x47\x03\x07\xbd\x9f\xd5\x17\xba\xcf\x3b\x39\xe0\xb8\xfc\x55\x1b\x92\x08\xfa\xdd\x9a\x13\xd1\x42\x5f\xfc\xe7\xd7\x9e\x25\xa6\x12\xd9\xc5\xa7\xec\xbd\xa4\xa7\x2f\xf2\x8e\xde\xb3\x09\xed\x8d\xf9\x45\x1e\xd4\xfd\x7b\x7a\x80\x45\xd6\x23\x92\x33\x64\x97\x72\x86\xc9\xe7\x84\xb7\x08\xa7\x46\x79\xdd\xfc\x83\xba\xa9\x13\x26\xae\x49\xcd\x94\x62\x7e\x0f\xb7\x39\xc4\x4f\x62\xd6\x8a\x67\xed\x86\x0d\x73\x22\x44\x69\x21\x3c\x9f\xf4\x50\xa8\x55\x43\xf1\x28\xbe\x87\xac\x24\x05\xf6\x7a\xa7\xf7\x09\x92\x52\xea\x76\x81\x82\xb0\x8f\xca\x94\x67\xbd\xea\x65\x0f\xef\xe8\x5d\x1e\x1f\x94\x07\x0a\xa3\xe6\xeb\x9f\x5f\x28\xfd\xa9\xcc\xfe\xc0\xd9\xd1\xe3\x9f\x9f\xd2\x08\xba\xf5\x5c\xf0\xdf\x59\xbf\xf9\x73\xd3\xbb\x84\x42\x02\xb5\x87\xc7\xdb\xe8\xe2\x85\x7f\x14\xce\x02\x42\x4a\x5c\xf1\x73\x8a\x89\x48\xf3\x12\x6a\x53\xbe\x44\x9d\xf0\x15\xe4\xed\xbb\x11\x24\x4c\x7f\x76\x65\xfb\xa2\x54\xbe\x40\x11\x61\xcf\x8f\x81\x4b\xba\x4f\x4d\xf0\xff\x8f\x90\xff\xb3\x09\xd2\x5f\x28\xf7\xef\x95\xae\xcc\xf9\xe6\xdd\xf8\x39\xb2\x35\xf0\xfe\xed\xd5\x73\xf6\x91\xf0\x8e\xf8\x98\x2e\x40\xc2\x5f\x24\xee\x35\xb4\x51\xdb\x08\x10\xe6\x32\x6f\x0d\x38\x08\xe9\x39\xd9\x06\x4e\x81\x1e\x72\xee\xd1\x48\xfc\x8f\xd0\x28\xf4\x6f\xb8\xbe\xb9\xf9\x67\xd6\x10\xec\x0e\x22\x1a\xf0\x94\x37\xc2\x33\xe0\x20\xe4\xc8\x04\xde\x4b\x32\x99\x67\xde\xfe\x00\x67\xee\x01\x24\xb6\x0b\x82\x57\x9c\xf4\x7a\x96\x58\x71\x55\x40\xff\xb4\xa9\xbb\x4b\xc2\xb5\x1f\xba\xbc\x23\x5f\xff\x02\xbd\x2b\xdd\x3c\x3d\x72\xd0\x49\x61\x06\x25\x56\x9d\x01\xfc\x95\xac\x61\xbb\x05\x9f\x36\x04\x80\xb8\x2f\x6b\x76\x03\x20\x71\x80\x06\x05\x60\xba\x62\xda\x51\xf6\x7e\xb3\xae\x61\x5e\x19\x42\x98\xc1\xd4\x7e\xd8\xe3\xc3\x79\x45\x44\x6d\x52\x24\x9f\x83\xbf\x46\xa1\x75\xae\x90\x15\x53\x1e\x5a\xbf\x27\x37\xe9\xc3\xe7\xdd\xa3\xee\x86\xad\x2a\x0b\xd6\xa7\x3c\xb6\x01\x47\xa1\x22\x5a\x80\x93\xb7\xbf\x07\xf7\xa2\x18\xe8\x8c\xeb\x84\xdf\x52\x48\xc3\x1a\x95\xb3\x30\x0e\x9d\x7e\xa7\x0c\x8a\xd3\xaa\x5e\xaf\x36\xeb\x5a\x10\x7d\xc8\x7a\xd6\x66\xbf\x78\xe8\x83\x17\x8f\x23\xd7\xac\x76\xf0\xaf\xb2\x23\xbf\x4b\xeb\xfa\x93\xa8\x07\xf1\x97\x55\x86\x79\x34\xc1\xef\x06\x79\xcd\x4b\x96\x08\x01\x22\xc6\xad\x9e\x88\x1a\x97\xbc\x62\x86\xbd\x44\xca\xcb\xa7\xaa\x2a\x3e\xd5\x9d\xd8\x6e\xcb\x4d\x25\xcc\xaf\x67\xad\x8a\x05\x02\x82\x26\x08\xe1\xcd\x69\x59\x57\x1b\x38\x91\x6d\x2b\x55\x55\x95\x6d\x55\xd2\x6a\x83\x4c\xc5\x93\x09\x35\x7f\x4e\x6b\x39\x28\xb4\xdd\xb6\x68\x5e\x2a\x1c\x59\xdc\x55\x47\x27\x99\xb9\xaf\xea\x1e\xf2\xe9\x76\xf8\xb5\x73\x63\xfc\x40\x6e\x06\xbd\x18\xe5\x30\x65\x87\x77\x3b\xac\x3f\xa0\xac\x39\xe0\x0b\xca\x1a\xfb\x89\x72\xe7\x1f\x72\x95\x84\x28\x6a\xf7\xe7\xbc\xf4\x36\xc7\xa3\xd2\x56\x8b\xbc\x4d\x83\x6c\xf5\x26\x4b\xda\xde\x4e\xe9\x82\xf6\x43\xc8\xab\xb0\xf7\x2b\x59\xca\x7e\xe2\x36\xd9\xfe\x0f\x5d\x59\xeb\x01\x0a\x8a\x9a\x97\xd5\x21\x18\x77\x7b\x5d\x7a\x16\xcb\xdd\x2e\x13\x95\xa1\xec\xd7\xdc\xe7\x7a\xbe\xbd\xd1\x26\xfc\x3c\x7e\x07\x7c\x05\x27\x1e\xea\x85\x43\xc1\x6f\xf7\x76\x5a\xef\x12\xdf\x42\x7e\x38\x40\x8b\x3a\xc9\x23\x08\x3e\xb8\x24\x3e\x90\x9b\x8a\x61\x49\x06\xf2\x18\x9f\x52\xb6\x5a\x6f\x1a\xd2\x95\x44\xf2\x2b\xaa\xbf\x04\x29\x57\xf5\xa0\xc3\x8f\x0f\x9a\xe5\xf6\x4b\x40\x64\xa2\x3e\x32\xe8\xa3\xc0\x0c\x48\x05\xb4\x39\xca\xc1\x2c\x63\x86\x97\x6d\x7e\x90\x77\xb0\xbc\x2f\x32\xd3\xfc\xbd\xe9\x35\x88\xeb\x0e\x7c\x05\x08\xe7\x4d\x3c\xa4\xc2\xc7\x62\x2d\x72\xed\x85\x74\x11\x47\x10\xfb\x9f\x83\xbf\xbf\xdf\x95\x57\x81\x37\x71\x9f\x3b\x5c\x50\xa1\x0a\xe1\xf2\x02\xbe\xce\xcf\xd5\x7d\xfe\xaa\x65\x4f\x9d\x83\x61\xec\x00\xb1\x20\xca\x7d\xa0\x82\xfc\x51\x2b\x4e\xaf\x45\xcb\x95\x9b\x80\x73\xd3\x7a\xe3\x29\x01\xdf\x38\x41\xf6\xcd\x21\xc9\x69\xfc\x71\x4e\xb5\x00\xd1\x9b\x9f\x4d\x79\xd8\xe6\xbe\x00\x24\x3b\x23\xb9\xbd\xf1\x24\xeb\x37\x5a\xc7\xf8\xc6\xaa\x18\xdf\x78\xb2\xb8\x7c\xaa\xa4\x2c\xd0\x41\x7e\x4f\xd6\x4e\x97\xe9\xb7\x33\xff\xac\x41\x74\x95\x9b\xc6\x5e\x04\x24\xa3\xed\x73\x1b\x0d\x14\x1b\xa1\x7b\x62\x6e\xdd\xfd\x91\x6b\x7f\x48\xed\x7b\x11\xba\x9c\x0d\x15\xd3\x1e\x37\x29\x05\x6b\x8d\x92\x1a\xb0\xa2\x87\xa1\x58\xbc\x2c\x59\x46\xb0\x94\x61\x14\x25\x16\xed\xef\xce\x5e\xbf\x1a\x8c\x7d\x8b\x02\xdc\x1c\xcc\x2f\x32\x51\x71\x7b\x9a\x1c\xa5\xc1\x9d\x2a\x24\x06\x83\x2c\xa1\x63\x15\x95\x42\xd1\xfe\x50\xec\xbb\xfd\xa9\x78\x7d\xfb\x53\x11\x8b\xfa\x19\xca\x54\xde\x23\x6f\xda\x3c\x89\x48\x4f\x23\x8b\x95\x5d\x03\x73\x08\x6b\xa5\x93\xfa\x78\xa2\xcd\xa1\x4b\x10\x88\x43\xa4\x57\x39\x66\xa2\x92\xc2\x8f\xfd\xb2\xa0\x51\x54\x80\xb0\x19\xcd\x98\xdf\x83\xf0\x2b\xcd\xc3\xd6\x2a\x9d\x7e\x8f\x6e\x4d\x37\x2f\x37\x22\xb4\x40\x9a\x3c\xc4\x9b\xff\x35\x80\xaf\x05\x1e\x57\x94\x74\x7d\x01\xc8\xdf\xfb\xbb\xce\x49\x45\xfa\xaa\xe3\xd5\x0c\xd3\x8a\x18\xf1\x88\x3f\xa4\x0f\xf8\xf1\x31\x62\x15\x59\xf0\x25\x16\x79\xbf\x2e\x06\x08\x6d\x83\x78\xc7\x43\x5b\x23\x87\x25\x77\x48\x42\xc8\xb0\x9a\x2c\xf0\xea\xa1\xe9\xcb\xf6\x6c\x9d\x83\xb2\x48\xe5\x6a\x32\xec\x7d\x58\x3d\x6d\x94\xea\x67\x4f\x8c\x78\x1a\xb0\x92\xdd\x15\x8a\x9e\xa6\xe2\x92\xb0\x8c\xb3\xb1\x50\xc8\xff\x71\x50\x46\xd0\x20\x8e\x44\xc6\xc4\xc0\x45\xac\xb7\x3f\xf1\x34\xec\xaf\x0d\x2f\x5f\xb2\xea\x36\x7c\x36\x8f\x0b\xed\x10\x3e\x6c\x38\x3a\xfa\x83\xed\x1b\x90\x0d\xef\xc8\x8e\x68\x41\x96\x3d\xf9\x54\x02\x55\x80\xb5\x23\x6b\x7a\xc7\xdc\xf3\xcc\x65\xf7\x4e\x10\xa6\xd5\xc9\x03\xfa\x90\x3d\xa0\xc7\xc7\x88\x2f\xe8\xbd\x93\xa5\xfb\x68\x41\x97\x23\xe1\x9b\xa5\x39\xda\x89\xbd\x38\xa4\xb8\x16\x82\xc7\x3a\x27\x1d\xc4\x73\xe8\x51\xc6\x4d\x98\x09\xdc\x04\xf6\x73\xa5\xaa\xd3\x92\xfd\x97\xd5\x65\xd4\x02\x50\xd3\x79\x43\xde\x6d\xde\x3f\x67\x17\xed\x3c\xb9\xa9\x17\x05\x6d\x8a\x25\x16\xd5\xed\x0e\xb3\x6a\xb1\x1c\x59\x6e\x33\x83\x6d\xe9\x23\x0d\x7a\xf8\x84\x3a\xbe\x7e\x71\x0b\xb9\x2a\x0a\x1f\x12\xf9\xda\x9d\x63\x04\x93\xcf\xd7\x35\x6b\xe6\x47\xb3\x5d\x0a\x90\xe8\x33\xae\xbe\xd3\xaa\xcd\x60\x2d\x16\x14\x44\xb7\xe5\xc8\x4a\xa3\xed\x64\x52\x7a\x2f\xaa\xc5\x12\x73\xd5\x2b\xd5\x13\xaa\xe4\x57\xaf\x0f\xad\xd7\x07\x84\x70\x6b\x98\x74\xcc\xcc\x5f\x3b\x14\xd6\x51\x3c\x5b\xd7\xef\xc3\x81\x2c\x0a\xc3\xe2\x15\xd9\x84\x44\xb8\x30\x9c\x58\xe1\x03\xef\x80\x6b\xaf\xd2\x45\x6b\x0c\x1c\xf9\xbf\x62\x56\x96\x3b\x84\x6f\x8d\x15\x17\x16\xea\x56\x4b\x13\xaf\xc5\x65\x80\x3d\x79\x34\xc3\xef\x79\xbb\xb9\xee\xe6\x5c\x8e\x45\x1e\x62\x1f\x3d\x66\x7c\xce\x76\x3b\x30\xde\xd0\x8b\x9b\x6f\x0d\x3d\xc5\x89\x00\xf7\x3a\xf7\xc6\x0b\x12\x3b\xf7\x47\x10\xa9\xe9\x02\xaa\xdb\xdd\x97\xf4\x0e\x8a\xe7\x08\xc1\x1e\xf3\x82\xa2\x89\xec\x70\x9a\x8b\xde\x1d\xe2\x77\xd1\x53\x74\xf8\x4a\x28\x64\x26\xeb\x3b\xb5\x61\x1e\x35\x92\x73\xbf\xdb\x4c\xb9\x9c\x69\x07\x4c\x93\xdb\x55\x30\x47\x3b\xd4\x13\x73\xff\xca\x53\x17\x02\x96\x41\x01\xd1\x51\x5e\xb8\xd3\xc9\xa0\xda\x22\xc2\x63\x92\x35\xf4\xe7\xd6\x0f\x1a\xa3\x4d\xa6\xa9\x8e\xe4\x92\x6b\xc7\x7c\x9d\x78\xae\xf4\xf2\x07\x77\xac\xf7\x5e\xdd\x21\xfc\x2a\x04\x63\xa5\x9d\x92\xe3\x8e\x66\x0e\xe9\xc2\x41\x77\x3c\x6b\xf9\x00\xc1\xe6\xa3\x61\x86\xe8\x6b\xe4\x54\xb7\x3e\xfa\x84\x52\x45\x58\xe2\x7b\x59\x5f\xef\x0f\x13\xca\x02\xe1\xe6\xc9\x77\x20\x72\xc7\x36\xa8\xc0\x7d\x5c\xc2\x8c\x05\x59\x5a\x90\x18\x79\x5d\xe6\x53\x59\x1f\x30\xd6\x23\xbe\xdd\x72\xa7\xd8\xb3\x0a\x43\xa3\xdf\xd3\x5d\x38\x65\x80\xd0\xbf\x59\xaf\xe7\xf0\x97\x8b\xf3\x79\x1e\x6c\x31\x13\x74\xf3\x7c\x78\xa0\x2a\x64\x22\x5d\x41\x28\x03\x30\x46\x2c\xc1\xc0\xe1\x4e\xcd\xf9\xac\xe5\x4e\x21\x2f\xaf\x79\xdb\xdf\x91\x05\x6e\xaa\xa8\xe9\x7b\x52\x53\x6b\xf8\xe5\x9c\x4a\xd5\xe5\x73\x73\x15\xb4\xae\x32\x5c\x57\x65\x57\x05\xd9\xe9\xfa\x67\xb9\x45\x08\x2e\x29\xbc\xa9\x3a\xdb\x43\x48\xe1\xc5\x3d\x65\x1c\x68\x95\x60\x17\xfa\x4f\x3d\xdc\x97\x91\x42\xe1\x8e\xbd\xa9\xdc\x2d\x49\xb7\xdb\xc5\xd2\x06\x73\xe7\xba\xa5\xc1\xa1\x6c\xda\xb0\x56\x27\xd4\xac\xb5\xb2\xcd\x03\x99\xb9\xa0\x6b\x41\x78\x92\xd3\x41\x54\x2c\x9d\x7b\x65\xbc\xb3\x43\x33\x41\xaf\x66\xb2\x5c\x98\xa9\x53\x40\xf3\xca\xfb\xe9\xf4\x85\xdd\x64\xa2\xee\x65\xcd\x78\xb5\xb8\x43\x58\x4c\x81\x17\x03\x68\x7a\x65\x4d\x71\xbf\x15\x46\x39\xc2\xad\x8e\x99\x95\xc2\x30\x04\xd7\x55\x55\xb5\x8e\x82\xeb\xec\xca\xaf\xaa\x75\x32\x3e\x61\x4c\x48\xe9\xf8\x44\x76\x7c\x00\x2a\xce\xbd\x21\x9c\x54\x55\xb5\xd2\x4d\x4e\x26\xe5\xba\x5a\x21\xdc\x56\xeb\xc5\x6c\xa9\x58\x91\x5a\xfd\xad\x29\x01\xfe\x36\x9a\x5f\x55\xa3\xca\x59\xc6\x54\xd6\xaf\x16\xcb\x82\xf3\xda\x66\x30\xdb\xec\xc2\x4b\xb5\x9b\xbf\x0c\x7e\x03\x8c\xed\x5e\xe5\xcc\xad\xe1\x2c\x17\x4b\x8f\x65\x5d\x2c\x77\x3f\x5d\xe1\x48\x16\x2a\x25\xc9\x32\xd4\xd6\xaa\x4e\x92\x46\x52\x73\x37\x7f\x8b\x33\xfb\x64\xfe\x18\xdf\x21\xcb\xca\x4f\xd6\x8d\x7e\x95\x14\x2a\xfb\xf8\xa4\x2f\xd4\x7c\x83\xc2\xd9\x04\x7e\x63\x8e\x95\x58\x6e\xdb\x52\xd3\xd8\x1b\xbb\x98\x6d\x54\x4f\x3d\xe4\xf6\x9f\x3d\xe0\x0f\x99\x55\x0c\x18\xbb\x29\xad\xd8\x82\x2f\x47\xb6\x59\x8a\x76\x3b\xdc\x10\x41\xf8\x15\x65\x81\xa7\x42\xa6\x75\x93\xe5\x09\xcc\xa1\xda\x0e\x89\xa9\x3a\xa5\x3d\xc6\x8b\x61\x17\xec\x4c\x4f\x3d\x79\x07\xce\x68\xf9\x51\xf4\x90\x9f\x16\x2d\x23\x6f\xdb\xd7\x8c\x14\xf3\xe2\xaa\x66\x37\xe6\xef\x6c\x31\x90\x78\x4c\x39\xfd\x23\x5b\xf0\x55\xeb\x55\x08\x3f\x94\x38\x97\xd7\xd1\x7e\x3d\x0a\xf4\x08\xac\x4c\x54\xf2\x2c\xa7\x74\xb7\xa8\x69\x81\x42\xe6\xcb\x3a\xd8\x27\xd0\x29\xae\xc6\xd1\xbc\xe1\x72\xb2\xe4\xde\xc7\xec\xc6\x64\xe7\x23\x6f\xdd\x85\xc4\xdf\x66\x06\xbc\xa7\xa9\xec\x1c\x1d\xde\xaa\x51\x09\xa5\x1c\x6b\x01\x77\xe1\x3c\xcd\x27\x6e\xef\x48\x85\x2a\x26\x27\xfd\xaf\xd5\xfd\xff\xfa\xcb\xfd\x53\xc9\x67\xff\xe5\x7e\xe9\x25\xda\x09\x36\x3d\xfa\xcb\xfd\x72\xfa\x7f\xd0\x7d\xfc\xdc\x15\xbf\x8f\x9f\x54\xc5\xbb\xba\x23\x85\x73\x02\x78\xe1\xee\xda\x58\xb7\xf1\x9b\x93\xc9\xc4\x72\x7f\x4e\x87\x71\xb2\x3c\xf5\x7f\xcc\x8b\x47\x4a\x6f\x33\x96\xc4\x08\x1d\x18\x5f\xd4\x74\x4d\x9a\x62\xa4\x15\x93\x8f\x3c\x6d\x78\x75\x34\xd3\xb1\x9c\xf0\x33\x40\x2e\xc0\x5e\x7c\x66\x45\xb6\xdb\xc5\xad\xa0\x62\x4d\x5c\x0b\x5a\xa8\x6d\x88\xa8\xe9\x7a\x2e\x76\x4b\x17\x61\xf0\x6c\x00\xab\xa4\x2a\x93\xa1\xcd\xb2\x43\x9b\xf9\x43\x9b\x2d\xe7\xb7\x90\x99\x12\x1c\x6e\x0c\x8d\xff\x5d\x4b\x53\xb6\xe1\xbf\xfb\x07\x53\x9e\x00\x14\xab\xc0\xb7\x5b\x81\x76\x0e\x59\xa3\x0f\xa9\xc2\xb3\xd5\x23\xcc\xb4\xc9\xa9\x7a\x56\x02\x52\xc3\x8b\xde\xcf\xfc\x49\xf5\x2a\x78\xe1\x2a\x78\xa1\xe8\xe7\xbb\xea\xef\xe5\x0b\x5c\xbc\xbd\x24\x63\xad\x71\x1b\x73\x9d\xfe\x62\x2c\x2e\xc9\x58\x39\xfd\x8c\xdf\x91\x55\xbd\xe9\xc8\x98\x8a\xf1\xa7\xba\x1b\x3b\x37\xb5\x6f\xd3\xef\xdd\xca\x0b\x7a\x45\x9a\x71\xbb\x11\x05\xc2\x3f\x0c\x15\x94\x75\xd6\xef\x5a\xae\xfc\xe9\xfe\x36\x54\x94\x76\xe3\x0d\xab\x37\xe2\xb2\xe5\xf4\xef\x50\xfc\xc7\x3d\xc5\x2f\x5a\xfe\x8e\x36\x0d\x61\x05\xc2\x7f\x4c\xcb\xae\xda\xcd\xba\x01\xec\x10\x29\x36\xc0\xa0\x39\xe9\xda\x0d\x5f\x91\x02\xe1\x3f\x0d\x55\xae\x28\x7b\xdc\x6c\xc8\x58\xb4\xe3\x7a\x2c\xa5\xd7\x35\x85\x0c\xc2\xbf\xbd\xcb\x77\x1d\xe1\x1f\x09\x1f\x03\xad\x17\x6a\x5d\x7e\xdf\x87\x24\x93\xd2\xf5\x3f\x3b\x92\x4c\x56\x8f\x89\xfe\x85\x16\xf3\x95\xd0\x62\x54\x27\x33\xf8\x73\x72\x8e\x04\x40\x20\xf9\x90\x32\x75\xd3\xfc\x48\xc5\xe5\x73\xd6\x90\xcf\x39\x5f\x1f\xc3\xc8\x6d\x68\xe3\xd0\x31\xe5\x49\x2c\xe7\x56\x12\xd4\x19\x11\x86\xc7\x5a\xd3\x4e\x80\x54\x27\x0f\x4e\xbe\x60\x56\x23\xc0\x55\x36\x48\xac\x04\x61\x71\x4a\x8d\x9a\x73\x4e\xa7\xdd\xf5\x9a\xae\xa4\x00\x39\xc3\x06\x1b\xa1\xa3\x7f\x27\xc7\xd5\x89\x06\x6c\x12\xbb\x92\xa9\x4d\xf0\xab\x5f\xa0\x47\x1e\xfe\x43\xff\xa0\xfd\xac\xef\x3c\x74\x80\x02\x78\x52\xf3\xc4\x83\x52\x1d\x69\x95\x85\x5c\xd4\x0e\x18\xb4\xdf\xab\x39\x5f\xd5\xac\x65\x74\x55\xaf\x5f\xa6\xef\x94\x9f\x9c\xd6\x57\x7e\x20\x37\x95\x1a\x9f\xfa\x49\x59\x23\x7f\x4b\x56\xdb\x67\xb4\x7f\x0f\x4e\x29\xfa\x89\xa7\x55\xab\x04\x36\x17\x3f\xf8\x5a\x59\x2d\x3a\xdd\x6e\xa9\x79\xf5\xc6\x75\xb8\xb2\x37\x71\x3b\x99\xb4\xaa\x80\xcf\xcb\xbc\x24\xa2\xae\x78\xdc\xf4\xb3\x96\x3f\xbf\x92\x84\x45\x45\x95\xf6\xc1\x29\x17\x8e\xad\xb7\x19\xfc\x71\x41\xc4\xea\x52\x03\xae\x79\x4e\x84\x69\xc0\x0d\x76\x6e\x8a\x5e\x31\xe3\x47\x06\x7d\x32\xce\x3e\x30\x81\x97\xf2\x52\x79\xd6\xf2\x15\x51\xbe\x0d\xd5\xd1\x49\x3a\x94\xe7\xdd\x99\xa8\x25\x65\xe9\x59\x78\x45\x3e\xa9\x42\x97\x75\xf7\x88\xdd\xf8\xc2\x0f\x44\x1c\xe6\xeb\x50\xf0\x93\x47\x33\xfb\xe9\x33\xb8\x5d\x5e\xb4\xb5\x64\x4b\xc9\xd5\xb5\xa8\x8e\x4e\x86\xfc\x1d\x9f\x77\x67\x81\xef\x61\x98\x5d\xd6\x1b\x62\x80\xee\x6d\x53\x02\x93\x90\x10\x93\xd4\xba\x90\xc4\x29\xc2\xcc\xf4\x17\xe7\x09\x6d\x9e\x90\xab\x5a\x18\xa7\x82\x7c\x47\x46\xd1\x82\x6b\x0d\xee\x45\xcb\x1f\xad\x0d\x09\x07\x1a\x15\x01\x11\x2d\x8e\x05\xd6\x69\x9d\x5c\x0d\xc8\xfc\x1d\x77\xa0\x8c\x3a\xa8\x53\x9f\xfb\xdd\xcf\x7e\x57\x25\x8a\xea\x1e\xf2\xea\x88\xf8\x3e\x25\x83\x52\x1e\x30\xfe\x56\x31\x30\x2f\xca\x81\x3d\xc8\x4f\xfd\x8c\xb7\x57\xaf\x3f\x31\x0b\x2e\xa3\x8a\x3c\x36\x5b\xba\xa7\x6c\x34\x0c\x15\xce\x02\xb4\x9b\xf4\x5c\x39\xe4\xee\x01\x2d\xb5\xf9\x4e\x2b\xff\x90\x81\x5b\xe1\x01\xb1\xbc\xf5\x03\x9b\x0c\x64\x31\xd3\x66\xbe\xcc\x88\x4a\x81\x76\x11\x10\x52\x7c\x42\xa9\x8a\x59\x5c\x31\xaf\x58\x54\x71\x7e\x1e\x4a\x79\x3c\x07\x03\x52\xa5\x1f\xad\xc3\x72\x9d\x9e\xb0\x2a\x76\x18\x30\xe3\x0b\x50\x77\x22\xaf\x8a\x6c\x84\x50\xb6\xcd\x7c\x27\x7b\x1b\x4f\x26\x23\xe8\x85\x4a\xaa\x67\x8a\x28\xff\xf8\x6c\xc3\x61\x63\x99\x84\x3c\xb0\xd7\x72\x30\x3e\x1e\xb8\x7b\x6e\xf9\x48\xb2\x4b\xea\xa6\xe9\x6d\x2d\xd4\xc3\xf7\xb4\xc7\x92\x2a\x94\x57\xb3\x7f\xb2\x88\xe3\xe3\x4c\xbb\x3d\x73\xdb\x97\xb9\x03\x18\x08\xe2\x33\x10\xae\x09\xe5\x82\xdb\x5b\x27\xe4\xbd\xc6\xec\x58\xe8\x14\xa2\xc3\x05\x0f\xed\x69\x95\x33\xe8\xc5\x04\x70\x59\x2b\x8f\xcf\x32\xff\xda\xe7\xf3\x3c\x6f\x70\x08\x10\xca\xc4\x01\xc9\xe3\x61\x80\x96\xec\xc7\xdf\x65\xaf\x26\x79\x76\x25\x50\xb5\xd9\x76\xb2\x70\x86\xde\xa1\x6c\xa3\x15\xc3\xd3\x1b\xf3\x8a\x29\xd4\xc3\xa8\x3c\xd6\x09\xf3\x93\x17\x0f\x4a\xae\x3d\x9f\x02\xf6\x02\x4d\x26\x74\x60\x95\xd2\x3d\x8d\x76\x60\x2e\xd1\xce\x00\xd3\x73\xaa\xd9\x8c\x20\x88\x0a\xd7\x55\xbb\xe8\x67\x49\x96\xa3\x7a\xbb\x2d\xf7\x94\x51\x90\xd4\xa5\x63\xc0\xb0\xb0\x0c\x18\xbe\x35\xaa\xf8\x5b\xb8\x64\xe7\xfe\x3d\xb1\x53\x49\x04\x14\x93\xee\x1c\xac\x11\xc2\xf5\x1d\x47\x9a\x3b\x31\xbe\xfa\x5e\x1a\x3c\xa3\xa3\xed\xb4\xb7\x6c\xf6\x90\xfb\xc9\x9b\x6a\x32\x29\xef\x70\xad\xc6\xbc\xe8\xfe\x61\x7a\xb1\x78\x25\x84\x3d\xe5\xa9\x6a\x88\x5a\x54\xda\xda\xbb\x7e\x35\x3c\xa1\x19\x92\x38\xfc\x7e\x89\xcf\xea\x2a\x54\xf6\x06\x37\xa8\x82\x2f\x35\x47\xd7\x55\xee\xc4\x02\x2c\x52\xcf\x07\x42\xdd\xa9\xfe\x40\xc1\x65\xc2\x2b\xe7\x2f\x40\x8e\xf7\x8b\x0f\x88\xf4\x76\xc9\x8c\x7f\x5e\xf6\x6d\xf9\xa1\x69\x96\x23\xfb\x82\xcf\x7e\x86\x13\xe0\x4b\xba\x71\xd0\xc4\x1c\xcc\xfe\xdc\xfd\xea\xc8\xb0\x17\x39\x06\xb5\x7f\xc3\x7e\xc1\x3e\xfd\xa7\xda\x9e\xfb\x27\x7f\xef\x84\x79\x43\xc8\x67\x5d\xdc\xbf\x3f\x46\xa0\xf6\x1a\x98\xd1\xdc\x0d\x72\x48\xbf\x02\xf6\x36\x5e\xcf\x08\x52\xf3\xcb\xd8\xeb\xbd\xa7\xee\xd7\x98\x93\xe1\x6b\xe1\xc0\xc9\x19\xac\x24\x9d\xa5\xe4\xbe\x8a\xa6\xeb\x60\x39\xe0\x71\x7b\x75\x2d\xbf\x5c\xdf\x64\x67\x25\x90\xbc\xfb\xb8\x34\x91\xcb\xbf\x6c\x82\x09\xc2\xe8\x0a\x4f\x6c\xb4\x0a\xac\x50\xcf\xc8\x91\xf3\xaf\xd4\x78\x38\x7c\xbf\x04\x9f\x1b\x8c\x9c\x7d\x79\x27\x2c\xe8\xb2\x92\x67\x4b\xa0\x01\xb3\x82\x06\x47\x79\x35\x58\x52\xc0\x0a\xe3\xaa\xb8\x92\xba\x76\x49\x56\x0b\xa7\x85\x08\x15\xf7\x9a\x2f\xea\x9b\x2b\x50\x5d\xc6\xc2\x73\x4e\x95\x19\x97\x91\x7c\x52\x66\x0e\xe5\xa8\xe5\xed\xa3\x06\x8f\x49\xc9\x91\x93\xab\x15\x42\x70\xbf\x6c\x9d\x81\x0e\xee\x2f\xac\x30\x85\xc3\x0e\xd4\xb2\x03\x9d\xea\x40\xa7\x3b\x50\xa3\x1e\xbe\x32\x5e\xb4\xbb\x53\xfb\x57\x3a\x33\xc2\x4d\xd3\xa3\x07\xf3\xe7\x5e\x51\xd4\x27\xba\x5e\x83\xe2\xec\xe8\x64\xe4\x96\x79\xb1\xc4\x19\x1e\x58\xb2\xaa\x4a\xc1\x57\x22\x30\x26\x80\x36\x5c\xf2\xaf\xa1\x7e\xb6\x47\xd4\x6f\xaf\x6f\x4a\x64\x1b\x51\xae\x14\xc2\x77\xa5\x88\xf9\xa8\x52\x2c\x78\xcc\x1b\x67\xce\x86\x44\xcb\x60\xc6\x64\x58\x33\x37\xc6\x99\xa7\x19\x9e\x9e\x9b\x49\x75\xbb\x13\xc2\xb5\x74\xbe\x80\x9c\x9a\xe9\x05\x65\x1f\xd2\x15\x5e\xcb\xa7\x64\x50\x17\xdb\xaf\x2c\x8b\xa9\x0a\xf4\xac\xbd\x5e\xeb\xbe\x4a\xd7\xb8\x7f\xfa\xcf\x54\x90\x1b\xed\xde\x10\xa6\x70\xa6\x4e\xd3\x32\x3a\x08\x57\xf1\x32\x89\x9a\xb5\xb4\x41\xc7\x1d\x11\x67\xb1\x06\xd8\xa9\xf7\xde\x13\x01\x8c\x0f\xc1\xf6\x51\xd0\x4a\x2c\x49\x43\x4d\x2f\xeb\x0f\xe4\x7b\xf2\xb7\x0d\xe9\xd2\x14\x30\x55\x9f\x66\x19\x6b\x65\x78\x4e\x29\x6c\x0e\xea\x7a\xbd\xb6\x62\xba\xdc\x23\xdd\x23\x4e\x94\x97\xb9\x31\xfc\xe4\xb5\xd1\xc6\x06\x94\xa8\xba\x71\x9b\xeb\x0f\x68\xa9\x71\x5d\x95\xfe\xa1\x8a\x9d\xe2\x1b\x61\x4d\xfd\x3e\x19\x18\xcb\x23\xd8\xe5\x27\x13\xe3\x57\xd9\x4d\x26\xe5\x91\x36\x21\xc0\xff\xe4\xf4\x48\xcc\x8f\xb4\x4a\x48\x59\xa3\x5a\xf3\x07\x97\x65\x8e\xaa\x8a\x21\x14\x53\xa6\x26\x63\x1d\x42\x69\x48\x6f\x20\x9e\xcc\x5f\xa5\xd3\x32\xd0\x43\xa5\xf4\xd4\xf9\x69\x49\x5c\x34\x7e\x5a\xc6\x66\x33\x01\x2c\xe8\xa4\x90\xd6\xc3\xab\x8b\x03\x9e\xf8\xc1\xfd\x7e\xc9\xdc\xbe\x4b\xb5\x8b\xda\x7d\x22\xdd\x8c\x83\x2c\xba\xbe\x2d\x95\xeb\x8f\x72\x44\xef\x94\x27\xba\xd7\xe4\xa0\xa8\x16\xa2\x17\x46\xba\xa2\x7c\xc3\x69\x1f\x7b\x2c\x23\x24\x57\x61\x6a\x07\xc9\x55\x97\x96\x4a\x2b\xcb\x1c\x40\x69\x5d\x39\xcb\xce\xbe\xaa\xa2\xd4\x61\xf9\xaa\x54\xa1\xb4\xaa\xe4\x88\xc9\x2c\x69\x52\x24\xaa\x46\x5e\x44\x59\xbd\xec\xd1\x09\xe6\xf2\x66\xa3\x17\x25\x01\x6b\x80\xa6\x71\x67\x34\xd0\xcf\x3d\x7d\x2c\x99\x36\xb5\xa8\x11\xb3\xb7\x85\x2a\xac\x0e\x3b\x78\x87\x05\x02\xef\xe3\xb1\xef\x4a\x4e\xa6\xe7\xd7\x35\x17\xb4\x5e\xcb\x92\x28\xfd\xd2\x7f\xed\xd7\x70\x74\x62\x60\x31\xf4\x79\x82\x6e\x65\xdb\x3a\x55\x9e\x0f\x51\xa2\xa4\x68\xca\x9a\xd3\xc5\x12\x9c\xf7\x47\x71\x2b\x14\x92\x3f\xcb\xc1\xca\x3b\xa9\x93\xf2\x1b\xfc\x31\xd5\x7e\x8c\xc6\xd1\xd9\x9f\xe2\xee\x13\x15\xab\xcb\xd2\x04\xb9\xa1\xdb\x55\xdd\x11\xe3\x22\x31\x37\x16\xb7\x11\x3c\xed\xc0\xd7\xcb\x3c\xbd\xbd\xe4\xe4\x62\x4e\xac\xb9\x18\x20\x49\xca\xb8\xc9\x51\x3b\x99\xb4\x53\x59\xd4\xfc\x7f\x54\x55\xf6\xde\x94\x1c\x72\x34\xd3\xf2\x92\x2d\x55\x49\x04\xa3\xd9\x7b\x5d\x31\xc3\xe8\xe9\xa3\x55\x2d\xd3\x76\x0b\x9c\x92\x9c\x56\x95\xc0\x58\x2d\xec\x64\x32\xb3\x45\x34\xf7\x31\x3a\xf4\xe4\xe8\xbb\xc6\x4f\xfa\xde\x03\xd5\x97\xb5\x52\xbf\x82\x2d\x7e\x0f\x3b\x80\x85\xd1\xf7\x06\xfc\x5f\x36\x84\xc6\x68\x55\x92\x1b\xc1\x3b\x65\xfb\xcf\x2b\x47\x36\xfd\x65\x74\x80\x6f\x58\xe0\x57\x0e\x64\x44\x47\x62\x0d\x44\xac\x44\xb1\x29\x8a\x79\xb4\xa8\x1b\xbe\x5d\x36\xa9\xc6\xee\xae\x04\x36\x46\x16\xb7\xde\x9a\x72\x1f\xf4\x0b\x77\x1e\xbf\x67\x03\x51\x92\xd3\x49\xd6\xa7\xdc\x36\x47\x41\xc6\x88\xa1\x98\x84\xb8\xbd\x5d\xda\xc5\x8a\xec\x82\x8b\xd7\x7f\x77\x57\xe0\x91\x1e\x4f\x00\x07\x40\x62\x7d\x2c\xfe\x33\x94\xd8\x92\xe8\x4e\x56\xe9\x14\x2c\xbf\x39\x39\x15\xf7\x4e\xe6\x33\x84\x79\x75\x22\x79\x71\x15\xe4\xbc\xe0\x61\x7c\x27\xb7\xe1\x86\x69\xd7\x8c\x5b\x94\xf6\x1a\x60\xbe\x13\xe1\x9f\x43\xef\xe6\x0b\xca\xea\xf5\xfa\xc6\x77\xb7\x15\x25\xda\x6e\x4b\x36\x3d\xef\x36\xef\xba\x15\xa7\x4a\x34\x81\x5e\x56\x33\xe4\x62\x1a\x98\xab\xf4\x77\x8e\x23\x3e\x2a\x93\x1c\xfd\x3a\x56\xbc\x40\xdb\x6d\xfe\x1d\xb0\xc4\x1e\x86\x33\x21\x26\xb9\x93\x6e\xea\xcf\xa5\x97\xc3\xce\xe5\xae\x4b\x02\x71\x1d\x4f\x45\x76\x28\x03\x38\xf1\xbb\x32\xcc\x9c\x27\x12\x77\x1f\xe2\xa2\x6d\x8d\x10\x84\x69\xf5\xb2\x16\x97\xd3\x2b\xaa\x9c\x2d\x71\xab\x24\x88\xba\x9a\x3d\xa8\x1f\xd2\x07\xf5\xf1\x31\x92\x87\xfb\xa2\x5e\xca\x23\x74\x51\x2f\xd1\x6d\x5b\xd5\xa3\x77\x9c\xd4\x1f\x76\xfa\xec\x6b\x27\x13\x2e\x19\x45\x88\xee\xa4\x48\xc7\xa7\xcc\xf0\xa6\x9a\x99\xa0\x1e\xc9\x58\xba\xae\xac\x2b\x7a\xaf\xc5\xab\xea\xe4\xc1\xea\x61\x45\x1f\xac\x4c\x23\xec\xde\x4a\x35\xc3\xef\xad\x96\xe8\x76\x5d\xad\xee\x9d\xe8\xa6\xba\x8a\xdf\x5b\xdf\x6b\xf1\xa6\x62\xf2\x7f\x13\x7d\x71\x41\x79\x27\xd4\xd9\x04\xea\xef\x79\x8b\x6b\xc9\x33\x3d\x6e\x37\x4c\xcc\x3b\x9d\x7a\x47\xff\xdc\xa8\x9c\x79\x8c\x0c\xa0\x91\xbc\xdc\x80\xd3\x12\xd0\x2b\x8e\x00\x4a\x28\x0b\x91\xe6\xd4\x16\x1b\x88\x39\x36\x6c\xba\x12\x0b\xaa\xe0\x17\x78\x51\xa9\x3b\x49\x93\x9f\xfa\x75\x9d\x08\x72\xe0\x52\x60\xff\xda\x6e\xdd\x9b\xd0\xff\x27\x7d\xe4\xda\xf0\x0f\x95\x54\xca\xf0\xeb\xf4\x51\x44\xa4\x50\x9e\x51\x8f\xc9\xcb\x67\x87\xd5\x75\xfd\x28\x13\x66\xe8\x57\x3d\x3d\x87\x6f\xb5\x70\x08\x11\x9b\x72\x6a\x15\xbc\x45\xa7\x51\x8c\xf4\x99\xe9\x37\xad\x03\xc9\x9d\xa8\x60\xb3\x6d\xc9\x1d\xe6\xe0\x17\xc2\x9e\xa5\xe1\xd2\x47\x87\x3b\x2d\xa3\xed\xd6\xff\x29\x9b\xff\x9d\x16\xcc\xc3\xbc\x48\xde\xe8\x02\xed\x53\x07\xfe\x79\xa0\xc9\xd3\x37\x65\x00\x8a\x23\xd0\x48\x6f\x05\x36\x8d\xe9\xd6\xdc\xd2\x90\x70\xff\xb1\x92\x7d\x7e\xa4\xeb\xb5\x01\x7a\x48\x3e\xc0\x6c\xea\xd3\x36\x06\x9b\xbf\xfe\xe1\x38\x03\x9b\x27\x09\xdb\xa4\x65\x99\x55\xd6\xc6\x12\xbf\xed\x27\xb4\xf9\xc2\xa6\xc9\x64\xe2\x3f\x90\xb3\x9d\x4e\x5b\x10\xc2\xab\x1b\x42\x0a\xd6\x54\xdd\x39\xdf\x93\xeb\x75\xbd\x0a\x03\x09\x20\xf4\x41\x9e\xde\xd5\x62\x89\xd2\x2e\x7b\xd3\x05\x85\xfb\x07\xac\x3d\x29\xbd\x3d\x1b\x2e\xd4\x82\x60\xb1\x9c\xae\x5a\xb6\xaa\x05\x60\xf1\x65\xa6\x33\xa9\x33\x68\x2d\x3f\x95\x41\xb7\x6c\x7a\xae\x50\xd0\x9c\xe7\x95\xa0\xb3\x07\xc2\x29\xc6\x84\x51\x33\xb2\x74\xdf\x4c\xa9\x5c\xa2\xd7\xf2\x34\x15\x46\x49\x16\x4d\x6a\xc9\xf0\x89\x9c\xeb\xf3\xc4\xd1\x24\x8e\x12\xb2\xac\x10\xe4\x8e\xdf\x33\xe6\xb8\x15\xe5\xa7\xba\xc3\xbc\x67\x29\x95\x46\x4e\xc7\x6c\x02\x9d\x94\x3c\xd3\x86\xda\x54\x04\x93\x63\x81\xbc\xb4\xa5\x3e\x39\x15\x28\xeb\xa4\x53\x72\x04\x89\xf2\x7a\x3f\x4a\xc6\x5f\xb2\xe9\x55\x7d\x9d\xf3\xdd\x21\x51\xc8\xf3\x0e\xe9\xb1\x25\xe8\x1e\x3e\x07\x15\xd0\xbc\x06\xd8\x90\x9f\x85\x18\x24\xbe\x32\x0a\x8b\xaa\x78\x72\x36\x1f\xdb\x83\xf2\x7f\xc9\xb2\xe3\x34\xa2\x05\x70\xf0\xe4\x51\xe3\x31\x0f\x26\x4a\x62\xaa\x10\x46\x15\x82\x6f\x81\xb0\xe8\xc5\xf4\x20\x06\xfc\x33\xd3\xa6\x2e\x62\x9f\x5a\x7f\xf6\x4c\x16\x5e\x06\x38\x34\x41\xbe\xd8\xc4\x4e\x14\x8f\x00\x38\x64\x6f\x08\xc9\xd8\x24\x97\xe2\xd7\x29\x57\xc7\x30\xa1\x98\x84\x88\x70\x52\x1c\x57\xd7\x79\xc9\x11\xe6\x3b\x08\x61\xfc\x05\x3a\x41\x2b\x11\x9e\xf4\x66\xd3\x0d\x83\x8f\xff\xc7\x44\x42\x78\xe1\x4d\x7a\x04\x76\xf9\xdb\xa9\x8d\x18\x94\x12\x4d\x45\x55\x3c\x76\xeb\xac\x01\x96\x95\x69\xa7\xe7\x57\x86\x9a\x15\x7f\xd5\x4e\xcf\x39\x11\x35\x65\xa4\x79\x99\xbc\x49\x7d\x99\xdb\xe9\xf9\x27\xba\x5e\x2b\xe6\xc5\x7d\x70\x74\x02\xc5\xf3\x2c\x8e\xfe\xf2\x5f\x51\x1b\x5f\x3d\xc7\x6f\x5e\xe7\xe0\x2b\x9f\x2f\x93\x83\x8a\xd8\x6c\xb1\x02\x42\x09\x33\x46\xf7\x14\xe9\xdb\x3f\x47\x72\x66\xfa\xf4\x0b\x2f\x8d\xa2\x56\x37\x5b\xc2\x33\x9c\x9e\x7b\x62\x54\x1e\x65\x52\xb6\x52\xd6\xce\x03\xed\x30\xb6\x9a\x70\x5c\x39\x6f\x65\x11\x0e\xc4\x15\xc9\x04\x12\xfa\x5d\x8f\x7b\x0e\x3c\x11\xe4\x8c\x57\xe8\x70\x77\xf3\xd1\x74\xfe\x4d\x59\x77\x32\x70\x74\x72\xb8\x19\xa7\x61\x49\x9f\x93\x2b\x19\x9e\x61\xe3\xfa\x16\x95\xd0\x71\xed\x87\xf9\x8f\x86\x07\x0d\x8a\x86\xb4\xd7\x7d\x3d\x9a\xd6\x9e\xf2\x99\x39\xa6\x06\x94\x38\xa6\x0d\xfb\x24\x3d\xa6\xa2\x92\x83\xb4\xd3\xe3\x50\x62\x2b\xeb\x6b\x04\x0b\x14\x38\x93\x45\x1c\x7b\xb2\xe2\x77\x77\x64\x1b\xf2\x84\x8b\x56\x43\xb3\xe1\xab\x4b\xd2\x6c\xd6\x24\x3a\x67\xcb\xcc\x7a\xf5\x14\xed\x77\xa7\x36\x3a\xbd\x60\xfe\xf5\xa3\xbe\xe3\x7d\xf0\xed\x76\xbb\x58\x6a\x20\x5c\x30\x3d\x29\x53\x1b\x7c\x91\xb9\x48\x90\x51\x29\x64\x2f\x99\x99\x0f\xa5\xa2\xcd\xc9\xef\xea\xd5\x87\x77\x1b\xce\x08\x1f\xf1\xe9\x5f\x5b\x1a\xf2\x78\x76\x02\xca\x42\x52\x57\x70\x42\x15\x98\x61\x36\x2c\x9c\xa3\x9d\x94\x12\x82\x13\x77\xa8\x78\x15\xea\x51\x8f\x4e\x06\x87\x1a\x84\xca\xf4\xcc\xde\x68\x78\xe6\x8d\x72\xa2\xe7\x4e\x1e\xf5\x4a\x4f\xd5\x37\x56\x47\xb8\x10\x4b\xcc\xe5\x7f\xc7\x27\x3a\x12\xc2\x1d\x6e\xa9\x7c\x54\x2e\xd8\x12\xf8\xb4\xdc\xcd\x71\xa0\x47\x92\x27\xfb\xb0\xd1\xd0\xe1\x37\x99\x38\x5d\x34\xf7\x84\xa3\xf0\x78\x33\xe2\x9e\xdc\xa8\xfc\x37\xf7\x4e\xf4\x19\x9d\x3f\x26\x39\x3e\x41\x77\xf5\xa5\x1a\x3e\x12\x7f\x9e\xa8\x8c\x7c\xef\x67\xd9\x97\x46\x06\xfd\x82\x58\x11\x3f\xd9\x71\x6e\x41\xfb\x1d\x6d\x44\x8e\x11\x48\xca\x07\x07\xfd\x28\x17\xa0\x13\xaf\xe1\x83\x7b\x27\x4a\x91\x3a\x78\xd7\x9d\x20\xff\x28\x70\x87\x95\x3c\xbf\xbc\x30\xc7\xac\x5a\xc0\xb4\x41\x27\x13\x9e\x88\xec\x54\x29\x06\xc4\x41\x3e\x3e\xfd\x2e\x32\x83\xdc\x4f\xcc\x42\x44\xaa\xc5\x1e\xa6\x6c\xef\x8e\xca\xdc\x2e\x93\x49\x79\x98\x53\x65\xf6\x9e\x39\xf0\xce\xf4\xee\xdf\xbb\x7e\x9a\xbb\x6e\x07\x76\xd8\xde\x8d\x75\x78\x84\x56\xb2\x40\x6e\x39\x82\x7d\x98\xf6\xd0\xac\x5f\xf2\xc2\x3a\xf8\x85\x17\xc6\xbe\x99\xa8\x12\x05\x9f\x85\x3b\xf5\x59\x3f\x12\x12\xb3\x1e\x9d\x28\x19\x88\x09\x59\xe5\xcf\x42\x2c\xe3\xa9\x3c\xd0\xcb\xc2\x45\x39\xe4\x0c\xa2\x3e\xee\xa0\x97\x82\x21\xe1\x7f\x43\x8f\x8f\xd4\xf5\xe8\x0b\xb1\x34\xe4\xa5\x97\xf7\x76\x03\x34\x50\xcc\x33\x1e\xba\x10\xa0\x0c\x0e\x09\xc8\x53\x7b\x00\xf0\x8f\x51\x7b\x3c\xe4\xa0\xfa\x10\xe0\x03\xa7\xfc\xeb\x5c\xf6\x44\x82\x46\xf9\x8c\xf3\xdc\xc6\x52\xf9\x70\x9c\x5a\xf5\x35\x10\x03\x53\x32\xe7\x94\x47\xab\x19\x6e\x5d\x4f\xe8\xc3\x16\x30\x5f\xb5\x75\x9d\x00\xd6\xeb\xbe\x0a\x4b\x93\xcd\xa1\x3f\x6a\xa7\x56\x00\x49\x22\xf4\x04\x79\xae\x34\x18\x03\xc1\x7d\x86\x93\x89\xec\xfa\x68\x32\x51\x1e\x18\xfa\xfa\x39\x40\x55\x2b\x79\x8d\x81\x0b\x9f\x0d\x46\xa4\x95\x2c\x72\xdd\xf4\x9f\xf5\x86\xa6\xc9\xc3\x24\x73\x93\xf4\x78\x4b\x8a\x56\x0d\x2e\xe5\xfa\x88\x58\x5d\x6a\x27\xb7\x9e\xc8\xc7\x60\x7f\x5a\xef\x33\x63\x45\x4f\xbc\x69\x4e\x7d\x26\xd6\x70\xa9\xcf\x64\x33\x72\x6f\x81\xa8\x3f\xf7\x8a\x5c\x50\xd6\xd8\x17\xb9\xce\x25\x4e\x92\x29\xa8\x73\x54\x9d\xde\xc6\x19\x77\x73\x6d\x94\xa3\xec\x43\x3e\x86\x1e\x27\x98\xcf\xbe\x9a\x38\x4a\x6d\xaa\x84\x63\x70\x5d\xcd\x38\x00\x89\x94\x8f\x4f\xb8\x78\xb1\xcf\x1f\xad\x34\xc8\x4f\xe1\xc4\x68\x67\xc9\x9e\x59\x31\x4e\x8c\x01\xef\xe0\xad\x95\xe7\x35\x59\xa2\x48\x57\xcf\x2b\xc3\x8b\xca\x49\xd2\xde\x9e\x76\x19\x4a\xb3\x74\x01\xd9\x94\x04\xf5\x2a\xa1\x5b\x52\x0a\x3f\x43\x00\x09\xde\x60\x77\xa6\x04\x8e\xae\x1a\xc9\x20\xeb\x8a\x58\x02\x54\x54\xe0\xcb\xa0\x04\xec\xd3\x32\xc8\x09\x94\x53\xa9\x64\xeb\xcb\x58\xe8\x19\x72\xf7\x7d\xe0\x84\x3a\x67\xb9\x5b\x27\x90\x9c\x13\x76\xf8\xe0\x8b\x26\xab\xdb\x89\xd6\x39\xc2\xea\xd4\x24\x26\xcf\xe7\xef\x35\x3c\xcf\xf3\x86\x30\x41\x2f\xa8\xc9\xe9\x80\xe5\x09\x7f\x6a\xce\x92\xec\xa1\x28\xaf\x5a\x28\xb0\x8f\x1a\x59\xd4\xc5\x8c\x3f\x8f\x5e\x11\xe7\x20\x01\x0e\xef\xe9\x37\x1e\x9b\xe2\x9b\x89\x3d\x86\x17\x0c\x53\xfb\xf4\x67\x3e\xe7\x1d\x2c\xd5\x88\x01\xac\x5b\xfc\x79\xa2\xf7\xb5\x4a\x1a\xeb\xee\x51\x1d\xcd\x76\x98\x4b\xea\xd4\x5e\x49\x61\xf2\x94\xc1\x6c\x3e\xce\x60\x6c\x1d\x72\xfa\x5d\x89\x93\xba\x3c\xb1\x39\x62\x89\x9a\xcd\x8a\x94\x59\x35\x28\xd9\x6e\xc5\x54\xe7\x3e\x91\x1c\xda\xd1\x89\x55\xc8\x13\x4d\xf6\xc6\x5f\x5d\xf2\xcc\x59\x19\x65\x4f\xfd\x47\x71\x03\x08\x1f\xb9\x4c\x47\x76\x41\x72\x0e\x57\x47\x89\x88\x70\x94\x10\x48\x30\xee\x9c\xef\xa9\x8d\x58\x7e\x45\x3e\xe9\xbf\xfb\x27\x75\x94\x90\x09\xb1\x8a\xe2\x70\xd8\x39\x8d\xa2\xce\x49\xe3\xf6\x56\x80\x8e\x39\x57\x62\x84\x8d\x2a\xcc\xf9\x81\x05\x06\x0b\x84\xb9\xb2\x98\x65\x6e\x22\x79\x4b\xcc\x35\xd9\x88\x1a\x07\xbe\x1d\x26\x8e\xd1\x7b\xe4\x32\xd9\x90\x1d\xc2\xc6\x84\xd0\xc7\xc8\xf7\x09\x21\xc9\x7e\xc8\x5b\x48\xc2\xf3\xd5\x4d\x26\xb8\x87\x89\x5d\xf9\x07\xcf\x3f\xac\x25\xa1\x63\x56\x70\xeb\x30\x13\x40\x10\x38\x53\x79\x85\x94\x96\xd9\x41\xb8\x1f\xcd\xa4\xb4\x9f\x46\x3d\xe4\x7d\x7b\x95\xa7\xa4\xb6\xa3\xf4\x7a\x38\x2b\x3f\x48\x97\xfb\x66\xc8\xf5\xb3\xcf\xb3\x59\xf9\x85\x82\x8b\x51\xfd\x8b\xb5\x3d\x76\xbf\x2c\xdb\xa3\x41\x02\x0a\xf4\xde\xda\x56\x18\x31\xdd\x03\x66\xc5\x7f\x19\x07\xbf\xba\x71\x10\xf8\x98\xbe\x40\x68\x62\xc1\x49\x62\x2c\x16\x73\x0a\xa7\xab\x6a\xdd\x98\x7a\x03\x8d\xd3\x6f\x0e\x09\xe1\xfe\x49\x5e\xde\xe0\x88\x17\x0d\x7b\x2f\x88\x83\x3f\xfe\x3e\x84\x88\xac\x2d\x2d\x98\x82\x21\x28\x84\xf0\xb3\xe1\x10\xdb\xbc\x44\x7e\xc8\x20\xcc\x15\x96\x95\x97\xe3\x50\x47\xff\x59\x76\xd3\xe6\xe4\x64\xb2\x1f\xfa\xe5\xee\x46\xcf\xbd\x26\xcf\xaf\x3e\xf3\xb1\xf4\xff\xe5\x54\x69\xa9\xee\xee\xe6\xd4\x3b\x1b\x53\xef\x6c\x4b\xdd\xb3\x0b\xb3\x39\x56\xf2\xfa\xe6\xaf\xab\xf9\xcf\x2e\x82\x76\xaa\xcb\xbc\xf1\x25\x8e\x1c\xa1\x7a\x5f\xf6\xdf\x3e\x43\x23\x3e\x60\xc8\x99\xb8\xf6\x03\x43\xe1\x13\xd5\x72\x6f\x1f\x0f\xb5\x33\xec\x3b\x91\x73\xaf\x5c\xc8\xf0\x51\x66\x8a\xcd\x1e\xcb\x7d\x69\x38\xe6\x78\xff\x0d\x4c\x78\x4e\x46\xe8\x91\x24\x87\xd7\x65\x20\xea\xd8\x9b\xd6\xc3\xad\xee\x83\xe0\x31\x5f\xf9\x8e\xcb\xcf\xcc\x20\xd0\x4d\x66\x93\x1c\x46\xb1\x9d\x71\x00\x4f\x23\x4f\x1d\x28\xc5\x7b\x3f\x8a\x14\x61\x66\x1e\x99\xa0\x51\x34\x72\xfa\x8e\x60\xa0\xa7\x22\xf2\xf5\x9c\x5b\x4f\x98\xac\x6e\x88\x25\xaa\xff\x83\x8c\x56\x7d\x26\xab\x43\x36\x76\x86\xb0\xee\x6e\xe9\xba\xd3\x94\xff\x43\xac\x50\x77\x1f\xf5\xe1\x07\x7b\xb6\x50\xe4\xb2\x10\x48\xcc\x81\x4e\xcf\x57\x3f\xe4\x7a\x39\x1a\xa0\x8f\x0d\x00\x2c\x90\x53\xe2\x07\x2e\xcc\x95\x08\xdd\xab\xfc\x8b\x47\xd3\xa3\xff\xbb\x9b\xe7\xc1\x30\xe7\x31\x70\x1d\xfd\x64\x86\x61\xf6\x93\xdc\x0e\xbe\x82\xd3\xc1\x4f\xf3\x0e\xc8\xde\xe0\xe9\x1d\xe6\x6b\xbc\xfb\xec\x24\x39\xea\x31\xca\xf8\xc4\x4c\x02\x4a\x79\x5f\x04\xf7\xd5\x6c\x52\x10\xbb\xac\x3b\xd5\xdc\x69\x10\x16\xe3\x7c\xcd\x7d\x25\x14\x64\x77\xfa\xf6\x26\x3a\xee\x30\xb1\x9a\x9c\x9c\x96\x1b\xc8\xf4\xab\x58\x5c\x2c\x49\x7f\x6d\x9b\x8b\x9c\x88\x8c\x28\xf7\xa5\x26\x91\xdc\x0a\x9d\xf6\x73\x1a\xf1\xa6\xbe\xab\x21\xe5\xce\xb6\x94\x21\x53\xca\xba\xd7\x94\xb2\x36\xa6\x94\x81\x89\xcc\x1c\x51\x5f\x60\x7a\x71\xf1\xd3\x36\xb8\xdc\x65\xf6\xea\x3b\x5b\x69\xb5\x21\x03\x3c\xc6\xd0\xf9\x4a\x63\x5b\x4f\x08\xed\x60\x03\x3a\xef\xe8\x3b\xbc\xb2\x2a\xe1\x73\xab\xaf\x75\x3a\x61\x7c\x80\x43\xf1\x4f\x36\xce\xf4\xdb\x66\x7a\x44\x40\x63\xa3\xe9\xd5\x02\x80\x75\xa6\xf6\xec\x16\x5f\x66\x79\xc8\x5e\x81\x26\x44\xd6\x4f\x58\x6b\x0f\x2b\x94\x53\x0b\xc3\xcd\x68\x18\xb6\x91\xdb\xce\x64\x6a\xd3\xb3\x97\x70\x2d\x01\xd2\x81\x4f\x33\x38\x73\x54\x25\x51\x2e\xfb\x28\xdb\x85\xca\xae\x23\xfd\x74\x76\x7c\x80\x71\xf0\x4f\xad\x75\x5e\xfd\x62\xb5\xce\x17\xbd\x23\xcf\x19\x58\x8d\x5e\xc7\xe8\x90\xff\x4e\x9a\xd0\xdf\x3f\x97\x01\x32\x83\x03\x7f\x59\x77\x19\xd8\xa4\xa3\xa3\xc1\xca\x17\x64\x99\x60\xa0\x3d\xad\x57\x97\xfd\x0c\x43\xbe\x1e\x93\x86\xf4\x03\xb9\x91\xdc\x5b\x26\x79\x12\xba\x05\xe1\x04\xc0\x5e\x23\xb8\x86\xf7\x44\xdc\xb5\x3d\x79\x3d\x2e\xc8\xd2\x60\x1b\xd1\x78\x6f\x1c\xb1\x08\x9f\x8e\x08\x93\x1b\x71\x38\x99\xa5\xfc\x96\xea\xe8\x5e\x9d\xe3\x91\x9b\x73\x31\xf8\xf0\x4d\x7d\x23\xb7\x56\xa7\xab\x76\xb1\x60\x7c\x4a\x1b\x79\x4c\xaa\x1e\x26\x2e\x65\xfe\x9d\x8b\xa9\x42\x6f\x48\x14\xee\x4e\x70\x8c\x32\x22\x96\xc2\xa6\xd6\xb4\xb9\x0f\xd1\x4e\xf1\xcb\xb4\x22\x53\x5f\x3b\x05\x16\x3e\x20\x6d\x86\x10\xa6\xe0\xb4\xab\x72\x1a\x23\x1c\xa0\xaa\x28\x48\x15\x46\x3e\x8d\xa9\x5c\x23\x82\x39\x16\x68\x2e\x7f\x77\xee\xf7\xae\xe4\x98\x62\x3d\x17\x08\xb7\x93\x89\xf6\xb2\x6a\xf1\xd1\x0c\x79\x17\x1b\xc4\x47\xea\x03\x5d\x19\x13\x0f\xc7\x75\xb0\x68\x0e\xf8\xf2\x97\x78\x7a\xe0\xeb\x81\x93\xe3\x27\xe5\xf3\xba\xd5\xf8\x89\xe7\xe7\x2e\xb7\x98\x2f\xcc\x5a\xa6\x62\xef\xd1\x13\x7f\xf0\xbc\x19\x2a\xa6\xc9\xec\xd0\x5a\x75\xf1\xe1\x3a\xe3\xd3\x93\x38\xc1\xc3\xb8\xcd\xb8\x41\xea\xb3\xb5\x91\xf7\x68\x63\xdc\xf2\xfc\x94\xf4\x95\x88\x1e\x98\xd3\x18\xf2\x67\xc3\x2e\x83\xbf\xb4\x02\xdf\x6c\xf3\xca\xcb\xab\xaa\xfb\xb5\x02\xe1\xd8\x4b\x22\x57\x91\x69\xf2\xac\xcc\x9e\xdd\xb2\xbf\xb1\xa3\x1f\x19\x53\xc3\x42\xba\xe1\xa0\x80\xb5\x74\xcf\x17\x64\x39\x72\xf6\x37\x2f\x6d\x58\x59\xc0\x34\x8d\x7f\x6d\x82\x76\x29\xeb\xae\xc9\x4a\x18\x0c\x18\x39\x6b\xe8\xb8\xf8\xf5\xf8\xb2\xee\xc6\xac\x1d\xdb\x2a\xc7\xf2\xa0\x68\xe4\x77\x44\xbe\x56\x64\xdf\x4c\x8b\x18\x2f\xda\x8d\x36\xdd\xe0\xaa\xc5\xba\xeb\xe8\x7b\x56\xde\xee\x70\x32\x9a\x28\x33\x45\x32\x81\xfe\x66\xb0\x59\x2a\xb2\x94\x51\x05\x17\x50\x7e\x3d\x00\xa9\xd3\x83\x1b\xb1\x8e\xa6\xfa\xaa\x80\x33\x83\x2c\xa8\xc9\x4a\x9c\x54\xb0\xa0\x4b\x03\xab\xb0\x73\x31\xcb\xfe\x10\xec\xb6\xc8\x31\xd9\xb2\x69\x29\x1e\xd2\x06\x53\x2f\x3d\xb0\x3c\x04\xdc\x5a\xfb\x1b\x2b\x5c\x6d\xff\x8d\x06\xa4\x38\xea\xf9\x36\xd8\x6f\x3d\xb5\xc4\x7c\x00\xd4\x57\xb2\x2a\xb3\xc9\xb2\x08\xae\x08\x6d\xb7\x5e\x7e\x4c\x00\x92\x48\x30\x85\x20\x3b\xea\x57\x21\x4c\xdb\xd2\xd8\x6f\xa4\x97\x4a\xf5\xdd\xcd\x70\x5d\xb5\x7d\xd0\x87\x5d\x95\x37\x99\xdb\xc8\x72\xb8\x54\xbb\xc9\xe4\x48\xf9\xff\x40\x22\xfe\x12\x9d\xf2\x53\xc7\x54\x74\x90\xf1\x1c\xcd\x3b\x4d\x8f\x67\xac\xbe\xee\x2e\x5b\x61\x94\x6a\x98\x9f\x66\x57\xaf\xa2\xf3\x3d\xeb\x51\x51\x4c\x43\xe2\xd2\xa7\xe3\x30\x69\x75\x03\xb4\xe5\x8e\xd7\x90\x26\xdc\xf3\x3c\x5d\xe5\x4e\xf1\x6c\x0d\x5f\x85\xa6\x0c\x6b\xf2\x73\x53\x94\x6e\xe7\xeb\xd2\x93\xd6\xa0\x87\x24\xb4\x58\xe2\x2e\xeb\xb2\x4e\x7c\xba\xda\x6e\x4b\x6e\x53\xac\x4d\x69\x83\xe6\xf6\x47\x4c\x5b\x08\xed\x90\x23\xad\x60\xf9\x2c\x61\xf5\x2c\x49\x4a\x56\x41\x5e\xd6\x5c\xe0\x81\x9a\xba\x28\x09\xac\x8a\x31\x88\xeb\xc9\xe7\x08\xc9\x56\x95\xa4\x6b\x8f\x91\x11\x73\xf9\x98\x42\x3c\x0b\xa8\x4b\x31\xe7\xb6\x38\xb7\x8e\x6d\x5e\x2a\x72\xfb\xd6\x28\x31\x76\xf8\xf2\x6e\x6c\x6a\x44\xbc\x3e\xea\x8f\xc5\x72\xf3\x92\xd6\x0e\xa8\x2b\x7c\x16\xcc\xcb\x32\x4f\x22\x58\x1f\x59\xf9\x28\xf3\x49\xfe\xfa\xeb\xcb\xd0\xeb\x80\xbd\xc8\x82\x2d\x03\x68\x37\x48\x5f\x6b\x6f\x31\x33\x08\xb1\x0f\x87\xed\x3c\x03\xc4\xf6\x78\x5d\x77\x5d\x06\x89\xad\xf1\x18\x57\xa3\x65\xf4\x39\x83\xf7\x44\xbc\xfe\xc4\x08\x3f\xf5\xf0\x38\xe0\x81\xc2\xeb\x5f\xb5\x0c\x7c\xfd\xb8\xd6\xba\xd8\xdf\xe0\xa6\x23\xa6\xeb\xb6\xfd\xb0\xb9\x7e\x56\xaf\x44\xcb\xc1\x51\x73\x7a\x1e\x3d\x2a\xe3\x47\x49\xe4\x8b\xee\x50\x49\x2a\x81\xc2\x0a\x35\x20\x0f\xf1\x10\xb4\x76\x58\x4c\x39\x79\x4f\xbb\x08\x74\x59\xaf\xae\x7e\xc7\x6f\xb6\x5b\x48\x5d\x61\x7f\x38\x9d\x8a\xf9\x3a\x57\xb9\x14\x02\x64\x4d\x57\xd9\x4d\x18\x24\xf3\x8b\x52\xf3\xed\x46\x57\xbe\x8f\x54\xe0\x06\x75\x45\x76\x70\x76\xdd\x0c\xb9\xc2\x19\xa9\xe9\x7f\xa6\x1b\x9c\x73\x81\x53\x22\x7e\xc5\x02\x71\xfc\x9c\x36\x15\x93\x4c\x17\xff\x97\x67\xdb\x57\xf7\x6c\xa3\x4d\x86\xef\xd7\x07\x45\x93\x1a\xca\x04\x01\x58\x94\xe4\x93\x82\x82\x9e\x59\xdc\x14\xe1\x37\x11\xb0\x6d\xce\xb0\x93\xc3\x2b\xec\x57\xbe\x9a\x20\x17\x1b\x20\x16\xb6\x07\x33\xdb\x37\xa2\xf0\xe4\xf3\xac\x5d\xe9\xcb\x44\xbf\x1b\xb4\x12\xa2\xfc\x86\x8d\x38\x13\x95\xae\x00\x9e\x02\x11\x98\x69\x4d\x0c\x90\x71\x7d\xde\x6d\x03\x03\x2a\xed\x06\x21\xa7\xa6\x7c\xa9\xb5\xf3\xea\x6f\x48\xd7\x7a\x45\x14\x9b\xf3\x71\xd8\x6b\xd6\x88\x4b\xff\xd3\x0f\x0b\x3a\xcd\xf2\xde\x15\xc7\x0a\xb5\xa7\xe2\x79\x8c\x54\x4c\x75\x76\x1e\x60\x4f\x55\xf8\xa6\x1e\x2b\xa6\xff\x3a\x62\xbe\xfa\x11\x33\x74\x6e\xa8\x3d\x93\x5d\x47\x65\xc3\x2c\xe4\xbf\xc5\x5c\x0a\x69\xbb\x81\x83\xcb\xdb\x31\xf9\xca\x86\xe4\x44\x65\x24\x8a\x4e\xbb\x75\x60\x92\x3e\xb4\xbf\x61\x1d\x57\x24\xc4\x26\xde\x5f\x87\xfc\xe2\xe7\x3a\x41\x95\xc2\x35\xe4\xe3\x58\x25\xc5\xc4\x4e\xd4\x6c\x25\xe9\xed\x95\xdc\x77\xe1\x09\x8b\x45\x4f\x57\x07\xcc\x82\x11\x93\x89\x30\xdb\x7b\x4e\x7f\x85\x05\xd4\x21\x1d\x25\xca\xd9\xe7\x06\xce\xef\xac\xdd\x3e\xdb\x09\x3b\x6b\x2e\x79\x84\x8d\x8c\x61\x81\x35\xef\x34\xfc\xd9\x67\x61\x17\xe6\x7c\xdf\xa1\x79\xce\x08\xe9\xdd\x00\x7b\x2e\x8d\x7e\x9f\x89\xfc\x74\x5a\x9f\x8e\x81\x9b\xd6\xf6\x2d\xb8\x5d\xde\xff\x52\x6e\x97\x8c\x00\xfe\xaf\xbb\xe5\x7f\xdc\xdd\x92\x59\xc5\xf8\x66\xe9\x8a\xc3\x8f\xfe\xbe\xea\xe2\xcb\x29\xa7\x4e\xef\xad\xe0\x2a\x8e\x99\xef\x07\x0e\xa5\x4d\x7c\x94\x0e\x5d\x32\xf9\xc6\x7e\xee\x2b\x86\x8c\xcc\x46\xac\x0c\x39\xc3\x09\xdd\xd4\x02\xd2\xc7\x98\x0c\x15\x0a\x77\xc6\xca\x7e\x55\x2f\x5e\x6a\x74\x25\xa5\xe8\xa9\x22\x3b\xd2\x28\x4d\x0a\xef\x2b\xe7\xa2\x0d\x63\xe7\x34\x0b\xb6\x9d\xcc\xef\xd1\x51\x88\x33\x9a\xab\x18\xac\xb4\x19\x45\x23\x44\xf0\x1f\x4e\x0b\xe4\x23\xe1\x37\x99\x69\x51\x39\x77\xbc\x7b\xef\x4e\xc2\xd0\xb9\x77\x5f\xf6\x77\xc6\xcc\xcc\x21\x97\x68\x5f\xed\x7d\x17\xdb\x60\x83\x5a\xba\xc9\x95\x71\x77\xef\xde\x2b\x71\xdf\x5e\xf0\x50\x74\xd5\x0d\x87\xdf\xfd\x22\xed\xd6\xe7\x79\xab\xdc\xa7\xfc\xe3\xa7\xd9\xc7\x4e\x6d\xf8\x99\x78\x73\xff\x94\x2c\xc8\x72\xbb\x2d\xe1\xff\x4a\xe1\x4e\x89\xb2\x98\x06\x69\x0c\xce\x88\xd6\xa6\xfb\xfb\x3a\x8e\xce\x29\x11\x06\xe0\x64\xc5\x07\x76\x67\x37\x6c\x55\x2a\x58\xa6\x61\xcf\x70\xf8\xee\x40\x37\x5d\xc9\x67\xc9\x85\x7c\x4d\xaa\x13\xfc\x48\xfe\xf3\x61\x80\x20\xd4\x3c\x1b\x0b\xb5\x8a\x84\x5a\x28\x72\xff\xed\x0f\xcf\x9f\x9c\xff\xfe\xe9\x9f\x96\xd5\x6b\x72\x7c\x7c\x5c\x98\x91\xdd\x03\xcd\x56\xe1\xa5\x71\xab\x58\x62\x9a\x1e\xf6\x50\x3f\x57\x8c\x85\xff\x24\x00\x13\x38\x31\x00\x03\xc0\x29\xd8\xdf\x06\xf9\xce\xcb\xc1\xf7\xb2\x66\xf5\x7b\xc2\x9f\xad\xe5\x05\x60\xcb\xc9\xca\xdc\xb4\x03\xa0\x82\x79\x65\xc0\x55\x1a\xdd\x9c\xd7\x07\x4e\x3a\xc7\x73\x63\x9b\x28\xe6\xfc\x5c\x1e\xf5\x15\xb7\x68\x0a\x56\xdf\xec\xf7\xff\xbc\x91\x5c\x12\x27\xcd\x5b\x4e\xdf\xbf\x27\x3c\x7c\xc9\xbd\xac\x81\xe1\x3c\x68\xd6\xaa\x4b\x67\xc7\xb2\x5d\x51\x4d\xbe\x1f\x83\xff\x26\x9b\x24\x36\xf0\xb0\xb8\xe8\x9e\x37\xd5\x2c\x67\xfd\xa7\xdd\x77\xb4\x69\x08\x93\x34\xe4\x67\x38\x1c\x38\x7a\xa3\x19\xd6\x20\x03\x97\x75\x77\x16\xcd\x70\x89\x2c\x18\x81\x5d\xe2\xed\xb6\xe0\x6d\x2b\x74\xc2\xc5\x66\xda\xd5\x1f\x49\x63\xf3\x2b\x85\x78\xe7\xf2\x5f\x49\x54\xb6\x16\x0b\xab\x10\x8e\x20\x4a\x81\x15\x76\x38\xc4\x7e\x53\x65\xe3\x0a\xb4\x8b\xe5\x81\x55\xe8\xd2\xb9\x4a\x72\xb7\x6d\x6f\x1d\xa4\x49\x4c\xac\x4f\x28\x17\x37\x79\x1f\x84\xde\xca\xd2\xcf\xe2\x9e\x9d\xd5\x1f\x0f\x1f\x9d\x2a\x1c\x57\xa1\x0d\x85\x07\xd6\xa1\x4b\xc7\x95\xbc\x22\x9f\x0e\xac\xe0\x15\xf9\x14\x7f\xfc\xc7\x7a\xdd\xaf\xef\x8d\x3e\x87\xb2\x51\x32\x25\x39\x45\x43\xbc\x76\x50\x85\x2d\x9d\x38\x0b\x66\x62\x1a\x1c\x72\x07\xd7\x8e\x40\x47\x3d\x5b\xc5\x70\xa7\xb7\x09\x70\x46\x1c\x67\x25\x45\x3a\xbf\x47\xf3\xa4\x8f\x58\x9f\x91\x73\xff\xc0\xc4\xda\x9d\xc8\x7b\x43\xe4\x9f\xbb\x20\x83\x88\x0f\x7e\x06\x65\xde\x13\xf1\x8c\x92\x75\xd3\x95\xc8\x78\x35\x86\xc7\x0d\xa6\x81\x8f\x0b\x41\x58\x25\x82\xa5\x99\x7c\xaf\x54\xa5\x75\x55\x60\x16\x35\xc2\x9b\x8a\x2c\x6a\xb0\xc6\x17\xb4\x29\x8e\xaa\xaa\x46\x3a\xeb\x59\xa7\xd3\x9d\x59\x03\x63\x61\x9d\xb6\x43\x8a\x2e\x6b\xbc\x41\x2a\xfd\x8d\x4a\x85\xe6\x5c\x3f\xc2\x2f\x5c\x64\x85\xfc\x02\x73\xdd\x87\x3d\x01\x3b\x7e\xb1\x9e\x28\x5f\xbf\x71\xe3\x23\x10\x36\x6d\x60\xb4\x7e\x9e\x86\x1b\x72\x51\x6f\xd6\x62\x2e\x16\xf5\xb2\xda\xa8\x84\x66\xa6\xf9\xe7\x4d\xb9\x41\x3b\x75\x75\x77\xc6\xaa\x19\xfe\x2c\x05\x6e\xfc\xac\xf0\x08\xcd\x85\x33\x69\xfa\x0e\xf8\xf6\x61\x78\x5f\x7b\x25\xd4\x35\xa8\x0d\x95\x39\x83\xb7\x11\xc3\xcd\xb5\x29\xd4\xbd\xf8\x24\xba\x26\xcb\x28\x56\x41\xb5\x94\x6c\x38\x45\x98\xbd\x0e\x5e\x56\x86\x71\x97\x33\x2e\x2e\xe0\x9b\xd8\x5d\xcc\xbb\xe5\x93\xa8\xda\x94\x2f\xa1\x9d\xf2\x5f\xf7\x79\x08\xd8\x4b\x55\x4f\x86\xa0\xcf\x53\x02\x09\x4a\x53\xab\x79\x70\x57\xb3\x67\x6b\xfa\xfe\x52\x3c\xca\xbe\x06\x7e\x43\x89\x2b\x21\x0a\x94\xc7\x4a\xf6\x8d\x20\xc3\xfa\xcc\x70\x78\x2e\xf9\xbf\x62\x70\x1b\xfd\x33\xe0\x21\x4a\x94\xe3\x8f\xe0\xd1\xfe\x9c\xc8\xea\x86\xef\xe9\x6d\x47\x58\x53\x16\x7e\x91\x78\xb5\x24\x63\x90\x11\xec\x55\x7e\x0e\xb9\xd6\x26\x1f\x88\xd6\x7c\x7a\x92\x1a\x30\x64\xa5\x40\x99\xf0\x2b\xc3\x04\x9e\xd5\x5a\x92\xc3\x0c\x13\x84\xd9\x54\xf3\xab\x51\x1f\x44\xcd\x05\x78\x7f\xa7\x0c\x42\x4a\x24\x7a\xb6\x3d\x87\x50\xbb\x09\x4b\x7f\xe6\x71\xe1\x7d\x06\x20\x3e\x91\x1b\x3c\x65\xb4\xbb\x3c\xb8\xd9\x93\x2f\x6c\xf6\x64\x7f\xf6\x63\x3d\x71\xe1\x24\x04\x99\xaa\x30\xf3\x57\x44\x55\x31\x6e\x2f\xf4\xb2\x58\x9d\xb3\x75\x96\x82\xf5\x31\xf1\x4a\xbe\xa7\x88\xd0\x24\xa1\xaa\xd0\x24\x81\x6f\xb5\xd0\x3d\x67\x58\x3b\xa3\xcf\x21\x96\x2d\x49\x09\xe7\xa9\x5b\x1a\xda\x3c\x5e\x93\x9a\x29\x5d\xa3\x94\x12\x71\x38\x26\xde\x7e\x52\xc5\x54\x09\x88\x8f\xc3\xe9\x28\x56\x3a\xa8\x1f\x8f\x15\xad\x8f\x2f\xd6\xf5\xfb\xae\x40\xd9\x64\x7a\xe9\xa2\xc9\x96\xf3\xbb\x24\x4e\x18\xd9\x50\x4e\x56\x62\xad\xb6\x1e\x69\xfa\x20\x38\x8d\x9d\x61\xb1\x1c\x45\xe7\xa6\xef\xca\x96\x78\x7a\x81\x87\x05\x51\x1e\x2c\x90\xc5\x29\x00\x5e\xc3\x2c\x9f\x9a\x5d\x01\x29\x86\xfd\xac\xd7\xeb\x83\xbb\x88\x75\x1a\xf3\x47\xe4\xf8\x18\x00\x4e\x75\xc2\x72\xe1\x41\x21\x2b\xa9\x84\x3d\x10\x16\xf7\xf5\x81\xd5\x44\x4c\xbb\x4b\x7a\x21\x4a\x50\xf3\xca\xef\xb8\x0f\x93\xca\xf7\xcc\x59\x99\xb0\x27\xc7\xc7\xad\xcf\x9e\x8c\x6a\xdd\xfa\x43\x06\x7e\x3a\xd0\x44\x8d\x70\x6d\x3b\xe5\x34\x13\xd1\x2c\x6c\x98\xa3\xcf\x7e\x24\x3f\x29\xe7\x94\xde\x41\xe7\x7f\x55\xd8\x03\x37\x39\xd4\x4b\x65\x91\xb1\xd1\x81\xb1\xc8\x6a\x05\xd3\x44\x96\x55\xbb\x8b\x6f\xd8\xd4\x03\xd0\x74\xa0\xf7\xfa\x70\x57\xa2\x3b\x2e\xce\x57\x97\x64\xf5\xe1\x59\xcb\x5f\xf3\xeb\xcb\x9a\xc5\xf3\x57\x24\x69\xae\x33\xc2\x5d\x4e\xad\x98\xef\x5c\xe4\x68\x5d\xb3\x15\x59\x67\x2a\x19\x10\xe0\xdd\xe8\xd4\xd7\x3d\xb3\x80\x86\x24\xfd\x6c\x6e\x55\x48\x4c\xbf\xbf\x0f\x0e\x85\xdc\x75\xdd\x82\xc2\x0d\xcf\x65\x99\x42\x26\xc6\x42\xb1\x93\xa1\xbd\xbc\x25\x61\x4a\xd9\xc1\x26\x0e\x9c\xc4\xbd\x5a\x90\xb4\x8b\xe7\x2b\x79\x90\x6e\xae\xfb\x86\x16\x77\x73\xa8\x74\x8f\xc1\xb4\xf7\x54\x29\x21\x1e\x2a\xb0\xd6\xe5\x81\x85\x8f\x8f\x85\x0f\x2c\x6c\xae\x3b\x70\x6f\x9c\x4c\x8e\x72\xa0\x7a\x99\xc7\x2a\x39\xa9\x26\xe4\x93\x9d\xd1\x52\xef\x4a\x82\xd0\x61\x0d\x8f\x58\x38\x83\x1e\x9c\xe6\xee\x4e\xce\xaa\x01\x48\xa6\xe5\x6a\x0f\xf1\x5b\x3d\x14\x61\xd4\xe7\xe6\x43\xb5\xa5\xe9\x7e\x70\x50\xef\xb9\x61\x82\x4e\x7b\x83\x46\x39\x05\xdf\xec\x70\xff\xdf\x81\x79\x18\x72\x05\x76\x11\x68\xbd\xea\x74\xaf\x36\x2f\x5e\x2d\x4e\x45\x0f\x60\x57\xf9\x1c\xf2\xd9\xb9\xa3\xf2\x80\x27\xf4\x23\x49\x64\xbd\x50\x42\x32\x61\x41\xa0\xd9\xf5\xbd\xda\x47\x81\xb7\x6a\xcc\xd5\x99\xbc\x83\x26\x34\xe4\xf7\x20\x89\x7b\x41\x30\xc8\x04\x03\xeb\xa0\x17\x27\x52\xe0\xa0\x98\x6a\x5f\xde\x79\xa4\x81\xee\xa1\x84\x83\x0c\x04\x85\xf3\x20\xff\x35\x25\x5d\x19\x4f\xf9\x7b\xe2\xe4\x99\x3f\x86\x86\x1b\xcf\xfe\x97\x8b\x29\x3a\x8d\x1f\x2c\xc8\x72\xee\x95\x4c\xc5\xa5\xd3\xbe\x17\xf2\x4b\x37\xe4\x24\xb8\x34\x92\xd3\xfb\x03\xd1\xb3\xb1\x01\x23\x66\xf3\x01\xb0\x4c\xb6\x44\xd1\x67\xfd\x0b\x32\x21\x87\xf4\x52\xa0\x5d\x7c\xcd\x26\x6a\x8c\xb8\x97\x61\x1a\x4a\xed\x7f\x3d\x99\x08\xe0\x86\x4f\xfb\xbb\x9f\x00\x05\x95\x02\xcd\xc5\x9e\x0f\x22\x78\x8c\xd8\x31\x66\x7e\xa7\xaf\x7b\x46\xda\xb7\xf7\x1d\x70\x82\x0d\x51\xe8\x0b\xbc\xd0\xa1\xe1\xa4\x19\x8b\x76\xdc\x11\x61\x03\x28\x44\x2b\xff\x14\xf2\xcf\x56\xd2\x13\x19\x6b\xa5\xf3\x58\x11\xb6\x16\x52\x02\x54\xe4\x84\x92\xa5\x78\xc0\x23\xc7\x23\xa1\x53\x3c\x67\x68\xb7\x12\x98\x57\x5f\x89\x7e\xb1\x2f\x29\xd3\xe6\x0c\x7c\x0c\xc0\x82\x56\xe0\x5b\x56\x5f\x91\x39\xc1\xed\xba\x81\x6e\x4a\x01\x89\xd3\xf7\x52\x32\x51\xbf\x39\x56\x9e\x0e\x62\x87\x40\x04\x0a\x58\xb0\x20\xa2\x23\xb7\x57\xe5\x24\x5f\x7b\x01\x0b\x24\xb2\x9d\x52\xf6\xbe\xe7\x60\x84\xde\x7a\x45\x8a\xec\xf7\xea\xe0\xe9\xd1\x0a\xb8\x02\xb1\x4e\x80\xb5\xe2\x59\xbb\x61\x7d\xea\x04\xf3\x3a\xfe\xcc\x1d\x75\x3d\x1f\xba\x02\xf1\xa7\x0a\x7b\x6c\x28\x36\xb0\x6f\x39\xab\x98\x3a\x92\x08\xc4\x0c\x5b\x7a\x59\x77\x83\x8d\x99\xe5\xf1\xe1\x99\xbc\x1a\x27\x93\x34\x12\xd1\x0f\x79\xb4\x82\x56\x24\xd3\x80\x94\x3a\xd8\xb0\x8b\x80\x54\x9c\x70\x1a\x5a\x1a\x85\x41\x12\x64\xbc\xd1\xfc\x29\xe0\xd5\x0c\x53\x17\x03\xc9\x1f\x52\x48\x7b\xaf\x81\x70\xc5\x82\x2f\x71\x5d\x11\x90\xd0\x16\xb3\x65\x55\x55\xf5\xe2\x64\x39\x99\xa8\x7d\x3b\x66\x8b\x76\xb9\xfb\xa2\xb0\x4d\xef\x2a\x14\x69\xaf\x5c\x8c\x58\xbc\x88\x98\x57\x71\x1c\x29\xc3\x02\x39\x75\x78\x60\x5b\x6e\x83\x19\xe0\x08\xd7\xd5\x0c\x02\xb3\xf4\x70\xeb\x87\x1d\xa4\x91\x87\xe1\x6e\xaa\x16\xd4\xe2\x8b\xcd\xb2\x5a\x90\xc5\x66\x89\xf9\x62\xb3\x5c\x1a\xb1\x33\x8a\x93\xd2\x7a\x7d\xc8\xec\xdc\x5e\x5d\x51\xd1\x43\xc9\x9f\x6c\x81\x24\x58\x56\xd5\xf0\x84\x36\x70\xf0\xf6\x7c\xff\x8e\xac\xda\x2b\x02\x25\x8a\x83\x35\x7d\xf2\xd3\xfe\xfb\x34\x93\x0f\x63\xcc\xc0\xae\xae\x66\x7d\xc3\x2e\x6b\xd6\xac\x49\x03\xd9\xe5\x21\xe6\x5f\x20\x2c\x4b\x18\xd0\xab\xe4\x10\x88\x72\x02\x24\x38\x07\x83\xec\x4c\x26\xa7\x80\xfa\x2c\xd7\x4c\x2f\x4c\x9a\x0b\x8e\x19\x6e\x27\x86\x2f\x4b\xf9\xd5\x80\xbb\x4a\xd2\x22\x90\x83\x5a\x09\xbf\x4e\x38\x59\xde\xae\xd7\xef\xea\xd5\x87\xfc\x36\x51\x5b\x24\xe2\x3a\x93\xd3\x40\xb9\x2b\x64\x42\x9d\x13\xce\x32\x3e\xe2\x0c\x5b\xea\xd2\x1a\x6b\x6b\x55\x61\x91\xd6\x86\xd5\xe2\x91\x46\xcf\x4a\xd4\x1a\xd8\x52\xab\xa8\xaf\xda\x8f\xc4\x83\xdf\xcc\x2a\xb2\xb5\x69\xb0\xdc\xdb\x30\xf2\x2f\x5f\x39\x7d\xa4\xf9\xb6\x5e\x7d\x28\x20\xab\x3b\xf1\x12\x15\xed\xe1\x94\xe3\x95\x10\xbc\x66\x1d\x95\xfd\x0a\x98\x3b\xa3\xdd\xce\x5c\xc5\x9f\xb4\x0f\x0a\xfc\x5f\x81\x7b\xca\x62\xb6\x44\x3b\xef\x84\x0d\xcc\x82\xbc\x62\xce\x72\x7e\x5c\xdc\xfb\x4d\x71\x4c\x46\x4d\x7b\xcb\xa6\xe4\x33\x15\x93\x89\xfa\x5f\xcb\x77\xac\x62\xda\xe7\x13\x3e\xde\x7d\xba\xa4\x6b\x52\x1e\x31\xc8\x98\xae\x94\x6d\x1a\x2d\xa4\x35\x7f\xd4\xe6\x8f\xce\xfc\xb1\xa9\xce\xc9\x82\x83\x85\x6f\x83\x68\xb5\x51\x82\x53\x87\xdb\x6a\x33\x25\x92\x0b\x94\x27\xec\x46\x75\x6a\x44\xd6\x1d\xb9\x85\xa8\xd4\xb6\x5a\x2c\xa1\x8d\xb5\x1a\x15\x28\xf8\xd4\x89\xb9\x8e\x4f\xcc\x92\x55\x6c\xb1\x5e\xd4\xcb\x25\x52\x55\x4e\x26\xad\xd2\xda\x31\xc9\x90\x43\x83\x93\x09\x35\x8f\x46\xd0\xa1\xea\x56\x75\x64\x4e\xb1\xea\xc6\xbc\xc5\xd0\x89\x39\xdb\xed\x5c\x63\xc9\xf1\x2c\xcf\x65\xd5\x8a\xce\xb8\x71\x61\x8c\x5c\x81\xbd\x87\x1d\xac\x77\x0f\x53\x62\x30\x73\x2f\xd0\xb8\x61\x2a\x1b\x86\x3e\xeb\x86\x0f\x3c\x7f\xa3\x23\xb4\x07\xf6\x25\x64\x94\xd5\x07\x63\x22\x3f\x18\xff\x37\xb0\xc9\xff\x3d\x2e\x34\x8e\x03\x3f\xae\x8a\x96\x8d\x8b\xe3\x33\xc1\x29\x7b\xaf\x7a\x73\x5c\x8c\x81\x3c\x24\x73\x0b\xd3\x38\x2e\x30\x3f\xae\x88\x4f\x6d\xd3\x71\x81\x5d\xb2\xb2\xc9\xa4\x94\x35\x3d\x06\x67\xe7\xf1\x27\x2a\x2e\xc7\x71\x78\x34\x43\xc7\xc5\xb4\x40\x38\xe6\xea\x79\xb2\x6f\xc0\x68\x08\x58\xd9\xf9\x2b\x3e\x06\x27\xc1\xa2\x32\x19\xaa\xb0\x72\x79\x23\x2a\xb1\xd7\x82\x2d\x3d\xb0\x12\xb6\x1c\x9d\x58\x7d\x6b\xec\xc9\x63\x52\xe6\xea\x6d\xae\xa5\xfe\x4c\xde\x17\x93\x3a\x31\x58\x95\x1e\xbb\x67\x04\xb5\x19\x12\x51\x86\x69\x89\x3e\xb7\x0c\x8c\xa6\x2e\x56\x09\x33\x3b\x9a\xbd\x22\x31\x7b\xc5\x74\xc4\xa7\xc0\x72\x5b\xa0\x91\x29\x50\xcd\x76\xb1\x09\x68\xe8\x10\xcd\x19\x4d\xf7\x2b\x86\xc4\x10\x46\x32\x18\x49\x4c\xbe\x3c\x75\xe2\x98\x71\x67\x9d\x9a\x0c\x90\xcc\x80\xc7\x53\xc8\x84\x66\xec\x21\x91\xce\x6e\xb8\x77\xcc\xf5\x2e\xab\x6a\xfb\x0a\x13\xa4\xcf\xf9\x33\x00\x2c\xfc\x87\xcd\xc1\x19\x29\xe5\x04\x24\xe3\xba\x56\xd6\xaf\x01\x74\xc8\xd1\xbe\xda\xed\x89\xe3\x2b\x3f\x18\x1a\x09\x5f\xef\x76\x45\x44\xfd\xac\xe5\xd6\x27\x94\x21\x65\xd5\xb4\x43\x39\x15\xd3\xf3\x6b\x63\x0d\xf4\x33\xb9\x61\x8e\xe6\x42\x0b\xc9\x6c\x59\xf1\xc4\x9e\x96\xf9\xaa\x9f\x3b\x1d\xe8\x12\x48\xfe\x0c\x42\x23\x46\x3e\x66\x15\x53\x98\x55\x6a\x19\x74\x63\xc6\xfb\x43\x9e\xb8\xdc\xa8\x46\xf4\x3b\xe7\x94\xa2\xde\xe6\xbb\x9b\xd3\x4b\xc9\xc3\xdb\x9c\x07\x1c\x92\x17\xea\xa4\x99\x36\xd7\x2b\xad\x66\x0f\xa8\x73\xe6\xa5\xbe\x30\x45\x97\x23\xee\x01\xca\xb4\x92\xa8\x85\x3a\xd1\x5f\xf3\x57\x1b\xb9\x38\xcf\x99\x68\xc3\x83\xac\x95\x8c\xf0\x80\x66\x67\x5f\xd2\xab\xbe\xe1\xe5\x55\x5a\xee\x76\xba\x53\x27\x05\x90\xd3\x1d\xd4\x4f\x49\xaf\x0e\x6b\x28\xab\x90\x2e\x3a\xf8\xc8\x8b\x0f\xd8\x6e\x0b\x06\x15\x78\xcf\x4e\x7b\xf5\xc4\xcf\x5a\xfe\xbc\x51\x89\xfd\xe2\x57\xa7\xf1\x83\x79\x6c\x7d\x4c\x78\x81\x54\x8e\x83\x26\x79\xe2\x28\xab\x1f\x3d\xa1\x8d\x07\xa4\x9c\x6a\xe5\x9e\xe7\xe2\xb2\x88\x51\x36\x50\x9d\x31\x8a\x36\x15\x01\xc5\xe3\x9d\x45\x13\x40\xac\x89\x5d\xf3\x94\x25\x3e\x15\x7a\x94\xbf\x0d\x89\x7c\x82\x53\x3f\x8b\xa0\xd9\xce\xea\xc9\x24\x03\x7e\x6b\xdc\xe4\x8e\x66\xa1\x73\x1c\x49\x4e\x74\x5f\xca\x48\xa6\x35\x76\xfd\x89\x3d\x94\xef\xda\x9b\x93\xb0\x37\x1a\x87\xb3\x47\x62\x8f\x45\x7e\x3f\xe7\xc7\xcf\x63\x8a\xc0\xa4\xca\xd8\x0c\x22\x41\x2c\x48\x45\x17\x58\x25\xd0\xa8\xcf\x12\xd1\x27\x75\x81\x60\xd5\x6b\xbe\x40\xbd\xdf\x05\xa8\xdc\x5a\x53\x6a\x14\x20\xfd\xfa\x0b\x4c\xee\x6c\xe3\xa8\x1b\x45\xa5\x2f\x49\xd7\xd5\xef\xc9\xdb\xb6\x4f\x75\x1d\xf9\xa5\x79\xd1\x9c\xb8\x00\x2a\xea\x0a\x04\x19\xd5\x33\xba\x00\xc5\x8c\xf8\xed\xc0\xd9\x9a\x69\xe9\xd0\x76\x54\x8d\x89\x1c\x0a\x5c\x8d\xdf\x4e\x70\x90\x1c\x56\xb5\xcd\x73\x1c\x69\x30\xa1\xda\x03\x3c\xf6\xf2\xd5\x82\x59\x56\x5d\x67\x05\x8a\x35\x95\x6e\x4b\x3c\x67\x1f\xa5\x24\x5f\x8b\x9c\x93\x98\xd6\x65\x80\xdc\x26\xc5\x15\x82\x92\x74\xa4\x96\xa9\xef\x5f\x57\xe0\x97\xa5\x20\x1c\xea\xc7\xea\x2b\xa2\x1b\x2f\xac\xc3\x41\xfd\x91\xfc\x28\x0f\x00\xc9\x18\x41\x34\x53\x4f\xaf\x7b\xce\x39\xbf\x6e\xad\x19\xb1\x1b\xce\x3a\x29\x1d\xd4\x54\xfc\x3e\xd5\xf3\xa4\x0a\x9c\xcc\x66\x54\x10\xbf\x46\xcb\xe1\x19\xc0\x33\xba\x53\x10\xad\xfc\x68\x22\x67\xa5\x5a\x90\x05\x5b\x2e\xe5\x49\xa5\xfe\xea\xd5\xb3\xaa\xd7\xe6\x4e\xef\xd9\xe5\x89\x53\x84\x3d\x70\x32\x24\xb0\x58\xaa\x34\xcf\x16\xa2\xcc\xa2\x9e\xa6\x0a\x8d\x48\x6f\xdd\x55\xb5\x91\x21\x37\xd5\x80\x3e\x0c\xaf\x7d\x42\xdb\x4c\x26\xe5\x3a\x99\x1f\x29\x7b\x66\xc3\x90\xfc\x93\x8e\xe1\x83\x0e\x48\x5e\xcd\x1e\xf0\x87\x1d\x88\x74\xb4\x22\x8b\xb6\xaa\x17\x7c\xb9\xc4\x10\x4b\xb7\xf1\xa0\x38\xd7\x8b\x76\xb9\xdd\x6a\x41\xbb\x7b\xfa\xb7\x4d\xbd\x2e\xd9\xa2\x5d\x62\x8a\xb6\x5b\xed\xed\xd4\x3a\xef\xdb\x48\xd2\x6e\x15\x53\x94\xc1\x49\x79\xa8\x0c\x66\xee\xfa\x38\x2e\xe6\xfa\x11\x6d\x8e\x8b\xdf\x14\xf1\x61\xa6\xc3\x58\x42\x53\x7c\xc4\x80\xbb\x40\x18\x29\x8f\x79\xf0\xb9\x59\x47\x74\x75\x7a\xa0\x91\xe7\x01\x5e\x55\x15\x39\x65\xc0\x1d\x7f\xf4\x7d\x9c\x95\xaf\x13\x47\x73\x9f\x77\x27\x10\xc3\x29\xcb\xbe\xcf\x95\xb5\xfe\xae\x5e\x9f\x2a\xe6\x01\xcc\xbe\xf3\x90\xbb\x9c\xe8\x30\x0c\x5a\xe5\xca\x19\xa7\x30\x3f\x92\xc8\xbb\xc4\xc3\xdc\x98\xce\xa3\x1a\x1d\x8e\x90\xe5\x43\x62\x61\x1f\x60\xcc\xc6\x14\xf5\x7d\x1e\x38\x9e\x45\xdf\x78\x29\x32\xa3\xf8\x24\xf2\x69\x7c\x93\x4c\x24\x42\xf9\x70\x26\x87\x56\xe6\x47\x45\x1d\xd4\xa1\xe0\x0b\x17\x9f\x15\x46\x57\x91\x4f\xe3\xdf\xa3\x5c\xe0\x95\x37\x17\x66\x61\x0f\x9c\x06\x53\xdc\x9b\x01\x1b\xb7\x95\xd9\xd7\x28\x89\xee\x72\x63\x8e\x15\x39\x87\x8d\x3b\xfe\xca\x8b\x4d\x8b\xf5\x4a\x8b\x25\xea\x0b\x49\x3b\x08\x27\x2e\xdb\xbe\x6f\x5c\x4c\x2d\x8a\x43\x73\xe0\x15\xdb\xe1\xce\x6f\xca\x5c\x7b\x41\x4d\x01\x75\x78\x3b\xfe\x50\xf2\xf0\x3e\xf1\xe9\x23\xd0\x8d\x90\x4f\xe3\x0b\x2d\xf8\xa0\x6c\x58\x9d\xeb\x43\x7a\x00\x1f\xd6\x91\xf4\x3b\xd7\x9b\xcc\xbd\x36\x34\x7f\x69\xf1\xde\x79\xcc\xd4\xec\xcd\x67\x03\x76\xf8\x83\xa8\x4d\x45\xb9\x7b\xbf\x06\x7b\x28\x0b\xf4\xf6\x09\xbe\xf6\x7a\x91\xd5\x57\x1d\x38\xa9\xb9\x4f\xbd\x79\xcd\x6a\xc2\x06\xa7\x36\xf7\x85\xed\xaa\xef\x2b\x38\x0c\x47\xe8\x0a\xda\x8f\xad\x20\xd8\xf3\xe9\x51\x10\x2b\xe6\x40\xc7\x5f\xfe\x22\x83\xb7\xdf\xee\x4b\x57\x90\x46\x16\xd3\xe6\x6d\xab\xb4\x33\xfd\x30\xdd\x57\xca\xe5\x74\xb1\x34\xbf\x89\xa8\x5d\x6c\x4d\x26\x0c\x36\x4e\x03\x10\x81\xc9\xe9\x16\x13\xa7\xb2\xc1\xbc\x07\x03\xdf\x75\x44\xe4\x4c\xc9\xc1\x17\x95\x48\x04\xd0\xf8\x1b\x67\xc5\xb4\xdf\x89\x65\x45\xc2\x59\xb0\x70\x73\x19\x49\x33\xaa\x50\xfb\x59\xa4\x75\x06\x89\xe3\x75\xb5\x94\x35\xe4\xf3\x6b\xc9\x63\x3f\xb8\x77\xa2\xcc\x3d\xc1\xfb\xee\x1a\xd0\xaa\x19\x8e\x03\x4d\x74\x88\x59\x6e\xe6\xa0\xa2\x9e\x56\x32\x02\x6c\x9f\x4f\xb1\xfa\x76\x14\xd1\xc2\xa8\xc7\x8f\x57\xc8\x4d\x04\xae\xc3\xbe\x9b\x7e\x69\xd4\xa0\x21\xed\xe0\x97\x1e\x07\xa8\xc5\xd4\xfd\xdc\x9f\x31\x4a\xb9\x3c\xf0\xca\xd1\xfe\x80\x2f\xdd\x27\xba\x1f\x7b\x3e\xd2\xa5\x1c\xab\x69\xba\x9f\x3b\x0f\x87\x19\x4b\xcf\xe1\x4e\xb9\xda\x05\xca\xd1\x97\xf5\x35\xe8\xc6\xc7\x14\x10\x8d\x25\x3b\x4e\xf8\xb8\xfe\x58\xd3\xb5\x3c\x42\x0a\xe4\xce\xb6\xc7\x7d\xbb\xdc\xd0\xfd\x55\x7d\x7d\x68\xaa\x11\x4e\x04\xa7\x24\x1b\x1b\x66\xeb\x5a\x10\x1b\x23\x13\xb9\x4c\xfa\x45\x80\x1f\x78\x2b\x8f\x9a\xd4\x43\x2e\xa6\xae\xd8\x2a\x77\x55\x5f\xe7\x1c\x9e\xd2\xc3\x99\x2c\xe4\xc1\xbc\xb4\x66\xa4\x5d\x04\x53\xfb\xbd\x05\x63\xc0\x14\xb7\x1e\x58\x0e\x6b\xf9\x95\x0e\x0d\xe9\xae\x5b\xd6\x91\xd2\x95\x72\xe0\x13\x6f\x48\xa4\x46\xf7\xc0\x88\x93\x29\x80\x33\xbe\x8a\xf1\x8a\x19\x32\x51\x27\xea\xfd\x2d\xf9\x2c\x78\xbd\xf2\xef\x74\xd5\x82\x95\x82\x76\x08\x73\x40\x9a\x78\xf5\x4b\xbc\xb3\xdc\xda\xfd\x55\x0f\x94\x78\xb2\xb7\x41\x0a\x72\x74\x67\xa0\x83\xd4\x1f\x06\x3f\x08\x27\x05\xc2\x5a\xce\xaf\x6b\x2e\x68\xbd\x7e\x62\x3e\xf6\x1f\x44\xef\x41\x9d\xe9\x7d\x2b\xb7\x7c\xd0\x03\xf5\xa0\x54\x7f\xe8\x02\xf1\x47\x6b\xca\x3e\x74\xc1\x57\xfa\x49\xa9\xff\x32\x65\x14\xc8\xc8\xf3\x3d\x5b\x5a\x4e\xde\xc1\xe9\x83\xde\x27\xd7\xa1\x77\xdf\x40\x4d\x41\xfc\x3a\x5b\x90\x25\xf2\x3c\xc9\x16\x62\xcf\xf5\x1a\x99\x99\xa0\x46\x4c\x2b\x2e\xcf\x09\x3b\x60\x0a\x70\xe9\xf2\x59\x9e\x75\xa4\x4a\x17\x90\x89\x71\xdd\xd7\xf7\xa0\xe3\x9e\x37\xa3\xe9\xb9\x3c\x22\x9f\xec\x63\x84\xa4\xa0\xf2\x9c\x5d\xb4\x86\x0f\x5a\x5f\x76\xe7\xd7\x3a\x0f\x10\x9c\x64\xcf\xf5\x0b\xee\xbf\x20\x60\x55\xbd\x58\x93\xcf\xf4\xa3\xb6\x49\xf9\x1f\xce\xfd\x0f\x0d\xc8\x8a\xc9\x2e\x54\x2d\x96\x87\x2c\x96\x77\x34\xa8\x6a\xc0\x67\xf6\x8d\xaa\xab\x74\x41\x20\x2f\xbe\x3b\x03\x3b\x70\xda\x0b\x6d\x22\x16\xda\x6e\xca\x73\xaf\x52\x8f\xde\xa8\x13\x16\xcd\x26\x1e\x86\xe2\x7f\x16\xba\xd0\x12\xe5\xe2\xf9\xf2\x1e\x84\x5f\x30\x12\xb5\xb6\x7d\x83\xf1\xde\x46\xca\x4c\xa8\x74\x38\x26\x41\x2e\x3e\x18\xa4\x69\x77\x46\xd6\x17\x5a\xab\x22\xcf\x80\x91\x87\xa9\x55\x0a\xb0\x50\xcb\x4e\xf9\x92\x2d\xe8\x91\x26\x93\x12\xca\xf0\xed\x96\xd8\x52\xef\xea\x8e\xbc\x34\x4c\xf6\x76\xab\x58\x39\x78\x63\x59\x6f\x9f\x0b\x4b\x3b\xfe\xfd\x57\xed\x38\x3f\xa8\xe3\xbc\xb7\xe3\xfc\xd0\x8e\xfb\x6b\x1b\xb9\xe4\xcc\x5c\xea\xdb\x88\x94\xb4\xd9\x3d\xe6\x06\xe2\x62\x9a\xf5\x9d\xe5\xf7\x95\x35\xde\x0f\xc7\x93\x2d\x66\x4b\xcc\xd5\x5f\x27\x4b\x4c\xd5\x5f\xdf\x2c\x71\xab\xfe\xfa\xb7\x25\xae\xab\x5b\x79\x75\xcc\x6f\x69\x33\xe7\x58\x0e\x6b\xce\x76\x3b\xdf\x31\x4f\xff\x61\x14\xd5\x78\x15\xb8\x79\x6a\x52\x66\x98\xa2\xd3\x52\x6b\x22\x93\x7d\x29\x37\x96\xd1\x83\xfb\x2f\xb1\x56\x76\xfb\x04\x8e\x57\x66\xd5\x2f\xbb\x10\xcf\xe2\x65\xcd\x6e\xd0\xdc\x34\x92\xec\x70\xbf\x11\x9e\x69\x64\x9d\x6b\x64\x9d\x6d\x44\x65\xc1\x33\x96\x86\xee\x65\x2d\x56\x97\x94\xbd\xf7\x72\x49\xb6\x93\x49\x0b\x77\x2e\xee\x26\x93\xce\xc0\xf9\x99\x33\xba\x35\xf7\xf5\x85\x71\x50\x36\x49\xa4\x95\x4f\x10\xc7\x1d\x96\xd7\xc1\x5f\x49\xd9\xe1\x16\x61\x70\x77\x94\x03\x90\x3f\xec\x37\xd7\xed\xf5\x66\x0d\x8e\x12\xea\xab\x16\xd7\x78\x8d\x57\x71\x24\x60\xb6\x83\xf9\x30\x38\x32\x99\x88\xc9\x44\x65\x59\x83\xeb\x59\xfe\xa1\xc0\x7f\x55\x42\xb6\x66\x32\x39\x02\x75\xe7\x94\x76\xc6\xf3\x2d\x79\x94\x1c\x3c\x51\x47\x33\x87\x2a\x98\x82\x60\x92\xe8\x45\x19\x35\xa0\x9e\x23\x17\x9a\x3d\x7b\x40\x1f\xaa\xa7\x8e\xaa\xa9\x71\x49\x51\x2f\x16\x74\xa9\xc9\xaf\x6e\x9a\xb7\xad\x99\x21\x81\x5b\x68\x0f\xb0\x4d\x74\xac\xb6\xfa\x20\x5f\xba\x56\xa5\xe3\x18\x75\xaf\x50\x66\x2c\x3a\xd7\x52\x70\x32\x99\x7e\xa9\xf4\x7b\xfe\x7d\xb9\xdd\x1e\xb5\xdb\x6d\x3b\xa5\xcd\x91\x9a\x61\x13\x43\xae\x82\x47\x85\x46\x46\x97\x2f\xe4\xc7\x30\x41\xba\x91\xae\xaa\x55\xa5\xdd\xa9\x11\xc0\xd5\x5c\xcd\xcb\x3a\x64\xe5\xc2\x9f\xdb\xed\x62\x89\xc3\x47\xc1\xe7\x6a\x7a\x24\xe7\x59\x2b\xdc\x8a\x2e\xec\x08\x26\x08\x5c\x6c\xc7\xfc\x34\x7d\x77\xeb\x57\x3b\x5f\xa8\x2a\x97\x3b\x34\xcf\x55\x13\xcf\x6c\xb0\x0b\xfa\xb8\xab\xc9\x44\x71\xb3\x98\xaa\xbf\xfd\x06\x71\x2b\xcf\x6f\x2a\x67\xaa\x4d\x49\xa9\x75\x54\x54\x57\xb3\x07\xf5\xc3\xd6\x11\x50\x6d\xe6\x14\x22\x26\xfc\x4d\xe9\x3b\xeb\x11\xdc\x61\x86\x3c\x68\x9c\x6c\x19\x9e\x38\xfa\xa7\xc5\x7a\x46\x97\xae\xba\xe4\x21\x27\x13\xae\x86\xdc\xaa\xbf\xfd\x21\x3f\x28\xe9\x76\xdb\xca\xeb\x2b\x1c\x2c\x45\xa7\xea\xa3\x8a\x4e\x2f\xe8\x5a\x10\x1e\xf8\xe6\xd9\x58\x5a\x20\x3c\xb2\x43\xf3\x78\xae\x4e\xc3\x76\xaa\xf6\xb0\x6a\x74\xa3\x3a\x95\xf5\x2b\x4f\x93\x91\x3f\x4c\x07\x53\xc9\xe8\xfd\x93\xb0\x1a\x2f\x89\xa8\x47\x61\xa0\x12\x99\x4c\x02\x23\x1c\x38\xd0\x79\xfa\xfe\x2f\x6e\x3b\xe6\x16\x0e\x6f\xdb\xa8\x26\x5e\xec\xe5\xbb\x83\xe4\x27\xe7\xab\x7a\x75\xd9\x93\x06\x4e\x1b\x6e\x81\x84\x5e\x40\x36\x97\xc7\x50\x58\xf1\xd8\x87\xb2\xd2\xbe\xe9\xf3\x7d\x08\x0b\x65\x18\x08\xc9\x7c\xe2\xa3\x13\x97\x79\x44\xd2\x9d\x66\x94\x13\xf2\xce\xb0\xca\x7e\x23\x23\x16\x06\x8d\xb1\x8c\x43\xa7\x3d\xc0\xf9\x50\x97\x28\x3e\x9a\xa1\x51\x6b\x3d\xf3\x65\x53\x14\xb3\x05\x4d\x9d\x4c\x33\x4c\xb7\xcf\x35\x5a\x0c\xb2\xc8\x2c\x6a\xdd\x8a\x20\xed\x69\x5f\x32\xd5\xa4\xfb\x1c\xdb\x01\xb0\x3d\x03\x38\xd1\x03\x50\x1d\x54\x43\x48\x01\x5b\x7a\xaa\x18\x5a\xca\xe8\x13\x49\xbc\x30\x6a\x93\x84\xe9\xa8\xaa\xa2\xeb\x09\x08\x6d\xc1\x61\x7b\x7d\x20\x37\x46\xa1\x75\x44\x27\x13\x66\x63\x48\x4d\x82\xda\xec\x88\x38\x9a\xd3\x5d\x06\xc0\x2e\xec\xc6\x00\xef\x9e\xd2\x72\xb8\x32\x98\xea\x33\xd1\x8c\xc4\x32\x51\x26\x8b\xed\x98\xda\x3c\xb6\xde\x2a\xe2\xda\x73\x0d\x6e\x7b\xd6\x11\xae\xe3\x7a\x7a\x59\x77\xa5\x40\x56\xda\x87\x8b\x0a\xa6\x17\xf6\x1c\x64\xb0\x35\xf7\xad\x72\x0d\xb0\x5c\xef\x68\x53\x75\x26\x85\xad\x4d\x5c\x6b\x9f\x98\xc0\xff\x53\xf9\x62\xde\x06\x79\x6b\x31\x47\x3a\x30\xc5\x0e\xc8\xab\x09\x24\x11\x57\xcf\x75\xbb\xbe\xb9\x6a\xf9\xf5\x25\x5d\xe1\x55\xa5\x44\x7e\xe8\xfb\x46\x4d\xe6\x45\x75\xab\x97\x70\xae\xfd\x25\x70\x28\x5c\xcd\x17\x64\x89\x13\x49\x6c\x4e\x70\x4e\x86\x9b\x8b\xe4\xb1\x3c\xf3\xe6\x1d\x3c\xa6\xdd\x1b\xd7\x9b\xf9\x1a\x73\xdd\x70\x51\x60\x1e\xb5\xb9\xc4\x89\x0c\x35\x5f\xe1\x9c\xf4\x65\xbe\x4e\xda\x04\xcf\x3b\x9e\x34\x7b\x74\x82\x2f\xeb\x4e\x5f\xa5\xf2\x57\x22\xf6\xa9\x87\x96\xcd\x9a\x1f\x9d\xec\x46\xc9\x02\x5f\x20\x7c\x01\x9a\xa6\xcb\x6a\x03\x89\x83\xf1\xb5\x47\x35\x9b\xbd\xf9\x94\x2f\x11\x6e\x2a\xa5\xa1\xc6\x57\x95\xe4\x91\x57\x72\x59\x0c\xc9\x36\x58\xa0\xed\x56\xfd\xbd\xc2\x97\x86\xc2\x4a\x9a\x0a\xc5\x55\x55\x35\xa7\x34\x12\x89\xe7\x34\x12\x35\x91\x4d\x3a\xe1\xc6\x40\x11\x56\x1b\xe0\xc6\x11\x41\x73\x17\x22\x68\xbe\x22\x11\xac\xa0\xe1\xcb\x9f\x42\x09\x97\x79\x42\xb8\xce\x50\x81\xdd\x39\xd7\xd1\xce\xb9\xce\xee\x1c\x9f\x62\x66\x19\x8a\xb9\x0a\x08\xe6\x6a\x32\x11\x55\x55\x5d\x46\x64\xd3\x60\x81\x6f\xfc\xf9\xb7\x3f\x56\xf8\x52\xfe\xb8\x89\xa5\xaf\xc1\x03\x34\xe7\x08\x6d\x8e\x63\xcc\x2a\x32\xd5\x33\x6b\x0f\x45\x75\x64\x6b\x2f\x26\x05\x70\xee\xc6\xa5\x87\xaf\xbe\x0a\xe6\xca\x53\xc3\x96\x61\x55\x6c\x89\xc2\x54\x97\xa6\x85\x8a\x63\x3e\x4a\x6f\x0b\xa1\x6c\x1a\x4f\x20\x9c\x2e\x00\x5a\xf7\xfb\x51\x86\x4d\x54\x92\x4a\x63\xb3\xc4\xb3\xc8\x2c\xa1\xf8\x72\xb5\xff\x1e\x95\xb4\x1f\xe3\x3f\xca\x16\xd9\x9a\xdc\x9a\x3b\x84\x70\x57\x09\x77\x0d\x30\x40\x06\x85\x64\x53\x10\x39\x21\x70\x87\x39\xae\x11\x5e\x2b\x44\xb9\xef\x54\x80\x9a\x8e\x2b\xf8\x5f\xa6\xdc\xb8\xbd\x18\xff\xba\x38\x66\xc7\xc5\xaf\x0b\x77\xe5\x54\x55\xb5\x41\x89\xb9\x4a\xfb\x5d\xda\x36\xc6\xaa\x97\xa4\x19\x6f\x98\xce\xae\x89\x61\x62\xc7\x9f\xea\x6e\xfc\x91\xf0\x9b\xf1\x9a\x7e\x20\xeb\x9b\x71\x3d\xbe\xa2\x9d\xa8\x3f\x10\x9b\xa2\xa3\xdc\x54\x84\x94\x1b\x2c\xa4\xf0\x1f\x81\xcf\xd9\x9b\xfb\x7b\x52\xbe\x01\xb7\x51\xcc\x10\x56\x03\x82\x43\xb2\x30\x3d\x28\x1c\x26\xe1\xf4\x1c\xce\x0b\x8a\x76\xba\x8c\x1c\xf4\x53\x65\x7a\x19\x6b\x5d\x87\x42\xd2\x63\x9e\xbd\xe7\xef\xde\xba\xd8\x48\x8f\x60\x52\xeb\x4a\x4c\xaf\x09\xf9\xf0\x68\xbd\x96\x3f\xe5\xc5\x78\x1e\x2d\x0a\x95\x53\x9f\xe2\xf1\x59\x84\xfb\x5e\x70\x3d\xb5\x5c\xb2\x66\x29\xad\x73\xdc\xa1\x5d\x3a\x3f\x7d\xab\xf7\x68\xbd\x56\xe3\x69\x0f\x9e\xc0\x36\x98\xc0\x47\xeb\x75\x6e\xfe\xb0\x98\x9e\x37\xb4\xf9\x01\xdc\xbc\xf5\xa8\xeb\x3d\x93\x6a\xfa\xf3\xab\x5b\x7b\x12\xee\x0a\x6f\x9a\xbf\xf3\x51\xe0\x15\xeb\x40\xb6\xdb\x42\xfb\x1a\x4a\x8e\x21\x8d\x02\x39\x95\x37\xe5\x31\x71\x95\x7c\xeb\x65\xa0\xcc\x62\xce\x1b\xfb\x98\x72\x51\x86\xc0\x44\x02\x16\x31\xe3\x98\x29\xdf\xfe\xf0\x4b\xb4\xb1\xe1\xbf\x0d\x8e\x5a\x8d\x38\x49\x47\xff\x4d\x36\x1d\xfd\x37\x7e\x3a\xfa\x6f\xbc\x74\xf4\x9d\xde\x0f\x19\x04\x76\x90\xb3\xad\xa5\x45\x05\x4b\x92\xd0\x35\xdd\x80\xdb\x42\xce\x47\xfb\x3d\x18\xd8\x44\x36\xd7\x3b\x1b\xcc\xf5\xce\xcc\x5f\x39\x39\xd1\xf5\x34\xef\x29\x65\xf5\xd5\xb6\xe0\x69\xf4\x7b\x5e\xc6\x63\x4e\x86\x3b\x3d\x97\x07\x9e\xcb\xf3\x8b\xa3\x2f\xd0\x0e\xff\xe0\x69\x0c\xf6\xba\xa2\xc2\xd4\x58\x37\x04\x98\xa7\xb4\x4d\x98\x52\xa8\x0a\x79\xfe\x02\x3f\x12\x73\xd5\xc8\x42\x90\x43\x60\x4a\x3e\x0b\xc2\x9a\x52\x07\x09\x7f\x24\x4c\x90\x06\xdf\xca\x1b\x7c\x9e\x84\x5d\x42\xca\x25\x13\xf4\x2a\x05\x4a\x97\xe9\xd4\x84\x8a\x88\xb2\x58\xb5\x4c\x10\x26\x74\x3e\x03\xfd\x6b\xbb\xf5\xa4\x79\x0b\xea\x1e\xfc\x82\x3d\xa3\x9f\xc0\xa9\xe3\x03\xec\x29\x6d\x81\xfb\x53\xd5\xa7\xe7\x72\xa3\x4b\xeb\x03\x57\x7b\x94\x70\x72\xbd\xae\x57\x64\xd0\xf3\xe2\xed\x25\x19\x73\xd2\x6d\xd6\x42\x1e\x5f\xf5\xb8\x23\xfc\x23\xe1\xe3\xbf\x6d\xe4\xa5\x55\x5e\xb4\x7c\x5c\xaf\xd7\xe3\xd4\x3f\x7b\x0c\x16\x48\x34\xa6\xdd\x98\x5e\x5d\x6d\x60\x13\x4f\xc7\x6f\xdb\xf1\x55\xdb\xd0\x8b\x9b\xb1\x1e\x75\x87\xc7\x9b\x8e\x8c\x6d\xde\x96\x02\xed\x94\x3d\x41\x4d\xb7\x4e\x46\xd3\x94\x85\xad\xba\xc0\x43\x1e\xc8\xb2\x84\x1f\x01\xd7\xe7\xd9\xac\xe3\x9e\xa6\x9c\xd4\xcd\x6b\xb6\xbe\x29\x11\x56\xd9\x77\x1e\x89\xc7\xaa\x67\xf3\x94\x09\x8b\xd1\x24\xcc\x3a\xa2\xa9\xf9\xd6\xb1\x3f\x63\x50\x43\xfa\x19\x93\xb1\x8a\x07\xca\x6b\x96\x24\x47\x91\x82\x55\x98\x45\x2e\x22\x6e\x2c\x5a\xce\x91\x23\x2d\xef\x1b\xd0\x8a\xf8\xfe\x29\xaa\xfd\x32\x8b\x23\x4b\xf2\x34\x82\x49\x0e\xad\x70\xbb\x8d\x1f\x93\x46\x3d\x4d\xfb\x70\xe2\x6e\xea\x7c\xe7\xe5\xa1\xb5\xc3\xe7\xe9\xe4\xa4\x18\xca\x96\x07\x08\xd6\x12\xdf\xaa\x40\xcf\xf9\xd1\x6c\x87\x76\x18\x6e\xe7\x30\x4c\x74\xde\x1f\xbd\xe4\x2f\xa2\xfc\x50\x5d\x31\x0a\x3e\xc3\x6a\x9e\xbf\xa0\x2e\xf5\xa9\x5f\x5b\x57\x7f\xec\x59\x7b\xac\xc1\xa5\xbd\x48\x31\x1f\x62\xda\x1b\x29\xcb\x31\x4f\x26\x13\xdb\x94\xb2\x8f\xed\x07\x52\x16\xf2\x5b\x79\x4d\xf4\x73\x53\x3e\x93\x92\xb4\xaa\x0b\x79\xcf\x1d\xf3\x53\x1b\x46\xe2\x56\xc3\x56\xcf\x21\x49\xe1\x79\x43\xbb\xae\x5d\xd1\x5a\x10\x9d\x12\x46\x7d\xdd\xf5\x10\xbb\xd1\x4c\x95\xde\x8c\xf5\xc7\xcb\x8b\xc8\xa9\x7e\xc4\x26\x13\x66\x4d\xda\xa0\x25\x3b\xdf\x30\x93\x64\x5a\x76\x40\x47\x9e\x26\xe7\xf3\x95\x8e\x48\x75\xa5\xbd\x51\x9a\xb8\xd4\x4f\x74\x6d\xe0\x28\xd3\x03\x3e\xdb\x8e\xbd\xb2\xfa\xa6\xa1\x34\x71\x37\x5d\x42\x2a\xd8\x0f\xcb\x71\xaf\x8d\x83\xdf\xcc\xde\x86\xfd\x37\xcb\x0e\x47\x7c\xf6\x3c\x23\x20\xc9\x23\xfd\x6f\x1a\x58\xcd\x4d\xbf\xe4\x1a\x0a\x04\x48\x69\xc1\x25\x9c\xd9\x87\xfd\xb4\x7e\xa8\x48\x26\x57\x6a\x87\xf0\x1f\x49\xf5\x23\x31\xb7\x6a\xfe\x1e\xcd\xdc\x92\x21\xb5\x98\x20\xa3\x47\x16\x94\x67\xff\xd5\x0b\x57\x56\xe5\xfe\xf4\x2f\x48\xe5\x67\xe4\xfe\x54\xef\xbe\xc6\x0d\x09\x68\x26\xf1\xe5\x18\x5d\x8b\x05\xca\x1e\x80\x6a\xc3\xc4\xf3\x0e\x47\xa1\xdc\xde\xc9\x1b\x68\xd1\xed\x55\x32\x3d\x87\x27\x49\xe4\x2d\xd6\x84\x7e\x1e\x47\xab\x77\xf3\x8c\x6b\x70\xb4\x4d\x3b\x22\xdc\xa9\x66\x79\x9a\x30\xd2\x58\x71\x2b\x4a\x9f\x62\xae\x82\xf9\xd1\x09\x96\xd4\x36\xff\x96\x68\x77\x30\x84\x61\xaa\xd5\x03\xed\xe0\xa5\x6b\x34\xfb\xf4\xbc\x36\xfb\xe9\x47\x2a\x2e\xfd\xbd\xaa\xe3\x7d\x3c\x80\xe6\x96\xad\x34\x79\x17\x1a\x95\xa4\xc0\x45\x43\x1b\xd9\x99\x02\x08\xef\x4f\x24\x8b\x56\x8d\x7f\xbb\xcf\x12\xa3\x0d\x31\x5e\xa0\x51\x04\x6c\x7b\x92\xe0\x18\x3b\xdc\xe3\x35\x04\x43\x7b\xd1\x42\xfd\x26\x1c\xed\xae\x31\x50\x42\x33\xf2\x6f\xb4\xed\xbc\x09\x2a\xce\x7b\x4d\x45\xd1\xf7\x69\x0c\x68\x1c\xc0\xdd\x07\xe5\x05\xf5\xfc\x58\x27\xe9\x86\xee\x58\x4f\xbe\x58\x56\xe5\x65\x69\x16\xf4\x5a\x64\x5f\x32\x2e\xe0\x62\xf6\xe5\xeb\x9a\x05\x1e\xe5\xba\x34\x20\xf1\x94\x0c\xd4\x58\x0b\xb1\xdc\x6e\x17\x4b\xab\x55\x9d\x4c\xfe\x44\x3c\x40\xf3\x1a\x7a\xd9\x69\x40\x73\xe1\xbc\xb5\x12\xbb\xb5\xef\xe7\x13\xc1\x56\xb4\xdc\xe9\x78\xc3\x2d\xe7\xc4\xea\xc5\x52\xc7\x5d\x3a\xd0\x42\x23\x5b\x53\x00\x2c\x1c\xd1\x43\xb2\x93\xd1\xde\x44\x5b\x25\x92\xd7\xa8\xd1\x05\x69\x8d\x4e\x96\x64\x17\x64\x39\x6a\xb5\x93\xbd\x3a\xa6\x5e\x84\x25\xca\x16\x90\xf3\x3c\x74\x32\x7f\x39\x87\xbc\xdf\xdd\x78\xc9\x42\x2c\xc1\x59\x2b\xb8\xeb\x55\xae\x00\xe5\xde\xc1\x7d\xb0\x11\xbe\xa0\xcb\x69\x96\x43\x2b\x17\x6c\x89\x46\x71\x3d\xd6\x0d\xba\x4c\xcc\xf0\xb0\x50\x7d\x1e\xfd\x86\x42\xec\x20\x1c\xc4\xea\xd0\x76\x25\x48\x24\x8e\x7c\xfd\x44\x60\x02\xbe\x73\x98\x1b\xd1\x54\xe7\x7d\x74\x06\x89\x68\xb1\xdc\x83\xd6\x82\xeb\xaa\x1d\x20\x13\x80\x2a\x0b\x39\xb0\x1a\xbc\x53\x4c\x5a\xb4\xed\x16\x22\x95\x4b\x82\xb6\xdb\x92\x99\x30\x5f\x0c\x21\xee\xe0\xe4\x5e\x83\x2e\xc7\x3d\xb7\xbc\x1b\xda\xf9\x44\x43\xa6\x19\xe6\xbd\x64\x68\xc4\xc3\x42\xd9\x55\xe7\x56\x21\x68\xaa\xdc\x6e\xcd\x77\xe8\x37\xb3\x5d\xce\xf9\xb1\xbb\x61\xab\xe1\xf9\xcd\x1c\x16\x8a\x4e\x43\xc7\x08\x86\x30\xad\x8e\xf8\x76\x3b\x53\xee\x8d\x2a\x88\xbb\x0d\xb2\x17\xd1\x78\xf9\x4b\x91\x18\x24\x8d\x8e\xa7\xaa\x02\x0c\x23\xfb\x5c\xb9\x0a\x6d\xb7\x47\x35\xba\x75\xd9\x02\x0f\x26\x32\x86\xb0\xf5\x01\x16\x4b\xa7\x08\x34\x4a\x99\x8f\xb4\xa3\xef\xd6\xd1\xcc\x7e\x0b\xf9\xc8\x94\x81\x73\xb1\xc4\xeb\x6a\xf6\x60\xfd\xd0\x28\xa7\x1e\xac\x0d\x29\xad\xaa\x6e\xb1\x5e\xe2\x8b\x6a\x15\xd1\xca\x91\x3c\x5c\x2f\x34\x81\x4c\x26\xe5\x85\x26\x0b\xbc\x51\x14\xb1\x42\x68\xb7\xd1\xd5\xf5\xd1\xc0\x26\x39\x5d\x7d\xc5\x6b\x6f\x44\x46\xee\x20\x13\x01\x5c\x1e\x4e\xa4\xd5\x10\x32\x38\xac\x20\x86\x76\xdf\xd7\x16\xbd\x28\x85\x3e\x08\x32\xa4\x06\x50\x3c\x23\xeb\x75\xc6\x0e\x58\x04\x82\x46\xba\x3d\x75\xda\x84\x2c\x11\x43\x3d\x3c\x87\x0a\xea\xca\x87\xdd\x0f\xb5\x57\xe5\x8f\xf1\x61\xaa\x26\xc8\x44\x10\xe1\x43\x6e\x31\x20\x8f\x43\x6f\x29\x17\x0f\x9f\xc2\x4a\xef\xdb\xc4\x3f\x12\x2b\xbc\x5e\x79\xc6\x6e\xcd\xda\xce\x8d\x40\x21\xe0\xf6\xc7\x49\xa2\x3c\x9f\xad\xd5\xfc\x29\xbc\x76\xea\x8d\xd8\xe1\x71\x32\xf9\x95\xde\x74\xd9\xfe\x3e\xea\xe7\xe5\x7a\x1d\x08\x43\x38\xf0\xf8\x0c\x3a\xfd\x15\x29\x19\xa6\xd5\x1f\xf3\x23\x05\x69\x60\x2e\x92\x11\xb3\xcc\x68\xfd\x11\xe2\xfd\x1c\x3d\x8f\x39\x7a\x6e\x39\x7a\x34\xbf\x73\x87\xf6\xf4\x67\x77\x08\x37\x6c\x48\x06\xd3\xd8\x03\x28\x23\xfa\x1f\xc0\x7d\xe6\x28\x8a\x58\x2f\x6f\xe5\x85\xa2\x3c\xc1\x91\x65\xc2\xbd\x40\x44\x7c\x64\x56\xed\xe8\x64\x57\xee\xef\x3e\x26\x28\xbc\x7c\x92\x2d\x2d\x96\x23\x36\x99\x80\x57\xba\x8d\xec\xe8\x2d\x9a\x78\xab\xf6\xc8\x55\xd1\xc6\xf9\x55\x2e\x64\xc0\xd3\x8f\xe4\x99\xa6\x51\x8a\xf4\x12\x77\x29\xaf\xee\x71\x82\x6b\x66\x08\x99\xfc\x1e\x83\xeb\x6f\x1a\xf8\x3d\x49\x13\xe1\x24\xd9\x40\x0e\xcd\x5f\xb2\x4f\x14\xf0\xe6\x06\xc5\x96\xed\xdf\xeb\x74\xcd\x6e\x1c\xf6\xd5\xaf\x52\xa3\x1a\xe6\x0e\x4e\x93\x3d\xe4\x26\xa6\x8f\x2d\x23\xbe\x56\xde\xa5\x02\xed\x80\x7f\xff\x83\x72\xf9\x53\xdb\xe8\xfc\x5b\x2b\xe1\x96\x8b\xc2\x0b\xea\x0b\x82\xe0\x0b\x79\x2f\xc5\xcf\x4c\x4a\xb1\x62\x89\xf0\x7f\xe6\x85\x66\xed\x0f\xf7\xf4\xd5\x1f\xdd\x00\xff\x4c\x02\x9e\x74\x53\x92\x34\xd7\xbd\x5d\x62\x5f\x33\x8e\x24\x8d\xd9\x6a\x7e\x47\xe2\x53\x8f\x47\xd7\x0c\xb6\x6e\x5d\xa0\xd0\xa8\x7d\x43\xb4\xe4\x2f\xbf\xcc\xc4\xbc\x60\x4b\xf0\xee\xe6\xb2\x43\x9b\x4a\x9b\x83\x5b\xeb\x17\x60\xac\xb9\x35\x6b\xc6\x0a\xb4\x6b\x5c\xbf\x6b\x37\x62\x0c\x4e\x01\x26\x6b\x9b\x1c\x01\x18\x9b\xa9\x61\x47\xbb\xea\xcf\x65\x57\x11\x52\x76\x60\xc3\xc7\xff\x59\xfe\x0e\x53\x94\x98\xa2\xfd\xc4\xfd\xe7\x5e\x2e\xad\xbf\xb6\x34\xe8\xae\x62\xdb\x23\x28\xe4\x11\x99\x4c\xca\xb2\xad\xbe\x57\x96\xf0\x1a\x13\xcc\xa7\xb4\xc1\x0c\x21\x63\xde\x6b\x94\x5b\xb4\x3c\x15\x55\xf0\x06\x68\xbf\xcc\x4b\x70\x44\x53\x7f\xee\x14\xc3\xaf\x82\x05\x21\x5d\xdd\x59\x6d\x76\x63\x49\xb1\xfa\xb8\xdb\xc9\x59\xa2\x61\x86\x3b\x7a\x51\x92\x31\x65\x9d\xa8\xd9\x8a\xb4\x17\xe3\xef\xcc\x11\xb6\x99\xea\xd0\x4e\x85\xd0\x55\xba\x1e\xa2\x91\x70\x9a\x05\x8d\x6e\x55\x52\xe7\x4e\xed\x5e\x2a\x6d\x1b\x95\x2c\x93\x52\xc1\x91\x1d\x5e\x7b\x64\x63\xbd\x50\x7d\xf3\xb3\x3c\xb9\x55\x24\x41\xc9\x2b\xa1\xe0\x40\xa5\x90\xc2\x2b\xa6\x7f\xe0\x23\x8e\x3c\x83\xa6\xf6\x6d\x69\x08\x00\x8c\xda\x54\xa3\xa7\x7c\xba\x5a\xd7\x5d\x37\xe7\x23\xea\x28\x6f\x32\xa1\x31\xba\x97\x67\xa7\x92\xed\x78\x85\x2b\xc9\x9d\x29\xdc\x50\xe3\x3d\xeb\x3a\x2f\x84\x7f\xaf\x34\x9e\x1b\xcd\x98\xf9\xdd\xf0\x7f\xe8\xb6\xe6\xc5\xb1\x40\x73\x36\x3d\x5f\x83\xb7\xa4\x4e\x8f\xea\xbf\x74\xcd\xb0\xb4\x19\x97\x63\x84\x5e\x94\x7e\xf5\x66\xf3\x45\x4d\xd2\xcf\x94\x41\xad\x23\x5e\x51\x39\x01\x30\x2f\x6a\xb5\x40\x7a\x8f\xbb\xe1\x3e\x70\x41\x0a\x6d\xf5\xca\x28\x80\x39\x1a\xb5\x53\x4e\xda\x6b\xc2\x00\x3d\xa8\xbc\x3d\x3f\xa7\xdd\x4b\xf8\xea\x68\x86\xcf\xcf\x55\x05\x7c\x87\x30\x9b\x9a\xab\xdb\x1b\x1d\xf6\xf0\xa4\x74\xc0\x9e\x1d\x2e\x17\xee\x24\x09\x5c\x8d\x23\xcc\xc1\x01\xc7\x63\x11\xc1\x40\x41\x10\x01\xc8\x32\x14\x6d\xb7\x31\x9b\xe6\xfb\xfb\x06\x9f\x2d\xf8\xd2\x85\x7a\xb4\x36\xdb\xd7\xe8\xa3\xce\x0c\x28\x1c\x9d\x2c\xa5\x70\x5d\xc6\x0f\x7d\x65\xaf\xf6\x40\xd4\x8e\xa3\x2f\xeb\xeb\x02\x21\xe3\x8b\xaa\xe1\xd0\xad\x73\x52\x37\x99\x94\x9d\x8e\xd9\xf1\x5d\x4d\xb9\x64\x30\xf0\x51\x17\x76\x65\x53\x75\xe0\xf1\x38\xca\x45\x49\xd8\xdb\x49\x49\x80\x5e\x98\xc4\xda\x48\x80\x59\x79\xa0\x5d\xac\x97\xd0\xbe\x72\x8f\x84\x9f\x3a\x70\x65\x35\x99\xac\x62\x9c\x2d\x39\xb7\x1b\x9b\x10\xcd\xa4\x8e\x3f\x3a\xd9\x29\x9f\xd6\x7c\x13\x7e\xfd\x50\xb9\xd1\x8b\x4c\x26\x17\xf9\x06\x76\x7a\xcd\x28\xe6\xc8\x45\xd7\x84\x8b\x46\x97\x23\xe5\x46\x46\xb5\x36\xb0\x06\x09\x71\xa7\xb4\x65\xd4\x68\xe0\xcf\x08\xff\x48\x57\x7b\x4c\x1a\xfb\xed\x13\xde\xa1\x5f\xfd\xc1\x84\xd4\x26\x8a\x3d\xb8\xe1\x7f\x4b\x4a\x2f\x93\xb7\xcb\x77\x06\x91\x5c\xe2\xe6\x65\x7d\x0d\xc5\x1e\x47\xf1\xb5\xf2\x1c\xf7\xa0\x49\x5a\x97\x4d\xf9\xf1\x9e\xe0\x82\x60\x5e\xde\xf8\xc1\xbf\x2f\x48\x90\xb1\x2d\xdb\x92\x52\x64\x35\x21\x4a\x8e\x7d\xab\x72\xe0\x44\x39\xfb\xe2\x6f\xfb\x5e\xeb\xf6\x9e\x11\xb1\xba\x84\xfe\x5c\x97\xb7\x3a\x65\xb5\x4a\x47\x94\x5c\xf4\x8b\xe5\x2e\x66\x20\xf7\x8d\xde\xc1\x16\xf4\x96\xdc\x19\x54\xd5\x79\x71\xef\xaf\x5d\xcb\xee\xd5\xd7\xb4\xc0\xba\x27\x5a\xd2\x4b\x7c\x1a\xf4\x27\x81\x47\x43\xde\xe8\x63\x4a\x86\xa6\x74\xfd\x54\xa7\x90\x43\xd8\x97\x83\xe7\x7d\x7a\x2c\x53\xc3\x7f\x92\x84\xb5\xb0\x37\xce\x3e\xfe\x83\x57\x67\xf2\xea\xa0\x49\x8e\x1a\x61\x02\x25\x68\xf7\xaa\x65\xa4\xa4\x72\x33\x4e\x26\xf0\xbf\x8a\x81\x60\x84\xd7\x82\x3c\x6f\x20\x38\x02\x61\x78\xf1\x9d\x2e\x38\xb2\xb1\x12\xef\x36\x74\xdd\x44\x48\xca\x98\xfa\x3b\xbb\xf5\xd2\x39\x95\x08\xb7\x1e\x43\x09\x81\x13\x68\x87\xbd\xd6\x7a\x67\x23\x9c\xc3\x91\x73\x14\x63\x53\xf7\xf5\xb3\x56\x0b\x8b\xa7\xd9\xa7\x3a\x5b\x15\x16\xda\xab\x04\xfb\xd9\xa5\x03\x5b\x6c\x98\x9b\x1a\x7c\x42\x3c\xe0\x97\xa8\x68\x84\x09\x83\x2f\x28\x6b\xfa\xa0\x31\x60\x28\xb2\x80\x2e\xae\xa4\x36\xf7\x20\xf9\x2e\x58\x45\x7d\x7a\xa4\x58\xd1\x1c\xbb\x5c\xd6\xac\x62\xdb\xad\x5c\xe2\x4b\x1f\x74\xd8\x95\x3b\xfd\x33\x31\xea\x48\xd7\x0f\xc9\xc9\x29\x37\x83\x33\x79\x5c\xfd\x2f\xf7\x6a\x5c\x1c\xf3\xe3\x42\xe5\x66\xa0\xcd\x7c\x0c\x5c\x8c\xfb\xfe\xdb\x9b\x70\xf5\x81\x25\xc4\xe7\x3d\x23\x52\xf9\x0c\x74\x22\xe9\xd0\x55\xc6\x88\x6b\x70\x42\xa8\x78\x11\x23\xbc\x47\xe6\x69\x81\x8c\x3f\xb5\x4f\x13\x9e\xcf\x90\x8d\x7a\x9a\x76\x97\xed\x66\xad\x33\x2e\xfb\x34\x60\x22\xf3\x33\xad\xce\x41\xcf\x25\x40\x84\x7a\xcf\xdb\x0d\xd3\x9f\x9f\x0e\xc8\x2a\x04\xcd\xcb\x32\xfd\x64\xbb\x35\x3d\xf8\x36\x7a\x13\xf6\xc5\x00\xcd\x66\x7a\x83\x07\x5b\x35\x33\x1d\x2d\x42\xc6\x23\x2a\xf1\x84\x3c\xc9\x7a\x42\x9e\xf8\x9e\x90\x27\xe0\x09\x69\x65\x1d\x0d\xd3\x3e\x99\x04\x29\x00\x4a\xfb\x02\xe1\x80\xb0\xc0\xe4\x10\xd2\x06\x0c\xa8\x8f\xc8\x48\xe0\x94\xe6\x91\x1b\x91\xa7\x89\x1e\x68\x5a\xe9\x3c\x1f\x0a\xed\x6c\x1e\xfd\x0b\x4d\xb4\xbf\x1e\x40\x37\x9c\x02\x10\x3d\x4c\x30\x78\x13\xce\x07\x27\x5e\x6d\xd9\x6f\x6f\x9e\x37\xb1\x29\xde\x69\x06\x72\x60\xfc\x76\x27\x27\x56\x1e\x66\x71\xf8\xbd\x5d\xc9\xb1\x58\xd0\xa5\xa5\xe7\x75\xe9\x75\xaa\x06\x3f\x66\x25\x9b\x6a\x7d\x9c\xe7\x2c\xe4\x26\x18\x3a\xa9\x24\x5d\xee\xa4\x5f\xf0\xa6\xc4\xe7\x17\x72\x36\x06\xee\x21\x5f\xb9\x96\xb1\x60\xc5\xde\xff\x34\x71\xee\x47\x90\xc5\xc6\xa9\x00\x7e\x8a\x57\xb9\xd9\x34\xd0\x6a\x7d\x17\xc7\x72\x4d\x64\x2a\x30\xa0\x3b\x2e\x7e\xed\xe8\xeb\xd7\x30\x2d\xbf\x2e\x12\x31\xdf\x4a\x08\xce\xe3\x5c\x32\x4f\x8a\x13\x55\xee\xe6\x26\x5b\x77\xec\x71\xde\xa2\x5c\x42\x79\x6a\x93\x13\x96\x70\x9d\x1a\x02\x95\xb2\x59\x78\x85\xd8\x6c\xf3\x19\xbf\x74\x3d\x80\x02\x69\xe5\xa4\x77\x04\x6a\xab\x02\x56\x08\x00\x98\x40\x94\x36\xdc\x2f\x21\xf5\xbf\xac\xd9\xcd\x01\x54\x4b\x3c\xaa\x9d\x3d\xe0\xce\x1e\x0c\x09\x63\x16\x7c\x59\x65\x77\xd6\x82\x2f\xbd\xcb\xa8\xc7\x0d\x8e\x25\x9d\x4a\xaf\x89\x68\x43\x3a\x6d\x6d\xf0\xd8\x5e\x12\xb4\x01\x4d\x9c\x23\x35\xea\x93\x1a\xc0\x9d\x96\x05\x34\x45\xd9\x7b\xb5\x19\x7e\xed\x1f\x33\x0c\xe1\xb6\xba\x8d\x72\x2b\x60\x4d\x9a\x7c\x4e\xb1\x0e\x4a\x9a\x8b\x1d\x96\x94\xae\x3b\xe1\x9c\x78\xbc\x94\x96\x65\x8d\xf0\xac\x8a\x20\x42\xa0\xed\x69\x47\xff\x4e\x26\x93\xff\xdc\xa3\x9e\x04\x43\xe1\xa3\xf5\xfa\x8d\xf7\x29\x89\x79\x77\x55\x21\x44\xba\x22\x6b\xb3\xad\x77\x38\xff\x71\x22\xe8\xec\xcb\x37\x5e\x66\x1a\x33\xf2\x77\x6a\xce\x84\xf7\xcf\x5a\xfe\x16\x42\xdf\x53\x41\x43\x7d\xaf\x8d\xfb\x70\xf4\xf4\x7c\xdc\x4b\x99\x42\xc5\xfd\x32\x9f\xe4\x21\xd1\xe2\xd1\x91\x0b\xe0\x99\x4c\x24\xdf\x5e\xaf\x49\xb7\x22\xcf\x60\x8b\xfe\x6d\x43\x3a\xd1\x01\x86\x83\xb6\xf6\xd6\x1e\x91\xc3\x01\x95\x13\x28\x36\x50\xe8\x47\x52\x7f\x78\x59\x5f\x6b\x5b\x6a\xeb\x1b\x51\x89\x31\xa2\x06\x24\x33\xaa\x17\xeb\x65\x75\xa1\x31\x3f\x2e\xf0\xca\xc4\xb2\x21\xdc\x2d\x2e\xa6\xb4\x59\x56\xab\x9d\x19\xd3\x65\x35\x7b\x70\xf9\xb0\x7d\x70\x29\x6b\xad\x17\x97\xcb\x5c\x16\x7d\x79\x40\xc0\xbb\x28\xb7\xbc\xd3\x9e\x5c\xbb\x6b\x9e\x4d\xfd\x23\xbd\x8c\x9c\x78\x30\xb1\xbd\x19\xd9\x53\x97\xdb\xe3\xd7\xd7\xc8\x34\xf1\xec\xe7\xe6\xa8\x27\x99\x94\xc1\xf2\x50\xb9\x3a\xbb\x85\x14\xf4\x41\xd9\xc1\xd4\x9f\x55\x8b\x6b\x54\xa7\xed\xb7\xc8\xce\x8c\x31\x60\xe3\x95\x4b\x05\xba\x7e\xb8\x72\xf3\x7f\x51\x89\xc5\x7a\x39\x62\x6a\x4e\xb7\x5b\x6d\xa2\xbe\xf0\x2d\xd4\x57\xe5\xc6\x1b\xd1\xd5\x61\x9a\x7b\xa5\x4b\x23\x0b\xb6\xc4\x6d\xd5\x2d\x28\xf4\x1d\x22\xbe\xbd\xfe\xca\xa9\x28\xc5\x76\xeb\x39\x17\x3e\xfd\x7c\x0d\x70\xfa\x70\xa3\x50\x9d\x5c\xf8\x1d\x19\x5f\x73\xd2\x11\xa6\x9d\x51\xc8\x58\xd3\xee\xf8\x9a\xb7\x1f\x69\x43\x1a\x73\xb4\xe3\xf1\xbb\x8d\x18\x53\x01\x71\x66\xac\x15\xe3\x0b\x79\x51\x4c\x21\xe6\x81\x5e\xc8\xcb\xc8\x74\xfc\x26\xa4\xde\x8f\xd5\xec\xc1\xc7\x87\xed\x83\x8f\xa6\xf3\xef\xab\x7a\xf1\x71\x39\xba\x59\x7c\x5c\x56\xef\xe3\xfb\x78\x03\xc7\xc5\x7b\xe4\x66\xfa\x5d\xc5\xa7\x92\x33\xbd\xd6\x1e\xb0\xcf\x5a\xfe\xcc\x06\xdc\xc9\x1d\x77\x83\xf0\x79\x35\xc3\x9f\xaa\x77\x66\xae\xce\x1f\x7e\x7a\x70\xee\xfb\x04\x3d\xad\xde\x2d\xce\x97\xf8\x33\xfc\x67\x76\xd9\x99\xd7\xcf\xcf\x08\xbf\x0e\x7f\x3e\xaa\x66\x0f\x1e\x3d\xfc\xfc\xe0\x91\xe9\xf6\x87\xea\xe9\xe2\xd1\x32\x12\x6e\x46\xaf\x17\x8f\x96\xd5\x07\x7c\x06\xff\x4d\x69\x23\xe7\xe2\xf3\x6f\x4e\x50\xa0\x8d\x7f\x46\x4a\x8e\x19\x16\xf8\x0c\x13\xbc\x89\xef\x71\x81\x6e\x55\x2e\x9d\x1d\x9a\xae\x6a\x11\x59\xb2\x14\x55\x48\x31\xb4\x7c\xad\x71\x51\xe8\x45\x29\x25\x80\x33\x73\xfd\xdd\x5e\x97\xdd\xe2\xf5\x62\xb6\x94\xa4\x80\x76\x3b\xa5\x42\x35\x63\x7f\x59\xcd\x1e\xbc\x7c\xd8\x3e\x78\x79\x7c\x8c\xae\x4b\xb2\x78\xb9\x44\x3b\x0c\x22\xae\xc6\xf7\xce\xf2\x55\x67\x7e\xfc\x41\x9f\x50\xc7\xb0\x40\xd3\x18\x20\x1d\x5f\x13\xf2\x61\x80\x63\x4b\x6a\x8e\x24\x40\x59\xe9\xe9\x70\x93\x9e\xc5\x47\xcb\xc9\xe7\x9c\x64\xa5\x5f\x80\x36\x9c\xd2\x66\x94\x72\x8b\x29\x73\x32\xda\x23\xee\xed\x70\xd8\xd5\xde\xe1\x61\x5e\x7d\x47\xd4\xd1\x9f\x19\x48\xa7\x5a\xd3\xf7\xa2\xb1\xe5\x1e\x81\x0a\xdc\xd8\xc7\xa5\x94\xce\x7b\x5b\xda\xb7\x2e\x24\x9a\xa4\x1d\xce\x94\xca\xf6\x5e\x75\x9b\xf7\x76\x5b\x6b\x46\xdd\x5c\xf1\xd3\x92\xf7\x5d\x0a\x3c\xbe\x11\x5c\x5a\xb1\x8c\x56\x86\x28\xb9\xfc\xc0\x24\x40\x89\x1a\x62\x40\xbb\xe8\xb0\x3c\x32\x2d\x18\x0e\x23\x03\xff\xed\x81\xea\x34\x2f\xeb\xeb\x32\x31\xff\x02\x17\x32\xd4\xb0\xc1\xe0\xf0\x98\x3e\x2d\x2c\x1a\x76\xe0\x2b\xb2\xb9\x7d\x32\xed\xc1\xfc\xae\xac\x40\xa7\x70\x9b\xa7\x6e\x23\x07\x48\x57\x2c\x2b\x5d\x79\x26\x55\xaa\xb4\xeb\x36\x6a\xda\xa4\x9c\x03\x63\x29\xa6\x43\x81\xd3\xba\xa8\x89\x9d\xf6\x65\xf1\x5f\x8f\xd5\x9d\x06\x95\x43\x50\xb5\x15\xbb\xfe\xec\xc7\x3c\x83\xbd\x94\xa5\xf6\x52\xab\xc4\x72\x82\x94\xe9\xa8\xc0\x1d\x66\x5e\xfc\xae\xee\x45\x21\x59\x71\x23\x4c\x71\x4f\x93\x08\xb1\x93\xca\x85\x05\xb7\x7b\x02\x78\x73\xc3\xd0\x28\x3f\xe1\x70\x32\x92\x94\xaf\x4c\xc2\x46\x69\xa8\xd0\xc4\x94\xe0\x6f\x52\x8b\xfc\x83\x16\xd2\xe5\x07\x3c\x60\x29\x6d\x61\x1d\x1b\x1e\xe8\x55\xa4\xa4\xa3\x6a\xff\xf9\x56\xd1\x76\xa0\xf0\x34\x71\x4d\x2d\xea\x53\xb7\xa6\xfa\x62\xd9\x17\xd7\xde\xd3\xf7\x3b\x2e\x99\x72\x5f\xca\x6b\x56\x6f\x77\x2a\x4a\x29\x8c\xbc\x05\x37\xd8\x3d\xd1\xb9\x26\xfd\x71\x7a\x97\xab\x68\x0e\xaa\x31\x68\xa0\x0b\xe7\xb9\x3e\x78\xe4\xb2\x2e\x87\x08\x26\x8c\xdf\xef\x22\xef\x32\xa2\xc2\x64\x8c\x66\xef\xdf\xb6\x5b\xf3\xe4\x13\xaf\xaf\xaf\x49\xf3\x4c\x57\x3d\x99\xf4\xbc\xb0\x9f\x9e\x96\xb4\xa2\xdb\xad\xc8\x65\x07\xdc\xeb\x0c\xa7\x30\x1a\xbf\xd0\xa9\x63\xaa\x43\x60\x14\x7d\xe3\x16\x1c\xd2\xbe\x42\x5d\x68\x87\xb0\xf3\xea\xc8\xed\x19\x15\xff\xa3\x71\x14\xe2\x4a\x5b\x03\x2c\x17\xe1\x0e\xd4\xb8\xd5\xc4\xab\x83\x79\xf0\xc6\x9e\x58\x9d\x25\x07\x7a\x4a\xa7\x69\xf0\x4e\xb9\xc1\x1d\x9a\xd3\xea\xcb\x67\x19\xcb\x1a\x30\xdd\xb3\x7f\xd4\xc0\x00\x1d\x22\xdd\x2e\xd1\x26\x31\xbb\xe4\x60\x2b\x84\x57\x17\x07\xcd\xc9\x2e\xb0\xc9\x24\xdb\xa9\xdd\xbb\x9d\xf0\x26\xb3\x07\xfa\x10\x2c\x7e\x02\x5d\x58\x35\x62\x0b\x0d\x38\x35\x62\x2d\xa9\xa4\x1e\xa2\x12\xa7\x47\xcc\xd1\xca\x7e\x8c\x0a\xaf\x92\x2f\xc0\xf9\xf0\xbb\xa0\x56\x95\xea\xac\x54\xb2\x91\x7e\x37\x25\x72\x4a\x52\x9e\x1e\xe9\xab\xec\xd1\x3a\x56\xa1\xf7\x49\x28\xa0\x58\x00\xf4\x0c\xc5\xa7\x79\x10\x22\xc2\xea\x92\xfb\xaa\xfb\x62\x24\x86\x9c\xa9\x67\x88\xf3\x27\x68\x6a\xf2\x19\x4c\x3b\xca\x56\x44\xb9\xcb\x84\x16\xa7\x7e\xbf\xf2\x19\xc2\xeb\xf2\xef\x52\xa0\xd4\xdb\x83\xca\xcb\x70\x64\x7d\x4c\xa2\x8b\x9b\xf5\xd8\x9a\x4c\xf0\x33\x6e\xd1\x69\x79\xd7\xd6\xb4\x09\x8a\xa5\x26\xa8\xc0\x00\x10\xd3\xbd\x40\x68\x5e\x96\xe9\x57\xfd\x56\x28\xaf\x97\x68\x32\x19\xee\x67\xd2\x4b\xbc\xaf\x33\x2a\xdc\xd8\x39\xff\xa7\x22\x40\xe6\xf8\x0b\x71\x5a\x08\x52\xf2\x6e\xfc\xb5\x52\x76\x25\x24\x9a\xa9\x2f\x8d\x0b\x00\x80\x5b\x25\x39\xc4\xd5\xd2\x8b\x72\x56\x55\x09\xad\xa2\xc4\x69\xc3\xe8\x31\x5d\x4c\x80\xee\x4d\x1f\x55\x0a\xe4\xa5\x77\x50\x40\x9c\xbe\x3e\x76\x87\x8d\x38\x7c\x16\x04\x9f\x07\xa7\x6f\x62\x07\x65\x68\x44\x94\xa6\x38\x97\x7a\xd0\x26\x95\xfc\x91\xae\xd7\x2a\xdf\x69\x99\x71\xfe\x50\xd2\xdb\xad\xc1\xf0\x98\x73\xa7\xf2\x16\x3b\x84\x3d\x45\xf5\x6b\xb6\x1a\x50\x56\xbf\x71\x55\x22\xad\x82\xf6\x1e\xf5\xa1\x74\xfa\x1d\xe9\xc0\x07\xdb\xcc\x61\xe8\x9f\xe2\x27\x66\x01\x60\x2d\x13\x9a\xf6\x90\xa9\xf0\x34\x3d\x45\x0b\xb1\xc4\xb4\xe2\x16\x0e\x05\x1c\x50\xcd\x80\x40\x6d\x1f\x39\xa8\x76\xc9\xe9\x52\xfb\x8c\xa4\x45\x0a\x2c\x78\xdb\x0a\xed\x14\xd0\x4c\xbb\xfa\x23\x69\x0a\x79\x72\x4d\x57\x1b\xce\x09\x13\x67\xa2\x16\x64\xda\xc9\x7f\x01\xd9\xa2\xdc\x54\xf5\x94\x76\xaf\xc8\xa7\x12\x9d\x16\xbe\xbf\x47\x31\xaf\x41\xc4\x85\x9a\xe4\x4b\xdf\xd3\xa0\x98\x17\x7e\x32\xda\x02\x5b\xb5\x63\xf9\x3b\xe0\x60\xe4\xa4\x6f\xc0\x2b\x75\xee\x5e\x49\xa2\x0a\xbc\x3f\xb3\x47\xb0\xc1\xf5\x86\xfc\x86\x42\xbb\x8d\x32\x13\x9b\xa4\xb3\x76\x37\x7e\x74\x4a\x47\xc4\xe6\x3a\x70\x06\x32\x61\x4a\xda\x25\x33\xcd\x40\x0c\x92\x6e\xec\x27\x9a\x68\x8c\x72\x49\x5a\x61\x5f\x86\x4e\xa4\x03\xdf\x29\xad\xab\xb0\x60\x1d\x3d\x0a\x97\xac\x59\xe8\x3b\x52\x5a\x44\x66\x0d\xfa\xc8\x54\x1c\x39\xe0\x52\x6a\xf5\x04\xf9\x4c\x3b\x11\xc7\x69\x19\x2f\x0a\xda\xbf\xd5\x7d\x41\x04\x0e\x53\x8a\x89\x9c\x29\xc8\x9c\x2d\x2f\xf9\x58\x47\x22\xbf\xca\x01\x01\xa4\xa7\x8e\x49\x6c\xa3\x40\x2f\x00\x4a\x23\x7b\x2a\x6a\xb9\x8c\xf5\xfb\x8b\x08\xa5\x28\xc1\xbc\xd2\x57\x4d\x40\xc6\xda\x34\x19\x40\xe7\x6d\x54\x72\x68\x82\x30\x3f\xed\x3b\x6c\xe3\xfc\xe1\xcc\x64\x38\xe8\x2b\x6a\x83\x94\x4b\x15\x7b\x73\x6e\x98\x3c\xe5\x56\x9a\x43\x47\xd0\x8e\x56\x67\xca\xfb\xc1\x94\xcf\xcc\x43\xea\x3b\x17\xba\x0e\x09\xe5\x10\x7b\xaa\xff\x9f\x0b\xaf\xf9\xde\xe5\xf0\x20\x4a\x6d\x71\x5b\x79\xcf\x15\x25\xcf\x2b\xe1\xe1\x39\xa4\xfe\x7c\x1e\xca\xab\x5c\x0c\x1f\xa6\x4e\x39\xef\x2b\x13\xc3\x2b\xc0\xe4\x21\x6b\xb0\x11\x80\x7d\x60\x7c\xd1\xf2\xf1\xaf\x8b\x63\x01\x7a\x8c\x91\x0b\xba\x1a\xea\x59\x40\x5e\xe9\xfc\xec\xf0\xf9\x65\xdd\xbd\xec\x9f\x58\xff\xda\x35\x08\xca\x7b\xc7\xb7\xc3\xf2\x9e\xe9\x5d\x26\x1d\xc2\xdd\x17\xa0\x75\x2a\xfa\xb1\x2b\x82\xf8\x84\xb9\xc9\x0a\xa8\x20\xd8\x22\x5c\x9f\xf3\x81\x3e\x84\xbc\xee\x1e\xb7\x3a\x15\x51\xa4\xbc\xf0\xd3\xc4\xc1\xb0\x96\x80\x55\xae\x0c\x64\x2c\x36\x90\x89\x4c\xe8\x64\xc9\x16\x7c\x89\x52\x7f\x5e\x83\xea\x7e\x4b\xab\x00\x35\xdf\xb8\xe0\x59\x3d\x26\x55\x51\xa2\x4a\x89\xa9\xda\x69\x41\x7b\x99\x6b\x4c\xe3\xec\x73\xe7\x5b\xd2\xee\x02\x2c\x3b\xdd\x98\x99\xc6\xde\x2a\x50\x1e\xc9\x27\xf2\x90\x03\x7d\x53\x10\x83\x09\x7a\xdb\xd8\x24\xd0\x7f\xdd\x08\x48\xf0\xae\x90\x30\x7a\xca\xc4\xe7\xbf\x11\x2e\xc4\x34\xca\xfc\xf9\x8d\x33\xcc\x67\x1c\x5a\xad\x36\xdb\x3a\x65\x79\xb4\xe0\x6c\xf6\x7d\x61\x3a\xde\x36\x48\xbb\x8a\xb2\x03\xf0\x79\xa3\x24\x6d\x48\xa6\x87\xd8\x64\x2f\xc7\x59\x1b\x66\xf5\x0d\xba\x15\x95\xd8\x6e\xb3\x16\x5b\xbd\x51\xc1\xbe\x49\x16\xec\xf8\x64\x29\x37\xa7\xa9\xa2\x9a\xa9\x7d\xaa\x35\xec\x03\x6c\x44\x10\x8d\x20\xd0\x2d\xaf\x84\xaf\x0e\xd3\x57\x4f\x98\x46\x8c\x22\x13\x7d\x40\x70\xb6\x40\x51\x5f\x5f\xaf\xe9\x0a\xa6\xa6\x40\x23\x15\x4d\xaa\xfb\xa2\xfa\xcd\xa5\x8c\x6c\xa6\x7e\xc8\x40\x94\xa9\x9d\x59\xb1\xd1\x53\x25\x38\xf1\xcd\x56\x2b\xa5\x6a\xb9\x52\xa9\x11\xa5\xc7\x2a\x32\xc0\x29\x58\x37\x46\xe5\x0e\xfe\x41\x45\x4c\x69\xb7\xbf\x01\x03\xa0\x11\x65\xeb\x46\xf9\x6c\x62\xbe\xc3\x03\xed\xf4\x7b\xcd\xf6\x1b\x99\x44\xe8\x44\xdb\x63\x64\x2a\x99\x09\x83\x3b\xbb\x61\xab\x52\x5e\x66\x1a\x57\xdb\x63\xd6\x74\xd0\xe9\x21\xf2\x5d\x7c\xef\x7b\xf0\x5d\xd6\x12\xd4\x7b\x4b\x0c\x33\x5b\x58\xb1\x7b\x10\xa7\x24\xeb\xd3\x26\x2f\xc7\xda\xf7\xdf\xcf\xa9\x93\x39\xe6\x00\x30\xa2\x42\x61\x0c\x8d\xb8\x98\x23\x70\x70\x09\xf0\xcc\x4b\x5e\xd1\xa9\x0a\xa9\xb1\xfe\xe2\x10\x4d\x83\x52\xa5\x03\x37\xe0\x40\xda\x51\x86\x19\xbc\xde\xa8\x42\x36\xf5\x36\xc4\x76\x9b\xd6\x1f\xec\x97\xc3\x1b\x0a\xea\xb5\x40\xc1\xad\xc5\xa1\x2f\x53\x37\xf6\xa0\x5b\x90\x3c\x3e\x37\xda\x16\x05\xea\x8e\xbe\xe6\x17\x2d\x0c\x17\xcd\xa1\x32\xcf\x0f\x3f\x5b\xad\x7b\xed\xa3\x6f\xf5\xd6\xed\x57\x07\xad\xec\x70\x70\x0e\xec\xa3\x82\x28\x86\xe0\xa7\x11\x82\xab\xec\x67\xa3\x05\xaf\x89\x9f\x83\x1c\x42\xbd\x5b\x84\x82\xa1\xc3\x26\xce\x6c\x17\xfa\x08\xa6\x5e\xf6\x74\xb9\x38\xae\x0f\xa4\x99\x3a\xa4\x19\xdd\x74\xd1\x57\xb1\x2d\x70\x20\xd1\xd8\xfa\x34\xcd\x0c\x82\xcb\xed\x0f\x11\xca\xc6\xca\x38\x18\xb3\xcc\xc9\x68\xa3\x8d\x87\x23\x79\x1c\x54\x68\x10\x13\xe3\x3d\x8f\x83\x60\xdc\x2b\xab\xf5\x2a\x1d\x8e\x99\xcf\x8a\x80\xf4\xd7\xc7\x1f\x9f\x58\xb6\x29\x17\x25\xe4\x40\x98\xf6\x32\xd0\xa2\x87\xa5\xca\x04\x38\x0b\x2c\xb4\x97\xe1\x0f\x99\x36\x15\xef\xd9\xfb\x7a\x88\xaf\xca\x0d\x01\xf7\xe8\x96\x20\xef\xaf\x52\xb3\xd5\xac\x65\x74\x55\xaf\x4b\x34\xf2\x59\x26\x5d\x5d\x3f\x07\x9c\xcc\x5d\x96\xe7\x44\xfb\xfd\x42\x83\xd1\x86\x95\xc4\x73\xd1\x07\x18\xd7\x3b\x19\x09\x97\xd9\x3f\x1b\xe7\x1a\xb8\xed\x09\xb9\x20\x9c\x93\xe6\xad\xfa\xd9\xc5\xf3\x22\xc7\xf5\x3d\xe9\xda\x0d\x5f\x11\x97\xbd\x2c\x75\xf5\x3d\x0a\x62\x91\x44\x04\xa2\x9a\xd3\x5f\x78\x29\x96\x7a\xdb\x89\x5d\xf3\x73\x0d\xed\xf5\xd7\x4f\x20\x51\x3c\x97\x90\x7c\xb3\xb2\x31\x5f\xb2\x62\xbb\xdd\x0e\xe1\xd6\x04\x21\x42\x4e\x85\xeb\x7a\xe5\x90\x36\xfe\xf8\xf4\xfb\xb3\xe7\xaf\x5f\xcd\x39\x66\x90\x4c\xe3\xc9\x59\xb1\x33\xe1\x59\x6b\xfa\x8e\xd7\x9c\x92\xce\x80\xe1\xd8\x07\x36\xc6\xf6\x71\xcb\xc9\x0b\x78\x7a\x53\x16\x50\x68\xfc\x04\x92\x40\xb7\x62\xaa\xab\x56\x3c\x68\x6d\xba\x00\xda\x15\xdb\x3c\xf0\xb9\x3f\x7c\xff\x22\x31\x4e\x63\x8a\x6e\xbb\x4f\x54\xac\x2e\x4b\x8e\x6e\x57\x75\x47\x7c\xaf\xf7\xb9\xbf\x46\x1b\xbe\xd6\x8e\x83\xd6\xba\x26\xb9\xaf\x91\xfd\xe8\xd1\x7a\xdd\xf7\x05\x28\xfa\x6d\x61\x65\x4e\xcd\x14\xfd\x83\x36\xaa\x13\xbf\x60\x7f\x5f\xfe\xe0\x99\xfa\xdc\x47\x16\x65\xbf\xa7\x2f\xda\x5d\x26\xec\xbb\xf1\x4a\xe9\xf9\xc6\x79\xd9\x84\x9f\x39\x37\x88\x9e\x0f\x7d\xaf\x0e\xf7\x69\xa8\x2b\x4e\xbf\x7c\xec\xbd\xf7\xe6\x2d\x50\x1b\x67\x3e\xfb\xc1\x7b\x1f\xb4\x17\xaa\x9f\xd3\x0f\x9f\xf8\x81\x70\xfa\x43\x7d\x59\xce\x43\x9d\x89\xa6\x23\xe5\xcc\x67\x04\xa8\x98\xb0\x12\x31\x12\x40\xcf\xe2\x30\xca\xcb\xb6\x13\xca\x0b\x48\x77\xe4\x0d\x27\x17\xf4\x73\xe9\x30\x33\x95\x16\x1b\xec\x90\xb5\x30\xbe\xe3\x25\x41\xe0\x18\x07\xe7\x29\x43\x58\xd8\x1f\x84\xad\xda\x86\xfc\xf0\xfd\xf3\xc7\xed\xd5\x75\xcb\x08\x93\x02\x10\xc2\xad\x2c\xb0\x91\xe7\xff\x05\x78\xe1\xf0\x4a\xdf\x57\xc5\xfd\x02\xe1\x23\x3a\x99\xf0\xc9\xa4\xb8\x5f\x1c\x55\x15\x9f\xae\x2e\x6b\xfe\x48\x94\x33\x04\x49\xb0\x8b\xfb\xc5\x31\x07\xc1\x2c\x26\xfe\xc1\xd8\x3f\x37\x4d\xe0\x93\x8a\x83\x7d\x30\xe4\x88\xe8\xa6\xd7\x7e\xf5\x87\xc4\xa7\xa4\xb7\xad\xf0\x9b\xac\x95\x60\xdf\x97\xcf\x72\x3e\x75\x03\xc3\x0b\x3e\xcc\x3b\xbe\x1d\x3a\x35\x7d\xfe\x56\x87\x7c\xff\xb8\x3f\xd6\x76\xdf\xfc\xfa\x7b\xe6\x0b\x5a\x7e\x92\x8f\x2e\x3d\xe8\x73\x45\xef\xd9\x9d\xd3\xb3\x57\x78\xf2\x82\x99\x9b\x46\xc1\xd1\x31\x43\xc9\x6c\xbb\x2d\x59\x55\x00\x9c\xb0\xea\xc6\xfd\xff\xfa\xcb\xfd\xbf\xdc\xbf\x3f\x15\xa4\x13\x00\x0e\x78\xff\x52\x88\xeb\xb2\x43\xa7\xf3\xe0\xc5\x29\x99\x17\xf7\x55\x8e\x3c\xbb\x19\x4e\x8b\xe2\x98\x1d\x93\xb9\x38\x96\x3b\x82\x68\xd1\x68\xb1\xf4\xb4\x0b\xd4\x6e\x48\x6e\x7f\x70\x84\xa9\xdb\x6a\x3b\xec\xed\xe2\x84\x03\x35\x63\x3e\x83\x84\x1a\xd3\x55\x7d\x45\x40\x51\xe3\x2b\xf3\xaf\xd7\x1b\xae\xd4\x37\x0c\xed\x76\x1a\x66\x41\x54\xf7\xff\xc2\x4f\xff\xc2\xee\x2b\xd0\x04\x73\xff\xc9\xeb\x51\xfb\x75\x58\x2c\x80\xf7\x44\x3c\x03\xbb\x6c\x97\x89\x44\xbf\x55\x17\x33\xd8\xf3\x0a\xdc\x90\x6e\x35\x2f\xe4\x9f\x3b\x6c\xdf\xbc\x6c\x1b\x79\xfb\x37\xe6\xb5\xfd\xed\x95\x79\xbc\x26\x35\x33\x05\xd4\x8f\xdd\x72\x87\x1b\x22\xc8\x2a\x8b\x05\x4d\x8e\xaa\xea\xd5\x64\xf2\x6a\xaa\x8a\x00\x69\xae\xda\xf5\xe6\x8a\x75\x7d\x73\x25\x2a\xdb\x5b\xdb\x97\xe7\x4d\xb1\x5b\x6a\x6d\xa1\xaf\xeb\x0e\x90\x0b\x6b\x6b\x3c\xce\x61\x7c\x13\xc9\x0c\x48\x22\x3a\x3e\xfe\x0d\x9f\xda\xb2\x2f\xe8\x15\x15\x21\x34\x45\x1b\x2f\xd6\x35\x15\x6a\x61\x82\xe7\x1b\xd6\x10\xde\xad\x5a\x4e\x4a\x8a\xa6\x1a\xbe\xb9\x2c\xce\x0b\x5c\x8c\x0b\x84\x46\x42\x1b\xa6\x61\x2c\x54\x0d\xa4\x05\x2c\x1b\xa1\xfd\xeb\x23\xdc\x72\xc3\xe2\xc5\xd6\xfb\x87\xdf\x38\x9d\xfd\x79\x43\xde\x6d\xde\x3f\x6e\x99\xa8\x29\x23\xfc\xf7\xe4\x46\xe9\xea\x6d\xfa\xce\x2b\x08\x10\xb8\xaf\x40\x4b\xca\xe9\xff\x41\xf7\xd1\xc8\x24\xdf\x9b\x4c\x4a\x51\xf1\xc5\xc9\xd2\xa5\x2f\x71\x0a\x13\x0d\xf6\x6c\x9d\x62\x04\xf2\x7a\xf9\x18\x96\x0c\x60\x0e\xba\x1e\xf1\x4a\xaf\xce\x2d\x6d\xe6\xc1\xaa\xd0\xa6\x40\x3b\xe7\xe8\x47\xea\xd5\xa5\xb5\xf2\x07\xb1\x8a\x7a\x6d\x44\xef\xda\xf0\x05\x5d\x06\x58\x95\x54\x4e\x26\xf7\xba\xf9\x7b\x72\xf3\x29\x9a\x53\x4b\x53\x4b\x0b\x69\xff\xa8\x5c\xc8\x5e\x2d\xd1\xde\x5e\x79\x56\x3b\x23\xe1\x00\x38\x4c\x42\x5c\xde\x71\xa8\x0a\xfa\xdd\x64\x28\x5e\x74\xb5\x4f\x33\xd3\xa9\x2a\xb9\x85\x6d\x3a\xb7\x99\x0f\xe4\x46\x45\xd8\xed\x50\xf3\xe6\xb2\xee\x9e\x50\x2e\x6e\x1e\x79\x84\x3f\x99\x1c\x25\xdf\xc1\x46\x9d\x1f\x0d\x7c\xb5\x0b\xd7\x3a\xab\x63\x2a\xde\xad\xeb\xd5\x87\x62\xe4\xdb\xad\x6c\x2b\xa7\xa2\x2a\xde\x73\x42\x58\x31\xdc\xb9\x12\xea\xd9\x00\xaa\xf8\x0e\xb7\xef\x00\xc1\x7c\xc0\xe4\xef\x70\xfa\x78\xb8\x7a\xd8\x9c\x65\xb9\x86\x96\x52\x8a\xdb\xbb\xa6\xdc\xad\xa9\x97\x67\x6c\xc4\x33\xd9\x35\x8d\x13\x9f\xaf\x04\x28\x29\x38\xa1\x1a\x3e\x16\xa1\x9d\x96\x78\xea\xa6\x79\xad\x06\xc6\x21\x19\x6f\x2b\x49\x46\x05\x77\xb9\xcf\x35\xd2\x99\xce\xdd\x10\x94\xde\x79\x79\x2c\xbc\x2f\x32\x64\xe7\x9d\xb3\x0a\xf2\x7e\x27\x07\x0e\x52\x66\xf5\x0a\x13\x65\x76\xed\xaa\x06\x93\x29\x84\x53\x57\x54\x60\x32\x7d\x72\x56\xb5\xf2\xff\x77\x86\x27\xc9\x62\x58\xc6\x56\x92\x42\x25\x1e\xf1\x93\x41\x95\xac\x22\xb6\x00\x9a\x4b\x76\x16\xf3\x8a\x20\x9c\x24\x8e\x82\x0c\x4b\xd5\x59\xc9\x91\x99\xea\x5b\x48\xbd\xc2\x21\xe5\x9d\x53\x61\xcc\x8f\x66\x36\x4a\xd5\xa0\x40\x7c\xa0\xac\x99\x17\xb6\xb3\x85\x96\x31\x35\x47\x35\x96\x4f\x3e\x90\x1b\xe5\x13\x18\xde\x0b\x16\xfe\xe4\x36\x48\xe1\xe3\xef\xea\x18\x53\xcb\xaa\x9e\x0a\xb9\x68\xf1\x5b\x72\xf5\x8e\x34\x0d\x69\x0a\x97\x09\xd7\x13\xec\x63\xf4\x1f\x95\x15\x4e\xfe\xa7\x90\x43\x76\xb8\x0b\xba\x31\x1c\xa9\x33\xed\x88\x00\xba\x76\x42\x16\xa0\x0f\x7c\x49\xc3\x3b\xe5\x52\x08\x0e\x9a\x90\x27\x4f\x72\xb2\xd1\xaa\xa7\xeb\x0b\xbb\x95\x60\x62\x16\x18\x83\x51\xee\x76\x97\x2e\xaf\x2c\x4a\x40\x09\x6d\x20\x2f\xd4\xf2\x12\x17\x72\x9c\x59\x68\xb5\xb0\x26\x6f\xb1\x5e\xd6\xef\xea\x6e\xac\x7e\x7f\xe9\xa2\xfe\xe3\x56\xc6\xc8\xcd\x3f\x79\x5d\x14\x4e\xf8\xb7\x9a\x87\x06\xe5\x46\x55\xcb\x2d\x6a\x3c\xe5\x2a\x88\x86\x97\x17\xe3\xde\x55\x3b\x0d\x17\x6d\xae\x17\x2d\x5a\x17\xda\xd9\xa3\xd1\xdf\x73\xe2\xe0\xc9\xee\xb5\xd0\xe5\x50\x16\xdc\x6c\x42\x1a\xb8\xe9\xb9\x63\xd5\xb6\x5b\xf3\x8c\xb2\x67\x6b\xfa\xfe\x52\x3c\xca\xbc\x6b\x6a\x51\xef\x4a\x86\x09\x02\x5c\x1c\x57\x06\xee\xd0\x92\xa0\x1e\xe9\xa4\x30\x8f\xdd\x04\x41\x52\x37\x0b\xda\x74\x1a\xfe\xd4\x1a\x71\x50\x38\x3b\x8d\xf8\x3c\x2c\xb4\xd3\xae\x22\x20\xe9\x7c\x11\xe1\xb8\x6b\x49\x69\x1a\x02\x32\xd0\x7c\x3d\x9c\xdd\xd5\x0b\x4c\xa6\xda\xc3\x4c\x3d\xf8\x0e\x93\xe9\x0f\xac\xde\x88\xcb\x96\xd3\xbf\x13\xfd\xf4\x6f\x98\x4c\x9f\xb5\xfc\x1d\xe0\x1a\xab\x47\x3f\x62\x32\x7d\xa5\xe1\x1a\xd4\x93\x3f\x62\x32\x7d\xdc\xb2\x8b\x35\xd5\xe8\x88\xd5\x9f\x24\x89\xc1\xd5\xa3\x7e\xff\x16\x93\xe9\x5b\x7a\x45\xda\x8d\x2e\xf0\xad\xec\xcf\xbb\x96\xeb\x9f\x3f\x60\x32\x25\x70\xa7\x7c\x57\x77\x97\x6f\xdb\x3e\x44\x5b\x27\x3b\x19\x6d\xe5\x1b\x15\x44\x0c\x2a\x62\x1f\x1f\x8f\x64\x38\x75\xe6\x74\x9a\xe6\xd2\xbf\xaa\x3f\x10\xed\x4d\xb2\x60\x4b\x94\x43\xe9\xd7\x37\x74\xa1\x67\x6b\x6c\xe7\xb8\xc0\x75\x55\xdc\x97\x14\x74\xdf\x91\xdd\xfd\xe2\x98\x8d\x58\x55\x55\x4f\x26\x93\xd2\xfb\xea\x49\xbb\x82\x45\x77\x1f\xc9\xb3\x5e\x73\xf2\x82\x8a\x35\x99\xb7\x52\xdc\xa9\xe9\x7a\x2e\xf9\x51\xac\x74\xa7\xf3\xdb\xeb\x16\x96\x7a\x5e\xef\x54\xea\x19\x80\xbe\x56\x73\x05\x1d\x7f\xdb\xca\x29\xcb\xcc\xd5\xed\x6e\x68\xae\x48\xf6\xd2\x07\x6c\x09\xd5\xb2\x2c\xa2\xfe\x9a\xea\x2e\x38\x61\x21\x7c\xae\x45\x83\xbf\xa2\x11\x3b\x65\x15\x5b\x7c\xb3\x9c\x03\x8a\x70\x52\xae\x23\x35\x5f\x5d\x96\xcf\xc1\x78\x5e\x3d\xd1\x2e\x96\x0b\xb6\x04\xa0\xcb\xed\x76\xb1\x04\x74\x49\xcd\x3d\x4d\xd5\x6c\x6c\xb7\x64\x0a\xf3\x83\xdc\xf0\xad\x43\x82\x4b\x41\x71\xa6\xd2\x7c\xbd\xfe\xc4\x08\xaf\x1a\x79\xa8\x81\xa4\xf2\x5d\xed\xce\xa3\xd7\xfc\xfb\x28\x27\x6f\x93\x00\x84\xef\x15\xff\x2e\xeb\xce\xe4\xdc\x33\x09\x7c\x74\xb1\x7c\x36\x65\xaf\xbc\xec\xf9\xaa\x25\xa0\x11\xaf\xbe\x93\x5d\xbc\xae\x79\x47\xbe\x27\xdd\x75\xcb\x3a\xf2\x1d\xa9\xa5\xdc\x97\x59\xc9\x5c\xfe\x4b\xc8\x26\x62\x8d\x01\x23\x2f\x07\x05\x40\x36\x8b\xb2\x13\x46\x47\xcf\x02\xd8\x72\x53\x92\x56\x6c\xc1\x97\xb8\xad\x66\xb8\xae\x8e\x4e\x1e\xb4\x0f\xa9\x29\xd7\x1e\x1f\x23\x7a\x51\xfe\xc7\xff\x05\x54\xf3\xd5\x65\xcd\x1f\xb7\x0d\x79\x24\x00\x41\xb1\xae\x8e\x66\xa3\x77\x9c\xd4\x1f\x76\xb2\x0f\x72\xa1\x6b\x13\x09\x44\xa7\xdd\xe6\x9d\xba\xc3\xcb\x19\xc4\x5d\x70\x7a\x55\x22\xbc\x09\xde\xb4\xc7\x27\xd8\xb4\x65\x8a\x8c\x36\x40\x0a\xdd\xb2\xda\x78\x32\xa4\x9c\x31\xda\x3d\x65\xf5\xbb\xb5\x9f\xad\x45\x3b\x4a\x9b\xe0\x14\x03\x35\xf7\xec\xe9\xa3\xb7\x3f\x7c\xff\xf4\x0c\xb9\x6f\xf4\xb1\x4b\x82\x4c\x53\x64\xfa\x7d\xdb\x2a\x7f\xce\xea\x33\x1c\x83\xde\x51\x5a\x7d\x90\x0b\xa3\x7d\xf6\xd5\x31\x54\xbb\x07\x6a\x25\xaa\x6e\x64\x9f\xc8\x7b\x5a\x15\xbb\x94\x15\x7b\x30\xd4\x3f\x12\x77\xe6\x66\x01\xd2\xff\x28\x0b\xb8\xef\x19\x09\x2b\x30\x60\x89\xbf\x55\xcf\x1d\x71\x55\x7f\x80\xef\xae\xab\x56\xfd\xff\x23\x15\x97\x4f\xd4\x35\x52\x5d\x4b\x36\x5c\x4a\xf2\xba\xe1\x6a\x23\x6f\xfb\x86\x5e\x5c\xa8\x46\x44\x5c\x99\x31\x9f\x9a\xd6\x5e\xf4\x15\xa8\x9e\x10\x8f\x6f\xf0\xc7\xf1\x37\xd2\x9b\xd5\xb4\x38\x3f\x27\x52\xba\xdc\xac\x49\x81\x6f\x21\x2f\xaa\x4a\x71\x87\xb0\x2a\xab\x58\x5f\x7e\x4f\x9d\xa2\x06\x4b\x70\x51\x90\xcf\xd7\x2d\x17\x5d\xb1\x0c\xd0\x82\x8a\x4d\x47\xc6\x92\x8a\x56\xa2\x18\xdd\xb5\x4d\x39\x0f\x7a\x96\x14\xbd\xe8\x0a\x8c\x9a\x2b\xb1\xd8\xcf\x9d\xe9\xdb\x87\xa1\x83\x3b\xdc\xc4\x07\xc1\x0f\x15\xc0\xe8\xfe\xf4\x0b\x66\xb0\xf6\xd4\x0b\x2b\x10\xf4\xc1\x74\xd9\x02\xa0\x31\x09\x70\x11\xa1\x02\xdf\xac\xa1\x9e\x04\x98\x7d\xf0\x24\x87\xf7\x22\xd9\x32\x1b\x04\xae\xfa\x98\x07\xb9\xc8\x76\x6c\x21\x96\x3b\x9c\x62\xc7\x65\xcb\x1e\x9d\x84\x45\xfb\xd4\xf8\x47\xc6\x8a\x68\x8a\xe7\x31\xe1\xf2\xdf\xce\xfa\x3e\xea\x6d\x6d\xb6\xdb\x43\x80\xdd\x7d\x75\xbf\xfa\x84\x88\xfd\x72\xf7\xae\x39\xfd\x58\x0b\x12\x90\x27\x70\xcd\x3f\x89\x40\x7b\x3f\xf0\x39\xb7\x02\xdf\xba\x0c\xc4\x72\x2d\x7b\xb2\xc8\x06\xec\xde\x6e\xa8\x76\x9f\x0d\x3c\xb8\x76\xff\xa3\xc1\xda\x13\x9e\xf2\xe0\x26\x92\x2f\x07\xdb\x09\xb9\xd4\x83\x1b\x09\x3f\x1b\x6c\x21\x60\x7a\x0f\x6e\x20\xf8\x6a\xb0\xfe\x80\x85\x3e\xb8\xfe\xe0\xab\xc1\xfa\x3d\x86\xfc\xe0\xda\xbd\x6f\x06\xeb\xf6\x99\xfb\x83\x2b\xf7\x3f\x1a\xac\xdd\x49\x0a\x87\x53\xbf\xfd\x64\xb0\xe6\x44\xe8\x38\xb8\x81\xe4\xcb\x03\xda\xf1\x18\xf6\x3b\xb6\xe3\x7d\xb9\xff\xf4\x72\xe0\xbd\x3d\xe7\x97\x2d\xc9\x49\x27\xec\x2b\xca\x2e\xd6\x64\x25\x5a\x1e\x1d\x6b\x52\xea\xfd\x49\x07\x9b\x76\xf3\xb5\xc2\xee\xe0\x95\xeb\x3a\x5f\xff\xb5\xfe\xac\x23\xa0\x7b\xe2\xfe\xf6\xba\x9c\x8d\xb8\x49\x4d\x2d\x39\x7d\x80\x2e\xf0\x7e\x57\xbe\x57\xf5\xfd\x8f\x4c\xb2\x8b\xf4\x58\x76\xa0\x30\xda\x44\x3e\x7d\x47\x2e\x5a\x4e\xce\x08\x6b\x9c\x43\xb4\x7b\x56\x85\xde\xfc\x1d\x11\xfa\x9a\x55\xdc\x7c\x59\x3c\x5a\xad\xc8\xb5\x9c\xe3\xfe\xa6\x30\x9d\x4c\x28\x18\xb0\xf8\xae\xe7\xc6\x3e\xc9\xc3\xb6\xf8\x09\x26\x60\x2e\x9c\xb5\xd4\xcf\xb8\x6b\x40\x19\x15\x80\x48\x08\xbf\xfc\xd7\xfa\x73\x49\x71\xf1\xdb\xa7\x6f\x0b\x9d\x16\xe1\x56\x07\x61\xde\xd2\x66\xce\xb4\x1d\x12\x17\xa0\x03\x1e\xb6\x45\x8a\xd0\xbc\xd5\xd4\xdd\x25\xe1\x81\x31\xb2\x9c\x61\xe6\xcc\x91\xc8\x0b\x52\x1b\x0c\xae\xbf\xdd\x8d\x48\xe4\xb1\x2e\xc2\x50\x32\xfd\xea\x39\x13\xb0\x45\x4a\x0e\x73\x73\xab\x03\x51\x9e\x37\x8e\x0c\x07\x27\x0a\xd2\x4d\xe0\xd0\x61\x24\x3f\x5f\x6f\x1e\xbd\x7d\xfc\x9d\x99\x31\x0e\x92\xf9\xc8\xf1\x97\x7c\xcf\x06\x55\xdb\x6e\x78\x73\x1e\xc4\x71\x7c\xad\xad\x99\x86\x2b\x63\x9a\xee\x57\x16\x6a\x12\x71\x76\xff\xaa\xb1\x5d\xd4\x9d\x78\xd7\xb6\x22\xc6\x0b\x4f\x4f\x38\x2b\x43\x83\xe8\xae\xbc\x86\x7d\xaf\xd5\x8f\x74\x45\xe6\xa6\xba\x42\x1e\x7d\x5d\xcb\x05\xf8\x6a\xbc\xa9\x79\x7d\x95\xb3\xc9\x85\x8a\x20\xcc\x2c\x52\x1e\xd8\x34\x1f\x7e\x63\x01\x33\x47\x4e\x1f\x74\xbb\x83\x21\xcb\xca\x4b\x24\xc5\xe2\x07\xed\x43\x06\xa2\x30\x5f\xd0\x45\xbb\x5c\x56\x44\xfd\x6f\x8f\x81\xe1\xcd\x9a\xa5\xe8\x3b\x6d\x57\x43\x80\xc6\xd7\x07\x4a\x2b\x5f\x2f\xbe\x77\x17\xb7\xbb\x1e\x14\x83\x7c\x27\x4c\xb5\x41\x5b\x49\xcf\x00\xb2\x05\x5b\xaf\x35\x3f\x4c\xa2\xa4\x0a\x53\xa0\x32\x21\xb2\xd0\xa7\x36\xe8\x13\xdd\xed\x41\x9c\xd9\xd3\xb4\x8f\x2a\x12\x07\x89\x44\x44\xe1\x7c\xa0\xa2\x17\x25\x43\x7e\x07\x79\xd0\x41\xb6\x3b\x08\xec\xe3\xf0\x6e\x9a\x58\xe5\x9f\xad\xb3\xff\xc0\x6b\x81\x36\xdd\x9c\xed\x76\x7b\xe1\xba\x74\xbb\xf2\x2c\xb5\xe0\x24\x3e\x4a\x32\x8b\x3d\xd7\x34\x68\x86\xed\x64\x8b\x29\x16\x11\xea\x95\x3f\x0d\x4c\xf5\xeb\x00\xc0\xa9\xaf\xd9\x15\x0f\xba\x29\xdf\x99\xde\xcc\x05\xfe\x45\x06\xa0\xa0\xfd\x57\xd9\xfe\xed\xc7\x70\xe8\x06\xe9\x00\x75\x0e\xbd\x06\xc3\xed\xf9\xe6\xf5\xd9\x5b\xff\x1e\xfb\x19\xef\x63\x73\x01\x33\xbd\x1e\xbd\x03\xa5\x87\x5c\xc2\xb2\xef\x3f\x84\x5d\xef\xc9\x59\xe0\x77\x5d\xb6\x9d\xd6\xd5\xdf\x15\x2e\xbb\x12\xf8\x81\x22\x5c\x3c\x79\xfa\xe2\xe9\xdb\xa7\x90\xf1\x5c\xde\xbb\xd7\xcf\x9f\x3c\xe3\xed\x55\x8f\x3b\x27\xe6\x78\x68\x17\x02\x71\x0a\xa4\x95\xb6\xe0\x5b\xd9\x56\x74\x61\xf4\xa3\xf7\x4e\x96\x90\x1b\xcc\xf5\xba\x21\x89\xbb\x66\x8b\xaa\xaa\xaa\x4f\x83\xaf\xaa\xa2\x98\x97\xac\x6a\x31\xaf\x8a\x53\xda\x54\xc5\x71\x8d\x4b\x67\xb5\x3a\x32\x56\x2b\xcd\xac\xb9\x34\x72\x84\x35\xdd\x8f\x54\x5c\x9e\xaa\x4c\x80\x36\x3d\x20\xb7\xb9\x91\xef\xd9\x94\xb4\x73\x66\x8b\x97\x1c\x80\x52\xc2\x3e\xb4\xa1\x3e\xd8\xbc\xa9\x6d\x11\x84\x22\x5f\xb7\xab\xfa\xf3\x0f\xdf\xbf\x78\x01\xaf\xe7\xdf\xcc\xfe\xfd\xff\x1e\xa8\x9c\x72\x81\x84\x2c\x52\x89\x1e\x96\x4b\x45\x2d\x91\xa1\x4a\xbf\x17\x23\x91\xcd\xf3\xa7\x94\xed\x74\x1a\x51\x80\x0a\x6b\xe4\x1a\xab\x52\x59\x32\x84\xf1\x03\xa9\x3d\xfb\x55\xc6\x19\x04\xc8\x34\xf8\x89\xad\x7f\xc8\x4c\x21\x74\xa4\x8d\x2d\x66\x4b\x84\xbb\x6a\xb1\x70\x8c\x49\xa6\xc3\x2e\x25\x64\xea\xec\x0b\x70\x07\x7a\x45\x8e\xf9\xc8\x2c\xce\x71\x7b\x2c\x7e\x53\x31\xb0\x62\xcd\xb0\x0e\xc4\x58\x2c\x11\xc2\xed\xb1\x8d\x68\xed\xec\x4a\x8e\xba\x05\x5d\x7a\xbe\x4c\xdd\x0e\x01\x8e\x54\x31\xa1\x4d\xf7\xbf\xff\xe3\xdb\xff\xfd\x1f\x4f\xaa\xc2\x2a\xfd\x07\x1c\x4e\x6a\x57\xc9\x0e\x30\xbb\x2f\x01\x6d\xca\x58\x49\xc2\x7d\xcd\xb5\xef\x1d\xac\x1a\xed\xce\x36\xab\x15\xe9\x3a\xf5\x0a\xb9\x98\x34\x57\xc2\xa4\x67\x0b\x4b\x28\xba\xf1\x55\x5a\x25\xd7\x82\x37\xf2\x23\xbe\xac\xdd\x09\xca\x98\x2e\xe9\xca\xe4\x3e\x55\x4e\x6f\x4a\xe3\xdb\x3c\x01\xfb\x15\x69\x5e\x92\xae\xab\xdf\x13\xdb\xe1\x91\x8e\x1c\x20\x2a\x72\x60\xfc\xef\xb3\x93\x79\xd0\x91\x44\xf1\x55\xb6\xb8\x56\x3e\xe9\xe3\x7f\x9f\xfd\x5b\x58\x38\x54\x60\x05\x25\xff\x3d\x2c\x19\x68\xa2\x82\x82\xff\x2f\x2c\x18\xa8\x94\x54\x41\xe3\xd6\x4e\x2f\x4a\xf2\x9b\xea\x3f\x66\xb3\x70\xea\x3c\x35\x11\x94\xdf\x05\x6f\x7d\x4d\xa4\x7a\x8d\xed\x5a\xf5\x79\xff\x92\xdf\x54\xdf\xcc\x66\x93\x09\x79\xf8\x6f\xb3\xd9\x76\xfb\x6f\xb3\x7f\xaf\xaa\x8a\xc8\x0f\x73\xc8\x29\xde\x87\xff\xfe\xcd\x37\xaa\xa4\x3c\xd9\xc3\x42\xd4\x82\x06\xca\xbd\xde\x55\xb7\x1b\xbe\x9e\x13\x7c\x45\xc4\x65\xdb\xcc\xc5\x0e\x6f\xaa\x7a\xea\x69\x1d\xf4\x47\x23\x6f\x30\xbc\x0c\xcf\x9d\xcd\xb4\x53\xe3\xa8\x82\x7d\xab\x5b\xda\xc4\x49\x70\x6d\x0f\x5a\x2f\xc0\x3a\x5f\xa6\xb5\xa8\x34\xfc\xe6\xb6\xad\xc8\x34\xdc\x07\x92\xdf\x16\xb5\xd8\x74\x98\x4e\x2f\x95\xe5\x50\xc1\xcc\x2a\x20\xe7\xda\x73\x46\xd3\xa0\xdc\x6e\x55\x00\xb3\x9b\x76\xfe\xb2\x9c\xda\x62\x2d\x9a\xb7\x2a\xb1\x18\x95\x2b\x05\xa8\x6f\x14\x77\x26\xea\x86\x6f\xb4\x4e\x00\xb8\x11\x82\x37\x92\x65\x50\x7b\xc5\x1f\x2c\xef\x99\x02\xee\x4f\x81\x40\xa3\x5a\x7d\xfa\xf6\x92\xb7\x9f\x58\xc5\x75\x0a\x38\x6d\x19\x0d\x77\x99\x98\x72\xfd\xe7\x5b\xf2\x59\xe4\x67\x8f\x27\xb3\x47\x2f\x4a\xea\xb7\xe1\xe7\x76\x84\xfa\x51\x5b\x05\x05\x2c\xd2\x75\x21\x94\x7a\xb2\x00\x2b\xa8\x20\x9f\xc1\x64\xb8\xe9\x50\xab\xef\x19\x5f\x7d\xe9\xbe\xaa\xdf\xb5\x3c\xf9\x46\x25\x55\x37\x4b\x66\x6b\x70\x4a\x4a\xf5\xfd\x1d\x96\x7a\xbb\x0d\x7a\x8d\xb9\xb7\xf2\x6d\x55\xdb\xa5\x96\x4b\xd9\xd9\xa5\x24\xfd\x4b\x29\x60\x29\xeb\xe9\x39\x70\x44\xf2\x6f\x00\xdb\xfb\xfe\xe9\xd9\x5b\x03\xf4\x27\xdf\x8c\x01\x52\x65\x2c\xda\x71\x71\x0c\x11\xea\xf2\xa1\x96\x7d\x03\x49\x5c\xb5\xf1\x2b\xc5\x60\x41\x49\xd6\x57\x54\x4e\xdb\x86\x29\x9d\x45\xe3\x1c\x6a\xa0\xbc\x8f\xf8\xa2\xb0\x5e\xe0\xf1\xb8\x69\x89\x42\x83\xef\x08\xb9\xd2\x80\xf2\xba\x86\x31\x65\xe3\x9b\x76\xc3\xc7\xf5\xf5\xf5\x74\xfc\x84\x36\xf2\xd7\xb8\xfd\x48\x38\xa7\x0d\x19\x53\x31\xfe\x48\xeb\xf1\x7f\xd7\x4d\xf3\x9a\xbf\xd6\x4f\xcf\x6a\xd6\xbc\x6b\x3f\xff\x76\xdd\xbe\xab\xd7\xdd\x7f\x1b\x4c\x7a\xa3\x77\x18\x2b\x3f\xca\xd3\x02\x8d\x98\x1b\x50\x74\xc2\x98\x31\xbb\x30\x03\xf3\xf9\x94\x76\xcf\xea\x4e\x7c\x0b\x1a\x0c\x0d\x31\xee\xcf\x46\x49\x0c\x3c\x75\xf8\x70\x77\x80\x0e\x14\x7c\x19\x47\x1c\xa2\xfe\x2a\x81\x15\x9c\xac\xd2\x6e\x82\x7a\x11\x6b\x95\xe7\x67\xed\x4d\xad\x0a\x4c\x26\x20\xb6\x1c\x55\x95\x18\xd6\x8a\xca\x3a\x1e\x8c\x57\x97\x72\x3f\x8a\x6a\x23\x2e\xee\xfd\xdf\x42\xd7\x51\xfd\xee\xec\xf5\xab\xa9\x62\xef\xe8\xc5\x4d\xc9\x35\x1e\x8b\xe6\x0d\x92\x60\x0c\x45\xba\x99\x38\x68\x0a\x5d\xe8\x51\xaa\xfa\xba\x1c\xba\x27\xe7\x72\xa2\x7e\x15\x98\x2e\xc4\x52\xb1\x12\x5c\xca\x79\x95\x9b\x66\x15\xd0\x02\xf0\x11\xfa\x67\x4c\x94\x07\x2d\x67\xa8\xfb\xcc\x14\xe6\xaa\x47\x8a\xc5\x5e\xb5\xeb\x02\xe1\x34\x52\x25\x29\xad\x42\x57\xe4\xf1\x15\x45\xa0\xe8\x8b\xb7\x90\xfb\x50\xa5\xf5\xbe\xff\x5f\x97\x42\x5c\x77\x51\x40\x0a\x92\x87\x89\xe1\x08\x8f\x8b\xfb\xf7\x21\x16\x45\x1f\x12\xdc\x64\xde\xf1\xf6\xd5\x9f\xda\xcd\xb8\xe6\x64\xbc\xe9\x28\x7b\x3f\x76\xd1\x92\x2a\x13\x0c\x6b\xc7\xb2\x4b\xe9\x1e\xd3\xc1\x22\xe3\xb7\x97\xb4\x1b\x7f\xa2\xeb\xf5\xb8\x16\x82\x5c\x5d\x0b\xb9\x29\x37\xf2\x50\xbb\x24\xea\xd3\xf6\x02\xfe\x36\x53\x37\xd6\x43\xc5\xe3\x4f\x97\x74\x75\x39\xa6\x6a\x3f\xaf\x5a\x76\x41\xdf\x6f\x38\x51\x10\x4e\xf2\x0b\x8d\xc0\xe5\xd5\x42\x3b\xf3\xf5\x74\xfc\x66\x4d\x24\x17\xd3\x11\x61\x9b\xfa\xf1\x92\x0a\xb2\xa6\x9d\x18\x5f\x6b\x15\x28\xd4\x65\xfa\x4c\xd8\x47\xca\x5b\x76\x45\x98\x98\xfe\xb5\x9b\xba\x1e\x29\x68\xb5\x71\x71\xcc\xa7\x57\x8a\x69\x73\xce\x28\x64\x87\xd3\x4b\x29\xa3\x7b\x24\x70\x61\x0b\xb5\x39\xe0\x0b\xb9\x91\xd5\xb4\x33\x74\xeb\xf9\xb6\xe4\xb9\xc9\x3e\xbe\x86\x4d\x26\x89\x4f\x26\xc0\x93\x28\x3e\xf5\xd4\xfc\x31\x5f\xdc\xaa\xdb\x62\x5e\x14\xc7\x04\x2b\xd7\xb2\xe2\xed\x25\x19\xbf\xab\x57\x1f\x08\x6b\xc6\xea\x1a\x6d\x48\xa3\x56\xb6\x66\x63\xa2\x4c\x6b\xda\xfd\xac\x28\x8e\xd9\x6e\xb9\xc3\x7d\x8c\x6c\xaf\xa2\x45\x7b\x76\xb7\x95\x58\x14\x8f\xd5\x81\x72\x4f\x9e\x28\xc5\x72\xbb\x2d\x00\x37\x6d\x1c\x3c\xb6\xaa\x8b\xaa\x90\xe7\xd3\xfd\x4b\x71\xb5\x96\x37\x67\x2b\x87\x65\xc0\x50\xff\x63\x76\x5a\x2c\x5e\x5f\x51\x21\x48\x33\x56\x22\xd9\xcd\xf8\xbb\xb7\x2f\x5f\x2c\x8b\x39\xc3\x0b\x2f\xac\x77\xac\xf7\xfe\xb8\x38\x56\xc9\xfc\x2f\xdb\xe6\xb8\x80\xd5\xdc\xf0\x35\x3a\x2e\xc6\xaa\x3d\xd2\x8c\x6b\x79\x7b\xe1\x42\xfb\xb6\x8c\xcb\xe2\xb8\x3d\x2e\x50\x81\xe9\x52\x0b\xa3\x7f\x61\x52\x1a\x75\xaa\xd1\xcc\x42\xdf\xee\xe4\xee\x23\x09\xec\xd5\x08\xbc\xda\xcc\xaf\x8a\xb9\xdc\xbe\xbb\x9d\x97\x4a\xbd\xf5\xc2\x32\xf4\x82\x11\x73\xcf\x3b\xc6\xc1\x3e\x93\x3c\x0f\xd6\x47\xe8\x5c\xd9\x51\x32\xce\x63\xa8\x04\x2f\xb8\x47\xeb\x75\xf4\xa2\x44\x68\xb7\x73\x06\x0a\xda\x63\xa0\x10\x82\xff\xd3\x38\x3d\x58\xdf\x9b\x03\x0d\xa5\xb2\xf3\xbd\xb6\x51\xd0\x62\xec\x1f\x5a\xf0\x14\xf0\xa8\xee\xad\x4c\x48\x54\xf8\x92\x32\x2a\x94\x92\xeb\x1e\x04\x38\xdd\xd3\xa6\x8a\xb0\x94\xe0\x35\xeb\x2e\x5a\x7e\xd5\xb9\x3f\x7b\x4b\xb0\x8d\x7c\xdc\xfb\xba\x49\x3a\xe8\xbd\xd4\x8e\xf3\x7d\xaf\xdf\xb5\xad\x0a\xb0\xdb\x6b\x68\xca\x18\x91\xf7\x5b\x8e\xf5\x74\x59\xa8\x93\x9e\xe7\x7d\x95\xc6\x25\xfa\xdf\x0e\xb5\xda\xdd\x37\x51\x14\xf7\x14\x86\x48\x77\x0f\xf2\x6e\x47\x03\x00\x12\xdf\x6b\xf1\x56\x48\xeb\xb8\xc6\x1d\xde\xe0\x35\x5e\xe1\x0b\x7c\x89\xaf\x71\x83\xaf\xf0\x0d\xfe\x18\xd1\x3c\xbd\x28\xef\x4c\xf6\x8a\x01\xd0\x20\x04\x26\xb8\xee\xbf\x4e\xfe\x32\x2d\x17\xb3\x7b\xff\x6f\xb9\x3d\x59\xcc\xee\x7d\xb3\x44\x7f\x99\xde\x47\x7d\xa0\x87\xde\xc9\x27\x2f\xc3\xff\x8f\xbd\xbf\xfb\x92\xe4\xb8\x0e\x03\xf1\xf7\xfe\x2b\xaa\xf3\x47\x17\x32\xdc\x51\x35\x55\x33\x03\x82\xaa\x9e\x44\xff\x06\x5f\xc2\x98\x00\x06\x07\x33\x14\x4d\x15\x8a\x73\xb2\xab\xa2\xba\x83\x93\x15\x59\x8c\x8c\xec\x99\x46\x57\x9d\x23\xcb\x34\x4d\xcb\xb2\x56\x82\xbc\x96\x8f\x0f\xc9\xc3\xe5\x6a\x65\x5a\xab\x95\x45\x1f\xad\x16\x94\x64\xf9\x81\x10\x08\xff\x19\xc0\x23\x5f\xf6\x5f\xd8\x13\xdf\x11\x99\x91\x55\xd9\x3d\xdd\x03\x80\x9c\x79\x98\x8e\x8a\x8c\xcf\x1b\x37\x6e\xdc\xb8\x71\x3f\x30\x45\x45\x27\x65\x1d\x7e\x1c\x32\x75\x7e\x0f\xfb\xc3\x1b\xfd\x81\x8c\xa0\xc4\x99\xe0\xe3\xf4\x04\x75\xa2\x3d\xaf\xf3\xbd\xc8\x9c\xa1\xe5\xf2\x88\xa6\x33\x24\x4f\xc9\x13\x44\x0b\x41\xa8\xe6\xb2\x31\xc8\x8f\x57\x62\xca\xd8\xde\xfb\x11\xd8\x61\xfd\x57\xee\x29\x53\x20\x26\xff\x42\x91\xe5\x29\x52\x32\xef\xa7\x57\x40\x29\x56\x32\xff\xb7\x57\xc4\x6a\x4a\xb2\x5a\x96\x2c\x28\x15\x38\x99\xfc\x2b\xb3\xac\xa6\x27\xb3\x69\xf9\x49\x18\x3d\x9c\x68\x92\x28\xf3\x94\x5d\x13\x53\x09\x99\xe9\xeb\x87\x32\xff\xb7\x2c\x62\xcc\x29\x98\x49\xca\x0f\x5a\x0d\x33\xf3\xfb\xf1\x54\xf1\x7d\x55\x2d\xdd\xa7\xa3\x9a\xef\x6b\x5b\xc9\x02\x9e\x36\xbd\xaf\x4a\xa3\xba\xb0\xda\xf5\xae\x36\x8c\xfc\x58\x57\xf4\x0f\xa8\x5b\xc9\xa2\x15\xed\xff\xaa\xc6\x94\x2c\xe4\xdb\x03\x54\x94\x9e\x64\x11\xdf\x40\xa0\xa2\xb7\xa4\xa0\xe8\x58\x0c\x78\xaa\x47\xf2\x73\xdd\x40\x20\xa0\x85\xe3\x16\x75\xf5\xe3\x03\x8a\x34\xa6\x53\x45\x40\x92\x63\x7f\x91\x3c\x3d\x5a\xe6\xfd\x54\xc8\xe5\x28\xc1\x32\xf7\x97\xb7\xc8\x41\xdd\x5f\xb6\xe9\xab\xc2\x66\x07\xdf\x2b\x88\x1e\xd0\x12\x66\x81\x4c\x55\xd8\xde\xe0\x93\xb9\x3f\x43\xdf\x30\x88\xf9\xbf\x77\x4c\x6d\x07\x44\x0b\xbf\x01\xce\xe4\x3a\x5f\x67\xf5\xaf\xb7\xdf\xbe\xa3\x3b\x9f\x06\xbf\x3a\xd5\x97\x7e\x81\xfb\xfa\xfc\x4a\x70\x65\x61\x52\x86\xec\xc7\xd4\xff\x28\x1f\x34\xec\xe7\xc2\xff\xfc\x96\x38\x64\xed\xe7\xbc\x02\x11\x79\x50\xda\xef\x65\x85\x40\xa8\x23\x46\x3d\x48\x48\xc0\x9d\xfa\x65\xac\xf9\x23\xb3\x69\xf9\x49\x5b\xc8\x31\x9d\xd2\xeb\xe9\x68\x77\x33\xef\xa7\x2c\x20\x7d\x63\x1a\xeb\xec\x84\xf8\x3d\x3e\xb0\xdc\x88\xa0\xbd\x2a\x9a\x7f\x42\x4d\xb1\xf0\xf9\xc4\x2b\xc3\xa8\x6e\x4d\x51\xe3\xb9\x1e\x51\xcc\x64\x7a\x08\xf5\x05\x4d\xff\x96\x87\x1a\x0b\x18\x65\x78\x3a\xd7\xbc\xaf\x26\xde\xac\x89\x95\xba\x6a\x3d\x70\xb7\xcd\x18\x29\xad\x93\x03\x34\x42\x7d\xc3\xf5\xd5\x75\x51\x94\x3d\xfb\x3a\x3c\x19\xf1\xb2\xf7\x85\xe5\xa1\xc5\xd2\x35\x32\xd1\xd4\x77\x41\xf6\x39\x99\xa3\x63\xc0\xdb\x72\x96\xa6\xc6\x46\x95\x4d\x63\x3f\xda\xb2\x55\x55\x5e\x40\x6f\x27\x00\x3d\x97\x3f\xfe\x4c\x0c\x1c\x1c\xc7\xbc\x4a\xd4\x50\x31\x44\x90\x0a\x06\x0d\x3e\x64\x9d\x4b\x6c\x18\x3b\xda\x70\xe2\x4f\x67\xde\xbe\x13\xaf\xf0\x84\x82\x4a\xa4\xea\x83\xef\x7d\x16\xc9\x70\x33\x15\xca\xef\x78\xf5\x16\x04\x01\x22\xe1\x1b\xf1\x21\x3a\x15\x76\x1e\x8e\x41\x72\x83\x01\xa9\x35\x08\x4f\x92\x84\x28\xe7\x80\xc7\x69\x61\xce\x43\xd5\x91\x94\xfe\x0a\xd7\x33\xd1\x0c\x35\xd5\x7a\xc5\x7e\xa9\xd6\x93\xf2\x66\x39\x30\xd7\x3e\x54\xbb\xa0\xf7\xa6\xbe\x5a\x21\xc7\x29\x68\xb3\x73\x21\xad\x4d\xf1\x50\xfa\x09\x51\xaf\xa3\x66\xec\xb2\xf3\x7b\x4b\x34\x15\x7e\x25\x62\x0a\x40\x00\xcc\x26\x44\x88\x52\x90\x70\x67\x7f\xc7\xcc\xc0\x2a\xa5\x35\x43\x47\xbc\xbe\x3a\x8e\x07\x62\x2a\x44\xa7\x58\x1b\xa6\xc9\xce\x8f\x10\x7b\x53\x04\xf7\xfa\x2a\x3a\x8d\xc5\xd8\x55\x40\x70\xb0\x53\x08\x57\xff\x0f\xd1\xa9\x02\x69\x7d\x1d\xbb\xdd\x58\xb5\x53\xff\xa6\x1a\x23\xfd\x87\x98\xcc\xa0\x6b\xeb\x0f\x60\x7a\x20\xed\xda\x52\xa1\x5c\xaa\xa3\x0c\xf7\x97\x79\x76\xba\xc8\xe9\xf2\x18\x4f\x55\x97\xa6\xd6\xdb\xf6\x93\xf4\xdc\x25\xa0\x05\x46\xa2\x19\x61\xb8\x2e\x1e\x8b\x72\xed\x50\xd2\x54\xd4\x28\xea\x19\xf6\x43\x22\x3c\x8e\x35\x17\x6a\x8c\xa9\x62\xa1\x29\xa6\x67\x43\x0b\x6d\x80\x23\x6e\x03\x47\x7c\x11\x38\x52\x0e\x47\x3c\x49\xa8\x63\x18\x15\xd4\x6c\x92\xae\x2f\xf4\x34\x5f\xcb\x29\xc2\x47\x84\x8f\x54\x6a\xf3\xf0\x46\xc0\x93\x2e\x04\x56\x0b\x61\xb7\x4a\x93\x17\xaf\x4b\xdb\x28\x1d\x5d\xbb\x69\x97\x78\x1a\x7f\x9f\xcd\x1a\x09\xc0\x18\x3f\x10\x31\x85\x42\x69\x50\x18\xfc\xc9\xf7\xcd\x6d\xbb\xf8\xa0\x01\xa3\x1d\x87\x08\x86\x6e\x55\xe0\x70\x9b\x08\x6b\x5e\xdb\x56\x6d\x7b\xa8\x46\x6e\x17\x4e\x69\x1b\x9c\x75\x63\xb1\x4d\x47\x47\x95\xb2\x4a\xf8\x78\x0e\x3f\xb0\x03\x14\xb9\x97\x76\xd8\x98\x4e\x8c\xe3\x19\x0c\x1a\x82\x38\x9c\xe1\xd9\x48\x04\x6a\x91\xde\x15\xac\xde\x98\xd0\xc3\x6c\x84\xd3\xc6\x93\x6e\x03\x66\xd0\x36\x98\x41\x2f\x86\x19\xc6\x35\xa8\x7e\x56\x30\x8b\xe7\xac\xae\x58\x89\xc6\x02\x15\x8e\xc4\xb5\x79\xd6\xd0\x65\x92\x52\x59\x9f\x3e\xc2\xb5\xbd\xf5\x5f\x6a\x54\xd7\x94\x86\x37\x75\x6d\x9e\x95\x62\x02\x1d\xe7\x13\x58\x24\x69\x33\xa1\xd9\xd9\x46\x68\x52\xc8\x44\x18\xc2\x71\x3e\x49\x0a\x2d\xff\xc7\x6b\xd8\x54\x25\xf0\xa4\x82\xe7\xb1\xc3\xda\xca\x85\xc1\x64\x66\xc2\xb0\x8b\x25\xeb\x63\x72\x82\x68\x81\x84\xc7\x7e\x01\x7d\xcb\x91\xb8\x27\x60\x9e\xe0\x3e\x49\x17\x48\xeb\x28\x89\x02\x9b\x54\x38\x03\xab\x9b\x43\xac\x56\xd6\x65\x43\xc0\x4e\xda\xed\x4a\x05\xc9\x0e\x1d\xa7\x93\xf5\x5a\x04\xab\xd6\x53\xbc\x9d\x3d\x4a\x4f\xd5\x9e\x6c\x72\x5e\x9f\x32\x46\x2d\xbb\x62\x98\xaf\x6e\x37\x4a\x45\x6d\x3e\x79\xd6\xd7\x2c\xa5\x68\x3e\x4c\x40\x9a\x3a\x68\x18\x8f\xe3\xda\xbc\x61\x08\xab\x15\xe9\x76\x23\xc5\xc3\xca\x35\x30\x33\xf7\xc7\x71\x67\xdb\x18\x1a\x27\x19\x47\x78\xa6\xa6\x68\xda\x5e\xad\x22\x3c\xab\xe4\x81\x5a\x87\x3e\xc5\xbb\x58\xc7\xbd\x94\xcc\x7a\x1c\x93\x82\x43\x30\x5f\xeb\x63\x69\x3e\xc3\xce\x35\x90\xdd\x98\x89\xd7\x32\xa7\x5f\xbb\xd4\x40\xce\xb9\x89\xb7\x7d\x1a\xcb\xed\xa0\xfa\x1a\x3a\xd5\x9a\xfa\x96\x21\x02\x78\xb9\xc8\x83\x35\x1b\x37\xf9\x69\x9c\xac\x56\x6c\x8c\x26\x40\x44\xb1\x08\xdd\x34\x36\xaa\xf6\xdb\x40\x54\x28\x9d\x1e\x7b\xfb\xd5\xba\x3d\x81\x39\x38\x43\x1b\x6f\x09\x04\x70\x7c\xd0\x37\xde\x24\x49\x72\xb1\xd5\xbb\x5d\x5c\xbb\xff\x58\x9f\xbe\x44\xba\x20\xf3\xa9\x54\x73\x45\xd7\xa7\xaf\xac\xaa\xbc\xec\x35\xf4\xd0\x38\x6f\xab\x3b\x41\x60\x24\xe2\xfe\xf8\xde\x90\x84\x86\x52\x5f\xba\x58\x51\x34\x50\x1f\x15\x5e\x54\x20\x73\x14\xa4\xc9\x60\x3f\xb5\xee\x2f\x52\x7d\x14\x14\xb0\x4c\xf0\x38\x9d\x40\xad\x36\x62\x5f\xec\xcd\x12\x39\x00\xe7\xfc\x65\x09\xe0\x34\xc9\x44\xe7\x70\x9e\x64\x26\x14\x92\x0c\xb5\xa9\x7f\x25\x36\x29\xbc\x9e\xd8\x9f\x52\xf9\x75\x0a\xe0\x1c\xc4\x85\x53\x4c\xaa\x12\x2b\x23\xc7\x02\xce\xc1\x4e\x3e\x4e\x27\xc2\x29\xe2\xd4\xf0\x07\x53\x71\x26\xac\xd7\x7c\xec\xc7\x89\xb6\x03\xda\xb1\x4e\xfe\x1b\xe1\x05\x8f\xc5\x25\xa1\x69\xc5\x2e\x73\x29\xc4\x32\xe8\x73\xa8\x05\x44\x31\x10\x67\xb1\x80\xa8\x88\x1c\x78\x21\x88\x16\x00\x96\x20\xce\x9b\x20\x9a\xc3\x52\xaa\x2d\x65\x89\xb1\x76\x19\x15\x06\xb0\x85\x02\x6c\x2b\x50\x66\x02\x94\x1b\x27\xd6\xc4\x9f\xc9\x68\x50\x2c\x7c\x37\x11\x91\x2e\x24\x9f\xa6\x59\x00\x13\xad\x87\x3a\x2e\x27\xfd\x53\x9d\x02\x2f\x7c\x8f\x0c\x46\x2e\x14\x70\x43\xa2\xec\x0d\xce\x39\xc2\xcf\xb8\x75\x19\xa0\x7d\x53\x3d\xc7\x1b\x6f\xa3\x79\x23\x47\xb5\x27\x37\x70\xc4\x56\x60\x6e\xa4\x61\x76\x85\xb4\x6b\xa6\xd7\x51\xb6\x44\xb4\xa6\x99\x68\x94\x6e\x14\xb6\xf3\x25\xb8\x3b\x37\xd1\xc7\xe4\xdf\x2a\x3a\x6b\xdf\xf7\xb2\x4d\x5d\xd8\x5c\xe4\x1a\x02\x99\xd9\x50\x9e\x96\x4c\x79\xa1\xcd\xf8\x09\x36\xd8\x27\xb7\xbc\xcc\x7d\xe2\x84\xf9\x94\xd1\xcb\xc8\x64\x47\xfa\x55\xda\x38\x2a\x0a\xd6\x7a\xf4\xeb\xc0\xa0\xcc\x4e\xf1\x9c\x06\xe9\x81\x29\x06\xda\x16\x0b\x70\xd2\xf6\xa3\x64\xa9\x37\x0f\x27\x35\x0e\x65\x0b\xe3\x0b\xb9\xe0\x43\x34\x9b\x1c\x3b\xca\x58\x0f\x82\x71\xc6\x5e\x49\x59\x1a\x58\x47\xb3\x39\xa4\x96\xe4\xb1\x8e\x74\xc5\x99\xdd\xd7\x68\xbe\x50\x8a\x40\x82\x79\x57\x21\x22\x2b\x5d\xb8\x23\xad\x1f\xfe\xe2\x6a\xdf\xae\xdd\xa8\xa1\x40\x04\x77\x1d\xd6\xdc\x0d\x34\xe8\x44\x7d\xe0\xf0\xd9\x71\x3c\xe4\xc9\xc2\x0b\x5b\xd0\x37\x33\x0c\x71\xf9\x2e\x3d\x20\x10\x01\x81\x00\xdb\x63\x9b\x55\x96\xce\xdf\x33\xbc\x63\xa4\x3d\x59\x57\xe0\x16\x52\x6a\xd3\x21\xfc\x3d\x39\x6b\x53\xdb\xc4\x0d\x6c\xe6\xf8\x68\xaf\xb7\xed\x07\xd0\xdd\xe8\x16\xc0\xa0\x91\x3a\xf2\xac\x6f\xc0\xc6\xd9\x43\xea\xb8\x54\x73\x9c\x09\x17\xdd\xee\x26\x9f\xb0\x9a\xfe\xd4\x05\xb0\x95\x7b\x94\x13\x96\xcf\xb6\x3d\xc6\x13\x4e\xf9\xc7\x68\x52\xcd\x56\xcc\x93\x1a\x7f\xc3\xe9\xd2\x86\x82\x75\xbb\x71\x13\x0d\x0b\xed\x2b\x43\xad\xe0\x67\x46\xc4\x82\xc3\x72\x89\x59\x6d\x79\x1b\xa2\xdf\x6c\x5e\xe1\x4a\x70\x44\xb4\x81\xc5\x46\xd6\xee\x80\x84\xee\xce\xa8\xe1\xee\xec\x46\xb2\xaa\x74\x38\xce\x27\xc6\x5c\xa5\xf6\x65\x47\x60\x04\xe9\x07\xa6\x17\xa7\xe2\x69\xd2\xe1\xab\x2b\xce\x1a\xaa\xae\x24\x9b\x08\x96\xe4\x46\x74\x24\xd9\x7a\x81\x00\x81\x8d\x07\x90\xf5\x0b\x4c\x8e\xca\x2c\xa5\xc2\xc3\x43\x3c\x80\x34\xf0\x32\x0c\x64\x8c\xda\xa5\x69\x8c\x37\x6d\xbe\x36\xb5\xec\x78\x8e\x40\x1b\xa2\x1d\xfa\x7b\xd3\x37\xdc\xfa\x1a\x1f\xdd\x2b\x68\x9a\xa5\x14\xcd\xde\x4c\x97\x4b\x4c\x8e\x78\x2d\xa7\x0a\x80\xb5\xa5\x6f\xd9\x86\x57\xcb\x38\xac\xc5\x33\x29\xaf\x54\xab\xa1\x42\x1f\x4a\xc6\xd2\x7b\x61\xd2\x32\x66\x00\xed\x60\xbc\xaa\x4e\x10\x73\x51\xcc\xeb\xcf\x2b\xe9\xe1\xbb\xf4\x05\xea\x5b\xbd\x72\xaa\x68\x94\x1c\x78\x09\xe2\x41\x40\x5b\x98\xeb\x07\x2d\xeb\xd3\x35\x88\x47\x8d\x7e\x3f\xce\xf1\x20\xb6\xa9\x91\x26\x5f\x69\xee\xd1\xd4\x82\xdc\x13\xe7\xf8\x6f\x40\x3d\x3f\x6c\xa2\x05\x83\x19\x41\x18\x12\xee\x9d\x48\xd2\x57\x23\xec\x7f\x30\x4d\x89\x11\x95\xc4\x04\xf8\xf8\xe9\x51\x75\xe3\x4e\x37\x4f\xa4\x4f\xde\x98\xa8\x5b\x93\x7a\x00\x33\x1a\x9d\x32\x66\xa8\x23\xa0\xcc\x21\xd5\xb7\x06\x6d\x6b\x1a\x92\xf6\x1a\x49\x6f\x2a\x9f\x0f\xe3\xb4\x41\x86\x5d\x15\xdf\xba\x67\x4f\x3a\x49\xf2\xf5\x85\x5f\x09\x7d\x78\xd8\x67\x0b\xff\xf5\x0e\xe6\x09\xe6\x4c\xa0\x14\xc6\x74\xbb\xbb\x3a\xe9\x39\x87\x77\x42\x43\xe3\xd5\x2a\xe7\xa0\xf5\xf6\x44\x95\x72\x1a\x00\x07\xa1\x43\x3d\xe8\xd0\x2a\x74\x3c\x22\x4b\x3d\xbd\x03\x0f\x58\xca\x86\x4d\xb0\x6a\x62\xf1\x0a\xe5\x1c\x79\x23\xde\x61\x17\xef\xf0\x6c\x84\xfb\x78\xb6\xde\xa9\x52\x7e\x7e\xe5\x17\x38\x59\xac\xd7\xeb\x0b\xbe\x3e\x49\x6f\x79\xf7\x2a\x55\xe5\xeb\x98\xb3\x1a\xe6\x11\xc7\x3f\xa5\x70\x7b\x20\xe7\x9b\x81\x9c\x4b\x20\x37\x3f\x34\xe4\x9b\xa0\x6f\xb4\x33\x7c\xd8\x6b\xe6\x23\x4d\x70\x5f\xfa\x31\x0a\x87\xc6\x36\x78\x85\x42\x78\xb5\x06\xb0\x70\xb8\x17\xcb\xb8\x94\xc9\x60\xbf\xbc\x65\x78\x96\x52\xf3\x2c\x59\x82\xc7\xe5\x04\x4e\x37\xd3\x96\xcc\x59\xe3\x9d\x62\x5c\x4e\x14\x62\x4c\xf9\x82\x67\x7c\xc1\xd7\xf5\xa3\xde\x5d\x70\xcf\xc9\x50\x83\x0e\x7f\xfd\xa2\xdd\xa0\xa7\xd3\xa4\xaf\xfd\x54\x5c\x0d\xa5\x45\x81\x8f\x88\xf6\xa0\xbb\x40\xf4\x28\xe8\x71\xe8\x6c\x49\xf1\x22\xa5\xa7\x9c\xdd\x10\xc1\x19\x44\xc9\x99\xea\x0d\xa3\x62\x34\x56\xd2\xd6\x09\xac\x9c\x69\x9b\xb8\xbc\x46\xf7\xbe\x7e\xe0\x0e\xd3\x18\x9a\x85\x78\x7b\x65\x7b\x6e\x19\xb8\x31\x9a\x58\x2e\xb0\x42\xab\x61\x9a\xa8\x1e\xc1\x0e\x2f\x28\x14\x0f\x1d\x17\x9f\x63\x34\x81\xa9\x21\xe1\xca\xd3\x71\x9b\x7b\x94\x09\x44\x87\xb7\x04\xa2\x33\x8d\xd9\x70\x5c\xba\xd9\x86\x63\x73\x73\x30\xb9\x4d\x77\xb2\x4d\x0d\x06\x63\xde\x79\x83\x73\xcc\x57\xb6\x35\xd4\x10\x49\xce\x6b\xce\x94\x69\xdb\x68\x30\xaa\x9d\xd7\xa4\x2a\xd1\xb6\xc1\x2d\xad\xb5\x6d\x2a\x10\x00\xb0\xba\x08\xdb\x1b\x69\x0e\xa2\x67\xda\x72\xe3\x82\xb5\x69\xb2\x39\x4e\x9e\xbd\xd3\x3b\x45\xda\x34\xd9\x1c\xb3\xcf\xb2\xe1\x4e\x91\xcd\x4d\xae\x9d\x9d\x54\x47\xfe\xe0\x9e\x0a\xf6\x78\x0f\x93\x23\x6b\x96\xdd\xd0\x57\x4b\x59\xc5\x25\xf7\x55\xd9\x36\xed\xfb\x11\x27\xdc\xb9\xba\xa9\x6d\xa7\x2b\x9d\x54\x65\xa7\x5d\xe5\xc4\x9e\x46\x3f\xde\x36\xbd\xaa\x4e\x42\xfb\xf7\x1c\x8b\x94\x9e\xb4\x5f\xa2\xd0\xbe\xbe\xa2\xae\x42\xfb\xfd\x8a\xba\x72\x0b\x5f\x19\x76\xfb\xc5\xb7\x76\x53\x17\xaa\x3a\xb2\xd4\xdd\x81\xdb\xb2\x87\x2d\x4f\xd8\xf0\xf0\x3c\xf2\x5c\xc9\x79\xab\x5b\x73\x99\x65\x50\x4b\xee\x47\xe3\xc9\x5a\xcb\xff\x95\x88\xe2\x4d\xc4\x52\xad\xdf\x86\xe7\x71\xc1\xaf\x5b\x22\x5a\x49\x52\x00\xdd\x56\x59\x71\xbb\x23\x5c\x24\xc1\x2c\x29\xe5\x73\xe0\x34\x29\xed\x73\xa0\x7c\x22\x4c\x32\x38\x15\x2d\x99\x37\x83\xa9\xd4\x3d\x33\x62\xc9\xb9\xc3\xd8\x13\xc3\xd8\x1f\x27\x03\xb8\x4c\x4c\xa4\x84\xe3\x5b\xcb\xfd\x63\xcd\xdc\xcf\xe0\x22\x21\xe3\xe3\x09\x3c\xad\x0f\x67\x01\xe0\x49\x72\x2a\x87\x73\x94\x9c\x7a\xaf\x93\x47\x20\x9e\x39\x0f\x96\xde\x83\xe3\x0c\x1e\x81\x9d\xf9\xf8\x78\x92\x9c\xac\xd5\xc8\xe7\x5a\x6c\x99\x36\x8b\xb6\x24\x17\x2b\xae\x96\xae\x72\x41\x2b\xf1\x14\x80\x4d\x82\x60\xd6\xcf\x30\x79\x58\x80\xd6\x82\x2e\x59\x1c\x6e\x11\x6e\x39\xa2\x94\x2b\x91\x68\xc1\x36\xa2\x2c\x57\x88\x63\x06\x19\x74\x1e\xa6\x55\x34\xac\x53\x06\x7b\xf9\x88\xc0\xc4\x75\x61\xab\xa3\x78\x80\x98\x82\x73\x3e\x21\x28\x1b\x79\xec\x48\x9a\x37\x46\x94\x6b\xf1\x72\x00\x9d\x1b\x08\x9d\x08\x27\x6c\x68\x22\xd2\xfc\x22\x8b\xb7\xbd\x11\xa8\xe0\x90\x0d\x71\xc6\xb5\x18\xa3\x11\x77\x84\x40\x0b\xcf\xa4\xcd\xfb\x2c\xa9\xc0\x47\x84\x21\x37\x0e\xa0\x03\x4f\x56\x6e\xa0\x52\x26\x7c\x34\xef\x8a\x26\xda\x46\x6f\x01\x42\xd3\x53\x09\xab\x37\xbf\xc0\x29\x81\x36\xbf\x59\x59\xed\xca\xea\x78\x35\xee\x5a\x74\x71\xb4\x80\xdb\x88\x31\x9b\x90\x56\xe1\xec\xc5\x1f\x24\xda\xbe\x3f\x88\x10\x53\x4f\xf0\x0c\x31\x4e\x27\x5a\x6d\x5e\xc6\x99\x10\x59\x3b\x35\x7d\x44\xd9\x14\x28\x12\x1c\xd2\x57\x38\x30\x8f\x13\x0d\xf0\x8b\xb1\x0c\x54\x5f\xc2\xb3\x87\xe8\x74\x84\x20\xd5\x6f\xac\x69\x71\x3c\x62\x1e\x29\xe0\x67\xc5\x08\xaf\x85\xbf\xc1\x00\x64\x75\x4b\xf6\x7d\xdd\x55\x65\xc2\x4a\x23\xc9\x0f\x70\x5f\x02\x70\xe6\xca\x78\x4a\x7d\x14\x18\x11\x52\x96\x0c\xc4\x09\xa3\x8e\x84\xec\xd6\x74\x3f\xd3\x47\xc2\x3c\x29\xc7\xd9\x64\xa7\x18\x67\x4d\xaf\x30\x6a\x4c\x73\xb0\x5e\xe7\x56\x84\x23\x35\x73\xf4\xda\xbc\x81\xc9\x43\xb3\x26\x62\x15\x14\x69\xed\x76\x9d\x57\x21\x91\x33\x3e\x56\x8b\xb2\x74\x72\xf6\xe3\x3c\xc9\x57\xab\xb3\x35\x90\x59\xc9\x99\x00\x1a\x9a\x8d\x96\xeb\x75\xae\xdf\x0d\x73\xf5\x52\x78\xae\x67\x1c\xd2\xf0\x68\xe3\xc9\x24\x5a\xa2\xb0\xf6\x63\xd6\x24\xe8\xdb\x8a\xd8\x68\x37\x49\x62\x7a\x2e\x94\x06\x2e\x08\x25\x55\x64\x9a\x2a\x2a\x3f\xa1\x1d\x45\x21\x5d\x16\x33\x70\xe0\x6d\x88\x1e\x6a\x4f\x0a\xa5\xf1\xe7\xd2\x77\xeb\x7f\x8c\x00\xa3\x7e\xd6\xc1\xa4\x43\x00\x4d\x82\x5a\xfa\x39\x44\x1e\x2d\x17\x4f\xbf\x9b\x23\x51\xe5\xa0\xaa\x90\x6d\x8f\x89\x1c\x68\x2f\x03\x5b\x03\x54\xd5\x9b\xf1\x35\x7f\x01\x80\x58\xc7\xf9\x15\x8a\xdc\x63\xec\x40\x11\x4f\x80\x54\xdb\xb6\x73\xb9\x10\xd0\x1c\x6f\xd2\x64\x8c\xf8\xe4\xf9\xa2\x8f\xd1\x04\x48\x95\xf4\x98\x26\x54\xaa\x77\x07\xc3\x80\xa2\x84\x02\xa9\xb6\xe1\xbe\x30\x34\x7a\xa9\xaf\x8d\x43\x6b\xa4\xb2\xd5\x6a\x97\xe3\xca\x6a\x25\x82\x5b\xf1\xa4\xab\xf5\xfb\x60\x51\x16\xec\xe2\xcd\x73\x86\x8d\x89\xd9\xed\x0e\x92\x7a\xeb\x61\xe1\x7c\xa3\x89\x8e\xd0\x01\x9f\x21\x86\xe8\x02\x13\x6f\x47\x8a\xc7\x44\xe2\xa9\x83\xab\xf9\x49\x35\x13\x7f\x1a\x31\x03\xab\x55\xe0\x79\x86\x09\xbd\xd0\x45\x4a\x4e\xef\xe7\x9c\x6c\x72\x7a\x4a\x57\x2b\x95\xa3\x29\x2c\x6d\xf5\x44\x27\x0f\x33\x4e\xe4\xba\x5d\xe3\x1e\xe7\x8e\xa3\xd0\x8e\x67\x3b\xc2\x13\xd8\x66\x3e\x2c\xc1\xc6\xa1\x4e\x23\xe3\x24\x5c\x3d\x3a\xba\xda\x2e\xef\x44\x85\x4f\x47\x61\x35\xd8\x4c\x76\x44\x03\xa1\xe3\xee\xc0\x69\xd5\x35\xb3\xe2\xb7\xaa\x51\xe8\xd4\x71\xca\xbb\x2f\x2d\x3a\xc2\x74\xcd\x55\x72\xf5\x66\xc5\x2f\x6b\x3c\xe9\x19\x26\xc5\x3c\x1f\xb4\x7c\x95\x6c\x7e\x88\x74\xdf\x2b\xe1\x53\x7b\x73\x0c\x11\xab\x73\xbc\x44\x3e\x8d\xe7\x47\xc8\x39\x43\x61\x51\x76\xa5\x6f\x58\x4d\x2f\x88\xd0\xe3\x54\x30\x38\x60\xe3\x5c\x1a\x9c\x8d\x44\x0a\x3f\x89\xf9\xda\xd3\x7a\x36\xb4\xb6\x5f\xd5\xf7\xc3\xcf\xe8\x6d\x10\x4a\xd8\x79\xef\xa6\x15\x10\xb9\xaa\x64\x86\x55\x17\xcc\x67\x15\x42\xfc\x58\x77\x58\x0c\x22\x24\x17\x4e\xb0\x7c\xc4\x52\xeb\xb0\x5b\x9c\x93\x32\x13\x52\x7b\xb1\x90\x3e\x66\x02\x0e\x8d\x2d\x80\x8c\xb7\xe8\x80\xf3\x37\xda\xed\x6a\x27\xc5\xe2\x6c\x14\x5c\x5b\xcd\xc9\x09\xb0\x9e\x8c\x61\x8b\xdb\xbd\x70\x64\xcc\xb6\xa8\xb3\xb1\x24\xdf\xae\xce\xc6\x76\x93\x04\x39\x20\xa2\x63\x66\x54\xd9\x78\x1a\x1a\xa3\x21\xe1\xa0\x51\x75\xda\xc0\x05\x56\xfb\xad\xb0\x80\x4f\xd6\xb5\x20\xc4\xad\xf4\x5c\xd0\x79\xf4\x59\x4c\x61\xce\xe6\x37\xb6\xe7\x92\xd7\xa0\x58\x42\x2c\xab\x0e\x8f\x02\x2a\xf1\x51\x4c\xed\x51\xb4\x67\x6f\xd2\xf4\xdc\x0f\xc5\x4d\x01\x69\xbe\x28\xca\xdc\x12\xd0\x8d\xbb\x39\x70\x43\x0f\xe1\x11\xd8\x8b\x84\x5f\x42\x57\xe2\x29\xb6\xd2\x46\x13\x1c\xa8\xef\x77\xe3\x89\x2f\xef\x4c\x13\x4f\x35\x17\x16\xf5\xd0\x0f\xc0\x0f\xd1\x6b\xa3\x11\x93\xb0\xa7\x53\x19\x51\xa0\x4c\xb0\x23\xb5\xf5\xee\xd7\xd3\x9c\x2a\xe7\xe6\x30\x85\x45\x83\xac\x74\x3f\xce\xa5\xea\xa5\xd0\xd8\xcd\x00\x9c\xca\x88\xbc\x79\x58\x56\x49\xe0\x94\x6f\xd0\xdc\x05\x4b\xad\xd3\x1a\xdf\x62\xe5\xc1\x39\x2c\x12\x2c\x3c\x95\x0a\x6d\xc0\xf6\x92\x1d\x0c\x38\xa7\x28\x4e\x04\x57\x1c\xbc\x45\xbe\xb3\x53\xd1\x9e\x2e\x81\xe0\x2e\xaa\xb0\x2f\xe5\x82\x2c\x6c\x31\xc3\x57\xa6\x8e\x88\xb7\xd0\xf6\xc1\x5b\x65\xe0\xc2\x5f\x9c\x96\x9c\x34\xc9\xc0\xcb\x46\x19\x78\xd9\xed\xc6\x85\x14\x80\x97\xae\x10\xc2\xf5\x7f\x4b\x00\x9c\x26\x03\x61\x58\xa4\xa4\x12\xd3\x5b\xf3\xfd\xa9\x96\x4a\x1c\x27\xd9\x78\x3a\x81\xcb\xe4\x18\xce\x92\xdd\xe1\x4e\xf4\x80\x73\xa2\xc7\x22\x82\xef\x6d\x16\x0f\x38\x20\x66\xc9\xee\x80\x97\x50\x91\x19\xe2\xa1\x92\xce\x2d\x36\xc3\x76\x29\x4e\xf1\x0a\x64\x17\xea\xdc\x3f\x4d\x76\x67\xea\xb0\xc6\xc5\xdb\x92\x59\x57\x1c\xc7\x02\x32\x00\x4f\x84\xf8\x5c\x2b\x6b\xed\x26\xc9\x09\xe0\xd8\x70\xba\x5a\xf9\x2a\xc4\x27\xaa\xbd\x23\x78\x08\x1f\x54\xd5\x7e\x95\x22\x31\x5c\xc0\x13\x78\x0c\xe0\xa3\xe4\x81\x44\xec\x57\x93\x07\x9e\xd4\xfd\x55\x10\x1f\x25\x45\x18\x93\x8f\xe0\xab\x62\x1e\x29\x78\xb4\x21\x46\x02\xbf\x6a\x0e\x84\xdb\x64\x2d\x15\x14\x21\x12\x38\x53\xbf\x73\xda\xed\xee\xe2\x6e\x77\xb7\x10\x9d\xaf\x56\xec\x40\xa6\x12\x34\x2a\x2a\x26\x47\x08\xac\xad\x40\xea\x14\xa8\x72\x8f\x4c\xd6\x23\x10\x1f\x36\x0d\xf4\x10\x3e\x52\xcf\x16\x7c\x48\x8f\xe1\xbd\x2a\x34\x42\x9b\xfe\x04\x1e\x43\x26\x0e\x79\x00\xef\x26\xf7\x24\x78\x6e\x27\xf7\x2c\x78\xd4\x18\xee\xc2\xdb\xdd\x6e\xfc\xb8\xa9\xf3\xc7\xf0\x36\x58\x1b\xbf\xb7\xc5\x1a\x7a\x8b\xda\x78\xdc\xb9\xb4\x8e\x73\xfa\xdb\x6d\x0a\x82\x64\xd3\x86\xe4\x12\x4e\xb8\x3d\xaf\x06\x4d\xd8\x49\x43\xd8\x89\x81\xe6\xa4\x9c\xa1\x61\xe9\x28\xc4\x27\x05\xb9\xab\x97\x55\xa5\xc4\x42\x4a\xd4\x8c\x2d\x10\x27\x2e\xb9\xc8\x85\x1f\x18\x4e\xf0\xb4\xc5\x1a\x76\xc8\x2e\x71\xc8\xae\xb0\x48\xeb\x76\x63\xd6\x64\x93\x26\x1c\xb2\x0b\xaf\xad\xc6\xb0\xe2\xea\x34\xb1\xb7\x44\x23\xde\xaa\x62\xdb\xe2\x26\x4b\xc1\x19\x1a\x6f\xd4\x8f\x73\x2d\xd0\x95\xda\xbf\x7b\xe5\xa5\xe7\xd2\x18\xef\x34\x19\xdc\xb6\x61\xff\xeb\xf7\x20\xe8\x39\xc4\xa8\x5e\xad\x28\x94\xba\xc5\xbe\xdb\x87\xbc\xea\x92\xc6\xbb\xd7\xe5\xfc\x5e\x87\xcd\xbd\x0e\x4f\x92\xf0\x88\x5d\xec\x3c\xf7\xa3\x84\x3f\x03\xd2\x77\x85\xec\x30\x17\x19\xbe\x98\x3d\x74\xb1\x84\xe9\xe6\xb9\xd7\x18\x70\x1b\x67\xc2\xde\xfb\xc6\xe9\xc4\x5e\x62\x4c\xf8\x21\x76\x20\x9e\x10\x1d\x6d\xf8\xa6\x3d\xce\x1b\x00\xeb\xd1\x76\x4c\x6c\xc7\xfb\x56\x5c\xfb\x9e\xd3\x31\xf0\x55\x7a\xb4\xbd\xb8\x07\xde\xa7\xeb\x4b\x78\x9b\xcb\xdc\xab\x71\xd3\x37\x4f\x10\x9c\xf7\x29\x3a\xc2\x05\x43\x34\x16\x46\xb8\x3d\x05\x93\xd1\x22\xc5\x24\x82\xbe\xab\x4e\xe0\x39\x1a\x43\x4e\x55\x7b\x79\x32\xee\x91\x8d\x8b\x4a\xde\x7d\xa8\xa4\x04\x5c\xb9\xad\x98\x06\x7f\xb1\xad\xa0\x86\xb5\xf1\x0f\x0b\xd6\x31\xf2\x87\xac\xdc\xca\xf7\x31\xe1\x00\x5c\xad\x74\x0a\xe7\x64\x87\xf5\xa7\x69\x96\x71\x28\x72\x5c\xa6\x79\x96\x89\x45\x97\x2e\x0a\x61\xd5\x65\x21\xb4\xc5\x69\x5e\x0a\x0c\xd8\x5e\xd2\x05\x70\x73\x85\xe0\xa8\x39\x7f\xad\x27\xad\x82\x58\xa8\xd8\xb1\x7c\x16\xb9\x97\xb3\x53\x98\x1e\x5d\xc5\xe4\xb3\x42\x68\xc9\xb0\x9c\x8c\x76\x87\x6b\x00\x6d\x29\x33\xa4\x6a\x11\x17\xd0\xb6\xa9\x91\x8d\xe5\x4f\xc3\x8b\xe2\x96\x95\x7b\x0b\x87\x0b\x6a\x6c\x53\xa5\xd2\x2d\xa5\xec\x36\xce\xb7\x77\x6c\x0b\x13\x5b\xb8\x4c\x10\xcc\x92\x0a\xc8\x61\x5c\xf6\x8f\xd3\xe2\x40\xfc\x1f\x67\x60\x24\x12\xef\x88\x56\xa9\x20\xe9\x71\x06\x00\x07\xb4\xd7\x93\xdb\x82\xf2\xd4\x2c\x2f\x00\x25\xcc\xf8\x22\x8a\xf4\xbc\xc1\xb9\xa5\xaa\xf7\x39\x71\xfc\x78\x5e\xe7\x96\x62\xb2\x8d\xee\x0b\x1d\xff\xec\x0d\xf3\x0b\x3a\x73\xff\x9c\xce\x55\x95\xdf\x3e\x5b\xc7\x37\xfc\x67\x37\x6d\xd7\x4b\x6c\x3d\x46\x78\x13\x6f\x5a\x55\x5a\x41\x40\x3f\xaa\xf5\xd3\x2c\xcb\x1f\xbd\x55\x66\x59\xc8\x70\x5a\x72\x1e\x3a\x08\x68\xa4\xe7\xcf\xef\x2c\x07\x68\x64\xdf\x16\x13\x72\x70\xed\x9b\x31\xa3\x25\x5a\xb1\xd5\x10\x7c\xe9\x1a\xd6\xb1\x55\x46\x91\x22\xf0\xf2\x45\x63\x28\x03\x8e\x6d\xe1\xa1\xb7\x8e\xf5\x40\x70\x82\xca\x03\x31\x67\x54\x5b\x2c\x9e\x3c\x8f\xbe\x48\x2b\x67\xdc\xe5\xe8\x65\xc0\xf3\xd8\x81\x39\x73\xe3\x69\xc8\xc8\x93\xd1\x9e\x61\x29\x65\x4c\xca\x6e\x17\xe9\xb8\x83\xcf\x8b\x65\x8a\xc9\x5e\x72\x03\x12\xf4\xa8\xf3\x4a\xca\x50\x8c\xfa\x45\x86\xa7\x28\x1e\x40\x02\xf6\xa2\x51\xb4\xa7\x33\x08\x00\x60\x64\x8b\x69\x81\x8f\xb3\x9a\xec\xc0\xf9\x3c\x92\xb6\x65\xe8\x40\xba\x46\x0d\xaf\xb0\xbd\x00\xbb\xa1\xc5\x78\x0b\xdd\xee\x2e\x2e\xde\x4a\xdf\x8a\x11\x38\x40\x7d\x96\xdf\xb9\x77\x57\xf2\xf6\xb1\x6c\xb9\xcd\xfa\x6a\x46\xe2\xd2\x56\x58\x7f\xea\x78\x43\x17\xf2\x72\xb4\x9b\x24\xc3\x6b\x03\x99\xe8\x0d\xaf\x0d\xd6\x4f\x11\x1d\x3c\x15\x80\x88\x2f\x05\x5a\xad\x34\xfc\xc5\xc6\x20\x31\x4b\xa4\xf7\x6e\x7e\x65\x3d\x60\x1b\xd7\xe4\xc9\x1a\x6d\xb1\x30\x9a\x71\xfb\x62\x6d\xbd\x30\x29\x92\xa0\x50\xb8\xd9\x64\x6f\xdb\xb6\x72\x0b\xd8\x05\x8f\xda\xa7\xe8\x08\xb9\xe2\xf1\xd8\x05\x96\x58\xfe\x86\x19\xa8\x80\x18\x57\x3f\xe8\xe8\x46\xff\x66\xff\x66\x54\x1b\xc5\x1c\xb1\xe9\xf1\xb5\xf4\x5b\x69\x25\x92\x8d\xc8\xbf\x32\xec\x72\x5a\x25\x9e\x78\x49\xf3\xa7\xe2\x43\x9f\x1d\x23\x12\x57\x3c\x4f\xa0\x7e\xfe\xd0\xc4\xda\xef\x73\xde\x36\x06\x3b\x32\x9a\x09\x5a\x07\x3c\xa8\xcb\x09\x0a\x5f\xd1\x85\xbe\xe8\xca\xcc\xd0\x84\xa1\x57\xab\x64\x38\x2b\xae\x2d\x4a\x72\xd4\x53\x37\x8b\xde\x3c\x37\xb5\x03\x45\x8d\xda\x4c\xef\x30\x9f\x9d\xf6\x96\x32\xa4\xc8\xf6\x47\x2b\x43\x41\xb1\x17\x0b\x4a\x4f\x93\x1f\x4e\x75\x69\xa1\xfb\xfc\x34\x26\x93\x04\x09\x03\xbf\x0b\xac\x8a\x0a\x01\x75\x3f\x57\x11\x53\xf0\x16\xef\xd7\x3a\x64\x94\xd2\x4b\x6b\x8c\x27\x68\xcd\xd7\x85\xfd\x2e\x16\xc1\xf2\x10\xc4\x4a\xaf\x56\x19\xf4\x36\xc7\xf4\xcb\xbb\xdd\xd8\x84\xa7\xf4\x8c\x3c\x6d\x36\x6f\x19\xe6\x40\x2b\x8b\x88\x97\x4d\x83\x44\x26\xce\xaa\x08\x4c\x98\x24\x49\xaa\x42\x78\xad\x56\xbb\x69\x9f\x2f\xd1\x6a\x65\xa4\x49\xa9\x6e\x52\xe8\xfa\xab\x74\x3d\xe8\x98\xf3\x49\x05\x38\x94\xde\x0c\x27\x60\xb5\xb2\xf5\x6c\x6b\x62\x80\x8d\xed\x6d\x0f\x8c\x28\xe2\x15\xd7\xe3\xce\x92\xea\x73\x61\x35\xee\xac\x92\xaf\x55\x43\xcf\x56\x3d\x91\xbb\xc1\x21\x53\xd0\x97\x31\xe5\xaa\x3d\xc9\xed\x85\x45\x63\x32\x50\x10\xe6\x1f\x64\xec\x78\x04\xd6\x81\x9d\xea\x11\xf6\x77\xee\xfd\xd6\xdb\xfc\x26\x79\x1c\x9f\xe9\x78\xab\x23\xa4\xe5\xae\x23\x21\x45\x76\x36\x7e\x2e\x62\x2b\xd6\x9b\xd4\x42\x0b\xdd\x04\x24\x22\xa8\xab\x68\x44\x2a\xba\x5a\xca\x20\xc7\xaa\x63\x37\x8b\xd1\xc2\x5c\xd3\x89\xda\x44\x64\x97\xcd\x71\x47\x3d\x88\x89\xfd\x6e\xe2\x69\x72\x9c\x86\x22\x72\xa7\x9b\x3f\x6a\x47\xe0\xe4\xc2\x86\xa3\x16\xdb\x38\xdd\xb5\xd8\xad\xcc\xc4\x6e\x8d\x99\x46\x2c\x20\x6a\xec\x6c\x88\xc6\xeb\x2c\x85\x1b\x96\x57\x46\x20\x7c\x4d\x0e\x5e\x76\xf0\x5a\x2e\xab\x34\xc8\xed\xf9\xfd\xdf\x06\x90\x93\x73\xa8\x97\x57\xfe\x18\x39\xc9\xce\xf5\xaa\xe4\x3b\xda\x87\x57\x73\xa7\xb1\x8b\xa3\x2d\xa7\x1e\x8c\xed\x9b\x82\xd5\x4a\x08\xf8\x03\x67\xaf\xa4\xd9\xd2\x47\xe9\x95\x1d\xbd\xb8\x78\x3b\x4b\x31\x51\x44\xb5\x8e\x4f\xd1\x58\x4a\xae\x3b\xb2\xc4\x84\x13\x28\xd5\x8d\x0d\x9d\xcf\x72\x23\xbb\xcf\x32\xc9\x0b\x05\xe7\xb2\xf1\xfc\x79\x8a\x41\x4f\x5c\x4d\x14\x11\xac\x38\xae\xee\x64\xfb\x82\x20\xa2\x5a\x52\x37\xaa\xa5\x89\x35\x2d\x11\x67\x37\xce\xdd\x0b\xd0\xbd\x53\xc2\x14\xaa\xe9\x00\x66\xb9\xf1\x5b\x28\xf1\x62\x67\x97\xf3\x07\xab\xd5\xf5\xc1\x4d\x19\x04\xf6\xfa\xe0\x79\x99\x88\x5e\x7f\xf5\xf6\x2b\x22\x38\xad\x3a\x03\x0e\xa6\x39\x29\xf2\x0c\xf5\x1f\xa5\x94\xc4\xd1\x7d\x19\x00\x54\x22\x4f\xe7\x51\x5a\x74\x4a\x92\x1e\x66\x48\xc5\x01\x16\xe3\x9b\x75\xd2\xa2\xc3\x89\x74\x3f\x82\x04\x8c\xb4\x92\xf1\xda\xe8\xc8\x6c\x59\x9e\x26\x4e\xa2\xce\xf0\xbb\xb5\x0c\x27\xd9\x13\xc6\xda\xbd\x65\x4a\xd3\x45\xb5\xa8\xc4\xe5\x4b\x76\xaf\xd0\x20\x2f\xaf\x3b\x5d\x88\xcf\xa6\x14\xcd\x10\x61\x38\xcd\x8a\x51\x54\xa4\x0b\xd4\xcb\x29\x3e\xc2\x24\x5a\x43\xe9\x35\x5a\x47\xcf\x4c\x4c\x6a\xb5\x92\x6a\xa2\xab\x95\x38\x9e\x41\x9f\xe5\x5f\x5b\x2e\x11\x7d\x39\x2d\x50\x0c\x54\x40\x60\xc0\xaf\xf2\xea\xf4\xb6\x15\xe5\x62\x3a\x59\x02\x5d\x5c\xb5\x06\x55\x5b\x5b\x60\x18\xbd\xd4\x92\x66\x56\x08\x70\x10\x81\x17\x7b\xc3\x83\xa8\x1b\x8d\xa2\x83\x68\x47\x7c\xdd\x4b\xa2\x68\x0f\xef\xc9\xc7\x4e\x0d\x79\x61\x62\xfb\xb6\x80\x3b\xd0\x4d\xaf\xc5\x63\xba\x60\x38\xbc\x9d\x6e\x0a\x1c\x50\xc1\x62\x34\x84\x34\x1e\xa9\xaf\xf2\xa7\xab\x66\xb5\x01\x81\x9a\x50\xa1\x09\x81\x42\x58\xf1\xe4\x38\x11\x02\x4b\x82\x95\x28\x2c\xd2\x7d\x59\xad\xc2\x7b\xa7\x8b\xc3\x3c\xeb\x76\xa3\x42\x24\xaa\x1f\xfa\x98\x21\x9a\xb2\x9c\x1e\x84\xce\x5c\x25\xd2\x59\x07\xc5\x23\xdd\xee\x86\xee\x44\xc4\xa5\x82\xd1\x72\xca\x72\x9a\x24\x89\xc9\xdf\xd5\x69\x4b\x67\x0f\xf4\xd8\x46\xa6\x43\x48\x93\x6b\xef\x8e\xdf\x9d\x7c\xe9\x5a\x80\x3d\xc7\xc9\x78\x52\x8d\x16\xdf\x41\x71\x0a\x0b\xa5\x56\x04\x33\x38\x95\x6a\x21\x35\x2f\x98\x05\x10\xc6\x1b\x65\x32\x80\x59\x52\x18\xbf\x2f\xb7\x32\xe1\xfb\x85\x4a\x81\x60\x0a\x0e\xf2\x18\xc3\x14\x16\xe3\x72\x02\x46\x28\x4e\xf7\xa2\x71\xb4\xe7\xda\xcc\x91\x58\x7c\x3b\x28\x47\x51\x04\xf6\xa2\x49\x24\xcb\x1a\x65\x10\x81\xc2\x15\xd4\x54\x7d\x4f\x3b\x98\x74\x0a\xa0\x5b\x9d\xaa\xda\x53\x5d\x5b\x75\xdd\xe4\x5c\x74\xf3\x0c\x78\x65\x3e\x12\xe9\x1d\x5e\xa4\x04\xfa\xa8\xd6\xbc\xfe\xa7\xaa\x57\xe3\xce\x3e\x8e\x22\x88\x80\x8a\x98\xdb\x8d\x40\x9f\xa2\x65\x96\x4e\x51\x7c\xed\x9f\x5c\x1f\x5c\x3b\x82\xd1\x5e\x04\xd6\x06\xe2\xb9\xe1\x85\x8d\xd6\x6c\xb7\xab\xdd\x37\x89\x64\x12\x89\xd8\xd8\x01\x34\x21\x07\x24\x06\x23\x02\xd1\x58\x4b\xfe\x26\x09\x22\xd3\x7c\x86\xbe\xf6\xce\x9d\x97\xf3\xc5\x32\x27\x88\xb0\x98\x81\xbd\x28\x89\xf6\x02\x5f\x08\x00\x1b\xc3\xdf\x1a\x45\xc7\xe6\x48\xb1\xb6\x48\x86\x0f\xaf\x15\xa7\x05\x43\x8b\x86\x8f\xe8\x31\xd3\x02\xa2\x2b\xba\x95\xbf\x53\x66\x48\xe8\x13\x5a\x15\x0f\xce\xa9\x69\x07\x79\xda\x0c\x89\xf5\xef\xe8\x81\xf9\x35\x99\xf7\xb3\xe1\xdd\x41\x86\xfd\x8c\xee\x58\x25\xd0\xb3\xf0\x7b\x83\x3c\x5e\x66\x68\x49\xd1\x94\xdf\x3a\x65\x68\x52\xdb\x77\x07\x17\x1d\xf3\x75\x66\xc2\x8d\xa2\xc7\xfc\x3a\x85\x59\x76\x3a\xea\xe0\x05\x87\x76\xc7\x56\x99\xd3\x7c\xd1\x79\xae\x02\xdd\xe7\xf6\x23\xb8\x3b\x14\xea\xf9\x55\xc0\xf7\x8f\x64\xec\xfe\x08\x96\x84\xe1\x6c\x14\xdd\xe8\x0f\xfa\x83\x48\x68\x16\x9b\x56\x9b\x03\x7e\xb9\xba\x17\x30\x72\xc0\x7a\xde\x49\x2b\x16\xd0\x69\x21\x06\xed\xe7\x7f\xd6\x71\x2a\x76\xd6\x97\x0a\x05\xa7\xe5\xb6\x70\x30\x08\x75\x41\x28\x98\xfa\xe7\x83\x81\xa9\x76\xc9\x10\x30\xed\xae\x2b\xf2\x53\x83\x20\xd0\xdd\x44\x4e\x05\xe8\x6f\x35\x0f\x98\xd5\x5d\xe9\xef\xad\x0d\xa4\xa6\x42\x2a\x38\xcd\x69\xa4\x34\x21\x7a\xe2\x53\x93\xfd\x58\x3c\x28\xa9\x10\xc1\x6f\xfd\x56\xff\xd5\x7f\x7e\xff\xd5\xb7\x5e\x79\xf0\xf6\x3b\x77\xef\xdf\xbd\xff\x8d\xb7\x5f\xbd\xa7\xdd\x6d\x05\x3f\xaa\x25\x03\xdd\x6e\x43\x30\x63\xbd\xa4\xfa\x18\xbe\x10\x76\x54\x1b\xf9\x7c\x61\x48\x6d\x02\xf1\xc0\x45\x08\xa5\x7d\xbf\x6e\xde\x3d\x75\x18\x5d\x88\x92\xd4\xa0\xf4\xb9\xa3\x26\x61\x48\x79\x0a\x87\x06\x56\xf5\x2b\xbd\x8f\xe0\xc7\xc2\x81\x6f\x71\xcd\x41\xa7\x36\x96\x08\x7e\x23\xea\xd2\x96\x3e\x44\x3d\xd9\xde\xb6\xfb\x95\xe1\x4b\xa8\x12\x56\x57\xdc\x19\x7b\x9e\x8c\x07\x90\x24\xda\x93\xb1\xba\xa5\xec\xb3\x5b\x3a\xbd\xcf\xf6\xf6\x00\x19\xb3\x49\x82\xc6\xcc\xb0\x9a\x44\x5f\x35\x65\xc3\x1c\xf6\x31\x02\x4f\xf2\xa6\xe6\x0b\x4c\x7d\xb1\x95\xf1\xce\x1e\xbf\xa6\xf2\x1d\xf4\x39\xc4\x64\xa6\xb4\xe5\xa4\xef\xf6\x31\x67\xbb\x26\x9c\xe7\x9e\xa6\x2c\x16\x6f\x5f\xc0\x30\x76\xd7\x85\xf9\xa2\x9c\x9a\x71\xc4\x7e\xf6\x08\xb3\xe3\xbc\x64\x2f\xe7\x25\x61\x23\x32\x8e\xd4\xef\xde\x94\x67\x44\x13\x9f\xbe\xaa\xce\x14\x17\x22\x74\x71\x03\x92\x9d\x30\x1a\x78\x3b\xe6\x29\x20\xc2\x15\x2c\x48\xb3\x16\x2e\x1a\x0f\x26\xdb\x41\xa1\x99\xcb\x76\x4c\xe8\xb5\x6d\x20\xf1\x4f\x90\x36\x4d\xe1\x9c\xd4\x05\x14\x4f\x6c\xbe\x53\x67\x5f\xed\x59\x5b\x65\x65\xcd\x89\x6c\x59\x59\xfd\xc8\x69\x06\x2e\xdc\x37\x98\xfc\xd8\xd3\xeb\xb2\xf5\x4d\x81\xca\x19\x4e\x2a\x67\xb8\x1d\x0b\xf1\xce\x7d\x6f\xc8\xa6\x8f\x56\x2b\xe8\x81\xf3\xca\x05\x7b\x67\x72\xd4\xc5\x68\x3c\xbe\xf6\xa5\x6b\x30\xe2\xfd\x8c\xaf\x15\x5f\xba\x86\x75\xfa\x9b\x71\xfa\x78\xc5\xaf\xac\x00\xcb\xec\x2f\x0d\x91\xfc\x12\xe7\x53\x96\x2f\x57\x27\x98\x82\x52\x7f\xc2\xd5\x2f\xd8\xff\x90\x66\x38\x2d\x56\x52\x96\xb7\x3a\xcc\x49\x59\x80\x4a\xa3\x87\x25\xd0\x8d\x15\x36\x6f\x3e\x4f\xb3\x15\xcb\x17\x29\x03\xb9\xfa\x9a\xeb\xaf\x63\x86\x27\xa0\x5c\xa8\xec\xd4\xc9\x4c\xbd\xbc\x42\x4d\xc0\x34\x7b\x30\x8a\xc7\xdf\x9c\x4f\xc0\x1c\xad\xe2\x71\x46\x27\x60\xae\x07\xf3\xa5\xeb\x27\xba\xd0\x31\x3e\x41\x3a\x5b\x77\xf8\xcd\x14\xe1\xbc\x3c\x9d\xac\xbe\x5d\x82\x53\x3d\x41\x5d\xe1\xf1\x6a\x7a\xbc\x2a\x8a\x55\x71\x5c\x9d\xda\x22\x65\x74\x75\x82\x28\x5b\x61\x32\x03\xf1\xc1\x08\x3f\x5e\xa1\xc7\xba\x14\x9e\x22\x0d\xf1\xc5\x2a\x03\x79\x59\x20\xfb\xc5\xf9\x80\xa7\xf5\xfc\xdc\xb4\x82\x88\xc9\x42\x44\x67\xca\xee\xbf\x5d\xe2\xf7\x74\xce\x7b\xbc\xaf\x09\xd4\xd8\xcc\x97\x5f\x02\x47\x16\x2d\x0a\xbf\x2a\x01\xe8\x91\x59\xfd\x47\x45\x00\xc4\xe5\x42\x66\xc6\x29\x20\x69\x76\xba\x8a\x0f\x41\xba\x8a\x67\x00\xa7\x47\x24\x5f\xc5\x4b\x90\x52\x44\xd8\x31\xe2\x49\x9a\x8b\xbc\x02\x9c\x92\x7c\xb9\x8a\x19\x38\x46\x20\x2e\x70\xb1\x2a\x90\xe9\xb7\xc0\xaa\x97\x6f\xa6\xbc\xbd\xe6\xef\x62\x05\x4f\x90\x1e\xdd\x1c\x39\xcb\x56\x78\x93\x60\xf5\x2c\xb1\xea\x4e\xe5\xc0\xfa\x62\xf3\xf5\x54\xc1\x06\x20\x6a\x33\x45\x5a\x2d\x2f\xc8\x4f\xec\x07\x9e\xae\x21\x04\xf2\xba\xaf\xae\x27\x5f\x72\x8d\xf0\x05\x88\x51\x01\x0e\xbc\xd1\xe6\x95\xfa\x71\x71\x9c\x57\x67\x34\xa5\xb8\x90\xdb\x35\xc6\xc5\xca\xc2\x0b\x9b\xdd\x0c\x1e\x8f\x31\x9a\xe8\x5a\x8f\x71\x6d\x33\xc7\x65\xb1\xc2\xba\x5e\x59\x34\x6e\xdc\xda\x00\x05\x1e\x22\xe2\x0e\xc7\x60\x3b\xc7\x6e\x0d\xb2\xc7\x76\x3b\xb8\xf9\xf8\xb1\x83\xa7\xef\x55\xa6\x3a\x4b\x59\x7a\x98\x16\xee\x74\x27\x10\x53\x8a\x04\xfe\xbe\x9d\x62\xca\x69\x58\xc4\xb9\x01\xa1\x3a\xbf\x44\xf9\x32\x13\xd0\x8c\x16\x29\xcf\x58\xc8\x9d\x11\x4d\x8f\x71\x36\x8b\xa0\xfc\x4b\x55\x66\x81\x1e\x0b\xfd\xe4\xc7\x72\x2d\xa3\x45\x7e\x82\x78\x9d\x5c\x91\x81\x68\x9a\x3f\x8a\x60\xf4\x10\x13\xd9\xe4\x7b\xf9\xe2\x10\xf3\x12\x32\x21\xf6\x52\x49\x04\x5b\x23\xb4\x2c\xc7\x11\xfa\x76\x89\x97\x0b\x44\x58\x04\x23\x4c\xe6\x39\x5d\x88\x27\xe0\x08\x46\x54\x84\xa9\x8f\x16\x39\x41\xc2\xdc\x7c\x89\xa6\xbc\x05\xa9\xc3\x2c\x12\x73\x5c\x1c\xf3\xdf\xc7\x08\x2d\x23\x18\x7d\x0b\xa5\xfc\x28\x88\x96\x79\x26\x76\x7c\x5d\x84\xbc\xed\x84\xbf\x92\x53\x64\x47\xb2\xb9\xd7\xbe\xf9\x6e\xf1\x4f\xbf\x74\x0d\x92\xe4\x5a\x3c\x7e\xf7\xd1\xbb\xd7\x7a\x93\xbd\xf1\x83\x77\xaf\xbd\x5b\xf4\x26\x20\x1e\xa7\xbd\xf7\xde\x9d\x4d\xf6\xbe\x04\xae\x41\xaa\x4b\xf0\x4f\x7b\x20\x1e\xdf\xee\xfd\xf6\x44\x15\xf8\xa7\xbc\x00\x4e\xae\xf9\x79\x8e\x64\x36\xaf\xc6\xef\x1c\x40\x7e\x4c\xeb\x40\x20\xb7\xa8\x08\x06\x82\xfa\xce\x2a\x8c\xd9\x98\x4c\xfa\x2c\x7f\x23\x7f\xa4\x1f\x1d\x26\xc9\xee\xc0\x4a\x17\xd3\x6a\x9b\x9a\xf7\x4c\x06\xc2\xb1\xb4\x6a\x9c\xde\xc2\xfb\x94\x73\xeb\xd2\x13\x10\xea\x1b\xb4\x1b\x93\xf1\xa0\xd6\x03\x19\x0f\xab\x85\x86\x5b\x0b\xdd\x91\x31\x39\x1b\xca\x0e\x1a\xca\x86\x3a\x1f\x4c\xec\x04\x0b\xbe\xc8\x31\x4a\x90\x74\xf8\xe4\xc0\x26\xf1\x20\xb5\x5a\x95\x31\x70\xbb\x10\xfb\x29\xa9\x66\x88\x62\x6a\xd9\xc5\x5b\x39\x15\xfc\x8d\xe1\x21\x34\x3f\x54\x88\x70\x6a\xe6\x6c\xb1\x2c\x94\xc8\x37\x6d\x8e\x78\xa7\xd5\x59\x89\x4c\x77\x2b\x95\x31\x58\xef\xe4\x31\xe7\xc4\x9c\x6c\x00\x53\x91\xe5\x0f\x50\xb9\x2b\x40\xe2\x61\xef\xe5\x74\x7a\x8c\x62\xb0\xc6\xf3\x78\x57\xe1\xb6\x54\x70\xe9\x76\xfd\xdf\x42\x9e\x2c\x9c\x1a\xdd\x7d\x44\x34\xe2\xab\xf7\x47\xce\x2d\xca\x67\x6b\xf9\x80\x78\x48\xf3\x47\x05\xa2\x9d\x59\x8e\x8a\x0e\xc9\x59\xa7\x28\x97\xe2\xda\x1c\x68\x11\x76\x96\xf2\x96\xbd\xcc\xb3\xd3\x39\xce\x3a\xfc\xfa\xd3\x41\xc5\xf3\xbd\xe2\x38\x5d\x8c\x3a\xc7\x8c\x2d\x47\xd7\xae\x1d\x61\xd6\xc7\xf9\xb5\xd3\x97\xbe\x76\x9d\x1e\x45\xc0\xa2\x7c\x69\x82\x13\x05\x1a\xb7\x2f\xe8\x0f\x66\x78\xca\x12\xa5\x95\x26\x7c\x14\xa8\x3c\x88\xd6\x85\xbd\xd0\x25\x67\x0e\x58\x5c\x81\x82\x34\xaf\x2b\xe9\x91\x86\x98\x72\x1c\xe3\xb0\xbd\x8d\xba\x12\x53\x5e\xe3\x6b\x05\x12\x16\xc2\xca\xcc\x4a\xb4\x22\x7c\x21\xc5\x95\x1c\x1d\x75\xc3\x11\x4c\x08\x43\x42\x39\x02\xc3\x4a\x87\xcc\x3e\x8d\xad\x96\xda\x94\x2f\x5e\x77\xec\xc4\xcc\xc7\xf1\xf5\xc9\x81\xfb\x63\x74\xb6\xde\xa9\x0f\x54\x79\x16\x1c\x8b\x0b\x4a\xdf\xbd\xa3\x4e\x7c\xdd\x99\xa5\x1c\x38\xb5\x53\x31\x39\x6a\x2a\x56\x12\xa5\xe2\x7c\xaf\xd7\xd0\x82\xb2\x06\x65\x77\x18\x43\x0f\x5e\x49\xa9\xe1\xae\xfa\xe0\x19\x6b\x38\xc3\x45\xf3\x9a\xe9\xaa\x62\xe9\xbd\xba\x36\xa7\xd5\x2a\xfa\x0b\xd2\xbc\x1e\x95\x6a\xd5\x9b\x7b\xdd\x83\xb6\x2c\x51\x0d\xb5\xe3\x43\x42\x19\x81\xd7\x11\x50\x10\x17\x4d\x51\xa4\x40\x81\x2f\x59\x85\xe2\x81\xb5\x25\x34\x4f\xd2\x8f\x6e\x64\x53\x47\x2e\x59\x72\x81\xd9\xa2\xa7\x3c\xb6\x7d\xc1\x31\xaa\xb7\x6d\xa9\xe2\xb9\x67\x91\x7a\x6d\xf3\xa1\x4f\x78\x8b\x66\x79\x42\xc6\x1e\xad\x16\x10\x3e\x08\xb4\x71\x29\x9b\x52\x0d\x43\x16\x16\x2a\xf4\xd2\x13\x80\x64\x59\xb4\xef\x2a\x0f\x03\xdc\x2c\x03\x2c\x30\x8a\x87\xbb\x49\x22\xb5\x8d\xb2\x3c\x65\xc2\x48\x42\x87\xd5\xd3\xcd\xb1\xd6\xcd\x81\x0a\x41\x38\x60\x23\xb4\x17\x75\xa2\x3d\xe6\xe0\x59\x83\x8e\x73\x78\x2f\x3d\x68\x53\x2b\x38\x6f\x5d\x31\x38\x52\x75\x5a\x72\xc4\x91\x75\xdd\x05\xb2\x3e\x25\x60\x09\x33\xcd\xd5\x4c\x75\x62\xae\x13\xc7\x3a\xb1\xd4\x89\x99\xe3\x82\xb0\x48\x76\x45\x64\x65\x65\xbf\x22\xcc\xd2\x75\xba\x30\x1a\xba\xbc\xe4\x3c\xa9\x20\x34\x8c\x8f\x85\x8b\x4b\x34\x8d\x11\x58\xad\xa8\x4e\xf2\xb5\x59\x26\xc7\xe3\xeb\x15\xbe\xc5\xdb\x89\x2e\x07\x37\x9f\x28\x17\x73\xf5\x4f\xcb\x89\x1d\x03\xe7\xe0\x66\x1d\x4c\x3a\xe2\x35\x7e\xde\x5f\x08\x1d\xa3\xd9\x5e\xf4\xa5\xc8\x38\xa5\x9d\x26\xe9\x78\x36\x81\x65\xb7\x9b\x8e\x97\x93\x6e\x37\x9e\x56\x6d\xa7\x97\x98\x49\x5a\x3e\x05\x70\xd6\xf8\x71\x06\xa4\x25\x9e\x7c\xb5\xe6\xfc\xc1\x3b\xe8\xe8\xd5\xc7\xcb\x78\x06\x23\x1c\x01\x38\xb5\x8e\x38\x16\x49\xae\x79\xc8\xc5\x8b\x83\x6e\x77\x37\x9e\x25\x71\x96\xe4\xe3\x45\x6f\x38\x01\xe3\xc1\x04\x68\x80\xee\x2f\x7a\x3d\xb0\xaf\x9d\x3f\xf1\x42\x19\xe7\x95\x78\x19\x38\x4d\x32\xc9\x2c\xea\x3e\x67\x70\xca\x89\xab\x15\xe2\x6c\x7b\x2f\xaa\xc8\xf2\xce\x2d\x21\xbc\x74\xfd\x92\xcd\x0f\xd0\x28\x7c\xf6\x08\x56\x48\x7b\x54\x46\x49\x40\xb6\x07\x6a\xc2\x64\xe4\x91\x33\xb4\xf5\x38\xac\xb7\xd9\xaf\x6c\xe8\x2d\xa0\xae\x4b\x92\x9f\xa2\x6e\x9e\x63\xde\x26\x03\x1c\x02\xef\xb1\x48\xe6\xf5\x8f\x55\x48\x46\xa1\xb5\xa5\xbe\xdc\x7f\xf3\x8d\x97\x52\x5a\x54\xca\xab\x5c\xe1\xd8\xe2\xa5\xbc\x24\xb3\xd7\x4d\x55\xbf\xa0\xd0\xe1\x3c\x0c\x17\x0d\x41\x2c\xc3\x04\xf5\x8a\x93\x23\x23\xbf\xb7\x59\x61\xf4\x34\x15\x24\x7c\x8f\x10\x41\x34\xcd\x2e\x1d\x31\x65\x47\xf7\x4e\x8e\x3c\x03\x06\xab\xe7\x2e\x35\x7c\x73\xc6\xf0\xfc\x14\xc4\x04\xc0\xdc\x0b\x0b\x84\x75\x40\xce\x24\x49\xf2\x6e\xf7\xda\xbb\xfd\xe2\xe4\xe8\x4b\xd7\xe4\x26\x17\xe1\xd2\x2b\xe5\x8d\xcd\x59\xef\xa6\xf3\x96\x92\xcb\x7e\x04\x06\xbf\x9c\xa5\x45\x01\x84\xdb\xc4\xa9\x48\x42\x8f\x2e\x1d\xb3\x45\x76\x2f\x9d\xa3\x38\x17\x3e\x0c\x1a\xe1\xec\x83\xed\xea\x50\x52\x82\x26\xb0\xb5\x62\xb4\x5a\x45\xae\xb6\xcf\x37\xdf\xbd\x76\xed\x08\x7a\x59\x32\xa7\x1f\x89\x9d\x6a\x67\x9f\xd4\x2c\x38\x77\x99\x25\xfd\x4e\x74\x2e\xd9\x4c\x74\x4b\x60\xd1\x73\xfc\x4f\x47\xc0\x2c\x89\x9e\xdb\x63\x7b\xcf\x45\xcf\x05\x70\x31\xcb\xd3\x59\x0f\x13\xcc\x8c\x73\x85\x9a\x2e\xcf\x06\x10\x99\xab\x1a\xb3\xfa\xeb\x14\x7d\xbb\xc4\x94\x5f\x08\xa4\xfe\x3c\xff\x6f\x77\x20\x36\xdb\x2e\xab\xdd\x2a\x39\x77\xb1\x28\x0b\xd6\x91\xbd\x75\x52\xd2\x71\x46\xd3\x8f\x74\x44\x48\x43\x99\x6c\x5c\x42\x92\x2e\xd0\x6a\x15\xcb\x44\xa2\xcd\x15\x51\x3f\x4b\x0b\x76\x47\x6b\x40\x5e\x8b\xc0\xde\x90\xb3\x35\x6b\xd7\x88\xcf\x2a\xf1\x0a\xe3\x48\x6b\x36\xc9\xaf\xd4\xca\x4a\x52\x8b\x3f\x9e\xe8\xf5\xd1\x59\x3a\xea\x46\x84\xa6\x7b\xd1\x35\x0f\xea\x11\xcc\x55\xa6\xd4\x06\xee\x55\xbe\xa6\xc9\x78\x02\x0b\xfe\x5f\xe9\x79\xb7\x52\xd0\xfe\x56\xd1\x7f\x80\xd2\x87\x0f\x0a\x84\x44\xb0\x87\xc1\x7e\x76\xcb\x7a\xe1\xd6\xbe\xae\xa6\xd2\x03\x37\xdf\x9e\x53\x0f\x4c\x18\x0e\xc0\x01\x89\xa7\x30\xea\xf1\xbd\x1a\x81\xd5\x2a\xd5\x51\xf5\x47\xf5\xe2\x39\x14\x6e\xb1\xfc\x0a\x85\xae\x00\xd6\x95\x67\x56\xe3\x9c\x28\x19\xec\xd3\x5b\x26\x5e\x04\x15\xf2\x2a\x67\x9e\x31\x8b\xc9\x98\x4e\x00\x58\x03\x7e\x70\xb9\xbe\x11\x5a\x34\x23\xe1\x76\x27\xd4\x5c\x8c\x60\x11\xc0\xfd\x45\x3a\xa5\x79\x4f\x93\xe0\xde\x61\x89\xb3\x59\x6f\x9a\x2f\x96\x25\x43\xb3\x0b\xed\x80\x2f\xc4\x8b\x78\x55\xd3\x99\x24\xa8\x3f\xcd\xb3\x2c\x5d\x16\xe8\xab\xe8\xb4\x80\x34\x41\x9c\x40\xff\x16\xaf\x0c\x71\x82\xfa\xf3\x2c\x65\x0c\x11\xf1\x31\xe7\xbb\xa5\x78\x23\x7d\xef\xb4\xaa\x1e\x1a\xdb\xa9\xa2\xda\xd5\x08\xa6\x7a\xe6\x00\x16\xc9\x60\xbf\xb8\x85\xf6\x8b\xbd\x3d\x90\x8e\x8b\x89\x73\x55\x2a\x26\xd2\xaf\x42\x80\x82\x9e\x71\x7c\x1f\x59\x33\xe5\xde\x10\xc0\x69\x9a\x65\x87\xe9\xf4\xe1\xc8\xea\x38\xf6\x86\x93\xf5\x3a\x4e\xa5\x17\x3f\x5e\x45\x78\xf1\xd3\x05\xe1\x3c\x21\x71\x26\x89\xca\x71\x10\x12\x98\x4c\xf3\x05\x26\x47\x2f\xeb\x1a\x1c\x1a\x52\xf0\x74\x9b\x1e\x15\xd6\x49\x79\x50\xe3\x12\x87\xb8\x2a\xe2\x5e\x2f\xa9\xfc\x83\x00\x58\x8f\x62\x9c\x9c\xad\xa5\xa7\x4a\x61\x09\x76\x84\x42\x66\x14\x1d\x51\xa0\xa1\x0d\x7e\x61\x2b\x54\xf5\xc2\xab\x6e\x9c\xa2\x6a\x96\x31\x4f\x44\x51\x20\x80\xa1\x9a\xcb\xa1\xf0\x2e\x05\xb1\xd1\x6b\x60\xb1\x6d\x9d\xb7\xef\xaa\xae\x9e\x55\x81\x33\x9a\x42\x0b\x9a\xe0\x15\x99\xdf\x45\x96\x9e\x6d\x84\x5a\x4d\x61\x5b\xf6\x98\x8d\x10\x14\xdb\x70\x44\xe0\x43\x74\x3a\x62\x7c\x97\xe2\x8a\x6f\xf3\xfc\x20\xc6\x7c\xec\x62\xe1\x01\xe8\x17\x4b\x85\x02\x03\x48\xc1\x88\x7f\xe2\x7d\x50\x00\x31\xe7\x01\x3c\xce\x4c\xef\x66\x5f\xb7\x82\xc5\x38\xce\x00\xd0\x53\x1e\x1f\x4f\x80\xbc\x50\x08\x12\xf0\x72\x49\x29\x46\xb3\x97\x55\xd5\xd0\x8a\x98\x2c\x56\xcf\x72\xcc\x43\xbc\x4e\xe5\xfe\x75\xd4\x93\xf8\x24\xa4\xd5\x8b\xe5\xd1\xcd\x90\x98\x18\xd2\x56\x9a\x25\x14\xc0\x53\xc2\xae\xea\xa5\x7c\x07\xf5\x6f\xbf\xf3\xce\xed\x6f\x3c\x78\xf5\xf6\xcb\xaf\x27\xd1\xff\x1f\xa5\xd3\xe3\x7e\x04\x75\xee\x1b\xaf\xbe\xf5\x9b\xf7\x5f\x4f\xa2\xf1\xa4\x6e\x78\xeb\x8f\x54\x13\x98\xde\x43\x74\x1a\x62\x71\xfd\xd2\xe8\xf1\x32\x25\xb3\xde\x52\x0d\xb0\xa1\x94\x33\xfb\xf3\xea\x2d\x69\xe7\x09\xc6\xa7\x16\x52\x1c\xd5\x18\x4d\x76\x5c\x5e\xd7\x58\xb3\x49\x07\xdf\x5a\xd0\x33\x04\xd5\x65\x77\x03\xa5\x4a\x74\xec\x53\x34\x2b\xa7\x5e\xf0\x4b\xeb\xdb\xbd\x16\x68\xd5\xe1\x48\x12\x8f\x23\x01\x6b\x47\xd6\xad\xd0\x83\x80\x35\x1c\x4f\xc0\x3a\xc6\xc0\xc4\x3e\xd6\x15\x88\xb3\x62\xd6\x05\x84\xe4\xc8\xe3\x50\x41\xb9\x88\x00\x40\xc1\xb6\x1f\x8c\xa3\x68\x32\xca\x5f\x1c\x1c\x8c\x2d\xad\xcd\x7b\x43\x30\x19\x55\x21\xf2\x24\x87\x10\x3d\x07\xbe\x04\xed\x3f\x36\xa0\xd7\x39\x7c\x39\xc8\xd5\x18\x4f\x20\x75\xec\x1d\x42\xb6\xc8\xfe\x0d\xc8\xc1\x0a\x92\x10\xbd\x2a\x66\x31\x14\xf9\xca\x13\xaa\xf0\xe5\x80\x8e\xa9\x3d\x9f\xf6\x86\xa3\x01\xa4\x09\x35\xf5\x7c\x1a\x69\x10\x29\x97\x6a\x80\x67\x7a\x72\x33\x7e\x00\x4b\x42\xf9\x66\xba\x1c\xd1\xf5\x45\x16\xc0\x3d\xe9\xbf\x8e\xd9\xf1\x9b\xe9\x32\x21\x0d\xdc\x81\x3e\x7f\x62\x04\xfa\xde\x20\xb6\xd1\x25\x4d\x76\x7b\x25\x29\xd2\x79\x50\x25\x6d\x0b\xf3\x15\x2c\x75\x84\x58\x4f\x4c\xc6\xb4\x1b\x2c\xa6\xd8\x15\x81\x3a\xba\xe4\xe5\xbb\x55\xf6\x34\xda\x1c\x9c\x38\x73\x21\x1c\x34\xea\x59\x43\xcd\x5d\x8d\x8c\x26\x1c\x74\x78\xac\x91\xa3\x30\xd5\x12\xd0\x97\x05\xe1\xca\xb6\xdb\xbc\x0a\x2d\xc0\x1f\x74\x78\x77\xa9\xba\x84\x8d\x90\xb7\xa0\x35\xd0\xa6\x41\x68\xe3\xf6\xd0\x16\xbc\x4e\x4f\x5c\xaa\x83\x17\x85\x8b\x01\xac\x0d\xd0\x3d\xa0\x9e\xfb\x38\xbc\x5c\xa8\x3b\x6d\x97\x21\xfe\xc7\xfa\x61\xae\xdd\x02\xa6\xea\x16\x90\x01\x38\x4f\x06\xfb\xf3\x5b\xd9\xfe\x7c\x6f\x0f\x4c\xc7\x73\xf7\x16\x30\x9f\x28\x06\x5d\x05\x1a\xab\x51\x2c\x10\x4f\x81\x70\xc8\xec\x51\x25\x38\x4b\x8e\xfb\x92\x38\x2a\xf7\xcc\xe3\x89\xa5\xf7\xa7\x71\xdd\x07\xf9\xa2\xc2\x9d\xc2\xdc\xee\xd2\x71\x3e\x11\xf6\x55\x35\x1c\x93\x7c\x2b\xf6\xf8\x56\xba\x16\x32\x06\x00\xd3\xa4\x74\x39\xf5\x5c\xfb\x2f\xad\xc0\x59\x7a\x82\xb0\x28\x94\x02\x11\xe6\xea\x24\x39\x5b\xef\x2c\x03\x5e\xcc\x9d\xf8\x35\x63\x32\xd9\xa1\xab\x55\x5c\x35\x4a\xf6\x5c\x42\x19\xae\x46\x9d\x70\xd3\xf1\x6c\xcc\x26\xc2\x9d\xb4\x74\x07\x65\xb8\x00\xec\xb2\x0b\xab\x55\xc3\x57\xcd\x23\x54\x2f\xa5\x68\x2d\xc6\xa6\x0f\xbe\x90\x99\x74\x7d\x50\x07\x91\x02\x62\x3f\xda\x43\xa3\x88\xe4\x44\x4a\xf3\x8a\x7e\xb4\xc7\x64\x83\x3b\x0b\x29\x4d\xc8\x01\xa4\xdd\x6e\x7c\x32\x8e\xf8\xc1\xbe\x47\xf6\xa2\x57\xf0\xec\xe5\xe3\x94\x1c\xa1\x48\xfb\x7e\xcd\x0f\x0b\x44\x4f\x10\x8d\x73\x78\xca\x0f\x4c\x31\x96\xa3\xa4\xd0\xae\x6b\x4e\xe0\x59\x4e\xee\x10\xcc\x46\xaa\x3c\x89\x23\x4c\x30\x8b\x5c\x85\xfc\x53\xc9\x89\x4b\xfd\x7b\x4e\x07\x0e\x93\x4d\x37\x88\x8a\xcc\xf9\x29\x5d\xfa\x63\xdf\x93\xc4\xd4\xb9\xc2\xd4\xaf\xb2\x2a\x7c\x50\xd8\xe9\x02\x4e\x52\x1d\x58\x1d\xaf\x56\xb1\x50\x82\xef\xe4\x30\xe5\x17\x44\x71\x75\x94\x50\x2c\x12\x71\x29\x55\xbe\xa2\x8d\x78\xbc\xd8\x29\x12\xa3\x8d\x21\x22\xd1\x11\x68\xef\x73\x76\x3d\x47\x9e\x27\x21\x55\x5e\xc4\x57\x14\xfd\x50\x58\x00\xe8\x79\x00\x93\xe5\x8d\x05\x62\xb7\x8b\xfa\x39\x27\xc6\x8f\x70\x96\xbd\x82\x0a\x46\xf3\xd3\x57\x33\x24\xb5\xca\x9c\xc5\x2b\xfa\x33\xf9\x31\x76\x98\xe5\x62\x2d\x77\xd9\x11\x44\xf0\x90\x5f\x2a\x97\x35\x86\x5c\x45\x60\xf5\xf1\xd4\x5c\x09\x64\x5c\xa5\xdc\x78\x28\x88\xc1\xa4\x89\x18\x10\x45\x0c\xb0\x20\x06\x48\x85\xc7\x38\xab\xde\x46\xe5\xa4\xa3\x25\x45\x27\x88\xb0\x57\xf2\xf2\x30\x43\xef\x20\x32\x43\x34\x82\xbb\x03\x2d\xda\x2e\x10\xb3\xb1\xfa\x63\xda\xb7\xf0\x84\xd8\x29\xd3\xdc\xd2\xd0\x8d\x61\x46\x1d\x32\x03\xd6\x13\xc0\xaf\x25\xe9\xec\x2e\xc9\x4e\x63\x33\xba\xc3\xf5\xda\xf3\x55\xf3\x75\x94\x3e\x7c\x33\x5d\xc2\x54\xa2\x85\x42\x85\xa0\x5b\x28\xdd\xb6\xd9\x96\xa3\xca\xa6\x74\x88\x5c\xf5\x2d\x4b\x3e\x52\x2b\x18\x42\x66\xfc\x25\x43\x89\xbc\xfd\xc0\xec\x76\x50\x1f\x17\x0a\x13\x30\x39\x92\xaf\xe6\x66\xf1\x47\x64\xb5\x42\x7d\x92\x33\x3c\x3f\xd5\xa4\x56\x8e\x4a\x5c\xa3\xb6\x9f\xef\xf2\xe6\x7f\x8e\xa3\xbd\x2d\x57\xa5\x3e\x5f\xa9\x55\x05\x0b\x8a\x2f\x40\x6c\xad\x2d\xb6\x4c\xbf\x72\xeb\xee\x65\x38\x1c\xe0\x64\xf3\x5d\xfd\xea\x5d\x6a\x39\x37\xed\xfa\x15\xdb\x75\xae\xaf\x88\xa3\xbf\x69\x09\x50\x97\xe7\xf3\x41\xe3\xe9\xbe\x63\xca\xa3\xc3\x5e\x49\xe5\xa6\x92\x43\x72\x88\x03\xf2\x06\xc2\x38\x51\x96\x53\x46\x22\x3a\xd0\xb6\x29\x86\x2e\x4a\x5b\xd7\x7b\x03\x7b\x7f\x95\x8b\x5d\xbd\x78\x87\xa5\x2b\xce\xa3\x0e\xb3\x6e\x30\x3a\x91\xf0\xe9\x2b\x38\x0a\x26\xc2\x1d\xb6\x58\x7f\x9f\xe3\xde\x06\x15\xec\x5c\x08\x5a\xcb\x1f\x54\x50\xac\xea\xd4\x6c\x60\xb0\x07\x33\xb4\xe4\x74\x8f\x30\xce\xdf\xda\x98\x60\x49\x92\x60\x75\x18\x1b\xc7\x1a\x31\x86\x44\x28\x7b\x36\xca\xb6\x3a\x68\x87\x98\x30\x1b\xae\x48\x8c\x0f\x32\x2c\xf4\x90\x33\x58\x5f\xea\x7b\x83\xc4\xeb\xd8\x97\xe4\x33\x1d\xa7\xc8\x93\xe4\xcb\xa0\x7a\x3a\x48\x6f\x8c\x79\x31\x21\xc6\x92\x22\x73\x22\x13\x90\x01\x98\x4b\x29\x38\xcf\x29\x44\x8e\x09\x4c\xb3\x75\x17\xd4\xa5\x0a\xed\x2f\x74\x57\x8e\xff\xfa\xa8\xac\xa9\x9a\x0d\x82\xaa\x66\x03\x57\xd5\x6c\x30\x19\x9d\xad\x61\xf5\x06\x63\x95\x17\xac\x4f\x89\x03\x32\x42\x7d\x31\xc7\xd6\xc0\xba\xc4\x2d\xf1\x79\x81\x13\x32\xbc\x08\x4d\x14\x38\xc4\xf3\xd7\x43\x74\xba\x13\x22\x42\x14\x1c\x50\x11\x8d\x8f\xf1\x7b\x02\xbf\x3e\x10\x11\xd1\xb2\xba\xff\xe8\x01\x1d\x69\x07\xa0\x2f\x65\x29\x79\xc8\x6b\x92\x91\xe5\xd1\x94\x17\xaf\x8d\x80\x6f\x74\xb1\xd1\x24\x10\x3a\x8f\x04\xa3\x25\x37\x14\x2c\x96\xa5\xef\x9d\xb6\x2b\xd3\xb2\x3d\xe1\x2d\x27\x6b\xf8\x4a\xd3\x47\x4d\x5f\x50\x3a\x6b\x82\xca\x23\x8a\x85\xd2\xdc\x96\xf8\x0b\x57\xe6\x89\xdc\x4e\xf9\xdc\xae\xc8\x37\x34\x2a\xd6\x52\xa8\x88\xbc\x7c\xbe\xf6\x49\xbb\xf6\x7d\x46\xb2\x65\xdb\xb4\x55\xdb\x1c\x21\xce\xd9\x30\x6e\xdf\xf0\x85\x06\x9e\xb7\x6b\x5f\x63\x67\xab\x36\xd3\x56\x6d\x0a\x9c\x6e\xd5\x5e\xd1\xae\x3d\xb9\x13\x5a\xb5\x58\xb6\x6a\xd1\xec\x9f\x76\x8d\x66\xfd\x0d\xae\xf4\x9b\x0f\x89\xa7\xca\x61\x87\x1c\x90\x5b\xf1\x03\x1f\x8f\x6e\x7b\x1b\x65\xae\x10\xc0\x67\x82\xf8\x27\x16\xc4\x43\xa9\x60\x22\x3a\x69\x05\xfc\x2b\xba\xb7\xfb\x2b\xfb\xf9\xbe\xbc\x1b\xc2\xb4\x6d\xea\x9c\xda\x7c\xf1\x02\x70\xf8\x73\x30\x21\xd9\x7a\x29\xa5\xe9\x69\x3b\xa5\x82\xc6\xf7\x91\xab\xbb\xc2\x07\x4c\x44\x86\x41\x7e\x74\xe8\xf2\xa3\xc3\xc9\x68\x3c\xd9\xd9\x72\x93\x93\xaf\x01\x4a\x1c\x8d\x5d\x85\x01\xef\xfd\x5f\x0b\xfc\xb1\x75\xb6\x5b\x2c\x33\xcc\xe2\xa8\x1f\x01\x98\x26\xf9\x38\x77\xae\x5b\x34\x19\x08\x27\xd2\xe6\xe6\x7c\x16\x81\x83\x54\x85\xbd\xc4\xe4\x28\x1e\xc2\xd4\x14\x07\xba\x25\x18\x81\xd1\x38\x9d\xac\xa5\x2f\xbd\xc0\x50\xd4\xeb\x81\x7c\x64\x17\x97\xd7\x03\x94\x44\xd1\x08\x73\xee\x3c\xb6\xba\x9b\x03\x88\x7b\x42\x59\x33\xfc\x00\xaf\xc1\x86\xba\x5d\xa1\xd0\x40\x4d\x47\x08\x74\xbb\xd4\x89\x20\x29\x05\x96\xbe\x16\xd1\x40\xd4\x50\xef\xf1\x45\xe2\x8f\x6d\x14\xdb\x1c\x0e\x38\x38\xf4\x4a\xef\x25\x94\xdf\x12\x8a\xbd\x24\x3a\x8b\xf6\xa8\xf2\xde\x07\x23\xb0\x17\xad\x23\x1b\x7a\x5c\x32\xf7\x08\x1c\x14\x23\xb4\x17\xf5\xa3\xbd\xad\x0f\xe5\xe2\xe8\xff\x0c\x8e\x3d\xff\x6d\x23\xa0\x7b\x80\xd6\xae\xa0\x78\xeb\x34\x24\xc7\xb1\x6d\x07\x36\xb0\xe1\x5f\x3c\xfa\x63\xf9\xa1\xd6\xf7\xb1\xa7\x10\x69\xc0\xbc\xed\xf8\x2e\xb3\x5c\xcd\x83\xb5\x13\x1c\xdd\x75\xb5\x69\xe5\x4a\xf4\x20\x2a\x89\x1c\xc8\x2c\x1a\x91\x98\x02\xb1\xb7\x0a\xc4\x0e\xa4\x86\xa1\x48\x8f\x2a\xda\x86\x0e\xfb\x1f\x36\xa5\x03\xb0\xea\x1d\x1c\x83\xf5\xaf\x9a\x47\xd5\x3a\xd6\xe4\x7c\xfa\x06\x09\x38\xdf\x91\x16\xe7\xc0\x9a\xb0\xf6\xca\x95\x52\x86\xc0\x3b\x7e\xfd\x14\x83\x34\xd1\x21\xb7\x21\x4e\x06\xfb\xf8\x16\xd9\xc7\x7b\x7b\x80\x8e\xb1\xfb\x8e\x8f\xad\x3d\xb1\x31\x2c\xf2\x9d\x5c\xd5\xdf\x2f\xdd\xa7\xd3\x5a\xb7\xfa\x25\x95\xf1\xb3\x64\xb0\x4f\x6f\x31\xe9\x98\x60\x4c\xdd\x6e\xa9\xa3\xc9\x65\x5e\x75\x21\x11\xaf\x5f\x21\x95\xca\xea\x22\x4d\xd3\x0c\x91\x59\x5a\x89\x20\x24\x8b\xd9\x05\x0b\x2f\xed\x25\x33\x89\xea\x98\xaf\xef\xb3\xda\xdb\x7f\xed\x09\xda\x35\x50\xac\xec\x9a\x0e\x26\xca\x5e\xdf\x29\x18\x52\x53\x14\x8a\x71\xbb\x9c\xbf\xd8\x1d\x42\xa3\xd7\xc6\xe8\xa9\x59\xa4\x14\x16\x09\x1a\x57\xda\x9f\xc4\x60\x7f\x37\xa6\x49\x9c\x26\x45\x9f\x08\x1f\xe9\xa0\x3f\xcb\x89\xb0\x4d\x55\x22\xe8\x54\xf9\xcc\x85\xbb\x6c\xb5\xd2\xca\xfc\xbb\x49\xc2\xc0\x3e\xef\x12\xec\x2b\x47\xe9\x25\x38\xc3\x7c\x08\x79\x52\xae\xe7\x98\xa4\x59\x76\x7a\xc6\x07\xb0\x4b\xbb\xdd\xa2\x2f\xc7\x6e\x53\x31\x30\x85\x84\xe8\x58\x39\x51\x37\x81\x99\xc9\x5a\x4c\x6f\xc7\x9a\xa1\xdc\x3f\x5d\x22\xe5\xe0\xe0\x0e\x39\x49\x33\x3c\xeb\xf0\x1b\xc9\x62\xc9\x3a\x2c\xef\x88\xa7\xc5\x72\xca\x4a\x8a\x3a\x24\x27\x3d\x31\xc3\xc3\xcc\xde\x1a\x23\xb0\x5e\xc7\x15\x65\xb0\x06\xf7\x66\x4f\xc4\x10\x9e\xad\x85\x01\x0d\x5a\xad\x90\x8d\xe4\xf5\xe2\x0d\x10\x9c\x88\x8b\xa1\xa3\x8e\x9e\x96\x0c\xd9\xd4\xc9\xe7\x1d\xd3\x32\xec\xa4\xac\xb3\xc8\x0b\xd6\xb9\x11\x69\x01\x3c\x8d\x11\xbc\x01\x60\x9e\xe0\xf1\x60\x02\xd3\x04\x8f\x87\x13\x58\x24\x78\x7c\xdd\xb1\x3d\xd1\x9e\x18\x00\xcc\xd4\xbb\xf0\x02\xd1\x23\x14\x97\xb0\x00\x41\x59\x69\x2e\xd4\xce\xc5\xb6\x8a\x53\x98\x05\xdf\x62\xab\x3b\x6a\x56\x52\xe5\x33\xe6\x33\xdf\x87\xe7\xf0\x5f\xe7\xd0\x3a\x3d\x01\x7d\x26\xda\x5b\xef\x67\xa3\x3e\x82\x82\x1e\x05\x6b\x10\x94\xce\x7a\x3e\x07\x50\x7f\x46\xfd\x7e\xd5\xa8\x1f\x27\x2e\xd7\x39\xcf\x20\x7c\xfa\xe4\xc2\x0d\x90\x20\x6c\xb9\x2c\x91\x5a\xfb\xd0\xbb\x8f\x08\x92\xa6\x28\xe2\x16\x9b\x76\xbb\x69\x35\x58\x6b\x20\x2b\x8e\xa6\x39\x99\xe3\xa3\x11\x22\x27\x98\xe6\x44\x60\x2d\xd0\xa1\x75\x53\x11\xcb\x3b\x3b\x41\xdb\xab\xec\x14\x15\x73\xd5\x42\x6f\x82\x7e\x5e\xb2\x65\xc9\x5e\x93\xbb\x84\xb3\x14\x21\x82\x87\x45\xfc\xfb\x45\xca\xe2\xbc\xdd\xa6\xa3\xf9\xa2\x47\xf2\x47\x9f\x83\x6d\xd7\x8a\xd8\xb9\x0e\xa3\x2c\xbb\x65\xcf\xb4\x58\x04\x2f\xca\x97\xc2\xb9\x41\x98\xfb\xfb\xec\xa8\xa0\xf8\xf1\x56\xfe\x28\x26\x62\x6d\x76\xb6\xac\xcd\x71\xb9\x48\x49\xcd\xb5\xea\x33\x92\xf8\x8c\x24\x5e\x15\x49\xac\xfb\x63\x28\x5e\x51\xcc\x44\x8c\x81\xd0\xd8\xac\xb3\x19\x31\x06\x00\xe2\xbe\xc6\xd6\x96\x84\x27\xcb\x39\x63\xf6\x0c\xb5\x9f\xa1\xf6\xe7\x06\xb5\xab\x27\x29\xc7\x6a\x89\xa6\x2d\x71\x5a\xe3\xef\x67\x8e\xd3\x17\xbb\x37\x7c\x4e\x4e\xc9\x36\x90\x66\xf9\x33\xa6\xe5\x69\x31\x2d\x2c\xb7\x2c\xcb\xd6\x75\x79\xef\x73\xb0\x26\xcf\x28\xfa\xaf\x11\x45\xaf\x5d\x7f\xd8\x7b\x2d\xa9\x75\xc9\xa6\x9f\x03\x64\xbd\x18\xa9\x2e\xd9\xf4\x0b\x21\xdd\xb1\x8a\x0f\xe9\xd3\x88\x97\xe9\x39\xdc\xd2\xb6\x22\x4a\x20\xa9\x5e\x4b\x89\x68\xbc\x40\xf4\x44\xb8\x75\xd0\xae\x3e\xef\x10\x86\xe8\x49\x9a\x8d\x76\x87\x50\x46\x52\xb9\x9d\x65\xf9\xa3\x57\x17\x4b\x76\x3a\xaa\x98\x64\x1d\xe6\x79\x16\xeb\x5b\xf9\x83\x07\xf2\x1a\xff\xe0\x41\x3f\x35\x35\x22\x00\x95\x83\xda\xe2\x37\xab\x8d\xed\x0e\xa0\x64\x2a\xee\xd2\xfb\x78\x81\x7e\x3b\x27\x48\x1a\x8b\xcc\x6a\x36\x2c\xaa\x0b\xcd\x2a\xeb\xdf\x4c\x55\xf3\x4c\x5b\xa4\xbb\x3e\xa4\x06\x29\xcc\x9d\x54\x3a\xe8\x20\x43\x99\x69\xb1\x3e\x56\x13\xdf\xa9\xc6\x8b\xae\x00\x26\x02\xda\x1b\xeb\x34\x43\xa9\x18\x3a\x8d\xa5\x99\x9c\xf2\xa5\x28\xcb\x89\x0f\x49\x81\x18\x4f\xe4\x25\x73\x1f\x79\x65\x17\xb4\x24\x81\x97\x5f\xe2\x0f\x5e\xc5\xcf\xbd\x43\x58\x4c\xe1\x70\x20\x9c\x82\xc0\x45\x4e\x97\xc7\x6f\xca\xe5\x0c\xbb\x37\x90\xa0\x12\x13\xd3\x50\x82\xb8\x16\x0a\x5b\x6d\x74\xa3\x91\x4c\x12\xa2\xe3\x2d\xf1\x42\x18\x46\x0a\xe4\x00\xd2\x84\x56\x3e\x19\xe8\x03\x48\x84\x4c\x5c\x14\x55\x0a\x05\x8a\x5d\x24\x40\x40\x06\xf5\xd9\x7b\xea\x03\x7b\x2f\xa6\x40\xd8\x00\x58\xf0\xb9\x8f\xc1\x26\x97\x83\xac\x0e\x50\xb0\x86\xca\xdc\xa8\xe6\x8e\xd6\x5b\x0e\xe5\x0c\xb3\xe4\xf8\xdf\xe0\x1d\x76\xeb\x5e\xc5\x45\x2f\x9d\x33\x44\x83\xef\x85\xc1\x6d\xed\x7f\x94\x4e\xcf\x64\x11\xad\xc6\x74\x85\x54\xd3\x12\xc5\x8a\x71\xd8\xa8\x31\x06\x8f\x46\x18\x81\x27\x4b\x8a\xa6\xb8\xc0\x39\x91\xbe\xc7\x25\x02\xe5\x0e\x02\xed\x6c\x05\xea\x4e\x45\x86\x58\x41\x33\x7e\xda\xeb\xa7\xc4\x92\xb3\x07\x99\x63\x62\x33\x4c\x92\xa4\x38\xc8\x94\x16\xc9\x78\x30\x01\xa3\xeb\x3c\xab\xdb\x8d\x4b\x27\x13\x9a\x12\xc3\x09\x00\x30\x56\xb6\x6a\xce\x8e\x88\xd3\xbe\xa2\x0f\x72\x8c\x29\x2c\x01\x3c\x93\xf3\x19\x61\xa8\x67\x33\xca\xd7\x00\xf0\x63\x81\x2f\xb1\x2a\x4a\x60\x66\x5e\x44\xa5\x23\xac\x56\x58\x72\x88\xe6\x39\x0d\x3f\x2b\x6f\xc0\x84\x8d\xa8\x74\x75\x68\x42\x36\xa1\x09\x7b\x86\x26\x0d\x68\xf2\x92\x58\xe3\x27\xc5\x13\xf6\x08\x21\xf2\x6b\x89\x28\x98\x4c\xb3\xb2\xc0\x27\x98\x9d\x0a\x6c\x51\x88\x93\x9e\x1f\x71\x8a\x66\xc4\xe1\xd8\x62\x4d\xf0\x60\x66\xf0\x88\x5f\x63\xb2\x5b\xd7\x57\xab\xec\x12\xde\x6c\xd1\xe3\x25\x9a\x32\x34\xeb\x5c\xef\xe4\xd4\xbc\xdc\x4e\x1d\x24\xcd\x5e\xbc\xde\xed\x4e\x25\x06\x96\xfd\xe2\x18\xcf\xf9\x25\x26\x88\x85\x85\x8f\x85\x05\x9c\x5a\x2c\xcc\x2d\x16\xa6\x1a\x0b\x05\x06\x19\x34\xfc\x8c\x58\xdd\xd2\x1a\xbe\x53\x88\xdb\x6f\x00\x15\xb7\x7b\xeb\xb1\xfa\xab\xbb\x0d\x7e\x6d\xe8\xe5\xbd\x74\x81\xee\xd2\x4b\x38\x5c\x35\xce\x3c\x3b\x64\x7f\x5d\x90\xe6\x32\x8e\x5a\x8e\x35\xcf\x70\xe5\x57\x1d\x57\x9e\x00\x47\xe4\xcf\x5e\x3a\x0b\x5b\xab\x5c\x11\x9a\xb8\x56\xdf\x5f\x10\x77\xb5\x4f\x82\x9e\xd8\x43\xcf\x2b\x64\xfb\x0c\x7a\x72\xcc\x84\xd3\x0a\x7a\x96\x07\xd3\x2a\x7a\x96\xdd\x6e\x44\x04\x73\x17\x99\xf8\xd3\xec\x74\x89\xee\xce\x65\xa1\x6e\xd7\xfa\x4d\xaa\x7e\x1e\x4e\x80\x6a\x50\x0d\x77\x0a\x45\x34\xda\x51\xec\xee\x02\x58\x2f\xa2\xcc\x2c\x86\x00\xb4\x65\x06\xb3\x66\x66\x30\x9d\xcd\x0c\xfa\x4f\x0d\xfa\xb7\x65\xc6\x14\xfa\x87\x55\x6d\x3f\x5f\xa4\xf2\xd9\x2b\xc6\x17\xed\x15\xe3\xfc\x24\x43\x7b\xa6\x78\x22\xed\xdc\xad\x74\x04\x5e\xbd\xfe\x2e\x69\xa6\x52\x0d\xa7\x33\x4c\xb5\xca\x6f\x91\xa4\xe3\xc1\x04\x96\x49\x3a\x1e\xf2\x33\x36\x1d\x5f\xe7\xb4\xcc\x57\xf9\x65\x60\x47\x45\x59\x9b\xea\xd6\xcc\x6f\x43\x51\xf9\x48\xe6\x6a\x24\x69\x51\xe0\x23\x12\x4f\xa1\x8d\xd9\x56\xa3\x3b\x44\xd1\x9d\xb8\x68\x3a\x71\xad\xf6\x70\x09\xe7\xe7\xa1\x30\x33\x3c\x9f\x3f\xa3\x2e\xcf\xa8\xcb\x67\x49\x5d\xdc\x87\x11\x9f\x5b\x9e\x67\x79\xca\x1a\x19\x93\xf3\xd0\x94\xeb\x22\x8e\x85\x62\xd3\x9e\x94\xaa\x88\x88\x1c\x87\xa8\x73\x3d\x6a\xc1\xfb\xa8\x37\xe1\x2c\x29\x65\xb4\xa6\xd2\xd5\xf2\x69\xe2\x30\xe2\x46\x31\x53\x9f\xef\xd8\x38\x83\x04\xe2\x73\xed\xf3\x73\x18\x0b\x7c\xf6\x37\x2b\xdf\x61\x99\x24\x01\x44\xe3\x00\x4e\xc8\x79\x99\xd3\xbc\xf9\x69\x2d\x60\x36\x72\xfd\xd2\x8e\x1d\x8d\x20\x69\x92\xeb\x85\xfd\x5c\x9b\x3f\x34\x1f\x41\x69\xff\x01\x36\x18\x49\x2d\x46\xe2\x35\xb0\x1a\x95\x6d\x5e\xed\x14\x3e\x86\x8c\x28\x3e\x5f\x27\xcf\x46\x44\x55\xbf\xa5\x92\x7b\xb3\x73\x47\x75\x5d\xf0\x4a\xb7\x7d\x0d\x6f\x27\x5d\x30\x7b\xe2\xdc\x17\xb6\xe6\x3d\x01\x53\x4f\x30\x9f\x9e\x8f\x0f\x23\x1b\x65\xf2\x55\x86\x4c\xc5\xec\x11\x42\x8b\xf0\x78\x2a\xd0\xb3\x0e\x4c\xdd\xcb\xdc\x90\xf3\x9f\xfa\x01\x1c\x17\x42\x83\x21\xce\xc0\x01\xbf\x4b\xa6\x07\xa5\x23\xdb\x18\xa5\x2f\x5e\xef\x76\x63\x53\xfb\xfa\x04\x40\xf7\x3b\x18\xa9\x5f\x59\xf8\x0e\x98\xfb\x77\xc0\x1c\x3a\x3c\x99\xbf\x2f\xb4\x85\x83\xb9\x06\x96\xe7\x21\xd8\x61\x83\x87\x2f\xd0\x16\x39\xcf\xa9\x7f\x8c\x67\xe8\x5e\x39\x9f\xe3\xc7\x02\xa9\xf9\xcf\xdb\xe2\x57\x93\xc8\x4c\x7b\x8d\xe6\xec\x02\x67\xbb\x23\xdb\x42\x07\x17\x1d\xf3\x41\x44\x7d\x9c\xa7\x27\x79\x29\x30\xd2\x34\x1c\x41\x63\xd1\x4d\xe0\x19\x9e\x8d\x3c\xa8\xf1\xcb\x7b\x4e\x54\x24\x3c\x7d\x24\x3b\x2b\x52\x12\x86\xb3\x51\xf4\x95\xfe\xa0\x3f\x88\xd6\x2d\xb4\x19\xb6\x0b\xf0\xc8\x6a\x45\x37\x10\xdf\x8a\xe4\xed\xb3\x3b\x21\x9a\xee\x1f\xda\x62\xa4\x38\x2f\x8e\xff\xea\xe3\x37\xa4\x10\x27\x31\x4d\x10\xf4\xd7\x89\x82\x03\x3a\x72\x20\x4c\x81\x6b\x56\x6a\x84\x51\xb0\xf0\x76\x44\x69\x77\x44\x76\x7e\xa2\x3f\xdd\xa6\x63\x14\x22\x79\x53\xcd\xbb\xe4\x76\xf9\x4b\xbb\xfc\xd9\x5a\x59\x0c\x7d\xd6\xcf\x9e\xa9\x7d\xf6\x2c\xce\x27\x67\x2b\xca\x43\x46\xd3\xe9\x53\xe5\x47\x9e\xc9\x9a\x9f\xc9\x9a\x2f\x49\xd6\xac\xd1\xf7\xc9\x05\xce\x2c\xef\xcd\x52\xf6\xeb\xf2\x34\xc7\xa9\xea\xdb\x14\x6d\x62\x34\x9e\xf4\x68\xdf\x40\x56\xf5\xa9\x1e\x37\x3f\xa3\xb1\xfc\xb3\xa6\xa9\x08\x5c\xf4\xe9\x2e\x64\xfa\xf2\xab\x88\x49\x3e\x1e\x3d\x01\xfb\x2a\x5b\xb8\x32\xf6\x55\xaf\xc7\x33\xe6\xb5\xc6\xbc\x4a\xcb\xa1\x73\xb1\xae\x2c\xff\xd5\xc7\xec\x5f\x0b\xc6\xf5\xb3\x27\xb1\x17\x66\x5b\x5b\x2b\xbe\x5f\x95\x7f\xac\x66\x95\xf6\xd6\x56\x0f\x2d\x97\x7f\xbb\x6d\x44\x6d\xf1\xb1\x4f\x77\xf0\xe7\x81\xee\x10\x8b\x7c\x74\xdd\x46\x5a\xda\xd2\x78\xf4\xb3\x27\x26\x01\x7f\x81\x5b\x9f\x66\x9a\x96\xb4\x2e\x2a\x27\xf9\xa3\x18\xb4\x81\x57\x49\xf0\xe3\xcf\x1c\x60\xcf\xde\x2c\x7f\x75\xde\x2c\xc3\x36\x9e\x43\x30\x1e\xf8\x8f\x78\x97\x84\xe8\x1c\x7f\x45\x08\x9e\x16\xa8\xde\xce\x2c\xf4\x19\xa6\x3f\xc3\xf4\x27\xc0\xf4\x46\xff\x14\x17\x47\xfa\x92\x4d\x63\xcf\x42\x38\xc6\x30\xdf\x88\xf2\xca\x0a\x76\xa3\xe3\x8a\xab\xe2\x71\xe4\x34\xee\xc9\x11\x68\xa0\xc9\xcc\x57\x4f\x10\x61\x68\x06\xcf\x1e\x98\x53\x9d\x94\x59\x06\xf5\x61\x6f\xd3\x77\x97\x7c\x60\x85\xcc\xf2\xde\xb3\x64\x96\x35\xce\x1d\x35\xbb\x1e\x96\x11\x5c\x42\x0e\xc0\xfa\xf3\x74\xca\x72\x7a\xfa\x5a\x4e\xc3\xde\xba\xfa\x22\xa2\xc9\x6a\x75\xb6\xf6\x23\x66\x89\x18\x87\x76\x69\x78\x01\xcf\xb1\xb1\x65\x57\x2a\xc3\x8a\x1e\x58\xe3\xde\xb3\xb0\xbf\xe0\xea\xfa\xdb\x1a\x60\x0d\x0b\xcf\x03\xaf\x0a\xf4\x64\x91\x82\xbd\x07\xbc\x56\x8a\x40\x2b\x90\x00\x48\x76\xa6\x39\x29\xf2\x0c\xf5\x1f\xa5\x94\xc4\xd1\xd8\x45\x9b\x89\xde\x29\x68\xc6\xf7\x4a\x81\x58\x87\x57\x7e\x2f\x27\x08\x76\x0e\x4b\xd6\xd1\x57\x39\x95\xc9\x6f\xde\x24\x67\xbc\x60\xb9\xec\x47\xc2\xab\x73\x81\xd8\x1b\x72\x35\xdd\xed\x21\xed\x59\xc5\x93\xaf\xfc\xca\x19\x3d\x58\x2e\x67\x29\x43\x81\xe2\x4f\xaa\x3b\x17\xe8\x0e\x32\xb0\x86\x6e\x56\x60\xfb\x5e\xbc\xc3\x50\xa0\x45\x01\x7e\xcd\xc7\xa2\x2a\x5e\xaf\x5d\x87\x20\x2e\x20\xc4\xe2\x4a\x19\x03\xa3\xf8\xe8\x08\xd1\x58\x19\x2d\x2b\x63\xf2\x08\x22\x89\x0f\xda\xc8\xbc\x09\xd2\xfa\xbb\x80\xb5\x9f\xe5\x55\xa9\x62\x8c\x45\x18\x54\x1d\x08\xf3\xed\xda\xe5\x50\x70\x51\xb3\xdc\x0e\x38\x36\xd0\xa5\xc4\x68\x16\x95\x0a\x26\x80\x63\xd8\x47\x8a\x43\x24\x1d\x7d\xc4\x2a\xac\x23\x63\x4e\xef\x58\x72\x37\xa9\xc1\x58\xb7\xd5\x61\x43\x6f\x7e\x45\xc7\x55\x43\x6f\x2c\x0d\xbd\x4b\x36\xdd\x34\xf4\x90\x0b\x87\xf3\xcd\x00\xa8\x51\x98\x9b\xd2\x26\x73\x74\xb4\xe1\x1c\x08\xcb\x55\x3e\x03\xff\xf0\x26\x8b\x29\xd2\xc5\xb9\x04\xd6\xed\x0e\x92\x84\x5f\x73\x2f\x47\xcb\xcc\xd5\x99\xc8\x50\x5a\xb0\xce\x30\xd2\x1c\x17\xe3\x27\x32\xc7\x00\xeb\xcb\x61\xb5\x22\xe3\x48\xfc\xec\x21\xe1\xdb\x41\x78\x8e\xe4\xc7\x4b\x92\xe0\x6e\x37\xae\x5f\xa1\xab\xfe\x23\x22\x50\xf5\xd5\x4f\x01\x90\x8c\x8a\x9c\xb7\x4f\x6d\x9f\xf3\xe7\x92\x92\x8e\xe8\xb7\x23\x80\xd8\x11\x3d\xc3\x8e\x71\x96\x0e\x3b\x39\xed\x44\x11\xe8\x3c\x4a\x8b\xce\x32\x2d\x0a\x49\x95\xdd\x36\x3a\x72\x65\x9f\x33\xb1\xe9\x50\x93\x6f\x80\x9a\x4f\xc2\x65\x7a\x84\x7a\x0c\xb3\x0c\x19\x86\xd7\x66\xb5\x44\x11\xf3\x20\xc7\xc2\x64\x44\xb4\x84\x9c\x78\xb7\x4f\xf4\x96\xa6\x98\x55\x57\x29\xb9\xe2\x0f\x84\x4f\xe0\x3e\xef\xf5\x0d\x5c\x34\xba\x05\x39\x46\xe9\xec\x95\x94\xa5\x4d\xdf\x31\xc1\xac\xe6\x8a\x41\xf2\x6d\x71\x9d\x47\xf3\xba\x8c\x80\x64\x85\xcf\xb0\xf6\xf8\x71\x54\xe2\x19\xe7\x31\x74\x18\xe8\x90\xe7\x0e\xa3\xaf\xb7\xa5\x6d\xe3\xee\x42\x29\x40\x9f\xad\x21\x31\xc2\x1c\xdc\xc7\xb3\x24\xd0\x27\xc4\x7d\xb1\x0e\x09\x52\x31\x26\x38\x49\x94\xa3\x34\xb1\x7f\x69\x49\xfa\xc5\xf4\x18\x71\xe0\xdf\x25\x53\x14\x47\xc2\x9c\x55\x87\xff\xad\x0e\x4b\x03\x30\x02\x90\x41\x0a\x60\x14\x05\x5d\x58\x54\x98\xaf\x86\x39\x91\xd0\xa0\x77\x50\x9f\xa2\x45\x7e\xc2\xe9\xdb\x4e\x05\x36\x2e\x13\x97\xe5\xf9\xc3\x72\x19\x47\x34\x2f\x19\xa2\xa3\x45\x8a\x89\x00\x53\x4c\xfb\x0f\x64\xde\x9b\x78\x4a\xf3\x0c\x1f\xae\x56\xb4\x2f\x73\x38\xc7\x06\xfa\xe9\x94\xe1\x13\x74\x9f\xa6\xa4\xc0\x4c\x3e\xaf\x36\x4f\x73\x07\x1f\xe0\xfe\x92\xe6\x0b\x5c\xa0\xbe\xba\x8d\xb8\x6c\x66\x6e\x43\x08\xa3\x99\x56\xa9\xda\x02\xd4\x1c\x32\x7e\x76\x82\xd1\x79\x4a\xaf\xbd\x7b\x49\x8d\xe6\x3b\x5b\xda\xf0\xff\x36\xaf\x31\xfa\xee\x34\x5f\x5e\x5d\x90\xdd\xc0\xa6\xad\xdc\x0c\xce\xda\x6c\x38\x87\xaa\xe4\x0f\x11\x29\x34\x56\xde\x8e\x41\xbd\x88\x3c\x4d\x22\x38\xd0\x4f\x35\x12\x99\x5e\x7d\x8c\x0b\x86\xc9\x91\x40\xbf\xfb\xe9\x51\x2c\x5c\xaf\x88\x61\xde\x43\xcb\x54\x5c\x74\x47\x51\x67\xd5\x89\x74\xf6\xdb\x54\x44\x4b\x1d\xed\x0e\x74\xce\x3b\x68\x99\xa5\x53\x75\x53\x91\x43\x91\x69\x41\x76\xef\xf3\x8c\x57\x64\xc9\x22\xc0\xd0\xd6\x1c\xf1\x54\x7a\x8f\x3c\xe6\xc0\x2f\xa4\xc6\x22\x38\x9a\x86\x22\x6a\x70\x11\xd8\x91\x67\x18\xea\x17\xba\x65\xce\x35\xd8\x5f\x09\x03\x50\x17\x59\xca\x76\xbb\x5d\x9e\xb1\x9b\x10\x51\x52\x65\x26\xc4\x96\xa3\xb2\x71\x5d\x4e\xb6\xa8\x32\x13\xca\xb9\x40\x72\x8c\x28\x66\xaf\xd1\x7c\xf1\x36\x45\x27\x38\x2f\x43\x20\x10\x6d\x8b\x8f\x3b\xac\xdb\x8d\xb7\x0e\xd4\xa6\x03\x43\x76\x46\xca\x74\x0a\x80\x35\xe4\xe4\x2d\xc0\xde\x4b\x56\x56\x2c\x1a\xdf\xc6\xb3\x97\x4e\xe3\x08\x73\x1e\xb6\x8f\x67\x42\xad\xd9\x50\x62\xb7\xa4\x0e\x09\x24\x22\x53\x88\x17\x20\xbe\x61\x40\xec\x94\x01\xfc\xaa\x6f\x27\x66\xce\x62\x9d\x93\xe4\x10\x09\xb1\x49\x42\xc4\x1f\xa8\xdc\x00\xd5\x00\x16\x6b\x86\xbb\x8e\x4e\xfc\x13\x16\x01\x92\xa6\x28\xa6\x70\xc8\x79\x73\xb1\xb9\xb6\x6d\x10\x0c\xc0\x5a\xbe\x47\xba\xb3\x92\x4f\x4e\x3d\x29\x96\x4b\x35\x28\xe5\x68\x53\x98\xca\xd1\xa2\x4d\x03\xdd\x34\x52\xa5\x73\xd2\x00\xad\x1d\xad\x4a\xba\x7d\x77\x17\x1b\xb6\x77\x75\x17\xa8\x7c\xb0\x37\x04\x6b\x28\xb7\xfc\x79\x90\x40\x5e\x15\xc4\xf2\x60\x6f\x35\xbb\xdd\x98\x5a\xe0\x60\x71\x2d\x88\xb1\x84\x10\xc7\x4a\xfb\x8d\xa8\x45\x2e\xb3\xcc\x53\x18\xbe\x1d\x37\x40\x02\xec\xe4\xea\xa4\x53\xd2\x3b\xb2\x1d\x24\xf9\x05\x40\xd2\xe3\x20\x39\xc1\x05\x3e\xcc\xd0\x7d\x49\xb5\xaa\xe2\x09\xdd\x4d\x55\x36\xa1\xe5\x82\xf5\xa3\x5c\xd5\x00\x90\x25\xe8\x40\xbf\xf4\x8c\x06\x90\x24\xe3\xc9\x3e\xeb\xf5\xf6\xf5\x6e\x12\x6f\x3e\x78\x1e\x53\x4d\x2f\xc0\x19\xe9\x97\x44\x7a\x11\xa1\x60\xe7\x90\xa2\xf4\xe1\xda\xcd\xb2\xd2\xbd\x35\x80\x45\x4e\x19\x9a\x35\x0c\xdb\x9b\x54\x7d\xf4\xe1\x91\xfb\x95\x38\xd1\xdd\x1d\x88\x58\x62\x86\xc5\xba\x2d\x94\x37\xec\x4e\x0e\x85\x0f\xc3\x73\x4b\x7f\xc0\x19\x11\xce\x3e\x77\x87\xaa\x1d\x89\xe1\x14\x68\xcd\x71\xca\xf7\x59\xde\xed\xc6\x31\x72\xb7\x05\x02\xc0\xa1\x76\xb9\x4b\xed\xa8\x81\x07\x02\x32\x12\x1a\x59\xad\x62\x67\xa8\xa6\x0b\xe8\x44\x2a\x83\x78\x53\x1c\x73\x1b\xc2\x9e\xd9\x98\xf5\x9a\x3d\x6f\xb7\xea\xee\x6a\x88\xb5\x1f\x4f\x20\x49\x06\x22\xc2\xb1\x7a\xec\x23\xb7\xe8\x3e\xd9\xdb\x33\x51\xc7\xc7\x64\xb2\xa3\xd8\xd0\x6e\x37\x66\x8a\xfb\x94\x19\x00\x92\xbd\xe1\x2d\xda\xed\x9a\x6c\x0b\x02\x1b\x71\xdb\xf0\xae\x6b\xd8\x70\x98\xbb\x83\x17\xb7\x4b\x71\xf0\x1f\xa7\xc5\x6b\x69\xc1\x0e\xf3\x9c\xc5\x00\xd8\x49\xcd\xf2\xa9\xb8\x19\xf1\x79\xbd\x9a\x21\x71\x49\x7a\xe9\xf4\x7e\x7a\xf4\x56\xba\x40\xb1\xba\xb9\xf0\xc9\x0d\xaa\x8f\x98\x8a\x8a\x08\x94\x26\xfd\x65\x4a\x11\x61\x6f\xe5\x33\xcd\xb0\xbe\x7c\x8c\xb3\x59\x4c\xc0\x7a\x0d\xdd\xce\xeb\xc2\xbe\xdd\xdd\x8d\x1c\xad\xe2\xdf\x46\x73\xd5\x40\xb4\x9d\xf9\xcb\x1f\x21\xda\x2b\x50\x86\xa6\xd2\xb3\x65\x4e\xf8\xac\xae\xb9\xf9\xbd\x45\x99\x31\xbc\x0c\x87\x19\xf3\x1a\x60\x68\xb1\xcc\x52\x86\x8a\x16\x4d\x85\xea\x4b\xb9\x83\x89\x3a\x35\x4f\xb3\xec\x30\x9d\x3e\xec\xe1\x79\xcf\x06\x03\xbb\xba\x57\x57\x87\xeb\xd4\xdc\xd2\xcb\x7a\x1e\x86\xef\x64\x72\xb9\x47\x51\x04\xb3\xf4\x34\x2f\xd9\xc8\x8a\x6b\x94\xc0\xcb\x54\xaa\x78\x9c\x8b\x82\xa0\xb8\xa6\x6a\x45\x00\x4a\xdf\x2e\x4a\xd8\xd7\xd4\x0a\x3f\x27\x00\x94\x1b\x12\x91\x94\x6f\x2b\xd5\x6d\x96\x16\x01\x0a\xed\x7c\xf4\x4c\x62\x24\x4e\x8f\x03\xeb\x60\x86\xd6\xd3\x43\xf3\x9f\x23\xf8\xb6\xf6\xdb\x05\xdd\x2e\x92\x3b\xb1\xa9\x00\x87\xb3\xdc\x8e\x9d\x08\x08\x81\x6f\x26\x84\x2e\xd5\xf1\x86\x85\xdc\xe3\x49\x4d\x94\x6d\xa9\x93\x64\xf0\xd8\xc1\x78\x32\x12\xe1\x83\x75\x5b\xf7\xd3\xc3\x3b\x9c\x0b\xab\x83\x24\x3d\x54\x61\xcc\xa3\x02\xa5\x74\x7a\xfc\x2a\x49\x0f\x33\x11\x7e\xb5\xba\x82\x1e\xc4\x64\x7f\x5b\x56\x31\x49\x92\x3a\x0c\x4c\x73\xa0\xdb\xdd\x1d\xee\xba\x45\xfc\x11\x80\x83\xa8\x37\x8c\x46\x4e\x0b\x7a\xac\x1c\x68\xe9\x54\x8a\x81\xcf\x8e\x53\x32\xcb\xd0\xdd\x25\x22\x8d\xce\x3c\x65\xf5\x9c\xe4\x4b\x44\xa4\xf9\x1d\xe1\x7d\x27\x49\x22\x8b\x2a\x51\xd3\xee\x50\x8a\xbd\xe7\xf9\xb4\x2c\xee\x90\x65\x29\x25\xad\xb2\x83\xd7\x78\xe6\xd6\x1e\x44\x55\x7e\x7d\xe8\x76\x65\x19\xd8\xdc\xe2\x57\xd1\xe9\x2c\x7f\xb4\x7d\xd4\x0f\x65\x39\xc7\x25\xa7\x37\xf8\x83\x98\xf5\x0b\x96\x2f\xf9\xfe\x4e\x8f\xa4\xd3\x76\x00\x77\x87\x60\x34\xbc\x21\x44\x83\x0f\xd1\xe9\xcb\xf9\x4c\x18\x1b\xe2\x82\xc3\x29\x5c\xc3\xc6\xf2\xec\x1f\xe3\xa3\xe3\x0c\x1f\x1d\x33\x34\x3b\xe0\x77\x09\x89\x9e\xdd\xae\x08\x5b\x6a\x33\x6c\xac\x4f\xb7\x06\x38\x88\x51\x5f\xad\x4e\x7f\x9a\xe5\x05\x8a\x99\x1c\x8f\x9b\x7f\x9c\xf3\x0f\x5e\x45\x18\x28\xe6\x54\x07\x23\x39\xc2\x35\x14\x61\x79\xef\x89\x41\xe0\xbc\x0a\x3f\x1b\x21\x8f\xcf\x52\x8d\x74\xb5\x1a\x4f\x80\x8e\x68\xca\xd9\xd4\xde\x50\x07\xc9\xd3\x47\x13\xde\xdb\x03\x78\x1e\x1b\x6b\xae\x6f\x97\x69\x16\x93\x31\x9e\x40\x04\xc0\x19\x4d\xb0\x62\xb2\xb4\xd4\xfb\xc5\xde\xf0\x80\x38\xb7\x09\x30\x22\x86\x27\x27\xeb\x35\xb4\x4b\x3e\xaa\xb2\x3c\xfa\x26\x67\xce\xd0\x6f\x97\x88\x9e\xca\x09\xe5\x34\x8e\xfe\x7f\x01\x32\xa4\x76\x8f\x25\x47\x98\x37\xdd\x8b\x8c\x6b\xbb\x7e\x49\xf0\xb7\x4b\x74\x67\x06\x00\xbf\x17\x32\x89\x73\xb1\x14\x5c\x5a\xba\x4e\x9f\xec\xd8\x33\x5b\xfb\xf2\x8e\x3f\xd3\xe4\x53\x11\xa0\x3c\xc2\x64\x96\x3f\xea\x76\xe5\xdf\x3e\x49\x4f\xf0\x91\x88\x5a\x59\xcd\xe8\x97\x05\xa2\xb7\x8f\xf8\x99\x13\x45\xe2\x62\x63\x22\xf0\xbe\x79\xef\xce\xab\x9d\x08\xbc\xd8\x1b\xae\x56\x4e\xf6\x7d\x8a\x67\x88\xb0\x6b\xe2\x0b\xc4\xc9\xee\xae\xee\x2c\xca\x09\xcb\xcb\xe9\x71\xc1\x52\xca\x22\x4c\x3a\xf2\x83\x11\x99\x9d\xf3\x64\x45\x8f\xd9\x9b\x28\x2d\x4a\x8a\x68\x93\x08\xf6\x41\x96\x16\xec\x8e\xd8\xed\xa3\xdd\x21\x9c\xe1\xd9\x1d\x52\x20\xaa\x59\xb5\xc0\xdb\xcb\x31\x2e\x5a\xea\xc5\x31\x8f\x62\xf3\xb5\x8c\xc0\x8e\xba\xe6\x2e\x4b\x16\x62\x0d\x5f\x3a\xbd\x33\x0b\xe1\xdb\x56\xb4\x66\x2e\x5a\x3b\xa4\x51\x14\xd3\x6b\x76\x84\x98\x8e\xce\x7d\x8f\x9d\x66\x28\xb6\x45\x80\x90\x2d\x39\xa3\x7b\x2d\x27\x2c\x21\x07\x91\xe9\x81\xf4\xe7\x39\x61\xa2\x1e\xe4\xe7\xb1\x9f\xff\x5b\x29\xc5\x29\x61\x81\x2f\x5f\x47\x9c\x6a\x05\x3e\xdc\xc3\xef\x21\x18\x5d\x73\xb3\x33\x4c\xd0\xeb\x4d\xe5\x5f\x4b\x17\x38\x3b\x55\x03\x95\xfc\xd6\x79\x20\x68\x20\x97\x4b\x56\x29\x0c\x3b\x98\xdb\x27\x25\x47\x39\x92\xa5\xf4\x08\x89\x6e\x6e\x33\x46\xf1\x61\xc9\x50\x1c\xcd\x52\x96\xf6\x34\xe5\xec\xa9\x13\x57\x09\x77\x42\x07\x87\x10\x1c\x9d\x20\xc2\x94\xf8\x22\xd6\x12\x67\xe4\xe3\x88\x08\x89\xad\xdb\x55\xb7\x75\x6a\x32\x84\x24\xbe\x7a\x3e\x60\xb0\x5e\xef\xe0\x6e\x97\xf6\xd3\xd9\x4c\xa8\x3e\xbc\x81\x0b\x86\x88\x78\x48\xb5\x3b\x0a\xe6\xfc\x06\x57\x2f\xb2\xc8\xcb\x02\x89\xb3\x13\xe6\x60\xcd\x77\xc1\x3b\x68\x8a\xf0\x09\xe2\xb3\x2d\xc2\x9b\x40\x9d\xba\xfa\x80\x91\x0a\x0a\x50\xe1\x7c\xe1\x7f\x83\xf5\x8d\xc0\x69\xad\x3c\x65\xbb\xdd\x5d\x66\x92\x8d\x32\x6a\x39\xdf\x08\x4a\x71\xa8\x99\xbf\xe4\x84\xa0\xb8\xaf\xa9\x3d\xf2\xa6\x5a\x68\x71\xa6\x08\x7c\xad\x31\x73\x72\x10\xfd\x33\x59\xfb\x3e\x7a\xac\xdf\x05\x0d\x8b\xa9\x7e\xaf\x03\xdc\x6f\x60\x53\x9b\xf3\x70\xc3\xc0\xed\x61\x4d\xd1\x32\x97\x6f\x01\x9c\xfa\x5a\xae\x81\xf3\x14\x8e\xea\x87\x5d\x71\x23\x5c\xd1\x07\xe2\xc0\x63\xad\xcd\x7e\xe5\x57\x5e\x97\x91\x74\xe8\x5f\x04\xfa\x8f\xf0\x8c\x1d\x8b\x66\xf5\xa4\xa1\x5f\xdd\x48\x7b\xe4\x25\xbd\x7f\xcc\x16\xd9\xbd\x74\x8e\xe2\x48\x54\x1d\x75\xec\x8e\xd9\xbb\xfe\x3c\x8c\x96\x8f\x23\x7b\x71\xde\x5c\x73\x38\x18\xfc\x93\x7d\xc1\x8e\x2e\xd2\xd3\x43\xf4\x76\x96\x4e\xd1\x71\x9e\xcd\x0c\x61\xb6\x6b\xb3\xb4\xdf\x04\xaf\x9d\x49\x82\xed\x2d\x8b\xb7\x2a\xfc\x0e\x4e\x37\x2c\x8e\x91\x47\x9c\x07\xd2\x07\x91\xcb\x50\xbb\x63\x02\xab\x55\x14\xad\x5d\xc6\x3a\x27\x75\xf6\xa5\x4a\xff\x55\x99\x48\xf0\x1c\x82\x29\xe5\x1c\xee\x6a\x55\x1f\xaf\x41\x13\xce\x84\x0b\x2e\x38\x27\x75\x0e\xb8\xda\x83\xf3\xbc\x1f\x99\xf2\x06\x7e\x42\xf0\xc4\xfa\xe6\x03\x94\xe2\x6e\xfe\xa9\xc2\xe4\x5b\xdd\xbf\x20\xaf\xcc\x4b\x7f\x25\xe1\xbc\xad\x62\x96\x95\x6c\xaa\x5e\xb6\x12\x57\x5e\x53\x50\xa9\xb8\xa7\xe5\x35\x96\xaa\x8d\x69\x75\x8d\x7b\x32\xba\x22\x16\x3d\x50\x67\xc3\xf3\x52\xce\x95\xd1\x67\x72\x23\x10\x63\x48\x01\x44\x00\x5a\xc3\x40\x15\xe4\x1a\x03\x5a\xa1\x1b\x31\x06\x3b\x28\x2b\xd0\x99\x94\x9c\x55\x2f\x58\xaf\x61\x94\xcd\x22\x97\xdc\xaa\x6a\xae\x2f\xff\x9c\xef\x81\xda\xa2\xad\x85\x1c\x2d\x36\x70\x7a\x31\xb9\xf9\x15\x7e\xb1\x50\x3f\x6f\x25\xbf\x31\x58\xad\x6e\x5c\xf7\x40\xc9\xbf\xd7\x00\xb9\x5e\x43\xff\x28\x08\xdf\x67\x51\x5f\x06\x44\xbf\xcd\x0e\x6c\x32\x66\xfa\xd1\x4f\xea\x92\xb1\x8a\x68\x27\xbf\x10\x8f\xfb\xe4\x2c\xed\x13\x08\x72\xda\xd4\xd4\x07\xfc\x22\x65\xd3\x63\x41\x45\x1a\xeb\x1c\xd1\xbc\x5c\xf6\x44\xda\x79\xa4\x24\xd3\x92\x52\x44\xa6\xd5\xb7\x4a\x28\xac\x6e\x60\x7e\x25\x2c\x77\xaa\x9d\x95\xc9\x37\xf7\xd5\xca\xdd\xec\x8e\xf5\xc3\x3e\xbb\x15\x57\xb5\xc7\x6e\x25\xc3\x83\xc1\xa8\x9a\xdb\x1b\x02\x57\x90\xc8\xf6\x86\xb7\x86\xab\x55\xbd\x2e\xdb\x1b\x1e\xc8\x81\xd8\x26\xc6\x6c\x4f\xee\x3f\x62\x64\x99\x54\x0f\xf0\x21\x3a\x2d\x6c\xf4\x74\xea\x5e\x0c\xcf\xb4\x08\x1a\x4f\x76\xd0\x38\x9f\x24\x64\x9c\x4f\x8c\x06\x2d\x5a\x5b\x3d\x8e\xc2\x43\x5f\x66\x65\x41\xbe\xd0\xc7\x94\x2f\xdd\x40\xf8\x7d\x96\x0b\x5d\xe5\x03\x93\x8a\xc1\x08\x89\xb7\xa7\x2c\x39\x53\xeb\x3f\x1a\x4f\x20\x45\x85\x78\x20\xb5\xc9\x97\xf3\x92\xb0\xd1\xc0\xca\x92\x94\xde\x97\x73\xbf\xd6\x59\xf6\xa0\x94\xd7\x8b\x82\xdd\x13\x39\x68\x66\xf2\xf2\x74\x86\xc9\x11\xbf\x39\xe0\xe2\xb6\x78\xe8\xe7\xe9\x07\xe8\xf1\x12\x0b\x5d\xdf\x7b\x5e\x13\x0f\x28\x5a\xa2\x94\x61\x72\xf4\xf2\x71\x4a\x47\x51\xb4\x86\xd3\xc6\x9b\x4d\xfd\x3a\x63\xaf\x3a\x9e\xfc\xa7\x22\xea\xdb\x1d\xf0\x43\x96\x4d\x8f\x95\x84\xef\xeb\xe2\x04\xae\x97\x51\xbc\xe8\xbd\x29\xcd\xb3\xac\xfa\x7d\xa8\xda\x40\xb4\xf2\x05\xeb\xe4\x9b\xf2\x33\xd0\x30\x78\x13\x15\x45\x7a\x54\x8d\x97\x11\xbd\x21\xbf\x76\xd4\x9a\xf4\xfb\x7d\x7e\x16\xe5\xb2\x76\xd1\x50\xe9\xad\xbc\xa3\x56\xab\x33\xcf\x4b\xf1\x12\x2d\x67\xdc\x50\xfe\xfe\xe9\x12\x49\x2d\x52\x5e\x28\x02\x50\x88\x43\xee\x12\x79\x2a\x04\xe6\xae\x7e\xbc\xee\xac\x79\xc3\x34\x9d\x22\x00\xf2\x73\xe4\xf6\x31\x4a\x67\x6f\x6e\x86\xcd\xfd\x4a\x39\x60\xb1\xeb\x2e\x79\x3d\x3f\xa9\xd5\xe4\x63\x12\x5a\x18\xad\xc4\xb8\xad\x24\xbe\x9e\xc4\xf1\x9a\xac\xa2\x29\x63\x04\x60\x7e\x9e\xda\xb6\x9a\xa0\x97\xed\x2a\x79\x97\x2f\x51\x2f\xb2\x12\xdc\x3b\x0c\x2d\x36\x4f\xf2\x3c\x62\x71\x47\x1a\xee\xe1\x49\xbb\xca\xb2\x4a\x6f\x21\xeb\x44\x00\x3a\xdc\x5e\xcb\xa9\xba\xec\x61\x55\xea\xb6\x35\x20\x17\x5a\x03\xf8\x40\xcd\x40\xbd\x0b\x55\x7b\x9b\xe1\x93\x08\xc0\x07\xd3\x9c\x30\x44\xd8\xc6\x42\xcb\xf2\x30\xc3\xd3\xdb\x6f\xdf\x19\x65\x35\xfd\xb2\xf3\x48\x30\x94\x3e\x8b\x69\xee\xb6\x64\x70\x12\x75\x67\xaa\x3e\x82\xa9\x2b\xac\xd1\x4e\xe2\x8c\x97\x67\xb5\x57\x3d\x76\x20\x49\x08\x7a\x24\xed\xf1\x38\xd1\xa7\xc9\x60\x9f\xde\x62\xfb\x54\x98\xef\xd1\x89\xa3\x04\x4d\x27\x2e\x0f\x4f\xb4\xeb\x5e\x04\xc7\x8a\x4f\x8b\x4c\xe0\x0a\x61\x9d\x63\x77\x5b\xe8\x9d\xf1\xaa\x86\x62\x3a\xf5\x47\xa3\x50\xfe\x69\x8e\x44\x31\x59\xfe\x30\xa4\xa0\xe0\x69\x0e\x43\xf6\x58\x85\x86\x38\x6e\xee\xe7\x57\x38\x90\xf0\x4d\xdc\xd7\xf2\x1e\xfb\x4a\x6f\x08\xca\xd1\xc3\x48\x8f\xaf\x82\x52\x6b\xf8\x08\x67\xd9\x2b\x0d\xd1\xb3\x5a\xec\x23\xad\x7a\x21\x9d\xcf\x15\x77\x88\x22\xdf\x71\x63\x81\x7b\x8a\x54\x2a\x29\x91\x7b\xb5\xa5\x22\x02\x3c\xa2\xb7\xdf\xbe\x13\x81\x1d\xd4\xed\x22\x49\x34\xd7\x10\x93\xfb\x48\x3c\x56\x6f\x30\x55\x51\x2f\x52\x0c\x15\xcc\x3a\x4d\xa9\x3c\x0e\xb7\x0e\x35\xdf\x77\x7e\x9d\xfb\x85\x4e\xbc\xc2\x35\x3f\xd2\x09\xbd\x6d\x63\x2d\x95\xcf\xd5\xca\x4a\x2e\xf4\x6d\x9a\x3f\x3e\x5d\xad\x76\x1d\xa5\x01\x18\xb1\x63\x44\x22\x70\xb0\x55\x16\x23\xd6\x48\xc0\x53\x9a\x43\x18\x6a\x0d\x19\x70\xae\xfd\x0f\xdc\xaf\x68\x76\x3f\x2d\x1e\x46\xa0\xbf\x44\x74\x9e\xd3\x05\xc7\x47\xf1\x74\xa8\xd9\xcd\x0b\x3f\x4a\x42\x62\xf9\x60\x7e\x0b\x3f\x60\xa3\x98\x69\x51\x98\x3f\xb3\xda\xd8\x14\x1a\xd5\x86\xd6\xac\xec\xd9\x04\x03\xd5\x92\x78\x8a\x03\x76\x5e\x0e\xab\x43\x9d\xc3\xc6\xdc\xad\xea\x0c\xa1\xe1\x92\xee\x6e\x6a\xa0\xca\x4b\x39\x2d\xd5\xd9\xa7\xa6\x87\x6b\xb4\xed\xe9\x3a\x32\xe7\x57\x5f\x33\xe8\x6d\xdf\xb3\x37\x3c\x63\x07\x1a\xb5\x8f\xd9\x9b\xa4\xf7\xbd\x54\x95\x86\xe2\xfa\xd3\xf4\xec\xbd\xf6\x67\xfc\x0a\xcd\x97\xb3\xfc\x11\x69\x9a\xf2\xcc\xfd\xfe\x44\x73\xd6\x2d\x5d\xca\xa4\x75\x63\x8d\xb3\xf6\xc7\x2d\xa6\xbd\x28\x0b\x76\xef\x38\x7f\x74\xcf\x63\xf7\x6b\x22\x42\x33\x94\x33\x75\xfb\x70\xee\x6a\xde\x45\x6f\x6d\x9e\xeb\x4d\x42\x35\xba\x51\xb0\x6b\x3a\x30\xe2\xc3\x5d\xd4\x57\x5d\x49\x43\x12\x57\x8c\xaa\x0e\xab\x6e\x77\x77\xb7\x2a\x41\x12\x6f\xf7\xb5\x5c\x3d\x04\xa0\xdb\xf2\x86\x6c\xa1\xf0\x56\xae\x4a\xd6\xd7\xdc\x4c\xca\x85\x45\xe5\x86\xea\x41\x42\xdf\xd3\x36\x4b\xb4\xdb\x4c\xdc\x6d\xb5\xdb\x8d\x03\x73\x5e\xad\x50\xbf\x3a\x18\x6d\xe7\x36\xf0\x74\x12\x9c\x93\xac\xf1\xf5\x37\x8d\xcf\xd6\x30\x38\x44\x88\xc0\x8e\x79\x0a\x90\xe5\x8c\x94\xbd\x81\x7f\x55\xc7\xad\x6f\x3e\x77\x66\x99\x66\xa6\xc9\xf9\x1d\xe3\xb7\xc7\x43\xea\x4d\x8f\x47\x6b\xef\xe5\x2d\x70\x52\x0b\x65\x07\x4e\x5c\x61\x4e\x2e\xac\x87\x11\x86\x84\xa7\x9b\xa1\xc3\xa9\xca\x57\x98\x25\x22\x98\x1c\x89\x17\x9f\x88\x53\xf7\x48\xeb\x49\xec\x26\x09\x13\xde\xd2\x56\xab\x1b\x5f\xd9\xf5\x34\x20\x6e\x0e\xdc\xdf\xab\x55\xfd\xe9\x4a\x01\x92\xa2\x02\xb9\x97\xe4\x58\xc8\xab\x5f\xce\x3c\x5e\xb3\x61\x76\xe2\x96\x7e\xa1\xe9\x35\xcd\x4e\x5d\x1d\x9d\x83\x9d\xa5\x0c\xc5\x67\x75\xe1\xce\x5a\x8c\xb3\x41\x6e\x0f\x49\xe2\x0b\xac\x21\xf5\x06\x8e\xa5\x28\x1f\xe2\xa6\x9d\xa3\x66\x13\xb3\x84\xc6\x04\x62\x88\x00\x58\xad\x70\x55\x8a\x5c\x13\x50\xb3\x03\x36\x22\x20\x78\x7f\x41\xe0\x0c\xb9\x2c\x01\x32\xb1\x75\x67\x91\x7e\x46\x68\x9c\x32\x5a\x07\xee\x21\xc1\x45\x71\x67\x51\xd1\xf0\xb0\x8f\x24\xfe\xbb\x45\x4e\xa4\xbd\x67\x04\x62\x04\x89\xb0\x7d\xad\x5e\x11\x8d\xc5\x96\x79\x0e\x50\x9c\xcc\x03\x81\x3e\x92\x4c\xc4\x2e\xe7\xa5\x29\x89\x2a\xa6\xf8\x1a\x55\x10\xa9\x92\x3a\xfb\x35\x9c\x31\x44\x95\xe9\x69\x5e\xc7\x3c\x7e\x3f\x75\xc9\x94\x61\x92\x39\x01\x16\x2a\x20\xd3\x0c\x23\xc2\xbe\xa1\x10\xcb\xc5\xa9\x40\x96\x2d\xfd\x66\xca\x8e\xfb\xe9\xa1\xb4\xa8\x0c\x96\xe9\x99\x14\xb8\x75\x1d\x6c\x86\xb7\x89\x61\xdc\xfe\xa9\x43\xda\xef\x02\x87\x3a\x7a\x92\xaf\x08\x1c\xc4\x24\xac\x62\xa4\x76\x01\xdf\x04\x8a\xa1\xba\xa8\x96\x55\xbc\x4b\x56\x2b\xa1\x9f\xb6\x61\xf3\x8a\x73\xa2\x3f\x65\x34\xfb\x2a\x3a\x15\x0f\xbe\x0b\xc4\x52\x91\x8e\x99\xff\x46\xc2\xfc\x37\x12\xb9\xd2\xb8\x78\xab\x5c\x2c\xd3\xd9\x57\xd1\xa9\x80\x6f\xcc\x80\x14\x59\xd7\x78\xa8\xfb\xa7\x4b\x4c\x8e\xea\xfc\xb0\x78\x6b\x31\x6d\x1f\x68\xa5\x5d\xa5\x5f\x76\x6f\x99\x4e\x39\x6c\x14\x62\x09\xfb\x2d\x05\x90\x98\x89\xb0\xd1\x6d\x1e\xe1\xc2\xe0\x61\x0a\x3c\xac\x01\x3c\x88\x83\x27\xd0\x2f\x0a\x5e\x97\xe5\xe1\xa8\x15\x1f\xba\xdd\xc0\x20\xdc\xc6\xdd\xb5\x33\x77\x5b\xad\xa4\x60\x25\xfb\xb5\x8b\x77\xee\x5c\xbc\xe9\x8b\xc3\x03\xda\x1b\x8e\x06\x00\xa6\xc9\x70\x3f\xbd\x45\xf7\xd3\xbd\x3d\x90\x8f\xd3\xde\xd0\xbd\x82\xa7\x13\x07\x87\xbd\xdb\x36\x82\xcc\xdc\xa7\x73\x65\x24\x52\x9c\x4b\x7b\x63\xa3\xd2\x06\x9f\x4e\x21\xe1\x50\x26\xf1\x00\x62\xad\x6b\x24\x6f\x20\x20\x66\x9a\x69\xe1\x1c\x03\x9e\xc7\x42\x3f\xaf\x94\x35\xb2\xa4\xf0\xf5\xca\x6e\x67\x59\x1c\x8d\x85\x72\x87\xec\x55\xaa\x76\x4c\x22\xd0\xc7\x0c\x2d\xe2\x52\x34\x91\xc9\xda\xd3\x24\xeb\xe7\xf3\x79\x81\xd8\xfd\x7c\xd9\x2b\x6c\x1a\xce\x93\xe9\x9e\xfe\x26\x75\x5a\x76\xe6\x2f\x16\x5e\xc6\x5e\xd1\xd7\x6b\xb2\x3c\x70\xd2\xc9\xbc\xe7\x17\x1c\x4d\x6f\x39\x9f\x85\x87\x74\x5b\x78\x0a\xd6\xfc\x9f\xdd\xc9\x21\x0d\x4c\x75\x62\x92\x99\xbc\x01\x9e\xa4\x0c\x45\x75\x76\xa5\xa2\x97\xd9\xb4\x9d\x79\x5f\xd5\x4e\x36\x75\xc1\x82\x5d\x70\xda\xda\xb8\x25\x9c\xe9\xbc\x94\x95\x34\x34\x1b\x57\xd6\xa8\xe8\x84\xec\x7d\x86\x36\x4e\xf1\x30\x2b\x69\x9b\x19\x56\xfa\x3d\x77\xaf\x2c\xd4\xeb\x96\x49\xeb\x26\x5c\xc1\x41\xbb\x9b\x7c\x54\x20\x76\xc7\x5c\xf7\x76\x07\xc2\xe2\xf0\xd2\x9a\x1b\x72\xa6\xb5\x46\x61\xf9\x9d\x3e\xef\xb3\xb4\x78\x08\x62\x8a\x8e\x10\x91\x2e\x7c\xde\x29\x09\xc3\x0b\xd4\x5f\xa4\xf4\xa1\x11\x3c\x75\x50\xec\xb8\x2e\x4c\x61\x01\x4b\x98\xc1\xa9\x71\x8e\x50\xaf\xfe\x88\xa6\xcb\xb8\xfa\x08\xba\xbf\x0f\x8a\x47\x98\x71\x2e\x40\xb0\xa4\x89\xb4\x76\x03\x67\xd3\xb4\x40\x9d\xc1\xc8\x04\xe3\x1f\x7a\x3c\x9b\x0b\xe7\x34\xa1\x7d\xff\x25\x4e\x38\x43\x54\x27\x03\x6c\x3c\x70\xf8\xb6\xeb\x25\x37\xbf\x02\x60\x96\x28\x3d\x97\x39\xcd\x17\xbc\x01\x5e\x31\x2e\x00\x8c\xcb\x24\x4b\x92\x5a\xfb\x07\xd9\x88\xf6\x43\x8f\x82\x7b\x19\x30\xfe\x3f\x0e\x62\x92\x0c\x60\x9a\x44\x11\x18\xa5\x49\x06\xa9\xd1\x89\xa2\x9e\x9e\x31\xd9\x0b\x92\x38\xda\x57\x24\x12\x7a\xc5\xc1\x68\xd7\x6d\x48\xf3\x70\x6d\x5a\xd1\x65\xc1\x88\x0f\xac\xce\x61\x06\x5f\x39\x9b\xe6\x59\x7d\xfb\x4c\xd7\x8e\x22\x75\x3c\x95\x4b\x35\xc7\x64\xf6\x75\xcc\x8e\xef\x0a\xd2\xe7\x0c\xa6\x84\x84\xa3\x34\x10\xf6\x71\x5a\x37\xdb\x2a\x5d\x98\xf9\xc6\x53\xce\x0d\x39\xea\x1a\x8a\x48\x8a\x7c\x30\xaa\x69\x91\x88\x6c\x6d\x30\x39\xbc\x09\x25\x3e\xe3\x05\xca\x4b\x06\xe2\x21\xba\x01\x76\x04\x5e\x0d\x6f\x8e\x5a\xce\x3f\xf8\xca\xab\x5b\x79\x7e\xc4\xff\x46\x88\xcc\xa2\x91\xa7\x66\x23\xd4\x3c\x24\xea\x81\x35\x10\xe2\x57\x96\x52\xc6\xdb\x8e\x01\x0c\x88\x21\x2f\xb8\xf3\xae\x68\xb7\x29\x00\x5e\x87\x4c\x4e\xf4\xfa\x88\x08\x01\x09\x61\x41\x21\x6b\x4c\x14\x40\x6e\x3e\x11\x3c\x1c\xd1\xe7\xe7\x0b\x1c\x01\x99\xb5\x60\xa4\x84\xc8\x5a\xb1\x7a\xde\x14\x62\xa6\x98\x77\xf9\xbe\x17\x81\xd0\x1d\xd6\xe8\x1a\x48\x0d\x12\xd1\xff\x75\x8d\xbb\xcf\x6b\xd0\x3f\x1f\x04\xbd\xee\x47\x03\xfe\x85\x91\x67\x38\x9c\xbc\xb0\xa9\xbf\xa1\xe8\x6f\x8e\x09\x2e\x8e\xe3\x17\x34\x2e\x0f\x5a\xac\x1d\x1c\x8f\xaf\x43\xf8\x02\x1c\x0e\x26\x93\xc0\x3a\x4a\xee\xfb\x76\x71\x4a\xa6\x6a\x07\x5d\x60\x29\x8d\x4f\x0b\x98\x5f\x19\x76\x8b\x8f\x21\x12\x58\x59\x13\xb1\x14\x37\x21\xd1\xd8\x4d\xf5\x52\xe4\x49\x19\xd3\xd0\xa2\x6a\xfd\x94\x1c\x3e\xa0\xa9\x92\x7a\xbe\xa3\xf2\x68\x5d\xe5\xc4\x17\xe9\x8d\x04\x05\x9f\xf2\xa4\x5a\x60\x10\x5b\x85\x0c\xb9\x70\x0d\x42\x1a\x43\xf3\x6e\x48\x6b\x0d\xb3\xa8\x6a\xb2\xc3\x01\x44\x7d\x36\x48\x50\x5f\x7a\xd2\x1b\x04\x31\xb2\x3e\x3c\xb7\x6f\xd5\xe6\x8d\x0a\x1c\x87\x37\x60\xa4\x57\xc2\x8a\x3e\x48\x7f\xca\x37\x4c\xd6\xed\xea\x54\xec\x60\xdd\xd0\x10\xe2\x2f\xb7\x43\xbb\x01\x1c\x0e\xe0\xf0\x06\x1c\x7e\x39\x88\x79\x0e\x73\x53\xe7\xf0\xbc\x39\x1a\xb5\x1e\x21\x43\x99\x0b\x49\x43\xf0\x8a\x5c\x73\xe8\x75\x3d\xe8\xd0\xeb\xfa\xa4\xdb\x75\x7f\xe9\x5b\x22\x5f\x49\xd9\xba\x59\x4a\xb4\x5a\x8d\x27\x90\x39\x97\x7b\xef\x45\x86\x5f\xee\xc4\x90\xdc\x33\xb3\xf6\xae\x14\xbe\xde\xbd\x78\x23\x38\xb8\x1b\xde\xe0\x6e\x54\x06\x47\xd4\x83\x8e\xed\x2d\x34\xc6\xf0\xeb\x0f\x1f\x2c\xa4\xc6\x0f\x9b\x76\x4d\x56\x83\xfd\xa6\x77\x52\xe1\x8f\xaa\xdb\x45\xfd\x74\x36\xd3\x05\x84\x37\x01\xe7\x77\x1c\x8d\x27\xee\xd3\x96\x7f\x54\xdc\x26\x33\xb5\xb9\xf4\xab\xab\x8a\x06\xa6\x06\x5b\x24\xda\x29\x42\x53\xbd\x18\x01\x33\x89\x90\x61\x55\xe3\x34\xec\x6b\xae\xd1\x8c\xd5\xde\x36\x0f\x2e\x3a\x2b\xdd\xa6\x68\xa8\x3a\x23\xfd\xb1\x3a\x25\xaf\x92\x88\x86\x81\x3c\xd3\x42\x87\x53\x76\x14\xa6\xeb\x1b\xc3\xbc\xf4\x22\x58\x13\x35\x56\xe9\x4d\x4d\x07\x05\xb6\x11\x57\xd4\x35\xb0\x22\xb0\x83\x92\x10\xf1\x38\x20\x31\x03\x23\xb2\x45\xf2\x2b\xc6\xd6\xb4\xb2\x55\x09\xcb\x6e\xd5\x1a\xbd\xaa\xda\xa2\x25\xc5\x65\x2c\x65\x0a\x75\xe1\x25\x50\xb3\xf4\x06\xa4\x5f\x8b\x89\xd1\x4d\x24\x5b\x89\x3a\xf1\x89\xba\x54\x59\x6e\x00\xa1\x67\x89\xac\xe5\xad\xcc\x79\xad\x02\x07\x64\xa4\xb8\x6d\x21\x36\x25\xd0\xfb\xba\x13\x1a\x34\x35\x47\x52\x6d\xf8\x6d\x4f\xa2\xb5\xb5\xf1\x68\x7a\x38\x58\x57\x39\x5d\x81\xa3\x01\x31\x72\x60\x51\x9a\xc4\xe0\x06\x4d\x4b\xe1\xb3\x40\x18\xf5\x1b\x91\xf3\x26\xc3\x16\x77\x1f\xa8\x49\xef\xd8\xaf\x41\xd6\x25\x02\xea\xe8\xba\x9d\x65\xf1\xa6\xd3\x1e\xb5\x50\x2d\xdd\x06\x5e\x54\x01\x2f\xf4\xa5\xe1\x4d\x52\x4a\xb5\xe8\x1b\xe7\x29\x9e\xd5\x1a\x07\xcf\xdc\xc1\xa3\xfa\xd8\xd1\xd6\xa1\x33\xd0\xcc\x98\xd8\x79\x54\x97\x28\x20\xe8\x34\xfa\x9e\x24\x80\xb3\xee\x28\xd7\x00\xd2\x84\x09\x71\xb9\xf0\x0e\x62\x0d\x58\x79\x3b\x54\xab\x57\x80\xed\x0b\xac\x25\xca\x08\x52\xcf\x74\x80\xf3\x77\x1b\x80\x96\x5f\x04\x4e\xf9\x26\x38\x49\x37\x1d\x81\x79\xd7\x3b\x92\x68\xef\x88\x96\x43\xde\x33\x6f\x78\x66\x1d\xab\xd5\xcd\x81\xfb\xbb\x2a\x2f\xff\xda\xf2\x15\x29\xa2\x96\xb6\xd3\x8d\xe5\x5e\x25\xf2\x65\x66\xf4\x1b\x9b\x4a\xdd\x4f\x0f\x79\x99\xeb\x2f\x6c\x6c\xea\xde\xcb\xbc\x90\xb6\x6d\xae\x8e\x65\x23\xa2\xb8\xf4\x51\xf8\xb2\x95\xa4\x08\x9c\xa1\xda\xbb\x26\x0c\xd8\x60\x28\x21\x62\x05\x24\xc3\x51\x6f\x08\xa9\x14\xa3\xa4\xb3\x13\xbe\xf3\x25\xe1\xe2\x4c\x66\x5d\xf2\xcc\x3c\x13\x6e\xe2\xbc\x5c\x3b\xf2\x0b\x2a\xfc\xa0\xd6\xe5\x17\x54\x2d\x38\xab\x5b\x07\x55\x80\x7d\x11\x38\x38\xcc\xa0\x37\x4a\x60\x9c\xa2\x54\xcc\x0d\xfd\xb9\x20\x00\x77\x87\xee\x40\xc4\x6b\x4a\xf5\x40\x1d\x47\xf7\x5f\xfd\xe7\xf7\x6f\xbf\xf3\xea\xed\x08\x46\x77\xde\x7a\xfb\x6b\xf7\xa3\x49\x1f\x93\x69\x56\xce\x50\x61\x0d\x84\x48\x3e\x43\x6f\xa5\x0b\xe4\x3c\xf8\x6e\x9a\x85\x19\xe1\xe6\x99\x1c\xc4\x81\x95\x6e\x33\xad\x10\xc2\xdd\x4f\x0f\xeb\x2c\x5f\x8d\x98\xfa\xcf\x6e\x95\x95\xba\xf7\xf2\xc5\x5a\x68\x62\x8f\xeb\x2a\x89\x15\xce\x56\xbf\x30\x55\xb2\xfb\x7e\x83\xad\xd9\xe7\xd0\x50\xf4\xa9\xdd\x3c\x96\x7b\x3e\x3f\x59\xcb\x6f\x37\x1a\x9f\xed\x5d\xc3\x9a\xac\x36\x44\xde\x1c\x43\xac\xdf\xf8\xb2\x67\x88\x35\x1c\x3c\x6f\x38\x7a\x96\x06\x7c\xad\x6b\x67\x7a\xd6\x07\x96\x5d\x24\xb8\x51\x39\xc5\xe7\x67\x7d\x5d\x10\xeb\xa2\x82\x68\x4d\x42\xc7\x32\x6b\x7a\x21\xcb\xac\xaa\x9a\xff\x13\x1b\x6a\x55\x1b\x7c\x8a\xae\x1b\xcf\x67\xea\x9f\x96\x2c\x17\xef\x4a\xc2\x81\xe2\x06\x23\x7e\x89\x48\x5b\xf5\x75\xc5\x82\x99\x46\x23\xfd\x40\xeb\xb8\x27\x01\x9e\x4a\xf0\x13\xf6\x54\xf1\xe7\xd2\xc2\x0c\xda\xee\x8a\xb0\xf1\xa8\x6b\x17\xed\x18\xaa\xb6\x7b\xc3\xfe\xaa\x79\xc3\xe6\x17\x21\x6d\xac\x6a\x09\xb2\x7f\xe6\x2b\xd8\x84\xc7\x61\x68\x57\xd8\xd1\x87\x7e\x54\xf3\xfd\x21\xf8\x6e\x3e\x9e\xeb\x07\xde\x83\x95\xd1\x86\xa8\x38\x4e\x29\x4e\x7b\xd3\x9c\x30\x9a\x67\x45\x12\x3d\x67\xde\x88\xcd\xb8\x32\x5c\xb0\xc3\xfc\xf1\x9d\x59\x04\xe0\x73\xd1\xe4\x39\x2d\x61\x15\xf5\x5d\x70\xf3\xed\x40\x1d\xbf\x08\x30\x92\x18\x00\x07\x97\xe2\x16\xeb\xda\xe5\x6d\xcd\xa7\xb9\x27\x21\xdd\xee\xa4\x63\x27\xb2\x56\x9a\xe6\x66\xfe\x5a\x5a\xb0\x97\xf2\x9c\x75\xbb\xb1\xbd\xb7\xef\xaa\xaf\xb1\xf6\x32\xd2\x57\xdb\xa7\xbf\xa4\x39\xcb\xf9\x47\xd0\x97\x0a\xc6\x85\x08\xfa\xa1\xd2\x09\xe9\x2f\x0a\x65\x39\xa6\xb1\x63\xb5\x22\xfd\x45\xfe\x5e\x20\xf7\x11\x3a\x7c\x88\x59\xe5\x03\x80\xf5\x61\x74\x88\xc4\xd2\x42\x78\x09\xd5\xe9\x24\x6c\x7e\xc9\x31\x63\x9f\x75\xbb\x62\x53\x08\x66\xe5\xfe\xe9\x12\xed\xab\x10\x09\x6a\xa0\x8e\x19\x35\xe3\xf7\x69\xc7\x79\xdb\xda\xd5\x7c\x07\x7e\xfc\xac\x3a\xc9\xc3\xc5\x7d\x0e\xe9\x57\x90\xf0\xd0\x46\x03\x2e\x4e\x34\x4d\x2c\xb3\x08\xa6\xda\x35\xc5\x4b\x98\xf0\x8b\x61\x31\x1a\x47\x34\x17\x7e\xd3\xbc\x1d\x12\x4d\x20\xcf\x1e\xe9\x5d\x11\xb5\x75\x7b\xa2\xa5\x1c\x1b\xa9\x5a\x24\x6d\xbd\x3c\xa1\x92\x18\x85\xf1\x5e\xe0\x3b\x68\x97\xf2\x0a\xa2\xf9\x3f\x05\xfe\x06\x0d\x0c\x71\x7b\xeb\x76\x77\xa9\x53\x4e\xcc\x4d\x2b\xc3\x25\x8c\x96\x68\x12\x39\x16\xe6\x01\x9f\x1d\x6e\xa3\x11\xd8\x61\x31\xea\x3f\x90\x79\xaf\xd1\x7c\x21\xfc\x7f\xc5\x58\x88\x57\xd7\x66\xce\x48\xa1\x68\x83\xf3\x8c\x72\xe9\xe8\xd5\x3a\xfa\xfc\xb1\xe7\xdb\xa3\xc2\x70\x4a\x11\xae\x7b\x10\x54\xed\x04\xcd\xc9\xb3\xa5\x7b\x51\xf6\x3c\x03\xb0\xd6\x4a\xb5\x31\x78\x48\x67\x06\xf0\x20\x9d\xcd\x44\xbe\xe8\xbe\x88\xb7\x2f\x34\x09\x39\x63\x20\xf5\xbb\x0d\xf1\xae\x1c\xeb\xf5\xba\x8a\xae\x4d\xee\x3b\xb4\x02\x50\xc8\xdf\xda\x06\x25\xfc\xa8\x7e\x3c\x54\x1b\x14\xba\xe8\x95\x19\x87\xf7\x04\xb4\xe8\xdc\x61\x31\xbf\x50\x1e\xa7\xc5\x9b\xf9\x09\x9a\x25\xbb\x03\x88\xf4\xba\x71\x8e\x53\x2f\xa1\xf2\x2a\x19\x70\xd2\xc2\xf3\x23\xc8\x80\x8a\x2a\xd2\xbc\xe6\xae\x4b\x17\x67\x58\x68\x5b\x15\xd3\x81\x5a\xef\x2d\xc5\x11\x71\x61\x5b\x77\x87\xb3\x7d\xaf\x12\x20\xe8\x62\xe0\x92\xad\xc1\x04\x5c\x88\x0d\xad\x48\x85\x93\x84\xed\x5b\x77\xf3\xee\x0a\xed\x6b\xaa\xcc\x5b\xd6\xb0\xfa\x69\x14\xa6\xf8\x48\xf8\x2e\x63\x71\xd4\xaf\xc8\xa7\x8d\x55\xec\x78\x99\xd2\x02\xdd\x21\x2c\x16\x91\x1f\x86\x03\x30\x81\x34\x19\xee\xd3\x5b\x5a\xeb\x5d\x1a\xac\x25\x44\x4b\xd8\xdc\x1a\x54\xd6\xd8\x71\xfc\xd0\x3a\x6c\x06\xbe\x18\x9b\xe1\x39\x51\x79\x62\x56\xc3\x6d\xed\x33\xbd\x02\x6c\xb0\x89\xbf\x0c\xe6\x2c\x60\xb2\x7c\x09\xc0\xab\x37\xfa\x79\x85\x21\xd4\xa7\x68\x85\xe2\x8a\xa0\x53\x45\x2c\x09\x7e\xdf\xea\x9d\x4b\x73\x70\x51\x79\x53\x05\x53\x2a\x02\x97\xb1\x4a\x15\x7b\xed\x27\x5f\xa1\x4a\x83\x9f\xd7\xd5\xb9\x0c\xd8\x5d\x9a\x57\xc2\xa7\xeb\x8c\xf0\x22\xb8\x6c\x6e\xbd\xd3\x0c\xa5\xb4\x66\x5d\x14\xf2\xcf\xb6\xe9\x3a\x2d\xf4\xc5\xa4\x7d\x89\x7b\xfc\x8a\x8b\xb0\xb8\xb1\xe8\xdb\xf1\xfa\x5c\xf7\x44\x1d\x10\x27\xc0\xaf\xe0\xa2\x25\x0d\xaa\xbb\xb2\xd9\xb8\x28\x86\x5f\xf1\x3d\x08\x55\x00\xd4\x18\x13\x72\x2d\xfc\x56\x85\x54\x20\x3e\xc7\x11\x1f\xf9\x8d\x50\x78\xfc\xd5\xc1\x1e\x57\xab\x73\x86\x7d\x74\xa6\x0c\xce\x2e\x33\x04\x64\xec\x38\xb9\xa1\x5a\x1e\x43\x85\xcf\x5a\x37\x92\xa9\xf0\xe4\x8e\x8b\xdf\xe4\xab\x0c\x62\x7a\xa1\xf0\x46\x02\x77\xde\xe6\xa8\x23\xef\xc3\x77\x64\x73\x09\x0d\xef\x3b\xec\x87\x3e\x92\xa8\x1a\xd3\x73\xb0\x27\x9b\xb1\x5b\xbf\xcd\x5e\x20\x04\xd4\x33\xbc\xfd\x5c\xe1\xad\x1b\xf4\x42\xc6\x25\xa5\x32\x2e\x29\x96\x71\x49\x6d\xac\x33\x2b\x44\x74\x7c\x08\xcb\xb5\xc2\x8e\xbf\x90\x3c\x19\xec\xe7\xb7\xb0\x66\x9f\xf3\x90\xcf\x61\x3c\xce\x27\x90\x1a\xb1\xa4\xf6\x89\xb8\x3b\xf4\x5d\x12\xea\xe2\x14\xe2\x4b\xda\x34\x46\xb5\x86\x6c\xf6\x03\xef\xef\x1b\x72\x0e\xef\xc2\x1b\xf6\x0d\xa3\x25\xea\x49\xc3\xc1\x1e\x9e\xf7\x96\x14\x15\x95\xa8\xab\xcf\xb6\xd0\x17\x76\x0b\xe9\x80\x0d\x4c\x13\xff\x6e\x37\xe2\x0b\x1e\x5d\x06\xe2\xde\xa7\x25\x92\x76\x0b\x77\xe6\x6f\x4b\xb4\xb9\x3a\x0c\x3e\x4f\x54\x87\x56\xa8\x8b\xfa\x76\xa6\x52\xb4\xe2\x07\x01\x7e\xfd\xfe\x9b\x6f\xbc\x94\xd2\xa2\xaf\x7b\x16\xa1\xf1\xa2\xaf\x9f\xee\x3d\xfc\x67\x47\x37\x5f\x8b\xe0\x61\x96\x4f\x1f\x8e\x9e\x3b\x8b\x0a\x81\x83\x45\x34\x1a\xab\x2b\xbc\x75\x93\x09\x03\x39\x5d\xd5\x0f\x4f\x62\x72\x82\xa8\x88\xd4\x1d\x15\x2c\x65\x32\x9a\x47\x34\x1a\x8f\x6f\xc2\x08\xcf\x23\x38\x1e\x5f\xbf\x09\xbf\x3c\x99\x48\x2f\xb5\x67\xf5\x42\xbe\x17\x44\x51\x6a\x3c\x8e\x2a\xde\x9f\x6c\x48\x81\x77\x94\xf4\x36\xe4\x1a\x8c\xe7\x67\x59\xfe\xe8\x65\xce\xde\x2a\x11\xef\x2b\xa8\x98\x52\x7c\x88\x66\x2f\x9d\xaa\x1c\x85\x99\xea\xd7\x1b\xe9\x21\xca\xdc\x74\xa6\x8a\x86\x5d\x8a\xf1\x0f\xbe\xc9\x29\x8c\xa6\x69\x36\x2d\x39\x7c\xdf\x56\x3e\x6c\x79\x9e\x72\x3c\xe1\x1b\x9f\xc2\x90\x06\x1f\xcf\x2c\x18\x26\xa9\xaa\x3a\xc3\x34\x72\x4c\x99\x61\xcd\x99\x05\x7a\xcc\x68\x1a\x29\x61\xa3\x3b\xb2\xe3\x9c\xe2\xf7\x72\xc2\xd2\xcc\x19\x09\x26\x98\x61\xbe\xa1\xef\x2e\x91\x74\x17\xe9\xbb\xa7\x8b\xa0\xf5\x5c\x12\xd5\xbc\xe4\x45\x30\xaa\xba\xa6\xe3\x28\x21\x6d\xb7\xa0\xb5\x74\x86\xc6\x78\x1d\x1a\x7b\x36\x68\xec\xc2\xa1\x63\x05\x0a\xb5\x11\x3f\x34\xe2\x22\x93\x72\x27\xe3\x3b\xbd\x0d\x39\x20\xe3\xd9\xae\xc7\xbe\x08\x7a\x0f\xca\xfc\x17\x99\x21\x7a\x87\x08\xdf\xba\xe2\xf7\xb7\x4b\x4c\x05\x0c\x8c\xe1\x67\xcd\x19\x86\x0d\x62\xe1\x7a\x3c\xad\xb9\xca\x50\xbf\xdf\x0e\xb8\xe6\x55\x95\x03\x6e\xdd\x38\x1a\xdb\xa0\x19\xcc\xe0\xb6\x98\x04\x27\x9e\x91\x09\xdc\x59\xf5\xda\x52\x8f\xa8\xa1\xb3\xee\xf0\xee\x4e\x10\x65\x78\xea\x2c\xfc\x84\xef\xbc\x1b\xb0\xbe\x93\x26\x13\x28\x3f\xb8\x1b\xca\x64\x86\xf7\x95\xfd\x6c\xb7\x97\xcd\xab\xec\x32\xef\x83\xde\x6c\x5e\xa6\xdc\x73\xf5\xac\xcc\xaf\xdf\xb0\x03\xc5\xf7\x17\xa0\x7a\xf8\x15\x14\xe6\x3a\x1c\xc0\xf1\x64\x52\xdb\x9b\x92\xea\xe8\xf6\xea\xfb\xd4\x74\x25\xb7\xab\xf3\xd3\xdd\xb5\x26\x3b\xb0\x79\x9d\x6f\x76\x0f\xdb\x4c\x4c\xdd\x1f\x6a\x47\xdb\x1c\x6f\x63\x9b\x6c\xb9\xbf\xcd\xcf\xca\x36\x37\xf9\x81\xdd\x6e\xbe\x55\x37\xbd\xf9\x50\xd9\xfb\x26\x5f\x93\x00\x3f\xc3\xa3\x04\xe6\x53\x8d\x20\x98\x2f\x8a\x2e\x38\xbf\x15\x79\x70\x73\x04\x95\xd8\xb4\x88\x4e\xd0\x94\xca\x0a\x6a\x7a\xb2\xbd\xb6\x7e\xaf\xb7\xf5\x37\x16\xe7\x60\xaa\xf6\xa5\x1f\x93\x2b\x19\x81\x95\xf0\x84\xc1\x81\xcc\x50\x15\x8f\x70\x6d\x98\x8f\x2c\xee\xd2\xb5\xc9\xc4\x1f\xa8\x4f\xe5\x9c\x2a\x8a\xd8\x99\x1c\xeb\xc8\xcd\xe4\x28\x5f\x81\xfe\x6f\x4d\x01\x2b\xd9\x92\x10\x56\x32\x6b\x28\x50\x27\x8b\xce\x27\x45\x1d\x6b\x39\x3e\x91\xb4\xdb\xb0\x12\x81\xc8\xa1\x5d\x55\x62\x66\x29\xa8\x2d\x23\x08\xa9\xd3\x58\xd8\x61\x96\x01\xfe\xd4\x92\xd6\xb1\x47\x21\xdd\x91\x71\xb2\x6a\x69\xb8\x21\xb2\x36\x67\x32\xa9\x12\xd8\x3b\xce\x84\xeb\x64\x9a\x17\xaf\x72\x45\x03\x18\x75\x3a\x9d\x0e\x6f\x7e\x78\x13\x3e\x2f\xd1\xe1\x86\x42\x87\xeb\xf0\x26\x4f\xf1\xf4\x00\x46\xef\xbe\x2b\x76\x7d\xb4\x4c\x69\xba\x40\x0c\x51\xde\xc0\x0d\x78\x73\xb2\xde\xd2\xea\x97\x37\xd4\x9f\xac\x03\x59\xcf\x78\xb7\x67\xbc\xdb\x33\xde\xed\x19\xef\xf6\x8c\x77\x7b\xc6\xbb\x3d\xe3\xdd\xea\xbc\x1b\x45\xe9\x2c\x27\xd9\xa9\xe1\x1e\x9e\xf1\x6c\xbf\xf6\x3c\xdb\xd0\xf0\x6c\xd7\xb7\xf1\x6c\x43\x78\x7d\xb2\x96\x38\x12\x66\xc7\x8e\xd3\xe2\xd5\x93\x34\x8b\x46\xf3\x34\x2b\xd0\xfa\x39\xb8\x40\x2c\x1d\x9d\x2d\x84\xf8\x4f\xbe\xf0\x3e\x91\xd0\xb1\x7f\x7c\x58\x44\xeb\x35\xb8\x2c\x21\x66\xe8\x61\xfd\xf2\x85\x99\x0f\xa7\x0f\xbf\xbc\x78\xbc\x37\x6c\x14\x66\x72\x2e\x6a\xf6\xd8\x15\x5a\xd6\x24\x95\x2f\xc0\xa8\xcc\xc4\xc2\x5d\x87\x22\x1a\xf9\xf8\xfa\x57\xe0\xe6\x80\xae\xc6\xf7\x96\xb7\x29\x22\x18\x19\x7d\x39\x85\x54\xc3\xa1\xe5\x27\x5b\x34\xc8\x47\xf1\x1b\x0e\x96\x40\xce\x65\xa3\x94\xb3\x38\xe3\x4a\x4f\xce\xce\x6c\x10\xae\x3a\x28\xf9\x02\x8c\x32\xac\xa7\xa8\xc6\xd3\x76\x96\x9d\x48\xee\x35\x25\xcd\x15\x58\xed\x1d\x88\x2d\xda\xe8\xf5\x6c\x05\x85\xe4\x93\xd0\x54\x4b\x92\x21\x31\xb6\xca\x64\x9d\xee\x36\x4f\xd6\x99\x70\xb1\x4c\x45\xb3\x7c\x09\x94\xce\xef\x61\xc9\x58\x6e\x32\x85\x4a\x65\xa6\xee\x10\x52\x05\xb1\xa3\xd4\xff\xa2\x73\x2c\x9d\xac\xd9\x3b\x64\x44\x03\x38\x14\x05\xcf\xa1\x02\xee\xbc\x3b\xe6\xdf\xcf\xff\xc4\xf9\x29\x5a\x1a\x6c\xbc\xa2\xe9\xf3\xc4\xca\xd9\x37\x51\xe7\x76\x50\x1b\x36\x51\xd5\xe6\x66\xc7\x63\x73\xa7\xa9\x3e\x14\x08\x4a\x1b\x3a\x19\x35\x93\xe4\x1d\xf0\x5e\x29\x45\x3a\x9b\x0b\x38\xd8\x61\x8a\xf1\x84\x20\x8e\x9b\xe1\xb6\x0d\x06\x37\xf9\x55\xdb\xa5\xde\x7e\x5f\x9b\xef\xcd\xd0\x3b\x08\x36\xad\xa0\x24\xf8\x81\x4b\xb5\x5a\x4d\xce\xf3\x90\x99\x99\x6c\x8d\x4f\x79\x81\xdf\xee\xdc\x15\xf2\xd9\x00\x0d\x13\xf7\x4f\xf3\xd4\x03\x5b\x66\x03\xea\xfb\xca\x8f\x02\x9b\x39\xe6\x0c\xfd\x8b\x9f\x5d\x8c\x56\x98\x1c\x04\x66\x15\xb9\x43\x73\xdc\x42\xf7\x14\xd7\xb9\x75\x52\xe1\x70\xa2\x86\x56\x94\x2c\xe7\xdb\x22\x43\x4c\x5c\x93\xe7\x73\xff\x0b\xa5\xea\xb1\xac\xf2\x21\x5d\x62\x96\x66\xf8\xbd\x4a\xa5\x62\x89\xb2\x6c\x7a\x8c\xa6\x0f\x23\x18\x09\x30\xb5\x3a\x7f\x9a\x42\x9e\x6e\x3d\x85\xae\xc3\x48\x3c\x84\xd6\x4a\x5a\x93\xf0\xc8\x94\xf4\x55\xcd\xe5\xc2\x5a\x6b\x21\x5d\xaa\x60\xa7\xe2\xa5\x92\x7f\x6d\x0c\x33\x69\x4a\xfb\xda\xb7\xbc\x4e\x35\xea\xa1\x29\x6a\xa5\x27\x9b\x0e\x01\x51\xd4\xc8\x28\x1a\xaf\x08\x3a\xc8\xa0\xd9\x07\xaa\x9e\x92\x72\x88\x91\x28\xcf\x8d\x91\xfd\x2a\x25\x24\xea\xe3\x4b\xfa\x5a\xc4\xbf\x59\x11\x80\x9c\xb8\xe5\x21\x75\x5d\x23\x2b\xd9\x30\xa6\xca\x0d\x47\x21\x05\x93\x42\x04\xcd\xe0\xab\x8d\xd5\xee\x14\xf0\x8a\x9d\x67\x2f\xf3\xad\x53\x16\x3d\x3c\x95\xe7\x62\xa8\xcb\xab\xe6\x3c\x35\xa7\x78\x49\x1c\xe8\xd5\x32\x9c\x37\xbe\xf5\x55\x9c\x9e\xbe\x7e\x1a\x66\x38\x4d\xb4\x00\xe7\x34\x64\x88\x2e\xe4\x6f\xfb\xa3\xed\x0b\xfa\x61\x5a\xe0\xa9\x8d\x41\x60\x44\xac\x62\x41\x39\xe8\x8b\x26\xd1\x61\x48\xb0\xe9\xcb\x2a\xeb\xc2\xc5\x90\x04\xb1\x2a\xa5\x53\x9e\xcc\x45\xea\xae\x14\x05\x6e\x16\xdc\xd5\xae\x4f\xee\x46\x6e\xe2\x10\x9c\xf9\x6d\xe3\x02\x82\xa2\x94\x56\xc2\xa3\x50\x6b\xbe\x28\x68\x73\xcf\x75\x41\xcd\xe6\xf2\x21\xb1\xcc\xe6\x1a\x55\x49\xc3\x56\x89\x88\x5e\x9d\x16\x05\x2b\x62\x93\x86\x72\x9e\x10\x63\xe3\x58\xab\x22\x8d\xcd\xa5\x43\x97\xea\x8d\x15\x6a\x37\x80\x86\x4b\xb8\xbd\x4b\xf8\x5c\xac\xbc\xb6\x18\x15\x6d\xc9\xb9\xaa\x6b\x81\x15\xe6\x3e\xd1\xab\x03\xcf\x78\xc7\x8a\xa9\xb5\x30\x78\x5a\x11\xfd\x8b\x86\x5c\xa9\xb1\x38\x0f\x5e\xd1\xf2\xf5\xd7\x8c\xfc\xfd\x25\x29\xa7\xf7\x25\x17\x21\xd8\xf8\xd2\xe0\xcd\x70\xac\x8b\x94\x37\x97\xaf\x4b\x88\xb7\x97\xb7\x82\xe3\xed\x65\xb5\x3c\xb9\x65\xc9\xac\xd5\x20\x1c\x39\xda\xe6\x82\x5a\xde\xb4\xb9\x54\x73\xac\x9d\xad\x55\xb7\x5f\x75\xaa\x52\x27\xaf\x64\x4e\x6d\x4b\xae\xb4\xcc\x09\x4f\xde\x62\xab\xfb\xee\xec\xcf\x51\xa3\x2a\xc7\xdd\x56\x5e\xb2\x4a\x9b\xa7\xea\x48\xdd\x1a\xf7\x71\x6d\xf7\x6e\x92\xec\x79\xcf\x86\xb5\x07\x3e\xbd\xeb\x2c\x03\x1b\x78\x44\x0b\xec\x3a\xcd\x38\xb6\x7c\xcc\xf2\x03\x4c\x6f\x7e\x8b\xaa\x08\x70\x2a\x77\xea\xa6\x4d\xee\x3d\xdf\x6c\x86\x71\xf5\x25\xe5\x52\x70\xd4\x04\x81\xd9\x5a\xb2\xf6\x4e\xd1\x02\x81\x5a\x63\x5a\x1d\xc5\x5a\xb0\xfd\x4d\xc7\xab\x77\xfb\x68\x5d\xb6\x2e\x57\xd9\x38\x92\xe0\xb6\x0b\x08\x33\x82\xf7\xf7\x8d\xa5\xb5\x74\x7f\xcb\xc8\x8d\x03\x96\x76\x02\x95\x26\xe1\xd1\x06\xa9\xb7\xd5\x2a\x90\x73\xbf\x69\xe4\xde\xcf\x6f\x93\x7b\xdf\x84\xcf\x37\x4b\x00\xf4\x68\xb7\x9e\xeb\xda\x4d\xb0\x22\x09\x95\xb0\xa0\xe6\x10\xb6\x0f\xab\x95\x02\x8d\xfc\xe0\x86\xa0\x63\x6d\x00\xb3\x51\xa8\xd6\xf8\x46\x2a\xc9\x1a\xc1\x0b\xc1\x87\x5a\x42\x12\xa2\x65\x96\x4e\x6d\x22\x41\x01\x02\xd7\x8a\xac\x35\x3f\x94\x5f\x80\x80\x55\x27\x74\xc5\x74\xa9\x35\x5d\xb8\xb2\x6d\x7b\xe9\xa4\xee\xca\x29\x58\xc3\xfc\xde\x3e\x4f\x37\x97\x47\x6e\xea\xe2\xdc\xaa\x44\x30\x18\x1c\xaf\x85\xb8\x7b\x8b\xb0\x3b\x14\x30\x59\xef\xcb\xba\x2e\xc9\x66\x61\x77\xf5\xcd\xf5\xdc\xd0\xbb\xa0\x58\x3b\x0c\x28\x1b\x3f\xaf\x19\x4a\xae\xe6\xfe\x0b\x6d\x5f\x0e\x78\xd1\x27\x18\x5f\x40\x2f\xa1\xf5\x43\x8f\x7a\xbc\xdb\x2c\xe7\x72\x1e\xd8\x9c\x07\x21\xed\xee\xa5\xe1\x4d\xc6\x7f\x3a\x6b\xd3\x41\xa7\xf1\x4b\xaf\x47\xf2\x9e\xf2\x86\xe3\x18\x56\xbb\xa3\x51\x22\xa3\x86\xc1\x58\xac\x1d\x06\x14\xbb\xaa\x38\x52\xa9\x35\xa8\x7d\x08\x66\x9f\x4b\x3c\xdf\x6e\x91\xeb\xfb\x2b\xa0\x8c\x31\x31\x42\xad\xaa\x8e\xdc\x1d\xa5\x70\x55\xe3\xd9\xc5\x35\x7a\xa3\x16\x5a\xcd\x73\x4c\x40\xed\xce\xee\xde\x4d\x48\xd3\xf2\x80\x8a\x9a\x0a\x6e\xe6\x88\x9f\x80\xd5\x76\xdc\xee\x45\xca\xab\x66\xdb\xd6\xdb\x9f\x01\x35\x38\x6e\xab\x50\xd3\x7a\xba\x00\xcd\x6b\x41\x70\x14\xb3\x79\xdd\x30\x9b\x37\xb6\x31\x9b\xd7\xe1\x0d\x8f\xa9\x6c\x42\xf9\xed\x2f\x7b\x4d\x67\x47\x93\x0e\x9e\x3a\x3a\x14\xe7\xa4\x10\xa7\xe9\xc8\x68\x7f\x84\x56\x30\xb0\xe5\x51\x11\xdc\xd0\x43\xe7\xc3\x15\x49\xfc\x2f\x49\xc0\xbf\xc1\xa7\xe3\xe5\xcb\xfb\x5f\x7e\xf8\x8d\x17\xc8\x57\x87\xd3\xa0\xbc\x7f\x83\xd1\xdb\x79\xdf\x2b\xd5\x51\x33\xc3\x27\x6d\x1e\x6d\xbc\x27\x22\x4b\xc0\x43\x4f\x9e\x4f\xe7\xe5\xd2\x1e\x62\xd3\x7c\x71\x98\xab\x33\xb5\xd5\x34\x9c\x87\xd6\x2b\x78\xa6\xac\x3f\x3c\x86\xb5\xdd\x2a\xcf\x89\x43\xe7\xae\xf0\xc4\x8f\x86\x57\xf9\x28\x78\x0e\x5d\x91\xab\xdb\xd8\x95\x1d\x79\x59\xfb\xfc\xa9\x6c\xf0\xe2\x5b\xe4\xcb\x2f\xbd\xf1\xda\x6c\xa3\x06\x99\x62\x42\xcc\x9b\x5e\xb3\x32\x59\x48\x1d\xc7\xb2\x2f\x6d\x98\xee\x0d\x0c\x43\x3b\x15\xaf\x27\xe5\x53\x55\xe7\xad\x98\x54\xc5\x8e\x56\xc7\xfb\xa4\xaa\x1f\x8e\x72\x93\xa7\xfd\x66\x15\x7b\xb7\x82\xf1\x85\xe0\xec\x1d\x0f\x32\x55\x2d\xa3\xe6\x16\xeb\xc7\x7c\x80\xc3\x19\xab\x5c\x57\x42\xb2\xe1\x9c\xbf\x90\x86\x53\x5b\x2e\xe0\xc9\xf8\x70\xcb\x54\x9b\x89\x78\xac\x78\x80\xd5\xae\xf1\xd5\x9a\x87\xd7\x87\x82\x15\xbf\x05\x01\x51\x5b\xd8\xf3\x41\x44\x4a\xe9\xfc\xd5\x71\xb4\x8f\x35\x8f\x18\xf5\xb7\x88\x53\xce\xcd\x1a\x9f\x93\xd3\xad\x5d\x18\x34\xc6\x6c\xba\xb0\xb6\x61\x85\x6f\x42\xcf\x46\xac\xb5\xc6\xda\x8d\x6d\x5b\xb0\xbd\xfe\xdc\xf9\x69\x50\xe4\x1e\xe4\x8e\xe7\x9b\xeb\x5f\xd9\xb8\x7f\x9d\x92\x0d\x5a\x7a\x01\xe5\xd8\x89\xcf\x36\xb8\x3a\x46\xe1\x8e\x1a\x9d\x8a\x04\x34\x60\x7d\xe5\x22\xc9\x97\x94\x94\xca\xf2\x76\x36\xdf\xde\x34\xe2\x63\xcf\x30\xa5\x3a\xe8\xba\xa3\x47\xdd\xf0\xd0\xdb\x9c\x9e\xb2\x79\x5b\xe1\x82\x8f\x43\x5b\xb4\x1e\x5b\x6a\xa7\x6e\xd1\x6f\xbf\x2a\x3e\xe4\x92\x19\x90\x06\x9f\x91\x97\xcf\x84\xdc\x7f\xe7\x15\x7c\xe3\xeb\xbf\x7d\x78\x91\x5b\x46\x48\x06\xbc\xf1\x8e\xf1\x19\x6b\x79\x5e\xd5\xda\x3b\xa3\xba\xb4\xf5\xdf\xe8\xfd\xf2\xf2\xd1\xe0\x1b\x2f\x9d\xbc\xfe\xce\xec\xc6\xeb\x61\x5e\x74\xa3\x05\x43\x2b\xba\xab\x7d\x6d\x5e\x12\x21\x6c\xd0\xcb\x69\x41\x76\xce\x87\x89\xd2\x8f\x1f\x11\x0f\x75\x1e\x22\x5a\x37\x9a\x41\x34\x34\xa4\x6d\xe8\x3d\x21\x0c\x07\x57\x8a\x86\xb5\x91\x5f\x16\x36\x36\x7b\xf9\xbc\x7c\x4c\xfc\xea\xbd\xdf\xb8\xf7\xf8\xf9\xe7\x1f\xb6\x23\x48\x57\x22\x84\xbf\xdc\x4b\x4d\xcd\xa3\x69\x9b\xb3\xd1\x11\xb8\x57\x9e\x71\x6a\xd2\xf6\xda\x99\x78\xd5\x78\xe6\x4f\xe8\xb2\x70\xec\xa9\x18\x6d\xdd\xf9\xe7\xc7\xf3\xe5\x6b\x5f\xfd\xca\x79\xc9\x5c\xc3\xdd\x7a\xbb\x25\xd4\x65\xd8\xc8\x7c\xae\xec\x63\xb6\x30\xbb\x4f\xc5\x60\xe6\x9c\x7a\xe6\xc6\x1c\x8a\xa1\x85\x21\xe3\x37\x39\xbb\xd9\x3c\x9d\x10\x1b\xba\x8d\xf1\x84\xcd\x36\x34\x55\x0b\xf8\x9a\x09\x4d\x93\xb5\x59\x3b\x33\x9a\xf3\x01\x44\xf8\xe0\x75\xad\xc6\x72\x62\x95\xfa\x9a\xe5\x84\x53\x39\xfc\x8a\x39\x83\xeb\xfd\xbe\x75\x55\x45\xeb\x7e\xfe\x27\xe7\x91\x20\xb6\x42\x8e\x8d\x7b\xa5\x51\x0f\x61\x5c\xe1\x65\x1b\x18\xdc\x56\x48\xfb\x05\xb1\x81\x38\x9f\xe9\x83\xf4\x6a\xac\x2d\xac\x7b\xf3\x34\xcb\x0e\xd3\xe9\x43\xce\x96\xd9\x40\x33\xed\x28\xf7\x13\xb8\xa1\x0e\x84\x12\xab\x44\xa3\x38\x3b\x42\x5e\xbc\x14\xe3\x2c\x13\x7a\xf1\x98\x45\xac\x13\xf5\x4d\x7a\x5a\x4c\x92\x84\x1c\xa0\x11\xe1\x90\x38\x17\x28\xb4\x3d\xae\xf1\x86\xf2\xf4\x80\xe0\x38\x0d\xad\x07\xe5\x70\x14\x3f\x11\xac\x44\xcb\xb0\x81\x13\x54\xd7\x18\x15\xbc\x73\xb7\x96\xf4\x1a\x8b\x84\xd7\xd8\xbe\xf3\x41\x87\x46\xc0\xdd\x2e\x4d\x92\x84\x1d\x04\xc7\x43\x9d\x88\x9e\x08\x62\x11\xe6\x61\xd4\x50\x12\xa9\x18\x10\x6d\xc0\xee\xfa\xd5\x3e\xbf\x97\x55\xeb\xd3\x13\x75\xbb\xbb\xbb\xee\x10\x1d\x86\x1e\xd4\xbe\x99\xe0\x12\x41\x27\xbb\xda\xd7\x6d\xc7\x89\x84\x4f\x65\xd8\x62\x0a\x9c\x08\x43\x3b\xda\xfb\x2a\x4e\x06\xfb\xf8\x96\x17\xf2\x54\x3a\x52\x8d\xc0\x3e\xde\xdb\x03\x2a\x8a\x29\xed\xe7\x02\x4b\x6e\xb3\x03\x9b\x8c\x31\x18\xd1\x31\x9e\xec\xb0\x38\x07\x07\xc8\x01\x73\xee\x8c\x13\x8c\xc8\xde\xde\x7a\x1d\x23\x00\x89\xe7\xd0\xda\xc6\xf8\x09\x8d\x1a\xcb\x51\xe3\xe0\xa8\xa5\x17\x60\xdb\x1f\x76\x46\x9d\xeb\x51\xa7\x09\xb6\xa3\xb6\xc9\x38\x07\x23\x3c\xce\x85\xef\x61\x16\xa7\x2a\x26\x4d\x91\xb8\xe3\x4f\xdd\xf1\xf3\x82\xc5\x8b\xbd\xa1\x1e\x49\x21\x22\x6e\xf2\xd1\xa5\x7c\xa7\xea\x6c\xba\x43\xf9\x3c\xe5\xaf\xde\x90\x4f\xd8\x4e\x17\x6f\x9d\x2e\xcc\xd5\x84\x57\x2b\x72\x6b\xa0\x1a\x3d\x33\x71\x17\x76\x87\x2a\xc2\xb2\x0e\x3b\x69\x60\x91\x26\x03\x58\x24\x61\x58\xd0\x5b\x09\xe9\x76\xd3\x5b\xc5\xbe\xec\xbb\x6c\x00\x49\xca\x41\x92\x2a\x90\x94\x0a\x24\x99\x07\x92\xd2\x01\x09\xcc\x57\x2b\x17\x2d\x4b\x87\x59\x90\xf0\xca\x34\x54\x32\x03\x2c\xea\x00\xcb\xce\x6b\x53\x4b\x7a\xc6\xe5\x5a\x80\x36\x95\x68\x04\x77\x87\x60\xb5\xda\x00\x19\x0b\xf5\xdc\xf5\x44\x7c\x66\x63\x52\x20\x1b\x79\xc2\xc4\xad\x66\xeb\x1d\x13\x11\xf2\x38\x2d\xee\x3e\x22\x86\x14\x3a\x43\x12\xde\x87\x4d\x48\x29\x64\x92\x1e\x6e\xa7\x22\xc6\x7e\x6e\x9d\x56\xa7\x09\xdf\xa2\xb0\x48\xde\x4c\xd9\x71\x7f\x81\x49\x2c\x13\xe9\xe3\x58\x92\x9c\xbd\x1c\x0e\x00\x4c\x7b\x43\x00\xcb\x84\xe3\x4a\x01\x60\x96\x94\xa6\x79\x38\x4d\x4a\x15\x22\x66\x7f\xda\xed\x66\x6a\x39\xe7\xb2\xec\x5e\x92\x83\x9d\x2c\x99\xbb\xc5\xe7\xaa\xb8\xf6\x58\x3c\xbd\x88\xa3\x60\xe5\x55\x3e\x61\x10\x79\x11\x88\x85\x77\x60\x21\x80\xbd\x3b\x97\x59\xc2\x53\xbc\xec\xf1\x36\x13\x42\xd8\x04\x43\xd4\x9f\x63\xa2\x02\x8a\x7e\x1d\xb3\xe3\xbb\xf3\x79\x81\xbc\x43\x83\x40\x0a\xb1\xa2\x31\x30\x85\x45\x62\xc2\x85\x29\x77\xce\x2f\xde\x74\x02\xb7\x9a\x8f\xe3\x9b\x93\x6e\xd7\xfd\x05\xcb\x64\x00\xb3\xa4\x76\xd8\xee\xee\xa6\xeb\xc0\x66\x9b\xc2\xb9\x5d\x9c\x63\x67\xef\x4c\xed\xde\x81\xcb\x64\xb0\xbf\xbc\x75\xbc\xbf\xd4\xf4\x64\x96\x4c\xed\xe6\xb1\xc9\x78\x09\x46\xd3\xf1\x72\x02\x17\x89\x8b\xc9\x33\x17\x93\x45\xb8\xc4\x62\xb5\xda\x5d\xc8\x78\x70\xf1\x0c\xc8\x60\x13\xb1\x57\xc1\x6e\xb0\xf9\x6a\xb5\x00\x30\x8b\xb5\x8b\x6d\x19\xe4\x97\xc6\x33\x48\xc0\x8b\xc9\xe0\x20\x2e\x6f\xe1\x83\x7c\xb5\x8a\xf3\x64\x06\x46\x69\x32\x83\xe5\xde\x1e\x18\x95\x7b\x7b\x62\xf7\xd9\x7a\x7a\xc7\xc0\x74\xb5\xca\xd7\x62\x49\x32\xab\x9b\x93\x38\x40\x71\xd6\x22\xad\xaf\xc3\x8d\xe0\x3a\xdc\xf0\xd6\xe1\xc6\x64\x47\x92\x52\x39\xa9\xdb\x2a\x3e\x72\xe9\x00\x98\x58\x00\x1b\x02\x96\x25\x83\xfd\xec\x56\xb9\x9f\x69\x40\x4f\x13\x62\x01\x6d\x93\x71\x06\x46\x64\x9c\x09\x2a\xb5\x9b\xae\x56\xbb\xde\xba\x39\x04\x48\x40\x78\x0a\xf4\x1e\x71\x81\x3c\x75\x81\x4c\x21\x86\x29\xd8\xb1\x5f\xe7\x76\x74\x2f\x0e\xba\xdd\x42\xfa\x19\xcf\x05\xbe\xa8\x38\xcb\x38\x9e\x42\xca\x97\xc0\x7c\x9e\x82\xb5\x39\x18\x2c\x6b\xe4\x78\xd8\x4a\xea\x31\x35\x91\x09\xfe\x4c\x12\xe4\xc5\x16\xc6\x09\xea\xeb\xab\x1f\xcc\x13\xb2\x5a\x61\x3e\x5f\xc3\x18\xe6\xab\x55\x6f\x98\x24\x09\x8d\x39\x85\xd1\x54\x36\xe5\xbf\xe0\xd0\x04\x8f\x15\x2b\xdd\x10\x7a\x3a\x49\x45\x24\x6b\x8a\x97\xaf\xe0\x74\x4a\x31\xc3\xd3\x22\x29\xed\xc8\xa5\x46\x25\x0d\xf3\x76\x65\x8c\x40\x9f\xe5\x5f\x5b\x2e\x11\x7d\x39\x2d\x50\x0c\x34\x1d\x88\xcb\x98\x55\x3e\x01\x07\x1e\xf7\x4f\x97\xe8\xf6\x31\x4a\x67\xe7\x6d\x5e\x5c\xe7\x0a\x4e\x3e\x42\x3d\x88\x58\xdb\x6b\x85\x76\x67\xd1\xa7\xef\xff\x4d\x34\x8a\x6e\x47\x30\xfa\x7f\xff\xfe\x7f\x53\xa9\x9f\xff\x8e\x4e\xfc\x0b\x9d\xf8\x5d\x95\xf8\xe4\x6f\xff\xcc\xa4\xfe\xd4\xa4\xfe\xdc\xa4\x7e\xa2\x2b\xfc\x4b\x95\xf8\x50\xb7\xf5\xa1\x6d\xe2\xaf\x4c\xea\x2f\x4d\xea\xaf\x4d\xea\xbf\xa9\xd4\xc7\xba\xa7\x5f\xfc\x48\x37\xfa\x1d\x9d\xf3\x43\x53\xfa\xc7\xfa\xdb\xbf\xd2\xdf\xfe\x56\x27\xfe\x9d\x6e\x48\x0f\xe1\x63\x3b\x84\x1f\x99\xd4\x5f\x98\x94\x06\xc4\x27\x1f\x98\x31\xeb\x0e\x3f\xd6\x8d\x7e\xfa\xd3\xff\xaa\x52\xbf\xfc\xbe\x18\xa8\xe8\xfb\xbb\x3c\xf5\x2a\xef\xf3\xef\x4d\xea\xc7\x3a\xf5\xcb\xef\x8b\xb9\xdd\x15\x49\xd1\xc7\xd7\x44\xf2\x03\x9e\xfc\x2d\x91\xfc\x5b\x9b\x14\x0d\x7c\x83\xf7\xf4\xfe\xff\x13\x8d\xa2\x97\xc4\xc2\xfc\x58\xa5\x3e\xf9\xe0\x77\x4d\xea\x3b\x26\xf5\x5d\x95\xfa\x9f\xff\x52\x25\x3e\xd2\xa5\x3e\xfa\x17\x2a\xf1\xe9\xfb\xbc\xb7\x97\x45\x63\xff\xbb\x4a\x7d\xf8\x5d\x9d\xf8\x9e\x4e\xfc\x9e\x4e\xfc\xbe\x4a\xfc\xfc\x5f\xab\xc4\x27\x1f\xe8\x42\x1f\xe9\xac\x8f\xff\x4e\x25\x7e\xf9\xfd\x7f\x50\xa9\x4f\xdf\xff\x59\x34\x8a\x5e\x11\xdd\xfc\xa9\x4a\x7d\xf2\xc1\xef\xa9\xd4\x87\x7f\x60\xb2\x7e\xdf\xa4\xfe\xd0\xa4\xde\x37\x29\x5d\xee\x43\xfd\xf1\xa3\x7f\xab\x13\xba\xad\x8f\xfe\x8d\x4a\xfc\xf2\x07\xba\xcb\x5f\xfc\x94\x27\x7e\x9b\xa7\xbe\x63\x52\x7c\x8d\x5e\x79\x8f\xa7\xfe\x95\x4e\x7d\xfa\x3e\x07\xf7\xab\x62\x90\xff\x87\x4a\xfd\xfc\x7b\x3a\xf1\x6f\x74\xe2\xf7\x54\xe2\x93\xbf\xfb\x1d\x9d\xfa\xdb\x7f\x30\x79\xdf\x31\xa9\xdf\x35\x5f\xff\x5e\xa5\x3e\x7c\x5f\x67\x7d\xf0\xef\x4d\xea\x3f\xe8\x8f\x3a\xeb\x43\x9d\xf3\xf3\x7f\x6b\x5a\xd0\x03\xfb\xf0\x3f\xa9\xc4\xc7\xba\x9f\x8f\xbf\x6b\x0a\x7d\x60\xba\xd6\x79\x1f\xff\xc4\x74\xf3\x7d\xdd\xc2\x7f\x34\x59\x36\xa5\x5b\xfd\xe8\x0f\x75\xe2\x0f\x54\xe2\xd3\xf7\xf9\x62\xbe\x26\x60\xf2\x67\x2a\xf5\xc9\x07\x3f\x54\xa9\x8f\xfe\x48\x25\x7e\xf9\x03\x5d\xec\xd3\xf7\xf9\x6c\x7f\x53\x54\xf8\xcf\x2a\xf5\x8b\xbf\x56\x89\x0f\xbf\xaf\x12\x9f\x7c\xf0\x23\x9d\xf5\x43\x9d\xd0\x39\xbf\xf8\x33\x9d\xf3\x63\x9d\xf3\xa7\x2a\xf1\xd1\x1f\xab\xc4\x2f\x7f\xa8\x4b\xff\xf2\x07\xff\xdd\xa4\xfe\x41\xa5\x3e\x7d\x9f\xe7\xbd\x2e\xc6\xf0\x13\x95\xfa\xf0\x4f\x55\xe2\x93\x0f\x7e\x6c\x52\x7f\xa6\x52\x1f\xff\xd0\x64\xd9\x62\x3f\x31\xa9\x3f\xd7\x6d\xe8\xf2\x9f\xfe\xf4\x3f\x9b\xd4\xff\xad\x52\xbf\xfc\xe1\xbf\xd3\x79\xef\xf3\x81\xdc\x11\xdd\xff\x17\x95\xfa\xf9\xef\xeb\xc4\xbf\xd3\x89\x3f\x50\x89\x0f\x7f\xa2\x13\x7f\xae\x13\x7f\xa1\x13\x7f\xa5\x0b\xff\x2f\x2a\xf1\xc9\x07\x7f\xa9\x53\x7f\xf7\x3d\x95\xfa\x85\xfe\xf8\xb1\xce\xf9\xf8\xf7\x4c\x21\x9d\xfa\xd0\xd4\xfb\x40\xb7\xfe\xd1\x9f\xa8\xc4\xa7\xef\xff\x8f\x68\x14\xfd\x33\x31\xe0\x3f\x57\xa9\x0f\xff\x5a\x25\xfe\xe7\xf7\x54\xe2\xd3\x3f\xe6\xf8\xfe\x55\x51\xea\xff\x54\xa9\x4f\x3e\xf8\x2b\x95\xfa\xc5\x4f\x4c\xd6\x7f\x53\xa9\x0f\xff\xc6\x64\xfd\xb5\x4a\x7d\xf4\x1f\x55\xe2\xd3\x9f\xfe\x17\x95\xfa\xe5\x0f\x7e\xc7\xa4\x7e\xd7\xa4\xbe\xa3\x53\x3f\xfc\xb1\xae\xf1\xc7\x9c\x66\xbd\x21\xba\xff\x0b\x95\xfa\xf0\x7f\xe8\xc4\xcf\x74\xe2\xbf\xab\xc4\x27\x1f\xfc\x8d\x49\x7d\xa0\x3f\xfe\x9d\xc9\xfa\x7b\x93\xfa\x5b\x95\xfa\x47\xdd\xfc\xc7\xba\x89\x4f\x7f\xfa\x63\x93\xfa\x91\x4a\xfd\xf2\x07\xdf\x33\xa9\xef\xea\xd4\x0f\x7f\x47\xa5\x7e\xc1\x49\xe0\x1b\x1c\x58\xbf\x10\xc5\xbe\x25\xc6\xcd\x67\xf5\xa6\x18\xf7\xff\xa5\x52\x9f\x7c\xf0\x0f\x3a\xf5\xb3\xdf\x31\x29\x5d\xee\xd3\x9f\xfe\xa5\x4a\x7d\xf4\x7d\x9d\xf5\xc7\x9c\x84\xbf\x25\x1a\xf9\x4b\x95\xfa\xc5\x07\x2a\xf1\x8f\xfa\xdb\xcf\xff\x48\x25\x3e\xf9\xd9\x77\xf4\xb7\x7f\x6d\xb2\xbe\xab\xb3\xfe\x95\xc9\xfa\x3d\x93\xfa\x9e\x4a\x7d\xfc\x23\x95\xf8\xe8\x07\x2a\xf1\xcb\x1f\xfe\xa1\x49\xfd\xa9\xee\x5a\x54\x14\xf3\xe4\x34\xea\x2d\x39\x4f\xde\xe7\x5d\x31\xc4\xff\xaa\x52\x3f\x7f\x5f\x27\xfe\x58\x27\xfe\xbd\x4a\x7c\xf2\x77\xef\x9b\xd4\x1f\x9a\xd4\x7f\x30\x29\x5d\xee\xe7\xff\xab\xce\xfa\xd9\xef\xab\xd4\xc7\x7f\x61\xb2\xfe\x40\xa5\xfe\xf1\xf7\x4d\x96\x69\xec\x67\xba\x83\x7f\xd4\xa5\x3e\xfe\x4b\x9d\xf8\x2b\xdd\xba\xee\xf0\xe3\x3f\x37\x3d\x9b\x36\x75\x4b\xbf\xf8\x23\x5d\xc8\x8c\x40\x97\xf9\xe8\x47\xa6\xda\xf7\x4d\xea\x3f\xfd\x7f\xec\xbd\x6b\x77\x1c\xc7\x75\x28\xfa\x1d\xbf\x02\xe8\x23\x4f\xaa\xa6\x6b\x1a\xdd\xf3\x02\xd0\x40\x61\x8e\x44\x52\x96\x62\x91\x92\x45\x4a\x96\x3c\x1a\xf3\x34\x66\x6a\x30\x2d\x36\xaa\x47\xdd\x35\x78\x88\x98\xb3\x92\x38\xb6\xe3\x38\x3e\x89\x43\xbf\x63\xca\x71\x6c\xc7\x71\x9c\xc4\x96\x1d\xc5\xa2\x14\xdb\x6b\x5d\xbd\xa8\xf3\x41\xf9\x0d\xe4\x47\xfe\x8a\xbb\xea\xd9\xdd\x33\x3d\x00\x28\x51\xc9\xcd\xba\x5e\x5c\xc4\xec\xae\xe7\xae\x5d\xbb\x76\xed\xaa\xda\xb5\xcb\x40\x59\xec\x2b\x06\xfa\x3b\x03\x19\x9c\xdf\xfc\xb6\xae\x49\x63\xf1\x9e\x6e\xe2\x5b\x26\xea\xb7\xba\xca\x2f\x6a\xe0\xfb\x0a\xb8\x77\xf3\xcf\x0d\xa4\xcb\x7c\x57\x54\xf3\xb8\x08\x13\xc8\x0a\xb4\x45\xe0\x33\xa2\xb3\x38\x13\x3c\x25\x3a\xeb\x17\x0a\xba\x73\xeb\xeb\x06\xfa\xa6\x82\xde\xfd\x91\x02\xee\xbe\xfa\x43\x05\xdd\xbb\xf9\x57\x06\xfa\x6b\x03\xe9\xac\x77\x6f\x70\xf4\x3e\x2d\x0a\x7e\x55\x41\xf7\x6e\x7e\xd3\x40\xdf\x56\xd0\xfb\x7f\xae\x80\xbb\x37\x38\x87\x3e\x2d\x32\xfc\x52\x41\xef\x7c\x5d\x01\x77\x6e\x7d\x5b\x07\x69\xe0\xf6\x5f\x69\xe0\xaf\x4d\xa2\xef\x1a\xe8\x7b\x3a\xf9\x37\x4d\xd0\x2b\x0a\x7a\xff\x2f\x14\x70\xf7\xd5\x1f\x29\xe8\xde\x4d\x9d\xf3\xde\x2b\x7f\x6f\xa0\x3f\xd1\xe9\x6e\xf0\x41\x71\x59\x60\xf6\x2b\x05\xdd\x79\xe3\x15\x05\xbd\xf3\x5d\x1d\x74\xeb\x47\x3a\xe8\x7b\x26\xe8\x6f\x75\xd0\xdf\x9a\xa0\xbf\x37\xd0\xdf\x19\xe8\x1f\x14\x74\xfb\xdb\x3a\xbd\x2e\xfe\xee\xab\xbf\x55\xd0\xbd\x57\xfe\xc1\x40\x7f\xaa\x63\x6f\x70\x6d\xe4\x8a\x40\xed\x5f\x15\x74\xe7\xd6\x3f\x2a\xe8\x9d\x1f\x99\xa0\x7f\x52\xd0\xed\xef\xea\xb8\xbf\x33\x71\xbf\x30\xd0\xbf\xe8\xc8\xbf\x57\xc0\xbb\x3a\xdf\xbb\x3a\xea\xf6\x6f\x15\x70\xef\x95\x2f\x6a\xe8\x7b\x1c\xb1\x2b\x9f\x15\xf8\xf0\xee\x7c\x46\xe0\xf3\x9a\x82\xde\xfa\x8e\x06\xbe\xab\x81\xbf\x51\xc0\x3b\xff\xa0\x80\x3b\xb7\x5e\xd7\x41\xff\x68\x82\xde\xd0\x41\xff\xa4\xf3\x7d\x4f\x01\xef\xe9\x02\xde\xfb\x96\x06\xbe\xa1\x01\x5d\xdb\x9d\x37\xff\x5e\xe7\xff\x17\x0d\xfc\x42\x27\xba\xa1\x80\xdb\x5f\xd7\xc0\x37\x15\xf0\xee\xcf\x4d\x7e\x83\xc9\x9b\x06\xcd\x37\xff\xc5\x40\xff\x64\xa0\x5f\x18\xe8\x47\x06\xf7\x5f\xea\x2a\x7f\x69\x82\xfe\xcd\x40\xff\xaa\xa0\xf7\xff\x54\x01\x77\x6f\x70\xe9\xf9\xac\x20\xdb\xbf\x29\xe8\xce\xad\x7f\x37\xd0\x6f\x15\xf4\xee\x2f\x15\x70\xef\xe6\x2b\x0a\x7a\xff\x0b\x26\x88\xb3\xd8\xb3\x62\x61\x70\x83\xb3\xf8\x67\x44\x71\xbf\x56\xd0\x9d\x37\xfe\xc8\x40\x7f\xa2\xa0\x77\xfe\xd5\x04\x7d\xd1\x40\x7f\x6a\xa0\x3f\x53\xd0\xdd\x57\x7f\xa9\xa1\x1b\x5c\x69\x79\x4e\x14\xfc\xba\x82\xee\xbc\xf1\xe7\x06\xfa\x0b\x05\xdd\xbd\xc1\x45\xcd\xf3\x22\xdd\x2d\x05\xdd\x79\xf3\x97\x0a\x7a\xeb\xa6\x02\xde\xf9\x37\x13\xf7\xba\x82\x6e\xeb\x44\x77\xde\xd0\x45\xbc\xf3\xba\x49\x95\xa5\xff\x57\x05\xbd\xfb\x2b\x05\xbc\xff\x7f\x4c\xdc\x6f\x15\x74\xf7\x06\xd7\x87\x3e\x2b\xb0\x78\x43\x41\xef\xdc\x52\xc0\x9d\x37\xfe\x4a\x07\xbd\xa9\x81\xdf\x98\xb8\xbf\x36\xd0\xd7\x15\xf4\xee\x6b\x0a\xb8\xfd\x23\x05\xdc\x7d\xf5\x77\x06\xfa\x99\x82\xee\xdd\xfc\x3b\x1d\x76\x83\x97\x1f\xf0\xca\x7f\xf3\xc7\x0a\xba\xf3\xc6\x77\x15\xf4\xd6\xdf\x6a\xe0\x07\x1a\xf8\x3b\x93\xe8\x27\x06\xfa\xb1\x81\x7e\x66\xa0\x9f\xea\x0c\x3f\x54\xc0\xdb\xba\xf8\xb7\x3f\x6f\x12\xbd\x6a\xa0\x9f\x1b\xe8\x35\x03\xfd\x4a\x41\xb7\x75\x4d\xef\x19\x2c\x7e\xa4\x43\xbe\x6f\x52\xeb\x7a\xde\xd2\xd8\xbc\xf7\xa6\x06\xfe\x8f\x2e\x48\xa3\x70\x3b\x43\xe1\x07\x06\xfa\x67\x03\xfd\x5a\x43\xaf\x1b\x9c\xbf\xa0\x80\xbb\xaf\xea\xe2\xdf\xd7\x84\xbb\xf7\x3d\x81\xa8\xa8\x9b\x8f\xe5\x80\xf0\x3a\x7f\x63\xa0\x1f\x6a\xe8\xde\xf7\x44\xdb\x62\x01\x8a\x3a\x26\x02\xe4\x7d\x1d\xec\x0b\xf0\xcd\x0c\x14\x05\x1c\x89\x2e\xe2\xf3\xf9\x8e\xe8\xa2\x3f\x51\xd0\x9d\xd7\x3f\x6f\xa0\x2f\x18\xe8\x4b\x0a\x7a\xf7\x8f\x34\xa0\x53\xbd\x7f\x43\x01\x77\x6f\x70\x9e\xe9\x8b\xc2\x3e\xaf\xa0\xb7\xbf\xa4\x81\x2f\x6b\xe0\x2b\x1a\xf8\xaa\x02\xde\xfa\x89\x02\xee\xbc\xae\x13\xbd\xfb\x67\x0a\xb8\xfd\xef\x0a\xb8\xf7\xbd\xdf\x29\xe8\xee\x17\xff\x54\x43\x37\x78\xd5\x03\x51\xe1\x9f\x2a\xe8\xce\xeb\x5f\x51\xd0\xdb\x7f\x69\x82\xbe\x6a\xa0\xaf\x19\xe8\x86\x81\x74\xba\xb7\x75\xe4\xbb\x7f\xa1\x80\xf7\xbf\xa9\x81\x6f\x29\xe0\xde\xcd\x37\x14\xf4\x1e\xef\x99\x81\x58\x35\x7f\x51\x43\x77\x6f\xf0\xb1\x42\x04\x42\x5f\x50\xd0\x5b\xff\xa0\x81\x9f\x6a\xe0\x1f\x15\x70\xe7\xcd\x3f\xd6\xd0\x1b\xbf\x33\x61\x5f\x30\xd0\xe7\x4d\xec\x6f\x14\xf4\xf6\x0d\x1d\xf4\xfa\x37\x0c\xf4\x2d\x1d\xa9\x83\xde\xd6\x21\x6f\xfd\xcc\x94\xf0\xa6\x8e\xfb\x1b\x05\xdc\xd6\xf5\xdc\xfe\x92\x49\x74\xcb\x54\xad\xc3\x6e\xff\xd4\x54\x73\x53\x97\xf0\x1d\x13\x94\x41\xba\xd4\xf7\x75\xc6\xf7\x75\xc8\x7b\x3a\xdf\xdd\x1b\x1c\xbf\xa1\x20\xce\x17\x15\x74\xe7\xf5\xef\x2b\xe8\xdd\xbf\x56\xc0\xbd\x9b\xff\xae\xa0\xbb\x37\x38\xf9\x77\x45\x86\x2f\x29\xe8\xbd\xd7\x14\xf0\xf6\x4d\x05\xdc\x79\xfd\x07\x3a\xe8\xfb\x1a\xd0\x21\xef\xfd\x44\x87\xfc\x50\x87\xfc\x58\x01\xef\xff\xad\x02\xee\xbd\xa2\x53\xdf\x79\xed\x96\x0e\xbb\xf9\x3b\x05\xdd\xbd\xc1\x69\x39\x12\x38\xfc\x99\x82\xde\xfe\xb1\x02\xee\xbc\xfe\x43\x03\xfd\x44\x41\xb7\xbf\x6f\x82\xb2\x64\x3f\x35\xd0\xcf\x34\xf4\xc6\x37\x75\x69\x3a\xe7\xdd\x57\xff\xc1\x40\xff\xa6\xa0\xf7\x75\x19\xef\x72\xda\x8d\xf6\x05\x46\x5c\x41\x0a\x05\x46\x5f\x56\xd0\x5b\xff\xa4\x81\x7f\xd6\xc0\xbf\x28\xe0\xed\x9f\x6a\xe0\x67\x1a\x30\x69\x7e\xae\x80\x3b\xaf\x1b\xe8\x4d\x5d\xe4\x7b\x7f\xa5\x80\xdb\x3a\xe4\xf6\x57\x4c\x22\x0d\xbd\x9d\x95\xa0\x0b\x7d\xff\x1f\x74\xdc\xab\x0a\xb8\x7b\x83\xb3\xc9\x8b\x02\xe1\x3f\x57\xd0\xdb\xaf\x29\xe0\xbd\x5f\x28\xe0\xfd\x2f\x2b\xe0\xee\x0d\x3e\x43\x5c\x13\xc9\xbf\xa2\xa0\x3b\xaf\xbf\xaa\xa0\xf7\x7e\x6a\x82\x7e\xa5\xa0\xb7\x7f\x6d\x82\x5e\x53\xd0\xbb\xdf\x51\xc0\xdd\x57\xff\x51\x41\xf7\x6e\xfe\xb1\x81\x3e\x6f\xa0\x2f\x68\xe8\x95\x1f\xea\x1c\x37\x38\xe3\x46\xa2\xfa\xbf\x50\xd0\x3b\x7f\xa4\x80\xb7\xdf\xd0\xc0\x6f\x15\x70\xe7\xf5\x5f\x1b\xe8\x96\x8e\xfc\x77\x13\xf4\x1b\x03\xbd\xa9\xcb\xfa\x9d\x06\xfe\x44\x01\xef\x7e\x57\x01\xef\xff\x4c\x01\x77\x5f\xfd\x81\x82\xee\xdd\xfc\xb2\x86\x5e\xf9\x63\x13\xf6\x25\x05\xbd\x27\x22\x25\xd1\xb8\x5e\xb8\x27\xb0\xfe\xaa\x82\xee\xbc\xfe\x3b\x0d\xdd\xfa\x63\x03\x7d\x5e\x41\xef\xbf\xaa\x81\x9f\x2b\xe0\xee\x0d\x3e\xa4\xa8\x28\xe3\xff\x28\xe8\xbd\x5b\x0a\x78\xe7\x4f\x15\xf0\xd6\xab\x0a\xb8\x73\xeb\x0b\x3a\xee\xcf\x4c\xd0\x97\x74\xd0\x17\x4d\xd0\x57\x0c\xf4\x65\x05\xbd\xfb\x8a\x02\xde\xff\xa5\x4e\xae\xa3\xee\xbd\xf2\x35\x03\xfd\x58\xe3\xc0\xbb\x81\xca\x56\xf2\x9c\xb1\xc0\xf0\x2f\x15\xf4\xd6\x2f\x35\xf0\x2b\x0d\xfc\xab\x02\xee\xbc\x79\xc3\x40\x5f\x33\xd0\xb7\x0c\xf4\x0d\x9d\xe1\x35\x1d\x74\xeb\xab\x0a\xba\xfd\xcf\x26\x48\x57\xf4\xce\x57\x4d\x90\x29\xec\x96\xae\xe0\x1d\x9d\xea\xf6\xcf\x35\xf0\xaa\x2e\xfd\xdf\x74\xc8\xcf\x4c\xcd\xa6\x4c\x5d\xd2\x7b\x7f\xad\x13\x19\x0c\x74\x9a\x77\x7f\x60\xb2\xdd\x34\xd0\xdf\x18\x28\x8b\xfd\xbe\x81\x7e\x68\x20\x83\xf3\x9b\xdf\xd1\x35\x69\x2c\xde\xd3\x4d\x7c\xeb\x75\x1d\xf2\x3b\x05\xbc\xff\x75\x05\xdc\xbb\xf9\x15\x03\xe9\xa2\xde\xd7\xd4\x7a\x57\x54\x23\x24\x83\x80\x84\xc2\x71\x53\xa0\x1d\x8b\xce\xe2\x08\x8d\x45\x67\xfd\x95\x82\xee\xdc\xfa\x86\x81\xbe\xa5\xa0\x77\x7f\xac\x83\x5e\xfb\x8d\x82\xee\xdd\xfc\x9a\x81\x6e\x18\x48\x67\xbd\x7b\x83\x8b\xee\x97\x44\xc1\x5f\x53\xd0\xfb\x5f\x51\xc0\xbd\x9b\xdf\x32\xd0\x77\x14\x74\xf7\x06\x27\x52\x22\x32\xfc\xb5\x82\xde\xf9\x86\x02\xee\xdc\xfa\x8e\x0e\xd2\xc0\xed\xaf\x69\xe0\x86\x49\xf4\x37\x06\xba\xa9\x93\x7f\xcb\x04\x7d\x5f\x41\xef\x7f\x55\x03\xbf\x51\xc0\xbd\x9b\x3a\xe3\xbd\x57\x7e\x62\xa0\xcf\x2b\xe8\xee\x0d\xae\xf1\xa6\x02\xb1\x1b\x0a\x7a\xeb\xfb\x0a\x78\xe7\x6f\x14\x70\xe7\xd6\x8f\x75\xd0\x4d\x13\xf4\x03\x1d\xf4\x03\x13\xf4\x13\x03\xfd\xd0\x40\x3f\x55\xd0\xed\xef\xe8\xf4\xba\xf8\xdb\xbf\x53\xc0\xbd\x57\x7e\x6a\xa0\x2f\xe8\x8c\x6f\xe8\xca\xef\xde\xe0\x85\x31\x81\xe2\xd7\x15\x74\xe7\xd6\xcf\x34\xf4\xc6\xb7\x14\xf4\xce\x8f\x4d\xe4\x3f\x2b\xe8\xf6\xdf\xe8\xb8\x1f\x9a\xb8\x57\x0d\xf4\x73\x1d\xf9\x13\x05\xbc\xab\xf3\xfd\xdf\x3f\x53\xc0\xdd\x57\xff\x5e\x41\xf7\x5e\xf9\x92\x86\xbe\xc7\xb1\x65\x52\xd9\xe2\x9a\xfa\x44\xa0\xf6\x0d\x05\xbd\x75\x4b\x03\x6f\x68\xe0\x4d\x05\xbc\xf3\x53\x05\xdc\xb9\xa5\x13\xbd\xf3\x33\x13\x64\x52\xfd\xb3\xce\xf7\xef\x0a\x78\xef\x7b\x1a\xf8\xb6\x06\xbe\xa9\x81\xef\xea\xfc\x6f\xfe\x44\xe7\xff\xb9\x06\x5e\xd5\x89\xbe\xae\x80\xdb\x1a\xc9\xdb\xdf\x52\xc0\xbb\xbf\x30\xf9\x0d\x26\x6f\x1a\x34\xdf\xfc\xb9\x81\xfe\xd9\x40\xaf\x1a\xe8\xc7\x06\xf7\x5f\xe9\x2a\x7f\x65\x82\x7e\x6d\xa0\xd7\x14\xf4\x7f\xbf\xac\x80\xbb\x37\x78\xce\x7d\x41\xb6\x6f\x2a\xe8\xce\xad\xdf\x18\xe8\x77\x0a\xfa\xbf\x5f\x51\xc0\xbd\x9b\xdf\xd7\x41\x7f\x61\x82\x38\xdb\xed\xcb\x15\x04\xef\xa4\x03\x51\xdc\xb7\x14\x74\xe7\x8d\x3f\x36\xd0\xe7\x15\xf4\xce\x6b\x26\xe8\x4b\x06\xfa\x82\x81\xbe\x6d\xa0\x2f\x2b\xe8\xee\xab\xbf\xd2\xd0\x0d\x4e\xdd\x43\x51\xc5\xb7\x15\x74\xe7\x8d\xaf\x18\xe8\xab\x0a\xba\x7b\x83\xeb\x1e\x47\x22\xdd\x77\x14\x74\xe7\xcd\x5f\x29\xe8\xad\xdf\x28\xe0\x9d\x5f\x9b\xb8\x5b\x0a\xba\xad\x13\xdd\x79\xe3\x2f\x75\xf2\xdf\x99\x54\x26\xfd\x1b\x59\xa9\xaf\x29\xe8\xdd\x7f\x55\xc0\xfb\x7f\x69\xe2\x74\xce\xbb\x37\x78\x5f\xbe\x2c\xf0\xf9\xae\x82\xde\x79\x43\x01\x77\xde\xf8\x9a\x0e\xfa\x77\x0d\xfc\xd6\xc4\xdd\x30\xd0\x37\x14\xf4\xee\xbf\x29\xe0\xf6\x8f\x15\xf0\xfe\x1f\x29\xe0\xee\xab\xff\xa4\xa0\x7b\x37\x7f\xa8\xa0\x0f\xf8\x04\xfc\xc1\xd7\x38\xc4\x87\xd3\x07\xdf\xe0\x10\x27\xed\x07\xdf\xe2\x10\xd7\xc3\x3e\xf8\x0e\x87\xfe\xd1\x40\xbc\x73\x3f\xf8\x3e\x87\xf8\xec\xff\xc1\x8f\x39\xf4\x33\x03\xf1\xe6\x7d\xf0\x53\x0e\xf1\xca\x3e\x78\x95\x43\x9c\x2d\x3f\x78\x8d\x43\x5c\xdb\xfc\xe0\xd7\x1c\xe2\x4c\xfb\xc1\x2d\x0b\x59\xff\xf1\xe7\x1a\xfa\xe0\xaf\x4c\x98\xa8\xe3\x77\x1c\xe2\x9d\xf6\x1f\x5f\xe0\xd0\x57\x34\xf4\xc1\x2f\x4c\x18\xc7\xf4\x3f\xbe\xcc\x21\xae\x25\xfd\xc7\xe7\xad\x69\x66\xe4\x38\xc9\x8c\x1c\x2d\xcb\x91\x97\x93\x01\x81\x4e\x42\x84\x29\x33\x58\xed\x7e\xee\x85\x89\xeb\xba\x6e\x8d\xff\xac\x5d\xe8\xad\xee\xa2\x12\xab\xda\xb4\x4b\x7a\xc7\xc7\xa4\xcc\x28\x33\x21\x69\x1c\xed\x93\x64\x75\x48\x02\x36\x49\x48\x6a\xa1\x6e\x2f\x6f\x60\xba\x38\x87\xbe\x3e\x6a\xcc\x36\xd1\x6c\x0a\x0d\xa4\xab\xc2\x66\x3a\xec\x17\x2c\x3b\x11\xfb\xa8\x56\xb4\x0b\x33\x18\xa7\xe8\xd7\x09\x9d\xec\xc9\xc7\xe1\xfd\x15\x17\x95\x9b\x13\x33\x6d\x61\x51\x66\x37\x3d\xd7\x98\xff\xff\xb5\xd8\x34\x66\xb5\x1f\x53\x16\x84\x94\x24\xb5\x01\xd9\x99\xec\xd6\x82\x41\x30\x66\xf7\x4b\x92\x55\xed\x84\xfa\x04\xc2\xe4\x0d\x73\x11\xcb\xec\x3e\x99\x23\x0c\xb3\x01\x25\x07\xcb\x4f\x93\xdd\x0b\x87\x63\x60\x7d\x6e\xb5\x63\xd9\xd4\xb6\x56\x81\x63\xc3\x55\xcb\x26\xb6\xf5\x90\xb2\xa1\xa4\x93\x28\x5a\xc1\xd8\xd8\xed\x26\x5d\xaf\xf7\x61\xac\xf8\x8a\x97\x91\xce\x69\x2a\x9c\xe7\x44\x78\x58\xd2\xc0\x21\x87\x8c\xd0\x01\xb8\x7e\x55\x9a\xf2\x3f\x2d\xfc\x9d\x27\x47\xbe\xb8\xe8\x11\xd2\xb0\xd0\x0f\xc2\x60\xfb\x6a\x3a\x19\x93\xc4\x09\xc6\xe3\xe8\x08\xf0\x10\x64\x0c\xc1\x20\x92\x29\x8a\x65\x1d\x1f\x83\xb2\x60\xcc\xa9\xc1\x9c\x8b\x85\x40\x38\x45\xfd\x80\x9e\x0b\x58\x10\xc5\xbb\x17\x28\x4b\x42\x92\x3e\x72\x74\xe5\x68\x4c\xfc\x79\x09\x61\xed\xc5\x03\x12\x59\x18\x63\x72\x7c\x7c\x2a\x6e\xbc\xe4\x53\x8a\xd5\x86\x69\x0c\x97\x21\xec\x64\xb7\x1d\x52\x00\x51\x92\x59\xbb\xa1\x50\x66\xa0\x3c\x6a\x1c\xf4\x89\x4a\xfa\x54\x42\x86\xe1\x21\x8a\xb1\x8b\x02\xcc\x94\x45\xdd\x66\xbc\x15\x64\xb6\xca\x29\x66\xca\x24\xb9\xe6\xad\x60\x9c\x1a\xab\x2a\x02\xb5\xe5\x2e\x67\xa6\x14\xcd\x54\x30\x8e\x07\x17\x73\x75\x1c\x1f\x87\x70\x69\x72\x7c\x0c\x26\x38\x75\xd2\x71\x14\x32\x40\x6c\x2b\x5d\xb5\xa0\x33\x8e\xc7\x00\x42\x94\x38\xc1\x60\x20\x99\x08\x4c\xa0\x36\x57\x5e\x4e\xc4\x58\x5a\x3a\xf3\x58\x3a\x5d\x7c\xaa\xab\x09\x3c\x7d\x6d\x18\xf4\x59\x9c\x1c\x2d\x4a\xb4\x17\x5c\x23\xb5\x41\x28\xe8\x1f\x24\x47\x33\x83\x8b\x8f\x9f\x8f\x7a\x5f\xa1\xc8\x5d\x58\x5a\xd3\x21\x63\x54\xa7\x1c\xa5\xbf\x98\x3a\x44\x32\x45\xa5\x02\xe6\xc2\x72\xa9\xae\x92\xe0\xda\xd5\x94\x10\x2a\x0d\x1c\x13\x3c\x57\x43\x6e\xb4\xe4\x4c\x2c\x19\xbc\x0e\x8a\x72\x23\x1c\x82\x15\x40\x96\x43\x9a\xb2\x80\xf6\x49\x3c\x5c\x66\x10\xb2\x51\x12\x1f\x2c\xf3\x71\xc1\x59\xf3\x42\x92\xc4\x09\xb0\xce\x05\x94\xc6\x6c\xb9\x1f\x44\xd1\x72\xb0\x2c\xe8\xba\x1c\xa4\xcb\x81\xb1\x6b\xb5\xe0\x14\x4a\x66\x27\x7a\x00\x6a\xcc\xd9\xf1\xf1\x5c\x73\xa6\xc6\xda\x79\x9c\xc4\x2c\x66\x47\x63\x92\xe7\xec\x79\x5b\xda\x65\x45\xf7\x6b\xe4\x28\x05\x85\xf2\x85\x9d\x5f\x56\xca\x28\x48\xcb\x6e\xc7\xf0\x56\x2e\x17\xf2\x15\xb3\xed\x92\xd2\x4b\x35\x0a\x71\x40\x78\x2d\x53\x65\x52\x1a\xaa\x41\xa7\x50\xd2\xd2\x4b\xf1\xd5\x93\x6c\x44\x12\x7f\xd6\xea\x52\x5d\x34\x19\x86\x54\x0d\x19\xde\x4e\x40\xa4\xa8\x35\x22\x5a\xe2\x77\xc8\x92\xa0\xcf\xce\x4b\xc1\x79\x41\xb0\x38\xa0\x48\xa6\xcd\xb8\x26\xd7\x51\xaa\x93\x96\x2f\x1c\x8e\x85\xe9\xe6\x32\x8b\x97\x79\x4d\xfe\xf2\x1f\x58\x36\x71\x86\x93\x28\xe2\xd5\xd9\xd6\x1f\x2c\x1f\x84\x6c\x14\x52\x1e\x4e\xf9\xe7\xce\x84\x2d\xef\xc6\x6c\xf9\x0f\xcc\xdd\xa5\x3f\x70\x96\xcf\x87\x83\xe5\xa3\x78\xb2\x3c\x8c\x93\x5d\xc2\x78\x61\x7f\x20\x07\xda\xb2\x12\xe6\xb3\xc5\x74\x2c\x63\xfb\x29\x9a\x90\x8e\xe2\x49\x34\xf8\x4c\x12\x8c\x1f\x97\x8e\x9a\x1f\x95\x43\x10\x24\x88\x40\xce\xdd\x18\xb8\xc8\x4c\xa4\x10\x24\x5c\x34\x4c\xa7\x68\x1c\x24\xa9\xbc\xc8\x95\x27\x1f\xe7\x52\xde\x62\xe2\x88\xf8\x01\x4f\xa0\x67\x25\xb2\x24\x45\xa5\x1a\x53\x54\x03\x89\x06\x84\x45\xab\x10\x45\xd6\xff\x94\x96\xd0\x75\x8c\x71\xa8\xc4\xa0\xbe\x60\x12\x76\xdd\x9e\x4e\xe6\x67\xc9\x62\x9d\x4c\xd8\xbe\x76\xbd\x9e\xfa\xee\x00\x8a\xe3\xae\xdb\x43\x09\xb6\xfe\xa7\x65\x87\x5d\xaf\x07\x7d\xc0\x44\x12\x64\xa2\x44\xf0\x92\xb8\x80\xa0\x2e\x84\xf0\x12\x72\xb5\x30\x51\x2f\xa2\x38\x90\x19\x02\x3e\xc5\x5a\xfa\xbe\x1a\x9f\x52\x68\xa5\xc2\xab\x66\x4e\x14\xa4\xd2\xb0\xfd\xc9\x21\xb0\x72\xf7\xd8\x2c\xe4\x4a\x82\x16\x02\xed\x04\x31\xcc\x9c\x34\x0a\xfb\x04\x78\x9e\xb6\x1e\xa6\x18\xe4\xc8\xe1\x5b\x10\x66\x88\x2a\x23\xd6\x04\xe5\xed\xa5\xc5\x78\xb6\x8c\xbc\x37\xbd\x7c\x3d\xeb\x08\xae\x28\x69\xfe\xf2\x09\x1a\x8b\x89\xc0\x67\x6a\x2a\x94\x9f\xe0\x3a\x1f\x62\x3e\x9d\x42\x24\x01\x93\xe3\x33\x21\x1b\xc5\x13\x61\x9e\xeb\xa7\x88\x57\xe4\x27\x28\x89\x63\xe6\x4f\x90\x1a\x4e\x17\x09\x1b\xc5\xb2\x2a\x4b\x05\x59\xb6\x44\xf1\xb2\x70\x88\xe0\xc8\x59\x61\x78\x04\x28\xe4\x3c\x14\x4d\x12\xe1\x32\x6f\xc0\x4b\x4d\xa5\x0e\x51\xa6\x57\x70\xb9\x7f\x25\x96\x65\x94\x5f\xc8\x3a\x61\x3a\xb5\x79\xbf\x33\xdb\xf2\xad\x29\x5a\xc4\xed\xf3\xca\xe3\x8a\x37\x3d\x49\x9d\x01\x4a\x72\xca\x8a\x1e\x09\x52\x32\x78\x5a\xcd\x55\x78\xc5\xbd\x6f\xb5\x26\xd1\x82\x98\xc6\xc9\x9e\x20\xc9\xb9\xa0\x3f\x22\x7c\xec\xd1\x6c\xec\xa9\x44\x33\x64\xc3\x65\x81\xc7\xc7\x67\xc9\xca\xd7\x5a\xc3\x70\x57\x63\x56\x1e\xcb\xf9\x95\xff\x5a\x1a\xc7\x01\x19\x27\xa4\x1f\x30\x32\x78\xaa\xa8\x54\x60\x4e\x34\xd3\x82\x12\x05\x6c\xb9\xac\x91\x62\xd5\x06\x16\xc4\xe0\x99\x70\xae\xe6\x4c\x35\xbf\xcd\x49\x6e\xa5\x87\x19\xd9\x24\xae\x92\x61\xe6\xcc\xf1\xa7\x11\x3a\x6a\x94\x58\x66\x6e\xc4\x98\xf3\x3d\x9f\x5e\x47\x61\xda\xa5\x3d\x31\x62\x15\x0c\x18\x84\xe2\x62\x2f\xc6\x89\x09\x77\xf2\x73\x89\x48\x91\x4c\xd1\xd5\x72\x2a\x68\x9b\xfe\x9c\x60\x31\x4b\x15\x75\x7d\xc2\xeb\x58\x23\x12\x8d\x49\xc2\x65\x0a\xeb\xba\xbd\x0e\xff\xc3\xb9\xd7\x66\x5c\x26\x99\x35\xf1\xd5\xd5\x5d\x64\xd5\x2c\xe8\x9b\xf8\xc2\x48\x1b\x04\xe9\x88\x24\x9c\x62\xc5\x6c\x2f\x38\x3c\xdf\xaa\x05\xa1\x4f\x72\x23\x70\x61\x67\xcd\xf0\x44\xae\xb3\xe6\x63\x30\x57\x21\x2d\x38\x45\xe3\x78\x20\x86\xc4\x13\x71\x7c\x6d\x32\xe6\x92\x43\x32\xc8\xcc\xd8\x55\x93\xad\x53\x22\x62\x74\xbf\xe4\x25\x2c\x73\x78\xd7\x54\x2a\x80\x62\x9a\x35\xe8\x73\x99\x34\x7d\x61\x75\x15\x59\x16\x84\x88\xd8\xd6\xaa\x5c\x2c\x59\xb6\xcc\x95\xe1\x94\x4d\xe9\x8b\xd8\xe7\x04\xa5\xf9\x04\x31\x53\x98\x55\x17\x11\x00\x30\x44\x72\xf4\x31\xf7\xb9\xd3\xc7\xe9\xe5\xc9\xce\x20\x9c\x57\x46\x3e\x1a\x4e\xe1\x10\x30\x1b\x5b\xb9\xeb\xd4\x56\xfe\x8a\xb9\x98\xa9\x39\x79\x8e\x8f\xf3\x74\x5c\x75\x18\x49\x19\x20\x65\x1d\x63\x6e\x92\x9c\xa5\x9d\x6a\x68\x5c\xa0\xbb\x21\x2d\x1f\x09\x25\x35\xd8\xd6\x2a\x11\x19\x2c\x81\x7e\xd9\xc2\x6a\x14\xa4\x7c\xa4\x15\x84\x4a\xa9\x2a\xc6\x32\x24\x9e\x8e\x27\x8c\x5c\x0c\xc6\x67\x45\x83\x0b\x0e\xdb\x5a\x4d\x78\xb6\xf4\x64\x54\x28\x3c\x8b\x56\x68\xc6\x3a\x57\x9f\x14\x52\x57\x14\x7b\x2f\xea\xf6\x82\x6c\x21\xa6\x04\x29\x83\x58\xa5\x02\xf4\x62\xfd\xca\x85\x8b\x4f\x3d\xf1\xf0\x95\x0b\x97\xbb\xa5\x8d\xe9\x41\xc4\xa6\x68\x2f\x08\xe9\x02\xf6\x0f\x87\xc0\xe2\xd1\x92\x25\xca\xfa\x3d\xb7\x0a\x90\xb3\xea\x2a\xd7\x57\xe5\xd8\xd2\x17\x82\xca\xcb\x2e\xcb\x59\x94\x20\x40\x16\x04\x55\xa1\x25\xd5\x4f\xb5\xba\x72\xea\xf8\x58\x38\x26\x4d\x92\xae\xac\xcd\xb6\x64\x22\xab\x27\xe8\x78\x4a\x1a\x49\x40\xd3\x40\xc9\xf0\x4f\x05\x8c\x91\x84\xa6\xfe\xcc\x4d\xf6\x39\x6d\xa2\x5b\x18\x2d\x19\x9d\x50\x21\x7c\x5e\x1c\x28\x25\xa3\xd0\x6f\x32\x6c\x8e\xe4\xbd\x29\x74\x12\x12\x0c\x9e\xa4\xd1\x11\x80\xa8\xb8\x7a\x99\x11\xbc\x7a\xdf\x22\xbb\x52\x0f\xac\x45\x6d\x13\x77\xea\x8d\x86\xee\xa2\x18\x53\xbd\x31\x11\x6e\xc5\xd9\xd5\xef\x00\xd3\x6e\xd8\x73\xf8\xb2\x53\x2f\x2e\xf9\xa0\x09\x2a\x15\x10\xc8\x6a\xfa\xa3\x38\x4e\x49\x6e\x49\x15\x20\x02\x21\x0a\x2a\x95\x85\x23\x2b\x90\x1a\x73\x00\x91\x56\x53\xaf\x46\xf1\xae\x44\x90\xaf\x50\x50\x00\x51\xb6\xed\x35\x9d\xa2\xd9\x3a\x4a\x67\x9c\xc2\x44\xc9\x57\x53\x49\xda\x8f\x13\xbd\xc4\x23\x2b\x42\x99\x5f\x88\x13\x5f\x16\x9d\x24\x0a\x4a\x17\xe5\x0f\xef\xed\x84\xbb\x93\x78\x92\x2e\xcb\x4c\xcb\x82\xd3\xe4\xa2\x8f\x2f\xee\x02\x3a\xd0\x2b\x34\xb9\xa6\x39\xa1\xfa\x6c\x41\x75\x8a\x50\xd2\xd2\xc2\xec\x3d\x64\x5a\xc0\x6a\x0d\x74\x3f\xf7\xc2\x6a\xaf\x0a\x1f\x5a\x45\xd6\xea\xd5\x87\xbc\x99\x75\x61\x59\x91\x09\xec\x24\xfa\xee\x34\x8a\x44\x27\xc8\xa7\xee\xe4\xad\xea\x33\x68\x63\x85\x2a\x66\x16\xd8\x0c\xad\xb8\x70\x8a\xb2\x0e\xf6\x67\x37\x77\xc2\xa1\xba\xa0\x79\xe1\xd2\xb3\xce\x13\x4f\x7e\xf2\xea\xc5\x27\xcf\x3f\xf3\xc4\x85\xab\x4f\x5f\xb8\xfc\xe4\x13\xcf\x5e\x78\xfa\xf8\x98\x39\x7c\x45\x22\xe2\x74\xa0\x16\xcd\xd9\x22\xb3\x63\x75\xef\x7e\xef\x46\xcf\xf2\xad\xee\x72\xcf\x5a\x4a\x72\x1a\x88\xd6\xc2\xda\x6e\xc7\x72\x2c\x9f\x77\xe2\xc3\x49\x12\x1c\x81\xb6\x5b\x9b\x4b\x05\x9d\x17\xe3\x90\x02\xcb\xb1\x20\xa2\xc7\xc7\x40\x8d\xa6\x39\xc2\x08\xa5\xb0\x1f\xd3\x34\x8e\x48\xa5\xa2\x00\x27\xa4\xc3\xb8\xf8\x05\x42\x94\xd5\x81\x12\x24\xd6\x48\xd7\x68\x7c\x40\x1f\x8d\x93\x8f\xba\xf7\x38\xbb\x1c\x90\x43\x99\x2d\x18\xca\xac\x1b\xf6\x90\x5a\x59\xb0\x24\xa0\x29\x9f\xa4\xae\xc4\x66\x4b\xf8\xd1\x49\x14\x51\xd1\xa5\x28\x80\x4b\x62\x17\xac\x9b\xf6\x30\xef\x40\x33\x18\xd1\x49\x19\xcb\x35\xc1\xb9\x75\x28\x99\x0a\x8f\x1e\x7c\x5e\x40\x21\x16\xb3\x83\xc0\x5a\x6f\x7a\x26\x50\x6c\x94\xea\xcf\x50\x0c\x1d\xb1\x03\x50\xa9\x04\x72\x35\x2e\xda\x57\xd3\xbb\x08\x95\x8a\xd1\xb4\x13\x05\xd8\x66\x87\x41\x8f\x2b\xa9\x6d\xab\x35\x79\x6c\xeb\x84\xbc\xa9\x72\xe9\x4d\x4b\xe7\x30\x31\x7d\x69\x0e\x97\x7b\x01\x1a\xb1\x14\xe6\x2a\xd6\x57\xa5\x3b\xc5\x8a\x74\x30\x34\x43\xac\x54\x91\x28\x19\x66\x66\xe7\x4b\xba\x5b\x12\x7f\x56\xdc\x6c\xb0\xf1\xba\x55\xd7\xcb\xa9\xce\x30\x02\x62\xd3\x29\x5c\x0a\x9d\x84\xc4\x63\x22\x57\xc4\xe0\x7a\xc9\x9a\x76\xf6\x84\x20\x5c\x7c\x9c\x52\xba\x9d\xfb\x9f\xef\x63\xe7\x7a\x3f\x21\x05\xc5\xca\xec\x15\x94\xac\xf5\x88\xda\x18\xec\x68\x00\x30\xbe\x3c\x9a\x9e\x70\x90\x58\xbe\x21\xfd\x9f\xd7\x50\xd9\xf7\x04\xab\xb2\x64\x6b\xc5\x49\x10\xcc\xdc\x53\x5c\xe5\xa8\x61\xc1\x0f\x03\x12\x11\x46\x74\x18\x22\xa5\x4d\x1b\xc7\x34\x0d\xf7\xc9\xaa\x5c\x81\xa6\xab\x7b\x64\x10\x06\x1f\x53\xa3\xd4\x6e\xe0\xfc\xee\xf1\xdc\xbe\xb7\x90\xc0\x4e\x98\x4a\x49\x3c\x33\xff\x5d\x16\x8e\xf0\x9c\x90\x91\x24\x60\x71\xb2\x1c\xea\xed\xe7\x5c\xc2\x32\x59\xd3\xed\x21\xb1\x53\x13\xe2\x15\x0f\xc5\x7a\x37\x80\x25\x47\x99\x2f\x0e\x94\x62\xd2\x9d\x29\xbf\x07\xe0\xe6\x0a\x48\x30\x08\x70\xea\x50\x72\xc8\x00\x84\xce\x20\xa6\x44\x3a\xfc\x10\xf7\xfc\x03\x47\xb4\x12\xa2\x15\x76\x7c\xac\x95\xa5\x15\x8c\x19\xdc\xe4\x55\xc2\xcd\x69\x5f\x9c\xee\x4d\xe0\xf5\x90\xa3\x10\xe3\xc9\x74\x18\xd2\x20\x8a\x8e\xae\x73\x04\x56\x92\x4a\x85\xab\xfe\x1c\xf7\x0c\x02\xd0\x24\x0a\xb9\xa4\x93\x6a\x46\x6c\x0e\x66\xe8\x54\x34\x6f\xa9\x54\xfd\x50\x2f\xcc\x2e\x73\x9d\x6e\x6f\x2c\xf6\x89\x07\x24\x65\xc9\xa4\xcf\x26\x09\x59\xa6\x31\xad\x89\x16\xee\x44\xd9\x11\x83\x05\xa7\x53\x00\x97\xe6\x7c\x14\x0a\xde\x30\x3b\xe9\xb3\x7b\x64\x92\x2b\xb9\x68\x5c\x3a\xe3\xe9\x9f\xd4\x3e\x05\xa7\x41\x27\xa6\x0a\x3e\x37\x0a\xe8\x2e\x19\x58\xf9\x43\x7a\xae\xc0\x28\x1d\x1b\xc0\x29\x9c\x22\x91\x52\x29\xdf\x21\x15\xfc\x97\x92\x64\x9f\x4b\x53\x3e\xe3\x8a\x94\x65\xdb\xfb\x80\x20\x0f\x76\xdd\xde\x52\xc1\x11\x55\xb6\x8d\x2a\xca\x75\x2c\x9b\xc2\x05\x27\xc7\x7a\xa0\xa8\x27\xad\xc3\x97\xf9\x68\xc9\xc2\x3f\x94\x97\x27\xde\x3a\xf9\x78\xb4\xf2\xb9\xa1\x66\x7d\x60\xed\x24\x24\xb8\x36\x8e\x43\xb1\x7c\xbf\x2e\xfb\x87\x85\x5c\xba\xad\x78\x53\xf8\xa1\xfc\xb5\x18\xbc\x85\xcb\x16\xdd\xc3\xd7\x69\xce\x33\x5b\xd6\x9c\x5a\x01\x81\x2c\xaf\xcf\x4e\x94\x22\x5c\xee\x48\x0f\x63\xb5\x8f\x53\x90\x94\x4b\x47\x35\x0b\xa8\x07\xc4\x38\xa1\x4e\xc4\x55\xb1\x4d\x89\xc8\x43\x67\x68\xd8\x03\xb5\x7e\x58\x92\x4c\x5a\x32\x4d\x49\x59\x54\xa9\x28\xef\x9f\xb3\x11\x46\x48\x75\xca\x36\xf3\xd4\x4c\x37\x2d\x5d\x9a\x57\x2a\x27\x54\x47\x1c\xae\xa5\x0a\x61\x11\x27\x18\x63\x13\xbe\xa2\xe1\xec\x70\xae\xa3\x71\xf3\x4d\x85\x73\x12\xe4\xb2\xa4\xb5\x16\x21\x4a\xa5\xdf\x27\x94\x91\x01\xba\x7e\x75\x2f\xee\x5f\x23\x03\x35\xaa\x99\x78\x5f\x7e\x17\xa9\xd0\x47\x0c\x23\xfa\xd6\x80\xa4\xd7\x58\x3c\xb6\x90\xee\xe3\xd3\x16\xe1\xcb\xfa\xfc\x3d\x13\x3b\xaa\x58\x0b\x76\xba\x73\x81\x59\x5d\x16\xec\xf9\xdd\x1e\x17\x04\x11\x1f\x9f\x94\x24\xa9\x7f\x7d\xaa\xea\x55\xf0\x4b\x51\x5e\x0a\x86\x43\x60\x49\x6f\x34\x16\xc6\x18\x58\x99\xbb\x41\x43\xdd\x83\x90\x0e\xe2\x83\x4e\x2e\xca\xa7\x40\x06\x42\x58\xa9\x48\x48\xda\x81\x5c\xe4\x4c\xa6\x27\xb3\xb9\x88\xa5\x39\x6b\x17\xae\xde\x2f\x14\xcb\x88\xe1\xcc\xcd\xcd\x93\x07\x94\x24\x82\x1e\x10\x95\x05\xaa\xc5\x4c\x41\x04\xf9\x62\x9f\x08\xc2\x25\x56\xa9\x14\x4e\x7a\xa1\x33\x8c\x93\x0b\x41\x7f\x94\x91\xde\x1c\x97\x5a\x61\xba\xf8\x28\x48\x39\xd6\x99\x1b\x21\x09\x9a\xf5\x10\xa8\xba\xda\xe9\xf6\x0a\x13\x43\x7e\x55\x29\xa7\x13\x99\xce\xca\x9c\xce\x50\xb8\x5d\xf3\xa6\x50\x37\x73\xae\x2e\x3a\x5b\x57\x72\x52\x05\x09\xe4\x45\x11\x6d\xa6\x83\x58\x97\xf6\xc4\x8c\x24\x5a\x25\x56\x5d\xb3\xec\xf8\x21\x70\xdf\x0b\xc6\xa0\xcc\x8a\x85\xf7\x7a\x6d\xe1\x7e\x3f\x81\x53\xbd\x32\x5d\xb6\x38\xd3\xea\x27\xec\x2f\xe6\xe6\xd5\xb9\x63\x2d\x95\x66\x76\xf6\xbd\xce\x1b\xa5\x0b\x10\x63\x34\x9f\x53\x62\x90\x4c\xa8\x13\xd3\x3e\x91\x93\xa7\x9c\xf5\x4b\xaa\x84\x6a\xc4\x2c\x5c\xfa\x09\x77\x4d\x25\x63\xb3\xb0\xb9\x2a\x49\xf4\x52\x64\x41\xc0\xf8\x2a\x36\xaf\xdf\x53\x19\x1b\xa6\xe7\xb9\x6e\x13\x1f\xf1\xcc\x7c\x5d\xee\xa4\x19\x5d\x93\xd4\xe1\x8b\x48\xbe\xf4\x71\x14\xa5\x3b\x74\x96\xf0\x99\xe5\x0b\x81\xfe\x5c\x6c\x42\xf6\xe2\x7d\x62\x12\x20\xea\x14\x08\x04\x20\x9c\x2e\x65\xb8\x1a\x91\x61\xc1\x2e\xe9\xe1\x50\x1a\xd6\x3c\xa1\x42\x2b\x95\xc2\x67\xa1\xbb\x0d\x75\x81\x34\xae\x42\xbc\x67\x51\xc8\x99\xaf\x4c\x2d\x61\xe4\x90\xd5\xf6\x48\x90\x4e\x12\x92\x64\x13\x5a\x21\xf8\xe3\x9f\x82\x95\x22\x2d\x95\xfb\x52\x79\x3f\xa7\x32\x9e\x51\x4f\xec\x07\x74\x3f\x48\xf1\x20\xee\x8b\x60\xb5\xe4\xb9\x10\x09\x5f\xba\xc0\x92\xd1\xfa\x90\xb2\xcf\x0e\x71\x2e\x17\xef\x8a\x73\x31\xe5\xb4\x00\x56\x7d\x60\xc1\x29\x3a\x08\x07\x6c\x54\xb2\x98\x9e\x73\x68\xe6\x95\x3a\x34\xf3\x7a\x9d\xfc\x87\x38\xa7\xce\x2d\xb8\x81\xc6\xc2\x19\xc6\x94\x61\x96\xa1\xe5\xa8\xbe\xb8\xc2\x71\x21\xd0\x11\x78\x4c\x51\x14\x52\x92\x96\x0e\x8d\x39\x84\xea\xa5\x08\xd5\xf3\x08\xd5\x15\x42\x74\x0e\x13\x9a\xb9\x53\x4b\xcc\x49\xe4\xea\x0b\x74\x95\x0f\x26\xb3\xd3\x21\xdd\x66\x26\xc6\x02\x2d\xdb\x19\x4a\x94\xf5\x99\x65\xf1\xda\xb3\x6d\xa8\x14\x07\xfa\x58\x73\xd9\x82\xca\xcd\x9e\xbb\x19\x6d\x69\xb4\x6b\x5e\xde\x6f\x5b\x29\x35\xd2\x6e\xd4\xb3\x79\x76\x49\x94\x4d\x30\xb1\x71\x1f\x6e\x73\x72\x86\xb6\x8d\x26\xb8\x0f\xa7\xd2\x53\xdb\xc2\xec\xf9\xac\xc3\x7c\xd6\x61\x66\xc2\x16\x4e\xd1\x30\x64\x3c\xcb\xe5\xe2\xc9\xe7\x03\xa1\x39\x52\x82\x4a\xe0\x21\x9c\x79\x6a\x6b\x3f\xdd\x07\x6a\xd6\x58\x7d\x61\x60\xaf\xe6\x57\x21\xc2\xd5\xe3\x30\x8a\xe3\x04\x88\x3d\xd3\x47\xa3\x38\x60\x20\x84\x55\xb6\xca\x87\x7c\x7e\x29\xc6\xe6\x47\x7f\x32\x61\xa3\x9a\x5e\xb8\xeb\x5f\xe9\xcd\x7b\x4e\x97\x2d\x26\x96\x5b\x19\x32\xac\x1f\xd3\x7d\x92\xb0\xb3\x9b\xad\xe6\x0f\x13\x5c\xc4\x59\x4a\xf1\x0c\xdd\x4a\x36\xa9\x6d\x43\x2e\xd4\x3d\xae\x04\x15\xcc\x88\x08\x9f\x30\xcd\x42\xbe\x4b\x0d\x11\x48\x97\x18\x86\xf9\x50\x46\xac\x01\x1d\x08\xaf\x93\xa5\xab\x56\xd9\x64\x40\x4b\xa4\x67\x29\xfd\xc8\x4b\x93\x20\xfa\x08\x3e\x7b\x97\x49\xd7\xed\x61\x8c\xc9\x87\xb4\xc8\x15\xf5\x17\x96\x68\x65\xcd\x61\x67\x6d\xce\x2e\xfb\xf8\x26\x80\x5d\x86\xe9\xef\xf7\x74\xfe\x7b\xec\xe9\x14\xec\xce\x33\x93\x46\x40\x50\x5d\x4c\x03\x5d\xb7\x87\x62\x9c\x74\x3d\x33\x2c\x29\xd7\xed\xfb\xe4\xd2\x84\x73\x57\xa5\x02\x2c\x2a\x20\x6b\x45\x2f\x67\x42\x2e\x69\xb1\x8c\x07\x21\x84\x68\x2e\x45\x5c\xa9\x80\x58\xa7\x88\x21\x84\x28\xdc\x8e\xa7\x0f\x68\xa0\xee\xb2\xb3\x6e\xba\x7c\x28\xd6\x26\xbf\xe7\xed\xdf\xf3\xf6\x7d\xf2\x36\x7e\x60\xcc\x1d\xa6\xb5\x80\xf3\xd2\x87\x9a\x88\xb2\x73\x42\x57\xf8\x90\x55\xd3\x33\xdb\xa2\x9b\x2c\x37\x3d\xab\x4d\x54\xcd\xb4\x5d\x66\xa6\xe7\x15\x4f\x11\x6a\xc5\xfd\x70\xae\xa1\x45\x91\x0f\x6e\x12\x0b\xd3\x1a\xe7\x89\x8f\xeb\xb0\xe5\xf7\xe3\xfc\xbf\xc7\x38\x3f\x99\x9b\xce\xbc\xe9\x1f\xa6\x17\x38\x33\x89\xc1\x78\x1f\x0c\x78\x1f\x7a\xe1\x87\x1a\x33\x17\x84\xe2\xf7\xfb\x49\xe7\xbf\x09\x33\x96\xbd\xb0\xa1\xa6\x9c\x04\x53\x3e\xe5\x84\x98\xe6\xa6\x1c\xc3\x7b\xbc\x9b\x41\x82\x42\xf8\xa0\xe6\x8a\xe8\x63\x54\xf1\xa3\xdf\xab\xf8\xff\x2d\x39\xf2\xbf\x52\x0d\xda\x7a\x60\x5a\x50\xf4\x71\xaa\xf8\xd1\xef\x55\xfc\xdf\xf3\xf6\x7d\xf3\xf6\x83\x53\xf1\x69\xcc\xee\x4b\xa9\x58\xb8\xd9\xb4\xf2\xe1\x37\x9b\x68\xcc\xc4\x7c\x24\x9b\xf0\xe0\x14\x76\xf9\x66\xe0\x7f\xf9\x26\xa4\x7b\xe2\x26\xe4\x47\x5c\xe5\xd0\x98\x3d\xb8\x5d\xc7\xb8\xd4\xd5\xc0\xff\xb7\xe8\xf5\x60\x37\x6d\xe3\xe4\xc1\x51\xef\xf0\x3f\x81\x7c\x4a\xfe\xcd\x50\xc7\xed\xc1\x95\x79\x9a\x79\xbd\x0f\x65\xa2\x73\xf8\x20\x68\x52\xd6\xcc\xff\x54\x63\x4c\x75\xc1\xa6\x52\x29\x3c\x4d\x17\xa6\x57\x38\x4a\x47\xd2\xd4\xdd\xda\x89\xe3\x88\x04\xf9\xbb\x77\xe6\x6a\xcf\xac\xc2\xac\x27\xdc\x8e\xbb\x82\x71\xa1\x4c\xfd\x1e\x8f\xbf\xb2\x52\x30\x6e\x0c\xf7\x8f\x6a\xfd\x78\x40\xf6\x42\x3e\xef\xe4\x1f\x96\x2c\xc6\x7c\xfc\x74\xd1\x6e\x35\x14\x02\xe6\x3c\x94\x05\xbb\xf2\xce\x2c\x23\x87\x2c\x48\x48\x60\x21\x8e\xd6\x45\x81\xd6\x22\xeb\xb6\x41\x38\x78\x9c\xa6\x24\x61\xea\x00\xf4\xc3\xb8\xdd\xc8\x6a\xc9\x9d\xad\x67\x81\x16\x74\x86\x49\xbc\x77\x85\x1c\xb2\x87\x13\x12\xe4\xcc\x66\x88\xac\xf3\xf1\x81\x95\xb7\xe1\x53\xa1\x16\x54\x81\x29\x61\x93\xf1\x39\x53\x9c\x38\x1c\x7f\x2c\xa0\x83\x88\x24\xc0\xea\x0b\xa3\x00\x0b\x65\x36\x03\x69\x7f\x44\x38\xf9\x9e\xe5\xb4\x7b\x66\x3c\x08\x18\x19\x3c\x2c\x9a\x04\xa7\xbc\xb9\x4f\x13\x3a\xc8\xdf\xd6\x3f\x73\x3b\x27\xa2\xac\x0c\x11\x65\x5e\x07\x16\x44\x8b\xfa\x01\x9c\xa2\x30\x7d\x36\x4c\xc3\x9d\x88\x9c\x0f\x07\xd2\x86\x41\x75\x46\xbc\xc3\xfb\x81\xb7\xc2\x24\x29\x98\x74\x48\xbc\x0e\x02\x1d\xc9\x15\x2d\x43\xa5\x2c\x0b\xd4\xa3\x22\x99\x50\xd3\xfa\x27\x69\x9f\x00\x2b\x11\x6d\xcd\x53\x87\xc5\xbb\xbb\x11\x11\x59\xc3\x28\x64\x47\x7c\xe4\x2f\xa6\xd8\xcc\xa1\xe6\x42\x3b\x8d\x94\xd0\xc1\x7c\x6e\x24\x7c\x2c\x28\x3a\x20\xf1\xd2\x25\x3a\xa1\x33\xe7\xee\x69\x48\x7d\x2c\xab\x74\x27\xa4\x03\xf1\x7a\xe9\xd2\x2c\xdf\x39\x22\x93\xbe\xfd\x1c\xf3\xf1\x7a\x10\x46\x91\xb2\xdf\x50\xac\xad\xc8\x30\x47\xe0\x7c\x31\xc3\xa1\x28\x67\x2a\x30\x2d\x6b\x53\x9e\x6f\xf4\xe4\x47\xe6\xce\x79\x11\xc3\x5a\xc2\x20\x8a\xdd\x4d\xba\x45\xc4\x7c\xc8\xba\xb4\x97\x3b\xf7\xa5\xbd\x25\x43\x3e\x59\x7c\x9e\xff\xba\xd6\x7e\xae\x7a\xab\xa7\x3d\x5a\xcd\xdc\xb7\x9b\x5b\x43\xcc\x6c\xd5\xaa\x70\x7d\x2b\x60\x93\x6d\x65\x9b\xb7\xb6\x0d\x69\x97\xf5\x30\xe9\xb2\x4c\xc7\xd5\x6a\xb7\x2c\x98\x0f\x5d\x40\xe0\x14\x30\x08\xe1\x14\xcd\xf2\x4f\xb9\x71\xd8\x1c\x8b\x2e\x95\xf0\x32\xd1\x46\x05\xb9\x60\x4c\x10\xd1\xd7\xa2\x72\xfd\x92\x90\x61\x42\xd2\x91\x78\xe1\xab\x7c\x18\xce\x70\xea\x5c\x09\xbb\x44\xbd\x25\x08\x08\x9f\x5c\x59\x49\x25\x69\x96\x44\xb0\xea\x82\xf1\x7e\x52\x8b\xcd\x53\x6f\x4b\xa4\x68\xd4\x46\x4a\x8c\xda\x34\x9a\xe5\xf5\x00\x86\xc4\xee\xf9\x54\x70\x6d\x09\x3a\x82\x37\x4f\x42\x46\x70\x0f\x47\x45\xcb\x8d\x19\x7a\xa8\x81\x59\x4e\x09\x19\x49\x8e\x8f\x2d\x69\xe4\x32\x3b\x98\x3e\xda\x3c\xe1\xb0\xd8\x4c\x07\x79\xd1\x5f\x98\x34\x26\x54\x1b\x32\x3f\xae\xd6\x6d\xe5\x53\x07\xd4\x97\x12\x66\x6b\x29\x5a\x37\xcd\x4c\xe0\xc6\xb0\x89\x87\xd5\xe6\xe7\x6e\x64\xe5\xe6\xf4\x07\xeb\x96\xec\x14\x43\xd6\x0f\x6b\xd8\x74\x55\x2f\x6f\xd3\xb2\xdb\x1c\x53\x94\x9f\x84\xf3\xc3\x85\x16\x8d\x07\xe7\x88\x4e\x32\x3d\xb4\x38\x91\x53\x3e\x1c\x75\xa5\x8f\xc6\xc9\x62\x4f\x0d\x06\xb3\x2e\xe9\x4d\xd1\x6c\x0d\x27\xb8\xe2\x28\xe4\xc4\x0c\xb1\x29\x4a\xc3\x5d\x1a\x44\x33\x0d\xc8\x6c\x91\xe6\x44\x71\xa8\x24\x60\xb2\x5d\xef\x24\xb5\xba\xef\x42\x14\xe3\xfa\x66\xbc\x95\x08\x7b\xa4\xb0\x1b\xd7\xea\x79\xa1\x1c\xf7\x96\xb2\xf6\xca\xca\x34\xd5\x75\x30\xea\x12\x44\xff\xab\xe5\x71\x28\xe4\xf1\xfc\x20\x29\xf4\x42\x61\x64\x14\x7a\xa1\x30\x36\xf6\x62\xde\xf6\x32\x27\x5b\x2a\x26\x0a\x77\xee\xc3\x05\x9d\xbc\x63\x99\x51\x31\x4c\x2f\x8a\x62\xe4\x9d\xd7\xf9\xe0\xec\x8e\x29\x71\xc2\xf4\x11\x32\x8c\x13\x02\x28\xec\xd4\x3c\x9f\x07\x5c\x0e\xf6\xc4\xa7\xeb\x7b\x4b\x73\x1e\x90\x1e\xd6\x1d\xb7\x3c\x4e\xe2\xfd\x70\x20\x5d\x21\xfd\x2f\xae\x9f\x07\x09\xf9\x5f\xcb\x81\xd8\x04\x62\xcb\xb2\x21\xcb\xd2\x9a\x3a\xb5\x3e\xc4\x5a\x2a\x43\x3c\xf3\x21\xa5\xaa\xc1\x34\x17\x5b\x16\x96\xcb\x11\xc5\x94\xcc\xef\x0d\x16\x57\x7b\x4a\xe4\xe7\x0c\xb5\x8c\x51\xf6\x5c\xa7\xf1\xae\xf9\xd8\xd7\x1c\x29\x89\x86\x8e\xac\x70\x0a\x91\xb2\x2f\x77\x0e\xc8\xce\x38\xe8\x5f\xfb\xc3\x34\xa6\xe3\xab\x62\xdd\x78\x35\x98\xb0\xf8\x6a\xb8\xc7\x71\xb9\x8a\xcf\x96\xec\xf8\xb8\xdb\x83\x72\x7f\xb1\xdb\xad\xf7\x50\x77\x56\x0f\x2c\x34\x42\x8e\x72\xce\x00\xe7\x03\x46\x50\x68\xc0\x8c\x05\x63\x99\x11\x05\x39\x5f\x68\x69\x76\x71\x6f\x99\x00\x66\x72\x01\x9b\xf1\x75\x86\x79\x51\x55\x1a\xce\xe1\x14\xa5\x4e\x9f\x84\xb9\x17\x7e\x69\x2e\x3b\xcd\xb2\xd3\x9a\xc7\xf3\x03\x8a\x3c\x88\x38\x97\x22\x3a\x45\xa9\x93\xc4\x13\x5a\xf6\x0e\x6b\x2a\x35\x42\x59\x78\xee\x22\x33\xa9\xb1\x2d\x5a\x23\x1d\xe6\x8b\xec\xf1\xfc\xc3\xc5\x99\x5c\x04\x24\x87\x3d\xd1\x9e\x64\x68\xc7\xf3\x73\x96\x7f\x14\x42\x44\x04\x26\x7c\xc1\x91\x6b\x46\xe1\x01\x64\xdc\x15\x46\x98\x06\x21\x61\x64\x28\xcb\x0b\x8b\xe5\x85\x10\xad\x00\xba\x95\x54\x2a\xe1\xb6\x9b\x3d\x03\xbb\x34\x88\xaf\x07\xea\xd5\xda\x1c\x56\x54\xd1\x24\x94\x34\x99\x1e\x8c\xc2\x88\x80\x78\x8b\x56\x2a\x74\x2b\x31\xad\x0e\x38\x82\xf2\x7d\xe0\x32\x42\xc7\x05\x5d\x89\x4b\x94\x6d\xcc\x20\x97\xa6\x9b\x04\x30\x88\x56\x78\xf8\x26\xe4\xcb\x59\x76\x25\xdc\x23\x80\xd5\x3c\x3e\xcf\x65\x54\x93\x2f\xd1\x93\x6d\x4c\x60\x38\x04\xc9\x96\x2b\x73\xdb\x76\xb2\x85\xdd\x4d\xf9\xc1\x57\xfd\x35\x4f\x94\x46\xe0\x26\xdc\x14\x7e\xb3\x44\x4c\xad\x96\x6c\x17\x92\xe5\x52\xf1\x15\x02\xad\x54\x40\x2a\xdf\xa9\xce\xd9\x8f\xa3\x38\x73\x25\x67\x30\xb3\x19\x44\x61\xf6\x15\x73\xba\x24\xfc\x4f\x08\x51\xbe\xd7\xc4\x19\x1e\x5f\x7c\x38\x64\x9f\xe4\xdd\xfa\xe5\x76\x67\x71\x2e\x03\x81\x28\x4c\x1f\xe5\x0a\x03\x11\xc2\x95\x6c\xbb\x1d\xb2\xed\x75\x34\x59\x41\xd0\x99\xbf\xb9\xba\x1c\x00\x06\x3f\x41\x30\x76\xa7\x25\xf7\x5a\x97\x55\x93\xb8\x44\x52\xa9\xa0\x2f\x9d\x6a\xf1\xb5\xe2\x54\xda\xef\xc6\xf9\x7b\x31\xd3\x99\x99\x81\x64\x2d\x25\x36\x83\xb3\xd1\x9a\x91\x6b\x64\x0a\x97\x82\x8f\xd8\xd2\x22\x93\x64\xbc\x90\xcb\xca\x56\x09\xac\x92\x3c\x1a\x42\xac\xb0\x5c\xef\xd8\xb4\x24\x81\x92\xcc\xb4\xc6\xe0\x2a\x99\x42\x3f\x90\x44\x50\x97\xb7\x03\x34\xc1\x20\x90\xe3\x0b\xb5\x49\x13\xa2\x08\xb7\xdd\xe6\x3a\x69\xa1\x7e\x9e\x3c\x24\x4f\x0f\x52\x13\x6b\xe2\x8b\x61\x14\x85\x29\xe9\xc7\x74\x90\x8a\x45\xcd\x09\xf4\xf3\x48\xa3\xba\x88\x86\x80\xd5\x08\x5c\xf5\x48\x63\x5a\xe6\xc8\x58\x54\xf5\xcc\x95\x73\x97\x75\x45\x53\x88\x86\xb8\x8f\x46\x18\xf4\x15\xde\xf7\x85\x67\x8d\xa3\x22\xc2\x2f\x9f\x0d\x75\x56\x9d\x9c\x88\xf8\x64\x31\xda\x17\x43\x3a\x61\x44\xe0\x0c\xd1\x18\x8f\xd0\x00\x83\xd1\x03\x42\xba\x56\xac\xa1\x04\xc9\x42\x2b\x1a\x6d\xd2\x3a\xa5\x07\x78\x92\xc5\x6d\x79\x2c\x9e\x24\xaa\x25\x7b\x78\x80\x8e\x30\x18\x2c\x6e\x89\x4c\xec\x22\xf1\xaf\x1c\x31\x21\x63\x45\xc9\x02\x82\x0b\x87\x18\x47\xae\x06\x18\x4f\xc9\x1b\xf3\x72\x4c\x89\x7c\x12\x5f\xd3\x60\x36\x94\xd3\x62\x75\xbd\xdd\x3c\xa9\x35\xb2\x4e\x79\x09\x6a\x1f\x1f\x65\xd3\xee\x6e\x2e\x65\xc9\xa8\x14\xf9\x58\xae\x04\xfd\x71\x04\xa0\xbd\x56\x23\xf0\x13\x6b\x5c\xc7\xfa\x90\x24\x58\x3b\xb1\x87\xee\x9f\x08\xd1\x14\x4e\x8f\x64\x2f\x89\xf1\xbe\x83\x77\x81\x0b\xd1\x55\xbc\x0b\x3c\x88\x0e\xf0\x2e\xa8\x43\x74\x01\xef\x82\x06\x44\x87\x78\x17\x34\x21\xba\x8c\x77\x41\x0b\xa2\x27\xf1\x2e\x68\x43\xf4\x30\x06\x3b\xaa\x97\xaf\xaa\xdf\x03\xf5\x7b\x41\xfd\x1e\xaa\xdf\xcb\xea\xf7\xc9\xc5\x5c\x21\x5a\xc9\x35\x8c\x33\xd2\xe7\x62\x4c\xd9\x48\x12\x48\x82\x8b\x99\x64\x99\xe5\x52\xd5\x0a\x59\xbc\x7a\x55\x12\xee\xd1\x49\x14\x3d\x4f\x82\x44\x27\xc8\xbe\xe1\x09\x43\x58\x96\xc2\xf9\xe4\x1a\x7e\x18\x5d\xc4\xe0\xe1\xc5\x0d\x94\x89\x5d\x74\x1f\x6d\x34\x48\xcc\xa0\x74\x4a\x4b\x17\xb7\x65\x71\x53\x72\x69\x20\x5c\xba\xb8\x78\xca\xca\xa6\xa8\xe2\xdc\xa5\x26\xac\x92\x61\x61\x8a\xce\x4f\x58\xc5\x3a\xe5\xf4\x25\xc7\x46\x8e\x4e\x27\x8f\x95\x6c\x8a\x33\x05\xcd\x14\x2b\xe7\x3c\x98\x9b\xd4\xae\xe0\x8b\xe8\x1c\x06\x17\x17\x77\x53\x6e\x36\x59\xd8\x2f\x0f\x40\xfa\x3f\x73\xe5\x5c\x61\x02\x78\x1a\x9f\x43\x4f\x61\x70\xee\x44\xc4\x74\x8e\x13\x58\xe6\x81\x89\xf4\x67\xae\x9c\xcb\x49\xf5\x4b\xf8\x29\xf4\x22\x06\x4f\x9d\x88\xde\x19\x38\xfa\x99\x2b\xe7\x32\xc1\xa6\x3f\x4e\x16\xef\xa7\x8a\x6b\x53\x8c\x94\xd8\x8f\xe3\x17\x33\x89\x7d\xfe\x64\x89\xad\xb3\xb2\x62\x39\xb9\xef\x39\xd1\xfd\x91\xda\x79\xb2\x0c\x97\x32\xf9\xc5\x9c\x4c\x7e\x02\x9f\xe7\x32\xf9\x51\x7c\x9e\x8b\xc6\x97\xf1\x79\x2e\x93\x1f\xc3\xe7\xb9\x4c\x7e\x04\x9f\xe7\x32\xf9\x19\x7c\x9e\xcb\xe4\x97\xf0\x79\x2e\x93\x3f\x83\xc1\x13\xaa\x8f\x1e\x55\xbf\x2f\xab\xdf\xc7\xd4\xef\x23\xea\xf7\x19\xf5\xfb\xd2\x89\x7d\x5a\x10\xcb\x67\x6e\x7b\x4e\x38\x9b\xaf\xd3\xa4\x56\x96\xb0\x36\x9b\xd1\x48\xe9\x67\xae\x9c\x9b\x15\x6e\x85\xa0\x13\x04\x5c\x56\x1c\x67\x92\x67\xf1\x67\xd0\xf3\x18\x7c\xe6\xe4\xe1\x36\x23\xb1\xcf\xdc\xfc\xa2\xdc\x2e\x60\x78\x3a\x11\x4e\x6c\xe0\x89\xed\x2b\xca\xf0\xe7\x1f\xa4\x0c\xcf\x97\x3e\x2b\xc6\x0b\x35\xe7\x25\x79\x91\x84\xa7\x8e\x9e\x4c\x9e\xe7\x4b\x9c\xaf\x62\x5e\xaa\x7f\x12\x3f\xbf\xf4\xbc\xea\x4a\xea\x0c\x00\x43\x56\xbf\xec\xea\x78\x3a\x85\x3a\x9e\x9e\x12\xbf\x5b\x16\x3f\xcc\xe2\x93\x53\xe2\x07\x65\xf1\xe3\x2c\x7e\xa7\x2c\x7e\x2f\x8b\x0f\xca\xe2\xf7\xb3\xf8\x17\xcb\xe2\x77\xb2\xf8\xd1\x29\xf1\xa4\x2c\xfe\x6a\x16\x1f\x96\xc5\x1f\x66\xf1\xc3\xb2\xf8\x6b\x59\xfc\xb5\xb2\xf8\x2b\x59\x7c\x5c\x16\xff\x74\x16\xbf\x57\x16\x7f\x29\x8b\x8f\xca\xe2\x1f\xcf\xe2\x27\x65\xf1\x4f\x64\xf1\xe9\x29\xf1\xe3\xb2\xf8\x47\xb3\x78\x56\x16\xff\x48\x16\xff\x52\x59\xfc\xb3\x59\xfc\x7e\x59\xfc\x27\xa7\x33\xc2\x61\xc1\xde\xe0\x6c\x92\x9c\xcf\x7f\x9c\xdb\x89\xc5\x14\xd1\x82\x47\x12\x92\x7b\x4a\x28\xcc\x1b\x54\x16\x4f\x53\x72\xc5\xe5\xee\x40\x8b\xb7\x06\x20\xed\x26\x3d\xcc\xba\x49\x6e\xf3\x3e\xb7\x2b\x09\xaf\xab\xcd\x13\xeb\x85\x17\xd2\x2a\xe8\xda\xb5\x5e\xe7\x85\x17\x06\x36\xe4\x9f\x16\x4a\x67\xc2\xab\x2f\xbc\xe0\x88\x78\xd0\xf1\xbb\xe4\x42\x2f\x4b\xdf\x51\x39\x26\xf7\x91\xe3\x13\x32\x4b\x84\x57\x3f\xf7\x3f\x40\xd7\xad\x6d\x04\xb5\x61\xef\x7a\x63\x0a\x1f\x5a\x45\xfd\x62\x60\x5b\x04\x0e\x71\xe1\xd9\x98\x64\x77\xe7\x85\x17\x80\x65\x77\x03\x14\xa0\xa0\x67\x5b\x2f\xbc\x00\x1f\xb2\x20\x1a\x2d\x48\x36\x41\x13\x34\xc9\x92\x8d\xe7\x92\x05\xb9\xe2\x50\x9a\xa5\x1c\x2c\x4a\x29\x4a\xcc\xa7\xdc\x2b\xa6\x1c\xa5\x91\x4c\x98\x16\xab\x3e\x9a\x4b\x16\xe4\xd2\xe5\x0b\xdc\xc7\xd7\x83\x28\xec\x93\x9d\x68\x42\x7c\xaf\xb5\xb6\x51\x6f\xac\x37\x50\x40\x59\xf8\xd2\x84\x1c\x8c\x42\x46\x7c\xaf\xdd\x6c\x36\x1b\x6b\x2d\x14\xbc\x34\x09\xfc\x76\xab\xd5\x90\xe0\x5e\x90\x84\x94\xf8\xeb\x8d\xf5\xf5\x56\xbb\x89\x82\x97\x27\x89\x2c\xa2\xe9\xad\xb5\xd0\x0e\x09\x77\x79\x5e\xcf\xdb\xa8\xb7\x5d\xb4\x13\xa6\x2f\xf1\x1a\xda\x6b\x6b\x6e\xbd\xd9\x44\x3b\x51\xd0\xbf\xe6\xbb\xfc\x97\xf6\x47\x64\x10\x44\x7b\x31\x1d\x88\xf8\xba\xdb\x6c\x21\x81\x4f\xbd\x25\x81\xfd\x30\x8e\x08\xf3\x37\xdc\x56\xab\xee\xd6\xd1\x4e\x12\x1f\x50\xdf\x73\xd7\xeb\xcd\x7a\xa3\x89\x76\x26\x49\x74\x74\x10\xc7\x03\xdf\x6b\xb6\x36\xda\xf5\x86\x87\xfa\xc1\x80\x30\x51\x44\xbb\xde\x6e\xb7\xea\xeb\xa8\x3f\x0a\x12\x96\x90\x49\x2a\x11\x6e\xb4\xea\xa8\x3f\x8a\xfb\xb1\x70\x21\xec\x35\xd6\xd6\x37\x9a\x6b\x2e\xea\xc7\x49\x10\x71\x24\x9a\xcd\xfa\x5a\x9d\x7f\xd2\x61\x14\x1f\x90\x44\x96\xd5\xda\xf0\x36\xd6\x3d\x11\x9c\x86\xd1\x35\x81\x6d\xab\xb1\xbe\x8e\xfa\x49\xb8\x97\xc6\xd4\xf7\x9a\xcd\x7a\xc3\x73\x5d\xd4\x3f\x0a\xa8\x22\xd5\x20\x48\xae\x49\xea\x36\x36\xc4\x87\x88\x6b\xb4\xd6\xea\x0d\xf1\xb9\x1b\x47\x03\x42\x13\x8e\x7e\xdd\xdd\xa8\x6f\xa8\x54\xbb\x49\x70\xe4\x7b\x9e\xe7\x6d\xb8\xde\x9a\x0a\x21\x84\xfa\xf5\x56\xdb\x75\xf5\xf7\x4c\x8a\x6b\xa3\xe0\x5a\xe8\x7b\xf5\x66\xa3\x51\x6f\xc9\x62\xf6\x82\x5d\x42\x59\xe0\x6f\x78\xee\x46\xbb\x29\x6b\x8c\xa3\x70\x9f\xc8\xd2\x5a\xad\x8d\xb5\x8d\x0d\x99\x34\x16\xf3\xa5\x68\xfd\x5a\xab\xee\xaa\xb0\xfe\x28\x1c\xf8\x9e\xeb\x36\x5d\xd7\xab\x8b\xb0\x84\x0c\x44\x71\x2d\xb7\x29\xbe\x53\xd1\x77\xbe\xd7\x6a\xb8\xeb\x4d\x4f\xe6\x4b\x49\x20\x2b\xd8\x68\x7a\x1b\x1b\x9e\xac\x40\x78\xb4\x14\xa4\x68\xae\x35\x9a\x8d\xe6\x5a\x16\x2a\x5a\xcb\x29\xd7\xdc\x68\xe5\x43\x49\x31\x94\x4d\x92\x97\x26\x71\x98\x12\xbf\x55\xdf\x68\xca\x30\xcd\x1c\xed\x8d\x8d\x16\xa7\x1d\x21\xe3\x71\x48\x45\xe7\x78\xed\x0d\x5e\x09\x21\xe3\xf4\xda\x91\xac\x78\xc3\x6b\x79\x68\x10\xee\x89\x0a\xdb\x1b\xee\x7a\xbd\xdd\x92\xdf\x24\xf7\x1d\x0f\x76\x55\x9f\xd7\x5d\xb7\xe1\x6d\x6c\xa0\x61\x98\x90\x9d\x24\xec\x5f\xf3\x3d\x4e\x20\xaf\xd9\x46\xc3\x88\x73\x8b\x1e\x23\x6b\x6b\xad\x8d\xba\x8b\x86\x71\x42\x52\xa6\xba\xaa\xde\x6e\xac\x37\xeb\x68\x38\xe9\x8f\xd2\x30\x10\x18\x79\x1b\x8d\x16\xda\x0d\x42\x9a\xee\xc4\x49\xcc\x19\x66\xad\xd9\x6c\xbb\x68\x77\x14\xa7\x4c\x97\xd5\xf0\xda\xed\x35\x0f\x71\xce\xe0\x99\xda\xed\xb5\xba\x8b\x72\x7c\xd2\x6c\xd4\x37\x3c\x1e\xc4\x1b\xb1\xde\xac\x7b\xbc\x2b\x64\x9d\x8d\xfa\x5a\x7b\x5d\xc2\x47\x24\x8a\xe2\x03\xdf\xf3\x9a\x6e\xc3\x6d\xb5\x90\x68\xa2\x4e\x3d\x8a\x29\x39\x1a\x90\x03\x35\x60\xdb\x2e\x1a\xc5\x4c\xd3\xad\xb1\xbe\xd6\x74\x51\x48\x07\x61\x40\x79\x6f\x7b\x8d\x66\x6b\xbd\x55\x6f\x8a\xa0\xdd\x58\x50\xb1\xd1\x70\x51\xb8\x1f\x27\x47\xa2\xed\x6b\x75\xd7\x45\x8a\xfd\x5a\x6b\xeb\x6b\xed\xb6\x8b\xa2\x60\x5f\xda\x9d\x79\x2d\xaf\x51\xe7\x9c\xa1\x43\x76\xa2\x49\x3a\x12\xf9\x1a\x8d\x76\x0b\x45\xc1\x01\x95\xd8\xaf\x7b\x1b\xee\xc6\x5a\x1b\x45\x64\x2f\xa6\xfd\x51\x38\x1c\x72\xc6\xe2\xb4\x5d\x5f\x6f\xa1\x28\xdc\x1d\xc9\x51\xed\x79\x8d\x8d\x46\xbd\xd5\x94\x41\x6a\xd4\xb6\xd6\xda\x5e\xab\xd1\x56\x61\x7c\x90\x79\xcd\xb5\x66\xab\xb5\xb1\x21\x83\x0c\x01\x35\x61\xda\xcd\xe6\x7a\x9d\xa3\x25\x62\xc5\x78\x6b\xac\xaf\xd7\x1b\xf5\x86\x0e\x92\x1c\xbc\xb1\x5e\x6f\xb5\x4d\xd0\x6c\x2a\x4d\xb4\xd6\x7a\xb3\xad\x70\xd4\x23\xa2\xbd\xd6\xaa\xaf\xb5\xeb\x2a\x50\x0f\x89\xba\xd7\xac\xaf\x6f\xa8\x6a\x35\x63\xae\x6f\xb8\x6e\xa3\xa9\x6a\xc9\x86\xc4\xda\x7a\xa3\xb1\xd6\x6a\x14\x82\xc9\x6c\x30\x23\x24\x52\x64\x69\xad\xf3\xa1\x25\xc3\x4d\x33\xd7\xd6\xd6\xbc\x75\x1e\xb8\xc7\x65\x58\x7d\xdd\x15\xa0\xe2\x97\x46\x7d\x83\x77\x65\x14\x52\x42\x05\x49\x5a\xed\x35\x17\x69\xb1\x61\x58\x76\x2f\x48\xe2\x98\x0a\xd9\xd9\x76\xd7\x85\xfb\xc0\xc9\x5e\x6e\x16\x68\xaf\x35\xd6\x1a\xf5\xba\x8a\x50\x43\xa7\xa5\x3e\xb5\x14\xa9\xd7\x3d\xce\xd9\x2a\x74\x3c\x49\xc6\x11\xf1\x37\xda\xed\x7a\x7b\xbd\xa1\x02\x0d\x95\x1a\x1b\x6b\xeb\xee\x86\x4e\x9b\x89\x8e\x75\x77\x7d\x6d\x6d\xc3\xd5\xe1\xe3\x24\xa4\xbb\x32\x47\xbb\xe9\xb5\x9a\x2a\x3c\x13\x14\xcd\xb5\xb5\x7a\xc3\xd5\xe9\xa5\xb0\x90\x3c\xed\x36\xd7\xbc\xb5\x06\xda\x0b\x07\x34\x63\xac\x76\xb3\xb9\xe1\xd5\xd1\x5e\x48\x19\x57\x7e\xf6\xf8\x0c\x56\xf7\xd6\x5b\x2e\xda\x0b\x53\x76\x94\xc4\xa9\x9e\xc4\x78\xd6\xb8\xdf\x0f\xd2\x90\xaa\x90\xfa\x06\xa2\xc1\x7e\xf0\x62\x6c\x64\x42\x7b\xbd\xbd\xde\xe2\x81\x47\xbe\x57\x5f\x47\x71\x34\x88\x82\x3e\x8f\x69\x37\x1b\xad\x16\x0f\x08\xf7\x89\x18\x93\x8d\xb5\xb6\xfc\x1a\x24\xc1\x8e\xbf\xe6\x36\xd7\xd7\x1a\x1b\x28\x13\xc9\xad\x06\x97\x2e\xf2\x5b\xa0\xdf\x5e\xab\x6f\x34\x9a\x4d\xa4\x69\xdb\x6c\x78\x2d\xde\xf5\xe3\x20\x22\x39\x51\xd1\x6a\xb7\xd6\xbc\x86\x2b\x83\x05\x99\x3c\xd7\xad\xb7\xd6\xd7\x65\x50\x46\x27\xcf\x6b\xd5\x37\x36\xda\x6d\x11\x9c\x23\x53\xb3\xb1\xee\xd5\xdd\x06\x1a\x07\xe3\xe0\x28\x38\x18\x85\x63\x39\x70\xdd\xb5\x35\x34\x26\x41\x7f\x34\x9e\x0c\x87\xa2\xad\x6b\xed\xb5\x06\x1a\x93\x64\xc2\xe5\x45\x7b\x7d\x63\xc3\x43\x7a\x6c\xb4\x3d\xb7\xd1\x42\xe3\x68\xb2\xc7\xe7\xe8\x7a\xb3\xdd\x58\x43\xe3\xf8\x60\xa0\x84\xac\xe7\xf1\x99\xd5\x73\x91\x62\x09\xce\x65\x6b\x8d\x36\x4a\xc8\x0e\xe9\xf7\x03\x15\xda\x6e\x6f\xac\xad\xaf\x7b\x48\x35\xdf\xf3\xda\xeb\x2e\x4a\xe2\xf4\x48\xe9\x03\xf5\x46\x6b\xad\xe5\x6d\xa0\x24\x3e\x0a\xe4\x78\x68\xd6\xd7\xdb\x7c\x9a\x48\x83\xc1\x20\x22\x32\xd9\x86\x57\x5f\xf3\xd6\xd7\x90\x19\xa3\x4d\xaf\xbd\xbe\x5e\x47\x69\x40\x07\xba\xa4\xb6\xdb\xa8\xaf\xb7\x9b\x28\x63\x46\xb7\xe5\x36\xea\x6b\x3c\x20\x1d\x91\x48\xa8\x08\x6b\xcd\x76\x63\x1d\xa5\x21\xa1\x34\xf0\x3d\xb7\xe5\xb6\xd7\x36\xd6\x50\x1a\x0a\xa7\xbf\x5e\xbd\xdd\xa8\x73\xa9\x51\x18\xdf\x0d\x0f\x65\x8c\xdc\xde\x58\x73\xdd\xb6\x0a\x91\x83\xbd\xb1\x56\xdf\x68\x36\x51\x6e\x9c\xeb\x10\xaa\x06\x72\x6b\xa3\xe1\xa2\x02\xd3\xb7\x9a\xee\x1a\xca\x44\x40\xb3\x5d\x77\x37\xd6\x5d\xc4\xb8\xf8\x6b\xf0\xc1\xc2\x3f\x48\x10\xf9\x8d\xfa\xfa\x46\x5b\x98\x4d\xb1\x88\xf8\x5e\xb3\xee\x36\xd7\xd7\xd7\x11\x8b\xf7\x02\x16\x0b\xa9\xbf\xe6\x6e\xb4\x50\x6e\xe4\xd4\x5b\xde\x7a\xab\x8d\xd4\x04\xeb\xb5\xda\x0d\xcf\x5d\x6f\xa3\x83\x11\x09\x98\xd0\xec\x1a\xbc\x45\xd9\x04\xb8\x56\xf7\x5a\xf2\x33\xdd\x8b\xaf\x69\xe5\x6f\xbd\x85\x72\x92\xa8\xbd\xd1\x76\xd5\xb7\x66\x47\xaf\xd9\x72\xd7\x9a\xd3\x99\x53\x15\x61\x3c\x60\x6c\x05\x30\x20\xb6\x65\x41\x87\x25\xe1\x1e\x80\x0e\x8b\x9f\xe0\x5a\xd9\xb9\x20\x25\x00\x22\xc0\x70\xe4\x90\x43\xd2\x07\x04\xc2\x0e\xd7\x7c\x0f\x01\x60\x58\x78\x02\x7a\x9c\x32\xf1\x8c\x0b\xf2\xda\x10\x6e\x6f\xaf\x57\xbc\xd6\x31\xdb\xde\x6e\x56\xea\x4d\x17\x09\xc0\x6b\x1d\xd7\x9b\x6e\x85\x21\xe0\xb5\x2a\x0c\x6e\x6d\x35\x8f\x39\x80\x3c\xf1\xd8\x55\x3f\x2b\x78\x07\xcc\x97\xc8\x93\x0c\x67\xeb\x16\xb1\xac\x5b\xe7\x7f\x1a\x3d\x55\xd0\x68\x36\x55\xbd\xd5\xaa\xf2\x94\xab\x5c\x5f\x94\x1f\xf5\xfc\x47\x43\x7e\xc8\xdc\xe3\x2c\xf7\xd5\xd9\xf2\x59\xb7\x29\x1f\xe6\x1a\xe4\x13\x9d\xb1\x78\x93\x79\x2f\xcb\xfc\x64\x56\x83\x4a\x53\xc0\xe5\xe8\x0c\x29\x65\xb1\xfb\xce\x28\x48\x9f\x3c\xa0\x99\xe1\x0d\xa7\xe2\x7e\x97\xf4\xa0\x6f\x09\x1f\xe7\xe3\x20\xd1\xaf\xa9\x28\xb2\x5c\x0a\x2e\x21\xfd\xdf\x55\x7b\x3a\x86\x33\x76\x72\x7b\x56\x32\x39\xd9\xde\xf6\xda\x15\xbe\x50\x20\xbc\x77\x39\x50\x6f\xb5\x2a\x04\x79\x30\xcb\x76\x55\x59\xc7\x24\x99\x99\xc2\x16\x76\x2b\x15\x40\x30\xc3\x14\x5f\x0a\x2e\x41\xa4\x8a\x53\xe9\xb2\xbc\x07\x33\xcf\xeb\x99\x47\x04\xe3\xe3\x63\x40\x30\xe7\x55\x88\x34\xf2\x80\x60\xe2\x24\xbb\x3b\x00\x42\x27\x41\xc4\xd9\x45\xc4\xd9\x41\xc4\x89\xc7\x41\x3f\x64\x47\x50\xb8\xc5\x3f\xcc\x0a\xbf\x30\x87\x98\x87\xf1\x9c\x3d\x5f\xe7\x40\x38\xd3\xcb\x21\xa8\x5e\x52\xea\x78\x7e\x1e\xd5\x0c\x7d\x69\x3f\x99\x60\x5b\x3d\x79\xb1\x8b\x6d\x26\xa1\x1d\x6c\x53\x65\x32\x2e\x71\xc2\x76\x92\x95\x70\x39\x77\x43\x47\xef\x05\xee\x05\x87\xc0\x95\x16\x1b\x7b\x21\xe5\x7c\x25\x3f\x84\xbd\x0f\x20\xf0\xf8\xd8\x85\x10\x6e\x79\xed\x8e\xe5\x5a\xbe\x65\x41\x9b\x38\x4c\xbd\x38\x06\xbc\x76\x0e\xbf\x27\x4b\xbb\xa1\x63\x3a\xc1\xa7\x5b\xd8\x3d\x3e\xa6\xdb\xd8\x13\x81\x3c\x88\xe9\x8e\x32\x9d\x74\xad\xa4\x93\x1e\x3e\x1b\x1d\x67\xcc\x16\x0b\xdd\x79\x0d\xe6\xf8\xea\x1a\x20\xce\x08\x11\x27\x45\xc4\x89\x72\xfd\xb7\x34\x9b\x2b\xcf\x04\x2b\xa4\x50\xc4\x5c\xda\x6b\xb3\xcf\xf9\x15\xb8\x65\x95\x13\x96\x62\xe2\xec\x0a\x28\xc1\xc4\xd9\x11\x50\x88\x0d\xed\x65\x13\x51\x90\x75\x8c\x0a\x49\x39\x79\xd0\x04\x07\xb5\x10\x45\x18\x04\x76\x08\x57\xeb\x5a\x78\x4e\x3a\x20\xc5\x8c\xd3\xa3\x03\x68\x2d\x81\xab\x13\xbb\x5d\x05\x74\x2b\x81\x3e\x95\xa1\x49\x8d\xf1\xd0\xba\x0f\x58\x8d\x72\xa8\x89\x26\xab\x38\xda\x72\x5a\x9d\xc0\x0e\xfd\x7a\x8d\x97\x9b\x56\x71\xdb\x85\xfe\x04\x47\xdb\x6e\xa5\x12\x6d\x79\x1d\xd7\x4f\x55\x8f\xa4\x68\x82\xf2\x74\x9a\x6a\x86\xbd\x76\x22\xc3\x5e\x9b\x61\xd8\x91\x61\xd8\xd4\x30\x6c\x74\x22\xc3\x5e\xd4\x3b\x5e\xaa\xad\x5c\xb6\x01\xb2\xd5\x76\x3b\xcc\x16\x56\x2c\x55\xb2\xda\x76\x7d\xb2\xe5\xad\xbb\x1d\xea\x93\xad\x7a\x33\x8b\x02\xf5\xa6\x5b\x23\x90\x27\x60\x70\x9a\x80\x18\xed\xa2\xeb\x83\x30\x1d\x47\xc1\x91\x78\x1e\x79\x7e\x43\x4e\x8e\x2b\xde\x65\x4e\x2e\x21\x80\x53\x34\x22\x87\x27\xa7\x1f\x91\x43\x20\x6e\x13\xcc\x3e\xc6\x57\x92\xd8\xb6\xac\xe9\x14\xa2\x04\x1c\xa2\x0b\x28\x04\x31\xba\xbe\x93\x70\x1d\x95\x94\x1a\x1c\x13\x65\xbf\x46\x3a\xde\xaa\xb3\x26\x4d\xd8\xc6\xf1\x01\xe0\x5f\x88\x68\xd1\x26\x4b\xaf\x6a\x89\xa0\x81\x1d\x0d\x98\xbe\x13\xab\xea\xd3\x6a\xca\xd7\xf3\xe1\x6a\x49\x76\x77\x16\xd0\x60\x8a\x4e\xee\x04\x77\x4b\x3d\xf1\xa4\xec\xf8\x93\x2d\xcc\x65\x7e\x45\x87\xef\xaa\xf0\xdd\x99\xf0\x1d\x15\xbe\x33\x13\xae\x70\x52\xb1\xea\x6b\x0b\x7b\x0b\x3a\xd5\xfa\x1f\x96\x7d\x59\x35\x14\x6a\x68\xd7\x40\x3b\x0b\x3a\x39\x77\x57\x41\x55\xa1\x06\x28\x10\x3e\xfe\x08\x0e\xd3\x4b\xc1\x25\x3e\x45\x2a\x2b\xc4\x19\xc1\xeb\x21\x02\x21\xec\x58\x9c\x41\x2c\x9f\xff\x04\xc0\x82\xf6\x19\x64\xb4\x42\x55\x08\x6a\xdb\x42\xcb\xd6\x99\x33\xed\x7e\x98\x4c\x3b\x2a\x93\x68\x17\xe9\x58\xd0\xf2\x45\x7e\x62\x5b\xd0\x82\xd3\x29\xe4\x8c\x7d\x0d\x3d\xfc\x60\x18\xfb\x9a\xac\x74\xa4\xe4\x86\x12\x1a\x0f\x92\xa9\xcf\x5a\xc3\x0c\x43\xe7\xfa\x7b\xf4\x89\x46\xdb\xb5\x1b\x6d\xb7\xaa\x8a\xda\x72\x21\x62\xa6\xc3\x8f\x8f\x25\x24\xcb\x87\x1d\xd7\x57\x35\xe9\x67\x71\xc4\x43\x2e\x80\x72\x79\x4c\x7d\xaf\x46\x61\x95\xa1\x10\xd7\xab\xb4\x96\x2c\x15\xb4\xa1\x8b\x80\x6c\x63\x2e\xe2\x48\xad\xde\x74\x7d\x62\x7b\x75\x17\x85\x7c\x86\xe0\x82\x52\x03\x5b\x5e\xdd\xed\x10\x5b\xa4\xa8\x99\x14\xb3\xf4\x3a\x69\x08\x02\x3d\x74\x52\x35\x68\xd2\x2d\xec\xcd\x34\x03\x66\x03\x2c\x52\xa9\xa2\x2d\xec\x9d\x61\xd8\x4d\x21\xd4\xb6\x19\xbc\x37\x9e\x7a\x7c\xd5\x5b\x77\xd1\x39\xec\xad\xbb\xab\x2a\x04\x3d\x8d\x9d\x8d\x76\xb3\x5e\x47\x4f\x61\x0f\x5d\xc2\xce\x7a\xbd\x55\xf7\xd0\x8b\xb8\xb9\x5a\xdf\x40\x8f\xe3\x36\xff\x39\x8f\x1b\xd5\xc7\xab\x8f\xa3\x27\xf0\xe3\xfc\x37\x5b\x60\x3c\x5a\xa6\x00\x3c\x96\x9f\xbd\x1f\x03\x72\xe2\x0f\x66\x14\xb8\xb9\x49\xfd\x79\x51\x90\xea\x49\x67\x04\xe7\x0b\x71\x91\x9b\x2f\x40\xbf\x9b\x37\xaa\x5e\x59\x9a\x4b\x2b\x5a\xd7\x8f\x53\xc0\x27\x2e\xa7\x2f\xbf\x53\x3e\xf3\xcb\xef\xdc\x0c\x5b\xc0\xe2\x50\xa8\x21\x5c\x4d\x54\x3e\xf0\x51\x82\x42\xfc\x19\x40\x9c\x04\xa2\x58\x00\xbb\x5c\x6f\xe0\xc0\x0e\x57\x17\x1e\x01\xc0\xa9\xd7\xeb\x2d\xb7\xd9\xaa\x86\xb6\xb3\xe6\xb5\xd7\xd7\xd6\xdb\xd5\xd8\x76\xdc\xb6\xdb\xf6\xda\x1b\xd5\x00\xae\x3e\x65\xac\x96\x43\xf9\x2e\x50\x2c\xd4\x05\x8a\x13\x9c\xfa\x80\x8a\x42\x9a\x8d\xb6\xbb\xd6\x5c\xe3\x85\x34\xd6\x5b\x6e\xbb\xb9\xc1\x0b\xf1\x9a\x0d\x77\xdd\x6d\xf2\x42\x9e\x86\x28\x11\x29\x5d\xb1\x67\x57\xe7\x29\xdd\x8d\x35\x8f\xd7\x1c\xf3\x9a\x9b\xde\x5a\xa3\xc1\x53\x5e\x82\x72\xbc\x3d\x06\x3c\xaf\x5d\x4d\x6b\x5e\x1b\xb5\x5c\xb7\x0a\x68\x2d\x85\xa8\xce\xa1\xb4\x96\xc0\x3c\x0d\x4c\x87\xbe\x7c\x36\xfd\xef\x51\xad\x96\x3c\x76\xa2\x5a\xf2\xd8\x8c\x5a\x12\x19\xb5\x24\x38\xa3\x1e\xfd\x48\x5e\xbc\x6c\x3f\xd1\x31\x52\x85\x20\x6f\xb5\x01\x7d\xb2\x7a\xde\x7e\x31\x4b\xfe\x4c\x21\xf9\xe3\x1d\x52\x25\x55\xe2\x9f\xaf\x02\x52\x7b\x31\x87\xd7\x4b\xb9\x64\x4a\xd1\xc1\x8e\xeb\x36\xbc\x86\xbb\xde\xf1\xea\xce\x46\xbd\x4a\x7c\xcf\x71\x5b\xad\x6a\xa1\xc2\xba\xd3\x84\x35\x1e\x9c\x2b\xeb\x33\x39\x4d\x9f\xac\xf2\xf9\x10\xf2\xc2\x9a\x6e\xb3\xd5\x21\xab\xa2\xb0\x4c\x16\x02\x62\x8b\xec\xab\xa2\x70\xc4\xcb\xcb\x4a\x7a\xf6\xa3\xeb\xde\xcf\xe7\x47\xcd\xf3\x4a\xf7\xee\x9f\xa6\x7b\x3f\x26\x98\xfe\x51\xa1\x7b\xcb\x97\xb3\x03\xf9\x90\x34\xe7\xf1\x42\x81\x62\x2d\x39\x5b\x9c\x1c\x88\xa2\x8d\x01\x0b\x68\x1d\xc8\x91\x1e\xc0\xea\xb9\xa5\x42\x6e\xb6\xc5\x55\xc6\x06\xd7\x12\xd5\x80\x7c\x29\x61\x80\x38\x41\x95\x38\x81\x4d\xb8\x6e\xc3\x07\x55\xb1\x78\xa3\x01\x3f\x7f\x22\xab\x3d\xbf\x50\x03\xee\x9f\xac\x01\x27\xe0\x31\xf4\xf2\xe9\x33\xa8\x64\x76\x59\x8c\xed\xad\x57\x81\x99\x50\x7d\xfd\x82\x7d\xa0\x18\xfa\xec\x13\x66\xbe\xd0\xda\xfd\x15\x5a\x3a\x47\x1a\xfc\xda\x70\xd5\xf3\xda\x66\x66\x94\x25\xc1\x0e\xf1\x89\x7c\x31\x2c\x58\x6d\xb9\x2e\xa2\xf9\xe8\x1d\x11\x5d\x93\xf0\x6a\xdd\x75\x8b\x13\xe2\x4b\xa0\xe1\x78\x8d\xc6\x7a\xab\xed\x55\x01\xc3\x4f\x57\x9f\x01\x0c\xc2\x9a\xe7\xb4\xbd\xf6\x7a\xbb\xbd\x56\x05\x04\x3f\x55\xe5\xe3\x0f\xd6\x9c\xe6\x86\xdb\xf6\x9a\x7c\x6d\x84\x2f\x55\x9f\x01\x14\x42\x88\x5e\x02\x35\x67\x63\x6d\x7d\xad\xbd\xde\xac\x32\xdb\x73\x36\xbc\xb6\xd7\xf4\x5a\x55\x3e\x22\x1a\x8d\x66\xab\x59\xa5\x3c\x91\xe3\xae\x79\x1b\xcd\x56\xa3\xca\x6a\x4e\xbd\xbe\xbe\xb1\xe1\x35\xab\xc4\xf6\x9c\xa6\xdb\xaa\x37\xeb\x6b\x3c\x51\x91\x12\x52\x0b\x7a\x1e\x3d\x7b\xb6\x3e\x7c\xbe\xa0\x83\xf4\xd1\x89\x3d\x7a\xd6\x3e\x2c\x2f\x74\x41\x8f\x9e\xa6\xb8\x3f\xaa\x9e\xbd\x10\xeb\x17\x33\x85\x7f\x12\xd7\x1c\xaf\xb9\xde\xf6\xd0\xa7\xb0\xe7\xac\xad\xd7\xd7\xd6\xd0\x43\xb8\xe6\xd4\x37\xea\xf5\x35\xf4\x69\x5c\x73\x36\xf8\x9c\x81\x9e\xc3\x9e\xb3\xb1\x56\xdf\x68\xa2\xcf\xe2\xe7\xaa\x9f\x46\x7f\x88\x9f\xab\x7e\x0a\x11\x82\x3f\x55\x7d\xa8\xf6\xe9\xea\x27\x73\x5e\x7b\xc8\x47\x97\x37\xb4\xb0\x52\xa7\x64\xd1\x6a\xff\xc4\x39\x96\x4f\xe2\x27\xad\xda\x01\x21\xd5\xc4\xfe\x6c\x95\xd5\xfe\xb0\x4a\xe1\x2a\x20\xc4\xfe\x6c\xed\x0f\xf9\x74\x9c\xd4\x42\x14\x60\xf0\x1c\x9f\xda\x42\x58\x7b\xa8\x1a\xc3\xd5\x4f\xa3\x14\x67\xc2\x25\xa8\x06\x76\xcc\x83\xc1\x73\xd5\xb0\x0a\xbc\x5a\x08\x21\x9a\xe0\xb4\x93\x13\x57\x01\x8a\x61\xf5\x1c\xd7\xdf\xfc\x4b\xc1\xa5\xa5\x62\x83\x26\x5b\x6e\x67\x22\x64\xd6\x04\xa5\x28\x2c\x13\x4c\x94\x9c\x28\x99\x28\xf9\xb0\x8b\xf3\x04\x50\x82\x18\x79\x30\xea\x3d\x25\x1f\xbb\x7e\x7f\xe6\x2a\x4a\x85\x57\x4e\x16\x8d\xb8\xea\xae\x40\xae\x79\xc3\xea\x15\xc4\xb0\xad\x74\xf8\x82\xd8\xca\x69\xf9\x55\xc6\x3b\x98\x71\x35\xc9\xa8\x7f\x04\xea\x6d\x1f\xae\xfc\xe5\x5e\x2f\x36\x3b\xc7\x80\xd9\xb4\x0a\x3e\x59\x4d\xec\x4f\x55\x39\x73\x64\x61\x0f\x55\x13\xfb\xd3\x33\x61\xcf\x55\x13\x58\x26\x81\x4e\xb2\x2d\xdb\x3d\xc5\xb6\xeb\xc2\x29\xb6\x6d\x0f\x9f\x62\x5b\xf6\x72\x16\x5f\x6a\x9b\xf7\xec\x29\xb6\x71\x8c\x9c\x6a\x1c\x45\x9d\x04\x30\x58\x62\x23\x95\xf1\xc6\x16\x13\x57\x6e\xb7\x19\x17\x75\xdb\x98\x75\xc4\x68\x9a\xe6\x9f\x47\x99\x3d\x8c\x10\xcb\x5a\xf3\x28\x26\x60\x98\x20\x52\x7e\x6f\x31\x01\xf2\x95\x13\x38\x85\xe8\x7a\x44\x86\xb9\x2b\xee\x62\x64\xa1\x50\xde\x94\xce\x3f\x8c\xef\xea\xdb\x8d\xd2\xaf\x1a\x33\x97\xa6\x93\xad\x70\x53\xdd\x62\xc4\x89\x1d\x6e\x6f\x6f\x7b\x4b\x04\xb0\x6e\xdc\x43\x14\x6e\xb9\x9d\x04\xc7\xb6\xe7\x87\x38\xce\xbd\x23\x2a\x06\xdf\xc7\x56\xe9\xb6\xdb\x09\x71\xec\x8b\x8a\xb3\x4a\xa7\x53\x14\xe3\x50\xbe\x2f\x1a\x3b\x02\x03\x94\xe2\xd8\xe1\xed\x47\x13\x1c\xa0\x68\xa6\x2b\xf2\x4f\x72\xf7\x33\xfb\xb2\xa2\x7f\xad\x9a\x87\x42\x4c\xa4\x7b\xba\xec\x6d\xd9\x64\xcb\xed\xb8\x7e\x02\x85\xf7\x2d\x18\x77\x69\x0f\x33\x10\x8a\x94\xb6\x4d\x7b\x66\xdc\xc4\xb9\xd3\xa5\x7e\x9e\x01\xba\x04\xb1\x9e\x7a\x19\x63\x96\x95\x04\xdb\xa0\x10\xc5\x48\x38\x0f\xd4\x97\xeb\x27\x86\x3c\x28\xca\xa1\x92\x56\x27\x12\x77\x75\x37\x55\x3c\xb6\xdf\xe7\xa3\x3a\xc6\xee\x66\xb2\x95\x6e\xda\x76\x22\xee\x55\x06\x98\x74\x93\x1e\x0a\xb1\xbb\x19\x6e\x4d\x36\x6d\x3b\x44\xb6\x1d\xc3\xa8\x1b\xf7\x30\x05\x01\x62\xdd\x30\xc3\x3c\x9a\xa2\x51\x39\xeb\xb2\x2d\xc2\x59\x97\x6d\xf3\x59\x9a\x6d\x63\xa2\x59\x77\x5c\x66\xe1\x2b\xb1\xc2\xa4\x73\x29\xb8\xe4\xdb\x64\x8a\x06\x33\xa5\x66\xcb\x46\x92\x7b\xca\x04\x05\xb8\xe6\xa1\x14\xbb\x68\x82\x5d\x71\x6f\x56\x76\x96\xbe\x54\x1a\x70\xfe\x90\x72\x8d\xe2\x31\x20\xdd\xa0\x07\xe1\xf1\x31\x98\xd8\x18\x24\x98\xaf\xdc\xf8\x24\x07\x52\x1b\x27\xab\xbc\x91\x10\x2e\x65\x97\x4d\xe7\xb2\x33\x51\x00\x12\x8f\x5b\x9f\x52\x4a\x38\x04\xf1\xb6\xa7\xa7\xf1\xc9\x2a\x88\xc5\x45\xd8\xbd\xb2\x56\xe1\x81\x74\xa6\xa8\x49\xd1\xc9\x26\x5a\x0a\x7d\x3a\x45\x47\x8b\x68\x81\xe2\x8c\x1a\x9c\x12\x79\x0a\x5c\x37\x6d\x88\x37\xa1\x0a\x5f\xc1\x80\x62\x41\x84\x4a\x85\x6e\x63\x2a\xc8\x94\xe0\x10\x53\x9d\x70\x36\x15\x48\xb6\xa9\x18\x82\x14\xa2\x70\x8b\x8a\xe1\x47\x21\x9c\x16\xa9\x34\x53\x43\x9e\x4e\xa7\x56\x54\x4c\xbc\xa0\x3e\x45\x9b\x6e\x82\xc2\xde\x14\xed\x4b\x8f\x0d\x99\xd5\x27\xda\xc5\xfb\xf2\xad\x5d\xb4\x83\xf7\x9d\xbd\x60\x8c\xae\x96\x71\xd9\xbc\x94\x26\xd3\x29\x3a\x28\xbd\xe9\x3a\x45\x17\xe6\xed\x56\x85\x8e\xc1\xd5\x0b\x8a\x41\x38\xa7\xd4\xc1\xad\x7a\x47\xc9\x5b\x71\x18\x19\x6e\x35\x3a\x9e\x6f\xd3\xdc\xbb\x3c\x42\x4e\xb8\xc7\xb3\x7b\x95\xe2\xaa\xb7\xbc\x52\x41\x21\x2c\xc8\x90\x10\x8a\xcb\xd1\x21\x97\x1f\x49\x0f\x13\x3b\xa9\xd2\x4c\x6e\xa0\xc3\x9c\x5a\xd6\x72\x21\xba\x9c\xfb\xf6\x5c\x88\x9e\xcc\x7d\xd7\x21\x7a\xf8\x14\x31\xa2\x78\x88\xeb\x4d\x80\xb7\x16\x62\x0c\x78\x83\x45\x3f\xba\x50\x4b\x25\x71\x47\x1d\x24\x98\x6d\x09\x5f\xa4\xa1\x68\x33\xe3\x2b\x23\xb9\xd6\x05\x01\x56\x87\x27\x7c\xa0\xac\x18\xfb\xfd\x40\x6f\x40\xc9\x5b\xee\xc1\xb6\xbc\xfe\xad\x8e\xf2\xe4\x0d\xfc\xd5\x00\x22\x86\x0b\x97\x85\x83\x19\x92\xe4\x92\xb3\x1a\xb1\x3d\xc8\x69\x94\x4a\x1a\xa5\x3d\x0c\x88\x9d\xc2\x6a\x90\x0d\xe5\xe2\xb5\x81\x6a\x56\x81\x2c\xa2\x7a\x42\xf9\xa4\xc6\x4a\xca\xaf\xa5\x70\xd5\x3c\xcf\x97\x54\x2a\xb1\x93\x90\x7d\x92\x88\xe3\xfe\xbc\x30\xbf\x56\x74\x9c\x25\x7b\x38\xd7\xf9\xd4\x28\x52\x12\x37\x01\x46\xf1\x2e\x48\x54\xb2\x27\x2e\x79\xc2\x3b\x4a\xb2\x9a\xa9\x9f\x2e\x0a\xb3\x9d\xaf\x6d\xec\x76\x40\xbc\x8d\x0f\x3b\x9e\xeb\xc7\xdb\xf8\x72\xa7\xc5\x7f\x9e\xec\xd4\x7d\x0f\x56\x8b\x99\xfc\x5a\xfe\xbb\x16\xc2\xd5\x85\x39\x4b\x8e\xb0\x64\x13\xa4\x86\xbf\x93\x9e\xd0\x14\x55\xfe\xa9\xcd\x92\xed\x0a\x0d\x33\x73\x54\xc2\x2a\xd6\xd8\x84\x55\x2c\x11\xe2\x0c\x56\xc5\x75\x88\xc4\x94\x12\xfa\xe1\x54\xee\xbe\x96\x8c\xda\xac\xdf\x4c\x95\xc6\xad\x8b\xae\xb9\x0e\x6d\x6f\x8a\xce\xcd\x3f\xb8\x7c\x80\x18\x3e\x42\x14\x5f\xc9\xfa\x2f\x01\x89\x8c\x15\xe3\x23\x7b\x45\x2b\xcd\x71\x4b\x20\xe7\x55\x39\x5f\x06\x7c\xbe\x84\x69\x37\xec\x61\x02\x92\x6e\xd8\x13\x9b\xd7\x42\xc5\x8b\x30\x03\x29\x44\x7d\x1c\x71\x35\x61\x88\xa3\xae\xd7\x43\x23\x4c\x41\x8a\xfa\x68\x08\x97\x8a\x5e\x6a\x46\x7c\x82\x19\xe1\x8b\xa0\x8f\x86\x68\x04\xd1\x08\x5f\x00\x59\xeb\xfa\xab\x23\x58\x1d\x89\x98\x4c\x23\x19\xe3\x91\x76\x5b\x33\xea\xba\xbd\x2d\xdc\xdf\x84\x23\x27\x1d\x85\x43\x06\x20\xaa\xd5\xc6\x22\xe5\xe6\xa8\x3b\xae\x79\xbd\xed\x21\x8f\x1c\xc7\x63\x15\xc5\x0b\x18\x28\xfb\x6d\x89\xc1\xd8\xf6\xf2\x2d\xc3\x63\xd1\x34\x30\xc0\x7b\xbc\x75\xdd\x1e\x74\x0e\x5d\x1c\x6e\xbb\x9d\x51\x37\xac\x79\x3d\xbf\x8f\x06\xce\xa1\x87\xc3\xad\x31\x0f\xe9\xf9\xc3\x39\xb2\xf4\xb7\x30\x88\x31\x27\x0e\xac\x54\xe2\x2d\x3c\xac\x54\xf6\xba\x13\x30\x42\x31\x72\xd1\x18\xf6\xa4\xd7\x8a\x24\xaf\x5f\xec\x19\xc5\x4d\xfa\x39\x2e\xbc\x0a\xa8\xa2\xe6\xd6\xd6\x80\x94\xbd\xb1\xca\x3a\xcc\xbf\x0a\xf8\x42\x06\xfa\x64\x8a\x12\x67\x10\xef\x05\x21\x2d\x63\xa3\xf9\x12\x59\x59\x89\xa4\x43\xfc\xab\xa0\x2b\xd4\x3e\xd2\xf5\x7a\x3d\x51\x36\xe3\x65\xb3\x51\x42\xd2\x51\x1c\x0d\xd2\xb3\x95\x5f\xfa\x2a\x2c\x2f\x7f\xd6\x77\x51\xe7\x2a\xd8\x75\xfa\x41\x14\xf1\x85\xbe\x7f\x95\xeb\xef\x89\x50\x12\x92\x29\x7a\x7a\x4e\xb8\x1b\x7d\x40\xea\x7b\x63\x98\x53\x59\x45\xac\x14\xee\xc2\xae\x21\xd9\xaa\x2b\xe1\x6c\x53\xe1\xf2\x14\xb9\x88\x08\x4d\x86\x6d\x63\x2f\x1f\x95\xd4\xbc\x1e\x4a\x6a\x1e\x8f\x56\xd3\x07\x06\x49\xcd\x83\x55\x86\x62\x5c\x74\x51\x12\x60\x91\x25\xee\xa1\x18\x65\x0b\xc5\xc0\x06\x32\xd8\xf6\x7a\x28\xb6\x79\x49\xb5\x00\x56\x41\x58\x8b\xe1\x74\x8a\x9e\x9a\x6b\x88\x59\x2b\xef\xa8\xc6\xa3\x31\x74\xd2\x38\x61\x5c\x91\xcf\x4d\xa1\xc2\x33\x04\xa8\x57\xc1\xd3\x80\x20\x67\xad\x05\x6b\x02\xa8\xb7\x60\x4e\x18\x1a\x9d\xa9\xe6\xad\x36\x84\xcf\xa6\x4b\x8b\x2a\x9c\x2b\xba\xe1\xb4\xaa\x7b\x80\x9c\x58\xda\x8b\x67\xd1\x5d\xcb\xb5\xb5\x58\x68\x9c\x05\x6d\x2d\x9e\xd1\xd6\xa8\x4e\x36\x9f\x26\x51\xaa\x53\x41\x3d\x9b\x2b\x92\x65\xfd\x71\x5a\xc9\xb3\x49\x75\x05\x4b\xd9\x1a\xee\xf1\xf2\xc6\x66\x4d\x0d\x71\x22\x9a\x8b\x82\x52\x15\x3d\xe6\x4b\xa3\xbc\x8a\x1e\xf7\x20\xec\xd4\x6a\xa1\x1f\xd8\x98\x2e\x15\x5b\x92\xcc\xaa\xe3\x1a\xb9\x5c\x0e\xe1\xb0\x5c\xf3\xd9\x6a\x38\x45\xe7\x4b\x31\x9c\xe9\x8c\xcc\xf3\xce\x2c\x7a\xe1\x3c\x7a\xc7\xc7\xca\xc3\x0e\x85\x4b\xf3\xa4\x2e\x47\x30\x9f\x47\x5f\x1f\x03\x81\xe1\x61\xa7\x05\xa7\xe8\x89\x82\xb0\x30\x4e\xca\x50\x09\xf3\x70\x6a\xea\x1a\x03\x5b\xb0\x80\x8a\x96\xab\xbc\xc2\x04\xb5\x59\xab\x85\xc6\x6f\x0e\xe3\x8b\x16\xc2\x85\xac\x9e\x2d\x6a\x35\x26\x62\x69\xb7\x56\x0b\x7a\x38\x29\xb8\x3a\x43\x8f\xfe\xd7\x70\x73\xb6\x10\xf8\x98\xb8\x39\xab\x20\xc7\xcd\x2f\xcf\x34\x36\x5b\xed\x9b\x55\x75\x92\x23\x2d\x85\x9b\xb4\x56\xdb\x84\x09\x5f\xda\x93\x2e\xeb\xd2\x5e\x2f\x57\xda\x63\x33\xa5\x09\xd5\x3a\x93\xbf\x8a\x11\xd5\x42\xd6\x15\x4f\x00\x04\xbd\xdc\x2a\x5d\x6e\x3a\x24\x50\xb4\x84\x6e\x42\xc0\xb8\xaa\xcd\xdb\x90\xc2\x2d\xf7\xf8\xd8\x5d\xc1\x5c\xa9\x40\xe2\x34\x1b\xa4\x38\x44\x01\x8e\x4d\x73\xb8\x22\x2e\x63\x3b\x81\x2f\xdf\x1c\x98\x4e\xd1\x23\x73\xa2\xce\xac\x4e\x04\x2a\x7a\xc2\xe8\x68\x3c\x7d\x0a\x6b\x80\xa9\x4d\x4a\xd6\x71\x7d\x9b\xc1\x4d\xbe\xe2\x93\x92\x3e\x09\xe8\x20\xde\x03\xb0\x1a\xd7\x6a\xc7\x62\x4b\xa4\x1b\xdb\x8c\x4f\x88\xfc\x87\x33\x9a\xfc\xe2\x3f\xd8\xd8\x03\x90\x29\x7a\xe6\x74\xc1\x51\xf3\x38\x6d\x4a\x46\x65\xc8\x25\x01\x5f\xa6\x10\xa9\x4c\x80\xd8\xc6\x33\x63\xd1\x24\xe1\xbd\x2e\xf4\x30\xb9\xc0\x94\x29\xb3\x05\xd4\x4b\x78\x66\x2b\x7e\x05\x64\x9c\x9d\x5b\xae\x64\x2e\x03\x6b\x1e\xa2\xf8\x51\x40\xd0\x67\xe0\x2c\x33\xd8\x36\xe3\xfd\xa4\xd3\x86\x7a\xa8\xf2\x21\x35\xbb\xa6\x93\x43\xb7\x1b\xf7\x44\x8f\xe6\xc6\x5c\x92\x5b\x40\x7c\xa6\x70\x6d\x5a\x22\x25\xd4\xdf\x67\x4b\x1e\xb3\x78\x09\x64\x0e\x28\xa7\x4b\x7a\x73\x32\x4c\x49\xbf\xf4\xf6\xe7\x24\xb7\x83\x29\x12\x3d\x1d\xee\x8e\x4a\x53\x06\xb3\x29\x9f\x20\xc3\xd2\x84\xb9\x0b\xc9\x41\xda\x27\x74\x10\xd2\xd2\x8b\xc9\xc9\x6c\x81\x71\xe9\xfd\xe4\x30\xb7\x07\x9b\xc4\x69\xe9\x1d\xd8\xfc\x1d\x66\x72\x52\x9d\xa3\x7c\xc2\xfd\x30\x10\xba\xd6\xc9\x97\x9a\x85\xfb\xcf\xd2\x86\x1e\xe5\x6e\x2e\x87\x29\x8b\x77\x93\xa0\xf4\x06\xf0\xb9\xdc\x0d\x5c\xad\x12\x3e\x9a\x10\x32\xd8\x0b\xe8\xf9\x30\xe8\xc7\x34\x2c\x6d\xd5\x53\x25\xf9\x2e\xf7\x63\x56\x8a\xcc\xa5\xb2\xc4\x6c\x92\xec\x92\xd2\xb2\x73\xb7\x9a\xf7\x82\xc3\xb2\x14\x2f\xe6\x52\x90\xa0\x94\x4a\x8f\xe7\x93\x0c\xc2\xf2\x44\xe7\xf3\x89\x92\xdd\xd2\x7d\xf6\xdc\x1d\xe6\xbd\xb0\xb4\x94\xdc\x2d\xe6\x71\x10\x26\xa5\x6d\x8a\x72\x69\x48\xb2\x37\x61\xa7\xed\xe9\xbf\x34\x09\x28\x0b\xa3\xd2\x64\xb9\x6b\xdd\x89\xf4\x65\x7e\xe2\xf1\x42\xda\x2f\x6f\xfd\x63\xb9\x24\xa3\xc9\x70\x58\x5e\x59\xee\x0e\x76\x3a\x29\xe5\xa1\x67\x72\xdd\x1b\xf6\xaf\x95\xb6\xff\xe1\x62\x9a\xc7\x69\x3f\x51\x1e\xb6\xe7\xd3\x5e\x2b\xa6\xbd\xcc\x48\xe9\xe5\xf1\x8b\xb9\x64\xc2\x16\x3e\x4e\x4b\x1b\xf0\x52\xee\x92\x78\x90\x84\xe2\x35\x97\x92\x64\x83\x2c\xd9\xcb\x61\x69\x85\xcf\xde\xdf\x81\x89\x35\x62\x6c\xec\xaf\xae\x1e\x1c\x1c\x38\x07\x0d\x27\x4e\x76\x57\xbd\x8d\x8d\x8d\xd5\xc3\x11\xdb\x8b\x2c\x14\xe2\xeb\xe9\xfe\xae\x5f\x92\xaa\xee\xba\xee\x6a\xba\xbf\x6b\x21\x91\xd4\x4f\xd0\x61\x14\xd2\x6b\x65\x49\x65\x81\x3c\xd6\x42\x87\x7b\x51\x59\x92\xe7\x2e\x3e\xc1\x93\xad\xaf\xd2\x60\x8f\xa4\xe3\x80\xb7\xfe\x70\x2f\xa2\xe9\xc2\xaa\x45\xec\xaa\x35\x45\x71\xd9\x83\x0a\x36\xb6\x2c\xc4\xd5\x0d\xe1\xfa\xf5\xc9\x21\xb0\x7c\x2b\xdb\x1b\xde\xc6\x6e\xa5\x62\x89\x12\xac\x15\xb1\x37\x47\xe4\xc6\xa7\xd8\x81\x81\xc2\x14\x5d\x87\x50\xdb\x83\x10\x85\xb3\x97\x1c\x18\xec\x5c\x17\x78\xfa\x61\x97\xf5\x50\x14\xf7\x83\xc8\x27\x53\xbe\x26\x0e\x4a\x10\x8a\xb3\xf3\x3d\xc0\x1c\x91\xba\x73\xa6\xad\x55\x79\x9c\x77\x40\x49\x72\xbe\xf4\x61\xf7\x4b\x97\x01\x71\x04\x22\x88\xc8\x72\xe1\x74\x5a\x76\x40\x3a\xb3\x51\xc3\xf0\x7c\xc9\xda\x14\xd1\xf4\xc1\x33\x4f\x3f\x6e\x68\x86\xc5\x31\x12\x73\xf4\xfb\xf2\xaa\xfe\x42\x62\x9e\xa6\x33\xfb\xf2\x3c\x81\xfe\x3c\xce\x14\x11\x38\x9d\x42\xc0\x60\x6e\x9a\x4e\xb5\x27\x81\xc9\xe2\xc3\x0d\xd2\x49\x17\x19\x55\xbf\x34\x21\xc9\xd1\x65\x12\x89\x89\x10\xf0\xf2\xb3\xa2\x23\x93\xb6\x2b\x4f\x82\xfa\x27\x55\x11\x9d\xa9\x8a\x87\xc5\xf6\xc1\x74\x8a\x86\x67\xdb\x25\x17\x25\x88\xb7\xcd\x49\x2a\x33\x8e\x4a\x91\x30\x0a\x8e\xd1\x9f\x72\x0d\x19\xe7\xfc\xc0\x17\x3a\x0f\x93\x99\xce\x9c\xeb\x4a\x4c\x0a\x9f\xca\xb9\x36\x25\x87\x52\x2d\x55\xdf\xf2\xb2\x0e\x56\xe7\xe2\x57\xaf\x0e\x02\x16\x5c\xbd\x8a\xd9\x74\x9c\x73\x31\x71\x3d\xe7\x5f\xc2\x1f\xa3\x60\x3c\x26\x74\x70\x6e\x14\x46\x83\xc5\xbe\xb2\x65\xc1\x4e\x28\x5e\xe5\x50\xbe\x90\x49\x0e\x09\xe9\x73\xdb\xc4\x9d\xe4\x3c\x7b\x41\x51\x70\x8a\x0a\x1d\x74\x2a\x2e\x73\x1c\x83\x66\x3b\xf8\xfe\x8a\xd0\x1c\x21\xf7\x01\xb1\xf5\x50\xce\x7f\xf4\x9e\xb6\xb4\xe0\xeb\x03\x58\x78\xb2\xcc\x2d\x1e\x37\xc6\x7a\x45\x99\x6e\x45\x9b\xb6\x9d\x42\x10\x60\xd6\x4d\x7b\xb0\x03\x82\xac\x43\xe2\x6e\xda\x43\x49\x37\xed\xe1\x00\xfa\x94\xff\x72\xc6\xe1\xec\xc1\x63\xe4\x9e\xe3\x66\x2a\x8e\x1e\xb3\x12\x2a\x15\x10\xca\x2c\xd9\xd6\xf4\x51\x1e\x31\x14\x48\xf1\x20\xef\x7a\xf4\xf1\x75\xce\xdd\x06\xb7\x91\xc1\xad\xb0\xc7\x39\x94\xb5\xa5\xd8\xdd\x4c\xb7\x86\xb2\xc2\x89\xa9\x70\x8f\x57\x18\xe1\x81\x1d\xc8\x4d\xa7\x09\x9a\x98\x56\xa0\x14\x31\x88\xa2\xe5\x90\x2e\xf7\x3b\x02\xb3\x89\xdf\xef\x46\x3d\x3c\xc9\x17\x39\xd2\x45\xf6\xbb\xb9\x72\x64\x43\x51\x8a\x62\xc8\x49\x23\x48\x91\x2f\x5b\x52\x48\x94\x26\x1c\xc5\x2f\x22\x52\x39\xda\xfd\x2e\xc7\xbb\x87\x31\x9e\x68\xa2\x4d\x72\x44\xdb\x3f\x93\x81\x01\xa7\xe4\x6e\xe9\xb9\x58\x71\xac\x56\x2a\x33\x01\xda\x3f\xf5\xb3\x21\x39\x38\x3e\x26\x46\xe8\x56\x2a\x44\x7c\x66\xb1\x39\xd1\xb0\x53\xc4\xc9\x49\xd9\x51\x24\x9c\x44\xe9\x49\x4b\xbe\x7d\xc0\xe0\xf1\xf1\x2e\x20\x90\xc7\x9c\x8b\xf7\xc6\x13\x46\x06\x97\x79\x52\x40\x84\x7d\x00\x2c\xcb\x52\xb8\x66\x97\xab\x43\x5d\xd5\x4c\xc7\x51\xc8\xc0\xea\xe7\x8e\x5f\x48\xed\xd5\x45\xf7\xea\x9c\x7e\x14\xa4\xe9\x13\x61\xca\x8e\x8f\x85\xa3\x73\x3e\x56\x4c\x52\xfe\xa5\x5e\x04\xa0\xf1\x80\x18\x01\x24\x44\x16\xbe\x2a\x9d\x6a\x3d\xcc\x58\x12\xee\x4c\x18\x01\x96\x28\xcc\x82\xf2\x21\x07\x53\xca\xe1\xec\x86\xc3\x81\xd8\xdb\x95\x27\x86\x9a\x8f\xf5\x51\x20\x75\x82\xc1\x00\xb0\x6e\xd2\x83\x85\xdb\x71\xf7\x53\x42\x42\xf6\xe2\x7d\x32\x5b\xc8\x93\xfa\x75\x03\x46\x0e\xd9\xb9\x98\xf2\x05\x10\xb6\xac\xfc\x5d\x36\x95\x20\xa4\x94\x24\x8f\x5d\xb9\xf8\x44\x21\xfa\x9a\x8e\xe6\x82\xf1\x72\xb8\x13\x85\x54\xdf\x77\x91\x72\xe7\x52\x3c\x20\x4e\x4e\xec\x2a\xcf\xea\xb9\xf3\x26\x55\xc0\x38\x21\xfb\x61\x3c\x49\x17\x16\x52\x10\xa2\xcc\xbc\x7c\x93\x4b\x31\x0c\x93\x94\x89\x5a\x72\x15\x5c\x01\x85\x59\x33\x8b\x38\x57\xbc\x15\x91\x95\xb3\x44\x38\x9b\x4b\x7a\x95\xe2\xfc\xf4\xcc\x54\x79\x12\x92\xd2\xdd\x3c\x8f\x03\x2b\x9e\x32\x7a\xca\xd1\x2a\x57\xea\x53\x1f\xb2\x54\xb7\xac\xd4\x0b\xf9\x39\x30\x18\x14\x67\xbb\x1c\xbf\x1a\xb5\x93\xc0\x2d\xd7\x3c\x07\x23\xa3\xc4\xf6\xa5\x36\xb8\x14\xbc\xee\xa4\x25\x9c\x9d\x67\x7f\xe7\xc5\x38\xa4\xc0\x5a\xb6\xc4\xc6\xb8\x24\xa1\x3f\xaf\x64\x96\x23\xb0\xc4\x84\xba\x5b\xc0\x81\x8f\xd7\x3e\x01\x0c\x79\x1f\x01\x8f\x7e\x4c\x59\x10\xe6\x1f\x8e\x99\x9d\x23\x67\x51\xd9\xc6\xae\x9a\x1c\x2f\xf1\x99\xe5\x45\x21\x98\x33\x01\xf6\xf8\xdc\x39\xc5\x79\x15\x82\xf2\x07\x56\x7a\x27\x31\x21\x51\xc0\xc8\xe0\x4a\x90\xec\x12\xb6\x24\xcf\x66\xe4\x8b\x30\xc7\xc7\xeb\x15\xaa\xdf\x2b\xd0\x32\xf5\xa9\x38\x0d\x65\x11\x9c\xed\x20\x97\xa3\x62\x1e\x91\x3c\x0f\xa7\x19\xcb\x9c\x9f\xc1\xc3\x54\xae\x8f\x31\xf1\x8b\x4b\x2f\xe2\x44\x3c\x3d\x5a\x28\x24\xaf\x31\x89\x12\xcc\xfb\x9f\x2f\xe2\x70\x9a\xab\xe1\x89\x53\x15\xf3\xab\x57\x63\xb1\x09\x9f\x17\x45\x28\xc1\xae\xde\xcf\x33\x92\x28\xd9\x8a\x85\xd1\x11\x15\xfe\xb9\x10\x71\x38\x73\x56\x2a\x54\xfc\xae\x60\x2c\x03\x8e\x8f\xa9\x50\xfe\x44\x00\x07\x3a\xac\x6b\xdb\x61\x0f\x53\x69\xa0\x28\x79\x4a\xbc\x5a\xc5\x05\x34\xa1\x24\x01\xb2\x08\x44\x9d\x48\x85\x20\xea\xf4\x83\x31\x9b\x24\x04\x6e\xda\x76\xd8\xd1\x38\xe0\xd0\x2f\xbc\xc7\x71\x35\xa6\xf9\xc6\x3e\x5a\x3c\xfb\xbe\x34\x77\x5f\x5c\xd4\x03\x3b\x8f\xfb\xe7\x97\x66\x69\x52\x54\x49\x32\xd2\xa0\x08\x27\x80\x89\x48\x4e\xa5\x89\xd9\x2c\xec\x63\x17\x0d\xf1\x44\x53\xa7\x2f\x26\xf6\x3e\x0c\x87\x00\xa4\x78\xd2\xed\xf7\xa0\xa8\x0d\x6b\xc2\x54\x2a\x52\x49\xc6\x9a\x30\x30\xcf\xc1\x65\x64\x49\x25\x59\xd2\x8c\x2c\xa9\x21\x8b\xb2\x8b\x1f\x0c\x4e\xc9\x82\xa3\x2c\x13\xa6\x10\xed\xc7\xe1\x00\xa4\xea\x70\x96\xa9\x57\xa5\xe6\x8a\x91\x18\xa3\x88\x0f\x88\x14\x5f\xe7\x1f\xbe\x0a\xe3\x98\xfb\xb2\x01\x48\x3e\x74\xc1\x90\xae\xcc\x8f\x90\xaa\xca\xa7\x53\x34\xe9\x4c\xa4\x08\x4a\xa1\x6f\xc8\x89\xbb\x69\x6f\x5a\x7a\xd3\x46\xf3\x3b\x71\xd2\x78\x92\xf4\x25\x2d\xf0\x8b\xe8\x45\x4c\x04\xff\x6b\x6a\xa9\xa7\x64\xe4\x8d\xed\x3c\xd3\x9b\x42\x1f\x2b\xb2\xc1\xae\xb4\x7f\x4d\x9c\x73\x93\x94\xc5\x7b\xa2\xdc\xa5\x92\xe3\xdb\xb0\x23\x9f\xc2\x08\x85\xa7\x48\x1f\xf0\x2c\x83\x99\xa5\x30\xcf\x0b\x2c\xf1\x63\x41\x44\x3b\x20\x74\x42\x1a\x32\x19\xce\x10\x75\x76\x26\x3b\x3b\x11\x49\x05\x03\xd3\x3e\x89\x82\x9d\x88\xd7\xee\x0c\x08\x0b\xc2\x08\x53\x05\x40\xbf\x98\x71\xc5\x43\x2b\x7c\xf5\x4f\xc4\x3d\x60\xbe\x72\x93\x31\x21\x9c\x5a\x13\x2a\xdf\x1b\x19\x64\x4f\xe0\x66\x5a\x1a\xb0\x62\xba\x17\x4f\x52\x42\x28\x23\x89\x15\x52\x13\x37\xbb\x7e\x3e\x3e\x06\x97\xf0\xf5\x2c\xad\x6f\x09\x38\xde\x27\x89\x85\x04\x18\x91\x60\x9f\xe8\xe0\x09\xb3\xb4\xd5\xfd\x23\xb8\xcb\xc5\x67\x2f\x93\x9f\xcf\xe4\xdf\x08\xdb\x4d\xe2\xc9\x38\x35\x6a\x94\x9c\xf6\x52\xcc\xf2\x37\x8d\x0a\x6b\xce\x67\x40\xb7\xbb\x08\xcb\x5e\x0f\x3d\x02\xa7\xcf\xe4\x66\xbf\x97\x16\xad\x06\x9f\x41\xa9\x58\x0d\x15\x66\x85\xac\x5f\x0d\xb1\x88\xd8\x65\x99\x08\x4b\xfb\xec\x54\x20\x8f\x3b\x5a\x78\x5c\xa4\xcc\x2a\xa9\xb0\x87\xd0\x99\xa5\xe9\x15\xeb\x86\x3d\x14\x61\xf3\x4a\x52\x1f\x27\xdd\x30\x7f\x6a\x10\x41\x34\xc4\xee\xe6\x50\xac\xad\x86\x50\x98\x52\x0c\xc5\x42\x25\xc0\x4a\x98\xc7\x28\xce\xc4\xf8\x50\x9d\x0b\x59\x3a\x84\xf7\x66\xcc\x93\xe7\x56\x1a\x06\x84\xa8\xdf\x1d\xf2\xf5\xd5\x52\x81\xb2\x49\xb1\x17\xc4\x2b\x7c\x9c\x48\xb3\x2b\xcc\x85\x74\xea\x9f\x99\x4e\xdd\x1e\x0a\xf9\x9f\x18\xbb\x9b\xb1\x20\x51\x0c\xf3\x8b\x4d\x61\xd6\x3b\xc9\x08\x14\x61\x77\x33\x12\xcb\xc4\x88\x2f\x13\xd3\x6e\x24\x2d\x16\x95\x9e\x22\x29\x12\xa0\xac\xb5\x28\xe2\x14\x41\xa1\x7a\x39\x1b\xce\x35\x35\x84\x53\x24\x5f\xe9\x38\x5b\xdb\x86\x0f\x94\x07\x24\x07\xa4\x38\xc8\x4c\x79\x13\x69\x6a\xa3\x9a\x9a\xca\xa6\xc6\x38\x90\x4d\x2d\xeb\xf4\x08\x05\xb0\x52\x51\x82\x32\x3e\xb5\x33\x79\x2e\x7f\xee\x90\x32\x73\x15\x31\xc8\x61\x2e\xef\x03\x84\x2f\x13\x00\x21\xea\xf3\xc9\x5c\x84\x90\xc2\x13\x7a\x04\x5e\x1f\x74\x6d\xbb\xdf\xc3\x64\x0a\xd1\x40\x5f\xf7\xc4\xac\x73\xe4\xef\xf1\x75\x48\x1e\x01\xae\x0d\xe4\x48\xb6\xb4\x80\xd0\xb4\x68\xc2\x9e\x8d\xfd\x69\x46\xfc\x20\x5b\xe0\x17\x8d\xb3\xd0\xa4\xf8\x19\x15\x3f\xfb\xd8\xdd\xec\x0b\xfb\xa4\xbe\x94\xef\x43\x1c\x76\xfb\x3d\x34\xc2\x31\xff\xc9\x6c\xaa\xd0\x40\x0f\xb2\x21\x1a\x56\x2a\xc3\x8c\xe4\x7d\x14\x42\xb4\x8f\x07\x3a\xe1\xae\x98\xad\x73\xd5\xec\x43\xb4\x83\xd3\xd9\xb0\xa5\x04\x0c\xd1\x08\xed\xa2\x1d\x14\x15\xe3\xc6\x10\x0d\x10\xcb\xda\x76\x15\x1d\xa0\x0b\xd8\x45\x87\xd8\xdd\xbc\xb0\xb5\xbf\x69\xdb\x17\xb8\x5a\x70\x15\xef\x76\x2f\xf4\xa4\x96\x75\x61\x1b\x1f\x56\x2a\xe0\x10\x5f\xb0\x3d\xb8\xb9\x02\x0e\xf0\x4e\xf7\x90\xf3\x88\x6d\x1f\x6e\xed\x6f\xc2\xcd\xab\x6a\xbf\xec\xe0\xf8\x58\xac\x7a\x94\x5d\x15\x90\xc4\x7a\x06\xa4\x28\x84\xd0\xb9\x2a\x24\x39\x9e\xa0\xd4\xb9\x4a\x0e\x43\xc6\x67\xfb\x29\x92\xe2\xbd\x84\xfe\x22\xa7\xec\x41\x91\xe6\xf8\x38\xdf\x9d\xce\x5e\x30\x06\x23\x38\xc7\x73\xbc\xe0\xd3\x4a\x3b\x0c\xd9\xd9\x0a\xe3\x7a\xfd\x82\x67\x4a\x25\x77\x72\xbc\x00\x54\x9c\xa7\x19\x8e\x97\x0f\xb2\x73\xff\x05\xc6\x57\x20\x81\x7e\xa2\xd6\xaa\xd2\xc1\x13\x92\xb6\x04\x4c\x5e\x43\x10\xcf\xc9\xeb\xe3\xf2\x58\x2f\xa8\xa1\x4f\x41\x0c\x51\x52\xa9\x84\x9d\xc4\x11\xe7\x5e\x20\x84\x4e\x9c\x0c\x38\x22\x7e\x38\x45\x22\xcc\x2f\x35\xf5\x98\x15\x21\xc4\xc0\x49\x26\x4e\x42\x4c\x33\xcb\x0b\xe3\xeb\x80\x8b\x2f\x14\xe4\x6f\x1f\x70\x5d\xcb\xdd\x4c\x85\x9a\x9d\x1a\x49\x33\x41\x91\xd8\x2a\x42\x7d\x4c\xf9\xcf\x10\x47\xd9\x2e\x59\xa0\x77\x9a\xf4\xfe\x18\x1a\x63\x77\x73\x2c\x74\xd1\x31\x04\x13\x1c\x75\xc7\xbd\xe3\xe3\x7e\x77\x2c\x64\xed\xa8\x3b\x36\x3b\x5e\x9b\xe9\x56\x22\x2a\x12\x65\xf0\x1a\x8a\xc2\x27\x98\xeb\x3b\x41\x92\xf2\xe7\x5b\x0b\x64\x50\x47\xee\x24\xdb\xc2\x28\x9c\xb2\x0b\x53\x94\x2e\xe3\x13\x47\x98\x5d\xc7\x08\x70\xd8\x8d\x7b\x9b\xb5\x5a\x2c\x6c\x5b\x40\x22\xbe\xc5\x6c\x59\xa9\x34\x3f\x97\x2c\x5c\x64\x71\xf9\x19\x2c\x5c\x6c\x27\x28\xe0\x54\xce\x5e\xcc\x62\xc2\x23\x48\x1a\x27\x45\xbd\xc1\xe8\x2a\x2c\xff\x72\xd1\x32\xab\x54\x68\x87\x00\x96\x49\x0f\x9a\xcd\xc0\xfe\x0a\xab\xad\xd0\x29\x11\x37\xf9\xf6\xf3\x57\x4d\x0a\xe4\x48\xb2\xee\x0f\x8b\xdd\x2d\x67\xce\x44\xcc\x9c\x85\x7d\x5a\x3a\x37\x75\x86\xe2\x3a\x87\xc9\x3c\xd1\x92\x70\x22\x24\xa1\x98\x4e\xfb\x82\x5a\x42\x36\x05\x70\x29\x92\xa6\x4a\x0c\x4e\x0b\xbd\x1a\xce\xf4\xaa\xe6\xf3\x29\xe2\xb2\x72\xfe\x3e\x5a\xf6\xaa\xa3\x6b\xf8\x23\x1f\x26\x87\x29\xd1\x4a\xf9\x24\x8a\x66\x5f\xd5\x9c\x22\xbe\xe2\x2f\x79\xf4\x75\xc1\x4c\xc5\xb9\x27\xdf\x59\x33\x13\x16\xbc\x4e\xba\xb6\xcd\x64\xc5\x53\xf1\x44\x1b\x2f\xff\x4c\x6c\xe9\xe6\xb9\x92\x89\x19\x9d\x65\x6c\x29\x99\x32\xc4\x2e\x8a\x8d\xe5\xf0\x66\x28\x46\xa3\x7a\xef\x2d\x10\x13\xbc\xb0\x84\x37\x16\x6b\xd3\xfc\xde\x14\xe2\x8d\x98\x6f\xa9\x7b\x62\x7b\x6c\x9b\xc8\x76\x90\xbd\x71\xf1\x39\x60\x99\x6b\x45\xee\x0e\xc5\x03\xe1\x18\x88\xe7\x3e\x9b\x2c\x72\x73\x32\x48\xdc\x68\xb2\x6d\x5a\x30\x75\x61\x5d\xda\x53\x86\x4c\xe6\x24\x20\x10\x5a\x4b\x00\x41\x88\x63\x79\xa5\x44\xcd\xa2\x21\x0a\xb3\x41\x10\xa0\x78\x66\x40\x05\x8c\x25\x7e\x89\x81\x90\x3c\x8f\xe4\x14\x9b\xb1\xa1\xdd\xaa\x17\xe4\xbe\x6c\x9e\x91\x40\xea\xe0\x32\x29\x6c\xc5\x5e\xba\x0c\xa8\x3a\x81\x54\x09\xb8\xbc\x2f\x6c\xd6\x52\xc3\xee\x19\xa9\xb5\x31\x52\x87\x9e\xe9\x38\x34\xb7\x1c\xcf\xd7\x7c\xdf\x67\x9f\x65\xe5\x88\x33\x1b\xbf\xd4\xd8\x79\x1e\xb9\xdc\x16\xfb\x0c\x47\x71\x55\xb5\xf4\x19\xdb\x25\x3d\xbb\x9d\xb1\x11\xea\xce\x68\x91\xc6\x33\x89\x10\x2d\xb6\xf5\x41\xa3\x25\x8e\x6d\x67\xd1\x10\xf7\x1e\xa7\x53\xff\xac\x54\x39\x4b\x3b\xd8\x59\xda\x51\x86\x09\x13\x07\xc8\x14\x31\xf1\xae\x20\x3b\x8a\xc8\x9c\x06\xb3\xc0\x50\x7c\xdb\xeb\x94\xf0\xe1\x19\xf8\x46\x9e\xa8\x48\x4a\xe5\xdc\x1d\x2e\x62\x9e\x05\xe8\xcc\xf4\x4f\x72\x4a\xff\x24\x9d\x93\xea\xf6\x73\x91\x69\x76\x6e\x03\x08\x4a\xe6\x59\xa4\x1c\x89\x85\x25\x88\x1d\xcc\x29\x94\x90\xe2\x15\xcb\xf2\x29\x84\xfe\x0e\xc8\xc9\x07\x44\xe0\x14\x8d\x55\xbe\xf2\xbe\x7c\x10\x5d\x90\xdb\x63\x14\x0f\xfd\x9e\x4e\xf4\x0f\x3f\x24\x8a\x75\xf9\xea\x17\xd3\x33\xf2\xaa\x78\xd4\x59\x91\x0e\xaa\x3e\x92\xb4\x12\x0f\x45\x8b\x9d\x75\x32\x28\x95\xcc\x57\xa5\x8e\xbc\x48\x38\x67\xf3\xe2\x41\xbe\x0b\xa0\xde\x17\xa6\x99\x7a\x17\xaa\x1b\x85\x2b\x5c\x4b\x93\x5b\xf5\x80\x76\xc3\x9e\x36\xc7\x5c\xd1\x13\xfa\x8a\x5b\x22\x9e\x3f\x14\x71\xc1\x02\xba\x76\x0e\xfd\xcb\xf2\xf5\x5f\x61\xf7\xe1\x9f\xd6\xd5\x87\xb9\xb4\x27\xa7\xbc\x9c\xa5\x34\xc2\x80\x91\x43\x56\x96\x6d\xee\xc2\x48\xd6\x5c\x6d\xf9\xf1\xa4\x5f\xd6\x70\x72\x0a\xba\xda\x53\x44\x39\x4f\xcd\x1d\x04\x6a\x76\xb7\x2c\x9f\x9d\x6d\xc2\xca\xe7\x26\x82\xaf\x8a\x5c\x95\x4f\x30\x45\xc2\x1e\xeb\xc3\xb5\xff\xe1\x8f\xab\xfd\xd9\x39\xe7\xfd\xb7\x3e\xcb\x5b\xda\x76\x13\x3d\x45\x49\x10\xa6\x0b\x3d\x3a\x8a\x86\x5e\x83\x53\x24\x1e\x7b\x38\x31\xd5\x45\x38\x55\x46\x2d\x25\xc7\x6c\x0b\xee\x18\x05\x39\x17\x0e\x6a\xbe\x8a\x48\x9f\x81\x05\xf5\x14\x0e\x6f\xcb\x29\x07\xa7\xc6\x26\xa6\x54\x54\x9c\x80\x08\x5f\xde\x28\x3a\x5f\x29\x97\x93\xcc\x9f\x00\x76\x3f\x08\x17\x16\x70\x74\xc1\x83\xfd\x0b\x1e\xf2\x97\xdb\x25\xa2\x3d\xb3\xa7\x97\x25\xd4\x3f\xc7\xd7\x3d\x51\x4c\xc9\xc2\x93\x45\x85\x29\xe9\x3c\xe5\x3f\x2d\xf7\xdf\x26\x7b\x67\xe7\x78\x3d\x55\xe5\xf6\x74\x11\x29\xf2\x94\x8e\x98\xa2\x78\xc1\xc6\x88\x30\xf3\x2f\x35\xed\x28\xb5\x89\x10\x3b\x2f\x25\xbc\x64\x89\xc5\x8f\xb1\x52\x74\x66\xad\x14\x73\xb6\x89\xd4\xf6\x20\x22\x45\x53\x45\xa4\x4e\x81\xe4\x01\x10\x9f\x72\xa6\x6a\x8f\x25\xdb\xca\x5b\x12\xe6\xf8\x25\x93\x89\x9c\x4d\x52\xcc\x3a\x8f\xfa\x4f\xa0\xfc\x15\xb7\x15\x8f\x73\x90\xbb\x99\x88\x3d\xbd\x04\x66\x7d\x93\x82\xb8\x9b\xf4\xe4\x9d\xe4\xc2\x5a\x43\x3e\x1e\x5c\xa4\xa1\x3c\xc2\x2c\x6e\x9a\xb8\xa8\x6f\x56\xd0\x9b\xd1\x56\x5f\xec\xc6\xca\xbb\x26\x2e\x5f\x5c\x77\xa3\x9e\xa9\x36\x1c\x02\xb1\xe2\x49\xb2\x53\xbb\x89\x3a\xb5\x0b\xf5\xa9\xdd\xa4\x70\x6a\x37\x91\x67\x68\xd2\xb3\x61\xc0\x0a\x8b\xb2\x59\x33\xb2\x8f\x30\xcf\x69\xdb\x64\x35\xf9\xa0\x85\x03\xf8\x74\x75\x61\xae\x28\x68\xf4\x06\x75\x56\xfe\x19\xfc\x12\x7a\xb6\x84\xd5\xac\x54\xb8\x1f\xcd\x0f\xfe\xb9\x73\x9c\x59\x0b\xb7\x5e\x0f\x2d\x3e\xe4\x91\x2e\x83\x78\x7e\x22\x0f\x7c\xd0\xf3\x65\x1c\xfe\x2c\xe0\x12\x46\xae\x3f\x17\x95\xc5\xa7\xe1\x4f\x62\x37\x3b\x9b\xfa\x54\x71\x8b\xf2\xa1\xec\x18\xea\x21\x2d\xe6\xaf\x62\xeb\x7f\x5a\x36\xb0\xed\x4f\xc2\xcc\xb7\x74\xa3\x0d\xa7\x0f\xe5\xce\x9a\x3e\xb5\xe8\xdc\xe9\x21\xb4\x4b\xd8\x89\x4b\xf0\xcd\x15\xc0\x96\x43\xba\x4c\xa0\x54\x8b\x84\x91\x6f\xb6\x43\xa5\xd5\x22\x73\xb9\xa6\xcb\x7a\x53\x94\x92\x59\xd9\x9b\x45\x8b\x52\xb9\xa2\x57\x66\x92\x51\x30\x84\x10\xd5\x56\x2a\x4a\xab\x34\x59\x4f\x77\x14\x7c\x55\xf1\xc0\xa7\x71\xd9\x4e\x0a\x62\xf8\xc5\x4d\x82\x59\xfe\x6c\x76\x13\x32\x4c\xcc\xc8\x9c\xa2\xe7\x4a\x9d\x65\x28\x7b\xb3\xcb\xcf\x7e\xd2\x9c\x43\x12\x71\x43\x48\x1d\xa9\x5e\x7e\xf6\x93\x4f\xc5\x21\x65\x7a\x89\x32\x1b\x9e\xdb\xf6\x75\x0e\x31\x73\xfa\x51\x48\x28\x7b\x0e\x25\xce\x91\xf9\x7a\x1e\x75\x41\x82\x13\x67\x2f\x60\x49\x78\x78\x25\x09\x68\x3a\x8c\x93\x3d\x69\xc9\x75\xb9\x9f\x10\x42\xcf\x5d\xb9\x28\x26\x70\x75\xeb\x1f\x42\xe7\x90\x17\x21\x4d\x74\x43\x2c\x52\x3e\x12\x4f\xc4\x6d\x94\x73\xa2\xd0\xa7\xb9\xdc\x37\x9e\x2c\x4c\xc5\xb5\x50\xb8\x9e\xa9\x11\x15\xf0\x04\x19\x32\x64\x10\xa9\x85\x0e\x8b\xc7\x26\xf2\x4a\x3c\xee\x4d\xd1\x67\x4b\xcc\xb4\x3f\x9d\xb5\x8b\x39\xfd\x51\x40\x77\xc9\xe0\x4a\x3c\xe9\x8f\x48\x2a\x44\xf1\x6c\x60\xd7\xed\x41\xf4\x9c\xb2\x3d\xfd\xc3\xfb\x1a\xa3\xe5\x43\x54\x5a\x90\x9e\x69\x90\x6a\x95\xad\xdb\xf3\x89\x1c\xad\x84\xcc\xdd\x4a\x9b\x93\xfa\x0d\x21\xdf\x19\x12\x6d\x9d\x69\x4d\xee\xd9\x37\xb5\xe1\xc6\x8c\x8d\x87\xef\x9a\x4d\x37\xe5\xb4\x42\xdc\x7d\x0c\x07\x84\xb2\x70\x18\x92\x04\x63\x4c\xb5\x14\xe6\x14\xc9\xf6\x76\xe5\x1e\x1c\x23\x27\x78\x04\xfa\xb4\x78\xee\x61\x06\x09\xb5\x57\x96\x43\x61\x66\xa7\xd6\x6c\x9f\x85\x5d\xda\xc3\xa2\x1b\xba\x39\x7f\x40\xa1\xb9\xbd\x25\x79\xb7\xec\xb6\xc4\xf3\xf9\xbb\x51\x24\x58\x70\x83\x2a\x77\x73\x4b\x6c\x5a\x94\xa5\xf9\x54\xfe\x3e\x10\xeb\x8f\xc8\x69\x6f\x45\x8a\x03\xfd\xb2\x34\x9f\xcd\xbd\x57\x99\xdd\x86\x98\x4f\x17\x97\xa4\x2b\xbd\xd6\x92\xbf\x00\x26\x06\x80\x18\xc2\x65\x29\x9f\xcb\x5d\xa3\x11\x1c\x79\x8a\xcf\x2e\x73\x8a\x5d\x96\xee\x0f\x67\xd3\x2d\xb8\x2a\xf6\x99\xd9\x74\xe5\x9d\x30\x99\x4f\xb6\xa0\xe2\x7e\x2e\x25\x3b\x2a\xbf\x30\x94\x7b\x14\x53\x30\x5e\x59\x1a\x42\x66\x12\x95\x93\x97\xe5\x92\x1d\x84\x74\x10\x1f\x9c\xe2\x69\x8d\xec\x2f\xb8\x53\x94\xbb\x31\xd6\xcf\xac\x62\x16\xdc\xc1\x3a\xd3\x9b\x91\x14\x78\x70\xe6\xf5\x47\xed\x1e\x4c\xfa\xfb\x22\x55\xc2\x55\xc5\xaa\x9e\x32\x00\xf0\x6a\x8d\x2a\xb1\x1b\xd5\xb8\x16\xc0\x2a\xb3\x41\xb3\xd6\xae\xc6\x76\xa3\x1a\xc0\x2a\xb5\x81\x67\xeb\x58\x11\x92\xd8\x41\x35\x84\xab\xed\xa9\x2c\xed\xe4\xc5\x9c\x26\x6b\xfe\x62\x46\x50\xae\x17\xe5\x8c\x00\x6d\x5a\x65\x39\x33\xa2\x34\x3f\x8d\xb1\x1a\xc9\x1c\x3e\xf1\xa2\xe8\xb6\xb7\xee\x1e\x1f\xd3\xad\x9a\x78\x0b\xa0\xd6\x68\xbb\xd5\x9c\xeb\x72\xba\xda\x68\xbb\xd0\xa7\xd0\x8f\x81\xf1\xc4\xce\xfc\xbc\x1d\xf2\xe4\xe4\xf2\xe7\x73\x4a\xaf\x24\x26\x3f\xc9\x4c\x14\x4b\xa8\xe1\x09\x27\xf0\x36\x81\x9d\x49\xc1\x63\x5b\xa6\x1c\xd5\x16\xee\x1b\x12\x9c\x73\xf8\x4b\x8d\xf7\x1d\xfe\xcd\x93\xd5\x08\xa2\xd8\x5b\xa5\x19\x5b\x64\xce\x33\xb3\x8c\x76\x52\x95\xdb\x7a\xc2\x4f\x1c\xc9\x9a\xc3\x60\x87\xfa\x4c\x44\xcc\x72\x8c\xb6\x02\x13\xcf\x85\xc8\x47\x43\x41\xe2\x0c\xc5\x4a\xdc\x49\x10\x60\x85\x40\xc6\x03\x85\x2b\x20\x3e\xd3\x23\x26\x9d\x52\x53\xe1\x79\x97\x49\xc7\xd4\x13\x60\x5c\x55\x22\x96\x79\xe2\x9c\x65\x82\xbc\x31\x7b\x82\x43\xc0\x20\x22\xce\x2e\x8e\x25\xb0\x83\x03\x09\x68\xaf\x94\xa9\xf8\x14\xaf\x2a\x68\xc1\xe7\xec\x06\x7b\x7b\x01\x26\x28\x9c\x16\x06\x42\xbf\x8c\x41\x59\xfe\x2e\x39\xcb\x3c\x82\x65\x53\x4e\x0c\x0b\x66\x11\x71\xd1\x2c\x22\x56\xae\xe1\xb0\xbb\x49\xc5\x54\x49\x61\x58\xa4\x0c\x9f\x9d\x50\xc0\x27\xab\xd0\x49\x8e\x8f\x5d\x94\x4a\x78\x97\xc3\x13\x09\xef\x1c\x1f\x9b\x83\xa9\x00\x13\x10\xf0\x3a\x09\x48\x79\x5d\x04\x4c\x20\x0a\x4d\x83\xbd\xb2\x67\xa1\x43\x27\xc1\x62\x07\x20\x74\x76\xb1\x74\x32\xe9\xec\x08\x3b\x2b\x14\x0a\xda\x4c\xfb\x25\xeb\xd0\xcc\x03\xdf\x5c\x2f\x18\x4b\x00\xba\x85\xdd\x0e\xc5\xae\x2f\xde\x6e\x01\x14\x7b\x88\xd5\x3c\xe8\xe7\x5c\x95\xd0\x2a\xe3\x3d\x2f\x5c\xdf\x09\x0f\x78\xb6\xd7\x43\x29\x4e\xb6\xdd\x8e\x74\x78\xe2\xd7\xb9\x5c\x41\x13\x9c\x6c\xb1\x9a\xc7\x03\xed\x3a\x0f\x0c\x6a\xb1\x99\xb6\x01\xa0\xb5\x64\x95\xc1\x2a\x43\xa9\x70\xa8\x35\xe1\x4b\x22\x74\x12\xda\x8b\x91\xce\x21\x07\x00\xfd\x04\xf6\xe0\x96\xdb\xb1\x6d\xea\x53\xa8\x71\x05\x89\xcd\xdb\xf1\x09\xa6\x70\xe6\x40\x2a\xc3\x65\xe8\x44\x7e\xd4\xf9\x47\x19\x96\xc2\xf2\x4c\x62\x29\xc4\xee\x10\x8d\xd0\x18\x0d\xe6\xfc\xd4\xe9\xf9\xa2\x86\x85\x0b\xb4\x52\x61\xc7\xaa\x74\x3a\x45\x47\x78\xb5\x5b\xb3\x7b\x1d\xd0\xf1\x5f\x18\xd8\x2f\x38\x9d\x17\x06\xd5\x63\xf1\x63\x43\xfd\x06\x2e\x8f\x17\x4f\xe0\xae\xee\xa2\xfd\xfc\x53\xb0\x47\x6a\x39\x80\xac\x5d\x0b\xa2\xdd\x13\xdc\xde\x1d\x39\x51\x90\xb2\xc7\xe9\x80\x1c\xe2\xfd\x1c\x6c\x3c\x02\x76\x79\xe3\xd5\xb5\x7d\x79\xa7\x92\xf1\xbf\x9b\x80\xe6\x1e\x88\x12\xfe\x1f\xf6\xe5\x27\x83\x70\x13\x0a\x1b\x4d\xb1\xa5\x01\xb7\x63\xe5\x6b\x52\xee\x59\xc4\x28\x84\x28\xed\x06\xbd\x0e\xff\x63\xe3\xd0\x4f\xbb\xb6\x1d\xf4\x70\x08\x11\xa0\x98\x72\x7d\x1a\x63\xcc\x97\x0d\x1c\xec\xe4\x92\x26\x3a\x69\xe2\x03\x05\x89\x73\x6d\x65\xa4\x75\x3d\xf4\x03\x74\xe8\xef\x49\x0b\x54\xe1\x15\x2b\xd7\x22\xe3\xa9\x60\x8b\x65\x3e\x3d\x73\x68\x2d\x44\x2a\xdb\x2d\xe9\x4c\xba\x6e\xef\xc4\x7d\xd0\x9c\xb8\x02\x4c\xbe\xee\x02\x78\x26\xe7\x10\x9e\xb2\xcb\x99\x4d\x8c\x80\x89\xd7\xb7\xb4\xfd\x32\x2a\x5b\xcf\x52\xb5\x35\xc3\xc4\x1e\x49\xda\x05\x14\x4f\xc4\x16\x49\xd8\xc3\xd4\x39\xcc\x6d\x43\x6a\x83\x7d\x4b\xec\xbc\xed\x2c\xf0\xe0\xa2\x77\x3d\xf2\xfa\x3a\xc6\xec\xf8\xd8\xda\x89\xe3\x88\x04\xd4\xc2\x18\x87\x9d\x58\xe0\x66\xd1\xc9\xde\x0e\x49\x64\xd0\x9e\x9f\xad\x6f\x70\xc8\x45\x82\x11\x77\x81\x98\x08\x3a\x80\x61\x8a\x22\xe8\xef\xfa\x2c\xef\x66\x39\x71\x82\x4e\x54\x0c\x3a\x1f\x30\xd2\x29\x5b\xaa\x72\xce\xe6\x91\x4b\x8b\x86\x4f\x36\xcd\x51\x27\x25\xec\x4a\xb8\x47\x00\x1f\x48\x09\x44\x74\x3a\x9d\xf1\xfd\xc4\x60\x59\x25\xf3\xeb\x0c\xd2\xc9\x99\x04\x99\x8b\x98\xbe\x3b\xe3\x55\x70\xc6\x54\x28\x37\x01\x84\x62\x02\x10\xde\x4a\x77\x00\xe9\xd2\x9e\x5a\x9c\x08\x23\x1f\xbd\x70\x11\x73\x01\x0f\x9f\x13\x60\xaa\xbf\xf3\x65\x89\xc4\xbc\xc0\x5c\x0f\x07\x85\x63\x30\x63\xef\xc7\xe4\x36\xd8\x93\xc3\x4a\xa5\x34\x56\x6f\x3b\x98\xd7\x3c\x16\x51\xe5\xfa\x14\x85\xf8\xfa\x54\xb6\x6b\x39\x94\xcc\xb1\x82\x31\xa9\x54\xac\x58\xf4\x75\x6e\x69\x2b\x2c\x6e\xae\x4f\xb5\x7d\x17\x5f\xdb\xcd\x25\x62\xc7\xc7\x80\x89\x44\x0c\x8a\x02\x49\x27\x99\xa5\x91\x1f\x9e\x4a\x16\x9e\x33\x91\xeb\xbe\xa4\x48\x91\x70\x3a\xf5\xf7\xa0\x5a\x92\x5f\xbd\x6f\x09\x9c\x7f\xf5\x8c\x0b\x63\x28\x5c\x5b\xe6\x1f\x25\xb9\x80\xaf\x8b\x9b\xfc\x51\xc0\xc8\x73\xbe\x8b\xcc\xc7\xf3\xbe\x8b\x92\x98\x05\x8c\xf8\x2e\x4a\xaf\x91\x03\x1e\x9b\xf6\x83\x88\x3c\xe7\x7b\x12\x78\xde\xf7\xa6\xe8\x70\x66\x95\xae\xaf\x84\x2a\x33\x23\x34\xd1\xaa\x78\x90\xf3\x3a\x49\xaa\x1c\x1d\x26\x2f\xa7\xaf\xe2\x00\xb1\x55\x1c\x40\x04\x26\x98\x54\xa9\x60\x76\xbe\xb0\xaf\x61\x52\x9d\xa0\xa4\x86\x59\x75\x02\x11\xc8\x7b\x1b\xa7\x55\x6a\x27\xd5\x44\x14\x40\x57\x71\x8a\x12\xfe\x67\xb2\x8a\x53\x88\x48\x35\xd9\x62\x55\x2a\xac\x71\x6b\x04\x31\x5c\x63\x68\x82\x6b\x13\x3e\x0d\x04\x10\xe5\xdb\x1b\xe6\xdb\x1b\xeb\xf6\xe6\x3c\x96\x33\x44\x60\xf5\x40\xb5\xdf\x84\x83\x89\x08\x94\xc4\x08\x34\x31\xd2\xfc\x4a\xe0\x72\x76\xe9\x20\xaf\x7e\xe6\x74\x40\xb5\x87\x4f\xa4\xc3\x3d\xdb\x5a\xb6\x7c\xcb\x9a\xce\xb2\x48\x76\x61\xc4\x4c\x5f\x5a\xfa\x63\x21\xea\x95\x56\x95\xeb\x04\xe3\xb9\x53\x7a\x91\x5f\xc1\x38\x3c\x3e\x4e\x56\x30\x56\xbd\x32\xc1\xca\xeb\x94\x65\x1a\x0f\x2c\x24\x2f\x4d\xcb\x1f\x0a\x97\x52\x33\x11\x4d\x6a\x4d\x31\x15\x11\x61\x0a\x2d\x02\xea\x22\x20\x41\x31\x97\xc4\x24\x4a\x09\x08\x8f\x8f\x63\x69\x23\x37\x5b\xb0\x1d\xda\xcc\x8e\x6d\x0a\xa7\x20\x76\x32\xd2\xa3\xdc\xc7\xf3\x28\xc8\xc7\x04\xf9\x18\xae\x89\xcc\x2c\x0d\x39\x77\xf1\x56\xb1\x0e\x20\x35\xc6\x97\x48\x1d\x66\x63\xf1\xd8\x45\x8d\xf0\x4f\xde\xf3\x22\x00\xe6\xe6\x53\x2a\xa1\x10\x50\x68\x5b\xb2\xa3\x75\xab\x13\xa8\x5a\x24\x86\x19\x84\x3e\xab\x54\x4a\x93\xdb\xcc\x4e\x44\x3b\x64\x00\x0a\x34\x90\x2e\xc6\x71\x01\x06\x82\xa3\x16\x20\x30\x57\xbf\x4a\x6c\xaa\x17\xdf\x28\x50\xbf\xf3\x95\x27\xf2\x9e\x91\xea\x7d\x7a\x7c\xcc\x56\x30\x4e\x34\x1f\xc5\xba\xe8\x98\x17\xcd\x79\x57\xe3\x61\x21\x0d\x40\x0b\x2e\x05\x06\xf3\xd4\xb0\x00\x95\x2c\x90\x2a\x7c\x99\x50\x4f\xa4\x33\x2e\x0f\x8b\xf3\x16\xfe\x93\x1c\x1f\x97\x55\x62\x53\xdb\x42\x96\x9d\xc8\x47\xb5\x78\x3b\xc4\x08\x42\x0a\xe0\x6c\xa0\x42\x02\x1d\x22\xba\x3f\xc6\x81\xd4\x8e\x4a\xf7\xc3\x11\xe5\xda\x5d\x92\xdd\x92\xb2\x6d\xe1\x5a\x3b\xed\x72\xd5\x83\x4b\x60\xae\x4a\xb0\x45\xaa\xc4\x54\x2c\x79\x9f\xc4\x97\x41\xc9\x7e\x27\x8d\x29\x91\x2f\x7d\x5e\xf0\xc1\xf0\xf8\x18\x0c\xf1\xec\x6d\x1d\xe5\x17\xc2\x3a\xff\xf8\xb3\x16\x44\x23\xbc\x68\xab\x13\x8d\x73\x51\xd9\x8d\x67\x88\x86\xca\x5a\x85\xe9\x2d\x65\x61\xd9\x3e\x9e\xbf\xd0\x3c\x2a\x9c\xb2\x0e\xe1\xa2\xfb\xcd\x96\x29\x89\x23\x54\xb8\xa3\x3a\xcc\x1f\xb9\xad\xa1\x9a\xa7\x0f\xf6\x2c\x64\x41\x74\x08\x6c\xe1\xe3\xd1\x26\x5d\x4f\xfc\xad\x8b\xbf\x0d\xf1\xb7\x29\xfe\xb6\x7a\x10\x4e\x91\x35\x3e\x44\xcb\x16\xff\x81\x16\xb2\x06\x64\x17\x5a\x10\x3d\x5c\x4a\x42\xe3\x85\xe2\x82\x0f\x06\xc7\xc7\x60\xb0\x80\x80\x97\x2e\x83\x13\xdd\xb2\x70\xed\x1f\xa2\xc1\xcc\xa5\xce\xac\xa5\x88\x40\x04\x08\x1e\x64\x64\x74\x76\x82\x94\x3c\x1b\x44\x4e\x3f\xa6\x69\x1c\x85\x03\x3e\x84\xb9\x12\xc7\x29\x20\x77\xf1\xd1\x21\xc8\xde\xcb\xea\x23\xe2\x0c\x10\x71\x08\x22\xce\x10\x42\xff\x02\x6f\xa8\x68\x26\xb4\xe4\x80\x30\x82\xfc\x5a\xa9\xc2\xac\x0f\x53\x43\x4c\x40\x7e\x17\x61\x20\x77\x11\x46\x28\xaf\x51\x0e\x20\xa0\x3c\x90\x73\xf7\x04\x30\x27\x45\xd4\x49\xb9\x34\xe7\x1f\x11\xa2\x4e\x24\xb7\x16\xcc\x86\x02\xa2\x8b\xb7\x16\x72\x07\x34\xce\x08\x87\xe2\x3e\xae\x93\x0a\xb3\x48\xc4\x9c\x48\xae\xa0\x59\x6e\x6b\x81\x7f\xca\xe5\xb3\x69\xd3\xc5\xfb\x6a\x53\xbf\xac\x4d\xfd\x99\x36\xf5\x11\x75\xfa\x0f\xb4\x4d\xfd\xfb\x6b\xd3\x95\x92\x36\x2d\x33\xae\x1f\xe5\xe6\x64\x96\xdb\x3e\x2c\xb4\x71\xc7\xb4\x31\x2c\x04\x86\xb2\x8d\x81\xea\xb7\x90\xf7\x5b\xaa\xda\x18\xf2\x36\x46\x85\x36\x86\x67\x6d\x63\xac\xfb\x2d\xd0\x6d\x4c\x41\x61\x8f\x2c\xdf\xde\x28\x6b\xaf\x1e\x68\xd8\xa6\x48\xef\x11\x31\xb9\x47\x34\x15\xf9\x2f\x7f\xfa\xe9\x2b\x75\x74\x0d\xa4\x10\x5d\x03\x13\x88\x2e\x72\xe8\x22\x87\xae\x80\x54\x2e\xf2\xcf\xe1\x2b\x60\x02\x97\x4e\x7a\x5c\x63\xe7\x94\xc7\x2f\xf6\x4e\x79\x3c\xe3\xea\x29\x8f\x73\xe4\xb6\x94\x4b\x7d\xb5\x3d\x99\x73\xaf\x76\x8a\xbb\xab\xd2\xc7\x3d\xa2\x53\x1e\xe7\x38\xf7\x51\xde\xe6\x08\x87\x00\x50\x0c\x08\x66\x1d\xe2\xb0\xf8\xc2\xe1\x38\xa6\x84\xb2\x30\x88\x80\xd8\x55\x9a\x0d\x84\x30\xb3\x92\x20\x16\x84\x5b\x2e\xcc\xc9\xcb\xa5\xcc\xef\x61\x66\x1d\x61\xfc\xdd\x67\x46\x87\x49\xd7\xed\xd9\x89\x4a\x53\x87\x7e\x82\xec\xbc\x79\x45\x6f\xf6\x4d\x10\xa5\x89\x13\xac\xdc\x6f\x07\x3b\x7c\xd8\x40\xd8\xe1\x02\x5f\xbe\xc4\x10\xe3\xd5\xcf\x81\x8e\x0f\x1c\xd8\x01\xdd\xad\x6d\xfc\xb9\x1e\x17\x99\x5d\xfb\x85\x1a\x58\xee\x71\xe8\xa1\xff\xc1\x7f\x5c\xd8\x01\x62\xbb\x06\x20\x0e\x39\x12\xfe\xdf\x3c\x41\x50\x7b\xf9\x13\x3d\xd8\x79\x68\x35\x2c\xec\x8b\x17\x0e\xcc\xd3\x82\xb3\x8c\xd4\x78\x59\x64\x38\x36\x1b\x31\x90\x8d\x92\xf8\x40\x24\xbf\x90\x24\x71\x02\xac\x90\xee\x07\x51\x38\x58\xe6\xd2\x3d\x60\xfe\xb2\x65\x2b\x67\xc3\x4c\x5a\x65\x0d\xc3\x28\xc2\xac\xeb\xf5\x8e\x8f\xad\x65\x75\xd5\x3f\x88\xc2\x5d\x8a\x59\xb7\xce\x03\xb7\x55\x60\x2a\xc3\x1a\x3c\xac\xa6\xc3\x8e\xf6\x76\x62\x9e\xbd\xc9\x43\x55\xe0\xcb\x24\x89\xf1\xca\x0a\xeb\xb6\x7a\x32\xe0\x20\x1c\xb0\x11\x66\xdd\x76\xaf\x52\xb1\xf9\x8f\x7a\x88\x2a\xe6\x83\x8e\x27\x5c\x53\x21\xe3\x84\xf4\xc3\x34\x8c\x79\x3d\xeb\x32\xf1\x7a\x4f\xf5\x8d\x76\x53\xc0\x92\x70\x4f\x64\xda\x50\x99\x84\x1d\x00\xeb\x7a\xae\x40\x61\x1a\xe4\xac\x03\xd2\xdc\xcb\x06\x39\xd8\xac\x7d\x4b\xae\xc2\x19\x9a\xd8\x19\x25\x6c\xd3\x7e\x3b\xd7\x6a\x1b\x98\xd6\x9a\x17\xb1\xb5\x19\xab\x69\x75\xc7\xb2\xb2\x47\x5e\x3d\xe4\x1e\x67\x51\x10\xaa\x12\x04\x1d\x3a\x16\x9a\x2f\xc2\xd0\x83\x17\x63\x39\x85\xa7\x59\x55\x51\x26\x89\x29\x8e\x13\xa8\x63\xfd\x6f\x59\x9a\xa1\x90\xb4\x21\x10\x1e\x7d\xd0\x70\xc6\xeb\x14\xf1\xf3\x7a\x21\xc9\x2e\x5b\x7a\xc2\xa4\x74\x33\x11\x17\x32\x12\x98\x1e\x84\xac\x3f\x02\xa4\x9b\xf4\xe0\xf5\x7e\x90\x12\xcb\xb1\xfc\x10\x33\x9c\x2c\xed\x24\x24\xb8\xb6\x24\xc2\x5c\xcb\x77\xb1\x7e\x61\x26\x81\x28\x8b\x56\x1a\x9c\x1f\x0e\x41\xb8\xed\x4a\xee\xb5\x45\x69\x22\x7e\x99\x2c\x85\xd8\xcd\x76\xee\xb7\xdd\x4e\x36\x94\x43\x68\x46\x29\xb3\x3d\xe1\x78\x7c\x5c\x6a\xd6\x90\xc8\x37\x40\x78\xd9\xe6\x30\x9a\xd8\x96\x3c\x0d\x0b\xc5\xfe\x22\x8a\x31\xed\x7a\xd9\x9a\x70\xcb\xed\x58\xae\x63\xd9\xd9\x36\x4e\x2d\x86\x4a\xd9\x75\x2d\x68\x87\xbe\xbe\x0e\xb5\x1d\xdb\x5e\x27\x34\x48\xc5\xb6\x07\x6d\xde\x2f\x3a\x88\x07\xf8\x61\xae\xa0\xb8\xa6\xb3\xda\xf5\x5c\x91\x53\x34\xc0\xd7\xad\x4f\x58\xa5\x76\x25\xc0\x73\xdd\x2a\x81\x0e\x8b\x1f\x0d\x0f\xc9\x00\x30\x38\x45\x3b\x65\xdb\x87\x85\xe7\xd9\x33\x7b\x99\x3a\x9c\xa2\x7e\xe9\x03\x59\x7c\xe6\x43\xa5\xfe\xb9\x16\x14\xe5\xb9\x70\x8a\x16\xf8\xe1\x9a\x13\xd9\x7c\x26\x58\x9c\x34\x6b\xcb\xee\xe2\x44\x4f\x69\x6e\x16\x09\xe3\xfb\xc0\x74\x1d\x4e\xd1\xb8\xbc\xe0\xb1\x24\xa8\xd8\x0d\x4a\xfc\x31\x4a\x4b\x2d\x29\xcf\xce\x37\x28\xc0\x71\x0d\x4c\x70\xa3\x6a\x86\x63\x6d\x3d\x7b\x2a\x79\x3d\xff\x60\x43\x2c\x3c\x99\x43\xdb\x43\xa9\xb9\x53\x97\x1d\xed\x60\x9c\x76\x42\x3f\xd8\x4e\x3b\x79\x9e\x09\x6a\xa9\xed\xe5\x98\xc5\x0f\xb6\xdd\x1c\xd3\x05\x45\x96\x0b\xa0\x3f\xc3\xbc\x5e\x2d\xc8\x73\x2f\x6f\x58\x4e\x6e\x30\x3b\xa8\x79\x10\x76\xdd\xde\x14\x3d\x77\x3f\xac\xd0\xe6\x1f\xcf\x8c\xc7\x24\x39\x17\xa4\xe2\xc6\xd3\xe1\xfd\x65\x9f\x16\x9f\xed\xc9\xed\x79\xa3\x23\xdc\xb5\x8e\x2c\x64\xbd\x6c\x09\x3d\x8a\xeb\x3a\xd6\xd8\x42\x16\xb5\x90\xf5\xff\xbc\x66\x21\x6b\xcf\x42\x96\x85\xac\x6b\x16\xb2\x2e\x5a\xc8\xfa\xa4\x85\xac\x2b\x16\xb2\x9e\xb2\x90\x75\xc1\x42\xd6\x67\x2d\x64\x3d\x6f\xfd\xbf\xec\xfd\xfb\x7a\xdb\xb6\xb2\x30\x0e\xff\xef\xab\xb0\xf9\x4b\x54\x40\x1c\x4a\xa4\x9c\x53\x69\xc3\x7a\x5c\x27\x59\x49\x1b\xc7\x69\xec\xa4\x07\x9a\xf5\xa2\x25\x48\x62\x2c\x93\x2a\x49\xd9\x56\x2d\x5e\xda\xfb\xbc\x97\xf4\xde\xc2\xf7\xe0\x44\x82\x14\x65\x3b\x6d\xd7\xda\x6b\xef\x6f\xaf\x67\x35\x16\x81\xc1\x60\x30\x00\x06\x33\x38\xcc\xf8\x70\xb5\x7a\xa1\x07\x84\x4a\xc0\x1f\x5f\x71\xef\x47\xb4\x93\x4d\xe2\x79\x1a\x44\xc3\x94\x07\x99\x29\xb2\xb8\xec\x2b\xf2\x2a\x9b\x43\xa5\xe5\x5c\x71\xd6\xed\xa9\x57\x5a\x19\x1b\x1d\x73\x62\xef\x84\x7b\x76\xab\x95\xb2\x7f\xd0\xdc\x4c\x4d\x87\x3b\x7a\x4f\x89\xb6\x04\x24\xd6\x1c\x63\x88\xd5\xdb\xfa\x74\x7e\x2e\xf6\xcf\x51\x68\x91\x14\x42\x33\xc5\x18\xb6\x10\x9a\x9b\x84\x8d\x82\xbd\x04\xe3\x1d\xcc\x2a\x08\x08\x0a\xf8\x61\x94\xac\xbe\x14\x5f\x65\xc8\x14\xd1\xeb\x11\xce\xb1\x7b\xc9\x43\x1a\x0d\xe6\x49\x42\xa3\xc1\x82\xc7\xb5\x1a\xd2\x41\x78\x19\x4c\x61\x4a\x68\x27\x9a\x5f\xd2\x24\x98\xa6\x0f\x3c\xcd\xc8\x3a\x09\x9d\x4d\x83\x01\x45\x5d\xcf\xb6\xbe\xf5\xbb\x63\x68\x3a\xf3\xf0\xcc\xcc\xcf\x71\x9e\xa3\xb2\x02\x46\xc9\x80\xd0\xce\x8c\x26\x03\x7e\xc7\xcc\x78\xac\x79\xc4\x1b\x95\xe7\x78\x88\x72\x15\x1e\xf3\xc5\x97\x77\x05\x5f\x7b\xb9\x77\x74\xb6\xf4\xc2\x88\xfd\xe0\x2b\x2f\xcc\x08\xe5\xeb\x2e\x5c\x12\x2a\x16\x53\xb8\x62\xad\x65\x0b\x29\x8c\x59\x6d\x4a\x8e\xc0\x39\x11\xb7\x71\xe1\x4c\x7a\x7b\xd9\x30\xf8\x61\xc6\x59\x1f\x5d\x91\x2d\x1b\xce\x08\x33\x92\xdd\xa1\x77\xe6\x2f\x97\x72\xed\x1d\xb7\x5a\x68\x4c\x9c\x1e\x86\xf3\x12\x04\xd0\x6c\xb9\x34\x6c\x56\x36\x6b\xb5\x0c\x62\xf0\xdb\x4e\xad\x16\x9a\x31\x98\x8c\x18\xb6\x01\x11\x31\x88\x21\xb4\xab\x6b\x62\x3c\x62\x20\xa3\x7e\xec\xd9\xbe\x6b\xfc\x7f\xfc\xa3\xd5\xea\x7a\xe7\xf1\xcd\xcf\x7e\xb7\x93\xd1\x34\x43\x67\x98\xa9\x0e\xe6\x59\x27\x8b\xdf\xc5\xd7\x6a\x66\xb9\x86\x01\xaf\xb4\xf2\x8e\xef\x76\xbd\xc7\x33\xad\xd0\x80\x81\xdc\x10\x46\x35\x1c\x93\xae\x37\xa4\xa3\xf1\x2c\x49\x1f\x97\x20\x25\x8f\x8f\x14\x8f\x63\x08\xd8\xe2\x4f\xae\x61\x48\x5e\x31\x41\x67\x0c\x38\x27\xf0\x90\xdc\x20\x8a\xcd\x21\x50\x62\x18\xdc\xf7\xf7\xad\xd8\xde\x11\xf7\x14\x76\xb9\xe3\x70\x4a\x6e\x74\xfd\x17\xc6\x18\xce\xf9\x6e\xf1\x84\x07\xe6\x3d\xe2\x21\x79\x4d\xda\x6a\xa1\x23\x7e\x77\x78\x44\xd0\x51\xdf\x40\xe2\x58\x28\x74\x0d\xcb\x60\xff\x11\xbe\xaf\xaa\x92\x0d\xc3\x0d\xb1\x39\x82\x21\x41\x46\x2a\x7a\x65\xe1\xbd\x30\xe7\xdd\x6d\x9f\x6b\x2f\x43\x13\x1d\xb5\x5a\x05\x34\xe6\x3a\x0d\x1c\xf3\xbb\xc2\xd2\x21\xb8\xf6\x96\x39\xde\x0d\xf8\xad\xce\x27\x2f\xf6\x10\x1b\x72\x83\x49\x90\x1c\xc4\x43\xba\x9f\xa1\x18\xe3\xe5\x72\xb0\xf7\xf4\x39\xbe\x1d\x12\xf4\xe4\x19\x21\x64\xd0\x4f\x0b\x8d\x82\x2f\xdb\xc5\x07\x16\xac\x28\x75\x8f\x18\x0b\x05\x26\xcf\xaf\x5a\xad\xad\x19\x6f\x75\xc2\x23\x2e\xdb\xd2\x11\xcb\x3e\x19\xa9\x65\x5e\x11\x64\x16\x6e\x0c\x2e\xc8\xfe\xee\x65\xbf\x94\xcf\x97\xd6\x7e\x21\xdf\x33\xd6\xd9\x1b\x52\xb1\xba\x6a\xb5\x14\xf2\x0b\x93\xc2\x85\xda\xed\xbe\xb4\x14\x2e\x97\x55\x09\x17\x84\xbf\xa0\x97\x3a\xd8\xae\xe1\x52\x32\x32\xa9\x39\x34\x2f\x74\x3d\x8c\x88\xf4\x0b\x96\xa3\xa7\xff\xc6\xd2\x2f\x8a\xc6\xed\x13\x55\xcf\xde\x9e\x83\x4d\x89\x48\x66\xef\xe3\x9a\xea\x46\xc9\x85\x00\x51\x5a\x1a\xf7\x76\xa9\x8c\x51\xf9\xe0\x60\xdc\x7f\xe6\x76\x3d\x36\x20\xb5\x21\xab\x89\xc0\x62\xa9\xec\x39\x30\xc6\xd8\xad\x07\xf1\xe2\x59\x36\xcb\x82\xa3\xbb\x74\x75\xa1\xcf\x1c\xc9\xea\x6f\xa5\x85\x33\x02\xf1\xe3\x43\x42\x47\xe1\x4d\xe3\x5a\x3f\x42\xa8\x10\x37\xdc\x50\x60\x0b\x0e\x1b\xc5\xc9\x83\x16\xf5\x10\x65\x98\xaf\xeb\xca\x6b\x80\x0a\x04\xc5\x1d\x05\xb0\x11\x9c\x74\xb7\x1b\x0f\xae\x94\x35\x87\xe2\x36\xc5\x66\x9a\xe7\xfa\xe9\xc7\x58\x83\x98\x92\x2b\x36\xc9\x06\x64\xda\x11\xad\xe1\xde\x05\xf4\x86\xc1\x34\x1f\xa3\x5b\x29\xd3\x99\x71\x00\xc5\xd2\xe5\x1a\x60\x80\x5a\xd5\x5c\x6f\xdb\x07\xb5\x0e\xb8\x9e\xf1\x88\xad\xa4\xbe\xbc\xa6\x70\xbe\x36\xf6\x93\xe8\x0e\x2b\xac\xda\xbc\x6b\x8f\xd3\xb4\x32\x5f\xc5\xc1\xd5\x0a\xae\xd7\x04\xf0\x24\xba\xf0\xc9\xb4\xf0\x59\xd8\xaa\xe8\x37\x0c\xb5\x15\x32\x64\xa6\x53\xdc\xfe\x14\x8c\x7b\x29\x06\xf1\xbb\x78\x10\x34\xdf\x08\xd4\x43\xa1\xf2\x12\xf7\x5c\x2d\xd4\xfb\xe3\x9e\xab\x9e\x02\x74\x7d\xd5\x57\x75\xd0\xe3\x19\x1d\xf0\x5b\xb5\xf7\xdc\x46\x2d\x96\x3a\xae\x60\xdf\xb3\x07\x55\x00\xaf\xa7\xf9\xac\x01\xfa\x23\x53\xe7\x9a\x80\xaf\xbf\x6e\xfb\x27\x42\x76\xf5\x62\x19\xb7\x01\xed\x5d\x42\x3b\x0b\xa6\x98\x2d\x76\x1d\xdb\x56\x0a\x81\x3a\xf4\x47\x96\x03\xb4\x73\x29\x37\x9a\xdf\x00\xed\x1c\x02\xed\x1c\x03\xed\xbc\xd3\x6e\x6a\xa7\x34\x7b\x3d\x9f\x4e\x7f\xa1\x41\x82\x68\x67\x81\x21\xd3\xdd\x2b\x70\x3c\xb4\xb3\x58\x8b\xa8\xdc\x57\x89\x1f\x48\x15\xfb\xa7\xf3\xe9\xe4\xe0\x2e\xf2\xaa\xf4\x7d\x3a\x39\xb8\x8f\xc4\x02\xe9\x5d\xb4\x6a\xc4\x6a\x5b\x44\xb7\x0b\x97\xc2\xa5\x6b\xc3\xd0\x75\xe0\x8d\x6b\xc3\xa1\x6b\xc3\xb1\x6b\xc3\x3b\xd7\xce\x6b\xdb\x46\xea\xe6\xd4\x30\xc8\xe8\x49\x78\x49\xb9\xba\x35\xe4\x67\x72\x4c\x4b\x62\x29\x73\xa1\xb3\x85\xf1\x30\xe5\x0a\xe3\x30\x58\xa4\x5c\x91\x4b\x27\x71\x92\xbd\x64\x5f\x4c\x21\xbb\x8c\xa3\x6c\x92\xc2\x44\x65\x1c\x8a\xef\x21\x39\x47\x73\x0c\x97\xe4\x8c\xfd\x59\x90\x73\x34\xc5\x70\x45\xce\xd8\x9f\x31\x39\x47\x03\x0c\x37\x94\x9c\xb1\xbf\xc7\x94\x9c\xa3\x11\x86\x23\xf6\x3d\xc2\xb0\xcf\xbe\x27\x18\x2e\xd8\xf7\x04\xc3\x21\x25\xb7\x41\x93\xa1\x31\xf0\xf8\xdb\x80\x97\xc1\x02\x61\x3f\x87\xfd\x26\x98\x69\x15\xa6\xd1\x8a\x9e\x08\x18\x4e\x39\x87\xfa\xae\xf1\xaa\x4e\x1d\x6a\xe0\xf2\xd3\xb5\xa1\xfb\x06\xa8\xfb\x06\x46\xee\x67\x78\xe3\x7e\x07\x6f\xdd\x4f\xf0\xc5\xfd\x1d\xde\xb9\x3f\xc1\xa5\xfb\x0b\x1c\xba\xff\xa8\xd8\xa5\xe5\x5d\x66\xcf\x14\xcf\x20\xde\xc4\xf3\x24\x45\x78\x8f\x29\x9c\x7e\x0e\x3f\xba\xd7\x14\x52\xf7\x15\x85\x63\xf7\x07\x98\xbb\x8f\xe0\x93\xfb\x23\x7c\x76\x7f\x86\x6b\xf7\x57\xf8\xc9\xfd\x1e\x6e\x44\xcd\x3f\x8b\x3f\x0b\x97\x52\xf8\xc5\xcd\x28\xfc\xea\x46\x14\x8c\xc7\x86\x7b\x46\x73\x38\xb9\x87\x6d\x9f\x4e\x0e\x1e\xc2\x39\x0d\xec\x2e\xe6\x7d\x3a\x39\x78\x18\xff\x2a\x80\x05\x0b\x13\x0a\x94\xfd\x33\x72\xe7\x14\xde\xb8\x21\x85\xb7\x6e\x4c\xe1\x8b\x1b\x50\x78\xe7\xa6\x6c\x5c\x4f\x29\x1c\xba\x03\x7a\x0f\x2f\x3f\x9d\x1c\xdc\xc1\xce\x11\x85\xb9\x3b\xa1\xf0\xc9\x9d\x51\xf8\xec\x0e\x29\x5c\xbb\x97\x14\x7e\x72\x17\x74\x85\xa9\x57\x8c\xa9\x63\xc6\xd4\xf3\x92\xa9\x07\x35\xa6\x56\x9c\x19\xca\xdb\x6f\x6a\x2b\xb9\x9c\xfc\x49\x1f\xd1\xce\x35\xb9\xa1\x5e\xe2\xd9\x7e\x55\xd5\xf7\x21\x32\x79\xaa\xba\x5d\x64\x39\xd5\x0e\xd1\xab\x58\xdc\x57\xc5\xd5\x43\x6b\x38\x5f\x53\xc3\x3e\xbd\xbb\x8a\x4b\x72\xf1\xe0\x56\x7c\xb7\xa6\x8e\xe3\x7b\xeb\x38\x7a\x70\x1d\xfa\x36\x97\xb8\x37\x22\x31\xbd\x2f\xa3\xda\xe7\x30\x74\x0f\x80\xba\x07\x30\x72\x5f\xc2\x1b\xf7\x03\xbc\x75\x3f\xc0\x17\xf7\x23\xbc\x73\xdf\xc2\xa5\x7b\x02\x87\xee\xfb\xda\xde\x51\x49\xed\xf0\x6e\x62\x67\xe4\xf2\xa1\xb4\xfe\xe8\xbe\x86\xd4\xfd\x03\x8e\xdd\x2f\x30\x77\x5f\xc1\x27\xf7\x06\x3e\xbb\xc7\x70\xed\x5e\xc3\x4f\xee\x11\x54\x55\xd5\x7a\x5b\x22\x9e\x54\xdd\xb2\xa9\x5c\x0d\xe7\x50\xa9\x70\xd8\x00\x0b\xf7\x02\x7e\x71\xf7\xe1\x57\xf7\x90\x0f\xde\x77\x9a\x9a\xf9\x91\xae\xbd\x6f\x7f\x55\x86\xb0\x25\x9e\xcf\xa3\xd8\xc2\x9c\xd8\x7c\x01\xd0\x63\xa2\xd5\x2f\xed\x31\xcb\xb9\x5c\x19\xcd\x48\x86\x79\x9d\xee\xe0\xed\xe7\xdc\xab\xaa\x66\x8a\xa5\xdc\x73\x54\xb1\xfd\xc1\xb9\x3a\xe7\xee\x04\x65\x78\xb1\x90\xcc\xbc\x44\x96\xd9\xcf\x90\x69\xa6\xd8\xc7\xfd\x5a\x8a\x1b\x12\x83\x5f\x32\x48\xfa\xfc\x0e\x90\x6d\x00\x8a\xb9\xfb\x5b\x71\x17\x35\x46\x11\x84\x18\x83\xac\x28\xc1\x30\xe7\xfb\x29\xc5\xde\x5b\x13\x01\x81\x76\xc1\xa1\x60\xd7\x87\xbb\xd9\x15\x42\x0a\x73\x12\x20\xe7\x5b\xdb\xe6\xbb\x87\xef\x19\x36\x0a\x11\xbf\x2a\x6b\xe3\xad\xc2\x1d\x43\xe5\xac\x8a\x59\xdf\x3f\x1a\x61\xb4\x39\xc7\x75\x1d\x60\xde\xf9\x91\x23\x32\x66\x3c\xbf\xd5\x42\xf3\xce\x1b\x32\xef\xbc\x79\xec\xf4\x4c\xa7\xd7\x9e\x77\x66\x18\x8c\xcf\xa2\x30\xd3\x54\xe6\x9d\xcf\xbb\xce\x72\x39\xef\x7c\xde\x7b\xba\x5d\xa9\xc5\xb8\xe6\x50\xcb\x25\x9a\x77\xae\x89\x83\xc1\xf8\x95\x27\xf4\x51\xca\xf8\x1c\xa3\x00\xcd\x3b\x0b\x8c\xb1\x2e\xea\x21\x24\xe9\xde\x93\xe5\xd2\xe6\xdb\x93\x49\x67\x26\xc2\x36\x86\xd8\x2d\xce\x73\x67\x18\x85\xc2\x73\xeb\xb4\x13\x8f\x46\x29\xcd\x50\x08\xcf\xdb\x8c\x12\xcb\xc1\x18\xe6\x9d\x05\x09\x25\xce\x42\xe5\x61\xc9\x97\x45\xb2\x5c\x05\x60\xde\x19\x16\x69\xbc\xf9\xd8\x64\xc4\x9a\xcf\xf0\xe3\xe7\xd8\x15\x74\x66\x15\x3a\x1b\x89\xa4\xab\x44\xd2\x82\xc8\xe0\x6e\x22\x9b\x28\x5c\x21\x6f\x85\x36\x71\x85\xcb\xf8\x49\x72\xd8\xf8\x24\x3a\xa4\xd5\x42\x55\xae\x1b\x73\xc1\xf2\x79\x67\xfe\xf8\xb9\x2b\xe1\xfb\x8e\x6b\x33\x5b\x51\xf5\x47\xd1\x13\x7a\x47\xb8\x99\x9e\x2a\x9a\xcd\x08\xb4\x39\x55\x0a\x53\x41\x91\xf9\xbc\x3d\xef\xfc\x64\xa1\xd4\x7c\x8a\x1f\x3f\x77\x59\x32\x4b\xf9\xc4\x52\x38\xc5\x72\xec\x17\x63\x60\xde\x79\x63\x92\x79\xe7\xd7\xae\x63\xdb\x4b\x86\xf4\x90\x7f\x3e\x76\x6c\x1b\x62\x34\xc7\x8c\x80\xb9\x3e\x15\x34\xa1\x7a\xab\xb9\xab\x52\x7b\xa0\xa5\xb7\xcd\x48\x77\x5a\xc5\xc7\x68\xb2\x47\xd4\x48\x17\x11\x0e\xb9\x60\xe0\xf7\xaf\x35\xd9\x10\x98\x26\xc6\x1c\x5e\x65\xc8\x44\xd8\x42\x31\x39\xa0\x5e\xb8\x19\x46\x9b\xb3\x7e\x25\xcf\x0d\x7d\xbc\x5c\xf2\x39\x2f\xd6\x80\xf2\x5c\xd8\x72\xc4\x2d\x2b\x86\x90\x4d\x44\xad\xaa\x84\x55\x55\x40\x29\x91\xae\x7e\x1c\xd2\xce\x0d\xf9\x48\x51\x04\x87\x94\xa9\xa0\x9d\x9f\xd9\x57\xaa\xbe\x06\xec\x2b\xe3\x5f\x27\x05\xe4\x89\xf8\x92\x90\xf2\x4b\x42\xb2\xaf\x62\x7f\x62\xe5\x09\x03\x93\xc8\x5c\x5c\x1c\x6a\xee\x23\xee\xdc\xf8\xc8\x21\xcb\x61\x16\x24\x69\x93\x0f\xf8\x0f\x0a\x5d\xf8\x35\xd8\xe6\xd9\xe0\xf5\xbd\x04\x9e\x7c\x15\x81\xf3\x6c\xf0\xe1\x0e\x1a\x75\x57\x65\xf7\x22\x13\x37\xce\x8a\xf3\x4b\x98\x91\x5b\xbe\xa5\x68\xc0\x99\x6b\x6c\x1a\x60\xb3\x35\x20\x87\x21\xe9\xfe\x76\x9a\xb6\x4f\x87\x66\x17\x2e\x49\xf7\xb7\xc7\x5d\xfe\x90\xe2\xf4\xf4\xb7\x47\x6d\xb3\xbf\xf4\x4e\x7d\x84\x3b\xb7\xb9\xdf\x1d\x97\x0b\xe2\x55\x75\xc5\xa7\xbb\x76\x5f\xa2\x0e\x09\x4a\xfa\x16\x75\x29\x36\x0d\x43\xf3\x8a\x58\xa8\x00\x26\x8a\x77\x23\x6d\x6b\x2f\xb2\x62\x6d\x6b\xcf\x0c\xdd\x50\x33\xd6\xc6\x95\x9b\xac\x6a\x43\x7d\x01\xc6\xe9\xe9\xa3\x96\x1e\xc1\xe2\xbc\x76\xf0\x2f\x1f\x75\x18\xbf\xa1\xbe\x6b\x98\x94\xfb\x91\x18\xab\x23\x9e\xa5\x81\x4d\x7e\xd9\x2a\x34\xea\x21\x3a\xca\xd7\xef\xb7\xb9\xba\xf0\x47\x6b\x17\xfe\x32\x8f\x7a\x51\x5d\x7d\x21\x51\xf9\x7a\xbc\x40\x79\x7d\xb7\x62\x04\x3c\x4a\x56\x4d\x21\xe5\x5a\x50\x83\x32\x54\x20\x7d\xf5\xd5\x48\xe7\xf7\x23\xbd\xb9\x17\x69\xaf\x86\xf4\xd3\xfd\x48\x8f\xbf\x1a\xe9\xe7\xfb\x91\x1e\x7d\x35\xd2\x9f\xee\x47\xba\x7f\x2f\xd2\x27\x35\xa4\x8b\xfb\x91\x5e\x7c\x35\xa5\x12\xa9\x89\xf8\x9f\xbd\x67\x2f\xfa\x4c\x47\x72\x7b\x74\x1b\xdf\x55\x51\x2d\x4c\x7e\xf7\x37\xf4\x2b\x5e\x22\xcf\xb4\xfc\xd3\xe1\xe9\x10\xa3\xbe\xeb\xf6\x11\xff\x89\xfb\xdd\x55\x2a\x9e\xd5\xa8\xf8\x95\x24\x9e\xe3\xf7\x6d\xd7\x42\x89\xd7\xf3\x4d\x94\x88\x1b\x2c\xb6\x6d\xe0\x3b\xe9\x38\xf9\xea\x06\x5f\xf2\x17\x4b\x96\x73\x17\xd6\x83\xaf\xc6\x3a\xbc\xbf\x6f\x3e\xde\x8b\x74\x7b\x85\x54\x1b\x1e\x84\xfa\xc3\x57\xd3\xfb\xe6\x7e\xa4\xef\xbf\x1a\xe9\xe1\xfd\x48\xbf\x7c\x35\xd2\xe3\xfb\x91\xbe\xfd\x6a\xce\xbe\xbb\x1f\xe9\xcb\x7b\x91\xd6\x07\xf1\x3b\xfd\x0d\x23\xc3\xdb\x75\xee\x99\x45\xef\xaa\x75\x5c\xde\x23\x57\x2b\x98\x2a\x88\x5e\x7f\x95\x39\xfc\xe3\xfd\xad\xff\xe3\x2b\x11\x3a\x74\xbb\x7d\x2f\xd2\x37\x15\x1b\xed\x0a\xd1\x52\x65\x87\x0c\x7a\xda\xc2\xf8\x5d\x13\xa4\xdc\x33\xaa\x81\x7e\xba\x03\xf4\xb1\xd3\x5b\x2e\x9d\x5e\xad\xc4\xef\xb5\x12\x8e\xc9\x8c\x8f\x41\x3c\x8f\x32\x54\xd8\x25\x17\x18\x51\x0c\x94\xd5\xb6\xad\x95\xfd\xa9\xa9\xb6\xc3\x70\x3a\x0d\x53\x3a\x88\xa3\xa1\xa0\x4f\x2f\xf1\xb9\x52\x42\x94\x37\x0d\xdb\xb6\xb5\x28\x52\xbf\x34\x62\x15\xc6\x8d\xe9\xd4\xc8\xff\x47\x33\x09\xd1\x3c\xa3\xab\xdc\xf9\xa1\x09\xf8\x58\x23\x55\x07\x7e\xa4\xef\x3a\x2b\x63\xa6\x12\x5e\xbb\xff\xdc\xd5\x74\x8d\x1f\x6b\xc8\x93\xce\xe4\x0e\x36\xea\x35\xfd\x5c\x75\x71\x53\xaf\x8b\x92\x68\x8f\x48\xbb\x31\xea\x17\xc8\x42\x86\xcc\x4d\x3a\xa1\x30\x23\x29\x06\x56\x67\xb8\xae\x4e\x13\x3d\x21\x84\x54\x93\x8b\xaa\xea\x14\xfd\x5a\x51\xfb\x14\x54\x99\xff\xfd\x4a\x5b\xe9\x03\xdb\x4a\x69\x53\x1f\x94\xe6\x2c\xb7\xe4\xaa\x45\xb2\x7b\x8b\xd0\x27\x90\xc1\x13\xad\x48\x44\x6b\x9d\x77\x12\x5e\xd2\x3f\xe2\x88\x1e\x09\xa3\xba\x0c\x6a\xba\x27\x14\x67\x94\xb5\x99\xae\x69\x98\x06\xc6\xe6\x15\xca\xba\xcf\x98\x79\x69\xd8\x06\xf4\xf8\xf7\xe3\x67\xea\xab\xac\x24\x69\xa4\xab\xd8\x13\xa8\xb5\x22\x5c\x07\xdd\x3c\x91\xe3\x7b\xc0\x9b\x27\x73\x50\x2f\xc5\x66\xf3\xb4\xde\x35\x57\xcd\xb3\x39\x5d\x57\xe5\x9d\x33\x7a\x5e\x2d\x25\x91\xd4\xe7\xf4\x74\x2d\xee\x35\xf3\x7a\xb0\x9e\x98\xe6\xb9\x3d\x5a\x57\x60\xdd\xfc\x9e\xd4\xc7\x88\xda\xc3\xb8\x63\x8e\xcf\xea\x95\x24\x9d\xf4\x0e\xee\xea\xd5\x0d\xe9\xca\x2c\xaf\x57\xb8\x66\xa2\x67\x72\xa2\x67\x95\x89\x9e\xad\xab\xb7\x36\xd1\xaf\xd4\x44\x57\xb5\xd5\x09\xbb\xa4\xf5\xc9\xae\x20\xb5\x60\x9b\xab\xed\x9e\x3d\xb0\xdd\x57\xeb\xfa\xe5\xce\x39\x3f\x7e\x48\xa9\x95\x69\x7f\x4e\x0b\x0b\xdc\x30\xed\xea\x08\x3c\xd3\xf2\x1e\x6b\xe9\xd7\x5a\xf3\x4d\xaa\x59\x79\xb4\x7e\xbd\x40\xa8\x32\x26\xe5\x8a\x8c\x66\xb9\xe9\x80\x73\xf1\x3e\x65\x4a\xe6\xea\x0e\xc4\x80\xcc\x3b\x7c\xd7\x83\xc7\xf7\x2a\x76\x2c\x60\x22\xbe\xf8\x66\x03\xcc\xf3\x1b\x8a\x6e\xd5\xd1\xa6\x6b\x3c\xbe\x81\xcd\xc7\x3f\x1b\xc0\x52\x5c\xe3\xb1\x75\xd9\x7d\x6c\x0d\xbb\x8f\x7f\x31\x20\x13\xf9\xd6\x5b\xf7\xf1\xa1\xfb\xf8\x78\xf3\xf1\xcc\x00\x79\xe6\xe9\x7a\xc6\xfe\xa1\x01\xc6\x87\x43\xc3\x87\x61\xb0\x60\x09\xc7\xf3\x68\x18\x2c\x0c\x30\x0e\x63\xf9\xe3\x64\x4e\x53\xf1\xeb\x27\x3a\x8c\xd4\xef\x93\xc9\x3c\x91\x3f\x5f\x27\xa1\xf8\x71\x1c\x64\xf3\x84\xfd\xf4\xa1\x38\x40\x15\x28\x05\x3e\x81\x4c\x20\x12\x28\x44\x69\x51\xd4\xf0\x41\x1c\xb4\xba\x9e\xf1\x7d\x10\xcd\x83\x84\x23\xa7\xe7\x89\xfc\x79\x18\x24\x83\x89\x01\xc6\xfe\x2c\x09\xa7\xfc\x9b\xa5\x7e\x3f\x8f\x28\xff\x33\x65\x5f\xfb\xf3\xf1\x3c\xcd\x18\x42\x3a\xcb\x28\x7f\xc1\x0f\xc6\xd1\x20\x8b\xc5\xaf\xf7\xf1\x95\x4a\x7c\x49\x07\xe2\xa7\x24\xf6\x50\xab\x5b\xd4\x2b\xaa\x14\x15\xea\xd5\x89\xda\x44\x65\xa2\x26\x51\x87\xc0\x2f\x50\x17\x97\x4f\x8e\x29\xe1\xe7\xdd\xfa\xbd\xfc\xb7\xc7\x47\x62\x1f\xa8\xe9\x62\x62\x05\x00\xe1\xdc\x1d\x21\xe3\xf1\x2f\xd6\xe3\x4b\xeb\xf1\xf0\xe4\xf1\x1b\xd1\x8b\x9d\xc7\xef\x7e\x35\xf8\x71\xb2\x59\x6c\xa9\x1b\x3d\xdb\xb6\x2d\xdb\xb1\x6c\xe7\xc4\xb6\x5d\xfe\xff\x8e\x6d\xdb\xbf\x1a\xb8\xbf\xba\x37\x55\x5e\x18\x28\x5f\x94\x17\xfe\x71\xe6\xd3\xa9\x9b\xe5\xee\x64\x6d\xcd\x1b\x45\x44\xf8\x4b\xfa\xfa\x61\xd7\x4e\x6e\x74\x27\x53\x45\xb1\x7b\x9e\xe3\x30\x40\x3e\xe0\xef\xb9\xa3\x52\xcc\x92\x7b\x2e\xa8\xa8\xf9\xd3\x04\x36\x69\xa2\x6f\x7d\x7b\xd2\x12\x3c\x4c\xe3\xf5\xb5\x1f\xd3\x0a\xe0\xda\xea\x8f\x68\x8e\x73\x00\x78\x88\xb7\x2b\xad\x74\xa9\x27\xa1\x5a\x3c\x57\x7b\x27\xda\x2d\x03\x30\x98\x66\xe1\x85\x9d\xfb\x1b\xe8\x50\x71\x79\xf5\x7c\x4a\x89\xfe\xb1\x5c\x6e\x39\xc0\x1d\x69\x8f\xc2\xf1\x5c\xe4\x6f\xd9\x60\x70\x3f\x0b\x46\x18\x6d\x26\x3c\x68\xd6\x75\x12\x66\x32\x0f\x83\x90\xe8\x1d\x11\x27\x4e\xf7\xcc\xde\xb9\xa0\x0b\x48\x70\xbe\xf2\x76\x3d\xab\x9c\x63\x46\xad\x16\x45\x99\xf6\x8c\x25\xe2\x01\x71\x28\x7f\x44\x0c\x59\x9e\xf3\xa3\x10\xcf\xbb\x1d\xc4\xd3\x38\x71\x0d\x1b\x36\xd9\xff\x0d\xe1\x5f\xdc\x35\x82\x28\x0d\xad\xf3\x69\x30\xb8\x30\x72\x50\x40\xce\x8b\xe7\x4d\x60\x09\x1d\x6a\x40\x36\x6c\x0a\xb8\x2a\xd0\x38\xa1\x34\xaa\xe3\x6a\x02\x5c\xd0\xe9\x34\xbe\xae\x22\x14\x38\xeb\xc4\xcd\x69\x03\x6d\x2b\x70\x97\xc1\x98\x46\x59\xd0\x40\xe1\x0a\xe8\x60\x11\xe8\x24\xf6\x9e\x3e\x05\xf9\x5f\x15\xee\x7a\x12\x66\xd4\xc8\x7d\x28\xd8\xf7\xe2\x29\x6c\x8a\xff\x6a\x44\x26\xe1\x78\x92\xad\x30\x92\x61\xbd\x0b\x7e\x85\xa3\xbc\x40\xbd\x77\x04\x6c\x9d\xb1\x1c\x54\x56\xd0\x58\x60\x85\xc1\x8a\xf8\x95\x76\x16\xd4\x57\x38\x5d\x10\xbf\x0e\x7e\x95\xe3\x2f\x14\x49\xeb\x8a\x34\x70\xfe\xee\x02\xaa\x0b\x7c\xdd\x93\x72\x65\xea\xe2\xdb\xad\xea\x85\x40\xe1\xb7\x55\x3f\x82\xce\xf4\x67\x6f\x27\x8b\x19\x95\x4f\xdf\x0e\x82\x28\x8a\xb3\xcd\x41\x30\x9d\x6e\x06\x9b\xbc\xf6\xcd\x20\xdd\x0c\x8a\xc9\x66\xe0\x5c\xf9\x8e\x17\x6f\xc9\x46\x63\xf1\xf0\xea\x5c\xfe\x1d\x8d\xcf\xb2\x64\x4e\x79\x73\x54\x8e\x96\x52\xc6\xcc\x17\xcd\x21\x85\x17\xfd\x44\x46\xd2\x06\xef\xf6\x82\x2e\x5c\x83\xa6\x83\x60\xc6\x04\xe7\x9b\xec\x72\x6a\xc8\xf8\x9c\xe5\x9c\x2f\x9e\xfe\xb0\x16\x50\xdc\xa9\x80\xa3\x0c\xe7\x39\x08\x3c\xd3\x30\xba\x08\x47\x8b\xfb\x31\x48\x40\xbd\x2c\xe3\xfb\x49\xdc\x4c\x40\x79\x91\x40\x21\x28\xa1\x91\xf0\x16\x57\xc1\xf2\x7d\xca\x74\x96\x87\x62\x61\xd0\x4d\x58\x4e\xe8\x4d\x76\x7f\x53\x4a\x58\xde\x1a\x1f\x03\xe3\xae\x64\x6c\x4a\xb3\xf9\xec\x43\x30\xa5\x59\x46\x57\x50\x49\xaf\xc2\x1f\xf6\xdf\xbd\x3a\x39\x79\x75\x76\x70\xf4\xee\xe8\xe3\xb1\x72\x66\x25\x23\x00\xed\xd0\xdd\xde\x8e\x69\x52\x5c\x9e\x96\xd8\x3b\xd9\xee\x0b\x1e\x82\xa8\xa1\xb8\x74\xd1\xe0\x51\xdf\xcb\xfc\x0e\x1f\x07\xba\xbf\x52\xcf\x86\x6f\x9f\x82\xb3\xfd\x14\x9c\xe7\x4f\xa1\xe7\x70\xb1\xe3\x43\xf5\xe9\xab\x2e\xe0\x3d\xea\x9b\x06\x6c\x1a\x66\xe4\x65\xc5\xaf\xc4\xcf\x65\x0c\xaa\x67\xd5\xe8\x8d\xc4\xde\x09\x78\x5a\x50\xa4\x89\xd0\x64\xcf\x78\xc4\xb0\xb5\xf4\x26\x48\x38\x37\x29\x49\x9d\x93\x17\x32\x1a\x62\xef\xc9\x8e\x69\x4e\x61\x6e\x12\xc7\xbe\x0b\xc3\x1c\xe6\x30\xc7\x65\x1f\xde\x3d\xa6\x9b\xce\xba\xba\x5e\x6b\x77\xcf\xef\x8e\x2f\x1b\xbc\xd6\x19\x2d\x83\x10\xda\x37\x5a\xc1\xe5\x6c\xc7\x70\x8d\x5d\xf9\x39\xcd\xd8\xd7\x9e\xfc\x1a\xf3\x2f\x23\xbf\x7f\x46\x34\xd6\x8f\x26\x59\x36\x4b\xfb\xee\x69\xf7\xb4\xeb\xfd\x76\x9a\xfa\x26\x6e\xa6\xe6\x9b\xdd\x60\x73\x92\xd0\x11\x31\xbe\x31\xa9\xf9\x8d\xb1\xc7\xfe\x18\xbb\xdd\x60\x4f\xaf\xfb\x8e\x19\xb5\xe2\x6a\x7c\x96\xc4\x03\x9a\x72\xd7\x95\xb0\x65\x3f\x68\x3e\xe9\x6f\x02\x33\x92\x2d\x97\xb7\x39\xee\x7c\x49\xe3\x88\xbf\x38\xe9\x0c\xa6\x34\x48\xde\x85\x11\x25\x5b\x0e\x3c\xa0\x8e\xc6\xd9\x46\xd7\x51\x79\x9b\xc3\x96\x53\xa2\x90\x19\x4d\x34\x56\x03\x05\x8a\x07\x3b\xc2\xf1\xfd\xa9\xbd\xbd\x7d\xea\x75\x31\x3f\x3a\x4d\x27\xe1\x28\x43\x2a\xbe\x8a\x70\xfa\xcb\x9d\x40\x69\x0d\xe9\x9e\x26\xf2\xc5\x80\x7c\xa4\x1c\x90\x70\xc5\x6d\xbe\x12\xb1\x8a\xd8\x83\xc9\x3c\x52\xc7\x53\x39\xbf\x3a\x93\xb5\x5a\x19\x67\x94\xf2\xde\xa2\xb7\x8d\x83\x73\x89\x64\x18\x9a\x6f\x93\x81\x8c\xad\x11\x43\xaa\x11\xa4\x11\x07\x41\x67\x1e\x89\x46\xa4\x8c\x6a\xe1\x22\xe4\x8c\xc7\x06\xe3\xa1\x63\x83\x8e\x08\x79\xda\x40\xec\x16\xed\x84\xe9\x2b\x06\x89\xb8\x67\xba\x22\x38\x59\x89\x33\xae\xde\x3f\xaa\xb2\xbd\xa0\xf9\x6e\xfe\xa3\x8c\x5c\xc5\xe1\x50\xee\xb6\xdc\xe6\x6e\x86\x3b\xf3\x94\x9e\x89\x60\x33\xa9\xcc\xdc\x22\x24\xd3\x93\x19\xb3\xb4\x4f\xee\xf9\xf2\x82\x2e\x48\xd2\x97\xf1\xdf\x5d\x83\x8b\x39\x03\x02\xee\x6f\x9d\xb1\xc9\xa5\x30\x1a\x8b\xbb\x92\xe7\xf2\xaf\xbe\x56\xaa\x9c\x7a\x4a\xc1\x4c\x57\x67\xec\x90\x0e\xe2\x24\x60\xcd\x11\x50\xd7\x41\x7a\x26\x1b\x4e\x87\xee\x96\x03\x92\x77\x0d\x11\xd8\x02\xd5\x6f\x79\xce\xef\x2e\x73\xbf\xcb\xa8\xfb\x1b\xf2\xb6\x4e\x6f\xb6\x07\xd6\xe9\xcd\xf6\xc8\x6f\x63\xe4\x9d\x0e\x77\xc4\xdf\x9b\x9e\x6d\x9d\xde\xf4\x06\x7e\xdb\x3b\xbd\x79\xc2\x7e\x3f\xa7\x3e\xcb\x48\x4f\x8f\xfd\x36\xee\x5e\x8a\x37\xa0\x69\x11\x47\x6e\xa3\xa8\x83\xa4\xde\x13\x5f\xbc\xa3\x26\xa9\xd7\xf3\x95\x1b\x98\x1d\x11\xab\xc7\x30\xb6\x08\x49\xc5\x4b\xfa\x4b\xf1\x7b\xdb\x2f\xd1\x54\x5e\x96\x06\x5c\x0e\xf3\x61\x59\xb6\x9e\xeb\x13\x3b\xca\x25\xcf\x9e\xbd\x23\xfa\x75\x4a\xe6\x6a\xf2\xc0\x80\xf0\xfd\x8f\xb7\x51\x86\xa6\xbc\x52\x61\x99\x0e\xb0\xd8\xe9\x1a\xe0\x46\x35\xa6\x56\xc5\x86\xba\x14\xe3\x94\x45\x34\x10\xe3\x3c\x9e\x0e\x8d\x02\xa8\xd7\x0c\x34\x0c\x2f\x4b\x98\xed\x46\x90\x30\x0b\xa6\xe1\xa0\x84\x7a\xd2\x08\x35\x8f\x86\x34\x99\x86\x11\x2d\x01\x9f\x36\x93\xc5\x44\x7d\x09\xf4\xbc\x99\x2e\xf9\x18\xb2\x84\x7b\xd1\x0c\x37\x09\x87\x43\x1a\x95\x60\xdf\x36\x83\x31\xeb\xf2\x82\x32\xf5\x72\x3e\x9e\x68\x0d\xfe\x56\x67\x76\x85\xa9\x4f\xca\xac\xf3\x5a\xd6\x60\x8f\x6c\xdb\xad\xd6\x60\x77\xfb\x45\x51\x36\xf4\x6c\xdf\x1b\x3c\x76\x6c\xdf\x8b\x7d\x1d\xf2\x5b\x0e\xf9\xad\x0e\xe9\x34\x43\x3e\xe1\x90\x4f\x5e\x14\x95\xae\xc5\xe9\xd8\x1c\xd4\xb1\x75\xd8\x26\xac\xdb\x9c\x6b\xcb\xe5\x13\xc1\x3d\x19\xd0\x57\xa4\xf2\x68\xfb\x6a\x90\x12\x47\x64\x4e\xca\x41\xca\xe7\xc2\x53\x83\x10\x32\x69\xb5\x56\x00\x67\xe5\x08\x2e\x4a\xf0\x22\x33\x1e\xec\x64\xb6\x4b\x7a\x4f\x9f\xe2\x70\x84\xa4\xeb\xad\x21\x99\xed\x11\xe7\x59\x5f\x98\x0d\x33\xa1\xe9\x59\x86\x39\x73\x43\x6f\xb6\xf7\xbc\xef\xb8\xb6\xef\xcd\x1e\xbf\xf0\x3b\x5c\x58\x6d\x8c\xfa\x8a\x5f\x43\x57\xb5\x71\x28\xae\x81\x35\xe8\x36\x32\x36\xae\xae\x45\x22\x0c\x25\x8e\x86\x22\xde\xcc\x77\x2b\xb3\x6b\x25\xbb\xb8\x74\x66\xf4\x56\xb8\xb0\x2d\x5a\x75\xd9\xc4\x05\x58\x34\xa6\x5e\xad\xe3\xd8\x25\xe7\xd8\x25\xe7\x58\xab\xb5\xe0\x5f\x0b\xf9\x75\xc5\xbf\xae\x04\x37\x79\x95\x63\x72\x29\xd4\xcb\x85\xf8\x73\xb5\x91\xf4\x47\x7d\xa4\x5a\x2a\xf8\x5b\xc8\x6b\x03\x56\x0d\xa0\x31\x76\x91\x6a\x79\x33\xf8\x79\x0d\xbc\x64\xe4\xb8\xe0\xd9\x38\x67\xff\xd3\xae\xa9\x12\xa2\x8c\xad\x56\x4b\xff\x3e\xaf\x7d\x97\xd3\xb2\x1f\xb8\x28\x28\xba\x67\x34\x86\xa0\xe8\x8c\x73\xf6\xb1\x6a\xb6\xe9\x29\x1c\xfa\x2e\xbb\x0e\x02\x5d\x04\xd4\xea\x86\xa0\x53\x59\x9f\x98\x2e\x16\x34\x2f\xd8\xf7\x2b\x4b\x1b\x52\xad\x93\x4e\x06\x9a\xd5\x14\x51\x8a\xeb\x35\x42\xa9\x51\x9b\x92\x5c\xfe\x97\x8a\x85\x4c\x37\x0c\xbe\xd4\x84\x55\x32\x8b\x42\x6a\x31\xdb\x10\xde\x9b\xaa\x4b\xbf\xbc\xf6\xcd\x9d\x26\xde\xe6\x30\x6d\x88\x8f\xe1\xf9\x10\x49\x45\xa2\x74\x09\x4a\x31\xed\x4c\x82\xf4\xe8\x3a\x2a\xf6\xb8\x22\xcc\xf4\x0a\xe1\xd9\x70\x18\x64\x81\x65\x98\x91\xf9\x0d\xd3\xa7\x93\x9a\x79\x4b\xbd\xc8\xc7\xe6\x37\xc6\x37\xda\x75\x40\xb5\x04\xf6\x8d\x4d\xc3\xcc\xa4\x5e\xb4\x69\x60\xa6\xfb\x17\x9b\xb2\x7c\xc4\xa0\xb8\x8f\xa4\xdf\x45\x96\x60\x1a\xd6\x68\x5c\xc4\x97\x26\x61\xa5\xe7\x5b\x2d\x34\xf7\x6a\x23\x97\x81\xfb\x35\x38\xa8\x7e\x72\x21\x8e\xb1\xab\x1c\x35\x0a\x85\x26\x19\x9f\x23\xc3\x14\x75\x62\x83\x87\xc3\x3f\xaf\xd3\x73\xce\xe8\x39\xaf\xd0\x73\x7e\x1f\x3d\xe7\x82\x9e\xf3\x2a\x3d\x2b\xfb\x0e\x1a\x3d\xe7\xc1\xe0\x62\xcc\x5d\x2e\x58\x55\xd2\xce\x4b\xd2\xca\x01\xcc\x49\x94\x14\x8a\xba\x19\x68\x99\x8f\x5d\xa1\x00\x10\x46\xad\x3e\xe7\x64\x91\x51\x1c\x65\xd6\x35\x0d\xc7\x93\xcc\xe5\x80\xd8\xe5\xca\xc0\x3a\x78\xe9\x7c\xcb\xb5\x3b\x4f\x19\xa8\x54\x0a\xee\xc4\x2e\x42\x79\x4a\x48\xec\x16\x6b\xfa\xda\x42\x5c\xef\x76\x79\x10\x99\x0c\x39\xb6\xfd\x18\xb3\x62\x72\x89\x5f\x57\xea\x2a\x4c\xc3\xf3\x70\xca\x68\x93\x90\xd8\xad\xad\xf7\xeb\x8a\x66\xf4\x26\xb3\x34\xb5\x95\xa9\x2f\x96\x2a\x54\x76\x4c\x1d\xac\xc6\x68\x0c\x71\xff\x9b\xdd\x74\x16\x44\x62\x73\x8a\x4d\x8e\xb4\x1c\xeb\x6c\x4a\x98\x53\x34\xc7\xa6\xb1\xc7\x4a\xca\x89\xcb\xcc\x50\x56\x66\xcf\x70\x65\x61\xce\x2e\x56\x58\x19\x10\x3b\x0f\x28\xcc\x37\x52\x68\x8e\xf0\x06\xed\xd0\x9b\x59\x9c\x64\x29\x89\x57\x1f\x73\x16\x31\x24\x7a\xcd\x21\x01\x22\x52\x9a\xa6\x43\x3a\x0d\x2f\x43\x1e\xbe\xde\xe8\x18\x10\x92\xac\x73\x19\xdc\xbc\xa4\x33\xee\x2c\xe3\x36\xaf\xbf\x88\xde\xa4\x48\x78\x4d\xbf\x9d\x93\xf9\x72\xe9\xa8\xdd\xf2\x0b\xba\x48\x51\x80\x3b\xa3\x38\x79\x55\x09\xc9\x3c\x15\x75\x0e\x48\xe0\x4d\x7d\x18\x91\xac\x93\x06\x23\xda\x6a\x55\xfd\x3b\x0f\x30\x4c\xe4\x99\x6d\x83\xcf\x27\x11\xb4\x6a\x80\x61\x46\x12\xf6\x67\x48\xd2\x7e\x6a\x46\xe6\xd4\xe5\xaf\x32\xb6\x46\xf2\x89\xbf\xe1\x09\xbf\xc5\x9b\x02\x93\xcf\x57\xf2\xe5\xb2\x48\xe6\x75\x89\x54\xdc\x6a\xe9\x94\x0f\x70\xe9\x60\x7c\xab\x64\xc1\x72\x39\xdf\x0d\x71\xe1\x5a\x06\x0d\x60\x08\x73\xd3\xc1\x1b\xb1\x37\xf4\xc9\x80\x87\x6d\xc3\x10\xe7\x65\x77\x84\x4c\x0e\x4d\x83\x2c\xa3\x11\xff\x3d\x8f\xd4\x97\xc6\x41\xcd\xdb\x20\x8a\x48\xd4\xd8\x13\x31\x89\x3a\xf1\x15\x4d\xae\x93\x30\x13\xc7\x18\x01\xeb\x0e\xa6\x64\xa1\x0c\x6b\x8d\x52\x6d\xdd\x22\xf7\x31\x30\x2b\x5a\x92\x95\xe3\x42\x7b\x5c\xfa\x9e\xfb\x08\x6f\x38\x42\x5b\x2e\x2d\x67\x8b\xd4\x02\xde\x2d\x97\x51\x47\x90\xd0\xa7\x6e\xf1\x2c\x56\x67\x6a\x86\x45\xd8\xf4\xc6\x0d\x96\x22\x74\x81\x5a\x38\xf2\x86\xc1\xa3\x3d\x5a\x98\x93\x44\xda\x6e\x21\x86\x29\x49\x75\x6d\x6b\xc0\x3e\x79\x50\xa7\x11\x09\x76\x0a\x8b\x79\xb0\xa3\xf4\xdc\x7b\x18\x33\xf2\xa6\x3e\x1b\x5c\x5f\x31\x7e\xf8\xb8\x8b\xc5\xb8\x2b\x2a\xe4\x78\x44\xfb\x76\x10\xcf\x5c\x2e\x19\x90\xd0\x88\x78\x6e\xab\xc5\x6b\x23\xca\x21\x7b\xe1\xdd\x7b\xa0\xf1\xf3\x36\x77\x3d\xde\x18\x06\x0a\xa5\x71\xd9\x6a\xa1\x75\x2d\xc7\x39\x47\x4b\x51\xe6\x25\x3e\xdf\x54\x81\x20\xaf\x8a\x06\x7c\x5b\x0e\xd3\x86\xbd\x19\xb1\xda\x51\x41\xed\x16\x77\xcd\x52\x84\x69\xd3\xfd\x91\x97\x8e\xc3\x75\x88\x4e\x98\x7e\x37\x1f\x8d\x68\xc2\x63\x9c\x37\xa4\xf3\x80\xcb\x2b\xa2\xaa\x99\x22\x75\x01\xbe\x1c\xa5\x7c\x28\x30\x6d\xca\x4b\x0a\xf3\x9c\xfd\x56\xc5\x95\x32\xe6\x25\x3e\xb9\x0d\xdd\x04\xa6\xee\x96\x03\x32\xd3\xbd\xcd\xf3\x32\x3c\x5c\xe2\xcb\x18\xec\xaa\x2c\xb0\x79\xaa\x7e\x47\x6c\xe1\x9d\x32\x05\xb1\x48\x2b\xf4\xde\xce\x25\xa1\x10\x75\x06\x24\x83\xa8\x33\x5c\xd9\x1d\x8e\x3a\x31\x67\xf3\x72\xb9\xee\x04\x31\x83\xdb\xf2\x68\xd2\xdd\xb2\x79\xec\xbb\x24\xc7\x39\x44\x9d\xa4\xc2\x01\x6e\x61\xb3\xd2\xc3\x72\x84\x1c\x73\x47\x3a\xad\x96\xf8\x5b\x0c\xe1\x93\x60\x5c\xc8\xb2\x95\x1a\x57\x61\xe1\x56\x28\xb8\xc6\x61\x3c\x9c\x4f\xa9\x91\xaf\x3f\xf0\x34\xce\xce\x68\x2a\xc1\x54\xb1\x2d\x5b\x90\x9b\xad\xfa\x85\x74\x5a\x19\xf7\x84\x12\x71\xe7\x32\x2f\x5a\x59\x21\x37\xd9\x64\x79\xd2\x6a\xf2\x2b\x4f\x5b\x2d\xf6\xff\x4e\x59\x53\x59\x48\x2c\x63\x92\x38\xe1\x43\x97\x3b\xfb\xc1\x22\xe2\x5d\x82\x92\x75\xa4\x27\x60\x48\xe7\x27\x46\x9d\xe3\xa2\x15\x34\xc7\xd0\xe3\x04\xc9\x40\x08\x05\x93\xcb\x33\x85\x50\x28\xc9\x51\x67\x88\x12\x08\x9b\x7d\x27\x65\x7e\xde\x39\x0f\xa3\x21\xa7\x0b\x42\xed\x22\x2c\xe3\x51\xd4\x30\xa8\x6b\xad\xed\x37\x3c\x9d\x51\x5e\x93\xf3\x86\xe8\x82\x34\x2f\xa3\xfa\x2b\x0f\xa6\x19\x86\x8c\x55\x17\x37\x7b\xe1\x58\x91\x7d\x55\xa5\x5f\x4c\x06\xe1\x69\x2d\xea\xcc\x78\x68\x53\x14\x75\x52\xe2\xe0\x1c\x79\x5f\x21\x3f\x2a\x0b\x7a\xbf\xba\xbc\x53\xec\x36\x08\xd1\x7b\xa4\x72\xa3\xc0\x28\x6f\x1f\x6a\x7e\x3e\x93\xa6\x98\xba\x6a\xba\x18\xc2\x01\x55\x3d\xa3\xc3\x96\xda\x20\x8b\x93\xa6\x5b\x2b\x6a\x30\x34\xc6\x39\xa6\x8d\xd2\x50\x55\x57\x91\x7e\x84\x90\x22\x7d\x4b\xfd\x2e\x1b\xdc\x57\xb4\xb9\x45\x85\x18\xc9\xd8\x54\x21\x89\x50\x4f\xc4\x63\x7a\x21\x22\x31\xf1\xd7\x87\xcd\x07\xae\xba\xda\xc7\x03\xf4\x73\xab\x37\x2c\x77\x96\x93\xbe\xed\x26\x0c\x4b\x67\x18\x8a\x33\x58\x48\xcb\xdc\xa0\xef\xd8\xb6\x1b\xf0\x57\x80\xd9\x24\xa1\xe9\x24\x9e\x0e\x61\x5a\x02\xcc\xfb\x9d\x67\xee\x1c\x06\x24\x62\xaa\xd1\x07\xa6\xd0\x24\xd1\x3b\x19\xeb\xa4\x04\x1b\xf4\xb7\x7b\xee\x00\x26\x24\xea\x0c\x82\x94\x1e\xd3\x28\x0d\xb3\xf0\x8a\xc2\xac\xdc\xc6\x9e\xb4\x5a\x13\x18\xb2\x8a\xe2\x0b\x1a\x1d\xd3\x59\xc0\x7b\x01\x2e\x4b\x34\xc3\x7e\x77\xd3\xec\x8e\xdd\x21\x2c\x48\xd4\x19\x85\xd1\x70\x7f\x3a\x3d\xe4\xd1\xf9\x52\xb8\x2a\x51\x2d\x5a\xad\x05\x8c\x19\x4d\x61\xc4\xb3\x0f\x26\x41\x22\xa9\x3a\x2f\xd1\x8d\xfb\x8e\x3b\x86\x33\x12\x75\xc2\x21\x5c\x97\xe9\x67\xe2\x66\xd0\x19\xbc\x22\x11\x57\x58\xe0\xa6\xcc\x7c\xd5\xf7\x7c\xf7\x15\x1c\x93\xa8\x93\x4e\xe2\xf9\x74\x78\x1c\x27\x19\x1c\x95\x00\xc7\xcb\xe5\x31\xec\x93\x88\xdf\xc5\x8d\xe0\xa2\xcc\xd9\xef\xc7\xee\x3e\x1c\xb2\x92\x71\xc2\xf2\x4e\xca\xbc\xc3\xe6\x18\xb5\xb4\x93\x0e\xe2\x84\x5a\x99\xf8\x9b\xbb\x87\x70\xa0\x58\x14\xfe\x41\xe1\x63\xd9\xe8\x83\x56\xeb\x00\x3e\xf0\x8e\xc8\x06\x93\xfd\xe9\xf4\x84\x01\xa5\xf0\xbe\x04\xf9\xd0\x6a\x7d\x80\x2f\xac\xbd\xd1\x60\x3a\x1f\x52\xc5\xba\xb7\x25\xc8\x97\x56\xeb\x0b\xbc\x2c\x41\x8e\x59\xb5\xf0\xae\x04\x78\xd9\x6a\xbd\x84\xd7\x24\xea\x5c\xd1\xe4\x3c\x4e\x29\xfc\x51\xe6\xbd\x6e\xb5\x5e\x6f\xfc\x1b\x4f\xf8\xe3\x19\x4b\x4e\xc9\xad\x1a\xd9\x6e\x08\x6a\x18\xbb\x29\x14\x23\xd6\x9d\x42\x7d\x74\xba\x23\x08\xd3\x03\x7d\x2c\xba\x33\xa8\x8e\x3c\xf7\x12\xaa\x43\xcc\xbd\x82\xd5\x01\xe5\x9e\x43\x38\x74\xaf\x81\x8d\x13\xf7\x06\xaa\x9c\x75\xdf\x82\xce\x47\xf7\x1d\x94\x63\xc6\x3d\x02\x3e\x42\xdc\x0b\x10\xc3\xc1\x3d\x01\xc9\x53\xf7\x0f\x50\x3d\xec\x7e\x84\x6a\x7f\xba\xef\x73\x50\xdb\x9c\x07\xf1\x54\xc6\x61\x44\x99\x10\x0e\x59\x71\x7f\x9b\x94\x67\xea\x25\xd8\x7d\x27\x86\xd3\x30\xcd\x08\x05\x5a\xec\x80\xa5\x54\x5c\x46\x5c\x2d\x26\x56\xad\x7a\x3c\xd2\x3d\x47\xd3\x7a\x8b\x4c\xcf\xf1\xfb\xfa\x87\x7b\xcb\x2d\x1a\x77\xcb\xc9\x85\xdf\xe2\xb3\x69\x3c\x46\xdf\x58\xea\x7f\xa7\xd1\x31\xaf\x77\x73\x26\xba\xcc\xdd\x34\xbe\x61\xd2\x73\x10\x64\x88\xc2\x37\xc6\x37\xd2\x53\x9b\xdc\xcf\x3b\x9b\x25\xac\xcf\xa8\x28\x44\x93\x54\x06\x4c\x57\x92\x44\xa6\x42\xc8\x84\xc6\x7c\x3a\x55\x29\x10\xcb\xf2\xa2\x95\x6c\x35\x17\x71\xb6\xc5\x86\x48\x0a\x29\x89\x3b\x09\x4d\xe7\xd3\x2c\xad\x04\x56\x3f\x1b\x88\xb0\x04\xbc\x53\x99\xd9\x5b\x1d\x8f\x9a\x60\x68\xb5\x64\x0d\xcc\xdc\xe1\x27\x8d\xbc\xe5\xad\x56\x19\x77\xa9\x08\xe2\x23\x73\x50\x4a\xd2\xc2\xa1\x9b\x4c\xc5\xb2\x82\x33\x71\x77\x16\xa5\xe5\x1e\xe5\x4a\xe3\x1b\x2e\x4e\x88\xdb\x11\x2b\x7d\x65\x37\xf6\x95\xad\xf7\x95\xed\xbb\x86\x01\x19\xf1\x7c\xbe\x65\xa9\x37\x52\x8d\x50\x5c\xde\x97\x50\x67\xc5\xab\x70\xc5\xa4\xe2\x71\xc8\xb9\x0d\x2b\x6f\xec\x25\xbb\xf1\x4e\x62\x12\x07\xcb\xfd\x45\x26\x14\x42\x14\xf1\xa0\xe4\x1a\x9a\x42\x83\xba\xad\x76\xaa\x9b\x81\xde\xa5\xae\x28\x4e\xab\x65\xf3\x92\x5b\x6b\x06\xf4\x5f\xe4\x91\xe7\x43\xd3\x5c\xa8\x0e\x7a\x81\x07\xe4\xa0\x65\x53\x4d\x05\x64\x12\xdc\x5d\x89\x2d\xcc\xc3\xa7\x15\x76\x6e\xcc\xc3\xb8\x15\x7c\x8b\x77\x83\x9d\x98\xf3\x8d\x0f\x8c\x20\x0a\xa6\x8b\x3f\x28\x12\xcd\x54\xed\x8b\xbc\xd8\x87\x84\x0e\xe2\x64\xe8\xc6\xc0\x8d\x74\x37\xce\xe1\x56\x0c\xea\xc3\x60\xe6\x26\x20\x07\xb8\x1b\x42\x8d\xb3\xb4\xca\xd9\x2c\x2f\xba\x40\xce\x0f\x71\xc0\x5b\x94\xcf\xf3\xf2\x16\xcb\x6d\x2e\x7d\x8d\x14\xf4\xce\x77\xa7\x3b\x73\x46\xaf\x02\x1a\x90\xc8\x9b\xfb\x30\x22\x36\x4c\x48\x65\xc4\x30\x51\xaa\x8a\x8d\x76\x27\x3b\x23\xb3\x3c\x6f\x5a\x01\xf4\x46\x15\xe6\x15\xfa\xfa\x8c\x2f\x3d\xa9\x37\xe3\xf1\xe4\x7d\x22\x89\x76\x1d\x6b\x26\xe7\xf7\x72\xe9\xe4\xa0\x3e\x76\x89\xbd\x5c\xaa\x8f\x3d\x67\xd5\xf5\xfa\x0f\x74\xb1\x29\x72\x37\x27\x41\xba\x99\xc5\x9b\xe7\x74\x73\x6f\xd3\xde\x0c\xa2\xe1\xe6\x2e\xd9\x74\x0c\xbc\x31\x23\xa2\x36\x71\x66\x94\x7a\x33\xad\x5a\x25\xe9\x2a\x1d\x35\x93\xfd\x54\x69\x15\x5f\x15\xd0\x00\x66\x58\x75\xdd\x40\x76\xdd\xfc\xcf\x77\x5d\x5e\xeb\xba\x54\xef\xb7\x62\x76\x48\xe2\x9a\x2f\xaf\xa8\x39\xce\x2f\xbb\x12\xda\x09\x98\xbe\xce\xc3\xf1\x55\x15\x4a\xcb\x71\x13\xee\xb0\x96\x23\xe1\x27\xf9\xa2\x1d\xdc\x0f\x19\x6f\x09\x4c\x49\x56\x97\xce\x83\x12\xc7\x94\xe9\x58\x53\xbe\x27\x58\x91\xd7\x93\x12\x64\xc4\x40\x46\x30\x23\x59\xa7\xe0\x08\x0c\xcb\xfc\x59\xff\x36\x77\x67\x70\x59\xe4\xa7\xb0\x28\x73\x2f\x59\xe9\x4b\x6e\x2e\xf2\x3d\x0d\x19\x17\xea\x8a\x6c\x39\x30\x26\x96\x03\xe7\xc4\x6e\x9c\x92\xb1\x8a\x6d\xcf\x16\x2c\xe3\x34\xfa\x81\x2e\xdc\x4d\x43\xad\x4d\x06\xf7\x23\xcb\xdf\x4d\x45\x72\x89\x3a\x23\x93\x8e\x5c\x5e\x62\x5c\xc8\x50\xb1\xde\xbd\x9e\x4f\xa7\x9b\x19\xbd\xc9\xf4\xf5\x2d\x86\x6f\x0c\xd8\xe4\xda\x9e\xbb\xf9\x0d\x56\xc9\x67\x42\x01\xc4\xb5\x95\xa6\x10\xc2\x85\x98\xb8\x26\xf1\x43\xa4\xf0\x2b\xe2\xf9\x70\x43\xec\x9d\x9b\xdd\x81\x9a\x6b\x37\xc5\x3c\x3b\x26\x03\xef\xc6\xd7\xd7\xe6\xd3\xe8\xc3\xea\x5a\x7c\xdc\x91\x0b\xb4\x5c\x93\x15\x0d\x47\x8c\x8f\xfb\xc4\xde\xd9\xdf\xbd\x56\xc8\xf7\x0b\xe4\x17\xe4\xda\xdb\xf7\xe1\x90\x1c\x2b\xce\x5c\x60\x38\x21\xb7\xf9\xc6\x61\x27\x4c\xb9\xe6\xd4\x47\x27\xde\x85\x4f\x0e\x45\xa3\x81\x3b\xf7\x3d\x62\xff\xbc\x12\x8b\xc4\xa1\xe2\x86\x2b\x00\x9d\x2a\x57\xaa\x1a\xd3\x72\x29\x4b\x39\xc5\x32\xca\x9b\xc4\x73\xf5\xe6\x5c\x34\xb3\x9e\xd5\x80\x71\x7e\xd4\x6a\xa1\x73\xd6\x88\x7c\x4c\x5e\x79\x76\x79\xef\xf0\x80\xbc\x52\xde\x52\x3e\x12\x67\xe7\xe3\xee\xc1\xce\x47\x06\x37\x36\xc9\x2b\xef\xa3\xbf\x31\xee\x92\x03\xad\x5e\x83\xd7\x2b\xaa\xd9\x0c\xae\x68\x12\x8c\xa9\x6b\xc0\x58\x28\x70\x1f\x88\xec\xe9\x8d\xf1\x9e\xe5\xb4\x5a\xe8\x03\x41\x1f\xcc\x31\xee\xf6\x74\xda\x8d\xe3\x5a\xe9\x0f\x62\xb4\xbd\x27\x5b\x8d\xc3\x63\xb9\xdc\xba\x93\x41\xe7\x7b\x44\x8d\x82\xea\x18\x35\x4e\xa3\x83\x09\x1d\x5c\x6c\x2a\x85\xb6\x1c\xec\xef\x31\x06\x74\xb5\x5c\x9e\xa9\x4e\xc3\xad\xd6\x7b\xd1\xc3\x5f\xc8\xd0\x9b\xfb\x1b\x5f\xfa\x5f\x3a\xf1\x3c\x9b\xcd\xe5\xd2\xce\x85\x4c\x04\xa5\xdc\x70\x43\x29\x68\x62\x10\x5c\xff\x20\x94\x5d\x3a\x7c\x1b\x0d\xc3\x01\x4d\xdd\xb3\x4e\x35\x21\xc7\x2e\x62\xb8\xc9\x6d\x98\xd1\x4b\x37\x05\x81\xdf\xf5\xfe\x0e\xdc\x7e\x0e\x0b\x41\x29\xab\x02\xe3\xbc\x38\xfb\x0f\x50\x8c\x8b\x85\xeb\x2d\xb1\xe1\x25\x89\xd5\xc0\x7e\xbb\xfb\x72\xe7\xed\x9a\x85\xb8\x42\xd0\x5b\x45\x90\xf7\xb6\x58\x94\xd3\x46\xc9\x3e\x2c\x84\xf3\xa2\x2e\xd9\x07\x55\xc9\x3e\xc9\x75\xe5\x46\x57\x4b\x9b\x65\x78\xa5\x67\x4f\x23\x11\x5e\x2b\x8c\xc6\x72\xd4\x9f\x46\xc6\x4a\xbc\xfe\xe2\x69\xc5\x6e\xb2\x13\xf1\x49\x5c\xba\x4f\xcf\xbc\xc8\x97\x5d\xac\x79\x54\x81\x80\x38\x90\x12\xee\x6e\x6c\x67\xbe\x1b\x8b\x75\x5f\x5e\x7f\xa2\x7d\xea\x85\xde\xdc\x67\xcb\x88\xdf\x51\xab\x23\x0c\x08\xbf\xc0\x34\xed\xf3\x3c\x41\x4d\xf9\x73\xb9\xec\xd8\xb6\x83\xdb\xd3\x0d\x67\x8b\x01\x29\x27\xec\x61\x84\x52\x18\x60\x17\x71\xd0\x88\x37\x9c\x0c\x20\x68\x93\x01\xce\x39\x71\xbc\x38\x71\xb8\x67\xa9\x80\xdb\x84\x8a\x01\x3c\x34\xa5\xae\x19\xc6\x49\xe3\x8d\xca\x1a\xcb\x98\x56\x1f\x46\xe3\x4e\xa7\xd3\x31\x30\x50\x71\x90\x51\xd5\xfe\xb9\x35\xa7\x69\xe8\xca\xfd\xec\x3a\x23\xaa\x41\xb9\x96\x86\xa0\x5a\x74\x3d\x5d\x16\x73\x32\x8e\xc4\xb8\x67\x3f\x0d\xf8\xfe\xf8\xe8\x7d\x47\x2c\x55\xe1\x68\x81\x28\xac\x98\xe0\xe5\xfe\x2a\x49\x50\x86\xd5\x5e\x3e\x11\xb9\xfc\x10\x27\x2a\x0e\x71\x8a\xe3\xa0\x0d\x19\x83\x2f\x2b\xbc\x42\x67\x39\xc6\x20\x2e\x9e\xc9\xcd\x28\x45\x9a\xa2\xbc\x6a\x00\xb7\x5a\xa1\x40\xd1\xac\x4a\x88\xa1\xb3\x91\xc9\x99\x98\xea\xd7\xb9\x99\x9d\x10\xea\x76\x42\x28\xec\x04\x19\xa9\x8a\x59\x08\x8c\x6d\x4c\x31\x8f\x6b\x33\x59\xb9\x15\x10\x21\x38\xc9\x6d\x28\x67\x7c\x1d\x4e\x4d\x48\xa1\xa9\xe4\x1b\x31\x1b\x94\xdc\xa3\xdd\x05\x5d\x10\xfe\x85\x21\xae\x5f\x86\x30\xca\x39\x6d\xe0\x56\x2b\xd6\x14\x21\x21\xb2\x03\x2d\x85\xe8\xd9\xcc\xfe\x93\x2d\x15\x5c\x09\xd8\x00\xac\x2d\xe9\xfa\x86\xc1\x1a\xf6\xc9\xdd\x20\x22\x77\x87\xf2\x72\xce\x0a\x23\x81\xae\x18\x09\xf2\xea\x2c\xf5\xe2\xd5\xb1\x16\x0e\x99\xd1\xd9\x61\x02\x95\x34\x28\xa2\x22\xa7\x46\xe3\x10\xf3\x53\xb5\xb0\xe0\x74\x79\x1a\x27\x25\x33\x2f\x95\xc3\x94\xd8\x30\x28\x24\xc3\xce\x74\x77\xb0\x33\x65\x04\x85\xde\xd4\x47\x29\xcc\xf1\x86\x5c\x1c\xe6\x32\x88\xa2\xfc\x14\xe5\xb5\x71\x57\xcc\xa6\x69\x3c\x5e\x67\xbe\x6d\x34\xcd\x21\x7e\xf4\x20\x22\xe0\x51\xdc\x99\xc6\xe3\x4e\x30\x9b\x4d\xd9\x2c\x29\xac\x33\xfe\x10\xa1\xd5\xaa\x32\xf9\x3f\xf3\x85\x19\xd2\x9e\x58\x42\xb6\x72\xe8\x9f\xae\x3f\xf4\xdf\xc6\x6c\x3a\xa1\x27\x62\xeb\xf8\x39\x86\xe0\xbf\xcd\x9e\x71\x6d\xa7\xee\x3f\x60\xd7\xf8\xff\xff\x76\x39\xe5\xae\xa3\x54\xf8\xab\x82\xa2\x56\x47\x3f\x73\xb3\xaa\x13\xb2\x4a\x59\x15\x82\x9d\x8c\x5a\x2d\xa4\x67\xec\x4f\x67\x93\xe0\x9c\x66\x24\xae\x24\xe3\xf5\x5b\x9b\xeb\x36\x27\x57\x44\x5c\x95\x40\x1e\xd8\x9a\x56\x49\xac\xd2\x48\x08\x51\x07\x8e\xb7\x52\xbd\x75\xb7\x6c\xa9\x49\xda\x75\x4d\xd2\xf3\xec\x22\xa6\xb8\xe5\xf8\xbe\xb8\x02\x98\x55\x98\x04\x91\xb8\x41\x53\x1d\xef\x71\x69\x07\xcb\xfe\x28\xc4\x73\x95\x5b\x7b\xc5\x4d\xc1\x44\xed\x6e\x29\xdb\x2b\x56\xaf\x2b\x2a\xd5\xa5\x24\x28\x27\xef\x9c\x04\xe5\x5c\x9d\x92\x40\x9b\x98\x03\xfe\xd4\xa1\x32\x27\x46\x24\x68\x98\x03\xc5\xdd\x8f\x7a\xfd\x4d\x5d\x08\xe5\x60\x4d\xcb\xc1\x3a\xaf\x0c\xd6\xda\xb0\x1b\x34\x0d\xbb\x51\xfe\x3f\x47\x36\x07\xf5\x5b\x17\xa2\x05\x5d\xef\xd4\x3a\xf5\x4e\xfd\xd3\xee\xe9\xed\x69\x7e\x8a\x4e\xf1\x69\xfb\xd4\x3c\xed\x9f\x76\x4e\x4f\x4f\x7f\x3b\x7d\x74\xba\xf4\xbb\xe3\x8d\xa6\x13\x56\x85\x23\x59\xdd\x7a\xec\x35\x6e\x5b\xf6\xf4\x6d\xcb\x9e\xef\x72\xb9\xc8\x56\x85\xd2\x2f\x61\x19\x1c\x28\x52\xbe\x0c\x8b\x94\x04\x8c\xa5\xc1\x03\x65\xa8\xb7\x19\x7c\xbf\x7c\x6b\x2b\xe6\xd7\x4c\xd9\xc8\x2d\x5f\xb2\x89\xed\xbf\x78\x65\xfb\x4f\x5e\xfa\x8a\x99\x81\x28\xb5\x20\xaf\xbc\x3f\x34\xc0\x30\x28\x27\x52\xb1\x6b\x25\xe6\x5d\xd0\xef\x3c\x75\x1d\x50\xf3\x31\xa8\x4f\xc3\x34\x6f\x38\x17\x56\xcb\xdf\x53\xb1\xfc\x3d\xc3\x6b\x58\x29\x22\x56\x97\x6f\xf3\xe2\x72\xf6\x54\x16\x37\xb1\xb4\xc5\xfa\x74\xd2\x56\x36\xb6\xf4\xb1\xa5\x2d\xd6\x66\x58\x65\x4d\xeb\x3c\xe3\x6b\x5a\x5c\x9f\x73\xab\x4b\x5a\xdc\xb4\x0e\x55\x96\x35\x87\x2f\x69\x29\x0f\x97\x24\x2d\xaf\x31\x19\xf1\x28\x49\x85\x2a\x0f\x0b\x0c\x67\xa5\x3b\xd7\x6b\xe2\xf9\xf0\x8a\xd8\x3b\xaf\x76\xaf\x76\x5e\xb1\xfe\xb8\xf6\x5e\xf9\x62\xb3\x8b\x5b\x01\xe7\x82\x63\x37\xcc\x4c\x80\x5b\xca\xd6\xac\xd4\xb5\x65\xcc\x11\xee\x26\x80\x4f\xea\x73\xa0\x37\x33\x3a\xc8\xe8\xb0\x48\x5a\x94\xf3\x7c\x2a\x5e\x6e\x8d\x4b\x2b\xed\x06\xc6\x18\x78\x05\x88\x91\x37\x0d\xd2\xec\x6d\x49\xa2\x79\x86\xb1\xda\x78\xfa\xab\xf5\x6a\x95\x1e\xc3\x18\xe7\xf9\x39\xb1\x1c\x6d\x67\xca\xf3\x61\x9f\x38\x70\x41\xce\xcc\x2b\x38\x24\xce\xee\xee\x99\xe5\xc0\x09\xb1\x77\x4e\x76\xcf\x76\x4e\x2a\x06\xee\x01\xb1\xe1\x23\xb9\xd8\x39\xd8\xfd\xb8\x83\x75\xc2\x4e\x56\x08\x5b\x98\x1f\xef\x23\x6d\x97\x8c\xfb\x07\xe4\xa3\x7b\x41\x3e\xc2\x47\xdd\x09\x1c\xba\xb0\x0e\x70\xb7\x67\x1e\xe0\x8d\x0b\xf2\x71\x43\x6c\x03\x69\x21\x76\x16\xd6\x47\xd3\xc1\xf0\x9e\xcc\xfa\x57\x6e\xd1\x3a\x56\xe3\x15\x36\xcf\xe0\x0b\x11\x77\x29\xde\x9b\x3d\xbc\xf1\xc5\x7b\x6f\x3a\x3e\x41\xce\xee\xee\x09\xd6\x1a\xfe\x96\xbc\xdf\x79\xbb\x47\x3e\xec\xbc\xb5\xd4\x24\x7c\x49\xde\x5a\x0e\xbc\x23\x91\x57\x78\xe3\x7e\x89\xf9\x2c\x7e\xd7\x6a\xa1\x6b\xef\xa5\x4f\x1c\x0c\x5f\xbc\xb7\x3e\x41\x5f\xbc\xb7\xa6\xe3\xef\xee\x3a\x4b\x07\xb7\xde\x01\x1b\xa6\x27\xad\x16\x4b\xf6\x97\x04\x1d\xf1\xdc\xe5\x91\xf7\xd6\xc7\x1c\x66\x29\x52\x44\xe9\xd6\x61\xab\x85\xf6\xc9\xdd\xfc\x7b\x79\x1f\xf7\x18\xfb\xf8\xc2\x3e\x26\xfb\x80\xce\xc9\x4b\xbc\x4b\x16\x22\xd6\xe4\x46\x85\x5b\xbd\xf6\xc2\x3a\xc7\x79\x2e\x2e\x44\x96\x55\x9a\xce\x6a\xa7\xdd\x57\xe9\xde\x58\xd6\x70\x44\xbe\xe4\x35\x75\xe0\x7c\x8f\x14\x0a\x01\x3f\xdc\xef\xd8\xb6\xe3\xee\xd7\x85\x52\x88\xae\xe1\x12\xd7\x25\x53\xf3\x95\x99\x72\x51\xc8\x3a\x82\x6c\x48\xca\x09\x1f\xf5\x6d\x37\xe2\x17\x71\x6b\xed\x80\xb8\x04\x0a\xfb\xb6\x1b\x42\xc0\x10\xd4\x9a\xd6\x24\xc6\xb2\x7b\xc4\x58\xd2\x2d\x24\xcb\xa8\x8c\xd2\x93\x5a\xa5\xb3\xdf\x69\x7f\x60\x8e\xba\x53\x77\xd4\x77\xdc\xc1\x43\x1a\x59\xce\xae\xbf\xfb\xb4\xed\x41\x27\xcf\x0e\x44\x4c\x04\x24\xc4\x12\xf1\x50\xe1\x21\x16\x73\xda\x6a\x59\x3c\xaa\x7f\x3f\x21\xb1\x9b\x2e\x97\x96\x8c\xf1\x8f\x50\x48\x62\xcb\xc1\x56\x62\x3a\x7b\x24\x6b\xb5\xe4\x86\x89\x97\x40\xe8\x63\x5e\x4b\x61\xc2\x52\x2f\xb6\x1c\xbf\xd5\x8a\xad\xa4\x06\xca\xd2\x31\x44\x0f\xbc\x95\x59\x73\x04\xac\x45\x78\xb5\x79\x70\x57\x71\x98\x5a\xce\xe9\x04\x33\xf9\x5e\xee\xd9\xd9\x3b\xe1\x6e\xb4\x13\xd6\xa0\x42\xec\x2f\x99\x30\x8c\xac\xd0\x72\x36\x34\xab\x7b\xdd\x7a\x6a\xaf\x5b\x48\x57\xbc\xeb\x0b\x93\x12\x42\x3e\x7b\xa3\x62\xff\xa6\x72\x67\x98\x59\x93\x90\x8a\x37\x93\x7c\x99\x88\xf9\x2b\xdc\x48\x0b\xdb\xc6\xb2\xb5\x10\x6f\x58\xbe\xdd\xcc\xbc\xc0\x2f\x0f\x72\xe6\x38\x1c\xa1\x74\xb9\x5c\x39\x0e\x9c\x97\x47\xee\x65\x1a\x7f\x99\x86\xe6\xe5\xd6\xae\xd8\xad\x98\xaf\xec\x56\x50\x34\xf7\xa6\x3e\xa4\x10\x62\xf1\xaa\x2e\x6d\xb5\x78\xa0\x81\x22\x41\xee\xd3\xcc\xcb\x20\x99\x58\x6e\x68\x84\x6a\x0f\xad\x50\xa0\x73\xce\x4b\xcf\xe7\xaa\xed\x3d\x21\x97\xf8\x9d\x31\x71\x69\x9f\x6b\x30\x94\xec\x25\xe8\x96\xde\x04\x83\x8c\x5f\xb9\x2c\x1e\x58\x87\x9d\xab\x27\x04\xb1\xec\xce\xd5\x93\x26\x08\x0c\x61\xe7\xea\x99\x02\x79\xb6\x16\x84\x26\x3c\x68\x33\x83\x0b\x11\xc5\x7d\x86\x98\xfd\x7d\xe2\x3e\x93\x47\xd8\x18\xb4\x6b\xed\x0f\xa4\x9f\x92\x3d\x7e\xc3\x51\xee\x6e\x7d\x17\xcf\xa3\x61\x90\x84\x34\xed\x1b\xa8\xef\xa2\xfe\x2e\x39\x3d\x4d\x97\xbf\x61\xd4\x27\x5e\x60\x8d\xf6\xad\xd7\xa7\xa7\x43\xd7\xc7\x4b\x96\x55\x49\x41\x7d\x0e\xfa\x08\x63\xe9\xd6\x9b\x21\xe8\x3d\xf5\x6c\xeb\xa9\xbf\xec\x79\xb6\xf5\xc4\x3f\x3d\x1d\x2e\x9d\xd3\xd3\x21\xfb\xeb\x39\xd6\xb7\x3c\xe1\x54\x38\x1c\x3e\x3d\xed\x3c\x1c\x1e\xdf\x6e\xe7\x06\xc4\xc4\x28\x29\xf0\x6f\x1d\x78\x92\x1b\x10\x90\x7f\x9e\x46\xe8\x34\x42\x7d\xf7\xd1\x6d\x9c\xbb\xf8\xf6\x79\x2e\x7f\x2f\x5d\xbc\xdc\xbc\xe7\x7f\xdd\xee\xa6\xe3\xf6\xdc\x6d\xf7\x89\xfb\xd4\x7d\xe6\x3e\x77\xdd\xcd\x5a\xc2\x0b\x1d\xf7\x33\x81\x3b\xcc\x97\xf7\xd7\x50\x43\xed\xb2\xb4\x4a\xc2\x8b\x86\x84\xca\xb7\xd3\xe9\x75\xb6\x3b\x4f\x74\x02\x9e\x32\x02\x04\x05\x88\xa7\xe1\x5b\x07\x7a\xcd\x84\x54\x08\x70\x45\x9a\x96\xf0\xbc\x46\x00\xff\xac\x02\x34\x10\xf0\x84\x11\xa0\xaa\xb6\xc1\xc9\xeb\xc4\x6c\x0b\x62\xb4\xca\x5d\x45\x50\x91\xf0\xac\x56\xb9\xa8\xba\x06\xd0\x50\xf9\x76\xb5\xf2\xde\x4a\xe5\x4f\x6a\x95\xbb\x25\x37\x64\xc2\xd3\x5a\xe5\xaa\xea\x1a\x40\x43\xe5\xbd\x6a\xe5\xdb\x2b\x95\x3f\xad\x54\xee\xea\x5d\xc1\x13\x9e\xd4\x2a\x2f\xab\xae\x01\x34\x54\xee\x54\x2b\x7f\xb2\x52\xf9\x33\xad\x72\xb7\x3a\x0e\x1c\x57\x1f\xce\x22\xe1\xc5\x5a\x00\xbd\x72\x17\x89\xd1\x26\x2a\x7d\xaa\x2a\x2d\xd2\x1c\x78\xce\xaa\xc5\xd5\x41\xe7\x56\xe7\xcf\x66\x53\x42\xa5\xfe\x4d\x6d\xa8\x63\xf4\xd8\xb3\xad\x6f\x03\xeb\x8f\x7d\xeb\x57\x36\xc9\x73\xdc\x5f\x3b\xc5\x56\xff\xd7\xed\x6e\x3e\xa6\xd9\xc4\xd6\xd3\x1e\x3b\xa7\xd1\x3f\x4b\x7f\x25\xa7\x69\xfb\xb4\x7b\xda\xed\xb4\x1f\x75\xc7\x97\x60\x68\x86\x75\xf7\x34\xea\x8e\x79\x4a\x96\x84\x97\x88\x2d\x75\x4a\x5e\x72\x21\xdd\xd7\x0c\xf4\x7f\xa2\xbe\xfb\x1b\x63\xc7\x23\x26\x1b\xd9\xcf\x20\x7f\x84\xff\x89\xdd\x1a\xcc\xa3\x5b\xfe\xb2\x82\x43\x8a\x9f\x1c\xbe\x48\x0e\x8a\xe4\x7f\x82\x31\x36\xf0\x46\xaa\x16\x90\x35\xf5\x8a\x4a\x6b\x15\xad\xd6\x22\xb0\x61\x48\xd5\x62\xb3\x1e\x5d\xb0\x1e\x5d\x50\x47\x77\xe7\x16\x37\xd2\xef\xe0\x0b\x05\xda\x38\x3b\x9b\xc6\xc3\x20\x9d\x9c\x4d\xd8\x3f\xc5\xab\x89\xb3\x33\x03\x12\xf2\xad\x6d\x3f\x77\xbe\xfd\xb6\xf7\xf4\xc9\xf3\x27\xf6\xb7\xdf\x32\x55\xb0\xb8\x86\xfe\x5a\xe2\xf2\x85\xe0\x97\xa9\xff\xa0\x91\xb8\x15\xae\x65\x07\xa4\xfb\xdb\xa9\x02\xe8\x98\xfd\x83\xf2\x7e\xf7\xa9\xff\xa8\x0b\x29\x59\x79\xd6\x90\xb5\x5a\xdc\x9f\x89\xd8\x4c\x2a\xae\xba\xb7\x5a\x19\xcc\x57\xa1\x53\x3a\x1d\xb5\x5a\xe5\xbf\xab\xc5\x58\x2a\x4c\x49\xba\x5c\xce\x97\x4b\x45\x1a\x32\xb4\xcb\x8a\x06\x46\xda\x63\xbf\x81\xae\xa1\x6d\xa1\x2d\xba\x5c\x6e\x29\x0d\xb2\xb6\xcb\xc6\x18\x1b\x8e\x50\xb6\x45\x8a\xf7\x1a\xb5\xfd\x92\x75\x91\xb4\x2d\x87\x07\xf0\x0d\x79\x00\xdf\x0c\x31\x15\x1a\x62\xa0\xc5\x23\xb3\x58\x6a\x42\x96\xc3\x34\xa1\x09\xd6\x8e\xfc\xb8\x56\xae\x85\xb5\x48\x24\x16\xea\x25\x3e\x21\x25\x25\x49\x05\x45\x86\xf7\x74\x07\xe2\xa3\xfa\x26\xa1\x08\x96\xd1\x57\x78\x5d\x1b\x42\x69\x33\x27\x58\xc5\xce\x08\xbd\xc8\x27\x19\x7f\xbf\x0c\x11\x68\x4f\xdd\x34\xc7\xb8\xfa\x5d\xff\x2d\xa2\xf9\x44\x9d\xd5\x2e\x6d\x4f\x82\x54\xdd\xc8\x1d\xc2\xa5\xa8\x4b\xdb\x1b\x5c\x10\xd5\x55\x5a\xe2\xd5\xca\xb3\x07\x18\x93\xa9\x67\x9c\x9d\xf1\x1b\xe0\x5f\xd2\xb3\x74\x12\x24\x7c\x04\xfb\x70\x4e\xd0\x90\x74\xbd\xdf\x3a\xbe\xf9\x48\x06\x4e\x18\xb7\x5a\x63\x7e\x23\x4e\xfd\xed\xbc\x7d\x75\xf6\xe1\xe3\xd1\xc9\xd1\x72\x69\x18\x18\xf7\x0d\xf1\xca\x00\xa5\xc9\x00\x9f\x39\x1d\xc3\x1c\xf2\x88\x2b\x64\x51\xe8\xac\x70\x4d\xae\x6a\xa7\x9d\xf0\x8a\x5c\x95\xf9\x37\xa4\x08\x5f\x62\x98\x67\xe2\x35\xc6\xb5\x26\xc7\x78\x6c\x96\x4e\xdb\xec\x23\xec\x9d\xfa\xb7\xf9\xd2\x67\x72\xad\xb6\x8d\xd8\xad\xd6\xb0\x2c\x66\x2f\xee\xb4\xfb\x5c\xbb\x3b\x45\x78\xb9\x39\x8a\x13\x36\xa9\x44\x82\x8f\x19\xa2\x47\x4e\xa7\xdd\x37\xb0\x69\x3c\x32\x30\x1c\x93\x4b\x7e\xd1\x69\x40\xe1\xa8\xb0\xff\x61\xbf\xd8\xfe\x81\x0b\xf2\x12\x4d\xc1\x38\x0c\x66\x06\x86\x43\xf2\x52\x7a\xe4\x05\x43\x3c\x19\x32\xb4\x69\x71\x52\x1e\xc6\x5b\xcc\x42\xd4\xc7\x4a\xe9\xdc\x85\x3b\xb9\x41\x6c\xc4\x64\xbb\xd1\x4e\x11\x62\xc6\xcb\xe4\x11\x78\x4a\x33\xee\xd0\x1f\x12\xcf\xf1\xf5\x58\x4b\x07\xff\x5a\xf4\x1f\xff\xb5\xe8\x3f\x3c\x08\xfd\xd9\xd9\x30\xc8\x82\xb3\x33\xb1\x99\xac\x6a\xe1\x59\xc1\x70\x88\x58\x3d\xb8\x16\x35\x42\x9b\xa2\x90\xe8\xf3\x3e\xb4\x2c\x3e\xeb\x51\x44\xa8\x17\xfa\x9e\xed\x63\x42\x08\x4a\x48\x86\x97\xcb\x68\x8b\x44\xad\x56\xb2\x45\x92\xd2\x77\x42\x21\x0c\x8a\x0a\xbe\x34\xc5\xc0\xbf\x2b\x69\x6b\x8b\x36\x3d\x43\xcb\x11\xad\xc8\xc5\xd5\x57\x91\x0d\xde\xcf\xea\x77\xbb\xd9\x12\xc8\xaf\x06\xd0\xc7\x0e\x21\x76\xab\x45\x77\x49\x92\x23\x4d\xf0\x6e\xbd\x61\x8b\x9d\xfc\xaf\x4f\x5d\xcf\xaf\xc5\xad\x90\xeb\x9a\xe4\x93\x62\xb6\x3a\x12\x2b\xef\x29\x32\x26\xf1\x4a\x51\x44\x32\x8c\x97\xcb\x92\x98\x84\x99\xc5\xea\xc9\x13\xfb\x38\x8f\xe3\x29\x0d\x22\x83\x07\xde\x3b\x3b\xe3\x72\xe7\xec\xcc\xd8\x22\x44\xf8\x6e\xe2\x41\xf1\xfb\xa1\xb7\x72\x0b\x32\xeb\xab\x24\xd7\x60\xcb\xab\xe1\xbb\xdc\xb3\x57\x2d\x2c\x46\x11\xa1\xbb\x69\x77\x40\x54\x40\xfb\xc2\xa4\x74\xf9\x93\x39\x0e\xb0\x3e\xd4\xf6\x16\xda\xfa\x0e\x51\xbc\x5c\xa2\x8c\x50\x38\x6f\xb5\xce\x37\xc3\x68\x33\xc3\xb8\xd5\x42\x6f\x78\xc6\xea\xdd\x9a\x2d\xa7\xdc\x1c\xa8\xbc\xcf\x2a\x1f\xf6\x15\xe2\x0d\x67\xc9\xe2\x36\x23\x5b\x5b\x88\x9a\x86\x81\xf3\x01\x3f\xe3\xa0\xf8\xb6\xbc\x85\xc0\x7a\xe7\xc6\x0d\xa4\xc5\x5c\x3b\x72\x94\xb5\xe0\x5b\x86\x47\x16\x39\x2b\x9e\xac\x95\xd8\xb4\x6c\x1e\xf5\xbc\xcc\xc9\x95\xd7\x0f\x56\x91\xd8\xe1\xc8\x72\x14\xe1\x7e\x24\x4d\xef\xfc\x44\x7b\x15\xc7\x67\x34\xa9\x3b\x48\x2c\x26\xe2\x61\xff\x50\x3c\x8b\x74\x6f\xf3\x1c\xf4\x82\x43\x3a\xa5\x19\x6d\x7a\xab\xc7\x31\xb0\xd5\x8b\x8d\x7a\x01\xb6\x59\xc1\xea\x51\xbf\x8a\x6b\x4c\xb3\x86\xd7\x8c\x95\x32\xac\x07\x0e\xcb\x83\x39\x5a\x44\x53\x4f\xf8\xae\xa6\x1c\x01\x45\xbc\xb6\x6b\xf9\x28\x1d\x28\xee\x33\x68\xd5\xf4\x4a\xb5\x93\xa0\xe9\x65\x70\xb5\x5a\xe5\xa3\xbc\x5f\xba\x4a\x63\xe8\x34\xfc\x55\x9c\x29\xad\x3f\x5e\xad\x3c\xfa\x28\x39\x40\x0e\xd5\x5e\x23\xf7\xcd\x16\xb9\x19\x3f\x04\xcd\xe1\xe0\xe1\xbd\xe3\xf9\x55\xf0\x86\x3e\x69\x68\x13\x44\xe4\x3d\xa7\x7c\x43\x4d\x89\x68\xd7\xe6\x11\x3b\x8b\x33\x1e\xcb\xe9\x67\x9d\x59\x3c\x43\xd8\x3d\x56\x2d\x8d\xc0\xc1\x60\x63\x5c\xad\xf2\x01\x5d\x57\xaf\x6f\x33\xda\xb5\x55\x87\x65\x5e\xe4\x7b\x4e\xad\x19\xf5\x7e\x91\xc5\xde\x57\x17\x09\xa0\x5c\x63\xab\x94\x5c\xe5\xbe\xfe\xc4\x47\x15\x4c\xc8\x7b\xa4\xab\x67\xc9\xae\xdd\x57\x3b\xa9\x14\x32\x1f\xbb\x91\x97\x30\xb2\x88\xea\x93\x8f\x0f\xef\x93\x5b\x26\xcc\xb8\x41\x72\x02\x97\xc1\x8c\xfd\x42\x17\xcb\xe5\x01\x06\x21\xee\x44\x56\x5e\xc5\xb9\x7e\x32\xbd\x55\xf7\x38\x24\x0c\x93\x02\x95\xa2\xf5\x0e\x58\x29\x37\xa6\xd9\x4a\xa1\x35\x1c\x2e\x0b\x89\xe9\x5b\x2d\xb4\x76\x68\x97\xc5\xd8\xfa\xcf\x8f\xad\x05\xdb\x3e\x68\xa5\x83\xe1\x90\xe8\xdf\x8c\xdd\x6b\xa5\x87\xe2\xa6\x44\x18\x35\x21\x5c\xd3\x86\x6a\x79\xd9\x0e\x2e\x05\xdf\xc1\x6b\xf8\x83\xa0\x77\x0d\xe3\x95\x69\xfb\x5f\x56\xbc\x0d\xb5\x5a\x99\x67\x33\x93\x81\x7a\xb6\xdf\x5f\x79\x2c\x5c\x18\x1c\x03\xb6\x9e\x96\x91\x88\xf8\xd9\x76\x71\x8b\x35\x86\x54\xda\x09\x31\x86\x39\x71\xba\x36\x4c\x89\xe7\xef\x04\x4c\x3f\x91\x6e\xd4\xa8\x17\xf8\x1b\x73\xb2\x8f\x46\x45\xc8\x4c\x0c\xa9\x17\xf8\x24\xdc\x23\x4e\xcf\x6e\xb5\x46\xa5\xd7\xb4\x9e\xcd\x6d\xe0\x0f\x28\x68\xb5\x46\x58\x09\xb6\x11\xa7\x60\x43\x78\xa4\xb0\x1c\x18\x92\x94\x7d\x53\x97\x91\xb9\x63\x9a\x93\xdd\xb0\xd5\x9a\xaa\x6b\x33\xf3\x1d\xe5\x75\x6c\xe4\x4d\x7c\x58\x10\xfe\x8e\xe1\x92\x30\xf9\x76\xd9\xbf\x74\x6d\xd8\x42\xc3\xfe\x0c\x0d\x61\x81\xdd\x04\x4d\x61\x01\x11\xc6\xa2\xcd\x01\x89\x77\x2c\x2b\xd8\x51\xcf\x1d\x52\xb9\x79\xbe\x85\xae\xfa\x33\x74\x25\x4a\xb0\x16\xc9\x42\x83\x38\xca\xc2\x68\x4e\x37\x69\x3e\x6c\xb5\x86\x62\x9e\x2d\x30\x4c\xc5\xaf\xcb\xd2\xe5\xf9\x34\x47\x19\x66\x6a\x0b\xbc\x26\x47\xa8\x10\x8e\xaf\xfb\xef\x0a\xb1\xe4\xbe\x06\x1b\xc3\xdd\x07\x41\x20\x75\xcc\xa3\x42\x39\xb2\x78\xa9\x44\xf6\x43\x54\xe8\xaf\x89\x97\xf9\x84\x7a\xaf\x4d\xa6\xbf\xea\x47\xbc\xca\xb4\x7b\x6d\x3a\x02\xf8\x35\x33\xee\x38\x70\x56\xac\x3c\xa1\xf7\xda\x27\xc9\xca\x46\x42\x7a\x1d\xb2\xa5\xb8\x88\xf2\x7b\x3b\x08\x52\xca\xd6\x26\x65\xd8\x49\x77\x29\x1b\x3c\xdd\xa9\xa7\x03\x7f\xb1\x25\x32\x7b\x8d\x99\x10\x31\xe5\x5a\x40\x6c\xaf\x87\x80\xc8\xeb\xf9\xe5\xc9\x91\xbc\xb1\xc8\x7d\xa2\xa2\x77\x7c\x3e\x41\x88\x73\xcd\x80\x79\x53\xce\x07\xa6\x22\xf5\x5f\x29\xb5\xc3\x35\x8c\x62\x6a\x10\x12\x2e\x97\x19\x21\x71\x25\x82\x56\x21\xf7\xa5\x3a\xb4\xa1\xe9\xc3\xda\xbd\xe1\x6c\xb9\xac\x3c\x6e\xc7\x9a\x6f\x9b\x3f\x72\x2c\x9b\xc0\x28\x8b\x90\xf3\x1c\xe3\xc6\xcb\x2e\x1b\x51\x43\x48\x50\x2e\x1e\x10\xde\x60\x6a\x11\x77\x7a\xc3\xa6\xc8\xda\xbd\x8c\x52\x5b\x5a\x51\xd6\xaf\xc3\x68\x18\x5f\xb7\x5a\x28\x22\xe2\xa7\x4e\x63\xb4\xe6\x28\x0b\x42\xed\x2e\x5f\x0c\x01\xbe\x15\x47\x16\x29\xc9\xf4\x4b\x7e\x2a\x39\x93\x6f\xf5\x91\x11\xd1\x6b\x9a\x18\x18\xa2\x22\x25\x9e\x0e\x59\xca\x86\xee\x8a\x80\x35\x7d\xe5\xe0\x89\x72\x7f\xb9\x14\x28\xb1\xe5\xb5\xb3\x34\xfc\x83\x12\x1b\xe4\xcb\xc0\xcb\x90\xe5\x8a\xeb\x5c\xd3\x21\x4d\xe5\xa2\xcc\x6a\x4c\x95\x57\x58\x79\x93\xfd\x82\x2e\x2e\x83\x19\x37\xba\x0e\x83\x19\x64\xea\x4a\x5d\x90\xa6\xe1\x38\x42\x19\x06\xba\xeb\xa8\x44\x81\xb9\xa8\x10\xeb\x51\x98\x10\x85\x44\xae\x87\x17\x74\xa1\xaa\xe7\x17\xa2\x48\xc2\x3f\xd8\x1c\xd2\xea\xf6\x22\xf5\xa9\x05\x67\x2a\x2e\xcc\xd3\x28\x4b\x16\xfa\x16\x49\xb0\x3e\x2b\x5d\xc9\xa2\x9d\x77\x1f\x3f\x1d\x06\x33\x92\x40\xa2\x2d\x1b\x67\x97\x41\x72\xf1\x8a\xc1\xec\xa7\x9f\x52\x3a\xac\xac\x06\x74\x8b\xe8\x6c\x6a\xb5\xb8\xcd\xc9\x6f\xff\xca\x0c\xc1\x4b\xc5\x0c\xc9\x59\x6e\x98\x02\xfb\x97\x35\x88\xbb\xaf\x03\xf6\x2f\x2f\x1f\xf9\x4a\x70\x08\x10\xd5\x7e\xca\x37\x8b\xca\xca\xa0\x5a\xb1\xf6\xc5\xcb\x63\x3d\x9f\xb0\xb5\x59\x6f\x95\xe8\xaa\x4a\x5b\xa6\x34\xdb\x2c\x9e\x27\xf3\x5e\x5b\x2e\x85\x13\xa6\xce\xe1\xfe\xcf\x67\x9f\xf7\xdf\x7d\x7a\xb5\xa1\x0f\x00\x65\xdd\x6f\xb0\x92\x01\xa1\x5e\xcd\x97\x85\x8f\xc4\x2e\x1b\xcb\x4e\x49\xd0\x89\xe8\x4d\x86\xf0\xce\x56\xda\x19\xc6\x11\xdd\x29\x93\x44\xdd\x94\x88\x77\xb4\x72\x00\x30\xb1\xa4\x7e\x32\xf1\x55\x3c\x11\x92\x95\xf3\x95\x9e\x5f\x83\xa3\x18\x92\x3e\x12\xb2\x59\x70\x29\xc1\x6e\x85\xdd\x90\x10\x0a\x36\x21\xb1\x65\xad\x3e\xb2\x8c\xaf\x68\x32\x9a\xc6\xd7\x06\xce\x75\x8e\x25\xda\x24\xa9\x56\x1c\xfe\x41\xab\xcc\xbc\x4b\xa7\x95\x85\x84\x52\xc5\x1b\x81\x2b\x8a\x47\x6d\x74\xb1\xc9\x93\xc9\xa7\x01\x95\x3a\x6a\xca\x54\xa2\x8e\xb4\x9b\x6a\x51\x5b\x9e\x7d\x14\x57\x26\xd3\x6a\x6d\xb1\x18\x25\xca\x2d\x67\x85\xb7\x10\x13\xf5\xb0\x39\xc1\x95\xd1\xd4\xaf\x0f\xb6\x18\xe2\xda\xe0\xac\x76\x40\x5c\x19\x8b\x31\x98\x66\xc1\xdb\x92\xcb\x7b\xe5\xc0\x93\x2f\xd8\x95\xcf\x62\x4e\x62\x8d\x1d\x2c\x8b\xac\x3c\xa5\xd6\x2a\x65\xbc\xa6\x15\x5e\x8b\x74\x2f\xf3\xfb\x68\x45\xcc\x15\x79\xba\x04\x2c\xa5\x8d\x62\x90\x2c\xa2\x4b\xc3\x8a\x80\x94\x33\x96\x96\x25\x2b\x22\xb3\xd0\xc9\xc5\x2b\x0f\xcb\x2a\xd9\xe0\xc9\xb1\x2c\x3a\xcc\xaf\xb6\x76\x14\x46\xc3\x95\xb9\xda\x3c\xc2\x54\x83\xfb\x72\x14\x15\x86\x6c\xf2\x50\x55\x58\xe2\x53\x1a\x7d\x72\xbf\xbd\x98\xac\x1b\xeb\x09\x6e\xc2\x2c\x99\x90\x08\x26\x24\x5c\x60\x26\x5e\xe4\xb3\x39\x2c\x84\x1f\x4b\xe3\x19\x7c\x32\x33\xf1\xe8\x26\xbc\xdf\x54\x9a\xce\x5b\xd9\x27\x2c\x8b\x81\xe9\x78\x1a\xfa\x49\x60\x7b\xc8\x32\xc7\xba\xc5\xb2\x20\x69\x9a\x8d\xcd\x36\xdd\x03\x10\x92\xda\x80\x90\x22\x34\x87\xb8\xc4\xbe\x22\x47\xd7\xe9\x2f\x7a\x21\x2e\x4a\x75\x40\x21\x52\xcb\x15\xae\xf0\x39\x26\x47\xbf\x5c\xf6\x18\xa7\x6f\x99\x3c\x76\xb7\x1c\x79\xa9\xbd\x3e\x14\xb1\x2b\x01\x94\xc3\x2a\x39\xa4\x72\x08\xfe\x0c\xd1\xc1\xbf\x84\x68\x4e\xf3\x1d\xa4\xa6\x7f\x86\xd4\xf4\x5f\x44\xaa\x18\x51\xeb\x89\xd5\x87\xda\x05\x5d\xa4\x0d\x04\x32\xd1\x1c\xe8\x42\xa9\x36\x55\x39\xc6\x75\x05\xd3\x3b\x0a\x32\xba\xc3\xc6\x92\x82\x27\xc9\xd7\x31\x92\x55\x17\xdf\x51\x9d\xf4\xb2\xa8\xaf\x6d\x51\xa9\x66\x17\xda\x6b\xc4\x35\x6c\xbe\x10\x70\x75\x23\xa9\x88\x7a\x6e\xb3\x26\x3b\x58\x1a\x35\x91\x9a\xb4\xf2\x9e\x3c\x2f\x06\x09\x17\x11\xd5\xda\xb3\xf8\xfb\xe3\xa3\xf7\xcd\x17\x05\xcb\xa0\xfc\xa5\xf2\x0a\xf2\x7d\x6a\x59\x37\xaf\xd6\x8b\x4c\xd3\x27\xfc\x81\x88\xa8\x51\xf4\x67\x29\x3a\x78\xd5\xc5\x08\xa9\xd3\x20\x76\x82\x9b\xa9\x30\x0c\xe5\xbc\x43\xd6\x17\xed\x60\x6a\x12\x79\xdf\x8b\xbb\x8a\xc2\xa6\xe1\x1a\x66\x24\x9b\x8c\x22\x12\x31\x51\xc8\x74\x49\x93\x18\x9b\xbb\x9b\x65\x90\x0a\x9a\xe7\x28\xc5\x50\x58\xca\x28\x6c\xf0\x55\x86\x12\x92\xe2\x7e\x52\x6e\xe3\x65\x40\xb1\x9b\xe0\xe5\x12\x69\x57\xb0\x70\x8e\xee\xbb\x46\xa6\x6e\xed\xf5\x6c\x71\x0d\xbe\xe7\x88\x67\x60\x3d\xdd\x13\x6c\x50\xdd\xf4\xec\xd0\x68\x10\x0f\x69\x3f\xeb\x08\x2c\xfd\x84\xd9\x93\x22\xf1\xd3\xc7\xb7\x07\xf1\xe5\x2c\x8e\x68\x94\xf1\xd4\x9a\x36\x2f\x7d\xda\x95\x77\xfc\xfa\x45\xcb\xf9\xdd\xc9\xac\x6f\x18\x2e\x95\xd7\xf9\x32\xd3\xd1\xe3\xa6\x36\x1f\x1d\x48\x9c\x1b\xd2\x44\x97\xee\x27\x44\x3c\x3a\x61\xa7\x1b\xbc\x32\xc3\x5d\x3d\xac\xe6\x47\xd5\x19\xe9\x9e\x7a\xe8\x74\xd8\xc6\xa7\xbe\x3a\x33\xa5\x18\x28\xd1\x42\xca\x9c\x7a\xa7\xc3\x36\x3f\xbb\x37\x0c\x0c\x59\xbf\xdc\xc8\x48\x3c\xca\x4c\x02\xf6\x87\x07\x3a\x49\x78\xcc\x20\xcf\xf1\x7d\x12\xb1\xa5\x8e\xfa\x24\xca\xb9\x5d\x6f\x9c\x27\xc1\xe0\x82\x66\x77\x11\x82\x4e\xbd\x53\x1f\xdf\x41\x45\x49\x42\xb1\x77\xcd\xea\xe8\xf3\x8a\x3c\x5f\xbd\xc1\x67\x9f\xa0\xea\xf7\x22\xbf\x20\x44\x7a\x0a\x6c\x20\x41\x58\xbe\x0a\x69\xc4\x90\x46\x55\xa4\xec\x13\x32\xec\xf2\xe4\x2c\xcf\x73\x94\x91\x10\xdd\x6a\xfc\x76\x8d\x28\x8e\xa8\x91\x43\x86\xd9\x5c\x6e\xf2\xc4\x28\x0f\x32\x56\xbc\x28\xf6\x13\x57\xbc\xbd\xe2\x17\x5d\xca\x36\xff\xe6\xf5\xff\xbf\x96\xcf\x1b\x8d\xfb\x48\x39\x12\x32\x5a\x46\x83\xf3\x57\x6d\x7c\x95\x3c\x33\xbb\x63\x30\x36\x0d\xac\x4a\x12\x03\xf3\xbb\xd2\x4a\x71\x0d\x88\xe6\x88\x5c\x39\x21\x27\x86\xda\x84\xdb\x08\xf4\xdb\xd1\xdc\xff\x5b\x8c\x02\x0c\x11\x8a\xf9\x2b\x17\x48\x70\xe9\x10\x93\x3b\xb1\x4d\xa4\x13\x5b\xd6\x88\xe1\x7c\x40\x1b\x9f\x38\xeb\xb2\xe6\x3b\x71\xdc\xc6\x9d\xa9\xaf\xec\x5d\x44\xad\xd6\x56\xd5\x35\x62\x84\xfb\x5c\x81\xd5\xaf\xd1\x36\xfb\x54\x44\x19\x66\x93\x94\x13\xe3\xae\x5e\x39\xe9\x53\x54\x75\xbe\x7b\x97\xf7\xdd\xc2\xd5\xaf\x25\x7f\x65\x38\xc7\xeb\xa2\xf6\x64\x1e\x57\x49\xf8\x11\x15\x3f\xc1\x23\x11\xd0\x1c\x1a\xc6\x03\xc6\x6e\x92\x67\x1d\x7a\x93\x25\xc1\x20\x23\x29\x64\x22\xf6\x2b\x99\x43\x56\xbe\x5c\xaf\x6d\x51\x6f\x31\x49\x21\x06\x9f\x90\x3a\xfc\x09\x1e\x97\x45\xec\xd7\x9a\x01\xc9\x1b\xc7\x8c\x70\xfe\x43\x97\xe4\xb9\xf2\x1a\xa6\x37\xe5\xeb\xe5\x49\x2d\xa8\xa3\x3c\x28\xed\x7b\x01\x3f\x28\x01\xc3\x33\x20\x01\xc3\x37\xfc\x22\x02\x90\xab\xe7\x05\x28\xe1\x3f\x7d\xc2\x7e\x47\x40\x71\x09\x78\x9f\x04\xd1\x82\xb2\x95\x15\x0b\xdc\x5a\x1d\xcd\x98\xd7\x89\x84\x07\xe1\x6c\xc2\xc8\x04\x43\xb9\x9c\xf5\xf5\x31\x46\xe5\x10\x13\x7d\x50\x1b\x3f\x89\x72\x71\x4d\xe5\x13\xfe\xf2\xf1\x42\x25\xea\x81\x24\x26\x2c\xc2\xec\xa0\x04\x32\x6e\xcb\x54\x47\x7f\x88\x95\x01\xee\x95\xfb\xbb\x72\x69\x59\x23\x3d\x94\xf8\xa3\xad\x56\x2c\xdd\x8e\xb1\x5e\x01\xf5\x5c\x0d\xb3\xc9\x1e\xcb\xa6\xb6\x8c\x62\x27\x56\x90\x60\x1a\xc4\x30\x03\x14\x02\x9f\x1b\x6b\xe3\x44\x15\x9e\xac\xf7\xec\x1c\x97\xb8\x5c\x83\x8d\x53\x31\xfc\x3f\x25\xd3\xc6\x63\x99\xdb\x79\x32\x75\x0b\x21\xd8\x37\xb0\x67\xfb\xcb\xa5\x61\xc0\xef\x73\x9a\x2c\xdc\x39\xe2\x2e\xee\xb2\x95\x67\x25\x2b\xeb\xfe\x9d\x8e\x59\x1b\x97\x72\xed\x32\xcf\xd6\x37\x08\xb7\xfd\xee\xb8\x29\xc0\xdb\x63\xc3\x14\x6f\x07\x0e\xe2\x21\xdd\xcf\x90\x8d\xcb\x9b\xef\xce\x33\xf6\xf1\x69\x36\x53\x6f\x6b\xf3\x26\x87\xad\x0d\xfa\x89\x1c\x42\x63\x9a\x69\xf7\x83\x84\x62\x9b\x42\xb8\xea\x16\xb6\x76\x55\x29\x5e\x85\x98\xc9\xbc\xb7\xe9\xab\xe2\xf1\x67\x13\x53\xc4\x99\x7d\x38\x42\x5b\x12\x85\xd8\x94\x93\x43\x6f\xcb\xd9\x28\xf5\x50\xd9\x48\x23\x38\x1f\x88\x50\x51\xd4\x7b\xea\x13\x63\x48\x0d\x10\x81\x72\x1a\x5b\xf1\x3e\xb8\xa4\xac\xd3\x3c\xdb\x2f\x91\xd6\x9e\x72\xd8\x3b\xd1\xae\x63\xf3\x57\xac\x99\x67\x9c\x19\xa6\x74\x7a\x3b\x4a\xe2\xcb\x03\xc9\x6a\x14\x61\x9f\x44\xdc\x37\x95\xed\xf4\xb6\x9f\x3c\x7d\xf6\xfc\xc5\xb7\x9a\x8b\xf7\xa6\x5a\xeb\x13\xb0\x2e\xc0\x8b\x29\x5d\x6d\x6e\x52\x7a\xf9\x67\x8d\x1d\xd2\xd1\x78\x12\x7e\xb9\x98\x5e\x46\xf1\xec\xf7\x24\xcd\x0c\x35\x3e\xd7\xac\xd1\x5c\x17\xa1\x39\x86\xe6\xd2\x25\xa7\xb8\xc8\xa8\xf0\x1d\xdd\xe6\x90\xe0\x92\xb0\x72\xd3\x5f\x51\x98\xe7\x08\xf7\x2b\x65\x6a\x9e\x6e\xca\xab\x45\x01\x54\x47\x7f\x21\x5a\x68\xf3\x0b\xfd\x0a\xd6\xcd\x81\x78\xaf\x7f\x4e\xf9\x93\x7d\x3a\xdc\xbc\x0e\xb3\x09\x17\x94\x9b\x71\xb2\x59\x7a\xe3\x2e\x24\xa1\x8c\xfb\x2e\xae\xf2\xc0\x9c\x38\x3b\xf3\xdd\xfa\x63\xa5\x9d\xb9\x69\x96\x24\x4e\x37\xc3\x68\x33\x52\x91\xe9\xcb\xe7\x4a\x73\x1f\xe3\x50\x99\x51\x53\x66\x45\xa4\xde\xd4\x27\x91\x37\xf5\xe5\x96\xce\x6d\x40\x12\x14\x95\x17\x28\x07\xc4\xde\x19\xec\x06\xaa\x96\x81\x69\xe2\x58\x21\x08\xbc\x81\x2f\x70\xb0\x5f\x0c\x0d\xff\x5b\x1e\xe1\xa5\x0f\x9b\xa4\xda\x7d\x5d\xe3\xb1\x17\x58\x23\xdb\xfa\xd6\xbf\xed\xe5\x06\x18\xe3\x90\x2b\x5d\x3a\x04\xd2\x41\xb0\x29\x81\x36\xf4\x13\x03\xee\xd1\xa4\xbc\x12\x33\xa4\xab\x52\xa9\x1c\xa1\xda\x65\x19\x19\xf3\xac\xb8\x45\xa5\xa4\x9a\x88\xc3\xe3\x6c\x14\x3e\x29\x95\x2f\x4d\xcc\xdd\xd6\x49\x9b\xa3\xe8\xaf\xda\xe5\x4c\xa9\x05\x0b\xae\x79\x3e\xc4\x28\xc2\x10\xa3\x44\x3f\x2c\x11\x67\x19\x77\x93\xac\x28\x0d\xf5\x17\x5b\xea\xdd\x74\xc2\xac\x57\xa7\xfe\x74\x3d\x23\x88\x92\x98\x2f\xc8\x65\x83\x8b\x12\x9a\xe1\xd8\x2c\xd5\x9b\xbc\x20\xae\x19\xe2\xaf\xe4\xdb\xc0\xcd\x7f\x8a\x35\x60\xf8\xe9\xe3\xdb\x7f\x4a\x9f\x86\x4c\x65\x5c\xcc\xe8\xe6\x3f\x05\xae\x7f\xc2\xe6\x38\xce\x36\xff\x69\x98\x0a\xa5\x69\xfc\xd3\x10\xa7\x75\x8a\xa2\x46\x45\x1c\xee\xe2\xca\xea\x2b\xb1\xda\xd3\x36\xe3\xf1\xeb\x57\x8f\x5f\xbf\x36\x5c\xe3\xff\xfd\xdf\xff\xf3\xff\xfe\xef\xff\x31\xc0\x78\xfc\xfa\xf5\xe3\xd7\xaf\xca\x14\x26\x32\x43\x65\x41\x31\x5b\x9c\x77\x49\xe6\x45\x9e\xed\xfb\xa4\xa1\x76\x7e\x3a\x5b\x0e\x20\xf9\x74\x5e\x24\x6f\x24\xdc\x1a\xb2\x99\x91\xa7\x50\x24\x38\xd7\x6a\xc8\x33\xcf\x78\x7c\xd0\x63\x7a\x1b\xab\x5d\x73\xb9\x53\xd5\xae\x41\xc4\x70\x2d\x5e\xbe\xa7\xca\x29\xc1\x9c\xc4\x5e\xea\x6f\xe8\xdc\xd2\x66\xca\x9c\x5f\x74\x87\x8c\xcd\xfa\xe2\xe0\x97\xdf\x08\xcc\xf3\xfb\xa2\xa5\x47\x1d\xa6\xa7\xcb\xf9\xc9\xef\xbf\x7e\x78\x0b\x21\xe9\xb5\x13\x88\x49\x68\x39\xd4\x7a\xa6\x5b\xf9\xea\xda\xcb\x8d\x2d\x37\x8b\x17\xea\xc7\x8d\xa3\x52\x1c\x2d\x1e\xf2\x19\x31\x0c\xdd\xbe\xaf\x6e\x7c\xe5\xda\x26\x22\xd1\x76\xe9\xc8\xad\xe6\xef\xdc\x0d\xe0\x32\xbe\xa2\x27\x71\xa3\x3f\x32\x93\x18\x87\x86\x89\x6a\x54\xdd\x38\xc4\xa4\x5c\x64\xa8\xac\x82\xce\x85\x43\xcc\x0c\xe7\x30\x98\xc6\x29\xfd\x10\x64\x13\xdd\x15\x90\x72\x6d\x25\x91\xa8\xf3\xb8\xb2\x71\x37\x6a\xe3\x77\x51\x34\x57\xa5\x98\xc4\xf8\xd5\xc0\x39\x4c\xc3\xe8\x0e\x62\xdf\x95\xc4\xae\xd2\x28\x49\xfb\x7d\x1e\x0c\x93\x20\x0b\x07\x07\xf3\x64\xa5\xe1\x72\x23\x40\xe1\xfb\xd1\x30\x37\x4d\xca\xb1\x6c\x9a\x99\x8e\x8d\xe1\x8f\x56\xf0\x27\x38\x87\x73\xfa\x47\x48\x93\x75\xc8\x21\x84\x58\xab\xe0\x60\xb5\x82\x4d\x33\x92\x7f\x93\x7a\x85\xe1\x4a\x85\x31\xce\x21\x48\x06\xab\x15\xf1\x6a\x28\x31\x29\x64\xc4\xcc\x20\x22\x66\x04\x21\x31\x43\x88\x89\x19\xeb\x6e\x49\xce\x6e\x1c\x48\x8b\xde\x83\x39\x89\x2c\x0a\x53\x12\x5a\x19\x0c\x48\x60\x51\x18\x91\xd4\xca\x60\x42\x06\xed\x81\x39\x6a\x8f\xd8\xfa\x16\xef\xda\xab\x47\x84\x11\x1d\x07\x59\x78\x45\x37\x93\x60\x18\xce\x53\x77\xd3\x30\x85\x63\x4d\x3d\xba\xdc\xd9\x8d\x72\xc7\x57\x1d\x5a\x0e\x59\xe9\xac\x0c\x17\x71\x12\x27\x7b\x6c\xa6\xe0\x70\x84\x8a\xa7\xce\xa3\xf6\xdc\x9a\xb6\x07\x98\xe7\xb4\x5a\xb1\x72\x43\x1b\x59\x01\x0c\x49\x68\xa5\x70\x49\xe6\xed\xb9\x39\x6d\x4f\x61\x41\x66\xed\x99\x39\x6c\x0f\xe1\x4a\x4c\xc2\xf4\xf7\x24\x43\x97\x18\xc6\xda\xe7\x04\xc3\x39\x89\xdb\x3c\x21\x0b\x22\x84\x12\x4b\x54\x36\x88\x53\x84\x2e\xcd\x89\xb5\xc0\x5d\xd4\x6b\x5f\xb5\xc7\x18\x73\xaf\x8f\x67\xe4\xbc\x3b\x86\x6b\x72\xde\xbd\xda\x28\xe8\x3a\xb3\x1c\x45\x13\xaa\x0c\x4b\x6a\x9e\xb5\x07\xaa\x8d\xe6\x59\x7b\x54\xf8\xbc\x34\x89\xb1\x6f\x98\x31\xcf\x62\xff\xda\x60\xf3\xee\x47\xa3\xf6\x6c\x6f\xd0\x1e\xe2\xda\x30\xa0\xe6\x75\x7b\xbe\xc2\x2d\xf3\xba\x3d\xc5\x5a\x04\xc6\x95\xe9\xd0\xc0\x60\x3e\x76\xea\x23\x47\x06\x8b\x2a\xc6\xce\x86\x78\x7f\x8b\xd8\x10\xc2\x82\x3f\x8c\x25\x01\x86\x01\x89\xc4\x77\x1a\x46\xec\x7b\x44\xa8\x39\x85\x09\xc9\xcc\x01\xcc\x88\xf3\xdb\x1c\x86\x64\xde\x0f\xac\xd4\x4d\x2d\x1e\x99\x35\x7a\xe0\xb8\x89\x54\xfc\xe2\x62\xd0\xf4\xf5\x41\x33\xe2\x0d\x99\xb8\xe5\x68\x50\x60\xd6\x48\x30\x7f\xb9\xac\x65\x2d\x1c\x6b\x22\xb2\x70\xad\x63\x24\x32\x0c\x51\xab\x85\x86\xbb\x36\xfb\x97\x0c\x1f\x87\x66\x88\x61\xb8\x17\xf7\xf5\x3e\x12\x13\x33\xe2\x7d\xe4\x80\x61\xce\x04\x47\xa9\x35\x55\xbc\xb5\x58\x17\xaf\x87\x2c\x3a\x63\x54\xef\x8c\x09\x76\x87\x2b\xe3\xa6\x86\x88\x0f\x8a\xe1\x1e\x49\x44\xe1\x3a\x4e\x6a\x46\x65\xf7\xa4\x78\x75\x84\x68\xbd\x95\x62\x8c\x71\x0e\x09\x1d\x64\x77\xc9\xbf\x3f\x23\xfc\x4d\x63\x22\x85\xd8\x95\x14\x62\x13\xc3\xb4\x22\xd3\xf8\x95\x99\xd7\xd2\x14\x6d\x08\x94\x22\x70\xe4\xb9\x0a\xfd\x5b\x8b\x8b\x58\xd7\x4a\xb4\x00\x2b\x39\x0c\x0a\x1f\x08\x85\x3b\x84\x2c\x88\x7a\x30\x21\x8a\x21\x30\x2b\x9f\xa2\x0c\xcb\xa7\x28\x97\x44\xb1\x04\x16\xa5\x30\x80\x2b\xe2\x50\xcb\xe9\x29\x01\xf1\xe1\x2d\x9c\x93\x71\xb7\x07\x67\xa4\xd7\x1e\x97\x2b\xf6\xb5\x6e\xb3\xef\x11\xa7\x7f\xee\xd2\x5d\x62\x39\x7d\xeb\x5c\xb8\x03\x09\x18\xaf\xa9\xa6\xa0\xbe\xaa\xec\x42\x84\x51\x44\x93\x8f\x7c\xd8\x97\x20\x37\x15\x90\x78\x9e\xad\x82\x1c\x57\x40\xd2\x2c\x48\xb2\xfd\x68\x3c\xd5\xf6\xfa\x8f\x2a\x10\x34\x1a\xd6\xf2\xf7\xab\xd1\x51\x68\x67\x16\xd4\x41\x2e\xf4\x25\x0b\x82\xc2\xef\x82\x15\xc1\x9c\x64\x56\x02\x53\x82\x82\x7e\xec\x5a\x31\xee\x2e\x50\xda\x4e\xcd\x79\x7b\xce\x84\xc2\xb4\x3d\x87\x11\xb1\xa6\xed\x14\x26\x84\x9a\x03\x18\x92\xcc\x1c\xc1\x25\x89\xcc\x01\x5c\x91\xc4\x1c\xc1\x98\xa0\x89\x79\x89\xbb\x3d\x38\x27\x68\x68\x5e\x61\xce\xdb\x4b\x6b\x02\xd7\xe4\xca\x1a\xc2\x2b\x72\xd6\x3e\x33\xaf\xdb\xd7\x70\x43\x42\x2b\x86\x63\x32\x69\x5f\x59\x97\xed\x21\x1c\x11\x74\xbd\x6b\xf7\x2d\xc7\x75\x70\x7b\x81\x66\xc8\x86\x9b\xf6\x4d\xfb\x95\x75\xdc\x3e\xc6\x18\xf6\x09\x3a\x6e\x5f\x5b\x67\xed\x23\xdc\x7d\x05\x17\x04\x59\xc7\xed\x33\xeb\x5a\x7c\x1e\xf2\x4c\x53\x66\x9e\x88\x4c\x53\x66\x1e\x90\x7d\x6b\x0c\x1f\xc9\x85\x75\x0e\x1f\xc8\xa1\x35\x86\xf7\xe4\xc4\x3a\x57\xca\xfd\x41\xfb\xc0\xfc\xd8\xfe\xb8\xf7\xa1\xfd\xc1\x7c\xdf\x7e\xcf\x1d\xa7\x1c\xc2\x05\x39\xc1\x70\x3b\xb8\x71\xf7\x61\xb0\x70\x2f\xe0\xc6\x76\x5c\x6b\x00\x0b\xf6\x67\x04\x37\x8e\xe3\xee\xb7\x51\xd8\xbd\xb1\x1c\x0c\x0b\xc7\x71\x2f\xd4\x57\xce\x9f\xa0\x1d\xae\x5e\xce\x78\x05\x19\xb9\x81\x88\x4c\x11\xbf\x5c\x29\xa2\x14\x91\x63\x88\xc9\x11\x04\x64\x5f\xba\x62\x28\x87\xe0\x4c\x96\x9c\xc2\x0c\x5e\xc1\x0d\x31\x8b\x3b\x89\x93\x30\xd5\x1c\x29\xc2\x31\x31\xb3\x35\x59\x47\x24\x6c\xce\xb1\xce\x61\x9f\xc4\x6b\xf3\x0e\xc9\x00\xed\x5b\x47\x18\x4e\xc8\xfe\xde\xd1\x86\x70\xf0\x80\x52\x32\x25\x73\x84\x31\x1c\xef\xde\xb4\x5a\x68\x46\x8e\xe1\x98\xdc\xc0\x0d\x99\x61\x38\xde\xbb\xe2\xab\xf8\xde\x99\x75\x85\xd3\x8e\xd0\x3c\xd1\x71\x7b\x82\x8e\x30\x1c\xb7\x2f\xd1\x11\x7f\xa0\x1a\x24\x03\xc4\x56\xc1\x63\x38\x82\x7d\xd8\x3a\xc1\x70\xb3\x77\xc5\x7d\x61\xca\x12\x37\xed\x09\xda\xc7\x70\xd3\xbe\x44\xfb\x95\x12\x37\xb0\x0f\x47\x70\x82\x85\xee\xc0\x39\x73\x00\x1f\xe1\x03\x39\x82\xf7\x64\x1f\xbe\x90\x23\x78\x4b\xf6\xe1\x25\x39\x84\x77\xe4\x10\x5e\x93\xa0\xb9\x75\xdd\x1e\xfc\x41\x5e\xf3\x4a\x93\xbe\x99\x34\x03\xb9\x0b\x74\xd3\xbe\x31\xc5\xc8\x7b\x43\x86\x68\x80\x8e\xad\x1b\x56\xd6\x8c\x9a\x4b\x60\xf8\x8e\xbc\x81\x4f\xe4\x0d\x63\xd6\x1f\x7b\x57\xa2\xef\x7e\x27\xd7\xe8\x8f\x2e\x6b\xcc\x6b\x8c\xe1\x27\xfe\x75\x2c\xbe\x76\xd0\x4b\x8b\xf4\xda\xbf\xe3\xbd\xab\x3e\xfa\x62\x92\xdf\xdb\xe4\xa4\xef\xb8\x96\x03\x6f\x2d\xf2\x3b\x76\xd1\x4b\x62\xc3\x17\xf2\x96\xa0\x23\x73\x9f\x6b\x25\xe8\x1d\x2b\xf0\x13\x2f\xf0\xc1\x24\x3f\x15\x05\xde\x5b\xe4\x27\xec\xa2\x77\xc4\x86\x0f\xe4\x7d\x51\x80\x0f\xc4\xcf\x84\xf5\xc1\x07\x0c\xbf\x10\x56\xf1\x07\x0c\xff\x20\x8c\xc7\x6f\x31\xfc\x40\x18\x61\x6f\xb9\x26\xf7\x46\x51\xfc\x08\x7e\xe4\x25\xde\x63\xf8\x99\x97\x78\x8f\xe1\x57\x5e\xe2\x0b\x86\xef\x79\x89\x2f\xbc\xc4\xe1\xee\xb8\xd5\x42\x8f\xea\x0e\xbd\xa4\x4c\x81\x54\x19\x60\xbf\x5a\x9f\x61\x4a\xbe\xb7\x7e\x81\x01\xf9\x87\xf5\x23\x8c\xc8\x0f\xd6\xcf\x30\x21\x4c\xcd\x1b\xb4\x45\xcc\x48\x34\x69\x4f\x76\xaf\xd4\x5e\x98\xf7\xd9\x44\x13\x82\x06\x6d\xf4\x8b\xf5\x33\xb6\x46\x6d\xf4\xd9\xfa\x11\xe3\xee\x04\xb7\xe7\xf0\x8b\x39\x69\x4f\xfd\x1c\x29\xef\x55\x94\x92\xcf\xd6\x23\xcf\xf6\x21\xa3\xe4\x17\xeb\x11\xbf\xc9\x4b\xc9\x8f\x22\x2d\xa1\xe4\x67\x91\x16\x52\xe2\x74\x2f\x11\x42\xaf\x08\xa2\xb4\x1d\x51\x33\xa3\xed\x84\xe2\x2e\x5a\xb0\x6f\xca\xbf\x33\xca\x24\x4f\xc4\xb3\x13\x9e\x8d\xf1\x9e\xd3\xb7\xdd\x57\xbb\x96\xd3\x1f\xbb\xa5\xda\xf8\x4a\x28\x8a\x31\x25\x0b\xc4\x6a\x6a\xb3\x7f\x4c\x56\x53\xfb\x11\xbf\xaf\xf7\x1d\x19\xa2\x37\x80\x6e\xac\x98\xd5\x11\x52\xcb\xc1\x18\x3e\x89\xc4\x63\x95\x68\x3a\x18\xe7\xf9\xbb\xbd\xab\xfe\x27\xd6\xa9\x07\xe4\x02\xfd\x0a\xdf\xc3\x67\xf8\x05\x8e\xe1\x13\x9c\x60\x26\xb5\xd0\x8f\xf0\x33\xfc\x03\x7e\x50\x49\xc5\x54\x39\xe8\x0c\x6e\xcc\x83\xce\x8d\xed\xc0\x41\x67\xb0\x30\x0f\x3a\x0b\xdb\xc1\xf0\x69\xf7\x4d\x5f\x4c\x1b\x06\xc0\xb3\xe0\x13\x8c\x10\xcf\x06\x0e\x8f\x61\x84\x3e\xf2\xcf\x8f\xe2\x73\xeb\x04\xbb\xe8\x01\x85\x0e\x3a\x0b\x87\x7f\x3a\xa2\x50\x65\x46\xb3\x6c\x41\x06\x87\x11\xc4\x39\xb2\xb2\xc1\xc2\xfc\xc8\x33\x3e\xb2\x8c\x8f\x75\x0c\x2c\x95\x65\x89\x5a\x15\x64\x51\xba\x4a\x2a\xe6\xc4\x4a\x2e\x7c\x86\x5f\xaa\x64\x7c\x80\xf7\x1c\xc8\xad\x82\x70\x39\xf3\x72\xef\xaa\xff\x9d\x62\x35\xe3\x29\xe3\xed\x0d\x58\xdf\x29\x5e\x33\xd6\xb3\x2e\x50\x69\x69\x47\x98\xa5\xeb\x98\xfd\x5d\x03\xb3\xbf\xfb\x33\xcc\x6e\x28\x74\x07\xb3\x6f\xfe\x04\xb3\x1b\x78\xfd\xdd\x83\x78\xad\x57\xfb\x16\xbe\xc0\x09\x4b\x92\x6c\xf9\x07\xfc\x20\x4d\x93\x82\xdb\x36\xd8\x5c\x40\xa4\x9d\x62\xab\x00\x61\x98\xaa\xbd\x42\xb1\xcc\xc1\xd4\x34\x8c\xe5\x92\x3b\xb5\x96\x19\xb3\xce\x80\x46\x59\x12\x87\xc3\xfa\xda\x19\x11\xb4\x6e\xf1\x63\xb6\xf5\x1a\x81\xdc\xed\x41\x42\x90\xb9\x66\x01\x34\x37\xcd\x35\xcb\x1f\xee\xf6\xac\x71\xb7\x27\xd5\x03\x6f\x82\x12\xdc\x8e\xe0\x92\xff\xf1\x73\x98\xe9\xba\x5d\x49\x69\xb9\xbb\x56\xdf\x78\xee\x23\xda\x14\x12\x2f\xeb\x67\xee\x14\x99\x19\x86\x19\x76\x29\xc3\xab\x29\x84\x4d\xfa\xf1\x2a\xde\xac\x09\x2f\xed\x53\x86\x97\x72\xbc\x19\xc3\x3b\x88\x93\x06\x82\xef\x42\x1c\xdd\x8b\x38\x62\x88\x67\xc1\xf0\x6b\xb0\x0a\x9d\x87\x10\x2a\xce\xfa\xef\xab\x22\x61\x55\x94\x1a\xf0\xc3\xea\x68\xba\xd1\x53\x45\x1b\x32\xb4\x4a\x6d\x7e\x18\xd2\xf8\x5e\xa4\xb1\x64\xc7\x57\x20\x0d\xee\x45\x1a\x88\xce\x8b\xb2\xca\xd5\xbb\xbb\x70\xa6\x55\x0e\x53\x86\x25\xcd\x61\x96\xd7\x9e\xdd\x0b\x83\x4c\xa1\xa6\xfa\x0b\x57\x72\x1b\x24\x34\x38\x66\x6c\x77\x57\x1e\xed\xb1\x49\x4f\xec\x1c\x18\xc8\xab\x68\xb8\x06\xe0\x7d\xf0\x5e\xec\xe6\xad\xc1\x32\x8b\xc3\x28\x63\x68\x18\x4c\x0d\x0d\x2a\xf1\x2c\x97\x76\xb1\xa5\xc8\xbe\x5b\x2d\xa7\xd8\x36\xe0\x28\xb0\x8a\xf4\x25\x1b\x52\x91\x37\x1a\x3d\x8e\x55\x7e\xe4\xc0\x8b\xd6\x76\x19\xd5\x85\x84\x62\x53\x4d\xaf\x45\x3d\x48\xd2\x89\x77\x34\xfc\xfd\x2a\x11\x52\x30\x32\xbc\x6e\x35\x47\xca\x47\xfe\xe0\x5a\xb8\x38\x94\x4f\x9a\x74\xcc\xbd\xe2\xd2\xc0\x5a\xb4\xb9\xb4\xa4\x0f\x1a\x23\x07\xd3\x6b\xde\xc7\x5a\x97\x7f\xd4\x2d\x42\xcf\xf6\x6b\x6e\x06\x8a\x1c\xc7\xe7\x1a\xe3\xfb\x55\xd3\xe5\x23\x64\xe4\x03\x37\x5d\xb6\x74\xdb\xe5\x00\xe2\x9a\xcd\x12\x20\x65\x4d\xc2\x14\x06\xdc\xab\xb1\x7c\xa1\x37\x21\xf2\xf0\x55\x8c\xd0\xa4\xd5\x42\x31\x09\xd1\x80\x1b\x14\x6a\x03\x9f\x8c\x76\x4c\x33\xc5\x5b\x28\xdd\x1d\xb5\x5a\x11\x9a\x92\xc0\x4b\x7d\x48\x21\xc0\x98\x70\x2f\xad\x08\x4d\xc8\xd6\x04\xf7\xe3\x4e\x31\xc0\x10\x76\xc5\xd7\xab\x68\xc8\x8c\x93\x09\xbf\x60\xc0\x98\x89\x4c\x8a\xa6\xbc\x34\x98\x99\xfc\xc5\x97\xa6\x41\xe1\x16\x45\x34\x65\xb0\xb2\x18\x05\x9d\x9b\xbf\x45\xb6\x07\x5c\xb6\x07\x9d\xc5\xdf\x22\xd1\x03\x2e\xd1\x03\xe9\x10\x79\xf8\x97\x85\xf9\xd6\x96\x40\x1a\x31\xa4\x83\x79\x72\xf5\x60\x29\x4b\x41\x6c\xf9\xab\x7e\x4c\x30\x47\x14\x72\x44\x5f\x23\xb2\x94\xc0\x4a\x88\xe8\x0b\x97\x63\x23\x82\xae\x24\x87\x20\x87\x2f\xcd\x03\x92\xf7\x5c\x61\x4e\x7f\x80\x50\x0e\x4f\xd9\xa7\x01\x39\x58\x31\xa9\x07\x45\x04\x7c\x18\xc1\x04\x66\x30\x84\x4b\xa2\x5e\x79\xc2\x82\x6c\x39\x70\xa5\x5d\x7c\xe5\xfb\xc8\xfa\xa7\x36\x80\x63\x1e\x35\x30\x40\x43\x39\x80\xc5\x31\x30\xb9\xdc\x31\xcd\x81\xf4\x4d\x3f\xd8\xbd\x6c\xb5\x42\x34\x23\x53\x6f\xe0\xc3\x00\xa6\x7c\x10\x2f\x98\x99\xbc\x20\x5b\x0b\x3c\x22\x03\xae\x91\x49\x71\x8b\x94\xb6\x29\xbf\x84\x9d\xcb\x6a\x4c\xcb\xe1\x5d\x05\x81\x09\x19\x58\xce\xce\x64\x8f\x8c\x76\x2c\x6b\x82\x53\x39\xee\xaf\xbc\x89\x0f\x63\x6f\xe2\xe3\x8d\x6a\x59\x29\xb8\x11\xce\x17\xad\x16\xba\xf2\x06\x3e\x31\x29\x9a\x71\xe2\x60\xcc\x3f\x23\xf5\xa9\x90\x65\x7d\x33\x93\x69\x2e\x2b\x01\xcc\x6c\x56\x09\xac\x0c\xc6\x79\x38\x42\xc3\x9a\x82\x37\x2c\xe7\x54\xc1\xff\x11\xd2\x5e\xa7\x63\x35\x8c\x51\x88\xc5\xe0\x43\x01\x56\x83\x07\xc5\xc5\x89\xdc\x40\x9f\x8a\xd1\xd7\x4e\xc5\xa8\x1f\xb1\xc9\x13\x61\x35\x62\x06\x7c\x46\x0e\x3a\x37\xf6\xdf\x32\xc1\x0b\x74\xce\x43\x67\xf8\xc3\x95\xa0\x01\x9f\xee\x83\x87\x0a\x8f\x7b\xb4\xb6\xa4\x68\x7f\xc4\x91\xda\x7f\x0b\xd6\x02\xdd\x03\xdb\xff\x35\x4a\xe0\x80\x4b\x80\x01\x1f\xc1\x3f\xdb\x44\xfc\xf8\xc5\x6e\xb8\x66\x3f\x42\xb8\x73\x83\x28\xee\x2c\x50\x84\x55\x91\x5f\x9c\xbb\x21\x93\x02\xf2\xe7\xf5\x90\x59\x89\xf3\xab\xa4\xee\x1d\x8a\x28\x97\xba\x03\x2e\x2c\x07\x5f\x23\x75\x83\x42\xea\x2a\xe1\x13\x63\x8e\x28\xe0\x88\xfe\x8c\xd4\x8d\x89\x98\xad\x2e\xc7\x46\x04\x5d\x71\x0e\x83\x1c\xde\xae\xf1\xcb\xb1\x4b\xfb\x96\xe3\x66\x7b\xb4\xcf\xfe\x25\xb4\x6f\xbb\x5c\xe1\x7b\xd9\x78\xdd\x2d\x87\x77\xab\xd2\xfb\x25\x64\xe4\xad\x0c\x69\x04\x89\x90\xe0\x4c\x7a\x9f\x31\xe1\xcd\xbe\x1a\x15\x8a\xb9\x50\x29\x60\x52\x2a\x15\x33\x62\xc3\x50\x93\xd0\x13\x0c\x97\xd5\xcf\x05\x59\xb7\xc5\xa7\x4e\x0c\x2f\xc3\x08\x9d\x41\xe1\xcc\xda\x3a\x83\x75\x5b\xa6\x0b\x5c\x9c\x2b\xb2\x42\xc5\x39\xd4\x15\xee\x4e\x60\x9d\x31\x09\xe7\x64\xdc\x46\x57\x6a\x63\x9b\xaf\x20\x42\xd9\x99\x70\x5d\x07\x8d\xc8\xa5\x37\xf4\x52\x9f\xa4\x5c\x16\x97\x0a\xcf\x9e\xdd\x6a\xa1\x99\x49\x46\xe5\xb2\xb3\x45\xb2\xfe\x70\xe5\x26\x71\x29\x13\x33\x74\xe9\x51\x1f\x2e\x79\x98\x2d\xec\x8a\x22\x51\xab\xb5\x5a\x46\x73\x0a\x84\x02\x56\x26\xe0\xce\xa2\xb8\x22\x06\x53\x32\xeb\xa3\x2b\x6b\xd2\x3e\xc7\xdd\x99\x5b\xd0\x0a\x0b\x32\xc0\x73\xc2\x88\x85\x01\x59\x98\x88\xd3\x3e\xf7\xf1\x9e\xdd\x1f\xb5\xa7\xae\x8d\xcd\x73\xb8\xe4\x91\xe2\x86\x41\x16\xb8\x81\x37\xf7\x65\xac\x35\x15\xf6\x69\x04\xa5\x41\xe7\x2e\x40\x99\x61\xee\x00\x94\xf1\xe4\x8e\x8b\xa8\xfa\x97\xa5\x32\x26\x9e\x71\xfe\x9d\x0a\x19\x63\xc8\xe7\xda\x23\xa1\xbb\xe5\x36\x55\x23\x56\x69\x61\xd5\xbb\xce\x77\xcb\x50\xaa\x96\x1f\xa5\x6d\x7d\xad\x61\xdb\x18\x56\xbf\xa2\x19\x32\x65\xe9\x2b\x0d\xdb\x7b\xac\x65\xa5\xd0\x7d\x9d\x61\x7b\x8f\xb5\x1c\x70\x01\x13\xe4\xf0\x9a\xbc\x41\x07\xda\x54\xff\x43\xb3\x4c\xb9\x50\xd4\x4e\xac\xb8\xaf\x85\xe2\x2b\xd3\x06\x00\x9b\xed\x7f\x20\x8a\x32\x5c\x06\xae\x2a\x10\x40\xd6\xe8\x76\x81\x0a\xa9\xbb\x51\xfa\x7a\xe0\xad\xa3\x9d\x1b\x90\xfe\x97\xd8\x4f\xda\x11\xc7\xd6\x84\x76\x16\x65\xfa\x02\xe8\x57\xc8\xec\x8c\x3b\xc9\xc2\x6e\x86\xb0\x24\x2a\x07\x9a\xff\xf1\x40\x73\x9b\x17\xd0\x15\xc4\x3b\x2c\xef\x12\x56\xe8\x77\x77\x19\xe0\x02\x56\xd3\x23\x1b\x4d\xf1\x3a\xac\xc4\xdb\x64\x3f\xeb\xa0\x52\x69\x2c\x0f\xa4\x29\x86\xac\x6d\x15\xc7\xd7\x14\x63\x69\xbf\x7e\x6a\x58\x74\xbf\x43\x4c\x31\x14\xda\xe0\x6b\x8c\x73\xf8\x7d\x75\xf9\xf8\xa2\x41\x40\xd1\x9b\xc2\x2f\x3b\xd7\x14\xf8\x9d\x43\xb1\xae\x0b\x17\x77\x5c\x6d\x10\x7e\x66\xb8\x5e\x70\x6f\xcf\x6b\xb3\x93\x76\x6e\x6c\x2d\xd3\x86\xf2\xd0\x95\xe5\x39\x5a\x9e\x73\xc7\x98\xd1\x37\x0d\x69\x67\xa1\xa1\x5c\x30\x94\xfa\xde\x1f\xed\x2c\x34\xac\x0b\x86\xb5\xe8\xab\xda\x3c\xd4\xf8\x16\x21\xc6\xae\xa2\x98\xe4\x44\xd1\x75\xeb\x0b\x26\x0d\x05\x55\x9d\x6f\x9b\xb6\x3a\xb5\xb2\xe1\x6a\xd9\x5f\x54\xa5\x47\x4d\xdb\x99\x5a\xd9\xb8\xa1\xac\xf3\x37\xcc\x2e\xf8\xa9\x51\x73\xf1\x50\x46\xcc\x4c\xbb\xe6\x42\x2d\x75\x05\x80\x07\x7a\xd5\x07\xac\x9f\xc3\xe7\xba\x07\x51\x71\x89\xb5\x14\x57\xbf\x54\x4f\xea\xe3\x79\x32\xd0\x04\xd6\x3f\x2a\xb9\x59\x90\x8c\xa9\x26\x8b\x7e\x28\x65\xd1\x2f\x10\x91\x7f\x40\x42\x3e\x42\x48\x3e\x34\xec\xa7\xc8\x80\x8a\x90\x92\xcf\xe2\x7e\xac\xa6\xc1\x4c\x49\x65\xef\x3b\xe5\xf7\x76\xaa\x29\xfc\x4e\xd7\x72\x89\x62\x12\x88\xa3\x5b\x8a\x62\xa8\xaa\x44\x28\xf5\x6c\x9f\x4c\x81\x29\x2b\xd5\xdd\xf2\x14\x37\x82\x0e\x1a\x41\x99\x64\xaf\xee\xaa\x04\x0d\xbb\x2a\x82\x4f\x0f\x5f\x72\xd5\x5a\x2b\x38\xf8\xf0\xd5\x56\x2d\xb3\x37\x7f\xeb\xea\xfa\x40\x43\xec\x81\xcb\xea\x57\x69\xec\x71\x7d\x6b\x57\xad\xa3\xc5\x58\x79\x54\x9e\xc0\xe2\x5b\xaa\x76\x1b\x33\x88\x30\xd0\x4e\xe5\xea\x22\xca\x08\xca\xcc\x04\x77\x7b\xfc\x79\x6b\xc8\x8b\x94\x88\x7e\xfc\x0a\x44\x10\x11\x14\x99\x21\x3f\x6c\x91\x45\x4a\x44\x3f\xeb\x88\xc4\xbd\xdd\x9f\x04\x9e\x40\xfc\x50\x65\x99\xda\xf9\x13\x4a\x58\xce\x9c\xff\x08\xf1\x46\x51\x71\xec\xd9\x3e\xc4\x9e\xe3\xaf\x56\x1f\xb0\xac\xc0\x73\x7c\x48\xb9\xbf\x14\xf6\x6b\xce\x7e\xcd\xb9\x3f\xd5\x82\x90\x5f\x4b\xb9\xf3\x03\x7a\xa4\x65\x7c\xaf\x67\xfc\xa8\x65\x50\x5a\x2c\x37\x3f\xa0\x9f\xf1\x9f\x55\x15\x44\x14\x3d\x4a\x6e\x87\x49\x70\xdd\x18\xdb\xbd\xbc\xa6\x98\x75\xc7\x5a\xab\x23\xe0\x31\x1f\xd4\xc9\x5b\x04\x36\x9c\xe1\x3c\x87\xe8\xa1\xc8\x9e\xe2\x6e\xaf\x44\x67\x6d\xb7\x23\xb0\x78\x0f\xca\x9d\x64\xab\xe1\x7b\xbb\xad\xa7\x34\x25\xe8\x9f\x2b\x28\x59\x42\x15\xbe\xfa\x55\xc5\x66\x35\x24\x54\x3e\x0b\x74\xda\xbe\x7e\x9e\x43\x42\xb5\x76\x3a\xdd\x6d\x0c\x21\x25\xbd\x76\x42\x21\x7e\x28\x6f\x42\xb1\x1d\xd2\x4e\x68\xc9\x21\xbb\xda\x96\x44\xf0\x5f\x7e\xd9\x55\xca\x64\x66\x95\xae\x80\x16\x37\xce\xd0\xb8\xeb\xd8\xb8\x5b\x7c\x3e\x6f\xf3\x04\x48\x35\x90\x33\x96\xd2\x0e\x28\xcc\x29\x29\xb5\xa3\x22\x75\xfa\xb0\xb6\x74\x5e\x7c\x6b\xbf\x70\xb6\xed\x6f\x9d\xa7\xbd\x6f\x7b\x2f\x9e\xf6\xda\xfc\xc9\x45\x4a\xdb\x11\x84\x64\x4e\xdb\xd1\x1d\x2d\x0c\xf5\x20\xb6\xce\x4e\xbc\xfb\x74\xc7\x34\x63\x15\xc2\xf7\xac\x1d\x77\x9f\x42\x4a\xf4\x7b\xa1\x73\xa2\xdd\x0a\xdd\x28\x50\xcd\xd9\x48\x48\x2b\x9d\x99\xb6\x13\x6b\xde\x0e\x61\xde\x4e\xcc\xb4\x1d\xe2\xbc\xce\xae\xc1\x03\x3b\x8b\x87\xf4\x89\xf8\x58\x4e\xe8\x20\x43\x09\x17\x34\x3c\xd6\xf3\x48\x1f\x09\xdb\x18\x26\x77\xa1\xb4\xf4\x01\x80\xb6\xdb\x23\x8a\xb1\xce\x9b\x5e\x75\x2c\x8e\x68\x7d\x74\x6b\x29\xd5\x96\xcc\xaa\x64\x74\x7b\x30\xa4\xc4\xe9\x6a\x83\xb4\x87\xe1\x92\x92\xed\x36\x1a\xd2\x6e\xcf\x74\x30\x2c\x1e\x3a\x52\x2f\xc5\x48\xed\xf6\x20\x24\x51\x7b\x48\x21\x26\x3c\x0c\x6c\x7b\x48\xcd\x08\x52\x62\xc5\x30\x27\x41\xd9\x0e\xd6\xa9\x25\xc9\x31\x04\x7a\x97\xc0\x5c\x6f\x61\xe7\x69\x3b\xb1\x66\xb4\x1d\xc2\x8c\xb6\x13\x93\x7d\x87\xb5\xfc\x98\xe5\x07\x2c\x3f\xe6\xf9\x41\x2d\x3f\x65\xf9\x73\x96\x9f\xf2\xfc\x15\xfc\x26\xc7\xcf\x51\x33\xd0\xa4\x8e\xdf\xe4\xf8\x39\x6a\x96\x1f\xd7\xf1\x9b\x1c\x3f\x47\xcd\xf2\xd3\x55\xe6\x5f\x51\xe2\x65\x14\x22\x36\xfb\x61\xc0\xe6\x0d\x4c\x28\x2c\xa8\x0f\x63\xba\x6a\x3a\x4c\x51\xc6\xcc\x11\x32\x45\xcf\x9e\xa8\xa0\xda\xba\xef\x38\xf9\x42\x85\xdf\x68\xe6\x2e\x5e\x13\xa9\x35\x35\xef\xee\x74\x58\x1f\xa2\x08\xd6\xde\x41\x80\xc2\x05\x90\xda\xed\x5a\xd1\x89\x92\x0e\xb7\x03\xff\xea\xde\x06\x9b\x27\x7c\x6b\x23\x11\x8e\x76\xfe\x8e\xe3\xa6\x84\x2b\x5f\xc9\x57\x6e\x2d\xd6\x15\x95\x84\xab\x62\x49\x0e\xe7\x95\x0e\xd1\x0e\x28\xcf\xa8\x7a\x62\x43\xcb\x03\xcf\xea\x4a\x8f\x7a\x6d\xda\x39\xbb\xb1\x4d\xca\x1f\x1a\x74\xb7\x41\xa4\x2c\x78\xca\x42\xa4\x08\x08\x01\x59\xa4\x2c\x64\x4a\x05\xe6\x89\x80\x31\x33\xdc\x7d\xa6\xa0\x9e\x08\x28\x33\xc2\xdd\x67\x9a\x26\x70\x4d\x9b\x4e\xcc\xaf\xe9\xbf\xf5\xc8\xfc\x66\xf5\xb5\x90\x76\x35\xfb\x7d\xf0\x1e\xee\x3f\x5a\x97\x87\xdc\xab\x47\xdb\xdb\xee\x19\x15\x23\xb7\x78\x36\xa2\x50\x17\x8e\x35\x1b\x0f\xa3\x57\xc1\xf3\xff\x3d\xbf\xd7\xb3\x7a\x95\xac\x6d\x68\xac\x09\x3d\x6d\xab\x4e\x36\x8b\x97\x34\x6c\x58\xaa\xf4\x85\x4a\x67\x43\xf8\x19\x2e\x2e\x08\xa8\x5e\xe3\x77\x02\x56\xc6\x09\x94\xaf\x07\x60\x65\xc8\x68\x8f\xb1\xe4\x66\xcc\xab\x46\x91\x11\xd1\x6b\x31\x01\xb4\xd9\x7a\xd3\x38\x21\x6e\xd6\x4c\x88\x73\x5a\x0c\xfd\x73\xfa\x75\x43\xfc\xa6\xa7\x7e\x6c\xab\x1f\x4f\x1a\x46\xbf\xfc\xa1\x80\x17\x0a\x78\xf1\xe4\xaf\x4e\x0c\xa7\x79\x00\x28\xea\x14\x13\x7b\x18\xd6\x8e\xe3\xa6\xd1\x50\x43\x57\xe0\x33\x7b\x6a\x20\x6c\x73\x51\xa5\xd0\x17\xe9\x0b\x96\x5e\xaf\x4c\x8d\x22\x55\xb4\xc4\xd2\xd3\xb1\x94\xe9\x8b\x5e\x03\x96\x35\x24\x6f\x0b\x92\xe5\x9e\xde\x9a\x76\x57\x72\xd5\x20\x5f\x6c\x37\xe5\x3e\x51\xb9\x4f\xb8\xe2\xf4\x77\x4e\xe5\x9b\x5e\x39\xd0\x7b\x24\xbb\x63\x86\x42\x31\xaa\x8a\x02\xdb\xd5\x02\xcd\xf3\xf6\xe6\x49\x59\xe0\x09\xc9\xe0\xce\xde\x64\xeb\x89\x1a\xcf\x26\xe5\xf3\xb9\x98\xcd\x2a\x67\x21\x16\x20\xc5\xf1\x7f\xc9\xbc\x3e\x5e\x3b\xaf\x6f\x6a\xf3\xfa\xa8\x71\x5e\x1f\xfd\xf7\x5b\xe8\xee\x5c\x83\xb6\xff\x73\xd6\xa0\x3f\xb7\x88\xc8\x37\xf6\xeb\xc7\x59\x42\xd6\x8e\xb4\x8d\xfb\x56\xbd\x08\x92\x35\xab\x1e\xcb\x69\x90\x0c\x92\xaa\x27\xff\x9a\xc1\xbb\xbf\x76\xf0\x1e\xd5\x06\xef\x05\xd5\x4f\x22\xce\x83\x34\x4c\x49\xb1\x78\x49\xc4\xe7\x34\x0b\x48\x96\x5f\x54\x46\xf4\x5d\x63\x91\x78\xbe\xa2\xa9\xfc\xc9\x71\xdf\x7b\x78\xa2\xf9\x63\x3d\xbb\x01\xe5\xab\x74\xa1\x05\x8f\xb5\x44\x94\x94\x3d\xbb\x88\x84\x9a\x48\xbf\xf8\x10\x93\x8c\x6f\x6c\x71\x47\xaa\x56\x08\x29\x0f\xad\xcf\x4d\x3d\x1e\xe7\x6b\xbe\x4b\xa2\x1d\x9c\x90\x79\x37\xaa\x10\xa5\x8b\x5a\xd6\xd8\x36\xf5\xe6\xbe\x89\xd4\xd8\x65\x49\xb8\x8d\x42\x33\x61\x86\x9c\x06\x96\x35\x81\xc5\x66\xd2\x4e\x31\xde\x50\xbc\x50\x8c\xd0\xde\xa8\x97\xac\xb8\xf7\x6c\xe8\x46\xb8\xfc\x31\x8b\xce\x58\xc8\x84\x4c\x9d\x06\x1d\xd2\x9a\xdb\xad\xe2\x4b\xef\x7b\xe1\xc8\xae\xe8\x59\x1e\x1d\x42\xf6\xbd\x32\xa8\xa2\x0e\xef\xe8\x06\x83\x8a\xf2\xea\x20\xca\x51\xe7\xc5\x53\x3d\x14\xd5\xfd\xf6\x87\x30\x17\x68\xe7\xec\xa2\xcd\x7f\xf7\x2c\x6e\x48\x30\xcb\x90\x4d\xae\x22\x63\xc1\x33\x16\x22\xe3\xa6\xa7\x95\x70\xac\x4c\x40\x6b\x89\x0b\x47\xec\x27\xb0\x45\x95\x67\x69\x76\xc7\x41\x65\x44\x17\x02\x59\xf9\x4f\x25\xac\xbf\x70\xf7\x59\x7e\xf0\x5f\x2d\xa0\x0b\x35\xad\x51\x29\xfb\x8b\x2a\xd8\xdd\x96\x87\xa6\x8a\x54\x65\xd3\xc9\x5a\x83\xe6\x7f\x2d\x94\x5e\x83\x10\x76\xee\xd4\x7f\x0a\xe1\x7e\xf2\x40\xe1\x5e\xeb\x1e\x5d\x35\x6b\x14\xf7\xb2\x13\x35\xf5\x4d\x0a\x85\x8f\x0f\x12\x0a\x4c\x08\x1c\xd4\x85\x40\x46\x23\x1e\x54\xf9\x4e\x39\xa0\x5f\x35\xfa\xf0\xc0\x09\xf7\xe1\xdf\x6a\xe9\xdc\x3c\xfd\x3a\x93\x47\xfe\x78\xfa\xaf\xb5\x7d\x56\xb4\xfc\xaf\xb5\x7d\xaa\xf3\xf8\xab\xd1\x35\xd9\x25\x0f\xb6\x3c\x1a\x72\x9f\xaa\xdc\xa7\x7f\xbf\x5d\xb2\xde\xcc\x68\x9e\x97\xcd\x1c\xaf\xda\x1e\x8d\xbc\xad\x59\x2b\x4f\xcb\x12\x4f\x8b\x7a\xff\xcb\x66\xf2\xfb\x07\xcf\xe4\x0f\x7f\x79\x26\x7f\x79\xe0\x4c\xfe\xf2\x3f\x61\xe9\xfc\x9f\x6d\xed\xdc\xbb\x0a\xae\x6a\x02\x0f\xdd\xb4\x79\x88\x35\xf3\x6f\x9f\x26\x6f\x1f\x3c\x4d\xbe\xfc\xe5\x69\xf2\x92\x56\xa2\xf2\x10\xae\xa5\x8a\x58\x97\x0b\x87\xdf\x96\x62\x2d\x0a\xf8\x77\x8f\x7b\x5d\xec\x9c\x4d\x6d\xe7\x2c\x50\x6f\xc5\x53\xc2\x77\xd6\x59\x5a\x2f\x30\xb7\xd5\xef\x80\xff\x70\x7a\x67\x81\x29\x7f\xf4\x02\x98\x13\x2d\xbf\xc0\xa4\x00\x02\xbc\x91\x10\x94\xb4\x53\xa1\x56\xb7\x8b\x72\x7c\xbf\x5f\xab\x05\x77\xe7\x10\x12\x14\x0a\xc8\x45\x0d\x72\x51\x85\xcc\x25\xcd\xbd\xed\x92\xe6\xa9\xa4\xb9\xb7\x5d\xd2\xcc\xf2\x9b\x68\x1e\x10\x2d\xbf\xc0\xa4\xd1\x1c\x13\x14\xb7\xa7\xe2\x4c\xa2\xc4\x6a\x65\x25\x55\xb8\x3b\x80\x80\xa0\x40\x40\x2d\x74\xa8\xa8\x02\x95\xaf\x35\x3d\xd4\x8b\xfa\x66\x33\xe1\xdd\x9d\xb2\x2e\x98\xce\x26\xcc\xe6\x7d\xf7\xdf\x45\xd2\xf1\x51\xa1\x44\x18\x63\xb2\xfa\xcd\x38\x4f\x4a\x98\x9e\x0e\xd4\xd3\xa1\x8a\x8f\x7f\xa7\xbd\xb1\xaa\x51\x68\xa0\xff\x45\x26\x07\x1b\xfc\xcd\xe2\x59\x0f\xf2\xc8\x2c\x59\xe5\xd2\x9f\x59\xaf\xd9\x86\xce\x70\xed\x28\x5a\x67\x30\x4f\x9e\xc5\xd7\x28\x6a\x47\x66\xd2\x4e\xf4\xd1\x86\x71\xbe\x96\xbb\xff\x09\x87\x30\x85\x6c\x7f\xb9\x2a\xdb\x57\x46\x1f\xac\x19\x89\xb0\x76\x24\xc2\xda\x61\x09\xff\x8e\xf5\xe3\xf5\x83\xd6\x0f\xb1\x83\x22\x45\x87\x5b\x98\x4f\xb6\xb6\x9a\x08\xc9\x71\xf7\x26\x8a\xbe\x87\xf2\xc7\x83\xe4\xd0\x1f\xff\xdd\x6c\xa7\xff\x6a\x79\xf4\xbf\x66\xd8\x7f\x53\xa1\xf6\x9f\x69\xf6\xfd\x8f\x94\x79\x6f\xbe\x42\xe6\xfd\xa1\xc9\xbc\x0f\x7f\x55\xe6\x7d\xf7\x20\x99\xf7\xdd\xff\xea\x5e\xff\x01\x06\xeb\x7f\xbe\xe0\xf8\x6f\x69\x20\xff\x8f\x14\x28\x9f\xbe\x42\xa0\x7c\xa7\x09\x94\x2f\x7f\x55\xa0\xfc\xde\x78\x04\xff\xfb\x5f\x55\x9a\xee\x9a\x8d\x1a\xc4\x1d\x73\xad\x79\x4e\x35\x4e\xa8\x3b\x34\x79\xd4\xb4\x50\x36\x28\xf6\xea\x48\xf0\xa7\xb5\xc7\xbf\xbf\xd7\x8e\x7f\x3f\x53\xfd\xbd\x8d\x7c\x6c\x5b\x1a\xc9\xbf\x34\xed\x74\x88\xad\x06\x08\x49\x66\x89\x9d\x8f\x98\xc8\x33\x39\x71\x82\xd7\x45\xc9\x72\x19\xee\xda\xad\x96\x65\x63\x66\xc4\x47\x96\xbc\x46\x88\xc2\xe5\x32\x51\x19\x29\x41\x71\x3b\x34\x83\x76\xc2\x4a\x98\xa1\x7a\x2b\x80\x3e\x53\x14\x63\xf3\x33\x45\x01\x96\xaf\x8e\x2a\xaf\x86\x63\x0c\xc5\xef\x00\x43\xe7\x69\xbb\xf8\x4c\x31\x5e\x2e\xb5\x10\xbf\xff\xa0\xfa\xf5\x60\x8d\x78\xf5\x2c\x21\xea\xa3\xed\x76\x95\xf8\xc8\xca\x70\xb7\xe7\xea\x8f\x8e\x1a\x98\x60\xcb\xed\x1e\x5b\x6e\xf7\x38\x72\xbb\xc7\xe1\xcd\xb2\x12\xdc\xdd\xde\x58\xbf\x31\x61\xa6\x10\x9a\x69\x3b\x83\xd8\x4a\x21\xb0\xd2\x76\xc4\xdd\x89\x6a\x4f\x52\x1a\xc7\x73\xf9\xd0\xa4\x21\x9b\xf5\xee\xcf\xb4\xe2\x59\xf5\xe7\xbb\xb1\xfc\x4a\x6b\x83\xe3\x51\xb5\xf8\xf7\xf5\xfc\x1f\xab\xf9\x3c\x5c\xe7\x7a\xf4\x59\x56\x3c\xd6\x82\x48\xbc\x2c\x94\xe7\xf7\x32\xec\x82\x78\x6b\x9e\x60\x19\x30\xb6\xf8\x0c\x2a\x9f\xfc\xa6\x7d\xe8\xd9\x3e\xb1\x21\x66\x7f\x7a\x10\xb0\x3f\xd4\xb3\x7d\xb3\xd7\xa6\x9e\xe3\x43\x46\x9c\x9d\x6c\x37\xe1\x67\xfc\x99\x08\xa0\xee\x40\xcc\xfe\x3c\xe1\xef\xb3\xc9\x93\x36\xf5\x32\x01\x9e\x99\x8e\x2f\x71\x26\x96\xc3\xd0\xc5\xe2\xc7\x73\x08\xc4\x8f\x17\x6d\xca\x7f\x98\xd4\x4b\x0a\xdc\x1c\x73\x44\x18\xee\x6e\xec\x65\x96\xe3\xf3\x0a\x2c\x12\xf1\x1a\x2c\x12\xb5\x03\x9e\xac\xe3\x16\x08\xbb\xa2\x02\xc8\x48\x62\xf5\x76\xb2\x3d\x62\xef\x58\x96\x24\x13\xf1\xc2\x21\xa7\x0a\x33\xc4\xa2\xbc\x24\x09\x31\x0a\x4c\x81\x0c\x77\x7b\x90\x11\x5b\x6b\x27\x6f\xa0\x6a\x92\xc4\xa1\x9c\xaf\x85\x10\xfb\xf9\xa3\xff\x6a\x05\x6a\x55\x6f\xca\xec\x7f\xed\xc1\xb6\x7e\x03\xb7\xb2\x0a\xff\x50\x39\xd8\xce\x6c\xf8\x47\x2d\x01\xff\x57\x6d\x37\x09\xe1\xf4\x3e\x78\xcf\xa3\x3c\xb3\x45\x81\x2b\x5c\x58\x0b\x0b\xb0\x5c\x66\xc5\xd7\xc2\xb9\x83\x39\xff\x09\xfb\x44\xa0\x58\xad\x38\x1c\x91\x5f\x34\x65\x07\x43\x54\xbf\xb7\xb7\xd2\x37\xb5\x12\x7f\xfe\x3a\x54\x81\x92\x44\x79\x9e\x03\xfa\x51\x9f\x11\xd5\xd0\x6f\xfa\x64\xc1\x58\x98\xd7\xb5\xf7\xb0\x3a\x88\x00\x90\xc1\x2e\x39\xf1\x40\x71\x0e\x3f\x57\xa6\xdc\x1d\x61\x24\xea\x4a\x24\x2f\xdd\x18\x22\xe2\x0e\xdd\x62\xba\x3e\xf2\x43\x7d\x7a\x70\xfc\x0f\x8f\xc3\xd0\xbc\x70\x65\x40\xf9\x23\xa2\x18\x42\x9c\xe7\x40\xb3\x7f\xaf\x7c\xa9\x5e\x2b\xfb\x93\xd7\xc7\xf8\xe5\x31\x5c\x44\x85\xbf\x63\x6e\x70\xdf\xb8\x9e\xed\xaf\x9b\x21\x45\x3e\xf4\x08\x21\x11\x5e\x83\x85\x49\x7e\xee\xd9\x96\x7b\xfb\x2c\xee\xac\x11\xbe\x3e\x32\x2d\x8a\xbf\xd5\x8a\x89\x0d\x01\x71\x76\x82\xdd\x68\xc7\x34\x63\x30\xcd\x00\xdf\xd5\x15\x89\x67\xfb\x5e\xec\x43\x28\xff\x26\x9e\x23\xbf\xc5\x5f\xea\x05\xac\xde\xc0\xc7\x3b\xf7\x8a\xb5\xe8\xcf\x08\x33\x35\x05\x2b\xf7\xdb\xfe\xda\x4d\xb6\xa8\xf1\xa5\x0c\x53\x06\xb8\xaa\xa1\xa9\xad\x49\x76\xd7\x06\x42\x46\xb2\x3c\xf9\x77\x8f\x4d\xc5\x86\x87\x2d\x6f\xf6\xae\x24\x55\x71\x3e\xdb\x75\x5a\xad\x5e\x75\x8d\xa9\xf7\x4a\x75\xa9\x53\x5c\xc4\xf0\x2f\x58\xb7\xf6\x88\x5d\x44\x5d\xc8\x8a\x7e\xcf\xd6\x0d\x86\x35\x76\xce\x7f\xd2\xe5\xad\x62\xb5\x29\xa6\x7e\xb6\x4b\xec\xe6\x49\x5b\x70\x78\xcd\x9b\x01\x5e\x55\xe1\x4d\xbd\xd8\x03\x69\x17\x57\x41\x33\x6c\x52\x79\x83\x58\xed\x84\xac\x5c\x18\x2e\xba\x6f\x5d\x3e\xce\xd5\xc2\x57\xae\x72\x85\xa9\x1d\xae\x9d\x2b\x7c\x6e\x74\x9e\xea\xd3\x25\xce\x9a\x60\x6c\x3d\x4a\x58\x23\x84\x23\x5c\xa1\xa7\xf5\x85\x30\x1c\x21\x14\x96\xc1\xcc\xf6\x1c\x5c\x46\xb0\xe3\xcb\x08\xe1\xf6\x90\xc7\xa4\xa3\x0f\x69\xe1\x77\x6a\x27\xde\x0d\xf9\x4b\x59\x06\x9e\x90\x40\x02\xc5\xbe\x2f\x23\x0a\xa6\x3b\xa6\x19\xe1\xc0\x8b\x7c\xcf\xf1\x4d\xc2\x7f\xd8\x3e\x09\xd3\xf7\xc1\x7b\x11\x9d\xdf\xf1\x71\x3f\x11\xc9\xae\x4c\xc8\x61\x5e\x65\x86\x1e\xc3\x4c\x3a\xbc\x8a\xf4\xb0\xdc\x98\xe9\xdf\x4c\x0d\xc7\x11\x53\xa1\xb3\xc2\x1a\xd4\x58\x36\xcd\x2a\xce\x9e\x98\xf9\xc0\x79\x31\xc8\x9a\x1e\x47\x7a\x3e\x86\x8c\xcc\x33\x88\x48\x9a\x41\x42\xa6\x59\x89\x29\x44\xea\x11\x3f\x8f\xee\xb7\x2e\x18\xc1\x9c\x84\x8a\xd8\x29\x51\xaf\x02\x61\xa0\xd1\x3d\x15\xb6\x50\x4c\xec\x9d\x78\x77\x2a\x5e\x1c\xab\xa6\x8e\x60\x42\x52\x26\xf7\x67\x64\xe0\xc5\xbe\x56\x6a\x8e\x61\x48\xec\x9d\xe1\xee\x7c\xc7\x34\x87\x78\xe6\x0d\x7d\x32\x22\x9e\x0d\x26\x33\x53\x86\x3e\x4c\x60\x08\x21\xf6\x61\xd4\x19\x06\x59\x40\x58\xda\xc6\xac\x73\x41\x17\x64\x92\xcb\xfa\x20\x20\x19\x1a\xe0\xa2\xda\x81\x17\xb0\x4e\x13\x11\xb3\x49\x5c\xf0\x0f\x0d\x20\xc0\x30\x50\xfb\x38\x61\x2d\x08\xfd\x9f\x7c\xa1\x29\xfd\x77\x30\xd5\x31\xe4\x2f\x35\xc3\xba\x5b\xab\xbf\xe0\xa1\x22\xe4\x1e\x2a\xc2\x4e\x9c\x0c\x69\xf2\xb5\x9e\x08\xe7\xd9\x7a\x3f\x7c\x92\x6a\x2a\xa8\xce\x78\x1d\xa3\x51\xfa\x70\x5f\x1c\xaa\x92\x34\x73\x29\x43\x11\xe5\x10\xe6\x30\x6a\x9a\x8b\x89\x36\x17\x6d\x3d\x9c\xa4\x98\x8c\x36\x9f\x67\xb6\x5f\xce\xc2\xa0\x1c\x3d\x21\x11\x53\x2f\xe1\x53\x2f\x34\xf9\xdd\x79\x2f\x66\x13\x6b\xb9\xb4\x99\xb6\x14\xf2\xe9\xaa\x43\x95\x20\x5d\x12\xe6\x69\x26\xbd\xeb\xc2\xa4\x89\xb8\xb4\x42\x5c\x8d\x36\x11\x5a\x89\xbb\x4e\x93\xe2\xa2\x88\x3a\xc9\xc7\xda\x1c\x8b\x21\x18\x10\xbb\x22\x22\x50\x48\x58\xab\xbd\xcc\x8b\x7c\xdf\x9b\xfb\xd8\x73\x7c\x8b\xe9\x44\x78\x8f\xd8\x7d\xae\x1d\x91\x98\x2b\x45\x24\x36\x49\x88\xdd\x70\x97\x27\x33\xa3\x1c\x78\x6e\xc0\x93\x05\x60\x0e\xb3\x26\xca\xa3\xb5\x6c\x25\x7c\xff\x47\xca\xb7\xb8\x98\xb9\x3b\xc9\x6e\xbc\x63\x9a\x49\x09\xcb\xe8\x4e\x89\x2d\xd5\xba\x00\xa7\x8c\xbf\x81\xef\x25\x05\x7f\xc5\x4f\x93\xf0\x1f\xb6\x4f\xac\xb4\xdb\xd3\x58\x3a\xbc\x4f\xf6\xb2\x75\x3a\x21\x8c\x56\x41\x0e\xbe\x6f\x24\x30\x1d\x33\xe1\xc4\x14\xd9\x29\xb1\x65\x27\xd8\x3b\x29\x17\xd1\x69\x99\x39\xe0\x98\x53\xdf\x87\x11\x19\x30\xda\x39\xe1\x30\x21\x68\x64\xa1\x81\x17\x58\x8e\x4c\xe2\x9e\xe3\x67\xc4\xde\x99\xf1\x4e\x9a\x09\xa9\x37\xe4\xc5\x67\xbe\xbf\x31\x31\x09\x1a\x16\x08\xb0\xc5\x3e\xca\xc2\xf9\xdc\x24\x23\x98\x9a\x64\xd2\x1e\xe5\x91\xca\x31\x89\xfc\xc9\xfb\x73\xde\x6a\xa1\xd8\x22\xd3\xee\x1c\xaf\x03\x29\x39\x77\x99\xad\x46\xe4\xe7\x41\x2d\x67\x68\x51\x46\xd4\x9c\x67\x45\x00\x68\x8d\xcf\x51\x25\xea\xac\xc5\x46\x59\xae\x2f\xa8\x8b\xac\xb2\xce\x40\x44\x2c\x47\x8d\x0a\x25\xba\x63\x62\x39\x5d\x9b\x8d\xd6\xdd\x70\x07\x33\xcb\x9e\xca\x05\x6c\x2f\xe6\xce\x7f\xd9\x42\x11\x15\x84\x24\x7c\x79\xb9\x5a\x4f\xf4\xf8\xaf\x12\x3d\x5e\x21\xda\x86\x84\x58\x8e\x46\x34\x1b\xbc\x25\xb5\x7c\x64\xe2\x56\x0b\x45\x26\x29\x2b\x8f\x38\xa1\xe7\x8d\x72\xec\x4a\x46\x65\xbe\xa2\x09\x8f\xa5\x0c\x67\x0d\xed\xa9\xec\x06\xf2\xca\x65\xf3\x20\x26\x97\xdc\x28\x92\xb3\x06\xe6\xcc\xe2\x9b\x12\x4f\x6c\x8a\xc9\xdd\x2f\xb9\x13\x17\x7b\x99\x0f\xc1\x6e\xda\x47\x6c\x26\x7b\x91\x0f\x73\x19\x1d\x9b\x47\xb9\x90\x69\xd3\x22\x4d\x91\x3f\x2d\xc9\x93\xe1\x53\xd1\x1c\xe7\x70\xdd\xd8\x9e\x79\xad\x3d\x1b\x51\x67\x88\x32\x30\x82\x64\x60\x80\xa6\x07\x48\xf0\xc3\x1c\x43\x01\x41\x83\x26\x90\x2f\x25\x08\xd3\xf4\x9a\x40\xde\x97\x20\xb3\xb0\x11\xe2\x5d\xb5\x9e\x8f\xc1\x30\x0c\xfe\x7f\xd4\xbd\x7b\x73\xdb\x38\xb2\x38\xfa\xbf\x3f\x45\xa2\xbb\xe3\x22\x2d\x58\x01\x40\xbc\xa8\x84\xe3\xca\xbc\xce\xcc\xee\xce\x63\x27\xb3\x93\xdd\xd5\xd1\x2f\x05\xe2\x61\x73\x23\x93\x0a\x45\x25\xf1\xc4\xfa\xee\xb7\x00\x3e\x25\x51\x4e\x72\xcf\x9e\xfa\xd5\x8d\x53\x2d\x8a\x6a\xbc\x1a\x40\xa3\xbb\xd1\x68\xac\xc6\x10\xdf\xf4\x88\xa5\x47\x7a\x7e\xa2\x5a\x6f\xf6\xab\x75\x3a\xc7\xbf\x1f\xe6\xf8\xd7\x13\xad\x18\x20\x7a\x09\xfc\x74\x96\x2f\xf7\xca\x7e\xfd\x7d\x51\x66\x7f\x14\x79\x35\x8e\xfc\xaf\x7d\xe4\xdf\x4d\x59\x65\x6a\x1c\xf5\xcf\xfb\xa8\xa7\x2b\x60\x4c\x8f\xb9\xf1\x37\x78\x8f\x61\x5d\x1f\x61\x6d\xc6\xd0\xde\x1e\xa1\x7d\x9d\x95\x6a\x35\x4a\xa3\xea\x18\xb7\x2c\x36\xa3\xd9\xe6\x47\xa8\xdf\x64\xf2\xb6\xc8\xf5\x18\x72\x71\x84\xfc\xe2\xcd\x56\x96\xa3\x75\x50\xc7\xb8\x95\x2c\xc7\x30\x57\x47\x98\xbf\x95\x99\x0f\xeb\x34\x86\x7d\x73\x84\xfd\xf2\x6e\x14\xf1\x6e\x80\xe8\x63\xd1\x7d\x25\x37\xd9\xe6\x6b\xa7\x96\x8e\x36\xee\xc5\x28\xfe\xcf\x6b\x93\x8f\x61\x3f\x1f\xc5\x1e\xc3\xfc\xf6\x08\x73\x9b\xeb\xf1\xb6\xfd\x78\x88\xfa\xb5\x2c\x75\x96\xcb\xd5\xe9\x5a\xff\x74\x2a\xc9\xa9\x8a\xff\x70\x2a\xc1\x18\xf2\xaf\xc7\xc8\xd5\xed\x76\xb5\xfa\xb5\xb8\x3d\x5d\xa5\xef\x4f\x27\x3a\x55\xa9\xbf\x9f\x4e\x32\x86\xfe\xdd\x21\xba\x63\x16\xb2\x3c\x5d\xa5\x97\xe3\x09\xc6\x50\xbf\x3e\xc0\xfc\xb1\xc8\x8b\xaa\xc8\xcd\x3f\x46\xb9\xc6\x61\xbe\x2d\xf6\x3f\x47\x19\xc7\x21\xf6\x4f\xb2\xda\x96\xe3\x94\xcf\xab\x03\xdc\x17\x95\x59\x8f\x21\x66\x63\x88\xcf\x6d\x65\x46\x5b\x27\xc7\xb0\xbf\x32\xb6\x18\x9f\xc4\xc5\x00\x7d\x53\x49\xf5\x7a\x74\xa6\x1f\x22\xfd\xec\xf5\x91\x6f\xdf\xaf\xe5\x38\x1b\xb1\xe3\x09\xbe\xc9\xde\x9a\xf2\x3a\xcb\xaf\x47\xa7\xfd\x78\x9a\x9f\x8a\xf1\x55\x62\x33\x8e\xfe\x22\x5b\xdd\x14\x5b\x53\x55\xa3\x89\xd6\xe3\x89\x5e\x66\xd7\x27\x78\x91\x3e\x4a\xe0\xb4\xbd\xe7\xeb\xb5\x91\xa5\xcc\xd5\x68\x9a\xdb\xf1\x34\x1b\x65\x72\x7d\xa2\xed\x6f\x47\x93\x7c\x63\x1e\x4a\x93\x8e\xa6\xf9\x21\xdf\x64\xda\xfc\xbc\xad\xc6\x92\xbc\x1a\x4d\x72\x8a\xc2\xdb\x51\xec\x5f\x6b\x91\x66\x2c\xc1\xbb\x6a\x17\x7e\xe4\x72\xfd\xbd\x3b\xbc\xf3\x20\x0a\x41\x96\x7c\x68\x02\x55\xf7\xf9\xed\x86\x16\xa8\xa0\x97\x3c\x0d\xa8\xbc\x36\x77\xa8\xf4\x82\x32\xf9\xb0\x7b\x5a\x79\x4d\xa9\x6a\xae\x82\x30\x3d\xd6\xa2\x5a\x4e\x27\x93\xf0\xfe\xde\x3c\xca\xf2\x47\xe5\xf1\xad\xb9\xd9\x6a\x65\xae\xe5\xca\xdf\x08\x3f\x7f\x34\x99\x9a\xf0\xac\x5c\x98\x65\xb2\x58\xee\x06\x86\x2d\x19\x94\x47\xb7\xe3\x7b\xdb\xda\x70\xef\x7a\x53\xeb\x5a\x47\x1a\x5f\xaf\xe7\x65\x5e\xcf\x6b\xb4\xc4\x45\xb9\x0c\x67\xb9\xbc\x35\x49\x92\x54\x5d\xe0\xaa\xda\x4a\xd1\x67\xba\x6d\x69\xd9\xef\x01\x34\xb1\x75\xf7\x95\xc7\xcc\xfa\x7d\xdf\x3e\xc3\x0f\xee\x6b\x92\x01\x93\x34\xc1\x54\x03\x08\xca\x4e\x7a\x6d\xdf\x95\x53\x14\x36\x06\xd0\xae\xbd\x6d\x1c\x73\x53\x8b\xc1\x1f\x5c\x96\xf3\xaa\x89\x29\x9e\xef\x42\x60\xf6\x6e\x44\x2f\x4e\xdf\x88\x5e\xe4\x63\xdb\x96\x4e\xad\x6c\xac\x9f\xa0\x70\x1a\x79\x06\x02\xe3\x7a\x69\x56\x95\xd9\x6d\x10\xce\x36\xeb\x55\x56\x05\x4f\xfe\xcf\xfd\x7f\x6f\xa6\x4f\x42\x2f\xe8\x1f\xeb\x37\x93\x89\xdf\x9f\xf1\xd6\xa4\x9f\x6d\x30\x99\x4d\xea\x4b\xb2\x1b\x23\x74\xd7\xea\x7c\x8a\xc2\x3d\x22\xe4\x61\x08\xcc\xf9\xf9\xe3\x72\x76\x23\x37\x3f\xbf\xcb\x7f\x29\x8b\xb5\x29\xab\xbb\xc0\x84\xc7\xc3\x63\x9b\xbf\xce\x8b\x77\xf9\xde\xf0\xf0\x64\xfa\xe0\xdf\x18\x50\x13\x67\xb7\x0b\x9d\x02\x72\x89\xc0\x2a\x29\x06\x7b\x46\x8f\x83\xc3\xf1\xfa\x0c\x87\x7e\x94\x36\x01\xe6\xcf\xcf\x7b\x5b\xd0\xe3\xce\x82\x35\x32\x4c\xf3\xb7\x72\x95\xe9\x47\x4a\xae\x56\xa9\x54\xaf\x5d\x5d\xaa\xda\xb4\xe7\xb4\xf2\x67\xab\xa7\x6e\x04\xe4\x49\x60\x92\x62\x21\x97\xa1\x0f\x73\x16\x3a\x6d\x26\xd9\x06\x5e\xa9\x31\x7e\x68\x80\xc1\x6d\xe0\xb5\xad\xa8\xaa\x0d\x35\x6e\x7a\x64\x63\x09\x1c\x56\xa7\x07\xb9\x5e\xdb\x1d\x14\x7a\x54\xaa\xd3\xfd\x92\xcd\x30\x93\x30\xec\xc6\xf7\x0e\xa8\x62\x7d\x77\xbc\xfb\xf6\x61\xd7\x6d\xbc\x75\x61\x12\x7d\xa5\x2a\x6f\x38\xf2\x31\x19\x9a\x2e\xec\x95\x4a\x3f\x33\xfd\x1e\xa8\x5c\xad\x8e\x5d\x10\x83\x63\x76\x71\x89\x8f\xec\x49\x03\xb3\x67\xee\xb7\xd4\x9e\x16\xf5\x76\x5a\x98\x2d\x8a\xe5\x80\x95\x14\x53\xbc\xf4\x9d\x5a\x57\xf3\xff\xe3\xf0\x69\xad\xa3\xb9\x1b\xf9\x75\x4e\x0b\xd3\x19\x60\xba\xb2\xcb\x45\xb1\xac\x79\x41\x6b\xfa\x05\x59\xb8\x03\xfe\x79\x7e\xc8\x67\xff\x23\x95\x6a\x36\x18\xdb\x1a\x81\xcc\x33\x9a\xb2\xad\x58\xe6\x19\x4d\x16\x96\x8b\xec\xb0\x62\x79\xbb\x17\x57\xdf\x42\x55\x80\x9b\x04\x36\xb7\x45\x40\x70\x9b\x20\x13\x81\xbb\x04\x82\xb7\x09\x04\xd7\x09\x04\x69\x32\x29\xfc\x2e\x7a\x6f\xfd\x5c\x9b\xd2\x16\xe5\xad\x5b\x56\xcf\xcf\x07\x5f\x66\x79\xf1\xee\x6a\xf0\x7d\xfe\x8d\xac\x0c\x78\x75\x9c\xc1\xbb\x2c\xd7\xc5\xbb\xf3\xf3\xfa\x73\x56\x9a\x37\x5b\xb3\xa9\x9e\xe7\xd9\xad\x74\x84\xfa\xae\x94\xb7\xe6\xea\xa1\x1f\x67\x69\x96\xeb\xa0\xc6\x08\xe7\x43\x76\xb3\x31\xd5\x6f\xd9\xad\x29\xb6\x7e\x73\x83\x0f\x8d\x23\xef\x06\xcb\xf8\xfd\x7d\xf0\x2a\xf8\x36\x04\x6f\x93\xd4\xd5\x3a\x08\xa7\xd7\x7b\xf7\x55\x87\x1f\xde\x26\x70\x78\x3b\x75\xb7\x11\x29\x57\xab\xd6\xd1\x25\xbb\x6d\xf7\xa1\x73\xef\x9e\xb5\x77\x9f\xcf\x8b\x7d\x8f\x32\x1f\x55\xa8\x33\x04\xcd\x4a\xe3\xc3\xa8\x37\x38\xa0\x1c\xde\x61\xed\xca\x0e\xee\xda\x8a\x85\xd3\x6b\x70\x93\xac\x13\x78\x56\x95\x77\x1f\x1e\x0f\xa6\xe2\xbb\x20\x04\xd3\xe9\xcd\xd9\x70\xd1\x5d\x3d\xad\x9e\x86\x81\x49\xde\x5e\x56\x75\x05\x43\xcf\x61\xab\xba\xe2\xb5\xbd\xda\x47\x29\xf1\xa1\x1e\xab\xba\xe6\x4f\x2f\x2f\x6f\x76\x41\xb8\xb3\x4e\xf7\x58\xdd\x7d\x70\x03\x62\x50\xce\x20\x7f\x90\x27\x2b\x50\x26\xe8\x09\x7c\x9a\x3f\x0d\xf3\x3a\xd7\xab\xa0\xfc\x32\xaf\x4b\xf3\x86\xca\xe6\xd9\xf1\xf1\x1c\xe4\xee\xab\x2b\x24\x9c\x07\x55\xfb\x0c\xf2\x01\xc9\xdc\xc2\x70\x65\x9a\x17\xd5\x7c\x95\x54\xe1\x99\x4a\x0c\x78\xed\x56\xf1\xc0\x75\x11\xdc\x0d\xaf\xf0\x6e\x79\x50\x43\x1f\x50\x25\xe6\xf2\xee\xac\xfa\xf2\xf6\xfc\x3c\xb8\xbe\x4c\x2a\x70\x97\x0c\x5d\xd8\x5e\xbb\x51\x71\x73\x7f\x1f\xac\xfd\xb5\xcc\x6a\x65\x64\xd9\x8e\x90\xb5\x5b\x5c\x2e\xdf\x7e\x89\xc9\x55\x60\x9e\xa1\x27\xfe\x56\x91\x64\x30\x84\x7e\x06\xe6\xb2\x29\xe7\xf2\x3a\x0c\x81\xf6\xf7\xe4\xfb\x3c\x7e\xc8\x2b\x53\xbe\x95\xab\x40\xfb\x3b\x57\xf5\xfd\x7d\xdf\x67\x40\xbb\x4c\x3a\x8c\xe7\xe0\x36\x0c\xc1\x4d\x82\xc0\xab\xe0\xe7\x30\x0c\x77\xef\x07\x8b\xf0\x8b\x53\x0b\xf2\x7b\xd0\x0c\x92\x31\x06\x32\xb2\x0e\x99\x01\xef\xf8\xed\x6e\x6d\x1a\xfe\xd1\xae\x41\x8f\xb2\xcd\xa3\xbc\xa8\x1e\xc9\xee\x32\xf9\x49\x78\x96\x27\xcd\xba\x92\x5f\xbd\x0b\xc2\xf9\x34\x0f\xa7\xed\x42\x73\x05\xe7\xd3\x6e\x73\xd4\xf5\xcd\xfd\xbd\x6a\xf6\x99\xef\xef\x03\x75\xa5\xda\x1e\xbb\xc9\x36\xf3\x7a\x4a\x00\xe5\x3f\xba\xed\x4e\x37\x55\xba\x0d\x7b\x37\x59\x72\xf0\x3a\x08\x77\x60\x53\x15\xeb\x11\xf7\x17\xb9\x5a\x75\x1b\xd2\x3e\xed\x20\x9c\x8e\x4f\x8e\x9e\x40\x97\x41\x17\x15\x27\x39\x24\xcc\xc8\x54\x6b\x77\x72\xea\xf6\x80\x7e\xe6\x75\x69\xf3\xf0\x43\x39\x73\x55\x0a\x42\xe0\x04\x90\x2a\xdc\xb5\x93\x12\xfc\x96\xd8\x60\xe2\xf1\x27\x60\x62\x9c\x0a\x35\x51\x8e\xb3\xad\x26\x60\x92\xb9\xee\x2d\xb7\xeb\x6a\x12\x82\xaf\x93\xc5\x12\xfc\xea\xef\x98\x46\xe0\xa7\x04\x83\x7f\x27\x11\xf8\x21\x21\xe0\x9b\x84\x82\xbf\x26\x0c\x7c\x37\x7a\x17\x74\x1b\x4e\xd8\xcc\x5e\xbd\xaa\x4a\x99\x6f\x32\x87\xe1\x56\x2d\x59\x8b\x1d\x6e\x49\x6d\x43\xc7\xd7\x57\xc9\xee\xa3\x26\x1f\x76\x67\x8f\x47\xa9\x50\x3b\xaf\x0e\x73\x1d\x08\xea\xdb\xf6\xf6\x74\x7f\x67\x90\x17\xc4\x66\x9b\x4a\x56\xe6\x71\x92\xfc\xd2\xdd\x55\x16\xd4\x2b\xcd\xaa\x11\x36\x6c\x10\xdc\x24\xd9\x62\xd5\xcb\xc1\x79\x2d\x2e\xb8\x9a\xde\xd4\xe9\x93\x24\xf9\x77\x9b\xfe\xc7\xa0\x08\xcf\xfa\xf7\x3f\x5c\x75\x48\x7f\x05\x37\x33\xd7\xa1\x1d\xd9\x6f\x66\x45\x5e\xf3\xa6\x01\x55\x81\x01\xae\x05\x5a\x56\xf2\xd5\x2b\x70\x53\xcb\x8e\xe0\x66\x76\x5d\x16\xdb\x75\xd8\x86\x12\xf7\x15\x9a\x4f\x57\xcf\xaa\xf3\xf3\x4f\x2a\xa0\xed\xbf\x4f\xcf\x7d\x97\xd9\xe0\xc7\x60\x30\x5e\xf3\xbe\xb1\x4e\x7a\x6a\xbe\xfd\x00\xf2\xa6\xd0\x76\x88\x49\xa7\x94\x99\x95\xbc\x6b\x7e\x09\x81\x0c\xb6\x61\xe8\x95\xb5\x3a\xcd\x4f\x20\xef\x6b\xd6\x8c\xb3\xbd\x8a\xe5\x4d\xc5\xf2\xb6\x62\x7d\xd9\x3f\xd5\x9c\xb9\x7d\xf1\x6f\x50\x0e\x64\x23\x9b\xe4\xb3\xea\x9d\x31\x79\xbb\x55\x04\x56\x09\x04\x2a\xb9\x44\x4f\x57\xcf\xec\xd3\xe9\x74\x15\x06\x37\x2d\xce\x62\xd5\xca\x08\xf5\x7e\xe6\x43\x15\x70\xf2\x62\xb9\x98\x4e\xd5\x32\xb9\x09\xcf\x5a\x79\x23\x51\x53\xb4\x1b\xaa\x5c\x03\xcd\x2a\x4b\xaa\x67\xf9\x4c\x6f\x4b\xbf\x7c\x5f\xe5\x33\x23\x37\x66\xb0\x12\x55\x4f\xfa\x5f\xc3\x79\x70\x48\xc4\x4d\xdf\xe6\x6f\x00\x0a\xfd\x9e\x0b\x90\xbd\xa4\x33\x9d\x16\xcf\xe4\xd3\x5a\x02\x6b\xaa\x9f\x85\x67\x3d\x99\xbe\xf1\x5d\xd4\x11\xd9\x4f\xe2\x87\x49\xbc\x71\x2c\x66\xa0\x27\x0e\xb4\x39\x37\x15\xf2\x6e\x90\xe5\xfb\x83\xac\x1b\x33\xd5\x12\x64\xcd\x2c\x38\xeb\x22\xde\x0f\xe7\xe2\xce\x3b\x06\xe7\x6d\x06\xc9\x8b\x3d\x8d\xa9\x2d\xe0\x97\xa3\x01\x55\x1c\x0d\xa8\xe6\xfb\xb3\xc4\x9c\x9f\x17\x81\xb9\x6c\xbe\x87\x3b\x00\x5b\x9c\x5d\x60\x40\x0e\x5a\xbd\xb0\xbe\x73\xaa\x04\xbe\xad\xf3\xcc\x29\x7d\xbf\x01\x3f\x0a\xe6\x5f\x03\x87\x3f\x2f\x7c\x32\xe0\xf3\x99\x17\x4d\x79\x6d\x07\xb9\x17\xcd\x23\x70\xfd\x38\x2f\x7c\x77\xfa\x94\xa5\xbf\x54\x0b\xf8\xca\xcf\x7f\xdd\xdb\x97\xfa\x63\xe8\x07\xfb\x55\xed\x5c\xd3\x73\x9d\x2f\x7f\x3d\x16\x7b\xab\xa2\x78\xb4\x92\x95\x79\xfa\x48\xae\x4a\x23\xf5\xdd\xa3\x8d\xba\x31\x7a\xbb\x32\x7a\x32\xd8\xa7\xea\x4a\xf8\xfe\xe1\x12\xfe\xfd\x29\x25\x94\xdb\x3c\xcf\xf2\xeb\xd1\xfc\xbf\x3a\x38\x66\x70\xc0\xaf\x1f\xe7\xf7\xf7\x8f\x83\x3c\xc9\x17\xd5\x72\x44\x88\xef\x91\xfd\x1a\x6c\x8b\x6d\xbe\xd7\x8c\x83\x2b\x7f\xf6\xb5\xef\xfa\xfc\xc1\xa0\x40\x20\x93\xc7\x7e\xdb\xbe\xdd\xdf\xf7\x9a\x57\xb7\xd0\xf9\xd8\xd2\xd5\x74\x32\x01\x45\x18\xe4\x49\xb1\xc8\x06\xa6\x0b\x7f\xcb\x60\x43\x94\x9f\xce\xcf\x9b\xc7\x67\xdf\x80\x93\xc3\xba\x9f\x3c\xe5\xd5\x80\x3d\xcf\xc7\x39\xe9\xd1\x6c\x6a\x26\x80\xaf\xc5\x5c\x26\x8f\xd1\x99\x3c\x3f\x1f\x9f\x15\x3b\xf0\x26\xc9\x03\x32\x38\xf4\xf3\xf2\xe8\x58\x46\xa6\xfb\xfb\x26\x8c\x54\x37\xc1\x91\x6e\xfa\x7d\xed\x77\x53\x86\x4f\x03\x53\xb3\xb5\xfb\xfb\xf6\x29\xf9\xb0\x0b\x43\x3f\xf7\xc6\x5d\x74\x76\x21\x18\xd9\x22\x74\x7d\x5f\x86\x75\x0e\x8b\x6a\xb9\xf3\xdd\xf5\x7b\x92\x07\x28\x04\xff\x1c\xeb\xb5\xf6\x98\xcb\x24\xdf\xde\xa6\xa6\x1c\x7a\xbb\xbc\x99\xa9\x79\xf5\x28\xcb\x37\x95\xa3\x5e\x61\x1f\xfd\x3e\x93\x57\x6f\x66\x7a\x1e\xe4\x8d\xb7\x72\xf0\xfb\x4c\x86\x41\x15\x86\xde\x0d\x05\xbc\x99\xe9\x70\xfe\x66\x66\xc3\x7a\xd3\x1b\xfc\x57\x52\xce\x36\x66\x65\x7c\x99\x03\x67\xe5\x81\xe8\xd8\xd3\xef\x2f\x83\x56\x1c\x0a\x5c\x9b\xea\x6e\x65\x66\xa5\xb9\x2d\xde\x9a\x81\x06\x5a\xb7\xee\x4f\x09\xec\x73\xe9\x2e\x3d\x69\x45\x35\xdf\xb5\x9b\x4e\xb6\x5b\xcb\xd2\x51\xaf\xf3\xc5\xf6\x63\xad\xf5\x7e\xcb\x74\x52\xee\x5d\x7b\xd2\x55\xa8\x69\xee\xa0\x39\x61\x10\xce\xfa\xf1\xb0\x77\x12\xa5\xbf\xa6\x64\x3a\xfd\x93\xaf\xe2\x9f\xc7\x09\x71\xf6\xb7\x81\x40\xfd\x8f\x53\xc2\xf5\xdf\x40\x9d\x74\x7e\x6c\xaa\xea\xdb\x00\x5a\xb7\xbf\x4c\x9f\x8d\x09\xdc\xe7\xe7\x41\xeb\x62\xde\xb5\xa2\x28\x43\xa7\xc6\x9f\x0d\x56\xbf\x01\xc9\x06\x8e\x24\x7b\x67\x60\x8a\xf6\x96\xe7\xc2\x3b\x66\xb4\x89\xfd\xb5\x8e\x49\xb6\xd8\x78\xc7\x8c\xfe\xba\x68\xb9\xd8\x0c\xfd\xbf\x6c\xd8\xf8\x64\x58\xef\x93\x11\x6c\x13\xb5\x58\xfb\x5d\xfd\x55\xd2\xac\xb4\x5b\xb0\xed\xe7\xe8\x1a\x28\xbf\x8e\x4f\xda\x37\x93\x2c\x7f\xb4\x75\xe8\x1d\x4e\xd2\xa3\x87\xe0\x66\xb1\x5e\x26\x2b\xf0\x5d\xe0\x1e\xfc\x48\x58\x83\x1b\xf0\x55\xb0\x05\x79\x18\xee\xd9\x77\xfe\x16\xc8\xfd\x31\xe1\x67\xef\xae\x21\xf6\xf3\x3d\xb3\xcf\x7f\x8a\xde\xcf\x57\xab\x4f\x27\xf9\x62\x09\x36\x0e\x6c\x13\xf8\x74\xeb\xa9\xbd\xed\xa8\x5d\xd3\x7a\x7b\x40\x6b\xf8\xf4\xc6\xd3\xf5\xc6\x49\xc0\xab\x44\x2d\x6e\x96\xbd\x40\xb0\x06\xba\xa5\xf0\x0a\xac\x06\xf2\x24\x50\x21\xb8\x4d\xbe\x0a\x56\x4e\x91\xa8\xcd\x29\xba\x95\x58\xee\x9e\xbd\x7d\x3a\x9d\xde\x85\xc1\x3a\xd1\x8b\x3b\xd7\x4f\xdf\x05\x6b\x4f\xd6\x3b\xa0\xc1\x6d\x78\x26\x6b\x53\xae\xf6\xf7\x0c\xbb\xa7\x55\xb8\x3b\x20\x72\x4b\x58\x9b\xad\x2a\x53\xee\x51\xf5\xe3\x94\xbb\x95\x95\xba\x31\x07\x03\xb5\xda\xa7\x5a\x9e\x54\xbd\xfb\xc6\x49\x9b\x5b\xe7\x03\xe5\xe3\xb0\x16\x8e\xae\x9b\xde\xc5\xd1\x5b\xe4\x16\xcb\xe6\xfe\xe7\xad\xbf\xfe\x39\x90\xc9\x66\xa1\x5c\xa3\x1b\xba\x49\x20\x7b\xba\x29\xb0\x09\xcf\xcf\x1b\x8f\x0e\x79\x30\xb4\xb2\xc3\xa1\xd5\x0f\x9c\x76\xd8\x84\x3b\x70\x6b\xca\x6b\xb3\x47\x90\x3a\xd2\x51\xa6\x3b\xaf\xe9\x4c\x1f\xae\xd0\xa7\xa9\x60\xba\xe7\x72\x8f\x22\xbd\x0b\x50\x77\x7c\xd1\xdf\x2f\xb2\x7f\xb2\xed\xd4\xac\x4e\xaa\xfa\xa2\xd0\xbc\x9e\xda\xab\xcf\x98\xda\xab\xc5\x7a\x79\x7f\xdf\x4e\x70\x3f\x35\xb7\x8d\x69\x79\xe3\x3d\x67\x36\xa1\xcf\xc3\x95\xf0\x91\xa9\x39\x4a\xbf\x8e\xa5\xce\xc7\x3c\x14\xde\x3d\xfa\xaf\x60\x8f\x42\x7b\x59\x3a\xcd\xb9\x63\xdf\xf3\x31\x13\xd2\x70\xb6\x57\x5d\x77\x80\x3c\xf9\x57\x10\x76\x87\xcb\x9b\xac\xb3\x4e\xc8\x6f\xc6\x5c\x76\x34\xe6\xca\xa3\x31\x07\x9f\xae\xfc\x48\x5b\xb9\xe9\xea\xc6\xda\x6a\xd9\x5c\x6b\x9e\x7c\xe5\x28\x10\x9e\x7d\x17\x48\xe0\x24\xe2\x15\xd8\x80\x0f\x5e\xe2\x55\x5e\xe0\x99\xaa\x5a\xd6\x75\x9f\xad\x88\x5b\x0b\xc1\xb0\x17\x7f\xd5\x81\xf8\xab\xbc\xf8\xbb\x3b\x98\x9f\xe5\x01\xa5\x8d\x9f\xab\xde\xec\xfd\x67\x3f\xea\x41\x5e\x68\xb3\x99\xff\x79\xe6\x3f\xfd\xb7\xe6\x0b\xd8\x64\x7f\xb8\x67\xf7\x01\xcc\xed\xba\xba\x9b\xff\x79\xe6\x3f\x81\x13\x77\xdc\x17\xa9\x6e\x4e\xec\xd5\xf4\xec\xf3\x84\xd3\xe9\x33\x7c\xf5\x55\xdd\x7f\xae\x2c\x27\xdc\x85\x4e\xba\xf3\xf3\xa4\xf6\xa5\xdf\x97\xa9\xf6\x2d\x0a\xa0\x48\x82\xea\x81\xad\x1f\xf3\xd6\x94\x77\x23\x9b\x3f\x07\xfb\x3e\xad\x65\xa6\xde\xfb\x19\x6e\xf6\x54\x61\x08\x1e\x9b\xfb\xfb\x46\x15\x4e\x92\xc4\xec\xc2\xab\x3f\xe6\xdf\x9f\x1d\xcb\x30\xb5\xe5\xa4\x68\xce\x90\x85\xde\x05\xbd\xc8\xcf\x36\x8f\x13\x7f\xf1\xbe\x77\x1e\xdd\x84\x33\x55\xac\xef\x82\xd0\xb5\xb2\xb9\x5d\x6d\x56\xe4\x49\xb6\xdb\x05\x79\x73\xf0\x0c\xc8\xaa\x2a\x47\x89\xd9\xf1\x4b\x37\x5a\x37\x6b\xa9\x4c\x58\x1f\xe7\xa9\xc5\x79\x5b\x94\xb7\xae\x8a\xf9\xd5\x9b\xd9\xcd\xfc\x9f\xc3\x4d\x97\x99\xcb\xf3\x37\xa7\x54\x05\x06\x8c\x3a\x3d\x07\xf9\x6c\x55\x28\xb9\xba\x3a\x49\xea\x53\x4d\xf6\xce\xb4\xb9\x6f\x76\xad\xe1\xf8\xad\xa9\x6d\xa3\x6f\x06\x4d\x48\x80\x6b\x53\x3d\xaf\xaa\x32\x4b\xb7\x95\xf9\xe9\x45\x60\x66\xbe\xfe\xc0\xd4\xa5\xfa\xcb\xf6\x83\x4d\xb2\x75\x9d\x59\xeb\x0b\x32\xf1\x74\xdb\x24\x49\x92\x5d\x15\xf3\x20\x4b\xdc\xca\x59\x79\x17\xfe\x6d\x1b\xea\xba\x16\x16\x1f\xca\x78\xb7\x3b\xb2\x56\xfe\x2f\xb4\xc8\x2d\x5c\xff\x91\x16\x78\x79\x37\x0c\x72\x90\x81\x97\xf5\x48\x9a\xb8\xae\x9b\x4d\xa6\x7e\x70\xcc\x5b\x95\x6a\xa4\xbb\x4e\xca\xd5\x9f\x49\xa4\x4f\xcd\xa7\xad\xaa\x37\x91\x7c\x64\xec\x24\xf9\x74\x32\x39\x39\x67\x3e\x65\x80\x74\x0c\x24\x49\x92\x62\x40\xdf\xab\x6c\x9e\x35\x34\xcd\x1f\xec\xec\xcf\xac\x42\x60\x3e\xb5\xc8\xba\xb7\xba\x99\xeb\x67\xd9\xe8\xf4\xed\x7a\xd2\xdb\x53\x8f\x37\x76\x9b\xe1\xd5\x30\x4d\x6f\x02\x09\x72\x27\x17\xe7\xb3\x57\x5e\xd5\x3b\x1b\xec\xba\x0e\x27\x77\x83\xda\xec\xb5\x8e\x1b\xe3\x8f\x36\x85\xeb\x13\x3d\x27\x78\xca\xd9\x58\xf6\x41\x36\xd2\xcd\x9d\x59\x60\x78\xf8\xa4\x7e\x99\x25\x27\x6e\xda\x6a\x73\xcf\x1a\xd6\xe8\xf7\x32\xb3\xf0\xfc\x7c\x3f\xe3\xc3\xbe\xca\x5b\x3d\xf1\xc1\x91\x02\x2a\x47\xb4\xdd\xce\x9b\xdd\x42\x90\xf7\x07\x43\x6a\x22\x26\x15\xc8\x76\xe3\x7e\x05\xff\x77\x9a\xe0\x30\x3f\xa1\xca\x61\xd0\x0c\x32\xaf\x26\x8f\x8e\xf3\x83\x85\x20\x30\xd3\xc4\x31\xa3\x37\xb3\xeb\x7e\x35\x68\x19\x48\xaf\x71\xb7\xcb\xc2\x18\x49\x1e\x60\x92\x03\xbd\xc7\xe5\x12\x0e\xd6\xbd\xe0\x21\x75\x1e\x9c\x48\xb7\x37\xdd\x36\xfd\x74\xcb\x7b\x0e\xea\x98\x67\x9e\x48\x90\x25\x9b\x8e\x5a\x6e\x1d\x9d\x98\x5c\x37\xc5\x39\x3e\xf9\x17\x7f\xcf\xf0\xf8\xd1\x9e\x07\x5b\xdd\xd1\x11\x14\x40\x9e\x68\xf7\xe6\x64\xbb\xbb\x25\x03\xac\xfc\x2a\xb0\x4f\xf1\x6d\xbb\x93\x74\x8a\x2c\xab\x64\x7b\x2a\x6b\x47\xd3\x24\x59\xd5\x34\xf1\xc4\x38\x3f\x5f\x79\xa6\x24\xe7\x41\x91\xac\xfc\x51\x29\xb7\xba\x6c\xdb\x51\xd4\x2d\x1e\x3d\x55\xaa\x30\x0c\x8f\x85\xa9\x3d\xab\x1e\x90\x49\x97\xa0\x02\x9b\xc4\xd3\x75\x32\x3d\x45\x8a\x6d\x6b\xd9\xaa\x6b\x3f\x2b\x72\xa7\x40\xd4\xad\x6d\x6c\x53\x72\x79\x55\x5f\x68\xfc\x97\xc0\xad\x5e\x6f\x8b\x4c\x3f\x82\x67\xab\xba\x5b\xb3\x24\x49\xd4\xfd\x7d\x7d\x92\x64\xb5\x27\x19\x39\x59\x5b\x85\xc0\xe5\x99\x94\xbb\x36\x48\x42\xa6\x81\xbf\x41\xfa\xd3\x3b\xf1\x21\xa6\x7f\xb2\x27\x5b\x7c\x47\x69\x39\x20\x7a\x33\x02\x1d\xa1\xf3\x96\xce\x55\x23\xb1\x1e\x8e\x41\xcf\x8a\x9b\xb9\x7a\xbc\x22\xf4\x06\xc4\x8e\xde\xcd\x64\x7d\x78\x69\x28\x87\x4b\x43\xe9\x96\x86\xf2\x93\x96\x86\xf2\x33\x97\x86\xb1\x1c\x4e\x2c\xac\xfb\xee\x76\xfe\xc8\xe1\xc7\x78\x66\xf1\xd8\x8f\x60\xd7\xef\x59\x52\x1c\xf0\xcc\xc1\x89\x92\xee\x75\xb9\x67\x20\xdc\x98\xaa\x9f\x37\xa0\x72\x4a\x6d\xd3\x1d\x85\x77\xce\x2a\x5b\xf6\x59\xf4\xec\xb3\xd8\xd5\x79\x37\x5b\xcb\x93\xc9\xdc\x31\x5c\x50\x99\xf7\xd5\x98\xe4\x33\x68\xf8\xc4\xe1\x4c\xc6\x64\x66\xf3\x11\xd9\xab\x51\x35\x1a\x31\xb2\xce\xd2\xbc\xaf\xbe\x2e\xf2\xca\xe4\xbd\x71\x7c\x32\x99\x57\xbb\x5d\xd0\x4e\xd8\xba\x38\x37\xcc\x3f\x41\x22\x1b\xe6\x67\x9c\x0a\xd1\x1c\xdf\x9b\x4c\xe6\xde\x23\x2e\xdc\x81\x9a\xd1\x8c\xa8\xce\x3e\x83\x76\xe0\xd6\x58\x13\x10\x98\x5e\x05\x3e\x6a\x8a\xff\xa5\xd6\x20\x7f\x2a\xb4\x39\xf0\xb3\xf2\xc9\x06\xc6\x73\xa7\xee\x4e\xf3\xc7\x49\x62\xda\x9d\xa7\xea\xfc\xbc\x6a\x4a\xfa\xfa\x26\x5b\xe9\x9a\x32\xbb\xb0\x76\xea\x34\xbb\x66\xd7\xe7\x41\x35\x32\xb3\xf5\x44\x01\x23\x93\xe4\xc3\xf0\x6e\x9e\x23\xad\xd2\x67\xde\x1c\x47\xcb\x0e\x4f\x25\xd6\x07\x1a\xb3\x45\xd1\x6f\x4c\xb4\xd5\x7e\x54\xd6\xbc\x6c\xc8\xce\x77\x43\x1a\x7a\x9e\xda\x39\x29\x8c\x0b\x16\xe3\xa3\x23\x1b\x30\xd0\x22\xc9\xea\x2a\xfa\x6d\x94\xc7\x49\x92\x87\xfb\xe7\xf9\x82\x32\xc9\x93\xa2\x73\xf4\x92\xfe\xbc\x9b\x74\x35\x2f\x17\x72\xe8\xb8\x19\x94\x49\xd9\xba\xba\xd5\x1a\xb1\x32\x81\x04\x6d\x70\x9a\x5d\x53\x8e\xe3\xab\xa7\xa4\xe5\x13\x8c\x22\x3f\xc5\x28\x0e\xda\x55\x0c\xda\x25\x93\xa2\x6f\x97\x74\xd2\x52\xf8\xc1\xab\xc2\x32\xec\xfc\xf1\xfa\x23\x81\x87\xce\xa2\xcd\x09\xc1\xec\xf0\x80\x66\x66\x83\x6c\xb1\x1d\xb6\xda\x7d\x4d\x36\x4d\x13\xb7\x6e\xb9\x3c\x3f\xcf\x6a\xb3\xdd\x26\xdc\x35\x75\x70\x7a\x76\xd8\x2b\xda\xb5\x31\xe5\x94\x01\xf8\xb4\xd1\xe2\x6a\xd0\xef\x1f\x61\x0c\x63\x42\x60\xf8\xe1\x8f\x96\x3c\xb5\x81\x27\x39\x75\x25\xed\xee\x50\x50\xed\x7c\x48\xa6\x15\x78\x20\xbf\xca\x35\xb3\xf2\x5c\x64\x7f\x1e\x54\x0d\xc6\xae\x37\x20\xfd\x5f\x68\xfe\xf7\x7d\x75\x9b\x5a\xfc\x8f\x29\x30\x92\xe5\x83\x44\x68\x90\x76\xb5\xd1\xec\x7f\x44\x83\x23\xbf\xd1\xcf\x59\x62\x47\x9b\xe0\xea\xe4\xaa\x7f\xaa\xf6\xde\xc2\x07\xcc\x48\x14\x1a\xef\x10\x57\xef\x36\x26\xb9\xe7\xe2\x59\x92\x7b\xd3\xdd\xbe\xdb\xeb\x2f\x65\x71\x9b\x6d\x4c\x5f\xf7\x02\xc8\x56\x2a\x6a\x9c\xea\xa5\x9b\x7c\xc7\x0e\xf6\x30\x49\x2e\x2f\xb3\xf3\xf3\x22\x08\x77\xbb\xb3\x7c\x74\xcb\x33\xef\xb7\x3c\x7d\xf9\x45\x7e\xe6\xf4\x24\x73\x7e\x1e\x04\x55\x12\x98\x24\xeb\x85\xbd\x57\xb3\x7a\xd7\xb6\x9d\xaa\xa0\x9a\xbd\x9a\x75\x9b\xba\x7b\x6f\xdd\x42\xe5\xbf\x6f\xc3\x7a\x13\x38\xa9\x76\xe1\xce\xdf\x2d\xde\xca\x20\xa7\x03\x40\x76\x71\x3f\x87\xf7\x30\xf8\x51\x94\xcf\xcc\xfb\x75\x91\xfb\x35\x14\xe4\xbb\x20\x0a\x3f\x25\x3f\x74\xd9\xe5\x88\x2e\xff\x33\x79\x06\x81\xb9\x48\x70\xf8\x2c\x41\x57\x7b\xb5\x9d\xe3\xbe\x2c\xec\xcb\x0a\x9f\xe0\x8f\x15\xe7\x53\xfc\xf2\xc3\xa7\x34\xc5\x5c\x98\x8b\x20\xa8\xa6\x28\xbc\x30\x97\x47\x0d\x29\xde\x9a\x72\x73\x53\x14\x4d\xd6\x68\xc6\x21\xa2\xe2\x53\xda\x73\x79\x39\xcc\x79\x5a\x85\x53\xf4\x1f\xcb\xbb\xa5\x15\xba\x3a\xa8\xfd\x3c\x30\x97\x09\x0e\x0f\x0a\xc6\xc7\x14\x3b\x51\x76\x2d\x8b\x98\x04\x5f\xb4\x14\xac\x4c\x12\x0c\x2b\xd4\x0b\xef\x75\x0c\xc8\x4d\x96\x07\xe8\x49\x50\x35\xfb\x2e\xf2\x7d\x80\xbc\xb2\x75\x11\xe4\x4f\x12\x63\xc2\xa1\x55\x61\x20\x62\x5e\xf4\x7d\x0a\x10\xbc\xb8\xbc\x34\x4d\xe0\x49\x97\x5f\x50\x5e\x9a\xf0\x49\x1e\xf6\x96\x00\x79\xbb\x5e\x65\xd5\x56\x8f\x5e\x3e\xee\x6b\x75\x61\x4c\xb8\x03\xd9\x6c\x6d\xca\xac\xd0\xc9\x9e\x3b\xe1\x00\xcd\xe1\xec\x02\x04\x66\x07\x63\xf2\x3f\xd3\x2c\x74\xb9\xd7\xb0\x4b\x04\x2f\xea\xc8\x72\xc3\xc6\x99\x69\xf9\xff\xc7\xc6\x05\x81\x1b\x16\xe6\x12\x85\xcf\xe0\xd5\x61\xff\x8d\xf5\xde\x1c\x1f\x53\x63\x1f\x6f\xea\xf1\x06\x83\xf3\x7f\x89\x16\xf5\xb6\x92\xf7\x86\x3a\xda\x41\xc2\x14\x1e\xaf\x82\x47\x1c\xc9\x4d\x33\xd3\x4f\x2e\x53\x4f\xa9\xdd\x80\x52\xb9\x39\x38\xc0\xf4\xf4\x71\x70\xe8\x99\x14\x0e\x9c\x92\xfc\xe9\x8f\xc7\x7e\xbb\xa5\x57\x2a\xba\x93\x1e\x95\xf1\x7b\x60\x89\x77\xa8\xee\x85\xef\xdd\xb8\xaf\x49\xb7\x60\x8c\x1d\xa8\x1f\x59\xaa\xc3\x0f\x7f\x6f\x57\xdb\x5d\xe8\xaf\xe1\x1f\xc9\x74\xe0\xd5\x7a\x24\x20\x80\xfc\xcc\x0c\x9d\x66\xfe\x76\xe5\xcf\x0c\x79\x13\x85\xfb\xf4\x7e\xa8\xf3\xa0\xf2\xdb\x88\x41\x9e\x54\x26\xec\xdb\x63\x0e\x6e\xdd\x77\xaa\xda\xd1\x19\x8a\xff\xcc\x9e\x63\xbb\xe3\x78\x7e\x5e\xef\x32\x56\x7e\x97\x31\xbf\xbf\xcf\x8d\xdf\x7c\x3c\xd8\xd1\x3e\xde\x27\xac\xc2\xda\xb7\xb9\x34\xc9\xc2\xd5\x76\x09\x32\x73\xca\x2f\x6c\xc4\x0d\xad\x8e\xe3\x52\x9e\xf2\x07\xcb\x9a\x13\x40\x99\x3f\xcd\x56\x3b\x81\xfd\x72\x7e\x9e\x1f\x1f\x6c\xf3\xd5\x5b\x2c\xcc\x72\x09\x4a\xd7\x8c\x69\x19\xee\x69\x64\x6d\x94\x84\xbe\xf8\xb1\x73\x86\xff\x18\x04\x31\x50\x55\xf6\x76\xf4\x30\x62\x36\x38\x8a\x3b\xf0\xfe\x3d\x46\xfc\xfb\xe7\x1e\x5a\xc4\xe1\xbe\x89\x79\x37\x30\x9e\x0c\xb4\x5d\xd7\x58\xaf\x83\xed\x0d\xb1\x2c\x3c\x74\x30\xf3\x49\xf2\xd9\xc6\x54\x75\xac\xc5\xfe\x6c\x96\xdf\xab\x9f\x65\x9b\x7a\xcf\xde\x84\xad\x66\xd7\xf8\xaa\xee\xc5\x25\x1c\x1c\xe3\x6a\x7d\x57\xeb\x3c\x0b\x60\x9c\x42\xdc\xc7\x10\xdc\xff\xb9\xf2\xc1\x70\x8a\x25\x28\x9c\x9e\x57\x86\xbb\xb6\x70\xd3\x8d\xce\x8d\xeb\x77\xd3\xe0\x6f\x80\x59\x6c\x96\x03\x1f\xc3\xec\x53\x4e\x01\x66\xe0\x46\x6e\x46\x58\xd3\xe4\x4f\x93\xa9\x69\x0d\x0f\x3b\x70\x6d\x4e\x1a\x72\x16\x1e\x75\xb9\x03\x1b\x73\x18\x2b\xee\x18\xab\x71\x19\x3b\xb6\x9b\xf4\x07\x07\x1d\x5e\x67\x21\x6b\x6b\xd0\x79\x10\xfa\xbc\xaa\xe5\x0e\xf8\x33\x19\xa3\x2e\x07\x6d\x9a\x70\xf2\x27\xbf\xa3\xbc\x80\xcb\xfd\xe4\xae\xb2\xaf\xcd\xdd\xe6\xf8\x98\x5b\x13\x95\xc4\xd7\xe4\x20\x9b\xca\x67\xd3\x1c\xba\xac\x1a\xdd\x1a\xf5\x13\xdc\xec\x6a\xad\xfa\x7f\x92\x6b\xdd\xb6\x61\x96\x26\xaf\xca\xec\x7f\x92\xe7\x87\xd7\xe6\x6e\xde\x57\xb7\xd1\xfc\x5b\x2a\x0e\x8b\xf2\x7e\x08\x47\xe5\xc0\x8f\x14\x33\xed\x3b\xcb\x55\xd7\xfb\x2f\x3c\xd8\x29\x4e\x81\xeb\xfa\xa5\x61\x3f\x8f\x51\x93\xc7\x63\xb8\xab\xbd\x1e\x86\xe3\xe2\x23\xed\x6c\xc9\x06\x06\xad\xac\x2d\x5f\x35\x67\x95\x49\xd1\x73\x85\x8d\xe3\x0a\xb5\x71\x7d\x70\x48\xf6\x6c\x33\x98\x1e\x63\xf6\x31\xc7\x31\x36\x47\x1c\x63\x73\xcc\x31\x1c\xbf\x90\x5a\x07\x7b\xdc\xc2\xb4\xc2\xd1\x5e\x5c\x9e\x11\xe6\xe0\xe3\xf4\x34\x19\x38\x8e\xbd\xc7\x1a\x06\x3f\x56\xfe\x67\x50\x3a\xf5\xb5\x73\x44\xd9\x9d\x9a\xe2\x1b\x3f\xc5\xb7\xb3\x1b\xb9\x01\x52\xeb\x07\xe7\x71\x63\x26\x5f\x36\xae\x9e\xdd\x3c\xdd\x36\x86\xc5\x66\xda\x6d\x67\xfe\xb3\x1d\xf1\x5b\x1f\x14\xae\x1e\x41\xdb\xa1\x27\xcb\x76\xe8\xc9\xb2\xf5\xc4\x6a\x8e\x22\x26\x35\x0b\xed\xaa\x0c\x54\xb2\x9a\xdd\xca\xb5\x77\x8e\xf2\xfd\x08\x6e\x1a\x73\xd5\x24\x73\x22\x9b\xca\xaa\xc9\xc0\xc1\x7c\xdd\x73\x0c\x19\x84\x20\x4f\x16\x4b\x50\x26\x37\x63\x21\xfa\x92\xcc\x2d\x85\x32\xa9\x66\xd7\x8e\xeb\x7a\x33\xfd\xe3\xfa\xbc\x4d\xf9\x38\x49\x6e\x3a\x43\xe4\x59\xd5\xf0\x65\x99\xe4\xf5\xec\xc9\x7a\xfa\x9a\x45\x20\x2f\x51\xf8\x45\xdb\x7d\xdd\x01\xf4\x5e\xda\x58\x2c\xe7\xb6\x8d\x10\x07\xb2\x99\x2e\x6e\x65\xb6\x2f\xdb\xf8\x92\x0f\x4c\x1d\xfd\xd9\xf2\xd6\x5e\xe7\x1b\xe3\xdb\xd5\x4b\x2d\xa0\x00\x1b\x37\x7e\xb6\xc3\xb8\x4e\x9b\x67\xdb\xa7\x61\xe5\x3a\x36\x28\xea\xd8\x69\x9b\x65\x58\x1f\xa8\x6f\x9b\xd2\x34\xa4\xec\x19\x55\xe6\x64\xdb\x52\xe6\xd7\xa3\x12\xf0\x58\x14\x3f\xdb\x06\xeb\xf3\xb1\xfa\xda\x6a\xba\x6c\x9a\xb3\xaa\x9f\x1a\xb5\xcf\x74\xa1\xf9\x54\xb1\xbe\x4b\x8e\x57\xfc\x75\x10\x36\x64\x0b\xf2\xb0\xae\x64\x60\xc2\xb6\x98\xa0\xf4\x32\x77\xd7\xc5\x7a\xcf\x2c\xe3\xd2\xb6\x88\xf5\x46\x58\x6d\x1d\xa9\xf3\x03\x45\x92\xd7\x19\x02\x99\x2c\x20\x40\x4b\xb0\x49\x1e\xa3\x36\x44\x1a\x50\xc9\x8c\xf6\x83\xc7\x76\x96\x96\x2c\x68\x4d\xc2\xc0\x26\x72\x81\x96\xcf\xe4\x02\x2e\xbd\xdf\x9e\xbd\x84\x4b\xb0\x76\x2f\x2f\xed\xf2\xcc\x24\xc1\xfa\xf2\x26\x7c\x32\xd0\x78\xf2\xcb\xed\x14\x5f\xac\x42\xb0\xf1\x6e\x4f\xfe\x17\xbb\x2a\x8a\xd2\x47\x10\xbc\x99\xfa\x14\x97\xe6\x22\xc8\x2f\xb7\x61\x78\xa1\x40\x95\x98\x8b\x00\x5d\x6e\xeb\x14\x37\x75\x8a\xb2\xd8\xe6\x3a\xb8\x09\x41\x35\xfc\x5e\x35\x66\x7d\xdd\xef\xb2\xf9\xd6\x85\x8e\x70\x7b\x47\xf2\xfb\xbe\xbd\x99\x9a\x8b\xaa\xe7\xf9\x45\x60\xaf\x74\x1f\x08\x6b\xae\xbb\xb1\xde\x2c\x96\x79\x4b\x4f\x90\x8f\x0d\xe6\x93\x1d\xed\x74\x3a\x60\x83\x30\x9c\x67\x6e\x98\xe4\x87\xa3\xed\xa1\xb4\x32\x59\x4c\x7d\x14\xe6\xa9\x59\xa0\xe5\xb2\xce\x46\xf6\x63\xae\xc9\xec\x57\x47\x84\xd1\x1c\x0f\xd2\x6f\x92\xc7\xd0\x65\xe2\x52\xa6\x32\xd7\xef\x32\x5d\xdd\x8c\x8c\xbc\x6a\xe7\x0f\x44\x98\xf5\xc8\x6f\xc6\x17\x7b\xb2\xc4\xa3\x36\x6c\x92\xc7\x8f\x4d\x5d\xf3\x8d\x4b\xba\x96\x5a\x67\xf9\xf5\xa7\x25\xde\x26\xab\x5e\x6b\x86\xa0\x73\x36\x45\x7e\xa3\xda\x67\xba\x1d\x64\xfa\x43\x9e\x7f\x6a\x8c\xcb\xed\xe7\xe4\xfb\xf3\xb6\xfa\xd4\x7c\x3f\x5a\xdf\x95\xcb\x57\xae\xb2\xeb\x4f\x1c\x3f\xea\x63\x19\x2a\x97\xe1\x09\x16\xa2\x7b\x16\x92\x05\x61\xcb\x44\x64\xd8\xcc\x9b\x4d\xb8\x47\xb9\x60\x1b\xee\xb5\x38\x58\x85\x75\x4d\x03\xe5\x74\x8f\x60\x70\x20\xe1\x36\x38\xb2\xb5\xd7\xf6\xb3\x66\x0b\xcd\x57\xa8\x13\x5c\xbb\x4e\xaf\xf6\xf2\x6f\x4f\xc7\x54\x7b\xb5\x38\x7a\x5b\xe3\x56\xa7\xda\x68\x82\x3c\xf0\xfb\xab\xbb\xc0\x35\x77\xaf\x41\x28\xac\x03\xfc\xde\xf9\x93\x35\xe0\xed\x18\xc9\xc7\x86\xf8\x0e\x8c\x0d\xd0\xa9\xd9\x81\xb4\xe6\x97\x3d\x77\x7c\x35\x94\xee\x83\xea\x32\xf1\x16\xa8\xab\x63\x43\x49\x90\x5f\x9a\xf0\x49\xb5\x9b\xbf\x0d\xaa\x01\x25\xdf\xf5\xc7\x4b\xea\x6d\x3a\x3f\x61\x8b\xc4\xc7\x55\x97\x5e\xae\xf3\xee\xe5\xdd\xd5\x17\x8f\x8a\x67\xd9\x55\x90\x25\x79\x50\xd4\x2e\xd7\x65\xb0\x01\x32\x0c\xe7\xfe\x5d\x06\x8a\xfa\x9d\x04\x9b\x70\xf4\x3c\x8f\xf4\x2c\x29\xdc\x0d\x0f\xfc\xd7\x55\xe8\x64\x84\x6e\x98\x75\x41\x0c\x5b\xe7\xef\xd0\xab\x74\x07\x47\x37\xf6\xbe\x6e\x93\x4b\xe4\x57\x6a\xa7\xae\x3d\xab\xf5\x8d\x81\x9b\xeb\x20\xd8\xa0\x3f\x82\x7f\xf4\x36\x7c\x3a\x9d\x6e\x9f\x15\x4f\x43\xb9\xd8\x2e\x93\x3c\x30\x8b\xed\x12\x98\xc5\x76\x8a\x96\x21\xd8\xb8\x77\x59\x50\xb9\x77\x55\xfd\xee\x68\x73\xe3\xd8\x83\x35\xcd\x36\x46\x55\xfe\x08\x11\x40\xa0\x08\x2f\x51\xe7\x75\xb1\xc8\x97\x81\x74\xa0\xda\xa3\xc8\xfb\x7d\x95\xad\x9d\x43\xa6\x7d\xe8\xa6\x92\x69\x3e\xc3\xb0\x36\x0b\xad\x8b\x95\xac\xdc\xeb\xe1\xb7\x30\x9c\xa9\x95\xbc\x5d\x07\xa6\xf9\x1c\x9e\xb0\x7c\x71\x7c\xde\x2d\x05\x32\x49\xc1\x26\xb9\x9b\x49\xb0\x4d\x1e\xa3\x41\xd0\xe6\x81\x37\x7a\xdf\x4b\x45\x77\xc2\xa3\x0b\x8d\x8a\xaf\xbe\x9d\xbf\x03\x65\x92\xd5\xc7\xc8\x6f\xfa\xf2\x6e\xfa\x35\x30\x28\xbd\x43\x8c\xdf\x90\x01\xdb\x07\x3d\x0c\x86\xc7\xd0\xea\x3b\x3c\xf2\x64\x9a\x1f\x13\x7f\x78\xd7\x92\x3f\x75\x6e\xbe\x4c\xf2\x2b\x34\x2f\xbd\x03\xe7\x2e\x30\xe1\xdc\xb8\x81\x19\xfa\xa8\xf8\xed\x52\x3c\xcb\xf2\xb7\xa6\x1c\xb3\xa7\x05\xd9\xfd\xbd\x1f\xd7\x12\x14\xe0\xd5\xff\x46\x25\xe1\x55\xe5\x2a\x89\xae\xf2\xae\x92\x55\x38\xaf\x7c\x15\x4d\xb8\x03\x37\x9f\xb5\xda\x17\x89\x6a\xcf\xe1\x5e\x87\x60\xe5\xf8\x73\xd1\xaf\xd7\x37\x9f\xb7\xf8\xf7\xf2\xf3\xea\x60\xe1\xbf\xf9\xe8\xc2\xdf\xa7\x75\xe3\xc8\xb8\x1c\x5c\x32\x3f\xfe\x3e\x75\x85\x74\x0b\xf7\xaa\x59\x0b\x6f\x86\x23\xfa\x53\x57\xfe\x26\xf9\x66\xe7\x8b\x77\x3d\xf3\x73\x92\x07\x34\x04\xcf\x47\x83\x17\xf8\xb3\x9e\x8e\xdf\xc9\xc4\x2c\xfa\xdb\x94\x1c\xff\xeb\xe6\x72\x95\xa9\xd7\x2f\x2a\xb3\x0e\xfd\xa0\x6d\x8d\x7c\x08\xce\xab\xf0\xac\x89\xc6\xdf\x9f\x25\xfc\x79\xe6\x83\xb1\x54\x2f\xd6\x46\x65\x36\x33\x65\xd8\x05\x7c\x98\x00\xeb\xfd\x72\xea\x30\x40\x3e\x54\xff\x64\x33\x99\xd7\xda\x70\xb7\xe2\x9e\xb8\x93\x6b\xcf\x1a\xf8\xd8\xe9\x47\xa5\x51\xd9\x26\x2b\xf2\xfb\xfb\x3a\x94\x7b\xd6\x57\xa1\xfb\xed\x97\xd2\xd8\xec\x7d\x18\x78\xd7\xb9\xfb\xfb\x60\x90\x2c\xc9\x3a\x57\xc5\xb6\xce\x2d\x76\x0e\xb6\xa1\x8f\xf7\x3f\x99\xcc\xfd\x87\x69\x3e\xaf\x9b\xcf\x75\xf3\x59\x4e\xe6\x9f\x55\x1d\x3f\x78\x5c\x6d\x3e\xda\xda\xe3\xda\x5e\x06\x13\xe3\xbd\xff\x6b\xf2\x0d\xaf\x25\x98\xd8\xa6\x3e\x5f\x7c\x66\x7d\xbe\xcb\xde\x1b\x57\x9f\x91\xd2\xf0\x45\x30\xf9\x62\x58\x5e\xcb\x39\x0e\x68\xe6\xe4\xfd\x81\x5a\xfc\x7a\x78\x08\xa3\x9e\xc5\xfd\xf1\x59\x37\x90\x36\x47\xb6\xf6\x3c\xa9\xfa\xcd\xeb\xbd\x41\xb7\x09\x83\xdc\x8d\xcd\x7c\x91\x0f\x46\x66\xab\xed\x22\x38\x77\xcc\xa2\xce\xf6\x3b\x5f\x99\xe1\x10\xef\x77\x4b\x9e\x07\x55\x10\x36\x47\x62\xcc\x2c\xcf\x94\xd9\xdb\x53\x69\x86\xa7\x77\xf2\x45\xb0\xd6\x6a\x32\xef\xc8\xdf\x06\x0d\x2e\xfa\x5b\xc6\xb6\x3e\x92\x15\x58\x25\xc5\xe0\xb4\xd3\xea\xd9\xd6\x1f\x00\xd9\x82\x6d\xb2\x02\xab\x24\x03\x99\xbf\x87\x60\x03\x36\x6e\x94\x05\xd9\xfe\x5c\xfa\x21\x57\xa5\x71\xf3\x36\x0c\xb6\x60\x05\xf2\x30\xfc\x12\x76\xd2\x71\xad\x9f\x6d\x9f\x64\xe1\x45\x06\x1a\xc9\x56\x99\x6c\x15\xac\xea\x57\x1f\xcd\x6b\xee\x6f\xc9\x6b\xb3\xf3\x49\xb7\x17\x59\xf8\xa4\xcb\xad\x2e\x61\x55\xbf\xfb\x68\x76\x20\x73\x95\x73\x8d\x1e\xa9\x9f\x23\xc2\x71\x15\xab\xa0\xe8\xaa\xd1\x27\x1c\xd6\xa4\x4f\xb7\x57\x19\x9f\x10\x98\x1d\x18\x04\xb8\xfb\xb1\xb3\x04\xbe\x08\x5e\x81\xbb\x99\xea\x4d\x86\xa7\xa4\x53\x27\x49\xfc\xe8\xe5\xd3\xd7\x7b\x27\x7a\x7f\xeb\x8d\x97\xfb\xf2\x64\xb5\x27\x6f\x76\x12\x48\xb3\x42\x56\xa0\x15\x46\x92\xea\x70\x31\xc9\x1f\xb4\x5b\x34\xeb\x52\xee\xd6\xa5\x6a\xcf\x72\x71\x52\xb2\xfe\xad\xd7\x1e\x8c\x6f\x40\x55\x33\xf1\xaf\xc7\xf7\x64\x7c\x04\xc1\xa1\xa8\x17\xf6\x43\xb5\xf0\x31\x04\x3d\x63\xcf\xba\xa1\x2a\x9f\x15\x7e\xa0\x97\x4e\x50\x01\x99\x8f\x97\x54\x80\xc2\x0f\xd7\x3c\x04\x3e\x28\x60\xd5\xf4\x4a\xe1\xbe\x67\xee\xbb\xef\x3b\xe9\xba\xa6\x27\xda\xaf\xfb\x42\x78\xdd\x9d\xab\xe2\x3a\xa8\x9e\x98\x70\x4c\x18\x7f\xd4\x61\xe4\x4f\xc6\xa4\xf2\x5f\xf6\x2f\xc7\x78\x06\x47\xf2\xe8\x1d\x25\x2e\xdd\x12\xd6\x6f\xbe\x5e\x1a\x80\x2e\xf3\x70\xe0\x4d\x94\x1f\xbb\x86\xec\x27\x69\x52\xf4\x15\xf8\x69\xb0\xb4\x66\x9b\xef\xb2\x3c\xf3\xc7\x44\xae\xa6\xc1\x04\x99\xc9\xd4\xc9\x51\xcf\xa0\x93\xaf\xfa\x24\xff\x1e\x6e\x8d\xc3\xc4\xb1\xa5\x9f\xe6\x26\x49\x6a\x6a\x7c\x5b\xfb\x79\x98\xf7\x83\xe0\x43\xd5\x09\x8f\x95\x3e\xcf\x1f\x86\xc2\xd2\x41\x56\xab\xe2\x7a\x5e\x97\x73\x7e\xde\xbe\x40\xf0\xfe\x1e\xef\xbf\xc2\xf7\xf7\xad\xbd\xc7\xd1\xdb\x0c\x94\x92\xea\xb8\x3b\xaa\xf0\x89\xd9\x0d\x3a\xe2\x9b\x51\x41\xaf\xeb\x02\x13\x5c\xee\xd5\xf7\xaf\x83\x19\xfa\x2b\xf8\xa5\x1b\xbf\x0b\x04\x10\xf4\x77\x98\xb4\x2b\x01\x70\x0c\x16\x64\xc9\x0f\x01\x82\x21\x28\x92\x7f\xbb\xcf\x7e\x44\xc9\xc1\x16\x5d\xf2\x43\x7d\xf2\xf7\xdf\xee\xa3\x0a\xc2\x05\x5c\x7a\x7e\x92\x25\xdf\x04\x99\xfb\xe1\x9b\x86\x57\x74\xcc\x20\x95\x9b\x4f\x14\x92\xf2\x64\x6a\x80\x74\x52\x52\xee\x16\x84\xcf\x91\x35\xeb\x48\xf2\x2e\x69\x15\x74\x6b\xcf\xf1\x92\xe6\x4f\x27\x07\x4e\x31\xdb\xb8\xf5\x6b\x95\x6c\x16\x9b\x7e\x05\x7b\x1a\xc8\x64\xf5\x6c\x1b\xfa\xd8\x5f\xed\x9a\xb1\xae\x17\x1e\x1f\x1f\x09\xac\x93\xac\xbe\x63\x25\x0b\x56\x21\xb8\x4d\x06\x4b\xde\xd4\x80\xbb\x64\x51\x07\x1a\x0c\xf2\x2f\x50\x78\x7e\xae\x2f\xd7\xcf\x6e\xbd\x6d\x77\x3d\xb4\xd0\xad\x9d\xe2\xa8\x87\x6f\x74\x38\x45\x60\xdb\xde\xe1\xf0\x74\xfd\x4c\xfb\x33\xbe\xee\x8b\x4d\x10\x50\x49\x11\xac\xc3\xa7\xd6\x1f\xb5\xb6\xf5\xee\x7d\x70\x93\xa8\x0b\x1b\x3e\xdb\xd6\x61\x29\x6f\xbe\x5c\x85\xb5\xdc\xd1\x5c\xb4\x75\x13\xee\x76\xfd\x26\xc1\x7e\x8e\xf9\x65\x9f\xe7\x97\x09\x7a\x7a\x79\xf9\xb9\x99\xde\x25\x87\xf2\xc0\x1a\xe8\xde\x22\xa3\x2f\xd7\xe0\x36\xac\xcd\x8d\x45\x7f\xbe\xe4\xea\x6e\x60\x54\xbc\x3b\x25\x21\x54\x4e\xfd\xef\xb6\x40\x4a\xef\xaf\xee\xa7\x56\x7e\x35\x99\x41\x33\x99\x4f\xc0\x24\x04\x23\xbe\x7e\x35\xea\x91\x18\x54\x86\x6e\xa8\x27\x09\x7a\x02\x7b\x83\x7e\x23\x2c\xfb\x88\xa3\xad\x6c\x21\x87\x4e\x29\xf9\x45\xf5\xa4\x19\x45\x9d\xa1\x77\x54\x7b\x6a\x64\xaa\x27\x45\x30\xe8\x50\x6f\x55\xe8\x0f\x73\x5d\xe4\xcf\xf2\xcb\x19\x75\xa5\x5d\x38\x6e\x5e\x3d\x4b\xe4\x95\xd3\xb0\xe6\x93\xc9\xee\x58\xf6\xe9\x95\xed\xe0\x6b\x2f\x22\x7d\xf0\x7c\x7f\x6c\x7f\xa6\x29\xb5\x5e\x17\xea\x52\x77\xc0\xad\x0a\x0f\x20\xfb\x45\xa3\xc1\xdd\x85\x7e\xb6\x3c\xb0\x60\xff\x35\x08\xfd\x14\xf6\x27\xa5\x86\x02\xc0\x77\x47\xcb\xc2\xe5\x90\xeb\x57\xe1\x7c\x9f\x91\x76\x09\xff\xe8\xf8\x12\x02\xd5\x30\xe2\xd1\xe0\x0c\x42\x90\x27\xdf\x05\x39\x30\xe1\x65\x50\x25\xdf\xd5\xfe\x98\x83\xb5\xab\xec\xf0\xbe\x0b\x4a\x87\x55\x85\x4f\x72\xb7\x6e\xe5\x43\xc7\x80\xe1\x99\x86\x91\xfc\xc0\x71\x76\x8f\xbe\x0b\xaa\x69\x7e\x51\x02\xf4\xc4\x1f\xb2\xf4\xc1\x0f\xf6\xa5\xe5\xaa\x77\xf9\xfb\xc4\x5d\x12\xa7\x7b\x7b\xbb\x9c\xbf\xcf\xe8\xa4\x84\xf1\x3e\xa8\xc0\x1f\x41\xd8\x65\xef\x0d\x53\xb5\xa0\xd1\x91\xee\xfb\x1e\x7d\x0f\x75\x46\xc3\x61\x80\xa2\x7e\x2f\x18\x54\x0e\xe4\x7e\x57\x78\xe8\x00\x51\x9b\xd7\x20\xd8\x1b\xf3\x9d\x61\xeb\xac\xbe\x03\xa8\xb7\x65\xc9\x4b\x14\x3e\x9d\x4e\x33\xef\x84\xb0\xc8\x2e\xd1\xb2\x67\x00\x6f\xb6\x32\xaf\xb2\x95\x09\x03\x03\xb2\x27\x7d\xa8\x86\x62\xcf\xc9\xa2\xde\xe2\xaa\x35\x9e\xda\x2f\xad\xa5\xe7\xe2\xc8\x36\xe5\xfa\x69\xd9\x1f\x26\xa9\xc5\xbd\x6f\xdf\x57\x7b\x34\x2f\xfb\x83\x82\xed\x99\xf2\xde\x33\x25\x7b\x06\xaf\x16\x3f\xc9\x9f\xc0\x4f\xf2\xa7\xe5\x7c\xe1\x44\xe5\xba\xda\x73\xaf\x53\x67\xcf\x5a\xbd\xc5\xbd\x76\x2f\x07\x1a\xf6\x72\x07\x8a\xa3\xb5\xa7\x7a\x78\x8b\xae\x13\xf3\xce\xf6\x36\xe0\xdb\x63\x0f\xd5\xe1\xb1\x87\x9a\xfd\x04\xb9\x0f\x95\x11\xb6\x9a\xa0\xb7\xd0\xdc\xdf\x9b\xf6\x1a\x93\x5e\xa0\xf6\xb7\xbf\x94\x33\xd9\x06\x17\x0f\x81\xdf\x40\x29\x3e\xc7\x86\x52\x0d\xec\x20\x99\x5f\x29\x7b\xb1\xb7\xe8\x7a\x71\x33\x32\x32\xf3\x21\xe2\x89\xd1\xfb\xd5\x50\x3e\x6e\x0c\x81\x95\x4b\xd0\x8f\x82\xbf\xf7\xbe\x03\xa0\x4a\x90\x13\x3a\x40\x96\x2c\x66\x74\x09\x8a\x43\xc9\x5f\xb6\xe1\x3a\x9e\xf5\xe7\x41\x8a\xe3\x91\x92\x01\x03\x20\xc8\xc3\xe5\x7e\x94\xb6\x76\x53\xfd\xac\xb9\xf3\x6a\x10\xb4\xc4\xef\x97\xe7\x4f\xc3\xcc\x09\xd4\x81\x8f\xa3\x7d\x51\x5d\x06\xe5\x65\x1e\x5e\x98\xf0\x89\x0f\x3b\xdd\x2d\x58\xed\x18\x94\x47\xe3\xe1\x61\xfd\x62\xea\xb5\xe3\xca\x7d\xa2\xa5\x8f\x22\x37\x5f\x18\x50\x2d\x77\x40\x7e\x4e\x8f\xe5\x49\x50\xf4\x9d\x36\xd0\x20\x36\x07\xb6\x34\xf9\xf0\x1c\x91\x49\x31\x32\x47\xe4\xde\x1c\x91\xcf\xd0\xd5\xc2\xf8\x1b\x46\x97\x73\xf9\x65\x92\x5f\x2d\xb2\x45\xee\x6f\xb2\x76\x13\xc8\x5f\xba\x04\xb2\x85\x5c\xfa\x46\x9c\x18\x04\x7f\xef\x07\x81\x6f\x6f\x3b\x10\x0a\xcf\xc8\x86\x77\x9e\xbf\xe9\x79\x94\xeb\xff\xaa\xd9\x79\xcd\x13\x74\xb0\x51\x9f\xd9\x20\x7b\x96\x64\x0f\x70\x0b\x03\xb2\x66\x0c\xb4\x93\xff\xa8\xb7\xca\x4f\xd9\xc5\x2e\x1d\xb7\x3f\x6d\xed\xbf\x44\xc7\xbb\xdc\x07\x7d\xf9\x50\x31\xd5\xe7\x15\x53\x0d\x8b\x19\xef\xdc\xce\xbe\xdb\x33\xc0\x8e\x65\x2c\xea\x4b\xcd\xbd\xda\xb8\x7c\x60\x5b\xfd\xcd\x89\x59\x9b\x79\xdd\xf6\x65\x92\x07\x30\x04\xbf\x27\x79\xc0\x42\xf0\x4f\x1f\x10\xfa\xbf\x12\x06\x2f\xfe\x09\xfe\xe2\x3e\xfe\x0b\xfc\x29\xc1\xe4\xe2\x2f\xe0\x6f\x09\xbf\xf8\x13\xf8\x47\x12\xc1\x8b\x3f\x81\x7f\x25\x11\xa3\x17\x7f\xea\xfb\xf1\xcf\x07\xb7\x4d\x7e\x23\xab\x83\xbb\xe5\x87\x77\xcf\xef\x39\xd2\x38\xd4\xab\xa9\x99\x4f\xbb\x74\xd3\x61\xc2\xca\xb4\xbb\x35\xed\xe5\x72\x60\x55\x53\xc5\x76\x56\x09\x70\x93\xd8\x86\x82\x60\x9d\xd8\x56\xe3\xd1\xc9\x2a\x98\xcc\xbe\xf8\xeb\xc4\x89\xf1\xab\x60\x32\xff\xe2\xc5\x24\x04\x6f\xdd\xe3\x17\x3f\xcc\xbf\xf8\x71\x12\x82\xeb\xfa\xcb\xa3\x2f\xd6\x93\x10\xa4\xfe\x8b\x7c\xf4\x85\x9e\x84\xe0\x9d\xff\x92\xd6\x5f\xbe\xf5\x5f\xbe\x9a\x84\xe0\x67\xff\xf4\xcf\x49\x08\x9e\x27\x8b\xc5\x06\x20\xf0\xcf\x25\x58\x6c\x00\x05\xf4\xa2\x7e\x42\x14\xa0\xf6\x39\x82\x20\x82\xfe\x59\x02\x04\xfe\xcb\x7f\x3a\xcc\xfa\xa9\xc6\xac\x9f\x6b\x4c\xf7\x5c\x00\x04\xfe\xe2\x3f\x23\x10\x5d\xd4\x4f\x0c\xb0\xe6\x09\x61\x80\xb0\x7f\xce\x00\x02\x7f\xf2\x9f\x18\xe0\x0b\xf7\x94\x03\x04\xfe\xb6\x04\x8b\x0a\x20\xf0\x0f\xff\xe9\x72\x70\x4f\x06\x20\xf0\xaf\xe5\x72\x68\x2a\xec\xc5\xab\x4d\x50\x86\xcf\xca\x2b\x3d\x97\xf5\xc3\xed\xbc\xa8\x1f\xde\xce\xb3\xfa\xe1\x7a\x5e\xd5\x0f\x79\xfd\x91\xce\xdf\xcd\x4d\xfd\xf8\xed\xfc\xe7\x70\xef\x02\x86\x1f\x83\xa6\xb3\x06\x02\x7e\x27\x83\x83\xe3\x18\x79\x2d\xfb\xea\x0c\xb0\xd9\x65\x1e\x3e\xa9\x86\x36\xf0\x9a\x0b\x14\x65\x18\x8c\x6d\x69\x2c\xf0\x72\x17\xce\xca\xec\xfa\xa6\x0a\x9e\x03\x19\x9e\x6d\x92\x24\x79\x3e\xd8\xa1\x18\xb1\xa5\xe7\x4f\xfe\x05\xb2\x27\xff\xf2\xf7\xc1\x26\x26\x9c\x6f\x1c\x5e\xb0\x49\x9e\x2f\xe4\x93\xe7\x8b\xcd\x25\x5a\x2e\xf0\xf2\xd9\xf3\xc5\xc6\x7d\x3e\x91\x57\x9b\x4b\x34\xdf\xf8\x3b\x09\x41\xe5\xd5\xca\x70\x1e\x14\xbd\x58\x35\x56\x42\x7d\x7e\x19\xf9\x6b\x44\xc3\xe1\xfd\x0d\x49\x52\x5c\x55\xf3\xaa\x89\x9f\x53\x74\xbf\xd9\xd3\xbb\x42\xfd\x94\xba\xa9\x25\x46\xfb\x39\x8a\xf3\x3a\xe8\xf6\x68\x8c\x09\xc3\xf9\x3a\xa8\xb5\xb6\x3f\xfb\x8c\x0e\x95\xe8\xa1\x81\x6b\x1d\x84\x20\x4b\xca\x7a\x83\xb6\x5c\x94\x03\x43\xb0\x4c\x8a\x67\x59\xb7\xcc\x78\xb3\x56\x06\x32\x6f\xce\xca\x1d\xf7\x0b\xf2\xe4\x47\xcf\xb6\x0b\x50\x85\xe1\x55\xe3\xb9\x11\x64\xa0\x98\xa2\x70\xbe\x58\x02\xe9\xde\x75\x9a\x62\xde\x56\xe5\xd8\x96\xdc\x0b\xde\xed\xee\xc7\xeb\xf9\xca\x73\x30\x7b\xa0\x53\x0d\x7c\xf6\xd6\x9d\x55\x3b\x30\xbe\x22\x23\xb6\x6c\x57\xaf\x75\xf0\xb5\x17\x45\xc3\xb9\x75\xf9\x9d\x14\xdb\x2d\x18\xe5\x43\xae\x12\x9e\x8d\xe6\xa3\xaa\x9d\x09\x5e\xce\x5e\x83\x97\x33\x0b\x5e\xce\xfe\x0d\x5e\xce\x24\x78\x39\x4b\xc1\xcb\x99\x06\x2f\x67\xd7\xe0\xe5\x4c\x81\xdf\xbd\xe3\x7a\xdd\xe8\x7e\x5d\xed\xba\x1b\x9b\x08\x40\x37\x88\x0e\xde\xe0\x70\xe9\x8f\x1f\x9f\x2a\xf4\x2d\x78\x39\x7b\x03\x5e\xce\xb6\xe0\xe5\x6c\x05\x5e\xce\x6e\xc1\xcb\x59\x01\x5e\xce\x4a\xf0\x72\x96\x83\xdf\x67\xdb\x4a\x1d\x96\xe9\x72\x9f\xfd\xfd\xb7\xaf\xfb\x32\x0f\xde\xd4\x65\x66\xa3\x72\x8d\xa9\xa3\xcc\x05\x4f\x66\x1f\xd8\xee\xc9\xf5\xf1\xbd\x20\x35\xde\xe4\xff\x99\x4c\xcd\xce\x49\x8c\x26\xc9\x4c\x30\x41\x96\xf3\x94\x58\xcb\x2d\x34\x58\x49\x88\x95\x66\x98\x63\x11\x13\xc6\x53\x2d\x14\x65\x24\x35\x11\xe7\x0a\x73\xeb\xfe\x52\x95\x6a\x8c\x11\x4f\x8d\xb2\x93\x10\xc8\x3a\x97\x28\x8e\x52\x1e\x53\x4c\x89\x8c\x58\xca\x8c\xb2\xb1\x8a\x8d\x36\x2c\xe2\x71\x14\x0b\x25\x31\xc5\x29\x55\x96\xa5\xca\xe8\x34\x56\x42\x31\x1d\xa1\x54\xc7\x26\x8a\x0d\x4f\x25\xc5\x86\xab\x34\x26\x82\x44\x2a\x8a\xa5\x26\x31\x91\x9a\x31\xc4\x52\xc3\x63\x16\x2b\x9e\x12\xc4\x23\x49\x29\x8a\x89\x32\x4c\xa7\x5a\x9b\xd8\x68\x36\x09\xc1\xa6\xa9\x01\x12\x38\xd5\x2c\x95\x46\xb3\xd8\x28\x69\x90\x62\x3a\x35\xd6\x30\x4a\xa1\xb6\x5a\xe8\x48\x59\x2d\x0d\x4b\xad\xd6\x50\xe2\x08\xc9\x88\x12\x4e\x14\xe1\x4c\x22\x1d\xc7\xa9\xe2\x26\x56\x90\x53\x96\xa6\x28\x36\xb1\x54\xc2\xb5\x55\x2b\x2d\xb5\x34\x29\x8b\xdc\x5f\xcc\xdc\x5f\xaa\xdd\x9f\x8e\xdd\xdf\x24\x04\xdb\x21\x25\xa5\x51\xdc\x88\x9a\x9e\xd6\xa6\x29\x17\x35\x55\x63\xa1\xad\x90\x35\x6d\xad\x8d\x45\xcc\x6a\x0a\x2b\x9a\x42\x4d\x6b\x3a\x2b\x12\xab\x98\xd4\xd4\xb6\x3c\x65\xba\xa1\xb9\xe2\xee\xaf\xa6\xbc\x2b\x5a\xe8\x9a\xfe\xb1\xd1\xd2\xd0\x49\x08\x56\xa6\x8e\x8d\xaa\xba\x98\x83\x77\xb3\x34\x6c\x79\xe2\xca\xb8\x2f\x11\x84\x60\x46\x01\xec\x76\xfd\xea\xd7\x97\x98\xf8\xf7\xc8\x29\xea\x0f\x24\xbf\x44\x2e\x3d\xa7\x60\x16\xd1\x83\x2c\x04\x04\x68\x46\xc1\x4c\x84\x21\xb8\x79\x20\x0b\xcc\x3e\x25\x87\x75\x97\x43\xfd\x5b\x08\xf4\xfe\x78\x0f\xcc\x33\x78\x7f\x6f\xbe\x44\xe1\xf9\x79\x60\x2e\x0f\xdc\xfa\xce\x6a\x43\x51\xb7\x94\x99\xcb\x19\xed\x64\xf1\xb5\x99\xdd\x24\x11\x83\x17\xc6\x37\x67\x6d\x66\x9b\x04\xcd\xe8\x25\x9a\xd1\x8b\xca\x7d\x5d\x25\x33\x71\x39\x8b\xfd\x97\xe9\x64\xe8\xef\x7a\x6b\x86\x3b\x7b\x8d\x07\xf1\xa1\x9d\x6a\x70\x42\x69\x31\xe6\x42\x55\x5d\x22\x30\xa8\x6e\x7e\x51\x85\x61\xd8\x84\xb7\xbd\x33\xc9\xad\x09\xdc\x40\x22\x04\x22\x4a\x08\x81\x98\x32\x42\x21\xa1\x9c\x50\x48\x69\x4c\x18\xe4\x54\x12\x06\x05\x55\x84\x41\x49\x35\x61\x30\xa5\x86\x70\xa8\x19\x24\x1c\x1a\x86\x08\x47\x90\x45\x84\x23\xc4\x08\xe1\x28\x62\x94\x08\x44\x18\x27\x02\x31\x26\x88\x40\x9c\xc5\x44\x20\xc1\x24\x11\x48\x32\x45\x04\x4a\x99\x26\x02\x29\x66\x88\x40\x9a\x59\x22\x90\xe5\x90\x08\x0c\x39\x22\x02\x23\x1e\x11\x81\x23\x4e\x88\xc0\x84\x53\x22\x30\xe5\x8c\x08\xcc\x38\x27\x02\x0b\x2e\x88\xc0\x31\x8f\x09\xc7\x92\x4b\xc2\xb1\xf2\x50\xf3\x94\x70\x37\xa7\x09\xc7\x96\x6b\xc2\x22\xc8\x0d\x61\x11\xf6\x30\xe2\x96\xb0\x88\x08\x48\x68\x44\x05\x22\x34\xe2\x1e\x0a\x81\x09\x89\x62\x11\x11\x12\x49\x0f\x53\x41\x48\x14\x69\x0f\x8d\xa0\x04\x47\xd6\x41\x02\x05\x23\x98\x20\xc1\x08\x22\x58\x70\x82\x08\x11\x9c\x40\x42\x85\x20\x90\x30\x21\x22\x4b\xb8\x87\x42\xc4\x91\x21\xb1\x87\xd2\x43\x25\x64\xa4\x89\xf6\xd0\x08\x19\x29\x62\x1d\xa4\x50\xa4\x51\x4a\x91\x87\x58\xa4\x91\xa4\x91\x87\x44\xa8\x28\xa6\xd4\x43\x26\x54\x24\xa8\xf0\x30\x16\x2a\xe2\x54\x7a\x98\x0a\x1d\x31\xaa\x3c\x74\xac\x86\x52\xe3\xa1\x15\x3a\x72\x1d\xe6\x20\x12\x3a\x8a\x18\xf6\x30\x12\x3a\xc2\x8c\x08\x13\x61\x46\x85\x89\x5c\xe7\x38\xc8\x3d\x14\xc2\x44\x90\xc5\x1e\x4a\x61\xb0\x65\xa9\x87\x4a\x18\x6c\x98\xf6\xd0\x78\x68\x85\xc1\x9a\x43\x0f\x91\x30\x58\x35\x10\x7b\x18\x09\x83\x53\x4e\x3c\xa4\xc2\x60\xc9\x99\x87\xdc\x43\x21\x8c\xeb\x39\x0f\xa5\x87\xae\x14\xc1\x95\x87\xae\x14\xce\x8d\x87\xae\x14\x2e\x5c\x29\x4c\x20\x0f\x71\x07\xa9\x88\x3c\x24\x1e\xba\x52\x88\x60\x1e\xba\x52\x22\x21\x3c\x8c\x3d\x94\x42\x63\x2c\x52\x0f\x95\x87\x5a\x68\x8c\x84\xf1\xd0\x3a\x18\x43\x0f\x91\x50\x18\xc6\x78\x00\x23\xa1\x90\x8d\x89\x87\x54\xa4\xc8\xc6\xcc\x43\xee\xa1\xf0\x30\x16\x12\xd9\x58\x0a\x89\x4c\x9c\x7a\xa8\x44\x8c\x4c\xac\x45\x8c\x6c\x6c\x3c\xb4\x42\x20\x2b\xa1\x87\xa8\x81\x1c\x59\x89\x05\xc7\x50\x46\x82\x61\x28\x89\x60\x18\x49\x2a\x28\x46\x92\x09\x8a\x1d\xb1\x1c\x14\x82\xe0\x48\xc6\x22\xc2\x44\x4a\x11\x61\x2a\x53\x81\x31\x95\x4a\x60\xcc\xa4\x16\x08\x73\x0f\x85\x34\x02\xe2\x58\x5a\x6e\xb1\x4c\x21\xb7\x58\xa5\x88\x1b\xac\x53\xcc\x35\x36\x69\xe4\xf8\x7b\x4a\xb8\x8a\x50\x4a\x79\x1a\xe1\x94\x71\x19\x91\x94\xf1\x38\xa2\x29\xe7\x71\xc4\x53\xc1\x45\x24\xd2\x98\xf3\x48\xa6\x92\xb3\x28\x4d\x53\x4e\x23\x9d\x2a\x4e\x22\x9b\x2a\x1e\x11\x98\x6a\x8e\x09\x4e\x0d\x47\x84\xa4\x6e\xce\x32\x05\xdd\xfc\x55\x88\x19\x22\x15\x62\x9a\x28\x85\x99\x22\x46\x45\x2c\xa5\x50\x11\x26\x29\x56\x94\xc5\x94\x28\xca\x04\x65\x8a\x31\x4e\x85\xe2\x8c\xba\x46\x30\x42\x95\x12\x2c\xa2\x46\xc5\x0c\x33\xa8\x24\x83\x2c\x52\x29\xb5\x8c\xaa\x94\x1a\xc6\x95\xa2\x8a\xc5\x4a\xd3\x94\x29\xa5\xa9\x64\x46\x19\x2a\x38\x54\x96\x72\x1e\x69\x48\x19\xa7\x1a\x52\xc2\xb9\x46\x34\xe2\x52\x23\x8a\xb8\xd2\x98\x42\x6e\x75\x44\x8c\x40\x3a\x22\x5a\x10\x4d\x48\x2a\x98\xa6\x6e\x5e\x6a\x4a\x84\x48\x35\x23\x4c\x18\xcd\x08\x8d\xa1\xe6\x24\x8a\x23\xcd\x09\x8a\xa9\x16\x04\xc6\x42\x8b\xc8\xc4\xa9\x8e\x23\x15\x6b\x1d\x47\xa9\x84\x5a\x46\xb1\xc4\x5a\x46\x5c\x52\x9d\x46\x4c\x0a\x9d\x46\x44\x4a\xad\x22\x2c\xb5\x56\x11\x4c\xa1\xd6\xd8\xa6\x58\x6b\xac\x53\xaa\x0d\x4e\x53\xa1\x0d\x8e\x53\xa9\x0d\x16\xa9\xd6\x16\x33\x05\xb5\xc5\x54\x61\x6d\x71\xa4\xa8\x81\x18\x29\x61\x20\x86\x4e\x7c\x40\x56\x69\x83\x90\xd6\xd0\x20\xa4\x34\x36\x18\xa5\x9a\x1a\x8c\xa4\x9b\x1a\x28\xd6\xd2\x44\x28\xd6\xda\x44\x48\x68\xeb\xa0\xc1\x86\x20\x61\xa8\x21\x28\x36\xdc\x43\x69\x28\x92\x8e\x48\xc8\x89\x22\x14\x29\x8b\x0c\x45\xda\x12\xc3\x90\xb1\xcc\x30\x0c\xad\x30\x0c\x23\x9b\x1a\x8e\x23\xab\x0d\xc7\x74\x12\x86\xe0\x6d\xb7\x1a\x40\xf7\x8f\x40\x04\x21\xa4\x10\x41\x04\x99\x87\x02\x62\x88\x60\x0c\x31\xc4\x30\xf5\x50\xc3\x08\x46\xd0\x3a\x88\x30\x24\x90\x20\x02\x29\x24\x88\x41\x06\x29\x12\x1e\x4a\xc8\x21\x43\x0a\x0a\xc8\x91\x81\x31\xe4\x18\x42\x09\x05\x76\x79\xc4\x98\x40\x05\x63\xcc\xa0\x93\x8f\x62\x68\x60\x8a\x53\x04\x61\x8a\x35\x42\x50\x61\x8b\x30\xd4\x11\x42\x11\xd4\x91\xcb\xdb\x44\x0c\x51\x68\x22\x81\x18\xb4\x51\x8a\x04\xb4\x91\x46\x31\x82\x91\x45\x12\x41\x82\x91\x42\x90\x10\xa4\x91\x5b\x95\x0c\x42\x24\xc6\x10\x21\x92\x62\x84\x10\x31\x18\x23\x44\x21\x26\x08\xd3\x08\x53\x84\x29\xc5\x1c\x61\x2a\x70\x8c\x10\x95\x58\x22\x44\x15\x56\x08\x51\xeb\xca\x67\x08\x5b\x84\x58\x14\x21\x84\x18\x8d\x22\x04\x19\x8f\x08\x82\x2c\x8e\x18\x82\x2c\x8d\x04\x82\x4c\x45\x31\xb4\xcc\x44\x29\xb4\x1c\x46\x1a\x5a\x8e\x22\x0b\x2d\xc7\x04\x42\xcb\x09\xc1\xd0\x72\x4a\x08\xb4\x9c\x11\x8a\x20\xe7\x6e\xb5\xe4\x82\xc4\x1e\x4a\x04\x79\x4c\x14\x42\x5c\x12\x83\x90\x93\x8a\x11\xe6\x29\x45\x08\x73\x45\x31\x8a\xb8\xa2\x04\x45\x5c\x53\xb7\xcc\x6a\xca\x11\xe5\x86\xc6\x1e\x4a\xc4\xb8\xa1\x0a\x31\x6e\xa9\x46\x9c\x5b\x6a\x91\xe0\x96\x41\x24\x04\x64\x18\xc5\x02\x32\x82\xa4\x80\x8c\x7a\xc8\x51\x2a\x20\x13\x48\x09\xc4\xa4\x87\x29\xd2\x02\x31\xed\xa1\x41\x46\x20\x0e\x91\x15\x88\x63\x0f\x23\x0c\x05\xe2\x14\x23\xb7\x80\x7b\x28\x30\x16\x88\xc7\x18\x0b\xcc\x53\x1c\x09\xcc\x95\x87\x8e\xf3\x62\x01\x1d\x21\x85\x23\x27\x12\x91\xe7\xda\xc4\x43\x86\xb9\x40\x42\x78\x18\x63\x21\x90\x48\x71\x2c\x1c\xb7\x8d\x3d\x67\x97\x02\xc5\xd0\x43\x84\x53\x81\xe2\x08\xa7\x02\xc6\x04\x2b\x01\x63\xe6\xa1\xc0\x5a\xc0\x38\xf6\x30\xc5\x86\xdb\x58\x79\x68\xb0\xe5\x56\x42\x0f\x91\x5b\xed\x65\xe4\x21\x8d\x10\x37\x92\x45\x88\x6b\xc7\x32\xb9\x96\x32\x8a\xb8\x96\x69\x14\x71\x25\x75\x44\xb8\x92\x26\x22\x3c\x4d\x61\x44\x79\x9a\x62\x0f\xa3\x88\x71\x99\x52\x0f\x79\xc4\x79\x9c\x0a\x0f\x65\x24\xb8\x48\x55\xe4\xd8\xbe\x8e\x62\xce\x53\x1b\x49\xce\x15\x8c\x24\x67\x0a\x47\x29\xa7\x8a\x44\x8a\x53\x45\x23\xc5\x89\xe2\x91\xe6\x91\x12\x91\xe1\x91\x92\x91\xe1\x58\xa9\xc8\x72\xa4\x34\x81\x1c\x29\x4b\x20\x87\xda\x4d\x11\xab\x31\xc1\xcc\xf1\xa8\x88\x19\x4d\x09\x61\xda\xf1\x22\xa6\xb4\xf0\x30\x26\xcc\x49\xfd\x4e\x57\xd0\x8a\x08\x16\x6b\x43\x62\x26\xb4\x25\x92\x09\x03\x89\x62\x8e\xf0\x9a\x31\x13\x11\xc3\xa8\x21\xc4\x32\x62\x28\x85\x8c\x18\x4e\x31\x73\xc2\x4b\xc4\xb0\x89\x29\x61\xd8\x48\xca\x18\x32\x29\xe5\x0c\x1a\x45\x05\x83\x46\x53\x49\xad\x31\x34\xa5\xc6\x58\xaa\xa9\xb1\x90\x5a\x6a\x2c\x62\x90\x3a\x46\x85\x3d\x24\x54\xd9\x88\x51\xaa\x2c\x61\xdc\xc3\x98\x2a\x4b\x99\xd7\xac\x98\xf2\xd0\x50\x65\x39\x87\x1e\x62\xaa\xac\xe0\xc4\x43\x46\x95\x5b\x2c\xa9\xb6\x31\x8f\x3d\x4c\xa9\xb6\x92\xbb\xb2\x24\x77\x65\x49\x81\xa8\xb5\xa9\x88\x3c\xa4\x0c\xda\x54\x70\x86\xac\x12\xb1\x87\x92\x61\xeb\x14\xb7\xc8\x2a\x61\x18\xb1\x2a\x86\x8c\x5a\x1d\x63\xc6\xac\x23\x10\xb7\x3a\x66\x4c\x58\x1d\x0b\x16\x5b\x1d\x4b\x26\xad\x8e\x53\x96\x5a\x13\x6b\xa6\xac\x89\x2d\xd3\xd6\x48\xc4\x8c\x35\x32\x62\xd6\x1a\x49\x39\xb2\x46\x72\x8e\xad\x91\x31\x8f\xac\x91\x92\x13\x6b\xa4\xe2\xcc\x1a\x69\x38\xb7\x26\x85\x5c\x58\x93\x62\x2e\xad\x49\x09\x4f\xad\x49\x19\x57\xd6\xa4\x9c\x1b\x6b\xd2\x98\x5b\x6b\xd2\x54\x20\x6b\x52\x2d\xb0\x35\xa9\x15\xc4\x1a\x85\x04\xb5\x46\x61\xc1\xad\x51\x44\x08\x6b\x14\x13\xd2\x1a\x25\x84\xb2\x46\x49\xc7\xb2\x95\x12\xd6\x1a\xa5\x63\x68\x9d\x32\x85\xad\xd1\x28\x26\xd6\xe8\x28\xa6\xd6\x68\x1a\x73\x6b\x34\x8f\x63\x6b\xb4\x88\xa5\xd5\x5a\xc6\xca\x6a\xad\x62\x63\xb5\x36\x12\x5a\x6d\xa0\x44\x56\x1b\x2c\x1d\xe7\x8e\x24\xb5\xda\x50\xc9\x1d\x17\x97\xb1\xd5\x26\x96\xd2\x6a\x93\x4a\x65\x95\xd3\x48\xad\x32\x26\x85\x56\x59\x98\x62\xab\x2c\x4e\x89\x55\x96\xa4\xcc\x3a\xbd\x58\x58\x65\x79\x1a\x5b\x65\xe3\x34\xb5\xca\xa6\xa9\xb6\xca\xea\xd4\xba\xd5\xe0\xfa\xd3\x56\x03\xe9\xd7\x01\xe5\xa1\x81\x11\xc4\xc8\xe1\xd6\xab\x41\xd4\xac\x06\x1c\x32\x48\x50\x0c\x39\xa4\x28\x85\x02\x52\xa4\x61\x0c\x19\xb2\x50\x42\xee\xd7\x01\xee\xd7\x01\xe1\xd7\x01\xe1\xd7\x81\xd8\xaf\x03\xb1\x5f\x07\x64\x04\x91\x13\x94\x30\x22\x30\x8d\x08\xa2\x30\x8d\x38\x62\x30\x8d\x62\x24\xa0\x8a\x14\x8a\xa1\x8a\x0c\x4a\xa1\x22\x08\x29\xa8\x48\x84\x0c\x54\x84\x22\x0b\x95\xd3\x27\xa0\x22\x12\x47\x50\x11\xe5\xca\x21\xd6\x09\x1a\x14\x61\x01\x53\x1a\xe1\x18\xa6\x94\xe2\x14\xa6\x94\x63\x0d\x53\x1a\x63\x0b\x25\x4d\x23\x04\x25\x55\x11\x86\x92\x9a\x88\x40\x49\x6d\xc4\x60\xcc\x50\xe4\xd9\x52\x14\xc3\x98\x45\x51\x0a\x63\x46\x22\x0d\x63\x46\x23\x03\x63\xc6\x08\x84\x92\x71\x82\xa1\x64\x82\x10\x0f\x29\x94\x2c\x26\x1c\xa6\x4c\x92\xd8\x43\x09\x15\x4b\x89\xf2\x50\x43\xcd\x14\xb1\x0e\x52\x04\x0d\x53\x14\x43\xe3\xc4\x14\x68\x99\xa6\xd4\x43\xa7\x5f\x39\xae\xef\xa0\x44\xc8\xcd\x37\x84\x99\xa1\xda\x43\x8b\x22\x66\x18\xf2\x10\x23\xc2\x0c\x23\x88\x32\xc3\xa8\x87\x1c\x31\x66\x58\xec\xa1\x44\x9c\x19\xa6\x90\x60\x86\x69\x0f\x2d\x8a\x99\xe1\xc8\x43\x27\x78\x1a\x4e\x3c\xa4\x28\x65\x86\x73\xa4\x98\xe6\xc2\x43\x89\x34\xd3\x5c\x79\xa8\x91\x61\x9a\x5b\x64\x98\x12\x10\x39\x1d\x01\x63\xc8\x94\x20\x18\xb2\xd4\x49\xb0\x2c\x15\xdc\x43\x2f\xa4\x0a\xe9\xa1\xc2\x11\x8b\x85\xf6\xd0\x62\xc2\xe2\xd8\x29\x9b\x22\xc6\x1e\x46\x98\x31\x1e\x53\x0f\x39\xe6\x8c\xc5\xc2\x43\x89\x05\xa3\x71\x8a\x63\x46\x62\xed\xa1\xc5\x92\x45\x12\x7a\x88\x71\xca\xb0\x8c\xb0\x62\xc8\x89\x99\x0c\x4a\x86\x35\x83\x52\x60\x43\xad\x8c\xb1\xa1\x46\xa6\xd8\x52\x23\x75\x04\xa9\x13\x9f\x20\x55\x29\x8c\x10\x4d\x53\xe4\x85\xe9\xc8\x43\x12\x45\x34\x4e\x59\x44\xa8\x48\x79\x44\x29\x4f\xe3\x88\x52\x96\x4a\xc7\xfa\x52\xa7\x6d\x91\x54\x47\x82\x46\xa9\x8d\x62\x8a\x1d\xef\xa7\x48\xa1\x48\x52\xa8\xa2\xc8\x4d\x2a\x12\x39\x99\x97\x39\x2d\x4f\x71\xa7\xf1\x29\xa7\x09\xa6\x4a\x12\x48\xa4\x4a\x09\x22\xb1\x52\x04\x13\xa1\x0c\x71\x0b\x90\x25\x8e\xe1\x43\x42\x09\xd5\x98\x30\x42\xdc\xb2\x44\x22\x4d\x88\x20\x58\x53\x22\x09\xd2\x9c\xa4\x91\xd5\x82\xa8\xc8\xe8\x98\xe8\x48\x6b\x49\x4c\xa4\x74\x4a\x61\x94\x6a\x4d\x51\x24\xb5\xa1\x38\x12\xda\xd2\x28\xe2\x06\x52\x1a\x31\x83\xa8\x13\xa7\x31\xe5\x11\x31\x11\x8d\xa3\xc8\x10\x2a\x23\x64\x28\x55\x11\x34\x8c\x6a\x6c\x0d\xa7\x06\x1b\x23\x18\xc4\xda\xc4\x0c\xe1\xd4\x2d\x97\x58\x9a\x94\x11\x1c\x9b\x94\x31\x2c\x8c\x62\x1c\x33\xa3\x59\x8c\xa9\x31\x4c\x62\x62\xac\x5b\xee\x9c\x08\x89\x91\x85\xcc\x62\x68\x11\x47\xc8\x5a\xc4\x23\xa4\x2d\xe6\x04\x29\x1b\x71\x86\x52\xeb\x94\xeb\xd8\x12\x1e\x23\x61\x29\x4f\x11\xb7\xd4\x89\xe7\x96\x71\x83\x88\x65\x02\xa2\xc8\x72\x81\x11\xb6\x5c\x10\x04\xad\x10\x14\x5a\x2b\x04\x87\xc6\x0a\x11\x43\x65\x63\x91\xc2\xd4\xc6\x42\x41\x69\x63\x61\x60\x6c\x65\x0c\xa1\x70\x9d\x0a\xb9\x95\x31\x81\xdc\xa6\x31\x83\xcc\xa6\x31\xf7\x30\xf6\x30\xf5\x50\x43\x6e\x55\x6c\x1d\x94\x08\x0a\xab\x64\x04\x63\xab\x24\x85\xd2\x3a\x15\x43\x59\x25\x05\xd4\x56\x49\x09\xad\x55\x52\x39\xd1\x5b\x1a\x84\xad\x4a\x21\x22\x56\xa5\x18\x31\xeb\xba\x4d\xd8\x34\x65\x48\x5a\xc7\xee\xb5\x4d\x53\x89\xac\x4d\x53\xe5\xa4\xe7\xd4\xe0\xc8\x4a\x05\x31\xb3\x52\x61\x2c\xac\x54\x04\x4b\x2b\x15\xc3\xda\xc6\x8a\x63\x6b\x63\x15\x47\xd8\xc6\x2a\x8d\xa8\x15\x4a\x47\xdc\x0a\x65\x23\x69\xb9\x46\x91\xb6\x5c\x47\xf5\x34\x27\x91\x65\x9a\x13\x66\xa9\x8e\x49\x6c\xa9\x4e\x89\xb2\x44\x6b\x62\x2d\x71\x7d\x6b\x89\xeb\x55\x1b\x99\x88\x4a\x1b\x19\xea\x56\x66\xc3\x18\xb2\xd8\x08\x46\x2d\x36\x92\xc5\x16\x19\xc5\xb4\x45\x46\x73\x64\x91\xb1\x9c\x5a\x64\x11\x8f\x2d\xb6\x98\x6b\x8b\x2d\x11\xd8\x46\x96\x0a\x66\x23\xeb\xd6\x25\x62\x85\x30\x96\xda\x38\xc6\x96\x59\x19\x33\x2b\x6c\x1a\x4b\x1b\x5b\x15\x6b\x2b\xad\x96\xc8\x2a\x6b\x25\x71\xab\x41\xda\xaf\x06\x1a\x0a\xc1\x11\x84\x5c\x08\x27\x74\x89\x18\x31\xc8\x85\x44\x31\x64\x42\xa1\x14\x32\xa1\x91\x86\x4e\x1f\x87\x90\x09\xeb\x58\x43\x0c\x31\x81\x2c\x46\x98\x41\x1a\x3b\xbe\x4b\x63\x8c\x25\xa4\x71\x84\x15\xa4\x31\xc1\x06\xd2\x98\x62\x0b\x69\xcc\x22\x04\x69\xcc\xa3\xc8\x43\x0a\x49\x2c\x22\x0e\x49\x1c\x47\x02\x92\x58\x46\xd2\x43\x05\x49\x9c\x46\x06\x92\x58\x45\xd6\x41\x82\x20\x89\x35\x89\x60\x14\x1b\x42\x3c\x64\x30\x8a\x2d\x11\x1e\xc6\xd0\x25\x4c\x61\x24\x11\x51\x10\x4b\x44\x0c\xc4\x12\x53\xe8\x21\x82\x58\x46\x34\xf2\x90\x42\x2c\x09\x65\x10\x49\x42\x85\x87\x31\x44\x92\xd2\xd4\x43\x05\x91\x64\xd4\x38\xc8\xa0\x87\x08\x42\xa7\x2a\x7b\x48\x3c\x64\x1e\x72\x08\xa5\x60\xb1\x87\xd2\x43\xe5\xa1\xf1\xd0\x3a\xe8\x88\x28\x05\xc7\x10\x49\xc1\x89\x87\xd4\x43\xee\xa1\xf0\xd0\x31\x3a\xc1\x53\x0f\x35\x8c\xa4\xe0\xc6\x41\x01\x21\x91\x42\x20\x48\x24\x17\x11\xa4\x92\x0b\xe2\x21\x83\x4c\x32\xc1\x21\x97\x4c\x08\x28\x24\x13\x12\xc6\x92\x8a\x14\x4a\x49\x85\x86\xa9\xa4\xc2\x40\x25\x89\xb0\x50\x4b\xa7\x86\x18\x19\xc5\x18\x5a\x19\xc5\x04\x39\x25\x8c\x22\x24\x91\x5b\xe8\x24\x8a\x05\x22\x12\xc6\x31\xa2\xb1\x8d\x25\x62\xb1\x8d\x15\xe2\xb1\x89\x35\x12\xb1\x8e\x0d\x8a\x63\x2d\x21\x92\xb1\x92\x08\xa5\x71\x2a\x31\xd2\xb1\x74\xcc\x26\x96\x92\x22\x1b\xc7\x92\x61\x18\x0b\xc9\x31\x8a\xb9\x14\x18\xc7\x4c\x4a\x1c\xc5\x54\xa6\x98\xc4\x44\x2a\xcc\x62\x22\x35\xe6\x71\x24\x0d\x16\x31\x4e\x21\x8e\x63\x94\x22\x2c\x63\x98\x62\x9c\x0a\x9b\x46\x58\x09\x93\x12\x6c\x84\x4e\x29\xb6\x42\xa5\x2c\x82\x22\x4d\x79\x84\x84\x4c\x45\x84\x85\x93\xd1\x23\x21\xd2\x34\x72\x6a\xbd\x8a\xa8\xe0\xa9\x8e\xb8\x60\xa9\x89\x84\xa0\x8e\x67\x0b\xe2\x78\xb6\x88\x14\x8a\x52\x81\x15\x8e\x94\x40\x2a\x8a\xb4\x70\xc2\x82\xe1\x56\x51\x02\xb9\x51\x8c\x20\xae\x15\x27\x98\x2b\x25\x48\xc4\x53\x15\x13\xc2\xa5\x92\x84\x72\xc7\xc5\x19\x77\x5c\x9c\x73\xa1\x14\x89\x39\x57\x9a\x38\x1d\xc0\x90\xd4\x8b\xc6\x8a\x13\x0d\x89\xe6\x91\x46\xc4\x70\xac\x31\xb1\x1c\xe9\x88\x22\x8e\x34\xa1\x98\x43\xed\x18\xb4\xd5\x94\x12\xc7\x58\x29\x65\x5a\x73\xca\x9c\xc4\x4f\x39\x4b\x75\x4c\x05\x93\x5a\x52\xe9\x61\xca\x62\x9d\x52\xc5\x84\x56\x54\x33\xae\x35\x35\x8c\x69\x43\x2d\xa3\xda\x30\xc4\x88\xb6\xcc\x49\xf9\x90\x45\x2c\x32\x88\x39\x29\x1f\x33\xca\x90\xc1\x8c\x31\xa7\x2a\x3b\x71\xd4\xc9\xeb\xc6\x50\x26\xa9\x36\x4e\x6a\xd7\xc6\x4b\xed\x86\x33\x43\x53\xc3\x99\xa5\xd2\x08\x0e\x69\x6c\x62\x8e\xa8\x30\x31\xc7\x94\x1b\xc9\x09\xe5\x26\xe5\x94\x32\x93\x72\x46\xa9\x51\x9c\x53\xe2\x44\x53\x1a\x19\xcd\x25\xc5\xc6\x38\x3d\xd5\x58\xae\x3c\x34\x14\x3a\x76\x4b\xac\x85\x02\x12\x63\x91\x40\x44\x5b\x24\x22\xa2\x2c\x16\x84\xa4\x36\x12\xd4\x43\x4e\xa4\x25\x42\x10\x37\x39\x63\x22\x2c\x15\x29\xe1\x96\x0a\x45\x98\x65\x42\x13\x6a\x99\xb0\x84\x58\x1e\x43\x0f\x11\x89\x2c\x8f\x23\x82\xad\x88\x09\x41\x56\xc4\x4e\x38\x8a\x9d\xe8\x6e\xe3\x58\x44\xc6\x0d\xb3\xc8\x58\x19\xa7\x91\xb6\x32\x56\x91\xb2\x32\x36\x51\x6a\xd3\xd8\xf1\xda\x54\xa2\x28\xb6\xa9\xc4\x91\x5f\x07\x3c\xa4\x91\x5b\x19\x58\xc4\xdc\x3a\x10\x51\xab\x64\x1c\x11\xeb\x35\x44\xab\xa5\xf2\xd0\x44\xd8\x6a\x69\x23\x64\x75\x8a\x22\x68\x75\x8a\xb1\xb5\x3a\x25\x1e\x52\xec\x34\x01\x8e\xb5\x35\x6e\x40\x59\x93\x4a\x0f\x53\xec\xb4\x05\x8d\x9d\xe6\x60\x1c\x54\x10\xc7\x56\x2b\xec\x61\x84\x85\xd5\x8a\x62\x6e\xb5\x62\x1e\x0a\x0f\xa5\x53\x04\x55\x8a\x99\x55\x4a\x63\x6a\x95\x32\x0e\x6a\xe8\x21\xc6\xd4\xa6\x3a\xc2\xc4\xa6\x9a\x7a\xc8\x31\xb1\x52\x0b\x0f\x25\x26\x36\xd6\xca\x43\x97\x56\x68\xeb\xa0\x41\x98\x5a\x6e\xb0\x87\x04\x53\x6f\xf9\x61\x96\x19\x81\x99\xa5\x26\xf6\x30\xc5\xdc\x12\xa3\x31\xb7\x91\x31\x0e\x5a\x88\xb9\x5b\x31\x30\xb7\xc8\x3a\xf5\x14\x59\x8a\x69\x6d\xd0\xb0\xd0\xc6\x18\x4d\xc2\x81\xfb\xf8\xab\xc1\x0e\x05\xf4\x5e\x5f\xe5\xde\x41\xce\x41\x40\x8e\x20\xbb\xac\xc2\x27\x41\x7e\x59\xf5\xce\x6f\x41\x79\x35\x7e\xea\xbb\x08\xc3\x79\x11\x9e\xf6\xfa\x79\xd8\x19\xae\x0e\x06\x90\x27\x3e\x1c\x00\xc8\xc2\xf9\xa2\x02\x79\xed\x2b\xf3\xe9\xe7\x02\x4b\x7f\x2e\xb0\x8d\x5d\xd1\x9f\x0a\x2c\xca\x4f\x75\x0e\xad\xbc\x53\xd1\x03\x2e\x3a\x9e\x7a\xdd\x4e\xac\xab\x63\x7b\x82\xb6\xf4\x5e\x55\x59\xb8\x6b\x42\x66\x6d\x94\x5c\x99\xaf\x64\xae\xc7\x42\x66\xe9\x3e\xb4\x96\xc7\xfb\xa5\xc8\xf2\xd1\xd8\x5a\xb7\x07\x88\x3f\x68\x93\x57\x59\x75\x37\x86\xfb\xdb\x01\xee\x5f\xb3\xdc\xc8\x72\x0c\xf3\xc7\x43\xcc\xe2\x7a\x0c\xed\xaf\x07\x68\x3f\x97\x3a\xcb\xe5\x6a\x0c\x75\x7d\x58\xcf\x36\x16\xcc\x08\xee\xcd\x51\xe3\xdf\x8d\xa1\xfd\x71\x80\xf6\xe2\x4d\x39\x9a\xdd\xf7\x07\x78\x7f\x6b\x7c\x27\xc7\x70\xbf\x1a\xc5\xfd\x63\x14\xf7\xef\x07\xb8\xbf\xdd\x94\x66\x73\x53\xac\x46\x3b\xf4\xcd\x21\x72\x76\x3b\x9a\x69\x6e\x0e\x10\xff\x5e\xa9\x31\xbc\x72\x0f\xef\xc6\xdc\x9a\xaf\x65\x65\xae\x8b\xf2\x0e\xc1\x31\xfc\xe2\x24\x3e\x86\xe9\x58\x02\xf9\x40\x82\xd1\x1a\x6d\x1e\x48\x30\x86\xbf\x3d\x0c\x1f\x57\x1f\xd0\xfd\x7a\x9b\x9a\x1b\xb3\xca\xde\x7f\x63\xac\xdc\xae\x46\x7b\x54\x8d\x27\xfd\x55\x66\x79\x3a\x3e\x56\xf4\x78\x8a\x97\xb2\xbc\x1d\x43\xb7\x27\xea\x56\x14\xa3\x83\xfb\x66\x1c\xfd\xf7\xac\xcc\x74\xb6\x19\x4b\x71\x37\x9e\xe2\x47\x79\x7d\x2b\xc7\xf0\xdf\x8e\xe3\xff\x90\x5b\x53\xe6\xc5\x58\x8a\xeb\xf1\x14\xbf\xac\xe4\x66\xbc\x88\xf4\x70\xe4\xbd\x30\x6f\xb6\x8e\x99\x8c\x4f\xe8\x57\xe6\xf3\xa2\xfa\x1d\xc4\x89\x6a\x62\x43\x65\xa3\x2e\x28\x3b\x50\x24\x08\xc8\x04\x83\x4d\x12\x81\x6d\x42\xc0\x2a\x41\xe6\x92\xf5\x8b\x90\x1a\x78\xa2\xf8\x50\x86\x3e\x5a\x81\x8f\x7b\x35\xa3\xe1\x74\x02\x60\x38\xe9\x1d\xd9\xec\x28\x36\x04\x3d\xfe\x10\xfb\xa6\x6b\xe4\xe3\x26\x5a\xbf\x7c\x9f\x6d\xfa\xdf\xd7\x43\xef\xa4\xc5\x12\xac\xeb\x40\x05\xba\xfe\xb8\x4d\x18\xb8\x4b\x18\x78\x9b\x44\xe0\x3a\x31\x49\x92\x14\xf7\xf7\xee\x63\x7b\x75\x89\xe6\x08\xa4\xfe\xdd\xb6\x7e\x27\xaf\x26\xef\x27\xf3\xc9\xdd\x04\xbc\x1a\xa2\x6e\xae\xd4\xdc\xf6\x8d\x7d\xd7\x7a\x06\xb7\xd7\x86\xac\xaf\xaa\xda\xd9\xab\xfd\x6c\x83\x82\x83\x3c\x9c\x77\x21\x1f\xc2\xf9\x1a\xd8\x26\x85\x6e\x30\x6b\x57\xa1\xbd\x2f\xc3\xb4\xd9\x5c\x83\x77\xbd\x33\xdc\x2d\x80\xe1\xf4\x2d\xf8\xb6\x3d\xb0\x19\x84\xe0\x7d\x32\xfd\x76\x01\x97\xd3\x19\x05\x2f\xdc\xe3\xb7\xbd\x17\x96\x7b\xf7\x73\x12\x54\x7d\x7c\x9e\xab\xe3\x93\x37\x03\xd9\xc0\xf4\x88\x41\x78\x89\xc2\x27\xb8\xf7\xa0\xaf\xcf\xe5\x84\xde\xd9\x70\x3f\x5a\x12\x38\xf6\x92\x98\x9a\x20\x0f\xa7\xd5\x47\x6e\xe7\xaa\x06\xe8\x95\xbf\x8f\xaa\x6a\xa3\x6b\x83\xe7\xc3\x2b\x69\xaf\x06\xcf\x41\x38\x2f\xc1\xeb\xe4\xf9\xac\xbb\x08\x35\x98\x34\xf4\x9d\x84\x33\x2d\x2b\x19\xd4\xe1\x3e\x43\xf0\xe3\x01\x96\xa3\x70\x8b\xa3\x40\x15\xce\x8a\x52\x9b\x32\x08\xc1\x6f\xc9\x8f\x33\xf3\x3e\xab\x82\x10\x7c\xed\x1e\xdd\xe4\x0c\x42\xd7\x0d\x26\xd7\xc1\xe4\x7a\x12\xfa\x6b\xe8\x82\x89\x5a\xc9\xcd\x66\x02\x26\x75\x4e\xe0\xd7\xe4\xc7\xa6\x80\x60\xb2\xca\x72\x33\x09\xc1\x2f\x83\x57\xfe\x46\x8c\xf0\xec\x75\xf2\x7a\xe6\xaf\xd2\x0c\x5e\x77\x59\x67\xf9\xc6\x94\x55\x30\x59\xcb\xea\x66\x02\xba\xaa\xed\x97\xd2\xb5\xaa\x7e\xbd\xa9\xca\xe2\xb5\x99\x80\x89\xda\x96\xa5\xc9\xab\xaf\x8b\x55\x51\x4e\x42\xd7\xce\x1f\x9b\x02\xbe\x76\x75\xfa\xb5\xfd\xd2\x35\xa0\xae\xdb\xc3\xd9\xd4\xbf\xa6\xd3\x09\x9e\x80\xeb\x8b\xdb\xd0\x35\xe5\x97\xa3\x9c\xea\x26\x35\x39\xd9\x6c\xb5\x3a\x95\x0f\xb8\xbe\x78\xd7\xe2\xe9\xbb\x09\xf0\x73\xe9\x6a\x02\xcd\xed\x64\x5e\x4f\xa8\x09\x9c\x71\xe4\xbe\x4e\xe0\x2c\xc2\xe6\xd6\xb5\xa4\x7c\x9c\x24\xcf\xcf\xcf\x03\x47\xb2\xc1\xed\xc5\x65\xdd\xc6\xfd\x37\xae\xa1\xfb\x6f\x5c\x85\xf7\xdf\xfc\x96\xfc\xb6\xff\xa6\xa9\x51\xb1\x96\xca\x8b\x64\xab\xf6\x4d\x7f\xfd\xd4\x58\x98\x9b\xfe\xd0\x6c\xf2\x73\x60\xc2\xf0\xea\x55\x77\xcb\xe3\xde\xd5\x6b\x83\x6c\xc2\x5d\x08\xbe\xfe\xdc\xe2\x46\xaf\x2b\x69\xd8\x5d\x3b\x15\x5f\x05\xd5\xf9\x79\x57\xa1\x2a\xf1\xe7\x9c\xae\xaa\xb9\xaf\xd8\x2e\x0c\xc1\x6f\x4d\x44\xc1\x20\x04\xaf\xdb\x1e\xa8\x3b\xa0\xe6\x71\xf2\xea\xee\x6a\xf2\xe3\x64\x7a\x7d\x71\x37\x9d\x80\xc9\xf4\xfd\x74\xf2\x3d\x9c\xd1\xdf\x27\xd3\x17\xd3\xc9\xf7\xfe\xfd\x7c\xf2\x23\x9c\xd1\xfa\x37\xf7\x7e\x5e\xa7\x78\xef\xf1\x7d\xba\xdf\xe1\x8c\x7e\xef\x53\xfc\xde\xa6\xa8\x7f\x6f\xde\x87\xe0\xc7\xc3\xc6\xa3\x4f\xa3\xf5\xab\xa0\x69\x09\xf8\xf5\x70\x4c\x82\x5f\xf6\x46\x97\x1b\x8c\x81\x0d\xc1\xf3\x59\x7d\x77\x6f\x70\x73\x30\x32\xf3\x62\x30\xee\x6d\x91\x57\x97\x1b\x2f\x39\x22\xb8\xf7\xd2\xca\xdb\x6c\x75\x37\x01\x93\x8d\xcc\x37\x97\x1b\x53\x66\xb6\x4b\xe5\xca\xb8\x94\xb9\xba\x29\xca\x9a\x86\xf2\xaa\xb9\x52\x73\x5e\x2f\x21\x13\x93\xeb\xc9\x7c\x72\x9b\x69\xbd\x72\x0c\xe0\xf9\x51\xc0\xe6\xc1\x92\x95\xfc\xdc\xdf\x6f\xfa\x6e\xe6\xd7\xf4\x4f\x55\xb7\x0c\x78\x17\xce\xab\x1d\x78\x77\xe8\x54\x3c\x38\xa1\x57\x36\xf7\x00\x77\x97\x50\x80\x77\x6d\x82\xe7\xed\xbb\x4f\x3d\x39\x33\x08\xbd\x58\x76\xc7\x9e\xde\x85\xf3\xc1\x59\xa6\x3a\xe7\xdf\x7d\xa4\xca\x4f\xcb\x76\xbd\x1f\x3f\x7a\x2f\xe3\xf5\xf9\xf9\xfa\x30\xef\x23\x87\xe5\x07\xf2\xd6\x35\x89\x74\x9b\xf6\x45\xf6\xc7\x27\x12\xf7\x36\xb9\x4b\xa6\x3e\xf1\xed\x30\xf1\x67\x04\x80\xbb\x1d\x4b\xff\x19\x81\xde\xda\xf2\xef\xda\xf4\xbf\x7c\x4e\x60\xbb\xb7\x4d\xea\xb7\x3b\xf0\x6e\x18\xc3\xb1\x4f\xb3\x0e\x0a\x60\xf6\x22\xae\x0d\x7f\x93\x7b\xbf\xdd\xed\xfd\xb6\xd9\xfb\xed\xed\xde\x6f\x5b\xf7\x5b\x1b\x94\xfa\x7d\xb6\xf9\xad\x58\x7f\x44\x73\x76\x58\xbf\x66\xd7\x37\x1f\x53\x9c\x1d\xde\x57\x45\x55\x15\xa3\xba\xc0\xdd\x3e\xe2\x5f\x8d\x1d\xcd\xef\xed\x2e\xdc\x2d\x97\xb5\xb4\xfb\xea\x95\xb9\x4d\x4d\xf9\x4a\x6e\xab\xe2\x55\x76\xbb\x2e\xca\xea\xd5\xab\x3d\xea\xf6\x67\x62\x82\x6a\x78\x21\x53\x7d\x1f\x37\x5c\x82\xad\x8f\x9b\xe6\x2f\x9c\xc6\x4b\x60\x13\x08\x6e\x92\xc5\xf2\xa9\x7d\xd6\x76\xc4\x53\x3b\x9d\x86\x32\xd9\x2c\x6c\x7d\xd0\xeb\xfc\xfc\xa6\x89\x75\xba\x90\xcb\x05\x5c\x86\xfe\x6d\x13\xf7\xd7\x07\x16\xdf\x86\xb5\x43\xec\x40\x08\xbf\x91\x9b\x9f\xdf\xe5\xed\x35\x61\xed\x8d\xf3\xa5\xf7\x88\x5d\x94\xcb\x64\xeb\xa3\xd7\xba\x1c\xd4\xf9\xb9\x0a\xaa\xf0\xe9\x4d\x5b\x7c\x78\x33\xdb\xdc\x64\xb6\x0a\xc2\x3e\xea\x4c\xe1\x6b\xd0\x08\x94\x05\x58\xdd\xdf\x2f\x96\x21\xc8\x87\xd1\xf7\xf6\x82\x09\x83\x2a\x81\x4f\xab\x67\x6d\x5c\x98\xa7\xd5\x74\x3a\x88\x8b\x9f\x14\x8b\x6a\x09\xca\xe4\x31\x04\x9b\x04\x3d\xdd\x74\xa7\x40\x9f\x6e\x1c\x5e\x1d\xef\x28\x5f\x6c\x96\x67\xf0\x71\xe2\x2f\x80\xf7\x27\xca\x1f\xa3\x70\x57\x9e\x9f\x07\x45\x7b\xa7\x53\x75\x79\x09\x50\x08\x4c\x22\x03\x39\xdb\x24\xb9\x23\x4e\x1f\x0e\x76\x57\xab\x27\x1f\x76\x20\x4b\x3e\xc0\x39\x74\xba\xc7\x62\xef\x68\x63\x7d\x98\xb4\x5c\x54\xcb\xee\x40\xfa\xa2\x5a\xfa\xd3\xbc\x65\xb5\x39\xab\xeb\xea\x5e\x25\x1f\xb2\x79\x05\x56\xf3\xc7\x08\x34\x3f\xce\x3f\xec\x76\x9d\x50\xeb\x12\xd5\x81\x4c\xda\xb4\x20\x07\xfd\xb3\x74\xc3\x6c\xe5\x5a\xdb\xbd\xdb\xc9\xd9\x6d\x62\x80\x9c\xa9\xa4\x04\x72\xa6\x8f\x42\x4f\xc9\x59\x1d\x10\xfd\xfe\xbe\xe9\x5a\x6d\x6c\x96\x9b\xe1\xbd\x6f\xe0\x83\xc9\xb7\xb7\xa6\x94\xe9\xca\xcc\x1f\x43\x1f\x01\x3c\xdf\xf9\x53\x88\xfb\xec\x62\xb2\xcd\xeb\xd4\xba\x3f\xa3\xff\xe2\xee\x36\x2d\x56\xe7\xe7\xf5\xe7\xac\x2a\x5e\x54\x65\x96\x5f\xff\x26\xaf\xcf\xcf\x4f\x95\x78\x8c\x0b\x9a\xeb\x71\x26\x3f\x16\x7a\xbb\x32\x93\x5d\xeb\xb6\x7d\x9c\x78\xf2\xea\x95\xd9\x34\x68\x6d\xb2\xc7\xb0\xae\xee\xe1\x51\x92\xcc\x06\xe8\xbc\xf2\x21\xfa\xa4\x8f\xc4\x2a\xce\xbb\x38\xf8\xfe\xa2\x3f\xe2\x7e\x9d\x14\xbe\xa8\xc1\xbd\x4b\xe7\xe7\xee\xff\xac\x2f\xa9\x4f\x34\x8c\xbe\x37\x53\xa5\x71\x6a\x62\x77\x25\xa0\x9c\x95\x41\x7e\xaa\xea\x39\x98\xe8\xd6\x60\x71\x40\xf1\xba\x15\x4e\xbb\xc6\xbe\x42\x1b\x4f\x97\xc1\x25\xff\x5d\x1c\xf8\xb2\x8e\x03\x2f\x67\x3a\xc8\x41\x39\x16\x6c\xc4\x0d\xa2\xdd\x2c\xcd\x72\xed\xeb\x05\x06\xf1\x80\x73\x47\xa3\x91\x2b\x18\x92\x83\xd6\x5e\x1d\xf3\x2e\x33\x6b\xea\xbe\x1b\xb9\x00\xcf\x74\x23\x58\x36\x5c\x70\xe2\x0f\x5b\xb9\xe2\x8a\xf1\xd3\x3d\x9f\xc4\x67\x7c\x94\x01\x20\x67\xeb\x64\x32\x39\xab\xaf\x54\x7a\x97\xe5\xba\x78\x37\x7b\x67\xd2\xb5\x54\xaf\xff\xbc\x29\xf2\xf5\x08\x27\xfd\x44\x34\xc7\x7c\xfc\x75\x0f\x9e\x27\x79\x92\x6d\xc2\xb3\xfa\x6b\x52\x81\x4d\xb2\x39\xba\x58\xad\xbe\x11\xa2\xe3\xb0\xab\xe9\x34\xac\x02\x7f\x2f\x44\x1d\x54\x24\xd9\xee\x73\xba\x60\x21\x00\x6e\x38\x5c\xf0\x81\x1f\x44\xcd\x6f\xaa\xf9\xca\xc8\xec\x55\x99\x94\xe6\xcd\x36\x2b\x0d\x18\xbe\xd5\x49\x3d\x8a\x76\x40\x1c\x5d\x31\x97\x07\x3c\x04\xa6\xe5\x04\x49\x1e\xc4\xe1\x0e\xc4\x0f\x5c\xd2\x3d\x36\x7f\x75\xa1\xfc\xea\x7d\x7e\x1e\xe4\xb3\x75\x12\x94\x49\xfb\x66\xf6\x66\x6b\xca\xbb\x17\x5e\x77\x2c\x4a\xaf\xb1\x6e\x54\x99\xad\xab\x49\x18\x0e\x4f\x87\xcd\x36\xa5\x9a\x95\x66\xbd\x92\xca\x04\x4f\xfe\xfb\xc9\xe2\xff\xfc\xf7\x93\xe5\xc5\x9f\x9e\x80\xc9\x13\xa7\x42\xf5\x15\x0c\xb2\xa4\x6e\x13\x28\xea\x87\xb2\x6d\xaa\xef\x9a\xe7\xdb\xaa\xf8\xc1\x77\xcc\x37\x77\xb9\xbc\xcd\xd4\x98\xb0\x51\x04\x93\x3a\x8f\xbb\xfc\xd5\xc4\x87\x30\xcc\x82\x89\x74\xca\xeb\x04\x2c\x96\x63\xd6\xd2\x00\x41\x27\xbb\x67\xc1\x44\x47\x97\xb2\x2c\xe5\xdd\x49\x4c\x3c\x40\x7c\x9f\x6d\x4e\xe3\x89\x1e\xb1\x0e\x4a\x72\x12\x95\xf6\x98\x5e\xba\x3e\x9d\x27\x1f\x60\xb6\xb6\x85\x93\xd8\xd1\x00\xf9\x46\xae\x1f\xc8\x76\x50\x81\x2a\xbb\x35\x1f\xab\x2f\x1b\xa0\x0f\xee\xff\x38\x95\x7b\x8b\x6e\x57\x0f\xe4\x89\x50\x8b\xb5\xdd\x98\xd9\xbf\x4f\xd3\x15\xb5\xcd\xca\x36\x97\xd9\xfa\x34\x1a\x69\xd0\x56\x85\x96\x9b\x26\x76\xe3\xe6\x23\x14\x43\x6d\x55\x57\xe5\xf6\xd5\xad\x7c\x20\x77\xdf\xb9\x3e\xac\x78\x16\x4c\xfc\x1c\xb8\x6c\xf8\xf1\xc9\x24\xb1\xd3\x73\x77\xbb\xf0\xec\xff\x0d\x00\x00\xff\xff\x2e\xc2\xf7\x86\x13\xb7\x16\x00") +var _distAssetsVendor34c674f94f8ed54c9c302f718969513fJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\xfb\x76\xdb\x38\xb2\x28\x0e\xff\xef\xa7\x90\xf9\x75\x34\x40\x04\xc9\x24\x75\xb3\xd9\x46\xeb\x4b\xc7\xb9\xf5\x44\x49\xba\xed\x8c\x27\x91\x35\xda\xb4\x04\xd9\xec\x48\xa4\x1b\x84\xe2\x38\xa6\xf6\xb3\xff\x16\x0a\x00\x09\x4a\x94\x93\xcc\xec\xb3\xcf\x49\xd6\xb2\x88\x5b\xa1\x70\x2b\x14\x0a\x55\x85\xdb\x28\x9e\x25\xb7\xad\x67\xcb\x4b\xc6\x9f\xbd\xf9\x07\xbd\x7f\xfe\xec\xc9\xd9\xfb\x3f\x9e\x9d\x06\xf7\x6b\xf2\xec\x9f\x67\xcf\xde\x9c\x4c\xde\xfd\xf1\xf6\xec\xed\xd9\x87\x77\x32\xf2\x24\x14\x2c\xd8\xf7\xd6\x64\xf2\xdb\xef\xef\x9f\xfd\xf1\x61\xf2\xea\xcd\xd9\xb3\x17\x7f\x3c\x39\x7b\xf5\xf6\x4d\xb0\xef\xae\xf7\x3e\x87\xbc\xb6\x48\xc2\x19\xe3\x64\xc6\xe6\x51\xcc\x08\x67\x7f\xad\x22\xce\x86\xc9\x6c\xb5\xc8\x43\xe6\xf7\xcf\x94\xf0\x55\x1c\x47\xf1\xd5\x19\x4b\x45\x4a\xf7\xbd\xbd\x68\x8e\xe6\xab\x78\x2a\xa2\x24\x46\x0c\xdf\x3b\xab\x94\xd5\x52\xc1\xa3\xa9\x70\xf6\x4c\x42\x4d\x20\x7c\x2f\xab\x62\xf4\xed\xe5\x9f\x6c\x2a\x5a\x53\xce\x42\xc1\x50\xbc\x5a\x2c\xf0\x1e\x67\x62\xc5\xe3\x1a\x6b\x4d\x26\xf4\x73\x12\xcd\x6a\x2e\x99\xb1\x05\x13\x0c\xa2\x08\x5b\xcb\xa2\x9c\xde\x2b\x44\x83\x12\xbe\x41\x15\xda\x41\x65\x23\x82\xad\xc6\x04\xf9\xd7\x7a\x2f\xff\xa4\xfa\x8b\x96\x80\x50\xbb\x91\xf3\x84\x23\x89\x93\xa0\xa3\x31\xe1\x74\x81\x18\x71\x90\xce\x8e\x1d\x22\x30\x89\xa9\x68\x2d\x58\x7c\x25\xae\x9b\xde\xcf\xf1\x2f\xd4\xfd\x39\x6e\x36\xb1\x18\xc5\xe3\x16\xfb\x72\x93\x70\x91\xa2\xbc\xdd\xbc\xb5\x84\x2a\x4c\xca\x9a\xa8\x16\xd2\xfb\x38\x79\x9a\xc4\xf3\x45\x34\x15\x41\x5e\xbd\x50\x3d\x19\x93\x68\x4f\xa2\x11\xd7\xa2\xb8\x26\xb0\x68\x5d\x87\xe9\xdb\xdb\xf8\x1d\x4f\x6e\x18\x17\x77\x28\xc6\xf5\x3a\xaf\x8a\x44\x11\x95\x68\x10\x36\x8a\xc6\x94\xa9\xaf\x78\x4c\xf9\x28\x1e\xe3\x35\x59\x86\x9f\xd8\x09\x9b\x87\xab\x85\x78\x06\xd8\xe4\xb3\x24\xa6\x02\x61\x12\x51\x24\x7f\x5c\x0c\x71\x09\x1d\x39\xba\xd9\x0e\x71\x34\xfa\x0e\x71\x54\x7b\x9c\x71\x31\x01\x42\xc4\x88\x20\x9c\xc4\xf8\x5e\x5c\x47\x69\x6b\xb5\x8a\x66\x34\x6a\x34\x08\x84\xa2\x19\x65\xea\x6b\xc6\x6e\x52\xba\x6f\xfa\x4e\x36\x41\x7d\x0d\x92\x40\xa8\x1c\x0a\x36\xbd\xd7\xb5\x05\xf7\xeb\xb5\x4a\x98\x86\x8b\xc5\x65\x38\xfd\x44\xb9\x0a\x5f\x87\xa9\x6a\x42\xfa\x24\x3d\x61\x37\x74\xdf\xd3\x95\xa5\x4f\x16\x51\x98\xd2\x58\x05\x39\x8b\xe6\x11\x9b\xd1\x98\xdd\xd6\x9e\x70\x1e\xde\x21\x53\x3b\x56\x19\x52\x11\x0a\x46\x9d\x98\xdd\x3a\xeb\xbc\x3d\x29\xc2\xf7\x45\x68\x25\x27\x45\xde\x92\x22\x7e\xa1\x5a\x5d\x4c\x98\x88\xc6\x23\x36\xce\xb2\x78\xc4\x1a\xce\x41\x14\xcf\xd8\x17\x67\xfc\x73\x54\xaf\x47\x06\xad\x9f\xb1\xcc\x13\xb5\xa2\x19\x64\x93\x1f\x45\x4e\x33\x63\xa2\x2c\x2b\xa6\x23\x11\xb2\x6e\x9e\xdc\xd6\x64\x13\x9e\x71\x9e\x70\xe4\x3c\x4d\x56\x8b\x59\x2d\x4e\x44\x6d\x1e\xc5\xb3\x9a\xea\xb4\xda\x7f\x39\x0d\xd6\x70\xfe\xab\x16\x2d\x65\xbf\xb0\x59\x6d\xce\x93\xa5\x8c\x15\x0d\xe7\xbf\x1c\xbc\x06\x60\x84\xd7\xeb\xce\x0d\x8b\x67\x51\x7c\xe5\xec\x53\x1a\xa9\x1e\xa8\xd7\x9d\x79\x14\x87\x8b\xe8\x2b\x9b\x95\xa2\x51\xd4\x92\x75\x9c\xb0\x9b\x14\x71\x4c\x78\xeb\x66\x95\x5e\xa3\x08\x63\x12\x15\x3d\x31\x55\x78\x46\x73\xe4\xb4\x64\x69\xd6\x9a\x5e\x87\xfc\x89\x40\x2e\xc6\x66\xf9\xef\x99\x5e\xe2\x94\xb5\xd2\x9b\x45\x24\x90\x73\xe0\xa8\xb5\x54\x04\x5b\xe9\x22\x9a\x32\xe4\x92\xa6\x27\xa7\xa3\x4b\x12\x6a\x26\xc9\xcf\xd1\x71\xf2\x73\xd4\x68\xa8\x15\x12\x52\x3e\x8a\xc6\x7b\x50\x65\xcb\xa1\x94\x86\x50\xbf\x4b\x29\x8d\xcd\x08\x6f\xf7\x5b\x18\xcb\x4e\x0b\xa7\x53\x96\xa6\xb5\x9b\x90\xb3\x58\x98\xde\x4b\xe6\x35\x9e\x24\xc2\xc1\x7b\x71\xeb\x26\xb9\x41\x78\xcd\x16\x29\xd3\x6d\x02\xf8\xd3\x24\x16\x51\xbc\x62\x32\x83\xec\x84\x10\xaf\xd7\xba\x75\x71\xeb\xcf\x24\x8a\xa1\x05\x45\xaf\xcc\xe5\xbc\x51\x19\xf6\xd1\xbe\x9c\x1a\xf5\xfa\x7e\x69\x6e\xe0\x75\xd8\xba\xe1\x89\x48\xc4\xdd\x0d\x6b\x6d\xad\xce\x82\x2a\x19\xfa\x6a\xad\x11\x43\x4f\xf6\x24\x95\xa5\x94\xb2\x2c\x73\x12\x20\xbf\xce\x3e\x95\xf0\x92\x79\x0d\x86\x55\xc3\xb0\x62\xb3\x4c\xd1\x61\x18\xa9\x99\xaa\x31\xcb\xf6\x35\xf1\x8e\xd2\x67\x5f\x04\x8b\xd3\xe8\x72\xc1\x10\xc3\x59\x86\xf2\x4c\x94\xe1\x35\xb1\x51\xd6\x38\xd8\x88\xca\x0e\x2b\xa6\x12\xa5\xb4\x58\x66\x59\xe6\xc8\xf5\x78\x27\xa7\x5e\x29\xc1\x4c\x92\xaa\xe6\x29\x6a\xd9\xba\xe5\xe1\x8d\xa2\xd5\x69\xbd\x8e\xca\x24\x61\x3b\x0b\xd2\xcb\xb5\x4c\x3b\x30\x2e\x88\xc2\x1d\x52\x44\x4e\xf7\xa9\xc9\xd2\x0a\x6f\x6e\x16\x77\x50\xbc\x44\x40\x72\x72\x6e\x47\xea\x79\x46\xdd\x12\x29\x29\x1a\x5f\x49\xa9\xea\x75\xd5\xf9\x6a\xc8\x50\x45\x93\x29\xc3\x7a\x8f\xd8\x9e\x12\xf5\xba\x2a\xb0\x19\x8f\x30\xa9\x80\x54\x1e\xac\x55\x9c\x32\x66\x0f\xd5\x26\x01\xdc\x49\x82\xcb\x70\xa0\xfb\x36\x87\x5c\x77\x89\x5c\xfd\xd6\xb8\x96\xaa\xc8\xc7\x7e\x4f\xf0\xbb\xfb\x12\x79\x86\xc0\x44\x8f\x0b\xd9\x2c\x24\xe1\xae\xa1\x5b\x17\x77\xf7\x3b\xa6\x90\x99\x14\xba\x18\x93\x0b\x9e\xcd\x1c\xbc\x89\xfc\x64\x0b\x7b\x43\x97\xf4\x4c\x30\x63\xab\x08\x11\x26\x82\xba\x3f\x8b\x63\x66\x88\x90\x30\x04\x88\x53\x36\x12\xe3\x3d\xf9\x87\x72\xd3\xe1\x83\xfc\x2b\xd8\xdc\xf7\x11\x36\xc4\x82\x95\x31\x32\xe4\xb5\xc4\x83\xc8\x2e\x95\x43\x42\x77\x77\xa7\x21\xe2\x7b\x05\xbf\x92\x6f\xb2\x84\x53\xf7\x67\x7e\x6c\xf6\xba\x9f\xb9\xc1\x3a\xa6\x62\xc4\xc7\x24\x2a\xb5\x75\xc4\xc7\xc5\x70\x6b\x16\x4d\x21\xaf\x43\xeb\xbd\x7c\xfb\x97\xf4\x75\x80\xaa\xb7\x60\x97\x44\xf9\x1c\xae\x98\x8d\x38\xc8\xd9\x09\x80\xb2\x99\x39\xfc\xc4\xfe\x50\xe9\x08\x07\x86\xcb\xa8\xcc\xa9\x70\x8b\xcc\x54\x5d\xa0\x29\x8a\x0d\xaf\x81\xcd\x07\x61\x5b\x83\x6f\x55\xb1\x83\xb6\x4a\x92\x41\x6d\x6e\xcc\x70\x71\x1a\xb1\x29\x12\x84\x61\xbc\xce\xc9\x41\x4e\x1a\x05\x11\x1a\x9f\x57\xc0\xef\xc8\xee\xa9\x82\x34\xcf\x61\x10\xb1\x26\x48\x31\xb8\xd4\xde\xf0\x25\x4b\x51\xb0\x13\x7b\x51\xbd\x0e\x53\xa1\xd8\x95\xb3\x0c\x85\xfc\x6a\xb5\x64\xb1\x48\xf5\x08\x1f\xfb\xf5\xba\x3d\x7f\xb6\xb6\xbe\x30\xae\xad\xe2\x74\x75\xa3\x59\x03\xbd\xe9\xdd\x86\x69\x4d\x61\x30\x23\x35\xf6\xe5\x86\x4d\x65\xe2\x7f\xa9\x28\x14\xcd\x48\x0d\x66\x93\xce\x8e\xff\xab\x16\xc5\xa9\x60\xe1\xac\x76\x95\x88\x20\x67\x38\x72\x64\x6a\x22\xd1\xe0\x80\xdf\xd8\x44\x12\x13\x60\xc1\x24\x33\xa4\x58\x31\xb9\xb9\x70\xd9\x73\x74\x34\xc6\x44\xb6\x96\x72\xa8\x22\x8c\xa7\x72\xa7\x5a\x0d\x64\x0b\x42\xc4\x61\x5c\x08\x27\xfb\x2e\x0e\x54\x94\x62\x38\xf7\x3d\x8c\xd7\x78\x7b\x1b\x02\x76\x44\xad\x52\xd5\x87\x73\xb4\xcf\xb3\xcc\x2c\x29\x5e\xda\x76\x10\xa7\x06\xe6\x68\x4c\x52\x02\xc7\x16\xbc\x49\x94\x05\xe1\x15\x14\x5e\xe1\x4c\xf8\x5a\x1f\x58\x5a\x21\x70\x9f\x65\x44\xf4\xc8\xfb\x92\x8b\xd8\xe8\x92\x81\xee\x6a\x41\x24\x0a\x92\xd3\x54\x0d\x94\x5f\xeb\xe2\x28\xd3\x62\xb1\xe0\x11\xcb\x4f\x2f\x7f\xa6\xad\x09\x0b\x3f\x4d\x52\xc6\x62\x1a\x5b\xf9\x60\xd2\x59\xe1\x0d\x9a\xcf\xf0\xbd\x3a\xce\x40\x3c\x76\x64\x07\xaa\x3c\xa8\x54\xdd\x74\xc1\x42\x6e\x2f\x91\xef\xc4\x04\x4e\x11\x42\xc2\xd2\xed\x72\xe6\x49\xe2\x10\x0b\xd0\x1a\xdb\x49\x07\x97\x21\x77\x64\xaf\xef\xce\x11\xa6\xb3\xb9\x43\x46\x86\x1e\xd8\x07\x11\x43\x4d\xac\xe2\x7a\xf9\xc0\xd9\xa8\xa8\x41\x9e\x96\xac\xd0\x16\x0e\x5f\x01\x07\x7b\x04\x15\xe2\xb8\x9c\xf1\xaf\xd5\x57\xe7\xa1\x5c\x76\x24\xd1\x25\xbe\x38\x55\x0d\xd6\x59\x5a\x0a\xa4\xd3\x52\x38\x38\x2d\xdd\x5a\x88\xe0\xf2\xb7\x75\x20\x73\x3e\xd4\x3f\xcb\x30\x8a\x35\x44\x28\x54\x9d\x37\xdf\x85\x20\x5f\xde\x85\x32\x83\x21\x6d\xa5\x94\x8d\x68\xa8\x24\x8f\xd3\x33\xa6\xe8\xd0\xcd\x99\x83\x30\x31\xbc\x28\xcd\xb9\x4e\x05\xb9\x5e\xdf\x4a\x51\x23\x5b\xaf\x97\x17\x5c\xbd\x8e\x36\x56\xe0\xfd\xe6\x49\xbf\x24\x23\x58\xe3\x35\x6c\x4b\x98\x38\xab\x58\xd3\xb4\xa2\x8e\xe7\x61\x2a\x7e\x4d\x12\x61\x53\x49\xb9\x34\x1f\x40\xb3\x80\xb2\x5f\xc6\x74\xb0\x49\x19\xe4\x76\x95\xb3\xd9\x39\x24\x55\xba\x5e\x37\x73\x63\x39\xcb\x17\x3b\x0e\x58\x6b\x99\x48\x3a\x20\x0b\x2b\xbc\xed\x61\x2b\x89\x59\x60\x77\x22\xa2\x38\x6d\x73\x94\x93\x14\xa6\xf9\x55\x49\xb2\x48\x4e\x5b\xac\x33\x48\x5c\x9c\x41\x6a\xcc\x26\xad\x40\x81\xb3\xcc\x19\xa9\x0e\x50\xe1\xb1\x24\x8e\xfa\x18\x50\xec\x9a\x22\x39\x15\x3c\x8a\xaf\x80\x49\x96\x74\x29\x87\x1e\x59\xd0\x25\x0a\xfb\x54\x9e\x38\x0c\x48\x05\xe8\x47\x61\x26\x16\xcc\x82\x53\x5e\xdb\xb2\x06\x93\xee\xc4\xab\xe5\x25\xe3\xd6\xe0\x59\x0d\x7a\x03\x69\x3f\x5a\x7b\xba\xab\xbf\x4e\xd4\xf9\xc5\x40\x97\xc1\x1f\x85\xbd\xb2\xb6\x25\x12\xd3\xd1\x18\x38\x37\xc5\xa9\xe5\xfc\x65\xa3\xc1\xb1\x3e\x5f\x0a\xc4\x24\xaf\xc6\x71\x7e\xf8\x88\x37\x84\x0f\x39\xaa\x5b\x58\x94\x45\x43\x1a\x17\x22\xf0\xd6\x99\x3d\x3f\x95\x2b\x49\xd3\x02\x49\xfa\x59\xaf\x43\xd5\xc0\x2b\xe6\x95\xcb\x24\xc7\xb4\xce\x81\x3c\x79\x63\xa9\xc8\x3f\x31\x81\x8c\x9f\xc3\xc5\x8a\xbd\x9d\xeb\x7c\x3a\x44\x85\xf9\xc2\x84\x95\x0e\xca\x46\x7c\xa4\xeb\x7a\x22\x4c\x94\xdc\xf2\x5b\x2b\x31\x45\x16\xea\xd7\x1b\xd3\x4e\x1e\x63\x27\x37\x73\xa8\x69\x72\x33\xa7\xf7\x6c\x79\x23\xee\x82\x7d\x8f\xac\xe2\x55\xca\x66\x67\xc9\x27\x16\xa7\xc1\x68\xac\xc3\xaf\xe2\x9b\x95\x90\xc1\xe4\x33\xe3\xf3\x45\x72\x1b\x34\x7d\x32\xbd\x0e\x79\xfa\x9a\xcd\xc5\xdb\xcf\x8c\x07\x2e\x70\x01\x2a\xe3\xbe\x47\xa2\xf8\x73\xb8\x88\x66\xc3\x24\x16\xd7\x01\x2c\x36\x1d\xf3\x3c\xe1\xcb\x10\xb2\xac\x52\xc6\x5f\xa9\xc8\x50\xb0\x19\x94\x4a\x13\xf9\x73\x13\xf2\x94\xcd\xe4\x8c\x79\x17\x4a\x0e\x7b\x34\x26\x4b\xc6\xa3\x59\xc4\x96\x0a\x16\x9f\x4f\xfd\x43\xdf\x97\x79\x6f\x19\xfb\x34\x0b\xef\x86\x51\xba\x0c\xc5\xf4\x3a\xd8\xf7\xd6\x98\x40\xab\x8a\xe6\xcf\xf4\x01\x21\x6f\x7a\x94\xfe\x43\x56\x6b\x38\x1e\xd9\x3d\x20\x56\x81\x51\xe7\xad\x8d\xfa\x89\xcd\x0d\x94\x17\xef\x1a\x93\x88\xee\x47\xe9\x9b\xf0\x8d\xec\xca\x59\xeb\x8a\x89\xb3\x68\xc9\x10\x06\x79\xa3\xe9\xae\x63\xb7\x5e\xdf\xe7\x2d\xe8\x65\xf8\xb2\xbb\xc7\x8e\x38\x57\xad\x81\xa8\x8d\x96\x41\x5c\xde\xc7\x76\x21\xd5\xa5\x10\xb3\xd1\xa7\xf5\x3a\xda\xe7\x2d\xd3\x77\x59\x56\x7c\xd7\xeb\x31\x96\x4c\x1e\x6b\x4d\x14\xd9\x04\x49\x68\x54\xaf\xbb\xc0\xed\x95\xc6\xd6\x44\xda\x73\x23\x97\x48\xe6\x14\x87\xb7\x2e\xa3\xab\x97\xc9\x8a\x63\xa2\x3a\x27\x97\x8e\x3c\xe7\xc9\x57\x16\xd7\xeb\x1b\x11\x92\x75\x33\x02\xbc\xbd\x62\x50\x68\xb4\x2e\x04\xe0\x3a\xae\x18\xca\x1b\x39\x06\xea\xec\x36\x47\x6f\xc2\x37\xc5\x4a\x57\x03\x32\x98\xa2\x6b\x24\x30\x61\x38\x90\xbf\x9b\x1d\x22\x8f\x5c\x62\x2d\xa8\x62\xab\x8b\xd5\x9f\x26\x4b\x36\xa8\x8a\x0c\xaa\xe5\xdc\xaa\x29\x7a\xfb\xe4\xb9\x70\xfb\x97\x5f\x7e\x71\x49\x4c\xdd\x9f\xe3\x63\xfe\x73\xdc\x68\x60\x39\xe9\x80\x4e\xd4\xeb\x4c\xcd\x2e\x25\x28\x19\xc5\x63\x12\x13\x61\x3a\x60\xdf\xd5\xcd\xd8\xf7\x94\x74\x79\x49\xb9\xde\xef\x34\x45\x92\x0c\xe4\xc8\x12\x20\x7f\x2e\x91\x46\x12\xc9\xb1\x4c\x90\x90\x3d\xf6\x64\x08\x05\x15\x8a\x4a\x1a\xb5\x19\x4b\x2b\x32\x12\x55\xdc\x14\x80\x2c\x3a\x72\xae\x23\x25\x39\x9a\xcc\x75\xe4\x42\x47\x2e\x28\x04\x54\xa4\x9a\x4b\x3a\x45\x05\x68\x11\xad\xf2\x88\xaf\x4b\x9d\x41\x7c\x5d\x52\x1d\xa1\x6b\x4f\xdf\x9f\x3d\xcd\x51\x7e\x7f\xf6\x94\xe6\x91\x2a\x43\x32\x9f\xa7\xcc\xc0\x57\x01\x5a\x44\xab\x3c\x37\x06\xdd\x9b\x39\x95\x73\xc0\xe0\x9b\x4c\xc3\x05\x33\x48\x43\x80\x16\xd1\xc4\x3d\x5e\x9a\x43\x57\xb1\xc9\x2c\x6d\x71\x40\xa2\xae\x0a\xe8\x72\xc4\xc7\x63\x80\x33\x8a\xc7\x34\x2a\xee\x6b\xe0\x5e\xe6\x8e\xee\x7b\xc5\x30\x5d\xc1\x74\x55\x83\xce\xf4\x41\x7b\xa2\x84\xeb\x27\xe6\xc2\x67\x5f\x52\xa4\xd9\xa0\x4c\x3e\x02\x39\xb7\x8d\x80\x1e\xd6\x00\xc2\x46\xf8\x65\x03\x90\xd9\x30\xd9\xf7\x28\xa5\x77\xf5\x3a\xba\x93\x13\x9c\xb7\x56\x37\x72\xb6\xbf\x85\x5e\xd1\x93\x54\xe2\x65\xed\x08\x97\xbb\xb6\xed\xab\x2c\xcb\x19\x93\x1c\xbb\x8d\xb9\x52\x80\x99\xd8\x60\x8e\xdd\xc1\x30\x14\xd7\xad\x29\x8b\x16\x20\x07\x75\x03\x08\xcf\x17\x49\xc2\x4b\x1b\xfb\x6d\xb1\x8a\x1b\x8c\x70\x6a\xa6\x3f\x48\x58\x45\xbd\x1e\xa5\xcf\xa3\x38\x12\x92\xf1\xab\xd7\x11\xa7\x13\x18\x46\x5e\x00\x78\x66\x1f\xfb\x63\x12\x51\xa8\x68\x19\xc5\xc8\xf0\x05\xa4\xb8\xb6\x48\x54\x6a\x78\x99\xe6\xa9\xcd\x22\x35\xa4\xae\xba\x39\x82\x65\x1b\xc1\xb2\x45\xbc\x5e\x97\xa3\x2b\xb1\x19\xc5\xe3\x2c\xdb\xe7\xf5\xfa\x2d\x0c\x38\xde\xa7\xf4\x16\xc9\x58\x49\xe2\xc3\x46\xc3\xa0\x1e\x36\x92\x02\xbf\x2f\xb2\x81\x30\x2a\xbc\x95\xae\x6e\x6e\x38\x4b\xd3\x13\x76\xc3\xd9\x34\x94\xe9\xe7\x21\x8f\xa3\xf8\x6a\x07\xd3\x3c\x4d\xe2\x34\x91\xfc\xbd\xfe\x68\xdd\x86\x3c\x2e\x87\x90\x63\x41\xab\xdd\x2a\x70\x41\xcd\x69\xd8\xbd\x7c\x5a\xd0\x88\x98\xe6\x24\xa6\x36\x45\x65\x49\xa4\x1a\x65\xde\x9a\x15\x10\x5f\x86\xf1\x6c\x21\x09\x7f\x55\xac\xe2\x9d\xe5\x8e\x69\x5d\xe4\x90\x84\x8e\xc6\xb2\x2f\x7f\x0e\x8f\x37\x8f\xec\x3f\x87\x8d\x06\xd4\x14\x51\xc7\xd9\x3e\xe7\xe4\xd9\x47\xe1\xb8\x80\x98\x4a\xb2\x19\x35\xa8\x73\x11\x8f\x9c\x46\xd8\x70\xc6\x35\xa7\x60\xd8\x47\xee\x18\x47\x0d\x9a\x36\x1c\xd9\x68\x3b\x7a\x94\x8e\x1b\x0e\xa9\x39\x7b\x11\x8d\x8a\xbb\x11\x5f\x5d\x4e\xd4\x22\x6a\xd7\xb6\x97\x98\xcb\x99\xf5\x17\xc4\x1a\xce\x45\xfc\xc4\xa4\x4a\xb0\x5b\xfb\x81\x84\xa6\xa8\x78\x82\xf5\xfd\x85\x83\x65\x31\xa7\x81\x72\xc9\x11\x6e\xa5\x22\x9c\x7e\x92\x0c\xc5\xbe\xb7\xce\xa5\x5e\x96\x98\xdc\x3a\x76\x48\x06\x53\xb6\xf6\x2d\x79\x42\xef\xd7\x05\xdd\xf8\xa4\x86\xee\x87\x87\x06\x2e\xac\x9e\xc0\x9d\x1a\xfa\x82\xf4\x37\xdd\x77\xad\x59\x71\xb6\x6b\xe5\x3f\xd7\x39\x2c\xa6\xdd\x44\xfd\x28\xe3\xfe\xb4\xcc\xb8\x4f\xd1\xfd\x9a\x30\xac\xb8\xf7\x0d\xb6\x39\x02\xc6\x19\xd7\xeb\x11\x02\xe6\x79\x80\x62\x90\xae\xae\xc9\x14\xbe\x08\x24\x9b\x00\x64\xc1\x81\xea\x17\x19\x18\xc4\x86\xed\x0e\xf4\x1d\x79\x0c\x2c\x78\x5e\x15\xc3\x92\x8f\x97\x55\xed\x9b\x3a\xf3\x2a\x55\x55\x80\x1d\x94\xaa\x3a\x36\x0c\x65\x77\xe5\x14\x51\x89\x93\x99\x90\xad\x7d\x70\x65\xd3\x7d\x8f\x54\x8d\x10\x85\xc5\xf3\xd6\x74\xe6\x27\x76\x97\x0e\xac\xef\x12\xbb\x01\x04\x92\x70\x73\xee\x11\x45\x73\x04\x70\x97\xea\xcc\x53\xdc\x9b\x2b\xd6\xe1\x8f\xd2\x44\x7a\x67\x4b\xf6\xe4\x90\xbd\x4e\x6e\x19\x7f\x1a\xa6\x0c\xe1\xbd\x3f\x64\xf3\xff\x18\xf1\x86\x93\x3a\xf2\x43\x8c\xed\x73\xe3\x9f\xd6\xb9\x31\x55\x67\x98\xe2\xdc\x38\xf8\x03\x26\xd9\x1f\xa3\x0d\x98\x63\x23\x00\xcf\xc1\x9c\x58\x4d\x21\x31\x20\xb7\x3d\x36\x48\xd0\x3f\x11\xc7\x6a\x4c\x24\x1a\xf6\x39\x2a\x86\x25\xf2\xa6\xd4\xae\x57\xaa\x5d\x6f\xe4\xf4\xb6\xf6\xa3\xd7\xa5\x7d\x81\x3a\x4e\xa3\x20\xfd\x92\x55\x17\x4d\x73\xd7\xa9\x81\x23\xf7\x98\xb2\x01\x1f\x38\x0d\x27\x70\x9c\xc0\x69\x3a\x58\x15\xb9\x49\x6e\x91\xe7\x12\xb5\xaf\x84\x5f\x90\x4b\x22\x8c\xf3\x29\x8f\x70\x2b\x5d\x5d\xa6\x82\x23\x0f\x37\x14\x7e\xcf\xe9\x01\xba\x18\x8d\xfe\x75\x31\x1a\x3f\xbe\x18\xe3\x0c\x5d\x5c\xe0\x01\x1a\xbd\xbc\x1e\x2f\x97\x28\x4d\xf1\x20\x1b\x26\xd9\x70\x38\x90\xff\xb3\x93\x24\x3b\x39\x81\x3f\x03\xf9\x3f\x9b\xcd\x66\x83\xd9\x20\x9b\x25\x83\xec\x76\x94\x64\xb7\xe3\x41\x76\x3e\x4a\xb2\xf3\xf1\x20\xfb\x3d\x19\x64\x1f\xe0\x5f\x56\xfc\xcd\x3e\x7c\xc8\xae\xae\xd0\xd5\xd5\xd5\x00\x0f\xb2\x17\x2f\xd0\x8b\x17\x2f\xe4\x17\xcb\x9e\x65\x61\xf6\x24\xbb\xbe\x1e\x64\x2f\x5f\x0e\xb2\x4f\x9f\x06\xd9\x72\x39\xc8\xd2\x74\x90\x9d\xde\x7b\xe4\x68\x9d\x7d\xc9\xfe\x99\x7d\xfd\x3a\xc8\x3e\x7e\x1c\x64\x2d\x7c\x70\x45\xbe\x56\x22\xfe\xfa\xec\x34\x7b\x7d\x96\xbd\x7e\x3d\x90\xff\xb3\xc5\xbd\x47\x3a\x6b\x99\xfd\xa5\x5c\x9b\xbf\x96\x06\xe3\x7d\x71\x1c\xd5\x62\xf8\xbd\xad\x19\x13\xc3\x01\xa3\x24\x20\xcd\xaf\x07\x47\xf1\x18\x61\x79\x6c\xab\xd7\xd1\xaf\x72\x44\x23\x4c\x04\x7c\x8b\x91\x3b\x1e\x57\x94\x7a\x8d\xa2\x6a\x8a\x4a\xc4\xc8\x93\x64\xc2\x1f\x4b\x80\x1c\x80\xf0\x2a\x08\xb0\x92\x15\xf3\x77\x12\x8a\x10\xe1\x56\xc2\x67\x51\x1c\x2e\x76\x42\x66\x78\x6d\x91\xb8\xf3\x92\x38\x81\x15\x5c\xda\x00\x09\xfa\x17\x12\x84\x95\xa0\x63\xf2\x52\xce\x6b\xf9\xc7\x56\x56\xb0\x56\x06\x89\x28\x6b\xc1\x49\x0f\x3d\x57\xf4\x4b\x50\x97\x70\x1a\xe5\x17\x69\xc7\x1c\x2e\xd3\x7e\x1d\x45\x23\x31\x1e\x0f\xe4\x5f\xaa\x03\x01\x04\x50\x4c\xe5\x2f\xd6\x60\x0e\x2e\x46\xa3\x8b\xf4\xe2\x74\x7c\x80\x07\x71\x8b\xb3\x9b\x45\x38\x65\xe8\xe0\x5f\x17\xa3\xec\x62\xfc\xd3\xc1\x15\x71\x1c\x1c\x58\x09\x17\x17\x2a\xce\xac\xbb\x6d\x1d\x9b\x84\x3a\x8e\xc5\x2c\xa9\x33\x4e\xd2\xa0\x67\x28\x92\x0c\xd1\x40\xfe\xd5\xc7\x1c\x79\x02\x93\x41\x03\x2c\x59\xaf\xe5\x7e\x24\x3b\x00\x64\xf6\xe5\xee\x31\x47\x59\xe0\x69\xad\x5e\xfe\xcb\x26\x5f\xdd\xbd\x4a\x29\x9d\x68\x2d\x92\xf8\x4a\x96\x54\x07\x61\x60\x3d\xd9\x5a\xa2\xf9\xb5\xb5\x08\x53\xf1\x2a\x9e\xb1\x2f\xd4\xfd\xd9\x3d\xa6\xbc\x5e\xff\xda\x12\x2c\x95\x99\x7e\xc6\x8c\xb2\xbc\xf5\x5f\x49\x8c\x49\x29\x3f\xe1\x4d\xea\x95\x99\xfb\x7f\xd0\x83\x8b\xd9\x01\xf9\x20\x7f\xe4\xc7\x0b\xf9\x71\xdf\x5e\x1f\x90\xbf\xc3\x57\x67\x7d\x40\x7e\xa2\x07\xa3\x46\x73\x3c\xb8\x98\xdd\xf7\xd6\x07\xe4\x77\x95\x77\x70\x40\xfe\xa9\xbe\x74\xe8\x63\x11\xd2\x31\xbf\x01\x08\x8f\x48\x70\x8c\xe9\x80\x84\x28\x58\x01\xd2\x23\x12\x28\x87\xe4\xc6\x01\x89\x8b\xa4\xc6\x01\x89\x18\x3d\xf8\x98\xc9\xb0\x04\x19\x0c\x00\xc9\xab\x88\x24\xa5\x78\x34\x08\x54\x12\x1e\xc8\xc4\x50\x82\x70\x9b\x47\xe3\x7b\x97\xf8\xdd\xde\x7a\xf4\xb7\xb0\xf9\xf5\x62\xe5\xba\x4f\xdc\xe6\xc5\xca\xed\x3e\x7f\x7e\xb1\x72\xfb\xae\x0c\x9c\xf4\x65\xe0\xf9\x11\x04\x9e\x9f\x3c\x95\x81\x93\xe7\x10\x78\xee\xf6\xe5\x5f\x4f\x05\x9e\x3d\x1f\xdf\x7b\x00\x2d\x1b\x5d\xac\xdc\x1e\x14\x70\x7b\xcf\x9f\x5f\x1c\x98\x04\x74\x91\x3e\x1e\x94\x13\x4d\x12\x96\xbf\xeb\x83\x88\xa4\xac\x44\x66\x56\xcc\x50\xf7\x94\x49\x2a\x71\x86\x04\x1e\x58\xaa\x60\xcc\x92\x87\xb1\x7a\x9d\x0f\x78\x20\xd6\x96\x00\x90\x95\x96\xec\x02\xa5\x8c\x30\x3c\x00\x58\xc5\xd9\x95\x14\x67\x42\xb8\x57\xfa\x83\x5d\x3d\xfb\x72\x83\xa6\x0c\x15\x73\xc5\xb9\xb8\x70\xe4\x42\xb1\x97\x0e\xba\x18\xe1\x4c\xfe\x8c\x71\x76\x31\x42\xa3\x7f\x5d\x8c\x25\x41\xc5\x17\x63\x19\x0b\x84\xb6\x7c\xe7\x22\x57\x7c\x31\x87\xb3\x8c\x67\x59\x9c\x65\xd1\x1a\x63\x5b\xe6\xc8\x6c\x6e\xad\xa8\x6f\xd4\xbc\x38\xb8\xb8\xf8\xd7\x4f\x8f\x1b\x83\x16\xc2\xd9\xe8\x62\x7c\xbf\x1e\xcb\xd5\x7b\x71\xf1\x53\xdd\x51\x3c\xe5\xbc\xdc\x7b\xd7\xac\xcc\x94\x09\x58\xc8\xdb\x3b\x7b\xbd\x8e\x18\x1d\xb1\x31\x26\xa1\x3a\x7e\xc5\xf6\xe5\x1c\xc7\xf7\x5c\x92\x1a\x79\x82\x93\x04\xb6\x2c\x8b\x95\xc7\xe4\x39\x1b\xc9\xdd\x7b\x4c\x2d\x26\x6a\xa6\xeb\x06\x1c\x6c\x68\xaa\x13\xe2\xd6\xe4\x96\xca\x3f\x59\x76\xbf\x26\x42\x0e\x64\x6b\x72\x0b\x69\x6b\xd5\x96\x1b\x46\x5d\xb2\x64\xd4\x23\x9f\x19\xf5\xc9\x1d\xa3\x6d\x72\xc5\x68\x87\x5c\x32\xda\x25\x13\x46\x7b\xe4\x96\xd1\x3e\x79\xc6\xe8\x61\xd1\xe4\x2f\x76\xef\x9d\xca\xc0\xa0\xdd\xeb\x05\xed\x5e\xd7\x3a\x24\x95\x7a\xf8\x51\x87\x52\xb7\x5e\x67\x8f\x3c\xd7\xdd\xa7\x6e\x96\xb1\x47\x1d\xd7\xa5\xd4\x5d\xbf\x47\xce\x07\x87\xb8\xc4\x25\xd5\xf7\xe0\x77\x70\x8b\x93\x93\x8b\x63\x7a\x74\x74\x74\x34\x70\x9c\x06\x0b\x9c\x86\xd3\x60\x6b\x4c\xde\x23\x97\x8c\x9c\x0f\x1f\x1c\xe2\x8f\xcb\x70\xec\x3d\x49\x01\x92\x08\x58\x45\x64\xa1\x8e\x2c\xe4\xc8\x64\xc7\x4e\xf8\xe0\x90\xee\x8e\x94\x0f\x0e\xe9\x91\x7d\xd7\x4e\x7d\x87\xd4\x17\x71\xee\x1c\x4c\x5e\x99\x90\x87\xc9\x8a\x41\x0b\x63\xa6\x3f\x3f\x38\xe4\x77\xf2\xc1\x04\x64\x90\x31\xf2\xf7\x22\xfc\xc1\x21\x82\x91\x9f\xac\x88\x3c\xe6\x9a\xa1\x1c\x37\x93\x34\x26\x37\x0c\x52\x34\xb0\x0d\x85\xbd\xd1\x0d\x1b\x53\x9f\x52\x6a\xe6\xd2\x40\x8b\x61\xcf\x6e\x93\x93\xe8\x2a\x12\x1f\x64\xb7\x30\x1c\xe8\x89\x77\xad\x51\xac\x02\x53\x5d\xd2\x14\xaa\x2e\x03\x25\x5e\xc5\x72\xee\x79\x2e\xcc\xec\x6d\x20\xb4\x42\x0e\x2c\xd1\x69\xa0\xde\xe1\xb1\xfc\x18\x78\x47\xae\x1b\xf8\xac\x8d\x15\x2b\xfe\x96\x91\x27\x8c\x7e\x62\xc8\x79\xbe\x5a\x2c\x3e\x40\x4f\xef\xbb\xd8\x3a\xe6\x95\x49\x52\x0e\x3f\xde\x90\x33\xc7\x03\xf4\x94\x69\x29\x92\xdc\xa7\x2a\x24\x3c\xf2\xe0\x07\x92\x9e\xe0\xcc\xe4\xc4\x16\xf1\x3b\x63\x3b\xf9\x15\xd6\x9a\xcc\x46\xce\x15\x13\x4e\x23\x97\xbb\x0d\x9c\xf7\x67\x4f\x25\x47\x8c\x1b\x62\xac\xa4\x51\xd6\xe9\x2e\xa7\xc3\x16\x98\x7a\x5d\x8b\xc1\x81\x9d\x2f\x1a\x4c\x41\xa0\x23\x57\x99\x9e\xd9\xb8\x5e\xf7\x60\x9c\x97\x49\x2c\xae\x65\x41\xff\x08\xc2\x33\xd8\xfb\x35\x3a\xe9\x03\xe8\x70\x92\x17\x26\x43\x66\x07\x81\xaf\xf8\x66\x71\x9b\xc0\x0e\x59\xae\x89\xa9\xa5\xf8\x38\xcb\xd4\x57\x2e\x9d\xad\xbd\x09\xdf\xec\x29\x16\x04\x89\x47\x9e\xdf\xf0\x7c\xfc\xc8\xf3\xf3\xb5\xde\xa0\x48\x34\x39\x3e\xf0\x7c\x02\x12\x9f\x81\x22\x35\xfe\x51\xe0\x1f\x06\x6d\xaf\xc9\x1f\xf5\x1f\xf9\xeb\xb7\x6c\x4b\xea\x0c\x4a\x8d\x6f\xe7\x5b\x82\x67\x1d\xbf\x7d\x18\x34\x6c\xe1\xcf\xe2\x58\xf1\xaf\xe6\x0a\x4c\xe0\x68\x0e\xa3\x2e\x69\x33\xa5\x85\x7e\xa0\x46\xb2\xe9\xad\xc9\x7b\xe4\x0c\x1d\x32\x72\x86\x43\x20\x40\xce\xb0\xac\x67\x50\xd6\x28\x84\xee\x6c\x78\x40\x82\x9c\xa1\x2c\x52\x22\x7d\xec\x01\x3e\x1a\x0a\xa7\xa7\xd7\x09\x17\xf9\x44\x34\x60\x7e\x1c\x8e\x05\xe2\x1d\x72\x20\xce\x21\xce\x50\x11\x2f\x1d\x3c\x54\x44\x68\xe8\x90\xdf\xf5\xd7\xd0\x22\x5e\x50\x6b\xa5\x7e\x89\xb0\x71\xfd\x83\x5d\xb1\x2f\x8a\x4e\xe8\x52\xdf\x2a\x66\x95\x00\x8a\x37\x94\x88\x0d\x37\x94\x2b\x24\x81\x59\x32\xb5\x61\x36\xbd\x3c\xeb\x50\x65\xde\xca\x6e\x9f\xa2\xb8\xe1\x44\x74\x7d\xef\x24\x41\x92\x9b\x23\xe1\xb9\x48\x7d\x4f\x11\x88\x68\xa0\x6a\x89\x82\x6b\xc4\x71\xe9\x7a\x89\xb2\xb5\x52\xdc\xfc\x83\xd1\x83\x93\x51\x72\x32\x1e\xe8\xe3\xde\xc5\x58\x1e\xf8\xb2\x8b\x14\x37\x24\x26\x83\x03\xf2\x8e\x51\xe7\xb7\x30\x5e\x85\xfc\x6e\xf2\x9c\x5d\x72\xf8\x18\x86\x7c\x7a\x3d\x79\x72\xc3\xa3\xc5\x64\x18\xde\x4d\x7e\x5b\xc5\x6c\xf2\xdb\x6a\x71\x37\x79\xb2\xba\x5a\xa5\x62\x72\xca\x6e\x04\x5b\x5e\x32\x3e\x79\x3b\x15\x89\xfc\x7d\x93\x7c\x56\x11\x27\x6c\x0a\x1f\x8e\xd1\x58\x9e\x38\x98\xfc\xa9\x6a\x91\x35\x48\xe0\x12\xb4\x01\x2c\xe1\x4a\xb0\x12\xa6\x84\x26\x21\x49\x20\x76\xf9\x82\x7c\x9e\xd8\x2c\x0d\xa8\x2c\x59\x04\xa9\xd0\xa3\x8e\xe6\xdb\x6c\x0e\x2c\x98\x83\x7f\x5d\xcc\x1a\x3f\x1d\xa8\x03\x81\xc0\x58\xd0\x5b\x24\xf0\x9e\x92\x14\xce\xd1\x7e\x88\x04\x65\x55\x93\x52\x8d\x84\xc0\x56\x25\x46\x08\x63\x4b\xa2\x15\x45\x93\x34\xca\x10\x3f\x22\x30\xdc\x4e\x3e\x44\xa2\x1c\x18\x36\x67\x0c\xd2\x2a\xfb\xd6\xf7\x0d\xdb\xbe\x80\x1c\xa0\x93\x9c\xdc\x57\x6e\x0b\xfb\xee\xe6\xbe\xa0\xe1\x2b\xc6\xea\x15\xa3\x21\x23\xaf\xe5\xdf\xa2\x5f\x9f\x33\x84\xef\xf3\x10\xdb\x98\xfc\x5a\x82\x6e\x36\xea\x75\x21\xdb\x19\x8d\x49\x24\xff\x24\xb9\xc8\x0a\x48\x95\xe7\xc3\xb9\x95\xd3\x39\x1a\xf9\xac\x4d\xc4\x18\x13\x73\x63\x9f\x53\x1b\x4d\x30\xb8\xe4\xab\x31\x89\xb6\x92\x4d\x4a\xf2\x03\x29\x36\x48\x75\x6c\x6d\xa5\x32\x86\xc9\x0a\xcc\x57\x92\x7f\x95\xb0\x05\x31\xd4\x94\x81\x38\x0a\x93\x48\x87\xe0\x78\x6d\x35\xcd\xef\x40\xe6\x44\x27\x27\x90\xac\x2e\x69\x2c\x1a\x41\xad\x83\x84\xf3\x2f\xe4\x34\x12\x2d\x3d\xce\xe4\x70\x63\x87\x38\x91\x63\x2e\x87\x36\x29\x12\xdd\x82\x56\xce\x08\x64\xa0\xba\x96\xe8\xbb\x6a\x79\x08\x42\x5c\x01\xa1\x98\x8f\x5f\x59\xb1\x31\x45\x73\xc4\x8e\x3d\xd7\xad\xd7\xdd\x63\xca\xcc\x89\xfd\x01\x09\x7a\x21\x58\xd9\xe3\x23\x77\x4c\x59\xa3\xe3\xba\x44\x14\x37\x5b\xf2\x4f\xeb\xfd\xd9\x53\x5b\x61\x87\xcb\xa9\x91\xdf\x0d\xb5\xae\x98\x78\x7f\xf6\xd4\xb0\x1a\xc0\x5a\x88\x56\x5a\x8e\x64\x5a\xf2\xff\x0d\xc8\x05\x3a\x85\xe2\x7a\xd1\xd2\x97\xac\x2c\x57\xec\x37\x44\x93\x9b\xad\x15\xf5\x1b\xb2\x27\x88\x4b\x62\xac\x51\x3a\x09\xef\x10\x6e\x0a\xfc\xa8\xdf\x90\x5b\x6f\x0e\xe7\x57\x66\x9f\xfd\xc0\x64\x88\x84\x24\xa5\x5e\xa3\xff\x18\x89\xa6\x87\x1b\xa8\xdf\xe0\xcd\x58\x16\x7c\xa9\x48\x7d\x71\xbf\x18\xd2\xf4\x98\xba\x83\x2f\x0c\x25\x94\xc9\xbc\x69\x90\xfe\x02\x47\x9c\x81\x8c\x69\x78\x24\x6d\x42\x10\x07\x32\x4c\x52\x4c\xee\x25\xd5\x09\x12\x32\x0b\xef\xde\xce\x65\x77\x04\xa1\xc5\x13\xbe\x67\x1b\xb7\x68\x24\xa1\x2f\x6d\x5a\x25\xe9\x4f\x48\xad\x3b\x3c\xa0\x69\x1a\x14\xc2\xcd\xa4\xe9\xe1\x83\x3e\x6e\xe4\x52\x92\xf0\xd8\x1b\xc4\x34\x6c\x9c\x33\x14\x51\x03\xa7\xe9\x01\xa4\x20\xfc\xe5\x7c\x03\xf8\x00\xc5\x34\x6c\x6e\xc6\x92\xa2\x68\xc3\xc3\x81\x05\x89\xc4\x34\xc4\xe4\xfe\x96\xb1\x4f\x41\x4c\xa0\x6d\x91\xd5\x9e\xf3\x8d\x51\xca\x47\x8d\x44\xf0\xdd\x50\x88\x18\xc9\x2f\xf4\x55\x33\x6e\x44\xf8\xa0\x6f\x49\x9c\x36\x19\x65\x75\x87\x24\x48\x1f\xb7\xa6\x49\x3c\x0d\x05\x62\xf9\xbd\x92\xc0\x58\x1e\x0c\x6f\x25\x5b\x75\x7b\xab\xd8\xaa\xdb\xc4\x21\x8e\x44\x11\xce\x62\xce\xb9\x4c\x3b\x3f\x57\x69\xe7\x32\x2d\x4a\x93\x73\x95\xfc\x0e\xa9\x8c\xc4\xb9\x55\x21\x93\x44\x9c\x73\xc5\xe0\xa8\xe4\x2e\x7c\xe7\x89\x5d\xc5\xa1\xdc\xe6\xec\x8e\xac\x3a\x67\x77\xce\xf3\x68\x59\x2b\x44\xcf\x24\xcb\x71\x2b\xab\xb9\x05\xd0\x44\x26\x55\xf1\x1d\x62\x14\x1b\xb9\xb6\x4b\x3c\x9c\x1f\xf3\xdf\x23\x67\x26\x39\x37\x67\x26\x1b\x30\x0b\xef\x54\xdb\x66\xb3\x1f\x60\xe7\xb4\x3a\x4b\x3a\x8c\xe2\x32\x5b\x38\xfb\xb7\xc0\x54\xf0\x97\xb3\x7f\x0f\x52\x19\x08\x53\x10\x1c\x9d\xaa\x1a\xfa\x4c\x47\xea\x21\x50\xf1\xef\x10\xf4\x04\x71\x66\xc5\x50\xaa\x08\x56\x1a\x4d\x15\xf7\x4c\x0d\x28\x04\x3c\x2f\x1f\x5c\x3b\x6c\xe7\xf7\xf4\x89\x7c\x96\x8f\x26\xcb\xbf\x9e\xe5\x5f\xb2\xbd\x3b\x58\x54\xab\xbb\x37\x38\xdb\xd9\x77\x94\xaa\xe2\x88\x67\xdf\x53\xd0\x2a\x03\xb3\x4e\x16\x51\x35\xaa\xf2\xdf\xc3\xed\x1a\x58\x0f\xf3\xbb\xad\xd9\x06\xb7\xab\xfb\x0e\x94\xb2\x54\xdd\x30\x14\xb2\xeb\x77\xcc\x75\x33\xbf\x81\x3d\xfe\x07\xa3\xce\xe9\x2a\x9e\x85\x77\x93\x61\x02\x3f\x67\x2b\x96\xca\xdf\x73\x36\x8b\xd5\xd7\xd9\xf5\x8a\xc3\xc7\x73\x1e\xc9\x9f\xd3\x50\xac\xb8\x1c\x2f\x9b\xbd\xfd\xa0\x00\x49\x28\x12\x84\x2c\x2e\x0b\xca\x32\xb2\x40\x29\xef\x0b\xc8\x3b\x19\x26\x93\xb3\xd5\xe4\x9c\x4d\xce\xae\x27\xcf\xf9\xe4\x34\x2c\x65\xfa\x3b\xf0\x68\x3f\xc1\xdf\xdf\xcb\x9c\xda\x3f\xff\x3d\x4e\x4d\x92\x7a\x12\x4a\x56\x2d\x95\x7f\x56\xf2\xcf\xa2\xcc\xb4\xf5\xcb\x3c\x9b\x37\xc6\x92\xf4\x23\x65\xcb\x2b\xd7\x92\xbd\x9e\x81\xc5\x32\x36\x32\xe5\x15\xaa\x92\x92\x72\x92\x8e\x0d\x15\xc7\x16\x63\x92\x9a\x8b\x78\xb2\x52\x5f\x09\x26\x8b\x3c\x75\x91\xa7\x2e\x4c\x2a\x60\x1a\xe6\xac\x5b\x9a\x7f\xad\xf2\xaf\xc5\x06\x63\xa7\x5a\x94\x6a\x56\x2d\x05\xbe\x6e\xa5\x43\x2b\x08\x2d\x74\x68\x61\xb1\x71\xa5\x89\xbd\xc5\x20\x2d\x76\xb3\x58\xdb\x4b\x89\x56\x40\xdc\xc8\x6c\x56\xeb\x77\x64\x7d\x88\x6f\x5b\x7d\x27\x5a\x0f\xc1\x48\xbf\x0d\x63\x18\xc5\x0f\x41\x08\x1f\xe4\x1e\x3f\xb2\x0d\xa1\xc3\x75\xb2\xe2\x29\xc2\x8f\x3c\x3f\xcb\x3c\xbf\xc8\xf8\x9b\x9e\xd6\xef\x81\xc7\xda\x29\x37\x2d\x1f\xd3\xb4\x9a\x23\xb2\x21\x6b\x6b\xbd\x28\x5e\x09\x06\xc1\xd2\x85\x1e\x13\x1b\xab\x67\x62\x80\x00\x1d\x92\xfb\xfc\x4b\xb9\x97\xbf\x7c\xa9\xe5\xb7\x8e\x04\xab\xf6\x87\x6b\x99\x70\x7d\xad\x13\x3e\x32\x88\xfc\x24\x23\x3f\x7d\x7a\x58\xda\xab\x51\xcb\x32\xbf\xa3\xf6\x9f\xeb\xe5\x72\x4b\xcc\xac\x2f\xe1\x9d\xc6\x47\x66\xdd\x4d\xe2\xc6\x6b\xb4\xd1\x22\x1f\xe7\x40\xd2\xf4\x3f\x01\x63\xe2\x52\x36\x4d\xe2\x99\x0d\xfa\xe5\x43\xf8\xd9\x4d\xda\x8d\xdd\xcb\x87\xb1\xfb\x16\x90\x1d\xb8\xfd\xc6\x90\x13\x82\x7c\x15\x3e\x9f\x80\xa9\x8e\xdc\x86\x61\x98\x88\x73\xad\x36\x60\x15\xf2\xda\x6a\x4f\x0b\x1d\xc2\x84\xfa\x7c\x52\x7c\xbe\xcc\x37\xd8\xeb\xfc\xeb\x53\xfe\x25\x27\x40\xce\x6d\xc9\x41\xcf\x03\x72\xb0\x8b\x14\xd9\x51\xff\xcc\xbf\x65\x8b\x3f\x6a\x00\x56\xca\xcb\x3c\x05\xe4\x42\x2f\x1d\x22\xe1\x8f\xc9\x1d\xd3\x31\x92\x19\xfc\xf4\xa9\xc2\x62\x47\xf1\xb8\x72\x03\xdb\x13\xa3\x3b\x36\xa6\x7e\x07\x4c\xff\xdc\x20\x36\x52\xa6\xd0\x21\xce\x93\x4a\x63\x9f\x49\x94\xbe\x5b\x5a\x5b\x6e\x94\xbe\x1b\x22\x90\x20\xe4\xb3\x1e\xf6\x51\x00\x73\x2d\x7b\xef\xba\x02\x8e\xaa\x57\xa2\x40\x60\x23\xd6\x0a\xc0\x74\xdf\xd5\xc2\x76\xe8\x83\x6a\xc4\x73\x4d\x3c\x7f\x2f\x07\x53\xf0\x9e\x31\xc6\x44\x8c\xae\xca\xd1\x32\x72\x67\x3d\xb2\x17\xbf\x51\x53\x07\x4e\x16\x3f\x5e\x2d\xf1\x21\xfa\xb2\x1c\x1d\xed\xc4\xe6\xe5\xff\x74\xab\x0b\xb8\xff\x37\x5a\xa9\xf9\x23\x21\x08\x17\x70\x99\x21\x5b\x9b\xaa\x95\x16\x0b\x7a\x2f\x27\x50\x3c\x0b\x79\x70\x9f\x86\x4b\x76\x12\xde\x05\xce\xe8\x2c\x99\x85\x77\xb5\x50\x8c\x6b\xaf\xcf\x1c\x12\xb3\x2f\xc2\xc4\x2f\x13\xce\x93\xdb\x52\x92\x64\xdc\x02\x60\x0f\x6b\x23\x13\xbf\x08\x53\x5d\xe4\x03\x4b\x05\xe3\x36\x38\x99\xa6\xca\x8c\x5e\x87\xa9\x18\xd7\xca\x45\x25\x16\xcf\x16\x29\x0b\x9c\xd7\xce\x9a\x94\x75\x03\x82\xfb\xd7\x67\xa7\x81\x73\x1d\x2c\x97\x41\x9a\xd6\x9e\x38\xe4\xf5\x99\x0a\xc2\x77\xe0\x0c\x87\x07\x27\x27\x07\xea\x8a\xea\x35\x84\x87\xc3\xda\x09\xa9\x99\x98\x8d\xa8\x5a\x5e\x14\x92\x24\x22\xa4\x56\x95\x61\x4d\x2c\x0d\x87\xc0\xd1\x2a\xe9\xb5\x59\x28\x98\x43\xb4\xe6\x49\xe0\x3c\x9a\x39\xea\xac\x0e\x22\xba\xb7\x2a\x1a\xb6\x9f\x40\xa9\x03\xf8\x70\xf9\xbf\x08\x45\xf4\x99\x9d\x45\x4b\x16\xdc\xcf\x57\x62\xc5\x59\xe0\x44\x71\xed\x51\xea\x90\x9b\x30\x15\x81\xf3\x28\xad\x85\x57\x89\x43\xd2\xc0\x09\x6b\x73\x76\x5b\xd3\xb4\xd2\x21\x69\x2a\x6b\x29\xc2\x4b\x99\x43\x51\x57\x87\x2c\x97\x90\xa8\x89\xad\x43\xae\x03\x27\x8c\x6b\x8a\x62\x5e\x5f\x43\xda\xb5\x1a\xfb\x99\x2c\x06\x07\x95\xd9\x0c\xe2\x25\x3b\xe0\x90\x21\x40\x53\x42\xf9\xe1\x50\x01\x03\x49\x93\x43\xee\x64\x92\xba\x6c\xbc\xbb\x83\x14\x19\x48\x9d\x35\x51\x39\x82\x77\x8c\x58\x52\xa9\xe0\x4f\x06\xa6\x1d\xc1\xfd\x2c\xb9\x0d\x5c\x32\x4b\xee\x82\xde\xda\x58\x7b\xa4\xc1\x3f\x18\xb1\xb8\x90\xe0\x45\x11\x54\xc5\x3f\x30\x52\xda\xbe\x83\x83\x51\x78\x33\xbe\x68\x0d\x96\x83\x8b\xd6\xe0\x20\x5a\x93\x48\xd0\xfb\x35\x49\x44\xe9\x92\x1c\xb4\x47\xf2\xb3\xff\x60\x43\xb9\xad\x50\x00\x98\x38\xc4\x69\x3a\x38\xb0\xa4\xb3\xa0\x53\xa2\x95\x9a\xe5\x21\x05\xe4\xd1\x91\x00\x27\x16\xbb\x4d\xe3\x8c\x11\xdf\xa6\x31\x1f\x06\x8b\x7f\x2a\x44\x6b\x12\x5e\x5e\xf2\xc2\xb8\xb0\x75\xa0\x48\xf6\x81\xd3\x90\xdc\xae\x40\x02\xaf\xa7\xa0\xee\xc3\xf0\xbd\x51\x37\x85\x6a\x2d\x3b\x2a\x61\xcb\xc9\x0b\x0d\x09\x84\x38\x4d\x90\xc0\x83\xa9\xc4\x3d\x58\xa8\x6c\x78\x20\x04\xe5\xc1\xbf\xad\x99\xfc\x1a\xf0\xab\x81\xa9\xb3\x72\xb9\x92\xac\xe2\x59\xab\x76\x12\xcd\x6a\x77\xc9\xaa\x36\x4f\xf8\x15\x13\x35\x91\x80\xa7\xa5\x5a\x24\x06\x8e\xa4\x3c\xba\xa5\x96\xbe\x86\xc8\xaf\xe6\xb4\xc7\x0e\x61\xc4\xed\x5a\xd5\x13\x9a\x09\xd6\x26\x7b\x46\xab\x21\x06\x51\xa4\x68\x49\x50\x94\x69\x4b\x14\xc8\x87\x3f\x21\x47\x35\x48\x21\xf8\xf6\x33\xe3\x3c\x9a\xc9\x03\xe2\x2a\x65\x35\x65\x6d\xa1\x05\xe8\x2a\x07\x52\x3d\xfd\x26\x5c\x32\x22\x9b\x3e\x8f\xae\xb0\x44\x7b\x7a\x1d\xc6\x57\xac\x16\xc6\x35\xf6\x25\x4a\x45\x14\x5f\xd5\xf4\x36\x6a\xa0\xd8\xf5\x54\x42\x49\xaf\xc1\x21\x4d\x12\x2f\xee\x6a\x97\xac\xb6\x4a\xd9\x4c\xf6\x4b\x0d\xfc\x40\x49\x80\x21\x98\xa2\xab\xa2\xb5\x53\xc6\x6a\xd7\x42\xdc\x04\x07\x07\xaa\x82\x3f\xd3\xd6\x34\x59\x1e\x5c\xad\xa2\x19\x4b\x0f\xfe\x7f\x07\x5a\x01\x3c\x3d\x50\x15\x37\xf5\x14\x01\x90\xcb\x84\xb3\x5a\x14\xcf\x93\x16\xf8\x8e\x81\xbe\x68\x4d\x14\x22\xf9\x55\x87\x56\xa8\x6d\x29\x0f\x2f\x0a\x71\x9c\xc7\x47\x62\x54\x4e\x1a\xe3\xb8\x22\xb2\x04\xb5\x18\x36\xc4\x69\x2a\xd0\x06\xec\xfc\xe6\x24\xd9\x02\x93\x65\x68\x3b\x12\xec\xdd\xb7\xa3\xd5\x71\xf0\x3e\x0e\x97\x2c\x60\x44\x55\x1f\x88\xb5\x32\x41\xda\x8b\x25\x87\xa3\x22\x4b\x2b\x03\x4e\x2a\x43\xf4\x14\x81\x09\x8e\x04\x2b\x17\x29\xfc\xb4\xe6\x09\x7f\x16\x4e\xaf\x4b\x4e\xbc\xe4\x4c\x6c\xc9\x3a\x08\x6b\xe9\x11\x5c\xc3\xda\x63\x98\x6c\x2c\xb5\xa9\x28\xcb\xc4\xeb\xf5\xdc\xda\xc4\xfa\x54\x53\x1d\x34\x6d\x36\xe2\x30\xd9\x2f\x2e\x6f\x01\xc4\x3e\x18\x4a\xc9\xee\x14\x14\x68\x4c\x71\xb7\x0b\x7a\x3a\xeb\x4d\xe5\x01\xdb\x50\xc9\x1c\xf6\xa9\xfb\x73\x52\xa8\xe9\xa8\x0c\x82\xa2\x88\x4a\x82\x37\x4a\xc6\xd8\xc8\x1b\x9a\x0e\xc6\xc6\x82\x82\xcb\xa1\x53\x19\x1a\xde\x18\xe3\x01\xb7\x72\x81\x0e\xf6\xcf\xee\xb1\xf8\x59\xad\x50\x89\x5b\x64\x09\x46\xf5\xd9\x4f\xc2\x33\x08\xc7\xb2\x39\xbc\x70\x62\xf5\x0b\x15\xf5\xfa\x33\x14\x29\x37\x05\xbf\x50\xd1\xf4\xf0\x25\x67\xe1\xa7\x3d\xd1\x6c\xae\x93\x46\x23\xd7\x9e\x17\xeb\x92\x7a\xf9\x5c\xd8\xea\xd1\xb2\xe7\xf2\xeb\xb7\x7a\xbd\xe9\x53\x0a\x16\x7d\xb9\xf5\x1d\xa8\x17\xf3\xd1\x92\x8d\x8f\xdd\x2c\xf3\xbc\x63\xf8\x1e\x2c\x59\xc0\x47\x9f\xd9\xf8\xd8\xcb\x32\xf8\xf8\x65\xc8\x10\x1f\xdd\xb0\x31\x81\x0c\x78\xf0\x59\xe6\xb8\x53\xc5\xfc\xce\x31\x7c\xcb\x2f\x4a\x29\x7c\xd7\xeb\xc8\xdd\x97\xdf\x57\x32\x5e\x7d\x5e\x16\x9f\x13\x09\xe3\x4e\xc2\xb8\x52\x30\xba\x47\xc7\xf0\x3d\xb8\x92\x91\x97\x56\xe4\x25\x1b\x0f\x2e\x65\xe4\x44\x45\x1e\x1d\xc9\xd8\x09\x1b\x0f\x26\x2c\x68\x7a\x04\xda\x33\x31\x0d\x3a\x31\x32\x78\xd9\xb2\xe3\x1b\x96\x65\x9f\xd9\xb1\x50\x6a\xd4\x9f\x81\x19\xb7\x73\x4b\x56\x29\xad\xd7\x9b\x9e\x52\xc5\x40\x82\xde\x56\xe6\x01\xbb\x43\x2b\xd7\x33\x93\xcb\x64\xa2\xa2\x74\x1d\x79\x2d\xf2\xf3\x44\xf9\x4a\x92\x19\xfd\xfc\x81\x08\x2c\x7a\x3e\xb3\x46\x4d\x4b\xa0\x40\xfc\xa4\x2f\x6e\x27\xda\x1c\x73\x45\x16\x20\xdc\x59\x51\x46\x16\xc5\xa5\x0d\x6f\xc5\xc9\x2d\xc2\x98\x44\x74\xd5\x9a\xac\x52\xf6\xfe\xec\xe9\x60\xb4\xd8\xba\x03\x22\x26\x6a\xa8\x35\x44\x16\xf9\x9d\x8c\x00\xfd\x74\x55\x66\xb3\x40\x29\xb7\xce\x4a\x58\x6b\x72\xab\xac\xa0\xc0\x6a\x34\x94\x93\xa4\x14\x5e\xca\xf0\x0e\x6d\x5e\xd5\x3e\xb2\xda\xcb\xc9\x28\xdc\x26\x4f\x6e\x71\xeb\xc5\x0b\x63\x64\x25\x5a\xe7\xc5\xe7\x33\x9c\x50\x8f\x84\xb4\x43\x38\xbd\x96\x14\xf3\xc5\x0b\x02\xd5\xc8\x29\xf9\x9e\xa1\x4f\x02\x61\xe2\x91\x0e\x86\xeb\x10\x49\xcc\x21\xd7\x39\xf1\x30\x41\x28\x52\xa1\x67\xc4\xc3\x58\x4e\xe9\xfe\x71\x24\x67\xc4\x8a\xee\xbb\xea\x4a\xfb\x3e\xb1\x89\x8d\x64\x97\x5a\xb3\xe4\x96\x84\x15\xb1\x77\xca\x11\x22\x35\x95\x26\x24\xc4\x7b\x1a\xa9\xab\xab\x02\xa9\x45\x19\x93\x5b\xb2\x00\x11\x9f\xb1\x00\x15\xad\xd9\x40\x22\x26\x5a\x33\x2c\x67\x75\xcf\x42\xc9\xcc\x91\x16\x1b\x40\x0e\xd6\x48\x08\x12\x2d\xa6\xf2\x89\x16\xcb\x73\xe2\x20\xa2\xc9\x3a\x96\x6d\x8a\x7f\x39\x67\x88\x03\x3a\x83\x8a\x49\x4e\xf7\x5d\x0d\x76\x55\x91\x3c\x0b\xef\x64\x06\x94\xd2\x5f\x25\x10\x3d\x44\x38\x6f\x0d\x55\xba\x77\x70\x3d\x6f\x16\x18\x4d\x8b\x0b\x2f\xbc\x06\x33\xe1\xdc\x62\xcf\x5a\x84\xa1\x6c\x7f\xde\x2b\x91\xfc\x8b\x09\xb2\x33\xfd\xf2\x85\xa1\x10\x67\x19\xd8\xe6\x5b\xf1\xb2\x95\x3b\x16\x37\x85\x03\x16\xfd\xca\x50\x48\xdc\x12\x56\x1a\xe7\xa5\xdc\xc9\x36\x66\xbb\x99\xa6\x79\x82\x9a\xcb\x46\x06\xda\x2e\x4d\x5f\x31\x06\xd5\x21\xfd\x4d\x41\x34\x1a\x8d\x84\x12\x03\xe7\x12\xd3\x52\x72\xa9\xf4\x40\x92\x5a\x31\xf0\x02\x37\xd0\x31\x7b\x40\x1c\x21\x00\xf4\xd1\x35\xa1\xab\x52\xe8\xb2\x14\x9a\x00\x25\x65\xad\x89\x3e\x27\xd2\x7d\x97\x18\x10\xd4\x55\xfa\x12\x54\xa6\xeb\x55\xff\xd5\xb6\xca\x25\xd6\x72\x53\xeb\x2f\x2d\x94\x30\xf3\x0b\xe9\x01\x4a\x0b\x52\xa2\xaf\x9a\xad\x72\xc5\xa5\x72\x5a\x26\x0e\xb8\x5e\x07\x7b\x1f\xeb\x3a\x19\x07\x36\xa8\x32\x98\x74\x8d\xed\x4b\xe5\x14\x13\x58\x73\x1a\x6f\x63\xe1\x69\x2e\x88\x03\x13\x01\xa1\x62\x66\x89\xaf\x4b\xe0\x15\x66\xfa\x2e\x7b\xa8\x85\x5f\x56\x79\x13\x85\x9b\x4c\xdb\xcf\x16\xdd\xa7\xfa\x32\xd4\x32\x21\xac\xa9\x98\xe5\xc0\x6e\x72\xdb\x9a\x41\x05\xb7\xad\xd9\x3e\xa5\x89\x99\x82\x1b\x06\xe7\x60\x36\xa6\xb4\x6f\x05\x3d\xf8\xd7\x45\xfa\x18\xa1\x41\xa0\xb4\xc8\xef\x7b\xeb\x0c\xf4\xdd\x71\x13\x0d\x82\x8b\xd9\xc5\xac\x29\xff\x64\xe7\xfa\x53\x7d\x64\x4a\xb7\x1d\x7e\x30\x46\x83\x00\x9d\x65\x35\x8c\x8c\x12\xfa\xc6\xef\xa8\x45\xc6\x17\xb3\x06\x1e\xc0\x7f\x34\xba\x68\x5c\x6c\x29\xac\x67\x17\xe9\xe3\x8f\x32\xfd\xa7\x03\xb2\x7c\x00\x2b\x8d\x54\x81\xd3\xf7\xa1\x54\xfe\xf9\x51\x84\x3e\x8b\x5d\x6a\xf6\xe4\x4e\xd0\x91\x51\xca\x6d\x0e\x87\xcd\x93\x13\x87\x1c\xe4\x48\x37\xf3\x0e\x3c\x18\x6b\xdd\xdd\x3c\x13\xb4\x67\x23\xc3\x8b\x17\x2f\x5e\x34\x47\xe7\xe3\xf3\xf3\xe6\xb3\x3c\x8b\xe9\xfa\x8d\x1c\xe5\xf4\x03\xb2\xef\xe5\x55\x9c\x94\x2a\xb8\x6f\xaf\xed\xda\x4b\x55\xdb\xc5\x3e\x7c\x18\x0e\x6d\xf4\x3d\xb7\x28\xa7\x53\x2e\x66\xf7\x87\xeb\x1c\x0f\x40\x23\xc7\xf3\xbc\xa8\x29\x4f\xb4\xd3\xfc\xb5\x5d\x59\x8e\x62\x7f\x7d\x30\x1e\x93\x2b\xe8\xc6\x97\x2f\x95\xf8\xa6\x75\x7a\x7a\x7a\x0a\xc9\x17\xb3\x20\xff\x73\xd1\xba\x98\x35\x00\xbe\xc9\x47\x2a\xf3\x91\xcd\x6c\x5b\x39\x8a\x54\x3b\x49\xc7\x2e\x97\x65\x04\xf2\xff\x56\xf5\x32\x0f\xa9\xc8\x43\xca\x59\x36\x52\xf3\x14\x2b\x5e\xc7\xe9\x18\xd9\x15\x97\x30\xfb\x0f\x06\x92\x0c\x5d\x20\x74\xd1\x1c\xc8\xa9\x7a\x10\x15\xb2\x8c\x89\xa8\xe4\x48\xc0\x9e\x9b\xac\xe8\x8d\x68\xb1\x2f\x6c\x8a\x52\x9c\x65\xcb\xfc\x5b\x72\x2b\x2b\x75\x3e\x00\x9a\x10\xa5\x09\xf8\x4c\x00\x53\xa4\x3b\xb1\x69\x8b\x14\xcd\xd1\x9d\x18\x89\xf1\xc8\x1b\x2b\x08\xab\x91\x3c\x29\xdc\x47\x54\x45\xbb\x63\x30\x83\xdd\xa7\x3a\xec\x8f\xf7\x80\xc3\x5f\xe7\xa7\xc3\x08\x5b\xae\x6b\x90\xe5\x06\x62\xdf\x53\xc8\x8c\xda\x63\x73\x5e\x91\x38\x5c\x55\xe1\x70\xb5\x81\x43\x5b\xe2\x90\x50\xb4\x1a\xf9\xe3\x2c\x73\x6a\x0e\x6e\x5c\x69\x7c\x36\xeb\x4f\x1e\xa8\x7f\x0d\xc7\x2f\x63\x07\xff\x50\x4e\x85\x69\x67\x0c\x67\xa1\xfd\xcf\xc2\x20\xd2\x19\xe3\x87\x4a\x85\xd4\xf9\xe8\xac\xc1\xb3\x42\xd4\x40\x49\x96\x39\x0e\x6e\xa0\x10\x7e\xc9\xa9\xc8\x95\x97\x4a\xc5\x80\x24\xdf\xca\xe1\x97\xe4\x6b\x98\xc4\xd9\xd9\x8a\x65\xe7\x6c\x96\x9d\x5d\xaf\xb2\xe7\x3c\xca\x4e\x43\x91\x9d\xae\x62\x4c\x06\x17\x29\x1e\x20\x2d\x39\xc4\x17\x29\xfa\x2d\x8c\xb3\xe7\xec\x32\x1b\x86\x3c\x7b\x72\xc3\xb3\x61\x78\x97\xfd\xb6\x8a\xb3\xdf\x56\x8b\xec\xc9\xea\x2a\x3b\x65\x37\xd9\xdb\xa9\xc8\xde\x24\x9f\xb3\x13\x36\x95\x45\xe4\x9a\x24\x9d\xb5\xfa\xbc\x98\xe1\x40\xfd\x48\xf2\xa6\xbe\xf0\xe0\x22\x95\x98\xbc\x3f\xcb\x5e\x0c\xcf\xb2\xd1\xb3\xa7\xc3\x77\xe3\xd1\xe9\xc9\xf8\x0c\x67\x68\xf4\xf1\xeb\x58\xfe\x28\x5a\xd1\x59\x63\xfc\xd3\x01\x30\x97\xcf\x04\xbd\x7f\x7f\x16\xb8\xe4\xc5\x50\xfe\x7d\x76\x72\x16\x34\xfd\x8e\x4b\x9e\x9d\x9e\x05\xcd\xb6\xeb\x92\xa7\x27\xe6\x03\x62\x7a\x2e\x19\x9e\x98\x0f\x19\xd3\xf1\x5d\xf2\xee\xc4\x7c\x40\xcc\xa1\x6b\x89\xf2\xbe\x6c\x4e\x7f\x7a\xab\x87\x45\xf6\xa6\x65\xba\x83\x46\xff\xc2\xe3\xc7\x17\x38\x1b\x5d\xc4\x17\x02\xac\x68\x6a\xb6\x6d\x0f\xba\x48\x2f\xd2\x06\xde\x8a\xff\x97\x8c\x7f\x7c\xb0\x61\x08\x24\xe3\x7e\x3a\x50\x2a\x87\xd1\x1c\x19\x35\x2f\x5a\xc5\xb1\x18\xc7\xbc\xa3\xad\x23\xc4\x86\x3d\x42\xae\x92\x76\x4c\x3b\x47\x03\x9f\xb5\x1b\x22\x10\x60\x62\x02\x26\x07\x32\x04\xcc\xe9\x9f\xb9\xee\x38\x12\x98\xe4\x30\xb8\x84\x51\x04\xe3\x72\x30\x92\xc1\xc2\x4e\xaf\x5e\xd7\xd7\xf2\x79\x86\x44\x66\xc0\x24\x5c\xa3\x68\xd4\x91\xec\x6d\x5b\xfe\xf1\xe5\x9f\xae\xfc\xd3\x93\x7f\xfa\x63\x68\x2f\xa7\x09\x89\x29\x23\x48\xd0\x48\x92\x82\x7a\xfd\x83\x8d\xd3\x3e\xb5\x4e\x74\x92\x3a\xf0\x91\x27\xff\xf8\x63\x9c\x33\x42\xc0\x8e\xc4\x55\xec\x08\xd9\x47\x71\x69\x01\x99\xc5\xb5\x27\x19\x1e\x9a\x10\xed\x53\x64\xf3\x86\x24\x9a\xa3\x5c\xa8\xf2\x4c\x68\xf7\x86\xb9\x30\xd1\xd5\xfe\xbc\x37\xba\x2b\xa2\xf1\x23\xcf\x35\x5e\x13\x50\xdc\x8c\xf0\x81\xe7\xba\x8f\x7b\x6e\x23\x92\x3d\x71\x28\x5b\x7d\x24\xff\x78\xee\x58\x33\xa9\x5f\x4b\xee\xc5\x24\x52\x2a\xe1\x47\x18\x39\x20\xbb\xda\xc1\x11\xdd\x77\xab\x08\x40\x61\xbc\x24\xb4\x67\x23\x49\x42\xf6\x29\xe5\xad\x57\xa7\x6f\x27\x87\x3d\xd7\xc3\x76\xe4\x1f\xcf\x9f\x4e\x24\x38\x7c\x0f\xfd\x34\x1a\xab\x4a\xc0\x1d\x11\xdd\x57\xed\x17\xf6\x99\x95\x4c\xc9\x9c\x3a\x4e\x03\xb6\x8a\x19\x9d\x1b\x89\xd0\x8d\xf6\x95\x11\xd1\xbf\x00\x3a\xc9\x8f\x8e\x38\x37\x5d\xcd\xb2\xd1\x58\x9f\x36\x22\xdb\x07\x6c\x02\x47\x0b\x82\x62\x8a\xe6\x3a\xf3\x82\xa1\x84\x30\x0c\x45\xf0\xc8\x05\x93\x7c\xf7\x18\x85\x74\x5e\x5c\x56\xcd\xf3\xd9\x13\xe3\x5c\x34\x55\xaf\x43\x03\x2c\xe7\x54\xc6\xc1\x34\x99\xcb\xc2\x20\x85\xb2\x4b\x36\x72\x17\xd7\xe4\xa6\x51\xf8\xbb\x26\xbf\x8e\x92\xf1\x00\xc5\x03\xbb\x3f\xbc\xc0\x02\xae\xbd\x1d\x19\x9d\x94\x94\x26\x64\x9a\xcb\x95\xd1\x8a\xc6\xb8\x5e\x5f\xa0\x39\x23\x29\xae\xd7\xe7\x6c\x94\x8e\xd1\x8a\x4c\x5b\x93\x90\x4c\x49\xaa\xcc\x51\x8c\x7f\x25\xb9\x93\xec\x84\xbc\x07\x29\x25\xb7\x4b\x74\xd6\xbc\x21\xee\xf1\xfc\x1b\x6d\x9e\xe3\xfc\xb0\x74\x4c\x3d\xbf\x5e\xdf\x77\x8d\x00\x4c\xdf\x4c\xca\x23\x50\x71\x24\x43\x76\x92\x7e\x5f\x40\xcf\xba\x0d\xbf\x57\x70\x3a\x33\x22\x3d\x9d\xa5\xb8\x1d\x2e\x6e\x8a\x8b\xc3\x5a\xe5\xd5\xe4\x5e\xc9\xf1\x18\x1f\x88\xc0\x9c\x74\x0c\x00\x89\xc9\xa0\x1c\x04\xe5\xf7\x20\xf7\x8f\x13\xa5\xef\x86\xf5\x3a\x42\xb1\xfe\x56\xbe\x02\xc4\xb1\x6c\x2f\x12\x0d\xea\xf9\x98\xc4\x59\xe6\xf9\xfb\x94\x8a\x2c\x93\xbc\x02\x06\x05\x8f\xc2\xd9\x4f\x8e\x25\xb1\x50\xc7\x04\xa4\x52\x64\x5e\xec\xb5\xb0\x6f\x28\xc1\x38\x70\x50\xc5\x6a\x7b\x6b\xed\x28\x0b\x32\x27\x4b\x72\xa7\x98\xa9\x89\xfc\x99\x5b\xef\x36\x68\xf7\x42\xf9\x57\x96\x4d\x41\x3e\xb0\x50\xa7\x3c\x4a\xe9\x9d\x71\x29\x4e\x29\x9d\xd4\xeb\x8e\x23\xe3\x06\x37\xe8\xde\xf2\xa2\xe6\xae\x71\xb0\x6d\xb9\xa0\xcf\x77\x11\xbd\xb3\x04\x37\x37\x9c\xc1\xe0\xa1\x3b\x8c\xc9\x25\xba\xc3\xe0\x07\xf6\x0a\xcd\x85\x8c\x09\x50\x2a\xa3\x80\x44\xdd\x05\x31\x9a\xe0\xc1\x4e\xa1\xd5\x9e\xf6\x09\x2f\x5b\x64\x96\x89\x6e\x98\x62\x08\x6d\x9f\x63\xfa\xa4\xbe\xe1\x8f\x48\x93\x08\xf7\xe7\xe8\xd8\x82\x02\x9e\xe8\x13\x2a\x79\xc9\xcf\xca\x1f\x48\x71\xe2\x55\x07\x64\x39\x94\xe6\xbb\x88\xc5\x44\x48\xfe\x48\x42\x1a\x45\x63\xc9\x15\x09\x4c\x66\xca\x34\x35\x69\x80\x87\xa7\xf2\xba\x21\x49\x83\x7a\xee\x63\xe5\xfe\x6b\xdb\x65\x19\x81\x84\x74\x9a\x70\x46\x13\xa2\xb9\xc0\x38\xcb\x92\xe3\x58\x59\xbb\x26\x84\x53\x81\xf1\xde\x14\x31\xc2\xb3\x0c\x26\x11\x0e\x26\x03\x20\xb6\x41\x82\x16\x20\xc8\xc3\xad\x49\x84\x07\xa2\xd4\x78\x23\xa3\x0c\x52\xb4\xd8\x4c\x5b\x18\x47\x7e\x32\x7d\x6b\x50\x17\x03\x34\xa7\xc2\x4c\x0e\xb4\xa4\x97\x9a\x57\x99\xcb\x6a\xf0\x00\x4d\x84\x5c\xe8\xe0\x51\x68\x9e\xef\x05\xf5\x3a\xd2\x37\x61\x45\x1c\xf9\xf2\xdd\x39\xb9\x7e\x76\xe4\x39\x4f\x96\x30\xe5\x9e\x6b\x9f\xee\x68\x8e\x31\xc6\xc1\xbc\xd4\x80\xc6\x12\x58\xfb\x20\x96\x6d\x93\x03\x15\xd2\x15\x5a\x14\xe4\xa1\x42\xe7\x76\xcb\xa8\x72\x06\x66\x36\x41\x24\x41\xd8\xf9\xcb\x12\x60\x41\x4f\x60\x86\x63\xb5\xad\xaf\xd0\x48\x28\xc9\x9c\x36\xbc\x22\xa2\x35\x0b\xef\xb2\x4c\x80\x81\x0d\x11\xa0\x2c\x24\x13\x61\x2f\x25\x42\x6b\x06\x41\xcc\x62\x11\xa9\xd0\xb8\x0a\x41\x56\xaf\x57\xe1\xc8\x30\x38\x2b\x08\xc2\x8a\x61\xc4\xc1\xee\x6e\x83\x89\x69\x5c\x8c\xcd\x40\x56\x86\xc1\x71\x75\x4e\x42\x72\x37\x8d\x85\xb4\x8a\xac\xe8\xbd\xf1\x8e\xbd\x0f\x17\x07\xf5\x3a\x9c\x98\x78\x96\xa1\x84\x72\x52\x10\x69\x14\x21\x86\xcb\x02\xe7\x68\x8e\xb4\xfb\x98\x2b\x26\x2c\x07\x96\x6f\xc2\x25\x4b\x73\x0e\xa7\xf0\xde\x53\x91\x4b\xae\x6a\xed\x13\xc5\x32\x32\x54\xfe\x59\x80\x8b\xd8\x78\x35\xa5\xf0\x5a\xe7\xe5\x68\xaf\xa1\xd9\x31\xa0\xe7\x5a\x56\xbc\xe0\xcc\x32\xc7\x7f\xb5\xed\x88\x6e\xdf\x25\xb9\x38\x9f\xae\x8c\xd7\xb7\x50\x46\x2e\x28\x87\x12\x94\xc9\x1f\xb9\x3c\x56\xb9\x4f\xb9\x84\x68\x81\x1e\x90\xb8\xb7\x02\xad\xe4\x8c\xb5\x45\x60\x69\x2b\x9c\xcd\x90\xa7\xb4\xb3\xd3\x42\xb6\x68\x70\x49\x8b\x41\xf9\x24\x1e\x74\xa7\xe9\xe1\xf5\xce\x21\xa7\xa7\x48\x39\xee\xac\xdd\xf0\xe4\x73\x34\x63\xb3\x5a\x94\xc2\xa5\x77\x14\xd7\xc2\x1a\x67\xd3\xe4\x2a\x8e\xbe\xb2\x59\xed\x8f\xe7\x4f\x25\x0b\x56\x4b\x78\xed\xd5\xe9\xdb\xda\x1c\xe8\xa7\xb9\x30\x86\x8b\x75\xc1\x57\xfa\x7a\x2b\x5c\x2c\xd2\x9a\x04\x5f\x13\x49\xed\xcf\x54\xcd\x3c\x4c\x6a\xb7\xd7\xd1\xf4\xda\x54\xc0\xd9\x22\x0a\x2f\x17\xac\x16\x4e\x79\x92\xa6\xb5\x70\xb1\xa8\x5d\xf2\xe4\x36\x65\x3c\xad\x85\xf1\xac\xf6\x99\xf1\x34\x4a\xe2\xb4\x55\x7b\x93\xc4\xa6\xfe\x03\x59\xb9\x5c\x36\x1a\x83\xb4\x16\x72\x56\x9b\x45\xe9\x34\x59\xf1\xf0\x8a\xcd\xa0\xe8\x6d\x24\x81\xb1\x1a\x67\xcb\xe4\xb3\x6c\x53\x5c\x0b\xe3\xda\xea\x66\x9a\x2c\xa3\xf8\xaa\xb6\x0c\xff\x4c\xb8\x44\x80\x85\x29\x6b\xd5\xde\xc1\x6f\x8d\xb3\x39\xe3\x12\xe3\xef\xbb\xaa\xfe\x33\x6d\x4a\x3c\xb6\x2e\xa9\x4b\xeb\xb4\xbc\xb9\x48\xa2\xd0\xb0\x04\xc1\x4e\xcd\x18\xcd\x29\x8b\x6d\xc3\xfc\xda\xee\x5e\xd6\xa4\xe0\x7f\x4b\xf1\x30\xd9\xcf\x84\x1c\x41\x85\x29\xc2\x92\x82\xc8\xee\x35\x6e\x9b\xd8\x8c\xd4\x2c\xdd\x80\x65\xf8\xc5\xb8\x73\x6f\x7d\x67\x23\x97\x51\xdc\x5c\x86\x5f\x0e\x9c\x6d\xaf\x01\x9f\x44\xb5\xfd\x51\xe9\xdd\x0c\xcb\xbc\xba\x64\xb2\x0d\xe6\xbf\x03\xf9\x27\x60\xc1\x0d\x38\xcf\x79\xba\xd1\x14\x89\xec\xee\xa6\xc8\x86\xfe\x3f\xd1\x14\x99\x76\xcc\x4a\x4d\x29\xce\xf0\x43\x5b\x71\x45\x39\xb9\x84\xfb\xc9\x9c\x25\x8e\x91\xd0\xe7\x06\x41\xe1\x8b\xe4\x8f\x25\x19\xe2\xf7\x49\x20\xed\x0e\x0c\x72\x90\x88\x7a\x3f\x47\xc5\x43\x0f\x8d\x46\x84\xc5\x28\x1a\x97\x2c\xd9\x65\xc4\x88\x8d\x11\xd7\xfe\xf6\x47\xd1\xd8\x72\xb3\x05\xc6\xb4\x82\x8e\x8c\x27\x85\xbf\x56\x21\x17\x8c\xc3\x43\x4f\xca\x3c\x59\x5b\xf5\x28\xcb\x0f\xad\x7f\x6a\x94\xac\x1c\xb5\x1f\x41\x4c\xbe\x3b\xd9\x6f\x43\xbd\xb3\x14\x89\x4e\x40\x29\x93\xaa\xfd\x2f\xcb\x5c\xf0\x52\xab\xeb\x93\xc1\x88\xea\x3d\x51\x06\x12\xaa\xec\x30\xe4\xce\xa8\x6d\x49\x64\x74\x48\xf5\x7e\xe9\x92\x94\xaa\xcd\x52\x7e\xaf\xa8\xd9\x31\x65\x68\x41\xcd\xb6\x29\x43\x53\x5a\xda\x3b\xb3\xcc\xd5\xda\xf0\xe6\x10\x5a\xa9\x6c\x90\x6f\x19\x70\x89\xfc\x56\x1b\xfa\xfd\x21\x88\xc0\xb9\x53\xc9\x91\x18\xd7\xeb\xda\xd2\x7e\x24\xc6\xd6\x56\x52\xbc\x76\xb4\xef\x69\x1f\xaa\x7f\x58\xa3\x14\xc3\x5e\x34\xfa\x43\x8c\xe2\xb1\x12\xb3\xf1\xa2\x2c\x6c\xe2\xcf\x17\x09\x28\x2b\xe8\x2c\xe0\xa7\x31\x0f\x81\x1b\xc9\x7d\xd7\x3c\x29\x22\x77\x2c\x91\x1b\x43\x16\x2d\x4d\x69\x63\xda\xf0\x58\xfb\xf1\xa2\xd1\x63\x9d\xc7\x2b\xf8\x4e\x1f\xf7\xe4\xb1\xdf\x78\xef\x0c\xef\x52\xda\x08\x1b\xfd\xc7\x49\xc9\x98\x92\x36\xa2\x46\xfb\x71\xdc\xf0\xfc\xc7\x3c\xcf\x2a\x42\x7a\xaf\xdf\xe3\x32\x87\x82\x69\xfe\xf4\xcc\xe4\x72\x75\x79\xb9\x28\xf9\x3b\xfa\x53\xec\xf2\xce\xf7\xce\x32\x47\x3c\x11\x1b\x6e\x37\x9b\xde\x63\xb0\xd2\xe3\xc9\x2a\x9e\xa1\xa6\xf7\x98\xe1\xc0\x8a\xb0\x0f\x31\x6f\xc4\x4e\x6d\x7a\xcb\x9b\xc9\x4a\x4c\xb5\x11\xb1\x9c\x7e\x4e\xc3\x29\xee\xd4\x5c\xd8\xd2\x9b\x4c\xc6\x37\x1d\x4c\x78\xe3\x35\xfa\xef\xff\x46\xec\xa0\xe7\x82\x76\xb6\x80\x30\x7b\xd4\x73\x41\x2f\x7b\xfd\x46\x20\xe7\xa3\x43\x9c\xc0\xc1\x04\xbe\x3f\x82\xef\x1c\xd0\x7e\xfe\xe8\x90\x44\xfb\x1b\xf9\xa8\xbf\x41\xe3\x58\x66\xf9\xf8\xb1\x5a\x73\x59\xf3\x0a\xe0\xe7\x14\xa4\x3d\xaf\x05\x4a\x18\xc9\xed\x78\x5e\x09\x7a\xa0\xef\x6a\xd4\x2d\xcf\xc1\x95\x25\x14\x7f\x6d\x53\x14\x8a\x04\x88\x5a\xb5\x38\x82\xe1\xbd\x42\xd7\x8c\x63\xeb\xd8\xaa\x25\x44\x08\xf1\x11\xcf\xdf\xb1\x1b\x83\xd8\xa2\x51\x94\x7f\x25\xe7\xf9\xc8\x69\x82\x6a\xbb\x24\x34\x3d\xf7\x71\x3c\xf2\xc6\x8d\x5b\x14\x8f\xfc\x82\x82\x48\x06\x29\x1a\xb8\x81\xd3\x80\xc7\x5a\x46\xee\x78\x10\x05\x4d\xeb\x75\xb0\xe7\x16\x92\x31\x89\x8a\xa7\x53\xb4\xad\x38\x02\x5f\xd5\x8b\x24\x66\xea\x09\xba\x4b\xe0\xbe\x24\x23\x37\x60\xc5\x31\x23\x90\x7c\x0d\xb6\x8e\x1d\xcd\xb8\x08\x90\x58\x8b\xa5\xc0\xdd\x2c\x04\xf2\xb4\x46\xb4\x65\x4a\x0e\x6c\x10\x89\x0d\x4c\x98\xca\xf6\xbc\xfd\x6a\xcf\x48\xaf\xfb\xb8\x69\xcf\x3e\xcb\xb1\xed\xd7\x24\x36\x20\xf1\x81\xd7\xb5\x20\xbc\x14\xb9\x0d\xc0\xfe\xfe\xe6\x86\x61\x88\x0f\x1c\x12\x5d\xf3\xc4\x8f\x76\xfb\xbb\x2e\xe3\xba\xbd\xc9\xff\x0a\xb2\xf2\x8b\x66\x76\xd1\xc0\x03\x34\x08\xd0\xc5\xec\x31\x1e\xb5\x6a\x63\x90\x8d\x37\xf0\x45\x00\x3f\x68\x10\x98\xaf\x8b\x96\xcc\xa2\x6e\xf5\xde\x43\x69\x55\xf8\x9d\x2c\x3d\x6a\x36\xc6\x83\x91\xdb\x3c\x22\xad\xf1\x63\xfc\x41\x81\x2c\x47\x0e\xab\x22\xcf\xab\x22\x4f\x20\xf2\x6c\x3b\xe1\xe5\x77\xc3\x3d\x55\x88\x16\x73\xfc\x5c\x6c\x38\x87\x26\x60\x0e\xac\xb4\x52\xf5\x18\x01\xa1\x19\x24\xf4\x7e\x99\x06\xac\x4c\x02\xc9\x2c\x50\xca\x06\x29\x19\x42\x1a\x90\xb7\x75\x10\x6a\x4b\x63\x49\xd0\x06\x60\xf1\xce\x82\xa4\x55\x22\x9e\x0c\x83\x7a\x85\x91\xb3\xcb\x83\x2b\x50\x09\x4a\x69\x3a\xf2\xc6\x83\xa6\x17\x78\x24\xa1\xf7\x77\x81\x4b\x66\xc1\x2d\x4a\x47\x9f\xd9\x18\x3f\xe6\xe4\x1a\x02\x77\x2a\xb0\x84\xc0\x95\x0a\xa4\x10\xb8\xd4\x29\x32\x74\x22\x10\x50\x65\xd0\xaf\xc2\x8f\xf9\x1a\x2a\x7d\xff\x1d\x95\xfe\x25\x50\x3a\xf2\xc7\x84\x63\x32\x54\x81\x36\x04\x6e\x55\xa0\x03\x81\x99\x0a\x74\x21\x70\xad\x02\x3d\x08\x2c\x55\xa0\x0f\x81\x54\x05\x0e\x65\x60\xad\xb4\x59\x28\x4d\x64\x8f\xae\x83\x2d\x17\xb7\x49\xbd\x8e\x9c\x39\x4f\x96\x4e\x14\xd7\x92\x2c\x73\x44\x02\x5f\xb8\xec\x14\xb1\x42\x49\xb7\xb4\x0a\xca\x4e\x06\x9f\x0b\xf0\xb2\x47\x64\x9e\x5f\xd9\x3c\xe1\x0c\x09\x3c\xe0\xf4\x1f\x6a\xf8\x03\x84\xe0\x1b\x9e\x4e\x2a\x0f\x53\x93\x97\xc2\x84\x6b\x7f\x09\x90\x00\x5f\x98\x70\x1c\xdc\xdb\x99\x02\xd7\x28\x6a\xbb\xeb\x35\xfa\x24\x50\xd2\x92\x0d\xc2\x04\x3e\x45\x82\x31\x81\xb9\x81\x5b\xcb\x94\x46\x65\xf8\x49\x6b\x28\xa3\x34\xe4\x18\x18\xfa\x77\x02\x25\x98\xc0\x34\xac\xd7\xe1\x89\x1d\xbd\x41\xc2\x03\x08\xf1\xb6\x0c\x0d\x13\xcb\xa1\xd8\x5f\x25\x32\x6e\x8e\xf1\x9a\x03\x28\xd4\xb4\x89\x43\x9c\x96\x93\x9b\xf4\x23\xe3\xa1\x68\xe0\x06\x1c\x3f\xb6\x76\xd4\x7f\x94\xe0\xe5\xe7\xf1\x5a\xde\x33\xc2\xf8\xc4\x69\xb2\xc2\x3b\x8e\xff\x18\x09\x63\xe4\x9e\xbb\x37\x22\xcc\x90\x66\x38\x81\x1a\x08\xe0\xb3\xa6\x15\xa5\x4f\xe6\x82\x71\x90\x5e\x35\xf3\xde\x26\xe5\xf1\xa0\x0d\xd1\x6c\x3c\x00\xc5\x76\x84\xfd\x41\x54\x7b\x90\x2a\x0c\x6b\xcb\xe2\x57\x1a\x1b\xf7\x46\x8d\x58\x32\xb7\x9f\x90\x20\xc5\xa1\x01\x5e\xbe\x44\x37\x8c\x47\xc9\x8c\xd4\xd4\x63\x21\xb8\x7c\x8c\xc8\x8f\x7b\xc5\x69\x22\x2f\xa8\x0a\x90\x9a\x02\x80\x5b\x3f\xa0\xb8\x1c\xce\x66\xcd\x28\xfe\xcc\xb8\x60\xb3\xe6\x4d\xc8\xc3\x65\x85\xf6\x72\x04\xd2\x90\x98\xc4\x34\xc2\xe4\x85\xb6\xfe\x3e\x17\x72\xb9\x6f\x0a\xd4\xf8\xa0\xc1\x03\xd9\x09\xc6\xed\xba\xe5\x27\xe0\x85\x3a\xdc\x17\x3e\x18\xa8\xd8\xa0\x80\x21\x3d\x11\x48\x28\x22\x88\x49\xaa\x43\x7a\x02\xef\x95\x16\x25\x8a\xb4\x4e\x54\x94\x65\x11\x49\xeb\x75\x70\x4a\x03\xee\xb6\x8c\xa3\x95\x46\xfa\x38\xc6\x24\xac\xd7\xc1\x71\x96\x73\x02\x36\x1f\x67\xc5\x37\x6e\x84\x32\x43\x52\x28\xfd\xc0\xa6\xcc\xca\x9b\x72\x22\xf3\x44\xf5\xfa\xc6\xce\xcc\x48\x98\x65\x29\xc6\xeb\x73\xd1\x9a\xc7\xf4\x9d\xe5\xa0\x99\x9c\x0b\x23\xae\xad\x70\x80\x7a\x2e\x40\x58\xab\xb6\xc8\xbf\x0b\xfa\x41\x20\x8f\x38\xe1\x6c\xe6\x60\xf2\x13\x04\x9b\x1e\x71\xd2\xd5\xa5\xe0\xe1\x54\xd8\x6e\x77\x7e\x2f\x2d\x96\xea\x55\xd0\x40\x15\x2b\x46\xae\xfd\x8d\x79\xad\xcf\x4c\x69\xee\x75\xb4\x89\x78\x03\x89\x66\x7c\xec\x0e\xe4\x0f\x3e\x40\x71\x73\xa3\x8c\xc4\xcb\x94\xc2\x81\xce\xb5\x91\xa7\x61\xe5\x69\xc6\x18\xe3\x2c\xb3\x7c\x12\xff\xd3\xd2\xd2\xb6\xae\xe7\xd5\xcb\x39\x03\x9b\x5d\x57\x5a\xd9\x41\xa1\xc1\x09\x0a\xde\xd8\x3c\x9e\x98\x3f\x24\xa0\x9d\xec\xac\xb9\x79\xde\x4e\x0b\xc8\x2d\x65\x9e\x33\xa3\x68\xf2\xd1\x21\x1b\xd9\xde\x8b\x69\x65\xce\xd1\xc7\xb1\x7a\xce\xe8\x63\xf9\x70\xbf\x08\xe3\x2b\xb4\xb5\x30\x5f\xa9\x03\x3d\x29\x2f\x4d\xdb\x2e\xb6\x26\x92\x1a\xd8\x5e\x5c\xb3\x9a\x84\xb1\x0a\xaf\x98\xb6\x49\x58\x71\x70\x53\xdd\xaa\xbd\xdf\x2e\x8c\x6c\xb3\x07\x53\x2e\xdd\x10\xd5\xec\xe8\x47\xbb\xfa\xc0\x8a\x51\x86\xf7\x85\x91\xaf\xd8\x30\x8c\xd5\x3d\x0b\x87\x6d\x26\x67\x59\xcf\xf7\xfb\x87\xee\x21\xb3\xbc\xc0\x0a\x6e\x13\x3f\xc4\x1e\x89\x86\xc0\x8f\x2c\xb2\xce\xf9\x86\x8a\xb2\xad\x12\xb8\xad\x0f\x88\x9b\x8c\x07\x65\xdd\x3e\x8b\x7f\xb6\xde\x88\x7a\x08\xac\xf1\x2e\xb3\x01\xb6\x88\x86\x28\xeb\x49\x28\x6e\x0e\x64\x2e\x19\x31\x62\x24\xa7\x63\xe2\x96\x5e\x1f\x4a\xf8\x96\xeb\x98\x32\x65\x67\x83\xf7\xda\xc1\x93\xcc\x01\xeb\x30\x40\x28\xa1\xe7\xc6\x8f\x0c\x3e\x56\x7a\xdd\x09\xae\xf4\x44\xaa\x28\x61\xc9\x43\x0d\x09\xe9\x57\x86\x12\x25\x7c\x77\x49\x62\xe9\xc2\xee\x6d\xb9\xac\x0c\xb7\xdd\xf1\x10\xcb\x99\x5c\x58\x56\x54\xd5\x69\xe0\x21\x2b\xdc\x54\x55\x95\xe4\xda\x7a\x2d\xa5\x40\x08\xaf\x95\x77\xcb\xab\xab\x87\xad\xaa\x6f\x19\xfb\xf4\x61\xdb\x8f\xe6\x8b\x17\x0f\x17\xd3\x42\x93\x52\xc9\x88\x23\xe7\xea\x4a\x56\xe8\x18\xa8\x4e\x11\x5b\x11\xfd\xe2\x85\xac\xc6\xb1\x60\x59\x09\xdb\x29\xda\x71\x88\x72\x0e\x29\x1b\x66\xbb\x0e\xd1\xb1\x2f\x5e\x14\xde\x60\x3e\x18\x7f\x9d\xaf\x36\x72\x69\x87\x21\x2f\x0a\x17\x9e\x57\xc5\xa7\xac\x38\xb7\x4c\x96\x58\xe7\x01\x85\x54\xe1\xda\x53\x35\xaa\x08\x6b\xac\x0b\x57\x9f\xba\xd9\x2a\x02\xfc\x6c\xe8\x7e\x30\xfd\xa1\x9b\xa9\x0a\x7e\xd3\xcb\x8c\x5f\x78\x99\xd1\xc0\x54\x83\x37\x0a\xc2\x14\x15\xa3\xe8\x01\xef\x9e\xef\x91\xf3\x3b\x38\xa9\xf9\x3d\xb1\x84\x72\xd0\x9d\x85\x84\xee\x77\xd5\x93\x79\x44\x5f\x35\xea\x77\x87\xfc\x43\x19\xd9\xfe\xbe\xed\x1f\x74\xc9\xc6\xb4\xfd\x18\x29\x0f\x7e\xba\xa6\x13\x87\x8c\x9c\x93\x13\xe5\xd6\xe7\x44\x79\xc5\x11\xcc\x78\x85\x01\x39\xdf\x89\xf1\xf8\x22\x43\x47\xaa\x9e\x93\xdc\x8a\x5c\x96\xcd\x07\xe1\x24\xd9\xe1\x58\x85\x0d\x84\xd6\xfb\xde\xb2\x08\xcd\x32\xd1\x9a\x24\xb6\x89\xe8\xce\xac\xaf\x59\x1c\xb1\x58\x18\x7b\xee\x13\x89\xdc\x89\x33\x26\x9f\xb5\x47\xd6\xed\xea\x05\xe8\x90\xdf\x22\xe3\x91\xfc\x77\x50\xcf\xd0\x12\x96\x90\x83\x19\xb0\xe2\x63\xf6\x5d\xbc\x27\xfb\xe3\x44\xf7\x88\xfc\x6d\xcb\x3e\x39\xd1\xbd\xa2\x29\x46\xee\x30\x47\x07\x21\x47\xee\x13\xc7\x44\x76\x4c\xe7\x9c\x38\xe4\xb7\xfc\xfb\xc4\x21\x2f\x0c\xee\x27\x0a\x7b\xc0\xbf\x42\x3a\x54\x68\xee\x17\xae\x8b\x96\xf0\x1a\xe6\xd2\xb8\x6d\xd0\x82\x58\xe5\x4f\xd2\x08\x65\x97\xda\xa1\xa4\x0e\x7b\x1a\x91\x65\x3e\x5e\xb2\x3c\x8c\x17\xa0\xb1\x94\x45\x96\xce\x98\x5c\x31\xd5\x27\xa9\xea\x93\xa1\x31\x9d\xdd\xf7\xa0\x5b\x52\x59\x75\x9a\x9a\xaa\xb5\xb0\x17\xaa\xce\xc5\xc0\xa9\xaa\xda\x84\x3d\xed\xde\x29\xcd\xab\x96\xe5\x8b\xaa\x53\x59\x24\x75\xc6\xe4\x52\x57\xbd\xe2\x64\xa1\x6a\x3f\x35\x56\xbd\xb2\xf6\x79\xc2\xd1\x7b\xe4\x9c\xee\x70\xb4\xf0\xdf\xff\x6d\x3c\x2b\xe4\x7c\x2f\x02\x05\x27\x9c\x93\xcb\xd3\xd3\x5d\xe4\x72\x57\x61\xbb\xec\x29\xcc\x03\xb7\x2c\xe6\xb6\x92\x4f\xb5\x47\xe3\x6d\x5a\xec\xb9\x8f\xb7\xa1\xdb\x90\x65\xd9\xee\xae\xb2\xdf\x2e\x7c\xea\x90\xde\x8e\xd2\xac\xfd\xed\xd2\xa7\x0e\xe9\xef\x2a\xde\xf9\x8e\xe2\xa7\x0e\x39\xdc\x55\xbe\xfb\x3d\xe5\x4f\x1d\x72\xb4\x0b\x40\xaf\x1a\x00\x4c\xf5\x62\x18\x88\xb3\x4c\xcd\x84\xb7\x62\xbd\x9e\x9a\x70\xa7\x0e\xf9\x4d\xd2\x43\xf8\x86\xc0\x07\x13\x80\xd0\x0b\x4c\x56\x9c\xaa\x41\xfc\x79\x65\x24\xa2\xc7\xf4\xe8\xe7\x15\x6f\x50\xe7\xd4\xc1\x2b\x86\x56\x9c\x70\x66\x71\x78\x53\x6e\x48\xcb\x04\x48\x8b\xec\x6b\xe4\xb8\x2d\xa7\x01\x37\xe4\x09\x47\x00\x73\x07\xc0\x6b\x00\x38\xe5\x6a\xca\xcf\xcd\x6a\x2b\xce\x6c\xf9\x92\xfb\xaa\x7d\x75\x7d\x4d\x62\xf6\xe4\xf2\x52\x7b\x68\xf9\x6a\x47\xbf\x09\x97\xcc\x51\x90\xae\x39\xbd\x2a\x4e\x4c\x05\xb6\x33\x6e\x8b\xd8\xd7\xd7\x5c\x1e\x2b\xe8\xdf\x05\xb9\xe6\x2d\xe3\xf0\xa0\x42\x70\x13\x53\x96\x65\x60\x32\x15\xd1\xe7\x42\xbf\xb1\x0d\x2f\x02\x71\xf1\x76\x8e\xb4\xeb\xb4\x84\x16\x40\xf4\x9b\x05\xc0\xe8\x44\x38\xcb\x1c\xe3\xbe\xc0\x21\x21\x18\xe2\x9d\x21\x31\x4a\xc6\x78\x20\xff\x5a\x4c\x51\x8c\x03\x88\x2f\x31\x62\xea\x4e\x17\x85\x59\xb6\xed\x12\xc7\x54\x88\xd4\xb5\x05\xf9\x24\x40\xa3\x6e\x0d\x2d\x92\x47\xa7\x8a\x33\xa2\xba\x61\x57\x27\x1b\x99\x6f\x16\xcd\xe7\xd5\x4a\x5e\x46\x75\x68\x43\x74\x6b\x7b\x50\x96\xa9\x28\xa6\x4a\xb8\x2d\x41\xe2\xea\x7c\xe9\x6d\x24\xb7\x9c\x88\xf6\x58\xe7\x31\x8a\xed\xbb\x88\xe6\xe6\xe5\x04\x26\x82\xfe\x89\x04\xc6\xf7\xd3\x30\x65\xea\x42\x2e\x48\xe8\xef\xc2\x74\xd2\x81\xe7\x2b\x8d\xef\x3d\xc8\xa0\x2e\xe8\x4a\x39\xec\x64\xc3\x16\x94\x41\xb4\xed\x2c\x7a\xad\x04\x09\x85\x74\x79\xf6\xf4\x58\x29\x87\xde\x43\xec\x1c\x3d\xd6\xb1\x73\xc0\x8d\xa0\x9d\xde\xee\xb1\xae\x9d\x41\x4e\x93\x22\xbd\x19\xe1\x83\xc3\x5e\xa7\x9c\x05\xae\x18\xcb\x79\x7a\x6e\xe7\x30\xcf\xa4\xcf\x97\x81\xf2\xbc\xd5\x8c\x8d\x2d\x2d\x1f\x24\xc1\x04\x25\x6a\x3c\x59\x3c\x7b\x3b\xa7\x5b\xba\x60\x72\xa8\xf2\x73\x1c\x62\xf4\x4f\x04\x4a\x9a\x25\x62\x21\x4f\x78\x59\xb6\x63\xb8\x65\xac\xbe\x33\xb1\x44\xf7\x83\x98\x07\x9c\x9b\xf1\x65\xa5\x31\x13\x54\x79\x05\xcc\x1d\x3f\x12\x97\x78\xb8\xe9\x55\x8e\xce\x46\x66\xfb\x98\xa1\xa7\x88\x0e\x3c\x6a\x37\xda\x5b\x60\xf4\x1c\x78\x08\x48\xc3\xdb\x2a\xa5\xfa\xfb\xa1\x42\xd6\x89\x46\x63\xa1\x35\x98\x11\x6e\xf4\x37\xa0\x19\x5f\x8e\xdf\x0f\x10\xd9\x27\x14\x00\xda\xf4\xb6\xe1\xc2\xc4\xd1\x5f\x72\x0e\x7e\x2f\xf8\xc6\x66\x73\xd5\x14\x15\x7a\xf8\x2c\x39\x14\x11\x0d\x2a\xa7\x6b\x53\x70\x24\x1a\xc8\x1e\x5e\x37\xe8\x99\x0d\xb0\xb4\x44\x65\xf6\xcd\x31\xd0\x6b\x64\x47\x05\x3d\xd6\x01\xf8\xa4\xc7\x3a\x1b\x25\xcd\xfa\xdb\x51\xd2\x63\x6d\x55\xd2\x63\x6d\xdc\x2c\xde\x5f\xd3\x79\x8d\x6c\x4d\x3c\xec\x2c\x19\x16\x87\x22\xa6\xa5\xd5\xc1\xb2\x0c\xe9\x1b\xd2\x28\x7d\x2f\xa6\x08\x0f\xb6\x25\x39\xc1\x46\x94\x76\x9f\x43\xcf\x8d\xa3\xc9\xbd\x9d\x6e\xcb\x6e\x92\x54\x68\x1a\x2e\xd4\x0a\x9d\xf3\x64\x59\xfd\x38\xfe\xe6\x1d\x19\xdc\x02\x96\x74\x2b\x60\x27\x62\x36\x95\x1d\x9c\x0b\x74\x2f\x12\x90\xc3\x10\x09\x3a\x60\xeb\x5c\xc8\x63\x0b\x67\x30\x6e\x5d\xaf\x96\x61\x1c\x7d\x65\x68\x5f\x94\x04\x37\x95\x0f\xf6\x18\x54\xdf\x24\xb7\x55\xaf\x24\xa8\xcd\x89\x27\x4b\x65\x4e\xcc\x54\x01\x91\xfc\x0f\xb7\x0c\x5a\x04\x6d\x13\xc9\xff\x64\xcb\x44\xf2\x50\xbb\x44\x52\x6a\xd5\x15\x13\x55\x59\xcf\x94\x7b\x7e\x45\x4c\xc7\x4a\xef\x65\xc4\xc6\x5a\x28\x06\x25\x75\xc5\x4f\x44\xc5\x4e\xac\xfc\x5a\x17\xb6\xf8\xaa\x80\xba\x4d\xa8\xba\x40\xa2\x97\x70\x1b\xac\xee\x6b\x8d\x9a\xde\xe6\xee\x9c\x65\xfb\xdc\xea\xc3\x7a\x1d\x6d\x92\x78\xa4\xb6\xd7\x0d\xda\xaf\xb0\x2f\x16\xde\x2f\xdc\xba\x75\xb6\xbe\xd5\x23\x05\x46\x2e\x6b\x98\x20\x61\xdf\x49\xeb\x76\xa8\xfb\xab\xff\xeb\x0d\x39\xb6\x1b\x52\x42\x1e\x76\xca\x12\xea\x76\xde\xa2\x19\xe2\x96\xb1\x78\xcb\xd8\xc7\xf8\x38\xb5\xdb\x42\x12\x7a\xa9\x1e\x30\xfa\x24\x8a\x57\xfc\xf6\xf7\xd1\xe6\xf4\x8f\xec\x40\xb2\xd1\x4c\x04\x8d\x8b\x69\x9c\x65\x0e\xc2\x8e\x3c\xa6\x0f\x34\x00\x75\xd3\x14\x11\x8e\x03\xd3\x5d\xfa\x9a\x50\xc6\x41\x69\xac\x14\x10\xbc\xbc\x8c\xce\x90\xd8\x85\x14\x1c\x19\x65\x9a\x79\x1a\x2e\x2b\xc7\x8a\xc4\xdf\x3b\x5a\xf1\xff\xc4\x68\x49\xdc\xad\xf1\x42\xdc\x0e\x92\x6f\xce\x3d\x78\x0d\x8c\x1f\xd3\x6f\x8c\x73\xa9\xd5\x6f\x79\xd5\x8a\x2b\xd3\x2d\x99\x0f\xe2\x35\x17\x6e\x7a\x10\x5e\x93\xb7\x41\x55\x4e\xfa\x6f\xc1\xd2\x23\x64\x01\xfb\xc7\x8e\x0b\x9e\x99\xc5\xb8\x2f\xc2\xf8\x8a\x7e\x84\xd3\x8b\xbe\xb1\xf8\xa7\x15\x90\x84\x8f\xfe\x06\x11\xcb\xf0\x0b\x7d\xaa\xbe\xa2\x98\x9e\xc1\xd7\x4d\xc8\xd3\x28\xbe\x7a\xbe\x08\xaf\xd2\x8a\x7a\xe0\xfd\x4c\x4d\x9f\x54\x6d\x25\x2d\x0c\xe3\xc3\x69\xeb\x52\x9c\xe1\x42\xe5\x6b\xdb\x00\x4e\x3b\xa3\xcd\x5f\xda\x67\x58\xdb\xbb\xdc\xaf\xe2\x48\x04\x9c\xdc\xf0\x28\xe1\x91\xb8\x0b\xde\x8c\xf8\x78\x5d\x6c\xaa\xca\xeb\x6b\xb5\x34\xad\x65\x0a\x35\x45\xfe\xb9\xc6\x44\xac\x11\x03\x55\x3b\x6c\x1e\xef\x36\x7a\x67\x71\xa3\x81\x81\x52\xf3\x51\x3c\x6e\xc9\x9a\xc7\x88\x59\x81\xe2\xb1\x88\x0d\xfa\x6e\x73\xc2\xf0\xbe\x58\x69\xd7\x57\xbd\xa4\xe6\xe4\xff\x8b\xec\x37\x30\xdf\xff\x29\xeb\xbd\x01\xe2\x3b\xd8\xee\x8d\x12\xff\x11\xcb\x8d\xff\x0f\xb0\xdb\xf8\x7f\x82\xd5\xc6\xdf\xc9\x66\x37\xe9\x0f\x72\xd8\xdf\xcd\x5f\x2b\xc8\xc0\x5b\x7f\x37\x67\xad\xcb\x48\xae\xfa\x3f\xe1\xa9\xcd\x75\x32\xfd\x49\x28\xc6\x0a\x5e\x88\xa0\x95\x4a\x88\x7a\xc1\x8c\x72\xef\xff\xc5\xab\x4f\xf9\xd3\x2a\x0c\xd4\x59\x55\x1a\x34\x19\x3e\x8d\xe0\x0b\x62\x2d\x41\xd8\x58\x73\x73\xda\xf6\xe0\xa1\x5a\xe1\xe5\x84\x34\xc8\xeb\xd6\xba\x2f\x05\x0a\x12\x81\x20\xc7\x03\xdc\x22\x06\x2c\xf7\x34\xac\x5d\x28\x06\xcc\xf2\x5c\x6b\x14\x69\x98\xe5\xb9\xb6\xa4\x61\x53\xc2\x36\x45\x78\xad\xd1\x95\x9c\xe8\x0e\xe1\x0c\x30\xa9\xe5\x5d\xd1\xb0\xac\xaf\x4e\xdf\xaa\xb7\x6a\xe9\xa6\xa5\x4d\x35\xd1\xc8\xf5\x1c\x05\x05\x33\x14\x46\x38\x15\x83\xd2\xe6\xb8\x92\x27\x9e\xc0\xea\xa5\x1a\xd7\xfd\xa3\x7d\x56\x1d\x1d\x9b\x88\xc1\x39\xe2\x44\x0c\x4a\x2e\x2f\x46\x67\x63\xdb\x75\xc3\xe8\xe3\xd8\x09\x1e\xca\xf0\xd1\xc1\xc1\x99\x7a\xad\xc3\x7e\x74\x3a\x6f\x18\x1e\x68\xfc\x54\x17\x21\x6c\x27\x22\x1c\xec\xe8\xa0\x46\xcf\xdd\x5a\x42\x8f\xe5\xc4\x2e\x17\x2f\xb4\x88\x3e\x3a\x44\xb6\xc6\xf9\xe8\x60\x1c\x58\xed\xfa\x46\xab\x76\xb5\x49\xf3\xfa\xe9\xcd\xc6\x1c\xdc\x39\x34\xfa\xde\xdf\x9c\x0f\xd0\xc1\xe3\x9a\xf6\x92\x3c\x89\x1a\x4e\xed\xf1\x01\x56\x4a\x02\x8c\xea\x9c\x0e\x11\xd4\x71\xf6\x34\xb0\xd7\x4a\x59\x13\x8e\xae\xb9\xee\xa4\xd5\xf6\x81\x81\xbf\x12\x53\x27\x30\x01\xb8\x64\xfb\x98\xc4\x0c\x80\x7d\xd4\xe2\x52\x4e\x9d\x91\xd3\x60\x8d\xbf\x21\x67\xfc\x37\xb9\x59\x1e\xdb\xaf\x1f\x6a\x45\x4d\x3d\x25\xf4\x0b\x88\xe0\x39\x35\xc8\x5f\x08\x8c\xa8\x68\xfc\x6d\xe4\xe0\xf1\xdf\xaa\x24\x97\xbc\x11\x37\x9c\xca\x8e\x73\x1a\x91\x99\xd9\xbf\x9d\xbe\x7d\xb3\xeb\x45\xdf\xb2\x61\xc1\xe6\x84\x58\x2d\x16\x1a\xc6\xe6\xd2\x28\x43\x31\x13\x5e\x9f\x19\x1d\x16\x3b\xd8\xa0\xe8\xcc\x66\xb3\x1a\x78\x78\x3d\x51\x1e\x5e\x0d\x96\xb5\xd1\x8b\xe1\xd9\xf8\xa3\x19\xe1\x55\x1c\x7d\xa9\x80\x6f\xbd\xa6\x52\x9e\x96\x07\x40\x5b\x65\x49\x1d\xb5\x0b\x39\x9b\x30\x37\x41\x46\x2a\x2c\x6d\xd8\x2c\x73\xb5\x4c\x17\x5c\x49\x26\x31\x30\x77\x5b\xa0\xee\x23\xb0\x31\xd5\xb3\x88\xa8\xb6\xe9\xe0\x9c\xa8\x76\xeb\xa0\x36\x9f\x85\x1d\x28\xb0\x76\x23\xa2\x6c\xb1\x74\x94\x0a\x28\x92\x25\x27\x00\x7d\xc2\x14\x7b\xfa\x9a\x85\x37\xe5\xd7\x13\xed\x27\x39\xad\x09\xa3\xd0\x36\x77\xdc\x55\x67\xe8\x84\x97\xb5\x02\xcc\x86\x6f\x36\xd8\x7c\xf3\x27\xdb\xa7\xfa\xc2\xe1\xd9\xee\xb4\x3b\xc3\x52\xe7\xd7\xea\xdf\x8b\x85\x2e\x62\x6a\xb6\xf9\x06\xf0\xd8\x06\x70\x35\x13\x45\x8b\xcf\xb4\x0a\xbe\x51\xe7\x80\x99\x32\x65\xd1\x02\xa1\xb2\x6c\x12\x1f\xb4\xf5\xe9\x54\x45\xb5\x1f\x23\x78\x0f\xa8\xcc\x7e\xa9\x3a\x21\x48\xdf\xc0\x58\xcc\xc2\xbb\xf4\x55\xac\x1e\x85\xab\x98\x98\x6c\x27\xfb\x52\x8c\x0c\xd5\xbf\x69\x05\xc7\xbe\xdd\xaf\x30\x36\x70\x2e\xd8\x54\x55\xd1\xb3\x26\x9c\xcd\x50\x5f\x62\x2f\x30\x18\xea\xd9\xdd\x4f\x8b\xcf\xaa\xda\x8c\xb2\x0b\xf8\xc3\x93\x15\xfd\x48\x15\xd0\x84\x57\xf1\xe6\xb4\xb4\x0c\x20\xb6\xe7\x87\x81\x7f\x5e\xee\x27\x06\x73\x8a\x6d\xcd\x9e\x0a\xf0\xd5\x00\xf2\xe9\x21\x59\x09\x1a\x72\x3d\x52\x54\x0f\xd8\x0f\xec\xde\xfb\x5a\xe7\x2a\x30\xef\x55\xaa\x57\xd9\x6c\x06\xd2\x10\x10\xdb\x0b\x99\x15\x07\x11\x7b\x1b\x20\x91\x50\xbc\xc0\x66\xb7\x10\x96\xab\x5d\xe6\x0e\x82\xc5\x40\x04\xe6\xf5\xcc\x81\xa3\xf4\x41\xf3\x13\x1f\x12\x94\x6f\x3c\xee\x02\xde\x86\x81\x2e\x07\xb9\x21\xae\x00\xf7\x1b\xf9\xe0\xb1\x66\x0c\x03\x87\x83\x38\x1f\xbb\x99\xcd\x33\xfe\x1b\xfd\xa2\x6e\x4d\x5a\x5a\x36\xdf\x7c\x80\x5a\xe0\x47\xfd\x07\x26\x16\x6b\x8a\xad\x79\xfb\x1f\xe0\x96\x5b\x9f\x30\xfb\x24\xa7\xd0\xcc\xb2\xbe\x35\xa6\x3b\xc7\x64\xfb\xa1\xc3\xc1\x76\x9f\x3f\xea\x67\x59\xbf\x18\x27\xe8\xfe\xf2\x01\x55\xbd\xf5\x92\x57\xfe\xa8\x3f\x88\x83\xb8\xd9\x37\x13\xd5\xe8\x58\x6c\x2f\x4b\xcb\xee\x03\x55\x4a\x60\xd4\x15\x68\xb3\x3a\x4d\x3d\x52\xac\x6f\xbb\xac\x77\xc5\xbe\xd5\xf5\x92\xed\xa6\xfa\x37\xa5\xdc\xc8\x2f\x56\x82\xd1\xfc\x2b\xa5\x29\x57\xc2\x09\xc9\x5e\xd3\xfc\x2b\xa5\x0b\xae\xf2\xe7\xbc\x37\xbd\xde\x50\xc8\x9e\x43\x8e\x9c\x67\x2a\xcb\xf7\x8c\x74\xcf\x3c\x72\x53\x6c\xc4\x0f\x5c\x88\x7e\xef\xd8\xeb\x75\x9b\x04\x5f\x85\xa6\xa4\x55\xaf\x59\x32\xdb\x4b\x36\x62\xb9\x49\x54\x49\x22\xa0\xdc\x5b\xc0\x00\x85\x97\x29\x62\xf8\xd8\xeb\x29\xaf\x24\x88\x3d\xa6\xbd\xdc\xcb\xd0\xbe\x55\x71\xbd\x2e\x40\xc5\xd9\xd4\x6e\x2c\xd7\x54\x13\xa9\xde\xfd\xb4\xd5\xf6\xbe\x6b\xfc\x6d\x6b\x46\x50\x8e\x53\xa4\x74\x6b\x12\x79\xa2\xa8\xd7\xd1\xbe\xd0\x92\xac\x89\x52\x27\x7d\x15\xbf\xe3\xc9\x15\x67\x69\x3a\xb0\x14\xba\x59\x33\x51\xc5\x3c\xb2\xef\x19\x0a\xb5\x59\x20\xcb\x50\x75\x82\xb2\x0d\xdb\x7d\x12\xad\x28\x01\xa6\xfa\xd6\x39\x75\x25\xa6\x3b\xe5\xfd\x05\xeb\xec\x1a\x99\x3f\x2c\xc1\x9d\x05\x4c\x57\xa2\x8a\xe2\xe5\x0e\xf4\x08\xd3\x5d\x67\x0e\xca\xc8\xf4\x3c\xf4\x87\x85\x61\xce\x9f\x6f\x1c\x21\xb4\x5b\x55\x80\x2a\xbe\x2e\xf1\x46\x9d\x79\x02\xd9\xf7\x88\xf1\x0c\x5b\xab\x7c\x21\x55\x21\x66\x76\xc5\xd7\x02\x45\xf9\x70\x9b\x67\xb8\xb4\x8e\x6f\x01\x9e\xe9\xc1\xb2\x1b\x59\x58\x5d\x16\xb2\xaf\xeb\x30\x7d\xb2\x88\xae\x62\x36\x7b\x99\xac\xf8\xd6\xaa\xda\x6d\x09\x86\x18\x65\x03\x75\xf9\x63\x1d\x61\x02\x97\x6c\x76\x2e\x6e\x32\xfc\xa8\xe7\x52\xea\x1a\xea\x7c\x72\x7a\xb6\x8b\xa5\xb6\x8a\xfd\x52\xa2\x4c\x8a\x01\x72\x4b\x95\xe9\x09\xfc\x8d\x32\xdd\x52\x19\x8d\xc2\xeb\xf2\x3c\xd9\xdd\x4c\x7b\x0d\xea\xb2\xef\xb7\xa9\xcf\x77\x19\xcc\x15\xc5\xe9\x4b\xa1\xbf\xcf\x9e\xea\x6f\xa3\x24\xb3\xf3\xac\x51\x7e\x9c\x76\x6d\xca\xbc\x29\xdd\x00\x54\x97\x79\x9a\x28\xed\x44\xc1\x66\xb5\xf7\x71\xf4\x99\xf1\x34\x5c\xd4\xce\xa2\x25\xcb\x41\xc9\x15\x9a\xd2\x53\xa5\x24\x99\xd6\xc2\xe9\x94\xa5\x69\xc2\x37\x15\xdb\xdf\xa7\x4c\xf9\x2c\x30\x26\xeb\x0e\x09\x39\xce\xd9\xdb\x54\xe9\xc6\xcb\xaf\x07\x41\x40\x16\x03\xc3\x21\x6f\x18\x36\x87\x15\x80\x00\x1f\x0f\x02\x90\x39\x8a\xf2\x4f\x54\x79\xd9\x1d\x25\xe5\x7c\x19\xb1\xdb\xf4\x1e\x59\xf3\xe2\x47\x4d\xf0\x25\xe4\x83\x1d\x9a\xa2\x39\xb7\xb6\xc5\x93\x31\x6d\xb0\xab\x69\x8d\xb5\x58\x8b\x37\xe3\xb7\x14\x6b\xd6\x38\x5f\x34\xa7\xd7\xd1\x5c\xb0\x99\x6c\xa3\x1d\xde\xec\xa0\x1f\x78\xa4\x20\x15\xcd\x54\x01\xd9\x30\xf2\x91\x87\xd0\x28\x89\x4b\x2e\x06\xe4\x1e\x9a\xe4\x52\xd0\xa2\x7e\xbc\xb9\x4f\x16\x49\x5a\x1a\x72\xbf\x06\x49\xba\x51\x37\x22\x88\x51\x70\xe1\x84\x5b\x93\xd0\xf0\x2b\xf9\xfb\xcb\xe0\x2e\x2d\x54\x06\xae\xf2\x63\x6f\x1b\x2c\xdd\x5c\x65\xee\xf1\x33\xc8\x4c\x84\x91\x64\xca\xb3\x92\x7a\x6e\x76\xbb\x74\xee\x2e\xa5\x22\x51\x6b\xd6\xde\x70\x3a\xac\xd2\x46\x5b\xf2\xcd\x9b\x44\xb0\x22\x4f\xe8\x5c\x72\x4f\x60\x9f\x5b\xf0\x6f\xd1\x88\x8f\xc1\xaf\x5a\x61\x3c\xf0\x99\x5b\xae\xf0\x42\xb8\x4d\x07\x0e\xb2\x70\xcd\xc2\x28\xcb\x32\xc7\x31\x8e\xbb\x4d\xdf\xe6\x15\x6b\xf1\xbd\x42\x33\x86\x67\x9e\xd5\x8b\xca\x70\x5f\xe2\xf9\x70\x53\x12\x8d\xe2\x31\x85\x22\xb1\x5d\xc4\xe0\x55\xe0\x73\x67\xb5\xc7\xb9\x4c\x92\x05\x0b\x63\x8b\x9b\x19\x84\xca\xbd\x13\xa7\x82\x08\x83\x62\xa0\x31\xde\xf7\x48\x28\x53\xb6\x32\x60\x22\x28\xd8\x73\xef\x19\x76\x0c\x3a\x29\xa5\x6c\x90\x14\x0c\x7d\xe0\x16\x0e\xd9\xb9\xd5\x4c\x41\x10\x6f\xa4\xf8\x51\x9f\xc4\xfa\x85\x53\xa5\x5c\x6b\x1a\xaa\xfc\x59\xf5\xc1\x8b\xd5\x6a\x14\x41\x3b\x05\x41\xd1\x46\x19\x0d\x70\xb5\xbe\xd9\xa1\x27\x58\xbc\xd8\xa4\x59\x11\x9d\x69\xc4\xc6\x39\x67\xa4\xa3\x5a\x46\x15\x70\x2f\xd7\x21\x88\xf1\x20\xd6\xd2\x07\xc2\xe1\x44\x74\x23\xb9\x0f\xfb\x89\xa3\x5d\x27\xf3\x49\x39\xdb\x88\x8d\xcd\x01\x62\x2b\xa5\x25\x92\xf7\x37\x37\xe6\xd5\x9b\xdc\x35\xa4\xc8\xb2\x7d\x3e\x10\x01\xda\x01\x8f\xf2\xc2\x0f\xe6\x70\x38\x1c\x66\xc3\x61\x76\x72\x92\xcd\x66\xb3\xd9\xc1\x55\xa5\xfb\x25\xed\x3d\x0a\x94\xea\x77\x00\xc5\xd0\x44\x4b\x27\x63\xf7\xb6\x53\xe4\x81\x32\x5a\x37\x7e\x37\x5b\xa6\x33\x14\x82\xde\x47\x33\x07\x38\xba\x1b\x9e\x3b\x54\xa3\x33\x0e\xc1\x5c\x31\x47\x47\xd8\x8f\x30\xed\xbc\xee\x57\xd5\xd8\x59\x47\x7c\x5c\x0c\x66\x84\x07\x51\x5e\x24\xb0\x5c\x92\x3e\x9a\x1d\x44\x39\x22\x61\x2a\x9e\xc3\x1b\x4f\x95\xda\x11\x15\x55\xb8\xc7\x6c\xe0\xa8\x67\xa1\x9c\xc0\x91\xe5\x1d\xab\x52\x8e\x07\x1c\x09\x1c\x58\x63\xf5\x28\x3d\x88\xe0\x3a\xf9\x66\xf3\xea\x36\xf7\x0d\xa7\x1c\xa8\xa8\x7b\xd8\x33\xb9\x10\x47\xdc\xe8\xb0\xf0\x31\x55\xc7\xb2\x91\x33\x71\x1a\x32\xa4\x49\xa7\xb2\x2b\xcb\xcf\x08\x0f\x9a\x26\xd8\x6f\x47\xa2\x87\xf2\xb7\xd2\x64\xc5\xa7\xcc\x2c\x95\x64\x3b\x09\x37\x9c\xcc\x69\xe4\xcf\x65\x99\x58\x68\x9d\x66\x17\x76\x98\x5a\xe8\xfb\x3b\x63\xe7\x39\xb0\x43\xa3\xfc\xe6\x67\x1c\x94\xe2\x4b\x65\x5a\x51\xaa\x26\x6e\x96\xfd\xc1\x70\x4b\xb0\x54\x80\x20\x44\x4d\x1d\x27\x70\x52\x11\xc6\xb3\x50\x32\x8a\xce\xd8\x06\xf9\x50\xd5\xa5\xfa\x5a\x05\x04\xab\x45\xf0\xe6\xd5\xf7\x35\x0b\xb2\x96\x2b\x80\xa8\x5d\x0d\x54\x89\x7f\xb0\x7f\xbb\x31\xbb\x2a\xdc\xae\xa5\xba\x6d\x30\xb6\x0f\x2b\x1d\xdb\x90\x20\xfb\xb3\x2f\xe1\x34\xdf\xc3\x76\x16\x85\xa7\x2f\x44\xa2\x9e\x12\xb2\x9e\xf9\x2a\x8e\xed\x36\x4c\xd0\x56\xd8\x8a\xa5\xa3\xb1\x45\xb9\x86\x55\x09\xa9\x6c\xdb\x46\x4a\xbe\x6d\x36\x1a\x31\x4e\xcc\x23\xbb\xf1\x18\xef\x28\x23\x37\xd6\x42\x22\xab\x9f\xd6\x4d\xc0\xf5\x70\x45\x03\xaa\x31\xda\x80\xb1\xbb\x78\x7e\xb9\x37\x70\x86\xc3\xa1\x03\x6f\x3c\x34\xbd\x7d\x4a\x51\x94\x7b\xf5\xa9\x46\x93\x84\x18\x0f\x22\x25\xcf\xab\x2e\xb1\x81\x93\x5d\xe0\xdf\xac\xec\x87\xeb\xf9\x91\x02\x3f\xdc\xec\x2d\xbb\x45\x65\x88\xb3\x35\x6f\x72\xe1\xc5\x7f\x3c\x97\x30\x29\xf1\x60\x92\xc3\x8b\xec\x09\xc5\xf3\xd3\xe4\xf6\x7c\xb0\xcc\x98\xb7\xa6\x4a\xe9\x35\x5f\xa7\x61\xcf\x9c\xa8\xe4\xf3\xda\x69\x81\x43\x9f\x86\xf3\x53\xe9\x91\xe0\xaa\x29\xbc\x1b\xa6\x9a\xd1\x0f\x03\xc6\xe0\x8e\x73\xb3\xd7\x46\x31\xbc\x18\x46\x2b\x91\x6c\x38\xd9\xce\x7a\x48\x15\x28\x1b\xc5\x64\x13\x13\x83\x45\xbd\x0e\x8f\x40\x3a\xea\xa9\xa4\x5d\x3d\xa8\x28\x26\xdb\x7a\xfe\xca\xd9\x2c\x5a\xd1\x53\x95\x65\xf7\xb9\x29\xb1\x7c\x38\xf3\xda\x22\x9f\xea\x69\xe6\x9d\x3c\xd0\x26\xd1\x1c\x20\x3d\x79\x9d\x89\x55\xde\xc1\x59\xf6\xdc\x5a\x02\x98\xb0\x32\x41\x2f\x5e\x81\x2e\x91\x75\x88\xc1\xc1\x4e\x98\x68\x2b\x33\x7d\xcd\xca\x03\x63\x81\xae\xd7\x7f\xa4\xd6\xcd\xed\xf1\x7f\xa7\x23\x36\x5e\xd5\xde\xde\xe4\x76\x74\x49\x91\xb6\xd5\x2f\x16\xf6\xaf\x36\x3b\x67\xa3\xba\xad\x1e\xfa\x4e\x74\xa0\xaf\xe0\x7e\xaf\xa2\x7f\xde\x33\xc4\xac\x87\xbf\x8b\x3b\xd4\xe2\xda\x14\xca\x02\x90\x79\xc4\xe1\xe1\xd6\xcd\x0b\x82\x8d\xde\x36\x25\x37\xca\x9c\x97\x50\xa8\x2e\x73\x9b\x23\xbb\x71\x3d\x56\x30\xc5\x86\x01\x31\x99\x0c\xf7\x91\xbf\x1e\x5a\x0e\x8e\x58\xbd\xae\x54\x5e\xcc\xfa\x32\x29\x39\x3f\xf7\x0d\xee\x27\xf7\x83\x0a\x7e\x0f\xfe\x62\x88\x6f\x74\x18\x0e\xd8\x80\x8f\x98\xba\x4d\x19\x07\xbc\xd4\x86\x61\x14\x57\xc9\x3e\x73\x60\x65\x9c\x86\x51\x5c\x01\x7c\x2b\x4f\x51\xd9\x56\x52\xa9\xf2\x4d\xd6\xf1\x5b\xd5\x43\xfe\x6f\x22\x60\x58\xca\x4a\x14\x20\xb1\x84\xc4\x77\xf3\x78\xa5\x02\xff\x63\x5c\x5e\x09\xaa\xc5\xe7\x95\xd1\x2b\x6f\xc2\xe7\xd5\x69\xcb\x28\xde\x4a\x51\xfb\x73\xbf\xcc\xeb\x79\x63\x0c\xbd\x13\xe3\x1d\x25\x73\x76\xcd\x1a\xb9\x6f\xb2\x7c\xdb\xa8\x6d\x81\xf9\x3e\xde\xf1\xf6\x41\x18\xdf\xc5\x3b\xca\x73\xff\x43\xfc\x5c\xa9\x8a\x12\x23\xf8\x8d\x82\xdb\x8d\xfc\x36\x7b\xb7\xd9\xbb\x9b\xf5\xfd\x30\xa6\x3f\x88\xda\xbf\x87\xd5\xbf\xd5\x0b\xff\x69\x1b\x1e\x42\xea\x87\x4a\xfc\x1f\xeb\xcc\x6f\x32\xda\xa5\x3a\xf2\xed\x74\xc7\x72\xae\x5a\xb2\xdf\x5e\xe8\xf3\xd5\x62\xb1\x99\x84\xf3\xa5\xbe\xc5\x89\x5b\xcb\xbd\x60\xc8\xb7\x60\xd8\x2c\x79\x55\x62\x25\x03\x9d\x2f\xca\x0a\xee\xf9\xe2\xa2\x35\xd8\xc1\x9a\xff\x10\xec\x9d\xec\x79\x75\x05\x55\xb4\xec\x21\xf0\x92\xb4\x7d\x1b\xf8\x2e\xda\x54\x66\xff\xcb\xdd\x61\x1d\x00\x2a\xda\x52\x91\x9a\xa3\xb2\x8b\x10\x7e\xe7\x01\x21\xa7\x29\x86\xa7\xa8\x1a\xcf\x9d\x47\x84\xcd\xc2\x95\x23\xf6\x40\xe9\x52\xe1\x8a\xd1\xf8\xc6\xf9\x62\xb3\xd1\x3b\x4e\x18\x26\xdb\x37\x58\xeb\xed\x4d\xdb\x62\xae\x4b\x30\x24\xef\xfb\xcf\x4a\xf6\x3a\x1f\xbc\x2d\x66\xb6\x04\xc0\x66\xac\xb7\x20\xa3\x8a\x02\xf4\xef\x6c\x73\xa4\x2b\xf9\xe9\xef\xad\x7f\x9b\xb7\xfa\xdf\xec\x9c\x6a\x76\x7f\x1b\x9d\xaa\x6e\xaa\x3c\x81\x54\xb4\xe4\xa7\xed\x0e\xdb\x79\x0a\xf9\x71\xc4\x36\x19\xe3\xff\xc5\xde\x1b\x46\xf1\x6e\x14\x0d\x2a\x55\x3d\x67\xd2\x2a\xfa\x2d\x6f\xc1\xef\x5b\xbd\x56\xae\x6e\xbb\xcf\xbe\x0f\x1d\x75\x3b\x92\xbe\x1b\x56\xf4\x91\x73\x03\xb6\x74\xac\x61\x78\xb5\x9c\x4b\x83\x07\x53\x9e\x08\xe4\xea\x53\xb2\x79\xd4\x67\xcb\xa1\x8e\x76\x2b\xe2\x1d\xb3\x01\x1f\x38\x37\x4b\x27\x70\xde\x0d\x9d\x80\x0f\x9c\x50\x7e\x3f\x19\x3a\x6b\xb2\x12\xa0\x20\x4d\xee\xab\x25\xf6\x81\x11\xc5\x23\x71\x9d\xa5\x22\x8b\x67\x19\x9f\xe1\x03\xa2\x45\xf7\xc1\xf6\x75\x15\x7b\xe4\xb9\xb9\x03\xd4\x06\x78\x7c\xbf\x45\x32\xd2\x3d\xf0\x5c\x3c\x70\xc4\xb5\x13\x80\x1b\xf8\x81\x93\x0a\x27\x50\x8f\xd0\x3a\xf1\xcc\x09\xda\xea\x93\xcf\x9c\x40\xe6\xc2\x6b\x78\x16\x00\x8c\xdf\xf2\x1b\x7a\x08\x56\xab\x07\xa8\x64\xf5\xe6\x7e\xa1\x6a\xb0\x12\x06\x08\xa8\x52\x97\x01\xc9\xa8\x6f\x02\x53\x99\x72\x80\x53\x6d\x12\x7e\xc5\xa9\xd1\xc6\x2a\xae\x7a\x2f\xb7\xae\x7a\xcf\x05\x5c\xf6\x59\xcf\x0b\xd9\xba\x69\x0d\x1a\x3f\x8e\x36\xdc\x57\x6a\xf7\xbd\x3a\x09\x3c\xf9\xe6\x7e\x7c\x4d\x7e\xe5\x4e\x94\x55\x39\x21\x9f\xf0\x0d\xf7\xe2\x96\xce\xba\x71\x2c\x0e\x7a\xc9\xf6\x15\xf3\xad\x5d\xa8\x73\xe8\xba\x8f\xd9\x81\xd7\xe9\xb9\x47\xfd\x22\xcf\x33\x3b\x8f\x4a\x7c\xcc\x0e\x64\xe6\x22\xcf\x17\x3b\xcf\x0e\x51\x40\x98\xc2\x13\x2d\xb2\x7b\x4e\x39\xfd\xc2\x91\x72\x67\xf3\x56\x7d\xcb\xcf\x27\x3a\xda\xc1\xe4\x93\xfa\xbc\x76\x30\x39\x53\x9f\x33\x07\x93\xa7\xea\xf3\xd6\xc1\x64\xa8\x3e\x87\x0e\x26\x7f\xa8\xcf\xdf\x1d\x4c\xde\xa9\xcf\x3b\xdb\xf1\xe5\x9f\xdf\x81\xdb\x86\x01\x02\xf8\x80\x1f\xb1\x71\xf0\x26\x7c\xa3\x30\x3e\xe1\xf4\x4f\x5e\xb2\x78\x95\x08\xbf\x51\xb1\x45\xc4\x2b\x93\x4d\x39\x94\xc2\xe4\xb5\x8a\x00\x15\x47\x07\x93\xe7\x2a\x28\x07\xd7\xc1\xe4\xab\xce\xad\x3d\x5e\x92\x97\x2a\x0c\x2a\x2d\x0e\x26\xbf\x72\x4b\x31\x93\xbc\xe7\xf4\x3e\x4d\x83\x4e\x87\xa4\x41\xa7\x4b\x96\xf2\xcf\x75\xe0\xfb\x64\x16\xf8\x3d\x32\x0c\x3c\x6f\x4d\xce\xab\xe6\xe6\x5f\x56\xfb\x91\x7b\xcc\x70\x13\xb1\x63\x17\x67\x59\xc3\x7a\x16\xfe\x1f\xfc\x21\x5b\x96\x0a\xa7\x07\x25\x7b\x7b\xa5\xba\x21\x17\x00\x3d\xcf\xc5\xe6\x56\x57\x81\x99\x04\x89\x8b\x44\xe5\xa2\x35\xb2\x72\x6b\x2f\xad\x82\x4e\x10\x62\x74\x82\xf8\x41\xcf\xc5\x18\xdc\xd3\xf3\x47\xb4\xe7\x12\x26\xff\xee\x29\x7f\x87\x13\x14\x1d\x78\x3e\x26\x21\x8d\x1e\x51\xcf\x27\x29\x8d\xc9\x8a\x0a\xb2\xa0\x8c\x4c\x29\x1f\xf0\x96\x48\x9e\x47\x5f\xd8\x0c\xb5\xed\x57\x1e\x5b\x03\xb7\xa1\x5e\x79\x0c\x1c\x87\xcc\xa9\x9e\x96\xa7\xc6\x74\x0b\xd8\xa9\xb9\xb1\xdf\x79\xe7\x9e\x28\xa5\x84\x6b\x3a\x3f\x76\x07\x4e\xd3\x91\xa5\x66\xf4\xaf\x0d\x9c\xf7\xa9\x8c\x9a\x63\x93\xe3\xa6\xc8\x01\xcd\xdc\x4c\x5f\x5a\x10\xec\x3e\xda\xc8\x67\x28\xc7\x75\xc3\x79\xe7\x34\x50\x32\x98\x35\x92\x86\xf3\x01\x1e\x4e\x69\xa0\x70\x30\x6b\x84\x0d\x67\xa8\x83\xe9\xe0\xa6\x91\x36\x9c\x13\x1d\x5c\x65\xd9\x22\xcb\xa6\x03\xe7\xcc\x44\x0c\x96\x8d\x55\xc3\x79\xa9\x83\x8b\xc1\xb2\xb1\x28\x4a\x4f\x07\xcb\xc6\xb4\xe1\x9c\x42\x10\xa6\xfb\x07\x5e\xf2\x49\x6b\x70\xf9\xf0\x90\xe5\xb2\x6a\x92\x4e\x5f\x93\x0f\x5c\x4e\xc3\x1d\x8a\xfa\xb0\xc0\xca\x8a\x35\x25\xd5\xdd\xab\xca\x1e\xb2\xdf\x72\xb8\x2a\x4f\x25\x7b\x44\xac\xd2\x6a\x84\xca\x16\x85\x90\x5e\x8e\x29\xcc\x0f\x75\xa2\x15\x6f\xf4\x90\x75\x21\x08\x18\x13\x46\x1d\x0b\x9f\xb9\xa5\xa3\xc9\x9a\xd7\xad\x74\xd5\x20\x12\x3e\x8d\x3e\xe8\x07\xe5\x9e\xaa\xf2\x02\xf8\x92\x17\x87\x64\x0f\x43\xde\xdc\x0a\xf3\x9b\x05\x9a\xba\x44\xf8\xbd\x76\x08\x55\xa6\x07\x76\xff\x80\xfa\xb2\x52\x0c\x2a\x1b\x37\x1b\x0b\x63\x65\xd8\xac\x34\xc1\xe5\x37\xd6\xf6\xca\xb9\x55\xaa\xdc\xd8\x62\xa5\x21\x9e\x2b\xb0\xe8\xad\xed\x96\x23\x81\x89\xb1\x6c\xd6\x06\xc7\x46\x20\xb5\x61\xc8\x6c\xa2\x0f\xda\x7b\x96\x1d\x74\x1e\xeb\xf9\x4a\x8f\xab\xaa\x76\x4b\xc7\xfd\xd9\xc6\xfc\x28\x6a\x57\xc6\xcb\x66\x5e\x1e\xf4\x1b\xb1\xf1\xcf\x54\x58\x0f\x9b\x54\xd3\x1e\xdb\x26\x58\xa7\xf9\x9d\xc7\x32\x19\x1c\x44\x95\x2c\x7b\xf3\x5d\xb4\xe3\x42\x8e\x1e\xeb\x94\xcd\x78\x75\x86\xc3\x5e\xc7\x55\x39\x3c\xd6\x36\x20\x0a\x3b\xf2\x60\xdb\x2c\x0d\x50\x79\x2c\x70\x23\xce\x9d\x48\x89\x6b\x9e\xdc\x82\xc1\xe9\x33\xce\x13\x8e\x9c\xf7\xf1\xa7\x38\xb9\x8d\x6b\xab\x38\x12\x35\xa7\x21\x77\x63\x35\x4d\x6c\x97\x6c\xf4\x94\xab\x48\x4d\x16\xe9\x5b\x6e\x32\xa9\x85\xf0\x44\x87\x5f\xc2\x02\xf8\xa4\x43\x27\x72\x51\x9e\xe9\x80\x32\xff\x79\x6a\x0a\xaa\x55\x31\xd4\xc1\xdf\x8d\x15\xd5\x1f\x3a\xe2\x03\xac\x8f\x77\x10\xfa\x86\x15\xdd\xe6\x3e\x5d\xe2\xa9\x74\x17\x14\x43\x6e\x0f\xf2\x23\xcf\x7f\xec\x77\x8f\x7c\xd6\x6b\xb4\xbd\x6e\xbb\xc7\x7a\x8f\x6f\x4b\xb3\x40\x6e\x28\xb0\xdf\x4b\x34\x34\x7f\xb5\x45\xbd\x8a\x57\x80\x2b\x56\x09\x09\xad\xf9\x46\xd2\xd2\x2c\x97\xdb\xd3\x16\xe1\x73\x8f\x69\x02\xfe\x87\x43\xf8\x9b\x66\x59\x72\x4c\xdd\x7a\x3d\x84\xbf\xe9\x31\x75\xb3\x0c\x25\x0d\xaa\x1a\x36\xe1\x72\xe2\xa6\xb8\x11\x62\x92\xd2\x90\xc2\xd3\x6c\x25\xba\x96\x3c\x92\xdb\xac\xdc\x3d\x13\xb0\x4b\x24\xab\x9c\xaa\xc1\xcb\x2e\x72\x73\x55\x2f\xbe\xac\x72\xb2\x26\x64\x02\xa7\x13\x24\x74\x82\xb6\xc6\x78\xe4\x77\x48\xda\xa0\x11\x9d\xa0\x5b\x8e\xc2\x06\x6c\xc9\x7e\x07\x63\x4c\xc2\x26\x55\xb8\x44\xe0\x7a\x61\x82\xa0\xef\x48\x0a\x5b\xf1\x4a\xd9\x3f\x85\xb2\x0a\x35\xee\x29\x59\x69\x12\x18\x17\x84\x6f\x97\xef\xba\x73\x61\xfc\x5f\x7c\xd8\xe9\x94\x47\x91\x1f\x52\x31\x21\x46\xac\xe1\xa4\xce\x18\x15\x03\x59\xea\x9f\x13\x98\x62\x26\xf4\x86\xab\x0c\xaa\x1f\x5e\x41\x48\x35\xfe\x35\x7c\x43\x3b\x9e\xc3\xe7\x86\xf1\x5c\x8e\xc9\x24\xb7\xb6\x49\x11\x3e\xe8\x2b\xac\x75\xb3\xbf\x42\x49\xd5\xf0\x97\x0a\xb8\xf6\x60\xf4\x9d\x44\xf9\x7b\x78\xae\xd2\x1b\xf1\x64\x45\x16\xf0\x06\xf0\x56\x49\x72\x4d\x91\xa0\xfb\x8c\x70\x3a\x97\x6c\x98\xee\x64\xb0\x28\x91\x6c\xd8\xaf\x1c\xc5\x92\x3f\x97\x5c\x38\x26\x49\x11\x06\xeb\x85\xb0\x08\x5f\xcb\x70\x5a\x84\x67\x32\xbc\x2a\xc2\x43\x19\x5e\x14\xe1\x3b\x19\x46\x53\x1a\x1d\xd3\xf7\xbc\x95\xa6\xf5\x3a\xb8\x42\x8d\xc6\x59\x16\x1d\xcb\x18\x88\xd0\x31\xc9\x31\xf5\x64\x78\xe9\x40\xe0\x3d\x6f\x2d\x21\xb8\x74\x48\x32\xce\xb2\x50\x27\x5f\x3b\x10\x78\xcf\x5b\xd7\x10\xbc\x76\x48\x38\xce\xb2\x54\x27\xcf\x1c\x08\xbc\xe7\xad\x19\x04\x67\x0e\x49\xc7\x59\xb6\xd2\xc9\x43\x07\x02\xef\x79\x6b\x08\xc1\xa1\x43\x56\xe3\x2c\x5b\xe8\xe4\x3b\x99\x3c\x72\xee\xee\x1c\xb2\x18\xe3\x91\x3f\xa6\x82\x4c\x47\xed\x31\x75\x8f\x81\x9c\x90\xe9\xa8\x33\xa6\xbc\xd2\x17\xb7\xd1\x98\x2d\xa9\x19\x22\x91\x65\x1e\xd9\xdf\xe7\x84\x91\x18\xaf\xed\x27\xd7\xa6\xb8\x38\x1e\xd6\xeb\xe8\x9a\xce\x2d\xbd\x41\xa4\xaa\xbb\xc6\x98\xcc\x6d\x0f\x63\xd7\x6a\x92\xd9\x9e\x02\xfe\xc1\x55\xcc\x46\x10\x0c\xae\x55\xa0\xf0\x1e\xf3\x61\xd3\x7b\x8c\x82\x95\x9a\xc2\xa7\xc8\xb1\x82\xdb\xde\xea\xad\x67\x24\x4a\x56\xda\xe6\xa0\x5c\x43\x71\x22\xa2\x29\x03\x67\xf5\xd3\xf0\x26\x12\xe1\x22\xc5\x0e\xf9\x07\xc7\x50\xb7\xf6\x68\xf3\x1e\x39\xff\xd4\xae\x3d\x57\x71\xf4\x45\x79\xfb\xfc\xa2\x63\xf4\x1e\xa0\x5f\x9b\xfa\x52\xf8\xc3\xfe\xa7\x43\x0e\x46\x8d\xe6\x78\x70\x31\x6b\xc0\x6b\x3f\xf7\x1e\x69\xaf\xf1\xe0\x40\x39\x44\xfe\xa7\x53\xe9\x5b\xb8\x78\x89\xd0\x63\xed\xc7\xf6\x93\x23\xf0\x42\xba\xf2\xaf\x2c\xab\x79\xb8\xf0\xad\x64\x79\x40\x32\xa1\x9f\x68\xa4\x8e\xdf\xf2\x3b\x2d\xd7\x21\x8c\x7e\x12\x84\xb7\xe6\x31\xbd\xe6\x44\xf9\xe0\xa9\xb0\xd4\x15\xc8\x31\x8e\x80\x1c\x32\x1a\x2b\x2d\x5a\x25\xda\xca\x1f\xdf\x23\x12\x21\xa2\x1c\xfa\xec\x02\x01\x7e\x89\xbe\x09\x21\xb6\x7d\x9f\xe5\x10\xc0\x2d\x43\x9c\xdc\x0e\xcc\x07\xc2\x41\xc3\x34\x51\x16\x03\x13\x2a\xb2\x69\x07\x5f\xd0\xde\x4f\xea\x19\x1f\xa6\xb0\x7c\x40\x31\x53\x2b\xaf\xe7\x87\x5b\x99\x3f\x4a\x41\x15\x38\x25\xf9\x8c\x5c\xc9\x7e\x33\xaf\x5d\xdc\x10\xde\x9a\xe9\x17\x0d\xe8\x39\xa4\xa4\xea\xd9\x51\x7a\x49\x76\x28\x0f\x58\xf2\xae\x5c\x3d\xdd\x31\x39\x55\xad\x95\x36\x57\x79\x73\xaa\xdf\x40\x2c\x0a\x21\x80\x61\xad\x99\xa9\x42\xec\xc4\x20\xfa\xa7\x20\xdf\xa1\xd0\x59\xee\x0e\xc8\xa8\xb0\xab\x56\x27\xf8\x46\xc3\x86\x51\xac\x4a\xcf\xd8\x3c\x8a\x99\xba\xcf\xa5\x0b\x91\x1b\xd0\xe9\x98\x2d\x77\x4e\xc6\x50\xa0\x78\x65\x8a\xc6\x42\x9b\x85\xa1\x98\xa6\xe6\x99\x8c\x88\xc6\x46\x15\x18\x13\xc4\x61\x15\x0c\x91\xa0\x4f\x51\x44\x04\xc6\xd0\x3f\x2c\x16\xba\x9a\x08\xf4\xd2\x23\xa5\x4d\x4e\x56\xc5\xab\xdc\xda\xb0\x50\x26\xd4\xeb\xc8\x0a\x95\xca\x0f\x54\xc9\xed\x84\xa0\x54\x5e\x3f\x85\x0c\xa1\xc2\x3c\x41\x86\x8a\x11\xaa\xda\xa4\xdf\xa2\x48\x94\xba\x7a\x7b\x98\x1e\xec\x6c\x6b\xb0\x62\x49\x83\x17\xd1\x57\xf6\x3e\x8e\x44\x4a\xff\x24\x65\x95\xf2\x3f\xe4\xe9\x62\xd3\x77\x8b\x99\x00\xc5\x0b\x1b\xbf\xf2\xc0\x31\x39\x2c\xfb\x89\x7a\x1d\xfd\xca\x29\x03\xcb\xbb\x0d\xc0\x67\xd7\x9c\xa5\xd7\xc9\x62\xc7\x61\x51\xc1\xde\xa7\xf4\x3d\x57\x3d\x9d\x57\x26\x06\x10\x15\x20\xf8\xa1\x82\x38\x29\x9c\xcf\xea\x75\x04\xfb\x31\x15\x4d\x0f\xcb\x1a\xa1\xca\xb2\x77\xe3\x4a\x25\x1d\x06\xde\x84\x91\x20\x4a\x86\x05\xc6\x88\xe6\xf8\x75\xdc\xec\x0d\x0a\x47\xc8\x01\x3f\x6e\x7a\x03\x67\x11\xa6\x42\x79\x71\xe2\xc7\xae\x0a\x9e\xc0\x29\xea\xd8\x53\x99\x75\xc8\x1f\x38\xfa\xb1\x5f\x19\xea\xab\x90\x2a\x58\xc0\x84\xe5\x6c\x84\x12\x8a\xd8\xbe\x3c\x1b\xbe\xee\x4e\x9e\x0f\xcf\xe8\xfd\xc9\x93\xb3\x67\x67\xaf\x86\xcf\x26\xaf\xdf\x3e\x7d\xf2\x3a\xd8\x7a\x9a\xc5\x21\xe5\x1c\x93\xd3\x67\x4f\xdf\xbe\x39\x39\xdd\xce\x19\x48\x96\x64\x23\xf3\xb0\x3a\x1f\x78\x39\x81\xbc\x76\xb2\x43\x64\xc9\xc0\xd1\xf5\x02\x98\xbc\xb6\xa2\x0a\x88\x1f\x5a\x51\x0a\xda\xf9\xb3\x67\x7f\x0f\xe0\x29\x86\xe6\xe8\x7c\x7c\x7e\xee\x90\xe1\xdb\x37\x67\x2f\xf3\x0a\x64\x3f\xac\x71\x85\x27\xf1\x5c\x9c\xc7\x90\x16\x46\xe7\x31\x11\x0a\x49\xaa\xd8\x4d\x3e\x0a\xc7\x9a\xf1\x84\x2f\x65\x31\x53\x31\x25\x39\xfb\x6b\x15\x71\x56\xaf\xeb\x0f\x90\x8f\xa5\xf5\xfa\xca\xb0\xa8\x2b\x14\xc2\x0c\x88\xe6\x28\x31\x71\x89\x8e\x93\x50\x17\xd4\x3a\x7d\x3e\x0d\xe3\x38\x11\xb5\x79\x14\xcf\x6a\xcb\x64\xb6\x5a\xb0\xda\xdf\x9c\x46\xd8\x70\xfe\xe6\xe0\x3d\x75\x56\x5d\xb4\xa6\xc9\x8c\x51\x67\xf8\xf6\xe4\xfd\xeb\x67\x93\x37\x6f\xcf\x26\xcf\xdf\xbe\x7f\x73\xe2\x90\x05\x88\xa5\xa6\x54\xe2\x4e\xef\xd9\x97\x9b\x84\x8b\x34\xb8\x5f\xaf\xf7\x64\x1b\x46\xae\x76\xb2\x3d\x6d\xe9\x24\xb2\x79\x41\xc1\x29\x64\xf4\xc6\x23\x96\xdb\x55\x44\x88\x67\x99\xdc\xca\xa6\xa4\x28\x68\xe4\xf8\xb9\xeb\xe5\x51\x38\x36\x89\x6b\xe3\xdc\x2e\xf9\x9e\xee\x22\x21\x75\x7f\x0e\x8f\x63\xe3\x96\x2e\x6c\x34\x70\x84\x62\xd9\xe7\x85\x75\xd5\x1a\x61\x74\xef\x05\xa3\x4d\x72\xe4\x48\x16\x4b\xb9\x67\x71\xf6\x18\xf2\x0b\x1b\x2e\x14\x53\x86\xbc\xae\xa4\xd3\x71\x6b\x32\x61\xe9\x10\x3a\x73\x10\x07\xf7\xe6\xe4\x1f\xaf\xf7\x22\xe3\xce\xb6\x35\xb9\x0c\x2f\xd9\xe2\x5d\xb2\xb8\x9b\x47\x8b\x45\xbd\xee\xac\x62\xb5\x6d\xcc\x0a\x6b\xc3\x69\x12\xa7\xc9\x82\xd5\xeb\xfa\xa3\x75\x1b\xf2\xb8\x1c\x42\xce\xff\x1f\x00\x1d\xdc\x68\x48\x92\x35\x5c\x24\xe1\x8c\xcd\x94\x29\xa0\xb8\x0e\xe3\x5a\x12\x4f\x59\x2d\x51\x87\x97\xda\x4d\x78\xc5\x5a\xb5\x33\xf9\x29\x43\x3c\xb9\x0c\x2f\x17\x77\xf0\x0e\xf6\x8c\xa5\x11\x0f\x2f\x17\xec\x20\x8a\x05\x8b\x67\xfa\x09\xeb\x65\x78\x57\xbb\x0e\x3f\xc3\xf3\x46\x29\xfb\x6b\xc5\xe2\x29\x4b\x6b\xd1\xbc\x26\xa9\x0e\x93\x3b\x43\xfe\x40\x76\x0d\xac\x9d\x59\xcd\xa0\xa3\xde\xc4\x96\xbb\x79\xc4\x66\x35\x55\x58\x44\xe1\x62\x71\xd7\xaa\xbd\x9a\xd7\xee\x92\x55\x6d\x96\xd4\x62\xc6\x66\x35\x91\x00\xe2\xa5\xe2\x1b\x6d\x50\xc6\x9f\x1b\x2d\x3e\x88\x93\xa7\x49\x3c\x5f\x44\xd3\xdc\x08\x54\xc2\xba\xbc\xbb\x09\xd3\x14\xa0\x69\x6b\x49\x78\xf6\x6c\xc7\x00\xd0\x7d\x77\x4d\xee\xbd\x6e\xe0\x75\x89\x1f\xf8\xeb\x31\xf1\xbf\x39\xfa\x6d\x4c\x18\xea\xca\x3f\x1d\xf9\xc7\xf3\xe0\xaf\x0b\x7f\x21\x4d\x9e\xbf\x19\xf2\x20\xb5\x2f\xff\x1c\xca\x3f\x3d\xf9\xe7\x48\xfe\x69\xbb\x3d\xf5\x23\xcf\xa8\xf7\x9e\x1b\x78\x2e\xf1\xbc\xc0\xf3\x88\xe7\x07\x9e\x4f\xbc\x76\xe0\xb5\x89\xd7\x09\xbc\x0e\x69\x07\x6d\xd2\x76\x7b\x41\xdb\xed\x91\xb6\xdb\x0f\xda\x6e\x9f\x74\x82\x0e\xe9\x06\x5d\xd2\x0b\x7a\xa4\x1f\xf4\xc9\x61\x70\x48\x8e\x82\xa3\xf5\x98\xb4\xb7\x91\x67\xc8\xef\x43\xfd\xbe\x42\xc8\xf7\x7a\xea\xa7\xab\x7e\x54\x9a\xef\xaa\x1f\x1d\x79\xa4\x7e\xfa\x2a\x52\xff\xa8\x72\xbe\xaf\x7e\xda\xea\xc7\x53\x39\x75\x48\xd5\xe0\x6b\x98\x00\xc5\x3b\x54\x3d\x73\xa8\x3a\xe5\x50\x15\x68\xeb\x1f\x55\xad\xab\xa1\xe8\x1f\x55\x83\xab\x7f\x14\x68\x57\x81\x76\xbb\x58\xae\x3f\xd5\x81\xbe\xab\x30\x73\x55\x7d\xae\xc6\x5a\xd7\xa7\x06\xe7\xb0\xab\x7e\x7a\xea\xa7\xaf\x7e\x0e\xd5\x8f\x42\xf0\x48\x15\x38\x52\xe3\x78\xa4\xf0\x3c\x52\x23\x79\xa4\xa0\x1c\x29\x28\x47\x0a\xca\x91\x82\x72\xa4\xa0\x1c\xa9\x6a\x5d\xd5\x94\x9e\xea\xc1\xbe\x0a\xf5\x15\x82\x3d\x85\x60\x4f\x67\x51\xcd\xec\xa9\x36\xf4\x3d\x68\x51\x5f\x35\xb3\xab\x22\xbb\xaa\x5c\x57\x95\xeb\xaa\x1a\x7a\xaa\x43\x7a\x2a\x67\x4f\x75\x48\x4f\xd7\xa0\xb2\xf4\x55\x96\xbe\x4a\xeb\x6b\x5c\x14\xd6\x2a\xe4\x29\x94\x3c\x13\xa9\xba\x40\xcd\x10\x4f\x81\xf6\x14\x82\x5e\x4f\x47\xea\x72\x2a\xb2\xaf\xb3\xa8\x3e\x53\xb5\x7b\x5d\x0d\x53\x75\x5d\x17\xc6\xc8\xeb\xeb\x2c\xaa\x06\x85\xbc\xa7\x1a\xed\x75\x55\xb7\x76\x75\x48\x65\x51\xad\xf5\x14\xf2\x9e\x6e\x5f\x47\xb5\xaf\xa3\x7b\x42\x47\xaa\xd6\x76\x55\x7f\x76\x55\x7f\x76\x55\xdb\xbb\xaa\x7b\xda\x7a\xba\xe9\x6e\x55\x3d\xa1\x46\xda\x57\x23\xed\xab\xb6\xfb\x6a\x7e\xfa\x6a\xa2\xf8\x6a\x6a\xf8\x87\x3a\x4d\x15\x3f\xec\xc1\x18\xa9\x29\xe5\xab\x49\xe4\xeb\x99\xac\xe6\xb5\xdf\xd6\xd5\xaa\x2c\x6d\x05\xac\xad\x46\xb3\xad\xdb\xa0\x2a\x6a\xab\x1a\xda\xaa\x86\x8e\x82\xd2\x51\x50\x3a\x0a\x4a\x47\x37\x53\x15\xef\x74\x31\x11\x66\xd3\xa3\x0c\x75\x7d\x20\x1b\xdd\x4e\xe0\x75\x3b\xc4\xeb\x4a\xe2\xd5\x25\x5e\xb7\x17\x78\xdd\x1e\xf1\xba\xfd\xc0\xeb\xf6\x89\xd7\x3d\x0c\xbc\xee\x21\xf1\xba\x47\x81\xd7\x3d\x22\x5e\xcf\x0d\xbc\x9e\x4b\xbc\x9e\x17\x78\x3d\x8f\x78\x3d\x3f\xf0\x7a\x3e\xf1\x7a\xed\xc0\xeb\xb5\x89\xd7\xeb\x04\x5e\xaf\x43\xbc\x5e\x37\xf0\x7a\x5d\xe2\xf5\x7a\x81\xd7\xeb\x11\xaf\xd7\x0f\xbc\x5e\x9f\x78\xbd\xc3\xc0\xeb\x1d\x12\xaf\x77\x14\x78\xbd\x23\xe2\xf5\xdd\xc0\xeb\xbb\xc4\xeb\x7b\x81\xd7\xf7\x88\xd7\xf7\x03\xaf\xef\x13\xaf\xdf\x0e\xbc\x7e\x9b\x78\xfd\x4e\xe0\xf5\x3b\xc4\xeb\x77\x03\xaf\xdf\x25\x5e\xbf\x17\x78\xfd\x1e\xf1\xfa\xfd\xc0\xeb\xf7\x89\xd7\x3f\x0c\xbc\xfe\x21\xf1\xfa\x47\x81\xd7\x3f\x22\xde\xa1\x1b\x78\x87\x2e\xf1\x0e\xbd\xc0\x3b\xf4\x88\x77\xe8\x07\xde\xa1\x4f\xbc\xc3\x76\xe0\x1d\xb6\x89\x77\xd8\x09\xbc\xc3\x0e\xf1\x0e\xbb\x81\x77\xd8\x25\xde\x61\x2f\xf0\x0e\x7b\xc4\x3b\xec\x07\xde\x61\x9f\x78\x87\x87\x81\x77\x78\x48\xbc\xc3\xa3\xc0\x3b\x3c\x22\xde\x91\x1b\x78\x47\x2e\xf1\x8e\xbc\xc0\x3b\xf2\x88\x77\xe4\x07\xde\x91\x4f\xbc\xa3\x76\xe0\x1d\xb5\x89\x77\xd4\x09\xbc\xa3\x0e\xf1\x8e\xba\x81\x77\xd4\x25\xde\x51\x2f\xf0\x8e\x7a\xc4\x3b\xea\x07\xde\x51\x9f\x78\x47\x87\x81\x77\x74\x48\xbc\xa3\xa3\xc0\x3b\x3a\x22\xbe\xeb\x06\xbe\xeb\x12\xdf\xf5\x02\xdf\xf5\x88\xef\xfa\x81\xef\xfa\xc4\x77\xdb\x81\xef\xb6\x89\xef\x76\x02\xdf\xed\x10\xdf\xed\x06\xbe\xdb\x25\xbe\xdb\x0b\x7c\xb7\x47\x7c\xb7\x1f\xf8\x6e\x9f\xf8\xee\x61\xe0\xbb\x87\xc4\x77\x8f\x02\xdf\x3d\x22\xbe\xe7\x06\xbe\xe7\x12\xdf\xf3\x02\xdf\xf3\x88\xef\xf9\x81\xef\xf9\xc4\xf7\xda\x81\xef\xb5\x89\xef\x75\x02\xdf\xeb\x10\xdf\xeb\x06\xbe\xdc\x9d\xbc\x5e\xe0\x7b\x3d\xe2\x7b\xfd\xc0\xf7\xfa\xc4\xf7\x0e\x03\xdf\x3b\x24\xbe\x77\x14\xf8\xde\x11\xf1\x7d\x37\xf0\x7d\x97\xf8\xbe\x17\xf8\xbe\x47\x7c\xdf\x0f\x7c\xdf\x27\xbe\xdf\x0e\x7c\xbf\x4d\x7c\xbf\x13\xf8\x7e\x87\xf8\x7e\x37\xf0\xfd\x2e\xf1\xfd\x5e\xe0\xfb\x3d\xe2\xfb\xfd\xc0\xf7\xfb\xc4\xf7\x0f\x03\xdf\x3f\x24\xbe\x7f\x14\xf8\xfe\x11\xf1\xdb\x6e\xe0\xb7\x5d\xe2\xb7\xbd\xc0\x6f\x7b\xc4\x6f\xfb\x81\xdf\xf6\x89\xdf\x6e\x07\x7e\xbb\x4d\xfc\x76\x27\xf0\xdb\x1d\xe2\xb7\xbb\x81\xdf\xee\x12\xbf\xdd\x0b\xfc\x76\x8f\xf8\xed\x7e\xe0\xb7\xfb\xc4\x6f\x1f\x06\x7e\xfb\x90\xf8\xed\xa3\xc0\x6f\x1f\x11\xbf\xe3\x06\x7e\xc7\x25\x7e\xc7\x0b\xfc\x8e\x47\xfc\x8e\x1f\xf8\x1d\x9f\xf8\x9d\x76\xe0\x77\xda\xc4\xef\x74\x02\xbf\xd3\x21\x7e\xa7\x1b\xf8\x9d\x2e\xf1\x3b\xbd\xc0\xef\xf4\x88\xdf\xe9\x07\x7e\xa7\x4f\xfc\xce\x61\xe0\x77\x0e\x89\xdf\x39\x0a\xfc\xce\x11\xf1\xbb\x6e\xe0\x77\x5d\xe2\x77\xbd\xc0\xef\x7a\xc4\xef\xfa\x81\xdf\xf5\x89\xdf\x6d\x07\x7e\xb7\x4d\xfc\x6e\x27\xf0\xbb\x1d\xe2\x77\xbb\x81\xdf\xed\x12\xbf\xdb\x0b\xfc\x6e\x8f\xf8\xdd\x7e\xe0\x77\xfb\xc4\xef\x1e\x06\x7e\xf7\x90\xf8\xdd\xa3\xc0\xef\x1e\x11\xbf\xe7\x06\x7e\xcf\x25\x7e\xcf\x0b\xfc\x9e\x47\xfc\x9e\x1f\xf8\x3d\x9f\xf8\xbd\x76\xe0\xf7\xda\xc4\xef\x75\x02\xbf\xd7\x21\x7e\xaf\x1b\xf8\xbd\x2e\xf1\x7b\xbd\xc0\xef\xf5\x88\xdf\xeb\x07\x7e\xaf\x4f\xfc\xde\x61\xe0\xf7\x0e\x89\xdf\x3b\x0a\xfc\xde\x11\xf1\xfb\x6e\xe0\xf7\x5d\xe2\xf7\xbd\xc0\xef\x7b\xc4\xef\xfb\x81\xdf\xf7\x89\xdf\x6f\x07\x7e\xbf\x4d\xfc\x7e\x27\xf0\xfb\x1d\xe2\xf7\xbb\x81\xdf\xef\x12\xbf\xdf\x0b\xfc\x7e\x8f\xf8\xfd\x7e\xe0\xf7\xfb\xc4\xef\x1f\x06\x7e\xff\x90\xf8\xfd\xa3\xc0\xef\x1f\x11\xff\xd0\x0d\xfe\x3f\xda\xde\x75\xbb\x71\x63\x4b\x13\xfc\xaf\xa7\x10\xd1\xa7\x50\x11\xc9\x4d\x08\x00\xef\x21\x85\xd8\xe9\xb4\xd2\x27\xfb\x38\x2f\x95\xca\x63\xd7\x29\x1e\x96\x16\x44\x06\x45\x38\x49\x80\x07\x00\xa5\x94\x05\xd6\x72\xcf\x4c\xcf\x75\xad\x79\x80\xf9\x33\xfd\x77\x7e\xcd\x3b\xd4\x9b\xb4\xe7\x45\x66\xc5\x0d\x08\x90\x20\x53\x76\x55\xdb\x6b\xa5\xc0\x00\x10\x88\xeb\xbe\xc5\xde\xdf\xf6\x07\x2e\xf8\x03\x8f\xf8\x03\x0f\xfc\x81\x4f\xfc\x81\x0f\xfe\xa0\x4d\xfc\x41\x1b\xfc\x41\x87\xf8\x83\x0e\xf8\x83\x2e\xf1\x07\x5d\xf0\x07\x3d\xe2\x0f\x7a\xe0\x0f\xfa\xc4\x1f\xf4\xc1\x1f\x0c\x88\x3f\x18\x80\x3f\x18\x12\x7f\x30\x04\x7f\xe8\x12\x7f\xe8\x82\x3f\xf4\x88\x3f\xf4\xa0\xeb\x93\x2e\x97\x7f\x3a\xb5\x22\x04\xe7\x8a\x3b\x34\xc8\x11\x68\x0d\xce\x7c\x19\x64\x6f\x83\xf5\x16\x9e\xfc\xa1\x4f\xfc\xa1\x5f\xd4\xd4\xad\xaf\xa9\x7d\xa8\xa6\x30\x9a\x2e\x37\x33\x96\x8a\xaa\xda\xc4\x1f\xb6\x8b\xaa\x7a\xf5\x55\x75\xf6\xab\x92\xb8\xb4\x0e\x8b\xb2\x24\x54\x55\x75\x88\x3f\xec\x14\x55\xf5\xeb\xab\xda\xa7\xb1\xba\xaa\x3b\x96\xbd\x7f\x88\x3e\x24\xf1\x9a\x25\xd9\xe3\xb7\x2c\x9d\x26\xe1\x3a\x8b\x13\x59\x79\x97\xf8\xc3\x6e\x51\xf9\xa0\xbe\xf2\xde\xc1\xca\x85\x75\x55\xd6\xd4\x23\xfe\xb0\x57\xd4\x34\xfc\xba\x12\x22\x59\x9c\xcf\xa5\x91\xdd\xda\x3f\x24\xf1\x2a\x4c\x99\x33\x0f\x23\x2e\x73\xf3\xfa\xf5\xf6\x1d\xf6\x89\x3f\xec\x17\xdf\xf1\xdc\xfa\x26\x0f\xf6\x2b\x95\xd6\x65\x67\x1d\xcc\xae\xa2\x99\x68\xf2\x80\xf8\xc3\x41\x59\x55\x8d\xe2\xc4\xab\x1a\x1e\xab\xea\x3a\x0b\x92\x4c\x54\x36\x24\xfe\x70\x58\x56\x56\x23\x87\x73\x91\xd9\x3b\x58\x59\x96\x84\xab\x8f\xe1\xdd\x82\xd7\xd6\x76\x3d\xd2\x76\xcb\x45\xed\xd5\x0a\xc6\x6d\x2e\xb3\x1d\xa9\xed\x7b\x36\x97\x95\xb9\xa4\xed\xba\x65\x65\xb5\x5b\xa4\xed\xee\x6c\x11\xaf\xeb\x61\x67\x8e\xac\x20\x7d\x8c\xa6\x6f\x32\x96\x04\x59\x9c\x58\x92\x75\x7b\xc4\xeb\x7a\xd0\x76\x7d\xd2\x76\x45\x95\xb5\x7b\xa5\xbd\x5b\xe3\x00\x3b\x77\xcb\xf8\x36\x58\xf2\x4a\x38\xbb\x83\xb6\x4f\xda\xa2\x82\x9a\x1d\x52\xbe\xba\x73\xc4\x55\x6a\xcb\x25\xc0\x0d\x96\x3a\xff\xa7\xc7\x35\x93\x16\x02\xd6\xb4\xb8\x9e\xc8\xd5\xc3\xa0\x30\x65\x34\x4a\x78\x0e\xb6\xdd\xc2\x13\xff\x72\xcd\x86\x52\x69\xbc\x90\x3f\xc0\x27\x07\x5b\xd1\xe0\x17\x47\x3f\x1b\x9d\x4a\xbc\xfb\xdd\xaf\x72\x4e\x35\xe0\x9f\xae\xd9\x6e\x0a\x17\xa4\xf8\xe8\x93\xd2\x50\x89\xe5\x3b\x3d\xa7\x6b\x6d\x4f\x76\x21\x15\x4f\x6f\x6e\x98\x6d\xa3\x9b\x1b\x46\x23\xac\xfa\x54\xb3\xfb\x74\x9f\xbc\x5e\x7d\x9f\x0a\x6c\x18\xde\x2d\x28\x6d\x7e\xda\x12\xc3\x34\x6a\x7c\x22\xbd\x1b\x4e\x3d\xb2\xeb\x05\x67\x24\xc3\x2d\x01\x4a\xb6\xc2\xe1\xe0\xd4\xdf\x7f\x1a\xa2\x9a\xe7\x21\xd2\x6f\xb4\xeb\xde\x30\x4e\xc6\xcc\x77\x20\xc4\xdb\xed\x41\xa7\x3c\xa6\xcc\xf2\x99\x61\x93\xdf\xf2\x89\xf0\xb8\x88\xc8\x75\xe6\x1a\x22\x52\x8e\x51\x83\xd3\x2a\x8c\xf6\xeb\xed\x37\xa8\x22\x83\xd2\x04\xa2\x69\x2c\x7a\xda\x82\x15\x58\xf0\x74\xc7\x32\x52\xf3\xda\x76\x8b\x9d\x60\x8b\x05\x55\x23\x7e\x9b\x37\xa0\x86\xf4\x18\x8b\x10\x42\xfe\xb7\x83\x9d\x59\x3c\x15\xed\x87\x98\x46\x28\xc4\xb6\x1d\xa1\x50\xa2\xfc\xb2\xab\x25\xe3\x77\x0e\x2d\x58\x6d\x4f\x1b\xed\x3c\x8f\x18\x26\x4f\x62\x30\xb8\x7c\xc5\xd9\xaf\x5c\x9b\x7e\x0d\xfd\x2a\x5a\xd4\x91\x2d\xe2\xba\x77\xcc\xff\x0e\x31\x04\xbc\xbc\x27\xa0\x76\x10\xd7\xc2\x37\xb5\xa1\x7c\xe2\x44\x19\x16\x94\xd9\x1b\xe7\x35\xcc\xc4\xdf\xef\x60\x2d\xfe\x5e\xc3\x4a\xfc\xfd\x00\xf7\xe2\xef\x37\xf0\x28\xfe\xfe\x08\x77\x74\x36\x0a\x49\x38\xce\x26\x79\x8e\xf8\x1f\xfa\xb4\xc5\x70\x6b\x66\xed\x83\x1b\x3a\x1b\x45\x64\x3d\x8a\xc6\xd9\x84\xa0\x48\x3c\xfb\xb4\xc5\x26\x92\x52\x9c\xa0\xe5\x69\x18\x9d\xce\x24\x6a\x10\x86\x04\xa3\x29\x6d\x2c\x6c\xfb\xc6\xb6\x0b\xab\xf7\xcd\x78\x39\xc1\xb6\x9d\xa2\x3b\x58\xe2\x3c\x47\x73\x3a\x1d\xf1\x32\x92\x8c\x97\x13\xb8\x1b\x2f\x27\x74\x66\xdb\x35\x24\x88\x3f\x34\xe2\x0f\x91\x7b\xdb\x9e\x8e\x62\x34\x87\x08\x93\x47\xdb\xe6\x37\x28\x9d\x8f\xf6\xbd\x9c\x8b\x12\x65\x5f\x55\x31\x8e\xc2\x1c\x14\x44\x53\x05\xeb\xa8\xf6\x5d\xb1\x76\x95\x05\x50\x6d\x43\x57\x6f\x93\x88\x3d\x9c\xb2\x93\xea\xd6\x14\x65\x28\xc3\x3b\x7b\x50\x15\xf3\xdd\xb9\x5b\x62\xd8\x2a\x8b\x6d\xb3\x08\x53\x73\xe7\x94\x69\x36\x4a\xeb\xb9\x01\xcf\x0e\xd9\x16\xcd\x31\x59\x99\x83\x54\xd0\xaa\xf9\x28\x46\xaf\x55\xa9\xd8\xbf\x30\xc7\x64\x0e\x2b\xdb\x46\xe8\xce\xb9\x0f\x93\x6c\x13\x2c\xf3\xbc\xbc\xe6\x53\x8d\xf9\x00\xce\x81\x2f\x86\x8f\xb6\x7d\x6b\xdb\x8d\xdb\xf1\x72\x62\xdb\x01\xba\x05\x5e\x01\xc6\xdb\x93\x8d\xf3\x9a\x7a\xb0\x71\xbe\xa3\x3e\x6c\x9c\x6b\xda\x81\x8d\xf3\x81\x0e\x60\xe3\x7c\x43\xbd\x1e\x6c\x9c\x1f\x69\x9b\xdf\xf9\x33\xed\xf1\x5b\x1f\xa9\xe7\x0f\x0c\xe6\xb4\x29\x38\x92\xc7\xd5\x25\x50\x9b\x81\x8b\xde\xc0\x15\x0d\x41\x25\x6a\x98\x70\xfd\x66\xcb\x92\xc7\x02\x96\x8f\x21\xbc\x9d\x8a\x04\xba\x59\x19\x57\xbb\x55\xcc\xc7\xaf\x61\xc5\xbb\x1c\xa0\xce\xc2\xfa\x10\x46\xb3\xf8\xc1\xb6\xe5\x5f\xe7\x6d\x90\x2d\xa8\x70\xd6\x1d\xc9\x12\x52\xf7\x52\xca\x96\x73\xdb\xe6\xff\x9a\x2f\xf0\xdf\x44\x4f\x09\xb2\x0c\x77\x11\x0b\x23\x5c\xc7\x6d\xee\x04\xb7\xb9\x2b\xb8\x8d\x5f\xc3\xfc\x65\x27\x9e\xb6\xce\x22\x48\x0d\xe9\xf3\x00\xe7\x29\x11\xec\x24\x4d\x17\x99\x6d\x54\xe5\x35\x82\x41\x41\x87\x86\x92\x0e\xb5\x5d\x93\xea\x31\xe4\xbb\x78\x74\xe0\x40\x2e\x72\xe6\xa2\x24\x44\x9e\x48\x66\x44\x0e\x3c\xc7\x38\x95\x49\x40\xb2\x6b\xae\x38\x03\x57\x2b\x87\xd0\xe6\xa2\x14\x6f\x56\x8d\xd4\x50\xe5\x18\x2e\xb6\xed\xdf\xce\x39\x18\xf2\x3d\x8c\xac\x59\x78\x6f\xe1\xe7\xf2\x10\xd9\x3c\xae\x85\x43\xc1\x4f\x6a\x24\x8b\x63\x7c\x61\x3f\x31\xcf\x48\x9e\x96\x52\x56\x7b\xba\xa8\x27\xe7\x98\x9c\xd1\x57\x6c\xab\x2f\x99\x44\xdb\xe3\x4c\xa2\xb6\xd7\x27\x89\x33\x57\xd3\x56\x7b\x7f\x6f\x92\xb4\x94\x92\xd1\x18\x65\x02\xd3\x95\x0b\x1f\x10\xe2\x72\xe3\x9d\x06\x3a\xcb\xbe\xdc\x7c\x29\x7e\xda\x72\xd1\xf1\x8e\x65\x56\x18\x9d\x26\x79\x6e\xa5\xea\x72\x4f\x86\xb3\x5e\x2a\x00\x48\x29\xc7\xa5\x9b\x35\x1f\x37\x36\x2b\xe5\x38\xe9\x55\x22\xde\xb6\x6d\x24\x17\x8b\xd4\x85\xb0\x5c\x33\x5e\x9f\x78\x7d\x50\x53\xc3\x15\x62\x68\x7b\xa4\xed\x6d\x27\x7c\x05\x3d\x6b\x6a\xca\x5d\xf1\xc4\xa2\xcd\x8a\x89\xf3\x0d\xd2\x40\x9e\xcd\x30\xc8\xc3\xf4\x8d\x2e\xf3\x79\xd9\x43\x12\x66\xea\x77\x87\xff\x16\xcd\x21\x99\x26\x35\xed\xe3\x22\xc6\xc1\x9d\x59\x48\xba\x85\x1c\x28\x4f\xfb\x43\x11\x91\x5f\x47\xe4\x51\x22\xa2\xed\x55\x82\x0e\xdb\x6e\x44\x28\xa4\x0a\x30\xdf\xc0\x23\x16\x15\x1c\x78\x5b\x39\xed\x7c\xe5\xe5\xc6\xbf\xed\xf3\x7b\xd3\xfe\x2a\x88\xfe\x3e\x3b\x9d\xc6\xd1\x3d\x4b\x32\x25\xbb\x9f\x66\xf1\xe9\x3a\x09\x57\x61\x16\xde\xb3\x53\x39\xed\xd8\x14\xe2\xdb\xc7\x04\x25\x1f\x9f\x44\x28\x72\xbe\x83\x27\xa9\xf7\x10\x21\x3c\xc9\x6d\xeb\x13\xdf\x97\x7c\x86\xd7\x52\xc3\x5b\x0a\x96\x3b\xee\x4c\xc6\x5e\x4f\x9c\x4b\x4a\x8e\x9c\x98\xec\xb8\x14\x63\xdb\x07\xb9\x09\x43\x9d\xe3\x53\xac\xc9\xbc\x89\x18\x6a\xbd\xd3\x65\xb5\x9a\x4e\x81\x36\xd9\x14\x2b\xbe\x33\x20\x1d\x31\x1e\x07\xb9\x01\x57\x29\x7d\x8c\xac\x4d\x94\x4e\xe3\x35\x5f\xaa\xa9\xc5\x69\x84\xb4\x9e\x94\x82\x9a\xc4\xb0\x0e\x45\x20\x34\x43\x7d\x1f\xa3\x10\x22\xe0\x22\xdf\x01\x5d\x6c\x1c\x4d\xc6\x6c\x42\x39\x5b\xe5\xca\xa9\x4f\xbc\xae\x0f\x7d\x9f\xf4\xb9\x66\xd9\xae\x61\x20\x15\x4b\x44\xd1\x38\x7f\x88\x51\xc3\x3d\xa6\x1d\x15\xce\xda\x28\x19\xc9\xb1\x53\xb2\x18\xf1\xc4\x9a\xf0\xfc\x21\xf1\x7c\x71\x90\x75\x94\x3f\xec\xfa\xfb\xc9\x5d\x86\x98\x29\xf8\x65\x38\xcf\x0b\xa1\x34\xb2\xed\x48\x65\x40\xdb\x99\x85\xa4\x69\x91\xd3\x30\x9a\xc6\x49\xc2\xc4\x41\xe2\x7d\x3c\x0d\x0e\xa8\xba\xed\x1a\xae\x50\x5d\x64\xfd\x23\x8b\x4c\x50\xb4\x81\x47\x06\x82\x8a\x7d\xcd\xbe\x53\x8c\x6a\xc7\x57\xca\x42\x5b\x31\x02\xaf\xe3\x99\x63\x3c\x9e\x38\xd3\x78\xfd\xf8\x63\x98\x2d\xc2\x28\xcf\xeb\xdc\x44\x22\x15\xad\x19\xd0\x18\xe9\xb4\x6c\x5c\xd3\x08\x11\x83\x80\xab\x1a\x21\x57\xed\x30\x2c\xe9\xae\x8c\x7c\xe9\x8f\xca\x0e\xfa\x13\x22\x07\x14\xa6\x32\xb0\x69\x15\x46\xa8\xf4\x6e\x59\x8e\x02\x12\xa2\x25\x04\x18\xb7\x36\x10\xb4\x52\x0c\x73\xea\x09\xb5\x61\x73\x91\xda\x76\x7a\xb1\x69\x4e\x6d\x1b\xcd\x69\xcb\x83\x4d\x93\x4e\x5b\x1e\xa4\xe2\x0f\x3e\x9f\xb6\x5a\xa7\x97\xee\x39\xde\xf0\x49\x4a\x46\xc9\x38\x9d\xd0\x64\xbc\x99\x10\xe5\x66\xc4\x0b\xf8\xc3\x73\xfe\xe2\xbc\xf0\x71\x11\x6b\xa6\xdd\x27\x5e\xbb\x0f\x5e\xc7\x23\x5e\xc7\x03\xaf\xe3\x13\xaf\x23\x2c\x99\x35\x9c\xe2\xf7\x8d\xb1\xb9\x5b\xb4\xd3\x41\x56\x0c\x6b\xc2\xb9\x68\x31\xac\xc1\xde\x20\x8a\x91\x0e\x2e\x3d\x63\x28\xbd\x62\x28\x13\x3e\xfe\xc1\x81\x71\x5e\xd2\x62\x74\x37\xa3\x84\x84\x68\x03\x09\x3e\x5f\x5e\xa6\xe7\x38\x1b\xa7\xcd\xe6\x84\x16\xc1\x40\xd9\x57\xc6\xe2\x08\xf7\xf2\x3a\xae\xea\x7e\xc7\x53\xdd\x6f\xf7\xbf\xa2\x07\x57\x34\x2f\x85\x04\x9c\xc2\x86\x8f\x09\x5f\x47\x21\xda\x14\x03\x32\xa5\x31\x0a\x60\x29\xfc\x52\x98\x6d\x27\x0d\x9a\xc8\x51\x3c\x5f\x5e\x4e\xcf\x71\x38\x47\x28\xa5\x9b\xf1\xb4\xd9\x9c\xe0\x06\x4d\x71\x21\xe3\x0b\xa7\xb5\xe2\xc1\x69\xb3\x29\x9e\x65\x79\x3e\xe5\xab\x64\x83\x6d\x7b\x33\x9e\x4e\x28\x2d\x31\x68\xf9\xbd\x3c\xd7\x81\xaf\x0d\x66\xdb\x2d\x6f\x5b\x1d\x18\x97\x78\x1d\x57\x0f\x10\x1f\x98\x23\xec\xa7\xab\xf4\xf4\x7e\xb1\x2a\x7c\xa9\xa8\x8b\x81\xe2\x92\x72\xa7\x7b\x98\x2b\xc8\xbd\xe7\x51\xca\x60\x43\x7d\xfe\x67\x49\xdb\x54\xc4\xc4\x75\xf8\x9f\x39\xed\xf1\x3f\x0b\xda\x15\xe1\x3a\x73\x98\xd1\x2c\xcf\x8b\xb4\x60\xc6\x08\xa7\xb0\x2e\xd7\xdd\x0a\xee\xe1\x91\xaf\x38\x0c\x77\x34\x44\x8f\x5c\x91\x8f\x50\x0a\x6b\x68\x63\xb8\xa1\x01\xba\x2b\x46\xfe\x81\xba\x70\x45\x93\xd1\x0c\x65\x70\x83\xc9\x46\x5c\xb8\x58\xad\xae\xf3\x9b\xcb\x87\xf3\x07\x35\xaa\x8b\x3c\x7f\xe0\xa3\xca\x19\x3e\xba\xa7\xb7\x68\x45\xef\xc6\x0f\x13\x78\x80\x47\x0c\x0c\xf3\x67\x12\x7c\x35\x7e\x98\xd0\xfb\x02\xee\xfe\x1e\x57\xf3\x20\x16\x16\xa7\x86\x2b\xf5\xe5\xae\xd6\x97\x57\xf2\x77\x4f\xff\x7e\xd0\xfa\xf4\x95\xcc\x47\xb9\x52\x1e\x8a\xe1\x1c\x4d\xf5\xfc\x17\x48\xcf\xf3\x51\xcb\x23\x22\x80\x6e\x4a\xae\xe4\x6c\x56\x97\x37\x74\xba\xa4\xd3\x85\x6e\x87\x74\x3b\xd0\xef\x93\x7e\x9f\xcf\x6b\x8d\x40\xa0\xe7\xb5\xdd\xd6\xeb\xdd\x97\x13\xcb\x27\x38\x38\xb6\xed\x05\x9b\x49\x61\x83\x9f\xf8\x02\x57\xde\x54\x21\x17\xa1\xf9\xea\x5e\x72\x4a\x17\xa0\x65\x31\xf0\x0b\xba\x19\xcd\x5b\x1e\x71\x61\x46\x37\xbc\xf9\x9e\x80\x95\xb8\xf0\x05\x30\xd2\xf9\xb9\xe0\x57\x0b\x3e\xde\x53\xfc\x94\xd2\xe9\x78\x31\x81\x45\x93\xce\x64\x2a\x41\x2e\x67\xf3\x5f\xb0\x19\x2d\x2e\x5c\x32\xbf\xa0\x8b\x7d\x11\xfb\x23\x9b\x6d\xa6\xec\x94\x4b\x1a\xab\x75\xf6\x78\x1a\x70\x21\xe0\xf4\x21\xcc\x16\xa7\x51\x7c\x1a\x46\x61\x16\x06\xcb\x42\xde\x12\x9f\xdd\x8c\x16\x97\xd4\x25\xf3\xcb\xc5\x39\xaf\x1e\xcb\x06\xd8\x36\x4a\x69\x86\x52\x90\xad\x80\x65\xe9\x07\x9f\xd6\x0d\x76\xbb\x4d\xda\xed\x72\x98\x8f\x88\x4c\x03\x4f\x6d\x9f\xa1\xda\x3e\x42\x7a\x49\xd7\x6c\x1a\x72\xc9\xe5\x00\x81\x91\xe9\x3b\x0b\x9f\x30\x81\xb3\xbd\x6f\x2d\x42\x19\x65\xce\x34\x8e\xd2\x2c\xd9\x4c\xb3\x38\xc1\x79\x9e\x35\xa8\x14\x85\x6c\xbb\x11\x22\xc3\xb8\x22\x20\x05\x0a\x94\xee\x48\xe0\x62\xeb\x3c\x1f\x19\xcd\xc6\xf1\x44\x62\x79\x17\x18\xd8\x86\xc3\xa6\xa8\x90\x64\x15\xc1\x68\x48\xfa\xc3\x82\x91\x77\x8e\x88\x6b\x9d\xce\x61\xea\x50\xda\x8d\x84\x2a\x86\x91\xd4\xd8\x3b\x1d\xd2\xe1\xf2\x6c\xe7\xb9\x52\x97\x5e\xcb\x03\x45\xba\xfb\x3d\xbe\x94\xb5\x3b\x3a\xa4\xf4\x69\x6b\xb4\xa1\x30\x1d\xdd\x86\xd1\xcc\x14\x16\xb4\x45\xad\xe4\x69\xc1\xae\x2b\xbb\x57\x31\x4a\xea\x5e\x26\x7c\x16\xa6\x41\x86\x76\x9f\xc7\x95\x64\x38\xa6\x64\xb6\xd9\x33\x2e\x08\xe9\x8d\x0b\x5f\xa7\x29\x2e\x29\x5d\x44\xc7\x13\x90\x98\xe1\x99\xc0\x0c\x8f\xc6\xe1\x84\x5a\xc1\xd8\x6a\x86\x4d\x6b\x62\x9d\xa4\x5c\x6f\x2c\x4d\x2f\xaf\x21\xb0\xc0\x32\x0c\x72\xaf\x91\xd5\x8c\x9c\x9f\xe2\x30\x42\x16\x58\xb8\x69\x61\xab\x30\xce\xf1\x77\x11\xe3\xfa\x2d\xca\x40\x3b\x05\x42\x84\x09\xd7\x88\x23\x60\xa5\x99\xae\xba\x96\x6c\x1b\x6d\x0c\xbb\x9d\x79\x0b\x36\x7c\x06\xd5\xfe\xe8\x91\x7e\xaf\x5c\x24\x47\xce\x48\x3a\xca\x3c\x2d\x77\x87\xd6\xbb\x3e\x05\x77\x16\x9f\x50\xeb\xa5\x1e\x4f\x8b\xd2\xa8\xc6\x12\x52\x8c\xf7\x16\xe1\xa3\x5b\x8a\xf3\xe9\x93\x7d\xf7\x67\xeb\xcf\x85\xa1\x8b\xa8\x4d\xc1\x46\xd6\xbb\xcd\x72\x29\xf0\xf9\x2a\xf9\x4c\xd0\x6e\xd2\x66\xc3\x5c\xc0\x75\x78\x65\x2a\x48\xf0\xd3\x76\x8b\x32\x65\xab\xe0\x44\x32\xc4\x78\x94\x90\x78\xc4\xf7\x1e\xb1\xde\x6b\x5b\x09\x0a\x84\xbc\x80\x6b\x2d\x9d\x99\x58\x4f\x8c\x8d\x8c\x21\x20\x81\xb9\x11\xb5\xc6\xd4\x39\x78\x0c\xf4\xb4\x2d\x14\xd9\xe3\xe2\x8c\xb6\x9b\x61\x85\xa6\x3e\x10\x51\xbb\x52\xea\xef\x3c\x57\x54\x1f\x0e\xb1\x33\x17\x73\x39\xd4\x86\x7d\x4f\x31\x16\x2e\x49\x70\x79\x81\xcb\x97\x1b\xca\x50\x6f\xc0\xa5\x24\x86\x06\x5d\xce\x41\x18\x1a\xf4\x39\x0b\xe1\x3a\x54\x9b\x73\x0f\x86\xba\x03\x0c\x33\x5e\x53\x07\x3b\xf3\x20\xcd\xfe\xc4\x1e\x61\x2d\x38\xd4\x10\xc3\x8a\x2e\x46\xd6\x4d\xca\x27\x28\xfc\x99\x59\x70\x7f\x20\x91\xf8\x8c\xf3\x2a\xae\x9c\xbe\xb6\xb8\x0e\x84\x4b\xf4\x0b\xae\xf2\x49\x3c\x72\xca\x9c\x9b\xf9\x79\x72\x9e\xd0\xc4\x89\x04\x9b\x77\x3e\x1b\xa7\x56\x89\x49\x3d\x9e\xee\x58\xf6\xaa\xa4\xb9\x3b\x66\x25\x58\xca\x2f\xf3\xfe\x18\x77\x22\xfc\x94\x22\x06\x53\xc8\xc0\xba\x09\x2d\x0c\xcc\xb9\xc9\x68\xc6\xff\x84\x34\x14\x61\x08\xa2\x6c\xae\xe8\x2f\xbf\x5e\x16\xd7\xe3\xd5\x84\xea\x94\x48\x91\x6d\x6f\x50\x04\x09\xb0\xf1\x72\xc2\x77\x68\x41\x61\x62\x34\x35\xec\xe7\x4f\xd3\x25\x0b\x12\xd3\xe8\xa7\x29\x0a\xa3\x6b\x69\x8d\xcf\x38\x85\xe3\x2d\x80\x48\x0e\x40\x74\x1e\xd1\xc8\x89\x70\xe4\x24\x22\x07\x93\xb3\xb6\x6d\x14\x39\x6b\x1a\x39\x6b\x27\x2a\x98\x47\xa1\x8e\x44\x4e\x38\x39\x11\xad\xde\x6f\xee\x56\x3d\xb6\x07\xcb\x92\x18\x9f\x8f\xe8\x3d\x4a\x80\x89\xf9\x29\x60\x4a\x22\x27\x82\x98\x7f\xf2\x44\x7f\x48\x4c\x95\x13\x4e\x40\x35\x2c\xb6\x6d\x14\x3b\x11\x0d\x31\x84\xb6\x8d\x42\x67\x4d\x63\x0c\x09\x6f\x08\x1f\x1f\x24\xae\x42\x51\xb2\x2c\x4a\x96\xe2\x99\xf1\x6a\xd2\x6a\x6d\xb5\x59\x3d\xda\xc2\x3c\x4e\xae\x82\xe9\xa2\xd2\xcc\xa2\x81\x65\xe6\x70\x88\x68\xc0\x15\xc5\x5d\xd5\xb0\x5e\x9f\x69\x63\xbe\x94\x46\x89\x13\xe9\x4c\x98\xe7\x42\xe8\x89\x50\xe2\xdc\x43\xe2\x7c\x96\x89\x44\xce\x13\xdb\x4e\x9c\xe4\x1c\xf3\x75\xb7\xde\xc2\x22\x48\xc9\xfe\xbe\x6c\x34\xee\x51\x39\x64\x4c\x60\xd1\x2c\x6c\x3b\xaa\x4c\xb7\xda\x04\x07\x0c\xbd\xc5\xeb\xe3\xd5\x84\xbf\x3e\xe5\xb3\x33\xdf\xb3\x88\x16\x50\x97\x54\xe4\x3a\x29\x57\xd6\x28\x76\xee\x69\x42\x90\x98\xe6\x98\x3e\x85\x24\xe4\xfb\x4a\x18\x4d\x3f\x93\x0c\xee\x49\x02\x6b\x22\x56\xd1\x12\xa2\x42\xab\x23\x0d\x6f\x2b\x56\x75\x9e\x23\xb1\x4c\x62\x0c\x91\x58\x52\x11\xbf\xe4\x0b\xa5\xd9\x04\xb9\x31\xf9\x44\x8a\x3d\x19\x4e\x68\x8c\x31\xb0\x2d\xdc\xb1\xec\x2a\xca\x92\x47\x72\x0f\x29\xcb\xae\xb3\x24\x8e\xee\xf6\xda\x2c\xec\xfc\x66\x9c\x5c\x82\x9f\xe4\x98\x67\x74\x5d\x66\xa6\x71\x6e\x3e\x53\x8d\xa5\xaa\x57\xea\x16\x6a\x77\x87\x7a\x1c\x8a\x74\x17\xe7\x99\x6d\x67\x7c\x9a\x32\xce\xe9\xaa\x10\x11\x59\x89\x7c\x4d\x33\x9a\x8d\xb2\x62\xca\x33\xe7\x66\x8e\x47\x53\xe4\x82\xf5\x99\x3d\x72\xce\xc5\x46\x99\xf3\x99\x48\xab\xaf\xfe\x7d\x4f\xc6\x19\x5f\x0e\xce\xfd\x04\xeb\x7c\x18\x5a\x08\x83\x29\xf2\x44\x14\xcc\xc8\x52\x9e\x3c\x56\xf1\x36\x34\x12\x31\xfa\x73\x21\x32\x71\x7e\xe0\xf5\x89\xe7\xf5\xc1\xf3\xdb\xc4\xf3\xdb\xe0\x75\x86\xc4\xeb\x0c\xa1\xdd\x27\xed\xbe\x52\x0b\xba\x03\xd2\x1d\x40\x6f\x40\x7a\x03\x18\x74\xc9\xa0\x0b\x83\x3e\x19\xf4\x61\xd8\x21\xc3\x0e\x0c\x07\x64\x38\x80\xe1\x90\x0c\x87\xdb\x09\x74\x9f\x6d\x37\xd0\x36\x7a\x4e\xa5\xef\x58\xf6\x23\x0b\x3e\x4b\x5b\xfd\x40\x92\xfd\x81\x57\x4f\xf6\xb9\xde\xc1\xc9\x64\xdf\x53\x64\x9f\x53\xf5\x05\x5d\xa2\x2e\xa7\xfa\x4b\xd4\xc3\xb0\xa6\x2e\xac\x6a\xe3\xad\x9d\x9b\xa5\x5c\x54\x32\x9e\xe3\x1e\x6f\x4d\x06\xa0\x96\x00\x17\x01\xb7\xf0\x58\x2f\x74\x2e\x10\x73\x82\xda\x64\x22\x63\x97\xeb\xd3\xd9\x16\x6f\x4f\xee\x0d\x29\xa7\xba\xb7\x0a\x61\x51\x1d\x6d\x4a\x22\x56\xb0\x8c\x6c\xec\x4d\x0e\x6f\xe8\xe2\x9d\x2d\x5f\xd9\xa4\x4e\x65\x2e\xab\x4d\x46\xc9\xd8\xd3\xb9\x31\x9c\x40\x2a\x8b\x63\x06\xd9\x04\x1f\x24\xb2\x19\xdf\x9e\xe2\xf1\xb2\x87\x65\xd7\x33\xd9\x43\x56\xf0\x8e\x7f\xd1\x10\x7f\x81\x93\xae\x05\xef\xcf\xb8\xa4\xdb\x68\xfc\x0b\x17\xfa\x9f\xcd\xfb\x62\x75\x3e\x5f\xcb\xfb\x96\xb5\xbc\x6f\xdd\x6c\x56\x78\xdd\x1e\x93\x8b\xab\x4c\x2e\x42\x4b\x93\xc9\xd5\x74\x9f\x8b\xd1\x41\x79\xd4\xd0\xf0\x54\xbe\x69\xae\x45\x99\xf0\xca\xc9\x68\x85\xe6\x9a\x2e\x62\x47\xd6\x84\x18\x26\x89\x6d\x4f\x0b\xdc\xe5\x10\x17\x51\x7e\xc9\x58\x15\xd5\x4c\xec\xef\xfc\xe8\x42\x00\x50\xed\x7e\x91\x53\xe8\xe5\x11\x0a\x4d\x43\x24\x2c\x1f\x65\xa0\x9b\xa8\x3b\x1a\xad\x84\xec\xc6\x32\x95\xd3\x67\xcc\x47\x58\x1e\x40\xc2\x66\x9e\x66\x71\xc2\xc8\xaa\x42\x2b\x2a\x34\xa2\x3d\x20\xed\x01\x74\x7c\xd2\xf1\x15\x8d\xe8\x7b\xa4\xef\x49\xf9\x5d\xd2\x08\x4e\x17\xbe\x16\x18\xa4\xe9\x42\x5f\xd9\xd3\x7a\xbe\x16\x03\x15\x3d\x10\x04\x23\x95\x04\xa3\x42\x10\x38\x81\x98\x2a\x82\xc1\x09\x42\xaf\x23\xc5\xc0\x41\x4f\x8a\x81\x9e\xdf\xc1\x42\xfe\xeb\x1f\x34\x38\x41\x02\xc2\x34\x24\x47\xea\x8e\x46\x63\x36\x81\x5b\x7a\x07\x37\xf4\x7e\x24\xce\xea\x88\x15\xcc\x66\x16\x3c\xd0\x5b\xdb\xbe\x35\x96\xd2\x15\x7d\xda\xc2\x97\x9a\x9c\x47\x0f\x63\x36\x39\x89\xd1\x03\x30\xb0\xe4\x4a\x10\xa4\xbb\x66\x5b\x23\xae\x74\x4f\x65\xb8\x6a\x66\xa0\xca\x4a\x1d\xc3\x25\x0c\x6f\x89\xb5\x08\xd2\x7f\xd3\xfb\x77\x2c\x3b\xf0\xfe\xa9\x7e\x7d\x24\xf7\x12\x39\x58\x47\x20\x70\x3d\x6b\xeb\xa8\x7f\x47\x82\x64\x90\x2a\x97\x3d\xf6\x06\x24\xea\x1d\xbc\xad\x3f\xa0\x3b\xbd\xb5\x6d\xf4\x98\xe7\x0f\x8e\x12\xc0\x6c\xbb\x31\x37\x35\x3b\xc4\xc9\xfa\x2d\xd6\x3e\xac\x08\x3b\x11\xfb\x22\xf2\xc9\x61\x39\x33\xd7\x82\xf0\xdf\xc2\x7b\x7a\x3d\xbe\x99\xa0\xc7\xd1\xd3\x96\xb4\x5c\xf0\x70\x83\x5e\xc3\x4b\x5a\xa9\xec\x5a\xec\x34\x91\x1d\xea\x33\x5d\x20\xb3\xdf\xa2\x12\xc4\x49\x0c\x7c\xa2\x8d\x47\xdb\xae\xbc\x58\x4a\x05\xf2\x63\x19\xed\x9e\x67\xad\xd6\x39\x66\xfc\x9b\x59\x29\x23\x35\x98\xf8\x44\xcb\xe5\xb4\xea\x73\x9e\x23\x74\x4b\x33\x64\x1a\x88\xb9\xa8\x92\xc1\x2d\xa7\xe8\x72\x8b\xac\x45\x17\xef\x20\x83\xdb\x9d\x54\xc9\x09\x27\x7f\x09\xdc\x43\x34\xbe\x99\x40\x84\x21\xda\x62\xc3\x09\x89\x3e\xc0\x83\x69\xf6\xa1\xb7\x18\xd0\xcb\x3c\xff\xc4\xf5\xf2\x2f\x48\xaf\x52\x0c\x5f\x90\x58\x6e\x18\xee\x6d\xfb\x8b\x3c\xb5\xc6\x18\xd0\xa7\x3c\x7f\x8f\x79\xc9\x0d\x86\x47\xdb\x7e\x70\x84\xaa\x50\xd0\x39\xf5\x5b\x1a\x23\x6f\xe9\xca\xa9\x12\x7d\x94\x01\x83\x7b\xb8\xc1\x10\x20\x73\x03\x25\x18\x52\xe7\xdd\xd5\xd5\xb7\xb4\x51\x80\x2e\xce\x10\xef\x2f\x5c\x8d\xd9\x84\xde\x42\x88\x42\xe7\xbb\x66\xe8\xfc\xd8\x0c\x9d\xd7\x2f\xd0\x6d\x83\xde\x61\xb8\xc2\xf0\x98\xe7\x2b\xa7\x90\xf0\xf8\x2b\x70\x8f\xe1\xb6\x42\xa9\xbc\x01\xf1\xbc\x01\x78\x7e\x87\x78\x7e\x47\x51\xac\x9e\x4f\x7a\x3e\xf4\x3a\xa4\xd7\xd1\x14\xcb\x25\x7d\x17\xfa\x5d\xd2\xef\x2a\xba\x35\xe8\x91\x41\xaf\xa4\x5e\x35\x86\xee\xea\xe1\xd5\xe0\xc8\xe1\xd5\x80\x78\x5c\xd5\xee\xd6\x58\x55\x0f\xe9\xc2\xd2\xaa\x71\xdc\x5d\x52\xd8\x7c\xd8\xa8\xf4\x2a\x71\x21\xc1\x98\x48\x87\x00\x39\x0a\x3d\xe2\x79\xbd\x52\x36\xab\xb1\x37\x56\x7b\x31\x3c\xd2\x0b\xe1\x9a\x24\x0c\x34\xbc\xaa\x1a\xcb\x5d\x6d\x5f\x7a\xe2\x18\x40\x60\x34\x14\x73\xce\x57\xc6\xa7\x70\xc5\x20\xde\xbd\x61\x00\x71\x40\x50\x2b\xc0\x5d\x0e\x47\x8c\x58\xae\xd5\x64\xa6\x72\x5d\x63\xdc\xb1\xdc\xf6\xa0\xdb\x72\xfb\x2d\xbf\xfb\xc9\xed\x13\xb7\x47\xda\x43\x67\x38\x1c\xfe\x93\xd5\xa0\xb1\xa4\x3d\x05\x20\x46\xab\xcb\xbc\x76\x8b\x0b\xcd\x38\xcf\x1b\x95\xca\x76\x1f\x7d\x17\xbc\xe3\x8f\x8d\x8c\x47\x38\x13\x0f\xd3\xd7\x61\x14\x66\x0c\x85\x06\xc2\xab\x3e\xb6\xfe\x18\x44\x77\xda\xf4\xfc\x46\x22\x44\x9c\x66\xe1\xaa\x38\xd1\x3f\x29\x15\x08\xc8\x28\x53\xc9\xd1\x5f\x6f\x96\xcb\xbf\xc8\x14\xed\x49\x51\x68\xc2\x5b\x21\xae\x08\x67\x0a\xcf\x2f\xbb\x1c\x0e\x87\xc3\x91\xd5\x34\x01\xf7\xa2\x26\xb2\x5c\xfe\x9f\xd5\x2c\xd2\x2e\x73\xf9\x41\xda\x69\xa2\x51\xab\x47\x5a\x1d\xdc\xb4\x5a\x56\x33\x40\xc5\x27\x8a\x34\xff\x3b\x37\x24\x58\x0f\x6e\x5a\x9f\xcc\x52\x81\x9d\x25\x8a\x49\xa5\x16\x09\x46\xb4\x7f\xa3\x80\x28\xc4\x4d\xcb\xb1\x9a\x28\xb9\x1c\x0e\x47\x89\x98\xd2\x00\x25\xbc\xf4\x9f\xac\x2d\x89\xb7\xf0\x24\x36\x28\x5f\x6b\xcf\x36\xe7\x6a\x6b\x60\xa7\x7d\xc4\x75\xba\xcc\x4f\x4a\x99\x6d\x97\xbe\x07\xe2\x97\x0a\x74\x15\x3f\xf7\xcf\x0d\xde\x14\x47\xdd\x8b\x30\xca\x8c\xcc\x92\x48\x9b\x7e\xcb\xea\x98\x3c\x94\xef\xb4\x89\xd7\x69\x4b\x21\x89\xf7\xe5\x99\x47\xf3\x46\x3e\xed\x9a\x76\x28\x5f\x91\x60\xb9\x3c\x5d\xb1\x6c\x11\xcf\x4e\xe3\xe8\x54\xc0\xa0\xed\x9e\xba\x77\xbf\x76\xea\xee\xbb\x87\xb7\xbc\xf4\x20\x2a\xa6\xa1\xc6\x94\x57\xad\xca\x3b\x52\x95\xf0\x10\x93\x64\x56\x1b\x76\x7b\x47\x9d\x91\x2c\x83\x53\x41\xd5\x91\x0f\xc2\xf4\x83\x26\x19\xef\xe7\xb0\x56\xc5\x6f\xd2\xab\xc2\x57\x09\x74\x6a\x08\x45\x4c\xb4\x25\x13\x34\x22\x8f\x50\x58\x32\x61\xda\x96\x23\xd5\x3b\x76\xc8\xeb\x2a\x5d\xd5\x73\x3b\x4a\x2a\x75\x0f\x7a\xe7\xeb\xb3\x00\xc6\xf7\x6d\xe8\xcc\xc5\xe9\x15\xd6\x12\x41\x00\x29\x4d\xf8\xbd\x0d\x8d\x9d\x39\x2c\xa9\x7b\x5e\x18\x85\x96\xe7\x78\xa3\x7d\x10\x03\x9a\x8e\x97\xcd\xe6\x44\xc8\x74\x42\x75\x0b\x70\xf5\xb8\xda\xed\x10\xcf\xed\x80\xe7\xf6\x89\xe7\xf6\xc1\x73\x07\xc4\x73\xf9\x1a\xeb\x1d\x39\x95\xd5\xd2\x75\x57\x1f\xde\xe9\x43\x59\x2e\x65\xa7\xca\xd8\x7a\xd4\x7d\x5a\x39\x4e\xbf\x56\x8e\xd3\xdf\x29\xc7\xe9\x6b\xe5\x38\xfd\x41\x39\x4e\x7f\x03\x77\x74\x3d\x8a\xc8\x6a\x24\xdd\xa1\x85\x57\x34\x7d\xda\xe2\x5a\xff\x68\xb8\xa5\xeb\x1a\x2f\xeb\x1b\x6a\x48\x0a\x79\x6e\xca\x0d\xfc\x7e\xe9\x55\xbd\x2e\xbd\xaa\xe7\x14\xa1\x29\x6d\xcc\x6c\xfb\xce\x70\xac\xbe\x1b\x2f\x27\x78\x74\x47\x12\x3c\x5e\x4e\x60\x41\x1f\x6d\x7b\x3a\x4a\xa5\x97\xf4\xfd\x01\x67\xe1\xb4\xce\x59\xf8\xce\xb6\x03\x74\x07\x4b\x90\x2e\xc1\x7f\xc6\x70\x3b\x5e\x4e\x1a\x74\x6e\xdb\xb1\xf0\x08\x5e\x08\xb1\xe9\x46\x17\x22\xe1\x80\x3d\xc7\xdb\x93\xc8\x99\xc6\x09\xa3\x21\xfc\x7b\x78\x0b\x2b\xb9\x46\x44\xd5\xe8\xc3\x5b\x29\xc3\x28\xcf\xa3\xde\x91\x23\x5c\x79\x5a\xb2\x0a\xb2\xe9\xe2\xf8\x49\x22\x3d\x73\xce\x4e\xb2\xe4\xf1\xc9\x3a\x73\xce\xac\x31\x9b\xa0\x0c\x97\xe7\x14\xc6\x01\x46\x36\x8e\x26\xb4\xe1\x41\x63\xff\xc1\x10\x3f\xe9\xe8\x88\x8a\x8f\x14\x6f\xe3\xd7\xe4\x11\xbf\x7d\x84\xa2\x28\x6f\xd3\xde\xd7\x24\x11\x19\x00\x6d\xd8\x9d\x14\x97\xe8\xab\x2d\xc0\x25\x14\x71\xcc\xa0\xd4\x4b\x3e\x3a\x42\xbf\xf4\x7c\x97\x2b\x98\xa9\x71\xec\x0a\x53\xda\x88\xd1\xce\x39\x1e\x13\xc3\x54\x58\x98\xd8\x17\x36\xdd\xc7\x8a\x1d\x4f\xca\x27\xee\x92\x78\xb3\x4e\xe9\x53\x40\xac\xbe\xb5\xe5\x6a\xb6\xd5\xe7\x1c\xc7\xb2\x0a\x84\x5f\x06\xd6\x1f\x2e\x82\x4b\x8b\xeb\x17\xf3\xfd\xda\xce\xd0\x88\xe0\x33\x21\x2c\xf0\xcf\x9d\xec\x7f\xb5\xd0\xb2\x0e\xb8\xd1\x4b\x3b\x83\x15\xdc\x6a\x4a\x58\xf2\x0e\x9f\x52\xaa\x3d\x9d\x6c\xdb\x0a\x2c\xfe\x7b\xec\x4e\x6c\xdb\xba\x95\xd7\xde\x64\x8b\x8e\x49\xa6\x12\x6a\x38\xe5\x64\x6e\x56\x33\x60\x19\x7d\x2a\xfd\xf8\xc7\x8b\x49\x4d\xbb\xfb\x5b\xe8\x37\xa8\xa5\x97\x12\xd7\xdf\x67\xa3\xba\x9a\x1a\x1e\x24\xf4\x2c\x28\xc6\x3f\x39\x38\x12\xe2\x68\x62\xb3\x5c\x6e\xc1\x12\x3d\xd6\xe8\x41\x49\x45\x27\x7a\x12\xe8\x41\x65\x81\xd8\xbd\x7b\x95\x25\x5b\x0c\xc9\x78\x31\x41\x96\x85\xa1\x91\x6d\xb5\x5b\x88\x70\x0c\x9d\xe5\x79\x63\x9d\xe7\x96\x9a\x4b\xf5\x9d\xc6\x34\xcf\x2b\x1f\x6e\xcc\x65\x1f\x56\x7c\xf9\x8c\x17\x13\xb8\xa7\x09\x0a\x60\x01\xa2\xd7\xc7\x60\xf9\x32\xd9\x47\x4a\x37\xa3\x99\x6d\x37\xc2\xd1\xd3\x2c\x8e\x18\x69\xb8\xca\xed\x76\x55\x09\x68\x22\x3b\x77\x55\xe8\x52\x02\x99\x79\xd7\xdb\x6e\x31\x3c\xd2\xfb\xb1\x3b\x81\x3b\x7a\x3f\xf6\x26\x27\x11\xd2\x91\x86\x05\x99\x66\xf0\x88\x21\x44\x32\xfd\x88\x51\xbe\x00\x9f\xd2\x6c\x54\x6b\x30\xbd\x2b\xdc\xea\xa5\xf9\x6a\x5b\x63\xda\xac\x3e\x84\xb7\xda\x36\xad\xb5\x37\x97\x78\xbe\x0b\xfa\xec\x52\x47\x33\x77\xfb\xa4\xdb\x57\x7a\x5c\x41\xf7\x7e\x83\xb0\x58\xb7\x82\xf5\x0e\xd3\x02\x5d\x46\x4b\x71\x9a\xa9\x00\x42\xdb\x46\x59\x93\x5a\x77\xc2\x26\x19\xde\x45\x71\xc2\x5e\x05\x29\x53\xc5\xd2\x54\xb9\xda\x2c\xb3\x70\x19\x46\xba\x74\x25\x4a\x37\x51\x38\x8d\x67\xba\x6c\x23\xca\xd2\x2c\x9c\x7e\x7e\x54\x45\x8f\x16\x06\xc1\xde\xb5\xc0\xd8\xab\x11\x18\xeb\xed\x66\xc3\xaa\x2f\x83\x70\xb3\x32\x8f\x4f\x25\xd5\x0f\xd3\x57\xc2\xe5\xe0\x7a\x9d\xb0\x60\xc6\x45\xa5\x5a\x16\xa0\xe2\x71\x14\x0c\x27\xe7\xfa\xa5\x51\x63\x0d\x2b\xb8\xa7\x53\x78\xa4\x2e\xdc\xd1\x46\x63\xc1\x59\xe2\x02\x66\xd0\xc6\xe7\x8f\x17\x4b\xe9\xa0\xf3\x28\xdd\xcc\xf8\xe5\x9a\xde\x8d\xee\xd0\x66\xfc\x38\x81\x47\x48\x30\x11\x57\x2b\xbe\x73\x43\xb4\xc6\xb6\x8d\x56\xb4\xe0\xd3\x68\x45\xd7\xe3\x74\x82\x47\x8d\xc6\x8a\x44\x68\x8d\x31\xac\x6c\x7b\x7e\xe9\xe2\x7b\x2a\x9b\xb4\x86\x18\xad\x0b\x67\xa1\x7b\x98\xb7\x3c\xdc\xf2\x84\x5f\x15\xff\xd8\xfd\x25\x1d\xba\x6e\xdf\x1b\x0e\xfd\x6e\xa7\xdf\x71\x87\x43\x6f\x4f\x7e\xc6\x27\xd9\xf8\x7e\x42\xd7\xdb\xfb\x66\x73\xfb\xd8\x6c\x6a\xb7\x86\xfb\x8a\xcb\x8e\x5a\x6c\x8a\xb9\x56\xfc\x56\x7a\x07\x0f\xcd\x4b\xbf\xb7\x41\x5b\x49\x58\xca\x7c\xd9\x56\x02\x96\x98\x17\xc1\x5e\xba\x6d\xce\x5e\x9e\xb6\x30\xa5\x4f\xdb\x73\x2e\xbf\x1c\xb2\x4d\xce\x61\x21\x3f\x30\x83\xb5\x34\x54\xd2\xc5\x68\x9f\x2a\xb1\x2d\xd9\x70\x9a\x7b\x47\x23\xc4\x5f\xca\x46\x3e\xf1\x30\xdc\x52\xf7\xa4\x3e\x70\xf5\xf1\x58\x04\x69\x98\x49\x51\xba\x61\x49\x54\x2c\xf4\xa8\xdc\x4b\x66\x9c\xb2\xeb\x19\x38\x9f\x5d\xde\x9e\xdf\x2a\x47\xb8\x7b\x9a\x8d\xee\x50\x80\xd6\x94\x8d\x6f\x27\x98\xd3\x92\xf5\xd8\x9b\x60\x72\x87\x44\x01\xa6\x94\x2e\xf3\xfc\x9e\x52\xaa\x5d\xd5\x4e\xef\x4b\x57\xc5\x15\x7d\xd4\xae\x04\xe7\x0d\xb4\xa6\x2b\x65\xbb\xc3\x0e\xa7\x51\xe7\xea\x13\x21\x5a\xc1\x1d\xac\xa5\x9b\x3e\x64\x07\x2a\xc5\xce\x37\x1f\xaf\x5e\xfe\x89\x2e\x21\x71\x3e\x5e\x7d\xfa\xf3\xc7\x77\x74\x5a\x99\xdd\x36\xf1\xba\x4a\x2f\xd3\x73\x3c\x20\xfd\x01\x0c\xda\x64\x20\xe4\x8a\x1a\x75\xa7\x12\x4f\xec\xf7\x30\xb2\x22\x01\x6c\xd7\xd2\x0f\xb6\xb2\xb8\xa5\xd4\x4b\x28\x84\xc7\x22\x1c\x40\x38\x69\xf7\x88\x27\x02\xba\xfa\x35\xda\x4f\x55\xf8\xe9\x1c\x11\x7e\x94\xe7\x7e\xbf\x46\x69\xa9\x56\xd2\x3d\x52\x49\x97\xf8\x5d\x5e\xc9\xd7\x8c\x5b\xfe\x31\xf7\x7f\x65\x63\x12\x71\x6a\xea\xa4\x50\xdb\x9b\xfa\x47\x64\xd0\xbe\x5b\x06\x94\x9a\x86\x1c\xdb\x8e\x8a\x72\x15\x25\xba\x85\x27\x21\xdb\xf2\x1a\xbf\x2a\x31\x1e\x71\x22\x97\xa1\x30\xb2\x89\xdd\x21\xe9\x0e\x0b\xd5\xb6\x7f\xc4\x0f\x4d\x3b\xe2\x79\xbe\x2f\x0e\x49\xbe\x22\xf6\xc4\x10\xd0\xcc\x14\x20\x34\xf3\x08\x1a\x94\x26\xb5\x9a\x46\x60\xdb\x28\xa6\x81\xe1\x0c\xc5\x1f\x2d\x7f\xda\x76\x84\x62\x6c\xdb\xa1\x6d\x87\x88\x41\xac\xa3\x7c\x7c\x9f\x78\xbe\x5f\x10\xa5\xfe\x33\xa3\xd8\xcd\xee\x15\xbe\x4c\x89\x0e\xb0\xce\x0e\x05\x78\x8e\x18\xc2\x85\xec\x80\x77\x43\x3d\x47\x0c\x65\x63\x77\x82\x0d\xe9\x82\xff\xdc\x0d\xfd\x54\x8f\x41\x26\xa8\x42\xe5\x59\x59\xb6\x13\x7d\x5d\x79\x01\xb2\xb1\x5f\xfb\x96\xbc\x21\x5f\xed\x1c\x7e\x15\xb2\x71\xfb\xf0\xfb\xf2\xee\x6e\xf8\x69\x52\x06\x03\xf6\x8f\xfb\xa1\x19\xeb\x42\xf9\x6e\x59\x3f\x5b\x42\xc5\xdd\x33\x4e\xa0\x22\xd6\xac\x46\x14\xb2\xae\xb5\xdf\x18\x2f\x1c\x31\x6d\xa8\xb0\x30\x29\x7c\xc2\xcc\x90\x97\xfe\x11\x5e\x34\xa8\xb8\xc7\x85\x05\x8c\x02\xc4\x7b\x71\x2f\x47\x3d\xbc\x0a\xf6\xcc\x84\x17\x86\x78\x57\xe6\x49\x88\xc7\xa1\x38\x12\xc6\xa6\x6f\xd9\x60\x40\x06\xa2\x69\x47\x22\xf4\xaa\x23\xa6\x30\x4c\x52\xf1\xb7\xea\x5a\xa9\x46\x45\xdc\x51\x83\x62\x76\x7f\x50\x43\x46\xab\x5b\xb7\xcc\x2c\x70\xb4\x93\x22\xce\xcc\xb6\x0b\x43\xae\xf8\x81\x18\x16\x07\xde\x5b\x78\xd2\xdb\x6c\xf0\x55\x92\x7b\xe4\x28\x40\xc7\x6d\x0d\x8e\x98\x68\x34\xc1\xe9\x0c\x4c\xcf\xdf\x67\x68\xeb\xe5\x59\xb7\xf0\xb4\x2c\x65\xaa\x8c\xb2\x71\x2c\x64\xaa\x8c\x58\x52\x76\xb7\xa8\x38\x63\xc6\x7b\x2e\x81\x05\x39\x19\x1c\xf3\x01\x3f\x18\xcf\x05\x09\xd7\x53\x0c\xcb\x40\x38\xca\x50\x84\x12\x21\x0b\x24\x62\xd7\x67\xa8\x88\x8b\x54\xb1\x0f\x31\x65\x8e\x7c\x5c\x85\xc5\x15\x4d\x8f\x05\xed\x2b\xc2\xe7\x20\xd8\x9a\xb2\xf1\xa0\x86\x1b\xd4\x1f\xa8\x0c\xca\x03\x15\x39\xa6\xbe\x50\xfa\x9f\xb6\x27\x32\xc6\x2b\x80\x9a\x4d\x52\xa3\x43\x8a\xa3\xc9\xda\x48\x30\x05\x3b\x62\x18\xa8\x22\x14\xc0\x13\x17\x60\x88\x8c\xf7\xdd\x62\x88\xf9\x73\x4d\xeb\xd4\x00\x34\x31\x58\xa8\x3e\xa4\xaa\x04\x91\x49\xf7\x1a\xde\xd9\xe7\x9e\xb8\x0c\x86\x07\x0e\xd0\xfb\xbe\x94\x40\x39\x55\xe0\x02\xe8\xa0\x23\xcf\xcf\xc5\x60\x4c\x85\x51\xb3\xab\x5c\x6a\x76\x87\x62\x41\x1b\x68\x3c\x71\x3e\xb3\xc7\xd4\xb6\x05\x9e\xad\x15\x46\xaa\x00\x61\xae\xe5\x1f\x18\xac\xc3\xcb\x64\xad\x4f\xdc\x37\x42\x15\x5d\xab\x94\x64\x70\x0b\x37\xf0\xb0\x07\x77\xb2\xb0\x6d\xc6\x35\x8a\xf7\x5a\xc2\x7b\x3f\x66\x93\x93\x6a\x08\x85\xf4\x97\x22\xe2\x52\xb9\x3b\xed\xa1\x78\x98\xbe\xe3\xa7\x49\xe1\x4e\x73\x18\xbe\x63\xe7\x39\xb8\xa2\x95\x09\x84\x2f\xb4\x74\xcc\x5a\xc1\x35\xd7\x6a\xde\x57\x00\x09\x5e\xd2\xf7\xe3\xf9\x24\xcf\xdf\x8f\xad\xff\xf8\x1f\x8b\x21\x9d\xe4\xf9\xca\xb6\xdf\x8f\x57\x13\xf8\x4c\x5f\xe6\xf9\x03\x5a\x61\xf8\x44\x57\xa3\x2f\xa3\x07\x54\xb8\x6d\x61\xf2\x59\x3b\xc5\xbd\xa2\x05\x09\xcc\x6c\xfb\xbd\x3e\xdf\xce\xf3\x97\x5c\x38\x7f\x65\xdb\xe8\x86\x4e\xd1\xab\xf2\xb4\x8a\x61\xcc\xe5\x08\x15\xd3\x6c\x08\x13\x37\x42\xaa\xb6\x6d\xb4\x44\x37\x70\x25\x03\x98\xf3\xbc\x46\x2e\xb9\x11\xed\x0e\xd0\x0d\xcc\x61\x86\x31\x7c\xb1\xed\x97\xb6\xad\xbb\xdb\xa0\xf4\xa5\x13\x05\x2b\xce\x12\xae\x69\xc3\x85\xba\xc4\xe9\x2f\x8d\xd3\xb0\xad\x70\xe2\x6b\x3c\xe6\x39\x9f\xcd\xc6\x35\xef\xbe\xfc\xc0\x7b\x98\xc3\x67\x0c\xc2\x23\xfd\x33\xa4\xe3\xab\x09\x9d\xc1\x8a\x8b\xfb\x77\xf4\x49\x7e\x8e\x7c\x19\x7d\x26\x0f\x48\x7f\x1c\x03\x9f\x6b\x72\x2f\x0b\xc5\xbc\x63\x50\x43\x42\x3e\x6d\xe1\x51\xd8\xdb\x6f\x65\x50\x8e\xf8\xf3\x3e\xcf\x63\xf4\x1e\x6e\xe1\x8e\x2b\x22\x2a\x0c\x07\x85\xce\x07\x79\xa8\xbc\xc8\xf3\x6b\x0c\x19\xdc\x15\x56\xb0\x3b\x69\x64\xef\x12\xcf\xed\xee\x9d\x23\xeb\x2d\x2a\x4f\x92\xe5\x46\x1d\x74\xc8\xa0\x23\x79\x1f\x0c\x86\x64\xc0\x25\xe0\xc1\x11\x00\x81\xbd\x4d\x16\xd2\x86\x27\xac\xad\x92\x26\x8e\xfb\x93\x71\x34\x41\xf8\x24\x56\xc4\xd1\x1c\xdf\x50\x60\xaf\x2a\x10\xb1\x24\x5e\xa1\x18\x2a\x5e\x6c\x9c\x8a\xfa\x5b\x83\xce\x6e\x8f\x85\x58\x67\xb6\xdd\x08\x77\x7d\x90\x76\x1b\x03\x29\x8d\x65\x83\x52\xb1\x82\xf6\xa7\x5b\x9a\x92\x12\x19\x0b\xcb\x9f\xad\x59\x11\xe9\x16\x18\x8a\xcd\x86\x55\xe2\x11\x0b\xdb\xf0\xe0\xd9\x31\xac\xc5\xd7\x55\xcc\x39\x48\x83\x56\x83\xe9\xe0\xf3\xc1\x51\x3c\x82\x27\xfd\xd4\x51\x7d\xaf\xe1\xc9\xa7\x86\x07\xc5\x0d\x21\x66\xb0\x2f\xeb\x95\x67\xd0\xbc\x46\x94\xe7\x11\xf2\x5c\x7c\xe9\xfb\xae\xdf\x75\x3a\xbd\x6e\x7f\xd8\x19\xb8\xbd\xbe\x37\x50\x77\x2e\xea\xee\xb4\x7c\xd6\xf2\xfa\x0d\x1a\x21\x79\x85\xeb\x7c\x6e\x5c\x91\xbf\xaa\xc9\x85\x44\xc2\x2e\x5b\x1e\x6b\xf5\x6c\x9b\x5d\xf0\xbf\x23\xd6\x64\x2f\xd8\x99\x4f\x74\xab\x10\xc3\x2d\x6f\x4b\x22\xd5\x8b\x23\x67\x5d\xc3\x76\x21\x34\xad\xe3\x07\x88\x69\x88\x7c\x68\x75\x65\x8a\x3a\x7e\xe9\xb7\x65\xf8\xab\x0f\x9e\xdf\xc7\x2f\x90\xdf\x52\x61\xb0\x3e\xb4\xb8\x52\x6c\x74\x5f\x8a\x5e\x22\x53\x55\x4d\xbc\x0c\x97\x15\x8a\x24\x7f\x88\x71\x66\x14\x19\x66\xe8\xf0\x62\x33\x5a\xbe\x40\xe1\xd9\xe6\x2c\x68\x7a\x67\x71\xcb\x3b\x8b\xf1\x8b\xcd\x8b\x80\xa0\x84\xcb\x34\xc8\x6b\x06\xbc\x24\xc4\x2d\x94\xb5\x42\x8c\x2f\xd3\x3c\x4f\x1a\x34\xe1\x6f\x79\x67\x2e\x26\xcb\x17\x62\x51\x0d\xdb\x64\xc8\x35\xfa\x61\x8d\xd0\xb5\xd3\xd6\x65\x7c\xe7\xad\xeb\xe4\x4f\x39\xd0\x62\x90\x07\x6a\x90\x07\x23\xd6\x32\x06\x79\x19\xdf\x21\x4f\x26\xa2\x12\x43\x7c\x14\xaf\x45\xbc\x91\x86\x77\x51\xdd\xb7\xca\x89\xcd\x73\xd6\xa0\x8c\x4f\xef\x85\x2b\x22\xe1\x74\xe5\x47\x02\xc7\xbc\x4e\x9f\x8b\x8b\x2c\x0b\xac\x9d\xe0\x26\x65\x0f\x94\x91\x16\x29\x75\x61\xa3\xb9\x43\x98\x5e\x7d\xc9\x58\x94\x86\xb7\x4b\x66\xb4\xc8\x80\x8c\x81\x25\x6d\x88\xa3\x92\x9a\x28\x9a\x0d\x2a\x98\x0c\xbb\xe7\x6a\xbb\xac\x2b\x8e\x52\xf4\xb4\x15\x89\x46\xa6\x15\x7e\x1e\x20\x06\x11\xa8\xed\xfa\x14\x12\xeb\xbd\xd5\x3c\x6d\x36\x53\x78\x10\x60\x50\x78\x0b\x73\x13\x83\xec\x4f\x57\x7f\x21\x11\xbc\xbb\xba\xfa\x96\x34\x3c\x50\xf1\x1c\x64\x9f\x88\x85\xa5\x1f\xa5\x95\x3e\xae\x6e\xe3\xa5\x89\x28\xc2\x08\xda\x8d\xc8\x39\x65\x23\x91\x28\xf0\x83\x85\x9b\x12\x10\x3e\x16\x6e\xa7\xb2\xba\x8d\x51\xdd\x6b\x4b\x22\x3e\xe8\xdf\x57\xd6\xc9\x94\xeb\x21\x85\xe7\x6f\x34\x71\x42\xe1\x78\xfe\x23\x0b\x3e\xd7\xb4\xed\x40\xc5\x0d\xb7\x52\x6f\xc3\xdb\xaf\xf6\x61\x0b\x71\xf4\x3a\x61\xec\x67\x56\x67\x37\x5f\xda\xf6\x5c\x78\x4f\xd9\xf6\x46\x88\xfd\xea\x53\xb6\xcd\x6b\x02\xa6\x42\x3e\xfb\xc4\xeb\x14\x96\x72\xd3\x3b\x53\x59\x6a\x86\x47\x0c\x20\xfa\xc8\xd8\x6b\xf7\x84\x01\x44\x04\x59\xbc\xdd\x64\x22\xd0\xff\xfd\x6d\xca\x92\x7b\x96\xe4\x79\xe4\xfc\xc8\x6e\xff\x14\x66\xbb\x77\x20\xa0\x11\x17\x3f\xa6\x2c\x4d\x21\xa5\x91\x86\x57\x84\x0d\xb5\x54\xb1\x45\xa5\xba\x83\x82\x63\x26\x79\x19\x26\xb3\x17\x44\x07\xa1\x8c\x92\xe7\x9a\x29\x0d\x9c\x59\xbc\x0a\xc2\x48\x00\xca\xb3\x2f\x61\x86\xf0\x39\x3b\xe7\xec\x92\x39\xf3\x08\x18\x65\x82\x75\x09\xc6\x16\x16\xd8\x48\xb1\xe6\x98\x6c\x94\x20\x4c\x0a\x3f\xfa\x78\xbb\x2d\xae\x85\x61\x8a\x45\x19\x4b\x90\xf4\x4d\xdc\xe0\xc4\x6c\x4b\x20\x2a\xfe\x14\x4e\x3f\xa3\x25\xde\x16\x61\xbe\x8d\x98\x8f\x4c\x14\xdc\x87\x77\x9c\xcb\xf3\x4a\x8a\x1f\x4e\x9a\x05\xd1\x2c\x58\xc6\x11\xe3\xb2\x4e\x6a\xdb\xa9\x93\xb0\x34\x5e\xde\x33\x1d\x0c\x54\x14\x28\x6d\x0e\x9f\x54\x3e\x3a\x75\xb2\x05\x8b\xf8\x07\xa5\x11\xb5\x72\x53\x79\x22\x45\xa0\xdb\x23\xea\x9c\x73\x51\x6d\x41\xb5\x89\x4d\xe1\xb1\x7d\x62\x5f\xb2\x77\xf1\x8c\x21\xcb\xc2\x27\x5c\x7a\x8c\xd1\x12\x3b\xb1\x9c\x42\xb4\x80\xa7\xe9\x22\x48\x82\x69\xc6\x92\x6f\x83\x2c\x20\x0d\x77\x8b\xa1\xf2\xb1\x85\x33\x0b\xb2\x80\xce\x69\x63\xbe\x2f\x4c\x17\x21\x3a\x4f\xf3\x88\x44\x20\x74\x22\x15\x4a\x71\x22\x02\x21\xa4\x3c\x11\x62\x60\x79\x8e\x18\x0d\x21\xe1\x4a\x45\x46\x43\x15\x7f\xde\x23\x5e\xbb\xa7\xf4\x53\x6d\x0a\x1c\xfe\x86\x20\xcf\x32\x83\x6c\x68\x70\x9f\x13\xe1\x38\xbd\x96\xcb\x91\x4a\x10\x32\xa3\x46\x09\x8c\x51\xa8\xa2\x99\x81\x88\x51\x83\xda\xf3\x4d\x30\x3b\x55\x2b\xfb\xd4\xb0\xfe\x71\x8d\x9d\x32\x48\x68\xb4\x55\x01\x25\x6a\x42\x65\xb0\xbf\x2a\xe1\xd4\x93\x72\x2d\xb9\x94\xd2\x9c\x79\x6d\xa8\x1d\x7b\x10\x5d\x28\x62\x25\xf9\x40\x3c\xf7\x84\xa8\xde\x8b\x45\xc5\x6e\x2b\xdd\xb0\x2f\x82\x2d\x14\x3d\x0f\x52\xce\xa2\x4c\x71\x66\x93\xe7\x7b\x5c\x40\x9e\x97\x3d\x6d\x21\x13\x87\xa7\xf4\x5a\xd0\x5e\xe1\x9c\x66\x05\xb7\xd3\x19\x9b\xdf\x2d\xc2\x9f\x3e\x2f\x57\x51\xbc\xfe\x5b\x92\x66\xe5\x71\xda\x38\x99\xd0\x3e\x44\xa5\x85\x4b\x3b\xf5\x56\x3c\x6d\x45\x46\x1d\xb6\xc5\xd0\x6f\xd0\x0d\x7a\xda\x02\xc3\xe3\x84\x2b\x54\xb2\x91\x42\x05\x15\xe5\x19\xc6\x2a\x5e\xd5\xc2\x0d\x3e\xe0\x3b\xe7\x91\x45\x50\x16\x0d\xa4\x03\xce\x1e\xd6\xc4\x92\x7a\x30\xa5\xa1\x33\x87\x39\x8d\x9d\xf9\xf9\xe6\x72\x79\x5e\x78\xee\x2c\x60\x46\xd3\x32\x44\x57\x7a\xe7\xc0\x9a\x4e\x47\x11\x9a\x61\x1d\xc9\x3b\x45\x33\x8c\x09\x2f\x81\x15\xd5\xe7\x54\x70\x4f\xdd\xf3\xd5\xe5\xfd\x39\x9e\xcb\x4d\x39\x83\x05\x5d\x8f\xef\xa5\x7f\x0f\x4a\xc6\x8b\x09\x9d\x8d\x17\x65\x32\x8d\x64\x4b\x36\x87\x7d\x7c\x8a\x70\x72\x45\xd0\x55\x38\xf9\xf0\x88\x25\xb0\x70\x8d\x73\x5d\xe5\xf5\xe0\xaa\x99\xf7\xbb\x18\x59\x6f\xae\x6e\x3e\x7c\x7c\xff\xe9\xbd\xc5\x57\x81\x31\xb7\xdb\xfd\xa8\xe5\x0c\x12\xca\x50\x77\xc8\x75\x97\x79\x12\xac\x98\xc5\x67\x3a\x56\x3d\x95\x71\x91\x4e\x9a\x3d\x2e\x99\x33\x0b\xd3\xf5\x32\x78\xa4\x56\x14\x47\xcc\x02\x86\xfa\x6d\xec\x04\xeb\x35\x8b\x66\xaf\x16\xe1\x72\x86\x12\x0c\x89\x93\x26\x53\x6a\xfd\x14\xdc\x07\x12\x1b\x98\x58\x80\x32\x19\x19\x9d\xb1\x28\xfb\x51\x82\xcc\x69\x7a\x85\x9d\x78\xcd\x22\x84\x21\x73\x1e\x92\x30\x63\xc8\xba\x90\xaf\x5d\x16\x14\xed\xb5\x5a\xbe\x17\x7f\x3d\x53\xb7\x2c\xfe\xf8\x74\x19\xa7\x0c\xf1\x69\xcf\x9c\xd7\xe7\x51\xab\x75\x8e\x95\xe3\xb2\x11\x92\x3c\xe6\x5a\x4b\xe1\xa9\xb1\xe1\xa4\x7e\xd7\xac\xab\x28\x66\x2d\x58\x4c\xd5\x1d\x9b\xb2\x11\x4a\x2b\x06\x21\xe1\x12\xc6\xf7\x70\x0a\x95\x1b\x9b\xe5\x12\x44\x3a\x18\x86\x49\x42\x37\xa8\x12\x45\x9f\x90\xb0\x30\x43\x7b\xae\x4b\x3c\xd7\x05\xcf\xef\x12\xcf\xef\xea\xe3\x2b\x79\x98\xe1\x92\x9e\x0b\xfd\x36\xe9\x0b\xaa\xf0\x55\x6f\xbd\x63\xbe\xbe\xca\x6b\x51\xc1\xce\xc9\x8f\x88\x73\x93\x7e\x87\xf4\x3b\x02\xf9\xf8\x88\xdd\x55\xfb\x2f\xb7\xb5\x05\xd3\xed\x57\x31\xf2\xba\x83\x7a\xb0\x35\xae\xbd\xef\x08\x4f\x5c\x21\x28\xa3\x29\x03\x89\xdd\x91\xd2\x40\xef\xac\x0d\x75\xcf\xd3\xcb\xcd\x39\x96\x6e\xd0\x09\x0d\xc6\x9b\x66\x73\x02\xd9\x38\x99\x54\xbd\x21\xf5\x26\x32\xbb\xa3\xe5\x1f\xcf\x3d\xea\xfd\xb7\x67\x3e\xec\xe8\xdd\xd3\x69\x2b\xba\xa9\x0e\x75\xfb\xc2\xa6\xf6\x15\xf0\x6b\x05\x39\xc7\x47\x61\xb9\x2f\x2c\x32\x1a\x4b\x78\xb9\x40\x45\x4a\x6e\x4c\x64\x39\x85\x4f\x58\x06\x8b\x73\xc9\x41\x94\x15\xd8\x62\xa8\x11\x39\xf3\x12\xcb\x10\xd8\x38\x9b\xa8\xd5\xa3\xc8\x87\x36\x38\x16\x80\x2e\x72\xba\xd5\x14\x0b\xf9\xb0\x9c\xe8\x23\xa6\xea\x12\xfc\xc6\x6d\x73\xa5\x22\x36\x83\xc6\x21\xa0\x7b\xc8\x7e\x55\xe8\x48\xdb\xae\x1d\xa8\x77\xc1\x8a\xa5\xa3\xc3\xb7\x90\x7c\x1b\x93\xf1\xe4\xe4\x2b\xfc\x32\xb0\x6d\x6b\xac\xb0\xd4\x24\x25\x99\x58\x94\x16\x06\xe5\x8a\x56\x6d\x1a\xad\x39\x8b\xdd\xc1\xcd\x3c\x0d\x94\xdb\x34\xde\x6e\x11\xc3\x24\x94\xd0\x13\x72\x5c\xdb\xc4\x73\xdb\x7a\x3c\xc5\xa8\x1d\x73\xbf\x73\x7b\xca\x42\xeb\x16\x6c\xc3\x92\xcb\xd9\x02\xab\x20\x0b\x16\x16\xeb\xe4\xf0\x38\xd4\xea\x8e\xfc\x6b\xa1\x6a\x55\x8f\x78\x6e\x4f\xd2\x05\xd1\xa6\x1a\xad\xf1\xe0\x17\x24\x17\x4f\x15\xa4\xb3\x7b\x4c\x3f\xf0\x76\x00\x61\xf6\x58\x4a\xb0\x67\x85\xdc\xa7\xaa\x77\x2c\x33\x7c\x7a\x6b\xbb\xc6\x24\x68\x4c\x24\xce\x40\x47\x6c\x1c\x4f\x6a\xe1\x21\xcd\xc3\x57\x69\x35\x2e\xf1\x6c\xcd\x7b\xa3\xca\xaf\xb2\x6d\xa4\xf2\x8a\x6c\xde\x28\x10\xf8\x0e\xf2\xd8\x55\x92\x5e\xcd\x83\xc5\x76\x11\x63\x74\xc4\xd6\x57\x8e\x91\x62\xbf\x1d\x0f\xa3\x86\x57\xcf\x82\x8f\x83\x22\x49\xe8\x31\x4e\x6d\x5c\x58\xd2\xb1\x42\x22\x90\xf0\x1f\x49\x83\x06\xb6\x1d\xa1\x14\x12\x6c\xdb\x4b\xe9\x37\x9c\x48\x02\x7a\xae\x4f\x76\x05\xb1\xe4\x8f\xd0\x4c\x90\x4a\x2e\x81\xfc\x4b\x8c\x96\x90\xe0\x3c\x2f\xde\x29\x68\xe7\x4e\xa7\x25\xc5\xe8\x78\xa4\xe3\x19\x5d\x3f\x72\x34\x6a\xae\xf6\xfd\x69\xe7\xd2\xdb\x6f\x5e\xc7\x35\x72\x0e\x5f\xc7\x4f\xdb\xda\xd3\x56\xbd\x84\x8f\x1c\x46\xf6\xfc\xaa\x57\x74\xef\x08\xf6\x8c\x94\x20\x51\xa8\x92\x10\x08\x47\xe6\x31\x2b\xe4\xd1\x31\x9b\xc8\x83\xa5\x40\x64\x29\xe4\x22\x4e\x84\x22\xe7\xba\x19\x39\xaf\x5f\x54\xfc\x17\x13\x19\x58\xa6\x11\x3d\x20\x10\xbd\x95\x1e\xbd\x46\x84\x92\xc8\x0d\x70\x84\xd9\x96\x52\xbd\x5e\x5b\x9c\x5f\x39\xf3\xe7\x42\x90\x19\x72\xb1\xb0\xf0\x09\xf6\x1a\x21\x61\xd3\x33\x04\x63\x17\xa6\x74\x3c\x91\x12\xb1\xa2\x9f\x01\x24\xa5\x93\xfa\x54\x2e\x1c\x36\x1a\x27\x10\x8c\x93\xc9\x84\x04\x26\x07\x9e\x6e\x4d\x16\x5c\xca\xb1\x05\xc1\xac\xcb\x7f\x50\x76\xb1\xbd\xa3\xb8\xe8\x18\xf1\xbe\x8b\x9d\x8f\x6c\xbe\x64\x53\xd3\x2f\x23\xb0\xed\xc0\x89\x1f\xa2\x3f\xed\x2d\x2e\xe5\x9b\xef\xcc\x51\x2c\xce\x13\xa5\x83\xbe\x16\xba\x47\x99\x26\xc7\x09\xbf\xab\x90\x8b\x34\x71\x57\xb2\xb8\x14\x1f\xb4\x16\xea\xd5\xa5\x5a\x30\x7d\x5c\xca\x24\xbd\xca\x88\xd2\xc1\x22\x3d\x82\xd1\x5c\xef\x2c\x42\xfc\x4e\x17\x37\xad\x96\xcb\x75\x97\x96\x77\xe6\xd6\x20\x76\x87\xca\x21\x93\x6f\xff\xb6\x10\x25\x4b\x1c\x4c\xe9\xc5\x61\xdb\x56\x8b\x93\x42\x87\xeb\xeb\x2f\x33\xe4\xe2\x51\xcb\x25\x89\x34\xfc\x7a\xed\x0e\xf1\xda\x1d\xf0\xda\x5d\xe2\xb5\xbb\x46\x1f\xbe\xe2\xa7\x23\xfa\xf0\x26\xda\xe9\x81\x02\xbb\xeb\xf2\x99\x38\xfb\xe7\x71\xab\x39\x19\xb9\xe3\x2f\xff\x38\x39\x33\xba\x36\x68\x50\x1a\xa1\xb8\x69\xb9\x03\x0b\xe7\xb9\xef\x17\xbf\xbf\x78\x3d\x6b\x57\x41\xd3\xb1\xcf\x66\x2f\xcb\x43\xed\x04\xb2\xcb\xcb\x4b\x37\xcf\x51\xe0\x64\x2c\xe5\x5b\x6b\xc4\x05\x19\x17\xe3\xaf\xf5\xaf\x86\xf1\x7d\x0d\x3b\xfb\x89\x91\x86\x07\xf7\x44\xf0\xfb\x1d\x51\xe0\x49\x7a\xd3\x0a\x78\x5b\x45\x5d\xea\x72\x50\xec\xea\x5e\xda\x10\x3b\x3c\x18\xd5\x57\x82\x0b\x87\x02\x68\xab\xe2\x48\x24\xdc\x2c\xf4\xd9\xaa\x3a\xa3\x89\xb9\xd0\xab\xc7\x08\xb9\x22\xd7\xaa\x34\x20\xf1\x7d\x9c\x68\xe3\x46\x71\x68\xae\xcd\x7e\x3d\x32\xec\x89\x66\xd7\xf0\xac\x8a\x96\xd0\x3e\x12\x1e\xa4\xe1\xa8\xbd\x63\x59\x2c\x3c\xef\x88\xaf\x40\x49\x7b\x42\xce\xc0\x32\x2c\xa8\x3e\x64\xe3\x70\x02\xc9\x8e\xf4\x2e\x4f\xe0\xc4\xe7\x8e\xe8\xb9\xda\x58\xa9\x9d\xfb\xb5\xd1\x5b\x5a\xc5\xd3\x64\x6a\x49\x79\xbd\x37\xe4\xf4\x0d\x59\x56\x33\xc5\xda\xfe\xa0\x05\x57\x0b\x9f\xc8\x6c\x26\x61\x94\xae\xd9\x34\xbb\x8e\x37\xc9\x94\xd5\x51\xd1\x54\x0b\x92\x5b\x40\x87\x91\xef\x34\xba\x41\x5d\x9e\xcd\x93\xa5\x6d\xa3\x18\x25\x60\x45\x42\x95\xce\xf3\xb0\xf8\xc1\x65\x7a\x21\xbc\x4b\xcf\x31\xa4\x1f\x0d\xd4\x53\x81\xb8\x39\xb2\xac\x26\xff\x4b\x36\xd2\xf8\xa1\x36\x4f\x86\x31\x7f\x5b\xc4\xf7\xcb\x88\x50\x92\x8a\x0b\xfd\x2b\x54\x43\x47\x90\x52\x83\x79\x39\xe8\x52\x8c\xb7\xb8\x0c\x7f\x31\xf0\x62\x8a\x41\xda\x77\x8f\xa8\xc3\xa1\x5a\x84\xa9\x84\x88\x18\x8b\xc4\xf6\x95\xe3\x60\xc3\x32\xad\xb8\xde\x90\xf4\x86\x3a\x8e\x45\x6a\x21\xca\xab\xdb\xab\x4b\x2a\x52\x6b\xe4\xea\x08\x6e\xb8\xeb\xa0\x2e\xa3\x24\x8e\xb3\x74\xf5\x50\x7d\xd8\xb9\xf6\xee\x2b\xb0\x9c\x41\xa1\x43\x29\x0d\xa7\x70\xa9\x8d\x95\x69\x90\x6b\xf9\x15\xc4\x41\xde\xa0\x53\xfe\x05\x1d\xb2\x27\x07\x8d\xcd\x4e\xd3\x98\x97\x84\xd1\xdd\x69\x9c\x2d\x58\x22\x33\x77\x06\x91\x12\x3d\x4f\xe3\x44\xd8\x13\xca\x68\xc3\x58\x60\x89\x2b\x3f\x9e\x06\x35\x01\x92\x6b\xbf\xfa\x1f\xc4\x57\x05\x20\x98\x08\x14\x0c\xa3\x69\xbc\x5a\x07\x59\x78\xbb\x64\xa7\x09\x9b\xb2\xf0\x9e\x25\x46\x30\x63\x15\x06\xbf\xd3\x27\x9d\xbe\xc8\x29\xf4\x2c\x64\x17\x01\x03\xc4\x50\x4f\x20\xe9\xd5\x4e\x03\xa4\x74\x37\xae\x40\x87\xbd\xc0\x86\x06\xb0\xa4\x28\xa2\x67\xc1\x19\x84\xf4\xec\xf6\xc5\xd9\x1d\x04\xda\x90\x6d\x05\x5c\x99\x90\xbf\x42\xf9\x4b\xe0\x13\x3b\xcb\x20\xcd\xde\x44\x33\xf6\x25\xcf\x79\x41\x58\x16\x60\x98\x96\xce\xe5\x67\x08\x8f\x46\x67\xa2\x11\xc8\xb2\xf0\xd8\x9b\x9c\xa3\x65\x9e\x4f\x05\x2e\x5d\x2d\xe8\x1b\xef\xce\x46\x04\xe6\x16\x82\x8c\x88\x34\xe3\xe3\x2c\x3b\x87\xac\x7f\xb6\x9a\x1b\x27\x15\x34\xa2\x69\xfd\x01\x8d\x1a\x7f\xfd\x6b\x8a\x2d\x50\x42\xd2\x86\x6f\x43\x11\x31\x40\x37\x66\xb3\x22\x8d\x11\xb8\x01\x26\x1e\x88\x04\x38\x5e\xf1\x04\xdd\xa8\x60\x83\x51\xe4\x84\xbc\xa0\x19\x71\x42\xac\x10\x9f\x33\x0c\x53\xf1\x4a\x54\x00\x4a\xd9\xb6\xda\x5d\x91\x70\xb5\xda\xc5\x28\x0a\xa9\x77\x1e\x5e\xec\x5a\x3c\x5b\xbe\xc0\x06\x2c\xac\x4d\x25\xed\x0f\x45\x9a\xf3\x71\x38\xd1\xf0\x5d\x5b\x01\x27\xb0\x13\x87\xd6\xeb\x91\x9e\x60\x24\x75\x39\x64\xf6\x84\xfd\x30\xdd\xb5\x9a\x15\x9a\x1d\xa5\xd9\x48\x38\x18\xe6\xb9\x77\xc6\x28\xf5\xce\x32\xc2\x1a\x94\xd9\x76\xd6\xa0\x99\xe6\xb2\xc7\xf2\xc2\x68\xb7\x39\x69\x74\xda\xe3\xaa\x42\x67\x6a\x94\xf8\x95\x0d\x4a\xb3\x7d\x54\xf1\xa6\x45\x4e\xa7\x22\xb8\x36\x65\xd9\x69\x20\x32\xfd\xca\x25\xda\xb0\x2a\xb6\xc0\xa7\x94\x65\xca\x1f\xd3\x49\x77\x54\x57\x64\xdd\xdc\x88\xf7\x6e\x6e\xac\x30\x7a\xda\x96\x52\x8e\xc2\xdb\xe6\x52\x06\x52\xb1\x02\x3b\x31\x86\x5c\xc6\x15\x99\xaf\x76\x35\x66\x30\x2a\x95\xc7\x70\x3e\xc6\x28\x83\xf1\x84\x0b\x82\x12\x00\xb2\x50\x5a\x85\x5f\x88\x11\x80\x27\x5c\x32\x76\x25\x7f\x73\x02\x62\x69\x29\xe2\x3a\x71\xf1\x19\x9a\x91\x48\x19\x90\xb6\x5b\xf4\xb4\x85\x86\xa7\xc3\x9c\x30\x4c\x17\x6c\xfa\x99\xc4\x52\x40\xf6\x88\xe7\x7a\x15\x57\x7a\xed\x44\xe8\xd5\xa5\x2d\x39\x0a\xfb\x32\x54\x78\xa7\x5d\x7d\x32\xf1\x7c\xdc\x53\x81\xda\x72\x12\xdb\x76\x66\xdb\x22\x1f\xb8\x6d\x87\xce\x1c\x65\x10\xc0\x53\x35\x67\x81\x0b\xf5\x78\x67\xc2\x65\x6d\x5b\x71\x8a\x54\x36\x31\xc1\x93\x0a\x6b\xe1\xe1\xcc\x29\x26\x90\x61\xdf\x33\x1d\x38\x2b\xe0\x94\x47\x24\x22\x26\x10\x58\x19\x4d\x46\x8c\x98\x7e\x64\xb1\x48\xb8\xc4\x20\xde\xef\x8c\x4e\xb6\x50\x69\xb8\x64\xa0\x65\x93\x8f\x21\xe3\x8b\x50\x06\xe5\x45\x15\x2a\x69\xe9\x2b\x98\x8f\x42\xe5\x45\xfc\x8f\xe1\x48\x2a\x83\x1b\x40\x71\x75\xf1\xd9\x23\x46\x91\xae\xd2\xba\xfb\x42\x6f\x0d\xc7\xd6\xcd\xcd\x34\x4e\x58\xeb\xa7\xf4\x26\x5d\x04\x09\x9b\xdd\xdc\x58\x32\x1c\xb8\xf6\x0e\x7d\xda\xe2\xf3\x03\x62\x57\xb9\xb0\x65\x3b\xf9\x9f\x92\x0f\x64\xa3\x8c\x3c\x6d\xb9\x84\x63\xe9\x14\xdc\x16\xdf\x48\x52\x85\x2d\x92\x9e\x45\x8e\xba\x82\x55\x3c\x63\x44\x78\x56\x8e\xac\xf5\x26\x61\x16\xb1\x24\x71\xb6\x60\x1a\xaf\x1f\x93\xf0\x6e\x91\x11\xeb\x5f\xff\x9f\x53\xdf\xf5\x86\xa7\xdf\xb2\x28\x4c\x4f\x3f\x6c\xd2\xc5\xe7\x20\x61\xf7\xa7\xe8\xe7\x65\x1c\x26\xf1\xf4\xb3\x93\x6c\xb0\x25\xe4\x1e\x29\xef\xa8\x70\x78\xe5\x2b\xe6\xd5\xa5\x75\xd9\xd5\x21\xda\xed\xe7\xc3\x01\x97\x26\xa3\x40\xc8\x08\x75\x51\x09\x25\xe5\xcf\x73\x09\x37\xc0\xb9\x1b\x0a\xb0\x70\x18\xce\x48\x88\x92\xca\xaa\x92\x00\xad\xda\x01\xd7\xab\x4b\xf5\x72\x08\x06\xe4\x2b\x68\xbe\x8d\x86\x08\x74\x30\xbd\xd8\x46\xca\x55\x5f\x9c\x8f\x54\x4e\xa5\xbc\xc2\x8d\x5f\x40\x60\xca\x95\x5f\x98\x4b\x8e\x66\x86\x69\xab\xc3\x89\xee\x6f\x41\x69\x2f\x62\x3b\x0a\xe1\x05\x71\x0d\x0d\x0b\xd0\xf6\x44\x44\x09\xeb\x03\x30\x7d\x76\x74\xe1\xe6\xf9\xe6\x92\x2e\x47\x6c\x64\x59\x8a\x6e\x12\x14\xd3\x54\xe8\xe6\xaf\xe2\x19\x7b\x99\x71\xe9\xe0\xa2\xdb\xf5\x87\xbd\x3c\x8f\x2f\xbb\xbd\xb6\x37\xcc\xf3\x4d\xd3\x93\x11\x4d\x28\xd8\x79\xb8\xe9\xf1\xc7\x7b\x6d\xdf\xcd\xf3\xe0\xb2\xdb\x6f\x77\xda\x23\x36\x4a\xb5\xb2\xbf\xc1\x24\x26\xfc\xb7\xb4\x53\x6f\x60\xd3\xf4\x31\x09\x5a\xe2\x8d\x26\x8a\x5b\xe2\x4b\x17\x17\x9e\x8b\x9b\xbd\x6e\xb7\xdd\x53\xa7\xeb\x43\xe2\xb5\x87\x32\x98\x52\x64\x7b\x3c\xe6\x51\xef\x1f\x1f\x3c\x28\x33\xe4\x64\xfb\x49\x3b\x54\x68\xc3\x7f\xb0\x9a\x49\xd3\x3a\x9d\xc5\x2c\xe5\x9c\x36\x98\x4e\xd9\x3a\x3b\x4d\xd8\x1d\xfb\x62\xe4\x8d\x28\x86\x59\x11\x17\x19\xec\x39\xf0\xc9\x40\xe6\xa4\x3c\x62\x2f\xd2\xe6\xbc\x9e\xb2\x16\x75\x05\x90\xec\x99\x75\x76\x07\x75\xe9\x2f\xa4\x6f\x82\xfa\x9e\xb4\x0b\xa5\xd4\xba\xb0\x9a\xda\xa3\xde\xb2\x94\x06\x96\x36\xa9\x75\xca\x5b\xff\xf7\xd4\xfa\xfb\xa6\x7a\x23\xc2\x45\xd4\x76\x00\x96\xfd\xb7\x4d\x9c\x9d\x5b\xb8\xf9\xf7\xd6\xdf\x63\x48\x9b\xd6\xa5\x00\x5c\xbe\x38\xb3\x9a\x19\xff\x71\xc8\x23\x5a\x6b\x21\x4f\xdb\x93\x44\x5a\x0e\x53\x69\x39\xfc\x20\x2c\x87\xe1\x7e\xe4\xb3\x0c\x8e\xe6\x9f\x29\x62\xa9\x39\x6d\x73\xb2\xf8\xfb\xf8\x81\x25\xaf\x82\x94\x21\x9c\xe7\x99\x52\x6f\xf9\x83\x5a\x58\x6c\x6f\x31\xe8\x38\x13\x48\x8c\xe1\xdd\xb1\x3b\x1e\x4b\x2f\x23\xe2\x18\xa5\x41\xa8\x5d\x0c\xf3\x61\x77\x6f\x9d\xe6\xa0\x3a\xce\x15\x13\x63\x19\x8c\x34\xb2\x4e\x2d\xa2\x1e\x4c\xb8\x08\x1f\x29\x30\xde\xe9\x05\xdd\xe4\xb9\x65\x51\xba\xd4\xa6\x90\xf4\x44\xba\xb5\x4c\x5b\x1b\x58\x50\xa5\xbc\x2c\x41\x78\xd8\x4d\x59\xb8\x44\xf3\xb3\x02\x5b\xbe\x18\xa9\x85\x1e\x89\xb9\x6d\xa3\x05\x5d\xa8\x2d\xe3\xc2\x1c\x63\x08\x46\x8b\x66\x4a\xd2\xe6\x42\x6e\x8f\x36\xf1\xda\xed\x22\x2b\x44\xb9\x4d\x9e\x2b\xd9\x3c\x83\xe2\xc8\x09\x2d\x09\x8b\x00\x0f\x82\x84\x5a\x96\xc8\xb5\x28\x31\x22\x63\x4e\x51\x62\x2e\x1a\xbb\x35\xb8\x42\xaf\xe2\x4d\x94\x29\xd9\xf5\x96\x9d\x46\xec\x4e\x44\x26\x5a\xca\xf8\x1f\x5f\xba\xe7\x28\xbe\xbc\xbc\xa4\x1e\x96\xa1\xc6\x19\xc6\x9e\x1d\x73\x6d\x86\x5f\xef\x64\x05\xd9\x25\x09\x47\xe4\x9d\x5e\x49\x12\x2a\x70\x0a\xc2\x32\x98\x52\x6b\x6c\x35\x83\xa6\x35\xb1\x60\x43\x0d\x8d\x29\x6d\xa6\x4d\xeb\x85\xc5\x29\xa7\x2a\x95\x25\x7f\xb0\xaa\xde\x82\xe5\xb7\x42\xfa\xb4\x85\x94\xc6\xfb\x0e\x88\x8d\x46\xc0\x77\x02\xce\x73\xeb\xd7\x5f\xfe\x8f\x7f\xfd\x2f\x56\x83\xaa\x0b\x51\xbc\x15\xde\xa9\x7c\x4f\xa5\xa3\x0c\xcd\x31\xe1\x4f\x9f\xf0\xed\x1c\x8e\x93\x09\xdd\x98\xdb\x2c\x2d\xb7\x45\x28\xfc\x10\xa7\xc2\xd4\x59\x2f\x5b\x30\x6a\xd2\x28\xf0\xb8\xdc\x89\x18\x2d\xb4\x59\xb4\x01\xcb\xc2\x18\xfc\xbd\x1b\x4b\x79\xa3\x02\x61\x25\xa2\x53\x95\xe5\xb2\x7e\x33\xd6\x48\x70\x06\x5c\xce\x5f\xb3\xbf\x46\x7f\xbd\xff\xeb\xfc\xaf\xc9\xe9\xbf\xfe\xd7\xff\xf6\x7f\xfd\xf2\xdf\xfe\xeb\xff\xf9\xeb\x2f\xbf\xfc\xfa\xcb\x7f\xfe\xf5\x97\xff\xe1\xd7\x5f\xfe\xc7\x5f\x7f\xf9\x9f\x7e\xfd\xe5\xbf\xfc\xfa\xcb\xff\xfc\xeb\x2f\xff\xcb\xaf\xbf\xfc\xaf\xbf\xfe\xf2\xbf\xfd\xfa\xcb\xff\xfe\xeb\x2f\xff\xef\xaf\xff\xf9\xff\xfe\xff\x7e\xf9\xe5\xaf\x1b\xdf\xf5\x07\xe2\xdf\xe1\x5f\x37\x73\x36\x9f\x5b\x4a\xe5\xaa\xcb\x60\x54\x28\xfa\x95\xf8\xf2\x7e\x4f\x1d\x81\xb7\x65\x58\x49\x77\xa8\x70\x5a\x5d\x2c\x06\x52\xfb\x00\x2e\xe8\x94\xeb\x2f\x6f\x56\x2b\x36\x0b\x83\x8c\xc1\x8c\x4e\x25\x74\x5c\x59\xb4\xa6\x53\xe7\x2d\x4b\xd3\xe0\x8e\xbd\x5a\x04\x51\xc4\x96\xb0\xa2\x53\xe7\xdb\x30\x5d\x73\x9d\x06\xee\xa9\x0b\x8f\x7c\x41\xdc\xed\x47\xee\x37\x85\xba\x1e\xce\xd1\xe3\x4e\xfe\x3f\x3e\x4b\x1a\x7c\x95\x2f\x01\x65\xf7\xe2\xd7\x90\x21\x4e\x05\x6f\x2b\xbb\x52\x63\x12\x08\xd7\x36\xbc\x3d\x59\xd8\xf6\x2c\xcf\xd1\xe2\x40\x46\x9b\xf1\x04\x12\xea\x9d\xef\x41\x3d\x27\xe7\x58\x23\xf8\x14\xda\x75\xd2\x6c\x96\x67\x23\x8f\xe3\x66\xf3\xbe\xe2\x2b\x9f\xd6\x99\xa0\xd8\x88\x95\xa9\x12\x19\x86\x0c\x6f\x21\x42\xf7\x18\xee\xb7\x66\xfc\x0d\xc3\x4f\x46\xc7\xb6\xb0\xe7\x64\x39\xc7\xa3\xa8\xda\x85\xd2\x75\x31\x40\x77\xc0\xc0\xc3\x78\x4b\x56\xb6\xbd\x72\xa2\xf8\x61\xe7\x61\x51\x66\x3e\xb7\x1e\xa1\x98\xa2\x50\x98\x44\xd6\xd8\xe1\xab\xd1\x87\x50\xfc\xf5\x9c\x38\x5a\xc9\x59\xa4\xb7\x02\x09\x3b\x76\xd6\x71\x9a\xa9\x99\x85\x98\xd7\x40\xa6\x4e\x30\x9b\x5d\xdd\xb3\x28\xfb\x3e\x4c\x33\x16\xb1\xfa\x28\x59\xe3\x45\xdb\x6e\x4c\x9d\x70\xc5\x3f\x71\x2d\x5c\x2a\xd2\x11\xaa\xb6\x72\x6a\x7e\x07\xb1\xa6\x65\x01\xa7\x36\x5b\xd8\xff\x18\xb2\x54\x13\x2d\xb8\xe5\x2a\x2e\x26\x11\xb5\xe2\x28\x61\xc1\xec\x31\xcd\x82\x8c\x4d\x17\x9c\xcc\x5a\x61\x74\xba\x44\x96\x74\xe1\xb0\xaa\x9e\x03\x9b\x8a\x53\x93\xf1\x14\x76\xf6\x2b\x32\xe7\x79\xe3\x24\x6c\x15\xdf\x33\xf9\xa2\x04\x9c\xb8\x2b\x6c\xca\x55\xa0\x8c\x54\x62\xe6\xc5\x9b\xac\x18\x7d\x10\x56\x99\x1d\xa3\xc4\x02\x24\x82\xfb\xac\x88\x92\xd4\x28\xce\xc2\x4b\x48\x59\x57\xdb\xa4\xaf\xf2\x2c\x88\x4d\x7e\xcc\x80\x2f\xd9\x97\xcc\x59\x15\x7c\x81\xb8\x48\x5f\xf5\x15\x81\x1e\x49\x8f\x27\x7c\xe1\x8e\x42\xc4\x9a\x22\x79\x4e\x5c\x98\x15\x15\x8f\x11\x5f\x3f\x62\xcf\x2f\x98\xe7\x91\xa4\x52\x85\x97\xa6\x79\x42\xe2\x9e\x54\x71\xb8\x94\x00\x91\x19\xde\x9b\x26\xfb\xfc\x31\x89\xa3\xbb\x53\xb9\x63\x0d\x21\xb4\xc2\x0e\xcb\xbc\x47\x5e\x5d\x06\x32\x23\x0c\x84\xcb\x1d\xcf\x8f\x3c\x3d\x0d\xd3\x77\xc1\x3b\x15\xca\xe1\x12\xc4\x2e\xdd\x51\x48\x22\x8c\x8a\x60\x02\xaf\x2e\x1b\x57\x61\x39\xe9\x3f\x53\xa1\x89\x76\x85\x69\xed\x38\xe8\x1d\x4d\x70\x65\xce\xff\x81\x49\x37\xe0\x19\xf9\x64\x8b\x31\xdf\x43\xe1\x20\xee\xce\xbc\x1f\xcd\x1e\xf5\xb5\xce\xa8\x58\xe8\xa8\xd2\x23\x51\xeb\xd7\x92\x19\xb6\x8f\xc0\xd4\x89\x3c\x99\xa5\xf5\xaa\x2e\x41\x4f\x45\xc6\x0b\xe7\x48\x98\xaa\x0c\x0d\x69\x68\x1a\x35\x4a\x71\xa8\xe7\x6b\xf8\x0f\xc5\x26\xbd\x4e\x57\xf1\x49\x15\x7d\xd9\xd6\x69\x2c\xbc\x9e\xc4\x2f\xee\xfb\x0a\xbf\xd8\xeb\x4b\xfc\x62\x31\x15\x2b\x2d\x7b\xdf\x8b\x92\x01\x86\x47\x9d\x7c\xed\x4e\x7b\xa4\xdd\x2a\xeb\xd3\x8d\x3a\x10\x79\x50\xf6\xd1\x2b\xed\xa6\xf3\x45\x01\x93\x5c\xab\xe0\xd8\xf7\x3a\xfa\xf3\x65\xe9\xcc\xf5\x59\x63\x94\x7c\x52\x16\x21\x78\xa5\xd1\xb1\xde\x2a\x18\xf6\x8f\xd2\x93\x05\x3e\x08\x23\x52\x1f\xc3\x4f\x22\xc7\x7b\x07\xc3\xb7\x2a\xce\xf4\x9d\xc2\x61\x7e\xa3\xf3\x73\x7c\xcf\x5f\x71\x31\xbc\xe6\x3d\x1e\x62\xf8\x59\xd9\xfc\xfe\x48\xa5\xe9\x13\xbe\xa1\x3f\x3b\x73\xf8\x33\xfd\xa3\x33\x87\x1f\x69\xe8\x94\xbb\x14\xfe\x46\x43\xa7\xd0\x26\xe1\x07\x1a\x3a\x7f\x0e\xa3\x6c\x20\xac\x9d\xf0\x97\xdd\x90\x76\xf8\x8e\x6e\x64\xa8\xfa\x37\x9b\xf9\x9c\x25\xf0\x27\xba\x71\xbe\x0d\xb2\xe0\x87\x90\x3d\xc0\x1f\xe8\x5b\xe4\x62\xf8\x07\xfa\x16\xf9\x18\xfe\x91\xbe\x45\x6d\x0c\xff\x44\xdf\xa2\x0e\x86\xff\x44\xdf\xa2\x2e\x06\xc6\xe8\x5b\xd4\xc3\x90\x31\xfa\x11\x35\x5c\x0c\x89\xb8\xf0\x30\x44\x8c\xfe\x24\xf1\x47\x52\x08\xf9\xf5\x67\xf6\x98\x42\xcc\xaf\x54\x10\x22\x04\x8c\xfe\xa5\xb4\xe6\xbf\x9f\x43\xca\x0b\x12\x91\x78\x0a\x36\xe5\xf5\xc7\xf0\x6e\x91\xc1\x92\x17\xfc\x14\x87\x11\x4c\xf9\x55\x1a\x27\x19\xcc\xc5\x95\x48\x44\xb4\xe0\x97\x85\x5f\xdd\x4c\xfe\xaa\xe0\x1b\xae\x19\x7d\x55\x09\x26\x5c\x89\x82\x6a\x46\x9c\x7b\x46\x3f\x21\x8b\x8f\xcd\xec\xa6\xe2\xa3\x0e\x8f\xe2\xce\x8c\xcd\x77\xca\xef\x18\x4d\x9d\x57\xef\xdf\x5d\x7f\xfa\x08\xb7\xfc\xfa\xd3\x5f\x3e\x5c\x7d\x0b\x37\xfc\xf2\x87\x37\x57\x3f\xc2\x03\x1f\x23\x0f\x6a\xe5\xe3\x97\x0c\x7d\x40\x0c\xd8\xf8\x91\x4d\x84\xb8\x82\xe1\x8a\xd5\x09\xf0\xa7\x1e\xa5\x42\x7e\xf8\x41\x44\xae\xf2\x49\xf5\x7a\x62\xe6\xd0\xd8\x9b\x60\xe7\x56\xcc\x1f\x1e\xbb\x93\x2d\x86\x2f\x8c\x36\x1a\x3f\xd8\x76\xa3\xf1\x83\x71\x80\x94\xb2\xcc\xb6\x2b\x55\xcb\xfa\x3c\x09\x6c\x2e\xac\x7d\x70\xcd\x6a\x55\xee\xb5\x52\xb0\x12\xae\x60\x25\x7f\xa7\x8f\x05\x7e\xd4\x5c\x21\x9e\xcf\x53\x96\x55\xb8\x02\xbc\x67\xbb\x2c\xe8\x41\x84\xdf\xdc\x32\x99\x29\x53\xd3\x43\x15\xd0\xfe\x37\x13\x58\x27\x38\x15\x53\x20\xb3\x8e\x35\xb8\x54\xf2\x72\xb7\x61\x22\xa7\x93\xac\xf1\x5e\xd5\x88\x75\x4d\xd6\x9b\xac\xb6\x26\x33\xec\xc0\x68\xac\xce\xc2\xbe\x85\xcf\xbb\x5f\x51\x4f\x7c\xda\x9d\x27\xf8\xb4\xfb\x64\xe9\x3a\xef\x42\x44\xb5\x27\x19\x84\xf4\x25\x13\x91\x12\xe7\x11\x17\x73\x85\x3e\x95\x09\xe1\xb6\x38\x4c\xdc\xc2\x2b\xb6\xa7\xcf\x7d\x23\x2e\x0e\x24\x1d\x91\x70\xf6\xb3\x71\x32\x11\xb1\x60\x6f\xd9\xc1\x93\x39\x69\x8f\xbb\x3a\xe0\xcc\x3f\xa5\x9b\x03\x69\x56\xe6\xa5\x29\x78\x0a\x0b\xfa\x19\xa5\x32\x93\x8c\x38\x16\x5a\xd8\x76\xe3\x0b\x5a\x28\xac\xa3\x80\x2e\xa4\x3c\x96\x62\x10\x29\xb5\x32\xea\x9e\x37\x04\x5c\x4b\x05\x9b\x28\x6b\x36\x71\x24\xa5\xfc\x58\xe5\x62\x3e\x49\x69\x24\x72\xc7\xcd\x6d\x7b\x73\xe9\xdb\x36\x9a\xd2\x25\x9a\x82\x99\xab\x12\x7c\x11\xe7\xe2\x42\x42\x57\xa8\xc8\xad\x2f\xc7\x55\xc4\x9c\x27\xf8\x3c\xb9\xcc\x44\xf5\x02\x15\x73\x3e\x9a\xa2\x74\x9c\x4d\x20\xc3\x84\xff\x35\xc6\xf9\x63\x45\xb4\x2c\x11\xc8\x5d\xc8\xf6\x07\x27\x29\xbe\x90\xe1\xf3\xec\x92\x9d\x63\x61\x75\x2a\xdb\xc6\x8c\x49\x4c\xb6\xf0\x41\xed\xba\xca\x16\x9b\xb1\x32\xdc\xfc\x07\x91\x73\x04\xc3\x4f\xac\x26\xe8\x77\xa6\xe1\x54\x3e\xb0\xd1\x5c\xbd\xf4\x9e\x29\x3b\x07\xd1\x57\x15\x56\xfc\x2d\xa3\x4f\x65\x6a\x56\x52\xbb\x70\x5f\x57\x6b\x02\xbe\xa8\x9e\x97\x84\x15\x6f\x81\xdd\xb3\xe4\xb1\x2e\xa4\xee\x9f\xcc\x0a\x9f\x97\xb8\x07\x6f\x61\x1e\x2e\x97\x75\xb5\x7d\xaf\x7a\x5e\xdb\xc9\x79\xb8\xcc\x58\x52\xf7\xda\x67\x35\x3b\xff\xf0\x3b\x1a\x23\x2a\x8e\x66\x75\xd5\xfe\xa7\xdf\xd9\xb7\x68\x26\xd8\x58\x5d\x95\x8c\xfd\xbe\x3a\x6b\xf2\x27\xfd\xe1\x77\xd5\x14\x4a\x06\x5b\xd7\xb6\xe4\xf7\xb5\x2d\x8c\xa6\xcb\xcd\x8c\xd5\xe5\x60\x39\xcd\x7e\x5f\x95\x9c\xb7\xd7\xc6\x6f\xb2\x63\xeb\xc3\x90\x1f\xea\x5e\x0e\x8e\xbe\xbc\x0a\xd6\x75\x2f\x3d\xfc\xbe\x0e\x48\x69\xa5\xae\xc2\xf4\x68\x2b\x0c\x29\xa7\xee\xe5\xcd\x57\x5e\xbe\x67\x49\xca\x6a\xb3\x91\x41\x46\xf5\x3b\x25\x51\x2b\x35\x2e\x94\x9d\xf9\x9c\x64\xbb\xe7\xd1\x45\x72\x8e\x25\xba\xfa\x38\x9a\x80\xfc\xdb\x6c\x4e\x64\x49\xab\x95\xa9\xb2\xcc\x4c\x08\xbc\x08\xd3\x2d\xa4\xf1\xaa\xb6\xc7\xff\xf8\xbb\x46\x90\x0b\x75\x75\xb5\x4d\xd9\x2e\x19\xe3\x0f\x6f\x6e\x05\x53\xaf\xcd\xf1\x53\x3c\x19\x15\x38\xad\x10\xd2\x47\xc1\x89\x0d\xb6\x8f\x3e\xa0\x04\x12\xc1\xd5\x31\x4a\x94\x14\x05\x89\x73\xfb\x98\xb1\xf7\x42\xa6\x69\x86\x2f\x12\xe7\x9b\xbf\x7c\xba\xba\xbe\xf9\x70\xf5\xf1\xe6\xea\xfb\xab\xb7\x57\xef\x3e\xc1\xca\x48\x4c\x9d\x8d\x22\xf2\x88\x32\x88\x30\x6e\x85\x42\xd5\x7a\x77\x40\x8c\xd0\x24\x6b\x97\xc0\x83\x08\x4e\xd9\xc2\x9b\x2a\x23\xd7\xb7\x95\x9e\x7e\xcd\x90\x39\x6c\xe0\x71\xad\x5d\x88\x02\x3a\xbb\xa4\x64\xf4\x21\x5d\xa1\xa8\x60\x94\xb1\x84\x36\x0c\x9b\xd9\x65\xb2\x2b\xb6\x95\xca\xbc\xb4\x80\x5f\x84\xe7\x58\x4e\x74\x33\x9e\xd0\x68\x1c\x37\x9b\x93\x2d\x7c\xcf\xe8\x93\x06\x0e\xd9\x67\x5c\xf1\x2e\xb3\xda\x4a\xe0\x91\xfd\x27\xc3\xfd\x27\x15\x72\xc9\xfe\xb3\xd1\xde\xb3\x5b\x78\x7d\x60\x54\xa5\x10\xc8\xc6\xb7\x6c\x62\xdb\x3a\xae\xbd\xf0\x36\xcb\x6c\x5b\x66\x81\xb0\x6d\x65\x8b\x6e\x66\x98\xd2\xc2\x07\x70\x0b\x3f\x1f\xa8\xf7\x35\x17\xdc\x32\x7a\x27\x63\x8c\xf0\x68\x8e\x7c\x19\x28\x44\xfe\x2c\x6d\x34\xf0\xc7\x7d\xb9\x4d\xd9\xdb\xd1\xce\xcb\xb6\xfd\x80\x12\x2e\xfc\xa2\x04\x2c\x95\xd3\x00\xe7\xb9\xf8\x29\x92\x87\xa8\xeb\x54\x5e\x8b\xd8\xbe\xc2\x81\x41\xdd\x7b\x48\xc2\x4c\xa2\x91\xda\x76\x23\x71\xf4\x4f\x75\x97\x15\xde\xfc\xea\x7e\x59\x30\xfa\xa6\x70\x64\x94\x9e\x8d\x0a\x18\x92\xe1\xed\xc9\x1d\xcb\x73\xf4\x47\x67\x4e\x7f\x66\xf0\xb3\x33\xa7\x7f\x64\x18\x02\x14\x38\xd7\xcd\xc0\x79\xfd\xa2\x71\xc7\x4a\xef\xfb\xa7\x43\xc1\x5a\xe4\x67\x06\x95\x20\xb5\x47\xf2\x47\x26\xb0\x9c\x8c\x89\x5d\xa8\x19\x15\x7a\x86\x6d\xa3\x05\xa3\xb3\x3a\x41\x68\xc9\x2a\x1e\x90\x62\xed\x7f\xc3\xe8\x0c\x3d\x71\x89\x07\x9f\xcc\xd0\x37\x0c\xbe\x67\x18\x16\xfc\x62\xcd\xaf\x95\x9e\x89\x41\xdc\x7b\x12\x0a\x21\x79\xc7\x44\x02\xb0\x37\x0c\xa6\x75\x69\xb5\xf0\xd3\xb6\x40\xbc\x27\x8b\x5d\x30\x7c\xf2\x13\x6f\xff\x2b\xc6\xeb\xb3\x24\x55\xb0\xc0\xba\xb5\xca\xb2\x82\x40\x58\x60\xc5\xd5\xf2\xef\x75\x9c\xd2\xb2\x2c\x2f\x62\x97\x98\x85\xe1\x1b\x5e\xb4\x62\xc7\xa4\x7b\xbe\x98\xb7\x47\x70\xb4\x60\x53\x24\x04\x6b\x22\xb4\xa1\x8d\xc6\x06\x8f\xac\x57\xcb\x60\xb5\x66\x33\x8b\x58\x16\x6e\x2a\x30\x24\x98\x53\xb1\xc2\x9a\x0c\x66\x54\xac\xaf\x26\x83\x35\x0d\xc7\xcb\x09\x3c\xd2\x75\x9e\x8b\x23\x82\xb5\x6d\xbf\x47\x6b\x0c\xb7\xb4\xb1\xce\xf3\x46\xea\xbc\xfc\xe6\x07\x9d\xb8\x69\x6d\xdb\x26\x90\xf1\x67\xb3\x29\x4a\x53\x49\x0e\xf5\xa5\xfa\xa8\xb2\x00\x39\x37\xb3\x82\x06\x3b\xf7\xe3\xf9\x04\x25\x2f\xb2\x66\xe4\xc4\x70\xc5\xf0\x56\x4b\xf5\xbb\x09\xdc\x6a\xeb\x2c\x0f\xa7\x45\xad\x12\xe2\x00\x29\x1b\xa3\x40\x55\x41\x91\xb0\xaf\xba\x24\xba\xf4\xbb\xdd\x91\xdf\xed\x12\xbf\xdb\xb5\x23\x0c\xa1\x73\x3f\x9e\xc9\x6f\x87\x4e\x0c\x91\xf9\x75\xc1\x61\xca\x1d\x24\xc2\xf9\xb7\x27\xb7\x23\xb4\xa6\x09\xaa\x36\x00\x42\xfc\x34\x45\x0c\xd6\xb0\x04\xeb\x66\xa6\x72\x95\x08\xc5\x0b\x36\x30\xa7\x2e\xcc\x24\x09\xe6\x14\x40\xe9\xad\x89\xe9\x8a\xf6\x5d\x9e\x5b\x86\x11\xc6\xa2\x14\x6d\xe8\x0d\x7f\x38\xcf\xad\x6b\xe1\xcc\x53\xbd\xbd\x29\x02\x19\xa5\x2e\x9d\x8c\x3e\x31\xb4\xe6\xfb\xfb\xad\xda\x3c\xfc\xc7\x49\x4c\x13\x98\x71\xae\x11\x81\xca\x29\xfe\x48\x25\x6b\x93\x2b\xf4\xc4\xb4\x0a\x87\x12\x92\x78\x5f\xb5\x2f\x79\x44\x38\x47\x28\xa0\x8f\xad\x19\xbe\x70\x0f\x3e\x55\x24\x5a\x47\x01\x5d\xa1\x10\xbf\xc8\x70\x73\x76\xf9\x78\xb8\xd6\x94\x06\x67\x99\x7c\x2b\xa5\xf7\x28\xe1\x1c\x8b\x6b\x4b\xdf\xa1\x80\xa6\x2f\x54\xa2\xd0\x05\x62\x62\x6c\xe1\xe9\x96\xc4\x10\x93\x19\x2c\x49\x00\x8c\xa4\x70\x4f\xf8\xc3\x7f\x42\x31\xde\xe2\xf3\xf9\x45\x7a\x8e\x3f\x23\x06\xf3\x66\x93\x6b\x5a\x5f\xa8\xb1\x70\xe9\x35\xfa\x46\x90\x8d\x2f\x60\x26\xce\xb0\x60\x8d\x31\xa9\x90\xaa\xb5\x08\x3b\xaa\x31\x96\xac\x51\x4b\xde\x79\xb7\x97\xe8\x6a\x0d\xf2\x01\x99\x6f\x56\x5e\x7b\x4e\x57\x5f\xf2\xe5\xd4\x70\x71\x9e\x1f\x58\x40\x62\xc9\x14\x0e\xb4\x72\x35\x61\xe0\x2b\x66\xf4\xb5\xb5\x12\x1f\x5d\x2b\xf1\xa8\x50\xe4\xc3\x11\x6f\xcb\x23\x4a\x40\xad\x09\x08\xb5\xb7\x62\x83\xd2\x68\xf7\x2e\x26\xaa\x00\x93\x63\xcb\x4c\x3d\xc5\x67\x8e\x0f\xf9\x1f\xd0\x5d\x83\xd2\x7d\xb7\xf8\xd1\x4b\xf4\x58\x84\x72\xbe\x44\x77\x18\x13\x5e\x52\xc9\x12\x29\xbe\xb2\xce\xf3\x05\x5a\x03\x83\xc7\x31\x9b\x08\x58\x7b\x63\x0a\xbf\x40\x94\xe7\xe8\x4b\x25\xe6\x63\x8d\xe5\xe2\xfe\x44\xbf\x8c\xd7\x6c\x02\xaf\x68\xa3\xf1\xc9\xb6\x51\x09\x3a\xf7\x49\x80\xb0\x69\xef\x2d\xf9\x0b\xc3\x5b\x5a\x70\x8e\x13\xfe\xc5\x7b\x26\x42\x89\xf9\xfa\xb8\x65\x7c\xf4\xf9\xd5\x4d\x59\xf8\xc8\x60\x8d\x01\x6d\x46\x6a\x72\xf1\x78\xc5\x26\x94\x2e\xc9\x4a\xb4\xfb\x0b\xce\xf3\x6f\xd0\x97\x23\x74\x7d\xc9\x09\xfa\xd5\x78\x39\xa1\x6b\xc1\x62\xbf\x6b\x06\xce\x8f\x82\xcd\xa2\x75\x83\x3e\x8a\x84\x5d\x82\xf5\xc2\x12\x9e\xf6\x44\x4e\x92\x6d\x4d\xce\x5c\x59\x9b\x8f\x4e\x3c\xd7\x33\x22\x22\xe6\x96\xf0\x34\x4f\xe2\x15\x79\xcb\x20\x9e\x93\x8f\x9c\x99\x59\x7b\x35\x5a\xbc\xd5\x7c\xb4\xbf\xd4\xdd\xe4\xeb\x83\x7f\xee\x03\x2c\x39\xdf\x85\x37\x68\xa9\x0a\xc4\xf7\xbf\x30\xfe\x11\xc9\x61\xb7\xe6\x8d\xc6\x2b\x58\x0a\xfe\x1c\xe5\xf9\x97\xc2\x22\x4b\xe9\x82\x89\x99\x2b\x0a\x16\xcc\x7c\xab\x66\xab\x79\xb8\x88\x26\x16\x1d\xd2\x6c\xbd\xf2\x35\x54\x63\x2b\x1d\x7b\xe0\x4f\x76\xac\xbf\x08\x37\xe4\xf1\x2b\x12\x77\xf1\xde\x6d\x91\xd6\xaa\x52\xd9\x97\x9d\x67\xe4\x00\xcb\xd7\xb7\x58\x34\xa9\x4e\x68\xf8\x96\x4f\xf0\xab\xd1\x27\xf2\x96\x8f\xc0\x2b\x39\xbe\x6b\x06\x6f\x35\x02\x4d\x2d\x7c\x8f\xe9\x25\x5c\x86\xd3\x69\x64\x3d\x15\x8b\xbe\x9b\x87\xd6\xef\x13\xcf\xef\x8b\xb3\x49\xaf\xdd\x17\xa7\x84\x5e\x7b\x00\x3b\x87\x71\x45\x18\xae\x8e\x61\xf7\x3a\x5d\xe2\x75\xba\xe0\x75\x7a\xc4\xeb\x14\xbe\xa8\x05\x62\x9f\x06\xfe\xf6\x7a\x1d\xe2\xf5\x74\x46\xb8\xf6\x90\xb4\x87\xd0\x71\x49\x11\xdb\x2a\xf3\x59\x8a\xe0\x87\x6a\x16\x5c\x23\x77\xdc\x5e\xa4\x8a\x86\x10\x37\x32\xc8\x19\x78\x80\x3b\x99\x72\x79\x4b\x7f\x9b\x6f\x74\x57\xe1\x29\x0c\x86\x3a\xa8\xa9\xa7\x5c\x2f\x74\xc6\x12\xaf\x2f\xcf\x94\x7a\xbb\x67\x4a\xed\xa1\x3c\x53\x12\x27\x47\x33\x7d\x72\xb4\x2e\x4f\x7b\x56\x85\xeb\xf2\xbd\x3a\xa1\x79\xd4\xd0\xa0\x77\xd4\x08\x4a\x87\x5b\xaa\xb8\x9c\xb0\xbb\x34\x2c\xb8\xa1\x51\xe5\x98\xe5\x81\x46\xe5\x31\xcb\x15\x8d\x1c\x2e\xae\xc0\x17\x1a\x99\x47\x39\xd7\x34\x72\xde\x44\xf3\x30\x0a\xb3\x47\x78\x4f\x6f\xe0\x25\xbd\x72\x82\xdb\x14\x3e\xd3\x2b\x81\x3b\xf7\x89\x5e\x49\x45\x1e\x5e\xd1\x2b\x67\x19\xdf\xc1\x5b\x7a\xe5\x7c\xff\xce\x87\x8f\x34\x1c\x59\x37\xb7\x16\x29\x64\xd7\x0f\xa2\x64\xc9\x4b\x0c\x09\xf5\x27\x51\x1a\xab\x52\x25\xcf\x96\x48\x40\xdf\xd6\x79\xb3\xf0\x5d\x24\x0f\x1e\x12\x3e\xb2\x83\x17\x49\x2b\x6b\x79\xb0\xa1\xc8\xbb\xb8\x48\x71\xcb\x83\x25\xdd\x5c\x5e\x7a\x30\xa5\x7e\x5b\x68\xc7\x9f\x05\x24\x5e\x07\xb7\xc4\x45\xbf\x8f\x89\x2b\xc4\xa2\x05\x65\x17\x6e\x9e\xbb\x32\xd7\x87\x77\xc6\x2e\xdc\x91\x47\x5c\xc1\xf0\x11\xa3\x2f\x11\xc3\xb8\x41\x59\x9e\x33\x4a\xe9\xf5\x08\x85\x54\x40\xbd\x79\xc4\x85\x88\x6e\x30\x41\x11\xfd\x84\x5e\x21\x86\xcf\xde\x62\x60\x2f\x50\x4c\xc5\x07\xb8\xbc\xe7\x71\x39\xb0\xd5\x82\xf8\x05\xf5\x31\x20\xd6\xa4\x51\x73\x79\x49\xbd\xd1\xf4\x2c\x26\xd3\x17\xfc\x39\xaf\xb5\xc4\xf8\x45\x7c\x49\x7d\xfe\x6c\xb3\x09\xf1\x19\x7f\x56\x3c\xb7\xe1\x1f\x53\x5f\x51\x2f\xa2\x90\x22\xf6\x22\x6e\x79\x58\xbc\x9d\xf1\x27\xe9\x12\x13\xde\x2a\x51\xb2\x34\x6f\x51\x17\xe3\xf3\xec\x92\x0e\xce\x83\xf1\xbc\xd9\x9c\x50\x2e\x72\x86\x10\x9e\x51\xbf\xdb\x83\xac\x45\x07\xf8\x5c\x64\x2d\xa7\xd1\xc5\x45\x96\x87\x90\x36\x69\x76\x9e\x5e\xba\xe6\xf3\x11\x44\xf2\xf9\x54\x3c\xaf\x2d\x5a\xe3\x56\x6b\x3e\xc9\xa9\xe7\x0f\x5e\x2c\x20\xd8\x16\xb3\xf5\x6e\x67\xb6\x8a\xa9\x89\xc5\xd4\x84\x7c\x6a\x02\x1a\xf3\xa9\x49\x69\xd8\xea\xc3\x86\x26\x62\xb6\xd8\x78\xd3\x6a\x4d\x60\x4a\x3d\xbf\x6f\x2f\x65\xc6\xa8\xcb\x4b\xda\x17\xed\x99\xf2\x16\xbc\x98\x36\xd9\x78\x33\x81\x4d\xab\xa5\x1a\x23\x1b\x3f\xb5\x79\xcd\x2d\x31\xeb\xd3\xcb\x4b\xda\x4a\xcb\x8e\x44\xe2\xc5\x68\xf7\xc5\x70\x8e\x5c\x91\x86\x60\x4a\xbd\x56\x50\xe4\xa4\x98\x52\x4a\x63\x2d\xd5\x46\xa3\x77\xc1\x3b\xb2\x1c\xb5\xae\xc9\xf5\x49\xd4\xa4\x6a\x54\xa7\x2d\x1a\xa8\x10\x0d\xb4\x14\x58\x7f\xf8\x45\x24\x86\x7c\xda\xca\x70\x39\x10\x6f\x2a\x19\xa7\xdb\x93\x8b\x0b\xbf\x93\xb3\xb1\x3f\xb9\xb8\xf0\x7a\x39\x1b\x7b\x93\x8b\x8b\x41\xce\xc6\xee\xa4\x7c\xe7\xfb\xf2\x9d\x31\x1f\x7b\x66\xdc\x7b\xbd\x7b\x0f\xd8\xe5\xe5\xc0\xf6\xbb\x5d\xe3\xa1\x9f\x0f\x3e\xc4\x2f\xbc\x9e\xbe\xf2\x3b\x3b\x2f\xfe\xd1\x68\x2d\xdf\x70\x5d\x1f\x06\x46\x67\xbe\xd9\xb9\xed\xb7\xa1\x63\xdc\xfe\xb3\x9e\xf4\x15\x62\xe3\xbb\xc9\xf1\x23\x23\x75\x5e\x54\xbc\xfc\xe3\xae\x83\xef\x0c\x35\x13\xac\xad\x45\x6c\xfc\x61\xa2\xc4\xf6\x2f\xe8\x56\x69\x35\x94\x8d\x3f\x4e\x9c\x9b\x5b\x08\x68\xd8\x64\xe3\x9f\x04\xe4\xa9\xe2\xd3\x01\x04\xcd\xd2\x4d\x32\x1a\xa5\x24\x75\x94\x79\x12\x19\x5f\xfd\x1b\x2a\xd2\xf5\xe8\xb4\xd6\x41\xf9\xe5\xa0\xe6\xcb\xda\xa0\x99\x16\x5f\xdf\xd0\x40\x7e\x7d\x49\x23\xd4\x0c\x39\x25\x77\xcf\xa7\x17\xd9\xf9\xb4\xd9\xc4\xe9\x78\xd3\x9c\x4e\xe8\x72\x1c\x8f\xa6\x24\x6b\x4d\x5b\xde\x64\xcb\x6b\xe6\x3a\xad\xd4\xbf\x96\x26\x9f\xbf\x11\xd2\x7e\x9e\x57\x4b\x39\x99\xbb\x91\xe2\x7e\x9e\x2f\x6b\x0e\x64\xc5\x03\x20\x1f\x2b\x04\xfd\x1b\x91\xfc\x12\x2a\x22\x7a\x83\xde\x08\x89\x73\x8b\x4b\xd3\xec\x0f\xf0\x17\x8a\x6e\xea\x9c\x36\xa6\x52\x01\xbd\x91\xf5\xbd\x47\x33\xe1\xbd\x81\xc7\x77\x13\xfa\x9e\x4f\xf0\x77\x74\x8d\xde\x63\xf8\x13\x75\xcf\xbf\xd3\xe6\xd4\x3f\x9d\x63\xf4\x03\xfd\x6e\xfc\xa7\x66\x73\x82\xc3\xe8\xf4\x26\xcf\x53\x74\x03\x3f\xc0\xfb\xf1\x0f\x13\x7c\x12\xe7\x39\xfa\x4b\x45\x64\xbe\xc1\x5b\xde\x8a\x3f\x08\x62\xfe\x80\x64\xcb\x7d\x8c\xe1\x1f\xe8\xc3\xf8\x6e\x22\x7c\x0f\xa3\x6c\x70\xf2\x07\x7d\x85\x5c\xf0\xbd\x4e\xbf\x33\x68\xf7\x3a\x03\x0c\x65\xb9\x57\x96\x0f\x31\x34\xfe\xe0\xdc\xe9\x17\xb0\x6d\x97\xbf\x3c\x9c\xe7\x1b\xc4\xeb\x16\x32\x23\x2f\xdb\x31\xdb\xfe\x83\x91\xeb\x98\x41\xc6\xf7\x2c\xdf\x2c\xd2\x0a\x20\x7c\x18\x9e\xfb\x82\x50\xb4\xa4\xa8\x55\x1d\x61\x3d\xb4\xd5\xe9\xd1\xd6\x55\x3e\xd0\x12\xee\xee\xe6\x96\xde\x97\xa7\x76\x92\xd7\x65\x18\x5c\x89\x45\x37\xfe\x30\xa1\xd9\xb6\x82\xbf\x2d\x77\xa0\xaa\xfe\x01\x2c\xcd\xda\x2d\x0c\x5c\x95\xbb\x31\x4b\xb4\xc4\x32\xfe\x30\x81\x90\xce\x95\xcf\x55\xc8\x19\x61\x78\x19\x15\xab\x7e\xef\x5c\x5d\x6c\x4a\x94\x98\x1e\xe0\x51\x2b\x24\x02\x87\x64\xff\xbd\x52\xbd\x16\x4d\xfe\x38\xa1\x32\x6d\xd4\xf8\xa7\x09\x0d\x8b\x6e\x24\x5b\x08\x6d\x1b\xfd\x19\xdd\xec\x18\xae\x6e\x96\x16\x86\x3f\xa3\x07\xc3\xf6\x75\x73\x5b\x14\x1d\x78\xd2\xb4\x88\xdd\xc4\x16\xc6\xa0\x67\xfc\x6e\x6f\xc6\x8b\xe5\xfe\xa3\x1c\x34\x0f\x18\x1e\xbb\x13\x3d\x89\x02\x27\x74\x77\xd2\x0f\xbc\x23\x9e\x7d\x13\x65\x5e\xaf\x26\x55\xbf\x7a\xd4\x37\x0f\x21\x44\x0e\x0d\xc5\x46\x32\xc5\x0c\x44\x26\x0e\xce\x1e\x38\xa9\x2e\xbe\xfe\x7b\xaa\x3c\x35\xab\xd4\x6d\x6b\xfb\x75\xfd\x78\x83\x54\x5d\x9d\xdd\xba\x70\xd1\x84\xdf\xfc\xe6\xe5\xe5\xa5\x2b\xde\x16\x80\x1a\xf5\xaf\xbf\x3b\xf8\xba\x62\x2f\xc5\xfb\xbd\xce\xd1\xf7\x07\x7b\xef\x4b\xee\x05\xf5\x7b\xfc\x6f\xc5\xc4\xc1\xf7\xc2\x7e\x7e\x60\x6b\xd7\x3d\xb7\x3b\xc3\xc6\x73\x7c\x2a\x5e\x9b\xe7\xda\x63\xae\xa1\xe9\xca\x7f\xfb\x5b\xbb\x13\x66\xbc\xc4\x07\xec\xe7\x83\x9f\xfa\xed\x6f\xed\x4f\xd2\xce\x6b\xdf\x1c\x7e\xad\x32\x37\xc6\x6b\x7c\x52\xfe\xb8\xf7\xda\x16\x9f\x3c\xa2\x5d\xd2\x07\x8f\xa8\x4a\xae\x52\xb9\x63\x03\xe9\xb9\x24\x1c\xba\x4c\xc5\x85\xde\x40\x52\x28\x2e\xf4\xc1\x84\x7e\x29\x74\x53\x85\xfe\x7e\x50\x17\x95\x3a\xa7\xd4\x29\xa5\x36\xa9\xb4\x46\x53\x5f\x94\x68\xf1\x52\x23\x2c\x74\xc1\x1a\x37\x7b\xcd\x4f\xa3\x8a\x43\x61\x91\xb1\xb5\x23\xf2\x55\x06\xda\xa1\x4b\x1c\x17\x5a\xc2\x13\x06\x59\xf7\xb2\xc7\x4b\xda\x40\x8d\xd0\xec\x64\x9e\x37\xc2\xa2\x93\x5c\xb2\x58\x2a\x6d\xc5\x7a\x53\x78\xd2\x19\x4e\x75\xe2\x52\x19\xde\x65\xc9\x9b\xc2\x37\x0b\x0c\x3f\x2d\x10\xcb\xaa\x2c\xd6\xd7\x6a\x09\x18\x3f\x7a\x1d\x69\xb9\x37\xf2\xef\x9e\xcf\x2f\x86\xe7\x18\x45\x34\x1c\x2f\x84\x82\x30\xc1\x23\x14\x23\x13\x76\x22\x15\xd3\x55\x2d\xdb\x88\xb3\x27\x32\x15\x40\xf5\xa5\x0f\xf4\xcb\x6f\x7e\x20\x4b\x90\x3e\x6b\x64\x0a\xc2\x61\x8d\xa4\xc0\xe7\x9c\x6c\x4c\x34\xe4\x6a\xbe\x54\x5e\x7a\xc0\x1b\xd5\xd5\xee\xaf\x49\x10\xcd\xe2\xd5\x81\xcc\x97\x65\xfe\x1e\x89\x7f\x6a\x69\x7b\x60\xe9\x9b\x3c\xb2\x2c\xc2\xc0\xc2\x37\x16\xa0\x66\x33\x6a\x86\xb8\xb0\x18\xa1\x76\x0f\x97\xde\xbe\xc7\x01\x4e\x4a\x04\xe1\xdd\xc4\x59\x9b\x94\x25\x2f\xef\x58\x94\xe5\xb9\x65\x19\x69\xb3\xbc\xce\x91\x88\xc8\xc1\x01\xc7\x6a\xed\x87\xc6\xfb\x96\xe7\xcc\xb9\xc9\x6a\x63\xe6\x45\x52\xec\x3d\x38\x09\x38\x15\xf1\x6e\xa7\x09\xfb\xdb\x26\x4c\xd8\xcc\x70\x48\xab\x64\xd3\xf1\xba\xc7\x3c\x9b\x77\x92\x15\x17\x76\x8f\xae\x27\xed\x1e\xc2\x60\x71\x34\xa6\x2a\x74\xe4\x74\xe4\x39\xd2\x97\x34\x1e\x3d\x6d\x49\x54\xdc\x78\xda\xe2\x13\xeb\xc6\xa2\x94\x95\xa8\x49\x79\x2e\xcc\x9e\x19\x97\x35\x33\x60\x1a\xac\x3c\x10\x70\x3b\x3a\xce\xda\x23\x5e\xd7\x83\xbd\x50\xde\x72\x53\x77\x6b\xdc\xaa\x25\xf4\xa3\xd7\xf5\x71\x25\xdd\x01\xbf\xfa\x4a\x7c\xf6\xc3\x67\x33\x3c\x5b\xd2\x02\x17\xab\x6e\x40\x50\x07\x2f\x13\xd7\xc7\x47\xd7\x46\x71\x07\xb6\xad\x82\xa5\x83\x51\x4c\x42\x8c\xd4\x42\x76\xac\xa6\x10\xd2\x9d\x34\x8b\x13\x46\xa3\xfd\x38\xef\x12\x68\xa9\x7b\x04\x48\xaa\xd3\x3f\x98\x8b\x4a\xb8\x0a\x57\x01\x42\x7d\x2c\xc4\x6b\xf5\xd4\x5b\x81\x98\x52\x97\x1e\xbd\x51\x7a\xfc\xb3\x71\x38\xc9\x73\xb6\x9b\x66\x25\x1e\xf3\xe7\x27\x95\x44\x47\xd2\xaa\x27\x26\x4e\xe7\xaa\xf2\xba\xc7\x63\xdc\x4e\x44\x90\x18\xe8\x73\x47\xd3\x37\x4d\x38\x32\x6f\x31\x30\xd4\xee\x62\x64\x95\x77\x44\x6a\xf1\x76\x97\xb4\xbb\xca\xc0\x28\x8c\x87\xe2\x63\xcf\x35\xfd\xe9\xe8\xba\x8e\x8f\x51\x47\x35\x42\x44\xaa\x35\xf8\xb2\x18\x60\x34\x9e\x38\xc2\x93\x4d\x10\xc8\xa2\x75\x07\x9d\xdb\x42\xad\x53\x54\x24\x9b\xad\x04\xe3\xf1\x07\xc4\xf3\x07\xca\xf4\x59\xb6\xf5\x48\x08\x7f\xcd\xc0\x08\x47\x38\x61\x41\x2c\x87\x84\x97\x19\x83\x21\x39\x63\xf9\x81\xe7\x02\x58\x9b\x83\xe1\x1f\x18\x0c\xe9\x52\x57\x1d\x8d\xc3\x6e\x76\xbf\x67\x38\x9e\x1d\xf2\x6e\xb4\x56\xe0\xc6\x5a\x85\x1f\x9d\x05\x01\x6d\xb8\x27\xf1\x69\x18\x8d\x27\xb6\x2d\xb5\x30\x0f\x8f\xe3\x89\xa9\x8b\x07\xb4\xe1\x6d\xcd\xe8\xc4\xc0\xec\xd2\x11\x97\xbc\xfd\x5e\x7d\xc5\x37\xa9\x98\xa9\xd8\x98\xa4\x9d\x6e\x3f\x17\x80\xc9\xec\x76\x97\x77\xbb\xe1\x9e\x88\x9e\x5b\xd5\xce\x3a\xbc\xcc\xec\x6e\xbc\xdb\xdd\xb8\xda\xdd\x7f\xdf\x9e\xca\x26\x1d\xec\x6e\xef\x59\x60\x47\x3b\xdd\xd5\xf8\x8b\x7a\x29\x4a\x17\x47\xbe\x16\xcd\xb5\x6a\x76\xab\xc6\x09\xf2\xf7\xaf\xcc\x5e\x0d\xbb\xa9\x6d\xb3\x4e\x51\x5b\x64\x08\xeb\x28\x99\x72\xa0\xd1\x8c\x07\x3a\x46\xc5\x53\x31\x2a\x6d\x95\x21\xac\xdb\xc6\x27\x21\x67\xa5\x22\x6d\x52\x43\x04\x77\x54\x8e\x8b\x8d\x94\x44\x4c\xc0\x5b\x16\x7d\x4d\xe2\xd5\xbe\xc6\x09\x09\x84\x30\x87\x85\xc4\x3c\x9e\xd5\x31\x31\x3e\x0e\x23\xfe\x0f\x91\x62\xe4\x7a\xdf\x9b\x79\x45\xd7\x07\x5c\xbd\xef\x4b\x57\xef\x95\x4a\x58\x3c\x45\x0b\x61\x71\xb8\x17\x99\x87\x23\xb4\x82\x75\xbd\x93\xb0\x70\xce\x96\xc7\xaa\x77\x79\x3e\xa3\x32\xc0\xc4\xb6\x53\x74\x87\x05\x2a\xbc\xc4\x81\x9a\xa1\x8c\x6e\xd0\xa2\x88\x31\x3f\xcf\x2e\x1f\xcf\x1f\x9b\x4d\xbc\x44\x09\x3c\xc2\xfd\x68\x85\x16\x22\xf7\x31\x26\xfc\xaf\xca\x3d\x25\x1c\xc3\xa9\x3a\x77\x5b\x68\x5c\xf0\xd9\x79\x03\x85\x74\x5e\xf5\x2d\x37\xeb\x0a\xd0\x1c\x56\x30\x0e\x95\x93\xd3\xe3\x84\xaf\x2e\x12\x6a\x97\x73\xed\xf7\xaa\x1a\x43\x1f\x21\x51\x4b\x66\xf7\xb8\x4c\x1d\x83\x75\xdb\x84\xff\x2b\x0e\xb8\x54\x32\xab\x32\x0b\xae\x3c\xc2\x12\x4b\xab\x46\x3a\x39\xbe\x1d\x14\xbe\x6d\x4c\xc7\x13\x47\x79\xe8\x72\xa2\xd7\x88\x6d\xdb\x3b\x1b\x7b\x45\x21\xf2\xa0\xe5\xe2\x0b\xd7\xd8\x21\x28\xc8\x73\x4d\xd1\x63\x6c\x2c\xa1\x23\x9e\xbe\xc1\x28\xae\xcf\x74\x9f\xe7\x2e\x79\xd6\x5e\x12\xa7\x7e\xe5\x5e\x3a\x22\xc9\x68\xa6\x77\x6d\xb4\x4c\x66\xae\x24\x22\x0d\xb7\xa8\x57\x0d\xe6\x90\xf4\x85\x28\xd8\x7b\x6e\xaa\xc2\x76\x57\x81\x45\xf6\x0b\xc9\x48\xa9\x7b\x6e\x55\x44\x1a\x74\x31\x92\x1b\xa2\xf0\x85\xaa\x88\xee\xd2\xda\x97\xc9\x5c\x07\xf2\x47\x48\x5d\x75\xf5\x99\x66\x5b\x13\x51\x45\x46\x0a\xa8\x57\x20\x53\x57\x9f\xb5\x0b\xe6\x4d\xd8\x6c\xaa\xb5\xd5\x60\x79\x9e\x5c\x52\x9d\xff\x79\x84\xf4\x77\xd4\x9e\x09\x91\x87\x31\x09\x91\x0b\x12\x50\x48\x22\xd8\x97\xee\x0a\xd9\x88\x8d\x93\x09\x19\x27\xc0\xff\x72\x95\xbf\xcc\xe9\x16\x3b\x2f\xf5\x04\xd1\x58\x6a\xad\x10\x15\xc0\x44\x91\x91\xfd\x2d\x32\x72\xe4\x89\xd5\x2d\x61\x89\x25\x29\x1f\x74\xc9\xa0\x0b\x83\x3e\x19\xf4\x4b\xf1\xae\xf7\x5b\x25\x2e\x05\xa7\x3b\x9e\x88\xb8\x2c\x73\x79\x8a\x90\xcb\x06\xd5\xf8\xbf\xb5\x4b\xf5\x90\xbf\xb7\x42\x85\x53\x18\x0f\x60\xea\x86\x60\x11\xb6\xb3\x28\x75\xbf\xd4\x62\xd2\xe1\x9a\xcf\xce\x71\xbf\xd3\x17\x75\x0e\x1c\x68\xca\x9e\xf2\xde\x99\x31\x6a\x1b\xda\x68\xa4\x7a\x83\x1a\x37\xea\x36\xe9\xa6\xec\x79\x6a\xf6\xfc\x90\xcf\xba\x4c\x99\xa3\x71\x33\x0f\xed\xd5\x13\x8d\x74\x2b\xc7\x27\xa1\x41\x99\x91\x18\x22\x9a\xb4\x3c\x71\x60\xb2\xcf\xee\x85\x6f\x9c\x0e\x52\x45\x11\xc4\xa8\x6a\x3a\xc4\x10\x5d\xb8\xe2\xa1\xa4\x29\xe2\x95\xa8\x7b\x1e\xb5\x5a\x98\xeb\x11\x42\xd5\xb3\xed\x6c\x1c\x4d\xcc\x10\xe2\x88\xb7\x47\x5e\xb7\xbc\x9d\x89\x29\x2c\x3f\x1a\x41\x5f\x92\xd7\x92\x7e\xfc\x1e\x99\xd6\x3b\x20\xd3\xae\x82\x75\x55\xa0\x3d\xe0\xda\xff\x7b\x64\x86\xdf\x2a\xcd\x72\x01\xa0\x04\xb4\xde\x4b\x06\x53\x1c\x84\x31\x54\xa4\xf6\x6b\x48\x3a\x55\xb8\xf1\x30\x6c\x42\xb2\x57\x84\x84\x78\x5e\xeb\xeb\x7f\x28\x86\x29\x62\x0f\x75\x48\x09\x3b\x12\x03\x46\x3a\xc6\x29\x44\x49\x65\x74\x98\x09\xc3\x50\x30\xcd\x4c\x33\x4d\xc9\x1c\x77\x60\x38\xea\xf2\xc2\x1f\x9f\xd9\xf6\x81\x69\x35\x03\x40\x2b\xd3\xfb\x95\x98\x89\x83\x42\x6f\x65\xde\xc5\x41\x51\x75\xea\xdb\xa4\xd3\x2e\xa7\xbe\x2e\x01\xfd\xbf\xa5\x23\x75\x7d\xf8\xb7\x34\xdf\xfb\x4a\xf3\x9f\x2b\xed\xea\xe6\xf7\x15\x4c\x51\x47\x73\xd4\x76\x5f\x87\x64\x8b\xe4\x1d\xe3\x89\x3c\xea\x35\xfa\xb8\xb7\xbc\x43\xdb\xde\x28\x0a\x5e\x59\xb7\xd2\x7d\xab\x2e\x56\x23\x45\x46\x10\x83\xc8\x94\xa3\xc2\x1e\xc2\x39\xca\x68\x25\xcd\x4b\x06\x65\x96\x6b\x4d\x83\x36\xd5\x83\xc0\xf2\xb8\x38\xe4\x8c\x1d\x04\xf4\x58\x20\x10\xca\x60\x4a\x53\xb4\x6c\x85\x18\xe6\x86\x1b\xcb\x14\xc3\x82\xba\xe7\x8b\x8b\xe9\xf9\xa2\xd9\xc4\xf3\xf1\x62\x42\x8d\x0c\xe3\x62\x97\x68\xb3\x57\xd8\x5c\x60\x22\x8e\xcf\xc2\xe6\xa2\x08\xfe\x9b\xab\x59\xd0\x7e\x58\x8a\xd2\x49\x64\x89\x8a\x37\x94\xca\x3c\xe3\xf5\x7f\xb3\xb0\xe8\x63\x74\x68\x6d\xa5\xf1\x6a\x67\x65\x1d\x8a\xca\xf9\x1d\xd4\xaf\xff\x5c\x0c\x27\xdd\xd2\x02\x7e\x4f\x6b\x4c\xbd\x8e\x62\xa3\x22\x64\x7b\x43\xc7\x1e\xf8\xd0\x9e\x54\xa4\x59\x73\x01\x6d\xc4\x83\xa8\xc0\x54\xcd\xf3\x46\xdd\x7d\x85\x6a\x77\x80\xc5\x1e\x8a\x24\x32\xa4\x09\x85\x05\x1b\xeb\x18\xcb\xea\x6f\x50\x40\x10\x55\x59\x43\x6a\x06\x12\xe1\x6f\x87\xe8\xf5\x6b\xc4\x57\x19\xd0\x8f\x54\xab\x64\x55\xc2\x77\x4f\xbc\x70\x04\x6e\xd2\x90\x9f\xbf\x0d\x32\x66\xc1\x53\x14\x3f\xec\x7b\x75\x88\x03\x6a\xfe\x80\x30\x05\x7e\x0a\x57\x02\x8a\xbd\x90\xad\xc5\x57\x8e\x9b\xa6\x24\xc3\xea\x9a\x2b\x0b\xf1\x0a\x8d\xb8\xf1\x2c\x7e\x73\xfd\x5e\xee\x87\x06\xa5\x21\x2e\x9a\x64\xdc\x20\xa1\xe4\x06\x5d\xd2\xed\x1a\x6b\xe7\xb7\x72\xf8\x32\x3f\x4a\x95\x90\x1e\x4a\xab\xa9\x50\x6a\xf5\x28\x08\xe7\x0b\x27\x8b\xff\xd3\xf5\xfb\x77\x08\xe7\xb9\xd7\xa0\x74\xaf\x33\xfc\xa6\x8a\x44\x31\x3b\xb0\x5f\xb9\x90\x67\xcc\xde\xf2\x37\x6b\x0e\x84\x4b\x41\x2c\x2e\x73\x0d\x58\xd1\x66\x75\x2b\x9c\x3f\x34\x3a\x76\x9e\x17\x79\xf3\x13\x3c\xca\xcc\x61\x45\x58\xa5\x4e\x91\x82\x7a\xd5\x5b\x73\x77\x99\x1d\x43\x82\x51\x28\xaa\x1f\x92\x70\x15\x4a\x68\x33\x08\x77\x46\xe0\x44\x88\x72\x61\x9e\xcb\xac\xee\x21\x44\xc0\x50\xb7\x87\xb1\x09\xe8\xda\x23\xdd\x5e\x79\xec\xd3\x3f\x78\x32\x52\xad\x1a\x42\x1a\x95\x10\x0c\x31\x8d\xf4\xa2\x3c\xa9\x4c\x50\xd3\xb2\x1a\xd4\x7a\x13\xdd\x07\xcb\x70\x26\x8a\x2d\xdb\x96\x28\xf8\x28\x3a\x80\x9e\x2e\x45\x9c\xd8\x88\x0c\x3a\x29\x71\x91\xd9\x28\x34\x6e\x90\x6a\xd5\x72\x4c\x4b\x64\xfc\xc1\x91\xc3\x14\xc3\x54\xab\x1d\xd8\x2d\x78\xba\x0d\xa3\x19\x61\xa8\xd3\x93\x5a\x6b\xa7\x47\x3a\xbd\x72\x8d\x0f\x9e\xcb\x63\x35\xf8\xb2\xc0\x10\x29\xf1\x49\x17\x41\xfa\x46\x89\x7a\x22\x0d\xd0\xbe\xe7\xbc\xb0\x81\x9e\x06\x7c\xc6\xc4\x61\x0e\x0a\x20\xd6\xa7\x2d\x3b\xda\x43\x29\xe8\x35\x4c\x41\x2f\xcf\xc5\x09\x55\x99\x42\x55\x9e\x59\xe9\xdc\x8e\xf2\x33\x45\x4c\x49\x25\xb7\x8f\x00\x0a\x13\xc1\x81\x32\xb5\xd0\x39\xd7\x06\xaa\x2f\x1a\xfa\x40\x43\x2b\x03\x0d\xad\x0c\x68\x17\x66\xb5\xb2\xaa\x29\x55\xbd\xc1\x91\x13\x1d\x0d\x12\x5c\x83\xb0\x1f\xd3\xb3\x7f\xfe\x6b\xfa\xa2\x10\xa4\xd1\xf8\x9f\x4f\xd1\xe4\x05\x3e\x3b\x91\x59\x01\xf4\x02\xef\x0e\x04\x20\x70\xa8\x93\x05\x7c\x0d\xe2\xb8\x4c\x6d\x81\x2c\xab\x29\xe3\x66\x57\x2a\xfd\xe9\xd8\x9b\x28\xb0\xe8\xf2\x18\xd3\xda\x2a\x21\xb8\x9a\x28\x6d\xf0\x5c\x96\xd9\x29\x80\x9b\x86\x3b\x67\x3b\x1e\x46\xd6\xdb\x60\x6d\x41\x0d\x0b\xdb\xa7\x54\x6c\x47\x4b\xd4\x1a\x9f\x6b\x98\xec\x5c\xc3\xc0\xbb\xe3\x23\x68\x24\x7d\xb9\x63\xd9\x55\x94\x25\x8f\x4a\xfb\x06\xd1\x08\x0c\xa5\xd9\x8c\xeb\x80\xce\xfd\x6e\x68\x96\x11\x34\x19\x39\x33\x36\xdf\x79\x5d\xf2\x5b\x97\x28\x60\xab\x48\xc8\xdd\x9c\xd2\x0d\x89\xd7\x19\x42\x67\x48\x3a\x43\xe8\x7a\xa4\x2b\x8e\x3b\x07\xcf\x40\x52\x1c\x0a\x3e\x21\x53\x44\xff\x2d\xc9\x20\x50\x49\xb2\xa7\x71\xba\x30\x74\xaf\x06\x0a\x6c\xbb\xef\xb9\xd4\x8c\x7a\x0e\xd0\x3b\x41\x9b\x9d\xb7\x2f\xff\xf1\xe6\x87\x97\xdf\xff\xf9\x0a\x63\xdb\x0e\x44\x3e\x6c\x09\x1d\xc9\xdb\x9d\x2d\x2c\x78\x12\xf5\xd5\x88\x11\x12\x88\xea\xc2\x13\x7e\xaa\xec\x72\xd8\x19\xba\x3d\xbf\xd7\x75\x7a\x7e\xc7\xef\x7a\xdd\xde\xa8\x48\x77\xcd\x70\x53\x5c\x7f\xff\xce\x27\x21\x62\x2d\xaf\x19\xf3\x7f\xf1\x8b\x18\xb1\xa6\x87\x4d\x6e\x0d\x43\x9f\x0c\x25\x4d\x39\x2e\x19\x14\x29\xc1\xd3\x30\xaa\xf6\x36\xb4\x6d\xef\x2c\x44\x2e\xbe\x34\x3b\xc1\x1f\x23\x86\xd6\x99\x19\xa8\x5a\x8a\x23\x65\xb4\x99\x61\xdb\x76\x1b\x34\x1b\x65\x17\xee\xa8\xc5\x50\x2b\xc3\x65\xd6\xee\xac\x59\x8c\x35\xca\x5e\x64\xbc\xe5\x24\xdb\x91\x34\x8e\x25\xf2\x37\x5b\x9d\x05\xf5\xad\x16\xe6\x13\xa3\xd9\xfc\xb9\x3a\x11\xce\xcc\xe9\x5e\x34\x50\xe4\x15\x3f\x43\x5e\x8b\x61\x7c\xe6\xef\xb6\xec\x08\x76\x5b\xb1\xa2\xda\x85\xc4\xa5\x1a\x30\xbd\xad\x17\x21\x43\xf9\xf5\x17\x3a\xff\x3b\x32\xf3\xb3\x7b\x67\xed\xea\x9c\xaa\xc4\xea\x5e\x5d\x86\xfd\x1a\x69\x4f\x7f\x7b\xf9\x73\xad\xeb\x16\x62\x97\x97\x97\xd4\xc5\xa3\xb6\xd7\x32\x96\x74\xb9\xdc\x9a\x4e\x57\xb5\xec\xfb\xf7\xdf\xf9\x57\x98\xb4\xf7\x06\xe3\xab\x49\xbe\x74\x42\xfc\xdd\x36\x1d\xd8\x0b\x6a\x3c\x9a\x21\xaa\x1d\xfc\xe1\x71\x86\x2b\x07\xdf\x35\x2d\x26\x28\x6c\x14\x6d\x58\x79\xe5\x8a\x10\x3f\x95\xa4\xa9\x46\xd7\x25\x43\x71\xaa\x7e\x2c\x5b\xff\xfe\xe8\xca\x74\xfb\x84\xa1\xa1\x67\x5a\xa2\x87\x1e\x19\x0a\x0a\x54\x97\x05\xbf\x6e\x25\xdf\xa6\x3b\x15\x2f\x1e\xd7\xf1\x2e\x5d\x2c\x53\x87\x45\x10\x53\x17\x02\xea\x42\xba\x6f\xa9\xd9\x50\xf7\x3c\xb8\x48\xcf\xf1\xe6\x02\x25\x34\x34\x4c\x73\x41\xb3\x39\xc1\x78\x84\x62\x1a\xbf\x40\x11\xdd\x9c\x25\xf8\x45\xd4\xf4\x60\x43\x13\x4c\xe2\x26\x4d\x2e\xdd\x11\x8a\x68\x72\xb6\xc1\x2f\x22\x52\xc0\x96\x6f\xa8\x20\x66\x23\xef\xcc\x25\x9b\x17\xe5\xf6\x8d\x77\x35\x84\xba\x34\xfc\x35\xbd\x0d\x57\x9b\xe5\x31\xb3\x96\xb2\x02\x76\x1b\x34\x44\x1d\x7f\xd8\x19\xf6\xfa\xfe\xb0\x0b\x5d\x9c\xe7\x7e\x83\x86\xaa\x9f\xdb\x72\x3a\x79\x85\xb5\xf6\x80\x26\x83\x88\x36\x33\x08\x69\xaf\xdb\x6d\x77\xed\x04\x62\x75\x15\x15\x99\xbc\xf2\xf0\x45\xdc\x44\x48\x3d\x70\x79\x79\xe9\xf5\xf0\x8b\xb8\x19\xbe\x50\x45\x91\x2c\x92\x2e\x9d\x97\x6e\x65\x4f\x16\xb2\xf4\xf0\x19\xfe\x0c\xe5\xe4\x2e\xe3\x3b\xcf\xad\x23\x08\x06\xb1\x2f\xb6\x9e\xe7\x5e\xed\x0e\xf3\xf3\xd4\x3d\xe3\x63\x6b\x22\x18\x5d\x1d\x87\xa8\xcb\xec\x7d\xb4\xb2\x5a\x3f\x50\xa3\xe1\x67\x9a\x4b\xed\xb6\xfa\x38\xe9\xdc\xf9\x50\x1a\xde\x45\x44\xd0\xd2\x3a\x12\x78\x2c\xf9\xb2\x41\x09\x34\x63\x2f\x28\xd0\xd1\xf5\xe6\xb3\x96\xd7\x6f\xd0\x86\x5c\xe0\x61\xb4\x40\xb2\x08\x1b\x2b\xad\xc2\x00\x77\xfb\x2f\x08\xb7\x62\xe7\x02\xfd\xb1\xa5\x09\x19\x41\x92\x57\xb7\x62\xd4\xe2\x7f\xf1\x0b\x49\x68\xaf\xce\xfc\xfd\xf5\x64\xd0\xa2\x67\x64\x51\xac\xeb\x66\xd1\xdc\x3d\xc6\xa7\xf5\x4c\xd1\x4c\x81\xd4\xd9\x32\x24\x32\xb5\xcd\x49\x22\x2f\x5a\x1e\x41\x59\x2b\xc1\x67\x02\x3f\xbc\x19\x8b\xce\x6c\x6b\x88\xa6\x7f\x2c\x3f\xf1\xfe\xdc\x66\xc9\x26\x9a\xd6\xb3\x24\x77\x54\xf2\x22\x52\xa0\x7b\x4a\x70\x4e\x73\x35\xf9\x75\x29\x84\x8f\x86\xf3\xe9\xfc\x20\xda\x20\xd9\xef\x6a\x7b\x64\x5b\x1e\xbf\xf7\x3a\xf2\xf4\x5d\x85\xe8\x4d\xa9\xce\x0e\x23\x62\xfa\xa4\x0e\xb1\xa8\xa4\xe4\x9b\xd1\xc8\x91\x02\x20\xac\xe9\x0c\x56\x74\x66\x68\x16\xf7\xd4\x92\xf7\x2c\x4a\x63\x24\x80\x1f\xd1\x0a\x63\x78\xa4\x16\x7f\x99\x6b\x16\xbb\x89\x99\x4c\x7c\xe5\x62\xae\x52\xc4\xa0\xe1\xc9\xf4\x57\xa9\x36\x25\x1a\x80\x24\x05\xf2\x96\x4e\x3f\x21\x93\x42\xa1\x8c\x3e\x8e\x32\xd1\x4e\x84\xc9\x02\x65\xd0\xc6\xd8\xcc\x6f\xe0\x8a\x2a\x3b\x6d\x4a\x69\x9c\xe7\x9d\xae\x88\x9a\xe2\x9a\xdf\x60\x40\x45\x5e\x8a\xcc\x7c\xda\xc7\x38\xcf\x3d\x5f\x44\x0b\x68\xed\xee\x5d\xf0\xae\x08\xd1\xef\x0c\xe4\xfb\xe9\x43\x28\x92\xf7\x99\xef\x7a\x18\x3f\x4d\x83\x94\x9d\xf6\x7a\x44\xfc\x1d\x0e\x48\x44\x7d\x08\x69\x67\x78\x72\x9b\xb0\xe0\xf3\x89\x28\xee\x0f\xe5\x6d\xcf\xf3\x48\x44\x07\x10\xd2\x6e\x57\xdd\x9f\xb1\x79\xb0\x59\x66\x44\x7e\xb9\x99\x6d\x35\x2b\x0c\x44\x86\x71\x19\x34\xe4\x63\x95\x39\x73\xa3\xc6\xe4\x7c\x79\x31\x3d\x5f\x36\x9b\x58\x62\x08\x6c\xcc\x46\x2d\x31\xbe\xe8\x0c\xf2\x3c\xb8\x0c\x8d\xfe\xe8\x9d\xa0\x73\x30\xa2\x0d\x44\x78\xbb\x2d\x3e\x2b\xd4\xdd\x19\xb2\x4e\xdd\xd8\xb3\x70\x9e\xf3\x6b\xf7\x56\x5c\xce\x90\xd5\x74\xbf\x78\x16\xc6\x4f\xb3\x9a\x69\xdc\xe5\xd2\x17\x9e\xd0\x62\x92\x4a\xba\xab\x4a\x7c\xfe\xcc\xb6\xd1\xfd\x68\x63\x12\xaa\x95\xf4\x3c\x78\xaf\x8e\x76\x12\xbc\xc5\x44\xaf\xb2\x06\x8d\x51\x82\xf1\x28\x40\x32\x38\x59\x24\xa5\x83\x04\x66\x98\x08\x6c\x9a\xc2\x96\x7d\x2b\x80\x4a\x45\x3a\x6c\xb4\xc6\xc4\x2a\x74\x17\x78\xfb\xe6\x9d\xba\x7a\x17\xbc\x83\x77\x57\xdf\xbd\xfc\xf4\xe6\x87\xab\x9b\x37\xef\x5e\xbf\x79\xf7\xe6\xd3\x5f\xe0\xc3\xfb\xeb\x37\xd5\x92\xab\x0f\xd7\x6f\xbe\x7f\xff\x0e\xb4\xf4\x0f\x61\xfa\x26\xca\xd8\x1d\x4b\x40\xc0\xec\x42\x98\x5e\x07\x73\xa6\xcb\xf8\xa7\xae\x5f\xbe\xe6\x15\x7c\xba\xfa\xee\xea\xa3\xf8\x62\xa5\xc0\x48\xe0\x59\xe6\xc1\xd4\x75\x9a\x6e\xcc\xf0\x40\xdd\xf3\x1b\xbd\xf8\x1f\xce\x1f\xf8\x34\xa3\x35\xdc\xd2\x9b\xf1\xc3\x04\x8b\xb4\x3e\x33\xb8\xc5\xb6\x3d\xe7\x7f\x61\xca\xef\x61\x7c\x62\x6c\x51\xba\x82\x55\x25\x96\x69\x06\xa5\xed\x48\x8d\x2a\xcc\x70\x6d\x3c\xb5\xb4\x02\x41\x91\x04\x53\x59\xd8\x14\x02\xf4\xbe\x17\xba\x8c\x5a\xee\x92\x7e\x77\x27\x2e\xd9\x3f\x96\xf1\xdb\x20\x9d\xba\x3d\x4f\x6a\xc8\x49\xa1\x33\xf8\xd0\xea\x9a\xac\x5d\x54\xfa\x55\x41\x4c\xba\xb3\xea\x79\xdb\xfb\x8a\xbe\x51\x43\xa5\xb5\x3d\xb2\x84\x4a\xb7\xed\xb0\x4a\xa0\x0b\x1f\x55\xbf\x2e\x0b\xf6\xb1\xde\x15\x73\x4d\x18\x1a\xb8\x26\xef\x1f\xb8\x64\x20\xab\x7c\x9e\xf4\x63\x54\xc9\x55\xeb\x1a\x9e\xcd\x1a\x94\xed\x72\x95\x67\x98\xb8\x07\x25\xc3\x35\xc4\x76\xe3\x73\xc6\x8a\x3f\xa0\xf4\x09\x40\x10\x86\x2f\xe8\x2e\x6c\xf3\xb6\xb6\xc3\xcf\x13\x9c\x8a\x16\xec\xee\x32\xb2\xf7\x95\x6a\x9f\x9f\xa7\x4e\x96\xd5\xef\xec\x59\xd2\xfa\x4a\xfd\xcf\x10\x62\x3c\xcf\xaf\xa8\x6d\xca\xac\x52\x52\x83\x86\x38\x2d\x28\xda\x50\xde\x50\x4a\x9c\xe7\xf9\xc4\xf3\xca\xc3\x26\xff\x58\x12\xe7\xf2\xab\xed\x83\x5f\x7d\x13\xd5\x7e\xf3\x4d\x54\x7e\xb1\x4d\x3c\xaf\x6d\x7c\xf1\xb7\x1e\x91\x0a\xf7\x10\x91\x5f\xb9\x48\xe2\x21\x3c\x02\x3d\xc7\xc9\xe2\xd7\xe1\x17\x36\x83\x8d\x61\x6d\x82\x25\x1d\xbb\x50\xfc\x3f\x81\xa9\x96\x30\xf4\xe3\x44\x24\x9b\x4c\x12\x36\xcd\x4e\xc3\xe8\x3e\x9e\x06\xbc\x2d\x0d\x0b\xe6\x07\x01\x66\x5b\x1e\x44\x34\x3b\x6f\x36\x93\x8b\xde\x39\x8e\x9a\x94\xbd\x58\x8e\x93\x09\xf0\x7f\x68\xf4\x77\x1e\xeb\x43\x44\x37\x28\x3a\xf3\x58\x1f\x6f\xe1\x50\x36\x86\x1e\x24\xd4\x3d\x6f\xb5\xb2\x4b\xea\x9e\xe3\xa4\x49\x97\xe3\x8c\x57\x92\x4d\xe8\x06\x25\x67\x42\xd4\x4c\xfe\x8e\xbd\xf0\x58\xbf\x92\x3e\xc1\xf4\x3a\xe8\x41\x46\x2d\xeb\xbc\xd5\x62\xa2\x12\x2e\xef\x58\x0d\x4a\x33\x15\xd6\x2f\x93\x4d\x2e\xc7\x6c\xa2\x95\x3b\x75\xe2\x21\x8a\x4e\xf8\xbb\xfa\x64\xb7\xa9\x92\x3d\x5a\xae\x05\xfd\x96\xf6\x34\xc0\xcd\x44\x67\xe5\xcb\xb6\xb0\x3e\x00\xb7\x56\x9e\x0f\xff\x9d\x4f\xa9\x37\x5a\xf3\xdb\x2d\x0f\x92\x17\x0c\x93\x35\x62\x2f\x18\x64\x67\x3e\x24\x78\x6b\x9e\x73\x09\x47\x1e\x64\xb9\x8e\xeb\xba\xbc\xd1\x03\xd6\xea\xea\x59\x41\x6d\x9c\xe7\x96\xc7\x8b\x9d\x61\x51\xe8\x8a\x42\xc7\xef\xf2\x72\xfe\xb7\x7c\xde\x17\xb7\xdc\xea\x7f\x9e\x3f\xe0\x4f\x22\xf7\xcb\x8c\xb9\xb7\xbd\xdb\x76\xd0\xef\x75\x5c\x77\xe0\x62\xa3\x4a\x79\x84\xb9\xa3\xdd\xa4\x06\x58\x9a\xb9\x9e\xf5\xa2\xa9\xf3\x12\x8d\x20\x85\x8d\x3a\x3c\x87\x29\x97\xab\x44\x46\xc7\x15\xb5\x2c\x2e\xd8\xba\x02\x8b\x7d\x79\xe1\xe6\xf9\xf2\xd2\xaf\x49\x90\x33\x15\xc2\xe5\xa6\x41\xb5\x13\x92\xf5\x2e\x78\x27\x5e\xda\x5c\xd0\x96\xc7\x7c\x4f\xa4\xeb\xe2\x17\x5a\xfa\x52\xb3\xb9\x91\x6f\x0a\xef\xa1\x15\xb5\x5a\x16\x6c\x68\x6b\x83\x61\x73\xe9\xb1\x96\xef\xf1\x65\x91\x70\xe1\xb6\x7e\x1d\xba\x90\x50\x76\x9e\x5c\xd2\x8e\x3b\xec\x9d\xe3\xac\x49\x3d\x1f\x92\x33\xf1\x53\x9e\x3d\x24\x97\xd4\x97\x37\x78\xb9\x5f\xa8\x3e\x5b\xb4\x79\xb1\x46\x3e\xf4\x86\xe0\x61\xdc\xea\x0d\xf1\x85\x3b\x92\x45\xad\x0c\x3c\x4c\x36\x67\xfc\x3a\x13\x50\x89\x2f\x68\xa7\xeb\xb6\xbb\xc3\x61\xcf\xef\xb7\xfb\x6e\x67\xd8\x03\x94\xd1\xae\xdf\xca\xf0\xa5\x2b\xdb\x33\x47\x2e\x24\x18\x22\xba\x3c\x8f\x2e\x69\xff\x1c\xcf\x11\xdf\x4c\x2e\x86\xa8\x45\xfb\x27\xf2\x91\x35\xf2\x5c\x88\x64\x6e\x09\xbe\x0f\x5b\x1e\x7f\xd8\x6f\x9f\xe3\x05\xf2\x2e\x2e\xfc\xb6\x78\xda\x6f\x9f\x88\x9f\x11\x86\x39\xf2\xf8\xd3\x0b\x2e\xeb\xde\xd3\x19\x52\xc1\xc9\xea\x63\x73\x01\xa1\x90\xf1\xca\xc4\x4d\x73\x1f\x2c\x0b\x2d\xef\x9e\x2e\x2f\xdd\xd1\xaa\x89\x50\x4a\xef\xf5\xde\xb8\xa0\xcb\x91\xe5\x3a\x56\xe5\x95\x56\x8a\x9b\xf7\xe4\xbe\x48\xd7\x94\xb6\x96\xb8\x69\x39\x56\x53\x17\xf1\x02\x4c\x56\xcd\x7b\xed\xb5\xa0\xb2\x37\x29\x7f\xad\x76\x87\xb4\x3b\x3b\xa7\x8e\x7e\x5d\x0a\xf7\xa3\x64\x52\xe7\x15\x93\x54\x52\x10\xc7\x0f\x09\x9b\x86\x69\x18\x57\x1c\x05\xc3\x7d\x95\x5e\xee\x3a\xd5\x25\x0f\x4c\x3f\x80\xca\xd3\xc1\xc1\x2d\x52\x7c\xa9\x46\x8b\x56\xdb\x43\x3d\xfe\x1f\xcc\x87\x0f\x10\x62\xbc\x97\x08\x90\x8d\xd4\xb7\x33\x4c\xf4\x15\x68\x59\xaa\x7e\xfc\x9e\xe3\x2b\xcb\x47\xc4\x40\x5b\x0c\x52\x6d\x4e\xe9\x57\xcc\x29\x7d\x32\xec\x8b\x3a\x9f\x27\xa5\x15\xf5\x4d\x13\x16\x64\x8c\x08\xa5\xd6\xac\x8f\x4b\xb6\xa2\xbe\xe7\x88\x68\xda\xf7\xa4\x3b\xc0\x46\xd5\x15\xf0\xc7\x90\xa5\x84\x6b\xe1\x4a\x10\xf4\x5c\x97\x78\xae\x6b\x62\x03\x89\xaf\x3d\xc7\x82\xf5\x8c\xaf\x3d\x12\xa5\xe6\x1b\x27\x71\xaa\x63\x5a\x58\x3f\x96\x7b\x5d\x9f\xca\x0e\x3b\xd8\x89\xa3\xd7\x09\x63\x3f\xb3\x13\xde\xfa\x21\x46\xd6\x5c\xfc\x3c\x7e\x08\x67\xe4\xba\xb2\x6d\xfe\x73\xc4\x64\xde\x43\x7d\x3e\xe2\xb9\x43\xe2\xb9\x43\x7d\xf4\xd9\x21\x43\xb9\x22\x8e\x9d\xe3\x77\x5c\x7d\x56\xec\x61\x67\x5e\xb4\xe7\x10\xfe\x66\x4d\xa2\xf1\xfa\x1c\xb6\x2a\xef\x48\xa6\xfd\x5a\x0a\x05\x49\x36\x51\xb9\x6a\x8a\xe6\xd5\xc8\x7f\xf5\xcd\x78\x17\xac\x58\x5a\xd7\x02\xfe\xb8\xaf\x27\xc6\x73\x7d\xe2\xb9\xbe\xfe\x14\xff\x44\x5d\xb2\xec\x72\x04\xfc\xf2\xb4\xdc\xec\xbf\x91\x45\xf8\x78\xaf\x77\xfa\x8c\x77\xce\xa3\x8b\x1e\x0b\x67\x0b\xd1\x9c\x23\x47\x08\x03\xaf\x6c\x44\x98\x5e\x7d\xc9\x58\x94\x86\xb7\xcb\xe7\x2e\x8d\x86\x4a\xaa\x8c\x1a\x2c\xcf\x19\x5f\x1c\x35\x4b\x43\xb4\xe1\x78\xf2\x66\xa3\x0d\xaf\x93\xf8\x67\x16\x3d\xf7\xfb\xfc\x3a\xcf\x45\xfa\x50\x91\xe7\xe0\xc0\xd7\x8f\x10\xa9\xea\xd7\xaf\x59\xb0\x64\xb3\x7f\xe7\xaf\xff\x46\x72\x16\x0a\x2a\xe3\xab\x13\x1c\xcf\xf7\x88\xe7\x97\xde\xc5\xfe\xd1\x64\xbe\xe5\xea\xea\x97\xdd\x12\x3e\xf4\xbf\x6b\x4d\xf5\x89\xe7\xf6\x6b\xd7\xd4\x11\x22\x77\x94\xf2\xac\x13\x76\xcf\xa2\x4c\xad\x34\x91\x7c\xf7\xbf\x07\x11\x3a\x96\x4e\xf7\x68\xfb\x52\x16\x2c\xff\x3b\x35\xe9\x79\x8a\x6d\xb1\x0c\xaa\x99\xc5\xc5\x92\xf0\x45\x42\x13\xb5\x2c\x7c\xe2\xf9\x86\x86\x59\x97\xf7\xb6\xde\x37\x43\xc4\xe2\x3e\x6d\x4f\xc2\x71\x6d\x7a\xea\x09\xb5\x7e\xb6\x20\x94\xce\x4c\xe3\x58\x34\xe7\xf4\xe7\x49\xe9\xca\xb4\x9f\x9d\xbc\xd6\xb3\x49\xc9\x3c\xba\x06\xab\x29\xfd\x72\x70\xd3\x9a\x58\x5b\xed\x28\xa1\x0d\x57\x66\x70\x2e\xef\xcd\xb1\x3c\xb4\x7b\x5a\xfa\x77\x52\xe2\xda\x51\xcf\x9f\xa1\x95\x3f\x27\x8f\x6c\xa1\x95\x9b\x5f\xd1\xea\xf8\x57\xb5\xf0\xba\x24\xaa\xfb\xb3\x52\xa4\x33\x91\x61\xee\x1b\x75\x4e\x60\x26\x88\xea\x28\x30\x3f\xde\xac\x85\x5a\xc4\x33\xe5\x94\xba\x56\x60\x7f\x2b\x7e\x7f\xa0\x92\x43\xf9\x7d\x9d\x1c\xaa\x27\x53\xc6\xdf\xf1\x25\xdf\xc5\x48\x66\x88\x1a\xf6\x64\x86\x28\xcf\xeb\xc8\x14\x51\x5e\x67\xa0\x72\x44\x79\x5d\x0c\x5f\xe8\xc6\xc8\xb6\x74\x4d\x37\x45\x06\xc7\xf7\xf4\xda\xb6\xaf\x75\x76\xec\x14\x5e\xd2\xf7\xb6\xfd\xde\xb9\x1f\xe4\xb9\x65\xc1\x67\xba\x71\x3e\x24\xf1\x2a\x4c\x19\x7c\xa2\x46\xfa\xc1\x29\xba\xc6\xf0\xaa\x02\x0c\x09\x6f\x69\x48\x6f\x9d\x39\x7c\xa4\x8d\xc6\x8e\xb3\x92\x14\x69\x3f\x3b\x09\x4b\xe3\xe5\x3d\x43\x02\x11\x1e\x65\x15\xfb\xe8\xd3\x16\x8f\xf7\x92\x61\x4f\x2a\xaa\x18\x43\xaf\xe0\x15\xde\x6a\x50\x9c\x4f\x79\x5e\x13\x31\xa0\xda\xfb\x91\xf1\x75\x1a\xc6\x91\xc8\x10\x88\x6d\x3b\x73\xb2\x05\x8b\xd0\x2b\x33\x62\x21\x11\xae\x24\xf4\x65\x11\xc1\x66\xf5\x9c\x9e\x85\x6d\xbb\xe5\xfd\xff\xcc\xbd\xfb\x76\xdb\x46\xd2\x2f\xfa\xbf\x9e\x42\xc4\x64\x23\xdd\x66\x0b\x22\x24\x59\xb1\x21\xb5\xb0\x1d\x5f\x12\xcf\xd8\x71\xc6\xf2\x24\x33\x1f\x84\x68\x43\x64\x53\x44\x0c\x02\x0c\xd0\xd4\x25\x02\xe6\xcd\xce\x3a\x8f\x74\x5e\xe1\xac\xae\xbe\xa0\x01\x82\xbe\x7c\x7b\xce\x65\xad\xc4\x22\x6e\x7d\xad\xae\xaa\xae\xae\xfa\x15\xa5\xf4\xb6\xbd\xfd\x7c\x51\x16\x4b\xb6\x7f\x7c\xec\xe8\x54\xfc\x39\x7e\x68\x1a\x84\xc9\xcf\x9b\xe6\x78\xed\x5b\x86\x46\x0b\xc0\x5b\xd8\xf4\x76\x43\x9c\x32\x68\x0e\x16\x0d\x6b\xc8\xef\x03\x58\x0d\xcc\xbb\xcc\xf1\x83\xf8\x97\x8e\x64\x2c\x4d\x49\x99\x77\x39\xdd\xb9\x46\x03\x16\x0e\x40\xab\xbe\x21\x29\xf5\xa9\xf8\x55\xa9\x23\x7c\x9b\xcd\xc9\x03\x1c\x49\x99\x69\xc8\xbd\xe2\x63\xc0\xbd\x79\x92\x66\x70\xca\xa1\xa6\x86\x64\xf0\x5b\x8c\x1d\x99\x52\xee\xcd\x8a\x65\x92\xe6\x3b\x62\x12\xab\x10\xa5\x75\x8d\x0e\xa0\x82\x85\xeb\xbe\x16\x2a\x9a\xf8\x49\x7d\x4c\x46\x62\xbf\x51\x85\x25\xcd\x03\x34\x75\xdd\xa9\xc7\x72\xce\x4a\x24\xe6\xb9\x42\x39\x26\x53\xd7\x45\x53\x8f\xdd\xa5\x1c\x61\x88\x98\x86\xa4\xb8\x94\x02\xe3\x11\xf3\x15\x66\xe8\x0e\x39\x6a\xf2\xf6\xa6\x8b\x24\xcd\x77\xa7\xf7\xd3\x8c\x39\x18\x07\xa8\xa0\x3f\xc3\xf9\x83\xf2\xac\x2c\xc9\x9a\x64\x38\x58\x8b\x7b\x41\x86\x72\x3d\x29\x73\xfc\x30\x75\xdd\x51\x02\x0d\x90\x75\x65\x68\x8e\x9b\xe6\x44\xdb\x69\xce\x8a\x13\x9c\xa0\x12\x32\x06\xe0\x1d\x31\x9e\x34\x8a\x89\x1c\x65\x9f\x70\xd7\x1d\xc9\xce\xbd\xd0\xe0\x10\x2f\x3a\xf3\x7b\x2f\xeb\x5f\xf7\x7d\x3e\x15\x4e\x9c\x9c\x84\x82\xfe\xa4\xf3\xfc\xba\x2e\xe2\xf4\xd2\x9e\xb0\x0f\xe1\xb9\xc7\x96\x29\x47\xce\x3a\x5f\x24\xf9\x2c\x63\x33\x43\xaa\x0e\x49\x09\xc3\x01\x2a\xe9\xda\x2b\x72\xf3\xbc\xd4\xcf\x71\x58\xa2\x07\x35\x5e\x01\x23\x25\x4b\xaa\x22\x17\xbc\x2a\x40\x39\x5d\xc3\x6a\x2a\x32\x86\x5d\x37\xf7\x98\x58\xe9\xe6\x07\x72\xfe\xa1\x0b\xdb\x55\xdf\xef\x96\x56\xad\x10\xdf\x2f\x66\xf2\x43\x5d\x8b\xb6\x87\x07\x81\x0f\x77\x12\x1d\x0b\x58\x88\x05\xc4\x94\x2d\x86\x7b\x37\x82\x3f\xfe\x34\x84\x43\xe1\x8f\x34\x7d\x08\x8a\x40\xa2\x0c\x40\x1c\x99\xea\xd4\x1e\x0d\x79\xfd\x65\x43\xba\xd3\x0e\x95\x69\xeb\x8f\xb2\x13\x0e\x0c\x13\x87\x61\x32\xcf\x54\x07\xc5\x8a\x1a\x18\x25\x31\x33\x0d\xe8\x60\x6f\x06\x0e\xd0\xe0\x9c\x8c\x7b\x97\xb3\xba\x46\xe2\x0f\x1d\x4d\x08\xe2\x94\x7b\x97\xb7\x75\xcd\xb1\x77\x79\x43\x19\xe1\xde\x65\x45\x0f\xc4\x9f\x44\xbe\x96\x88\x17\xa6\x1a\xfd\x17\x93\xdf\x55\x12\x85\x86\xbc\x1a\x4a\x74\x45\x75\x36\xdb\x51\xe9\x5d\xce\xf0\x43\xa9\x2a\x2a\x69\x09\xf5\x94\xb0\xcc\xc0\x06\x45\x29\x6b\xa1\xd2\xd4\xa2\x68\x33\x42\xab\xb5\x3a\xdb\x4d\x79\xc5\xb2\xb9\x83\x4f\x10\xa7\x3f\x0b\x4d\x2f\xbc\xee\x27\x17\xcf\xe9\xc3\xe5\x6d\x50\x92\xcb\x59\x30\xf2\x1b\xa8\x81\xab\xd8\x2d\x92\xa1\x57\xd2\x40\x94\xa1\x37\xf0\x43\xaf\xa3\x14\x3f\xbc\x51\xc8\x72\x82\x38\x04\x81\x95\x72\x0c\x4a\x31\x06\x3e\xf9\x1d\x95\x90\x60\xb5\x65\x86\xea\x7d\xbb\x32\x38\xdd\x6c\x76\xde\xd7\x35\xfa\xd8\x19\x8f\x95\xb4\x6d\x7c\x24\xba\x6b\x0e\x71\x2e\x17\x0e\x26\x33\xc1\x52\x72\xdb\x7b\x5a\xb4\x97\x21\xd1\x50\x09\xb5\x25\xdb\xaa\x7e\xeb\xea\xb9\xa9\x5e\xa5\xc1\x6a\x1a\xd2\xcb\x22\x2b\x43\x5b\x61\xb1\xcb\x9f\x86\xb2\xe5\x65\x65\xe2\x69\x67\xc0\x08\xe0\xe7\x4d\xf7\x9d\x85\x79\x27\x07\x7c\x03\xeb\xb0\x4f\xe2\xf5\xa2\x8f\x96\x1a\xf5\x20\xf8\xfb\xa0\xdf\xd0\x5b\x74\xa3\x06\x00\x5b\x11\x6b\xc5\x47\x3a\xe0\x16\x2d\x36\x62\xa4\x04\x36\x3d\x18\x50\xef\xba\x9c\x94\x8a\x4b\x53\xb1\x60\xe4\xcf\xa0\xd3\xf0\xa9\xcc\x66\x56\xea\xe0\xe1\xc4\x75\xd5\x8f\xde\x83\xca\x75\x7f\x97\x4d\x1b\x09\x11\xad\x79\x73\x43\x60\x9c\x07\x73\x28\x89\xef\x40\xb0\xaa\x1a\xc1\xbc\x44\x8a\xcd\x5c\xce\x39\xbb\xdd\xcd\x77\xb4\x4b\xb6\x28\x56\x61\xfd\x69\xd1\x43\xc5\x2c\x43\x2e\x5c\x75\x57\xac\x6b\x2a\xa6\x5b\xdc\x6c\xc8\x95\x37\xa7\x6f\x07\x33\x95\x52\x4a\x3f\x4a\xf4\xdd\x04\x40\xcf\x0b\xc4\x70\x90\x4a\xd0\x82\x39\x9a\x7b\x3f\x8c\xe7\xde\xaf\xe3\xb9\xf7\xea\xd1\xe8\x3d\x79\x50\x34\x17\x7c\x04\x00\x09\xff\xe0\x08\x23\x8b\x12\xe5\xbd\x43\x8c\xac\x3b\x89\x82\xb1\xd1\xaa\x90\x28\xf3\x5c\x97\xd7\xd2\xf0\x83\x6c\xf2\x80\x31\xef\x6d\x27\x16\x00\x4d\x88\x96\xb1\x18\xcc\x1c\x66\x9c\x55\x7b\x65\xd9\xa8\xaa\xeb\xd1\x7b\xdc\xad\x00\x46\x6a\x68\x22\x5e\xa2\x4a\xce\x2a\x8c\xc2\xc7\x40\x06\x50\xe1\x6e\x91\x23\xf4\x5e\xe8\xfd\x7d\xa0\x87\x8f\x9e\x8c\xe5\xf4\xe4\x72\x7a\x2e\x0d\x95\x6d\xb5\x49\x2f\x1f\x5a\xcb\x33\x89\xa0\x66\x2e\xb3\x17\x69\x0d\x22\x85\xdf\xa0\x41\x14\x5d\xd9\x27\xc9\x3f\x8a\x95\x72\xe2\xef\x2c\xc1\xfd\x84\xf4\xcb\xae\x68\x31\x1e\x93\x35\x1d\xf9\x3b\xa5\xa4\x50\x65\x5c\x25\xc9\x78\x4c\x8c\xae\x22\x5a\x0c\xa4\x67\x7f\xbf\xae\x6b\xb4\x06\xae\x1a\x55\x31\x65\x64\x6f\x2f\xa9\xeb\x1c\x40\xff\xa5\x9c\x33\x37\x1a\xb3\xf8\x0a\x0f\x4e\x99\x0b\xef\xa6\x43\xf4\x65\xd2\x8b\x7a\xdc\xd6\x6f\xe8\x6b\xda\xed\xeb\x40\xd7\x36\x1b\xde\x0e\x5a\x2e\x44\x93\x69\x50\xea\xc1\x66\x34\xed\x36\x48\xed\x49\x8e\x02\xdf\x3f\x22\xbe\xff\x38\xf0\xfd\xc7\x03\x60\xeb\x0a\xd8\xce\x80\xae\x1f\x07\xfe\xe1\x31\x20\x91\xf9\x47\xed\xde\x4c\xc6\x86\x29\x78\x3b\x0b\x44\xc9\xc6\x8f\x38\x7e\x12\x1c\x3f\xd1\x78\x58\x36\x10\xba\xc4\xc6\x7a\x1c\x3c\x7d\x4c\x9e\x1e\x07\x4f\x8f\x61\x6f\xf4\x05\x5e\x01\x3a\xe6\xee\x10\xdc\xa4\x90\x74\x13\x78\xcf\xe6\x19\x44\xdf\x3f\x34\x58\x06\x93\x93\xaa\x8d\xa6\x80\x1b\x5d\x2b\x6b\xef\x08\xaa\x13\x74\x27\x43\xa1\x54\x91\x82\x74\xc5\xe7\xc1\x70\xbb\x52\x99\x6d\xb2\x40\xa5\x19\xf8\x24\x4c\x50\x4e\x38\x59\x9b\x30\x3b\x79\xa5\x4c\xe6\x72\xcc\x9e\x04\x87\x03\xe0\xf1\x30\x06\x5f\x12\x12\xa0\x90\xdf\xc5\x58\x24\x6a\x2c\x2a\xb5\x05\xb4\x3d\xc5\x8e\x8e\xc5\x56\x71\x68\x8c\xcc\xae\x89\xcc\xe9\xfa\xf3\x11\xdb\xd3\xce\xf8\x10\xa1\xee\x6e\x44\x6d\x2f\xe8\xa8\x53\xd2\xb4\x3f\xa6\xf6\x49\xf6\xbc\xae\x17\x9d\x41\x36\x0d\xea\x89\x3b\x00\x82\x49\x90\x4a\xea\x52\x6e\xba\x29\x1d\x86\x2c\xb0\xa3\xfb\x0f\x62\x50\x9b\x17\xae\x3b\x9a\x63\x2b\xc9\x88\x18\x48\x48\xd0\x4c\x69\x69\xb9\x81\xa9\xe3\x25\xe9\xff\x35\x09\x2c\xc0\x63\x26\x9d\xbe\xfc\xce\x3d\x04\xe8\xa9\xf2\xc9\xc1\xe6\x13\xc2\x01\x1e\x15\x1e\x1f\x6e\x79\x4c\x38\xb4\x11\xde\x39\xfa\xd4\x3b\x84\x47\x87\xb1\x44\x2f\xce\x69\x94\xaf\xb3\x2c\x6e\x53\x09\x09\x96\xa6\x60\x13\x20\xbd\x49\xce\x6e\x51\xa6\x6e\x08\x56\x20\xbf\x5b\xd3\xd2\x52\x27\x66\x34\x45\x15\x5a\xe3\x70\x1d\xf4\x2d\x36\x98\xac\x7a\xeb\x45\x2b\x78\x33\xd2\xe2\x5c\x57\x68\x85\xc3\x55\x30\xdb\x24\x65\x2b\x52\xac\xe3\x57\xa4\x2c\x5e\xfa\xdc\xe5\xf0\x13\x96\xca\xa7\x4f\xbb\x30\x44\x87\x06\xea\xa4\x03\x32\xb4\xb1\x76\x15\x0d\x79\xdd\xa3\x12\x94\x7b\x73\xf4\xd0\x10\x5f\x87\x8f\xf9\x0d\x6e\x2f\x0e\xfa\x6b\xbc\x77\xce\xd2\x6f\x23\x50\x21\x87\xd0\x6a\x89\x3c\x59\x4a\xb5\xd2\x4c\xc7\x5c\xbd\x49\x46\x93\x56\xff\x6d\xe3\xc3\x54\xb4\xa3\xf4\xc1\xda\x5c\xfc\xe6\xf8\xe6\xf0\x0b\xdc\x7b\x94\xcf\xa7\x1a\x22\x6d\x24\xb4\xbb\x92\x31\x3e\xdc\x15\x2d\x3e\x53\x24\x3b\x84\x8d\x99\xa1\x84\x34\x6a\x76\xcc\x18\x76\x5d\x59\xd2\x2e\x8b\x78\xdc\x3d\x44\xb1\x7a\x00\xad\xfe\xda\xd8\xd7\xc3\x27\x1d\xf5\x8e\xb5\xf0\x34\x69\x07\x9e\x66\xc7\xde\xf5\x78\x97\x1f\x69\x14\xc3\xc1\x34\x57\x59\x95\xa5\x60\xe7\xb8\xd9\x61\xe8\xc9\x11\x46\x45\x6b\x2c\xed\xeb\x8e\x2d\x8a\xcd\xce\xac\x78\xd0\x81\x7d\x97\xe9\x99\x49\x5f\xac\x98\x85\xa2\x10\xa5\x8a\xce\x8a\x1c\x12\x62\x35\xb7\x8b\x34\x63\x68\x84\x10\xa3\x3c\x32\x28\x38\x00\x41\xae\xda\x6e\x14\x71\x55\x02\x53\x1f\xfb\x8d\x82\x31\xeb\xcc\x92\xca\xb7\x35\xe8\xc0\xb6\xab\x15\x50\xb5\xce\x2c\x7a\x79\x72\x14\x3c\x01\xdb\xf1\xe1\xa7\xce\xd4\x26\xfe\xc6\x52\x92\x2b\xc8\x6e\xc1\xd6\x0c\x77\x83\xc7\x69\x82\xc4\x8b\xa1\x03\xb5\x3e\x2d\x7c\x89\x33\x95\x0e\x0b\x1d\xa4\xdf\xee\xc9\xd7\xb0\x83\x5a\xb1\x79\xcc\xd5\x6b\xc7\xd1\xa7\x4e\xdc\x26\xfd\xf8\xd4\xef\xfc\x6e\x5a\x7e\x2d\x48\x45\x03\x65\x9a\xa2\x6e\x03\x3b\x21\x66\xba\xe8\x84\x64\x64\x3a\x24\xa0\x78\x60\x8b\x27\x13\xb4\x82\x38\xa6\x94\x4e\x43\x1e\x95\x71\x80\x12\x2a\x86\x58\x14\x86\xc3\x02\x25\x26\x73\x62\x98\x78\x36\x45\x82\xbb\xc0\x35\xe3\x21\xfc\x2b\x99\xf4\x54\xa7\xb6\x0a\x2a\x94\x51\x38\x79\x08\x19\xca\x48\x49\xcc\x93\xfe\x21\xe8\xc6\x98\x29\x0f\x50\x73\x44\x75\xf4\x65\x51\x46\xed\xa8\x2c\x92\x6a\x98\x72\xe4\x62\xed\xf9\x31\x1e\x7d\x36\xec\x48\x73\x09\x25\xa9\xec\xa3\xc8\xcd\xca\xed\xa7\xdb\x5c\x1a\xc9\xa8\xa8\xeb\xc1\x55\x05\x0d\xfa\x32\x84\xaf\xb6\xca\xe2\x36\xff\x1b\xbb\x87\x83\x39\x5f\x1f\xcc\xf9\x7e\xe0\xfb\xd6\xc1\xdc\xd1\x17\xe8\x72\x9d\x5e\x6e\x9c\x85\x6d\xd6\xbb\xf1\x4a\x37\x30\x1a\x90\xfd\x5b\xc9\x54\x48\x47\xce\x56\x2c\xf1\x0d\xb1\xd4\x1f\x88\xcf\x06\x64\xca\x73\xa7\x9d\x54\x6c\x2f\x7a\x8d\xab\xb6\xad\x5d\xb0\x48\x7b\xd3\x05\x9b\x7e\x84\x0b\xbb\x8d\x29\xe4\xe4\x17\x77\xdb\x66\x96\x9b\xd2\xb3\x7f\xbc\x35\x84\x91\xdd\xd7\x25\x60\xa5\x17\x7a\xa5\x27\x6a\xa5\x57\xaa\x2b\x32\x47\xd2\xb1\xd4\x95\xc5\x3c\x4c\xd5\xe9\x6f\x85\xaa\x8d\x7e\xf5\x96\x3c\xa9\x64\x6d\x73\xb2\x20\xb3\xcd\x45\x7f\xd4\x59\xf4\x87\x31\x59\xd1\xd4\x9b\xa3\x4c\x6c\xf8\xa4\x1e\x3a\x5a\x81\x8d\x7e\x8a\x16\x80\xa5\xd0\x86\xa4\xa3\x85\x28\x9d\xcc\xf0\xce\x8a\xae\xd1\x04\x43\x3e\x0f\xb4\x6a\x53\xa9\x82\x69\xdf\xa7\x94\xae\xac\xbc\xa8\xa3\x29\x9a\x75\xa3\xde\xe7\x50\xe3\x8c\xa8\x44\x8c\x73\xc1\x2f\xea\x7a\x2e\x06\xbb\xae\xe1\xfb\xb9\xf9\xbe\xfd\x70\x2e\xb9\x0d\xad\x48\x2e\xbf\x26\x73\xe5\xc3\xa5\xaf\xd7\x68\x42\x2a\x23\xec\x46\x93\xa6\xe3\x32\x34\x12\xcd\xaa\x18\x77\x5d\x04\x7f\x25\x87\x9a\x91\x0a\x5b\x08\x44\x3d\x36\xa4\x93\x7e\x6d\x61\x47\xad\x7a\xb4\x1d\x94\xdb\x0a\xa3\x51\x2c\x5d\xc6\xc3\x24\x6d\xbc\x0c\xf0\x75\x35\xeb\xc7\x30\xe9\xb9\xf7\x9e\x5d\xbf\xbc\x5b\x29\xdc\xf3\xcc\x52\x95\x17\x74\x3f\xd9\xbf\x26\x33\xf9\x67\x05\x96\xa7\x0c\x2d\xf0\x88\x52\xc8\x25\xa9\x02\xee\xd1\x68\x55\xd7\xdb\x10\x3b\x66\xe6\x2c\x0a\x02\xeb\x1d\x1c\xd3\x91\x4f\x64\x29\x8b\xba\xce\xd0\x0c\x53\x3a\xab\x6b\x67\x3f\xd9\x4f\x9d\x11\xcd\xd0\x82\x38\xa9\x83\x1b\x8c\xf1\x43\x46\x87\x14\x37\xa1\x6a\xd8\x21\x18\x19\xc9\x29\xc4\xe2\x16\x16\x76\x90\x9e\x99\xd2\x75\x73\xd7\x65\x9d\x13\x32\x4a\x33\xd7\x2d\x42\x16\xa4\x68\x05\x76\xae\x29\xca\x5d\x77\x54\x84\xcc\xab\x8a\x75\x39\x65\x10\xb8\x1e\x4c\x11\xca\x69\x07\x1c\x21\xc3\xf6\x2b\xb9\x28\x64\xad\xf1\xbb\x02\x41\xd4\x12\x61\x6b\x4e\x32\x2b\x92\x63\xd9\x3d\x7a\x13\x82\x20\x13\x3c\x38\x23\xec\xb3\x00\x05\x7a\xeb\x16\xb1\xb8\x17\x82\xcf\xf1\x83\xb8\x4b\xe5\xe1\xfa\x0d\x4d\xd0\x14\x93\x7b\x3a\x39\xd1\xce\x82\x67\xf7\x27\x78\x89\x6e\xa2\x7b\x38\xa0\x99\x77\x06\x20\x23\xd6\x34\xd3\xb9\x15\x50\x21\x69\xc1\x11\x1d\xd0\xe6\x3b\x75\x0b\x77\xc0\xff\xd5\xf9\xb4\xb6\x95\x68\x1c\x11\x2b\xa4\xe2\xf8\x38\x38\x3e\xd6\x81\x15\x10\x52\xf1\xe4\x20\x78\x62\x79\x69\x0d\x21\xba\x0f\x2a\xcc\xfe\xc1\x04\xef\x00\xb3\x42\x0f\x3c\x29\xc5\x10\x99\x76\x42\x2f\xc4\xc0\xcd\x8b\x72\xca\x66\x41\x3e\xa2\x74\xdf\xdb\xf7\xd8\x1d\x9b\x36\xe4\x41\xfc\x09\x72\xc5\x3a\x27\x81\x7f\x30\xb1\x58\xe7\xa0\xc7\x13\x50\xb4\x73\xed\x8c\x44\x31\xd7\xde\x3c\x4b\xae\x2b\xd7\xd5\x48\x1c\xb2\x5a\xfb\x8c\x1f\x5e\xd8\x82\x34\x01\x4b\xcc\x76\x53\x83\x21\x31\x03\x30\x04\xf3\x3e\x8c\x7f\xf9\x44\xc3\x46\x28\x46\x7e\x78\xac\x76\x85\xfe\x53\x18\x99\xc7\x66\x79\x11\x9f\x74\x8b\x14\x2c\x5a\x52\x51\x5b\x97\xc5\x30\x14\xf4\x11\x95\x90\xae\xa5\xca\x1d\x1a\x94\x11\x8f\x77\xfa\x2c\x2d\xd5\xb0\x2b\x25\xc9\x65\x16\x50\x39\x1c\xa8\xc4\x11\x8f\x91\x72\x0d\x16\xbb\xee\x0d\x43\x24\xa7\x15\xc0\xcc\xb5\x30\x5f\x00\xe3\xaa\xd9\x3d\x97\xfc\x76\x47\xee\xd6\xc1\x65\x2d\x33\x09\xbb\xf5\x27\xa3\xb5\x77\x9d\x15\x57\x49\xa6\xbf\x4a\xd0\x9a\x64\xd2\x24\x32\xa5\x6b\x6f\x9d\xa7\xd3\x62\xc6\x76\xd6\x2d\x4a\x23\x9d\x98\x55\x38\x27\x0b\x1a\xc5\x64\x46\x27\x27\x0a\x44\x08\xcd\xa9\x2c\x01\x9f\xc8\x46\xae\x74\x95\x73\x30\x6f\x2c\xa2\x59\x4c\x57\x04\x1c\xd6\x57\xae\x8b\xec\x72\xc5\xea\x4d\xed\x3b\x98\x4c\x31\x26\xb3\xf1\xb8\xb1\x1c\xd4\x67\xa1\xa8\x2a\x58\x34\xb1\xd2\x8c\x9e\x06\xbe\xdf\xa6\xc6\x38\x3c\x0e\x0e\x0d\xbf\x7f\x1c\x1c\x3f\x06\xa2\xf8\xd2\xf8\x84\x96\x28\x0c\x84\x92\xaf\x03\x14\x9e\x4a\xf1\x2e\xc8\x64\xad\xc8\x84\x64\x0a\x09\x32\xb9\x23\x53\x03\x0a\x49\xe6\x76\xe8\xc2\x82\xee\x5f\x7c\x83\xa2\x6f\xdc\xff\xf5\x6d\x5c\x5f\xcc\x2e\x66\x61\x7d\x1a\xfd\x76\x16\x3f\x3a\xc3\x52\x0c\xf4\x9e\xe2\xfd\x6b\x4d\x7d\x25\x5b\x65\xc9\x94\x39\xe4\xa0\x4f\x7f\xab\x4d\xfa\x6b\x13\xe0\x1a\x0a\x4c\x14\x05\xe6\x9a\x02\xf3\x21\x0a\x4c\xb4\x1f\x6e\x4e\x0a\x92\xe2\xa0\x94\x57\x6a\xda\x0a\x0c\xa9\x75\x1b\xb2\x29\x34\x52\xba\x32\xf4\x47\x54\x06\xa6\x0e\x05\xa6\x16\x05\xce\x25\x05\x2e\x3a\x14\xb8\x05\x87\x79\x07\x0e\x3a\xdb\xe4\xf2\x92\x1c\x6f\xe8\x5c\xd1\x2a\x80\x2a\xcb\x36\xdc\xd3\xb9\xa1\xd1\xb9\x4d\xa3\x26\x4c\xf2\x9a\x46\xf1\x89\x22\xc6\x2b\xba\x46\x73\x22\x51\x99\xe5\xd0\xd0\x2b\x2c\xc3\x2c\xd3\x39\xba\x96\x9b\xfe\x2b\x4c\x46\x37\xea\x2e\xd0\xa9\x6a\xc7\x95\x20\x60\xd7\x45\x76\x35\x15\x5a\x90\xc2\xbe\x83\xc9\x3d\xc6\xa6\xee\x4b\x72\x4b\x1d\x87\xbc\xa4\x13\x72\x47\x27\x27\x77\xa7\xd7\x3a\x3c\xf3\x6e\x3c\xc6\x0f\x57\xf4\x3a\xba\x8b\xcd\x6a\x3a\xef\xd4\x44\xde\xd1\x0c\x4d\x51\x82\xae\xa4\xa3\x07\x26\x06\xf9\x99\x4c\x30\x79\x26\x16\xde\x47\xea\x9f\x7c\x3c\xbd\xd2\x85\x7e\x1c\x8f\xf1\x33\xfb\x48\x82\x52\x8a\x2e\xe9\x55\xf4\x31\xc6\xe1\x65\xa0\x4a\xbf\x34\x99\x7e\xaf\xbc\xeb\xb2\x58\xaf\xe0\xd4\x77\x26\x47\xe8\x39\x8d\xce\x63\x93\x60\x98\xbc\x13\x83\x65\x28\xe5\x83\xeb\x3e\x97\xc5\x7f\x90\x45\xbc\x35\x73\xa4\xec\x83\xca\xb6\xf1\x1c\x2b\xcd\xee\x2d\x5d\xa2\x73\xb2\x20\xef\xc8\x33\xf2\x41\xd0\xc8\xbb\x33\xfa\xd2\x75\xd1\xed\x98\x2e\xd4\xc9\xf4\x4b\xf2\x0e\x8f\xdf\x92\x97\xf4\xdd\xf8\x5c\x77\x50\xaf\xf7\xdb\xb1\x79\x0b\x37\x71\x9b\x52\x73\x09\xcb\x20\x97\xee\x22\xb2\xe1\x6b\x9a\x8f\x35\x56\x30\xc9\x68\xa1\x7f\x4e\xe9\x6c\x93\xe2\x5d\x17\x25\x34\x45\x89\xd0\xcb\x17\x98\x28\x8a\xaf\xc8\xb4\xa5\xf2\x52\x2f\xa7\x6a\x47\x59\x74\xd3\x36\x6b\x87\x34\xea\x3a\xdf\x38\xca\xc8\xea\x7c\xe3\x80\xd5\xd5\x71\xf5\x1d\x65\xe3\x75\xfe\x97\xb9\xc1\x4d\x2c\x41\x2e\x4d\xb4\xce\xb7\x1b\xcf\xd6\xea\xc9\xa9\x13\x54\x34\x89\x52\x75\xdb\x27\x7b\x3e\x8e\x7b\xf1\xc0\x92\x43\x8f\xd3\x1d\x93\x0b\x52\x1f\xd6\x8a\x3b\xd3\xb3\x4c\x36\x7f\x41\xe7\x68\xba\xef\x4f\x8c\xa5\x55\xbc\xbb\x08\xcb\x60\x71\x4a\xb3\xd0\x90\x49\x11\x2d\xf6\xfc\x38\x34\x7d\xf4\x71\x20\x6f\x8d\xed\x5b\x65\x53\xd1\x22\x82\x54\x80\x7d\x6f\xfe\x2a\x74\x9c\xa0\x6a\xb4\x1e\xae\xb9\xf2\x96\x24\xba\xc3\x5c\xfa\x4b\xc3\x23\x0c\x97\x3e\xd0\x7b\x30\x4b\x64\x57\x2c\x29\x07\x65\x76\xf2\xff\x0f\x99\x9d\x7c\xa9\xcc\xae\x24\xc7\x5c\x77\x39\x66\x46\xab\x96\xdb\xec\xa4\x28\x23\x90\x0f\xbd\xb2\x79\x9f\x16\xdf\x05\xaa\xc8\xba\x3d\xb6\xb3\x5f\x22\x59\xff\xab\x4c\x43\xd0\xd3\x69\xb8\xe7\x07\x53\xc9\x75\xfa\x52\x56\x39\x08\xf7\x67\xee\x4b\xb1\xba\x9e\x74\x4c\x13\xca\x73\x30\x51\x52\xd5\x82\x48\x35\xe2\x55\x2a\xaa\xb0\x7d\x3e\x3e\xc2\x5a\xb2\x0a\x21\x2b\x34\x0f\x60\x46\x64\x46\x47\xd3\xae\xd9\x1e\x26\xc3\x82\x4f\x71\xee\xc5\xde\xc7\x50\xc8\x2a\x4b\xf9\x80\x50\x9d\x2a\x8d\xc5\x44\xc2\x53\x67\xea\x50\xea\x24\x57\x57\x53\x1d\x7f\xbd\x8f\xae\xf0\xa3\x7d\x1c\xf9\x71\x5d\x1f\x8d\xa8\xc3\x59\xc5\xdb\x67\x61\x80\xf7\xc5\x5a\x55\xcc\x07\x30\x5b\x9c\xe4\xca\x7e\x21\x81\xef\xcd\x0b\xa2\x0c\xaf\x7d\xee\x85\x58\xfc\x6f\xbd\x60\x3f\xc5\xa8\x7d\x72\xe6\xd7\xb5\x63\x1e\x79\xa1\x79\x10\x0e\x09\xea\xbe\xda\xd7\x06\xe1\x48\x4f\x28\xae\x08\x30\x8a\x77\x74\x26\x26\xc3\x4e\x14\x0c\x6d\x17\x15\x16\x38\x2f\x60\xd9\xc2\x31\xa0\x97\x5e\xe7\x45\xc9\x9e\x27\x15\x0b\x9d\xd4\x09\x1c\x07\x8f\x11\xf3\x96\xeb\x8c\xa7\x59\x9a\xb3\xd0\x59\x9a\x9b\x4a\x5c\x87\xce\xda\xdc\xaa\x78\x3a\xfd\x78\x1f\x3a\xf7\x70\x07\x12\x85\xcd\x6c\xc8\xda\x76\x2a\x03\x7e\x76\x76\x36\x51\xdb\x66\x35\xd1\x7a\xf7\x48\xa6\x63\xe7\xda\xc1\x27\xa8\xa0\x99\xce\xe3\x9e\x62\xec\xba\x23\x84\x12\xba\xb2\x84\xf4\xd9\x1c\x54\x4f\x10\x65\x9a\xc9\xce\x49\xa1\x04\x2d\x26\x85\x85\xf6\xad\xee\x9e\x6a\xec\x1d\xd7\xd5\xa7\x63\x6b\xa2\x73\xb6\xfa\x58\x50\x6f\x11\x4d\x62\x2d\x76\xe6\x34\x21\x1a\x8b\xe1\x8c\xce\x84\x3a\x6c\x35\x40\x30\x5c\x59\xac\xeb\x5a\xb7\x0d\xf6\xfd\xee\x9c\x52\x03\xf6\x13\x8e\x2a\xf1\x96\xa0\x34\xe4\x38\xb8\xae\x55\xc3\x1d\x07\x07\xfd\x3e\x60\xdc\xd6\x3a\x0b\xd7\x46\xe4\xcc\x70\xb0\x6e\x02\x67\xa2\x09\x46\xc9\xe9\xc9\x16\xa2\xd9\x08\xd5\x52\x54\x12\x46\xb1\x56\x0f\x0d\x50\x70\x13\x94\xc4\xe2\xa8\x6d\x1a\x5c\xcd\x53\x8b\x2f\xe2\xa9\x45\xeb\x3d\x99\x0a\xae\xba\xea\x68\xa1\x29\x86\x04\xbb\x43\x5a\x68\x4e\xa7\x68\x65\xb4\x50\xb2\x1a\x51\x2a\xcd\x60\x79\x87\xb3\xe6\x16\x67\x55\x21\x9d\x3d\x5d\x74\x09\x1b\x10\x49\x53\x98\xdc\xd0\x4c\x53\x2a\xb9\xa7\x28\x1b\xa4\xf0\x6c\x88\xc2\xb3\x4d\x0a\x9f\x49\xd2\xbe\x76\x30\xb9\x06\xca\x5d\xa2\x59\x98\x05\xce\x6f\x28\x0c\x9c\x71\xa6\xe8\x77\xec\x60\x87\xdc\x63\x72\xf5\x29\xd2\xd7\xe2\xfe\xaa\xb3\x62\x41\xa8\x77\x4f\x9b\x76\x15\x37\x5f\xa3\x6b\xb2\xc0\x61\xb4\x88\x83\xa8\xd5\x35\x2f\xe9\x84\xdc\xd2\x09\x79\x29\xb4\xe3\xdb\x53\xfd\xed\x09\x7e\xb8\xb6\xc8\x74\x16\xde\x06\xf2\xa8\xec\x8e\x9c\x43\x49\xb3\x70\x11\x68\x9d\xec\x16\xdb\x8a\xf4\x79\x5d\xa3\x3b\x3a\x47\x15\xb2\x4a\x10\x5d\x9f\x04\xb7\xd8\x52\x5e\x31\xa5\xf4\x12\xdf\xd2\x04\x2d\xc8\x2d\xb9\xc1\x26\x79\xf5\x4b\x49\xcb\xba\xf4\x4b\x22\x3e\x7b\xa9\xb1\xd2\xdb\x1e\xef\xbe\x34\xbd\x78\x47\xfd\x93\x77\xa7\x54\xeb\x8d\x7b\xfe\xc9\x3b\x09\x79\xa2\xca\x3a\x8f\xde\xc5\xdb\xca\xb8\xa5\x97\xf4\x4e\xe3\x9b\xec\xf6\x2b\x17\x55\x6f\xc8\x3e\x69\xeb\x30\xbe\x2b\x43\x3b\x4e\x69\xa5\x11\x72\x51\x5a\x66\x40\x3a\x7e\x2e\x25\x07\x43\x07\x47\x4f\xf1\x86\x7a\x73\x7c\x2c\x85\xe4\x63\x38\xae\xde\xf7\xf6\x5b\x58\xd8\xaa\xe3\x3b\xad\x2c\x4d\x9b\x76\x94\x36\x56\x02\x4e\x97\x9b\x9d\x2d\x06\x45\x67\x3f\xd9\xbf\x72\x46\x3a\x5c\xf4\x41\x59\xe3\x9c\xc4\x21\x60\x8a\x09\x9c\x2b\xa7\xc1\x0d\x0e\xab\xbe\xc3\x14\xa3\x79\xc7\x7b\xcc\xd9\x37\xe9\x08\x0d\x5b\x76\xf6\x1d\x6d\xd2\x49\xf3\x5d\x16\x32\x69\x00\x0a\x46\x85\xeb\x76\x2c\x81\xb2\x03\x5a\xb9\x62\xd8\x60\x6d\xe2\xa0\xed\x8a\x68\x65\x9e\x2c\x99\xeb\x56\x03\x96\xd1\xc4\x72\xcf\xb4\x41\x6b\xc1\x32\x75\x70\xf4\x54\xcd\xd3\x86\x4d\x0d\xe6\xe9\x4b\x33\x77\x7c\x1a\x71\xf4\x9c\xf1\xff\xc7\x10\x47\x93\xd9\x60\x76\xaa\x2e\x5c\xa8\x68\x00\x26\x8c\xb6\x80\xa1\x0c\x00\x43\xb7\xa3\x85\x1e\x0c\xa5\x5e\xeb\x91\xa8\x7f\x28\x3a\x97\xe4\xd3\x45\x27\x54\xf2\xd3\x41\x4b\xaa\x45\x89\xa3\xc1\x63\xcd\x19\xef\xa1\x1f\xf8\x87\xb2\xee\xcf\x9d\xf1\xeb\xba\xaf\xd2\xeb\xaf\x1b\x58\xf9\x85\x23\xfe\x1b\xa8\xf6\x73\x96\x52\x53\x6d\x96\xe6\x1f\xbf\xb6\x62\xf9\xcd\xb6\xaa\x3f\x17\x3e\x65\xaa\x2e\xb2\xcf\xc4\x07\x6e\xd6\xbc\xb5\xd6\xaf\xce\x34\xe6\x1f\x3c\x85\xdc\x4a\x1a\xcd\x59\xf3\x92\x07\x21\xdc\x7e\x2e\xd2\x9c\x3f\xfb\x64\xda\x08\x83\xfb\xfe\x34\xf0\x0f\xda\x9c\x84\x07\x5f\x9c\x3e\xac\x05\x34\xd7\xfb\xbc\xc3\x89\x60\x85\x8e\xe3\xb1\x7c\x56\xfd\x9a\xf2\x45\x17\xde\xfc\x10\x23\x47\x3f\x71\xb0\xd5\x62\x7d\x73\x7b\x28\x3b\x23\xf6\x97\x9b\xde\x60\x5b\xd2\x7e\xe5\x34\xb5\xf2\xc6\x54\x9d\xc4\xe2\x81\xc9\x12\x93\xa2\x12\x93\xdc\xda\xcb\x31\xdb\xa7\x4f\xc7\xbe\xaf\x49\x85\x03\x6e\xf0\x05\xb4\x22\x47\x2a\x21\x32\xd7\x7a\x3e\x27\x81\x7f\xd8\xcb\x03\x43\x8e\x0f\x83\xe3\x43\x18\xda\xcf\x6d\xa1\x35\x65\xcd\xd3\xbb\xcf\x85\x9e\x6e\x90\x16\xe7\xdb\x69\xeb\x73\x1b\x40\x53\x6f\x91\xf3\x69\x91\x7d\x3d\x0b\x11\x1f\x3a\xc4\x51\xdf\x0e\xb0\x91\xcf\x26\xbe\xb2\x9b\x50\xa5\x5f\x11\x91\xde\x6d\x81\xfc\x74\xa8\x01\x5f\x72\xbc\x7d\x08\xd9\xb6\x14\xfa\xdd\xbc\x2c\x96\xcf\x15\x2e\x1b\x49\x3a\x77\xf5\x0a\xb3\x3d\x1b\x47\xa3\xc4\x75\x7d\x21\xff\x34\xbd\xb5\x04\xde\xf9\xa8\x43\xe5\x06\x21\x84\x80\x73\x73\xbe\x09\x9a\x9a\xd0\xc9\x49\x7e\x96\x9c\xc0\x61\x2e\xa7\xe3\x2e\x68\x2a\x49\x11\x27\xbe\xef\x1f\xf9\xbe\x8f\xad\xc4\xbc\x16\xe4\x09\x1f\x3b\xbb\x69\xb5\x9b\x17\x7c\x37\xd9\x95\xa8\xf1\x82\x45\xec\xae\x44\x63\x1c\xac\xdd\xa4\xf9\xe9\xf1\xe3\xc7\x87\xc7\x61\x81\x38\x0e\x0a\xf4\xf8\xf1\xc1\xd3\xe3\x31\x42\x7c\x0f\x70\x49\x8f\xf1\xd9\x99\x3f\xc1\x84\xff\x0f\x7f\x72\x70\x34\x7e\x7c\x7c\x78\x30\xc1\xc6\x12\x58\x42\x72\x2c\x64\xd1\x9e\xcc\x12\xd2\x32\x95\xaf\x4e\x55\x75\x38\xc1\x9b\xdc\x23\xcd\xa7\xd9\x7a\x06\xa9\xbf\xda\xc1\xd5\x37\x07\x98\xdd\x68\xf4\x6f\x93\x0e\xc4\xfa\xd8\xc4\xe6\x7d\x4d\xc2\x48\x6b\x79\xf7\x97\xf5\x97\x8a\xc8\x94\x27\x59\x3a\xfd\x4c\x9c\xf3\x06\x65\xa7\xdb\xd7\xf5\x97\x1f\x27\x0a\x59\x01\x47\x8a\x4f\x1e\x63\xb5\x6d\x6b\x87\x70\xc8\x21\xcf\xb0\xc2\xd6\x2b\x6f\x33\x55\x9c\x71\xae\x6b\x7d\xf5\x52\x13\x95\xd2\x7a\xd8\x85\xc3\xbe\x75\x01\x02\xfd\x94\x98\x10\x92\x74\x6c\x12\xca\x91\x0d\x67\x3a\xdc\x11\x57\x90\xdc\x0d\xc6\xe0\x4b\xa5\xf5\xe7\xf5\x84\x61\xcd\x68\x51\xb2\xf9\x20\x47\x19\x4a\x9c\xb4\x29\x1b\x27\xed\x49\x95\xf6\xe9\x31\x94\x5b\x26\xb7\xc3\xcc\x40\xec\x80\xbd\x32\xb9\x55\x09\x37\xac\xb4\x41\x03\xec\x21\x8a\x49\x45\x27\x27\xe5\x59\x75\x82\x55\x50\x8e\xde\x39\x47\x15\xe0\x2a\x93\xea\x34\x77\xdd\xee\xb3\x96\xca\xab\xb8\x0d\x25\x4a\xfa\x0b\x79\x4b\x62\xb3\x83\xa1\xb4\x4b\x7d\xb7\x29\x5b\x29\x29\xd9\x8a\x25\x3c\x90\x50\x62\x1d\x4c\x9e\xb6\xc8\x2f\x95\x8e\xd5\x32\xc9\x3e\x13\x99\xbf\x31\x93\xea\x9b\x2d\x0b\xe9\xab\x13\x00\x0d\xe8\x3c\x15\x4f\x4a\xbe\x45\xeb\x69\x9f\x75\x38\x57\x7b\xfb\x93\x9a\x4f\xe7\xeb\x92\xa6\xc8\x68\x2e\x5f\xa8\x06\x19\x02\x12\x14\xf4\x29\x1d\x27\x27\x65\xab\xe3\x94\xa4\x1c\xe7\xfa\x4b\x4a\x69\xfe\x45\x3a\xce\x50\x8a\xa0\xe1\x59\xe4\x65\xfa\xf1\x33\x62\x7e\x73\x1a\xd5\x47\xdb\xe6\xf1\x73\x7b\x44\x53\xf9\xfa\xea\x6b\x6b\x5e\x6f\xd7\xdd\x87\xf2\x0f\x6d\xa9\xf6\x2b\xd3\x5d\xc8\x2f\xb6\x55\xfb\x25\x72\xe7\x08\x23\x09\xeb\xfb\x55\xf5\x1e\x9a\xda\x00\x46\x14\x6a\xfb\x52\x61\xd3\xc7\x35\x7e\xfc\xa4\xeb\x63\xeb\xfb\x2a\xad\xf0\xd3\x23\xec\xfd\xed\xe5\xbf\xe0\x1c\xe1\x58\x81\x1b\xf8\x07\xc7\x12\xdd\xc0\x3f\x38\x92\xf0\x06\x90\xe5\x7e\xa6\x72\xc9\x00\xc0\x01\xe4\xfd\x5f\xc2\x8f\x89\x84\x38\x38\xf6\x25\xc2\xc1\x77\x4f\x31\x80\x1b\x1c\x3e\x91\xd0\x06\x4f\x7c\x05\x6d\x20\xd8\xf0\xad\xc6\x54\x7e\xa9\xdd\xff\xee\x54\x48\xcd\x39\x95\x38\x3e\xe4\x9d\x76\x1d\x7c\xa6\x7c\x09\x3f\x2a\x00\x15\xf2\x81\xbe\xf3\xe6\xe4\x39\x7d\xe6\xcd\xc9\x5b\x7a\x0e\x50\x05\xb9\x4e\xba\xff\x33\xcd\xbd\xbf\x9e\xbf\xfb\x89\xfc\x4e\x7f\x76\xdd\x9f\x3d\x89\x86\x9c\xce\xef\xc9\x0b\x3a\x43\xce\xe5\x22\x9d\xcd\x58\xee\x60\xf2\x93\xb8\xec\xe6\x2e\x7a\x4d\x1f\x1a\x6f\xa5\x9c\xb1\x5f\x57\x2f\xa5\x7b\xf8\x55\xc6\xc8\x1b\x3a\x45\x4e\x05\x35\xec\x95\xec\x3a\xad\x78\x79\xef\x60\xf2\xaa\xbd\x2d\xf4\xa0\x3f\xc5\x65\xb1\xda\x6b\xef\xfc\x48\x37\x60\x39\xbe\x1f\x3a\xc8\x7f\x4f\xfe\x41\x73\xef\xef\xf2\x65\xf2\x2b\x1d\xfd\xa3\xae\x47\xff\x68\xbf\xea\x5e\x41\x9e\xee\xe7\x8b\x34\x9b\x91\x3f\x68\xe1\xba\xd9\x80\x79\xe7\xbb\x11\xbd\x43\xcf\xd1\x43\x03\x92\xf3\x61\xd8\xb1\xeb\x79\x2b\x5b\x95\x8c\xff\xae\xc1\x5e\xd2\x34\x58\xfc\x8b\xc3\x61\xa9\xf2\x01\xfd\x48\x38\xde\xc9\x4d\x70\xc2\x8f\x11\x8f\xc9\x73\x1d\x7d\x91\xbb\x2e\x1b\x51\xfa\xa3\xeb\x3e\x17\x2f\x92\x1c\x37\xc1\x73\xf2\xcb\x40\xb4\xf6\xab\x88\xc5\xf4\x0e\xbd\xb7\x42\x60\x0c\xd4\x9e\x77\xf9\x91\x32\xc2\x1b\xf2\x2f\xfa\xbd\xeb\xaa\x41\xb6\x06\xcc\x4b\x39\x2b\x13\x5e\x94\xe1\xe6\x5a\xda\x78\x9b\x35\x83\xd0\xae\x1d\x8b\x5a\x43\x7e\xd8\x86\xf6\xc8\x28\x74\xe7\x07\xf4\xa7\xec\xa1\x54\xc5\xe8\xad\x8a\x44\xb9\x16\x7b\xd6\x14\xbd\x22\x1c\x87\xa8\xf4\x98\x21\x1b\xc0\x77\x27\x2f\xb0\xeb\xb2\xe8\x45\x1c\xf1\xd8\x75\x91\xfa\x45\x21\x30\x97\xde\xa1\xd2\x84\x21\x5c\x65\x2c\x78\x89\x26\x90\x65\x11\xe3\x40\x7d\x5b\xd7\x62\x60\x5f\x90\x97\xc8\x27\x0f\x0d\xc6\xc4\x14\x30\xc1\xe4\x0f\xd5\x50\x1c\xe8\xd1\x6f\xc8\xdf\x7a\x4e\x8b\x20\x5e\xac\xa4\x10\xf4\x06\xa0\x0c\x38\x16\x9c\x61\x02\x69\xb3\x94\x45\xbb\x38\x4b\x4f\xf0\x0f\x88\x91\x92\xe6\x51\x2a\x36\x34\x3c\x2a\xdb\x64\x9c\xac\x21\xdf\x0c\x4c\xe2\x6b\xfb\x94\x83\xde\x22\x48\x0d\xd8\x06\xb5\xa8\x50\xd6\x1f\x5d\x57\x8c\x10\x93\x98\xcb\x7f\x12\x86\xc1\x73\x13\x71\x40\xd9\x53\x56\x10\xf8\xfd\x0a\x7e\xa8\x7b\x62\xec\x20\xfd\xe1\x8b\x38\x62\x31\xae\x6b\x8e\x1b\xf2\xf7\x4d\x94\x0d\x46\x2f\xbb\x73\x02\x14\xa8\xca\xe3\x50\xde\x9f\x84\x63\xed\xc2\xf9\x41\xfa\x3f\x6b\x1f\xcd\xce\x7b\x9d\x09\xab\xeb\xce\x84\xc2\xa0\x97\x4d\x43\xfe\x39\x0c\x2d\x09\xe1\xa4\xa2\x25\x42\xb8\xcb\xf8\xd8\x0e\x62\x05\xd4\x42\x15\x6a\x45\x5d\x73\x4a\x5f\xc0\xbf\xeb\xba\xce\x75\x1c\x8d\x09\x2f\x6b\xc8\x7f\x6d\xad\x05\x28\x92\xe4\xf4\x2d\x2a\xc3\x3f\x03\x59\x63\x21\x6a\x84\x1d\xaa\xae\x31\x39\xc1\xb2\x63\x34\x97\x59\x3d\xea\xba\x84\xf1\xff\x11\xfa\x5a\xc8\x2a\x5f\x45\xbc\x9d\xe4\xa2\xd9\xf9\xbe\xae\x51\x85\xd0\x7b\x3b\xf4\x5b\xc5\xea\x74\x16\x8c\xda\xdd\x1a\x3c\x1a\xe4\x48\x16\xdc\x6e\x70\x2d\x9f\xcf\x91\x23\xad\xf6\x8c\x2e\x36\x35\xa5\x61\x2b\x2e\xb1\xf0\x3b\x4b\xb9\x19\x92\x84\xa4\xfc\x99\xff\x24\xb0\xec\x0c\x9d\xc8\x9f\xd1\x8b\x18\xa8\x0c\xb5\x64\x03\x6b\xed\x0f\xad\xc2\x89\x85\x54\x62\x83\x3e\xb3\x5b\xb8\xee\xaf\xae\xfb\x07\xfa\x71\xc8\x1f\xb6\x62\x3c\xe0\x0d\x26\xbf\x40\x10\xfa\x17\x82\x2b\xa9\x60\xa4\x8f\x0d\x26\xef\xbc\x39\xfd\x3b\x79\xe6\xcd\xe9\x0f\x44\x3b\x41\x0b\x89\x45\xff\x09\x97\x4f\xc4\xe5\x37\xf0\xf3\x48\xfc\xfc\x2f\x52\xb8\xee\x08\xe0\x86\x5c\xb7\x42\x3f\x12\x67\x48\x1a\x39\xe4\x1b\xa0\xf1\x95\x37\x1f\x0a\xa3\xff\x05\xcd\x20\x32\x07\x93\x04\x25\xde\x0f\xe3\xc4\xfb\x75\x9c\x78\xaf\x1e\x8d\xbe\x27\x0f\x72\x86\x82\xf7\x4d\xcb\x12\xfe\x4a\xed\x9c\x70\x24\xad\x9e\xc3\xa1\xc4\xf9\xaa\x64\xc9\x0c\x84\x9f\xe6\xb4\x04\x7c\x3c\x89\xf2\xb5\x23\xd2\x7d\x84\x28\x8c\x1f\x02\xc7\xa5\xc4\x12\xa8\xc4\xc2\xaf\x22\xeb\xbc\x9a\x16\x2b\x51\x5c\xd5\x01\x68\x67\x8c\x4e\x4e\xfe\xaa\x09\x81\xb1\x13\x3c\x43\x7f\x8d\x98\xcc\x02\x6c\x28\x9e\xd1\x8f\x68\xe6\x55\xbc\x28\x19\x26\xa5\xf8\x84\xeb\xcd\xe9\x59\xc9\x4e\xf0\x12\x71\x16\x95\xf2\x23\x08\x15\xd2\x1d\x56\x24\xe9\x10\xb1\x7a\x86\x2d\xb0\x6f\x08\x1b\x53\xc7\xc1\xe1\x9b\x88\xc5\x81\xf8\x87\xbe\x17\xb3\x4d\x3e\xb2\xfb\x57\xbd\x8f\xd2\x39\x1a\xfd\x4b\x0c\x6e\x9f\xf4\x99\x6d\xd7\x91\xd2\x47\x50\xbc\xe9\xc0\x6e\x9a\xef\xbe\xc1\xe9\x1c\xbd\x11\xac\xdb\x4a\x68\xcd\x1b\xb2\xae\xd8\x39\xe3\xdc\xc6\x01\xc7\x0f\xbf\xd2\xd1\x44\x3e\x4a\x97\x2b\x3b\x9e\x06\x1e\x41\x38\x5b\xb7\xa3\x7d\xd8\xcd\x4f\x1f\x53\xf3\xf0\x0e\x31\x1c\xfc\x0d\xdd\xa9\x70\x32\xd2\x0b\xbe\xfc\x81\x6c\x60\x6c\xfe\x8d\x6c\x8d\x56\xfb\x3b\x19\xc0\x68\x0c\xfe\xd9\xbb\x2b\xe7\xa2\x0a\xfe\xab\xc1\xe4\x67\xd7\x6d\xdb\x8f\x46\xdf\xd7\x75\xb6\x79\x60\xf6\x1e\x99\xc3\x32\x19\x7a\xeb\x8c\xe8\xef\x48\x0a\x02\xe7\xa1\x81\xab\x87\x24\x60\x8d\x75\x2d\xc7\x41\x2e\x00\x4c\x1c\xa1\x0a\xc2\xee\x4e\x69\x81\xdb\x0c\x7e\x82\x5f\xb3\x98\xa4\xd4\x3f\xd9\x60\x4f\xe9\x09\x56\xdc\xb9\x65\x53\x10\x77\xb8\x03\x18\x2f\x82\xbb\xfa\x31\x41\x57\x00\x3b\x68\x8e\xe9\x41\xd4\xfd\xcb\x72\x0f\xb9\x87\xe7\x1d\x54\x62\x25\xbd\x06\x14\xc2\x12\x10\x87\xfa\x1e\x04\x98\x8c\xfe\x25\x24\xb7\x21\x1e\x4c\x44\xdd\x94\x93\xdf\x95\xa7\xc5\xcf\x00\xd6\x82\x89\xa5\x53\x45\x3f\xc5\x3a\xfb\xa6\x75\x97\xfc\x64\xbf\xa3\x53\x46\x60\x32\x47\xef\xcd\xaa\x11\x57\x62\x7f\xab\x73\xb2\x08\xa6\x33\x47\x4a\xbf\x56\x43\xab\x10\xe3\x4c\x34\x89\x86\xdd\x54\x9e\xfa\x93\xa3\xc0\x9f\x1c\x91\x16\xb3\xf0\x49\xe0\x4f\x9e\x98\x68\x93\xd6\x93\x5f\xa3\x1d\x1c\x07\xfe\xc1\xb1\x95\xc4\x5d\x86\xeb\xfa\x47\xdf\x05\xfe\xd1\x77\xc4\x7f\x3c\x09\xfc\xc7\x13\xe2\x3f\xf6\x03\xff\xb1\xdf\xa2\x20\xd8\x67\x95\x7e\x70\xec\x0f\x84\x41\xab\xf4\x0a\x07\xc1\x77\x07\xe4\xbb\xa7\xc1\x77\x1a\x0a\x50\xa1\x20\x1c\x05\x4f\x8f\xfa\x69\x17\x86\x32\x91\x7e\xc6\x16\x71\xac\x6d\x4c\x8f\xbb\xb0\x00\x60\xcf\x5e\x6b\x73\x45\xa6\x36\x44\x53\x95\x62\x01\x12\xf6\x7e\xbf\x9e\xcf\x59\xa9\x76\x5c\xdf\x89\x1d\x57\xd1\x79\x30\xa3\x85\xf7\x22\xe1\xc9\x2f\x29\xbb\x85\x58\xa6\x67\xdf\xff\xe2\xba\x53\x2f\xad\xe0\xce\x92\x2e\xac\x09\x05\xbb\x01\xb9\xa1\xa9\xf7\xcb\xeb\x97\xbf\x1a\xa8\xbc\x5f\xa5\x81\x7c\x3a\xa2\x74\x81\xc9\x83\x55\x7c\xb0\xd0\x21\xb2\x12\x9f\x21\xf5\x9e\xbf\xfb\xe9\xfc\xc3\x7b\x95\xe3\x58\xbe\x04\x61\x7e\xa2\xb6\x21\x5e\xba\x72\xdd\x15\x00\xa5\x65\x90\xbc\xe0\x46\xc7\x1c\x12\x6d\x83\xf9\xc7\xa7\x32\x2b\x8d\x72\x76\xbb\xbb\x40\x07\xd8\xb8\x72\x2a\x3d\xc0\xbb\xba\xe7\xec\x8d\xc9\xe6\xd5\x6d\xcd\x50\x96\x6f\xe3\xb5\x35\xa2\x74\xe9\xba\x2d\xd3\xd3\xeb\x66\x29\x97\x55\xa2\xdc\x59\x6c\xfd\x98\xaa\x9b\x56\xa5\x32\xbc\x07\x94\x0d\x5a\xa1\x5e\x7a\xf0\x12\xbc\x76\xd8\x2d\x92\x0a\x12\x59\x60\x8c\xd6\x28\xdd\xcb\x31\x04\x37\xb1\xdb\xdd\x99\xaa\x65\xaa\xae\x0a\xb1\x71\x9e\x9c\xe4\xa7\xe9\x09\x9e\x7a\x15\xe3\xff\x48\x73\xfe\x04\xad\xc6\x63\x92\x79\xd7\xfa\x32\x1f\x8f\xb1\xa5\x94\x35\x2d\x9c\x8d\xdd\x7f\x2b\xc3\xb3\x05\x14\xd2\xcd\x0a\xee\x1f\x3d\x0e\xfc\xa3\xc7\xc4\x3f\x3a\x0e\xfc\xa3\xe3\x6d\xb0\x17\x6d\xd4\xe9\x97\x64\xac\x6d\x49\x69\x24\x89\x5e\xd0\x22\x79\xd0\xd4\x19\xc8\x05\x60\xa8\x55\xd9\x2f\xbb\x0d\x31\xc6\xc6\xa1\x94\xb6\xa2\x80\x23\x8c\x1c\x00\x8a\x3c\x3c\x70\xc8\xd1\xa7\xcd\xc5\xe0\xf4\xd4\x33\x9c\xc8\x9b\xda\x78\x7a\x14\xf8\x47\x60\x3c\x19\x4a\x02\xdb\xa9\xee\xf8\xc8\x21\x4f\xfe\x73\xd5\x0d\xd8\x33\x75\x75\xaf\x73\xee\x1f\x77\xfd\x2b\xff\x37\x2b\x1b\x4e\x0a\xae\x2b\xfb\x0f\x0f\xe4\x80\x85\xcf\xaa\xec\x49\xd7\xb3\xf8\x7f\xb3\xae\x01\xb3\x9e\xae\x4b\xac\x98\xff\xf0\x30\x0e\x58\xf3\xec\xda\xfe\xc3\xe3\x38\x60\xcd\xb3\x6b\xfb\xcf\x0e\xe4\x30\xd0\xf6\x7f\xa8\x32\x93\x69\xd7\xd4\x37\x94\x8e\x73\x08\x6a\x55\x19\x2b\x21\xf9\xda\x01\x46\x13\x1d\x61\xa6\xc4\xe7\xd3\x23\x65\xa7\xfc\x4e\x01\xb0\x4e\x4c\xa4\xb0\x14\x98\x47\x4f\xb5\x89\xf2\x29\x26\x33\x3a\x4a\xbd\x67\x53\xb1\x0b\xf9\xa7\x54\x08\x5d\xd7\xe9\x5c\x43\xce\x66\xb2\xa2\x95\x60\xb9\xbf\xb2\xe4\x23\x59\x0e\x45\xb9\x4b\xe7\xc6\x39\xec\x3c\xc8\xfd\xd0\x6e\xeb\x3f\xe0\xab\x74\x4d\x37\xf2\x23\x43\x50\x32\xc3\xda\xc6\xb2\x6a\x8f\x08\x46\x52\xf6\xdc\x68\x81\xe3\x88\xc6\x43\xda\x63\xc8\xc9\x0f\x91\xa0\xa1\x41\xc7\x88\x0d\xf4\xc0\xf6\x0c\xca\x19\xb8\x44\x6d\x14\x47\x54\xf6\xe4\x2b\xba\xe1\xb7\xa5\xdf\x21\xf7\xe4\x9a\x64\x64\x34\x11\xd3\xbe\xb3\x70\xdd\x99\xeb\xa2\x35\x42\x39\x05\x49\xf6\xbc\xdd\xfe\xa3\xfb\x4e\x43\xad\x64\x76\x98\x54\xde\x4f\x2f\x5f\xbe\xa0\xa3\x09\x29\x50\xe4\x48\x93\xa2\x43\xc4\xa6\xd4\x21\xce\x35\x03\x4f\x02\xc6\x9d\x78\x20\x42\xe0\xca\x2a\xa9\xa4\x3c\x62\xf1\x4e\x82\x38\x61\xc4\xa2\xd6\x54\x8d\x26\x17\xfa\xf8\x52\x68\xcf\xea\x5c\x75\x2e\x94\x71\xf9\x4b\x82\xda\x49\x0b\x45\xa1\x0e\x4f\xe7\x11\x8b\xe1\x73\xbd\x05\x11\x8d\xa0\x94\xc9\x18\xdb\xa2\xe9\x3a\x7d\xab\x55\x90\x02\xfc\x57\x07\x43\x59\xbb\x91\x1d\x04\x47\x07\xe4\xf1\x24\x78\x3c\x91\xce\x64\x5d\x70\x1e\xa9\x7d\xea\x54\x0b\x43\xe9\x65\x07\xf5\xce\xc7\x13\xcb\xbf\xce\x9a\x9d\xff\xcf\x3d\xeb\x74\x23\x04\x19\x41\xcc\x39\xc9\xc9\xc8\xef\x25\xe2\xb6\x46\x03\x7a\xfd\xd5\x49\x3f\xbe\xd3\xca\xf6\x81\x86\x29\x52\xc8\x02\x87\x2a\x5d\xe3\xd1\x63\x73\xfc\x09\x7a\x93\x43\x1e\xe6\x59\xc2\xdf\x26\xab\xe1\x8c\x36\xea\xa4\xcf\x02\x5b\x52\x98\x43\xe6\xf0\x8d\x94\x74\x8d\x72\x22\xc6\x1d\x95\x24\x27\x39\xe1\x64\x42\x7c\x62\xb9\x2f\x44\x7e\x0c\x56\x42\xa1\xb3\x1d\x3e\xc6\xc8\x51\x55\x4a\x75\xad\x1f\xdf\x23\x01\x9c\x1e\x07\x87\x8f\xc9\xd1\xe3\xe0\xe8\xb1\x56\xcd\xbe\x0b\x8e\x25\x2d\x7c\xed\x79\xe8\x91\x2f\xfd\x0b\x7a\xfd\xfe\x84\x6b\x86\xf1\x43\xfb\x0a\x17\x0c\xdd\xb7\xd6\x93\xa3\x21\x0f\xaa\x1b\x7e\x60\x1f\x4f\x7f\x26\xeb\xad\x82\xf3\x9e\xb4\x8d\xb6\xe1\xd6\x59\xce\xcb\x74\x5b\xa3\x8d\xdf\x9c\x3f\x09\x7c\xdf\x8a\xad\x7e\xfa\x25\x0e\x46\xbe\x3e\x36\x3e\xd2\xc2\x66\xa2\xa8\xe7\xf1\xe1\x66\x43\xb6\xd9\x3e\xaa\x4f\x58\x14\x0a\x19\x95\x94\x78\x73\xc8\x8d\x94\x0b\x91\xf5\xd0\x90\x39\x9d\x9c\x64\x7a\x80\xe7\x27\xd8\x6c\x56\x90\xa4\x2d\x4e\xb3\x68\x0e\xce\x02\xae\x5b\xa1\xa9\x44\x4d\x53\x9d\x9e\xf6\xd0\x1b\x14\xda\x89\xde\x2f\x3f\x3e\x0c\x1e\x5b\xc7\xf8\x9f\x49\xdb\x6b\x0d\xbd\xbf\xd9\x63\x30\x09\x7c\xf5\xc8\x7f\x2d\x0c\xd5\x63\x15\x3e\xfc\x9d\x9e\x04\xb1\xf3\xad\x14\xe0\xb9\x39\xbd\xef\xc0\x73\xce\xd3\x3c\xc9\xb2\xfb\x81\x73\x7a\xb9\x79\x23\xa9\x46\xf8\xac\xeb\x42\xff\x14\x0b\x77\xc0\xce\xc2\x76\x6c\x9b\xad\x04\x73\x0c\x6d\xb3\xb3\x61\x04\x9c\x30\x84\xfb\x40\x95\xe6\x79\xd9\xe0\x26\x60\xe4\xeb\xbe\x95\x56\x44\xf9\xa9\x19\x50\x05\x07\xa9\x76\x73\x12\xcc\xb1\x97\x2f\x71\x28\xb1\xf1\x67\x3c\xb8\x4c\x90\xb6\xf4\x90\xff\x45\xe2\xc4\x5f\xec\xfb\x93\x0b\xef\x62\x36\x46\xf0\x2f\x0e\xd1\xee\xdb\xe2\x2a\xcd\xd8\xc5\xfe\xc5\xed\x18\x87\xbb\xe7\xc9\x3c\x29\xd3\x8b\xfd\x7d\x19\x54\x53\xd8\x7e\x60\x89\xe5\x3d\xb1\x4a\x66\x2f\xf3\x41\xb1\xf0\x95\xac\x05\x4e\xbf\xd4\x71\xf7\x41\xe0\x1f\x1e\x18\xc0\xcb\x96\xc4\xbe\xda\x28\xf3\xff\x42\xef\xcf\x79\xb2\x2d\x7b\xff\x57\xf6\x7f\xf2\x99\xfe\x1f\x0e\xa5\x51\xde\xea\x6a\xf0\x86\xcd\xbf\x52\x13\x10\xe3\x4f\xe0\x5b\xe8\x93\xd3\x75\x3d\x38\xfc\x6c\x4a\x65\xbb\xf6\xf7\xe9\xf5\xe2\x2b\xab\x3f\x30\xd5\xbf\xcc\x67\x1b\x95\x0f\x6f\xdd\x1f\x4f\x30\x72\x92\xea\x3e\x9f\xbe\x56\x47\x15\xf2\x43\x69\x2c\x84\x0f\x07\x84\xa8\x05\xb9\x8f\xfc\xe3\xa3\x36\x43\x8b\x0a\x94\xd5\x29\xa0\x27\x92\x1f\x7d\xa7\x60\x6b\x9e\x3c\x51\xd1\x96\x82\x73\x4d\x69\x86\x9c\xd4\x54\x4a\xe6\xe2\xba\x93\xb7\x83\x2c\xe8\x5a\x5a\xf1\xc8\x8c\x3e\x3c\x3f\x3f\x7f\xbf\xce\xd8\x9b\xb4\xe2\xc1\x68\x42\x9e\x9f\x9f\x9f\xf3\xfb\x8c\xbd\x60\xd3\x2c\x29\x21\xff\x57\x30\xf2\xc5\xed\x5f\x04\xf3\x95\xaf\xf9\xe4\x79\x96\xb2\x9c\xbf\x67\x53\xae\xef\xbc\x78\xf7\xb6\x77\x29\xab\xb4\x6e\x7c\x28\x3e\xb2\x5c\x57\xf4\x22\xe1\xc9\x87\x32\xc9\xab\x39\x2b\x5f\x73\xb6\xd4\xef\xbd\x4a\x33\x53\xcb\x8f\x1f\xde\xbe\x79\x96\x65\xcf\x8b\x2c\x93\x40\xec\xfa\xe6\xe6\x9d\x57\x45\xb9\x7c\x99\x31\x41\xbb\xfa\xd6\x39\x13\xef\x58\x37\xdf\xb2\x59\x9a\xe8\xfa\xdf\xa6\x4b\xf6\xe1\x7e\xc5\x60\x20\xc4\xd3\x9f\x92\x25\x9b\xfd\x54\xcc\x98\x50\xc5\xc4\x75\x31\x33\xa3\xf2\x73\x92\x8a\xde\xfe\xb1\x66\x95\xe9\xe1\xcf\xd9\xfa\x3a\xcd\xdb\x5f\xa6\xa0\xf3\x5f\x7e\x90\x66\x3a\xfd\xe6\xf9\x2f\x3f\xc8\x5c\x6b\xd6\x8d\x9f\x13\xbe\x38\x67\xd7\xf6\x9d\x22\xcd\xb9\x75\xdd\x1d\xbe\xf3\x5f\x7e\x90\xa3\x55\x94\x66\xa8\xce\x21\x44\x47\x1a\xde\xcc\x3d\x31\x79\xe7\x0b\xc6\xb8\x6e\xfb\x07\x76\xc7\x3f\x94\xc9\xf4\xe3\xf3\x76\xfa\xcc\x3d\x73\xa3\x58\x4f\x75\x7b\x1b\xb2\xa2\x29\x9a\x61\xb2\xa4\x93\x93\xe5\xe9\x4a\x1f\xc6\x2f\xc7\x63\x29\xd5\x6e\xc8\x3d\x5d\x45\xcb\x98\x5c\xd3\x59\x74\x1f\x93\x2b\x9a\x88\x3f\x97\xf4\xca\x75\xad\xfd\xcf\x4e\x3a\x47\x97\xae\x8b\x2e\xa3\x69\x5c\xd7\x15\xba\x24\x53\xb2\xc0\xe4\x32\x9a\xab\xcb\x39\xb9\xc7\x64\x1d\xdd\xc7\x74\x41\xae\x31\x06\xea\xdf\x4d\xf3\xdd\x1c\x5f\x46\x37\x71\x5d\x17\xe8\x92\xdc\x90\x3c\xba\x89\x95\xc2\xde\x26\x1a\xea\xa5\x83\xf1\x8f\x8f\x02\xbf\x35\xab\x83\x41\xfd\xc9\x93\xe0\xc9\x13\x58\x69\x5f\xa2\xed\x1d\x1e\xb7\x66\xc4\xef\x01\xd9\xeb\xf5\x72\x29\xe8\x85\xb3\x00\x90\xc8\xc8\x34\x63\x49\x69\xdf\x84\x1b\x8a\x31\x4a\x24\xe4\x96\x21\x7e\x42\xdb\xd3\x0e\x50\xc7\x5d\x11\x10\xc5\xca\x40\x5e\xd1\xfd\xb7\xe7\xaf\x5f\xee\x7a\x17\x9e\xe1\xf2\x64\xfd\xc9\x8d\xbe\x55\xfe\x06\x4f\x3f\x20\x29\x1d\x8d\xc0\xc1\x53\x9a\x98\xf5\x0b\xe4\xa0\xf5\xa3\x40\x79\x68\xb1\xbf\xa1\xd3\x1f\x1e\xf2\xe0\x55\xeb\x0a\xab\xe0\x94\x95\x72\x83\x1b\xb0\x3b\x37\x0d\xc0\x49\xfe\x30\x4e\xbd\xef\x01\x94\xb5\x82\x81\xfc\x90\x2e\x59\xb1\xe6\xc1\x1a\xe5\x5e\x7b\x89\xc5\xf6\xff\x75\xce\x59\x79\x93\x64\xfa\x99\xbe\x56\x3e\xa0\xb6\x9c\x31\xba\xc6\xe1\x50\xb2\x63\x86\x0e\x27\x8f\x61\x07\x30\x39\x92\x7f\x0e\x31\xe9\x58\x09\x0e\x60\x37\x30\x39\x0c\x0e\x27\x87\x40\x13\x87\x93\x23\x98\xa8\xc3\xc9\x63\xa9\xd3\x40\xd9\x5b\xa1\xc4\xec\xf1\xdf\x90\xed\x9c\x94\x9b\x6e\x55\x39\x2d\xbd\x45\x52\x59\x3a\x3a\x49\x87\x14\x3e\x79\xb4\x15\xaa\x83\xf0\x87\x86\x14\x34\x35\xbe\x44\x75\xed\xfc\xcf\xff\x69\xd8\x39\x49\x68\xea\x75\xc4\x0a\x3c\xef\x0a\x1a\x52\xd1\xd4\xb3\x38\x3e\xbc\x62\x4b\x80\x16\x8b\x63\xad\xa2\xe7\x4d\xdc\x2f\x64\xe6\x37\x5d\xb0\x9d\x2b\x96\x21\x0f\x96\x2d\x24\xa1\x3c\xd3\x45\xa9\x8d\x15\x9c\x80\xd1\xe2\x23\xca\xeb\x3a\xb2\xfc\x37\xbc\xcb\x34\xbf\x29\x3e\xb2\x0d\x5f\x26\x15\x01\xbc\xd3\x27\xe7\x94\xc8\x8c\xfe\x39\xa5\x74\xa1\x0e\xb6\x45\xc9\xca\xa7\xe3\x07\x96\xcb\x9e\xee\xa6\xd5\x6e\x92\x95\x2c\x99\xdd\xef\x96\xeb\x3c\x17\xaa\x8f\x8c\x6a\xa5\x94\xce\xe4\x39\x26\x7c\xed\x50\x4a\x53\x55\x50\xb1\x63\x3c\xcd\x24\xd6\x4b\xe9\x2d\x19\x5f\x14\x33\x9a\x92\xd2\x4b\xca\x6b\x5a\x68\xc4\x99\x84\x96\xde\x8c\x65\xec\x3a\xe1\xc0\xcc\x12\x8d\x21\x7f\x8e\x12\x05\xd7\x57\x41\x2d\x15\xa5\x74\x85\xa7\x45\xce\xd3\x7c\x6d\xf4\xf7\xaa\x69\x44\x0b\x72\x76\xc7\x45\x03\x74\x3d\xb8\xf4\x2a\x96\x73\x5a\x7a\x97\xea\x6f\x52\x5e\x43\x20\xed\x6e\xa7\xc1\xe6\x7d\x3d\x14\x53\x3d\x14\x74\x26\x5b\xba\x53\x7a\xb3\xb4\x5a\x25\x7c\xba\x78\x79\x37\x65\x2b\xa9\xe4\x8b\x27\x12\xc1\xc5\x51\x66\x22\xab\x30\xd7\x2d\xbd\xe4\xaa\x5c\xaf\x20\xf5\x09\x3c\x95\x65\xe1\x9d\x9c\x2e\x14\xdc\x54\x66\xe1\x62\x3b\x79\x51\x2e\x93\x4c\x94\xb1\xf6\x60\x9a\x65\x73\x4a\x08\xd0\x0e\x67\xc1\x9c\xac\x61\xd4\x06\x46\x40\x39\xf0\xc1\x73\xe9\xa8\x2f\xbf\x6a\x9a\xb6\x97\xb2\x50\xd7\x45\xb2\x57\x6a\x2a\xd4\x73\x35\x21\x6b\xd9\xa5\xa6\x41\x0c\xa0\x40\x48\xd1\x18\x0a\xd6\x6d\x7d\x68\x91\x23\x1f\x44\x89\x81\x6e\xb8\xd0\x72\x03\xa6\x5d\x98\x05\x93\x32\x89\x45\x3a\xaf\xab\x1a\xc5\xdb\x79\xd3\x34\xcc\xbb\x2d\x93\x15\x5d\x2b\x34\x0e\xa7\x5a\x57\x2b\x96\xcf\x98\x54\xab\x1d\x32\xb7\x6e\xfd\x2b\x65\xd9\xcc\x21\x0b\xea\xb0\x3b\x36\x5d\x73\x50\xc1\x67\xd4\x99\x16\xcb\x55\xc6\x38\x9b\x39\x64\x45\x1f\x1a\x1b\x02\x07\x3f\xb4\x5d\xb8\xe9\x5c\xdd\x8b\x2b\x89\x7d\xf4\xd0\xec\x5c\x47\x45\x4c\x87\xdd\x79\x9a\x1d\x89\x8a\xa4\x16\x64\x17\x1f\x57\x09\x63\x74\x85\x3e\xa0\x28\xc6\x18\xef\x5c\xba\xee\xe5\x88\x52\xc8\xdc\x03\x83\x71\x49\x0a\xec\xba\xe8\x9a\x5e\x4a\x2b\xe3\x2d\xbd\xb7\x20\xf0\x96\xd6\xef\xee\x92\xbf\xc6\x6d\x47\x5e\x0a\x6e\x18\x49\x12\x27\x7a\x08\x35\x61\xc5\xde\xbc\x28\x5f\x26\xd3\x45\xbb\xc1\xe4\xf8\x81\x45\x3c\x1e\x12\x66\xca\x3c\x0c\x9c\xc2\xe4\x92\x35\x15\xdd\xb5\x29\xb0\xec\x17\x2d\x77\x2c\x92\x5a\x28\xf5\x05\xea\x80\x26\xab\x0d\xb7\xd5\x0e\xc1\x61\xcc\xe5\x2e\x07\xe0\x82\x82\x98\x05\x9e\x21\x16\x95\x31\x61\x24\x95\x8b\x40\xf6\x6c\x44\x69\xa5\xd6\x80\x5c\x28\x15\x50\xf6\x94\xae\x15\x3e\x81\xb6\x88\xb8\xae\x23\x93\xd9\xb5\x4c\x7e\x6a\xc6\x7d\x4a\x9c\xcb\xcb\xe4\x36\x49\xb9\x83\x43\xd5\x32\x93\xbe\x61\xea\xa9\x67\x03\xf9\x27\xb8\xe2\x25\x84\x41\x53\xbb\xf8\x34\x5c\x37\x52\x3f\xc5\xc1\x46\xd9\x43\x39\x2d\x14\xae\x27\x23\x05\x5a\xf7\x8a\xd4\x13\xb3\x51\x72\x93\xa0\x4a\x2e\x49\x0c\x03\x27\x46\xb3\x31\xd1\x5e\x9c\xf2\x50\x65\x44\x2b\x48\x81\x83\x02\xe1\xa6\x9d\xc8\x73\x38\xb7\xd6\xca\x90\x11\x73\x91\x5e\xfa\xb1\xe6\xdf\xf2\xd4\xbc\x65\xc0\x00\x44\x41\xb6\xb0\xc7\xb6\x20\x4f\xb6\xc2\x75\x5b\xbe\xde\x65\x74\x94\x13\xd9\x86\xa1\xb2\xf4\x71\xfc\x6a\x67\x0b\x2b\x12\xd4\x64\xb9\x17\x7e\x58\xb0\x5d\x5d\xf3\xee\xac\x60\xd2\xdf\x6a\x55\x16\x37\xe9\x8c\xed\x26\xbb\xdf\xc2\xc7\xdf\xee\xca\xb2\x1c\x33\x46\xab\x46\x8a\xdb\x0c\xe5\xa4\x6d\xbb\xe6\xc4\x5d\xb9\x25\x29\xce\xd8\xf6\x07\x9b\x95\x02\x21\xf6\x07\x6b\xa5\x4e\x0f\x52\x29\x2c\x94\x38\x0e\x0b\xc9\xba\x51\x19\x01\x6d\xac\x33\x2e\xb6\x3e\x31\x2d\x24\x2d\x90\xd2\x13\x64\x46\x19\xfc\x79\x53\x4c\xcd\x82\x1e\xd9\x72\xc4\x1a\x5f\x49\x95\x6a\x74\xf1\x66\x33\x70\x50\x04\xe8\xcb\x06\xd4\x0c\xa6\x6c\x98\xf1\x60\xcb\x77\xd5\x82\x1a\x2a\xbe\xa5\xae\x77\xad\xe1\x4d\x08\x84\x37\xc5\x34\x60\xd1\x24\x6e\x76\x7c\xf0\xfc\x70\x5d\xc4\x65\x26\x9a\x37\xc5\x94\x32\xb0\x8a\x1f\xb4\x4f\x94\x15\x4f\x3e\x3b\x88\x09\xf7\x92\x39\x67\xa5\xbc\x3e\x8c\x55\x1c\x1a\x2f\xef\x5f\x4a\x13\xb0\xc1\x99\x37\xf5\x3f\x6b\xeb\x67\x9e\x62\xff\x69\x91\xd7\xf5\x43\xb3\xc3\x61\x22\xa9\x91\x4b\xca\x53\x9d\xc3\xd4\xd9\x6f\x53\xde\x16\xf8\xd1\x04\xdd\xb5\xd5\xd2\x48\xf7\xcd\x29\x8b\x82\x3b\x4d\x4c\x98\x61\xb5\xef\x24\x3a\x95\x49\x7f\xc4\x38\x12\x7b\x27\x53\xe0\x07\x75\x96\xc7\xb4\xe3\x31\x8b\x0a\x58\x73\x65\x0f\x33\x48\xa6\x99\x1b\xb2\x4f\x02\x5d\x18\x5c\x62\xc0\x1c\x4a\xab\x9f\x92\x9f\x10\x33\x81\x44\x4a\x9b\xdc\xf3\xad\x44\x81\xbb\xa5\x4a\x2a\x78\x32\x1e\xa7\xa7\xcc\x80\x96\x00\xda\x8b\xca\x2a\x91\x5a\xc8\x45\x8a\x31\x45\x69\x4c\xa4\xda\x40\x47\x3e\x29\x77\x7a\xcf\xb9\x79\x38\x21\x65\xd3\x06\xaa\x01\x09\x27\x1a\x22\xe4\x41\x5c\x06\xcf\x2d\x3e\xf4\xdc\x48\x08\xa5\xa5\xf0\x16\xd4\x5f\xbb\x26\x5a\x22\xf0\xb6\x83\x16\x7b\x4f\xee\x3b\xd7\x37\xe4\x3e\xaa\x62\x7a\x03\xea\x58\x96\x80\xb3\x21\x6d\xf5\x54\xbd\x6f\x72\xc4\x5a\xaf\x36\x6e\x0f\x78\xb0\x0f\x0d\x7b\x0f\xb3\x57\x1f\xbe\x8e\x38\xf8\xe5\x51\x7a\x53\xd7\x03\x55\x52\x4a\x11\xb7\xdb\x55\xd7\x1c\x20\x38\x30\x6e\x08\xf3\x96\x49\xf9\x71\x48\x1a\x2b\x91\xdf\x05\xee\x0e\x07\xef\x22\x46\xee\x71\x80\x98\x77\x79\x09\xe3\x75\x79\x49\xef\x49\x05\xab\xaa\xae\x11\x13\x03\x33\xd0\x2e\x8c\x09\xdb\xaa\x62\xdc\x62\xc2\x44\xeb\x12\xd0\xc1\x36\x9b\xf7\xa0\x84\x64\xc0\x9a\x86\xbc\x44\x77\xf6\x26\xc4\xba\x88\x92\xad\xba\x13\x61\xde\x33\x7b\xd3\x44\xef\x44\x75\xe2\x0e\xed\xba\x15\xb4\xc0\x9c\x82\x53\xdd\xa1\xb5\xb9\xdd\xee\x9e\x87\x26\x15\x95\x38\x2c\x82\x02\xe8\x10\x0d\x08\x5e\xf3\x2d\xf0\x62\xe5\xed\x68\xde\x17\xdb\xdf\x97\x62\x18\x6e\xbb\xc3\xe7\x90\xdb\x4f\x28\x84\xe4\xd6\x6c\xfb\x36\x5f\x31\xf9\x75\x4d\x61\xb1\x23\x86\xe1\x23\xbb\xaf\x06\x28\xd0\x82\x1b\x2a\x65\x5a\x0d\xae\x33\xba\xb5\x01\x31\x25\xbb\x61\x65\xc5\x10\x26\x9b\x8b\x9c\xb7\xa8\x44\x52\xd8\x73\x6f\x55\xac\x90\xdc\x9f\xa9\x44\x1d\xdd\xa5\x9c\xdb\xeb\xbc\x3d\xcc\x6e\x57\xb7\x68\xae\x3c\x02\xa2\x1f\x88\x95\x10\x8f\x3e\x58\xeb\x22\xf8\x48\x80\xed\xf5\x9d\x17\x54\x7a\x38\x76\xa3\x53\xed\x01\x87\x50\xbf\x61\x23\xa6\x12\xd5\xc1\x4f\x79\x5b\xb7\x46\x5e\x74\xa4\x0e\xdc\xea\x0a\x40\xb8\x25\x35\x8c\xbe\xa0\xd0\xdc\xf9\x19\x26\x23\x86\x3b\x03\x0b\xec\xda\x51\x3b\x44\x03\x52\x69\xb4\x45\x99\x12\x0c\x62\x54\x80\xc7\x8e\xcb\x16\xb6\x4c\x87\x14\x94\x31\xe5\xb8\x21\x15\x2f\x56\x41\xe7\x2c\xc7\x74\x61\xa2\x22\x1d\x7a\xed\x8a\x26\xb1\x25\x77\xba\x7a\x07\x93\x7a\x87\xdc\x72\x32\x5b\x83\x90\xa2\xe5\x26\xc9\x1a\xb2\xb1\xfd\x1c\x1c\x75\x80\xf2\x52\x05\xed\xb4\x88\xe5\xed\x36\x22\x95\x00\xb8\x7a\xdf\xac\x04\xa5\xd2\x13\xe4\x98\x1a\xb5\x24\x27\xe9\xa7\x94\x8f\xd1\x28\x35\x08\xae\x45\xbf\xbf\x2d\xd4\x54\x71\x46\x27\x27\x7b\x7b\x85\xde\xe8\xf7\x07\xa6\x88\x49\x45\x93\xfe\xe0\x80\xb8\xa5\x94\x26\x9e\x14\xc0\x06\x2b\x17\x90\x4b\xa4\xed\x41\x3f\x3b\xa5\x86\xe2\x0c\xc8\xa9\xb2\xc0\x11\x47\xeb\x20\x8e\xc4\x9b\xd7\xb7\x5b\x05\x44\x96\xb5\x76\xdd\xac\x4b\xbc\xa7\x89\xd1\x5f\xda\xca\xdb\x7b\xe0\xf5\xd2\x7b\xbf\x2d\xd4\xfe\xc2\xba\xdb\x68\xdb\xc3\xfa\xab\xeb\x6a\x34\xfe\xd7\x28\xdb\xb4\xd3\xf0\xf2\x7e\xb7\xe2\x09\x07\xfb\xfb\xee\x6d\xca\x17\xc5\x9a\xef\xc2\xe7\xbb\x45\xb9\xab\x5a\xe0\xfc\x37\x1a\xdc\x34\x0d\x91\x56\x8c\x9e\xff\x50\xeb\x34\xbb\x75\xe6\x4b\x39\xf3\xa5\xb1\x78\xf5\x66\xbe\x8c\x25\x16\xf2\xc6\x2c\x9a\x25\x99\x76\x27\x4a\x65\xbc\x84\xc6\xa7\x76\x33\x95\xdc\x48\x25\xf6\x6b\xd3\x14\xae\x8b\x1c\xf8\x0d\xeb\xab\xae\x1d\x6d\x2f\x81\x6b\xec\xba\x45\x5b\xab\xeb\xf2\x53\x5a\x58\xc5\xb9\x2e\x92\x60\x7c\x72\xb7\x9e\x48\xd0\x3d\x43\x9f\xc1\x83\xa5\xfc\xc8\xc4\xa1\x24\x51\xdc\xa8\x08\xd1\x36\x76\x05\x4b\xca\xae\x46\x68\xeb\xf0\x44\x1b\x2f\x90\xd8\x69\xea\x8b\x4d\xb7\xe6\x2f\x60\x18\x56\x9f\x3d\x19\x39\xda\xed\x38\xdc\x0c\xdb\xe6\xc0\xb7\x81\x65\xbc\x52\x6f\x20\xc3\x78\xa8\x61\xb5\xf0\x6e\x97\x19\xeb\xdd\x5e\x5b\xa0\x5c\x9c\x81\x65\xca\x62\xca\xea\xc4\x15\x0b\x95\xef\x71\x4c\x56\x0d\x99\xa7\x79\x5a\x2d\xb6\x20\x2f\x6c\x25\x2b\x2e\xc9\xaa\x93\x92\xc1\x26\x2b\x2e\x95\x6c\x7b\x8f\x61\xc7\xdc\x74\x46\xbc\xb4\xe6\x55\x70\x36\xb5\x09\xc1\xe4\x19\x2a\x45\x13\x87\x92\xa6\xfe\x07\x9b\x28\x69\x10\x9a\xa7\x44\x77\xb9\x55\x4a\xe4\x96\x3d\x24\xa5\x39\xcc\xba\x68\xa5\x16\xdf\x69\xd3\x6c\xf0\x85\x34\x13\x82\x34\x53\x9c\x20\xe1\x9c\x2d\x57\x70\xa8\xab\x25\x2c\xd8\xd3\x6c\x52\xb3\xdd\x3b\xbb\xb2\xf8\x41\x6f\x18\x03\xb1\xb1\x21\xed\x76\x36\x28\x89\xda\xbe\x06\x79\x43\x8c\x11\xd6\xa2\x14\x3d\xf5\x4a\x70\x88\x61\x65\x0d\xda\x30\xdc\xf0\xd0\x1c\x23\x04\x0f\x8d\xce\x50\x73\xad\x95\xa8\xf7\xeb\x9c\xa7\x4b\x46\xf3\x36\xbf\x9b\x51\x01\x9d\x12\x8c\x61\xfd\x77\x77\xe9\x6e\xe9\x60\x04\xce\xa9\x0f\x4d\x2c\xfe\x21\xb0\x15\xed\x2e\xae\xce\x21\xc3\x46\xb3\x96\xc5\x6c\x9d\xb1\x01\x43\x93\x7c\xa0\x9b\x1c\x76\x2f\xa9\xd0\x37\xa7\x70\xfe\x13\x72\x19\x17\xbb\x11\x4d\xd6\xbe\xb2\xc9\xd2\x7f\xff\xfb\x9a\x95\xf7\xbb\x25\xfb\x63\x9d\x96\xac\xda\x4d\x76\x6f\xd3\x7c\x56\xdc\x02\x77\xdf\x4d\x76\xf5\x97\x4e\xab\x24\x22\x86\x9b\x00\xfe\x45\xce\x3a\x97\x21\x5c\xb3\x36\x0b\xb1\xfc\x3e\x94\x7f\x64\x6a\xd9\x4f\x0c\xc3\x8d\x4e\xf3\x9a\x5b\x3d\x21\xe9\x16\x1b\x68\x41\x95\xb2\x44\x12\x20\xe1\x7c\x9a\x70\x52\x51\x89\x68\x44\xd6\xb4\xd4\x48\x3f\x24\xa3\x0f\x0d\x99\xd2\xac\x05\x69\x9c\xd3\xac\x7f\x78\xb3\xa0\xf3\xf6\xf9\x8c\x2e\xa4\x34\x90\x55\x63\xb0\xf0\x92\xe5\xc0\x66\x65\x78\x2f\xe7\xe4\x70\x22\x6c\xa5\x63\xf6\xf2\x62\x06\x27\xd2\x0d\xb9\x19\xda\x92\xc9\x24\x0d\x62\x1b\x08\x0c\x4c\x8e\x58\x43\xee\xa9\x34\x60\x8f\x26\xa4\x2a\xa7\xe2\x4f\x5e\xe4\x53\x26\x7f\xbc\x85\xd9\x17\x9b\xda\x56\xd9\xba\xb6\x8f\x5f\xc0\xea\x49\x51\x49\xcb\xba\xce\xb1\xda\x7f\xa9\x23\x73\xe4\x48\x8f\x32\xa3\xd7\x00\x73\x26\x1c\xf4\xd7\x54\xe8\xae\xf7\x18\x15\x94\x47\x69\x2c\x36\x95\xd7\x8c\x3f\xe3\xbc\x4c\xaf\xd6\x5c\x70\xd6\xce\x35\x02\x28\xdf\x44\xec\x1c\xad\x7b\xa4\xc0\x3b\xa5\xb7\x60\xc9\xcc\x4b\x56\x2b\xa6\x00\x04\x50\x82\xbd\x55\x52\xb2\x9c\xff\x54\xcc\x98\x57\xb2\x65\x71\xc3\xf4\x93\x76\x03\x7f\xd5\x1b\x1a\x4a\x59\xc8\xc6\x8e\x13\x6c\xac\x08\x21\x70\x06\xe6\x20\xcc\xa2\xa9\x36\x75\xc4\x75\xad\x3f\x0b\x4c\x80\xbe\x84\x5a\x1d\x74\x50\x16\x4b\xe2\xd2\x9b\xe7\x5e\x9a\xa7\x32\x47\x55\x43\x6e\xe9\xfe\x6f\xd1\x45\x75\xb1\x7e\xf5\xf2\xd5\xab\x8b\xbb\x67\x93\x78\x5c\xf7\xae\xbf\xd9\xbf\xee\xd9\xce\x25\xcb\x1e\x8d\x04\x45\x48\x46\xed\x48\x73\x94\x41\x3a\x2a\xe9\x95\xe5\x6a\xbd\x84\x38\xa6\xd1\x0d\xfc\x41\x4e\x02\x9e\x94\x62\xeb\x50\xd7\xe0\x85\x5d\xd7\x9a\xb0\x3a\x89\xbc\xcf\x26\xae\xcb\xf7\xa4\x11\x0c\x37\xa2\xe5\xf4\xd2\xde\x3f\xfd\xfe\x87\x58\xd7\x81\x73\xe8\x1d\x79\xbe\x43\xec\xed\xd4\x25\x91\x0d\x09\x26\x84\x17\xd2\xc7\x61\x73\xfb\x59\xd8\xc8\x9d\xa4\xef\x3a\xde\x9b\x25\xfb\xe5\x80\x9d\x4e\x40\xf4\x47\x6c\x0c\xdc\x58\x56\x16\x07\xf2\x5e\xdc\x10\xb1\x56\xcf\x79\x32\xfd\x38\xe0\x5c\x77\xe9\x2d\x59\x79\x2d\xdd\x74\x6c\xdb\x08\x82\x08\x2a\xb3\x4d\x15\xaa\x99\x5c\xa6\x32\xc3\x32\x6f\x08\x4b\x86\x93\x8e\x5f\x7a\xe2\x89\xc1\x40\x24\xcb\x9e\x5b\xae\x2d\x84\x4c\xcb\xd0\xa5\xb7\x4c\x54\xe6\xf9\xee\x99\xbc\xd9\xe5\xeb\xe3\x27\x41\x29\x58\xec\xd5\xba\x41\x62\xdb\x0a\x2e\xec\x63\x76\x73\x72\x0f\xd8\xf4\x69\x59\x0d\xe1\x67\x40\x01\xec\x0f\x34\xc1\x0d\xc9\x92\x4f\xbe\xb2\xe7\xe3\x86\xb0\x3f\xb6\xe4\xa1\x6e\xe9\x6f\xcc\xc6\x08\xa6\x29\x68\x13\x11\xf4\xda\x29\x94\x6a\xd7\x2d\x4f\x79\x18\xa9\x1d\x69\x1c\x44\xb1\x28\xde\x76\xc1\xeb\xf5\xd2\xcc\x4a\x5d\x6f\x4e\xa0\x9c\xf8\xa0\x22\x55\x51\xf2\xa0\xf4\xc4\x1f\x08\xe8\x9e\x32\x71\x05\x3f\x1a\x72\xe9\xb1\x3b\xce\xf2\x19\x85\xc5\xa8\x7e\x5b\xf5\x29\x18\x32\x69\xb1\x01\x56\x67\xbb\x90\xd7\xf5\x43\x43\x2a\xea\x93\xf5\x26\x70\x56\x46\x47\x3e\x58\x40\x9c\xab\xa2\xc8\x58\x62\x71\x8e\xc4\x75\x51\x46\x93\x4e\x61\x95\x2a\x6c\x3c\xc6\x64\x83\x01\x25\x75\xbd\x44\x09\xae\x6b\x94\xd0\x87\x06\x93\x8a\x52\xba\x86\x34\x16\x30\xaf\xd5\xde\x1e\x3e\xa9\x4e\xd7\x27\x95\xc4\x3f\x96\x8c\x1e\x31\xda\x05\xe1\xb2\x32\x9c\xe6\x94\x45\x3c\x26\x8e\xb1\xb8\x39\x23\x2a\xb6\x0c\xc9\x88\xd2\x5c\xb4\x0e\x52\x7c\xa1\x4b\x2f\xad\x7e\xce\x92\x34\x57\x11\xc8\xb9\x68\x42\x4a\x61\x11\x7b\x69\x05\x7f\x51\x8e\x31\x0e\x51\x49\x13\x51\x62\x41\x53\xd7\x1d\x75\x5f\x28\x71\x18\xc5\x41\x5a\xd7\xfd\xe2\x4a\x1c\x96\xc1\x43\x43\x52\x3a\xf2\x89\xf8\x9c\xea\xe9\x40\x19\x29\x48\x8e\x71\x9b\x9c\x52\x34\x07\x5e\xc9\x2d\x34\xb1\x76\xfe\xd0\x03\xbb\x5b\x25\xf9\xac\x08\x94\x8a\xe1\x8c\x91\x62\x46\x63\x80\xb3\x2a\xc5\xc3\x25\xc2\xd8\x53\xb1\xfe\x68\xff\xe2\xc5\xfe\x35\x71\x1c\x4c\xd2\xea\x3d\x4b\x66\xf7\x42\xe2\x31\xa1\xa6\x74\x08\xba\xaf\xc2\x88\x45\x9d\x17\x5d\x43\x49\x43\x3a\x1d\x1b\xf2\xc3\x37\xe0\x21\x23\x21\x4d\xb4\x29\x4d\xbe\x1f\x8b\xd1\x37\xa2\x44\x81\x88\x00\x4a\x39\x1e\x92\x3c\xa8\xa4\x73\xcd\x0f\x1c\x8b\xe6\x61\x27\x69\x2f\x02\xec\xba\x4a\xc7\x28\x31\x38\x34\x88\x76\xbe\x5c\xae\xf8\xfd\xb6\x76\x76\xb2\xe0\xca\x06\xfb\x6d\x42\x3e\x22\x13\xf0\xbc\xbc\x49\xb2\xde\x3e\x4e\xa8\x04\x0f\x52\x6d\x00\x07\x10\xf8\xd9\xe0\x0d\x36\x69\x32\xce\x91\x9c\x02\x98\xb9\x90\x61\x40\x98\xa5\x81\xe6\x3b\xc9\x4f\x4b\xd7\x1d\xf9\x82\x22\xd5\x98\x44\x79\x4c\x72\x22\xfe\xe0\x93\x7c\x3c\xc6\x27\x60\x70\x10\x9f\x29\x43\xa0\xce\x5c\x38\xf0\x81\xca\xe5\xa3\x19\x69\x43\x78\x99\x2e\x3f\x25\x5d\x1c\x27\x40\x42\x0f\x68\x29\xe5\x16\xe0\xb1\xc8\x32\xf9\xc8\x7a\xf2\xcb\x4e\xa1\x57\xd7\x51\x9b\x47\x5b\xab\x5a\xe8\xa5\x15\xbd\x1f\x6a\x71\x53\x4a\xa4\xb1\xfc\xda\xd6\x26\x22\x16\x07\xcc\xe4\x76\x2f\x09\xc3\x98\x94\x0d\xd1\x7e\x81\x7d\xdf\x97\x4e\xab\x79\xb8\xe7\x07\x6b\x4d\x14\x0c\x40\x73\xa0\xaa\xad\xe6\x8d\xb1\x36\xaf\x8a\x99\x20\x69\x67\xf4\x61\x8c\x19\xe0\x01\x50\x1e\xe5\x71\x6b\xa7\x56\x50\xea\x29\x61\x0d\xb9\x2e\xd9\x6a\xa3\x55\xad\x03\x6a\x14\x2b\x2c\x1e\xd6\x42\x09\x8e\xca\x93\xf4\xb4\x38\x49\xc7\x63\x3c\xe2\x08\x4e\x66\x52\x2c\x53\xf2\x28\x34\x02\x71\xcf\x86\x8b\xe9\x8a\x4f\xcb\xeb\x47\x70\x63\x3a\x21\x15\x95\x10\xf8\x86\x8e\xf2\xb6\x27\xc5\x69\x7e\x52\x8c\xc7\x58\xb1\xc3\x94\x8a\x2a\x8b\x98\x14\xa4\x84\x30\x04\x95\x3d\x41\x62\xd0\x03\x35\x15\x8a\x3b\x7e\xee\x03\x63\x27\x91\xc2\x35\x8a\x09\x68\x2d\xeb\x74\x16\xf8\xa4\x5a\xaf\xc4\x56\x29\x58\x35\x98\x6c\x75\xd6\x02\xe6\x3a\xcf\x23\x79\x65\x0e\x70\x63\x5a\x6e\xdc\xc2\x44\xe9\x14\xce\xf7\x52\x90\xec\x4a\x5f\xd0\x5d\xb9\x91\xd8\x7d\x65\xce\x0e\x05\x9d\xec\xbe\x48\x38\x53\x58\xea\x8a\xbd\x48\xc6\xa5\x2a\x36\x48\x25\xbb\x4e\x7f\xbf\x98\x45\x86\x2f\x39\x63\x3e\x76\x62\x27\xa6\xdc\xe3\xc5\x9b\xe2\x96\x95\xcf\x93\x8a\x21\xdc\x48\xdb\xd1\xdd\xa6\xbd\xbf\x95\x90\xa4\x22\x6b\x92\x91\x29\x81\x14\xa6\x64\x45\x96\xe4\x06\xa2\xea\xae\xc8\x25\x75\xaa\xf4\xcf\x3f\x33\xe6\x8c\xfd\x47\x82\xa5\x8a\xc6\x92\x5b\x7b\x2b\xa6\xb2\x65\x91\x73\xba\x66\x08\x93\x77\xf2\xcf\x33\xf9\xe7\xa3\xfc\xf3\x61\x58\xa7\x16\xdb\x1a\xee\xba\x68\x0e\x90\x46\x93\x86\x3c\xa7\x0f\x4d\x7f\x0f\xf6\x56\x10\xe6\x7b\xfa\xd6\x5b\x15\x2b\xf2\xb3\xf8\x2b\xb6\x72\xbf\xeb\x1f\x2f\xe8\x5b\xb5\xe3\xfb\x89\x6e\x5b\x3a\x13\x62\x11\x59\x79\x9a\x9f\x94\x52\xec\xb2\xa8\x8c\xed\x90\x7c\xcd\xf3\xf7\xfc\x86\xbc\xa6\x0e\x24\xa9\x65\xb3\xba\x02\xaf\x62\x36\xab\xe1\xb4\xa8\x4e\xd6\xbc\x98\x17\xd3\x75\x05\xbf\x56\x59\x72\x5f\x4f\x8b\x9c\x97\x45\x56\xd5\x33\x36\x67\x65\x3d\x4b\xab\xe4\x2a\x63\xb3\x5a\xe2\xbc\xd5\x69\xb5\x4c\x56\x75\x56\x14\xab\x1a\x12\x50\xac\x32\x56\x17\x2b\x96\xd7\x25\x4b\x66\x45\x9e\xdd\xd7\x6a\x7b\x3d\xab\xab\x69\xb1\x62\x33\x87\xbc\xa1\x4e\x74\x71\x71\x77\x30\xb9\xb8\xe0\x17\x17\xe5\xc5\x45\x7e\x71\x31\x8f\x1d\xf2\x8a\x3a\x28\x0c\x2e\x2e\x2e\x2e\xbc\x3a\xba\xb8\xb8\xdd\x8b\xeb\xe8\xb7\x8b\xc9\xde\xc5\xc5\x5d\x32\x89\xf1\xd8\x21\x7f\x52\xe7\xe2\x22\x72\xc6\x6f\xc6\xce\x23\xe4\x8c\x5f\x8d\x1d\x0c\x69\x2b\xe0\x3a\x7a\xf4\xdb\x37\xf5\xe8\xdf\x71\x48\xb1\xba\x13\x06\xdf\xa2\xb6\xc4\xdf\xc4\xdf\x6f\x63\xfc\x08\x7f\x5b\x5f\x38\xfd\x07\x17\x8e\x78\x72\xe1\xd4\xaa\x5c\x5c\xab\x52\x2e\x2e\x62\x87\xfc\x48\x9d\xa0\xad\xf0\xe2\x02\x21\xf4\xf5\x45\xe3\xba\xff\x04\xe1\xe8\xe2\x22\x8e\x6b\x67\xfc\xe7\xd8\xc1\x8f\x70\xed\x3d\xc2\x17\x17\xa2\x6a\xf2\xbd\x9d\x56\xe6\xcd\xd8\x19\x3b\x04\x92\x76\xfc\xc3\xbe\xef\xfc\x06\x6d\x1c\x43\xc1\xbf\xa9\x42\x63\xac\x6b\xc1\x8f\x64\x1f\xc6\xdf\xa8\x8f\x7f\x1d\xf8\xf8\x11\x91\x7f\x1c\x4c\xfe\x18\x7a\x8c\xa2\xb3\xf1\xbf\x45\x13\xdf\x8c\x1d\x6c\x5e\xfd\xa5\xd7\xbc\xfa\xcc\xc1\xe4\x5f\xf6\xcd\x1f\x31\xf9\xa1\x5f\xde\xab\xb1\xf3\x8d\x83\xc9\xdf\xe8\xc3\xeb\x17\x41\xe7\xd9\x5f\xd4\xe8\x3a\x98\x3c\x7f\xf3\xec\xfc\xbc\xfb\xf4\xe2\xc2\x6b\x9f\x7f\x78\xf6\x43\xf7\xa9\x7c\x54\x47\x8f\x62\xf1\xf8\xd9\x87\x0f\xef\x83\x5e\xbd\x7f\x62\xf2\xf3\xf9\xcb\x7f\xbc\x78\xd7\x7f\xf0\x23\x26\xcf\x7f\x7c\xfd\xa6\xd7\x98\x00\x01\xe1\xc2\xa6\xa4\x16\xdb\x8e\x3a\xe7\x0b\xf1\xff\x9e\xb8\xc0\x7b\x68\x2a\xf6\xef\x75\x31\xdf\x03\x73\xa1\xa4\x08\x35\x5a\xec\x86\xe5\x75\x31\x9b\xd5\x08\x45\xe3\xbd\xb8\xc6\xe8\xe2\x62\xf6\x08\xe7\x75\x4b\x94\xea\x81\xba\xbe\xb8\x98\x8d\x71\x8d\x0d\xb5\xc1\xec\x3b\xa9\x83\x89\x50\xd5\x7b\x3d\x15\xc4\xfe\x7a\xec\xe0\x6f\xd4\x2b\x39\x63\xb3\xea\x79\x91\x73\x76\xc7\xfb\x7d\x13\xc5\xc9\xb9\x0b\xda\x56\xb1\x3f\xea\x6b\x5e\x67\xb2\x47\x6d\x07\xbb\x7d\x40\x61\xb0\x77\x71\x31\xc3\x21\x34\xdd\x6a\x18\x0a\x69\xf4\xdb\x5e\x5c\x7f\xa3\x9a\xd8\x90\x6f\xe8\xfe\x8f\x1f\xde\xbe\xf9\x66\x3f\x25\x7f\xa7\xfb\xa2\x81\x69\xbe\x5a\x73\xc5\x57\x6a\xd1\xae\xa4\x64\x49\x7d\xb5\xe6\xbc\xc8\xb1\x78\xef\x9f\x74\xff\xb7\xc5\xc5\x4c\xfc\xfc\x2f\xba\xff\x5b\xf4\xdb\x43\x3c\xbe\x78\xb8\xa8\x1e\x5d\x44\x79\xc2\xd3\x1b\xb6\x7b\x71\xbb\x4f\xfe\x2a\x4b\xfb\x0b\x8a\x04\x23\x18\xe3\x1a\x5d\xdc\x8e\x71\x7d\xe1\xe9\x1b\xf8\x9b\x7d\xc2\x18\xdd\x8f\xc6\xff\x8e\xf7\x09\x67\x1d\x5a\x83\xc5\x15\x5d\x5c\xcc\x92\xbd\x79\xfc\xe0\x93\xe3\x06\x7a\x11\xd6\xb2\x8b\xb8\xf6\xa0\x07\x62\x4d\x94\xdb\x3c\x79\x9d\xc9\x9d\x33\xe6\x7b\x00\x08\x6e\x94\x80\x11\xcd\xeb\xba\x0c\x79\x90\x9f\x4e\xc2\x01\xec\x74\x94\x8f\x25\x82\x78\x30\xf8\xf0\xec\xcc\x9f\xd4\x80\x36\x4e\xfc\xc9\xc1\xa1\x9b\xd7\x12\x5c\xbc\x21\x39\xa3\xfb\x28\x12\xdc\xee\xce\x9f\x5f\xdc\x7d\x37\x8f\xeb\xdf\xf6\xc2\x8b\x19\xae\x7f\xdb\xfb\x46\xf1\x41\xf5\x64\xef\x62\xfd\xea\xd5\xab\x57\x62\x18\xf6\xaf\x49\xca\x86\x05\x10\x0f\x9d\x8b\x09\x9c\x0e\x84\xce\xff\xf5\x7f\xfe\x1f\x4e\xc0\x4c\x0a\xa6\x3d\x1f\x8f\x9d\x8b\x0b\x67\xcc\xe0\x88\x56\x34\xed\x19\x37\xfe\x2e\x7b\x3e\x36\x86\x41\xe4\x1f\xe3\xb1\xb3\xeb\x04\xf2\xf5\x86\x14\xcc\xde\x90\x2e\xc4\xce\x36\x61\xf4\x92\x0d\x78\x03\x40\x20\x3d\xf3\xb4\xc0\x70\x5d\x67\x9e\xb2\x6c\x26\xa3\xbc\xa9\x34\x10\xfe\x94\x2c\x59\x4f\xa8\x93\x87\x59\x5a\x06\x4e\x6b\x33\x73\xc0\xf4\x1d\x38\x19\xbb\x66\xf9\xcc\x51\x46\x6b\x8d\xc7\xf4\x96\xbe\x90\x9a\xe6\xad\x07\xab\x52\x7c\x51\x61\xd2\xbd\x7a\x1b\xd9\xd7\xda\x2a\xd3\x9a\x28\xa5\xb1\xfb\x1d\xc3\x0f\xbf\xd3\x07\x28\x37\x78\x3b\x9c\x8e\xea\x67\x55\x2d\x23\xaa\x5a\x8e\x71\xb3\x55\xaf\x65\x96\x5a\x7b\xc2\xa2\x52\xe9\xb0\xe3\x71\x7c\x82\x4f\x8c\x02\x5b\xee\xf9\x8d\xe5\xcb\x53\x31\x95\x52\x52\xfb\x6a\x90\x4a\x69\x30\x2b\xa1\xb9\x48\xa7\xf6\xe2\x36\x67\xe5\x8b\x56\x4f\xe1\x21\x37\xdd\x09\x9e\x4a\xaf\x43\x70\x5c\x37\xca\xfd\xc8\x32\x20\x8a\x6d\x9f\xd8\xd2\xbc\x74\xdd\xa7\xf2\x8f\x0f\x97\x26\x5f\x93\x74\x83\x72\x5d\x84\x44\xc1\x9d\xca\xea\x9a\x07\xb7\x42\x4f\x9e\xb9\xee\x02\x71\x4c\xb8\xd8\x6d\xcc\xc8\x52\x66\x60\xf7\x55\xb9\x68\x4e\xff\x0a\x59\x9a\x85\x2e\x2c\x14\x92\x82\xce\x23\x3f\x86\x77\x9e\x52\x51\x17\x98\xe7\x51\x46\xc1\xb6\xaa\x8c\xb4\xdf\xdf\xbf\x9e\xa1\xa2\xcd\x13\x0f\x0d\xc9\xbc\x74\x46\x29\x2d\xda\xfc\x59\xa0\xfa\x66\x98\xe4\xe6\xb0\xf7\x1a\xac\x18\xd7\x03\x45\xb9\xee\x15\xe2\x24\xc3\xae\xfb\xb9\x72\x20\x81\x7c\x74\x10\xeb\xe7\x9a\xc4\x72\x62\x37\xb1\xfa\xfe\xfe\x43\x72\x2d\x08\x57\xc2\x50\x8a\x16\x42\xe7\x0e\x63\xec\xba\x65\xf7\xcd\xe7\x59\x52\x55\x3f\x41\x8a\x20\xbe\xe5\xc9\x67\x6b\x33\x6f\x8a\xde\x90\xbc\x81\x53\xad\x3f\xaa\xc4\x75\x47\x1f\x23\x26\x56\x67\x2c\x36\xe9\x37\x75\x3d\xba\x91\x11\x36\x72\xdb\x0e\x13\xd1\x5a\x82\x61\x07\x3b\xbc\xe6\xe4\xcc\xdd\x53\x26\xa8\x8b\x88\xad\xeb\x4b\xd7\xfd\xc5\x94\x05\x04\x8d\xa6\xb4\x67\x04\x77\xd2\x99\x83\x71\x38\xa5\x53\xb3\x37\xcd\x19\x49\x19\x80\x6a\xf7\x5f\x24\x53\x7a\x89\x49\x45\xd1\x8a\x26\xa2\x4c\xad\xb1\x56\x7b\x7b\x27\x78\x05\x6e\x41\x7f\x71\xc6\x53\xd1\x9b\xf1\x15\x43\xe2\x0e\xde\xb9\xa7\x2b\x05\xd1\x4e\x20\x5d\x19\x63\xba\x4d\xae\x7b\xcf\x10\xb7\x0c\xeb\xb8\xae\x79\xd3\x3a\xcd\x5b\xa3\x79\xed\x81\x35\x58\x86\xcf\x15\xe5\xb3\x2c\x43\xf7\x30\x8e\x72\xd1\xdf\xe1\x87\x8f\xf2\xe8\xa8\x51\x87\x99\x0f\x53\x4a\xe9\xa5\x98\x30\x69\xac\xef\xf5\xb8\x31\x1e\x75\x6b\xc4\x4c\xcf\xff\x41\x9c\x6f\x7c\x07\xab\x75\xdb\x2e\x66\xb1\x45\x50\x60\x7b\xed\x86\xbc\xeb\xa9\x6d\xd9\x55\xa5\x4b\x92\x18\x04\x7c\x96\x7b\xd3\x64\xba\x50\x10\x59\x06\x09\x98\x47\xcc\xab\x16\xe9\x9c\x23\x0c\xe8\xb1\x30\xfd\x34\xb5\xd8\x47\xc6\x6c\x87\xac\xe8\x32\xa6\xa3\x09\x61\xed\xf3\x29\x6b\x2d\xa3\xb3\xfe\x11\x89\xe1\xd0\xfa\x64\x50\x3a\xe5\x31\xc4\xb1\xc5\x24\xb5\x31\xc6\x8c\x98\x3d\x13\x10\x72\x33\x7c\xe0\x01\xcc\x42\xec\x67\xad\xe6\xce\xd9\x26\xd3\x54\x9b\xc2\xda\xc1\x24\xa5\x1a\xde\xf5\x24\x15\xa4\x92\x7b\x09\xe7\xe5\x8f\x49\x3e\xcb\x58\x54\x46\x69\x1c\xdb\xfe\xa5\x0b\xd6\x31\x82\xb8\x2e\x84\x2d\xb9\xae\x6f\x04\xce\x07\x38\x28\x97\xd6\x99\xf6\x5a\xe7\x07\x83\x44\x71\x7b\xdc\xbe\x02\x56\xda\x61\x47\x25\x6c\xed\x4f\x4a\x2a\x5d\x78\xce\xd3\xab\x2c\xcd\xaf\xc1\xf3\xb3\xb4\x76\x5c\x7b\xbe\xb1\x54\x84\x7e\xb0\xe7\xb7\xad\x9c\xb1\x4f\x26\x64\x70\x40\x83\x72\xe8\xf6\xf5\x2a\x86\x18\x4e\x3a\x28\x65\xd6\x50\xae\xb6\x95\xab\x86\x63\x4b\x69\xaa\x99\xa8\xad\xb7\xac\x6b\x47\x2a\x6c\x70\xb5\xad\xbe\xe5\x67\xfa\x31\x2f\xca\xa5\x93\xe6\x70\xe6\x6c\xd3\x87\x32\x8e\x69\xc5\x20\x74\xb2\xe4\x8a\x65\xf2\x4d\xeb\xb7\xf5\x4d\xa7\x00\xf3\xa1\x68\x4e\xc0\xfb\x97\x69\xf5\xc2\xba\x51\xd7\xf6\x9d\x11\xa5\x23\xe6\xba\x89\xa0\xe7\xa1\xaf\xad\xda\x45\x9f\xed\x67\x56\xbf\x6f\xec\x7e\x67\x0c\x6d\x76\x7d\x97\xd3\x31\x27\xf6\x23\x38\xf3\xd7\x34\x9e\x42\xa4\x64\x14\x13\x4d\xdb\x84\x63\x92\x98\x44\xd1\x27\x89\xa0\xf4\x32\x4a\x69\x11\x25\xb1\x60\xee\x82\xd0\xe9\x08\xe5\xe2\x8f\xf8\x8d\x01\x05\xc7\x8a\xb2\xe9\xac\x79\x8d\xc8\x37\x12\x44\x3f\x24\xb8\x5c\x97\x35\xc6\xb6\x5a\xd2\x8a\x79\xca\x4c\x44\x21\x5c\xaf\x62\x5e\x5a\xfd\xf3\xed\x9b\x01\x3f\x4a\x06\xce\xb6\xd5\x2a\x99\xb2\x7f\xbc\x7f\x4d\x4a\x8a\x58\x5f\x3b\x60\xd8\xd8\x4f\x54\xc5\xda\x66\xfb\x8d\xe4\xde\x1c\x40\x92\x4b\x43\x8d\x75\xed\x88\x2d\x84\xd8\x4d\x2c\xa0\x2d\x8c\xeb\xd2\x06\x2c\x3b\x29\x49\x28\x0b\x37\x6b\x0d\x6e\x8d\x21\x4c\xea\x26\x4f\xc1\xb3\xad\x5d\xe3\x49\xbf\x59\x21\x5a\x51\x34\xa3\xc9\x46\x7b\xc9\x92\x8e\x0a\x34\xc3\xe4\x56\x96\x84\x52\x3a\xf3\x54\xae\xeb\x5f\x52\x76\x8b\x5d\x37\xf5\x78\xb1\x1a\x51\x2a\x54\xa4\xd4\x4b\x66\xb3\x97\x37\x4c\x86\x3b\xb3\x9c\x95\xe1\xe6\x2d\xe4\xac\xf3\xac\x48\x66\x0e\x29\x18\x19\xf9\x38\x48\x05\x23\x4b\xa6\x0b\x78\x4b\x14\x68\x5d\x22\xa7\xc8\xdb\xd7\x31\x26\x25\x70\x3d\x10\x42\x15\x9d\x0e\x29\xdb\xbb\xcc\x9b\x6a\x3d\x81\x3a\xa9\x43\x46\xac\x27\xad\xcd\x63\x07\x37\xa2\xc4\x21\xc2\xd8\x5a\xb6\x7d\xa0\xad\x85\xc6\xf3\x62\x29\x85\x86\x83\xb1\xaa\x6e\x53\x45\x72\x1e\x39\x5a\xd6\x6f\xd6\x6a\x34\x1b\xfa\x5f\x92\x34\x66\xdb\x74\x24\xf9\xa5\x50\xe9\xb6\x34\x71\xd5\x69\x22\xc3\x42\xd5\xbb\x24\xa3\x5e\x81\x92\xdc\x86\xee\xa2\xcb\x7e\x33\x45\x65\x21\xca\xbd\x79\x9a\x71\x56\x7a\xaf\x5f\x0c\x2e\x07\x2d\xff\x39\x23\x65\x7b\x48\x3b\x38\x86\x9b\xca\x93\x60\x83\x4d\x43\x72\x48\x37\xd0\xad\xa1\x0f\xb3\xd9\x57\x92\x5d\x77\xd9\xf2\xf5\x9e\xd2\xdb\xb6\xa3\x0c\xa3\x32\x0e\xa2\xb8\x69\x70\xf0\x1f\xe8\x8a\xac\xaf\xcb\x5c\x4c\x97\x24\x6f\xdf\xbc\x27\xbb\x6a\x5a\x24\x56\xbe\x74\x90\xfe\x4f\x74\x5e\x9a\x79\x07\x87\x40\x6c\x39\xa0\x18\x54\xd2\x62\x4b\xab\xb0\xdd\x1a\xad\x89\x47\x85\x74\x16\x4f\x29\x1f\xa0\x13\x86\x61\x33\x57\xd0\x54\xed\xe3\xfe\x7b\x35\x28\x1d\x12\xa6\x46\x8f\xc1\x87\x67\x3f\xd0\xe1\x75\xf9\xa9\x9c\xc8\xbd\xf1\xb1\x3e\xda\xba\x6b\x09\x60\xff\x10\xf2\x4d\xcd\xd8\x24\x3a\xed\xef\x69\xf5\x39\x99\x39\x48\xd9\x5a\x38\x78\xd4\x3d\x92\x3e\xa0\x0f\x4a\x53\x2a\xe0\xf8\xe6\x04\xfb\xe0\x16\xde\xf2\xe4\xbc\xef\x84\x9f\x6b\xdd\xba\x30\x94\x01\xe6\xc0\xfe\xb8\x58\xfb\xaa\x2f\x23\x9b\xee\x37\xcb\x36\xc9\xfd\x96\xad\x16\xc3\x0d\xb9\x17\xbd\xbd\x11\xff\xc8\x0d\x57\xcb\xa5\xfa\xe3\x06\xfb\xad\x1e\x63\xda\xe4\x48\x79\xce\x4a\x21\xe9\xa8\x73\x9a\xec\xa6\x33\xfa\xad\x33\xbe\x1c\x3b\xdf\x9e\x9d\xee\x27\x67\xa7\xd2\x60\xd6\xde\xde\xbb\x28\x2f\x2e\xbe\xdd\x5d\x56\x49\x96\x15\xb7\xd3\x64\xc5\xd7\x25\xa3\xdf\x7e\x7b\x76\x5a\xac\x94\x99\x40\x5a\xee\xe1\xde\xbe\xbc\x79\x76\xba\x2f\x6f\x9f\x39\x84\x6d\xce\xae\x13\x75\x8b\xfb\x8d\x7e\xfb\x6d\x6c\xf8\xb3\xeb\xde\xa8\x6c\xde\xd1\xa3\xdf\xbe\x89\x69\x6b\x44\xff\xb6\xbe\x70\x2e\xc0\xf6\x3a\x58\xa8\x6e\x49\x5b\x54\x5d\xeb\xa2\x5a\x73\x7d\x18\xc0\x32\xa8\xa5\x01\x73\x5b\x59\xe9\xec\xdf\x54\xf6\x7f\xa8\xb4\x7f\xd3\x2d\xdf\x05\xea\x3c\x63\xe0\x9b\xf6\xd1\xe0\x97\xc9\x5f\xa0\xba\xf1\xa3\x81\x4f\xbd\xbf\x78\xe3\x68\xfc\xef\x18\x24\x66\x6f\x7a\x59\x6f\x3e\x17\x25\x9b\xd3\x6f\xbf\xdd\x35\x3a\xe3\xb7\xfa\x57\x77\x82\x07\x9f\xcb\xd9\xdb\xb7\xa6\x6f\x67\xcb\x06\x4d\xea\xe8\x78\xa7\xbf\xc5\x16\xea\xb9\x43\x1c\x93\x7c\xa7\x2b\xb2\x39\xee\xbd\x2e\x33\xe0\x3a\x2f\xb6\x4d\x83\x78\x4e\x67\x43\xb4\x01\x5f\x4a\xdb\xb2\x39\x6f\x71\x30\x39\x00\x79\x30\x30\x31\x2c\x87\x4e\x0e\x94\x64\x1e\x11\x27\xd0\x63\xe1\x60\xb2\xb1\x6e\xcc\x88\x8d\x26\xdb\xab\x69\x0b\xf8\xd2\x7a\x86\x8a\x79\x44\x82\x3b\x07\x13\xfd\x25\xf1\x1e\x05\x0e\xc0\xdc\xa3\xd2\x83\xdc\x0c\xac\xd2\xef\x6b\x66\x70\x4d\x57\xfa\x51\x5d\xaf\xbc\x5b\x76\xf5\x31\xe5\x6f\xbb\xef\x8a\x07\xcb\xe2\xcf\x81\xbb\xc5\xd0\x9b\x55\xef\xa6\xe0\x2e\x7d\xad\x47\x8c\xca\xb4\xc8\x73\x58\x78\xf0\x3e\xbd\xd6\x61\x87\x70\x40\xd3\x5e\x45\xd5\x48\xac\x73\xe8\xd9\xbd\xea\xd9\x88\x3a\xe4\x47\x41\xd5\x37\xf4\xc6\x0c\x98\x65\x40\xbf\x51\x76\x97\x5a\xe8\x76\xf7\xf4\x7e\xe8\x9d\x7b\xfb\x1d\xae\xc7\x63\x05\xce\xd5\x49\xc9\xb4\x6e\xfe\x73\x51\xa5\xa2\xd9\x98\x5c\x51\x5e\xd7\xd6\x6b\x39\x4f\xd2\xbc\xc2\xe1\x90\x03\xc3\xd3\xce\x8e\x3d\x64\x7d\x1d\x3d\x10\x3b\x7b\xde\xb5\x35\xec\x58\x47\xaf\x79\x5d\x8f\xd0\x28\x97\x66\xce\xdc\x14\x24\xee\x96\xa6\xea\xb0\xfd\x89\x72\x1c\xb0\x6d\x4d\x77\x5d\xff\xd8\xdd\xfa\x14\x7c\x8e\xfa\xf2\x32\x9d\x23\xe9\x59\x7a\xc2\xa9\xdd\x46\xd0\x17\xb8\xa5\x0b\x8c\x26\x3b\xc6\x9c\x42\x3e\x50\x1e\x6e\x94\xc3\xec\x63\xdc\xb9\x58\x05\x13\x85\xc0\x36\xda\xda\xa6\xbd\x11\xdf\xf6\xc8\x88\xda\xba\x46\xbe\x8b\xf2\xc1\x2d\x9c\x8c\xb3\xec\xdb\x7d\x71\xb8\x7d\x10\x38\x0e\x7c\x5c\xd7\x23\xe9\xdb\xf6\x82\x89\xcd\x0c\x9b\x49\x1f\xa0\xe1\x2f\xa0\x96\x3c\x14\xdd\x9b\xd5\x75\xaf\x11\x94\xd2\x5b\xd7\xbd\x42\xb7\x84\xe1\x70\xcf\x0f\xb8\x7c\x8b\x6f\x7b\x8b\xe3\xd0\x0f\xa6\xe1\x4f\x68\x4a\x18\xde\x13\x7f\x38\x0e\x26\xc1\x91\x9b\x8b\xaf\xfd\xa1\xf9\xd9\x36\xae\xa5\x71\x42\x69\xa7\x0d\x14\x1e\xeb\x32\x81\x64\x16\x15\x55\x51\x06\xa3\xb4\xae\x47\xc6\xae\x0c\x3d\x32\x8d\x0e\xfd\x20\x15\x17\xc5\x50\x03\x21\x38\xc7\xb6\x49\x2b\x0b\xd6\x8e\xf2\x42\x02\x2b\x93\x4d\x3d\x89\xb7\xce\xa5\xfd\xaf\xd4\x2f\xf1\x8d\x97\xaa\xfe\x4b\x27\x49\x94\xc7\x94\xd2\x2a\xca\xe3\x13\x9c\x8f\xc7\x86\x08\xc2\x05\x43\xe2\x21\x11\x8f\x70\xa0\xde\xbb\x15\x0d\xae\xf4\x6f\x3f\x98\x34\x64\x86\x83\x59\x43\x2a\xa6\x99\xdd\xf0\xa1\x13\x9c\x5d\x40\x44\xa1\x0c\x2b\xc4\xf6\x27\x86\x75\x6e\x4c\xc5\x10\x09\xea\x13\x06\xd8\xfc\xf5\x4a\x70\xdd\x25\x58\xbf\xb9\xb1\x7e\xdf\xd7\xf5\xe8\x5e\xd9\x17\xa4\xd3\x9a\x65\x0f\xe7\x18\x63\x5e\xde\xab\x73\x3d\xc3\x19\xb9\x8c\xde\xac\xeb\x01\x6e\x2a\x08\x52\xb3\x1c\x75\x3a\xd2\xde\x30\xec\xc4\xd8\x05\x2d\xe3\xe8\x47\x99\x20\xab\x69\x47\x84\x93\x99\x1c\x8e\x88\xc5\xd8\xc0\xff\xc2\xc8\x68\xf6\x33\x38\x9a\x9f\x19\x95\x2b\xe5\xa9\x5d\x31\xb0\x0e\xf4\x8a\xf8\xf4\xc7\x3b\x26\xc2\xa5\xb5\xa6\xf6\xbc\x6b\x94\xfb\xe4\x73\x39\x5a\xf6\x9b\xa4\xf7\x26\x0e\x53\x38\xb1\x1a\x2d\xf5\xee\x61\xa7\xbf\x43\x29\xc2\x22\xb0\x8d\x18\x75\x3d\x5a\x86\xbd\x2d\x31\xc7\x01\x2a\x06\x36\x95\x72\x42\x0b\x0f\xf2\x20\xcd\x53\x36\x0b\x15\xb4\x43\x00\xa6\x64\xd1\x7f\x56\x4d\x93\x15\x1b\x08\x33\xe8\xf9\xce\xc9\xf3\x09\xf9\x49\x59\x76\x28\x71\xd3\xb7\xd2\x39\xbf\xcf\x79\x72\xb7\x0b\x6f\x92\xdd\x75\x5e\xb2\x69\x71\x9d\xa7\x7f\xb2\xd9\x2e\xbb\x5b\x95\xac\xaa\xd2\x22\x0f\x76\x9d\xb1\x2a\x72\x9d\xa7\x7f\xac\xd9\x79\x51\x0e\xd9\xad\xac\xad\x13\xac\xfa\x39\x1d\x95\xde\x8c\x71\x36\xe5\x2f\xd6\xab\x2c\x9d\x26\x9c\x55\x64\x4a\x15\x03\x3d\xe7\x42\x4f\x01\xcb\xb4\x3c\xb4\x15\x0a\x8b\x78\x80\x3e\x60\x32\xd7\x41\xc9\x94\x41\xa6\xb3\x13\x0c\x12\x25\x2a\x62\x30\x56\xa9\x5d\x55\x81\xd5\xe2\x07\xc3\x39\x53\x5e\xc6\x60\x44\x24\xbe\xa1\xcf\xa9\x0c\x00\x66\x0d\x49\x69\x05\x83\xff\x81\xdd\x0d\x75\xa0\xa4\x8e\x03\x9c\xb1\xb0\x04\x73\xbb\xcb\x16\x5b\xbb\xa2\xae\x9f\xca\x3f\x3e\x5c\xca\x90\xba\x0d\xe7\x42\x08\xbd\x00\xa7\x85\xbc\x05\x5e\xb0\x6f\x42\xb3\x19\x65\x1e\x38\x28\x80\x22\x78\xc2\x4e\x98\xc2\xf0\x50\x06\x77\x5c\x8e\xc1\x2b\xd5\x1c\x01\x1e\xca\xaa\x8f\x6c\x76\x2a\x5b\x0a\x58\x8f\x8d\x71\xac\x83\x71\x93\x9b\x77\x28\xa3\x4d\x09\x57\x36\x04\xe5\xd2\x06\x29\x19\x4d\x45\x1f\xac\x53\x98\xe0\xf1\x84\x48\x7d\xfc\xe7\x8a\xad\x67\x45\x90\x31\x99\xb2\x2b\xf8\x1b\x69\x97\x47\xf0\x00\x51\x77\x33\xf1\xb7\x64\x19\xb8\x34\x04\x0f\xce\x99\x13\x6c\x9e\x6c\x4b\xbf\xf7\xd1\xa4\x21\xce\xee\xc0\xf3\x86\x38\x63\x73\xbb\x64\x37\x69\xb1\xae\x54\xf7\x3b\xdf\xfe\x7b\xdb\x4b\x4d\x43\x56\x25\x7b\x05\x76\x9f\xe0\x01\x5c\x63\x86\x6c\x53\x91\x1f\x03\x7e\x48\xcf\x06\x44\x58\x74\x18\x53\x24\xfe\xad\x6b\x16\x1d\xc1\xbf\x8f\xe3\xba\xb6\xd7\x94\x7a\x55\xec\xcd\x80\x08\x0f\x64\x12\xc6\xc3\x98\x3a\x62\x69\x44\x87\x31\x9c\x67\x91\xd6\xfd\xe0\x08\x37\xca\xeb\xe6\x93\x6d\xe9\xf0\x18\xe2\xe4\x7c\x21\x2b\xf0\x63\x53\xd2\x21\x0e\x55\xeb\xf4\x8a\x46\x2c\x9a\xc4\xa2\xe1\x47\x31\x1d\x23\xf1\x27\x14\x4d\x16\x3f\x8f\xe3\xba\xf6\x71\x70\xf0\x08\x39\xec\x86\xc9\x50\x4c\xf8\xd6\x29\x66\x33\x7d\x05\xf9\x1f\x1f\xcb\x6f\xbf\x8b\xc7\x2c\x7a\xb2\xf1\x42\x20\xfe\xb8\x6e\xbf\xc6\x46\xbb\x18\x0d\x2d\x9d\x91\xa8\xde\x75\xc5\xe8\x68\x5a\xfb\x9b\x07\x63\xa0\x4e\x34\x45\x19\xa1\x58\x89\x01\x74\x28\x14\x6f\xd2\xee\x90\x07\xa5\xeb\xfe\x4b\xbe\x5e\x42\xb0\x3c\x4d\x50\x09\xb9\x20\x55\x2a\x2b\x9d\xe8\xdd\xc1\x8e\x39\x59\xd8\xe3\x78\x4f\xff\xc6\x30\x31\x13\x51\xee\xa4\x1d\x43\x2e\x7a\x7c\x10\xeb\xe0\x32\xb8\x63\xcf\xd6\x21\xc6\x8d\x20\x68\x49\x42\x1f\x9e\xfd\x30\x10\x61\xd1\x37\x1e\x0e\x1e\x30\x29\xa3\x50\xb8\x11\x40\x31\x9a\x0c\x67\x0f\x35\x27\x04\x82\x0d\x0e\x9f\x5d\x29\x23\xa2\x74\x19\xdb\x6c\xd7\xb9\x3a\x1f\x37\x71\x1e\x90\x1e\xcc\x76\x14\x42\xbf\x19\xcf\x36\x36\x76\xa4\x77\x50\xfd\x0d\x06\xc3\xdd\x39\x62\x83\x08\x52\x72\x0e\x06\xf8\xda\xb4\xb5\x30\x59\x17\x76\xca\xb2\x5e\x58\xd9\xa0\x8d\xde\xc1\xb0\xc0\x1a\xdc\x90\xde\x82\xed\xf8\x5a\x9b\xdb\x06\xed\x50\x29\x02\x28\xb7\xc2\x85\xa4\x47\x76\x1a\x8a\x1d\x9f\x18\xac\x60\x24\xc6\x20\x1d\x0b\x66\xee\xc8\x5b\xa1\x50\x40\xcb\x40\xbf\x11\xa6\x23\xb8\xfc\x4d\x5d\x96\xae\x3b\x01\xe0\x26\x4d\x5e\x25\x0e\x9c\x47\xed\x43\xfb\xc1\xd9\x9e\x1f\x38\xdf\xd8\xcf\x24\x15\xb5\x24\x28\xab\xfa\xb7\x7a\x05\x09\x16\x91\x1a\xe2\xf9\x5e\x70\x41\xf0\x37\xc2\xfd\x42\x6b\xf9\x05\xc8\x37\x38\xa0\x4c\x0d\x81\xea\xb2\xc7\x3e\x94\x3e\x76\xf6\x1c\x20\xd9\x3e\x8b\x21\x3d\x04\x14\xe0\x28\x30\x29\x2d\xa9\x93\x84\x3a\x59\x52\x71\xfb\xfe\xde\x11\x26\x15\x75\x94\xb7\x1f\x34\x43\x8f\xae\x90\x72\xb9\x1a\x9f\x81\x34\xb9\xa3\x91\xbd\x87\xb0\x88\x5c\xb4\x64\x2d\xdb\xd1\xf1\x4d\xa6\xc5\x88\xd2\x24\x74\x2c\x31\xe7\x0c\x70\xfe\x9b\xee\x66\xe4\x9e\x56\x32\xcc\x61\x68\x85\x90\x6b\x3a\x5a\xbb\xee\xa8\x22\x57\x74\xe4\x0b\x79\x7d\x03\x62\xb9\x50\x3a\xc4\xf2\x44\xfe\x58\x50\x7e\xb2\xa0\x8b\x68\x29\x4d\xda\x55\xb8\xd8\xbe\xe4\xee\x03\xd1\xf1\x45\x5f\x0d\x1e\xf9\x3b\x2b\xba\xa4\x4e\x91\x67\x10\xc5\xc7\x5c\x77\xb4\x72\xdd\x4e\x6f\x1a\xb3\xe4\xd3\x39\x5a\xd1\x28\x09\x6f\x2c\x29\x1f\xdc\x78\x62\xf4\xe1\x77\x4c\x12\xd7\xbd\x96\x8d\xbb\xa2\x68\x46\x51\x46\xd1\x94\xa2\x39\x45\x0b\x7a\x83\xa3\xcb\xb8\xae\xd1\x22\xba\x8c\xe9\x43\x83\x71\xb4\x50\xea\xd7\xeb\x17\xe2\xfe\xdc\xbe\x96\x2f\xb0\x18\x70\x3c\x05\xff\x03\xff\x96\x2c\xf2\x63\x2c\xfe\x1c\xc4\x64\x21\xf4\xe2\x1b\xcb\x45\x2c\x9a\xc5\x27\x0b\x3a\x1e\x0b\x75\xd9\x75\xc5\xa8\xd4\x35\xba\xa2\x33\x3a\xc1\x75\xbd\x92\xd0\x2f\x30\x4e\xdd\x81\x70\xdd\xf1\xf8\xca\x75\x17\x12\xf0\x6d\x1a\xb1\x98\x46\x2f\xc9\x8c\x5c\xc5\x1a\x35\xc1\xf6\x57\x12\xe5\xd9\x9d\xe2\xff\xa1\x4e\x11\x38\x60\xbf\x92\xe6\x07\xf4\xb9\x6e\x08\xa9\xf0\x89\xe9\x1e\xc1\x74\x8f\x3a\xd3\x5d\xd7\xa3\xf1\xf8\xaa\xae\xa1\x17\xb2\xf9\x8b\xff\x46\xd3\xc5\xd8\x5c\xc5\x98\x2c\x46\x62\xb8\xf0\x09\x3e\x51\x4a\xfb\xd5\x1e\x4d\xb1\x34\xe2\x5c\xfd\x8f\x9c\xd2\x89\xeb\x5e\xed\xe7\x67\x74\xd2\x34\x03\x52\xb6\x3d\x9e\x00\xd5\x17\x34\xb3\x0a\x46\x06\x40\x78\xa5\xf2\x53\x45\xbd\x7e\xd9\x3a\x83\xb3\xce\xd5\x01\x38\x9b\xed\xca\x02\xa4\x5a\xaf\xd7\x79\x1a\x5d\xc6\xa1\x50\x14\x83\xb4\x05\x97\x47\x25\x8d\x18\x61\xc4\x71\x08\x8f\x89\x5d\x57\xcf\xcd\x1f\xf5\xdd\xad\x42\xdb\x33\x80\x75\x22\x55\xc4\xa6\x0b\xba\xb4\xe1\x0f\xc0\xa2\x9c\xfe\x84\x18\x29\xa2\x24\xc6\x31\x1d\xa1\x52\xec\xcf\xe1\xaa\xc1\x5b\x92\x48\x90\x09\x29\xc5\xd3\x54\xe8\x81\x72\x60\x82\x87\xbc\xe0\x41\xd6\x35\x27\x6a\x90\x24\xa2\xa2\xd1\xab\x4d\xcf\xa6\x56\xa2\x88\xb1\xe8\x76\x40\xb0\xb3\xb4\xed\x44\x41\x12\x9a\x6b\x3b\x40\x4a\xa2\x18\xf0\xdd\x3b\x1e\x5f\xa8\xa0\x49\x54\xc5\x52\x23\xa9\x44\x6f\xb8\xf8\x53\xe0\x6e\x5f\x08\x60\xe7\x6a\xb9\x0b\xaa\x0b\x11\xdc\x13\x4a\x2e\x48\x89\x09\xdc\x84\xcb\x51\x29\xe9\xb9\x69\x30\x59\x24\x55\xbf\x8b\x5b\xdd\x54\x94\xbf\xa5\xb5\x31\x6f\x30\xd1\xfb\xf2\x2d\xa5\xb0\x0d\x8d\x87\x6c\x16\x8c\xb8\xbd\xa7\x81\x8c\xdb\xb8\x95\x6b\x4c\xc8\x35\x51\x55\x96\xe4\xd7\x5b\xaa\xf9\x41\x29\x87\xa0\x0f\x6c\xa3\x57\xf8\x1e\xa8\x95\x6c\x36\xab\x27\x0b\x36\x9c\x82\x76\x66\x05\xe0\x52\xd2\x65\xc8\x3d\x28\xa9\xef\xe4\x77\xb7\xcc\x02\xf1\x40\x34\xa0\xff\x4c\xde\x57\xdc\x1f\x95\xb4\xec\xd1\xb9\x74\xc0\x99\xc0\xa1\x9f\xe9\x37\xc8\xe7\xe6\x76\x91\x66\x0c\xa1\xae\x71\x14\xf7\x3d\xb3\x70\x6b\x1b\x6d\x30\xe1\x49\xd9\x89\xc5\x36\xc6\x62\xe6\x65\xc5\x34\x91\x96\xda\xf6\xb7\x58\x85\x8b\xce\xb9\xb3\x86\x9a\x82\x3a\xd2\x59\x43\xca\xa2\x18\x8c\xed\x66\x94\xd2\x55\x43\x20\x12\x66\xdb\xf3\x99\x97\x40\xbe\x33\x65\x90\x76\x5d\x34\x9a\x89\x2a\x5f\x41\xf8\x4c\xdd\xfe\x06\x16\x3b\x1a\x21\x0d\x17\xc3\xbc\x45\xc9\xe6\x75\xfd\x6f\xe6\xf1\xe4\x0a\x9c\xcc\x20\xb4\x18\x0e\x26\x82\x25\x43\x23\x1f\x13\x7d\x50\x01\xd7\x13\x4c\xd4\x21\xd6\xa0\xee\xfd\x49\xb7\x2e\xcb\x9b\x4c\xb4\x82\x79\x3a\xf2\xa7\x76\xe4\xa9\x93\xf5\x48\x1f\xe4\x35\x44\xff\x1a\xd6\xcb\x6d\x67\x2e\xfb\xca\x14\x00\x9d\x22\xca\x01\xbc\x2d\x95\x2d\x57\x7c\x33\x41\xf0\x67\x37\xfa\x80\x88\xaa\x49\xe2\xf4\x78\x28\x16\x54\xb6\x61\xa0\xb5\x23\x23\x11\x3c\xa8\x1d\x0e\x76\x17\x2c\x99\xb1\xc1\x6c\xd5\xff\x54\x2b\xce\x8c\x29\x6e\x08\x0c\xe0\xd0\xcb\x7f\x1f\x78\x59\xba\xcd\xfd\x6f\x4e\x93\xe5\x7c\x67\x30\x86\xda\x5b\xbc\x21\x10\xee\xb1\x19\x2f\xdb\x2f\x6a\x5b\x9d\xae\xeb\x70\x85\x20\xc3\x0c\x60\x35\x6c\x14\x10\xa7\xfd\x3d\x09\x28\xbd\x10\xfb\xab\xbf\xe9\x9b\xff\x74\xf8\xfe\x0d\xdb\xcc\xdb\x13\x4d\x62\xe0\x71\xbd\xc7\x96\x95\x33\xe2\x7b\xbe\x78\x87\xfd\xd1\x7f\xa3\xdd\xec\x44\xe5\xe9\x24\x2c\xc7\x3c\x28\xe1\xcd\x1b\x96\x6f\x96\x66\x85\xc4\x9d\x94\xa7\xfc\xa4\x1c\xd3\x03\xcc\xfa\x0e\x06\xac\xc1\xa4\x98\xcd\x3e\xf5\xb9\xff\x99\xcf\xb3\x8d\xae\x74\x63\x4d\x4d\x5b\xcf\x78\xc8\x83\xf2\x64\x6f\x4f\xa8\x2e\x27\xba\xb0\xbc\x53\xd8\xf5\x97\x16\x76\x32\x1e\xe7\xa7\x7c\xb8\x94\xa6\xc1\x86\xca\x73\xbe\xa0\x16\xcd\xff\x41\x1e\xca\x64\x96\x16\xc1\x68\x22\x79\xc8\x55\x71\x27\x7e\xcf\x53\x99\x7f\x7f\x95\x54\xd5\x6d\x51\xce\xc4\xef\x74\x99\x5c\x03\xba\x0a\x6e\xd5\x28\x1e\x53\xb0\xc0\x9a\x58\xec\x87\x6a\x7d\xb5\x4c\x21\x15\x87\x04\x26\xdc\x78\x7f\x25\xdf\xd7\xbe\x89\xd7\xac\x03\x08\x7e\xc5\xba\xf8\x4e\x13\xd2\x09\x93\x70\x9c\x13\x7e\x5a\x9e\xf0\xf1\x18\xe7\x63\xc0\x05\xe8\x82\x51\xe7\x6d\x49\x97\xac\x1b\xaf\xc3\xbd\x59\x2a\x74\x40\x0e\xcc\x43\x28\x52\x75\x9d\x93\x84\x96\xae\x6b\xdb\xd4\x28\xa5\x05\xa9\xe8\x5d\x7b\x08\xc2\x25\xfb\x09\x3b\xdb\xb3\xd4\xd8\x58\x39\x1c\x9a\x28\x5d\x9f\x5b\x47\x89\x89\xb1\x32\xaa\x2f\x5a\x69\xf5\xa9\xad\x9e\x50\x7b\x2b\x38\x36\x5a\x6f\xd6\x31\x50\x89\xeb\x32\x55\x8a\x39\x32\xec\xd8\x32\x3f\xd1\xbe\x74\x2e\xb5\x73\x2e\xb5\x73\x6e\xb4\x73\xde\xd3\xce\x79\x57\x3b\x27\xa9\xeb\xa6\x9f\x70\x40\xc6\xb2\xd6\xba\xe6\x3b\x3a\x70\x02\x65\x74\x1a\x15\x72\x47\x65\xef\x46\x28\xa5\x95\x39\xdc\x8a\x0e\x62\x2a\x36\x5c\xa2\xf3\xe2\x6d\xba\x20\x70\x6f\xb3\x83\xad\xdc\x37\xf3\x7d\xdb\x71\x72\x6d\xf5\xf0\xce\x50\xdb\x5e\xb6\xad\xce\x09\x16\x70\x40\x83\x8a\xd2\x58\xbd\x37\x20\x46\x24\xba\xb2\xa9\xf0\x25\xb3\x8d\x06\xb6\x76\x1b\xc5\xa4\xa2\x13\xb2\x6e\x29\x37\xa3\x32\x4e\x9b\x1b\xe8\x0b\x54\x50\xa6\x54\xdc\xd2\x75\x47\x25\x2a\xa0\x9c\xba\x46\x89\xb6\xcf\x93\x0c\x0e\xb0\xc5\x45\x85\x6d\x24\x09\xd3\x84\x3b\xab\x09\x96\x2a\x9c\xbb\xee\x48\xe8\xe1\x90\x68\xe0\x8e\xa1\x1c\xc3\x94\x8d\x52\x79\x2f\x15\xf7\xc4\xfb\xb8\xe3\x83\xac\xc2\xa1\x7b\xc4\x18\x93\x99\xf8\x67\x45\x13\xdd\x97\x25\x2d\xea\x7a\x3b\x4b\x9a\xc0\x1a\x33\x01\xfa\x29\x04\xe8\x4b\x25\x3a\xca\x63\x2b\x95\x5e\xd9\x20\x5e\xd7\xce\x23\x87\x54\xed\x49\x7e\x54\xc5\x41\x05\x7b\x82\x1b\x3a\x62\x75\x3d\x2a\x5c\x97\x87\xcb\xe0\x25\x43\x4b\xb2\x20\x0c\x5a\x48\xee\x69\x19\xa6\x75\x8d\x8a\x90\x05\xab\xba\xce\x01\xb4\x23\x09\x6e\xc0\xff\xde\x75\x4b\x74\x43\xee\xe5\x9b\x39\x6c\x73\x33\xfa\x92\xa1\x7b\x32\xc3\x24\x47\x19\x11\xd3\x23\x9e\x4d\xa9\xce\x02\x78\x32\x85\x5d\xc7\x9c\x66\xd1\x14\xa6\xe4\x3e\x9a\x45\xd3\x58\x6c\x3c\x6e\xd4\xaf\x39\xb6\x7c\x06\xd3\xba\x96\xf8\x61\x6a\xe2\x33\x31\x44\x53\xe3\x07\x61\x8a\xbb\x97\xc5\x65\x72\x12\x6f\xa2\xa9\x28\x67\x27\x05\x69\x2a\xfd\xc7\x32\xb2\x96\x89\x39\xb6\x7f\x8d\x32\x9a\x86\x3f\xa1\x82\xcc\x71\xb0\x10\xb7\xce\xf6\x7c\xd7\x45\x45\x94\x89\xf6\x25\xe2\xcf\x1c\x63\x65\x3b\xb8\x87\x9e\x52\x4a\x93\xf0\x5e\x1f\xe9\xac\x88\x2e\x1a\x07\xf7\x98\xa4\xa1\x6a\x40\x42\xee\xc9\x1a\x07\x3a\x16\x26\x21\xf7\x1d\xaf\xf1\x73\xd6\xcf\xa8\x98\x76\x11\x12\x72\x4f\x9f\x5f\x44\x60\x32\x16\xaa\x00\x20\x89\x8a\xad\xb5\x79\xe4\xec\x3a\x31\x59\xd3\x24\xf4\x83\x09\x99\x0e\xc7\x02\xca\x70\xf8\x86\x54\x44\x28\xb3\xf3\x2d\x2f\xfd\x04\x99\x12\xc4\xbe\x48\xbd\xb8\xa0\x76\xfa\x1a\x2b\xb1\xcb\x28\x11\xa4\x5f\xd7\xe5\x88\xd2\x4c\xac\x29\xc4\x69\x89\x5b\x2a\x9b\xaa\xd7\x83\xb9\xfa\xd1\x42\xfd\xc8\xdd\x62\xda\xc4\x27\xeb\xd3\xe2\x64\x2d\xa3\xe5\xcb\x6e\x5f\xd7\xaa\xaf\x78\x41\xa3\x4b\x86\x6e\x19\x5a\x60\x52\xe2\xb8\xe5\x76\xe2\x03\x69\x13\xb7\x5e\xd7\x31\x47\x70\xa0\x26\xee\xaa\x63\x6b\x8c\xa3\xcb\x58\x8e\x74\x4a\xc7\xe3\xf5\x49\x7a\x5a\x88\x15\x6c\x57\x99\xaa\x32\x00\x8f\x42\x19\x42\xc4\xf2\x5f\x9f\xf9\xae\x2b\x1b\x00\x3f\x85\xfc\x34\x06\xcb\xf5\x9e\x8f\x15\x12\x1c\x52\xc0\xdf\xce\xae\x3c\xa9\x58\xef\x1d\xc8\x12\x43\xe7\x91\x13\x38\x4e\x63\x81\xcd\xe8\x60\xa5\x92\xac\x4f\x53\xd7\x3d\x6f\x8b\x5c\x93\x54\xb0\x12\xd1\x3c\x71\xd7\xd8\x40\xcd\x5d\x10\xdf\xb8\x59\x68\xc5\x48\x1f\x23\x42\x0b\xf5\xc5\xb5\x8d\x85\xad\xc7\xa9\x6a\xd5\x92\x8e\xb1\x04\xcc\xf1\xd7\x8c\x24\xb4\x12\x52\xe6\x23\xcb\xd3\x3f\xfb\x21\xad\xca\xbc\x63\x03\x3a\xd0\x77\xda\xb6\x2f\x64\x89\xf1\xe7\x0c\x27\xc1\xd4\x1c\x99\x82\xd2\x52\x51\x46\xd6\xb0\x12\x45\x03\xf4\x61\xd8\x49\xa5\xec\x9e\x09\xc4\x40\xb8\xee\x08\xa5\xf4\x57\x19\xb0\x58\x61\x40\x16\x72\x5d\x54\xd1\x4a\x0f\x80\xa0\x7f\xb5\xc6\xea\xba\xc2\x64\xad\x98\x38\x8d\x62\x8c\x49\x49\x47\x3e\x41\x29\xfd\xc3\x94\x20\xd8\x3e\x4d\x75\xac\x16\x29\xe4\xeb\x6a\x92\x4a\x02\x20\x77\x50\xa8\x35\x29\xbb\xe0\x68\xd8\x56\x6a\xac\xe6\xd2\x45\x58\xb4\x1b\x8b\x76\xfe\x2d\x4a\x62\xab\xa9\x59\x94\xc4\xb2\x03\xe2\x97\x98\xab\xba\xfe\x7c\xe5\x09\x51\xd4\x19\xa4\x5b\x2a\x05\xcf\x96\x52\x42\xd6\x98\x74\x18\xa1\x0e\x9f\x0d\xaa\xb0\x3d\x02\xc3\xc1\x3b\xc4\xc8\x1a\x9b\xa1\x6f\x44\x89\xd2\x5b\x28\xcd\xb6\x4c\xa7\x98\x94\x42\xca\xd2\x67\xd6\x64\x8e\x2a\x39\x33\xf2\xb0\x06\xa2\x05\x49\xd9\x4a\x9c\x12\x98\x67\x45\xcf\x19\xe2\x51\x19\xc3\xda\x0a\x53\x2d\x45\x83\x42\xff\x3a\x41\x15\x7d\xd6\x39\xc1\xb1\x22\xc3\x8c\xb1\xc7\x02\x9b\x39\x9b\x90\x82\xf6\x85\x25\x51\xc0\xb7\x73\xb2\x22\x37\xe4\x9e\x4e\xc8\x35\x75\x26\x0e\xb9\xa2\x85\xeb\x46\x31\xb9\x14\xed\xbf\xa5\x19\xb9\x13\x42\x33\x75\xdd\xd6\x97\x1b\x09\xc9\x37\xc5\xe4\x9c\xbe\x1c\x53\xb9\xbd\xba\x0d\xfd\xa0\x03\x00\x55\xd7\x9e\x4f\xde\xd1\x3b\xd5\x04\x20\xd8\xa9\x04\xe4\x92\x0e\x4f\x49\x5d\x4f\xf1\xc9\xf5\x88\xd2\x77\xae\xab\xa0\x60\xe6\xf4\x2e\xba\x8e\xf1\xc9\xf5\x78\x2c\x65\x94\xeb\x2a\x8f\x80\x15\x9d\x90\xa4\xae\xe7\x1b\x5e\x52\xb3\xba\x46\x0b\x34\x17\xf3\x3c\x5a\xe2\x93\x1b\xca\xa2\x95\xf6\x5e\xbf\x41\x73\xf1\xd1\x8c\x54\x18\x3f\x28\xb2\x9e\x63\x65\xb0\x16\x8d\x79\x49\xcf\x71\x53\xba\x2e\x42\x73\x3a\xba\x11\x95\xb9\xee\xfd\xde\x1e\x29\x20\x3f\x9e\x7c\x1d\x37\xe9\x1c\xdd\x8f\xe9\x35\x29\x5d\x57\x34\xf7\xde\xb4\xe8\xe4\x86\x72\x55\xdb\x0d\xba\x22\x97\x62\x60\x2d\x51\x7b\x7f\x36\x91\x96\xea\x6b\x31\xb1\x57\xd1\x75\x5c\xd7\x97\xf0\x2f\x12\x7f\xe8\x7b\xe9\x80\xb2\xc6\x78\xe7\x52\xc8\xbe\x4b\xdc\x68\x81\xb6\x26\x97\x98\x4c\x5d\x57\xe8\x10\x97\x66\x16\x5d\xf7\xde\xe0\x09\x09\x8e\xd9\xf1\xcc\x40\xeb\xd6\xf3\x41\x76\x8d\x64\xf4\x16\x93\xab\xa6\x8d\x99\xc8\x18\x2a\x70\x50\x34\xa8\x10\xdc\x10\x1b\x67\x00\xca\x8c\x53\x4f\x43\xd6\xad\x9b\x00\xdd\x34\x85\x4a\x45\xd1\x20\xcf\x6c\xcb\x80\x00\x79\xf4\x5d\x37\x41\x8c\x2e\x4c\x35\x42\xf5\x00\x3d\x87\x96\x10\xc0\xed\x83\xb1\x49\x2d\x4a\x10\x3e\x6b\x3a\x13\x3a\xf6\xcc\x3a\xc6\x35\x11\xb5\x67\x07\xae\xeb\xbc\x7e\x01\x99\x12\x32\xba\x8e\x26\x31\x56\x5b\xfc\xa7\xbd\xa0\xc7\xa5\x20\x56\x23\x81\xd6\x70\xe4\x0e\x42\x4f\x06\x66\x73\x8a\x4c\x6c\x06\xca\xb4\x28\xb3\x39\x96\xb2\x7c\x72\xac\xcf\x20\xda\x74\x17\x3b\x0b\x38\x93\xee\x18\xf7\x48\x2b\x4e\xd6\x9a\x35\xc9\xcd\x9d\xee\x1c\xe8\x49\x05\xfd\x9b\x67\xc3\x5a\xe8\x90\xdf\x70\x12\xac\x0d\x98\xd2\xde\x1e\x2c\x92\x75\x54\xc4\xc4\x96\xa3\x00\x7a\x0a\x9d\x90\xbb\xa9\x39\x95\x7d\x50\x8a\x56\x4a\xe7\x9f\xec\x8a\x0e\x30\x5e\x6b\x6d\x67\x38\xd0\x58\x05\x4c\xaf\xb5\xfe\x55\x10\x1f\x93\x11\x62\x34\x35\x7e\xb2\x57\x4c\x50\x6c\x3f\xb6\x5b\xd0\x06\x29\xf5\x59\x90\xb2\x9b\x2e\xea\xba\x42\x8c\xcc\x30\x46\x29\x78\x51\x91\x92\x8c\x78\x5d\x7f\x26\xda\x19\xf0\xb8\x6c\x67\x21\x7a\xa9\x03\x67\x1d\xac\x5d\x85\x94\x8b\x2e\x84\x1a\x5d\x92\x4d\x87\x23\x3a\x1a\xcd\xc9\x02\x61\xd2\x75\xdb\xdc\x12\x64\xe5\x7f\xc2\x09\xf6\x13\xa1\xc4\x03\xde\xf3\x66\x17\x37\xe4\x44\xff\x17\xe9\x31\xef\x10\xe7\x2f\xd2\x44\xd5\x5a\x07\x7b\xb6\x29\xf1\xbe\x90\x99\x75\x3d\x57\x96\xaa\x1a\x6c\xab\x0b\x96\x5e\x2f\x78\x7d\x9b\xce\xf8\xc2\x21\xfd\xad\x8c\x14\x6b\xc3\x71\x59\x9c\x38\xe6\x94\xb7\xbb\xe7\x0d\xfd\xe0\x40\x46\xce\xb5\x6e\x6c\x9b\x7e\xd9\x43\xfd\x02\x7b\xdc\x3e\x84\x64\x58\x3d\xe9\x3a\xe4\xc3\x3a\x70\x00\x00\xd0\xf9\x4c\xa7\xe5\xab\xa6\xd7\xea\xcb\xc1\x4e\xba\xee\xe7\x8d\x81\xed\x40\xe8\x10\x47\xf0\x96\xda\x36\x65\x0a\x98\xae\xd7\xa6\xd6\xaf\x5e\x35\xeb\xf5\x46\x83\x60\xf3\xb8\x63\x8f\xbd\xb4\x0f\x47\x3c\x0e\x7b\x43\x1d\x00\x70\xda\xb0\x1f\x60\x6e\xf9\x01\xe6\xb6\x1f\x20\x26\x15\x6b\x10\xc3\x3b\x97\xb0\xe2\xe9\x1d\xc0\x31\xae\x4a\x7a\xd7\x7a\x73\xa9\x5b\x91\x13\x38\x12\xde\x71\x55\x1a\x9d\xf4\xd2\xf6\xdf\xd3\x17\xf4\xce\xba\x4b\x2e\x25\x68\xf0\x9d\xf6\x92\x23\x97\x32\x50\xf6\x45\x31\xa5\x77\xf2\x27\xb9\x6c\x7d\x3a\xef\xcc\x4f\x51\x2f\xb8\x28\x1a\x17\xd8\x3b\x75\x03\x1c\x31\xcf\x37\x10\x68\x7a\xc8\x75\xc6\x81\xa4\x3c\x11\x4a\x79\xc4\x05\x37\x7b\x3a\xb2\x5d\xe4\x8d\x05\xa8\xbd\xa5\x95\x83\x4b\x88\x3e\xaa\x50\xa9\xe1\x07\x35\xbc\x9d\x11\x85\x79\x43\xde\x6d\x45\x18\x8b\xe2\x01\x9b\x7c\x3f\xa2\x9e\x49\xc8\xce\x52\x97\x6c\x79\xd4\x3d\xd3\x23\x0d\x7c\xb7\xc3\xdb\x5b\x2b\xe1\xc7\x2e\x78\xda\x17\xba\xfe\xf4\xa0\x63\x44\x7b\x3f\xd0\xfd\xdf\x4e\x51\x94\xec\xfd\x19\x47\xbf\x5d\xec\x5f\x4c\xce\x02\x80\x1a\xe3\x17\xe5\x45\x7e\x31\x8f\x1f\xe1\xa8\x7b\x7d\xb1\x1f\x9e\xa1\x30\x38\xbd\xd8\xbf\xf0\xcf\x6a\xfc\xcd\x7e\xda\xb6\xea\x79\xcf\xe7\x66\x89\x38\x0e\x2f\xbd\xeb\x92\xad\xba\x9a\x65\xde\xba\x7c\x68\xd4\x47\x92\x13\xf0\xb8\x2d\x1b\x1c\xb4\x62\x77\xe8\xeb\xee\x26\x59\x7d\xb2\x01\xdb\xc2\x3f\xf9\x69\x0b\xb7\x28\xf6\xcf\xaa\x8c\x4b\xb5\x69\xd0\x28\x8c\xfa\x7a\x0b\xe0\x11\x8f\x26\xb1\x75\x5e\x86\x18\x75\x82\xbc\xe0\x08\x5c\xa3\xb0\x83\x89\x34\x30\x6a\x11\x07\xce\x2f\x76\xc7\x40\x59\xe8\x79\x6a\x83\x33\x52\x18\xe5\x71\x10\xc5\x41\xf7\x15\xc4\x88\xea\x11\x1f\xea\x51\x97\xc2\x00\x66\xd8\x82\xc5\x45\x0f\xe0\x62\x39\xe0\x6b\x47\xf2\x0e\xe0\xaf\x4c\x89\xb1\x63\x39\xa2\xb6\x40\x38\x9d\x7c\x05\x16\xfe\xb1\x58\x2f\x6a\xe4\xac\x03\x0d\xd8\x93\xd0\xc9\x09\x3f\xcd\xc1\x3e\x9d\xce\x51\xbb\xd8\x51\x1a\xf1\x58\x26\x2b\x6b\x8d\x98\xd8\xb8\xe8\x77\x2b\x88\x62\x4c\xec\x92\xe4\xb8\x20\x46\xa0\x10\x2b\x1a\xf2\xcc\x0f\x6d\xb6\x84\x4a\x1c\x94\xc6\x17\x6f\xc8\x35\xad\x5b\xcf\x73\x85\xfc\x0c\x6a\xe4\xc8\xc7\x00\x16\x3b\x78\x94\xf5\xc9\x0f\x27\x18\xb0\x5a\x87\x4e\xd7\x46\xea\xcd\x4d\x67\x38\xd7\x7d\x66\x34\x37\x31\xa0\x81\x69\x85\x8e\xb3\x56\xf0\x8d\x6f\xc9\x7b\x09\xf5\x75\x51\x3d\x42\xa7\xd1\xc5\xed\xc5\xaf\xf1\xf8\x0c\x47\xbf\x9d\xc5\x8f\xea\xbf\x58\x68\x5f\x27\xc8\x60\x94\x0f\x12\x70\x4a\x0a\x10\x2f\x9d\x69\x35\x8a\xf4\xdb\x81\x36\x2a\x4d\x37\xa5\xce\xa9\x34\x9a\x4c\x62\xd7\x75\xce\xe4\xef\x16\x0e\x2b\x6e\xf1\xcb\xcf\xe8\x61\x18\x49\xfb\x0e\x38\x21\xc4\xc1\x7b\x03\x72\x54\xd7\xa3\x34\x12\x2f\x6b\xa7\x66\xa1\xc4\x71\x4f\x82\x91\x87\x00\x7b\x80\xd5\x44\x9b\xa4\x24\x2d\x44\x34\x37\xcf\x20\x26\x44\x43\x25\x71\xca\xed\xb4\xc5\x97\xa1\x58\xa4\x81\x90\x3c\x2d\x56\x38\xb9\x14\xaa\x61\xc5\x84\xba\x01\x5f\x12\xae\xfd\xc1\x60\x65\x0e\x00\x38\xe5\x30\xab\xe4\x83\x9c\xa2\x54\xba\x42\xf5\x11\x91\x39\x6e\xb1\xf1\x39\x5e\xca\xec\x4c\x69\x8c\x43\xf5\x03\x71\x71\x25\xbb\x02\x8e\x87\x29\xe1\x36\x62\x2a\x64\xf1\x52\x4a\x6e\x41\xf3\x7e\x8c\x76\x1a\x1d\xc4\x6d\xd6\xa7\x49\x4c\x0b\x62\x2d\x5c\xea\xcb\xac\x7f\x4d\x47\x24\x7c\x30\x99\x53\xa4\x33\x48\xe7\x03\xb9\xfc\x82\xa5\x20\xb9\x56\x62\x7a\x90\x51\x39\x54\x7f\x81\x12\xd1\xa5\xe0\x8d\x06\x41\x17\xc9\x72\x70\x83\x2d\xb3\x95\xa0\x35\xf2\x96\x5e\xa2\x5c\x92\xe9\xcf\x92\x48\xa5\x0e\x5e\xd5\xab\x92\xdd\xa0\x30\xf8\x47\xce\xd3\xac\x86\x08\xe0\x7d\xf2\x3b\x7d\x00\x0f\xb2\x92\xe5\x70\xdc\x26\x1d\x3f\x2a\xc8\x5d\xc0\xee\xe0\xc8\x4c\x7c\xd6\xcd\x5f\xf0\xa2\x15\xb7\x96\x6c\xf7\x7b\xb2\xfd\xc4\x1c\xf6\x75\x78\xe0\x22\xa9\x86\x70\xe4\x75\x87\x2c\xb3\x49\x07\xe9\x7c\x98\xb7\x49\x94\xa2\xc9\x09\x3b\x2d\x4f\xd8\x06\x7f\x93\x50\xf3\x11\x8b\x6d\xfe\xd6\x90\x69\x56\x54\xac\xea\x27\x2e\xb2\xc3\xa8\x6c\x66\x0c\xd6\x9e\x84\x6e\x72\x62\xa9\xa4\xc0\xf2\x35\x6c\x43\x5a\x05\xf4\x01\x43\xcb\x48\xa3\x3c\x3e\x29\x5d\xb7\x14\x1a\x47\x2f\xf4\x09\x4c\xb9\xad\xab\x80\xef\xbb\x2e\x4a\xc2\x44\x3a\x9f\x28\x57\xd2\x7e\x0c\xfa\x16\xb9\x05\x90\xc7\xf8\xa1\x30\x27\xc0\x5d\x33\x58\x1f\xd8\xde\x9c\x46\x75\xf8\x75\x81\x83\x02\x3c\x08\x66\xec\x6e\xd0\x95\x22\x1c\x80\x5e\x56\xa2\x5c\x0c\x08\x51\x94\x8e\x0d\x9c\x32\xb0\x65\xcd\x53\x04\xc3\x0a\x14\x33\x01\xde\xa5\x7e\x74\x90\x73\xe4\x84\x97\x95\xd8\x6d\x0b\xf2\x7b\x96\x65\x48\xf3\xe0\x60\xcf\x6f\x48\x32\x9b\x05\x83\xc1\x5c\x1b\x69\x01\xac\x9e\x75\x72\x15\x5c\x33\x8e\x30\x01\xb2\xc3\x58\x08\x8b\x64\x36\xfb\xbe\x9f\xe3\xc0\x2e\x34\x99\xcd\x90\x46\xb8\xee\xa1\xe7\x07\xbd\x6b\x4d\xac\x0c\x83\x67\x97\x42\x1f\x7e\x18\x70\xf8\xd0\x7e\x16\x9b\x01\xa1\x3a\x82\xcb\xe6\x89\x2a\x78\x48\xad\xe7\xa1\x96\x9e\x23\x46\xec\x83\x63\x6c\xde\x86\x55\xbf\xcd\x2f\xbb\xff\x19\xc0\x5f\xe7\x7d\x87\x0d\xf5\xb2\x58\xfd\x1d\xff\x58\xdc\x48\x1e\xb1\xed\xdd\xbe\x2f\xb0\x2a\xfb\x59\x96\x6d\xed\xc2\x40\xf1\x9f\x7a\x7d\x4b\x0d\x9f\xef\xb3\x5d\x0f\x74\x5a\x94\xf4\x05\x43\xd5\xf7\x6e\x16\x9f\x56\xf2\x62\x70\x5e\xde\x21\x64\x4f\x72\x5d\x3f\x34\xd8\xda\x2d\x43\xa2\x0b\xc3\x87\x07\xbf\xb7\x37\xd7\x90\x0e\x4c\x31\xea\x81\x97\x2d\xd7\x7d\xf5\x9a\x16\xa3\xe1\xc6\x9d\x00\x89\x5d\x8c\xc3\xd9\x72\x95\x25\x9c\x39\xe0\xdd\xd8\x7e\x58\xd7\x0c\x1b\xb9\x1d\xc5\x84\xd9\x10\x95\x10\x63\xd1\x59\x84\x80\xc8\xcd\x62\x3b\x27\xb8\x39\xfe\xb2\x32\x74\xf0\x56\x5f\x74\x60\xb0\x3b\xae\xeb\x8f\x31\x1c\x11\x97\x98\xe4\xae\xbb\xc1\x6b\x72\x30\x89\x99\x5d\x02\xa4\x01\xb5\x45\xea\x99\xe0\x9f\xbf\x83\x2b\x6d\x67\xf1\xa7\x98\xfc\xdc\xda\xa6\xd2\x36\x71\xa6\xfa\xba\xe5\x19\x29\xd6\x6a\xde\x4f\x74\x3f\xfa\xad\xb3\xf3\x1a\xdb\xe9\x63\x5e\xdb\x5c\xb1\x3d\xa2\x7c\xd3\x06\xe6\x59\x77\x5f\xe9\x43\x71\x35\x1e\x80\x55\xc7\x5c\x77\x89\x20\x6a\x57\x26\x0a\xc7\x61\xaa\x93\x18\x40\xca\x46\xd0\xb0\x92\x34\x13\x4a\xb4\x79\x97\x2f\x58\xde\xbe\x08\x83\x19\x70\x65\xac\x93\x53\x4f\x22\xa6\x8d\xac\x39\xd6\x20\x78\x10\x81\xdf\x7f\x0b\x37\xcd\xa5\xf7\x3c\xc9\xb2\xab\x64\xfa\xb1\x9b\x84\x94\xd1\x01\x3e\xbf\xc9\xbb\xda\xa4\x77\x8a\xcd\xa9\xd0\x59\xf4\x13\x98\x58\x49\xd7\x67\x98\x47\x65\x4c\x85\x14\x26\xbc\x11\x6a\x4d\x9b\x7d\xa2\x21\x2a\xc2\xd3\x78\x0e\x48\xb9\x0b\x47\x2d\x7b\x3e\x59\xd3\x9e\xe8\x4f\x69\x0a\x11\xd8\xf9\x14\xc2\xea\xe9\x68\x72\x92\x18\x7f\x5d\xba\xe7\x2b\xe9\x9b\x68\xb3\xed\xc9\x78\x5c\x9d\x1a\xf7\x64\x0c\xfe\xe6\x45\x54\xe9\x03\xd0\x32\x9a\xc4\xa4\x94\x4a\x25\xf3\x2a\x5e\xac\xde\xe5\xaf\x92\xac\x62\x70\xa4\x56\xb4\xb9\x58\x46\x3e\xde\x61\xde\x92\x2d\x8b\xf2\x1e\xce\xac\x46\x42\xeb\xa3\x23\x1f\xb2\x62\x16\xb4\x0c\xa3\x38\x80\x74\x07\x19\x7d\xe8\xc8\xa9\x36\x57\x8f\xf2\xaf\xe0\x9d\xb2\xf7\x7c\x92\x68\xc9\x6d\xa5\x73\x15\x3b\xa8\x07\x35\xb6\x25\xe9\xae\xac\x25\xca\x71\xa8\x8f\x0a\x5c\x17\xf2\x65\x41\x8e\x91\x42\x7b\x5c\x05\xb9\xeb\xe6\x66\xfb\xdb\x2a\x31\xf4\x0a\xe5\xd8\x75\x39\xca\x71\x83\x1b\xd4\x26\xb6\x21\xaa\x61\x6b\xbd\x32\x1a\x22\xe1\x10\x07\xfa\xa1\x5a\x65\x3e\x26\x5b\xcc\x31\x27\xa8\xa4\x97\x9e\xca\xc3\x80\xb8\x4c\x07\x70\xb6\xe7\x9f\xe0\x42\x9b\xa3\x4b\xe2\x63\x52\x9e\xd2\xca\x75\xab\xbd\xbd\x46\x57\xdd\x57\x16\x8d\x0e\xd2\x16\xc7\x48\x01\x3a\x52\x61\x45\x29\xf7\x9c\x36\x3b\x03\x0f\xa7\x9f\xaa\x78\x65\x02\x1c\x78\x33\xa5\x89\x3c\xea\x83\x10\xd2\xce\xdb\x03\x33\x3a\x2a\x1a\x92\x15\xb6\xf2\xd0\x2f\xa8\xac\x6b\x5e\xd7\x48\x96\xa7\xab\x17\x9f\x0c\x16\x37\x4a\xc1\x3f\x91\xfd\x9a\xf2\x4e\xf2\x8f\x56\x0c\xa5\x40\x7a\x11\x23\xfa\xc8\x45\x1d\x63\x86\xda\x63\x18\x07\x65\xdc\xd2\x13\xe1\x75\x6d\xcd\xa8\x28\x7b\xa0\xad\x99\xa7\x2b\xed\xa7\x3b\xb2\xbe\x1b\x6c\x6f\xde\x18\x36\x90\xd9\x39\x65\x5e\xb0\x39\x2b\x3b\xdf\x98\xf3\xcc\x28\x72\xf2\x82\xa7\xf3\x7b\x47\xc8\xd3\xe2\xba\x64\x55\xe5\x10\x8b\x1b\x21\x47\x2e\x32\x07\x6f\xb9\x7b\x10\x93\xc8\x29\x59\x55\x64\x37\xcc\x21\x8e\x60\x98\xbd\x02\x04\x73\xd8\x1d\x2e\xa5\xfb\x68\x42\x74\x41\x33\x47\x96\x0a\xf8\xb3\xc4\x11\xdc\xf7\xbf\x5b\xa8\x4f\x54\x39\xa2\xd0\x98\xe4\xd4\x59\xb1\x7c\x06\xfa\x42\x4a\x1f\x20\x2f\xeb\xc0\x24\xe4\x0d\x49\xb2\xdb\xe4\xbe\x1a\x4c\xf2\x05\x52\xa1\x9d\x17\x29\x1d\x36\xe6\x69\x33\x39\xa5\x26\x1b\x99\x06\x5b\x5a\x03\x84\xba\x93\xae\x3a\x6d\x90\xfb\x29\x53\x5e\xcb\xda\xf5\x44\x76\x80\x23\xb7\x70\x25\x29\xef\x97\x88\x45\x79\x74\x14\x03\x43\x95\xbf\x76\x8a\x28\x8f\xfc\x38\x46\x1b\x35\xa6\x80\x26\x38\x94\x68\x6b\x07\xe4\x9e\x25\x21\xcd\x4f\xd8\x1b\x48\xba\x41\x42\x4b\x16\xb4\xa4\xc5\xa6\xa7\x66\x53\x0d\x90\xb8\x86\x1c\x81\x01\x8f\xf2\x68\x12\x8f\x1d\x41\xe4\x4e\x2c\x2b\x4b\x21\x73\x4c\x5b\x65\x83\x1b\x4c\x64\x92\x69\xb9\xbd\x96\xb5\x35\x44\x8c\x9d\xed\x25\x69\x05\xe6\x4d\x5a\xb5\x20\x69\xd3\x96\xf7\x03\x38\xe4\xdb\x95\x4c\x3a\x65\xa5\xbc\x22\xd9\x66\xca\xac\x6c\x47\x1e\x69\x9e\x16\x58\xe1\x4d\xd0\x5c\x0d\x51\x45\xd6\x10\xa8\x50\xb6\x8d\xb3\x12\x45\x8a\xbd\x82\x42\x03\xf8\xb0\x90\x2e\xfa\xbb\x15\xcb\xe6\x7b\x30\x26\x6b\x38\xd1\xc5\x3b\x19\x24\xd7\xf9\xd2\x4c\x7d\x20\x14\x45\xf7\xc9\x12\x65\x38\x4c\xc3\x4c\xab\x1f\x09\x2a\x48\x49\x5e\x93\x14\xab\x9f\x6f\x84\x46\x16\xa0\x62\x3c\x26\x9f\x7e\xc9\xdc\x2d\xd5\xe4\x89\x39\xc1\xe2\xdb\x7c\x44\xe9\x6b\x90\x8d\x4a\x53\x59\x53\xa1\xab\x10\x94\xd6\x75\xa9\xa7\x16\xde\x96\x43\xd1\x34\x64\x4a\xd3\x30\xeb\xa4\xde\x2e\xef\x1f\x32\x64\x29\x3f\x2d\x0d\x7b\x4c\xe7\xca\xfe\xb1\x28\x3e\x8a\xdd\xf4\xf0\x13\xc4\xc8\xd4\xab\x84\x4e\xf8\xa1\x4c\xa6\x62\x67\x3b\xf6\xcf\xa8\x90\x21\xa2\x81\x6f\x06\x1a\x58\x2a\x3a\x03\x16\xaa\x9a\xb6\xc3\xc3\x29\xc2\x01\xb2\x6a\xb9\x66\x1c\x54\x4d\x59\x3d\xb2\x2b\xa1\x5b\x5e\x43\x32\xbe\x99\xf1\x0f\xe9\x92\x15\x6b\x8e\xa6\xa2\xec\x4f\x2c\x4f\xb1\xe6\xa3\x49\x1c\x1d\xc6\xb0\x73\x4d\xd0\x84\x30\xb2\x44\x29\x0e\xd3\xe0\x35\x61\x9d\x21\x07\xbd\xa7\xff\x26\xc7\x21\x0f\x5e\xc3\xc3\x83\x8d\x87\x39\x0e\xf3\xe0\x0d\xc6\xdd\xf5\xa1\x7e\x6e\xcb\x0d\x35\xa2\x42\x6e\x2b\xd1\xc0\x48\x2a\x63\xbc\x8a\x4d\x15\xb2\x1c\x70\x80\x49\x28\x8f\x0e\x84\x2e\xc8\xa3\xc7\xf1\x4e\x1a\x71\xc1\x48\x68\x22\x5a\x45\x2a\xd7\x85\x1f\x36\x5f\xc9\xa9\xd0\x5c\xa2\xc3\x3d\x16\x47\x07\xb1\x06\xe4\xd2\x77\x0e\xed\x3b\x13\x78\x43\x08\x63\xa2\x87\x4c\x5c\x60\x22\x0b\xe5\xe2\x86\x90\x7c\x98\x14\x11\x8f\x26\xf1\x50\xf6\x7f\xf9\xa4\xc3\x57\x84\x7e\xa9\x6c\x7a\xc1\xb0\x38\xed\x7e\x44\x13\x23\x7e\x1b\x4c\x52\x33\xb0\x05\x96\xb6\x51\x58\x4b\x05\x29\x30\x29\x1a\x72\xbb\x60\x43\x11\x1b\x1b\x49\xf4\x4a\xca\x49\x4e\x75\x1a\x39\x92\x52\x95\xfa\xd1\x6a\x4b\x62\xd1\x1c\xc2\xa4\x1a\xca\x7c\xda\x32\x78\xfc\x00\x3b\x3c\xc9\x38\xc5\xaf\x7e\x95\x67\x7e\xb8\x51\x47\x50\x92\xbd\x3d\x5e\xd7\x89\xbd\x78\x61\xef\xd6\x34\x90\x7b\xfc\x94\x8a\x6d\x9b\xd8\x23\x25\x92\x83\xc3\xc9\x9f\x7e\x9b\x24\x6a\x5d\x91\x11\xc7\xc4\x48\x51\x00\xcb\x05\x31\x8a\x70\x5d\x2f\x51\x1a\x95\xb1\xeb\x8a\x7f\xe5\x1e\xc9\x1c\x13\x27\x52\xea\x29\x68\x11\x70\xc6\x7a\x05\x6f\x13\x51\x8d\x29\xdd\x4a\x4b\xd5\x12\xb5\xda\x0a\xfe\x49\xff\x6f\xde\xfe\xbe\xbb\x6d\x1b\x5b\x1b\x87\xff\xf7\xa7\xb0\x78\x67\x78\x80\x08\x96\xe5\x74\xce\x59\xe7\xd0\x41\xf5\xa4\x69\xd2\x76\xa6\x6d\xda\x38\x9d\xb6\xc3\x70\xbc\x68\x09\xb2\x39\xa1\x48\x15\x84\xfc\x32\xa6\xbe\xfb\xb3\xb0\x37\x00\x02\x24\x95\x66\x7a\xee\xfb\xd7\xb5\x1a\x8b\x20\x88\xf7\x97\x8d\x8d\xbd\xaf\xeb\xf4\x1f\xe4\xd5\x6d\x5e\xb6\xdf\x54\x4a\xc8\x2a\x2f\xdb\xb7\x79\x75\x2d\xda\xb7\xba\xe5\x44\xb5\x14\x2d\x42\xaf\xb4\x60\xc7\xfe\xd3\xdb\x6f\x28\xac\xc1\x4f\x4e\x8f\x0e\x2d\x2f\xdc\x37\x02\xa7\x8f\x70\xe6\x6e\x6a\x04\x50\x31\x3f\x67\x77\xb9\xac\x80\x23\xfb\x5f\x06\x15\x08\xb0\x8c\x69\x3f\x8a\xa5\x05\x76\x39\x1d\xbb\x9c\x92\xe3\x68\xaa\x66\x1b\xd1\x34\xf9\xb5\x60\x0a\x97\x1a\xd0\x57\x5c\xa2\x76\xf9\x95\x8d\xc9\xfd\xad\x3d\x58\x6b\xfc\x65\x15\xb6\x19\xb5\xa7\x7b\x68\x96\xaf\x83\xb1\xd3\xed\x81\x5f\xe8\x19\x68\x70\xd4\x7b\x98\xc2\x5f\xbe\xf9\xce\xb8\x17\x7e\x5b\xe7\x2b\xb1\x8a\xd8\x17\x7a\x69\x1b\x8d\x8b\x70\xc2\x5f\x50\x5b\x56\x82\xcc\xa9\xf8\x30\x36\x4e\xbf\xc6\x9e\x16\x14\x39\xf2\x83\xe5\xb0\x5f\x5f\x22\xa8\x3b\x67\x74\x12\xab\xa3\x32\x3c\x63\x10\xfd\xe7\xbc\x50\x89\xf9\x1d\x4c\x38\x82\xa6\x00\x8b\x93\x13\x93\x30\xc4\xbc\x9c\x99\x04\x68\xdb\x12\xf7\xc0\x27\x73\x36\x01\x8d\x4c\x1c\x07\xf1\x3f\x9f\xb7\xed\xd7\xbd\x49\x91\x5e\x66\x56\x6f\x08\xf1\xa0\x4a\x1c\x6b\xc6\x22\x4b\x51\x8e\xd4\xdf\x10\xe1\x42\x4f\x81\xb6\x85\xd6\x32\xa7\x3b\xff\x0d\x58\xed\xf6\xa0\xe8\x66\xab\xfa\x62\x29\xeb\xb2\x5c\x04\x1d\x6d\x72\x04\xe0\xdd\x21\x1a\xf4\x81\x9e\x1b\x46\xb4\xdd\x86\x53\xe7\xa7\xbe\xad\x99\xa1\x39\xb3\xc2\xd0\x88\x4f\x02\xe7\x12\x6e\x3f\x9d\x74\xc2\xaf\xf4\x7a\x00\xa6\xb1\xc7\x85\x3e\x54\x4d\xe6\x4c\xd2\x9f\x20\xc1\x86\xc9\xb4\xc9\xd8\x64\x0e\x89\x1e\x59\x6f\xf5\x80\xf8\x12\x3e\xd8\x20\xfd\x66\x0e\xec\x66\x25\xa8\xd9\x49\x77\xf3\x6d\x71\xfe\x69\x42\x4a\xae\xd8\xf0\xbe\xce\x1d\x92\x3a\x55\xb7\x04\xa0\x45\x73\xe7\xe4\xbc\x28\x14\xf8\x07\x33\xc9\xf2\x45\x95\x54\x96\x50\xb1\xc9\x58\xc3\xec\x2b\xcf\x73\xa2\x58\x88\xa4\x5c\xd8\x72\xd0\x64\xb7\x40\x68\x15\x26\x69\x52\xef\xd9\xcf\xfc\xf4\x1f\x27\x9b\xe6\xe4\x94\xfd\xc6\x4f\x4f\xd0\x48\x80\xfa\x5a\xa8\xbf\x85\xfa\xef\x99\xaa\x7f\xda\x6e\x9d\x79\x81\x8b\xf6\x6b\x60\xea\x63\x6d\xc8\x7e\x66\xd1\xa6\x39\xf1\x90\x71\x7e\x63\x7f\x43\x9b\x84\xaf\xc6\xa6\x57\x78\xbf\x8d\xc8\x49\xfe\xf3\x64\xea\xdd\x7e\x77\x45\xfc\x2b\x2c\x1c\x45\x33\x33\x14\xa3\x68\x5c\xa1\x7f\x4d\xff\x3a\xdb\x15\xab\xe9\x74\x0f\x7f\xf9\x19\xfb\xab\xcf\x89\x0c\x30\x46\x63\xfa\xf2\xd4\x4f\xad\x87\x94\xf2\xb8\x67\x5f\x21\x37\xb3\x8f\xc5\x18\x7e\xc1\x55\x62\x34\xf5\xc8\x86\xde\x79\xbd\x33\x3f\x1e\x33\xd6\xc7\x8a\x2d\xeb\x6a\x5d\x5c\xef\x24\x68\x0b\xe0\x96\x9c\x32\xb5\x67\x8d\x50\x87\xc8\x15\xf1\x0e\x09\x6a\x60\x01\x86\xfb\xea\x34\x45\x8b\xf4\x57\xa2\x68\xc6\xe5\x51\xc8\xc7\x89\x6f\x2a\x1a\xb2\x47\x16\x7d\x5e\xe7\x01\xae\x32\x00\x94\x04\x19\x27\xbd\x9a\xeb\xb3\x58\x10\x80\x25\xd8\xb3\x7c\xb9\x14\x4d\x73\x48\xeb\xdd\x25\xdf\xb6\x6a\x44\x2b\xab\x2c\x7e\xbf\x3e\x95\x2c\xdc\x05\x8b\x2e\x61\x82\xf7\x2d\x0d\x3e\x32\x49\x59\x77\xcf\xb9\x90\x89\xa2\x43\x05\x53\x70\x1f\xd7\xef\xec\x60\x6a\xf7\xc0\x93\xe9\xa3\xe4\x44\xf5\xe8\x75\xb5\x20\x0b\xba\xe7\x5f\x75\x59\xb8\xae\x2f\x2d\xaa\xe3\x6a\x91\xaa\x2c\x51\x81\xb6\x92\xfa\x36\xcd\x28\x28\x18\x0e\x93\x2a\x55\xa9\xcc\xb2\x3d\xf1\x5b\x42\xaf\xef\x1e\x1b\x2c\xa9\xe8\xef\x0c\x3b\x23\x0d\x9a\x34\x7b\x6f\xf5\x31\xe6\x26\x6f\xbe\xcc\x55\xfe\xe9\x63\xbe\xab\x7b\x1c\x4f\xfa\xe5\x51\x5a\xbc\xd2\x9f\x3f\x01\x87\x85\xbf\xb2\x1f\xcd\xdf\x5f\x8c\xf5\xc2\x23\x9a\x2e\x3c\x7d\xbf\x6f\xdf\xa7\xf6\x77\x46\x9f\x9c\xb2\xbf\xf3\xd3\xf4\xc5\xc9\xdf\x33\x7f\xa5\xf9\xcb\xc0\x2c\xae\xeb\xf3\x3e\x5f\x09\xb0\x28\xf3\x68\x95\xab\xfc\x44\x0b\x20\x76\x7d\xf9\x3b\x8b\x4e\x9e\xc4\x51\xdf\xc9\xbf\x3f\xa0\x80\xcd\x36\x30\xd7\xd3\xe2\x1c\x1c\xea\xe4\x18\xc1\xbf\x92\x3b\xd8\x11\xe1\xf8\x9a\x97\x8d\x88\x70\xb3\x25\x91\x5e\xd2\x11\xc3\x09\x90\xaa\x04\xe7\x7c\x2a\xa6\x51\xb4\x98\x8a\xe4\x17\x67\xed\xf1\x97\x8b\x37\xdf\xa3\x41\x02\xcc\x19\xba\x27\xd2\x1e\x1d\x0b\xfa\xb8\xff\xd1\x1b\xbe\xe8\xd2\x64\x21\xe5\x3b\x9b\xb1\x4b\xff\x86\x7b\xd0\x89\xce\xfd\xda\xbc\x24\x82\xb6\xed\x13\xef\x69\xcf\x56\xe1\x37\xc1\xfc\xfb\x71\x86\xf3\xd3\x96\xc1\x4c\x99\x2f\xfb\x9f\xd0\xc7\x1f\x8d\x24\x65\x80\x16\x2f\x3f\x96\xea\x93\x7e\xaa\x97\x07\x93\x7d\x12\x24\x0b\xc2\x89\x77\xa7\x3f\xc8\xa4\x07\x75\x8f\x57\xbc\x2c\xd7\x87\xe7\xda\xb3\x45\x0d\xc6\x10\x9a\xb6\x78\x57\x39\xb0\x6f\xff\x08\x0b\x49\x8d\x86\x5c\xb5\x77\x07\x3e\x79\x82\x6f\x58\x64\x1a\x51\x8f\x95\x26\xa2\x86\xfb\x49\x3a\xdf\x40\x9c\xc7\x39\x1c\x0e\x74\x3e\xa4\xe2\xfa\x01\x25\xe9\x0e\x80\x0c\x87\x2a\xde\x3d\xfd\x4a\x2a\xa3\x46\xfd\x4f\x4a\xd9\x5f\xd0\x0d\x12\xb8\x90\x8f\x9e\xc0\x50\xe8\xe7\xea\xa3\x67\x16\xe6\xc7\x50\xb7\x82\x0b\x23\x1c\x71\x3d\x91\x1a\x07\x97\xe5\xbb\xa7\xc9\x4f\x7d\x1a\x7b\x8b\x7b\x51\xac\x49\xed\xad\xb3\x0e\x87\xd0\xad\x01\x44\xda\xe6\x62\x82\xd2\x85\x4c\xfc\x37\x7f\xe9\x85\x1e\xfd\x6e\x61\x80\x29\x7f\x6f\x50\x51\xd9\xf0\x9c\x87\x6f\x74\xcd\xc7\x87\x63\x8f\xee\x7e\x90\x93\x19\x51\xae\xe6\xe6\xae\xdc\x8c\xa9\xdf\x76\x62\x27\xc6\x77\x57\xdd\x12\x9d\xc5\x14\x07\x8f\xcd\xf5\x7d\x44\xa7\x11\x7c\x14\xb1\x8a\x3f\x71\xfb\x0f\x93\x71\x0c\xa8\xca\x03\x4e\x75\x1d\xcb\x9b\x00\xbe\x75\x8d\xa4\x34\xa9\xba\xcb\x18\x60\xa5\xdb\xb3\x95\x18\x16\x8a\x3e\x02\x97\x9c\xce\x1f\x91\x78\xf9\xe5\x0c\x62\x61\xe6\x95\xe3\x82\x02\x5a\x28\xe7\xdd\xc4\x2f\x67\x97\x10\x4d\x9f\x04\x1b\x04\x76\x8d\x8a\xca\x29\xc2\xb9\xe1\x69\xf1\xbe\xa9\x4e\x4e\xc0\x63\x96\xe8\xbc\xb8\x31\x5d\xb5\xa0\xb9\xfe\xb7\x94\x99\x0d\xa6\x86\x7b\x2c\xe6\xae\x0a\xbd\xd6\xbf\x9c\x99\xca\x98\x75\xa2\xa6\x94\x4d\xaa\x38\x86\x09\x0a\xd7\x27\xa0\x8c\x20\x7a\x51\xe8\xca\x39\xce\xdb\x6d\x9a\x1d\x62\x44\x47\x6e\x6d\xc1\x0e\x90\xb0\xce\xb9\x66\x96\xec\x11\x2f\x67\x0e\xeb\xcd\xfb\x9a\x1c\x6f\xe9\x49\x95\xeb\x62\x99\x21\x9f\x50\x7f\x29\x1a\xeb\x21\x2c\xe7\x33\x7b\xe5\x3c\x62\xc9\x43\x14\x17\x4c\x70\xdd\xb2\x4c\xea\x76\xee\x8f\xf6\xe7\x72\x61\xfb\xd5\xae\x66\x8e\x77\xc2\x49\x5d\xc9\xe8\x40\x0f\x47\x85\x9b\x5a\x47\xe1\x08\x30\xb3\x80\x99\xce\x15\x68\x06\x6f\xbb\x54\x0b\x4b\x60\x2d\xd3\xf5\x5b\x37\x6d\x46\xc6\xe5\xc7\xa7\xde\x68\x22\xcb\x52\xe4\xf2\xc7\x8f\xa6\x63\x06\x0c\x8e\x76\x96\x66\xa3\x2a\x3f\x5f\x76\x3b\x63\x45\xa8\x5c\xc2\xbd\x80\xe5\x81\x85\x55\xe3\xeb\xd3\x4e\x4e\xaa\xb6\x2d\x82\x23\x71\xcd\x52\x2d\x1d\x81\x50\xf6\x91\xce\xc3\xce\x00\x97\x1d\x2c\x21\x62\x50\x11\x69\x16\x83\x3a\xcd\x33\x26\x82\xc1\x8a\x54\x27\x30\x20\xf5\xba\x3f\x9d\x32\xf3\x04\x63\xb0\xe9\x0e\x69\x0d\xf1\x35\x72\xca\xa9\x85\x90\xcc\xf5\x24\x5b\x68\x69\x6a\xf5\xf4\xfd\xac\xa5\xef\x57\x53\xb2\x48\x52\xf1\x2a\x83\x17\xef\x57\xd3\x96\x9e\x1a\x76\xb6\x3e\xe5\xeb\x3f\x2c\xb3\x2e\xe5\x2d\x25\xd1\x54\x88\x69\x44\xe1\x8c\xf7\xa7\xec\xa9\x23\xcc\x95\x82\xa7\xd1\xbb\x7a\x1b\xb1\xe8\x6d\x71\x7d\xa3\x22\x16\x7d\x51\x2b\x55\x6f\x22\x16\x7d\x2b\xd6\x2a\xca\x58\x25\xf8\xe0\x8c\x1f\xb2\xac\x7a\x97\xb6\xce\x3e\xae\x07\xb7\x0c\x37\x42\xb5\x3e\x77\xd5\x9b\x6d\xdd\x88\x15\x58\xfd\x55\x20\x88\xbd\xad\x6b\x03\x9e\x43\xfe\x40\xb2\x6d\x1b\x24\x42\x6a\xc0\x51\xef\xc5\x33\x4d\x9a\x8f\x73\xc3\x46\x55\x5d\x81\x88\x47\x04\x47\xc6\xae\x46\x3d\x94\x40\xac\x06\x94\xdf\xad\x71\x41\x09\x42\xe3\xb8\x10\x70\x16\x74\x5f\x5f\xce\x96\xb0\x0e\x45\x26\x46\x04\x30\xc8\x03\x0d\x85\xb3\xce\x65\x39\x7f\xc4\x91\x57\xe3\xc1\x2c\x4f\xeb\xcc\x66\x93\xd6\x19\xeb\x7e\x72\x65\x59\x78\x6a\xd4\x51\x48\xc7\xbb\x0a\xfb\x07\x65\x8a\x7a\xb1\x75\x42\xdd\xc9\xae\x93\xb2\x77\x62\xac\x10\xcf\xe6\xac\xe1\xd5\x10\x87\xf4\xb8\x9a\x2d\x77\x92\xf8\x58\xf1\x7e\x97\x98\xad\x0d\xcc\x11\x76\x5c\x8f\xe2\x52\xcb\xea\x12\x30\x64\x09\x44\x40\x2e\xfc\x54\x65\x8b\x28\x4a\xa2\xed\x7d\x44\xd9\x32\x70\x93\xe8\x45\x6b\x5b\x1d\x69\xc2\x79\x19\xc7\xd3\x1d\x8d\x63\x25\xd0\x9c\xd8\x65\x87\x5e\xb8\xcb\x38\x5e\xa6\x9f\x65\xe0\xec\x0e\x12\xd9\xee\x94\x3f\x63\x25\x2f\xdb\x56\x87\xb3\x25\x9f\xee\xda\xf6\x0c\x27\xe9\x25\xb6\x0b\x14\x76\x39\x2d\x29\x23\x67\x27\x35\x7d\x4a\xce\x4e\x48\xad\x8b\x7d\xba\x6b\xdb\xd9\x7f\x52\xfa\x9c\xcf\xe3\x98\xe4\x7c\x4e\xd9\xf2\x94\xd7\x47\xcb\xa7\xfc\x19\x1b\x7c\x6c\xae\xc4\xf7\x9e\x5f\xc0\x92\x4f\x97\x6d\xab\x73\x9c\xeb\x8d\x38\x3d\xcb\x16\xcb\x29\xd1\x7f\xa7\x67\xf4\xa9\x4c\x9f\x65\xc9\x54\xff\xcb\x2a\xbd\x10\xcc\x76\x55\xa1\x78\xc9\xaa\x59\xa3\x72\xa9\xf8\x92\x55\x33\x51\xad\x38\xb8\x94\x83\x7a\xa4\x14\x30\x2e\x6c\xa7\x79\x04\x95\x80\x0d\x13\x4e\x80\xca\x73\x64\x62\x05\x2f\x85\x7f\xa8\x07\xa5\x85\x9c\x5d\xd5\xab\x87\x80\x45\x44\xf6\x9c\xd3\x00\x2f\xc3\x8c\x5f\xe5\x8d\x5f\xf6\x31\xea\x4a\x37\xee\x51\x98\x88\xae\xca\x7a\xf9\x21\xa2\x0c\x8a\xc0\x8b\x80\xf6\x73\xc0\x6a\xa9\x85\x5e\x34\x82\x98\xb3\xbc\x03\x26\xa9\x9f\xe7\xe7\xf5\x74\x4a\x49\x05\xf0\xdd\x66\x22\x82\xef\x78\x15\x4e\x3f\xa6\x16\xc4\x95\x40\xf7\x42\xa1\x07\x3e\xae\xc6\x95\x57\x85\xb6\x45\x7c\x83\xb4\xd6\xa3\xb2\x97\x08\x07\xae\xb6\x08\xf5\x9d\xbd\xd9\x9d\x0b\xb0\x62\xc1\x74\xd1\xda\x89\x26\x98\xe3\xc4\xcb\x11\x43\x18\x8a\xee\x5e\xc6\xa8\x87\x43\x07\xce\xb9\xab\x17\x5e\x55\x15\x88\x4c\xae\x6b\xd8\x2b\x8f\x7e\xe3\x21\x19\x05\xd2\x47\x73\x53\xdf\x8d\xcc\xc4\xb5\xd9\x69\x41\x56\xbe\x29\x56\x63\xf7\xfe\x26\x0e\xdd\x33\x55\x5f\x5f\x97\x63\xbb\x70\x74\x55\xd7\xa5\xc8\xfd\x8b\xd9\x85\x39\x54\xe8\x8c\x89\xb1\x6b\xd7\x19\xd8\xdf\xfd\xad\x3f\x37\xb9\x2c\x2e\xf1\xaf\xfd\xd0\x3e\xe2\xb7\x7b\xb7\xc1\xdd\x08\x54\x15\x58\x1c\xa6\x16\x90\x99\x80\x13\x7d\x25\xf8\x69\xe8\xb5\xd4\x73\x5a\x3a\x2d\xd8\x56\x7f\xfe\xa4\xfd\xc7\xa6\x5e\xed\x4a\xf1\xa4\x7d\x7f\x4a\x16\xc9\x3f\xf3\xdb\xbc\x15\xcb\x4d\x4e\x9b\xa5\x2c\xb6\xea\xb4\x60\x1b\xc1\x1f\x11\xda\x2d\x49\xcf\x58\x64\x89\x87\x36\xbb\x52\x15\xdb\x52\xf0\xff\xb0\xbf\xfe\xe3\xf3\x88\x45\x1d\xe5\x50\xc6\xd4\x8d\xc8\x57\xf8\x11\x78\x94\xe2\x7b\xf3\x33\x63\xcb\xba\x4c\xd2\x67\xee\xe5\xf3\x65\x5d\x5e\xcb\x7a\xb7\xc5\x68\xee\xc9\xfb\x42\xc9\xe0\x03\xa5\x27\xa6\x49\x14\x7e\xfa\x51\x57\x49\xfa\x59\x3f\xea\x73\x25\x4d\x74\xf9\xf9\xc8\x37\x97\xc6\x63\x31\x49\xe7\x2c\x8a\x58\x14\x65\xde\x32\x72\xeb\x73\xc1\x3a\xd5\x02\xff\x1d\x6a\xcc\xc5\x01\x1e\x43\x04\xb2\xa1\x89\xf7\x79\x9f\x3e\x68\x31\xc2\x28\x64\x3f\x4b\x33\xd6\x53\xfb\xa1\xc3\xdb\xc2\xd9\x83\x0a\x50\x52\xcb\x90\xd3\xb3\x87\x6b\x06\x8b\x9f\x3d\x88\x3f\xaf\xce\xe5\x74\x4a\x71\x22\x8a\x54\x66\x2c\xba\x2e\xeb\xab\xbc\x7c\x75\x9b\x97\x11\x78\x10\xe3\xea\xa0\xfa\xef\x28\xdd\x6f\xc4\xac\xde\x2a\xe8\x2f\x8e\xbf\x8b\xba\x62\x1b\x31\x83\x36\xd6\x41\x6a\x5d\xd7\x4a\xff\xb0\xfd\x0a\xbf\x73\xbc\xdd\xda\x80\x01\x43\xbe\x82\x2f\x6e\xe0\x71\x05\x43\xfc\x5a\xb0\x2b\xc1\x2e\xf5\x68\x6e\xe3\xff\xb3\x78\x7f\x37\x3d\x3f\xed\xba\xe4\xee\x10\xa0\x92\x05\xf5\x60\x6b\xae\xcc\x52\x6d\x17\xfc\xd7\x32\xbf\x86\x35\x9b\x5a\xb0\xa2\x39\xdb\x76\xcd\xb0\x7a\xbe\x3d\x5f\xa1\xb3\x02\x00\x2e\xad\x32\x8a\x88\x93\x35\xed\x5f\x7a\xd4\x94\xda\xd6\xbe\x61\xb5\x87\x48\x54\x67\x49\xdd\xdd\x75\x5c\x1a\xb7\xeb\xda\x28\x3f\x72\x0e\x88\x0a\x01\x9d\x56\xdf\xd7\x79\x55\xdc\xea\x85\xb5\xe1\x64\x65\x36\xf0\x9a\xb6\x6d\x8a\x63\x92\x0e\xc1\xec\x77\x7c\x23\xd2\x26\x6b\xdb\x8d\x98\xd9\x41\xcc\x72\xcf\x69\x78\xa7\x37\xd3\xcb\xd9\x8d\xda\x94\x3f\x48\x61\xec\x73\x6b\x3a\xdd\xe9\x6d\x75\x09\x6e\xfd\x88\x22\x94\xf3\xbc\x83\x4c\x3e\xea\xea\x97\x07\xfc\xf7\x24\xe7\x6b\xdf\xe6\xd9\x07\x26\xe5\x51\x84\x6a\x38\x83\xe9\x62\x2b\xf7\x4e\xdc\x1b\x01\xd3\xac\xeb\xeb\xde\x57\xba\x2b\xce\x6b\x7e\x93\xae\x2c\x92\x44\x05\x3e\x44\xc6\x96\xb0\x66\x15\xfd\xfc\xe4\x8c\x82\x39\x92\x01\xbc\x72\x8d\x5c\xf2\x02\x2e\xe3\x73\x7e\x2b\x48\xd8\xb8\x35\x65\x11\xae\x65\x11\xdc\x2c\x3d\x08\x92\x53\x86\xa4\xcb\x4b\xc8\x31\x4f\x97\x90\xe3\xd6\xf6\x94\xc5\x48\x8c\xa8\xf3\x40\xad\x3b\x02\xcb\xfd\xb5\x16\xe8\x0f\x8d\xaa\x20\xef\xea\x40\xc7\x92\xab\x2e\x89\x3e\x15\x5b\x9f\x5a\xcd\x30\xb1\xc1\xda\x1e\x51\x76\x25\x7a\xef\x2d\x1d\x1d\x8b\x3a\x62\xba\x41\x24\xc3\xcf\xa6\x9b\xe0\x3a\xa4\x72\xbb\x12\x94\x6d\x11\xc4\xf3\x65\x59\x57\x82\x5f\x8b\xd9\x52\xff\x80\xbe\x9a\xcc\x69\xef\xc9\x0d\x0e\x0b\xfc\xa9\x13\xf4\xbd\xd3\x75\xa7\xe6\x52\xe4\x9f\xdf\x3f\x3f\x75\xbf\x23\xb6\x9d\x55\x35\x64\xf0\x12\x3f\xe3\x93\xc9\x20\xa7\x2e\x6d\xdf\x75\x1c\x16\x82\x57\x7a\xb3\xfa\x20\x1e\x4e\xd9\xbd\xd9\xf5\x36\xf5\xae\x11\xed\xb6\x2e\x2a\x25\x64\xbb\x44\x07\xe0\x8d\xa8\x76\xed\x4a\xe6\xd7\xed\x4a\xd6\x5b\xda\x2e\xcb\x62\xf9\xe1\x94\x5d\xc0\x37\xe9\x3f\x66\xd9\x53\xaa\x4f\x83\x33\x32\x9b\xd2\x96\x7a\x4b\xc9\x1b\xe1\xd3\x07\xb8\xe0\x17\x5e\xb0\xc7\xb8\xfd\x41\x84\xee\xc5\x9c\xf3\x9e\x79\x93\x3b\x01\x04\xa0\xae\x9d\xc5\xd3\x7e\x4f\x28\xe7\x24\x02\x48\x58\xd0\x18\x79\xd2\xde\xbb\x1e\x4a\x1b\x1c\xbd\x58\x13\x5e\xbb\xba\x8b\xaa\x47\x7b\xf5\x3a\x38\x7f\x4b\x50\x98\x56\x6d\x2b\x99\x74\x47\x70\x45\x21\xf9\x06\x92\x57\x69\x93\xb1\xda\x93\x98\xf4\xac\x83\x4b\xde\x0a\xe1\x61\x38\x2f\x16\xa4\xe0\x92\x55\xdc\x25\x91\x98\x17\x71\x3c\xbc\x37\x93\x3a\x76\xc5\x2a\x17\xd7\x3c\x7a\x25\x30\x78\xe2\x05\x2d\xf8\x0b\xe1\x66\xf0\xa4\x70\xc0\x01\x3e\x1a\x7e\x0d\x47\x8a\x82\x91\x62\xf4\x60\x4b\xe8\xac\x5e\xaf\x89\x00\x7b\xa0\x31\x13\xc5\x3d\x9d\x5d\xef\x8a\x15\xcf\xe1\x0f\x80\xe5\xc1\xf3\x25\xfc\x99\x4e\xc1\x74\x6b\xa8\x83\x11\xb7\xa2\x52\x68\x61\x84\x4e\x11\x05\xab\xe0\x46\xb9\xeb\xa4\x97\x0e\x2e\x52\x2e\xc8\x13\x77\x09\x31\x39\x03\x45\xa9\xfb\x5e\x87\x3d\x3a\x92\xeb\x64\x72\xc6\x6e\x80\xd5\x45\x0e\xee\x91\x2a\xe0\xa2\x36\x7b\x2c\xe4\x0a\x67\xb5\xb3\x58\xcc\x8a\xe6\x9d\x2c\xae\xaf\x85\x34\x2e\x59\x0a\x9d\x39\xad\x16\x9d\x12\x9b\x23\x60\x19\xe4\x25\x1c\x05\x1f\xf7\x74\xb6\x12\xa5\xb8\xd6\x8b\xaf\xa5\xa5\x57\xf5\xf6\x07\x59\x6f\xf3\xeb\x1c\xeb\xea\xda\x3f\x1f\xb1\x3e\x7a\xd2\x29\x9c\x15\xcb\x41\x61\x6a\x4b\xc6\x4c\x39\x08\x65\xf9\x84\x73\x52\x84\x05\xd7\xc7\x86\x45\xf0\x39\x70\x54\xf3\xc7\x3d\x44\xef\xfa\x1a\x4a\xf4\xcd\x66\x23\x56\x45\xae\x44\x50\x34\x26\xc0\x6d\x4b\x54\xea\x4b\x5c\x0d\x40\xcf\x73\xdb\x71\xef\xe4\xdd\x5d\x44\x90\x95\xb9\x19\xb6\x6d\xa2\xb0\xe9\x88\x53\x5f\xe7\xe9\x3c\x63\x97\x33\x30\x8c\xe8\xae\xb4\xf5\x10\xb2\x80\xce\xd6\x7f\x93\x7d\xac\x7c\x5a\x0e\xf7\xd4\x8c\x9d\x56\x5b\xef\x5a\xe1\x00\x78\x23\xe8\xde\x84\xf1\x47\x94\x9c\x92\xc7\xa1\xa7\x5c\xc0\x27\xe1\x4b\x31\x96\xcf\x81\xdd\xda\x6c\x28\x32\x2f\xc0\x6d\xca\xcc\x8c\x28\x38\xe6\x91\x9a\x4b\x6a\x43\xc0\xa6\xcc\xa2\x55\x80\x82\xfa\x90\x57\xbd\x00\x24\x19\x3b\x49\x64\x6f\x92\x30\xb2\xe3\xb7\x58\xfe\x86\xb6\xad\xf7\x04\xe8\x9e\x24\xe7\xb7\x26\x4b\x34\xe2\xb0\x4f\x81\xd9\x52\xff\x46\xe4\xb2\x6b\x27\xd3\x45\x40\xa8\xaf\x10\x65\xce\xbe\xd2\x27\x3b\xc0\x79\xb0\xfa\x1a\xcf\x72\xcd\x50\x0b\x53\x56\x72\x62\xae\x1a\x22\xea\x5f\x1a\x6b\x69\xc9\x4a\x76\x25\xdc\x18\xf3\x0d\x07\xac\x2f\x94\xaa\x54\x5a\x66\x06\x6d\xe8\x2c\x63\x5b\x4e\x9a\xf4\x99\xa1\x23\x32\xd0\x37\x33\x8b\x7d\x43\xd9\x2a\x8e\xc9\x9a\xf7\x67\xda\x0a\x66\x1a\x5b\x71\x52\x2c\xd6\xc1\x7c\x4b\xd6\xb3\xab\xa2\x5a\x19\x86\x83\x15\x3b\xf8\xed\x92\x77\x37\x2b\x00\xa5\xb6\x62\xb5\x2c\xae\x21\x8d\x0d\x5e\x3d\x56\x6e\xd5\x90\x4c\xf7\x49\x82\x3d\xc4\x6c\xdf\x26\x05\xf3\x71\x30\x12\xe8\xe9\x03\x20\x19\xc6\x47\x9b\xb2\x6e\x55\xda\x1a\x5c\x9f\x59\x04\xd7\x0d\x8c\xdc\xf0\x1d\x8a\xbe\xc4\xfc\xe4\x69\xd6\xad\x26\x2f\xeb\x5d\xa5\xf8\x9c\xad\xf5\xac\xdb\x6d\xe3\x78\x72\x36\xe1\xdc\x3c\x75\x70\x15\x5b\x96\x83\x76\xb1\x6f\x84\xa4\x17\xa2\x81\x61\xd2\x8a\xe5\x94\xb2\xb5\x7e\xa1\xdb\x59\xff\xb5\x29\x2d\x29\x5b\xda\x11\x6d\x47\x68\x18\xc0\xf1\x0f\xa5\xac\x58\xdc\x58\xb7\x95\x9b\xb0\xbc\xd3\x29\x9b\xb3\x25\x4d\x8c\x58\xba\xec\x96\x69\x9c\x90\xba\x92\xde\x7d\xd9\x1f\x98\x98\xdd\x85\x71\x1c\x07\xd3\x34\x8e\xfd\xf9\x63\x11\x40\x3f\x71\xc8\x16\x6b\xf2\xbf\x1a\xb5\x98\xdd\xc1\xc1\x07\xdd\xcb\x49\xf5\xf1\xc1\x0b\xb4\x20\xac\xe1\x0d\xd0\x71\xf5\x08\x8f\xde\xbf\x9f\xd1\x68\x6a\xc7\xd0\xfb\xf7\x33\xb2\x48\x66\x4f\xdf\xbf\x9f\xb5\x34\xa2\xd3\x88\xe8\x5f\x4f\x68\x04\x14\x14\xfc\xc6\xc3\xdc\x3a\xa7\x4b\x7e\x03\x90\x5b\x45\x1c\x6f\x26\x9c\x2f\x67\x76\xe0\xb7\x2d\x20\xec\xeb\x5e\x85\x70\xec\xf6\x26\x8e\x27\x0d\x8e\xdf\xe5\xcc\x0d\x5f\xbd\xd9\xc4\x71\x05\xf1\x1a\xc7\xe8\x48\xa2\xa7\x4f\xc1\xdc\xae\x6d\x27\x5d\xb8\x1e\xd2\x37\x01\xce\x96\xff\x4d\x6f\xc8\x9c\x9c\xb0\xb5\xd1\xda\xc5\xb1\xfd\xd5\x8d\x4a\x7a\x94\xc7\xf1\xe4\xa6\xdb\x85\xf4\x89\x26\x97\xab\xfa\xae\x72\x53\xc2\x06\xd8\xaf\xb6\xcc\x5b\x29\x2f\x7d\xcb\x4a\x22\xd8\xaa\x7b\x69\xaf\x09\x61\x1a\x76\xf0\xcc\xab\xe3\xa2\x3a\xde\x51\xdb\x97\xee\xf2\x6d\x35\xd5\x83\x02\x86\xe9\x64\x4e\x8f\xfa\xc6\x26\x3b\x18\x91\x2e\x76\x84\x99\x1c\xe3\x80\x8c\xe8\x1e\xfc\xa7\xb6\x03\xc7\x94\xc0\xe5\x4f\x0f\x7b\x37\x88\xd6\xc5\xbd\x16\xba\x76\x70\x63\x82\xe7\xb3\xfe\xad\x1c\xac\xca\x9e\x50\x10\xd9\xdc\x40\x32\x49\x1b\xc4\x55\x83\x71\xb5\x1c\x0c\x4e\xf7\xd6\x28\xf8\xf5\x01\x95\x37\x4c\xf1\xb3\x73\xf5\xbc\x9f\x13\x60\x9e\xec\x52\xe5\xd9\x3b\x1b\x1e\xd5\xa6\x1b\xd3\xc0\xf5\x80\x37\x5c\x93\xa5\x16\x2c\xbe\x34\x35\x6e\x5b\xe8\xaa\x20\xcc\x73\x8e\x6f\xdc\xb1\xdd\x96\xd1\x2c\x3c\x8d\x1f\x89\x95\x88\xc0\x42\x0a\x9e\xa7\x6a\x3a\xcd\x28\x8c\xd4\xa2\xf1\x24\x86\x0b\x55\x6f\xb7\x62\x45\xe8\x39\x1a\x4b\xce\x96\x3b\x29\x45\xa5\x4c\xd1\x8a\x99\x28\xc5\x86\x49\x9d\x4a\xcd\x0b\x97\x4d\x2a\xbd\xe4\xc6\x24\x11\x2f\xdd\x66\x26\xdd\xac\x30\x43\xb0\x9e\xf9\x21\x7e\x04\x7b\xd8\xf5\xe7\x11\x69\x4c\xbe\x6f\xae\xfe\xc9\x6b\xd6\xcc\xf4\xee\xc3\x6b\xf8\xd3\xd9\x86\x91\x8a\x93\x81\xc8\x59\xbb\xb9\x6b\x64\x4f\x4c\xa8\x6d\x6b\x5b\x15\x6a\xf6\x70\x53\xd3\x1d\xf0\x58\x68\x21\x9f\x34\x33\x29\x9a\x5d\xa9\x38\x68\x8c\x9b\xa1\xdc\xd7\x0c\x25\xd7\xee\x02\x70\x39\xdb\xd6\x8d\xb2\x7d\x17\xc7\xe1\x73\xd0\x97\xcc\xe6\x04\xf6\x5c\xd8\xc0\x87\x8d\x63\x60\xc8\xa7\x19\xdb\x71\x15\x2e\x0c\xac\xe4\x62\x86\xf4\x21\x80\xbb\x1e\xc7\xa5\x6f\xfd\x42\x22\x38\x77\xfa\x7c\x08\x62\x86\x84\x0b\x9f\xf3\x33\x63\x91\x5a\x6a\x59\xe7\xa6\x68\xce\x4b\x5e\x06\xee\xe7\x20\x7b\x1a\xf0\x2d\x3f\x59\x9b\xea\xa4\x63\x71\x00\xbb\xe5\xd2\x31\x9a\x9b\xa1\x6a\xbc\x73\x1f\xf7\x0c\xb9\x0b\x76\xa0\xd8\x73\x82\x6a\x9e\x16\xba\x07\x01\xec\xd4\xad\x7d\x96\xf8\x36\x4f\x8b\x8c\x57\x81\xbc\xb0\xb8\x24\x05\x0a\xc4\x06\xf7\xa2\x04\x9f\x4e\x03\x32\x84\xaf\x0c\x1f\x6d\xe9\xf6\x2e\xca\x74\x4a\x71\xec\x9c\x5d\x8f\x6a\xb7\x4e\x36\x06\x3e\x56\x8f\x82\xa4\xec\xfa\xa1\xde\x3b\x3b\x9d\xd2\xb8\x61\x3d\x57\xbf\xfb\x95\xb2\x18\x90\x80\x75\x0b\x42\xb5\x1e\x27\xbd\x5e\x1d\x37\x29\x1d\x1c\x02\x98\x60\x8f\xa2\xda\x6d\x84\xb5\x26\xed\x5b\x97\x82\x95\x27\x38\xe0\x78\xe7\x45\x6b\x1a\xa5\x27\x40\x51\xe5\x25\x24\xea\x6c\x60\xc6\xde\x05\x57\x82\x1f\xff\x7c\xf0\x26\x15\x59\xcf\xba\xf5\x60\xfd\x8c\x41\xc3\xef\x54\xe9\x4e\x16\xca\xfe\x36\x46\xb5\x70\xc9\xb0\x67\xeb\x62\x1c\x66\x24\x75\x46\xc2\xd9\x42\x24\x7a\x0f\x30\x2d\x09\xc6\x72\x66\x45\x48\x1e\xcb\x3a\x5f\x25\x8f\x55\xfd\xc5\xee\xca\xd8\xe6\x32\x18\xc2\xc9\x23\x48\x8a\x23\x96\x94\xba\xc0\x6d\xeb\x34\x00\x37\xc2\xba\x56\x18\xf0\x4c\x35\x83\x04\xe2\xf8\x03\x51\xcc\x6a\xcc\xe2\xf8\x25\x00\x2d\xe2\xf4\xd0\x87\x2d\x36\x39\xdb\x33\x73\xa8\xf8\x7f\x93\x0b\x65\xba\x36\xee\xc2\x60\xc4\x26\xd4\xae\x0f\xff\x66\x26\x66\xc7\x74\xf9\xb4\x2d\xbc\xcf\x61\x97\xbe\x12\xeb\x5a\x8a\x5d\x85\x0d\xeb\xaf\x72\x61\x09\xba\x4b\x05\x5c\xed\xf4\xfa\x13\x8c\x21\x30\x85\x0d\x42\x66\x58\x4e\xd0\xb8\xb9\xef\xe8\x7e\xbf\x47\x67\x14\x27\xa6\x0c\x4c\xef\x47\xdd\x43\x74\x86\x63\x5e\x23\xc6\x94\x71\x36\x4c\xca\xa2\xc4\xde\x14\x4d\x00\x50\x85\x51\x9d\xbb\x50\x30\xd6\x98\x02\x17\x54\x5c\x0d\x17\x23\x93\xc8\x22\x3a\x81\xc9\x3a\x46\xc3\x80\xa2\x31\x7b\xcb\x0f\xb8\xd3\x88\x15\x77\x78\x95\x2e\xc8\x12\x6d\xc2\x32\xde\x7f\x69\xb6\x2e\xe1\xb7\xdb\xe2\x8d\x48\x5e\xd8\x2c\x71\x57\xb7\xc3\x20\x8e\x3f\xc3\xdd\x00\x9e\x3c\x2b\x64\x1b\xd2\xed\x00\x89\x0d\xc3\x84\x42\x29\x41\x84\xcf\x18\x05\xe0\x6a\xc5\xca\x45\x09\x9e\xcd\x65\x23\x36\x01\x53\x78\x30\x84\xc3\xa6\xaf\xca\x99\xa9\x62\x23\x2e\x54\xbe\xd9\x72\x6c\x51\xfb\xd8\xb6\x5f\xe6\x4a\xcc\xaa\xfa\x8e\x18\xa5\x4f\x37\xf7\x39\xcc\x81\xfe\x1a\xca\x1f\x3d\x1c\xb2\xc4\xbc\x66\xc3\x16\xd7\x4d\x35\x26\x20\x61\xf8\x47\x24\x1d\x8c\x70\x51\x6c\x76\x50\xcd\x64\x72\xc6\x42\x81\x61\xe8\x35\x3d\x1c\x1a\x47\x87\xc6\xc1\x1b\xc1\xf4\x1e\x6e\x5e\xbb\x5c\x80\x99\xaa\x27\x96\xec\x59\x4f\x2a\xf9\x77\x32\x1e\xd6\xeb\x63\x59\x0f\xc4\x1f\xcc\x7b\xac\x95\xfe\x9d\x42\x7c\xa4\x95\x7f\xaf\x34\x07\x94\x76\x78\xe3\x3d\x28\xed\xde\x21\x2d\xe5\xa5\xfa\xab\x78\xd0\x7b\xcd\x15\x6c\x0b\x80\x67\xb6\xd4\xd3\xbd\x74\x1b\xd4\x4d\x5e\x5d\x8b\xd5\xbb\x7a\x07\x78\xf2\x3a\x44\xc9\xd2\x7c\xb5\x12\x2a\x2f\x4a\xfd\x0b\x3a\xe3\x87\x9b\xbc\x81\x8f\x36\x42\xe5\x26\xca\x36\xbf\x16\xbf\xd8\x1f\xbf\xea\x1f\x60\x88\x69\xde\xde\x16\xe2\xce\xe4\x22\x71\x3b\x5c\xd9\x5c\xe5\x4b\xf3\xfb\x03\x46\xfd\x20\x1e\x6c\x88\x21\xe2\x72\xbf\xb0\x58\x65\x21\x2a\xf5\x4b\xf7\x13\x32\xab\xd7\xeb\x46\x60\x28\xfe\x84\x50\x73\x53\xf1\xcd\xca\x7b\x80\x93\xb6\x2e\xde\x52\x0a\x51\xfd\xd2\xfd\x84\x2f\x70\x15\xf0\x5a\x41\xd5\xe6\x1e\x01\x1f\x5c\xf8\xdd\x4d\x31\x76\x72\xe3\x56\xe8\x0c\xc9\x7b\xc5\x0c\xe2\xc7\xf1\x2b\x0b\x08\x8d\x5b\xd2\xc2\xf8\x01\xcf\x6c\x43\x2c\xba\x9f\x89\x98\xb9\xb6\x70\xdf\xfb\xfe\x0d\xf7\xbd\xb4\xce\x62\xb5\x38\x4b\x9e\xc5\x6a\xf1\x59\xf2\xe7\x58\x2d\x9e\x25\xf3\xc4\x7c\x88\x63\xc1\xea\x47\xf5\x30\xe9\x60\xb8\x90\x21\x0f\x6f\x45\x8a\x2a\x62\x57\xe5\x4e\x9a\xc7\x7a\xa7\xa2\x21\xa6\x51\x78\x06\x11\x19\xef\x8b\x16\x4e\x68\x79\xe9\xec\x3b\x3f\x1c\x12\x10\x86\x71\x71\x9b\x0f\x14\x23\xca\x87\x0d\x83\x4b\x28\xbd\x6e\xc8\x24\x82\xdf\xf5\xad\x90\x11\x83\x9f\xa5\xc8\x6f\x85\x0d\xde\xa9\xc8\x76\xba\x89\x6e\x9e\xf0\x03\xf3\x60\x3e\xb1\xaf\x3e\xb1\xc6\x61\xf1\x98\xd5\xdb\x24\xca\x08\xc9\x83\x91\x01\xae\x3b\xe1\x2e\x01\xbc\x05\xee\xe8\xe7\x06\x0c\x5c\x20\x71\x23\x30\xf5\xd1\xfb\x2a\x20\x86\xc0\x1e\xe7\x85\x3b\xfe\x31\xd9\x9d\x5e\xc7\x2f\x65\x98\xf9\x06\x30\xc7\x07\x56\xc2\x01\xdd\x9d\xb5\xb6\x33\x05\x7a\xd7\x19\xe9\x42\xf8\x9e\xd5\xd5\x50\x55\x77\x28\x3a\x3b\xd3\x1f\xac\xd7\x87\xfc\xc2\xc0\x76\x7d\xb8\xd0\xeb\x10\xd7\x34\x4e\x10\xf1\xdb\x8b\x5d\x12\xd1\x53\x35\xe0\xc5\x54\xd5\x9d\xae\x17\x95\x6b\xa1\x69\x34\x8b\xa6\xde\xab\xa4\x7b\x05\x54\x26\x78\x24\x63\x95\x3b\x38\xc3\xaa\x3a\x7a\xfd\x67\x08\x77\x00\x53\x53\x50\x5c\xe8\xd7\x6b\x00\x7e\x17\x07\xb0\x33\x41\x2d\xa0\xe2\xb8\xc3\x92\xe8\x30\x81\x01\xb9\x46\x31\xe5\x6e\x0b\x41\xc8\xc1\x9b\x85\x17\x06\x3f\xf0\xe0\x75\x59\xe0\x33\xc0\x24\xba\x28\x58\x54\x56\x30\x48\x5a\x4c\x72\x29\xf2\xf6\x4a\xb6\xcb\xba\x6c\xc5\xe6\x4a\xac\xda\x1b\xd9\x16\x9b\xeb\x16\x04\xe0\xb6\x2c\xaa\x0f\xad\x5e\xc9\xdb\x6d\x2e\xf3\x0d\x25\x1f\xb3\x61\x02\x48\x57\xfa\xfe\xf4\xf3\xd3\xeb\x82\xbd\xd5\x19\xe0\x3d\x7f\xfb\x1c\x8c\xc2\xda\xe7\x3a\xb5\xd3\x82\xfd\x20\xf8\xa9\xb9\xac\x7e\xdf\x3c\x25\x8b\x24\xfd\x07\xcf\x5a\xfe\xbe\x79\x6a\xef\xb0\x67\xf4\xb4\x60\xff\x14\xfc\xf4\x1f\xef\x9b\xa7\xcf\x27\x64\x91\xbc\x4f\x5f\x7e\xf9\xe2\xdd\x8b\xf7\x69\x7b\x72\x42\x5b\x1d\x90\xbd\xcf\xf4\xef\xcf\xdf\x37\x4f\x9f\xf8\x9e\x57\x5f\x86\x77\xc1\x08\xd9\xa6\x77\x32\x2d\xcd\x7f\x20\x43\xa0\x40\xe5\x83\xcb\x45\x4a\xea\x78\x00\x11\x6c\x41\xe6\x48\x04\x56\x33\x11\x4d\xe7\x59\xdb\x7a\x38\x65\xdf\x87\x8c\x65\x30\x87\x08\xae\xda\x87\x68\x16\xa7\xd1\x69\x34\x35\x92\xaf\x97\xd2\x37\xa2\xe7\xa0\x75\x8a\xe6\xbb\x9d\xe5\x83\xe3\x04\xfa\x4f\xba\x10\xbe\x00\xed\x9c\x6f\x12\x2b\xe2\x0f\x72\xf5\x73\xfa\x56\x8c\xaa\x55\xd8\x0e\x41\x54\x7a\xfc\xac\xfa\x10\x10\x2a\xd2\x49\xed\x79\x82\x50\xb8\x20\x85\xab\x3e\x56\x53\x56\xf2\xda\x29\xd5\xdd\x2c\x30\x8a\xd3\xdc\x4c\x1e\x96\x77\x37\x55\xac\x34\xc0\x63\x73\x56\xf1\x32\x2d\xb2\xbe\xf1\x53\x70\xf1\xcb\x0a\xa6\xe3\xa4\x32\xa3\x47\x3f\x86\x65\x6a\xf8\x8f\x5e\x99\x76\xdc\x87\x4a\x6b\x28\x33\x8e\x3a\x88\x31\xe2\x5a\xe2\xb5\x67\x3c\xac\xb8\xbd\xaf\x4e\x33\x7d\x8a\xb1\xc6\xc4\x9d\xdd\xd2\x9c\xdd\x74\x9e\xd7\x2b\x7e\x73\x72\xc6\x6e\x01\x51\x9b\x3d\xf0\x0d\xb9\x85\x8b\x85\x87\xb6\x05\x4c\xbd\xc1\x2d\xfc\x6d\x1c\x4f\x7c\xa3\x8e\x38\xfe\xc1\xec\xcf\xb7\x1e\x3e\x7f\x38\x8f\x1d\x5c\x8e\x98\x89\xdf\x48\x41\x8f\x1e\xe2\x98\x00\x1d\xf2\xad\xa7\x42\x2b\x58\x0d\x56\x44\x84\x52\xca\x5e\x0b\x52\xdb\x85\x18\x0a\x74\x03\xfd\x45\x0a\x7e\xa7\x8f\xca\xc0\xf1\x15\x5a\xdb\x4e\xce\x98\xd0\xfb\x86\x3f\x05\xc0\x18\xc0\x33\x2f\xf2\x3d\xcc\x6a\xca\xea\xb6\xad\x8c\x62\x6b\xc7\x49\x63\xb0\x0a\x6f\x05\x29\x3c\xbb\x9e\xef\x85\x23\x2c\x39\x5f\x3f\xbf\x39\x5f\x4f\xa7\xb4\xe4\x05\x5b\x4f\x38\x5f\x01\xb5\xc7\x25\xda\x9a\x90\x92\x81\xbf\x3f\x65\x3b\x7d\x12\x42\xf3\xa6\x86\xdd\xea\x17\x2e\x39\x4a\x99\xb4\xae\xe1\xeb\x8c\x95\x6c\x4d\x91\x5e\x11\x6d\x86\x9a\xb4\xe9\xb0\x9c\x7b\x15\xc4\xd2\x35\xec\x1b\x41\x75\x27\x9e\xaf\x9f\xef\x4c\x61\x1a\x9d\x94\x35\x31\x2a\x7d\x13\xa3\x89\x1b\xe0\x65\x68\x57\xa7\x4b\xe8\xb6\xdc\x25\x2b\x81\xdb\x6d\xd6\xc8\x65\x1c\x47\x68\xb5\x19\x4d\x38\xf7\x13\xeb\x51\x4c\x5c\xce\x2e\xc5\x6d\x5e\xfe\x24\xcb\x38\x9e\x94\xb3\xaa\xfe\x0e\xbe\xd2\xe9\xda\x17\x98\x20\x7b\xac\xea\x6a\x29\x12\x1d\xa7\x5a\x8a\xb6\x2d\x7b\xcb\x09\x04\x47\x74\x4f\x93\x6b\x9d\x5f\x67\xb8\xe5\xbc\x47\xff\x29\x80\x6d\xa2\x64\x4b\xea\xd4\x78\xde\x3a\xf0\x2f\x31\xe0\x22\x60\x05\x57\x0b\x1f\x53\x9e\x26\x82\xd5\x7c\x7e\x6e\x78\x89\x2a\x34\xe7\x05\xc3\x5f\xd9\xb6\x67\x13\x1f\x1f\x1e\xc4\x91\x52\xe4\x15\xcc\xca\x5b\xe4\x2c\xac\x02\x2a\x61\x22\xc1\xc7\xa0\x42\xbe\x13\x1d\xc5\xeb\xe2\x20\x6e\x60\x9a\xed\x91\xbb\x09\xdf\x73\xd4\xb7\x9d\x1b\xe7\x31\xb6\x4d\xf1\x9d\x60\xd1\xf3\x27\x67\x9f\x3f\x3f\x7d\xf2\xec\xf3\x08\x51\x8d\x07\x62\x4a\x67\xf4\xe1\xb3\x90\xf5\x4c\xa2\xd8\x9a\x17\xd6\x47\x7d\x42\xfa\x36\x54\xd8\x26\xbe\x3f\xc0\x59\x18\x80\x6e\xd0\xc8\x28\x41\x04\xc5\x55\x12\x6c\xe4\x96\xd4\xc0\x29\x93\x5a\x3f\x7a\xd3\xc7\x31\x30\xf2\x3a\xad\x80\x88\x4f\xff\x29\x2d\x9a\x52\x47\x00\x42\x4a\xbe\x3b\xc4\x01\x12\xc7\x56\xdf\xd5\x98\x03\xc1\xce\xee\xb5\xbc\xb1\xbf\x12\x93\x16\xfa\x2b\x44\xd6\x58\x0c\x9e\xdb\x96\xec\x02\x2b\x30\xde\x04\x8f\xd0\x22\x0a\xf0\x99\x29\xea\xbc\xeb\xb6\x85\x8a\x30\x30\xb0\xf4\xab\x58\xf7\xab\xf6\xad\x20\x50\x37\x5d\x33\x63\x01\x03\xdb\xd4\xd2\x76\xbc\x69\x23\x6f\xb8\xf8\x6c\x50\x82\xe4\x6c\xb2\x8e\x63\xbc\x4b\xeb\x46\xd4\x12\x1d\xb5\xaa\x81\xab\xa5\x4f\x89\x58\x81\xa3\x40\x20\xc4\xc3\x98\xf7\xdd\x41\x85\x1b\xf6\xc5\x9a\x7c\x45\x24\x35\xd0\xed\x32\x7d\xd2\x79\xa4\x43\x90\xdd\xfe\x3a\x74\x02\x1b\x52\xa4\x55\xb6\xe8\x49\x66\xc0\x60\x18\x5e\x3a\x82\x11\x98\xbd\x74\x3c\xf2\x33\x30\x1d\xbe\x97\xe9\x8f\x1e\x42\x01\xf1\x1f\xad\x94\x38\x94\xe1\x57\x40\xfc\x33\x36\x4b\xfe\xe5\x04\xc4\xf1\xcb\xf6\x61\x44\x3a\xc2\x4f\x6d\xe2\xf4\xdd\x71\xfb\x38\xbb\xe0\x5b\x8e\x2c\x2b\x68\x43\x6f\x0c\xef\x81\xb9\x9b\x0e\x04\xd9\x33\x73\x25\xd3\x9f\x50\xbd\xb0\xff\xe9\x07\xb5\x2d\xea\x1e\x7d\x7b\x56\xd1\xf9\xe7\x8a\x81\xc7\x22\xdd\x33\xb4\xc1\x1c\x39\x7b\xbe\x16\xbd\xe3\x52\x50\xbd\x3f\x5e\xc4\x2f\x5d\x7b\x06\xf6\x9f\x58\xce\xad\x14\x7f\xa8\x38\x56\x82\x0b\xb3\x3a\x1b\x09\xfb\x9f\x7e\x90\x55\x52\x74\xe5\x3a\x52\xb3\xa2\x6a\x84\x54\x5f\x80\x9a\x5b\x2f\x93\x01\xb0\xb2\x2e\x28\x6a\xc0\xff\xed\x72\x42\xce\xfe\xde\xd0\x0b\x18\x64\x8c\xf6\x5f\x7b\x96\xaf\xd5\xa8\x86\xe0\xff\x7e\x76\x01\x1d\x8e\xce\x7a\x00\x94\xea\x40\xf5\xe1\xaa\xd9\x6c\x92\xa8\xdd\x4b\x55\x46\xe1\x1a\xbc\xcf\xa3\x43\x7a\xbb\xa4\x00\xde\x0e\x7d\x00\x0f\x6c\xaf\xc3\x73\xe2\xc8\x7e\xe5\xd9\xba\x1a\x35\x51\x1c\x0b\x83\xca\xc3\xb9\x5a\x88\xc4\xe8\xa2\xb5\xf8\x33\xea\xee\x06\xd2\x57\xe0\xbc\xae\x77\xd4\x4f\x9c\xd5\xdd\xbd\x0d\x9c\x89\xf0\x6a\x33\x64\x66\x09\xf1\x0a\x10\xf3\xc2\x3b\x59\x38\x0c\x1e\x67\xab\x3c\x8a\xfb\x22\xe2\x78\xf2\xd6\x23\x4a\x9b\x6c\x44\xea\x8c\xf0\xc5\xc7\x8c\xf0\x33\xfa\x28\x78\xdf\xc4\x5e\x0f\x6a\xf9\x80\x6c\x0c\xf6\x90\x01\x37\xde\xa6\x32\xd2\xdc\x95\x1f\xee\x30\x85\x1d\xe6\x95\x9b\xeb\x44\xf9\xdc\x83\xc0\xd8\x2b\x33\xc2\xec\xc2\x86\x13\x1c\x2e\xe3\x0e\xaf\x40\x46\x5a\x09\x71\x6c\xad\xca\x38\x75\x4e\x70\x1f\x19\xe9\x9d\x9b\x79\x38\xbc\x8f\x3c\x40\x61\x9c\xda\xcf\xe7\x23\x35\x03\x72\x1b\x06\x76\x3e\xa6\x2c\xc6\x1d\xc2\xf0\xde\xec\xf5\xda\xef\x29\xdb\xb0\x56\xef\xea\x24\xc2\x5f\x91\x5d\xb6\x74\x90\xf9\x19\x31\x7f\x6a\x25\x11\xae\x17\x36\xf4\x05\xcc\xe6\x08\x26\x75\x64\x1b\xe0\x45\x59\x26\x91\xd7\x18\x23\x3a\xb7\x1e\x72\xba\x08\x1c\xf1\x90\x52\x0b\x30\xa7\x6a\xc7\xd8\x77\x72\xc6\x72\x3e\x3f\xcf\x9f\xf3\xfa\x3c\xd7\xf2\x2b\x10\x70\xd6\x9e\x2b\x3a\x4e\x08\x2d\xe3\x5d\x92\x22\xcd\x33\x9a\xaa\x8c\x48\xca\x1a\xcb\xfa\xcb\x24\x12\x21\x04\x73\xd3\xc3\x42\xaf\x9c\x72\xe5\xeb\xbe\xe7\xb2\xf5\x56\x5e\x4c\xb6\xf7\x14\x5d\x96\xa7\xd6\x63\xf9\x8b\xd0\x2a\xd3\x12\x98\x06\xc7\x18\x27\x6a\x15\xe2\xce\x63\x70\x92\xb3\x7a\x2b\x2a\x21\x41\x4b\x24\x28\x16\xf0\x65\xbd\xd9\xee\x94\x58\x5d\x80\x9f\xa7\xa2\x7b\xf6\x53\x50\x1c\x29\x8c\x61\x58\x1b\x51\x28\x41\xa7\x3a\xf9\x59\x8c\x8a\xc2\xd6\x85\xd7\x0a\x63\xe0\x32\xfa\x05\x08\xa9\x71\x4c\x22\x38\xf3\xe4\x1c\x32\xb7\x37\xdd\x20\x13\x12\x45\xdb\x56\xea\xa5\xb0\x6d\x41\x6a\x06\x5b\x54\xcf\x03\x95\x52\x36\xd9\xce\xb6\xc5\xbd\x28\xbf\xa8\xef\xa1\xc0\x0d\xa1\x71\xfc\xb5\x99\xf0\x39\x8d\xe3\x9f\xec\x3d\x2d\xa2\x8d\x34\x33\x20\xfd\x63\x05\x6f\x66\x9b\xa2\xfa\x19\x1e\x6a\xfd\x90\xdf\xe3\x43\x17\xee\x85\xda\xef\x78\xce\x74\x49\xef\x4c\x4c\x0c\xab\xfc\x6f\x0a\xe6\x7d\x55\x53\x0f\x81\x29\x5f\xe4\xd3\x28\x4a\x3c\xf6\xf6\xdf\x02\x55\xd3\x63\x00\x38\x85\xf7\xa7\x1d\xff\x9e\x63\xd2\xe0\x8a\x1e\x40\xef\x35\x9a\x12\x1b\x71\xbf\xdf\x07\x14\x2e\x36\x57\x85\x69\x2f\xe9\x63\x69\xbc\x2d\x97\x4d\xf3\x4e\xdc\x2b\x1e\x6d\x0d\x5b\x63\x92\x5f\x01\x7c\xad\x38\x2f\xc5\x5a\x25\x27\x67\xfa\xbf\xed\xfd\x39\xd4\x37\xf9\xaf\xf9\xf6\xfe\x7c\x93\xcb\xeb\xa2\x3a\x51\xf5\x36\xd1\x6f\xb6\xf9\x6a\x55\x54\xd7\xc9\xfc\xfc\xaa\x96\x2b\x21\x93\x79\x04\x80\xae\xe3\xc9\x5b\x3e\xce\x73\xe3\xe7\x99\x80\xaf\xec\xf9\x55\x7d\x7f\xd2\x14\xff\xd2\xe9\x60\x2a\x27\x57\xf5\xfd\x79\x7d\x2b\xe4\xba\xac\xef\x92\x06\x50\xf4\x4c\xce\x49\xbe\x53\xb5\xcd\xcc\x2f\x81\x5f\xce\x3f\x9d\x43\xf9\xfe\x14\xb1\x2a\xf4\x92\x29\x43\xa1\x69\x69\xe0\xf0\x51\xeb\x16\xce\x80\x25\x3d\x2a\x78\x74\xf6\xa7\x08\x6d\x99\xeb\x2d\xdb\xf1\xb3\x67\x9c\x73\x49\xd4\x0c\xcb\xf2\xad\x58\x2b\xea\xaa\x2b\x8b\xeb\x1b\xc5\xa3\xff\x9a\xff\x29\x62\x0d\xff\xec\xbf\x4c\x54\x08\xd6\x4b\x8a\x0b\x81\x52\x76\xdf\xd9\xd6\xe1\x91\x6d\xfd\x88\xe5\x36\xab\xe5\x0c\xaf\x9e\x60\x5c\x9d\x7e\x46\x75\x85\xfc\x43\x6e\x49\xd9\x12\x51\x94\xbb\xe1\x25\xbd\x3d\x18\x59\x85\xeb\x5d\xb5\x22\x00\xbd\xf4\xba\xac\x73\x20\xd1\xd9\x3b\xbf\x77\x3c\xb3\x0e\xfd\x98\xc0\xc7\x49\xa7\x3e\xfa\xe2\x68\xe9\x7c\x92\x6d\x45\xae\xf2\xe5\x87\x6b\xc8\xeb\x65\x59\x6c\x79\x64\xf8\x2d\x74\x67\xea\x41\x11\xfa\x08\x8d\x7f\x12\xb1\x2d\x6c\x2e\x12\x8e\xc7\xd0\x11\x61\x3a\x1c\x8c\x43\x47\xbe\xed\x50\x6d\xb6\xec\xf1\xaa\xbe\xbf\x80\xf1\xf4\x56\x94\xc5\x01\xf4\x79\x80\x88\xd9\xb3\x70\x15\x39\x10\xaf\x31\xf1\x2c\xab\xe9\x81\x68\x85\xde\x8c\x31\xc3\xef\xdc\x00\x39\x10\x77\xb7\x67\x38\xae\xb1\xac\x87\x4a\x98\xef\xf7\x94\xee\x29\xc1\x81\xfa\x37\xc1\xd3\xe8\x67\x71\xf5\xa1\x50\x11\x8b\xbe\xab\xff\x15\xb1\x68\xd3\x44\x19\xfb\x75\xc4\x0f\x0d\xba\x09\xdb\x8a\x7d\x15\xba\xd2\xff\x55\x78\xac\x50\x7a\x9e\xea\xf5\xb7\x01\x42\x8f\xaf\x44\x2a\x02\xb4\x3f\xa1\x8f\xa3\xbf\x8a\x85\x48\xe0\xd5\xe8\xee\xa9\x80\x23\x2d\x84\x45\x9c\x8a\xce\x0d\x43\xf2\xbf\x89\x00\x29\x0a\xb1\xb6\xff\x26\x52\x99\x4d\x15\x85\x0c\x9c\x3e\x73\x0f\x2b\xbe\xc0\x11\xfa\x04\x3c\xbe\xaa\xba\x12\x2d\x28\xe3\xc9\x62\x72\xb2\x4c\x45\x9e\xd1\xd9\x94\x9e\xb2\x1f\xf5\xeb\x93\x93\x53\xf6\x8b\xe0\x8f\x6e\x99\xf1\x26\xd2\x6d\xd1\x14\x57\x45\x59\xa8\x87\x24\xba\x29\x56\x2b\x51\x45\xcc\x2e\x3e\xc6\x53\x7f\xcf\xfe\x2e\xf8\x63\x29\x94\x12\xf2\x62\x9b\x2f\xf5\x62\x12\xcd\x23\xb6\xae\x2b\xf5\x33\x10\xc6\x26\xd1\x9f\xe7\xf3\xc8\x6b\xbf\xbf\x88\x1e\x43\xa2\xb5\xe8\xee\x28\xfa\x16\x30\xf3\x36\xf9\x3d\x99\xb3\x2a\x7d\x96\x9d\x10\xd9\xb6\x73\x4a\xa7\xa4\x02\x60\x08\x40\x81\x48\x54\x37\x6b\x2d\xf8\x59\xe0\x2c\xc6\x23\xe4\xaa\x05\xf8\x9b\xb3\x64\xce\x10\xca\x73\x8e\xf4\x75\x9c\x93\x6a\x11\xe1\x5a\x18\x25\x76\x9e\x44\x4e\x35\x3c\x47\x8c\xbd\xfc\xf9\x9f\xcf\xf3\x29\x7f\x46\x23\x5c\xb6\x2c\x52\xc0\x6e\xea\xa0\x3a\xe4\x54\x8a\x34\x07\x80\xcf\x82\x52\x56\x2d\x88\x4b\xcd\x46\x3e\xe9\x70\x3d\xcc\x92\x1b\x85\x1f\xd9\xd4\x27\xc3\x0f\x4c\x11\x31\xfe\x34\xfa\x19\xf9\x77\xf1\x3b\x9a\xf8\x05\x19\x4d\xbb\x0b\x05\x40\x43\x3f\xfa\x47\x52\x4e\x9a\x4f\x8b\x67\xfb\x0c\xa0\x99\x3e\x07\xf0\x8b\xdd\x94\x7b\xdd\x07\x3f\x97\xa2\x28\x89\x48\x23\x5c\x8e\xa3\xa9\x1a\x0e\x78\xe5\x06\x7c\x76\x52\x9f\xec\x4e\x9a\x93\xd9\x7f\x52\xaa\x7b\x9d\xed\xba\x7e\x56\x2a\x1c\x3b\x20\x10\xb1\x82\x93\xc9\x76\x36\x58\xb7\x88\x96\x84\x68\x1c\x47\xdd\xbe\x18\x20\xac\xb8\x0f\x22\x36\x39\x63\x15\x48\xae\x2c\xe7\x46\x20\xab\x28\x6b\xf8\xa7\x95\x58\x0f\xa8\x4e\x7c\xea\x71\x21\xe7\x47\x39\x8f\xf4\xbe\x1b\x59\xda\xbe\xf1\xb2\xc6\x71\xd1\xb6\x18\x91\x73\x9e\xb7\xed\xc4\xdb\x73\xb4\x50\x16\x15\x55\x59\x1c\x00\x89\xc1\x0a\x00\xec\xb2\xde\x8b\xc1\x0c\xe3\xad\x58\xaa\xc6\xb1\x92\x19\x78\x8d\x4f\x6c\x09\x52\xf3\x06\x6f\x53\xc1\xf5\x50\xa4\x4d\x46\xc1\xc5\x29\x28\x93\xee\x9d\xa9\x9d\x7a\x6d\x4b\x8a\xb1\xf9\xc4\x6a\x56\xb1\x9c\x4e\xf5\x9c\xf5\xb6\x59\xe5\xbb\x94\x78\x76\x6d\xd2\x33\xa2\x02\x5a\x4a\x2f\x9e\xa7\x88\x5e\x36\x0d\x02\x7e\x3d\xd6\x7a\xd5\x51\x0f\xc9\xe3\x10\x7a\x14\xb4\xa3\x46\xb8\x87\x5e\x8d\x4c\x64\x77\xd4\x07\xd4\x0e\xb9\x88\xce\xa2\x44\x82\x99\x9f\x03\x92\x49\x1e\xf3\xaa\xd8\x80\xe5\xce\x37\x4a\x48\xf8\x01\x66\xcf\x68\x2d\x53\xee\x36\xdd\xe3\xba\x28\xcb\x37\xa6\x18\xfa\xb1\x14\xf7\x5f\xc9\xfa\xce\xfe\xbe\xb8\x91\x45\xf5\x01\x9e\xba\x55\x71\x32\x67\xd7\xb2\x58\xbd\x90\x22\xb7\xbf\x5f\x42\xaa\xe1\xd3\xab\x6a\x15\x06\x5c\xa8\x5c\xba\xaf\xdf\x62\x26\xe6\xa7\x17\xf7\x6d\x7d\xe7\x22\xea\x41\xf3\xb5\xcb\xb4\xee\xca\x89\x62\x20\xfc\xd8\xde\xe4\x68\xcc\x73\x57\xac\xea\x3b\xf8\xf5\xaf\x6f\x80\x60\x4f\xff\xaa\xeb\x0d\xda\xad\x9a\xbd\x2e\x79\xdc\x33\xd8\x1a\x47\x8c\x0e\xd0\x7a\xe0\xb3\x9e\x4a\xfe\xbf\x7b\xcf\xe6\x70\xe3\x01\x08\xb1\x06\x80\x4f\xd9\x8e\xff\xe8\x0e\x1f\x60\x61\x8e\xa7\xa0\x62\x4d\x76\x00\x44\xf3\x57\x41\xf4\x81\x39\xc7\xc1\x0b\x63\x00\x1c\x3d\xbd\xc7\xc6\xc3\x85\xe8\xa6\x61\x1c\x47\xd7\x42\x45\x05\xfc\xec\x14\xcd\x05\xcf\x8d\xcf\x22\x4e\xa1\x45\x91\x94\xa9\xca\x8e\x3a\xa5\x08\x27\xb5\x73\xec\x45\xbe\x7b\xbb\x63\x49\x3d\xe3\x90\x9e\x94\x48\x6e\x70\x91\x0a\xbd\x8e\x44\x15\x0c\xa2\x88\x32\x54\x14\xe9\x73\x23\xae\xec\xf6\xcd\x84\xf3\xba\x6d\x75\x9d\xe4\x14\xd8\x45\x86\x88\x47\x4d\x87\x78\x44\x87\xa2\x5d\xdb\xc2\x21\x50\x6f\x8c\x20\x64\x3b\x9c\xc8\x4e\xb4\x8b\xf4\xe1\x4f\xd7\x86\x47\x45\x75\x23\x64\xa1\xa7\xa3\x6e\x88\xa6\xd7\x10\x1c\x34\xee\xb9\xf1\xdf\x95\xc6\xa8\x65\xb7\x28\x75\x48\x67\x48\xcd\x24\x85\xc6\xe1\x12\x29\x2d\x06\x70\xbc\x01\x24\x94\xe9\x51\xbb\xa9\x77\xdd\xea\xf7\x23\xf9\x78\x47\xd2\xa0\xd7\xfc\xce\x9a\x33\xe9\xce\x89\x0e\x3e\xc8\x2d\xdd\x00\x2c\x24\x37\x79\x69\xa0\x85\x94\x5e\xcc\xfe\x0e\xe0\x60\xfc\xef\x40\x07\x8a\x80\x3d\xb2\x6d\xe5\x82\xd4\xfe\xb2\x56\x50\x06\xc0\xe9\xb2\x6d\x8b\xe6\xb5\x5e\x81\x04\xa9\xe9\xa2\x6e\xdb\x79\x82\x8c\x10\x4e\x19\x93\x46\xc8\x89\x1f\x31\x23\x69\x64\x03\xa5\x89\x57\x35\xde\x5f\xa1\xec\x7c\x71\xd4\xed\x4f\x4c\x13\x0d\x31\xc0\x2c\x40\xd9\xf8\xca\x0e\xaf\xbe\xd0\x3d\x5e\x54\xd7\x5d\x14\x42\xf1\xb4\xb4\x30\xbb\x66\x45\x93\x46\x37\xd0\x2f\x01\xd0\xa2\x95\x56\x6d\x9c\x3d\x1d\xc0\x46\xfb\xfd\x6a\xb6\xdc\x9c\x4f\xb6\xb3\x40\x06\xd7\x3b\x58\x27\x3b\x02\x16\xaa\x95\x29\x59\xc3\x49\xde\xb6\xd5\x27\xef\xc5\x35\x78\x55\x2d\xcc\xd6\x52\xb1\x86\xd5\x34\x71\x50\xb6\x4d\x1c\xe7\x28\x23\xfd\x11\xe1\xc2\xeb\xea\x5a\x0f\x84\x13\x93\x8b\xdd\xba\x30\x7f\x90\x3e\xd8\x6e\x38\xdd\x0d\xb6\x18\x29\x3a\x41\x14\xec\xc8\x11\x36\x4d\xcf\x0d\x26\xb9\x87\x34\xc6\xfe\x22\xc8\x9c\x49\xb6\xb3\x17\x44\x76\x44\x78\xc7\x60\xfe\x9b\x20\xdb\xd9\xf0\xf4\xc3\x46\xb6\x33\x23\x43\x78\xb5\xc0\x9d\xad\x4b\xad\x1b\x2d\xa3\x43\xa2\x14\x6b\x75\x02\xe3\xe0\xb1\xfb\x26\x99\xef\x47\xc6\xc4\xc7\x13\xd9\x53\xb3\xa9\x7b\x96\x80\xa8\x65\xd0\x27\x51\xa3\x58\x88\x22\x66\xd4\x0d\x46\x6c\x1c\xea\x15\xdd\x14\x11\x53\x3d\x49\xf0\x5e\xad\x1b\x7e\x01\x71\xff\x9c\x81\xfb\x7c\x3d\xa4\xfe\x93\x0b\x69\x1d\x3f\x8f\x23\x9a\xa4\x32\x3b\xaf\x9e\xff\x19\x6e\x3a\x8b\x54\x68\xd1\xb5\xca\x74\xfa\x75\x5a\x65\x6d\x5b\xa7\xd5\xc9\x33\xf8\x3b\xf7\x30\xee\xf6\xbe\x18\xee\x80\xe5\xba\xc2\xe9\xd5\x90\xff\x05\x58\x19\x82\x8b\xbe\xfe\x42\x78\x58\x89\xdf\x53\xf4\x01\x14\x00\x1e\x48\xfa\x90\xe0\x58\xeb\x4e\xc2\xb5\x3e\x40\xe7\xf9\xf3\x02\x94\xa9\x75\xaa\xd2\x3c\xcb\xba\xb1\x06\x12\xbf\xde\xc3\x6c\x85\xea\x7d\xdf\xdb\x5c\x2e\x7c\x28\x3a\x49\x93\x6e\xa0\xee\xc1\x3e\x70\x88\xa1\x6b\x94\xcf\xef\xee\x84\xa8\xb8\x54\x4c\x1e\x34\x72\x97\x8a\xe9\xd5\x72\xc4\x67\x58\x9f\xc8\x50\x35\x5f\x8a\x8d\x75\x47\xd8\xca\x7a\xcb\xa5\x35\xa6\x6b\x8a\xea\x9a\x17\x7a\xf5\xc7\xdf\x1d\x82\x0f\x9a\xf3\x01\x44\x52\xc3\x95\x35\xad\xce\xa5\xb2\x37\x69\x77\xdc\xba\x08\x58\xcb\x6b\x51\xad\x78\x85\x3f\x01\x27\xaf\xee\x6d\xac\xb2\xdb\x58\xf7\x6c\xb9\x93\x43\xcd\x3f\xd6\x72\x6b\x96\x6e\x5b\x5c\x37\x54\x84\x59\x73\x11\xd8\xca\xdc\xaa\xfa\xdf\xb8\xe2\x77\xef\xf7\x4c\xee\x46\x18\x71\x98\xfc\xbd\xcc\xfc\x06\x98\xad\x76\x28\x8a\x1a\x86\xdf\xba\xe1\x8a\xdb\x36\x4b\xbd\xb6\xcc\xec\x85\x5a\xff\xc3\xa7\x82\xcd\xd9\xd9\xf8\x3b\x73\x33\x8c\xa9\xda\x0b\xb9\xfa\x8e\x13\xdb\xaa\x27\x5d\xeb\xd3\xa7\x6a\xda\x3d\x85\xe9\x35\x4a\x6c\xcd\x65\x8c\x1f\xd4\x59\x50\xa1\xef\xa3\x4d\xdf\xf2\x6a\xc7\xb1\xd4\x33\x6c\x21\x1d\x8e\xc5\xa1\x46\x75\xef\x91\x1d\x65\xcf\x06\xa7\x06\x6f\x90\xfa\xef\x98\x9f\x1e\x7f\x74\xae\x4b\xbd\xad\xd9\xf4\x8d\xc3\x60\x01\xe9\x55\x97\xd9\xbb\xcb\xb5\x86\xe2\x3a\x38\x15\xd8\x65\x16\x2e\xc6\x44\xc6\x3d\xc1\xbc\x5b\x84\x51\x13\xa2\xec\xd4\xc5\xd6\xc0\x70\x16\x01\xe6\x2b\x9e\x03\x27\x80\xdb\xab\xd7\xe6\xa6\x57\xbc\xcb\xd9\xfa\x1e\xda\xd4\xa5\x3e\x08\x21\x82\x26\xa3\x05\x9f\xf8\xab\xda\x47\xca\xfd\x57\x81\xac\x76\x5b\xda\x2f\x3b\x88\xf2\x77\x89\x5b\x4b\x82\x0a\xc0\xbb\x29\x70\x7e\x82\xeb\x54\xd0\xe4\x46\x64\x78\xa7\xa7\xfe\x30\x18\xf6\xc2\xc7\x7e\x5d\x7b\x15\xd0\x53\x0f\x02\x02\x2b\xa7\xb1\x02\x5a\x87\x0b\x58\x5b\x1e\xf5\x31\x28\x1f\xb7\x59\xda\xb3\xe6\x4e\x6f\x56\xc3\x77\xb3\xff\x3c\x41\x19\xa3\x6e\x88\x78\x0a\x3f\x7f\xf8\x86\x9e\x3e\xf3\xbc\xde\x22\xf8\x36\xd2\x59\xad\xef\xf9\x60\x20\x32\xd7\x31\xfc\x11\xb9\x0e\x2a\xc5\x0a\xc5\x6a\x85\x08\x4e\x88\xa5\xd8\x36\x37\xf5\x5d\x7b\x53\xac\x04\x7d\x72\xca\x72\xc5\x4f\x3b\x10\xe0\x27\x1e\x42\x53\x03\xf7\x10\x2a\x8e\x09\xd8\x24\x57\x33\x54\xcb\xa1\xa7\xd9\x6f\x3b\xd1\xa8\x17\xf6\xd4\xfa\x5a\x22\xf2\xde\x68\x38\x69\x14\x4d\x02\x66\x9d\xc6\x94\x14\x8c\xee\x6f\xf3\x92\xe2\xa3\x2a\x96\x1f\x08\xf5\x10\x7f\x76\xca\x97\x0f\xc6\x39\x98\x2a\x6b\x3a\xbd\xa7\xac\x52\xbc\xf3\x9d\xea\x92\x29\xd5\x90\xd4\xfe\x11\xa5\xe9\x44\xa0\xbb\xbb\x42\xad\x9d\xd9\xc6\xf9\xb3\x13\x45\x8b\xd4\x6e\xd0\x53\x22\x39\xec\xe9\x34\xe3\x45\xea\x29\xbe\x32\xee\x33\x94\x93\x62\x66\x0e\xbc\xbc\x30\x17\x4f\x7a\x37\xed\xca\xb1\x54\x63\x16\x79\x64\xad\x66\x4a\xef\x78\x42\xe2\xa1\x24\xcd\xe8\x6c\x59\x57\xcb\x5c\x05\xaf\xa2\xa7\x51\x46\x0d\xfc\x68\xd1\x87\x1f\x05\x82\x89\x22\xad\x33\x5c\xf7\x24\x53\x4c\x74\x2e\x7c\x1e\xac\xa9\x1a\xca\x05\x3a\xc1\xb5\x1e\x4a\xe6\x0e\xdd\x83\xa2\xf6\xe1\xaa\x67\x48\xc4\xe9\xb7\xbd\x85\x4c\x80\xf9\xb0\xa7\x21\x2d\x71\xb1\x26\x16\x75\x68\x72\x76\xd4\x29\xa0\x2b\xd5\xb6\xba\x63\x99\xf4\x55\x77\x25\xae\xed\xba\x83\xa7\xa5\xdb\x24\x4e\x00\x34\xfe\xec\x84\xc8\xd3\x2e\x10\xf4\x74\x58\xec\x12\x9b\xa7\xe9\x37\x87\x0d\xd7\x0d\x22\x77\x15\xe9\xe4\x94\xc6\xe3\xfa\x23\x82\xa5\x25\xab\x98\xcc\x28\xab\x9e\x9f\xc5\x71\xbe\x90\x89\x3e\x3c\x0c\x23\x9d\xb1\x79\x66\x7c\xd9\x1d\x12\xb7\x00\xf7\x6b\x36\x39\x03\x76\xe3\xc6\x01\x62\xa3\xc3\xb4\x60\x5b\x50\x5f\xf8\x96\xca\x8a\xb2\x7a\xab\xbc\xb0\xc9\x9c\x3d\x1a\x9b\xb4\x57\xb0\x74\x24\x8f\x7b\x86\x8b\x48\x32\x90\x4e\xf6\x4c\x52\x66\x9d\xca\xcc\x41\xb9\x10\x4d\xa2\x5c\xe0\x1b\xdc\x00\x13\xc9\x5c\x63\x26\xae\xb9\x6d\xf3\x25\xd2\xb5\x24\xc3\x56\x4a\xd2\x8c\x19\xc8\x40\xfd\xec\x93\x7a\x3a\xe5\xa7\x91\xca\x88\x60\xa5\xde\x67\x81\xb6\xdc\xfc\x9c\x05\x35\x80\x21\x6c\x5e\x60\x05\x5c\xdb\xbb\xde\x32\x1e\xea\xac\x42\x9f\xba\x11\x3e\x5c\x30\x35\x59\xf4\xba\x37\x01\xe1\xb5\xf0\x1d\xb5\x8f\x90\xfc\x7a\x32\x77\xc6\x1e\xae\xeb\x25\x76\xfd\x59\x77\x9b\xbf\x20\x9f\xde\xb1\x4c\x65\x94\x26\x8d\x4f\x61\x69\x83\x8d\x1c\x40\xd9\x92\x97\xb0\x05\x60\x29\x3e\x02\x6a\x00\xef\x25\xea\x38\x75\x0d\xb8\x4a\x2b\xfe\x2b\x91\x34\x63\x35\x07\xe4\xcf\x50\x22\xaf\x51\xf5\x53\xa7\x67\x36\x02\xd7\x87\x07\xca\xa4\x61\xf0\x02\xc0\xe2\x9a\x39\xea\x1c\x3d\x82\x43\xed\x46\x05\xea\x0c\x3c\xdf\x80\x46\x83\xba\x32\xd4\x3c\x37\x06\x85\xa4\xa6\x5d\x1a\x55\xc6\x6a\x8a\x85\x6c\x5b\x62\x32\x95\x19\x03\x96\xf2\xc2\x58\x6d\x2a\x40\x4a\xde\x93\xe5\x68\xdf\xd3\x70\x3d\x0a\x16\x15\xb7\x36\x95\x4c\x30\xfb\xb9\x5b\xa2\x36\x00\x74\x5c\x6f\x29\x1c\x84\x7c\x2a\x80\x12\x37\x7c\x93\x1d\xbc\xa0\x10\x95\xe3\x17\x80\x9a\x83\xb6\xc8\x1d\x71\xe6\x26\xdf\x92\x25\x5b\x2a\x56\x52\xb6\x21\xb6\xa8\x20\x4a\xc6\xb1\xff\x68\x51\x62\x4a\xca\xca\x8e\x40\xd7\xc4\xb0\xcf\x86\x47\xd7\x84\xea\xdf\xb6\x38\x96\x7f\xce\x30\xeb\x9a\x50\xfd\xdb\x2d\x97\x26\x0c\x9f\xdc\x46\xb7\xf1\xe1\xd1\x76\xcc\x2e\x19\x79\x55\x6c\x92\x92\x21\x81\x81\x5f\xe5\x3d\xa5\xac\xdc\x5f\xce\xdc\xce\xda\x79\x40\xac\x15\x7b\xb4\x9b\x44\xf2\x18\x3d\x8d\x92\x74\x64\x28\x9a\x73\x4b\x37\xcb\xd1\x99\xdb\xb4\xd8\x4e\x10\x69\x04\x2b\xd6\x5d\x91\xe9\xf5\x46\xee\xb3\x3d\x33\xc9\xf7\xce\x9d\x1b\x22\xe8\xc2\xd0\x0d\xe0\xee\x94\x08\xde\x11\xde\x1f\xf9\x16\x3b\x73\x70\x77\xeb\x59\x05\x4b\x0e\xa3\xce\xdf\xe4\x64\xc6\xc3\x47\xa4\xcd\x0f\x82\x1c\xcd\x87\x42\x3b\x4a\x33\xc0\xc2\x6a\x1f\x30\xf7\x66\x6b\x7b\x51\x57\xc0\xa5\xa9\x55\xaa\xe9\x27\x76\x83\x18\x18\x2b\x7d\x52\xde\x5a\x6d\x30\xdb\x04\xca\xe4\x1c\x8e\xc8\x0e\x15\x8e\x45\xeb\x7b\x2d\x4e\x45\x58\x5d\xb0\x08\x96\xd8\x65\x6d\x6b\x80\x1d\x61\x62\x86\xfc\x26\x40\xd0\x42\x67\xbb\x0a\x42\x57\x71\x4c\x72\xf7\xc0\xe7\xac\xd1\x33\xd4\xd1\x8e\x30\xff\xc1\xdf\x61\xbb\x6f\xda\xb6\x21\x74\x4f\x59\x17\x32\x9d\xb2\x9b\x91\x1d\x7b\x2c\xac\xfb\xe8\xe4\x84\x75\x7c\x2d\x50\x46\xd3\x65\x6d\x9b\x87\x3c\x28\x86\xea\xcf\x2e\x66\x19\xab\x1d\xca\x19\xec\xfc\xd6\xd2\x05\x5e\xe9\x33\x71\x84\xb2\x27\xa8\x48\x59\xc1\x39\x27\x9b\x45\xa4\x65\xd0\x28\x89\xb0\x01\xe1\x3b\xfc\x3d\xe1\xfa\x78\x3e\xb9\xf5\xf0\x00\x6e\xf5\x8a\xb6\xac\x2b\x55\x54\x3b\x71\xb4\xe1\x93\xf9\x7e\xa5\xd7\xa2\xdb\x38\xbe\x05\x2d\x4b\xa7\x6c\xa8\xe8\xbe\x58\x13\xb2\xe3\x23\x14\x60\x14\x8e\x24\x61\xe8\x8a\x76\xd6\xdc\xeb\x3e\x75\x57\x1c\x13\x39\xb3\x06\x2e\x3c\xdd\xba\xdf\xac\xfb\xf9\x8b\xf7\xfb\xd7\x8c\x99\x5e\x2f\xa1\x6c\x16\x28\x1d\x3c\x49\xba\x51\xd3\x29\x5b\x3b\x54\x7a\xb2\x1c\x21\x64\x80\xef\x16\x4b\x5e\x26\x64\x8d\x20\xd3\xc0\xd7\xd8\xe7\x76\x68\xdb\x92\x8d\x7d\xce\xf0\x23\x4a\x29\x23\xde\x9d\xde\xb2\x6d\xcd\xd3\x09\x5e\xad\xeb\x30\x3c\x98\x4d\x78\x39\x4a\x11\xb1\x2e\xeb\x1c\xf0\x32\xe0\x6e\xe4\x06\x97\x44\x6f\x14\x6d\x1d\x24\x7c\xb9\xa7\xa6\x0d\x4a\xe0\x1a\x70\x6f\x58\xc9\x5d\xba\xcb\x45\x14\x25\x4b\xb8\x6b\x70\xd0\xf6\x41\x89\xc0\x25\xc8\xb6\x6a\x1c\x93\xae\x89\xb9\xb3\x0f\x18\x1b\xcd\x5e\xbc\xee\xfb\x74\x9e\xf9\xfd\xe5\xbf\x39\xf3\xdf\xfc\xea\xbf\x79\x96\xe9\x41\xbe\xe3\x93\x33\xb6\xa2\xba\xd2\xb7\x0b\x9b\x73\x51\x1d\xdf\xc6\x31\xd9\xf0\x5b\x73\x28\xa2\xc9\xad\xcf\x9f\x64\x57\x05\xf6\x68\x4d\x18\x74\xa3\xd4\x71\x4c\xec\x07\x7c\xb2\xa1\x6c\x13\xc7\x5e\xa7\x0e\xdb\xd4\x0d\xcb\x4d\xdb\x9a\x8e\x64\x3e\xaa\x98\x5d\x7b\xd8\xca\xe3\x8c\xa8\x98\x9e\x18\x14\xcb\xbe\x54\x64\xb3\xd0\x13\x24\x99\xb3\x8a\xdd\x50\x06\xc9\xdd\xea\xca\xe8\xd9\xb3\x33\x1a\x95\x8d\xee\x56\x50\x65\xd9\x10\xf3\x97\xcf\x29\xdd\x67\xdd\x2a\xdb\x67\x7b\x5a\x84\x07\x07\xbb\x32\x0b\x9a\x84\x2f\x40\xe2\xb3\xc6\xa5\xcd\x56\x88\xd5\x00\xd6\x04\xe5\x4c\x11\xc7\x23\x54\x61\xbe\x10\x2d\x68\xf2\x68\xf7\xdd\x44\xb6\xed\x44\xc6\xb1\x6a\xdb\x0d\x58\x0f\x8b\x4e\xcc\x15\x56\x90\xc6\xf7\x2a\x8e\x27\x1b\x30\x32\x54\x1e\xc3\xf6\xfa\x7e\x56\xaf\xd7\x8b\xca\x89\xc4\x7c\x9e\x74\xb7\x66\x26\xff\xee\x2d\xd0\x61\xd8\x07\xdd\x92\x78\xe0\xd6\xf5\x69\xfc\x44\xbc\xe0\xb4\x0b\xce\x92\xf1\x28\x4e\xc2\xb7\x37\x78\x15\x2e\xc2\x71\x0c\x70\x53\x55\xb7\x9f\xe0\x2f\x60\x66\xa2\xac\x9a\xd5\xe5\x8a\x57\x4e\x08\x61\xdd\x4f\x7f\x97\xd0\xa2\x55\x5d\xae\x68\x1c\xc3\xdf\x4e\x31\xa6\x53\x30\xf9\xf4\x38\x90\x4c\x38\xdd\x6b\x09\x3d\xd0\x3e\xaf\xf3\x95\x78\x57\x1f\xf6\xff\x06\x29\xc3\x98\x62\xe7\x82\xc2\xe2\xe1\x2e\xc2\xd9\xdc\x32\x2c\xe8\xa1\xa6\x4f\x94\x20\xcd\x08\xe2\xee\xd5\xd5\x9e\x09\xe3\x66\x6e\xde\x1d\xba\xf4\xe3\xfd\x55\x5c\x20\x8f\x18\xb4\x28\xc1\x98\xfa\x5c\x1b\x2a\x5b\x15\x5f\x1b\x70\xbc\x70\x44\xb1\x9a\x9e\x93\xc2\xe1\xed\x03\x7a\xde\xba\xa8\x8a\xe6\x06\x56\x60\x05\x92\x26\x99\xcc\xe9\xbe\x63\xc5\xc6\xf7\x3c\x67\x7a\xab\x42\x3e\x3e\x68\x35\x8f\xd7\x2e\x37\x4a\x4e\x6c\x5a\xf3\x9e\xe5\xb4\x7f\xec\x09\x66\xc0\x18\xaa\x84\x8e\x6e\xad\x47\xf1\x89\x29\x22\x5d\x69\x46\x79\xa0\xd0\xad\xdc\xe7\x82\x52\x06\xa1\xce\xba\x47\x0c\x18\xac\xc6\xbd\xcd\xb1\x10\x13\x2d\xc2\x75\x9e\x08\x01\x73\x14\xb4\x3c\x08\xb5\x4d\x00\xa8\x4c\xf1\xbc\x86\xc0\x64\xfa\x5f\x28\x7a\x1c\x57\x80\x7a\x46\x3b\x9e\x57\xf0\x23\xce\x87\x11\x73\x27\x55\x74\x1f\xe1\x89\xcf\xb9\x98\x15\x27\x27\xe7\xb4\xd6\x9f\x68\xf9\x75\x62\xa1\x13\x5c\x49\xe1\x15\x94\x75\x02\x8c\x98\x04\x02\xf4\xe8\xc2\x4e\x95\x94\x29\xbd\xc4\xd7\x16\xa3\xb2\x60\x67\x94\x1e\x4d\x54\x1c\x4b\x2d\x55\x8c\x90\x83\x61\xcf\x8f\x68\xf0\x6c\xeb\x12\xc7\xba\xf5\xb1\x26\x65\xd2\x6f\x2a\x56\x71\x99\xda\x66\x8d\x32\xe0\xe5\x09\x5b\x39\x0b\x9b\xb9\x5a\x54\xdd\xb9\x18\x61\x89\xcd\x90\x9c\xcc\x59\x8f\x60\x4d\xf7\x2d\xc0\xf8\x63\xb3\xe2\x5f\xcf\xc9\x58\x6f\x3f\xaa\x6b\x53\x85\x6d\xaa\xb0\x4d\x8d\x1f\x91\x6e\x4a\x65\x9a\x12\x1d\x3e\xe0\x4e\xd3\x6b\x4a\x9d\x8a\x6b\x46\x05\xcd\x88\xba\xb5\xf9\xb9\x7a\x9e\x83\xb7\x4c\x95\xaa\x2c\x8e\xf5\xbf\xa6\xb0\xc1\x83\xb7\x36\xd9\xd1\x6e\x2b\xb5\xa7\xc1\x5d\xb8\x91\x26\x19\xca\x8b\x0c\x25\xc9\xfe\x8d\xb8\xe5\x9a\x5b\xeb\x2c\x8e\xcc\x5f\x7f\xdf\x09\xec\x81\x50\x29\xdd\xb6\x63\xbc\x32\x07\x60\x35\x70\x76\xdb\x55\xac\x54\x44\x41\x4b\x62\xc2\xbe\x23\x45\x53\x16\x2b\xf1\x65\x7d\x57\x25\xa5\x32\x32\x2e\x65\x10\xf8\xd3\x16\x82\xa0\xfc\x26\xe8\x1d\x32\xde\xe8\x60\x53\x4d\xca\xf4\xba\xfb\x4d\xd5\x19\x20\x61\x1a\x7b\x08\x7f\xb3\x53\xde\x0b\x48\x09\x5f\x98\x84\xba\x77\x26\xb9\xfd\xef\xfb\x5b\x0c\x17\x75\x5b\x4b\x65\x57\x68\xa8\x1e\x8e\x46\x9e\x66\x9d\x06\xb7\xbf\xe6\x82\xf3\x14\xdc\x53\x63\x64\x3c\x28\xf9\x9a\xda\x73\xf5\x5c\xfa\xc8\xa2\x44\x70\x70\x2a\x20\xc6\xbb\x00\x27\xae\x74\x23\xeb\xe4\x84\x9d\xd1\x23\xe9\xce\x26\x46\xeb\x5d\x6f\x09\xa8\x80\x8d\x3a\xd8\x3b\x6a\xf3\xf0\x3a\x03\xcb\x61\x65\x12\xab\x34\xcf\x25\x00\x4c\x05\x8a\x69\x7e\xf6\x99\xf7\x3a\xd0\x6e\xaa\xb6\x25\x05\x2c\x8b\x8d\x22\xd4\x7e\x08\x8a\x89\x20\x1a\xda\x7c\x33\x6f\xbb\xe7\x8f\x4d\x59\xdf\x25\xff\x35\x9f\xb3\x75\xde\xa8\xe4\xd9\x7c\xde\x69\xf8\xff\x3c\x9f\x9b\x2d\x77\x25\xb4\x50\x1c\xea\xe2\x1c\xcb\xa7\x4e\x0e\xb0\xc5\x9d\x98\xa1\xb2\xb6\x55\x48\xf6\x05\xcb\xb9\xb7\xc2\xcb\xae\xbb\xbd\x0d\x34\x50\xa8\x4b\xa6\xe8\x51\x35\x28\xbe\x40\x43\x20\x1b\xab\x30\x20\x85\xfd\x1b\xcc\x43\xcc\x1a\x4c\x0d\x5f\x21\xd8\x4a\xf4\x3b\xb4\x1d\x78\x95\x17\x51\x7a\x64\xa0\x30\x22\xcb\xb9\x14\x59\xf2\x8c\x37\x15\x8f\x10\x9a\x13\x20\x14\xb5\x14\xbf\x55\x88\xaf\x2e\x56\x5c\x19\x54\x17\xb1\x62\xe4\x63\xd4\x1f\xf0\x2d\x8f\x54\x64\x21\x72\x0c\xef\x07\xdb\xce\xe0\xc7\xdf\xec\x7b\xee\x72\xda\x1b\x1b\xef\x1b\xc5\x56\x8a\x1b\xd4\xef\x5c\x29\xf9\x35\x38\xf5\x1e\x05\x02\x93\x0e\xff\xe8\x7d\xfd\x25\x7c\x7a\xf0\x42\x9c\x75\x88\x1f\xff\x06\xa3\x65\xf7\xd1\x21\x42\xd9\x41\xb9\xc2\x3b\x81\xee\x00\xac\xb7\xf0\xcf\x26\xc0\x0b\xf1\xdf\xf8\xe7\x99\xfe\x43\x07\x6e\xbf\x01\x7e\xc1\xe2\x12\x34\xa3\xf6\xea\x9f\x18\x66\x89\xc0\x39\x5e\x4f\x20\x8e\xd5\x37\xd7\xd1\x3d\xff\x3e\xb8\x49\xf7\x30\xd5\xf5\xc2\x6c\xed\xba\x16\x37\x2a\x71\xf4\x16\x9e\xcd\x01\x2e\xe3\x5c\x2e\x20\x2c\x68\x09\xe0\x5f\x2f\x3a\x8b\xb4\xc2\x37\xcd\xab\x78\xe1\x2c\xd2\x14\xa5\x8b\x2a\x21\x3d\x4a\x17\xc5\xe4\x34\x8a\xa8\xae\x4e\xd1\x59\x8a\x15\xf6\xd4\x8c\x49\x58\x46\x02\x9d\x80\xd1\x03\x80\xa8\x5f\x54\x2b\xa8\xa8\x79\x69\xa8\xcf\x41\xce\xb5\xd5\x4f\x10\x8a\xfe\xb1\x4f\xa3\x8f\x26\xbe\xfe\x70\x8c\x63\x33\x48\x91\xf7\x16\x00\x70\xec\x80\x36\x9b\x9e\x19\xaa\x47\xfe\xe5\xd9\x80\xe2\xc6\xd0\x01\x9b\xb8\x5c\x4b\x42\x60\x97\x3a\x3a\xe4\xfa\x17\x68\x4a\x8b\xc5\x4e\xd7\xa7\xe5\xbc\x01\xeb\x39\x3a\x61\xf2\x22\xad\x80\xed\x67\x88\x5e\x23\x61\x50\xde\x0c\xee\x61\x7d\x5e\x6e\x10\xad\xd5\xa2\xd7\x93\xd2\xdc\x28\x7a\x69\xa1\xb6\xd2\xc1\xde\x0d\x47\x0e\xb2\x8e\x9a\x32\x9f\xbe\xbf\x9b\x9e\x5e\xd3\x51\x89\x61\xa5\x8c\x71\xa0\xeb\xb6\x23\x08\x0a\x8f\xac\x01\x23\x65\x6f\xe8\x3a\xe7\x02\x2d\x6f\xea\xf4\xf2\x8c\xc1\xbf\xa0\xfc\x32\x66\x9a\x26\x95\x45\x0e\x23\xc5\xbc\xaf\x29\x2b\xac\x97\xe1\xd6\x5c\xdb\x22\x52\x13\xae\x67\xad\x05\x6d\x68\x11\x69\x0e\xc8\xe7\x36\x26\x62\xde\xea\x37\x3a\xc8\x63\x51\x53\xdd\x72\x41\x44\x8f\xe0\x1f\xfd\x04\x8f\x23\xef\xb2\xf4\x41\x05\x08\x1b\xfe\xa4\x36\x86\x28\x3e\x15\x52\x99\x37\x00\x30\x1e\x79\xe6\xd6\xd7\x7e\x0a\xe1\xc5\x86\xa0\x0b\x91\x8c\xb9\x00\x87\x05\x0b\x69\x04\xb7\x43\x70\xe1\xfe\x12\x8a\xc6\x00\x1f\x5f\x42\x7b\x18\xc5\x1f\x5f\x42\x3d\x4f\xbd\x14\x93\x7f\x5d\xdc\x83\xdb\x8d\xc8\xfa\x4b\xe9\xa0\x7c\x7f\x70\x29\x3d\xb0\x46\xea\x2d\xc6\x16\x00\x37\xf9\xc2\x84\x58\x63\xcf\x60\x01\xfc\xf4\x05\x0e\x2d\x08\x3f\x71\x31\xd3\x91\x81\xe0\x78\x6b\x17\xab\xfc\x0a\x8d\xb6\xc7\xcd\x59\x7a\x8b\x5e\xa4\xf2\x2b\x30\x1a\xf6\x1c\xdf\x17\x60\x57\xf8\x4d\xa5\xc5\xe6\xb3\x39\x4d\xb6\xca\x22\x1a\x5a\x8c\x13\xda\xb6\x9b\x61\x20\xa0\xc3\x49\xb1\x5e\xcc\x93\x93\x33\xbd\x5e\x99\xd6\x49\x1e\xd7\xb5\x4c\xa2\x1b\xb5\x29\x5f\xd7\x32\x62\x30\x38\x13\x1c\xa3\xfa\xc3\x48\x77\x5b\x20\x25\xc0\x06\xe3\x19\x86\x58\xe1\xe1\x40\x95\x84\xef\x71\xdd\xdd\xfb\xab\x10\x78\xc0\x47\x1d\xb0\x29\x42\x4b\x31\x94\x04\xfb\x26\x27\x23\x69\xab\x38\x26\xaa\xf7\xf1\xa7\xe6\xd2\x3b\x27\x99\x5e\x8a\x58\x24\x45\xbe\x7a\x53\x95\x0f\x11\x8b\x36\xf9\xfd\xb7\x30\x3d\x22\x16\x2d\x45\x59\x1a\x67\x2a\xf3\xf4\x83\xb1\x6f\x60\x91\xac\xef\x2e\xb6\x79\xa5\xc3\xeb\xd2\xfc\xda\x35\xe2\xbb\x7c\x1b\xb1\x68\x2d\xf3\x8d\xf8\xc2\xd8\xb1\x5a\x17\x8c\x57\x2b\x44\xb6\xf6\xcf\x62\x5a\x20\x71\x03\x18\x50\x3b\x82\x5d\x1e\x0e\x97\x7d\x2b\xc7\x7c\xb5\x7a\x09\xdd\x37\x62\xc3\xe6\x63\x9a\xa1\x3d\xe3\x86\x74\xc6\x0e\x23\xd3\x59\x9f\x70\x0c\xa3\xa7\x4d\x97\x08\xef\xf4\xab\xd8\x83\x39\x84\x53\x03\xab\x45\x14\x87\x55\xcc\x81\xab\x9b\xad\x0c\xd6\x83\x9d\x65\xcb\x2b\xf8\x83\x22\x12\x2c\x14\xb4\xc8\xe1\xdd\x19\x44\xc7\xd1\xf4\x56\xcb\xcb\x53\xbd\xb8\x1a\x3a\x83\xf9\x79\xcd\x55\x9a\xc3\xd7\x55\x67\x42\x7f\x1c\x4d\x6b\x88\x06\x2e\xfb\xd5\x94\xe3\xd3\x51\xa1\xa7\x61\xc3\x6f\x81\xec\xd6\x98\xab\x0d\x96\x5e\xd6\x38\xe8\x27\x04\x92\x30\x2e\xa7\xff\x2f\xda\xce\x4b\xfa\x77\x9a\x6f\x32\x00\x3f\x08\x4e\x92\x7a\x49\xb0\xe5\x8f\xa2\xff\x6f\x1a\x1c\xd2\x1b\x6b\xf5\xcf\x4f\xce\xce\x69\xc5\x2b\x87\x25\xe5\x5e\xb1\xff\x45\x37\xe0\x49\xbb\xdf\x0d\xde\x6d\xac\xd9\xf9\x58\xe5\x59\x17\xeb\xb3\x5b\x7f\xbf\xb4\x1a\xbe\x81\x52\x42\xc5\x71\xb5\x40\xa6\x7d\x6f\x54\x1b\x95\x44\xd0\x55\x34\x81\x9b\xda\x91\xce\x95\x5d\xe7\x7a\x05\x0e\x3a\x57\xba\xce\x05\xe0\x6a\xba\x3f\x40\xa5\x8b\xe3\x0b\xad\x1d\x8a\x35\xa9\x10\x1e\x90\xcf\x59\xcd\x4d\x16\x2c\xc7\x2e\x3e\x57\x3c\x4f\x0b\xe8\x94\x7a\x76\x93\x37\x98\xa7\xa2\x8b\x3a\x28\xb6\xa2\x49\xdd\x55\x4c\x19\x65\x61\x07\xb4\x0e\xe6\xfd\xd8\x26\xe8\x99\xa2\xc7\x90\x1b\x88\x71\xec\x11\x94\x45\x97\x97\x6e\x13\xb8\xbc\x8c\x1c\x02\x77\x13\xc8\x36\x83\x20\xd7\xb9\xca\x28\x78\xc5\x22\x8a\x12\x5f\x45\x1c\xa6\x0b\x62\x10\x45\xa0\x15\x53\xad\xf1\x29\xc8\xe7\x46\x2f\xa6\x87\x9a\xd0\x43\xcd\x8e\xf4\xca\x8e\xf4\xfe\xf8\x26\x66\x80\xc3\xf8\xc7\x41\xee\xc6\xb2\x02\x96\x4e\x4b\xa5\x78\xe4\xc8\x13\x8d\x14\x79\xa5\xf8\xe9\x7b\x79\x7a\x1d\x9e\x4b\x6f\xf3\xf2\xd0\xfa\x60\x51\x5f\x9c\xaa\xbb\x37\x99\x17\xa4\xe2\x7a\x44\x8d\xa9\x36\x8d\xe4\x53\x1c\x0d\x00\x89\xf4\xda\x86\x07\xa2\x82\x57\x8b\x70\x88\xd9\x41\x78\x9b\x97\x84\xd2\x44\xd0\x45\xc1\xa3\xc8\x5d\xc4\xb8\x31\x5f\x2c\x8a\xa9\x7e\x11\x4e\x92\x02\xad\x65\xd0\xea\xa3\x18\xc3\xa6\x32\xba\x3d\xdd\x7d\x62\x1a\x45\x7b\x4a\x19\x88\x55\xb7\x79\xe9\x19\x42\x1b\x02\x9c\x7e\xf0\x38\xe0\x1a\x98\xd7\x18\x39\x4b\xf9\xc8\xcc\xdd\xb0\x2b\x58\x04\x07\x2b\xf0\x8c\x82\xa4\xf0\x9c\x55\xe8\x31\x42\x93\x62\x11\x96\xa1\x18\x29\x40\xf1\xb1\xdc\xaf\x87\xb9\x13\xc9\xd1\x0a\xbc\xcb\x9b\x2e\xe4\x40\xe2\x26\x92\x1b\x5e\x3f\xba\x70\x50\x30\xe4\x0a\xa8\xf1\xcd\xb1\x55\xea\xc6\x92\x96\xf0\x2d\x90\x77\x6d\xe9\x12\x4b\x52\xfd\x69\x12\xa0\x29\x8f\x0f\x8d\x3d\x01\x93\xe3\x5b\x45\x0c\x62\x98\x00\x57\x2f\x14\x67\x0e\xa4\x6a\x86\xa8\x65\x3c\x6e\x40\xc0\x0e\x25\xa5\x9c\x1b\x25\xd3\x89\xb9\x6b\x36\x68\xac\x0d\xcf\x41\x3d\x90\x00\xc1\x4c\xbe\xa8\xa7\x67\x89\x35\xa4\x44\xa5\x24\xaf\x9f\xcf\x17\xbb\x24\x5f\xd4\x60\x0a\xba\x43\x8f\x8e\x35\x21\x04\x4e\xb1\x8e\xbd\x45\x4b\x8e\x15\x50\x14\xc7\xf1\x44\x3a\x36\x98\x38\x26\x13\xe9\x0b\x66\xf6\x45\xdb\x4e\x3e\x10\xff\x0d\x8b\x2c\x79\x73\x44\x2d\xd6\xdc\x25\x91\x66\x06\xb0\xdc\xed\x97\x47\x46\x4d\xa9\xdc\xfe\xd2\x0c\x3c\xa6\x06\x2c\xf5\x7e\xe3\xe8\x59\xf1\x41\x58\x47\x0f\xdf\x74\x34\x3f\x39\x39\xa7\x04\xcc\x46\x73\xaf\x66\xbc\x83\x12\xea\x06\xa2\x49\x10\xb9\xea\x29\xab\x61\xc5\x81\x3b\xa6\xc9\xdc\xf5\xa8\x04\x6c\xea\xa0\x2f\xf8\xc9\x19\x65\xf5\x7e\x1f\xc8\xa4\x46\xc1\xd6\x69\xf4\x7a\xb2\x62\x30\xfd\xb2\xa1\x6e\x00\xda\x6b\xe0\xc2\xe2\x4e\xac\x16\xf5\xd0\xab\x07\x11\xb6\x65\x61\xad\xd4\x47\x06\xab\x43\x84\x23\x40\x98\x23\x60\xb8\x1c\x5c\x45\x06\xb8\xbf\x66\x5c\x2f\xa2\xba\x8a\x12\xab\x22\xa4\x70\xd4\x30\xa8\xea\x3c\xaa\x2b\x0b\xb0\x5e\x54\xc7\xc8\xaf\x7b\x69\xce\xec\xe6\x05\xfc\x69\x2d\xee\xfa\x55\xb9\x93\xf4\xc9\x29\xbb\x0b\x0b\x32\xc6\x4a\x70\xe4\x26\xa6\xc1\x1e\x64\x8f\x03\x98\x75\x3d\x6b\x7c\x5e\x5b\x63\x0b\x85\x54\x7a\x0f\x3c\x2d\xda\xb6\xca\xd8\x35\x5f\x9b\x55\x99\x19\x58\xe1\x05\x72\xa7\x24\x8a\x5d\x79\xef\x1c\x8a\x36\x44\xe8\xd8\xad\x3a\x2a\xbc\x24\x45\x32\x30\xbe\xe5\x3b\x5e\x70\x9d\x3c\xd3\x07\xdf\xa2\xe7\xa5\xeb\x3f\x4f\x2e\xcd\x49\xef\x7a\x3a\x20\xa9\xd4\x43\xed\xba\x93\xdd\x66\x20\xb5\xc5\x31\xb9\xe2\xd7\x5e\xae\xec\x9a\x5f\xcd\xd0\xfe\x80\xb2\x2b\x43\xc7\x47\xd9\x92\x7b\x9f\x26\x28\x66\xeb\xbe\x9a\x5e\xeb\x4d\x40\xf9\xcc\x3a\x2a\x60\xd6\xb9\x66\x43\xee\xdf\x38\x56\x94\x76\xec\xb0\xbc\x5e\x3c\x4b\x3e\x63\x5e\x2b\xf0\xab\x8e\xd9\x91\x29\x8f\xfc\x8b\x2b\x1f\x99\x7c\x8c\xcf\xef\xea\x77\xf9\xfc\x50\x51\xa4\x2c\x77\x97\x01\x08\x55\x86\xbd\x44\xef\x32\x96\x05\xa5\xa0\x4c\x72\xbb\x92\xa7\x2a\x4b\xfc\x75\x40\x32\x50\x1a\xac\x06\x24\x70\xd7\x88\xf4\x56\xb7\xed\x64\x65\x5b\xdf\xb0\xb5\xb9\x67\x4b\x29\xc6\xa4\x59\xb9\x26\x75\x1c\x4f\x56\x33\x4b\x3a\x14\xc7\x93\x5b\xb0\x02\x43\xce\xc5\x55\x40\x72\xd8\xb6\xd7\xcc\xf6\x73\x39\xbd\x06\xfe\x33\xee\x03\x99\xd1\xf3\xe6\xbc\x17\xf2\x80\x2b\x60\x43\xd9\x8e\x37\x47\x3b\xae\x25\x88\x10\x3c\x0b\xbd\x3d\x4d\xbc\x9d\x0f\xa5\xd5\xb6\x3b\x93\xd4\xcf\x45\xb5\xaa\xef\x00\xad\xc4\x1e\x0e\x48\xc3\x1f\xe0\x74\xa0\x57\x71\x75\x90\x3a\x6e\xcb\x1b\x86\xf3\x80\xe7\x9f\x9f\x2d\xca\x64\xe5\x88\x1a\x75\x75\xc8\x8d\x25\xdd\x1b\x30\xee\xe1\x57\x99\xa5\x18\x6a\x2c\x0d\x20\xd8\x14\x58\x7e\xd5\x86\x49\xa0\xff\x5c\xc6\x71\x93\x2e\xb3\xee\x4d\x1c\x7f\x45\x1a\x0a\x9a\x00\xd3\xdf\xc1\x27\xa8\x17\x75\x74\x43\x6a\xc0\x95\xd2\x29\x5a\xb0\xf0\xd7\xba\x5f\xd5\x08\x01\x0b\xa1\x6d\xbb\x72\x36\x28\xc6\x46\xa0\x0b\x30\x99\x3e\xcc\xb6\x70\xc1\x26\x69\xdb\x4e\xbe\x22\x05\x6d\xdb\x65\x1c\x6f\x48\x91\x5e\x43\x03\xde\xa2\x1c\x46\x76\xbc\xc0\x6a\x10\xfd\x17\xc6\x60\x47\xfc\xe9\x66\x34\xbf\x66\x87\x5a\x3c\x8e\xb7\x43\xb2\xd2\x6b\x76\xa7\x28\xd3\x79\x11\xfa\xd1\x2f\xc7\x38\x90\xf0\xe3\x61\x19\xcc\xfc\xd9\xd9\xb2\xee\x00\xf6\xcf\xd1\xd5\x35\x86\x80\xe5\x80\x9d\x86\x5b\x77\xbd\x35\x83\x49\x86\x5a\xfc\x1e\x5f\xce\x7c\x4f\x8f\xfa\xec\xc8\x15\x22\x05\x2a\x3a\xc0\x72\x1d\xf2\x68\x79\x3a\xcf\x03\x37\x3e\x61\xda\xba\xa0\xca\x22\x6a\x9a\xc0\xaf\x07\x2c\xd8\xa1\x71\xb0\x96\xf8\x3d\x07\xf1\xe3\xb1\x34\x25\x60\xc8\xfa\x7b\x1b\x7a\x51\xfe\x01\x26\x11\xcc\x38\xbc\x98\x35\xab\x91\x69\x37\xa2\x98\x23\x66\x0a\x69\x30\x71\xd7\xeb\xf1\x6f\x8f\x10\x91\x18\xcc\x1f\xf0\x0d\x0c\x17\x0c\x14\xd0\x3b\x93\xbd\x0a\xb8\xbf\xdb\xb6\x1a\x0e\x3d\x81\xb5\x66\x7e\x5c\x46\x0a\xc0\x23\x39\x03\xa8\x5c\x24\x1c\xfd\xe3\x19\x9f\x9c\x1d\x15\x8b\x20\xf9\x82\x26\xa4\x1a\x1d\xcb\x5d\x69\x8c\x19\xa0\x4e\x00\xdc\xbd\x91\xb5\x5f\x71\x31\x2b\xeb\x25\xba\x77\xdc\xfb\xb7\xec\xec\x42\x1f\x04\x17\xa7\x47\x97\x33\x50\xbc\xfe\xf2\xdd\xb7\x43\x5c\x42\xd0\xde\xa8\xb6\x1d\x58\x14\x39\x7a\x3c\x3d\x68\x01\x62\x53\x72\x18\xf9\x62\xf6\xe5\x9b\xef\x7e\xd0\x09\x4a\x8a\x09\xbf\x96\xf5\xe6\x02\x3e\x07\x49\x42\xdc\xab\xd3\xfb\x4d\x19\x51\x83\x9f\x59\xd1\x47\xe9\xa0\x8e\x1d\xd2\xe1\x04\xd0\x05\xcd\xfd\x6c\xf3\xc5\xc3\xbb\xfc\x5a\x1f\x7b\x48\x04\x49\x4a\x21\x65\x2d\x3d\x73\xe4\xcb\x19\x84\x90\xe8\x9b\xea\x36\x2f\x8b\xd5\xf1\x2f\xdf\x7d\x9b\x1c\x47\x53\x20\x38\x81\x96\x78\xa3\x6b\x9b\xbe\xcf\x9e\x9c\xb2\x17\x70\x02\x5e\xbc\xaf\x4e\xaf\xd9\x07\x23\x76\x35\xbb\xab\x4d\xa1\xcc\x25\x4a\x5b\x6c\xf2\x6b\xd1\x4a\xd1\x08\xd5\xae\x8b\x52\xc0\xad\xca\xbb\x8f\x5e\xbf\x7c\x10\x0f\xd7\xa2\xa2\xfe\x55\xcb\x4b\xd5\x33\x52\x1b\xf5\xb5\x36\xf3\xc5\x73\xb8\x57\x60\x86\xd2\xb6\x6f\xac\xae\x9b\x2e\xf4\x24\x29\x68\xa2\x53\x9c\x46\x69\x34\x1d\xf2\x90\x38\x5d\x7d\xb1\x50\x49\xa4\xc5\x84\x2c\x62\x85\xa5\x06\xb0\x24\xf3\xb2\x6d\xed\x97\x13\xce\xaf\x74\xfe\xc6\xf2\x3f\xb4\xbd\x52\xd4\x65\x55\x40\x4a\x2a\x2d\x32\x4c\x0c\x86\x4b\xbe\xe1\xe3\x57\x81\x00\xc5\x39\x36\xb3\x81\xb2\x51\x11\x9a\xa8\xa3\x2a\xb5\x96\x4a\x19\x17\xd5\xb2\x5e\x89\x9f\xde\x7e\xf3\xb2\xde\x6c\xeb\x0a\x19\x0c\xa7\x11\x8f\xa6\x23\x6f\xfc\xa3\x28\xdd\x83\x5e\x09\x4f\xf2\xd4\x22\xea\x0c\x5b\x18\x20\xc9\x66\xff\xfc\x6d\x27\xe4\x83\x96\x2a\xf5\x5e\x51\xe6\x45\xe5\xcc\x04\x6d\x07\x04\xc0\x14\x05\x1e\xd0\xb5\x84\xc6\xba\xa3\xba\x6b\x49\xcf\x7f\xe7\xa5\x22\x92\x81\xcf\x8e\xee\x36\x77\x9a\x35\xb2\x5b\x1c\xd1\x9e\xc5\x64\x23\x64\x91\x97\xe3\xb8\x71\xa6\x69\x89\x51\x3d\x99\x88\x58\x0f\x0a\xd0\x18\x7e\xd0\x18\xf0\xdc\x08\x00\x30\x9a\x64\x98\xfb\x77\xd4\x53\x09\x33\xad\xba\xd3\xb7\x58\xf8\x02\xa1\x51\x1b\xee\xa9\x35\xdd\x1c\x24\xe7\x14\x24\x81\xa3\xb8\x6e\x2e\xdd\xc6\x46\x7d\x53\x34\x24\x4a\xec\x99\x37\xa2\x71\xfc\xce\x0c\xe8\x40\x8f\xa2\x85\x85\x0f\xaa\x03\xfc\xc5\xb7\x4b\x0b\xb0\x3f\xb9\x71\x60\xc0\x74\x4f\xc3\xca\xf9\x56\x5d\xbe\xca\x28\xa4\xdb\x42\x23\x80\x9e\x92\x48\xd2\x05\x2a\x88\xe4\x88\x82\xe8\x51\x57\x24\x41\x01\xdd\x10\x72\x76\xdc\x02\x2f\x14\x8b\xde\xcb\xf7\x55\xa4\x37\xbe\x64\x24\xaa\x1c\x8f\x8a\x58\xb2\x8e\x8e\x47\xf1\xd3\x3f\x3d\x9b\x9f\x5e\xb3\xb7\x8a\x9f\xfe\x9f\xd9\xd3\x27\xa7\xec\x07\xc5\x4f\x49\xba\x88\x33\x7a\xc9\xd3\x7f\xc4\xd9\xd3\x53\xf6\x4f\x58\x73\x66\x4f\x17\x34\x49\x8f\xdf\xab\xec\x29\x49\xff\xa1\x53\xcc\x9e\xd2\x27\xa7\xd7\x1b\xf6\xa5\x59\x93\xbe\x7a\xf5\xae\xfd\xfa\xd5\x8b\x2f\xf5\x21\xf1\x7b\x1d\xf6\xfe\xf4\xfd\xe9\x29\xfb\x46\xf1\xc7\x3d\xfb\x16\xfe\x7d\xad\x78\xf4\xf4\x34\xb2\xae\xa4\xd1\xd3\x88\xb2\x7f\x8d\x18\xe4\xe4\x3e\x40\xec\xd7\xfe\xdd\x6d\x68\x7b\x34\xdc\x12\x9c\x91\xa9\x4e\xfb\xc8\xfa\xb3\xce\x59\xdd\xbf\x0e\x0f\x2e\x77\xf1\xd2\x41\x1a\x52\xde\x8a\xd7\x46\x19\x1c\x4d\x23\xce\x79\x95\xce\xb3\x05\xa9\x78\xe5\x50\x54\xda\x36\x7a\x1a\x31\x74\x79\x13\xe0\xea\x91\x66\xd4\x59\x9a\x4b\x4a\x93\xfe\x3b\x38\x07\x48\x9f\x09\xe6\x8b\xfe\xca\x8c\xc0\x1e\x82\x73\xfe\xad\xea\x6a\x9f\x93\x06\xdf\xef\x1c\x4e\x47\xda\x64\x68\x4f\x89\x6b\x46\xda\x18\x8f\xa4\x6e\x48\x9a\x4f\x4a\xde\x18\xb3\xe3\x43\x46\xb9\x65\xdb\xd6\x6d\x5b\xa4\x65\xb6\xa8\x17\x13\xb2\xe3\x25\x35\xfa\xb5\x84\x28\x20\x7c\xd6\x67\x8a\xce\x88\xbe\xa4\x2c\xd7\xff\x4c\xce\xe8\x9e\xb2\x9d\xdd\x2c\x73\x3f\x72\x3a\xcf\xb4\x3c\x5e\x80\xff\x55\x1c\xe7\xd0\xcd\x5d\xbd\x7f\x52\x3d\x6f\x44\x7e\x39\xcb\xff\x99\xdf\x5f\x08\xa5\x8a\xea\xba\x99\xad\xcb\x5c\x19\xaf\x51\x47\xfd\x2d\x71\x43\xe8\x54\x9a\xa9\xcc\xb4\x64\x5f\xa4\x12\xc8\x67\xdb\x96\x54\xfc\x71\x4f\x69\x2a\x33\x24\x35\xf6\xd8\xcb\x7c\xd7\x56\xc1\x2a\xca\xc4\xfe\x5f\x0a\xae\x6b\xf9\x2b\xfc\xeb\x1b\x21\x2d\x55\x71\x2b\x92\x39\x2b\xf3\x46\x7d\x57\xaf\x8a\x75\x21\x56\xe0\x02\xab\x72\x70\x85\xf5\xcb\x9a\x3c\xee\x64\x99\xd8\x44\x40\xca\x8e\xbe\x7a\xf5\x2e\x62\x45\xf3\x6d\xbd\xcc\xcb\x04\x4d\x20\xae\xea\x9d\x6a\xf3\xed\x56\xff\x7f\xd2\xa8\x5a\xea\x9d\x7d\x36\x3d\x81\x3c\x9b\xa2\xae\x60\x83\xd7\x7b\x7d\x7b\x57\xac\x80\xae\xf3\xc9\x29\xae\x38\xaf\x8c\x3f\xfd\xb2\x2e\x29\x43\x5a\x18\xa0\x0e\x94\xb5\x16\xcc\x80\x64\x62\x32\x67\x79\xf3\x50\x2d\x0d\xab\xaf\x12\x95\x02\xe6\xb7\x48\x1f\x92\x0a\x14\xbb\x4e\xef\x4f\xee\xee\xee\x4e\xd6\xb5\xdc\x9c\xec\x64\x89\xfb\xda\xea\xfc\x78\x79\xa3\x45\x19\xc5\x7f\x7a\xf7\xfa\xe4\xbf\x23\xa6\xc5\xbd\xad\x32\x2e\x7b\xaf\x15\x52\x2e\xa0\xb8\xb4\xd5\x1b\x56\x84\x70\xed\x18\xa2\x7f\x46\xec\x5e\x3f\x07\x39\x6d\x4a\x76\xec\x24\x2c\xf6\xcf\x06\x30\x35\xbd\x08\x3a\xc4\xc4\xf8\x67\x7e\x9b\x1b\xea\x8c\xbd\x2d\x7b\x93\x3c\xea\x34\x4f\xdf\x5f\xdd\x6f\xca\xf7\x57\xa7\x98\xe5\xe9\xfb\x2b\xfd\xf7\x14\xd3\x3b\x7d\x7f\xa5\xff\xbe\xbf\x3a\xdd\x33\x29\x9a\x6d\x5d\x35\xe2\x75\x21\xca\x95\xf9\x38\xb2\x81\xbf\x7c\xf7\x6d\x64\x6a\x61\x83\xde\x89\x7b\x65\x8b\x65\xc3\xfe\x72\xf1\xe6\x7b\x2c\xc1\xad\x90\xca\x38\x2d\x42\x11\xa3\x04\xc5\x46\x14\x1a\x8f\xa1\xce\xba\xa1\xf1\x51\xa7\x12\x25\xfa\x6b\x14\x33\x4d\xb0\xae\x78\xd2\x89\xb4\x7b\xe6\x0d\x69\x1c\x32\xb6\xab\xee\x95\x3e\x88\xb9\x41\xb5\x3b\x60\x54\xa2\x16\x3f\x29\x02\x13\x27\x9c\x2b\x94\x29\x9a\xfc\xa4\x48\x18\x0a\x6c\x19\x3a\xa0\x63\xaa\xf9\x5a\x91\x6f\x14\x85\xc0\x77\x32\xaf\x9a\x6d\x2d\x95\x0e\xfc\xd6\x04\xf6\xfc\xab\xc7\x94\x4c\x3d\x4e\x38\xb0\xea\x34\x88\x0e\x3d\x77\x46\x54\xe2\x75\xd3\x7a\xb7\x25\x8f\xe0\x28\xbe\xe1\xdb\x99\xa9\x76\xdb\x6e\xd9\x6d\xf7\x18\xc7\xc4\x87\xe8\xd8\x18\x61\x89\x2e\x2e\xc9\x86\x26\x56\x8b\xf8\x10\x38\xff\xb3\x6b\x7e\x39\x7b\x99\x97\xe5\x55\xbe\xfc\xd0\x90\xa8\xae\x96\xe2\x78\x23\x36\xb5\x7c\x88\x28\xbb\xe2\xdb\x59\xa3\x72\xb5\x6b\x5e\x02\xa1\xfa\xe3\x9e\xdd\xe9\x15\xf6\x95\xfe\xe7\x9e\x47\x48\x36\x2a\x56\x11\xbb\xe0\x8f\x52\xe4\xab\x87\x0b\xa5\x0f\xd6\x40\xee\xfd\xd6\x8c\x8b\xaf\x45\xbe\x1a\x23\x8f\x3e\x42\x28\x6c\x7d\x30\x41\xda\x95\x86\x3f\xee\xcf\x15\xff\xa7\x42\x3f\xd5\x9c\x9e\xd3\x26\x55\x03\x7a\x00\x20\x58\xe7\xe4\xe0\xab\x00\x68\x41\xa5\xcf\x32\x7a\xa4\x78\x93\x8a\x91\xa8\xfb\x40\xbe\x50\x28\x5f\x28\x23\xf2\xb1\x63\x2d\xf3\x5d\x0b\xf5\xa2\x2c\xc3\xba\x8c\x81\x14\x2f\x8d\xb9\x17\x68\xf1\xdf\x22\x5c\xc6\xa0\xe6\xde\x68\xc4\x2c\x97\xe0\x53\xf0\xaa\x5f\xb8\x6c\x24\xa8\x6d\x05\xbb\x4b\x45\xc6\xcd\x2d\xe7\x9e\xd5\xb7\x42\xca\x62\x25\xbe\x2b\x36\xc8\x58\x79\x50\xb7\xbd\x04\x3f\xbb\x8d\x89\xc7\x85\x4d\xa1\xeb\xdb\xf1\xee\x01\xaf\xf6\x25\xbd\xb0\xee\x78\x22\xbd\x30\xe3\xc1\x77\xf2\x50\x28\x40\x5f\xe9\xb3\x7a\xaa\xff\x65\x22\x55\x59\x16\x12\x61\xe4\x57\x7a\xb6\x8c\xd8\xc7\xb4\xed\xbd\xdb\x94\xe3\xb8\x98\x41\x44\xa2\x28\x7b\x43\xe6\xf6\x46\x77\x0f\x67\x84\x07\x87\xc4\x70\x41\xd9\x76\xb6\x93\x25\x27\x44\x4f\x02\xfd\xb3\x6d\xcd\x0e\x42\xa7\x51\x44\x9d\xe4\xf6\xbd\x62\xde\xea\x3f\x8d\x4e\x4f\x23\xfd\x2d\x62\xfa\xcc\x36\x42\xdd\xd4\xab\xb6\x95\x86\xf7\x6b\xeb\x42\x30\x0a\xdb\x76\x3b\x32\x27\xdd\x03\x88\x2e\xf4\xb0\x2c\x14\x45\xd6\x5b\x74\x3b\x5b\xca\xba\x69\xbe\xac\x37\x79\x51\xd1\xc7\x11\x90\x6f\x2d\xa6\xe9\x63\x77\x89\x9b\x29\x54\x86\x99\x07\xfc\xc3\x82\x44\xf8\xbf\x7a\xf5\x99\xea\x7d\xb8\x6e\xd4\x04\x51\x0b\xbc\x17\x25\x84\x9b\xe3\xf9\x0b\xfa\x18\xa6\xa3\xd7\xcc\x62\x6d\x6a\x15\xc7\xdb\x99\xb7\x1f\x76\x4c\x78\x4e\xca\xb1\xf1\xcc\x07\xdc\x9e\x71\xf0\x51\xb7\xa9\xcc\x57\x80\xd4\x97\x97\x94\xb2\x2f\xf4\x62\xc9\xb6\x4c\xb2\x0b\xca\x96\x56\xc9\x70\x01\x82\xc8\xcd\x71\x51\x91\xb5\xd5\x52\xeb\xac\x71\x53\xa6\x71\x3c\xe7\x7a\xc9\x03\xf1\x61\x3a\x05\xa9\x23\xd0\x55\x45\xb0\x1a\xaa\x5c\xaa\xae\x1b\xf1\x4f\x08\xd6\xc7\xb6\x60\x81\x60\x58\x59\x26\x5f\x9a\x63\x09\x46\xa5\xac\xc6\x66\x76\xa3\xe4\x2d\xdc\x90\x06\x1f\x2d\x0e\xb4\x0b\xc0\x5c\x9a\x25\x17\x65\x04\xa4\x8b\x73\x37\x11\xbf\x2b\x30\x80\xaf\xad\x69\x44\xfc\xd3\xd1\x9d\x29\x16\x4d\x23\x2d\xf9\xae\x4c\x09\x51\x58\xb6\x0e\x3c\x94\x79\xbd\xe0\x15\xab\xd3\xeb\xf0\xb0\xbb\x80\xf6\x71\xca\xc9\x85\x69\x80\x9a\x2e\xa2\x38\x4a\xa2\x45\x44\xa7\xa6\xe3\x8c\x45\xa4\x89\x8f\xea\xe7\xed\x6c\x99\x2f\x6f\xc0\x13\x88\xd7\xae\x74\x3f\x28\x16\x3d\x39\x8b\x28\x5b\x8d\x27\x18\x5d\xf2\x68\x7a\xaf\xa6\xd3\xe9\xca\xce\xcf\x1a\x7f\x16\x6b\x2b\x04\x02\x0c\x84\x2f\x15\xa6\x75\x16\xc7\x17\xb3\xfe\xa2\x49\xa2\x6f\xd6\x27\x36\xce\xc9\x45\x51\x2d\x45\xc4\x06\x5f\x82\xf2\x57\xe5\xd7\x1f\x4b\xe4\xfb\xba\x12\x27\xdf\xe9\x29\x10\x75\xb1\x29\x65\xde\xc0\xef\x7a\xdd\x28\xc9\x7b\xfd\x2b\xfd\x47\x3a\x9e\x93\x49\xe0\xe4\x1d\x58\x60\x07\x09\x50\x36\xf6\xc1\x0b\x10\x13\x23\x7f\x89\x49\xe7\x19\x28\xc9\x51\x80\x4c\xc3\x37\xd9\xe2\xe0\x9b\xa9\x3e\x1d\x40\xb1\xfd\xe0\x85\xde\xc1\xa6\xaf\xd5\x34\x3a\x3f\xfe\x8d\xcf\x67\xf3\xb3\x28\x89\x22\x9a\x74\xc9\x20\xf2\xd0\x76\x76\x83\xbb\x1a\x1d\x29\xe6\x4d\xf7\x3a\xbd\xc9\xc0\xa4\x6b\x3b\x43\x2a\x98\x0b\x51\xad\x2c\x86\x94\x1f\x86\xf7\x89\x1b\x76\xc1\xb6\xb4\x6d\x97\xee\x06\xf7\xc2\x2c\xed\x90\xc8\x3d\x8f\xe0\x29\x62\xd7\xc0\x11\xba\xed\x20\x37\xd8\x05\xfa\x4b\x6f\x67\xcd\x0e\x34\xa7\x3a\x04\x60\x38\xb6\xa8\x1c\xa4\xac\xe0\x5f\x68\xb1\xcb\x2c\x2f\x20\x43\x5c\xcc\x3a\xf9\x83\x9f\xb1\x75\x1c\xdf\xf6\x56\x0d\xe0\xb4\x49\x2f\xd8\x36\x0b\x16\xa4\xed\x0c\x04\x7f\xdd\xf0\x0a\xdd\x61\x3e\x07\x00\x72\x7e\x08\x98\xca\xd6\x23\x32\xd1\xb5\x94\xe0\xbe\xa5\xb8\x98\x2f\xf9\xe4\x8c\x15\xb3\x46\x9f\x86\xee\xd8\x1b\xda\xad\xc1\xb0\xa1\xaa\x1b\x59\xdf\x1d\xbf\x38\x7a\x43\x4e\xce\xd8\x0b\xba\xdf\xc3\x5e\x0a\x4f\xd1\xf7\xf5\xb1\x93\x2e\xfd\x13\xfc\x1b\x3c\x85\xba\x63\x29\x08\x88\x77\xec\x15\xbb\xe7\xf2\x68\xd9\xb6\x64\xa9\xcf\xb3\xbb\x38\xee\xf9\xf6\xec\x74\x73\x99\x1b\x91\x9c\x37\x7a\xb5\x62\x41\x63\xa9\xcf\xe7\x8b\x3f\xeb\xb3\x1a\x57\x9f\xf3\x67\xf3\x79\x1c\xab\xe7\x9f\xcd\xe7\x6d\xfb\xd9\xfc\xcf\x9c\x73\xc5\xaa\x38\x26\x77\x03\xb7\x6e\x0f\xea\xca\x91\xcd\xd8\xd3\x07\xd3\xad\xe7\xc6\xe2\x79\xf4\x34\xe2\x9c\xef\xd2\x79\x76\x4e\x77\xee\x26\xd7\x79\x98\x20\x37\xb6\x70\xf2\x49\xdb\x82\xad\x4b\x28\x73\xf5\x66\x18\xa5\x9e\x35\x9a\x96\x3f\x1a\x2d\xaa\x34\xe0\x67\xaa\xff\xc5\xd5\xa9\xa2\xf4\x71\xe7\xce\xdd\x05\x3d\xba\x92\x22\xff\xa0\x77\x3d\x5d\x98\xa2\x3a\x96\xb4\x86\x72\x81\x30\xd3\xf1\x3f\x4b\x14\x4b\x77\x48\x1b\x3c\xeb\x8e\x34\x69\xa1\xe5\xc6\xa9\x7e\x91\xd1\xc7\x9a\x17\x26\xc5\x1c\x08\x72\x0a\xba\x07\x4c\x8c\x5c\xe7\xe0\xcc\xbf\xeb\x09\xd6\x3d\x8e\xbb\xa2\xd4\x94\xc9\xb4\xce\xf6\x64\xcb\x2e\x00\x69\xb8\xdf\xbe\x3d\x10\x64\xe0\x07\x79\xdc\x03\xad\x65\xa7\x50\xc0\xcd\x01\x5a\x62\x99\x9e\x65\xc8\x49\x09\xc2\x98\x57\x64\x5a\xa6\x79\x5f\xba\x0c\xaa\x94\x67\x47\xc8\xfb\xb8\xb4\x5d\x73\x5e\x83\xad\x9a\x98\x85\xc7\xc2\xd4\xd0\x16\x8e\x84\x83\x54\x3a\xd9\xc5\x31\xa0\xc8\xe9\x12\xbe\x86\x33\x53\x1c\x13\xc5\xfd\x00\xb8\xfb\xb1\x35\x00\x24\x83\x9a\x79\x39\xeb\x6c\x71\xb4\xd4\xba\x67\x9c\xba\x1b\xd7\xb7\x5d\x1c\xef\xc0\xb0\x1e\x7a\x87\xe4\xbc\x4c\x77\xd0\x1f\x75\xd6\xb6\x65\x1a\x3d\x85\x9f\x1e\x83\x71\x09\x46\x3e\x0d\x2f\x3c\x54\x57\x9a\x9e\x65\x68\x90\xef\x25\x00\xcb\xa8\x4b\x03\x9e\x28\x7d\x04\x08\xe7\x7c\x91\x03\xc3\x71\x02\x3e\xfb\x25\x8c\x30\x52\x73\x1d\x87\x2d\x5d\x87\x36\xba\xfd\xbd\xf1\x05\x91\x73\x9d\x7d\xae\x5b\x04\x26\x7c\x43\x15\xcf\x9d\xc5\xa3\x5e\x26\xf0\xb9\x5b\x1c\x8c\xd6\xb2\x81\x43\x54\x70\x43\xc2\xe0\x4f\x92\x2f\x5e\x24\x7a\x85\xc0\xee\x6b\x00\xf9\x4d\xd6\x1b\x3d\x24\xa7\xd1\xb1\xaa\x75\x03\xec\xf7\xfb\x30\x1d\xb3\x8c\x46\x4c\xb7\x7b\xa2\xf6\x7a\xd4\xdd\xb1\x0b\xc0\x46\x5a\x90\xde\xee\x4c\x5e\xf1\x8b\xb1\xd9\xf7\x6d\xde\x28\xb7\x21\x23\x7c\xc9\x60\x3b\xe6\xaf\x28\x3b\xf4\xbd\xde\x78\xed\x67\x66\x13\xe6\xaf\x28\x65\xcf\x70\x91\x69\xdb\xe8\xeb\x57\x2f\xbe\x8c\x60\x2f\xd1\x22\xcc\xe2\x9e\x47\x55\x6d\x09\x00\x12\xb3\x16\x61\xa8\xda\xd8\x72\x24\xe4\x9e\xdf\xc1\x91\x44\xb0\x1b\x7e\x87\x12\x4d\xc9\x27\x64\xc5\xef\xcc\x66\x81\xd2\xd4\x3d\x9b\xa8\x38\xbe\x6f\x5b\xbd\xf3\x98\x26\x55\x60\x98\x0d\x50\x18\xb0\x45\xc3\xc1\x86\x2b\xf7\x13\xa8\x93\x88\x6c\xdb\x7b\x7d\xa6\x60\xe5\xe2\x21\x40\x13\xdb\xb0\xf4\x86\xdd\xb3\x8b\x8c\x26\x0f\x3e\x9c\xd8\x46\x6f\x32\xf7\x6c\x95\x75\x89\xea\x13\x16\xb9\xd2\xe7\x69\xb3\x10\x07\xdb\x53\xb9\xc0\x0d\xca\x74\x53\x02\x4f\xaf\xb0\x8c\x7a\xbf\x62\xe5\xe2\x26\xd1\xc9\x5d\x03\x4a\x8f\x97\x49\x46\x75\x4a\xa4\xb7\xd3\xbd\x34\x3b\xa9\xdb\xed\x4e\x4e\xac\x4c\x0d\x17\x6c\x63\x12\x75\x0d\x06\x6b\xf6\x3c\x7c\x01\xe7\xde\xbf\x5c\xbc\xf9\xfe\x80\xf3\xd6\xf1\xa5\x75\x22\x61\x92\x45\xa0\xc1\xc1\xb3\xf2\x05\x28\xa2\xc6\x8f\xbc\xf6\x1b\x6b\xde\xd2\x31\xbe\x06\x66\x64\xd7\x42\x45\x2c\xda\xd6\x8d\x1a\x42\xa1\xf7\x9c\xb5\x42\xe6\x87\x0d\x31\xd0\xfa\x60\x97\x54\x01\x88\xb6\xd5\xb4\xa0\x1e\xa5\x83\xe6\x02\x05\x92\x60\xc6\x0a\xca\x2e\x48\x49\x81\x73\x44\x32\x33\x67\x12\xc0\xc9\xe8\xdf\x34\xc5\x31\x18\x34\xea\x54\x2d\xf9\x33\x3f\x50\x63\xc8\xd5\xcf\x0c\x55\x9b\x2e\x43\xdb\x04\x0c\x04\x6e\x4f\x0d\x79\xe6\x14\x95\x67\xa1\x4a\x0d\x94\x63\xe6\x2b\x5f\x0f\xb1\xdf\xb3\x6e\x99\xed\xe1\xbc\x76\x54\xd8\x08\xd3\xbc\xef\x5f\x66\xdd\xc9\x7c\xfb\xa2\x1c\xb1\x1c\xf6\x0f\xf1\xb0\x87\x11\xc4\x63\x21\x82\x7b\xa6\xbe\xe9\x5c\x4b\xd4\x8a\x5f\x1a\xc0\xe0\x01\x5d\x39\x9d\x89\xdf\xc8\x9c\x7a\x54\x7d\x36\x5a\xe8\xfc\x12\xb0\x79\xda\x94\x99\xea\x5f\x85\x39\xfe\x4e\xb8\xbf\x3a\x17\x48\x6e\x6a\x8e\xd4\xe0\x79\x7c\x4e\x75\x01\x07\xc1\x1d\x1d\xb5\xa3\x76\x44\xbb\x72\xa3\x10\xd1\xed\xf0\x4d\x55\x8d\xd3\x52\x1f\xb2\xb6\xf7\x5c\x29\xdc\xf7\xa1\x23\x05\xfd\xb8\x79\xbd\xb3\xa4\x97\x5c\x39\x19\x8a\x74\x9e\xf0\x0b\x39\x33\x1d\x04\x37\x7a\x1e\x29\x25\xc5\x22\x8f\xe8\x55\x36\x9d\x8f\xc1\x98\x69\x89\x0c\xcb\xac\x93\x56\xa1\xf1\x36\x4d\x30\xfd\x5d\x35\xc8\x21\x60\x51\x84\xfe\x23\x82\xce\xaa\x5a\x91\xe8\xaa\x5e\x3d\x44\x43\x3e\xe0\xce\xd5\xc4\x91\x43\xda\xeb\x41\x4b\x56\x4f\xf7\x1d\x00\xa3\xf1\xf1\xdc\x36\x62\xb7\xaa\x1b\x8b\xac\x34\x82\xcb\xd1\x8b\x08\x5c\x53\xa5\x00\xba\xce\xf1\x57\x63\x89\x4c\x88\xf0\x39\xde\xb4\xc4\x87\x8f\x48\x78\xf2\x11\xd6\x04\xc8\x26\xb8\x77\xb9\xbf\x91\xbe\x9f\x3d\xd8\x53\x74\xbc\x34\x62\xf6\xcb\x77\xdf\x7e\xad\xd4\xd6\x1c\xb2\xcc\xce\xaf\xf4\xec\x05\x25\xf0\xcf\x8a\x3f\xce\x01\x38\xe0\xec\xd9\xb3\xcf\x92\x67\xf3\x3f\xef\xd9\x6f\xaa\x7f\xb9\x73\x7f\x23\x09\x3d\xd2\x47\x26\xd9\xf0\xc9\xe4\x37\x15\xc7\xd1\x5d\xa1\x6e\x5e\x4a\xb1\x12\x95\x2a\xf2\xb2\x89\x8a\xea\xf8\x37\xc5\xb6\xf0\x21\xff\x4d\x41\x34\x53\x58\x77\xbc\x20\x03\x33\x11\x56\xe1\x09\x4f\xa7\xdc\xb6\x3a\xe1\x89\x0a\x34\x58\x56\xb2\x08\x28\x8e\x7d\x13\x54\xae\x4c\xf1\xb4\x38\x0e\x2c\x97\x04\xed\xd4\x98\x02\xcd\x96\xc2\xe3\x96\x7e\x6a\x84\xc4\x7b\xf9\xd9\x36\x6f\x9a\xbb\x5a\xae\xf4\x54\xbf\xbf\x91\x28\x56\x76\xe2\xac\x1f\xa8\xe5\x55\xee\x05\x58\xf1\xd5\x44\xb4\x67\x88\x38\x6e\x66\x7d\xfd\xe8\x58\x18\xe9\x3e\xd1\x99\x7b\x55\x6d\xdb\x22\x8d\x7e\x39\x31\x3d\x25\x56\x27\xc0\x68\x9a\xb5\x2d\x19\x0d\xe7\x51\xd8\xb5\x11\x65\x05\x6d\x86\x07\xea\x9c\x81\x59\xf6\x91\x1c\xb3\x44\xf6\xd5\xca\x70\x59\x50\xf1\x66\x56\x57\x65\x9d\xaf\xe0\x07\x08\x2e\xf0\x0b\x8e\xa0\xf0\xcb\x1c\x3c\xe1\x37\x9c\xea\x40\x1a\x5a\xde\xe4\xd5\x35\x32\x0c\x33\x73\xd2\x06\x47\x97\xc6\x1e\xc2\x13\x23\x05\xa1\xfb\x4b\x1f\x19\xab\x31\x82\xcb\xa2\x26\x73\x66\x62\xd2\xa4\x26\x36\x9c\x35\x9e\x8c\xa4\x5f\xfc\xac\x52\x1b\x94\xb5\xed\x68\x34\xbc\xd7\x01\xde\x8b\xc6\x9d\x20\x8c\x02\x0d\xde\xd0\x11\xf3\x24\x2f\xa6\xb8\x57\x8b\xc7\xab\xa2\xca\xe5\x43\xd2\x05\xef\x93\x47\xb8\x01\x0a\x23\xee\x19\x10\x71\x0e\x35\xf7\x84\xa2\x2b\x82\x6d\x55\x49\x28\xab\x7a\x6d\x6b\x5b\x54\x4b\xad\x58\xf3\xce\x0f\xd7\xb5\xfd\xa2\xeb\x85\x2a\x19\x6d\x7b\xaf\x33\xb5\xec\xda\x78\x67\x6e\xe0\x2e\x1a\x55\x2e\xc8\x38\xae\x00\x86\x91\x49\x9d\x3f\xf6\x1c\xea\x14\x1a\x54\x27\xa8\x40\x5d\x85\x57\xc6\x08\x8b\x64\x0f\x12\x3b\x43\x08\x83\x5a\x86\xdd\x7e\xa0\x7c\x87\x6c\x24\xb1\x64\x22\xc1\x2d\x17\x09\xed\xd2\xbd\x09\x01\x88\x02\x76\x77\x9a\xa1\x04\xc2\xf1\x0e\x3b\xb8\xa5\x72\xf7\x9f\x18\xc5\x5c\x74\x76\xb7\x94\xec\x38\xb8\xc8\x3c\x10\x2e\x96\x9b\xd1\xf0\xfb\x93\xee\x4d\x70\xdf\x69\x72\x3b\x7d\x7f\x45\x16\x89\x4e\xb5\xd5\x11\x29\x06\xc3\x25\xe7\x27\x88\x51\xc2\x17\x56\x3d\xa1\x89\x32\x31\xda\x58\x4e\x7c\x0b\x36\xe0\x0e\x3a\xc3\xaa\x51\xcd\x2f\xdd\x5c\x6c\xd8\xa8\x88\x4f\xa2\x05\xc3\xae\x31\xbb\x45\x7a\x3c\x0f\xf4\x99\x81\x4b\x9a\x70\xd5\x12\xa6\x6b\x5e\x28\x25\x9b\x8f\xac\xd7\x5a\xea\x88\x9e\x63\xdc\xcf\x23\x6a\xdc\x79\xfc\x8f\x91\x50\x1b\xcc\x8d\x1e\xcd\x1d\x77\x62\x23\xbc\xc4\x67\xd6\xc8\x65\x22\xf4\xc2\xbe\xa7\xb3\xba\x22\x91\x9e\x54\xc7\xe6\x7c\x15\x2e\x71\xca\x1a\x36\x5a\x0b\x76\x26\xe2\xb8\x26\xde\x32\x84\xe7\xbe\x3f\xcf\xff\x0c\x1b\x20\x3e\xea\x06\xa9\x40\x03\x19\xe0\xca\x28\x2d\x17\x7e\x74\x5c\x23\x5b\xa7\x62\xbf\x2a\x9e\x66\xec\x2b\xc5\x4f\x09\xa7\xef\x17\x64\xc1\xe3\xf6\x09\x6d\xdf\x2f\xd0\x62\xd2\x1b\xb7\xfa\x14\xb3\x4d\xa2\xa5\xb9\x0c\xc5\xeb\xed\xad\xbd\x1b\x1d\xd2\x7b\xfc\xaa\xd0\x72\x1a\xce\x54\xe8\x69\x30\x8d\x2e\x51\x03\x1e\x88\xcd\x02\x2c\x4d\xc4\xe8\xf8\xd1\x79\xc0\x0d\xf8\x36\x62\x81\x5b\x47\x8f\x04\x0b\xd4\xd2\x6a\x06\x31\xe3\x98\x7c\x65\x0d\xb0\x74\xd3\xd3\x45\xb4\x93\x65\x34\xc4\x5f\x50\x46\xc3\x0d\x77\x16\xea\x7f\x7b\x67\xd1\xe5\x69\x6e\x16\x22\xfd\x17\xdd\x7c\x9b\xb6\x8d\xb0\x16\x60\xbc\x1e\x98\xb1\xd8\xcb\x3d\x5b\x7c\xdb\xa2\x7c\x43\x7a\x21\x74\xd1\x0b\x20\x5a\xda\x0d\x42\x58\xb3\x50\x69\x93\x71\xfd\x8f\xbb\x98\xf8\x0a\x2f\x26\xa6\x05\x4d\x7a\xed\x04\xed\xe3\xdd\x7f\xd8\xf6\xb2\x57\x16\x26\x26\xd8\x29\x16\x20\x00\x74\x7a\x31\x33\xef\xd0\x3e\x21\xe3\xc3\x2b\xdf\xbc\x33\x57\x2d\xa6\xd1\xf1\x5d\xde\x1c\x57\xb5\x3a\xd6\x03\x48\xb7\x18\xcb\xd3\x79\xb6\x67\x61\x6b\x70\x3c\x2c\x03\xfa\x77\x91\x31\xfd\x4f\x80\xfc\xcb\x9d\x53\xe6\x9e\x55\x23\x28\xa8\x6e\x6d\xa9\x17\xe0\xfd\xd4\x41\x60\x90\x82\x26\x90\x5c\x0d\x36\x9e\x50\xf9\xb0\xbd\x65\xaf\x29\xf5\x00\xde\x35\x37\xa4\xa0\x40\xe8\xb6\x01\x78\xf2\x9a\xe4\x70\xe6\xca\x79\xdd\xf1\x2f\xd8\x25\x08\x0c\xc4\xf1\xfe\xf2\xeb\x77\x00\x65\x01\x65\xe5\x84\xfc\x4d\xf1\x6a\x56\x6c\xb6\x78\xd6\x82\x91\x34\x12\x91\xe8\x51\xa7\x8f\x08\xd4\x23\xe1\x8f\x9e\xeb\xc1\xf6\xf9\xf3\x53\xfc\xe3\x3f\x44\xec\x19\xe7\xfc\x6f\xca\x3b\x26\xb8\x9b\x30\x63\x1a\x02\x49\x8c\x2b\x29\x86\xe8\x89\x8b\x34\x4b\xc8\xa8\xcb\xb5\x31\xcc\xd0\xeb\xb3\x6a\x5b\x32\x56\xcb\x05\x21\x05\x27\x9f\x5c\x4f\xda\xbf\xe8\xbd\xca\x1b\xa1\x83\xe1\x66\xb7\x72\xc6\xdc\xc6\xec\x69\xb8\xc6\x15\x94\x26\x8a\x03\xda\xe5\x44\xc6\x71\x9a\x31\x52\xf3\x77\x68\x1b\x21\x28\x5d\xa4\xaa\x97\x43\x9d\x9e\x65\x34\x4b\x48\xcd\xef\x10\x7c\x56\xb1\x1c\x7a\x36\x77\x24\x6f\x97\x24\xa7\xdd\x3a\x7c\x39\xdb\x08\x79\x2d\x48\x9a\xb1\xda\x3f\x89\x51\xda\x59\xa4\x18\x45\x01\x08\x4b\x07\xb1\x50\x58\x8e\x08\xdb\x0d\x17\xbe\x27\x7e\x47\xce\x80\x6e\x5d\x15\xbf\x55\xc4\x92\x12\xeb\x43\xb7\x3e\xa3\xe3\xd3\x9c\xe9\x67\xb0\x2d\x0e\x6d\x64\x12\x35\x02\x1c\xab\x90\x88\xf4\x87\x37\x17\xef\xf4\x3c\xb3\x98\x30\xf3\x38\x1e\xd1\xb8\x14\x6d\xdb\x57\xba\xa0\xd5\x95\x51\x87\xd2\x1e\x3c\xaf\xa0\x8f\x75\x37\x0d\x59\x3e\xd3\xb1\x49\xb5\xd0\xdb\xe5\xaa\xb8\xfd\xdc\x41\x9c\x11\x6f\x08\x02\xc4\xc1\x1a\x11\xeb\xe1\xe0\x6c\xe7\xae\x8c\xe3\x50\x35\x94\x0f\x0e\xc7\x01\x08\x61\xdd\xb6\x9e\x82\x1d\xe4\x66\xc5\x44\x06\xc8\xdc\x46\x49\xe1\x34\x65\xdd\x65\x38\xeb\xd4\x78\xac\xa7\x03\xf4\xb5\x89\x81\x9e\x91\x75\xd7\x62\x43\xca\xc1\x3e\xa4\x62\x78\xe8\x87\x3d\x4a\xd0\x91\xa3\xba\x41\x13\x5c\x8d\x7d\x7a\x39\xbb\x96\x62\x4b\x1c\xd4\xa5\x7f\xfa\xb4\x7a\x19\xd8\x3e\x90\x75\xc4\xf4\xaa\xae\x2f\x1e\xc7\xc1\x11\xe4\x0d\xfc\x3c\x0c\xcb\xe3\x6e\x4b\x3a\x3e\x63\x43\x20\x08\x54\xea\x7a\xd1\x64\x6b\xfe\xb8\x3f\x8a\xb4\xac\x5e\x2c\xf5\x86\x55\x76\xe4\x7b\x1e\x17\xbc\xa5\xca\x8f\x28\x6b\xb8\x65\x81\x27\x88\x46\x6b\x92\x06\xb5\x29\xdb\x75\x01\x25\x50\xe7\x31\x12\x70\x18\x96\x6d\x1b\xad\x8b\x7b\xb1\x82\x07\xbc\x92\xdf\xf9\xbb\xef\x4e\xd5\xe0\xf9\xb8\x20\x39\x27\x15\x5f\xba\x42\x10\x4a\x81\xf7\xbe\xd0\xeb\x85\x58\x2b\x9a\x84\xec\xb9\x35\x6d\xdb\x39\x2b\xfc\xa0\x1d\xd2\x1d\x23\x22\x32\x51\xdc\x31\x21\xc8\x00\x1a\x57\x4f\x72\x03\x4a\x0c\xd4\xfa\x71\x4c\xd6\xfa\x2f\x3e\x9d\x34\xfa\xdf\x69\xde\x45\xd1\xb9\x43\x1c\xfd\xc3\x3c\x9f\x34\xf0\x47\x6f\x9c\xd1\xae\xd1\x2b\xad\x3e\x82\x2f\xf4\xc9\xbe\xa8\xae\x6d\xbe\x6b\x9a\x2c\xa1\x79\xd6\x48\xa5\xe4\x69\x1d\xeb\x7e\x5f\xc2\xc1\xe5\x10\xc6\x48\x27\x56\x83\x12\x6e\x4c\x9f\x06\x43\x17\x53\x9d\xb9\xb1\x62\xb1\x52\x15\x35\x52\x21\x62\x35\xf4\xc0\x10\xaa\x45\x75\x48\xcb\xb3\x80\x45\xff\x00\x8b\xa1\x16\x66\x43\x5d\xa7\xef\xa7\xc8\x1e\x55\xbd\x4d\xa0\x4d\xa7\x72\xb6\xcd\xaf\xc5\xaf\x58\x28\xa6\x5b\x2e\xc1\x76\x34\x6f\x7e\xc1\x37\x7b\x9a\xc0\x47\x73\x8c\x32\xdf\x5b\x5f\x7d\xb6\x1d\xe1\xbe\x2f\xd6\x4e\x4d\x6a\x41\x39\xfd\xda\xb1\x82\x87\x89\x69\x61\xad\x1b\x8c\x38\x6e\x2b\x7f\x8e\xd0\x8f\xd4\xb5\xbb\x25\x35\xbc\x79\x6e\x4e\x0c\x1a\x81\x09\x1d\x02\xaf\x7f\x00\x0d\x61\xdb\xca\xd9\xca\xbc\x34\x1b\xd6\x39\x22\xea\x72\x2e\x41\x26\x68\x5b\xfc\xdd\x8b\x05\x78\x0c\x6e\xaa\x8e\xcc\x6a\x54\xf5\x7a\x28\x4b\xfa\x78\x8d\x7c\x2a\x03\xc8\x7f\x52\xc0\x0a\xe0\x0a\x0e\xd3\x6b\x40\x52\xfe\xae\xde\x3a\x7a\x72\xca\x0a\xec\xa4\x7e\xa4\x6f\xc5\x5a\x75\xb1\xec\xd5\x49\xd7\xdf\x27\x05\xfc\xeb\x9a\x18\x39\xa7\xde\xe9\x15\x1a\x90\xfe\xbb\xfe\x3f\xc1\x1c\xfa\x51\x81\x86\x13\xfd\xf2\xf6\xcc\x6f\xca\x4f\xf4\x17\x09\x95\xe4\x41\x67\xe8\x96\xff\x94\x46\xf5\xbf\x71\xaa\xf3\xb6\xad\xc4\x3e\x44\xc1\x75\xc4\x6b\x49\xe4\x8d\xe4\x88\x39\xa2\x36\x0c\x37\x63\xff\x80\xcb\x60\x10\x45\xef\x03\x47\x03\xf8\xda\xea\x23\xa4\x98\x70\x13\xa4\x53\xaa\xf5\x18\xbf\x25\x82\x2e\x6a\x2e\x92\xff\xe9\x0f\x81\x9a\x0b\x7f\x86\xfa\xf4\xbf\xee\xc6\x7e\x51\xa7\x2a\x4b\x44\x5a\x65\x47\xf5\xa2\x76\x7c\x73\x44\x2e\x6a\x7f\xaa\x26\x05\x93\x8b\x22\xa9\xfd\x89\x4d\xe1\x33\x5e\xec\x01\x2d\x78\xb0\x96\xf5\xc0\x8e\xf5\x76\x0d\x7b\xc6\xc7\x49\x7f\x81\xda\x75\x5b\xdc\x8b\xf2\x07\xcb\x86\xeb\xdf\x82\x05\x04\xc0\x96\xa6\x5c\x51\x66\xe9\xe4\x25\xc5\xc3\x42\xb7\xad\xa4\x2a\x03\xda\xd5\x44\xee\xa9\xd7\x91\x86\xe1\xdb\x31\x12\xc3\xf8\x4e\x0c\xb1\xca\x10\x5c\x18\x3f\x72\x2c\xad\x20\xd2\x47\x53\x61\x95\x32\x89\x62\x51\x94\x44\xf5\x4e\x41\xf0\xbe\x87\x56\x0b\xbd\x5b\x79\xbd\xdb\xa9\x91\x79\xbf\xdd\xb4\x80\xee\x21\x38\x3b\x89\xbe\xd0\x7b\xb3\x6c\x5b\x02\x57\xf5\x45\xdb\x4e\xf0\x6c\x64\x19\xde\x12\x4b\xc8\xeb\x44\xd1\xfe\xc0\x01\x08\x05\x3b\x70\xec\x4e\xa3\xc5\x50\xb0\x4c\xe9\x36\x69\xac\x05\x5d\xa8\xd4\xd5\x33\x4b\x94\x5b\xac\xfa\xab\x56\x1a\x2d\x61\xe1\x84\x68\xff\x03\x52\x8d\x1d\x83\x0b\x52\xf3\x41\x7c\xe6\x28\xd3\x14\x2c\x86\x70\xfa\xac\xcb\x52\x7f\xcf\xea\xe0\xc9\x46\xb0\x54\xc5\x18\x21\x7c\xea\x32\xa7\xd6\x17\x45\xb7\xcf\x02\x67\xba\xae\x73\x43\x1d\xf5\x22\xa2\x48\x34\x74\xaf\x0f\x0c\x8b\x22\xb1\xc6\x42\x70\x4f\xe8\x06\x47\x74\x55\xee\xe4\x31\xb8\xfd\x1e\x1b\x5f\xe0\x63\xeb\x04\x7c\x2c\x45\x53\xfc\x4b\x1c\x63\x29\x8f\x97\x65\xb1\xfc\x70\xbc\xba\x2a\xf1\xc7\xa6\xde\x35\x62\x55\xdf\x55\xf8\x6b\xb7\xc5\xbf\xfa\x10\x82\xbf\xea\x5b\x21\xcd\xaf\x9d\xc2\x1f\xa2\x52\x36\xac\x14\xf9\xad\x38\x46\xa5\xea\x31\x7a\x6b\x1e\xa3\x97\xe7\xf1\x07\xf1\x00\xe9\x7e\x10\x0f\x5b\x29\x9a\x46\xff\xd8\x6d\x8f\x8d\x3d\xfc\x46\x54\xbb\xc8\xb3\xfc\xf8\x5d\x21\xd7\xbb\xdf\x1e\xe0\x4d\xce\x17\x9d\xe4\x8b\xda\x2b\x26\xcd\x9d\x9e\xbd\x4a\x1f\xf1\xf8\xbe\xd1\x55\xfb\x88\xbf\x77\x57\x57\x3d\x3f\xbb\xea\x12\x05\x88\x06\xfd\xe4\xae\x0a\x5f\x8d\x17\xde\xc8\xdb\xe2\x09\xe3\x7e\xce\x24\x5c\xde\x0d\x3e\xe9\x7d\xb0\x5e\xbb\x2f\xe8\x9e\x59\x4c\x87\xdf\x21\x82\x40\xf9\xdf\x10\x3a\xec\xaa\x03\x5f\xb9\x6f\xf4\x36\x3c\x00\x9b\xf2\xb2\x8f\x9e\x3e\x8d\x4c\x5b\xea\x00\xc5\xc0\xc0\xfa\x69\xc4\xa4\x69\x82\xad\xac\xef\x1f\xc6\x1d\x55\x19\x38\xe3\x0e\x55\x5f\x70\xa4\x17\xa9\xca\x0c\x57\x82\xd4\x32\xb1\x47\x9d\xc8\x6b\x14\x50\xbb\x83\xde\x33\xca\x48\x31\xa2\xe6\x11\xf6\x78\x66\x9c\xbc\x2b\xeb\x5b\xd0\x4f\x01\x60\xf2\x66\xd7\xbb\x62\xc5\x85\xff\xa7\x6d\x2f\xe1\xef\x74\xca\x0a\x2d\x01\xdf\xd4\xe5\xea\xad\xc8\x57\x0f\x21\x06\x0c\x40\xe1\xe6\xab\x87\x9f\xf3\x42\x4d\xa7\x89\x79\x02\x72\x0a\xb0\x41\x00\x7f\x47\x1e\x78\x3f\x5a\x25\xc8\x5f\x2e\xde\x7c\xcf\x3d\x0f\x9a\x4b\xe7\x94\xc9\x3f\xc0\xb7\xaf\x4d\x46\x7c\x03\x8f\x08\x9a\xc1\x6f\xd9\xe5\x6c\x99\x6f\x44\xf9\x32\x6f\x04\xff\x95\x5d\xa2\x26\xfa\x0a\xbe\xbf\x73\x2e\xe6\xf0\xc9\xf7\xbb\x8d\x90\xc5\x72\x84\xc5\x02\xbf\xea\xae\x9b\x49\x07\xef\xc5\x95\x6f\x99\xcc\xb5\x2c\x37\x29\x9a\xef\xf3\xef\x89\xf0\x29\xd4\x05\xa5\x7b\x16\xd9\x94\xbb\x4e\x5c\x89\x75\x51\x89\x38\xc6\xbf\xb3\x7c\xb3\xb2\xbf\x49\x84\xbe\x2d\x11\x4b\xb3\x11\xce\xf1\x4b\x23\xe9\xff\x55\x71\x31\xfb\xe7\x8f\x3a\x26\x7b\xa2\x7f\x3f\xe9\x18\x62\xaa\xfa\x65\x5d\xad\xcb\x62\xa9\xf8\xd8\x41\x74\xf6\x44\x0b\x46\x70\x30\x7c\xc2\x9f\x28\x20\xd9\xb0\x69\xb9\x37\xe6\xf1\xaf\x8a\xb2\xcb\x3d\x28\x8e\x5c\x98\xfe\xec\x52\x07\xd3\x01\xac\xba\x9e\x1b\x47\x9b\xbc\xa8\x5e\xe2\x3a\xc5\xc3\x1d\x89\x3e\x3a\x9b\x4f\xb3\x26\xe1\x9e\x28\x58\x03\x90\x4e\x47\x0d\xa0\xab\x14\x69\x3e\xe5\xd1\x29\x82\xaf\x66\x58\xdf\x1d\xaf\x75\x04\x2d\xff\xd8\x0b\xab\x9d\x1d\xf1\xbb\x23\x7c\xcb\xf5\xe9\xaf\x6d\xc3\xc9\x84\x57\x45\x0a\xf0\x6b\x5e\xa1\x03\xfe\xcb\x7a\x57\xae\x40\xa1\xb9\x2e\xaa\xd5\xf1\xa6\x5e\xed\x4a\x61\x70\xed\xa4\xf8\x6d\x57\x48\xb1\x3a\xbe\x7a\x40\xe7\xfc\xe4\x53\x3e\xa4\x7b\xa8\x8e\xe3\x8f\x2b\x79\x33\x5b\x89\x6d\xc3\x96\xbc\x99\x59\xb5\x3b\x5b\x73\x9d\x16\x3a\xf7\x96\x4e\xdb\x77\xc3\xe7\xe7\x37\xcf\xed\xf3\xf9\xcd\x74\x4a\x23\x71\xbf\xad\xa5\x6a\xe0\x54\x9d\xde\x64\x8b\x75\x7a\x93\xf1\x5d\x12\x99\xd2\x85\xe1\x2a\x81\x3f\x15\xd1\x41\x2c\x77\xf2\xc0\xd2\x57\xbe\xac\x29\xdb\xed\xf5\x72\xa2\xd7\x34\x3d\xce\x56\xdd\x60\xbc\x83\x39\x13\xc7\xde\xbb\xce\x37\x02\x4d\xf1\xe3\x38\x4a\x51\x55\x65\x43\x32\x5d\x88\xc7\xfd\x4c\xd5\xe8\x01\x87\x2b\x86\x79\x49\xdb\x96\x18\xfe\xbe\x57\x7a\xc2\x78\x3f\xe1\xea\xa5\x93\x4c\xf1\x32\x38\x0c\x9a\x5d\x5e\x96\x75\xbe\x12\x16\x99\x8f\xa3\x79\x92\xd1\x09\x12\xc4\x67\xa9\xc7\x42\x8f\xc4\x01\x8e\xa6\xc7\xfd\x91\x5c\x90\x0a\x3a\x85\x2b\xbd\xd0\x39\xd5\x31\xe0\x56\x40\x78\x9a\xf9\x2f\x00\xbc\x45\x64\xbc\xda\x33\x32\x0e\xae\x65\xb6\x17\xbd\x34\x1a\xb1\x9b\x2b\x06\x97\x98\x63\xd1\xbf\x40\x09\x8f\xe8\x44\x69\xdb\x7a\x8f\xd3\x6e\xac\xef\x99\x9a\x5d\x8a\xfc\xc3\xa5\xde\x3b\x79\xc1\xba\xb6\xe0\x8f\xd8\x37\x89\x60\x66\x14\x24\x8a\x49\x71\x5d\x34\x4a\x3e\x24\x85\x31\xb4\x16\x5e\xeb\xcd\xf0\x03\xa6\xfc\x30\xf3\xed\x9e\x50\x26\x48\xf4\xff\x13\xba\x4b\x4e\x4f\x80\x3c\xa2\xca\xcb\xe6\xf4\x4a\xd6\x77\x8d\x90\x27\xa2\xba\x2d\x64\x5d\xe9\xd5\x3f\x62\xa9\x1b\x90\x59\x70\x55\x17\xed\x1a\x71\xac\x17\xc1\xa5\x8a\x8e\x84\xae\xf8\x97\x6f\xbe\xe3\x42\xaf\xca\x85\x14\xeb\xfa\x1e\x7e\xbf\xbc\x91\xf5\x46\x9f\xb9\x76\x8d\x90\x2f\xae\x45\xa5\x97\xab\x9b\xa2\x51\x35\x2c\x26\x56\x5b\xcc\xc5\xec\xce\x2c\xde\x30\x12\x50\xa1\xc1\x07\x1a\xd2\x46\x94\x6b\x07\xfa\x8c\x0f\xfa\xdf\x19\x0e\x07\xce\xcd\xb8\x18\x1f\xce\x3f\x9b\xa1\x0e\x5f\x78\xec\xfc\x9c\x73\xfb\x6a\x90\xa1\x95\x67\x5d\xa6\x5d\x00\x24\x63\x1f\xb9\xff\x66\x90\x8a\xad\xa6\x4b\xa5\x0b\x80\x54\x5c\x33\xf8\x6f\x06\xa9\x98\x66\x73\x89\xb8\x67\x48\xc3\x36\xaa\x17\x3e\x48\xa1\xca\x6f\x8b\xeb\x5c\xd5\xd2\xa5\xe1\x85\x40\x2a\xee\x99\x07\xef\x06\x82\x88\x7b\xd7\x75\x6c\x37\x08\xd4\x91\x81\xe9\x59\xe8\x34\xc1\x7f\xf0\xc8\x75\xb0\x3c\x32\x68\x33\x8b\xa0\xea\x36\x96\x6b\x8a\x0a\x95\xf5\x36\x9e\xa9\x94\x8d\x66\x6b\x5b\x40\xac\xda\xc6\x1a\x29\x56\x12\x7d\xfb\x50\xdd\x1f\x13\x10\x9d\xeb\x95\xa0\x7a\xb4\x76\xa3\xb1\x3e\xc2\x6d\x68\x32\xd1\xb2\x95\x9d\x98\x72\xb6\x84\x81\x8b\x80\x89\xf5\x56\xc8\x9c\x1e\x79\xe3\x39\x87\xaf\x1a\xfc\x6a\x6c\xac\x7d\x53\x35\x2a\x2f\x4b\x83\xbb\x76\xe4\x4f\x8b\x66\x7f\x60\xfa\xe9\x21\x59\x97\xc2\xac\x07\xde\xc4\x63\x36\xf2\x4a\x5c\xed\xae\xfd\xc7\xad\x14\xcb\x5c\x89\xd5\xc9\x5a\xe4\x6a\x27\x45\xd3\x3b\x71\x83\xc3\x6e\x38\x51\xed\x6a\xe5\x4d\xb4\xea\x48\xce\xbe\x7d\xf3\xd5\x57\xaf\xde\xc2\x6d\xc6\x63\x59\x5f\x0f\xee\x85\xad\x14\x24\xb8\x29\x26\x9d\x95\xf5\xb5\xd9\x65\x84\x47\x32\xb4\x67\x77\xb9\x1c\xa0\x0b\x8d\x7d\xaf\xe3\x8d\x26\x80\x46\xe1\x9f\x90\x02\x44\x1c\x4d\xa2\xa8\xd6\xf5\xa7\xa4\xa0\xe3\x8d\x26\x00\x4d\x3d\x48\x81\x39\x7d\x91\x49\x61\x06\xf1\x16\x44\x75\x49\x42\x88\xdd\x7e\x7d\xf6\xa5\x4f\xca\x37\x6f\x1a\x11\x5e\xfe\x1f\x2a\x3a\xc6\x1c\x4b\xc4\x88\x89\x05\xaf\xbc\xfe\x2e\x3e\x32\xec\x54\x5e\xe8\xb3\xff\xd8\x90\xf3\x22\x82\x26\x74\xf4\xcd\x4e\x15\xe5\xe1\x61\xba\xad\xcb\x87\x75\x51\x96\xc3\xc1\x89\xda\xad\xde\x00\xdd\xca\xe2\x36\x57\xc5\xbf\xc4\x18\xb5\x5c\x3a\xcf\x58\xc5\xaf\x53\x95\xa1\xa3\x8c\xdd\x8e\xed\x62\x61\xcf\xc5\x49\xa4\xa5\x84\x42\x47\xcf\x79\x91\x9e\x39\x85\xb8\xfe\x94\x93\x39\x93\x48\x9a\x54\x51\x52\x4f\xa3\x24\x9a\xe6\xd3\xe8\x24\x9a\x5e\xe9\xd1\x37\x7b\xfd\xe2\xe5\xbb\x37\x6f\x7f\xbd\x7c\xfd\xe6\x2d\x17\xb3\x97\xb6\x7d\xb8\x98\xbd\x35\x7b\xae\x3f\x7b\x6a\x3e\x26\xe3\x8a\xae\xd0\x43\x92\x07\x0f\x02\xd7\xbd\x4c\xcf\xb2\x85\xff\x90\x3c\xee\x8f\x0c\x38\xb6\xc9\xd3\x40\xfd\x40\x37\x70\x85\x7f\xd1\x44\x0a\x5f\xa0\x2d\x0e\xd4\x6d\x55\x40\x29\x72\xf9\x40\x89\xc2\x17\xc6\x98\x0a\xa3\xae\x73\xbd\xf1\x3d\x7c\x97\x57\xf9\xb5\x90\x2f\x0f\x7d\x38\x12\x2d\x48\xa6\x68\xbe\x14\x8d\x92\xf5\x83\x58\xf1\xc9\x59\x2f\xac\xa8\xae\xf9\xe4\x6c\x6f\x78\x32\xd1\x87\xd7\x87\xe4\xa9\x66\x65\x5d\x7f\xd8\x6d\xc7\x6d\xcc\x77\xc6\xc6\xd8\x6f\x81\x59\x55\xcb\x0d\x00\x0c\x01\x9c\x33\xdd\x33\x2d\xbc\x41\x66\x7e\x1f\xdc\x58\x00\xf0\x61\x71\xe6\xfa\x93\x75\x51\x41\x22\x5f\x0e\x3f\x5d\x8d\x7e\xaa\x6b\x07\x5f\x02\xe2\x56\x68\xfe\xd3\x8b\xd8\xb6\xc4\xbb\xd0\x21\xb6\x28\xd6\x1e\x7b\x14\xcd\xce\x58\x51\xe9\x31\xed\x38\x13\x47\x5a\x5e\x1f\xfa\xb5\xc4\xec\xe2\x2c\x5d\xa8\x6d\x85\x38\x76\x3f\x09\xa5\xfb\xdf\x6b\x42\x0a\x2d\x08\xe3\xe8\x9b\x4a\x4b\x0a\x7a\xdf\x3d\xbc\xf2\x20\x46\xe4\x9b\x9f\xbf\x7f\xf5\x36\xf3\xc0\xe2\x98\x80\x46\xc5\x02\xbf\xae\xe5\xc8\xb4\xfd\xc3\x33\x80\x99\xd3\xc3\x68\xf1\x11\xfc\xcd\xf0\xe4\x80\x49\xaf\x43\x2c\xed\x8e\x20\xee\x4b\xb4\x65\x02\xe8\x95\x6f\x61\xdc\x21\x57\x88\x5d\x41\x1c\xb8\xb7\xd0\x4b\xc0\x9e\x50\x1f\x66\xc7\x1b\x98\xc8\x99\xd8\x25\x7b\x2d\x0c\x7a\x07\x51\x2c\x6a\x8a\xea\xba\x14\x0a\xdc\x46\xdc\xe7\xcd\x27\x7f\x5e\x68\xa1\xa1\x52\x45\xae\x84\x9f\xc0\xce\x1f\x2c\x83\xa6\x7c\x36\xda\x94\xcf\xfc\xa6\x7c\x06\x4d\x59\x71\x00\x3f\x98\xc8\xae\xc5\x64\xd0\x62\x95\x5f\xb0\x61\x73\xa9\x0e\x42\x55\x57\x42\xce\x5c\x6d\x3b\x8a\x36\x1c\x92\x55\x78\x56\x77\x17\x10\xc5\xbe\x6f\x10\xdc\x43\x39\x2a\x8d\xcc\xd2\x7d\xee\xdd\x5f\xe8\xc0\xf1\x03\x9e\x5e\xcb\x5d\xcb\x1d\x79\x0d\xed\x95\xd1\xb8\x40\x57\x71\x8c\xdd\x19\xc7\xd8\x2f\x7b\x43\x1e\xe8\x01\x32\x9b\x69\xc5\x0b\x7b\xbc\xa4\x9f\x98\x35\x2b\xfc\x1c\xfd\x82\x54\xe0\x51\x8c\x3c\xe1\x98\xff\xc1\x02\xfc\xdb\xb9\x1e\xae\xb0\x57\xd9\x49\x98\x59\xa8\x28\xf9\xb7\xaa\x83\xf5\xa8\x0c\xce\x6e\x61\xb3\x68\x5b\xcc\x61\xac\x3e\x65\xde\x34\x47\xa8\x8b\x19\x55\xa8\x60\x85\x8f\xcd\x12\x12\x41\x12\x15\xaa\x7a\xbb\x59\x50\xf6\x88\x97\x0f\x2c\x91\xc1\xc8\x1b\xc8\x07\xde\x00\x37\x3e\x6f\x44\xd1\xde\x60\x7d\xb4\xdb\xba\x2e\xeb\x86\x08\x40\x29\x54\x1d\x14\xdd\x81\x8c\x79\xcd\x6a\xaf\xb8\xcb\x61\xc3\x9a\x15\xb6\x39\xea\xb9\x08\xfb\xef\xf4\x22\xeb\x34\x49\x05\x9f\x9f\x17\xcf\x95\xa3\x8e\x9d\x4e\xcd\x8d\x0e\x07\xb8\xc3\x86\xd7\x60\xc6\x2a\xa4\x7a\x60\x25\xaf\x11\x5c\x74\x5d\x08\xc9\x96\xfa\x09\x66\xf9\x51\x95\x36\x19\x5f\x2e\xf4\x22\x52\xb2\x47\x0c\x4c\x96\x7b\x9a\x40\x08\xd5\x82\x50\xf3\xe5\x43\x95\x6f\x8a\xa5\x5e\x35\xbb\x27\x3e\xc9\x21\x86\xdf\x09\xeb\x70\xdf\xb2\x8d\xa9\xd7\x16\x4f\xf2\xf2\xec\x0f\x0e\x68\x64\xba\x0a\xdb\x6b\x19\x97\x6d\x32\x39\x73\xac\xc5\x1d\xa6\x57\x1c\x2f\x0d\xff\x98\x47\x1e\x85\x81\x40\x9d\x5c\xc1\xb0\xd3\xcb\xe9\xbb\x87\xad\x70\xbb\x59\x43\x2a\x8a\xc1\x5e\x90\x1e\xa4\xae\x46\x37\x7a\x97\xb2\x0d\xae\xec\x12\xc6\xa4\xd5\x30\x7d\x10\x0f\xfa\x0b\x56\xf1\xf9\x79\xd5\xf1\x7e\x56\xb6\x2f\x0a\xae\x52\x99\x56\x59\x76\x54\x74\xbb\x70\xd1\xed\xc2\x5e\xe3\xad\x8c\xed\xf9\xb8\xb4\x85\x62\xd5\xe8\xe8\x3a\x10\x79\xef\xcb\xa6\x78\x8e\xdd\xc2\xa0\xfd\x59\xe4\x1f\xbe\xcb\xb7\x47\xa1\x24\xbb\x85\x18\x9b\x43\xd2\xaa\x5d\x89\x51\x94\xec\x64\x5e\x5f\xe8\x14\x66\xc7\xc7\x38\x7a\x5a\x73\x65\x04\xca\x5d\x59\x82\x62\xde\xbc\x74\xfb\xf4\x0a\x42\x2b\x66\xae\xf2\x57\xe2\x9d\xd1\x19\x3a\x38\x70\x90\xa0\xba\x09\x60\x82\xb7\x1d\x31\x05\x22\x03\xdb\x31\x37\x90\x23\xa5\x53\x43\x8e\xdc\x72\xb8\xa9\x36\xc8\xdf\x22\x39\x06\x65\x0a\x2b\xdf\x2d\x16\x9b\xfc\x83\x8b\x44\xba\xda\x87\x75\x37\xee\x76\x41\x8a\x7b\x26\xcd\x7a\x3e\x10\x8b\x8c\x80\xe2\xad\x0b\xfe\xae\xd7\xf1\x6b\x93\xb0\x50\x63\xed\xab\xcf\x3a\x95\x9f\x92\xe4\x35\xab\x82\x89\xdd\x6f\xe6\x1a\x5b\x34\xe7\x32\x58\xfe\x04\xf8\x8f\x93\x39\x2b\xf4\xf9\xb2\xb8\xae\x28\xe0\x73\x31\x5d\xb9\x49\x57\x71\x53\x27\x3a\x58\xd4\x5f\xe7\x45\x29\x56\xc7\xaa\xb6\x8b\x7a\x5e\x1d\xe3\x96\xb2\x14\xc7\xf5\xfa\xf8\x3f\xa2\xe9\x48\xf9\xa7\xd1\x7f\xcc\x8e\xbf\xab\x1b\x75\x5c\x16\x1f\x44\xf9\x00\x5f\x6d\x70\x6d\x2b\x1f\xcc\x85\xc9\xea\x18\xb2\x3e\xae\x25\x26\x8a\x40\xba\x46\x0f\x8f\xe7\xd6\x59\x44\x8f\x46\x2e\x5c\xbc\x72\x5f\x16\x55\xa1\x5e\xe3\x14\x5b\x1c\x08\x47\x59\x3d\x09\x1a\xa5\x13\xb1\x00\x12\xa1\xdf\x40\x39\xa5\x8c\xcc\x19\x9a\x67\xe9\x29\x42\x49\xee\x4d\x1c\x63\x79\xda\xf0\x41\x0b\x92\x4e\x65\x8f\x23\xde\x0c\x77\xd6\xa0\x14\xca\x6e\xf9\xe9\x3f\xd2\x7f\x24\xd9\x34\x81\x7f\x9f\x9c\xb2\x87\x03\x33\xd8\x1a\xf0\x0f\xef\x78\x47\x25\xc4\xb9\x2f\x21\xce\xbb\xe3\xe6\xda\xea\xc0\x85\xfb\xe9\x1f\x32\xcd\xb6\x89\xab\x3f\xfe\x0c\x5f\xc3\x8c\xc9\x71\x90\x0d\xd6\x2d\x11\x46\x08\x0e\x93\x97\x2a\x58\xb9\x0f\xad\x90\x18\xb7\xf8\xc4\x78\x65\x27\xc0\xe2\x52\x3a\x76\x9d\x80\x51\xdd\x90\xfc\xd8\x9a\x6b\xe2\x9a\xaa\x7f\x42\xcc\x75\x5e\x94\x17\x42\xc1\xba\x7c\x21\xcc\x6a\x79\x69\x08\x4f\x3e\xfe\xa9\x6e\x8f\x37\x1f\x8d\xb8\x77\x64\x7c\xfd\x45\x51\x79\x4b\xf8\xd8\xf5\x85\xb8\x3b\xae\x1d\xd7\x2e\xa0\xc8\xeb\x6e\x09\x22\xff\x5f\x3a\x73\x04\xb3\x5d\x9f\xda\x82\x76\x99\xe1\x69\x56\x6f\xd3\xc3\xf1\x93\x56\x19\xef\xb5\x98\x0e\x92\xba\xc0\xbb\x6a\xa4\xc8\xf6\xbc\x79\x28\xd3\x4f\x1a\x0d\x1e\x97\x66\xaf\x38\x2a\x0b\x5e\x06\xa3\x60\xf0\xd2\x16\x58\x65\x6c\xb4\xc6\xca\xb4\x3b\x24\x71\x00\xad\x7a\x5c\x7a\x52\xc1\x8a\x0d\x97\x68\x46\xd8\x6b\x5b\xef\x44\xa7\xa5\x7e\x38\xd3\x1d\x3a\xca\x99\x63\x95\xb1\x89\xe7\xa2\x57\xa1\xde\x29\xae\x03\x7e\x41\xef\x2c\x57\x9f\x9b\x5c\x4b\x59\x36\xb5\x6e\x59\x00\x63\xf6\xee\xd1\x09\xdc\x95\x5e\x0d\xdd\xe1\xce\xc5\x0a\xfb\xdd\x8f\xb2\xf0\x32\xcb\x57\x68\x8a\x3e\x28\x2b\x2f\x1c\xdc\x9e\xaf\xf7\xe8\x69\x8c\x02\xd1\xdb\x5c\x81\x04\xab\x1e\x08\xe4\x56\x77\x60\x03\xa9\x2d\xbb\x51\xb6\x4a\x4f\xd9\xda\x81\xc9\x82\x4f\x8c\x68\x96\xb2\xb8\x1a\xf3\xc7\x3e\xf6\xb3\xeb\xda\x28\x78\x34\x1a\xb1\x2f\x05\x3a\xa6\x14\x75\xb5\xf8\x9d\xf7\x44\x20\xcb\x4a\xbf\x1e\x8b\xe0\xc9\x95\x4b\x47\x17\xba\xa0\xae\x5d\x5e\x5b\xc1\xed\x0f\x96\xd8\x25\xb4\x38\x10\xfe\x89\x25\x1c\x14\x68\x58\xd4\x83\x76\xfb\xbd\xa5\x1b\x78\x6f\xc9\x81\x37\xbd\xb5\xc1\xcb\x0d\xe6\xa3\x2f\xe8\x8d\x2b\x26\x3f\xa5\x51\xfc\x54\x16\x87\x5f\x21\xc5\xf7\x27\x34\xce\xf0\x23\xe1\x84\x5e\x02\xe5\x0e\xef\x9d\x2d\x0b\xb7\xd1\x4e\xfe\x4d\x4b\x4a\x7e\x4d\xad\xc6\xc0\xde\xd3\xc5\x71\xa7\x46\xeb\x4d\x1b\xfb\x42\x9f\x80\x20\x9e\xa7\x31\x32\x4a\xf0\x83\x4a\x9d\xfe\x29\x4e\x74\x87\x6e\x77\x12\x95\xcc\x25\x98\x54\x7b\x7a\x70\xee\xa2\x51\x96\xb2\x54\x61\xaf\x6b\x09\x98\x9f\x7d\x7b\x8f\xde\xbe\x09\x1d\xae\x3f\x73\x7a\xb6\x91\x2f\x83\x5d\xa3\xf7\xf5\xd1\xe0\x1c\x71\x70\xdd\x50\x61\xc8\x30\x4b\x02\x27\x04\xaf\x12\xa3\x9b\xed\xa1\xbd\xcb\xee\x27\x72\x50\xa3\x4f\xd9\x00\xad\x22\xd5\xdb\x96\x06\x55\x93\x07\xab\x26\x0f\x56\x0d\xea\x24\x83\xf2\x1c\xae\x95\xcb\x5c\x64\xfd\x2d\xac\xfb\x9d\x2a\xe7\x5b\xa9\x7f\x1f\x59\x75\xcf\x98\x7a\xc1\x16\x2c\xe8\xb4\x2a\xa3\xbd\xf4\x16\xfa\x9f\x4f\x99\x67\x9d\x36\x16\x26\x99\xf5\x50\x40\xa4\x87\x11\x15\xb9\xb5\x07\x0c\x0b\x77\x4e\xc6\xe4\x59\x7f\x55\x1a\xbc\xe1\x69\x46\x0d\x10\xfc\xa3\x55\xe9\x24\x8a\x39\x85\x0e\x18\x34\x33\xd5\x1d\xe0\x0e\x89\x06\x61\xbf\xa3\x26\xf5\x04\xfd\x05\x7c\x52\xb1\x80\xe0\x36\x28\x8d\xd1\xb2\xd8\xfb\xb4\xfe\x38\xb2\x75\xeb\xe4\xef\xb4\xe8\xea\x15\x84\xfe\x6e\x9d\x2a\xac\xd3\x87\xaa\xbe\xab\xc6\x66\xa5\xd3\xca\xb0\x8a\xd5\x87\x44\xe5\x3c\x54\xd4\x0c\x84\x36\xca\x1a\x3e\x3f\x6f\x9e\x5b\x6f\xba\xf3\xc6\x6a\x6e\x76\x3c\x4f\x9b\xec\x68\x17\x76\x1e\xc7\x33\x70\x9d\xee\x32\x3e\x99\xd3\xfd\xc8\xaa\xff\x91\x39\xef\xd7\x05\xa6\xc6\xa7\xec\x16\xfe\x47\x20\x7f\x1c\x7e\x0d\x69\xf6\x0f\x9f\x8a\xd5\x66\x71\xec\x2d\xf5\x63\x1b\xe6\xad\x65\xab\x30\x73\xd6\x3b\x70\x1d\x5a\x11\x0b\x7f\xa4\x5a\x56\x93\x7e\x63\x04\x13\xdd\x9f\x50\x9e\xe2\x4d\x58\xf9\xcb\x88\xad\xd6\x08\x01\x20\xd0\x64\xa2\xac\x05\xaa\xec\x20\xbb\xec\x52\x17\x6a\xf5\x3e\xba\x78\x7f\xf3\xbf\x2a\x6e\x4f\x7d\xf8\x47\x8b\x3c\x90\xb9\xff\xb8\x30\x31\x48\x6a\x71\xe8\xfa\x44\x0c\x4f\x38\x70\x09\xae\xb2\xa3\xba\x6d\x09\xfe\x1c\x3b\xf3\x50\x63\x04\x53\xb5\xad\x64\xcd\xd0\xda\xd2\x02\x2e\x1c\x37\xc6\x1e\x53\x7c\xa4\x78\x21\xad\xc4\x31\x18\x67\xee\x0e\xcb\xe4\x87\xc4\x0d\x4f\xd2\xf8\x24\x19\x69\xfc\x7e\xcf\x80\x97\xc3\x85\x9e\x77\x7d\xff\x00\xf5\xb8\x3e\xb4\xa8\x5c\x71\x12\x45\x53\xf0\x5d\x90\x79\xb5\xaa\x37\x84\x4e\x3b\x66\xaa\x0e\x86\x3b\x9a\x01\x23\xf8\x21\xcb\x8a\x03\x76\x74\xff\x86\xfd\x4e\xcf\x38\xc2\x69\x7b\xa4\x37\xa3\x01\x76\xa5\x67\x00\xb7\x10\x76\xf3\x02\x90\xa7\xfe\x10\x74\xdf\xd6\xe6\x44\xb1\x67\x80\xdc\x32\x18\xaa\xf4\xd1\xc6\xe0\x42\xc7\xb9\x16\xea\xd5\xf7\x7f\x1b\x03\x0d\xd0\x6f\xf5\x2b\x61\x61\xfb\xb9\x30\x50\x23\x81\xa5\x11\x2b\xb8\x24\xa4\x1a\x5a\xf6\x61\xdc\x38\x76\x90\xd9\xdd\x49\xad\x73\x31\xa9\x4c\xad\x68\xdb\xca\x21\xc5\x54\x67\x0f\x38\xfe\xde\x9a\xba\xe2\x5f\xda\xb6\x63\x86\x5b\x9e\x01\x73\x1c\x7b\x0f\x6d\x5b\x89\xbb\x63\x6b\x70\x4e\x22\x6f\x03\x8d\x28\x0c\x2e\x53\xdb\xa2\x6f\x14\xf2\xff\x27\xef\x5f\xbb\xdb\xb6\xbd\x7d\x51\xf8\xbd\x3e\x85\xcd\xdd\xa1\x3f\x31\x0c\xab\x72\xda\xbd\xd6\x7a\xe4\xa2\xfe\x3b\xb6\x92\xb8\xf5\xad\xb6\x93\x34\xd5\xd0\xd6\xa2\x25\xc8\x42\x4d\x81\x2a\x08\xd9\x71\x25\x7e\xf7\x67\x60\xe2\x42\xf0\x26\x3b\x69\xbb\xf7\xd9\xe7\xf4\x45\x63\x91\x20\xae\x13\x13\x13\xf3\xf2\x9b\xfe\x7e\xf7\x98\xc7\x8a\xcd\x81\x1c\x7a\x14\x1b\xc2\xe8\x51\xac\xe7\xba\x47\xb3\x9e\x7b\x2d\x3b\xe6\xaf\xf5\x3a\x2f\x09\x0c\xc6\x3e\x34\x1f\x49\xb3\x52\xeb\x35\xcd\xb2\x90\x61\xa6\x7d\x6e\x55\xd7\xec\x92\x58\x67\xb7\x55\xff\xfc\xf0\xf5\x69\x7f\x74\x71\x79\x73\x72\x71\x7e\x78\x3a\x7a\xd3\x3f\xbc\x79\x7f\xd5\xbf\xee\x6d\xef\xe1\xfe\xaf\x37\xfd\xf3\xe3\xd1\xe5\xd5\xc5\xcd\xc5\xcd\xa7\xcb\xfe\x75\x6f\xa5\xf3\x39\x6d\x77\xb1\x1d\xbf\xfa\x5b\x5f\x3f\x7a\xdb\xdd\x0c\x9f\x5e\xbc\x1d\x5d\xdf\x1c\x1e\xfd\x7c\x73\x75\x78\xd4\x1f\x5d\x9c\x8f\x8e\xfb\x97\x57\xfd\xa3\x43\x55\xbd\x2a\xab\x0a\x7c\xe8\x5f\x5d\x9b\x9f\x57\x87\x27\xd7\xd5\x62\x7b\xf8\xfa\xe6\xea\xfd\x91\xea\x08\x34\xff\xe6\xe4\xb4\xaf\x9e\x8e\x0e\x2f\x2f\x4f\x4f\x74\xa9\xd1\x4d\xff\xec\xf2\xf4\xf0\xa6\x3f\xfa\x78\x75\x78\x79\xd9\xbf\x52\xd5\xe5\x0f\x2f\xce\x4f\x3f\x8d\xde\x9e\x9e\x9c\x9d\xf5\xaf\x46\x47\x17\x67\x97\x17\xe7\xfd\xf3\x1b\x18\xd6\xe8\xa7\x5f\xde\xf7\xaf\x3e\x8d\x4e\xce\x6f\xfa\x6f\xaf\x5c\xcf\x46\xc7\xfd\x37\x87\xef\x4f\x6f\x46\x87\xd7\x9f\xce\x8f\x46\x17\xaf\xaf\xfb\x57\xaa\xa7\xf0\xc9\x55\xff\xaa\x7f\x7e\xdc\xbf\x1a\x9d\x5e\x5c\x5c\x8e\x4e\x4f\xce\x4e\x6e\x7a\x7b\xf4\x3b\xdc\x3f\x7b\x0d\x0f\x0f\x8f\x47\xef\x2e\x2e\x7e\xbe\xee\xad\x32\xec\xa6\x70\x95\x65\x2d\xbd\x17\x22\x5c\x8a\x01\xae\x90\x24\x75\x22\xb7\x27\xef\x98\xcc\x5d\xa0\x65\x99\x45\xe9\xc5\x23\xbf\x34\xe2\x13\x20\x41\x06\x95\x05\x0a\xf4\xe1\x14\x94\xbb\x05\xcf\xad\x68\x18\x0d\xc4\xb0\x05\x71\x64\xfc\x40\xfd\xad\xb1\x57\xe8\x40\x0c\x7b\x80\x75\xcd\xdb\xed\x50\x3f\x07\xdf\x95\x81\x18\x6a\xf5\xa2\x3a\x56\x2a\x2d\x96\x4c\xa6\x75\x43\x73\x09\xdf\x08\x43\x51\xb5\x86\x8e\xb9\x63\x6b\x2b\xb2\xf9\x85\x65\xe7\xcd\xfb\xf3\x23\x58\x68\x57\x74\x04\xdf\x2a\xd2\xb9\x56\x5d\xac\xa9\xca\x85\x81\x98\xca\xec\x6f\x84\xeb\x4a\xeb\x80\x13\x53\x14\x7e\xe8\x00\x60\xbd\x6d\xf5\xf3\xd6\x86\x1e\x27\x7f\xb5\x97\xc9\xa6\x7e\x25\x99\xb6\x14\xd0\x4e\x79\x35\x5b\x75\xb3\x9c\xe6\xde\xd0\xc8\xd2\xcf\x32\x07\x8e\x2e\xd3\xcf\x12\xb9\xec\x4f\x83\xe5\xb0\x55\xcc\x39\x06\x31\xfc\x51\xa5\x5d\x25\x09\xc7\x95\x4c\x6b\xee\xfc\xa9\xb1\xb7\xd0\x0c\x69\xda\x19\x13\xda\xb1\xfb\xa2\xb6\xfb\x63\xd7\xfd\xb1\xeb\xfe\x54\x75\x7f\x8c\xc6\xe5\xbe\x4f\x75\xf7\x6c\x7d\x83\xa9\x21\xd5\xf1\x60\x3a\x44\x8a\xe3\x69\x7e\xd7\x3f\xff\xb0\x5e\x33\xb5\xff\x9a\xcf\x65\x21\x12\xb1\x0b\xc9\x6d\x19\xbf\xab\xfa\xdb\x6e\x70\x74\xd7\xe8\xa1\x70\x10\x5e\x18\x6c\xb5\x9a\xb0\x65\x73\x9c\x56\x4a\x50\xb4\x92\xee\x20\x3d\x66\xe9\x22\x92\xe3\xd9\x85\xc1\xee\xab\xa9\x48\x98\x8a\x9a\x8b\xaa\x65\xd0\x35\x26\x1c\x4c\x70\x37\x3a\xa1\xb2\x77\xe6\x0a\xcc\xc9\xea\x8e\xca\x2d\x03\x06\xe7\xf7\x53\x71\xaa\xe2\x87\xbc\x71\xd2\x6c\x42\xaa\xdd\x74\xb9\x50\xf3\xb4\xc1\x4f\x79\xe3\x67\x31\xbb\xfd\x76\x12\xc9\x68\x14\x4d\xa2\x85\x6c\xf0\x28\xad\xff\xcc\xd9\x34\x46\xe0\x62\xea\x6a\x78\xc6\xe9\xd9\x48\xbc\xfa\xac\x77\xf4\x44\x71\x70\x1c\xc9\xe8\xd0\xf6\x62\x45\xf9\x72\x4e\x45\x74\x1b\x03\x60\x6d\x21\x9d\x7f\x3e\x65\xd6\x9f\x36\xcb\x10\x6e\xac\xd7\x99\xe5\x8f\x55\x37\xbf\xac\x05\xe1\xb5\xf0\xf2\xb5\xd8\x34\x3b\x75\x2b\x64\xfc\xf9\xeb\xa6\x5e\x2c\x01\x2a\xf0\xeb\x3c\xc9\x89\x30\xa2\xa8\x0b\xee\xb4\x17\x05\x9d\x0c\x7c\x1c\xf1\xa3\x48\x46\x71\x72\xd7\xe7\x52\x30\x9a\xbe\x7e\x6a\xc8\xf1\x13\xcc\x93\x09\x8d\x03\x6d\x7e\x0d\x24\x9d\x2f\xe2\x48\x52\xf8\x9d\xe1\xf1\x73\x75\xe8\xce\x80\x78\x7f\x88\x42\xd1\x39\x77\x69\xdf\xcf\x0f\xcf\xfa\xd7\x97\x87\x47\xfd\x6b\x84\x99\x2b\x01\x16\xf4\x3c\xcb\x39\xd8\x72\xc1\x4e\xcb\xa6\x4f\x08\x52\x7e\x7e\x13\x78\xd9\x33\xa7\x89\xe8\x17\x20\x3a\xbc\xe3\x9b\x37\x1f\xdf\x1c\xb5\xdb\x49\x8e\xe1\x6f\x02\xe0\x06\x7c\xd8\x0a\xa0\xb1\x80\x10\xdd\x23\xd0\x67\x4d\x51\x18\xa1\x76\x9b\x69\x1d\x0a\x74\x69\x12\xa5\x33\x2a\xd8\x9f\x14\x41\xbe\x5d\x7d\x0b\x49\xd4\x1d\x44\x23\x37\xb3\x2c\x43\xde\xca\x7c\xc1\x66\xae\xee\xca\x2f\x72\x06\x17\x4b\x1e\x27\x10\xf7\x5f\x2d\x3a\xa7\x32\x8a\xff\x12\xe9\x61\xc0\xc0\x79\x09\x01\x46\x24\x29\x13\x20\xe3\xac\xb0\xcf\xb4\xa6\x20\x5d\x2e\x68\x01\xa1\x28\x37\xe9\x58\x4b\x64\x4c\xa3\x94\x9e\x41\xe6\x24\x30\xc0\x26\x40\x28\x1a\x9c\xb1\xb2\xbb\x5d\x78\xb9\x94\x82\xdd\x2e\x25\x3d\x65\x73\x26\x7b\xdf\xd9\xbc\x79\x67\x8a\x9a\x15\x15\xaa\x9d\x5f\xac\xbb\xe7\xea\x56\x2c\x41\x23\x5d\xd7\xe4\xe2\xf2\x7a\xf0\xa8\x0e\x03\xa8\x11\x00\xd8\x1a\x73\x64\x5b\xfb\xeb\x1d\x95\x79\xe9\xd0\xd0\xbd\xae\xac\x45\x43\x5e\xca\x5a\x9a\xbb\xd8\xdd\x83\x93\x4b\x42\x34\x50\xb3\xab\x22\xe4\x98\xc2\xed\xdc\xed\x08\x43\xa3\xa2\x93\xdc\xa6\x54\x3c\xd0\xbc\x28\x35\x49\x6a\x11\xc2\x49\xe6\x14\x0d\x3e\xd4\x4b\xed\x66\xb2\x77\xdb\x50\xf1\x40\x51\x5a\x0c\x03\xf5\x65\x80\xcb\x23\x94\x15\x10\xa1\x4b\x65\x55\xc7\x5c\x49\x00\xfe\x52\x1d\xba\x49\x8e\xd4\xd8\xca\x20\x3d\x95\x38\x27\xe7\xab\x03\xdb\xef\xce\x79\x77\x80\x93\x86\xe7\xf4\x1c\x6a\x76\xd5\x0b\x76\x28\x6a\x51\x25\x8d\x0b\xcd\x3f\x32\x07\xcd\xad\x57\xed\x8a\x8e\x13\x31\x49\xcb\x91\xe8\xcc\x43\x1a\x56\x0b\xb7\xcc\x57\x08\xc7\x46\xb9\xe5\xf5\x3b\xa4\x08\x8f\xdd\xda\x9a\x3a\xc3\x18\x53\xcf\x6d\x79\x0a\xf3\x18\x0e\xa8\x11\xe4\x67\x64\x5c\x59\x68\xeb\x6c\xaf\x97\x2f\xb5\xcb\xa7\x2b\x04\x94\x23\x84\x53\x58\x7c\xfb\x48\xad\xc7\x84\xac\x26\x6c\x72\x04\xd0\x05\xfe\x40\x04\x4e\x70\x94\x33\xc2\x98\x88\xfd\xf8\x07\xb1\x13\xed\xc7\x56\xe7\x3a\x56\xc3\xe2\x1d\x2d\x06\x1e\x4a\xa4\x5d\x10\x67\xa4\xd0\xc6\x18\xb5\x1a\x3a\x34\x86\x0e\xc9\x70\x30\x1b\xa2\x2c\x69\xb7\x59\x28\x70\xa2\xf6\x03\x8b\xe3\x72\x77\x0a\x26\xc2\xcc\x92\x08\x34\x1f\x4d\x26\x20\xf1\x5e\xe8\xca\x05\x0a\xc7\xb0\xe7\xf1\x04\xe1\x02\x6d\x2e\x9f\xa7\x4d\xa8\x50\xd3\x63\xa5\x4e\xa8\xb0\x42\x90\x65\xe2\xc5\x32\x9c\xd5\xf2\x9c\x2a\xe9\xaa\x71\x9a\x50\x83\xbf\xcc\xd1\x9e\x1d\x5a\x86\x27\x54\xd2\x71\x8d\x8c\xb2\xbd\xa7\x98\x60\xbc\x9c\x3b\xd3\xd6\x46\x6e\x55\xe6\x09\x35\xec\x4a\x5b\x1a\x70\x52\x4f\xe9\x51\x85\xd2\x93\x02\xa5\xa7\x6a\x0e\xc2\x01\x14\x2a\x32\x2a\x55\xce\x90\xff\xb2\x81\x68\xa5\x0e\x42\x0a\xf9\x8f\xdd\xf5\x9a\xfd\xd8\x55\xb7\x0c\x75\x04\xa7\xe3\x19\x9d\x2c\x63\x7a\xc1\xc7\x14\x85\x41\xa4\x15\xc2\x81\x26\x94\xf4\x65\x44\xb7\xdf\x40\x6e\xda\x37\x0c\x2f\x51\xc5\x76\xea\x4d\x5f\x03\x59\x45\x98\xe1\x25\xca\x34\x42\xfe\xa6\x39\x15\x95\x59\xa3\xb9\x1b\xb3\xc9\x0b\x8d\xc7\xc9\x92\xcb\x1e\xb4\x76\x47\x25\x0a\x05\x0e\xb4\x9d\x24\x40\x76\x89\x7b\xc6\xff\xd0\x5f\x6f\xb5\x2a\x7a\x13\xf7\x68\x06\x19\x32\xea\x4e\x23\x17\x34\xa7\x57\x37\xef\x50\x18\xd4\x9e\xa1\x5e\xbe\x6f\x22\x3a\x0d\xa2\xa2\xe1\xb4\x01\x3a\x50\x45\x36\xbc\xd7\xfd\x1e\x29\x9e\x0d\x3d\x4d\x2f\xb8\x93\x02\xd5\x21\x48\x1d\x8b\xa5\xe5\xbc\xdd\x2e\x65\x0d\x1c\x80\x3d\x59\xa1\x48\x98\x3d\x80\xbe\x2d\xd4\xd2\x78\x49\x86\x7b\x83\x84\x34\x1b\xfa\x50\x35\xac\xc3\x7c\x98\xe1\x86\x6e\x56\xe1\x79\xb5\x1a\xdd\x35\x9a\x34\x48\xb6\xc2\x3b\xe1\x5d\x17\x2a\x3b\x5e\x96\xa4\x56\xa9\xa4\x56\x59\x27\xb5\x52\xdb\x7f\x39\xe0\x43\x64\xdd\xd0\xc1\x12\xe5\xcb\xa4\xa8\x25\x34\xe7\x4e\x40\x1c\x15\x19\xce\xc9\x6f\xb3\x44\xe3\xd8\x7f\x4d\xd2\x87\x95\x23\x35\xdf\xbd\x4d\xd1\xe3\x87\x28\x5e\xd2\xb4\x44\xe8\x47\xde\x2b\x30\x31\x74\x52\x1a\x89\xf1\xec\x67\xfa\xf4\xa8\x3a\x52\x2a\x6e\x1f\xeb\xa2\x7a\x09\x6b\xeb\x7d\xe3\xbd\xd2\x85\xc7\x49\x9c\x94\xb7\xd9\x91\x7a\x06\xaf\xbd\xc1\xfb\x5d\xaa\xce\xc3\x2a\xf3\x8a\xda\xee\x6c\x9c\xae\xda\x3e\x3d\x53\x31\x74\xac\x86\x55\x69\x0b\x49\xe1\xa0\xad\x29\xe5\x3d\xc9\x8a\x97\x8c\xa8\xe9\x92\x71\x17\xb3\xf9\xbc\x7c\x93\xe0\xc9\x84\xee\x6a\xa7\xdd\x00\x07\xf0\xcd\xee\x6d\x74\x4b\xe3\xba\x78\xd1\x8d\x17\x0f\x53\xfd\xb7\xc9\x62\xac\xea\x1c\x27\xf3\x05\x8b\x1b\xd4\x09\xf6\x62\xf1\x82\xe0\x55\xef\x26\x63\x5b\x10\x74\x4a\x05\x85\x5c\x8d\xcf\x5f\x6f\x5c\xf0\xab\xfb\x3a\x6f\xdb\x3e\x52\x4d\xd6\xd6\xf5\xc0\xe8\x63\xfd\xb0\x6b\xb1\x19\x6c\x39\x06\x58\x06\x0e\xba\xd7\xbb\x6b\x51\xf1\xc0\x1a\xfa\x5d\x5b\x53\x7e\x39\xb3\x7d\x7d\x64\x82\x02\x6e\x76\x24\x6b\xab\xf1\xc2\x87\x03\x91\x3e\x14\x26\x4e\x2d\x76\xfd\x7a\x24\x4b\x59\xb8\x04\xbe\x24\x94\x1d\x17\x90\x50\xf3\x6c\xd2\x78\x8e\x1f\xf0\x13\xbe\xc3\xb7\x78\xa4\x53\x07\xe2\x6b\x7c\xd1\x64\x3a\x3b\x0c\xd1\x0a\xc0\x1f\xb6\x28\x39\x09\x07\x81\xa2\x9b\x84\x53\x2e\x7b\xbb\x86\xa2\x83\x3c\x43\xfc\x61\x1d\x70\x52\x86\x69\x1e\xd4\x71\x5f\xaa\xce\x2a\x2a\x1c\x3d\xf6\xe6\x11\xe3\x5e\x95\xf7\xcf\x56\x79\xf3\xa5\x55\xde\x3c\x5b\xe5\xd1\x97\x56\x79\xf4\x6c\x95\x67\x0d\x55\xf6\xdc\x84\xa6\xdf\xd6\xcc\xe8\xd9\xb3\x15\x5f\x35\x55\xbc\x2b\x92\xc4\xaf\xea\xea\xd9\xaa\x2e\x5f\x5a\xd5\xe5\xb3\x55\xfd\xfe\x25\x64\xf3\xfb\xb3\xd5\x1d\x7f\xdd\xec\x1d\x3f\x5b\xf1\xf9\xd7\x55\x7c\xfe\x6c\xc5\x27\x45\x94\xb5\xf5\x1a\x52\x20\x1a\x98\x6b\x84\x30\xed\x88\xe8\x91\x48\x4c\x41\xda\x3e\xcd\x37\xdc\x9b\x92\xdf\xf9\x9f\x21\x1c\x64\xb6\x63\x26\xe8\x02\x81\x07\x26\x75\x8f\xc9\x1b\x4c\x3b\x33\x1a\x2f\xa8\x20\x7f\x60\xda\xa1\xe9\x38\x5a\xd0\xfe\x67\x00\xc4\x2b\x3a\x40\x15\x6e\xee\xdb\xde\xcd\x9d\x4d\x43\x30\x8e\xcb\xe4\xdd\xcd\xd9\x69\x1e\xe1\xa9\x7f\xeb\x00\x4b\x9d\xcf\x9a\x9a\x97\x41\x00\x21\xb2\xd4\xe5\x51\x35\x2e\x97\xea\x4e\xef\xfe\x86\x44\x88\x4c\x5a\x47\x1a\x57\x6f\x1e\x21\xe8\x34\x73\x12\x47\x12\x20\x05\x66\x72\x1e\x5f\x47\x53\x4a\x52\x89\x69\x87\xa5\xaa\x03\xf0\x7b\xa9\x7e\x8f\x20\xb0\xfc\x8a\xf2\x09\x15\x54\xa4\xfe\x5a\x7c\xb2\xe1\x7f\xa4\xab\xea\x11\x50\xe6\x9a\x4a\x19\xfb\x68\xd4\x68\xa5\xc7\x41\xbe\x91\xed\x76\xf8\x8d\x24\x7d\x7b\x3c\xab\x7f\xa9\x08\x41\xda\x5c\x02\x14\xf0\x52\x08\xca\xe5\xd5\x92\x9f\x26\xc9\x02\x85\x68\xbd\x5e\x76\x6e\xa3\xf1\xfd\xed\x52\x70\x9a\xdf\x7b\xbc\x2b\x0f\x68\x6e\x7f\x96\xb9\xaf\xf3\x37\xd2\xe6\x2c\x37\xb6\x8c\x1b\xbb\x6a\xa5\x55\xa1\xa2\x2c\x4c\x7a\xf3\x25\x06\x74\x68\x0c\x1c\x35\xdf\x7b\xc4\x06\x25\x09\x58\x55\x66\x51\x5a\xdb\x96\x2b\x59\x6d\xaf\xd4\xc5\xb4\x8e\xd2\x45\xa9\x1f\x45\x0f\x23\x6a\x4c\x2c\x29\x95\xcb\x45\x9f\xdf\x31\x4e\x9d\x27\x49\xa1\x9c\x0b\xa3\x08\x03\x75\x92\xf7\x76\x93\xa5\x8c\xa9\x0c\xf0\x31\x87\x0d\xe2\xde\xe6\x8c\xc8\x96\xb8\x82\x12\xce\xd5\xaa\x5c\x41\xae\x00\xc7\xd5\x8f\x4b\x5f\x9a\x43\xbf\xb7\x3b\x49\xe6\xbb\x1a\x60\x52\xc9\x14\x16\x9f\x28\xc0\x7e\x09\xf3\x6c\x53\x15\x52\x50\x75\x50\x18\xbc\x24\x2d\x5f\x3c\x5b\x99\x1b\x6b\xd8\xc5\x8f\x39\xa6\x07\x0a\xcf\x42\x84\xf0\x51\x69\x3e\x5c\x1d\x46\x72\x28\x8a\x39\x53\xb9\xb1\xc6\x23\x55\xe3\x4d\x69\xfe\xca\x85\x6e\x54\xa1\xa0\x28\xf3\xf8\xad\xe8\x03\xb0\x34\x0d\xde\xa4\xe7\xe2\x65\xb9\xe6\xfb\x10\x01\xfb\x2b\x7a\x26\x87\x81\x66\x5e\x01\x5e\x79\x21\xd5\xbd\xed\xbd\xac\x38\x72\x5d\xaa\x17\x27\xe3\x00\xcf\x44\xf1\x9d\x77\xc6\x48\xfa\x59\xee\x4e\x19\x8d\x27\x01\xfe\x4c\x1b\x8b\x8d\x67\x74\x7c\x7f\x9b\x7c\x0e\xf0\x63\x63\xa1\x98\xf1\xfb\x5d\x99\x04\xf8\xac\xb1\x08\xe3\x8b\xa5\x9a\x77\xd1\x40\xb5\xde\x59\x62\x8a\x9e\xf1\xa6\xba\x54\xcf\x23\x41\xa3\x00\x5f\x53\xd4\xba\xeb\xf4\xcf\x3f\x74\x9e\x75\xd8\x58\xaf\x37\xac\xf7\xa1\x5a\xca\x5b\xbd\xb1\x61\x4b\x1e\xe6\x79\x5e\x1a\xf6\x65\x1d\x69\xd7\x92\x5a\xa0\x73\x20\x5c\x2c\xa8\xf1\x1f\x2d\x12\x78\xdd\x66\x28\xd1\x8c\x30\x5c\x3c\x00\x6a\xf3\x3f\xaf\x6b\xb0\x61\x1b\xa8\x96\x6e\x97\x2c\x9e\x00\x01\x69\x57\xbd\xc2\xc5\x38\x7d\x64\x72\x3c\x0b\x69\xe7\x36\x49\xac\x2f\xb6\x3a\x46\x54\xdb\x67\xc9\x84\xa2\xd5\x38\x4a\xa9\xaa\x90\x81\x63\x5d\xd0\x33\xac\xee\x73\xc7\x3d\x7b\xad\x1b\xe8\xdc\x42\x7e\x07\x80\xd0\x83\x8f\x04\x9d\x3d\x4d\x84\x22\x7b\xfb\xd1\xac\x63\x9f\xb1\x84\xd7\x7c\x66\xce\x9a\xbc\xb8\x06\xea\xad\x96\x84\x6c\x53\xcd\x9c\xc6\x0d\x39\xf0\x86\xf5\x92\x8d\xea\x4d\x7a\x5e\x47\x6d\xd5\x1b\x39\xc9\xa5\xa2\xac\x77\xcd\x75\x2b\xa9\xf1\xc6\xf1\x84\xf2\xd7\x57\x86\x11\xe4\xeb\x69\x3f\x85\x2e\x04\xf8\x27\xd9\xf4\x5a\xdd\x9f\x64\x80\x7f\x93\x08\xcf\x0d\x8a\x9a\x12\x5c\x5e\x4e\xb6\xcb\xc5\x24\x92\xb4\x99\x6c\xed\x31\x80\x5a\x8d\xf4\xe6\x4e\x8a\x3a\x7a\xb3\x81\x86\x96\xc7\xb7\x3c\x81\x6e\xd6\x39\xbe\x38\xd3\x9a\xd0\xd4\xa0\x05\x37\x36\x52\x73\x96\xbc\xa4\x39\x2c\x88\x9d\x97\x03\x68\xee\x46\x50\x7a\xe4\x55\xd3\xfb\xdc\x39\x4f\x26\xb4\xe6\x8d\xdf\x53\x03\x66\x9c\x69\x91\x4b\x77\xf0\x2c\x1a\x8b\xa4\x78\xde\xf7\xb9\x56\x62\x69\x16\xc3\xa4\x36\xd9\xbf\x49\x04\x39\xa7\x98\x76\xc6\xd1\x22\xba\x65\x31\x93\x8c\xd6\x79\x22\x7f\x3d\xdc\x93\xd6\xda\x6e\x77\x5b\x36\xa6\x66\x05\x49\x25\x4f\xd9\x94\x1e\x3d\x8d\x63\x6a\x53\x1c\xa5\x3d\x8b\x53\x67\xd2\x4e\xaa\x12\xe3\x42\x09\x84\x01\x81\x00\xf0\x0d\xbd\xd2\xf9\x43\x84\x35\xc9\xbc\x4b\x92\xfb\x9e\xc8\x0c\x2f\x3d\xb2\x6c\xdb\xc0\x0f\xd4\xc5\x72\xb4\x04\xb9\xe8\x38\x56\x3d\x3a\x3b\x3c\x3f\x7c\xdb\xbf\x1a\x5d\xdf\x5c\x9d\x9c\xbf\x1d\x9d\x5e\x5c\xfc\xfc\xfe\xb2\x06\x31\x90\x1e\xf8\x6a\x47\xa7\xc7\xd3\x3e\x8b\xde\x81\xb1\x3b\xd7\x4d\x83\x29\x2d\xeb\x39\xa9\x3a\x16\xe1\xca\xd8\xdb\x7a\x02\x5b\x55\x42\x6f\x7b\xcf\x24\x20\x76\x15\x04\x19\x96\x56\xe8\xdb\x30\x1e\xbb\x5c\x63\xe1\xa7\x94\x05\x18\x21\x5b\x79\xbb\xed\xd5\x0a\x60\xe7\x90\xca\xcd\xe1\x62\xb9\x00\x11\x98\x3b\x93\x31\x5c\xd4\x4f\x5d\xcd\x28\x68\xcd\x28\x4c\x0a\x70\xe1\x0f\xa2\x5c\xf1\x67\x8e\x69\xc7\x16\x3c\xd2\xc4\x58\xa2\xc5\xbc\xc5\x55\x96\x35\xfb\xa9\xe4\xfb\xf6\x85\xce\x29\xfe\x56\xdf\xe8\x01\x53\xb3\x11\xbf\xa4\x89\xf2\xb7\x1b\xdb\x62\xe9\xb5\x39\xd2\x80\xf7\xbd\x61\x22\x85\x8c\x19\x2f\x6e\xb0\xa9\x82\x8d\xad\x36\xb0\x9b\x17\x36\xda\xc8\xae\x34\xf7\xbc\x00\xc1\xfe\x03\xa3\x8f\x84\x76\xc0\x44\x72\x2d\x75\x4c\xfe\xc9\xf9\x87\x8b\x9f\xfb\x84\x76\xde\xab\xed\xab\x1a\xb9\xb2\xda\x49\x42\x3b\x87\xb7\xa9\x14\xd1\xb8\x4a\xf7\xb4\x33\xa2\x9f\x17\x54\x30\x50\x12\xc6\x86\xe9\xd1\xce\x89\xa2\x40\x9d\x44\xdd\x5e\x3f\xe1\x29\x15\xd2\xfb\xed\xfd\xa9\x2e\xad\xc6\x11\x92\x76\xfa\xf9\x19\x44\x68\xe7\x9d\xbe\xad\xd3\xce\xd5\xc5\xc5\xcd\xe8\xaa\xff\x06\xc0\xf3\x4c\x47\x08\xed\x9c\x32\x7e\xef\xff\xbe\xa1\x9f\xe5\xa1\xa0\x91\xf9\x13\x12\xdf\xaa\x4f\x8c\x0c\xab\x2a\xf2\xce\x5b\xdf\xcb\xe3\xcf\x66\xc8\x3d\x13\x14\x30\xd6\x00\xb3\x06\x5d\x44\x55\xcb\x26\x06\x9d\x83\x4a\xd5\xa2\xfa\xc7\xd9\xe6\xf3\xf8\xf9\x26\xb0\x0e\xa9\x6d\x1d\xb9\x03\x40\x29\x0d\xb5\x69\xd1\x46\x55\xd0\x8e\xbd\x2f\xe0\x15\x28\xac\x7b\x32\x33\xb8\x62\xf8\x1d\x79\x13\xae\xd8\xa4\x17\xcc\x7e\x9f\x7d\x7e\x9f\x88\x65\x80\x6f\xe3\x64\x7c\xdf\xfb\xd7\x2a\x48\x9f\xe6\xb7\x49\x9c\x06\xbd\xc1\x10\x43\x26\x13\xc8\xa2\xa0\x7e\x0f\xf6\xf0\xe0\xd5\x7f\x61\x8f\x21\xe1\xc1\xe0\xd5\x77\xb8\x8b\x07\xc3\xe1\x10\xae\xe8\x43\x3c\x8d\xe2\x94\x0e\x87\x38\x98\x45\x69\xff\x21\x8a\x83\x1e\x3c\xc9\xfe\x85\xd5\x70\x7b\x2b\xad\x77\x07\x2f\x94\x60\x11\x8d\xef\xa3\x3b\x9a\x7e\xdb\xa8\xb8\x07\x9f\x20\x2b\xf3\xa7\xdf\x2a\xe1\xa7\x33\xbb\x4d\x03\xad\xfe\x2f\xac\xcd\x3b\x58\x96\xd7\x6a\x92\xd2\x8e\x1e\x04\x0a\x83\xab\xbe\x3a\x26\xde\xdf\xf4\x47\x37\x87\x6f\x03\xed\xfb\xf1\x9e\x44\x9d\x37\x22\x9a\xd3\xc7\x44\xdc\xff\x2d\x9e\x3a\x83\xd7\x43\x12\x77\x8e\x99\x90\x4f\x6a\x3b\xdc\x44\x77\x0e\x41\x2b\xc3\x82\xaa\x09\x5b\x4a\x5a\x6f\x49\xdb\x07\xad\xc8\xef\x09\xe3\x28\xac\x51\x0b\x0c\x5e\x0f\x75\x46\xbf\xce\x44\x55\x0f\x56\x71\x18\xbc\x21\xf5\xf7\xf8\x7d\x87\xa5\xfa\x87\xd1\x63\x91\xed\xae\x12\x0c\x23\x75\x22\xb8\x71\x82\xdd\x10\x85\xef\xf5\x14\x7c\x7c\x86\x7a\x4d\x8f\x1d\xf5\x56\x1a\x78\x09\xdd\x3a\xfe\x6f\xc7\xef\x57\x9d\x95\x21\xee\xfe\x28\xe9\xe8\x3e\x2a\xd9\xc7\xbd\xfd\x90\xbf\x85\xa1\x19\x87\x61\xb5\x09\x0e\x74\x5c\xaf\x96\x74\x9c\xa0\x41\xb5\xc9\xfd\x53\x89\x1e\xde\x5f\x1e\x1f\xde\xf4\x03\x84\xdf\x96\x5e\x68\xa6\x06\xc2\xa9\xe1\x6f\x6f\x35\xd0\x7d\xa9\xdc\x21\x38\x5d\x07\x08\x7f\xd3\x88\x81\x52\x37\x37\x77\xb4\x16\xc3\xfb\x37\x4b\x27\x0e\x07\x03\xf6\xe7\x2f\xc5\x20\x44\x5b\xb9\xb4\x69\xed\xad\x27\x89\x06\x8b\x32\x89\xe5\x91\xce\xa2\x80\x3a\x71\x94\xca\x2b\xfa\xc0\x40\x47\xa9\x71\x51\xe0\x19\x98\xe8\xcc\x83\xcc\xcd\xa5\xe8\x30\x3e\xa3\x82\xc9\xf4\x34\x49\x52\x8a\x20\xff\x1c\x96\x5e\xdf\x1f\xe0\xbb\x5a\xe2\xed\xc8\xe8\xce\xd8\xd6\x0b\xcd\x5a\x43\xbb\x6b\xb6\x55\x8a\x36\x53\x57\x0b\x40\xcf\x81\xc1\x7b\x78\xed\x79\x47\x7d\x6a\x09\x8d\xff\x48\x61\x68\xa6\x67\xa1\x09\xff\xcd\xc2\x6f\x10\xfe\xb5\x69\xe6\x72\xd1\xd1\x86\xed\xfa\x39\xf9\xa5\x9b\x3c\x48\xd6\x28\x28\xaf\xc5\xe5\x10\xcf\x4f\x5b\x0d\xf3\xb6\x87\x3c\x35\x21\x8f\xcd\x54\xe1\xc5\x11\xda\x7e\x34\x04\x80\x87\xd5\x62\xe0\x3c\xfa\x93\x45\x59\x02\x54\x4c\x13\xec\x9d\x85\x71\x07\x0e\x78\x77\x4e\x6b\x2e\xf0\x5b\x33\x99\x39\x12\xae\x65\x7a\x7a\xb2\xbe\x62\x32\x72\xa1\x30\xec\xe2\xb8\xc3\x52\xe8\x16\xec\xe2\x62\x21\x36\x0d\x63\xea\x67\x15\x81\xb1\x81\xf7\x08\x9b\x86\xe3\xf2\xab\x88\x86\x74\x20\x87\x1a\xaf\xd0\x7f\x39\xeb\xbc\x3f\x3f\xee\xbf\x39\x39\xef\x1f\x2b\x71\xa0\x7f\xd5\x3f\x3f\xea\x6b\x20\xc0\xb0\x8b\x27\x80\xe1\x12\x8d\x67\x8a\x6b\xa3\x10\x65\xa1\xa3\x29\x6c\x52\x2f\x50\x9d\xf1\x69\xf3\xba\x79\x3d\xa1\xde\x5e\x96\x59\xf8\x0b\xc2\x3f\x35\x92\xa4\x0b\x9a\xb6\x44\xc9\x6b\xf7\xb3\x4e\xc0\x66\x36\x05\xe6\x0e\x70\xef\x67\xfa\x44\x84\xf7\xfb\x26\xba\x23\x71\x2e\x94\x79\xa7\x50\xd8\xc5\x63\xb5\x55\xdf\x24\xc2\xca\x8f\x48\x23\xb0\x60\xae\x9e\x93\x42\x25\x98\x67\x4d\x6b\x6a\x81\xd3\xeb\xa0\x74\xed\x99\x51\xcf\x28\xbc\x41\x58\x86\xe1\x8d\x23\x77\x8d\x1b\x6b\x27\x20\x3d\xe7\x7c\xf0\xa9\x98\x2a\x13\x0a\xa4\xaa\x40\xb5\xd2\x52\x95\x76\x05\x7e\x43\x98\xd2\xe7\x97\x60\x7f\xe3\xe4\xe7\x02\x6e\x65\x01\x1c\xec\xb3\x62\x85\x09\x79\xc9\x72\xc4\x9d\xa3\x8b\xf3\xeb\x9b\xc3\xf3\x1b\x25\x95\x78\x3e\xdd\x6a\x29\x60\x63\x8c\x93\xf9\x2d\xe3\x14\x85\x03\x86\x93\x21\xfa\x07\x57\xc4\x8d\xac\xbc\x2a\x8a\x10\x44\x65\xa1\xb0\xc7\x76\x31\x73\x50\xfc\xc5\x4c\x41\x84\xb5\xdb\xd6\x87\x0b\x70\xe4\x5c\x8f\xf4\xc3\x62\x1c\x0e\xc9\xc3\xb4\xf8\x7a\xed\xc7\xf2\x10\x9b\x3e\x0c\x47\xc4\x29\x51\xc0\xe5\xc7\x50\x49\x84\x05\x02\x48\x02\x25\x1f\x69\x65\x42\x3d\xad\x47\x40\xeb\x49\xf6\x52\x92\x72\xb3\x92\xb3\x83\x66\xf2\x92\xcd\xe4\xb5\xe9\xd0\x71\x24\x26\x81\x50\x6a\xa5\x47\x2c\x3a\xa3\x07\xb3\xf1\xc5\x57\xd1\x40\xe5\xf0\xf6\xaf\x0c\xba\xee\x0c\x73\x33\x79\x45\x95\xb5\x8d\x76\xd6\xa5\x2c\x58\xa1\x8c\xee\x8a\x02\x29\xf6\x0a\x11\x33\x2b\xdf\x28\x39\xaa\xe6\x7a\x28\xa9\xd6\x30\x7d\xdd\x8c\x79\xc7\xb4\xa6\x9e\x17\x6f\x31\x2c\xea\xf6\x96\xde\xb3\x22\xaf\x6c\xf8\xb5\x47\x3c\x9b\x86\xe5\x03\x2d\x87\x28\x35\x24\x04\x66\x5d\x10\x26\x59\x7a\x29\x92\xcf\x4f\x28\x14\xde\x39\x75\x29\xd8\x9c\xe9\x4b\xb0\xa5\x3d\x33\x96\x0f\x7e\x68\xbf\x3a\x63\x64\x45\x90\x90\x89\x92\x7b\x6b\xce\xa4\x62\x7b\x14\x1d\xe8\x45\x74\x23\x7e\xc1\xde\x01\xf5\xc6\x8d\x58\xca\xd9\x53\x80\x10\xb6\x02\xb6\xcf\xab\xfd\x02\xa8\xf7\xd2\x26\x60\x96\xf0\x07\x83\x7b\x94\x85\x33\x25\xa4\x4c\x20\x8f\x62\x14\xe7\xa2\x0a\xe6\x2f\x60\xdf\x9b\x4f\x50\x63\xc4\x57\xbc\x3b\x12\x77\x29\x9c\x9a\x8a\x1e\x80\x2a\x30\xff\x1a\x41\x46\xd4\x2c\xba\x40\x39\xd6\xae\xcd\x08\x19\xc5\x80\x61\xcc\xa3\x39\x9d\xc0\xf1\x60\x19\x4a\x44\x98\xa3\x0c\x4f\x42\x0c\x13\x1c\x55\x56\x1b\x32\xce\xf9\xeb\xbd\x99\xb3\xeb\xe1\x5a\x86\xae\x46\xac\x38\xb9\xdf\x25\xc5\x2c\x74\x97\x54\xe7\x6c\x97\xbc\xee\x39\x47\x02\xc8\x1d\x69\x45\x19\xf6\x97\x57\xc2\x02\x71\x56\xd7\xa2\xbc\x37\x07\xaf\x87\x7a\xd7\xc2\xf1\xf7\x75\x2b\xf4\x97\x66\xd1\x76\xf5\xef\x99\x47\x77\x93\xf1\xe7\x33\xf9\x3f\x4f\xd9\x1b\x67\xc3\x7d\xed\x91\x95\x39\x27\x55\x6b\x6e\x1c\x51\xe3\x38\xfe\xb1\x9b\x44\xe1\x5a\x85\xb7\xf7\x5e\x26\xa1\xcf\xa8\x77\x3f\x1a\xd0\xa1\xf9\xb0\xe6\x82\x84\xd3\xbf\x78\xaa\x43\x13\xea\xd8\x86\xf5\x30\x47\xcd\xdf\x25\xc6\xf9\x87\xb8\x66\xaf\x86\xde\x32\xed\x45\xdf\x88\x53\xa7\x0b\xdf\x51\x7d\x84\x40\x6f\xf4\xd4\x1a\xfd\x90\xc4\x83\xd5\x3d\x7d\xea\xbd\x6d\x0a\x3e\xcd\x67\xef\xed\x30\xcb\x86\x48\x53\x40\xae\xc6\x59\xea\xfb\x52\x8e\x24\x40\xa8\x01\xae\x96\x3e\x70\xb5\x20\xba\x17\xe0\xcb\xed\x60\x94\x3d\xa8\x75\x5a\x05\x01\xa4\x35\xe9\xa4\x3c\xef\xb0\x31\x7d\x26\x22\xdc\x95\x9c\x7a\x25\xb7\xbb\x1e\x10\xb7\x97\x31\x65\xbb\x92\x2d\xbd\xd1\x88\x86\xd6\x6b\xff\xa7\xb3\x16\xa9\xda\x0e\x74\xe6\xbf\x5f\x01\x82\xd0\x5c\x54\x51\x0f\xba\x7a\x90\xff\xde\x74\xfa\x1b\x45\xd6\x84\x96\x14\x51\xc7\x27\x57\x37\x9f\xb4\x56\x13\x2f\xca\x2f\x0f\xaf\xde\x5e\x07\x08\xcf\xcb\xcf\xad\x5a\x1c\xf4\x5c\x4e\x47\x3e\xd7\x52\xd9\x43\xb9\xf4\xc9\xf5\xe8\xf8\xe4\xfa\xf2\xf0\xe6\xe8\xdd\xc9\xf9\xdb\xd1\xe1\xcd\xcd\x95\xaa\xf5\xa9\x5c\xee\xdd\xe1\xf5\xe8\xf5\xe9\xc5\xd1\xcf\x01\xc2\x77\xe5\x97\xaf\x2f\xde\x9f\x1f\xab\xcf\x6e\x29\x59\x74\x8e\x12\x41\x3f\x30\xfa\x68\x15\xae\x8b\xce\xd1\x8c\xc5\x13\xf5\x28\xbd\xd6\x71\xa0\x78\xd1\x51\x3f\xaf\x65\x24\x69\xfe\x08\xe8\x13\x02\x0d\xec\xb3\xa8\xa3\xe3\xc5\x0f\x61\xf1\xf2\x92\xe5\xdf\xaa\xb2\x33\xf6\x99\x71\x1c\x86\xa7\x64\xa5\x4e\x6b\xeb\x18\xb2\xdd\xc5\x5f\xa9\xf0\x7d\xa0\x43\x9b\x6e\x66\x30\xa1\x8d\xda\x5f\x5d\x60\x6e\x94\x33\xbf\x7a\xa9\x5d\x06\x77\xea\x21\xf8\xbd\x0b\xaa\xad\xf0\xe5\x6e\xa8\x8a\x6b\x45\x6d\xe8\x5d\x88\xb2\x0c\x0d\xc6\x9d\xcb\xab\x8b\xcb\xbe\x22\x85\xe3\x93\xe3\xd1\xd1\xbb\xc3\xf3\xb7\xfd\x61\x59\x36\xdd\xb6\x7d\xf6\x55\x4c\x83\x05\x1d\x62\x41\x72\x80\xfb\x03\x39\xa0\xc3\x9e\xb5\x71\xd4\x23\xe3\x7d\x1a\xb6\xdb\xea\xff\x9e\xf8\x67\xd4\x1d\x28\xcb\xf0\xa9\x7a\x72\x28\x65\x2d\xe0\xaf\x8b\xbc\x51\x9c\xe7\x14\x72\xb0\x1e\x5f\x9c\x55\x4a\x3b\x53\xc7\x42\x15\x56\x8b\x67\xd3\xd5\x9b\xd9\x83\xd3\x8e\x78\x28\xb3\xef\xaf\x4e\x08\x21\xb3\xce\xf5\x87\xb7\x23\x17\x80\xa2\x03\x4c\x67\x39\xae\x53\x2e\xd0\x0a\x0c\x68\xe5\x0c\x4c\xa9\x20\x87\xe5\x50\xe0\x8e\xeb\xae\xd7\x41\x24\x25\xa4\x5a\x4d\x0e\x84\x1d\x17\x84\xd5\x86\x11\xea\x89\x41\x34\x54\xa3\x98\xb0\xc9\x15\x1d\x53\xf6\x40\xd5\xeb\x82\x63\x9f\x7b\xad\xd6\xb6\xfc\xe2\x91\xc5\x71\xfd\x9b\x09\x9b\xc0\x85\xa6\xbe\x42\xf5\xdd\xfb\xd2\x5d\xad\xf4\x5d\xe9\x05\x52\x5b\x3d\xb7\x79\xdd\x52\x7c\x4b\x37\xc0\xd5\x5b\x6f\x78\xdf\x96\x7d\x4b\x3b\x82\x26\x0b\xca\x75\xf0\x91\xbf\x85\x8c\x45\x40\xed\xa4\x5c\x2c\xba\x8c\x44\x34\x4f\x7b\x83\xa1\x8e\x30\xaa\x35\x44\xdc\x9a\x33\x6f\x44\x9d\x2d\xea\x41\xa6\x7f\xfe\xe7\xd5\x9b\x17\xd9\xa2\xfe\x21\x03\x13\x9d\x2f\xe4\x93\xb5\x30\xe1\x47\x4a\x6e\xa9\x33\x0d\xc5\xd1\x53\xb2\x94\xbd\x11\xc5\x63\xc7\x8b\x7a\x03\x13\x3f\xe2\xbc\xde\x86\x58\x46\x77\xba\x75\xe3\x97\xe6\xc2\xb1\x5f\x33\x3e\x61\xfc\x4e\x7d\xa4\x28\x2f\xc0\x01\x7c\x45\x27\x01\x0e\x18\x9f\x50\x49\xc5\x9c\x71\xed\xeb\x37\x61\xa9\xe2\x25\xea\x95\x8c\x6e\x0d\xcc\x45\xa0\x48\x3e\xc0\x41\xb4\x94\x09\x24\x08\x0f\xb0\x4d\xc9\xaa\x0a\x4e\x13\x31\x57\xed\x6b\x5f\x04\xe7\x86\x67\xab\xea\x6d\xef\xe1\x42\x33\xea\xc1\x84\x4d\x4e\x78\x4a\x85\xcd\x96\xfe\x15\x31\x9d\x54\x7f\xd9\x29\xd4\x4d\x9c\xc3\x87\x16\x18\xbc\x57\x28\xc3\xe3\x4a\xcc\x62\x51\x0b\xe3\xcd\x4c\xa1\x09\xf3\xd4\x58\xc0\x9c\x95\xf6\x91\xe2\xc7\x2f\xa2\xe9\x6f\xdd\xec\x68\x8f\x97\x3e\xcd\x7d\x7b\x6a\xf4\xfe\x3a\xe3\xa3\x2a\xf8\xd9\xa7\x88\x05\xd8\x8c\xed\x41\xb3\x99\x3e\x3c\xe7\xc9\x97\x51\x88\x8e\xd9\x37\x8b\xad\x3a\x1e\x53\x69\xd7\x3e\x8d\x1e\x34\x8d\x08\xb3\xea\x91\xf5\x89\x55\x3f\x28\x1f\x1b\xf2\x52\xbf\xe6\x10\x6a\x6b\x7e\xf0\xc4\xda\x5c\xcc\x03\x09\x27\x68\x80\x83\x19\x65\x77\x33\x09\x84\xb8\x58\x42\x92\xca\x00\x07\x71\x04\xf1\x31\x31\x4b\xc1\xfd\x57\x57\x3a\x8f\x14\x25\xce\x99\x6a\x6e\xbe\x8c\x25\x5b\x40\x18\x95\x21\xcd\x45\x24\xd5\x0e\x0b\x70\x90\xb2\x3f\xd5\x83\x54\xd2\x45\x80\x03\x10\x4f\x03\x1c\x3c\xb2\x89\x9c\x05\x43\x0c\xbf\x7b\x41\xa0\xa9\x15\x56\xdf\x88\xb9\x13\x14\xae\x6a\x65\xcf\x40\xcd\x61\x90\xe1\xd4\x7f\xe9\x85\x9a\xea\xf7\x55\x28\x60\x7d\x02\xda\xf5\xb5\x0a\x97\xdc\x4e\x08\x58\xe2\x5b\x8c\x6f\xf5\x9d\xcf\x7d\x9f\x0e\xe8\xd0\x24\x80\xb5\xfe\x5f\x86\x22\xcc\x3e\x09\xcd\xda\xa1\x96\x14\x4f\x2b\xed\x95\x43\x68\x36\x8e\xe4\x78\x16\x8a\xdc\x06\xd8\xd7\x80\xcf\xfa\x3d\x21\x34\x0b\x25\xd2\x68\xb6\x08\x0b\xc5\x63\xd4\x34\x69\x5c\x12\x33\x75\xfa\xc7\x9c\xd9\x3f\xa2\xcf\x1a\x40\x50\x51\x7c\xee\xa3\xf0\x99\xe2\xcf\x5f\x46\xf2\x1e\x05\x6a\xa2\xbf\xde\x40\xcb\x4d\x14\x0c\x5e\xb4\x43\x9c\x93\xba\x23\xe5\xdc\xc7\xb6\x8e\x9a\x45\x02\x31\x65\xe3\x04\xc2\xdc\x0c\xad\xa4\x34\xd6\xae\x85\x7d\x3e\xf1\x7f\x5e\xcb\x48\xd4\x50\xfe\xa3\x88\x16\x39\x51\x6a\xe2\xd7\x64\x35\xc4\xaa\x7e\x83\xee\x92\xc4\x69\x71\xc2\xc0\xbf\xe3\x9a\xe2\xeb\xaf\x98\x2f\x18\x91\x9e\xae\x0b\x8a\x0f\xdd\x59\x75\xc7\x6e\xce\x3f\xef\x24\x8b\xda\xb3\x2a\x68\xbb\xe0\x96\xb2\x07\xc5\xf7\x38\x60\x53\x70\x9b\xf8\x9f\x78\xcf\xf8\x4c\xe0\x55\xd9\xcd\xe2\x7b\x78\x17\x2c\xd4\x31\xaa\xf8\x26\x1c\x78\x59\xb5\x1c\x36\xde\x17\x41\xcc\xf8\xfd\x0d\x93\x31\x0d\x86\x9e\x07\x46\xe9\xfb\x7f\xca\x29\xc3\x38\x73\xbb\x53\xf3\xde\xe5\x34\x98\x0a\x4a\xff\xa4\xe1\xca\x4e\x7b\xcd\x9e\x76\xd6\x39\xf8\xf4\xa6\xf2\x69\x86\xf6\xc3\x8b\xba\x63\xf8\xd0\xa3\xbd\x28\xc0\x22\x59\x4a\xda\xbb\xa7\x58\x63\x60\xd8\x3f\x52\xf5\x17\xe4\xb3\x57\x7f\x04\x63\x1d\x78\xb2\xfb\x38\xa3\x3c\xd0\xf4\x22\xd5\xb4\xe9\x3f\x05\x8d\xcd\x33\x73\xe2\xda\x5f\x8a\x47\xea\xbf\xb5\x9b\x92\xc6\xed\x08\xf4\x8f\x00\xc7\x49\xa4\xe8\xdc\x3c\x35\xbf\xf2\x73\xd7\x3c\xcf\x4f\x74\x13\x9a\xa3\x8e\xdf\xba\xbd\x32\x13\x74\xaa\xd8\x2d\xac\xa7\x3a\xe0\xe3\xa2\x10\x60\x78\xf6\x30\x3f\x66\x0a\xc7\x86\xee\x53\xde\x8d\x82\x28\x21\x22\xae\x85\x34\xc6\xef\x4e\x78\xf9\xc9\xc5\x52\x55\x4b\x1f\x28\x97\x7a\x62\xc7\x31\x1b\xdf\x07\x5f\x7e\x47\x6a\x79\x6a\x34\x57\x9d\x06\x11\xd7\x3c\xdb\x01\xb1\x8e\x18\x7f\x48\xee\x21\xfc\xdc\x04\x64\xaa\xc3\xe0\xc9\xb8\x1d\xa3\x30\xd8\xb5\x71\x9a\x08\x8f\xcc\xf2\x5d\xc1\x5a\xc3\x99\x11\xc5\x2c\x4a\x51\x18\xd8\x8f\x3b\x7e\x11\xd5\x68\xf9\x33\x01\xd7\xca\xcd\x1f\x43\x11\xf5\xa1\x9e\xe9\xe7\xbf\xd3\xe5\xdc\x67\x22\xef\x5f\x7e\xa6\x05\xf0\x34\xc0\x41\x4d\x77\x02\x5c\xaf\x81\x84\x4f\x72\x3c\x02\x42\xee\x4d\x8a\x83\xe2\x4c\xd0\x0c\xe1\x91\x21\xf7\x72\xab\x1a\x88\x00\xeb\x7f\xd3\xa6\x86\xe0\xad\xd5\x73\xea\xa2\xae\xd9\x6d\x68\x56\xdd\x0c\xa5\xfe\x53\x6a\xc1\x7e\xa4\xb7\x55\xb9\x41\x78\xda\xd4\x0e\xbc\x2c\x0d\xe8\x86\x6a\xec\x07\x0f\x4d\x5a\x23\xbc\x58\xb1\x75\xa3\x70\x40\x7d\x40\x90\xaa\x64\x50\x30\x76\xb1\xf4\xd8\xd4\x49\x24\x86\xb4\xd9\xf0\xbc\xb0\x4f\x15\x17\xd2\x7b\xa8\x32\x32\x6f\xef\xab\x65\xb4\x3b\xad\xc2\xd3\xb6\x75\xce\x03\x53\xc0\x34\xe2\x7d\xac\xe6\xae\xa1\x89\x5a\xda\xd0\x74\x06\x7f\xd8\x55\x0c\x46\x66\x9a\xbd\x6d\x5e\xe0\x6d\x0d\xf3\x5f\x53\xbf\xcd\xa9\xb8\x6d\x7b\x3a\x62\xe9\x21\xf4\x4e\x03\xed\xa8\x0b\xe7\x6b\x7a\xf8\x45\xfd\xad\xec\x9b\x7f\x7a\x10\xd8\x81\x6f\x97\x5b\x06\xe1\x6e\x9b\x10\x89\x4a\xa4\x60\xc6\x28\xd5\x18\xdd\xcf\x32\x16\x93\xf6\x39\xd2\xbd\x2b\x66\xac\x30\x2a\x94\x62\x87\x01\xb1\x3a\xb8\xd5\x92\xa5\x97\xfb\xcb\xb5\x6d\xdc\xeb\xdd\xdd\x08\xb5\x24\x11\x07\x2e\x6f\xe1\x56\x80\x7a\x1a\x42\x46\xcf\xd6\xd0\xa5\x61\x34\x20\x5a\x66\xee\xb0\x41\xc5\xd7\x13\xe8\x20\x6b\x0c\x3b\xc2\x11\xe9\xee\x47\xb9\xba\x35\xda\xd9\x41\x6c\x1a\x26\x1d\x3b\xca\x37\x89\x80\x19\x0a\x39\x66\x58\x0e\xa2\x21\xa6\xd8\x59\x22\xb7\xbb\xad\x7c\x43\x95\xce\x8b\xea\xfa\xbb\xe3\xc6\x27\x93\xba\x3d\xe1\xf2\xdf\xf9\x05\xdb\xed\xd2\x56\xb1\xa2\xa6\xdf\xec\x2e\xe3\x41\x86\x70\xf9\xa0\xfa\x0b\x7d\xd1\xe9\x43\x2b\xbd\x59\xaf\x0b\xbd\x41\x0d\xdd\x49\x96\x32\x00\x9a\x81\x83\xab\x4c\x31\xdb\xa0\xb8\x62\xe9\x35\x53\x72\xeb\x91\x3a\x3f\x91\x97\xee\xa4\xeb\x11\x4f\xe7\x76\x79\x7b\x1b\xd3\x34\xf7\xb2\x80\xa3\xf2\x58\xcb\x8e\x16\x37\xcd\x5e\x7d\x35\x65\x63\x46\xb6\xf9\x7a\x1d\x8c\x52\x1a\x4f\x03\x42\x08\x78\x5e\xe8\xbc\xab\xed\x36\x6b\xb7\x69\xa9\x9a\x10\x61\x80\xd6\x05\x87\xbb\x54\x26\x8b\x4b\x91\x2c\xa2\xbb\x48\xcf\x08\x2e\x33\xc6\x9c\xc8\x1b\xa9\x1f\x22\x8f\x8b\x9b\xc1\x27\x40\x6a\xa1\x92\x2c\xad\xa6\x05\x5a\x5d\x5a\xa0\x79\x10\x81\x70\x4c\x56\xf0\xdc\x68\x8c\x52\x2d\xc7\x81\xf0\x91\x78\x78\x59\x0f\x9d\x69\x1c\xdd\xdd\xd1\xc9\x89\x43\x99\x40\xea\x06\x66\x1c\xc7\x13\xde\x71\x11\x85\x26\x09\xdc\xe8\x8e\x72\x2a\x22\x49\x6f\xdc\xe2\x85\xb1\x45\x6e\x40\x6a\x52\x00\xf0\xa6\x5c\xa6\x8c\x89\xc6\x2d\x2a\x5a\x69\x8f\xd5\x80\x26\xd1\x4e\x4e\x27\x24\xf1\x7e\xdc\x24\xa1\xad\x2a\xcb\xb0\x92\xee\xfe\x06\xbe\x6f\x64\xdf\x02\xf3\x34\x7f\xbd\x03\xf9\xd1\xeb\x99\x62\x4a\x51\x60\x37\xa0\xf9\xb2\x89\xbf\x6d\xf9\xcf\x54\x55\xbe\x2c\x67\x56\x58\x16\x57\x58\x14\x56\x98\xd7\xcf\x14\xef\xd8\xd9\x7e\x7f\x75\x6a\xd0\x3c\xd5\x61\x6b\x5a\xaa\x4e\x49\x69\xf0\x87\x82\x9e\x26\xd1\x04\xc4\x58\x5f\xe0\x6e\x3c\x25\xb4\xf0\xe4\x52\x10\x95\xab\xd1\x79\xff\xf2\xb0\xfb\xc2\xb8\xdd\x39\x5d\xfa\xa8\xda\xcb\x1a\xb9\xca\xf2\x6c\x5a\x9c\x25\x49\xba\xfb\xf2\x07\xeb\xa7\xbc\x2f\x2d\x1e\x9d\x20\x36\x67\xb0\xee\x90\x70\x7b\x2b\x73\x16\x2a\x37\x4d\x6a\x41\x7a\xc1\xff\x50\x97\x8b\x82\xde\xb9\xde\xb5\xdc\x89\x36\x1f\x67\x94\xb7\xfc\x5c\x92\xf0\x36\xa5\x32\xf4\x6e\x07\x46\x21\x2b\x9d\x77\x58\x34\x87\x7c\xa0\xb2\xdd\x06\xf3\x80\xe9\x39\x5a\x49\x22\x0d\xe8\x82\x31\x65\x3c\xd1\xa1\xb6\x7a\xea\x2a\xf3\xdb\x28\x96\x9d\x74\xc6\xa6\x32\x34\xa8\x8b\x82\xc8\x81\xad\x67\x77\x6f\xd8\x02\x8c\x42\x96\xfe\x92\xb3\x80\x83\xbc\x1a\x43\xea\xb2\xb3\x48\x16\x21\xd2\x06\xce\xd4\x40\x6a\xf9\x05\xee\x29\xc2\x70\xbc\x98\x8a\xbd\x2a\x0c\x0d\xdd\x53\xff\x33\xf3\x30\xef\x1a\xce\xdf\x19\x71\xf9\x9e\x56\x1e\xa6\x01\x96\x28\xa3\x71\x4a\xf7\xb3\x0c\xa1\x17\xa8\x12\xcc\x06\xd0\xf7\x63\x5f\x9d\x7e\x51\x52\xa7\x57\x14\xe7\xfa\xe6\x9e\x06\x99\x9e\xb5\x23\x8a\xcf\x28\xb9\xa0\xad\x72\xfc\xca\x99\xb6\xdb\x5d\x51\x72\xa4\x5e\x7a\x41\x3a\x57\xfa\xcd\x65\xd9\x18\xd7\x3f\x3c\x7a\x37\x3a\x39\x0f\x10\xfe\x9d\x3e\x13\x02\xa0\xed\xd7\xc6\xaf\x52\x46\x77\x84\x6a\x67\x6f\xb5\xe0\x97\x74\x48\xb6\xbb\x9b\x52\x3f\x6e\x74\x3b\x2b\x59\xac\xe5\x17\x58\xac\x21\x66\x40\xb5\x7b\x4c\x49\x70\x4b\x5f\xfd\xe7\x7f\xfe\xe7\xff\xfc\xcf\xdd\xdb\xdb\x5b\xba\xfb\xfd\x7f\xbc\xea\xee\xfe\xff\xa6\xe3\xdb\xdd\x57\x7b\xdf\xd1\xe9\xf7\xdf\x7d\x37\x1e\x47\xaf\x3c\xd8\x9d\x73\x5a\xb8\x14\xd4\x39\xf0\x6e\x30\x34\xb7\xdb\x54\x8d\x3b\xb3\x96\xdb\x3f\xa0\xb6\xf5\x3a\xf8\xf7\x3d\x7d\x0a\xb4\x75\xf7\x83\x7b\xc6\x26\x94\x4b\x26\x9f\x02\x6d\xbd\x3d\x69\x9c\x6d\x97\x33\xcc\x40\x6c\x98\x09\xbf\xa7\x4f\x6f\x12\x61\x53\x4f\x5a\x0a\x21\x1b\xe7\x9c\xa5\xfd\xf9\x42\x3e\x55\x67\x1d\x44\xb9\xce\x9c\xce\x93\x37\x49\xad\x69\x4e\x27\xb9\xa3\x9f\x65\x83\x2b\x8c\xee\x9b\xe5\xfb\xba\x6f\x4e\x6c\x31\x7d\x53\xac\x42\xfc\x98\xf3\x53\xa7\x33\x37\x07\x02\x2c\xf7\x9b\x44\x84\x02\x59\xf9\xd5\xf4\x48\x3d\x49\x88\x04\x71\x54\x14\x63\x9a\x6c\xe5\x3b\x3b\x18\xdc\x12\x12\xa3\x38\xe6\x58\x7d\xdb\x63\x26\x8a\x04\x9f\x6e\x72\xa4\x71\xd9\x69\xac\x40\xc1\x0a\x4e\x85\x3a\x19\xbd\x76\xda\x88\x00\x00\x5f\x62\xf6\xbc\x47\xca\x54\x24\xf3\xda\x3c\x63\x96\xc5\xdb\x81\x40\x5e\xb3\x83\x8f\x14\x28\x44\x35\x03\x30\xa5\xda\xa5\x5c\x55\xf2\x46\x43\xe2\x29\x2e\x5c\x5b\xdf\x60\xe8\xe5\x7d\x6f\x06\xcc\x14\x2e\x60\xd8\xf0\x2e\x55\x77\x28\x2a\xbe\xeb\x76\x1d\x1a\x37\x1c\xcc\x01\xe0\xa2\xc8\x2c\x3c\xa1\x08\xbf\xf9\xbf\x74\x72\x5f\x34\x66\x38\xd1\x73\x30\xd8\x7c\x06\xac\x83\xaf\x9a\x81\x3f\x37\xcf\x80\x13\x12\xed\x1c\x24\x85\x39\x50\xef\xed\x1c\xdc\xd3\xa7\x94\x48\x9c\x98\xe3\x8c\x08\x9c\x34\xfa\x04\x99\x79\x38\xe1\x13\xfa\xb9\x91\x3a\xfc\xd4\x63\x90\x21\x51\x78\x4e\xd6\x90\x6a\xc3\x6e\xc8\x8f\xd4\xcb\xea\x3f\x18\xe2\x84\x74\xf7\x93\x1f\xf8\x7e\xa2\xee\x87\x0e\xe0\xdb\xf9\x74\x8a\x41\x32\xf4\x52\x8b\xda\xe9\x15\x98\x61\xfe\x05\xd4\xeb\x94\x82\x98\xab\x46\x6d\xcb\x38\x22\xdb\x7b\x9b\xe8\x5a\xd5\x10\x46\x24\x5a\xaf\xed\x80\x7e\x24\xaf\x50\xbb\x6d\xe2\xe2\x25\xc2\xcc\x12\x3c\x4e\x76\x76\x32\x2d\x03\x24\x8a\x14\xa2\x03\xd7\x5b\x0d\xd7\x66\x42\x39\x4e\xc1\xf9\x4e\xf5\xfd\x59\x87\xe9\x4d\xfb\x43\xaf\x1c\x6c\x10\xbe\x89\xa9\x5a\x5e\x99\xfa\x7b\xe9\xdd\x86\x83\x00\x0b\x7b\xf4\x9a\x70\x7f\x7b\x18\x08\x9a\x2e\x63\x69\x0f\x03\x73\x34\x88\xca\xd1\x40\x37\x6c\x9b\xc1\x35\x88\x00\xba\x6a\x99\x88\x61\xa8\x69\x45\x31\x7d\xf0\xe4\x37\x03\xcf\xe7\x61\x92\x70\xaa\x66\xb3\x98\xa0\x83\xa1\x76\xfb\x15\x21\x84\x59\x61\xcb\x23\x0c\x6e\x27\xfa\x35\x35\xbf\xb2\xd6\xd7\x1f\x57\x1b\x8e\x23\x3b\x3f\xf6\x40\xd2\xf3\x53\x3e\x90\xec\x4d\x44\xcf\x17\x48\xb2\x30\xa8\xca\x01\xc5\x4a\x07\x94\x5a\x08\xab\x54\xb1\x47\x14\x3c\x8b\x08\x07\x0a\x6a\x3e\xa4\xfc\xe5\xa2\x76\x72\xe1\xe4\x8a\xcc\xc9\xc5\xf4\xc9\x95\xd8\x93\xeb\xf5\x5f\x75\x9d\xfc\xea\xa0\x80\x26\x59\xa0\xe3\x82\x02\xaa\xc4\xed\xeb\x54\x81\xa6\xdf\x51\x84\xdf\xff\x3f\x74\x08\x83\xbd\xe7\xb6\xa8\x2d\xd8\x1d\xba\xc1\x7c\xa4\x64\x65\x28\xb3\x06\x75\xba\x9b\x61\xb5\xa8\x4d\x10\xa6\x19\xfe\xe3\x79\x41\x4f\xd0\xa9\x27\xe5\x5d\x46\x72\x66\x77\x36\x74\xe6\xe5\x31\x0d\x4e\x32\x2f\xb9\x4e\xe7\x82\xba\xab\x71\xb8\x31\x4f\xbb\x66\x0a\x55\x3f\xe8\x7c\x7f\x4d\xed\xe6\xb2\x15\x82\xe7\x73\x1e\x07\x54\xf0\xea\x77\x89\xf7\x8a\xc1\x07\x1c\xe9\xcc\xd6\x5d\x1c\x75\x46\x90\x0e\x8c\x4b\x53\x1e\xc1\xfa\x7b\x51\x02\x4c\xa7\xad\x24\x84\x84\x94\x28\x09\xc2\xca\xe3\xdb\x9e\x3c\x9e\x3b\x79\xe6\x4f\xab\x1c\x4b\x7d\x6d\x3a\x02\xc9\x79\x4c\xdc\x30\x47\x07\x7f\xd2\xe2\xf9\x1a\x72\x9f\xc1\x86\xdb\x5d\x84\x7a\x69\xe7\xdd\xe1\xf5\xe8\xfc\xf0\xe6\xe4\x43\x7f\x74\xfd\xe9\xec\xf5\xc5\x69\xbb\xfd\x96\xaa\xcf\xdf\xeb\xcf\x4b\x5f\x21\xd4\xfb\x44\xbd\xda\xbd\xf3\xb1\x5a\xf2\x05\x3d\x50\xac\x10\xe6\xd9\x39\x86\x36\xd0\x32\x30\x62\x6a\x03\x18\xe1\x3b\x3d\x99\x1f\x0a\x5f\x97\x36\x33\xb5\x33\x2e\xbd\xef\xd4\x8e\x79\x71\x73\xaa\xb0\xd7\xda\x99\xff\x6d\x73\x63\xee\x2b\x73\x9a\x55\x18\x7d\xc5\xfb\xb6\x5b\xeb\x7d\xdb\x1d\xb6\xdb\xfe\x2f\xef\x8e\xa2\x76\x56\xcb\x80\x54\x49\x03\x46\x05\x77\x35\x8b\x11\x45\x0f\xbe\xa1\xbd\x9f\x68\xf8\x0b\x35\xa8\x53\xff\xd6\x26\x56\xfb\xfe\x67\x6a\x1f\xdb\xcb\x9c\x7d\xf3\x13\x0d\x7f\xa5\x15\xcc\xa9\x9f\x68\xf8\x1b\x0d\x25\x78\x42\x02\x6f\xff\xf0\xff\x26\x66\x90\xb3\x02\x59\x62\x05\xa5\x18\xa7\x97\xc4\xe3\x09\x1c\x0c\x86\x01\x72\xbb\x5c\xd4\xec\x70\xe1\x09\xae\xde\x3d\xd2\xee\x1e\x87\x8f\x5b\xd8\xed\x02\x1d\x9c\x52\x7b\xf5\xe1\xa8\x57\xb3\xf3\x05\x3a\x78\xe3\x17\x69\xda\xe2\x02\x1d\xbc\xf6\xcb\x7d\xa2\x5e\xed\xfe\xb6\x86\xb7\x1f\xe9\xff\x57\x77\x6a\xdd\x7e\xb3\xe0\x6f\x7f\xcb\x8e\xa2\x6e\x47\xe5\xba\x9c\x4f\xcf\x38\xfb\xdb\x1b\x45\xee\xdc\xff\xf6\x99\x2f\x2a\x12\x72\xfe\xe9\xcf\x4e\x3c\x37\xfd\x32\x38\xac\xc2\x03\xa8\xf8\x86\x96\xa4\x23\xf7\xe6\x97\xe2\x9b\x5f\xc1\xe8\xe8\xde\xfe\x4a\x3d\x2c\xbd\x1c\x37\x56\x43\xe7\xe9\x80\x5a\xc7\xaf\xf4\xe4\xf1\xa5\x22\x66\xf7\x34\xc7\x87\x2d\x4e\x1e\x50\xfe\xdd\x92\x4d\x4c\xa4\x5d\x96\xb7\xf9\x9b\x1f\x5c\xe1\xd6\x53\x96\x87\xe7\xb9\x78\x6b\xff\x6e\x57\xc1\x4f\x5e\xa0\xc4\x2a\xab\x18\x43\x0a\x76\x13\x6a\x7e\xe2\x88\xc8\x41\x52\x05\x33\x88\x0e\x42\xf5\x9c\x74\x71\x82\x7a\xfa\xcf\x9d\x9d\x08\x07\xc1\x4e\xb2\x73\x4c\x77\x22\x94\x01\xb7\xa2\xf2\x19\x7d\x65\x6a\x10\x81\x36\xf1\xb6\x0d\x4a\xdb\x60\xc7\xab\x05\xf2\xad\x03\x42\x6f\x93\x0a\xd3\xd6\x14\x22\x97\xd9\xd7\x87\x25\xd2\x96\x5e\x29\xb1\x90\x98\x4b\xb2\x0a\xda\x41\x2f\x68\x47\xf3\xc5\x7e\x80\x83\x1f\xd4\xdf\xb1\x54\x7f\xfe\xa8\xfe\xbc\x53\x7f\xfe\x2b\xf8\x57\x2f\x68\xff\xb1\x4c\xe0\xf9\xbf\xd4\xf3\xff\xf1\xf9\xd5\x7f\xaa\x1f\xff\xad\x7f\xfc\x47\x57\xfd\x20\xfa\xc7\x77\xc7\xfb\x41\x86\x99\x24\xdf\x0e\xda\x3f\xfc\x18\xfc\xeb\xbf\xc9\xf0\x5b\x9c\x14\x7e\xde\xe5\xbb\x25\x92\x3e\x3f\x90\xea\x42\xea\xde\xa5\xb2\xa4\x00\x25\x84\x1e\x50\x12\x04\xbd\x2a\x9e\x71\xbb\x1d\x7a\x20\xc4\x08\x03\xe0\x81\x2c\x00\xb5\x2c\xcb\xd5\x35\xeb\x53\x6b\xf7\xad\x9e\x76\x2f\x10\xc8\xaf\x4f\xc8\xf5\x3a\x14\xcd\x3e\x99\x91\x3a\x52\x84\xec\xcc\xf4\xb1\x2a\xcc\xcd\x61\x9c\xc4\x5e\x98\x90\xcc\x69\x17\xae\x80\x86\x00\x2a\x60\x71\x1a\x64\x43\x76\x16\x91\x48\x15\x99\xb9\xba\xdc\xa9\x25\x0f\x82\x5e\xd0\x93\x40\x71\x53\x59\x7f\x09\xe2\x21\xdf\xac\x1c\xf2\x02\xc6\xc0\x0e\xa9\x0d\x9a\x64\x7b\x0f\x27\x1d\xc0\x6d\x22\x7c\xc0\x3a\x17\x1f\xcf\xfb\x57\x43\x9c\x74\x58\xea\xe1\x65\x11\x53\xc4\x41\xd8\xd5\xa0\x54\x16\xbf\xc0\x89\x06\xe0\x4b\x9e\xe8\xc4\x19\x12\x52\x32\x28\xe6\x9b\xd4\xe1\x6d\x6c\x1a\xe6\x48\x90\xa1\x20\xb1\xd4\xfd\xa6\x38\x98\x26\xc9\x6d\x24\x7a\xb7\xd1\x9f\x6a\xc6\xed\x4f\x1d\xec\x4f\xdd\x44\xbd\x49\xc4\xfb\xab\x53\x12\x4b\xc8\x6e\xba\x55\x97\x7d\xf3\xfd\xd5\x29\x92\x92\xbc\xbf\x3a\xc5\x95\xef\xc6\xfa\x3b\xb0\x5f\x56\x45\x7d\xd9\x31\xae\xef\x08\xd0\x3c\xe0\x98\x83\x2c\x92\x61\x70\x94\x2c\xe3\xc9\x16\x4f\xe4\xd6\x94\xf1\xc9\x16\xf8\x3c\xab\x96\xb6\xd4\x52\x32\x7e\xb7\x35\xa7\xe3\x59\xc4\x59\x3a\xdf\x9a\x26\x02\xde\x5c\x47\x9c\x49\x03\xbe\x16\xa0\x96\x94\x3a\xdb\x96\x6d\x22\x0c\x96\x22\x06\xe0\xce\x4a\x1f\xb3\x2c\x84\xfb\x6b\x94\xa6\x54\xc8\x9b\x99\x9a\x6e\x26\x35\xbc\xe9\x04\x85\x09\xe0\x0e\xd4\xdd\x70\x39\xa6\x08\xf3\x0d\x91\x8d\xb9\x4a\xd3\x28\x52\x0c\xba\x44\x91\xab\x25\xe5\x2e\xd5\xeb\xf7\x6d\x12\xed\xdc\x7a\x54\x77\xab\x07\xef\x85\x52\x41\x14\x4a\x4d\x65\x58\x83\x72\x24\x1d\x99\xd4\x05\x6a\xd7\x35\x2c\xfc\x30\x36\x45\xbd\x1e\x90\x65\xad\x56\xe1\xdc\xc2\xad\x24\x0e\x05\xfc\x84\xa7\x32\x8a\x63\x0b\x41\x98\x7f\xe7\x29\xcc\x7c\x12\xd7\x4e\x10\x56\xf5\xdb\x50\x8b\x0f\x2a\x00\x71\xc1\x79\x7b\x3a\x8a\xe6\x2f\x36\x57\xac\xa4\xa6\xb5\x09\x9b\x98\x34\x5a\x25\x9c\x60\xb3\x3d\x21\x6b\x55\xe7\x96\xde\x31\x4e\xca\xae\x97\x25\x4e\xd1\xc5\x7e\x0f\xe0\x13\x2f\x1e\x55\x55\x33\x4e\xe6\x73\x56\xd1\xa6\x19\x39\xbe\x86\x1f\xb4\x9a\x5e\x90\x41\xee\x93\x24\x48\x77\x5f\xe4\x6e\x46\x62\x67\x07\xc9\x81\x18\xe6\x03\x00\xd7\x78\x5a\x8c\x30\x9e\x33\xe9\xf7\x6d\xca\x78\x14\xc7\x4f\xb5\xc3\xda\xcb\x32\xcc\xb3\x70\xe6\x43\xfc\xa9\x73\xd6\x47\xfc\x9b\xea\x83\x76\xd6\x24\x1c\x98\x09\x9b\xe4\x96\x51\x83\x97\xb9\x41\x48\x58\x08\xba\x88\x04\x3d\x14\x77\xf5\x70\x96\x26\x5b\x8d\x54\x4b\x78\xe4\x9f\x3f\xa4\xe8\x3c\x82\x56\xa6\x90\x8e\xf3\x3a\x05\xbf\xe5\x52\x8d\x85\x6a\x0a\x84\x90\xcb\xe9\xf5\x9f\x68\x02\xdb\x54\x69\x39\x1a\x0c\x2a\x2d\x4a\xd1\x13\xef\x70\x75\x19\x8e\x20\xb0\x6e\x27\xe8\x05\x3b\xb4\xa3\xd1\xdd\xb3\x6c\x03\xac\xe3\x4c\x2f\xc1\x42\x92\xd5\xe4\x89\x47\x73\x36\xd6\x9d\x82\xe8\x22\xfd\xe0\x26\xba\x53\xbf\xbc\x89\x55\x3f\x35\x63\xb0\xbf\x9c\x27\x34\xa0\xc1\x6e\xef\x61\xe3\xf8\x64\x7f\x9a\x28\xe5\x28\x8e\xa9\xe8\x6d\x77\x6d\xd5\xd7\xe3\x64\x01\x18\x97\x1e\x94\xac\x2b\x7d\x62\x22\xf8\x21\x41\xfc\xbc\xe1\x80\xfe\x47\xb5\x94\x35\x00\x58\xda\x64\xc6\xcd\xd4\x82\xaf\x0f\x51\x07\xcd\xd4\x01\x09\x8d\x13\x2e\x45\xa2\x06\x6a\x31\x78\x53\x1a\x4f\x7b\x4e\x62\x66\x07\xb5\xa8\x56\x3d\x1d\x62\xca\x10\x86\x5d\xc5\xfe\x04\x7f\xcd\x87\xce\x28\x4f\xcd\x03\x91\x15\xc8\xa2\x3e\x77\x2c\xb2\xff\x44\x2a\x96\x6b\x42\xc7\x6b\x49\xca\x1a\xdf\xac\xd7\x7f\x27\x4a\x75\x39\x77\x0f\x5f\x41\x2e\x6b\xda\x13\x16\x76\x32\x44\x58\xbb\x1d\xdc\x00\x0c\xa9\xe8\x78\xbf\x6c\x5b\x47\xb5\x30\xc6\x6e\x3d\x16\xd2\x94\xbb\xa6\xf1\xb4\x5e\x7f\xab\x66\xc6\x14\xba\x89\x6a\xe4\xfa\xad\xa2\x9e\x44\x15\x6d\xde\x91\x8a\xfd\xda\xb9\x73\xa1\xf4\xc7\x0e\xaf\xb8\xa6\x76\xc3\x0a\xb2\x70\x26\x11\x7e\x90\x10\xe5\x3b\x97\xf8\xa9\x0e\xd6\xed\x2b\x41\x99\x1f\x64\xcb\xdc\x4c\xa2\x1c\x90\xd1\x00\x14\x13\x99\xe5\x9b\xf9\x4e\x51\x32\x30\xb6\xdb\xc6\xbb\x52\xee\xd4\xa6\x9d\x0b\x7d\xf0\x54\x5d\xb3\x73\x54\xb1\x7a\x28\x03\x2b\xa1\x4d\xca\x66\x72\x04\x31\x8a\xca\x59\x94\x7e\x14\xd1\x62\x41\x27\x96\x07\x32\x53\x4d\x1c\xa5\xe9\x15\x9d\x1a\xb8\xc1\x86\x47\xaa\xee\x02\x52\x21\x58\x73\xbb\x3d\xc0\x4c\x70\x0e\x22\x1b\x78\xf5\xa4\x7c\x84\x16\x94\x12\x6e\x2c\x56\x65\xe5\x8d\xd7\x68\xaa\xfc\x93\x5c\xfb\xf0\xb1\xbb\x3b\x2a\xc2\xc0\xcb\x73\x69\x86\x06\xe2\x5f\xe1\xfd\x51\x4c\x23\xa1\x69\x29\xb0\x0e\x4e\xb5\x81\xcb\x14\xb5\x44\xbb\x1d\xc2\xbb\xb1\xfa\xc8\xbc\x51\x85\x50\x28\x20\x4a\xd6\xbc\x29\x7d\x87\x32\x59\x77\x0e\xe7\xe0\xe0\xd2\x2d\x8a\x3f\x09\x16\xb2\xc3\x2d\x18\xb2\xce\x9e\xf9\x12\xde\xc9\xf2\x71\x30\x92\xc5\x9c\x27\x83\x39\x1d\x6a\x94\x06\xef\x82\xf7\x58\x28\x04\x41\xd2\x90\x34\x5a\x82\x2e\x36\x74\x6e\x55\x78\xcf\xf3\xc9\x42\x07\xba\xee\x41\x77\x88\x7a\x4b\x1a\x42\xd5\xd8\xaf\xb6\x2f\x8d\x07\xad\xbd\x33\x3a\x04\xf6\x41\x77\x88\x05\xa1\x83\xbd\x21\x76\x44\x22\x0f\x76\xf7\x7a\x3a\xe4\xf4\xf3\xc5\x34\x34\xa9\xab\x41\xfd\xb8\xbb\xb7\x4d\x88\x75\x4a\x20\x62\xc0\xc1\xb7\x6e\xbb\x6c\xc6\x34\xca\x45\x23\x57\xb3\x41\x17\x8a\x25\x84\x90\x51\xe7\x62\x91\x76\xde\x52\xb9\x5e\xe7\x3f\xcf\xa2\xa7\x5b\x7a\x9a\x8c\xa3\xd8\xe6\xcc\x66\x03\x96\x7b\xb2\xe1\x94\x44\x83\xc8\xf7\x6c\x1b\xf0\x21\x19\xe8\x6f\x35\x76\x2a\x0e\x76\x75\x2f\xf1\x80\xe1\xd4\xc0\xe5\x66\x99\xd6\x6e\x7c\x96\x64\x05\xf7\xcc\x5a\x08\x7a\x37\xcc\x9e\x1d\x22\xc9\x3d\xda\x07\x14\x53\xbc\xdd\x1d\xb6\x2c\x8f\x4e\x97\xb7\xfa\x2e\xab\x88\x00\x01\x60\x5b\xfe\x48\xee\xec\x59\x8e\x3d\x50\x9c\x60\x7b\x6f\x98\x61\xa6\x65\xe3\x8a\xf3\x6b\x3e\x89\xdd\x21\x4e\x88\x00\x70\x8b\xc1\x2b\xed\xe6\xce\x26\x10\x1b\x6f\xa7\xc3\x57\x16\x31\xd4\x2a\xe8\x13\xa2\x76\x3b\x8c\x88\xb4\xbe\xcc\x27\x90\xe3\x76\x13\xe6\x45\x84\x30\x70\x46\xde\x49\xfd\xb8\x7b\xd5\x26\x8e\xf0\x76\x17\xeb\x4c\x0e\xaa\xe5\x94\xb0\x7c\x7e\x3a\x01\xfa\x71\x77\x0f\x2f\x49\x7a\xf0\x28\x55\x47\xac\x67\x7d\x27\x40\xa8\x37\x92\xba\x6f\x41\x2a\x9f\x62\x0a\xbd\x6f\xb7\xc3\x25\x30\xed\x0b\x19\x2e\x31\x14\x08\x58\xfa\x81\xa5\xec\x36\xa6\x01\x02\x7c\xc4\x42\x17\x12\xbc\xc4\xdb\x7b\xa6\xfd\x0c\x5f\x4b\x92\x6a\x27\xca\x45\x1c\x3d\xf5\xb6\x78\xc2\xe9\x7e\x80\xf0\x45\xa3\xb0\xf1\x72\xa0\x24\x6e\x70\x7d\x5c\x7f\x1a\xa1\x92\x0c\x8c\xd9\x8b\xb1\x92\x5e\x8e\x80\xe4\xf9\xe9\x39\x47\x73\x73\x05\x32\x9d\x72\x18\xac\x4e\x49\xc9\xa6\x1e\xed\xee\x04\x5b\xa5\xc9\xb1\xa4\x01\x8a\xa2\x83\x54\x31\x97\x9e\x85\xa3\xdd\xba\x76\x70\xa5\x91\xba\x48\x79\x70\x3c\x87\x92\xac\xea\xe9\x14\xad\x44\x89\x4c\xf4\xfa\x62\x98\xa6\x79\xb4\x40\x61\x65\x61\xed\x29\xba\xb8\x56\x45\x41\xef\x8e\xf2\x75\xc5\x85\x17\xb5\xc1\x46\x84\x10\x7a\x70\xad\xa3\x02\xb3\x0c\xdf\x97\x85\x7f\x6f\xf3\x58\x1a\xec\x05\x80\x3a\xa1\xf6\x92\xe2\x1e\xc0\x34\x98\xdd\x4d\x7a\x2f\x95\xe9\xdd\x30\x8c\x67\xb6\x8a\xdd\x0f\x5a\x5b\xa2\x5a\x5d\xe2\x98\x24\x95\x6d\x31\x26\xf1\x41\xe2\xed\x88\xde\x60\x88\xa7\x24\xd6\x5b\x65\x6c\xf6\x47\x82\x5a\x4b\xe2\x29\x67\xd5\xe6\xb8\x91\xe1\x14\xc7\x07\xe3\xc1\x38\xe7\x70\xbd\x44\xfb\x7a\x1c\xa9\x77\x11\x4e\x2b\x3b\xc5\x76\xbe\xb0\x5f\x6e\xfe\xc6\x7d\xb1\x88\xe4\xcc\x6d\x09\xbd\x07\x78\xdd\x6b\x97\x1c\x76\x02\xe6\x35\x90\x3e\xfe\xd1\x4d\xa2\x26\xae\x08\xe6\xab\xfa\x52\x70\x19\x29\xf6\x69\xbd\x0e\x6b\x9e\xaa\x6d\x7e\xeb\xa7\xb6\x95\x39\x2e\x1c\x5d\xaf\xbb\x86\x04\x8d\x32\xb6\xe7\x44\xd1\x9a\xcd\x73\xd4\x3c\xed\x46\xb6\xc7\xfc\x6b\xe5\x53\x98\x4f\x56\xfd\xfa\x55\xed\xd7\xaf\xfc\xaf\x5f\xe9\xaf\x5f\x8c\xa3\x05\x10\x83\x84\x63\xd1\x99\x46\x71\xfa\x44\x58\x09\x5c\xeb\xef\x5d\x53\x2b\x34\xea\x66\xad\x03\x04\xb4\xdc\x2a\xfa\x8f\x84\xe8\x40\xf6\x44\xc3\xe4\xe7\xe2\xd5\x99\xf4\x0f\x75\x80\xaf\xf1\x6d\xa7\xb8\x1e\x73\x9a\xd5\x3d\x6d\xf1\xc1\x82\x0e\x09\x73\xca\x18\xed\xcc\xe7\x94\x31\x89\x8d\x2e\xd0\x46\x17\x9c\x12\x80\x44\x53\xdc\x62\x49\xc4\x20\x1a\xb6\x6a\x94\xef\xcb\x76\x7b\x39\xf8\x79\x78\xa0\xde\x93\x65\x2f\x05\xb0\x9f\x10\x7e\xa9\x9d\x7e\x29\x43\x1d\x3b\xc3\xd4\x93\x14\x73\x28\xe6\x90\x0a\x3b\x20\x09\xaa\x1d\x07\xe7\xf2\x95\xac\x20\xf1\xbf\x09\x10\xbe\xdc\x70\x35\x31\xa8\x47\x8b\xce\xd9\xfb\x9b\xc3\xd7\xa7\xfd\xd1\x51\xff\xf4\x74\x48\xb6\xb5\x2c\x3b\xb8\x92\x43\x7b\x49\x31\x90\xa8\x75\x40\xeb\x35\x40\xa6\xf6\xeb\xc1\xa7\x61\xd1\x87\xfc\x77\xe8\x63\x21\x81\xd2\x79\x88\x10\x3e\x96\x64\x30\xdc\x0f\xbb\x78\xaa\x35\x47\x6f\x20\x18\x1d\x85\xc7\x52\x7f\x77\xfe\x8f\xaa\x12\x92\x3a\x55\x42\xd2\x78\x35\x2f\x5e\xbf\x69\x47\xff\x51\xb8\x7b\xd3\xd2\xdd\xdb\xcb\x7c\x59\xd1\xc3\x3a\x37\x5b\x68\x0b\xa4\x47\xfd\xe7\x79\x34\xa7\x38\xa9\xc9\x41\xc1\xa6\x61\x0e\x10\x85\x1a\x0d\xac\x16\x68\xee\xc0\x52\xb2\xcd\xdc\x10\x0a\x5c\xa9\x14\xf5\xc0\xfc\xc0\x2d\x11\x27\xce\xc2\xe1\x12\xc0\x05\x3b\x1c\xda\x8e\xac\xe4\xe1\x72\x69\xb8\xc2\xbf\x6b\x45\xb2\xba\xc4\xfb\x9a\xa9\x86\x11\xe7\xb7\x45\xe3\x69\xe0\x4d\x12\xf8\x51\x77\xdc\x65\xb7\x41\xf7\xc1\x1b\x74\x1f\xbc\x32\xff\x5a\x5d\xa1\xa6\xb4\x46\x51\xe0\x75\x25\x67\x34\x95\x9b\xf6\x81\x6c\xb7\xa5\x8d\xe6\x5a\xaf\x83\x09\x7b\x08\xcc\x21\x90\x34\xeb\x56\x7c\xdd\x89\x9f\x44\x4a\x7d\xd4\xac\xf8\x84\xbb\x32\xe0\x5c\xaa\x7e\x84\xc1\x68\x74\x78\xf5\xf6\x7a\x34\x0a\x1c\xca\xad\x7d\x0d\x99\xf5\xf3\xd7\x9e\x8b\x98\x17\xe6\xd2\x3b\x96\x90\xbe\x7e\x52\x89\xfc\xb6\xd5\x8c\xa3\x85\x5c\x0a\x1a\x42\x56\x7c\x2c\x90\xb3\x31\x33\x60\x2e\x09\x8e\xfc\xc4\x2e\x10\x47\xa3\xf5\x0b\x9d\x72\x30\x4d\x1e\x58\x15\xe9\x33\xd3\xc7\xef\xb4\xb7\x53\xdf\x23\xb4\x80\x64\x6d\x68\x37\xd2\xc3\x4c\xf7\xc3\x94\xac\x32\xa4\x18\x5f\xa1\x1a\xd7\x5d\x9c\x90\x14\x17\x06\x95\xd4\x8f\x49\x87\x12\xe9\x88\xd1\xe2\xd5\x34\x42\xed\x76\xe4\x9c\x9e\x50\xc5\x5b\x75\x49\xce\x22\x39\xeb\xcc\x19\x0f\x23\x17\x98\x51\x33\xa6\x56\x42\x56\xd9\xcb\xfa\xe2\x4e\x91\x98\x74\xf7\xe3\x1f\x96\xfb\xb1\x3d\x3e\xc6\x24\x1a\xc4\xc3\x56\x32\x18\x97\x46\x1c\xc9\x50\x09\x74\x86\xfe\xbd\xa5\x9d\x74\xfa\x67\x97\x37\x9f\x46\x87\x57\x57\x87\x9f\xcc\x2a\x27\x40\xf3\x0d\xba\x50\xcc\xb0\xbb\x44\xf2\xce\x03\xa3\x8f\x38\x25\xb2\xb4\xb8\xea\xd4\x2a\x77\x1d\xc7\xe4\x4c\x86\x4b\xb4\x1f\x96\x7d\x57\x3c\x4a\x65\x93\x00\x81\x56\xc2\xdd\x3d\x89\xec\xb0\x09\xca\x50\x28\x70\x8c\x70\x6c\x31\xe4\x19\x7d\x24\x11\x8e\x07\x4f\x74\x48\x12\x1c\xdb\x50\xf2\x1c\xa4\x17\x4b\xc7\x10\xda\xed\x30\x36\x5c\x91\xe4\x4f\x35\xf7\x1e\x93\xd4\xb9\x68\x21\x3c\x25\xcf\xa8\x60\xbd\x5c\x3a\x27\x4a\x08\x6f\xe9\x29\x20\x63\xac\xf5\x20\xea\xea\xdc\xc5\x8b\x4e\x34\x99\x38\xa0\x44\x14\x46\x78\x8c\xf0\x38\x57\x46\x95\xa2\x01\x8d\x32\x6a\x46\x82\x60\x9b\x90\xb1\x65\x12\x2d\x25\x68\xd2\xb2\xf5\x6a\x5c\xd4\x69\x59\x75\x16\x1e\x77\x46\x85\x18\x56\xc0\x8e\xf1\x34\x61\x9b\xab\x29\x80\x8a\x05\x26\xfc\x6f\x02\x72\xc4\xad\x0c\x29\x1e\xe3\x25\x9e\xe2\x59\x0e\xfd\xe9\x2f\x9a\xd1\xe6\xb4\xdb\xe1\x24\xd7\x1a\x0a\x9f\xc3\x98\x12\x35\xfd\x98\x35\x8f\x68\x62\x38\x63\xb3\x36\xd9\xad\xc6\x60\x4e\x87\xc6\x4a\xb7\xd9\xc4\xa3\x75\xff\xfe\xe1\x01\xf1\x2f\xa6\xd3\x38\x21\xd4\x57\x3a\xee\xc3\x5a\xa6\x25\xed\x20\xc7\xd2\x68\x00\x53\x2a\x0b\x9a\x41\x89\xb9\x9e\x39\xb5\x35\x2a\x58\x31\x78\x49\x78\x27\x47\x6a\xc2\xb1\xff\xd3\x16\x82\x23\x32\xe7\x28\x28\xac\xde\x53\x4b\x51\x21\x79\x80\xe6\x3e\xe8\xd2\x92\xfd\x82\x28\xb9\x24\x9f\xad\x4f\x44\xa4\xf6\xe0\x72\xb0\x37\xdc\x07\x8d\x54\xae\x88\x89\xd5\xda\x99\xf8\x8c\x18\xe1\xcf\xb2\x63\xae\xee\x10\x9d\xb3\xc4\x1c\x21\x9c\xec\xee\x66\x56\x97\xe5\xa9\x70\xd4\x86\xb5\xbc\x47\xe4\xbb\xf6\xc0\xfb\xbb\x57\x74\x6d\x12\x6a\xd3\x54\xf5\x44\x9b\x2e\xcd\x63\xef\xb2\x5f\xee\x80\x56\x1e\xa0\x76\xfb\xb0\xd8\x6b\xae\x78\x86\xc4\x11\xe6\x58\x78\x57\xed\x31\xe1\x5e\x2f\x79\x63\x2f\x39\x6a\x95\xd5\x14\x5f\xd0\x4b\xec\x75\x46\x42\x0f\xd4\xdc\x19\x1f\xab\x29\x31\x97\x74\x86\x99\x9f\xa2\xa0\xda\xa2\xb9\x92\x4f\xf3\xd1\x2b\x99\xdf\xac\xb7\xfa\xab\x36\xbe\xec\xcb\x95\x12\xbe\x32\x05\xe1\xb8\xdd\x8e\x5d\x1b\x71\x6d\x1b\xf7\x12\x86\x05\x10\xdd\x08\x7f\x45\x8b\x06\xaa\x41\xf1\xce\xc0\x9b\xb6\x20\x12\x2c\xba\x4a\x62\x1a\x30\xbe\xc5\xdb\xed\x72\xcd\x42\xbd\xc2\x23\x19\x72\xaf\xa8\xf7\x3d\xdf\xc8\x04\x93\x32\xf3\xe1\x1b\x99\xa0\x61\x28\x1b\xcc\xc1\x3e\x07\xba\xa3\x43\x22\x71\xd1\x20\x95\x54\xec\x5c\x9e\xd0\x68\xf0\xc9\x6b\xa4\x47\x79\x50\xaf\x31\x1c\x4c\xe8\x70\x88\x7a\xf0\x6f\x81\xdb\x3d\x23\x94\x16\x78\x5a\x79\x0e\x42\x59\x9e\x33\xc6\x8f\x2f\xce\x02\x38\x40\xbd\x03\xab\x34\x39\xa5\xb7\x96\x69\xc3\xa0\x6b\xee\x74\x95\x4e\xc1\xc8\x61\x0a\xb8\xf9\xc3\xe5\xa2\x62\x45\x26\x0c\x0a\x4a\xcf\x0e\xf2\xf2\x13\xfa\x54\x2a\x4e\x2d\xda\xed\x6d\x67\xa0\xd2\x09\xac\x38\xb2\xde\x8e\x67\x52\xf1\xa3\x62\x07\x48\xc1\x9c\x85\xa5\x06\x0f\xee\x62\xa9\x88\xd1\xf8\x44\x33\x9a\x86\x89\x7b\xb7\x57\x9a\x0d\x0f\x10\xb6\x66\xa6\xfc\x83\x3f\x63\x35\xeb\x51\x20\x4a\x5d\x57\xb1\x1a\xff\x98\xb4\x64\xda\xe0\x60\x50\xb6\x91\x26\x0d\xae\x06\x5f\x4e\x35\xd5\x01\x6f\xa6\x8a\x06\xdb\x6c\x31\xaa\x19\x2c\xb3\xb9\x0a\xe6\x44\x16\xce\xfb\x7c\xd1\x8f\xa9\x8c\x58\x9c\xea\x04\x80\x2c\x32\xb3\xd1\xdb\xee\x66\x9e\x8d\xea\xf4\x4b\xbf\xde\xcb\xb4\x91\xe2\x4d\xd5\x39\xa2\x5b\x70\x8e\xe8\x16\x9d\x23\xba\x05\xe7\x88\x6e\xd9\x39\xa2\x5b\x74\x8e\xe8\x7e\x91\x73\x44\xb7\xce\x39\xe2\x4f\x6d\xba\x3e\x97\xf8\x5d\x55\x93\xed\xcc\xc5\x4a\x00\xb3\x2a\x98\xa2\x7c\x6e\x8d\xc5\xfa\x22\x6c\xcd\xc5\xd6\x4a\xfd\xa7\xb4\xee\x6b\x8a\x45\xe6\xae\x03\x38\x22\xc9\x41\xe2\x5f\x8e\x2d\xfa\xb4\xb6\x78\xe7\xcf\x49\x84\x0b\x57\x72\x6b\x7f\x06\xe3\xb4\x31\x39\x6b\x03\xf9\x4a\x75\xb2\x47\x71\xb1\x7f\x3d\x89\xad\x7f\x02\x76\x1a\x04\x8e\xfd\x1b\x70\xef\x8d\x2c\x5c\xda\xa3\x2c\xc3\xaf\x9f\xd5\x9b\x6e\xd6\x5d\xfa\xc6\xf4\xaf\xc3\xfe\xdf\xec\x90\x51\x51\x53\x94\xcd\xde\xcf\xeb\x2c\x5e\xee\xaf\xd1\xe8\xcb\xe2\xc5\x50\xe6\xbb\x5d\x2f\xf8\x17\xdd\x7e\x98\xbb\xfd\x30\x23\xf4\xc2\xfd\x85\xb9\xfb\x8b\x55\xf4\xd4\x5d\x63\x58\x83\xd0\xcf\xbe\xec\x1a\xc3\x36\x5f\x63\xb0\xbb\xc0\x30\x8d\xdd\x99\xe0\x48\x87\x89\x9f\x4b\x84\xdf\x3f\xe7\x03\xd5\xfd\x22\x1f\xa8\xbf\x7f\x9b\x7f\x7c\xce\x89\x3e\x27\x58\x6a\x42\x77\x21\x9e\x57\xf1\xbd\x56\xd1\xf1\xc4\x98\x9b\x1f\x3b\x6f\x0e\x8f\x6e\x2e\xae\x3e\x8d\xde\x5c\x5c\x19\x94\x8e\x56\x65\x3b\x8a\xce\x74\x19\xc7\x6a\x0d\x0d\x70\xcc\x5e\x17\x15\x37\xdf\x7b\x59\xde\xb1\xc2\xee\x58\x6d\x62\xab\x51\xf5\xd6\xc8\x42\x35\x37\x39\x90\x6d\x20\x1c\xeb\x8f\x67\x75\xcf\x9a\xfa\x0c\x87\x2b\x38\x68\x6d\x72\x42\x81\x1c\x8c\x75\xce\x41\xf4\x71\xcb\xe4\x1b\x01\xb5\x46\xb9\xd6\x67\xa1\x4f\xbc\xb2\x99\x96\x16\x1a\x42\x71\x2b\xdd\xc5\xd2\x86\xa0\x3d\xeb\x0a\x04\x24\xac\xd5\x5b\xb0\x87\xf5\xea\xb1\x49\xc1\x93\xe5\x64\x82\x42\x8b\x89\x43\xf9\x83\x65\xf7\x22\x49\x64\x29\x48\x5d\x33\x70\xc3\x91\x67\xc9\x32\x9e\x5c\xd1\x69\xbc\x4c\x67\x36\x5d\x42\xee\xce\x42\x0c\x7c\x98\xc1\x04\x4b\x16\xaa\x6b\x29\x59\x45\xf1\x63\xf4\xa4\xa4\x27\x23\x5e\xa9\x73\xb4\x65\xda\x28\x23\xe6\xeb\x38\xd5\x98\x08\xff\x58\x19\x93\xd8\xe3\x6a\x53\x9d\x08\x40\x7f\x7b\x16\x31\x8e\x42\xf7\x5a\xa8\xf5\xbc\x13\xd1\x1c\xab\xeb\x47\x82\xa3\x50\xe2\x95\xd9\x75\x3d\x06\xb1\xbe\xd7\xec\x36\x66\xfc\xce\x60\x0a\xe3\x31\x6a\x4d\x92\x15\x25\x53\x13\xdd\x9d\x3d\xce\x54\x33\xdb\x54\xc7\x96\x1b\x3d\x87\x17\x04\xae\xc3\xea\xeb\xfa\x6e\x56\x6f\xd2\xb1\x09\x20\xc2\x25\x32\xfe\x20\x8d\x21\xf3\x9b\xb0\x06\x60\x35\x08\x01\x5a\xd9\xec\x18\x65\x02\xe6\x73\xaf\x28\x07\xf7\xe6\x2d\x4e\x37\x5f\x6e\x7f\x51\xa1\x95\xdc\x85\xab\x66\xd9\xcd\x48\xcd\x23\x1b\x4e\x40\x20\xab\xbd\xe7\xe1\xdb\x12\xed\xb6\xd4\xee\xca\xce\x57\x38\x77\x7e\xb6\x9e\xc1\x50\x48\x3b\x0e\x87\x6a\x76\x34\x59\x7f\x92\xe0\x89\xec\x62\xbb\x3c\xcb\xda\xa7\xdc\x2d\x88\xa2\xd6\x27\x0d\xae\x38\xa6\xa1\xc4\x7b\x9e\x28\xf7\xb3\x73\x96\xfb\xc6\x84\x81\xa8\xbf\x7f\x91\xa4\xdb\x5a\x76\x6e\xa3\xf1\xfd\xed\x52\x70\x2a\x3a\x09\x0f\x03\xe8\x62\x03\xc4\x57\x77\x9f\xfe\xf0\xc9\x99\xdd\xe8\xce\x0e\xfa\x24\x07\x74\xd8\x19\x59\x47\xf0\x9c\x8c\x43\x75\xb5\xad\x54\x4e\xf9\xe4\xc5\x55\xb3\x69\xb8\x6d\xaa\x67\xe9\x07\x55\x6d\x88\x40\x39\xff\x8b\xfc\xf1\xae\xd3\x3f\xff\xd0\x19\x5d\xf5\xaf\xfa\xe7\xc7\xfd\xab\xd1\xe9\xc5\xc5\xe5\xe8\xf4\xe4\xec\xe4\xc6\xc4\x47\xa8\xb1\x61\xfd\xb5\x9b\x65\xec\x05\x4d\x30\x3e\x55\xd2\x2b\xdd\xd2\xcb\xc7\xf8\xdd\x16\xe3\xa6\xef\xe0\x2b\x4c\x25\x1d\x4b\x3a\x09\x9c\xce\xee\x17\xb9\xb3\x53\x1c\xd0\xef\x09\xe3\xa0\x6d\xc7\x3f\x4b\x94\x41\x8b\xde\xd0\x72\xe7\xae\x6f\xa4\x25\xc7\x6f\xa4\xa2\xa0\x24\x7e\xa0\x2d\xb3\x10\x4d\x35\x52\x94\x65\x6a\x0a\x61\xa1\x7e\xdd\xc8\xd6\xac\x5a\xae\x62\x93\xfe\xae\xd6\x26\xfd\x5d\x21\x86\xf8\xbb\x61\x9d\x35\xfb\xfb\xda\x2f\xbf\xf7\xad\xd9\xdf\x0f\x7b\xb3\xce\x38\x66\x94\xcb\xd7\x4b\x16\x4f\xa8\xd0\x4c\x6b\xa4\x76\x90\x61\x92\x23\xe1\xa7\x2c\x97\x36\x75\x22\xa3\x8f\x57\xf4\x8e\xa5\x52\x3c\x59\xd9\x79\xa4\x16\x89\x71\x3a\x79\x93\x88\xe3\x8b\x33\x2b\xf0\x8e\x7c\xee\xe9\xd5\x09\x21\x3c\xfa\x67\x21\x47\xf2\xee\x9e\xc3\x78\xbc\xb2\xeb\x7a\x05\xe5\xf3\xcf\xe9\x3c\x79\xa0\x93\xab\x62\x2d\xb7\x7a\x08\x84\x6d\xe2\x47\x4a\xb0\xe4\x93\x0b\x38\x79\x40\x83\x5e\x15\x52\x59\x81\x5d\xb1\x69\x68\x08\xf5\xf0\xf2\xf2\xf4\xe4\xe8\xf0\xe6\xe4\xe2\x7c\x74\xd3\x3f\xbb\x3c\x3d\xbc\xe9\x8f\x3e\x5e\x1d\x5e\x5e\xf6\xaf\xbc\x24\x30\x05\xeb\xd0\x42\xe2\x55\x51\x9c\x2a\x0a\x48\x19\x00\x99\xd0\xc7\xb0\x21\x12\xeb\x2f\x58\x67\xb9\x95\xd3\x59\x5d\x0c\x0e\x6b\x32\xe8\x19\x6b\xe8\x84\x3d\x04\x99\x36\x71\xd6\x5c\xa8\xed\x04\x7b\xce\xd5\x9b\x65\x76\xd9\x20\xb3\xcb\x92\xcc\xce\x5e\xe0\x63\x2d\x55\xb1\x67\xd5\xdc\xb2\x5e\x23\x57\xd4\xba\x95\x0b\xb1\x09\xf8\x60\x15\xa2\x50\x11\xc4\x74\xcc\x65\x11\x59\xe8\x49\x86\x54\x0b\x8c\x98\x15\x72\x1f\xe6\x2f\x50\xe6\x24\xcb\x91\x26\xbb\x63\x0a\x0c\x4b\xf7\x12\x8e\xf8\xf1\x52\x88\x27\x14\x32\x64\xf0\x89\x74\xb9\x9b\xa4\xf6\xee\x04\x39\xe6\xe5\x8b\x2b\x15\xb6\xd2\x4a\xc1\x06\x9b\x80\xc9\xee\x25\x0d\x4d\x6e\xfd\x21\x35\x1f\xab\xf5\xdd\x87\x9c\x81\xf4\x71\xeb\x83\x0c\x2d\xa7\xa0\xfc\xa1\x86\x67\x60\x8e\x05\x66\xc5\x3d\x6a\x47\xa0\x19\xb7\xda\xc7\xa1\x8e\xd8\xb6\x72\x45\x25\x80\xa8\xfe\x74\x82\x2f\x14\x17\xa2\xcf\x65\x64\xd2\xe2\x60\xab\xca\xbd\x06\x72\xa8\xe5\x8f\x25\xaf\xad\x6a\x42\x63\x2a\xe9\x56\xcd\x87\xd5\xea\x87\xba\x43\x8a\x39\x95\xf4\x4f\xa5\x1b\x9d\x61\x89\x1a\x24\xde\xb8\x9a\xd3\x88\x2f\x17\x6a\x2a\xd4\xad\xd8\x4a\xae\x25\x9e\xda\x6e\xd3\x82\x76\xa9\xec\xee\xad\xda\x2f\xd6\x54\xe6\x65\xdb\x25\x9e\x8c\xec\xe9\x2d\x89\xc7\x9a\x1d\x40\x2a\xfc\x72\xf1\x52\xbb\xbb\xfb\x96\x56\xe4\x40\x0c\x5b\x5c\x8b\x77\x21\x05\x9c\x14\xef\x90\x76\x22\x8c\xc0\x7b\x10\x0a\x5f\x2b\xde\x95\xba\x62\x7d\xca\x46\x55\x89\x6e\x04\x8e\xe6\x87\x71\x0c\x2c\x3f\x44\xf6\x1e\xf2\x3a\x59\xf2\x49\x5a\xc7\x9a\x06\x77\x2e\x0b\xfd\x4a\xdb\x4b\x6d\xba\x20\xd9\x29\xfc\x56\xe2\x36\x13\xa9\x3c\x4f\x26\x8a\x1d\xb9\xbf\x43\x84\xd5\xb1\x64\x1e\xdb\x3f\x43\x3d\x98\x71\x03\xeb\x29\xc1\xb7\x53\xfe\x00\x69\xb8\xf4\x99\xb3\xa0\x02\xe4\x92\x34\x44\xa5\x28\x60\x7d\xaf\xf2\x76\x43\x75\x44\xc5\x15\x69\x39\xe8\x3c\xf0\x59\x17\xce\x56\x61\x92\xec\xe3\x4f\xd2\x82\x8e\x21\x5c\xde\x6a\xa9\x27\xd1\x86\xe5\x96\xd3\x46\x48\x9d\x12\x65\xa8\xcd\xee\x80\x73\xbd\xf3\x18\x33\x75\x49\x9a\x24\x2b\x51\x14\x94\x9d\x91\x4e\x17\x78\x99\x17\x18\x98\x02\x73\x09\x1f\x19\x28\xb5\xc8\xb3\x66\xa5\x24\x2a\xde\xda\x5a\xc9\x8f\x84\xb6\xdb\xdb\xe9\x7a\x1d\x46\xf6\x8a\xd6\x29\xdf\xd0\x48\x8a\x2b\x5f\x6a\x8f\x70\xb1\xe4\x27\xbe\xd0\x8f\xc2\x08\x1b\xed\x4f\xa0\x38\x23\x5b\xaf\x53\x94\x65\x35\x92\x4b\xdc\x39\x7a\x7f\x75\xd5\xd7\x71\x3b\x2e\x16\xc4\x5d\x0b\xbc\x3b\x81\xbe\x81\xb1\xf5\xda\x0e\xfc\x47\xaa\x5d\x1a\xf6\x6d\xc2\x71\xb3\xd1\x96\xea\xec\x4e\x16\x70\x27\xcc\x6f\x09\x4b\xd4\x72\x3b\x6c\xaa\x2e\x09\x0e\xab\xbc\xb0\x61\xdb\xed\xb7\xd2\x46\x54\xca\x26\x0a\x20\x45\x71\x77\xbb\x5e\xf6\xb2\x9b\xb5\x2a\x93\x75\x0d\xda\xf2\xf6\x9e\xce\x2b\x54\x26\xb6\x10\x61\x4a\xb6\xbb\x6e\x1a\xa8\xdb\xe6\xcf\xcf\x1d\xce\x41\xd8\x61\x2f\x15\x2e\x63\x16\xfc\x5f\xbd\xb0\x33\x8b\x9a\x45\xc7\x0c\x36\x6e\x91\x91\x90\xda\x5b\x8c\x4f\xed\x75\x10\xc8\x74\x20\xbd\x0b\x49\x56\xdd\x02\x16\x18\xb5\x5b\x96\x76\x69\xfd\xc2\x54\x8f\x36\xbf\x63\x85\xcb\x85\x2d\x7a\xc1\xc7\xd4\xea\x24\x03\x3f\x39\x89\x70\x75\xe8\xba\xcd\xad\xab\x09\x14\xc2\xe7\xbe\xf5\x44\xb4\x5e\x57\x96\x46\x9f\xbe\xd5\x45\xb4\x64\x56\x37\x0a\xbb\x2e\xe6\x0e\x68\xc0\x97\x37\x70\x25\x03\x51\xa1\xd7\x91\x0a\xf2\xab\xd6\xdf\xfd\xf6\x57\x1d\x19\x9f\xf5\xb8\x7d\x49\x74\x7b\x47\x71\x3f\xda\x29\x88\x39\xb4\x28\x1e\xe0\xed\x3d\x4c\x3b\x56\xde\xa9\xa4\xfa\xad\x3b\x3b\x2a\xa8\x00\x87\xe3\x31\x4d\x21\xfc\xff\xbf\xb5\x62\x43\x7f\xf4\xdf\x5b\x2c\x05\xac\x80\x28\x8e\x93\x47\x3a\xd9\x62\x7c\x8b\x27\x7c\x97\xe5\x6a\xe1\x2d\xcf\x70\x95\x6e\x85\xe9\x72\x3c\xdb\x8a\xd2\xad\x37\x51\x2a\x5f\x27\x89\x44\x9d\x40\xeb\x80\x7f\x85\xf8\xe4\x13\x4e\x85\x74\x33\xfd\x9b\x9e\xe9\x9f\xfe\xef\x99\xe9\xee\x97\xce\xb4\x07\x1d\x50\x0d\x7c\x2b\x4c\x8c\x9b\x51\x37\x3d\x3f\xe9\xe9\xa1\x82\xac\x0c\x58\xa4\xa8\x5e\x3e\x7c\xc5\x33\x2d\x18\x7b\x2a\x56\x1e\x93\x1d\x4a\x64\x19\x16\xe2\xaf\x19\x6f\x34\xf8\x86\xfc\x32\xbf\xf2\xcd\x37\x3c\xdd\xbb\xe6\xe0\xd9\x97\x5e\xec\x4c\xc0\x29\x17\x5f\x16\x73\xfd\x8c\x59\xf1\x0b\x63\xae\xf7\x9e\xb7\x37\x30\x51\xef\x48\xcd\x84\x71\x75\x16\x38\x6a\x5c\xa5\x7f\x30\x2c\xfb\xf9\x6b\x31\x17\x19\xe6\x1b\x3c\x62\x8b\x5e\xaf\x05\x77\xca\x56\xd5\x29\x92\x09\xe3\x09\xb9\xb2\xae\xb1\x26\x58\x5b\xdd\x2a\x9f\x16\x6a\x81\x3d\xe7\x36\x48\xb4\x08\xba\xce\x46\xa3\x9b\x97\x96\xa2\xec\x29\x19\x15\x3d\xe5\x74\x65\x38\x25\xd6\x01\x33\x5c\x8d\xf5\x82\x7a\x9e\x8d\xaa\x0b\x91\x93\xb1\x1c\x55\xea\xe7\xd8\x26\xc2\xef\xa5\x59\x53\x3c\x76\x1e\xa9\xa8\x8b\xfa\x97\xfb\x5f\x43\x89\xbe\x30\x44\x7b\x83\xc3\x07\xe4\xec\x15\x5e\x53\xfb\x79\xea\x50\x61\x93\x54\x3a\x68\xca\x4d\x41\xdc\x65\x53\xbe\xaa\x0c\xb6\x96\x10\x08\xa7\x46\x41\x40\xa3\xfb\xb3\x68\x81\x97\x0e\x68\xf9\x0e\x5c\x36\x34\x41\x5d\x4c\x73\x15\x74\x2c\x0a\x26\x99\x14\x3c\x8d\x0c\x7f\xf0\xc0\x87\x04\x10\xb9\xbb\x25\xd2\x7d\xad\x11\x95\xfb\x20\x2f\xa6\x02\x1c\x20\xa5\xf3\xfa\x4d\x4d\x96\x74\xd4\x92\x64\x29\xd4\x44\xfa\x81\xe7\xb1\x08\x57\x53\x93\x80\xb7\x81\xef\x47\x02\x78\xb0\xcd\xe1\xa7\xf6\xa9\xc9\x0f\xeb\x25\x24\x48\x04\x89\x3a\x66\x7c\x36\xcd\x1e\x4b\x6d\x7a\xd5\x4a\xd2\x0b\x3d\xc7\x95\x75\xcc\x53\xce\xba\x54\x23\x4f\x0b\x9a\xa1\x0c\x21\x9c\x88\x2f\xca\xbd\xa8\x73\x6b\xea\x03\x61\x2a\x48\x22\xf0\x4c\x90\x3f\xea\x50\xcf\x6f\x3b\x71\x32\x36\xfc\xc1\xaa\x89\x11\x9e\x88\x67\xec\x9c\x46\xe7\x2c\x36\xc3\x85\x6d\xf2\xa2\xf7\x6e\xf9\xb6\x32\xfb\x87\xba\x48\x2a\xde\x60\x8e\x2c\x80\x4a\x4d\xbd\x5c\x5b\x5b\xa2\x5c\x73\xc8\xed\x1d\xbc\xf1\xf0\xf8\xc2\x96\xd8\x34\xac\x6b\xa5\x53\x38\x2e\x6a\x90\x90\x45\xde\x09\x0b\x46\x6a\x1b\x75\x6c\xc1\x9c\x51\x35\x20\xb8\xcc\x38\x80\x64\x85\xd3\x8b\x95\x4f\x2f\x13\x9f\xa1\xe3\xa2\x37\x98\x34\xdd\x70\xfd\xf2\x06\x1f\xc8\x56\x52\xc5\xe9\x79\xae\x1a\xfb\x45\xa9\x22\xc7\x46\x1b\x34\x7b\x1b\xeb\x74\x1f\xbf\x83\xf1\x97\xaa\xbe\x8c\x84\x64\x51\xfc\xf2\xea\xcc\x07\xa6\x1a\xb0\x78\x2d\xbe\xf0\xac\xdf\xfb\x4b\x67\xfd\xde\x17\xfb\x16\xe4\x9c\x70\x2e\x1a\xa3\x4c\x3a\x51\xfa\xc4\xc7\xa7\x6c\x4a\x8f\x9e\xc6\x31\xb4\xa6\xae\x63\x69\xce\x20\x1f\x36\x7c\x3c\x71\x4c\x1c\x36\xed\x93\x68\xd6\xf5\xff\x3d\xd2\x03\xab\x93\x1e\x58\xfd\x99\x6c\x54\x79\x58\x7d\x33\xa1\x31\xbd\x53\xb2\x75\x42\x84\x17\xaf\x10\x29\x19\x97\x93\xc4\x05\x8b\xda\xf8\x75\x33\xf7\x96\x86\xc2\xf2\x99\xae\xbd\xba\x31\x2f\xe8\xcc\xef\x44\xc8\x70\x6a\x1c\x50\x58\xe3\x91\x09\x67\xa5\xeb\x50\xd5\x55\x3d\x12\x77\x69\xcb\x84\x4c\x28\x5a\x01\xb0\xe6\x96\x1f\xf7\x60\x91\x5c\xf3\xfe\x69\xfc\x7f\xf6\x8c\xbf\xa8\x6b\xb4\xe8\x93\x3a\x17\x90\x02\xd9\xc3\x3d\xca\x2b\x16\xb6\xda\x0d\x0e\x85\x2f\xa8\xf6\x7d\xa9\xbf\xba\x5a\xc5\x0d\x13\x2e\x0b\xb0\xf2\xcf\xd7\x2b\xbd\xef\xf2\x8a\x1a\x05\xa0\x86\x5a\xcc\xba\xfd\x6a\x65\xb0\x52\xad\xb6\xda\xcd\x62\x8a\xda\x1b\xae\x01\x74\x60\x3c\x63\x36\x59\x79\x6a\x3a\x96\x43\x73\x17\x4d\x6b\x02\xaf\xbc\x2d\x2e\x8b\x3b\x2f\x7f\x93\xd9\xae\x36\x7a\xde\x28\x82\xea\xc8\xe8\xce\xac\x64\xbd\xb7\x33\x5a\x35\x9b\xc3\xca\x01\x8d\x35\x98\x43\x0d\xd7\xa4\x72\x9c\xa3\xbe\x26\x21\x7c\xd7\x28\x0e\x58\x17\x36\xe3\xfb\xa0\xa7\xe8\x45\x50\x38\xc5\x0d\x43\x78\x9d\x83\xd2\x66\x27\x0c\x47\x2a\xb2\xe2\x3b\xa7\x8d\x00\xae\x02\x8f\x33\xd8\xe3\xe0\xb6\x7c\x4d\x76\xa3\x78\xde\x49\xd3\x8d\x53\xd4\x3b\x55\xda\xab\xf6\x93\x70\x16\x4f\x6f\xea\xbd\x29\xae\xba\x69\xbe\xcc\x15\xd3\xf3\xc0\x2c\xc8\x09\xd8\xf6\x0c\xee\xef\xa3\xbf\x74\xe2\x7d\x29\xa2\x58\xf9\xc4\xdb\x7b\x1e\x51\xec\xf1\x1f\x3f\x80\xbe\xc0\x29\xd4\x8b\x03\xf8\xab\xda\x85\x97\xdc\x8f\x47\xa2\xee\x76\x5a\xc2\xc5\xaa\xb9\x2b\xba\x12\xb3\xce\xf9\xfb\xd3\xd3\xdc\x02\xfa\x85\x37\xc4\x2f\x01\xe6\x42\xb8\x2f\x2a\x01\xe1\xf5\x78\x5a\x8f\x22\xc3\x9f\x9b\x64\xc9\x52\xfc\x63\x17\x79\x42\xcf\xb5\xf0\x97\x20\x2f\x08\xe2\x39\x14\x06\xe1\xdc\x19\x6d\x72\xc4\x08\x83\x28\xa2\x81\xdd\xf8\x8f\x7b\x07\x15\xd8\x07\xf5\xfd\x9e\x0b\xa5\xd5\x48\x0f\x3d\x80\x20\x51\x1f\xbc\xaa\xff\xe0\x55\xf9\x03\x96\x0b\x59\x17\x9e\x90\x55\xb8\xb5\xd1\xca\x10\x1d\xc0\x41\xb0\xeb\x0a\xf6\x82\x5d\x48\x8e\x3f\x65\x34\x9e\x04\x79\xb5\x87\xcf\xce\x81\xad\xcd\x03\x21\xc1\x9c\x88\x81\xf0\x90\x94\x18\x29\x0d\xb8\x38\x43\xe5\xc1\x72\xd4\x63\x5a\xdb\xce\x2c\x18\x06\x43\xbd\xc0\xeb\xd6\x7d\x41\xa4\xcc\x9f\xdf\x88\x8a\x36\x05\x47\xad\x02\xd8\x6c\x1e\xbc\x3e\x78\x3b\x44\x09\x11\x38\x22\xea\x4f\xdf\x60\x66\x4b\xb4\xf2\xa8\x61\x92\x1e\x84\x09\x91\x38\x52\x43\x81\x9a\x52\x25\x99\x98\x3f\x07\x62\x88\x7a\x7e\x1b\x24\x6d\xb7\xc3\x84\x50\x55\xb9\xbb\xe0\xd7\x1a\x53\xca\x6e\x49\x58\xfb\xe7\xea\xc0\x61\xb8\x0b\x76\xf7\xc5\x0f\xd4\x61\x71\x7a\xae\x4a\x62\x68\x98\xf9\xca\xe4\xb3\x4f\x14\x2f\xd2\x2a\xd3\x5b\x1a\xf7\x82\x7f\xdb\xec\xfe\xe3\x38\x49\x97\x82\xee\xea\xee\x06\x5f\x94\x86\x55\xfb\x83\x98\x2f\x31\xab\x2a\x09\xb6\x96\xe0\xd2\x65\x58\xa2\x71\x11\x1c\x24\x38\x1a\x76\xc6\x09\x1f\x47\x32\xe4\xa1\x44\x08\x65\x06\xf6\xfb\xa8\x56\x12\xaa\x53\x76\x68\xe4\xea\xf5\xba\x2e\x2b\x88\x53\x3e\x40\xf6\xbe\x20\xe8\x39\xd8\x14\x6f\x0b\x9f\x15\xaf\x1e\xde\x4e\xb0\x54\x3b\x8f\x16\xe1\x91\x40\xda\x29\x2d\x08\x3c\x77\xc2\x2b\x51\x0b\x2a\xbd\xa5\xfd\x86\x2f\x05\xb9\x12\x3e\xd0\xda\xef\xcf\xee\x94\x9a\x04\xb3\x9e\x4d\xcd\x83\x0c\x01\x78\x34\x25\xc8\x1b\xc7\x6a\x84\x93\x2a\x99\x44\x1e\x99\x24\x08\xa7\xa4\xbb\x9f\xfe\x90\xec\xa7\x3b\x3b\x28\x1a\xa4\x3e\x99\xa4\xd6\xce\xdf\xb0\x09\x0e\xd4\xff\xcc\xea\x09\xcc\xec\xa2\x45\x8a\xcb\x80\x0e\xdd\xea\x62\xf0\xe0\x52\xb8\x35\x65\x38\x2a\xe0\xc7\x1f\x8b\x0a\xa0\x2a\x21\x72\xbd\x06\x18\x24\x79\x50\x3e\x1b\x7a\x95\x80\x7c\xc0\x3e\x28\xe1\x1b\x1d\x2c\x41\xa0\x2b\x40\x7e\x51\x0b\x5f\x07\xb0\x1d\xcd\x06\x01\x77\x7f\xdb\x6f\x80\x1d\x4a\x93\xa5\x18\x7b\xb9\x19\x2c\xc2\x50\xfe\x44\x60\x0e\x8e\x0d\x1e\xc8\x90\xc6\x91\xc9\x8b\x94\xc7\xe5\xc4\x2b\x28\xf7\xe2\x5c\x1f\xb9\x20\xb0\x19\x0c\x0c\x33\x80\x03\xfb\x12\x9b\x51\x9e\xe3\x00\xaa\x65\xe9\x51\xc2\x53\x09\x39\x33\x60\xcd\x84\x77\xa8\xd0\xc7\x2d\x09\x5f\x6c\x4c\xa7\xb6\x19\x68\xc7\x4e\x98\x95\x81\x8b\x13\x66\xdd\x23\xec\xf4\x58\x17\x89\xc2\xc4\x97\x8e\x89\x2d\xae\x01\xe7\x43\x49\x8e\x4d\x3c\x4c\x69\xed\x30\xaf\xa4\x1b\x82\x49\x33\xe6\xee\xd2\x9a\x19\x99\x39\x5f\x59\x94\x6b\x97\x33\xcc\x07\x9f\x86\x05\xa2\xca\x95\xd1\x75\x4d\xe7\x1a\xf7\xc6\x61\xd8\xb4\x83\xbf\x68\x09\xf0\x64\x13\xcd\x6e\xce\xbd\xe8\x68\xf7\x56\x44\x7c\x3c\x7b\x79\x2a\x19\xd6\x4c\x57\x2c\xaf\x6c\x88\xf4\xf6\x9f\x10\xa9\xbe\xd0\xd8\x4c\x8a\x25\x68\x6c\x26\xfe\x92\x34\x8f\x35\xf4\xe7\x01\xa7\x79\xe1\xc4\xad\x3a\xa2\x64\xe8\xc0\x69\x29\x0e\x44\x8f\x1b\x92\x64\x3a\x58\xfb\x0b\xe0\x9e\xd4\x28\x72\x24\xa7\x1c\xf3\x49\x27\x0d\x2e\x20\x3e\xc1\x13\x37\x07\x45\x2a\xa2\x9a\x8a\xa8\x97\xd9\x16\xd6\xd1\x2d\xda\xa9\x28\xaa\x65\x72\xc6\xbf\x1f\x4a\x32\x4e\x78\x9a\xc4\x14\x75\xe2\xe4\xce\x5e\x19\xbc\x0d\xa7\x03\x09\x45\x09\x55\xe9\xec\xfd\x4d\x80\xf0\x9f\xe5\xc7\xd7\x17\xef\xaf\x8e\xfa\x81\xd7\xf6\x3b\xa1\x7d\xe7\xf2\x36\x5d\x6e\x3e\xb8\xca\xfa\xaa\xa5\xeb\x8e\x97\x91\x39\xac\x62\xb4\xd8\x2e\xe9\x3e\xbd\x16\x64\x10\x44\xb1\x0c\x70\x00\xd0\x9f\x01\x0e\xe6\x54\x46\x01\x0e\xc6\x52\xc4\xc1\x10\xbf\x17\xe4\xdb\xff\x35\x8e\xd9\xf8\x7e\x3d\x4f\x96\x29\x5d\xcb\x64\x39\x9e\x7d\xdb\x5a\x74\x0e\xa1\x6f\x06\x49\xda\x39\x1f\xd2\x89\x7e\x9e\x42\x0f\x3f\xd6\x39\x23\x52\x23\x4c\x9d\xb8\x7e\x3f\x5b\xd9\x40\xc3\x47\x65\xf8\x8f\x67\x2a\x34\x3e\x8a\x2f\xa9\x30\xc3\x1f\x9e\x51\x2d\xe8\xf8\x1a\x48\x3a\xbf\xf2\xbd\x0e\xec\xc5\xc3\xb6\xea\x54\x0c\xf0\x1b\xfc\x88\x85\xff\x04\x4c\x90\xbc\xa4\x7a\xb0\xd7\xed\x7c\x4d\x49\x62\x98\xd8\x7c\x11\xb3\x31\x93\x37\x1a\xc4\xc4\x44\x4f\x4e\x92\x39\x31\xae\x2d\xf4\x81\x72\x80\x74\xd2\x3b\xe0\x8e\xca\xbe\x7d\x12\x7a\xc9\xa4\x96\xcf\x98\x47\xdc\x47\x4d\x2e\x31\xae\xaf\xda\x1a\x99\xf0\x1c\x13\x68\xbd\x0e\x80\x28\x02\x63\xfa\x38\xcc\x07\x5a\x2b\xf5\xe4\x22\x4c\x69\x5e\x2c\xb4\x85\xf1\x2f\xaa\x7f\x0b\xde\x46\x54\x11\x41\xe9\xfd\x40\x0e\xcb\x47\x08\x35\x3d\x32\xb3\x57\xcf\x34\x8a\x53\x6c\x0f\x30\x37\xde\x7c\x9a\x00\xd2\x44\x0b\xdd\x01\x3a\x90\xc6\x2c\x6b\x7e\xdb\xa6\x7b\x3e\xd7\x30\x56\x94\x3a\x3a\x05\x25\x82\x20\x25\x5a\xb1\x07\xa3\x6b\x1d\x12\x7a\x42\x43\xb7\xcb\xdb\xdb\x98\xa6\x80\x3d\x69\x1e\x2d\x04\xac\xfe\xb1\x4e\x17\x14\x40\x5e\x4b\xfd\xc6\xb8\xc0\xfc\x4c\x9f\x52\xb0\x19\x5b\xda\xd0\x63\x04\xc8\x1d\x80\x00\x65\xe5\xbb\x59\xf1\xc2\xec\x20\x97\xf4\xdf\xef\x45\x47\xd2\x54\x86\xda\x78\x6b\x6d\x9b\xe0\x2f\xc2\xd2\x6b\x35\x8f\xf4\x48\x11\x82\xf6\x29\x26\x41\x90\x99\x2c\x62\x46\xbc\x8b\xf8\x53\x80\x7e\x24\x5d\x9b\x18\xbf\x5b\x4a\x41\xf0\x5a\xf8\x39\x08\xd8\x34\xa4\x83\xd7\x62\x20\x86\x3b\xc1\xcf\xf4\x29\x18\xb6\xdb\x1a\x2f\xd7\x55\x08\x2f\x91\x4b\xb3\xef\xee\x97\x59\x48\xb1\xb3\x82\xa3\xf5\x5a\xc3\x9d\x3a\x75\xbd\x4e\xf4\xe0\x4f\x9d\x9a\x90\xf5\x9a\x76\x52\x99\x2c\x2e\x45\xb2\x88\xee\x22\x4d\x27\x38\xec\x62\x7d\xd1\xf1\xf0\x56\x1c\xf5\x14\x89\x1d\xa4\xf8\x15\xdc\xc5\x28\x36\x77\xb3\x14\xdc\x05\xb4\x7e\xb7\x55\x73\xa1\x01\x49\xbc\xee\xf9\x41\xc8\xb5\x02\x50\xa8\xd3\x80\xf2\xc9\xc1\x57\x5c\xdb\xb8\x7f\x6d\xd3\xd5\x98\xf3\x28\xc5\x83\x5c\xa8\xa7\xea\x96\xd6\xfb\xcb\xf5\xab\x1a\x6d\xed\x14\x65\xe8\xaf\x57\x29\x0a\xf5\xfd\xf5\xea\xfc\x1b\x8f\xaa\x31\x43\x38\x46\x0d\x5e\xd8\x7f\x08\xeb\x8a\xa8\xe3\xd4\x9a\x8e\x07\x13\x7c\xd6\x14\x51\xfa\x8c\xd7\x07\x8e\xf0\x12\x82\x1e\x73\xe3\xd2\x98\xc4\x7a\xfb\xe3\x29\x89\xfd\x2b\xe5\x8c\xc4\x8a\x95\xb7\xd8\x34\x9c\x3a\x64\x4f\x04\x58\xd7\x53\xa3\x99\x0a\x97\xfa\xcf\x3d\x84\x06\x6f\x87\x28\x22\x4b\xad\xe0\x58\xfa\x68\x32\xad\x88\x2c\x73\x37\x5c\xb3\x01\x27\x64\x30\xc4\x0b\xf2\x6a\x7f\xf1\x83\xad\x7c\x7f\xb1\xb3\x83\x26\xda\xb5\x18\x6a\x5d\x18\xf4\xa7\xb9\x96\x51\x96\x4b\x36\x41\x61\xc1\x94\xf5\x41\x5d\x2d\xe6\x38\xc2\x13\x3c\xc6\x53\x9c\x60\x86\x67\x30\xc1\x06\xf2\xa6\xde\xa0\x91\xcc\x41\x88\x32\x07\xaa\x86\xfd\xb0\x67\xf8\x47\xed\xf4\x5f\x0c\x48\x11\x38\x50\xc2\xef\x6e\x71\xad\x83\x6a\xe4\x4a\x5d\xc1\xdd\x60\x87\x1b\xb1\x72\x83\x77\x4a\x51\x7d\xb6\x87\x5a\x72\xf0\x76\x08\xe1\xea\xde\xc1\x9e\x0b\x50\x98\x7a\x07\x31\x2d\x9d\xc2\xee\x10\x6a\x30\xb4\x80\x8d\x45\xbe\x08\x06\xc3\x21\x5e\xbe\x7d\x91\xd9\xc0\x5a\xc8\x37\x5a\x0d\x8c\x8e\xbf\x50\xb6\xa7\x71\xfd\x7a\xd4\xd7\xe4\x17\x35\xac\xfc\xe0\x57\xd1\xfb\x4d\x64\xf8\xe7\x97\x19\x65\x4a\xf2\x92\xeb\x85\xe9\xd5\xdc\x9a\xff\x85\x67\xa2\xf9\x1b\x8c\x31\xb6\x5e\x77\xd6\x6a\x33\xa9\xa9\xc4\xb9\x10\x14\x04\x74\xbd\xe5\xbf\xf9\x1b\xb7\xbc\x8d\x0f\xf1\x37\xba\x6f\x60\x36\x5f\xe5\xdd\x29\x2e\x1d\xe6\xae\x73\xfe\x76\xfb\x19\xb4\x2f\xf9\x90\x19\xe6\xcf\x12\x5b\x6e\xd5\xdb\xbc\x2b\xed\x6e\x2c\xa0\xf1\xe4\x2d\x11\xea\x66\xb6\xc5\x6d\x45\xae\xfb\x0c\x17\xe7\x73\xe3\x56\x73\x70\x47\x05\xe3\xb6\xab\xdd\xde\xca\x5c\xe5\xbc\xe0\x15\xf6\xf2\x7d\x83\x7f\xf9\x7b\x16\xb4\x92\x3e\xe8\xc5\xd6\x8e\x9a\x19\xaf\xcf\x0f\xa4\x9f\xbe\xcc\x34\x02\x43\xfb\x55\x7b\xb9\x7d\x23\xf0\x6f\xfa\xaf\x5f\x04\xfe\x49\x2b\x2b\x31\x2d\xe6\x9d\x12\x4f\x2e\x80\xa5\x29\xfb\xde\x84\x3d\x04\xa0\x83\xf6\x02\x44\x27\x13\xe0\x68\xa7\xea\xea\xc4\xa9\x08\x8d\xc8\x5f\xa3\x18\x16\x3b\x3b\x19\x5e\x25\xc6\xb8\x86\x70\x8d\x02\x12\xaa\x3a\xd0\x37\x01\xf8\xdb\x56\x87\x7a\x21\xad\x74\x4b\x17\x80\x7f\x02\x84\x3a\x8c\x33\x59\xf8\x08\x6f\x77\xf1\x76\x17\x41\xb2\xa4\x74\x11\xc9\xf1\x4c\xbf\xa6\xb5\x8f\x20\x32\x28\x1b\xab\x67\x21\xf7\x32\xd5\xab\x69\x94\xfc\x59\x60\x09\x1d\x1a\x63\xdc\x1a\x5c\x68\x7d\xe9\x2e\xa8\x78\x97\xcc\x2f\x5f\xa0\x72\xd9\x44\x62\x7a\xfd\xdf\x88\x64\x5e\xbe\x35\x15\x62\x8d\xcc\x4e\xb1\x3e\xa6\xb9\xee\x58\x74\xd4\x74\x83\x35\x6a\xa1\x2e\xf8\x0f\x05\x8f\x95\x16\xb7\x60\xff\xaa\x54\xbb\x1d\xba\xbf\xed\x45\xb4\x34\x28\x84\x99\xfd\xc2\x54\x67\x3f\x32\x3f\x9d\x79\xb8\xfc\x5d\x62\xbf\x33\x4d\xdb\xef\xcc\x4f\x7b\xab\xad\x7c\xc7\xd7\x6b\xb6\x5e\x27\x07\xb4\x84\x20\x01\x54\xc4\xb1\x69\xb6\xc7\xb0\xa9\xa8\x97\x64\xbd\x42\x49\x03\x37\x64\x62\xa4\x1a\xad\x5f\xad\xc8\x76\xd0\x1d\xd7\xb6\x8b\xf9\xf9\x1d\xd5\x77\xd2\x78\xf9\x94\x2b\xf7\xec\x5b\xa9\xad\x7c\x99\x52\x71\x29\x92\x07\x36\xa1\x13\xeb\x1b\x65\xdb\xa9\x7b\x67\x2f\xf3\xb5\x4d\x2e\x89\xce\x52\xc0\xdb\x6d\xbe\x5e\x6f\xef\x39\x88\x07\xbf\xb4\x92\x03\x97\xe8\x01\xa0\x5f\xcd\x8c\x9b\xaa\x1d\x31\x39\x35\xfd\x36\x54\xd5\x6e\xab\x67\x60\xca\xc6\x31\xa6\x08\xeb\x6f\xc2\x9f\x04\x96\x28\xd3\x89\x1e\x8b\x35\xa5\x0d\xa2\xb2\xa9\xc7\x1d\x19\xc5\xe9\xc4\x85\x4a\xb0\xbf\x6a\xf6\xa4\x15\x9c\x74\x31\xe7\xa4\x9b\x6b\xb9\x0a\x29\xb6\xf8\xce\x0e\xa6\xfc\x80\x9a\x20\xd2\x22\x23\xd2\x85\x7a\x2e\xa8\x1f\xa0\xa9\x0c\x99\x6c\xf8\x64\xbb\xab\xae\xea\x0d\x6f\x3d\x83\x50\xe4\x75\x44\xb8\x8e\x54\xd8\xe1\x33\xbd\xa8\x2d\xaf\xbb\x50\xf7\xca\x64\x44\x69\xe4\x46\x86\x17\x5d\xbf\xbf\xbc\xbc\xb8\xba\xb9\x1e\xf5\x3f\xf4\xcf\x6f\x46\x17\x97\x37\x27\x17\xe7\xd7\x84\x9a\x5d\x5d\xcc\x30\xba\xd1\x41\xb6\x41\x68\x71\x91\x6f\xc5\xf4\x4a\x65\x6f\xd3\x82\x5c\xe3\x0b\x28\x52\xd5\xf4\x9c\x4c\x62\x32\x01\xd1\x83\xe2\x71\xd9\xa3\x9b\xc4\x94\x3c\x21\x6d\x48\x4b\xec\x33\x44\x58\x2d\x9a\x23\x47\x4f\x34\xc7\x34\x27\x44\xea\xa8\x10\xd3\xd2\xc6\xdb\x6b\x12\x59\xea\xb2\x1a\x15\x24\xa5\xbc\x25\x6b\x7d\x82\xb6\x94\xb8\x64\x5a\x6b\xd5\x74\xb7\xd8\x7e\xbb\x1d\xea\x24\x95\x26\xdb\xf2\x5f\x1e\xcb\x4b\x85\x24\xd0\xef\x1b\x67\x1a\x25\x75\xa2\x90\xe2\xc1\xea\x9e\x3e\xf5\x82\x71\xb2\x54\xeb\x9f\x06\xf8\x8e\xca\xaa\xbf\xf0\x2a\x9a\x4c\xd2\x9e\xe0\x58\xef\xa7\xb4\xc7\x79\x96\x65\x43\x54\x4a\x4b\xb5\xac\x5d\x76\x70\x6a\x18\xd0\x41\x77\x08\x76\xd9\x6a\xdf\x82\x7f\x07\x3b\x34\x43\x98\x0e\xf6\x86\x5e\xbe\xe3\xb8\x70\x9d\xf6\x6a\xdd\x26\x44\xb4\xdb\x6e\xa5\x0e\x42\x66\xfd\x65\x8c\x22\x9c\x22\xcc\x3a\x8c\x3f\x24\xf7\xf4\x5a\x46\x92\x8d\x5f\xc7\xc9\xf8\x3e\x14\x2e\x12\x11\xa1\x5e\xb1\x40\x28\x10\xc2\xdb\x3a\xdb\xe4\x98\x3f\x83\x01\xf8\xbf\x31\x41\x62\x6d\xb0\xce\x94\xff\x9f\x73\x67\x7a\x09\x3e\x3f\xe5\x77\x8c\xd3\x6a\x22\x00\xd5\x1d\x36\x36\x99\x7b\xff\xf7\x24\x26\x1c\xf3\x86\xd8\x9c\xbc\xb7\x3a\x2f\x33\xc4\xd1\x01\x70\x77\x1f\x7a\x6f\x27\xdc\xc0\xe9\xa3\x96\xe8\xdc\x26\x89\x34\xb7\x73\xb0\x16\x10\xd1\x31\x31\x1d\x6f\x12\x25\x2f\xbb\x64\x90\xc5\x81\xae\xd7\x61\x17\x5f\x77\xee\x14\xef\x07\x67\x57\x5b\xec\x8d\xfe\x18\xa2\x61\x0a\x5f\x80\x3b\xca\x3c\x99\xd0\xf8\x8a\x4e\xf3\xac\x0d\x84\x90\x08\x31\xb2\xd2\xd3\xdb\x13\xd8\x6b\x91\xe7\x51\x43\x08\x43\x12\x4a\x1d\xd0\xc3\x11\x96\xd1\x5d\xaf\x74\x51\x29\x86\x91\x5b\x31\x73\x49\x22\x1f\xfe\xb4\xf5\x7c\x53\x2b\xe8\x64\x2f\xcd\xea\xda\x84\xca\xb0\x1d\x46\x2f\xb2\x7f\x3e\xf4\x96\x0e\x24\x8e\x7d\x75\xda\xc8\x8a\x7e\xe5\x45\xd1\x43\x7a\x3c\x1b\x73\x4b\xa2\x55\xf7\x99\xc0\xa6\x7c\x2e\xe0\x48\xb0\x23\xb4\xb7\x5a\x18\x23\xa4\x17\x6a\xc0\x9e\xf5\x7d\xca\xf2\x2f\xca\xd8\xb3\x10\x95\x14\xc0\xdb\x00\x33\xe4\x39\xc9\xce\xca\xe1\x0e\x05\xb5\xcd\x94\xd7\x79\x76\xba\x65\x90\x99\xe7\x48\x33\xa9\x60\x43\x96\x13\xe1\xcd\xd5\xb9\x10\x60\xb9\x5e\x0f\x86\x58\x0c\x73\x56\x60\x98\x56\xee\xf0\x6a\x60\x16\x07\x3a\x5f\x9e\x05\x66\x36\xe8\xcc\x86\xb3\x2e\x36\x5c\xbf\x5c\xfc\xa8\xba\x50\xc1\x9a\xe6\x36\xb4\x2b\x48\x12\x6f\xd5\x3d\x30\x10\xab\x46\xf2\x30\xee\x20\x28\x1b\x04\xfc\x1c\xf4\x0c\x9e\x1d\x9b\x54\x96\x9b\x04\x24\x9d\xa8\xa6\x5e\xe5\x04\x00\x2f\xc4\xef\x8d\x55\x36\x79\x6b\x2f\x4b\x96\x96\x8a\x27\x0c\x3f\x28\xf5\x92\x10\xff\xd1\x31\x9d\xf6\x2c\x33\x9a\x45\xa9\x89\xf2\xd5\x66\x8a\xc0\xec\xc3\x60\x87\xa3\x83\xb0\x3c\xd8\xd2\x48\x7d\x2c\x1c\xb5\x21\x67\x3c\xe4\x58\x38\x8c\x00\x53\xcc\xf8\x1a\x86\xd5\x59\xaa\x9d\x4c\x93\x6e\xad\x84\x82\xe8\xf9\x88\xd6\x40\xe5\x18\xe1\x7f\xfe\x9c\x94\xeb\xe3\x21\xd2\xfc\x52\x1d\x77\x8e\x99\x90\x4f\x25\x17\x88\x8d\x49\x46\x1b\x20\x1a\x01\x9f\xc8\xdc\x85\x34\x3e\x40\x65\xb5\x7d\x4b\x68\x09\xcc\xb1\x21\x4f\x91\x5f\xcc\xfc\xad\x36\x21\xe3\xde\x18\x8c\xd7\xc1\x44\x8d\xc3\x06\xf7\xe3\x87\xe7\x75\x10\x1a\xa9\x05\xaa\xf6\x48\x5f\x37\x72\x6e\xf6\x83\xa7\x7e\x28\x39\x80\x98\xcd\xa3\xb3\x0c\x7e\x2d\xcd\x17\xbb\x90\xb3\xa5\x3c\xe3\x1c\x3d\xd0\x7f\xf6\xdc\xf0\x6d\xcd\xae\x88\xb4\x45\xe4\xa0\x3a\x02\x5b\xe7\x70\x03\xb8\x66\x79\xe5\x60\x02\x9f\x5e\x3a\x81\x76\xe2\xee\xe9\x93\x3f\x5d\xf4\x39\x6d\x4d\xa1\x33\xb2\x06\x25\xd4\xc4\x8c\x3d\x3f\x7f\x15\x7b\x75\xbb\x4d\x07\xb6\x4f\xc3\x72\x56\xd7\xbb\x67\xd9\xb1\xcd\x03\xfd\x37\xf1\xe3\xdb\x97\x6d\x4d\x8f\x06\x27\x79\xc8\x5d\xce\x2b\x14\xab\xd0\xdb\x37\x7f\xf6\xa2\x89\x6e\x98\xc0\xba\x43\xd7\x4b\xdb\x97\x93\x57\xe5\xa2\x2a\x20\x41\xb7\x3a\xd6\x0b\x05\x45\xed\x8d\xd6\xca\xa5\x15\xb2\xe5\xfa\xca\xb2\x12\x8a\x25\x63\x83\x8b\xcb\x21\xab\x16\xcc\x47\xcf\x26\xe4\x2e\x20\x54\xe7\x12\x92\xf0\x44\x84\x2c\x0b\x8b\x33\x09\x43\x68\xb0\xc2\x93\xc2\xd5\x5b\x8d\x30\x4f\x8a\xe4\x46\xeb\xec\xe0\x5b\x79\xc4\x0d\x58\xcd\xf3\xa4\x37\xbe\x8c\x02\xaf\xbc\xfe\x58\xd8\x32\xb7\x68\x2e\x84\xb9\xb4\xc0\xad\xd2\xda\x3a\x9c\x61\xcf\x6b\xd6\xbb\xa5\xcb\xca\xc1\xf3\x04\x96\x67\x54\x21\x1c\xb9\x61\xc3\x6f\x38\x48\xbc\xec\xc7\x95\x7d\xc2\x73\x98\xd8\xa6\x78\xcf\x02\x5e\x1c\xef\x08\x3a\xa5\x42\xe4\xb1\xb2\x76\x28\x0c\x20\xbd\x5c\x84\x0f\x88\x51\x6c\x1c\x32\x3c\x70\x09\x8d\x07\xc3\x9e\xc4\x4b\x1e\x0a\x94\x6f\xa9\xa1\xda\x53\x7e\xee\xe5\xda\xac\x49\xc9\x17\x76\x33\x69\xec\x66\xd4\x6e\x87\x7d\xa9\xba\x90\x54\x3b\x1b\xe1\x81\xeb\x20\xb8\x96\xaa\xae\xa9\x1e\xf4\x79\x01\x8c\xf5\xb3\xb7\xc3\x20\xde\xdd\xed\xcc\x76\x1b\x30\x60\x75\x28\x7a\xbb\x1d\x58\x63\x4d\xa0\x09\xed\x69\x41\x0f\xa4\xbd\xfc\x18\x9d\x58\x3e\xf6\x6b\x3f\x38\x2c\x81\x60\x75\x2f\x8a\xbd\xa7\xee\xfa\x5e\x84\x43\x31\x39\x9e\x76\xc3\xcc\xd5\x6c\xf4\xc0\xcf\x23\x67\x5f\xc0\x9e\x4c\x17\xd1\x98\x2a\x79\x96\x76\x46\xf4\xf3\x82\x0a\xa6\xee\xb7\x51\x7c\x16\x8d\x45\x92\x92\xbe\xce\x18\x7d\xc8\xc9\x8a\x4d\x7b\x75\x57\x3f\x5f\xd1\x6b\x47\x7e\x62\x15\x24\xa1\x30\x26\x77\xa1\x75\xc0\xfa\xdf\x57\x08\x65\x58\x1b\x88\xeb\xaa\x04\x31\x50\xdb\xf6\x59\x43\xde\x31\xbd\xa2\x94\x8f\x69\x5a\xcd\x31\x6b\x5c\xc3\x5f\xa9\xbb\x58\x18\xf9\x36\x7d\xcc\x4b\xde\x49\xbc\xe8\x9d\xd4\x4b\x00\x3e\x79\x46\x4c\x39\x60\x97\x01\x6a\xb7\x4d\x39\xf3\x1b\x4f\x48\x8a\x27\x2e\x67\x59\xbb\x1d\x2e\xea\x76\xe1\xa4\x41\x51\x93\xa7\xd1\xcc\x50\xee\x5c\x92\x21\x3c\x6b\xb7\xc3\x79\x0d\xdf\x9e\x95\x0f\x40\xa9\x98\x93\xd7\x3c\x1d\x74\x87\x5e\x46\x6a\xf0\x91\x57\x77\x1c\x9a\x21\xbc\x68\xb7\xe7\x07\x35\x9d\x98\x87\x0b\x70\x69\xe9\x2d\xd6\xeb\xf9\x7a\x7d\x6f\x20\x4a\x66\x78\x82\x17\x78\x9e\x43\xc5\xd4\xd8\xa5\xa2\xc1\xdb\xe1\xc1\x8d\x08\x23\x1c\x61\xf5\x37\x9e\x82\xd7\x89\xe7\xaa\xba\x44\x90\xc7\xcb\x7b\x12\x21\xf5\x45\x92\x5f\x93\xdd\x5f\xf9\xd5\x79\x8a\x2a\x29\xb9\x3d\x9d\x55\x55\xce\xd4\x11\x2d\x5e\xe0\xae\x33\xf5\xa0\x62\xc0\x45\xae\xb6\xc9\x32\xbf\x0f\x38\xc2\x53\x84\x06\x3f\x43\x7a\x12\x03\x60\x29\x14\x6d\x0a\x11\x3d\x95\x48\xb3\x2e\x2a\xca\xd1\x63\x86\xf5\x3a\xd6\x7f\xa3\x6a\x4e\x68\x78\x26\xb0\xcc\x3f\x41\x59\x51\x49\xe8\x7f\x70\x2e\xf2\xc0\xd9\xb2\x8d\x06\x57\x2d\x2b\x28\xc3\xb3\x28\x9d\x35\x75\xb8\x84\xd9\x92\xe1\x38\xb9\xdb\xd8\xd1\xd3\x72\x47\xe7\xcb\x72\x47\xf3\x8d\x5a\xee\x9f\x3a\x6b\x43\x41\x38\x6a\xb7\xc5\xe0\x8d\x18\xba\xb3\xd8\x78\xff\x97\xb2\xbb\x3a\x9a\x66\x83\x3f\xc5\x90\x70\xcc\x06\x6f\x87\x84\x0f\x3e\x0d\x31\x53\x9f\xab\x95\x61\x19\x0e\xfe\x58\x52\xf1\xb4\xbb\x00\xcd\x64\xb0\xb1\xf7\xef\xca\xbd\x17\x34\x9a\x24\x3c\x2e\x2f\xa8\x66\x5f\x75\xdb\x53\xf5\x64\xbd\xa6\x59\xcd\xec\x17\xf4\xf6\xa9\xa6\x96\x25\xbf\x4d\x96\x7c\x52\xdf\xa9\x88\x36\x2f\xa5\x67\x9f\x5f\xf2\x98\xa6\xe9\x5f\x65\xb0\xaf\x1c\xa3\x45\x99\xcb\xbf\xbf\x71\xb2\xae\xcb\x93\x15\xec\xd2\x68\x3c\xdb\x65\x7c\xc3\x77\xbf\xd7\x0d\x06\xbe\x05\x20\x93\x5d\x00\x4c\xd9\xd8\xec\x45\xb5\x59\x9e\x88\x79\x14\xb3\x3f\xe9\x4b\xba\x7d\x58\xfd\xfe\x8e\xca\x5d\x23\xbe\xef\x3e\x44\x22\xe8\xcd\x3c\x45\xeb\x87\x28\x57\xc3\xd4\x4e\xb2\x86\x0a\xab\xa3\x67\x38\x83\xbc\x64\x7d\x5a\x97\x84\x0e\x0a\x10\x46\xe6\xa1\x4d\xe7\xe2\x75\x76\x01\x7a\x03\xcc\xa0\x8f\xe6\xe2\xd1\xb0\x97\x68\xc7\xd7\x61\xe7\xdc\x5e\x90\x86\x3c\x9e\x90\xac\x3c\xee\x00\x87\x75\x81\x15\x61\xa0\xae\xcf\x01\xea\xd5\x0c\x05\xb2\x79\x70\x10\x2b\x1f\x78\xc8\xfd\xcb\x37\x16\x7a\x1a\xa3\x34\xa5\x42\xee\x5a\x6f\xdf\x5d\x27\x71\xec\xce\xe0\xfa\xb4\x6b\x79\x69\xd0\xfb\x2c\xf0\x94\x5b\xb9\xa5\x75\xc8\x3b\xd3\x06\x04\x11\xb3\x68\xbf\x97\x16\x0d\x18\xc2\xfd\x73\x97\x27\xad\xce\x4e\xc9\x40\x37\x64\xf0\xba\x93\xdb\xdf\x6f\x12\x0d\x3e\x52\x00\x2e\xd2\xf1\x0a\x4b\x16\xcb\x13\xae\xef\x7b\x29\x39\xe4\xc5\xb8\x6f\xc8\x58\x0d\x5f\xb9\x2f\xc6\x55\xc1\xb1\xae\xd4\x32\x95\xc9\xdc\x38\xc8\xd7\xbc\x2f\x34\xf0\x8e\xc9\xd4\x82\x38\x16\x5e\x9c\xb1\x34\xa5\xee\x55\x5d\xcb\x8a\x4c\xed\x7b\x3d\xeb\x95\x97\x5e\xb6\x92\xa4\xa3\x65\xb5\xfd\xb0\xee\xc6\xc7\x78\xcc\xb8\x49\xbc\x7d\x1b\x27\xe3\xfb\xb4\x05\x6e\x2a\x61\x60\x6f\xc1\x77\x10\xe2\x03\x8f\x8c\x9e\x72\x62\x9f\xa8\xae\x32\x7e\x17\x8e\x20\x84\x08\x8a\xc0\x27\xb1\xfd\x6d\x0b\x3c\xf2\x3c\xa9\x2a\x27\xdd\x7d\xfe\x43\xdf\x61\x91\xf2\x9d\x1d\x14\x76\x71\x9f\x0f\xf8\x10\x41\x62\xe1\x0c\x85\x12\xe5\xc3\x57\x92\xbc\x19\xc9\x69\xf4\x27\x44\xff\xab\x47\x40\xa6\x13\xe3\x5f\x6a\x50\x2a\x51\xad\xc9\xb6\xb0\xea\xd6\x01\x2a\x25\x2b\x23\x62\xae\x8c\x52\x17\x14\xeb\x9f\x04\x06\x9d\xae\x49\xb3\x52\xff\x69\x27\xe1\xa4\xf0\x55\xaa\xe6\xb4\xf0\xe1\x86\xfb\xf8\x4b\xf1\x75\x1e\xf2\x9c\x46\xcd\xa8\x3a\xad\xe2\x55\x56\xe8\x4b\x35\x7c\x64\x41\x91\x44\x1d\xaa\x8f\xd9\x1b\x8d\x2d\x9a\x6d\x65\x23\x26\xb9\xff\xd4\xaa\x33\x37\xdc\xa9\x3c\x40\x73\x75\x37\xb6\x78\xaa\x4d\xd4\xbc\xb3\x83\xb9\x86\xb7\x86\x2e\xd7\x9d\xba\x7e\xaf\x06\x74\xf8\x0c\x6c\xd2\xb3\x23\x19\x55\x30\x94\x5a\xb9\x59\xba\x98\xc4\xc9\x0c\x9a\x17\x46\xc4\xcc\x88\x6a\xf7\xdf\xce\x8e\x8b\xf6\x72\xee\x6d\x2f\x86\x67\xaa\x99\xe3\x02\x44\xd3\xb3\x40\x4a\xde\xd8\x47\x55\xfc\xa4\x56\x4d\x5b\x9a\x42\x8a\x69\xc8\xeb\x2a\x2d\x67\x02\x07\x7e\x65\x11\xd9\x7c\x55\x10\x3f\x08\xf9\x06\xde\x67\xb0\xe0\x38\x42\x3d\x61\x62\x2d\x28\xc2\x9e\x22\xc9\x80\xf9\x59\x68\x2d\xd1\x2b\x30\x83\x6c\x1f\x12\xa4\xa7\x2e\x41\x7a\x02\x79\x08\x89\x13\xa5\x12\x84\x21\x05\x2a\x84\x63\x36\xb2\xd8\x9d\x9d\x2c\x77\xcf\xa9\xf0\xe6\x9d\x1d\xb7\xdc\x79\x08\x4a\x9d\x1b\x43\x49\x9f\xd4\xf2\xf0\xc9\xbc\x53\xc8\xe6\x82\xaa\x28\x6f\x1d\xac\xb6\x23\x54\x03\xbe\x6d\x53\x55\xf8\x95\xe8\x31\x01\xee\x36\xc0\xe1\xbe\x6c\x07\x14\xcf\xbb\x01\x1d\xd6\xe6\xa8\xdf\x12\xad\x1c\xb2\x09\x2c\x24\x58\x07\xe1\x9b\x4b\x52\x4a\x2e\x78\x08\x16\xd3\x65\x4c\xc1\x75\x22\x52\x37\x68\x56\x30\xcf\xea\xed\xd0\x0b\x76\x12\x9c\xa2\xf5\xba\xe9\xa5\x33\xdf\x68\xc5\x85\xbb\x3a\x86\x9c\xa8\xab\xa1\xdd\x86\xe0\xfd\xa3\xa4\x3d\xf7\x47\x87\xa5\x7a\x18\xc6\xac\x7b\x50\x37\xe8\xa5\x33\x63\x54\xa6\x5b\x58\xcf\xab\x03\x4e\x73\x11\xd9\x84\x43\x16\xc4\x8f\x5e\x48\x3b\x9c\x3e\x1a\x10\xfc\xe8\x16\xb6\x09\x66\xf9\x57\x85\xd2\x28\xeb\xd9\x8d\x3e\x7a\x7e\x6f\x42\xac\x4f\xa1\x18\x82\x9b\x2a\xcc\x3a\xec\xa4\x5c\x97\x0a\xe7\x9e\x29\x55\x60\xb1\x90\xe7\xa0\x88\xe9\x4b\x77\x02\x87\xde\xbb\xb5\xd0\xdf\x68\xdc\xfe\xd1\x46\xf6\x53\xa5\x15\x77\xd4\x15\xa8\x25\xdf\x9b\xdc\xd1\x08\x23\xbc\xb0\xc8\x56\x89\xd5\x0b\x76\x28\x2a\x10\x9a\xc3\xe8\xfc\xcc\x43\xa6\x97\x13\x85\x45\x10\xaf\xb7\x02\x52\xc9\x25\x35\xc7\xb8\xcb\xae\xae\xf7\xe3\x08\x52\x2e\x2b\x32\x7c\x93\x88\x73\xab\xa8\xaa\x53\x6a\x63\x97\x7a\x89\x83\xbc\x63\xa2\xa8\x7a\x3d\x97\xb9\x07\xd2\x3a\x73\xd8\x88\x16\x37\x80\xef\xbc\xd2\x1c\x45\xff\xec\x42\x8a\x66\x6d\xe6\x95\x9e\x5e\x4c\x64\xde\xe4\xbe\xf8\x44\xf7\xf7\x90\x3f\x91\x14\x27\xb6\xab\x91\x4f\x23\xae\x62\x14\x72\xcc\xf0\x05\x0f\x05\x4e\x10\x02\x8c\x79\x0d\xa1\x0b\x5e\x05\x39\x90\x59\x9c\xdb\x8f\x96\x07\x69\x6f\x59\x58\xc1\xb8\xc2\xad\xc6\x64\xa3\x90\x0b\xac\x2b\x2e\xae\xe5\xd8\x56\x32\xd6\xa0\x94\xcf\x65\x36\x04\x78\xaf\x4a\xf5\x01\xbe\x06\xe7\x2c\x0d\x10\x50\x68\x20\xb5\x09\x86\xd4\x18\xda\x6d\x93\x25\xc7\x65\xc6\xb9\x38\x3f\xfd\x34\x7a\x7b\x7a\x72\x76\xd6\xbf\x1a\x1d\x5d\x9c\x5d\x5e\x9c\xf7\xcf\x6f\xae\xdb\xed\x70\xa6\xdd\xa1\x45\x98\x22\x7b\xa4\x6c\x43\x15\xf9\xdf\x86\xf6\x56\x3a\x62\x67\x2c\x42\xfb\x44\xf5\x60\xd2\x6e\x7b\x60\xa0\x84\x90\x89\x0e\xd3\x5b\xe9\x98\x9d\x89\x25\xf6\xd6\x8c\x4c\x9c\xf2\x16\x6e\x5a\x52\x84\xf3\x90\x23\x6c\x6a\xc3\xa9\x06\x05\xb8\x15\x21\xc3\x4b\x0c\xaf\xd2\xf5\x9a\x5b\x8f\x9d\xb0\x8b\x1f\x3b\x0b\xc1\x1e\x22\x09\xc8\x2d\xc7\x8a\x8d\xe4\x54\x6e\x04\xba\x99\x1b\xd2\x3b\xa9\xea\x51\x15\x78\xdb\xad\x5c\xc9\xef\xaa\x12\xad\x30\x57\xe3\x9f\x86\x68\xf3\x05\x06\x4e\x94\x18\xcf\x10\x9e\xd5\x51\xf2\x99\x75\x77\x28\x5b\x52\x1a\xee\x3b\x25\xb8\xd6\xa6\x52\x46\x62\xb0\x57\x6b\xeb\xc2\x94\xdf\x25\xad\x6c\x1d\xec\x94\x04\x96\x9a\xca\xb4\x2c\x21\x10\x16\xc6\x72\x79\xc3\xc9\x4a\x33\xe9\x5e\x6d\x48\x86\x97\xfa\xd8\x63\x3d\xf7\xea\x70\x2b\x72\x9c\x5c\xe0\xc8\xf0\x11\x27\x6f\xc2\x15\x9b\xf4\x82\xf1\x6c\xfa\xcb\xf8\xdd\x7f\x7d\x17\x60\xb8\x2f\xf5\xfe\xb5\x0a\xb4\xc7\x54\x1a\xf4\x06\x41\x7b\x62\xc2\x48\x87\x38\x80\xfb\x00\xe8\x15\x83\xde\x60\xb0\xf7\x3d\xde\x1b\x0e\x31\x24\xdc\x7c\x88\xe2\xa0\x37\x8d\xe2\x94\x66\xff\xc2\x73\x2a\xa3\xde\x2a\xe7\x09\xbd\x60\x11\x8d\xef\xa3\x3b\x9a\x7e\x6b\x90\x60\x77\x2d\x9d\xa5\xdf\x5a\x54\x9a\x98\xdd\x7e\x6b\x65\x96\x34\x87\x8a\xed\xcc\x6e\xd3\x20\xcb\x10\x3e\x73\xfd\x3d\xff\xf8\xdb\x9f\xa7\xd7\x27\x27\xf5\xfd\xb5\xa8\xb6\x01\x0e\x6e\xe8\x67\xf9\x06\x30\x8c\x70\xf0\x6f\x0b\xcc\x1c\xe0\xa0\x1d\x41\x2e\xe5\xca\x80\xbe\xc7\xfa\xb6\x37\x18\xbc\xfa\x2f\xec\xed\x19\x3c\xf0\xc0\x91\xb4\x61\x74\x88\x6b\xca\x78\xa0\x49\xa6\x94\xb1\xa2\xae\xaa\x0d\xb1\x29\xb4\xf3\x1d\xee\xe2\x41\x90\x63\xf1\x06\xc3\xa6\x6f\xfe\x03\xab\xd2\x7b\x78\x30\x1c\xe2\xc1\x60\xef\x3b\xfc\x3d\xfc\x11\xfc\xdb\xe8\xf2\xfd\x21\x0e\xf3\xaa\x35\x16\x74\xa0\xca\xbe\xfa\x0e\x7f\xa7\x3e\x57\xff\xe1\x00\x34\x8b\x14\x9c\x37\x7b\x83\x61\xd6\xd0\xde\xab\x7f\xaa\xbd\xca\xa3\x3d\xfc\x6a\x98\xd9\x59\xfb\x47\x68\x0a\x74\x75\x8e\x9e\xae\x1c\x3d\x4d\xa7\x87\xa7\xff\xf1\xee\x38\xae\xa5\xa7\x2a\xd5\xe3\xc1\xab\x57\xd8\x2a\x13\x86\x18\x3a\xf8\x4f\x75\x59\xb7\xe2\xfa\x7c\xc9\x49\xb0\x2b\x93\xc5\x6e\x4c\x1f\x68\x1c\xe0\xdf\x39\xd1\xca\x2f\x7c\xbc\xd1\x45\xca\x05\xdb\x8d\x3c\x5e\x91\xe7\xf5\x34\x50\xfd\xc6\xd7\x41\xc3\xe2\x57\xa0\x03\x5b\xde\x05\x52\xd0\x29\x70\xf0\x39\x0f\x57\xc6\x89\xa3\xb7\x52\x1d\xb1\xca\x31\xac\x2b\xed\xad\xa0\xb2\x9e\xc0\x8c\xcb\xc4\x5a\xe1\x8c\x35\xfc\x77\xae\x6d\xe4\x97\x05\x23\xb8\xcd\x33\xe9\x2c\xe4\x59\x56\xcc\x37\x2b\xe8\xb4\xc7\xdc\x97\x79\x5d\xf5\x36\x75\xd3\x9f\x8c\x1a\xdc\xeb\x3a\x07\x8d\x5a\x87\x58\xf6\xd7\xf3\x36\x30\x0c\x0e\xc5\x65\x2f\x52\x91\x47\x44\x1d\x58\xe1\x3b\x07\x75\xc1\x15\x34\x0e\x2c\x00\xe7\xa8\x52\x10\x20\x5a\x33\x40\xff\xa6\x1d\x41\x93\x05\xe5\x3a\x9e\xd3\x1f\x4f\xa1\xb6\xdc\x1f\xa6\xd2\x29\x4f\x96\xf3\x69\x04\xa4\x39\x4b\x20\x38\xf1\xbc\x05\x5a\x05\xef\x16\x81\x39\x96\x03\xd6\xb9\xf8\x78\xde\xbf\x1a\xe2\xc4\xe8\x3a\x37\x66\x15\x2c\xa4\x6d\x33\xa7\x59\x4b\x92\x0a\x9d\xaa\x23\x18\x92\x79\x55\x5c\xe3\xe8\x81\x0b\x09\x03\x6b\xc9\x35\x8d\xa9\x12\x24\x42\x8a\x7a\x54\x87\xe8\xdb\x0c\x30\xa8\x98\xfe\x25\x1f\x53\x50\x4e\x71\x68\xf3\xc3\x34\x26\x58\x33\x99\x7a\x2f\x3c\xf7\xb3\x8a\x93\x97\xa0\x53\x07\x1a\xd3\x14\x49\xee\x92\xb6\x78\xe9\x15\x8f\x79\x86\x30\x0d\x83\x2a\x7f\x50\xcc\xe4\x5b\x90\xf5\xd5\x51\x43\x3f\x2f\x12\x21\x53\xc5\x84\xeb\x4b\x2a\x36\x02\x20\x2d\x43\x5c\x14\x75\x82\x65\x4a\xb7\xd4\x44\x8e\x65\xd0\x32\xa6\x29\x70\xb2\xa0\x97\xc6\x6c\x1c\x52\xec\xf9\xf5\xaf\x28\x5f\xce\xa9\x00\x4f\xea\xed\x6e\xbd\x9b\xff\x96\xec\xd8\x0f\x14\x97\x6a\xac\x55\x03\xaf\x9c\x01\x76\xcc\x0b\xeb\xcd\x3f\xd9\x58\xf3\x17\xd5\xf9\x6c\x6d\xf3\x2f\xa9\x6d\xfe\x5c\x6d\x0b\x4a\xef\xbf\xa8\x7f\xf6\x83\x8d\xb5\xa6\x54\x7e\x51\xa5\xa6\xfc\xc6\x3a\x9d\x0f\xcd\x8b\x6b\x75\x5f\x64\x80\x9a\xd0\x4c\xb9\x8e\x1e\x0b\xc4\xab\xe3\xef\x6f\xa3\x5b\x75\x98\xd5\x7c\xba\x94\x2c\xf6\x88\x1c\x52\x8c\x94\x28\x5a\x1f\x6e\x05\xaa\xa6\x76\xb0\x64\x8a\xa9\x9b\x4d\x32\xc3\xd4\x23\xa7\xc2\x9e\xb5\xd6\x85\x59\x48\x51\xcb\xe8\x6a\x00\x81\x2e\xcf\x5b\xa5\x78\xa6\xa1\x71\x42\x61\xd1\x09\x05\x4a\x22\x34\x9f\x05\x3f\xdc\x90\xe1\xc4\x9a\x7e\x73\x16\xe8\x55\x62\x53\xe0\xc3\xc9\xe1\x70\x9d\x96\x5c\x2f\xcb\x24\x50\x9c\x21\xaf\x38\x32\x51\x86\x7b\x78\xf9\x8c\xf9\x68\x14\x9b\x80\xb1\xf4\x03\x15\x90\x2c\xcc\x65\x88\xd5\xc7\x13\x9d\xf4\xf9\x24\xcf\x1b\x3b\x8d\x23\xa9\xca\x4f\x6c\x71\x9b\x87\xcb\x38\x43\xfa\x89\x9f\x47\x13\x9a\x8e\x05\x5b\xc8\x44\xa4\xc5\x17\x8f\x91\x1c\xcf\x18\xbf\x2b\x3e\x9d\xb3\xcf\x8c\xa7\xe5\x2a\x16\xa5\x27\xe3\x59\xc4\xf8\x47\x55\x01\x2d\x57\x0b\xaf\x4a\xcf\x64\x74\x57\x79\x50\x2a\x32\x8d\xd5\x23\x9b\xa4\x1c\x7c\x83\xac\xb4\x03\x6b\xe1\x79\xa3\x76\xc6\x09\xb7\xce\xff\xb9\x67\xaa\xf7\x30\x5f\x3d\x5c\x9a\x5f\x53\x4b\x66\x6f\x7d\x95\x93\x0e\x52\x84\x9c\xa8\xcb\x69\x14\xb3\x3f\x4b\xa9\x31\xbc\x9e\xae\xc9\x7f\x65\x58\x74\x96\xfc\x65\xc5\xff\x97\x2e\xae\xae\x76\xf5\x65\xfd\xfb\xe5\x68\x16\xa5\x6f\xe2\xe8\x2e\xfc\x2f\xa4\x3f\x72\xc9\x4d\x2a\xbb\xc0\xff\x4c\x4f\x93\x09\x5b\xd5\x33\x68\xec\x03\x66\x3a\x21\x0d\xb9\xa8\x3b\xd7\xbc\xe0\x40\xd5\xc4\xb1\x4d\x99\x16\x22\x1b\x2a\xad\x77\xa7\xf7\xa2\xf5\xe0\xa7\x2e\x8f\x26\x8a\xed\x1c\xc1\xd2\xab\x77\xce\xa9\xcb\x43\xcc\x86\xcc\x92\x6a\x38\xd7\xd0\x9d\x63\x97\x21\xf4\xd9\x79\xd8\x83\x79\x48\xa9\xdc\xf4\x65\x61\x71\xf6\x6a\x5a\xa2\xcd\x39\xe2\x6c\x43\xaf\x6a\x1b\x2a\x7e\x58\x68\xe7\x95\x6e\xa7\x30\x37\xcf\xb6\xf2\xbd\x6d\xa5\xf1\xb3\x42\x1b\xdf\xab\xd2\xf6\xe3\x9a\xd5\x0f\xbd\xd2\x6d\x8a\xec\x32\x8f\xee\xa8\xbc\x10\x1a\xcd\xff\xe2\x91\x9f\x45\xb5\xfe\x5f\xea\xdb\x01\x1d\x9a\x94\x85\x03\x3a\x2c\xfb\xbe\x2c\xe3\x18\xfc\x53\xca\xf5\x5d\xd7\x7b\x75\x56\xeb\x03\xf0\x3a\x2a\x75\x1d\x53\xc6\x27\x27\x96\xa7\xed\x15\x61\x14\x0b\x69\x5a\xf7\x2d\x4b\xdf\x77\x52\xee\x06\x9b\x81\x24\x36\xe7\x69\x56\x6d\xe6\x55\x49\x73\x94\x03\x55\xf9\x0d\x09\x97\xf8\x55\x94\x1b\xca\x7d\x4f\x07\x72\x58\xd2\x26\xbb\xe8\x26\x01\x01\xfb\x0d\x5d\xf8\xae\x12\x8e\x9b\x1b\xa2\xfd\x4e\xf0\xfd\xbc\x29\x5a\x6e\xca\x28\xae\x59\xb9\x13\xb9\xcf\xe9\x40\x14\xdf\x44\xb6\x7b\x51\x96\x71\xc2\x9b\xfb\x57\x24\x8e\xbf\x38\x49\x15\x5b\xdc\xe6\x89\x9a\x45\xe9\x09\x77\x3d\x29\x92\xd5\xd7\xf5\xa4\xdd\xe6\x45\x1d\xe0\x76\xb7\xe5\xb5\xea\x60\x22\xb0\xe8\x3c\xaa\x46\x8f\xd5\xf1\x56\x5e\xa0\x7c\x71\x6a\x76\x52\x18\xc0\x99\x08\xd9\x52\x61\xa5\xdc\xe1\xc4\xda\xed\x50\x3f\xab\xdd\x48\x58\xad\x1e\x11\xaa\x69\x25\xe4\x54\x5a\x2e\x1a\x4e\x8b\x34\x64\x1b\xc5\xbe\x05\x35\xb7\x89\x1c\x74\x7b\x50\xaf\xba\x7a\x15\xab\xcd\x93\x55\xd8\x29\xaa\xa9\xfe\x55\x5e\x3d\x6c\xd5\x69\x22\xfa\xd1\x78\x76\xc2\x6b\xfa\xe8\x96\x04\x37\x92\xaf\x16\x1a\x9a\x28\x98\x96\x29\xd8\xd6\x18\x6d\x31\xbe\x25\x88\x37\x2a\xc3\x3e\x7a\x02\x27\x48\x67\xe2\x8a\xd0\x7a\x1d\x6a\x4f\x8f\x08\xe1\x64\x10\x0d\x7f\xec\xb6\xdb\x80\x77\x5c\xa6\x72\xb5\xbc\x26\xaa\xa8\x36\xcf\x7a\xe3\xea\x2a\xf9\x24\x80\x79\xb0\x67\xdb\xc6\x2a\x54\xf1\x52\x7b\x0d\x38\x81\x50\x76\x93\x01\x16\x64\x25\xea\x23\xd5\x6a\x43\x6b\xa1\x27\x9b\x3a\xe2\xf7\x03\x5c\x55\xe0\x50\x2e\x27\xca\xf6\x7b\x54\x37\x01\xb1\xfb\x32\xc8\x43\x5a\xd4\xe2\x48\xc5\xda\x15\x79\x0f\x86\x08\x4b\x70\x82\xc8\xbb\xf6\xb2\xf6\xf2\xba\x0b\x54\xe0\x62\x3c\x6c\xad\x76\x14\x47\x05\x61\xb3\xa9\xd6\x82\x48\xba\x71\x86\x8b\xc2\xeb\xc6\xb9\x6e\x68\xba\x34\xeb\x85\x0a\x2b\x3d\x7f\xa6\xcb\x69\x29\xd0\x65\x55\x10\xa3\x65\xa9\x7f\x2d\x8f\x3f\x68\x42\xf7\x5c\x46\x04\x2a\x37\x1d\x82\x01\x61\xf1\x74\x93\x78\x79\xea\xaa\x23\x6c\x1e\x5a\xf1\xc0\x0e\x03\xd3\x2f\xbd\x37\x80\x7b\x7e\xb4\xd7\x88\x22\x8f\x68\x26\x2d\x7b\xef\x08\x90\x22\x23\x69\x79\x61\x4d\x3d\xc5\xd9\xaa\xb0\x2b\x57\x11\xae\xf3\x69\x38\xe8\xf6\xa0\x6e\xf0\x00\xfb\xcc\x78\x55\xe3\x53\x95\x68\xc2\xc0\xdc\x7f\x02\x04\xfc\x45\xb3\xc2\x59\x94\x56\x6b\x28\x4b\x76\xc5\x33\x2c\xaf\xa8\xc8\x4e\xcf\xf4\xed\xaa\x56\xee\xc1\x8d\x27\x9c\xbd\x95\xb5\xfc\x33\x2e\xf4\x02\xf4\xa4\x63\x93\x12\x73\xdb\x56\xe8\xab\x2f\x35\xe4\xa9\x50\xac\x53\xfb\xd1\x09\x75\xf5\x17\x08\x32\x01\x96\x8e\x64\x73\x28\xe6\xd7\xc6\xe2\xca\x86\x95\x7b\xa5\x9f\xd7\xde\x7d\x64\x3c\x6f\x10\x72\x0e\x23\xf9\xa9\x57\x57\xf5\x86\xc5\xb6\x27\xae\xfb\xcc\x5f\x71\x49\x08\x89\x5c\xf4\xa1\x26\xed\x79\xf2\xd0\x30\x00\xb3\xf4\xe5\x21\x86\x14\x52\x76\xb9\x75\x6a\xfa\xf8\x45\x8b\xe5\x75\xf4\xab\x57\x0c\xd4\xff\xb0\x66\x3c\x5f\x33\x8e\xb0\xd0\x11\x41\x54\x07\xfa\xd6\x2c\x5e\x34\x99\xdc\x24\xa7\xee\xbe\x5b\x17\xab\xa0\x99\xc7\x32\x9d\x39\x9c\x1a\xf3\xf2\x60\xaf\xd7\x05\x2f\x60\x3b\x87\x6f\x44\x32\x6f\xaa\xab\xb9\x1e\x7d\x8b\xf2\x5f\xd4\x00\x1c\x6a\x39\xa1\x9c\x15\xe1\xc7\xef\x3d\x1b\x79\x9e\x01\xe1\xfb\x61\xbb\xed\xff\xc2\x09\x71\xcb\x08\xe7\x8e\xed\x23\x64\x74\x5b\x84\x09\xd6\x5d\x54\xbc\x11\x1c\x2b\xa2\x76\x3b\xfa\xa1\xaa\x52\x69\xb7\xc3\xc4\xa6\x99\x8f\xf0\x1e\xaa\xd1\xba\xec\xee\xe2\x88\xec\xee\x21\x0c\x80\xb5\x11\x4a\xb4\x6b\xd4\x0a\xc0\x5b\x72\x74\x58\x89\xe7\x54\xce\x92\x49\x4f\xe0\x7b\xc6\x27\x90\x45\x89\x8f\x7b\x2c\x2b\x24\xf2\x57\xc2\x4a\xeb\x95\xf6\x45\x7c\xb5\x4d\x48\xda\x51\x85\x0f\x0a\x7d\xe8\x85\xfa\x29\xe1\x00\x1e\xce\xc7\x84\xa1\x82\x30\x53\xb3\x20\x65\xa6\x5d\xd2\x0f\xa9\x96\x4c\x3e\x72\x7d\x8c\x38\x48\x30\x91\xc8\xa4\xdd\x86\x29\xaa\x0e\x7d\xbd\x4e\x77\x76\xf4\xb8\x6b\xa7\xae\x46\x45\xd5\xad\x28\x5c\x40\x4c\x28\x3e\x83\x7d\x66\xbb\x58\x3b\x1a\x6b\xdc\xaf\x8c\xe4\x87\xd4\x6a\xfe\x68\xc3\x19\xe8\x19\xd9\xab\x6d\x84\xa8\x24\x71\x14\x8e\xde\x62\x2f\x51\x79\x24\x32\x5f\x49\x51\x2e\xdc\xaa\xce\x05\x04\x3d\x09\xbb\xb2\xdd\x1a\xd2\xaa\x23\x37\xd2\x2d\x3b\x29\x4b\xdf\x47\xd9\xba\x84\x0e\xf8\x70\x1f\x16\x66\x01\x19\x3f\x80\x18\x21\x47\x00\xe0\x5e\xb3\x8e\x26\x46\x04\x3d\x58\x72\x80\x80\x0f\x59\x5d\x7b\x3b\x3b\x28\xcb\xb2\x06\xb5\x62\x9a\x15\xc8\xaa\xb0\x80\x73\x73\xf8\xd6\xb1\x87\x1c\x4f\x1f\x3e\x7c\x76\x1d\x04\x2a\x0e\x59\xd4\x0c\x59\x0c\xf8\xb0\x65\x46\xba\x0d\x49\x65\xe0\x4e\x01\x5b\xa5\xdd\xde\x73\x7f\xaf\xd7\x61\x49\xe8\x03\x0a\xd4\xbb\xb6\x32\x43\x00\x21\xa8\x3f\x44\x45\xf9\x28\xb9\x4d\xa9\x78\xa0\x02\x00\xbd\x9a\x71\xfc\x5e\x40\x63\x45\x60\x6c\xe9\xe3\x62\xdb\x5b\xa6\xba\xb8\xc3\x21\xe1\x0d\x87\x9b\xe1\xc0\x32\x73\x3d\x70\xcf\x73\x6c\x3c\x8b\xf8\x1d\x05\xcc\x99\x5c\x33\xda\x6e\x87\x14\xc6\x4b\xf5\x78\x79\x3e\x28\x0d\x0a\x25\x1b\x40\xa1\xf4\x36\xaa\x40\x42\x79\x1b\x6d\x94\xef\xb4\xbc\x3d\xbb\xd7\xe2\xa2\x8c\x5a\x50\x46\xeb\x50\x71\x02\xb9\x64\xd4\x59\x9d\x68\xef\xf0\x89\x27\x90\xd2\x1c\x60\xca\x28\xe8\x97\xb0\xc7\xe3\xfa\x04\xcf\x78\xec\x87\x53\xe4\x41\xae\x53\x2d\x9f\x8c\x73\x81\xc3\xbd\x9a\x79\xe1\xaf\xd6\x0b\xb6\xfe\xee\xe1\xe1\x98\xc7\x21\x45\xfe\x01\xef\x7f\x10\xda\x8a\x04\xca\x3d\x8d\x34\x3f\x35\x98\x55\xe6\x17\x11\x08\xcb\x96\xaa\x4c\x14\x13\x45\x6b\xc7\xaf\x9a\x40\x4a\xd3\x37\xdf\xa6\x91\x2b\x70\xf3\x7e\xea\x3e\xaa\x89\x58\x7a\x3e\xbd\x53\xed\x6e\x2c\x3c\xe8\x97\x45\x7e\xe8\xda\xb1\x31\x42\x5d\x76\xaf\x7d\xf6\x23\xe9\xee\xb3\xdd\x5d\x7b\x3d\xa7\x03\x06\xd7\xf3\x44\xd3\x9c\xde\x47\x89\xd9\x39\x04\x06\x97\x98\xed\xa3\x28\xd3\xd3\xec\x18\x47\xc6\xcc\x18\x5b\x26\x9b\xcc\x4b\xf1\x0b\xcc\x4a\x8b\x24\x7e\x9a\xb2\x38\x6e\x36\x9a\x96\x0d\x4d\x2f\xb0\x48\x89\x25\x8f\x93\x64\xa1\x1e\x58\x07\x0e\x17\xa8\x5b\xfb\xbd\x67\xd7\xce\xdf\x53\x21\x12\x61\xfb\xfd\xed\x83\x66\x98\x7e\x6f\x16\x82\x8e\x23\x49\x27\xbb\x53\x1a\xc9\xa5\xa0\xf5\x63\x00\x5f\x8b\x1a\xf3\x58\x9e\xa2\x02\xc7\x80\xbf\x3d\xab\x18\xcc\x6c\xf2\x6f\x92\x48\x4c\x21\x86\xd5\xfc\xae\xf5\xea\x7f\x9d\x24\x31\x8d\x78\x78\x6b\xdd\xf7\xa9\x86\xd4\x1a\xcf\xa8\xba\xaa\xcf\xbd\xdf\x93\x0f\x51\xbc\x84\xa7\x0f\xc6\x16\xe7\x8a\x3d\x61\xda\x89\x62\x16\xd5\x6a\x97\x5e\x53\x88\x86\x89\xc1\x8f\x7e\x09\x59\x31\x3b\x6e\x1e\xac\xcd\xb2\x46\x12\x2c\xf8\x6f\x64\x4d\x96\x4e\x89\x57\xe3\x84\x4f\xd9\xdd\xd2\x59\x38\x7d\x7b\xe7\x1e\x4e\x0b\x81\xaa\x68\xc5\x42\x84\xa5\xd4\x0e\x14\x80\x11\xdf\x60\x11\x55\xe5\x7e\x31\x60\x1f\x02\x65\x19\xf4\x5b\x5d\x0d\x21\xb5\xd0\xaf\x54\xcf\x0c\xf9\xc5\xfc\xf1\x91\xc9\x99\x49\x35\xd0\xa0\x33\xfc\x85\xba\x50\x8e\x3c\x16\x21\xd7\x55\x5b\x1e\xa0\x9a\x49\xa9\x24\x52\x2d\x9f\x14\x4f\x65\xcd\x67\x9e\xf6\x69\x4b\x4a\x33\x5b\xdb\x5d\xe8\x9d\x76\x58\x3f\x94\x64\x42\xc1\x8f\x64\x11\x17\xdd\x8e\xfd\xde\x54\x24\xec\xef\x6a\x25\xec\xef\x86\x07\xfe\x8f\xde\x8c\xb6\x20\xaf\x47\x87\xa5\x36\x93\xdd\xc1\x3c\x77\x4d\xea\xb9\x66\x0d\x5c\x66\x96\x77\xe4\x84\x9f\x47\x92\x3d\x50\xf8\x8e\x00\xba\x61\x34\x99\xc0\xaf\x0b\x73\xa8\x36\x0d\xf4\xc1\xb6\x70\x8c\x01\xb9\xd1\xa2\x7a\x7e\xd9\xc7\xe7\x76\x9e\x20\x44\x1a\x32\xfa\x72\xf9\x91\xc5\xf1\x11\x9c\x99\x64\x4c\x4b\xef\x8e\xd9\xc4\xbc\x9a\xaa\x57\x34\x1a\xcf\x20\x83\x2c\x90\x7c\xe1\x09\x74\xc4\xab\x6a\x59\x7d\x9b\x57\x16\x9b\xa1\xbb\x5b\xd0\x31\x06\xe7\xd4\xfa\x1b\x95\xe7\x97\xcf\x9d\x05\x1c\x79\x87\x81\x87\x6e\xb2\xbd\xe7\x52\xc3\x57\xe4\xb0\xb0\xac\x1c\xd6\x50\x17\xcc\xc5\xe2\x03\x05\x15\x7d\xcf\xfe\xc6\x64\x86\x3a\x3c\x75\xa1\x41\xd1\xf3\x14\x51\x89\xa2\x75\xd7\x47\xf0\x21\x47\x98\xe7\x2b\xec\xe6\xe8\x1c\xb6\x05\xd7\x40\xaa\xe4\x04\x58\xdb\x79\xc2\x6b\xc3\xb1\x4c\xe4\x4b\x06\x85\xfa\xf3\x85\x7c\x22\x33\xcd\x0c\x5f\xc7\x11\xbf\x27\x13\xd9\xa2\x60\x3e\xa5\xa9\xaa\xac\x5a\xc3\xf6\x44\x1a\x67\xac\x5b\x7a\xc7\xb8\x65\x37\x7a\xfd\x52\x22\x01\x99\x13\x7e\x98\x57\x8c\xa6\x84\xc3\x9a\xf3\x49\xb9\xb4\x50\xcf\x79\x22\xd9\xf4\xa9\xf8\x8a\xfc\xaa\x66\xfc\x81\x0a\xc1\x26\x56\xdf\x46\x29\x70\x47\x9f\xc9\x11\x46\xf5\x40\x34\x86\x64\xae\x82\x20\x27\x50\x33\x6c\x2a\xf5\xf4\x98\x8e\x13\x11\xa9\x17\x7f\xea\x5a\x6c\xc1\x37\x89\xc8\xdf\x8d\xca\xaf\x5c\x3b\xb7\xfa\xbc\x50\x22\x20\xf3\x2a\x7b\xd4\x0c\xa9\xf2\xbc\x8f\x69\x07\x54\x6d\x3f\xd3\x27\x92\xa8\x16\x97\xdc\xfd\x8e\xd4\xef\x29\xe3\x2c\x9d\x35\x2a\x3b\x69\xbd\x3a\xd5\xb7\x13\x83\x94\x23\xa8\x05\xd0\x3b\x8c\xe3\x82\x15\xb9\x62\x61\x6e\xb7\x69\x59\xd3\x79\x4d\x3d\x86\xe1\x37\x44\x0e\x0d\xeb\x86\x87\x37\xd1\x5d\xfa\x26\x11\xaa\xef\xbf\x51\x3b\x32\x60\xf5\x57\xde\xd0\xe0\xc1\xa5\x5e\x8f\x06\x05\xa7\xa1\xc1\x63\xcd\xed\xf5\xb6\x32\x5f\x93\x73\x57\x33\xf9\xdd\xfd\x49\x85\x8e\x8b\x3d\x36\xdd\xf1\x48\xaa\x8e\x0f\xac\x32\xec\x71\x6f\xcc\xc8\x1e\x68\x0e\xca\x3b\xb4\xdd\x2e\xf2\x69\x89\xc0\x02\xd5\xf5\x3f\x1e\xec\x0d\xf5\xad\x72\x9f\xfd\xe0\x42\x5e\xd9\xce\x0e\x12\x03\x3e\x60\xc3\xa1\x3e\xb2\xd4\x9f\xc8\x8b\x37\x03\x6a\x68\xec\xa4\x87\x56\xb4\x5e\xdb\x10\x2a\x97\xf4\xc6\x93\xa7\x9d\xd3\x61\x58\xc3\x71\x04\xe6\x56\xc6\xbf\xa7\x4f\x8a\x77\x61\xa6\xa4\xd1\x52\x37\x89\xea\x1b\x86\x63\x50\x60\xc5\x77\x50\x06\x8a\x7a\xda\xa1\x9f\x17\x91\xdb\x8a\xaa\x97\x54\x6a\xa6\xeb\x4e\x8b\x77\x58\x27\xfa\x78\x88\x24\x75\x0f\xdf\x3b\x4a\x71\x8f\x5e\xb7\x68\x67\x1a\x2f\xd3\xd9\x61\xfa\xc4\xc7\xf6\x71\x59\x2d\xf1\x91\x10\x92\x76\x8e\xde\x5f\x5d\xf5\x35\xc2\xa6\xc3\x47\xd0\xe3\x6c\x7d\xac\x7f\x8d\xff\xac\x2a\xf9\x9a\x99\xbe\x62\xe1\x70\x77\xaf\x3a\x4b\x84\x68\xbd\xae\xb8\x1c\x84\x08\x1d\xfc\x69\x3c\xa5\x42\xa9\x4e\xe7\x9a\xc6\x04\x5a\xd1\x22\x4c\x25\x05\xcc\xa7\x2b\xfa\xc0\x94\xf4\xaa\xe1\x4b\x23\xdf\xff\xd2\x64\xc7\x2d\xa4\x06\x90\xe2\x69\x75\x02\xa7\xfe\x40\x4d\xf5\x22\x92\xb3\x21\xca\xa6\x8c\x47\x71\xfc\xa4\x5b\x20\xbf\x29\xb1\x40\xbf\x53\x77\x51\xbf\x15\x42\x7d\xf0\x4b\xf0\x41\xd3\x22\xd7\xbc\xa2\x62\xcf\x3d\x02\x2a\xc7\x92\xf0\x33\x8f\xfd\xb8\x77\x20\x77\xf7\x7a\x90\xce\x79\x6f\x9f\xff\x20\x41\x6f\x20\x06\x7c\x77\xcf\x3f\xa0\xb8\xc3\x50\x3b\x35\x41\x99\x54\x0b\x53\x65\xb1\xe2\x6f\x3e\x10\x31\x53\x92\xbc\x3d\x16\x5b\x35\x58\x35\xe9\x41\xc8\x89\xda\xe2\x12\x47\x64\x7b\xa9\xc3\x8c\x8e\xfb\x6f\x0e\xdf\x9f\xde\x8c\x0e\xaf\x3f\x9d\x1f\x8d\x2e\x5e\x5f\xf7\xaf\x3e\xf4\xaf\xae\x51\x4f\x95\xed\x4c\x39\x66\x24\x55\xf2\x35\xe5\x13\xca\xe5\xcf\xf4\x29\xc5\x11\xd1\x1a\xc3\x5c\x85\x14\x93\xc1\x10\x8f\xeb\xce\xce\xd8\x86\x78\x66\x78\x4a\xba\xfb\xd3\x1f\xac\x80\xb0\xbf\xb3\x33\x45\x54\x86\x6c\x30\x1d\xe2\x31\x2a\x1d\xe1\x6e\x5f\xa8\x23\x7c\xa5\x16\x38\xed\xc5\x5a\xd7\x19\x65\xe6\x44\x07\xd7\x6b\x6d\x31\x39\x85\xe3\x98\xab\x0d\xfe\x0f\x2f\xad\xf1\xdf\xc3\x11\x39\x81\x20\xc9\x34\x37\x0a\x88\x41\x77\xd8\x8a\xd6\x6b\x31\xd8\x1b\x1a\x18\xfe\xaa\x13\x35\x40\x9a\xdd\xb9\x68\x5e\x99\x27\xeb\x04\x48\xb5\x88\x71\x2a\x72\x27\x31\x13\x2d\x44\x77\x82\x5e\xb0\x13\xa6\xeb\xb5\x44\xd8\x22\x5a\x31\x2f\x36\x2f\xc9\x50\xd6\xea\x1a\x65\x46\x22\xc3\x95\xba\x83\x2c\x4b\x77\x15\x60\xa7\xe6\x06\x42\x75\x24\x89\x54\x3b\xc3\x36\x17\x1d\xc4\xa1\x1a\x03\x56\x03\xc0\x62\xf0\x6a\x88\x7a\xb1\x9a\x68\x19\xdd\xf9\xe7\xfa\x91\x7b\x44\xce\xd4\x86\x8a\xc4\xbd\xe6\xad\x87\x29\xe0\x6b\x92\x2b\xac\xdd\xe4\x96\x73\x4a\xde\x52\xb8\x76\x44\xe3\x7b\x3a\x21\x1f\xdd\x0f\xf2\xc9\x08\xad\xf5\xe1\x8c\x77\xb2\xb3\xe4\x0b\x91\x8c\x69\x9a\xd2\xbc\x4c\x4a\xb6\xbb\x78\x24\x73\x92\xa2\x3a\xfc\xec\xc6\xa4\x78\x26\x17\x52\x8b\x09\x0d\xd5\x3e\xc9\xf5\xfa\x3a\x87\x87\xde\x7a\xd4\x26\xe0\xd2\x27\x29\xe9\x03\x57\xd1\xcd\xe7\x35\x7d\xf6\x9e\x1e\xc6\xb1\x57\xfe\x5a\x3a\x3e\xbf\x29\x3c\x13\x88\xfb\x4e\xc3\x55\x82\xc4\x6d\xd2\x4d\x3e\xca\x81\x1c\xaa\x71\x19\x25\xee\x28\x57\xc0\x51\x04\xe6\x82\x2d\xc6\xb7\x96\x40\x20\xf4\xb3\x0d\x88\x6f\xb7\x29\x81\x00\xbf\xc2\xd3\x81\x1c\xb6\xdb\x61\xcd\x53\x63\x13\x42\x5a\x8a\x75\xdd\xbc\xa6\x91\x18\xcf\x8e\x59\xaa\x44\x9c\x3a\x9f\xb2\x27\x69\x8e\xe8\x67\x3f\x81\x09\x26\x56\x03\xa0\x97\xe7\xfc\xf0\xac\x7f\x7d\x79\x78\xd4\xbf\x1e\xbd\xfe\x34\x3a\x39\x26\xfe\x23\x42\x3b\x37\x40\x19\x90\x31\x08\xc0\x56\xce\x13\xa9\x41\x94\xe9\x84\xd0\x1c\x52\x59\x89\x66\x4b\x7e\xc2\x6f\x44\xc4\x53\x7d\x5a\x10\x8b\x8a\x0f\x5e\xb6\x3f\x9f\x5f\x7c\x3c\x1f\x5d\x5e\x5d\x5c\xf6\xaf\x6e\x3e\xa9\x13\x91\xd0\xce\x71\xff\xf5\xfb\xb7\xa3\x93\xf3\x9f\xfa\x47\x37\x27\x17\xe7\xa3\x37\xef\xcf\x8f\x4c\xbe\x03\xad\x5e\x38\xd3\xda\x25\xda\xd1\x5c\x84\x76\x4e\xd9\xad\x88\x04\x9c\xef\x9d\xd8\xfb\x1b\x44\xba\xf3\x64\xa2\x1a\x73\x8d\x1c\x9f\x1c\x8f\x8e\xde\x1d\x9e\xbf\xed\xeb\xa7\xbf\x7e\x1a\x1d\x5d\x9c\xdf\xf4\xcf\x6f\xd4\x17\x46\x4d\xe2\x76\x8d\xba\xec\xc7\xc9\x6d\x14\xe7\x1a\x14\xcf\x25\x78\x82\x17\xf5\xca\xc6\x79\x4e\x3e\x8b\xcd\x71\xf5\x16\x82\x60\x51\x88\x9c\x77\x15\x3d\xf8\x72\xc0\xa2\x4e\x39\x99\x3b\xba\xd9\xcc\xd9\xee\xe3\x27\x8f\xa3\xdb\x6f\x41\xb3\x78\x57\xdf\xeb\x5b\x5f\x39\xc0\x7c\x3f\x9b\xca\xb5\xb3\x27\x3c\x2d\x64\xee\xbf\x55\xb6\xe0\x16\xba\x33\xf2\xba\x73\x67\xbb\xe3\xde\x3e\x96\xae\x6e\xdb\x84\xb6\xdb\x77\x60\xe4\xf4\x8b\xf5\xff\xff\xd4\xbd\x6b\x7b\xe3\xc6\x95\x27\xfe\x9e\x9f\x42\xc4\xe4\x41\x50\xcb\x12\x9b\x72\x66\x66\x77\xa9\x2e\x73\xe5\x76\x7b\xe2\xc4\x7d\x49\x77\xdb\x49\x86\xe1\x72\x20\xb2\x28\x56\x1a\x02\xe8\x42\x41\xdd\xb2\x88\xef\xfe\x7f\xea\xd4\x1d\x28\x52\x54\xc7\xd9\x79\xfe\x7e\xe1\x16\x81\x42\xdd\xeb\xd4\xb9\xfe\x8e\x9b\xd9\x61\xd6\x53\x5f\x5c\x44\xd5\x17\x17\x0b\xb4\xdf\xfb\x3f\x07\x37\x4e\x0b\x2c\xeb\xfa\xac\xc1\x5b\x40\x95\x95\x5d\xd0\xdf\xe1\xc8\x9d\x48\x83\xf4\xe5\xad\x87\x43\xf9\xde\x4b\x61\xd0\x0b\x69\xd1\x06\xb4\xcf\xfe\xfc\xbf\xc1\x57\xf8\xa3\x22\x2c\xd6\x51\x3c\x76\x1a\xfc\x74\xc0\x1f\xdc\xe1\xae\x0f\x20\x22\xdb\xb2\x2f\xc2\x85\x34\x5d\x91\x4b\xe6\xe7\xa0\x04\x7f\x34\xc7\x9d\x13\xb6\xdf\x5b\xfc\x51\x64\xdb\xf2\x11\xe3\xb5\x8b\x7b\x77\x67\xdc\x06\xbb\x02\xc6\x05\x7e\xc9\x9f\xef\xe5\x53\x53\xd5\x2b\xb0\xa3\xeb\x3b\x36\x0f\xdc\xaf\x20\x51\x69\x33\x17\x96\x09\x2b\xf6\xfb\x4c\xfe\x26\x1f\x32\xe4\x0d\xec\x95\x15\x2f\xba\xb8\x0c\x72\xa2\x43\x23\x1f\xf7\xed\xe9\x61\x37\x85\x86\x65\xef\x33\xca\xf6\x2c\x79\xbd\xcb\x3e\x58\xdd\x7c\x38\x1b\xae\x5f\xef\x8e\x9f\x1c\x37\x3f\x80\xee\xe8\xf9\x6a\xf9\x82\x6c\x9d\xa6\xbd\xb9\x9b\xe9\xf4\xe6\xe3\x0d\xe3\xb5\x08\x71\xa4\xa7\x75\xf8\xdb\x4c\x6d\xd0\x80\x9a\x5a\x17\x59\x3e\x93\xb3\x6a\x50\xbe\xec\xe3\x22\x4d\xdf\x64\x85\x07\x70\xe2\x07\xb7\x17\xfb\x7d\x3e\xbe\xce\x57\x1f\xaf\x1b\x2e\x9b\xa3\x65\xdd\x70\x97\x18\x01\xb5\x07\x48\xf9\x47\x6c\x89\xfd\x15\x7e\x13\xdc\x38\xb4\x83\x88\x0d\x3d\x7f\x4b\xac\xe1\xca\x6d\xfb\xbf\xfb\x27\x70\xf4\xd6\x4d\xf9\xb7\x5a\x9f\xe7\xc1\xaa\x46\x08\xc2\xbf\x45\x09\xc2\xbf\x85\x04\xe1\xdf\x16\x03\xb6\xdf\xc7\xb2\xb3\xee\xf7\x19\x23\x5c\x72\x9d\x00\x97\x1c\x2c\x66\xc7\x99\x22\x53\x9d\x19\xca\x19\xab\x70\xee\x6d\xda\xd7\xa6\xa7\x36\x17\xe8\xa0\xb7\x7b\xf9\x2c\xab\x08\xc7\x39\x61\x68\x9a\x55\x0a\x3f\x39\x27\xbc\xdb\x64\xc4\xf1\x22\x13\x38\x6c\xee\x7b\x7f\x62\x7c\x35\x33\x33\xf3\x64\x9f\x54\x11\xc2\x5e\x0d\x18\xe9\x75\x2f\xb7\x87\x2b\x9f\xe5\x51\xad\xa2\x09\xcc\x0c\x1a\xdc\xef\xe1\x1f\x93\x6c\xc5\xaa\x27\x0d\x83\x5f\xdb\x77\xe7\xbf\xbb\xac\xbf\x26\x93\xcb\xfa\x9c\xfc\x4e\x75\xb3\x21\x6c\x5e\x2f\x70\x21\xff\x19\x5d\x48\x39\x45\xfe\xf1\xd5\x62\x50\xa4\x69\xb6\x4a\x53\x35\xab\x0d\x2e\x10\x6e\x24\xb1\x20\x14\xe1\x1e\xf5\x95\x65\x25\x61\x29\x16\x08\x17\x3a\xea\xb3\x01\xdf\x18\xe3\xfb\x0b\xf4\xf8\x87\xc7\xe4\x2a\xfc\x9d\xbd\xa8\x7f\x31\x7f\x79\x99\xda\xbf\xd8\x71\x65\xe6\xff\x98\xfe\x80\x2b\xf2\x77\x29\xde\xcb\xbd\x5d\x81\xa5\x67\x78\x81\x19\xc2\x7f\xa7\x1d\x8b\xe5\x37\xae\xc5\x2f\x74\x92\xd1\x2a\x62\x68\xee\xb5\xaa\x1e\xbf\x06\x68\x13\x50\xd8\xdb\x96\x7e\x8c\x43\x4d\xba\x67\x43\x45\x60\xbf\x9b\xfe\xe2\x04\x20\x75\x69\xef\xf7\x5c\x5f\xb3\xc6\xdb\x0b\x73\x73\x0b\xca\xab\xa0\xdb\xf1\xaf\xa2\x1d\xff\x2a\xe8\xf8\x57\x0b\x05\x3e\x63\x5d\xb8\x35\xd3\xa3\xc2\xb0\x46\x23\xe7\x85\x51\x12\xc5\x99\x8b\x2c\x99\x26\x48\x0a\x48\x8c\xfc\x27\x68\xb2\xd0\x80\x6b\x48\x86\x07\xf8\x6a\x7a\x81\xa5\xa8\x3a\x2d\x21\x5d\x09\xc3\xbe\x42\x62\x6a\x13\x67\xe3\xba\xa9\x41\x9c\x5e\x4f\x87\x17\x2d\x52\xf8\x69\x7f\xd6\x38\x76\x3f\xe3\x9f\xf0\x5f\xf1\x7f\x1c\x88\xe4\xd2\xce\x50\xf9\x7a\x4d\xd7\x21\xe6\xd4\xcf\x0d\x6d\x28\x99\x2f\x8e\x81\xb1\xe5\xeb\xf5\x31\xff\x73\xa8\xd5\x30\x86\xce\xa4\x94\xa6\x1a\xdf\xea\x3d\x35\x89\xea\xa1\xa0\x5e\x10\x84\xb0\x71\x83\x37\xfe\x79\xd0\x17\x2d\xa4\x41\x2b\xb8\x04\xbf\x32\x8d\xe7\x05\xda\xaf\x03\x20\xf7\xf0\xe9\xc0\x6b\x65\x55\xd0\x9c\x1b\x64\x0f\x33\xc8\x81\x93\xeb\x27\x97\xe2\x39\x75\x79\xde\xcd\x99\xe7\x84\x4a\x99\xaa\x94\xff\xc8\x33\xcf\xe0\x8f\xaf\x16\x03\x79\x55\x3b\x2d\x97\xd2\x71\xd9\x6b\x7b\xbf\xff\x3e\x93\xe4\x6e\xce\x71\xb9\x40\xad\x0d\xc3\xed\xc9\x1e\x3f\x63\x5f\x38\xf9\x09\xc7\xc4\x97\xbf\xe2\xd8\x87\x71\xed\xae\xec\x6c\x86\xf0\xf0\x42\xdd\x5f\x7f\xec\x70\x74\x11\x91\x03\x82\x00\x63\xa2\xc8\x1f\xa1\x86\xdf\xc0\x8a\xfd\x07\xfe\x93\x9f\x21\xef\x2f\x5f\xc2\x95\x2b\xea\x3b\x64\x9d\xa0\xb2\x0c\xa5\x29\x3c\x0c\x82\xc6\x24\x8f\xa6\xcd\xfb\x4a\x04\x60\x1e\x57\x52\xa5\x69\x44\x29\x55\xc9\x89\x54\x06\x8c\x34\xf5\x7e\x28\x42\xe2\x30\xd4\x59\xe0\xbd\x9b\x09\x04\x8e\x4f\xdd\xed\x0c\x27\x3a\xae\xcd\x1c\xda\x98\x05\x17\xb1\xa1\x4d\x49\x7f\x18\xc8\x5d\xfe\x07\x32\xbc\x40\x97\x59\xcc\x95\x51\xdf\xb6\x2e\xe8\xc4\xe5\x4f\x4a\xd3\x2c\xb7\xc7\xa3\xd4\xe4\x20\x47\x08\xe7\xd6\x15\x96\x85\x51\x0e\x19\xc7\xbe\xcb\xac\xf3\xf5\x90\x93\xa6\xae\x77\x24\xa7\x62\x69\xe9\x84\xd2\x7e\x53\xfd\xb2\x45\x2d\xca\xfe\x02\xae\x87\xff\x09\x87\x2b\x4d\xb3\xff\xb4\x07\xe5\x0f\x64\x38\x01\xaa\x28\x27\x1f\xc7\x8f\xfb\x01\xc7\x73\x9f\x85\x84\xe8\x16\x65\x65\xca\x04\x1e\x4e\xf0\x5f\x50\x9b\x4d\xe2\x95\x1e\x9c\xf4\x70\x96\xe1\x86\xf8\xd3\xd7\x93\xd9\x6f\x94\xd3\x33\x16\xb8\x44\x53\xc9\x64\x94\x78\x4e\xb1\x58\xd8\x6e\xfb\xeb\xfe\xce\x0c\xe5\x8f\x67\x4c\xa7\xbb\xf8\xe3\x42\x4a\x83\x40\xe9\xfe\xd3\x52\x41\x39\x6e\xb7\xd5\x29\xfd\xb2\x11\x3b\xdb\x50\x20\x70\x4a\xa1\xe8\xe1\x4f\xa3\x91\x7b\xc2\xe5\x93\xf3\xf3\x3f\x3d\x27\x93\x34\xfd\x8d\xa2\x69\xbe\xe0\x54\xaa\xb0\x5b\x9a\xa1\x81\xe0\xf7\x0f\x20\x54\x69\xdd\x35\x00\x4f\xbb\x92\x8c\x06\xfc\xa7\xe5\xa8\xd2\x34\xab\x48\xc0\xb4\x21\x2d\x34\x55\xfd\xa3\x80\x6b\x7d\xe0\x2a\x84\x1b\xc7\xa4\xd7\x83\x26\x4d\xeb\xb1\xa0\x39\x5f\x57\x3a\x83\x40\xa5\xaa\x01\x7f\x0f\x39\x67\x6c\x93\x51\x42\x88\x32\xef\xd8\x5b\x43\x9e\x2d\x79\x1e\xf0\xa7\x8c\x23\xb4\x22\xca\xe9\xd6\xc0\x74\x1c\x8e\x14\x17\x78\x25\xc5\x04\xae\xb2\x81\x5a\x1a\xc2\xd1\x43\x41\x00\xd2\x09\x32\x93\x6e\x66\x5f\xe6\x7f\xb1\xc1\x46\x9a\x92\x2f\xe0\x3e\x9d\x16\x2d\x9a\x4a\xfa\x49\x98\x82\x38\x2c\x08\x3f\xd2\x3b\x8e\x06\x79\x9a\x52\xf0\x94\x94\xe3\x88\x50\x24\x20\xed\xdf\x06\x9f\x42\x78\x69\xf7\x21\xd4\x57\x78\x6b\x5e\xd1\x93\x85\xb7\x8a\xf4\xe8\x99\x5c\x08\x16\xc6\x3a\x48\x8e\x7c\x74\x81\x30\xec\x07\xc3\x73\xf7\x09\x6b\xee\xb3\x3b\xe3\x4f\xac\x28\xa0\x82\x34\xf5\x7e\x98\x53\x14\x1d\xaf\x2d\xe5\x8f\xb7\xf7\x10\x0e\x9d\x1d\x6c\xfe\xc8\x60\x0f\xeb\x78\xf4\xc5\xd1\x89\x7d\xcd\xec\xcd\x11\x9d\x99\x0b\x35\x05\xfd\x09\x9a\x98\x53\x61\xe6\x05\xd7\x6e\xff\xe7\x83\x3a\x98\x9b\x35\x5b\xff\xa8\x6c\xa7\x72\x72\xdc\xaf\xa3\xb3\xe3\x8a\x75\xb6\x43\xe7\xa9\x9c\x1f\xd8\x81\xd5\xd7\x17\xf2\xbe\xea\x2d\xe5\xf9\x85\xa6\x5a\x35\x8d\xab\xcd\x1a\xda\xe5\xff\x6b\x1a\x32\x64\xe6\x2e\xcc\x43\x07\x11\xfb\x99\x97\xeb\xf2\x69\x75\x7d\xeb\xdf\xbb\x9d\xaa\x56\x5e\x55\xfd\xf8\x97\x4c\x90\x89\x94\x6b\xc9\xf9\x05\x9a\x7a\xe0\x89\x69\x9a\x71\xf0\x68\xef\xb0\x92\xe7\x17\x08\x61\x6f\xa4\x58\xde\x00\xc9\xff\x51\x79\x06\xae\xe9\xa6\xe2\x34\x81\xfb\x00\x03\x17\x86\xa9\xeb\xc8\x86\x7a\x02\x70\xaf\x07\xec\xf1\x1e\xa8\xb0\x49\xd9\x83\x81\xda\x6b\xbd\xad\x7a\x99\xb1\xe7\x93\xfd\x9e\xcb\xff\xb1\x73\x3e\x24\x13\x94\xa6\x92\x71\x4a\x14\x8f\x99\x48\xa2\x01\xbf\xe7\x0b\xf8\xbb\x70\x7d\x0a\x46\xa2\xf5\x0f\x66\x24\x6c\x61\xf6\xe9\x7d\x57\xef\x9a\x23\xed\xb6\x0f\x2e\xb8\x10\x60\x89\x1b\xe7\x39\x99\x65\xf0\x9c\xcd\x26\x53\x86\xce\x6b\x49\x5d\xc5\xf3\xc9\xac\x19\x09\xa5\x7d\x52\x7c\x46\x02\x6a\x1d\x45\xf7\x12\x94\xa6\xa0\x6e\xd1\x3d\xf7\x5f\xc9\x2e\xeb\x2f\xa4\x74\x62\x3e\x40\xcd\xf9\xc5\xf3\x62\x54\x9b\xb1\xe6\xfe\x07\xce\x7f\x56\xf6\x73\x4b\x8d\x29\x7d\xc3\x29\xfd\x85\x66\xf3\x85\xa7\x5c\x5c\xd3\x80\xb1\xed\x39\x77\x49\x4a\x3d\x75\xae\x65\x99\xd6\x9b\xee\x28\xf9\x77\xfa\xaf\x9e\xda\xdb\xdb\x72\x6c\x93\xb9\x1d\x68\x34\x00\xf6\xaf\xe7\x64\x47\x11\xd5\xa6\x13\x2d\x98\x53\x3c\x17\x98\x2f\x4c\x42\x91\x12\xe9\xe8\x08\x53\x0c\x30\xf4\x06\xce\x4b\xb5\xe3\x09\x40\x0c\x04\x62\x45\x4a\x0d\x8a\xc9\x30\x1b\xed\xa8\xe4\xb9\x7b\x0d\x8d\x18\x9e\xd8\xa6\x2a\x24\x69\x64\xaf\xb7\x9e\x1a\x9e\xf6\xf8\x4a\xb9\x51\x39\x90\x5b\x75\x02\xf7\xfb\xa4\x73\xbc\x13\x9c\xab\x42\x96\x3b\x36\x65\xec\xb1\x4d\x70\xad\xdc\x2b\x92\x6d\x5e\x07\x7e\x6c\x5e\x64\x65\x19\x39\x69\x70\x0b\x96\x91\x8d\x2b\xb9\x58\x5c\xab\x43\xf3\x97\x03\x15\xfb\x87\xf3\x9e\x3a\x85\x7a\xfd\x08\x06\xb0\xa4\x7e\x92\xd4\x20\x5c\x87\x40\xbf\x60\x53\xa0\x8f\xe1\x98\xac\x94\x3f\x9d\x01\xee\x58\x7e\xa4\xf7\x16\xe6\xc3\xbb\x69\xc1\xb8\x7a\x54\x20\xee\xb8\xd9\x1d\x11\x8e\xa1\x0d\xb8\xc5\x6c\xa4\xc0\xd7\x93\x99\x18\xf1\xe9\x39\xa4\x57\x67\x5f\x4f\xac\x07\x7e\x25\x39\xd5\x12\x2d\x29\x28\x5f\x14\x66\x94\x4e\xb8\xd9\x21\xb6\x5d\x37\x55\xbb\x25\xc2\x36\xed\xdd\xcf\xa0\x4d\x36\x3d\xbf\xc0\x75\xcf\x99\x43\x8e\xd6\x6e\xea\x46\xf6\xa1\x42\xb9\x94\x92\xae\x65\x47\x1a\xd3\x91\x5c\xd2\x2f\xf8\xbb\xc1\xb5\xea\x54\xef\xaa\xef\x47\xb2\x81\xe3\x9a\x5a\x79\x56\xde\x68\x87\xc6\x3f\xd2\x7b\x03\x62\xd5\xbb\x0d\xfb\x55\xd4\xa2\xda\x1d\xae\xe1\x50\x03\x07\x43\xf7\xcc\xe4\x44\x63\x6f\x61\x47\x44\x23\xe3\xc5\x9c\x2e\x90\xfc\x9f\x51\xf1\x40\x94\xf1\x85\x1f\xf0\x6a\xf6\xd7\xe0\x9a\x66\x1c\xab\x4d\x86\x27\x98\xdb\xd3\x0c\x38\x5f\xf1\xd1\x9c\xd8\x5d\xed\x8b\x36\xa7\x10\x54\x7e\x7e\x2e\xff\x7a\x4e\x26\x61\x5c\xbe\xe9\xc6\xf2\x48\x37\x56\xb6\xe5\xf8\xa6\x42\x0f\x7f\x71\x98\x70\x61\xd2\xb3\xeb\x80\x14\x81\xdf\xd6\xf9\x39\xfb\xda\x86\xd7\x57\x04\x88\x39\x43\x83\x2a\x4d\x7f\x9f\x55\x50\x36\x89\x34\x98\xf8\x7c\xe1\xf2\x29\xb5\x7e\x73\x6a\xad\x9f\xa8\x67\x19\x3b\x62\xb0\x51\x49\xc9\x0e\x11\x10\xbd\x11\x75\xcc\x73\x64\x7b\x3c\x45\x7b\x16\xac\x95\xaa\x32\x80\x68\xe0\xb3\xf0\x0d\x91\x37\x9f\x8a\x57\xcc\x0c\x84\xdc\x6d\x75\x77\x24\x2f\x81\xab\xf4\xe4\x28\x26\x29\x8a\xcf\xcb\x85\x8a\xf0\xb6\x51\x61\x25\xbe\x40\x83\x6b\x4e\xf3\x8f\xad\xc2\x77\x3f\x82\x06\xf1\x0f\x36\xea\x90\x30\x2c\xfc\x45\xc7\xe3\x32\xea\x00\x05\x21\xff\xae\x79\x15\x14\xa7\xd5\x0f\x14\x4b\x59\xcf\x78\x2f\xf8\xb5\xf5\x69\xcc\x81\x4f\xd4\xe3\x63\xf4\x3d\x3e\xec\x32\x4d\x55\xbc\x94\x3e\x72\x81\xac\xe3\xd8\x68\x0e\x6c\xe5\x7c\xe1\xc8\x6f\x45\x26\x97\x95\xe3\x29\xaa\xd1\x08\x95\xf3\x6a\xe1\x34\x2a\xec\x50\x68\x5a\x4e\x26\x97\xb9\xf3\x92\xca\x47\xe4\x2b\xf4\xc0\x33\x36\xcf\x17\x98\xcd\xf3\xd1\xc5\x02\xb5\x6d\xf7\x28\x7f\xa6\x59\x90\x61\xe6\xa5\x77\x2f\xbf\xa7\x9d\xf4\xa7\xaf\xd4\x66\x57\x1e\x40\xbe\x45\xfc\x4d\x47\xa4\x0b\x84\xd6\x01\x8b\x03\x25\x64\x9f\x95\x01\x4b\xe1\x12\x6b\x11\x98\x79\xb5\x5e\x79\x4c\x3b\xdb\x64\x70\x92\x0d\x29\x70\x8c\x79\x44\x68\x64\x03\xad\x7f\xac\xf6\xfb\xea\x80\x52\xaf\xea\x5b\x5e\xf7\x7b\xa7\x43\x39\xa4\xf5\xd9\xef\xb3\x9e\x72\xe5\x50\x59\x7d\x4c\xd5\xf8\xb4\xd4\x0b\x6c\x9e\x1c\xc2\x47\x1a\xe4\x3f\xfc\x40\xb5\x4d\xd2\x7a\xf3\xa6\x69\x26\x27\x40\x33\xbc\x98\x8e\x3f\xd2\x7b\x4c\x51\xe8\xf1\x3b\xbc\xf0\x4d\xee\x34\x48\x0d\x1e\x03\xb0\xb0\x6e\xad\x70\x6c\x90\x7b\x33\xe7\x8b\x34\xfd\xa8\x75\xef\xca\x81\x55\x96\x7b\x75\x90\xa3\xb2\x0a\x3c\x1d\xe5\x2a\xb6\x21\x5e\x5a\xd0\x49\xec\x53\x4f\xbf\x94\x1a\x5c\xf0\x68\xe5\x27\xee\x39\x98\x3c\xd7\x30\x72\xbc\xd7\x5a\x68\x81\x2f\xbd\x7c\xad\x9f\x68\x56\x22\x13\x16\xac\x5b\x2e\xf1\x1b\x49\xe5\x54\xad\x66\x6d\x4e\x4d\x11\xdb\x0b\xce\xd5\xbd\xd2\xa8\x66\xae\x53\xc7\xd2\xf1\x06\xc3\xe9\xb9\x30\x0f\xd5\xae\xf7\xd4\xa1\x47\x02\x30\x14\x41\xe1\x16\x68\xcd\x04\xe3\x99\x3c\x12\xff\x87\xe6\xab\x2d\xe4\xcd\x9c\x01\xcf\x3d\x8d\x93\x35\xe3\x83\x63\x28\x71\x40\xd5\x86\x2a\xda\x73\x79\x57\x15\xb9\x60\x05\xd5\xaa\x57\x8e\x66\x3a\xac\x68\xaa\xfc\x85\x6c\x72\xd7\x8f\xf4\x1e\x05\x61\xba\x7a\xac\x07\x10\x4c\x8d\xcf\xb6\x9b\xa9\x59\xd7\x2f\x13\xf6\xf9\xe5\x47\x97\xbc\xf1\xd2\xec\x7a\xb9\x81\xc1\x87\xf5\x05\xcd\x04\xc2\x1f\x40\x17\xab\xb2\xde\xa2\xe9\x07\xaa\xf9\x7a\x60\x7e\x76\xf7\x31\xac\x58\x6c\x91\x4b\xc4\xb6\x8e\xd0\x59\xf0\xa7\xe3\x88\xcf\x05\xb0\x5f\x54\x5b\xa7\x5a\xdc\xbd\xe5\x03\x16\x0e\x6a\x33\x36\x2e\x75\x54\x1e\x5a\x34\x00\xfe\x11\xb0\x6a\xf6\xfb\x09\x1a\x5d\x58\xa8\x77\x6d\x33\x1c\x27\x66\x77\xc8\x83\x93\xf1\xb1\x0a\x93\x46\x98\xc7\x99\x80\x7e\x9b\x9d\xd3\xff\x60\xd8\x46\xf9\xef\xf9\xf9\xc1\xf6\x9a\x32\xd2\x22\x4c\x9b\x7c\xec\xf9\xa6\x46\xaf\xc2\xae\x05\xf0\x11\xce\x09\x69\x33\x30\x60\x97\xf5\x60\xaa\x84\xc2\x67\x33\xb9\xae\xcd\xd5\x0c\x18\xc8\x3a\x89\x10\xf7\x92\x78\xb2\x03\x73\xa5\x47\xf4\x18\xf3\x82\x35\x5a\x97\xf0\xaa\x2c\xed\x74\x08\x5b\xa9\x40\xb8\x54\xed\x9f\x9f\x9b\xbf\x40\x9f\x2f\xd9\x19\xc8\xa7\x6d\xb3\x69\x38\x70\xc1\x43\xfc\x04\x9c\x73\x7a\x80\x66\xf0\x78\x0a\x6f\x03\x87\xa0\xa8\x98\xba\x2a\xbc\x07\xf6\xe4\x29\xb2\x86\x3f\xd1\x8c\x9b\x6c\xfd\x9a\xf0\x71\x49\xf8\x78\xa7\x20\x9a\xf6\xa9\x32\x0a\x09\xae\x87\x4f\x09\x49\x70\xbc\x75\x0f\xb1\xb4\x02\x99\x96\xb9\xab\x26\x2b\x09\x9b\x57\x0b\xe4\x99\x89\x20\x1a\xd1\x17\x6f\x4c\x68\xb1\x1b\xba\x9e\x1e\x3d\x0f\xbb\x6a\xd7\x14\x92\x29\xdc\x6c\xe8\x4a\xd0\x75\x66\x87\x71\xa1\x41\x96\xbb\x25\xe2\xd8\x20\x1f\xe9\x3d\x44\xa4\x9b\x1f\xa3\x64\x9c\x8c\xa8\x35\x22\xf9\x44\xe8\x68\xf3\x14\x8b\xd1\x05\xe6\x68\x2a\xbe\xbe\x00\x02\x0c\xb7\xa8\xfc\xc2\x58\xee\x69\x4f\x88\x7a\xf7\x0f\xea\xfc\x8f\x28\xfc\x8d\x0e\x39\x0c\x3e\x32\xb4\xca\xf6\xe0\xed\x17\x2b\xe2\x0f\x2b\xdc\x2b\x30\xae\xc6\x55\xd8\x80\x65\x70\xa8\x73\x86\x57\x42\xbe\xf0\xf6\x77\xdb\xc3\xf7\x99\x40\x33\x3b\x65\x53\x6b\x30\xf1\x9c\xb1\xe8\xf1\x20\xc5\xc0\xaf\x53\xdf\x93\x61\xe7\xf7\x7b\x2f\x73\xf4\xeb\xb0\x69\x3b\x57\xd3\xbc\xdf\xf4\xf7\x3e\xe3\x05\x7e\xf0\x84\xce\x2f\x94\x13\xc1\x57\xd6\x9f\xf0\x77\x00\x0d\x6b\x82\xa2\xb2\x88\xc5\xc0\x0b\x54\x72\xcf\xdc\x69\x40\x11\xb8\x72\xee\xb9\x4f\xda\x87\xa5\x9f\x1c\x2a\x71\x56\xb0\x84\x95\xf2\x5d\xe2\xdb\xc9\xe0\x99\xc7\xf9\xfa\xea\xfb\x1f\x7a\x96\x00\x0a\xb0\x79\x2e\xa2\xc3\x6d\x0a\xef\xc0\x83\x04\xc3\x7c\x09\xc6\x28\xa1\xe6\xd5\x62\x50\x3a\x4c\xc3\x2c\x07\x55\xa7\x01\x1a\x94\x3f\x91\xdc\xc4\x7f\x97\x3c\x73\x8e\x4b\x7f\x2b\x7c\xf7\xdf\xd0\x17\xb9\x67\x5f\x47\xfa\xf2\x8b\xb7\xde\x7d\xbf\x77\xda\x9a\x15\x7f\x09\x19\x1a\x5b\xdf\x0b\xfc\x95\x4a\x5d\xff\xfb\x47\x14\x0d\x6e\xcd\xc8\xd0\xf2\xc5\x6e\xd1\xec\xc3\x70\x06\x3a\x40\xc9\x54\xe4\x3e\xb9\x3e\xc0\xd5\xd6\x54\x34\xbb\x48\xd4\x7b\xd9\xc7\xa0\xd2\x5c\xb2\xa4\xaf\xc6\x30\xdc\x8f\x75\xee\xa3\x5b\x65\x7d\x0d\xd2\x37\x34\xea\xd3\xa5\x8d\xd9\xd8\x1a\x36\x7e\x17\x09\x28\xf4\xc9\xa3\x40\xd3\x4a\x61\x73\x37\x3b\xfd\x75\xad\x7d\x50\x71\x81\x57\xc4\x87\x1c\xa7\xde\xac\xe2\xc0\x54\x4c\x83\xc9\x85\x30\xfc\xac\x21\x1c\x17\x84\xe2\xfe\xfa\x16\xca\x95\x03\xf4\xa0\xa8\x45\x76\xb5\x57\xde\xba\x73\x29\xa9\x69\x66\xa7\x0e\xb0\x41\x20\x25\x9a\x5d\x06\x84\x39\xac\xcd\x8f\x8f\xec\x07\x80\xa3\x0e\x5c\xa9\x8a\xbc\x16\xc4\xe2\x74\x1c\x80\x8a\xee\xf2\xa4\xb6\x2e\x0d\x1e\xe7\x55\x05\x90\xbc\xab\xea\xf6\x9a\x95\x5d\x19\xc7\x8a\x37\xf0\x65\xcd\x7e\xa1\x07\x3c\xb3\xb5\xb5\x35\x5e\xd6\x36\xa5\xd1\x91\xe6\x8b\x20\x67\x11\x94\xef\x05\x05\x7a\x8e\x4e\x56\xff\x05\x0e\xa9\xb5\xe9\x2b\x02\x2d\xf0\x11\xe4\x18\xd9\x87\x1e\x6e\x4c\xaf\x65\x59\xca\x81\xbc\xd8\x05\xf8\x33\xfd\x15\x83\xed\xa4\x38\xf7\x3d\x5c\x71\x16\x56\x07\x5c\x02\xcb\x59\x39\x66\xc6\x43\xca\xa5\x2b\xa9\xe0\x85\x72\x55\xd0\x8f\xf2\x3e\x5c\x5a\x6e\x07\xf3\x33\xcd\xc0\x64\xf8\xe0\xd7\xc5\xf6\xfb\xfe\xb0\x2b\x39\x52\x6f\xb7\xe6\x08\xe7\xad\xab\xc5\xe7\x11\x7e\x56\x7a\x89\xf9\x64\x61\x92\x6f\x40\x88\x17\x5c\x6c\x92\x5b\x9e\xf1\x58\xd7\x59\x90\x4e\x38\x8f\xa5\xbf\x37\x42\x69\x27\x29\x40\xd7\x85\x23\x86\xf7\x83\x39\x79\x61\x54\xd3\x66\x10\x3f\xd1\x34\xfd\x89\x1a\xe0\xc0\x1c\x3c\x05\xc0\xb7\x50\x12\xac\x59\x46\x49\xe9\xb2\x9c\x20\x95\x16\xd3\xa4\x2e\x41\x53\x4a\x98\x3d\xd3\x08\x67\x5d\xd3\x23\x84\x9d\x56\x10\xc1\x7f\x4d\x39\x3c\x05\xbd\x4f\x9a\x5e\x65\x1c\xbf\xd0\x26\x5d\x04\xe1\x9a\x5d\x90\x8f\x77\xa6\xa3\x61\x9b\x86\xc3\xfc\x23\x4d\xd3\x3f\x82\x57\x4f\xeb\x42\x9a\x7e\x54\x77\xc4\x4f\x0a\x98\xc8\x6d\xc6\xbf\x7a\xd7\xce\x4f\x54\xc7\x21\xfe\x48\x07\x3f\x51\xc2\x7b\xbe\x42\x3f\x51\x22\x6c\x2e\x40\x73\x58\x7c\x3f\xa3\xff\x80\xda\x74\x3f\xbc\xe9\xd3\xf1\x21\x7f\x54\xad\xe3\xdf\xd0\xbe\x4b\xa1\x8b\x57\xf2\xa3\x43\xfe\xe4\xd3\x74\x5c\x5a\x1d\x3b\xf6\x9d\xb9\x49\x29\xb9\x59\xdf\xd3\x5d\x3e\x93\x47\xe3\xbd\x97\x12\xad\x9a\xfd\xc5\x28\x13\x94\xc2\x54\x99\xb2\x26\xbe\xc3\x46\xd7\x14\x6e\x62\x11\x95\xfd\x10\xb6\x06\xb8\x72\x2a\xcf\x0a\xf5\x77\x0f\x77\x82\xef\xf7\x43\xb6\xdf\x83\x58\x4f\xa3\xfe\xf7\x74\xdc\x94\x1f\xcb\xea\x93\xc5\x5e\x98\xf1\x69\xef\x59\x70\x64\x74\xd7\x3d\x5c\x68\x8a\x4b\xd2\xe3\xdc\xc4\x4c\x78\x82\xf7\x54\xc4\xe2\xca\x5d\x10\x3b\xef\x38\x9c\x5a\xcd\x0e\xf9\x13\x64\xca\x99\xb3\x05\x72\xa9\x1f\x6d\x5f\xfe\xb3\xdb\x17\x79\xbd\x92\xf9\x02\xe7\x84\xe2\x86\xf8\x3d\xb8\x6c\x7c\x7d\x0a\xdb\x64\x4e\x5d\x94\x71\xd2\x18\xd9\x17\xa5\xa9\x2b\x88\x1e\xbc\x37\x3a\x88\x34\x1f\xdf\xe6\xbb\x2c\x12\xbc\xf4\x02\x62\x9a\x5b\x34\x50\x08\x85\xda\x10\x5e\xe1\xc2\x98\xc0\xe7\x2f\xb2\x5c\x1d\xa5\x05\x32\x56\x87\x3b\xc8\xbc\xf8\x02\xd8\x31\x85\xf9\x04\xd7\xc0\xca\x73\xcd\xc8\x18\xb9\x86\xf7\x08\xe5\x04\x14\x9b\x79\x74\x25\xf3\xde\x4a\xe6\x73\xbe\x98\xf6\x1e\x67\xdc\x83\x44\xdc\x90\xb5\x6d\x7b\xe5\x02\xd3\x37\x08\xf5\x16\x94\x8d\xf3\x42\xb2\x61\xb3\xbf\x06\x48\x02\xb9\x5c\xa1\x1c\x9b\xb7\xa8\x45\xd3\x9c\xdc\x67\x39\xd2\xe8\x5c\xd6\xdf\xcd\x9f\x56\x70\x97\x20\xf5\xf8\xc7\xdd\x3a\x17\x9d\x20\xab\xf0\xd2\x45\x97\x1e\x3b\x94\xa3\x38\xb2\x72\xc6\x91\x9a\xb7\x79\x33\xfe\x7b\xc5\x4a\x58\x70\xbc\x5d\x20\xac\xe7\x73\x6b\xad\x3c\xe0\x53\x61\xa7\xcc\xf3\xe5\xcd\x7d\x14\x05\xb2\xf3\x5d\x72\xe5\x6f\xa4\xbe\xb7\xc1\xd8\xde\x05\x5d\xa1\xb6\x1b\xe6\xf8\x1b\x45\xe2\xfe\x40\xc9\xb3\xbf\x8d\x61\x9f\xfd\xe6\x99\xe7\x83\x29\x7c\xee\xd0\x0b\x7a\x7b\x48\xd0\x80\x3f\x9f\xcc\x44\xe6\xe0\x7d\xfe\x40\x71\x32\x06\xfa\x3b\xf5\xf8\xa6\xae\x03\x2e\xae\x09\x77\xf5\xb4\x09\xc2\x0d\x31\x61\xcf\x7c\x5c\x37\xd7\x6a\x35\xb3\x72\x74\x81\x6b\x64\x8e\x05\x4e\x90\xce\xfd\xe9\x97\xa9\x47\x17\x68\x20\x46\xc1\xb3\x09\x2e\xd1\x20\x27\x85\x5e\x43\x05\x66\xd1\x3c\xcf\x2f\x51\x56\x91\x55\x30\x02\xf4\x7c\x32\x63\x59\x26\x46\xc5\xbc\x19\x8d\x16\xa3\x15\x8a\x8d\x85\xda\x02\x78\x85\x2b\xcc\x50\x9b\x25\x09\x06\x78\x09\xdf\xbd\x54\x04\x26\x92\x21\x0d\x68\xc4\x43\x87\xac\xf6\x99\x7c\x25\x49\xf9\x64\x40\x29\x1b\x40\x89\xaa\x88\xed\x5f\xb4\xd1\xd5\x4a\x57\x96\xd4\x0a\x91\xe5\xb8\xd2\x87\x63\x58\x22\x97\x68\xb7\x18\xeb\x04\x8f\xd9\x6f\xcd\xa9\x3a\xab\xa9\x38\xdb\xe4\xac\xa0\xeb\xe9\x99\xda\x47\xf2\xa8\xee\x72\xb1\x3d\x4b\x7e\x3b\x62\x6e\x5f\x8e\x7e\x9b\x9c\xad\xaa\xa6\x58\x43\x8a\xde\x6b\x7a\xb6\xa9\x9a\x72\x3d\xfe\xad\xd1\x34\x83\x07\xa3\x76\xab\xee\x89\xf9\xd6\x9d\x35\xef\x83\x0c\xd5\xb3\xac\x36\x3e\x23\x80\x41\x67\x7d\xbe\x94\x0f\xb5\xbc\x21\x50\x04\x2b\x84\x3e\x72\x41\xd4\x54\xfc\xd8\xa1\x2c\x19\xf8\x95\x72\xac\xb1\xf6\xfe\xa2\xbb\x84\xa6\xb1\xd2\x3a\x31\xa7\x2f\x61\x72\x91\xa1\x07\xa5\x64\xeb\xe0\x12\xd8\x12\x16\x19\xe0\x32\x83\xa4\xde\x96\xbb\x51\xa0\x00\xc8\xa9\xe8\xc9\xf0\x02\xf3\xf1\x92\xd3\x7c\xfd\xa6\x2c\xee\xf5\x4f\xe7\x23\xae\x99\x36\x95\xea\xe0\x05\x30\x60\xba\xcc\x0d\x15\x82\x72\xaf\x40\xed\x3f\x70\x99\xb0\xe7\xc2\xa2\xf5\x2d\xc2\x08\x4f\x47\x1d\x55\x60\xa7\x72\x1d\xec\x69\x2c\x98\x14\x1c\xfd\xe6\x27\xda\xcd\xce\x80\x52\xc4\x2b\xad\x90\xeb\x64\xe5\x88\x76\x4e\xaa\x81\x7b\x01\x1c\xc1\x7e\xcf\x85\x37\x80\x5c\x2e\x43\xdb\xfa\x7a\xde\xac\x24\x1c\x8d\x97\x3b\xbd\x28\xfa\x7a\x2a\x3d\x1e\x93\x83\x1f\x7b\x37\x23\x9f\x14\xf5\x2c\xd8\x55\x4f\x06\x63\x5d\xf9\xda\x12\x26\xb6\xc9\x3c\x99\x4d\x15\xf3\x33\xf1\xe9\x72\x78\xe8\xe0\x6d\xed\xfc\x38\x27\xb3\x1b\x2a\x20\xba\xa0\xa6\x22\x88\x97\xd0\xf0\xb4\x66\x6e\xbc\x24\xbf\xb9\x7d\xa9\xe7\x22\xa6\x13\xcf\x83\x9c\x80\xbd\x93\x54\x79\xa1\x99\x7c\x56\x79\x9b\x6f\xca\x5b\xd4\xb6\x98\x8d\xed\xe6\xf3\xae\x42\xd5\xac\xdb\x96\x13\x59\xd0\x6e\xcb\x5e\x41\xb7\x61\xa1\xe0\xae\xe7\x1f\x64\x0a\x76\xd6\x4c\x84\x39\x15\xe5\xb7\xcb\xd8\xc7\x56\x0e\x75\xe4\x54\x1e\x2a\x27\x69\x86\xc0\xa8\x5d\xe1\x0f\xa4\x3c\x79\x85\x3f\x9f\x78\x91\x9c\xd6\xb9\xd0\x66\x7e\xf2\x65\x40\x39\x99\x31\xc5\x0d\x95\x9d\x5c\x1f\xf0\xc3\xb1\xc9\x8f\xec\xd4\x69\x6d\xb8\x3b\xc3\x7e\xc8\xf1\xa3\xe6\x41\x0f\xac\x53\x5f\x00\xf7\x7d\xdf\x5e\x8b\xd5\x93\xa6\xdf\x59\xe8\x0f\x50\x7b\xc2\xf2\xde\xf4\xd2\xa0\x58\x48\x64\x6b\x19\xec\x26\xb1\x10\x94\xab\x9d\xa2\xf4\xfd\x8a\x1d\x25\xb7\xba\x87\xac\x93\x16\x99\x99\x88\x19\x4e\xe2\x35\x18\x89\x4a\x5e\x40\x9e\x4f\xae\xd1\x9b\xe3\xfc\xb0\x15\xbf\xb7\xa1\xf3\x34\xcd\xc3\x10\x0e\xfc\x83\x37\xea\x0a\xf2\x26\x43\x7b\x07\x21\x10\x83\x2d\x6b\x16\x08\xae\xc4\x77\xfa\xa1\x4e\x3f\x2f\xbb\xee\x1f\xc0\x59\x38\x6d\xea\xa7\xf9\xf5\xde\x5e\x57\xca\x34\x53\x2b\x80\xc7\xf7\x6a\xe1\x83\x57\xab\xa2\xba\xbe\xa6\xdc\x7d\x01\x1b\xbf\xdf\x83\x5e\x1e\x84\xc8\xad\xfd\x22\x2f\xe5\xe5\x2b\xef\x6c\x39\xa4\xf3\xaa\x2c\xee\xcf\xcc\x19\x92\xf7\xb5\x90\xb7\x74\x55\xea\x9b\x7c\x7a\xf6\xdb\x91\x92\x91\xcb\x7a\x47\x57\x02\xc4\x63\xd9\xbc\xeb\xd3\xa1\x79\xd3\x41\x2c\x20\x6b\xde\x19\x6f\x4e\x77\x45\xfb\xa4\xe4\x18\x00\xa5\x37\x9f\x76\x87\xe8\x29\x08\xa7\xec\xa8\xab\xa6\x3d\x4f\x83\xce\x6f\x42\x41\xc0\xee\xb6\x66\x2d\x01\x5a\xe8\xee\x7e\x55\xc2\x59\x59\xc6\xb6\xcd\x9d\x4e\xe7\x77\x6b\xb6\xaa\xda\xfd\xb8\x26\x95\x97\x9f\x88\x91\x03\x23\xc3\x35\x68\x39\xc0\xcb\xd6\x9e\x18\x1d\x7c\x1f\x7a\xdf\x18\xb9\x78\xbf\xf7\x77\x74\x83\x14\x5c\x12\x38\x14\x61\xc5\x9f\x34\x08\x33\xd9\xdf\xbe\x6e\xd7\xf9\x53\x77\x08\x91\x23\x20\xe2\x00\x01\xe1\x1e\x01\xd1\xe1\x01\xfe\xb5\x67\xda\xea\xde\x7c\xa8\xc5\xbc\xcd\x7e\x0f\x8e\xd3\x3d\x44\x94\x52\xe9\x10\xd9\x41\xd6\xe8\xc4\x34\xbb\x47\xaf\xf3\x32\x76\x9d\x97\xd1\xeb\x4a\xbf\x5c\xaa\x2b\xd0\x16\xd1\xc1\xa7\x2d\x2e\xa3\xb7\x61\xe7\x2b\x53\xc4\xfb\xea\xe0\xa5\x65\x30\xaf\x28\xd1\x5f\xa3\x71\xe7\x0e\xf4\x62\x9b\x5d\x7d\xb7\xdd\xec\x7c\x4a\x97\xa4\xeb\x30\x63\x9c\xc4\x74\xee\x42\xd9\x13\xf6\xfb\x87\x76\x9a\xe9\x1f\xda\x2d\x27\xaa\x7e\xe5\x46\xfd\xaa\xc9\xf6\x21\x0d\xac\x19\xbd\x2e\xd6\xb6\x58\x7d\xe6\x19\xad\x7a\x3a\x35\xf3\x8d\x67\x24\x51\xba\x5b\xde\x66\xd0\x93\x4f\x3c\xdf\x29\x88\xd7\xf7\xcd\x8e\x72\x94\x7d\xa7\xbf\x46\x9e\xba\xaa\x12\xbf\xa2\x6a\x57\x8f\x06\xb4\xbb\x33\x8d\x33\x5c\x8a\x6c\xbe\x40\x98\x09\x94\x81\xa2\x57\xcc\x2f\xe4\xff\xbe\x5a\xa0\xa9\x2b\x21\xa0\x00\x70\xfa\xb9\x20\x95\x18\x5f\xb3\x72\xad\x1c\x23\x06\x11\xe0\x9f\x5c\xed\xfc\x5a\x74\x22\x29\x1e\x5a\x6d\xf5\xf8\xff\xcf\x91\xa8\x4a\xfa\xe7\xfc\xd8\x37\xaa\x40\x76\xf2\xf6\xd5\x96\x8a\xee\x42\x3a\xf0\x73\xbb\x83\x07\x76\x03\xb7\xa7\xec\x19\x5c\x3c\x2a\x83\x99\x03\x19\x97\xc4\x94\xe6\x87\x80\x00\x12\xf2\x7d\x73\xb1\xc0\xbf\xae\x58\x71\x92\x4c\xd1\xb1\xdb\x73\x08\x89\x36\x56\xc6\xba\xb9\xb5\x01\xc3\xc7\x6e\x03\xe3\x2a\xe4\x7d\x51\x22\x7c\x22\x71\x67\x2e\x74\x20\xee\x9a\x61\xaa\x75\xf7\x78\x9f\xe5\xf4\xa7\xfe\x8c\x6b\x5c\x6b\x40\x00\x50\xaa\x36\xdc\xab\x29\x74\xdc\x54\xec\x85\x1d\xc2\x01\xd6\x40\x71\x25\x84\x90\x5a\x5c\x66\xe5\x7e\xdf\xf3\x1b\xf8\x7a\xd2\x63\x92\x71\x99\xa6\xf2\x66\x77\x6c\x34\x70\x43\x47\xdb\x01\x46\xd8\xc4\x89\x0f\x65\x73\x52\x28\xd5\x97\x74\xdd\xe1\x48\x39\x42\x8f\x31\xa4\x22\x9c\x0d\x3d\x8b\x07\xc5\x2d\x59\xd5\x4a\xc8\x22\xfd\x93\x69\x0b\x6c\x84\xbd\x97\xed\x29\x58\x89\xc3\x8c\x64\x72\x9c\x91\xfc\x6d\x32\x12\xa3\xe4\xb7\x3e\x23\x99\x44\x18\x49\xdb\xd4\x46\x1c\xe6\x1e\x3d\xb6\xd1\x4b\xab\x20\x1c\x9d\xd0\x60\xcc\x92\x4e\x78\xe8\xaf\x6c\x93\x25\x65\x73\x7b\x4d\xb9\x1f\xb9\xe9\x19\x2e\x87\xea\x97\x09\xf3\xf0\x71\xac\x9c\x55\x23\xc4\x56\x57\x36\x47\x14\xad\xdb\x00\xad\x0f\xcb\x36\xde\xb4\x71\x10\x09\xd4\xab\xdc\x75\x46\x2b\x18\xa3\xed\x33\xdd\xbe\x8e\x38\x8c\xf7\xc0\xf0\x8b\x43\xe6\x32\x4d\xda\x09\x03\xbc\x69\x33\xbb\x30\x7b\xfb\x7d\x0c\x50\x0c\xb4\x12\xcf\xfe\xf6\xfe\xd9\x58\xd0\xda\x82\x8a\xed\xc4\x71\x33\xf6\x92\xd3\x1b\x56\x0b\x7e\x4f\xe6\x0b\x93\x8d\xb9\xe2\xf4\x07\x76\xfd\x7d\xb9\xa6\x9f\xc9\x51\x47\x05\xc9\x22\x28\x98\xbd\xfb\x6f\xee\x5f\xe7\xb7\xf4\x00\x60\x67\xd8\x12\xe6\xc4\x68\x79\xb0\x8e\x40\x30\xa1\x07\x62\x5e\x2e\xc6\xa5\xac\xc8\xcf\x5b\x31\x2f\x17\xca\xbb\x52\x7e\x1f\x01\x73\xf7\xe5\x05\xd3\x88\x59\x14\x2b\xa8\x06\xfd\x54\x26\x44\xee\x9c\x21\x83\x41\x8f\x46\x46\x1c\xb4\xb5\xd9\xe0\x8b\x09\x7e\x90\xfd\x9b\x52\xac\x13\x38\x4c\x45\x8b\x90\xdf\xbd\x17\xaa\x26\xd9\x58\x2c\xbf\x9d\x29\x06\x9d\x1f\xaa\x90\x86\x35\x7d\xd7\x1f\x5b\xc7\xff\x35\x36\x06\x40\xfc\xed\x4e\xaf\xd5\x6c\xf3\x43\xa3\x10\xf8\x02\x21\x0b\x88\xe2\x70\x12\x77\x8a\x95\xb9\x55\x7c\xd6\x4e\x0c\x7c\xe0\xc4\x5b\x81\x6f\xa3\x83\xcc\x12\x30\xc2\x26\x78\x65\x68\x8c\xba\x25\xef\x44\x2f\x31\xba\x94\xa8\xde\x38\x2d\x2b\xbe\x17\x64\x78\x81\x6f\x04\x79\x90\xe2\xd4\x74\x82\x97\x51\xa4\xd0\xa9\x2c\x44\xc5\x59\xf4\x65\x37\x91\x55\xb4\x10\x58\x81\x0f\x7c\x6f\x23\x11\x6b\x2a\x46\x23\x7c\xa4\x16\xc9\xd3\xe2\x6b\xe8\xf3\x52\x90\xf9\x62\x10\x00\x60\x2e\xd5\xec\x7d\x12\x31\x97\x5a\x47\x9b\x5f\x0a\xe5\xc2\x71\x08\x16\xd5\x3a\x4a\x51\x2c\x7a\x88\xa0\x98\x77\xa1\xaf\x1f\xcb\x7e\xb4\xc9\x32\x4a\xc0\x07\x97\xbf\xa8\xd6\xf4\x4a\x64\x13\x84\xbe\x26\xff\xfe\x6f\x69\x4a\x9f\x93\xff\x3d\x31\xce\x57\x57\x4a\xee\x1c\xe4\x69\x6a\x70\x7b\x15\xb4\x69\x0e\xd1\x8e\x8e\x1c\x7d\x06\x72\x94\x75\x0d\x3b\xce\x70\xa1\x0f\x9e\xaa\x56\x38\x23\xc2\xe0\x93\x98\xe7\x0b\xc2\x2f\xc3\xfa\x39\xce\x5d\xa8\x4d\xad\x9c\xb9\xd9\x26\xbb\x13\x8a\x45\x91\x62\xb5\x81\xfe\xe2\xf3\x1a\x46\x24\xe6\x6c\x41\x6a\xdc\xa4\x69\x33\x16\x06\x2e\x96\x90\x37\xc2\xd3\x81\x86\xf8\xac\x0d\x42\x61\xab\x0d\xf6\x7a\xe6\x19\xfc\x64\x95\x1e\xa2\xaa\x32\xf7\x82\x22\xa0\x41\x48\xae\x05\x2b\x1b\x3a\x50\x10\x48\x0d\xc2\x72\xf0\x0d\x78\xa2\x99\x71\x13\xd6\xa2\x6c\x4e\x6d\xbf\x32\xb4\xc0\x0a\xea\x0a\x12\x5a\xbb\x48\x1e\x61\xd5\x9d\x87\x76\xc2\x40\x39\x21\x67\x72\xc7\xe0\xc3\x28\xba\x17\x08\xd3\xfd\xfe\x5a\xf8\x04\x77\x29\x70\x24\x75\xd4\x67\xa1\xe2\x48\x06\xb0\x87\xbd\x35\x7d\xe3\x3a\x13\xce\x5b\x20\x85\x3a\x6c\xfd\x19\x9d\x66\x11\x37\x77\x30\x3a\xdd\x2b\xc5\xa3\x1c\x1f\xf6\x53\x1f\x75\x01\x73\x51\x37\x2d\x11\x1d\xac\x2b\xf9\x65\xc6\xe3\x29\x9c\x32\x8e\x24\xcb\x67\x84\x00\x47\x55\xf6\x7b\x2e\x57\xbf\x43\x6b\x94\xf5\x73\xd0\x49\xc0\xd4\xef\xc5\x83\x20\x49\x56\x37\xd7\x00\x3e\x7c\x56\x6d\xce\x80\x01\x42\x89\xb1\xbe\x7e\xda\xb2\x82\xfa\xc9\x56\x6d\xe4\xc4\x7e\x9f\x64\xda\x50\x8d\x92\xd6\xb8\xaa\x04\xdb\xcc\xf8\x96\xf8\x91\x59\x57\x86\x39\xe3\xf7\x1e\xbc\x95\x11\x57\x9c\x56\xb8\x8f\x06\x18\xfa\x68\x98\xa7\x28\x4d\xb9\xbf\x67\xd3\x94\xb7\x2b\x00\xc2\x28\xd1\x43\xdb\x46\x70\x7b\x3f\xa9\x29\xff\x28\xba\x40\x31\xda\xec\x1f\xa6\x71\xf1\x22\xa2\x3c\x4e\x24\x86\xae\x21\x79\x10\x48\xbd\xc0\x34\x1a\x6f\x9a\xd2\x21\x31\x28\xc2\xea\xc7\x1b\xed\x1e\x2f\xff\x7e\x0d\x6c\x90\xfa\x1b\x9a\x52\x7f\x7e\x9b\x0b\xaa\xfe\x52\x47\xc8\x0b\xa7\x7a\xa4\x03\xca\xac\x14\x7d\x53\x53\x15\x90\xfe\x4a\xe0\x77\x82\x3c\x78\xb9\xae\xde\x8a\xae\xf1\x95\x43\xfc\x07\x24\xe9\xb6\x2c\x08\x5d\x40\xf8\x03\x9b\x7d\xd4\x84\x89\xa9\xe8\xe3\x29\xfc\x1f\x33\xcf\x43\x5a\xf8\x41\xb3\x81\x07\xfe\x5c\x2c\x5c\x52\x1f\x45\x20\xcb\x9e\x0f\x0c\xf1\x40\x60\x08\xd1\x9e\x35\x80\x4c\x05\xd6\xd0\x18\xae\x49\x3e\x83\x6d\x27\x05\x66\x45\x50\xa7\x9e\xc3\xc9\xb7\xaa\x3f\x1a\x53\x1e\xb0\x11\x1f\x3e\x65\x25\x9a\x65\xf9\x5c\x2c\x22\xd9\x3e\xad\xaf\x27\x6e\xc8\x32\xd3\xb6\xe4\xac\x39\x63\x1a\xdb\x53\xb2\xcc\xc2\x0f\xcd\x6b\x8c\xae\xc8\x0d\x2e\x48\x64\xa4\x70\xac\x6b\xb2\xcc\x60\x06\x10\xae\xf7\xfb\xac\x06\x17\x11\x81\xa5\xd0\xe7\x00\x46\xf7\xfb\x61\x56\x77\x5a\x0a\xa7\xac\xc0\x2b\xe2\x8d\xd6\xb6\x8d\xad\x3d\x02\x3a\x5c\x10\xa7\xcd\x6f\xec\x5f\xe1\x87\xb5\xfd\x50\xfd\x85\xa6\xf6\xcf\xa9\x7b\xbd\x1a\x7a\x23\xdc\xef\x0b\xf5\x53\x7f\xa1\x3d\x52\xc2\x1b\xbf\x71\xa9\xd5\xac\xbd\x6f\x85\x37\xd6\xbc\x57\xe0\x6f\x68\xb6\xc1\xa5\xf0\xfc\x83\xe4\x7e\xc2\x25\xae\x71\x2e\xe9\x45\xed\x81\x7c\x4f\xf5\xad\xa4\xb9\x3a\x81\xbe\x26\x93\xfd\x3e\x51\x47\x95\x96\xb9\x53\xc3\x32\x5a\x27\x3a\xb9\xc6\x2d\xe5\x37\xbd\xe7\xb3\xae\x6f\xb0\xdb\xf2\x72\x8d\xf6\x7b\xc0\xd9\xcb\xd5\xf4\xde\xe6\x1f\xa9\x76\xac\x63\xc8\xf8\x03\x75\xdf\x70\xe4\xb4\xd9\xad\xde\x66\x35\x9a\x16\x69\x5a\xf8\x1d\x3e\xbf\xe8\x36\x6d\x1d\x41\x72\x38\x15\xaa\x69\xd8\x68\xd6\x97\x41\xc5\xd6\x01\x34\x02\x1f\xe7\x75\xcd\x6e\x4a\x94\x3d\xb4\x38\x47\xb8\x21\x1e\x5c\x68\xa1\x10\x1a\xcc\x45\xed\xf1\x97\x59\xa1\x59\x87\x15\x29\xe7\xc5\x62\xf0\x41\x64\x2b\x34\xcb\x1a\x32\x9c\xe0\x7a\x5e\x2c\x08\x1c\xd5\x02\xaf\x70\x8e\x1f\x5a\x84\xa6\xf0\x70\x65\x16\xa5\x91\x9b\x76\xbc\xac\x9b\x1d\xe5\xa4\x1a\xbf\x7b\xf3\xe6\x03\xc2\xb5\x37\xcc\x0f\x42\x45\x2f\x96\xe4\xef\xe6\x8c\xd5\x0a\x2e\xce\x2d\x9f\x5a\x4a\xdf\x85\xff\x75\x8f\xde\x98\x4b\xc9\x4b\x94\xc0\x91\x59\x87\x9b\x20\x07\x12\x47\x07\x62\x7a\x6a\x52\xce\x7e\x3f\xfd\x06\x37\x64\x72\xd9\x3c\x67\x2a\xd8\xcc\x5c\xfe\xcd\x68\x84\xea\x8c\x62\xfd\x78\xde\x2c\x74\xca\x00\xcc\x74\xf2\x87\xd0\x71\xcf\xa5\x82\x28\x67\xdf\x4e\x5f\xe3\x15\x99\x5c\xae\x9e\xe7\xa6\xba\xd5\x68\x84\x8a\x8c\xe2\x7c\xbe\x5a\xd8\xdc\x03\x2e\xf4\xc2\x1b\x5f\xec\xbe\x4a\x53\x3b\x03\x92\x77\x89\x39\xa2\xda\x22\x25\x48\x48\x2e\xfa\xc1\xf7\x42\xd2\x39\x32\x1e\x5a\xdc\xc8\xff\x15\x1d\x5b\xe3\x4a\x31\xe8\xc1\xf2\xe1\xbe\x3b\x92\xe7\xda\xee\x12\xe7\xe1\x75\x90\x0a\x11\x3d\x68\x70\x7f\x79\x25\x60\xfd\x37\x9b\xd3\x85\x35\x47\xdf\x92\xc9\xe5\xad\x63\xb6\x6e\x95\x34\x5b\x13\x31\xbf\x5d\xe0\x2d\xe1\x38\x6b\x48\xb6\x26\x35\xf2\x28\xdb\x37\x62\xb6\xb5\x79\xc2\xb3\x35\x9a\xbd\x13\xd3\x6c\x6b\x73\x8f\x67\x6b\x84\xd7\xc6\x86\xc0\x68\x8d\xa6\x6b\x34\x24\xe4\x1d\x24\xa0\x6d\x14\xb3\x07\x5b\xbf\x02\xbd\xdd\x2b\x79\xe0\xe1\xc3\x34\xed\x3e\x91\x9c\xea\x8a\xbc\x15\xd9\x21\xa2\x81\x1b\x00\xac\xc3\x1b\x28\xd4\xa3\x1d\xe6\x75\x83\x9a\xfe\x09\x93\x37\x93\x32\xcf\x17\x08\x7f\x2b\xb2\x0a\x17\xb8\x99\x17\x0b\x3d\xbd\x2b\xbc\x41\x68\xd0\xfb\x2e\x31\xfc\x71\x82\x20\xa1\xb2\x65\xe3\x1d\x47\xaf\x01\xb8\x6a\x95\xe5\xa5\x4e\xd3\x8c\x66\xe6\x87\xb7\x76\x92\x7c\x7f\x62\x62\x5b\x35\x22\x4d\xdd\xdf\xd6\x71\x7d\x87\x50\x9b\x09\x5c\xc0\xd5\x47\xb1\x97\xe8\x64\x4b\x26\x97\xdb\xe7\x2b\xb3\x68\x5b\xb5\x68\x72\x8e\x6a\xc1\x9b\x95\xa8\x78\x32\x04\x4f\xcb\xd5\x7c\xbb\x00\x27\xcb\xce\x20\x38\x82\xfb\x3d\x27\xe0\x47\xc0\x48\x23\xff\xd9\x8c\xaf\x7e\xf8\xfe\xea\xfd\xf2\xd5\xcb\x0f\xbf\x7f\xf3\x2d\x52\x29\x94\xd2\x94\xf9\x97\xda\x77\x42\xc7\xc7\xae\xc9\x2b\x01\xf0\xba\x35\x6e\xd0\x20\x27\x6b\x48\xbf\x85\x19\x59\x2b\x2f\xf3\x36\xca\x12\x30\x9b\xc0\x75\xa8\xf8\x03\x8e\x66\xdf\xab\x44\x47\x70\x1a\x19\x9a\xea\x9f\x14\x3a\x86\x30\x28\xe5\x38\xce\x31\xc3\x85\x9f\xdf\x35\xec\x6c\x9a\x66\xaf\xba\xca\x4b\x4b\xa5\x70\x45\x84\x4e\xe1\x29\x59\x4d\x9c\x13\x3e\xaf\x16\xb8\x26\xe5\xbc\xea\x7b\xf1\xe6\x86\x3d\x50\x79\xa4\x3d\x1e\x9c\x41\x8f\x2b\x24\xf9\x0f\xc2\x2c\xc0\x1b\x9a\x66\xb9\x25\x99\x84\xce\x2b\xc9\x27\x3c\xc8\xd9\x98\xe6\x1a\x1c\xb0\x6e\xb5\x49\xe5\x3b\x81\x7f\x11\xf8\xf7\x02\x7f\x73\x48\xb9\xe5\xd4\x2d\xbb\x58\x32\xaa\x90\x2d\xeb\xe5\xf4\xf0\xd6\xd8\x8b\x99\x41\xca\xe6\x14\xca\xdf\x0a\x76\xb8\xae\x6e\x69\xd4\xbf\x56\x40\x2c\x31\x6a\x6d\x7c\xc1\x43\xeb\x42\x41\x62\x39\xf7\xb5\x10\x3d\xe7\x8b\xc1\x0b\x91\x31\x34\x2b\xe7\x7c\x41\x7e\xa1\x19\x43\x53\xf8\x53\xae\x28\x24\xcd\x71\x8b\x98\x19\xef\x05\x75\x36\xc8\x8f\xc2\xc6\x91\x40\xae\xd0\x17\x6e\x43\x87\xe1\x48\xfa\xa8\x98\x88\x24\xaa\xf9\x17\x7f\x4e\xa5\xa4\x38\x19\xfc\xca\x36\x39\xf9\x85\xec\x41\x26\x1c\xae\x07\x35\xbd\xef\x5b\x93\xfa\x1e\x85\xdc\x0b\x55\x31\xd1\xe9\x33\x3e\xcd\xec\xa9\x07\xb2\x57\x07\x4b\x42\xbd\xad\x00\x16\x03\x9d\x77\x06\xdc\xfc\x06\x47\x94\x9c\x9c\x56\x3b\x1a\xcd\x7d\xf8\x58\x26\x22\xa3\x9d\xb1\x19\x88\x3a\xf9\x87\xd8\x26\x03\x8f\x77\x8b\x48\x62\xb1\x1b\x1c\xd5\x37\xfc\x19\x44\x5c\xfb\xab\xe7\x95\x19\x74\x77\xba\x5f\x4e\x4f\xeb\x9c\x69\xb7\x7b\xef\xa1\x89\x7f\x37\x45\x5c\x2a\x37\xff\xb1\xf7\xb7\x61\x03\x7f\x84\x1c\xc6\xca\x0a\x08\x81\xf6\xbb\x5d\x71\x1f\xcb\x18\x05\x17\xf6\x5c\x96\x5b\x20\x5b\xf0\x6d\xce\x05\xcb\x8b\x53\xca\xaf\xa9\x08\xd2\x40\x85\x59\x1e\x86\x5e\x94\xa6\xd9\x06\x0e\x4e\x5e\x4e\xa6\x4f\x74\x69\xd7\xe7\x56\x31\x01\xe6\x64\x9e\x0c\x3c\x3e\xf3\x7f\x4c\xb5\x66\x67\x60\xf5\x44\x56\x5e\x19\x5e\x0c\x0c\x54\x36\xf4\xc5\xcf\xc5\x39\x19\x18\x6d\x99\x9a\x58\x70\x2c\x71\x6e\x56\x21\x3d\xf1\x22\xae\x4c\xe6\x54\xe4\x20\x79\x4c\x08\x60\x1c\x89\x42\x44\xa3\x6c\x2d\xd7\x61\x83\x07\x0d\x29\x88\xee\x72\xb5\xf9\xf4\xb2\x60\xde\xdf\xf5\xa5\xb7\xeb\xb9\x49\xc7\xc7\x21\x5e\xa2\x9c\x33\x7f\xd7\xb3\x85\x67\x3d\x30\x8d\x96\x18\xa0\x27\x00\xe7\xab\x6f\x7c\xf6\x97\xcb\x3a\x43\x9e\x9a\xe2\x65\xe6\xff\xb0\x8b\xf5\x4f\x5a\xf1\x70\xbd\xfd\x13\xea\xe0\x09\x83\xeb\xc3\x2f\x82\x23\x81\xb1\x10\x2e\x98\x41\x6c\xbe\x52\x51\x0a\xcb\x0c\x99\xbf\x8e\x06\xe8\x75\xb7\x8b\x94\x33\x5d\xbc\xa8\x61\xb9\x7a\x53\x6e\xd5\x5a\x67\xd0\x06\x4a\xba\xb1\xa2\x3f\x7a\x36\x3c\x9a\xa6\xc6\x02\xb6\xdf\x4f\xb0\xf5\x44\x96\x53\xa0\xc2\x51\x7c\x8a\x38\x08\xa1\xa7\x84\xaf\xb0\xa6\x90\x6e\x4f\x52\xc9\x80\x59\xfa\x46\xcc\x18\x4c\xfa\x37\xc2\x10\x40\x86\x5a\x27\x39\x9b\x8c\x4f\xdf\x48\x7e\xc0\x37\x75\x7b\x89\xc4\x7a\x7c\xce\x77\xa2\x1f\x85\xe9\x98\x1b\x42\x5b\x84\xc3\xbc\x52\xbf\x44\x2a\xe9\x96\x88\xe6\x9b\xa5\x9f\xce\xbe\x13\xea\xa2\x39\x96\xc5\xea\xf7\xe2\x50\xe6\x73\xb8\xc3\x9f\x81\x34\x1d\xe6\x3f\x3f\x94\xb6\x3c\x4c\x0d\xde\x4b\x02\x6e\x12\xd6\xc5\x7a\x0b\xdc\x85\x4a\x11\xd6\x2d\x23\x6b\x92\xaf\x09\xe4\x10\x7b\xf3\xe7\xd7\x2f\xdf\xf9\x4e\xe7\x40\x79\x84\x8b\x49\x83\x02\x00\x6c\xaf\x8a\xf2\x43\xc3\xe3\x55\x23\x58\x79\x73\xda\x00\x4d\xe1\x82\x5d\x3f\xa3\x9f\xc5\xb3\x55\x55\x0a\x5e\x15\x05\xe5\x8f\x16\x2f\xaa\x55\x2e\x47\xf2\x2c\xdf\xb1\xd3\x0b\x97\x55\x49\x97\xe6\xd7\xe9\x9f\x6d\xf3\x7a\xfb\x25\x9f\xb1\x5a\x54\xfc\xfe\x0b\xbe\xcc\x1b\x51\x9d\xfe\x59\x7d\x5f\x0b\x7a\xfb\xec\x86\x96\x94\xe7\x82\x2e\x9f\x30\x8d\xfa\x53\xf7\xc5\x72\x53\x9d\xfc\xd5\xba\x2e\x4e\x2d\x2a\x1f\x9d\xde\x1d\x28\x7d\x6a\xe1\x9f\x1b\xca\xef\x97\xbb\x9c\xe7\xb7\x8f\xef\x32\x00\x85\x5c\x51\xfb\xf0\x69\x1f\x3c\x61\x42\xf3\xd5\x96\x9e\x94\xd5\x1f\xaf\xf1\x0e\xdf\x76\x8e\xf5\x21\x90\xf4\xe4\x07\xbb\x27\x3a\x61\xbd\x71\xe7\x3f\x6e\x6c\xb8\x6d\x7b\x18\x17\x3e\x79\x5d\x95\xf4\x89\x15\x97\x27\x55\xfc\xfb\xbc\xde\x3e\xb1\x62\x76\x5a\xc5\xea\x64\x3d\xb1\xee\xea\xa4\xba\xaf\x1a\x51\x3d\xb1\xe2\xfc\xa4\x8a\xcd\xf9\x7c\xe1\x1d\xcf\x93\xaa\xaf\xbf\xb0\xfa\xef\x72\x29\x24\xde\x9f\xdc\xca\xc1\x1a\x8e\xb6\xeb\x68\xc7\x77\xd5\xa9\x23\x6a\x4e\x1a\xd1\x3b\x38\x72\xdf\xbe\xff\xe1\xc4\x5a\x8b\x27\xd4\x7a\x62\x95\xab\xd3\xab\x3c\xb1\xc6\xcd\x49\x35\xfe\x49\x12\xb5\xb7\x9a\xa6\x9d\x54\xef\xf6\xe4\x9e\xb2\xf2\xe6\xbd\xa2\x6a\x27\x56\xbd\x7e\xc2\xbc\x3e\xad\xe6\xdd\x49\x35\x7f\xd3\xac\x3e\x52\x01\x79\x1b\x4f\xac\xf7\xd6\xab\xf7\x31\x4e\x25\xc6\x7c\x1c\x67\x5b\x6e\xa9\xc8\xbd\x9b\xcf\x7d\x08\x75\x79\x77\x29\xf0\xdb\x8f\x5e\x19\x31\x36\x4f\xeb\xdb\x43\x56\x4f\x8f\xc9\x45\x0b\xea\x07\x5a\xa7\x91\x3d\xc4\xf5\xc1\xd3\x79\xf2\xb3\xb7\x9d\x16\xd8\xfb\x35\x05\x0d\xe3\xf2\xe7\xdd\xb7\xb4\xa0\x37\xb9\xa0\xf6\x81\x0a\x94\x5a\xfb\x08\x86\x5e\xca\x16\x97\x25\x73\xbe\x48\xa4\x88\x08\x40\xf8\xe5\x8c\x4f\xb9\x86\x65\x9f\xe0\x12\x22\xa7\xe9\xd8\xab\x1d\x65\x4c\xb9\xb2\xdf\x50\x81\x20\xea\x55\xca\x2e\x3c\x2f\x6b\x26\xdb\xf8\x50\xc1\x26\x9a\x46\xc4\x56\x4a\xdc\x77\x60\x86\x4f\x44\xce\x6f\xa8\x48\xa4\x04\x0b\x99\x8b\xc3\x3a\xf6\xfb\xf0\x21\xee\x27\x6c\xc3\x95\x27\xcb\x30\x84\x35\xbc\xeb\x65\x3e\x1a\xa1\x6a\x9e\xfb\x72\x6e\xbe\xf0\x20\x5f\xb4\xfb\xbf\x12\xcd\x39\xdd\xb0\xcf\xd0\xa2\x94\x34\xae\xf8\x8d\xee\x5e\x25\x47\xa6\xa3\x8e\xbf\x74\x50\xfe\xe7\x72\x3c\xfa\xf7\x9f\x99\xd8\xfe\x77\x0c\xa7\x75\xee\xd2\x7a\xe3\x79\x7b\x92\x9d\x72\xcc\x42\xa6\x3d\x72\xc8\xd6\xf4\xba\xb9\x79\x4c\xe2\x09\x8f\x81\x16\x57\x1e\x94\xb2\x73\xda\xd7\x37\x82\x44\xcb\x6e\x77\x05\x95\x83\x87\xf6\x8d\x13\x5e\xf8\xb4\xf6\x6c\xf7\x5c\x2b\x4f\xf5\xf4\xf0\x30\xda\x31\xfc\x6c\xfa\xd0\xb6\x5e\xb7\x1e\x15\x8d\x8e\x71\xfa\xfe\x9c\x40\x05\xe7\xd7\xf9\x35\x8d\xb3\xd9\xd7\xbc\xfa\x54\x53\x7e\x4e\xcb\x3b\xc6\xab\x52\x76\xe8\x14\x72\xd5\x95\x45\xe3\xf4\xa9\x29\x05\xbb\x8d\xf3\xe0\x8a\x5e\x75\xd6\xec\x64\xd1\x46\x7e\x7d\x94\x31\x8e\x49\xb8\x9a\xdf\x7b\x9b\x8b\x2d\xd9\x60\xf5\x28\xaf\xb7\xf0\x7b\x8b\xa3\x5b\xa2\x38\x1c\xa7\xa1\xbc\x9b\xb4\x87\x8e\x20\x47\xe3\x35\x50\x67\x93\x90\x44\xae\x58\x82\xc5\xf1\x98\x82\x2a\x16\x53\x50\xf5\x14\xa0\x01\x6c\x2d\xaf\x2a\xf1\xe3\xbb\x1f\xb0\x88\x28\xcd\xe9\xd8\x4c\x20\x50\x86\xa6\xa6\xfc\xea\x86\x96\x02\x97\x84\x8e\xb5\x9c\x89\x19\xa1\xe3\x75\xb5\x82\xfe\xbf\xaa\xd6\x14\x57\x84\x8e\x55\x80\x0b\xce\x25\x3d\xd1\x0d\xd4\x24\x91\x82\x70\x82\x0b\x32\xbc\x50\xfe\x17\x8d\x9c\xd2\xef\x9a\xa2\x90\x53\x8a\xb4\xce\x0b\x9e\xd7\xcd\x0e\x36\xa4\x5e\x02\x39\xc6\x12\x19\x73\xd7\x26\xcb\xb1\x40\x83\x15\x21\x64\x3d\xab\x49\xa2\x7b\x92\x4c\x93\x67\xff\x92\x10\x42\x56\x1a\xc0\x21\x9b\xe0\xaf\xd0\x2c\x2b\x0d\x09\x7b\x2f\x72\x41\xb3\x07\xc8\xc8\xb8\x6e\x71\x92\xe0\x35\xc2\xde\xf7\x68\x9a\x15\x64\x08\x19\x23\x1a\xf3\x8d\xee\x19\x5e\x23\x6d\x4a\xec\xf5\x30\xaf\xb7\xea\xd6\x92\xd7\x4c\xa5\x3b\xb9\x23\x5b\xd7\xc9\xdd\x7e\x9f\x3c\x83\x8e\xa5\x69\xf2\xec\x5f\xe0\xcf\x1d\x74\x3c\xaf\xb7\xc9\x91\x46\x77\x08\xb5\x6c\x93\x15\x4e\x19\x6c\xb8\xe6\x36\x7b\x30\x4b\xa3\xa2\x44\xed\x42\xe9\xc1\xa8\xa7\x66\x8d\xec\xca\xa9\xc7\x6e\x21\xf5\xe2\x4c\x29\xf6\x97\x50\x95\x0a\x16\x55\x2d\xa8\x7a\xa1\xfe\x6e\xd1\x40\xc5\xb0\xab\xdc\xc2\x10\xd1\x60\x2e\x94\x55\x5e\xae\x68\x61\x78\x33\xd1\xec\x12\x3c\x9c\x20\x2c\xf4\x16\xf0\xf4\xcc\xcc\xaa\x92\xb4\xa3\xa0\x76\x52\xcd\x12\x3b\xbe\x64\x24\x34\x1a\x0a\xb4\xc0\x71\xa2\x7b\x9d\x60\xaa\xb3\xd8\xfa\x4d\x57\xe5\x8a\x53\x41\xbf\x0f\x0e\x50\x02\x61\x12\xca\xa6\xfd\x6d\x1f\x9d\xd8\x3b\x0f\xf1\xef\x07\x40\xcf\x2d\xe6\x2b\x44\x4b\x54\x63\xc5\x3b\xfa\x31\x13\x9e\x1a\x2c\xaa\x05\x3f\xd2\xc4\xaf\xa4\x13\xcf\x26\x38\x1f\x0b\x7e\xff\x7d\x79\x57\x7d\xa4\x72\x17\xd1\x10\xe5\x70\x13\xc0\x39\x61\x66\x0f\xa2\x39\x84\xb8\xb2\x8f\xe4\xe6\x86\x47\xb9\x7d\x04\x32\x82\x3a\xab\x96\x1f\xb3\xe1\xa8\x89\xda\xdc\x55\x78\x00\x39\xc9\x4a\xf7\xec\xc2\xc2\xb0\xfc\x4b\x82\x90\xc5\xde\x55\x27\x44\x39\x19\x5f\x89\xcc\x66\xef\xbd\x40\x90\xb5\x89\xbb\xcf\x11\x66\x23\xc2\x47\xb9\xcd\xa6\x93\xa6\x19\x1b\x91\xe4\x5f\x92\x51\xa9\xfd\x71\x65\xcd\x68\xca\x46\x24\x1f\x55\xbe\x5b\xdd\x36\x00\xa0\xc1\x25\x51\x93\x61\xea\x36\x3a\x68\x3b\x9c\x44\x61\x6d\x66\xc9\x33\xf8\x6b\x3e\x59\x80\xa7\x4e\xf2\x2c\x19\x95\x08\x73\xdd\x28\xc2\xbc\x75\xb7\x41\x81\x0b\xcb\x1a\x9b\xe3\x95\x3c\x4b\x30\x2b\x99\x00\x0a\x34\x5d\x65\x89\xfd\x91\x20\x29\x4c\xc8\x32\xab\x2c\x51\x7f\x25\x08\xd7\xf6\x51\x6d\x1e\x69\xd2\xa0\x1f\xbb\x5f\x09\xc2\x55\x09\x78\x42\xe6\x9d\xf7\x33\x41\x78\x53\xf1\xdb\xdc\xd4\x66\x7f\x24\x08\xdb\xf3\xc5\xfb\xc4\x83\x5b\xca\xa1\xcf\x3d\x1f\x7f\x62\xe5\xba\xfa\xe4\x51\x12\xee\x91\x91\xde\x79\x57\x89\x6c\x9f\xc2\x92\x74\xb4\x9d\x4f\x61\x49\x0e\xb3\x1a\x3d\x86\x82\x37\x65\x51\x55\xbb\x5f\x85\x71\x38\x85\x45\xcc\xe3\xfc\x40\xf9\x0f\xf3\x03\x70\x75\x1c\xe0\x07\x4a\xc3\x0f\xe4\xa4\xec\xf3\x03\x39\x20\xfb\xf9\xd4\x0f\x9c\xe3\x3c\x12\xea\x56\x41\x99\xf8\xcd\xef\xfd\x5e\x6d\x02\xbb\x5f\x4c\x6c\x88\xec\x8c\xca\x12\xf5\xfb\xbc\x5c\x17\x16\x49\xa6\xc5\xb9\xa1\x22\x7d\x03\x91\x71\x94\xd0\x34\xc6\xbf\xc4\x90\xfe\xf0\xc7\x77\x3f\x1c\xa0\xd2\xfa\xbb\x0c\x39\xb2\x80\x05\x31\x63\x54\xc7\x55\xa8\xe3\x2a\xe4\x71\xc5\x54\xfe\xa5\xce\x2b\x85\xc4\x52\x18\xb0\x62\x82\x16\x8c\x0d\xc7\x74\x63\x2c\xc7\x45\x40\x48\x09\xe7\x27\xaf\xc5\x7b\x6a\x6e\x20\x59\x93\x3b\x8e\x47\x6a\x33\x68\x50\xaa\x0f\x27\xd4\xea\x1d\xe4\x7e\xb5\x4b\x85\xc7\xfa\xf2\x8e\x96\xd6\xb7\x2f\x3b\xbc\x20\x70\xd5\x5e\xb3\x72\xad\x9b\xeb\x4c\xab\xb0\xd3\xfa\xe3\xbb\x1f\x4c\xf6\x02\xd7\xa3\xa1\xbd\xe6\x0f\x76\x59\xc5\xea\x29\xa4\x67\x84\xf5\x46\xc9\xd7\xeb\xb0\x83\x89\xeb\x59\x72\xa8\xaf\x30\x76\x4b\xa9\x22\x16\x26\x98\x40\x59\xe8\xc0\x6d\x7e\x64\x7e\xe4\x57\xb1\x37\xfd\xcf\x7b\xdd\x4a\x53\x3d\xa8\x58\xc5\x27\x8e\xab\x6c\xb3\xd2\x72\x0d\x8e\x60\xe4\x4f\xa3\x94\x3d\x03\xcf\x3f\x89\x58\x7e\x31\x6d\x3c\x85\x32\x56\xe0\x7e\x6b\x08\x62\xee\xec\xc6\x9f\xf5\x7f\xe7\xf0\xbf\x7f\x95\xff\xbb\x37\x3f\xcd\x7f\x89\x3d\x4c\xcf\xe6\x9f\xef\x17\xcf\x6e\x70\x3f\x8e\xc4\xb8\x08\x90\x8b\x7f\xff\x1f\xaf\x72\xb1\x1d\xf3\xbc\x5c\x57\xb7\x19\xda\x4f\x70\x96\x7c\x96\xdc\x06\x9d\x89\xe9\xef\x52\xb1\xff\x5f\xc8\x85\xda\x5c\xfc\x3b\x6a\x55\xd4\x63\xfd\x4f\xa3\xdd\x5a\xde\xc0\xc2\x08\x47\x40\xa2\x1e\x21\xe6\x75\x8c\x98\xd7\x47\xe9\x2b\x3b\x4c\x5f\xeb\xde\x2d\x60\x40\x4e\x76\x94\xc7\x87\xa3\x01\x7e\x8d\x58\x30\x06\x85\xde\x7b\x5a\xd0\x95\xa8\x78\x96\x5c\xe7\xb5\xe4\x66\x04\x49\x92\x01\x50\x5b\x02\x12\xf3\x95\x10\x9c\x5d\x37\x82\x66\xc9\x96\xd3\x4d\x82\xfa\x94\x4f\x7e\x09\x34\x44\x44\xa8\x62\x78\x17\x3d\x7a\x15\xed\xaa\x5d\x2d\xf9\xaa\xee\x45\xa4\xc6\x0b\x2c\xd7\x81\x2b\x45\xaf\x8a\xad\x59\xff\xbe\xec\xf6\xc8\xae\x1e\x45\xf2\x56\x49\xa0\xb9\x44\xa5\xa2\x56\xd3\xdc\x11\x5e\xc9\x50\xa7\xa4\x75\x44\x56\x49\xa2\x08\xeb\xc0\x51\x4b\xec\xb2\x80\x0a\xa3\x81\x48\x53\x01\xee\xd6\xa0\xe6\xd4\x23\xe4\xf4\x8e\x55\x4d\x2d\xb7\x4d\x50\x7c\xaa\x43\x43\x3d\x59\x57\xad\xf4\xd1\x9b\xd4\xf2\x7e\x22\xd4\x07\x68\x65\x95\x5e\x1b\x90\xf8\x65\x47\xca\xfc\x96\x0e\x04\x11\xee\x00\xfe\xed\xd9\x6f\x9e\xe1\x04\x94\x87\xbc\xff\xd4\x64\x01\xb1\x6f\xa4\x40\xf3\x8e\xde\xbc\xfc\xbc\xcb\x92\xff\x9b\x8c\xf8\x28\xc9\x66\xe4\xd9\xfe\x37\x28\x41\xb2\xfc\xa1\x72\xe2\x50\xb9\x67\x7f\x7b\xf6\xb7\x67\xcf\x6e\xa4\xfc\x60\x3d\x54\xd8\x88\x64\x74\x5c\xd3\x9c\xaf\xb6\xfb\x7d\x92\xa0\x51\xc8\x34\xc8\x49\x89\x5c\xfe\xd1\x35\x1a\xd0\xee\x1a\x51\x84\xfd\x75\xa1\xea\x98\x83\x2f\xa0\xfa\x86\x42\x03\x07\x78\x82\x7f\xac\x91\x60\x75\xa9\x59\xdd\xde\xb6\xf6\x3d\xf0\x3a\xbb\x71\xe6\x6f\xf6\x31\x6c\xde\xa9\xbe\xb0\xd4\x33\xa8\x4c\x56\x6c\x07\x14\xe9\xbf\x52\xa2\x50\xdc\x34\x6c\x3d\xcd\x33\xd4\x0e\x82\x6a\xdd\x5c\x08\x93\x55\x0c\xf7\x1b\x31\x49\x9f\x0e\x6f\x69\x6f\x1e\xbf\xb0\x27\xc1\x84\xfd\xe3\x9d\x39\xc4\x92\xb9\x55\x1d\x3c\xce\x9d\x75\x69\x94\xcf\x8a\x57\xfb\x7d\x56\x41\x1e\x00\xdb\xae\x64\xbe\x82\x6e\x21\x94\xa6\x34\x73\x05\x50\x7b\x98\xdf\x32\x6d\x25\xf1\xb6\x61\x50\x71\x5e\xcb\xdb\xa8\x71\x9a\xe0\x0b\xc9\x74\x96\x3d\x81\x28\xa0\xa9\x92\xf6\x39\x70\xe8\xea\x6f\xcd\xad\xc7\xcb\x63\x3e\x12\x23\xd8\x94\x5f\xc2\xf2\xc5\xdf\x44\xf0\x06\xc3\xb9\x39\xce\xf0\x3d\x3e\xb1\x07\x98\xbd\xfa\x49\xcc\x5e\xc7\x77\xe8\x9f\xc4\xe9\xc5\x2c\x20\x4f\x61\xe5\xfe\x49\x8c\x92\xd2\x17\x3f\xc2\x17\xb1\x18\x5f\xc4\x22\x4a\x6f\x7f\x2b\x6b\xe0\x99\xc3\xd7\xa2\xa4\x2a\x9d\x2b\xd1\x71\x94\xb1\x8d\x4e\x4f\xbd\xb9\x34\xbe\x4b\xf7\xb8\x75\xd9\x0c\xd9\x01\x25\x08\xb2\xe3\x82\x60\x03\xaf\x5e\xe4\x45\x71\x9d\xaf\x3e\x2a\xc8\xc9\x2d\x6c\xc2\x53\x9b\xc0\x91\x7a\x32\xd5\xf2\xa9\xa4\x21\xa0\x05\x0a\x4f\x22\x76\x8c\xe1\x10\x1f\x38\x17\x15\xae\xac\xde\x0c\x68\x7a\x92\x60\x4f\x7f\xf6\x44\x75\x12\xc8\x26\xde\x71\x59\x04\x12\x42\xb0\xa7\xed\x86\xf5\x1d\x52\x1d\xb3\x73\x48\xa5\x30\x82\x24\x30\x9e\x89\xc7\xf3\x80\xd4\xbc\x47\xeb\x9d\x05\xda\x49\x95\x0f\x31\xce\x52\x46\x9c\xa9\x7f\xac\xca\x14\x4d\x93\xc4\x7d\xc8\xfc\x3e\x55\x9c\xdd\xb0\x72\xe0\x62\xc7\x33\x1b\x6e\xb0\xaa\x8a\x51\xf2\xec\x59\x32\xa2\xe3\x6d\x55\x0b\xd9\x73\x4c\xc7\x72\xec\x5a\xf1\x31\x95\xaf\xe4\x6f\xa4\x72\xd7\x68\x85\x2f\x11\xca\xb0\x05\x6a\x5d\xc2\x9d\x95\x8b\x94\xea\x6f\x63\x9e\x89\x79\x7a\xca\x09\x1b\xc9\x81\x8f\x4a\xd8\x2f\xca\x2f\x14\x3a\x49\x18\xa6\x11\x1b\x49\xc7\x17\xd4\xd4\x93\xa6\x49\x55\x7a\x22\x34\x83\x67\x2e\xfa\x97\xee\xf7\xf4\xeb\xff\x09\x2d\x74\x99\xeb\xb0\x42\xb6\xc9\xb2\x73\x1d\x3f\x6e\x9c\x05\xae\xca\x35\x97\x15\x7d\x35\x4e\xd0\x7e\x7f\xe8\xed\xbf\x8e\x27\x89\xbc\x58\xbb\xef\x5f\x55\xd7\xac\xa0\x67\xef\xf3\x4d\xce\x59\x02\x05\x48\x50\xe0\xc5\x96\x57\xb7\x34\xf6\xe6\xcf\x70\x7d\xd4\x67\x6f\xb7\x60\xf4\xe8\x59\x71\x74\x4c\x7b\x26\x87\x6f\x39\x26\x18\x3b\x8c\xd4\x33\x06\x75\x5d\x68\xed\xd9\x92\xdb\x63\x24\x50\x7b\xca\xd9\xe8\x39\x15\x3e\xe5\x32\x39\x70\x65\xd8\x9f\x2a\x9a\xe2\xd9\x4a\x23\xda\xb9\x17\xb5\x71\xcd\xf9\x42\x7f\x14\x13\x5d\x19\x3f\xb2\xb5\xbf\x8f\x34\x23\x31\xa3\x53\x6a\x4e\x93\xc5\x08\xb2\xaa\xfd\x36\x7a\x85\x35\xff\x0d\xf8\x7a\x5d\x01\xdc\xe3\x21\x7d\xb4\x35\x59\x2c\xde\xb6\x41\xe6\x81\xe5\x1c\x57\x65\x96\xc0\x9f\x2e\x7f\x7d\x12\x10\x3d\x31\x16\x9c\xdd\xdc\x48\xe6\xa5\x57\x0e\x5c\xcb\xe3\xd5\xb9\xfc\xdb\x47\x6b\xf3\x8a\xc9\xca\x5a\x5c\x06\x9e\x30\xd1\x24\xcf\xff\x78\xe2\x1d\xb0\x76\x71\x5a\xd3\xdb\xeb\x82\x02\x6f\x0c\xa0\x8c\x28\x04\x29\xd6\x43\x5a\xae\xab\x1f\xdf\xfd\xf0\xc1\xf6\x2a\x4b\xfc\x1e\x26\x18\xbe\xd4\x2b\x06\x15\xd3\xcf\x82\xe7\x2b\x01\x76\x8d\x2b\x7e\x53\x83\x29\x0c\x84\x59\xe3\xab\x82\x2b\x52\x8e\x6f\xab\x35\x2d\x6a\x5c\x93\x72\xec\x39\x39\xe1\x86\x74\x5b\xf7\x9a\x96\xbb\xba\xc6\xc3\x89\x95\x59\x9b\xf1\xf2\x23\xa5\xbb\x6f\xd5\xde\x74\x9e\x78\x3f\xe5\x45\x43\x6b\x29\x11\x34\x72\x4e\x3d\x6f\x9c\x43\x02\x9f\x3f\xa8\xf8\xc6\xd1\x51\x0a\xd6\x8c\x94\xc0\x72\x35\xbc\xf8\xae\xe2\x71\xf4\xad\x47\x8d\x93\x5f\x5f\xcc\xf8\xf9\xc5\x74\x22\xe7\xe7\xc2\x37\x52\x9e\x5f\xc4\xcd\x94\x22\x98\x1d\x64\xdd\x40\x4d\x8f\xf1\x9c\x2e\x4c\xa8\x58\x89\xa0\x83\xac\xbe\x5a\x09\x76\x47\xff\x19\x7b\xe9\x9f\xb6\xea\xea\xdf\x57\x6c\xc5\xab\x82\x5d\x9b\x90\xab\x61\x63\x47\xf3\x3d\x24\xe0\x04\xdf\x81\x34\xcd\x86\x99\x1f\xdc\x53\x23\x97\x3c\xc4\x04\xda\xd9\x9a\x77\x9c\xee\x72\x4e\x3d\xa7\x4d\xb7\xab\x30\x8c\xa4\xde\xe6\x45\x51\x7d\x7a\xf9\x73\x93\x17\x28\xab\x71\xa3\xe4\x7d\xbf\xbf\x48\x4d\x2d\xa7\xab\xea\xa6\x64\xbf\xc4\x24\xec\xda\x00\x0e\x6a\x6e\x2c\x0c\xf0\x3b\x30\x50\x57\x23\x80\x24\x7a\x2d\x5c\x95\xeb\x1f\xaa\x3c\x96\x54\xf7\x1f\x6c\x48\x57\x0c\xed\x81\x79\xde\x22\x89\x39\x92\xdf\x80\x93\x05\x30\x99\x7c\x0c\x12\x1d\x5d\xe3\x87\x55\xc3\x39\x2d\x85\xf5\x40\x9b\x82\xee\xd4\x40\x2a\xa2\x2c\x31\x6d\x77\x0b\x26\x08\xeb\x47\x92\x4b\x7d\xe4\xab\x8e\xd9\xf5\x50\x69\x2b\xec\x21\xcb\xfe\x1e\x2a\x6a\xfc\x20\x6c\x2f\x94\xcf\xdf\x29\xbd\x4f\xd0\x69\x0c\x75\x3f\x74\xe1\x51\xae\xe1\x20\x2b\xb0\xab\x8a\xfb\x0d\x2b\x7c\x37\x2e\xc3\x1d\xfc\xca\xa2\xe7\xaf\x73\x6f\x1f\x80\x68\xdd\xe6\x35\x4c\x61\x94\x23\x56\xdb\x17\xa6\xdb\x94\xd3\xa2\x54\xfc\x36\xec\xa6\x6c\xf1\xbe\x0f\x2f\x8c\x20\x77\xf7\x59\x99\xa6\xac\x4f\xc5\x15\xce\x77\x29\x65\xb6\x82\xfd\xe2\x53\x86\x38\x18\xeb\x11\x4a\xe2\xe3\xb3\x2a\xc2\x1c\x0a\x81\x7e\x82\x59\xaf\x2e\x85\xf8\xdf\x39\xa2\x26\xad\x85\x17\xb7\x6e\x7c\x86\x0c\x24\x4b\x85\x0d\xd0\x60\xac\xf7\x26\xc5\xbe\xd7\x1b\xbd\xaa\xcc\xbf\x26\x04\x9e\x3f\xf8\x5e\xc6\x55\xbb\x40\x2a\x6b\x85\xa1\xb5\xdf\x55\xbc\xbb\x74\x38\x4c\x29\x14\xae\xc0\x21\x52\xc3\xb5\x84\xcd\x75\x16\x26\x9c\x93\x6a\x5e\xb9\x64\x29\xe6\x35\xae\x3b\x9c\xbb\x97\x7a\xc2\xc4\x75\x3b\x27\x16\x3e\x22\x16\xbb\xd2\xdd\x62\xf2\x89\xae\x0e\x70\x06\x20\xda\xf1\xd2\xc5\x62\x72\x5c\xd9\x6d\x61\x73\xa7\xd7\xa0\x4a\xcb\x91\x77\x6b\xea\x7b\x86\x03\xce\xec\x90\x29\x22\xc9\x62\x44\xd2\x97\xc4\x95\x6b\xb0\xf2\x5b\x01\xfd\x81\x47\x57\xf4\x2c\x79\x45\x1c\x25\x3a\xfa\x85\x5f\xa6\x43\xbc\x0c\xf9\x3d\xf2\x59\x84\xfa\x4a\x19\xe9\x91\xaf\x64\x91\x93\x89\x9e\x1f\x4e\x75\x9a\x12\x21\x4a\x9d\x1e\x81\x4d\x85\xfa\x81\x49\x79\x95\xef\x8e\x41\xa4\x6e\xf3\xfa\x20\xb1\x81\x4a\x20\x84\x98\x42\x44\x6e\x2d\x02\x6b\x60\x1f\xdd\x54\x7d\x00\xd9\xf4\x50\x37\xa7\xbb\xee\x0b\xf6\x0a\xaa\x74\x08\x25\x42\xb8\xb4\x79\x39\x64\x3b\xca\x4d\xaf\xd7\x90\xcd\x25\xa0\x7a\x14\xc2\x6e\xc5\x7a\x60\xc5\x21\x15\x05\x3d\x33\x48\xc9\x53\x6e\xc1\x45\xcd\xcc\x1e\x8c\x6e\x3d\x21\xb6\xf0\x89\x8b\xd8\x1d\x96\x3b\x5f\xda\x3b\xd1\xd5\x3f\x4d\x46\x2a\x7f\xca\xe9\x9d\x83\x10\xc6\x83\x8e\xe8\x91\xfb\xb2\x7b\x3d\x9e\xb2\xf9\x4a\x32\x19\x84\x6a\xa4\xc3\x98\x77\x6d\xe7\x2e\xed\xec\xd6\x38\x83\xfd\xf5\x24\x1a\xea\x3e\xf1\x43\xdd\x27\x0b\x15\xda\xd1\x47\xb9\xf8\xfa\x22\x0c\xab\xd7\x3d\x87\x0d\x42\x3f\xef\x0a\xb6\x62\x42\xa1\x07\x0f\x2f\x34\x58\x05\x64\x69\xd7\xd9\x09\xc6\xb4\x84\x74\x78\x55\xbe\x66\xe5\xcd\x7b\x29\xed\xe7\x82\xd6\xc4\xd3\xa9\x88\x03\x65\x0c\xd0\x09\xa4\x8d\xa9\x2d\x64\x71\xb5\x93\xe3\xad\x89\x38\x76\x12\x79\x78\x7b\x78\x77\x77\x85\x1b\x95\x59\xb3\x20\xc9\xb3\x65\x53\x36\x35\x5d\x2f\xd7\xcd\xed\xed\xfd\x92\x72\x5e\xf1\xe5\x2e\x17\x5b\x75\xa1\x2c\x41\x29\xfc\x6c\x0a\xcf\x13\xb8\x32\x21\x8f\x7f\xa5\x70\xa8\x38\x9a\x32\x80\xd6\xab\x08\x97\x95\xa2\x69\x45\xf8\x7e\xff\xd0\x1e\x1b\x78\x9a\x66\xb5\x86\x62\x1f\x25\xcb\x42\xbd\x4d\xf0\x83\x94\x8d\x85\x85\x75\x9c\x56\xe3\xf0\x41\x8b\xb0\xf7\x99\xea\xd0\xa3\x1f\x61\x50\xcf\x16\x2d\x42\xb8\xb1\xd8\x68\x00\xef\x90\x1b\x34\xf8\xee\x27\x28\x98\x63\x34\xa8\xb3\x15\x4e\x4c\x2f\x65\x1f\x56\x38\x31\xad\x9b\xda\x71\xa3\x40\x12\x57\xae\x8f\xb8\xc2\x2b\xcb\x02\x64\xc6\x25\xdb\xbd\x05\xca\xb4\x6b\xba\x04\xd0\xbf\xde\xbd\x9c\x78\x03\x03\x95\xa2\xbb\x35\xa6\xe5\x0d\x2b\xe9\xf7\xe5\xa6\x32\xb8\x72\x42\xc7\x15\x1d\x28\x36\xde\x34\x45\x21\x07\xa9\x37\xf5\xe8\x02\xe1\x2e\xd8\x9c\xe4\xe7\x8b\xef\x74\xb9\x69\xde\xe2\x43\x4d\x0e\x18\x60\xc5\xd5\x94\xab\xb4\xbb\x1a\x12\x80\x85\x73\x37\xce\xd7\x6b\xb8\x01\xbf\xab\xf8\x4b\xf8\x38\x13\xb8\x76\xce\xe9\xcc\xcb\xd7\xa7\x32\x13\x25\xdf\xd2\x0d\x2b\x59\x79\x73\x96\x9f\xc1\xfe\x3b\xb3\x4d\xf0\x33\xc9\x2c\xc3\x33\x8b\xd9\xde\x88\x9a\xad\xe9\x59\x5e\x9e\xa9\xea\xcf\x58\x0d\x19\xfb\x40\x94\xa4\x6b\x39\x6f\x46\xcd\xaf\x94\xe2\xf2\x0f\x15\x78\x3f\x24\x21\x1b\x64\x44\xd6\xce\x79\x9e\x84\x27\x50\xa3\xe8\xc8\x75\x82\xf5\x33\xeb\x7b\xc0\x32\xa3\xbf\x0a\x64\xc3\xa0\x01\x63\x2a\x07\xde\x5b\xf7\x4c\xef\x2a\xb0\x23\x60\x1f\xe5\x22\xcc\x05\x46\x1d\xd2\x2d\xf9\x1d\x12\x19\x9d\xf3\x05\x1a\x8b\x4a\xfe\x31\xba\x58\x60\xf9\xcf\x57\x0b\x04\x78\x35\xb7\x55\x53\x86\xa8\x32\x8a\x1b\xfe\x42\x58\x91\x87\x16\x6b\xe6\xd3\x2c\x34\xa7\x75\x55\xdc\xa9\x40\xac\x57\xf9\x2e\x13\x08\x37\x44\x0c\xd8\x38\x97\xa7\xbd\x21\xf2\x0f\x64\xe1\x2c\xf5\xd1\x6b\x40\xf4\x0b\x8f\xde\x86\x28\xb8\x71\x81\x0d\x22\xc6\xf7\xeb\x69\x39\x1a\x61\x18\xc2\xdb\x8a\x95\x62\xba\xc2\x66\x2b\x4f\x57\x2d\xde\x12\x85\xf2\x37\x30\x18\xf1\x16\x25\x47\xf2\xa9\x5b\x30\x7f\x34\xaa\xed\xf5\x29\xe4\xae\x09\xc9\x5d\x65\x82\x24\x86\x17\xf8\x96\x1c\x38\x0f\x83\xdb\x34\xcd\x76\x36\x25\x7e\xbf\x00\xd9\x68\x8c\x70\x4d\x7c\x56\x38\x3c\x78\xae\xe4\x74\x13\x9e\x3a\x24\x09\xd0\x5d\x48\x80\xee\x3a\x04\x68\xdd\x22\x5c\x8d\x01\xd0\x57\x91\xa1\x3b\x84\x0b\x72\xe7\x51\x1f\xbc\x33\x0e\x3f\x91\xbe\xdd\x2a\x1f\xb2\xfb\xa3\xc4\x20\x91\x42\x0c\xd3\xe2\x7e\x8b\x37\x8e\x22\x1d\xb8\xb9\x60\xda\x6e\x48\xe3\x93\xf8\x6b\xe2\x57\xe3\x9e\x2f\x8f\x36\x7d\x0d\xcd\x69\xca\x79\xd3\x23\xf9\xdd\x4d\xd4\x3e\x4a\x84\x6e\xf0\x12\x61\xd5\x35\x3d\x8f\x9d\x8e\xe9\xa7\x27\x74\x0b\x9f\xdc\x2d\x6c\x97\xea\x84\xde\xb5\x8f\x94\x59\x61\x93\x5a\x44\xe5\xce\xc5\x2b\x5c\xa0\x2e\x6a\x4d\xde\xe1\x08\x23\xde\xa9\xfe\xa2\x82\x2d\x49\x31\x2e\x6d\x46\x51\x9a\x0e\x01\xac\x6b\x66\x1e\x8e\x92\x71\x32\x12\x53\xcf\x8e\x58\x07\xf9\x1a\xbf\x0c\x5d\xe8\xa1\xc5\x11\x64\xa2\xdf\x79\x85\x7e\xb7\x70\x39\xdd\xf5\x90\xba\x64\xa3\x7f\xf6\x39\xd0\x04\x29\x59\x2a\xb7\x24\x6d\x04\xd5\x89\x15\xd5\x43\xcc\x70\x09\x56\x66\x7d\xc3\xf8\xf6\x96\xea\x09\x2c\xb2\x3a\x4a\x75\x82\xe7\x0b\xdf\x57\xf9\x09\x35\x44\x81\x49\x9e\x14\x62\x1d\xf7\x8a\x38\x64\x8a\x2a\xc3\xe4\xc6\x1b\x05\x62\xf0\x9d\xbc\x80\x3d\x61\xe1\x3a\xaf\xd9\x2a\x41\x8a\xb0\x0c\x38\xe1\x63\xfa\x59\xd0\x72\x9d\x3d\x18\x0f\xd4\x7e\x60\x79\x92\x99\xb1\xac\x15\xb0\xf8\x99\xab\x10\x25\x26\x42\xb6\x24\x1d\xa1\xc4\x29\x05\x6c\xba\x88\x12\x73\xb9\x5e\x5e\xdf\x20\x6f\xdb\x41\x08\x06\x30\x02\xc7\x64\x22\xf4\x50\x7a\xe9\x1e\xbb\x2d\x43\x4c\xa0\x96\x94\x38\x1a\x4c\xac\xee\x4c\xf6\xf5\xd4\xf5\x0b\x11\x56\xbe\x4c\x08\x8f\x74\xfe\x57\x90\x66\x94\x90\xc2\x6a\x5f\xbf\x66\xae\xa9\x3b\x65\xae\xa1\x4f\x11\x07\xe1\x96\x3c\x67\xe5\xa6\xfa\x07\xb6\xbb\x46\xaf\x89\x6c\x70\x5f\xed\xfa\xe5\x3e\x43\x4f\x88\xda\xed\x88\xb1\x6b\xba\xe3\x74\x25\x77\xef\xf9\x86\xe6\xa2\xe1\xb4\x3e\x12\x90\xa3\x89\x0e\xd6\xea\x9b\xe5\xdf\x1f\x87\xd7\xe9\x84\x06\x3f\x9d\x2c\x9c\x82\x98\x73\x68\xab\xbd\x37\x94\x8e\xec\x30\xe8\x61\xbe\xed\x3e\x8f\x68\x6e\xa8\x23\x90\x84\x90\x5d\xeb\x9d\x32\x3a\x7e\xf7\xe6\xc7\x0f\x2f\xdf\x2d\x5f\xfe\xf4\xf2\xf5\x87\xe5\xb7\x2f\xdf\xbe\x7b\xf9\xe2\x4a\xe1\x7b\xe9\x77\xcb\x17\x6f\x5e\xbf\x7e\xa9\x31\xbf\x3c\x89\x7f\x0d\x8c\xd0\x9f\x69\xfe\xf1\x55\xbe\x0b\xc0\x87\x4d\xba\x59\x6b\x0f\x7f\x7e\x81\xd2\xd4\xa6\x96\x7d\x68\x25\xe3\x01\xc1\x9c\x16\x46\xd2\x80\x88\x4e\x16\x03\x06\x59\xb2\x67\x7c\xce\x16\x0a\x1a\xd0\xe2\x28\x4c\x9f\x2d\xd9\xfa\x37\x3a\x59\x10\x83\x48\xbd\x6e\xa1\x84\xad\x13\x23\xa8\x71\xfb\xc6\xe1\x44\x20\x45\x47\xac\x3e\xb3\x8d\x0d\x72\xad\x72\xca\xe0\xbb\xb8\xba\xbf\x7a\xb2\xa7\x99\xce\x88\x22\x05\x6e\x70\x2f\xe3\x5d\x23\x40\xe5\x62\xa8\xaa\x58\x0c\xd5\xb2\xa6\x4e\x11\xd9\x77\xca\xb2\xa6\x42\xa3\xae\x90\xdc\xb5\x2b\xbf\xcc\x62\xa1\xaf\x3a\xec\x67\x09\x2a\x3c\xb8\x88\x0f\x66\x0c\x06\x15\xb1\x59\x3e\xef\x11\xa1\xfa\x8f\x01\xb7\x78\x7a\x19\x27\x19\x25\x42\x2e\xb8\x7e\xb9\xdf\xcf\x17\x0e\x45\x8f\x79\xeb\xa5\x1c\xc3\x96\x3f\xef\xc6\x3f\xef\x6a\xc8\x1a\xef\xd9\x78\xcd\xde\xd0\x20\x0f\x36\x5f\xcc\x68\x94\x2b\xac\x07\x0a\xaa\x6b\xe0\x69\xf8\x3c\x5f\xb8\x8c\x2c\x64\x72\x59\x3b\x54\xc2\xd1\xa8\x36\xd9\x58\xd8\xbc\x5e\x0c\x12\x30\xa5\x26\x90\x04\xa0\x5e\x55\x3b\x2a\xc5\x1b\xc9\x20\x89\x9a\x54\x90\x98\x38\x1f\x2f\x73\x50\x62\xff\xe9\xad\x46\x08\x89\x65\x45\xb2\x16\xc2\x4e\xd9\x8c\xaa\x6a\x6d\xa6\x51\xb0\xe1\x0a\x35\xd9\xe0\xf6\xc6\xca\x9b\x58\xcd\xdd\x7a\x7b\x65\x33\x3a\x6e\x78\xf1\x47\x7a\x0f\x75\xa9\xbb\xaa\x6b\x43\x3f\x21\xd4\x19\xea\x9f\x26\x23\x95\x31\x79\x68\x10\x3e\x1f\x5a\x5f\x6b\x7a\xc8\xfe\xa9\x06\xeb\x2c\x45\x72\xcd\x66\xe5\x7c\x35\x7e\xff\xe1\xea\xc3\xcb\xe5\xfb\xbf\xbe\xfa\xe6\xcd\x0f\x8b\xe9\xd1\x3a\x40\xbc\xc0\x39\xe1\xe1\x3e\x55\xba\x0c\xe1\x03\xe7\x57\x7a\x94\xf3\x7c\x21\xc5\xd1\x9b\xc0\xfc\xe0\x9b\xae\x1b\x34\xe6\x74\xdd\xac\x7c\x4c\x63\xcf\xe5\x0b\x12\xe9\x37\x73\xb1\xc0\xb4\xc5\x35\x52\xe1\x78\x9a\x24\xba\x7b\xf5\x8f\x34\x8a\x08\x4b\x0f\x14\x7f\x24\x89\xb3\x1e\x7b\xe4\x43\x80\x99\x91\x95\xae\xe9\x17\x57\x1b\xfd\xd4\x56\xbc\xd4\x72\xc7\x77\x15\x8f\x56\xec\x45\xed\x04\x47\xd1\xb3\x67\x8d\x93\x91\xdd\x6e\xfb\xfd\x63\x05\x77\xbc\xda\xa1\xfd\xfe\xa1\x6d\xb5\x87\x8c\x70\xdc\xdd\xb1\x01\xb5\xe0\x01\x11\x09\x0d\x5a\x53\xd8\x69\x4a\xf4\xd5\x8e\x26\xda\x01\xc8\xbd\x4a\xcc\x2b\x9d\x22\xf2\x27\x46\x3f\xd5\x3a\xec\xce\x5c\xcb\xef\x68\x37\xbd\x61\x40\xc8\xdc\xbd\x3c\xe0\x3e\x8a\x4f\x94\x4a\x29\xb9\x78\xcc\x4a\x75\x0a\x4c\xf3\x9d\xf1\x2a\xa3\x17\xf4\x82\x96\x22\x74\xfd\x5e\x2b\xab\x86\xac\x71\xbe\xd0\x9f\x1f\x1c\xa8\x1b\xa6\xda\x2c\xe6\xb7\x5f\xa1\x7c\x73\xe8\xf9\xa3\x1e\x51\x11\x45\xf9\xd3\xe0\xa0\xf5\x2e\xa2\x1d\xef\x9a\x88\x4f\x10\xc4\xb5\x6e\x0e\x83\xef\x40\x2a\xca\x7c\x0c\xab\x76\x4b\xd7\x2c\x17\x1e\x91\xf9\x67\x75\xdf\xde\x47\x47\x3b\x86\x2b\xc2\xe6\x93\x05\xce\x09\xd3\xfa\xd9\x0b\x74\xd9\x1b\xf3\xa1\x9e\xdb\xf1\xcf\x2b\x6b\x3a\xce\x91\x8e\xe3\xdd\x70\x1a\x0b\xa6\x7b\xcc\x05\x05\x3e\x33\xb0\xb8\xf9\x21\x2f\xad\x7f\xfa\x32\x7b\xed\x3e\x6d\x95\x3b\x69\x67\xfd\x04\x19\xdd\x53\x29\xbf\xf7\x55\xac\xda\x21\xaa\x53\x4a\xca\x96\x0c\xfc\xdb\xd8\x26\xe3\xa4\xd2\x5f\xf4\x25\xcd\x8c\x21\x3c\xec\x7c\x6c\xb4\xef\x91\x13\x9f\x20\x8b\xf6\x2f\xe5\xb4\x99\x2b\x92\xe3\x64\xe7\xdd\xef\x75\x82\xa6\xf3\xc5\x65\xe7\xf6\x11\x51\xa8\x63\x3a\xce\xd7\x6b\x93\x38\x25\x13\x23\xc0\x17\xc3\x54\xa1\x88\xe9\xab\x1e\x4c\xc7\x90\x49\x0e\x77\x7a\x4b\x78\x7b\xe7\x12\xb4\xf7\xba\x5b\x10\xed\x76\x55\x2b\x9c\x7f\x9f\xa4\x15\x63\xd0\xaa\xbf\xb9\xa3\x9c\xb3\x35\xad\x65\x17\x61\xbd\x80\x05\x04\x6a\x0e\x63\x41\x81\xeb\x17\x16\xdd\xdb\x5d\xad\xc4\xf7\xe5\xa6\xd2\x1a\xe1\xad\xde\x18\xd7\x0e\xc4\x0e\xaf\x89\xfc\xee\xed\xd5\xbb\xab\x57\xef\xcd\x87\x83\x66\x1c\x4c\x5a\x7f\x7a\xac\x77\x56\x33\xbe\xcd\x77\x73\xba\x18\x08\x23\xe4\xae\xfd\xe3\xba\xca\x8b\x55\x53\x40\x04\xc1\x6a\x4b\xe5\x1d\x95\x69\x73\x59\x87\xa7\x10\x8a\xb3\xc3\xa6\x1a\x79\x9a\xb7\x86\x15\x62\x92\x50\x8f\x9b\x72\x4d\x57\x15\x28\x3c\xb4\x34\x05\x5e\x90\x21\x0a\x0c\xc5\x15\xd2\xaa\x8f\x1d\xb9\xd1\x26\xa0\xee\xc4\xb8\x4f\x7c\x89\x83\xe3\x9d\xd6\x06\xc2\xbe\xef\x5d\x14\xda\x13\xd6\x83\xb8\xb2\x6a\xc3\x7a\x5b\x35\xc5\xfa\x1d\x2d\xd7\x94\xeb\xdc\xca\x1c\x7e\x7c\xa0\xb7\x3b\x39\x7c\x70\x1f\x82\xfb\xce\x6e\x9d\x98\x91\xbc\x93\x71\xd4\x5f\xa7\xc3\x13\xca\xa3\x13\xca\xf5\x84\x72\x33\xa1\x83\x52\xed\x1f\x35\x9b\x08\x38\x80\x6b\xba\xa9\x38\x7d\x25\x19\xed\xde\x65\xb5\x91\xb4\x2c\xf6\x86\xd3\x35\xe3\x9d\x28\x1a\xf9\x5c\x4b\x4f\xd6\xe5\xb7\xc7\x2b\x68\x9f\x0b\x55\xa9\x3d\x2e\xf4\x33\xc0\x2e\xdc\x86\x4d\x59\x84\x3f\x2d\x72\x47\xef\xf9\xdb\x7c\x97\x38\x89\xa5\x01\x81\x14\x81\x44\x1b\xa0\x0c\x4a\x11\x62\xbf\xaf\xd3\x14\x4a\x98\xa4\x8f\x05\xec\x5d\xb1\xda\x66\xcf\xfe\x6f\x36\xfe\x1f\x08\x64\x56\x34\xd0\x60\xf6\x05\xe4\x64\x2b\xe6\x17\xf2\x3e\xa1\xf3\x66\x21\x37\xe4\x70\xd2\xca\xda\x55\xee\xb5\x0a\x59\xde\x2c\xe0\x85\xa9\xce\xdc\xa1\x0d\x35\x60\x7c\x7a\x7e\x61\x70\xdc\x8d\x44\x7b\xe4\xac\xce\xc3\x6f\xcf\x2f\x16\x76\x9e\xfc\x6b\x67\xc3\xca\x35\x4c\x65\xc6\x70\xde\x65\x53\x0f\x44\x54\x80\xa5\x0c\xbe\x51\x1b\xcc\xca\x26\x59\x87\x72\x53\xa4\x39\x23\xdb\x4a\x4f\x57\xe6\x6e\x9b\xee\xd2\xd4\xa2\xe2\x34\x41\x08\x3e\xb6\x37\x8e\x8f\x5a\x97\x77\x8f\x58\xef\x30\x50\x4f\xef\x26\x20\x71\xa8\x3e\xe2\x14\x6b\xc1\x50\x77\x30\xb8\x5c\xa2\xfc\x63\x54\xa8\x2e\x09\x8f\x09\x5a\xce\x91\xae\xec\x5c\x6e\x69\x9a\x51\xd2\x7d\x88\x30\x8f\xfb\x7e\x50\x0d\x56\xd2\xbd\xd7\xe2\x39\x48\x7a\xdd\x73\xa8\x4d\x16\x4a\x15\x30\x9b\x90\x3d\x29\x31\x79\x52\xe0\x83\x83\xf5\x2f\x0a\x4d\xa0\x0e\xb0\x2d\xb3\x27\x89\x95\xd6\x41\x83\x28\x2a\x94\x5f\x17\xfe\xca\x95\xb3\x25\x50\xbe\x29\xb5\x48\x74\xdd\x49\x57\xf0\x6e\xea\xd4\x95\xe6\x8a\xaf\xd2\xb4\x72\xbb\x71\xbf\xd7\x29\x11\xf4\xb1\x50\x1b\xb2\xee\xe6\x4c\xca\xad\x5f\x51\xb7\xe4\x3c\x5f\x98\xa3\x03\x35\xfb\x84\x48\x51\x34\x9f\x56\xc7\x53\x2b\xcb\x12\x19\x72\xa5\xa3\x6c\x51\x49\x20\xa1\x52\x87\x89\x1b\x94\xfb\x7d\x3f\xb3\x88\x1c\xd6\x8c\x13\x3a\xcd\xb4\x88\x23\x74\xfb\x51\x56\x4a\x10\x8a\x50\xcf\xb9\x15\x07\xae\x26\x9e\x66\xb2\xbb\x0f\x28\x1a\x94\x90\x28\xb1\x94\x0c\x70\x25\xb7\xb7\xfc\xd7\x8f\xc6\x7b\x76\x83\x93\x71\x22\xc5\xf7\x72\x5c\x35\xa2\xa0\x02\x17\xc1\x86\xc7\x2b\xe3\xdf\x8e\x06\x8d\xa4\xa8\xc9\x6d\xce\xca\x04\x8b\x59\x56\x01\xa2\x9f\xe9\x6b\x4e\x68\x67\x30\x15\x9a\x66\x55\x18\xc3\x6b\x9a\xcb\x49\x85\x06\xc5\x7e\x9f\x15\x44\xcc\x68\x8f\xa3\xdc\xc4\xcf\x57\x85\xa6\x07\xdf\xec\xf7\xfd\x6a\xbc\xee\xa9\x3c\xe9\xdd\x2c\xe7\x85\x9a\xc4\x2d\x29\x06\x05\x39\x50\xf5\x16\xb5\xab\x34\x2d\x40\x34\x34\x44\x68\xa5\xed\xdd\x78\xe7\x7d\x65\x06\x3f\x4d\x46\x39\x1a\xd4\x69\x9a\xad\xc9\x7d\x46\x11\x4a\xd3\x9a\x10\xb2\x76\x9d\x81\x35\xd1\x99\x8a\x94\x36\x93\x3c\x80\x4e\x7d\xba\xc1\x72\x81\xa6\x35\x56\x6b\x31\x6d\x30\x58\xeb\x2b\xec\x75\xa9\xc0\xb6\xa5\x9d\x1c\xe3\x52\x54\xbb\x1f\xe8\x1d\x2d\xa4\x80\x6d\xb6\xb3\x75\xaf\xbd\x55\x19\x3a\x70\x89\x39\x16\x68\xb0\x56\x2e\x75\xa0\x72\x02\x53\x5d\x85\x14\xdc\x60\x55\xae\x68\x87\xb5\x4c\x96\x35\x15\x6f\xa0\x23\xb5\x96\x72\x59\xbd\xaa\xca\x92\xae\xf4\xe3\x18\x31\x02\xc0\x8f\x7e\x3e\xf9\x99\x90\x9b\x1e\x22\x17\xd5\x36\xe3\xd6\x1a\x2a\xfb\x3d\xf3\x7f\x44\x76\x8c\x26\x39\x08\x61\xa1\xf2\x51\xaa\x4d\x08\xdd\xed\xf6\x0a\xfc\x12\xbd\xc4\x20\x47\x69\x9b\xef\x48\x0a\x17\xb1\x46\xd6\x33\x80\x72\x16\x60\x4f\xf3\x5b\xf1\xd6\x80\xc9\x3b\x32\x3b\xee\x5e\xba\x37\xb4\x3e\x4d\x21\x83\x4f\xb0\x2b\x84\xdd\x15\xae\xf7\xde\x8a\xc5\xba\xa6\x7d\x99\x64\x0f\x07\x95\x9e\x5b\x02\x8e\x38\x15\x1c\x76\x8d\xca\x08\x10\x81\x7a\x93\x55\x2a\x8d\x97\xda\x6a\xaa\x94\xd9\x6f\xa6\x06\xbd\xed\x40\x87\xeb\xef\x3d\x93\x08\xca\x6c\x40\x03\xa9\x72\xda\x16\x42\xad\xa7\x61\x51\xc8\x5e\xc7\x62\xf8\x23\x8a\xa3\xe0\x51\xdf\x90\xe7\xcd\xd5\xc0\x85\xd6\xba\x84\x32\x5f\x4f\xe4\xa9\x0c\xb5\x3c\xa7\x76\x5d\x32\xce\x0d\x2b\xd6\x76\xa7\xbc\xa2\x22\x5f\xe7\x22\x0f\x39\xe2\x2a\x0a\x06\x79\xef\x6e\xfe\xd8\xa6\xf8\x42\xdb\x3e\x24\xc5\x19\x9a\x14\x55\xdd\x54\x38\x7e\x0a\x77\x48\x72\x5e\xea\x3d\x2c\xb7\x87\x0d\x8a\x9b\x97\x23\x9b\x48\xad\xcd\x40\xce\x3d\xa6\x18\xf6\x38\x56\x7c\x7e\xe1\xa2\x72\xd2\x54\x4b\x78\xce\x7b\xe1\x46\xb1\xf3\xdc\x0f\x31\x92\x0c\x4c\xf7\xc1\x7e\xaf\x95\xdb\x8c\x74\xc4\x19\xc5\x52\x87\xa5\xe7\xcc\xa5\x3c\xee\xbf\xb2\x73\x50\x75\x84\x0a\xfb\x89\x6c\xc0\x33\xd6\xce\x7a\x4f\xa6\x59\xef\x11\x79\x68\x71\xc0\xf0\xf7\x4a\xe0\xa0\x2f\x48\xce\x62\x54\x07\x5c\x1b\xb9\x4d\xcd\x60\xaf\x1e\x14\x79\xd4\x66\x76\x4d\x30\x84\x17\x44\xc6\x2d\x7b\x58\x87\xb6\x36\x67\xb8\x51\x29\x5c\x6b\x67\x72\x69\x8c\x2c\x04\x99\x5b\x57\xa4\x00\xc1\x1f\x72\x7f\x0e\xf2\xb9\xfa\xb5\x20\xab\x59\x65\xfe\x9e\x5e\x67\x36\xb5\x81\x12\xbf\x0d\x67\x95\xbb\xf5\xbe\xf6\xb4\xf2\x41\xc2\xef\x8c\x22\x95\x28\xf9\x0a\x65\x54\x2b\xe9\x10\x9a\x7a\x5b\x65\x69\x6d\x5a\xd4\x32\x94\xce\x7d\xc2\xb9\xa6\x0d\x22\x6e\x35\x3a\x57\x1f\x57\xee\x33\x56\x58\x6a\xef\x74\xdc\xc2\x8b\x22\xaf\xeb\xec\x81\xa9\x00\x1c\xed\xcc\x30\x1d\x4e\x5a\x84\xef\xbc\xd0\xda\xda\xb3\xdd\x9a\x4f\xb3\x6a\x7c\x05\x1d\xd4\x40\x1e\xb8\x72\x71\x62\xdd\xa4\xa6\x47\x31\xee\x1f\x5a\xec\xb3\x46\x1a\xe2\x1e\xec\x6f\xea\xef\x90\x73\x51\xcf\x40\xa0\x9a\xc2\x9a\x9a\xf8\x29\x94\x3d\x74\xd2\x0d\xdc\x19\x10\xf7\xbe\x34\xd1\xe1\x25\x7b\xa2\xb4\x3e\xe6\xa5\xf1\xf2\xb1\x98\x49\x0f\x52\x82\x9b\xfa\x8e\xcd\x46\x41\x11\xba\xb2\x00\x33\xe4\x98\x79\x23\x19\x97\x92\x7f\x94\x93\xae\x44\xc1\x8c\x83\xd9\xae\xf6\xfb\x4d\xb5\x72\xab\xec\xe4\x5a\x30\x09\xee\x6d\x12\xe0\x16\xe1\xe5\xcf\xbb\xee\x24\x74\xc7\xaf\xc1\x68\x70\x7e\x92\x7e\xb2\x8e\x8b\x4b\x0d\xa9\xe3\x0c\x60\x8e\x4c\x2e\xe0\xb8\x89\x25\x41\x78\x15\xa4\x61\x2b\x5c\xa4\xe6\x40\xe5\xd6\x55\x16\x79\x57\x47\xd3\xa9\x00\x48\x20\x8d\xe8\x41\x4a\x79\xb0\x19\x79\xf0\xcf\xde\x74\x38\xc1\x72\xcb\xca\x7f\xc1\x96\x29\xff\xc8\x6b\xb9\xa5\x1d\xf9\xb3\x5a\x11\xda\x15\x98\x0c\x2c\x75\x4e\x1e\xda\xcb\x80\xaa\xe5\x98\xce\xab\x05\xe6\xf3\x6a\x81\x70\x39\xaf\x16\x24\xc7\x4c\xfe\x33\x9c\xd8\xc4\xc4\xb5\xac\x98\x23\x20\xcc\x9d\x8a\x6b\x94\xa6\x43\x36\xaf\x17\xc6\xa0\xdb\xad\xbf\xc1\x7c\x5e\x2f\x30\x95\x45\x70\x39\xaf\x17\xa4\x31\xc7\xb5\x6c\x33\x50\x74\xd9\x88\x2f\x27\x3c\xfb\xa4\x30\x5b\x23\x5c\x68\x07\x82\x15\x38\xbe\x86\xc2\x72\x8d\x73\x84\x29\x29\x8c\x2a\x70\xbe\xc0\xb7\x72\x06\xef\xc8\xdc\x5d\x0d\xf7\x87\xe7\xe6\x1e\xa5\x69\xa2\x73\xd5\x99\x87\xc9\x90\x90\xfb\x34\x4d\x14\x1c\x1e\xfc\x32\xbe\x97\x74\x7e\xbf\xc0\x4b\x72\xa3\x4c\xca\x92\x2b\x55\xe2\xc1\x27\xe3\x89\xe1\x6d\x24\x49\xa7\x96\x69\x9a\x7d\x82\xb4\x98\xf2\xfb\x97\xe4\x66\x9c\xd7\x7a\x7b\xc6\x0d\x9e\xd9\x3d\xc2\x9f\x83\x7d\x73\x8f\x06\x9f\xc9\x75\xf6\x59\x55\xf1\x9e\xdc\x8c\xe5\x56\x00\x13\x60\x05\x7f\xbe\xd9\xa0\xec\x33\xc2\x6f\xc8\xa1\x6a\xb3\xcf\xf8\x25\x7e\x8f\xf0\x15\xc9\x47\xc9\x34\x19\xdd\xe3\x8f\xe4\xe1\x80\x96\x75\x1a\x36\x8d\x83\x6d\xf8\x19\xdb\xda\xc3\x8f\xde\x78\x2f\xcc\x13\xd8\xb0\xef\xb1\x32\x59\x4e\x5f\x62\x79\xad\x4c\xef\x71\xdf\x16\x3f\xbd\xea\x12\xc3\x1c\x2b\xad\x01\x1c\x3c\x50\x6f\x4e\x3f\xa9\x0c\xbe\x9a\x78\xaa\x43\xb0\x6c\x07\xb7\xf3\xfb\x05\xb9\x9d\xbf\x94\xff\xbb\x5a\x90\x8f\x78\xa7\x64\x9c\x8f\x40\xea\xe5\x5f\xf7\xe6\xe2\x7a\xf8\x79\x57\x4f\x77\xf8\x36\xdf\x4d\x6f\x71\xa0\xf6\x9e\xde\x61\xa5\xa2\x9f\x3e\x18\x53\xe2\xb4\xcf\xb3\x95\xe4\x76\x4e\x17\xca\x2a\x69\x1d\x00\xb4\xdb\xfa\xa3\x1f\x19\x5e\xa4\xf7\x2d\x8e\x38\x2c\x94\x4a\xe5\x15\xd8\x06\xbe\xb4\xee\xbe\xd3\x42\x29\x89\x73\x8b\x70\x4d\x7d\x92\xff\xab\xe2\x32\x9c\xae\x85\xda\xef\x87\x10\xab\xce\xea\x0f\xb4\x96\xfd\x44\x99\x49\x74\x7c\x99\x95\x1d\xfb\x96\xec\xb1\x56\x33\xc2\x14\x49\xa2\x60\x3c\x95\x2c\x92\xb8\xb6\x45\xe5\x30\x2c\x80\x1c\xf0\x74\xb8\x67\x01\x24\x82\x52\x8e\xab\x82\x53\x3f\x76\xd4\xaa\xb6\xa7\x5d\x75\xe5\x51\xaf\x99\x04\x8d\x6f\xf3\x1d\xae\x82\xab\x81\x22\x63\x65\xf4\x9f\x72\x64\xfc\x68\x2a\xdf\x8f\x46\x65\x91\x27\x6c\x5e\xcd\xf3\x05\xf4\xbc\xd6\x3a\x51\xdb\x52\xdc\x97\x20\xab\x11\x4e\xb4\x21\x12\xd4\x5d\x09\xea\x4c\xbc\x1f\x75\x69\x95\x5d\xca\x70\x89\x06\xd7\x9c\xe6\x1f\x4d\x42\xcc\xe1\xa4\xc5\x1b\x56\x76\x88\xc8\x81\x09\x61\x9b\xac\xeb\xf2\xdc\xf7\x78\x72\x39\x6b\x9d\xed\x83\xe1\x8a\x1c\xd3\x8e\x9b\xab\xdd\xf0\xc1\x35\xc9\xc7\xcb\x90\x0b\xce\x2a\x79\x87\x83\xad\x45\x21\x64\xd5\x97\x71\xf3\x59\x8e\x2b\x27\x5f\x17\x64\x72\x59\x3c\xaf\x25\xa7\xec\xa6\xde\xaa\x85\xe0\xf9\xbc\x58\xe0\x35\xd9\xaa\xde\xe0\x1d\x59\xfb\xda\xb1\x5b\xb2\xd5\x7e\x18\x67\x0a\xf6\xd3\xfc\xc4\x77\x26\x4b\xd2\xbd\x97\xc1\x14\x52\xbe\x67\xa6\x0c\x9a\x65\x77\xde\xd6\xd9\xe1\xad\x72\xd5\xc0\xf7\x64\x1d\x25\xdd\x77\xd8\x56\xbf\x05\x6a\x8f\xd0\xf4\x76\xe6\x72\xa1\xdf\x13\x3a\xbf\x5d\xa0\x34\xcd\xee\x54\xea\xf7\x48\x1d\xf7\x91\x3a\xb2\x7b\xb2\x1d\xc7\xa9\x39\xbe\x23\xd7\xd9\x36\x64\xfe\x11\xde\x1d\xf0\xc6\x58\x1f\x72\xc5\xb8\x1f\x92\xa0\x09\x55\xd1\x43\x57\xc0\x7b\x53\x16\xf7\x69\x3a\xbc\x18\x12\xc2\xcc\x2d\xbb\x3e\xb0\xc9\xb7\x48\x05\x10\xe8\xa6\x6f\xb0\x0b\x7e\x1f\x2c\x67\x8c\x0c\x27\x53\x48\x4a\xb1\x04\xa3\xce\xf0\x02\xb5\xce\x9e\x60\xa6\x1a\xdf\xa1\xb6\xd7\x2d\x22\x67\x26\x3e\x1b\x04\x78\x81\x21\x3f\x0a\xd0\xb2\xdf\xab\xc0\xb3\xec\x41\xe5\x99\xbf\xc7\x77\xac\x66\x3a\x5d\xd8\x47\x7a\x3f\xbd\xdd\xef\xcd\x1a\xb4\xa8\x65\x69\xca\x23\xf1\xfb\x6a\x4f\x1e\xb6\xc1\x7a\xc2\x9e\xde\x9a\x8a\xea\x0c\xf4\x4f\x6f\x97\x1e\x72\x9d\xc1\x89\x5e\x28\xb3\x4c\x2d\xc2\xfe\x01\x1a\xaf\x0a\x9a\xf3\x4c\x5f\x11\xc7\xbc\x51\x6f\x71\x1d\xbc\x7d\x0f\xd9\x6c\x8f\x94\x27\x0f\x55\x39\xed\x7b\xd7\x1d\x81\x1c\x6e\x5b\x27\x97\xdd\xe2\x07\x67\xc5\x9a\x46\xad\x5e\xce\x8e\xf4\x14\xcb\x86\xb2\x83\x38\x03\x19\x45\x53\xd1\xb6\x0a\xa7\xb8\x92\x5b\xe7\x3b\x9e\xdf\xd2\x4f\x15\xff\x08\x62\x25\xca\xee\x14\x23\xf6\x89\xdc\x79\x0e\xe6\x9f\x9e\xea\xab\xfd\x44\x00\xae\xff\xe7\x9e\xd9\x3a\x5e\xe7\x08\x78\xc7\x93\x93\x29\x9c\x92\x35\xf7\x49\xce\xdc\x4f\xcd\x05\xfb\xb4\xc4\xb1\x4b\x0d\xf0\xe9\xb9\xa2\x7f\x71\x6e\x55\xab\xf6\xb8\x93\x1b\xff\x83\x96\x3f\xd5\x3e\x55\xd9\x33\xde\x17\xd5\x27\xcf\x4d\x89\xdd\x3a\xc4\xd8\xb2\x12\x6c\x73\x6f\x38\x66\x75\x0f\x67\x49\xc3\x0b\xe3\xef\x06\x76\x8a\x00\x55\x41\x3b\xae\x39\x68\x06\xd8\xce\x85\xa7\xf4\x0c\x5c\xdb\x70\xb2\x66\x6b\xd7\x7a\x82\x5a\x5f\x8d\xa9\x2e\xfa\xe3\xdf\x7f\x62\x45\xe1\x55\x80\x39\xf2\xb5\x82\xa1\x8b\x21\x35\x9f\x81\x66\x85\x5c\xc5\x73\x69\x5d\x13\xa5\x51\xf2\xf4\x35\x05\x5b\x51\xbc\xfc\xd5\x9c\xc0\x2d\x2e\x8f\x8a\xdc\x16\x3d\x84\x89\xce\x73\x80\xe2\x8b\x14\x35\xcf\x24\xff\x0d\x98\x0e\x9a\xd1\x53\xd9\xdc\x32\x95\x1a\x41\x78\x44\x96\xe8\xfc\xef\xf2\xa1\xc2\xf6\x58\x43\xac\x6e\xf0\xc2\x44\x13\xaa\x90\xcd\xfa\x50\xa5\x2e\xe8\xf0\x9b\x7b\xd5\x9b\x78\x41\x7f\x7b\x98\x0e\x7b\xfb\xc3\x8e\x01\x7c\x27\xff\xd4\xd0\x86\xae\xdd\x25\x47\x05\xe5\x6a\xdf\xd5\x72\x53\x46\x71\x73\x2a\x87\x54\x1f\x71\x99\xaf\xc7\x4b\x56\x32\x35\x5f\xfc\x0f\x11\x3d\x3e\x78\xe1\xdf\x44\x90\xdf\x91\xf6\x41\x53\x79\x89\xca\x9e\x12\x27\x3e\x33\x1e\xa2\x5f\xe9\xed\x92\xc6\xcf\x26\xfc\x54\x64\xa0\x06\x97\x6a\x84\x2b\xd2\xf4\x47\xb8\x92\x3d\xeb\x23\x03\x69\x34\x01\xcc\x49\x85\x4b\xc2\x22\x0b\x36\x17\x0b\xb0\xd9\x72\xf9\xf6\x86\x8a\x97\xc1\xc2\x67\x25\x92\xe2\xd7\x38\x08\x94\x34\xb1\x09\xce\xb8\x8e\x1b\x67\x72\xcf\x41\x39\x57\xcf\xa9\x55\x9b\x37\xe6\x01\x19\x4e\xf0\xd0\xea\x82\x79\xa0\xdb\x53\x75\x75\x22\xd4\x5c\xf0\x58\x8e\x0b\x13\xac\x86\x50\xd8\x5c\x0b\x6c\x6e\x10\x13\x01\x3e\x8c\x69\x2a\x85\xbb\x75\x2c\x2c\x06\x65\x0d\x3a\x1a\xaa\xbe\x6a\x6a\x51\xdd\xba\x58\xf5\x33\xc5\x2e\x9d\x55\xa5\x17\x9b\xae\x62\xd7\x75\x84\xba\x86\x06\x55\x31\xea\x66\xe0\x2d\x20\x06\xb8\x76\x63\x8e\x19\xd1\x45\xa1\x4a\x90\xb5\x46\x93\x6e\x60\xfe\x7e\xbf\xee\xc5\x00\xc9\xc6\x9a\x3e\x54\xaf\x08\x88\xa7\xb7\xf3\xa9\x46\x02\xce\x82\xcc\x07\x0c\x27\x1e\x64\x98\x14\x52\x91\xac\x38\xa0\xd0\xc1\x28\xf2\x2e\x1f\xc6\xc2\xc2\xb8\xf3\x1b\xa0\x62\x56\xe3\x90\x64\xf7\x1c\x73\x22\xb5\x86\x5f\xe0\xee\x03\x8b\x1a\xb5\x0a\x09\x7c\xdf\x8d\xc1\x98\x0c\x20\x25\x4d\xc6\x90\x7d\x23\xbf\x85\x45\x75\xe8\x94\xc1\x50\xd9\x71\x10\x4b\xf3\x75\xc4\x35\x0d\x3e\xf6\x2f\x4a\x9d\x3f\x99\x8e\x45\x15\x5c\x8e\xde\xfa\x74\x5b\xeb\x81\x5c\xae\x3c\xcf\xea\x6f\x99\x22\xe2\x71\x8f\x2c\x3a\xfe\x94\xd7\x57\xd7\xb0\x3f\xa5\xb0\xc0\xcc\x8f\x59\x36\xc1\xb7\xe3\xa2\xba\x81\xdf\x28\x13\x68\x9a\x39\x70\xcd\xe1\x85\x8d\x4b\xa7\x63\xf8\x03\x0b\xac\xb9\x7d\x84\xd9\x78\xc9\x6a\x68\x54\x59\x2b\xd6\x99\x2e\x84\x66\xe0\x7d\xa9\xb1\x9c\x8d\x57\x7c\x30\x84\x0c\x42\x77\x55\x69\xd9\x62\x2e\x9b\xcf\xdc\x33\x18\xdd\x52\xf7\xc3\x4d\xf3\x0b\x1d\x39\xd5\x77\x91\x66\xdd\x0f\x7e\xa0\xf9\x5d\x2c\x2d\x01\x14\x8c\xa5\x47\xb0\xe6\x20\xfb\xee\xf0\xc1\x71\x65\x1e\x3f\x3c\xa0\x3b\x86\x29\xb0\x87\x13\x50\x02\x9b\x36\xb3\x39\x9b\x11\x5e\x05\x62\x83\x11\x17\xe0\x46\x6e\xf0\xc6\x9a\x19\x6a\xc1\x1b\x49\x33\xc7\xeb\xba\x30\x68\xd9\xf5\x7e\x3f\xbf\x59\x60\xe7\x75\xcb\x8a\xf5\xb7\xef\x7f\xc8\xd0\x60\x6b\x70\x28\x7c\x15\x89\x43\xa3\xc0\x9d\x00\xf7\xe1\x04\x57\x5a\xe1\x07\x7e\xda\x75\x4d\x39\x78\x5f\x81\x4a\x26\xa6\xaa\x9b\x5c\xd2\xe7\x1b\xa3\xc6\xa0\xa3\x11\xda\x00\x22\x5a\x5e\x14\xda\x1d\x1d\xe1\xd5\xf8\x36\xdf\x65\xdb\x00\x38\x05\x7b\xdd\x3c\x00\xb4\xb1\xdc\xe6\xf5\xab\x6a\xdd\x14\xf4\x9b\xbc\xa6\xeb\x77\xca\xd1\x0a\x98\x52\x75\x1f\xf3\xf8\x7d\xcc\xc8\x43\x1c\xbe\x60\x4a\x71\x07\xd3\x62\x1a\x09\xee\x89\xdc\x49\xe7\xb7\xf9\xce\xb8\xda\x75\xc3\xf6\x3b\xa9\xa2\x63\x0c\xd1\x9c\x02\x12\x49\xfc\x0d\xe1\xa8\xb5\x8e\x33\x72\xad\xad\xde\x03\x18\x09\xcc\x4c\x02\x81\xe3\x5c\x51\x3f\x9b\xc0\xcf\xaa\xf0\x5b\x53\xe0\xa1\x85\x8a\xe2\x93\x1a\x65\x87\x7a\x53\x0b\xa6\x7f\xea\x70\xa4\xad\x52\x80\x5b\x0b\xb0\xb7\xcd\xc6\xcb\xa5\xba\xbb\xf9\xfd\x72\x69\xfc\xe4\xf8\xf8\xb6\xdf\xba\xbb\x2e\x2d\x7c\x92\xca\x91\x22\x72\x2e\x74\xf2\xf6\xc7\x19\x36\xc9\xde\xb1\xbc\x00\x40\x4a\xab\x03\x06\xef\x4f\xc5\xf4\x81\x5e\xd7\x22\x7a\x83\x97\xe5\x61\x9e\xcf\x4b\x82\x73\xe7\xd0\xe6\x2d\xae\x7d\xa6\x9c\xbb\x14\xca\x13\x90\x2b\xc5\x4a\xe8\x5f\xad\xce\xf0\x62\x9a\x8e\xef\x70\x9d\xaa\x03\xca\xfd\xa0\x5b\xce\x50\x6f\x56\xbb\x5d\x33\x18\xae\x5e\x89\x58\xc6\x53\x64\xd0\x41\x02\xbe\x57\x9e\x1e\x1f\xcf\xbf\x13\x87\xe0\x06\x28\x09\x17\x1e\x4e\xd4\xee\x73\x5e\x29\xfe\x48\x6c\x38\x28\xab\xb5\x3b\x0d\x2b\x6f\xd2\xb4\xf3\x8c\xae\x8d\xc5\x54\x98\x04\x1e\xa7\xf8\x43\x41\xa0\xbb\x52\xd6\x3a\xff\x8a\xc9\x65\xe5\xc2\x3e\xab\xd1\x08\x3d\x50\xc2\xe7\x95\xd6\xda\x5a\x05\x6b\x4e\xd6\xfd\x20\x5e\x0d\xf8\x66\xc3\x37\xb4\x8b\x42\x6e\xaa\x6b\x8c\x63\x53\x41\xde\x66\x0c\x0b\x9c\xcf\x9b\x05\x1a\x30\x52\x8c\x0b\xa6\x49\x46\x2d\xef\x82\x4f\xe5\x7b\xe5\x95\x02\xde\x99\x60\xcb\x06\x98\x0d\xcf\xa9\x4a\xb9\x8a\x0d\x09\xe9\x17\x57\xbe\x4e\xfb\x7d\x56\x7b\x2f\x51\x0b\xde\x9c\x0e\x8a\xb1\x26\x7f\x87\x3e\x40\xae\x40\x52\xb7\x00\xac\x64\xed\x1a\xa2\xda\x15\xc6\xf9\x0e\xf5\x1f\x8d\xed\x72\xa9\xb4\x33\x0c\x0d\xac\xa1\x62\x15\xa7\x99\x1b\xb2\x0a\xc8\xde\x1d\xa3\x9f\xa6\xe7\xaa\xaf\x89\x36\xeb\x07\x6d\x90\x8d\x11\x77\x8c\x16\xe1\x78\x0f\xf0\xca\x1a\xba\xcf\x3d\x1a\x71\x6e\x10\x81\xa6\x30\x63\x48\xf2\x89\x2f\xa0\xde\x77\x55\x05\x7e\x79\xb1\x21\xb7\x60\xdc\x3f\x90\x65\xc2\xa0\xa7\x29\x9c\xad\x67\xff\x92\x8d\x47\x68\xf6\x0c\xcd\x27\x8b\x10\xce\xb7\x07\xc6\x6d\xab\x53\x0e\xdf\xfd\x22\x87\x63\x06\x3b\x1b\x7a\x4e\x17\x99\x80\xa4\xcb\x96\xb0\xbd\xc8\x38\x56\x53\xcd\x65\xd5\xff\x6f\xa0\xc9\x37\x8f\x43\x93\x3f\x0d\x92\x7c\xf3\x44\x70\xea\x3c\x04\xa7\xee\x2e\x40\x07\x8f\x3c\xd7\x79\xe1\x1e\x0b\xf8\xfb\xe7\x00\x83\x5f\x76\x20\xc1\x2d\x7a\xec\x63\x81\x7c\x5d\xa8\x70\xfc\xc1\x04\xe2\xd5\xff\x3c\xb8\xf4\x3a\x02\x53\xf6\x4f\x02\x4c\x57\xa4\xf7\xe0\xec\x3c\x02\x9c\x1e\xac\xb9\xcd\x45\xea\x12\x8d\x55\x6a\xd1\x7b\xd0\xea\x34\x1a\xfa\x68\xaf\x0c\xf3\x81\x4e\x42\x16\x82\xcc\x1e\x0d\x98\xf6\xf5\x50\x5d\x70\x5a\x23\x3f\xd6\x60\xe9\xfd\xef\xdb\x71\x5a\x88\x39\x88\x45\x5f\x3f\x0e\x02\xdd\x9d\xb0\x00\x0d\x5a\x47\x28\x47\x32\x58\x05\x1f\x85\x06\x5c\x2f\xdc\x54\x8a\xb1\xe8\xd1\x74\x58\x3e\xcd\xb6\xcc\x48\x70\x4d\xd8\x84\xe6\x91\x3b\x84\x68\xc5\xe1\x63\x36\x1a\x2f\xe2\x3a\x33\x39\x22\x4d\xfc\x5c\xa0\xc0\xb4\xec\x81\x50\xce\x38\x16\x7a\x0f\x7e\xce\xc5\x02\x81\xac\xc7\x9b\x12\x65\xf2\xe7\x9c\x2f\x70\xa2\x7b\xa8\x8e\xdc\x49\x20\x10\x1d\xbe\x5b\xb2\xf8\x22\xae\xfb\x5e\x6e\x98\x0f\x7a\xed\x48\x8b\x6a\xec\x14\x64\x08\x67\x36\xcb\xd7\x6b\xbd\xb4\x07\xab\xed\x3b\x3b\x7b\xa4\x27\x0b\xa0\xab\xa3\x43\x71\x29\x3a\x1e\x55\xd1\x1a\xae\xd1\x31\xb6\x07\x84\xbc\x43\xe9\x1f\xd9\x41\x01\xa4\xef\xe6\x9f\xa6\x16\x5e\x93\xc5\xd2\xf7\x2b\x5e\xdd\x1a\xe7\x2a\xa4\x19\xff\x68\x9a\xcf\xca\x63\x96\x72\xf2\x10\xa6\x04\x9b\xd2\x76\x70\xec\xe3\x95\x91\xdd\x0c\x73\x94\x23\xd4\xb6\x3a\xd0\x4f\xf2\x85\x3a\x34\xc7\xef\x7b\xa6\x82\xce\xb8\x0d\x3a\x33\xa8\xfa\x58\x20\x1c\x03\xcb\xd5\xa9\xc5\xd2\xd4\xfc\x95\x1d\x28\x67\x33\x8e\xca\xa2\xf6\x87\x91\xbe\x63\x9e\xc2\x07\x39\x9c\xc1\x2b\xe3\x25\x29\x7c\x0b\x54\x89\x2b\x1d\xa1\xb8\xa6\x05\x15\xf4\x4c\xcc\xe9\x02\x8b\x79\xa5\x2d\xcd\x0b\xa2\x83\xab\xa2\x9e\x05\x25\x36\xe5\xb4\x1f\x99\x9e\x7a\xbb\x58\x84\x10\xe3\xe1\x39\x10\x20\x2b\xc7\xd1\x33\x4a\x0c\xde\x95\xc6\x15\x4d\x92\xc8\xf6\xe0\x20\xe3\xea\x31\xb9\x46\x84\xd0\x19\x9d\x26\xb9\x24\xe3\xca\xc5\xf7\x0f\xef\xdf\xbc\x1e\xab\xfd\xc6\x36\x92\xed\x9a\x26\x89\xca\x03\x78\xc0\xd5\xba\x53\x79\x7c\xd6\x40\x03\x59\xa6\x69\x16\x4e\x5a\xa9\x7d\xa0\x35\x2f\x75\xc0\x95\x82\xab\x4c\x29\x72\xd2\x4a\xed\x4a\xa1\xc7\xfa\x38\x76\x48\x6c\xb4\xd7\x4a\xe2\x56\xe3\x4d\x04\x6f\x28\x64\x26\x9e\x26\x65\x73\x7b\xad\x5c\x08\xc5\xec\x35\xfc\x9d\x51\xa4\x42\x7c\xdf\x6c\x32\x14\xcc\x13\x4c\xff\x15\xca\x60\xbe\x76\x39\xaf\xe5\x35\x83\xa6\x6a\xa6\x76\xbc\x29\xe9\xa1\xbc\x32\x87\x59\xea\x8e\xa7\x0d\xf5\xe2\x53\xce\x20\x47\x95\x76\xbc\xe2\x10\x17\x5e\x2e\x06\x2c\x4d\xd9\x61\x17\x0a\x31\x2f\x17\x69\x6a\x67\xbc\x5c\xb4\x9a\xc5\x3f\xa8\x81\xb6\x59\x11\x70\x45\x94\xb7\xe3\x06\x12\x0a\x2b\xf3\x3d\x58\xae\xc0\x14\x92\x45\xef\x70\x9c\x93\x07\x9d\x0b\x74\xb9\xe3\xd5\x8a\xd6\x9a\xd5\x70\xed\xf9\x2e\xfa\x95\x14\x38\x31\xd7\xa1\x21\xce\x3b\x96\x23\x97\x16\xb4\x9b\x23\x41\x7d\x63\x54\x26\x25\x32\xd6\xaf\x8c\x1d\x64\x2b\x7a\xac\x26\xf3\x51\x28\xba\x09\x0c\xf2\x76\x81\x3c\x09\xa6\xd6\x12\x4c\xad\x97\xf5\xb1\x41\x45\xe6\xb3\xe3\x9a\x77\xd0\x27\xc2\x2c\xae\x43\xa5\x75\x57\x5d\xc7\x2f\xeb\x60\x1d\xf3\xdb\xf1\x9f\x7e\x7c\xf9\xee\xaf\xcb\x0e\xe4\x40\xe0\x56\x9c\xa3\x0a\xdc\xa3\x6a\xb4\xdf\x67\x6c\x5e\x2f\x48\x3e\xaf\x17\x46\xe2\xdd\x34\x45\x71\xff\x7e\x55\xed\x7a\xd9\x20\x6c\xc2\xe7\xc3\x45\x58\x67\x31\x39\x66\xa8\xd5\x53\xd7\x5d\xcb\x83\x09\x39\x3e\x5a\x0a\x62\xfa\xb4\xbd\x5f\x43\x3a\x8c\xb2\x6e\xa4\x1c\xed\x5f\xc1\x75\xc6\x30\xf7\x37\x84\xe1\x9e\x62\x41\x21\x2c\x08\x0a\x41\xb8\xd4\x5e\xc1\x47\xcf\x6b\xf7\x2b\x18\xce\x0d\x15\x7f\x7a\xfb\x8a\xfa\x51\x49\x9e\x1c\xae\x54\x33\x2e\x66\x27\x50\x5b\x81\xf7\x10\x54\xd2\x09\xd8\x89\xd5\x64\x81\x4a\xe8\x5c\x9c\x5f\xa8\x3c\x15\x36\xe2\x58\x9b\xbe\xb5\xf0\xeb\xe2\x82\x6d\xa4\xae\xc3\x1b\x93\xa2\x26\x19\x4e\x30\xc4\xd8\x14\x64\xbe\xc0\x2b\x32\xb9\x5c\x3d\x17\x97\xa3\xd1\x0a\xb1\x8d\x3d\x3f\x76\x60\x19\x9d\xaf\x16\xc8\x09\x01\x1b\x32\xb9\xdc\x3c\x67\xbe\x07\xdf\x66\x34\x42\x92\xff\xf8\x79\x57\xcf\x37\x0b\x5c\x98\x48\xc7\xcb\x60\x0f\xd4\x98\x49\x72\xa5\x4d\x02\x39\xd1\x4a\xd4\x2d\x01\xdf\xe0\x02\x7c\x83\x6b\xab\x0e\xce\x2d\xd7\xec\x46\x47\xb6\x08\x6f\x15\x9b\x17\xdb\x79\x3d\xd1\xc7\x12\x4d\x1c\x6c\x26\x7f\x19\x2b\x32\x01\x28\x1b\xa3\x57\x7b\x9e\x5f\x8e\x46\x95\x9c\x88\xb2\x37\x11\x6c\x5e\x2d\x10\x72\xc0\x6a\x56\x97\xa6\xff\x28\xc8\x04\xa2\x77\xbd\x99\x29\x9e\xaf\xc0\xbf\x31\x6b\x08\x84\x05\x2b\xf7\x46\x64\xe3\x7f\x78\x9a\xd6\xf0\x63\xbf\xaf\x23\x40\x69\xb6\x48\xff\x95\xfc\xc0\x39\x42\x42\x21\xed\xe4\x98\xa6\xcd\x90\x90\xd8\x37\x80\x11\x18\x7b\xb1\x20\x7c\xde\x2c\xb0\xbe\x21\xe4\xdf\x6a\x63\x1e\x3b\x6f\xc7\x66\x1b\x76\x59\x10\xbb\x56\x47\xc0\x36\x3a\x4a\xc8\xd1\xa8\x89\xcf\x3b\x28\x23\x91\xe7\x41\x7a\x68\x96\x61\xfb\x9a\x49\xc6\x72\x47\x9a\x79\x16\xf2\x7e\x54\xf3\xcc\x0e\xcc\x33\x14\x89\xcd\x33\xf3\xe6\x19\x0a\xe9\x79\xae\x86\x84\xc4\xbe\x90\x1b\x77\x1e\x7b\xb1\x20\x62\x5e\xd9\x59\x96\x7f\x7b\xfc\xf6\xf6\x20\xf2\x08\x8b\x22\x8f\x30\x8d\x3c\x42\xb5\xf7\x1c\x1a\x1c\x6a\xd4\x86\xd9\x6c\xb1\x9a\x03\xcc\x3a\xb1\x65\x8a\x5d\x5c\x6d\xe9\xba\xb1\x96\xa3\xbe\xf5\xd8\xc8\x5d\x8f\xba\x4c\x2d\xeb\xfe\x3b\x02\x52\xa0\x69\xe3\x0d\x48\x83\xda\xb7\xcb\x95\xac\x95\xeb\x14\x4e\xb4\x63\x4e\xd8\x46\xa2\x81\xc4\xea\x71\xf4\x75\x1f\xaf\xf1\x09\xb7\xad\x02\x80\xda\x59\xf3\x93\x27\xa8\x86\xdf\x47\x1f\xc6\xae\xdf\x10\x0a\x67\xe0\x5c\xc5\xfc\x94\x3d\x0a\x12\xd8\xda\x9b\x27\x0e\x16\xdd\xa0\xc7\x1c\x9b\xef\xbe\xd6\x21\x32\xf1\x70\xe9\x14\x63\x55\x89\xe1\xd7\x22\xe5\x8e\xad\x9d\x64\x99\xa1\x2b\xb7\x39\xff\x08\x26\xef\xab\x5a\x1b\xbd\x23\x72\x79\xe0\x54\xe5\xcb\xe6\xa1\xb9\xfc\xb0\xf6\x26\xac\xc0\xa4\xd7\x91\x33\x51\xd0\xdc\x7c\xde\x35\xf7\xc7\x5b\x57\x67\xcd\x7c\xdf\xf3\xef\x89\x5e\xb5\x70\xb5\x72\x48\x26\x6b\x10\xfb\x01\x54\xd9\x85\x45\x5a\xbe\xac\xab\x65\xa9\xe6\x62\xb1\xdf\x67\xf2\x9f\x98\x63\x94\x45\x35\x55\x1a\x16\x30\x29\xda\xb0\x83\x98\xcc\x7f\x99\xe5\xa4\x56\x61\xd0\x2f\xb6\xac\x58\x77\xbc\x93\x04\x7e\x30\xd1\x9b\xd3\xe1\xc4\x4f\x29\xc0\x5a\x84\xc6\xd7\x55\x05\x31\x19\xaa\x35\x92\xbb\x18\x52\x5c\xb5\x19\xeb\x47\x4d\x7f\xea\x26\xca\xa2\x36\x9f\xc4\x25\xff\x9a\x4c\x2e\xcf\xcf\x5d\x68\xe2\x9c\x2f\x9c\xf2\x3b\xe0\x3b\x98\x86\x5a\x17\x19\xc3\xa5\xd1\xb9\xb7\xad\x8a\xc1\x7a\xf8\xc4\x8a\x42\x1b\x3f\x21\x56\xa2\x17\xd4\xa0\xf7\x61\x84\x1c\xe9\xd0\x7f\x30\x33\xf6\x3e\x73\xd8\x03\x72\xb5\xe6\xae\xeb\x8b\x81\x1c\x57\x68\xaa\x66\x9b\x8c\x3b\x9f\xf7\x8a\xbc\xcf\xa8\xf1\xf5\x40\x41\xc8\x4a\x19\xdb\xf4\xe0\x5f\x75\x50\x35\x2e\x65\x13\x84\x87\x17\xad\x5a\xec\xcf\x7e\xd5\xda\x7c\x99\xef\xf7\xd9\x97\xd4\x9c\xab\x9a\x91\x9f\x48\xc3\x07\x46\xc1\x8c\xcc\x17\x83\xf2\x90\xba\xa5\xff\x4c\x99\x6c\x3f\x6c\x79\xf5\xa9\x9c\x05\xbf\xa6\x74\xa0\x2e\x4d\xc9\xca\x09\x05\x6c\x52\x8e\x6f\x69\x5d\xe7\x37\xd4\xbe\xb0\x4f\x20\x45\x95\xc8\x57\x1f\xbd\x57\xf0\x1b\xe1\x9e\xd2\xaa\x74\x65\x10\xba\xcc\x38\x59\x55\x65\x5d\x15\x14\xa9\xf6\xb5\x74\x06\x22\x83\xe4\x93\x61\x86\xce\x3e\x6d\x59\x41\xcf\xb4\xe0\xc5\xca\x1b\xe5\x7e\x36\x3d\x4b\x46\x26\x0b\x1a\x08\xa4\x2d\xd6\x14\x34\x12\xb2\xa5\xa3\x56\xcb\xe3\xbb\x43\xe1\x4e\x31\xe0\x9f\xfd\xdd\x61\x13\x56\x04\xfb\x83\x1f\xd9\x06\xdd\x4d\xe0\x6a\x30\x07\x71\x96\x1d\xf9\x3e\x87\xa5\x9e\x8a\xf1\x8e\xdd\x55\xe2\xf7\x2e\x0d\x5d\x8b\xda\xd6\x1d\xda\xcf\x1d\x14\xa6\x32\x00\xa4\x01\xca\xe5\xdb\xa7\x3a\x7c\xc4\x28\x59\x7a\x70\xf5\x6f\x32\xee\x00\x09\x30\x53\x2f\x71\x85\x66\x55\x90\x18\xfd\xfd\x3f\xd4\x24\xce\x49\x37\xa0\xbc\x9a\x89\x69\xa5\x02\xca\xe3\x5d\xe9\x7e\xc0\x66\x62\xca\xd4\x07\x38\x47\xb3\x3c\xe8\xde\x9b\x5e\x66\x47\x67\x01\x28\x11\x74\x48\xfe\x56\xfe\x19\xb9\x36\xfd\x39\x30\x19\x0e\xd8\x36\xbd\x12\xc6\xdb\xd3\x25\x82\x64\x69\x5a\xb9\x56\xaf\x02\x49\x7f\xa8\x82\x6d\x2c\x56\x84\xf3\xb6\xac\x2d\x93\x91\xbc\xc8\xcb\xdf\x8a\x33\x7d\xfd\x9f\xa9\x58\xb8\xb3\xdf\x26\x23\x3e\x4a\x7e\x7b\x76\x4d\x57\x79\x53\xd3\xb3\xfb\xaa\xe1\x67\xf9\x6e\x77\xb6\xcd\x6b\x59\x7c\xc3\x4a\x56\x6f\xe9\xfa\xcc\x69\x34\xe4\x71\x60\xa5\xa8\xce\x98\xa8\xcf\x36\x8c\xd7\x42\x9d\x8e\xf1\xd9\x87\xca\x55\x5f\x9a\x16\xaa\xf2\x6c\x0d\xf1\x7e\x30\x32\x55\xb4\x3e\x5b\x37\x5c\x39\x7f\xba\x7a\xb1\x6c\xfc\x6c\x95\x97\x67\xab\xbc\x28\xce\xfe\x0b\x2c\x43\x19\xfa\x2f\x59\x83\xd8\xd2\xb3\xff\x72\xfb\xf5\xbf\xce\x14\x6d\x39\xdb\xe5\x75\x2d\x3b\x57\xa9\x12\x60\x0c\x7d\xe6\x21\xe0\x3d\x73\x90\x77\xff\x75\xb6\xad\xaa\x8f\xf5\x38\x41\x6d\x47\x3e\xbd\xc0\x8d\x7f\xf7\x34\xf2\xee\x69\xce\xcf\x25\x83\x5f\x91\x8c\x01\x54\x9c\xf6\xc3\x93\xb4\x44\x47\x11\x7a\x7f\xce\xf9\x42\x2d\x03\x28\xbd\xad\xbe\xc7\xde\x46\x10\xae\x92\x69\xb2\x4c\x08\xe1\xf2\x5b\x1b\xb4\x12\xa1\xcb\x25\x98\x8f\x07\x52\x76\x6e\x95\x14\xf2\x52\xdf\xe0\x05\x2a\x7c\xe3\x4c\xc7\x02\x68\x52\x43\x0d\xf3\x34\x1d\x0a\x14\xdd\x06\xaf\x2b\xb1\x95\x53\xaf\x59\x17\x98\xb8\x70\x33\x8c\xcf\xbe\xdf\xc0\x5a\xac\xd9\x5a\x17\xf3\x4a\x61\xe0\x9b\xce\x60\x30\xb0\x5a\xd7\xf4\x0c\xf6\xce\xfa\xec\xfa\xfe\x4c\x0d\x58\xd6\x2f\x78\x43\xcf\x36\xbc\xba\xf5\xf6\x82\xce\x6e\x09\xea\x20\x2f\xb5\x05\x86\x0a\xe0\x23\xd7\x19\x51\x9d\x5d\x37\xd7\xd7\x05\x1d\xfb\x31\x0a\x1f\x7b\xf2\x1f\xa1\x7d\x06\x59\x4e\x90\x36\x34\xca\xc2\x8e\x73\x30\x62\x78\xa9\xe5\x18\x1d\x98\xc9\xa2\x81\x99\xf9\x62\x50\x8f\x59\xad\xd9\x87\xf5\xac\x9a\xd7\xc0\xae\x49\x21\x67\xa7\x13\x8f\x7a\x8f\xac\xee\x27\xb3\x20\x88\xc8\x45\xc0\xdb\x11\x7c\xf0\xb9\xbf\x47\xfd\x73\xe4\x9a\x03\x77\xd3\x81\xeb\x5f\xea\x4f\xdf\xe6\x42\x5e\x98\x92\x47\x9c\x0b\x2f\x2d\x69\xa9\xb0\x10\x54\xf2\xc5\x98\xb7\xd5\x65\x60\x09\xf1\x53\x67\x6a\x75\x5a\xef\xa5\xcb\xc6\x89\xab\x78\x09\xb0\xa5\x68\x5c\xd2\xa6\x4f\xaa\x63\x00\x0c\x3e\xa5\x45\x83\x26\x4d\xf3\xf1\xd5\xdb\xb7\xcb\x17\x1f\xde\xfd\xb0\xd4\x4e\xc9\x6f\xdf\xbd\x79\xfb\x3e\x4d\xb3\xa0\x93\xac\x3c\x6b\xf6\x7b\xcd\xf5\x86\x30\x13\x59\xd3\x19\x4f\x17\x55\xc3\x02\xf1\x39\x67\xba\x30\x75\x68\xab\x87\x17\x8b\xc6\x41\xdd\xea\x51\x64\x82\x4e\xeb\x9d\x37\xa1\xa7\x77\xd1\xcb\x89\x7a\x72\x3f\xbd\x6f\x50\xeb\x76\xe2\x0b\xff\x62\xed\x48\xa4\x10\x1f\x12\xca\xa2\x34\x22\x67\x06\x36\xfe\xfd\x5e\xc4\xe2\x93\xa4\xb0\x77\x48\x18\xdd\xf1\xea\x96\xd5\x94\xd0\xf1\x0a\x60\x3b\x03\x1f\xee\x4d\x36\x14\x7d\xb7\x67\x13\x4b\x40\x07\x22\x22\xa3\x81\xf0\x95\xb8\x9b\x42\x85\x1b\xf8\x14\xe4\x55\xf7\xbe\xa6\x3d\x0b\x88\x40\x21\xd4\x86\x66\xe1\x23\x58\x1b\x65\x56\x01\xa2\x86\x52\x36\xce\xab\x85\x3f\xbf\xef\x1c\xee\x8d\x33\x81\x93\x39\x5d\x5c\x72\x0b\x21\x72\x69\x44\x09\x6e\xa2\xda\x0d\x2c\xa2\x75\x79\x23\x84\x08\xa7\x5b\x55\x7d\x36\x70\x7e\x75\xd8\x51\x86\xb8\x62\x75\x59\xa7\x2b\x6f\xb5\x2a\xdd\x9a\x59\x1e\x54\x03\xd3\x52\x63\x83\xd5\xd3\x58\x68\xcd\xa7\xbc\xfe\xb1\xa6\xeb\xe9\xf0\xc2\x68\x4a\x41\xe5\x25\x6f\xff\x99\x1c\x9d\xfa\x13\x4d\x05\x40\x00\x19\xbf\x6c\xd3\x37\x6c\x41\x07\x2b\x34\xa5\xa4\xc2\x0f\xce\xbd\x6f\x4a\xb1\x71\xc9\x9b\x56\x5e\x47\xff\x1e\x0a\x58\xb2\x11\xee\xe3\xfc\x99\x79\x00\x37\x5f\xdd\xce\xf8\x36\x67\xa5\x1d\x91\xca\x80\xc7\x7d\x9e\x50\xa1\x9f\x29\x57\xc1\xd6\x0e\xf8\xa1\x6d\xb1\x40\xed\x32\x44\x12\xba\x8d\xfb\x2a\x83\x98\x18\xfa\x81\x67\xbd\x67\x36\xc3\x68\x50\xa3\x5f\x62\xda\xfb\xa6\x35\xb6\x03\xff\xa1\x4e\x94\xa8\xde\xb4\xd8\x91\xfa\x69\x04\x92\x0f\x97\x80\x7f\x62\x66\x90\xf5\xf2\x4f\xfb\xe9\x0e\x47\x23\x80\x77\x91\xf2\xb4\xbc\x55\x24\xe7\x62\x9d\x8c\x2d\x24\x80\x73\x03\xbd\xb8\xac\xdc\xb7\xe0\x06\x2a\xdf\x09\x42\xe7\x95\xba\x63\xbc\x24\x9b\x98\x93\x6b\xe5\x8e\x5e\x22\xbb\xc3\xd3\x74\xc8\x32\x8e\x05\xba\x44\x6e\x87\x97\x30\x3e\x07\xef\xa0\x51\xa3\x6c\xda\x11\x77\x6d\x8e\xff\x5e\xb1\x12\x6a\x07\xb0\x20\x13\x21\xcc\x1c\x52\x53\x10\xee\x32\xbd\xc3\x61\x9c\xca\xf4\xde\xa6\xd6\x4f\x9e\x25\x2e\x25\x7f\xb2\xcd\xeb\x6d\x82\x1b\x5e\xa8\x64\xd2\x51\xf4\xa1\x2e\x11\x3e\xe8\xb9\xdc\xaa\xd0\xea\x4e\x10\x8d\xed\xed\xfa\x70\xa8\xb4\xba\x2b\xbf\x25\x4b\x2f\xbe\xf8\xdb\x27\xc7\x17\x9b\xf0\xd5\x47\x52\x42\x9d\x12\x8e\xfb\x65\xf9\x87\x7d\xbf\x4a\xb3\x0f\x69\xa0\x61\x81\xa6\xb5\x8b\x36\xf5\x82\x54\x38\x11\xfe\xaf\x3f\xd4\x2a\x44\x91\xb7\x36\x98\xc6\x05\x85\x1e\x76\x3d\x03\x23\x80\xcd\xe4\xda\xab\x6e\x60\xfd\xa7\x35\xcf\xdd\x73\x46\x2b\xb1\xb6\xaa\x58\xc0\xd9\xe1\x05\x48\xde\x69\xea\x43\x79\x30\x87\xfd\xe4\x29\xd2\x02\xa8\x68\x16\xfa\xe1\x79\xe3\x3e\x90\x7d\xbf\xc4\xb5\xe1\xa6\xb6\x80\x03\xf3\xf2\xe7\x26\x2f\x00\xed\x28\x40\x9d\xf3\x10\x3b\x3a\xd9\xb2\xcb\x27\x6c\x18\xe1\x29\xb8\x9f\x9e\x81\x4c\x87\x6c\x3f\x29\xb7\xde\xe1\xf8\xf5\x23\x71\xe7\x8f\xc5\x61\xf7\xb6\x65\xd7\x5b\x36\x0e\xa4\x2c\x19\x0d\x83\x50\x17\x68\x65\x84\x94\xc9\x7a\x17\x7c\x08\xe3\x35\xa3\xe3\x5d\xb5\xcb\xd0\x38\xc4\x7e\x33\xb0\x6a\xf6\xbe\x99\x52\x0b\x50\xa3\x9c\x73\xa7\x34\x80\x8b\x13\x6d\x8b\x69\xcc\xbf\x21\xaa\x1f\xee\x61\x18\xf4\x1f\xcd\xab\x83\xc8\x2a\xb2\x2f\x1d\x60\x47\xbb\x3d\x7b\xf2\x82\xec\x56\x07\x4f\x25\x62\xe6\xd0\x99\xa5\xde\xcb\x82\x74\xdd\x45\xa7\x94\xb7\x51\x44\x12\x61\x11\x59\x87\xd3\x55\x75\x53\xb2\x5f\x28\xd7\xfe\xe5\xbc\x56\x79\x0a\xb1\x0a\x3f\x10\xee\xce\x72\x67\x5b\xf2\x5a\x00\x9a\xa3\x2a\xae\x07\xb5\x73\xe5\xe7\x24\x07\x84\x0b\x95\x1f\xab\xd6\x62\x48\xae\x75\xc6\x8d\x9f\x6e\x0b\xfc\x3d\xda\xce\x58\x08\x9c\xad\xbe\x51\x2c\xea\x9d\x1a\x81\xf5\x3c\x2d\xfd\xef\x7c\x11\x4b\xd9\xf9\x55\x88\xfd\x69\x53\x76\x26\x09\xee\x04\x63\xd8\xd9\x68\x20\x20\x03\x17\x44\x52\x91\x06\xe1\x95\x87\x44\x53\xca\x4b\xbe\x48\xd3\x42\x72\x85\x9a\xed\xdb\x00\x90\x75\x33\x86\x3c\xc9\x6f\x36\x59\x81\x66\xcd\xb8\x6e\xae\x6b\xc1\xb3\xc2\xa5\xb5\x9e\x36\x83\x95\xa2\x6a\x70\xe9\x95\xf3\x62\x81\x37\x06\x95\xcd\x7f\x81\x1b\x34\x60\x23\x92\x4c\xa7\x90\xf6\x77\x9a\x8c\x56\x96\x6a\x8f\x98\x45\xf9\xcd\x71\x72\x9e\x20\x39\xb1\xc7\xe1\xdf\xe2\x3e\xc0\xe4\xa1\xc5\x11\x16\xa6\x01\x0e\xc6\x4b\x27\x27\x64\x03\xbe\x0f\x3e\x29\x40\xbc\xe8\x26\x43\x89\xb8\x41\xa9\xdc\x77\x2a\xe6\x9c\x87\xba\xc5\x9c\x54\x3e\x3e\xa5\xbc\x10\x3c\x48\xf4\x9e\xaa\x59\x29\x73\x8b\x8c\xf9\xf1\xce\xa5\x53\xbd\xbc\xe5\xd5\x0d\xcf\x6f\x6f\x73\xc1\x56\x9e\xe2\xab\x3e\xbb\xbe\x3f\xfb\xf1\xdd\x0f\x67\xab\xbc\x2c\x2b\x71\x76\x4d\xcf\x40\x9d\xf2\x89\x89\x2d\xf3\x62\xa0\xc7\x67\x6f\x0b\x9a\xd7\xf0\x16\x34\x25\x2a\x26\xba\x54\x26\xe5\x5a\xd0\x1c\xe2\xa1\x19\xc9\x41\x57\xc9\x20\xa6\x80\xb0\xd6\x9f\x22\xff\x8e\x39\x04\x77\x8e\x19\x99\xc0\x81\xe6\x87\xb1\xf4\x38\x52\x82\x4d\x8c\x8f\x2c\x47\xa3\xd6\x7e\x2e\x90\xe8\x7f\x9b\xa6\x6c\x34\xb2\xbc\x3c\x21\x84\xb5\xda\x58\xf5\xec\x6f\xe3\x67\x37\x8e\x99\xad\xfb\x36\x22\x8f\xe1\x2c\xe5\xf1\x50\xa8\xc9\x3c\x82\x9a\xcc\x35\xad\x9f\x60\x36\xba\x40\x8e\x95\x74\x3a\x15\x73\x14\x2a\x84\x00\x16\x6b\x50\x92\x2a\xa2\xb2\x69\xc2\x09\xa2\x81\xd0\x15\x33\x38\x64\x19\x27\x0f\x2d\x9a\x97\x0b\xf2\x90\x2b\x1c\xbb\x16\x97\x84\x23\xa3\xaf\x2d\x23\xb2\xa4\xa6\xa4\x6a\x1e\xca\x79\xb5\x18\xf4\xaa\xce\xd3\x34\xcb\xa1\xca\xbc\x95\xfc\xb6\x24\x87\xfb\xbd\x69\x42\x43\xe5\x69\x9c\xc2\x56\xb9\x6a\x3a\x9f\xa8\x1c\x61\x59\x9e\x70\x4f\xdc\x2a\xbc\x6c\xc6\x11\x6f\xdf\x2c\x01\x17\x45\x08\xb0\x91\x7f\xcc\x27\x0b\x74\x38\xdf\xa9\xc2\xa0\x79\xa6\xf3\xb0\x1f\x67\x12\x4c\x61\x8f\x35\xd1\xe6\xa2\xc7\x4a\xdf\xb2\xcf\xac\xac\x9f\xd9\x80\xc7\x1d\xaf\x3e\xdf\x9f\xfa\xd5\xaa\x2a\x45\xce\x4a\xca\x4f\xfc\x6c\x55\xed\x4e\x29\x74\x2b\xd9\xba\x47\xcb\xb1\xfa\x9c\xca\x73\x77\x6a\x67\x95\xdb\xe7\xc9\x23\x93\x9d\x90\x84\xe9\xd4\xf9\x76\xd0\xb0\x27\x7e\x00\xfd\x39\x71\xe2\x82\x35\x7d\xda\x37\xab\x8a\xd3\xe5\xd3\x36\x83\x52\x19\x6b\x6b\xfc\x51\x84\xa4\x70\xca\x76\xf7\x27\x4d\x98\x2e\x4f\xcb\xe6\x96\x9e\x36\xc5\xfa\x8b\xf3\x27\x6d\xce\x0a\xf2\x52\x3d\xa5\xfe\x5b\x75\x15\x2d\x9f\xde\x33\xa5\x8a\x5b\xea\x89\xd3\x78\x1a\x27\x4f\x84\x12\xbe\x4f\x2d\xae\x95\x7c\x27\xee\x02\xfa\x59\x3c\xe3\xf5\xdd\x01\xb0\x29\xaf\xa0\x24\x53\xe7\xd5\xe6\xa4\x0a\xad\xd3\xfe\xe9\xb0\x4e\xf8\x0e\xdf\xe3\x1b\x7c\x8d\x97\xf8\x13\x7e\x89\x3f\xe3\xf7\x1d\xa1\x23\xae\xde\xa5\x38\x79\xa3\xf7\xee\x83\x5b\x96\xe9\x70\x82\xa3\x2a\xde\x33\x61\xd8\x03\x49\x57\x0f\x56\x69\x81\xc9\x9e\x58\x77\xe7\xbb\xa3\x6d\x68\x03\xe4\xfd\x5b\xb9\x4c\xaf\xe4\xd2\x9d\xd8\x0c\x3f\x69\x08\x2f\x0c\xe9\x7d\x72\xfd\xe5\x49\xf5\x2b\x52\x7d\x52\x85\xec\xc4\x0a\x35\x59\x3f\xa9\xce\xea\xa4\x3a\x59\xfd\x52\xdd\x00\x27\xd5\x99\x9f\x54\xe7\x95\xba\x26\x4e\xaa\xb1\x3e\xa9\xc6\xd7\xb9\x14\x30\x9f\x56\xaf\xf7\xcd\xf1\xde\x9e\x5c\xe3\xd5\xd1\x7a\x5e\x29\xd2\xf7\xb4\x4e\xfa\x1f\x1d\xad\x9d\xd3\xdb\xea\x8e\x5e\x9d\x7a\xd0\xea\xb1\xf9\xe0\x68\xad\x4d\xc9\x7e\xfe\xe6\xf4\xde\xaa\xe2\x8f\xec\xa7\xa7\x4d\x80\x2e\xff\xc8\x41\x75\x9c\xc4\x49\xd5\x36\x27\x6e\x2a\xcb\x6e\x9c\x54\x6b\x71\xfa\xe6\x7f\xab\x2e\x96\x93\xaa\x5d\x9d\x54\xad\x7a\xf1\x94\x7a\x37\x27\x12\x41\x4e\x9f\x44\xc2\xb7\x27\x55\xdb\x83\xae\x3c\xb9\xf6\xde\x97\xc7\x67\x1b\xbe\xff\xbd\x61\xb3\x4e\x6a\x63\x7d\xe2\xc4\x18\x5e\xec\xa4\x4a\x77\x27\x55\xfa\xd2\x63\x8b\x4e\xaa\xf6\xf6\xa4\x6a\x97\x4f\xbe\xc1\xee\x4e\xab\x17\xbc\x06\x4a\xf1\x5d\x75\xea\xdc\xde\x8d\xdd\x27\x8f\xec\x67\xc7\x5a\x9e\x54\xf3\xfd\x49\x3d\xd6\xf4\xf4\xc9\xf3\x7c\x73\x52\xed\x4a\x33\xaa\xf6\xdc\x7b\xc3\xa1\x9e\x54\xff\xf5\x69\xdb\xc3\xb0\xb1\x27\xd5\xb9\x3c\xa9\xce\xb7\x8a\xd7\x7d\xf2\x0e\xf9\xe4\xd5\x7e\x98\xb3\x7c\xf7\xfe\xa7\xb7\x27\x56\xf8\xf2\xa4\xee\x56\x25\x28\xe1\x75\x0c\xd2\xc9\x55\x87\x9f\x1d\x6d\x41\x85\x8a\x9e\x58\xf3\x67\x1d\x59\xda\x82\x45\xed\xa8\x96\x21\x10\xbc\x4f\xd7\x35\x9c\x2a\x34\xf4\xa5\xea\x93\x2d\x63\x9e\x05\xac\xc2\xb9\x8a\xda\x25\x84\xe4\xc6\x86\x3f\x19\x78\x96\x23\x13\x49\x5b\x79\x5e\x33\xee\xa9\x82\x77\x4c\x8c\x6b\x78\x42\x08\xa9\xd3\xd4\xf2\xdb\x26\x2a\xb9\x42\x90\x01\xd1\x43\x2c\xd3\x33\xe3\xa0\xf0\x23\x2f\xa1\x77\xbd\xfa\x9b\x48\xfd\x39\x4a\xd3\xfc\x48\xfd\xe7\x17\xff\x23\xfa\x5a\x81\xb1\x2b\x07\x36\x96\x95\xf3\x7a\x81\x4b\x05\xf5\xa3\x14\x70\x85\xe9\x5f\x31\xa8\x3f\x31\xb1\xda\x66\x35\x7a\x58\xe5\x35\xb5\xb1\xb2\x53\xf8\xa5\x03\x64\xa7\x86\x7d\x57\x3d\x87\x57\x5a\x69\xe5\xbd\x52\xf0\x99\xf4\x85\xe9\x02\xc2\x13\x5d\x56\xe9\x53\xa6\x46\x79\xb7\x22\x06\x8f\x1f\x6f\x2c\x22\x10\xde\x92\x57\xb9\xd8\x8e\x6f\x59\x99\xad\xf0\x06\xe1\x35\x99\x5c\xae\x9f\x6f\x2f\xd7\x46\xaf\xb8\x23\x34\xab\xe6\xeb\x05\xce\xe7\x6b\x37\x94\x9d\x19\xca\xae\xb5\x5d\x91\xdf\xab\x96\xed\x04\x4f\xbb\x22\x93\x5b\xc2\x59\x15\x2c\xcc\x74\xa2\x3e\x5d\xe7\x82\x06\xc3\xbb\xa1\xe2\x03\xbb\xa5\x19\x82\x64\xa4\xfa\x6f\x34\xd0\xf5\x99\x92\x93\xb6\xd5\xb6\x59\xc8\xfe\x21\x4f\xe5\x7a\x3a\x81\xcc\x3b\xd3\x0b\xac\xa7\x77\xfa\x15\x56\x53\x3b\xfd\x1d\x56\x13\x39\xfd\x57\x0c\xb3\x34\xfd\x37\xac\x34\x30\xd3\x7f\xc7\x16\x38\xe8\x7f\xda\x13\x30\xfd\x5f\x18\x40\x43\xa7\xff\x1b\xcb\xfe\x4d\x2f\x26\x6d\xcf\x01\x41\xeb\x6b\xcf\x2d\x4a\x2f\xff\x7a\x82\xce\x33\xfe\x7c\xf2\xb8\x0a\xd1\xa9\xde\x22\x27\xbb\x03\x6d\xfd\x6b\x2a\x15\xad\x46\xa8\xaf\x26\x78\xf4\xb8\x5b\x0b\x59\x2c\x2b\xa8\x0a\x03\x77\x89\xd9\x94\x49\xba\x9b\x47\x2b\x4d\xcb\xee\xbe\xa0\xd6\x87\x94\x8e\x65\xef\x32\x67\xf2\xf0\xe8\x8c\xec\x21\xd3\x08\x01\xbd\xe6\x85\x6d\xde\x41\x9c\x2a\x2d\x33\x56\x89\xca\x01\x05\x8b\x59\x65\xb8\x40\xe8\x6b\x32\xb1\xa4\x63\x5e\x2f\x06\xdc\xf7\xcd\x67\x9b\x2c\xec\xb8\x50\xb6\x80\x9c\x18\x47\x0e\x84\x39\x38\x3c\x55\xea\x9b\x1c\x41\x46\x07\xad\xa0\x3f\x3f\xaf\xbf\x26\x93\x4b\x94\xcf\xeb\x05\xa1\x99\xfc\x47\xf7\xbe\x35\xee\xab\xbd\x59\x10\x08\xc9\xda\x61\x02\x54\x59\xcc\x25\xc9\xd3\xd5\x5b\xbf\x57\x71\x66\x36\x6b\xb5\x39\xfb\x36\x17\x14\xe5\xe0\xd8\x26\xff\xcc\x84\x77\x5c\xfa\x9f\x2b\x93\x1a\x68\xf6\x21\xa5\x74\x0e\x96\x27\xaf\x14\x16\x48\x5f\x72\xce\x23\x21\x54\xe2\x6b\x2c\x46\xdc\xa0\x34\x4d\x96\xcb\x64\x48\x88\x31\xb0\xb1\xf2\x26\x9b\xe0\xaf\x50\x9a\x42\x7c\x21\xe1\x33\x9a\x89\x79\x63\x46\x3e\x15\x10\x04\x69\x23\x66\x60\xd3\x89\xd9\x7c\xa1\xf4\xfa\xf6\xaf\xd3\x4e\x4e\xa0\xf0\xc2\xf3\x48\x69\x2f\xdf\xf9\x29\x26\xfc\x13\xc0\xe4\x1f\x3d\x30\xe5\xf8\xbb\x1f\x5f\x03\x3e\xdc\xf2\xed\xbb\x37\x1f\xde\x7c\xf8\xeb\xdb\x97\xcb\x97\x7f\xf9\xf0\xf2\xf5\xfb\xef\xdf\xbc\x7e\x9f\xa6\x74\xfc\xf2\xf5\x4f\x63\x78\xf2\xad\x2b\xf2\x7e\xfc\x9d\xae\xd7\x7a\x62\x04\x3c\x06\xa3\x75\x66\x4a\xb8\x85\xc1\x0f\x26\xe9\xcf\xf4\x61\x55\x95\x1b\x76\xd3\x58\xce\xc3\xe7\x43\x2e\xf0\x27\xce\x6c\x44\x93\xca\xe7\x10\x53\xa3\x19\xf7\x20\xed\xb2\xa4\xad\xb3\x51\xd0\x72\xb5\x09\x3c\x48\x29\xed\x9e\x3d\x17\x5b\x56\x2f\x10\x6a\x5b\xac\xf4\xbc\xb4\xfe\x75\xfa\xa6\x6b\xe3\xbf\x52\xdf\xca\x5f\xa9\x57\xe5\xaf\xd2\x9f\xd3\xf8\x40\xa7\x32\xf6\xaf\x8b\x50\x89\x7c\x2c\x85\x01\x30\xb3\xe7\x60\x3d\x80\x68\xc8\x70\xdf\xc7\x54\xc6\x87\x30\xff\xab\x58\x26\x50\x13\xa2\xa1\x0d\x7c\x60\x4e\xf5\x62\x9f\x50\x87\x9e\xfb\xde\x1f\x5e\xb1\xbe\x35\x50\x40\x4e\x59\x87\xa9\x2d\x1c\x84\x44\x9c\x1d\x17\x38\x59\x2e\x39\xcd\xeb\xaa\x5c\x7e\x62\x62\xbb\x84\xea\x97\x60\xab\x2e\x97\xcb\x04\xeb\x94\x26\x34\x5c\xf2\x16\x70\xe0\x75\x92\xe5\x1f\x4b\xeb\xb7\xb1\xfe\xf1\xdd\x0f\x2f\x4d\x4c\x83\x8a\x64\xf4\xc6\xe8\x39\xe1\x6a\xfc\xe3\x7e\x31\x73\xb5\x99\xda\x7b\x61\x3e\xdf\xb2\x7a\x97\x8b\xd5\xd6\xe4\xc6\x42\xca\x3f\x76\x68\x51\x40\x07\x72\xd8\x6d\x4b\x3b\x22\x09\xa9\x7a\x99\x06\xb0\x3c\xc6\x6a\x63\xd3\x2c\xc9\xeb\xfb\x72\x95\x74\xe2\xda\xf8\xf8\x3a\x5f\x7d\xbc\x6e\x78\x49\xb9\x8d\x1e\xce\x12\x1d\xe5\x91\xa8\xbc\x85\x10\x2a\x8b\x3a\xb5\x6d\x20\xcb\x47\xe0\x37\x1a\xad\x8b\x8f\x97\x72\x5b\xc2\xac\x01\xac\x93\xae\x53\xd5\x58\x95\x26\x48\xc4\xf0\xcd\x39\x11\x1e\xab\x91\x9f\x72\x18\x9c\x95\xd1\x1d\x86\x45\xd0\xb5\x53\x19\x19\x9a\xa6\x71\xb4\x23\xa5\xc4\x76\x8c\x89\x7e\xa0\x99\x03\xda\xbd\x84\xd3\xb4\x7f\x2f\xdb\x6f\xed\x9d\x2c\xf9\x13\xf7\xcb\x6e\x0d\xf9\xf8\xa4\x5b\xaf\x63\x72\x0b\x18\xc7\x9b\x82\xdd\xde\x4a\x22\x40\x37\x94\xd3\xf2\x80\xc9\x53\xde\x7a\x4f\xf4\x68\xeb\xe4\x30\x39\x4c\x30\x7a\x2e\x6b\xb0\xba\x3d\x47\x87\xbb\x4e\xbe\x31\x30\x43\x80\x86\x27\x41\xb8\x22\x0e\xad\x49\x28\x87\x6b\xd9\x33\x04\x79\x6c\xd0\x98\xd3\x7c\x2d\x4f\xec\x87\xfc\xc6\xcd\x9f\xc3\xe2\x52\x29\xa3\x61\x37\xd2\x55\x55\xae\xf5\x0f\x85\x93\x9d\x41\x93\x22\xbf\xf9\xae\xe2\x28\x63\x08\x61\xd6\x52\x4f\xb9\x44\xea\x78\xe6\x8e\x86\x94\x63\x50\x73\x18\xbf\xf1\x2c\xcb\xc9\x83\xfe\x4e\x31\x2f\xac\x64\x81\xa8\xff\x38\xcc\x1c\xf8\x2d\xd4\x54\xa9\x5f\x0d\x6e\xaa\x37\x5c\x78\x30\x36\xf7\x90\x1c\x6e\xcc\x69\x17\x6e\xed\x6b\x56\x52\x94\xcd\xc5\xf8\x5b\xc6\xc5\xbd\x2e\xee\xe1\xa9\x8e\x01\xe9\xa6\xf3\x5c\x8c\x5f\xbc\x79\xfd\xfe\xc3\xd5\xeb\x0f\xcb\x0f\x57\xff\x81\x16\x00\xfb\xe4\xe1\xef\xf5\x46\xa3\x82\x1e\xf4\x3a\xe1\x13\xd1\xf4\x5a\xcc\xea\x0f\xbc\x11\xdb\xfb\x6e\x02\x54\x57\x55\xff\x66\x35\x90\x33\xdd\x94\x74\x76\x97\x48\x4a\x22\xfb\xfa\x67\x49\x36\x0d\xe5\xef\xbb\x8d\x13\xf3\xc5\x38\x19\xd1\x4b\xa8\x2d\x5f\xaf\xdf\x68\x5e\xc2\x60\xe7\x29\xea\x64\x15\x93\xa6\x3a\x07\x8e\x8f\x5a\xbc\x66\xeb\x1f\xcb\x4f\x4f\x6e\x4d\x19\x4c\xbe\xa4\xc1\x83\x2f\xe3\x41\xb8\x5a\x26\xf9\x5f\x68\xa0\xfc\x91\xb6\xac\x06\x88\xa9\xf2\x40\xd8\x0c\x74\x84\x4b\x4e\x7b\x5e\x8e\x7f\x7c\xfd\xc7\xd7\x6f\xfe\x0c\x2c\xeb\xdb\x97\xef\x3e\xfc\x55\x6e\x88\x45\x04\x4b\xc0\x2c\xc7\x8b\x6d\xce\xca\x0f\xf9\x4d\xfd\x5d\xc5\x01\x4e\x23\x58\x9d\xb1\x46\x36\x1f\x77\x92\x90\x46\x1c\x3f\x6b\x07\xc3\x67\xa4\x36\x3f\xb5\x97\xaa\xa6\xa6\xe2\xc7\x83\x35\x05\xe4\x24\x38\x3a\xb2\x52\x36\x66\xf5\xf7\x0a\xc6\x9b\xfd\x22\xa5\x13\xb4\xdf\xcb\x67\x6f\x0d\x87\x06\x58\x28\x50\xdc\x6f\xfe\x78\x42\x5f\x2c\x34\x84\xa9\xea\xbd\xf3\x85\x76\xa9\xd9\x2a\x0d\xab\x91\x23\xdf\x83\xb9\x79\x02\x81\xef\xfa\x7a\x3c\xc9\x19\x39\x4e\xa0\x4f\x73\x72\x17\x21\xa5\x8b\xe5\x88\x36\x9c\xc2\xa2\x93\x71\xf3\xa8\xdf\xe8\x97\xa2\xc5\x1a\xcc\x11\x1b\x8f\xea\xff\x9a\xd3\x45\x9a\x0e\xb3\x21\xdc\x15\xe1\x73\x9f\x1c\x95\x28\xf0\x3b\xab\x3c\xff\x4e\xb5\x73\x95\x9f\x48\x82\x06\x70\x7f\x78\x59\x39\xab\x20\x79\xdb\x69\xee\xe8\x07\x5d\x9c\xbe\xd4\xa1\x3c\x7a\xfd\xfe\xfa\xde\x3c\xc7\x1c\xbc\x1e\x13\xa5\xff\xbb\xfc\x7c\x8c\xa2\xfb\xb8\xc3\x4b\x84\x29\x59\xe1\xcd\x80\x6a\xdb\x33\xd9\x81\x57\xad\x32\x6d\x93\x4f\x98\x1a\x9d\x0f\xf9\xec\xf1\x03\x34\xb0\xab\x13\xea\xfb\x02\x10\x3a\xbe\xf2\x8f\xd1\xd6\x20\x95\x6c\x38\xa5\xbf\xd0\x6c\xbe\x40\x38\x0a\xce\x42\x3d\x8d\xe2\x2e\xb3\xf9\xe2\xbf\xd0\xe9\x7a\x8d\x4b\xf2\x22\x83\x40\x60\x9d\x76\xab\x22\x11\xde\x96\xcf\x78\x24\xf8\xcb\x9d\x09\x2a\x2f\x06\xcb\x9a\x1e\x49\xdf\x58\x81\x40\x03\x68\x32\x02\xf0\xee\x00\x99\x06\xe0\x36\x74\x68\x97\xbc\xa7\x3d\x17\xd3\x5b\x85\x14\xa2\xab\xfe\x8a\x90\xde\x48\x67\xb6\x15\x97\x55\x87\x13\x12\x78\x64\x53\xd4\xba\xfe\xf3\x18\xd3\xa0\x8b\x72\x4c\x83\x50\xd0\x3b\x03\x96\xe9\x92\xde\x5a\x14\xb8\x8a\x94\x97\xd5\x73\xa6\xc2\xbf\xd8\x26\xe3\xaa\x1e\xa5\x66\xbc\x82\x59\xa9\x10\xae\xb0\x53\x55\x1a\x1f\xda\xf3\x8b\x30\xb9\x9c\x17\x74\x09\x0d\xaa\x9c\x40\x25\x68\xe8\xcd\x17\x00\xb7\xa0\x56\x74\xda\x6b\x87\x05\xa9\xe6\x02\xc8\xe9\xf3\x8b\x21\x81\x5a\x85\xaa\x95\xcb\x5a\x5d\xe9\xeb\x0e\x70\x8b\x29\xe4\xb7\x7b\x17\x42\x73\x78\x95\x0f\x5d\xc2\x23\xbf\xd2\xa5\xcf\x68\xf4\x5d\xfa\xa3\x3b\xf3\xab\x45\xe8\xe9\x3f\x89\x45\x03\xfc\xce\x2b\xf3\x3b\x2f\x1a\xc0\xac\x89\x4d\x04\xfd\x7c\x92\xa6\x19\x1f\x11\x86\xb0\xec\x7d\x99\xa6\x62\x48\xc4\x2c\x76\x9e\x86\x84\xb6\xb1\xc8\x46\x25\x61\x05\x59\xfc\x3e\xf9\x29\xea\xbf\x70\x5c\x17\x03\xef\xf0\xe8\x58\x00\xa4\xf6\x00\xde\x22\x4c\x5d\x6b\x2f\xcd\xce\x38\xf4\xc1\x04\xcf\xcb\x45\x70\x5a\x3e\x7b\x3a\x12\x15\xdc\xa5\x63\x8f\xbf\x97\xb4\xf0\xce\xca\xa6\x2a\x88\xab\xab\xad\xde\xef\xaf\x3c\xc5\xb2\x09\xab\x1a\x58\xcd\x43\x61\xed\x6f\x4a\xa0\x75\xf8\xab\x3c\x2c\x5d\xda\xb0\x7c\x3d\x58\x07\xe5\xea\x7c\xc1\x4b\x42\x4a\x1f\x0c\x87\x70\x1f\xda\xc4\x42\x34\x1f\xd0\x31\xba\x4b\xd6\x91\x1d\x77\x0b\x90\xe1\x85\x3f\x93\x6f\xba\x01\xab\xb7\xf9\x2e\xeb\xd3\x83\x90\x0c\xb4\x08\x20\x26\xae\xba\xfc\x8d\x75\x92\xc3\x59\xb6\x02\x6f\x76\x3e\x7e\xf9\xea\x9b\x97\xef\x96\x57\xef\xde\x5d\xfd\x15\xf2\xcb\xad\xf4\xe9\xac\xaf\x44\x8f\x87\xd5\x70\xc6\xb6\xd7\x41\x5f\x42\xda\xea\x8e\x38\x37\xd9\xb6\xe6\xc9\x7c\x91\x2c\xc8\xfb\x2c\x1e\x19\xaf\xb2\x4b\xe2\xda\x7f\xe7\xc3\xee\xea\x28\x5c\x15\x81\x32\x51\xc2\x98\xc9\xee\xa0\xa3\x6a\x21\x5d\x12\xc0\x97\xa8\x1b\x89\xbc\x3f\x20\x46\xba\xde\x01\x4b\x34\x41\xad\x92\xb5\xdf\x94\xc5\x7d\x06\xe9\x36\xf2\xa7\xd6\xe1\xf5\xe7\xfc\xa2\x57\x1f\x08\x2c\x7d\x14\xef\xde\x41\x9c\x44\x0f\xe2\xc4\x3f\x88\x13\x49\x60\x62\xb7\x66\x78\x3d\xea\xcd\x66\xee\x48\xaf\x7b\x60\x10\xa1\x40\x66\x28\x61\x23\x8a\xb0\x55\x41\xf0\xfd\x9e\x7f\xcd\x66\x9c\xb0\xa9\xa6\x43\x84\x8d\x38\xba\xa4\xcf\xf9\x25\x2a\xe7\xa5\xae\x61\x41\x62\x33\x40\x47\x23\x17\xcc\xdd\xe2\x95\xb1\x3e\xc5\x51\x94\x97\x0e\xdd\x79\x78\x01\xe9\xca\xe4\x9c\x7f\xdf\xff\x24\x40\xe6\x32\x16\xa7\x2c\xec\x32\x29\x11\x74\xb6\x3c\xbf\x40\xd8\x52\xd0\xd2\xc5\xfc\x33\xc2\x2f\xd9\xd7\x64\x72\xc9\x14\x08\x4c\xac\xff\x0c\xf9\xe6\x3c\x66\xaf\x11\xd9\xb7\x7c\xbd\x06\x52\x63\x84\xdb\x4e\x07\xbd\x6d\xd1\x2d\x69\x05\x2a\x95\x5a\x4f\x73\x5e\xa7\xd5\x15\x29\xdc\xa9\x6e\x9b\xd7\xc1\xeb\xfa\xe0\x76\xdd\xe6\xf5\x0f\xac\x16\xb4\xa4\xbc\x36\x92\xc0\xff\x51\x86\xe1\x95\x96\xc3\x41\x86\x3e\x5a\x52\xc1\xf0\x24\x2a\x2f\x19\x3c\x7a\xa1\xc4\xe0\x68\xc2\xbf\xde\x15\x10\xff\xc2\x0d\x49\xa7\x10\xf4\x8b\xc5\x72\x01\x1e\xad\xd7\x7e\xd0\xab\x56\xb3\x76\x07\x82\xd2\xbe\x90\x0b\x05\x31\x99\xfb\x7b\x13\x97\x64\x72\x59\x3e\xe7\x97\xa5\x71\x2f\xd0\xa7\xcf\x6c\xb7\xac\x94\xa2\x95\x36\x2c\x32\x5c\x2a\x60\xe8\x36\xa0\x82\x90\xf6\x12\x7a\xfb\x46\x52\x0f\xfd\x77\x6c\xa3\x28\xba\xd8\x63\x5b\xc3\x09\xaa\x35\x2f\x29\x77\x0d\xcc\xc5\x6d\xbe\x8b\x68\x28\xfe\xb1\x39\x78\x91\x85\x71\xd2\xfd\x3e\x29\x9d\xa9\x61\x74\xe6\x6c\x41\xec\x3c\xa8\x77\x2d\x64\xf8\x81\xee\x7d\x73\x0f\x43\xdf\xb0\x42\x44\xd3\x7e\xfe\xbf\xe9\x6b\xa7\x7f\x69\xca\x0d\xee\x9c\xe9\x2a\xa7\x70\x4b\xfc\xaa\x1d\x0c\xbb\x06\x33\xd0\x3f\xd5\x43\x97\x34\xc6\x13\xdb\xd5\x4e\x87\x4f\xbe\xb9\x3f\x94\x35\x47\x57\x79\x7b\x88\x2f\x41\x6e\x60\x87\x2b\x51\xef\x1f\xa9\x64\xc3\xca\xa8\x28\x78\x6f\x0e\xe7\x3f\x30\x4b\xb6\x81\x68\x1f\x75\x0b\xc7\xbb\x47\xef\x28\xbf\x8f\xf5\xef\xfa\xd7\xea\x1f\xab\x5f\x86\x6d\x74\x9b\x38\xde\xc1\xbc\x8c\x76\xef\xe6\xd7\xeb\xde\x55\x19\xeb\xdc\xcd\x29\x9d\xe3\x74\xdd\x04\x10\xa8\x9e\x8a\xf6\xf8\xe9\x02\xdc\x1a\x4e\x68\xc6\xb1\xb0\x04\xd0\xa5\xf8\x92\xac\xc3\x5d\xf5\xf1\x40\x76\xa6\xe3\xda\x36\xf1\xf5\xc5\x4c\xf8\xda\x36\xf1\x48\x6e\xa6\x47\x49\x81\xf0\x02\x42\xe0\xf0\x83\xf2\x55\xf0\xfb\xef\xa1\x93\xa0\xbb\xc5\x25\x48\xff\x15\x24\x95\xad\x94\x9a\xe4\xc0\xb9\x89\x33\xcd\x67\x54\x1d\x5d\xd0\x4b\xad\x62\x19\x5a\xa3\xc4\x80\x06\x59\x29\x86\x44\xd7\xc2\xca\x55\xd1\xac\x7b\xb1\xfe\x9e\x58\xed\xb3\x5f\x13\xf8\xa6\xae\x78\xe7\xb4\x77\x78\xd4\x60\x96\xf4\x20\x33\x04\xdf\x79\x12\x49\xa8\x71\x98\x5c\x32\x17\xe5\x6d\xe3\x78\x73\x42\xe7\x6c\x81\x6b\xe2\x8b\x2d\x39\xc2\x4d\xa0\xf9\xc8\x11\x2e\xe4\x03\x1b\x86\x83\xb2\x1a\x02\xd4\x37\x99\xf3\x32\x6c\xad\x73\x1c\x0c\xa2\x29\xd9\xcf\x91\xb9\xdb\x99\xa4\x62\x2b\xa3\x05\x8b\xcc\xe0\x4e\x4f\x89\x4e\xaf\x2c\xb6\x55\xd3\x37\xf9\xc3\xe0\xcd\xf4\x7a\xae\x5c\x20\x18\x69\xf1\x95\x10\x3a\x8b\xec\x1e\x01\xd0\x9b\x07\xe4\x75\xda\xc6\x88\xbe\x90\x7d\x41\x08\x7f\xec\x4a\x72\x57\xd8\x46\x68\xe0\x07\x40\xcc\x9a\xf6\x16\xce\x67\xf9\xcd\x2c\x49\x0e\x77\x26\x5f\x4c\xb3\x8e\x3c\x45\xa5\x08\xaf\x67\x89\x95\x35\xe5\xe2\xea\x80\x20\xf6\xd2\x01\xe1\x6b\x30\x23\xa3\x4e\x8c\x97\xff\xe4\xca\xb7\x58\x1e\x20\x25\x58\xc5\x26\xe2\x65\x4f\x96\x82\xe5\x70\x1f\xd5\x07\x81\x9c\xcc\x48\xfc\x6f\x27\xd8\xe2\x2d\xed\xaa\x5d\xb7\xd9\xd8\x3c\xb1\x4d\x36\xf1\xa5\x00\xb8\x8d\xad\x16\xa1\x2f\xf2\x9c\x5f\x84\xc4\xc3\xcc\x44\x46\xcf\x2f\xf0\x85\xca\x57\xb8\x65\x1b\xd1\x6f\x5b\xb7\xe4\x35\xde\x6b\x93\x46\xdb\x9c\x1c\x68\x71\x82\x30\x6d\x71\x53\x46\xdb\xeb\x4d\xf1\x04\x26\x36\x28\xfd\xf8\xdc\x4e\xfc\x19\xe5\xf2\xf2\xac\xe9\xff\xc7\xdd\xff\x77\xb7\x8d\x23\xf9\xc2\xf8\xff\x7a\x15\x32\xef\xac\x86\x18\xc1\x8c\xdd\xbd\xf7\x7b\xef\x2a\xcd\xf6\x75\x1c\xa7\xdb\xdb\x71\x9c\xb5\x9d\xee\xed\xaf\x5a\xab\xa5\x25\xc8\xc6\x84\x22\x35\x20\x64\xc7\x63\xf1\xbd\x3f\x07\x85\x1f\x04\x48\x50\xa2\x9d\xec\xdc\x7d\x9e\x73\x72\x62\x8a\x04\x0a\xbf\x81\xaa\x42\xd5\xa7\x1a\x79\xbb\x74\xab\xb5\x5a\x6a\xbb\x89\xa2\x1a\xd6\x1b\x59\x4d\x53\x33\xeb\x0a\xe2\xad\xb8\x2e\xab\xd6\xab\x40\x07\x56\x4a\xe8\x44\xa5\x75\x17\x48\x5d\xc9\x60\x37\x57\x5e\x6e\x36\xfa\xb5\xba\x05\xb2\xe8\x6d\x36\x80\x75\x0d\x56\x91\x4f\xbe\x51\x64\x48\xc6\xd1\x75\xc7\x90\xd5\xc4\x00\xbb\x50\xb7\x95\x40\xf3\x86\xdc\xd2\xcc\xbd\xec\x2c\x50\x58\x49\xbd\x4d\xfc\x6d\xb6\xbf\x8f\xac\x22\x25\x65\x80\x7c\x40\xb6\x72\x8f\x64\xf3\x26\x59\xd5\x11\x70\xa7\xdc\x36\xbb\xea\xdb\xa3\x0a\x8b\x52\x2d\xe0\x0a\x01\xcd\xd0\x29\x1a\x97\xcb\x8e\x9e\x69\x5b\x4b\xb1\x5f\x61\x6f\x2c\xb2\x4d\x19\x21\x98\xe3\xec\x6a\x1b\xdc\x79\x39\x17\x1f\x9f\x61\xaa\x5c\xd7\xb7\xdf\xcf\xb8\xa8\xb6\x5f\x3d\xb2\x6d\xfd\x31\x26\x13\x31\x92\x30\xa7\x46\x3e\xc5\xc6\x0b\xd5\xb1\x77\x1e\x75\xec\x59\x66\x5d\xd4\x38\x12\xb0\xd5\x42\xfb\x2e\xe7\x1a\x1a\x78\x82\xcf\xe3\x71\x20\x4b\x0f\x26\xbd\x6b\x09\x8d\x85\xbc\x9d\x5b\x33\xfb\x83\x5b\xc9\x73\x7d\x05\x52\x8a\x21\x71\xe8\xc7\xe1\x22\xbe\x46\xfa\x3c\x55\xfc\xe4\x02\x9f\x8b\x84\xc7\xf1\x09\x4e\x5a\x6c\x44\x21\xfb\x51\x78\xad\x72\xd4\x4a\x55\xb9\xbd\xb7\x4c\x9b\xcd\x78\x52\xa2\xd1\xb6\x04\x21\x89\xc7\x13\x84\x8f\x2b\x93\xec\x23\x32\xd2\x45\x11\x24\xed\xec\x2f\xe3\x63\xeb\x0a\xf4\xf2\x19\x57\xa0\x36\x70\x43\x97\x7b\xd0\x49\xcd\x68\x6d\xf7\xd5\x35\x6b\x5c\x5d\xab\x0b\x4d\x09\x4c\x62\xdf\xdd\xb2\x67\x55\xbc\x86\xa5\xe1\xa9\xfd\x36\xab\x4b\x5f\x73\xba\xde\xc5\x3f\x4d\xa7\x55\xf1\x53\x29\xa8\x03\xba\xd8\x59\x26\xd6\x17\xcd\xb3\x16\x9d\x71\xe4\x64\x8c\xdc\x3c\x21\x00\xba\xe7\x9f\xd7\xab\x2d\x5a\x65\x97\x80\x82\xb4\x95\xfc\xca\xbc\x69\x1f\x64\x1d\x6f\x4e\xc6\x1e\x81\x50\x19\x1c\x50\x69\x1c\xd4\x41\x62\xc5\xea\x94\xfa\x18\x65\x3c\x88\x42\x13\x23\x13\x13\x1c\x2c\x68\x96\xa4\xf4\xef\xe4\xad\x89\x9b\xe9\x18\x1d\x89\xb6\x54\x71\xa6\x3d\x26\x39\x2f\x94\x06\x9f\x5c\xde\xd3\xed\x0d\x2b\xb0\xb5\x8a\x28\x42\x63\xe6\xce\xbd\xcc\x9e\x6e\xf4\x59\xd3\x4d\x7b\x88\xfe\xe3\x56\xc9\xea\xf1\xeb\x96\x88\x7d\x5f\xff\x0f\xaa\xf5\x8b\xab\xaa\x9d\x21\xff\x51\xbd\x6b\x2f\x51\x8f\x96\x76\x3e\xd7\x7a\x65\xcf\xc9\x84\xf3\x8c\xbc\x20\xb7\x90\x5e\x15\x01\x85\x53\xff\x5f\x6b\xa2\xf3\x5a\xe9\x53\xb3\x39\xb8\x9a\x56\xe6\x52\xa8\xc4\xf9\x62\xb1\xad\x05\x92\xe5\xda\xd6\x05\x77\x89\x8f\x07\x6f\x53\xca\x93\x9a\x91\xce\x73\xa6\x86\xcf\xfa\xa4\xbb\xc7\x65\x37\x73\x9b\xaf\x39\x0c\x6a\x3b\x8c\x41\x54\x79\xa9\x51\x92\x6d\x9f\xf3\x7f\xcd\xba\xcc\xb9\xf6\xf4\x98\xa2\x18\xf5\xc3\x2d\xe1\x96\x0d\x9a\x75\x90\x6c\x89\x70\xcf\xdc\x08\xf7\xf2\x12\x82\xc0\x25\x04\x1b\x67\xf6\x24\xce\xaa\x58\xfe\x91\x53\x92\xab\xec\x93\x1e\x1b\xda\x7f\x83\x41\xe0\x5b\xf7\x6e\x96\x35\xef\x18\xac\xcb\xa9\xc2\xdf\x08\x52\xcf\x54\x25\xb2\x7a\xc0\xc7\xef\x7b\xc1\xd4\xdb\x45\x03\xb9\xa4\x9a\xdc\x7e\x0b\x99\x6d\x22\x8f\xcf\xaa\xb4\xad\x45\x5b\x2c\x50\x5d\xd1\x47\x5e\xd8\xed\xd8\xf2\x9a\xd7\x7e\xd5\x6e\xe1\x9a\xdb\xee\xde\x79\xb6\xd1\xba\x4b\x0a\xfd\xb9\xce\x5a\xec\xd8\x84\x86\x81\xb9\x3f\x84\x89\xfb\x1b\xe5\x77\xca\x63\xa3\x7d\xae\xb8\xe9\x9c\x69\x43\xb3\x19\x83\x98\xd1\xad\xa6\xc7\x2f\xb6\x18\x73\xec\x57\xec\xe9\x1a\x42\xd4\xdd\x77\x69\x9e\xf0\xb0\xb1\x1c\xd1\x66\x73\x80\x86\x0c\x78\xc1\xff\x0b\x55\x6b\xd4\x47\x54\x67\x5f\x54\x87\xe7\xb7\xb7\x29\xf1\xd6\xa5\x85\xd8\x5e\xb3\x71\x25\x9e\x25\xb3\x3b\xb2\x65\xd0\x6f\x55\xb4\xc5\x39\xc4\xfa\x03\x67\x02\xef\xf1\xf3\x9c\xed\xb8\x06\x1f\xf6\xac\x1d\x59\x7a\xd3\x7c\x9b\x1d\x59\x3a\x4e\x29\xa7\x86\xe2\x23\xc9\x20\xf0\x93\xf6\x34\xd0\xb6\xfb\xb4\xb8\x22\x9c\xa7\x82\x93\x6a\xde\xc2\xd5\xad\x6b\xab\xc4\x35\x23\x10\xf3\xc1\x43\xff\x12\xee\xd2\x00\x7e\x8d\x16\xef\xd6\xe9\x82\xa6\xfe\xe2\x9a\xa5\x99\xac\xfa\xfa\xde\xf9\x5a\xd1\x6a\xd4\x46\x67\x1c\xed\x1d\x62\x2b\xa1\xf8\xa9\x86\xa7\x5e\xd1\xba\xdd\x4e\x05\x88\xca\x1c\x40\x54\x83\x96\xf1\xe7\xa2\xaf\x48\xf5\x97\xeb\x02\x50\x50\x0b\xc2\x83\x2d\x27\x49\x7f\xdb\xf1\x62\x9f\x14\x04\x3f\xd5\x2a\xed\xb4\xa8\x44\x98\x45\xfc\x8e\x64\x1e\x5b\x29\xf0\x6e\x52\x22\x16\x99\x6f\x36\xd6\x4f\x9a\xdd\xaa\x5e\x6c\x16\xa7\x3d\x60\x98\xdb\x5b\x07\xf2\x22\xd8\x2e\x46\x05\xb3\x78\x51\x29\x6a\x46\x32\xa7\x39\xaa\x8c\xe0\x14\x1c\xfb\xfb\x76\x17\x07\xa8\xb4\xdc\x1b\xb0\x68\xf2\x88\x86\x81\xf8\x1b\x20\x0c\x11\x38\xc4\x6f\x78\x08\x10\x06\x09\x33\x7d\x14\xaf\xd4\xa3\x98\x18\x8e\xa3\x7f\x73\x28\x2c\x0f\x3e\x67\x7a\xa9\xb1\xad\xc2\x91\xb1\xca\x14\x9d\x39\xb6\xe4\x2f\xdb\x25\xea\x78\xa0\xcf\x02\x0e\xf8\x86\xdc\xe7\xd3\x74\x6a\xaa\xa2\x14\x13\x4c\x06\x10\xb2\x03\x7c\x6d\xd5\x2f\x54\xf9\x23\x95\x55\xe9\x17\xe4\x07\xc2\xc4\x88\xe8\xe7\x00\xe1\x75\x66\x7f\xa8\x7e\x05\x08\xd7\xe2\x8a\x89\xef\x77\x49\x11\x20\x43\x8a\xcc\x2f\x56\xfa\xcb\x2d\xe1\xf2\x87\xf5\x5d\xbe\x28\xc4\xe7\x5c\x3e\x7a\x32\x17\x4e\xee\xa2\x99\xfd\x5d\xce\xae\x1f\x57\xc4\xa2\xa2\xde\xf8\x88\x59\x89\x2b\x9a\x55\x7a\x0a\xda\x1a\xf1\x95\x6a\xbd\x4d\xe7\x69\x69\xb0\x28\x78\xdc\xe8\x6b\x64\xb9\x46\x7c\x83\xf9\xd8\x02\xb0\xb9\xfd\xf4\x7a\x91\x5f\xfe\x33\xb0\x2a\xac\x89\xdb\x50\xcc\x3c\xc9\x1a\xcb\x29\x2b\xab\x6d\x3f\x9f\xc8\x88\x56\x9e\x57\x4a\xc1\x5f\x8b\xa3\x11\x38\x69\x9c\xd3\xc9\x5c\x57\x39\x71\x35\xdc\xf4\xd2\xf0\xb6\x01\x49\xac\xb5\xe0\xb5\xcc\xa4\xe6\xef\x18\x83\xcd\x6d\xe8\xa4\xd3\x31\xb9\x94\xca\x4e\xf0\x33\x38\x2b\xab\x0b\x75\xad\x12\x38\x6e\xa8\x0f\xbf\xca\xfc\xf2\xa9\xc4\x99\x82\xf1\xcf\x33\x30\xe1\x96\xfd\x0c\x81\x01\x9d\x36\x03\x6e\x7b\x9c\xc1\x6e\xef\xe9\x19\x31\xf5\x63\xba\xd9\xd4\xd9\x48\xbb\x91\xc4\x72\xd8\x01\x14\xf8\x27\x5f\x2f\x66\x8e\x63\x98\xca\x98\x35\xbb\x90\x0e\x06\x21\xdd\xd6\x85\x19\xf8\x89\x1a\x2b\x4e\x70\x6c\x9f\xca\x0a\x54\x0e\xbe\xea\x45\xcf\xba\xb0\x2c\x95\x4f\xa7\x29\x29\x1f\x0c\xc2\x7c\xfb\x8c\x50\xa8\x79\xea\x92\x08\x61\x3a\x18\xa8\x76\x80\x2b\x8b\xf4\x69\x2b\x48\x36\x47\x49\x1c\x16\x31\x45\xb6\xb3\x52\x81\xc7\x99\x91\x4e\x73\x1d\x28\x2f\x89\xc3\x75\x4c\x91\xf8\x24\x93\xad\xf1\xd8\x49\x45\x17\xe1\xde\xe1\x5e\x05\xdd\xb4\x77\xa0\x83\x70\x1c\xba\xec\x6c\x27\x3d\xa6\x0f\x45\xd9\xde\x0e\x20\xf3\xfe\x4d\x72\x43\xfc\xce\x4e\xed\x6e\x50\x5f\x8d\x7b\x53\x43\x9a\x7e\x86\x1b\xb3\x77\x6f\x49\x70\x21\x23\xef\x2a\xe9\x37\x98\x8a\x02\xb2\x5b\x32\x57\x76\x97\xa0\x79\xa8\x8c\x3a\x03\x3c\x37\x3e\x9c\xfe\xb4\x95\x03\x68\x89\xd7\xae\xa5\x8f\xde\xf6\x2d\x45\x3f\xf1\x7b\xdc\xca\xa9\x53\x02\x67\x42\xb3\x3b\xc2\x28\x2f\xde\xe7\x79\x41\xa4\xeb\x8c\x09\xad\x65\x2e\x8e\x4c\xe8\xcd\x88\x66\xd4\x31\xb3\x71\xc2\xd2\x64\x94\xb7\x78\x32\xcb\x43\x46\xd9\xc8\x83\x0b\x32\xd8\x2c\xc7\x07\xee\x97\x58\xfa\x4f\xc2\x2b\xb9\xb9\x40\xda\x78\xef\xc0\x79\x69\xb2\xd5\x7a\xc8\xce\xae\x2c\x8a\xeb\xfd\x27\xe4\xf5\x7b\x79\x29\x40\x23\xcb\x95\xb9\x19\xd4\xbb\x32\x23\xde\x4a\x43\xdf\x63\xea\x2a\x78\xe5\x41\x66\x5d\x64\x37\x16\xb7\x5b\x42\x80\x40\x95\x63\xc2\x46\x34\xe2\xfd\xdb\x97\xed\x2a\x8f\xf1\xc9\xa1\xb5\x0f\x6e\xe6\x0c\x2e\xc0\x99\xd7\x5b\xda\x5c\xdf\xcb\x84\x76\xcb\xea\xd6\x3c\x1a\x43\xc9\x1e\xb8\xc1\x20\x74\x07\x72\x3c\x41\x18\x4c\xa6\x5a\x46\x7e\x30\x20\x3f\xb6\x7d\xd3\x17\x33\x3b\x7b\x4a\x3a\x05\x57\x01\x30\x1d\x7a\xea\x74\xb2\xa9\x60\x7d\x59\x6b\x6c\xfb\x9b\x85\xbf\xa6\x3f\x64\xa0\xc6\x76\xbe\x8f\xe9\xc4\x35\x47\xd6\x3d\x4f\xd5\x16\xea\x2d\xfa\xa0\xd7\x36\xef\xf7\x0f\x4b\x87\xd5\xd5\xc5\x90\x49\x89\xe9\x98\x45\xc6\xcd\xfa\xed\xd9\xdb\xe9\xc9\xcf\xc7\x1f\x7e\x3a\x75\xbd\xad\x1b\x9d\x61\x6c\x94\xa2\xa9\x44\x32\xf0\xcd\xdc\x10\x8d\xcc\x90\x5b\x96\x14\x53\x9a\xdd\x27\x29\x05\xfc\x03\x18\xfa\x2d\x24\x9a\xa6\x6e\xbe\xf9\x70\x74\x30\xf2\xf5\x08\xee\x30\xa8\x38\xd3\x98\x0e\xf5\x41\x1b\xe9\xfe\xec\xb0\x34\xe5\x2e\xe0\x37\x9d\x07\x83\x98\x4c\x6f\x4a\x76\xdb\x9b\xb9\xcc\x7e\xeb\x66\xea\xb2\xbb\xec\x48\xd4\xec\xc8\xdd\xf3\x9d\x0c\x06\x7b\x8e\x84\x3c\x18\xc8\xfd\xa4\xe9\x3f\x21\x63\x8b\x61\xb3\xf7\xd6\xb7\x4a\xb9\xc9\xec\xee\xca\xe6\xc6\x58\xa3\x04\xd7\xb7\xac\xdd\xeb\xa2\x91\x41\x57\x4c\xf6\xd1\xd6\xf3\xd0\x2e\xbc\x35\xb9\xd7\xd9\x81\x4b\x70\xa2\x6d\xb3\x40\x26\x51\xf6\xac\xbc\x97\x83\x03\x4c\x3e\xac\x0d\x43\xb3\xfa\x66\x3e\x0e\xb3\x7d\x8a\x5e\x87\xe0\x32\xd9\xb2\xd0\x95\x25\x4f\xf3\xc3\x8f\x39\xaa\xef\x99\xd6\xf6\x90\xa3\x2d\x87\xa0\x7f\x7a\xca\xd6\x40\x27\x55\x33\xba\x39\x78\xed\x47\xb0\x5b\x54\x29\xaf\xdc\xa5\x48\x04\x78\xc8\x82\x37\x18\x3f\x7d\x26\x8f\x23\xdd\x01\x75\xec\x52\xed\x87\x6f\x93\xea\x3e\xb7\x9d\x03\x9e\x1c\x39\xbc\x7c\xb5\x03\xf8\x2a\x5b\xdb\x4b\xe5\xb7\xba\xb6\x4c\x07\x3f\x73\x3c\xa2\xf6\x89\x86\xad\xcc\xd0\x53\x06\x13\x80\x5b\x37\x42\xfb\x19\x5c\x09\x69\x86\xa8\xf5\xf0\xec\x51\xbd\x0e\x8d\xbb\x26\x15\xbb\x85\xb6\xba\x73\x37\x19\x54\x96\x25\x78\x71\x56\xf0\x7e\x0e\x04\x04\x5e\x57\xd1\x1d\x6d\xb3\x2a\xfc\x54\xeb\x34\x29\x69\x26\x29\x4d\x0a\x0b\x2b\x05\xe1\x29\x23\xba\xb4\x51\xd2\x0d\x38\xcc\x17\x71\xe4\x39\x2c\xb9\xb1\x7d\xe8\x12\xee\x6e\x7b\x28\xc6\x1a\x94\xc1\x2e\xc3\x99\xaf\x90\x10\x76\xc4\x4c\xd9\xc6\xfc\x57\x71\x32\x1a\x62\x40\x03\x48\xdc\x39\xb7\xc9\xf8\x7e\xa2\xc2\xab\x79\xe4\x85\x45\xbc\x56\xba\x88\x8a\xab\x96\x73\x01\xdf\xc1\xbc\xa4\xd1\xf4\x37\x92\x7c\xbe\x22\x1c\xcf\xe1\x85\xf8\x75\x9e\xac\xf0\xca\xf9\xb5\xd4\x50\x5f\xf7\xd2\x14\xbc\x78\x5c\xde\xe4\x29\x0a\x83\x77\x97\xc7\xe7\xa7\xbf\x5d\x5c\xfe\x32\x3d\x79\x7f\x7c\x75\x15\x58\xda\xa2\x47\xdb\x13\x21\x3c\xc0\x85\xc1\x54\x12\x6b\xc4\x08\xf8\x36\xbf\x45\x94\x8c\x48\xb2\x84\xdb\x00\x20\x38\x89\x49\x54\x47\x05\xc1\x69\x6c\x88\x64\x83\x41\x66\xb4\x07\x26\x5e\x9b\x10\x30\x07\x83\xa4\xfa\xb0\x88\xed\x98\x93\x1c\xe1\xbb\xf8\xe0\xf5\xdd\x0f\x0b\x6d\x1a\x7f\xa7\x4d\xe3\xe7\xf1\x62\x7c\x37\xc1\xab\x98\x8f\xe7\x13\xbc\x14\xd5\x5f\x47\x73\x52\xcc\x18\x5d\xf1\x9c\xbd\xcb\x59\x85\xd4\x42\xf0\x1c\x33\x84\xef\xab\x42\x97\x20\xdf\xde\x4b\x52\x8f\x31\x19\xcf\x27\xbd\x54\xd4\x50\x03\x81\xce\xd1\x8f\xfb\x87\x83\x41\xb8\x8a\x1f\x8f\xa0\x3f\x97\xc9\x67\x6d\x2c\xf8\x68\xc0\xfa\x56\x68\x54\xff\xb8\x42\x08\xcf\x44\x93\x9a\x94\x9c\x98\x54\x4f\x25\x7e\xc4\x2b\x84\xca\xfb\xa3\x25\x80\x28\x89\x4a\xae\xd0\xa8\x42\x66\xa8\x30\x54\x3d\x60\x37\x9b\xcd\x1c\x02\x94\x1d\x89\xaa\xc7\xab\x91\x2f\x4d\x28\x08\x96\x52\x48\x13\x5d\xc9\xa2\x75\x06\x7e\xe2\x36\xf4\x0d\x86\x8e\x5b\xd0\x8c\x16\x77\x80\xe0\x53\xa0\x90\xa9\xb7\x96\xf5\x06\xc1\x81\x20\x13\xe8\x58\xa1\xee\x1f\x26\xfd\xa8\x6f\xdb\x82\xa1\x6a\xf6\x7e\x0e\x21\xd9\xa5\x85\x71\x05\x99\x8c\x7a\xd5\x54\x1b\x0c\xc2\x79\x34\x27\x29\xe1\xa4\x99\x0e\xb3\xe8\xdd\xf1\xc9\xf5\xc5\xe5\xef\xd3\x77\x17\x97\xd0\x6b\xb0\x2d\x73\x1d\x47\xd8\xc6\x61\x86\xe5\xa4\x4c\x98\xe5\x09\xf0\xda\x9a\xe2\x19\x8a\x1a\x5d\x51\x12\xb1\x6b\x53\xfe\x4e\x5a\x72\x39\x8b\x78\x5e\x95\xa6\xcd\x1e\xd3\x98\x34\xc5\xe5\x54\x2d\xde\xb8\x9b\x31\x02\x77\x8d\x11\x54\xb4\xbf\xd7\x4c\x08\x23\x63\x66\x1b\x23\xb0\x49\x75\xf3\xb9\x96\x22\x37\x6c\x1b\xda\xab\x5a\x5f\x50\xa7\x0d\x79\x5d\xbc\x9b\x37\x45\x5e\x73\x48\x17\xd1\x8a\x90\xcf\xe7\x2e\x46\x12\xf0\x9c\x57\xf9\x9a\xcd\x48\x75\x19\x13\x5a\x80\xbc\x05\xe1\xcd\xcf\x62\xda\x24\xb6\xd1\x9e\x81\x0f\xe4\xc6\x5d\xc1\x92\xc0\x9b\xe9\x8d\x91\x5f\x95\x7e\xaa\x3f\xcf\x55\xae\xca\x3c\x20\x6d\x13\xe7\xc5\xa7\x46\x3e\x77\x53\xae\x37\x8f\xcc\x43\xb4\xd9\x84\xd0\x1f\x72\xfe\x59\x3d\x82\x9b\xed\x15\xe9\x91\x28\x87\xe7\x57\xa0\x63\x6c\xf6\xad\x07\x64\x85\x4b\x23\x7e\x99\xe3\xf4\x0b\x27\x59\x41\xf3\xec\x28\x18\x05\x43\xff\x27\x21\xbe\x05\x1a\x61\xe1\x87\x60\x18\xc2\x7e\xa3\x82\xa6\xaa\xda\x6d\x36\xee\xba\xd0\x6b\x4c\x1b\x95\xdb\xab\x42\x17\x10\x22\x04\x61\x2b\x25\xb9\x35\x9d\x9b\xfb\x6a\x34\x24\xc3\xe0\xc7\x40\x1c\x57\x44\xd4\x62\xde\x6c\x98\x57\x07\xc5\xba\xea\xa0\xac\xbb\xca\x9a\x26\x8a\x89\xa1\x65\x4a\x43\x6a\xa0\x9e\xb5\xb5\x71\x54\xe1\x73\x89\x89\x6f\xeb\x9a\x20\x7c\xab\x64\x5c\xbd\x81\x1d\x65\x60\x64\x8d\x1a\x35\xbe\x9f\xa8\x08\xc6\x78\x6d\x6d\x49\xd6\x36\xb4\x3e\x2a\xe2\xb5\x34\x90\x1d\x99\x97\x04\xb0\xa2\x35\x12\x99\x09\x94\x69\xa9\x72\x0b\x48\xb1\x44\xca\xc6\x28\x09\x0b\x85\xeb\xac\x7e\xf7\x8c\xcb\x25\xc3\x16\x9a\x21\xf1\x5b\x2e\xe9\xb1\xf3\x9d\xb6\xea\x0e\xa7\x71\xe0\xb2\xd8\xae\x2e\xa9\xce\xd5\x2c\xb6\xf7\x58\x5e\x7d\x00\xac\xe7\x22\x3e\x78\x5d\xfc\x50\xdf\x9d\x5e\x17\xc3\xa1\x39\xfa\xd7\x71\xf1\xc3\xc1\x66\x53\x4f\xf3\x43\x5c\x68\xc4\x9a\x6a\xaf\x2a\x26\x38\x75\xce\x71\x88\xd0\x2a\x0e\x77\x1d\x6b\xf5\xf5\xec\x87\xc5\xeb\x99\x3e\xcb\xef\xe2\x74\x3c\x9b\xe0\x79\xbc\x1e\xdf\x4d\x14\x2c\x37\x31\x07\xe8\x9d\x38\x40\x35\xfe\x7c\x22\x52\xcc\xe3\x55\xe3\x50\x5e\x99\x43\x79\xde\x3c\x94\xe7\xa8\xa4\x8b\x30\x13\x0d\xf7\x50\x5d\x6a\xaa\xf5\x03\x7a\x89\xe7\xa8\x14\xdf\xe2\x79\x85\x4f\xed\x9f\xdb\x70\xef\x4c\x3c\x9b\xbf\x2d\xa7\x88\xdd\xea\x52\xf2\xf9\x08\x2f\x2c\x42\x5b\xa6\xb6\xb2\xce\xb2\xf2\x36\xd7\x23\x90\xa8\x8e\xa2\x3b\xc0\x5e\x22\x42\xda\xbc\xd3\x67\x29\x41\x78\x25\x21\x99\xc4\x4c\x1f\x0c\x56\xd5\x79\xb6\xae\x99\x10\x36\xeb\x83\x10\xaa\x1a\x57\x63\x70\x2d\x95\xa7\xe7\x58\xf2\x34\x44\x7a\x12\xd4\x35\x8c\x3e\xb6\xa7\x02\xb2\x11\x93\xf0\x35\x79\x2d\x91\x59\x95\xe8\x5d\xc1\xd1\x40\x64\xeb\xf5\x8a\x30\xc0\xe5\xaf\xae\x29\x4c\x61\x67\x0a\x80\xd5\xeb\xe4\x60\xc3\xb3\xea\x3a\x0a\x1e\xc1\xe2\x20\x3d\x4e\xeb\x55\x97\x87\x62\xb9\x6f\xe3\x3e\xb9\x75\x45\xc7\xa2\xa9\xa0\xbd\xd9\x3c\x41\x20\x6c\x92\xcc\xee\x4e\xd4\xb5\xe1\x96\xc2\x5e\x68\x2b\x05\x7b\x9e\x5d\x51\x65\x8d\xfc\x54\xda\x9c\x90\x3b\x79\x8c\x2b\xcb\x5b\xd3\x98\xc2\x71\xf6\x87\x31\xa0\x16\x0e\x8f\x8e\x38\x4b\x75\xd3\x58\xcf\x02\x03\xc8\x51\x59\xc2\xe4\x81\x12\x76\x4e\x5d\xc1\x79\xe8\xe9\x8b\x9e\xee\x00\x39\x8c\x38\x6e\x68\xd5\x40\xf7\x60\x23\xd3\x63\xe0\xcc\x6e\xcf\x1c\xae\x7c\x56\xcc\xb5\xa7\x47\xdf\x41\xb4\xbe\xc3\x52\xb8\x35\x94\x1e\x66\xc2\x37\x38\x27\x1f\x53\xd1\xd4\x4a\x94\x25\xae\x15\x02\xc8\xdb\x2f\x2e\x45\x32\xaf\x9e\x62\x26\xba\x35\x6e\x57\x34\x8a\x92\x43\xb1\xb2\x4e\xc2\xfa\x75\xa8\x38\xfb\x42\x12\xd7\xb6\x0a\x84\xe4\x19\x79\x52\x31\x18\x30\x48\x78\x65\x73\xcb\xe2\x78\xd6\x2d\xae\x46\xaf\xa5\x12\xea\xd4\x90\xe6\xb6\xb2\xce\x17\x0b\xb7\x52\x64\x2f\x8e\x9b\xb0\xf7\x47\x44\x9d\xd4\xa0\x69\x21\x65\x88\x7a\xb7\x15\x6f\xb6\x8e\xa0\xd0\x6b\xf5\x1b\x4b\x11\x59\x73\x51\xb7\xca\x62\x28\xb2\x42\x94\x21\x7c\x1b\xd1\x42\x6e\x76\x7b\x07\xf0\xe3\x9c\xf0\xbb\x7c\x1e\xef\x1d\xc2\x7c\xbc\x89\x6f\x2d\x15\xce\xcd\x33\x54\x2e\x56\xf0\xd9\x6f\x73\x07\x5a\xd3\x9f\x74\xba\x1d\xed\x80\xec\xee\xd5\x57\xe4\x7e\xee\x8f\x7e\xcd\x0d\x24\xd5\x37\x90\x62\x17\x69\x88\x54\x79\x43\xa2\xd1\xfa\x6f\x13\x56\x0f\x69\xb7\xf5\x7c\x0b\x3b\x5e\xd7\xe5\x89\x61\x50\xc6\x80\xce\xfb\x65\x2e\xa4\x86\x8f\x10\x3e\xbd\x32\xd9\x22\x52\x38\x60\x00\xa4\x61\x0a\x06\xdb\x67\xb3\x4a\x42\x62\xd8\x43\x8b\x3d\x47\x80\x1f\x25\x3f\x38\x8c\x36\xd6\xd0\xb0\x55\x62\xb9\x5c\xa0\x21\xa2\x7a\x30\xfd\x48\xd1\x68\xfb\x8a\xe5\x33\x52\x14\xbe\xf6\x7b\x24\x3d\x4b\x59\x5f\xcf\x81\xed\xcb\x5c\x95\x55\x6d\xde\xca\xc3\xbd\xac\xc0\xd0\x6c\x95\x65\x8e\x73\xfb\x1a\xb8\xaa\x8a\x58\x2c\x79\xf4\xe1\xf8\xfc\xf4\xea\xe3\xf1\xc9\xe9\x55\xcc\xac\x1f\xce\x97\xe9\x9b\xdf\xa7\x67\x6f\x9d\xef\xf2\x95\x24\x2d\x1a\x78\x9c\xa6\x31\xb3\x7e\x54\xfd\x8e\xf3\xe8\xe6\x51\xfc\x8c\x6b\x23\xf2\x8c\x75\xf8\x5f\xae\xf5\xec\xb4\x44\x9f\x65\xda\xf0\x82\xf8\xd0\x3e\xc4\xd5\xdd\x7a\xce\xc6\x56\x50\x8b\xa6\x1b\x7b\x37\x87\x14\xcf\x24\x13\x6d\xb4\x8f\x17\xbf\x9e\x5e\x5e\x9e\xbd\x3d\x9d\x5e\xfc\xf6\xe1\xf4\x32\x40\x78\xf1\x95\xfb\x47\xbb\xf4\x28\x76\x11\xcf\x91\x4e\xf5\x21\x38\x85\x56\x9b\x50\xbc\xbf\x90\xc7\x96\x33\xa8\x45\x9a\x6e\xc0\xca\x83\x84\xb5\x58\xcb\x69\xa9\x8f\xb8\x2c\x82\x96\xb6\x5c\x94\x8c\x67\x13\xdb\xcf\x7e\x3c\x9b\xf4\x5e\x50\x26\x4c\xb3\xe6\x81\xaf\x28\xc6\x04\x8e\x40\x5a\x86\x89\x6f\xe5\x2e\x0c\xc6\xbc\xdc\x76\x16\xfa\xf0\x33\x07\x9f\x71\xd9\xd6\x4e\xc8\xae\x3b\x71\x7d\x26\xa4\xbe\x77\x6d\xa3\xac\x7c\xb9\xa9\x31\x2f\x31\xc8\x56\x95\xc2\xc2\xec\x8b\x4a\xc6\x96\x3e\x1e\x45\x41\x18\xbf\xbe\xb3\xa0\xbb\xc9\x1c\x85\x14\x61\x56\x19\x62\xfd\x77\x9c\x16\xf5\xa1\x68\x74\x6f\x6a\x75\x6f\x89\x7a\xcf\xdb\xbd\x5e\x62\x4c\xf5\xd5\x26\x53\x2a\xce\xc4\x4b\x8d\x2f\xff\xab\xd5\x47\xcc\x37\xed\x29\xa6\x75\x89\x40\x5d\xb9\x55\x57\x72\x5d\xce\x0e\x13\x44\xb1\xbb\x17\xa0\x67\xef\xde\xe1\x44\x2a\xd9\xde\x16\x2b\x1c\x2d\x17\x07\xe2\x77\x50\xdd\xd4\xd8\x9f\x4c\xdc\xbb\x40\x1b\xbc\x8e\x33\xb9\xce\x08\x9a\x6c\x36\x1a\x91\xb5\x67\xab\x28\x63\x7a\xc4\x9b\x21\xd8\xc0\x0e\x32\x90\x2c\x3b\x1a\x59\x50\xae\x54\xb0\x35\xb6\xf0\x0c\x81\x5d\x8e\x68\xac\xc2\xb8\x8c\x5c\xc9\x5a\x53\x16\x09\xaa\x90\x80\x9e\x78\x29\xa2\x38\x08\xfc\x57\x45\xf4\xa1\xa5\x96\x5c\x83\xb1\xac\x80\x86\x75\x9e\x04\x23\x13\x2f\x11\x9b\x8f\x1f\x00\x89\x56\x7c\x53\x98\xb4\xd5\x27\xc9\x1c\x8a\x4f\xca\x32\xb4\xfa\xa4\x65\x0a\xf1\xd1\x74\x4b\xf5\x19\x54\x49\xe2\x9b\x36\x18\xd4\x1f\x44\xb5\xc5\x7b\xa8\x74\xf5\xfa\x92\xdc\x9e\x7e\x59\x89\x0f\x8c\xdc\x92\x2f\x2b\xeb\x93\xdc\x24\xc5\x27\xb3\xee\x4c\x25\x68\x0a\x9e\xaf\x50\x09\x9a\x92\x94\x16\x3c\x28\x71\x16\x37\xe2\xaf\x69\x46\xb7\x6d\xd2\x2a\x8e\xc3\x33\x4d\x3d\x97\xb1\x9d\xbc\x37\x2d\x73\x43\xa3\x9a\x78\x2a\x2b\x10\x15\x08\x31\x31\x26\x93\xf8\x10\x73\x44\x17\x21\xb3\x91\x6c\x58\x15\xf0\xc8\x6b\xad\x2e\x61\xb9\x40\xd0\xac\x26\x59\x15\x44\xd0\x17\x8c\x07\x95\x44\x31\x1a\xf1\x1d\xc0\xb3\x9f\xa9\xc6\x5f\xc9\x97\x4d\x6d\x0f\x98\xa7\x2d\x8c\x0e\x90\x80\x66\x62\x4e\x21\x55\xc2\x7c\xaa\x17\xd5\xed\x4a\xe0\xad\x14\x39\x3c\x9a\x8a\x7c\xd2\xfc\x50\xea\xd8\xf4\x3b\xcc\x05\xd5\xf5\x9a\xce\xe3\x04\x93\xe8\x96\x64\x84\x25\x9c\xfc\x24\x5e\x34\x0b\x08\x5f\xa8\xdc\x29\xd0\x30\x09\x51\x8f\xc2\x12\x5d\xab\x1b\xc4\x2a\x40\x22\xd4\x41\x89\x1b\xcd\x52\xc1\x62\x38\x24\x08\x55\xa2\x0b\x8f\xd7\x70\xa6\x11\x90\x57\x78\x5c\x08\xf2\xb8\x22\x5c\x05\x1a\xb4\xf3\xa4\x3a\x8f\xc1\xa3\x51\x63\xd3\xe3\x71\x65\x7b\x1d\xb3\xa3\xa0\xe0\x81\xa0\x38\xaa\x60\xa2\xc5\xdb\x6c\xad\xde\xca\x71\xd4\x69\x1f\xd5\xdb\x30\x18\x92\x61\x80\x02\x9c\x9a\x7a\x94\x76\x03\xe5\x6c\x8f\x33\x4c\xa2\x07\xe6\x20\x75\xaa\x30\x4e\x7b\x37\x76\x14\x49\x19\x78\x52\x21\xd3\x0f\x06\x37\x15\x04\x76\xff\x73\x48\xf0\xe7\x90\xe3\xdb\x6a\xd7\xf9\xac\x3c\x4f\x20\x4e\x53\x85\x1b\x7b\x2a\x5f\x18\xff\xce\xf8\x42\xde\x0e\x55\x29\x1e\xe4\x8b\x2a\xc5\x15\x54\xb5\x58\xf9\xf4\x9e\x75\xd4\x6c\x32\x18\xf8\x10\xf0\x1d\x40\x28\xf5\x7c\x16\x12\x7c\x00\x15\x94\x36\xe9\x95\xca\xce\x0b\x35\x48\x7a\xf3\x5c\x59\xcd\x57\x5a\x16\x2b\x84\x63\x95\x3d\x64\x98\xbb\x26\x00\x26\x50\x5b\xd6\x63\x2d\x3a\x1a\x86\xca\x87\x3b\x9a\x92\x50\xad\x64\x86\x1c\xb3\x77\x2c\xf8\xbc\x4c\x22\x01\xc6\xef\x30\xa9\x70\x01\x1b\xe6\xae\x74\x11\xbe\x93\x73\x4e\x55\x97\x8c\xb9\x71\xc5\x36\x8a\x3c\x70\xe4\xc2\xa4\x52\xf3\xfb\x8f\x4b\xbd\x01\x8d\x0d\x85\xbf\x4b\x14\x1b\x30\xbc\x24\x5a\x56\xf7\xa9\x86\x7f\x56\x93\xbb\x94\xe3\x59\x4b\x06\x33\x0c\x56\xdf\xcf\xd5\xe4\xc4\xa4\xa9\x80\xe8\x93\x90\xfb\x9d\x11\xac\x98\xa4\x96\x91\x6d\xfb\xf1\xce\x3d\xc7\xbb\x37\x22\x69\x85\xe6\x10\x04\xca\xc3\x5d\x5f\xf9\x80\xa3\x7b\xf6\xa3\x42\x7e\x0e\x70\x80\xf0\xa7\x90\x8f\xb3\x09\xda\x6c\xc4\x1b\x22\x7f\x54\x1a\xeb\xd2\xd1\xce\x57\x75\x37\x0d\x35\x8d\xb0\x2e\x17\x75\xee\x37\x8a\xb9\x87\x9e\x81\x08\x3b\x5f\x1a\xe3\x44\xad\x25\xfa\xab\xd2\xfd\xf6\x6c\x25\xbe\x0e\x87\xe5\x66\x84\xae\xff\x55\x69\x88\x25\x79\x90\x63\x9a\x73\x41\x2f\xff\xc1\x80\x8c\xff\x6d\xa2\x28\xfe\x46\xf9\xdd\x79\x92\xcd\x13\x9e\xb3\xc7\x2b\xc2\x39\x61\x31\x89\x38\x49\xd8\x3c\x7f\xc8\x9a\x5f\x0a\xc2\xd7\xab\xe6\x6b\x0b\x15\x3e\x26\x11\xf8\xff\xc6\x24\xfa\xf9\xf8\x6a\xfa\xe1\xf8\xfa\xec\xd7\xd3\xe9\xc7\xcb\x8b\x7f\xff\xdd\x7d\x75\xf5\xfb\xf9\x9b\x8b\xf7\x31\x89\x2e\x2f\x2e\xae\x85\xfc\x73\x47\x66\x9f\x7f\x4e\x8a\xab\xf5\x0a\x68\xfe\xf4\xe9\xec\xed\xf4\x97\x53\x91\xab\x6d\x85\x16\xae\x4a\xee\xa0\x3a\x9b\x13\xc3\x47\x0f\x87\x39\x58\x65\x14\xb1\x94\x08\x02\xbc\x76\x2c\x86\x52\xf8\x25\x9e\x66\x71\x16\x06\xd3\xa9\x4c\x35\x14\xfc\x4c\x94\xe5\x0f\x21\x84\x29\x32\x95\x99\x29\x73\xa5\xf1\xa4\x2a\xec\xae\x3a\xc7\x80\x82\xd8\xae\xc3\xd9\x10\xa2\x48\x2f\xd2\x3c\x67\x21\x3c\xb2\x24\x9b\xe7\xcb\x10\xfd\xc5\x22\x8d\x86\x22\xbd\x75\xcb\xab\x42\xec\x62\x5e\x4a\xf3\x1e\xb3\xf7\xec\xd8\xac\x8a\xa3\x5d\x09\x3c\x00\x40\x15\x92\x8f\x7d\x4d\x49\x3c\x40\x5e\x0c\x3d\x81\x25\xc6\xae\x2d\x53\x42\x46\x63\x5e\xf6\xb6\x8d\xda\xbc\x27\xaf\x31\x5f\xfd\x11\x85\x12\xab\x68\x23\x16\xc8\x1f\x20\xeb\x6c\x60\x67\x93\xcf\xe8\x15\x5e\x7a\xb4\xdc\x66\x89\xe1\xfb\x78\x29\xd7\x96\xff\xae\xb1\x44\x86\xcb\x09\xac\xd7\x01\xfa\x71\xff\xd0\x17\x22\x63\x15\x71\x52\xf0\x70\xa9\x85\x04\x3b\x98\x8a\x71\xe1\x3e\x10\x8d\x73\x67\xeb\x7d\x4f\x5a\x50\xd9\x13\xeb\xb6\x16\xe7\xc6\x36\xcc\xb0\xac\xcf\x6e\xaa\xe1\x78\x54\x3b\x6d\xe3\xde\x41\x86\xf9\xbc\x0f\x09\xc2\x8f\x15\x2b\x82\x79\xa9\x16\xcf\xad\x7a\x7d\x8b\xf7\x0e\xa5\x0a\x79\x6a\x57\xa5\x2a\xec\x41\x6e\xd8\xd3\x6a\xab\x36\x9f\x4e\xad\x6e\x98\xea\x2d\x5f\x90\xfa\xe2\x27\x75\x25\x49\xf1\xc1\xe0\x8b\x87\x9a\x1d\x87\xe2\x8b\x4d\xed\x18\xa8\x71\x63\xcd\x57\x11\x94\x8c\x86\x2b\x0a\x5b\x40\x89\x72\x9e\xf4\xac\xe7\x98\xf7\xb4\x35\x9e\x57\x52\x76\x51\xaa\x64\x16\x56\x39\xfc\x1d\xc3\xa6\xc9\x10\x7e\x08\x19\x3e\x05\x13\x86\xab\x90\xe1\x0b\x78\x62\xa5\x04\xf2\x6b\x95\x37\xf0\xc9\xd6\x79\x79\x1e\x3b\xc7\x11\xbe\xb4\x0d\x01\xf0\xc7\xf8\x5f\xaf\x2e\x3e\x44\xf2\x20\xa4\x8b\x47\xfc\xd7\xf8\xf0\xe0\x00\xbf\x8d\xff\x19\x7f\x88\x5f\xfd\xc7\xf8\x8f\x87\x3f\x4d\x86\x7f\x7a\x55\xf5\xcd\x99\x1b\x3a\x67\xef\x50\x47\xcb\xaf\xbc\x22\x21\x54\x7c\x75\x22\x8e\x9a\x67\x24\xa4\x50\x42\xc5\x68\x9b\x20\x7d\x0e\xd7\x8e\x34\xde\x3b\xe8\xdd\x30\x92\x7c\x96\x6e\x7d\xe6\x44\x8f\xe3\xeb\xcd\xa6\x12\xb6\xab\x13\x10\x12\x57\xe1\x3e\xac\x73\x10\x8a\x36\xa7\xe7\xa8\x91\x24\x8e\xe3\x93\x23\x19\x18\xf6\x28\x18\xeb\x8e\x1d\x05\x43\xf9\x6e\x18\x08\x41\x70\x6c\x89\xa6\x4d\xea\x8a\xab\xd0\xb4\x3f\x8a\x75\x24\x3f\x48\x9e\x7a\x04\x3f\xb4\x94\x2c\x7f\x29\xae\x73\x54\x8b\x9c\x6f\x13\x2f\x6d\xce\x23\x43\x59\x7d\xfa\x56\x01\xcb\xd5\x75\xad\xea\xcc\xf1\x09\x65\xb3\x75\x9a\xb0\x49\x60\xf1\x6c\x70\x4a\x63\x7a\xe4\xe1\xf5\xf8\x8f\x6f\x4d\x5e\x25\x64\xf7\x2a\x83\xd3\x60\x1c\x60\x1f\x3c\xb2\x28\x79\x18\x83\xab\xe6\x51\xd0\x0f\x46\x01\xee\x07\x98\xfe\x18\xff\x15\x3d\x65\xc3\x38\x88\xa2\xa8\x1f\x0c\x43\x03\xeb\xf9\x57\x34\x0c\xfa\xcb\x9c\x91\x3e\xe5\x64\x59\x04\x6a\x7c\xb3\x61\x7c\x16\x02\xc6\x32\x78\x53\xe9\xfa\x0e\xe3\xa0\x3f\x09\x4a\x31\xf7\x86\x87\x38\x43\xa3\x1d\xd5\xd6\x02\xbd\x5d\xef\x27\x51\xef\x4b\xd1\xea\x3c\x3e\x78\x9d\xff\x40\x75\xf5\x73\xb7\xfa\x79\x55\xfd\xbc\x5e\x7d\xda\xac\xbe\x58\x46\xba\xf6\x12\x22\x9a\x8e\xf3\x49\x2f\x1b\xc6\xef\xc3\x04\x0d\x83\x51\x3f\x18\x8a\x26\x25\x9e\x26\x95\x56\x93\xaa\x1d\xeb\xbd\xb5\x63\x7d\x90\xc7\x00\x30\xc8\x62\x22\x55\xa9\xde\x39\xde\xfa\x0a\x44\xdb\x1f\x24\x77\xcc\x27\x50\xb5\xbf\xbb\x5b\x01\xec\x59\x3f\x3b\x7b\xaa\x78\xf3\xa6\x7d\xab\xa9\xb6\x81\x4f\x35\x4d\x41\x1c\x13\x28\xe2\x37\x9f\x91\x9d\x14\xff\x07\x83\x4a\xe9\x03\x2f\x26\x42\xba\x6c\x2d\x4b\x1e\x7c\x32\xa5\xe4\x7c\x9a\x1c\xdb\x6f\x50\xe1\xbf\xf9\xca\x04\x06\xb5\xe7\xe1\xfc\xfe\x06\x79\x7e\xad\xaf\x1e\xf1\xf2\xf7\x36\x73\x59\xcb\xeb\x2f\xa5\x4b\xca\x63\xe9\xd9\x13\x89\x34\xb1\x74\xa6\x89\x0a\x9e\x33\x12\x33\xf5\x83\xfe\x9d\x68\xaf\x8e\x25\x85\x2b\x43\xf5\xeb\x8e\x72\xf3\xac\xb2\x6c\x36\x8a\xef\x2b\x15\x0c\x77\xf3\xca\x15\xf8\x1c\x1f\x0f\x5d\xd1\x51\xab\xfe\x28\x34\xc5\x0c\x87\x56\x31\x5a\x2f\xa0\xe0\xb3\x65\xa5\x4c\x0a\x79\x6a\xea\x26\x81\xfe\xa0\x94\x28\x1f\xfe\x18\x38\x55\x57\xfc\x68\xda\xab\x7d\x69\xc4\xb3\x5b\xb4\xcd\x27\x60\x1e\xad\xd6\xec\xb6\xe9\x16\x23\x93\x2a\x9c\xe3\x66\x2f\xda\xfd\xa6\x7b\xb4\x94\x66\x05\x9a\xcd\xff\x1d\x06\xf1\x27\xfc\x0b\xfe\x13\xfe\xb7\xf8\x2e\x0c\x2c\x59\x20\x10\xc9\x6c\xd9\xe0\xdf\x70\x8b\x08\xf1\x13\x6e\x97\x3a\x7e\x69\x17\x55\xfe\xd4\xa6\xf6\xbb\xa7\xe4\xa1\x78\x05\xbc\xdf\x2e\x1d\xb5\x4c\x6a\x69\xa8\xff\xfa\xb7\x35\x61\x8f\xdd\xd2\xb6\x5f\x68\x36\x92\x02\xbc\xe2\x74\xae\xc2\x99\xb7\x5c\x90\x56\xb9\x66\xf9\x72\x95\x67\x22\x8b\x54\x6b\xec\x48\xae\x31\x27\xc8\x17\x5e\x41\x4d\x6c\xcd\x21\x9f\x40\x1d\x2f\x1e\xbb\xd1\x07\x0d\xf8\x14\x4c\x37\x3a\x16\xa3\x33\xde\xd1\x74\x0e\x05\x3d\x33\xa3\x78\x31\x2d\x78\xc2\xc9\x4b\xf2\x3d\x27\x47\x1d\xa8\x63\xe7\xf0\x24\xfc\x55\xc2\x39\xeb\x38\xfe\x72\x18\xa7\xab\x84\x71\xda\x72\xd5\x5d\xe5\x81\x79\xa5\xb2\xec\x9b\xa9\xd0\xad\x20\xd5\x8e\x65\x92\x25\xb7\xa4\x09\x7d\x55\xf7\xe3\xc1\x0b\x7c\x87\xe7\x78\x85\x97\x35\x45\xb7\x3a\x24\xdc\x80\xbf\x21\xc1\xc1\x5f\xff\x4d\x2e\x90\xa7\xca\xfc\x6d\xb4\x77\xe0\xb7\xdc\xaa\xae\x3c\xca\x12\xe1\x1d\x24\xdf\xd2\x42\x10\x9b\x77\x26\xed\x66\xdb\x5a\x42\x32\x9f\x9f\x88\x39\xf8\x2b\xcc\xf5\x4e\xf4\xc1\xba\xc6\x64\xda\x4a\x9d\x16\x57\x74\xb9\x4a\xc9\x49\x4a\x67\x9f\x3b\x93\x77\x72\x6d\xa5\x7f\x4b\xb8\xa8\xc3\x9b\x7c\x9d\xcd\x8b\xce\xf4\x9d\x5c\x5d\xe8\x9f\xa4\x94\x64\xfc\x92\xcc\xf8\xb3\x0b\xb1\xb2\x76\x6e\x09\xcd\x6e\xab\x6c\x2f\x6a\x95\x43\x61\x57\xb9\x97\x79\x0e\x39\x9f\xd5\x36\x93\x69\x17\x75\x33\x51\x9e\x45\xbe\xca\xd5\xa5\xd7\xce\xba\x2e\x0d\xd3\x4b\x67\xdb\x57\xc5\x2d\xe1\xa7\x29\x80\x14\x3e\x6b\x5d\xb8\xd9\xba\xd4\x5c\x25\x7f\x6e\xf5\x55\xb6\xad\x25\x14\x2f\x6b\x43\xd1\xbd\x0d\xc5\xcb\xda\x50\x74\x6f\x03\x70\x60\x2f\x69\x45\x3d\xe3\xee\x52\x5e\xd2\x92\x7a\xc6\xed\xa5\x68\x3b\xd8\x2b\xfe\x98\x92\xb7\x64\xc5\xc8\x0c\xb0\xc7\xce\x49\x51\x24\xb7\xa4\x7b\xa9\x3b\x08\x6d\xad\x05\x78\xec\xbd\xb5\xb8\xad\x4e\x85\x66\x9d\x4e\xab\x13\x7d\x20\xbf\x57\xac\x59\x27\xda\xb4\x13\xed\x6b\xf2\x85\x5f\x69\x16\xa4\x13\xdd\xbc\x63\x9d\x19\x79\xc6\xcc\x4a\xba\x11\x15\xec\x20\x18\x1d\x3e\xaf\xca\x45\x37\xea\x66\x6f\x7c\x1e\xf5\x75\x27\xea\x82\xf0\x95\xe0\x2b\x9f\x47\x3c\xed\x4c\x5c\x59\x99\x77\xa2\x3a\xeb\x44\x55\x02\x93\x3d\xaf\xbe\x8b\x4e\x94\xcf\x3f\x5d\x1f\xbf\x79\x7f\x3a\x3d\x39\x7d\xff\xbe\x23\xe1\xbb\xc8\xce\xb4\x95\xba\xe4\x63\x3f\x6a\xce\xb7\x13\xf9\x79\xa7\x7a\xdf\x25\xc5\x73\xc9\x56\x59\x3a\xd4\xf9\xa4\x62\xbd\x3b\x91\x5f\x59\xb5\x6e\x67\xa0\xe5\x38\x9e\x2b\x06\xbd\x1b\xe5\xa5\x45\x79\xbb\xd4\xdb\x14\x4f\xb6\x0b\xc0\x52\x86\xdd\x61\x8b\x65\x8f\xb5\x8b\xea\x2f\x91\x49\xb5\xa5\xab\x33\x91\x50\x3d\x63\x2b\xe6\x7c\xa3\xe6\x8b\x24\x4d\x6f\x92\xd9\xe7\x7d\xf1\x65\x5f\x63\x34\x7e\x93\xa6\x78\x63\x13\x40\x2b\x2a\x1b\x18\x04\xda\xf1\x4e\x70\xf9\xdb\x44\xf6\x4e\xd6\x71\x2f\x8c\xa5\xa0\x66\x97\xf4\x4e\x95\x01\x5d\xa0\x70\x17\x9b\xd9\x0e\x79\x1f\x98\x34\xa3\x60\x68\x69\xb9\xac\x98\x1d\x19\xa0\x69\xa5\xc9\x63\xbe\xde\x46\x88\x93\xe5\x2a\x4d\x38\x19\x19\x8a\xc5\x2b\x87\xa4\x0a\x8a\x92\x49\x9c\xd9\xe7\x75\x63\x8b\x38\xde\x65\xe4\x3b\x23\x66\xbe\x44\xb8\x9f\x2b\x06\x84\xcc\xf7\x17\x24\xe1\x6b\x46\xea\x53\xed\x59\x08\x79\xf1\x53\x41\xb2\xb9\x37\xfc\xc4\xb7\x8e\x59\x29\xd1\x73\xa0\x98\x42\xb9\x85\xa9\x5f\x63\x02\x9e\xa6\xf9\x60\xb0\x17\xee\x81\x1e\xde\xbe\x4b\xcb\x90\xbe\xcf\x50\x55\xae\x3b\x89\x18\xa8\x49\x80\xaf\xb0\xe0\x16\x13\x07\x3f\x15\x8a\x88\xae\x4e\x3f\xbc\x9d\x1e\x9f\x5c\x9f\x5d\x7c\x50\x8e\xc7\x2d\x6a\xce\xc1\x80\x8f\xa9\xb3\x71\x4c\xe0\x02\x94\x47\xf7\x49\xba\x26\x70\xbd\x2c\x4b\x93\x1b\xa9\xdf\xb2\xcb\xf1\xda\x22\x71\x85\xa1\xe9\x81\xe2\x12\x03\x1d\x05\x43\xd2\xf4\x83\x31\xe1\xce\xf7\xc0\xd2\xab\x30\x50\x0b\xd5\x68\x35\x23\x72\x61\x6a\x8d\x56\xf6\xe3\xe1\x51\x26\x47\x2b\x8f\x0f\x5f\xe7\x3f\x64\x70\xf7\x41\xc7\xb9\x3b\x5a\xf9\xa4\xe7\x33\x30\x39\xe2\x6e\x9c\x05\x8a\x24\xc0\x98\x83\x55\x1a\x3e\x29\xb8\x56\x5e\xc3\x6a\xa5\x25\x2a\xcb\x52\x7a\x2e\xd7\xd0\x5e\x13\x07\x7b\xa7\xf3\xb2\xf4\x2a\xf2\x9e\x85\xc8\xbe\x5b\x9f\xfa\x6d\xd0\xda\x67\x86\x7d\x94\xc8\xe4\x19\xc4\x19\x7b\x4b\x8a\xd9\x5b\x32\xcb\x59\xc2\x73\x86\xc4\xbe\x99\x2d\xe8\xed\x5a\x9d\xbe\x87\xd8\x3e\x8b\x0f\x5b\xbd\x11\x6b\xb2\xbb\xf6\x3c\x2a\x11\x4e\x56\x2b\x92\x49\xad\x51\x3d\x02\x9f\xab\x4f\x7a\x2e\x2e\x7e\x37\x5d\xec\x3f\x2c\x5a\x89\x6b\xdc\x30\x9e\x00\xb2\x60\x23\x7c\x92\xcf\x6d\x7f\x34\x96\x86\xd4\x20\x37\x04\xb8\xfa\xf1\x86\x82\x42\x47\x8c\x3f\xcd\x68\x0d\x3b\xde\xdc\xe1\xfb\x2f\xfb\x4b\x5c\xd1\x1c\x65\xb8\x41\x73\x94\x75\x83\x6b\xdd\xa1\x51\x7f\xe9\x44\xd7\x47\x7d\xdb\x31\xd4\xf5\x6c\xe9\xe6\x9b\xf8\x74\xf8\xfd\x28\x90\x51\x59\x3f\x90\x87\x94\x66\x24\xc0\xdf\xfd\xaf\x51\x30\x4b\xb2\x19\x49\x83\x12\x27\xf5\xa1\x62\xd1\x35\x6c\xe5\x8e\x84\x81\x9f\x60\xbf\x1d\x05\x01\x16\x3b\x24\xbd\x59\xf3\xaa\x3f\xc7\x41\xb2\xe6\xf9\x2c\x59\x51\x0e\x5e\x28\x01\x96\x2f\x72\xc6\xa4\x2d\xb7\xf8\xb5\xc8\x67\x6b\xd1\x55\x73\xa3\xd8\x0d\x16\x39\x5b\x06\x38\x58\x26\x5f\x34\x98\x5a\xb0\xa4\x99\x79\x06\x14\xb1\xbb\x3c\x9d\xc3\x05\x09\x23\xc9\x3c\xcf\xd2\x47\x78\xfc\xdb\x9a\x32\x20\x51\x90\x54\xa2\x7e\xbf\xa5\x8c\x68\x03\xf5\x62\x45\xd2\x14\xac\x72\x02\x71\x2e\xdd\xa8\xbb\x9f\x80\x53\x9e\x0a\x16\xcb\x22\x2c\x11\xac\x75\x9d\xc4\x32\x37\xb5\x51\xb1\x1d\x9e\x3b\xfb\xe4\x0d\x59\x9e\x85\xc1\x2a\x29\x38\x71\x80\x5b\x88\x52\xce\x88\xae\x34\xa8\x75\x56\x8e\xd9\x9a\x3f\x2b\x3d\xcd\x56\x9d\x72\x94\xf8\x66\x7d\x73\x93\x92\x02\xa2\x1d\x88\x99\xb8\x62\x84\xff\x42\x1e\x41\x33\xe2\x33\x07\xcb\xc7\x24\xfa\x4c\x1e\x4f\xf2\xb9\xe4\x0a\xb6\x50\x0f\x11\xe6\x8e\x0b\x17\x9f\x80\xfd\xa1\x3f\xf5\xc8\x75\xc3\xb4\xa3\x8c\x04\x30\xc5\x64\x73\x22\x95\x59\x1d\xf3\x25\x9e\x35\x43\xe7\x6c\xab\x13\x31\xb1\x88\xd5\xac\x77\x72\x16\x61\x40\x44\x2f\xa8\xae\x23\x08\x17\xa1\x5a\x24\xfb\x99\x5e\x25\xdc\x84\x74\x86\xa5\xd2\x20\x50\xcc\x92\x15\xd9\x5f\x31\x52\x14\x56\x62\x98\xe6\x67\x59\x3d\x35\xbc\xde\xa7\x59\x3d\xe5\xc5\xba\xe9\xb1\xd6\xde\x26\x6c\x28\xe5\x66\xdc\x05\xa9\xcf\xe4\xf1\xa3\xa8\x47\xbd\xd4\xcf\xe4\xb1\x51\xc1\xcf\xe4\xf1\xd3\xaa\x59\x66\x73\x56\xa8\xf2\x04\x0d\x21\xbf\xd8\x04\xde\xe6\x0f\x8d\x16\x8a\x74\xf3\xfc\xc1\x6a\xa1\x6d\xda\x56\xd8\x56\x4b\xb9\x13\xbd\xbb\xce\x72\x99\x0f\x04\xe1\xc4\x4d\x29\x27\x08\x92\xf0\xde\x16\x0f\x39\x18\x34\x2c\x89\x73\xf4\xc4\x5a\x18\xa3\xbc\xc6\x18\x8d\x13\x9c\x4d\x4a\x09\x4c\xe3\x61\xbb\xf2\xc1\x20\x0f\x13\x9c\xa1\x1e\xb0\xc6\x76\x7d\xd4\xaa\x0a\xd0\x60\x90\x45\x05\xcf\x57\xe2\x64\x4b\x6e\x13\x39\xbf\xad\x58\x01\x49\xe7\x33\xc6\x77\xc7\xf9\x8f\x0a\xc2\x37\xe5\x2c\xc9\x0a\x2a\x88\x5c\xe7\x9e\x4d\x41\x4e\xce\xd9\x9a\x31\x92\x71\xd0\x97\x61\xe6\x79\xa9\x8d\xf4\xc4\x33\x48\x15\xd6\xef\x98\x60\x00\xa9\x20\x5f\xa8\xf9\xab\x1c\xaf\x59\x04\x6b\x72\x30\x50\x0f\x86\x8f\x7a\x91\xc8\xe8\xde\xf9\xfe\x97\x0b\x8c\x37\x2c\x7f\x28\x08\xdb\xdf\x15\xb3\xe1\x6b\xac\x06\xea\xc6\x08\xdd\x85\x50\x9c\xe0\xa2\xcd\x75\x69\x5d\x33\x93\xf5\xbb\x31\xc7\xed\x0c\x5c\x83\x1f\x08\x26\x38\x23\x09\x23\x05\xbf\x58\x40\xec\x0e\xbf\x5c\x2b\x81\x4e\x12\xa6\x6e\x2b\x70\x16\x3b\xbe\x6f\x4a\x44\xf1\x85\xc3\xd7\x28\x36\x21\xb7\x8d\x72\x7d\xdf\x1d\xb0\xbc\xf2\x35\x97\x80\x39\x99\xe5\xe6\xc2\x7b\x42\x98\xac\xaa\x51\x96\xba\xf2\xbf\x51\x7e\xe7\x0d\x91\xd5\xda\x04\x4d\x9f\x80\xdf\xd7\x96\x12\x18\x61\x24\x9b\x13\xd6\x1a\x96\xd6\x5e\x4e\x91\x4e\xad\x11\x08\xd4\xe9\x20\x91\x4f\xbf\x99\x24\xa3\x03\x98\x8b\x92\x88\x7d\xad\x57\x97\x67\x7c\x5b\x83\xd1\xf6\xc4\x34\xba\x4b\x8a\xb7\x17\xe7\x9e\x2d\x99\x1c\xcd\xf3\x19\x70\x49\x11\xcc\xe4\x2b\xe0\xdd\x72\x16\x12\x34\x52\xc6\x4f\xa6\x78\x5d\x54\x0d\xcb\x4f\xbe\x6e\xab\xbc\xc9\x64\xca\xb9\xc9\xe7\x8f\x55\x8f\x9d\xcd\x25\x4f\xf7\x40\xd3\xf4\x0c\x4e\x7b\xd5\xc4\xd1\x1a\xcf\xe9\xbc\xfe\x0a\x62\x16\xa4\x24\x61\x97\x72\xb0\xd6\xbe\x90\xbe\x1d\xf9\x41\x77\x44\x75\x4c\x5f\x35\xa0\x16\x66\x9f\x53\xa1\xc6\xbb\x6a\x12\x55\xfc\xd4\x1a\xf3\xe4\x56\x88\x37\x5f\xc5\xaf\x9a\x1e\xda\x6c\x82\x40\x43\x39\x2b\xc2\x9b\x4d\xe8\xa6\x51\x87\xb2\x03\xdd\x81\x4a\x2c\xc1\x63\x81\x79\xd8\x16\xd1\xc8\xe9\x09\x2b\x8f\x0e\x35\xc7\x51\x59\xf6\x8a\xe8\x5f\xff\xed\xd3\xe9\xe5\xef\xd3\xb3\x0f\xd7\xa7\x3f\x5d\x1e\xcb\x53\x3e\x4c\xa3\x3f\xd5\x9d\x65\xec\xaa\x19\xbf\xb6\x23\x80\x51\xd4\x5e\xcc\xda\xb4\x4e\xa7\x1a\xb9\x5f\x9d\x6f\xa5\x34\x9a\x9f\xd5\x55\x24\x8e\x02\x78\xb6\xfb\x18\xf2\x1b\xe0\x58\x07\x91\xbd\x53\xb7\xed\xcd\x3c\x44\x4f\xd6\x86\xcc\x21\x20\xa3\x0e\x90\x24\xb9\x9a\x22\x7e\x2a\x3b\xd7\xa6\x69\x77\xb6\xfd\x60\xdc\x8d\x59\xbc\x2b\x8a\x56\x27\x01\xb8\x5e\xe5\x6f\x6f\x9b\x57\x1f\x86\xee\xf4\xa7\xaa\xcf\xaa\x1b\xe7\x17\x9d\xeb\xcf\x3b\xab\xb5\x35\x56\x17\x36\xee\x2e\x7e\x5a\xe6\xeb\x82\x00\xcf\x34\x0a\xe0\x39\xbf\x17\x8d\x84\xc7\x94\x24\xf7\x44\xbf\x5e\xf3\xa0\xc4\xf3\x38\xaf\x5f\x18\x10\x29\x06\x3e\xf1\x7c\x3d\xbb\x2b\x78\xc2\xf8\x28\x80\xe7\x2b\xf1\x1c\x60\x78\x5e\xe6\x82\x10\x3c\x9e\xe7\xf7\x44\xbd\x15\xdb\xb1\x7c\x79\x9a\xcd\xd5\x3b\x25\x30\xc9\xd7\x27\x52\xd1\x20\xc4\x06\x21\x1e\x8c\x02\x25\x3f\xc0\x9b\xf5\x0a\x7e\x7f\x5a\xc1\x2f\x10\x55\xe0\xc5\x47\x29\xb4\x40\xad\x65\x2e\x78\x94\xf9\xe0\x51\xe4\x84\x07\x91\x57\x45\x22\x5a\x92\x6c\xad\x62\x3b\x7c\xe1\xe7\x24\x5b\x07\x78\x96\xd2\xd9\xe7\x51\x30\x93\xb6\x58\xf3\x9b\x54\xbd\x98\xe7\xeb\x1b\x63\xa2\x05\x74\x64\xf3\xe0\x51\x36\x0f\x04\x2d\x9a\x8d\x02\x25\xd2\xa9\x37\xf9\x9a\xab\x57\x17\x42\x06\x6b\xf4\xfd\xa9\x14\x2c\x1b\x9d\xff\x5e\x3c\x07\xb8\x58\xdf\x2c\x29\x1f\x05\xf2\x6f\x80\x41\x84\x1f\x69\x49\x5e\x49\xb9\xc1\x4c\x47\xc2\x61\xc9\xad\x1a\x0f\xf1\xa8\x86\x43\x3c\xca\x17\xf2\x59\x15\x2f\x1e\x55\xe9\xe2\x51\x15\x2e\x1e\x55\xd9\xe2\x51\x4c\x0d\xf9\xf2\xe2\x5e\xa6\xcc\x57\xe2\x77\xbe\xd2\xb4\xe6\x9a\xd2\x3c\x28\x31\xcb\x73\x73\x22\x06\xe2\x34\x0d\xb6\x9d\x30\xda\x6e\x58\x2e\x9a\x9f\x25\x98\x78\x51\x73\x19\x87\xdb\x34\xc0\x6a\x69\x44\xd6\xb7\x23\x98\x40\x90\x41\x29\x89\x4a\x25\xbd\x05\x43\x09\x78\x2d\x96\xd2\x5e\xce\x5f\x88\x1a\xd3\x93\x86\xf8\x32\x22\x03\xb5\xb5\x0b\x56\x53\x02\xcc\x15\xbc\x96\x94\x30\x1d\x62\x76\x3a\x89\xfc\xbb\xf0\x1c\x46\x9b\x4d\x51\x33\x39\x44\x61\x6e\x3c\xbc\x0d\x64\x63\x72\x94\x8c\x5a\xb8\x9e\x04\x21\x89\xc1\xf6\x9e\x16\x10\xb1\x37\x54\x38\x25\xe2\x98\xa6\x6a\xaf\xa9\x9c\xcc\x65\x48\xac\xa2\x3a\xb6\x44\xfe\x64\x3e\x07\xbb\x0b\x6f\x56\xbc\x97\x47\xb4\x08\x83\xc8\xf3\x0d\x55\x11\x38\x05\x8b\x0e\x48\x15\x61\xf0\x29\x13\x2d\xe9\xf3\xbc\x9f\xcc\xe7\xfd\x3f\x37\xf2\xfd\xb9\x0f\x15\x16\x09\x44\x2f\xf5\xd5\xa1\xd9\x0f\x83\x61\x98\x47\x85\x6a\xd9\x66\x93\x8f\x0f\x26\x9a\x7b\x40\xc3\x00\x45\xfd\xf3\xe4\x33\xe9\x17\x6b\x46\xfa\x8f\xf9\xba\x5f\x10\xde\xb7\xba\x59\xd0\xe3\x77\xa4\x2f\xe6\x57\x3f\x67\xfd\x24\x33\x94\x05\x23\xad\xbe\x44\x01\x32\xde\x24\x6b\xf1\x21\x43\xe0\x69\x63\x39\x16\x86\x6b\x0d\x75\x08\xb3\x4b\x4d\xc0\x30\xc7\x6b\x9c\x8d\xd7\x13\x3d\xeb\xd4\x7b\x9f\x0f\x8b\x71\xd5\x7e\xc6\xb8\xab\x69\xeb\x9b\xca\xc0\x68\xb8\x16\x72\x08\xdc\x7e\xe2\xbd\x03\xe3\x0b\x04\x08\x1f\x99\xc3\x0a\x31\x30\xd6\xa7\x25\xa6\x5e\xb2\xe0\x4c\x70\xac\xe5\xae\x30\x98\x27\x3c\xd9\x57\xa3\xa5\xaf\xb6\x68\x6c\x6c\x5f\x9a\x4c\xc3\x38\x03\xad\x1e\xb0\x7a\x46\x29\x43\x22\x23\xca\x15\x38\x89\x73\x75\x83\xd5\xa3\xe0\xe1\xaa\x7a\x5e\x01\xe3\x02\x12\xee\x93\x14\x0d\xf3\x88\x72\xb2\x0c\x0b\xd4\x3b\x88\xe3\x38\x05\x37\xad\xca\xd7\xb2\x51\xb7\xfd\x40\x42\xa8\x50\x0d\x4f\xbb\xad\x9e\xa9\x54\x00\x4e\x10\x2a\x4b\xba\x08\x69\x25\x7d\xcd\xe2\xbd\x03\xbc\x88\x0f\x5e\x2f\x2a\x47\xa2\x45\x85\x9f\x4b\xc7\x8b\x49\xef\x6e\x30\xb8\x8b\x60\x73\x00\x57\xf5\x38\x66\x83\x41\x38\x8b\xef\x54\x5f\x33\x00\x3d\x98\x19\x97\xa0\x99\xbc\x9e\x34\x97\x7c\x77\x63\x3e\xd1\x9d\x23\x9e\xf1\x3c\xe6\xb8\x8e\xa9\x20\x55\x29\x66\x8d\xcb\x4d\x4e\x8e\x62\x70\x0e\x07\xc2\xbd\xdc\x49\x2a\x53\xdf\x8c\xf2\xea\x4b\x48\xf0\xde\xa1\xf8\xc7\x23\xc1\x44\x60\x40\x9a\x49\x68\x8a\x79\x54\xcc\x18\x21\xd9\xbf\x9b\xa7\xdf\x31\x8f\x66\x60\xe2\xfa\xef\xe6\x09\xde\x71\x96\xfe\x42\x1e\x31\x8f\x92\x94\xcb\x87\xe2\x8e\x2e\xd4\xa3\x60\xc4\xe4\xd3\xcd\x9a\xf3\x3c\x03\x26\x32\x15\xac\x88\xd4\xf3\xb7\x19\xbe\x30\x73\xa7\xab\x95\xff\x5c\x47\x2b\x74\x8c\x54\x64\x84\xd9\x65\xec\xd9\xf9\xc7\xb9\x1b\xb0\xa9\x92\x9c\x4d\xe0\x43\x16\x13\xb7\x3a\xaf\xf9\x60\x00\xc1\x64\xa2\x2c\x9f\x13\xb1\x39\x0d\x06\xda\x3f\x91\x6d\x36\x4c\xe2\x35\xef\x85\x07\x78\x16\x29\xec\xb9\x02\x85\x62\xfd\xa2\xd7\xc8\xbb\xde\x38\x3a\xca\x42\x8e\x57\xe1\x1c\x13\x84\x46\x10\x8c\x7c\xfb\xe2\x19\x0c\x68\x95\x01\x57\xe2\xfb\x87\x7c\x4e\xca\x1e\x11\xdb\x2e\x8c\x9d\x06\xb4\x08\x73\xbc\x94\xfa\x43\x98\x0e\xf7\xde\xbe\xe0\x13\x0f\xd8\x89\xee\x87\xde\x3c\x17\xdb\x4f\x4b\xfd\x25\x72\x87\xe8\x95\x0c\xc0\x73\x65\xc8\x39\x20\xaf\x02\xa1\x87\x80\xc8\x5e\xd7\x40\x56\x3e\x9b\x7b\xd2\x3f\x53\x72\x66\x6f\x40\x6d\x29\x7d\x34\x4b\x7d\xbe\x78\x11\x0d\xec\x9e\x1a\x0c\x3a\xf5\x1c\x54\x93\xca\x6a\x4a\x2f\xd0\x5a\xff\x49\x4c\x8c\xc6\x28\x23\x6f\xc7\x72\x7c\x8f\x4a\x59\x47\x12\xe5\x59\xc8\x87\xea\x38\x0b\xb0\x3e\xd7\xa4\xc7\x4a\xb3\x6b\xfd\x7d\x09\xaa\xc6\xcc\xda\x7e\x39\x84\x06\xe5\xb5\xed\x37\x3c\xc0\xa9\x25\x3f\x22\x08\x0f\x2a\xfa\xb8\x56\x87\x71\xa3\x0f\x26\xbe\xba\x90\x48\x49\xbd\x72\x8e\xdb\x1b\x6d\x26\x76\x57\x40\xc3\x74\x0a\x34\x1b\xae\x74\xf5\xe4\x8e\xab\xa7\x32\xe5\x90\xfb\x2e\x05\x26\x05\x80\x7c\x24\x46\x66\x94\x26\x05\x3f\xdb\xb2\xff\xe2\x03\x05\x24\x92\x6c\x3d\x23\x72\xb5\xf7\x4a\x8b\x8e\xda\x36\x0a\x01\x9f\xaa\xe8\x20\x89\xd8\xd3\x13\xb3\xaf\x12\x84\x33\x89\x5f\x90\x40\xa8\x1f\x08\x81\xdf\xd0\x9d\x00\x8a\x9c\xb4\xc1\xd8\xce\x81\x11\x6b\x9e\x1c\xf1\x36\x86\x4a\xaf\x93\x8e\xc7\xb6\x8b\xd2\xd4\x5c\xb0\x88\x28\x88\x50\x77\x46\x32\x1f\x8b\x3b\x66\x13\xc9\xa9\xb9\x2c\x1a\x47\x51\xbe\x58\x84\xd5\x74\xf9\xcb\x5f\x2c\xfc\x54\x8b\xfb\x93\x05\xf9\xb9\xb8\xdd\xf7\xdd\x25\xd6\x3e\x9b\x4d\xcd\x58\x10\xd6\xac\x9f\x51\xe0\xaa\xd4\xe7\x9d\xb5\x07\x5a\xe0\xfe\xba\xa8\xc5\x5b\x35\xe5\xdd\xc4\xe4\x9a\x58\x2c\xe1\x13\xab\x16\x91\xda\x48\xbb\x17\xe2\x7b\x99\x77\x7a\xec\xc9\xdd\xe8\xf4\xc3\xaf\xd1\xb4\xf9\xbd\xd7\xa0\x99\x63\x1f\x9d\xc1\x80\x19\xfd\x67\x48\xe3\x2a\x46\x2e\x5d\x42\x8f\x29\x2a\x78\x2f\x1f\x0c\xe8\x11\x95\x8b\x4a\xec\x7a\x62\xdb\xae\xff\x96\x6b\xf7\x9a\x25\x59\xb1\x20\x2c\x40\xa3\x71\x60\xe4\xc1\x00\x2b\xf9\x2f\x30\x02\xa0\x7a\x4e\xa5\xac\x17\x68\x61\x0f\x1e\x21\x76\x94\x12\xef\x82\x49\x13\xd3\x83\xa0\x27\x5d\xf8\x82\x7e\xf9\x39\xcf\x3f\x17\x63\x32\x89\x9f\x56\x2c\x5f\x15\xa2\x5c\xbb\x22\x93\xb2\x44\xa3\x66\x87\xc4\x7b\x2a\x48\x58\x12\xe7\x3a\x02\x82\x3d\x2c\x1d\xee\xc0\x76\x6a\x5e\x9e\x15\xc7\x7d\xd7\x4c\x7c\xa1\x8a\xa6\x55\x29\xe3\xf1\x0e\x26\xdd\x75\x73\x75\x9f\xc0\xdd\x4d\x95\xa8\x82\x2f\x80\xa8\x23\x51\xb1\x4a\x29\x0f\x83\x57\x01\xc2\x2c\xe6\x63\x7d\xba\xec\x1f\x1a\x4c\x28\xe7\x65\x1c\x4c\x83\x21\xc3\x3c\xfa\x6b\x4e\x33\xc8\x56\xfa\x9a\xad\x20\xc6\x5c\x98\xa9\x06\xc4\xa5\x0c\xc2\x2a\x36\x6a\x8d\xa1\x25\xc3\xeb\x58\x22\xa9\xc1\xab\x0c\x03\x03\x43\xda\x7f\x48\x8a\x7e\x96\xf3\xfe\x22\x5f\x67\xf3\xfe\xc3\x1d\xc9\xfa\xa2\xcf\x68\x76\xdb\x5f\xaf\xfa\x49\x1f\x7a\xb4\xaf\xcd\x51\xa3\xfe\xf5\x1d\x2d\xfa\xb4\xe8\x2f\xf3\x82\xf7\x53\xfa\x99\xa4\x8f\xfd\xf9\x1a\xa4\xdb\x65\x92\xad\x93\x34\x7d\x54\xf7\x4d\x9c\x26\x5c\x90\x49\xb2\xbe\x04\x7e\x15\xbc\x42\xd4\xbf\x22\x64\xd4\xbf\xe3\x7c\x35\x7a\xf5\xea\x96\xf2\x88\xe6\xaf\x4e\x7f\xf9\xb8\xca\x8e\xed\x3d\x5c\x59\xb7\x56\x66\xb0\xc1\x90\xa3\xcd\xc6\xfb\x21\x43\x65\xc8\xb1\x18\x08\x2b\x00\x02\x2d\x31\xb1\x0c\xd1\x3d\x88\x6d\xfc\xff\x8d\x3d\x03\xbc\xe2\xa5\xb4\xd5\x96\xdc\xa8\xd3\x13\x82\xa5\xda\x6c\xb6\x27\x02\x13\x82\x8e\xab\xa7\x1d\xdb\xf1\x19\x60\xd4\xcf\x5a\x4a\xea\x78\x0d\xf6\x00\xf7\x44\xea\x3a\x06\x03\x52\xdd\x92\x1c\x59\xcf\xf2\xae\xce\xdc\x98\x00\x50\xa3\xe3\xf1\xe9\x15\x0d\xb4\x10\x27\xa6\x93\x92\xe2\xc4\xa3\x14\xf2\xc4\x93\x16\xfc\x84\x10\xf5\x70\x47\x67\x77\x3f\x1e\x6a\x9c\x30\x21\x23\x41\x00\x96\x5d\x9e\x53\x9e\x6d\xeb\xcf\xea\x26\xb7\x5f\x88\x2c\xfd\x8a\x59\xed\x2f\x13\x31\x33\x38\xcb\xe7\xeb\x19\xe9\xcf\x58\x5e\x14\xfb\x05\xe5\xa4\x2f\x01\x9d\x44\x9e\xfb\x75\x9a\x09\xd9\x90\xa6\x94\x53\x52\xbc\xee\xaf\x52\x92\x08\xf6\x3d\x03\xf5\x0f\xbf\x4b\x78\x1f\xf8\xca\xa2\x7f\x43\x44\x86\x1b\x98\xb5\x09\x23\xfd\x15\x88\x9e\xe9\x63\x5f\xda\xd6\xcc\xa3\xfe\xbb\x9c\x29\x8c\x92\x6c\x91\xb3\x25\xd4\x1b\xf7\x69\x36\x4b\xd7\x50\xc1\xbb\xfc\x41\xcc\x5a\x65\xbf\x05\x5c\x5c\xff\x21\x61\x19\xcd\x6e\x71\xbf\x20\x04\x26\x69\x31\x7a\xf5\x0a\x46\xfc\xaf\x45\x34\xcb\x97\xaf\xac\x13\xa5\x78\x75\x7f\x18\x7d\x79\xf5\x3f\x78\x3e\x9b\xde\xc8\x46\xef\x43\xa3\xf7\xab\x46\x47\xfd\x2b\xd9\x0d\x8b\x05\x99\x71\x32\x1f\xf5\x83\x3f\x0f\xc9\xf0\xcf\xc1\x9f\x15\x5a\x9e\x71\x0b\xf5\x0e\xa2\xde\x07\x5c\xef\x85\xd1\x32\xa1\x19\xec\xbe\x15\x0c\x9f\x1b\xe7\xcf\x7b\x48\x2b\x05\xe9\x98\x4c\x7a\x4a\x24\xce\xac\x9b\x65\xc1\x7d\x00\xd3\x9d\xa1\x52\x85\xdf\x31\xae\x9f\x00\x09\xe9\x4a\x43\xbe\x03\x8b\x2a\x98\x8a\xcd\x46\x63\x14\xba\xde\x97\xbe\x3c\x79\x23\x4f\xd1\x56\x0e\x6c\x69\x0e\x38\x60\xd1\x46\x5e\x24\xcd\x9d\xa4\x75\xff\x46\xf7\x26\xb0\x8a\xeb\x63\xd2\xb6\xd5\x3b\x77\xd3\x3a\xe6\xbb\x8d\x31\x64\xc6\x04\xc9\x04\xb8\xda\x3e\xa6\x7a\x38\xd7\x12\x01\x0d\xcb\x70\x83\x56\x09\x05\x26\x8e\xf5\xaf\x57\xa1\x94\x68\x00\x30\x63\xbb\xce\x06\x83\x90\xc5\x00\x2c\xd4\x03\xf3\x61\x69\xc7\x20\xd7\x78\x2a\x64\x20\xab\x8c\x75\x35\x72\xd2\xe5\x1b\x40\xc9\xd5\x9b\x4b\x08\x14\x3c\xab\x5e\x58\x0e\xdb\xbe\x01\x9e\x89\x36\x8b\x5e\xaa\x92\x85\xa8\xac\x95\xe0\xb8\x5f\x6f\xa3\xd2\x4c\x2d\x89\x2d\x41\x3e\x69\x71\x04\x58\x28\x18\x36\x3d\x15\x94\xe2\xa7\x79\x5a\x56\xa0\xe3\x95\x76\xa8\x12\xb8\xd4\x9b\x90\x4b\xf9\xfa\xb5\xab\x9a\x78\x8d\xe8\x22\xe4\x16\x0e\x96\xd1\x12\x48\xd8\x45\x92\x9e\xab\x3a\x3a\xe8\xdd\x36\xd2\x5b\xde\x40\xf3\x49\xfc\x98\x69\x85\x05\x14\x48\x1e\xfa\x57\xc4\xd8\x50\x24\x66\xd2\x63\x5e\x5a\x66\x3a\xd6\xe4\x18\x4f\x70\x56\xcd\x10\x07\x22\x4e\x07\x16\xdd\xb1\x7b\xec\x65\x9b\x4d\x16\xd9\xe1\x76\x9c\xdf\x64\xbe\xd9\xb8\x7b\x89\xa9\x48\x6a\xb3\xb7\x8e\xbd\x88\x9c\x68\x0e\x46\xd2\xac\x6a\x65\x2a\xc3\x39\xd6\x14\xa5\x97\xd2\x82\xb4\x67\x3b\x4a\xc3\x2d\xd7\x1b\xb2\xc8\x19\x09\x85\x3c\xc2\x0a\x18\x1d\x84\xa5\xa3\x76\x36\x3f\x5e\x80\x79\x18\xe8\x39\xd4\x97\x52\x42\x31\x5a\x18\x67\xe6\x0a\x46\xed\x00\x83\x41\xa8\x9e\x2c\xac\x23\x35\xe7\x36\x9b\xd6\x4f\x57\xe6\x52\xc3\x93\x24\xff\xfb\x79\x87\x54\x45\x87\x44\x79\x87\x34\x0f\xe4\xe6\x33\xe5\xb5\x84\x42\x94\xaf\xe6\xe5\x62\x37\xc3\xd4\x06\x27\xf2\x5c\xcb\x04\x23\x8b\xcb\x45\x20\x16\x57\xe5\x75\x16\x32\xe0\xf2\xd5\xb0\x3e\x49\x27\xb2\x11\x89\x8c\x37\x99\x4a\x80\x2b\x37\x34\x5a\xfa\x65\x0a\xa7\x0c\xbd\xf1\x9a\x6c\xfb\xf2\x8d\xde\x7a\x65\x4c\xbb\x30\x8b\x0a\x08\x07\x25\xe6\xb4\x89\x2d\x84\x8c\xde\x0c\x02\x53\x0b\xba\xd2\x19\xc9\x10\xdb\x6c\x72\x55\x43\xbd\x65\xe4\x06\x5c\x59\xe6\xe9\xc2\x91\x36\xc0\x74\xba\x79\xfe\x75\x41\xe8\x91\x26\x95\x2f\xf6\x89\xa9\xc5\xa4\xd0\xd7\xff\x3c\x02\x15\x11\x99\x63\x1e\x49\xdd\x9f\x52\x6b\xe1\x27\x5a\x88\xfd\x7d\xb4\x77\x80\x95\x39\xe7\xc8\x08\x20\x8d\x7b\x60\x63\x25\xbe\xdb\x18\x4a\x9a\x82\x06\x2b\x46\xa4\x69\x55\xe0\x31\x92\x72\xac\x48\x23\x93\x14\xef\x39\x86\x62\x96\x68\xa4\xee\x30\x4f\x92\x4c\xc8\x42\x95\xfc\x42\xfa\x49\xdf\x0c\x71\xff\x81\xf2\xbb\x7c\xcd\xfb\x49\xdf\x6c\x5d\xfd\x8f\x4d\x0e\xf5\x31\x5f\x03\x4b\x0a\xbb\x94\xe0\x34\x65\x38\xd2\x61\x00\x04\xfa\x89\xe2\x55\xfb\x26\xfa\xcd\x2b\xcd\x05\x44\x01\x2a\x2d\x43\x2d\x6d\x95\x25\x78\xf0\x25\xe8\xeb\x79\x42\x53\xd7\x52\xdb\xec\xa6\x12\x9d\x4d\x19\x5f\x19\xdc\xc1\xea\xbc\x83\x60\x1c\xaa\x63\x1a\x41\x3a\x30\x81\x0b\x24\x19\x6f\x8c\x94\x58\x19\x3f\x77\xf5\x2a\x64\x7e\xaf\xc2\x2c\x3e\x7c\x9d\xfd\xc0\x01\x24\x99\x8d\x33\xd7\x4f\x2d\x9b\xf4\x76\x0e\xb9\x3a\x24\xc1\x33\x40\xfa\x12\x78\x6e\x1a\x28\x32\xfc\xa7\x45\x84\x81\x51\x99\xaf\xaf\x5a\x02\xc9\x8e\xc9\x44\x45\x78\x55\xf6\x08\xd2\x0a\x3d\xb3\x03\x35\x86\x6a\x52\xab\x98\xc6\x70\x81\xa5\x0f\xf2\xe7\x79\x05\x39\x6b\xb2\x33\xb2\x98\x9d\xeb\xd5\x8a\x91\x29\x53\x4b\xa0\x7b\xae\xbb\xa4\xd0\x2e\x02\xcf\xc9\x46\xb3\xe9\x3c\x5f\x3e\x27\xc7\xbc\x0a\xc6\xf7\x72\x0f\x24\xd7\x3b\xec\xc9\xac\xe4\x11\xb7\xb6\x92\xb7\x17\xe7\x23\x03\xb8\x21\x06\x5d\x1b\x9d\x54\xfb\x4d\x55\x99\x51\x05\x9f\xe1\x44\xe0\x7a\xde\x90\xbd\x52\xf9\xbc\x43\xe7\xd3\xad\x75\x33\xaa\x7f\xf2\x7a\xfd\xa1\xa7\x6a\xa3\xe2\x95\x0e\xe7\xf7\x7c\xdd\x9f\x25\xd9\x9f\x79\x5f\x50\xb6\x72\xf6\xf3\x35\x2f\xe8\x9c\xf4\x61\x66\x13\xb5\x59\x89\x8d\x48\xc5\xfe\x0a\xda\x0c\x2e\x2d\x6c\x62\xaf\x9d\xb1\xf7\x26\xa6\xb4\x02\x6a\xa8\x81\x62\xcf\xf4\x44\x6c\x9b\x38\x1d\xe3\x6d\xc8\x0e\x7f\xd6\xdc\x94\xa3\xf7\xd2\x98\x3b\x3a\x86\x92\xb6\x29\xaa\x66\xdf\xee\x11\x64\xbe\x11\x14\x02\x8a\x3b\x84\x99\xd2\xbd\x29\x45\xc7\xdc\xc4\xcf\x44\xfe\xa1\xe9\x52\x80\xce\xb7\x95\x7a\x89\x70\x7d\xdd\xd1\xaf\x59\x29\xce\x86\xd3\x6d\x3c\x9f\xb1\xfc\x74\x16\xb6\xce\xd2\x3c\xb7\xd0\x0d\xab\x53\x53\xaa\xff\x5f\xbe\x07\xd5\x07\xbb\xda\x55\x9e\x9a\x03\x01\xc1\xd0\x0d\x77\x60\xac\xef\x89\xef\x12\xb3\x9e\x16\xae\xf1\xc8\x16\x63\x68\xc1\xad\xa9\x05\x4a\x54\xdc\x0d\xf0\x7a\xa2\xd1\x22\x4d\x6e\x6f\xc9\xfc\xcc\x34\x1a\x85\x01\x74\xa2\xbc\xb6\x8d\x82\x21\xc7\xd2\x52\x73\xc4\xb0\xe8\xc9\x11\x29\xb1\xcf\x21\x39\x03\x35\x3d\x0a\x09\xc4\x94\x00\x26\x40\x22\xdf\x4a\x23\xfe\xda\xc4\xc8\xd1\xf3\xee\x68\xbc\x47\xca\xb3\xfc\x6b\xbe\xc5\xea\xb7\x67\xe4\x57\x4d\x0b\xc7\xae\x90\x56\xd3\x42\xda\x54\xb6\x8e\xb3\xbc\x2b\x97\x0a\xa4\x2f\x94\xb7\x25\x5c\x67\x76\xd2\x6f\xdd\xfb\x36\xf7\xf0\x22\xf6\xa3\xb1\x04\xab\xa1\x79\x99\x8c\x51\xef\x50\x5e\x05\x79\xa3\xb5\x96\x67\xed\x3e\xd8\xd6\xfd\xf7\xab\xdb\x34\xbf\x49\xd2\x62\x9f\x91\x22\x4f\xef\xeb\x2d\x95\xf7\xe5\xed\x81\xdd\x5e\xea\xd9\x65\x42\x61\x75\x90\xd7\xec\xda\x42\x0f\x27\x29\x9d\x27\x9c\xec\x0b\xc6\xd4\x4b\xe2\x36\xa5\xcb\xe5\x0e\x38\xce\x2e\xfd\xdd\x1a\x53\xf0\x2b\x23\xcf\x62\xaa\xb4\x33\xb1\xd7\xb9\x4a\x7e\xab\x82\x14\x62\x8e\x4a\xa5\xea\xf2\x04\xab\x4d\x1a\xc1\x6a\x25\x83\xbe\x4a\x58\x01\xd1\x57\x25\x76\x30\xcc\x9c\x06\xe8\x4e\x89\x93\x28\xcb\xd9\x12\xdc\xca\xfd\x77\x24\xf2\x26\x73\xa4\x6e\x32\x0f\x26\x38\x8b\xf9\xd8\xdc\x63\x9a\xfb\xa4\x60\x2f\x8e\xd9\x11\x1b\x06\xa3\x60\x28\xe4\x01\xf0\x01\x0f\x5f\x85\x7f\x44\x9b\xe9\x66\x1f\x45\xaf\x6e\xb1\x57\x24\x9b\xdd\x25\xec\x98\x87\x87\x28\xe2\xf9\xa7\xd5\x8a\xb0\x93\xa4\x20\x21\x2a\x91\xd8\x7d\x93\x48\x4d\xcb\x66\xd5\xb4\x67\xa4\x69\x26\xd8\xc4\xc4\x4c\xe7\x90\xa1\x93\xc5\x07\x3b\x36\xc1\x38\x53\xf0\x26\xf2\x39\x64\x08\x61\xf1\x53\x49\x35\x2a\xef\x05\xbf\x23\x4c\x7c\x03\x23\x67\xdb\xde\x04\x33\x80\x78\x4e\xaa\x62\x5b\x31\xab\x6b\x03\x00\xa2\x53\xd8\xf2\x25\xae\xbd\x87\x70\x18\x38\xb1\xde\x74\x1c\x1b\x0a\x63\x83\x93\x98\xe2\xc2\x44\x06\xb6\xc3\x0f\xcb\x28\xd0\x08\xaf\xe3\xc4\x35\x63\x7a\x15\x20\x9c\xc6\x60\xe5\xb4\x3e\x4a\xa2\x22\xa5\x33\x12\x1e\xe0\x35\x02\x01\x1b\xc4\x4a\x67\xa8\x07\x03\x99\x56\xd6\x66\x16\x27\xd6\x9d\x77\x2f\x89\x67\xe3\x99\x75\xe7\x2d\x95\x87\x10\x02\xbb\x42\x31\x40\xe1\xcc\x14\xb3\x7f\x88\xd4\xdd\x77\x14\x20\xd4\x53\x75\x77\xc2\xec\xa2\x70\x21\xc3\x5a\xdc\xc5\x01\x68\xa3\x24\x10\xff\xb9\x78\x1c\x49\xd2\x42\xfc\xa4\x8b\x47\x24\x78\x6b\xba\x08\xf7\x92\xcd\x66\x8f\xf9\x2d\xb1\xcf\x32\xd8\x46\xfa\x3a\x6a\xe6\xa8\xff\x9f\x10\xf9\xeb\x3f\x71\x7f\xb9\x2e\x78\xff\xc6\x48\x06\x8b\x9c\x2d\xfb\xff\x29\x56\xdc\x48\x74\xe0\x7f\xf6\xcd\x0d\xc4\x93\xc9\x4c\x30\x7c\x67\x58\xbf\xf9\x4d\x6a\x41\xc0\x3b\x93\xe2\x39\x65\x22\xeb\x28\xc5\xf0\x27\x01\xab\xff\x51\x81\x1b\x53\x75\x14\xa8\x57\xc1\xf0\xae\x14\x13\xc0\x0d\xb3\xe5\xc5\xdf\xf1\x2d\x84\xc6\xe2\x8c\xe3\x98\x41\x8c\xc7\x23\xf3\xae\x9f\xf0\x7e\x30\x64\x91\xa7\xca\xd5\xf2\xfd\x43\xac\x5b\x31\xa4\xa3\x90\x8b\xb5\x95\xe7\x7c\x18\x44\xc1\xb0\xde\xdf\xa0\x05\x44\xf5\x7c\x01\x82\xd8\xd6\x24\x85\x19\x03\xe5\x8b\xd5\x37\x8c\x1b\xd9\x21\x14\x29\x82\xcb\x87\x04\xe2\x6b\x5d\x37\x82\x6a\xdb\x9b\x86\x15\x33\x02\x27\xd1\xba\x20\x97\xf9\x9a\x13\xf6\x21\x59\xd6\xb3\x04\x37\x49\x41\x67\x01\x18\x67\x42\xc8\x0b\xf9\x27\x0e\x82\x91\x7a\x92\x7f\xea\x55\x9f\x06\xc8\xda\x7e\xae\x55\x9f\x79\x57\x61\xb7\x0e\xec\x19\xf6\x11\xa2\xde\x69\x8a\x48\xf3\xa7\xb5\xb7\xd0\x43\x73\x32\x4b\x96\x44\xae\x15\x8e\xec\x0a\xb5\x5d\x2f\xc2\x4c\xa8\xf5\x47\xa8\x11\x2d\x9c\xdd\x8d\xd8\xe4\x4e\xf2\x8c\xb3\x3c\x4d\x09\xfb\x86\x44\x21\xf9\x37\xa4\x77\x2e\x66\x92\x2f\x9e\xa1\x3b\x99\xe4\x78\x5a\xfd\xad\xf6\x40\x02\xb3\x57\x4d\x31\x45\xf2\x67\x92\xae\xb6\xb4\xb9\xbd\x2e\xf0\xaa\x73\x5d\xea\xcb\x45\x86\x5b\xed\x56\x45\xb1\xbf\x75\x29\xa8\x03\xc5\xcf\x59\xfe\x90\xbd\xcb\x99\x98\xa1\x2d\x66\xe3\xdb\x8e\x0c\xda\x28\x54\xb0\xdb\x62\x5f\x95\x81\x47\x43\x3a\x0c\xfe\x14\x20\x5c\xb4\xf0\x1a\x78\x1d\xbb\x37\xf0\x38\x8d\x0f\x5e\xa7\x3f\xac\xb5\xe9\x6d\xaa\x4d\x6f\x67\xf1\x7a\x9c\x82\x2a\x33\x91\xd1\x41\x66\x08\x15\x63\x05\xc5\x95\x64\x85\x58\x22\xd7\xb9\xd1\xcd\xbe\x5b\xa7\x69\x06\x1b\x1f\x9e\xa1\x49\xbc\x77\xa0\x2f\x15\x0a\xd1\xea\x6d\x39\xbc\x37\xc3\xcd\x56\x66\x31\xb7\x4e\xaa\xbf\x30\x1d\x21\xd1\x58\x29\x01\xd7\x23\x97\x6c\x52\x08\x76\x4f\xac\xd8\x4c\x06\xb3\x4f\x94\x33\x20\xc2\xb3\x38\x6d\xf5\x71\xb5\x99\xdc\x4e\xa1\x14\x6a\xb6\x36\x75\x26\x39\x4d\xfe\xfe\x38\x4d\xf3\x64\xde\x9e\xc4\xb6\x82\xdd\xa9\xe4\xd9\x86\x39\x7d\x21\xab\xd2\x11\x47\x5e\x67\xd8\x85\x02\xfd\x3c\xaa\x45\x17\xaa\x79\xf6\x1e\x7a\xa4\x23\x26\xb2\x4c\xbe\x95\x22\x5b\x43\x1a\x30\xe8\xec\x4c\xd7\xce\xb4\x95\x3a\x0c\x60\x67\x88\x7e\x16\xa9\xf4\x5b\x69\x1a\x91\xf4\xd9\x18\xcd\x5b\xe6\xab\x0a\xae\xfc\x7c\xd5\x55\xbb\x13\xf3\xb3\x00\x3f\x2c\x45\x47\x76\x4b\x33\x62\x55\xe9\x05\xe2\x61\x17\xd1\xb0\x88\x0d\x14\xb4\xf1\xf2\xb5\xfa\x44\xde\x4a\xcd\xd6\x05\xcf\x97\x0a\x03\x0a\xde\xd8\xee\x9e\x5f\x03\x27\x60\x15\x15\x4d\x1f\x12\x3e\xbb\x3b\x53\x2d\x56\x1e\x18\xea\xfc\x52\xba\x91\xc0\x36\x79\xdf\xd7\x9d\x23\x2f\x75\x25\x9c\xd0\x93\x75\x9f\x37\xda\x3b\x2c\x51\x89\xa7\x37\x79\xce\xaf\x1e\xb3\x99\xef\x2e\x4d\xd6\x53\xa4\x20\xf3\x23\xf1\x63\x14\x12\x38\x0b\xd6\xe6\x24\x07\x57\x40\x65\x7c\xf8\x08\x36\x99\x91\xd5\xfc\x23\x59\xc3\xea\x45\xec\x7c\x1e\x35\x3e\x37\xda\x6d\x7d\x84\x80\xb4\xf2\x35\x88\x6c\xac\xf2\x4b\x8d\x18\x70\x19\x38\xd0\x09\x02\x2b\xb1\xa7\x37\xd9\x3a\xd3\x5d\x59\x85\xfd\x67\x85\xea\x56\x13\xf3\x39\x99\x71\x7a\x4f\x6c\x67\xc8\x9a\x1b\x80\x71\xd5\x95\x7d\x14\xef\xc9\xd0\x3e\xda\x45\x52\xf7\x4b\x13\x28\xca\x42\x54\xa9\x75\xa1\xa4\x37\xd5\x17\xa1\xd3\x29\xc0\x45\xc9\xf6\x49\x03\xc8\x59\xbe\x5c\xad\x39\x99\xa3\x96\x18\x8d\xe6\x7e\x5f\x65\x92\xb7\xfa\xa5\x60\xdc\x93\xf9\x45\x96\x3e\x86\x08\xcf\xe9\xfc\x44\x9a\x8e\x28\xb3\xbb\x9a\xee\xcd\x41\x0e\xb1\x07\x41\x34\x8d\x27\x8c\x0b\xb6\xae\xe6\x2a\x61\x0d\x44\x64\xa7\x31\x9d\x34\xa7\xf3\x2b\x68\x2b\xa4\x11\x47\xb8\xea\x26\x59\xcf\xc6\x02\x71\xd3\x1b\xc1\xba\x41\x06\x3b\x25\x57\x9f\xc2\x0a\x4f\xe3\xd3\xe5\xfb\xd6\x09\xee\xe4\x70\x68\x99\xbc\xc0\x17\xfa\x26\x40\xc3\x11\x27\x76\x46\xa0\x0e\x15\xa1\x0d\x16\xb3\x1a\x62\xaa\x3d\x39\x71\x60\xef\x28\x9a\x25\x73\xe0\x55\x6b\x09\x9a\x9a\xf9\x0c\x53\xcb\xba\x1a\x2a\x1e\xe6\xb8\x31\x96\x98\x94\xe2\x48\x70\x3a\xa7\xc6\x1c\xcb\x8e\x58\xb3\xb4\xc4\xf7\xb4\xa8\xe9\x68\x2b\xfc\x9e\x5e\xb3\x27\x7b\xb6\x1f\xfa\xd4\xdc\xbd\x4f\xa7\x95\xe1\x9f\xb5\xed\xeb\x9e\x91\x77\xdc\x7a\x3d\xe7\xb1\xef\xb4\xca\x41\x48\x2e\xa2\xe2\x2e\x5f\xa7\x73\x79\x0f\x2a\xb1\x4a\xa4\x1e\xf7\x8a\x70\x0e\xae\xe4\x28\xe2\x77\x24\xf3\x2d\x93\x12\x8d\x78\x89\x8b\x3a\x0c\x0a\x89\x40\x87\xae\xb4\x09\xea\x17\xa8\x45\xae\x0d\xa8\xd7\xf1\x4d\xce\x38\x99\x57\xd2\xe6\x60\x40\xa3\xa9\xac\xf0\x39\x9d\xb1\x3c\xa5\x37\x91\xdc\x39\xaa\x4c\xd5\xcd\xfc\xae\x94\xb2\xca\x39\x2e\x50\x0f\x6a\xb1\xad\xe4\xa3\xca\x62\x83\x44\x4b\x69\x89\x0c\x2a\xb5\xb5\x35\x65\xa8\xb5\x2b\x56\x66\x95\x62\xac\xe4\xc4\xc6\xd4\x9a\xe7\x20\xa0\x8a\x07\x84\xaa\x8a\x38\xd8\x3a\x5f\x7b\x8e\xad\x33\xcf\x49\x56\x96\xa8\x57\xb8\xf6\x05\xed\x1b\xa8\xdf\xf4\xa2\x63\x7c\xfb\xa7\xb2\xc7\x23\x9e\x9f\x56\x33\x4f\xec\x2b\xea\x50\xe3\x08\xce\xaf\xea\x40\x6d\x4c\x50\x5c\xcb\x1c\xa2\xe6\xa1\xea\x90\x28\x08\xbb\xa7\x33\x32\xda\xd7\x26\x7b\x82\x84\x7e\xf6\xe4\x75\xec\x2e\x00\xc5\x47\x2e\xa4\x75\x4b\x50\x3f\xbd\xed\x34\xba\xe3\xc0\xdb\x1d\x07\x76\x77\x1c\xc8\xee\x10\x25\x4a\x37\xa4\x98\x6a\xd7\x2a\x78\xe9\x9c\x82\xe0\x5b\x5f\xbc\xbd\x38\x57\x55\x94\x4b\x4d\x88\xeb\x31\xb1\x7f\x61\xcb\x76\x94\x16\x6f\x24\x83\x77\xa4\xe8\xa9\x9f\xf1\x1b\x19\x35\x34\xb4\x92\x28\x14\xe6\x2a\x8d\x5b\x9e\x79\xaf\x8f\x01\x55\x63\xe0\xaf\x3c\xb5\xdd\x3b\xc4\x6a\x27\x96\x13\x2f\x0e\xb2\x3c\x13\x02\xae\x55\x3d\x67\xff\x90\x1b\x98\xf5\xc6\xaa\xa4\xfd\x5a\xd5\xd3\x49\xa9\x8f\x20\xfb\x65\xe7\x7a\x8a\xf9\xa2\x27\x84\xac\x85\xfe\x15\x57\x1f\x46\xee\x07\x9f\x85\xa6\xa1\x61\xf2\x40\x99\x0e\xc3\xa5\x83\x1b\xb6\x72\x64\x4e\xff\x58\xdc\x96\xdb\x97\x36\x6f\x65\xa5\x97\x4d\xd5\xa9\x55\xc3\xf5\x6b\xe4\x4e\x0c\x87\xbf\x0a\x3d\x1d\x63\x4f\x11\xeb\x3d\x32\x38\x03\xc4\x89\xb6\x69\xad\xc9\xb8\x71\x26\x37\x8e\x47\xeb\x70\x94\x93\x2c\x76\x27\x59\x9d\x05\x8c\x9b\x15\xc4\xce\xac\x8f\xeb\x8b\x02\x13\x7d\x4c\x19\x53\x32\x52\x86\x08\xa7\x71\x61\xc9\x1a\x69\x89\x7a\x7e\x71\xab\x2e\xbb\xbf\x18\x7c\xf1\x2b\x3d\x49\x9d\x0b\xbd\x86\x6d\x41\xbb\x90\xd7\x41\x55\xf1\xd5\x60\x56\x4c\xf2\x97\xfe\x42\x9b\xc2\xa1\x94\x1a\xbd\x94\x0c\x77\xb2\x55\x94\xfc\x4a\x1c\xaa\x96\xa8\x80\x66\x33\xbf\x0f\xd1\x13\xc8\x05\xfd\xba\xca\x4a\x9e\x51\x44\xab\xa7\x90\x35\x7d\x59\xf2\x10\x73\x31\xb5\xc6\xc1\xfe\xcd\x7a\xf6\x99\xf0\xfd\x59\x32\xbb\x53\x62\xdf\xa4\xb2\x6b\xf7\x70\x52\x30\x27\xbd\x82\xef\xa3\xd8\x3f\x6f\xe3\xbb\x86\xf4\xeb\x41\x32\x22\x35\x8e\xb8\x45\x28\x4e\xd6\x3c\x17\x52\x12\x98\xc1\xaa\xfb\x68\xb1\x50\xe0\xb7\x35\x70\x9a\x31\x28\xbe\x4a\x74\xfe\x93\xde\x7e\xff\x14\xa7\x66\x03\x7a\xdc\x6c\xc2\x47\xb1\x59\x2f\xbd\x4e\xc7\x99\x71\x3a\xde\x4b\x6b\x7e\xb9\x83\x41\x12\xa5\xf4\x86\x25\x8c\x92\x4a\xe2\x3e\xc9\x19\x79\x0f\x6f\x1f\x43\x13\xc3\x11\x20\x08\x54\x89\x21\x8a\xa4\x17\x2e\x42\xe6\xd4\x4c\xe6\x34\x23\x45\xf1\x96\x2c\x08\x63\x49\x5a\xc4\x87\x35\x11\x52\xff\xf6\xf5\x89\xf6\x72\x50\x7c\x95\xea\x52\xb5\xf9\x58\x9d\x6a\x76\x4f\x27\x9d\xae\x84\x95\x50\xc9\xb6\xd3\x15\x23\xab\x84\x91\x77\x39\xfb\xa9\xfa\xa8\xa5\x21\x9d\x5f\x25\x7e\x48\x28\x7f\x97\xb3\xb7\x17\xe7\x97\x24\x99\x3f\x86\x00\x8c\x4d\xd3\xb9\xae\x65\x53\x26\x7a\x39\x73\x62\xe6\xf9\x4d\x52\x10\xb5\x93\xda\xfc\xa4\x7c\x65\x42\x32\x69\x74\x2c\x40\xce\x76\xf8\x4c\x0f\x3e\xb4\xaf\x83\x55\x44\xf1\x12\xd7\xf9\xd4\x76\xf5\x88\x97\x8c\xe5\x1a\xe5\xef\xdb\xc6\x9c\x56\xd2\x6c\x68\xfd\xd8\x6c\x66\xea\x09\xe9\x05\x68\xf4\x0d\xa2\xc3\xdf\x9a\x6d\xc8\x70\xd3\xa0\xd1\xf1\x7f\x6b\x11\x55\x9d\xa1\x0b\x91\x32\x45\x9e\xce\x1b\xf9\xa7\x53\x1d\x2f\xda\x91\xe6\x04\xf7\x67\xff\x2e\x71\x6d\x7e\xd8\xe5\xee\xe9\xc5\x29\xff\x46\xb4\x80\x24\x47\xa0\x55\x2f\x66\x77\x64\xbe\x4e\x09\x0a\x55\x68\x11\x0d\xb8\x1d\xcc\xf3\x25\xa4\x0b\x14\xf3\xf5\xa7\x50\x2a\x33\x1e\xe5\x0d\xda\x0d\xcd\xe6\x5a\x34\xae\x92\xa2\x12\xeb\x1f\x8d\xce\x76\x5c\x74\xaa\xe5\x77\xf5\x98\xcd\x42\x30\x50\x5b\x10\x76\xa9\x97\x6a\x73\xfb\x69\xae\xe2\xe1\xb0\xc4\xc9\xfc\x5e\xf4\xd3\xb3\xf2\xed\xef\xe3\x03\x0d\x14\xea\xf9\x0c\x7a\xae\x3c\xca\xb3\x19\x51\x0d\x94\x7c\x20\x9d\xbf\x21\xb3\x7c\x09\x65\x3d\x8a\xf5\x27\x36\x56\x9f\x17\x81\xf8\xf0\x91\xe5\x4b\x5a\x10\xd4\x50\xea\xa9\x0f\x3d\xce\x1e\x9f\x1a\x9d\x30\x13\xb3\x5f\x4c\xf6\xb2\x2d\x9f\x57\x79\xa8\x9c\xad\xad\x1d\xcd\x99\x6d\xf0\xee\x52\x59\x21\xc5\xeb\xe8\xf2\xea\xd7\x8f\x11\x74\xb7\x99\x7a\x56\x09\x32\x86\xb8\x5b\x47\x50\xdd\x59\x2a\x3b\x84\xc1\x7a\xc3\x56\xb7\x8b\x09\x64\xb3\x4e\x96\xb2\xb4\x3e\x46\xa6\xa1\x5c\x1b\x8e\x0a\xe1\xed\xaf\x12\x16\x19\xf3\x12\x60\x86\x0b\x57\x6b\x6e\x37\xc7\xbb\x4e\x7a\x9d\xf6\x7a\xdd\xc6\x4a\x32\x70\x3b\xa7\xf6\x5e\x1e\x0d\x30\x1d\xa4\x61\xa2\xdc\xf9\xaa\x6a\xc1\x27\xb6\x06\x93\xc5\x40\x99\x58\x06\x3b\xf7\x0b\xbc\x63\xe9\x99\x21\x0e\x10\xe0\xcf\x38\x33\xcf\x99\xe1\xec\x51\xf6\x4c\x4f\x22\x30\xd1\x88\x16\xd7\xa4\x10\x0c\x1a\x0a\xd1\x66\x23\x51\x99\x94\xdd\xf5\xb1\xbc\x4c\x87\x4b\xc7\x02\xc9\x5a\x80\xc7\x9e\x79\x7b\x45\x12\x36\xbb\xab\x50\x01\xf7\x0e\x50\xed\x34\x42\x21\x69\x1e\x7c\x47\x5b\x86\x65\xe4\xdb\xef\x90\x3d\xe9\xb5\x42\x1d\x4e\x35\x80\x82\xb2\xb5\x98\xbd\xe6\x20\xe9\xfb\x5b\x5b\x1f\x5f\xe9\x82\xeb\x53\xcb\x9b\xdf\x9a\x6b\x98\xd5\x3b\xd5\x86\x14\x7f\xb9\x12\x66\x77\xe7\x1e\xd6\xeb\xfe\xec\x89\x5a\xe8\x7b\x29\xe7\x74\x96\x3b\xdb\x60\x10\xfa\x3f\x4b\x1e\x00\x6d\x61\x78\x9c\x90\xfc\xfe\x14\x3e\x1f\x4d\x0b\xc2\x5c\x62\x44\xa3\x72\x6b\x29\x2a\x5e\x3f\x6a\x2a\x39\xab\x1b\x63\x50\x73\xda\x7b\xa1\xe8\x04\x8f\x8a\x51\xaa\x3d\x59\xe3\x60\x35\xea\x4b\xc8\xc7\x5b\x75\x93\x59\x04\x75\x10\xbc\x03\x8a\xe4\x0c\x72\x79\x17\x96\x3f\x54\x6b\x3d\xb3\xd7\x3a\x29\xa5\x79\x72\xef\xd6\xd5\xa5\x41\x55\x9a\xba\x34\x77\x2b\xdb\xe6\x7d\xa4\xfd\x87\x6b\xf6\xb9\x5a\xc9\x65\x5f\x34\x60\xcd\xb3\x18\x96\xa5\xa6\x53\xf3\x78\x7b\xe3\x27\xc9\xb7\x79\x23\x43\x79\xa2\x08\x96\x35\x25\x1b\x94\x3f\x92\x46\x40\xba\x7c\x37\x85\x5f\x11\x8f\xd3\xa8\x8e\xeb\x04\x8e\xe6\x7f\x95\x41\x70\x6a\x0d\xb3\xec\x24\xb0\x7d\xc0\x68\xd5\xb5\x5d\x9e\xd6\x8f\x8c\xc4\x6e\x25\xea\x74\xbc\xe6\xf9\x7b\xa3\x34\xf1\x26\xbd\x4b\x8a\x3b\x91\xf4\xe7\xa4\xb8\xdb\x95\x94\x16\x3c\x17\xd2\xc6\x2c\xfa\x59\x3e\xee\xc8\x00\xca\x2f\x3c\x8b\x3e\xe4\x19\xf1\x26\x0d\x0f\xf0\x3c\x5a\x31\x7a\x9f\x70\xb0\x6b\xb8\x17\xe3\xd6\x3a\x2c\x60\x68\x37\x8b\xde\x80\xc0\x09\xf6\x8d\xf5\x21\xd1\x7a\x4f\xd9\x83\xd5\xac\xb8\x92\xef\x6b\xfd\x5c\x4f\x1d\x4c\xcd\x93\x7b\x89\x15\x12\xd8\xce\x56\xf2\xaa\xe1\xb8\x1a\x04\x3d\xbb\xc1\x94\x83\x68\xad\xe9\x4d\x7c\x6b\x69\x5b\x6e\x5a\x2f\xb7\x6b\x1a\x8a\x6f\x8f\xcd\xb5\xd3\x10\x5c\x9a\x21\x78\x4d\x55\x28\x00\x55\x8c\xc9\x24\xce\xc0\xbe\x74\x3c\xc1\xe2\x41\x3a\x96\x73\x84\xd9\x60\xc0\x43\x89\x91\x60\x73\x41\x4d\xaf\x7e\x0a\x46\xa8\x98\x45\x0f\x34\x9b\xe7\x0f\x83\x81\xc7\x01\xf0\xa4\x12\xdc\xb5\xa7\xaf\x18\x6b\xeb\x75\x48\xf0\x93\x04\xd7\x1c\x71\x69\xea\x48\x4a\xd4\xd3\x44\x23\xbd\xc6\x64\xda\x1c\x95\xa2\xae\x83\x01\xd4\x78\xdb\x56\x1d\x72\x60\x30\x88\x3e\x28\xea\x6e\xb7\xa7\x1f\x7e\x8d\x4e\xcf\xdf\x9c\x5e\x4e\xdf\x5f\x1c\xbf\x9d\xfe\x7c\x71\xf1\xcb\xd5\x66\xf3\x54\x62\x1a\x3f\x95\x38\x8f\x69\xaf\xca\x9a\x6f\x1d\xe8\x9a\x69\x79\x2b\x44\x54\x47\xbf\xb5\xe6\x90\x65\x31\x1b\x73\xb0\xd5\x02\xf3\xa6\x0a\xa1\x29\x1b\x1f\x8a\xb1\xfb\x6e\x52\x6a\x37\x37\xb9\x73\x8d\x83\xa4\x28\x08\xe0\x91\xd1\x02\xd6\x89\xf2\xab\x0c\x70\x20\x11\x83\xe0\x65\x30\xb1\x3c\xbd\xc7\x81\xe1\x71\x20\x9b\x09\xac\x5b\xcf\x5a\x45\xdc\x9d\x48\x87\x97\x7a\x4e\xcb\x8f\xd3\x64\x82\xc0\xd6\x13\xac\xd7\x65\x3d\x8b\x5a\xc5\xf5\x5c\xea\x35\x60\x9b\x59\x03\x30\x4b\xc4\xde\x6d\x54\x65\xdd\x4c\x9f\xbc\xab\xec\x19\x9e\x15\xb4\x38\xcd\x24\xa6\x5a\x13\x8b\x04\x56\x94\x76\xf0\x93\x88\xa8\x80\x5c\xc7\x8e\xd8\x68\x6f\x4f\xcd\xb5\x0f\x10\x2c\xf3\xe2\xe3\xf5\xd9\xc5\x87\xe3\xf7\xd3\x77\xa7\xc7\xd7\x9f\x2e\x4f\xaf\xc4\x14\x95\xf3\xf0\xdd\xe5\xf1\xf9\xe9\x6f\x17\x97\xbf\x4c\x2f\xde\xfc\xeb\xe9\xc9\xf5\xf4\xe2\xb7\x0f\xa7\x97\xd3\xe3\xcb\x9f\x3e\x9d\x9f\x7e\xb8\x8e\x75\xba\x9f\xde\x9f\x9d\x9f\x9f\x5e\x4e\x2f\x3e\x4c\xcf\x2f\xde\x9e\xbd\x3b\x3b\xbd\x34\xdf\x4e\x3e\x5d\x5d\x5f\x9c\x4f\x4f\x2e\xce\x3f\x5e\x7c\x38\xfd\x70\x2d\x72\x4f\x3f\x5e\x5e\xfc\xfb\xef\x8d\xec\xef\x3e\x4c\x7f\x3e\x7d\xff\xd1\xca\xfc\xe1\xf8\xfa\xec\xd7\xd3\xe9\xdb\xd3\x93\x8b\xcb\xe3\xeb\x8b\xcb\xe9\xd5\xa7\x8f\x1f\x2f\x2e\x9b\x25\x1f\x7f\xf8\xe9\xfd\xe9\xf4\xcd\xe5\xf1\xc9\x2f\xa7\xd7\xd3\x37\x9f\xce\xde\x5f\x4f\xcf\x3e\x5c\x35\x8b\xb8\xb8\xfc\xed\xf8\xf2\xad\xa9\xe6\xd5\xf4\xb7\xb3\xeb\x9f\xa7\x57\x1f\xdf\x1f\x5f\x5f\x5f\x9e\xbd\xf9\x74\x7d\x5a\x65\x3a\x3f\xbd\x3e\x7e\x3f\xbd\x06\xa2\x6f\x45\x9d\x3f\x9e\x5e\x5e\x9f\xd9\x09\x2e\xde\x7e\x7a\x7f\x3a\xfd\xf4\xe1\xec\xdd\xd9\x09\xe8\xd8\xcc\xa7\xb3\xf3\x8f\x97\x17\xbf\x9e\xbe\x15\xb5\xb8\xbe\x84\xee\x72\x13\xbc\x3f\x7b\x73\x79\x7c\x79\x76\x7a\x35\x3d\xbb\xba\x3c\xfd\xe9\xec\xea\xfa\xf4\xf2\xf4\x6d\x4c\x22\x3d\x0c\x31\x89\xde\x9e\xbe\x3b\xfe\xf4\xfe\xda\x8c\x8c\xbb\x63\x3c\x6d\x23\x34\xda\x3b\xc4\xdb\x6b\x52\xa5\x68\x36\xc3\xfa\xd6\xd2\x07\x55\x8a\xe7\x74\xed\x68\xef\x00\x77\x1a\xb8\x2a\x61\xdb\x14\x68\x92\x32\xd3\xa7\xfa\xd4\x3e\xf9\x9a\xf5\xb7\x26\x6f\x45\x60\xc7\x0a\x18\xed\x1d\x94\x3d\xcf\x38\x65\x95\xf3\x68\xe5\xe7\x94\x61\xb9\xee\x74\x2a\x2b\xec\x59\x5e\x9d\x13\x7b\xe1\x8e\xe5\x29\xe1\x93\xf6\xe2\x98\xa0\xcd\x86\x94\xd6\x84\xa1\x1a\x56\x31\xa4\x5b\x27\x19\xea\xed\x98\x84\x89\xb6\x0d\x33\x84\xda\x26\x51\x45\xaa\x75\xc2\x17\xea\x76\xb7\x22\xd6\x9c\x6f\x15\x19\xcf\x92\x5a\x2b\x27\x26\x8b\x40\xcb\xa4\xb4\xc8\xb4\x2d\xdd\x54\x85\x6d\xa9\x88\x3d\x67\xfe\x56\x05\x3c\x6b\x43\x99\x29\xcf\x91\x66\xa1\x2d\xd3\xbf\x59\x4e\xdb\x06\xb7\x50\xc1\x3d\x2a\xd2\x6d\x0b\xa6\xa2\xd9\xba\xab\xde\x01\xb1\xb9\xaf\x73\xf4\xda\xf2\xf4\x80\xd9\xb5\xe7\x90\x7d\x65\x65\x6f\x5f\x7f\x15\x9d\x2d\x07\x84\x44\x46\x5a\x7a\xea\x63\x2d\xd6\x66\x8d\xec\x63\x68\xd9\x93\x48\xdb\x15\x89\x1d\x4b\xba\x22\xb7\xeb\xf4\xbb\x77\x59\x00\xe3\x7b\xd0\xed\xf4\xdf\x76\x21\x58\xbb\x69\xb4\x48\xcb\x50\xe3\xfa\xe7\x14\x82\xd8\x75\x71\x6d\x97\x92\x88\xe7\x86\x8c\xa9\x4f\x6e\xc4\xe8\x71\x50\x15\x12\x4c\x34\x00\x3f\x80\x7e\x58\x77\xd2\x70\x59\x27\xfd\xfb\x2a\x49\x5a\x22\x8d\x79\x5d\xe9\x5b\x91\x65\x8c\x79\x2e\x7a\xad\x63\x7d\x9a\x94\x20\xe0\xa3\x90\xaa\x40\x1c\x31\x6d\xf5\x4f\xdf\xd5\x4d\x5f\x1d\x89\xf7\x9b\xc4\x98\x66\x4d\xec\x9c\xca\x6d\x45\x1c\x3c\x12\xe8\x5d\xde\x0d\x0a\xc1\x57\x05\xec\x02\x07\x24\x78\xdc\x12\xfb\x19\xd8\xfa\x6e\xf3\x6f\xeb\xad\x78\xcd\xcf\x5a\x92\x15\x9d\x6a\x33\xc9\x8d\x8f\x5c\x2a\x43\x7d\x9f\x1e\x12\xe6\xf7\xcb\x6f\x44\xbe\x6f\xb7\x51\x57\x92\xb7\x05\x4d\xa9\xfa\xb0\xb3\x11\xb8\x26\xa1\xf2\x6d\x35\x30\x37\xba\xdd\x8e\xd4\x2d\x6d\xf0\x2e\x97\x80\xe7\x12\xae\xb2\x6c\x37\xe2\x57\xad\xfb\x2d\x61\xcf\xec\x99\xdc\xd7\x33\x24\x9a\x8a\x51\x3b\x5b\x7c\x2a\x68\x76\x7b\xc5\x19\x5d\xad\xc8\xfc\x9d\x14\x71\xde\xa5\xc9\x6d\x21\xe3\x8b\xbc\x15\x83\xfc\x4e\xd1\x8c\xc1\x16\xb3\xfe\xca\xcc\x1a\xf1\x2e\x26\xf2\x86\x03\x12\xc1\x47\x91\x18\x9c\xbd\xf5\xaf\x2b\x92\xa4\x76\x36\xfd\x3e\x26\x91\xa8\x52\x2c\xf6\xb3\x05\x04\x22\x01\xa1\xd2\x5e\x6f\x49\xec\x60\x98\x14\x71\xd2\x33\xc9\x34\x27\x92\xf4\x14\x01\xcd\x59\x88\x17\x40\x58\x73\x07\x49\x4f\x97\xa8\x8f\x6e\xf9\x46\xd7\x47\x9f\xba\x26\x1d\xd4\x58\x1f\x9f\xe6\xad\x6a\x95\x3e\x17\xc5\x7b\xab\xe9\xfa\x74\x13\xaf\x1b\x9d\xa6\xcf\x2d\xf1\xb1\xd1\xc9\xf7\xca\x84\xa1\x39\x92\xd5\xed\x72\xfd\x46\x7a\xff\x70\x52\xf6\xea\x43\xf1\xd8\x65\x94\x65\xef\x7a\xf6\x99\xda\x86\xf0\x02\x69\xd7\xd9\xaf\x9a\xc4\x55\x98\x80\x0e\xd8\xee\x24\x5a\xd2\x42\xb4\xe0\x42\x9a\x24\x7d\xca\x38\x4d\xad\x9d\x22\xae\x27\x38\x9b\x6f\xfb\xea\x7e\xab\x2d\x8e\xd8\x7f\xbc\x49\x53\x18\x67\xfa\xf5\x9a\x79\x0b\xbc\xad\x2c\xda\xf8\xea\xd6\x33\x6f\x7c\x6f\x34\x34\x69\x1a\x53\x96\x38\x8d\xd7\xae\x4d\x96\x77\x2c\x4d\x77\x77\x03\xf9\x13\x8b\xe8\x3e\xff\x4c\xbc\x3d\xf4\xf3\xf1\x87\xb7\xef\x4f\x2f\x1d\x91\x95\xc7\xd0\x25\xe6\x13\x57\x3a\xa2\x1d\x5d\xc6\x7a\xb5\xc0\x49\x32\x99\x2a\xdc\x77\x00\x3a\x87\x51\xd7\xb6\xe8\xdd\xdb\xb3\xaa\xb8\x42\xa0\x6d\xa4\x20\xe8\x89\x57\x76\x7c\x0a\xde\x80\xc7\xd2\x46\xd6\x53\x29\x38\x06\x5b\xf5\x71\x2f\x58\x08\x3b\x96\xc1\x73\x56\x40\xa7\x59\xde\x18\x85\x7a\xae\xac\x5a\x0c\xf5\xa4\x5f\x31\xed\x95\x3c\x9a\x58\x93\xb8\xa8\x75\x71\xc3\x5e\xad\xc9\x06\x6d\x1d\xff\x77\x9f\x3e\x40\x8c\x70\x21\x7a\x5c\x5f\x5c\xff\xfe\xf1\x74\x7a\xfa\xef\xd7\xa7\x1f\xae\xce\x2e\x40\x8f\x74\xfc\xf1\xe3\xf4\xe4\xfa\xf2\xfd\xf4\xf2\xe2\xd3\xf5\xe9\x25\xc8\x94\xf0\xfe\xfd\xd9\xf1\x95\x90\x37\x7f\xbe\x78\x1b\x13\x8f\xd9\x55\x4c\xa2\x4a\xb6\x39\x3f\xfe\x70\xfc\xd3\xe9\xe5\xf4\xea\xfa\xf2\xec\xc3\x4f\xd3\xf7\x17\x17\xbf\x7c\xfa\x18\x93\x48\x11\x3d\xfd\xf5\xf4\xc3\xb5\xa0\x7a\x7e\x7a\xf9\xd3\x69\x4c\xa2\xf7\x17\x3f\xfd\x64\xe9\xc3\xa0\x46\x6f\xab\x2a\x8a\xa4\x56\x7c\x73\x3d\x52\xee\xcb\xbd\x83\x5e\x7b\x7e\xf8\xa8\x4a\x81\x67\x59\x32\x3c\xba\x95\x82\x57\xbb\x5a\x02\x89\x3c\x7d\x00\xef\x9d\xae\x92\x6f\xbc\x9d\x0a\x9f\xb6\x8f\xc7\x9e\x7b\x1e\x19\x77\xb9\x36\xc6\x57\x25\x10\x6b\x49\x3e\xee\x4b\xe8\xc5\x2e\xa6\xa6\x96\x28\xf4\x5c\x41\xce\xb6\xba\x9c\x27\xb7\xfb\xcb\x64\xf5\x82\x98\xa8\xdb\x71\x6e\x9e\xe3\x32\xd8\xb0\x27\xb5\x0f\x68\x21\x8b\x15\x34\xcf\xf6\x4d\x38\xf4\x67\xd9\xaa\x76\x41\xab\xb1\xcd\x44\xdb\x8c\x44\x97\x96\x91\xe8\xe3\x2e\xa3\xcf\x65\x9b\xd1\xa7\xd7\xe6\x74\x27\xb9\x56\x1b\x52\x43\xee\xd1\x8d\x54\x5c\x37\x5b\xc5\x95\xbd\xea\x36\x57\xe3\x53\x18\xab\x8f\x6a\x0a\x76\xf7\x38\xb6\xf3\xed\x92\x32\x5e\x54\x46\xd1\x2c\xc3\x7b\x0e\xdc\xc6\x34\x32\xc6\x16\x5a\x8c\xa7\x91\xbe\xa3\xfc\xc8\xf2\x2f\x8f\x20\xf6\xe2\xa7\x17\xda\xb7\x3a\x37\xfa\x60\xf5\x47\x2d\xa3\xa8\xcb\x24\x93\xf1\xca\x8b\x35\x73\x1c\x1c\x9b\x25\xd5\xb2\x69\xb3\xd9\xa6\x95\x95\x37\x79\xbc\x77\xf0\x0f\xb0\xfe\x84\xa2\x9b\x8d\x01\x13\x9d\xca\x2e\x74\xe6\x33\x02\x6d\xb5\x7c\x70\x8c\xda\x2c\x6f\x4b\x69\x0c\x61\xbb\x67\xba\x5d\x2d\xdd\x95\xb0\xd5\x0f\xdb\x9d\x3b\xad\x84\x50\x21\xda\x74\x3b\xdd\x45\xa0\x91\x01\x08\xd5\x46\xc8\x6f\xd5\xa1\x2d\xd1\x9c\xb4\x61\x60\x8f\xa2\x15\x68\x4d\xc2\xea\x59\x55\x06\x1b\x14\x55\x54\xd3\x5b\xd6\x63\x52\xdb\x2c\xa8\x99\xad\x43\x81\x35\x3a\x35\x73\x1c\x13\x72\x4c\xba\x51\xae\x2d\x37\x4a\xab\xe3\x00\x81\xcb\x83\xa9\x61\x45\xe1\x84\x98\x65\x04\x71\x79\x93\xce\xaa\xa8\x2b\x65\x98\x21\x05\x42\x6f\x22\x9c\x63\x19\xb3\xd3\x44\xc9\x2c\x86\x43\xc4\xe2\x6c\x4c\xc7\xc5\x64\x82\x73\x30\x1c\x96\x08\x39\x98\x61\x16\xdd\x00\xf2\x3a\x66\x51\xb2\xe0\x84\xa1\x5e\x1e\xf1\x7c\x55\xe4\x8c\x87\xd2\xa7\xcb\x6c\x99\x37\x55\xd5\x9e\x8c\x81\xc9\x88\xe8\xc9\x1f\x56\x2d\x24\x38\xd0\x36\x57\x01\xda\x6c\xaa\x40\x77\x7a\xc2\x73\x0b\x33\x7e\xea\x02\xff\x9b\x1e\x77\xe1\xfd\xa5\xd7\x92\xd8\x6c\x00\x0a\x03\x6e\xea\x9b\xef\x94\x19\xd7\x98\x4c\xf4\x05\xaa\x58\x9b\xe2\x83\x1b\x93\x58\x27\xd2\x66\x74\x95\x05\x12\x43\xa5\xfa\x38\xe6\xd0\x47\x93\x98\x97\x65\xcd\x4a\xc9\x9e\x95\x23\x4f\xb4\x63\xdf\xda\x69\x4b\x58\xcd\x9d\x69\x7d\xba\xdb\x3f\x03\x2f\x51\x99\xc7\x37\x73\xcd\xeb\xbe\x4b\xa4\x65\x9b\x71\x82\x13\xe4\x66\xff\x0f\x9f\x34\x7f\x32\xba\x81\x19\xdf\xb3\x4f\x98\x18\x7c\x33\xad\x20\xf5\x61\xd3\xd8\x08\x13\x8f\xeb\xa0\x6b\x9d\xa5\xbc\x8f\x14\x12\x8c\x05\xf6\x1e\xe0\x27\x21\x4a\xa4\x84\xe7\x99\xf6\x57\xac\x27\x96\x90\xeb\xcd\x74\x55\x95\x2a\xb6\x4f\xdb\x5d\x59\xd0\xaf\x1e\x8f\x48\xcb\xd8\x47\x12\x0f\x00\xd7\x5d\x77\x49\x80\x5b\x42\xbb\xb8\xe6\x58\x0a\x11\xf2\x85\xb9\xc1\x86\x02\x07\x53\x9e\xaf\xde\x93\x7b\x92\xfe\x4a\xc9\x83\x06\x63\x0a\x70\x15\x34\x69\x3f\x5f\xf3\x94\xf0\x7a\x7e\x30\x9e\xd0\xdf\x3a\x58\x83\x59\x59\x1d\x26\x59\xc7\x83\x75\x4d\x9b\xb6\x64\x78\x4e\x49\x95\x05\xd5\x4d\x65\x9c\x15\x48\x2b\xdf\x9a\x79\x57\x5b\xf7\x6c\xcd\xb8\xdc\x92\xd1\x6f\xb3\xe5\x77\x87\x35\xbc\xf6\x22\x52\x06\xb6\xdb\x2d\xc3\xaa\x0c\x41\x87\x62\xf4\xfa\xda\x5f\xe4\x6c\x1f\x24\x89\x5b\x9a\xdd\xea\xb5\xa3\xad\x76\xd9\xae\x99\x6a\x04\x14\x49\x63\x3f\x99\x27\x2b\xcb\x1e\xd0\x92\x32\xb6\x15\x58\x23\x0a\xa1\x44\x6b\x94\x4c\x41\xa0\xc9\x3c\x96\x1f\xed\xf7\xbe\x0a\x34\x17\x64\x7b\x5d\xef\xa2\x13\x5f\x11\x75\x12\xbe\x78\x10\x78\x5e\x99\x10\xbd\x87\xf7\xa8\x0c\xb9\x6d\x86\x27\x79\xe2\xca\x02\x0f\xac\x99\xb1\xd9\xe3\xe0\x82\xe6\xd2\xfe\xa5\xac\xf3\x1e\x1c\xeb\xbc\x07\xbf\xcc\xba\x05\x75\xa6\x93\xff\x63\x43\x00\xf5\xc6\xff\xeb\xe8\x14\xd8\x2a\x28\x77\x44\x99\x31\xc7\x73\x61\xc9\x5d\x69\x38\x36\x7b\x0f\xc4\x12\xa1\xa9\x1e\xb7\x4a\xf6\x2a\x76\xca\x5e\xeb\x1a\xc9\xad\xa2\xdc\x7a\x27\xb9\xb4\xb3\x28\xe7\x15\x81\x66\x31\x8b\xdc\x6b\x4c\xe6\x93\x7f\x58\x35\x2f\x6d\xa9\x48\x70\xf5\x2f\xf5\xff\x93\x81\xa6\x74\x90\x38\xe0\xd7\x7b\xb6\xbf\x53\x52\x90\x1e\xd9\x6c\xb4\xf7\x80\x8d\xbc\x61\x12\xc4\x04\xf5\x2a\xab\x6f\x57\x40\xa8\x9f\xe5\x8b\x24\x4d\x6f\x92\xd9\xe7\x11\x71\xd2\x95\xc6\x95\xca\x76\x96\x62\x55\x10\x8a\xf0\x09\xd0\xbd\xc0\x2b\xa1\x6c\xd8\xdf\xd7\x7d\x7a\x5c\xb4\x8d\x36\x97\x9c\xa3\xc6\x9b\x51\xd3\x11\x28\x96\xd8\xe8\xe0\x7a\xa3\x5e\x55\x16\x99\xac\xba\xfb\x0e\xb9\xe5\x1b\x41\x10\x72\x2a\xa9\x9d\x8a\x9e\x8f\x20\x24\x19\xf5\x34\xd7\x52\xf4\x5b\xb2\x12\xc7\x7a\x36\xa3\xc4\xc8\x99\x0d\x54\x21\x33\x32\x3b\xa0\x7b\x6a\x1e\x18\x3b\xd0\x78\xbe\x52\x42\x6d\x8e\xef\x36\x68\x93\x5e\x43\xb4\xeb\x02\xfc\x53\x61\x5f\x7b\xc4\x2d\xa7\x68\xf0\x53\x32\x7d\xb5\x35\xd4\xb1\xe4\x57\x01\x5f\x5f\xee\xdd\x5e\x2f\xc7\xaf\xc4\xd9\xd0\x90\xa5\x06\x0b\x07\x4a\x82\x88\x94\x60\x15\x6b\x63\xb6\x52\x17\xa9\x3f\xe1\x62\x3f\xe4\x64\x0e\xc1\x34\xf3\x75\xc6\x01\xa4\x55\x52\xe8\xff\x19\x30\x5c\xff\x8c\xfb\x37\x6b\xde\xa7\xbc\x4f\x65\xdc\xce\x2a\xf4\xb6\x8c\x2e\x43\x79\xd1\x97\xbb\x73\x14\x68\x30\x9a\xba\x57\x06\xb7\xc0\x14\x93\xba\x7a\x07\x6c\xd2\x64\xa4\xf3\x12\xb7\x4c\x58\xbf\xd8\x8d\xad\xb8\xe9\x0e\x41\x20\xf7\x7a\xec\x3a\x2c\xf8\x78\x1c\xf3\x4a\xe9\x0d\x5d\x63\xf2\xa6\x21\x35\x73\xa2\x89\xa9\x03\x9d\x81\x10\x21\x61\x3a\xed\xf0\xa0\x4c\xac\x65\xbd\xbf\xed\x9e\xb2\x5b\xf1\x50\x3c\x3c\x94\xea\xeb\xb1\xeb\x3d\x51\x67\x24\xd7\x21\x42\x7e\xb6\x1d\x1b\x3e\x7f\xb4\x1f\x0c\x43\xe6\xe2\x2e\x1c\x05\xf3\x7c\x19\x8c\x02\x31\xeb\x05\x8b\xee\x43\x58\xa9\x97\x55\x84\x08\x4d\x7a\xac\x0e\x3b\xa1\x82\xab\xb7\xa3\x34\x3d\xa3\x9f\x55\x2f\x32\x0f\x1e\x8c\xde\x37\x25\x0f\x58\xc9\x3f\xee\x9d\xaf\x0f\x0c\xc9\xc9\x66\xd8\xec\x9d\xf9\xca\x12\xf5\x66\xdd\xd0\x74\x00\x5d\x60\x30\x08\xbd\x02\xda\xee\x0a\xfa\xe5\x80\x0e\x0d\xab\x8d\xa9\xb7\x7c\x4b\xda\xab\x26\x84\x18\xfc\x06\x97\x6e\x24\xdb\x2d\x79\xd0\xa8\x7b\x21\x7a\x6e\x3d\xaf\x18\x95\x0b\x19\xcc\x9e\x45\x3c\xb3\xfd\x04\x7c\xfc\xad\xe7\xca\xa5\x0b\xa3\xbb\xc3\x35\xa1\xb6\xef\x78\xe1\x95\xc7\x6c\xa2\x83\x8c\xfa\x93\x0a\xba\x22\x55\xcc\xb5\xb7\x82\xb4\x3e\x7b\x5c\xde\xe4\x29\x0a\x83\xd3\x0f\x3f\x9d\x7d\x38\x9d\x7e\x3c\xbe\x3c\xfd\x70\x1d\xb8\xc0\x91\xc0\x54\x3f\xf3\x8a\xd1\xc3\x44\xf2\x18\xc0\xad\xac\x8f\xdc\x29\xa6\x16\xda\xe4\xf9\x8e\x05\x3b\xfa\xb1\xa2\x0f\xa1\x40\xa7\xd5\x6f\x88\xae\x08\xc1\x3f\x8b\xf5\x4d\x31\x63\xf4\xa6\x8e\xd9\xa1\x95\x8c\x14\xe7\x15\x88\x7b\x14\x20\x9c\xc4\xe3\x89\x52\x26\xe6\xb6\x32\x31\xf8\x4b\x10\xc7\x71\x48\xe3\x7c\x5c\x4c\xd0\x51\xa2\x36\xa7\xf1\x7f\xfc\xf1\x47\x34\xf9\x4b\x80\x46\xea\x0d\xd5\x80\x50\x89\x02\x53\xff\xe3\x0f\x71\xc0\xad\x87\x71\x10\xfe\xf1\x47\x14\xfd\x05\x1d\x05\xca\x72\xe7\x69\x25\x4e\x52\x96\x8d\x08\x66\xe4\x96\x7c\x19\x59\x38\xbe\xc1\x7f\x04\xc3\xb5\xc4\xf2\x95\x01\xd3\x46\xbc\xac\x02\x48\x42\x49\x29\xc2\x59\xfc\x54\x62\x88\x46\xbb\xce\x7c\x2d\xb5\x61\x85\x0f\x30\x8d\x0f\x5e\xd3\x1f\x34\x72\xee\x6b\x0a\xd1\xce\xe8\x24\x8e\x63\xf0\xe1\x8c\x29\xea\x31\xe8\x0a\x71\xf4\xe2\x43\x49\xbe\x94\x02\x39\x71\xed\x2f\x15\x8d\xf8\xc0\xa4\x69\x44\x76\x89\xad\xce\x67\x85\x1b\x3f\x6a\x3c\xe9\xb9\x5f\xb5\x99\xc4\x53\xe9\xd8\xa3\x84\xd4\x8b\xa5\xa4\x1d\xa4\x94\x4f\xd3\x8a\x30\x08\x9c\x9c\xcd\x08\xb8\x1c\x85\x79\x4c\xa3\x2c\x7f\xd8\x6c\x68\xb4\xcc\xff\xfe\x41\x3e\xc9\xc8\x92\xea\xc7\xb2\x50\x0f\xf9\x87\xfc\x01\x1d\x49\x90\x82\x90\xa2\xd1\xdb\x84\x13\x91\xd7\x52\x01\xaf\x65\x38\x77\x4c\x95\xc7\x95\xa8\x19\xe0\x22\xd7\x58\xaf\x1f\xe2\xef\xbd\x3e\x5b\xfc\x28\x4c\x62\x8e\x8b\x38\x43\xa3\x30\x8f\x39\x4e\xe2\x0c\x17\x31\x45\x80\x2d\x60\x80\x8c\x4d\x28\x09\xb0\x49\x2d\xf4\x34\xca\xa1\x49\x8b\x78\x16\x92\x66\x20\x9c\xfe\xba\xd2\x4e\x2e\xe2\x38\x4e\x8f\x4c\xf6\x51\xd3\xe8\x88\xb3\x47\x2b\xe6\x83\x48\x96\x69\xff\x7a\xaa\x9d\xa0\x59\x44\xbe\xcc\xc8\x4a\x59\x36\xd0\x72\x41\xb3\x24\x4d\x1f\x9f\x78\x88\xca\x32\x4c\xf0\x02\xaf\x71\x81\x6c\x39\x14\x3d\x39\xa1\x50\xa5\x55\x24\x5d\x84\xbe\xc6\xa5\x3a\x5a\xac\x8a\x92\x97\x6c\x36\x61\xe2\x9f\xaf\x98\x8a\x85\x98\xc7\x07\xaf\xf3\x6a\xca\xe6\xc3\x21\x0a\x79\xcc\xc6\xf9\x04\x45\xb0\x66\x24\x36\x35\x41\x83\x01\x55\x1e\x77\x2a\xc0\x60\xe5\xd1\x3b\x26\x13\x68\x8a\x10\x92\xa0\xcb\x13\x6f\xad\xd6\x78\x16\xd3\x30\x47\x78\xa1\xdc\xd9\xae\xae\x2f\x3f\x9d\x5c\x7f\xba\x94\x36\xf8\xef\xce\xde\x9f\xf6\x16\x83\x41\xb8\x8e\xc9\x30\x18\xf5\x83\xe1\x4c\x95\x84\x85\xd0\x90\xa7\x24\xe2\x74\x49\xc2\x35\x42\xe6\x06\xe3\x4e\x34\x61\x1e\x0b\xb9\x69\x15\x1f\xbc\x5e\xfd\xa0\x4b\x7e\xbd\xd2\x30\xdb\xcb\x38\x19\xaf\x26\xbd\x3b\x59\xf9\xa5\xba\x98\x08\x09\x9e\xe3\x59\x05\xa6\x65\x83\xcb\x99\x05\x2d\xc8\xb2\xf8\xe0\x35\xab\xc8\x32\x4d\x36\x8b\x93\x31\x9b\xf4\x3c\xb3\x31\x93\x57\x1e\x82\xbd\x82\x07\x98\x1e\x33\x7c\x37\x66\x13\x54\x2e\x06\x03\xbb\x31\xa7\xd9\x3c\x5c\xa3\xb2\xf4\xad\xee\xc4\xbb\xe6\x93\xb8\x6e\xe2\x63\xc4\xd5\x5a\x58\xd1\x65\x3e\xa7\x0b\xda\xd5\xe0\xdc\x7f\x3f\xdf\xd5\xfa\xb6\x20\xfc\x5c\x15\x77\x9e\x64\xc9\xed\xf3\x30\xad\x6b\x59\xb7\x5e\x5d\xcf\x92\x55\x72\x43\x53\x4e\x49\x57\x28\x6a\x1e\xe9\x9e\x38\xa9\xf2\xd6\x91\x9e\xe5\x44\x7b\x25\x78\x9c\x64\x27\x0f\xe2\x8d\xfa\xd3\xc1\xfc\x5b\x8a\x4d\xfc\x17\xf2\x78\x02\xe5\x28\x97\x9c\xac\x25\x50\x2d\x60\xd4\x37\xe2\x32\x53\x88\x4c\x7b\x4b\x9a\x30\x6f\x58\xa1\x01\x29\x38\x54\x9e\xdc\xbe\xcb\x99\xee\x3b\xa4\x83\x61\xe2\x44\x7d\x66\xc9\xec\xb3\x03\xa1\x4b\x62\x6a\x36\x2d\x4b\x2e\xe4\xd1\x7a\x35\x87\x70\x0d\x39\x4e\x94\x7a\x49\xcc\xe1\xf5\x92\xa0\x30\x01\xa7\x7b\x9c\x95\xd5\x6e\x4e\xa1\x15\x54\x02\xa1\xc8\xe0\x40\x3a\x0e\xa3\x0e\xf1\x91\x33\x14\x8e\x21\xd5\x04\xa1\x27\x1a\x13\x65\xbd\x5f\xdb\x51\x41\x7f\xa8\x37\x19\x78\x47\x51\x69\x57\xac\x20\x1c\xf8\x7b\x3a\x7b\x4b\x66\x39\x4b\x80\x70\x8e\xb0\x09\xb8\x9b\xa9\xba\x94\xed\xc9\x69\xeb\x44\x58\x73\xe2\xf7\x85\x56\x69\xa4\x1b\x81\x4c\x67\x1e\xa6\xcb\x64\xc6\xf2\x1d\x89\x19\x99\xaf\x67\x64\x5a\xcf\xb3\x63\x0a\xb5\xae\x09\xb2\x5c\xf1\xc7\xce\xab\x01\x52\x6f\x5d\x63\x59\xce\x4f\x9f\x45\x52\x67\xd8\x41\x35\x23\xcf\xa0\x98\x91\x5d\x75\x7c\x4e\xf5\xb6\xd2\xba\xc9\xf3\xb4\x33\x31\x91\x78\x2b\x35\x08\xf9\xdd\x7d\x6f\x12\xa9\xb7\xd2\x23\x7f\x5b\x27\xdd\xab\x07\xa9\xb7\xd2\xbb\x7d\x86\x4d\xd1\xf6\x7e\xbb\xe5\xdd\x07\xf4\x96\x6f\x1f\xcf\xce\x60\xfd\x3c\x4a\xb7\xd7\x2a\x7d\x46\xad\xd2\x1d\xb5\xca\x33\xf2\x5b\xd2\x7d\x1d\xc8\xe4\x3b\xdc\x30\x24\x06\x79\x67\x9a\x3a\xc3\x8e\x78\x07\xca\x1c\x36\xbb\x3d\x4e\x69\xd2\xfd\x68\xac\x67\xdc\x5a\x4a\x92\x75\x8d\xd2\xc0\xa3\x24\xdb\x1e\xa1\x21\xef\xce\x21\xe4\x3b\xa2\x68\xac\x97\x9d\x63\x47\x14\xeb\xe5\xf6\xb5\x0b\x60\x2c\xdd\x68\x2d\x69\xb6\x63\x1f\xf8\xd2\x9d\x56\xf2\x65\x07\xad\xd5\x33\x68\xad\xb6\xf7\x17\x18\x6f\x76\xed\xb0\x9c\xed\x34\x25\x7c\x4b\x17\x8b\xee\x04\x65\xfa\x5d\xad\x7d\xd3\x75\x81\x40\x7b\xdf\x6c\x5f\x1d\x0b\x9a\xf2\xce\x1c\x29\x8b\x64\xf2\x0e\x14\x9f\x51\x49\x9d\x61\x2b\xd5\x75\x46\xff\xd6\x99\xa2\x48\xbc\x93\xda\x33\x6a\x28\x93\xef\xa2\x98\x77\x5f\x1f\x90\x7a\xbb\x13\x9d\xe0\xa8\x0b\x32\xeb\x3e\x1d\x4d\x8e\xed\x32\x42\x9e\xa6\xcf\xa1\xaa\xd2\xb7\xc8\x04\xed\xe2\x53\xed\x26\xbd\x4b\x10\x98\x9d\xae\x4a\xc0\xfa\xf7\x48\x24\x61\xe8\x94\x52\x07\x9b\xdf\xb4\x57\x61\xd2\xfc\x46\x92\xcf\xe7\xc9\x0a\xd7\x44\xc2\xcc\x35\x71\x23\xf6\x95\x9b\x57\x7d\xe2\xa4\x90\x0e\xbc\x83\x81\xe7\x65\x88\xb0\x8c\x36\x7c\xf1\x90\x99\xee\x36\x78\x79\x48\x8b\x2d\xba\xae\x85\x69\x45\x11\xd3\xa3\x46\x90\x5c\x34\x7a\x2a\x2b\x28\x6b\x95\x70\xcc\x27\x71\x86\x9f\x6e\x7d\x80\x83\xb9\x10\x7a\xf4\x7d\x36\xb4\x4e\xe9\xd5\xe4\x85\xae\xe8\x89\x5c\x6c\x2f\x52\xd0\x21\x08\xf5\x74\xec\x3a\x91\xaf\x82\xbc\x36\x79\x01\x0d\x3c\xce\xa4\x66\x8a\xab\xc8\x27\x82\x40\x86\x39\x92\xe0\x87\xd5\x40\xd0\x86\xdc\x2d\x47\x4a\x09\x39\x59\xab\x90\xc3\x31\xdb\x2a\xe4\x64\x38\xaf\xfc\xf3\x9a\x42\x4e\xb6\x5b\xc8\xa1\x31\x8b\xee\x93\x74\x4d\xb0\xc9\x8f\xdb\x73\xfa\xe5\x9d\xed\xb2\xcc\xb7\x17\x87\x8d\xb4\x08\x12\x5a\xd3\x4e\xb3\x52\xc3\x34\x6f\xa7\x71\x06\x03\x0e\xfe\xe6\x10\xbf\x01\xb4\xae\x04\xd4\xad\xd9\x98\x4e\xac\x5b\x59\x3a\x69\x76\x3a\xd3\x0a\x9c\xf1\xc4\x11\x5a\xd1\x93\xba\x0f\x23\xa8\xd4\x85\x7b\xb4\x63\x4f\x52\xc1\xc6\xc6\xf9\x44\xba\xa3\x93\x2f\xab\x24\x9b\xab\x05\x41\x49\x81\xc2\x44\x0c\x81\x96\x40\x85\xe8\x99\x59\x16\x8e\xba\x73\x5d\x97\xfa\x5c\x7b\xd1\x8f\xbd\x5d\x90\x1b\x37\x4d\x9c\xc5\x07\xaf\xb3\x1f\xc8\xeb\x4c\xd7\x45\x05\xa1\xaf\xc2\xa3\xe4\xe3\x6c\xa2\xae\x98\x43\x8a\x4c\xe4\x8d\xd2\x12\x9c\xed\xc4\x64\x82\xca\x09\x02\x25\x14\x88\x86\x9e\xdb\x12\x25\xf3\xeb\xb0\x3b\x64\x18\xa8\xfa\x04\xde\xd0\xe1\x20\xf1\x0b\x52\x10\xe1\xd1\x2e\x0d\xac\x28\x4a\x4c\x8c\xc4\xf8\x95\x85\xed\x75\x2d\x2d\xf3\xc5\x68\xac\x97\xd4\xda\x98\x0f\x79\x46\xb6\xb6\xe5\x45\xc4\xf7\x1a\x04\x25\x3d\x21\x61\xbe\x88\x60\x5f\xfb\x1a\xb6\xd5\x14\x84\xcd\xda\x5a\xd8\x4d\xfc\x5e\x07\xe5\x76\x69\x56\x97\x25\xa0\x21\xce\x54\x19\x20\x80\x3e\xbb\x0c\xef\xdc\x24\x28\x8e\x63\x26\xc9\xde\xf2\x6f\x45\xf3\x47\x43\x91\x7c\x33\x92\xba\x96\xe9\x37\xab\xe5\x0f\x86\xe2\x37\xab\xe5\x0f\xba\x96\x52\x4c\x6d\x9b\x62\x89\x90\x03\x51\x48\x90\x4a\x17\x4a\x64\x3d\x25\x86\xee\xce\x55\x45\xd9\x92\x50\x1f\xae\x80\xd9\xad\x31\x2e\x07\xc0\x5a\x9b\x04\x96\x4d\x56\x42\xc1\xfc\xb8\xfa\x41\x9d\x14\x67\x08\x0b\x6e\x14\xda\xcf\x04\x93\x92\xcd\x5d\xfc\x11\x91\xc5\x77\x51\x0c\x80\x1a\x22\xb5\xe1\xbd\xbc\x09\xf7\x64\xc2\x9c\xd5\x70\x47\x9e\xa1\xff\xeb\xc0\x63\x7e\x15\x22\x49\x83\xd9\x74\x74\xb6\xea\x06\xce\x74\x1f\xab\x6d\xc2\xe3\x49\x50\xdf\x15\x1a\x91\xb9\xaa\x5d\x21\x5b\xa7\x69\x1c\xc7\x74\xb3\x09\x64\x0f\x54\x97\x8b\xf4\x28\x1b\xd1\x48\xf6\x41\x28\x4a\x95\x46\x6a\xce\xcc\x31\x35\xcb\x15\x4b\x23\x6f\x06\x15\xf5\x57\xff\x87\x24\xb3\xbb\x57\xfa\x6a\xea\x28\x8f\x9d\x60\xc4\xf0\x35\xfa\xcb\x9f\x5e\xe1\x20\x80\x1b\x41\x82\xc9\x30\x86\x16\x20\xab\x59\x35\x50\x1b\x62\x90\x6c\x38\x1e\x37\xb8\xcf\x5a\x43\x73\x27\x0a\x2d\x2d\x80\x19\x11\xd3\xff\x08\x5e\x1c\xa3\x90\x5a\xa1\xed\x09\x42\x23\xfd\x1e\x0e\x5b\x6f\x53\x13\xa7\xa9\xb1\xd8\xae\x57\x5e\xa8\x48\x39\x18\xa5\xb5\x03\x3f\x83\xa9\xb0\xaa\x7d\x8c\x42\xee\xd6\xb2\xb5\x6e\x45\xed\xb6\xc9\x30\xd1\x7e\x91\x42\xb0\xd6\x2c\xe6\x98\xc7\xe3\x09\xc2\x72\x0c\x7d\x2d\x81\x26\x32\x3d\x01\xca\xda\x8d\xf0\xb7\x2f\x4e\x8a\xe1\xbe\x12\xd3\xed\x2c\x27\x6f\x67\x39\x79\x83\xe5\x34\xdc\xbc\x5b\x8b\xca\x7e\x55\x86\xb4\x93\xd3\x41\xf9\x59\x5d\x55\x57\x3d\xc4\x8b\x13\x2a\xd9\x4e\x6b\x1a\x62\x02\x78\x48\xd6\xec\x4b\xd0\x60\x90\x78\x33\xe7\x42\x6c\x0b\x09\xda\x6c\xc2\x5c\x85\x78\xc0\x54\x73\xbb\x08\xe4\x5e\x5a\xa2\x92\x44\xc5\x7a\xe9\xb3\x96\xa1\xf6\x01\x63\xdb\x45\x93\x21\x2f\xf1\x81\x54\xc2\x29\x16\xe3\xcb\xb3\x08\x9c\x27\xfc\x4e\x64\x92\xc1\xbe\xf0\xfe\xe1\xab\x03\xa9\x3a\x93\xd4\x6a\x61\xa1\xbb\x51\xa3\x99\xa2\x26\x89\x81\x49\x18\x54\x6d\x25\x01\x36\x92\xd5\x9b\xc7\xd8\x9b\xbf\x80\x9d\x4e\xee\x1f\xc1\xd0\x37\x89\xaa\x01\x80\x22\x80\xb0\x9c\x55\x60\x22\xa3\xf5\x3c\x0d\x91\x5c\x49\x8b\xf1\x77\x71\xdc\x98\x5d\x47\x3b\x8b\xf1\x98\x16\xbb\x29\xe2\x38\xce\x8c\xf9\xca\xba\xd6\x0a\x8a\xa4\x01\x0b\xfd\x5b\x9c\xaa\x87\x96\x0e\xf8\xda\x6d\xdf\x9d\x8f\x54\xed\x86\xb2\x40\x14\x52\xcc\xed\x7d\xb0\xce\x2a\x18\xe5\x4e\xdc\x4d\x0c\xfc\xe6\x6b\xb2\xb9\xe3\x36\x5a\xbb\xa5\xa9\x74\x34\x9e\x94\x62\x39\xd3\x68\x95\xaf\x42\xa4\x37\x9b\x16\x63\xa1\xd7\xbc\xf2\xa5\xe4\x42\x96\x33\x5e\x99\xf1\x9e\x90\xf2\xe8\x98\x6b\xeb\x8c\xcc\x96\x3f\xe9\x22\xcc\xc6\x39\xd8\x14\xa1\x27\x16\xef\x1d\xf4\x6e\x18\x49\x3e\x97\x42\xde\x03\x0c\x57\x25\xf0\xed\x1d\x2a\x81\x6f\xef\xa0\x74\xea\x7c\x8c\xc2\x1c\x95\xb6\xf6\x0d\x29\x43\xb8\xb7\x74\xb1\x78\xce\xb4\xe0\xfe\xe9\xa1\xec\x9e\x6f\xa5\x35\x36\xad\x7e\x71\x7f\xdf\x31\x35\x4d\xec\xce\x64\xbe\xde\x93\x99\xf7\x45\x2b\x69\x04\x6a\xb9\x8b\x05\xf8\x0f\x9a\x49\xc5\xb6\xcd\x2f\xa5\xe6\xfb\x47\xcd\x2e\xc7\x20\x9a\xc6\xdc\x9d\x5c\xdc\x92\xab\xac\x75\xdc\x50\x52\x65\x47\x82\x93\x1a\x65\x8d\x31\x14\x8b\xda\x68\x3a\xe5\x08\xe6\xcc\xb5\x5f\x04\x5e\xc2\xd8\x0d\x6c\x36\x12\xa1\x4f\x75\x73\xc8\xc5\x69\x40\xf5\xa9\xa9\xa8\x7b\x0e\x57\x7a\xd4\x62\x71\xd2\x3c\x67\x9b\x1e\x1a\xda\x63\x06\x41\xed\xac\xd1\xac\x38\x75\xc1\xbe\x00\x0f\x02\x4c\x3a\x20\xf8\xab\xca\x7b\xc2\x10\x50\x47\xf3\xe9\xe8\x41\x7b\xde\xb9\xda\x98\xa3\x89\x24\xa4\xc2\xd2\xad\xeb\x5b\x19\x04\xec\xa7\x96\xaa\x51\x1e\x9d\xf0\xbc\xd9\x58\x0a\x46\x6b\x9c\x81\x44\x96\x73\xba\x78\xd4\x7a\xd1\x93\xbb\x24\xbb\xd5\x31\x6b\x12\x6d\x6e\x3e\xf3\x28\x31\xf7\xe2\x38\x1d\x0c\xd2\x2d\xd8\xe0\x40\x9e\x91\x65\x7e\x4f\x2e\x6e\x0a\xc2\xee\x09\x43\xa1\x10\x69\x66\x9a\xee\x3c\x0e\xfe\x8f\xa0\x09\x91\x51\xf1\x2a\x5e\x84\x6b\x50\x00\x89\x09\xb4\xd2\xb6\x58\xca\x1a\x6a\x7e\x14\x8c\x27\xc1\x48\xad\xe1\xd7\x52\x2f\x3b\x9f\x57\x94\xa1\xca\x4b\x3c\x13\x1d\x31\x5e\x4e\x4a\x92\x16\xa4\x9f\xc6\xab\x96\xf9\xcb\xc7\x07\x13\x4c\x05\x59\x7d\xe0\x64\x23\xfb\xf8\xc9\xec\x71\x71\x0a\x2a\x30\x15\xa5\xd0\x12\xf5\x68\xd5\xaf\x29\x52\xd8\x66\xda\x5f\xa6\xd3\x51\x73\x8f\x8e\xec\xc6\x1a\x2e\xfc\x5e\xcf\x3f\x34\xba\x0b\xef\xf1\xaa\x75\x7f\x08\x49\x75\x4c\x1a\xbd\xbb\x1a\xb4\xb4\x12\x94\x16\x0d\xee\xb5\x39\xff\x8d\xb5\xeb\x48\x88\x1b\xb2\x83\x44\x3f\x1d\xea\x7d\x62\xcc\x70\x16\x67\x9b\x4d\x90\x14\xb3\x60\x62\x73\xa1\x77\xb5\x5d\x17\x6a\xda\xbe\x86\x68\xb5\x83\xc9\x93\x82\x7b\x34\x95\x7c\x9c\x4f\x70\x11\x27\xa2\x1a\xeb\x38\x19\x1f\x4e\x70\x2a\xd9\x4f\xb0\x76\x62\x52\xb3\x65\xf6\x20\xe9\x41\x66\x62\xe7\x16\x48\xce\x24\x31\x4d\xd5\xc9\x12\xcc\x49\x31\x13\x53\x6d\x7d\xb4\x7f\xf8\x97\x74\x94\x6a\x5d\xe7\x41\x89\x04\x0f\x29\x7b\x70\xe6\x48\xc1\xe6\x6e\x64\xeb\x75\x4a\x33\xaa\x60\xf3\x72\x05\x24\xe9\x25\x61\xb7\xa4\xed\xa3\xbc\x65\x68\xfb\xfa\x40\x92\xcf\xd3\x82\xf8\x5d\x16\xbb\x5a\xdc\xe8\x22\x3a\x22\x4b\x2a\xeb\xed\xed\x97\xeb\x40\xf2\xa3\xaa\x6b\x67\xd2\x32\xdb\x56\xca\x53\xb1\x41\x5e\x91\xae\xf7\x61\xd4\xae\x2e\x89\xa0\xab\xed\xf5\x90\xc7\x5c\xc2\x40\x1d\x31\x9d\x72\x64\x90\xa5\x64\xea\xbc\x65\xec\xed\xd1\xe9\x64\x15\x6f\x16\x06\x77\xb9\xa7\xc3\xd7\xfc\x87\xfa\x89\x2d\xb9\x28\xc9\x80\x54\x87\x33\x07\x33\x58\x86\x74\xde\x4c\x63\x36\x7c\x26\x8f\x45\xc8\xf4\xc1\x9e\xd9\x36\xdb\x3a\xee\x83\x38\xd9\x89\xe0\xb5\xd8\x38\x9f\x54\x97\x55\x25\x51\xbd\x1e\x73\x3f\xfc\x0d\xd3\x65\xc8\x64\x9b\x0d\xb7\x2c\xf8\xd9\x96\xbe\x51\xd3\xfa\xdb\x46\x64\x10\x0c\xa3\x54\xc6\x70\x8f\x32\x86\xeb\xfb\x01\xd2\xb3\x71\x45\xec\x4e\xe2\xde\x4e\x02\xec\x8f\x09\x96\x1e\x12\x63\x66\x78\x20\x52\x6e\x69\xa0\x59\x7c\x5f\xe5\x14\xe1\x61\x52\xd4\x14\x3f\x52\x7f\xed\x69\x6d\xe6\x10\x31\xee\xb3\x42\x12\xb4\x38\x87\x52\xef\xdb\x06\xbc\xb8\xba\xae\x49\xe6\x73\x9f\x04\x6a\xe8\xc0\xc1\x45\xf0\x9e\x8a\xe2\x54\x62\xae\x62\x1f\x6e\xcf\x65\xc5\x47\xe4\x82\xc1\xd8\x9e\x5a\x0a\xef\x32\x82\x6e\xab\x33\x88\x0a\x4e\xdb\xfd\xbe\xda\xf6\x09\x61\x2c\x67\xfb\x80\x23\xd8\x06\x00\xa6\xd5\x8d\x37\xc9\xec\xf3\xcd\x9a\x65\x2d\x58\x5e\x3e\x5f\x9c\x93\x35\x63\x24\xe3\x97\xeb\xec\x7d\x9e\xaf\x7c\xb8\xa4\x2a\x76\x0b\x38\x94\xfc\x35\xa7\x59\x7c\x87\x49\x74\x43\x6e\xa9\x83\x28\x98\xca\x57\x92\x9b\x27\xd9\xdc\xfd\x06\xb1\x96\x80\x0f\x56\xc1\xdc\x3c\x05\xa5\xe6\xa3\xd2\x94\xa5\x8e\x5b\x28\xdc\x6e\x5f\xa9\x14\xf3\x6b\xba\x24\xcc\xe7\x77\x9e\x8a\x64\xf2\xab\x92\x2c\x92\x6c\x46\xd2\x66\xfa\xd4\xf9\x22\xd3\xa6\x09\x27\xcc\x4b\x14\xbe\xb4\xd4\x2b\xcf\x66\xe4\x65\x82\x8b\x34\x60\x27\x60\xb9\x2e\xd6\xa9\xb5\x37\x56\x8b\x96\x47\xeb\xac\xb8\xa3\x0b\x6e\xdd\xe7\xe3\xaa\xb3\x2e\xb2\x59\xd5\x61\xdc\xe9\xe4\x8b\x5a\xc5\x1a\x1d\xed\xe4\x75\x1b\x95\x91\x2f\x2f\x94\xc6\x3a\x36\x0a\x14\x5c\x87\xa2\x25\x6e\xdf\x72\x6b\xd4\x7c\x2b\x4f\x8f\x9b\x5c\x74\xd1\x9c\xdc\xe4\xeb\xb6\x76\xea\x8f\x2d\x6d\xe4\x77\x2c\xe7\xbc\x65\x32\xea\x8f\x2d\x79\x6f\x68\x36\x8f\x89\x89\xef\x77\xb9\xce\x62\x12\x55\xeb\x2f\x26\xd1\xdf\xd6\x64\x4d\x0a\x08\x40\x5f\xdc\xaf\xc0\x59\xec\xdf\xc4\x2b\xe7\xbc\xc6\x09\x84\xa8\x53\x28\x99\x61\x10\x0c\x41\x4d\xc6\x92\x6c\x9e\x2f\x43\x34\xd4\x1e\x39\x21\xe8\x7e\xa5\x16\x3d\x88\x02\x1c\x04\x62\xb3\xa9\x53\xd6\x30\xc9\xe3\x2a\x52\xa2\x72\x74\xbd\x66\x49\x56\x50\xf3\x0e\xfc\x02\x03\x1c\x80\x13\xc4\xa5\xfe\xa5\x83\xb5\xe1\x62\xd2\x33\xf5\xd7\x48\xcb\xae\x2b\xf4\x1a\x3f\xa9\x47\x28\x79\x54\x15\x98\x67\x6f\xc4\x46\xe0\x68\xc5\x92\x98\x94\x38\xcf\x4e\xb3\x79\x4d\x6c\x4c\x62\x0e\x1f\x44\x13\xae\x25\x7a\x3a\x8b\x9c\xdf\xfa\xeb\x39\xe1\x77\xf9\x7c\x14\xe4\x99\x02\xc5\x58\xa4\xeb\xe2\x6e\x94\xdb\x70\x55\x33\x7b\xfc\xd8\x3a\xf3\x0d\x9d\x33\x48\xa9\x76\x85\x94\x76\x26\x00\xd0\xd4\xb3\x18\x7e\x8b\x9c\xd8\xf9\xfc\xf4\xec\x29\xb0\xe8\xa9\x99\xf1\x5f\xb7\x72\xba\x51\x66\x2e\x65\xdb\x30\x81\x8d\x33\x9b\x72\x66\x28\xdf\xb9\x37\x14\x5c\xdf\x50\x30\x84\x4a\x97\x71\x50\x6e\xcd\xdf\x2a\x5c\xc2\xee\x78\x49\xcf\x8d\x81\x50\xe8\x60\x4f\xdf\x26\x00\x42\xd6\x1e\x00\x01\xf5\xb2\x1a\x52\x58\x2d\x00\xd5\x08\x00\x4f\xdb\x82\x23\x64\x48\xdf\x70\x5a\xbc\x03\x75\x3b\x9b\x33\x9a\x6d\x0b\x0d\xa0\x12\x08\x1e\x4e\x3e\x1a\x9c\x86\x17\x85\x88\xf3\x79\xf1\x7a\x71\xbb\xd3\x7c\x16\x4f\x31\x89\x1e\xe2\x07\xe8\xb6\x59\xb2\x24\x29\xfd\x3b\x89\x4f\xc5\xcf\xa4\xb8\x23\x4c\xfc\xfa\x02\xdb\xb9\xfa\x74\x25\x7e\x80\xdd\xd3\xe2\x31\xbe\x00\x91\x7e\x4e\x58\x31\xcb\x19\x89\x8f\x21\xe1\x8a\xf2\x04\x92\x7e\xde\x22\x35\xdd\x12\x7e\x05\x4d\xed\x6e\x4d\x5d\x65\xd9\x2e\x90\x15\xcf\x27\x5d\xd8\xa4\xd5\x78\xbe\x1a\xf7\xa7\x93\x57\xb7\x4a\x0d\x96\x45\x00\x59\x15\x1e\x92\xef\x7d\x97\x5f\xa7\xf2\x6e\x5e\x6e\xef\x14\x07\xfb\xe0\xb2\x9c\xc4\xaf\xc2\x3f\xf6\x37\x7f\x4c\x37\x7f\x44\x9b\x3f\x0a\x34\x0c\x23\x74\xf4\xea\x16\x17\xf1\xab\xf0\x3f\x36\x7f\xbc\x42\xe1\xf8\x78\xff\xff\x3f\x41\xaf\x6e\xf1\xba\x4b\x29\xd5\x3d\x6c\xd2\x58\x70\x7a\x3d\x1d\xb1\x88\xe7\x9f\x56\x2b\xc2\x4e\x92\x82\x84\x68\x14\x04\x65\x55\xb5\xc2\x4f\x96\xe7\xef\xf3\x07\x9d\x03\x2e\xac\xd2\xf8\xd5\x7f\x88\xba\x4f\x55\xa5\xf1\x2c\x7e\x15\x46\xc8\xdb\x9c\x85\x6a\xce\xe6\x8f\x08\x85\xe3\x64\xff\xef\xd0\xa2\xbb\xad\x2d\xaa\xa4\xcd\xd6\x86\x04\xd3\x60\xe8\x69\x0c\x66\x0d\x23\xbf\x6a\x24\x87\x61\x76\x94\x35\xf2\xa0\x12\x67\x95\xe2\xe8\x55\xe0\x15\xb9\xc0\xb8\x4d\xfc\x67\x3a\x4b\xb0\x32\xe6\xc7\x0c\x33\x2b\xca\xaa\xf4\x8d\x7e\x15\x54\xdf\x17\x6d\x3d\x6b\x55\x05\x7a\x76\x1e\xbf\x82\x4e\xfa\x63\x3e\x51\xe3\x3f\x14\xdd\xb5\x8a\x5f\x89\xbe\x2d\x86\xaf\x6e\xf1\xf2\x79\x93\x61\x8e\x83\x3f\x1d\x4e\xff\xf4\x9d\x55\x9b\x15\x0e\xa6\x01\xaa\x8f\x2b\xbe\xaf\x26\x9e\xa8\xc1\xfa\xe0\xe0\xe4\x60\xff\x8f\xf5\xc1\x77\xff\xfc\x0e\xc6\xec\xf1\x79\x05\xdf\x77\x6d\xf3\x6d\xa3\xcd\xa2\xb4\x9b\xe7\x95\x76\x5b\x35\xb3\xd6\xae\xea\xc4\x9f\x3a\x86\x2f\x7b\xae\x4e\x9e\xa1\xcd\xa6\x01\x38\xf3\x1d\x82\xeb\xed\x2e\xc7\x0b\x3e\x44\x08\x37\xb5\xe6\x2c\x3e\xe8\x35\x2a\xfb\xea\x9f\xfe\x4f\x38\x3e\xd8\xff\x97\xc9\x50\x2e\x11\x47\x35\xaf\x0e\x8c\xa3\x55\xc2\x0a\x72\x96\xf1\x30\xc3\x87\x07\x68\xff\x70\xc4\x86\x43\x9c\xc7\xd4\x68\x1a\x8f\xf8\x98\x4e\xb4\xfe\x47\xe9\x07\xe5\x09\x51\x09\xe7\xf9\x51\x3e\x52\x2a\x88\xfc\x28\x90\x2c\x50\x30\x32\x57\x1c\xf9\x51\x10\x8c\xe4\xe6\x16\xe6\x52\xfd\x6f\xac\xcd\xe4\x6b\x04\x57\xd7\xa2\xdf\x2a\x55\xe9\x83\x33\x02\x72\xe1\xbc\x12\x93\xd3\x4a\x73\x6a\xa5\xb9\x51\x17\x52\xd5\xd7\x2f\xd6\xd7\xbc\xf1\xf5\xca\xfa\xba\x6e\x7c\xbd\xb0\xbe\xde\x35\xbe\x1e\x5b\x5f\x97\x8d\xaf\x9f\xad\xaf\x8f\xfa\x2b\x93\x51\xdd\xea\x08\xec\x91\xec\x80\xc1\xc0\x77\x98\x50\x52\x84\xf2\x7b\x35\x2d\xf0\xd3\xc3\xe8\x69\x96\x67\x0b\x7a\xbb\x36\x87\x8a\x7d\xc4\x1c\xe2\x07\x46\x39\xd1\x9f\xc0\x70\xd8\x73\xe2\x3c\x28\xa4\xdf\x12\xa7\xf9\xec\xeb\x28\x7e\x63\xe6\x74\xaa\x2f\x6a\xca\x12\xeb\x33\xff\x9b\x34\xf9\xca\x34\xb9\xe2\x33\xbe\x09\xe1\xd3\x8a\xb0\xe6\x58\xbe\x09\xdd\x2f\x86\x6e\xc5\xe1\x7c\x13\xc2\xc7\x86\xb0\xe6\xa3\xbe\x09\xd9\x8b\x8a\xac\x61\xc1\xbe\x09\xe1\xcf\x9a\xb0\xd8\xca\x7b\x0d\xb6\xd6\xcb\xb5\x76\x54\x40\x56\x7c\x57\x2d\xae\x07\x01\x1b\x52\xcf\xd7\xea\xa8\x77\x52\x78\x35\x7c\x63\x32\x29\x4d\xf0\x13\xc5\x91\x2b\x4f\xfc\x57\x24\x9b\xe5\x20\x33\x77\xac\xe9\x99\x72\xd7\xa0\x42\x08\x86\xac\xae\xd6\xd4\xaf\x12\xd5\x58\x6a\x37\xeb\xc5\x82\xb0\x98\x48\xcc\x25\xb1\x93\x7c\xcc\x8b\xf8\x40\xc1\xd1\x09\x5e\xf9\x60\x9b\x9a\x54\x56\xb6\xa9\x79\x26\x3f\x7e\xf7\x3f\xff\xa7\x05\x74\x06\x72\x76\x18\x5c\xac\x44\xf2\xbe\xa0\xd1\xcf\xef\x09\xeb\xff\xef\xfd\x1b\xca\x8b\xa8\xff\x53\xce\xfb\x00\x6f\x16\x69\xf4\x2d\x59\x31\x65\xab\xb4\xe1\x8d\xe3\x71\xff\xbb\x1f\x7e\xf8\xdf\xc8\xad\xb6\x9d\x51\x1b\xce\x57\xea\xed\xf8\xbb\xd7\xac\x79\x7b\x60\x23\x3b\xd8\xbb\x0e\x5d\x84\x41\xb6\x16\xd3\xc9\x82\x78\x18\x0c\xb2\x1f\xff\xf9\xbb\x7f\xf9\xe7\x7f\xf9\xff\xfd\xaf\xef\xfe\xc5\xdb\x3e\xc2\x92\x6c\x2e\xdb\xf6\xfd\x77\x4e\xe3\xb2\x96\xc6\x65\x12\x23\x5a\x76\x76\xb3\x05\x25\xe6\xd1\xaa\x6e\xbf\x2d\x3b\x79\xff\x50\x43\x59\xcb\x1c\x63\x32\x3c\x9c\x34\x2b\x75\xcd\x1e\x69\x76\xdb\xe7\x79\x1f\xe8\xf4\x73\x55\x49\x9a\xf5\x57\xf9\x6a\x9d\x26\x9c\xcc\xfb\x45\x9a\xf3\x3e\xcd\x0a\x4e\x92\x79\x3f\x5f\xf4\x93\x3e\x23\x70\x61\x2b\x3f\xd5\x6a\x0e\x25\xc5\xdc\xd4\xed\x37\xca\xef\x1a\xec\xf2\x7f\x87\x1a\x62\xf7\xd5\x77\x93\x98\x19\x75\xba\x67\xe1\xf0\xda\x5a\x4c\xf3\x87\xfd\x94\xdc\x93\xb4\xf3\x6a\xbc\xe2\xc9\xec\x73\x2c\xfe\xe6\x2c\x71\x2f\xd0\xda\x96\xa2\x5a\x89\x89\x38\x0d\xe3\xf1\x44\x56\x19\x74\xa4\x5b\x97\x5e\xfd\x86\xa2\x32\xc2\x80\xcc\x1a\x86\x10\xc8\x8a\xd9\xcc\x6d\xd8\x18\x93\x6c\x38\xec\x91\xb4\x20\x55\xfc\xee\x49\xaf\x2a\x3f\x2b\xed\x2b\x09\xa0\x34\xe6\x13\xb1\x59\xc8\xfb\x0e\x46\x16\xad\x17\x18\x32\x35\x99\x40\x4a\x66\xab\xff\x89\xdd\x60\x08\xcd\x6e\xea\x5c\x15\x4d\xcc\x30\xe9\x9e\xf4\xc4\x85\x72\x3a\xf1\xab\x20\x2d\xc7\xaa\xd9\xf7\x64\x16\x93\x6d\xbd\x0e\x78\x88\x9e\x4d\x5f\xcc\x66\x89\x04\x2f\x68\x18\xeb\x03\xd1\x7a\x78\x7e\xc7\x72\xcb\xc2\x92\x6f\xcf\xc7\xad\x8c\x56\x26\x4b\x06\xf5\x67\xc3\x4c\x66\x9c\xe5\xab\xba\x9d\x9f\x4e\x2a\xc6\xcf\x3c\xcb\xd1\x81\xa3\xf6\x32\x79\x68\xcb\x41\xd4\x4a\xbf\x25\xdc\x4d\xe5\x0e\x78\x45\xb0\x81\x6a\x65\xea\xa9\xc1\xad\x44\xaa\x94\x64\xbe\xc3\xd3\x4d\x6a\xcd\x02\xb1\xae\x58\x6d\x7d\x66\xf9\xbc\x76\x6f\x0a\x0c\xc0\xfe\x4d\x72\x43\xc0\x46\x5e\x27\xec\x1c\xac\xb3\x20\x4c\x42\xab\xbe\x59\xd3\x74\x4e\x98\xdf\x5e\x94\x46\x8b\x9c\x29\x18\x56\xa9\xe2\x56\x96\xa7\x24\xfa\x90\xcf\xc9\xdb\x8b\xf3\x6b\x46\xc8\x49\x5e\xed\x30\x2d\xe1\xb2\x88\x35\x89\x99\x35\x2d\x88\x65\x9f\xcd\xd1\x66\x03\x77\x8c\xd2\x2b\x29\x13\x9c\x24\x2f\xde\xe7\x79\x41\x50\xc8\x30\xa9\x40\x3e\x1b\xf3\x35\x93\x58\xab\x9f\x0a\x92\x92\x42\x3b\x2a\xba\x41\xe0\x74\x08\xd2\xc6\xc7\xda\xf0\x6a\x94\x49\x37\x39\xdc\x94\x40\x29\xc7\x9c\x33\x7a\xb3\x76\xdd\x56\xa0\x87\x89\xf3\x19\x66\x69\x89\x59\x19\xb2\xc8\xd3\x4f\x62\xac\xdb\xba\x50\xc7\xcf\xf6\xf6\x9e\x36\xbc\xd3\xe6\xd4\x00\xdb\xec\x85\x81\x95\xbd\x89\xac\xa1\x4e\xf3\xd9\xe7\xb7\x64\x05\xb0\x6b\xdc\xdb\xcd\x99\xee\x66\x1a\x67\xcd\x6e\xa6\xd1\x74\x9a\xaf\x48\x06\x84\xea\xf8\x3c\x6a\x4f\xf6\x94\x36\x1c\x6a\xa8\xe4\x64\xb5\x22\xd9\xfc\x24\x5f\x42\x9f\x06\xff\x34\xbc\x19\x05\x43\x3e\x0c\xfe\x09\xc0\x18\x2b\xd9\xdf\x2a\xa6\x9a\x20\xa8\xc4\xa2\x02\xb3\x34\x2f\x48\xa3\x06\x6e\xee\x2a\x8d\x95\x1d\xb7\x54\x62\x5f\x54\x62\x7f\xbf\xb5\xf6\xa2\x76\xb2\x68\x99\xf3\xe7\xeb\xf3\xf7\xb1\xc7\x50\xcc\x4f\xfd\x36\x5d\xb2\x7f\x0a\xc0\xc8\x28\xb8\x3e\x7e\xf3\xfe\x34\x50\xe1\x36\x22\x22\xa7\x56\xc4\x93\xdb\x0f\xc9\xd2\x58\xe3\x72\x63\xfa\x19\xfc\x20\xf3\xd1\x1f\xf7\x0f\x51\xc0\x19\xe4\x54\x7b\x20\x1d\x1e\x62\x3a\xfc\x1e\x81\x8f\x6f\xf0\x03\xbf\xc9\xe7\x8f\x3f\x42\x5f\xfe\xf0\x4a\xfd\x40\x65\x00\x39\x8e\x5a\x6a\xd6\xff\xa7\x00\x8d\xdc\x7e\xab\x1a\xe8\xac\x4b\x6d\x17\xb3\xbd\x85\xd6\x96\x0d\xb0\xdf\x33\x46\x38\x79\x93\xaf\xb3\xb9\xb4\x2f\xd4\x0d\x06\x97\x60\xbb\x43\xaf\x9d\x7b\x52\xad\xd3\x91\x10\xeb\x71\x98\xc5\xa1\x3c\xe2\x51\x45\x40\x2a\x5b\x42\x1a\x33\x38\x45\xaf\xe8\x4d\x4a\xb3\x5b\x74\x94\x45\x69\x52\x70\x00\x3e\x1e\xd1\x68\xc5\xc8\x3d\xcd\xd7\x85\xfe\xac\xf5\x37\xbb\x7b\x25\xcc\x07\x83\xef\xe3\x38\xce\x23\xb1\xf3\x5e\x3f\xae\x88\x8a\x9b\xd2\x4c\xbf\x69\xce\xdd\xaa\x55\x4e\x2f\x42\x9b\x61\x66\x7a\x36\x28\x6d\xcb\x5c\x9f\x1c\x19\x21\xf3\xe2\xf4\x0b\x67\xc9\x89\xc8\x29\x86\x7b\xcb\xe7\x78\xef\xd0\xa9\x8b\x5d\x9a\xb5\x12\x50\x97\x44\xa2\xb6\x62\x15\x36\x2a\x6b\x76\x6f\x3d\x25\x07\x83\xe0\xfa\xcd\xc5\xdb\xdf\x83\x3d\xff\xcc\xd6\x95\xb6\xa8\x85\x01\x4c\x52\x8d\x81\x6b\x7c\xf1\x69\x76\xdb\x6c\x93\x92\xd2\xe0\xb6\x52\xe7\x07\x25\x9b\xdb\x0e\x8b\xbc\xd3\xef\xa5\x72\x05\xb9\x24\xcb\xdc\xb3\xff\xf3\xca\x63\xba\xa9\x9a\xf4\x32\x55\xdf\xd9\x4c\xd5\x77\x13\x05\x64\x1f\xab\xe3\x63\x09\x26\xf2\xee\xe9\x11\x48\x97\xf9\x00\xf5\x72\xf7\x90\x08\xc4\xe2\x09\x30\x43\x98\x46\x34\x2b\x08\xe3\x6f\x24\x7e\x1f\xc7\x39\xce\xdc\xf6\x35\xda\x60\xb7\x12\x94\xf0\x25\xce\xc4\x71\xf3\x81\x3c\xa8\x14\xea\x70\x47\x35\x76\x22\x07\xf1\xd4\xc4\x22\xf0\xde\x88\xd9\x68\x0f\x2d\xcc\xc6\x9a\x53\xe7\xf7\xfd\xd2\xfe\xf5\x40\x19\xd9\x07\x58\x4d\x6e\xbf\x36\x62\x7f\xf5\x6a\xc5\xf2\x5b\x96\x2c\xb7\xc4\xce\x6b\xb0\x2f\xaa\xea\x70\x6b\xa6\x63\x2b\xa8\xcb\xc2\xa6\xb0\x80\x59\x4c\x22\x3a\x97\x1e\x10\x84\x27\x80\xd8\x7a\x23\x36\x78\x9c\xc4\x6c\xb3\x09\x66\x29\x25\x19\xdf\x0f\x86\x7f\x1d\x0e\xd5\x26\xf1\x44\xe7\xa3\x04\x8b\xd4\x23\x8a\xe5\x60\xda\xf7\xee\x4c\x5b\x59\x33\x69\x8a\x6b\x21\x3f\x30\x4c\xd1\x88\x1a\x4e\x1a\x02\x2b\xfc\xeb\xd5\xc5\x87\x08\x74\xcd\x61\x8e\x10\x16\x5b\xe4\xdb\x90\x60\x59\x08\xd4\x64\xc4\x31\x23\x0b\xc2\x18\x61\xa3\xa2\x44\x65\xa9\x0c\x33\xd6\xb7\x0d\x3e\xa3\x32\x89\x6d\xe8\x1b\x13\x4b\xdf\x98\xff\xf8\xfd\x51\xbe\xff\xfd\xe8\x00\xe1\x22\xfe\xfe\x75\xf1\x43\x0e\x30\xb4\xc9\xb8\xd8\xff\xde\xd6\x3c\x16\x42\x24\x60\xf9\x83\x72\x65\x61\x24\x99\xdd\x25\x37\x29\x41\x61\x70\x2e\xa3\x92\xf6\x95\x3a\xe3\x9c\xf0\x64\x9e\xf0\xa4\xbf\xc8\x59\x3f\x18\x32\x8d\x30\x0a\x39\xe7\x74\xc6\x51\xe8\xf8\x47\x46\xf9\xaa\xf0\x40\x6c\xe3\x5c\x77\x5e\x32\xce\x27\xbd\xe2\x81\xf2\xd9\x5d\xc8\x40\xbb\x81\x9e\x66\x49\x41\x02\x9e\x07\xa3\xf5\x98\xa9\x50\x52\x64\x58\x48\x27\x90\x1e\x7c\xa4\xdf\x7f\x17\x8c\xe0\x49\x62\x15\xab\x1f\xd0\x8d\x76\x36\x27\x93\x8c\x21\x6b\x7f\x36\xd8\xe9\x32\x78\x6b\x58\x20\x3b\x7d\xc1\x99\x9b\xd8\x28\xba\x6a\x09\x65\x68\xa5\xfd\x5a\xfa\xe2\xc8\xcd\x01\x7b\x44\x8d\xfe\x3e\x08\x86\x2d\xa5\xc8\x31\x74\x8b\xf2\xa7\xf7\xa5\x04\xc4\x37\x2b\xe1\xde\x9e\xd3\x19\x2b\x46\x97\x94\xd3\x7b\xa7\x3f\x7c\xd7\x2a\xe4\xc7\x1f\xbf\xd7\x03\xf4\xbf\x06\x6a\x74\xfa\x07\x23\x7d\x43\x08\xe4\xfa\x87\x23\xfb\x86\xf8\x03\x28\x93\x42\x86\xe4\xc7\xef\x46\xcd\xeb\x63\xf3\xf1\xfb\x91\x1e\xfd\x1a\xe9\xbd\x43\x97\xf4\xde\x41\x8d\x1a\xf4\xa7\xa2\x21\x5f\x95\xf0\xeb\x9f\x61\x32\xf4\xff\x67\x4b\x95\xb4\x41\x6f\xcb\x8c\x47\x65\x19\x02\xc3\x63\x75\x96\x86\x81\xb7\xfb\x4a\xc7\x7a\x24\x4c\x2c\x1f\x7b\x58\x15\xff\x28\xc8\x35\x47\xd6\xfa\x58\x1b\xb0\x34\xf9\xfb\xe3\x3e\x9c\x82\x49\xc6\x1b\x19\x2f\xf8\x1d\x61\x61\x01\x00\xa8\x63\x58\x59\x10\x87\x6e\x3d\x31\x9b\xc4\x95\x2b\x42\xab\x9d\x02\xec\xf1\xf2\x5b\xb9\x7c\xfd\x03\x0c\x1a\x13\x7d\xfe\xb9\x56\xb1\x2d\xfe\xb9\x81\x54\x60\xc6\xc1\x10\x8e\x46\xd0\xf1\x22\x75\x1d\x2b\xb8\xc0\xa1\x51\xa7\x04\x61\x30\x64\xc3\x00\x05\xa2\x1e\x1f\xdf\x1f\x9f\x9c\xfe\x7c\xf1\xfe\xed\xe9\xe5\x54\xc6\xc0\x8e\x49\xf4\x1b\x13\xbc\xd2\x5c\xcb\xa0\x24\xfa\x98\x30\x21\x6b\xbe\x25\x0b\x08\xc0\x06\xa1\x99\xaf\xf8\x5c\xb6\xa0\x4a\x56\xff\x7d\x9a\xdc\x12\x56\x7f\xf9\x3e\xf9\xfb\x63\xfd\xdd\x09\x9c\x1b\x62\x00\x3e\xca\x43\xc7\x79\x27\xa5\x0a\xd5\xa5\x27\xea\x74\x8c\x49\x74\x7c\x53\x70\x96\xcc\xb8\xf5\x4a\x10\xb7\x7e\x9e\x83\x87\xbb\x48\x7a\x7d\x7d\x79\x35\x7d\xf3\xfe\xe2\xe4\x17\x5b\x14\x5e\xe3\xb4\xe7\xed\x83\xfd\x43\x1c\xa6\xf1\x7a\xb3\x09\xd7\xf1\x53\x89\xd0\x38\x8d\x2e\x56\x24\x33\x11\x99\x34\xbb\x72\x30\x89\x03\xdf\x87\x00\xa7\xe3\x34\x7a\x4b\xe7\x27\x8e\x74\x7b\x38\x89\x83\xfa\x4b\x93\x54\x4a\xf2\xef\x93\xc7\x7c\xcd\xe3\xef\x64\x4a\xfb\x9d\x4a\x08\x51\xae\x08\x8b\xbf\x17\x29\xd4\x8f\xc0\xf8\xf9\x5c\xac\x0a\xbc\x88\x83\x41\xc2\x39\x2b\xc4\x91\x6c\xb7\x7c\x01\xc9\x20\xd0\xed\x7f\x8d\x1e\xeb\x40\x4a\x94\xf9\x62\x51\x10\xae\xb5\xfa\x10\x47\xcd\x39\x8d\x14\xe3\xb8\xce\x66\x45\x3c\x9e\x74\xd7\x32\x1a\xbd\x10\x64\x55\xb8\xd0\xc8\x2a\xc5\xa8\xf3\x64\x02\xad\x84\x2f\x15\xce\x03\x4d\x5b\x96\xdb\xd8\xaa\xf6\x44\x01\xda\x2a\x8a\x4c\xe2\xed\x18\xa2\xe3\x6c\x82\xb4\xb6\xa5\x0c\x91\x1d\x22\xd8\x42\x68\xca\x62\x32\x3e\x9c\x08\xd6\x66\xfc\xdd\x44\x30\x36\xe3\xef\x27\x3d\x16\x91\x2f\x2b\x16\x52\x84\xf3\x23\xe9\x2c\x06\x53\x46\xb0\x9d\x61\x86\x73\xcc\xd1\xa8\xf9\x1a\xb8\x58\x3b\xc4\xe4\xfd\x33\xcb\x99\x3f\x66\xc9\x92\xce\xdc\x52\xdc\x97\xba\x0c\xb3\x60\x6a\x3a\x04\xd2\x7c\xf1\xc2\x09\x22\xf8\xa0\x47\xfc\xe2\xf0\x36\x22\xfb\x6d\x65\x53\x90\xcc\xe7\x61\x40\x17\x81\xd7\x20\x9c\x2e\xc2\x3d\xb2\xd9\x1c\x02\x18\x99\xd1\x3b\xd7\x54\xff\x57\xbf\x7f\xb8\x3e\xfe\xf7\xfe\xe9\xe5\xe5\xc5\xe5\xa8\xff\x3f\xe8\xa2\xcf\xc8\xdf\xd6\x94\x91\xa2\x9f\xf4\x65\x1c\xc6\xbe\xae\x81\x90\xfa\xa5\x19\xc3\xa3\xd8\x95\xce\x16\xe1\x53\xc2\x6e\x0b\xaf\x2f\x0b\x0c\x00\x19\x1f\x4c\x84\x04\xc1\x73\x8d\x90\x83\xf0\x61\x89\xe9\xe2\x9a\xb9\xf7\x89\x42\xc8\xb8\xcf\x3f\x93\x2b\x9e\x70\x3a\x83\xed\x2e\x64\x42\x40\x5a\xbc\x4b\xd2\xc2\x49\x9a\x0d\x06\xbe\xd4\x19\x52\x30\x72\xb2\x4f\xd6\x59\x4a\x8a\xe2\xdb\xf5\x8b\xa4\xf7\x7f\xa5\x6f\xda\x1b\xec\xeb\x9e\x96\x9e\xb4\xfb\xe6\x81\x3a\x98\x4e\x5f\xd9\x33\x10\xf3\xe8\xbf\xa0\x5f\xe6\xeb\x55\x58\xef\x9f\xef\x3a\xcf\x1d\x7c\xf8\x35\xb3\x47\x30\x5e\x9e\x1e\xca\xd1\x53\x6e\xb5\xa5\xb5\x25\x7c\x30\x08\x3e\x93\x47\xd0\x41\x8c\x0f\x26\x62\x0f\xc8\x65\xe3\xf8\xf8\x50\xfc\x44\xa3\x1c\xf6\xee\x8f\x9a\xdf\xbd\x14\x22\x16\xc9\x66\x3a\x90\x6c\x6e\xf7\xc5\x77\x25\xbe\xc9\xe7\x4e\xf8\x30\x91\x9d\x9f\x71\x02\xd8\x72\xa1\x48\xff\xd7\xf5\x72\xf5\x09\x26\x69\x18\x9c\xbe\xbf\x3a\x0d\xc4\x4b\x51\x06\x58\xa5\x42\x12\xd1\xa3\x15\x83\x18\x2d\x56\xf8\x50\xbc\x96\x95\xbe\xce\xc3\xe0\xec\xfa\xf4\x12\xf2\x91\x8c\x13\xf6\x9e\x16\x3c\x0c\x40\x7f\x22\xde\xa5\x42\xca\xb6\xd2\x50\x28\x9d\x84\xc1\x9b\xcb\xd3\xe3\x5f\xec\x24\x26\x8b\x6f\x5c\xbe\x83\x7a\xe5\xab\xf0\x3b\x5d\xeb\x30\x78\x77\xf6\xe1\xf8\xfd\x7b\xa7\x98\x8a\x28\xf9\x42\x39\x54\x45\x65\xac\xda\xd3\x9a\x59\xb5\x3f\x1b\x0c\x7c\x75\xa8\x8d\x35\xcd\xf6\x89\xe6\x43\xbe\xd9\x2e\x6a\x68\x7e\xdd\xca\xa8\xae\xce\x2d\x67\x56\x5f\xe8\x08\x0b\x1c\x4f\x5e\x9c\x57\xca\xc7\x40\x9c\x27\x83\x41\x70\xbb\xa6\x73\x78\x7e\x4e\xed\xe7\x39\x91\x41\xce\x78\xf2\x99\xf4\x93\xfe\x7f\x06\x43\x36\x3e\x98\x0c\x83\xff\xec\x4b\xf9\x12\x1a\x01\x73\x35\x1b\xe7\x13\x83\xbe\xe7\x5d\xcb\xff\xec\x5f\xbd\x0d\xf5\x51\x28\x95\x4e\xcd\x5d\x0c\x03\xc2\x43\x2d\xad\x33\x98\xfb\x62\x37\xda\x57\x67\xfb\xfe\x7d\xc2\xda\x8f\x00\xae\xdd\x0d\xa1\x6b\x13\xe9\x27\x4c\x35\x97\xf4\x31\x61\xc9\xb2\x08\x13\x0d\xd7\xf2\x56\x92\xbc\x9a\xe5\x2b\x02\xf5\xbb\xa1\xd9\xdc\x79\x99\x6f\xaf\xb5\x4b\x40\x3a\x77\xb7\xec\xd5\xa6\x35\x56\xe4\xa7\x96\x46\x68\x93\x3f\xe3\x56\x28\x7a\x7c\xb3\xd9\xa3\x51\x01\x34\x0d\x57\xfe\x33\x49\x57\x44\x0e\x08\xf0\x4e\x06\xec\x48\x36\x5e\xbb\x3a\x1f\x8a\xe1\x54\xdd\x67\xf2\x86\xb9\xe4\x8f\x12\xcc\xf1\xde\x81\x54\xe8\x95\x08\xf3\x9d\x95\x34\x37\x07\x83\x81\xe8\xe4\x9e\x55\xe1\x0a\xe5\x60\x30\xc8\x5a\x2a\x4b\x05\x0d\x50\xa7\x1a\x59\xdb\x1d\xb1\xaa\xd2\x95\xc7\x6f\x6b\xdd\x99\xa8\x3b\x3c\xcb\x2d\x16\x4c\xf7\x9f\x40\x39\x53\x8c\x08\xa6\x59\x4a\x33\x52\x8c\x78\x59\x0a\xf6\x5c\x2b\xe2\x0a\xa9\xa3\x93\x1f\x95\x7d\x03\xbc\xd7\xa6\x0d\xea\x53\xcc\xa4\x3d\xd1\xe3\x76\x1b\x83\xff\x1e\x92\x40\x32\x9f\x2b\x0d\x5a\xd3\x28\x60\xa9\x3e\x90\x36\x91\x41\xab\x3f\x8d\x9b\xbb\x5d\x62\x05\x10\x9b\x1c\x69\xa1\x41\x51\x44\x4e\xe6\x91\x2b\x52\x24\x13\x14\x56\x1f\xa5\x60\x81\x6f\xff\x3f\xdf\x97\xee\x8d\x12\x81\x1d\x68\x51\xb7\x4d\xce\xf5\xfc\x07\x65\x38\x0b\xb0\xdc\xe3\xf3\xf1\xc1\x24\x8e\xe3\x59\x24\x57\x0b\x62\x71\x2e\x0e\x87\x2c\xce\x85\x20\x44\xe3\x5c\x08\x42\x60\x5a\xa2\x12\xef\x89\xc4\x9f\xb2\xcf\x59\xfe\x90\x35\x29\x9a\xec\x14\x9c\xd6\xca\xc6\xe0\x4a\x93\xac\x6a\x7c\xd5\xc5\x93\x1e\x5d\xa5\x39\x6d\x0c\xba\x6c\x9c\x01\x58\x01\xa8\x9c\xe2\xa8\x2a\x78\x54\x94\x36\x6a\xb2\x42\x09\x59\xc7\xcd\xf9\xe1\xa3\xb4\xb6\x29\xad\xcb\x7a\xab\x94\x84\x2a\x28\xde\xb4\xd9\xe1\x99\xc1\x9f\x19\xad\x89\x2c\x39\x95\x7a\x08\x8e\xed\xaf\x73\xd9\x3b\x46\x00\xb3\x6e\xab\xea\xe3\x6b\x3c\xc0\xf5\xed\x93\x26\x81\xec\x6b\x7d\xfd\xb2\xe7\x96\xb2\x7f\x68\xc7\x0e\x96\x55\x91\x3b\x0f\x6c\x96\x70\xf6\xb9\xe1\x78\x4d\x56\xa7\x31\x12\x74\xcc\x6e\x90\x04\x29\x66\xea\x22\x48\xb9\x2a\x11\x3c\x7e\xfa\x4c\x1e\x47\x4a\x73\x7d\x0d\x6a\xc2\x36\x9f\x98\x7a\x8d\xca\x72\x82\xb4\x99\x48\x53\x8f\x75\x03\x0d\x99\x3e\xbb\xfb\xe1\x56\x62\xfe\xdf\xa2\xfb\x65\x55\xaa\x43\xc1\x1a\x02\x38\x1e\x54\x34\x5c\x9a\xdd\x4a\x3d\x55\xd7\x71\x91\x96\x18\xdf\x60\x34\x64\x05\xeb\xa3\x61\x9b\xec\xd7\x6f\x68\xdc\x6e\x32\x01\xc3\xee\x54\xb3\xa5\x87\xce\xaa\x27\x19\x91\x59\x74\x4d\xbe\xf0\x9a\x7f\x03\x8f\x38\xf9\xc2\x43\xb1\x69\x55\x2c\xcb\x2c\x52\x17\xd0\x8d\xc4\x33\x75\x31\xdd\x48\x6f\x5d\xf2\x36\x33\x59\x1f\x43\x3b\xd7\x3b\xeb\xca\xb5\x91\xcb\xb9\x8f\xb5\x73\xe9\x78\x57\xff\x0f\x7b\x7f\xd6\xde\xb6\x6e\x2d\x8c\xe3\xf7\xfa\x14\xb6\xfe\x3d\x7a\xc8\x63\x58\x95\x3c\x64\x90\x83\xf8\x78\x27\xce\xae\xdb\xc4\xd9\x8d\x9d\xdd\xd3\xaa\x7a\x72\x68\x09\xb2\xb8\x23\x91\x2a\x08\x39\xf1\x8e\xf5\x7e\xf6\xff\x83\x85\x85\x89\x04\x29\x65\xe8\xfb\x9e\x8b\xdf\x45\x1c\x91\xc4\xb8\x00\x2c\xac\x79\x05\x3d\x35\x44\x57\xeb\xb9\x48\x48\xa6\x04\xf4\x86\x59\x3d\xd4\xd0\xe8\x06\xa3\x8c\x70\xb0\x88\x40\x03\x80\x00\x8d\x8d\x32\x59\xf5\xa8\xac\x51\x75\x02\xe1\x64\x47\x27\xca\x1a\xec\x28\x64\x5e\xec\x2c\x92\x7b\xf8\x76\xc3\x76\x56\x05\x03\x4b\x4c\xc8\x44\x8c\x74\xf9\x34\xe7\x0b\x30\xb8\x34\x39\xb6\xa2\x44\x5d\x9d\x76\xb6\x8a\xaa\x3c\x13\x22\x3c\x5f\xa6\xd0\x3d\x53\xb7\x05\x88\xcd\x04\x12\x62\x20\x14\xe3\x24\x85\xb0\x50\xa6\xbd\x97\x56\x62\x56\x6e\x30\x62\x64\xb7\x0f\x61\xf9\xdc\x7d\x60\xa5\x78\xa5\xf2\x8b\x40\xf9\x6b\xbe\x2a\x20\x58\x6d\x4d\xf3\xbd\x70\xf1\x8d\xdd\x94\xea\xbd\xb5\xba\xf8\x5a\xa8\xb4\x24\x4c\x1e\x1e\x84\xe4\xb1\x4d\xfb\x60\x59\x2c\x4b\x43\xae\x70\xd0\xe9\x1b\xee\x5d\xef\x35\x1e\x00\x97\x69\xa0\x7e\x11\xca\xfb\x8c\x0d\x8f\x46\xa4\xa0\xc2\x28\x90\x25\x1b\xb2\x52\xbe\xe4\xa9\x23\x6d\x8c\x56\x60\x93\x23\xe9\x4f\xc5\x3b\x7c\xb1\x78\x69\x90\x92\xa5\x64\x61\x98\x60\xbc\x18\x64\xdd\xf3\x37\xbf\x5c\xff\xfd\xc3\xd9\xbb\x77\x67\x7f\x5f\xc7\x72\x02\x15\x42\x99\x93\x95\x22\x8f\x73\xb9\x36\x85\xa2\x92\x43\x0b\xfa\x0d\x13\x31\x27\x6b\x15\x38\x44\x0a\x67\xbe\xca\xf9\x75\x72\x1b\x71\x52\xc4\x64\x4e\x57\x5d\xa5\x17\x25\x63\xba\xea\x62\xea\xb9\x54\xa4\xac\x20\x53\xf9\xc2\x5c\x32\xce\x99\x9b\x3f\x3c\xe0\xaf\xf1\x86\xd3\x37\xd8\x79\x91\x64\xf2\x70\x4d\xd3\x6c\xb2\x63\xf8\x17\xab\x39\x9e\x05\x60\x3d\xfb\x56\x58\x63\xa0\x30\x6f\x35\x5b\xd3\xd3\x48\x45\x49\x30\x50\xb5\x9a\xa5\x68\x0e\x79\x8a\x1d\xce\xd0\x2e\xd2\x98\x4c\xc9\xcc\x59\xa6\x49\xa7\x33\x89\xe3\xc1\x76\x8d\xb9\xcd\x54\x1b\x71\x96\x1a\x95\x5d\x5b\xa0\x0d\xbb\xb4\x2d\xb1\x9d\x94\x4f\x28\xc9\x00\x87\x3d\x08\x62\x81\xa0\x50\x4f\x8f\x19\x87\x12\xa5\x44\x74\xd9\x5d\x32\xbf\x82\x1b\x51\x9e\xc1\x4c\xb6\xb0\xcc\x97\x9a\x25\x17\x8e\x70\xc8\x95\x09\x8c\xbb\x7f\x4f\xd9\x7c\xb2\x69\x32\x2d\xd1\xbd\x97\xe5\x20\x96\xb5\x53\x59\xe2\x95\x2b\xb9\x6e\xf5\xe8\xc2\xd6\x1c\x7a\x57\x9b\xd6\x4d\x35\xd5\x9c\x60\x99\xa8\x3c\x3d\xee\x5f\x92\x29\xcb\xc4\x55\x3a\x81\x0d\x51\xc1\x5e\x1c\x2f\x58\xb9\xc5\xe1\xd1\x1d\x3f\xd8\x7c\x6d\x9c\xfd\xae\x24\xbe\x23\xd3\xca\x05\xec\x74\xf0\xfe\xe3\x71\xa7\x23\xba\xb7\xab\x84\x4f\xd8\x44\xb5\x56\x86\x11\x9c\x88\x2d\x2f\x19\xc0\x0e\x47\x0a\x3b\x1c\x97\xd0\x5c\x1e\x03\x82\x70\xd1\xde\x9c\x16\x9d\x4e\x21\xd1\x40\xa7\xb3\x6a\x99\xf1\x69\x69\xa2\xe4\x08\xe6\x36\x1e\x9f\x72\x6b\x5b\x3a\x12\x01\x25\xa4\x58\x05\x75\x97\x15\xc2\xe1\x6b\xf1\xbd\x9c\x56\x6c\x24\x21\xab\x8a\xb6\xb3\xd2\xc1\xa4\x54\xc0\x15\xc7\x16\x3d\xaf\xa9\xca\xde\x89\xbf\xf8\x3d\xb9\x8a\xd1\x50\x47\xee\xf7\x6a\x3f\xc0\x60\x27\xb4\x77\x92\x3c\xd3\x52\xcd\x93\x64\x6f\x2f\xce\xed\x3e\x1a\x26\x23\x27\x30\xa6\xa2\xe0\x52\x49\x50\x55\x35\xd3\x1f\x00\xfa\xe7\xf5\x34\x3e\x6c\x51\xe0\x0b\x93\x34\x33\xce\x4e\x78\x87\xff\xec\xee\x2d\x43\xf0\x27\x2b\x91\xe6\xab\xc2\xff\xc8\x2d\xe9\x5f\x21\xf8\x83\x36\xfd\x85\x98\x44\xb5\x21\xb0\x21\xa4\x11\xf2\xf9\x0d\x05\x0b\xa1\xf7\xfd\x6e\xef\x2b\xcb\xf7\xe3\xb5\x0a\x3c\x51\x88\xb2\xc0\x41\xbb\xd0\x75\x6f\x56\xe9\x7c\x62\xcc\xd7\x2d\x47\x73\xcb\x04\xce\x3a\xd4\xcb\x69\x3d\x08\x07\xf5\x00\x44\xc9\xca\xe7\xad\x56\x4a\x59\x0e\x20\x37\x86\xdc\x1c\xae\x0e\x5e\xdd\x9c\x72\x2d\x05\x03\x53\xfc\xf4\x77\x89\x7c\x1b\xe4\x2e\xb6\x5c\xc5\x3d\xa1\x10\x93\xd7\xe9\x0d\x3d\x37\x1b\x10\x8d\x3d\x4b\x38\x29\x0c\x45\x67\xc4\x5a\x22\xe7\x20\x44\xe1\x36\x53\xb2\xd0\xf6\x24\x5a\x6e\x33\x4a\xcc\xe7\xb6\xe2\xc8\xa7\x42\x12\x24\xe3\xc0\xcb\xb4\xd3\x13\x18\x77\xbc\xca\xb9\xf6\x27\x51\x27\xa8\x26\x5f\x3b\xba\x0b\x21\xa0\xbb\x33\x96\x2c\x49\x46\x79\x77\x91\xcc\xe7\xf9\x38\xd2\x81\x09\x44\x20\x60\x9e\x18\xa6\xc1\x8c\xc8\xf9\xa9\x72\x71\xfb\x65\x9e\x8c\xd9\x2c\x97\xa3\x89\xf2\x78\x80\x7e\x6f\xb9\x91\xd6\xf3\xae\x24\x17\x8a\xd9\x1b\xd5\x55\x46\x58\x4c\x32\x74\x24\x29\x53\x68\x41\xf3\x01\x6f\x4f\x74\xe7\x79\xfe\x71\xb5\x0c\x11\x23\x6e\xa4\x5d\x24\xd6\xf8\xe9\x17\x45\xea\x29\x6b\x55\x97\xd6\xc3\x37\x06\xd7\xc0\xf3\x7a\xe0\x76\x66\x46\x86\xb6\x72\x3c\x0e\x0d\x5b\x7d\xac\x73\xd6\xd2\xe3\x26\x5c\x19\x35\xbd\x70\x86\xa0\xe2\xeb\x00\x35\x68\x60\x85\x94\xb3\x6a\xfd\xe1\x21\xca\x54\x35\xc4\xb4\x2c\x8e\x89\x9e\x11\xf3\xa7\xc3\xbd\xb9\xac\x9d\x91\x6a\x3e\xb2\x61\x73\x97\xa0\x6b\x38\x4f\xbd\xbb\xb5\xcd\x20\xf0\x8f\xdb\xb7\xa3\xf5\x02\x64\x83\x5c\x48\x9b\x80\x15\xcd\x72\x08\xdc\xbc\xa6\xb4\x2b\x1a\xaa\x18\x2b\x7d\x26\x65\x8b\x26\xc7\x30\xe9\xea\x47\xca\xeb\x5a\x9a\xc5\x57\xc6\xb5\xf2\x58\x29\xd1\x4a\xa1\x1d\xc5\x48\x4a\x33\xe3\xdf\x30\x45\x4f\x46\x30\x21\x02\x7c\xa1\x0c\xf5\xa8\x0a\x81\x7d\x8a\xf9\xaa\xa6\xf1\x20\xdd\xeb\xe3\x75\x60\x25\x35\xf4\xcb\x2c\x29\xce\xef\x92\xf9\x80\x77\xf1\x17\xc1\xde\xe4\xaa\xff\x1b\x64\x57\x8e\xa8\x4a\x03\x85\x08\x57\x72\x08\x52\x2a\x0f\x1f\xb5\xb8\xe4\xf5\xb9\x78\x9d\xdc\x30\x45\x6f\x76\xa7\x0c\xf2\xe5\x3b\x94\x42\x3f\x56\xf1\x68\xcd\x51\xbe\x56\x76\xf3\x25\x72\x82\xf0\xee\xb2\xaa\xc8\x96\xaf\x15\x81\x2f\xf7\x5a\x32\xa9\xb6\xec\xaa\xac\x51\x67\x5c\x3b\x8a\x5a\xd2\x8c\x03\x69\x86\xcc\xb6\x55\x20\xf2\x4d\xb4\x16\xe1\x48\xb5\x07\x57\x5a\x52\xf2\x72\x30\x9e\x24\x49\x4e\xc4\xd3\x70\xf3\x80\xfe\x2e\x78\xf2\x24\x41\xf2\x21\x12\xa8\x6e\x1a\xb8\xbc\x63\x40\xa4\x58\xcb\x4c\x92\xb2\xa0\x71\xc0\xd6\xf1\x1a\x82\xe3\x37\x80\xce\xb3\x0c\xb8\x7c\xa9\x52\xb1\x78\x82\x35\x3b\x31\xfd\x3d\xbc\x60\x85\xc8\x97\x7a\xc3\xa0\x2a\x8e\x1b\xb2\x30\x2c\xf4\xcc\x8d\x03\x61\xc9\xa4\xf2\x0a\x1a\x78\xbb\xd1\x3b\x1e\x0d\x24\x43\xc7\x46\x09\xab\xc2\x17\x92\xa3\x2e\x4f\xa9\x50\x52\x09\x81\x62\x3c\xa7\xe1\x96\x3d\x67\xcc\x18\x7f\xd7\x4b\x28\xf0\x96\x61\x92\x4f\x29\x7c\xb9\xc4\x9c\x16\xae\x5c\x62\x7e\x1a\x25\xb5\x3c\x39\x8b\x49\x52\xc3\xe0\xaf\x88\xd2\x4f\x02\xad\xb1\xdb\x07\x72\x23\x1e\x6c\xd7\x96\xdb\x4a\xa5\x8d\x35\x92\x7e\x67\xcd\x4a\x35\xd8\x07\x21\xad\x9a\x80\x88\x7d\x9b\xf4\x6a\x50\x3d\xa4\x59\x53\xed\x1a\x57\x56\xd5\x5a\xa8\x20\xf6\xa3\x30\xec\x97\x44\x0c\x18\x51\xaf\x06\x62\x1d\x87\x7c\xf1\xdd\x80\x51\x6e\x0b\xda\xff\x5a\xf5\x8c\x51\xf2\x0c\xf5\xe4\x64\xf1\x13\xc3\x6c\x04\xae\x31\x89\x20\x09\xe5\xc3\x14\x5b\x18\xed\xe7\x2d\xa6\xba\x83\x0c\xfc\x1a\x82\x1f\xeb\xf7\xac\x1a\xc5\x37\x9a\xf6\xa1\xe9\xa8\x0a\x43\xa0\x80\x8e\x3e\x29\xc0\xd5\x26\x01\x7f\xf9\x48\xa2\x29\x67\x96\xca\x49\x57\x85\x4e\x82\xdf\xa4\x74\x53\xae\xf1\x1a\x08\x7a\x19\x21\xdb\x64\xd3\x1b\x45\x59\xac\xa2\x95\x2b\xbe\xaf\xd5\xb0\xf0\x72\xb9\xbc\x45\x41\xfb\xf9\x32\x2c\xd0\x9c\xde\x5a\xe6\x3b\xd3\xc4\xff\x23\x46\x7a\x15\x1b\xfd\x70\x31\xe2\x02\x30\xf6\xcd\xee\xb7\xaa\x43\x5c\x7f\x29\x6b\x85\xff\xad\x2d\x38\x0f\x87\xa3\x18\x28\x3c\x09\x98\x37\xc9\x78\x96\x96\x32\x21\x7e\x17\x7c\xfa\xbd\x83\xa3\xed\x40\x24\x4b\x7e\x03\x94\x2a\xd5\xbe\x05\x50\xcd\x8d\x04\x60\x55\xe6\x8f\x4a\xc4\xa5\x85\x64\x74\x70\x14\xfb\x5b\x5b\xef\x52\x73\x84\xbc\x03\x84\x01\x28\x34\xa1\xcc\xf8\x1d\xab\x6a\xeb\x03\x0b\xbd\xdf\x77\xab\xfc\x2d\x15\x33\x0c\x30\x12\xc2\x5c\xc1\xfa\x96\x3a\x97\x2d\x84\x36\x42\x03\xec\xb0\x7b\x90\x99\x94\xd9\x65\xc0\x8f\x8f\x9e\x90\x12\x55\x83\xdc\x38\x88\x4e\x39\x5b\x26\x9c\x4d\xec\xb5\xb0\xdb\x97\xd7\xc1\x6e\x4f\x31\xb0\x01\x9f\x61\xb7\xed\x83\x27\x4e\xb1\xab\x64\xca\x1a\x8a\x3e\x75\x8a\xbe\x44\x3f\xf5\x57\x3c\xb9\x2d\x3b\x93\xda\x2a\x87\xee\x20\x2e\x3d\x2f\x10\xaf\x58\xdf\x29\x76\x5d\x0a\x5b\xec\x14\x3b\x80\x62\x10\xa5\xda\x12\xab\x3c\xc9\x0a\xcc\x22\x1c\xac\xf5\xb4\xef\x70\xe5\x5f\x51\x4d\x75\x56\xb6\x0a\x0b\x17\x3e\x3a\x52\x85\x7d\x03\xb0\x9a\xb2\xc7\xa6\xe1\x1a\x97\x50\xaf\x74\x5f\xb7\xbc\x4d\x61\x3b\xe6\x77\x79\x2e\x4a\x83\xb0\x7b\x58\x2d\x67\x8f\x30\x22\x4e\xfb\x83\x9e\xa9\xf4\x6b\xca\xc5\x2a\x99\x87\xea\x7a\x35\xfb\x84\x99\x3a\xe0\xed\xdc\x30\xdd\x83\x03\x3d\x81\xa6\x42\x87\xaa\x90\xda\xcb\x67\xbc\x1c\x0e\xca\x14\x7c\xfc\x14\xbb\x46\xfe\x55\x2f\x67\x90\x3c\xec\x3d\x88\x96\xad\xfa\xa4\x4f\x38\x56\xd6\x3e\x55\x0e\xa5\xa5\x73\x71\xd7\xf4\xfb\xe4\xc0\x4c\x39\xc4\xa1\x84\x67\xf5\x44\xcd\xca\x65\xad\xae\xd8\x7c\x5a\xd7\xc5\x11\x76\x11\x60\xc5\xea\xaa\x1c\x07\xaa\xa0\x63\x4d\x4d\x8d\x47\x58\x03\x02\x56\xbc\xca\xb9\xe4\x5b\xeb\xca\x3e\xc6\xb2\x25\xba\xb3\xb1\x83\xa7\x3d\xac\x54\x66\xcc\xea\xca\x1f\xda\xf2\x9e\x63\x50\x4d\xf1\x23\x67\xeb\x81\x1a\x28\x08\x7a\x7d\x81\x1c\x3f\xd6\x9b\x6f\x8b\xb2\x4f\x4c\xc3\x57\x8b\x64\x3e\xdf\xa2\xc6\x53\xb3\xb5\xb7\xab\xf0\xa8\xe7\xc0\x13\x0f\x5b\x63\x85\xa3\xa7\x4e\x05\x50\x70\x85\x77\xda\xb1\xc2\x12\xc6\x88\xbe\xe6\x1e\x39\x74\x5a\xab\xdc\x1b\x15\xf7\xbd\x1a\xa7\xf4\xc3\x20\x99\x7b\xe8\x92\xb9\x87\xca\x29\x1d\x0d\x29\xeb\xd0\xb5\xe6\x39\x02\x86\xb7\xea\xd2\xf7\x8f\xb8\xcf\xd9\x83\xf0\xb2\xd3\x31\x8d\x34\x1c\xe9\xb2\x48\x00\xca\x97\x0f\x65\xb0\x50\x08\x27\x06\x0b\x16\x4c\xfc\x9a\xf0\x14\xdc\x05\x9c\x77\xe6\x84\x55\xa4\x12\x68\x56\x57\x30\x21\x8f\xf7\x44\x57\x2e\x2a\xad\xdb\x82\x20\x78\xa8\x16\x80\x71\xe6\xcb\xc8\x23\x0a\x4a\x67\x35\x58\xa9\x59\x79\x64\x1a\xd6\x86\xf8\xfa\xd9\x5b\xa2\x8a\xc5\xb3\x21\xd7\x6a\xee\xda\xa8\x51\xd4\xef\x53\x82\x2e\xd1\xe7\x6a\x2b\x49\x59\x65\x50\x27\xeb\x2f\x49\x10\x7d\xad\xa2\x95\xf4\x9b\xe6\xca\x6c\xad\xc7\xd4\xa2\xec\x84\xd9\xe0\x59\xbf\xe4\xaa\x9a\x23\x61\xab\x9c\x3b\x87\x61\xc3\x30\x74\xec\xd3\xce\x19\x56\xd3\x62\x96\xe6\x5a\x90\xec\x50\xf1\xa7\x2e\x11\x69\x2f\xe0\x15\xe7\x69\xf0\x1c\x7b\x17\xe7\x51\x99\x9c\x31\x15\x2e\x40\x8a\x3b\xae\xb9\x9a\x1f\x2b\xa4\x51\x15\xbf\xd5\xd0\x68\xaa\x1f\x57\xa4\x56\x53\x50\xa1\xdb\xba\x80\x24\x4e\xc1\xa7\xfa\xe2\xd5\x9e\x30\x35\xd8\xed\x11\x94\x33\x4e\x2d\xd5\x85\x44\xf2\x3c\x7a\x74\xe4\xb1\xd3\x28\x08\x88\x70\x47\x17\x78\xc3\x68\x8f\x94\x9a\xde\x14\x15\x87\xee\x31\x0d\x7d\x3d\xde\xa6\xaf\x0a\x1e\xa8\xa3\xbc\x6c\x79\x85\x0e\x6a\xca\x1d\xda\x72\xba\xc9\x9a\x92\x47\xa5\x16\x6b\x8a\x39\x84\xc6\x86\x06\x1f\xd9\x92\x4d\x0d\x3e\x21\x26\x39\x4f\x53\x31\x43\xee\x41\x0e\x80\x9a\x42\x7d\x4d\x8f\xce\xf3\x64\x52\x57\x46\x77\x08\xe2\xd3\xba\x42\xba\xbb\xc9\x6a\xf9\xc3\x5c\x41\x5d\xbc\xba\xfc\x76\x97\xd0\x5e\xab\xcc\x25\x47\xfd\x47\x44\xeb\x85\x96\xf9\x8f\x1b\x70\x3f\xd0\xd3\x63\x43\x39\x2b\x2f\xb2\xda\x0d\x6f\x58\xf7\xe3\x6d\xf6\x7d\x55\xa1\x10\x3e\x6d\xfd\x23\xec\x3d\x9d\xde\xbf\x3f\x3c\xa8\x29\x74\x6c\x11\x40\xdd\xe6\xec\x3b\x87\xbb\xe6\x60\x1f\x38\x13\x6d\x24\xce\x0e\xd4\xa0\x7e\x5b\x2d\x02\x51\x17\x4b\xe0\x38\x3e\xd8\x06\x1c\xb2\xa9\x8b\x00\x7f\xa0\x91\xc9\xf1\xe1\xb6\xad\x28\x4d\x40\x43\x4b\x5b\xa1\x40\xd9\xd2\xf9\xbf\x42\x1c\x64\x55\x56\x12\x1d\x4b\x1c\xd1\xd8\xa8\xda\xaa\x49\x51\x30\x2e\xae\xea\x68\xe5\xe8\xf8\x91\xb9\xa9\xce\x17\x4b\x71\xef\x73\x83\xde\xd5\xa4\xa8\x7b\x25\x63\xab\xd5\x58\x93\x8c\x0e\x47\x24\xa5\xbd\x96\x28\xa9\x6d\x50\xc1\xf7\x65\x21\x2f\x57\x50\xe3\xce\xe7\x37\x09\x04\xc3\x81\x19\x0c\xda\x2f\x5e\x9f\xbd\xbf\x3a\x6f\xef\xa5\x7b\x7b\x6b\x63\x13\x02\x1b\x2c\xd2\x0b\x6a\xa7\x63\x49\x51\xb5\x4b\x23\x63\x43\xe2\x6a\xe0\x32\xd4\x45\x82\xd8\xa9\x21\x2d\xe9\x0e\x47\xf0\x47\xac\x0b\x03\x84\xe4\x56\x37\x6c\x0e\xe1\xee\x8d\x85\x77\x66\xdc\x54\x4e\xf2\xe7\xb4\x77\x92\xef\xef\x6b\x97\x9d\x6c\x98\x63\xb8\x4d\x45\xba\x24\x58\xdf\xd2\x8c\x07\x31\x49\xba\x7a\xd6\x51\x4c\x24\x5e\xc8\x91\xe2\x54\x6e\x97\xa0\x29\x5a\x3b\x8d\xa0\xee\x08\x27\x66\x15\x45\x08\x9a\xcf\x20\x42\x06\xea\x66\x12\x30\x6b\xb1\xf2\x7b\x94\x82\x2b\xf1\x28\x92\x69\x99\x90\xc4\xe2\x3d\xd0\x91\xa6\x16\x8f\xbf\xf0\xa8\xef\x1a\x48\xb1\xd3\x48\x94\xc0\xee\x88\xb9\xa2\x38\x1e\xb8\xa2\x24\xb0\xfd\xe1\x51\xcf\x6d\x21\x4c\x38\x29\xeb\xc2\x06\x02\x29\xb2\x46\x96\x3f\x25\xdc\xe1\x4c\x54\x17\x87\x7e\x17\xc1\x11\x6a\x09\x1b\x56\x39\xda\xa2\x4a\x59\xd2\x86\x55\x8f\xb7\xa8\x7a\x99\x4f\x30\x01\x03\xde\x11\x10\xe3\xb7\x59\x40\xf0\xd4\x63\xfa\xbd\x79\x56\x6f\x18\xbb\x92\x55\xad\xa4\xe1\x33\x7c\x7f\xe4\x02\xfc\x91\xd5\x8e\x2a\xab\x1f\x5d\xbe\xcb\xe7\x3b\x5c\x64\x60\x5e\x5a\x69\x51\xb0\x95\x4d\xf2\x51\x6f\x4f\x05\x44\x28\xe5\x46\x59\x09\x82\x01\xb3\xbe\x9a\x59\x01\x3c\x8b\x0d\x14\xfa\xa3\xa7\x9a\xd2\xd1\xc7\xa0\x06\xeb\x59\x79\x1d\x50\x4e\x4d\xa2\xc6\xc7\xcd\xe6\x1e\xcb\xbc\xd9\xd0\x43\xcb\xab\x31\xf0\xf7\x7a\x4d\x54\x3d\xe4\x7e\xb6\xaa\x5b\xa4\xbf\x33\x53\x51\x5d\x0c\x1b\x5c\x8e\x2c\xef\x33\x56\x99\x0d\x5d\xf3\x92\x4a\x34\x9e\x8f\xa0\xaf\xba\xf6\x55\x85\x5a\x5d\x27\x22\x61\xfc\x53\x75\xc0\xd2\x94\x7a\x51\x5f\x49\x76\x9a\x69\xe5\x3c\x1a\x8b\x28\x8c\x3a\xe8\x99\x10\xa6\x65\x85\x3c\xcd\x48\x6a\x03\x98\x80\x46\xed\xad\xca\xf2\xab\x8e\xe1\xf5\x2c\x2d\x2e\x8c\x0d\xdc\x24\x8e\xd2\x38\x26\xca\x59\x9a\x15\x45\x9a\x67\xc6\x14\xc6\xb7\x05\x31\x86\x1f\xda\xd8\x63\x82\x0e\x3a\x5e\x24\x10\xe3\xde\x57\xe3\xe0\x62\x8c\x43\x32\xd7\x26\x3f\xa5\xa2\x32\x8f\x6e\x52\x68\x23\x70\xe5\x97\x48\x12\xca\x7d\x1b\xa3\x28\x27\x59\xdc\x42\xe5\x79\x72\x2a\xba\x33\xf5\x3a\x71\x9c\x6c\x07\xe9\xa9\xb5\x71\x4a\xee\x6f\xd8\xeb\x7c\x9c\xcc\xa3\x1c\x2c\xd6\x6f\x4b\xa2\x11\xf9\xc2\x64\x6b\xca\x63\xdf\xf7\x40\x12\xf9\xa4\xce\x70\x0e\xad\x8c\x7b\x27\x99\xf5\x8a\xcf\xf6\xf6\x62\x6d\x6b\x3e\xcc\x46\x71\xcb\xa6\x3c\xd3\xaa\x36\xa7\x03\x35\xa5\xaf\x04\x1b\x53\xce\xf8\x60\xdc\x9c\x28\x0f\x9a\x74\xea\x3a\x44\xef\x52\x9a\x9a\x78\x7c\x25\xe8\xa5\x12\x7a\xd6\x7b\xa1\xd8\xe8\xb3\x20\x69\x0d\xc7\x65\x48\x41\x1b\x5c\x80\x10\xf0\x05\x01\x2d\xb5\x89\x26\xbe\xa2\xf9\xb0\x37\x22\x73\x9a\x5b\x3f\x69\x01\x27\xe7\xde\xb7\x37\x48\x40\x25\xe4\x40\xe3\x67\xd6\xe0\xe4\x61\xcc\xe5\xdd\xf5\xe3\x96\xf2\x08\xe4\x4f\xf2\x97\x36\x1b\xa6\x9e\x99\xbc\xdd\x18\xf5\x86\xf2\xe9\x34\x6a\xda\xa4\xb1\x09\x9f\xde\x1b\xb5\x38\xe5\x66\xc2\x24\xb4\xfd\x32\x74\xbf\x2f\x6f\xc1\xd2\x14\x78\xfd\x14\x78\x69\x0a\xef\x33\x95\x1f\xa6\x6c\x67\xef\xa9\xc7\x03\xc1\x3e\x14\xcf\xe5\x6d\x44\xe4\x7a\x2b\x16\xdd\x9a\x1d\xae\x38\xd0\xe9\x1a\x2a\x62\x41\x6d\x3d\x0c\x68\x60\x6a\xaf\x21\x8a\x81\x31\xd4\x53\x38\x40\xfd\x26\xa9\x36\xc6\x15\xf8\x83\xa4\x6b\x40\x62\xa5\xa0\xcc\x42\x07\x65\xce\xa9\xa8\x1a\x05\xa8\x18\x26\x1e\xfa\xf5\x1d\x9b\x59\x7c\x8a\xb4\x61\x19\xfb\xb9\x56\xb7\x12\xcf\x0e\xcc\xcd\x15\x00\xa2\xa4\x4a\x54\xa8\x93\x92\x7a\xa8\x64\x9f\x6a\xe6\xd7\x2d\x9c\x48\x86\x2c\x76\x34\x41\x8f\x1f\x11\x0e\xcc\x88\x6a\x0f\xe4\xea\xd6\xca\x3d\x48\x17\x5d\x59\xc3\xbf\x88\x75\x3a\xcc\xb5\x04\x74\x68\x14\x7b\x21\x47\xe5\xb7\x38\x01\xff\x60\x56\x84\x96\xc6\xd6\x57\x53\xc4\xde\x49\xb0\x5e\x38\x41\x2a\x09\xc1\x09\x04\x91\xc0\xa8\x0a\xe0\x40\x63\xa9\xbb\x9e\x21\xd4\x97\x3c\x72\x47\x1e\x3d\xee\x93\x32\xfc\xdc\x78\x81\x79\x5c\x23\x12\xae\x10\x7e\x77\x3d\x03\x59\x07\x6a\x1e\x58\xd3\x69\xc9\x38\xb7\xa6\x53\x6f\xd5\x8e\x9e\x40\xe8\x2e\x38\xd2\x8a\xfc\xc3\x3d\xa2\x82\xe9\xac\x4d\x24\x9a\x7a\xe8\x02\xea\x44\x4c\x0d\xb7\xff\xaa\x2a\x23\x79\x14\x94\x91\x3c\x72\x65\x24\x8f\x30\xe6\xee\xbc\x5a\xfb\xb1\x53\xec\xb1\x49\xdc\xf5\x6f\xa5\x90\x31\x24\xde\xee\x6e\x94\x3c\x3c\xac\x1e\x1e\x44\x4c\xa6\x14\x22\x39\xb3\x87\x07\xe6\x52\xc9\x0f\x0f\xbb\xd1\x6e\xf6\xf0\x20\xbf\x65\xc3\xde\x48\xdf\x90\x64\x46\xbf\x2c\x92\x34\x1b\x24\x44\x82\x77\xb0\x22\x60\x28\x39\x10\xeb\x56\x65\x5f\x49\x28\xce\x48\xfe\x9d\x24\xb8\xa6\x27\xc8\x98\x4c\x5d\x32\x7c\x7e\x1a\x55\xcf\xdb\xdc\x3f\x6c\xaa\x00\x92\xe0\x73\xf9\xec\xd9\xef\x49\xfe\xaf\xd8\x82\x9a\x2f\xbe\x83\x9a\xcf\xc3\x66\x7d\xe5\xfd\x06\xb1\x83\xc9\x4a\xed\xb8\xd0\x66\x09\x6e\xb5\xc7\x23\x7f\x0f\x29\xf3\x78\x89\xa4\x2d\x14\xe4\x4d\x39\xd6\x66\xc7\xa5\x55\x8e\x43\x7a\xa0\x88\xd9\xf1\x90\x39\x11\xb1\x8a\x19\xf1\x23\x37\x26\xfa\x54\x8e\x35\x19\xdd\x62\xc8\x75\xc8\x41\xe9\x18\xdc\x8d\x38\x4b\x8e\x0f\x66\x5b\x68\x64\xd3\xa4\x3b\x64\xda\x44\x1f\xf0\x2d\x4a\x2d\x02\xba\x44\x3d\x0c\xcd\xc5\x63\xc9\x66\xed\x22\x6e\xd0\x95\xad\xae\x66\x11\x44\x81\x95\x49\x6d\xaf\x8c\x44\xb7\x51\x9d\x17\x65\x93\x56\x72\x82\x12\x2b\x05\xe2\x41\x8f\xa4\xea\xda\x1f\xec\xf6\x1d\xa9\xd0\x92\xf6\x4e\x96\xcf\x66\x9a\xb0\x59\x6a\x23\xc8\x05\x9d\x0d\x97\x26\xe2\xf1\xa2\x3b\x9e\x25\xfc\x4c\x44\xbd\x18\xc3\x1e\x77\xda\x03\x59\xec\x0e\xfd\x62\xa7\x51\xbb\x83\x16\x60\x6d\x4a\xe9\x22\xbe\xa3\xab\x96\x8a\x68\x24\x3f\xa5\xd9\x1d\xe3\x05\xd3\x9f\xe6\x26\x0a\xc9\x62\x97\xd2\x69\x5c\x17\xe2\xb6\x75\x47\xf9\xfa\xee\xd4\x6e\x07\xff\xfa\x8d\xee\x2a\xb3\x5c\xee\xf5\xed\x3c\x7b\x6b\x70\x84\xad\xa9\xac\x62\xfe\x6c\xaa\xef\x46\xbe\xfd\xaf\xf6\x20\x9d\x46\xbb\x49\xac\xde\xa9\xe0\x3e\x89\xa4\xa8\x6f\x69\x22\x09\xe1\x1b\xba\x68\xc9\xed\x7b\x43\x17\x86\xde\x8c\x31\xd8\xc5\xbd\xf1\x25\xb8\x89\x4f\x20\x09\xd3\x07\x13\x21\x5f\x5e\xb0\xb7\xc3\x0f\xa3\xe6\xe1\xf4\xd7\x71\xbc\x5e\x9b\xe9\x58\x2d\xb3\x5e\xbd\xbd\x3e\xd9\xdd\x8d\x56\x0f\x0f\xf3\x87\x07\x1e\xdb\x35\xfe\x44\x27\x56\xf2\xf7\xe9\x39\xed\x9d\x7c\xd2\x92\xbf\x73\x3a\x19\x7e\x1a\x91\xcf\xf4\x1c\x8f\x62\xeb\xbc\x8b\x1d\x2a\x4a\x4c\xeb\x7a\xa2\xcf\x48\x72\xb9\xea\xeb\xcf\x28\xee\x73\x31\x5c\x24\x6a\x8f\xd1\x77\x6a\x91\xc3\x87\xf8\xeb\xb5\xca\xf5\xc8\x5a\x62\xeb\xb2\x17\x7c\x8d\x5f\x98\x0d\x86\x43\x8a\xef\x21\x0c\x5a\x88\x04\x36\x46\x10\x4c\x0c\x1d\x96\x58\x2f\xe9\x72\x10\xc0\x24\x14\xf4\x2f\xd1\x97\x5e\x59\x56\x19\x25\xf5\x64\xa3\xac\xb6\x41\xbe\x59\x35\x32\xdf\xed\x39\xb1\xf0\x0b\x59\xc2\x0b\xbf\xb7\x5e\xc3\x7d\x78\xef\xdb\xa6\x54\xdc\x77\x90\x26\x35\x32\x03\xb2\xdb\xb7\x86\x18\x9a\x3e\xf6\x9c\x0e\xd5\x4b\x8f\x8e\x80\xc3\xde\x60\x8a\xa0\xdd\xc2\x49\xee\x3b\x32\xd7\x99\xc0\x79\x9b\xb2\x42\x11\x1b\xd5\x4d\xcf\xb8\x82\xbe\x4e\x6f\xac\xbf\x66\x24\xaa\x24\x71\x99\x34\xa8\x72\x14\xdf\x67\x3b\x0e\x1e\x3e\x0e\x1d\xd0\xb5\x4e\x24\xe0\xee\x84\x71\xf8\x73\xfa\x26\x11\xb3\xee\x22\xcd\x40\xfe\x05\x7c\x75\x79\xd2\xb9\x03\x08\x6b\xc3\x17\x59\x0c\xa3\xdc\x86\x73\xf0\x17\x0e\x51\x03\xd3\x25\x11\xfb\x49\xc0\x00\x86\x0f\x93\x51\xbc\xae\x70\x3f\x9b\x56\x17\x0d\x6d\xe4\xd0\x2c\x1e\x68\x58\xe2\xa2\x3e\xef\x63\x88\x0f\x44\xfe\x4b\x85\x13\x0b\xfb\x15\x0c\x47\x3a\x45\x6a\x20\x6b\x21\x1b\xf2\x51\x0b\xb2\xa6\x86\x9b\xcf\xe2\x75\xb8\x7b\x08\x9b\x1f\x29\x76\x13\x49\xa3\x2d\x06\x9d\x20\xdb\x0a\xac\x94\xe6\x74\xaa\x3b\x49\x0e\x58\x5f\xe8\x3a\x36\x20\xde\xe6\x98\x55\x71\xc0\xfe\xa3\x4f\x69\xef\x94\x3d\xdf\xef\x9f\x0a\xca\x06\x51\x85\xe7\x52\x25\x55\x86\xd8\xa3\x78\x43\x81\x7e\x39\x4f\x41\x9a\xdd\xb6\x07\x3a\xfb\x92\x06\x35\xe1\xf4\xa0\x9c\x11\x80\x25\x99\x2c\xd8\x7b\x60\x84\xd3\x43\x2f\x89\x01\x04\x7e\x97\x1f\x0f\xca\x9f\x56\x5a\xe6\x22\xbf\x1e\x3a\x5f\xbd\x50\xfa\xae\x40\xed\x22\xbb\x4b\xe6\xe9\x64\xc7\x40\x6d\x67\x99\x14\x05\x9b\x40\xde\x43\x57\xb6\xd0\x56\x3e\xcc\x18\x05\xbb\x48\x7f\x67\x17\x8b\x05\x9b\xa4\x89\x60\x91\x78\xf6\xec\xf0\x81\x4b\x3a\xd9\x32\xa0\xfd\x43\xc8\x71\x92\xfb\x45\xc3\x4e\x98\xec\x39\xb5\x09\x2c\x1f\x1e\xd8\xb3\xde\x69\x18\xa6\x22\x96\x3d\x1d\x0f\x98\xe6\x99\xab\xa2\x8f\x80\x44\xc2\xb0\xbe\x06\x61\x05\x3c\xf3\x74\x8b\x01\x7f\xa2\x3a\xeb\xda\x83\xb2\x0c\x60\xa6\x5d\xa1\xa0\xb5\x9a\x3b\xa7\xae\xb5\xe3\x46\x89\x02\xb6\x19\x0c\x0a\x59\x63\x8b\xe8\xde\x28\xe1\xc0\x32\x4c\x63\x19\x7d\xe3\xa5\x34\xd3\x41\x66\x72\x9a\xf9\xce\x5c\x09\xcd\x02\x41\x66\x76\x29\x4d\x3b\x1d\xfc\x95\x77\x3a\x09\xc6\x11\xd5\x78\xa2\xa0\xbd\x93\xc2\xba\x18\x15\x7b\xf4\x20\x16\xc3\x62\x34\xec\x8d\x68\xfb\xbf\xda\x7b\xf8\xbb\x62\x44\x11\x72\xeb\x4a\x3d\x0c\x58\xf6\x12\x33\xfc\x90\x8a\x5b\x4e\x76\xfb\x84\x77\x3a\x1c\x82\x5a\xea\xe8\x78\xf6\xc6\x41\x21\x69\x33\xe8\x6a\x56\x42\xa7\x0f\x0a\x0b\xcf\x44\x4c\xf2\xf2\xf7\x04\x13\xaa\x3b\xe7\xe3\xe9\xb1\x71\x9c\xcf\xab\xf2\xd8\x3a\x03\x9f\x47\xc4\xc7\x1c\x50\x5b\xc7\x4b\xa9\x35\x5e\x7f\xfa\xb8\xb2\xb7\x3c\x69\x5f\xf9\xab\x46\xc2\xd0\xba\xf0\x3c\x0c\x7c\x03\xab\x47\xe1\x76\xf5\xc0\x42\x01\x42\xea\x6c\xb0\x0e\x9b\x9b\x5a\x84\xbc\xc1\x4d\x5c\x86\xed\x84\x7b\xbb\xae\x3c\x28\x3a\xea\xd5\x1f\xdf\xd0\x0d\x8a\xc1\xda\xea\x3c\xe6\x03\x03\x77\x56\xfb\xe0\x31\x8a\x50\x9d\x10\xfb\x5b\xee\x3d\x73\x49\xa4\x3a\x0f\x5a\xe5\xa3\x88\xb5\xa3\x9c\x82\xe5\x23\x92\x11\x90\x69\xf1\xd3\xbe\x64\x7b\xf5\xf8\x6d\x54\xb0\x7f\x5f\xdf\x8f\x43\x7d\xdb\x10\x6a\x3f\xb6\xe3\xea\x49\x2b\x4c\xce\x1a\x67\x4c\xc7\x20\xcc\x54\x43\xf1\x65\xff\xd5\xdd\xb8\x15\x85\xad\x6e\x38\x25\xdc\x72\x74\x20\x75\xa8\x3d\x74\x68\x67\x61\xd4\xfd\xcd\xdb\xb9\x22\x90\xae\xdf\xcd\xcd\xa2\xe8\x72\x10\xe7\x3a\x53\xc8\x43\x27\x16\xac\xbd\xf2\x34\x17\x17\x38\x26\xac\x2b\x19\x3b\xe5\x76\x9f\x4f\xee\xd1\xa6\xc5\x33\xf7\xa9\x13\x10\xe9\x60\xec\xe7\x97\x2f\x2f\x2e\x2f\xae\x2f\xce\x5e\xb7\x75\x82\x51\x11\xe1\x52\x2b\x43\xa3\x2c\x26\x3c\x72\x0d\xab\xdc\x60\xe8\xc8\xba\xa4\xc2\x6f\xb9\x54\xde\xed\x24\x0c\x3a\xd7\x94\xc7\x9f\x76\xc9\x1e\xcd\xe2\x07\x98\x36\xcc\x3f\xa3\xac\xab\x62\x7b\x41\x8e\x33\x8c\xc7\x5f\xc3\x05\xf3\x0a\x83\x2b\x42\x0c\x2e\x4c\xa1\x12\xfb\x5d\x94\x62\xbf\xa7\x9d\x4e\x1a\x69\x1e\xd4\x89\xdb\x16\x22\xb0\xd1\x3b\xdf\x25\x21\xb4\xa7\x3e\xab\xba\xdc\xeb\xad\xe7\xbd\x55\xfd\x38\x11\xbc\xc2\x16\x31\x55\x0e\x1c\xba\xb1\x5a\x7c\x14\xdc\x9e\x6a\x5e\x4e\xc5\x40\xd1\x28\xcd\xc4\x25\x2f\xeb\x4c\x76\x99\xb6\x0f\xe8\xb5\x2c\xd7\xd2\x3b\x11\x96\x61\x11\x9a\x59\xc3\xc0\xec\x62\x14\xdb\x6e\x75\xae\xdf\xdc\x3d\x7d\x65\x59\x48\x1a\x7f\xe1\xae\xb4\xb6\x24\x61\xe3\xe0\xa7\xe8\xec\xeb\xca\x77\x36\x2f\x58\xd3\x77\xd0\x2d\xc4\x5e\x52\x4f\x3f\x1a\x3b\x8b\x9f\x3d\x3b\x6a\xa5\x9d\x4e\x94\x3f\xd0\x27\xe0\x2c\x21\x7f\x3d\x56\x55\x24\xd1\xe6\x44\x4b\xc0\x04\x52\x09\xc4\x02\x68\x59\x1a\x0d\x62\x02\xac\x68\xef\x64\xf5\xcc\xe4\xa0\x5f\x79\xc0\x29\x86\x2b\x97\x4d\x05\x4c\x94\x20\xf5\xa2\x63\x93\x85\xf6\x11\xc6\x64\x72\xa3\x04\xb2\x18\x17\xb0\x6a\x6b\x23\xb4\xad\x8d\x26\x49\x1b\x8d\x5f\xca\x1b\x47\xcb\xaa\xeb\x24\x3a\x60\x19\x23\xd6\xd1\xc7\xb8\x55\xce\x4a\x75\x0d\xd0\x7a\x51\x67\x17\xe3\x04\xb2\x6a\xc8\xde\xdb\xac\x0f\xce\x42\xfa\xe0\xcc\x32\xfd\x5e\xdf\x08\x36\xf9\x51\xe5\x13\x63\x5a\xdf\x5b\xd6\xe3\x65\xde\x05\x55\x63\xd9\xf4\x08\x0a\x5a\x4d\xd0\xf7\xf6\x55\x6e\x25\xd0\x99\x4b\xa4\x87\xaf\x10\xdd\x19\xf1\xea\x56\x45\x4a\xe0\xd6\x95\xd9\x2a\x75\xe6\xe8\xc8\x8e\xe5\xd8\x2c\x54\xca\x2b\x15\xc2\x02\x04\x5d\x69\x2d\xf7\xc7\xb5\xdc\x1f\xd5\x84\x64\x2f\x60\x19\xdf\xfc\xaf\xd9\x23\x78\xab\x9e\x9a\x58\x39\x51\xec\x08\x54\xed\xe2\x89\xc6\x5d\xb2\xc5\xc6\xb0\xfc\xb3\xed\xe9\x1b\xb6\x48\xe3\xae\xd0\x24\x82\xe9\xe0\x04\xe2\x0a\x89\xd3\x90\x84\xb1\x8a\x0f\x9c\x8a\x6b\xc7\x32\xc2\x95\x4a\x3a\x6b\x1b\xc8\x40\xf7\x06\xe0\xff\xae\xde\x30\xce\x49\xdd\x20\xef\xc6\x02\x93\xca\xe1\x06\x8a\xb8\xe4\xfa\xd4\x07\x0c\xf2\x1d\xa5\xce\x65\x62\x4d\xe8\x54\xb2\x2d\xdc\x0c\x48\x7f\xd4\x6c\x09\xe2\x6c\x06\x27\x52\x51\xdd\x75\xfd\x42\x75\x80\x9b\xf8\xb3\xde\xc4\xc6\x7a\xee\x1d\x4c\xf1\x17\x77\x49\xcc\x0c\xdd\x18\x52\x92\xa2\x33\xe1\x08\x35\x6a\x17\xa1\x60\x33\x92\xf4\x2d\xf3\xd1\xde\xd5\xae\xab\x5b\xab\x24\xcc\x23\x61\x56\x4b\x67\x70\x75\xc4\xb4\x03\x4f\x68\x4b\x30\x6e\x98\x58\x9b\xa8\x39\xd5\xbc\x83\xbf\xc0\xd4\x7e\xa3\x2a\x4c\xd6\xcb\x8d\x53\x0c\xc7\x55\x7f\xed\x05\xcb\xc2\xd0\x59\x4a\x9a\x80\x85\x60\xaa\xf6\xcd\x27\x15\xbe\xe7\xb5\x2d\xe9\x07\xd5\x42\x12\x17\xa9\x1f\x13\x5f\x4b\x55\x46\xb2\x86\xda\x80\x58\x9e\x30\xc6\x35\xab\x53\x57\xe8\x84\x8a\x6e\x3a\x29\x65\xc0\x5d\xa3\x41\x58\x15\x6d\xf0\x6e\x52\x54\x0f\x61\x35\x5e\xfd\xa9\xf3\x7b\xe0\xcd\x9c\x7d\xda\xb9\x29\x91\x80\x90\x86\xde\xc9\x9f\x5b\x81\x1e\xf9\x62\x96\x1a\xf5\x75\x60\xe7\x19\xd8\x26\xa5\x58\xed\xf2\xf3\xa9\xfb\xf0\x83\xc7\xd2\x33\x63\xf9\x9b\xb7\x6a\x35\x23\xf2\x96\xf6\xb4\xfa\x6a\x10\xda\x00\xec\xd3\xce\xd5\x0f\x00\x98\xdc\xe6\xa5\x24\xd0\x3a\xeb\xb2\x97\xfc\xb9\x29\xd3\x73\x39\x3d\x73\x25\x29\x33\xe6\x19\x65\x5d\x9b\x5b\xf3\xdd\x2a\x13\xe9\xc2\x49\xb6\xf9\x37\x9e\x0a\xf6\x36\x9b\xdf\xdb\x57\x7f\x62\xc9\xd2\x64\xd4\xd4\x76\x72\xac\xeb\xfe\xc6\x66\xdc\x57\xa6\x21\xef\xe5\xf9\xeb\xd7\x1f\xfe\x72\xf9\xf6\x6f\x97\x1f\x1c\x12\xf5\xc3\x2f\x6f\xaf\x2e\xae\x2f\xde\x5e\xba\x81\xef\x32\xfa\x65\xdd\xda\x5c\x43\x15\x4e\x75\x6a\xd4\x29\x67\xec\x77\x06\xf1\x80\xf2\x1a\x94\x60\xe2\x6c\x4a\xd6\xbc\xa0\xc3\x11\xba\xa9\x70\x9e\xdc\x17\x74\x98\xe2\xb3\x50\x6e\x86\xfa\xb3\x42\x49\xf6\x19\xaf\xbc\x89\x79\xa1\xc4\xd5\x9b\x02\x43\x05\x74\x32\x8e\x40\x09\xc7\x64\x94\xe6\xcc\x46\x13\x03\xe5\xc4\xc0\x2b\x05\x24\x10\x8b\x55\xfe\x15\x47\xba\x57\xa3\xbc\xb1\x99\xa7\x4d\xfe\xae\x90\x36\xc7\x6a\x70\xb4\xf0\x62\xc8\x47\x7e\x54\x33\xab\xb0\x11\xea\x77\x99\x0f\x03\xdb\x2a\xdd\x89\xe1\xc8\x9c\x89\x2a\x60\x6f\x98\x27\x16\xf2\xa6\x39\x6b\x0c\x61\x89\x8b\x54\xdf\x6e\xe4\xad\x1d\x3a\x1c\xc7\xde\x0a\xdb\xfe\xd0\xed\xd3\xca\x81\x03\xdd\x42\xe2\x70\x05\xa8\x74\x7a\xaf\xf4\x3a\xc1\xa5\x74\xc2\x49\xc9\xa1\xf0\xc0\x52\x0a\x9c\xa3\xda\x49\x75\x73\xc4\x7d\xb6\x01\x76\xba\x94\x07\x3c\x91\xff\x92\xe7\x01\x84\xfc\x05\x87\xe1\x8d\x89\x28\xf0\xbb\x4b\x81\xf7\x32\xbe\xc3\x07\x82\x5d\x79\xfd\xae\x9d\x70\x77\x15\x34\x90\x23\x9b\xba\xe9\xc6\x36\xc1\x75\x19\xf1\x4e\xac\x30\x43\x74\x0f\xae\xd0\x83\xf4\x8e\xab\x30\xc3\xf4\x4f\xad\xb7\xe2\x5e\x1e\x65\x4b\x5f\x69\x0b\x37\x7d\xb2\x85\x99\x5d\xc3\x01\x37\x39\xb4\x6b\x39\x10\x1c\xfc\x90\x8d\xd0\x0b\xf8\xb2\xba\xde\x6e\x79\xec\xd4\x96\xbf\xda\x78\xd4\xb5\x54\xd3\x08\xfb\xb9\x73\xfa\x85\x39\xfd\xcd\xb1\xe0\x5a\x7c\x98\x8d\x4c\x53\x98\x18\x3c\xb5\xc1\x72\x71\x34\xd5\x71\x54\x50\x85\x1e\xbb\x97\xcf\xbd\x6e\x7f\xeb\x25\x1a\x32\x65\xee\x4e\x29\xcd\x3c\xfb\x65\x5c\x35\xf9\xbd\x5a\xa5\x14\x82\x17\x7f\x44\xdc\xea\x9e\x35\x10\xeb\xce\x35\x96\x83\x83\x0d\x97\x76\x54\x5a\xb5\xd8\xec\xed\xca\xad\x97\xb4\x94\x6c\x25\xc8\x51\x70\x1b\x63\x2e\xec\x6a\x63\xbc\x69\xcc\xc6\x17\x20\xda\x49\xcd\xce\xe7\x66\xe7\xa7\x7a\xdb\x73\xbd\xed\x53\xb3\xe7\xb9\xd9\xf3\xa9\xdd\xf0\xe9\x16\xbb\x3d\x35\x5b\x9d\xeb\x5f\xb1\x32\x79\x17\x65\x5e\x85\x6b\xf6\x35\xa5\xbc\x7a\x0c\xd2\xaf\xdc\xd6\xe9\x57\x1e\x9b\xf4\x7f\xd5\x31\x48\xbf\xea\x18\xa4\xff\x5b\x8e\x41\xfa\xdd\xc7\x80\xaf\xa3\x5c\x25\xbb\xd2\x07\xa0\x50\xc9\xd4\xeb\x0e\x00\xce\x50\xef\x7e\xd0\x0f\xd4\xcb\x4d\x62\x25\xa2\x51\x34\x97\x77\x11\xab\x57\xcd\x1b\x33\x0b\x6d\xcc\x6c\xd3\x7d\xae\x26\xe9\x76\xb5\x89\x18\xf3\xca\x3a\xd7\x6d\xb6\x0d\x78\xab\x4d\xc0\x1e\x81\xba\x55\xc1\x97\x5b\x49\x81\x66\xc8\xf6\xfb\xa3\xcd\x42\x2f\x55\x58\x8f\x0e\x16\xae\xb0\xb2\x02\xbd\x78\xab\x96\x32\xc3\xae\xb9\x97\xf1\x56\x9e\x01\x37\x80\x72\x37\x95\xde\xbd\x67\x85\x1a\xa2\x2e\x83\x57\xfa\x7b\x6d\xea\xae\xfe\x5e\x14\x3d\x7e\xf4\xa4\x63\x9a\x97\xb3\xbf\xb9\x4f\x26\x13\x1e\x39\xdd\xc4\xf1\xf3\xe7\x4f\x62\xe3\x29\x99\x16\x28\xe9\xa9\x6d\xb6\x77\x70\xb4\xb1\x4d\xd3\x9c\xdc\x25\x75\x2d\x1d\x1c\x1f\x6f\xdf\x50\xbe\xec\x37\x4a\xb0\xeb\xdb\xd8\xeb\xbb\xad\x1c\x7c\x6b\x2b\x07\x6e\x2b\x87\xdf\xda\xca\x61\x1c\x48\xa0\x36\xf6\xdd\xb9\x1e\xd8\xb3\x67\x07\x6b\xc3\x57\x2a\x49\xc8\x94\xf6\x7b\x47\x4f\x8e\x1f\x3f\x22\xb3\xfa\x9d\x64\xec\xed\x6c\x44\x7e\xcb\x5a\xe9\x5d\xe5\x52\x72\xfa\x69\x9c\x2c\x93\x71\x2a\xee\xe9\x94\x38\x12\x44\x15\xd6\x12\xf4\x6d\xc0\xb6\x81\xc2\x4d\x55\x6c\xd9\x4d\x2b\x71\xff\xfb\x34\x13\x87\x07\xc6\x6a\xc3\x72\x7a\x3a\x83\x03\x76\x6e\xc1\x83\x16\x83\xee\x58\xb2\xd2\x58\x7a\x8e\xd3\x4d\xb0\xa7\xa9\xd7\x53\x33\x87\xb8\x2c\x47\x90\x55\x38\x22\xfd\x9d\xbd\x98\x31\xab\x8e\x96\xfd\x0c\xdd\x05\xdb\x1b\xa9\xfc\x9a\xa6\x64\xc9\x75\x56\xf2\x64\xde\xb0\xb5\xd4\xee\x2e\x32\x0d\x92\x9e\x0b\x84\xb8\x01\x76\x9a\xbb\xdb\x9b\x3a\xe3\xe9\x16\x4c\x40\xd4\xda\xf2\x5a\xad\xbd\xe7\xfd\x7d\xa4\xc1\xd4\xb6\xab\xc5\x5a\x30\x45\x45\x39\x16\x81\xc2\x86\x4f\xc0\x72\x2a\xa2\xb2\x4a\x13\x51\x51\x53\x08\x65\x0c\x0a\x6c\x96\x9d\x21\xe9\x11\xf4\x30\x60\xee\xa5\xea\x31\xbb\xea\xd5\x1e\x3d\x24\x00\x5e\x37\x43\x44\x68\x30\xd0\xd1\x90\xed\xf5\x47\x74\x1c\x09\xa2\x5c\xd1\x8b\x52\xa2\x0f\x0f\x37\xc3\x48\x10\x22\x8d\xf0\xc0\xa6\x35\x1b\x10\x60\x85\xcb\x53\x65\x64\x1c\xf5\xc8\x61\xac\x67\x29\xb6\x98\xa5\xd0\x03\xce\xa7\x81\x91\xa0\xb0\x61\x9c\x2f\x59\x6d\x99\x9d\x12\x20\x9e\x3f\x3f\x00\xc8\x71\x56\x7b\xe3\xda\xc2\xad\x32\x14\xc3\xd6\x83\x0f\xe2\xd9\xb3\xc3\xde\x3a\x12\xa4\x6f\x9c\xfd\x9d\xf4\x1e\x8d\x07\xc8\x05\x85\x3e\x3c\x2d\xe7\x50\x8d\xe8\x41\xff\xe8\xf1\xd1\x93\xc3\x47\x47\x68\xc6\xe1\xa2\x29\x05\xd9\xa1\x20\x40\x02\x61\x1c\xee\x5f\x5c\x3c\xe6\x62\x3d\xa4\x45\x75\x02\x4d\xa7\x18\x09\x28\xa6\x8d\xab\xaf\x18\x11\xe5\xc5\x4b\x52\xca\x87\x1a\x2a\xe6\x14\x44\x19\x49\xa3\x18\x83\x05\x27\x4b\xb1\xe2\xac\x2a\x8d\xff\xc6\xe0\x46\x0e\x58\x50\xab\x54\x9e\xa0\x81\xa0\x8f\x39\x58\x8c\x78\x58\xcb\xf7\xb5\x14\xdf\xee\x2f\x02\xeb\x3a\xb0\x4b\x4c\x54\x0d\x57\xd2\x0f\xd2\xc6\x19\xba\xfd\xd4\x49\xf0\xbe\x6b\x86\x12\x97\xe5\xdf\x1e\x67\x4a\x56\x9f\x69\xbf\x3f\x23\xda\xb4\x58\x50\x2b\x13\x3e\xe4\xea\x5a\x94\xe5\xe7\x16\x52\x71\x48\xab\x82\x45\xeb\xce\x12\x36\xa5\x2f\x27\xe6\x75\x50\x15\xb5\x68\xd1\xad\x0a\x92\xb0\xdc\x42\x35\xf2\x5d\xd3\x98\xdd\x4f\xfc\x10\x6f\x15\xcd\xd9\xcc\x11\x7f\xa9\xe8\xea\x10\xc9\x1d\xd2\x85\x82\x8d\xd6\x0f\x87\x45\x49\xae\xbd\x6c\x29\xf7\xae\x5a\xbe\x64\x2b\x3d\xae\x43\xe5\x06\xb8\x0e\x49\x55\x4f\x1c\x62\xe9\x4e\x4b\xe1\xdd\xbc\xce\x98\x60\x3e\x36\xfd\x29\x8f\x29\x59\xce\xd8\x66\x64\x95\xdb\x96\xc7\x27\xe2\x19\x07\x14\x91\x49\xfc\x24\x11\x84\x81\xe7\xda\xca\xf3\x17\x25\x15\x02\xd7\xb6\xce\x3f\x50\x89\x90\x16\xc0\x31\x04\x0d\x3f\xba\x22\xb9\xa5\x94\xce\xe5\x82\x62\x39\x3f\x55\x92\x2d\xaa\x8b\xdd\x78\xc1\xc1\xe2\x2f\xb3\xbd\x3d\xf9\x7a\x9c\x2f\x6e\xd2\x8c\x5d\x27\xb7\xb7\x6c\xd2\xe8\x8d\x00\xb4\x9e\x96\x5f\x3f\xcb\xac\x47\x42\x0a\x1e\x09\x72\x48\x92\x81\x4e\x21\x21\x26\xf6\x3e\x6e\xa5\xbb\x94\xce\x3b\x1d\x75\x71\x38\xec\xfc\x32\x52\xe9\xc7\xb0\xff\x2b\xb9\x3a\x81\x4b\x0b\xba\x66\xf2\x20\x4c\xd0\x21\xe4\x04\xed\xa1\xf9\x89\x09\xc2\xa0\xbb\xce\xfc\xae\x33\xaf\xeb\x2c\x86\x96\x32\xf6\x59\x40\x30\x22\x5e\x37\x94\xef\x01\xc2\x37\x00\x60\x91\x2c\xc3\x57\xaf\xb2\x12\xd3\x69\xda\xd2\x02\x33\x30\x85\xb3\xb3\xed\x52\x7a\x2e\x8b\x19\xa3\xfb\x17\xc9\x78\xc6\x28\xeb\xc2\xff\x13\x6b\xc1\xcf\xba\xef\x97\x93\x04\xee\x04\xb9\x63\x74\x01\xf5\xfb\x65\xca\xc5\xbd\xf3\xe9\xfd\xbb\x77\xe7\x97\xd7\x1f\xae\xcf\x7e\xa6\xac\xfb\xeb\xdb\xd7\x67\xd7\x17\xaf\xcf\xf1\xf1\xc5\xdb\xcb\xab\xeb\x33\xf3\xf5\x3a\xb9\x55\xba\x3f\x09\xe4\x77\xec\x2e\x2d\xd2\x3c\x53\xcd\xe8\x8a\x94\x75\xd1\xf6\xcf\xa9\x2e\x5f\x62\x30\xcd\xab\xfb\x6c\x3c\xe3\x79\x96\xfe\x8e\x8d\xe0\x98\x4d\xb0\x4d\x5d\x34\xcd\xb3\x33\x2e\xd2\x69\x32\x06\x5d\xd7\xeb\xb4\x10\x17\x82\x2d\xb4\xaa\xcc\x4e\x16\xb5\x5c\x4e\x6f\x5a\xe5\xd5\x6f\xd9\xc1\x64\x2d\x67\x8c\x97\xc9\x25\x8a\xdb\xea\xae\xc4\xd0\xb5\x02\x7e\x1e\x35\x56\x5a\x80\x36\xef\x92\xf9\x8a\x45\x31\xa5\xd4\x41\x9d\x0e\x94\x52\x92\x76\xd3\x09\x0e\x2f\x97\x9b\x2d\x91\x7f\x8a\x8d\x57\x8a\xec\x5e\xe3\xe6\x34\xcb\x18\xa7\xa2\x89\xe9\x81\x71\x54\x29\xe4\xa8\x47\xf2\xa1\x69\x6f\x14\x47\xb6\x3d\xa0\xbd\x1a\xe6\x17\xf5\x48\x52\x53\x15\xcc\x25\x7c\xc6\x76\x65\x8f\x76\x8e\xe7\xa8\xa5\x7c\x43\x42\x81\xe7\x98\x86\xdb\x5a\x3b\x0c\x86\xd3\x1d\xd9\x05\x88\x30\xf9\x72\x3a\xa1\x62\xed\xed\xca\x82\x94\xfb\x31\xd5\x7b\x1b\x9a\x07\x8e\x0e\x33\x7e\xce\x95\x21\x4a\xa4\x1c\xb3\xe3\x56\xe9\x20\xcc\xeb\x7b\xb9\x4c\x2e\x37\xf4\x73\x99\x5c\x3a\x3d\x8d\xb1\xa7\xbe\xe9\xc9\x3b\x81\xe3\xfa\x9e\x66\x1b\xfa\x11\x94\xd2\x19\xf6\x32\xc5\x5e\x0e\xec\x7c\x9c\x53\x3f\xd5\xe9\x89\xcb\x64\x62\x50\xdc\x48\xf8\xb7\x52\x8a\x33\x57\x52\x19\x92\xd3\xab\x93\x42\x79\x83\x30\xd2\xd8\x3b\xfe\x30\x0a\x7d\xe6\x92\x52\x05\x6e\xec\x09\x91\x4f\xca\x08\xae\x49\xfe\x59\x73\xd2\x74\x52\x3c\x35\xa1\x35\x64\x3d\xf2\xac\xdb\x8d\x4e\x0e\xa7\xbc\xb7\x37\x03\x39\x62\xea\x9c\xa2\xa5\x93\xd0\x85\xf9\x89\x5c\x7a\x3a\x45\xca\xbc\xe5\x27\x76\x61\xc3\xde\xa8\x94\xc1\xe5\x0e\x01\x16\xc9\x6f\x04\x22\xf5\x94\x13\xad\xdc\x9b\x22\xf1\x7a\x5d\xba\x20\x26\x64\x25\xe9\xb0\x0d\x04\xdf\xd7\x09\xa2\xe7\x49\x21\x80\x7b\xc4\x44\x7a\x60\x67\x5d\x88\x5f\x01\x98\xea\xc5\x37\x49\xa3\x1b\x57\xc3\xe9\x74\x97\xd2\x99\xb6\x39\x76\xc7\x32\x23\xe6\x95\x1a\x0b\xd2\xf3\x8b\xe5\x4a\xb0\x28\x8e\x4b\x9f\xd1\x1c\xaf\x82\x35\x4d\x54\x6d\x7f\x96\x7a\x81\xdd\xdb\x78\xd1\x52\x11\x10\x36\xa9\xb8\x32\x0d\xdb\x2c\x78\x74\xa6\x29\x2f\x04\x15\x24\xeb\x16\x6c\x9c\x67\x13\xca\x49\xb6\x91\xbe\xae\x1c\xa4\x32\x5d\x52\x39\x0c\x44\x28\x0b\x20\x3f\xc7\xe0\x4a\x84\x60\xae\x3c\x82\x93\xcf\xaa\x0d\x18\xa0\xc6\xf3\xda\x85\x57\x8e\x54\xbf\x53\x62\xf4\x45\xdc\x5a\x45\x77\x31\x86\x45\xa8\x03\x0a\x32\xf6\x1a\x24\x3c\x08\x12\x91\xdc\x16\x54\x10\xfe\x0d\x60\x68\x06\xc2\x16\x20\x28\xc9\x29\xe4\x50\x88\xa0\xfb\xfd\x0d\xee\xbe\x1a\x16\x2d\x41\x0d\xf4\x32\x49\x19\x5a\x2d\x93\x86\xd1\xbd\x82\xd1\xed\x77\xc3\x48\x82\x08\x76\x2a\x10\x8c\x72\xa7\xca\x3e\x7e\x24\xb0\x9a\xf4\x9a\xdb\x6e\x1f\x67\x80\x5a\xf4\x7b\xeb\xec\x9c\xb4\xbb\x5a\x56\x08\x17\xa6\xb3\x5c\x8a\xe4\x56\x1f\x76\x39\x61\x46\xca\x4d\xea\x73\x6f\xcf\xb2\xb3\x1f\x4b\xa4\xf4\x2d\x59\x45\xb7\x0a\xf8\x37\xcd\x16\x51\xb2\x03\x4d\xfc\x39\x16\x8f\x3e\xa2\xfb\x2a\x2a\xce\xdf\x52\x36\x17\xa7\xed\xc7\x66\xa7\xc3\x4e\xdc\xb4\xb8\x12\x1e\x9d\x8e\x47\x45\x3d\x3c\x44\xe5\x1a\x25\x9c\x47\xaa\x73\x31\xf4\x9a\xe4\xd1\x55\xe4\xd6\x26\x14\xe8\xc1\xc0\x90\xc5\x65\x8e\xe5\x06\x43\x9c\x7c\x27\x22\x84\x1d\x0d\xd0\xc9\xba\x86\x5d\x07\xc4\xb8\x50\x04\xe2\x56\x88\xb1\xf1\x70\x3b\xab\x60\x7a\x68\xd9\x26\x67\x90\xeb\x59\xf6\x15\x47\xcc\xc7\x6e\x37\x6a\xdf\x7c\xda\xa0\x12\x2c\x5f\x85\x0d\x9b\xc9\x26\xbe\x9e\xd0\xdd\x3e\xb1\x7b\x5c\x6d\x10\x6f\x8c\x94\x35\xea\x49\x18\xfb\x58\x77\x73\x3a\xbd\x9c\xfa\x23\x1c\x94\xbe\x47\x18\xcb\x3c\xb4\x21\xd2\x69\xb4\x5b\x6e\x2e\x0e\x77\x13\x79\x5a\x04\x33\x83\x9a\x1d\xcf\xb4\x64\x80\xbb\x5b\x5b\x37\x7d\xde\xaa\x02\x90\x1b\x4c\xeb\xf8\x4e\x9a\x49\x81\x53\x99\x2e\xa0\x51\x15\xa5\x34\x3b\x3d\x1f\x44\xa5\x15\x4a\x41\xde\x56\x97\x81\x7c\xd3\x24\x54\x1b\x95\xce\x42\x47\xce\x41\x78\x81\xa5\xef\x11\xe1\x30\x9c\x9e\x70\xe0\x13\x26\xd1\x6f\x27\x93\x9b\xc3\x9b\xc7\x4f\xd8\xfe\xe1\xe4\xe0\x60\xff\x88\x1d\xdd\xec\x3f\x79\xfc\x38\xd9\x7f\x74\xd8\x7f\x3c\x3e\x18\x1f\x8f\xfb\x47\xc7\x6d\x28\x5c\x9b\xc7\x1d\x37\xa8\xe2\x40\x99\xdd\x6e\xf3\x1a\x6e\xb9\x9e\x18\x83\x26\x2c\x32\xf0\x19\xfa\xcf\xe5\x54\xcd\x5f\x85\x0b\x08\x62\x4e\xd3\xde\xab\x9c\x47\x3c\x76\xd8\x0c\x91\xa4\x99\x3a\x30\x92\x5e\x62\x99\xfa\xf5\x91\xdd\x53\x2e\xff\x4a\xaa\x4e\x30\x0e\xca\x45\xc0\x1c\x6c\x91\x53\x01\xff\x95\xda\x24\xd9\x37\x91\xa9\x81\xcb\x0a\xf7\x88\x1e\x19\xe2\x11\x3d\x0c\xac\xf1\xab\x37\xad\xc8\x8a\x1c\x4c\x20\xfc\x52\x85\x37\xee\x90\x55\x79\x39\x0b\xe0\xd8\xb3\x6e\x31\xcb\x57\xf3\xc9\x3b\xb6\xc8\xef\x02\xeb\xb4\xeb\x0d\x09\xdd\x52\x58\xd5\x63\xc9\x05\x27\xd2\x75\x00\x51\xc0\x78\x1c\xc4\x36\x97\xf9\x84\x81\x7d\x84\x16\xe1\x6c\x97\xa5\x37\xd5\x12\x21\x8b\xef\x16\xc9\x92\x82\xaf\x87\x97\x44\x76\x9e\x16\xca\x1e\x57\x76\x97\x7d\x64\x13\xd9\x51\x10\x19\x9a\x75\x6d\xc4\x85\x69\x01\xb1\xbf\x03\x02\x14\x7f\x5c\x3e\xc8\x31\x35\x4b\x14\xc7\xba\x81\x28\x9c\xb2\x05\xf1\x82\x71\x6d\xa1\x18\xac\xd7\x6b\xfc\xb4\xa6\xf1\x81\x57\x8a\x04\x00\xc5\x30\xcd\x49\x80\x46\xdb\xdd\xd5\x50\xb4\x7a\xcf\x5a\x61\x96\x2d\xf5\x29\x29\xae\xe4\xa2\xd6\x68\x1b\x55\x41\x3d\x1d\xc3\x71\x8b\x4e\x47\xc0\x66\xb0\xa9\x16\x1b\x5a\x30\x94\x8b\x5c\xba\xcc\x07\x2d\xe4\x5a\x66\xf2\x68\x8e\xd0\x43\x20\x23\xd6\x7c\x88\x63\xe3\x51\x1a\x93\x54\xe1\xe2\x82\x71\xf1\x13\x9b\xe6\xbc\xcc\xdc\x38\x06\x5f\xb2\xcf\xcc\xe9\x33\x2d\xf5\x99\x53\xee\xf7\x99\x3a\x7d\xe6\xde\x59\xcd\xbc\x2e\xa3\x9c\x88\x98\xe4\xa0\x3d\xf7\x4e\x56\x79\x04\xb2\xdb\x16\xf3\x5a\xe2\x5d\x0e\xc7\x11\xac\xeb\xfc\x56\x6d\x46\xfe\x52\xab\x9a\x6a\x48\x0b\xe1\xd4\x9e\xb0\x39\x13\xcc\x59\x49\x98\x0a\xd8\x43\xa3\x6c\xbc\x76\xe1\xa1\x25\x23\x41\xc7\xb4\x39\x2c\x99\xd4\x32\xd6\xb2\xbc\x92\xdd\x1b\x8c\x1e\x10\xe1\xbe\x85\x43\x7f\xd6\x94\xe8\xb8\xba\x9b\x5b\xd6\xd8\xfe\xad\x89\x07\x91\x98\x36\x83\x3e\x55\x59\x29\xa1\xa7\x73\x0b\x9b\x9a\x44\xd0\xda\xc3\x2c\x72\xfe\xf0\xe0\x9d\xe7\x0c\xf2\x3a\xb8\xb4\x34\x38\xd6\xc9\x1f\x03\xa6\xb7\x9f\x88\xab\x57\xb0\x11\x6a\xbb\x91\x97\xe3\x2f\x6c\xc8\xba\x18\x2a\xac\x37\xa2\x6d\xf5\xb3\x4d\xe4\xeb\x5f\xf8\x2a\x63\xb4\x3f\xa2\x6d\xf8\xa5\x5e\xbe\xcc\x33\x46\x0f\x46\xb4\x2d\x7f\xb4\xd7\xd1\xd9\xc3\x43\x74\x46\xbf\xac\xd1\xab\xf9\xba\x1e\xa2\x1a\xcb\xa9\xd4\x28\xe8\x42\x8f\x30\xd0\xb6\x01\x90\x33\x5b\x90\x12\x68\xcb\xb8\x85\x5b\x80\xa0\x3d\x8a\x0a\x96\x4f\xb9\x5e\xfb\x26\x3f\x8d\xfb\x6c\x1c\x66\x90\xcf\x10\x10\x27\x27\xb1\x16\x75\xa1\x8c\x4b\x7f\x19\xe0\xda\xc9\x45\xc0\x48\x68\x6e\x48\xa8\x9d\x33\x05\x33\xb7\x18\xbc\x28\x97\x92\xb0\x1b\xb8\x48\xca\x14\x97\x5f\x22\xa5\xfe\x4f\x26\x77\x49\x36\x66\xd7\xf9\x5f\x58\xa3\x19\x2c\x4e\x5e\x63\x2d\xbb\xaf\x32\x2a\xb4\xee\x2a\xeb\x74\x80\xaa\xd8\xa5\x94\x9d\xc4\x9a\xd4\xe8\x41\xe0\x34\x73\xbc\x6c\xb0\xfb\x4c\x33\xa9\x16\xb0\x4e\xa9\x58\x1f\xdd\x72\x88\x39\x6f\x7f\xdb\x7b\x61\xe3\x30\x99\xde\xd5\x36\x5a\x7c\x16\xfb\x16\xc2\x09\x37\x90\x44\xe5\xb3\x9c\x4e\x95\xa5\x14\x40\x3b\x51\x9a\x9e\x1a\x90\xbe\x03\xa4\x16\x65\xf1\x00\x9c\xf3\xa2\x34\xb6\xdf\xde\x48\x14\x95\xe1\x4d\x26\x5f\x5c\x00\x9e\x8b\xb2\x98\xe8\x35\xd7\x93\x55\xcd\xd4\x5d\x1b\x76\x3a\xdc\x9b\xee\x49\xc4\x29\x8f\x91\x06\xb2\xc1\x79\x10\xac\xc2\xd5\x0e\x12\xe7\x0c\x20\x26\x8e\x00\x55\x12\xe4\x11\x08\x07\x92\xc9\x80\xff\x4d\x19\xf9\x6e\xb9\x29\x6c\x37\xc0\x5e\xc8\x1e\x72\xca\xe5\x05\xac\xfa\x8b\x5b\xb9\x33\x60\xae\xef\x5c\xfc\x78\x1a\x71\xb8\x4c\xd4\xdd\x92\xe1\x6f\xd5\x0a\x8e\x33\x57\xa4\x9d\x38\x85\xd5\x00\x37\x66\xed\x62\xec\x6e\xea\x28\x35\x53\x51\x60\xdf\x1a\xb8\x38\xfa\xcc\x9f\x6b\x4a\x45\xf9\x9e\xca\xe2\x96\xbe\xbb\xa2\x14\xc6\x98\xe2\x18\x53\x35\xc6\xec\x34\xb3\x63\x34\x19\x0d\x15\xe6\xab\xb9\x63\xcc\xe2\x79\x43\x43\xcc\x43\x10\x05\xe8\x89\x55\x5a\xaa\xb9\x01\xdc\x69\xf9\x3b\xc8\x39\x14\x5c\x1f\x0a\x85\x41\x34\x5d\xdf\x0a\x8d\x8e\xb9\x27\xb6\x44\x61\x47\xf1\x69\xc4\xf4\x05\x9d\xc5\x44\x74\xd5\x15\x1d\x01\x2c\xe2\x78\x80\x04\x76\x75\x3a\x80\xfd\xab\x16\x78\xb0\x65\x27\x0a\x75\xf9\xd7\x6e\x49\xc9\x7a\x5d\x36\x63\x50\xc6\x1c\xdb\x1b\x31\x90\xa0\x09\x84\x7d\x79\xb7\x70\x9f\xe6\xf9\xa7\xfd\x39\xbb\x63\x55\xe3\x07\x1d\xf7\xb4\x64\x02\xc1\x21\x9e\xeb\x1b\xff\xa0\x57\xe3\xa4\x2e\x0d\x97\xed\x7d\x75\xb5\x37\x0b\x11\x25\xa0\x47\x57\x4d\x36\xc5\x5f\xc5\xc0\xf7\x24\xa9\xaa\x8d\x8e\x83\x6a\xa3\x63\x57\x6d\x74\x3c\x1a\x7c\x59\x93\x42\x8e\x89\x01\xa5\xaf\xc3\xe9\x93\x15\x75\x83\x22\x68\x97\x01\x32\xa7\x97\xd1\x8a\xa4\x4a\xfd\x46\xc6\x74\xde\x5d\x24\x59\x72\xcb\x38\x99\xd2\x39\x04\x77\x82\x78\x70\xbb\x3f\x45\xaf\xa2\x31\x84\x65\x76\x02\xc7\x45\xd3\x38\x26\xe3\x38\x90\xcb\x23\xc9\xb2\x5c\xec\xa8\x90\x00\x3b\x26\x3c\x55\xb1\xf3\x29\x15\xb3\x1d\x0c\x94\xb5\xa3\x1c\x80\x8b\x9d\xa4\xd8\x49\x76\x78\x9e\x0b\x5b\xb2\xdb\x8e\x5b\x39\x85\x0e\x31\x9e\xee\x94\xac\x74\x64\x6d\xf4\x01\xfd\xc8\xee\x8b\x28\x89\x7d\x47\x17\x43\x32\x0e\x19\x49\x86\x6c\x34\x5a\xc7\x64\x42\x87\xed\x45\x92\x66\x72\x37\xcd\x0b\xb9\x43\x20\xf4\x4a\x7b\x44\x96\x74\x56\xa9\x8e\xd4\x82\x8d\x5c\x07\xb1\xec\xd6\x71\xcb\x0f\x36\xaf\xef\xdd\x05\xed\x9d\x2c\x9e\x1d\xfe\xa7\x8e\x42\x7c\xb2\xd8\xdb\x8b\xe1\x92\x32\x99\x4e\x41\xb3\x89\xbb\xa1\xfa\x85\xcc\x82\xc9\xcf\xf4\x30\xfa\xa3\x96\x57\x07\x34\xcc\x05\xc4\x1b\x52\x99\x75\x23\xfc\x4c\x96\x64\x42\x7a\x10\x4f\xd6\xab\xa0\xca\x96\x5e\xe6\xa5\xe7\x79\x4c\x70\x9f\x16\xb0\x4f\x0b\x26\x5e\x62\xe8\xb9\x17\x98\x16\xcd\xc3\xc7\x7f\x07\x43\x02\x85\x18\xea\x0b\xca\x72\xbf\xca\x72\xb7\x4c\x60\xdc\xa9\x5f\x93\xb2\x6d\xaf\xf6\x72\x9f\xf8\x91\x8e\x21\x5e\x46\x5e\x40\x10\x80\x64\xde\x4d\x44\xd4\xf3\x8e\xd4\x9d\x88\x38\x84\xa1\x04\x13\xa4\x52\x06\x33\x27\x7e\xc0\x0d\x61\x2a\xd7\x44\xe0\x3e\xf9\x56\xcb\x40\x49\xff\xd7\x98\xc9\xfc\x6d\x96\x0a\x56\x2c\x93\x71\x90\x8d\xc9\x59\x57\xb0\x42\x00\xef\xc2\xba\x59\xce\x17\x20\x28\x33\x41\xc6\x3e\x33\x39\x5a\x88\x01\xa0\xa3\x57\x04\x95\x60\xef\x99\xdc\x33\x98\x59\x49\x85\x9d\x36\x63\xe0\x4c\x19\xea\xa5\x79\xd6\xd8\xc6\x07\x51\xdf\x46\x5a\x18\x8f\x16\x59\xef\x55\xca\x95\xb0\x84\xde\x0a\x39\x40\x8d\x02\xee\x5f\xcd\x93\xdb\xe2\x15\xcf\x17\xf4\x15\x81\x68\x4e\x06\x3b\xdc\xd3\xdf\x09\xeb\xbe\x58\xf1\x02\x2c\x67\x5e\xe4\xd9\x98\x33\xc1\x7e\xca\x57\xd9\xa4\xa0\xac\x7b\x75\xfe\xee\xe2\xec\xf5\xc5\x3f\xce\xae\x2f\xde\x5e\x7e\x78\x75\xf1\xee\xea\xfa\xc3\xe5\xdb\x97\xe7\x1f\xae\xae\xdf\x5d\x5c\xfe\x0c\x06\x38\x68\x70\xa8\x67\xc1\xba\x97\xec\x13\x86\x1a\xb4\xef\x5e\xbe\x7d\x73\xcd\x99\x72\xce\xe3\x2b\x98\x26\x65\xdd\x8b\x97\x6f\xdf\xbc\x98\x25\xd9\x2d\x83\xce\x7e\xfd\xf9\xc3\xe5\xd9\x9b\xf3\xab\x5f\xce\x5e\x9c\xab\x3a\xf6\x63\xc3\xde\x61\xdd\x37\x17\x97\x17\x6f\xce\x5e\x7f\x78\x71\xf6\xcb\xd9\x4f\x17\xaf\x2f\xae\x2f\xce\xaf\x64\x03\xe7\xaf\xce\xde\xbf\xbe\xae\xbc\x56\xda\xeb\xf3\xec\x2e\xe5\x79\xb6\x50\x37\xaf\xff\xa4\xe2\xae\x31\x13\xb9\xe9\x67\xa8\x67\x23\x07\xa6\x37\x2b\x21\xbf\x5f\xa5\x8b\xe5\x9c\x05\x3e\xa8\x95\x7a\xc7\x8a\xd5\x5c\x68\x73\xaa\x34\xbb\xfd\xf5\x0d\x65\xdd\xd7\xf9\xa7\xd7\xf2\x82\x83\x87\x17\x79\x36\xc1\xd3\xe3\xda\x5f\x05\xc2\xaa\xb2\xee\xfb\xcb\x97\xe7\xaf\x2e\x2e\xcf\x5f\x7e\x78\x77\xfe\xea\xfc\xdd\xf9\x25\x80\xe9\xf2\xfd\xeb\xd7\xce\x0b\xc7\x69\x3f\x91\x8c\x6f\xd4\xa8\x65\x62\x92\xb2\x4a\x04\x43\xa7\x11\x10\x8e\x4d\xd3\xf9\xfc\x72\x35\x9f\x17\x71\xf4\xf4\x49\x8c\x36\x91\x8d\xfc\x59\x32\x29\x07\xad\x56\xe8\xa2\x72\x72\x0f\x82\x27\xf7\xc0\x3d\xb9\x07\xa3\x41\xbb\xb8\x2f\xc6\xc9\x7c\xde\x6e\x05\xc6\x38\x64\x23\xfa\x05\x0b\xd8\x92\x92\xd2\x22\xba\x20\x18\x30\x0b\x15\x95\x33\x20\xc7\x21\xdc\xba\x5a\x2f\x31\xe7\x09\x81\x3b\x14\x1f\x6c\xed\xb3\xa9\xa8\x84\x08\x24\x59\xfc\x25\xeb\x16\x4b\x49\xa0\xc9\x4a\x90\x9f\x15\x7b\xae\xf4\xe3\x28\x08\x4a\xd3\xe0\xa3\x56\xd6\xc5\xe1\x9f\x66\xe6\x2b\x80\x6f\xe0\x3e\xa3\x99\x94\x96\x0f\xc4\xa4\xd6\xa3\xf5\x6b\xed\x28\x40\xd2\x81\x06\x14\x4b\xce\xee\xb4\xed\xc4\x66\xcb\x5a\x67\x4f\x61\xec\x1c\xad\x4d\xf8\x79\x95\x4e\x94\x79\x97\xbc\x01\x6b\x7d\x0f\x5d\xb3\x2c\x47\xf4\xbe\xad\x6d\x6f\x83\x1e\x59\x2d\x21\xa5\x94\x9d\x4e\x07\x48\x84\xb3\xd3\xd9\x40\xa5\x98\x39\x9d\x0c\x76\xfb\xf0\x63\x39\xd0\x21\xa7\x29\xd5\xa1\xa8\x4f\xe5\x3d\x31\x86\xf8\x68\x60\x5f\xcd\x4a\xba\xfa\x1a\x79\xe7\x14\x84\xd5\x59\x49\x0f\x01\x81\x72\xaa\xc7\xb8\xe2\xd7\xf7\x9d\xb6\x30\x70\xb0\x6c\xf3\x5b\x2e\x61\xdd\xa4\x04\x28\xda\xda\xaa\x55\x79\xaa\x4a\x32\x47\xbf\xb7\x92\x48\x8b\x77\x3a\x51\xb8\x20\x55\x80\xb5\xba\x1b\x6d\x8f\x14\x1b\x0b\x8b\x72\x5c\x23\x6f\x5b\x00\x80\x57\x92\xf2\xfd\xf7\xec\x27\x68\x7c\x8a\xa3\xc4\xfc\x67\xad\x30\xc2\x35\xd6\x6e\x50\x56\xdb\xc3\x95\x90\xb0\xf6\x98\x50\x85\x76\x7b\x31\x59\xea\xdf\xfd\x98\x2c\xbe\x56\x41\x06\x2a\x88\x6f\xb0\xd8\x44\xdf\x9f\xfc\xa7\x3c\x9f\xbb\xc0\xb7\x6a\x65\x81\x5f\x83\xd2\x7e\xe6\x6a\xd8\xaa\xb7\xd4\x26\xe3\xa3\xad\x6c\x48\x96\x09\x17\x60\x68\x03\x13\x85\x04\x2c\x9e\xb5\x79\x1c\x89\x78\x1b\x2b\x9c\x2d\x0d\x6a\x8c\xc7\x39\x3a\xfc\x00\x50\x60\x0c\x01\xcf\x1f\xfb\x71\x28\xac\x75\x8d\x12\x5c\xc9\xbd\xce\x86\x62\x44\xef\x23\x1e\x3b\xee\x17\xda\x76\xf0\x94\x75\x7f\xcb\xd3\x2c\x6a\xb7\x75\xb0\x45\x85\x22\x7c\xbb\x05\xc7\x5c\xef\xde\x42\xbe\xad\x5f\xb6\x77\x0d\x6a\xea\x8a\x5c\x79\xbb\x9f\xb6\xdb\x83\x2b\x93\x22\x20\x81\x7c\x7b\xfd\x9a\x1c\x91\xf9\xb2\x0f\xa2\x3a\xc5\x79\xe4\x10\xf6\xab\xc4\x5b\x2a\xbf\xf7\x88\xc7\x11\x23\x19\x64\x59\x8e\xe5\x82\xcf\xf3\x64\x02\xfa\x42\x3f\x3e\x2d\xc9\x95\x95\xad\xec\xf4\xd1\x86\x4e\xb9\xa3\xec\x54\xf1\x47\x23\x2e\x9b\x76\x39\x2b\xdb\xda\xd1\x36\x53\x50\xe3\x93\x6d\x28\xf6\x03\x42\xe5\xea\xb6\x89\xd3\xda\xf1\xf6\xad\x81\x3c\xcd\x7d\xce\x4b\xcf\x09\xcd\x4f\x87\x20\x2c\x40\x9e\xc2\xef\x1e\xe3\x84\x92\xc4\xf6\xfe\x74\x13\x68\xec\x2a\xd8\x20\x06\x1c\x47\x82\x4d\xdb\xc8\x6e\x6f\x92\x65\x14\x0f\xb3\x51\xcb\xdc\x6c\x69\xa7\x03\xb1\x2a\xc0\xa5\x7d\x3e\x55\xa5\xa3\x2c\x8e\x89\x07\xdd\xd4\x8e\xe8\xa0\xd7\x38\x22\xf9\xff\x41\x8b\x95\x72\xfa\x70\xb2\xbb\xeb\xc0\xf4\xf1\x77\x4c\xca\x5f\x3c\x67\x88\x7a\xe4\xa6\x97\x27\x5b\x6d\xe5\x12\xa4\x70\x0d\xe2\x56\x7a\x1a\x61\x96\xf4\x74\x78\x30\x8a\x89\x79\xe8\xbb\x0f\xbd\x51\x1c\x0f\x74\x41\xc5\xdd\xd7\x3e\x38\xab\xda\x38\xb2\xdd\xdd\xf0\x88\xfc\xfd\x7e\x3a\x19\x2c\x6d\x8b\xfd\x9e\xaf\xd6\xf1\xb6\x9d\x0f\x35\x8d\xfb\xdd\x12\x5c\x09\xcf\x6d\x4e\x15\x6d\x2b\xef\xf5\xc9\x4b\x7d\x96\x71\x85\x4d\x58\xab\xa7\x62\xa3\x72\xc0\xf2\xf1\x93\xf4\x79\xef\x24\xdd\xdf\x8f\xbf\x64\xc3\x74\xbf\x3f\xf2\x87\xb1\xf6\x67\x28\x79\x7e\xb5\xa0\x68\x61\xd8\x7e\xf1\xfe\xdd\xbb\x8b\xf3\x97\x3b\x2f\xde\xbe\xf9\xe5\xed\xe5\xf9\xe5\xf5\x0e\x5c\xaa\x10\x30\x6c\x67\x98\x4e\xe8\xa3\x69\xaf\x37\x65\x37\x4f\xf7\x93\x1e\x9b\xee\x1f\x1d\x1f\x3d\xde\x7f\xfa\x94\x25\xfb\xc9\xf8\xf0\xe0\xc9\xf4\x49\x2f\x19\xb3\x64\xd4\xb6\x98\xf2\xc6\xb9\xa3\xa2\x5d\xf6\xf0\xb0\xcb\x86\xb7\x23\xc5\xa0\x7c\xd8\xe8\x0b\xe1\x5d\xae\x09\x07\x2b\x4f\xf9\x7b\x78\x3b\xa2\x26\x51\x81\x47\x8c\xac\xb2\x4f\xdc\xf3\xbf\x91\x4b\xc5\x19\x38\x1d\x7b\x51\x07\x5a\xbe\x96\xe7\xe4\xc4\x6c\x12\x50\xda\x40\xf0\xe9\x94\x72\x35\x04\x90\x11\xcb\x4b\xc4\x95\x9f\x2c\x39\x03\x0d\x55\xe6\xbc\x94\x5b\x21\x4b\x16\x6c\xd2\x5d\x30\x7e\xcb\xa2\x4c\x3d\xc5\x31\xd9\xbd\x89\x52\x63\xa8\x94\xb6\x04\x4d\xd7\x6b\xd2\x10\xf6\x41\x0d\xb3\x12\x83\xc0\x55\x00\x29\x56\x83\x1a\xe0\xc8\x4d\x76\xea\x89\x78\x74\xb6\x69\x4d\x7c\xc8\xd5\x38\xe5\x7b\xda\x05\x70\xc0\x03\x91\x0a\x3e\x39\xc4\xf2\xb9\x2c\xef\xdd\x61\xa6\xd8\xb9\x6b\x0e\x0a\x24\x25\x7b\x78\x68\xbc\x0c\x6d\xdd\xcf\xce\xf5\x89\xf9\x59\x2c\x5d\x6f\xf2\x63\xb0\x4e\xc7\xb6\x47\xdd\xf6\xfe\x74\xfd\xe6\xb5\x6d\xed\x6a\xeb\xd6\x2a\x3c\x44\x37\xcb\x27\xec\xfa\x7e\xc9\x6c\x6b\x6f\x9d\xd6\x30\x03\x8d\x2d\xbf\x6e\x94\x6d\x7c\x50\x5a\xef\x06\x5b\xa6\xe6\x84\xe1\x96\xd7\x93\xec\xbd\x80\x78\x37\x9a\x7e\xe3\x24\x75\x8d\x05\x49\xaa\xfc\x84\xda\x28\xe2\xdb\x17\xec\xb3\x68\xcb\xb7\xc9\xad\x72\x9f\xc3\xf2\xc6\xac\x2c\xf5\xcc\xca\x36\x84\x26\xaa\x31\x66\xaa\x72\xce\xcd\x76\x6f\x22\xb9\x6d\x09\xc7\x50\xaf\x6c\xeb\x16\x3f\x3c\x54\x5f\xd2\x92\xed\xb8\xd6\x94\x19\x42\x18\x0c\x9a\x02\x76\x55\xda\x63\xc5\x37\xb9\x6b\xb1\x5d\xc5\xec\x44\x82\xea\xed\x2c\xd7\xf8\x94\xd9\x5d\x1d\x63\x11\xa5\xa5\xcc\x27\x6a\x5f\x38\x26\xb2\x8e\xc5\x6c\xac\x83\xc0\x90\x8f\xff\x66\x9f\xd8\x0d\xf6\xd7\xbc\xc2\xf1\xd6\x72\x07\x70\xee\xd1\xc8\x99\x34\x58\x10\x34\x31\x34\xdb\x58\xfd\xc1\x5e\xd0\x8b\xef\x71\x2f\x7a\x0f\x05\xc6\x26\x17\xe3\xe1\xe1\x1c\xfe\x9a\x5c\x4e\xf6\xc8\x3d\x3c\x54\x8f\xed\x3a\x12\xf1\x69\x7f\x10\xc9\xe5\xe8\x74\xe4\x85\x72\xda\x1b\x7c\x96\x2f\x0f\x07\x81\x1e\x24\x82\xe8\x74\xfa\x20\x4a\xb0\x27\x5e\x16\x3f\x1a\x5c\xc9\xff\x8e\x07\x7d\xe4\x9e\x90\x02\x7b\x42\x02\x7a\x03\xf7\x22\x35\x5b\x94\xd3\x73\xd9\x82\xc5\x91\x42\x92\x11\x4c\x89\x54\x8b\x28\x46\x8b\x11\x94\x3a\x4a\xc4\x15\x71\x87\xd4\x7b\xba\x6d\x47\x88\xf5\xbc\x1e\xc5\x57\xf4\x74\x78\xb0\xa9\x27\x79\x72\x2c\x7e\xa0\xe7\x11\x77\xa7\xc5\x15\xad\x5d\xd7\xdd\x35\xfb\x2c\xa2\x34\x3e\x01\x9e\x10\xfd\x97\x63\x30\x3a\xd7\xf6\x89\x7f\x4b\x85\xa2\x38\xce\xa2\x9c\x08\x92\x3a\xc4\xda\x61\x6f\x5b\x28\x34\x4c\xf8\x15\x4f\x6e\xe5\x07\xa5\xcd\xc1\x86\xfb\x3f\xa0\x61\x50\xf1\x3a\x8d\x1e\xf8\x90\xb4\xe7\xa2\x94\xec\xce\x56\x38\xac\xa9\x60\x52\xd0\x59\xc6\xea\xa8\xbe\x6d\x3f\x6d\xa5\xad\x72\x5c\xdb\x7a\x4d\x8d\xfe\x41\x3d\x71\xec\x93\xa3\x25\x3e\x41\x85\xa0\xe7\xce\xca\xf5\x0f\xb7\xe4\x00\xf8\xf3\xe7\x87\x3a\x97\xdc\xe3\x0e\x37\xae\x6d\x9a\xcc\xf7\xec\x77\xfa\xfa\x75\xa9\x7f\x15\x16\x4f\x92\x51\x6e\xe9\x83\x9a\xd2\x26\xde\x9c\x57\xfa\x10\x4b\x9f\x67\xe3\x7c\xc2\x26\x36\x2b\x1b\xf7\x8a\x1d\x0d\xe0\xbf\xe3\x8d\x23\x59\x5b\x58\x1c\xd5\x6f\xb6\x16\x3a\x8b\xaf\xb4\xf3\x9d\x40\xee\xdd\x01\xe5\xf1\xe6\xea\xca\x74\xdf\xee\x5a\xa7\x76\x33\x17\x0b\x3c\x23\x30\x62\x90\xc7\x46\x09\x0b\x78\xbc\x9f\x99\xf5\x86\x04\x8c\x4e\x7b\x0d\x0c\x64\xcb\x3d\x41\x0e\x8a\xe9\x37\xb0\x83\x28\xa5\xf0\x8a\x37\xf0\x68\x2d\x1c\xa8\x5b\xfe\x68\xd3\x5e\xf3\x56\x48\xf3\x44\x2d\x56\x49\xd1\xe3\x4a\x32\x1e\x35\x48\x63\x24\x4e\x80\x2c\x39\xce\x20\x1e\x1d\x94\xb8\x40\x95\x1f\xc7\x0e\xb2\x19\x06\xf5\x67\xcb\x0d\x77\xe7\x1d\xb1\xa3\xc7\x61\xbe\x53\xb5\x81\x5c\xac\x53\xfc\x51\xfd\x36\x02\x0c\xaf\x58\x54\x7e\x8a\x5b\x8a\x7b\x49\x0a\xe0\xdd\xe5\x6a\x3e\x77\xa6\x74\xdc\x80\x44\x6d\x8b\xa8\x5c\x56\x32\x1a\x61\xa4\x33\xba\x3f\x6b\x63\x93\xc6\x1e\x56\xd3\x99\x82\x40\x5e\xa2\x5e\xe9\x45\xd2\x6a\x31\x52\xd0\xd4\x4d\x46\xba\xa2\x86\x79\x4e\xa7\xd1\xea\x79\x2f\xfe\x92\xd0\xa4\x3b\x96\xb8\xd7\xb1\x22\x98\xd3\xde\xc9\xfc\xd9\xea\x64\xbe\xb7\x17\x27\xae\xf0\xa9\x18\xce\x47\x24\xef\x26\x22\x9a\xc7\x92\x23\x76\x87\xe1\x8e\x20\x81\xc4\xc4\x92\x38\x77\x36\xc0\x71\xd3\x2e\x2c\x8b\x4f\xd2\x69\xe4\x5f\x88\x69\x1c\xa7\xfa\xf0\x76\x3a\xac\x7b\x9b\x8b\x1c\x36\xe9\xbc\x60\xca\x48\x05\x18\xfa\xac\xe4\xd8\x21\xf1\x63\x8e\x67\xdf\xa9\x46\x2a\x77\xeb\x8b\x28\x77\x51\xd2\x71\x93\xa0\xee\xab\x06\x2b\xef\xf1\x6f\x18\xac\x53\x6d\xf3\x60\x9b\xe5\x80\x5a\xec\x85\x43\x86\xe6\x29\x58\x52\x9a\x2e\x6c\x53\x0d\x87\x00\xab\x6e\xa2\x54\x5e\xb8\x2e\x4a\xc1\x69\x0a\x17\x7b\x3f\x3a\x0c\xf6\xc8\xb2\x3b\x95\x56\x17\xb0\x38\xd7\x58\x5c\xe4\x21\x19\x7d\xc4\xed\xa5\xd0\x94\x60\x67\x6b\x8f\x4f\x60\x10\x93\xa2\x60\x5c\xb4\x51\x66\xaf\xfc\xe5\x78\x77\x0c\xfe\x42\x5b\xb9\xcc\x86\xdc\x9d\xcc\x14\x35\x23\x62\x73\x77\x28\xf0\x12\xe1\xb3\x26\x01\x9d\xab\x6f\x4e\x29\xc7\xa3\xd7\x44\xc7\x45\x89\x23\xd7\xbf\x2c\x8a\x61\xef\xab\xdc\xef\x86\x09\xab\x49\x30\xf3\x35\x5e\x84\x60\x13\xcd\x49\x86\x00\xfb\x6d\xb5\x58\xee\xa7\xd3\xfd\x2c\x17\xfb\x98\x47\x71\xd2\x96\x5f\xc1\x81\x36\xab\xe3\x55\xbf\xcd\x3d\x68\x13\x5c\x60\xb5\x42\x36\x99\xee\x28\x5a\xbb\xac\x9b\xcc\x3f\x25\xf7\xc5\x3b\x03\xad\x4e\xc7\x61\xbc\x33\x17\x6b\xa8\x08\x05\x13\x00\x72\x35\x4a\x81\x3f\xbb\x99\xef\x7e\xab\x81\x5e\x93\xf8\x65\x7b\x57\x64\x34\x43\xe7\x5a\x88\x91\x4e\x14\xa8\xef\xf5\x3e\xcd\xbc\x20\x1c\x5f\xa7\x53\x0a\x49\x29\x3c\x3b\x4a\x3d\x79\x3b\xa1\xda\x34\x2f\xa6\x66\x65\x48\xea\x3d\x0c\x7f\xae\x2c\x29\x11\x7e\x37\xcc\x4d\x7a\xe2\xa8\xea\xb5\x09\xb4\x7a\xac\x57\xc5\xbb\x0d\x35\xfa\x2e\x85\x26\x8a\x4e\x31\x4b\x36\x6e\x48\x64\x72\xc3\xe6\x7b\xed\x9d\x61\x7b\x0f\x9e\x3f\xdc\xae\xd2\xc9\x5e\x7b\xd4\xf6\x79\xe0\x06\x8a\x32\xc4\x2d\x01\x07\x58\xa7\x58\x70\x98\xa1\x66\xc2\xb2\xd2\xec\x0b\x95\x47\x74\x8b\x96\x0f\x1b\x6e\x66\xbf\xe5\x7c\xc9\x32\x34\x7a\xda\xa6\xdd\x06\xba\xbe\x89\x89\x74\x7b\x71\xd8\xc7\xa3\x00\x39\x45\xf8\x16\x8a\xad\x70\x97\xa1\x5b\x5b\xd0\xd4\x0e\x49\x5f\xd6\x45\xed\x65\x2d\x68\xa1\xb1\x76\xe0\x8e\x2e\xe2\x78\x5d\xe9\x24\x8f\x63\x4e\xf3\x6a\x27\xab\x70\x27\x79\xdc\xe2\x74\xd5\xd0\xc9\x0a\x08\x31\x07\x78\xa0\xdc\x62\x8b\x5c\x30\x03\x42\x92\x10\x97\x1b\xa8\x10\xe2\x4e\xe5\x7c\xe9\xd7\x75\x16\x33\x2c\xd9\x71\xb8\x22\x47\x85\x2a\x7a\x10\xf7\x1c\x92\x84\x29\x6b\x89\xee\x74\xae\x02\x41\x93\x1a\xad\xab\xc0\x28\x42\xb2\x80\x33\x22\xa8\xa6\x47\xe3\x4a\x65\xc2\xf2\x1f\xa7\xe6\x78\x9e\x17\x76\x1e\x2d\x50\x22\x55\x6c\x5b\xed\x66\x1f\xf6\x46\xf2\x86\x18\xf6\x47\xc0\xbd\xdc\x75\x8b\xf1\x8c\x4d\x56\x73\x76\x21\x37\xf9\x7c\x8e\x57\x2b\x87\xf8\x81\x26\x5a\xc3\x2d\x13\x2f\x99\xb2\xf5\xcb\xb9\xa4\xbc\x53\x79\x5f\x64\xec\x13\xbc\xcd\x55\x8a\x4d\xc9\x1d\x5a\xf0\x37\xe9\x28\x9b\x75\xd7\x24\xa1\xb9\xb1\x88\x2e\xa8\x4a\x77\xcb\xc8\xaa\xb4\xe1\xe7\x1e\x1c\xc0\x8c\x7a\x6c\x0c\x12\xb3\x5b\xb0\xa5\x56\xfb\xe8\xed\x12\xfd\xcf\x0a\x32\xab\x1a\xbd\x4e\x24\x6b\xa0\x98\xee\x31\x29\xc8\x8a\xcc\xc8\x34\x6e\x35\x2c\xb9\x9c\x9f\x01\x53\x42\x30\x1e\xce\x92\x26\x12\x4c\xd7\xc9\x6d\x34\xf1\x89\xc7\xeb\xe4\x36\x8e\x96\x21\x49\xd7\x6f\xd1\x92\xc8\x06\x34\x3d\xf7\xdb\xf7\x6b\x06\x14\x11\x92\x6a\xf8\x81\x5a\xc0\x24\x7b\xb6\x5a\x01\x35\x10\x4d\xbe\xf0\x36\x2a\x03\x74\x0c\x0c\x47\xce\xf7\x7d\x17\x6b\xd9\xb5\x53\x2d\xaa\xf6\xba\xc4\xde\xad\x4b\xcc\xad\xf6\xbc\x74\x06\xd3\xca\x2c\x9d\x92\xc6\x0f\x0f\x91\xbf\x6f\x55\x29\xb3\x1e\x9c\x88\xb8\x1a\xd3\x23\xf3\x63\x2f\x14\xfa\x0e\x3b\xdc\x82\xa5\x00\x76\x35\x5f\x1e\x96\x76\xad\xa7\x16\x4f\x6a\x3e\x65\xb1\xe4\x4d\x4f\xeb\x04\x4f\xda\x02\xc1\x39\xce\x85\xfc\xac\xb3\x3b\x83\xfd\x29\x64\x62\x2f\x1c\x94\xd0\x24\xc9\x49\x71\xcc\x39\x8e\xb9\x6e\x60\x5c\x0e\xcc\x3f\x4f\x92\x6b\xd6\xab\x3e\xa7\x79\xcd\xa0\x73\x35\x68\x32\xa6\xe5\x61\x97\xed\x66\xa3\x84\xac\xc8\xee\x6e\x4a\xe6\x65\x5e\xaa\x08\x9d\x85\x97\x51\x41\xc6\xe6\x24\xbc\xfc\x5e\xaa\xdd\x8f\xf7\x91\x18\x63\x5e\x4b\xc6\x43\xec\xdd\x7d\x9c\x83\xa1\xdf\x31\x5c\x88\x1f\x62\xc3\xd3\x8c\x7d\x55\xc8\x90\x4d\x27\xc2\x0c\x4c\x9f\x09\xab\x22\xb3\x87\xc2\x3d\x01\x5b\xaa\xc8\x32\xab\x22\xd3\xfa\x31\xa3\x6a\x21\x70\x80\xec\x51\x30\xd0\xbd\xf4\xed\x69\x77\xe4\x15\x96\x7f\x5c\x2d\x03\xaa\x4c\x58\x07\x20\x3d\x2f\xea\x75\xf4\x0a\x69\x55\x75\x46\x4e\x0e\x16\x85\x07\x98\x48\xb4\x8b\x29\xe8\xf0\xb3\xa0\xbf\x7e\x5d\x28\x14\x47\xc1\xfa\x3d\x51\x74\x3c\x6d\xb9\x8d\xff\xc1\x9d\x90\x1c\xe9\x34\xe2\x60\x45\x59\x8e\xcd\x61\x87\x80\xbc\x1c\x1c\xec\x74\x1a\xdd\x48\x4a\x31\xa3\x1c\x28\xa0\x9d\x74\x1a\x55\x54\xc6\xbc\xd3\xe1\xf1\x97\x8c\x5e\x7a\xf9\xb3\x38\xe1\x16\x36\xc6\x20\xcd\x71\xb7\xbb\x37\xb9\xb5\x2c\x58\x78\x18\x26\x24\xab\x78\xf7\xbb\xc6\xae\xa2\xd6\x55\xc3\x2c\x48\x4b\x47\x81\xe8\x74\x6e\x94\x66\x54\x19\xd7\x7e\x40\xfb\x66\x13\xcb\x87\xbc\xde\x14\xce\x26\x2d\x84\xab\x3a\x0c\x99\x08\x32\x37\x92\x03\xdb\x4a\xaf\x68\x4d\x02\x87\x23\xb3\x84\x69\x21\x30\xc6\x96\x08\xc4\xd8\xfa\x14\x09\x27\xca\x56\xdc\x02\x39\x91\xb6\x63\xc3\x3e\xdd\x5c\x6b\xda\xc1\x5b\xd9\x01\xee\xb4\x2b\x71\x2e\x5f\x39\xda\x95\x9e\xbc\xa5\x90\xce\xc0\x9c\x87\xfd\x41\x2f\x76\xde\x5e\x27\xb7\xa7\x07\xf8\x6a\xc9\xd9\x32\xe1\x90\x10\xfb\xf4\x08\xdf\x29\x8a\x04\x5e\x3d\xc1\x57\x06\x57\xfc\x29\xcf\x3f\x9e\xf6\x1f\xe1\x6b\xc4\x60\xf0\xf2\xf0\xc0\xef\x05\x68\x9c\xd3\x47\x7e\xa3\x2f\x92\xf9\x9c\xf1\xd3\xfe\x81\x6e\x58\x21\x08\x68\xe0\xe0\xf8\x91\x57\x16\xa8\xc2\x6c\xcc\x4e\x8f\xfb\xb2\x69\x6b\x05\xf1\xbb\xeb\xd7\xb2\xbb\x1b\xb1\x8e\xd0\xf6\x8b\x8f\x1a\x74\x96\x8e\x84\x19\xe5\xcb\x1f\x35\xf1\xe5\xb2\x54\x8f\x1b\x14\x7e\xaa\x09\xe0\x14\x74\x1b\x72\x2f\x5e\xfb\x0d\x6c\x6b\x44\x99\x19\xf6\x49\xff\x2a\x2a\x57\xa6\x2f\x79\x07\x42\xb4\xea\xd5\xd7\x60\x66\x29\x87\x77\x11\xe5\x64\x45\x0a\x92\xb8\x83\x6c\xd0\xb3\x95\x14\x16\x15\x1a\x39\xa5\x99\x21\xa7\x72\xfa\x4a\xd9\xde\x79\x7e\x82\xe8\xd0\x10\xcb\xb9\x7d\x99\x18\x7c\x30\xc8\x08\xd6\x1b\xa4\x64\xec\x54\x18\xe4\xe8\x36\x01\xd8\x15\x03\xcc\x2b\x4c\x0b\x91\xe5\xe1\xa7\xba\x10\xd4\x89\xf7\xd5\x15\x8e\xc5\xe4\xe3\x10\x55\x95\x21\x4d\xd2\xb7\x9c\x2a\x29\x68\x52\xd2\x96\xaf\x1a\x81\x9f\x03\x0a\xae\xe3\xac\x30\x6a\x2a\xa9\xa0\xd8\x42\xe1\xd7\xd0\xaa\x49\x82\x3f\x86\x14\x23\x10\x92\xea\x46\x72\xb3\x4a\x80\xd8\x23\xbc\xbb\xca\x38\x4b\xc6\x33\xd9\x77\x1c\xc5\xad\x8c\x16\xeb\xa4\x62\xeb\xfa\x38\x20\xd9\x95\x37\x9f\xa3\xdc\xc4\xad\xd5\xba\x89\xd2\xf8\x94\x53\x25\xe0\x19\x08\xfa\x2a\x8a\x38\x35\xb4\x7a\x5c\x59\xc2\xd4\x2c\x21\x6a\x19\xdd\x75\x2c\xad\x9e\x30\xcb\xca\x37\xaf\xa3\xc3\xa8\x3d\xf6\x54\x00\x19\xb8\x80\x88\xae\x32\x93\xd2\x3c\xdf\x4a\xc2\x13\xa2\xd8\xc4\x5a\xed\x92\x5a\x01\x04\xf0\x6b\x15\xa1\xc3\xee\x4d\x94\x34\xc0\x32\xa5\x89\x8e\x66\xeb\x68\x15\x1f\x6f\xab\xa5\x0c\xd9\x40\xfb\x79\xcb\x14\x59\x9e\x3d\x7f\x7e\x44\x0a\xfa\xa4\x93\x91\x15\x1d\x8e\x5a\x47\x9d\xac\xd3\x59\xa9\x7e\x95\x7f\x6a\x4c\x0e\xdc\x77\xe0\xac\x1a\x93\xbe\xfb\x4e\x79\xae\x4a\xba\xc9\xf1\x00\x4d\x89\x3c\xd0\x09\xd9\xdd\x2d\x62\x92\x6a\x75\x1b\xb8\x7d\xda\xe9\x3c\xde\xac\xb2\xc5\x46\x95\xe7\xb0\x70\x6d\x67\x37\xe2\x40\x00\x39\xe6\xa8\xb0\xc8\xd0\x91\x1e\x3c\x6e\xb6\x72\x75\xed\x6f\x3d\xb5\xaf\x87\x17\xd3\xae\xdd\x74\x2d\xb9\xa8\x9d\x4e\x94\xd4\xb8\x46\x31\xa7\x2c\x15\x68\x6b\x59\x45\x57\x88\x9a\xac\x4e\x40\x73\xab\xa9\xeb\xe9\x98\xb2\x22\x88\xd8\xf2\x18\x84\xe9\x29\x49\x48\x8e\x41\x4f\x0a\x9a\x00\xff\xa2\xbb\x98\xd3\xc2\xf1\xa3\x96\xd7\xf8\xef\x51\xea\xb5\x4c\x8e\x62\x35\xe8\x31\xcd\x55\x76\x69\xe4\x7e\x0a\x32\xb5\x6f\xb2\x64\xc1\x0a\x32\xa3\x2b\xf7\x8e\x8e\xe6\x44\x21\xa2\x59\xfc\x25\xef\x8e\xe7\x2c\xe1\x8e\x56\x71\x42\x7b\x27\x93\x67\x63\x4d\x71\x4c\xf6\xf6\x62\x3c\xbc\xe3\xe1\x64\x64\xcb\x2d\xe9\xcc\x31\xc4\x24\x0b\x3a\x53\x96\xa0\xe4\x8e\x9a\xc4\x48\xf7\xb4\x77\x72\xff\xec\xee\xe4\xde\x36\xb2\x1c\xde\x3b\x8d\xdc\x7a\x7e\xd9\x8b\x98\x7c\xa0\xbd\x93\x0f\xcf\x6e\x75\xef\x1f\x6c\xc5\xc5\xf0\x76\xf8\x61\x34\x8a\x5b\x39\x6e\xe0\x8c\xdc\x92\x29\xb9\x23\xbb\xbd\x78\x9d\x69\x0f\x65\x95\x6d\xc9\x3e\x9a\xcd\xd8\x74\x9f\x5a\xa6\xd3\x97\x9a\x28\x49\x8e\xdd\x11\x20\xcc\xd1\x4b\xb4\xa2\x79\x79\xa9\x8b\xca\x52\x27\x06\x01\x2a\x91\x79\xeb\xf7\x68\x45\x1e\x1d\xc9\x2d\x38\xaf\x48\x72\x74\x0c\xed\x7e\x87\x93\xa9\x2d\xfe\x44\x96\x9e\x96\xb4\x7b\xda\xad\xdd\x94\xea\x1f\x40\xb9\x99\x6b\x88\x1f\xa3\xdf\x4f\x61\x22\x22\x83\xbe\x0e\x07\x45\xa6\x64\x4e\x66\x64\x77\x77\x0c\x30\x95\xaf\x4c\x56\x90\xc2\x8a\x82\xa0\xf5\x83\xe3\x47\x71\xa7\xb3\x1b\x90\x0a\x49\xaa\xb3\xc4\x09\xff\x2d\x5a\x92\x09\x29\x88\x6b\xae\xfe\x64\x13\xa9\xe0\x9f\xdf\xe0\x71\x83\xb3\xec\x4b\xf2\xf2\xb8\x95\x04\x24\x79\xae\xf7\x43\xbf\x24\x46\xbd\x61\xb7\x69\x06\x52\xdb\x9f\x79\xbe\x52\xb6\xed\x25\xb9\xac\xf2\xa3\x55\x46\xf3\xce\x14\x0e\x4b\x2d\xd5\xca\x47\xd9\xa7\x9d\x3f\x39\xf2\x8e\x66\x57\x85\xef\x90\x77\x6c\x90\x71\x34\xca\x00\x0b\x26\x5c\x49\x47\x41\x76\x77\x33\x49\x4a\xa8\x3d\xf3\xa7\xe6\x68\xb0\x86\x92\x2f\x02\x01\xec\xc6\xf3\xa4\x28\x9c\x6c\xd8\x5a\x4a\xb6\x31\xfd\xb5\x33\xa2\x80\x93\xab\x12\xe5\x7e\xb9\x53\x91\x3a\x09\x60\xb6\x65\x32\x66\x83\x8c\x08\xbe\x2a\x44\x9a\xdd\x0e\xf8\xba\xd5\x86\xee\xdb\x14\xec\xa1\xdd\xf1\xe8\x48\x08\xa4\x34\x83\x21\x1b\xd1\x54\x45\x4b\x32\x52\xd1\x92\xfb\xb0\x3f\x0d\x4c\xf2\xc4\x88\x50\x49\x9e\x40\xf4\x1d\x0e\xaf\xb4\x93\xea\x1c\x9f\xa6\x3b\xcf\x9b\xcb\x19\x85\x80\x74\x4e\x3a\xfc\x0d\xe5\x5d\x33\x41\x92\x50\xde\xd5\x53\x94\x68\xdb\x4e\x51\x80\xeb\x8d\xdc\x6f\xaf\x23\x77\xae\x71\x4c\x54\xd2\xc2\x5d\xe3\x32\x59\x6c\x96\x77\x09\x62\xb4\x2a\x70\x35\x9d\x94\xf5\x2e\x41\xa9\x57\x4a\x8a\x38\x5e\xaf\xe5\xb8\xa0\xcb\xba\x29\xaf\xca\x53\x06\x31\x16\x99\xd3\x28\xa5\x2b\x33\xef\x95\x37\xef\x95\x99\x37\xd9\x38\x7a\xcc\xd2\xe8\x4f\x61\xeb\x39\xcc\xad\xd7\x9c\xbf\xda\x65\x2e\xf9\x27\x8f\x6f\xec\xc3\xcd\xcc\x48\xdf\xe1\x2c\xdf\x57\xe2\xb2\x80\xbd\xfa\xcd\x9c\x75\x0b\xb0\xcf\x71\xd3\x86\x02\xdf\x76\xcb\x44\x24\xe2\x93\xfd\xfe\x2e\xa5\x79\xa7\x93\x06\x3c\xba\xf2\xbd\x3e\x49\x62\xc2\x51\xa2\xd5\xe9\x44\xfa\xa7\xdc\xbf\x89\x66\x5d\x9f\x6e\x32\x21\xab\x92\x49\xce\xf5\x96\x18\x4c\xeb\x5f\x74\x0d\x78\xa4\x55\x74\x27\xe9\xe4\x05\x5c\x2f\x5a\x89\x93\xf8\x8b\xc5\x3e\x2f\xd9\x58\xbc\x70\x54\x1b\x51\xfb\x65\xa9\x8e\xf2\x42\xff\xff\x69\x69\x63\x3b\x06\x54\xa4\x11\xef\x26\x6f\xbc\xea\xdd\xe1\x4c\xca\xbf\x3e\x70\x52\x25\xd6\xcf\x5c\x99\xb9\x7b\x65\x6d\x72\xdb\xfb\x21\xdd\x5e\x27\xb7\x97\xc9\x82\xf9\x3d\x87\xb8\x88\x0c\xc9\x94\x7e\x0d\x99\xe2\x2a\x9c\x9c\x71\x84\x99\x7d\x50\x3e\x29\xe2\x79\x6c\x14\x54\xd3\x12\x45\x43\x66\x2e\x15\xfa\x53\x34\x95\xcc\x7f\xa6\xd4\x44\x18\x60\x67\x46\x56\xa8\x1c\x95\x74\xaa\x3f\x68\x3c\x22\x3d\x7b\x44\xa2\x69\x23\x73\x9a\x38\x21\x5f\xb0\xfd\xb1\xdc\x07\x73\x64\x59\xf1\xf8\x5c\x43\x0d\x62\xde\x2a\x0e\xd1\xb1\x54\xda\xca\x69\xaf\xd6\xdd\xd2\x12\x1e\x09\x7d\x15\xe5\x0d\x62\x89\xa2\x46\x2c\x91\xfb\x8c\x6d\x12\x60\x67\x53\x3f\xe9\x5d\xea\x4e\xad\x2c\xa3\xb0\x64\x06\x77\xd5\x28\x4f\xb6\xe5\x8d\x32\x67\x6a\x56\xd5\xee\x6d\xde\x56\xa2\xd3\x97\xa6\x24\xc1\x4c\xa4\xb9\xb5\x68\xd8\x24\x8b\xf2\xda\xf2\x51\x5d\xc5\x8d\x33\xd3\xc9\x41\xfb\x40\xb8\x9b\xd9\x84\x88\xa4\xcc\x31\xe4\x73\xfa\xc8\x80\x79\x49\xb1\xa3\x59\x52\x9c\xdf\x25\x73\x8d\x6a\x53\x44\x8b\x1e\x61\x52\x72\x92\x95\xe5\xd5\x68\x72\xc7\x3c\xaf\x4c\xa1\x56\x5d\x11\xab\x47\xde\xb4\xeb\x9a\x33\x28\x23\x00\x79\x26\x95\xa3\x5c\x22\x2e\x81\x0d\x2b\x68\x82\x93\xdf\xef\x9f\x14\xcf\x69\xef\xa4\xd8\xdf\xd7\x97\x63\x32\x2c\x46\x92\x49\xa8\xb9\x29\xe4\xe7\x18\xce\xaa\x6a\x53\x5e\x19\x2b\xb2\xdb\xc7\x5b\x63\x2e\x6f\x0d\xc7\x02\x74\xbe\xd7\x27\xe3\x98\x64\xf6\xba\xd0\x3f\x87\xab\x11\x1d\x3b\xb3\xfe\xba\x0b\x23\x2d\xcd\x12\xf9\xcc\xd6\xfb\xa8\xdd\x51\x52\x06\x1d\x27\x0b\x02\x9a\xb1\x98\xc8\x2f\x69\x76\xc7\x38\xc4\xd0\x52\xa1\xb4\x9c\x4f\x98\xbb\xa5\x4d\x30\xd8\x96\xfa\x64\xa9\xf7\x66\x4f\xe1\xf2\x36\x46\x45\x5a\x15\x27\x3c\xfd\xfa\x2b\x24\xc4\x7e\x94\x8d\x30\x90\x45\x68\xa5\xf2\x12\x54\x41\x76\x10\x71\xe5\x24\x41\x3d\x95\xbd\x1f\xa3\x9c\xa4\x01\xe3\x90\x7f\x81\x28\xc6\x95\xab\x3e\x2d\x9b\x7e\x8c\xf3\xc5\x22\x15\x2e\xd3\x82\x74\xfa\xdf\x1a\x15\xee\x86\x00\xd1\xaa\xc6\xbc\x41\xe5\x9e\x77\x4d\x20\x35\xca\x89\xb9\x4f\x68\x46\x72\x8f\x4f\xa5\x29\xc9\x7d\x25\xbc\xa9\xd7\x26\xf9\x8f\xd4\x2d\x9a\x76\x8d\xbe\x1d\x97\x04\xd5\x48\xee\xa8\x5a\x5c\xab\x09\x05\x04\xf8\x52\x56\x6f\xff\x6a\x02\xcf\x76\xc0\xd1\x60\xa8\x02\xe8\x46\x85\xa5\xb2\xe0\x98\xa4\x93\x7d\x04\x89\x8a\x52\xd7\x96\x9f\xaa\x86\x75\x3f\x14\x48\x25\x93\x04\x0b\x33\x04\x92\x1a\x65\x0b\x8c\x02\x95\x35\x01\xee\x50\x08\xf0\x67\x76\xe8\x7b\xd4\xb1\xea\xe8\x26\xae\x5a\xf5\x57\x75\x64\x24\x15\x91\xcf\x59\x37\xcd\xa6\x79\xd4\x7e\x5f\xb0\x9d\xff\x19\xe7\x99\x60\x9f\xc5\xff\x90\x9d\x24\x9b\xec\xfc\x8f\x44\x4a\xcf\x96\x89\x98\x3d\x8f\xff\x67\x47\xe4\x3b\x10\xb4\x08\xe8\xe9\x1d\xc1\x16\xcb\x79\x22\x58\xb7\x1d\x13\x11\xb5\xe5\xbb\xb6\xd2\xbf\xfe\x9d\xfe\x0a\x5b\xf9\xe7\x06\x3d\xac\xd6\xc2\x16\x2a\x10\x16\xaa\xd7\xf2\x71\x32\xf7\x19\x50\x23\x57\x4a\x69\xef\x24\x7d\xa6\xef\x9a\x93\x54\xab\xcd\x72\x9a\x0d\xd3\x11\x49\xa8\x18\xe6\xfb\xfd\x11\xf0\xd4\x92\xf6\x53\x58\x33\xc7\x90\xcc\xaa\xe5\x61\x32\xa2\xc5\xba\x26\x1e\x4c\xbd\x5f\x26\x8c\xd1\x18\xb1\x42\x4b\x0a\x6d\x2e\xe7\xa9\x88\xda\x12\x00\xb9\xff\x98\xd0\x7c\xd8\x1b\x29\x4b\x21\x88\x6e\xd5\x97\xcc\x3d\x18\x2d\xd9\x9b\x4a\x1b\x20\x2b\xd0\x51\x4a\x93\x53\xa1\xca\x28\x59\xcf\x20\x1b\x26\xa3\x53\x41\xe5\x7f\x03\x49\x73\x25\xe6\xee\x68\xff\x57\x3b\xee\x74\x56\xea\xbb\xfc\x6f\x10\x09\x67\xac\xb6\x0d\x52\xd0\x34\x26\x92\x4a\x9c\xac\xc6\xac\x2e\x6f\x9d\xe2\x56\xd6\x26\x04\x14\x9a\xa2\x3c\xdd\x46\xcc\x91\x6e\x10\x78\x57\x04\xe2\xea\x4b\x06\x7c\x12\xfb\xb4\xf3\xb3\xf5\x08\x51\xf1\x32\xff\x1e\xb9\x81\x27\x34\xeb\x17\xf0\x17\x4b\x54\x74\xda\xd8\xa6\xe7\xb3\xe8\xf6\x9b\x8d\x68\x4a\xe2\x1a\xab\x94\xa9\xf1\xa5\x5c\xd1\x3c\xa4\x90\x9b\xe3\x6b\x07\x16\x99\xba\xec\x0d\x04\xd2\x98\x4c\x25\xf9\x00\x77\x38\x86\xe2\x88\x0a\xb2\x8a\xc9\x8c\x26\xba\xe3\x68\xea\x46\xea\x00\xd3\xb0\x99\x47\x59\x2e\xe9\x4c\x13\x9e\x0b\x3a\xd1\x44\x06\xb9\x73\xe8\x98\x7b\x5a\xa6\xd8\x16\x5a\x9a\xbb\xdb\x8f\xc9\x2d\xbd\x2b\xef\xcb\x7b\x20\x3c\x94\x52\x56\xbd\xbb\x53\x44\xb3\x7d\x11\xc7\xe4\xbe\x44\x79\xdd\xea\x57\xb0\x74\x77\xae\xd0\x52\x1f\xe2\x1b\x2d\x1c\x46\xe9\xe5\x5d\x39\x0c\x89\x16\x17\x8f\x5d\x71\x31\xac\xde\x27\x3a\x1e\x7e\x18\x91\x73\x3a\x1f\x7e\x92\xe7\xfc\xb3\x1a\x36\x9e\xf3\x4f\x71\xeb\x66\x78\x3e\xa2\x9f\xd7\xe9\x34\xba\x8d\x75\x7f\x57\xb4\x77\x72\xf5\x4c\x4f\xf7\xe4\x4a\x37\xf6\x96\x5e\xed\xf5\xc9\x19\xbd\x1d\x2e\x86\x57\x23\x1d\xf9\x64\x97\xd2\xb3\x4e\x47\xcd\x21\x7a\x4b\xce\xe2\xb5\xfa\xed\x0c\xf0\x46\xbb\xdb\x58\xe7\x1b\xb8\x60\x96\xfa\xfa\xfe\xcb\x16\x56\xd9\x8e\x01\x89\x8d\x67\xbe\x9d\x55\x81\x9b\xfb\xc2\x86\x19\x76\xf2\x39\x38\xc7\xf7\xd1\x56\x6e\x55\x9e\xeb\x93\xba\x3c\x74\x8e\x01\x48\x22\x62\xc5\x2f\xfa\xc4\x66\xd5\xf8\xf1\x80\x67\xb5\xd2\x95\x38\x2a\xf0\xbf\x44\x89\x1d\xa7\xeb\x7b\xd2\x40\xbd\x69\x1f\xb6\xd7\x69\xe1\x19\x9e\x3e\x3a\x0e\xf8\xb1\x41\x21\xa7\xcc\xa6\x20\x32\x1e\xa9\xeb\x44\x18\xd7\xd2\x48\x1b\x57\x3f\xc3\x60\xd0\x6a\xfa\xb1\x1e\xd5\x85\x60\x0b\x15\x13\x99\xa4\xa8\x9b\x70\x9c\x79\x60\x0f\xfc\x21\x24\x6c\x44\x32\x53\x5f\x75\xb2\xeb\xab\xf4\x66\x9e\x66\xb7\x54\x48\x9e\x10\x63\x64\xfe\x01\x5a\xf8\x6b\x93\x05\x13\x36\xb8\x4c\x38\xcb\x54\x38\x4e\x6c\x53\x67\xd9\x33\x26\x37\x94\x37\xa6\x54\x82\x06\x50\x5c\x53\x67\x78\x6f\x7b\x01\xc1\xa8\x89\x00\x5a\x53\x1c\x0a\xac\x31\x5f\x62\x53\x41\xf9\xdd\x8d\xfe\xe5\x86\x05\xfd\x2b\xc0\xe0\xbf\x37\x46\x5a\xa9\x42\x40\x05\xa1\xf8\xbf\x3d\xe9\x0c\x0b\x6e\x9a\x73\x66\x53\x96\x9b\xf9\xfc\xa3\xcc\x99\x32\x7f\x88\xe0\xa5\xc8\xec\x18\x50\xc0\xa1\xbb\x52\x42\x00\x1d\x08\x06\x18\x54\xbb\xb1\x54\xce\xa9\x40\xee\x0f\xd7\xa5\x31\x69\xe5\x34\x59\x5b\x59\xe7\x9f\xfd\x6c\x02\xd5\xe1\xf0\xd2\x70\x32\x7f\x38\x29\xe5\x7a\x38\x92\x75\x2f\x0d\x47\xa7\x00\x01\xa7\x73\xc8\x88\xe2\xc6\xf5\xcf\x5b\x29\xcd\x9d\xb1\x30\xb9\xda\xa0\x2a\x48\xa7\xd1\xae\x49\xa3\x0e\xa1\x6d\x76\x43\xe7\x5c\xdb\x08\xe1\x68\x2f\xaf\x22\x41\xda\xc5\xdd\x6d\x3b\x6e\x09\x7e\xff\x45\x03\xe3\x6c\xf2\x5b\x32\x66\x99\x80\x80\x03\xed\x1b\x00\x0d\x64\xb8\x68\x3f\x1b\xa7\x7c\x3c\x67\xcf\x9f\xfd\x11\x7f\xb4\xe3\xf5\x38\x11\xe3\x99\xc4\x10\xeb\x69\x9a\x25\xf3\xf9\xbd\x5e\x54\xc9\xa6\x73\xe5\xc3\x29\x27\xaf\x3d\x3c\x1f\x1e\xb8\x02\x10\x4c\xd2\x4a\xbf\xdf\xbf\xbb\x90\x15\xd8\x7a\x0d\x56\x0d\x76\x36\x1a\xf3\x78\x63\x8f\xda\x93\xf4\xae\x1d\x0c\x42\xe1\x70\x3d\x3f\x2a\x6c\x87\xbd\x72\x14\x84\x24\x64\xca\x91\x4d\x25\x87\x95\x9b\x38\x33\x92\x60\xcd\x4f\x59\x43\x4d\x37\x4e\x22\x54\x1d\x88\x32\x30\xb2\xaf\x6c\xa0\x46\x87\x04\x2a\x94\x57\x6f\xdf\x9d\x5f\xfc\x7c\xf9\xf6\xa7\x3f\x9f\xbf\xb8\x06\x6d\x91\xbc\x66\x2f\x93\x05\xeb\x8a\xfc\xfd\x72\xc9\xf8\x8b\xa4\x90\xd7\x18\xee\xcd\xf6\xb3\xe2\xee\xf6\xf9\x33\xd9\x51\x7a\x9b\x29\xba\xe4\x79\x7b\x8f\xef\xb5\x9f\xfd\xd1\x7f\xf9\xec\x8f\xb2\x64\xbb\x25\x94\x41\xa6\x1c\x20\xcd\xe1\xde\x74\x96\xd9\xfe\x5c\x1b\xd7\x92\x04\x3b\xc1\x56\xab\xad\x24\xa5\x56\xd6\x95\xd5\xf6\x4d\x19\x6c\x49\x92\x52\x90\x48\xab\x6c\xf4\x79\x0d\x02\x10\xe5\xd3\x0f\x92\x90\x9c\xc8\x23\xef\x84\x65\xf9\xab\x64\xb1\xe5\x75\x16\xa5\x44\x6e\xcd\x75\x24\x24\x2d\x4e\xb8\xe2\x1c\xb9\xa3\x0a\x81\x00\xb2\x8e\x3d\x6e\xa7\x13\xa2\x31\x82\x3b\x19\x8e\xbf\x9d\x7b\x1b\x26\xd3\x36\x09\x91\xea\x0f\xa5\xca\xc4\xda\x8e\xc9\x01\xa5\x54\x54\x0f\x5c\xac\x55\x37\xda\x28\xb4\xb7\x8e\x58\x7c\xfa\x2d\xfe\x7e\x26\xa2\x67\xdc\x5d\x15\x6c\xce\x8a\x02\x9d\xb9\xa8\x89\x79\x85\xce\x5d\xed\xf6\x57\x86\x8d\x6c\x3e\x58\x0a\xc7\xc1\xa9\xca\xe2\x00\x25\xb8\xe1\x6c\x68\x13\x28\xba\xdb\x27\x39\xe5\xa7\x1c\x9c\xf8\xd2\x7c\x55\xe0\x56\x18\x08\xcc\xf7\x9b\xce\x27\xad\xbc\xd3\xc9\x77\x52\xb4\xa3\xcc\xa7\x3b\xd7\xec\xb3\xd2\x3b\xee\xf6\x4a\xf9\xa9\x94\x0e\xd2\x07\x05\xe1\xb1\xf6\x73\xff\xba\x11\xea\x40\x62\x9d\x8e\x7f\x0d\x04\xfa\x88\x49\x82\x5b\x6f\xa0\x68\x18\xce\x68\x7b\x26\xc4\x72\xf0\xc7\x3f\x7e\xfa\xf4\xa9\xfb\xe9\xb0\x9b\xf3\xdb\x3f\x1e\xf4\x7a\x3d\x79\xac\xda\xad\x72\x74\x6f\x8e\x99\x30\x18\xfd\xe2\x1d\xe6\x41\x9f\x4c\x58\x31\x1e\xf4\x89\x48\xc5\x9c\x0d\xfa\x6b\x92\xb2\x12\x57\x02\x36\x7b\x27\xc3\xf6\x4d\x9b\xb4\x6f\xd2\x5b\xf9\x77\x9e\x8f\x3f\xfe\x6b\x95\x0b\x26\x1f\xf2\xc9\xbd\xfc\x8f\xb7\x49\x7b\x0c\x34\xa1\xfc\x91\x4f\xe4\xb7\x89\xdc\xaf\x72\xbb\x93\xf6\x64\x2e\xff\x08\xc8\x5d\x81\x09\x2c\xe4\xc7\x59\x5f\xfe\x39\x90\x7f\x0e\xe5\x9f\x23\xf9\xe7\x58\xfe\x79\x24\xff\xb0\x04\x0a\xc9\x26\x53\xf9\x6f\x21\xbb\x9f\xa7\xf0\x07\xd4\xa6\x46\xae\xda\x5e\x30\x91\xb4\x49\x3b\xcb\x61\x24\xb9\xec\x6e\x29\xff\x71\x39\x10\xbe\xba\x91\x83\x2c\xe4\xbf\x45\x32\x97\x1f\x8b\x65\x22\xab\x15\x82\xe7\xd0\x4c\x21\x78\xfa\x51\x96\x2d\x56\x37\xf0\x57\xd6\x06\x59\xb5\xfc\x5f\x0e\x7c\x25\xff\xc9\xaa\x77\x09\x6f\x8f\x82\xf9\x09\xf4\x9a\x42\xd8\xec\x3e\x12\xc0\x39\xa3\x7f\x1c\xfe\x53\xec\xff\x93\xef\xfc\xf3\xf3\x59\xef\x9f\xab\xfe\xa3\x27\xf2\xef\x93\xde\xf9\x3f\x57\x72\xcd\xf6\xe1\xbf\x33\xf9\xf7\xe0\x09\xfc\x7d\x0a\x7f\x5f\xc9\xbf\xc7\xaf\xfe\xb9\x3a\xec\xf5\x7a\xff\x5c\xbd\x3a\x7f\xf5\x6a\xf4\x47\x92\x30\xda\x5e\x65\xa0\x98\x61\x13\x6b\x43\x39\xc9\xc7\x70\xcb\x29\x33\x68\xfd\xa4\x8c\xaf\x18\x29\x59\x63\x57\x39\x31\x5d\x41\xd3\x8e\x60\x82\xf4\x5e\xed\x42\xeb\x84\xd7\x6c\xdd\x50\xae\x50\x71\xdf\x5d\xf9\x9f\xbd\x8e\x83\x58\x72\x4d\x4a\xef\x43\x71\xcf\x49\x06\xc8\xf4\x14\xdc\xfb\xdc\x2b\x95\x4a\xfa\xe2\xe1\x01\x48\x1e\x79\x03\x42\xb0\xc5\xa1\xd0\x17\xe1\x28\x1e\x44\x9c\xba\x5f\x77\xfb\x31\xe1\x9d\xce\xae\x42\x3f\xb0\x8a\xb5\x69\x3c\xd4\xb0\x76\x92\x9d\xf6\x1e\xdb\x6b\x4b\xfc\x91\x4e\xd8\x4e\x92\xed\x5c\xfd\xfa\xf3\x0e\xca\x0d\xdb\x7e\x92\xd0\xf0\x54\x2f\xaf\x22\xce\x08\xf3\xd5\xf3\x35\x50\x61\x71\x63\xca\x3c\x79\x15\xb1\x12\xc6\x82\x6b\x4b\x34\xe0\x5b\xac\xa7\xf1\xad\x1f\x45\xbd\x82\xe5\xad\x49\xa0\xd7\x4d\x06\x99\x8e\xe0\xf2\x64\x24\x93\x97\xa6\xb6\x41\x85\x78\x86\x25\xec\xcb\x1c\xec\x6b\xe3\x8a\x88\x98\x6d\xba\xfc\xb8\xa5\xf7\x55\x6d\xed\xb5\x21\x5c\x04\x2e\xab\x21\xc4\xe2\xa6\xfb\x14\x2c\xa5\xb0\xd1\xca\x20\x5b\x0e\xdd\x12\xd8\xbc\xad\x12\x00\x12\x09\x80\x64\xcb\xce\x92\x72\x67\x84\x79\x57\x40\xa2\xc0\x57\xd0\xfc\xd4\xa3\x60\x06\x2e\xcd\xd3\xf2\x48\x16\x46\x0a\x4c\x6e\xab\x96\xec\x7a\x53\xde\xc0\xd2\x0e\xbb\xf6\x33\x08\x7a\xeb\xbe\x6d\x1b\xc6\xd3\x1b\x25\x2f\x27\x95\xdc\x2d\xfc\x3b\x03\xee\x7d\x4b\x80\x86\xd2\x61\x0b\xe7\xfd\x68\x3e\x9f\x2a\x03\x48\xd6\x64\xc1\xa5\x4f\x4d\x25\x07\xc3\x61\x30\x07\xc3\xa1\x9b\x83\xe1\x10\x23\x1d\x4b\xfa\xdf\xed\xe2\xf2\x4a\x9e\x2b\xc2\xe3\x81\xff\x1e\x0f\x35\x5f\x47\x4a\x12\x53\x49\xf5\xc1\x4d\xde\xab\x8c\x0a\x16\x25\x92\x8a\x95\x9c\xa9\xfa\x49\x38\x78\x3f\x87\x72\x84\x64\xeb\x38\x2a\xd8\xc3\x43\x54\x30\x9b\xb0\x70\xce\xbe\x29\x58\x84\x43\x3c\x9a\xcb\x45\x10\xc7\xee\x4b\x79\x89\xd5\xe7\xaf\x6f\x5a\xd4\xc6\x95\x08\x42\x2b\xc3\x13\x16\xae\xa6\x62\xcc\x7a\xdf\x23\xb5\xe6\x78\xa2\x03\x99\x29\x8c\xe7\x9c\x9f\xf7\x93\x70\xf7\xc8\xba\xeb\xe4\xe6\x5f\x99\x2b\x8a\x6c\xcc\xe4\xaf\x31\xc3\x65\x1a\xe3\xac\xa7\x8c\x8e\x19\xae\xd7\x98\xc9\x05\x6b\x79\x09\x5a\xa6\xaa\xf6\x8c\xd1\x22\xb8\x90\xad\xf0\xf2\xce\x54\xb5\x09\xa3\xc3\xf6\x6f\xc9\x5d\x52\x8c\x79\xba\x14\x03\x49\xd2\xdc\xe8\xdf\x23\xb2\x94\x9f\xcf\xda\xa4\xfd\xd3\xdb\x97\x7f\x6f\x93\xf6\xeb\x8b\xcb\xbf\xb4\x49\xfb\xe2\xcd\xcf\xf2\xef\xab\x77\x67\x6f\xce\xe5\xc7\xb3\x2b\xf9\xdf\xab\xb7\xef\xde\xb4\x47\x64\x21\xeb\x9c\xbf\xf9\xe9\xfc\x65\x7b\x44\xee\xe4\xc3\x8c\xb3\xa9\xa4\xa3\xf8\x58\x52\x87\xc9\xf8\xe3\x2d\xcf\x57\xc0\xc0\x24\x30\x98\xf6\x88\xdc\xcb\x72\xb2\xc0\xc8\x4a\x80\x6e\x99\x7b\x2e\x41\xf7\xcf\x8c\xa2\x47\x38\xac\xd7\x8d\x57\x50\xdf\x21\xec\xe1\xe1\x96\x45\x4b\x79\x9f\xc6\x9d\xce\x2d\x8b\xee\xe0\xec\x9a\x5a\x1f\xbc\x5a\x3b\x36\xb2\x6c\x74\xcb\xa2\x85\xac\x06\xb5\xee\x65\x21\xa7\xda\x27\xbf\x1a\xf6\xfd\xf0\x80\xcd\x39\x31\x75\x59\xd9\xa0\x53\x3b\x1a\xaa\x01\x1a\x6e\x06\x68\x96\xcf\x91\x15\x7c\x64\x26\x3e\x64\x2b\x85\x4b\x33\xc8\xae\x0f\x4c\x9a\xd5\x9c\x7e\x42\x43\x91\x1b\x16\xa5\x92\x0b\xf9\xe2\x71\x21\xe3\x7c\xfe\x2a\xe7\xef\xdf\xbd\x46\xa7\x9c\x5b\x16\x4d\x18\x49\x74\x7f\xed\x55\x56\x24\x53\x36\x68\xef\x69\x6d\xad\x84\x8d\x6c\xe7\xd4\xf9\x34\xc8\x9d\x90\xbf\xcc\xa3\xb9\x80\x25\x4e\x5a\x78\xf7\xee\xb0\x38\x93\xa7\x9b\xb6\x97\x3c\x5f\xb6\xdd\xa0\x15\xa2\x2b\xf2\xd7\xf9\x27\x3d\x83\x56\x01\xc5\x25\xb5\xa6\xca\x92\x8c\x16\x8a\x12\x4b\x84\xe0\xf2\x51\x68\x5a\x48\x15\xc0\x54\x17\xed\x42\xdc\xcf\x19\xb0\x84\x7e\x8b\x0f\x0f\xe0\x6a\x8f\xf0\x22\x39\xcd\x48\x94\xd0\x2b\x36\x4c\x7d\xd8\x8d\xe2\x4e\x27\x19\xe6\x7e\xe5\x91\xdc\x27\xa6\xf3\x98\x7c\x31\xf9\xa7\x26\x83\x8c\x48\xa4\x33\xe0\x6b\xb8\x8d\xaf\x18\xfd\x72\x71\xf9\xcb\xfb\xeb\x81\xe4\xa1\x16\x83\xdd\x1e\x49\x56\x12\xce\x9c\x4b\x4e\x6a\xb7\x47\x24\x4f\x32\xd8\xed\xad\xc9\xd5\xf9\xeb\xf3\x17\xb6\xdc\x9a\xbc\xfd\xe5\xfa\xe2\xed\xa5\xf3\xe2\xfa\xfc\xbf\xaf\xcf\xde\x9d\x9f\x39\xaf\x5e\x9f\xfd\x74\xfe\xda\x79\x7e\x75\x71\xfe\xfa\xe5\xd5\xb9\xdb\xcc\xeb\xf3\x9f\xcf\x2f\x5f\xba\xed\x82\x78\xc7\x79\xf1\xd3\xfb\xeb\x6b\xb7\xa3\xb5\x3d\x59\x6f\x59\x59\x7e\xa2\x21\x96\xd2\x2f\x28\x8f\x1f\x30\xb0\x3b\xf6\xcc\x8f\xf9\x5a\xf9\x74\x55\x28\x6b\x93\x6a\x11\xc8\x3f\x92\x22\xb7\x43\x71\xa3\x80\x81\x10\x98\xc0\x16\x34\xb7\x69\xbd\x34\xdd\xa2\x00\x0e\x7a\x5e\x68\x40\x92\x2f\x83\x00\x51\x8a\x47\x2f\x76\xa8\x9d\x37\x0a\xa7\xcb\x61\x85\x2e\xf3\xa8\x0d\xcb\xd4\x56\xe8\xa0\xad\x41\x0d\xcf\x71\xa7\xd3\x06\x0d\x06\x58\x17\xaf\x2b\x4d\xff\xd2\xdc\x74\x5b\x2d\x24\x5a\x5f\xb7\x25\x45\x38\x16\xc0\x85\x85\x1a\xfb\x0d\x1b\x73\x5e\xbd\xc0\xeb\x08\x27\x6c\x4f\xd7\x19\x2b\xf9\x76\xe3\xbc\xc1\x8d\xf7\x1d\x93\xac\x3f\x38\x51\xca\x5f\xb0\x1d\x3f\x06\xb2\x4a\x5b\x2f\x7a\xb6\x6e\x05\x32\x68\x7d\x54\xf8\xff\xba\xf6\x42\xff\x37\x92\x61\x5e\x36\x7a\x6f\x23\xbe\x94\x57\xad\x46\x91\xbb\x12\x47\x22\xea\x2c\x39\xe0\x83\x00\x5d\xee\xd7\x04\x7f\xc0\x6e\x6c\xb1\xee\x87\x0f\xde\x7d\x9f\x93\x8c\x24\xf1\x3a\x18\x63\xda\x0a\xc7\x5f\x42\xea\xd6\xac\xdc\x49\x4a\x33\xad\x9c\x02\xcb\x28\xd9\x4f\x4b\x27\xdc\x39\x4d\x2b\x44\x42\x1e\x0f\xd2\x6e\xa9\x7b\x24\xce\x3e\xc2\xad\x5d\x93\xb3\xec\x5a\x2d\xc5\x8b\x7a\xda\xaa\x39\x8e\x02\xe1\x4e\xac\x71\x7d\xb4\xe4\x69\xa6\xe2\x1b\x03\x99\x85\x16\x48\xad\x88\xd0\x81\xb5\x95\x02\x56\x10\x04\xb9\xce\xd0\xa7\xa3\x6e\xbb\xc3\x80\xfb\xb3\x79\x05\x7c\xc8\x6b\xa8\xb7\x6c\x4f\x78\x33\xf3\x61\xa0\xfd\x11\x75\x46\xc4\x08\xc6\xaf\x47\x8f\x88\xf2\x22\xc5\xcd\xf4\x9f\x17\x65\xc0\x6e\x05\x27\x8e\x0f\xa8\x79\xec\x96\xe3\xa7\xa2\xdc\x9a\xe4\xe2\x49\x60\x9c\xf1\xa0\x52\x34\x04\x2e\xb3\x63\xc8\x9b\xff\xe7\x87\xd3\x23\x5f\x2a\x67\xf0\x5c\x22\xeb\xd4\x00\x06\x8f\x24\xd8\x26\x5a\xe9\x67\xe1\x27\x94\x22\x39\xd8\xac\x55\x77\x43\x39\x69\x9b\x7b\x0e\xcf\x59\xc4\x89\x3d\x8c\xea\x28\x12\xe1\x77\xa4\x1a\x74\xfa\x4a\xf5\xe9\x7b\xc1\x62\xf2\xee\xff\x83\xe5\x0f\x81\xe5\x35\x8b\xc9\x2f\xff\xcf\x61\x89\x6c\x9a\x8f\x7a\xf0\x36\x27\x9f\xa2\x3a\x84\x13\x0e\xe7\xe2\x9c\x6c\x8c\x3a\x42\x32\xfa\x09\xe2\x60\xea\xec\xee\x88\x5c\x32\xbb\x9f\x7e\xfb\xdf\x01\x03\x83\x95\x77\xfb\x2a\xa5\x7b\x05\x28\x86\x30\x01\x1b\xf4\xaf\x87\x4a\x4b\x74\x75\x13\x14\x12\x93\x29\x00\x58\x62\x12\x6e\x4f\xd7\x49\x88\x3d\x3c\x98\x1c\x22\x36\x27\xa0\x4d\xa3\x05\x52\x69\x4c\x0a\xd8\x6e\x0f\x42\x69\x41\x54\x19\x9b\xa8\x44\x0e\xf0\xb2\x56\x6e\xed\x45\xaf\x29\xe6\xb9\x28\xb4\xe8\x7a\x6c\x0d\xb3\xb4\xf9\x07\xd3\x66\x59\x3a\x04\xcb\xd2\x18\x31\xd1\x6c\xcd\xba\x3c\xcf\xfd\xac\x7c\xd6\x02\xe1\x1b\xd3\xe1\xf6\xfc\xcc\x3e\x7b\xfd\x98\x28\x9b\x4d\xca\xc1\x5a\x33\x1b\xa6\x23\x3a\x75\x49\x43\x89\x0b\x40\x22\x62\xfe\xc4\x10\x5d\x32\xfa\x52\xb0\xf9\x74\x20\xd6\x2a\x07\xb1\xbc\x31\x42\x91\x55\x02\x89\x7b\x7b\xc1\x91\xf6\xdc\x91\xf6\xe4\x48\xb9\x33\x52\x21\x47\x9a\xd1\xde\x49\xf6\x8c\x8a\x93\x6c\x6f\x2f\xe6\xc3\xac\x32\x52\x5e\x1e\xe9\xba\xd5\xa0\x1a\x90\xb3\x08\x6c\x3d\x89\xda\xe6\x53\x4f\x42\x0e\xeb\x38\xec\x8d\x70\xdd\x30\x2c\xce\x15\x9b\x4f\xeb\xac\x48\x6e\x99\x88\x7a\xb1\x2e\x08\xe6\x6f\xb5\xe2\x4a\x65\x20\x89\x65\xc1\xb4\xbd\xee\x40\xa8\x92\x66\x68\x94\xd2\xa9\xda\x9d\x02\x6b\x1b\x3b\xbf\xba\x71\x99\x1d\x87\x15\xac\xd5\x5c\x83\x99\x0d\x96\x90\x55\x6e\xd2\xac\x9c\xe4\x55\xeb\x65\x50\x1c\x29\x8c\x75\x61\x95\x11\x90\xa5\x7a\x84\xd9\x52\x65\xc0\xd4\xb6\x57\x06\x4b\x6d\xc1\x00\x04\x98\x93\xe5\x16\x53\xfa\xea\xd2\xa1\xe9\x33\x6b\xb8\xa4\xbf\x99\xf2\x8e\x71\x65\xb5\x82\x7b\xc0\x35\x7c\x83\x15\x7c\x00\x3b\xd5\x40\xc4\x3d\x4b\xe7\x93\x40\x59\xb5\xc3\xed\x76\xd4\x19\x79\x2b\xc8\xa5\x84\x5a\xca\x88\x25\xae\x04\x75\x62\xc0\xd0\xb2\xe7\xd4\x69\x1c\x75\xf6\x56\xcb\xf4\x2e\xc9\x6e\x19\xaa\x9a\x7e\x7a\xff\xf3\x60\x67\xac\xf4\x4d\xb7\x4c\xec\xfc\x41\xe9\x9a\xa6\x3c\x5f\xec\x80\x3d\xeb\xc9\x8e\xaa\x4f\x31\x10\xac\xd7\x66\xe0\x64\xb1\x91\x1c\x54\xf5\x46\xf9\xbf\x3a\x2c\x6f\x3c\xd4\xda\xbd\xa9\xc5\xbb\x54\x8c\xd1\x45\x1d\xe2\x37\x96\xf2\x2a\xba\xe0\x44\x87\xc5\x54\x6e\x02\xd6\x2b\xbb\x52\xc0\xf1\xd2\x2e\x95\xf0\x23\x14\xd6\xb7\xe4\x97\xb3\x05\x94\xba\xc0\x26\x94\xaa\x7c\xa9\x34\xa9\xae\xe3\x50\x0d\xfc\x52\xa9\x31\x31\x31\x01\x36\xb9\x99\x1b\x77\x9c\xd0\x29\xae\x0c\x15\x63\x9c\xc4\xc1\xf1\x9a\xe4\xfa\xc4\x71\xaf\x08\x35\x5b\x99\x8f\xdf\x6c\x69\x52\x6e\xb3\x35\xd1\x4d\x83\x18\xa8\x6e\x45\xfd\xce\xea\x76\x46\xa8\x57\x7f\x45\x1b\x3b\x2d\x2d\x7e\x4d\x9f\xe1\xad\x54\x82\x23\x46\x72\xa8\x22\x36\x67\x91\x75\xfb\x80\xa9\xc0\x3b\x2a\x1c\x4e\x2d\xbc\xaa\x3a\xc4\x5a\x69\x3d\x31\xda\x1a\x0b\x44\x5b\x83\x0c\xd9\x10\x70\xcd\xba\x73\x65\xf1\xda\xfa\x9b\x84\xd7\x99\xe4\x34\xb4\xc2\x24\xa1\xbd\x93\xe4\x59\xaa\x3b\x4a\x74\x47\x05\x4d\x87\xc9\xa8\x95\x0f\x93\x91\xe3\x95\x53\xd8\x8e\xd0\x8b\xde\x81\x04\xc1\x34\x10\xba\xad\xf9\xde\x5e\xbc\x1a\xce\x47\xaa\x4c\x7e\xef\x78\xc5\x8c\x69\xe3\x0e\x20\xd3\x9a\xef\x7a\x51\xc9\x8c\xf6\x4e\x66\xd6\xdc\x7e\xa6\x87\x3d\xa1\xd3\xe1\x6c\xd4\x1a\x0f\x67\xa3\x6e\xaa\x2a\x45\x13\x3b\xe8\x25\xdd\x66\x17\x90\x45\x63\xb1\x82\xdc\xd1\xde\xc9\xdd\x33\x1d\x5c\xe6\xe4\x4e\xf7\x7e\x4f\x17\xc3\xbb\x51\x6b\x39\xbc\x1b\x69\x27\xb0\xfb\x78\xad\x03\xfa\x35\x58\x76\x68\x2c\xa1\x02\x71\x3b\x51\x76\x39\x65\x95\xd0\xbb\x0a\x2f\x7f\x10\x3c\xc9\x8a\x04\xd5\x81\x26\x8c\x63\xb9\x05\x4d\x58\x97\x1b\x41\x1b\x6b\x1e\x42\x4d\xbc\x26\x6b\x42\x5d\x7a\xb4\x05\xa6\x47\xbb\x65\xe2\xac\xdc\x7d\xcd\x15\x5f\x1e\x26\x56\x7f\xf9\xf6\x4d\x5d\x8d\xf2\x04\x64\x0d\x50\xd5\x57\x8c\x57\x7c\xc8\xb0\x4f\x3b\x17\x92\x2f\x6a\x46\xb7\x4e\x15\xe7\x5c\x29\x32\x8a\x37\xa3\xd4\x52\x55\x3c\x29\xba\xea\x57\xa0\x4d\xb7\xa1\xba\x58\xd2\xe5\x66\x37\xe3\xc5\x50\xab\xa5\x48\xbf\xce\x34\x6b\x31\x5e\x69\x96\x58\x0e\x17\xbe\x8a\xf7\x1c\x9c\xe7\xd4\xac\xdb\xb9\xda\xaf\x14\xb2\x04\x58\x26\xf7\x55\x5e\xd5\xe4\xe2\x96\x40\x1d\xc9\x77\x28\xf1\xe3\xc6\x94\xa0\xce\x10\x2b\x79\x41\xdd\x5d\xe9\xce\xc5\x26\xf8\x64\xdd\xf3\xec\x2e\xe5\x79\x06\xba\xf4\xd7\x8a\x50\x7a\xd5\xa4\x9d\x4f\xa7\xd1\xae\x91\xb7\x7e\x4a\xb3\x49\xfe\xc9\x28\xe3\x5b\x82\x7e\x29\x9f\x17\xd0\x31\xcc\x54\x10\xc5\xd2\xc1\x50\x39\xfa\x41\xfd\x60\x7d\x73\xbe\x29\xf7\xfb\x6b\xa5\xcd\x56\x8e\xd1\xee\x8c\x5e\xa9\x19\xfd\xbe\x91\xe7\x57\x37\x52\x65\x95\x8e\x82\xab\x74\xe4\xae\xd2\xd1\x68\xb0\xdf\x27\x79\xb5\xee\x71\xb0\xee\xb1\x5b\xf7\x58\xd6\x45\xea\x55\x24\xe3\x8f\x5a\xde\x30\x63\xc9\x52\xe3\xc3\x25\xcf\x6f\x79\xb2\xd0\x62\x06\xf6\x59\x30\x9e\x99\x78\xb9\xcb\x31\x4d\x31\xc2\x6e\x42\x73\x24\xb9\x56\x9c\x43\x80\x90\xab\xf4\x77\x46\x7b\x8d\xde\x1a\xda\xd3\xaa\x82\x9b\x9c\xa0\x1b\xd8\xbc\x26\x4c\x4a\x1f\xd4\xf3\x74\xe9\x7d\x9e\xea\xfb\x0b\x9e\x8a\xe5\x7e\x5f\x52\x1d\xcb\x7c\xd9\xd4\x59\xe1\x55\x9a\x2e\xf7\xfb\x66\x66\xce\x7b\xc5\x9e\xd7\x77\x26\xbf\xf7\x81\xc8\x81\xb8\x54\x8b\x64\x3e\xdf\x7a\x86\x38\xc8\x86\x4a\xfe\x58\xa0\x6c\x1a\x29\xbe\x2c\x17\x79\x1d\xf3\xbf\x1c\xef\xb1\xfd\xea\xda\xb4\xf4\x12\x82\x0c\x40\xee\xfc\x2a\x3a\xd3\x1d\x2e\xc7\x66\xc1\xcd\x16\x91\x73\x4d\x26\x13\x8e\x44\x9d\x5a\xd5\xeb\x6f\x1b\x85\xec\xc7\x36\x52\x99\xb7\xee\x96\x27\xb2\x10\x58\xa3\x88\x44\x54\x6c\x32\x1d\x6c\x2a\x07\x4c\xdd\x1d\xdc\x4a\xa7\xd1\x3e\x08\xf6\x62\xc7\x56\xa2\xe5\x68\x6e\xb0\x60\x37\x87\xd0\x36\x11\x8b\x41\x36\x45\x9c\x10\xc8\x76\x5b\x73\x8f\x17\x5d\x8e\xf7\xe4\x89\xb0\x35\xe5\x28\xb5\x1f\xf8\xdb\x55\xd9\xd2\xc6\x91\x2a\xac\x20\xe2\x6d\x66\x2e\x17\xe1\xbf\xad\xc8\x8a\xd3\xe2\x4d\x32\x9e\xa5\x19\x3b\xf5\x9a\xc0\x97\x11\x8b\x07\xde\xfb\xab\xfb\x02\x30\x5a\xb9\x71\x2c\xef\x2d\x15\xa6\x42\x64\xa0\xe2\xc6\x6c\x88\xc7\x8f\x07\xde\x3c\xad\x67\xa4\xca\x49\x78\xfc\xc4\xff\x8e\x27\xcc\x7c\x7e\x5a\xa9\x6e\x37\xb7\x2e\xf4\xa8\x57\x6e\xa3\x5a\xe6\xd8\x2f\xa3\xe6\xd4\xcd\x97\x7d\xfc\x7e\xf4\xb4\xfa\x3d\x70\x50\x74\x6b\x07\x5e\x69\xf0\xee\x73\x5b\x3b\x38\xf2\xbe\xe3\x05\xa0\x3f\x1e\x07\x3e\x5e\xeb\x06\xd6\x2e\x94\x11\xfa\xa5\x45\x4c\xcc\xf7\x48\x10\x46\x10\xde\x48\xfc\xfe\x69\x93\x59\x33\xb8\xc0\x05\x9d\x49\xb7\xf4\x63\x83\x6e\x7e\xfa\xf6\x6e\xb6\xf7\x82\x23\xef\x9b\xee\x3d\x2d\xe9\x76\x33\x68\x38\xf4\x79\x6e\x49\x63\xfb\x72\x0c\x4e\x94\x57\x70\x57\x41\x9a\xaf\x2e\xfc\xf6\xa3\xd6\xd5\x7c\x06\x1b\xff\x9a\x6f\x4b\x27\x15\x8a\x1c\x19\xde\x75\xd9\x9d\xbe\x11\x27\xf9\x42\xc5\x1d\x28\xd3\xed\x7e\x46\x68\x87\x9e\x67\x48\xa6\x43\x82\xfb\x69\xce\x2f\x54\x5a\x25\x15\x72\x24\xa8\x3d\x96\xa3\x92\x6d\xc9\x77\x46\x99\x23\x3c\xd3\x3b\xcb\x78\x54\x82\x1e\x12\xbe\x06\x9b\xdb\x62\xb5\xa8\xb3\xe4\xf4\x3a\xa8\xb8\xfd\x59\xab\x8e\x40\xe3\xea\x1d\x3c\x5d\xf3\x64\xfc\x91\x49\x62\x8c\x64\xeb\x96\xb6\xbc\x09\xe5\x11\xab\x44\x11\xab\x95\x63\xbb\x7b\x60\x4d\x32\xb5\x56\x75\x1b\xcc\x2e\xa4\xc6\xc9\xb2\xca\x32\x5f\xd6\x19\xe9\x3b\xbb\x06\x3d\xa1\x2b\xaf\xdd\x86\xfc\xc9\xd7\x0a\xb7\xcb\xf0\x80\x38\x9a\x28\x66\xc5\xd5\x53\xfa\x3b\x59\x12\x18\x89\xe4\xe6\x5b\xda\xfc\xb5\xae\x4d\x28\xf9\x3a\x2d\xea\xad\x99\x83\xed\xfd\xdd\x6f\x8f\xb0\x52\x8b\x58\x36\x70\x8b\x6f\xad\x38\xea\x74\xdc\x27\x1d\x66\xa3\xba\x6e\x2d\xdf\x68\x91\x43\x8c\xbc\x52\x60\x50\x16\x13\xf1\xf0\x00\x3c\x97\x3a\x7b\xca\x89\x38\x62\x31\x2e\xe3\x87\x0f\xf9\x92\x65\x7a\xa3\x96\x7b\xd2\x42\x2d\x86\x7b\xa4\x11\xfe\x37\xaa\x91\x2e\xf8\x81\xa6\xbf\x33\x37\xf7\xd9\x87\x0f\x90\xf6\xa8\xb6\x1f\xb9\xaf\x64\x1f\xce\x70\xdc\x6e\xd4\x27\xdb\x44\xf9\x9b\x93\x99\xab\x8e\x7e\x52\x2d\x5b\xc7\x89\x56\xdd\x09\x92\xa4\xbb\x1d\x4a\xa8\x55\xdf\x46\x7c\x51\xf6\xc9\x20\xde\x86\x93\x4d\xb9\xc9\xa2\xea\xc6\xe7\xe8\x9f\xcb\x23\x42\x7e\xf6\x83\x97\x73\x4a\x62\x26\xf2\xd5\x57\x80\x5c\x50\x23\x60\x32\xe2\x4a\x17\x81\x73\x0c\xca\xae\x66\x97\x4a\x64\x9d\x39\x79\xae\x00\x30\x35\xf3\x31\xa4\x99\x04\x4a\xc5\x0c\x5a\x5d\x6f\x9e\x25\x74\xe6\x25\xc3\xaa\xdb\x57\x9f\xd2\xf9\xfc\x85\x97\x34\x8b\x68\x52\xa7\xfa\xc6\x4e\xce\x9c\x4b\x2f\x73\x58\xf0\xee\xa8\x1c\xcd\x83\xe0\xd1\x3c\x70\xb9\xbf\x03\x34\xd2\xc7\xb5\xa9\xa6\x37\x53\x97\x87\x02\x58\xf3\x30\x6c\xd0\x02\x67\x1d\x98\x4e\xe7\xa5\x6e\x9e\x7f\xc9\xb3\xdc\xaa\xc1\x4b\x5a\xab\x5f\x4e\x93\x56\x65\x04\x4c\x08\xaf\x2a\x08\x35\xb8\x1a\xd6\xd5\xbb\x0a\x74\x10\x8b\x3f\x44\xc6\xb8\xcb\xdb\x5d\x55\x6e\xc8\x23\x31\xac\x40\x3b\xf3\xd6\xad\x6e\x17\x94\x2a\x6b\x84\x21\x11\xdb\x64\xe2\xa0\xbc\x6a\xb7\x1a\x2f\x55\x50\xa3\xae\xef\x20\xc6\xda\x73\xae\x1b\xa9\x22\x52\x85\x1c\xcd\xfb\x46\x27\x9b\x4a\x2b\xe8\x62\x63\xda\x78\xbb\x05\xca\xd1\x8d\xf8\xf8\x4c\x35\x51\x3e\x2b\x95\x1d\xa0\x2b\xfb\x59\xe8\x64\x55\x9b\xf4\xb1\x1e\xd9\x79\xc3\xc6\x9d\xef\x26\x8b\x8c\x71\xbf\xd7\xb4\xe5\xa0\xbb\x49\xbe\xd0\xa8\xce\x58\x21\xd1\x32\x8a\x00\x3f\xac\x8a\x3f\x92\x6b\x48\xe0\xe0\x18\x4e\x52\x49\x7b\xa6\xee\x08\x36\x78\x3c\x2d\x02\xde\xbc\xe6\x62\xaf\x22\x2c\x05\x62\xdd\xf6\x2b\x9e\xdc\xd6\x20\x74\xcf\x2d\x2b\x9d\x46\x1e\x91\xfa\x57\xbf\x1f\x41\x1c\xff\xb5\xb2\x7f\xe0\xd7\x0e\x90\xbb\x7e\xeb\xff\x5d\xea\xc8\x5d\x2e\xc7\x83\xcf\x5b\x32\xf0\x3d\xdf\x0c\x30\xeb\x37\x18\xe8\xc3\x5d\x40\xe6\x6c\x2d\xb4\x79\xad\x74\xe1\xec\x0a\x88\x7e\xcc\x26\x2f\xf2\x4c\xe0\x2d\xed\xef\x3b\x3c\x74\xa2\xda\x6a\xd3\x5e\x5b\x65\xd5\x76\x1b\xb6\x75\xac\xee\x7f\xaf\xf9\x86\xc5\xf6\xe0\xaa\xcb\x7d\xcd\xd0\x2b\x9b\x34\xd0\xae\xc6\x13\x6a\x0b\x95\x57\xb6\xa6\x2f\x75\xfb\xf8\x73\xaf\x5d\x5c\x77\x07\x20\x6e\x2c\xc3\x6d\x63\x5d\x44\x02\x76\x86\x1b\x1d\x06\xeb\x11\x8a\x75\x1e\xf4\x36\x68\xa8\xc5\xef\x40\x2b\xb6\x97\xad\xb0\x4a\xa3\x9b\x99\x39\x23\xbe\xb7\x59\x99\x44\x23\x2e\x61\xe0\x58\xe9\x05\x2f\x5c\xa7\x1e\x1a\x47\x64\x81\x8c\x83\xe1\xa1\x94\xcc\xe0\x6d\xb7\x81\x68\xe2\xa5\x16\x4a\x36\xaa\xde\xf0\x51\xc3\xcb\xb2\x3b\x4f\x85\x02\xc1\x31\xdc\x40\x06\x90\xb6\x42\x1b\xa9\xea\x2a\x31\xc9\x1b\x15\x22\x26\xbb\x5f\x83\x32\x24\xc0\x79\xea\xc5\x5e\xaf\x89\x6a\xc7\x59\xed\xaf\x6e\xcb\xa9\xeb\xea\x5a\x2e\xd9\x27\xbc\x2f\x7f\x5a\xa5\xf3\x09\xe3\xf4\xbd\xd2\x4f\xfc\x6d\x93\x34\x48\x09\x0b\xfc\x38\x54\x7e\x46\x3c\xe7\x71\x62\x49\x94\xc2\x4b\x33\x0d\xf1\x0d\x9a\x15\x02\x93\xb2\x5a\xcd\x93\xe9\xba\x2d\x83\x0b\x4f\xa7\xa3\x35\xff\xb1\xb5\x1a\xec\x9d\x08\x6b\x10\x20\xf6\xf6\x62\x36\x14\x8e\x6e\x7d\x5d\x16\x7e\x34\x98\xaf\x81\x48\x60\xdb\xb0\x58\x6e\xd4\xa4\x6d\x43\x64\x39\x91\x95\xd6\x20\x3f\x0e\x13\x4f\x01\x54\xa3\x39\x1f\x04\xeb\xde\x1e\xc8\xf0\x9b\x08\x27\x2c\xb9\xbf\x8f\x46\x1b\x35\xd4\x5e\x8f\x52\xea\x96\xd7\xae\x12\x30\x3b\x9d\xf9\x11\xb7\x00\xfb\xb4\xf3\x27\x66\x59\x71\xb5\x11\xd8\xa7\x9d\x9f\x98\xc2\x7a\xa2\x91\x3a\xfd\x8a\x9e\x98\xdb\x83\x12\xaf\xfb\xc4\x70\x8d\xe9\x89\xde\x86\x95\x37\x0f\x0f\x9e\x1d\x12\xbe\x75\x6d\x54\xb4\x10\xc0\x6b\x59\x3b\xf6\x9b\x91\xc9\x1d\x58\x21\x48\x50\xfc\xf9\xaf\xef\x35\xae\xfe\x8a\xe8\x33\x81\x83\xc3\xaa\x9f\x9d\x68\xb9\xe4\xcf\xea\x7f\xb0\x84\xfe\x1b\x8b\xc9\xaf\xff\x17\x47\xcb\x59\x11\x0a\xc8\x1a\x3e\xe5\x90\x5f\xba\x74\xca\x03\x49\x16\x99\xab\x6e\x17\x43\x3e\xd2\xcc\x27\x4e\xb4\x55\x39\xb0\xdf\x8e\xc2\x48\x66\xc0\xf6\xf7\x06\x19\x77\x10\x7b\x42\x78\x5f\x10\xdb\x09\xd2\xfc\xf9\x2b\x11\xa5\x5f\x5d\x47\x73\x01\x64\x11\xa0\x5e\x98\x83\x11\xff\x2d\x38\xd1\x8e\x64\xc6\x92\x09\x48\xd5\xbe\x0a\x3d\xda\xfa\x22\x49\xe7\x51\xbc\x25\xaa\x6c\x42\x83\xcd\x88\x6f\x13\xba\xda\x80\x74\x6a\x71\x06\x9a\x83\xca\xc5\xfc\x99\xd1\x83\x47\x4f\x8e\x0e\x8f\x8f\x8e\x8f\xc9\x5f\xea\x0d\x42\xd5\x9d\xf7\x8d\xe6\xef\x12\x01\xe7\x5a\xbb\xf1\xad\xd6\xfe\xc3\x91\xa2\xc8\xbd\x2c\xba\xbf\x15\xb8\x29\x6b\x24\xfe\x60\x57\x6c\x27\xe5\xda\xa1\x28\x1b\xe4\x76\xb6\x5a\xdc\x30\x6e\x5d\x24\x44\xa7\x53\x79\xc7\x4f\x6d\xcf\x68\xaa\x0c\x21\x23\x42\x95\x8d\x63\x46\xb5\xd2\x2b\x9e\x2f\x22\x81\xfa\x50\xf5\x7e\x3c\xcf\x33\x63\xf7\xfc\x5b\xe1\x34\xae\xa8\x4a\xf9\x18\x52\xbb\x5a\xac\x33\x1c\x91\x8c\xb2\x93\xec\x19\x7a\x12\x38\xfa\xfb\x5b\x26\xa2\x2c\xb6\x2a\x1a\x10\x0e\xe6\xcb\x20\x55\x8c\xc3\xc9\x97\xf7\x26\x12\xc7\x27\x9e\x56\xcc\xa6\x3c\x9f\x5d\x83\x23\xd1\xb9\xc4\xba\xe0\x6b\x85\xf6\x6e\xaf\x85\x3a\x5c\xa1\xd4\xb7\xed\x9b\x3c\x9f\xb3\x24\x6b\x0f\xe0\xc9\xc6\x58\x1a\x98\x0a\xf0\x01\x01\x3b\x90\x24\xd5\x7f\xf4\x77\x69\xcf\x46\x5c\x53\xd3\x7e\x93\x88\x59\x37\xb9\x29\x2c\x97\xb1\x1b\xf1\xe7\x3f\xb3\xb8\x85\xd9\x00\x74\x83\xfd\xf5\x3a\x12\x71\xec\x4c\x12\xe6\xf5\x2e\xf9\x14\x31\x12\x50\x36\xeb\xc9\xe0\x78\xf5\x40\x10\x86\x6e\x05\x39\xb6\x67\x3d\x0d\x04\x77\x40\xf2\x8a\x90\x63\xa9\xc4\x35\xca\x72\xb1\x53\x2c\x52\x1b\xe2\xc7\xa9\xf5\xec\xd9\xe1\xc3\xd1\x1a\xac\xc4\xb7\xaa\xca\x64\x05\x88\x3b\xd7\xf2\x21\xab\xbf\x9f\xf6\xfb\x83\x43\xf5\x4d\x65\xb2\x34\x9f\xfa\x4f\x5b\x61\xf0\xef\x1c\x3c\x36\xf0\xab\x4b\xb2\xa2\xe0\x69\xa3\x0f\x20\x2f\xf8\x9b\x3e\xce\x2d\xfd\xe8\xe5\xca\xaa\x80\xfe\xff\x64\xca\x7d\x58\xbf\xaa\xdf\x94\x4e\x25\xb5\x31\x83\xa1\xd3\x9d\xfc\xd5\xb2\x00\x94\xb7\x37\xec\xb3\xde\x29\x0e\x6b\xf8\x7f\xc4\x68\x10\x32\x32\x40\xfb\x82\x43\xb3\x71\x94\x72\xbd\xdf\xf7\xb7\xe6\x4e\xdf\x28\xf6\x41\x56\xad\x34\xf0\xda\x28\xa1\xb4\xfb\x76\x02\x1d\x3d\xee\xe8\xae\x8c\x05\x01\x7b\xfe\xfc\x10\xad\x06\xf0\xd5\x7e\x24\xdf\xc5\xdb\x2c\x06\x53\x2b\xa2\xbc\x6f\x0b\x56\xa5\xb2\x15\x4c\xe0\x9b\x83\x69\xd0\x7b\xa0\xd7\xc8\x3a\xaa\x42\x8d\xdc\x9e\x6a\x7d\xce\x32\x39\x18\xe4\xec\xc8\x1f\x1a\xcd\xcb\x5c\x73\x23\xc3\xc1\x19\xf3\xae\x62\x49\xf9\x9a\xa9\x5c\xa0\x35\xae\x23\xb2\x9c\x0a\xf6\xcc\x48\x8f\xec\xf7\x63\x54\x34\x0b\x3f\xe8\x96\xeb\xb8\x85\xa5\x03\xc6\xd9\x42\x6d\x30\x49\x12\x02\x89\x56\xee\x47\x90\x1e\x61\x26\xe7\x4a\xb3\x17\xd6\xb2\x9c\xc5\xcd\x4e\x14\x7b\xd9\x43\x6f\x8d\x25\x7a\x0e\x81\x76\x20\x1b\xe7\x13\x36\xb9\x58\x2c\xd8\x24\x2d\xbb\x10\x96\x5b\x90\x1b\x3b\xd4\xc8\xe5\xca\x35\xeb\x68\xec\x19\x6d\x28\x45\x77\xb2\x5a\x56\xf9\xda\x6f\xbc\xe3\xb1\x71\xc7\x76\x4f\xdf\x26\xa6\x63\x34\xb4\x0f\x5f\x40\x5e\x15\xa1\x0d\xcf\x7e\xd8\xf0\xfa\xda\xf6\xca\xda\xc4\xe9\x51\xf9\x3e\x3c\xcb\x7d\xb9\x25\x8d\xdd\x5b\x5a\x47\x0c\x56\xda\xd9\xdf\x57\x83\x66\xec\xe3\x0f\x1b\x75\xaf\xd5\xdc\x25\x0b\x3a\x40\x7d\xa5\x6e\xdc\x27\xb3\xf0\x34\xd6\x75\xbc\xa7\xba\xac\xba\x37\x7d\x97\xd6\x4f\x77\x5a\xd9\xb4\x7c\x4f\xe0\x1e\x2f\x51\x72\x95\xc0\x62\x68\x31\x09\xf4\x93\xde\x40\xf0\x04\x3e\x97\xdb\x55\xf4\xcd\xde\x30\xa9\x70\xdd\x55\x53\x2c\xf7\xfa\x84\x53\xb1\xcf\x02\xb0\x72\x9a\xe3\xd8\x5c\x18\x39\xab\xe2\x88\x9c\x65\x31\x91\x97\x06\xbc\x61\xb4\x08\x3a\x62\xc6\x14\x3b\xd4\xfd\x5f\x37\x98\x3b\x61\xf8\xa4\x6e\x32\xff\x94\xdc\x17\xef\xd8\x5d\x32\x4f\x27\x09\xf8\xcd\x9b\x55\x4b\x3b\x9d\x54\x2d\xcc\x94\x27\x0b\x56\x63\xaf\xe4\x58\x26\x99\x5c\x16\x54\x38\x59\x2e\xb4\x24\xd7\x31\x43\x42\xb7\x87\x52\xdf\x34\x6f\x22\xe8\xd9\x67\x36\xae\x06\x16\x73\x4c\x26\xed\x20\xc1\x65\x05\x55\x20\x0a\xa9\x9c\xec\x72\x9b\xb9\xe0\xc4\xf3\xe4\x87\x6a\xbe\x19\x67\x14\xb7\x74\xb4\x94\xd3\xcc\xb1\x90\x93\xac\xfb\xa0\xd4\x17\x2a\x4f\x81\x3a\x29\x9b\xbd\x3a\xed\x2b\xbb\x3e\x54\x21\x04\xd1\xa0\xdb\xa4\xd6\x06\x0b\x61\xd5\xc1\x40\x08\x54\x76\x91\x6a\x5d\x65\xe5\x38\xff\x3c\x66\x4b\xf5\x91\x84\x47\xd9\x74\xe3\x43\xe1\xc6\x0b\xdf\x69\x4e\xdb\x28\x39\x12\x5d\x30\x2b\x4a\xb3\xdb\x5f\xdf\xd0\xbf\x2a\x51\xee\x7f\x37\x85\x5f\x51\x31\xae\x30\xac\x96\x0e\xc2\x92\x04\x93\x28\x15\x22\xe1\x82\x0a\x9d\x79\x98\x72\x92\x74\xf9\x2a\x13\xe9\x82\xd1\x8c\x24\x98\x3f\x09\x74\xb1\x6d\x92\xc0\x52\x2a\x41\x89\x8a\x04\xa9\x7f\x83\x4b\x2a\x67\x19\xcd\x49\x62\xd3\x2f\x25\xdf\x14\x36\x60\x2b\x01\x85\xea\xa3\x6c\xdd\x06\x26\x2c\x5b\x09\x2c\x0a\x5f\x4c\x91\x6d\x27\xa6\x28\x3c\xe1\x44\x16\x4e\x01\xc5\xe0\x64\xa8\x43\x8b\x60\xd1\xc4\x41\xd6\x2c\xcf\x29\x5c\xe9\x75\x16\x74\x3f\xd1\xe6\xda\x6a\x89\x74\x8e\x28\x23\x0e\xb3\x4d\x99\x4c\x5b\xff\xa8\xd9\x29\xa9\x4a\xb5\x05\x09\xce\x94\x87\x9b\xde\x29\x05\x2d\x07\x7d\x56\xa5\x4c\x56\x32\xd8\x13\x82\xdf\xb7\x89\x4a\x84\x52\x74\x3f\xa8\x64\x5a\xc6\xfc\xed\x3a\xb9\x35\x51\x98\xbd\x14\x5b\x31\x09\xc7\x92\x48\xf5\xa6\xc8\x69\x5a\xdd\x14\xb9\x9c\x24\x5a\x56\xa6\xbf\xab\x58\xa3\x72\xb7\x95\xc1\x22\x87\x81\xb4\x33\xba\x9b\x41\x92\xd9\x71\xbe\xb8\x49\x33\x76\x25\xf1\x7b\xec\xaf\x8c\x3c\xff\xf9\xf6\xeb\x88\xa2\xd4\xbc\x8c\x15\xc2\x8a\x0c\x87\x3a\x12\xcc\x4f\xfb\x45\xb4\xc2\x4a\xb7\x9c\x9b\xa2\x5c\x10\x6d\x8c\xcf\xd9\x1d\x29\xac\x56\x90\xa0\x8f\x21\xae\x7e\x2b\x35\x29\xe2\x21\xda\x25\x7d\xaf\x0d\x43\xa3\x15\xa4\x13\xcf\x34\xf7\xa2\x9e\xe3\x98\x8c\xe9\x52\xe8\x32\x82\xac\xc8\x3c\x26\x53\xbc\x76\x5e\xa7\xd9\x47\x06\x82\xb8\xd6\x58\x5f\x08\x51\x6e\x99\x79\x1e\x7f\xe1\xc8\x5d\xfc\xc1\xf0\x05\x91\x50\xaf\x62\x82\x10\x4f\xb3\x5b\x95\x31\xd6\xc1\xb6\x53\xf3\x55\xa5\xd6\x63\x8d\xa5\xd3\x78\xad\x6d\x7e\x24\x82\x49\xac\xaa\x9e\x16\x6b\x92\xae\xa3\xff\x66\x31\xf9\xf3\x66\x69\xac\xb2\xd1\xd7\xd7\xe7\x22\xe1\x1f\x21\x57\x9c\x40\x15\xcb\x05\xe8\x4e\xe9\x6e\xdf\xbc\x79\xc9\xe6\x4c\x30\xf3\x66\x91\x2c\x29\x93\x7f\x1d\xc3\xdf\x34\xbb\x95\x67\x03\xd7\xac\x49\x6e\xab\x54\xb3\xbe\xb2\xd2\x49\x3b\xac\x7b\xd0\x2b\xad\x06\xab\xd7\x5a\xf7\x45\x56\x0a\xbf\x62\x86\xfa\x15\x85\x58\xdf\xd9\xad\x15\x8d\xa5\xa7\xd1\x9c\xe6\xc3\x74\x14\x07\xd0\xda\xc0\x99\x39\x26\xb0\x4f\xba\x77\x8b\x57\x39\x57\x93\x97\xe3\x5a\xc5\x98\xd0\x1e\xb2\x55\xc1\xee\x73\x96\x7f\x66\x97\x3f\x8d\xbf\xe4\x43\x36\xa2\x53\x9a\xda\xd4\x3a\x44\xc4\x24\xad\x5f\xca\xf2\xc6\x32\x85\xd5\x3e\x98\x36\x56\x9e\xda\x33\xba\x8e\x49\x29\x5a\xe9\x94\x38\x86\x7f\x7a\x29\x7b\xe8\x58\x92\xb8\x3e\x90\xc8\x1b\xcb\x4f\x8b\xfc\x6e\x83\xfa\x58\xae\x48\x5e\x5a\x83\x84\xa6\x43\x36\x22\x05\x4d\x87\xd9\x48\xc5\x8a\x69\xfd\x23\x4a\x48\x65\x2d\xb2\xd3\x5a\xe8\xc7\x24\xc7\x58\x5a\x51\x22\x7f\x97\x02\x30\x17\x8a\x6f\x54\xfb\xaf\x86\x30\x96\x43\xe3\x54\x0c\xd9\xa8\xe5\x3a\x26\x46\x31\xf9\x73\xc4\x63\x7f\x8f\xea\xbe\x78\x4c\x54\xa3\x3b\xb2\x5e\x65\xa3\x03\xbc\x26\x79\x56\x75\x3f\x52\xdb\x31\x8c\x74\x23\x1f\xec\xea\x52\xb0\xcd\x6a\xa5\x58\x89\x7b\xf2\xae\x1d\xb8\x4e\x48\x41\x56\x6a\x86\xf3\x93\x68\x5e\xba\x72\xb0\x44\xe9\xca\x99\xa7\x85\xd8\x47\x5a\x64\x0e\x07\xd4\xcb\x71\x3f\x87\xdb\x59\xe5\xb2\x62\x13\x9a\x75\x2f\x2e\x2f\xae\x2f\xce\x5e\x93\xb9\x93\x9f\x6b\x85\x27\x61\xfe\x15\x77\x96\x3e\xd6\x73\xb8\xed\xdc\x2b\x25\x8e\x86\x2b\xc8\x02\x36\x1e\xc5\x64\xfe\xef\xb9\xd9\xd4\x7d\xb2\x1b\x6d\xcd\xed\xc6\x0f\x0f\xee\x63\xcb\x68\xbe\x0c\x68\x14\x8b\x60\xf2\x8e\xc9\x5b\x53\x27\xc2\xd3\x91\xe8\x7e\xdc\x55\x5a\x0a\x9b\xa7\x7b\xd5\x37\xa0\x3b\x30\x48\x08\xc4\xf5\x78\x80\x71\x89\xd2\xd8\x43\x9a\x78\x7d\x26\x54\x80\x09\x4d\x41\x93\x40\xa8\xf7\xc4\x0d\x7e\x1c\xe5\x15\x27\x88\x82\xe4\x0e\x25\xa7\x96\x67\x05\xf7\xe0\x9f\x15\x2b\x42\x8a\xb8\xa5\x72\xa4\xe9\xd4\x68\x57\xf7\xd9\x78\xc6\xf3\x2c\xfd\x9d\xf1\xe8\x8b\x48\xb8\x24\xe6\x57\xc4\x4c\x67\xc0\xd7\x71\xb7\xb8\xcf\xc6\xc6\x62\xd5\xef\xd3\x0b\x93\x5e\xc4\x6b\x16\xc8\x24\xea\x79\xa5\x4a\x60\xfa\xc8\xba\x0e\x35\x20\x48\x78\x80\xd8\x40\x4a\x81\xa4\x92\x36\x28\x7b\xa7\x44\x19\x50\x09\x26\x84\x6a\xd5\x59\xc4\x8b\xe0\xbe\x36\xe7\xc0\xd2\x10\x2a\x95\xad\xb9\x96\x85\xd8\xe2\x5a\x36\xe1\xae\x98\xa6\x9e\xfe\x04\xc4\x94\xb9\x9d\x91\x01\xa2\x0c\x35\x8a\x4d\xf7\x6c\x98\x2f\x34\x2d\x6c\xeb\x45\x88\x15\x34\xc1\x96\x2f\x0b\xa3\x10\xd0\xd6\x0a\xba\x4d\xd5\x20\xda\x66\x80\xa5\xa5\x68\xa2\x06\x83\x33\xc5\x33\x56\x7e\x5d\xe5\x35\x11\x99\xf2\x06\xb8\x3a\xc1\xc4\x1c\x71\x81\x76\xe7\x15\x25\xea\x85\x3b\xda\xe7\x82\x36\x92\x30\x9c\xf1\x92\x13\x93\x06\xd9\xf6\xa8\xc8\x17\xbc\x7d\x29\x4b\x25\x06\xbb\xfd\x75\x5c\x95\x93\x08\x2b\x27\x61\x9d\x0e\x33\x76\x72\x92\xa4\xf5\x5c\x38\x49\xea\x5f\xd6\x70\x66\xff\xaa\xb6\x65\xb5\x33\xb1\x8e\x0d\x65\x93\x6a\x52\x7e\x4b\x85\x78\x1d\xbf\xb9\xad\x82\xbc\xf8\x26\xb5\x78\x51\x52\x86\x37\xee\x33\x9e\x7f\x82\x14\xb4\x3b\xc5\x2c\x5f\xcd\x27\x3b\x19\xbb\x63\x7c\x67\x06\x56\x2b\x6d\x45\x60\x6c\xc7\x7b\xa2\xc9\x88\x65\x24\x51\x0a\xa1\xb0\xc6\x3b\x56\xac\xe6\x82\x72\x95\xa1\x25\xab\xdb\x99\x9e\x3a\xc2\x71\xeb\xc8\x0b\x8c\xa2\x01\xe8\x36\xd7\x96\xb8\xc9\x42\xde\xd8\xec\xd3\x4e\x21\x1c\x9f\x9b\x02\x5e\xcd\x45\x53\x68\x8e\x92\x4a\xc3\x0d\xd2\xb6\xdc\xeb\x7b\x52\x44\x95\xa0\x1d\x2a\xa8\x40\xcf\xa5\x21\x55\x3e\xa9\x41\x94\x5f\x43\xbc\x09\x26\x5c\x31\x3f\x9e\x43\x49\xe0\x3b\xd3\x66\x2d\xe7\xe2\x82\xce\xe1\xde\xc2\xa4\xad\x90\x8a\x76\xb9\x9f\xec\xf5\x5b\xb9\x6a\x0f\x72\x61\x24\x36\x22\xf5\x8a\x16\xfb\x18\x23\xc2\x19\xa4\x2e\xba\xd2\xd9\xa2\xe6\x8e\xdf\x55\x41\xc6\x94\xeb\x1e\xa6\x74\xb5\x7f\xf8\x9f\xe3\x96\xad\x33\x25\x63\x15\x1a\xb3\x9b\x34\xb8\x93\xd9\xbe\x12\x81\x11\x2d\x38\x4b\xe6\xf3\x7c\x5c\x2b\xb6\x05\xd1\x20\xa8\x59\x7b\x9d\x0e\x0a\xf8\xfc\x4c\xfd\x7e\xcb\xc6\xd8\x15\xa0\x92\x52\xde\xbd\x49\x0a\xb6\xc7\x48\x6e\x86\xbf\x97\xd9\x9c\xfc\xf9\x73\xda\x3b\xc9\xf7\xf7\x63\xa5\xea\x88\xf2\x3d\x55\x81\xe4\x7b\x69\xdc\xc2\xca\x94\x91\xcc\xfc\x12\x72\xf9\x29\x5b\x43\x38\x8e\xb2\xcc\x59\x23\x32\x63\x99\xe6\x4c\x59\xf5\x79\x3a\x13\x83\xf2\x17\x6c\x46\x5e\xf0\xb6\xa6\xda\x53\x58\x69\x8a\x95\xd4\x4b\x53\xde\xd5\x7e\xa5\xa8\x67\x90\x44\xa3\x71\x36\x42\xab\x27\x18\xab\xe4\xe8\x6b\x6e\xa9\x02\x6d\x3d\x9c\x3a\x2d\xe1\x00\x1c\xec\x24\x97\xf9\x12\x14\x97\x4d\xc1\x3c\x92\x3a\x5b\x53\x97\xc6\xbb\x4e\x6e\x6f\xd9\x24\x8e\x86\xe5\xa5\xb3\x53\x1c\xc5\xc6\x8e\x55\xc2\xbd\x51\xc2\x89\x67\x49\x96\x33\x95\xb6\xd0\x84\x56\x56\x66\xaf\x02\xf6\xbd\xc3\xff\x74\x7b\x50\x2f\xad\xda\x34\xdd\xee\xf2\x84\x8c\xbe\x15\x24\xe5\xe1\x27\xee\xae\x16\xcd\xbe\x22\xd3\xef\x17\x68\xc0\xdd\x1c\x9a\xde\xb6\x7d\x55\xf6\x9b\xce\x87\x8d\x44\x40\xbe\x01\xd5\x4a\xc8\xd2\x9e\x37\xc4\x1e\x09\x22\x61\xc5\xf9\xd8\x47\xae\x03\x1a\x29\x23\x38\x95\x01\x29\x84\x6d\xd3\x0a\xb6\xf5\x35\x8d\xc6\xb8\x4d\x0e\x45\x84\x86\xf2\x21\x90\x75\xbf\x32\x08\xde\x3d\x7f\xf3\xcb\xf5\xdf\x3f\x9c\xbd\x7b\x77\xf6\xf7\x35\x49\x43\xd8\x36\xdd\xb2\xdf\x94\xc8\xa3\x9a\x9e\x46\xdf\xd8\x7d\x3c\x88\xb6\x81\x99\xa4\x81\xcb\x38\xd5\x25\xd1\x25\xae\xe2\xee\xc1\xd5\x08\x50\x61\x4e\x63\x7d\xd2\x7b\x78\x60\xcf\x29\x3f\x9d\x0e\x32\x15\xcb\x13\x38\x81\x34\x84\xc2\x1c\xa4\x92\x38\x48\x45\xd1\xfd\x66\x74\x50\x7b\xc9\xd9\x92\x79\x61\x39\xed\x2d\x89\x78\x04\xac\x6b\x7a\x1e\xab\x06\x83\xce\xbc\x41\xa7\xee\xa0\x2d\xc8\xf9\x7e\x09\xea\xd9\x9e\x30\xb1\xcd\x72\x89\xba\x9f\x89\x93\x7c\x6f\x2f\x4e\x55\x34\x4e\x79\xaf\xe4\x31\x64\xa6\x6c\x6d\xb5\x23\xbf\x1a\x9d\x39\x58\x53\xb6\x6d\x00\xfc\xf0\x10\x39\xaf\x69\x08\xdf\x95\x01\x28\xd1\x88\x46\x58\xf6\x75\x63\x8f\xb6\x58\x4b\x65\xbc\xad\xdc\x95\xa4\x16\xc6\xad\x6a\x23\xd4\x55\xba\x46\x9c\xf0\xbd\xcc\x24\x5d\x63\x16\xd1\x25\x8d\xdc\xd7\xf7\xa9\x92\x3d\x33\x24\x07\x55\xba\x83\xf4\x76\xc0\x26\x6b\x93\xb2\x90\x85\x78\xa7\x8e\xf4\x9a\x4d\x42\x1a\xa8\x17\x3b\x22\x0c\x1a\x5a\x83\x92\xcb\xa5\xbb\x8b\x64\xe9\x24\x0b\x78\x3b\x6d\xb0\x02\x28\x55\xf5\x4f\x36\x64\xb1\xc5\x9b\xcd\x0d\x43\xb3\xd2\xd2\x25\xe3\x2e\xbb\x4c\x78\xc1\x2e\xc0\x85\xb6\xdf\xb3\x54\x82\x44\x02\x99\x42\x02\x62\x98\xd9\x39\xbc\x9d\x86\x26\xcd\xcc\x3d\xa1\x76\x41\xf1\xcd\xd7\x44\xf9\xd4\xe1\x5b\xc8\x1e\xe0\x23\x45\xfc\x92\x88\xcb\xea\xb7\x7f\xeb\xed\x51\x87\xa5\xbf\x71\xa8\xe1\xab\x05\xb5\xa7\x5b\x0d\x2c\x83\xeb\x25\xd3\xd7\xcb\x8f\x1d\x9f\xb9\x7b\xca\x0b\x93\xeb\xfe\x54\x83\x69\xa9\x11\xb8\x90\x06\x5e\x11\x67\x3d\x75\xa9\x34\x86\xbb\x61\x96\x84\x7c\x89\x21\x7f\x95\x21\x57\x0a\x93\xc8\x8a\x41\x9d\xf0\xa9\x08\x88\x28\xeb\xac\x63\x3c\x11\xa5\x13\x3a\xc2\xc1\x86\x0a\x4d\xa6\x34\x12\xa7\x76\x1c\x8a\x46\xc2\x19\xc4\xce\xa8\x5a\x7a\xd8\x70\xd9\xeb\xdb\x53\xe5\x01\xd8\x74\x7b\xae\xca\xb7\x27\x74\x15\xbc\x48\x17\x8c\xdf\x86\x44\xf4\x4d\xd7\xa8\x6a\xad\xfe\x1e\x25\xb9\x4e\xd1\xd1\xc2\xfc\xb5\x69\xf1\x8a\xe7\xbf\xb3\x2c\xe2\x71\xa7\x03\x56\xcf\x58\x0f\x12\x3e\x0d\x47\x36\x6e\xa8\x8a\x56\x2a\xdc\x30\xa5\xf9\x30\x19\x9d\x00\x1c\xb8\x81\x4f\x11\x77\x3a\x11\xa8\xdb\x57\xc5\x2c\x2a\x62\x49\x12\x80\x07\x8c\x8b\x2d\x93\x51\x1c\xaf\xfd\xbd\xbd\x05\x5a\x08\x6c\xbd\xb5\x84\x94\xc8\xaf\xee\x33\x31\x63\x22\x1d\x5f\x7a\x11\xce\x5c\xcc\xa5\x0c\x8b\xfa\xb1\xaa\x70\x26\x6a\x4a\xb6\xff\xab\xbd\xc7\x7e\x20\x47\x53\x59\x59\xe3\x8c\x27\xe7\xd0\x78\xb3\xab\x75\x0a\x50\x13\x0a\x1c\x1e\x30\xec\x8d\x52\x02\x86\x47\x52\x60\xe1\xc6\x5e\xb1\x4c\xa8\x5f\x0d\x78\x67\x14\x6e\xbf\x0a\xa6\x3f\x9c\x86\xd9\x44\xcf\x06\x68\x98\xcc\xa5\x61\x04\x11\x7b\x3c\x44\xc3\xac\x1a\x99\xb5\x2a\xab\x86\x60\xaf\x10\x23\x3e\xab\x66\x64\x2e\x6a\x54\x8b\x64\x69\x19\x9d\x1a\x93\xa8\xaf\x47\x8b\x8d\x26\xd4\x0a\x09\xf0\x0a\xe5\x90\x51\x51\x83\xc5\xb2\xd3\xe9\x80\xc3\xf5\x9f\x55\x49\x98\x52\x18\x65\x44\x58\x81\xd6\x3d\x05\x99\xca\xe3\x60\xec\x74\x53\x89\x34\xb2\x21\x1b\xa6\xa3\x11\x15\xc3\x74\x64\x28\x09\x0d\x85\xc6\x33\xb7\x48\x96\x8d\x1b\x68\x91\x2c\x03\x3b\xc7\xc3\x86\xce\x1e\x73\x6a\x79\x83\x6e\xd9\x40\xce\x72\xf0\xc2\x1b\x3c\x1b\x0a\x18\x7c\x36\x4c\x47\xeb\xc0\x6e\x9a\x6f\xa0\x85\xd2\x4c\x30\x9e\x25\xf3\x5f\xe5\xbc\x5d\xec\xa6\x3f\x5c\x7b\x6c\x49\xed\xf5\xed\x53\x29\x8a\xc2\xfa\x7e\x3a\xa8\xb6\xbb\x7a\x02\xc9\x1b\x77\x80\xcd\x2d\x4d\x78\x2b\x46\x3b\x4c\x0b\xa9\xc1\xe5\x5b\xf2\xdd\xdf\x33\x2e\x4d\xc9\x84\xd7\x24\xb0\x84\x3f\x98\xac\xa9\x20\x3c\x75\x6b\x67\xee\x7e\x4e\x69\xe6\x1e\x63\x1d\x82\xd2\x7d\x59\x89\x46\x99\x53\xf0\xa9\x88\x0e\xff\x33\x55\x49\x07\xcd\xe3\x5e\x5f\xbe\x28\x9c\x17\x07\x44\xc4\x6e\x14\x2d\x4a\x69\xa1\xf2\x7a\x0c\x0b\x92\x90\x7c\xb4\x99\xca\x19\x23\x95\xe3\x10\x37\x70\xdc\x8b\x66\x59\xa1\x2a\xd3\x74\xd0\xfd\x15\xf8\xf6\xcb\xa2\xbc\x92\xe5\xfb\xe2\xf0\x3f\x83\x37\xc6\x78\xb3\xce\x51\xed\x55\xe6\x4e\xba\xb4\x5b\x35\x4e\x6c\xd2\x87\x7d\xfd\x8e\x6a\x64\x1f\xcb\xc5\x5d\xdc\x8f\xb9\xf0\x87\xce\x80\x87\x87\xff\x29\xf6\x0e\x46\xa4\xfc\xaa\x5f\x79\x35\x1a\x21\x27\x38\x55\x0e\x1a\x2b\xd1\xcc\x6a\xfb\x87\x8d\xcc\x54\xad\xa4\xb9\x56\x4c\x26\xaa\x5c\x5a\x29\x37\x13\x64\x2a\x48\x0f\xa2\x3e\x63\x85\x9f\xaf\xe8\x44\xe9\x8b\x96\x4d\xf7\x7b\xc9\x40\x0a\x23\xc6\xa2\x35\xaa\x1f\xad\x4c\x19\x4c\x23\xe3\x33\x51\x31\x22\x20\x0d\x47\x8d\x25\x75\xd1\xf0\x2d\x60\x82\x54\x2d\x34\x4e\xc6\x33\xf6\x33\xcf\x57\xcb\xa2\xfa\x71\x9e\x16\x2a\x2d\x4f\x5d\xef\x3d\x07\x63\x15\x7d\xe7\x41\xb8\x5f\x84\xfb\xe5\xce\xfd\xa2\x22\x35\xcf\x9c\xe0\xb5\xf2\x4d\xc5\x32\xdc\x2d\x50\x32\x12\x0f\xc1\xcd\x02\xc5\x77\x2b\xab\xc0\x13\xcd\xb9\xb4\x6d\x39\xbf\x55\x30\xd0\x71\x74\x94\xf3\xa8\x7c\xf3\x3b\x8b\xfe\x80\x72\x1f\x6d\x07\x01\x03\x65\x46\x63\xfb\x65\xc2\x6e\x56\xb7\xca\xf4\x69\x10\x60\x0a\x92\xae\x53\x20\xca\xdd\xc0\xa9\xf0\x01\x4c\x3a\x06\xfe\xd5\x89\x75\xd0\xda\xc3\x54\x21\x22\x5e\xaf\x95\xf5\x40\x1e\x3a\xd2\x79\x77\xca\xc4\xb8\xd6\xb5\xc8\xb8\x7c\x0e\xd3\xee\x3b\x76\x9b\x16\x82\xf1\x21\x1b\x8d\xc0\x32\x63\x9e\x27\x93\x4a\xc5\x52\xc1\x52\x08\xe7\x08\x2a\x42\x97\xbf\xfa\xf4\x9c\x2f\xc1\x2a\xb5\xa2\x7b\x2b\xd7\xd1\xd8\xad\xd2\xa9\xac\x50\x1f\x70\x5b\x99\xf4\x38\x01\x7e\xa1\x78\x5d\xc4\x6c\x2c\x6d\xc2\xfd\xca\xc2\x61\x93\x0b\xf4\x11\xd4\xa6\xf8\x79\x4d\x9c\x69\xf4\x88\x85\xb8\xbe\x50\x4c\x4d\xfc\xba\xb6\x45\xfd\xdd\x2b\x5e\xeb\x8d\x07\x1c\x1f\x38\xae\xa5\xca\xd2\xc5\xf5\x52\xce\x8c\x59\xd9\x17\xa5\x5d\x15\x2a\xbc\x35\x1c\x83\x22\xfd\x9d\xe5\x92\x53\x26\x4a\x33\xcd\xa2\x2f\xb8\x65\x07\x82\xb0\xec\x6e\x90\xad\xc9\xa5\xca\xb7\x16\xa5\x64\x15\x83\x45\xb4\x35\x0c\x5b\x8e\xe9\xdc\x0f\x96\x2d\x5b\xfa\x1a\xd3\xc8\xb9\x1c\x75\x89\x30\x14\x9e\x25\x3f\xfd\x12\xd6\x93\x4d\xd7\xa4\xa8\xfb\x00\xc6\x59\x81\x4f\xc9\x7a\x4d\x8a\x8d\x13\x9d\x92\x5e\x4c\x12\x92\x9a\x89\x06\x91\x65\xdd\x8c\x20\x9c\x77\x29\x84\x78\x1e\x93\x22\x14\xc0\x16\x35\x71\x9e\x80\x98\x43\xbe\x1b\x48\x50\xe5\xa1\x24\x48\x23\x99\x07\x3d\x89\x50\xdb\xe6\x96\x1e\x54\x50\x5a\x14\x93\xc2\x7e\x29\xf4\x2b\x39\x95\x81\x73\x64\xb5\xfa\x96\xc5\x6b\xd9\x1d\xe4\xd6\x78\x61\x6e\x81\xca\x16\x74\x2e\x08\xc7\x5b\x5c\x83\x2b\x8a\x31\xbc\x81\x1a\x3a\x64\x77\x08\x37\xa6\x28\x2b\x48\xe9\x1c\xb5\xcf\x2f\x5f\xb6\x63\xcd\xd8\xd9\xb6\x8c\xf5\xb8\xdb\x27\x44\xbc\xcd\x69\x7a\xea\x58\x28\xa5\xf1\x40\xc7\x65\x00\xd3\x03\x35\x06\x52\xd0\x80\x31\x9f\x5e\xc0\x42\xc0\x8b\x48\x6e\xf0\x98\x28\xb3\xb8\x37\x51\x41\x58\xdc\x2a\x85\x9c\x5a\x91\x3c\x26\x02\xe3\xa2\x40\xfd\x77\xd1\x2a\x76\x5e\xa9\x33\xcb\x32\x11\x8c\x33\x5b\xde\x31\x26\x02\xbb\x01\xbc\x9e\x27\x5e\x5e\x45\x14\x07\xa2\xec\xc2\xac\x65\x5b\xff\xc0\x18\x56\x7a\xc3\x29\x6b\x19\xf5\x6e\x39\x8e\x09\xca\xb3\x8c\x4d\x9c\x1b\x8e\xec\x3c\x83\xbb\x03\xc6\x8b\xe6\xcd\x01\x6f\x28\x8f\x6c\xcd\xcc\xa5\x99\xe9\x78\x32\x2d\x37\x14\x15\xce\xe2\x20\x36\x81\xa8\x9a\x67\xe1\x5a\x09\x6c\x9a\x4a\xea\x4f\x25\x27\x95\xd3\x67\x00\x7f\x21\xd8\x22\xc4\x6a\x1a\x9a\x25\x8a\xbb\x8b\x64\x09\x41\xbb\x88\x0f\x0e\xa7\x95\x4a\xfc\xe1\xed\x96\xb0\x57\xb7\x84\x26\xa8\xb1\x84\x5f\xee\xdd\x94\x8c\xc9\x21\x59\x3b\x51\x93\x99\x20\x98\x56\x40\xdb\xcc\x97\x20\x95\xe8\x9d\xcb\x44\x54\x04\x56\x9e\xe4\xb8\xf6\x3e\xe9\xa6\x16\x72\x15\x97\x00\xb1\x02\x40\xe8\xc7\xea\x55\xe5\x3b\x37\xd4\x11\x95\x5a\xe6\x6a\xed\xda\x25\x74\x3f\xa7\x55\xff\x45\x17\x58\xa5\x40\xa8\xc1\x76\x6d\xb0\xeb\x0a\xbe\xa9\x31\xe2\x36\x7d\xfb\x0b\x6b\xec\x15\x53\xe3\xd5\x5e\x06\x90\x26\x64\xec\x9c\x6b\xe0\xa1\x46\xe1\x61\x02\xd3\x56\x9d\x3a\xae\xd4\x99\x09\xd7\x9d\x5b\x0b\xc6\x9a\x9a\x21\xb8\x38\xd5\x35\x44\xeb\xaa\xbb\xe4\xb1\x2c\x5f\x34\xe5\x63\x74\xe8\x66\xa7\x0b\xf7\x8a\xa9\xab\x59\xa5\xac\x9d\x06\xe4\xf6\x80\x05\xaa\x34\x11\xa6\xd6\x9d\xdb\x4b\xed\x29\xbc\x5d\xe4\xd7\x97\x35\x83\x71\xa3\xac\x79\x57\xa2\x6e\xa1\xd5\x3c\x5c\x27\xce\xb6\xea\xe8\x5d\x9e\x8b\x72\xb6\x4b\xab\x6e\xbe\xc4\xbc\xaf\x6e\xd4\x88\x4e\x87\x97\x33\x65\x7a\x73\x89\xc3\xcc\x09\x87\xd0\xf7\xaa\xd3\x9a\xf4\x9a\xe5\x2a\x4c\x13\xb7\x9b\x01\xaa\x77\xf5\x32\x5f\xd6\x81\xae\x0e\x22\xba\xea\xa6\x40\x65\xce\xa1\xae\xc4\x02\xc6\xa1\x6e\x48\x19\xab\x17\x1b\x8b\x45\x48\x11\xa3\x0c\xf5\x55\xce\x37\xa4\x91\x75\xeb\x43\x49\x7d\x41\xd7\xbb\xff\x5a\x77\xdf\x9a\x8c\x30\x44\x74\x3a\x4a\xb2\x14\x9f\xec\x46\xdc\x3a\xab\x45\x71\x0c\xce\x25\x27\xf1\x89\xb1\xd5\x04\x21\x85\x82\xd5\xe7\xaa\x29\xb6\xa6\x73\x58\x76\x47\xfc\x54\x2d\xfa\x5a\x09\x1c\xf2\xd2\xfd\x72\x85\x1a\x35\x87\x2b\x28\xbb\x1f\x3b\x62\xb4\x5d\x4a\x73\x23\xa1\x94\x65\xbd\x5c\x2e\x91\x92\x6e\xc6\x84\xd1\x2f\x72\x26\x83\xdd\x3e\x81\x19\x40\x3c\xed\xb5\x96\x4b\x7a\xce\xe6\xb6\x6c\x4f\x97\x95\x57\xa4\x50\x04\x2e\x62\xea\xd4\xc1\xea\xf1\x1a\x0f\x93\x3c\x12\xe1\xad\xe7\x85\xdc\x08\x51\xb3\x9c\xda\x50\x1a\x27\xfc\x39\xed\x9d\xf0\xfd\x7d\x8f\x62\x31\xc2\x00\x58\x7b\x4c\x54\x0d\x81\x39\x20\xea\x40\x94\x91\x32\xaf\x1a\x37\xdb\xdc\x40\xc9\x2d\x42\x98\x14\x0a\xa1\x7a\xfc\x89\xcf\xe0\xa1\x54\xd9\xa8\xa7\xbc\xdb\xbd\xdd\x54\xd3\xcf\xd4\xc3\xd6\x9b\x47\xe3\xd5\x30\x3d\x2e\xc7\x5b\x4c\x64\x39\x6e\x9c\xc5\x72\xec\x4c\x81\x27\x5b\x34\xc8\x93\xc6\x06\x79\xe2\x34\x38\xad\x6a\x5a\xaa\xe1\x0b\xa6\xcb\x9a\x06\x4d\xfa\x2a\xdb\x60\xb1\x4d\x83\x45\x73\x83\x85\xdb\x20\x1e\xd4\xc6\x56\xb5\xd3\x32\x96\x35\x75\x59\x76\xb7\x55\x3d\x96\xdd\xb9\x4e\xf1\xaf\xf3\x4f\xaf\xd9\x1d\x9b\xff\xfa\x86\x2e\x95\x70\x71\x51\x2b\x5c\xc4\x81\xdf\x2d\xc2\xb9\x6e\xca\xe8\xc8\xed\xfd\x6e\x81\xe8\xcc\x89\x00\x71\xb7\x59\xe6\xac\x08\x08\x47\x59\xf2\x8e\x4d\xa9\x70\xd3\x50\xdd\x25\xfc\x7a\x6b\x0f\x34\x25\x1f\xac\x7a\x9f\x09\xb0\x5a\xe0\xa3\x46\x27\x99\x46\x0b\xa8\x5b\x26\x7e\x4d\x78\x14\x5b\x33\xa2\xaa\xd8\x3a\x58\xde\x4b\x4a\xfe\x6b\xc8\x68\x19\x11\x8d\x0b\x02\xdd\x8b\x61\x6a\x01\x4e\xe5\xb4\xe5\x16\x3c\xbe\x0b\x1a\xcc\x16\xa2\x5e\xe3\x1e\x78\x79\xfe\xea\xec\xfd\xeb\xeb\x0f\x2f\xce\x7e\x39\xfb\xe9\xe2\xf5\xc5\xf5\xc5\xf9\x15\xd5\xec\xff\xeb\xe4\x3e\x5f\x09\x89\x89\xf1\xc5\x75\x72\x2b\x9f\x96\x9c\x2d\x13\xce\xce\xf8\x6d\x21\x1f\x15\xc4\xf5\x93\x89\x14\xfc\xa7\x3c\xff\x28\x31\x3e\x5e\x2c\xfa\xd1\x13\x2d\x98\xda\x8a\x96\x91\xdf\xd5\x48\x55\x69\xfd\x15\x92\x56\x66\x63\x59\x7e\xdd\x62\xdd\x37\x17\x97\x17\x6f\xce\x5e\x37\x0f\xba\xef\x0d\xba\xef\x0f\xba\xef\x0d\xba\xff\x95\x83\xee\x37\x0e\xba\x5f\x19\x74\x5f\x99\xe2\xdd\x0b\xda\xfe\x8f\xbd\x9b\x41\xef\x3f\xda\x2d\xb3\xe5\x6f\x85\x67\xd0\x91\xe5\x13\xa6\x04\x95\x94\xde\x8b\x35\xeb\x5e\x9d\xbf\xbb\x38\x7b\x7d\xf1\x8f\xb3\xeb\x8b\xb7\x97\x1f\x5e\x5d\xbc\xbb\xba\xfe\x70\xf9\xf6\xe5\xf9\x87\xab\xeb\x77\x17\x97\x3f\xd3\x7b\x75\x24\x6e\x6a\xbc\x45\x79\xe4\x3a\xe9\xea\x00\x05\x69\x39\x40\x81\x1f\xce\x22\xcd\x6e\xe1\x72\x7d\xc9\x96\x60\xc5\x92\x76\xc7\x49\x36\x51\x61\x50\x40\xa4\x9e\x76\xd3\xec\xb7\xff\x3f\x77\x7f\xda\xde\xb8\x71\x2d\x8a\xc2\xdf\xf9\x2b\x48\x9e\x04\x46\x1d\x96\xd8\xa4\xba\x93\x9d\x50\x5d\xe6\xe9\x41\x6d\xf7\x89\x7a\x48\x4b\x1d\x1f\x1f\x98\x5b\x81\xc8\xa2\x58\x16\x08\xd0\x85\x82\xd4\xb2\xc8\xf7\xb7\xbf\x4f\xad\x9a\x01\x90\x6a\x3b\xd9\xfb\xde\xe7\x7e\x21\x81\x42\xcd\xc3\xaa\x35\x2f\x3a\x17\x74\xf1\x61\xcd\x84\xa0\xca\x47\x64\x6f\x8c\xd9\xd0\x06\x75\xd1\x85\x8f\xc6\x98\x7d\x45\x64\xc8\x3f\x20\x7c\xf9\x75\x43\x60\xcb\xb8\xd9\x7f\x9c\xdb\x11\x54\xf9\x3a\x15\xf3\x15\x5d\x58\x8f\xd7\xa5\xe9\xf4\x95\xeb\xd7\x08\xe7\x4d\x67\x76\x9f\xe8\xea\x7e\xa1\x22\xa9\x74\xef\x98\x58\x75\x3d\xf3\xbd\x2e\x78\xba\xab\x36\x9b\x82\x0b\xba\xe8\x23\x4f\x3b\x97\x99\x6b\xf1\x15\xb8\x98\x36\x98\x94\x17\x19\xe0\xa4\xa7\x3d\x10\x92\x62\xbb\xbd\x13\x71\x81\xa2\xe8\x5a\xfe\xa1\x13\x54\x90\xc2\xf7\x43\xed\x64\xdc\x6e\xce\x0b\xcc\x7e\x9f\x23\x90\xbd\x31\x3e\x7c\x25\x65\x3b\x29\x58\xc5\x1f\xb9\x52\x01\x4d\x3c\x8f\x91\xa3\x09\x77\x1c\x33\x7f\xa8\x1d\x16\x45\x5e\x47\xa3\x28\xce\xbd\x6e\xfb\xb1\x11\x82\x3d\x44\xc3\x50\x06\xa6\xde\x5a\xc0\x11\x1d\x35\x86\xa6\xfc\x1d\x2b\x61\x4d\xdb\xf4\xc6\x6c\x14\x9d\xb0\x5f\xca\xe5\x63\x8f\x10\x1b\xd4\x8b\xd7\xb6\x26\xe4\xf9\x96\xf0\x96\x2d\x0f\xde\x73\x4f\x44\x14\xc5\xbd\x3b\x11\x0b\xb4\xdd\x9e\xca\xbf\x1e\x21\x39\x3a\x41\x56\x4b\x04\x4c\xc4\x85\xf2\x39\xd8\x85\x22\xc6\x6e\xa7\x25\x13\xf7\xc7\x4c\x04\x18\xd5\xf8\x67\x6a\x77\x20\x26\x52\xd3\xce\xb2\x31\xcc\x9a\xc0\xd8\x8d\xb2\xf6\x3e\x18\xa8\x1b\x14\xe7\x70\x84\x74\x0f\xbc\x8a\x72\x74\x27\xe2\x1c\x45\x51\x1c\x73\x92\x3b\x78\x34\x84\x15\x88\x9f\xfc\xe7\x1f\x7f\x1a\x5c\x4d\xe2\x9f\x16\x03\xf4\xc7\x3f\x3c\x41\x28\x8a\x78\x32\x9e\x4d\xdf\x83\x43\xca\x58\x3e\x23\x15\x0d\x17\xa4\xb0\xb1\xd7\x48\x30\x23\x39\xc2\xb4\x0e\x2b\x8c\x0f\xd2\x60\xcd\x63\xed\x90\x71\x5f\x4c\xa8\xdf\x32\x37\xf5\x16\xeb\x93\x73\x74\xd4\x31\x76\x72\x6e\x6a\xbc\x98\x5b\x77\x02\x14\x0a\x4f\xe5\xdf\xe1\xe1\xf1\xe6\xf0\x8e\x8e\x5a\x87\xc7\x51\xcb\x4c\x90\xfa\x32\x46\xd1\xde\xa6\x6a\x87\xa9\xa5\xd9\xdd\xfe\x38\x29\x21\x28\x70\x83\x36\x04\xe7\x76\xeb\x63\x79\x7e\x1d\x35\x53\xeb\x7d\x71\x45\xc2\x06\x94\x33\x07\x1d\xb3\x02\xb4\x3c\xbc\xe3\xe9\xd9\x77\x82\x3d\x9b\xb3\xdc\xd4\xec\xe9\x5a\x38\x95\x3c\x0c\xf4\x00\xde\x4e\x58\x51\x95\x76\x2a\xd2\xda\x8e\xeb\x84\x7a\xeb\x90\xca\x10\xd6\x0b\x9c\x46\xd1\x07\x11\xa7\xc8\x9a\x2b\xb7\xce\x76\x6a\xf3\x87\x99\xb4\x41\x72\xb8\xb6\x61\x16\x84\x70\xd1\x86\x3b\xfb\x13\xd7\x98\x55\xd5\x6c\xab\xc2\xac\x32\xa5\x95\x33\x04\xf4\x6b\xcb\x1d\x22\x02\x9b\x79\xb8\x68\x71\x1e\x2c\xc2\xbe\x93\xe4\x03\x06\x1a\x45\xe7\x10\x9c\xc3\x23\xa2\x01\xec\xfa\x4d\x9e\xf0\x28\xea\x9d\xcb\x83\x71\x82\x38\xe1\x6d\xbd\x69\x8d\x88\xe3\x34\x52\x00\x08\xee\x0d\x29\xb4\x6f\xa3\xaa\x2d\xc4\x96\xf1\x53\xd0\xd7\x95\xe0\xea\xe2\x7e\x63\x4d\x06\xb8\x03\x60\x72\xc9\x54\xdc\x3c\x8b\x62\x19\x71\xbd\x5b\xea\xa0\xe3\x18\x80\x88\x3c\xf8\x2d\xa8\xfc\x5f\x08\x21\xd4\xb6\x17\x45\xfd\x3f\x6e\xff\xd8\xb7\x69\x50\xff\x2e\x96\x78\xd5\x07\x39\x29\x56\x79\xe9\x60\x7b\x35\x08\x02\xaf\x41\xc0\x15\x01\x67\x46\xd5\xe8\x73\x27\x6c\x99\x4e\xad\xfe\xdc\x17\xa8\xb8\x00\x76\x36\xc4\x92\xf8\x2d\x61\x88\x74\x78\x94\x60\x24\x35\x58\x86\xdb\x36\xb6\x6c\x2d\xdc\xd8\x07\x4e\x41\x33\xf3\xa1\x90\x30\x8f\xc1\xaf\x28\x02\x98\x3d\x8d\xff\xc5\x8d\x80\x26\x31\x6f\x3d\xe2\x7b\x86\xac\x3b\x1a\x0c\x04\x1d\x08\x35\x78\x68\x7b\x47\xd1\x17\x75\xef\x84\x28\x9c\x3c\x99\x4a\x07\x6a\x93\xce\xe9\xe7\x4f\x6f\xe5\x01\xb0\x1b\x9f\x4a\x42\x0f\xb4\xc1\x09\xb1\xe1\x23\x83\xc4\xa1\x28\x3e\x6f\x36\x94\xbf\x4a\x4b\x49\xb4\x82\x43\xc8\x60\x97\xb6\x21\xd2\xc9\x4c\x29\x95\xa9\x81\x79\x91\xf5\x4b\xa4\x4f\x0b\x74\x4c\x77\xb8\x7f\xf1\xf2\xc3\xeb\x1f\xfb\x70\x32\x75\xcb\x41\x0b\x7b\x83\x11\x86\xf8\x74\x2b\xad\x61\x0c\x5a\x82\x58\x8f\x46\x1e\x59\x5f\xa3\xf6\x0d\xe7\x95\x6c\xd9\x71\xed\x01\x80\x9a\x2e\x8f\x5a\xa6\x49\x4e\x84\x55\xc4\x7a\x21\x62\x10\x94\xb2\x65\x5c\x20\xab\x38\x73\xab\x77\xa2\x84\x2e\xfa\x8d\x70\xa4\x90\x6e\x36\x2c\x37\x20\x40\x66\x56\xbb\xad\x40\x78\xbc\x67\x14\x7e\x3f\x1b\x44\xd1\x81\xd0\x43\x5e\xbc\xdb\x43\xe3\xb0\x83\x7d\x01\x4c\x4e\xa4\xc6\x66\x89\x14\x7f\x1c\xac\x36\x8e\xdc\x8c\xc3\x69\x71\xb2\x83\xe3\x30\x9d\xac\xd1\xa6\x87\x22\x51\x7e\xfd\x28\x42\x35\xe8\xdc\x57\x83\x76\x1c\x5e\x1d\xf9\x48\x03\x54\x17\x51\x29\x4f\xd8\x0c\x0e\x9b\xde\x60\xfb\x88\xcc\x1d\xd0\x02\xe1\xc0\xfc\x8e\xb7\x8c\xec\x50\x1c\x3f\x0f\xa5\xb7\x30\xa1\x9d\xe0\x31\x48\x49\x3b\x1e\x82\x30\x8f\xa2\xd6\x83\xa4\xf3\x07\x01\x36\xfd\xee\xd7\x7b\xe7\x79\xc0\xd4\x0a\xfb\xef\x94\x63\xb8\x36\xfa\x92\x0e\x7f\xa9\x28\xbf\x3f\xa7\x19\x9d\x8b\x82\xc7\xdf\x94\x73\xce\x36\x22\xb9\xce\xd6\x9c\xf4\xbf\x19\x88\xc1\x37\xfd\xd9\x37\x1a\x0f\x34\x20\xbb\xd3\x20\xcb\x5f\xa5\xb9\x24\xbe\x97\x2c\x5f\x74\x4b\xca\x95\x20\x76\xd1\x55\x14\xa3\x24\xbc\xba\xff\x64\xf9\x91\xbe\xa5\xfe\xd9\xff\xaa\x40\x9c\xff\x86\x78\xa0\x46\xa6\x62\xe7\x00\xea\x85\xdd\xe6\xe1\x66\xc4\xd2\x1f\x6d\x04\x34\x06\xee\x81\x05\xf7\x0d\xa8\x48\xb1\xa4\xbc\x03\x56\xc0\x01\xe4\x54\xbb\xb3\x48\x1f\x0d\x23\x9a\x42\x18\xd1\x83\x41\x31\xcd\x0d\xe3\x85\xc6\x09\xb3\x06\x20\xb3\xd6\x2b\x7b\x9b\x79\x48\x7c\x1d\x35\x81\x1d\xe9\x07\xe0\x32\x37\x43\x9b\xd8\x84\x1b\xb1\x49\x30\x7b\xbf\x35\xde\x97\x13\x91\x98\x5e\x3c\x56\x83\x6b\x6b\xda\x72\x31\xd9\x6a\x94\x3c\xab\x9d\xd7\xbf\xa7\x08\x51\x1a\xd8\x7c\x17\x7f\xa6\xc8\xb1\x03\xef\xc4\x5e\x1c\x73\x67\x33\x9d\x0a\x9f\x0e\x68\x23\xd1\x8f\x3c\x12\xdd\x93\x1b\x0b\x8f\x54\x17\x96\x54\x77\x15\x7f\xf1\x5b\x1f\xef\x69\xfd\x7c\x7f\x17\x25\x1a\x2c\x0f\x77\x03\x13\xb6\x85\x3f\x1c\x2e\xdc\xdd\x5f\xf2\x85\xa8\xc7\x18\x69\xf8\xcc\xd7\x17\x01\x4d\xf8\x4c\x1d\xc3\x5c\xe3\x3a\xd6\x74\x60\xb7\xa3\x43\xc3\xe5\xa3\x26\xb8\xdb\xa5\xd8\x21\x4c\xe3\xfe\xff\xba\xce\xd8\x7a\x4d\xf9\x93\x4a\xb0\xac\x8f\x93\x3e\xfd\xb2\x29\xb8\x28\xfb\xb8\x4f\xe5\x94\x1d\x5d\xa5\x57\x34\xeb\xcf\x70\x08\x48\xfa\x55\x49\xbb\xa5\xe0\x6c\x2e\xfa\x1d\x3a\x4c\xcb\x86\xe3\x4a\x38\x4a\xbd\x66\xf4\x0c\xb1\xdd\xf6\x55\x76\x39\xc0\x65\xca\xb2\x8a\x53\x88\x8a\x25\x6b\x61\xd7\xf9\x1e\x11\xe6\xf8\x44\x3c\xaf\x03\x2e\x08\xe0\xa6\x27\xc0\x81\x2a\x31\xf3\x59\x3b\x51\x64\x42\x6e\x38\x9f\x8b\xc8\xdd\x8b\x3c\xce\x25\xa9\x3d\x3a\x29\x9e\x33\x53\x6b\x61\x6a\x4d\x09\x4b\x8a\x59\x87\x26\xe9\x8c\xe4\x49\xea\x5b\x0b\x61\x3a\x5c\xb2\x2c\x7b\x5f\x65\x59\xb9\xa7\xc7\x72\xcc\xca\x10\x01\x22\x5b\xc2\xca\xa9\x30\x07\x09\x9f\x29\xe7\x9c\xee\xf8\xd3\x21\xcd\xcb\x8a\xd3\xef\x2a\xb6\x20\x85\x53\x45\x65\xbf\xaa\x24\x86\x29\x18\x37\x91\x14\xd3\x61\x95\xdf\xf1\x74\x13\x34\xeb\xc5\x7b\x69\xdc\x25\xa7\x10\x6b\x9f\x2e\xba\x80\xaa\x74\x45\xd1\xbd\xa2\xdd\x0d\xa7\x25\xcd\x85\x17\xc4\x04\x3a\x01\x59\x9b\x0b\xb9\xaf\x6e\x11\x16\xf7\x22\x62\x34\xa9\xec\xdf\xe9\xff\xab\xef\x55\xda\xf7\xe9\x6a\xd5\x03\xf0\x1d\xe9\x1b\x19\x10\xea\xd4\x11\xf5\x33\xdc\x49\xd4\xd3\x38\x23\xa6\xc4\xf9\xd9\xdb\x57\xa7\x84\x0e\x5f\xb3\xb9\x38\xa7\x32\x5d\xe9\xba\xab\x7e\x69\xce\x98\x36\xb0\xbd\xa1\xf7\xa5\xe6\x3c\x8f\x1c\xf0\x62\x81\x28\xe3\xf2\x5a\x2e\xd6\x60\x90\xbb\x33\x5c\x34\x33\x6c\xb7\xb2\x94\xcb\x92\x3a\x20\xac\xdb\x32\x02\x3d\x30\x4c\x52\x26\xba\x07\x6d\xd2\xd4\xd6\x38\xec\xf5\x2e\x5d\x2c\xda\xcc\x64\xeb\x1e\x49\xe9\xd4\xd6\x98\xd0\x19\x31\xaa\xb0\xf2\x55\x0e\x65\xa6\xc5\x93\x7b\x9c\x8f\xb6\x54\x67\xbc\x89\x7a\xb5\x4e\xf4\x44\x44\x51\xf3\xa3\xfa\x32\x73\xd2\x3a\xbd\x34\xa5\xf6\x6e\x75\x70\x1e\x94\x5e\x80\x89\xde\x67\xbc\xef\x59\xb3\xcd\x3d\xde\xc0\xda\x63\x85\x58\x7f\x80\x81\x9a\x83\x51\x11\xe2\xed\x31\x31\xea\x1a\x11\x61\xac\x0b\x6d\xef\xdd\x72\xe1\x2a\xdf\x50\xca\x82\xc7\x15\x48\xc4\xd1\x78\xe6\xa4\x12\x54\x7d\xa7\xb2\x75\xed\x3c\xbf\x45\x40\x6b\xbd\x4c\xf9\x6d\x1e\xd6\xcb\x00\xa5\x89\x47\x45\xfb\x35\x1f\x49\x1d\x73\x58\xaa\x8e\x77\xcc\x1a\xd3\xe8\xbc\xbf\x2b\xbc\xcc\x3a\x80\xd7\x02\x5b\x49\x3d\xd1\x9d\xf6\x49\x76\x70\x71\xb5\xdf\xea\x83\xe6\x56\xd4\xb7\xb0\xa8\x85\xf1\x95\x1f\x21\xae\x43\xca\xb2\xbd\x99\xe4\x47\x15\x26\xae\xe6\x52\xcb\xd5\x41\x5c\x4e\xb5\xb5\xda\x63\x45\xa8\x0d\x91\xcc\xc2\xd8\x82\x6d\x81\xf7\x84\x07\x20\xb4\x7a\xf0\x4e\x3b\x89\x34\x4a\xd9\xed\xa6\xf0\xf2\x2b\xb8\x13\x74\xb5\x1e\xd2\x00\x82\xde\x7b\x02\x1b\x15\x0d\x5a\x33\x35\x77\x38\x54\xd4\x6e\xe1\xbf\xfe\xce\x38\x26\xfe\x55\x67\x62\x64\x2a\x20\x63\xf5\x3c\x27\xb1\x80\x9d\x31\x55\x7f\x6a\xd3\x68\xd0\xa3\xe6\x9c\x02\x89\x46\x6f\x89\xca\x81\xb5\xfe\x85\xc0\xea\x5d\x7e\x07\xb5\x02\x55\xe5\x3e\xfb\x39\x58\x34\xbb\x20\xd3\x58\xe8\x96\x6c\xe5\xa6\x5e\xe5\x0d\x23\x68\xdf\x5b\x75\xaa\x9c\x46\x37\xd8\xd4\x1e\x91\x4f\x6f\xa7\xd4\x1f\x0b\xfc\x05\x15\x2a\xef\xec\xea\x6f\xaa\xfe\xf4\x50\xe0\x6f\xe2\xb7\xa7\xc7\x6c\x81\xa2\x77\x95\x65\xda\x37\xf1\x63\xba\x25\x2d\xc3\x38\x18\x44\xf2\x5f\xdc\x53\xe6\xe8\x6b\x96\x2b\x38\xa2\xfc\xb7\x1d\xce\xff\x47\x4e\x9b\x01\xab\xd0\x0b\x0d\x89\xf5\xc9\xb1\xab\x62\xf0\x8e\x39\x2c\x8a\xf2\x92\x3f\x8f\x15\xe5\x2c\x77\x54\x27\x44\x3c\x96\x90\x6d\x65\x30\x8c\x25\xa7\xf4\x57\x1a\x27\x33\xdf\x0c\x52\xa2\x34\xab\x1a\xb2\x7e\xbb\xf6\x51\xf5\x59\x10\x3c\x2f\x40\xcd\x61\xa1\xc0\x0b\xa7\x32\xf6\xd2\x88\x0d\xf6\x52\x44\x50\x9a\x26\x74\xb8\x99\x93\xd1\x8c\x80\x86\x9b\x7c\xe5\x29\x19\xcf\x08\xe8\xa7\xc9\xd7\xe5\x86\x1c\xcf\x08\x68\x97\xc9\xd7\x72\x43\x9e\xce\x08\xe8\x86\xc1\xeb\x88\x3c\x93\xaf\x23\xfd\x3a\x26\x7f\x92\xaf\x63\xf5\x2a\x46\xe4\xcf\x33\xd2\x17\xfa\xab\x18\x93\xff\x90\xaf\xfa\xeb\xed\x88\xfc\x65\x46\xfa\xb7\xa3\xfe\x4e\x92\x09\xb1\xdf\x49\xf2\xb0\x53\x5a\x8f\xde\x2c\xdc\x31\x4e\x8f\x96\x05\x5f\xa7\xe2\x37\x4d\x87\xa7\x65\xe1\x96\xb7\x65\x7b\xc0\x1e\x1b\xb2\x52\x5b\x13\x23\x49\x4b\x8e\x66\xf2\x1e\x96\x24\x15\x2b\x09\x97\x78\x7a\xd9\x16\x65\xdc\xed\x1a\x55\x42\x0c\x5d\x4c\xf3\xed\xd6\x26\x7a\x71\xca\xbd\xd4\x57\xc5\x7a\x53\xe4\x34\x17\xb5\xf4\x0b\x5e\x41\x88\xd9\x3d\xc9\xfb\x8a\xc9\xd7\xf3\x4d\x96\x0a\x2f\xed\x5d\xb1\x60\x4b\x46\xf9\x4e\x8d\x40\x43\xeb\xaf\x19\x00\xbf\x6e\xe9\x3f\xbf\x56\x15\xbd\x4b\xef\xaf\xe8\x59\x31\x4f\x25\xc8\x62\xe5\x77\x80\x51\xb3\xf2\x8d\xcf\xc6\xa4\xc3\x0f\x9b\xd2\xed\x43\xf9\xd2\xdc\x82\x20\x08\x93\x9b\x50\x3e\xa8\xdd\xa1\xf8\x30\xb0\x15\xd5\xa3\x4a\x36\xe2\x11\xb9\x27\xf5\xb3\xfa\x60\x86\x08\xdb\xd3\xbc\xa8\x4f\x4a\xa0\x2e\xf7\xe9\x4b\xe5\x17\x5e\x57\xa4\xa6\x0f\x76\xac\x7d\x53\x1f\xf5\x40\x5d\x1e\xb9\x8d\xeb\x89\x2a\xeb\x07\x4f\xd6\x21\x77\xb7\xf7\xae\x32\x04\xb3\x21\x37\xbc\x9f\xa0\xfb\xe2\xf3\x46\xff\x2a\xbb\xe3\x25\xa8\x2c\x6e\x3f\x91\xb1\x9c\x28\xf7\x1e\xf4\x58\x65\x18\xbb\xde\xba\x1c\xc1\x7e\x21\xe3\x63\x7f\xd4\x2e\x97\xdd\x3d\x64\x2c\x27\xd2\xbe\xaa\xaf\x3f\x32\x9a\x2d\xc8\x58\x4e\x25\x3c\xaa\xd4\x8f\x29\x07\x33\xca\xb1\x9c\x49\xfd\x12\xf6\x8a\x5f\x93\xb1\x37\x85\x2f\xf8\x75\x30\x2a\xf9\xf9\x3f\xdc\xa0\xcc\x57\xff\x00\x90\xb1\x9c\x3a\x3f\x25\xcc\x53\x1b\xdd\x5f\xbd\xcc\x2d\xa3\x7c\x4d\xaf\xaa\xeb\x6b\xca\xc9\xb1\x9c\x4b\xf3\x66\x16\x83\xd1\x5c\x9c\x33\xd0\x1d\xd7\x0e\xc1\x8f\xc7\xb0\x28\x8d\x0f\xaa\xc4\xe7\xfc\x26\x2f\xee\x72\x72\x2c\xe7\x54\xbf\xa8\x2f\xf2\x44\x1c\xcb\x79\xfc\x8e\x9a\x6d\xea\x8e\xcc\xb1\x9c\x46\xf7\xae\xbe\x7f\x9f\x96\x6a\xbb\x1e\xcb\xc9\x34\x6f\xe1\xb7\x8f\x29\x4f\xd7\x25\x39\xfe\xb3\x97\x43\xa5\x99\xfe\xe8\xe0\xa2\xe4\xf8\x3f\xa0\x47\x26\xd6\xa8\xaa\x85\x66\x1b\x39\x72\x39\x9f\xea\xd9\xec\x8f\x7c\x9e\x0a\x72\x0c\xfb\x0f\x9e\xfb\x9d\x70\x3e\x4e\xbf\x6c\x38\x2d\x4b\x56\xe4\xe4\xe9\x28\x98\x10\xf7\xc5\xc2\x72\x38\xe8\x00\xc6\x8d\xfa\x56\x2c\x82\xb3\x20\x2f\xbd\x1a\xac\x30\xa2\x5c\x99\xf5\x3b\xaa\x73\xc8\x39\x64\xc6\x19\x46\x2c\xbc\x19\x54\xdf\xbd\x19\x2d\xd4\x8d\x71\x95\xce\x6f\xae\x2a\x9e\xcb\x91\xfd\x4e\x0e\xd7\x55\xc5\xb2\xc5\xc7\x2c\x15\xf2\xbe\x01\x06\x8d\x8e\x07\x1a\xb2\x0a\x4a\x2a\x2e\xd8\x9a\x16\x95\xc0\x81\xbd\xf1\xae\xc6\x30\x60\xcb\xb8\x6f\x52\x1c\xad\xfc\x91\x17\x6b\x56\x5a\x8c\x55\xbf\x0e\x39\x2d\x8b\xec\xd6\x73\x09\xdc\x82\x1e\x0d\xc5\x8a\xe6\x60\x75\xda\x5e\xf5\xbb\x4a\x80\x8e\xdf\x87\xab\x92\xf2\x5b\x6a\x05\x48\x23\xcc\x94\xad\x66\xed\x7b\x4c\x11\x2e\xc8\xa2\x98\x57\x4a\x02\x12\x8a\xd0\xfb\x8e\x6d\xc4\x86\x85\x2a\x12\x17\xf8\x61\xbe\x4a\x79\x3a\x17\x94\xbf\x4e\x45\x3a\xe9\x8d\x76\x08\x37\xfb\x9a\x93\xc1\x20\xff\xe3\x31\x2e\x86\x8b\x54\xa4\xa4\xdf\x1f\xe4\x38\xb7\xac\xb5\x66\x7e\x1e\x53\x3c\x42\xbb\x1a\x47\x45\xf3\xd8\x74\x37\x1e\xdc\xc4\xd7\xcc\xfc\x8d\x0d\xb2\xfd\xae\xbd\xa3\x02\x7d\xd7\x2c\x62\x0b\xf8\xdf\x95\xa7\xa6\xe2\xae\x85\x3c\x7e\x9d\x0a\x3a\xcc\x8b\x3b\x08\xbe\x25\x31\x7c\xb9\xbc\xaa\xf2\xf7\x80\xf0\xef\x76\x8a\x93\xf8\xe4\xa7\xc5\xe0\x09\x2e\xc9\x9f\xdd\x4e\xa8\x5a\xe2\x36\x6b\xa6\x8c\x8d\x66\x4d\x44\x14\x51\x42\xe8\x76\xeb\x38\x2b\x32\x2d\x1d\x0a\x5a\x8a\x80\x8b\x94\x05\x14\x48\x91\x03\x7f\x6c\xbb\xb5\x8f\x17\x10\x7e\x22\x8a\x6a\x09\x89\x7d\x7f\x47\xc5\xaa\x58\xcc\x5c\x8d\x73\xe3\x40\xcb\xe0\xfc\x39\x39\x1a\x63\x46\x46\x9e\xc3\xed\x13\xf6\xbc\x38\x61\x03\xf2\x0c\xb1\x65\xcc\x13\x06\xf8\x51\x14\xf1\x84\x0d\xc6\x80\x24\xa0\x87\x9c\xb0\xce\x15\xa7\xe9\x8d\x73\x11\x65\x9b\x58\xee\x69\xe2\xb8\xa5\x89\x3f\x1f\x6c\xe2\xe8\x78\x6f\x23\xab\x3a\x17\xfd\x77\x4a\xc0\x46\x38\x27\xc9\xac\xe9\x11\x8b\x08\x23\xf8\xa6\x09\x1b\x3c\x1d\xf0\x19\x4e\x89\x09\xf7\x21\x93\x46\x32\x69\x0d\xd3\x0b\xef\x63\xc8\xc2\xaf\x4b\x78\x3b\x96\x6f\xca\x92\xdc\x76\xa2\x88\x22\x6d\x2e\xc3\xf2\x6e\x31\x2d\x14\x0b\x66\xd2\xef\xef\x8c\x09\x71\x8a\x5a\x46\xba\xa8\x8d\x14\xe7\x7a\xb9\x8c\x0b\xac\xa3\x12\x66\x13\xd1\x6f\x89\x48\x38\x61\x83\x38\x27\x71\x71\xc4\xd0\x93\x12\x1d\xe5\x7f\x2c\x67\x53\x46\xf8\xa0\x9c\x14\x84\x5b\xce\xee\xb7\xe0\xe7\x6b\xca\x06\xe5\x84\xc1\x6e\xde\xec\xb7\x98\xf8\x97\x18\x05\x0f\x3b\xfc\xbb\xd7\xe6\x61\xa7\x9d\x02\xff\x52\xd1\x8a\xbe\xa4\x2c\xbf\x86\xab\x84\x2e\x2c\x3b\x50\x2d\xc8\xdf\xe5\x77\xe5\xc5\xe0\x9d\xf1\x86\x02\xa2\x7a\xeb\x2f\x14\x6a\xb0\xa5\x40\x9e\xa2\xc9\xe6\x02\x22\x28\x58\x3f\x40\xd7\x59\x71\x95\x66\x1f\x74\x22\x3f\x44\x4d\xc3\xf2\xbd\x29\x78\x9d\x69\x4f\x9f\x7b\x6d\x1a\x97\xee\x01\xc7\x02\xbe\x24\x4f\xff\x27\x1d\x3c\x73\xc4\xed\x54\xd7\x38\xd1\x6a\xb4\x62\x08\x12\xf7\x26\xdb\x03\x73\x23\xb2\xd5\x7d\x07\xaf\x53\x57\xc0\xe1\xc1\x05\xc9\x87\xe9\x52\x50\xde\x69\xcc\x8f\x61\xb6\x61\xcb\x4d\x6c\x4e\xac\xf3\x2f\xb9\x6f\xe6\xbd\xf4\xda\xdc\x6a\x75\x09\x13\xd5\x34\x36\x52\xdc\x3d\x35\x75\xd8\x32\x4e\xad\xdc\xc0\x78\xad\xcc\xe2\xe6\x32\xa0\x0e\x27\xa5\x89\xf7\x7f\x5b\xdc\x80\xb1\xf1\x07\x05\xe0\x26\x5e\xb2\xd5\x65\xaf\x88\xdb\x02\x27\xd5\x73\xd3\xca\x49\xa5\x61\x9a\xfb\x3a\x20\xcf\x8c\x22\x64\x2c\x48\x9a\x54\x83\xf1\x0c\x45\x11\x8f\xd3\xa4\x9a\x61\x81\x65\xca\xf1\x0c\x97\xf0\xf0\x74\x86\xbc\xbd\xd5\x7b\x7c\x12\x9b\x43\x19\xae\xab\x52\x00\x5a\x7d\xf8\x6b\x6c\x75\x98\xc6\x3b\x1f\x80\x14\xc6\x1a\x7b\x6f\xab\xce\x03\x9c\xda\xff\xbd\xb1\x0a\x08\xd0\xdc\x93\xdf\x8e\x74\x2a\xec\xb3\xb8\x37\xd2\xa1\x45\xca\x1f\x0a\xbe\xd7\x30\x7b\x6f\xbb\xdf\x8e\x74\x04\xb0\x5a\x1b\x2a\xd6\x6f\x3e\xa7\x59\xab\xf6\xa7\xda\xa0\xa0\xf9\xa9\x80\xa9\xd9\xdb\x7a\x8b\x69\x6d\x83\x60\x1f\x43\xa8\x64\xd4\x09\x76\x9b\x16\x5c\x18\x9f\xca\x05\x99\x6b\x1d\x27\xeb\xe4\xe7\xdb\xa3\xf1\x34\xb6\xba\x3c\x05\x7e\x86\x70\x6f\x84\x26\xb1\xcd\xba\x6f\x39\x11\xfa\xf6\x68\x1c\x45\x71\x9e\x14\xf2\x72\x02\xce\x8f\x9e\xac\x9a\x94\x01\x87\xde\x4b\xfc\xe9\x50\x42\x06\x9d\x01\x3f\x40\xe2\x44\x69\x1d\xe8\x3b\xc5\x5c\x26\x62\x67\x6a\xfe\x9c\xb3\x5f\xaa\x47\x22\xd5\x35\x26\x86\x9a\x89\x21\x30\x31\x31\x0b\xc1\x62\x90\x1f\x7c\xb0\x63\x86\x5c\x5c\x32\x3d\xb5\x6c\x19\xdb\x4a\xac\xd7\x99\xbd\xc3\x39\x7a\xd6\x51\xfe\xdc\x05\x4e\x11\xa8\x0e\xe9\xc3\xec\x95\xe8\x94\x49\x31\x38\x9e\x11\x8e\xe5\xc3\xd3\x99\x8d\x9a\xf0\xf8\x54\x5c\x5e\x53\x01\xe4\xdb\xdb\x7c\x59\x34\x80\xad\x39\x27\x2b\x1f\x62\xe1\x67\x48\xf1\xbe\x25\x58\xa8\x4d\x20\x7a\xf0\x4c\x42\x84\x71\x41\x34\x01\x36\x73\x76\x0f\xaa\x2a\xae\xac\x07\x69\x1a\xeb\x00\xa1\x07\xf8\xfd\x57\x54\x37\x07\x85\x86\x02\x3d\xe4\x71\x81\x99\x0d\xe4\xb0\xde\x2b\x1b\xf9\x97\xa4\xab\xf2\x96\x6b\xb9\xae\xc3\x7b\x59\x93\x38\x30\x67\xbf\xa8\xeb\xf3\x61\x87\xdd\xeb\xfb\x74\x4d\xdf\xfa\x57\xa8\x4d\x2d\x81\xb5\xce\xe9\xa2\x9a\x7b\x1c\x58\x39\x4e\xc7\x5f\xe2\x33\xd8\x75\x9b\x98\x63\x91\xf0\x19\x16\x8a\x19\xeb\x1a\x3b\x28\xf1\x29\xe7\x2b\xba\xa8\xb2\xe6\xce\xf7\x7d\x20\x79\x95\x25\x74\x16\xec\xd8\xb4\x29\x2f\xff\xb1\xa8\xba\xa9\x10\x74\xbd\x11\x74\xd1\x15\x45\xd7\xb4\xd1\x4d\xf3\x6e\xaa\xa9\xb8\xbc\x9b\x76\xa1\xc6\x6e\xdc\x1f\xd0\x41\x1f\x75\xc5\x2a\x15\xdd\x45\x41\xcb\xfc\x1b\xd1\xa5\x5f\x58\x29\xfa\xa8\x63\x65\xe7\xfc\xdf\xd6\xce\xb2\xe0\xdd\xb4\xab\x76\x7d\x7b\xa3\x3e\x48\x69\x2c\x10\x9b\xa6\x1e\xc0\xd0\x91\x9f\x0b\x34\x49\x35\x33\x5c\xbf\xb7\xe0\x14\x9e\x07\x59\x39\xc5\x5f\xbf\xe5\xa2\xc8\x7f\x33\xc0\xd3\x6d\x12\xab\xce\xd1\xec\xf0\xf3\xfc\x04\x2e\xe1\x7a\x91\xa4\x25\xef\x0c\xf7\xc6\x84\x10\xe3\xe5\x58\xaf\xb7\x98\x21\x73\x4f\xc5\x08\xc0\x40\x4b\xd1\xc1\x00\x1b\x5d\xe7\x7a\xfb\xee\x6e\x05\x3d\x47\xb6\x8c\x95\x92\x90\xbe\x08\xc7\xde\xe5\xfb\x38\xfc\x71\xd2\x13\xb8\x44\x1e\x76\xe6\xce\x6a\x4c\x86\x51\x4a\x39\x41\xbc\x31\xf6\x62\x86\x45\x30\x46\x3e\xc3\xb9\x3c\x47\xb5\xf6\x81\x88\x1f\x0c\x3a\x4e\x13\x48\x49\x2a\x2c\xf8\xb8\x0d\x05\x3a\xca\x2d\x80\xd0\xa6\xcb\x27\x3d\xe5\x0f\x5c\xf9\x63\xe0\x36\xf8\x8c\xcb\x01\xe7\x32\x90\xc2\xec\xf0\x75\x8b\x30\xc3\xb6\x77\xe5\xbc\x36\xc0\xf8\xeb\x3b\x48\x1e\x17\x70\x8d\x8f\x4e\xfc\xc9\xce\x11\xd7\x22\xe3\x60\x5b\x75\xec\xed\xa1\xe8\xc5\x60\x93\xa5\x01\x9d\x81\x4b\x43\x62\xa7\x9d\x1a\x83\x84\x94\xd3\x98\x93\x42\xd6\xad\x54\xc3\x2c\xf5\x65\xc8\xed\x32\x8a\xd2\x2e\x90\x61\x82\xc8\xac\x28\x49\x67\x93\x16\x1e\x4b\x01\x37\xe8\x18\xdb\xce\x16\x08\xe7\xdf\x32\xe3\x38\x2e\x3f\x62\x1d\xea\x69\x05\x55\xce\x9e\x32\x23\xa3\x93\xec\x79\x75\x92\x0d\x06\x88\x26\xd9\xcc\xeb\x7b\x36\x70\x5e\x8a\x13\x8e\x05\xa6\x1e\x81\x7e\x19\xce\x27\x06\x4b\xd1\x63\x42\x1a\x13\x8b\xc2\x99\xc3\x2c\x9c\x1d\x65\x8e\xe7\xe6\xb3\x20\x57\xfa\x4a\xd2\x7c\x7a\x9b\x1b\x75\x28\x29\x64\x0d\x82\x14\x89\xaf\x9b\x10\xe7\xa4\x48\x8e\x67\x68\xca\xc8\x68\x52\x49\x4c\x42\xbb\x84\xd8\x6e\x63\x4e\x7a\x80\x61\x60\x97\x6a\x46\xa4\x3d\x78\xba\xa8\x16\x0c\x8f\x47\x08\xf3\x19\xec\xad\x3b\x32\xc2\xa7\x64\x84\x25\xdc\x3a\x27\x23\xfc\x81\x8c\xf0\x0b\x32\xc2\x37\x64\x84\x2f\xc8\x08\xbf\x22\x23\xfc\x8e\x8c\xf0\x27\x32\xc2\x1f\xc9\x08\xff\x4c\x46\xf8\x35\x19\xe1\xf7\x64\x84\xdf\x92\x11\x3e\x23\x23\xfc\x86\x8c\xf0\xaf\x64\x84\xbf\x27\x23\xfc\x92\x8c\xf0\xe7\x43\x92\x52\x67\x90\xa0\x6e\xbb\xd7\xa7\x2f\x3f\x7f\x67\xa3\x3b\x6b\x5d\x0d\x63\xe4\x1c\x38\x14\x56\x49\xe7\x81\xfe\xc9\x25\xbd\xa5\xb9\x78\x95\x66\xd9\x55\x3a\xbf\x29\xc9\x03\xcd\x17\xf2\xc6\x05\xaf\x70\x93\x64\xb6\x33\xc2\x58\xb6\xa6\x86\xd7\xf4\x76\x11\xc4\x5c\x92\x5f\x4a\x57\x61\x5a\x89\x82\x57\xb9\xed\x91\x49\x38\xaf\x05\x6b\x0a\x2e\xe0\x90\x74\xdd\x6e\x1f\x76\xcd\x38\xc4\x7e\x1e\xc3\xda\x04\xc4\x4f\x91\x52\x97\x7e\x12\xd9\x9b\x79\xb2\x2f\xb3\x07\xbc\x46\x66\x2c\x45\xfe\x52\xce\x43\x58\x9b\x4e\xdc\x6e\xef\x6d\xae\xd3\x7c\x51\xcf\x73\x9a\x2f\x5c\x0e\x88\x38\xf8\xa9\xca\x4f\xbf\x6c\x18\xa7\x8b\x0b\x35\x65\xea\x1b\xaf\x25\x83\xc3\x14\xa5\xca\xed\x97\x7e\xa1\x66\xf1\x34\x0f\xe4\xd3\xbf\x0e\x06\x8a\x22\xe2\x76\x9e\xc1\x86\xc6\x5f\x05\xde\xb6\x04\x7c\x78\x49\xf3\x85\x24\x92\x74\x40\x9a\xda\x20\x2f\x03\x6e\xf2\x76\x5b\x68\xd6\xc5\xc6\xf0\x97\x75\xbc\xe4\x7a\xe7\xd0\x21\x25\x26\xd8\x54\x7e\xf7\x4f\xb5\xdd\x2b\x75\x01\x4a\x15\x07\x20\x54\xa6\x37\xbb\x59\xd7\xd4\xb3\xae\x89\xcd\xc0\xa6\x31\xb5\x11\x1b\x14\x71\xa6\x7b\x14\x23\x34\x89\x3d\x53\xd1\x97\x83\x41\xcb\x69\x30\x8e\x98\x10\xfe\x7e\x30\xc0\xb4\xb5\x6d\x80\x8a\xeb\xda\xc5\x0c\x3a\xd6\xe7\xa6\xce\x4b\xc1\xd9\xf5\x35\xe5\x71\x1f\x06\xda\xc7\x12\x89\x44\xe1\x56\x52\xaa\xe3\xa0\x1e\x45\xc3\xa5\xfc\x62\xab\x81\x85\x19\x83\x02\x57\x91\x37\x15\x1d\x1d\x58\xef\xd9\xa3\xe1\x61\x6e\x17\xf7\x1b\x6a\x35\xf4\xd5\xb1\xee\x4a\x3a\xbc\x7b\x45\xbb\xa9\xe5\x5d\xf7\x91\xef\xb2\xa3\x06\x05\xea\x08\x28\xdf\x57\x3d\x18\x00\xc8\xde\x77\xa1\x82\x2e\xa0\x7f\xdd\x2b\x3a\x4f\x2b\x79\x35\x2a\xb4\x0f\x4c\xf4\x2d\xde\x67\xf5\x19\xe4\xe8\x96\xcb\xfd\x06\xf0\xed\x7d\xea\xd1\xed\xf6\x6b\xfb\xb5\x5c\xfe\x86\x8e\xa9\x33\xd0\x1b\x43\xa4\x13\x14\x5a\xa5\x70\xdf\x2a\x45\x73\x77\x05\x44\x1e\xe9\x8d\x30\xb7\x66\x41\x78\x8c\x30\x3b\x3a\x02\x8c\xba\x97\x7f\x45\xdf\xe6\x66\x7d\x2c\x8a\xec\x77\x09\xc2\x53\x56\xc1\x79\xf9\x60\xce\xcb\xfe\xcb\x0f\x0b\x42\x25\x00\xe3\x84\xca\xcb\x2f\x27\x34\x39\x0e\x35\x4e\x24\xc4\x89\x8d\x1d\x12\x1f\xfe\x5c\x84\x67\xf2\xc5\xbf\xa5\x0d\x59\xab\xd7\xc8\x82\x2e\x69\x9d\xe2\x44\x0f\x37\x83\x41\xc7\x31\xd5\xeb\x08\x81\x16\xfb\x28\x4c\x24\xff\xf6\xe9\x34\x3f\x7a\x3a\x19\x21\x5c\x90\xa7\x27\xc5\xf3\x5c\xc5\x5d\x4b\x8a\xa3\xa7\x3e\x2e\x52\x84\xfd\x30\xe4\x8a\x1e\x09\x50\xe5\x70\xa1\xf3\xd9\x70\x0e\x02\xc3\x18\xc2\x05\xf1\x36\x22\x0d\x3d\x5c\x78\x1d\x6c\xd2\xa0\x98\x7b\x1d\x14\xdf\x8e\xa7\xe2\x68\x2c\x3b\x98\x93\xf1\x49\xfe\x5c\x9c\xe4\xb0\x5b\xf2\xa3\xb1\xdf\xc1\x7c\xa6\x05\x86\xb5\xd9\xe5\xe0\xe3\x54\xa1\x85\x4c\xa1\x83\x2c\x39\x9e\x61\xcd\xfb\x83\x5b\x7e\x6a\x29\x33\x43\xef\x06\x73\xae\xd4\xb3\x0d\xc0\x8a\x91\x1d\x53\x4c\x75\x60\xfa\xde\x18\x57\xc1\x68\x21\x0a\xf8\x55\x56\x77\x91\xf6\xca\xf8\x23\xf8\xf7\x34\x0e\x37\xce\x2d\x4e\x84\x24\x7f\x74\x9c\x56\xd8\x11\x1f\x24\x60\xad\xef\x8a\x77\xff\x6d\xbb\x42\x36\xff\xf5\x3b\xa3\xd6\x59\xf4\xf0\xe9\xff\x6b\xbb\x63\x64\x76\x87\x95\x44\xb6\xb0\x4d\x3f\x9a\x7b\x2a\x4b\x05\xe5\xfe\xf4\x39\x00\x21\x2b\x81\xcf\x7e\xf9\x9f\x2d\x60\x69\xe8\xc4\xfd\x36\x48\xa3\xe5\x45\x96\x8e\xcf\xa7\xc6\x6c\x70\x32\x72\xec\xd1\x51\x14\x55\x71\x9e\x14\x47\xc0\x01\x8f\x3d\xfc\xdd\xb8\xab\x1b\x8f\x10\xc2\x89\x26\x4b\x66\xbb\xdf\xda\x07\x9a\x3c\xad\x01\x3d\x18\x72\x6c\x98\x69\x72\x12\xe4\x1d\x20\x44\x68\x6a\xf0\xda\x43\x7a\x2e\xf7\x36\xca\x89\xd0\x8c\x08\xd9\x28\x23\x42\x36\x5a\x10\x91\x3c\x95\x7b\x40\x24\xcf\xe4\x1e\x70\x2c\xa2\xed\x36\xc5\x15\x59\x42\x84\x70\x1f\x2f\x77\x31\x3b\x2a\x64\x42\xd1\xa8\x6e\xca\x9c\xe5\xf4\x7a\xc2\x70\x81\x70\x69\x18\xea\x00\xb7\x55\xff\x15\xad\x65\xa3\x4a\x42\x75\x20\x50\xd0\x8a\xd0\xd5\xe0\x59\x27\xf8\x96\xcd\x7a\x84\x5c\x5b\x59\x8b\x4d\x25\xcc\x8b\x6f\x01\x47\x5f\x22\x8d\xf3\x60\x52\xde\xff\xbb\x26\xa5\x72\xfb\x22\x8d\xa2\x14\x67\x41\xff\xf1\x5c\xcf\x51\xe6\x26\x66\xde\x32\x31\x95\x99\x98\x6a\xef\xc4\x28\xb5\xc8\x10\x2b\x56\x62\xf6\x41\x81\x37\x64\x3e\x78\xd6\xc9\x92\x8d\x44\x15\xae\x61\xfb\x5d\x23\x4c\x49\x96\xcc\xcd\x04\xae\xc9\x22\x5e\xe9\x7e\xcc\x07\x25\x21\x64\x8d\xb2\x64\x3e\x23\x2b\x0c\xe5\x98\x6b\xe6\x36\x5c\x83\xf9\xe0\x4f\xb3\x60\xe6\x0d\x06\xb2\xc6\x23\xbc\x92\x58\x27\xb0\x16\x6f\x11\x6e\xcb\x34\xc7\x25\xda\xc9\x3d\x33\x37\x43\xe3\x14\xb0\xe1\x2c\xbb\xf0\x88\xbc\x38\x5c\x33\x85\x55\x6b\xc2\xc5\x5b\xb7\xb7\x16\x6b\xb5\xda\x08\xae\x86\x3d\x14\x62\x0d\x43\x97\xd5\xaf\xd2\xb2\x59\x77\xa8\x57\xab\x06\x51\x17\xce\x68\x02\xc0\x75\xb1\xce\xd0\x3a\x1b\x0c\xb0\x31\x0d\x32\xe4\x43\xe7\x51\x8d\x86\xa9\xdf\xd3\x33\xb9\x2d\xa0\x7b\x31\x45\x93\x5e\x6c\xac\xb5\x24\x15\xb2\xdd\xf6\xa8\xa2\x07\xe0\x49\xb1\x3c\x51\x14\xe9\x44\xdd\x29\x6d\x8e\x11\x82\xe0\xa6\xe6\x7e\x1d\x44\xcb\x32\xed\xcc\x3a\xdf\x96\xa3\x63\xf8\x85\x70\x0b\xe8\x41\x3e\xe8\x89\x99\x34\x69\x70\x3c\x2f\xaa\x5c\x50\xae\x83\x0e\x9a\x37\xac\x66\x78\xb2\x0a\x8e\x2f\x2e\xf1\x31\xc2\x01\xb5\xa4\xc3\xb7\xd4\xe8\x23\x7b\x6b\x36\xc9\x2b\xf0\xc3\xdd\xa6\xdc\x2c\xa2\xa8\xc1\x0e\xd4\xa3\xd8\x21\x88\x70\x7e\x79\x40\x51\xbe\xd6\x01\xcd\xd3\x72\xec\x6c\x22\x9a\xfc\x6c\x9a\x2f\x00\xeb\xa6\x0b\xf0\x24\x56\x54\x92\x2c\x92\xb4\x9a\x26\x00\x30\x93\x24\x80\xe0\xf7\x0f\x39\xd1\xcc\x65\x50\x60\x61\x79\x9a\x65\xf7\x60\x2f\xc8\x10\x5b\xc6\x4c\x62\xfe\x8a\xef\xe7\x05\x76\x09\x98\xbf\x75\xce\xaf\x3e\xb1\xe6\xd6\x35\xdb\xbf\x50\x12\xa6\xee\x6f\xe1\xde\x78\xcc\x6c\xe3\x99\xb6\x46\xcf\x3a\xc7\xd9\xf5\x2a\xad\x03\x13\x4b\xac\x82\x9e\xaa\xc4\xbc\x7c\x76\x06\x58\xf0\xab\x25\x08\x09\x04\x8d\xa4\xd5\x6c\x25\x5a\x5a\x9a\x3a\x62\x43\x95\x99\x38\x23\x21\xc3\x84\x57\x42\xa6\xb8\x2e\xad\xe2\x50\xac\x29\xe7\x02\x84\x50\x4b\xd4\x0b\x23\x4b\x37\xbb\x1f\xd6\x31\x46\x38\x47\x72\xf9\x9c\x49\x59\x5d\x6c\xc5\xd0\x43\x1e\x33\xb7\xa6\x50\x58\x92\xdc\x66\x21\xf6\x94\x6e\xc9\x0f\x3d\x0d\xa0\x59\xf3\x4c\x3b\xae\x4c\xed\xaa\xb0\x0a\x58\x16\x4e\x3e\xce\x39\x53\x73\x53\xc3\xac\xda\xc4\xa8\xed\x08\xa1\xf1\x1f\x5c\xbf\xaf\x72\x9c\x92\xbb\xc1\xc0\xb0\xb6\x5b\x00\x2e\x0a\xd2\x80\x84\x97\x38\xa3\x6a\x9a\x99\x01\xb4\x5e\x23\x1d\x4f\x80\xba\xd0\xae\x87\x1d\x76\xd2\x76\x43\x95\x78\x84\x5b\x6a\x7f\xe4\x9a\x4a\xbd\xd5\x70\x10\xfb\x80\xa9\x6e\xcb\x30\x4f\xc4\x80\x94\x56\xa3\xc2\xdc\xb7\x62\xe6\x87\x3b\x6e\xeb\xb1\x38\x1a\xe3\x12\x01\x40\x10\x8f\xdc\xaa\xb8\x37\xb2\x6c\x2c\xe8\xb1\x3e\x87\x7b\x76\xfb\xa3\xec\x19\xf0\x0d\x77\xc0\x89\x46\x9e\xb0\x99\x3a\xcc\xfa\x58\x85\x3c\xc8\xc6\x7e\x7d\x8c\xd1\xeb\xc3\x9e\xe0\xdc\x85\xe0\x2d\x68\xc5\x7c\x85\x53\xa3\x3a\xd2\x9a\xaf\x55\x8e\x17\xe2\x6f\x82\x8c\x3c\xb7\xd0\x56\xc9\xc1\x67\xe7\x1a\x79\x55\x6d\x97\x9f\x88\xe7\x5c\xad\x2f\xc8\xb9\x12\x31\xfb\x96\x21\x50\xc7\xeb\x18\xc5\x38\x31\x78\x06\x33\x5b\x48\x3c\xd6\x08\x66\x65\x32\x50\x5a\xf2\xe1\xe9\x0c\x67\xf0\x60\x30\xb0\x1a\xd0\x73\x44\x55\x8e\x53\x5c\xe1\x42\x12\xbc\x19\xda\xed\xa8\xd9\x2a\x23\xeb\x96\xa1\xfd\xb8\xa8\x65\x6a\xdb\x3b\xcd\xb5\xda\x8f\x72\xed\xaf\xba\x51\xc6\xaf\xd6\xf7\xa1\x56\xdb\x09\x7b\x00\x98\xa9\xbc\xad\x08\xda\x2f\x3b\x50\x7d\x79\x64\x90\x12\x1c\xf5\xda\xc1\xd1\x43\x73\x6b\x28\x89\x4f\xdb\xca\x63\x4e\xde\xa5\x62\x35\x5c\xa7\x5f\xe2\x11\xa6\x47\x22\x00\x3b\xae\x63\xb5\xb2\x9e\x3e\xee\x01\x2e\xbe\xbd\x26\xf7\x23\x77\xb7\x0d\x5f\x88\x35\x86\xb6\xb9\x46\xa9\x9d\xe4\x00\xf2\x1f\x82\xe8\xba\xde\xf6\x43\x68\x70\x8c\xa6\x7c\x03\x69\x1e\x74\x3d\x6b\x00\x2e\xdf\x68\x9a\xac\x39\xab\xf4\x8b\x30\x2c\x7a\x23\x30\x00\x5c\xa9\xc3\xa7\xca\xdd\xca\xa4\xe5\x56\x1b\x1d\x34\xf0\x35\x68\xe8\x1e\x23\xdf\x07\x25\x90\x3a\xc5\x34\x5f\x4c\xbe\x60\x00\x88\xe5\x44\xa7\x9e\x43\xea\x68\x87\x75\x5b\xe5\xe4\x41\x35\xb2\x98\xbc\xc1\xf3\x62\xbd\xc9\xa8\x7c\xfe\x75\x87\x25\x46\xfc\x01\x4b\x8c\x66\xf2\x02\x03\x0b\x6a\x72\x83\xcd\x1c\x4c\x2e\x70\x9d\x2f\x36\x79\x85\x2d\xa3\x6a\xf2\x0e\xfb\xac\xa0\xc9\x27\xec\x69\x74\x7f\xc4\x70\x2b\x4f\x7e\xc6\x86\xe4\x9f\xbc\xc6\x86\xd0\x9d\xbc\xc7\x3e\xfd\x34\x79\xab\x5f\x27\x67\x38\x2b\x8a\x4d\x39\x79\x10\x85\x48\xb3\xc9\xf7\x38\xa7\xa5\xec\xe9\xcb\xdd\xce\x3a\x45\xf1\x41\xdb\x41\x0b\xe8\x00\x08\x3a\x13\xe8\xcf\x43\x25\xe4\xda\xe0\xcf\x0d\x13\x01\x9d\x22\xb1\x10\x6d\xaf\xf0\x03\xf9\xdc\x71\x86\x03\x3f\x28\xe3\x84\x45\x7a\x7d\x04\x51\x71\xbf\xca\x82\xad\xd5\xee\xe0\x91\x80\xb5\x97\xb7\x94\x0b\x36\xd7\x4a\xaf\xbc\xcd\x15\x55\xe8\x1b\xc0\xe0\x3c\xed\x1e\x3c\xfa\x86\x67\xd0\xfd\xe7\x0d\xbd\xff\x67\x97\x95\x5d\x4e\x7f\xa9\xe4\xa9\xed\x07\xc1\x8c\x6c\xbb\xe0\xf1\x27\x5d\x2c\x74\x94\x53\xf0\xfd\x45\xe4\xb5\xc9\x96\x71\x43\x12\xc9\x11\xe4\x3d\x5d\x5c\xd3\xb8\xc0\xaa\x1c\x47\x9e\xc7\xd9\x5b\x1b\xc2\xdc\x8a\x0e\xd2\xc1\xa0\xad\x14\x44\x27\x57\xae\xb0\xda\x5a\xca\xbd\x32\xaa\x44\x8e\x70\xe1\xb5\xa4\x5a\xc9\xdb\x5b\xd1\x25\x64\x1b\xa0\x2e\x53\x9b\x4e\x99\xa7\x6c\x99\x53\x98\x19\x98\x0b\xeb\xae\xcc\x2f\x49\xd3\xb6\xd8\x82\x76\x26\x87\x77\x69\x76\xa3\x7d\x5e\xb8\x42\xa2\xd8\x94\x05\x17\x2d\xd1\x43\xd2\xb9\xf2\x56\xa0\x0d\x54\xcd\xde\x31\x2e\xe5\x0f\x6e\x9b\x50\x45\xb4\xb4\x41\x2a\x35\x0f\x6c\x93\x8a\x95\xff\xce\x69\x29\xab\x86\x94\xc7\xb7\xd8\xde\xcd\xb5\x66\x65\xc9\xf2\xeb\xee\x0d\xbd\xf7\x1c\x4e\x4b\x88\x38\xda\x7a\xdd\xc2\x39\x19\x9d\xe4\xcf\x39\x70\x7a\xd9\x32\xd6\x1a\x42\x49\x3e\x43\xc3\x1b\x7a\x1f\xe0\x94\x01\x1f\x51\x8f\x8a\x0f\x14\x1d\x90\xf0\x19\x79\x60\x8b\x2f\x13\x8e\x25\x40\xa0\xf8\x36\xcd\x2c\x42\xaf\x5c\xaa\x2f\x33\xe5\x4c\xdd\x70\x41\x77\xad\x6b\x5d\x63\xf2\xab\x0b\x69\x45\xe7\x37\xf2\x5d\x76\xc9\x0d\x06\x86\xb2\x67\x1c\x22\xc9\x01\x21\x1e\xb2\xc5\x17\x3d\x80\x8e\x08\x3a\x2d\x7b\x0c\x9f\x31\x1d\xca\x3b\x5d\x82\xfe\xc0\x7b\x59\x9a\xdd\x34\x77\x82\x8e\x34\xe2\xb1\xd4\x47\x06\x4b\xaf\xfb\xd2\x51\x77\x4f\x22\x66\x1d\x2e\x1b\xd0\xcc\xa0\x5b\x56\x32\x11\x73\xdc\xef\xeb\x78\xff\xb0\xb7\xbc\x95\xc7\xf5\x5d\x09\xa3\x6f\x4a\x58\xa9\x5e\x9f\x16\x06\xc2\xfc\x7e\x9e\xd1\xee\x82\x0a\x70\x57\x33\xe9\xf6\x07\x62\xd0\xef\x3e\x3f\x92\x0f\x70\x8e\x25\xc6\xe2\xb4\xe4\x0f\x79\x45\xd2\x64\x46\x42\x13\x3e\x9b\xfd\xae\x16\xa1\x9f\xae\xf9\x9d\x21\x5c\x4c\xcc\x16\x6f\x56\xa8\x45\x3b\xe5\xa1\xa8\xa9\xa9\xe7\xa4\xad\x15\xed\xf1\xad\x36\x93\xb2\x78\x00\xfb\xf3\x01\x31\xdd\xd9\x21\xec\x3a\x9e\xa3\x5d\x6d\x1b\x42\xb7\x1a\x58\xac\xef\xb8\xc3\x9c\x64\xaf\x8f\x26\x49\xad\xa0\x4d\xec\x38\xfa\x60\x64\xd0\x3e\x3d\xb9\xf4\xb9\x38\xa1\xda\x7d\x60\x42\x67\x43\x79\x38\x88\x24\xb6\xfc\xbe\xc0\xac\xec\x17\x3e\x07\xa1\xb0\x61\xc8\x8c\x78\xdd\x80\xd6\xb9\x89\x7b\x26\xcf\xc1\x89\x05\xf4\x86\x21\x34\xda\x72\xc5\x87\x81\xfb\xe4\x5b\x32\xf2\x35\x3d\x93\x62\xa6\xec\x05\x64\xe7\xd0\xbc\xc8\x05\xcb\x2b\xea\x92\x48\x6f\x64\xa2\xef\x15\x08\x0b\x42\x48\x0a\x07\x54\xd1\x2b\xba\xe5\xff\x5f\x61\x96\xb4\x2a\x57\x6f\xf3\x79\xb1\x66\xf9\x75\xac\x55\x96\xbb\x5e\x50\x1e\x9d\xb9\xb6\x1c\x7e\xa9\x43\xee\x13\xd4\x5c\x1c\x8c\xc5\x03\xae\xbd\x34\x70\x83\xfe\x6f\xb7\xc2\xba\x8b\x3f\x78\x7b\xd4\x5c\x87\x81\xff\x73\x73\x48\x9e\xe7\xce\x7d\x98\x9a\x7e\x75\x56\x3a\x22\x66\x72\x36\x30\x78\xb6\xb4\xea\xc7\xf9\xd7\xdd\x15\x6d\x80\xbf\xd5\xbb\x4e\xe2\x15\x1b\x0c\x66\x64\xb4\xa5\xb5\x09\x0c\xbd\xeb\x18\xdf\x36\x00\x8c\x92\xa3\x23\xaf\xb8\x76\x15\xa4\xb0\x29\xdf\xa4\xf3\x6b\x31\xaa\x3b\x9e\x6e\xde\xa7\x82\xdd\xd2\xf3\x6a\x43\x1b\x26\x3a\xc0\x40\xf7\x62\xb1\x73\xa3\x3a\x6f\xa7\x01\x34\x1f\x0d\xb5\xe1\xc6\x40\x42\x67\x4e\xde\xe8\xf0\x83\xf5\xbc\x59\xf0\xc9\x83\x8e\xf9\x84\x69\x5e\xad\x35\x6a\xdc\x1b\xe3\x3b\xce\x84\x7a\x1e\xe1\x79\x91\x2f\xd9\x75\xa5\xbf\x8d\x76\x3b\xa4\x24\x89\x31\xc5\x39\xc2\x22\xce\x35\xf4\x9d\x4b\xc4\xff\x55\x9a\x65\xaf\x5a\x80\xef\x48\x85\xb8\xf5\xc2\x29\x90\x50\x25\x7b\xd4\xa1\x7b\x7b\xaf\xa9\x28\xae\x1c\x5f\xf0\x47\xc6\x42\x1f\xeb\xbd\x53\x1b\x12\x9a\x2f\x09\x8e\x7a\xaf\xe9\xe2\x82\xae\x25\x2d\x44\xcf\x20\xa2\x66\xd6\xe8\xa7\xbc\x5c\xb7\xdb\x58\x10\xaa\xdc\xf2\xc6\x23\xe4\x9c\x90\x0d\x79\x7a\x47\x04\x38\x4a\xf1\x49\xa1\x06\xff\x47\x35\x2f\xa2\x28\x0f\x96\x45\x20\xed\x54\x94\xc3\x17\xcc\x43\xf7\x66\xca\x6f\xdd\xc5\x8a\x95\x2e\x38\xa2\x72\xcd\xb6\x29\xca\x92\x5d\x65\xf4\x95\x9b\x8a\x4f\x50\xb0\x45\xc3\xa8\xee\x8e\x4e\xf6\x42\xb3\x06\xb6\xdb\x16\xb5\x52\xd1\x40\x64\x98\xc6\x00\x55\x4d\x10\x11\xae\x9a\x8b\x4a\x62\xb7\x35\xa7\x50\x54\xae\xba\xa6\x11\xf4\x7a\x2a\x9f\xb3\x6a\xc0\x1f\x96\x5a\x90\xfe\x2e\xdd\xf8\xdb\xb9\xc5\xe9\xa0\x68\x71\x3a\x28\x71\x91\x4e\x3e\x74\xdb\x96\xf8\x2f\xdb\x6d\x6f\x0c\x61\x87\xdc\xe2\x4b\xc8\xdb\x87\x1d\xd2\x67\x79\x37\x87\xd8\x19\x66\xa3\x90\xde\x08\x61\xdd\x47\x65\x9f\x6e\x5c\xe3\xca\x4d\x0e\x20\x29\xf7\xad\x80\x03\xc7\x6b\x3b\xef\xf4\x3f\x01\x6b\xa6\xd0\xd2\x5b\x13\x28\x7d\xdc\xff\x5f\x2a\xcf\x11\x93\x04\x71\x9e\x66\xe5\x13\x9a\xdf\x32\x5e\xe4\xca\x7c\xbf\x9f\x17\x0b\x7a\xb4\x2e\x24\x21\xda\x9a\xbb\x12\x2c\x2b\x5b\xbf\xc8\x8b\x26\x65\x60\x64\x6e\xbe\x32\xd8\x0d\xb2\x66\x30\xae\x6e\x2d\xb6\xa6\x22\xdd\xfb\x21\x73\x5f\xe6\x69\x9e\xf2\xfb\xa3\x25\x4d\x45\xc5\xa9\xd7\x05\x08\x63\xde\xc7\x81\x95\x7b\x7b\xf7\xca\xc2\x1f\x94\xec\x2f\x2f\xb2\xcc\xcf\xef\xd2\x9e\x64\xec\xca\x7b\xbd\x5c\xb3\x2f\xcc\x1b\x80\xa6\xa5\xdc\x3b\xe5\xb7\x6c\xee\xd5\xae\x77\x79\xed\xfd\xc9\xbc\x58\x6f\xd2\xf6\xe4\x4a\xd0\x45\x6b\xcf\x75\x28\xaf\xd6\x6f\xda\x17\x8c\x31\xe6\x7f\x72\x4b\x79\xb9\x6f\xa6\x6f\x19\xbd\x6b\x5f\x3a\x5e\x54\x22\x18\x8e\xbf\x3d\xbe\x08\x9a\xcb\x3a\x8f\x74\x24\x1c\x97\x8b\x4a\x5c\xcc\xbd\xf2\x2a\xcf\x8a\x62\xd3\x5e\x8b\xcc\x7a\x04\x71\x66\xf7\x35\x54\xdc\x05\x4b\x97\x6e\x36\x19\x9b\xd7\xf6\x8d\x97\xf8\x44\x59\x03\x96\x47\xda\x3d\x40\x7b\xd1\x27\x46\x76\xe5\xf5\x3a\xbf\x66\x79\xe3\xbd\x25\xe3\xa6\xc8\xee\x97\x2c\xcb\x82\xbd\xb6\xe1\x74\x9e\x0a\xba\x70\x1b\x31\xf4\x9c\x60\x4c\x6f\x40\xe9\xa5\xc2\x19\x9e\xe3\x25\x5e\xe1\x05\xde\xe0\x35\xbe\xc5\xf7\xf8\x1a\x5f\xe1\x4b\x7c\x87\x4f\xf1\x17\x7c\x8e\x3f\xe0\x17\xf8\x06\x5f\xe0\x57\xf8\x1d\xfe\x84\x3f\xe2\x9f\xf1\x6b\xfc\x1e\xbf\xfd\x1a\xae\xc7\x19\x69\x80\x52\x2e\xa1\x8d\xa0\x5f\xc4\x90\xad\xe1\xe8\x0f\x4f\x65\xb7\xa3\x68\xcf\x87\xed\xf6\x61\xd7\x39\x1b\xb2\xf2\xbd\xf1\x29\x2f\x21\xd4\xd9\x50\x14\x2a\x0a\x59\x13\x03\xe9\x43\xb9\xfe\x6e\x0f\xa4\x3a\xc3\xfd\xd3\xf7\xff\xe8\x63\x08\xba\x0e\x88\xc2\xe9\xfb\x7f\x84\xf7\xfa\x6e\x1f\x94\x3b\xc3\xfd\xac\x28\x6e\xaa\x8d\x5f\xfc\x0c\x52\xc0\xcb\x2e\x5c\xf8\xfa\xbd\x5e\xe3\xdb\xe1\xe9\xbb\x97\xa7\x9f\x2e\x4f\xff\xcf\xc5\xe9\xfb\xd7\x97\x1f\x3f\x7d\xb8\xf8\x70\xf1\xe3\xc7\xd3\xf3\x28\xda\xdf\xd1\x7a\xde\x3e\x7e\x08\x31\x90\x76\x7e\x18\x1f\x9e\xbe\xff\xc7\xb0\x51\x5a\x82\xe0\x33\xd9\xe5\x0f\x72\x1f\x93\x57\xf6\x11\x9f\xc9\x8e\x9b\xd4\xd2\xa5\xbe\x70\xdb\x94\xbc\x33\x2b\x8c\xcf\x86\xaf\xd5\xd3\x27\xbd\xaf\xc9\xd9\xd0\x3e\x7e\xf2\xb2\x79\xc5\x2d\x63\xf8\xa3\xf7\xfd\x14\xf6\x35\xf9\xb9\x91\x64\x73\xbf\xf6\x3e\x69\xe7\xb3\xef\xf5\x03\x3e\x1b\xae\x29\xbf\xa6\xe4\xbd\xfa\x87\xa1\xe5\x10\xe2\x5b\xf9\x63\x0d\x5e\xf1\xd9\xf0\xbb\xcf\x6f\x5f\x5f\xfe\xed\xf4\x47\xc2\xec\xa3\x2c\x53\xb1\xc5\x9b\x82\xcb\xec\xea\x09\x9f\x0d\x59\x5e\x82\x93\x55\x66\x9e\x64\x5b\xe9\x0d\x55\x2e\xcd\x98\x7b\xc6\x67\xc3\x79\x9a\xbf\x55\x76\x89\xcc\x3d\xcb\x0d\xca\xef\x6d\xba\x7d\xc6\x67\x80\xca\x12\x06\x7f\xf8\x6c\x58\xa9\x9e\x56\xaa\x87\xaf\xcc\xfd\x44\x0a\xf7\x8c\xcf\xb4\x93\x2d\x7e\x4f\x0a\xfb\xa8\xe6\x83\x72\x41\xe6\xfa\x41\xd6\x9d\xf2\x9c\xcc\xe1\x0f\x9f\x0d\xe1\xd6\x21\x73\xf5\x0f\xef\x1a\x32\x40\x9a\x7e\xf6\xd3\xdf\x54\xf9\xdc\xff\x26\xdf\x3b\x67\x43\x5e\xe5\x6f\xf3\xd7\xba\x32\xf7\x22\x17\x0b\x0c\x29\x5f\x04\x1b\x43\x66\x7b\xe0\xda\x2b\xd8\x6b\x5d\x15\x2b\xf2\xef\x21\x80\x37\x9f\xcc\x87\xfb\x3f\x62\xf3\xe9\x87\x94\xb7\x14\xf0\x52\x31\x2b\x5f\xe9\x0b\x69\x52\x0d\xdd\xcb\x4e\xad\x9e\xbe\xd2\x49\xea\xbd\xc8\x4d\x5e\x5d\x95\x73\xce\xae\x28\x49\xdd\x33\x3e\x1b\xbe\x0d\x91\x00\xf2\xe0\x4a\x4d\x82\x2a\x6c\xa1\x89\x5f\x41\x95\xfb\xe9\xde\x1b\x06\x92\x7f\x92\x2a\xd2\x5f\xf6\x8d\x57\x39\xb9\x19\x5e\xea\x8b\xe1\x53\x95\xab\xb4\xa1\xc3\x0c\xc8\x8d\xf7\x62\xbe\x82\xe1\xc0\x8d\xfa\x37\x69\x2c\x5f\xc8\x24\x96\x2f\x74\x8a\x56\x00\xba\xd1\x0f\x3a\xd5\x6a\x9b\xdd\xd8\x47\xfd\x85\x42\x05\xd4\x96\x5f\xa5\xe5\xb9\x66\xf0\x1b\x81\xe4\x4d\x4b\xa2\xce\x0d\x6a\x11\x37\xf0\xa7\x53\x94\x5c\xfe\x46\xfd\xeb\x34\xf0\xac\x78\xa3\x24\x26\x2a\xa5\x50\x7d\x29\x5c\x3f\xac\xea\xf1\x8d\x7d\xac\x7d\xf9\xa0\xca\xf8\xaf\x3a\x87\x55\x30\xbc\xb1\x8f\xc1\x6c\xd8\x71\xf8\xaf\xfb\xa0\xbb\x2c\x87\x8d\x2f\xf7\x4f\x55\x7e\x06\xa8\x02\x40\xfa\x1b\x09\x2b\x5f\x05\x5f\xea\x10\x1e\x6e\xbc\x37\xa4\xb2\xab\x6b\xf6\x64\x87\x2d\xe3\xb3\xa1\xc1\x9f\xc8\x1b\x7c\x36\xbc\x5c\x50\x15\x74\xa0\xe0\xa4\x1a\xe6\x40\xd9\xbe\xa6\xe5\xfc\x35\x9d\x17\x3c\x15\x00\x84\x2e\x05\xb8\xc5\x5f\x90\x6a\xa8\x9f\xf0\x9b\x61\x9a\xb1\xb4\x24\x95\xfa\x07\xe8\x33\x5f\xd1\x37\x50\x8b\xec\xa0\x7c\x5b\x80\x87\x72\x05\xc8\x4c\x17\x6c\x9c\x8d\xaa\x91\xb4\xff\xaa\xbb\x2c\xa9\x30\xb9\x6d\xc7\xf4\x7c\x34\xef\x9c\x4a\xde\x1b\x40\xca\x31\x37\x0c\x75\xe3\x5c\xb6\x7c\x21\xad\xf9\x01\xa6\x8b\x94\x94\xf0\xa7\x2e\x2b\x35\x34\xf5\xfc\x03\x13\x2b\x7d\xf7\xa8\x64\x2f\x41\x36\x74\x4d\xc5\xc7\x54\xac\x60\x11\xd4\xa3\xba\xda\x54\x6b\x0a\x2a\x9f\xc3\xab\x7a\xc0\x67\xc3\x37\xa7\x2f\x2e\x3e\x7f\x3a\x3d\x27\xf1\x08\x9b\xab\x05\xc5\x0f\xac\x3c\xcd\xe5\xd2\x2e\x26\xd9\xd0\x3e\xef\x70\x66\xf3\xc3\xc0\x60\xc2\x09\x1b\xc2\x3f\x3e\x1b\x16\x39\xa9\x86\x85\x3c\x10\xe9\x02\x7c\x7f\xca\x1b\x48\x2e\x97\x7b\x93\xdb\x13\xdc\x92\x7a\x9f\xc3\x04\xe8\x72\xbe\x38\xbd\x95\x10\xac\x72\xcf\xf8\x4c\x9e\x46\x93\x4b\xee\x02\xff\x15\x03\x92\x54\xe4\x94\x54\xfa\x01\x52\x14\xb5\x59\x99\x27\x48\x7b\x99\xa5\xf9\x0d\xa4\xc1\x13\xa4\x7d\x54\xce\xc6\x21\x55\x3f\xe3\xb3\x61\x5e\x08\xb6\xbc\x37\x9b\xe2\xd5\x2a\xcd\xaf\x65\xfd\x6d\xc9\x72\xf4\xb7\x94\x73\xb6\xa0\xaf\x56\x29\xcb\x65\xff\xc2\x04\x7c\xa6\x00\x58\x58\x4e\xe6\x6b\x4b\xc6\x67\x12\x34\x35\xf3\x36\x13\xe5\x31\x80\x27\x9d\xce\x20\x5f\x3d\x09\x9f\x0d\xad\xf1\xd6\x43\xb8\xd9\x27\xbd\x11\x5e\xa5\xa5\x79\x7d\x31\x9f\xd3\xb2\x2c\x78\x39\xe9\x8d\x76\x70\x3f\xfa\x99\x49\x55\x4b\x80\x7b\x57\xcc\x57\x7f\xa3\xf2\x9b\x79\x94\x77\x7b\xee\xa5\xbb\x17\xbb\x01\x60\x56\x7e\x80\x80\x2d\x6e\x13\xf8\x89\xb0\xc3\xe4\x3b\x38\x3c\xad\x86\xf6\x19\x9f\x0d\x97\x2c\x67\xe5\xca\xce\xb4\xff\x6a\x3a\xa4\x4f\x82\x7d\x76\x5d\xd2\x5f\xbc\x37\x53\xc6\xe4\x87\x3d\x01\xdd\x90\x38\x76\xe5\xbd\xb8\x5a\x5c\x0d\x30\x49\x10\xf4\x9e\x94\xda\x73\xc7\x3b\x75\x7e\x33\x76\xc5\x53\xae\x56\xc4\x3e\xab\xb3\x1c\xac\x56\xf0\xae\xce\x6c\xf0\xbd\xac\x7d\xa7\x5f\x36\xa9\xdd\x08\x2a\x4b\x3d\x49\x1d\x42\xe3\x2d\x4d\x1d\x42\xf3\x66\xd7\xc0\xfb\x1c\x26\xc8\xd2\x12\xc6\x2a\x8f\x5b\x06\xe2\xaa\x37\xb9\xd5\x5d\xb9\xc2\x95\x00\x0a\x9c\x54\xea\x1f\x9f\x0d\xdf\xe9\x77\xf8\xdf\x0f\x68\x8b\x5c\x93\xa9\x00\x5a\x2f\x00\x2d\x57\x49\x40\x55\x5c\x00\x46\xae\x13\xbe\x9a\x50\x11\xb4\x54\x04\x33\x54\x3a\x1f\xb2\xf2\x42\xa5\x40\x9d\x73\x50\xef\xd0\x09\xf5\x3a\xcf\x86\x97\x2f\x1d\x3e\xb2\xb4\xe8\xdd\xdb\xe1\xd9\x87\xef\xbe\x3b\xfd\x14\x45\xf1\xd9\xf0\xac\x00\xb5\xad\x95\xf9\x2a\x8b\xbd\x20\x97\xc3\x17\xf8\x6c\xa8\x49\xb3\x87\xac\x98\x4f\xd6\xc3\xac\x98\xe3\xbb\xc9\x7a\x78\x87\x17\x69\xb9\xa2\x9c\xfd\x4a\x27\xeb\xa1\x7d\xc6\x0b\x3a\x4f\xd7\x34\xd3\xc9\xf6\x05\x7b\xa9\x2e\x0d\x2e\x8c\xe5\xbd\x4c\xd3\x8f\xb8\xca\x17\x94\x97\xf3\x82\xcb\x9c\xee\x05\xcf\xd3\x0d\x13\xa9\xad\xc1\xbc\xc8\x23\xad\x66\x8d\x5c\xea\x07\x39\x62\x83\x58\x7f\xe4\xc5\x97\x7b\xb5\x70\x97\xc3\x66\x22\x9c\x49\x83\x9a\x07\x79\x5b\x52\xb1\xba\xf6\x53\x4e\xc9\xa5\x79\x82\xb4\xcd\x3d\x24\x6c\x14\x3c\x3e\xfd\xa5\x4a\x33\x72\x69\x9e\xf4\x8d\xf9\x86\xa7\x6b\x7a\x57\xf0\x1b\xc5\x1f\xbd\x1c\x36\xd2\x00\xd7\xfd\x39\x88\x06\x81\x1e\x76\x36\x75\xa8\x39\x3e\xe4\x56\x27\xb8\x2f\x8e\x6b\x44\x16\xee\xa3\x22\x6f\x2e\x87\x86\xb4\x79\x05\x3d\x06\xce\xdf\xa5\xf7\x02\x54\x9a\xe5\x27\x5e\x7a\x2f\xa6\x0e\x98\x01\x53\x11\xbc\xd8\x39\x37\x9f\xbc\x37\x59\x6a\xee\x51\x01\xb2\xa0\xff\x0e\x3d\xe1\xd4\xae\x99\x7b\xc1\x67\x43\x25\x15\x30\x3d\xf7\xde\xa0\xd4\xe6\xde\xf6\x5e\x3d\xca\x43\x59\x01\x33\x33\x18\x42\x23\xcd\xe5\x33\x55\xfb\xaf\xf8\x6c\xa8\x3c\xf3\xa9\x7e\x9e\x2b\xae\x13\xb9\x6c\x4b\x95\xb3\x25\x6f\x6f\xba\x90\x53\xa5\x9e\xf0\xd9\x50\x7b\x8e\x0c\x76\x50\x23\x0d\x66\x4d\xae\xa2\xee\xa6\x7b\x91\xa8\x0c\x70\x87\xc9\xa5\x7e\x80\x9d\x64\x3a\xab\x9f\x5a\x77\x7a\x91\x9f\x15\xe9\x82\xbc\xd3\x0f\x0a\x5d\x96\x4f\xdf\x17\xc5\x4d\x49\xde\x05\xaf\x9a\x28\xb5\x7b\xc5\x51\x7a\x2e\x59\x75\x7f\xe3\x7d\x3b\xb7\x1b\xcf\xa5\x5d\x06\x43\xbd\x0c\x06\xf9\xe9\xfc\x1f\x1f\xe5\x69\x3b\xff\xc7\x47\x58\x52\xc3\xe9\xb9\x74\xcf\xb2\x06\xe5\x70\x85\xdc\x0f\xd5\x83\xc2\xa3\x37\x34\x5f\xd0\x5c\xfc\x8d\xde\xc3\x0e\x15\xe4\x7a\xd8\x4c\xc4\x6f\x86\x14\x10\xa1\x2b\xf5\x8f\xdf\x48\x1c\xe6\x54\x27\x99\x47\x48\xcd\x29\xa4\xe4\x54\xe5\x51\x9f\xf1\x9b\xe1\x55\x51\x64\xe4\x0a\xfe\xf0\x1b\x15\xd3\x88\x5c\xa9\x7f\x59\x3b\x1c\xe1\x2b\xf5\x8f\xdf\x0c\xaf\x65\xc1\x6b\x01\x4f\x14\x1e\x65\x7d\x99\x4c\xcd\x04\x3c\x51\x78\x94\xa9\x45\x4e\x7f\x48\x65\x3f\xd4\x03\x7e\x33\xe4\x34\x5d\x94\xf5\x84\x0f\x79\x26\x33\x99\x47\xfc\xc6\x12\xea\x2c\xbf\x7e\x01\x74\xc1\x55\x23\x49\x92\x0c\xf9\x82\x5c\xc9\x5f\xd9\x14\x97\xb5\x72\xfc\x66\x58\x56\x6b\x72\x25\x7f\xe5\x60\x58\x2e\x87\xc2\x72\x18\xd8\x17\x18\xd6\x17\x78\xde\xc0\xf3\x46\xe6\x97\x1b\xfc\x0a\xfe\xe4\x1b\x15\xaf\xd9\x72\x29\x13\xd4\x93\xca\xfd\xf2\x5e\xe5\x7f\x29\x7b\xb7\x64\x99\xa4\x07\xaf\xf4\x83\x4d\x81\x4c\xe6\x11\xbf\x19\x56\x39\xfb\x85\x5c\xc1\x9f\x7e\x83\x1c\xea\x41\xa5\x14\xb9\x4a\x28\x64\x0f\x81\x1d\x5b\xca\x4d\x7d\xe5\x9e\xf1\x9b\xe1\x5c\x6e\x46\x48\xd5\x4f\xfb\xef\x46\x15\xa4\xfe\xbc\x0f\x82\x31\x4f\xee\xa5\xf8\x69\x6b\x20\x1e\xd4\x1d\x56\xc2\x6d\xb9\x06\x80\xac\x53\x0e\x5d\xba\x2f\x3f\x7c\xb8\x38\x7d\xdd\x52\x6f\x93\x6b\x57\xf9\x3c\xcd\x73\x9a\xf2\xf9\xea\x35\x2b\x81\xcc\x80\x36\x01\xe7\xd9\x93\x01\xee\x68\xe7\xe9\xfa\xce\x3d\xe3\x3b\xed\x2c\x78\xb8\x52\x3e\x83\xef\xf4\x03\x3e\x33\x5e\x84\x4d\x0e\x59\xc5\x8a\xce\x6f\xae\x8a\x2f\xb2\x06\xfd\x28\x41\x1b\xfd\x22\xde\x80\xd7\xe8\x3b\xf7\xac\xd3\x5f\x70\x9a\xea\x64\xf9\x88\xcf\x20\xce\x81\xdf\x95\xe0\xdd\x10\x7f\xe6\xfd\x5d\x9a\xa7\xd7\xd0\x87\x96\x54\x99\x79\x5e\x4b\x7b\x95\x6e\xd2\x2b\x96\x31\xc0\xf1\xee\xe4\x2d\x6e\x5f\x75\xdd\xc6\x6f\x78\x50\x75\x2d\x51\x66\x5d\x87\x49\xba\x62\x5d\xaf\xf9\xe8\xa5\xca\x09\x83\xfb\xe7\x2a\xe5\x25\x79\x10\x5a\xe6\x39\xb9\x1b\x9a\x47\xfc\x59\xb0\xac\x9c\x3c\xd0\x72\x9e\x6e\x3c\x7f\xca\x93\xbb\x61\x3d\x69\x27\x6f\xe5\xef\x2f\xde\x9d\xbd\xdc\x57\xd9\x0e\xef\x61\xda\x6a\x64\x2a\x8a\x62\xf5\xe0\x09\xe0\x57\x62\x9d\x9d\xa7\x4b\xda\xe4\x81\xc7\x23\x7c\x67\x3f\x23\x1d\x18\x11\x59\xcc\xcc\x95\x74\xb9\xdc\x47\x56\xca\x9e\xea\xcf\xee\x65\xff\xae\xbf\x38\x7d\xf7\xf1\xec\xc5\x05\xb0\xa7\xe5\xd6\xbe\x93\x18\xac\x11\x12\xab\x13\x74\xa7\xf0\x4d\x93\x74\xf0\x78\x40\x47\xff\x71\xfa\xe9\xfc\xed\x87\xf7\xe4\xd4\xc3\x3e\xff\xf7\xdf\x3f\x9f\x7e\xfa\xf1\xf2\xed\xfb\x8b\xd3\xef\x3e\xbd\xb8\x78\xfb\xe1\x7d\x14\xf5\xbe\x0c\x7f\xfe\x7b\x45\xf9\xbd\x39\x1b\x07\xd8\xe9\x7f\xd8\xcb\xbc\x30\x95\xec\xea\x82\xf0\xa0\x67\x23\xd5\x33\x46\xef\x60\xe5\xc9\x03\x2b\xcf\xd9\x7a\x93\xd1\x57\x19\x9b\xdf\x4c\xbe\x0c\x83\x77\x79\xca\xb5\x97\x6c\x59\x64\xf2\x65\x18\x26\xc8\xef\xf2\x5f\x27\xa9\xef\x5e\x82\xf9\xae\xe2\x1a\xba\xcf\xea\xdd\x7c\x55\x0e\xbd\x3f\xd1\xb9\xf0\xb2\x78\x89\x41\x2d\x2c\xbf\x76\x9f\x6a\x35\x06\xdf\x64\xa9\x4f\x45\x01\x5f\x75\xbd\xf6\x55\x7e\x83\xd0\xdd\xde\x47\xf7\x8e\x59\x79\xae\x83\x61\x02\x2f\xf5\x8d\x09\x9f\x3e\x91\x7b\xa9\xfd\xd3\x4e\x03\x17\x83\x47\x7d\xf1\xdf\x7c\x48\xa7\x44\x2b\xe4\x4b\x3d\xc5\xe0\x58\xaf\x59\xb9\xd1\xf4\xf4\x97\x7a\x8a\x04\x55\x85\x16\x65\x9c\xdb\x47\x89\x7b\x56\xa2\xf0\xbe\xf8\xaf\x00\x03\xca\x95\xf7\xd5\x7f\x95\x5f\x59\x29\x0a\x7e\xef\x67\x08\x53\x24\x3a\x53\xe4\xd4\xcb\xe0\xbf\x02\x2d\x60\xd0\xa8\x37\x05\x27\xe7\xe1\xbb\x27\xd2\x70\xe8\xd6\x9b\x74\x2e\x5b\x20\xe7\xfb\xbf\xb5\x96\x6b\x2d\x20\x91\xaf\xa2\x12\x94\xbf\x3e\x3f\x23\xe7\xee\xd9\xa6\xdb\x44\x93\x62\x12\x70\x3c\xc2\x21\xae\x88\x62\x25\x7a\xf3\xc5\x3e\x7d\xfc\xce\x27\x10\x5f\xa7\x22\x7d\xb1\x48\x37\xb2\xe2\x0f\xfe\x9b\x2f\xfc\x00\x19\x82\xcb\xd5\x9a\xae\x54\xe9\x57\xa9\x6c\x54\x29\x14\x19\x40\x7a\x24\xaf\x10\x96\x51\xde\x47\x51\x04\xb9\x4c\xfb\x07\x72\xb6\x55\xa7\xc8\x67\x1d\xd1\xfc\x57\xb2\xa7\x2a\x9d\xab\x23\x77\x70\x29\xc8\xaf\xf0\x87\xd5\xdb\xd0\x0c\xe2\xd7\xa1\x1b\x26\x7c\xf8\xfb\xe7\x9c\x09\xf7\xd5\x7f\x55\xcc\x8f\x6a\xf3\xa6\xe0\x9a\x3e\x27\xbf\xd6\x53\x76\x7b\xe7\x5e\xab\x77\x7f\x4f\xce\x3c\x89\xec\xf7\x38\x1f\xbe\x3d\xbf\x7c\xff\xe1\xf5\xe9\x34\x1f\x2a\xcd\x89\xa1\xd6\xbc\x20\x67\x13\x27\x79\xd5\x69\x4a\xf2\x4a\xda\xd2\xc9\x99\xaf\xc6\x61\x45\xf9\xbf\x4f\x31\xde\x25\xf4\x9f\x0e\xc7\xc7\xc3\x51\x5f\x55\x1e\x28\x78\xec\xab\x5a\x69\xcc\x34\xe4\xcb\xaa\x58\x14\xb5\x68\xe9\xe8\x81\x6b\x45\x93\x8e\x98\xc6\xf6\x85\x84\xdf\x30\xd5\xb3\xa4\xd3\x31\x35\xf3\x47\x04\x9a\x78\xc5\xc0\x3c\xcc\x66\xd6\x6f\x2e\xab\x1a\x0e\x97\xc7\xe5\x88\xd3\x79\x71\x9d\xb3\x5f\xc3\x08\x07\xbf\xdd\x8e\x20\xd0\xf9\xf2\x03\xe5\x58\x43\x1b\x15\x93\xd0\x29\x5c\x5d\x5e\x9a\x58\x2e\x3a\x94\x9f\x4c\xc2\x74\xa7\x34\x84\xea\x7a\x57\x4e\x73\x5c\xbb\x25\x5b\x6b\x88\xaa\x3d\x6a\xcb\x3a\xae\x21\x52\x2e\xf8\x39\xf7\x34\xdc\xf7\xab\x93\x9a\x32\x3a\x70\x3c\x87\xf8\xcd\x2f\x16\x0b\x00\x24\x51\x14\x53\x12\x26\xc5\x7e\xc3\xc6\xa7\x30\x35\xbe\xa4\x4c\x7a\xba\x58\x78\x3a\xb9\x14\x69\xed\x2d\x30\xe1\x74\x76\x9b\x2d\x1e\x3d\xc1\x1d\xd4\x2a\xbd\x55\x5e\x3c\x8d\xa9\x04\xcb\xbb\x62\x45\xad\x87\xa8\xee\x26\x2d\x4b\xe5\xf4\xf3\x9f\xa2\xf8\x67\x5f\x1b\x4d\x79\x8d\xc3\xa5\xe7\xf7\x00\xd7\xa6\x08\xed\x76\xda\xd8\xa2\xa9\xec\x5d\x40\x70\x6e\x6e\xcd\x94\x65\x5d\x9c\xe6\x2e\x45\x8d\x9a\x50\x2f\x2e\x45\x51\xb3\x3e\xb6\xb5\x32\x9c\x1a\x87\xdb\x74\x00\x1e\x06\x7b\x29\xf2\xe2\x70\xe6\xb1\x0a\xec\xdd\x49\xe3\x42\x3f\xfa\x7a\x5a\x69\xd3\xc3\xff\xa8\xe9\x42\x7f\x80\xf2\x01\xa1\x09\x9b\xf9\xea\xc9\xda\x76\xf0\x41\x26\x4d\x04\x11\x20\x15\x15\x10\xb2\x75\xa5\xe5\xb7\x7c\xd7\xa1\x46\x95\x77\xc7\x0e\x58\xb4\x04\x53\x93\xd0\x19\x11\x3b\x5c\xcb\x0f\x53\xbe\xc7\xf4\x57\xc5\x97\x66\x2e\xda\xbe\x9e\x52\x59\x53\xda\x51\xb3\x23\x67\x30\xc5\x39\xea\xe4\x51\x94\x1b\xf0\x76\x2a\x89\x48\x89\x38\xd6\x53\x62\x81\x4b\x84\x79\x5c\x22\x6f\x11\xca\x20\x86\x43\xb9\xc9\x98\x88\xfb\x4f\xfa\xca\xc8\x3f\x43\x20\x10\x85\x84\x9d\xf2\x29\xf9\xe4\x8f\xdb\x9f\x9e\x3c\xb9\xee\xec\x09\x02\xa1\xa6\xf1\xf9\xd3\xed\xf6\x48\x39\x2d\x35\x31\xe9\xfb\x7f\xec\xa3\x29\x9d\x2c\xe8\xbc\x58\xd0\xcf\x9f\xde\x5a\x94\x27\xa6\x68\xc8\xe9\x26\x4b\xe7\x34\xae\x30\xcd\xeb\xdf\x55\xc3\x73\xf2\xe4\x8f\xf1\x74\x72\x1c\x4f\x27\xcf\xb6\x7f\xde\xbe\xdc\xbe\x42\xdb\xa7\xf1\x74\xf2\x72\xfb\x7a\xfb\x02\x6d\x9f\x8d\x90\xdf\xa7\xa5\xdf\xa7\x46\x8d\x7e\x8b\x73\xdc\xec\x91\x6a\x71\x45\x9e\xc4\x3f\x3d\xd9\xfe\x34\xdc\xfe\xf4\x3f\xb7\x3f\x0d\xb6\x3f\x4d\xb7\x3f\x6d\xb7\x3f\xc5\xdb\x9f\xd0\xf6\xa7\x64\xfb\xd3\x6c\xfb\xd3\xc3\xf6\xa7\xdd\xf6\xa7\x9f\xd0\x93\x6b\xbc\x20\x41\xec\x2e\xbc\x31\x80\xcd\x23\x6f\xd2\xf2\xc3\x9d\x15\x0b\xb9\xce\xae\x1b\x8a\x9a\xd6\x11\x1c\xdd\x6e\x8d\x2d\xe1\x81\xa3\x2f\x4f\xb6\x3c\xfa\xaa\x74\x37\x2d\xe1\xe0\x97\x74\x5e\xe4\x0b\x07\x0f\xe4\xc1\x37\x08\xd3\x3f\x87\xca\x51\x70\x6f\xa3\x3d\x42\x63\x81\x0e\x35\xc0\x8b\x5b\xb6\xa0\xdd\x4d\xca\xd3\x75\xf7\x9f\x60\xb2\xf0\xcf\x66\x85\xda\x55\x60\x22\x66\x38\x27\x4d\x2b\xab\x29\x9f\xf4\xfb\x03\x6e\x3d\xae\x3e\x0e\xd3\x4c\xbb\x69\xd8\xf2\xd0\x39\x1c\xce\x77\xca\xa1\x4a\x32\xeb\xdc\x26\xa3\xd9\x5e\x4d\x74\x01\x9a\xe8\xa0\x07\x8a\x5b\xac\xaa\xb5\x8e\x7f\x3e\x9c\xaf\x52\xfe\xaa\x58\xd0\x17\x22\x66\xa8\x23\x71\x86\x4d\x25\x62\x30\xfb\xed\x8d\xad\x6d\x3a\xdf\xe1\xdb\x64\x5c\x6f\xcd\x7a\x19\x90\x45\x9e\xfd\x07\xee\x8d\x94\x1f\xf6\xdb\xe4\xf8\x60\xd6\xa3\x31\x54\xaf\xb2\x3e\xdb\x97\x55\x81\xde\x7b\x39\xd2\xfb\x70\xa4\xde\xe9\x83\x01\xda\xbd\xbd\xc2\xfd\x9f\x7e\xfa\xc3\xb8\x8f\x76\xf8\x3e\xe8\xae\x55\x2d\x8b\x93\xff\x7c\x32\x1b\xa0\xbe\xcc\x70\xdc\x9a\x61\xa8\xbf\x3e\x6b\xfb\xda\x57\x9d\xba\x96\x9d\xba\x3e\xdc\xa9\x1d\xbe\x6e\xce\x98\x5a\x9b\x75\x2c\xb0\xce\x65\xd7\xf5\x62\x78\xfa\xfe\xd5\x87\xd7\xa7\x97\x2f\xde\xbf\xbe\x7c\x7d\x0a\x8f\x1f\x5f\x5c\x7c\x7f\x79\x7e\xfa\xdd\xbb\xd3\xf7\x17\xe7\xd3\x65\xcc\xd1\x84\xcb\x6a\xf7\xcd\xae\x5f\xaf\xcc\x77\x68\x08\x57\x35\x1f\xc2\x0f\x3b\x84\x2f\x0f\xf9\x15\xbe\xb3\xf8\x85\x67\x41\xff\xec\x3f\xe0\xae\xf6\x36\xd1\x48\x22\xed\xde\x3d\x32\x46\xc8\x73\x86\x26\x3c\x78\x8b\x19\xb1\x5e\x1d\x8c\xa7\xa4\xa6\x31\xa0\xba\x15\x71\x05\xc1\xc1\xf1\x9c\x8c\x3a\xe3\xe3\x28\x2e\xc9\xf1\xf3\xe7\xf1\x9c\xf4\xfb\x84\x90\x6a\xfa\x6c\xf2\xa7\xbf\xc8\x87\xb0\x23\xd3\xf1\xe4\xd9\x71\x4b\xf2\xf1\x64\x84\x64\x2f\x2b\x52\x69\xf5\xf6\x31\xc2\x31\x23\x6c\xbb\x4d\x66\x48\xdd\x74\x15\xc2\x71\x41\x0a\x2f\x65\xd4\x23\xf1\xb3\xa8\x44\x08\xe1\xf1\xb3\xa8\x8c\x22\x9e\xcc\x67\x83\x01\xd6\x57\xe3\x83\x3c\xf4\x93\x39\x56\xba\xf9\x59\x5c\xa1\x9d\x39\x3d\x0f\x79\xba\xa6\xe5\x84\x6d\xb7\x97\xb8\x5c\x15\x55\x06\xca\x18\x0b\x5a\x4e\x8a\xed\xf6\xd2\xbb\xc6\x4f\x6b\xe8\x01\x85\x8e\xeb\x00\x45\xc3\x5c\x61\x6d\x44\x07\x41\xf9\xd2\xee\xff\x5e\x1b\xbc\x08\xe7\x95\x96\x2d\x0c\xe6\x07\xb5\x69\x37\xa3\xba\xb6\xdc\xbc\x7d\x11\xe7\xaa\x14\x9b\x8a\x89\x17\x4a\x38\x15\x82\xf2\x9c\xf4\xfb\xd6\x89\xc5\x35\xfd\x62\xd6\x0b\x92\x34\x9a\x50\x06\x89\x72\x36\x4c\x8a\x77\xf7\x9e\x07\xfb\xd5\x8c\x69\xaa\x06\xda\x83\x81\x1e\x41\x7c\x0c\x48\x98\xb8\x09\xb0\xb7\xab\x4c\xf0\xc2\xfe\xd7\xc1\x5e\x22\x21\xb1\xc4\x7d\x2c\xde\x93\x3f\x67\x60\xf8\x67\xa3\x07\xe5\xb3\x8e\x26\x8d\xe6\xa9\x88\x0b\x85\x10\xc6\x02\x79\xc0\xee\x4b\x60\xf4\x25\x07\xbc\xcf\x64\x19\xbe\x6e\xb7\xb1\x3f\x39\x12\xb0\x7f\xa2\xd7\xa7\x5f\x36\xb1\x3f\x87\x08\xf9\x53\xb8\xc3\x7e\x23\xd7\xf4\x80\x2d\x97\x5b\x1c\x2f\xe8\x3e\x18\xf6\x82\xd5\xae\x87\xf3\x9d\xe4\xce\x5e\x37\x0f\x2d\x8f\xf4\xa6\x48\x78\x92\xcf\xc0\x74\xeb\x34\x66\x18\x6e\x41\x63\xf0\xb0\xf3\x5c\x53\x07\x25\x74\xf6\x22\xc8\x5e\xec\xc2\x11\x6c\x2a\xd1\xee\x01\x04\xfa\xac\x2a\x04\x9b\x1e\xaf\x8e\xbc\xd3\xe8\x9f\xbd\xe6\x60\x16\xbf\xc4\x0c\x33\x63\xc5\xa9\x2a\xc5\x2c\x31\x29\x33\x92\x6b\xcf\x58\xb5\x69\x9a\xd6\xf7\x74\x3e\x64\x8b\x89\xc6\xf4\x5d\x32\xaa\xe7\xd3\x16\x5f\x43\xb6\xd0\x61\x89\xbd\x2a\x92\x5a\x02\x96\xd9\x66\x38\x0f\x67\x41\x49\x95\xf6\xf8\x7b\x0a\xd7\xb1\x67\x6c\x4e\x92\x59\xc7\xec\xdd\x0e\xac\xa9\xa8\xaf\xa9\x78\x64\x4d\x05\xac\xe9\xb9\x5c\x50\x24\x89\x33\x18\x06\x43\xfb\x16\x54\xc8\xbc\x85\x9f\xb7\xf0\xf6\x3e\x74\xe6\x45\x93\xe0\x09\xad\x19\x7f\xa9\x28\xbf\xd7\x31\x11\xe9\x76\xfb\xb0\xf3\x0e\xf9\x8d\x1d\x77\x87\x12\x77\x39\x3f\xf9\x69\xf0\xe4\x7a\x8d\xfb\x7f\x3c\x1e\x49\x5a\x8c\xdf\x3f\x08\xd2\x8a\x1c\x6b\x3f\x47\xf2\xaa\x21\xfd\xfe\xce\xe2\x03\x2f\xbc\x89\x56\xce\x48\x34\x0a\x5a\x4f\xc6\x41\xce\xf6\x8c\x8d\x7c\x60\x42\x57\xcf\x26\x13\x61\x42\x2e\x1a\x66\x9f\x00\xd4\x25\xb5\xa7\x7d\x42\x42\x94\x0f\xb5\x69\x29\x1e\x61\x89\xe3\x8c\x24\x0a\xd5\x81\x48\xae\x02\xb7\x40\x66\x5e\x14\x6a\x43\x10\xb1\xeb\x5c\x1c\x24\xac\xbc\x68\x63\x24\x2c\x8b\x19\xe9\xff\x67\x1f\x17\x24\x19\xe1\x11\x06\x07\x9b\xce\x6d\xa7\x35\xe4\xc5\xe0\xbe\xae\x22\xbd\x11\xce\xc8\x48\xde\xa3\x27\x73\x47\x1b\xce\xe5\xbe\x32\x4d\x2c\x09\x4d\xe6\x33\xbc\x22\x77\x71\x89\x97\x8a\x32\x2e\x10\x5e\x90\x95\x1a\x33\xde\x90\xd5\x30\xb8\xc7\x4e\xb2\xe7\xd6\x78\x35\x33\x5b\x74\x4d\xca\x24\x9b\x75\x9e\xf5\x08\x59\xc3\x75\x00\x37\x6e\x6f\x8c\x73\x92\x5b\x84\x11\x90\x4c\xcc\x06\xa4\xff\xa4\x8f\x73\x72\x9b\xa8\xac\xb3\x78\x8d\x73\x48\xbf\x77\x29\x08\xed\xd2\x64\x3e\x23\x0f\x86\x2e\x5d\x9a\xab\x07\xab\x0b\x76\x51\xbb\x5d\x37\xbb\x5d\x05\x4e\x8e\xdb\xdb\x43\x38\x77\x77\x57\x8a\x73\x7b\xd7\xb1\x41\xff\x0f\x7d\x9c\xeb\x3b\xac\xc0\x87\xac\xc9\xa2\x48\x0c\xd3\x52\xb9\x31\x1b\xa6\x92\xd8\x34\x2e\x50\xa0\x4f\x60\xfa\x5e\xd2\x6b\x70\xff\x38\x29\x0d\x49\x5d\x4e\xd2\x1d\xda\xe1\x8b\x80\x56\x52\x5f\xea\xf1\xcb\x7c\xf8\x01\x35\x6a\x37\xd2\x2d\x86\xd6\x17\x2b\xca\x69\x97\x95\xdd\xbc\xe8\x02\x0d\xde\x95\x25\x16\xdd\xfe\x80\xfa\x86\xf1\x9e\x53\x57\xdb\xaa\xdd\x26\x06\xe0\xd4\x3e\x04\x90\xc7\x7e\x84\xab\x34\xc9\x67\x84\x79\x74\x42\x38\xa8\x52\xb1\x9c\x9b\x68\x72\xaf\x17\x8c\x29\x2c\x67\x88\xac\x03\x77\xa2\x2e\x27\xe9\xae\x3e\x4c\x48\x4b\xf0\x97\xaf\x9a\x10\x46\xf8\xd0\xac\x90\x09\x08\x62\x46\x5d\x98\x51\xa7\x84\x25\x85\xda\xcc\xa9\xd9\xcc\xb9\xde\xb5\x03\x72\x9d\xa4\x7a\x93\xa6\xd8\xe1\x11\xfd\x27\xfd\x1e\xd1\x14\x96\x41\x8c\x73\x59\x64\x90\x23\x0c\x1b\xc7\x03\xa2\xaa\x3e\x7d\x4b\xaa\xc1\x83\x3c\x4b\x49\xf4\xe2\x20\x2f\x42\xf2\xda\x69\x9b\x2f\xaf\x48\xcb\x26\x4a\x66\x98\x1b\x0c\xff\x86\xde\x97\xb1\xa4\x3e\x40\x21\x20\xf6\x71\xf4\x7d\x58\x84\x5c\x69\x0c\xe1\x17\x67\x0e\x0f\xb1\xe1\x7f\x5a\x98\x0e\x0c\xa9\xfb\xac\x70\xf7\x59\x49\x46\x27\xe5\xf3\xc2\xd4\x5e\x9a\xda\x2b\x79\xe8\x92\x19\xe9\x0f\x5a\xea\x29\x92\x72\x86\x3a\xc2\x20\xe6\xca\x3a\x3c\x1d\x90\xfe\x9e\xec\x48\x87\xeb\x8a\x53\x64\x43\x9e\xfa\x3c\xc5\x69\xbf\x3f\xe9\x4f\xfb\x03\xa1\x59\x3d\x51\xbf\x76\x16\xc1\xd1\xee\xbe\xb9\xf4\x42\xb9\x18\x62\x26\xea\x23\xcc\xc9\xc3\x0e\x1f\xb8\xae\x93\x7c\x66\xb2\x93\x3e\xc2\x05\xb9\x89\x59\x32\x9a\x21\x9c\x12\x33\x1d\xb8\x94\xe0\xd1\xf8\x7f\xed\x48\x7c\xd7\xec\xc4\x69\x45\xfa\x82\x57\xb4\x3f\x89\xd3\x6f\x8f\xa3\xa8\x9f\xcc\x24\xe5\x53\x68\xfa\x25\x3d\x3a\x96\xbb\xab\x04\x77\xee\x49\x61\xd3\x47\x58\x7e\x99\x6d\xb7\x31\x4f\x8a\x19\x49\x66\x08\xe1\x0a\xfc\x2f\x4f\x65\xf3\xe3\x19\x9a\xf4\xfb\x08\x97\x53\xf9\xd9\xcc\xef\x04\xf2\x56\x7b\x8e\xb4\xe5\x82\xb7\xc5\x41\xd4\x58\x92\xbd\x9b\x66\x26\xfe\x4e\x6f\x2c\x77\x8e\x63\x8d\xfd\x8f\x3e\x3a\x01\x44\xbf\x00\xe6\x31\x35\xd4\xe2\x08\x17\xc8\x84\x29\xf4\xb2\x4f\xfb\xda\xdb\xad\x3c\x7f\x66\xc7\xd8\x42\xe9\x60\x8c\xed\x45\xd7\x09\x6a\x4b\x91\xf3\x81\x10\xae\xa9\xdc\x48\xea\x84\xd2\xe0\x84\x52\x38\xa1\x14\x69\x1f\xc1\xb4\xf3\x38\x61\x4e\x89\x3c\x4a\x93\x98\x3a\x74\x26\xa6\x08\x67\xde\x6b\xa6\x47\x35\xb7\x74\x49\x67\xfe\xed\x38\x8a\xfa\x4f\xfa\xc4\xeb\xc1\xfc\x68\x8c\xea\x13\x22\xd3\x70\x46\x32\x97\x92\x59\x3f\x06\x92\x86\xee\x8d\xdc\xe1\x5d\x92\xd1\xc9\xd2\x5e\xeb\x70\x2b\x7d\x88\x39\xa6\x3e\x01\xbc\x44\x08\x99\x0d\xba\x1c\x0c\xd0\x89\x29\xbc\x92\x00\x62\x41\x46\x27\x0b\x77\xfc\x17\xe0\xe3\x7b\x31\xb3\x20\x3f\x8a\x56\x3a\xd8\x44\xb2\x98\xa1\x0e\x6f\x67\x80\x00\x4c\x69\x83\xdd\x54\x5d\xaa\xdb\xad\x41\x56\x72\xc2\x55\xac\x1c\x9e\x8c\x25\x74\xe1\xc9\x31\x78\x42\xae\xe7\x2b\x49\x2a\xf3\x55\x24\x95\xf9\x32\x92\x26\xc7\xd6\xd3\x5d\x66\x69\x92\x23\xf0\x9e\x5a\x00\x6b\x31\xef\x11\x52\x9a\x2f\xe5\x11\xd0\x21\xac\x47\x48\x65\xd2\xaa\x23\x7b\x6d\x41\xfa\x94\x1d\x55\x13\x28\x35\x2d\x8f\xf2\xc9\x68\x87\x76\xf1\x4a\x2d\xdb\x86\xac\x92\x91\xf5\x95\xbd\x89\xa2\x8d\x37\x21\x31\x93\xef\x1a\x79\x88\x22\xe0\x20\xfd\x41\x2e\xab\x4d\xd4\xa7\xf1\xe8\x4f\x72\x71\x33\x8d\x7c\xec\x21\x97\x88\x43\x05\x80\x8a\x05\x62\x51\xf9\xe0\xe8\xb1\xed\x36\x08\xcb\xa0\xaf\x39\x40\x2a\x21\xf0\x02\x73\x26\xf3\x7d\x13\x43\x50\x68\x02\x97\x49\x50\x33\xc6\xca\x41\xd5\x8b\x98\xa3\x8e\xc5\xe9\x0d\xc3\xc5\x8b\xd7\x39\x3a\xa9\x1c\x1f\xa6\x32\x70\x2c\x23\x79\x52\xcd\xf0\x9c\x64\x1a\x15\x5c\xca\x7d\xe9\x23\x5d\x78\x45\xae\xf0\x42\x87\xa1\x98\xf7\x08\xb9\x8c\xa2\xa5\xfc\xb3\x57\xc0\x86\x8c\x4e\x36\xcf\xe7\xa6\xee\x8d\xac\x7b\x41\x7a\x23\xed\x53\x7a\x9e\x6c\x66\xf8\x16\x42\x6b\x26\xe9\x60\x30\xeb\xac\x08\x21\x57\x51\x14\xaf\xc8\xc3\x0e\xe1\x47\x4f\x63\x14\x2d\x93\xcd\x6c\xba\x4a\xd6\x33\x72\x1b\x45\x2d\x04\xc6\x2d\x9a\xa8\xaf\xbb\x32\xa9\x3c\x74\x32\xb3\xe8\x24\xf0\x5e\xcb\xc9\x0a\xb3\x52\x07\xcf\x9f\x2c\xec\x4d\x52\xee\xe2\x0d\xce\x30\x90\xf3\x12\x34\x1a\x3d\x97\xfe\x68\xf8\x74\xf8\xac\xff\x78\x0f\x25\x90\xbe\x18\xbe\x2f\xf8\x1a\x56\x8a\x93\x87\xdc\x3c\x9f\x2b\x3c\x64\x92\x61\x9b\xf4\x31\x15\xab\x49\xa9\xa5\x04\xf2\xc5\xe4\x59\x86\x70\x79\x9d\x6e\x5a\xb1\x25\x10\xa9\x74\x68\x5c\xc4\xfd\x3e\xe6\x35\xf1\x96\x0b\x1d\xde\xa5\xd6\xed\xbb\xbd\xe1\x0a\xc2\xb5\x2c\x07\x97\x01\xde\x50\xc8\x5b\x44\xee\x90\xb2\x65\x87\x94\x6a\x87\x08\xbd\xe9\x51\x27\x8d\xe7\x38\xc3\x45\x92\xcd\xd4\x96\x5c\x12\xee\x44\x3b\xd9\xac\xb3\x9c\xd2\x78\x8e\x97\xd0\xf6\x24\x57\xec\x79\x86\xe7\x68\xb7\x8b\x25\xc6\x12\xc8\x57\xc5\x54\xf9\x32\xc4\x54\x53\xe8\xca\xe3\x99\x0a\xf2\xa4\x03\x01\xbd\x22\x17\x9e\xe8\xf5\x95\x27\xc2\xe5\x97\x3f\x97\xa1\xcf\x82\x16\x2b\xec\xc0\xbb\x49\x9f\x97\xb7\x1b\xf9\x57\x97\x00\xb7\x19\x64\x37\xc4\xbf\x59\x71\xfd\xe2\xaa\xe0\x82\xdc\x61\x3a\x7c\xab\x8d\xd0\x01\x21\x06\x67\xd8\x74\x78\xc1\xd3\xbc\x64\xb2\x16\x65\x88\xe9\xa7\x28\xc2\x90\x0e\x95\xca\xd4\xc7\x17\x9f\x5e\xbc\x3b\xbf\x3c\xff\xf1\xdd\xcb\x0f\x67\x84\x0e\xeb\xef\xe7\x17\x2f\x2e\x4e\xdd\xab\x69\xcc\x55\x47\x5a\xa5\xd1\xc5\x1e\x97\x33\x76\xfb\x40\xbf\xd4\x9a\xc0\xbc\x1b\xd9\x1c\x44\x6c\xee\xbb\xea\x61\x9c\x74\xa1\xb9\x84\x6b\x5a\x96\xe9\x35\x05\x67\x1b\x2d\x79\x4c\xa5\x1b\x51\x71\xe5\xf0\xf9\x82\xa7\x73\x3a\xdd\x93\x1e\xae\xb8\x72\x92\xc6\xd5\x7f\x8b\x2f\x9c\x9a\x4f\x15\x55\xa7\xfd\x8a\x42\xf7\x59\xce\x95\x08\xa1\xca\x09\x4f\xba\x87\x55\x50\x7e\xbd\x78\xab\xaa\x91\xec\x20\x98\x46\xa5\x9e\x45\xcc\xe1\x8a\x87\x50\x82\x09\x9f\xd5\x83\xcb\x1b\x4c\x8a\x46\x11\xf5\x22\xf6\xf1\x28\xe2\xce\xdb\x15\x4d\xf8\xd1\x18\xee\xbf\xb6\xeb\x37\x8a\x4a\x23\xe4\xea\x7b\x64\x43\x1f\xed\xe2\xdc\xf2\xde\x04\xc9\x7d\x9a\x02\x27\xa9\x29\x33\xc2\x5c\x62\x16\x62\xe6\xe2\xc7\x49\x5c\x3f\x8c\x59\xef\xe1\xc1\x72\x78\xd4\x5e\xf0\x89\x80\x7e\x39\x5f\xf4\xd6\xe5\xa0\xfc\x44\x40\x1e\x66\xe2\x0e\x06\x02\xc4\x1a\x2b\x53\xa2\x04\x75\x16\x2e\xd0\x9a\xb2\x86\x24\x9f\xed\x76\xa1\xec\x13\xbc\x9e\x65\xc5\xb5\x8f\xa0\xff\xbb\x22\x9a\xe8\x80\x7f\x3c\x70\xde\xca\x14\xe6\x52\x00\xe6\xa2\x0e\x7b\xec\x6d\xf6\xee\xff\xe8\x0f\xd8\xa0\x3f\xe9\xf6\x07\x85\xc7\x89\x4b\xa1\x94\xce\x2e\xe9\x93\x20\x82\xbe\x15\xd2\xd4\x45\x89\x74\xbb\xa5\x5d\xe3\x3d\xa2\x58\x76\x15\x0e\xbb\xdd\x36\xa6\xb9\x9e\xf1\x3d\x7c\xdf\x1f\xbc\xbe\xe1\xb1\x2a\x8a\x54\x74\x32\xd8\xa1\x08\x3c\xd1\x9c\xb8\xe2\x1b\xef\x6a\x91\xb8\x7d\x9a\x65\x93\x87\x1d\x56\xa6\x7a\x0b\x08\x2e\x0f\x46\x58\xf2\x71\xd7\xa9\xe2\x7c\x98\x66\x99\x04\x1a\x6a\xc6\x7a\x63\xe5\x78\x4c\x6e\x19\xb9\x89\xf0\x3c\x16\x08\x53\x64\xf7\x2b\x9c\x0d\xef\xa4\x6c\xb7\xca\x53\x7d\xae\x8d\xbb\x16\xe0\x99\x4f\xf6\x0c\xb9\x9a\x04\x62\x4b\xbf\x90\x63\xf5\x73\x15\x55\x43\x71\xb0\xd7\x71\x81\xa2\x68\x1d\xa7\x08\x81\x83\x4c\x35\x66\xa0\xe8\xf5\xba\xe6\xda\xe6\x70\x61\x0e\x27\xa0\xd7\xa1\x57\xcc\x8c\x8c\xf0\xd2\x92\x6c\x27\xd9\xf3\x25\xb0\xbc\x0a\x15\x3c\x24\x4d\xb2\x19\x78\xdc\x69\xab\x48\x7b\xbd\x94\xdd\x92\x33\x9c\xf0\x03\x59\x2d\x66\x3a\xcd\xb5\xab\xc4\x9d\x2f\x3e\xb7\x87\x3d\x3c\x42\xd4\x83\x26\xb7\xde\x76\x52\x0a\x80\x13\x70\x71\xa7\x84\xaa\xfd\xcb\x4b\x75\x65\x5c\x1e\x1d\xff\x79\xfc\xd7\xbf\xfc\x79\x34\x1a\x8d\x9f\x3e\xfb\xd3\x5f\x8f\x47\x47\x4f\x9f\x1e\x1f\xdf\x3d\x95\x17\x58\x70\xab\xdc\x6b\xd1\x67\xff\xd2\xdc\x46\xa6\xec\xf1\xd3\xe3\xbf\xfe\xf5\xf8\x2f\x4f\x47\xc7\xa3\xa7\x47\xc7\x4f\x9f\x1e\x43\xe1\xf0\x8a\xba\xd6\x52\xc7\xfe\xe5\xe5\xdf\x3f\xba\xa2\x4f\xff\x7a\xfc\xd7\xbf\x1c\x3f\xfb\xcb\xb3\x67\x47\x4f\x8f\x75\xc1\xb6\x1b\xef\x0a\x8a\x5f\xee\x8f\x2b\x69\x10\x68\xc5\x19\xf7\x23\x95\x1a\x71\xe5\xd3\xd6\xc8\xb9\x4f\xfd\x60\xcd\x4f\x4d\x1c\x66\x3f\xb4\xa9\x29\xff\xac\xb5\xfc\x33\xbf\xfc\x33\x1b\xc7\xd9\x78\x32\x5c\xf2\x62\xed\xf9\x20\x17\x45\x20\x25\x63\xa5\xbe\x13\xad\xcb\x7c\x56\xbe\x98\x0b\x76\x0b\x3e\x52\x20\xa1\xe2\x99\xb6\x60\xec\x57\x9b\x45\x2a\x68\xdf\xba\x13\x2c\xb2\xdb\x46\x48\x68\x03\xcf\xc1\xd6\xc4\x55\xea\xe1\x01\x3d\xdb\xf6\xab\xb4\x2a\xe9\xe2\xe5\x3d\xf4\x81\xe5\xd7\x7e\xa6\x71\x3d\x93\xf6\xc6\x75\x30\x8f\xa9\xe8\x93\xe2\xf8\xb7\xe4\xbd\xbc\x65\xe0\xc3\xeb\xef\x9e\xf8\x40\x87\xb9\x4e\xee\x67\x84\x6f\xb7\x54\xf1\xc8\x4d\xd0\x08\x41\x73\x61\x98\xe7\x0a\x87\x33\xcc\xf3\x45\x2a\x52\xc5\x7f\x95\x4f\x10\x71\xd3\x9f\x98\xc5\xbb\x62\x41\x33\x57\xfb\xd5\xcc\xc6\xd3\xde\x28\x2b\xad\x60\x25\xc0\x36\xd3\x4f\x49\xae\x5d\x01\x6e\x50\x36\x17\x03\x46\x29\x77\xbd\x97\x58\x90\x5f\xcd\x86\xdd\x16\xc2\x58\xc1\xf9\x1f\x4a\xfa\x4b\x45\xf3\x39\x25\x47\x63\x5c\x04\x9e\xf8\x4d\x6f\x72\x63\x3d\x36\xe4\x54\x22\x1a\x12\xcb\x96\x35\xc4\x5e\xff\x0a\x17\x2d\xe2\xf0\xf2\xf5\xd2\xaf\x58\xbf\x5e\x1a\x45\x71\x7a\x28\xcf\x76\x0b\xb1\x99\x6c\xef\xd1\x6f\x58\x71\x59\x7b\x5f\xcb\x7e\xfa\x50\x8b\xdd\xca\x51\x14\xf7\xd2\x83\x23\xd8\x6e\xdb\xbe\x37\x5a\x41\x46\xdf\x51\xae\x16\x1f\x2a\xba\xcd\xae\x37\x0f\x10\x9c\xfa\x4a\x72\xef\x45\x2b\x97\xf9\x49\x06\xf7\x2a\x0d\x3f\xdf\x5b\x71\x3f\x5f\x52\x1e\x8d\x67\x80\x0e\xa3\x1a\xf9\x5c\x9e\x0c\x06\x95\xa1\x8a\x82\x22\x95\x62\xe1\x67\x43\x56\x6a\xaf\x3b\x0b\xed\x18\xb3\xb9\x89\x32\x55\x70\x17\xee\x22\x6a\x1c\xb1\x9f\xeb\x14\x13\xc5\xc8\xec\x26\x6e\xce\x41\xdc\x94\x5c\x33\x07\x77\xa6\x8d\x5d\xd7\x1b\xe3\xdb\x00\x8f\x49\x55\xce\xee\x51\x57\xe5\xe8\x23\x49\xa5\xb9\x52\xaa\x15\x50\xe6\x01\x22\x6c\xa8\xa4\x77\x2d\x88\x69\xa3\x2d\xa6\x8f\xf4\x50\xd8\xe6\x5e\xb3\x85\xe2\x6a\x50\x0c\xd1\xeb\x6e\xe3\xbe\x9a\x89\x2e\xf4\xb8\x8f\xfc\x68\x33\x6d\x47\x47\x75\x47\x03\x14\xe4\x1d\xe5\x43\x01\xee\xc5\x8a\xee\x8d\x10\xe3\xb7\x04\x19\xf5\xf7\x1d\x16\x6a\xa8\x7b\xd4\x97\xfc\x62\x6a\x4a\xe4\x67\x08\xf9\xae\x02\xb1\x7c\x45\x39\x9d\xd3\x96\x84\xb5\x68\x48\x22\x79\xa1\xe2\x6a\x68\x51\xa4\x92\x42\x6a\x15\x5c\x35\xc1\x3a\x84\x74\xf8\x87\xbc\xf1\x6b\x01\xb1\xbc\xad\x64\x07\xe5\xa5\xe5\x27\x78\xf7\xd4\xc8\x87\xc5\xea\xef\x07\x96\x65\xca\x93\x43\x6c\x7c\xf4\xfa\x9f\x5f\xb3\x45\xf8\x55\x8e\xc4\xf4\xb9\x31\x18\xdb\xd4\x76\x1b\x2f\x83\x31\x04\x27\xa0\x0e\x85\x25\xa6\xed\x76\x51\xf7\x2e\x2d\xcd\xc6\xed\x23\x6c\xaf\x6d\xef\x52\x71\x22\x3c\x3f\x2d\xf6\xde\x86\x1b\x4e\xeb\xe4\xb8\x3f\x38\xb8\xa7\x50\xe3\x22\x1f\xd5\x2f\xf2\x71\x30\x25\x29\xa4\x7a\x80\x52\x2f\x06\x4c\x0a\x5d\x30\x1e\x58\x83\xd3\xc6\x12\x1f\x9c\x7e\xaa\xab\x11\xfc\xbe\x31\xb1\x30\x1d\x56\x5a\xed\xd7\xe2\xe6\x4d\x5e\x01\x72\xe8\xfe\x34\x80\x0c\xdb\x0b\xf3\x60\xa6\xcc\x83\xe6\x26\x6c\x58\x1c\x7e\x80\x10\x0d\x42\x7f\x6b\x63\x14\xd7\x10\x1c\x6a\x77\x47\x59\x0b\x2d\xac\xfa\xdc\xc0\xc8\x46\xad\x18\xd9\x68\x16\x45\x41\x20\xf6\x26\x21\xf8\xed\x78\xea\xc7\x66\x37\x48\x1f\x6f\x66\x3c\xf6\x32\x1e\xdb\x8c\xcd\xa8\x9e\xdf\x3e\x6d\x45\x23\x59\x0b\x1a\xd9\x8a\x2f\xaa\xed\xac\x23\x5a\x39\x8e\x92\x9c\x8c\x46\x7c\x9d\xff\xae\xf9\xe8\x34\xc9\x50\xd0\xed\xa3\x58\xee\x6a\x5f\xa4\xdc\x20\xb4\x73\x8f\xd0\xe6\xdf\x1e\x4f\xf9\xd1\xb1\x24\xb4\x19\x39\x3e\x61\xcf\xb9\x89\xeb\x73\x74\xec\x13\xda\x4c\x47\xa4\xb1\xbb\x12\x86\x0d\x46\x60\x06\x9e\xfb\xf7\xb3\x91\x70\x35\xb0\xe1\xc1\x18\x81\xae\x50\xae\x80\x6d\x91\x65\xc5\xdd\x27\x7d\xb2\xca\x3d\x61\x4d\x54\x9b\x9d\xfd\xb0\xdb\x16\xf3\xb5\xd7\xea\x67\x79\xda\x4c\xaa\xb7\x1f\x87\x97\x27\x5c\x83\x02\xed\xd4\x42\xef\xf7\x88\xe8\xdd\xc7\xb1\x01\x81\xdd\xfe\x20\x00\x89\x83\x3e\xea\xcb\x6a\xb2\xa2\x26\xb0\x3c\x00\x45\x6d\xdc\x02\x5f\xcd\xd3\x99\x27\xc4\xd4\x14\xa3\xae\x4c\xdf\x38\x59\x57\x10\x76\xd8\x57\x4e\xd3\x8b\x40\x8f\xd1\xf6\xbc\xae\x3b\x41\xa3\x28\x60\x50\x5c\x4a\xf0\xe1\x13\x28\xbb\x56\xee\xe5\x65\x47\xe9\x3c\xca\x96\x7e\xa0\xe9\x4d\xe0\x4c\xf7\x3c\xb6\xfc\xa7\xe6\xce\x6e\x3d\x13\xe3\x59\xb8\xe1\x41\x76\xdb\x3c\xfc\xad\x65\x8f\x83\xf3\xe4\xe2\x46\xd3\x30\x4a\x20\xc3\x56\x36\xce\x00\x3f\xc4\x25\x61\x06\x45\xad\xcc\xa3\x0a\xc2\x9e\x11\x66\x2c\x17\xf0\x9c\x68\xb4\x48\xe2\x88\x5f\xc0\x2f\x36\x43\x51\xa4\x6d\x24\x96\x04\xcc\x35\x63\x86\xf0\x8a\x7c\x88\x97\x35\xef\xd2\x8a\x79\xf6\x70\x4d\x45\x77\x4d\x45\x2a\x29\x23\x87\xf7\xbd\x88\xc1\xa0\x85\x2d\x63\xcd\xca\x64\xe5\x1b\x5e\xfc\x4a\xf3\x98\xa3\xed\x96\xd7\xf8\x99\x71\xdf\xd4\xd0\xb7\x4c\xc3\x50\x3d\x18\x0c\xea\xac\xbf\xad\x1d\x18\x72\x98\xab\x22\xf8\x06\x21\x38\xe2\x39\x5e\x22\xec\xcc\x9a\xbe\x80\x6f\x6d\x86\x57\x08\xaf\x00\x37\x5b\x90\x87\x25\xcb\x17\xce\xb8\xd7\x09\xc5\x30\x23\xc9\xac\xf3\xd4\x93\xe1\x43\x44\xd2\xda\x8c\x53\xcf\x1a\x58\xb9\x0f\xdf\x79\xca\xc7\x05\x19\x9d\x18\x46\xd7\xb7\x85\x0a\xb3\xbc\x8c\x73\x3d\x9f\x34\x29\x24\xb6\xa8\x98\x48\x12\xf6\x16\x12\xff\xb4\x3a\xf7\x58\xce\xa8\x5c\x44\x37\x9b\xa9\x4a\x74\xab\xe8\x79\x52\x53\x9f\xda\x56\x40\xaf\x2d\xb2\x85\x25\x74\x33\x0a\x1a\x14\x82\xfd\x9a\x09\xb2\x11\x06\x85\xf2\x07\xae\x3a\x2a\x74\x51\x90\xa0\xf8\x25\x07\x5f\x5b\x32\x2b\xe6\x69\xf6\x5e\x8d\xc5\x03\x81\x72\x74\x46\x43\xc1\xb3\x37\xa0\x89\x73\x9b\x3f\xf3\x86\xec\x0d\xb7\x54\xc9\x1e\xb1\xe5\x39\x32\xdd\xed\x2c\xf2\x10\x45\xf1\x82\x7c\x88\x17\x38\x43\x08\x9b\xe5\x5f\x20\xbc\xd8\xa1\x50\xa3\x37\xdc\xc8\xa9\x10\x9c\x5d\x55\x82\xb6\x57\x5b\xdf\xcb\x14\x6d\xb7\x75\xde\x7c\xdc\x77\x95\xf4\xd1\xf4\xf0\x36\xa6\x72\x1b\x4f\x82\x54\x99\xe4\xba\xf8\xc2\xa7\x69\x00\x23\xa2\x1e\xa0\xa0\x2a\x24\x91\x15\xf3\xbc\xd3\xbb\x60\xba\xef\x83\xbc\x12\xaa\x2c\x83\x33\x70\x73\x88\xc1\x65\x43\xdb\x5c\xc2\x1e\xfa\xd8\xc2\xc6\x50\x5f\x88\xaf\xbf\xed\xf3\x58\x3c\x82\xd3\xe2\xa5\x20\xc9\x11\x5e\xee\xf7\x4a\xb1\xb1\xc6\x73\xc9\x4d\x58\xc0\x0d\x2f\xe6\xb4\x54\x7a\x5d\x71\x8e\x0e\x91\x55\xd7\xe0\xc7\xa1\x16\xd2\xb6\x85\x18\x74\x34\x9b\x81\x82\x48\x61\x81\xca\xd6\xbc\x4d\x7d\xac\xeb\x8d\x0e\xd4\x4f\x01\xef\x85\x8a\xf6\x2a\x8d\x75\x0e\x37\xed\x4f\x2a\x52\x94\x5e\xcb\xad\xcf\x55\xcc\x95\x37\x05\x07\x8c\x5f\x91\x66\xf5\xec\x5e\x6e\x5e\xe5\x2f\xe9\xb2\xe0\x14\x66\xe2\xfb\xa2\xb8\x89\x0f\x17\xa8\x57\xaf\xa2\xcd\x1d\x28\x60\x66\xb9\xad\xde\xdf\xd8\x6f\x1a\x76\xfc\xc5\x52\x50\xee\xf5\x5b\xa2\x0b\x87\x8a\x5c\xd1\x79\xb1\xa6\x66\x87\xe9\xfc\x72\x65\xc2\x0f\x6d\x0b\x64\xd4\x74\xec\x9a\xc7\x02\x75\x6c\x38\xb9\x52\xa4\xe5\xea\x93\xcf\xd8\x53\xf1\x60\xa8\x24\xed\xe5\x0f\xb0\xff\xe4\x43\x62\xf7\xf4\x8c\xe4\x36\x52\x96\x8d\xf0\xaa\x76\xd7\x49\xdc\xd7\x4f\x7d\xa6\x76\xd2\x76\xdb\x93\x97\x6c\xcc\x89\x30\x7a\x13\x1a\x68\xae\x58\x89\xb4\x4a\xed\x45\x13\x91\x82\x7b\xbd\x76\x74\x4c\x00\x73\xc8\xe7\x85\x37\xb0\x10\xa2\x88\x22\x05\xfd\x52\x5c\x20\x9c\xc2\x56\x07\x1d\x0a\x08\x8d\x31\xa7\x0b\xda\x12\xc4\x49\x6b\x4d\x1a\x23\x62\x6a\xc6\x52\x1b\x9a\x43\x46\x64\xd7\x0c\xad\x26\x9f\xb7\xdb\xfa\xa0\xa3\xa8\x67\x22\x0f\xd5\xc1\xe5\x46\x4b\x0c\xa3\xa8\xd7\x08\xae\xd0\xa3\x3d\x62\x95\xd7\x95\xa2\x87\xdf\xbf\x40\xec\x49\x11\xc8\xe5\x6a\xd5\x73\x14\x45\x9e\x14\xc4\x55\x65\x2a\xd9\xc5\xde\xf1\xc6\x54\x3f\xa0\x26\x76\x2b\xbb\x04\xb2\x34\x90\x96\x16\xd7\x4e\xf5\x56\x89\xde\x14\x20\x51\x8c\xf3\x7d\x9a\xa8\x5d\x3a\xbc\x34\x1e\xe2\x81\xbd\x57\x5b\x59\x05\x52\x81\x94\x6d\x1e\xe6\xa6\x16\x9c\x5b\x01\x4d\xc1\xc8\xae\x19\xca\xae\x37\xc2\xfd\x3b\x96\x65\x7a\x2f\x43\x35\x7d\xec\x37\xe4\x13\xf8\xde\xad\xe2\x12\x87\x57\xae\x07\xca\xd4\xaa\xf5\x53\x4c\x11\xc2\xa7\xb1\x50\xe6\x58\x00\x44\x70\x0b\xe0\x43\x7a\x58\xe1\x51\x6f\x3d\xa1\xcc\x44\xdf\x95\x53\x13\x90\x4a\xfb\x8e\x67\x4b\xef\xdb\x87\x94\xda\xd6\x5d\x40\xe8\xfa\x97\x58\x19\x90\x73\x72\x1a\x33\xc2\x91\xc2\x6c\x58\xcb\x98\xf8\x5e\x58\x49\x6b\xc2\x81\xa4\x98\x29\xf8\x14\x80\xc6\x76\xbe\x5c\xb3\x1d\x1a\xa3\xbd\x2d\x89\x9d\x86\xdb\xf2\x6c\x37\x66\xa7\xb1\x81\x6b\x32\x8b\x7a\x82\x82\x6e\xf5\xce\x7b\x90\x4e\x00\xa5\x4b\xc5\x7c\x55\xdb\xe4\x2d\x44\xae\x72\x05\x63\x6d\xf4\x15\xe7\x3a\xb0\x69\x0a\x6e\x78\xc5\x52\x0a\xd2\x5a\x35\x3f\xfd\x0b\xb6\x71\x9d\xb6\x70\x68\xa9\x8d\x4f\x13\x0b\x42\x51\x14\xb5\x69\xd9\xb7\x45\x6a\x81\x29\x9f\x36\xaf\x6c\xd2\x48\x39\x70\x53\x79\x10\x01\xc8\x04\xff\xa4\x6b\x86\xdc\x44\x07\x00\x0f\xb3\x1a\x61\x2c\x8e\x47\x98\xef\x89\x04\x0a\xd5\xec\x8b\x74\x19\x44\xa8\x85\x9c\x53\xef\x59\xa9\xb8\xb8\x95\x8c\xd1\x0e\xbc\x2f\x35\x18\x82\x97\x06\x2a\x99\x28\x9b\xfe\xc0\x0f\x47\xd9\xf4\x73\x4e\x9b\x49\x93\xb8\xd1\x07\xdc\xcc\x75\xb8\x5f\x66\x49\xbc\x28\x9e\x6d\x0a\x50\x37\x75\xd3\x1a\xea\x21\xbd\x22\xf6\xe2\x5c\x68\x33\x50\x43\x5c\xca\x23\xe2\xe9\x24\x41\xbe\x02\xa9\xbb\x0c\x19\x9c\x97\xe1\x10\xdf\x1d\x61\x7b\x4b\x92\x14\x97\x3b\x4b\xa8\xf2\x30\x60\x13\x02\x48\x83\x45\x18\xf8\xad\x05\xb3\x34\xb3\x1a\x45\xa2\x76\x36\x25\xcc\x3d\x74\x5c\x7d\x4c\xb7\x0d\x2a\x83\x32\x1b\x16\xbb\xf8\x06\xe1\x57\x8f\x4e\x8f\x66\x33\x98\xc9\x49\xbf\x66\x72\x1e\x76\x38\x75\x13\x95\xfe\x96\xc9\x68\xc5\xea\x3d\x33\x15\x55\xab\x44\xde\x68\x72\x35\x8b\xa2\xb8\x8a\x85\x93\xbd\xaa\x9b\x1c\x8b\xd0\x82\x2c\xb9\x9a\x19\x6b\x7a\x0f\x77\x32\x06\xc2\x1d\x7b\x6e\x17\xd4\x22\x88\x53\x46\x82\x77\xe8\xe8\x84\x0f\xd7\xfa\x1a\x91\x9f\xd7\xde\xc5\xc1\xa2\xe8\x14\x38\x29\xb1\xa9\xb6\x6d\xea\x99\x9d\xf7\x77\x8f\xcc\xbb\xd6\x32\x31\xb3\x5e\x34\x67\xdd\xce\xb9\xd9\x75\x0c\x17\x0e\xc1\xe5\xa4\xf0\x20\xf2\xb9\x4d\x8e\x39\xc2\xc5\x6e\xdf\x4a\x74\x8c\x1d\x75\x83\xdc\xca\x5b\x16\xc6\x6d\xd2\x96\x5b\x97\x2b\xbc\xa9\x96\x10\x62\x50\x6a\x5a\x58\x7e\x6d\x3c\x13\x2c\xba\x30\xa7\xfd\x50\x8f\xce\xb4\x1c\x28\x0a\xee\x70\xbe\x87\x84\xab\x6f\x16\x85\x36\xf3\x10\x91\xa5\xdb\x6d\x4c\x09\x37\x23\x7e\x00\xc6\xd5\xca\x8b\x11\x97\x27\x22\x19\xcd\x66\x92\x36\xb5\x52\x71\x37\xbb\x81\x8c\xdd\x25\xab\x1e\x2a\x3f\x3f\x58\x05\xbc\x6c\xc5\x52\x3c\x14\xc4\x16\x46\x8d\xeb\xcd\x23\x57\x4c\x6d\x63\xdf\x79\x8d\x35\xfe\xb0\xca\xe3\x4f\x2e\xd9\xe2\x0f\x4f\x86\x82\x96\x22\x66\x68\x9a\x27\x4c\x45\x1a\x9d\xa8\x27\x9c\xef\xf4\xfe\x83\x61\x7f\x6a\x99\xb6\xdf\xcd\xe1\xec\x88\x7d\x4a\x14\x3b\xfc\xf1\x70\xe8\xc1\x16\x05\x88\x5f\x9a\x1a\x1c\x0e\xb6\x1c\x62\x0a\x68\xbe\xfa\x59\x7a\xd5\x0a\x42\xfa\x7d\x93\x75\x11\xd7\xda\xc6\xcd\xab\xbc\xdf\x57\x46\x78\xb1\x18\x90\xfe\xb0\x8f\xb0\x18\x10\x45\xfa\x60\x70\xf6\x77\x1b\xf7\xbf\x01\x17\x1a\xdf\x80\xf2\x13\xfa\x1a\x36\x81\x01\x60\x5f\xd3\x7e\x97\x27\x54\x03\x75\xea\x71\x23\x54\xe3\xa2\xa6\xa4\xd3\x09\xf4\x93\x2c\xb9\xd3\x82\x5a\x7a\xfc\x1b\x6f\xb6\xe2\xfe\xb9\x48\xb9\xf0\xe4\x9c\x7d\x83\x81\x56\x78\x5f\x11\x7d\xff\x29\xfb\x37\x99\xbf\x29\x9e\x57\x43\x67\xfe\x48\x53\x12\x76\xfe\x5b\xab\xfc\x38\xe5\x96\x1d\x38\x09\xf3\xb4\x0d\x07\xe4\x1b\x92\x76\xfe\x39\xa6\xd8\x6f\x21\x49\xb5\x30\x47\x31\x5a\x77\x6d\x5d\xd7\x82\x7f\xe5\x5a\x1d\x79\x32\x0a\x8f\xa3\xda\x8a\x96\x2b\xa7\x43\x5e\x4d\xe0\x1b\xb5\xcb\x96\x5d\x45\x67\x77\x4d\xbc\xd2\xf6\xf9\x30\xd6\x24\x4a\xf1\xb0\x36\x18\xb9\x87\xea\xd5\xeb\x8e\xa6\x46\x43\xc1\x76\xb4\x6c\x9f\xde\x24\x9c\xb8\x99\x87\xa6\x80\x95\xca\xfe\xac\x83\x81\x04\x12\x3d\xcf\x58\x44\x89\x0a\x2c\x00\x00\xb7\x48\x46\x8e\xec\x3f\xc7\x96\x63\x20\x41\xb3\xe1\x61\xc7\xe1\xfe\xa9\x0f\xac\xbe\x79\x76\x9e\x8e\xb3\xe7\xd3\x25\xd8\xe6\x24\x18\xaa\xd9\x35\x6c\x72\x70\x02\xcc\xe2\xa5\x58\xe8\x1e\x95\xed\x3d\xfa\x28\xe9\x10\xba\x90\x7d\xb1\x11\xb7\xeb\x42\xfa\x8f\x70\xd0\x7e\xde\x17\x18\x5c\xa9\x52\x05\xc4\xbd\x66\x7f\xde\xa5\x56\x8c\xcf\x3d\x7b\x6d\x92\xef\x3a\x4d\x5d\xfd\x9f\xa1\x95\xd7\x07\xb1\x04\x7d\x01\xfc\x7e\x6d\xc4\x64\xf6\xfb\x35\x11\x1f\x76\xb8\x6c\x96\xfd\x93\x97\xe9\x4f\x56\xd2\xab\x91\x18\x56\x43\x62\x4a\x87\x36\x36\x75\x21\x8c\x88\x5b\x71\x90\xb9\x5c\x2a\x5f\x71\x29\xc7\x56\xa6\x55\x92\x02\xb3\xe0\xc6\x48\x31\xfb\x5d\x28\x4e\xba\xd9\x64\xf7\x17\x85\xea\x40\x1b\x00\xcf\x62\x0f\xd1\x36\x3e\x3e\x7c\xbc\xa2\x44\x28\x01\xbb\xb3\x40\x8f\xc2\x1a\x76\xf8\x76\xd8\x31\x07\x03\x4d\x46\xf2\x24\x77\x32\x10\x93\x23\x20\x76\x75\xbf\xf4\xd8\xcb\x98\x02\x66\x0e\xba\x13\x12\x0d\xaa\x7d\x6e\xf5\xdc\x02\xd8\x24\x4e\xb5\x81\xd6\x47\x9c\x05\xe8\x90\x95\x77\x23\xb0\xad\x71\x86\x01\x0a\x6e\x7a\x13\x0f\x4a\xf4\x05\x19\x01\x0c\x37\x76\xcc\xcf\xd3\x93\xc1\xa0\x50\xc1\xcf\x0b\x3b\x04\xc3\x3b\xf4\x8b\x87\xbc\x30\xf4\x30\x27\x45\x07\x74\xd3\x76\xaa\x5e\xe1\x82\x28\x17\xdf\x92\xd1\xc9\xd1\x51\x61\x24\x93\xb2\x6a\xbc\x22\xce\x2c\x7f\x61\xe0\x93\x3a\xf4\xc5\x0c\x6f\x80\x13\x25\xfb\xbd\x21\x4b\x65\x43\x66\x95\x17\xa6\xc5\xb7\x64\xae\x08\x52\x45\x57\xc3\x5e\xd1\xdd\x92\x35\xc4\x2b\xac\xcb\xe0\x0c\x1b\x17\x1d\xd7\x54\x78\x59\xde\x14\x5c\x5b\x6c\x69\x33\xa9\xb0\x0c\xe6\xb8\xd0\xe5\xbe\xaa\x09\xb9\x2e\x1b\xb2\xa9\x33\xb6\x01\x32\x6d\x2c\x05\xa7\x2d\xd7\x16\x51\xb4\xb0\xd8\x6b\x7d\x70\xde\x89\xb5\x99\xa2\x68\xe3\x71\x71\xd7\x51\x14\x6f\x0c\x0a\x05\x75\x19\x5a\xc9\xe5\x5a\x6b\xe7\x5f\x8b\x93\x58\x4e\xd6\x76\xbb\xa9\x73\x8e\xe3\x05\xb8\x36\x9a\x93\x77\xa9\x58\x0d\xd7\x2c\x8f\x0b\x3c\x47\xf8\x96\x6c\x10\xce\xa3\xa8\xc7\xa2\x28\xbe\x25\xb7\xad\x23\xba\xb5\x23\x42\xd8\xc7\x7b\x86\x55\x5e\xae\xd8\x52\xc4\xb7\x10\xa1\x3d\x73\xc1\xd7\x1b\xa6\x88\xef\x0a\x4e\xbb\xba\x16\xed\x9d\xad\xec\xde\x51\x4e\xad\x33\xc6\x55\x0a\x5e\x1a\x39\xed\xa6\x9c\x76\x17\x6a\xb1\xba\xc6\x00\xbf\xbb\x2c\x38\xf8\x72\x53\xdc\x90\x6e\x7f\xe0\xf8\xe7\xb9\xe6\x55\xb3\xfc\x36\xcd\xd8\x22\x15\xf4\x95\xb6\x22\x8b\x03\x2c\x6d\x8e\x70\x15\x97\x4d\xdd\x4f\x2f\x41\xe2\x68\x08\x97\xf2\x68\x36\x6b\x7b\xc4\xa5\x9a\x17\xdc\x7b\x30\xe0\xca\xf0\x24\xe1\xfe\x1d\x6e\xd0\x7e\xb0\x3f\x28\x8c\xf4\x3f\x75\xd2\xff\xd2\x5c\x91\x35\x3d\x80\x0e\x58\x05\xc9\xe9\x7c\x15\x88\x1a\x0a\x5c\x49\xc0\x00\xf1\xe8\xf3\xc7\x76\x7c\x0b\x70\x71\x2c\x02\x08\xb5\xed\x62\xe7\x03\x45\x95\x12\x9e\x38\xa4\x6e\x86\x02\x32\x67\xcf\x31\x31\x37\x6a\x47\x87\x88\x57\x06\x2e\x6c\x19\x03\xfe\x01\x17\x02\x21\xd4\xf9\xf9\x01\x8f\x15\x0a\xc3\xab\xdf\x23\xa1\x33\xa0\x92\xec\xc9\x16\x02\x92\x4e\x4a\x4a\x30\x73\x52\x5b\xcd\x06\x06\xa7\x77\xdd\x77\xc1\xd4\xc9\x8e\xa6\x00\x83\xdb\x47\xd2\x82\x24\x38\xc7\x10\x0f\x3b\xec\x00\x1e\x4e\x49\x32\x3b\x29\x8e\x8e\x4e\x8c\xa7\xce\x3c\x8a\x28\xb8\xf5\x93\xe3\x95\xe3\xf6\x08\x80\x2a\x9c\x54\x09\xcd\x65\xb7\x57\x71\x85\xa6\x2c\xc9\x94\x19\x93\x9a\xbb\x49\x43\xfc\x92\xe9\x3c\x65\x92\xcd\x26\xa9\xb2\xb7\xce\xe0\xec\xa5\x07\xce\xde\x8f\x45\xd5\x5d\xb0\x45\xfe\x8d\x73\x23\x48\xf3\xa2\xba\x5e\x75\x95\x1a\xd7\x13\x70\x84\xce\xe6\x4a\x7e\x4f\x05\xe5\x65\x57\x14\xdd\x32\x15\xac\x5c\xde\x77\xd3\x2c\xeb\x16\x4b\x38\x7c\xad\xa7\x52\x39\xd0\xe8\x0f\xe8\xa0\x3f\xec\xbe\x63\x65\x09\x5c\x01\x65\x29\xdb\xed\x0f\x52\x77\x4e\x1b\xfb\x57\x4e\xad\x66\xac\x7c\x42\xf8\xfd\xbf\x66\x73\xf8\x39\xb7\xb7\xf5\xe2\xf3\xa7\xb3\x53\x15\x78\x09\x32\xf8\x66\x87\xb5\x6c\xff\xef\x36\x3a\x7c\xfb\x35\x58\xe4\x3e\x24\xcd\xf1\x99\x2a\x9e\x29\x3c\x6c\x3f\xb2\xf6\x5b\x18\x7d\x7b\x90\x2d\xcb\xf3\xd7\x5a\x7e\x1f\x31\xdb\x87\x4c\xd9\x47\xab\x19\xaa\x0d\xd9\xbd\xdd\xfb\xde\xfb\xa6\x24\xaf\xbd\xb1\xc4\x5d\x74\x62\xcd\x6f\xab\x84\xb6\xa0\x31\x96\xa7\x10\xe4\x8d\x5d\x65\xf4\xe5\xfd\xe7\x4f\x67\x41\x8d\xa9\x17\x53\x5e\x1e\x67\x41\x46\x98\x5b\x67\x1a\x27\xe2\x39\x3f\x19\x0c\x84\xd1\xcd\x67\x89\x50\x36\xed\x06\x6f\x59\x92\x24\xd4\x45\x0c\xf0\x43\x2d\x18\x99\xcb\x7b\x76\xf9\x35\x68\xe4\x1c\x25\x42\x99\x08\x94\x6a\x88\xab\x16\x18\x3f\xc7\x4b\x9c\xd9\x2b\x7f\x41\x56\x9a\xb2\x5b\x4c\xcb\x78\x81\x26\xab\x50\xd6\xb1\x6a\x11\x74\x94\xc6\x57\x41\x00\x2b\xc5\xac\x53\x6c\xb7\xab\x06\x9e\xb0\x41\xd3\x58\x53\xb8\x41\x6e\xb2\x42\x93\x7a\xd2\xc6\xec\xf8\x2a\x0e\x8d\x46\x03\xa4\x1e\xbc\xd2\xc0\x11\x77\x6b\x76\x66\xa5\xc6\xd4\xd9\xdb\x59\xf6\x98\x95\xfb\xee\x37\x47\x84\x3b\x56\x5f\xb1\xfb\xc5\xc5\xb6\xbd\x37\x9e\x94\x3a\x8a\x9c\x94\x7a\xd4\xd1\x49\x62\xbb\x0d\x3e\x8c\x35\xd7\x39\x74\x8b\x83\xf3\x20\x41\x71\xf6\xb8\x1b\x41\xbe\x77\x04\x8c\x8c\x70\xe1\x2c\x57\xd9\xf3\xe2\x64\x30\x60\xc8\xda\x7e\x2a\xdf\x39\x34\x49\xd5\x68\x52\x37\x9a\x9d\x1d\xcd\x2d\xb8\xab\xdf\xa3\x08\x64\xe4\x2c\x59\x5a\x8a\x16\x2b\x2a\x4d\xb1\xfa\x3a\x41\x45\xb6\x38\x6f\x24\xee\x51\x43\xd7\x7e\x22\x75\x98\x54\xc7\xf5\x0b\x74\x8c\xb4\xc1\xa2\xdf\x7a\x4b\x69\x63\x99\x62\x8c\xd3\xb2\xe2\xda\x12\xdd\xf6\x9c\x28\xf7\x04\x36\x42\x88\xfe\x5a\x52\x11\x2b\xc5\x22\xde\xc6\x43\xe4\x35\x67\x07\x86\x49\xe9\x4e\xdf\x3a\xdd\xc4\x14\xef\xc5\xe3\xec\xbd\x8c\x73\xd2\x1b\x9d\xf0\x6f\xc9\x28\x8a\xf2\x93\xa3\x23\x67\x43\x68\x50\x37\x43\xec\x51\xe5\xac\x1c\x3f\xa4\xe5\xa4\xd8\xc9\x0d\xa2\x5c\xb7\x30\xf0\x8f\xb6\xdd\xf6\x83\x17\xe5\xb9\xc6\xf7\xd0\x73\xf4\x67\xb4\xdb\xa1\x1d\xe6\x87\x7c\x62\x75\xeb\xe3\xb0\xc0\x86\x42\x51\xef\xb0\x79\x2b\xd7\xc4\x60\x1c\x9f\xd1\xd9\x21\x32\xee\x19\xdd\x39\x93\x8c\x5c\x02\xfd\x9e\xd0\x0c\xef\xfa\xae\x08\x50\xc1\xfa\x47\x0d\xad\xe5\x0a\x5e\xaa\xbb\xa8\xdd\xbc\xa4\x68\xda\x25\x8e\xc2\xc1\x68\x5b\x13\x96\x03\x2b\xdd\x75\xd3\xf4\xd1\xc7\xee\x43\x00\x54\x20\x5c\x24\x57\xb3\x9a\x2d\x3b\x54\x27\x8a\x4f\x3a\xd0\x16\x14\x8c\x0b\x9c\xfb\x62\x5e\xcf\x6a\x42\x56\x62\x6d\x89\x8a\xd0\xd6\xa7\x65\x91\xd8\xf0\x52\xc9\x84\x3f\x7f\x3a\x8b\x0b\x70\x49\x39\x5c\xb0\x85\x9b\x98\x98\x35\x4f\x90\xcc\x24\x0a\xdb\x13\x7f\x44\xbd\x11\x32\xac\x51\xb7\x2e\x05\x18\x4f\x28\xb2\x2c\x30\xc7\x9a\x17\xeb\x4d\x46\x81\x1b\x87\x0b\xb9\x29\x9a\xd6\x1b\x75\x9f\xec\xfc\x3e\xd8\x5f\xd7\x54\x5c\x34\x2d\x3e\x40\x1f\xcc\x3a\x5e\xf4\x50\x39\xbd\xb6\xd4\xac\xae\x31\x26\x42\x3b\xd9\xfa\x01\x77\x50\xb0\x33\xde\x1a\x3c\xca\x88\x77\x8c\xab\xb2\xf7\xf4\x0e\xa0\x92\x06\xae\xda\xe9\xb7\x15\xdb\x70\xcd\x05\x3a\x8f\x7d\xcb\xb9\x70\xdb\x38\x8c\xd3\xe7\xcf\x04\xbd\x7a\x91\x2f\x20\x56\xde\xbf\xb7\x73\x0d\xa6\x70\xff\xf3\xa7\x33\x85\x1a\x83\xe5\x51\x5e\x88\xae\xc3\x3e\xfb\x46\x0d\xcd\x9b\x4d\xe1\xa6\xb1\x63\xb7\x55\x5d\x97\x44\xa9\x6e\xd4\x66\x80\x25\x57\x33\xb9\x65\xda\xf5\x73\x01\x4c\xd4\x47\x11\x82\x4a\xb7\x1b\x42\x0c\x2f\x76\xd7\x07\xb0\xad\xe6\xda\x2d\xae\xaf\xb8\xb0\x53\xd5\xb7\xec\x9f\x03\x3a\x7d\x98\x11\xed\xec\xaf\x0e\x41\x24\x84\x9d\xb6\x7e\x49\xee\x67\x13\xaf\x3f\x29\xa9\xf5\xb5\xc0\x02\xe1\x92\x6c\xe2\x00\xb8\xe0\x34\xdc\x1e\x6c\x19\x9f\xc5\xa9\x3f\x7b\x85\xf7\x82\x00\x4f\x28\x8d\x3b\xb1\x3a\x8f\xc0\x3b\xcf\xa5\x56\x42\x30\x73\x5e\xb5\x41\x34\xeb\x30\xad\x75\x40\xdb\xed\x5e\x38\x29\xe9\x3a\x8b\x8b\x3e\x0a\x4d\x5b\x61\x5b\x86\x53\x64\x2c\x3b\x44\xb5\x79\xa5\x79\x86\x71\xba\x07\xe2\x65\xa8\x1d\x0b\xb0\x3e\xdf\x48\x70\xf2\x53\x7c\x08\x75\x40\xb8\xa1\x22\xf8\xaf\x20\x7b\x96\xa1\x62\x14\x18\xcd\x73\xa8\x71\xf8\x46\x65\x32\x26\xbf\xee\x19\xb5\x60\x54\x07\x36\x41\x14\xc5\xbc\x65\x39\x51\xfb\x25\xc2\xed\x44\xd7\x67\x61\xcf\x0d\xea\xe4\x2f\x7c\x4f\x41\xc2\x31\xf7\xcc\x76\x1f\xbb\x7d\x72\x7b\x4f\x7a\x1b\x94\x83\x21\x8f\xb9\x2d\xce\xa9\x10\x19\xf5\xcd\x21\x75\xa5\xdd\xbb\x15\xcd\xfd\x74\x56\x76\x4d\x6d\x0b\x79\xa1\x30\xcd\x62\x53\xe1\xc1\x4f\xbf\x30\x08\x56\x64\xb9\xda\x29\x36\x83\xd8\x87\x4e\xa4\x10\x6f\x43\x42\x89\x45\xd1\x8a\xa2\x38\x85\xb1\xdf\x29\xc7\x06\x07\xdf\xbf\xd3\x52\x07\xdc\xcc\xf9\x5c\x99\x42\xab\x15\xd8\xb2\x2c\x8a\x58\x43\x19\x36\xf0\xa1\x13\x45\xb1\xc4\xef\x81\x73\x13\x52\x3f\xd6\xea\xc2\xda\x5c\xe1\xfe\x67\x89\x28\xb0\xfc\x5a\x19\x47\x74\x8d\x5a\xad\xf6\x70\xe8\x20\x9c\x6f\x8b\xae\xee\xa6\xd7\xaa\x86\x34\x49\x3d\xd1\x03\x30\x12\xf5\x59\x4c\x66\x58\x3b\x96\xa9\x39\x11\x1c\xa1\x69\x6c\xda\x7f\x21\x04\x5d\x6f\xa0\x07\xf2\x8a\xf2\x96\x5e\x14\x20\x10\xc7\xb5\x9b\x10\x4d\xda\xca\xee\x2d\xf7\xba\x81\x1c\x14\xa8\x06\xaa\x5a\x8c\x4b\xc1\x34\x8f\xb7\x6c\xe4\x16\xcc\x65\x8f\x0d\x9a\xe1\xb5\x02\xdb\x0a\x54\x52\xca\x6e\x91\x77\x17\x10\x5e\x0b\x02\x97\x29\x86\xd5\x89\xd9\xe0\xe1\x30\x5c\xf0\x0e\xe1\x4f\x7d\xa8\x33\xe2\x43\x52\x60\x8e\x50\xcf\x70\x3e\x6e\x5d\x3c\xd2\x4e\x3f\x35\xc5\xc8\x77\x31\x45\x72\xb2\x15\x45\xe5\xf0\x49\xa5\xd6\xde\xb4\x1e\x3e\x48\xaf\x35\x4c\x25\x5b\x7a\xd0\x1b\xe1\x7e\x80\xa5\xf6\x71\xa2\xed\xe3\x6b\xd8\x6b\x7b\x05\x16\x20\x2a\x40\x48\xb1\xa8\xe3\xb0\xee\xa6\x71\xf0\x80\x22\xac\xb7\x93\xbf\x78\x17\x9f\x5e\xbc\x3f\x7f\x7b\xf1\xf6\xc3\xfb\xee\xab\x0f\xef\x3e\x9e\x9d\x5e\x9c\x0e\xfb\x08\x07\x67\xd3\xd8\x49\x29\x34\x24\x55\x34\x7d\x9c\xfa\xa6\x83\x05\x72\x9c\xf6\xc0\x36\xb4\x13\x2a\x5c\xeb\xd8\xec\x29\xa6\x9e\xf3\x78\xd7\x04\xa6\xc6\x36\x7a\xa7\x78\x48\x29\xa0\x39\xc1\xfa\xb7\xa3\x37\x4e\x25\x7a\x93\x72\x01\xb3\x07\x13\x56\xfa\xb8\x94\xf6\x0b\xa1\x6e\xbb\x62\x48\xbf\x30\x41\x17\xfe\xa5\xc7\x07\x03\xa4\xe2\x7a\xc5\xcc\x66\x90\xf7\x99\xea\x9e\x15\xdb\xfb\x40\xca\x83\x58\x4e\x60\xf7\x49\x12\xce\x12\x80\x85\x29\x72\x0e\x7c\x65\x6c\x06\x4d\xc8\x7c\xf2\x3f\x16\x28\x00\x47\x96\x5b\xe0\x86\xd0\xf1\x18\x0b\xd4\xe7\xd2\x37\xf9\x04\xc5\xb0\xca\x35\x7b\xc0\xfa\xff\x83\x53\xec\xcd\x00\xd0\xf7\xf5\x09\xb0\xbd\x83\x39\x80\x2c\x6e\x0a\x3c\xe0\xfe\x35\xc3\x1d\x63\x11\xce\xb9\x3a\x5e\x0b\xbd\x98\xf5\xa6\xdd\xbe\xd5\x51\xa3\x3e\xf0\xcf\xaa\x40\x2c\x71\x85\xb0\x70\xc2\x67\xb8\xd9\x00\x55\x05\x7f\x63\xcd\xba\x14\x54\x39\x72\xe4\x57\x85\x1e\xd4\x3e\xf4\xa6\x3d\xdd\xc7\x98\x09\x10\x9b\x6a\xe7\x01\xa5\xaf\xa7\xaf\xe5\xe1\x0c\xc8\x67\x0d\x9d\x5b\xaf\xf8\x3a\x88\x36\x26\x3a\x6d\x5c\x21\xa1\xbc\x7f\x35\x40\x14\x0d\x41\x47\xe0\xa5\xce\x36\xd4\xc7\x89\x30\xbe\xb1\xb0\xae\xc9\x78\x01\x33\x80\x6b\x3f\x2b\x0a\x86\xd0\x3a\xf5\xfb\xf9\x25\x5a\x26\x97\x12\xe1\xc4\xb8\x8e\xf9\xcc\x00\x04\xf1\x60\x2f\xc2\x0a\xc2\x49\x92\x0f\x71\x0e\x32\xd6\xdc\xdd\x12\x1e\x53\xba\x50\x9a\x3d\x4e\x01\xd9\xab\x46\x27\xda\xa1\xcb\x1a\xeb\x69\x71\x70\x82\x01\x38\xc9\x6c\xf0\x10\xa7\xf8\x70\xd3\x4e\x60\x51\x95\x92\xa6\xb3\x72\x00\x67\x2a\xca\xa6\xa2\xa6\x4e\xdf\xca\x62\x9e\xc8\x89\xc0\xbd\x91\x9c\xde\x1a\xd0\x3b\x00\x23\x69\x43\xb7\xcc\xbd\x96\xe4\x21\x3c\x62\x12\xc5\x53\x40\x10\x9e\xd4\xf2\xc9\x47\x0b\x5a\xe4\x0b\x80\x88\x49\x32\xdb\xe1\xca\xb8\x95\x53\x5e\x03\xd3\xd6\xc0\x2f\x19\x29\x92\x7c\x86\xe7\x24\x4d\xf2\x59\x27\x8b\x22\xed\x57\x87\x10\x32\x57\x4f\xdb\x6d\xcc\x01\xf1\xe7\xd3\xb8\xb4\x27\x1a\x26\x6c\x8e\x70\x16\x45\xa5\x81\xdd\x46\x1c\x9e\x21\x34\xa9\xb6\xdb\xcc\xac\x55\x4f\xd6\xa5\x9f\xa7\x71\xa5\x34\xce\x6b\xb0\x47\xd7\x87\x26\xa5\x07\x29\x8d\x80\x4f\x0d\xc2\x0c\x00\x33\xe7\x66\xce\x8c\xa5\xd1\x07\x39\x2a\x8b\x70\x69\xde\x29\x69\xb4\xaa\x41\x31\xd6\x19\x86\x9c\xde\x52\x5e\x42\x8a\x5c\x48\x87\x7f\xb4\xea\xd4\x50\xe7\xa3\x03\xf8\xe0\x7e\x98\xc1\x60\x29\xeb\x9a\x32\x80\xae\x16\xa0\x6b\x4e\x5c\xfa\x49\xaa\xf4\x46\x6c\xc4\xc3\x3c\x49\x67\x9d\x2a\x2e\xb0\x53\x0f\x37\xfa\xb5\x0d\x31\x0f\xd8\x07\x29\xd3\x1a\xd5\x95\x22\x54\x24\x6f\xf3\x30\xb6\xdd\x06\xda\xe6\xda\xb3\x77\x9d\xd7\x6a\xb8\x26\x60\xb8\x8f\xe7\x84\x1e\x72\x8c\x85\x97\xc4\xf7\x6d\xc5\xa3\xa8\x47\x0f\x3a\xb4\xc2\x2b\x42\xeb\x64\x66\xe8\x1f\x8b\xe3\x45\xbd\xce\xb6\x2a\x1b\x3e\xb0\x3a\xf3\xed\x76\xb9\xdd\xae\xb6\xdb\xc5\x54\x8f\x09\x72\x48\x6c\x32\xd3\xe2\x4b\x87\x5f\x66\xa0\x44\xc0\xf7\x5e\x06\x0d\x2f\x48\x76\xa9\x95\xa7\x45\x51\xa7\x8e\x72\xa4\x3c\xe9\x10\x02\x3e\xee\xa3\x48\x87\x28\x95\x2f\x9a\xef\x65\x84\x69\xe1\x1d\x00\x80\x7f\x5f\x37\x24\xf0\xc7\x0c\xf3\x99\x0a\xa8\xc1\xf7\x38\x8e\xf3\xad\xfb\x61\x97\x8d\x40\xb7\xc2\x84\x0f\x03\x17\x5c\xd6\x5f\x3c\x93\xdb\xac\x48\xaa\xe1\x0d\xbd\x9f\x91\x4a\xc7\xc6\xe3\xda\xe1\x65\x35\xd4\x2d\xec\x6b\xae\x56\xd0\xea\x50\x2a\x26\x6c\xc8\x27\xd8\xaf\x5b\xdc\xa4\xf6\x56\xda\xcd\x92\xc1\xab\xf9\x41\x4c\xdb\x5c\x7c\x75\xf1\x4f\xb0\xc3\x61\x81\x4d\x95\x35\x0f\x11\x3e\xb5\x4b\xa3\xc8\xd7\x06\xb1\x1c\x57\x5c\x37\x89\x6f\x6d\x13\x01\x1b\x92\x6a\x17\x87\xfe\xc1\x57\x31\x1c\x77\x6a\x62\xda\x3a\xa1\x5a\xfa\xbd\xfe\x36\x1e\x19\x02\x6b\x1d\x02\x98\x98\xe0\x5c\x76\x58\x14\x24\xa0\x03\xbc\xee\xb6\x33\x3e\xf6\xdf\x6c\x78\x1f\x11\x5f\x03\xe5\x9c\x8c\x94\x73\xd5\x98\x91\x54\x22\x7c\x71\x78\x29\x26\x7c\x86\xe4\x75\xae\x35\x67\x0a\xc5\xf0\x02\x24\xb2\xf0\xb5\x83\x9b\xe7\x28\xc5\xc6\xa6\x34\x20\xed\xc4\x6c\x0f\xeb\xcf\x78\xe8\x0a\x4b\xc4\x29\x0e\xee\x68\x85\x02\xaa\xdb\xa4\xee\x48\x0a\xc6\x1a\x45\x8b\x76\x0a\xd8\xdc\x35\xde\x1d\xd3\x64\xbe\x1b\xb5\xe5\x86\x71\x8a\x6f\x1e\xaa\xc9\x14\xf5\x1f\x23\xad\x53\xbf\x57\xa2\xa9\x55\x75\x41\x21\xe1\xa0\x14\x53\x09\xe1\xe4\xca\x86\x17\x9e\xb5\x29\x38\x10\x15\x42\xd3\xcb\x1e\x6f\x2b\xa6\xc8\x78\xbf\xd2\x16\x9f\xbe\x48\xe6\xa2\xd8\x13\x3b\xe4\xdf\xe5\x9a\x78\x9f\x97\x9d\x69\xac\x43\x7b\xb5\xf6\xd9\x72\x6b\x7a\x63\xa4\xaf\x88\x70\x4c\xe0\xdf\x8e\x83\x07\x30\xbe\xa6\x0b\x96\x0a\xef\xc6\xf9\x6f\x1a\x54\xb7\xb5\x5f\x2a\x6c\xa8\xdc\x9b\x4b\x4e\xcb\xbd\xb1\xd6\x1a\xa2\x06\x4e\xc4\x54\xd4\xc4\x0a\x79\xcd\x09\xa4\x65\xe0\xc1\x8a\xe7\xc9\xc8\xb2\x08\x0c\x4f\x0c\x0c\x30\x58\x7e\xdd\x4d\xbb\xba\x03\x81\x35\x86\x11\xf4\xb4\x61\x41\x1e\xbb\x8c\x61\x8a\x8d\x1d\x4d\x0b\x09\xb3\xdd\x86\x62\x2e\x03\x64\x5a\x58\x69\x85\xef\x9d\x4d\x84\x08\x85\xf0\x5d\xb4\xa5\xd6\x45\x9b\xef\x9f\x2d\x55\x33\x09\x45\x7e\x60\x62\xb5\x57\x26\xbd\x67\xc7\xdb\xe6\x02\xb9\xd3\x7f\xf1\xee\x70\xaa\x16\x19\xd8\xca\x11\x96\x40\xd4\x33\x96\x8c\x67\x5a\x7b\xba\xce\x96\x2c\xd0\x21\x51\x17\x9e\x4b\xe4\x61\x49\x46\x78\x45\xca\xa6\xed\xc2\xc9\xf2\xf9\xea\x64\x30\x58\xa2\x87\x2a\x9e\x07\x8a\xb1\xc9\x72\xe6\x59\x80\xb9\x00\x92\xf3\x9a\xae\xfb\x5e\x54\x93\xe2\x39\xcc\x1c\x74\x6e\xbf\x20\xad\x75\x4c\xc2\x86\xb6\xf9\x4a\x51\x44\x72\x3f\xd3\xec\x7d\xc5\xd5\xb1\xda\x14\xc1\xd4\xe4\x4a\x67\x9d\x5b\x16\x64\x4b\xb7\x42\xd3\x86\xdc\xaf\x15\xc2\x19\x79\x67\x0a\x22\x99\x37\x44\x40\x0a\xef\x6f\xe1\x6d\x37\xd1\x72\x5f\x91\xaa\x44\x10\x00\x56\x6e\x00\x46\x32\x1b\xbc\xee\x39\x8b\xa2\x34\x99\x5b\x89\x11\x3d\x19\x0c\xe6\xe8\x84\x2d\xe3\x39\x21\x36\x5f\xd8\xfa\x52\xdd\x14\x9d\xa5\xcf\xbc\x4d\xad\x53\xb9\xf9\xc0\x04\xdd\xf1\x12\xb4\xee\xd6\x59\xec\x2d\x47\xe9\x96\xa3\x61\x04\xb0\xc4\x19\x2e\x75\x50\xe4\xc0\x8c\xcc\xc7\xe7\x54\xec\xb2\xed\xb6\x67\x3a\xd8\x55\x01\x07\x17\xe4\x61\xd7\xa9\xe2\x05\xe6\x46\xbf\x3c\xa0\x74\xec\x29\xb8\x95\x78\xf9\x1a\xad\xeb\x78\xf9\x2d\x8a\xa2\x45\x5b\x62\xbc\x48\x6e\x67\x64\x9d\xdc\x3a\xba\x71\x15\x45\xbd\x0d\x34\xe5\x2f\xfc\x7f\xf1\x31\x76\x47\x38\x80\xf7\xe1\xb6\x8b\x29\x86\xd3\x0d\xb1\xaa\xd4\xd5\x5a\x73\x86\xf8\x5f\xd2\xb7\xaf\xe7\xaa\x8f\xb1\xba\x2b\xb5\x29\x92\x09\xb1\xf1\xab\x8e\x3a\x02\xd1\x43\xfc\x80\x23\x79\xb1\xa0\x47\xeb\x62\x51\x65\xb4\x16\x6b\xa4\x1e\x51\xa4\x16\x4d\xc4\x72\xa2\x02\x34\xea\x52\x4b\xf6\x5e\xa5\xca\x3f\xa8\x13\x61\x6c\xb7\x71\x6b\x06\x88\xa2\x23\x76\x74\x98\x96\xe9\x86\xfc\x1d\xd3\x61\x9a\x65\xe4\x93\xfa\x57\x92\xc3\x05\xf9\x59\x62\x83\xe9\x9c\x92\xd7\x18\x9c\xb7\xac\xc8\x5b\xfd\x60\x72\xbc\x01\x7f\x14\xc0\x63\x22\xbf\x62\x18\x38\xe5\xe4\x7b\x78\x92\x63\x64\xcb\x7b\xf2\x0a\x83\xb2\xeb\x92\x5d\x57\x9c\x12\x89\x61\x16\x39\xd9\x50\xf9\xbf\x5c\x92\x35\x75\x2e\x2d\xc8\x0f\xd8\x48\x46\xc8\x2f\x58\x05\xb3\xf9\x8c\xe9\x70\xc9\x32\x41\x39\xf9\x4e\xf6\xae\xbc\xcf\x25\x51\x0e\xcb\x71\x01\x7e\x5f\x09\x1d\x5a\x47\x03\xc3\x79\x5a\x8a\xf6\x18\x27\x8c\x3c\xac\xd9\x17\x96\x4f\x5a\x5d\xbf\x14\x1a\x88\x16\xb9\xee\x97\x7a\x5b\x2e\xb1\x15\x22\x10\x7f\x3b\xe0\xb6\x39\xd5\x30\x80\xee\x70\xe1\x37\x63\x82\xdc\x5b\x2f\x16\x36\xcc\xbd\x1f\xbd\xf1\xe2\x7e\x43\xb5\x0a\xb7\xa9\x51\x05\x83\xbf\xa2\xdd\xb4\x6b\xcb\x1a\x81\x55\xae\x7d\x12\x31\xc2\x21\x16\x24\x84\x48\x90\x8f\x24\x99\x21\x7c\xa4\xa2\xc6\x99\xc8\x69\x02\xa8\x0a\xcd\xf5\xdb\xe1\x62\xb9\x9c\xb4\xde\x2f\xaa\xce\x8e\xd3\x44\x50\x55\x82\x0a\x9c\xab\xcb\x86\x6c\x63\x3a\xd0\x6a\x5c\xe0\xb1\x76\xc8\xac\x7b\xb0\xc3\x7a\x9e\x26\xf5\xdd\xac\x51\x23\xd5\x92\x8e\x62\xc9\x90\xef\x9d\xaf\x16\x78\x31\x1e\x61\x96\x14\x33\x04\x7e\x00\x77\xbb\x4e\xb8\xf6\x4c\xab\x9f\x3d\x30\xd0\xa6\x86\x90\x48\xbd\xf1\xce\x37\x12\x35\xf3\x7f\xec\x93\x93\xe1\x6d\xd0\x2d\x64\x4f\xe4\x0f\x11\x3b\x36\x84\x7d\x12\x17\x48\x5f\x50\xc9\xac\x16\xd4\x45\x8e\x43\x4e\xb0\x8e\x14\x0c\x81\xbd\x27\x14\x6f\xd2\xfb\xac\x48\x17\x13\xf0\xc4\x21\x86\x97\xd7\x15\x5b\xfc\x8d\xde\x63\xb6\x90\x6f\x6c\x81\xa9\xec\xf8\x7b\x95\x79\x41\x45\xca\x32\xf9\x81\xd3\xb2\xca\x04\x06\x4f\x7e\x6f\x17\x13\x2e\x49\x59\x99\x3b\x93\xf0\x40\x66\x80\x07\x2c\xd8\x9a\x9e\x8b\x74\xbd\x99\xbc\x96\xa4\x56\x5e\xdc\xc5\x08\x83\x4c\x6b\x52\x24\x7d\x37\xfc\xa3\x3b\x26\x56\x47\xa0\xa1\xde\x9f\x4d\x9d\x61\x80\xa9\x48\xbb\x99\xdb\xa1\x28\x2a\xa9\xb8\x60\x6b\x5a\x54\xc2\xd7\x37\x32\x6b\x41\xc9\xe8\x84\xba\xd8\x4e\xd4\xf0\x50\x05\x81\x88\x9b\x9c\x88\xa1\x1e\x71\x87\x0f\xe5\x58\x09\x1f\xde\xd0\xfb\x01\x1f\xb2\x05\xd6\xb1\x9d\xbe\xf3\x93\xf5\x08\x31\x57\xb6\x97\xc0\x61\x31\x1a\xf5\x90\xa2\xde\x10\x2e\xac\xdc\x4e\x68\x07\x4c\xa6\x25\xb4\x73\x11\x88\x77\xf8\x4f\xa3\x30\x6c\x8e\x51\x3b\x69\xf1\x22\x03\xda\xe2\xbe\xca\xbd\xb2\x79\x33\xeb\x4f\x3b\x0e\xc3\x92\xe9\xf1\x1c\x0b\x7b\x21\xad\x41\xb1\x02\x73\x3f\xf2\x0d\x7a\xd8\x29\xfc\x41\x9f\xf9\x15\x19\xe3\x05\x39\x76\x1b\x65\xe3\xe2\xe4\x87\xcd\x06\xdd\x88\x22\x99\x74\x5a\xeb\x9c\x85\x87\x84\x64\xd3\x9a\xa0\x65\x78\xa9\x28\x5c\x42\x56\x53\xf0\x08\x6e\x36\x10\x9a\x78\xdf\x16\x53\xb9\xde\xc6\x46\x15\x34\x42\xae\x83\xcc\x68\x72\x15\x1b\x59\xa2\xbb\x71\x20\xd6\x32\x21\x1c\x6a\xe6\x68\xb2\xd6\x24\x60\x8b\x27\x89\x6b\xed\x3a\x6e\x07\xff\x93\x16\x17\x3d\x7c\x5a\x3f\xfb\x85\x02\xdf\x0d\xab\x73\x08\x0c\xc1\xda\x0c\x75\xf9\xfd\x03\xb5\x11\x5d\x70\x6e\x64\x63\xcc\x69\x61\xee\x76\x31\xc7\x22\x18\x42\xbe\xdd\xc6\x2a\xc0\x45\x73\x2c\xb5\xc1\xd8\xac\x6a\x38\xf2\x06\x37\xc7\xa4\xd3\xcb\xa3\x88\x41\xb0\x56\xfd\x1d\x0c\xd4\xa9\x1a\xb1\xac\x51\x3b\x64\xb7\x4b\xbe\x76\x3b\x50\x6e\x2f\xa4\xbe\xdb\x30\x47\x4c\x4f\x4c\x9c\x13\x81\x74\xc4\x72\x89\x35\x9b\xbd\xaa\x44\xba\xfe\x2d\x41\x98\x5f\x87\x02\xd2\x20\x47\x95\x67\x4f\xac\x68\xae\xa7\xa3\x08\xfd\x7b\xc8\xbe\x16\x68\x67\x76\x20\x6c\xd4\x1c\xb3\x5a\x4c\x18\x6a\xf7\x87\xdc\x7d\xe6\x39\xa6\x76\x8b\xe0\xcb\x20\x90\xcc\xbd\xf1\x52\x65\x37\xd9\x52\xd2\xc7\x26\x3b\x11\xd8\x7e\x5a\x61\x20\x9f\x87\x97\x65\x75\x55\xce\x39\xbb\x72\x11\x84\xa7\xc5\xd0\x81\xaa\x28\xaa\xe4\xad\x98\x2d\x59\x96\xd1\x45\x1f\x53\x34\x31\x5b\xe4\x12\x53\xdf\xce\xfc\x7a\x5f\xe3\xea\x75\x81\xfd\x7e\x98\x3a\x6e\xc3\x3a\xae\xea\x92\xbe\xb0\x83\x60\x99\xa7\x0d\x6a\x69\xed\xec\xb0\x24\x9d\x11\x21\xff\x06\xab\x19\xe1\xf0\xb0\x98\x91\x1c\xc6\x99\xc2\xfc\x69\x76\x98\xdf\x7f\xd7\xf4\x65\x80\xac\xf9\x8d\x72\x62\xca\x42\xc8\xca\xda\xe4\x70\x38\xe6\xde\x14\x4d\xfa\x0a\x3d\x52\xb3\x85\x47\xbe\x66\x9d\xe3\xd1\x63\x06\xaa\x92\xe6\x66\x51\xd1\x76\x85\x8b\xb6\x4b\x9e\xa2\x9c\x88\xa4\x9c\x61\x26\xff\x06\x7c\x86\xf3\xe9\x5d\xac\x98\x99\x29\x9a\xb0\x38\x95\x58\x6c\xcb\xf2\x91\x91\x17\xa9\xea\xae\x41\x04\xe2\x94\xb4\x01\x02\x5c\x12\x65\x7a\x91\x22\xb9\x7b\x19\xe1\x71\xee\x89\xb9\x4b\x15\x17\xb6\x52\x18\x04\x23\x79\xc7\x40\xb2\x1e\x21\x4b\x40\x6c\x08\x11\xd3\xeb\x58\xe0\x1a\xa2\xf4\xc2\xa8\xb4\x95\xdd\xb9\xc1\x99\xe6\x69\xae\x14\x6f\x35\x31\x91\x8a\x6e\x99\xae\xa9\xc9\x39\xec\x23\x34\xe9\xc1\xed\x0d\x35\x16\x68\x92\x4e\xd7\xb1\xc0\x0c\x4d\x0c\x54\xb5\x2f\x8b\x28\xba\x86\x37\x14\x78\xb5\xf6\xe3\x74\x2a\xee\x8d\x5d\xc1\x5c\x56\x11\x45\x3d\xba\xdd\xe6\xaa\x02\x6b\x64\xd2\x6d\x6c\xfd\xf9\x2a\x65\xb9\x89\x96\xa7\xc2\x66\xc0\xaf\x22\x3c\x82\x2d\xe8\xe9\x0e\x2b\x1a\xc4\xdd\x16\xf1\x1c\x73\xcb\x1c\xd2\x6b\xde\xb6\x99\x6a\xcd\x31\x49\xff\x10\xb2\x44\x57\x8e\x1b\xe5\x43\x9a\x92\xc0\x58\xa6\x74\x22\x3a\x0d\xc0\x6d\x01\xce\x5d\x2c\xf7\x4c\x89\x53\x79\x15\x58\x98\x7c\x0b\x4e\xba\xf7\x98\xae\x84\x3e\x6c\x8d\x22\xcf\xab\xc0\x1c\x4e\x69\xd3\x18\xaf\x71\x10\xc7\x62\x6e\x15\xf7\x2f\x41\x4f\xe7\x43\xfe\x49\x51\x0a\xda\x47\xc3\x25\x2b\x3f\x97\x2c\xbf\x56\x84\xae\x22\x07\x08\x21\x37\x8d\xaf\x9a\x8b\xee\xdc\xeb\xc9\x6b\xd6\xe4\xca\x99\x50\x04\xbc\xd6\xbb\x33\xf8\xe2\x41\x07\xb7\x50\xac\x5d\xd8\xa3\xcf\xcd\x76\xab\x7d\xfb\xeb\x63\x64\xfa\xcc\xe9\x3a\x65\x39\xcb\xaf\xbd\x14\x80\x62\x9e\xdf\x7c\x33\x6a\x0a\x86\x9b\x4a\x1d\x1d\x9c\xf1\xd9\x84\x3d\x64\xb0\xd7\xa0\xd1\x6c\xd7\x53\x0a\x11\xaa\x79\x00\x4c\x0d\x1d\xac\xdb\x4a\xe7\xab\xd3\x5c\xf0\xfb\x98\x26\xf9\x0c\xe7\x20\xe3\x31\x8c\x4a\x3a\xbf\x79\x53\x65\x00\x92\xc0\xb6\x5e\xf5\xa6\x91\xee\xaf\x3f\x5b\xc6\x23\x62\xdd\xdd\x99\x41\x07\x6e\x09\xcd\xce\xbd\x8f\x83\x9e\x52\x54\x9b\x18\x25\xa3\x91\x10\x02\x68\xd0\x77\xe9\xfd\x15\xbd\x58\xd1\x3c\xbd\xca\x9a\x62\x4b\xff\x8c\xb6\xec\x34\x6b\x17\xd3\xdc\x1e\x3e\x4c\xeb\x8d\x3a\x0a\x6e\x51\xff\xd6\xad\xd0\x43\x6a\x20\x17\x5c\xef\x1a\x91\x73\xa0\x0b\xd5\xef\x11\x0d\x2c\x14\xf1\xfc\x42\xd8\x0b\x0c\x0b\x77\x81\x61\xee\x50\x86\x16\x92\x91\xa1\x7a\x25\x2b\x59\xda\x2f\xb5\xe7\x38\x58\x39\x3b\xbd\xeb\xe6\xf1\x1c\x75\x00\x0a\xa6\xd3\xeb\xb8\x94\x50\x30\xde\xc4\x25\x96\x48\x8e\xee\xe5\x1d\x33\x8c\x80\x17\x22\x06\x53\x85\x20\xe8\x4e\xf8\x5d\xd5\xd9\x82\x26\x0a\xed\x57\x51\xe2\x21\x7b\x0b\xfb\xde\x20\x4d\x4c\x1d\xb7\x05\x1b\x8b\xaa\x7d\x27\xb6\xa2\xf9\x53\x7f\x76\x82\xbd\x61\xb0\x36\x9b\xe1\x13\x4c\xb7\x37\x81\xde\xae\x5a\xbc\xd8\xcb\xea\x0c\x0e\x52\x87\x85\x18\x49\x0b\x7c\x52\xd6\xe1\x8b\xe9\x75\xcc\x64\xf3\x71\xb3\x7d\x53\x3f\xde\x7b\xc0\x90\xed\x9b\x29\xb4\xcf\xab\x8d\x3b\x5c\x47\x47\xc1\xc1\x49\xc4\x8c\x70\xa8\xc5\x9f\xfb\x03\x07\xa6\x23\xf1\xa5\x3a\x81\xe0\x2b\xa0\xb7\x6c\xc1\xdd\xa3\x39\x17\x26\x67\x23\xe2\xc4\xb9\x25\x98\x1e\x1d\x87\xba\xa7\x1f\x60\xe2\x27\x3e\x02\x09\x22\xf9\x09\xdf\x4d\xcc\x37\x87\x2d\x71\x9a\x96\x45\x3e\xe1\xca\x29\xd9\x07\x02\x4c\xb9\xcb\xfe\xc0\x11\xd3\x83\xfe\x51\x1f\xbf\xd0\xfe\xb9\xf6\x79\x60\xf7\x7a\xc8\x16\xe4\x85\x89\xb7\xa5\x68\x06\x0b\xc4\x9b\xd6\x97\x06\x7c\x05\x69\x1e\x7e\x45\x92\x19\x6e\x5e\xd8\x60\x46\xae\x2f\x6c\x84\xe7\xda\xc9\x59\x1b\x23\x29\x8a\x02\xf9\x6c\x0b\x53\xe9\xc7\xa2\x52\xfc\xa4\x4d\x5a\x96\x20\xb8\x82\x33\xc7\xbb\x8e\x55\x52\x82\xd9\xff\x92\xf1\x52\x74\xcd\xcd\xd7\x15\x05\xa4\x1a\xdb\x01\x0f\xf1\xe8\xa3\x9d\x76\x0a\xea\xab\xe3\xd2\x69\xdb\x45\xd8\x1b\x03\x08\x15\x21\x8c\xd0\xca\x56\x78\x6d\xa8\xaf\xd6\xaf\x86\x36\x33\x28\x63\x8e\x1e\xae\x95\x2f\xfe\x9d\xf1\x0c\x30\x79\x6c\xf4\x6f\x52\x96\xd1\x85\x1c\x8c\x1d\x40\xf7\x1b\x0d\x18\xbf\x99\x74\x3f\x66\x34\x2d\x69\xb7\x02\x00\x45\xbb\xdf\xe4\xf4\xee\x9b\x6e\xb1\x91\xb7\x6b\xc1\x31\x00\x2d\xed\xc7\xc4\x9f\x00\x83\x6b\x5e\x51\x40\x3f\xe9\x42\x4e\xa1\xe3\xd5\x0d\x61\x82\x0e\x63\x0e\xe6\x7a\x68\x97\x5f\x4a\xc4\x6b\x29\x28\xf7\x11\x2f\xe1\xd1\x6d\x8e\x51\x62\xb4\x9b\x81\xc6\x57\x04\xec\xee\xab\x62\x93\x81\x42\x9f\x61\x5c\x1e\x8c\x4c\xe6\xa9\xaf\x78\x73\x60\x44\xcf\x4d\xb4\x5f\xc3\xe2\xfd\x9e\xe8\xbf\xce\x83\x72\x3b\xfb\xe1\x91\xd2\x5a\x73\x76\x87\x76\x1a\xe0\xeb\x88\x6d\xcd\x40\x37\x17\xfe\x94\x3c\xc8\x6c\x6e\x2f\x01\x58\xb5\x2c\x62\x9f\x0d\xe1\x51\x41\xaf\xfc\xd9\x69\x61\xa3\x3d\x16\x16\x69\x30\x46\x98\x29\x3c\x62\x74\x52\x80\x4b\x02\x1b\x31\xc6\x49\x23\x8a\x99\xf6\x98\xf0\xa0\x0d\x11\x7b\x40\x78\x36\x2e\xc0\x14\x81\x7b\x90\x90\xe5\x74\x83\x5c\x00\x5b\x85\xc8\xa4\x3e\x22\x93\xf9\x98\xc1\x8d\xc4\x0c\x2c\x8f\xa7\xc4\x19\xc2\xa5\x21\xcc\x7a\xe3\x0e\x8b\xa2\x9e\x51\x3e\x4f\xc9\x45\x2c\xe9\x45\xb4\xcb\x93\x62\x46\xd2\x9d\x52\xb0\xaa\xd7\x92\x27\x7c\x56\x53\xfc\xa1\xd3\xeb\xb8\xc2\xd6\x8d\x32\x90\x77\xeb\xb8\x92\xf7\x63\xcf\xbd\xb5\x63\xb5\xb4\x55\xa8\x73\x34\x6e\x15\xe7\x50\x4f\x8f\x80\xef\x62\x87\xce\xa3\x49\x18\x32\x57\xa0\x5a\x93\xa1\xad\x38\x04\x06\xa2\x4e\x23\xd3\xb5\x9c\x23\xbd\x70\xb9\x8a\x25\x23\x67\x82\xca\xe5\x32\x85\x53\x32\x3a\x49\x1d\xf5\x9d\x42\xe7\x44\x92\xce\x66\x84\x25\xa9\x17\xae\xc5\xef\x9f\x84\x77\x13\x35\x23\x3b\xcc\xa6\xcd\xcb\x5e\x97\xb9\x19\xc2\xa6\xdc\x1f\xef\xe1\x9d\x2d\xb2\x43\xbb\xb8\xc2\xb9\xf6\x32\x8f\x26\xef\xfc\xb7\x9d\x13\x03\x5f\x5e\x02\x9c\xba\xbc\x24\xd4\x67\x79\xbe\x0b\xb9\x72\x5a\x5c\x1c\xe7\x4e\x61\x9d\x29\xb0\xcc\x2c\x1d\x48\x5d\xe9\x4f\x01\xe0\x51\xbd\x06\x68\xe3\x64\x37\x37\xf8\x46\x49\x6f\x32\x0c\xdf\xdb\x61\x56\x3d\xd0\x31\x30\xb8\xbf\x18\x99\x38\xe8\xcf\x1b\xdc\x6c\xa2\x65\xc8\xd6\xf9\xa4\x77\x1d\x18\x75\x66\x30\x1b\xd2\x42\x16\x0d\xc2\xef\x98\x58\x75\xd3\xbc\x9b\xca\x16\xfa\x08\x40\xe2\x8d\x12\x83\xed\x93\xc9\x3b\x8e\xb1\x3c\xa3\xf5\x2e\x22\x7b\x9a\x78\x9d\x7f\x61\xad\x81\xd2\x39\x7d\xa4\x1f\x08\xf3\x8e\x17\x17\xbd\x41\xbd\x59\x03\x4a\xb9\xfb\xaf\xb4\x4f\x11\x03\x22\x93\x7c\x86\x0e\xe0\x72\x6b\x6d\x39\xd8\xf2\xe9\x5a\x7d\x42\x6e\x93\xca\xc9\xd0\x74\x73\x06\xcf\x3f\x87\xa1\x0a\xf7\x4d\x4d\x50\x21\x86\x7a\x9c\x8f\x19\x23\x2b\x21\x1f\x82\x64\x08\xc8\x79\x0a\x08\xd9\xc7\x47\x7c\xe3\xd4\xc0\xb4\xb1\xae\xee\x8d\xad\x63\x9c\x47\x7d\xde\xec\xe2\x2f\xde\xc5\xf0\xf3\xe3\xfb\xee\x63\x7c\x03\x77\xa6\xdd\x71\x37\x8f\x6f\x37\x2d\x39\xfd\x8a\x5d\x67\x7b\xf2\xba\x76\x78\xc0\x2f\x11\x9c\x9e\x8f\xfe\x14\xfa\xd4\xc1\x39\xcc\xd9\xfb\x03\x73\x66\x39\xef\xf1\x57\xeb\x5f\xa2\xed\xb6\x66\x46\xf9\x75\xe1\x0f\x3b\x7b\xd6\x26\xc7\xcc\x2c\xcd\xef\x71\x02\xd9\xc6\x75\x09\x70\x6d\xab\xb1\x1a\x72\x4e\xf2\x7d\x9c\x13\xe7\xcf\xa8\xe6\x06\x86\x59\xb5\x75\x6b\xe8\xa5\xc9\xbf\x3a\x17\x87\x05\x60\xbf\x08\xce\x68\xfa\x9c\x29\xe8\x4f\x68\x22\x40\xdb\xdd\xe8\x7e\x39\x6e\x0b\xc7\xe2\x51\x56\x4b\xb8\x4d\xdf\xd6\x37\x87\x39\xf3\xb8\x71\x2b\x50\x8b\x3c\x10\x42\xa8\x2f\x78\x30\x18\x5b\xbb\x38\xda\xec\xde\x55\x5a\xae\xf6\xed\x5b\x5d\x55\xe0\xfd\xeb\x7d\xed\x78\xec\x14\x2a\x7c\xf6\xdf\x71\x92\xdf\x7b\x53\xf4\xe6\xbf\x7e\x8a\x3c\x9d\x88\xdf\x32\x43\x67\x30\x43\x60\x48\xe6\x4d\x92\xed\xf8\xaf\xca\xa9\x8d\x6c\xaf\x5d\x54\xab\xbe\xd1\x1d\xc2\xde\x5d\xfb\xbd\xa3\x21\x1e\xf4\x50\x6d\x64\x53\x80\x4e\x26\x78\x45\xc3\x19\xb7\x46\xdd\x42\x5c\xcd\x79\xca\x06\x15\x74\xcd\x73\xdd\xa9\x79\x3e\x3b\x0c\x80\x5e\x3e\xea\x3c\x7f\xdf\x62\x8f\x30\x73\xcb\xfd\xef\x81\x0e\x81\x87\xd5\xbd\x9c\xd9\xa2\xc1\x99\x2d\xf6\x71\x66\x0b\xc3\xb1\x59\xa7\x9b\x37\x39\x61\xfb\xa0\xcd\x61\xb6\x8d\xdc\x6f\x20\x16\xa9\xc3\x02\xaf\x6e\x09\x17\x90\xf6\x23\x6b\x91\xad\x3a\x1f\x70\x81\x05\x66\x90\xc5\x63\xb4\x3d\xc6\x0e\x0a\x81\xc9\xe7\x30\xe8\x75\x1b\xa3\x61\xba\xef\x8e\x5b\xa7\x9b\x2e\xfd\xb2\x01\x57\x9f\x69\xc0\x54\x48\xbb\x25\x9d\x17\xf9\xc2\xf2\x14\xfa\x48\x62\xfa\xfe\x41\x6c\x04\xeb\xd1\x01\xaf\x1a\xb8\x54\xeb\xe9\x93\x4d\x1f\xbe\x4f\xfd\x43\xf7\x52\x81\x25\xd9\x66\xcb\x99\xfb\xe1\x00\xb0\x70\xb9\x7e\x69\xe4\x52\x5e\xc1\x65\x26\xb9\xbf\xfe\x21\x2f\x9f\x1f\xf7\xed\x7e\x54\x73\xbd\x52\x97\x35\xfc\x2b\xdb\xfe\x77\xb0\xe1\xc3\x18\xd8\x46\xfc\xdb\xc2\x9b\xd7\x8a\x58\x6d\xfe\x28\x68\x8f\x90\x7f\xec\xd0\x57\x72\xef\xbf\xee\x50\x3c\x34\x36\x6c\xc7\x28\x9b\x5a\x8e\x7c\xfd\x90\x38\x43\xf1\xc2\x1a\xcd\xd7\xce\x48\x0a\x67\xa4\x30\x81\x0c\xdd\x81\x33\x9e\x9a\xf7\x1c\x1f\xbe\xdd\xc6\xf5\x1e\xfd\x43\x5d\xc8\x2f\xbd\x33\xf4\xdd\xbf\x70\x86\xd4\xfc\xda\x63\xf4\xdf\x7a\x88\x74\xdb\x5f\x7f\x8e\x7e\x6c\x3b\x47\x72\x81\xfe\x86\xff\x40\x46\x6e\x42\xfe\xae\xce\xca\x9c\x26\x7f\x98\x11\x8a\xe5\xff\x60\x3c\x23\x02\x1f\x13\x42\xe2\x3f\x0c\xc8\x31\x8a\xa2\x9c\x6a\x57\x6f\xff\x87\xf4\xab\x7c\x41\x97\x20\xa9\xb4\x53\x76\xc7\xf2\x45\x71\x37\x55\x7f\xe6\x36\xfb\xbf\xe4\xff\x80\x93\xd5\xff\x4d\xfe\xef\xf0\x5d\x25\xc0\xdd\xc3\x87\xab\x92\xf2\x5b\xca\xb7\xdb\xff\x3b\xfc\x81\x5e\xfd\x8d\x89\xfa\x17\x4c\xa9\xdf\x84\xe5\x9c\x94\x34\x5b\x46\x51\x5b\xe3\x3a\xe8\x55\x14\xf5\x13\xcd\x03\xd4\x29\xb3\x3e\x21\xe4\x61\x67\x23\x36\xab\x4b\x4c\x7f\x44\x58\xd0\xd6\xb1\x7c\x66\xb9\xf8\xcb\xab\x2c\x5d\x6f\xe8\x02\x96\xa4\xbd\x55\xb6\xde\x14\x5c\x9c\xcf\x39\xdb\x88\xb2\x3d\xcb\x3b\xe5\xe8\xf4\xd5\x2a\xcd\x73\xea\xb9\xc8\xe4\x5e\x7c\xda\x26\x4b\xcd\x47\x25\x28\x1e\x23\xc5\x11\xcf\x29\x66\x14\x17\x14\xa7\x14\x97\x14\x57\xf4\xff\xcf\xde\xbb\xad\xb9\x6d\x63\x0b\x83\xf7\x7a\x0a\x89\xd3\xcd\x26\x22\x48\x96\xec\x4e\xef\x6e\x56\xa1\xf4\xf9\x98\x38\xf1\x29\x76\xa5\x93\xb4\xac\xed\xcd\x92\xa0\x12\x63\x0a\x50\x83\x50\x95\x2b\x45\xcd\x37\x77\x73\x31\x6f\x30\x57\xf3\x2c\xf3\x28\xff\x93\xcc\x87\x85\x03\x01\x92\x2a\x3b\x7b\xf7\x1c\xbe\xf9\x7f\x5f\xb8\x44\x9c\x8f\x0b\xeb\xbc\x70\xa1\xf6\xca\x7b\xee\xa6\xf4\x81\x77\xcc\xd7\xb4\xa5\x2a\xf6\x87\x13\xaa\x36\xf3\x36\x99\xa8\x4d\xa6\x0b\x94\xa8\x3f\xc3\xe9\x02\xe9\x6f\xcb\xfc\x36\xa9\xd6\x0e\xe7\x0f\x64\x72\xa0\x74\x96\xec\x29\x31\x4b\x37\x66\xf4\x93\x3c\xcf\x97\x1f\x71\x51\xa7\x5d\x51\x51\xe6\x9c\x95\x63\xc6\x57\x74\xbc\x85\x6b\x7e\xef\xdf\x93\x59\x9a\xbc\x5f\x0d\xd1\xfb\x31\x9a\x05\xbf\xdf\x7f\x55\xa9\xdf\x7f\xb8\x87\x70\x78\xfe\x0b\x88\x32\x36\x51\x5b\x57\xd0\xf9\x74\x11\xc7\xd1\xd4\x7e\xdd\x87\x38\x45\x94\x94\x54\x3e\xdf\x1a\x83\x17\x84\x19\x6d\x87\xe2\xee\xef\x69\xb2\x56\x84\x71\xfa\xdd\x2c\xe1\x94\x4c\x70\xa6\xd7\xea\x3b\x95\x8c\x4b\x4a\x56\x7c\x09\xf7\xd4\x38\x83\x3d\xa7\x9f\xe4\x2b\xbe\xa2\x49\x14\x21\x9c\xd1\x31\xd7\xc7\x31\x29\x29\xbe\x5d\x6e\x32\x91\x2d\x25\x15\x4f\x32\x99\xa5\x60\xe0\xd4\xd9\x67\x49\x75\xa4\x16\x4e\xc9\x70\xc8\xe9\x1f\xef\x1f\x50\x2a\xe9\x2c\x49\x72\xdd\x77\x78\x1e\xd0\x58\x1d\xa0\xe9\x98\x33\xeb\x10\x77\x4d\xbb\xdb\xcd\x29\x14\xbd\x3f\xde\xf1\x52\x9a\x46\x92\x89\x9a\x1c\xb3\x52\x0c\x42\xc8\xcf\x47\x02\xb1\x09\xfa\xcf\x7d\x2e\x3c\xb6\xbf\xe6\x10\xe9\x73\xf1\xcc\x26\x46\x1e\xd3\x39\x42\x60\x18\x06\xd5\x92\xe8\x8a\x0a\xf9\x29\x6a\xc7\xc7\x4c\xbe\x27\x74\x2c\xf6\xec\x35\x7b\xc1\xf9\xae\xaa\xcc\x87\x31\x66\x46\x7e\x7f\xdf\xc3\x5e\xa4\xea\xdc\xb7\x1c\x96\x41\xe2\x21\x41\x90\x6b\x75\x83\xc8\x0f\xd8\xb0\xd6\xbb\x6c\x5d\xbc\x1b\x42\xf1\x04\x1d\xb4\xc6\x3f\x25\x3f\xf5\x8c\x82\xf1\x46\xeb\x0b\xae\x8e\x84\x02\xb3\xea\x12\x80\x0e\x78\x2a\x81\xea\xca\xf0\x31\x37\x81\x00\x12\xee\xab\x17\xd4\x5a\x64\xa6\xd4\x7a\xdd\x55\x0c\xbc\x6a\xe9\x29\xac\x28\x3e\x0e\x2a\x3b\x58\xc3\x3a\x63\xfc\xe1\xc3\x9b\xb7\xaf\x5f\x3e\x7f\xf7\xf4\xc3\xf3\x57\xef\xce\xdf\xfe\xf8\xf2\xe9\xab\xf3\x87\xe7\xcf\x5f\xbf\xfa\xf0\x41\xbf\xf9\x57\x94\x7c\xbe\xa8\xa3\x73\x6f\x68\x3f\x67\xfd\x2c\xf1\x34\x50\x23\xf0\x03\x73\x45\xd1\x55\x2b\xe4\xe7\x8d\xba\x7c\x3b\x9a\xdc\x50\x7c\x45\xe7\x37\x74\xa1\x81\xfe\x25\x25\xb7\x59\x99\xed\xd2\x1f\xb0\x5a\xdf\x74\x43\xb1\x0d\x43\xf7\x11\x7b\xea\xbe\x69\x8e\xb3\xa2\x48\xdf\xe2\x9a\x91\x92\xfe\x8a\x45\xb6\xa4\xe9\x13\xac\x68\xb0\xf4\x39\xf6\x48\xb1\xf4\x19\x36\xca\xe9\xe9\x6f\x18\x54\xd3\xd3\x6f\xb1\x53\x4c\x4f\x1f\x63\xa7\x96\x9e\x66\x98\xb3\x74\x47\x41\x35\x7a\x4b\xb1\xa5\x9b\x7e\xb2\x24\xd3\x3f\xf1\x36\xdb\xa5\x3f\x62\x58\xfa\x74\x45\xb1\x7e\x2e\xd3\x6f\x0e\x9e\xba\xff\xa5\xa2\xc4\x64\xa2\xf5\xf9\xb5\x74\xcc\x3b\xa4\x7a\xa7\x92\xe8\x57\xb0\xdf\x88\xf0\x7c\xe1\xe7\x06\x5a\xfe\x46\x1a\x61\xda\x4d\xd5\xd3\x34\xfe\x15\x4c\xc3\xf0\x87\x0f\xb4\x7c\x09\x86\x03\x0a\x50\x1c\xa0\x93\xa7\xaa\xbf\xf1\x63\xbe\xdd\x71\xa6\x20\x8e\xa0\x7c\x47\x59\x72\xfb\x87\xb4\x81\x0a\x00\xfa\x42\x0b\xaa\x76\xc9\xa9\xbe\xce\x74\xcb\x89\xd1\xba\xb1\xd9\xa9\x49\x0e\x12\x0f\x07\x84\xbb\x1e\xcf\x67\x59\x29\x1f\x71\xee\x8b\x21\xe1\x42\xb4\x05\xf4\xda\x04\xa2\xe3\x78\x6a\x6b\x88\x99\xfe\x33\x36\xe5\x88\x4c\x3a\x75\x4b\xf5\x00\xe2\x58\xff\x1d\x67\xdb\xd5\xcc\x2c\xef\x7c\x01\xea\xa8\x47\xfa\x9d\x99\xbf\xe3\xc7\x45\xbe\xbb\xe0\x99\x58\x7d\xf7\x0e\xfa\xa0\xcd\x14\x23\x5a\x6c\x03\xcb\xb6\xa4\xee\xd6\xbb\xe3\x22\xd1\xd8\xab\x9c\xb3\x85\x73\x9b\x3a\x67\x0b\x3b\x21\x1b\xfc\x69\xce\x16\xe4\x36\x4f\x19\x2e\xd2\xc1\x14\x9b\xcc\xf4\xb6\x8e\x67\x4e\x55\x25\xc0\x27\x72\x5b\x17\xe7\xb8\xfe\x0d\xfe\x46\x0b\xa2\x08\x65\x9b\x76\xa8\x1d\xe3\x12\x8a\xc5\x78\x49\x24\x16\xe3\x86\xa7\x13\x86\x6e\xc5\x18\x3c\xf7\xa3\xaa\x32\x7c\x2e\xbd\x74\xee\x92\xaa\x62\xb7\x86\x8a\xbd\x80\x73\x06\x81\x24\x99\x76\x2b\x19\x42\xcc\x2e\x08\xf4\xee\x66\x7b\xc1\x8b\x38\xd6\x7f\x1d\x76\x74\x9e\x5d\xc6\xf1\xb1\x1e\xdb\x65\xf1\xad\x96\xe6\x47\xfa\xb4\x47\x07\x84\x8f\x55\x8e\xea\x4b\x11\xd9\x6a\xea\x15\x05\x4b\xa1\x06\x88\xce\xd7\xc9\x34\x96\x60\xd9\x29\x20\x38\xee\x5f\xe3\xfa\x2a\xf4\xf2\x75\xf2\x67\x95\xdb\xa9\x3f\x0e\xca\x3d\xae\xa7\x50\x75\x9c\x35\x5c\xbf\x83\x11\xb0\x76\x17\x0d\x0e\x61\xba\x87\xce\x70\x64\xee\x78\xd4\x5c\x71\x3d\x0b\x05\x50\xee\xc3\x80\xb4\xf3\x7e\x9f\x11\xe5\x0c\x20\x75\x84\x65\x31\x5e\x81\x2e\x5e\x87\x10\x88\xce\xe5\xe2\x30\xbe\xc8\x99\x89\xf0\x91\xd7\xce\xd9\x18\x98\xbb\x77\x88\x9f\x1b\xb3\x9d\xb5\x2f\x82\x83\x7b\x87\x8e\x18\xa3\xd4\x93\x28\xad\x12\x89\xa3\x2c\x02\x16\x86\xea\x8e\x77\xbf\x9a\x66\x89\x6a\x86\x52\xf8\x76\xe8\xcb\x40\x8d\x4d\xfa\x8e\x44\x11\x16\x89\x18\x97\x64\x82\x0e\xc9\xbc\xa9\xc7\x12\x80\x53\xbd\x41\x1d\x60\xc4\x9e\xd4\xa8\x84\x1f\xcd\x8c\x71\x2e\xb5\x06\xc0\xac\x03\x49\xb0\xfb\x70\xe8\x34\x28\xea\xc4\x95\x6c\x77\x4d\x4b\x04\x97\x3e\xb0\xbf\xeb\x55\x98\xd9\xb1\xa5\xae\x43\x5f\x55\xbe\xa9\x5a\xe9\x0b\x2d\x27\x27\xa2\x96\x3b\x0a\x6b\xbe\xc1\xc0\x95\x66\x8f\x8d\xeb\xf3\x46\xfc\x8f\xaa\x1a\x4c\x31\x73\x16\x5b\x90\x3f\x98\xe0\x08\x0e\x64\x94\xb3\x3e\x8b\xe3\x84\x8d\xaf\x45\x2e\x4d\xde\xf1\x8b\xc9\xc6\x1f\xe9\x0d\xc8\xcb\x9b\xc0\x33\xe4\xf5\x8a\x38\xa6\x89\xb7\xf5\x0a\xba\x31\x48\x03\xb5\x28\x85\xbe\x61\x4e\xf6\x89\x48\xa6\x08\xe1\x0c\x7e\x3d\x40\x08\x97\xf0\xeb\xcf\x7e\x50\xb8\x7d\xb8\x0b\xc1\x19\xa6\xa9\x7b\x52\xa9\xa6\x7a\x8a\x63\x2c\x1a\x60\x7d\x26\x2d\xd0\x31\x48\xa8\xaf\xeb\x22\x8f\xd0\xd2\x8f\xb5\x5e\x88\x3a\xb1\xfd\xac\xbf\x2c\x40\xe3\xa6\x0c\xcc\xb8\x0e\xc8\x45\xb5\xd0\xbb\xd2\xee\xcb\xe7\x35\xbf\x55\xd8\x0b\x65\x4b\xdb\x03\x68\xa4\x6c\xb2\x92\xfd\x49\x51\xeb\x94\xf5\x73\xed\x9b\x26\x2f\xe9\xaa\x3f\xea\x97\xfb\x1d\x15\x09\x0a\x4a\x68\x8a\xde\x21\xda\x03\xd9\xc1\xde\x96\xa1\x01\x82\x63\x58\xd0\x54\x9a\x07\x31\x91\xb5\x84\xd8\x3d\x20\x97\x54\xbe\xb1\x7b\x07\x26\x62\xa8\xe6\xe7\x7a\xb0\xc6\xf2\x2a\x5e\xef\x54\xfb\x65\xa2\x76\x79\x5c\xe4\xa5\xa4\xec\x71\x91\x2f\x3f\x82\xcb\xfd\xd6\x51\xb9\xcb\x7e\xae\x66\x5d\x75\x6f\x04\x04\x3a\x50\x8f\xbf\xa0\x65\x09\xd8\xf5\xbe\x94\x7d\x9a\xcb\x0d\x15\xfd\x0b\x0a\xde\x8c\xfb\x5c\x78\x3b\x83\xc1\x6d\x73\x34\x74\x16\x7a\xbd\xe3\xf1\x3d\xc0\x2d\x45\x7d\x68\x6f\xbd\x5b\x9d\x9a\x67\x88\x62\x1f\xac\x4f\xb1\xbd\x36\x0a\xc4\xfb\x57\x4c\x23\x73\x58\x3d\x4c\xa6\x8f\x32\x58\xd3\x59\x67\xaa\xb6\xbd\xa1\x9e\xcc\x5e\x2a\xc4\x05\x67\x16\x34\x23\x9c\x27\xd2\x05\xa4\x0e\x56\xdf\x6a\xcb\x79\xa0\x44\x93\x6c\x2d\xa1\xde\xa4\x53\x1e\x38\xf1\x3d\xb2\x4e\xea\xc8\xa2\x19\xb4\xd6\x05\x6d\xa9\xc9\x9b\xd9\x1f\xc6\xe5\x84\x1e\xea\x43\xbd\xfc\x5a\x5b\x47\x1b\xf7\x75\xb6\xa1\xf3\x66\xf6\x47\xd0\x86\xa6\x12\x4c\x1b\xf4\xd3\xb1\x16\xe8\x27\xa8\x4f\x3f\x35\x6a\x43\x54\x44\xa3\xdf\x24\xb3\x9c\x51\x41\x6a\x44\x80\x30\x13\x3b\x11\x32\xd0\xcc\xfb\x48\x1d\xad\x7f\xc1\x57\x37\x2e\x16\xb7\x77\xb2\x5b\x8b\x1d\xaa\x79\x69\x01\x04\x14\xa7\x82\x24\x13\xec\xc6\x84\x14\x7a\xb3\xd4\x4d\x74\x3d\x42\x63\xee\xae\xce\x01\xb9\x9e\xf9\xe7\x7a\x55\x6f\x77\x41\x2f\x33\x49\xf5\x92\x29\xea\xda\x98\x35\xeb\x04\x3d\xa4\xa5\xc5\x89\xf5\xe6\x58\x05\xd7\x46\xb2\x76\xc4\x85\xbb\xb3\xe8\x75\x9f\xdb\xc9\x24\xb7\xfe\xbe\x67\x16\x4d\xc1\xfe\x4e\xea\xdf\x90\xea\xf6\x47\xfd\x52\x29\xf5\x82\x87\xbb\xe4\x8c\x4d\x25\xa6\xdb\x5c\x4a\x53\xc0\x5b\x90\xe0\x8c\x75\x2d\x8b\x75\xd9\x90\x44\x99\x29\x43\x5b\xb5\xf5\xca\x1c\x5f\xd4\x65\x12\x49\x53\x84\x1a\x23\x5a\xd3\xac\x3b\x1f\x40\xfa\xbd\xa3\x05\x05\xc3\x0d\xd9\xee\x82\x7e\xea\xec\xa0\x1e\x9e\x84\x12\xc1\xe0\x4a\x29\xf8\x4d\xc7\x75\x0e\x4e\xd5\xd8\x94\x4b\xba\x37\xea\xc8\xd6\x7e\xa6\x96\x71\xc1\x76\x58\x58\x10\x93\x97\xef\xf6\xbb\x1d\x78\x1e\xfc\x57\xc3\x97\x79\xb4\xe4\xbb\x9b\x08\x47\xcb\xbd\x8c\x16\x58\x12\x8b\x12\x7b\x0a\x87\x73\xba\x48\x29\x16\x64\x30\x08\x57\xfc\x31\xdf\x6e\x33\xb6\x72\x63\xab\x25\x9f\x6b\x2e\x9e\x66\xcd\xc0\xaf\xe0\xc8\xed\x33\x4d\x68\xbd\x76\x01\x91\xed\x65\xa0\x51\xb8\xf4\x75\x60\xa2\x55\x26\xb3\x91\x5b\xb6\x51\x34\x04\x22\x03\xfc\xa7\x3d\x94\x52\xe4\x17\x7b\x49\x13\x51\x47\x5b\x53\x6f\xa9\x9f\x71\xa8\x69\xe1\xe2\x70\xb7\x6f\x00\x63\xfb\xf5\xff\x23\x44\x97\xff\xf7\x88\xe8\x66\x44\x24\xf7\x15\x6e\x9b\x30\x92\xa1\x38\x66\x3e\x0a\xcb\x6a\x14\x96\x69\xbe\xe4\xfe\x78\x1c\xb5\xff\x27\xf0\x57\x2b\xe1\x6b\xa0\x76\xd6\xbf\x98\x42\x4b\x35\xbc\x83\x01\x3a\x6f\x79\x09\xfd\x7f\x05\x2b\xb1\x98\x47\xf3\x99\xa7\xfe\x63\x02\x0c\x2f\xfd\x8e\x10\x6a\x7f\x05\x88\x89\x45\x3e\x3c\x4c\x43\xe3\x13\x81\x97\x5b\xe2\x5c\x47\xd8\xa0\x0c\x05\x18\x23\x9c\x03\x66\x12\x39\x08\x1e\xac\xd1\x31\x38\x0e\x48\x8b\xd7\xcc\xb3\xec\x23\x4d\x90\xff\x66\x1a\x81\xa6\xce\xd6\x6f\x55\x52\x3f\x13\x75\xad\xa3\x4b\xac\xe9\x11\x12\x09\xa9\x00\x84\x03\x7f\xf6\xc7\x53\xcd\x03\x0c\x01\x54\xb4\xca\x45\x64\xf4\x95\xb4\x57\x5e\x3d\x30\x13\x1f\x20\xfb\x48\x8d\x1f\x1c\xeb\xd3\xa2\x43\xfc\x40\x83\x9a\x87\x56\x55\x12\x6e\xd6\x38\x5b\xad\x80\x27\xfc\xc2\x3c\x6d\x89\x45\x90\x8e\xf5\x89\xaa\x6a\x30\xa9\x73\xd5\x44\x9a\xe2\x19\x33\x39\xfd\xbe\x66\x82\x66\x11\x0a\x2b\x8c\x4b\x79\x53\xd0\xf1\x9a\x33\xf9\x2e\xff\x8d\x92\x68\x7a\x7f\x27\xa3\xce\x32\x17\x5c\xac\x14\xea\x38\xe9\xce\xde\x65\xab\x55\xce\x2e\x8f\xe6\x6f\x33\x71\x99\xb3\xe3\xd5\xb9\x71\xfd\x1e\x65\x17\x25\x2f\xf6\x92\x76\x96\x9b\xcb\x59\x24\xf2\xcb\x8d\x8c\xd2\xa8\xa0\x6b\x19\x2d\x48\x34\xfa\xdb\xdf\xfe\xf6\xb7\xdd\xa7\xc8\x38\x3b\x30\x5c\xfe\x5d\x76\x49\x7f\x79\xbd\x5e\x97\x0a\x0d\x3c\xba\xeb\xe5\x52\xf0\xa2\x38\xe7\xbb\x5e\xd7\xa0\x24\xdf\x11\x31\x8c\x76\x9f\x5a\x63\x09\x0e\x8b\xa0\xd9\x8a\xb3\x42\xbd\xe2\xad\xf5\x85\x43\x49\xdc\x59\xc7\xcd\x4d\xdf\xed\x28\x5b\x41\x70\xd6\x24\xa8\x88\x3a\x2e\x57\x88\x41\x77\x15\x57\xb8\x84\x2a\xea\xdd\x90\xfa\x10\x1e\xbb\x83\xde\xd1\x72\xf8\x92\x1b\xa0\xae\xfe\x3b\x0f\x66\xfb\xac\xd7\x76\x82\x5d\x97\xc7\xc3\xb4\xed\x84\x8e\x8d\xe4\xf8\x52\xb9\x3b\x60\xb0\xb7\x00\x42\x1c\x41\x72\xad\xd3\xc7\xcf\xac\xb2\x86\x44\xc7\xd7\xd8\x26\x1d\x85\x41\x46\x63\x14\x1c\x3f\xd4\x77\x94\x7e\xa2\x4b\x83\x80\x25\x1e\x38\xf7\x84\x7d\x94\x0c\xa6\xda\xed\xb9\xf6\x14\xa6\x75\x4b\x12\x0f\x4f\xf6\xd3\xbb\x50\x6c\x1f\xec\xc3\xdf\x44\xa1\x24\x7b\xf0\x3b\x1c\xa5\xd6\xbe\xa6\x83\x82\xf1\x08\x15\x7f\x79\x6a\xa2\xc4\x7b\x12\xf0\xb2\xa0\x99\x70\xc0\xde\xd0\x31\x41\x9a\xe6\xd3\x6a\xad\x7c\x6f\xe1\x82\x32\x47\x1f\x09\xdd\x8b\x79\x09\xcc\xd7\x78\xcd\x97\xfb\x32\x41\xd8\xdc\xf7\x4b\xea\xbf\xc8\xe6\xb4\x3c\x2c\x8a\xb7\x19\xbb\xa4\x65\xf2\xc5\x94\x45\x00\xb4\x6d\x1d\x4b\x3d\x95\x54\xfe\xcb\xde\x70\x8d\xf8\xd7\xb6\xba\xf6\x2d\xc7\x3a\xc3\x29\x2e\x65\x86\x92\x01\x0a\xa1\x91\xda\x8a\x93\xfb\xa7\xe7\x3a\xe2\x73\xdf\x0e\xb9\xaf\x1d\x01\x83\x0d\x98\x61\x10\xe9\xf6\xfb\x5c\xfd\xda\xcb\xe8\x4f\xe8\x00\x82\x90\xf6\x0b\xe6\xf7\xe4\x96\xc2\xd2\x82\xc1\x52\xd0\x86\xeb\x5d\xc3\xe9\x0b\xbc\x80\x24\xb5\x07\xca\x99\x27\x5f\x49\xf3\x84\x22\x54\x55\x53\x70\x4b\xca\xf8\x8a\x2a\x8c\xed\x8e\x89\x99\x01\xf8\x13\xcb\xfa\x3a\xcf\x40\xf5\x3f\x01\x99\xaa\xa7\x69\xf5\xc2\xec\x2a\xd2\x90\x44\x89\x56\x79\xa9\xd0\xe0\x55\x84\xbe\xa0\xcb\xcc\xd6\x1b\xfb\xa6\x75\x35\xfc\x07\x24\x94\x66\xab\x3e\x5f\xf7\xeb\x96\xeb\x6a\x76\x60\x7b\xd9\x1a\x57\xd2\x1c\x98\x6b\x14\x55\xd5\x1d\x83\xfe\x7d\xa3\xfe\x85\xef\xfb\xcb\x8c\xbd\xff\x93\xec\x2f\xf7\xb2\x0f\x81\xcc\xd7\x82\x6f\xfb\x46\x12\x5a\x6a\xcd\x28\x6f\x46\xea\x94\x74\xcc\xa4\xfc\x93\xd5\xe6\xb6\xb8\xe3\xe1\xee\x53\xa4\x8b\x01\x5d\x69\xbc\xc9\x59\xfa\x6f\x7f\x68\xd8\x27\xd5\x59\x2d\x66\x04\x2c\xdf\xbb\xa7\x2f\x9e\x3e\x3e\xd7\x51\x81\xd4\x79\x81\x50\xfe\xd4\xc1\x03\x85\xb4\xc2\xd9\xa8\xed\xcd\x9f\xbf\x7a\xf3\x63\xa3\x42\x55\x45\xe7\x4f\x7f\x3e\x7f\xf8\xf6\xe9\xc3\x46\x4b\xce\x2f\xfc\xb1\xfd\xe8\x09\xb5\x23\x77\xa1\x00\xd4\x80\xcc\x44\xff\xac\x01\x13\x00\xa3\x64\x82\xcd\x08\xad\x8f\x13\x0c\x2d\x1a\x90\xd5\xd5\x65\x3d\x29\x1d\x8b\xbc\x39\x38\xf0\xcb\xcf\x24\x5d\x69\xa2\x2e\x42\xea\xa0\x9b\x05\x31\x8c\xf8\x4e\x30\x89\xf3\x26\xc6\xa8\x47\x88\x7a\xb9\x99\xc2\x2b\xbe\xa2\x8f\x75\xeb\x3a\x76\x6c\x1b\xb2\x62\xa6\x70\x57\x5d\x31\x87\xd8\x49\x4e\xe0\x59\x93\x46\xf2\xd0\xdc\x66\x4f\xb8\x8c\x6e\x0f\x5e\x40\x69\x72\xdb\xf0\x33\xd7\x70\x79\x40\xad\xc6\x22\x05\x27\xe9\x46\x6b\x9e\xcd\xe9\xa2\xaa\xe0\x0f\x99\x2f\x10\x32\x4e\xcc\xd6\x2c\x95\x78\x29\x3f\xa5\xc2\xf8\x57\x3e\x60\xce\x96\xf4\x8e\xf6\x6b\x96\x47\x9e\xa0\x5b\x36\xe6\xeb\x75\xa2\x1d\x08\x18\xcd\x15\xe1\x6b\xae\x58\x5d\xa3\xf1\x07\x62\x90\x3b\x68\x33\xd7\x7e\x13\xb7\x79\x08\x24\x6b\x7b\xbf\xf9\x42\x7b\xdf\xd4\x12\x85\xda\x42\x6e\x8a\xb0\x20\x49\xd2\x31\x51\x04\x13\x9c\x2f\x90\x0b\x78\xa0\x43\x42\x88\x66\x18\x05\x31\x67\x8b\xf1\xda\xaa\xe3\xc0\xd7\x52\x7e\xf2\x8c\x95\xcc\x32\x1c\x71\x97\xd7\xd1\x35\x66\xda\x61\x1e\x78\xbb\xd7\x71\xf0\xa5\xef\xdc\xce\x8b\x80\x70\xc2\x4f\x33\x30\x19\x64\x73\xae\x46\xa1\x8d\xbb\xcd\xc7\xf8\x83\xfe\x34\x4e\xfb\x54\xaa\x17\x21\xd2\xb8\x52\x02\x5f\x7b\x79\x6a\x3c\xed\x43\xbf\x30\xe0\x03\xae\x01\x83\x68\xf3\x8c\xf4\x06\x8a\xe4\x6b\x70\x1e\x98\xfc\xc5\x07\x31\xcd\xb2\x2e\x82\x72\x1c\x0f\x44\x3b\xd6\xbc\x8d\xff\x6e\x74\xb9\x6a\xe5\xd4\x32\xd2\xb6\x70\x6c\xac\x99\x74\xc9\x31\x4e\xc3\xbb\x50\xa9\xd5\xf3\x78\xa8\xef\x85\x6b\x67\xcd\x12\x71\xa4\x8d\xf3\x4d\x2e\x3a\x9b\x78\xe6\xb8\x15\xb0\x17\x00\xb9\x3c\x83\xbc\xe6\x64\x6b\xa5\xec\x26\x81\xa9\xb2\xf1\xad\xc1\x87\x7c\xc8\x4d\x3b\xd1\x7e\xed\xa9\xd0\xfa\x09\xab\xfb\x56\x05\x3e\xdf\xbf\x56\x57\xac\xc5\xe0\x86\x45\x69\xe5\xdf\xfe\x2d\x39\x32\xd4\x43\xf7\x60\x7f\x57\xc3\x47\xe7\xd5\x9a\x99\xd9\xe1\xcf\xce\x2b\x4f\x02\x31\x89\xd1\x1d\x76\x6d\x75\x9b\xed\x87\xbe\x08\x9a\xa7\x03\xf7\xbf\x3d\x7f\xf9\xc2\x20\x33\xfa\xe3\x31\x2f\x0c\xd0\xc6\xea\x49\x7e\x65\x96\x3d\x42\x2d\xb0\x2a\x61\x4f\xba\xf4\xff\xfc\xb0\x02\x01\xbf\xcc\xeb\x2d\x8e\xa7\xc4\xc7\xc3\x0e\x58\xba\x3d\x6e\x3d\xc7\x2e\xb0\xb8\x67\xda\x18\xe8\x0c\xd3\xb6\xfa\x23\x8d\xe3\xc4\x29\x1c\xdb\x69\x80\xc6\xb1\xa8\x2a\x97\x11\x4e\x59\x67\xa3\x38\x8e\x34\x88\x88\x72\xe0\xd0\x26\xda\x1d\x9b\x35\x78\x91\xe6\x22\xcc\x27\x0b\xed\x58\x44\xef\x60\x97\x0f\xfc\x16\x8b\xbd\xaa\x82\x05\xd1\x73\x00\x9f\x01\xac\xab\xbe\x1d\xa6\xbd\x89\x30\xc0\xcf\xae\xc5\xe1\x38\xd0\xfa\x37\xe4\xbf\x3a\xda\x5e\x20\xc7\xce\x60\xbe\x61\x49\x90\xb7\xb5\xb6\xd4\x79\x6c\x08\xbf\x08\x4b\x84\x63\xe8\x21\xdc\xcc\x86\x30\x4c\xfa\x8a\xa8\x6b\xdd\x6d\xb2\xd1\x3b\x0e\x3c\x04\xce\x30\xff\x3d\xe0\x43\x57\x38\x1c\x0e\xc7\xe0\x32\x66\x98\xb7\xed\x0b\x7c\x39\x6b\x63\x0c\xb3\xdc\x9a\x6b\xef\x8b\xc2\x1b\x75\xb7\xdb\xc6\xdc\x53\x15\xb2\x57\x16\x1d\x69\x20\x69\x1f\x11\xd0\xad\xea\x96\x78\x3d\x84\xed\xb5\x1a\xd9\xf5\x01\xd8\x66\xbb\x2e\x28\xe4\x00\x47\x3d\xeb\x03\x6a\x5f\x64\x7d\xc3\xfe\x06\x28\x6f\x87\x3a\x9a\xbb\xb0\x03\xcb\xcb\xf2\x3b\x96\xcb\x0d\x2d\xed\xf9\x6a\x15\xe8\x31\x5b\x84\xb8\x5f\x76\x32\x55\xc5\xc6\x5b\xfe\xdb\xcb\x8e\xd4\xb2\x23\x91\x77\xa4\x5d\xd3\x8b\x8f\xb9\x6c\x64\x1c\xd9\x76\x8d\x13\x9d\x80\x4e\x8b\x05\x3a\x03\x42\xc4\x49\x43\x39\xc2\x3b\x06\x66\xc0\xaa\x86\xf9\xa9\xde\x61\xa7\xb7\x46\x09\x1d\xef\x32\x41\x19\xe0\xae\x07\x45\x72\x1c\x50\xe3\x19\x78\x42\x2f\xf6\x97\xc4\xfc\x05\x6b\x0b\xf3\x7b\x2c\xe8\xa5\x3a\x5d\xe2\x09\xdd\x09\xba\x04\x13\x0b\xcb\xc3\xf2\x4e\x78\xbb\xfc\x4f\x99\xe8\x2c\x78\x48\x0c\xe2\x0d\xda\xac\x81\xe6\x2c\x70\x0f\x4e\x92\x6e\x73\x0a\x28\x3e\x83\xff\x53\xa7\x53\x6e\x34\x70\x1d\x77\x6a\xfc\x13\xcd\x3e\xbe\xcc\x76\x55\x95\x50\xfb\x9b\x98\xbf\xa0\x42\x7b\x97\x52\xab\x1e\xc0\x4e\xd0\x35\x15\xaf\x32\x1b\x8f\xf3\xc3\xa5\x17\x14\x45\x7b\x06\xc2\x4c\x3b\xa7\x22\xda\x4f\x8f\x74\xda\xef\xf5\x81\xb2\xb1\x21\x6a\xc5\x19\x4f\xc5\xed\x09\x2d\xc1\xdc\x83\xeb\xa7\xb6\x8e\x70\x43\x08\x71\x86\x8b\xc7\x54\x6e\x9c\x96\x8d\x1e\x00\x9f\xe9\xaa\x29\x4d\xb8\xf6\xff\xa0\x4e\x89\x93\x6d\xe5\xc8\x61\x93\x9a\x04\xd4\xf0\x33\x57\xed\xb6\x9e\xa2\x6c\x96\xe9\xeb\xc9\xac\xc7\x8e\x03\xfe\xa0\xa9\xa0\xc7\x45\x56\x96\xff\x1d\x4a\xe9\xea\x57\xe8\xc3\x8e\xeb\xc0\x64\x9e\x5f\xb9\xb7\x9a\xd2\xfa\xff\xaa\x26\x57\x3d\x76\x6b\x5d\xf8\x3f\x94\xac\x7e\xa7\x92\x55\xbd\x84\x20\x1d\x7d\x9c\x15\xc5\xe3\x0d\x5d\x7e\xfc\xbf\x43\xd2\x1a\x28\x27\x58\x2b\x82\x35\x95\xcb\x8d\x1f\x54\x60\x11\x68\xfe\xb6\x14\x03\x04\xa1\x1a\xb2\x8e\xdf\xbe\xfb\xfb\x1b\xeb\x75\x05\x33\x32\x8f\x9e\x71\xb1\x7d\x92\xc9\x2c\xc2\xd1\xb3\xbc\xa0\x6f\x69\xb6\xa2\x22\xc2\xd1\xa3\x82\x5f\x44\x38\xfa\xf1\xed\x8b\x77\x34\x13\xcb\x8d\x89\x7d\x8d\x23\x2d\xba\x8f\x70\x04\xef\xf8\xa3\xfd\x7a\x4d\x45\xa4\x88\x5e\xd6\xf3\xa1\x24\x84\xb9\x82\xab\xbb\xcc\x64\x32\xb7\x43\x8e\xbe\x85\x0e\x54\x43\x6f\xe9\x3f\xf7\xb4\x94\xf0\xab\xdc\x71\x56\x52\xd5\xe8\x05\x17\xf2\x31\x67\x52\x28\xbc\x56\x44\x0b\x84\x70\xde\x56\xd4\x10\xe8\x96\xce\xc5\xe2\x98\x4a\xb9\xba\xd1\xb7\x8d\xcd\x3f\xc2\x77\x53\xcd\x1c\x42\x36\xad\xd4\x8d\x13\x79\x38\x04\x6f\x62\x97\x9f\xa7\x1a\xe0\xa1\xdb\xe6\x69\xb0\x22\xf2\x23\x63\x84\x60\x42\x56\x43\xa7\x74\xba\xeb\xb7\x87\x3b\x8f\xb0\xe3\xa5\xf8\x30\xb8\x16\xa8\x37\x91\xbf\xb6\xb0\x03\x78\x87\x10\xc8\xcf\xd7\x10\x2a\x2d\x27\xc3\x25\xd8\x68\x02\xad\x54\x17\x4a\x20\x94\x9d\x7d\x41\xb7\xf9\x3a\xe9\xe8\x19\xd5\xaf\x44\xab\xaf\x63\xcc\x9b\x7c\x0d\x1c\x1b\xf0\xb4\xed\x3f\x58\xc2\x06\x25\x60\x60\xdb\x68\x65\x19\x79\xb9\x53\x28\x10\x0c\xf1\x33\xda\x78\x60\x63\xa5\xee\x7e\xc7\x40\xbd\xf7\xcc\x3f\x89\xdd\xee\x19\x9c\x06\xbc\x71\x1d\x06\x3a\x7a\x36\x5c\x8f\x37\x47\xe8\x4c\xdd\x9f\x09\xe6\x35\x7f\x28\x3f\xe5\x27\xf9\x70\x88\x44\xc2\xe6\xb9\x63\xff\x0c\x9c\xda\xfd\x1b\x01\xf1\x04\xe8\xea\xe0\x98\xc5\x98\x1d\x37\x39\xef\x3c\x9a\x46\xfb\x98\x92\x3b\x5e\xb1\xff\xaa\xda\x2f\xf5\x4f\x98\xb0\x34\xde\x71\x63\x8e\xec\xc2\xe8\x8f\x59\x4b\x8e\xbb\x01\xfa\x1d\x2d\x71\x06\x6d\xb9\x96\x80\x78\xb9\xbb\x2d\xea\xee\x96\x7b\x1a\x81\xf9\x13\x5c\x35\xa7\x51\x6b\x09\xd7\x0e\x11\x59\x83\x00\x06\xa0\xf6\x2e\xbf\x64\x59\xb1\x88\xbe\xfc\x54\xea\xc5\xd0\x7c\x77\xb5\xca\x56\xd8\x6b\xd6\x08\x30\xa1\x36\xe6\x6f\xb8\xab\x50\xc8\xc8\x02\xcd\x97\xe7\x66\x43\xd1\x61\x1f\x40\xd5\xd2\xf7\xe1\xf1\xd9\x3d\xf6\x50\x59\xdc\x1c\x3f\xec\x7b\xd0\x85\x53\x8f\x3b\x6a\xb3\xf0\x9f\x83\x99\x25\xac\x64\xbd\xb1\xf4\xba\xcf\xfe\x4b\x30\x53\x9f\x93\x2f\x11\x4a\x03\xfb\x13\x82\x01\x99\x5a\x9e\x14\xba\x8b\x3e\xb1\x94\xf0\xac\xa9\x71\xa2\xda\x98\x25\x2d\x43\x61\xd3\xb6\x5e\x52\x84\x40\x83\x2a\xe8\x0f\x0f\xa6\x78\x30\x45\xe9\x91\xaa\x7a\xd9\xc0\x29\xa2\x42\xa6\x4c\xa5\x94\x92\x5b\xf5\xed\xa6\x7a\xb1\xbf\xb8\x28\x68\xa9\x6e\xd7\x52\xe1\x28\x85\x41\x9e\x0e\x26\x78\x38\x2c\xf0\x38\xd8\x60\x5f\x9a\xfe\x3b\x4f\x7e\xfd\x9c\xab\xd3\x6f\x45\x5b\xbf\xd7\x78\x2c\xc9\xeb\xd3\x37\x6f\x17\x58\x90\x16\xee\x80\xd9\x17\xd5\xd0\x17\x33\x0a\x89\xdf\x4e\x37\x17\xe3\x0f\x1f\x9e\xbd\x7e\xfb\x58\x5b\xc4\x3e\x7c\xf1\xe2\xc3\xc3\x47\xaf\xdf\x9e\x3f\x7e\xfd\xea\xfc\xed\xeb\x17\x2f\x9e\xbe\xfd\xf0\xe6\xf5\x8b\x5f\x9e\x3d\x7f\xf1\x62\x96\x28\x44\x95\x17\x74\x5c\xf0\xcb\x24\xfa\xd2\x6a\x44\x8a\x3d\xed\xe7\x65\xbf\xa4\x12\xf7\xaf\xf3\xa2\xe8\xaf\xb9\x58\x1a\x5c\xb2\x28\xfa\x3b\x5e\xdc\xac\xf3\x42\x0d\x76\x30\xe9\x64\xe0\xd0\xb1\x41\xab\x20\x1a\xb1\xf9\x7d\xd4\xac\x2a\xb1\x77\x09\x55\xd5\x80\x8e\x1b\x0b\x78\x40\x09\x85\xc0\x97\xcd\x0c\x92\x63\x93\xa6\xd7\x8e\x30\x74\xa8\xc5\xda\x72\x26\x53\xaa\xe8\xea\x93\x8e\x58\x1f\xb7\xa5\x87\x4d\xa6\x2d\xf4\x52\xbd\xb9\x18\xf4\x51\xd5\x81\xb4\xb8\x66\xae\xe3\x1a\x5a\x3d\x55\xf5\xad\x73\xf0\x45\xc1\x2f\x52\x1f\x71\x35\x45\x01\x7b\xd5\xbf\x7d\xcd\x05\x71\x73\xeb\xfb\x82\x29\xf8\x05\x1e\x4c\xcc\x0d\x76\xfb\xac\xae\x41\x82\xf0\xda\x20\xc6\x69\x8d\x22\xc3\xe8\xb2\x1a\xed\x4d\x03\x1c\x58\xe5\x1e\x34\x57\xdc\x2b\x83\x34\xc9\x3f\x77\x57\xe2\x39\x93\x7f\x85\x6a\x8b\x08\xbb\x44\x70\x0b\xd1\x9d\xea\x3b\x8b\xf0\x33\x9f\x33\x39\xfd\x4b\x67\x95\x8e\xe4\xe7\x4c\x3e\xb8\xdf\x59\xb8\x23\xf9\x59\xc1\xb3\xa3\xe9\x7f\xf9\xb3\x49\x5f\x60\x4e\xbc\xe9\x8f\xf3\xf2\xef\x39\xbd\xae\xaa\x6e\x3d\xe1\x3a\x84\xd4\x67\x19\xc0\xe8\x6c\xd4\x88\xe1\xa4\x89\xd3\x96\x11\x24\xf0\x1a\xdf\x39\x01\x04\xbe\x37\xff\xf7\x6c\xf4\xdb\x64\xf4\xb7\xf7\xa3\xff\xe9\x0f\x7f\x8c\xff\xf4\xd5\x70\xfc\xef\x1f\xfe\xa3\xfa\x9f\x17\xf7\xf2\xb1\xa4\x5a\xfa\xd2\x49\x87\x59\x5d\x00\xe7\x8a\x41\xe1\x7e\x1b\x38\x50\xfd\x75\x4e\x8b\x55\x9f\x65\x5b\x1a\x79\x48\x8d\xe4\x2f\xf8\x35\x15\x8f\xb3\x92\x26\x1e\x3d\x58\xb6\xb9\xe7\xc7\x87\xeb\x79\xed\xda\x7b\xf6\xc4\x8c\x7e\x6a\x69\xcf\x48\x42\xc7\x3a\xd6\x3b\x72\xe6\xe1\x9c\x51\xcf\x83\xaa\x81\xc4\xf2\x50\x1b\x11\xb3\xb1\xbd\x48\x0a\x71\x98\x37\x94\xbd\x17\x1d\xba\x98\x12\xc2\xc2\xb9\x51\x15\x4e\x33\x6a\x9b\xed\xc8\xed\x01\x07\x44\x6d\x31\xa3\x1d\x0a\xf4\xce\x0f\x9f\x56\xd9\xd3\x78\xaf\x71\x3a\xda\x72\xa3\xd8\xd5\x40\x58\x9d\xce\x27\x0b\x4c\x75\xe0\x3f\xdd\x08\x75\x34\x5f\xc8\x3e\x7b\x95\x6d\xa9\x5a\xfe\x76\x93\xed\x11\xcd\xa5\x6b\xcf\x0f\xeb\xa4\xcf\x19\x05\x01\xd5\x8f\x25\x5d\x21\x87\xc2\x77\x3b\xec\x79\x58\x08\x9a\xad\x6e\xfa\xea\xff\x08\xa1\x5e\x5d\x93\x0c\x26\x75\xc3\x6b\xdf\x1d\x3a\xbd\xee\x7b\x2e\x94\x40\xba\x41\xc7\x9c\x15\x3c\x5b\x05\x41\x96\x13\x08\x50\xb1\x2f\x24\x44\x25\xe2\x8c\x86\x8e\xa2\xd1\xad\x48\xa8\x8e\x9b\x85\x0e\xbe\x07\xab\x4d\x7d\x92\x54\x5f\x35\x64\xc4\x82\xf8\x8c\x42\x39\x56\xa3\x7e\x58\x7a\x37\x38\x09\xc3\x5c\xad\xdc\x7a\x80\x20\xdd\x71\x8e\x6d\x38\x4c\x4d\x3c\xe8\x6e\x6a\xf0\xa5\x96\xef\x46\xd2\x17\x5a\x63\xa3\xee\xad\xa4\x7a\xf9\xfc\x92\x08\x61\x39\xbe\x80\xbe\xeb\x6e\x77\x0d\x95\x98\x7a\x49\xa7\x5e\x98\x8e\x47\x7c\x75\xd3\xa1\xf7\xa2\x0b\xa8\x2a\xcf\x59\x2e\x09\xc5\x74\xd6\x61\x28\x52\x97\x02\x4d\x46\x9a\xb2\xb1\x7a\x47\xe2\x58\x3d\x08\x1e\x60\xca\xcb\x80\x11\x84\xbc\x8a\xaa\x24\x54\xb4\xaf\x44\x1c\xdb\x57\xe2\xcb\x1a\xb0\xa5\xa1\x11\xff\x4d\x8c\xe3\xc6\x9b\xf8\x65\xed\x9d\x1b\x35\x74\xa7\x51\x92\x06\xaf\x50\x1c\xdb\x39\x26\x89\x24\xea\x55\x57\x9d\x2b\x80\x7d\xb4\x79\x89\xd0\x2c\xa9\x3b\xf0\x0e\x0a\x59\xa9\x5d\xd6\xaf\x1b\x6e\x2c\xb9\x7d\x57\x93\x79\x67\xd5\x05\x6a\x0d\x2c\xf1\x1f\x91\xe3\x73\xad\x2a\xae\x4e\xcc\xec\xe8\x88\x6c\x70\x87\x7a\x35\x3e\x2f\x6b\x6c\x56\x89\x8c\xb6\xae\x86\xfd\xa5\x02\x31\x4e\x6b\x68\xa4\x5a\x50\x88\x52\x87\xd4\x6b\x16\xd4\x2a\x5b\xb5\x30\x68\x96\xdf\xdb\x15\x59\xce\x4e\xd4\x2b\x53\x52\x49\x7e\x3c\x7f\x36\xfa\x6b\xe4\x8f\xe1\x11\xec\x50\xf8\x0d\x88\xfc\x67\xdb\xef\xa8\x83\xfe\x0b\x07\xcb\x0c\xe2\xae\x09\x65\xbb\x5d\x91\x6b\xc9\xcf\xbd\x4f\xa3\xeb\xeb\xeb\x91\xba\x0a\xa3\xbd\x28\x28\x5b\xf2\x15\x5d\x35\xe7\x09\xee\x10\xcd\x19\xd4\x37\x5b\xdd\xa1\x16\xb9\xb5\xac\xc3\x50\xd2\xc0\x35\x43\x38\x45\x1f\x36\x6b\x17\x68\x8d\xfc\xb0\x8a\x77\x56\xda\x35\x3f\x7f\x66\xc3\xc6\xec\xdd\x6d\xab\xc4\x2c\xf9\x5e\x21\x0b\x10\x81\x2a\x5b\xf5\x6d\xc1\xbe\xaa\xd5\xcf\xca\xbe\x9a\x72\x8d\x46\xdc\x3d\x02\x75\x20\xb5\x88\x1e\x1e\x2f\xef\xb0\x1f\x53\x1e\x6c\x8c\x7b\x66\x96\xb2\xaa\xba\x16\xc9\x5f\x91\xd4\xed\x47\x62\xbc\xc8\x6d\x90\x8d\xb3\x0f\xf6\x2d\xcd\x5d\xc2\x12\x33\x9c\xfb\x7b\x55\x8b\x94\x8e\xef\x95\xf5\x27\x68\xd3\x71\xeb\x8d\x62\xf0\x46\x61\xfb\x38\x81\xfe\x38\x45\x98\xfd\x8e\xcd\xec\xd6\x23\x6b\x3d\x3d\xa1\x03\x79\xa7\x61\xc8\xc8\xe4\x84\xd5\x82\x2a\xab\x27\x66\xd0\xb6\xf1\x5a\xf0\xed\xe3\x4d\x26\x1e\xf3\x15\xd5\x5e\x5e\xea\xbd\xfc\x95\xe7\x2c\x89\x22\xe3\x3b\xa6\x3d\xd2\x7f\xd9\x21\x02\x23\xd0\x8e\x43\x14\x1e\x1d\xb8\x6e\xf5\xeb\x64\x6c\x01\xec\xab\x73\xe4\x08\x81\xad\xad\x39\x02\x37\xee\x08\xfc\x5a\x72\xf6\x25\x35\xbe\x7b\xf7\xfa\xd5\x78\xa7\x2e\xbd\x39\xb5\x07\xcf\xc2\xcf\xa0\x5f\x0d\xa9\x36\x25\x19\xc4\xfd\x21\x65\x22\x6d\x70\x5b\x8b\x71\xce\xa9\x09\xc2\xac\x7f\x13\x31\x13\xc3\x08\xf7\xa3\xa1\x4c\xe5\x01\xfb\x4d\x6b\x25\x38\x12\x4a\x4a\x40\x2f\xce\xd5\x57\xdd\x2c\xc2\x5a\xbe\x08\xd7\x27\x56\xcc\x90\xb4\x39\x41\xe9\x9e\x59\x3d\x0a\x1d\x3f\x35\x68\x67\x93\x95\x47\x63\xe6\x6f\xb3\x5d\x93\xe4\x56\xad\xa3\xb0\x85\x92\x76\xba\xb2\x76\xe3\x86\xd5\x09\xab\x18\x2c\xb7\x43\x49\x00\x16\xd1\x31\xaf\xb7\xd9\x0e\x1d\x1b\x89\x00\xfd\x57\xc3\x9e\x76\x3d\x8a\x05\x16\x06\x37\x0e\x7a\xfc\x48\x6f\xca\x36\xb8\x9e\x2f\x82\xc8\xdd\x6d\xe4\x5b\x63\xb8\x20\x32\x00\xdd\x34\x45\xea\x84\x0d\x03\xe5\xf2\x9f\x69\xda\x35\x2c\xbb\x1b\xa6\x4c\x8a\xfc\x3f\xd5\xb2\x37\xe8\xb9\xc0\x72\x51\xb7\x1f\x10\x55\x45\x9b\xbf\x54\x93\x57\x1d\x23\xb1\x51\xdc\xe7\xd1\x93\xa7\x2f\x9e\x9e\x3f\x8d\x70\xf4\xcd\xd3\xf3\x08\x47\xdf\x3e\x7d\xf8\x24\xc2\xd1\xeb\x37\xe7\xcf\x5f\xbf\x7a\x17\xe1\xe8\xcd\xeb\x77\x2a\xfd\xcd\x8f\xe7\x91\x17\x7f\xf8\xca\x53\x79\x01\x00\x9c\x48\x22\xab\xea\xf6\x80\x00\x4d\xee\x19\xf9\x8a\x23\xd1\xae\x9a\x04\x4d\x27\xf5\x1b\x92\x31\xfa\xca\xed\x45\x41\xa8\xfa\xdf\x18\xf3\x08\xba\xa2\x4c\xe6\x59\x51\x12\xea\x7f\x61\x69\x91\x04\x2b\x3f\x32\x9f\x00\x5d\x8b\x84\xda\x6f\x64\x6e\xd4\x96\xca\x0d\x5f\x11\x6a\x7e\x98\x44\xbe\xa2\x2a\x89\xaf\x8c\x1b\x32\xcd\x95\x52\x44\x2f\xfc\xc0\x79\x55\x69\xcd\x06\x5a\xa3\x9a\x10\x1a\xd2\xfb\xc6\x01\xf9\xe5\x3b\x72\x55\x93\x71\x74\xb7\x83\xc2\xfe\x9c\xa4\xff\xa5\x1d\xf0\x86\x29\x51\x99\x6d\xe9\x88\x8b\xfc\x32\x67\x11\x1e\xb8\x59\x87\x88\x52\xf7\x1a\xc8\x23\x6b\x90\x08\x22\xcd\x6f\xd3\xa5\xfd\xd0\xa7\x82\x11\x31\x96\xfc\xc7\xdd\xce\xf2\x19\xf0\xd6\x31\x51\x18\x3a\x1b\x4d\x67\x2c\xb5\x08\x38\xac\xa0\x84\x3f\xb6\x2d\xf8\x59\x1b\x94\x99\x25\x95\xe6\x87\x29\x65\xd6\xd7\x98\xf4\xac\xa9\x10\xd6\x0a\x2d\x81\x41\x58\xfb\x0b\x37\x32\x38\xa9\x61\x2a\x8a\xe3\xbc\xfb\x64\x29\x2a\x0d\x1e\xb2\xac\x28\xf8\x35\x5d\xf5\xd7\x5c\xf4\xbf\x79\x7a\xde\xe7\xa2\xaf\x1a\x02\xd5\x61\x5a\x82\xc2\x70\x48\xdb\x25\x79\x18\x7c\x36\xa0\x69\xcd\x23\xe6\x71\x63\x44\xbe\x4d\x10\x88\xfe\x64\x12\xc5\x51\x07\x13\xc0\xd0\xb2\xb5\xd9\x82\x29\x4c\x22\x50\xdb\xb6\xdc\x95\xb1\xa0\xbb\x22\x5b\xd2\xe4\xde\xfb\xe1\xbd\x4b\x1c\xf5\x23\xd0\x93\x36\x8f\x3b\x89\xba\x0a\xf4\xa4\x65\x2d\xac\xa8\xc2\x7c\x7f\x7c\xfb\xdc\x79\xe3\x4b\x18\xc2\x1d\xa9\x39\x02\x67\x7a\xb2\x15\xe3\x56\x87\xec\xbf\x75\xc8\x17\x30\xf1\x9d\x97\x30\xbd\x65\x32\x93\xfb\xb2\xf6\xcc\x29\x4d\xca\xec\xfe\x64\x92\xda\x0f\xa3\x63\xff\x91\x78\x55\xce\xc8\xfd\xc9\xc4\xda\x09\x43\xca\xe9\x83\xc9\xc4\x6f\x54\xd3\x40\xf5\x6f\x60\x69\xce\xa4\x97\x9b\x46\xaf\xbf\x0f\x69\xa4\xd6\x21\xc7\xee\xce\x49\xf5\x7f\x55\x59\xa2\xaa\xde\x5c\x8a\x0e\x57\x1e\x74\x5c\x16\xbc\xd3\x33\xa9\x6a\xf9\x4a\xcb\x7c\x6e\xd5\xd5\x4e\x43\x5a\xf3\x80\x0e\xd8\x68\x0e\x5e\xf9\x82\x29\x93\x76\xe9\xa7\x5d\x7e\x61\x77\x97\x49\xd8\x07\xbe\xd5\x73\x4f\xbd\x55\xc2\xde\x72\x34\x16\x0f\x9b\x45\x48\xcd\xa2\x78\xeb\x84\xf0\x5e\x14\xa9\x5d\x1b\x35\xf6\xcb\x71\x8b\xa9\xa3\x9f\x27\x3d\x10\xb8\x85\xb6\xfb\x89\xdf\x69\x14\x1d\x7c\x56\x24\x9c\x11\x1b\x01\x4c\xbb\x05\xb8\x20\xf3\x07\x93\x29\x7e\x30\xb9\x8f\x1f\x4c\x1e\xe0\x07\x93\x7f\xc3\x0f\x26\x7f\x5d\xf4\x2e\xc7\x82\xae\x72\xd1\x8e\xd9\x92\xaf\x93\xd1\x94\x10\x72\xe1\x45\xfa\xf7\xd5\x96\x32\x76\xd9\x64\x96\xea\x01\xf5\xd5\xd9\x0e\x5d\x43\x37\x86\x5e\x2f\xca\x6d\xc1\x35\xc1\x98\xd2\x03\x84\x00\x1c\x3f\x79\xfd\xf2\xe9\xa7\x25\x05\xeb\x7f\x22\x83\x4f\x10\xb8\x41\xf0\xd7\x20\xd9\x30\xeb\xaf\x41\x3d\xd1\xaf\xdd\x85\x3f\x19\xcf\xb7\xe6\x51\x61\xd9\x96\x12\x69\x90\x4c\x13\xef\xda\xc0\x1d\x1b\x88\x1e\xfe\x36\x07\x76\x54\x39\x09\xda\xf0\x4f\xd9\xb1\x7a\x81\x23\x8c\xc6\x7c\x6a\x5d\x22\x88\x35\x7c\x84\x51\x28\x6a\x2d\x67\x73\x2b\x70\x0e\x4f\x59\x66\x40\x78\x1c\xdb\x5f\x56\x3c\xec\x02\x0f\x27\xed\x55\x4c\xb4\xe4\x8b\xae\xac\xc6\x0d\x4c\x25\x42\x1a\x41\xd1\x77\xfa\xe7\x97\x2f\xbe\x95\x72\x67\x44\x48\xbe\x8f\x35\x74\x6b\x64\xd0\x09\x3a\x94\x1d\xcc\x4b\x47\x22\x12\x7b\x06\xba\xae\x4e\xe7\xbd\x49\x28\x01\xae\xcb\xc3\xa2\xb0\x4a\x41\x46\x61\x28\x41\x1a\x92\x68\x78\x83\xa9\x07\x88\xc5\xec\x3d\x9b\xbf\x97\xfd\x85\x85\xc8\x06\xb8\xeb\x9c\x7b\xdd\xaf\x41\xe3\x1d\x48\x1b\xef\x80\x7e\x52\x7a\xda\x15\xbd\x16\xe1\xd8\x57\x20\x8d\x5c\xb6\x83\xfc\x0c\xe7\x1a\xa2\xa3\x43\x8f\x01\xf0\x8b\x84\x19\xff\x8f\x6f\x5f\x28\x38\x5a\xce\xc0\x4d\x86\x4d\x4a\x59\xc8\x64\xfa\x79\x64\x16\x7a\xa4\xca\x5b\x45\x51\xd7\x48\xb3\x85\xb4\xfe\xa9\xd6\xaf\x27\x12\x7d\xf3\x72\xcc\x14\x71\x51\x76\x71\x8c\x79\x93\x7f\xfd\x8a\xca\x6b\x2e\x3e\xda\x57\xb8\xbf\x86\x30\x89\x91\x6d\x40\x6a\x9d\x96\xff\x4a\x13\x70\x4a\xda\x0d\x7c\xe1\x61\x84\x36\x76\x94\x25\x99\xc5\x16\x33\x40\x49\x07\x13\x84\xa3\x9c\x2d\x8b\xfd\x8a\x2a\x5c\x24\xf3\x71\xb5\x59\x39\xbe\xce\xe5\xe6\xb1\x87\xdd\x0d\x26\x69\xc4\xb7\xb9\x6c\x95\x8d\xe3\xa4\xa3\xf4\x14\x61\xb7\xee\x6a\xaa\xb0\xf6\x1e\x03\xd5\x5b\x7a\x00\xbd\x9a\xa9\x83\x33\xb7\xa1\xdd\x52\x11\x60\xa3\x99\x4d\xd6\x67\xda\x28\x05\xe1\xfa\x0e\x27\xf5\x25\x6e\xb9\xb9\x30\xa2\xfb\x3d\x82\x95\x05\x94\x1d\xe2\x0b\x2d\x37\x0a\x38\xfb\x8b\xfc\x67\x42\x48\x09\x2c\x94\x9b\x77\x3a\x30\xbd\x6b\xb6\xd3\x4f\x81\x6b\xf9\xa0\xda\x2e\xd5\x79\x76\xd8\x45\x56\xbf\x85\x33\x05\xd6\x53\x2f\x01\x1d\xd0\xe1\xc3\xd8\xca\xa4\xc9\x60\x82\xe5\x18\xd4\xfc\x14\x12\xa3\x7f\x91\x0f\x58\x8e\xcd\x0d\x26\x05\x96\x56\x22\x4d\xae\xe0\xb7\x5e\x46\x72\xa9\x40\x67\x5d\x8a\x7a\xa5\xa8\x57\x0a\x53\xdb\xe8\x01\x25\xb7\x07\x6d\x1c\x66\x3a\x6a\xb3\x51\x20\xb9\x9f\x97\x80\x80\x1a\x4d\x83\xfe\xa8\xbf\xcd\x6e\x2e\x68\xff\x86\xef\x45\xff\x42\xf0\xeb\x92\x8a\xbe\xb6\xfe\x28\xfb\x99\xa0\x50\x78\xc9\xaf\xa8\xa2\x16\xfa\xf4\x8a\x8a\x1b\xb9\x51\x3f\x6f\xf8\xbe\xcf\x28\x5d\xcd\xcc\xdd\xe4\x7e\x90\x83\xcc\x23\xfb\xf9\x68\x84\xe9\xc1\xaa\x5b\x9e\xd3\x52\xce\x12\xff\xcb\x53\x85\xcf\x1b\xc1\x3d\x4d\x0b\x6a\xd9\xb9\x82\x25\xce\xb5\x74\xbb\x0c\x1f\x0e\xed\x62\x1b\xdb\x0c\xea\x19\x66\xb4\x23\x41\x38\x6c\x01\x90\x9f\x04\x05\xcc\xbe\x0c\x67\x08\xd3\x30\x02\x9c\x5e\x4e\xe0\x84\x50\x1d\x48\xd3\x8d\xc6\xf4\xab\xd9\x4b\x2d\xb8\x6a\x19\x2f\x73\xba\x00\xed\xc9\x40\x65\xf5\x5e\xf6\x6b\xf6\xe9\x88\xde\xaa\x1f\xbb\xd5\x8b\x5a\x6b\xee\xf9\xaa\xff\x1f\x75\x0b\xff\xd1\xbf\xd8\xcb\x7e\x2e\xfb\xd7\x59\xd9\x17\x54\x3d\xec\x10\xdd\xf5\x3f\x40\xf3\x7f\xe4\x15\x8c\xd4\x19\x45\x9d\x96\x21\x61\x54\x89\xae\x12\x97\x05\xbf\xc8\x8a\x99\xfe\xd3\x59\xa2\xa4\xc5\x7a\xa6\xfe\x4b\x35\xc3\xc4\xdf\xcd\x40\x09\x57\xef\xff\x87\x2d\x5f\xe5\xeb\x9c\x8a\x97\x19\xcb\x2e\x15\x59\xb7\xcb\x2e\xf2\x42\xe6\xb4\x24\x77\x96\xc8\x65\xc0\xc7\xf0\x36\xb4\xaa\x12\x4a\xa2\x07\xe3\xe9\x83\x08\xe1\xdb\xc3\xe1\x80\x92\x50\x91\x25\x5f\x27\xbf\xdb\x0f\x37\x6a\xf8\xe1\xa6\x89\x8e\x2f\x7e\xc4\xd6\xa4\xed\x8f\xdb\xb9\xbe\x73\x6e\xb9\x29\x3a\x01\x74\xb8\xaa\xf4\x82\xa3\xf1\x63\xbe\xa2\x2f\x73\x78\xa4\xb4\x93\xfe\x63\x6b\x67\x90\xe2\xec\x2a\xbf\xcc\x24\x17\xe3\x7d\x49\xc5\xc3\x4b\xca\xa4\x42\x06\x5c\xea\xae\xc8\xe4\x9a\x8b\x2d\x16\xe4\xde\x25\x5d\x7e\xe4\xef\xef\xbd\x5f\xd5\x82\x7f\xcc\xc8\xbd\x97\xef\x9e\x3f\xed\xbf\x5f\xdd\x73\x69\x39\xb9\x77\x2e\x72\x05\xf9\xdf\xdf\x4b\x66\xe9\xfc\xdf\x46\x7f\x5b\x54\xef\x57\xb7\xf7\xf1\x01\xbd\x1f\x8f\xbf\x12\x57\x3a\xa6\xc4\x3d\xf0\x41\xa2\x6a\x70\xc2\xaa\x2a\xc7\x19\xe1\x71\x9c\xb0\x59\xcb\x61\xce\x4b\xa0\xba\xff\x92\xe6\xf3\xe9\x02\xe1\x92\xdc\xd3\x61\x48\xde\xdf\xab\x3b\xdd\x93\x32\x8e\xef\xfd\x20\xd5\xf8\x86\xef\xc7\xef\x57\xc3\x3a\xaf\x20\xf7\x1e\x6f\x04\xdf\x52\xbf\xc2\x92\xdc\x7b\xbd\xa3\x22\xf3\xd3\xd6\xe4\xde\xc3\xdd\xae\xa0\x7d\x45\x53\xee\x25\x15\x26\xab\x5e\x8f\x2b\xca\x56\x5c\x20\xbc\x21\xf7\x5e\x66\xcb\xfe\xeb\x77\xfd\x9f\xfb\xd3\xf7\xab\xf7\x4f\x92\xf9\x5f\xf5\x34\xdf\xaf\xd0\xfb\x27\x75\x93\x2b\x72\xef\xcd\x26\x63\x92\x6f\xbf\x7b\x57\xa7\xee\x4c\x47\x7a\x1e\x2e\x3d\x8e\xef\xbd\xe4\x17\x79\x41\xdf\xdf\x7b\x7f\xed\x4d\x60\x4b\x76\x55\x75\xef\x21\x5b\x09\x9e\xaf\xaa\x6b\x7a\xf1\xfa\x5d\xf5\xa8\xc8\x96\x1f\x1f\x51\x21\x6e\x2a\x98\x47\xff\x65\xce\x72\xfb\x93\x5f\xe4\xd5\xf3\xa7\xba\x2d\x6f\xb7\xae\xa0\x9d\x97\xd9\xd2\x34\x2d\x11\xbe\x21\xf7\xde\x5f\x3c\x16\xaf\xdf\xbd\xbf\xa8\xfb\xbb\x24\xf7\xae\x73\x66\x2b\x4a\x84\x2f\xc8\xd2\x59\x3c\x25\xf7\xfe\xae\xc3\x86\xbc\xbf\x97\xbc\x5f\x7d\xa5\xd6\xfa\x2b\x74\x0f\xf5\xd4\x23\x7e\x41\x5e\xed\xd5\x8d\x4b\x2e\xd4\x4e\x21\x7c\x11\xc7\x17\x67\x64\xfa\x75\x1c\x27\x4b\x32\x98\x62\x85\x35\x68\x48\xff\x81\x5c\xc5\x71\xb2\xaf\xaa\xa5\xda\x72\xe0\x42\x5d\x54\xd5\xc5\xe9\xf4\xfe\x78\x3a\x45\x08\x5f\x13\x51\x55\x3c\x8e\xb3\x33\xf2\x37\xfc\x54\xd5\xfd\x44\x06\xd3\x46\x68\x73\x63\x15\x20\x1b\xe1\xb2\xdf\x39\x83\x2c\x05\xf5\x74\x49\x4d\x91\x70\xed\x11\x8d\x48\x22\x67\xd7\x3c\x91\x08\xf4\xc2\x79\xf2\xb3\xd0\x71\x8a\xf0\x73\x8f\x61\x6e\xac\x78\x5a\x72\x49\x11\xc7\x89\x96\x73\x5c\xe5\x89\xc0\x9a\x3f\x84\x35\x4f\x68\x5c\xe4\x8c\xbe\xa3\xbb\x0c\xd8\x95\x96\x35\xb5\xe2\x4b\x13\x68\x49\x7b\xef\x7c\x37\xce\xd9\x6e\x2f\xdf\xc9\x9b\x82\x96\x73\xe9\x7d\x2d\xb4\xec\x07\x9b\x28\x4c\xab\xbc\xdc\x15\xd9\x0d\x54\x7a\x9d\x50\xb0\xa8\xe9\xe5\xe3\x6b\xa1\x10\x64\xe1\x5f\x76\xa0\xe7\xdf\x98\xda\x2f\xcd\x5f\x3d\x9c\x9f\x54\x69\x88\x49\x95\xf8\x8d\xba\x56\x40\x57\xf4\x55\xb6\xa5\x43\x12\xf5\xeb\x26\x47\x2a\x3f\x02\xcf\x03\x7b\xc9\xc1\x9f\x43\x1c\x0f\xb6\x5a\xe9\x68\xb7\x97\xce\xe7\xc5\xb7\xb6\x37\x4b\xb5\x53\x72\xfb\x91\xde\xbc\xcc\x76\x65\x3a\x5f\x60\xf5\xec\x17\xd9\x0d\xfc\x56\x2b\xf5\x0d\x65\xe9\x04\x52\xaf\x45\x2e\x41\x17\x79\x45\x8b\xec\x26\x67\x97\x8f\x8a\xbd\x00\x2c\x4a\x25\x42\xf3\x74\xa5\x7e\x96\xfb\x1d\x18\xc2\x3c\x5d\xe5\x12\xd4\x2b\x77\x59\x29\xe9\x73\xb6\xe4\xdb\x9c\x5d\x82\xbe\xe5\x5e\xfa\x9f\xda\x7d\x44\xce\x2e\x81\x26\x52\x3d\x88\xec\xf2\xd2\xfb\xde\xe4\x97\x9b\x22\xbf\xdc\x48\xcd\x53\xe0\xf8\x23\xbd\x79\x47\xff\xa9\xd5\x99\xcb\x1d\x5d\xe6\x59\xf1\x78\x93\x89\x52\x4b\x26\x8c\x57\x40\x09\x1e\x1a\x8c\x34\xa0\xe8\xe7\xac\xaf\x4e\xe8\xe9\x74\x1a\xc7\xdd\xda\xea\x7b\xb7\xd8\x7a\xc9\x04\x2d\xa9\x4c\x06\x13\x74\xc0\xf7\x27\xe1\x8b\xe2\x9c\xc8\xea\x0a\xbd\x5f\xf2\xc4\x7a\x08\xa3\x02\x47\x5b\xae\x16\x83\x5f\xb3\x08\x7f\x2f\x13\x8a\xf7\xea\x70\x35\xca\xac\x2e\x0a\xe3\x1c\xcb\x0c\x6b\x06\x45\x7d\xd6\x3e\x58\x4e\xe9\x50\x05\x96\x58\x2b\x85\xbe\x20\xf9\x3a\x11\x71\x3c\x58\xea\xcf\x38\x1e\x64\x22\x71\xc3\x81\xf2\xdf\xe6\x89\x73\xad\x4d\xc7\xeb\x9c\xad\x7e\xe2\x62\xf5\x50\x26\x02\xf5\x1e\x51\x55\x98\x2f\x31\x1b\x67\x6c\xb9\xe1\x02\x6b\x52\x0c\xa9\xc7\x33\x34\x02\xb1\x91\x12\xa0\xb9\x03\xea\x5d\x57\x55\x63\x22\x4b\x1d\x8f\x66\x4b\xd9\x3e\x0a\x86\xff\x52\x0f\xee\x60\xee\xa8\xa2\x85\x29\x5b\xa5\x93\x43\xe8\x37\x43\x82\x67\x9b\x2b\x7a\xce\xf7\xcb\x0d\xdc\xd6\x23\xb1\x1e\xfd\x72\x3a\x90\x1a\x9e\xd2\x07\x08\x27\x8c\x04\x79\x68\x4c\xd9\x8a\x0c\xd5\x59\x79\x92\x49\x1a\xea\xa6\x19\x38\xa4\x81\x98\x1c\x17\x74\x6d\xad\x27\x06\x13\x07\x4b\x54\xea\x88\xc2\x1f\xac\x1a\x97\x7c\x37\x02\x1f\x6f\x4e\xe2\xf8\x95\x18\xb2\xaf\xd8\xd9\x9f\x27\x93\x43\x63\x39\xa4\x1a\x42\x29\x33\x45\x4e\xb8\xd1\xe7\xde\x66\xe6\x6a\xbb\x1a\xe8\xc9\x74\x00\x8a\x2b\xfb\xe5\x86\x5a\xdf\x50\x76\x54\xd3\x9e\x3d\x6c\x26\x7f\x3e\x59\x78\x1a\x4c\xd9\x2a\xdf\x97\x3f\x9f\x92\x69\x1c\xdb\xaf\x5f\x4e\xc9\xf4\x90\xe4\x08\xdd\x82\xd3\x2c\xbb\x94\xc2\x62\xed\x6e\x65\x7a\xe1\x92\xde\xc2\xa8\x53\x8e\x15\x7d\x04\x57\x79\x27\xe8\x55\xca\x47\x4c\x2d\xe8\x29\x79\x30\x99\xcc\x98\x11\xfe\x4d\x09\xc9\x1b\x03\x56\x10\xcb\x6f\x0f\x96\xaf\x2e\x35\x9f\x2c\xc0\xd3\xde\xcf\x38\x2c\x25\xf9\xae\x5d\xe8\x17\xe0\x24\x74\xad\xac\x1a\x5b\x84\x8f\x1d\x8b\xd6\x18\x60\x2a\x20\x0b\xe9\x6e\x8e\xb2\x95\xd7\x5a\xed\xdd\xc5\x6f\xc4\xf8\x31\x51\x57\x4c\x62\x81\xac\x35\x20\x83\x09\xc6\xf1\x80\xe9\x5e\xe2\xd8\xae\xeb\x88\x8d\x61\x29\x4f\x1f\x4c\x26\xc6\x6a\x15\x67\xe0\x62\x93\x8b\x55\xa9\x20\x55\x38\x4a\x1c\xa9\x39\x47\xa8\xc7\xc9\x80\x8d\xd5\xa2\x57\x55\x99\x30\xac\x7f\xeb\x50\xcb\xbf\x52\xa0\x51\x52\x53\xa0\x55\xca\x14\x0d\x6e\x7a\x86\x52\x53\x75\x45\x93\x0c\x9e\x17\x3c\x41\xf8\x85\xbd\xfd\x2e\x75\x38\xc5\x13\x84\x9a\x2e\x88\x12\x6e\xa1\x03\xd7\xd0\x01\xd7\xae\x93\xbe\xcd\x13\x81\x0e\x79\x72\x6c\x5d\xb5\x4a\x7d\x84\xf3\x56\xb6\xfe\xd5\xd8\x42\x9b\x3d\x5e\x16\x39\x65\xf2\x5b\xaa\xa0\x7d\x1c\x27\x3b\x00\x21\x75\xb6\x73\xc2\x88\xf0\xb6\x33\xeb\x85\xba\xb2\x83\x09\xc2\x3f\xe4\x09\xad\x3b\xa3\xa8\x63\xa0\x00\xa5\xaf\x37\x94\x16\x21\xdc\xba\xb0\x70\xab\x59\xe1\xc9\xeb\x97\x2f\x55\x9d\x77\xcd\x29\xb4\x2b\x99\xe7\xfa\xc8\x74\xed\x63\xee\xa6\x43\x9a\x69\x6a\x1e\x64\xa2\x29\x60\x91\x5d\x5a\x3b\xea\x52\x81\x50\x49\x45\x37\x8c\xfe\x09\x60\x34\xbc\xd6\xdd\x05\x1a\xec\x98\xd6\x93\x32\xb0\xca\x24\xe6\xdd\x68\x98\x57\x3c\x31\x9f\xcf\x44\x76\xa9\xa3\x31\xf7\x84\x34\x88\x0e\x76\xaf\x0f\x0c\xf8\xf1\x5e\x94\x5c\x80\xb5\x79\x3b\x99\xbc\xe4\x49\xb4\xca\xaf\x22\x8d\x87\x45\x1e\x1a\xb3\x84\x02\xa5\x8f\xd9\xa8\x7a\x26\x39\xf2\xbb\x01\xe4\x6d\x97\x2d\xe9\x38\x67\x25\x15\xf2\x11\x5d\x73\x41\x3b\x3b\xf4\x6a\xe9\x96\x9e\xe4\x57\x08\xf5\xde\xf0\xee\xd2\x4c\x3b\x65\x41\x18\x16\x14\x1d\xb0\x06\x8c\xfe\x92\xb6\x3d\x0b\x2b\x6a\x68\x40\x35\x4a\x35\xf6\x31\x98\xaa\x72\x00\x77\xb4\x16\xa7\xd3\xc9\x04\x05\xf6\x7a\xd0\x09\xc8\xad\xed\x36\x35\xdf\x72\xb3\x27\xe0\x36\x7b\x95\xc9\xec\x5c\x64\xac\x5c\xab\xb3\x42\xe5\x93\x4c\x66\x49\xa4\x5d\x4a\xd2\x86\xcf\x2e\x38\x3d\x7e\x79\xba\x5e\xd3\xa5\x7c\xa8\x25\x91\x04\xdc\xde\xbd\x04\x78\xda\xd1\xae\xc8\x2e\x9f\x6f\xb3\x4b\xaa\x1e\x2b\x7b\x54\xd4\xbe\xe5\xdb\x4b\xb3\x6f\x7a\xf3\xac\x3b\xd6\xb4\xbf\xce\x3f\xd1\xd5\x49\x5f\x41\xc5\xb4\x3f\x39\xe9\x4b\xbe\x53\x7f\x23\xd4\x13\xe3\x52\x2c\xb5\x2b\xf0\x34\x57\x8d\xde\xbb\xcc\xd7\x27\x17\x59\x49\xff\xf2\x67\xfc\x76\x52\x7c\xf3\xfa\x49\xb1\x79\xf8\xc3\xc3\x47\x0f\xd5\xbf\xc7\xdf\x7e\xfd\xe8\xe1\xd3\xef\x1f\x3e\x7c\xfa\xf0\x05\x24\xa8\xf4\xa7\x0f\x1f\x3e\x7c\xfe\xf8\xfc\xe1\xd3\x87\xaf\xaf\x09\x89\xb0\xa2\x44\xc4\xf8\x3a\x5f\xc9\x0d\x11\xe3\x0d\x00\x0c\x32\xf5\x36\xda\xde\x27\xdf\x6f\xaa\x40\x58\x8c\x3f\x80\xaf\xd6\x31\x07\x87\xaf\x00\x4a\xee\x98\x7d\x22\xf0\x44\xc1\xcc\x65\x1c\x0b\xcf\x57\x44\xe0\x62\x14\xd4\x8f\x4d\x60\x9e\x95\xe0\xbb\x14\x10\xb9\x8d\x40\xb8\xa0\xd9\x15\xed\xbe\x8a\x2b\x01\xd6\x44\x16\x57\x35\x28\xe7\x25\x95\xcf\x72\x5a\xac\x12\xa4\x50\xca\x3d\x8e\x3e\xd2\x9b\xfd\x2e\x84\x34\x0f\x85\x17\x09\x08\xc0\x8d\x2e\xe7\xe1\x9b\xaf\x0d\xbe\xa9\x33\x00\x1b\x37\x39\x1f\xeb\x1c\x00\xe5\x11\x7e\xca\x93\x73\x01\xc6\x70\x3a\xf9\xa2\xd8\x0b\x48\x7d\x0c\xa9\x07\x43\x2f\x78\xf0\x2b\x5f\x27\xdf\x72\x7b\x28\x7f\xc9\x8d\xdb\x0a\x60\x18\xe7\xbf\x85\x8f\xb3\xd1\x58\x00\xb5\xff\x6e\xac\x8e\x6a\x51\xfb\x6f\x3c\xe1\x02\x1d\x30\xdc\x0e\x3d\x2b\xdb\xac\x1e\x90\x57\xe5\x37\x35\x36\x55\xe8\x5b\x88\x83\x0b\xbc\x91\x43\x82\xf0\x23\xe9\xd3\x36\xcb\xbd\x78\xbd\x1b\x83\xed\xd0\x8f\xbb\x95\xa2\x73\x06\x13\xfc\x21\xd7\xb2\x54\xd1\xa2\x94\xaa\x6a\x3f\xde\x64\xe5\x33\xfd\xbe\xcd\xbc\xc1\xea\x05\xd2\x2d\xdf\x9f\xa0\xf4\xb1\x30\xdd\xfc\x43\xa0\x7f\x88\xa6\x42\x51\x81\xe2\xf8\x1f\x62\x5e\x2c\x8c\x7d\xe9\xbc\x58\x60\xca\x50\xef\xef\x8e\xca\x5b\xe7\x2c\x2f\x37\xcf\x59\x0e\x86\xfd\xf5\x97\x51\x24\xb4\x14\xcb\x86\x4c\x4e\x36\xa7\xdc\x59\xc3\x0e\x87\x1b\xc4\xd9\x7c\x63\x88\xce\xde\x8f\x76\xb6\xa5\x6a\x26\x24\x1d\x23\x45\x3a\x6f\xf3\xdf\x68\x41\x2f\x73\xe0\x9d\xdd\x44\x84\x5c\x52\x69\x58\x25\x2b\x20\x5f\x93\x1c\xaa\x29\x58\x08\x3a\x6c\x6f\x29\x5b\x01\xd3\x17\x0c\xcd\x4c\x96\xf5\x6f\xec\xe7\x93\x48\x2d\x5d\xe4\x21\xd6\xaf\x6d\x68\x35\x13\xdd\xcd\xc5\xf4\x80\x63\x4d\x18\xce\xcd\xbb\x76\x91\x89\x67\x39\xd8\x4f\x1d\x7f\x03\x5c\xc9\xd1\x1a\x8a\x46\xa8\x5d\xbd\xe1\x54\x71\xb9\x1d\x31\x2e\x47\x46\x3f\x37\xc2\x91\x14\x7b\x0a\xf5\x2e\xf7\x52\xd2\xcf\xf7\xa9\x8b\xf9\x1d\xfa\x15\xbf\xb8\x37\xb3\x68\x77\x3d\x70\x20\x2b\xc6\xd6\x69\x62\xce\x59\xbb\x7c\x13\xb0\x0a\x5a\x80\x3f\x81\x93\xfe\x6f\x23\x90\x4d\xa7\xfd\x29\xb4\xe1\x1e\xb3\xcf\xbf\xa8\x50\x7e\x4b\xb3\x72\x2f\xe8\x1d\xa5\x4d\x09\x37\x99\x97\xbf\xbb\x06\x3c\xc9\x75\xf9\xb9\xeb\x35\x6c\xb1\xb1\x02\xfe\x64\xea\x75\x5c\xdc\xb1\x14\x7c\x2f\x55\xa9\xb4\xcf\x38\xd3\xbd\x2b\x88\xec\xed\xf1\xdc\x1f\x83\x1b\xd9\x22\x18\xbc\x4a\x2e\x23\x74\xbc\x1f\xbd\x55\xf9\x6f\x41\xc3\xa6\xab\xb0\x29\x28\x54\x17\xff\x09\x5e\x26\x1d\x6d\xce\x3c\x4f\xcf\x14\x2c\x6a\x1e\xc2\x66\xc7\xd6\xa7\xf9\x49\x5f\x57\x4a\xfb\xd1\x30\xe7\xc3\x68\xf7\xe9\xa4\x0f\xaf\x5d\xda\x9f\xee\x3e\x9d\x78\x47\xb4\xfc\xec\xb1\x2e\xdd\xe6\x7c\x03\xdf\x76\x58\x16\xb3\x0d\xa6\x06\xa3\x6f\x8c\xb9\xee\x6b\xd1\x71\x53\xbd\xfb\xd9\xba\x2a\x32\xbb\x78\xae\x4e\x6c\x84\xa3\x91\x3e\xb3\xe6\x5d\x0e\xfb\x0c\x2f\x77\xe3\xf6\x79\xad\x07\xdd\x47\x48\xb3\x4e\xfe\x0a\xf0\xca\x0c\xd0\xc0\xab\xdf\xa0\x57\x32\x9a\x06\x43\xf3\xdd\xcf\xbf\x05\x8c\x61\x82\x70\x59\x55\x22\x8e\xb7\x55\x95\x78\x45\x01\x81\x73\xfe\x74\xe0\x01\xf3\x31\x89\x59\xf0\x95\xb8\x59\xa1\x94\x7a\x1f\x6a\xba\x57\x39\xbd\x7e\x26\xf8\x96\xe8\x9f\xe7\x9c\x28\x98\x2f\x4a\x89\xf3\xb1\xa0\x3a\x94\xca\xdf\xeb\x32\x7e\x52\x50\x56\x55\x26\xf3\x05\xd4\x52\x60\x58\x17\xb1\x3b\x49\x3f\x49\x2a\x58\x56\x98\xcb\xb5\xb2\xe9\xaa\x96\xf6\x6c\x4f\x26\xea\x08\x64\xa5\x54\xaf\x84\xa6\xaf\x48\x9d\xa0\x4f\xeb\xa4\x97\x8f\xf7\xf0\x56\xbe\xc8\x19\xd5\xcc\xe1\xd2\x36\xc5\xe0\x3e\x3c\xca\xcc\xc9\xce\xc7\x17\x99\x70\xed\x5c\xd8\xe4\x89\x0f\xaa\xcb\xc7\x45\xbe\xdb\x69\xbb\x25\x7d\xfe\x5e\xed\xb7\xb6\xba\xf9\x7c\xce\x18\x15\x8d\x34\xe0\xe5\xd9\x7e\xb3\x22\xbf\x64\x3f\xe5\xab\x4b\x2a\x4b\xdd\xd0\x32\x5b\x6e\xe8\x4a\x15\xb2\xf5\x74\x8a\x42\x82\xdd\x88\x74\xd2\x1b\xbd\xd7\xdf\xda\xc6\xb6\xd9\x27\x35\xb5\xc6\xa7\xb6\xd4\x82\xb1\x9b\x94\xc7\x20\x50\x36\x03\x07\x12\xf1\xc9\xcf\xc4\xfe\xfa\xc5\xfe\x7a\xa7\xc8\x82\x9f\x83\xaf\x5f\xdc\xdd\xda\xe4\x6b\xa9\xeb\x97\xb4\x78\xc6\x85\x09\xdb\xfc\x92\xb2\xbd\x9b\x5a\x83\x9f\x85\x19\x18\xbb\x07\x8a\x7f\x0f\xb5\x1b\xb2\x15\x5f\x6a\x05\xc7\x77\x0a\x47\x7c\x09\xee\x0b\x2d\x83\x1c\xd7\xd9\x3a\x88\x08\xc2\x10\x0e\xcb\xb5\xf1\xb1\x6e\x23\x94\xb7\x42\x32\x50\x2c\x0f\xd7\x12\x0c\x91\xfc\x4f\xe3\x6c\x9f\xea\x7b\x53\x9a\x5c\xf5\xd3\x38\xce\x47\xa6\xe7\xb5\xe0\x4c\xe6\x10\xef\x03\x3e\xe1\xc8\x72\x85\x6e\x2a\x74\x0e\x5b\xa2\xc8\xf0\x93\x87\x43\x4c\x35\x76\x16\xc7\xdf\xc9\x60\xa0\xe7\x35\x6f\xf5\x95\xac\x69\x20\x84\x55\xd3\x66\xb6\x01\xaa\x83\x19\x11\x71\xfc\x32\x93\x1b\xb5\x73\xc9\xd7\x1e\xfe\xdf\x60\x29\xc0\x51\xb9\xf7\xdc\x6f\x75\xf4\xc0\xe9\x6c\x35\x18\x75\x8f\x98\xe1\x90\xe4\x8e\x54\x9b\x38\x91\x77\xbe\x56\x57\x5c\x1f\x48\xe7\xb7\x25\x23\x93\x93\xec\xd4\xa5\x5b\xa4\x2d\x1b\x0e\x91\x4b\x9c\x67\x0b\x03\x55\xe3\x38\xe1\x43\xd2\x91\x51\x9b\x34\xcc\xf8\x30\x81\x79\x2d\x69\x5e\x24\x39\x20\x60\xa6\xd5\x7b\x0c\x55\xd5\x14\x7d\x25\x53\x3e\x94\x87\x7a\xf5\x1e\x07\x9c\x69\xbe\xc4\x82\x9c\x83\x7a\x57\x7b\xd7\x75\x29\xad\xfc\x35\x20\xd4\x0d\xeb\x5d\x6e\xc8\x8a\xba\xd5\x97\xe6\xf0\x1c\x93\x43\x90\x3b\xf2\x3c\x05\xa5\xf2\xab\xe5\x76\x54\x8e\xde\xbf\x03\x05\xa5\x08\x0d\xeb\x0d\x95\x1b\xea\x17\x4d\xfe\xbd\x7a\x5f\xa2\xf7\xe5\x57\xa0\xc9\x04\xb5\x22\x84\xdf\x85\x27\xe5\xad\x1a\xd5\x9b\x84\x22\x0c\x47\x08\x77\x13\x17\xff\x04\x7d\xf5\xfb\x13\xaf\xe2\x9b\x0e\xf6\xbd\x7d\x3b\x82\x63\x66\xd2\x7a\x6f\xb9\x22\xcf\xed\x3e\x6b\xe3\x18\x51\x23\xe5\xb5\x6a\xd4\x9c\x2d\xb0\x82\xd8\xfe\xc3\xf0\xb9\x97\x59\x3d\xee\x08\xf5\x9a\x28\x09\xd3\xa0\x37\x22\x24\x87\x5b\xe7\xb3\x3c\xcc\x13\xce\x31\x37\xef\x99\xa6\x81\x1b\xa5\x2c\xa0\x55\x07\x05\xc2\x92\xa0\x83\x34\xe5\x9d\x98\x6a\x16\x45\x69\x04\xd8\x13\xfe\x35\x58\xdc\x5f\xef\x58\x23\x43\x37\x43\xe3\x3d\xef\xb6\x29\xac\x21\x88\xdf\x02\x1c\x2c\x09\x7d\xd7\x2d\x3f\x31\xfc\xee\x09\x71\x87\xae\xbe\x60\xce\x54\x09\xf6\xc1\x3b\xf0\x98\x11\x7a\x22\xc9\x2b\x96\x30\x74\x82\x6e\x19\x49\x72\x78\x19\xd9\x2a\x99\xe0\xc1\x04\x21\x30\x4a\xd2\xfc\x4d\xa1\xee\x15\x7c\x2e\x37\xa3\x7c\x2c\xf9\x78\xb9\x39\xa8\x96\x75\x1b\xcf\x4d\x1b\x86\x4e\xf1\x1a\xe9\x89\x11\x61\x7e\xaf\x23\xd7\x8e\x6a\x34\x61\xc0\xa5\x86\x4e\x50\xa3\x98\xee\xc4\xde\xdc\x7a\xb6\xaf\x3a\xd6\x11\x1b\x28\xd9\x93\xee\x31\xba\xce\x13\x81\x85\x06\x9b\x8a\x40\x0c\x5f\xa5\x27\x89\x4b\xf1\x32\xdd\x03\x35\xc1\xa2\xfb\x7a\x0b\xf2\x04\xbc\xea\x9e\x35\x1a\x04\x16\x79\xd8\x85\xa8\xdb\x25\x34\xb8\xfc\xcf\xeb\x19\xdc\xf0\x84\xba\x8b\x72\xec\xc0\xa2\x93\xd1\x14\x7c\x3f\x52\x7b\x0a\x55\xf2\xcc\x55\x24\xee\x57\xed\x15\xed\x48\x53\x0b\x94\xca\xb3\xd1\x14\x7c\x78\x78\x6d\xc1\x7d\x68\xb7\x66\x0d\xb2\xb1\x97\xa4\xbd\x60\x49\x3c\x45\xde\x8c\x5e\x74\xef\x89\xec\x3a\xdf\x98\x11\x00\xc1\x82\xef\xd9\x4a\xbf\x08\xe6\xd0\x0e\x0b\xff\x21\x71\x0e\x09\x7c\xee\x75\x7a\x84\xab\x8d\x15\x4e\xe6\x8a\xd4\x20\xd3\x2b\xa1\xeb\xc1\x10\xd2\x16\x87\x5b\x8f\xcc\x7b\xd4\xda\x1d\xe9\x22\xaa\x1f\x5b\x20\xec\x46\xe7\x5f\x64\x42\xdd\xd1\xb4\x06\x79\xc0\xc0\xd3\xf0\x65\x26\xd2\x09\x5e\xf1\xa5\x19\x28\x33\x63\xb2\x9f\xc3\xb5\x82\xba\x43\x59\x23\x81\x38\xc4\x0f\x53\xd9\x40\x18\xb1\x5e\x5f\x9d\x29\xbc\x57\xeb\x99\xf5\x70\xac\xb9\x36\x5b\x27\x7b\x87\xef\x2b\x2a\x64\x17\x49\xe7\xd1\x4e\xdb\x9c\x8d\x6a\xca\x48\x11\x73\xfe\x91\xba\x72\xd8\x68\xe4\x04\xf5\x1b\x2e\xf2\xdf\x3e\xd3\xaa\xa5\xbe\xa6\x93\xc9\x1f\x4f\xfa\xaa\x0f\x97\xd2\xee\x64\xe3\x75\xd2\xa3\x09\x43\x18\xe2\x1b\xfc\x92\x27\xac\x53\x02\xc0\x1a\x72\x0e\x99\xb0\x5a\x16\x80\x23\x35\xe9\x7c\x99\x15\x91\xe1\x84\xe5\x9d\x8d\xe4\xfe\x6e\xaa\x36\x72\x5f\x06\x12\xc1\x24\x39\x93\xa6\x19\xbd\xba\x1b\xba\xfc\x48\x57\xff\xa0\x82\x6b\xd4\x79\x30\xad\x49\xa8\x7a\x69\x2c\x1c\xcf\x99\x41\xa7\xdd\x56\xd4\x39\xba\x7e\x34\xfd\x2b\xbc\x2d\x6e\x37\x7f\x4b\xd0\x6d\xfd\xf5\x6d\x88\x3b\xd4\x84\x41\xf0\xaa\xd5\xc9\x3a\x12\x50\x82\x5a\x68\x1c\x64\x66\xab\x15\x78\xad\x8a\xe3\xe7\x3e\xe3\xde\x8a\x5a\xee\xac\x83\xba\xdb\x34\x0a\x1e\x2e\x41\x21\xd6\xc5\xbc\xbe\x11\x2e\xc3\xe8\x7b\x84\x86\x77\x4d\xbc\x27\x90\x43\xc8\xae\x0e\x35\x41\xab\x65\x44\x81\x9a\x80\xcf\x11\x35\xe8\xb2\x51\xa9\x38\xa6\xad\x40\x1b\xda\x0a\x46\x32\x77\xc0\x20\xeb\x94\x5f\xc6\xb2\xf2\x14\x1e\x75\x38\x4d\xef\xd4\x10\x22\x66\x5a\xc8\x86\xd2\x9d\x91\x6e\x61\xfa\xd9\xbd\x79\xf1\xfb\xf7\xa6\x3e\x30\x8f\x7c\x13\x20\x05\xaa\x91\xf3\xdd\x69\x1b\xb0\xa4\xa6\x42\x0a\xfc\x44\x7d\x54\x7b\x3f\x6a\x61\x96\xc5\x25\x72\x32\x39\xc9\x4f\xff\x1c\xc7\x62\xd0\xd1\x46\x55\xb1\x41\x57\x2b\xda\xed\x60\x57\x0d\xf5\xb2\x75\x11\x22\x71\xfc\x9d\x42\x43\x55\xef\x30\x6c\xfc\xe5\x43\xae\x67\xff\xa3\x2f\x96\xab\x5f\x27\xd0\xc9\xaf\x97\x4d\x53\xe8\xe0\xc7\x24\x40\xbb\x02\xbe\x46\x22\x6a\x9a\x9c\x8d\x21\x0e\x9e\xc6\x03\x71\x67\xa5\x47\x5c\x4a\xbe\x35\xb5\xcc\xa5\x67\xe3\x0b\x48\x75\xf5\x7c\x8e\x50\x10\xe9\xcf\xd4\xb6\x15\x54\xf9\x7e\xc9\x8b\x7c\xd5\x97\x22\x63\xa5\x16\x9b\x44\xd8\x8c\x03\xd4\xc8\xa1\xe0\x2c\x11\x6d\xbe\x6e\x80\xa3\x46\x17\x05\x5f\x7e\x84\x41\x77\x96\xdb\x84\x43\x75\x33\xec\x2c\x7c\xed\xaf\x86\x46\x8a\xd3\xcf\x0e\x40\x0d\x5b\x37\xee\x6f\x3d\xa8\x47\xeb\x97\xf2\x15\xfd\x24\xcf\xf9\x3b\xdb\x8a\x5f\xca\x7f\x4f\x13\xd1\xe0\x28\x1f\x99\x67\x47\xa1\x23\x93\xec\x28\xa9\x67\x68\x71\x19\xd8\x7d\x37\xcf\xbb\x7a\xf7\x30\xf4\x9f\x1a\x01\x07\xac\xb6\x83\x18\x4b\xbe\x9b\x39\x4a\x5b\xa1\x9d\x92\xef\x50\x4a\x3b\x84\xf3\x3d\x83\x37\xad\x0b\xae\x10\xef\xd1\x5e\xba\x9b\x9c\xfb\x2d\x9a\x53\x60\x7f\xa4\x6c\x48\xbb\x11\x22\x4e\x1e\xe6\xda\xf7\x74\xa6\x7f\xe5\x56\x03\x4a\x8c\x29\x2b\xf7\xc2\xe0\x74\x25\xb1\xdf\x1e\x45\xb0\xaf\x13\x0d\xfe\xde\x2b\x4f\xf9\x2c\xe1\xa4\xb4\xcd\x7d\xcc\x93\x6b\xf5\xb7\x44\xe8\xc8\x10\x10\x4a\xf5\xdc\x73\x96\xec\xb1\x04\xc6\x99\xc2\x97\x13\x84\xce\x48\xa6\xe8\xf9\xb0\xa5\x3d\x42\xa3\x23\x2d\xe1\x8c\xec\xad\x37\xc6\x5b\x35\xcc\x94\x63\xc9\x53\xb7\xb4\x19\xe6\xc3\x29\xf2\x30\xa4\x7f\x1e\x43\x59\x15\x86\xa7\xa5\xc2\x3e\x93\xac\xaa\x6a\x64\x16\x68\x0a\x20\x45\x8f\x9c\xcb\xda\x5e\x9e\x91\x6f\x12\x89\x46\x9d\x1a\x15\x43\x8d\xfb\x7a\xe8\x45\x7e\x04\x63\xe6\x84\xe9\xf3\xa9\x19\x22\x22\x60\x84\xac\x93\x81\x00\x5e\x47\xbe\x5a\x51\x06\x5e\x9f\xda\x23\x8a\x63\x28\x73\x69\x3e\x12\xef\xcb\x1c\x5b\xd0\x2b\xe2\xd6\x4e\x0b\xf2\x61\xfe\xd9\x45\x01\x5e\x52\x6a\xae\xcc\x9e\x4c\x4e\xf6\xa7\x8e\x1b\xb3\x1f\x0e\x51\x39\xdf\x2f\x82\x76\x0e\x47\x46\x91\xc8\x06\x4b\x19\x8a\xb3\x61\x6e\xc8\xe9\x7a\x7f\xfe\x9e\xd8\x28\x76\xc1\xd3\x60\x08\x96\xb6\x1e\x97\x66\xcd\xfc\xe2\x31\xf0\x0c\x9b\x77\x28\x01\x36\x8f\xa6\xc8\x7f\x29\xe0\xa4\x9b\x29\x80\xd6\x91\xc7\x24\xb5\x84\x2c\xb3\x42\x96\x6e\xee\x43\x8d\xe1\x0a\xd4\x16\x80\x68\x8a\xab\xdf\x96\x86\xd1\x42\x46\x08\x61\xae\x28\x6a\x77\x90\x82\xed\xce\x48\xee\x7f\x8f\x78\xed\x78\xad\xe6\x55\x04\xc0\x09\x00\x6a\x9b\xf7\xeb\x4e\x3f\xc7\x41\x55\xbf\xf1\x0c\x0d\xa7\x75\x65\xfb\xb6\xb5\xda\x1a\x66\x98\x35\x38\xc9\xed\x42\x33\xbb\xa2\xe9\x68\x8a\x8f\x0e\x36\xec\x4c\x1f\xec\x5f\xd5\x3b\x3f\x98\x1c\x9c\xa3\x44\x77\x0e\x7e\xd1\xcf\xb7\x59\x01\x6b\x6d\xef\x9d\x85\x67\x5c\x6c\x33\xd5\x49\xa2\x6e\x14\x2c\x69\xcd\x68\xf7\x89\xd4\x6f\x02\x7b\x15\x77\x21\x2f\xa9\x7c\xa4\x48\xd1\x9c\x5d\x3e\x06\x88\xf2\x16\x1c\x9d\x5a\x75\x45\xfd\xae\xdf\x55\xa8\xee\xe1\xfb\x10\xcc\xd7\x87\x4d\xa3\xfa\x39\xbd\xde\x71\x21\x6d\xa0\xb2\xab\x1c\x5c\x23\x93\x9f\x12\xa6\x59\xbe\xd8\x86\x38\xa5\xab\x5c\x72\xf1\xbc\xfc\x16\xae\x34\x19\x30\x07\xf3\xfc\x63\x02\x45\x4d\x86\xc3\x2e\x3a\x21\xbd\x5f\xd2\xee\x70\x17\xf1\xaa\x15\xc4\x8b\xd5\x13\x3d\x6c\x5d\x74\x23\x9d\xd7\x12\x90\xfb\x13\x13\x77\x7a\x95\x6f\x4b\x22\xa9\xcb\x04\xb7\xd1\x25\x99\x2f\xea\xf5\xf8\xc3\x31\xd4\x4b\x33\x6b\x00\xc8\x86\x73\x75\x01\xeb\xc1\x69\xdc\x60\x6a\x2d\xb1\x54\xc7\x71\x2c\xed\x9a\xc1\x43\x74\x46\x84\x13\x04\xf9\x79\x92\x9f\x9a\x9c\x73\xee\x34\xeb\x45\x5b\x06\x53\x55\x1d\x89\x67\xae\x2a\x52\xef\x60\x20\x16\x32\x59\x71\x3c\x21\x24\x17\x75\x68\xaa\xc1\xb4\xf7\x77\xed\xd0\x54\x0f\x5b\x7a\x6b\x63\x1f\x68\x66\x80\x11\x83\x03\x85\x79\x7d\x37\xc3\x49\x8d\x6a\x70\x67\xcf\xcb\x4b\xe0\xfc\x61\x66\x79\x59\x19\x71\x8f\x66\x8e\xfd\x69\x0f\x8f\xd5\x55\x48\xad\x5d\xa9\x53\x1e\xc7\x7c\xe4\x7d\xdf\x9f\xc0\x43\xeb\xc6\x63\xfa\xc1\x75\x11\x85\x78\x9b\x45\x39\xcb\xd4\xaa\xe8\xdf\xa3\x4c\xd7\x0d\xc6\xe3\x56\x0f\xe1\x4f\xd0\xee\x6f\x96\xeb\xcf\xd5\xc8\xbf\xb5\x5f\x99\x59\x99\x3d\xe1\x03\x6f\x1f\xab\x2a\x1b\xb8\x1d\x50\x1b\x14\x0a\xd7\x06\xb5\x4a\x9f\x4e\xf0\x8b\xc0\x71\xf5\x4a\xc0\xf7\x49\xa0\x53\xd6\x75\x37\x27\x84\x30\xe8\xb0\x8e\x64\x75\x66\x52\x60\x08\xa7\xe6\x43\x0d\x6f\x96\xe8\xdf\xe4\x1f\xd2\x34\x87\xeb\x4c\x22\x51\x9a\xd4\x9f\x67\x72\x16\x16\xae\xb3\x90\xe5\xd3\xe9\x24\x94\xd6\x59\xa7\x12\x02\x8f\x40\x3d\x33\x2c\xcd\x85\x13\x9a\x58\x44\x61\x8f\xd8\x0e\xf4\x54\xcc\xc2\x5a\xa6\x07\xe8\xdb\x16\xc2\x02\xd9\xbe\xce\xf9\x99\x38\xd2\xd3\x04\x43\x5f\x02\x21\x84\x7a\xb6\x34\x01\xa7\xbd\x98\xe3\xcc\x1e\x06\x23\x01\xd5\xb8\x99\x79\x7f\xfd\x23\x53\x13\x65\x20\xd7\xf7\x43\x7a\x7b\xf5\x01\xfc\xc3\x49\x28\xf4\x9d\x82\x1b\xbf\x87\x3b\x56\xc4\x71\x7d\xf7\x8f\xdd\xc5\xff\xfc\xfd\x0e\x71\x88\x25\x79\xc2\x9d\x13\xd4\x7e\x71\xf6\x67\x50\x85\x0b\xf5\x75\x1c\x6a\x6f\xb4\x23\x3e\x73\xb4\x70\x4e\x3a\x91\x17\xed\x8e\x5f\xb7\x8c\x33\xc2\x3d\x3c\xc0\xb7\x86\xaf\x23\x42\x8e\x19\xfd\x24\xdf\xe5\x17\x45\xce\x2e\xed\x08\xcb\x38\xbe\x52\xe8\xa7\xa7\x82\xa9\x08\xc2\x9f\x36\x94\x16\x26\x00\x19\xd1\x2e\x36\xda\x23\x4f\xe5\x31\xad\x3b\x09\x9e\x3a\xad\x79\x87\x39\x17\x78\xe9\x5d\x01\xbc\x26\x93\x93\xf5\x69\x61\xd1\xbf\xb5\x0d\xb9\xb3\x21\xc5\x7c\x0d\xe1\x29\x37\x16\x17\x3d\xb1\x11\x60\x37\x10\x5b\x2a\x8e\xf5\x5f\xaf\x73\x42\xb8\x89\x40\x95\x0d\x88\xce\x3d\x41\x19\xd9\x27\x99\x06\x0f\x2b\x92\x5b\xca\x46\xc6\xb1\x3c\x25\x4b\xd5\x48\xbd\x96\xbd\xcd\x58\x9b\x29\x97\x71\x9c\xdc\xf0\xc4\x7d\xe2\x48\xa3\x5b\x11\x02\x76\x77\xb2\x02\xf3\x6b\x41\x13\x8a\x37\x78\xa9\x0e\x37\x5e\xc5\x71\xf2\x56\x55\xa9\x9b\x43\xd8\xff\x0a\xd0\xbe\x86\xd6\xee\x39\xfd\x04\x13\x48\x7c\x8c\x73\xa9\xae\x0c\xce\xcc\x44\xfc\x5d\xd3\x61\x63\x21\xe0\x13\x29\xea\x41\xf4\x78\xc8\xde\xda\xe1\x0c\x1d\x96\x43\xb2\x81\x57\xe2\xa0\x17\xc6\x2e\xc8\x41\x5d\xca\xf6\x89\x36\xcf\x0d\xc2\x9f\x39\xb3\x91\xba\xb8\xc1\x1d\x12\x66\x77\xe3\x58\x1d\xfd\x81\x5a\xdb\xa5\xc1\x30\x2c\x0f\x75\xe9\x74\xd3\xdf\xf2\x44\x78\x7a\xbe\xfa\xdb\x57\x36\x42\x8e\x7a\x2e\x43\x12\x3b\xe4\x8d\xd4\xfc\xcf\x09\xde\xeb\xf1\x86\xfa\x13\x0d\x08\x8f\x1b\x00\xbe\x01\xdf\xb5\x44\xfc\xcf\x93\x09\x3c\x52\x47\xf4\x2c\x7c\xa7\xb9\x3f\x34\x03\x48\x49\xf7\x58\x62\x46\x06\x93\x93\x84\x1d\x67\x47\xc9\x26\x76\x34\xd0\xe8\x51\x55\x25\x21\x4d\x0f\x16\x37\xb7\x92\xef\x6a\x02\xf7\xb8\xa4\x63\xb4\x02\x14\x4b\xd3\xfe\xc0\x66\xac\x51\xc3\x1a\x98\x18\x10\x8b\xf0\x20\x69\xe2\x41\x35\x14\x38\x86\x0f\x85\x25\x14\xf0\x43\x71\xac\xd1\xb3\x13\xa6\xae\xc6\xed\x77\x89\x8b\x22\xf6\x42\xfd\xa4\x30\xa6\x47\x3a\xf4\xee\x3f\xe0\xcf\xc1\xfa\x78\x4a\x28\x8e\xf4\x52\x47\x21\xef\xd2\x3d\x4c\x5e\x87\x4d\x7d\x1c\x1f\x68\x99\xb7\xe5\x48\x69\xf5\xfc\x26\x7e\x9f\x76\xa3\xb4\x9c\x2e\xc2\xb4\xa3\x6b\xdc\x9a\x2a\x3e\x3e\x96\x8e\x95\x3b\x52\xfa\x9c\xb7\xd7\xb0\x3e\x54\x3f\xfb\x88\x2e\xa3\xd7\x9a\x12\x80\xb7\xec\x0f\xfa\x29\x85\xf5\xc5\x3f\xc0\x87\x11\xc5\x34\x96\x99\xe9\x65\x66\x08\xa4\x96\x2c\x2f\x37\x89\x4f\x0f\xff\xc3\x06\xe7\xee\x14\x0e\xd7\x42\x85\xb1\x93\x2f\x69\xca\xaa\xae\xd0\xc1\x69\x94\x60\x24\x71\xb4\x46\xe7\x75\xf6\xcb\x77\x30\x5e\x8d\x10\x2b\x94\x50\x7f\x17\x3a\xcd\x0c\x19\x2e\x16\x5e\x39\xdd\x71\xe7\x2c\xd3\xc3\xca\xc0\x63\xa6\xa6\xcb\x71\x69\xee\xec\x9c\xc1\x73\x33\x28\x1d\xef\x43\x5b\x0c\x64\xa7\x7f\xd5\x45\xf7\xa4\xd4\x90\xd8\x35\x3d\x0c\x12\x0c\x77\x3b\x27\xfb\x91\xc0\x82\xec\x6b\x28\x5d\xd8\x9a\x47\x08\xbf\x5e\x4e\x0a\xc3\x60\x1b\x15\x6a\x19\x0f\x1a\x87\xd0\x00\xc3\x2c\xd5\x08\x5c\x96\xe6\xa7\xf7\x21\x64\xd5\x2b\x99\x48\x84\x70\xb2\x3c\x1b\x4f\x26\xd3\xaa\x5a\x9e\x8e\xd4\x0f\x45\x36\xbc\xcb\x13\x5d\x51\xdd\x35\x4a\xcd\x07\xc2\xe0\x10\x44\x22\xc7\x79\xd1\x4f\xaf\x4e\xf5\xdf\x5f\xa8\xa2\x12\xe7\xeb\x05\x3a\x78\x87\x86\x52\xe7\x6b\xbb\xa9\x5b\x23\xc9\xe4\x44\x9e\xd2\xa6\x6e\xcd\x70\x28\x91\x4b\x9c\x4b\xab\x42\x43\x82\xb4\xc6\x23\x1e\xac\x66\xdd\x39\xd0\x3f\x47\x76\xfd\xf6\x80\x99\xfa\xcf\xe7\x78\x69\x4a\x14\x18\x61\x9c\x74\x71\xdb\x80\xfd\xc5\x4f\x38\xe1\xfe\xd3\x8a\x87\xc3\x0c\x89\x79\x4b\xc7\x64\x9e\x2d\x16\x84\x9b\xb1\x01\xbf\x8d\x7b\x5d\x0c\x73\xcc\x8e\xd6\xf1\x68\x62\x2b\x84\x06\x2e\xd6\x1b\x5e\xa6\xdf\x28\x1c\x49\x17\x3f\xe7\x32\x73\x02\xe5\x2e\xbe\x9d\x4e\x03\x79\xb0\x08\x44\xb5\x0c\xfb\x6f\x58\xb7\x28\xd9\xdb\x46\x40\x5b\x4c\x30\xc1\x50\x06\x23\x2d\xbe\xe3\xc2\x3b\xd9\x6b\xa2\x96\xd0\xe4\xcd\xf3\x45\x0f\xfc\x44\x47\x84\xf0\x19\xd7\x21\x14\x53\x8b\x20\xa9\xb4\xb2\xee\x20\x8d\x40\xd1\x08\x92\x33\x9a\xa8\x82\x7a\xe7\x55\x4a\x1c\xef\xa9\x51\x4a\x3f\xb8\xe6\xb5\xd5\xa8\x1b\x2c\xa3\x01\x9f\x05\xa2\x21\x1b\xcd\x13\x10\x50\x42\xc2\x97\xa9\x66\x83\x65\x12\x68\x85\xd4\x87\x4d\x3d\x1f\x8d\x24\xab\xe5\xa4\x11\x35\xdd\x83\xa9\xa8\x1a\x80\xd3\xea\xa3\x72\x36\xcb\x09\x69\x4d\x99\x40\xc9\xf5\x3e\xb2\x75\xeb\xa9\xe5\xb4\x93\xa1\xd1\x52\x14\xed\xd5\x11\x1f\x35\x3a\x46\x0c\x98\x9b\x25\xc7\x2b\x11\x63\x3e\x6f\xd5\xc9\x85\x53\xf1\x16\xe3\x8b\x7d\x5e\x48\x94\x72\xa3\x48\xe6\x06\xc4\x83\x01\x49\xbd\x30\x4e\x51\x0c\x33\x62\x46\xdc\xd3\x59\x6a\x18\x1a\x11\x4f\x4c\x98\x6a\x30\x73\x54\x18\xc7\x9d\x4b\x0a\xa5\x4c\x21\x5b\x58\x57\xc5\x6c\x7c\x71\x09\xf2\x46\x45\x78\x9b\x9f\x55\xa5\x55\x7e\x5c\xba\xfb\x98\x25\xae\x10\x71\x35\xb1\x57\x80\x78\x35\x31\x1c\x3f\x94\x6a\xb6\x71\x38\x35\x22\xbc\x55\xc8\x68\x2b\xb0\x8e\x85\x38\xa6\x8b\x99\xfb\x35\x8c\xfa\xd1\xd0\xf0\x0f\xeb\xf1\x46\x11\x4a\xc3\x34\x60\x4e\xa9\x8e\x1b\x1e\x01\x54\x99\x8b\x6c\xf9\xf1\x12\xd4\x57\xe0\x80\xd6\x9f\x48\xce\xfc\x4f\x6f\xb8\x32\x4d\x82\x9c\x23\xe4\x57\xd0\x58\xd0\xb4\x56\x0e\xed\x59\x82\xca\x43\x36\x00\x8b\xf0\x4b\x36\x44\xe6\xe1\x55\x93\xc8\x2a\x45\x41\x8f\xda\xc8\x4a\x75\x05\x93\x57\x60\x48\x2f\x18\xb4\x1b\xe8\x23\x86\x05\x52\x7d\x37\x06\xcd\x9b\xed\x55\x89\x22\x54\x5b\x59\xbb\x13\xe0\xfd\x0e\xf6\xc2\xa5\x06\xbb\xe1\x52\x7b\xb4\x79\x02\xa4\x2a\xe8\x59\xa1\x7b\x30\x12\x18\x8b\x97\xb5\xc8\x81\xb5\xc8\x5c\x93\xab\x0e\xf3\x65\xad\xbd\x5f\x7f\x3e\x72\xcb\x79\x77\x03\x8f\xbc\xed\x6a\xa7\xb9\x46\x61\x2e\x3a\x57\x0b\xe7\xad\x84\x01\x24\xce\x1d\x15\x3f\x6b\x53\x53\xef\x77\x3f\x1a\xb6\x3b\xc0\x91\x36\x18\x84\xf5\xed\x92\x9c\xb2\xb1\x7b\xd1\x46\x6c\xdc\x7c\xcf\x50\x60\x1a\x11\x0d\xdb\x25\xb4\xbc\x06\xe7\x0d\xf5\x8c\xd6\x4c\x2c\xd4\x38\xd8\x37\xc9\x1b\xe9\xcb\x4c\x7c\xa4\xc2\x44\x46\xec\xe0\x93\x54\x15\x47\xb7\x76\x91\xb4\x3e\xb0\xdb\xae\xcf\x2e\x90\x79\x51\xa3\x7f\xc5\x4a\x44\xda\x92\xb4\xa1\x1b\x52\x52\xf9\x23\xa3\x2b\x1d\x1d\x2e\xc9\x5a\x8b\x91\x79\x10\xb3\xb9\x3f\xe0\x91\x2d\xf0\x3a\xd2\xb5\x8b\x08\x77\x4b\xbf\xc0\x2d\x0c\x3f\xae\xe4\x07\x64\x53\x5d\x9e\x64\xdd\x02\x2c\x9f\x75\x21\xd0\xef\x93\x60\xd5\xcb\x6a\xd7\x4c\xa1\x39\xc7\x87\xd4\x38\x50\x2d\xbd\x5a\x4f\xd2\x04\x0b\x8e\x10\xe6\x0e\x57\x2d\xc9\xe4\xa4\x3c\x6d\x61\x6b\x35\xce\x5a\x5a\x7c\xbf\x8d\xd1\x95\x0b\x5c\x10\xde\x34\x28\xdc\x23\xb5\x80\xfb\x45\x0f\xfc\x5b\x76\x8b\xf7\x8a\x45\xd7\xb9\xba\x63\xf2\xfb\xe6\x2c\x99\xaf\x33\x60\xb2\x23\x14\x60\xe8\x06\x9f\x12\xe0\x72\xc1\xca\x5b\xb5\xc3\x05\xfb\x65\x40\x7f\x2d\x52\x36\xf0\xa8\x86\xe2\x27\xec\x84\xd9\x50\xde\x39\x61\x01\xbb\xb0\xb9\x23\x0e\x99\x63\xf5\xf9\x8b\xe3\x0e\x10\xc7\xd0\x61\x69\x07\xe7\x85\x6e\xf2\xc0\xac\xee\xce\xa2\x18\xce\x7b\x06\x60\x07\x06\xbf\xc8\x01\x49\xc8\xed\xab\x0a\x13\xb3\x08\x80\x4b\x55\x37\xc7\x01\x7a\xf7\xd8\xdb\x42\xee\x37\xd2\x08\x01\xf6\x20\x3d\x5e\x5a\x74\x14\xcb\x06\xae\xe6\xc6\xae\x5e\x83\x35\x7c\x68\x12\x4b\xd5\x1c\x4c\x74\x2c\x88\x52\xa2\x50\x07\x5d\x06\xb4\x95\xa2\x39\x4d\x55\xa0\xae\xd8\x42\xd7\x9e\x7a\x0b\xb2\x76\xa3\xc1\xb9\x79\x79\x9a\xa4\x16\x57\x20\x4c\x20\x45\xbe\x00\xed\x6a\xf2\x4f\xb2\x53\xef\x08\x67\x8e\x64\x9d\x67\xea\xc8\xd6\xe7\x70\x0f\x33\x6b\x4b\x98\xcd\x4e\xa2\xde\x7e\xbc\x81\xc8\xf7\xe0\x46\x01\x9c\x07\x95\x55\x55\xb4\x75\xd5\xf2\x4b\xc6\x05\x1d\x69\x41\x5d\x6d\x60\xb9\xa1\xc9\x1e\x17\x4d\x7f\x03\x5d\x30\xae\x40\x38\x8f\xe3\xfd\x38\xbb\xe0\x57\x74\xd6\xe0\x5d\x16\x8e\xff\x57\x55\x42\x03\xbe\x94\x07\x57\xab\x40\xf8\x1f\x60\x0d\x2d\xe8\x4a\x64\xd7\x81\xb8\x7f\x13\x3e\xdf\x0a\x99\xf8\x56\xab\xff\xa0\xdb\x44\xd4\x97\xa1\xaa\xfc\x2f\x32\x5f\x20\x64\x5d\xf5\x3b\x49\x9b\x4f\x5b\xf5\x64\xa0\x68\xe0\x60\xbd\x65\x75\x78\x3a\x47\x55\x95\xe4\x23\xd2\x7e\x02\xb0\x0c\xd5\xba\x5e\xe8\x96\x8e\xbc\x88\x32\x90\x75\x6b\xbd\x86\x43\xd0\x0f\x9c\xf0\x80\xd6\xf8\xba\xee\xc2\xd0\x40\x24\x72\x34\x10\xf6\xd6\x42\xf3\xc3\x9a\xf6\x00\x1d\xcf\x96\x85\x34\xcf\x3c\x1f\xc3\xd7\x3c\xb9\xd5\x5c\xbb\x8e\x10\xc5\xd4\x57\x84\x3e\xa3\x3e\x21\x3a\x9c\x82\xde\x9d\xaf\xab\xec\x0a\x18\x9e\xcf\x14\x64\xba\xa1\x6e\x32\x68\x58\x18\x05\x64\x4f\xcb\xb5\xa9\x9c\xd5\xcc\xd7\x4c\x15\x22\x67\x5a\xe5\x25\x8d\x26\x91\xd9\x58\x3a\xae\x95\xbc\x47\x89\x9c\xb1\x74\x62\x7c\x9a\x41\x75\x4f\x99\x22\xe0\x57\x79\xda\x55\xe1\x24\x46\x8d\x49\xe4\x86\x6b\x55\xfb\xf7\xef\x1a\xb6\x3f\xe2\x63\x5d\xaa\x31\x6b\x24\xbd\xa5\xfe\xdb\x39\x7d\xbf\x80\xd0\x3c\x73\x6f\xfa\xed\x32\x70\x96\x15\xce\x0f\xef\x4e\x2d\x42\xe3\x66\x8d\xb4\x66\x87\x2b\x30\x4a\x84\xb7\x58\xba\xa1\xd6\xd0\xf5\x79\x0d\x8e\xc1\x28\x3c\x06\xbc\xb9\x3c\x9d\xf3\x0a\x86\x7b\xa4\x17\xb5\x3e\x46\xf8\xd6\xa9\x41\x0d\xd1\x43\xbc\xad\x39\x9b\xc4\x71\x32\x21\x84\x19\x27\xf3\xbf\xd9\x82\xdf\x66\xcb\x8f\xc9\x51\x35\xec\x09\xc2\xb7\xb0\x9c\x29\xcc\x1f\x1b\x85\x38\x38\x39\x07\x08\xcd\xfe\xce\xe9\x5e\xa5\xa1\x8f\xd2\x7a\x76\xae\xc4\x80\xd0\x86\x3e\x77\xed\x53\xc6\xea\x40\xac\xf2\x52\x81\xa5\x6f\x55\xbe\x19\x2b\x05\x40\xe5\x46\xf5\x28\x13\x5e\x1b\xed\x5a\xc8\x1b\xd7\x39\xdf\xb5\x87\xa5\xcf\xa4\xcd\xf7\x06\x15\x66\x34\x87\xf4\x77\xea\x82\x36\x1f\x1b\x91\x6a\xa0\x55\x07\x1d\x70\xb0\xda\x1d\x61\x8c\xe3\x78\xb0\x99\x45\xd3\xfb\x70\x5c\x41\x75\xbd\xd7\x3a\x1e\x9b\x6e\x95\x77\x73\xe8\xda\x27\x7c\xc7\x73\x26\xa9\xf6\x84\x57\xb6\xaa\x85\xb9\xc6\xda\xaa\xb5\x94\xc4\xf8\xb5\x6b\x4e\xc9\xa4\x1f\x70\x7b\x21\x9a\xd1\xec\xbb\xfb\x03\x3f\x0d\x5a\x19\x3c\x99\xd2\x07\xb8\xe6\xd3\x25\xb5\x0c\xf8\x18\xe3\xd8\xc9\x11\x69\x41\xb5\xdb\x1f\xbe\x7d\xa3\xda\x4f\xb4\xeb\x2b\xd0\xc6\x32\x9c\xe5\x29\x1a\x10\x3a\x3b\x32\x0a\x2b\xc9\xb5\xa3\x10\x10\x06\x1e\x74\xfd\xdb\x9b\xe4\x2d\x70\xcd\x7a\xe8\x35\x68\x5a\x57\x06\xe1\x8e\x9c\x2b\x38\x0d\x07\xfc\xcc\x77\x4c\xff\xdb\x67\xde\x17\xcb\x08\xbc\x35\x77\x6f\x82\xf5\x85\xbc\xe3\xfe\xa1\xdb\x63\x57\x40\xe5\xb4\xe6\x77\x38\xf8\x83\x40\xb8\x69\x77\x40\x6e\xf5\xb3\x94\x3e\x03\x52\x31\xfd\xed\x80\xbf\xf7\x23\x24\xe9\xe8\x25\xe1\xbe\x0b\x6e\x1c\x00\x7a\x8a\x4d\x1a\xcb\xa8\x5d\x21\x87\xcd\x68\x81\x4d\x10\x8c\xdc\x20\x7f\x94\x4c\x4e\xe8\xa9\xdf\x90\x41\xf9\xe8\x70\x88\x7e\xc8\x8d\x93\xe5\x3a\x9c\x8a\x2e\x34\xa7\x0b\xa4\xdd\xd8\x80\x75\xf2\x1b\x5e\xb6\xe3\x2a\xb4\xbd\x7e\xae\x68\xe0\xf6\x73\x45\x3d\xbf\x9f\xc0\x86\xa4\x16\x54\x12\x79\xc0\x3b\xd5\xf2\x72\xbb\x6b\x37\xee\x85\xd8\x67\x74\xa4\xf1\xe6\xaa\xa2\xe3\xe5\x66\x24\xc7\xcb\x8d\xe7\x6a\x70\xeb\x33\x7b\xc1\x7c\x1a\x70\x6c\x55\xd4\xc3\x91\xaf\x68\xd0\xee\x4e\x7f\x9e\x4e\x66\x32\xf5\x30\xf6\x9b\x63\xa5\x68\xea\xc7\x33\xa1\x9e\x81\xb5\x35\xe7\x08\x5c\x62\x85\xae\x39\xcf\x41\x51\x0b\xd8\x0f\x17\x9a\x94\xaa\x47\xff\x21\xc0\xdd\xed\x0b\xba\xe2\x4b\xdf\x06\xd3\x9a\x9c\xb3\xaa\x4a\x18\xe1\xe3\x92\x16\x96\x1b\x61\x47\x11\xf8\xe2\xac\xaa\x08\xbe\x23\x42\x72\x5c\xaa\x0a\xbb\x22\x07\x95\xc4\x52\x51\x2f\xda\x4e\x1d\x22\x2c\xc4\x31\x1b\x0b\x9f\x7b\x7f\x36\x45\xf9\x3a\xb9\xa0\x71\x7c\x61\xd8\x5d\x3a\x30\xc0\x7b\x16\x21\x42\x8c\x8f\xc5\xb0\xca\x1f\x2f\x02\xa3\x4e\x42\x26\xe8\x76\x4f\xe6\x8b\xda\x47\x27\x99\x9c\x14\xa7\x61\xa9\x93\x62\x38\x44\x7b\x7d\xa2\x83\xf1\x99\x62\xf3\x62\xa1\xa8\x54\x78\xe9\x4b\xd7\x72\xa3\xe7\x38\x4e\xf6\xe4\x92\x27\x25\x6e\xbb\x8f\x06\x1f\xdd\x9a\x64\x2d\x9a\xf5\x46\xd3\x93\xe2\x4c\x0d\x6a\x34\xd2\x6b\xbe\x74\x25\x14\xc9\xbd\x26\x60\xfa\xbe\x4d\x10\xde\x90\xe5\x58\xf2\x04\xf5\x96\x63\xba\xdd\xc9\x9b\x04\xc5\x31\xa8\xa7\x9f\x4d\x66\x6b\xb2\xa2\xc9\x5a\x9f\xb6\xb5\x3a\x98\x02\xb4\xe6\x61\x3b\x9c\x63\xd5\x38\x1e\x64\xb3\x8d\x2a\xa9\xd5\x3a\xb0\x13\xc6\x5f\xe7\x09\x37\xba\x1e\x81\xdd\x29\xde\x8c\x97\x9b\xe1\x96\x27\x25\xb2\x1e\x23\x51\x6a\x36\x04\x54\x01\xf2\xf2\xd8\xee\xc4\x71\xb2\x26\x1b\x6f\x58\x13\x84\xac\x12\x8b\x31\xcd\x37\xfa\x09\xcf\xd5\x01\xc5\x3b\xa2\xf5\xd4\xd7\x58\xf2\x74\x83\x55\x83\xe9\x7e\xb6\x9f\x17\x7f\xdc\x9b\xae\x17\x69\x89\x75\x64\xa8\x34\xaf\xaa\x24\x9b\x99\x83\xe5\x26\xea\xb9\x7c\x9d\x45\xcb\xbd\x8c\xd2\x68\x08\xa7\x3f\x42\x87\xde\x73\x61\xb4\xb2\x76\x40\x76\x51\x1c\x41\xd6\x5b\x9a\xad\x22\x4c\xf1\x0e\x1d\xa4\x5a\x9f\x38\x7e\xaa\x2f\x1a\xfe\xa7\xd0\x9c\xe0\xd6\x50\xc9\xca\xa5\xca\x9b\x5d\xce\x2e\xc9\x60\x82\x3b\xcf\x3e\xe9\x18\x19\xf1\xb5\x79\xaf\x1b\x12\x94\x65\x91\xef\x2e\x78\x26\x56\x3a\x98\x60\x23\x41\x3d\xa2\xda\x15\x5b\x1d\xe5\x54\xf3\xe2\x44\x1d\x35\x78\x27\x00\x64\x3e\xd1\x4e\xe4\x15\x36\x38\xce\x4b\x35\xcb\xd7\xac\xb8\x49\x50\x55\x49\xc7\x13\x32\x48\x00\x4c\xaa\xaa\xbe\x91\x89\xf4\x4d\xc4\x3e\xd0\x44\xc1\x82\x89\x15\x47\xc1\x5a\xa3\x03\x0a\xd4\x47\xcc\x62\xdd\x06\x3c\x4b\xd0\x82\x11\xf9\x12\x14\xa3\x7d\xed\x91\x72\x9b\x09\xa9\x68\x3c\x56\x33\x1a\xac\x43\x87\x92\x16\x60\x84\xd4\xbc\x1c\x4c\x5d\x0e\x66\x2f\x47\xee\x4a\x58\x69\x77\x92\x83\xdf\xc8\xf1\x72\x73\x36\x9d\x4c\xaa\x8a\x81\x6e\x9c\x29\x32\x9a\x2e\x74\xae\x96\x3a\xe5\xf5\x07\xaa\x01\x9c\xf1\x75\xf1\x50\x9a\xa6\x10\xce\x88\x56\xb5\xe5\xe1\x54\xea\x57\x4c\x73\xe0\x1a\xd9\x16\x9a\x94\xda\x0c\x41\xba\x10\x3f\xcd\x72\xcb\x4d\x26\x1e\xca\xa4\x84\x08\xec\xe8\x36\x23\xbf\x88\x84\x62\x6f\x70\x38\x82\x95\x8a\x50\xef\x42\xd0\xec\xa3\x01\x3d\x75\x33\xb0\x63\x71\xdc\x48\xd0\xbe\xb9\x9d\xf6\xa1\x3f\x59\x7d\x3f\xad\x3e\xa3\x5b\x31\x84\x40\x5f\xf5\x68\xf7\xa8\x97\xc5\xb1\xbe\x2c\x41\x4f\xea\xc2\xf8\xcd\xfb\x1c\xbc\x4f\x0d\x31\xf7\x7c\x81\x85\xfa\x4f\x33\x94\xdc\x5e\x87\xfb\xec\xa9\x33\x90\x66\x91\x39\xf3\xf6\x10\x73\x72\xab\xfd\x85\xa6\x2b\x9a\xe4\x78\x82\x20\xa4\x0d\x7c\x80\x83\xd1\x43\x4f\x18\x40\xae\x4e\x3e\xfc\x82\x1d\x86\xc8\x4a\x2d\x67\xa3\xce\x44\x06\xc0\x8d\xc4\xba\xc7\xc0\x74\xf8\x9d\x7d\x60\x03\xf6\x91\xc2\x79\x97\x5c\x08\xba\x94\x11\x8e\xf8\x7a\x1d\x19\xc7\xa6\xcd\x32\xd9\x2e\x97\x59\x01\x2e\xeb\x8e\x14\x2b\x77\xb4\x28\x80\x5a\x8b\x70\xb4\xce\x8a\x92\x06\x4e\xcf\xa8\x23\x75\x96\x5b\x8b\xb0\xa8\x3b\xae\x41\x91\xa5\x2f\x77\xbc\x28\x72\x76\xf9\x2c\x2b\xa5\x0b\xe0\x6d\xd2\x02\xbc\x3f\x67\xd9\x72\xb9\x17\x99\xa4\xce\x85\xa3\x2b\xbf\xc9\xca\x76\xe2\x92\x6f\x77\xbc\x84\x66\x02\xb1\xf6\x43\xea\x90\xe9\x97\x5c\x03\xa4\x4c\xd0\xec\xb3\x0e\xa7\x0c\xd3\x08\x7c\x37\x7a\xae\xa6\x9c\x23\xaa\x29\xdd\xb6\xdd\x6e\xf9\xd6\xd9\xd4\xfa\xd1\x52\xcf\xda\xba\xe0\xd7\x69\x5f\xab\xbb\x9c\xf4\xbb\x3c\x78\x99\x3e\x1e\xf8\x7d\x4c\xc0\xb7\x95\xd3\x1c\x75\x14\x85\xa1\xc6\xa7\x93\xc9\x44\x11\x6f\xcd\x8d\x02\xef\xe7\x76\x17\x77\xb5\xa7\x1a\x63\xa0\x48\xa2\xa9\x33\x49\xbc\x28\xb2\xe5\xc7\x08\xe1\x77\xda\x1e\xc0\xf3\x92\xd3\xb5\x9d\x45\x56\xca\x87\x70\x2e\x41\x07\xb4\x91\x66\x14\x8b\x5d\x2a\x78\x0f\x0c\x0b\x42\x92\x29\x57\xa3\xce\x5d\xfb\x7f\x29\xb2\x25\x7d\x43\x45\xce\x57\xc1\x43\x74\x1e\x3c\x44\x57\xd2\xf1\x87\x8d\xcb\xd6\xaa\x12\x56\xab\xc8\x62\xd4\x0a\x6d\xd3\xd4\x9d\x03\x39\xa6\x0a\xce\xc9\x4e\x26\x0a\x8d\xb4\x09\x9c\x9c\xe7\x09\x58\xd6\x81\xa8\x20\xea\x71\x00\x3c\x59\x96\x70\xac\x50\x68\xf4\xc7\xfb\xb3\x08\x48\xa1\x28\xd5\x25\xac\xe5\xd5\xb5\x82\xca\xdb\x6c\x07\xc5\x70\x56\xef\x9a\xd1\x2c\x21\xa6\x1a\x21\xea\xac\x16\x45\xb6\x2b\xe9\x4c\x11\xf5\x2b\x1d\xf8\x4a\x48\x5c\x7a\xde\x6b\x42\x9c\x5a\xcb\x69\x2f\xb2\x95\x76\xc0\xe5\xf9\xa3\xa1\x81\x0e\x33\x70\xaf\x7c\xb5\x3c\xeb\xd2\x50\xd3\x1d\xac\x9d\x33\x5e\x2a\x4a\x51\xed\x52\x39\x17\x0b\x47\x86\xa8\xfe\xe1\x4d\x7f\xc3\xcb\x64\xe5\xfb\x91\x35\x36\x04\x53\x84\xc0\x4f\x88\xd9\x47\x41\x26\x1a\xf6\x6b\xe7\x22\xf2\xe4\x84\x11\xe6\x91\xac\x7a\x00\xac\xaa\x58\xd7\xe8\xfc\x9d\x02\x54\xd9\x57\x1b\x61\x81\xda\x71\xbb\xb2\x7e\x79\x42\xf5\x9a\x70\xb8\x1d\x3a\x36\x61\x81\x79\xbe\xd0\xaf\xa8\x56\x7a\x71\x47\xe7\x2d\x55\xdb\xae\x28\x74\xcf\xd7\x0e\x6d\x6a\x8d\xc3\x93\xe5\x69\x3b\xe5\xc4\xda\xbf\x54\xd5\xe0\x57\x9e\xb0\xda\x6b\xad\x5a\xd7\x15\x4d\x5e\xe7\x86\xe0\x42\xea\x5d\x50\xcb\xa8\xf7\x8d\x81\xc2\xd9\x60\x82\x25\x61\xe1\xc6\xa8\x05\xc6\x03\xe9\x21\x03\x82\x96\x72\xb6\xe5\x89\xfe\x65\x05\xef\xbd\x66\x3f\x1c\x61\xee\x23\xca\x08\xe7\x9a\xa8\xca\xc8\x03\xab\x56\x72\x0e\x01\xe5\x4d\x00\x01\x22\x01\xfd\xcf\xaa\x6a\x3a\x00\x55\x24\x3b\x0a\x67\x66\xf1\x60\x40\x02\x16\xaa\x6d\x42\xa1\xba\x41\x0e\xd6\xe1\x26\x32\x28\xf1\xf7\xac\xd8\x53\x87\x9b\x9f\x94\xde\xae\x0e\x08\x3b\x41\x25\xf1\x93\x7a\x56\x2c\x68\x75\x69\x0a\xb2\x57\xb7\xab\xac\x89\xc0\x65\xd2\xd2\xac\x1a\x4d\x4f\xf2\xd3\xa4\x98\x59\x25\xf7\x74\x82\x60\xd3\x6b\x81\x4e\x7e\x3a\x99\x41\x43\x69\x31\xcf\x17\xc6\x2e\x93\xd7\x76\x99\xe4\x81\xb5\x9d\xe5\xf3\x6c\x78\x1f\x8e\x45\x49\x88\xac\xaa\x92\x10\x61\xe9\x9e\xd7\x79\xa2\x1a\xd2\x4b\x9e\xea\x1d\x98\xe7\x0b\x84\xd7\xaa\xda\x62\xc8\xcc\x36\x24\xec\x74\x52\x55\xe5\x80\x48\x04\x54\x86\x6a\x33\x61\xb3\x69\x3a\x41\x0b\x84\x57\x34\x59\xe2\xb5\xc2\x49\xb4\x8e\xe0\x32\xc9\x70\x89\x05\x1c\x86\xb5\x77\x60\xd6\x38\xf7\x1d\xa1\x96\x81\x12\xdd\x8a\x64\xb3\xf6\x02\x8f\x44\x3a\x39\xd9\x9c\x6c\xc8\xc6\x2f\xac\x45\x6a\x64\x99\x28\x72\xc9\xdb\xa6\x49\xe3\x78\xfa\xe4\xd9\x4a\x1d\x98\xde\x6a\x48\x36\x5a\xa0\xa7\x5d\x26\x98\x6e\x0e\x5a\x31\x5e\xbf\xf3\x39\xdf\x97\x56\x78\xa9\x46\xbb\x22\xe2\x64\x77\xb2\x23\xbb\x66\xae\x1b\xc6\x0e\xef\xfc\x61\x28\x98\x72\x6c\x1c\xc3\xbb\xc7\xe1\x79\xb4\xa2\x5e\xbc\x47\x8d\x25\xd5\xc8\x48\xbe\xd5\x72\x1b\xef\x9d\xfb\xd5\x2f\xaf\x71\x2e\xc7\xd7\xa4\xd9\xca\x2f\xfa\x24\xa4\x81\xe6\x72\xd1\xa3\xe3\x92\x0b\x99\x74\x72\x61\x76\x0a\x6a\x1a\x8a\x58\x9a\x1f\xa0\x25\x0e\xce\x83\xd4\x3e\xd7\x22\xcc\x29\x60\x9c\x1d\x28\xa6\x76\xa3\x45\x81\x40\x50\xe7\x62\xa7\x50\x43\x45\x5b\xe3\xdc\x36\x79\x46\x26\x36\x12\xe4\x8d\xca\x35\x5d\xba\x7c\x5c\x92\x2b\xaf\x96\xfa\x83\xf0\x9e\x70\x4b\x9b\xcf\x6c\x49\x4b\x76\xa4\xdc\x25\x68\xec\xb3\xc7\x4e\x15\x99\x3c\x1a\x49\x4c\xad\x23\xa1\xd1\x88\xe1\xfb\xd8\x38\xd4\xdf\xcf\xca\x34\xc3\xfb\x59\x96\x96\x08\x1d\x0e\x1e\x2b\xcb\x6c\x87\xe7\x05\x2a\x7c\xd8\x4c\x99\xb9\x69\x88\x62\x59\x55\x14\x2d\xb0\xef\xa4\xec\x79\x58\xc5\xc9\x85\x8c\x24\xbd\x66\x0e\xa8\xe1\x69\x6b\x3d\x6a\x4d\x87\x7d\x5f\x47\x35\x05\xa8\x5f\xfb\x53\x53\x1a\xf9\x6c\x30\xdd\xe4\xa4\xf6\xb4\x11\x36\x58\x4b\xcb\x55\x0b\x67\x62\xb6\xa2\x89\xc0\x0a\xaf\xc0\x22\x60\x48\xa0\xb4\xcb\xbb\x3c\x1d\x2f\x37\x3d\xef\xb5\x23\x44\x21\x2c\x67\x72\x56\xb3\xe0\x24\x4a\xc5\xe9\xc4\x4b\x98\xa0\x94\x1e\x12\xa9\x3b\x91\x6d\xd6\x87\x37\xc5\x67\x0d\xac\xe1\xcc\x8e\x3f\x8e\xe5\x69\x38\x15\xcf\x49\x0d\x6d\x5a\x56\x38\x22\x28\x10\xa8\x8b\x39\x5b\x10\xbd\x88\x73\xb6\xa8\x7d\xf3\x79\x0e\x6e\x9a\xb2\xe0\x25\x18\x0d\x2c\xb7\x21\x53\xae\xaa\x28\x28\x51\xb2\x55\xed\x79\x4c\xdf\x3c\x2f\xba\x26\x27\x3b\xb5\xb2\x39\x3a\x9d\xf4\xf8\x40\x7d\x30\xf8\x98\x25\x39\x11\x58\x10\x86\x52\x9d\xac\x7a\x3b\x9d\xe8\xb8\x46\xc8\x3f\x7a\xbf\x2a\xb2\x4b\x34\x93\x58\x55\x89\x40\x31\xe2\x91\x37\xe8\x5f\xd4\x6f\x7b\x24\x61\x36\x14\xe8\x3b\x05\x39\x32\x71\xa3\x2e\x32\xd8\x8c\x4f\x10\x66\x5e\x13\x3f\x3a\x94\xa0\xbe\xd1\xf3\x05\xb6\xa8\x48\x9b\x88\x54\x6f\x12\x9b\xe7\x0b\xe2\xf5\x21\xac\xca\x2f\x56\x4f\x09\xd6\xba\x23\x30\xa0\x27\x14\x0c\x8d\xed\x40\x00\x84\xa1\x60\x0e\x3f\xb5\x94\x3b\x82\x5e\xad\x3b\xb0\x5e\x3e\x97\x0b\x22\xb0\x6d\x35\x6f\xb7\xea\x4f\xeb\x9f\xcd\x95\x79\x05\x8c\x96\xb0\xd0\xdf\x5b\xe8\xd0\x26\x2f\x25\x17\x37\xe3\x15\x67\x14\xe7\x64\xcb\x13\x86\x7a\x79\x1c\xe7\x66\x38\xb3\x84\xcd\x99\x63\x9b\x2c\x88\xc4\xdf\xd8\x36\x50\xfa\x4b\x5b\x73\xc5\x25\xdd\xba\x72\x0d\x03\x3e\x7f\xda\xa6\x77\xcc\x15\x32\xc5\xc6\x9a\x0d\xd7\x13\xc4\xb8\x77\x7d\x47\x8b\xd7\x3b\x50\xc3\xaa\xbf\xa1\x08\x28\x49\x27\x3a\xf1\x25\x5f\x9d\xe7\x5b\xea\xd5\x51\x9f\xb6\x8a\x2b\x5f\x55\xc7\x86\x21\x2d\xe7\x64\x62\xaf\x49\xf4\x55\x44\x48\x5e\x55\xd1\x50\xbb\x31\x6c\xb0\x8f\x3a\x98\xb4\x62\x5c\xf2\x2d\x85\x58\x93\x9a\xd8\xa5\x2b\x05\x91\x59\x57\xb2\x17\x6c\xa5\x5e\x7f\x6f\xe8\xa7\x04\x2e\xe3\x0c\xee\xa2\xe5\x71\x99\x72\x4f\x35\x13\xae\xc8\x6e\xd2\xaf\x27\x13\x30\x56\xe3\x78\xcb\x93\x1c\x36\x10\x29\xdc\x75\xa6\x7f\xcf\xf5\x1f\x7f\xeb\xd2\x5f\xc1\xff\x88\x2e\xda\x0b\x96\xab\x0e\xac\x83\x9b\x4b\xcd\xbd\x94\x1d\x11\x98\xc5\xf1\x60\x3a\xd0\x9a\x4d\x34\x13\x6f\xe9\x8a\xc7\xf1\xdb\x3c\xc9\xc7\x7b\x06\x2d\x1f\xec\x2d\xc1\xf5\x34\x34\x5f\x33\x5f\xa5\xaf\xb2\x57\xc1\x79\x71\xa7\xe4\x36\x01\x79\x50\x74\x01\x7a\x2e\x8e\x63\x60\x8c\x90\x10\x08\x46\xb6\x71\xac\x0a\x8d\x97\xdb\xa3\xe5\xc0\x3e\x9c\x74\x9b\x8c\xde\x1a\x3e\x8c\x34\xbb\x87\x9b\x72\xb4\x06\x26\xe2\xf1\xf7\x05\x99\x9c\x88\x1a\xc2\x8a\xe1\x10\x79\x25\xe7\x62\x41\x0c\xc4\x32\x20\x57\x2c\x0c\x90\xd4\x21\x6b\x74\x8a\xe1\x0d\x59\x6e\x33\xe8\xad\xeb\xdf\x07\x0b\x9f\x75\xe8\x97\xee\xb9\x61\xaa\x75\x87\xd4\x32\xa8\x72\x77\x2c\x03\x94\x52\xa5\xed\x41\x55\x44\x80\xb9\xd0\x0a\x40\xd9\x05\x68\x09\x0d\x50\x2a\x0f\xf6\x7a\xf7\x9c\x1b\x1d\x31\xbe\xc8\xb3\xb2\xaa\x14\x42\x23\x6b\xf8\x0a\x13\x6a\x02\x5d\x3d\xcb\xd3\xc9\x6c\x34\x4d\xa7\xa8\xf7\xbd\x9a\xfd\x0f\x46\x7f\x0c\x1c\x5e\x2a\x3a\x63\x30\x25\xc4\x79\x86\xaa\xaa\x81\x1a\x6e\x55\xfd\x53\xc0\xa4\xbc\xd3\xf1\xbd\xc5\xf7\xc6\xf4\x9f\xfb\xac\x28\x13\xe8\x0c\x81\x20\xaa\xa4\x05\x91\x66\x39\x12\xef\x90\xf9\x2c\x75\x2f\xb9\x0c\x97\x08\xdc\x4f\x4a\x7d\x98\x90\x65\xdd\x6b\xc3\xcb\x87\x4b\x99\x5f\xe5\xf2\x46\x87\xde\xa9\xdd\x2c\x00\x8f\xa5\x9e\x8f\x3e\xe2\xda\xf2\x31\x40\x5d\x7e\xe8\xb2\x23\xc1\x9c\x4c\x4e\xf8\xa9\x6c\xbc\x2d\xdc\x62\x8f\x99\xdb\xa0\x39\x5f\x80\xfe\x5a\x03\xe4\x74\xbc\x4c\xea\xb9\xf6\x1e\x23\xbe\xc0\x7b\xf2\x0f\xd5\x79\x66\xf9\x91\x65\x1c\x5b\x3c\x59\x6b\x9e\x15\xb6\x00\x6c\x1d\x64\xc3\x2f\x95\x79\x92\xe4\x55\xb5\x1f\x10\x5b\xbb\xaa\x0a\xf5\x01\xfb\xa9\xa0\x6d\x55\x81\xef\xd2\xf0\x99\xc2\x1c\x21\x9c\xcf\xb9\xbb\x00\x7b\x5c\x38\xfe\x67\x3f\x9f\xc1\xc3\x25\xbd\x47\xcb\x97\x32\xfe\xdc\x21\x19\xf4\x11\x27\x4d\xe6\x6f\x33\xf1\x91\xae\xde\xed\x32\xd6\xf4\x59\x1c\xe4\xb5\x94\xfc\x4a\x12\xe4\xcf\x33\xb5\x3e\xa5\x4e\x02\xe4\xc5\x18\xb5\x97\x80\x40\x57\x55\xb2\x1f\x43\xb4\xda\x32\xbf\xa2\x2f\xe8\x5a\xce\x74\xc6\x29\x3c\x10\xa9\xf9\x90\x96\xbf\x6d\xeb\x4a\x1e\xd6\x04\x1f\x66\x33\x95\x7e\x66\x2b\x4a\x7e\xa6\xab\x01\xa2\x95\xc7\x71\xf2\x83\x0e\x57\x02\x77\x57\x07\xee\x79\xca\xc0\x8c\x1a\xef\xc7\xf4\x93\xc2\xd9\x73\x59\xdc\x3c\x56\xf0\x95\xae\x74\xb5\x70\x1d\x6e\x47\xa3\xac\xb7\xe4\x4c\xe6\x6c\x4f\x0f\x9a\xa9\x02\x26\xfd\xe3\x4c\xf2\x6d\xbe\x44\x36\xcf\xe8\x87\x81\x8c\x12\x2f\xc9\x5e\x7b\x8d\x65\xa7\x93\xd9\x34\x1d\x4d\x91\x5e\x06\x20\xb3\xc3\x19\xa4\x8d\xc5\x40\x10\x59\xf3\x3b\xb5\x61\x4b\x3c\x62\x18\xac\x98\x03\xa3\x1b\x0e\x2c\x09\x84\xda\x59\x71\x9c\x14\x0a\xf9\x03\x83\x70\xb5\x74\xa7\x93\x59\x71\x3a\x49\x8b\xb3\x9a\x96\xfd\x59\xb7\x2c\xe1\x28\x18\x12\xdb\x1b\xac\x06\x26\x35\x9d\x3e\x6b\x0c\x2f\x6d\x8e\x5f\x93\xf0\x30\xde\x35\x66\x78\x7d\x64\xac\xeb\xd9\xcf\xba\x88\xee\x58\x47\x88\xb3\xa7\xd7\x3b\xa9\xff\xe8\x38\xa9\xac\xaa\xa6\x38\x23\xee\x10\x73\x9c\xa3\xaa\x1a\xe4\x71\xec\x25\x0d\x26\xa8\xaa\xdc\xf7\xa8\xa3\xcc\x88\x6b\x17\xbe\xba\xcf\x0c\x60\xdb\x32\x63\xf2\xe9\x2a\x97\x0a\x48\x05\x84\x8e\x07\x66\xbe\xf3\xc0\x8c\xc5\xee\x15\x6a\x3d\x21\x70\xee\x66\x86\xe8\x31\x75\x67\xf0\x0c\xad\xa8\xa1\xa6\x14\xb1\x05\x93\x4d\xc5\xd9\x24\x8e\x55\x05\x42\x14\xba\xed\x5f\xbf\x80\x70\x99\x85\x64\x98\xa3\xb1\x66\xae\x4d\x10\x94\xe8\x46\x8d\x5e\x84\xd5\x05\x1e\x2f\x37\x43\xff\xd1\x07\x73\xdc\x96\x17\xc8\x72\xc3\xaf\xeb\x08\x50\xcd\xdc\x9d\xa0\xbb\xcc\x7b\xe9\x12\x7f\x2d\xa4\x6c\x52\x45\x26\x46\xa4\xb6\x7e\x64\xc6\xa4\xbe\xfc\x7c\x54\x30\xf0\x1a\xe1\xde\x8a\x2f\x28\x6f\x9d\x85\xb5\xe9\x06\xeb\x37\x4c\x21\x4b\xd2\xb8\x5c\x09\x11\x78\xe7\xf8\xcd\x83\xe2\x99\x91\x3f\x96\x86\xac\xd7\xbb\xd8\x32\x8b\xae\xaa\x12\x98\x03\x76\x53\x9a\x06\xd6\xa8\xb6\xcd\x35\x9c\x83\x93\x64\xaf\x90\x28\x27\x34\xdd\xf0\x6b\x0d\x7a\x7e\xda\x50\xf6\xce\xc6\x31\x45\x71\x0c\x71\xd1\xcc\xbb\x90\x23\xbc\xaf\x2a\x06\x29\x98\x7b\xdc\x02\xcf\x6c\x52\x86\x58\xd6\x4b\xfd\xdd\x34\x3c\xf4\x6c\x2c\xca\x9c\x5d\x16\x06\xee\x69\xd5\xc3\x37\x54\xbc\x30\x2c\x7e\xd1\x6d\x27\x10\xfd\x9f\xff\x47\xd4\x11\x1b\x26\x42\x48\x3b\xb5\x0f\xd4\x8f\x0b\xab\xaf\x89\x73\xcf\x04\x9b\xa9\xff\xc3\xe4\xb6\xf2\xaa\xd3\x0a\x83\xd2\xe8\x2b\xcf\x6f\xa2\x37\x5e\xdd\x0a\x1b\x73\xb9\xa1\xc2\xc2\x83\xdf\x37\x72\xdf\xe2\xa3\xa4\x4b\xce\x56\x99\xb8\xa9\x27\xc5\xdb\x1a\x9f\x3c\x9c\x24\xf4\xed\x4d\x95\x07\x53\xd5\xb9\x6e\xc2\x3c\x9c\xf0\xf8\xaf\x5f\x7f\x95\xd8\x42\x6e\xc2\xae\x8e\x51\xd1\xf5\xac\x4d\xe5\x5d\xce\x57\xc0\xef\xd0\x17\x5d\x95\x65\x10\x19\xa1\x24\x99\x8e\x53\xba\xf7\xfd\x22\xd5\x21\x68\x30\x78\x7d\x18\x99\x24\xcf\xc6\x18\x8d\x32\xad\xc1\x5b\xf3\x97\x8b\x1a\x18\x4a\x60\x30\x40\x7c\x14\xe9\x3b\xc1\x96\x28\x74\x8a\xcd\x10\xe6\x5f\xe8\xf1\xbe\x34\xc4\x5b\xd4\x2d\x7d\xb4\x76\x2a\x54\x5b\xa6\x40\xf0\xb8\x68\x28\x1b\x76\x2a\xd6\x87\xce\x6c\x3f\xa2\xa9\x30\xc6\x5f\x75\xa4\x9c\x84\x8d\x8c\x9f\x53\x1f\xb2\x39\xbe\xf9\x95\x0e\xc5\x89\x97\x0a\x43\xca\xb1\x44\xa0\xc3\xe3\x01\xe8\x7a\x2d\x36\x89\xff\x28\x3c\x96\x06\xf0\x83\xf5\x11\xcc\x6f\x89\x6b\xe6\x4b\x9b\x2a\x06\x77\x80\x4e\xca\x03\xfd\x47\x85\x14\x91\xef\x99\x76\x30\x35\x08\x2d\xad\xd1\x2e\x6e\x31\x59\x3a\xe7\x8b\x93\x24\xd3\x08\x93\x88\xe3\x0c\x30\xa0\xaa\x92\x84\x98\x2f\xa2\x79\xec\x2c\xa9\x3d\x47\x42\x69\x35\x2d\xc7\x20\x54\x05\xd5\x98\xa7\x04\xce\xc9\x15\x2d\x66\x91\x90\x45\x94\xea\xd1\xe0\x1c\x62\xa3\xe6\x55\xe5\x8f\xf1\x90\x9c\xe7\xc9\x12\x61\x51\x55\x5a\xc5\x84\x10\x36\x5b\xa7\x2c\x64\x42\x98\x37\x7c\x89\x57\x78\x87\xb7\x64\xa3\x90\x7f\x23\x1f\xcc\xd7\x89\xc2\x13\xd0\x92\x6c\xf1\x8a\xec\xc8\x16\x8e\xa8\x8b\x9f\xbf\x24\x9b\x44\x8e\xa6\xd8\xc8\x07\x11\x86\x21\x11\x6b\x17\x74\x45\xb6\xbd\x2d\x59\xe2\x25\xb9\x3a\xac\x4c\x5d\xbc\x23\x4b\x7d\x5c\x0f\xe6\x04\xc0\x23\x4d\xc1\x5f\x4e\x89\xf0\x12\x62\xf4\x6e\xd5\xff\x67\x0f\x14\xae\x94\xac\x30\x7c\xe9\x73\xb8\xb5\xbe\x6c\xf1\x8a\x94\xee\xeb\x74\xa9\x1d\xa0\xe8\xc2\x3a\x4d\x97\x87\x0c\x84\xec\xe4\xe3\x58\x12\xb2\x8e\xe3\x64\x47\xf6\x08\x27\x03\x5e\x55\xd0\xf8\x29\x57\xff\x9b\x0f\x42\xb8\x6e\x4e\x8f\x18\x64\x2c\x1a\xe7\xe3\x64\xab\x6a\x65\x55\xb5\x34\xbd\x9c\x65\xe6\x47\x9d\xa4\x36\xc8\x3a\x9a\x35\x53\x3d\x33\x37\x54\xab\x82\x2c\x11\x5e\x9d\x96\xc3\xa9\x9d\xb2\x1a\x35\x8c\x13\xef\x46\xea\x97\x99\xe1\x01\x61\x17\xc8\x97\xb2\x55\x9a\x59\x61\x8b\xac\x95\xd5\xa4\x56\x56\xcb\xd7\x89\xc5\xe9\x8c\x82\xd9\xd2\x97\x40\x80\x86\x99\x36\xe4\xbd\xd5\xca\x61\x70\x6b\xd6\x46\x8e\xb7\xd3\x9f\xa6\x26\xde\x92\x67\x2c\x59\x21\xa2\xfe\xec\x10\xbe\x22\x61\x5b\xdb\xd9\xca\xbf\x68\xc3\xa9\xc6\x1e\xc7\x94\xad\xf0\x0d\x59\x5a\xb5\xb7\xed\x6c\xa2\xa5\x72\xd0\xb7\x96\x12\xf7\x14\x71\x7a\x05\xeb\x7d\x03\xdb\x7c\x7f\x96\x14\xc9\x95\x5e\x1b\x7c\x55\xef\xf2\x95\xdb\xe5\x22\x29\x31\x94\xc5\x37\xfa\xf8\xdc\xd8\x2c\x94\x36\xab\xea\x12\xa3\x3a\xd1\x96\x74\x3f\x75\xb7\xea\x9c\x94\x2e\x4d\xf7\x78\xa3\x1d\xe1\x84\xaf\x96\xef\x6e\x25\x97\xce\xad\x45\xa0\x06\xda\x0e\x21\x0e\x8c\xa0\xe7\x8a\x82\xb9\xca\x8a\x44\x8e\x2f\x8a\x9c\x7d\xa4\xc2\xb2\xe5\x07\x93\x9e\xac\x9d\x1a\x99\x97\x08\xfc\xe6\x40\x78\x3f\xf5\xb6\x35\x9f\xd9\x47\xaa\x85\xb7\x99\xa4\x67\x93\x99\x6b\x8f\x94\x54\xba\x5e\x3c\x95\xb2\x3b\x1b\x4f\x04\x19\x08\x04\xf1\x42\xb4\xa6\x41\x74\x38\xde\x1b\x4a\x8f\x66\xe9\x47\xe5\xce\x69\x98\xf6\x7d\xf9\x33\x97\xce\xa1\x8c\x09\x73\xa4\xcf\xc5\x3b\xb5\xa0\xe0\xa3\xc7\x8b\x41\x74\xda\x44\xf2\x80\xc0\x87\xa5\x77\x61\xe4\x41\x11\x5d\xe2\xa7\x3c\xc9\x64\xc8\x9f\xc8\x64\x23\x86\x8e\xf6\xfc\xe8\x1a\x97\x56\xb8\xe0\x25\x5a\x01\xb0\x76\x77\x64\x53\xdb\xd8\xa6\x8b\xe1\xee\xd8\x84\x9e\x17\xc4\x6b\x2e\x3e\x9e\xe7\xe0\x08\xa1\x64\x89\x84\x59\xe2\x52\xeb\x7a\xd8\x26\x91\x02\xd7\xf3\x85\x8d\xe7\x53\x67\x78\xf2\xa0\xc0\x91\x6c\xcb\xc1\xd0\xf0\xeb\x89\x1f\xc8\x9e\x1b\xd1\xd0\xb1\x31\x03\x0e\x6c\xde\x23\x83\xfc\x94\xa0\x27\xec\x5d\xe4\xb3\x7a\x0e\xdb\xec\xd3\xb7\x76\x89\x75\x64\x11\xbc\x27\xdf\x31\x60\xaf\x96\xb3\x7a\x5a\x0c\xa5\xc0\xc5\xb2\xf8\x59\x49\xf6\xe6\x87\xf1\xae\x67\xd2\xc1\x94\x92\x96\x40\x71\x2f\xf5\xef\xde\x72\x16\x66\x92\x65\x5a\x28\x08\x1b\x26\x86\x66\xa8\x6b\xa2\x40\x6f\xe6\x5c\xe8\xda\x6e\x9d\x78\xbf\x00\x87\x62\xc9\xa0\xa8\xaa\xc1\xb2\xaa\x8a\xda\x51\xc4\xb2\x76\xbc\x50\xf8\x8e\x22\x96\xbe\xad\xe7\x86\x4c\x4e\x06\xeb\x38\xde\x9c\x66\x7e\xb0\xce\x35\xc9\xe6\x9b\x45\xdd\xdd\x7c\xb3\xe8\xad\xe3\x38\x37\x46\x80\xf5\xb6\x02\x62\xe9\x82\x6e\x95\x33\x96\xfa\x6b\x65\x15\x0c\xbd\x35\x3f\x25\x77\x2d\x7a\x1c\x4b\x45\x7f\xea\x1a\x98\x35\x9a\xaf\xfb\xfd\xe3\xd7\x84\x4c\x1a\xdb\x62\xd4\x51\x86\x43\xef\x70\xb9\xe3\x7a\xe6\x54\x59\xe1\x46\x86\x87\x17\xf8\xe9\xa0\x80\x0a\xb1\x06\xcd\x48\xbe\x51\x05\x3b\x4c\x0d\xb4\x4b\x1f\x5b\xee\x44\x0e\x87\x88\x82\xa6\xe3\x5c\x2e\xb0\x76\x00\x83\x0e\x3e\x0c\x28\xdb\xc8\x33\x5f\x6a\xc4\xb9\xf6\x92\x0c\x91\xd8\x03\xe8\x10\x86\xf6\xe7\x2d\x9e\xb6\x93\x5e\xe1\x1c\x1b\x85\x7a\x9c\x11\x31\x1b\x4d\x53\x39\x4a\x3c\x80\x93\x33\x46\xc1\x4a\x63\x36\xa5\x0f\x52\x08\x6b\x56\x12\x79\x52\x9e\x65\x27\xa3\x51\x09\xf7\xa8\x3c\xb5\xfe\x11\xdd\x32\xe9\x4f\xa3\xd9\x01\x8a\xdc\xa5\xe1\x17\xed\xc3\xb0\x6b\x03\x51\x55\xba\xbe\xbb\xeb\x56\x99\xca\xdc\x89\x25\x4f\xf6\x66\x47\xd5\xc3\xe3\x45\xcf\xca\x2e\xde\xe5\xbf\x51\x74\x62\x50\x63\x85\xcb\x9d\x15\xc0\x6c\x24\xe5\x68\x8a\x19\x29\x6a\x56\xa2\xe5\x4b\xe3\x8c\xf0\x33\x66\x81\xd9\x75\x9e\x30\xcc\x47\x53\xe4\x0d\xca\xf1\x52\x48\xa6\xce\x88\x5e\x59\x9c\xa1\x74\x6f\x3f\x10\x66\x1a\x10\x71\x2c\x83\x10\xfa\x70\xfc\xb4\x5d\x2d\xce\xac\xb2\x98\x42\x57\x47\xd3\xaa\xe2\x70\xec\xaa\x8a\x9f\x91\xdc\xf3\x01\xc7\x4f\x6d\x7c\xc4\x9e\x08\x6f\x43\xd0\x39\xcc\x7d\x38\xe4\x07\xe0\x80\x27\xac\x06\xc2\x1c\xe1\xcc\xb3\x55\x97\x81\x67\x1f\x17\xfd\xb3\x76\xaf\xe5\xd9\x89\x87\x65\xb5\x0b\x50\xdf\x4f\xd4\xa8\xdd\x40\xd3\x81\xd4\xb2\x7e\xe6\xc3\xc0\x83\xb5\xf2\x77\x98\x6e\xdc\x8d\x40\x04\x72\xab\xf0\xa3\x48\xa7\x9d\xa0\x11\x8e\x14\xf9\x82\x05\xd1\x11\x90\xc7\xcd\xb8\xbd\xb3\x23\xe9\x89\x44\xa9\xb4\xde\x35\x21\x05\x33\x72\x0b\x74\xd5\x2e\x13\x25\x7d\xce\x64\x22\x7c\xd3\x60\x64\x4c\x9c\xda\xb9\x9a\xfd\xe7\x24\x2a\x79\xf9\x2a\x7b\x65\xac\xbe\x50\x55\xd9\x4f\x8d\x9c\x1a\x66\x5b\x18\x6e\x11\x61\x8f\xbb\xb1\xf6\x57\x38\xe7\xa3\xfa\x95\x09\xed\x70\x3d\x1b\xeb\x70\x4f\xee\x8a\xe9\x37\x82\xd6\x47\xed\x68\x1b\x75\x6b\xab\x2f\x6a\xcd\x6c\x76\x47\x73\xcd\xdd\xde\x49\xcf\x60\x9f\x5a\xae\xa8\xd9\xea\xdb\x6d\xb6\x4b\xdd\xa6\x82\x7e\x24\x2c\x8e\x97\x06\xdf\x87\x46\x4c\x39\xda\xb2\xe7\x87\xc6\x8d\x35\xff\x5d\xed\x97\x73\xb6\xe8\xee\x43\xe5\xe8\x7e\xee\xe8\x03\x54\xf3\x4c\x37\xc8\xc1\xf8\xdf\xdb\x0d\xd6\x8c\xf8\x74\x30\xf1\xa0\xf6\x56\xb6\xd8\xab\x97\x2a\xe9\x46\x63\x74\x90\xe1\xd9\x5e\xc9\x5a\x5d\xe5\x88\xa7\xc8\x16\x76\x87\x5a\xbb\x0a\xda\x8d\xc6\x05\xf1\xa2\x15\x3d\xe6\x0e\xff\x57\xf2\x8c\x68\x17\x58\xaf\x54\x47\xe6\xe7\x50\xbb\x04\x9d\x89\x14\x62\xf5\x7b\xe6\x15\x66\x0e\x06\xa7\x7b\x9d\x6b\xd6\x08\xcc\x41\xa0\x1e\x8b\xe3\x81\x76\x10\x35\x63\x44\xb3\x73\xe3\x98\x79\x1e\x60\xc1\x51\x1a\xc3\x02\x6b\xdf\xdb\xce\x6c\x25\x0c\x58\x8e\x8c\x2d\x57\x97\x66\x8d\xea\x52\x11\x5b\x12\x05\xe1\x02\x3a\xbc\x75\xd1\xeb\xfe\xcf\xd2\xea\x01\xc3\xe8\xf4\xe4\x4c\xa8\xad\x9c\x30\xed\xb6\x8b\x80\xd7\x2e\x86\x6a\x27\xfe\xe0\x20\x43\x7b\xc6\x78\xc3\x1b\x21\x06\xeb\x40\xce\xe0\x98\x8b\x1d\xb4\xd7\x67\xd3\xe4\x4e\x26\x4c\x77\x66\xce\x13\x28\x0e\xea\xe8\x67\x29\xc3\x82\x2e\x8d\xfa\xa5\x3a\x67\xb9\x77\x4d\x4c\xe8\x56\x7b\x9e\xf2\xb1\xfe\x81\x37\x59\xa9\xef\x61\x99\x0e\xa6\xde\x19\xbb\x94\xbe\x54\x41\x9a\xe2\xa0\x1d\xa3\xde\x5a\x78\x7d\xf0\x9e\x88\x61\xc2\xc0\x5f\x53\xad\xcf\x04\xfd\xb4\xdd\xad\xcc\x4a\x62\xf2\xe6\xfb\x45\x9a\xc8\xb1\x1a\x2b\xb8\x33\x50\x3f\x8c\x43\x47\x8d\x8e\x1d\xb1\x9c\x45\x58\x8e\xeb\xe1\x56\xd5\x51\xc7\xde\x9d\x21\x4d\x73\xc2\xe2\x18\x00\xa0\x71\x29\x6f\xef\xda\xc6\xb6\xc7\xe2\xb8\x4e\xbd\xd6\xce\x5d\xf3\xda\x97\x5e\xa3\xbc\x22\x19\xb4\x96\x51\xa3\x12\xc9\x7b\xb5\x28\x50\x36\x95\x7a\xe1\x79\x71\x93\x2a\x13\x85\xf0\x4c\x4e\x4a\x87\xe3\x8e\xa6\x60\x4d\x63\x38\xe4\x99\xf6\x5e\x93\xcd\xcb\xe1\x74\xd1\x03\x7a\x24\xbb\x28\x93\x7d\xed\x79\xd2\x50\xd5\x67\xf7\xe3\x98\x6b\x14\xd8\xe5\x0e\xc1\x2f\x25\xba\x77\x7f\x64\x1c\xcb\x1e\x4c\x09\xc7\x57\xb5\xe9\x40\x0f\x81\x2b\x60\xbd\x1b\xe1\x4a\xc3\x85\x49\x4a\x72\x44\x49\x05\x83\xca\xba\x84\xb3\x06\x82\x5c\xeb\x74\x13\x17\xc4\x2a\xa4\x2f\x09\x28\xa8\xe3\xb5\xa7\xb3\xae\x56\xef\x01\x21\x7b\xa7\xf6\x5b\xe3\x8d\x3a\x48\xff\x9f\x4f\x36\x6a\x25\xc0\x07\x72\x11\xc7\x8f\xb9\x11\xda\x18\x3f\x60\xc6\xa4\x48\x3b\xd6\x80\x28\xc1\xc3\x02\xa1\x13\x34\x1a\x15\xb0\x01\x27\x41\xd6\xf2\xd4\x7c\x3e\x65\xab\x2f\x6a\x6b\xa9\xda\x1a\x0e\x81\x54\x05\x3f\x81\x7f\xb3\x2e\xc9\x97\x5a\xf3\x5e\xb7\x35\xf2\x2b\xa1\x9c\xec\x7d\xcf\x6e\xc7\x4c\xc0\xad\x13\x37\x7e\xcc\xd1\x30\x32\x9c\xa1\x8f\x1c\x3c\xb3\x2c\x51\xeb\xd8\xf4\x72\xb2\xb2\xe2\xaf\xd5\xdc\x99\x04\xb0\xd9\xca\x1d\xa4\x74\xb2\x48\x3f\x48\x4d\xe8\xe4\x61\x53\x5d\xa3\xaa\xaa\x0f\x52\x0b\x2c\x14\x3e\x52\x55\xb9\x46\x44\xaa\x4a\xcd\x5a\x2b\xc7\xf7\x96\xa4\xc0\xc5\x88\x4c\xf1\xda\x5a\x21\x1c\x60\x6d\xa6\x53\x40\x8c\xdb\x16\xca\x06\xa7\x2a\x97\x82\x52\x56\x55\x46\x32\x0d\x5f\xe3\x82\x5f\xe6\xcb\xac\xf8\xf9\xc9\x9b\xe7\x55\xd5\x4e\x73\xe5\x56\xf4\x2a\x5f\x52\x5d\x6c\xe0\x9b\x9a\xaa\xeb\x07\x1e\x97\x7f\x70\x0f\xd6\x0f\xdc\x43\x01\x01\xf5\x2b\x77\x19\xab\x71\xbf\xa3\xc0\x05\x33\xb5\x42\x12\x4f\xf0\xf4\xe8\x0a\x39\x4d\x18\x13\x2c\x41\x5d\x45\x2d\xe6\x18\x19\x24\xee\x6c\x7a\xa8\xa3\x42\xf4\xa5\x79\x27\xdb\x73\xbb\xd7\x9a\x1a\x66\x8d\x62\xbf\xb4\x8a\xa9\x14\x07\xf6\x15\xfa\x29\xa1\xd3\xaf\x84\xc1\x37\xa5\xde\xb0\xaf\x04\x96\x7c\x97\x4a\x75\xb7\xbf\x62\xce\xe7\x85\xb9\xf3\x5f\x31\x75\xdd\x6b\xcf\xfc\xf6\xb5\x41\x9a\x22\xbe\x2d\xc0\xd5\xc6\x9a\x30\xe2\xd8\xc8\x4d\x27\xf6\xb5\x37\xec\x64\x45\xf6\xad\x93\x89\x9c\x2d\xf3\x5d\x07\x73\x7f\x6c\x91\x0f\xde\x7d\x1b\x14\x8a\x88\xcb\xab\x6a\xa0\x0f\x65\x1c\x0f\xcc\xa9\x34\x5c\x9f\x5d\xeb\xbe\x05\x43\x99\x4f\x16\xbd\x9c\xec\x66\x06\x5b\xd7\x3c\x4b\x83\x9c\x6b\xf1\x54\x10\xb9\x1a\xd6\x6d\x07\xdc\x4b\xb3\x6a\x3b\xb3\x6a\x07\x75\x91\x2c\x74\xda\x42\xc8\xda\xdd\x48\xc3\x4a\x28\x7e\x45\x72\x0b\x53\xbd\xd4\x1b\x92\x6c\x87\x57\xe8\xde\x7d\x7c\x69\xdf\xb7\xc6\x23\x82\x35\xa4\xbb\x74\x4b\x13\xc7\x83\xe4\xe6\xf4\x72\xbe\x59\x20\x80\x7e\x27\x60\xb6\x4e\x36\xb3\xcb\xf9\x66\x34\x5d\xa4\x13\xfc\x81\xa8\x5c\x7c\x6d\x48\x90\xc4\xad\xf0\x7a\x66\xd6\x26\xd5\x8b\x85\xec\x50\xbc\x59\x27\x5a\x94\xa0\x0b\x43\x7d\xbb\x9e\x41\x61\xb5\x0e\x17\x76\x0d\x3e\x1c\x7a\x2d\x90\x90\x5c\x8f\x2f\xf8\xe5\x1e\x9e\x86\xde\x17\x48\x4f\xa1\x86\x90\x7c\x47\xb6\xf8\x7a\x2c\x0c\x6b\xfe\xca\xdd\xa8\xeb\x83\x7b\x54\x90\x6e\x19\x30\x03\x8b\x2e\x90\x12\x21\xac\xe7\x5b\xfa\xd3\x29\x0d\x73\x59\x8d\x37\x9f\x95\xd0\x03\x28\xb5\xb8\x0d\x84\x54\xf3\xbb\xb4\x9b\x79\x78\x4d\x1b\x5e\x2b\x72\x96\xcb\x0e\x9f\x48\x72\x93\x97\x0a\x68\x68\xe3\x35\x6c\x82\xa7\x1a\xef\x52\xe4\x21\x4d\x5c\xec\x53\x6b\x0d\x68\xc3\xbc\x34\x62\x39\x94\x2e\x96\x15\x4f\x04\xa6\x5a\x6d\xa6\x53\x31\x13\x5d\x50\x72\x6b\x0d\xcd\xd3\xc1\x54\x9b\x85\x43\xfc\x21\xa7\x5f\x00\xf1\x28\x65\x97\x65\x23\x70\x50\x43\x5b\xc9\x63\x06\x90\xf9\xf8\x2a\x2b\xf6\x94\xb4\x4d\xd9\xf1\x15\x4f\x72\x84\x9c\x5c\x69\x20\xc2\xeb\x9f\x97\xf4\x31\xdf\xdd\x3c\xde\x5b\xda\xc9\x68\xe3\x7d\xa2\x89\x40\xbd\x70\xfc\x13\x3d\x7e\x8d\xf2\x1e\x30\xd8\xa8\x83\x33\xe0\x9b\x1d\x9d\x89\x71\x19\xcc\xaa\xd6\xfd\x53\x18\x6c\xc6\x51\xda\x9c\x8d\x1d\x34\x3b\x32\xe6\x43\xd0\x01\x04\x17\xe8\x30\x47\x9f\xa0\xc3\x81\x76\x87\x17\x65\xb8\xce\xf0\x9c\xa4\x82\xf1\x63\xde\x70\x61\x04\xde\xbe\x74\x1c\x59\x6d\x73\xef\xb3\xe4\x14\x08\x3b\x23\x7f\x53\x28\xa5\x6f\x65\x0a\x1b\x14\x98\x9d\x5a\x0f\xa1\x3b\x5e\x14\x49\x1d\x99\x56\x1b\x9f\x07\x9e\x15\xcc\xd9\xa9\x2a\xb0\xa1\x17\x10\x73\xa0\xd3\x06\x5f\xad\xfa\x78\x9d\x95\xf2\x0d\xb4\x59\x37\xaa\x16\x07\x97\xee\x8b\xef\x6e\xec\x67\x1d\x0e\xab\xdd\x35\x43\xb7\x99\x00\x0a\xa6\xaa\x60\x0c\xec\x73\x5d\x6b\xcf\x1b\xa6\x5f\x8f\xcd\x83\x23\x2d\xad\x06\xa4\xd0\xeb\x41\x9a\x1e\x24\xaa\xaa\x6f\x15\xc9\x57\x8f\x58\x1b\xe3\xc2\xf9\x68\x54\xb2\xc6\xb8\x70\x37\x34\xcc\x49\xa2\xb5\xe0\xdb\x08\xf5\x64\x6d\xc5\x0b\x1a\x44\xf6\x43\x1f\x30\x17\x0f\xd7\xcb\x21\x46\xba\x47\xb5\x45\x74\x2a\x40\xa7\xed\x9c\x7e\x02\xca\xd3\xef\x42\xf2\x08\xe1\x5b\xe7\x3a\x31\x0d\xf4\x27\x6c\x73\xd1\x01\x1d\xba\x26\x41\xd9\x2a\x98\x42\x30\xd0\xc4\x9e\x02\xfc\x65\x43\x86\xa3\x73\x40\x07\xdc\x54\x40\x3a\xe2\xfe\x67\xb9\xc5\x1d\x21\xd3\x15\x58\xb3\x64\x91\xc7\x00\xe7\x57\x5a\x51\xf5\xa7\x5c\x6e\xf4\xd4\xad\x52\xfa\x4b\xbd\x24\x6d\xd5\x5a\x2d\xc2\x47\xe0\xbc\xdd\x5e\xa2\x63\xe8\x56\xe6\xf9\xfd\x3f\x86\x6e\xa9\x5b\x7e\xce\x77\xbe\x0e\x8c\x27\x92\xe9\x0a\x74\x36\x9a\x4e\xc0\x32\x69\x37\xcc\xe0\x89\xe6\x56\xe0\x3c\x96\xa0\x8b\xf7\x45\x4d\x69\xfe\x17\xb4\x04\x38\x82\xd6\x04\x19\x19\xc1\x73\x6d\x07\x72\xc0\x81\x5a\xd8\x91\xf7\xc3\xb3\x5a\xe9\xbd\xe1\xbe\x98\x4e\x33\x27\x4a\x2e\x4a\x84\x21\xc7\x0f\xa6\xa2\x75\x78\xf5\xa7\x16\x98\x6b\x4f\xcb\xe7\x10\x5a\xc4\x7f\x87\x3c\xdd\x1a\x53\x40\xeb\xd5\x74\x94\x31\x6e\xe3\xf4\x5a\x98\x80\x8b\x58\xd0\x92\x86\x8f\x1f\xd0\xc7\xda\x14\x9e\x29\x38\xfb\x92\xb2\xfd\x1b\x0a\xfb\x63\x66\xa6\x5e\x6a\x77\xa6\x72\xc2\xac\x4c\xaf\xd3\xa8\xc0\x68\xae\xfb\x80\xdc\x70\xaf\xf3\x86\x51\xcc\x9e\x24\x92\xfc\x81\xc7\x71\xe2\x69\x90\x8d\x42\x75\x33\x70\x79\x91\x08\xc2\x82\x27\xd1\x47\x3b\xe9\x03\x84\x66\xd1\x28\x4a\x45\x55\x35\x4b\xf5\x82\xd7\xda\xbc\x26\x7b\xcc\x9a\xc1\xa1\xaf\x78\x12\x94\xd4\xbe\xe2\x01\xa0\x27\x6d\xd7\x01\x7b\x23\x4e\x52\x78\x4e\x63\xae\x5d\xfd\x45\xd1\x9d\xad\x69\xfd\xcf\xde\x51\xef\x05\xf2\x70\xc0\x97\x54\x3e\xcb\x69\xb1\x6a\x3b\xda\xea\x07\x3d\x1e\x70\xb9\xdf\xed\xb8\x90\xe5\x39\xdf\x2f\x37\xed\xe2\x83\xe9\x01\xc3\xac\xfd\xac\x7c\x9d\x44\x8c\x1b\x8d\xaf\x81\x3b\xc6\x16\x36\x08\xe3\x5b\x45\x21\xe7\xdb\xaa\xd2\xb1\x83\xc2\xe5\x42\x52\xdc\xdc\x86\x73\xb7\x91\xb4\x97\x99\x5c\x6e\x92\x5f\x38\x78\xee\xba\x28\xf6\x81\x33\xaf\xb0\x8a\xca\x4d\xec\x11\x7d\x63\xb5\x9b\x9a\xc5\xdb\xf7\xe0\xd8\xd1\x9f\xa8\xa6\x96\x34\xbf\xa2\xab\x67\xcd\x39\x43\x9d\xb2\xe0\xd7\xfa\xd1\x3c\x60\xfb\xbb\x1b\x98\xf6\xa8\xef\x81\xa2\xaa\xdc\xa7\x96\x82\x37\x56\x4c\xe5\x59\xf5\x80\x30\x28\xb9\x01\xf8\x60\x0d\xd0\x38\x83\xd4\x1f\x0e\x3a\x60\xfb\xa2\xb7\x07\xa4\xd0\x44\x3d\x2a\x19\xfa\xc5\x98\x60\x19\x8c\xeb\xfe\x24\xf4\x55\x67\x1f\x9c\xaa\xa2\xb3\x44\xb6\x7c\x6a\x78\x03\x40\x69\x42\xdb\xed\xfd\x65\x82\x05\xd2\x4f\xd0\xd1\x95\xd2\xcf\x4e\xb0\xb1\x16\xa7\x76\xd7\x04\xf4\x01\xba\x21\x0e\x98\x60\x34\x7c\x7d\x7d\xcf\x13\x89\xe2\x78\x20\xe2\x78\x10\xfa\xec\x50\x1b\x11\x3a\xff\xa1\x47\x9c\xff\xd8\x46\x3f\xd2\x9b\x77\xf4\x9f\x61\x28\x38\xa6\xc8\x35\x75\x55\x01\xa6\x81\x56\x94\x1a\x44\x07\x68\x73\xd5\x0c\xd5\xaa\x51\xbe\xd6\x95\x26\x84\x55\xd5\x55\x1c\xdf\x9b\xbf\xdf\xaf\xff\x6d\x32\x19\xa9\x3f\xeb\xf5\xe2\x9e\xf6\x60\xc3\x50\x9b\xe1\xae\x55\x8b\xe1\xe4\x27\x36\x10\xa6\x73\x14\xe3\xbb\x2f\x28\x69\xf1\x8c\x8b\xc7\xf5\xc2\xd5\x6e\xa0\x97\x9b\x4c\x3c\xd6\x8e\x7e\xb4\x6b\x80\xbf\xde\x9f\x3c\x18\x90\xbc\xaa\x04\xc0\xd0\xe8\xbf\xfd\x2f\xff\x5b\x84\xf0\x5f\xff\xf2\x97\xbf\x10\x92\x23\x1f\x80\xd8\x8e\xed\x49\xa6\x9f\xe8\xf2\x31\xdf\x6e\x33\xb6\x4a\xa2\x3d\x5b\xf1\x08\x1d\x3c\xdf\x40\x4e\x4f\x32\x67\x2e\xaa\x2e\xb6\xc6\x79\xe8\xa4\x3c\xdd\xc7\xb1\xf0\xc7\x53\x82\x09\x5a\x90\x70\x82\x86\x43\x2b\x97\x85\xc3\x6c\xc6\xd3\x94\x76\x83\xd3\x36\x66\xac\x3c\x4a\x84\x6d\x7f\x23\x43\x38\x14\xf5\x71\x98\x45\x5f\xe9\xdf\x34\xd2\x8a\x51\x6e\x4c\xea\x99\x50\xcf\x83\xf5\x58\x04\x54\xc4\xd9\x68\x3a\x33\x3b\x4f\x8a\xe0\xc1\x4a\xfd\x4f\xe6\x77\x11\xc7\x49\x71\x14\x5b\x6b\xe5\x10\x5a\xe3\x95\x7e\xa6\x66\x93\xd2\xff\x0c\x9e\x69\x1c\x54\x61\x1d\x8c\x5b\xdd\x56\xba\x6a\x01\x36\xef\x66\x9b\xf3\xa9\x2f\xbe\x7d\x80\xc2\x9b\x8f\x0e\x98\xb3\xef\xe9\xcd\x1b\x41\xcb\x00\x48\x7e\xf6\xd9\x32\x61\x62\x1d\xed\xa1\x1a\xf2\x8e\xe6\x1d\x34\xb6\x26\xb0\x85\xa7\xbd\x2b\x6b\x78\xb1\x27\xa5\x00\xe2\x07\x17\x84\x75\x85\x46\xcf\xd7\xc9\x3e\x8e\x07\x4b\x74\x2b\xbc\x67\xca\x27\x2f\x5f\xfb\xe3\x88\xe3\xd1\x94\xa8\xce\x8c\xdf\x25\x05\x76\xb2\x9c\x95\xe0\x16\xfe\x7b\x99\x08\xfc\x0b\x45\x09\xe4\xe3\x57\x34\xd9\x23\x45\x8d\xf6\xb4\xd6\x8b\x25\x03\x97\x65\xa9\xb6\x11\x7b\x01\xe9\xc2\x9c\xde\x91\x74\xd2\xa1\xa8\x1b\x19\x3f\x71\x9f\x45\x9c\x7d\x95\xf2\x3b\xda\xab\xdd\x00\x4d\x7c\x55\x5e\xfd\x65\x94\x80\x13\xeb\x63\xf7\x97\xd1\x0a\xb0\xe5\xaf\x8d\xe2\xaf\x17\x2f\x41\x17\xf8\x79\xb4\xd2\x38\xb0\x2d\xf1\xdb\x08\xee\x4d\xda\x9f\x4e\x26\x93\x93\x7e\x1d\x8b\x02\xaa\xf1\x59\x24\x2e\x2f\xb2\xe4\xfe\xd7\x5f\xe3\x7e\xfd\xdf\x78\xf2\x35\x8a\xd2\x48\x8a\x8c\x95\x9a\x69\x17\xa1\x61\xd4\xf0\x7d\x74\xd2\xd7\xbe\x85\x46\x66\xfc\x93\x56\x7e\xdb\x0b\x12\xdf\x65\xcb\x5c\xde\xa4\xaa\x87\x93\xfe\x3a\x2f\x24\x15\x69\x3f\x2b\x76\x9b\x2c\x31\x79\xe4\x6b\x74\xa2\x68\x5d\xcd\x34\xac\xb9\xd2\xbc\x28\x7e\xd1\x88\x6b\xe8\x34\xb2\x8c\xe3\xa0\xd0\x39\xd7\x1e\x3a\x77\xa0\x9e\x11\x80\xe6\x4e\x36\x4e\x55\x25\x96\x57\x11\xb0\x30\xfa\x91\x26\xe1\x9a\xaf\x9c\x7a\x5a\x59\x1b\x94\xd7\x47\x54\xfb\x3d\x3d\xcf\xb7\x94\xef\x65\xc2\xc6\x2b\x2a\xb5\x55\x84\xee\xf3\xa1\xba\x7b\xee\x76\x5e\x25\x08\x5f\xa3\xdb\x9f\x72\x1b\xd2\x6f\xeb\x3b\x26\xfd\x43\x9e\xe8\xb9\xe1\x68\xcb\xf7\x25\xdd\xef\x22\xbc\x45\xb8\xa4\xd2\x36\x7f\x83\xef\x4f\xd0\xa1\xf7\x4b\x67\x41\xe3\x15\xd2\x2f\xfd\xb5\xef\x65\xe1\x2a\xf1\x38\xf3\x79\x4d\xc5\x68\x09\x89\x23\xda\x3b\x16\x0d\x73\xfd\x22\x0d\x13\x3a\x33\xab\x97\x46\x11\xea\xd9\x95\x8c\xfe\xdb\xff\xfa\xbf\xd7\x3c\x20\x8e\xfd\x95\xa5\xa0\x46\xa9\x6a\xe3\x66\x9f\x64\xea\x27\x3d\x65\x2b\xc2\xeb\x17\xea\x8e\x25\xf7\xa4\xa1\x37\x89\xd1\xe9\xeb\xda\x39\x85\x28\x75\x5f\xf4\x0d\x6e\x5e\xd5\x35\xb6\xbc\x6d\x56\xbb\xa9\x2d\xc7\xbe\xbb\xdb\xa4\x0b\xc0\x91\xc2\x12\x81\xed\x15\x05\xc5\x69\xdd\x2c\x82\xbd\xef\x19\xb7\xb3\xb8\xf4\xb7\xbd\x6b\xae\xf5\x64\x75\x4c\xeb\x46\xdb\x71\x1c\x2e\xdc\xd9\x24\x8e\x61\x8d\x89\x7f\xaa\x67\x00\x30\x0b\x6b\x9b\xa4\x8e\x62\x22\x50\x4a\x87\xc3\xd3\xe9\x64\xd6\x75\x54\x89\x77\x7a\x4a\xfc\xf5\x64\x82\xd2\xc6\xad\x3a\xf4\x3e\x5f\xef\xfe\x64\x82\x0e\x07\x85\xd2\x6b\x6c\xcf\x58\xcf\x06\x6f\x0c\xad\x2a\x1f\x9d\x01\xc7\xc2\x75\x3c\x83\xf4\x82\x63\x46\xe9\xaa\x34\x5e\x60\x9c\xeb\xb3\x54\x91\x45\x3e\x97\x18\xe1\x8f\xbf\x93\x67\x6c\x18\xc6\xe3\x55\x7e\x65\x62\x27\x3d\xc9\xaf\x6a\x8e\x70\xfe\xaf\xe7\x08\x37\x78\x9f\xc2\x86\xf0\xaa\xc9\xdf\xc8\xda\x8f\xa8\x92\xbf\x97\xc1\x2b\xef\x62\xf0\xca\x2e\x06\x2f\x18\x91\xef\xa8\xc8\xa0\x73\x9f\xf4\x6c\x30\x7e\x9d\xd5\xfb\x44\xbd\xb3\xf8\xb3\x23\x3f\x80\x94\xa8\xe5\x3c\x74\xb0\x43\x1d\xde\x40\x9b\x2e\x45\x01\x90\x82\x53\xd1\x76\x5e\xd9\xe1\x6e\x14\xb7\x39\xe4\x9e\xf6\x3e\xb3\x62\x80\x80\xf1\x2f\x02\x95\x0e\xad\xe2\xd6\xe0\x33\x77\x15\xf1\x39\xce\xc7\xf9\xf3\x46\xe9\xd2\x19\x35\x65\x4b\x99\x5f\xd1\xa7\xda\x9b\x78\x0f\x18\xe1\x3e\x30\x0f\xd6\xbd\xdd\x67\x18\xf1\x05\x73\x47\xa7\x03\x54\x3f\x1c\xde\x51\x95\xfc\x4b\x9e\xb0\x2f\x62\x4a\x1f\x6c\xd9\x3b\x38\xb7\xd4\x53\x37\xcd\x64\xd6\x33\x90\xb5\xe6\xc4\xd2\x22\xad\x1f\x3e\x55\x24\x65\x18\x1a\x79\x02\xbf\x0f\xb5\x83\x8c\x1a\x85\xab\xb9\x48\x5c\xb3\x84\x5f\xe4\x8c\x26\x81\x4b\x50\x8b\xeb\x33\xec\xb1\x01\x9d\x6b\xd0\x91\x23\x57\x50\x8f\x43\xcc\x68\x7e\x4a\x5c\xae\xd6\xb0\xaf\xf1\x75\x5a\x90\x57\xe0\x5b\xca\xf7\x22\xca\xc1\x17\x57\x90\x32\xac\x5b\xb5\x1c\xe1\x70\x71\x6c\x18\x5d\x7f\x75\xfc\x9e\xd4\xf4\xcd\x42\x75\x55\x0f\x19\xca\xb4\x8e\x04\xe8\x5a\xe8\x09\x70\x42\x00\xed\x10\x31\x76\xeb\x58\x55\xf7\xde\xef\xef\x4f\x26\x17\x86\x08\xd5\x45\x34\x6b\xdf\xeb\xf4\xf8\x59\xd2\x31\x67\x56\x55\x25\xb5\x0f\xf3\xc7\xf5\xa8\x12\x11\x72\xaa\x89\x08\xd7\xcf\xb0\xae\xd5\x11\xab\x4f\x8c\xe4\xfb\xe5\xa6\xcd\xe5\x37\x01\xe0\xbd\xd6\x9f\xb2\x55\x52\x57\x6b\xcb\x5e\xa4\xcf\x0f\x18\x88\x80\x21\x10\xc7\x9a\x83\x61\x20\xbe\xc2\xd4\xbe\x91\x09\x40\x6b\xaf\x85\xef\x64\x02\xde\xf4\xeb\x05\xdf\xdd\x44\x38\x77\x9f\xaa\xc3\xfc\xcb\x18\xef\x8e\x19\x84\x07\xce\x4c\xbc\x6f\x78\x19\x8e\xb3\x16\xf0\x37\x30\x3d\xce\x59\x06\x83\x0d\x43\xc1\x79\xee\x90\x3c\xe7\x84\x71\x9c\x24\xa6\xa9\xaa\x72\x2e\xec\x55\x7b\x6f\xf4\x0d\xf1\xb8\xa1\xd8\xe5\xbd\xdc\x17\x32\xdf\x15\xd4\x03\xca\x14\x21\x3d\x8e\x66\xbd\xf6\x24\x6b\xcd\xd9\xa0\xf1\x9a\xff\xdd\xba\xa3\x8c\xbc\xa4\x6e\x61\xa8\xf1\xea\xf0\x4a\x87\xed\xcc\x3c\x27\xa0\x0a\xb2\x06\x25\xd7\xd6\x17\xa8\xfd\x6d\xca\xf5\xac\x5b\xc8\xf1\x45\xb6\xaa\xaa\x41\x5e\x55\xb9\xfe\x39\x01\xef\x4e\x37\xda\xef\x53\xed\x40\xcd\x66\x5c\xb9\x0c\x70\x68\x66\xf5\xbd\xce\xeb\x4e\x5d\x15\x9c\x85\xc9\x50\x01\x38\x3f\x55\xe5\x1c\x3b\x74\x6d\x0d\xde\x13\xaa\x9f\xb8\xc7\x7c\xcf\x64\x1c\xd7\x0e\x7a\x1d\x6b\x46\x5b\x8d\x0c\x4c\x3b\x05\x29\xe7\xff\x17\x6d\xef\xba\xdd\xb6\x91\xec\x8b\x7f\xe7\x53\x88\x58\x39\x38\xe8\xb0\x49\x93\xce\xe4\x9c\xd9\x90\x5a\x5c\x4e\x6c\xc7\x9e\xf8\xb6\x23\x27\x8e\x43\x73\xbc\x20\xb2\x29\x22\x06\x01\x4e\xa3\x29\x59\x11\xf9\x32\xff\x27\xfd\xaf\xae\xea\x2b\x00\xca\x9e\xd9\xeb\xf8\x83\x05\xf6\xfd\x5a\x5d\x5d\x5d\xf5\x2b\x07\x7d\x32\xb7\x7a\x1a\x0b\x56\x80\xd2\xe8\x14\xff\xcc\xf0\x8f\x4b\x98\x42\x40\x2f\x63\x77\x65\xb5\xe4\xe9\x62\xb6\x70\x71\x14\x95\xac\xfd\xc0\x87\xf3\xa1\xf7\xeb\xbb\xf9\xc1\x00\x2f\xeb\xfc\xf5\x6c\x3c\xf7\x95\x55\x67\x0f\x6d\x29\xe3\x43\x4f\x8a\xdb\x3b\xbc\x13\x7f\xaa\x34\xe6\x25\x35\xfe\x76\x69\xe6\x3e\x54\x44\x20\xf7\x5d\x81\x6e\xbe\x5b\xc6\xc1\xf2\x9f\xaa\x83\x5d\xeb\x88\x35\x4b\x25\x74\x65\xe3\x96\xfb\x3d\x1f\x65\xcb\x25\xe2\x1c\xaf\x40\x42\xa9\x4f\xb3\x47\x45\x01\xa1\x35\x1c\xf1\x7e\x1a\xba\x43\x2f\xed\x8a\x45\x71\x8b\x6e\xea\x25\xda\x81\xbf\x51\xdc\x18\x8a\x16\xfd\xe4\xf0\x63\x41\x05\x11\xb9\xc9\x0d\xdf\x5c\x72\xe1\xad\x76\xc5\x88\x36\xd3\x1f\x91\x1c\x07\x37\xb9\x26\x46\x2d\x69\xa3\xd6\x76\xd3\x5f\xde\x40\xb6\xf5\x1f\x8c\x34\x27\xac\xa8\x9d\x46\x6a\xea\x60\xc2\xee\x07\xa0\x39\x90\x03\x5c\x02\x69\x37\x75\x08\x18\xdf\x37\x55\xd2\x5c\xf5\x47\x1f\xb9\x1a\xe9\x8e\x3e\x79\x29\xb6\xbe\x31\xc8\x5f\x49\x77\x7a\x5d\x08\xc3\x01\x89\xe9\x86\x1b\x0e\x09\x0f\xed\x40\x1f\xf6\xa9\x4f\x27\x12\x71\x40\x92\xd4\x5d\x43\x37\xea\x79\xf9\x64\x99\xcb\xaa\xc3\x2d\x4b\x77\x0f\xe0\x5e\xe0\x11\x8c\x50\x3a\x2d\x59\x83\x7c\xa8\xe3\x6e\x53\x95\x8f\xca\x05\xaf\x25\x5e\xf0\xb2\xbc\x74\xc6\x26\x7f\xea\x71\x5f\xe6\xd7\x54\x92\x8e\xf7\x9e\xaf\x7b\xec\x31\x65\x38\x0e\xb1\xf3\xf5\x46\xa5\x30\x0f\x37\x5f\x7a\xa6\x5a\xe6\xd7\x5f\x7e\xa1\xba\xef\xd5\xc6\xdb\x56\xb8\x65\x9b\x43\x9e\x90\xa9\x15\x70\x7a\x43\x9c\xfe\xe4\xce\xe5\x7f\x63\x4f\x04\x30\xd3\x5f\xff\xd2\x73\x22\x4d\xd9\x8d\x27\x9e\x84\x37\x1b\x46\xc3\x87\x24\x7e\xb4\x6c\x89\xef\x2e\xcd\x66\x7e\xed\x12\xb3\x8c\x88\xdb\x17\xfd\x26\x0e\xb7\x0a\x04\x22\xeb\xed\x8b\x56\x22\x0c\x56\xc9\xec\xe6\xe8\x77\x40\x77\xdb\x04\xad\x62\x9e\xfa\x5b\x26\x18\x8d\xc6\x93\x64\xe3\xa9\xc7\xbc\xfd\x78\x64\xd0\xd0\xed\x16\x1d\xfc\x4a\x46\xa5\x77\x8c\xba\x6b\x45\x4e\xc5\x89\xdc\xcf\xad\x94\x26\xcd\x51\x3e\x45\xc4\x71\x09\x16\x7c\x81\xeb\x89\xf7\x3c\x91\x46\xda\x0c\x4a\xd4\xea\x1e\x9c\x08\xe4\x60\x80\xa7\x21\xc6\xc6\xb7\x7b\x6d\x82\x5d\x1f\xf5\x38\xdb\xd6\x42\x70\xdd\x04\xf1\x84\x91\xb3\x83\x8c\xa2\xc5\x9f\xc1\x7d\x16\xed\xda\x2b\x40\x27\x31\x92\x67\xc0\x74\x11\xd6\x78\x64\xbf\xaf\x34\x80\xa9\xc3\xf3\xf6\xdf\xc4\x72\x6d\xc6\xe3\xe7\x18\x33\x96\x70\x26\x04\x00\xfe\x21\x9a\x0f\x41\x6d\xf9\xd7\x79\x82\x09\x15\xdb\x81\xf6\xef\x35\x73\x21\x25\xb8\xac\x52\xfc\x89\x9f\x94\xb7\x92\x72\xc5\x31\x81\x3b\x53\xdf\x0f\x2a\x6a\xd4\x43\xb5\x95\xc3\xf0\xda\x99\xb6\x39\x9c\x39\xe4\xbf\x5c\x87\xe8\x42\x5b\xb0\x3c\xce\xaf\x61\xc5\xe2\x1d\x1f\x1a\x52\x78\x0d\xd9\x0d\x26\xba\x29\x3a\x8f\x0b\x85\xc6\x74\x61\x1b\x1b\x0c\x01\x98\x01\xe7\x86\xa7\xa9\x6a\xef\x90\x9d\xa2\x08\x7c\x75\xd0\x5a\x7b\x8d\x80\x8b\xbc\xba\x84\x64\x40\xec\x9c\x80\x69\x97\xa0\x0a\xf6\xc4\x07\xe7\x76\xd7\xc3\xab\xa6\x6f\x50\xb4\x0e\xed\x59\xc9\xad\xb1\x58\x8a\x22\xbc\xbd\x19\xef\xf2\x06\x30\x59\x8b\x68\x12\x73\x89\xbc\xa2\x51\x44\x08\xbd\xae\xf2\x65\x52\x0d\x98\xb6\xb0\x2f\xe8\xa2\xab\x32\x04\x3a\xc3\xea\x16\x44\x33\x91\xe0\x44\x6b\xf9\x32\x13\x9f\x00\x29\xbe\xa4\x63\xbc\x4e\x03\x78\x13\x4d\xb6\x6c\xb0\xe8\xf0\x34\x74\xc2\x47\xf9\x92\xb1\xed\x81\x58\xa2\x06\x6d\x58\xb9\xfb\x50\xc1\x56\x6a\xf9\x00\x62\x17\xa0\x7c\x55\x03\xf6\xc4\x20\xf8\x17\x88\xee\x51\x8c\x64\x45\x50\xc8\x52\xab\xab\x7a\xbe\x4a\xb4\x6b\x0a\xd6\xee\x00\x0e\x81\x91\x22\x46\xe6\xf5\xb6\x17\xda\x2f\x74\x60\x9e\x83\x4e\xef\x2e\xf1\x63\x40\xd5\xf7\xc1\x3f\x93\xad\xe0\xfb\x65\x7e\xbd\xdf\x92\x6f\x1e\xe4\x78\x23\xc7\x79\x7b\x95\x6d\x38\x42\x55\xa8\x5d\x6e\x4c\x07\xbe\x6b\x4f\xeb\x52\x87\xfc\x66\x5e\xae\xfb\x4b\xd3\xb0\x0c\x3b\x5d\xc3\xda\x21\xb4\x1a\xb0\x25\x42\x6e\xc3\x1b\xee\xa9\x5a\x2b\x54\xf6\x99\x38\x25\xe0\xb8\xd7\xdb\x35\xc6\xe6\xf6\x90\x48\x5a\xd3\x05\xcd\x68\x41\x08\x5d\xab\xf1\x43\x82\xb5\xe4\x49\xa6\x67\xaa\xa0\x37\x26\xb4\x08\x91\x85\xc9\xe9\xca\xbe\xbb\xc6\xf1\xda\x7e\x9f\x92\x7c\x95\x6c\xaa\x64\x45\x18\xdb\x54\xc9\x9a\x90\xd5\x68\x5b\x6d\x13\x42\xd7\xfa\x6f\x31\x1c\x5a\x39\xa5\x9a\xc5\x3e\x5b\xcf\xc6\x73\x6d\x8e\xb0\x42\x1c\x60\x48\x6e\xbe\xb2\xc1\xc0\x3e\x4c\x2f\xd9\x98\x6e\xd9\x98\x6e\x60\x01\xd0\x6b\xc8\x4b\x6f\xdd\x53\xf5\xc6\x3c\x04\x5c\xdb\xa7\xea\xe5\xd9\x6d\x1c\x6f\xfc\x97\xe9\x25\x61\xec\x3a\x0c\x38\x25\x83\xc1\xd2\x4e\xf7\x15\x83\x2e\xd0\x4b\xec\x03\xfd\xe8\x2a\xb0\x9a\xdd\x6a\x1f\xae\xac\xc1\x46\x3a\x26\xf4\xd2\x8f\x5a\xfb\x51\xe4\x74\x7b\xf6\x31\x8e\xaf\xfc\x3a\x6d\x41\xdb\xe1\x84\x30\x76\xe9\xc7\x5d\xfa\x71\xaa\x69\xdb\xde\x6a\xb6\xf2\xe0\x55\xaf\x2c\x24\xa2\x2b\x86\x50\x35\x26\xb8\x33\x30\x76\x89\x5b\xf6\x86\xc1\x94\x2e\x09\x7d\xc2\x60\x52\x6d\xdb\xa0\x77\xb6\x80\xd4\x21\xc3\xb9\xc9\xdd\xef\x55\x81\xfb\xfd\x96\x27\x37\xf4\x09\x99\x26\x3f\x08\xbd\x22\x56\xf4\x86\x3e\xa1\xd6\x3d\x15\xed\x8f\x89\x31\xfe\xbb\xff\xe9\xba\x5b\xfa\xd3\x54\x5b\xbb\x3f\x71\x47\x70\x2b\x6b\x8b\xb1\x70\x32\x38\x2d\xe9\x32\xcf\xde\x2d\x69\x57\x98\x9c\xd0\xee\xec\xa0\x3e\x13\x72\xc8\xb4\xc9\x53\x93\x03\x6d\x96\xde\xf6\x00\xba\xd8\x04\x22\xad\xe9\xcf\x8e\x97\xfd\x87\x24\xe6\x9b\xa4\x28\xc0\x03\x28\x8f\x4c\x66\x7d\xc6\x9d\xf0\x0f\x5e\xb9\x4d\xa6\x8f\x9c\x78\x12\x16\x95\x96\x8e\xf1\x32\xd6\x7a\x30\x09\x44\xbf\x23\x4d\x08\x9f\xe8\x58\xa6\x29\x66\xb7\xf6\x00\xe4\x68\xfb\xea\xea\xe8\xd0\x7e\x7f\xa4\x71\x17\x52\xa8\xf1\x54\x04\xfb\x47\xbd\xfc\x13\x73\x9b\x37\xfb\x61\x0a\x2a\x3d\xea\x2b\x75\x81\x84\x8e\xc9\xfd\x0f\x45\x76\x22\x9a\x7d\xc2\x3a\x03\x7d\x38\xde\x52\x6b\xb8\xac\x1a\x3a\x6a\xc7\x1f\x96\xc6\x87\xe0\x29\x89\xd0\x0b\x7c\xf9\xba\x40\xcc\x8e\x3b\xa3\xf3\x90\xbe\xe6\xb4\x71\xd0\xa4\x9f\xf8\x81\xbe\xf1\xdf\xa1\xee\x34\xc7\x76\xec\x7e\xa5\x81\xfb\x42\xaf\x05\xf3\x03\x45\xc8\xda\xa6\xd2\x27\x67\xc0\x21\x3a\x74\x07\x78\x64\xb1\xf9\xfa\x2c\x2c\x47\xb1\xf4\x01\xac\xa0\x4e\x10\x84\x39\x6e\x30\x04\xa9\x68\xa7\x04\xb8\x0a\xc3\x9f\xf8\x8d\x9f\x83\x1d\xae\xfd\xa5\x5a\x85\xa2\x3b\x61\xf0\x63\x4b\x83\x68\x6c\x84\x7a\x02\xf5\x91\x4b\x8d\x6b\x6c\x55\x1d\xdd\x8d\x72\xc9\xf9\xf6\xc7\x6a\x1b\x8c\x9c\xf3\xd8\x39\x9b\xd3\x7b\x9b\xc9\x67\xd2\xa2\xca\x6e\xb4\x48\xd0\x36\xd0\xc2\x2b\xb7\x63\xb0\x39\xbd\x96\x5f\x83\x60\x5c\xd5\xa6\x6b\x3e\x03\x76\x37\xd3\x3a\x16\x0d\x5b\xc8\x35\xba\xa3\x5f\x39\x9f\x1b\xb0\x45\x37\xbd\x4e\x03\xd4\xe8\xbf\x34\x24\xcd\x60\x9f\xcb\x38\x69\x62\x4d\xb7\xab\x14\x66\xee\x4a\x16\x82\x4f\x6b\x5f\x13\x92\x96\x9e\x9b\x89\x38\xde\xa2\x0e\x17\x48\x50\xcf\xd8\x98\x58\x1f\x00\xf8\x31\x9c\x1c\x0e\xf4\xcf\x60\xa5\xa3\xab\xc4\xd6\x32\xbf\xd5\x63\xac\x57\x82\xf5\xb7\x41\x0e\x54\x56\x1d\xe9\xaf\x8f\xa7\x87\xf1\x39\xb6\x93\x3c\x9f\x7a\x5e\x7e\x8d\x21\xeb\x52\x2c\xd6\x61\xfc\x62\x7d\x40\x2f\xae\x97\x92\x7e\x94\xda\x66\xcb\xfa\xc0\x05\xc3\x25\xeb\x96\x7a\xec\xb9\x55\xbd\x91\x9d\x58\x2a\x34\xd3\xe6\xc2\xdc\xb9\xde\x33\x9e\x66\x76\x8c\xa3\xb5\x30\x47\x6b\xe1\x7c\x95\xc8\xb3\xdd\x34\xc9\xd9\x98\x56\x6c\x62\x3d\x51\x91\x54\x9e\x15\xd3\x8a\x25\x39\x93\xc3\x1d\x19\x4c\xd2\xa4\x56\x04\xd4\x08\x81\x01\x0c\xaf\x88\x63\x55\xcc\x77\xf3\x73\x89\x98\x27\x49\xc5\x8a\xe1\x4e\xdd\x6c\xe4\xb9\x8a\x4d\x32\x6b\x20\x68\x35\x13\x50\xef\x03\xea\x7f\x38\xa7\x3b\x28\x45\x30\x06\xca\x35\x35\x17\x80\x8f\x38\xc5\x46\xa4\x26\x33\x94\x24\x08\x35\x86\x69\x08\x40\x97\x13\xb4\xe0\x85\x56\x0c\x1f\xce\x99\x2a\x74\xf8\xdd\x1c\x7f\x4f\xe6\x5e\x81\xa7\x44\xd5\xf8\x70\x90\xd4\x43\xf6\x1d\x99\x3b\x87\x5b\x8a\x83\x37\xb6\x71\x22\x8e\x73\x06\x1d\xc0\x72\xcf\x5c\x77\x4d\x47\xa1\x8a\xc1\xdf\xe6\x71\xdc\x57\x1f\xdf\xb7\xeb\x48\x60\xac\x55\xd7\x6c\xdf\x8d\xb7\x42\x6d\x95\x09\x32\x73\xfd\x54\x99\xe6\x80\x13\x57\x51\x23\xaf\x4e\x33\xea\x2c\x85\xd3\x1d\x35\x16\xc4\xa9\xaf\x68\xf2\xc4\x21\x9e\x68\xb1\x3b\x08\x89\x02\x5c\x08\x76\x77\xa0\xbc\x65\x8e\xae\xf1\x6b\xc0\x87\x13\x09\x69\x6d\x88\x4f\x01\xf4\xab\x89\x34\x21\xe7\xec\xce\x77\x69\xd8\x40\xc1\x6d\x80\x1f\x60\x65\xbf\x1c\x81\x2e\x20\xbd\x66\xf5\x5d\x3e\xb4\x54\x33\x9e\xc8\x86\x3f\xb0\x99\x9c\x7b\x9a\x44\x17\xd0\x0a\x68\x8b\x87\xb9\x85\x98\x28\xea\xfc\x7f\xa7\x3d\xd6\x87\x31\x6f\xf9\x67\x6d\x0d\xd2\x8a\x72\x40\x2a\x21\xd8\x8f\x6f\xd5\x1a\x78\x12\xde\x64\x9f\xd5\x85\xdc\x13\xb3\xd0\xb0\xcb\xaf\x76\xc0\x89\xd4\x0d\x5f\x81\xaf\xa5\x23\x1f\x5a\xe6\xb4\xcd\xae\xf8\xef\x46\x58\x96\xd8\xc7\x7b\xf3\xa1\x9f\xef\xf7\x7b\x1b\x73\x59\x2d\x6f\x89\xe7\x63\xde\xf3\x44\xd8\x5d\xfa\xfb\xff\xb4\xf4\x00\xb7\xe7\x93\x0c\xe0\x36\xe5\xe8\x26\x5f\x5e\x71\xe9\xf0\xcd\xd1\x1b\x89\x0d\x77\xd8\x5c\x39\xf1\xd3\xcf\xf2\xf9\x28\xbb\xac\xae\xb9\x91\x5c\xfc\x56\x06\x91\xa4\x87\x18\xb0\xac\xa2\x06\x8f\x60\xc0\x2a\xb8\x77\xab\x81\x8d\x3c\xef\x69\xa2\x87\x70\x1d\x51\x51\x2d\xb2\x22\x32\xce\x97\x3f\xe5\x09\xbe\xfb\xe9\x70\xc6\xca\x69\x36\x60\x3b\xdf\xa4\x37\xcd\x86\x0d\xc8\x13\x2d\xde\x8f\xd4\x88\x45\xa0\x97\x1d\xe1\x18\x42\x8d\xfa\x11\x8f\x77\x28\x4a\x1c\x53\xc8\xcc\x06\x00\xb5\xbe\x1d\x24\x5e\x41\xd3\x71\xaa\x66\x89\xf4\x0c\xd2\x31\x58\x12\x35\x52\xbc\x86\x14\x1a\x28\x97\xed\xa8\x40\x73\xd6\x01\xdb\x19\x1b\x23\x3d\x44\x99\x37\x44\x19\xf5\x1c\xe5\xbc\xf5\x21\x73\xc0\xfa\x8a\x59\xc1\x8d\x36\x3f\x2f\x99\x36\xea\x05\x85\x5a\x54\x95\x35\x9d\x17\xa4\x1c\x32\xd5\x0a\x9a\x0f\xd9\x23\x1f\x99\xc0\x0e\xa9\xd8\xef\xfb\xa2\xed\xec\x0e\x61\x6f\x8f\x1a\x6e\x0d\x58\xa5\x2b\x1d\x20\x7c\xa7\xf6\x14\xf7\xef\x8c\xab\x6f\xe9\x5e\x0e\x33\x67\x99\x9c\x0f\xc1\xb8\xcb\x23\x57\x3f\x06\x60\x25\x86\xbb\x82\x35\xd3\xf4\xd4\x48\x28\x2c\xf0\x92\x6e\xf0\x0f\x38\x59\xcc\x43\x2f\x38\x2f\xbd\xe2\x68\x45\xee\x1c\x8e\x61\x22\xa9\x7d\xe8\x05\x84\x94\x9c\x4a\x9a\x35\x1c\x39\xd2\xca\x41\xa6\x4f\x71\xe6\x99\xb6\x54\x36\x16\xcb\x7a\x41\x98\xb6\xd4\x41\xf5\xb5\x0f\x47\xb3\x43\xfe\x57\x20\xca\xec\xff\x7a\x68\x05\xf7\x8c\xfd\xa3\x4a\x04\x89\x63\x19\xc7\x3a\xf6\x6c\x37\x93\xea\x70\x44\x40\xda\x84\x33\x9e\x25\xaa\x84\xe1\x50\xce\xc9\x30\xb1\x65\x4c\xc7\xe9\x84\xd0\x52\x91\xb3\x94\x33\x48\xa5\xca\x39\xdb\x79\x66\xe8\x5e\x91\x03\x53\xa4\x3a\x8a\xa0\x56\xb6\x9b\x0d\x06\xaa\x4c\x5b\xa4\x2a\x4d\x95\x19\xc7\x20\xec\x95\x55\x1c\xf3\x73\x01\x2c\xdf\x34\x4b\xf8\x70\x42\xd2\x0c\x4c\x48\x0f\x25\xd3\x50\xee\xa1\xff\x4c\xf0\xe0\x00\xe0\x3f\xa5\xdd\x35\xe8\x41\xb3\x00\xcc\x78\x90\x67\xed\xcc\xd2\xce\x12\xed\x82\x7d\xc1\xea\xa4\xa0\x59\x86\xbe\x1d\x7c\x8f\x58\x7d\xf6\x7b\x15\xc7\xc9\x02\xa1\xa3\x21\xd9\xef\x15\x21\x74\xe1\x79\x60\x0c\xb0\x86\xc6\x3d\x09\x5e\xa9\xb0\x5d\xbe\x59\x7b\xe3\x78\x10\x2c\x40\x0d\xf8\x16\x1c\x28\x1c\x77\x0c\xfa\x49\xf5\x62\x10\x50\xa5\x60\x6d\x1b\xf8\x06\x84\x6d\xc8\xad\xe5\xfa\xa0\xd4\x67\xbb\xef\x94\x4e\x36\x3d\x04\x19\x17\xff\x06\x06\x6c\xf4\xf9\x17\x5e\xb0\x12\x70\xdc\xf2\x51\xb5\x93\x75\xbe\x44\xc8\xa3\xdc\xf3\x55\xd7\x05\xfb\x07\xfe\x16\xc4\xa0\x93\x5c\x92\x33\xcb\xa2\xbf\x91\x49\x69\x30\xff\x69\x7f\x4c\x0d\x1a\x50\xce\x1e\xe5\x49\x49\x05\x3e\x18\x20\x5e\x66\x69\x9c\x9d\xe5\xab\x24\x3f\xaf\xda\x45\xd8\x14\x14\xc1\xf2\x42\x57\xec\xfd\x31\x9d\x90\x9e\xc3\xcc\xf6\x70\x75\x20\x79\x4e\x4e\x4f\xcd\x6e\x7c\xac\xba\x94\xc1\x7e\x14\x84\xee\xd8\xf3\x32\xc9\xd4\xda\xd9\xc5\xb1\xf6\xd5\x30\x36\xfe\x31\xfb\xbb\xfd\xbe\x9f\xd4\xa3\xc5\xfa\x1c\x85\xbf\xa3\xc5\x7a\xbf\xaf\x81\x77\xb7\x01\x71\x5c\xc3\x50\x7a\x7e\x20\xea\x5e\xce\x5e\xe7\x49\xc6\x8a\x91\xac\x8c\x1b\x68\x3b\xa6\x8f\x65\x5b\x58\x9f\x0f\xe1\x8c\x32\x12\xfb\x87\xdf\xba\xb1\xed\x30\x39\xa5\x3b\xa6\xd1\xaf\x7c\xec\xf0\x32\x30\xbb\x5d\xea\xe7\x21\x3c\x23\xa9\xa4\x3b\x47\x6b\x58\x7f\x4c\xab\x73\x03\x44\xa1\x01\x1e\x86\x75\x5a\x9d\x81\x49\xac\x0e\x18\xd4\x69\x92\x21\x00\x00\xd8\xb3\x1e\x70\x1b\xbd\x85\x86\xae\x0c\x60\x91\x71\x86\xcf\x64\xa6\xc2\x97\x4c\xc0\xdf\x2d\x2b\x92\x35\xa1\x1b\x96\xd1\x6b\x56\x24\x4b\x42\x6f\x19\xe8\xef\x95\xe7\xd7\xde\xec\x0a\xba\xa4\xb7\x6a\xee\x80\xdb\x3e\x85\xd3\x69\x31\x5d\x32\xb6\xde\xef\x97\x8c\xed\x14\x1d\x5d\xd3\x09\x49\x97\xc3\xf5\x19\x9b\xb8\x4b\xce\x15\x2b\xcf\xb6\xfb\x7d\x39\xdc\x9e\xb1\xeb\x61\x39\x5d\xa7\x4b\x7a\xc9\xca\x61\x72\xc5\xd8\x7a\xba\x4d\xaf\xc9\x29\x40\xf7\xf8\xa8\x3d\x57\x08\xd4\x63\x45\xd5\x50\xff\x15\x85\x1c\x9b\xf4\x96\x5e\x9e\x0d\x27\xd3\xe1\x24\xbd\x3c\x9f\x80\xc3\x4c\xe8\xb0\x16\xd1\x2e\x78\x5e\x24\xab\x07\x0f\x09\xbd\x61\xeb\xc1\x47\xfd\x1c\x71\xc3\xd6\x76\xa9\x3d\x61\xe3\xd3\x27\x67\x1f\x4f\x07\x83\x27\xe4\x06\x5b\x7e\x43\x27\x58\xc8\x67\x56\x24\x37\xa4\xf7\xf9\xbc\x9c\x26\x4b\x76\x43\xaf\xd9\x67\x9a\xdc\xb2\x4c\x5d\x6a\xae\x07\x6c\xc2\xbf\x53\x23\xfa\x91\xa4\xc9\x9a\xdd\xd0\x2d\xfb\x0c\x03\xb7\x1a\xb2\x8f\xfe\xc2\x79\x25\x03\x2c\x1b\xde\x62\x63\x9b\x60\x87\x2e\xc6\xbc\xd6\x30\x76\x29\xc9\xdd\x25\x3a\x8d\xde\x0a\x1e\x35\x59\xf0\xbf\xfd\xd7\xe9\x60\x20\xc9\xa5\x0c\x10\x95\x1b\xb0\xf8\xaa\xdc\x57\xd5\x92\x27\x08\x96\xd3\x48\xac\x8a\xbe\x04\xfc\xff\x7f\xa7\x94\x43\x00\xc5\x78\x29\xcd\x4b\xea\xa5\x0c\x20\x1f\x1f\x7c\x3f\xb6\x90\x71\x00\x34\xde\xee\xab\xba\x24\xfe\xe2\x15\x06\x38\xea\x9e\x3f\xe7\xe7\xdd\xc3\x68\xef\x09\xcd\x51\xb4\x11\x5a\xa7\xc2\xc7\x0a\xb2\xff\x22\x42\x85\x1d\x54\xaa\x6e\x27\xbd\xa0\x43\x82\x58\x1e\xeb\x98\xa1\x7b\xce\x0c\xa4\xa3\x01\x09\x7a\x30\xb1\x9d\xcd\xcf\x1f\x7a\x9d\x75\x77\x9a\x1c\x4e\xc4\xc9\x18\x96\xd9\x0b\x49\x9f\x4a\xfa\x97\x76\x90\xfc\x4c\xb2\xb1\xa3\x0f\x3f\xe8\x8b\x1a\xbc\x0b\xb3\xbb\xc5\x26\xe5\x80\x05\x67\x44\x9c\x8a\xee\xa8\xfb\x26\x8e\x61\x8a\x6f\x86\x78\xac\x50\x0f\x13\x4f\xa5\xf3\x9c\x53\x21\x84\x9c\xbc\x55\x07\x9e\x8a\x42\x7c\xbd\xd7\x97\x7f\xd6\x18\x13\x3a\xa3\x7a\x06\xe2\x6d\xd1\x19\xf7\x63\x06\x32\xfd\x71\x5b\x4f\xc1\xd6\xf8\x12\xef\x58\xd0\x54\x7b\xd9\xd1\x3e\x84\xcd\xf5\x24\xfc\xf9\xa6\xd2\x75\xa1\x22\x8b\xa2\x65\xcb\x74\x30\x78\x26\x0f\xf4\x2f\x39\xfd\x4b\x8e\xaa\x6d\x6d\x1c\xe1\xc3\xc0\x90\xd4\xe0\x00\x56\x37\x65\xfd\x93\xa8\x76\x5b\xf6\x97\x64\x77\xd5\xb6\x4e\x67\x3a\x6a\x4e\x97\xbc\xc8\x6e\xf9\x52\x35\xf9\x32\x5b\x7c\xaa\xd3\xd9\xdc\xdb\xa6\xbf\x06\x18\xd6\x8d\xd2\x40\xd8\x02\x36\xcf\x49\xdb\x22\x80\x8f\x9a\x25\x53\xc5\x6d\x2c\x2b\x84\x36\x6b\xfa\x6e\x9b\x89\xf9\x68\x91\x15\x45\x12\xc2\x2d\x1b\xa8\xc9\xca\xaa\xfb\x05\xfe\x5d\x55\xf8\xac\x9c\xe3\x9b\x7b\xf7\xfc\xa0\xec\xa3\x19\x8b\x33\x74\x76\x2c\x93\xa9\x8b\x1c\x4b\x30\xeb\x2e\x70\x30\xf0\x7a\x41\x73\xf0\x9d\x76\xb8\x59\xe7\x05\x4f\x5c\x87\xc9\x81\x24\x92\x1c\x56\x79\x99\x15\xc5\xed\x9d\x5e\xe2\x2d\xcf\x76\x5e\x97\x61\x84\xa0\xaf\x6a\x94\xb4\xae\x0e\xe4\x3a\x0d\x46\xde\x91\x3f\x18\x19\xda\xe1\x24\xef\x9d\x4c\xd4\x58\xb7\x84\x9b\x7e\x9a\x92\xa9\x24\xb4\xd4\x9e\xdb\x96\x8f\xb5\xcb\x93\x72\xb4\xd9\xd5\x12\xf7\x4e\x1c\x7f\x93\x94\x60\xed\xa1\x53\x69\x9a\x70\x5f\xb9\xff\xfa\x8a\xba\x7f\xfb\x8a\x34\xef\x75\x1a\x1c\x47\xcf\x8f\x67\xb8\x58\x03\x8d\x8f\xd3\xee\x25\xaa\x21\x2a\xfa\xd2\xb3\x4b\xfa\xb1\xc8\xb7\x5b\xbe\x8c\x63\xe9\x4c\x92\x90\x6c\x03\x99\x02\x8d\x94\x10\x6b\x96\x75\xa7\x1c\xca\x4e\x90\x59\x2a\x35\x2d\x7a\xaa\x48\x91\x08\x1d\xc1\x00\x62\xac\x86\xb2\xd0\xf7\x4d\x8c\xdf\x64\xe2\x2a\x2f\x7f\x40\x0c\xa9\x61\xb3\x05\x5d\x39\xd0\xa4\x10\xd0\x77\xb1\x95\x61\xd9\xcd\xfe\xa2\x3a\x8d\xe2\x77\xf8\x28\xa0\x51\x71\xfc\x0a\x43\xdd\xec\x33\x3e\xf2\xe8\x2d\x6a\x39\x59\xb2\x8a\x80\x77\xf0\xf0\x66\x28\x19\x18\x9e\x3b\x3a\x06\xd4\xdf\xfb\x8d\xec\x67\x4b\xc9\x26\x4c\xa3\xb9\xcf\x73\xab\xa3\x42\xf6\x7b\xd1\x90\x55\xa9\x39\xeb\xc4\xc1\x34\x5d\x62\x3c\x58\xc3\x25\xbf\x39\xf9\x19\x34\x97\xfc\xd0\x3b\x75\x25\xf1\x5a\xaf\x5f\x6a\xd3\xa0\x3d\x07\x1a\x74\xda\x77\xfc\x7a\xcf\x32\xec\xf1\xc6\xa6\x8a\xe3\x7f\xe0\xe0\x5e\x66\xc2\xc8\x19\x5f\xa8\x90\x76\xd7\xfa\xdd\x7d\x83\xc1\xcc\x96\x7f\xee\x6a\x9c\xe6\xb7\x15\xdb\xc8\x44\xba\x02\xdc\x57\xa0\x9d\x80\x7c\xf1\x77\x54\x86\xe2\x0d\x23\x5e\x0c\x4a\x0c\xda\xa7\x47\x01\x13\x5a\x9b\x12\xd1\xbd\xd6\x45\xcb\x57\xd0\xa0\x51\xf6\x60\x25\x13\x49\x06\xb2\x85\xb9\x0c\x4b\x2e\xfb\x7c\x61\x8f\x47\x1f\xc7\xe6\xcb\xe5\x0e\xd7\xaa\x5c\x42\x68\xd2\x1c\x73\x58\x59\x8d\x93\x99\xa0\x5a\x22\x5a\x36\x2c\x9d\x7d\xb7\x38\xe6\xed\x4c\x2b\xb8\xf9\x0e\x1f\x7e\x6b\x4c\x7c\xcf\xec\x83\xa0\x5d\x40\x3f\x42\x89\x92\xde\xe1\x79\xd9\x39\xf8\xb8\x63\x1b\x63\x71\xa6\xb5\xa7\x6c\x40\x1c\x6f\x44\xe2\x7b\xf3\x6e\x43\x53\xbb\xc4\xcd\xd2\x40\x31\xc1\x5b\x09\x4d\x09\xf0\xc4\x73\xe8\xad\x7a\x1d\xc7\xc6\x96\x83\x3d\xae\xc0\x9e\xbe\x6f\x19\xe2\x75\x56\x3f\x45\x3b\x8c\x56\x50\x42\x48\xaf\x63\x90\xd5\xae\xbd\xdf\xf3\x5c\x2b\x8b\xba\xee\x76\xcf\xab\xe3\xfb\xfa\x5a\xc3\x0c\x29\x2b\x89\xe3\x1f\x60\xa7\xbb\x85\xec\x28\x9d\xdb\x8d\x7f\x74\xa4\x69\xae\x95\x38\xce\x25\xe8\x0e\xb5\xb1\x4b\x3c\x76\xb2\xdd\x2b\x34\xc7\x04\x2b\x41\x50\x98\x10\x71\x7c\xc5\x9b\x1e\x56\xdf\xdf\x43\x3d\x8c\xda\x22\x3e\x51\x37\x9b\xfe\xdf\xd0\x74\x7d\x1a\x6b\x6f\x43\x62\x74\xb3\xe6\xbc\x80\xd7\x97\xdf\x0d\x12\xa9\x47\xda\x9c\x5d\x80\xbf\x92\xfa\x01\xa5\x03\xdb\x28\xaf\x98\xa0\xd0\xf7\x1a\x01\xa1\x55\xb2\x22\xce\x1d\x16\xbd\x61\xe5\x7d\x4d\x43\x2f\xb4\xdf\x59\x6b\x05\x7c\x0c\x00\xab\x55\xa6\x46\xc0\x6a\x51\x1f\x0c\xa7\x5e\x6d\x04\x8c\xd6\xbf\x60\x7d\xac\xd2\xd1\xce\x86\x07\x29\xda\x83\xd6\xd1\x5d\x20\x59\xed\x91\xed\xee\xf0\x51\x9c\xae\x56\xb1\xc8\x5a\x1c\x21\xb7\x7e\x6d\x47\x3b\xac\x22\x83\x8a\x3b\xba\xfc\x02\x7d\xda\x79\x24\xe3\x5f\x00\x0e\x1e\xac\x0c\xc3\x87\xb7\x31\x92\xad\xaf\xab\xa4\xf4\x45\x58\xf8\x8a\xf2\x3d\x78\x70\xd7\xd2\xa2\xfe\x84\x66\xda\x45\x21\x28\xb3\xc6\xb1\xe8\x33\x39\x45\xb8\x35\x92\x66\x74\xc7\x7e\x15\x09\xf7\xbd\x90\x81\x10\x19\x65\xc9\x0d\xef\x64\x5b\x0a\x8f\x12\x64\xe8\x19\x3b\x76\xa6\x87\x70\xed\x7c\xc9\x20\x64\x92\x01\xc8\x5d\xb9\x47\x58\xd5\xe1\xbf\x08\x42\xd4\x50\x38\x75\xd1\x9d\xbf\x98\x93\xad\x6a\xe7\xce\x5f\x27\x16\x30\xb7\x51\xe8\xb0\x20\xe7\x13\x70\xe6\x05\x0e\x98\xc3\xc2\x70\xa5\x24\x1b\xbf\xb4\x17\xae\xed\xcd\xe2\x54\xd4\x70\x11\x94\xd7\xaf\x50\x55\xd0\x3c\xa8\x64\x87\x44\xd2\x17\xda\x0f\x7e\x83\xed\x22\x5d\x11\xb2\x6a\xcc\xb4\x66\x3f\x15\xf9\xf6\x43\xf3\x1a\x71\x5b\x80\x57\x0e\x69\x61\x0b\x15\x99\x83\x37\x71\xcc\x8d\xb9\x9e\x97\xb2\xfa\x2d\xe7\x37\x4e\x95\xf4\x3a\x44\xd8\x87\x27\x80\x7b\x1f\x5d\x68\x8e\x97\x27\x78\xe4\x19\x80\x8b\xc8\xb3\xf1\x34\x67\xfd\xb1\xc5\xfe\xc5\xd0\x73\x0d\xea\x80\xce\x57\x90\x3a\x78\x27\x54\xe3\xc9\x30\x20\x22\xa8\x0a\xd0\x9f\x78\x6a\xc2\x79\x1c\xf7\x97\x66\x05\x3b\xc7\x92\x00\xc4\x80\x16\xdb\x5d\xe0\x24\x06\x81\x04\x1a\x3b\x14\x9e\xa4\x79\x18\x08\xca\xdb\x9e\x08\xa5\xc3\xd9\x55\xfd\x44\x46\x5e\x38\x77\x12\x0d\x08\x13\x69\xbd\x50\x5a\x44\x94\x87\xdb\xcf\xa7\x91\x9a\xbe\xf6\x53\x54\xe8\x6e\x8c\x56\x7a\x86\xcd\xec\x24\x79\xf3\xf9\xb7\x6d\x42\x5d\x91\x83\x5a\x62\xda\x51\x70\x05\x78\x3f\xb7\x97\xfc\x19\x40\x95\xbc\x04\xb5\xe7\x9a\x66\x26\xf8\xd7\x72\xed\x47\xa0\x1d\xa0\x07\xab\x74\x5a\x9f\x55\xee\x81\xb5\x26\xd5\xac\x46\x15\x73\xe7\x65\xe9\xbf\xf3\x44\x85\xd2\x68\x9d\x2f\x39\x6a\x54\x67\x50\x44\x88\x2b\x0f\xd9\xb3\x66\x76\xf0\xd6\x0e\x20\xf3\xd1\xae\xd4\x05\x08\x2b\x9b\xf6\x25\x74\xe0\x16\xc6\x9d\x01\x47\x79\x2a\xd8\xec\x7c\xe4\x24\x46\x50\x85\xa4\x91\xf6\xd1\x10\x51\x19\x44\x3b\xce\xc3\x31\x0d\xa3\x55\x5e\xe6\xf5\x3a\xf1\x7d\xf1\x3b\x27\x16\x46\xa6\x63\x5e\x39\x13\xd2\x03\x29\x18\x98\x23\xba\x40\x2b\x55\x00\xc1\x8d\x77\x37\xfe\x59\x17\xd5\x74\x32\xd9\x59\x38\xea\x7a\x26\x9c\x66\xe2\x0a\xb6\x45\xdd\x55\x5b\x47\xaa\x66\xf5\x9e\xb3\x76\xdf\x6d\x4a\x58\x3b\xea\x39\xfa\x0d\xe0\xba\x68\x40\x95\x08\xdb\x00\xaa\x7a\x7e\x33\x8e\xa4\xf5\x5b\x02\x79\xfc\xc6\xfc\xf7\x91\xc6\x04\xf8\x95\xe8\x30\x61\xbf\x97\x5f\xdf\xb6\x7f\xbb\x61\x41\xab\x7e\xb7\xef\x53\x68\x25\x94\x97\x9c\x49\x63\x7a\x59\x4b\xd6\x12\x60\x50\x81\x4f\x0d\x92\x3d\x57\x81\xa7\x84\x83\xfb\xb8\x72\x99\x4c\x14\x3f\x8f\xb6\xf8\x09\x82\x9e\xcd\xe6\x84\x68\xe9\xa0\x7d\x3b\x11\x07\xe0\x62\xc1\x78\x28\xff\x4b\xe3\xd6\xa9\xaa\xa6\xaf\xf3\x64\xa3\xcd\xe7\x50\xb5\x66\x28\x06\x93\x74\x82\x69\xcb\x6a\xc9\x1d\xb2\x1d\xca\x67\x51\x17\x0c\x76\x35\xfb\x01\x69\xbe\xe7\xab\xbb\x4b\xad\x8b\xcd\xe6\xb4\x62\xf2\xb4\x3a\x13\xa7\x95\xd1\x41\xc8\x42\xff\x22\xf6\x5d\x51\x91\x25\xd2\x2b\x59\x35\xc8\xd0\x19\x9d\x76\x7c\x96\x79\xde\xa8\x6c\x75\xff\x90\x4d\x3e\x04\x7c\xec\xe9\x63\x5c\xbb\xd7\xb3\x8e\x3f\x13\xe1\x47\x0c\xf4\xc9\x9a\xff\xc5\x8d\xbb\x94\xb1\x79\xe9\x0b\xdc\x83\x95\x71\x2c\xac\x9b\x29\xeb\x7d\x3e\xd7\x7b\xf9\x05\x2a\xc9\x5c\x72\x51\xef\xf7\x1d\x81\x5a\xbf\xac\x1d\xc1\xa4\xf3\xde\xe2\x49\x58\x40\x89\xda\x38\xb9\x7a\x5b\x91\xcf\x71\xfc\x57\x69\x1f\x6d\xbd\x76\x48\xa1\xe6\xd7\xe8\x33\x88\x33\xcf\x2f\x96\xca\xf4\xcc\x64\x12\x83\x92\x9c\xbb\xb8\x29\xe4\x4b\x13\x17\x32\x60\x25\x35\xc5\x0e\x58\xe9\xca\x94\x67\x81\xaf\x2d\xe1\xb5\x2a\xac\x3c\x48\x48\xee\x92\x8a\x95\x8a\xa3\x11\xaa\x6e\x3a\x21\x64\xaa\x6b\xd3\xa9\xb4\x3a\x7e\x85\x78\x15\x84\xba\xbc\x0c\x05\x3f\xaf\x82\xf6\xa4\x50\x99\x35\x0c\xf1\x9b\x81\xc7\xf2\xa9\xa9\x50\x52\x49\x87\x47\xeb\x1b\xd3\x46\x8d\x6f\x2b\x53\x9f\x5f\x87\x59\x9d\x5e\x81\xb4\x0e\x3b\xd4\xcb\xe2\xb8\x3e\x56\x49\xa6\x2b\x19\x2d\xaa\x72\x91\xc9\x04\xb6\x44\xa6\xfb\x55\xeb\xfa\x6c\x6c\x90\xb9\xd6\x59\x49\x57\xff\x51\x65\x20\x6f\xbb\x22\xda\xa9\x95\x7d\xb6\xc3\x92\xa7\xfa\xef\x80\x95\xa9\x34\x81\x83\x1d\x2c\x73\x58\x87\x6d\x37\x3f\x80\xc6\xea\x39\x88\x17\x66\x0b\x77\xaf\xce\xde\x75\x97\x1b\xea\x63\x7e\x92\xf2\x55\x92\x83\x8f\xa4\xdc\xf9\x48\xd2\x9f\x83\xdc\xb4\xaa\x3c\xd2\x2a\xda\x4f\xe4\x59\xe9\x89\x09\xe5\x39\x2b\x43\xb7\x98\x95\x0e\x70\xae\x9b\x2c\xe7\x86\xa6\xf5\xce\x11\xa5\x3e\xa0\xf7\xfb\xc4\x7e\x2b\x5a\x79\x3a\x9c\x30\x76\x5b\x25\x19\x15\x24\x8e\x33\xed\x41\x26\x20\xd7\x30\x01\x77\x6d\xcf\x52\x2d\x5f\x9d\x3e\x7d\x69\x78\xd1\x54\x44\xb0\x4b\xf3\x80\x79\xbe\xa1\x74\x1f\x3a\x3d\x59\x39\x9f\x55\xc6\xdb\x62\x22\x9b\xaa\x5f\xb0\xfd\x9c\x26\x43\xe3\xad\x21\x4c\x4b\xf1\xbd\x45\x34\xbc\x7a\xa9\x42\xc5\xac\x9c\x23\x5d\xf4\xca\xf2\x1c\x92\x8b\xa6\x83\x9c\x8a\xe9\x96\xd3\xac\x51\x0b\x9c\xac\x9f\xf7\x7b\xc1\x8e\x91\x5e\xad\x29\x82\x70\x7b\x15\x85\x95\x91\x0a\xe7\xe5\x0c\xb1\x37\xdb\xfd\x54\x9c\x23\x78\x12\xda\x0d\xc0\x8b\x10\x94\x06\x06\x8f\x7d\x86\x43\x58\x9e\x8f\xe1\x6f\x85\x3e\xac\xb5\xf1\x63\x30\x88\x6c\x37\xc8\x66\x15\xe6\x1d\x4a\x5a\x0d\x06\xc6\x9b\xcc\x6e\x28\x7b\x72\xc0\x72\x2a\x06\x2c\x47\x23\x32\x4b\x86\x05\x01\x4b\x32\x5d\x76\x52\x9e\x8d\xa7\xe3\xd4\xab\x22\xa8\x43\x0c\x58\xf9\x6d\x36\xab\x86\x90\x6e\x92\x8e\x09\x56\x47\xd5\xde\x3e\x1c\xe9\xbd\xe7\x08\x58\x34\x5f\x7b\x82\x49\x14\x6c\xac\x27\x52\x76\x3c\x9a\x49\x78\x30\xd3\x87\xb5\x3a\x9d\xd4\x86\x00\x1f\x23\x76\x2f\x0c\x06\xc2\xea\xe2\x79\xae\x73\x45\xd7\xd3\x89\x04\xe3\xd0\x77\x22\xdb\xea\x17\x6b\xd6\x0d\x52\xae\xae\x88\x26\x25\x8a\x39\x5b\x09\x21\xd8\xb9\xc0\xf0\x5e\x86\x65\xfb\x61\x5c\x76\x6a\xb7\x76\xbe\x6b\x20\x4a\x84\xbc\xc8\xff\xe2\x49\xe0\xa0\x57\xef\x2c\xb7\x1b\xfe\x95\x27\x92\x9c\x8a\x3e\xb3\xfe\x10\x4e\x05\x13\x9e\xb3\x15\xb0\x30\x10\xfb\x3d\xe0\x68\x1a\x43\xc4\x38\x8e\xa4\xd8\x81\x6a\x61\xdb\xe8\x33\xbf\x2a\x2b\xc1\x87\x60\x00\x54\x47\xf0\x66\xe1\x8a\x03\xf1\x90\xba\xdf\x82\xd4\x43\xfb\x8b\xb4\xa6\x0a\x9e\x72\x5c\x73\x77\x35\x7c\x95\x0a\xd7\x04\xe8\x42\xbb\x19\x65\x25\x87\xda\xb0\x26\x0a\xd7\xe2\xb5\xf6\x63\x5f\x6b\x6a\x7c\xbf\x7e\xa2\x62\x70\x2b\x26\x2d\x44\xa6\x56\xe9\xcb\x6c\xd0\xfb\x21\x88\x60\x34\xf0\x89\xbb\x71\x80\xaa\x30\x1c\x57\xb4\x60\xa0\x8a\x55\xd1\x8c\x68\x56\x6a\xc2\x58\x01\x8a\x47\x71\x9c\xec\x9c\x3a\x59\xa1\x21\xac\x14\x9f\x69\x4c\xf0\x54\xca\xc5\x5a\xbb\x8b\x07\x4f\xa6\xd4\x68\xf0\x75\x38\x32\x1d\x9a\xb8\x5e\x01\x66\x7d\xc8\x13\x37\xe5\x6c\x00\xe2\x99\x24\xd5\x70\xe1\x5f\xc3\xb5\xde\x42\xa0\xf6\x46\x86\x0b\x87\x85\xef\xa9\x3e\xef\x44\x07\x16\x9e\x3f\x43\x09\xaf\x12\x09\x90\x61\x42\x43\x97\x01\xf0\x43\x1c\x9b\x07\x86\x00\x0f\x22\x21\x84\x20\x32\xde\x3a\x07\xf0\x7a\xf8\xfb\x33\xbf\xa5\x19\x22\xc2\x12\x94\xca\xda\x6b\xe8\x52\x64\x57\x57\x60\xb9\xd5\x9f\x1c\x85\xae\xea\x4a\x3d\x3e\xd0\xc9\x78\x4c\x1c\xdb\xd6\x5f\x08\x68\xa8\xd1\x92\xab\xf1\x67\xaf\xbe\xc9\xd5\x84\x6a\x29\x8a\x41\x0c\xfd\x2d\x4f\x54\xd2\x45\x56\xf3\x93\x49\x6a\x84\x40\x5a\x60\x5e\x5e\xa9\xfd\x3a\xed\x0c\x55\xec\x66\x39\x0d\x05\x87\xe4\xae\x9a\x7a\x6d\x7f\x52\x25\x57\x9c\x82\x15\x5b\xea\x3c\x1a\x2e\x76\x35\xbc\x39\xf4\xcc\x3d\xc2\xba\x14\xee\x3d\x95\x71\xfc\x54\x8e\x64\xbe\xe1\xe7\xf9\xf0\x6f\xe3\x31\x58\x55\x6c\x79\xf2\x54\x8e\xb6\x55\x4d\x05\x99\x96\x2c\x92\x22\xdf\x16\x3c\x4a\x5f\xc8\x38\x7e\xd1\x95\xfa\x85\x4d\x9d\x94\x2c\x5a\x56\xbb\xcb\x82\x47\xf4\xa9\x64\x77\x2a\x6d\x9a\xd3\x6d\x55\xa7\xe2\x40\x52\x15\x8d\xce\x7f\x22\xfa\xa2\x15\xdd\x33\x8b\x9d\x3b\x34\x53\x76\x3d\x95\xa3\x0d\x97\xd9\xcf\xfc\x36\x95\xa3\x85\x14\xc5\xcf\xfc\xd6\x53\xba\x54\x33\xf3\x58\x54\xdb\x38\x7e\x57\x81\xb4\x38\x44\xf1\x32\xd5\xa1\x68\x75\xc7\x3c\x0c\x5f\x41\x08\xc0\xb7\x25\x5b\x9e\x40\x8c\x36\x46\xda\xcd\x89\xc1\x34\x10\xe4\x6c\xac\xd6\x9f\xd6\xf0\xc3\xb4\x3b\x30\x47\xa2\x82\x9c\xdb\xb8\xb3\x31\x99\xb6\x45\xba\x0d\xba\x43\x77\x6e\xe4\x69\xc1\x7e\x0e\xe0\xaa\x17\xe4\xae\x46\xdf\x31\x5d\x0b\x14\x64\x8b\xb0\x24\x20\x54\xaf\x08\xb5\x72\xbf\xc9\xad\x62\x95\x87\xbe\x5a\x10\x15\x91\x7b\xce\x5a\x96\xa2\xc2\x70\x2b\x11\x75\x14\x69\x61\xbe\xc8\xa0\x15\xfb\xde\xc6\xbe\x27\x67\x93\x71\x1c\x27\xcf\xf2\x64\x41\x68\xbf\x8c\x63\xdb\x9b\xe1\xc3\xf1\xf8\x6c\x17\xc7\x3f\x70\x7b\xb4\xd3\x1a\xb0\x46\xff\x8b\xb1\x6c\xda\xbd\xbb\x02\x13\x03\xbb\x3d\xf2\x10\x60\x17\xc0\x85\xd2\x46\x20\x39\x90\xde\xf1\xc1\x02\x4f\x53\x1d\x83\x55\xd0\x46\x7a\x5c\x35\x1d\x81\x09\xe9\xbd\x3f\x36\xac\xef\xbb\x87\xd5\xf8\xa5\x5a\x90\xf4\x38\x26\x83\x5b\x09\x99\x56\xa5\x05\x27\x36\xc6\x49\x26\x2d\x58\xa6\x17\xbd\x59\x8b\xbd\x1c\x1e\xb1\x0d\x2d\x9b\x26\x3b\x4c\xe2\x2f\x62\x5a\xb3\xdd\xf9\x70\x32\x5d\xcc\x76\xf3\x54\xdb\x1a\x0a\x2a\x08\x49\x93\x5a\xa7\xf6\x3d\x67\xb8\x10\x34\x22\x54\xb4\xf6\x76\xea\xea\x40\xe7\x96\x66\xbf\x65\x85\x0a\x23\x25\x8b\x04\x5f\xc8\x08\xf4\xaf\x6b\xe6\xd7\x42\x05\xd3\x67\x6d\x1f\x34\x67\xe9\x8e\x0d\x27\xce\x3e\x40\x13\x03\x6b\x33\x61\xe0\x1b\xde\x55\x62\xf9\x48\x26\x82\xf4\x7c\x2b\x0a\x68\xc4\x7e\x9f\xc1\x45\xa6\x5c\x4e\x9f\xf1\x24\xa3\x35\x5d\x19\x33\xbc\x15\xda\xe0\xa5\x2b\x7b\x8d\x35\xc4\xc9\x56\xb0\x36\xad\x5b\xf2\x04\xed\xee\xe8\x18\x24\xf6\x19\xb5\x21\x80\x14\x41\xbe\xaa\xea\xb5\xa9\x7a\xad\xab\x5e\x6b\x5c\x63\xa6\x13\x08\xd2\xcb\xa7\xea\xee\xb3\x53\xb3\x63\x30\xd2\xe8\x7b\x15\xfb\x98\x27\x0b\x73\x43\x9d\xd5\x73\x42\x77\x84\xde\xe1\xe2\x49\xfb\x13\x5a\x89\xfc\x2a\x2f\xd3\xe8\x5b\x58\x60\xd1\x81\x90\x74\xe1\xc1\x1f\xa8\x09\x35\xc6\x98\x0d\x42\x16\xac\x09\x57\x95\xb9\x3b\xef\xec\xbd\xd8\x84\xed\x06\x13\xa2\x8e\x85\x7b\xab\x37\x0b\x90\xa4\xef\x54\x91\x3b\x5a\xd3\xba\x22\x69\xb2\x63\x63\xec\x8f\x36\x44\x9d\xd5\x73\x55\x54\x5d\xb9\x1c\x1a\x96\x1c\x3d\xda\x6e\x59\xf5\x45\xbf\x3e\x1b\x5f\x3b\xf1\x3a\x91\x86\x5a\x0e\x06\x1b\xba\xf0\x56\x14\xae\x3b\x35\xbb\xa8\x74\x6b\x8d\x7a\x17\x74\x49\xdc\xdd\xda\x9d\x72\x81\xb7\x28\x95\x1a\x4e\xa8\x25\x95\xf6\xc9\x24\x5f\x25\x4b\x26\xbd\x92\xef\xdc\x63\x1b\x88\xd8\x5a\x4c\x11\x05\xb6\xe9\x26\x57\x97\x5b\x8f\xc1\xa2\x62\xb4\x58\xd3\x8a\xd0\x95\x8d\x96\x7e\xb4\xd4\xd1\x6b\x87\xf3\xb0\xa0\x2b\x42\xbd\x87\x5a\xf8\xbd\x09\x7c\x22\xa8\x15\x6b\xac\x02\xae\x5d\x0c\x87\xbb\x00\x80\x95\x7a\x4f\x72\x61\x7a\x72\xba\x39\x63\xd7\xa7\x1b\x73\x75\xb9\x65\xd0\xa8\x8d\x6e\xcf\x15\x5b\x55\xc9\x2d\x55\x6d\xea\xad\x19\xdb\x4e\xb5\x4c\xd0\x6d\x98\x0d\xbd\x02\x84\x0e\xf5\x97\x90\xf4\xd6\xac\xc6\x2b\x45\x27\x8f\xa6\x85\x52\xb7\xb4\x22\x00\x88\x62\x5f\x1c\xc2\x1c\x48\x2c\xcc\x5a\x35\x04\xae\x63\xc9\xe6\xb8\x4d\x1a\xab\x93\xda\x75\x7b\x70\x0f\x6d\xf6\xc1\x45\x7a\x32\xa7\x4b\x56\xd3\x8f\xec\xd2\xec\xdb\x1b\x06\xaf\x8f\x66\xfb\xf4\x59\xa9\x8d\xa0\x1c\x61\x42\xfd\xed\x80\x2e\x49\xcd\xde\x61\x94\xeb\xb4\x6c\x51\x14\x19\x50\x94\x2d\x4f\x9e\x98\x9a\x3f\x92\xf3\xf1\x34\xb9\x61\x4f\xd0\xc8\xfc\x23\xbb\xe5\xc9\xa5\xe1\x2c\x4c\x2a\x45\xa6\x55\x12\x93\x87\x5d\xab\x44\xc0\x60\x3c\xd1\x66\xe0\x07\x5c\x9a\xcd\x21\x23\xbd\x7c\xb6\xb3\xd6\xe5\xd0\x9c\x8f\x84\xde\xb8\x31\xce\xd5\x38\xd6\xf0\xd0\xb4\x30\x4e\x09\xde\x25\xea\x0e\x71\x9a\x2c\xb4\x66\xd8\x6a\x24\xab\xfd\x1e\x7f\x9d\xad\xf0\x79\x33\x8e\xbd\x03\xfb\xe7\x86\x53\x8d\x0d\x63\x79\x1c\x5f\xa3\xef\xb5\xc9\xf7\x63\x6f\xe0\xd7\xee\x46\x73\x06\xde\x31\xa7\xc3\x87\xe3\xd4\x86\x9d\x1b\x27\x99\xd3\x87\xe3\x74\xdc\x5b\x7f\x45\x35\x49\xd5\xf1\x6c\x34\x60\x6b\xaa\xea\x57\x0d\x00\xe8\x61\x4b\x46\xae\xd4\x96\xe7\x5d\xbc\xb3\xe2\x94\x36\x6c\xf2\x60\x4c\xe1\xc4\x05\x09\xa6\x0f\xe3\xdf\xe6\xa2\xd4\xbd\x32\xa2\x97\x5d\x51\x8a\x13\xf8\x48\x68\x36\x5a\xe7\xb5\xac\xc4\x2d\x6c\xcc\x0b\x5e\xbc\x86\x15\xcb\xec\xb5\xed\xb2\xc1\xe2\x71\x72\x07\xcc\xff\xf4\x5a\xb1\xf2\x57\x09\x57\x3d\xf8\x88\x89\xae\x1c\xd3\x12\x36\xfc\x23\x6d\xb3\x22\xb6\x6d\xdd\x5c\xca\x47\xcb\x8d\x94\x74\x41\x0e\xea\x32\x42\x4b\x92\xfe\x4b\xd5\x0d\xc8\xbe\x7a\x48\xe3\xf8\x19\x00\xff\x6b\x97\xbd\xea\x42\xf2\x30\xad\x41\xd9\x0a\x5b\xa2\xfa\xf5\x32\x5f\x2e\x0b\xfe\xb8\xba\x29\x1d\xf3\x0a\xf6\x5b\x3f\x18\x24\xb2\xf2\x38\xf2\x6f\x9b\x95\xa3\xad\x2a\xbf\x4b\x6f\xa6\x2f\xf1\xc6\xd4\xc0\x00\xd1\x3c\x1c\x2f\xb2\xdb\xbc\xbc\xfa\xa1\xd8\x89\x27\xd7\xbc\x04\x6f\x45\xc7\xa0\x2e\x8f\x64\x41\xed\xc9\x63\xc5\x4d\xe8\x8f\x02\x51\x6c\xd5\xbd\xee\xd0\x78\x63\x2a\x3c\x41\x82\x01\x32\xcd\xdd\x75\x9e\xba\xab\xfd\xfb\xe6\x0d\xbe\x3f\x39\x80\x41\x13\x12\xf1\x55\x51\x55\xc2\xb3\x19\xbe\xda\x49\xc9\x45\x7d\xec\x84\x34\xfe\x6b\x2d\x2e\x46\x09\xf3\x25\x8d\x55\xab\x63\x26\x15\x97\xf7\x25\x17\x79\xf9\x2a\xa9\xce\x8d\xda\xc6\x7e\xdf\x17\x15\x28\x8b\x18\xb1\xc6\xaf\x50\x70\x35\x44\x0b\xd5\x61\xe6\x09\x56\xad\x04\x71\xc7\xc6\xa7\xbb\x33\x77\x36\x9a\xf6\xdb\x77\xe3\x9d\x81\xa4\xcd\x6c\x9c\x07\x5f\xb5\x03\x91\x72\x11\xc7\xc5\xfd\x3d\x3e\x37\xbe\xd4\x17\xec\x91\xf7\x98\xb5\x62\xad\x9a\x55\x91\xc6\xd3\x72\x0e\xcf\x0a\x9c\x2e\xe8\x8a\x4a\x42\xa1\x3f\xfe\x2c\x2e\x44\xf0\x98\xab\x27\x35\xc2\x92\x7e\x2c\xf2\xc5\xa7\x48\x31\xaf\xb0\x6f\x57\xc2\xe7\x4d\xd6\x0d\x39\x05\xb0\x0f\x42\x11\x91\xbe\x16\x50\xc4\x71\x3f\x13\x4e\x7b\x10\x24\x01\xb0\xcc\x69\x15\xc7\xc9\x4a\x78\x1b\xc7\x38\x7a\x86\xf5\x0e\xdc\xb2\x01\x37\x7f\x2b\xb2\xb2\x5e\x81\x37\xd1\x82\x43\x25\xe0\xb4\x2a\xb8\xcd\x12\x14\xfd\x94\xf6\x51\x5e\x8b\x16\x9e\xe6\x05\x57\xa9\xd4\x96\xf6\x82\x3c\x4b\x6c\x93\x85\x66\xec\x91\x10\xd9\x2d\x40\xbf\x83\x44\xd8\xbb\xad\x94\x1a\x3d\xd1\x8e\x73\x56\x14\xd5\x8d\xba\x10\xa9\xd2\xde\xde\x6e\x79\xbd\xdf\x0f\x27\x7d\x76\x5b\x25\xf7\x25\xa2\x88\xea\xef\x5e\x16\xf8\xcd\x89\x6b\x62\xaf\x1a\x55\x65\x51\x65\x4b\x45\xf8\x64\xdb\x4d\x67\x35\x12\xbc\xde\x15\x70\x68\x3f\x98\x7d\xf8\x3c\x1e\x0f\x3f\x7c\x1e\xff\xfd\xc3\xe7\x31\x1f\x7e\xf8\x3c\x59\xcd\xef\x1e\x1e\x0c\x12\x39\xa8\xa0\xb2\x28\x22\x34\x9b\x95\x73\xc6\xe9\x60\x50\x33\xb3\x7e\x76\x1a\x0b\x44\xb0\x17\x86\x54\x09\x42\x65\x95\x0a\xe3\x8a\xa0\x01\xa6\x97\x21\xac\x9b\xec\xc2\xcb\x23\xc4\xb2\xcb\x08\x6e\x7f\xe8\x3d\x37\x88\x55\x3b\x42\x7f\x0b\x60\x19\x7f\x11\xc9\x4e\xc3\xb8\x57\x80\x8b\xfa\xa8\xd6\x02\x9c\xc3\x81\x16\x6c\x7c\x5a\x9c\xe5\xa7\x83\x41\x41\x76\x49\x39\x2b\xe6\xb4\x70\x2e\x16\x64\xc7\xcd\x15\xd4\x22\x9b\x0e\x88\x04\x39\x77\x52\xf8\xae\x5c\x6a\xfd\x01\x6e\x56\x37\xad\x6c\x6a\x5a\xfa\x44\x1a\x44\x96\xf9\x2a\xc9\x9a\x6b\xf3\xca\xb8\x3d\x78\x0b\x20\x80\xe4\x78\x8b\xfb\xc9\xf5\x94\xeb\xdb\x63\xca\x8d\xd8\x06\xf1\x1b\x17\xe0\xd2\xb3\x0e\xbc\x52\xa8\xd9\xfe\x29\x18\x44\xc5\x2d\x2e\x60\x09\xe3\x88\x2d\x1c\xa1\x29\x88\x45\x0b\x8b\x22\xba\x98\x15\x06\x4a\x07\xbf\xb5\x8b\x51\x91\x5d\x81\x87\xd7\x96\x8f\x88\x8c\x46\x19\xc8\x2f\x23\xe3\xa9\xc0\x57\xe4\x0d\x87\x43\x93\x74\x4e\xee\x0e\x3e\x39\x59\x36\x5e\xb2\x54\x65\x46\xaf\x2b\xf9\x92\xea\x4f\x57\x36\x5f\x61\xc8\x85\x6a\xf8\x7b\x5b\xed\x56\x53\xb1\xa3\x4a\x72\x92\x9c\x3d\x44\x60\x0a\x3f\x98\x49\x2a\xf6\xfb\xdf\x13\x4e\x41\x4f\x5f\x1e\xfc\xda\xda\x0c\x56\x9f\xc9\xa0\x17\x1d\xaa\x9d\xb2\x5d\x42\x5b\x43\x54\x82\xbe\xee\xef\x40\x08\x15\x8f\x03\x52\x53\xd7\x99\x8d\x7d\x20\x4d\xc4\x54\xb2\x96\xce\x60\x7a\x5c\x77\x4f\x75\x93\x00\xe6\x90\x53\xde\x3e\xde\x25\x54\xff\xec\x88\xf6\xde\x50\xa0\x3f\x41\x25\x4c\xd2\x7f\x85\x80\x22\x1d\xfa\x9e\x5f\x18\x2a\x2c\xe7\x4b\x63\x05\xca\xa5\x52\xf3\xf9\xd7\x82\x8d\xe9\x2d\xce\x7c\xaf\x9a\xde\x0a\x36\x1c\x7d\xff\x5d\x2a\xd4\xd7\xe4\xfb\xb4\xc0\x90\xff\x9b\xae\xe2\x38\x51\x9f\x93\x07\xdf\xe1\xa9\x72\x25\xda\xea\x2e\x8c\xa3\xde\xf1\x63\x5e\xc8\xec\x77\x70\xe4\xeb\x7e\xbf\xf7\xad\xe0\x41\xe3\x43\x71\x47\x32\xcb\x0b\xf5\x95\x7d\xce\x01\xed\xe7\xd9\xeb\x5f\x9e\xff\xf1\xfa\xd5\xdb\x47\x2f\x3e\x3e\xfa\xfd\xf9\x85\x51\x0b\x81\x74\x9e\x4e\x48\x57\xd6\xdf\x9e\xfc\xf2\xf6\xf9\x8f\x3a\xe3\x54\xd8\x6c\x69\xa8\x49\xe2\x5a\x44\xe8\xdd\xe7\x54\xd2\xdb\x54\x1c\x3c\x88\xa3\x4b\xe1\xac\xef\x4b\x76\x05\x47\xaf\x3a\xd1\x3e\x83\x01\xf9\xad\xff\x56\x8a\xe2\x2d\x23\x9c\x2b\xac\x7e\x28\x4c\xf1\xf9\x2e\xd0\xfb\x5d\xd9\x58\x7c\x1e\xb3\xd1\xce\x64\x36\x8f\xe3\x02\xa4\x98\x2b\x7c\xa4\x8c\xe3\xeb\x38\xae\x09\x4f\x1d\x7e\xa7\x1c\xc9\x4c\x5c\x71\x49\x97\x0c\x99\xa6\xd3\x75\x9f\xed\x4e\xd7\x6c\xed\x3f\x81\x99\xf4\x5b\x36\x3e\xdd\x9e\x2d\x0d\x25\xdb\xe2\x5b\xf1\x72\xb6\x45\xe4\x57\xc6\xd6\x3e\x51\x59\xec\x84\x2a\xe1\x9d\x1a\x9f\xb7\x50\x0b\x5b\x23\xe7\x7c\xc2\x0f\xd8\x3c\xf0\x6c\xb9\x40\x95\xf4\x3e\xbb\xb5\x90\x1e\xaa\xcd\x71\xbc\x75\x5a\xc0\xa1\x86\xb4\xa7\x71\x3b\xa8\xbe\xbd\x15\x34\x1c\x8a\x61\x38\x14\xea\xf0\xdb\x7c\xa9\x28\xb0\x27\xc9\xfd\xb2\x70\xdb\x05\x83\x0e\xb6\x25\xda\x0b\xd5\x8a\x68\x7e\x16\xa1\x60\xb3\x40\x5f\x1e\x4d\x1a\x71\xcc\x6d\xdf\x60\x05\x6c\x18\x34\xf8\xb6\xa5\x74\x7c\xc5\x6e\x07\x59\xe7\x3b\x6a\x6f\x73\x36\x9e\xde\xfa\xaa\xe2\xb7\x83\xcd\xf0\xfb\x31\x49\xaf\x7c\xf1\x8a\x67\xf1\x7a\x35\xd8\x0c\xbe\x1f\x13\x6a\x49\xe6\xad\x41\x5b\xb8\x3a\x90\xc3\xb5\x38\x7b\x38\xb6\x0a\x4c\x41\xc3\xa7\x8d\x7e\xf8\xa3\x43\xb3\xc0\x08\xc0\x9b\x03\x13\xf3\xf8\x77\x96\xdb\xef\xf7\xac\x3a\x72\xcd\xb1\x9a\x19\x41\x5d\x86\x7f\xf2\xab\x1c\x06\x29\xa8\xf4\x2b\x0d\xe2\xde\x53\xa1\x08\x80\xad\x3b\x8e\xe5\x03\xfb\x63\xbf\xe7\x2e\xea\xf7\x38\xe6\x36\xea\xf7\x5e\xd8\xdd\xac\x65\xe6\x00\xf8\x12\xb7\x82\x25\xb7\xe2\xdb\x6b\x31\x10\xe4\x41\x72\x2d\x06\x13\x42\x07\x83\x6b\xa1\xd8\xa1\x87\xea\x50\x48\x13\x5b\xe2\xc0\x1f\x82\x01\xab\x88\x7f\xc1\xff\x28\x7c\x18\x9b\x1a\x10\x17\x23\xc6\x14\xb7\x59\xad\x4e\x80\xed\x90\xac\x28\x67\x72\xee\xdd\x9b\x9a\xae\x52\x7d\x10\x51\xf3\x28\xd6\x94\x03\xd3\x9c\xf5\x27\xc0\x06\x35\xdf\x93\xec\x45\xb2\xde\x6d\xb7\x82\xd7\xf5\x93\x65\x2e\x6b\x00\xce\x08\xcf\x7e\x7c\x87\xec\x4f\x14\xb1\x52\xcc\x58\x9f\x55\x95\xd5\x64\x6c\x26\x2b\xe9\x91\x62\x27\x4e\x5b\xef\x02\x47\x05\x2e\xad\x6f\xf2\xcf\xbc\xa8\x3b\x08\xfe\x95\xf0\xb4\x15\xe5\xe8\xf3\xb7\xec\x56\x50\x39\xba\xc5\xbf\x08\x31\x77\x23\x80\x25\x2f\x2a\x47\x63\x9f\x74\xbc\x96\xfb\x6e\x6f\x81\x1a\xc2\xa8\x2f\xcb\xc4\x5e\x4a\x23\x0d\x58\x1a\xf5\x6e\xc0\x53\x57\xf2\xfd\x98\x76\x5c\xc7\xb1\x08\x14\xe8\x34\xc2\x34\xbe\x56\xa7\x2f\x5b\x72\x20\x54\xb2\x7c\x10\x9d\x44\x03\xa9\xb5\xa4\x9b\xaf\x9f\x4d\xa3\x67\x5b\xf8\xcb\xac\xd3\xfc\x79\x8d\x8c\x42\x90\x6c\x56\xce\xd5\xd5\x11\x71\xcb\x89\x1d\x6e\xab\x93\x6a\x2e\x3a\xfc\xb3\x14\xd9\xcf\xfc\xb6\x8e\x63\x5d\x4c\x2b\x86\xa2\x8b\xab\x46\x34\xd6\x03\x71\x28\x98\x29\xcd\x0c\x45\x9b\x5d\x21\xf3\x88\xb1\xaa\x3d\x34\x92\x50\x3b\xbe\x90\xe0\x0f\x75\xc7\x8d\x3e\x71\x6d\x51\xbd\x8c\x28\x0e\x82\x4b\xd6\x57\xc9\x74\x99\x7d\x56\xed\xf7\xc9\xb3\x3c\x11\x84\xe6\x6a\xfd\x11\xaa\xce\x8b\x2a\x8e\x1f\x7c\xf8\xdf\xdf\xe8\x0b\x94\x24\x53\x9d\xa4\x3f\x26\x69\xbf\x5f\x79\xc8\x6e\xc2\xc7\xbc\xd9\xaa\x1e\xf5\x2d\x90\x6f\xbf\x8f\x7e\x9a\xdc\x9b\x51\x3f\x6c\xfd\x14\x16\x54\x74\xa1\xe2\x87\xd1\x40\x50\x19\x88\xe5\xf5\xd8\x7e\x34\x52\x7e\x72\x20\xfb\xfd\x13\x54\x0d\x94\x4d\x01\x7e\x7b\x9f\x4f\x1f\xfc\xf3\xaa\x9a\x3d\x1a\xfe\x31\xb7\xfd\x48\xe5\x68\x53\xa9\x4c\x24\x28\x9b\x1c\x48\xda\x59\x6e\x33\x15\x32\x5f\x17\x9a\xef\x72\xf8\x6c\x1d\x97\x7f\xd9\x7e\x72\x30\x92\x00\x74\x7c\x7b\x36\x99\xc4\xf1\xc3\xff\xab\x58\x20\x8d\x30\x0b\xb3\x8b\x55\x02\xe8\x76\x60\x1e\xa8\xd3\xf4\x64\x83\x26\x4c\xfe\x0f\xa0\x6a\x39\x4d\x06\x4d\xaa\x3e\x6b\xf5\x82\x45\x1c\x27\xaa\xc1\x53\x81\x20\x07\xfd\x32\x8e\xff\xfe\x77\x74\x42\x0d\xbe\xf1\xd5\x0d\xcc\xbc\xe4\xb9\x2b\x98\xba\x4d\x7e\xc1\x6d\x1e\xa1\x93\xbf\xf7\x55\xdd\x0f\x3e\x5c\xfa\xce\x84\x45\x55\xd7\xeb\x2c\x17\x1f\x8c\x2b\x30\x19\xdc\x74\x1e\xe7\xd7\x23\xeb\x86\x98\xec\xf7\xf7\x98\x8f\xb7\xfd\x1c\xc2\x40\xab\x6a\xbd\x41\x33\x17\xc8\xfd\x3e\x79\xae\x06\x38\xea\x6a\x4c\xd4\x10\xd1\x7e\xe2\xb7\xbb\x6d\xa4\xf6\x45\x5b\x72\x5b\x5d\x73\x11\x81\x27\xf2\x17\xf7\x95\xf7\xbe\xbb\xbc\xb6\xb4\xd5\x94\x77\x08\xad\xea\x1f\x61\x67\xfe\x4f\xb8\x02\x10\x39\x58\xdf\xe3\xdd\xe9\xc0\x51\x6b\x9c\xfa\xf6\xd0\x9f\x3a\x96\x5d\x3f\x69\x08\x99\xf6\x7b\xab\x20\x63\x67\x17\x36\xa2\x19\xb4\x6b\x35\x82\x7a\x01\x10\xb3\x93\x6d\x8b\x40\xf2\x64\x70\x8f\xe1\x6d\x0d\x40\x38\x2f\x2c\x0f\xa9\x37\x03\x0a\x11\x50\x6c\x0b\xca\x2e\xaa\xba\x9b\x75\xbe\x58\xab\xe3\x56\x7f\x9e\x4d\xc6\x64\xbf\xef\xeb\xa5\x49\x92\x26\x9d\xd6\x45\x22\x55\xf8\xdf\xd1\x40\x0c\xa2\xff\x1d\x7d\x99\x28\x1c\x08\xc8\xc9\x8e\xc3\x39\xc3\xe2\x27\x64\xbf\x6f\xde\xdf\x1d\xb0\x74\x68\xd4\xf1\x56\xdc\x2b\x5b\xfe\x82\xa0\x98\xd0\x00\xde\xb9\xc3\xf7\x4d\xd2\xf2\x41\x9f\x80\x6c\x32\x82\xdf\x11\xe5\x4e\x93\x43\xa7\x60\xfd\x31\x7d\xe1\x23\x64\x6a\x16\x36\x58\x9d\x3a\x6d\x64\x55\xdd\xd5\x24\x1c\x75\xec\xce\x9c\x02\x4d\x80\x52\x19\xfa\x23\xae\x83\x07\x98\xe0\xdc\xee\xca\xa0\x26\x84\x3e\x1c\x13\xd2\x71\x5e\x7b\x4e\x77\x12\x62\xce\x1b\x0f\x76\xef\xfe\x41\x87\x36\x36\x1d\xde\xe0\xa8\x5d\x16\x3b\xd1\x3d\x68\x13\xfa\xfc\xab\x07\x8d\xa0\x53\x64\xe3\x12\xc7\xcb\x76\x59\xe4\xe5\x27\x2e\x8e\xbd\x60\xb4\x27\xb3\x83\xbf\x3b\xc0\x33\x98\x0f\x0b\xa8\x8f\xce\xcc\x93\xf6\x53\x19\x10\x44\x27\x8a\xee\xa3\x28\xde\x48\xa2\xdd\x24\x46\x24\x8e\x1b\x62\x6a\x2f\x92\xaa\x8a\xa1\x1c\x20\x03\x90\x4a\xfb\x1c\xde\x40\x66\x7f\x81\x98\x2d\xe1\x15\x90\x68\x40\xaf\x5f\x04\xbb\xd0\x5a\xac\x4f\xca\x25\xeb\x74\x9b\xa1\xf2\x4c\x97\x3c\xe1\x0e\x74\x62\x10\x00\x23\x0c\x27\x74\xa3\x26\xc3\x57\x3a\x1c\x24\x13\x70\xef\xea\x52\x4d\xb9\xc1\x4c\x4b\x15\xcb\xcf\x47\xb2\xf2\x6e\xf9\x6f\x9c\xce\x36\x60\x3e\xa3\x33\x3d\x4f\x73\x9a\xf7\x5c\x94\xac\x7c\x30\xe8\x5f\x44\x22\xdd\x71\x0a\xcd\x0b\xd0\xc9\x86\x60\x3e\x08\x11\x43\xe9\xfa\x40\x86\x13\x4d\x03\x9d\x93\x23\x0d\xdc\x6c\x92\xab\x4b\xde\x80\x41\xf9\xa3\xc5\x1a\x4c\x09\x47\x8b\x35\x31\xe8\x6a\x1e\x50\x5e\x4b\x2f\x76\x36\xa7\x96\x29\xe5\x45\x03\x05\x3b\x00\xe4\x71\xd1\xb3\x72\xde\x13\xc1\xa3\xf9\x1b\x91\xe4\x16\x82\x9a\x50\xf8\x09\xe2\x4d\x75\x29\x37\x2c\xea\x63\xd5\x1a\xde\x50\xeb\xf1\x00\xe7\x44\x83\x0a\xbb\x6e\xaa\xbf\x53\xa7\x27\xc3\xb1\x93\x8b\xf5\x40\xa8\x6e\xa6\x4e\x5f\x26\xe1\x66\xf8\x50\x2f\x41\xa5\xf4\xaa\x78\x25\x42\x9c\xc0\xbb\x45\x56\x2e\x78\x81\xe8\x4d\x20\x84\xc7\x71\xa7\xb2\x4a\xd5\x20\xfa\xbe\x80\x8d\x5c\x5d\x8e\xf0\x83\x62\xde\xb6\xdb\x05\x5d\x24\xeb\x8f\x0f\x07\x6b\x8f\x05\x56\x0f\x1a\xa8\xc4\x1d\x26\x46\xed\x4a\x9a\x63\x57\x55\x0e\xa0\x8d\x14\x6c\xbc\x4d\xb0\xac\x30\x50\x10\x78\xd2\x4c\x3c\x13\x2d\x2d\x3c\x1f\xf7\xf1\xde\x02\x31\xd8\x40\x96\xab\x9b\x89\xa6\x4f\xe0\xa5\x17\x8d\x3a\x22\x78\x66\x55\x43\xb3\x01\x5b\x46\x80\x22\x68\xa6\x00\xfc\x1f\x42\x4b\xdb\x9d\xa9\x3a\xc8\x52\x7c\xa9\x28\xed\x20\x95\x76\x90\xca\x60\x90\x4a\xdd\x06\xef\x44\x7b\xee\xdf\x89\x01\x19\x01\xdd\x45\x5b\xd4\x23\xb3\x4d\x7e\x46\x2f\x61\xf4\xb9\x20\x3a\x47\x4f\xe7\xe8\xba\x7a\xea\x5c\x07\xe0\x3c\x90\x44\x05\x5d\x41\xae\x63\x13\xc7\x2a\xae\xdd\x53\x82\xe2\xd9\x57\xf6\x30\xb7\xda\xb1\x4f\x50\x6a\xd5\xe4\x10\x30\xd2\xd8\x64\xf0\x51\x2e\xb9\x30\xda\x16\x56\x69\xab\xe9\x87\x60\x04\xfe\x81\x96\x17\xdb\xac\xac\x5b\x58\xd6\x5e\x9c\x7b\x3a\x90\x8e\x0f\xf2\xe2\x67\x72\x8e\x3f\x45\xaf\x2f\xec\x69\xbe\xdf\x97\x71\xac\xdf\xbb\x4a\x2a\x54\x8f\xd0\xbe\xcd\x59\x06\x0a\x78\xe4\xe9\x97\x9d\xa6\x22\x39\x9b\xe1\xbc\x4a\x78\x75\x3a\xcc\x69\xc5\xc6\xa7\xd5\x59\xe9\x9a\xe3\x8c\x78\x33\x56\xce\xaa\x39\xbc\xe5\x22\x0a\x25\xa1\xf8\xe0\x9a\x77\x3c\xb0\xe6\xfa\x35\xb5\xaf\x08\x62\xa1\xd6\x4a\x6d\xc8\x25\xb8\x54\xd1\xbe\x8a\xc0\x2a\xfd\x7c\x4c\xcc\x7b\xea\x6c\x47\x27\x73\xba\x62\x7e\x0a\x34\x68\x5f\x33\x57\x90\xac\xc8\x69\xb2\x52\x25\xf5\xb3\x51\x5e\x2e\x8a\x5d\x9d\x5f\x73\x0d\xc6\xb0\x22\x71\xbc\xc0\xbe\x63\xdf\x0a\xbb\x66\xb1\xac\x03\xa1\xc9\xfa\xbc\x91\xf9\x17\x34\x67\xe8\xaf\x9b\xb9\x6b\x58\xe7\x55\xaa\xaa\x3e\x10\x9a\xc3\x73\xdc\xc2\xd8\x81\xe6\x74\x41\xe8\x6e\xc0\x9c\x6f\xd2\x83\x13\x87\xd8\x33\x02\xcf\x03\x50\x8b\xef\x78\xf1\x1c\x4e\x4e\xf3\x73\x36\x3e\x1d\x0e\x73\xf2\x42\xad\x46\xbd\xd5\x66\xf9\xdc\xed\x36\xf5\xc3\x6c\xb8\x7c\x3a\x8b\xa2\xb9\x71\x54\xae\xd5\x80\x5e\xe8\x7b\xa2\xdb\x76\x2f\xdc\x79\x35\xe9\x87\x68\x98\xfb\x7d\x14\x99\x20\x70\x72\x83\x0a\x6b\x7e\x6b\xcd\x2a\xd4\xe7\x46\xef\x4d\xae\xe5\x2f\x6a\x2b\x4d\x3d\xef\x82\xf9\x32\x7d\x95\xbd\x22\xf4\x99\x11\xd0\x3c\x42\xee\xc1\xc8\xad\x66\xf3\xde\x65\x1e\x28\x99\x00\xa1\xb7\xef\xb4\x25\xe5\x46\x4d\x45\xad\xdf\xbf\x14\x59\xd2\xbf\xd5\x81\x52\x1a\xf8\x3b\x93\xc6\xd6\x04\xac\xbf\xa9\xec\xe0\xf7\xfc\xa9\x4f\x70\x80\xce\xec\xf7\xfd\xa3\x64\x24\x30\x60\x75\x75\x57\x78\xf0\xd1\x8c\x45\xbb\x72\x59\xa9\xcb\xfd\x34\x1f\x2d\xab\x92\xa7\xf9\x48\x85\x94\x9c\xd6\x41\x1c\x06\xa6\x98\x48\xef\x8d\xcc\xf9\xee\x2a\x59\x36\xdb\xcd\xa9\x98\xf6\x4b\x7d\x9a\xee\xf7\xe5\x08\xfd\x97\x24\xe8\xa3\x26\x35\x31\xe4\x74\x37\x18\x90\x53\x34\x72\x32\x65\x60\x4b\x73\x50\x7a\xd1\x9a\x3c\x79\x87\x66\xcf\xa9\xaa\x09\x7d\x4e\x11\x5d\x1c\x9a\x30\xfd\x99\x27\x25\xad\xe1\x70\xe9\x37\x2a\x26\x9e\xbf\xb1\x93\xf7\xe0\xd1\x82\xde\x01\x4b\xfa\x0b\x5f\x56\xa0\xd2\xd6\xab\x58\x79\xc0\xcd\x3d\x9b\xf7\xfe\xcc\x93\x4a\x95\xa5\xd1\x09\xef\xb4\x99\x51\x5a\xd0\x2b\x5e\x6a\x17\xad\x69\x3e\x72\x3f\x60\xef\xb8\x9f\xac\xf4\x7e\xec\xf7\x83\x41\x3e\xda\x64\x9f\x7f\xb2\x41\x1a\x12\xf9\x3f\x20\xeb\x40\xdc\x76\xac\x34\x96\x4f\x6e\x97\xed\x70\x97\xed\x8c\x9a\xaf\x4d\xa2\x69\xd5\xca\x1c\x9f\x92\x2e\xe2\xb8\x0f\x27\xc3\x4a\xb1\xb1\xfe\xe8\x24\x66\x36\xd8\x98\xf4\x0a\xec\xfd\x4b\x58\xdf\x7a\xc5\xaf\xd9\x6e\x0a\x9b\x66\x45\xd2\x4d\x95\x64\xa4\xf7\x0c\x0b\x5a\xd3\xb7\x25\xa6\xa3\xfd\x1d\xba\xb3\xd5\x4e\x6d\x1b\xaa\x82\xda\x41\x88\xdd\xfc\xbf\x88\x64\x45\x0e\x46\x81\xb5\x63\x3f\xa1\x7f\x13\xbd\x9f\x96\xf7\xec\xa7\x15\xa1\xcb\x23\xfb\x69\x85\xfb\xc9\x34\x51\xed\x27\x6f\x47\xfd\xe5\x68\xc9\xd8\xbc\x28\xa2\x81\x1f\x93\xc8\xd8\x31\xad\x79\x7b\x55\x25\x3e\xc3\xd8\xe5\xe6\xce\xe9\x2a\x72\xdf\xf9\xc8\xc0\x39\xa4\x34\x2c\x2c\x77\xce\x4a\x20\x56\x3b\x26\x01\xc1\x6b\x93\x9d\x04\xc2\x44\xc0\xe1\x39\xd7\x0e\xb6\xb5\x71\x26\xfc\x1d\x4a\x40\x23\xf6\x6c\x24\x9d\xef\x5e\x80\x24\xb1\xe6\x86\xe5\x99\x01\xa3\x03\x2e\x98\x0b\x2c\xaf\x34\x97\x9c\xc8\x27\x35\xcf\x44\xe0\x63\x00\x27\xf5\x1e\xd6\xe6\x99\x61\x6d\x28\xaa\x0b\x5b\x46\xfe\x4c\xb7\x93\xe0\x50\x87\x97\x97\x63\xf7\x03\xcf\xc2\x27\xf1\xc2\xcf\x7d\x4d\x5c\xa3\x03\xe1\xe0\xf8\x4c\x4d\x56\x51\xac\x51\x97\x1d\x31\xaf\xa6\x1e\x34\x2b\x27\x54\x6a\x9d\x15\xbc\x6d\x21\x78\x36\xe8\xac\x80\xa2\xa9\x6e\xe4\x20\xa7\xf6\x26\x02\x47\xd6\x6c\x63\xb0\x8e\xc9\xbc\xc9\x4e\x1f\x2c\xbe\x88\x6b\x74\xcf\x16\x75\x0e\xd8\x6a\xba\x52\xc7\xa3\x2f\x79\x52\x01\x94\x40\x03\x69\xdb\xd4\x67\xcf\xb6\x76\x75\x84\x4a\xad\xec\xb0\x04\xdf\x89\xc1\x21\x4d\x11\x59\x41\x9f\x7a\xb8\xa8\x5a\x16\x4d\xd7\x0e\x6a\xdc\xb7\x89\x06\x45\x3b\x28\x2a\x83\x0b\x1a\xad\x59\x7f\x42\x77\xda\xf4\xfc\x38\x0a\xfb\x8e\xbd\xce\x93\xa7\x65\x82\xc0\xe1\xc6\x8f\x28\x2d\x91\xc3\xdc\x69\x93\xf2\x0e\xe6\x92\xb1\xdc\xa0\xba\x59\x64\x6f\x06\x36\x0e\x07\x42\x7a\x65\xa8\x8e\xe3\xf7\x12\x8c\x8a\x64\x95\x70\xd2\x5b\xab\x4a\xd5\x7a\x7c\x0b\x12\xf8\xa3\x8d\xb4\xad\xa9\x3a\xee\xaf\xb4\x2d\x48\x7d\x0c\xc8\x22\xe7\xb6\x81\x2f\xcc\x31\x68\x43\x18\xa7\x8d\x58\x26\x5d\x88\x07\x92\x50\x83\x0c\x03\xc4\x41\x06\xd5\x24\x04\xb3\x04\x80\xa4\x1e\xdc\x4d\x4a\x99\x73\xe1\xde\x4c\x5d\x98\x19\x58\x54\xf4\xf8\xdb\x58\x23\x40\x14\x8d\xe5\x9f\xe0\x60\x0f\x2b\x73\x01\xef\xc9\xd1\x6a\x57\x14\xd3\x7f\x80\x75\x1b\x06\xf7\xb5\x3a\xe3\x7e\xdf\x66\xac\x56\x16\x36\x9f\x40\x1e\x5d\xaf\x9b\xc4\x82\xa4\x60\x78\xaf\xc3\x23\xed\xad\xd4\x3f\xef\x0c\xc0\x0c\xa1\xab\x20\x04\x31\x71\x56\xfb\xfd\xc2\x18\x92\xe0\xb6\x00\x06\x35\x0b\xae\xac\x7a\x81\xa7\x76\xa9\xb7\xb6\x41\x6f\x65\x1e\x6c\x16\xf6\x72\xb8\x26\xea\xe4\xb3\x83\xec\xb0\x6d\x40\xae\xd4\x0c\xf4\x6e\x19\x6b\x72\xb8\x4f\xda\x07\x0a\xc7\x48\x00\x25\x2d\x49\xba\xce\xf5\x2b\x13\xfd\x09\x2e\xb7\x34\xab\x7c\xa2\xfa\x83\xf0\x2d\x93\x14\xdb\x0c\x97\x1a\x41\xe8\x96\xc3\x3d\xe7\x6c\x6c\x35\xf7\x7a\x25\x13\x54\xb0\xea\xd0\xf5\xd8\x0a\x9a\x20\x9e\xfe\x9c\xda\xd1\xcf\x1d\x8b\x2d\x80\xb5\xd6\xe3\x66\x06\x28\x3f\x78\x62\x83\x5f\xc5\xfd\x36\x52\xaf\x42\x5f\x08\x80\xef\x2f\x0c\xba\x48\x6d\xd0\x95\x8d\x86\x80\x19\x42\xfb\xc2\x3d\x6d\x85\xa4\x5d\xfa\xe4\x74\xc7\x96\xa0\x2d\x57\xb0\xbb\x43\x2f\x1f\x8a\xf3\x1d\xc0\x57\x89\xc1\xce\x2c\x1c\x5f\x39\x60\x50\xc8\x04\xf4\x51\xc5\x59\x46\xd7\x2c\x3f\x5f\x0c\x01\xd9\x5e\x9c\xd5\xa4\xf0\x54\xa4\x56\xd3\x71\x2a\xec\x09\x92\x9f\xd7\xe6\xfa\xb6\xf4\xac\x3d\x68\xb2\x9e\x2e\xd2\x9c\x0c\x77\xa4\xb7\xec\x33\xb5\x07\xfd\x32\x96\x28\xa4\xdb\xde\xdf\x55\x70\x97\xd5\x0e\x6a\x77\x16\xb4\x10\x36\x6c\xad\x7a\xab\x0e\x22\x43\x8c\x56\xf9\x67\xbe\xfc\x09\x8e\xdf\x69\x65\x75\x77\x3d\x58\xde\x74\x4c\xe8\x35\x2b\x87\xf2\x7c\x63\x7d\xe7\x02\xcf\x2d\x07\x1b\x42\xe5\xd9\x64\x3c\x2d\x7c\x95\xa7\x71\x2a\xcf\xb6\x61\x90\xa7\x7d\x21\x87\xc9\xf5\x74\x9c\x4e\xc6\x84\xa4\xe5\xf9\x66\xb0\x1d\x7e\xe7\xf5\x1b\x61\xf4\x06\x26\xc9\x70\x43\xa8\x67\x35\xfc\xce\x5e\x3e\xac\xd6\x92\xd6\x26\xda\xef\x7f\x13\x09\x37\xc8\x70\xd2\xdb\x68\x5e\xb9\xce\x0b\x64\x7b\xfc\x1a\xda\x67\xed\x34\x64\x20\x4d\xf1\xa2\x55\xbc\x9a\xae\xce\xd2\x71\x21\x06\xba\x2a\x69\x2b\x05\x19\xf8\x8e\x5d\xfe\x05\xf2\x72\xe8\x8e\xef\xc8\x1f\x75\x02\x13\x42\x05\x93\xb4\x64\xf2\x3e\xcf\x23\x72\xb4\x58\x4f\x9d\xbd\x8a\xfa\x39\x9c\x90\x54\xe5\x0b\x43\xc1\x2e\xac\xd9\x9e\x37\x55\xcd\x82\x4d\x8c\x58\x76\xa9\xab\x10\x1f\x41\x50\x7f\xed\x25\x44\x52\x83\x6c\x97\xf6\xc7\x1e\xb5\xf9\x4d\xb4\xe1\xd0\xbd\x6a\x10\x10\xfd\xae\xab\x01\xd6\xd4\x5e\x30\x74\xc0\xa2\x65\x15\xa5\xf9\xa9\x18\x8a\xbc\x01\x75\x88\x4e\x92\x68\xd9\x84\x3a\x04\x07\x49\xe0\x48\x70\x4b\x86\x52\x63\xf3\xf9\x66\x54\xa0\x7b\x4e\x35\x02\x7f\x60\x60\xa5\x31\x0f\x4b\x8b\x79\x28\x3b\xa0\xfd\xac\x51\x28\xec\xb1\xdc\x9b\x59\x6f\x2c\xde\x77\x20\x7e\xa0\x1d\xa8\xaf\x11\x17\x65\xcb\x65\x44\x68\x54\x6f\x32\xa1\x7d\xd2\x25\xd5\x68\x53\x2d\x39\xc0\xda\x94\x72\x9a\xb3\x1a\xb1\xc9\x52\xc1\xa2\xad\xe0\xd7\x91\x33\x0a\x68\x5a\xae\xd5\xec\x46\x5d\x26\x25\xa1\x3b\xb6\xa8\x12\x14\x6f\xe2\x6d\x24\x23\xbd\x1a\xef\xec\x8f\x56\x92\xab\x6a\xfc\x9f\x5a\x07\xeb\x5a\x3b\xe7\xc6\x8c\xa3\x0d\xa8\xc3\x3e\xf8\xe7\x87\xfa\xdb\x07\x64\x36\x46\x98\x98\xfd\xfe\xc1\x87\x0b\xfd\x24\x8c\xe9\x88\x7e\xb9\xf7\xba\x90\x14\x2c\xe8\x45\x92\x53\x5d\x26\xda\x33\x2d\x2c\x8f\x69\x8a\x60\xac\xaa\xf6\xfb\xe2\x1c\x9e\x57\x40\xd8\x60\xe4\x6c\x3d\xd3\xef\xc3\x41\x7b\x57\x1f\x53\xc1\xa2\xb2\x92\x51\x0f\x23\x18\x13\xd3\x82\xc9\xf3\x0a\xb9\xe8\x29\xda\xe7\x55\x54\x0e\x27\x24\x18\x82\x74\x9c\xc2\x80\x63\x86\xdd\xc0\x8d\x20\x36\xf3\xd7\x32\x97\x69\x54\xef\x2e\xa5\xc8\xc0\x5c\x10\x92\x0d\xbb\x93\x95\x00\x49\xe5\x0e\x49\x01\x4e\xc5\x77\x03\xa1\x0e\x17\x8f\x02\x16\xc6\x1c\x2b\x8a\xe8\x9a\x69\xff\xa9\x61\x81\xef\x72\xb9\x7e\x9b\x5d\x3a\xb1\xe6\xd2\xb7\x22\x29\x1e\x64\xe4\x74\x79\x3a\x1c\x2e\xc9\x7a\xc0\x32\xba\x1a\xb0\xe8\x03\xfa\x32\x5c\x9f\x15\x71\x9c\xac\x06\x6c\x5b\x25\xc5\x70\x4d\x08\x5d\xf5\xd9\xc2\x70\xb0\x3f\x88\xa4\xa2\x2b\xb0\x5b\xd3\xce\xb8\x25\x75\x23\xef\xbc\x2e\xb7\x56\x02\xed\x8f\xe1\x7e\xb7\x64\xe3\xd3\xe5\x59\xd5\xf1\xa8\xb1\x34\x8f\x1a\x5b\xe6\x47\xcf\x96\xe8\xdb\x33\xf0\x8c\x19\xc7\x5b\x73\xdd\xb4\x8a\xdd\xe4\xee\x9d\xba\x76\x2c\xa9\xbe\xc1\xae\x59\xa3\x75\x6b\x42\x8c\x1f\x45\x0f\xf0\xaf\xa5\xb9\x24\xd5\x4d\xc1\x28\xd8\x34\x67\x44\x4e\x2b\x00\xcb\xa0\xcf\xf5\x63\x40\x0a\xbe\x7a\x2c\xbc\x59\x8e\xf2\xf8\xa4\x4c\x2a\x9a\x13\x2b\x47\xd0\xb7\xd4\x1c\xdc\x16\x79\x94\xfa\xe7\xd6\xbb\x8f\x7d\x79\x35\x57\xf4\x92\xcd\xe6\x14\x51\x5c\x2d\x48\x10\x80\xb9\x9a\x3c\x15\x93\x89\x98\xe5\x73\x72\xea\x0c\x3b\xb6\x3c\xa9\xf0\x46\xb1\xa9\x92\x92\xe8\x07\xaf\x53\x0b\xf9\x86\x02\x28\xfd\x22\x96\x61\xca\xca\xbe\x98\xdd\xe1\x27\xc3\x08\x33\x66\x5a\xd6\x57\x91\xc3\x4f\x0d\x63\x3b\x27\x39\xf7\xa4\xa6\xf2\x9c\x8d\x4f\xe5\x70\x48\x7e\x10\x9a\xe7\x8e\x22\x5a\xce\xa4\x16\x9b\xc2\x97\xac\x68\x34\x58\xf2\x82\x4b\xc5\x3d\xc3\xb1\xe5\xf3\x77\xdf\x74\xf0\x77\xfa\xe8\x01\xf4\x93\x35\xad\x99\xa0\x88\x5e\x42\xab\xc0\x9b\x91\xd1\xf7\xa5\x35\x4b\xf2\xe9\x2e\x4b\x8b\x8c\xa8\xcb\x1a\x15\xc6\x3b\x13\xce\x57\x8d\xf7\x6f\xe0\x60\xab\x81\x20\xe6\xfa\xbd\xdf\x97\xe7\x8c\x5b\x98\xa4\x3a\xff\x8b\xef\xf7\x49\xc5\x4a\xda\xd7\x70\x29\xb4\x24\xc4\xd3\x12\xcc\x58\x3e\x4d\xc4\xd9\x78\x2a\xb2\x54\xaa\xba\x48\xaa\x7e\xed\xfc\xfb\x47\x3a\x46\x72\x93\xb1\xba\x67\x11\x67\x14\x9d\x5b\xac\x33\x01\x96\xa4\x85\xef\x1a\x6f\x51\x15\xbb\x4d\xa9\xc3\x01\x96\xc0\xc4\xdc\x54\x62\xa9\x7d\x0a\x5e\x89\x6a\xb7\x85\x34\x66\x16\x16\xb8\xdf\x56\xcc\xc5\xd1\x35\xf3\x04\x5a\x57\x5c\x3e\xe3\xc5\x96\x8b\x44\x52\x28\x0a\x3c\x4b\x46\x84\xaa\xfb\xdc\x69\x5f\xf5\x82\xec\xf7\x45\xd2\x5f\x92\x53\x40\x22\xd7\xbb\x72\x17\xb8\x43\xca\xc8\x7e\x1f\x7d\x28\x23\xba\x61\xaf\xab\x64\x4b\xd7\x64\x1a\xdd\x44\xe9\x2a\x8e\x55\x28\x63\xdb\x69\x54\x46\x69\x7f\xa5\x88\x7b\xad\x89\xfb\x96\xe0\xf6\x88\xb6\x40\x6a\x54\xe4\x72\xbf\xdf\xec\xf7\xc9\x86\x45\xaa\x05\x8b\x38\x5e\xf4\xd9\x86\xdc\x19\x66\x7d\x42\x8b\xc4\x6e\xdb\x7c\x95\x6c\xe2\x38\x59\xb0\x0d\xa1\xe2\x7c\x1c\xc7\x7d\x68\xa4\x46\xde\x05\xed\x77\xf6\x07\x47\xef\x55\x15\xcd\x08\x95\xb4\xf6\xb4\xce\x4e\xc0\x3f\xf0\x35\xd9\xef\x93\xeb\xd1\x3a\x97\x17\xc6\x63\xd9\xb5\x87\x53\x79\xec\x88\x85\x15\x57\x68\x28\x62\xeb\xd4\xd1\x78\x05\xf3\xd5\x80\x3b\x1d\x6f\x69\x70\xec\xff\x1c\x11\xb7\xa7\xdd\x2a\x0e\xc4\xb7\x49\x3d\x84\x95\x36\x19\x7d\x9f\x8e\xbe\x27\xdf\x06\xd7\x1c\xb4\xa7\xb5\xae\x2d\xf1\x26\x72\x3e\x9e\x5a\x6c\xde\xef\x52\x04\xc3\xfd\xce\x79\xcd\x42\x6b\xa7\x3f\xb5\x67\x33\xed\xbb\xcc\xf8\x74\xc3\xd1\xc5\x1b\xca\x78\x9a\x9f\xb1\x71\x9a\x9f\xb3\xca\x60\xbc\xdf\xed\xbc\xa1\x34\xf3\x34\x60\xdf\x7f\x6b\xf1\xac\x76\x87\x0b\xdf\xbf\xf2\xa2\x2a\x6b\x29\x76\x0b\x59\x89\xf4\x42\x7b\xd6\xf1\x68\x49\x03\xed\x46\xbb\x4b\xef\xb4\x34\xaa\xb9\x7c\x0d\x67\x5e\xc3\x9b\xf4\xb5\x73\xed\xad\xcf\x44\x5a\x32\x31\xe3\xf3\x9e\xfa\x0f\x4e\x8f\x48\x31\x12\x51\x9f\xa9\x4d\x0d\x81\x92\xfe\x21\x46\xeb\xac\x7e\x7d\x53\xbe\x11\xd5\x96\x0b\x79\x0b\xe6\x61\xda\x41\x3c\xfd\x43\xa5\x42\x07\xf1\x70\x35\x26\x07\x7a\xd5\x51\x7d\xe8\xcb\x59\xd7\x3e\xe3\x73\x48\xfd\xb8\x5a\x1c\xf3\xfa\xbc\xac\x16\x07\x9a\x2d\x97\x3f\x83\xaa\x67\xd3\x3b\x36\xc0\x85\x06\x2a\xa7\x72\x1a\x29\x62\x1c\xa5\xd1\xae\x04\x45\x92\x68\x9e\x6c\x4a\x34\x42\x45\x91\x42\xab\x24\x9f\x4c\xb7\x4b\x6c\x3a\xae\x19\x0c\x04\x78\x59\x9d\x89\x39\x53\xa3\x04\xde\x82\xca\x6c\xc3\x19\xe3\x9e\xd5\x18\xbc\xb6\x25\x82\x4e\x08\xed\x8f\xa1\x07\xaf\xaf\xb9\x28\xb2\xdb\xf4\x1b\x99\x74\xcd\x0a\x1f\xc9\xea\x13\x2f\xa7\x3c\xbd\x50\x74\xe8\x65\xb5\xd4\x7e\xb2\xcd\x4c\xa1\x96\x98\x40\xaf\x02\x17\xaa\x89\x44\xae\x45\x75\x03\x72\xe9\x27\x42\x54\x22\x89\x74\x1d\xf5\xc9\x26\xbb\x3d\x29\x2b\x79\x72\xc9\x4f\xa0\x37\xab\x5d\x31\x8a\x48\xcf\xeb\x5e\xa5\x93\xea\x87\x10\x35\xed\xa9\xa0\xea\xcf\xc5\x96\x2f\x52\x4e\xab\x6d\xf6\xaf\x1d\x4f\x25\xfa\x31\x51\xdf\x07\x03\xd0\x0a\x05\xa8\xa4\x3f\xf1\x72\x30\xa0\xff\x30\xb0\xb6\x44\x0f\x71\x67\x57\x8f\x0c\xb3\x69\x47\xd7\x38\x1b\x7f\xe6\x6a\x88\x4d\xcb\xe0\x84\x82\x91\x6f\x49\x4e\x78\x1c\x97\xf7\x4f\x45\x67\xf3\xe1\xf1\xc8\xf6\xe1\x40\x28\xf2\x89\xe0\x12\xab\x31\x59\xea\x7a\x6c\xaa\xed\x7b\x02\x1b\xc3\x0d\xf5\x43\x21\x8e\xbe\x49\x4f\xfd\x79\x1c\x01\xeb\xfe\x1c\xef\x1b\x9a\x8f\x4f\x91\xb5\x4e\xe5\x14\x38\x66\x8f\x2b\x26\xf4\x29\xb7\xfa\x8d\x60\x11\xfb\x5e\x68\xad\x46\x68\x8d\x6d\xad\xd5\x38\xfd\xc2\xa0\x37\x78\x28\xc1\x40\x57\xe7\x7e\x7c\xbe\x55\x92\x5b\xd7\xf5\xb9\xe3\x36\xcf\x15\x13\x6e\x9a\xe3\x85\x6b\xfb\x5b\xc1\xfc\xb0\x92\x85\xf5\xdb\x07\x90\x38\xfe\x17\x16\xa1\x5f\x05\x8c\xe3\x46\x03\xe7\x90\xb1\x1c\x41\x1b\x6a\xcf\xbf\x8b\x91\x8a\xf6\x3c\x99\x29\x02\x15\x3b\x24\x0f\x2d\x11\x4d\x32\x75\x61\x1f\xa7\x13\x42\x06\x13\xcf\xe4\xba\x3e\xdd\x9d\x09\x78\xfa\x37\x5d\xd8\x51\x6e\x85\xab\xed\xa1\xea\x8d\x19\x40\x74\x02\x76\xa0\x45\x7f\x33\x6c\x65\x31\x2b\xe7\xba\xc5\xa3\xc5\x5a\x9d\xc0\xef\xbc\x79\x2b\x0d\xe7\x5d\x51\x48\x08\x4e\xf7\x51\x78\x78\x20\x8a\x00\xbe\x55\x5b\xff\x91\x4c\xbb\xf4\xd8\x4e\x7e\x2f\xed\x8c\x23\x71\x55\x1d\x84\x1c\xf5\xfd\x19\x96\x3c\xe1\x44\x6b\x7c\xda\x5a\xde\xde\x6e\x79\x50\x13\xb9\xe3\x60\xc7\xeb\x16\x19\x8a\x46\xa8\x60\x3c\xc7\x82\x6e\x72\x2f\xda\x78\xf1\x2d\xd9\x98\xe6\x2c\x11\x0e\x56\xf2\xc1\x43\xe0\x09\xd0\x55\xac\x1a\x2e\x22\x99\x98\x3d\x9c\x23\x7b\xe6\x9f\xa9\x19\x2b\x07\xf9\xf9\x39\xb8\x25\x4d\xb2\xa9\x98\x3d\xfc\x36\x1b\x4e\xe6\xe9\x98\x9c\xb3\x8a\xe4\x2c\xb3\x66\xbb\xfd\x04\x22\x07\x93\xf9\x59\x45\xc8\x1d\x14\xf8\x6d\x36\x78\x38\xd7\x27\x6a\xc9\xb2\xc1\x04\x9f\x62\x6a\xb5\xd3\x10\xa0\xf6\xf5\x0a\x80\x06\x35\x6d\x39\x89\x48\x3a\x9c\x18\x5e\xa7\x3e\x1b\x4f\x65\x3a\x66\xac\x46\x96\x4b\x5a\xa4\x94\x7a\x38\xc1\x81\x52\xc4\xb7\x31\x46\x8d\x2d\xa4\xa8\x87\x33\x06\x01\xae\x45\x65\x9a\x5e\xb8\xef\x44\xe3\x65\xbb\xe9\x4d\x38\x41\xe2\x43\x20\x7f\x2a\xa1\x32\xe4\x38\xbb\x67\xd2\x14\x80\x69\xd0\x2d\xf1\x6c\x3c\xf7\xf2\x35\x97\x80\xd1\x91\x03\x56\x25\x2b\x9b\x27\xb7\xb5\x30\x39\x11\x5a\xcf\x21\x53\xf7\x0d\x9a\x33\x53\x15\xf6\x5d\xeb\x24\xb7\x48\x6c\x3e\x93\x73\x52\xce\xd4\x9f\x79\x1c\x1b\x95\x3a\xfc\xed\xd8\x70\x48\xe5\x6e\x61\xe3\xd3\xea\x4c\x05\x19\x02\x53\x19\x02\x93\x31\xcc\x3a\xab\xe6\xf3\x5e\x66\xcb\xcb\x0c\x96\xf2\x68\x0d\x7d\x44\x5c\xcb\x72\xe6\xff\x9e\x4f\x5d\xe5\x7e\x30\x49\x55\x80\x3a\x04\x82\xf6\x61\x08\x32\x76\x46\x57\xe8\xe3\x55\x51\x5d\x66\x45\xab\x55\x35\xb3\x71\xb3\x6a\xde\xab\x47\x5b\xc1\x97\x49\x0e\xb3\x49\xe2\x58\xa3\xf1\x0a\x5a\x8f\xae\xb3\x82\xd8\x5a\xf0\xa7\xc3\x2a\x55\x73\x74\x61\xaf\xfa\xc7\x39\xb1\x65\xb5\xb0\x4b\x53\xf3\x54\x09\x67\xcf\x41\x11\x12\xa5\x9e\x53\xa1\xaf\x5b\x42\xfb\xea\x4d\xb9\x22\x66\x40\x0e\x50\x5c\xf8\x63\x55\x89\x65\xf7\x52\x68\x51\x5d\x80\x2b\x33\x35\xbe\xd4\x35\xba\x9a\x14\xc9\x4e\xa3\xea\xf2\x4f\xc4\x70\x32\x47\xeb\x34\x24\x11\x29\x34\x0a\xe8\x5d\x2a\x90\x3e\xcb\xfd\x1e\xb9\x7f\xd5\x2a\x50\x26\xef\x68\x93\xae\xf6\x47\x5d\x6d\x58\x68\x58\x04\x64\x57\x17\xb0\xee\x22\xfe\x74\x63\xf5\x56\x5a\x02\x69\x0b\x40\xc4\x4c\xca\x41\x2e\x79\x00\xdc\xda\x47\xc6\x07\x67\x67\x79\xae\x18\x74\xb9\x46\xc1\x81\xc5\xf8\xe0\x95\x09\x92\xce\x47\x3e\x2d\x1c\x04\x5c\xb8\xe7\xad\xf9\x40\xf1\x16\xf0\x08\xd9\x88\x8e\x89\x01\x7f\xdd\xb0\xc7\x9a\x92\x14\x6e\x4f\x5f\x33\x75\x38\xfb\x6e\x26\xd1\xa5\x33\x3f\x0b\x13\x4c\x79\x23\x47\xca\xcf\xc1\x32\x8c\xe5\xe8\x6a\x9c\x0a\x16\x50\x72\xbd\xcd\x04\xb3\xa4\xec\x93\x1e\x02\x81\x83\x30\x3e\x32\x08\x83\xa4\x9c\xda\xaa\xb0\xa3\xc3\x4f\x79\x22\x48\xaa\x4e\x9a\x25\x5f\x65\xbb\x42\x3a\x7c\xdc\x0e\xde\xfe\x95\x4c\xfc\xa1\x73\xb9\x2c\xce\x6e\x47\xa6\xe7\xad\x4c\x35\x97\xf8\xba\x82\xee\x3b\xba\xd8\x35\x9d\xf7\x27\xe1\x75\xdc\xaa\x44\xb4\x1e\x80\x4b\xc6\xf5\x33\x8d\x76\x08\x02\x2f\x88\x41\x08\xbb\x3b\x38\x37\xe7\x33\x39\x67\x82\xf6\x45\x1c\x3f\xaa\x92\x12\xad\x18\xc3\xd4\x1a\x27\x7c\x7c\x50\xbc\x1a\xa8\x26\x61\x8b\x9b\x7c\xda\x75\x03\xaf\x55\xb1\x0d\x4c\x6f\xfc\x9e\xc0\x57\x6c\x9b\x5e\xf5\x2b\xac\x47\x91\xa1\x20\x60\xa6\x08\x60\xd2\x0e\xd4\x96\x81\x22\x91\xbe\x6a\x08\x7d\x54\x35\xd3\x92\x76\x76\x0d\xc5\x4e\x07\x83\x12\xba\xa3\x76\xd5\xf3\x72\x55\xa5\x8d\x17\xfe\xae\x25\xad\xce\xa3\x90\x97\x6d\x21\xff\x4a\xc6\x35\x3e\x6d\x63\x9d\x06\x49\x0f\x86\x35\x40\x9a\x95\x48\xf6\x1a\x80\x5f\x83\x34\xc6\xbd\xbb\xda\x7c\x92\xa2\x19\x5f\xca\xf1\xc9\x94\x6b\xcc\x36\xbf\x67\x69\x63\xda\x20\xe5\x8f\x45\x56\xd7\x3a\x39\x7c\xd3\xcb\x2b\x13\xa6\xbf\xe8\x8d\xc8\xb6\x26\xcc\x7e\xd3\x9b\x7c\x79\xc5\x25\x84\xe1\xd7\x01\x8e\x83\xdf\x72\x7e\xb3\xad\x44\xc7\x86\xd0\x7a\x22\x4d\x6a\xf2\xd4\xa8\x76\x37\x23\xde\x56\x07\xb8\x54\xbe\x83\xe2\x8f\x23\x63\xd2\x8c\x02\xfe\x25\x5d\xd0\x15\xf3\x4b\xa1\x6b\x96\x70\xf6\xb2\x93\x0e\x13\x62\x9e\x66\x96\x8c\x5b\xd1\x8e\xd4\xae\x01\x8d\x37\x21\x16\x19\x6f\x42\xe0\xc2\xf3\x7e\xac\x69\x8a\x90\xd0\x9d\x62\x8b\x9a\xcb\x5f\x4b\xbe\xcc\x65\x76\x59\x70\xf0\x81\xae\xfd\x2c\xf9\xce\x80\x24\xa1\x11\x18\x85\x31\x56\x92\x35\xdc\x96\xb7\x4e\xec\x97\x5d\x56\xd7\x5c\xcb\xfd\x4a\xae\x45\x86\x5a\x38\x67\x6f\x0d\xab\x6e\xc9\x53\x83\x90\x39\xd0\x40\xc8\x82\x2d\x09\xe0\x0d\x3c\xf0\x11\xdf\x02\xff\x34\x68\x06\x37\x52\xa5\xd0\xcd\xf6\xf9\x16\x44\xdf\xb2\xda\x9e\x87\x11\x53\xdd\xa7\x61\x18\x9c\x1e\x29\xe7\x8c\x6d\xe3\x38\x51\x79\xf4\xdb\x19\x5d\xda\x14\x88\xc9\xb0\x89\xe3\x64\xc9\x36\xc3\x20\x94\x1c\xcc\x2c\xca\x6a\xcb\x9c\xa7\x56\x08\x2a\x00\x53\x43\xff\x80\xd7\x3a\x16\x45\x34\x82\xaf\x88\xb1\x7c\x9a\x2c\x59\xc7\x80\x84\x35\xd0\x46\x01\xe3\xed\xe7\x88\xa4\x49\xa4\x0a\x87\x42\x96\x6c\x9c\x46\x1b\xc0\x3e\x8b\xd0\x02\x60\xc9\xba\xc6\xb9\xd1\xf0\x07\x0f\x49\xd8\xd0\x25\x34\x1e\x4d\x0e\x2a\xa4\x9b\x19\x5b\xd2\x9a\xad\xe9\x8e\x35\x06\x83\x16\x6c\xdd\x18\x40\xfd\xdc\x9c\x2c\xd8\xaf\x22\xb1\xdb\x84\x10\xdf\x89\xda\x56\xc5\x2c\x9a\xbe\xf6\xfa\xac\xe5\xea\xd2\xa5\x42\x5f\x77\x07\x2a\x45\x7e\x75\xc5\xc5\xeb\xf2\x67\x7e\xfb\xb8\xba\x81\x5b\xf9\x6b\x41\x82\x70\x30\xa2\x53\x11\x9f\x1a\x11\xbf\x6e\xd3\x47\x82\xf2\xcf\x7c\xf1\x63\xb5\xd9\x64\xe5\xb2\x49\x5f\x8b\x16\x5f\xef\xa8\x69\x51\xce\xb8\xef\xf8\x19\xa5\x1a\xa6\xfc\x27\x05\x5f\x48\x91\x2f\x9a\xa7\xcf\x13\x6e\x6d\x25\x09\x5d\xe5\xe5\xf2\x4d\x55\x3f\x6b\x91\x15\xc3\x98\x4c\x7a\x12\xa4\xd0\x39\x1b\x4e\xa8\x64\x43\x4f\x43\xb1\x62\x63\x9a\x35\xee\x93\xa7\xd5\x19\x20\x08\x64\xec\x1b\xef\x14\xce\x68\x0e\x65\x12\x23\x26\x05\xad\xfd\x53\xeb\x26\x8e\x6e\xaa\x6b\xfe\xec\x98\xb8\x0c\x8c\x37\x85\x86\x94\x75\x78\x47\x3f\xdc\xba\xd4\xa5\x3d\xfc\x45\x13\x8b\x56\xc0\x86\xc7\xcc\xa0\xcd\x8c\xd2\x8d\xe9\x37\x22\x11\x78\xf4\xa2\x31\x10\xf4\xdb\x19\x23\xca\xe2\x65\x75\xcd\x7f\xcb\xeb\x5d\x56\x14\xb7\x24\xe5\x67\xe3\x69\x69\xd8\xe0\x12\xd8\xe0\x03\xdd\x55\x6a\x0c\xf1\xed\xe6\xde\xe6\x5b\x28\xee\xd2\xbb\x08\x8c\xea\x6a\xc3\xe5\x3a\x2f\xaf\xb0\x53\x7c\x99\x90\x69\x79\x8f\x5d\xb1\x7d\x25\x4a\x7f\xd6\x72\x0c\x9f\x4b\xc0\xf9\xfa\x46\x24\x25\x15\xae\x4b\xfd\x89\xe5\x60\x54\x17\xf0\xf0\xc9\xc1\x96\x02\x12\x1d\xb4\xd9\x8c\xce\x22\xab\x34\x3f\x1c\xbc\x95\xf1\xdb\xf1\x95\x41\x2b\x56\x1e\x5f\x1d\x19\x1b\xd3\xba\xb9\x3a\xb2\x33\x79\x3a\x18\x64\x46\xda\x6e\xce\xa4\x9a\x82\x27\x3b\xef\x49\xaa\x9a\x56\x6c\x07\xbb\x3f\xc5\x3f\xac\xa2\x49\xcd\xfe\xdb\xca\x6f\x72\x2a\xdc\x72\x0a\xdd\x0e\xd6\xb8\x9e\x7e\xbb\x6f\x42\xbc\x89\x30\x3e\xa1\xfa\x8d\xa5\x83\x2a\xe8\xb0\x6e\xe2\x18\x35\x15\x3b\x26\x0c\x9a\x7c\xef\xda\xcc\x10\xf7\x86\x78\xb3\x90\x99\x85\x94\xc1\x42\xd2\xaa\x58\x2f\x65\x22\x68\x66\x90\xb7\x60\x3c\x0c\x44\xc9\x55\x95\x15\x3f\xc2\x4b\x18\x28\x18\xc0\x80\xf8\xa1\xc4\x78\xa6\xd2\xee\x26\x11\x04\x5e\x0d\x97\xa0\x28\x4d\x32\x6f\xb9\xfa\xd1\x46\xc6\x71\xc6\x58\x19\xde\x14\xe3\xf8\x9d\xd0\x57\x51\xfa\xa3\x6a\xcc\x4e\xb7\x03\x4e\x2b\x74\x71\x49\x77\xb0\xec\xa9\xb1\xa8\xf1\x6c\x6f\xc6\xa7\xd9\x59\xd9\xf1\xa6\x9d\x0d\x06\xc4\x0f\x9f\x65\x73\xaf\xe9\x2c\x9f\x65\x73\xbd\xde\x10\x37\xb6\x43\x18\xd3\x21\x95\xd2\x4a\x84\x20\x84\x32\x26\x88\xa8\x07\xe3\xdd\xa8\xdc\x2b\x1f\x0f\x5e\xf9\x4e\x13\xae\x21\xe7\xf7\xfb\x12\x8c\xf8\xb0\x33\x71\x2c\xa6\xc3\xa1\x48\x07\x83\xd2\x23\x73\xf6\xb9\x4f\x10\x9a\xb1\xd7\x15\x3c\x6b\x4f\x3b\x1e\x3c\x5e\x57\xa0\x81\x7c\x48\xdd\x6b\x5f\xd5\x95\xd0\x45\x73\x72\xe8\x78\x39\xe9\xfb\x09\xe2\xb8\xaf\xca\x25\x87\x53\x78\xee\xcb\x12\xd7\x9c\xe1\x84\x90\x53\x32\x1c\x6a\x87\x6c\x4e\xb0\x1b\x24\x2b\x55\x22\xc5\xc7\x77\x28\xb7\xa3\x69\x98\xd6\x64\x47\xe9\x2d\x9c\x69\xd5\xd5\x55\x01\xb2\xfd\x1b\x91\x4b\x1e\x34\x51\x6b\xcf\xc5\x31\x67\x4d\xe1\x3e\x24\xde\xef\x93\xa4\x2b\x9c\xf5\xbb\x42\xc9\xf4\x45\x15\x5c\xf5\xb4\x56\xd4\xe3\xfc\x3a\xb0\x43\xb6\x19\x22\x92\x3e\xff\x77\x73\xd0\xff\xd6\xd2\xcd\xc8\x06\xbe\x85\x1e\x46\x14\x1f\xb3\xba\x1a\xa6\x2e\xf6\xda\x81\xf4\xd1\x17\xab\x80\xb9\xbd\xe2\xf2\x69\xce\x8b\x65\x42\xd0\x3d\xf5\x81\x3a\xd4\x9b\x76\x09\xfd\xa4\x1f\xbc\x15\x38\xf3\xf7\xbe\x3d\x31\x16\x59\x29\x9f\x2c\x73\xa9\xae\xbf\x9a\x33\x69\x13\x35\x2d\xcf\x31\x3a\x7c\x12\x74\xf8\x80\x15\xa0\x76\xaa\x3c\x67\x87\xbe\x26\x5f\xa0\xe9\xd7\x4a\x82\x18\x75\x28\xb5\xbe\xd0\xf6\x1f\xfe\x05\xd0\x80\x25\x05\x43\x61\xb4\x25\x7b\xe6\x5a\x86\x6a\x80\x9e\x5e\x57\xd3\xcb\xfd\xda\x70\xbf\x01\x7a\xd6\x4a\x3f\xd2\x0c\x83\xd2\xad\xe7\x51\x8a\xfe\x45\x03\xa7\xf0\xc7\xf3\x20\x67\xe8\x5f\x05\xd2\xa5\x4e\x4b\x3d\x3e\x34\x5d\xdb\x97\x21\x1a\x1a\xbc\xb4\x47\xdd\x9e\x54\x7c\x9a\x70\xe6\xdf\xe9\x9a\xf2\x37\x7b\xb0\xc2\x6d\x95\xfa\xae\x01\x83\x05\xd0\xd6\x06\x24\xa4\xad\x0d\xc5\xa7\xdc\x33\x6f\xd0\x86\x0d\x50\x72\x6a\x14\x27\x57\xe0\x21\xcf\xb6\x8a\xdb\x14\x04\x64\x64\x20\xe6\x90\x95\x4e\x88\xde\xee\x05\xd8\x14\xed\xf7\x63\xb3\x64\x3c\xbb\x0a\xbb\x9a\x3a\x16\xc8\x9b\xaa\x66\xdc\xbd\xe5\x08\xc5\x61\xc3\x8e\xf2\x74\x01\xb0\x24\x23\xa1\x6b\xea\x14\xea\x78\x59\x6d\x31\x1a\x74\x0b\x79\x4b\xb7\x50\x27\x13\xda\xbb\xb6\xac\x5a\x3a\x86\x3a\x85\xbe\xcd\x42\x12\xa3\x6b\xc8\xad\xae\x21\x6e\x74\xa3\x6e\x18\xa8\xf4\x8a\x40\xdd\x10\xc0\x0c\x2e\xf2\xbf\x5a\xcf\x82\x01\x53\x6a\x35\x26\x3c\xda\xdd\x9e\xb1\xfd\xfe\xc1\x3f\x3f\x2c\x07\x06\x2f\x08\x81\x38\x14\x1b\x3f\xe5\x70\xb1\x49\xf9\xc1\x6d\x54\xd1\xd2\x9d\xc0\x8b\x10\xac\x77\x06\xaf\xdb\xde\x9e\x3d\x96\x1a\xf7\x14\x03\x98\x29\x8f\xab\xf5\x35\x5c\xe3\xf8\xb3\x71\x6b\x8a\x07\xa6\x68\x89\x23\x7a\xc8\x3b\x83\x3c\x2a\xa7\xa2\x21\x95\x68\x1b\x12\x6b\x01\x48\xcb\x88\x58\x87\x1b\x7e\x40\x22\x62\x9f\x0d\x9f\xc9\xf9\xa8\xac\x9e\xe1\xca\x27\x77\x5c\xf1\x20\x39\x8d\x30\x36\x32\x7a\x2f\x83\x41\x7e\x50\x7d\x31\xb8\x41\x62\xc1\x7f\x45\x93\xf5\xfe\x58\xd1\x77\x41\x23\xc1\x57\x82\xd7\xeb\x88\x9a\x27\x6a\x75\x63\xca\x8e\x69\x27\xfc\x24\xed\x3d\x88\xea\x9c\xc1\x64\x77\x92\xb7\xa6\x3f\xb0\x9e\x79\x4c\xf6\x77\x47\xa3\x71\x17\x41\x12\xbb\xfa\x1c\xb5\xf0\x68\x63\x18\x06\x17\xd1\x3f\x75\x6e\x43\x6f\xf6\x7b\x87\xe9\x39\x6c\x0a\x57\xc9\xf9\xe8\x7b\x12\xc7\x3f\xea\x3c\xf6\xdc\x6b\x0d\x4d\x7d\x93\x6d\x1f\x57\xad\xcb\x61\xf8\xf6\xe5\x9e\xbd\x16\x1b\x14\x26\x7e\xcc\xcd\xa0\x35\xba\xd5\x0d\x8f\x12\xf6\x38\x38\x06\x7c\x17\xf9\xad\xc1\xc3\xb5\xa0\x06\xef\x0f\xd3\x03\xdd\x60\x73\x62\x13\x2a\xf1\x64\x7a\xae\x2a\x84\x73\xf7\xdf\x3d\xa5\x41\x4e\xf7\x0e\xf7\x8d\x56\x37\xfa\x52\x11\x7a\x97\x1d\xdc\x91\xf8\xd5\x59\xcd\xc1\x08\x79\x51\x2e\xfc\x95\x39\xb5\x2d\xc1\xe1\x40\xcb\x2a\xb9\xc0\xed\xfa\xbb\x60\x17\x23\x2d\x47\xaf\xd9\xdd\x81\xfe\xa1\x02\x70\x9f\x23\xb4\x19\x48\xaf\x1d\x85\xfa\x87\xa7\xd3\xe5\x72\xa2\xd6\x8f\x88\xe3\x04\x74\x7b\x58\xc3\x35\x56\x49\xee\xca\x3e\xe3\x65\x1c\x6b\x7b\x66\x72\x48\x05\x9a\x53\xf0\x92\x5d\x8c\x9e\x97\xb9\x64\x77\xb2\x42\x92\xd6\xee\x87\xc7\x8e\x41\xda\xe8\x70\xe8\xfd\x43\x24\xd1\x75\x56\xec\x78\x44\xa3\xa8\x61\x22\x0a\xfe\xf2\x00\xdc\x2b\x51\x3c\x4f\x7f\x4c\xa8\x4a\x0e\x7a\x4a\x78\x2d\x69\xa6\x37\x0f\xb4\xa8\x84\xc4\x24\x7d\xa4\x38\x65\x9b\xd3\xe9\x15\x47\xf4\x21\x7d\xd4\x08\x37\xea\xc1\x00\x04\x03\xe1\x9e\xc2\x46\x64\x13\x6b\x2d\xf0\x88\xfe\x2d\x20\x79\x9f\x12\xdc\x04\x9c\x50\xb0\xbc\x72\xb5\x06\xb0\xd7\x9d\x0d\x07\xf2\xe7\x21\x64\x33\xe9\x3f\xe8\xd2\xd2\x77\x50\xd9\xe3\x8e\x0a\x77\x69\x7b\xe4\x6c\x6c\xde\xda\x2b\x03\x16\x63\x5e\xc6\xa5\xd6\x64\x1b\x4e\x18\xab\x8c\x12\x1b\xab\x06\xd6\x2a\x4e\x3f\x68\x2e\x79\x52\xd2\x8a\x90\x43\x39\x18\x1c\x88\x07\xbe\x20\x1a\x08\x00\xb9\xaf\xcb\x2a\xa9\x98\xe5\x73\x00\x72\x99\xe5\x73\x7d\x97\x50\x5f\x8b\xb5\xad\x01\x11\xbc\x61\x6c\xb7\x7c\x91\x67\x05\xde\xc0\xe8\x83\xd9\x87\xdd\x78\x3c\x1e\x0f\xd5\x9f\xc9\x4a\xfd\xff\x7f\xe1\xff\x6c\xf9\x61\xf7\x70\x3c\xbe\x1c\xc2\x9f\x95\xfa\xff\xe1\xdf\xe1\xff\xff\xfa\xb0\x5b\xf1\xd5\x6a\xfe\xe0\x8a\x36\x5f\x7e\x2c\xf0\xa3\x57\x07\x98\xfb\xfe\xc2\xaf\x9e\x7c\xde\x26\x72\x54\x57\x3b\xb1\xe0\xe0\x04\x5f\x1d\xc2\xd1\x07\x19\x91\x69\x14\xa5\xd1\x5e\x7d\xd1\xe8\x2a\x22\x54\xf4\xf5\x9a\x8e\x63\x3e\xd2\x14\x33\x21\xed\xe6\xbf\x29\xb2\x05\x5f\x57\xc5\xb2\xeb\x59\x49\x82\x63\xfe\x7a\x9b\x95\xe0\x99\xff\xff\x8b\x28\x88\xc8\xcb\xeb\xac\xc8\x97\xa0\xe3\xea\x41\x4b\xca\x5c\x16\x9c\x45\x1f\x3e\xec\xa2\x81\x03\x12\x7b\x24\x93\xb1\xba\x73\x6b\x4e\x61\xf2\x7f\x48\x4b\xea\x9e\x89\x3c\x1b\x16\xd9\x25\x2f\x22\xaa\x8b\x51\x14\x31\x68\x8d\xdf\x07\xbb\x36\xb9\x96\x0a\xea\x69\x70\x1b\x62\xbb\x93\x17\x8a\x77\x88\xe8\x66\x1a\x69\x97\x8d\x46\x52\x1f\xa5\x60\x03\x98\x09\x9e\x45\x34\xc0\x94\x69\x28\xa5\xb9\x62\x4e\x16\x59\x09\x6a\x69\xc9\x2d\x97\xe4\xe4\x92\x9f\xa0\x55\xde\xf2\x24\x2f\x4f\xb2\x13\xb1\x2b\xcb\xbc\xbc\x3a\x51\x35\x54\x22\xf2\x1a\xd8\x90\xbc\x45\xb4\x7f\x85\x11\x37\xeb\xaa\x00\x9f\xd5\x78\xb2\xfe\x00\x26\xf5\xde\x2e\x5d\xf3\x8d\xa2\x29\x9a\xb4\x85\x13\xf3\x52\xed\xd2\x5f\x82\x4d\x8a\x3a\x7f\xdd\x19\x7c\x1b\xda\x4d\x89\x58\xc9\xde\xe2\xd8\x94\x89\x20\xbd\x3c\x8e\x73\x00\x63\x5e\xac\xdd\x17\xa8\x44\xd3\x72\x94\x49\x0c\x37\x5f\x09\xa7\xf9\x7e\x8f\x48\xe4\x7a\x22\x0c\xde\x25\x12\x08\x47\x39\x0c\x83\xa6\xa8\x52\x63\x3e\xbb\xf8\xb8\x69\xf2\x45\xe0\x33\x15\x16\x05\x00\xda\x20\x81\x47\x56\x71\x93\x97\xe8\xec\x34\x8a\x9a\x29\x30\x1c\x5a\x97\x26\x5f\x44\x0a\xd3\xb5\xbc\x02\x16\xf5\x47\x4b\x16\x35\x89\xec\xc6\x06\xfb\x01\xa6\x04\x3c\x86\xd8\x89\xd1\xc7\x5d\x44\x67\xf3\xa0\xfb\xcf\x9d\x79\x47\x73\x2e\x3d\xdb\x3b\xb5\x20\xda\xa7\x44\xc3\x5b\x88\xff\x08\x32\xfd\xc9\x53\x1c\x46\x7e\x3c\x1a\xab\xa1\xe8\xd8\x3c\x8b\xea\x9a\xeb\x37\xdd\x57\xfc\xb3\x7c\x5b\x5d\x18\x24\xf2\xd6\x64\xfd\x10\x34\xd0\x22\x96\xeb\x2d\x16\x95\x99\xcc\xaf\x79\xb8\x48\x9f\xa9\x71\xfa\xa1\x0b\x2e\xbd\x0d\x0b\xcf\x9b\x5c\xe2\x57\xa0\xa3\x37\xad\xf3\x1a\x27\x96\x76\x05\xdf\xea\xc9\xbd\xe3\x2e\x50\x07\x0f\xf3\x46\x74\x42\x7f\xe9\x28\xf3\x69\x25\x36\x59\xfb\x11\xde\x08\x44\x0f\x5e\xa6\x7a\x5d\xdd\xa0\x05\xdc\xbb\x35\x2f\x2f\x8c\x17\x1f\x68\x14\x97\x8e\x48\x28\xfe\xd2\x8a\x5b\x5f\x97\x21\xaa\x9b\xd7\x80\x77\x79\xcd\x7f\xac\xb6\xb7\x3f\xee\xbc\x03\xdd\x88\x5a\x1a\x5d\x55\x6b\xc5\x41\x13\x32\x26\xa7\x09\x80\xee\xb5\xb0\xfa\x2e\x8b\x9d\x48\x02\x67\x03\x79\xad\xc8\xe4\x92\xf5\xc1\x67\x68\x3b\x78\xd2\x81\xf7\x87\x6d\xd0\x46\xe4\xe8\x0a\x4a\x35\x4e\x67\x02\xb6\xb6\xa3\x81\xb2\x8d\x49\xa7\x99\x6d\x37\x2d\xc6\x05\x63\x6b\x2f\x18\xbc\x19\xd9\x67\xfd\x04\x9d\xff\x22\x4d\x23\x1e\x62\x80\xe7\x40\xe1\xa9\xce\x5b\xd3\x9c\xc9\xe9\xfb\x3c\xfd\x26\xef\xe5\x1d\x48\xfd\xe8\x28\x02\xb4\x95\x23\x5a\xa2\xda\x32\xa1\xc7\x53\xaa\xa3\x45\x31\x46\x23\xf8\xb8\x2f\x25\x82\x83\x96\x20\x96\xbb\x2f\x5d\xc1\x33\xb5\x9d\xca\x11\x7c\x1c\x4f\xa9\x06\xa5\x1c\xa9\xbf\x8a\x2f\x01\x66\xb4\xed\x7b\xc5\xa7\xc8\xb8\x1a\x7e\x28\xf2\xf2\xd3\x2f\x99\xe4\x11\xfd\xfe\xbb\xb1\x1f\xe3\xcb\x6b\x22\x1a\x44\xe1\x0d\x51\x6d\x0a\x6f\xe5\xa2\x07\xb5\x1f\xbd\x04\x6f\xb8\x50\x5b\x08\x26\xcb\x4b\x78\x53\x89\x4f\x8a\x62\x46\x40\x1e\x6d\xd0\x63\x5e\x64\xb7\x5e\xd8\xaa\x50\x3b\xab\x04\x04\x2e\x28\xe2\x93\x2d\x21\x5b\x2e\x5f\x56\x4b\x0e\x6a\x0a\xb0\x92\x5c\xd4\x16\x65\x5b\x80\xe4\xe8\x15\xb6\x2b\x97\xd5\x63\xbe\x95\xeb\x88\x3e\x1c\x77\x90\xd1\x6a\x61\xdd\x75\xd9\xa4\x4c\xea\x85\xab\x63\x00\x8d\xd2\xb4\xf2\xe1\xf7\xba\xe4\x6b\xad\x0e\x61\x06\x6a\x32\xfe\x32\xab\xb2\xc9\x3e\x3f\xcb\xaf\xd6\x85\x1a\x24\x44\x5f\x88\xe8\x84\xff\xcd\xeb\xc6\xa6\xba\xc6\x8d\xa2\x38\x79\x1c\xd3\x0e\xfa\x7f\x6c\xcb\xbc\xd1\xda\x0d\x96\xc5\x93\xd9\x25\x30\xce\xc7\xee\x1a\x47\xee\x91\x23\x99\x5d\x82\x7e\x33\x93\xfb\x7d\x14\xe9\xc2\xb2\x9d\xac\x34\x5e\xa9\x33\x02\x95\xea\xd6\xa4\xee\x2b\x70\x67\x13\xf0\x2b\xdf\xf0\x97\x3a\xa4\x07\x37\xb3\xbc\x84\x00\x16\xd6\xef\x2e\x6d\x50\xc0\x7e\x1f\xa9\x62\x23\x10\x08\x24\x8d\x48\xc6\x09\xcd\xc4\x15\x18\xd2\x18\xb1\xcb\xf9\x43\x40\x9b\x5e\xf2\x2d\x57\xf7\x9b\x45\xce\x6b\x74\x63\xe4\xec\x52\x50\x3b\x16\x1f\x94\x6d\x76\xfa\x90\x10\x2a\x4b\xb8\x29\x1e\xa8\x6d\xe0\xf3\x97\x4f\x1a\x0d\x14\x2e\x8d\xe0\x75\x55\x5c\x37\x7b\xd1\x0d\x44\xcd\xe3\x58\x74\xbd\x71\x73\x06\x05\x5a\xc5\x0f\x1e\xc7\xed\xbc\xa0\xeb\xd9\x59\x00\xc4\x10\xc3\x92\xab\xa2\x50\x2f\xb4\x77\x04\x84\xe1\x4e\xc5\x82\x57\x97\x84\xb3\x8f\x1a\x89\x1a\x2d\x0c\x24\xfc\x71\xce\x52\x3b\x7a\xf0\xe0\x9f\xb3\x0f\x37\x1f\x86\xf3\xc1\x87\x07\xe6\x63\xf0\x79\x53\x7c\x63\x1f\x71\x2c\x1e\xb0\x3f\x36\x49\x94\x6d\xb7\x45\xbe\x00\x11\xd5\x83\xcf\x9b\xc2\x5e\x0d\xda\x75\x4c\xb1\x81\xfc\x90\xf2\xfd\x1e\xbf\x71\x01\x1c\xd4\x80\x6b\x65\xde\xc6\x8c\x48\x16\x56\x67\x01\x3e\x65\x39\x93\x7a\x38\xc0\x8d\xbb\x6b\x9d\x31\x47\xd1\xa8\x1f\x0f\xb6\x45\x96\x97\x91\x01\x4a\xd3\x40\x6b\xf9\x2a\x29\xdb\xea\xc6\xfe\x88\xe7\xac\x74\x55\xd8\x87\x34\xc5\xfa\xe7\x24\x6f\xe6\xac\x08\x00\x50\x76\x86\xce\xa2\x8f\xd1\xa0\x9a\x03\xae\x1f\xa1\xea\x7f\x96\xab\xcf\x03\x3c\xbb\x7a\xd3\x43\x65\xa0\x41\xac\xca\xb3\x3f\x99\x1f\xa7\xee\x52\x6a\x8f\xa8\x8a\x9c\xa8\x12\xda\xe6\x47\x40\x55\x5e\xc0\xac\xb2\x7e\xd2\x4a\x6f\x1b\xc0\x2c\xc2\x3c\xd0\xb6\xa2\x17\x58\xf9\x34\xfd\xf1\x7d\xca\xb7\x6f\xab\x27\xe5\x32\x41\x8b\x00\x7f\x43\x25\xfe\x98\x53\x2c\x56\x0f\xbd\xa1\x1b\x4f\x3e\x4b\x5e\xd6\xea\x48\x46\x72\x81\x0f\xcf\x1d\x73\x7f\xa3\x96\x70\x7b\x96\x38\x99\x96\x6a\x5b\xa5\xf0\x3f\xbb\x3b\x10\xd7\x19\x5b\x76\x8b\xf2\x58\x0a\xd1\xa0\x02\x8f\xab\xc5\xb1\x4c\xd7\xf9\xd1\x5c\x5a\x56\xf3\x0f\x54\x4b\xaf\x00\x7f\xcf\xc4\x29\x66\xe4\x59\x55\x7d\x0a\xc8\x46\x65\x10\xf6\x08\xfa\x5e\xc8\xd4\x68\xe0\x8c\xea\x61\x10\xfc\x2a\xaf\x25\x17\xf8\xd8\xdb\xf2\x70\xd0\x56\x8e\xe7\x64\xbf\x4f\x32\x18\x83\x0b\x18\x08\xad\x05\x9e\xce\xe6\x07\x42\x21\x02\xf4\x3d\x91\x9a\x61\xe1\x3f\x41\x8a\xce\x2a\x50\xaa\x16\xb6\xc2\xe0\xc7\x40\x61\x56\x03\x1d\x4d\xb0\xb6\x82\x2f\x53\x41\xaf\xb3\x22\x2d\x0f\xba\x57\xb5\xea\xd5\xa2\xda\xde\x82\x26\x39\x6b\x09\x8c\xfa\x63\xc6\x98\xb4\xc6\x4e\x1a\x77\xd4\xa4\xb7\xea\x05\x2e\xc8\xed\xf7\xbb\x83\xdd\x84\x25\x2c\xf4\xd0\xe8\xe7\x24\x2f\x6b\x99\x95\x0b\x45\x68\xe0\x48\x00\x8d\x8e\xdc\x3a\x5d\x9e\x13\x42\xc5\xac\x9c\xb3\xdc\x53\x79\xdf\xa9\xe6\x3a\x03\xb5\xd6\x98\xeb\x57\x4e\xee\xa5\x01\x1c\x7e\xfb\x2b\x01\xa3\xa6\x9e\x67\x46\xd1\xe8\x33\xbc\x69\x73\x17\x7d\xea\xec\xe7\x3c\xcb\x0b\xb4\xd4\x14\xfb\xbd\xc0\xa3\x8f\x19\x63\x4d\xc9\x04\x4a\x85\x28\x67\x18\x67\x5b\xbf\xdf\xa3\x11\x1c\xa7\x90\x20\x95\x07\x9c\x82\x02\xa7\x00\x14\xb1\x6a\x76\x87\x4e\x44\x1f\x15\x45\x73\x0f\x7b\x77\x8f\xc4\xa1\x8c\x69\x63\xa4\xb1\x79\x4d\x77\xf8\x66\x60\xff\x43\x91\xf5\x73\xd6\x5b\xf7\x14\xea\x43\x95\x44\x08\x38\x07\x17\x78\x2f\x74\xcd\xb3\x65\xa4\x4b\xfe\x94\x17\x45\x43\xf9\x9c\xdc\x81\x59\xbd\x0d\x90\x1a\x63\xcd\x18\x77\xe9\xa1\xbc\xb1\x58\x50\xce\x80\x2b\x40\x2b\x73\xb2\x2a\x0d\x35\x00\x40\x14\x5e\xea\x33\xbf\xa7\x53\x03\x82\x66\xde\x3c\x01\x27\xc5\x21\xe4\x4d\xe8\x98\x18\x8d\xa3\x63\x89\xd4\xaa\x38\x04\xaa\xb2\xc6\x3e\x4c\x03\x1f\x2b\xca\x09\x5a\xe4\x05\x97\xfc\xcb\xdd\xf6\x8b\x5a\x1a\x04\xd1\x84\x58\x1f\xc4\xb2\x4a\x5f\x18\x97\xfb\x1a\x21\x4e\xc7\xa2\x3f\x62\x53\x19\x82\x80\xad\xe4\x3d\xb5\xf1\x56\x6d\xbc\xa3\x36\x13\x66\x0a\xc6\x27\x88\xe5\x57\x94\xef\x59\x90\x3a\xb3\x0b\x3d\x76\x9e\xaa\xce\xe0\xfb\x9e\xdf\x0c\x45\x12\x8c\x81\x45\x82\x0f\xf2\x63\x78\x85\x17\x07\x9d\x09\x47\xf6\x68\xab\x7e\x69\x98\x52\xfc\xc7\xcd\x42\x3d\x9d\x66\x63\x5a\x0e\x2d\x7c\x7d\xce\xc1\x64\xdc\x68\x6c\xef\xd8\xda\x28\xa1\xe9\xea\x62\xd2\xd8\x5a\x2a\x28\x81\x57\xbe\x56\x94\x0a\x4a\x74\xae\x63\x3b\x33\x88\x33\xe5\x1c\x4b\x1c\xc4\xc1\x1b\x53\xf5\xb8\x5a\x80\x33\xa7\x46\xca\x86\xce\x58\x17\x21\x31\xd9\x9f\x34\xf4\x42\x8f\x64\xf6\x11\x15\x55\x4e\xf5\xfd\x15\x35\x07\xda\x6a\xce\x4a\xa6\xcc\x12\x1e\x90\x85\x83\xf3\x27\x3e\xd0\xde\x93\xf3\xac\x4e\x27\x87\xb0\xb2\x8b\xcd\x7f\x5a\x63\xee\x6a\xfc\x8a\xca\xbe\x38\x28\x47\x6a\xe9\x36\xd0\x71\x84\x50\x43\x02\x08\xf6\xbc\x4c\x4a\x72\x4a\xd0\x34\xa3\x5c\x26\x13\x75\xef\xd4\xa0\x4f\x0e\x58\x29\x67\x6f\xf3\xa4\x24\xb4\x62\xf9\x34\x9f\x8d\xe7\xa3\x82\x5f\xf3\xe2\x7f\x3d\x9c\xca\x2c\x29\x49\x2a\xe0\xff\xb2\x8b\xa4\x5a\x07\x1c\x72\xfa\x5a\x15\x91\x4a\x5a\xa1\x3f\x82\x2f\x0f\xfa\xd0\x1b\x88\xf6\xf6\xfc\xe2\x50\xfc\x5b\x54\xe4\xe4\x7f\xbe\x67\x51\x55\x56\xb7\xb7\x45\xe4\xfe\xdf\x37\xf7\x4b\xcd\xf9\x0f\xd6\xec\xff\x84\xe2\x75\x53\xb4\x93\x72\xb4\x58\x9f\xc1\x21\x0f\xbb\xb8\xd4\xa7\x71\xcd\x33\xb1\x58\x27\x0f\x3e\x5c\x3c\x20\x53\x7f\x8f\xa4\x65\xd0\x91\x5f\xb7\x8d\x1e\x80\x16\x6c\x32\x9c\x50\x44\xc2\xb0\x09\x41\x4b\xbd\x2b\x69\x90\xf2\x4d\x76\x75\x5f\x91\xc6\x78\x0f\x13\xde\x57\xa4\x4b\xa9\x86\xa0\x63\xf6\x41\xfb\x1b\x0a\xc5\xf7\x31\x93\xb4\x6b\x61\x63\xda\x30\x29\xe8\x91\xde\x5f\x2e\xa2\xc8\x78\xc9\xef\x2f\xdb\x4b\xfe\xae\x12\xcb\x7b\xcb\x06\x1c\x1a\x48\xfa\x93\xa8\x76\xdb\x7b\x0b\x46\x30\x1a\x97\xf8\xde\x82\xbd\xc4\xaa\x11\xf7\x16\x6c\x1a\xb1\xe4\xf0\x42\x89\x8f\x63\x8d\xc4\x5a\x4f\x3d\x18\x68\x9d\xbe\x69\xb7\xea\x27\x0f\x53\xab\x96\x7c\xb1\x74\xaf\x35\xa0\xd2\x7b\x7f\xe9\x5e\x6a\x18\x94\x2f\x16\x6f\x07\xc6\xe4\xf8\x42\x05\x36\x3d\x3e\xfb\x3f\xda\xc9\x26\x1b\xd0\x00\x56\x30\xa0\x6b\x36\xcb\xcb\x76\x83\x5a\x59\x00\x71\xce\x64\x78\xc1\xeb\xfa\x8b\x75\x58\xe4\x07\x95\xab\xe6\x42\xbe\xcd\x2e\x5b\xec\x44\xd3\x18\xe0\x83\x97\xfe\xa2\x5a\xb5\xf2\x38\xe5\xab\xd9\x9c\xa2\x2f\x97\xd0\x4b\x34\x90\xa4\x26\xc2\x5d\x17\xb6\x16\x6a\x14\x08\x03\xf2\x0f\x00\x0d\x8b\x2a\x71\x04\xca\xe2\xd5\x82\x0a\x36\xe9\x49\xbc\xdd\x6e\xab\xa4\x1c\x66\xff\xab\x24\xe4\xd0\xee\x40\x0d\x9a\x1d\xc6\x6e\xb4\xd5\xdf\x2e\x93\x88\x63\x63\x9d\x2a\x1a\x6d\x0d\x67\x92\xc8\x8e\x61\x04\x46\x30\x59\x59\x6f\xab\x9a\xc3\x43\x77\x50\xcb\x71\xe4\xae\x8e\xc1\xf2\x9c\xd0\x1c\x43\xcd\x40\xaa\x5f\x39\x16\x22\xf7\xae\x51\xe0\x7f\x95\x00\xae\x86\xba\x3b\x55\x0e\x6c\x3f\x07\x05\x85\x25\x4f\x30\x39\xcd\x11\x5e\x92\xc0\xc7\xf9\x98\x74\xc5\x0f\x26\x84\xda\x31\xfd\x25\x2b\xaf\xd4\x24\x68\x35\x6f\x9d\x7f\x10\x06\x3c\x84\xdb\xa8\x5f\xc5\x43\x42\x73\x1a\x0d\xec\x00\x45\x9e\x31\xbf\xc1\xe6\xb6\xca\x27\xc6\x78\xbf\xd1\x37\x03\x00\xd8\xcb\x50\x55\xa2\xab\x3d\x63\x32\xe0\x5d\x5e\xe0\x07\x99\x45\xcf\x72\x78\x12\xae\x91\xc3\x09\xed\x0c\xa7\x13\x12\xb6\xfa\x10\x7a\xf9\xc9\x69\x0e\x0b\xce\xbf\x47\xd7\x89\x20\x8a\x4f\x2a\xf9\x0d\x58\x85\x97\x4b\xd4\xed\xf9\x8f\x97\x83\x55\x9b\x41\x00\x9b\x53\x61\x56\x42\xd9\x91\x78\x26\xe6\xbd\xc6\xe0\x74\x0e\x08\x2d\x8d\x77\x22\x6d\x8a\xe4\x10\x04\xcd\xd2\xd7\xfc\x80\x77\x97\x1c\x4c\xa8\x46\x14\x24\x07\x83\x19\x47\xab\x2d\x2f\x5b\x17\xe2\x4e\x22\x52\x46\x34\xc2\xf7\xba\x2f\x68\xfb\xf3\x51\x23\x56\xdd\x10\xe9\xa2\x64\x17\x1a\x35\x29\xd0\x32\x5b\x85\x24\x08\xed\x53\xd1\x4f\xc5\xb6\xc8\x65\xf2\x60\x98\x4c\xfb\xdf\x90\x07\x8a\x94\x24\x9c\x55\xb3\xca\x4e\xf5\x9c\x8e\xc9\x69\x76\xe6\x02\xc0\x6e\x44\xa3\x34\x54\xb3\x0c\x44\xd5\x0f\xfe\x99\x2c\x36\xcb\xfd\x86\xcb\x6c\xbf\x21\xdf\x3c\xc8\x35\x5e\x26\x21\x39\xeb\x8f\xed\x3a\x7e\xf0\xcf\x2c\x29\x24\x99\xfa\x09\x64\x98\x20\x59\xec\x17\x52\x14\xfb\x45\x55\x4a\x51\x15\x41\x59\xc2\x24\x05\xb1\xdb\x83\x7f\xd6\xc9\x3a\x5f\xc9\x20\x49\x4b\xf3\xe5\xd7\x52\xf0\x45\x75\x55\xe6\x7f\xf1\xe5\xc9\xa6\x5a\xe6\xab\x9c\x8b\x13\x90\xd3\x9f\x44\x83\x9a\xf4\x4a\xf0\xb9\x64\xa4\x29\xa0\x9f\x1d\x3d\x2a\xe4\x30\x1a\x70\xed\xf5\x96\x45\x3f\x4a\x51\x60\x40\xae\x03\x36\x4b\xfc\x5d\xe2\x6f\xe3\x0b\x94\x13\xca\x0f\x8b\x72\x74\x99\xd5\xf9\x82\xdd\x01\x1b\x11\x39\xfe\x2a\xa2\xc8\x2c\x44\x1e\x1f\x15\xd1\x5f\xb7\x2a\x00\x39\xc5\x88\x02\xc7\x16\x39\x86\x30\xa2\xea\x42\x15\xd9\xbb\x55\x44\x9f\x55\x1b\x6e\x02\xdc\xcd\x2e\xa2\x9a\x31\x8c\x0c\x8b\x88\x21\xa6\x3c\xf3\x1d\xd1\xc7\x70\x02\xa7\x91\xcf\x63\x44\xf4\x87\x6c\xf1\xa9\xde\x66\x0b\x17\x61\x34\x79\x74\xef\x6c\x82\xa8\x95\x42\x9d\x17\x91\x3b\x3b\x6c\x16\xf5\x9d\x46\xee\x74\x57\x7d\x51\x1c\x41\xd4\xdc\xf8\x11\x7d\x0e\x87\x44\x1a\x35\x56\x75\x44\x9f\xd4\x8b\x34\x6a\x88\xe8\x22\xb5\xd2\x47\xdb\xc5\x63\xac\x92\xdd\xe1\x0c\x3d\x8a\xd2\xc8\xca\x06\x23\x8a\x81\x8f\xb1\xb9\x5a\x24\x65\x42\xff\x00\x74\xb2\x65\x65\x9b\x6a\x43\x05\x87\x50\xf8\xfd\xbe\xf1\x5b\x8d\x7c\xa4\x06\xd3\x88\x0e\x4c\x84\x9a\x17\x1d\x0e\x53\x84\xa1\xbf\x6e\x23\x7f\x66\x75\x7b\xd4\x1c\x84\x13\x8c\x11\xb0\x40\x54\x84\xe5\x40\x4d\x0c\xae\x13\x1b\xa5\x97\x0d\xac\x52\x9b\xc9\x2e\x06\x1d\xe1\xf2\xd8\x75\x83\x85\x35\xa6\xd1\xe3\xec\x6c\x0b\xd1\x9a\xd1\x45\xeb\x15\x82\xb1\x17\x6a\x90\xe1\x51\x1f\x7f\x3f\x8d\xd2\x48\x5d\xc3\xcd\xef\x9f\xf4\xef\x57\xfc\xb3\x0c\x47\xd7\xc4\xbc\x11\xfc\x3a\x8c\x79\x0a\xe3\x0c\xc4\x30\x8c\xf8\xc5\x45\x78\x53\x3a\xb3\x8b\x4a\xb1\x73\x26\x74\x6e\x43\x5f\x7a\x9d\xf9\x55\x4f\xb4\x5b\x3b\x41\x05\xbf\xea\x19\xf6\xa3\xd5\xf0\x75\x84\xaf\xb2\xa2\x50\xe4\x65\x77\xb5\x4e\x23\xd8\xe0\xb8\x0c\xf9\x26\x5b\xd4\xb7\x66\x0d\x3e\x8d\x1a\xbb\x5b\x8f\x7a\x14\xd2\x01\x0c\x7d\xd3\xb1\x3e\x5e\x35\x17\x87\x6a\x0e\x96\x6a\x6f\x1b\x3a\xf4\x07\x1b\xea\x17\xfa\xa8\xb5\x1e\x70\x89\x76\x2d\x86\xdf\xa2\x90\x34\xf8\x43\xe3\xe2\xbc\xc5\x1b\x35\xc9\x86\xde\x18\x6d\x9a\x00\x2d\xd4\xe9\xed\x65\xc3\x34\x3c\x5c\x83\xee\xee\x62\xca\xfb\x39\x4a\x23\x23\x3c\x37\x61\x6f\xa3\x34\x0a\xb9\x47\x13\xf3\x3a\x4a\x23\x73\xc4\xe2\x9c\x6c\x32\x9f\x36\x6c\x96\x6d\xd2\xb0\x59\x76\x50\x86\xcd\xb2\x83\x30\xe8\x40\x43\x07\x36\xcb\x80\x2c\x6c\x96\xdd\x54\x61\xb3\x34\xdb\xbf\x11\xda\x26\x15\xaa\x29\x86\x28\xd8\xd0\x60\x73\xfb\x14\x21\xdc\xdc\x01\x41\x50\x25\x05\x04\xc1\x2c\x8b\xcd\xb2\x41\x0f\x82\x55\xf4\x45\x82\x70\x2c\x95\x3f\xa5\xc7\x89\xc6\x66\x19\xd0\x8c\xcd\x32\x20\x19\x9b\xe5\x11\x8a\xe1\x45\x68\x82\x01\xf3\xa8\x37\x43\x8b\x5a\xb4\xe3\xdc\x44\xb7\xe9\xc5\x66\xd9\x41\x2e\x36\xcb\xd6\xc2\x0c\x5f\x00\xcc\x64\x79\x5d\x6d\x4a\xe3\xcd\xd4\x1f\xa7\x3a\x3a\xb6\x49\x74\xfc\x03\xa3\x79\xba\xb4\x56\x87\x4f\x8a\x66\x9a\x16\xd1\x08\x09\x51\x34\x87\x1d\xa0\x4f\x63\x76\x3d\x0d\xb6\x43\xea\x9f\x9b\xf4\x62\x54\x56\x62\x93\x15\xf9\x5f\x1a\x92\xb3\xc3\xe9\xbe\xf7\x46\x29\x4e\xf2\xf2\x84\xa3\x8d\x50\xe3\xdd\x56\x38\x4d\x35\xc5\x5e\x23\x2b\xa7\xb8\xac\xbd\xd7\xd6\x7d\xb2\xe4\xfb\x4c\x12\x99\x2d\xd6\xc4\xe8\x60\x08\x42\x14\xaf\x97\x97\x3b\x40\x9e\x89\x46\xa3\x11\x42\x87\xe0\xd6\x3c\x81\xf2\x4c\x8a\x83\xd3\x80\xbf\x02\x3b\x31\xe0\x5e\xa3\x93\x88\xd0\x15\xc8\x7a\x01\xe7\xac\x0d\x72\x46\xeb\x5e\xc5\x58\x6e\x79\xd8\x69\x52\xb3\x7c\xf4\x67\x95\x97\x98\x39\x63\x25\x49\x21\xcc\x00\xd1\x55\x83\x09\x09\x12\x40\xc3\x8c\x01\xb7\x9c\xd5\xd0\xc9\x1d\xbc\xde\xed\xfa\x2c\x6b\x73\x9e\xcf\xcb\x45\x55\xd6\x79\x2d\x79\x29\x4f\x2e\xf3\x72\x99\x97\x57\xf5\xc9\xaa\x12\xc0\x77\xa2\xda\x8a\x2a\x87\x65\x07\xaf\xab\xb6\x87\x05\x3e\x08\xf3\x59\x31\x67\x72\x56\x58\x2d\x07\x8e\x4f\xa2\x6b\xc5\xe9\x17\x55\xf5\x69\xb7\xfd\x99\xdf\x76\x3c\x7b\xe3\x28\x25\x12\x15\xa5\x09\x68\x0f\x4d\x25\x2a\x11\x71\x5a\x92\x54\xce\xb4\x9a\xc9\x84\x31\x96\x13\x63\x25\x57\xc1\x35\x3f\xf2\xe6\xc2\x45\xa2\xf7\x7d\x83\x06\xd0\x67\x79\x1c\x8b\x24\x37\x4a\x34\xd6\x55\x3f\x42\xd5\x78\x13\x8f\x1a\x46\x33\x44\x34\xc3\xa7\xec\x79\xd4\x67\xaf\xe1\xb7\xa7\xe7\x64\x54\xeb\xb1\x95\x61\x11\xe6\x21\x7d\x5d\xa2\xbb\x04\x17\x85\x1e\xb1\x42\xac\xbb\x20\x41\x07\xe8\x5d\xbb\x94\x59\x35\xb7\xae\xb5\x32\x62\x21\x30\x0e\x07\xba\x54\x43\x9d\xd7\x2f\xf5\xe5\x21\x1c\x6e\xb3\x4d\x3a\x34\x83\x78\xfa\x47\x35\xb3\x2e\xc9\xcd\x04\xc2\x96\x8e\xc0\x1e\x58\x11\x4e\xfd\x05\xc4\x41\x7f\xbf\xac\x96\xea\xeb\x40\xb7\xfa\x36\xf7\x2a\xdb\x74\xe8\x1d\x2c\xe2\xf8\xbb\xbf\xb1\xd0\xa5\xbc\xba\xc0\x3b\xd8\x6f\x14\x85\x07\x8d\xa0\x25\x13\x3d\x0f\xa5\xa9\xcf\x4a\xe3\x56\xfd\x27\x91\x6d\xd7\xe0\x66\x3d\x31\x6e\xd6\xe3\x18\x9a\x88\x2e\x41\x4a\x73\x2f\x2a\x09\x4d\x3e\x1e\x71\xbf\x8f\xbd\xb3\x19\xf4\xc5\xc9\xe4\xd0\xe9\x52\xe7\xb9\x5d\xe5\xd8\x2c\xbd\x0c\x70\xb1\x2a\x09\xed\x83\xb1\x07\x00\x3e\x60\x43\x70\x84\x6c\x42\x73\xe3\x2a\x09\x2d\x89\x77\xd3\xdd\xf8\x26\x9f\xed\x39\x59\x80\x92\x0d\x3f\x5c\xc0\x9d\xfd\x2d\xff\x2c\x1f\x09\x9e\xb5\x07\x37\x91\x4c\x4e\x6f\xaa\x44\x92\xf4\xee\x40\x46\x60\x18\xc5\x38\xfe\xa5\x7d\x39\x32\x2a\x89\x80\x24\xa4\xd5\x0c\x41\x8f\xcf\x44\x30\x17\xae\x3a\x33\xda\x3a\xdb\x14\x95\x27\xf8\x99\x04\xd1\x2c\x88\x35\xd8\xfd\x72\x64\x15\x17\xcd\x1b\xc7\xe3\x0a\xbc\x9d\xd9\x70\x26\x40\xe9\xd0\x58\x0a\x5f\x85\x86\x29\x56\xed\x91\x80\x2b\x7c\x0b\xec\x7d\x59\x2d\x6f\x0f\x9e\xc1\x2c\xb9\xd3\xdd\x64\x00\xd3\x80\x56\x5f\xa0\xd7\xc5\x47\xab\x4a\x6c\xe2\x38\x79\x9f\xeb\x6f\x1a\xd5\xbb\xcb\x4d\x2e\x23\x0a\x33\x86\x4a\xbe\x17\x10\xf4\x92\xcb\x75\xb5\x7c\x54\x54\xa5\xd3\x3d\xd3\x99\x2a\x45\x66\x21\x51\x4f\x8a\x5b\xbd\x21\x4d\x10\xf3\x24\x3e\x65\x02\x5e\x53\x31\xbc\xb2\x9f\x7e\x68\x76\x38\x2c\xc0\x6b\xc7\xfb\x8a\xdc\x1d\x0e\x72\xb4\xca\xcb\xbc\x5e\x83\x01\x9c\xff\x2a\x24\x47\x8a\xff\x60\x25\x05\x05\xd1\xf6\xbc\xfb\x5a\xef\x72\x24\xab\xae\x14\x41\x78\x5e\xbf\xca\x5e\xd1\x12\xd4\xcd\xb7\x99\xe0\xa5\x7c\x55\x2d\xb9\x76\x99\xa5\xf1\xb2\x46\x2d\x3b\xc6\x84\xa0\xb7\xf7\xdb\xc2\x3e\xd4\xa1\x7d\x87\x1e\xd9\x6f\x3a\x47\x36\x32\x8d\xf0\x35\x2c\x55\x2a\x3d\x0a\xe8\x53\xd1\xfd\x66\x15\x21\x87\x43\xbb\xa2\xb2\x2a\x79\xa4\x41\x4d\x2e\x82\x47\xb3\xa0\x0f\x28\xaf\x45\x16\x30\x91\x94\x8f\x4a\xfe\x59\x5e\xe4\x97\x45\x5e\x5e\x91\x83\xc3\x2c\x39\xa9\xf1\x28\xba\x56\x64\x0a\x09\xf7\x85\x14\x3c\xdb\x34\xd5\x1d\xd7\x79\x3d\xda\x56\xb5\x45\xa5\x10\x92\x8d\x0d\xb6\x83\xca\xc5\x38\xfe\xd2\x42\x6f\x45\x04\xff\x4e\x2d\x96\x30\xbe\x0b\xbd\x31\xf9\x5d\x10\x2c\x4d\x53\x52\x61\xee\x3b\x6c\x7c\xe8\x5d\x97\x3e\xa8\x3b\xaf\x8a\x63\xa6\x9c\xdb\xaa\x3e\x67\x5e\x4b\xf4\x49\x71\xa0\xf5\xbd\x79\x34\xc0\x86\xad\xf3\x40\xb7\x9c\x7f\x3a\x96\x41\x17\xad\x85\xab\xa6\x0c\xb2\xdf\xa3\x13\xee\x03\x55\xe3\xeb\x67\x56\xc7\xa7\x4e\x75\xd6\x6e\x1c\xf9\x72\xd9\x83\x01\x39\x50\x9e\x1d\x85\xcf\x3d\xd2\xa2\x4e\xb8\x59\x4e\xb4\x6e\x2a\xd3\x88\x02\xea\x1b\x56\x9c\x62\xdf\xa6\xf8\x47\xd1\x49\xae\xd8\x0c\xc0\x47\xd7\x2d\x1c\x0c\x4c\xc9\x54\x42\x73\xde\xad\xf3\x82\xdf\x87\xfa\xbe\xad\xea\x53\xf8\xe0\x99\x4c\x38\x39\xb5\x50\x54\x76\xb2\xb0\x20\x40\x7e\x4b\x3b\x64\xc3\xdc\x95\xf3\x60\xf6\xa1\x06\xbb\xc5\xf1\x5c\x73\x9a\xf7\x75\x1d\x90\x58\xcc\xaf\x5e\xb3\x56\x7e\xa0\x56\x3f\xb4\xe5\xbb\xdd\x5b\xd9\xe1\x12\x82\x1c\x5f\x98\x02\x63\x10\xaa\x77\x80\x99\x05\x79\x3e\x9c\x90\xe6\xa2\x93\x00\x63\x7f\x99\x2d\x3e\x35\x9e\x7f\x4d\x8a\x21\xe3\x07\x8a\x6f\xa4\xc7\xd6\x62\xb0\xa1\xce\xdc\x86\x34\x38\x23\xcd\xdd\xb5\xa8\xfc\x61\xa3\x2e\x43\xb0\x63\x3b\x36\x6b\x33\x08\x8a\x23\x47\x77\xb5\x36\x4d\xe9\xca\x34\x4c\xc2\xcd\x36\xed\x6a\x93\x8d\x0d\xda\x85\x60\xa8\x78\xcb\x6b\xe0\x0d\xd8\x61\x69\x94\x66\x01\xdb\x6c\x19\xff\xe3\xfa\xc1\xad\x54\xda\x61\xef\xd3\x82\xb1\xb7\x08\xa8\xfe\x12\xc1\x1b\x89\x5d\x1e\xda\x4b\x15\x77\xda\x09\x71\x5c\xe2\x3a\x3a\x1f\x1b\x07\x3f\x71\xdc\x9f\xf4\x99\x83\x8f\x51\x34\x81\x95\xa8\x05\x83\xfe\x86\x4a\x34\x17\xcf\x59\x87\xe5\x97\x50\xbb\xba\x7a\x51\xdd\x70\xf1\x63\x56\xf3\x84\xa4\xfc\x00\x10\xf4\xc1\x16\xaa\x77\x97\xb5\x14\xb6\x7c\xca\xad\x65\x31\x63\xb9\x53\xad\xef\x68\x88\x4d\x09\x0b\x7a\xb1\x13\xe2\x1e\x6b\xfb\xf6\x28\x78\xeb\x4f\x0d\xc8\x81\xae\xf3\x25\x7f\x9a\x8b\x5a\x36\xdf\x14\xed\xe9\x63\xa7\x67\xc0\x38\x30\x1d\xa6\x86\x84\x1c\x56\x79\x99\x15\xc5\x6d\x23\xa1\xda\x4b\x5a\xfb\xf4\xb6\x64\x63\x7a\xa5\x0e\x39\x75\xfa\x23\x3a\x69\xd7\x11\xa7\xf2\xd6\x6c\x36\xd7\x4b\x00\x14\xdc\x2d\x72\x84\x39\xe3\xf2\x25\x1b\x0c\x6e\xcb\x43\xaf\xac\x92\xab\x92\xd0\x2b\xef\xa8\x1a\x01\x36\x2d\x0b\x4f\x02\x44\x1d\xe2\x9f\xb7\x45\xbe\xc8\x65\x71\xfb\xa3\x4a\xc3\x97\x21\x0a\x46\xb5\x00\x07\x99\x8c\xa3\x07\xe1\x9d\x78\xbd\x05\x32\x12\xc7\x3f\x80\x95\xa7\xa8\x34\x5a\x03\xd4\x10\x91\x00\x03\x0f\x94\xa8\x48\x4f\x80\x53\x4f\x3f\x19\x45\x7c\x69\x2a\x46\xb2\x22\xf6\x62\x8a\xae\xc2\x69\x8e\x7f\xf4\x75\xcb\xf6\xdf\x77\xff\xaf\x59\x3b\x17\xa9\xee\x58\x35\xbb\x28\x93\x6c\xb4\x51\xc3\xb8\x04\xf3\x28\xc4\xbe\xe8\x71\x83\xb0\xb4\xa8\x8a\x22\xdb\xd6\x7c\x39\x05\x65\xed\xd7\x79\x92\x11\xe3\xec\x34\x05\x1b\x02\xe0\x70\xeb\x91\xac\xe0\xb9\x16\x12\x18\xf4\x95\xda\xc0\xec\x94\x3a\x9c\xd0\xa0\x32\xf6\xba\x59\x7b\x6d\x58\x6c\x93\x35\x6c\x44\x1c\xf7\x7f\x28\x3d\xc8\x44\x12\xc7\x3c\x8e\x2f\xf2\x24\xa3\x0d\xdf\x36\x68\x0c\xd3\xca\xdd\x6d\x1e\x4c\x1c\x0c\xfa\x3d\x83\xb7\x63\x4f\xcb\x24\x18\x3f\x42\x0b\xf6\x38\xd9\x91\x5e\x71\xee\x74\xbd\x9a\x8e\x72\x5b\x31\x6c\x47\x8f\xa4\x66\x45\x3b\xc6\x39\xd0\x25\x07\x7b\x49\xec\xe8\x1a\x38\xa9\x2d\x69\x3e\x30\x6e\x3d\xfc\x4e\x18\xc6\xac\xb5\x72\x59\x5f\xc7\x64\xb2\xda\xe4\x0b\x5d\xac\x0f\xab\x65\x88\x85\x1f\x06\xb6\x9a\x71\xfc\x8d\x7e\xab\x55\x7c\xb4\x71\x42\x0b\x93\x29\x74\xe9\x11\xc5\x8d\x46\xa8\x8c\xe3\x5f\x61\xf1\x23\xa5\x00\xfe\x56\x57\x86\x3f\x70\xbb\xc1\xbb\x69\xb0\x0b\xd5\x7e\x68\x5a\x4d\xa0\x36\x62\xcf\x62\x7a\x45\x97\x55\xf5\x49\x55\x1c\x69\x5e\x50\xa2\x79\x0b\x67\x13\x1f\xa6\x61\x7c\x9a\x77\x4e\xaf\xf3\x18\xe6\xe6\x36\x9f\xd3\x4c\xed\x8d\xaa\x63\x6f\x58\x89\x4b\x66\x96\xb7\x00\x07\x72\xd3\x2a\x7d\x9d\x27\x95\x5a\xe3\x08\x1a\x35\x9c\x30\xc6\x3d\x07\x03\x5e\x46\xd8\x2d\x65\x33\x9b\xac\x08\x0d\xf2\x58\x38\x3a\x11\xc7\xbe\x9b\xcc\xe6\x28\x69\xd8\x00\x9f\x5a\x79\x14\x09\x68\xca\x10\x34\x33\xa9\x83\xd4\x76\xb4\x4a\xed\x76\x11\xc7\x3f\xc9\x44\xd0\x46\x09\xf8\x64\x5f\x72\x0a\x3b\x9b\x1b\x5d\x16\x76\xad\xd2\x22\x6c\x86\xea\xc9\x13\xf0\x54\x6b\x70\x87\x6a\x23\x4a\x35\x6b\xb7\x1b\x90\xc8\x65\x68\x7a\x81\xa6\xb0\xcb\x11\x78\x94\x18\x57\xb4\xd2\x3a\x92\xd2\x94\x4c\xff\xee\x49\x8b\xe4\x64\xd4\x4d\x6b\xf6\x9b\xba\x49\x0d\xb3\x5e\x0d\xd4\xa1\x04\xa5\x01\xf0\xa9\x5b\xa3\xee\x76\x30\x7a\x88\x3e\x00\x75\x37\x0c\xf1\xfa\xad\xf5\xe2\xef\x90\x4d\xcb\x0d\x86\x71\x17\xdf\x93\xa3\x4d\x76\x7b\xc9\x9f\xe5\xcb\x25\x2f\x2d\x24\xb9\x76\xed\xdf\x15\x89\x6b\x6b\xbf\x37\x91\xbf\x96\x6b\x3f\xfa\x68\x84\xe7\xbc\x19\x51\x8b\xbc\x16\x1b\x7b\xa0\xb0\xb7\x88\xc1\xd0\xd5\x5b\x2f\xab\x76\x12\x74\x5b\x79\x81\x94\x13\x70\xdf\xf4\x1f\x8e\xc9\x69\x67\xbf\x5d\xc7\x9e\xdd\xdb\xad\x43\x4f\x9d\xfc\x4e\xb4\x74\x59\x36\x7d\x4b\x03\xfe\xe8\x1a\x8e\xe3\x0e\x25\x66\x93\x32\x29\xd9\x4d\x95\x94\x84\xe8\xb4\x4c\x8b\xe6\x2a\x36\x0b\x8a\x54\xfb\xbf\x9a\x8d\xd5\x11\x59\x6a\x0c\xae\x57\x9e\x8f\x93\xcb\xbc\x61\xd2\x50\x83\x39\x9d\x4b\xc8\xea\xd1\xa2\xa8\x4a\xae\xbe\x93\xfe\x98\x10\x5a\x61\x77\xa0\x96\x17\xe8\x13\x12\xff\x0a\x02\x35\x12\xcf\x19\xcf\xf8\x74\x77\x06\x9b\xed\x13\x5f\x3a\x42\xb5\x43\x69\x3f\x06\xcf\x76\xf3\x51\x5e\xbf\x01\xe2\x69\x9c\x95\x66\x6c\x53\x25\x00\xb7\x5b\xf2\x9b\x93\x8f\x25\xf8\xb6\x3b\x78\xbd\xd2\xf6\x50\x1b\xe4\x4c\xf4\xc4\x98\xe1\xfa\x59\xa2\xef\xc9\xcb\x92\xf8\x59\x70\x74\x54\x81\x57\x25\x20\x77\xd2\x8c\x6d\xd1\x30\xa9\x87\xe3\xae\x06\x94\x56\x80\x0f\x94\x9d\x8f\xf7\xfb\x31\x63\x99\x66\x7a\x2b\xa4\xeb\xef\xd6\xbc\x7c\xb2\xd9\xca\x5b\x53\x57\x05\x94\xc3\x28\xdd\x2c\xdf\xe5\x70\x54\x56\xee\x40\x53\x54\xa0\xf2\xc7\xd3\x01\xc6\xcc\xc2\x7c\xf3\x10\x60\x43\x03\xa2\xa9\x1d\x0f\x12\xf0\x97\xd5\xae\xe6\x60\x6f\x5d\xef\xf7\x7e\x89\x5f\x0d\xd1\x5e\x6a\x21\x0c\xc2\x5b\x27\x41\x19\x2e\x86\xe9\x49\xb6\x3d\x80\x55\xf9\x02\x45\xdb\xa8\x0f\x4f\x05\xad\xc8\x7e\x2f\xb5\xf3\x79\x01\x7f\xe3\x18\xd2\x08\x3f\x4d\xd7\xfb\x85\xaa\x27\x2f\xaf\x4e\x6c\xf9\x27\x78\xd4\x9e\x6c\x33\x21\x73\xc5\x34\x9f\xa0\x7b\x1f\xe0\x68\x4e\xb2\xf2\x84\x7f\xce\x6b\xc8\x52\x95\x3c\x22\xbd\xcf\xac\x3f\x3e\x54\xa3\x6c\xb9\x7c\x5b\x3d\x43\x33\xf4\x38\x7e\x93\x5b\x2f\xea\x12\xf0\x8e\x8d\xfb\x74\x38\xc8\x15\x8b\x1d\x81\xec\x8a\x17\xf4\x55\xf6\x4a\x83\xf0\xd2\x9d\x71\xae\x59\x80\xb7\x48\x5c\x55\x80\xbd\xb4\xd3\x1d\x19\x84\xf0\x18\x45\x1c\x57\x01\x1f\x56\x1c\x81\xdb\x7b\xaa\x92\x33\x56\x34\xb9\xa0\x38\x4e\x6a\x38\x32\x82\x62\x76\x7d\xdd\x10\xa0\xf2\x60\x3a\xd4\xb4\x47\xf7\xb9\xcd\xe0\xd7\x34\xf8\x65\xcd\xf8\xe4\x9c\xa4\x33\x39\xa7\x12\x63\x85\x77\x38\x28\x52\xaa\x78\x2c\x7e\x73\xf2\x59\x6d\xad\x1d\xd3\xb5\x4f\xe5\x68\xb1\x06\xf4\x48\x15\x86\x03\x30\x15\x26\x0c\xfc\x43\xec\x0e\x8d\xa6\xeb\xf1\xd2\xe3\xd8\x1e\x34\x49\xee\x7e\xc0\x4e\x40\xdf\x24\x1d\x13\x2c\x42\x6d\xa7\xd7\x25\xa8\xee\xc4\xf1\xfb\x3c\xa9\x68\x74\x09\xd2\x41\xb4\x79\x7b\x52\x86\x10\x22\xe4\xae\xb2\xac\x95\xca\xef\x10\x54\x93\x27\x6a\x8f\x25\xdc\xa2\x15\x2c\xab\xd2\x5c\x06\xf7\x7b\x1e\x80\x18\xd8\x08\x74\x54\xab\xca\xd3\x4b\x28\x21\x8d\x8e\x25\x95\xb9\x56\xd1\x4a\x73\x95\x30\x71\x05\xec\x07\xf4\x3b\xdf\x7d\xea\x87\xbb\xe7\x1f\x32\x29\x68\x63\x78\x9c\x12\xa6\xea\x54\x56\xd7\xaf\xb2\x0d\x57\xbb\x1a\xb0\x9d\xd4\x87\xb6\x9c\xbc\xc5\x5f\xbc\x5c\xda\xef\x45\x5d\x7b\x8e\x4f\xb1\xe0\xd3\xc5\x99\x9e\xae\xd3\xc5\x60\x40\xb8\x48\x0a\xba\x30\xb7\x9b\x5e\x65\x99\xe2\x6f\x78\x52\x00\xa3\x4b\xff\xc8\x93\xc2\x30\xb9\x8f\x96\x4b\xc5\xe2\x16\xb4\xb2\x5e\x8e\x2a\xb8\xc7\x7f\x04\x19\x2c\x1c\x2f\xf7\x5f\x52\x37\xfa\xb0\x33\x02\x27\x44\x43\x65\xd2\x3d\xf2\x82\x0a\x25\xf7\x7d\x00\xf2\x99\x98\x6b\x9e\x19\xce\x58\xef\xb9\xe5\x26\x40\x8c\x01\xb6\x4f\xd5\x5d\x7b\x56\x53\x6a\x8b\x80\x9b\x86\xed\x9b\xaa\x6e\x1b\x44\x75\x42\xcf\xe8\xda\x7c\x7f\xbb\x4f\x1a\x02\x43\x84\xb0\xf4\xa0\x2b\x8d\xe5\x87\xda\x4a\x25\x9b\x09\xd3\x37\x35\x8a\xf3\xde\x65\x9e\x04\x21\x41\xb5\xce\x8e\xb9\xc9\xbc\x0b\x33\x60\x5d\x1a\xd8\x26\x6e\x96\xcf\x4f\xb5\x4b\x2a\xb5\x02\xd5\xac\xc1\xa2\xd4\x43\x06\xbb\xd4\x15\xa4\xf9\x9c\x7c\x38\xa4\x13\x42\x7c\x77\xcf\x9f\xad\x70\xc8\x9b\x2a\x33\x53\xe0\xf4\xd8\x88\x97\x2a\x26\x5c\xb6\x0b\x0f\xbc\x8e\xdc\x33\x8d\x8d\x07\xfa\xd2\x54\xe0\x8c\x97\x4b\xaf\x31\xaf\xcb\x86\xf7\x67\xad\x6d\xed\x15\x59\x12\x3e\x2b\xe7\x1a\xf1\x14\x3c\xf3\x3b\x16\x4a\xc5\x58\x11\x95\xd7\xd8\x47\xae\xb1\x72\xb4\x52\xb4\xaa\xe9\x82\x46\xb0\xa7\xdc\x7a\xc4\x47\xee\x3f\x8e\xc1\xa9\xb1\x1f\x14\x5c\x92\x4a\x93\x45\x56\x8d\x0c\x26\xc0\x4f\x8e\x86\xc9\x71\x6c\x3d\xae\x9f\x78\x46\x63\xba\x8e\xc5\x9a\x56\xe0\xd3\x56\x7d\x65\x6c\xcc\x80\xff\x40\x71\x08\x3a\xe7\xaf\x5b\x96\xd5\xc1\xf8\x97\x5a\x75\x9f\x77\x5c\xfa\x38\xde\xf5\xf4\x45\x4f\x78\xe8\xfa\x50\xc1\x7e\x9f\x64\xa3\xbc\x5c\x14\xbb\x3a\xbf\x06\xc5\x93\x29\x46\x9c\x31\x99\xea\x2f\x49\x14\x81\x81\x35\x01\x2e\x63\xbd\xeb\x68\x66\xee\xa2\x7d\xb1\xdf\xf7\x4d\x25\x1e\xdb\x40\xac\x8f\x35\x5d\x29\x60\x0f\x7b\x55\x82\x26\xcb\x54\x85\x9f\x43\x8d\xb2\x3a\x97\xe4\x34\x29\xc1\x11\xb5\x9b\x62\x7d\x2a\x65\xda\x39\x37\xd5\xce\xfc\x54\x7a\x62\x4d\x85\x4f\xca\x03\xc0\xc6\x66\x84\xee\xfe\x9f\x8c\xd8\x57\x35\xfe\xeb\x06\xeb\x6b\xc6\xea\xeb\x27\xe8\x9e\x01\xb3\x23\xa5\x92\x0e\x25\x75\x7d\x71\x43\x38\x94\xe1\x20\x2a\x76\x37\x23\xb4\x60\x13\xc5\x03\x78\x66\x8b\x74\xa1\x58\x70\x0c\x32\x8a\xf0\x83\xa4\x98\xe6\x29\xfa\x12\x77\x67\xd0\x8a\x8d\x4f\x57\x67\x9e\x18\x62\xe5\xe1\x65\x27\x6b\x56\xcf\x56\x73\x70\xc7\x9e\x2c\xd9\x45\x99\xec\xe8\x5a\x0f\x08\x21\xd3\x22\x8e\x93\xb5\x22\x3c\x98\x7a\x69\xdb\xaa\xbe\x06\x0b\x92\x42\x64\x7e\x00\xa5\x18\x55\x21\x56\xb6\x0b\x2a\x03\xc5\x15\xba\x74\x52\x89\x64\xcd\x76\xba\x52\x5d\xfe\x80\x2d\x8c\x3c\x6e\x8d\x32\x0d\x6c\x4c\xed\x35\x66\xbf\x4f\x30\x8e\x2d\xa8\x6a\x97\xba\xd1\xf9\xd7\xb7\xb5\xf6\x63\x7a\x82\xa9\x06\x47\x93\x1d\x6a\x60\xf2\x3e\x95\x49\x4d\x08\xdd\x01\x77\xa7\x82\x76\x2a\x68\x47\x90\xf7\xdc\x32\xad\xec\xd3\x2f\xb0\x07\x1b\x7a\x1d\xce\xc0\xf0\xa1\x8a\xbe\x3e\x1f\xc7\x71\xed\xf5\x3d\x18\x68\x2d\x62\x9c\xad\xe6\xd8\x57\xf4\x2b\xde\x5a\x1b\x90\x00\xfb\x89\x4f\x11\xc8\xce\xf5\x5c\xa9\xd7\x50\xdc\x16\x73\x6d\x48\x4f\x7f\xed\x2c\x43\xb0\x75\xc4\xf6\xd3\x7d\x67\xe6\x60\x20\xfd\x33\x53\xfb\xb4\x10\x5a\xc0\x24\xf4\x7e\x11\xd0\x5c\xb8\x58\x99\x23\xac\x71\xbf\x02\x3d\x0d\x3c\xd3\x24\x9c\x69\x07\x7b\x8a\x63\x4d\x53\x8e\x30\xe7\xb6\x59\x6f\x03\xc4\xee\x0e\x49\x1b\x93\x33\xb8\x78\xd5\x1f\xa3\x01\x1f\xe5\xcb\x06\x1c\x0e\x90\x6b\x27\x8e\x1e\x83\xa7\x10\x30\x04\xf2\x26\x05\xce\x27\xed\x7d\xe3\x55\x9e\x08\x75\x1e\xd9\x03\x29\x3f\xe0\x65\xb8\x64\xfa\x3c\x6a\x54\x00\x3f\x4b\x27\x46\x6b\x32\x05\x6d\x0a\x25\x90\x42\x95\xb3\x7c\xae\x25\x54\x19\xe1\xa9\xc9\x57\xb3\xf1\x69\x7d\x96\xb9\x7c\xb5\x9b\x96\x1d\xcb\x66\xf5\x9c\x16\x6c\x7c\x5a\x58\x33\x8b\xd3\xc1\xa0\x50\x57\xef\x6a\x56\xcc\xed\x39\xbd\x33\x3b\xc0\xa8\xc3\x9d\xf0\x5e\x65\xa7\x1f\xbd\xf7\xab\xa3\x78\x96\xcf\x59\xe6\xb9\xc1\xb4\x03\xff\xa3\xf7\x0a\xc9\x9b\x47\xa2\x7f\xd6\xb7\xfd\x40\xa3\x03\x68\x9c\x7f\x27\xce\x49\x38\xe9\x85\x17\x1e\x98\x69\x57\xe3\x4b\xef\xb8\xff\xea\xf2\x83\xfb\x4f\xa3\x7c\xe9\x15\xfe\x4b\xc8\x33\x86\x14\x79\x38\x49\xc7\x2e\xe9\x9b\x23\x49\xf1\xb4\x08\x92\xfe\xd9\xf0\x09\xee\x8b\x9d\x86\x32\xf8\x09\x4e\x76\xfb\x4c\x34\x1d\xba\x72\xfd\xa6\x42\x81\x9f\xc0\xcf\x4a\x71\x10\x68\x2a\x44\xd1\xb3\x32\xd9\xef\xa1\x07\xc3\x5f\x4a\x0d\x97\x62\x9c\xd1\x0c\x2b\xc4\xd3\xc1\x2c\xb2\xa2\xb9\xa2\xca\xfb\x3d\xf4\x62\xf8\x06\x92\x1b\x0d\x35\x75\xb9\xcf\x97\x43\xb5\x4d\x5c\x1f\x1e\x37\xac\xe8\x41\x4f\xa9\x31\xdf\xa5\x3d\x17\x72\x6a\xfc\xb1\x7a\xef\x0f\x49\x8e\xe0\x4e\x76\xd3\xbb\xfb\x96\xf1\xfa\x37\xc5\x7e\xa4\xd0\x3a\x7d\x86\xfe\x59\xaa\xe3\xde\x2c\xd4\xb3\x31\xb8\x30\x64\x36\xa0\x83\x23\x7c\xe5\x4f\x0d\x34\xbc\x3f\xf6\xf8\xfe\xe7\xed\xe8\x89\x17\xfd\xa2\xed\x70\x8f\x21\xef\x47\x68\xa6\xfa\x5d\x35\xfb\x9d\x91\xfb\x76\xa5\xdb\x91\xa0\xdf\xd9\xea\x3d\xa6\x28\xec\x5e\xc4\xe9\x1d\x13\xba\x50\x93\x55\xe8\x07\x33\x9c\x5a\xbb\x5f\xd5\x0c\xe7\x84\xae\x30\x89\xac\x68\x89\x93\xe9\x12\xbc\x51\x09\xd0\xf3\xe2\xe2\x9c\x8d\xe3\x78\x75\xc6\xc6\xfb\xfd\xe2\x0c\xbe\xcf\x19\x8c\x23\xfe\x72\x8d\x0a\x57\x71\x1c\xe7\x8d\x2d\x60\x6a\x13\xe4\x9c\x8d\x53\xef\xd7\x98\xec\xf7\x58\xcd\xbf\x59\x18\xf4\xae\x24\x67\xa6\x38\xf3\x7b\x6c\x7d\x3f\xf6\xc7\xfe\x8d\xe6\x69\x78\x00\x9d\x4a\x06\xb3\x7d\x4a\xb8\xd9\x18\x43\x87\xde\xe0\x34\x5c\x6d\xfe\xbf\x82\xbd\x68\xe6\xb5\x64\x4f\x01\xe9\xd7\xac\x25\xc6\xca\xa9\x4c\x01\xab\xc1\x65\x7d\xe6\x51\x9e\xf3\xe0\xca\x69\x91\x9a\x7c\x8c\x09\x73\x06\x80\x04\xa4\xf4\x12\x7d\x11\x74\xc2\x34\x03\xea\x1f\x4c\x5c\x0b\x7e\x08\x1a\xff\x39\x8e\x65\x73\x29\x8a\x16\xf3\x1b\x1c\x2d\xf9\x2a\x49\x4a\x38\x59\xda\xbb\xd0\xe3\xdc\x90\xa8\xd8\xf1\xc7\xb3\xcb\x64\x70\x82\xc3\x38\x1e\x9b\xb4\x71\x5c\xb6\xa6\x1d\x45\x8d\xbf\x1a\x80\x79\x6f\x3a\x6d\x87\x7e\xf5\x19\x77\xac\x1b\x9e\x86\xf5\xc5\x52\x04\x5b\x02\x06\xc8\x8c\x0d\xe4\x44\xdc\x04\x7a\x51\x6a\x04\x85\xe0\x0a\x27\x2c\x77\xa7\x58\x48\x71\x6c\x55\xaa\xfa\x1a\xfc\xaf\xeb\x78\x93\x9e\x05\xe3\xed\xd3\x36\x35\xb0\x8a\x34\x7b\xd1\x47\x48\x5d\x3f\xef\x1a\xc8\x3c\x60\x8e\xf4\x50\xe4\x70\x15\x51\xff\x1b\x2e\x4a\xed\xd9\xbc\x73\xa0\x01\x15\xab\xab\x87\xc4\x4e\x41\xee\x4d\x41\x59\x25\x1f\x4b\x42\x3f\xfe\xc7\xba\x02\x47\x5f\x62\x7b\x4e\x73\x6a\x7c\xaa\xbd\x19\x37\x24\x1e\x83\x01\x27\x7e\x38\xf8\x36\x44\xf1\x5e\xaf\xa1\x30\x40\x0e\x87\xb0\x91\x1d\x4f\xa9\x81\x56\x93\x96\xc7\xc0\x82\x01\xdf\xfa\xb0\x27\xdf\x95\xec\x62\xf4\x02\x50\x82\xd5\x98\x77\x5d\x1b\xbd\x9d\x73\x92\x97\x27\x82\x88\xa6\x45\x02\x78\x02\x56\xb5\xcc\xca\x39\x03\xee\xaf\xd7\xd4\xc5\x28\xab\x25\x67\xd2\x93\x66\xfd\xcb\x56\xf1\x29\x4f\x24\x39\x4b\xb4\x2e\x05\x48\x20\x43\x0f\x4c\x80\x5d\x1a\x40\x3d\x83\x97\x36\x8e\x5c\xbb\xf0\x08\xd1\x6f\xe6\xad\xcb\x28\xe6\xea\x37\x45\xcb\x8c\xe8\x37\x45\xc3\x96\xe9\x07\x52\x98\x4e\x93\x08\x37\xf5\x9f\x55\x12\xa8\xed\x52\x0e\x5d\xb0\xda\x1c\x91\xf1\x0b\x9b\x9e\x08\x5e\x00\x92\xf5\x69\xd4\xe3\x23\x0f\x1e\x5b\x9d\xc6\x03\x16\xa1\xdf\x9d\x21\x80\x9e\x9c\x0c\xa3\x81\x6c\x41\x71\xfb\xb0\x31\xd1\xf6\xf3\x29\x18\x3d\x5b\x6f\x30\xba\x18\x74\xf6\x74\xe2\xe7\x0f\xfd\xbb\x06\xf9\xdf\xa8\x5b\xaa\x15\xb2\xf3\xac\xde\x09\x4e\x5f\x56\x09\x80\xad\xd0\x19\x76\x66\x6e\x06\xd0\xbb\x46\xe8\xb7\x56\x4c\xe0\x6b\xaa\xfa\xde\x44\xd5\x26\x79\x57\x12\xfa\xee\xde\x4d\xf2\xff\x73\xf7\x6e\xeb\x6d\x1b\x59\xa3\xe0\xbd\x9e\x42\xac\x49\xd0\xa8\xb0\x48\x91\x92\x6d\x59\xa0\xca\xdc\x3e\x26\x4e\x27\xb6\x13\x3b\xdd\x9d\xa6\xd8\x6e\x10\x28\x8a\x15\x83\x28\x06\x00\x25\xab\x05\xcc\xb7\xef\xe7\x9b\xef\xdb\x8f\xb0\x2f\xe6\x7a\x1e\x62\x3f\xc5\x5c\xff\x4f\x32\x5f\xad\x3a\x02\xa4\x6c\xa7\xf7\x3f\x17\xb3\x79\x01\x02\x75\x5c\x75\x5a\xb5\x6a\xd5\x3a\xec\x13\x9a\xb1\x97\x8b\xc6\xf1\x8d\xb9\xaa\x56\x7e\xd7\xe8\x6b\x1e\x16\xde\x15\x7c\x1e\x04\x55\xdb\xcb\x03\xf7\x49\x59\x8e\x2b\x49\x7f\x43\x09\x12\xe5\xb7\xd8\x7d\x07\x95\xe5\x76\x87\x06\xa5\x68\x97\xce\xfa\xd2\xeb\x2f\xb9\x76\xfe\xf3\x96\x87\x85\xf3\xa2\x34\x02\xdf\x91\xe0\x81\x4b\x28\xd9\x87\xae\x7a\x3c\xcc\xdd\x82\x0c\x04\x26\x20\x36\x93\x3b\x4f\x3d\x8d\x5c\x97\x7f\xfd\xf2\xcb\xfb\x95\xf6\xca\xdb\xea\x27\xaf\x4f\x0e\xbc\x54\xee\x06\x3c\xb7\xb0\x0f\xd8\x41\x1e\x04\x21\xb4\xc0\x80\xdd\xcf\x41\x22\xe3\xdb\x2a\xac\x5a\x9e\x0a\xf6\xbb\xe6\xf9\x3d\x0f\x95\x1a\x4b\x83\x35\x4e\xf8\xd5\xe0\x84\x1d\x6c\xa0\x38\xa2\xec\x63\x45\x19\xf9\x51\x41\x40\x8c\x28\xa1\x86\xb1\x98\x6a\x5f\x59\xd1\xd8\x5b\xed\xdf\x6a\x45\x7a\x9f\x4d\x0b\x27\x24\xb7\x76\xff\xdc\x65\xad\x4e\x3c\x63\x87\x4a\x10\xef\x28\x9c\x46\xff\xa8\x2f\xca\x3e\x06\x2b\x09\xe1\x22\x4e\x3e\x5c\x16\x62\x9b\xa7\x03\x3c\x0d\x2f\xde\xf6\xf1\x91\x39\x5d\x2a\xfb\x87\x8c\x32\xab\x65\x54\x28\xc1\x3d\xdc\x37\x41\x3a\xa0\x5f\x78\xb2\x7a\xc6\xc8\xeb\x6c\x3c\x9f\x22\xed\xf4\x5a\x7b\x7e\x50\xef\x5a\x2c\xa5\x9a\xe5\xf3\x69\xa5\xd0\xdd\xf1\x3c\xf2\xdc\x6c\x20\x80\xb1\xc4\xa8\x2f\x63\xfa\xf2\xf3\x2b\xf9\x89\xb5\x60\xac\xc4\x8e\x75\x0d\xff\x7d\x8a\x0e\x55\x32\xb7\x00\x5d\x7f\x7c\xe5\xfb\x49\x59\x64\x71\xfe\x41\x0e\x89\x43\x65\x36\x48\x1f\x68\x3c\x8b\x90\xa6\xdf\x3c\xbb\x92\xa1\xe7\x00\xf3\x50\x99\x82\x74\x25\x4c\xbb\x01\xa1\x36\x1b\x89\x23\x2d\x37\xed\xc0\xfa\xc9\xd3\x7b\x6a\x2f\xcc\xf1\x48\x71\xec\x73\x30\x5a\x3b\x9a\x77\xaa\x2f\x30\x54\x62\x16\x1f\x1b\x82\x69\x58\x7b\xd1\x5c\x29\x99\x63\x2d\x9d\x6a\x2f\x5c\x76\xae\x4a\x65\x69\x87\xa8\xaf\x4c\x19\xf7\xd1\xe1\x32\xe6\x19\x4b\x0f\x2b\x71\x18\xa7\x57\x71\x9e\xb0\xc3\x12\x04\xe3\x87\xc8\x9b\x5b\x7f\xf3\x81\x36\x81\xdc\xb3\x55\x58\x2a\x13\x71\x5a\xde\x91\xe5\x69\xb4\x04\x41\xcb\x52\x7b\xf5\x19\x6a\xc9\xc9\x10\x13\xb9\xa8\x23\xa1\x74\x3f\xb4\xed\x4c\x36\x2d\x41\xd2\x4d\xa4\x8c\x24\x38\x4a\x1a\xb8\x27\x12\x24\x56\x5b\x0c\x29\xa9\x8a\x3c\xa8\xe8\x0f\x2c\x8c\x89\x71\x4e\x4a\x32\x49\x0f\xc7\xfa\x1e\x4c\x9e\x6b\xca\xca\x5d\x28\x17\xf2\x14\x23\x5b\x7e\x95\xcb\xd3\x04\xfb\x58\x91\x1d\xa3\x35\x8a\x5b\x95\x03\x1f\x6d\x36\x57\x7c\xd0\xa5\x12\x66\x1f\x26\x2b\x1c\x04\xbd\xe5\x90\x89\x2c\xc4\x13\xac\x1b\x47\x55\xc3\x04\xfd\x29\x0f\x4b\xb2\x24\x09\x18\x56\xd8\x2a\xd6\x06\x07\x59\x06\x2b\xed\x3a\xdd\x46\x3c\xf4\xba\xf1\xef\xde\x01\x10\x58\xa4\x9a\x61\x5b\x0c\x7d\x13\xec\x7a\x89\x28\x7e\x9f\x83\xd8\x4f\xe2\xda\x3f\x22\x89\xc2\x06\xb6\xa9\xfb\x5a\x49\x56\x5e\x41\xbe\x4d\xf7\x20\x98\xc9\xdc\xca\xc0\x32\x52\x4e\x5d\xff\x9c\x87\x5f\xc9\x93\x71\x8e\x89\xc0\x13\xd7\x01\x72\x25\x2d\x95\x8c\xb9\x2d\x6b\xd7\xbe\xfa\x34\x2c\x69\x6f\x4c\xe2\x20\xa8\xb8\xa2\xcf\x09\x64\xc2\xea\xcf\xfa\x49\x25\x5b\xed\x15\x64\x4b\xff\x9c\x87\x3f\xc9\x0a\x97\x24\x27\x2b\x59\x29\x59\xa9\x9e\x49\xe9\x4a\xe2\x16\x39\x53\x0f\x52\x18\x23\xb4\x1e\xa0\x7e\xb8\x9d\xa6\x7d\xb9\xf4\xb7\x51\xaa\x68\xf0\x5e\x59\xd7\x49\x8f\x6e\xb5\xc1\xd7\xec\x5c\x0f\xd6\x04\xf3\x30\xa3\xd6\x51\xa0\x99\x9f\x59\xff\x3e\xbb\x87\x49\x82\x0f\x12\xba\x6d\x5a\x03\xdb\xd8\x02\x36\xa2\x9c\xb4\x9d\xc2\x43\x09\x72\xf0\x55\xfe\x03\x1e\x6e\xe4\xf0\x67\x74\xe3\xad\xef\xef\x77\xf4\x1a\x67\xc6\xb3\x90\x9c\xc2\xdf\xb2\x7c\x4e\x04\xbd\x6d\x0e\xd4\x64\x30\xf3\xd2\x38\xa1\x22\x45\xd7\xcd\x93\xbe\xa3\x92\x14\x27\x11\xbe\xf6\xa0\xf2\x96\xcb\x3c\xa7\xa3\x59\x7c\xe3\x91\xc2\x76\x7a\x75\x93\xcc\xe2\x39\xd9\xd2\xb1\x9c\x3d\x2d\x28\x94\xe1\xf7\x5d\xe3\xf7\x8e\x15\xb6\x9d\x64\xe7\xc6\x86\x6e\x4e\xf9\x6c\x3b\x3f\xc8\x1f\xc1\x21\x43\x93\x0e\x5b\x32\x26\x8c\xf0\xd9\xb6\x3f\x9e\xcb\x09\xb4\xed\xd3\x63\xe2\x8d\x80\x3c\xaf\x36\xc0\x60\xe3\xcb\xb0\x1c\x8a\x4d\xfc\xfb\x96\x61\x9b\xbd\x20\xdb\x41\x41\x18\xb8\x3b\xd2\xd0\x4a\x8a\x0d\x93\x2d\x2d\xfa\xc7\x8a\x51\xae\x0e\xb9\xe7\xdb\x49\xd1\xa7\xc7\x86\x8d\xc2\x67\x45\x7f\x3c\x3f\x50\x7f\x34\x14\x53\x21\x27\x48\x84\x10\xee\x77\xca\x6a\x1a\x77\x21\x7d\x0b\x4a\x47\x65\xc4\x09\x5c\x97\xb3\x32\x12\x43\xbd\x69\xc1\xb5\xb9\xd9\xb5\xa6\xda\xf9\xa5\x1b\x65\xc6\x5b\xbe\x30\x94\xf6\x52\x59\xd7\xe6\x6d\x36\x9a\xf7\x68\x67\xdc\x4d\xb7\x01\x8e\x7a\xcd\xc1\xaf\x22\xa7\x7a\xbe\xb4\x8e\x89\x9f\x5e\x60\x65\x1e\x7a\xf3\x25\xc7\x11\x98\xcd\x82\xaa\x40\x91\x1d\x34\xc7\x14\x18\x94\xeb\x17\xc2\x87\xba\x89\x53\x1d\xf7\x54\x7d\x52\x1b\x11\xb5\x23\x40\xd5\xaf\x95\x52\x39\xb4\x28\x28\x35\x9e\xc5\x0a\x91\x57\x5c\xe9\x08\xfa\xdf\xfd\xbe\x35\x51\xa3\x6b\x77\xfd\xa6\x71\x82\xb7\x3a\xbc\xa6\x88\x4f\xa1\x30\x98\xf6\x5a\x82\x81\x0a\x40\x25\x79\x5d\x8f\x88\x46\x5a\x5f\xe5\x21\x27\x05\x9e\xf4\x84\x41\x57\x3f\xc9\x10\x21\x77\x81\x56\x2e\x49\x7b\xff\x9a\x63\xf2\xab\x4f\x63\x82\x9f\x19\xb1\x47\xc5\xee\x35\xd7\x02\x76\x8a\x01\xc3\xe9\x6d\x43\x72\xde\xb2\x57\xc4\xb9\x33\xaf\xad\xfc\x74\x96\xdf\xec\x1a\xed\xf7\xae\x8c\xab\x16\x06\x9e\xe6\x3c\x2a\xb8\xa5\x2c\x66\x6c\x2e\xe9\xed\x19\x9b\x53\x6b\x74\x29\x3c\xba\x78\xdb\x3f\xba\x84\x55\xf1\x55\x80\xb0\xb7\xa3\x08\xee\xf3\x6d\x9c\x10\x98\xbd\x8f\x21\xe5\x14\x6d\xe2\x34\xe5\xf9\xe5\x00\xdc\x9d\x46\x87\xc3\xf1\xe6\x23\x52\xb2\x37\x24\xa7\xb7\x9b\x82\x45\x32\xe3\xa6\x60\x88\xcc\x8a\xb6\xbc\x98\x32\xe5\x48\xb4\x2f\xaf\xa8\x20\x89\xc8\xa2\x11\xd9\x88\x32\x1a\x91\x64\x1d\x31\x02\x6a\xed\xa0\xe4\x54\x46\xa1\xa8\xeb\x12\x64\x60\x2e\x59\xa5\x4c\xb4\x77\xfc\x51\xe1\xe6\xa0\x32\xe7\x29\x5f\x5d\x5f\x51\x40\x34\x04\xb7\x1a\xd5\x54\xfd\xe9\xd5\x10\x8d\xb0\x13\x65\x88\xc9\x96\x72\x1d\x3f\xe3\x83\xf1\x3c\x52\xbb\xfd\x41\x0e\x53\x62\x44\x72\x25\xc2\xf5\x81\xe5\x34\xe6\xe4\x2f\xbe\xc7\x29\x5d\xaf\x3c\x6c\xc7\xf4\x1d\x0f\xb7\x58\x79\x0d\xb0\x19\xb6\xdc\xfb\x22\x20\xa8\x3f\x5c\xc7\x1b\x3a\x9b\x93\x84\x87\x5b\x92\x13\x58\xf7\x5b\x52\xf5\x3c\x2f\x37\xec\x63\xc5\x8a\x3c\xce\x7e\x54\xc5\xa7\x41\xf0\x1a\xca\xc6\x64\xdb\x5d\x51\xed\x00\x83\x6b\x00\x08\xfd\x4e\x5f\x88\x3b\x52\x91\xdc\xe1\x26\x84\x76\x4a\x77\xd8\x0a\x8a\xb3\x5f\x7b\x0a\xb4\x71\xc4\x4b\xa7\x0a\xc5\x04\x18\x6f\xeb\x78\x63\x85\x57\xd5\x17\x6c\x42\x23\x22\xfb\x57\x4f\x86\xa1\x3c\x3c\xe7\xa9\xd2\x1f\xfd\x7d\x5f\x3f\xab\xd2\xf8\x34\xb4\x43\x0e\xbd\x09\x05\x12\x17\x06\xfe\x50\xe9\x6d\x83\xa3\xb0\x9d\x52\x4b\xbf\x7a\x01\xfe\x25\xa4\x0c\xc0\x24\xec\x94\xd3\xce\xa3\x82\xbc\x5c\xb7\x8d\x22\x18\x4a\xc3\x1b\x77\xcd\x01\x55\x2e\xd9\x98\x49\x78\x74\xb1\x48\xd6\x83\x2a\x5e\x5c\x2c\xf4\x42\xce\x9c\x40\x15\xae\xeb\x6c\xf8\xfb\x96\x15\x37\xca\x26\x86\x28\x82\xa0\x13\x10\xa2\xa1\xca\x8f\xf4\x0c\x33\x75\xd8\x42\x28\x52\x09\xc0\xe3\xd9\x60\x15\x27\x1f\x90\x3d\xc3\xfc\x04\x9a\x02\x05\xcb\x53\xe3\xd5\xc7\x92\xb4\x12\x67\x31\xac\xfe\x5c\x61\xbb\x03\xde\x49\xb0\x3b\xce\x24\x77\x38\x24\xe6\x1e\x55\x5a\x92\xad\xb9\x01\x53\x1d\xa4\xcd\xae\xa9\x15\x0e\x0b\x4f\xe3\xa4\xc3\xdb\x13\xd2\x1c\x5d\x92\x92\xe3\xa8\x22\x09\x88\x3a\xee\x71\xa1\x48\x96\xb4\x37\x96\x07\x94\xc4\x68\x5f\xe2\xdb\x4b\xa7\xd2\x9d\x14\x2c\xae\xd8\x33\xfd\xf9\xa2\x88\x2f\x95\xee\xb1\xc5\x0c\x2b\xe5\x9a\x32\x81\xf1\x51\x2e\x72\x56\x07\x8a\x38\x4c\xc0\x76\x63\x58\x61\xb2\xa1\xe9\x34\x55\xc7\xd1\xc1\x2a\xb2\x77\xdd\x70\xe9\xb5\xd1\x37\xe1\xdd\x3a\xdf\xb1\x8f\xc0\x99\x09\x33\x7d\x9e\x5d\x91\x55\x7f\x83\xf1\x81\x08\x82\xf8\xfc\x6c\x7a\xd9\x9a\xe0\x9e\x7c\xed\x7a\x8e\x71\xd4\x8e\xd5\x2e\xb0\xf5\x32\x61\x5a\xc7\x6c\x23\xca\xfe\x86\x40\x5c\x22\xb2\x3e\xdd\xe8\x30\xba\x01\x9a\x35\x35\xce\x34\x97\xe1\xaa\x4f\x37\xfd\x31\x41\x17\x15\xa2\x34\x9d\x8d\xe6\x0a\xe6\x2b\xd5\xa9\x5d\x43\x9b\x37\xf4\x6a\x00\x45\x7e\x7d\x35\x09\xd7\xf4\x2e\x40\x37\x22\xbc\xc1\x04\xd9\x99\x88\x3b\x22\xbd\x85\x00\x37\x72\x9b\x82\x95\x46\xe7\x10\x61\xb2\xde\x15\xfc\xad\x94\xb1\x9b\x0b\x65\x4d\x10\x9a\x72\xe3\x5c\xd9\x5c\x14\x1a\xe6\xba\x46\x17\xb9\x85\xff\x13\x80\xb9\x2c\x53\xf4\x1f\xff\xed\xff\x44\x11\xfa\x8f\xff\xf6\x7f\xed\xf1\x71\xb9\x03\xb1\x85\x05\xaa\x30\xb0\x8c\x01\x16\x59\x61\xab\xb7\xf6\x3b\xdb\x0c\x21\xeb\x67\x0a\xfe\x77\x67\x80\x01\x67\xff\x54\x18\xab\xa9\x00\x3a\xcf\x8d\x82\x59\x67\xb1\x56\xbd\xe5\xa0\xef\x2c\x0e\x37\x51\xd5\x05\xf3\x9e\xa2\xed\xa1\xea\xd2\x00\x1f\x04\xe1\x12\x84\x46\xf5\x94\x33\x29\xe0\xc6\xa2\xae\xf3\xba\xe6\x75\xbd\xac\xeb\xad\x9a\x69\x0b\x5a\x48\xc4\x00\xbc\xb0\x45\x9f\xe6\xca\x7a\xe0\xa2\x4f\xb5\x84\xfb\x7b\x5f\xc0\xfc\x72\x4e\x16\x64\xeb\x54\xeb\x83\x20\x7c\xaf\xdd\x90\x96\xaa\x1b\x76\x37\x88\xf7\xb8\xd9\x1f\x71\x89\x3d\xb2\xba\xe4\x6d\x21\x10\x74\x88\x48\x5b\x3a\x70\x70\xac\xae\xe0\xfb\xb4\xf8\xfa\x78\x0a\x34\xfe\xff\xf8\xef\xc8\x6a\x41\x03\x4b\xc8\x95\xb7\xe5\x2d\x46\xbe\xa5\xef\xec\x09\x5c\xe3\x3b\xca\xa7\xbc\x8f\x0e\x93\xf5\x00\x98\x7b\x83\x85\x28\x52\x56\xa0\x08\x75\x43\x2c\x5a\xca\x68\x01\xfd\x9f\xd0\xac\x6f\xef\xa2\x27\x0e\x76\x25\x00\x63\x79\xad\x4b\x43\xbf\xac\x68\x35\x5b\xc2\x7d\xed\x6a\x58\x89\x47\x59\x10\xac\xb4\x38\x56\xa6\xd0\x41\x63\xa2\x68\x62\x79\x55\x1d\x78\x0f\x20\xc0\x32\xe6\x64\xea\x41\x86\x21\x81\x22\xf9\xc8\x16\x13\x25\xfd\x44\x72\x6a\x12\x9a\x64\x19\x95\x6f\xfe\xcd\x67\xb6\x43\x94\xf7\xf2\x20\xf0\xaf\x91\x0e\xb8\xba\x94\xdf\x37\xf5\x08\xc7\x44\xa6\x87\xc5\xd7\xf6\x6f\x96\x33\x96\x96\x4f\xd5\xa0\xdb\xd5\x16\x04\x21\xaf\xeb\x90\xd3\xfd\xf3\xa1\x33\xf9\x8d\x31\x0a\x35\xf7\x30\x98\xb6\xdd\x59\xbb\xea\xb6\x07\x91\x62\xc8\x53\xac\x0d\x5f\xee\x42\x53\xb2\xea\x97\xdc\xb8\xa3\x0d\xf9\x5d\x33\x95\x63\xb7\x68\x5c\x1f\x25\xbc\xed\xd2\xb5\x7d\x23\xc8\xb5\xd3\x64\x22\xe8\xa8\x2d\xaf\x00\x23\x46\x32\x92\x90\x25\x59\x91\xd4\xda\x75\x22\x1b\x3a\x22\x6b\x1a\xbe\xa6\x63\x82\x10\x26\x57\x6a\x9b\xe3\xcb\xf0\x8a\xd2\x0d\xbe\xdd\xd2\x8c\x26\x74\x49\x4b\x8a\x10\x51\x0e\x54\xc9\x15\x1d\x1f\xb9\x5b\xb0\x1b\x72\x29\x09\xd3\x05\x1d\x4d\x16\xbe\x38\xc4\x42\x81\xf8\x9e\xe6\xb3\xc5\x9c\x5c\xd3\xf7\x46\x10\xd1\x97\x25\xbc\xd6\xb2\x84\xef\xf5\xed\xe0\x26\x08\xae\xbd\xf1\x9e\x5e\xaa\x81\xbe\xc6\xd1\x7b\x3d\x3d\x37\xf6\xf2\xf0\x3d\x5c\x1e\xca\xe7\xa3\x4d\x5d\x5f\xfb\x57\x90\xef\xe1\xca\x73\xe3\x95\x8b\xa7\xfa\x2a\xe2\x3d\xdc\x3f\xbe\x87\x2b\xc7\x4d\x10\x5c\x3d\x52\x01\xe1\x15\xc4\x90\x8c\xca\x5e\xb8\x6e\x11\x35\x5b\xc5\xe0\xf5\x02\x21\x45\xa9\x38\x63\x61\x39\x2d\xfb\x68\xa2\x0e\xf9\x10\x2c\x63\x9d\x84\x7b\xab\x71\x61\x62\xca\x72\x09\x64\x72\x23\x02\x6f\x40\xbf\x0a\x82\xf0\xa6\xae\xc3\x1b\x8f\x66\x74\xa9\xc8\x7b\x10\xa7\xbd\x56\xc8\x2e\x08\x7a\x4b\x40\xb3\xd7\xc6\x79\x72\xab\x2f\xc2\xde\x0a\x44\x4c\x8c\x2c\x20\xb9\xd6\x22\x26\x2b\xfa\x1e\x9b\x7e\x7d\xa4\xbb\x42\x6b\x4a\xca\xce\x80\xdb\x58\x89\x05\x6e\x60\x12\xa9\xf1\xbd\x31\xe3\xbb\xe8\xd3\x63\x7c\x33\x5b\xf4\xc7\x73\x05\x6d\xa6\x1a\x76\x33\x5b\xcc\x15\xef\x7e\x55\xd7\x2b\xdb\xfb\xae\x84\x4b\x7f\x86\x64\xa0\x32\x41\x2e\x4d\xa6\x15\x48\x34\x2a\x79\xd1\x11\x86\x09\xc8\x97\x21\xa4\x0a\x8d\x80\x63\x25\xa6\x69\x7f\x0c\xb2\x93\x78\xb0\xb1\x22\x8e\x6d\x01\x48\xe2\x52\x1b\xad\xab\x95\x99\x13\xe1\x8a\xf6\xc6\xb8\x91\x4d\xdb\x3c\xa2\x86\xfa\x31\xd3\xf9\xb9\x63\x12\xa5\xe4\x0a\xeb\xc5\xa0\xf5\xe5\x3e\xd2\x4d\x7f\xed\x09\x32\xf5\x34\x83\xf0\x2d\xfd\xf8\xe8\xf9\x74\x6d\x51\xe1\xf3\xc1\x06\x47\xeb\x83\xca\x1e\xe2\xc2\x8a\xbc\x25\xf1\x34\xee\x6f\xa3\x2d\x49\xc8\xa6\xff\xd6\xa8\xfc\xd2\xab\x69\x16\x21\x44\x96\xa4\x84\xde\xfe\xf8\x88\x3e\xc7\xb7\x6b\x6a\x0a\x93\x45\x91\x0d\x7d\x7e\xa0\xb0\xf2\x86\x7e\x24\x09\x45\xa8\x59\x5b\xc3\x6b\x82\x08\x5a\xcc\x5e\xf7\xfb\x73\x4c\x62\xca\x79\xa8\x3e\x48\xe5\x51\x21\x58\x6d\xf4\x87\xa6\x95\xaf\xe9\x78\xf2\xda\x49\x4e\xbc\x96\xa3\xd9\x82\xb6\x53\xf8\x1c\x13\x5d\xf0\xb8\x53\xb0\xc7\x04\x58\xb6\x77\xb9\x11\x75\x92\xe1\x20\x48\xa1\x65\xc3\x83\x00\x21\xea\xc9\xdf\xca\x29\x2a\xd1\x64\x5d\xb7\xe8\xa6\xbd\x3e\xb2\xbd\xda\x56\xfc\xd3\x77\x01\x87\xc5\xb4\x00\xef\x70\x2d\x39\x4a\x01\x37\x7e\x1c\xdf\x86\xbb\xe6\xdf\x14\xee\xa4\x15\x61\x1e\x17\x0b\x70\xb8\xcf\xd4\x02\x7e\x85\xb6\x13\x54\xea\x58\xe0\x71\x69\x4e\x86\xbe\xb1\x86\x7d\x1a\xa2\xe1\x4d\xc7\xc2\x5d\x19\x01\x09\xbf\x02\x6b\xf1\xf9\x7c\x2a\x03\xa3\xf1\x01\x77\x37\xdd\x5a\x53\x8a\xe3\x06\x2b\x80\x49\x0e\x5a\x2d\x0c\x1c\x18\xe4\x97\xea\x30\xe6\xf5\x46\xdc\x65\x91\x32\x22\xe8\x6c\x0e\x96\xbd\x25\xa1\x22\x9c\xc8\xec\xaf\x79\x98\xcd\x8a\x39\xe1\x61\x81\x49\xee\xae\x09\x94\x56\x4c\xa9\x07\x0d\xb4\xc7\x00\x21\x6a\xae\x6c\xa2\x64\x7e\x4a\x7d\xc7\xb1\x54\x9f\x5b\xfd\xb9\x92\x03\x9a\x61\xb9\xb3\x84\x99\x67\xf3\x7c\x43\x55\x8a\x81\xbe\x06\x75\x3a\x0c\x46\x2b\x2f\x1c\x91\x38\x1c\x91\xcc\x9a\xc2\x20\xc6\x24\x94\x2d\x48\x76\x37\xff\x17\x1b\xd8\x34\x56\xc1\x48\x4f\x39\x73\xb4\xf2\x0b\x1a\x8c\xf1\x81\x08\x97\x64\xa9\xc0\x4f\x31\xd9\x28\x03\xef\x50\xb4\xbe\xa9\xde\xc8\x83\x86\xe1\x30\x58\x88\x74\xe4\x1a\xdb\xd3\x45\x42\xa9\x12\xfc\x1e\x53\x6a\xa1\x10\x61\x42\x12\xc5\x2f\x35\x0b\xbf\x1c\x26\x2b\xdc\x5f\xf5\x5b\xc1\x5b\x19\x48\x52\x05\x75\x28\xa1\x1c\xfb\x50\xe2\xd6\xd0\xec\xcf\x2b\xc7\x89\xdc\x59\x5f\x36\x1b\xc9\xe1\x1c\x61\x65\x65\xdd\x6b\x03\x10\xfb\xb6\x15\x5f\x04\xbc\x2c\xac\xbf\xdc\x85\xc1\x94\xdf\xea\xc0\xfe\x98\x6c\x54\xbb\x6e\xbf\x04\x3a\x39\x1e\xab\x7d\x85\xa7\xf8\x60\xa7\x5f\x0e\x36\x8f\xc6\x3b\x23\x26\x2b\x1c\x8c\xef\x68\xe7\xa7\x16\x48\xca\xad\xd9\x1f\x65\x74\x84\xf9\x46\x0e\x68\x4b\x3e\xba\xa2\x23\x20\xf7\x3b\x92\xdf\x6c\x56\xb5\x74\xba\x48\xd1\x07\x31\x70\xab\xe1\xee\x5f\x9f\xbb\x9a\x37\xae\xe6\x44\x52\x76\x05\xcb\x29\xeb\xd6\xb5\x4f\x53\xc8\x70\xa6\x67\xf9\xfc\xa0\xea\x53\x3e\x4c\x56\xdb\xfc\x83\x3c\x7a\x87\x58\xd6\xcd\x8d\xd4\x01\x6f\x69\x9a\x29\x83\x2f\x60\x14\xac\x7d\xa3\xbf\xd3\xe0\x26\xe5\xbe\xd1\x2f\x5b\xfc\x9d\x96\x90\x3c\x39\xde\x86\xa8\x71\x79\x99\xe7\x2d\x7f\x25\x5d\x2c\x94\x53\xd6\xaf\x26\xc5\x79\xee\xf4\xa9\xb8\x6f\xc2\xa1\x98\xfb\xfd\x36\x70\x8d\xfa\x16\xe4\x3f\xff\xce\x43\x4e\xb4\xc9\x61\xd4\x52\x9b\xd7\x57\x35\xea\x42\xca\xd0\x3b\x1d\x7b\xff\x72\x61\x49\xa2\x3a\xbb\x31\xd6\xa2\x20\xaf\x75\x3a\xb2\x0b\xbc\x95\x8e\xd0\x22\x18\xa6\xd7\xd4\x9c\xf1\xab\xd7\x73\x9c\x61\xa3\x94\x5a\xb9\xb7\x6e\x32\xe6\xa9\x8d\x77\x1c\x70\xc8\x81\x06\xcf\x1b\xfe\x10\x12\x5e\xb1\xe2\xd5\x0e\x60\xae\x08\xd9\xa7\x0c\xfa\x14\x6c\xcb\x16\xbe\xc1\x13\x36\xf7\x25\x11\xc9\xe6\x8f\x8d\xb1\x9c\x38\x9f\x1a\x5b\x9b\x68\xb0\xa3\x00\xd9\x9a\xe2\x7b\xb4\xe8\x5a\xf1\xb0\x03\xd1\xdc\x9f\xd3\x20\xfd\x70\x6e\x45\x92\x2d\x1d\x56\x11\x3e\x60\x60\x70\xd6\xac\x34\x50\xc5\xf3\x60\x0c\x19\x11\x2d\xf1\x95\x01\x8d\x07\xb9\x5d\x1e\x94\x0a\x63\x1f\xc5\x82\x67\x6e\xfa\x40\xc6\x88\xe4\xfe\xb2\x00\x76\x71\x58\x0d\xa8\xc0\x56\xfe\x64\xa4\x90\x28\x1b\x28\x7d\x1d\xd7\x0b\xd5\xf9\xf1\xfd\x9d\xc2\xf5\xf5\xd9\xb8\xae\x7b\xed\x98\xd9\x68\xee\x39\x28\x4d\x39\xb6\xca\x52\x33\xbd\x0e\xcc\x4c\x0e\x4b\xdd\x20\x8b\x33\x66\xe0\x43\x85\x87\x25\x9e\x93\x6e\xa1\xad\xd9\x73\xc7\x72\x68\xeb\xb4\xdc\x31\x58\x15\x6e\x17\x5d\xcd\x1d\x44\xec\x4b\xd6\x8d\xec\x14\xc7\xe6\x21\xed\xb5\xd4\x5d\x04\xfb\x61\xc8\x5b\x68\xc2\x82\x02\x17\xd6\x7c\x77\xc2\x50\x01\x3b\x33\x1f\x7a\xb0\x69\x90\xb4\x8b\x97\x32\x08\x78\x0b\x79\x3d\xba\x3f\x72\xfd\x11\xd3\x76\xe4\xd7\xc7\xf7\xfb\xc7\xf7\x49\x49\xe3\x49\x79\xde\x8e\x9a\x18\x61\x77\x3d\x14\xbc\xb5\xca\x4b\x52\xf6\xe9\xf1\x7d\x8c\x0f\xb8\x9d\x86\x5b\x2b\x19\xb6\x6f\xf6\xf5\xfb\x39\x19\x91\x2d\x26\xdb\xd6\x00\xea\x62\x29\xef\xe0\x9a\x58\x4f\x09\x30\xc4\xf1\x76\xc3\xb3\x2c\xc4\x8d\x3a\x17\xb0\x01\x15\x4d\x43\x5c\x4c\xc7\x38\x62\x6f\xef\x0c\x3d\xa7\xe3\x11\xf6\xe5\xd8\x0e\x52\xa1\x75\x5d\x64\x0b\xe5\xce\xb5\x03\x33\xeb\x16\x32\xb8\x4f\xee\x63\x2d\xba\xa4\x5a\x01\xde\x8f\x14\x8a\x80\x7f\xc2\x6c\x7f\x54\xbe\xe8\x66\x41\x6f\x84\xcd\x64\x8b\x25\xa0\xc0\xd2\x09\xb4\xeb\xb5\x3f\x26\x23\x89\xf2\x81\xe6\x50\x53\x69\x07\x54\x7c\x60\xd7\xb3\xac\xdb\x5b\x41\xa4\x9a\x13\x46\xf3\xa6\xb2\xf1\x46\x6d\xfa\x7a\xc5\xb3\x3d\x8d\x7b\x34\x1e\x79\xd0\xb4\x3a\xfe\xf3\x58\xfa\x3f\x6f\x8e\x5b\xc3\x60\x1e\x52\x14\x03\x06\xb1\x1c\x6c\x14\xbc\x0a\x19\x89\x49\x81\x5b\x32\xed\x1a\x8f\xc5\xfb\xf0\x98\x30\xb6\xda\xd6\x9c\x8e\xc8\x15\xa7\x6f\x87\xcf\x44\xb2\xc7\x2a\xb6\x9d\x3d\xbe\x6f\xe5\x2b\xee\xae\x94\xd9\xf5\xe1\x95\x3b\x8c\x69\xb1\x21\x10\x9b\xa5\x23\x2c\xf7\x1f\x65\x9a\x5a\x52\x4c\x06\x87\xcd\x34\xb5\x8b\xd4\x15\x31\x9e\xe3\xb9\x9e\xdb\xa0\xff\x6e\x76\x5d\x2b\x29\x4c\xbd\x4f\x30\xe3\xa1\xed\x61\xf9\xa6\xae\x54\x40\xc6\xe2\xfc\x5b\x96\xb3\x02\x2e\x12\xe8\xd8\x6a\x82\x83\x4c\x00\x2d\xf4\xa1\x2b\x65\x61\x41\x46\x5a\xbe\xb9\x64\x19\x7d\x05\xac\x38\x85\xae\x94\xcd\x04\x98\x57\x4f\x79\xa8\xb6\x84\xca\x5a\xa2\x5b\x73\xbd\x0a\x45\x6a\xfc\x7f\x57\x9e\x45\x43\xb6\xa1\xb9\x31\xe3\x55\xb1\x3c\x95\xa0\xed\xf3\xb3\x1f\x6a\xc9\x51\xb8\xd6\x92\xe7\xdc\x52\x92\x09\x64\xa5\xc5\xc3\x95\xb5\x0f\x4e\x2a\x21\x1f\xec\x63\x15\xb1\x06\x93\x5f\x95\x3d\x3f\xa2\xa0\x8d\x05\x6e\x0e\x7c\xef\xe4\xf4\xbd\x08\xfd\xfd\x9e\xdc\x26\x22\x2f\xab\x62\x9b\x54\xa2\x88\xae\x38\xcc\xd8\x9d\x09\x5b\x4c\x55\xe3\xd4\x2c\x1a\xb8\x61\x20\xd5\x40\x9e\x53\x23\x2f\xda\x8f\xb4\xaf\x7d\x8b\xf9\x89\xdb\x23\xee\xa4\x09\x47\x5d\x1f\x64\x72\x35\x14\x7d\xe3\x7f\xcc\x91\xd2\x2d\x7c\xde\x02\x8b\x14\xd8\xd0\x28\xfb\xc8\x93\x16\x65\xd0\xca\x88\x1b\x62\x0c\x34\xef\xb1\x32\xfa\x51\xf7\xfd\x67\x1a\x69\x4e\xcc\x60\x05\x9e\x4d\xab\xa8\x52\x56\xef\x59\x5d\xfb\xd3\xc0\xf8\xc4\xc2\x0d\x29\x4d\x9d\x3f\x55\xe1\x6e\xb5\x29\xf3\xbb\x75\x84\x89\x35\x32\xd8\xaa\x76\x30\x3e\x78\x59\xf8\x93\xa3\xd2\x0e\xa7\x0b\x72\xad\x01\x2f\x5a\xfe\xae\xb1\x9a\x37\xbb\xb3\xcc\x5a\x8f\x31\x70\x21\x22\x8f\xe4\x51\x6f\xd4\x80\xf5\x31\x6f\x96\x55\x18\x37\x98\xf8\x8e\xbf\xa2\x5d\x0c\xf1\x44\x83\xc5\x08\x08\x46\x1a\x71\xe2\x82\x16\x53\xf3\x29\x67\x11\xc9\x55\xf7\xef\x2b\xc6\xd0\x88\xcf\x75\x4b\x4c\x3e\x86\x89\x2b\xb1\xd5\xf1\xc5\x34\x8f\x72\xd5\xf1\xc5\x9d\x1d\xaf\xdd\xfb\xdd\x65\x51\x56\x47\x7f\x07\x26\x88\x3c\xfb\xa0\x55\x10\x28\xae\x87\x2d\x41\x25\x89\x3a\xa6\xb8\x5e\x58\x28\x0d\x32\x34\x23\xc1\x5c\xe5\xaf\xb6\xeb\x45\xc7\xa5\xa3\x93\xea\xf1\xd2\xa9\x2a\xfe\xc2\xcb\x6d\x9c\xed\xba\x3a\x36\xbe\x06\xa0\xb0\x2e\x22\x71\xb5\x62\x02\xfa\x63\x0d\x91\x7d\xf1\x54\x6c\x3f\x61\x24\x14\x08\x7d\xeb\xa4\xf9\xae\x64\x90\xa0\x21\x46\x17\xec\x93\xc9\xfc\xb9\xda\x10\x6d\xbe\x64\x5f\xc3\xdd\xe8\x42\xeb\x95\x4d\x9c\x3b\xcd\xfe\xb2\xcc\x68\xbd\x84\xd8\x37\xc4\x0f\xa6\xdb\x95\xf3\x78\x58\x87\xe0\x71\x2e\x32\x3e\xe6\x55\x90\xfa\x88\x10\xcb\x21\x51\x5d\xa3\x4a\xa8\x17\xb3\x7a\xc1\x47\xba\x73\x19\x4e\xda\xae\xef\xee\xec\x3d\x96\x0d\x0b\x39\x8f\xcb\x86\xec\x38\x7a\xfc\x54\xa6\x3d\x5e\x21\x01\x3f\xe8\x3e\x68\x21\x08\xb5\x30\x7e\x67\xed\x25\xb1\x3b\x07\xa6\x4a\x2e\xbc\xae\x47\x38\x62\xd8\xaa\xd3\x60\xe2\x3b\x10\xfc\x92\xa2\xfd\xd5\x56\xd7\x0c\xab\x52\x3a\xde\x83\xf7\x15\xf4\x64\xb7\xa0\x2a\x08\x7c\x5c\xb0\xa7\xa0\xb2\x5b\x12\xbe\xfd\x45\xe7\xf8\x97\x57\xce\xbe\x9c\x4f\x6e\x3e\x9f\xf7\xd2\xd8\x1c\xb6\x43\x05\xeb\xa3\xea\x76\xcc\x0e\x18\xc6\xcc\x86\x41\xa3\xb7\x7b\xf4\xe6\x99\xef\x40\x93\xcf\xf2\x39\xd5\xbe\x1b\x6d\x0f\xc8\xdd\x4c\xcd\x3e\xd7\xa9\xcc\xb8\xd8\xc4\x86\x4c\x02\xc3\x9d\x9e\x5c\xaa\x65\x7f\x91\xd6\xdc\x57\x4e\x11\x1c\x66\x7e\xc6\x42\xae\xbb\xb5\xc1\x24\x4e\x3f\x3d\x3a\xde\xf1\xdb\x75\x86\x39\x55\x00\xb1\xec\x39\x9f\xbc\x6b\x2e\xb4\x6b\xcf\x49\xee\x71\x79\x61\x74\x2f\xfd\xc9\xb6\xf7\xe0\x69\x36\x36\x6f\x44\x14\x29\x50\xec\x71\x47\x6a\x76\x82\x42\xf6\x99\x76\xda\x0a\xef\x72\xbd\xe2\x83\x8a\x56\xd3\xca\x30\x5c\x38\x8e\x78\xf3\x47\x37\xe5\x4b\xb6\x77\x9d\xef\xfa\x9d\xfd\x4f\x83\x19\x4c\x42\xc0\xc5\xb3\xf1\xa4\x73\x17\x74\x98\x80\x52\x0a\xb7\x12\xac\x0d\xe9\x7a\xbe\xfc\xc4\xb9\x63\x36\x27\x9e\x1d\x55\x6f\xc8\x3d\x83\x4c\xf9\x8c\xcf\xa9\x56\x4b\xda\x75\x6c\x9b\xcb\x22\xeb\xda\x7a\xef\xdc\xad\x7e\xef\xaa\xe9\x80\x60\xaa\xb7\x4e\x86\xda\x60\x78\xbe\x65\x4c\xd4\x4c\xcc\x0f\xf2\x99\x98\x53\x45\xe1\xc4\xa6\x13\x2b\x11\xc5\xd0\x89\x77\x90\x34\x60\xe5\x57\x53\x35\x45\x63\x2e\x32\x82\x00\xf0\x3e\x58\x5b\xfa\x0c\xa8\x6d\xdb\x5b\x82\x72\xa2\xc4\xda\x2d\x91\xea\x79\xf0\xac\x94\xe0\xfa\xb3\x22\x2c\xb5\x6d\x02\x22\xc0\xc6\x70\x11\xfe\x5c\x84\x25\x48\x40\xa8\x93\x19\x18\x5c\x26\x82\x66\x04\xc5\xa0\xdf\x84\x28\xd5\xeb\x31\xa1\xcc\x1b\x19\x59\x22\xa8\xba\x27\xca\x6d\x6a\x62\x50\xc7\xf9\xe8\x20\x9f\xc5\x16\xbb\x2c\xa7\x59\xb4\x25\xcb\xe9\x36\xca\x34\x5b\xdf\x8f\xdd\x12\x67\xd2\x44\x06\xbd\x91\xeb\x94\x75\x90\x48\xa3\xa6\x68\x4e\x2a\x2d\xcb\x4c\xdd\x4a\x9e\x88\x47\x72\xa4\x06\x03\x6c\x28\x4d\xb0\x67\x70\x50\x4e\xff\xa2\x97\x7e\xa9\x4f\x03\xc9\x3a\x08\x7e\xd7\x6c\xc7\x64\x2d\x97\xff\x36\x4f\x45\x6b\x4e\xe0\xdb\x17\xba\x10\xe5\x1d\x4e\x11\x92\x77\x27\x02\xf7\x70\xa6\xa4\xfd\xf8\xac\x5b\x24\x98\x3d\x50\xa5\x7e\x36\x83\xf2\x3e\xa7\x32\x94\xac\x7a\x0e\x3b\x0a\x28\x05\x79\x2b\xdf\x3f\xb7\x31\x40\x11\x7b\xd2\xb5\x37\x75\x95\xba\x21\xfa\xd4\xd8\xe5\xad\x76\xdc\x2c\xe8\x54\xa4\xcb\xf6\xf7\x8c\xf7\x01\x42\x51\x21\x12\x75\xa8\x09\x52\xd7\xfd\xbe\xe2\xb7\x9a\x1c\x2d\x83\x7f\x3a\x8f\x0a\x6b\xe7\x32\xbe\x8b\x6e\x61\x80\x2a\x35\x04\x45\x23\xe9\x33\x67\x1f\x70\xc7\x43\x43\xe7\x0c\xec\x87\x0d\xd7\xf1\x47\x77\xc2\x06\x63\xfd\xc5\x87\xa7\xf2\xdc\xbd\x53\x4a\xf7\x34\xae\x99\x1d\x12\x36\x17\x1a\xca\x31\x21\xdd\xd0\x7d\x64\x23\x33\x8c\x56\x03\x89\xa4\x4a\x5f\x6f\xe8\x4e\xd8\x5b\x96\xed\x0b\x7e\x0d\x08\x82\x7a\x07\x7a\x13\x7b\x69\xeb\x6d\x08\x2f\x3b\x8d\x61\xed\x01\xdf\xcd\x43\xa9\x45\xe4\x9d\x16\xab\x6d\x66\x4f\x27\xeb\x31\x91\xc3\x15\xbd\xec\xf4\xaf\x0c\x54\xab\x60\x4f\xa4\x0a\xc6\x0d\x10\x8d\x3b\x05\xb7\x29\xe7\x2f\x1f\xc4\x83\x0a\x6a\xa5\x2f\x95\x6f\xec\xdc\xaa\x5b\x62\xeb\x9a\x99\x54\xba\x6e\x95\x48\x4f\xbf\x9d\x64\x8d\xa4\x46\xc0\x22\x7a\x16\x97\x7b\x37\x09\xdd\x97\xdf\xda\x43\x23\x52\x0a\xd4\x92\xa0\x9d\x9a\xf7\x08\x81\xb0\x0d\x22\xdd\xa6\xe5\x54\x19\x7e\x84\xc4\x4e\x9f\x33\x42\x4e\x89\x54\xc5\x39\xad\xcf\xdd\xe2\x4d\xcc\x75\x11\x6f\xb4\x3e\xa8\x24\xf8\x66\xf9\x1c\x28\xbf\x57\x22\x2c\xb4\x9e\x27\x84\x39\xf7\x60\xcc\xa9\x7b\x6a\x46\x1a\xe8\x8e\x1e\xd8\xfb\x16\x85\x8e\xd6\xe2\x8a\xfd\xff\xaf\x0f\x88\xbe\x6b\xe4\xcb\xb0\xc7\x5d\x9b\x9d\xe1\x0a\xb0\x5d\xa8\xae\x4a\x2d\xfb\x55\x80\xa1\x9a\x2a\x59\xa9\x5e\x53\xb2\x3f\xa2\xed\x50\x2d\xa6\x42\xeb\xe8\x0a\xa7\xa3\x0b\x7d\xe9\x7b\x0f\x34\x7a\xbd\xa1\x7e\x0b\x82\xb8\x67\xe5\xd4\xa6\x46\x8d\xca\x64\x88\xb1\x52\xdd\x6c\x5a\x5d\xaf\xe7\x9e\x32\x82\xf0\x89\x8e\xdf\xe5\x61\x68\x59\x0c\x76\x7d\xf8\x57\xa5\x15\x0e\xbe\x11\xc1\x6e\xae\x91\x8f\x08\x02\xde\x52\xe7\x17\x56\xb0\x2f\xce\xf8\x65\xfe\x57\xad\x9a\x2e\xd7\xca\xb7\xea\x06\xc2\xa8\x93\xb7\x0c\xc6\x1a\xed\x1b\xad\xca\x0e\x8a\x02\x46\xad\x7d\x36\xc7\xae\xbf\xcd\x8d\xc6\xe3\x6a\xaa\xfd\xc3\x73\x1c\x15\x86\x13\x6e\xcf\x0c\x85\x3b\x33\x78\xba\xef\x2e\x33\xc6\x64\x44\xb8\xb9\x0b\xa1\x15\x11\xca\x3f\x83\x13\x9c\xc8\xa9\xb2\xdd\xc0\x1c\xc3\xf5\x00\xac\xd9\x1a\x6e\x7d\xff\x2f\x39\xc8\x23\xe6\x60\xb0\x41\x8b\x77\x9a\x4b\x0e\x30\x08\xbb\x47\x23\xdd\x1b\x19\xc2\x1b\xcb\x21\x52\x87\x05\xb7\x46\xf4\x58\xb5\x2f\x6e\x8d\x2d\x5c\x62\xec\x1b\xef\x32\x2d\xb5\x85\xef\xfc\x13\xfc\x22\x52\x90\x02\xec\x9f\xdc\x6c\xe4\xc9\x1f\xf6\x44\xa4\x8e\xdb\x4f\xb4\x0c\x62\xb4\xcf\x94\xda\xad\x6f\xb8\x3a\xaa\xac\xc4\x61\x05\xd6\x14\xde\xdd\x6c\xd8\xd4\x0c\x59\x54\x61\xe2\x4c\x1f\x46\xc0\x38\x72\xdf\xa4\x6d\xf6\x2d\xea\x8d\x89\xb2\x67\xae\x12\xaa\x77\xb2\x63\x01\x5b\xc5\xee\x04\x37\x07\x9d\x46\x33\xea\x35\x5b\xce\x59\x27\x5a\x89\x1b\x62\x0d\xcb\x3e\xde\xe7\xd4\x0a\x4e\x36\x86\x6f\x14\xfa\x25\xe1\xfd\xe6\x3f\x3d\xf3\x21\xed\xf3\x8f\x77\x99\x21\xcf\x3a\x13\x3b\x7b\x95\x1c\x1f\xd7\x82\x9b\x4c\x29\x32\xef\x58\x7e\x79\x64\x62\x2a\x3d\xc7\x8d\x95\x17\x75\xe7\x22\x13\x69\x33\x37\xde\x61\xc8\xb6\x6d\x67\x5e\xb4\xfa\xc4\x67\x47\x1e\x78\xd4\x3e\x6b\x59\x21\xb2\xec\x6d\xed\x39\x41\x6b\xb9\xf8\x76\x9e\xed\xfd\xcb\x97\x9b\xc6\x2a\xcd\x81\x41\x9b\xc6\x52\x82\x61\x5b\x90\x36\xe5\x54\x83\xa0\x1c\x50\x3e\x82\x60\x85\xcf\x28\xdd\x6a\x29\x4c\x10\x07\x93\x89\x8c\x7f\x42\x1b\x41\xad\x3d\x6d\x15\xf4\x88\x56\xc3\x64\x55\xd7\x45\x10\xf4\x0a\x67\x21\xab\xae\xf5\xc9\x7e\xdb\xed\x52\x9b\xa4\xe9\xf7\x79\x83\x49\x0e\x64\xca\xe3\x2c\xeb\xf4\xa9\xb9\x1a\x9c\xcd\x77\xfb\x6a\x1f\x4a\xfb\x23\x53\x46\xdb\x4e\x34\x27\x65\xf0\xf0\x28\x81\x85\x10\x03\x1e\x26\xac\x21\x1b\x51\xbe\x28\x84\x3a\xbe\xec\xce\xe4\x16\xb7\x9c\xe4\x74\xdf\x79\xda\x6c\x39\x77\x37\xc2\x4a\x1d\x70\x9f\x83\xde\x07\xab\x86\xe2\x91\x35\xd7\x50\x51\x46\x7a\xa3\x03\x36\xa0\x82\xf4\xfb\x45\xe3\xb0\x0d\xf0\xe1\x2b\xac\x7d\x67\x7d\x94\x00\x77\x99\x9f\x6a\xe1\x75\xd6\x5a\xb2\x3a\x30\xee\x02\xb4\x2d\x21\x68\x08\x08\x43\xae\xce\x47\xce\x9a\xcd\x95\xf3\x3e\xf4\xa5\xad\xf3\xfa\x45\xcf\xec\xd6\x59\xa7\xaf\xa5\xc5\x4d\x63\x65\x73\xaa\x86\x24\x62\xb3\x8f\xa2\xd4\xd7\x7c\x5f\x7a\x47\xd2\xbd\x23\xdb\xc9\xa0\x1b\xe1\x78\xee\xfb\x6f\xfb\xde\x89\x0d\xa9\xfc\x9b\xbf\xaa\x7d\x13\x28\x23\x59\xe6\x58\x0d\x95\x77\xed\x06\xe7\x85\x16\xe5\xfc\x8c\x6d\xaa\x15\xdd\x21\xa8\x21\x18\x4a\x32\x24\x75\x68\xee\x07\x9c\x01\x75\xe8\x1c\xe5\xd5\xe1\x99\x48\xda\x1b\x56\x5d\x87\xa0\x3a\x78\xe0\x51\xdf\xaa\xad\xfb\xef\x72\x0e\x8c\x98\xa8\x99\xfa\xb0\x8c\x15\x33\x90\x79\x22\xcc\x3d\xb0\xaf\x01\x1e\x53\xc5\xb9\xba\x52\x95\xaf\x06\x99\x75\xc7\x84\x14\xa0\x00\x26\x52\x73\x1c\xf1\xfb\x7f\x7f\xb7\x33\xbd\x0b\xc9\x76\x82\x02\x9f\x39\x34\xf8\x9d\x84\x89\x15\x30\xfa\xc0\x52\x49\xb1\xb8\x2f\x5f\xab\x31\x15\x49\x94\x13\x57\x60\xe4\x97\x2e\xf1\x8c\xcd\x03\x49\x01\x68\xe3\x1d\x23\xea\x8d\xee\xcc\x39\xbf\xd3\x12\x40\xcb\x28\x66\x61\x50\x6e\x4e\x2b\x23\x5f\x64\x4d\x49\x3a\x7b\xea\xda\x94\x24\x98\xf5\x70\x61\x95\xe2\xd9\x6c\x18\xb8\xe3\x30\xbc\x1e\xf0\x03\x22\x48\x0c\xba\x8e\x70\x07\xe1\xde\x80\xae\xc0\x07\xb9\xb5\xfe\x05\x9d\x50\x62\xe2\x84\xec\x9a\xa6\x09\x73\x72\xad\x8d\xfc\x00\xa2\xdd\xe6\xb2\x0f\xba\x33\x48\xe2\x00\xff\x7e\xfd\x2d\xdc\xeb\x28\xbf\x4d\xc4\xeb\x6d\xbc\x47\x8a\xa7\xeb\x80\xa4\x6a\xb9\x89\xf9\xc0\xd2\x59\x35\x07\x1b\x5e\xd4\x93\x80\x94\x39\x8c\x09\x5a\x02\x02\x95\x16\x30\x05\x2c\x79\x9e\x87\x16\x70\x2d\x7d\xae\x5c\xda\x9a\x19\xd2\x9e\x22\x7a\x13\x98\x29\xe3\xb3\x3b\x9e\x57\x0a\xa3\xb2\xc3\x53\xac\x6e\x19\xd9\xfe\x8b\xf6\xb6\xa7\x03\xba\xef\x70\xac\xa6\x79\xfb\x44\xbc\x93\x50\x05\x03\x87\x1c\xae\xbd\x7f\x30\x2b\xb7\x8d\x94\x17\xed\x0b\xbb\x1f\x45\x7a\xe7\x1d\x97\x5c\x4c\x8a\x27\x94\xf2\xca\xbf\xaf\x6a\x27\x4b\xd6\x0d\x71\xbc\xc9\x3b\xd9\x08\x7a\x21\x4e\xb5\x62\x6b\xd8\x5a\x9d\xd1\xb7\xc2\xde\xe2\x59\x4c\xff\x29\xb1\xcc\xb7\x6c\xa3\xf4\x1e\x9b\x06\x13\x5f\x24\x60\xc8\x8c\x1b\xa1\x56\xa8\xec\x11\xe5\xa9\x8f\x53\x24\x3f\x0e\x15\xd5\x7a\xa8\x08\xf3\x43\xb9\x09\x1c\xda\xa6\x1e\x7a\x62\x04\xc8\xf3\x20\x6f\xe5\xb9\x2e\xf9\x21\xcf\x0f\xfd\x1a\x70\xab\xba\x8e\xa1\xb9\x4b\x8e\x83\xe0\x46\x84\x37\x9c\x5c\x72\x7c\x3e\x0a\x82\xf0\xad\x4b\x3d\xbb\xe4\xf3\x7d\x3e\x16\x77\x9b\xcf\xb4\x70\x27\x74\x03\xb8\x9a\x2b\x2e\x41\x6b\xab\xc4\x4d\x13\xfa\x10\xc8\x32\x31\xf6\x1c\x13\x59\x3d\xaa\xd0\x19\xd3\x08\x41\xbb\x4d\x19\x9e\xeb\xae\x37\xc5\x0e\xce\x77\x16\x9b\xb5\x6e\x62\xa2\x66\x31\x9c\xa0\x01\x9e\x1e\xe5\x86\x06\x14\x41\x50\x7a\x28\xed\x40\xd2\x6a\x5b\x89\x49\x55\x4a\xb2\xc5\x84\xe9\xd7\x9c\x6c\xc1\xc9\x01\x36\xa6\xf1\x5a\xc6\x5d\xdf\x73\xcf\x1b\x40\xb2\xde\x75\x42\xf3\x6e\xc5\xcb\x43\xa3\xbe\x76\xc8\xcb\xc3\x38\x2b\x58\x9c\xde\xc8\x11\xda\x96\x6c\x88\xf0\x01\xe0\x15\x5a\x81\x26\x07\x65\xe4\x69\xc8\x30\x79\x2c\x1f\xfb\x1d\xef\xd5\xf5\xab\x76\xe4\x1a\xac\x00\xfa\xbb\xcb\xf7\x55\xcb\x08\xd8\x35\xf7\xdc\x82\x0f\xa8\x66\xad\xe3\xf3\x51\x5d\x57\x92\xe0\x07\x12\x61\x0f\xe4\xac\x60\x12\xe2\x5c\x1c\xca\xfa\x0f\x51\x3f\xac\xfa\x26\x73\x1f\x81\x7b\xff\x15\xb3\x8d\x1b\x7a\x33\xb0\xa0\x6c\xd2\x53\x5e\x42\xca\x49\x8b\xee\x6c\x1d\x50\x3e\x27\x6a\x55\x9d\x0b\x7c\x5b\x50\xae\x11\x5e\x35\xa0\xc2\x1a\x85\xd6\xf2\xb5\xd5\xdc\xf3\xb0\xd1\x51\xc7\x53\xd7\x1e\x6d\xd3\xac\x9f\x71\x21\xc3\xac\xc1\x7e\x20\xc6\x0e\x38\xb5\x2e\x87\x42\x41\x85\x67\xf7\x2c\x59\x81\xa5\x16\x4b\xfc\x7b\xd1\x95\x8a\xd4\xf4\xbe\xc0\xc4\xd0\xf5\x16\xd2\x8f\x3b\x90\x76\x01\x6c\x99\xfc\x71\x0e\x3e\x94\x92\x4e\xbb\xb0\xb7\x2d\x73\x1f\xd5\x80\x79\x82\xb9\x3e\xd1\xcf\x26\xf9\x24\xa7\x46\x18\x0f\xe7\x4e\x12\xd4\x73\x9a\xc1\x3d\x5b\x8f\xd4\x0a\xe4\xed\x35\x5c\xee\xe4\xf5\x48\xa1\x5c\xb4\x59\x97\x67\x39\x35\x32\x7d\x93\x7c\x52\xd1\x9c\x78\xf5\xfa\xd6\x3d\x72\x37\x03\xf8\xbc\x47\x2b\x30\x3f\x58\xf4\x69\x2b\xbc\x35\x2b\xcc\xf0\xf7\x2b\x2d\x0c\x61\x41\x7f\xcc\xdb\x66\xaf\x21\xfa\x80\x45\xa9\xe8\x08\x01\xee\x88\x15\xb6\xe4\xfb\x77\xe6\xa4\xeb\x4c\x98\x8e\x8c\xf2\x03\x67\xbe\x1c\xe6\xa4\x12\xff\xf7\xa0\x74\x96\xcb\x95\x20\x63\x4f\x1b\xe1\xc6\xad\x3b\x83\x8e\x4b\xc5\xdc\x9c\x6a\x75\x8c\x27\x80\x05\x75\xc7\x5a\x6c\xb0\x1a\xd0\xd8\x56\xd0\xf7\xe6\xc1\x87\x8e\x9e\xf4\x88\x14\xf2\x7c\x03\x22\x28\xd8\x8c\x94\x3d\xfb\xed\xad\x9c\xd3\xc2\x56\xae\xee\xcc\x28\x33\xd5\x3a\x15\x07\xeb\x49\x55\x50\x73\x8a\x9d\x88\x89\xa0\x61\x41\x05\xf6\x87\x59\x55\x26\xee\xee\x6f\x79\x84\xf7\xfa\x1b\x8e\xf0\x94\x16\xae\xca\xd8\x54\x69\xb9\x0d\xb6\xb9\xef\xb8\x6f\x0b\x1e\xf4\xba\xda\xf2\x28\x86\x80\x57\x2a\x5f\x49\x6c\x56\x8f\x3c\x3a\xd8\x52\x9e\x3a\x7d\x10\x20\x5c\x8c\xf7\x5b\x4d\xc7\xf8\x9f\xea\xb8\x32\x3e\x1a\x39\x2f\xcf\x3f\x8a\xf4\x1d\x5f\x33\xe7\xd8\xfd\x2d\xcb\x20\xc0\x4b\x63\xee\x3e\xdc\x55\x88\x73\xd1\xec\xdd\x83\xb4\xd2\xb8\xab\x11\xa2\x8f\x3e\xed\x5b\x9b\xd6\x7d\x01\x65\x75\xed\x59\x6d\xfe\xb1\xb5\x0e\xd4\xd5\xed\xda\xf8\x7e\x81\xcb\xdb\x9f\x8b\xb0\xd2\x77\xb7\xcf\x9d\x5b\x1a\xe5\x16\xc6\xb2\xb5\x9e\x71\x60\xbc\x7a\x2e\x6b\x9c\x37\x9a\xfe\x18\x93\x1d\x9a\xf2\x33\x19\x14\x99\xe9\xa1\x9a\x9f\xed\x74\x9d\x30\x27\xd1\xcd\x97\x61\x6f\x2d\xc9\x2d\x7d\x69\x66\x64\x65\x87\x1b\xb1\x09\x7d\xab\x00\x6f\xf6\x18\x8d\xd2\xd4\xe6\x01\x6f\xdf\xc7\x51\x75\x5e\x17\x24\xa6\x7d\xb9\xc1\x3d\x8b\x2b\xd0\x7d\x0b\xb9\x19\x20\x9a\xd7\x35\xf7\x47\x83\x56\x43\x75\x81\x1d\x04\xee\x2d\x44\x7d\xe4\x62\x8c\x0b\xf6\x91\xf2\xef\xb5\x06\xb1\x76\x37\x27\x1e\xc5\x83\x96\x06\xa5\x86\x0d\x98\x87\xcf\x58\x16\xdf\xd4\x35\xfa\x66\x6f\x71\x60\x1e\x46\xdc\x61\x75\x78\x1a\xfe\x6c\x6e\x85\x30\x59\x0b\xf3\x8a\xa3\xd6\xad\x65\x10\xf4\x5c\x9c\xee\xc9\xa9\x0b\x69\x27\x7e\x34\x06\xd7\x86\x70\x59\xd9\x8a\x18\x1c\x9b\xab\xcb\xa9\xb9\x88\x82\x51\x68\xd5\xab\x6d\x59\x86\x9c\x78\xbd\xe9\x34\x29\xd6\x22\x14\xfa\x92\xb1\xc4\x07\xbb\x6e\x88\x40\x17\xd5\x85\x95\x32\x6c\x0a\x0e\xa2\x60\x96\x46\x36\xb3\xda\x00\xf5\xe4\xf6\x24\xce\xb7\xb2\x0a\xae\xa0\x01\xf4\xba\x0d\x82\xad\xbd\x71\xfd\x4d\x76\x56\xc9\x32\xa2\x53\x10\x41\x6f\x75\x81\xd1\x4c\x17\x36\x27\x6e\x79\x45\xbc\x7d\xfb\xa8\x5b\xad\xf6\xf1\x09\x6f\x75\x1b\x77\x58\x61\x82\x75\x54\xb9\xe2\xcb\x2a\xc4\x3a\xe3\x6c\xe4\xee\x7e\xdb\x09\x1a\xbf\x64\x50\x8d\xf0\x96\x78\xbf\xcf\xdb\x2b\x9c\xb4\x66\x16\xe5\x2d\x54\x13\xbb\x8e\xe7\x3e\x92\x21\xad\x09\xcd\x3b\xb8\xc5\x4c\x3b\x52\xd6\xb5\xb2\x2d\xa4\x27\xa8\xf2\xd0\xe6\x51\x8f\xbf\xb5\xf0\xc9\x5a\x80\xef\x86\x20\x28\x74\xcb\xe4\x1b\xfb\x7d\x1b\x67\x65\xc8\xc0\x51\xa3\xf1\x44\x66\x0b\x78\xb6\xb3\x52\xbb\xde\x51\xc0\x42\x82\xa6\x7c\xec\xad\x89\x91\x00\x29\x30\xf1\x24\xb2\x14\xeb\x46\xd1\xac\x24\xf7\x9c\xaf\x15\xf2\x54\xeb\xb1\x3c\x83\x20\xd4\x26\x25\xba\xb5\xd1\xdb\x06\xe3\x99\x98\xd3\x56\x7a\x49\xa5\x09\xdf\x5f\xdb\x2b\x43\x0a\xf5\xd8\x7e\xf2\x87\xdc\xe5\x69\x4e\xf3\x77\x77\xcc\x95\x4f\x2b\x79\xc4\xf0\xad\xe7\x62\xac\x6e\x17\xb4\xc7\xb1\xc2\x79\x1c\xab\xa6\x86\x91\x32\xad\x40\x6b\x3a\xf2\xac\xd8\xbe\xe4\x7b\xd4\x1b\x76\x84\xe1\xec\x2e\x2b\xec\x4d\xa2\x30\x58\x55\x1b\x90\x2c\xa6\x6f\x58\xcb\xcd\x2d\xdb\x3c\x15\x9b\x1b\xa5\x23\x20\x70\x24\xb0\xbb\x5b\x54\x7b\xb5\x12\xba\x02\x0d\x29\x5d\x86\x5d\x4f\x65\xd3\x75\xc7\x1a\xfb\x7e\x58\x95\xe9\x28\x92\xd0\x78\xb6\xd5\x87\x32\x95\x1f\x76\xa8\x44\xe3\x04\x11\x25\xc3\x4a\xa8\xcd\x49\x29\xb0\x36\x98\x38\xa2\x71\x29\x4f\x1d\x09\x0e\x33\xba\x34\xe6\x8b\xff\xa1\x06\x37\xbc\x48\xfb\xf8\xab\x23\xac\xce\xb2\x15\x51\x82\xbe\x61\x36\x1b\xcf\x31\x7e\x34\x18\x07\x41\xb8\x16\x61\x89\x67\xcb\x39\x4d\x66\xcb\x39\x51\x6a\x8c\x87\xf2\x5d\x9e\xef\xac\x63\x1d\xdb\xcb\x3f\x78\xf3\xb6\xd0\xf4\xda\x54\xfd\xf5\x69\x1e\x55\xe7\xe6\xd6\x40\x33\x8c\x41\x57\x3d\x59\x51\xff\x7c\xf8\x82\xdf\x65\xd8\xf7\x13\x5e\xc2\x94\xba\x88\x1d\xab\x5b\x31\x4c\xc4\x86\x03\xab\x2f\x54\x89\xa8\xb0\x63\x15\x62\xac\xa3\x69\x6f\xe4\x06\x40\xdd\x7f\x88\x8e\x90\x57\xd9\xef\xe3\x1f\xb8\x2d\x7a\x56\x1a\xa9\x48\x0d\x23\xe9\x44\x82\xf8\x93\x36\x64\x0d\x13\x41\x16\x6f\x8a\x36\x88\x79\xd7\xfb\x88\x8d\xd3\x5e\x48\x8a\xf3\xad\xe7\xf9\x4e\xbd\xd3\x94\x85\x5e\x68\x3f\x27\x5b\x63\x9f\x00\x93\xad\xdc\x00\x20\x81\x21\x20\x72\x08\x93\x91\x56\xdd\xbc\x3a\xa7\x36\x1e\xdf\xc6\xb4\x37\x36\x8c\xb1\xb8\xae\x43\xeb\xd3\x69\xa4\xfc\xbb\x73\x39\x2e\x1e\xfd\xf0\xaf\xf6\xa9\xc9\xa3\x5a\x72\x6a\xe9\x16\x38\x3f\xfa\x8e\xb2\xc2\x7c\x50\xe0\xc1\xf8\xe0\x85\xd9\x84\xb5\xe3\x16\xf2\xc2\x89\x61\xe8\xa0\x26\x17\xe1\x95\xb6\x94\xf4\x1d\xa7\x6f\x87\xec\xfd\xa6\x60\x6a\xfb\x5f\xc6\xdb\xac\xa2\x1d\xf5\xd8\x56\xe4\xb4\x1b\x10\xca\x5d\x5b\x4d\x52\xd0\x12\xa0\xbd\x71\x43\x9e\xa8\x72\xcb\x4a\x6c\xde\x14\x62\x13\x5f\xaa\x0d\xa4\x5d\x70\x27\x76\xba\x13\x02\x45\x27\x71\x9e\xb0\xec\xc9\x76\xb1\xc8\xe0\xbe\xd8\x71\x67\x7e\xf1\xed\x38\x18\x3e\x78\xaa\xa0\x7a\xa3\x60\x64\xe9\x74\x37\x28\x1a\x51\xda\x02\x19\x24\x01\xff\xea\x40\x6e\xc1\xf9\x9d\xac\x85\x3c\x01\x21\x7c\xcf\xa1\x01\x6f\xb9\x3d\xaa\xe2\xe2\x92\xc1\x75\x4c\x59\x24\xda\x0a\x90\xe7\xa8\xa0\x75\x22\xb8\x5e\xf1\x64\xb5\x7b\x22\x18\x07\x6c\xb8\xd8\x56\x95\xc8\xa7\x15\x1d\x47\xc7\xfe\xe7\x49\x74\xcf\x7e\xc2\xe1\xe1\x18\x63\x72\x05\xe4\x5d\x55\x64\x7f\x66\x37\x41\x30\x36\xe7\x8a\x13\x79\x8c\x90\x75\xfd\x2a\x1b\xd4\xea\x74\x4f\x68\x39\x4e\x53\xa0\xf8\x7e\xe0\x65\x25\xb7\x73\xbc\x1b\x04\x67\xfd\x9e\xe7\xa7\xd5\x38\x57\x87\x54\xb8\xf5\x15\x22\x91\xa3\x3e\x58\xf7\xf6\x54\xee\xd8\xf0\xbd\xba\x9e\x06\xd7\xe0\xde\x97\xdc\xe9\x26\x61\x3e\xab\xe6\x75\x0d\x7f\xde\xf5\x00\xb0\x62\xbf\x95\x7b\x86\xeb\xed\x3f\xef\xd8\x33\xb2\x45\xc9\x4e\xb0\x1f\xb3\xca\xf2\x2b\x8a\x29\x38\x11\xd7\x24\xd1\x68\x6a\x0c\x4b\xe1\xe8\x5b\x1e\xe5\x75\xfd\x2d\x87\x4e\xfa\x0a\x3a\x69\xb9\xdc\xdf\x4b\x8a\xcd\xd9\xed\xa8\x3d\xa1\x7b\xfa\x4a\xf9\xf2\x32\x7d\xe5\x7d\x75\xfa\xea\xd0\x6d\x95\xba\x99\x3d\x85\x15\x26\xdc\x37\x94\x04\x4e\x6b\x40\x1c\x97\x16\xf8\xd6\x6a\x3a\x72\x32\xb6\x6c\x77\xf2\x93\x6c\x4c\xc9\x2f\xf3\x38\xdb\xeb\xfc\xcd\x94\xaf\xdc\x17\x9a\x7b\x56\x8f\x13\xf3\xb8\x28\xe2\x1b\x6f\xdf\x85\x2e\x53\x9b\xae\xe5\x99\x92\x63\xbc\xcf\xa5\x4e\x31\xe3\x73\xcd\x67\x55\xa6\xbc\x70\x43\xfe\xc6\xb5\xc5\x04\x33\x8e\x7f\xe7\xfb\xc0\x19\xb7\xc1\x51\x63\x4c\xf8\x97\x42\x73\xf0\xaf\x6a\x9a\xd3\x7f\x55\xc3\x54\x9e\x5e\x58\xfa\x34\xce\xb2\x45\x9c\x7c\x28\xa3\xbf\xf1\x69\x4e\xff\xc6\xa3\x50\x3e\xe5\x91\xb9\x64\x95\x24\x4d\xc5\xb6\x0a\xbf\xe7\x64\xe4\xe9\xdb\x2b\xd9\xe3\xc2\xf7\x65\xa3\x59\x5b\x71\x58\xcc\xc4\x1c\xb7\xad\xa8\xec\xe3\x36\x33\xbf\xf9\xbc\x85\xd3\xbf\xe7\xf6\x92\xfc\x6f\xfc\xc0\x76\xcb\xdd\xee\x03\xd9\xac\x9a\xfb\xb6\xd8\x99\x68\x4b\xb4\xec\xa8\x0a\xaa\xb5\x7f\x0b\xe6\xea\x2b\xd2\xc6\xd0\x3b\x02\x97\x5d\x84\x28\xd1\x6a\x83\x09\x90\xdb\x85\x24\x95\x41\x2b\x10\x3c\x42\xfd\xc2\xc3\x0a\xa8\xe7\x44\xa4\x6c\x0d\x66\x76\x5f\x82\x67\x75\xcf\x4a\xb2\xf0\xb1\xdb\xfe\x85\x39\x4c\x40\x71\xe5\x71\x52\xf1\x2b\x5e\xdd\x28\xaf\x78\x1e\x53\x56\x8b\x06\xb5\x53\x7d\xe7\xe3\x8e\x4f\x25\x90\xd8\x63\x9f\xba\xa0\x76\x1d\x5c\x80\x98\x3c\x96\x07\x02\x18\x51\xf8\x72\xf0\x17\xa2\x75\x92\x55\xb3\x12\x5b\xcc\xe1\x12\xe6\xc2\x6c\x88\x66\x46\x76\xb0\x2b\xbe\xfd\x95\x5b\x09\x26\xdc\x90\x56\xd2\x0e\x8e\xc1\xb7\x5f\xf9\x69\x01\x19\x71\x41\x4f\x46\x44\x08\xfa\x76\xf8\x26\x2e\x4b\x7a\x5b\x89\xb7\xda\x25\x41\xf7\x52\xc3\x33\x7b\x0c\x69\x51\xd3\x90\x58\xd0\x5b\x75\xe5\x1d\xc9\x3d\xb8\x14\xf4\xd6\xa8\xf0\x7d\xb3\x16\xdb\x92\xa1\x86\x6c\xbd\xc0\xbe\x44\x63\xc8\xdb\xd4\x32\x61\x66\x08\x4f\x95\xe9\x8f\x4c\xf8\xeb\xaf\xe3\x31\x08\xdf\x82\xe0\x92\x59\x51\x3a\xa3\x53\x82\xf5\x56\x5b\x45\x98\xb6\x4a\x9d\xc8\xd6\x25\x62\x9b\x57\x4f\x45\xb6\x5d\x77\xb7\x27\xe5\x6d\xce\xee\x8a\x72\x04\xd5\xc9\x84\xc5\x85\x24\xaa\x67\xff\xb8\x28\x2f\xb6\xa3\x51\x3c\x9a\x03\x49\x0d\x91\xc6\xde\x8f\x5b\xcc\x60\x6c\x3b\xa6\xbc\xae\x47\xc6\xb1\x48\x49\x99\x92\x18\x7c\xbd\x0c\xd1\x45\x85\xb4\xf4\x7d\x79\x3e\xaa\xeb\xf2\x91\x73\xd5\x1c\xf7\xc3\x6a\x20\xf0\x41\xdc\xa7\xe5\x40\x90\xb8\x4f\x8b\x41\xfc\x75\x41\x04\x2d\xfb\xe3\xa6\x21\x4b\xd9\x80\x25\xcf\xd3\xbd\xf0\x77\x4f\x3e\xb6\x7a\xd1\xad\x3e\xc7\xe0\xda\x5a\x00\x4f\x85\xb5\x5c\x92\xc4\x54\x0c\x94\x4c\x09\xa5\xce\x8b\x3b\xef\xc7\x1e\x98\x79\xdf\x1e\x3e\x63\x52\x0d\x94\x8f\x3b\xde\x97\x39\x49\x4e\x45\x7f\x4c\xe4\x57\x31\xe0\x5f\x17\xf8\x51\xcb\x11\x35\x59\x09\x3a\x43\xc8\xdb\x5e\x37\xc2\x72\xbc\x56\xc2\x2a\xfd\xb3\x09\x5e\x69\x83\x50\x6b\x11\xae\x04\xee\xc3\x65\x9e\x2e\x68\x25\x66\xcc\xbb\xe2\x00\xd6\x98\xa5\x87\x66\x4e\x43\x69\x0e\x33\xfb\x4a\x74\x69\x3f\x10\xc4\x0f\x7d\x92\xea\x46\xec\xbb\xb6\x6f\x9d\x62\x41\xfc\xb6\x98\x7b\x8e\xb5\x0d\x6b\x75\xe0\x31\x1a\x2f\x77\x0a\x9a\xcd\xbb\x96\x73\xf2\x7e\x1f\x17\xb3\x7c\x4e\x95\xf0\x2e\xc9\xf7\x39\x50\x5c\xc8\xf5\xe0\xdd\xa9\x09\x6f\xf7\xb2\xce\xe9\x16\xbf\xb1\xc4\xd8\x7f\x9c\x16\xb4\xf5\x1d\x32\x1c\x85\x0b\x6f\x0d\x51\x46\x0a\xb8\xc8\x5e\x08\xd0\x7d\xbb\x16\xe0\x12\xc5\x67\x3f\x5e\x8b\x9d\x99\x04\x37\x5a\x70\x44\xbf\x6d\x30\x61\xb8\xb7\x73\x55\x9a\x63\xad\xaa\x58\x28\x99\xc0\x9d\x48\x40\x7a\xb4\xe5\x3b\xdc\x23\x50\x9f\x7b\x28\xfc\x8b\x76\xdd\xb1\x2d\xe5\xee\xeb\x56\xc5\x25\xc6\x4d\xb3\x99\xde\x31\xfc\x5c\xe4\xa0\xc2\x4a\x47\xc4\x0b\x7a\x9e\xa7\x94\x0d\xaf\x24\x61\x6e\xac\x08\x45\x60\x7b\xb1\x5d\x48\x55\xdc\xf8\xf3\x28\x81\x43\x77\x85\x6f\x1b\x2d\x5f\xf3\x51\xd0\xa3\x99\x44\x15\xe9\xf2\x62\x3b\xba\xff\xf0\x54\x3e\xcf\x46\x03\xf9\xb7\xbc\x77\xb1\x1d\x3d\x18\xc1\xc7\x83\xe5\xf2\x62\x7b\x32\xba\x27\x3f\x4e\x46\x67\xf0\x11\xab\x0f\x88\xb9\x07\xc9\xee\xa5\x8b\xfb\x17\xdb\x7b\x0c\x3e\xce\x96\x49\x72\xb1\x8d\x13\xf8\x48\x4f\xe3\xe5\xfc\x88\xbc\x95\x68\x81\x97\x7f\x15\x45\xfa\x74\xe5\xbb\xc6\xb2\xcb\xe2\xe8\xe2\xda\x1a\xda\xaf\x6b\xf6\x08\xfd\x8f\xff\x8a\xe0\x8c\x5e\x89\x5f\x36\x1b\x56\x3c\x8d\x4b\x16\x62\x25\xcb\xf3\x83\xb8\x36\x01\x75\xfd\x51\x58\xfb\xfc\xde\x72\x79\x2d\x3a\x0c\xd8\x5e\x2f\xac\x86\xa5\xd8\x16\x89\x8f\x69\x2e\xae\x91\xe2\x32\xbc\x95\x63\x0c\x5b\xb9\x2e\x2c\x82\x10\xef\x9e\x4a\xb4\xae\x69\xe4\xa4\x03\xb3\x41\x3b\x93\xad\xc2\x41\x20\x09\x14\x27\xbe\x6d\x65\x78\x65\xce\x0f\x82\xbc\xd3\x7d\x7f\xa2\xba\xf8\xe4\x81\x1c\x82\x7b\x0f\x4f\x06\xf0\x77\x06\x23\x31\x86\x91\x58\xa4\xf0\x84\x21\x4a\xc6\xf0\x3c\x86\xe7\x3d\x78\xde\x87\xa7\x1c\xba\x07\x63\x35\x5a\xe3\x58\x3e\xef\x2d\xe0\xe3\x3e\x93\xcf\xd3\x91\x7c\xa6\x0f\x20\x28\x4d\xe0\xc9\xe0\x83\xc1\x38\x33\xc8\xcf\x1e\xc2\x33\x56\x11\xb2\xda\xd3\xb1\xac\xf0\xf4\x04\x0a\x3e\xbd\x27\x0b\x3e\x8d\xa1\x94\xd3\x85\x2c\xf2\x94\x41\x2d\xa7\xcb\x93\x8b\xed\xe8\xe1\x18\x62\x1e\x8e\xcf\xe0\x09\x31\x0f\x8f\x21\xe6\xf8\xbe\xfa\x38\x85\xe7\x99\xfa\x90\x15\x9c\xa9\xe6\x9f\x8d\x64\x93\xce\x4e\x24\x64\x67\xf7\xa0\xdd\x67\xf7\x1e\xc2\x13\x52\xdd\x57\x41\xf7\x65\x63\xcf\x1e\x40\xda\x07\xb2\xe0\xb3\x87\x12\xbe\xb3\x05\xe4\x5b\xc8\xa6\x9e\x25\x2a\x29\xf4\xce\x59\x02\xb9\x53\x59\xed\x19\x83\x6c\x4c\x66\x8b\x47\x63\x78\xca\x90\x18\x2a\x8d\xef\x41\xc8\x3d\x08\xb9\x77\x0a\xcf\x87\xf0\x84\x66\xc4\x00\x46\x7c\x1f\x12\x41\x67\xc6\xa7\xea\x5d\x42\x14\x03\x14\xf1\x43\xc8\x0c\xb0\xc4\x0a\x8a\x18\x46\x27\x86\xd1\x89\x13\x28\x0f\x20\x8a\x01\x96\x18\x60\x59\x00\x2c\x0b\x80\x62\x71\xc2\xe0\x29\xc7\x7a\xa1\xba\x61\x71\xef\x1e\x3c\x65\xb6\xc5\xfd\x07\xf0\x94\xc5\x2d\xa0\x17\x16\xd0\x0b\x0b\xa8\x79\x01\xed\x5f\x24\x23\x78\x42\x7a\x68\x78\x72\x02\x23\x9d\xdc\x1b\xc1\xf3\x81\xfa\x78\x08\xcf\x58\x7d\xc8\xc4\x09\x74\x6e\x02\x55\x24\x50\x78\x02\x85\x27\xd0\xa0\x04\xe6\x5f\x02\x33\x2f\x49\x20\x4d\x02\xe1\x50\x51\x92\x42\xde\x14\xc2\xa1\x6d\x09\xb4\x2d\x85\xf6\xa4\xaa\x25\x29\xb4\x24\x85\xca\x52\x68\x43\x0a\xd5\xa4\x50\x4d\x9a\xc4\xf0\x94\xd5\xa4\xe9\x31\x64\x48\x21\x03\x94\x9a\x02\x8a\x62\x27\x63\x78\xde\x1b\xc0\x9f\xcc\xc1\xee\x9d\xc2\xc7\x3d\x59\x13\x5b\x40\xfc\x42\xc5\x2f\xce\xe0\xb9\x80\xa7\x04\x96\x25\x0f\x21\x02\x60\x5e\x8e\x1f\xc2\x53\x26\x5a\x9e\xdc\x87\xe7\x29\x3c\x21\xe4\x14\x60\x5e\x9e\xca\x62\x97\x0f\x61\x92\x2e\x1f\xde\x83\xe7\x03\x78\x42\x5a\x85\x2c\x97\x67\xea\x03\xe6\xf5\x12\xaa\x5a\xca\x3e\x1a\x8f\x8e\xd3\x81\xfc\x3b\x19\xc1\xf3\x58\x7d\x9c\xc2\xf3\x0c\x9e\x31\x3c\x53\x78\x32\xf9\xbc\xff\x10\x9e\x10\x7b\x9f\x41\x86\x07\x90\x1b\x00\x1a\x8f\x4e\xef\xc9\xa7\x1c\xf0\xf1\xe8\xe1\x7d\x78\x42\x4d\x0f\xa1\x8c\x33\xf9\x3c\xb9\xbf\xbc\xd8\x8e\x4f\xc7\x50\xdd\xe9\x58\x66\x38\x55\x75\x9f\x9e\xc0\xc7\xfd\x63\x78\x9e\xc8\xe7\x29\xbc\x9f\xc2\xfb\xe2\x14\x12\x49\x84\x33\x3e\x85\x06\x9c\x26\x67\x10\x94\x42\x7c\x2a\x23\x1e\x8e\xe4\x8a\x18\x3f\x1c\xc1\x47\x2c\x01\x3d\x3b\x96\xdd\x30\x3e\x3b\x3e\x86\xe7\x29\x3c\x65\x3b\xce\x4e\x20\xe4\x04\x0a\x39\x3b\x59\x5c\x6c\xc7\xf1\xf8\x14\x9e\x32\x3a\x96\x93\x6d\x1c\xdf\x97\xa3\x32\x8e\x25\xa6\x1a\xc7\xd0\xd8\x58\x4e\x8c\x71\xfc\xe0\x3e\x44\x3c\x48\xe4\xf3\xf4\x04\x3e\x4e\xd5\x87\x6c\xe1\x02\x70\xc7\x78\x31\x92\xc0\x2d\xa0\x69\x8b\x93\x07\x10\x04\xfd\x0a\x6b\x6a\xbc\x90\x6b\x7a\xbc\x78\x00\x50\x2f\xa0\xa1\x8b\x87\x23\x78\x8e\xe5\x33\x86\x9e\x59\xc4\xf7\xe1\xf9\x10\x9e\xb2\x51\xc9\x71\x22\x23\x92\x93\x13\x78\x3e\x80\xa7\x84\x3d\x49\xa1\xda\x24\x3d\x86\xe7\x3d\xf8\x60\x23\x78\x1e\xab\x8f\x87\xf0\x94\x1d\x94\x26\x90\x38\x65\x32\x7f\xba\x84\xe9\x90\xca\x4d\xf3\x78\x34\x4a\xe0\x99\xca\x27\x14\x79\x3c\x5a\x8e\x2e\xb6\xc7\x09\x5b\xca\x8f\x64\x39\xbe\xd8\x1e\xa7\x0c\x62\x52\xb5\x03\x1f\xc7\xb0\xe9\x1e\xc3\xc7\xd9\x19\x3c\xe3\x8b\x6d\xfc\xe0\x81\xcc\x12\x3f\x90\x83\x19\x3f\x90\x5d\x14\x3f\x38\x4d\xe5\x53\x96\x18\x3f\x90\x45\xc5\x0f\x25\xba\x8b\x1f\x8e\x1e\xc0\x73\x21\x9f\xc7\xf7\xe1\x09\x21\x12\x61\xc6\x0f\xa1\xba\xf8\x21\x64\x38\x3b\x96\x9d\x19\x9f\x49\x44\x1d\x9f\xc1\x3a\x8b\xcf\xee\x43\x0c\x2c\x88\xf8\x4c\x4e\xc3\xf8\x6c\x71\x02\x4f\x95\x58\x2e\xba\x18\x10\x72\x1c\x03\xa2\x8f\xe3\x63\x26\x9f\x72\xe9\xc6\xb1\x9c\x10\x71\x2c\x97\x5b\x1c\xcb\x3e\x8d\xe3\x7b\x27\xf0\x84\x0c\x72\x4f\x89\xe3\xc5\x31\x64\x5b\xdc\x83\xe7\x29\x3c\x1f\xc2\x13\x0a\x92\x98\x28\x8e\xe5\x4e\x18\x2f\xd8\x7d\x78\x3e\x84\x67\x7a\xb1\x4d\x35\xc1\xb1\x94\xfd\xb5\x5c\x8c\xd9\xc5\x76\xa9\x08\x92\x25\x1b\xc9\x20\x76\xac\x3e\x64\x9b\x97\xcb\x33\x06\xcf\xe5\xfc\xc8\x11\x0d\x4f\x5b\x64\x3a\x5c\xed\xca\x83\x24\x5c\xef\x3e\xa2\xa7\x0f\x1e\x06\xc1\x3b\x4b\x6d\x78\x57\xf7\xa2\x7b\x53\x76\x87\xe1\x73\x65\x6b\xaa\x00\xf7\xbc\xce\x7d\x48\x01\x3a\x41\xa1\x76\xef\x34\x4c\xca\xf2\x1d\xfb\x58\xd1\x1c\xef\x9a\x3c\xaa\x30\xff\x94\x81\x75\xeb\x5d\xa0\xc2\x1e\xbf\x1d\xb7\xb9\x38\x55\xcb\x23\x71\xab\xb8\x0a\x14\x95\x77\xaf\x54\x7e\x6e\xd3\x3e\x46\xda\x46\x56\x65\xef\x11\xaa\x47\xa3\xc9\x60\x50\x59\x06\xa0\x2a\x51\xdf\xfc\xc1\x07\xde\xe3\x68\xfb\x4d\x9b\x4c\x83\x8a\xda\x20\xe1\xe6\x83\xe8\xf6\x27\x18\xbf\x99\xde\xa5\x7f\xb6\x2f\xb1\x13\x41\x02\x93\xf3\xcf\xf3\x34\xcc\xeb\x9a\x29\xf3\x76\x25\xab\x80\xd0\x56\x5e\xbe\x79\x73\x87\x59\x9d\x96\x0f\x5c\xaf\xc7\x4d\x05\x92\xe4\xce\x87\xb2\xed\xef\x84\x1e\x71\x19\x1d\xfa\xae\x63\x0d\x25\xfe\xab\x70\xac\x79\xab\x6d\xee\xac\x04\xf6\x46\xe0\xae\x48\x5c\x31\x09\x29\x92\x13\x31\x4e\x2a\x30\x8b\x6f\x22\x14\xc4\x7e\x54\x85\x49\xae\xb8\x08\xbf\x29\x2e\x42\x5e\xc5\x3c\x2f\x3b\x4c\x09\xbe\x0c\x4f\x7c\x2d\x2c\x60\x12\x54\x3e\x88\xda\x96\xbe\xcc\xeb\x3c\x6c\x9a\x90\xb0\xc2\x07\xa9\x00\x2b\xbe\xe3\x3d\xc5\xac\x44\x59\x61\x52\x51\xca\x9c\xf9\x4c\x25\x4c\xd5\xa9\xc4\x23\xd5\x9f\x89\x96\x8a\xb7\xed\xe6\x38\xa9\xf8\x95\x59\x3b\x13\x50\xf3\x29\x84\xa8\xcc\x7f\x27\x1e\x33\xba\x2f\x7c\xcf\x9c\x7b\xe5\xaf\xf2\x96\xb7\xd2\x7f\xd4\x17\x17\x25\x46\x7d\xa6\x5d\x95\xca\xaf\x8b\x8b\xf2\x1b\x84\x1b\xf0\xc4\x31\x1e\x07\x41\xf8\xac\xe5\x5b\x4c\x0e\xba\x2e\x6a\x3f\xe0\xbb\x03\xde\x9a\x47\xe6\x3c\xf6\x52\x0e\x59\xb1\x56\x5e\x7f\xf6\x71\xa7\x5b\x2e\x80\xe8\x2b\x11\x56\x58\xb9\xcc\xd1\x3e\x82\x9d\x24\x98\xe2\xe4\xe7\x5a\x5b\x34\xf7\x3d\xba\x32\x1f\xed\xd8\xfb\xec\xdc\x6a\x8d\xf2\x69\x3e\x1b\xcf\xfb\x3c\x42\xe0\x53\xfb\x07\x09\x54\x9c\xa6\x5f\x04\xd5\x81\x82\x09\xb0\x63\x81\x15\x57\xd2\xc4\xf5\x69\x58\x58\xed\xd3\xca\x1f\xfc\x17\x3b\xdc\x08\xe6\xc9\x46\xef\x33\x13\x52\xcc\xf2\x79\x10\xf4\x5e\x09\xd0\x72\x32\xae\x64\x81\xd9\x65\x9c\xc8\xee\x3f\xc6\xff\x4b\x68\xc9\x80\xf6\x42\xbe\x64\x95\x1e\xaa\xf2\xc9\xcd\x53\xeb\x9d\xc0\x61\xbb\x2f\x49\x1e\x7a\x1c\x47\x84\xc9\xa7\x75\x2a\x86\x2e\xed\x41\x1e\x04\x2c\xcc\x35\x87\xf3\x3b\x41\xb5\xb6\xef\x13\x41\x7e\x11\xe4\xaf\xa2\xe3\x68\x5d\xf9\x83\x69\x2b\x06\x33\x6a\x7c\x59\x9b\x46\xa3\xb4\x88\x2f\x2f\xe3\x45\xc6\x90\x3c\xa5\xd6\x35\x04\x3c\x2b\xc4\x06\xbe\x9b\xd0\x93\xe1\xfe\x5d\xb4\x24\x47\x9f\x08\xc3\xe8\xf0\x5c\xfc\xfc\xc7\x7f\xfd\x3f\x10\x3e\x00\x54\xed\x79\x8e\xa9\xc8\x5d\xbb\x0f\xfa\x88\xf0\x1c\x63\x32\xea\x51\x1f\xff\xb7\xdc\x66\x07\x41\xf8\x44\xd0\xca\xf7\xf7\x7d\x4e\xc7\x20\xb6\xe5\xa5\x7a\x74\x1c\x04\x3d\xd5\xea\x87\x18\x37\x6a\x82\x3c\x11\xd3\x2e\x70\x91\x17\xf0\x3f\xfe\xbb\x76\x99\x87\xb4\x66\x71\x74\xc8\x73\x30\x9f\xbe\xc8\x44\xf2\x61\x72\xa8\xbd\x87\x8f\x37\x1f\x27\x87\xda\x21\xb9\xf6\xa6\x37\x18\x6f\x3e\x22\xcf\x33\xf0\x5d\xde\x93\x50\x8b\x25\xf5\x17\xd1\x72\xb4\xfe\x8b\x51\xdc\x3e\xfc\x45\x68\x55\x26\xe8\xba\x3b\x7b\xeb\xf1\xff\xf3\x7f\x3f\x46\x58\x4e\x9a\x0f\x02\x5c\x39\x8c\xb1\x9c\x65\x4f\xc4\x16\x6c\x66\x3c\x05\x8f\xe6\x3f\x03\x1f\x47\x39\x74\xae\x6b\xb9\x20\x96\x15\xa5\xc5\xb0\xf0\x7c\xba\xeb\x09\x91\xab\x72\xc6\xe4\xf8\xee\x72\x2c\x84\x34\x57\x45\x0c\x74\x51\xe7\x27\xea\x76\x54\x90\x6f\xe5\xe2\x77\x3a\x18\xf4\xa4\x47\xd1\x45\x7e\x91\x2f\x8c\xf2\xc2\xd1\x45\x7e\x64\x2e\x02\xa6\x3e\x43\xa7\x2d\xcb\x0a\xdc\x45\xcb\x59\xac\xce\x69\x3e\x71\xa2\x7f\x8e\x13\x93\xcb\x0d\x0c\x78\xbe\x1c\x8c\xfb\xb4\x79\xbe\xc2\x8a\xdf\x54\xda\xe5\x14\x33\x92\x77\x7c\x30\xc6\x53\x3e\x18\x47\x1c\x13\xab\x24\xff\x5a\x39\xb3\x92\x05\xf6\x68\x3c\x0d\xf5\xdd\x86\xf0\xcc\xc0\x62\x52\xf5\x69\xdc\x1f\xe3\xc8\xc6\xca\x9d\x8b\xf7\xc7\x9e\x20\xf0\x5e\x0b\x1a\xb6\xfd\xc5\x45\x3e\xad\x65\x2f\x34\xe4\xcf\x82\x5e\xf3\x3c\x15\xd7\x43\xdf\x24\xd2\xb4\xcb\x92\x73\x45\xb4\x58\x7c\x3d\xda\xe6\xf0\xed\x6c\x1a\xbd\x71\xd3\x86\x45\x16\x66\x85\x68\xaf\x73\x56\x18\xb7\x6b\xae\x9c\x36\xfd\xe3\x15\x69\x94\xca\xc3\x5e\x05\x92\x5f\xb0\x2b\x1b\x1a\x15\xf7\x28\xc3\x41\x30\xea\xd1\x6a\x98\x88\xb5\x8c\x7c\x9e\xa7\x6f\x04\xcf\xab\x32\x44\x00\xed\x3b\xf1\x3c\x4f\x11\xdc\xe1\x7c\x25\x28\x12\x79\x22\x36\x37\x88\xe7\xe1\xaf\xc2\xe1\x22\xb9\x03\xfc\x2a\x3a\x4b\x48\x27\x25\x48\x41\x30\x41\x98\x20\xd3\x2a\x47\xe5\xfe\x2a\x86\x2a\x21\x26\x3f\x09\xe7\xe8\xfd\x6f\x82\xfc\x5d\xce\xc9\x0f\xec\x46\xa2\xdc\x92\xde\x9e\x44\xe8\x79\x0e\xb4\xcf\xc3\x08\x3d\x89\x93\x0f\xe5\x26\x4e\x18\x22\x67\x11\x7a\x17\x2f\x10\x19\xbb\x04\xe3\x07\x11\x7a\xbb\xe2\xcb\x0a\x91\xf1\x69\x84\x9e\x56\x45\x86\xc8\xf8\x61\x84\x1e\x67\x32\xe8\x2c\x42\x6f\xe2\x6d\xc9\x10\x39\x1e\x45\xe8\x69\xbc\x29\x7f\x10\xc9\x07\x44\x8e\x4f\x23\xf4\xbc\x4c\x10\x39\x39\x8e\xd0\x5b\x55\xfa\xc9\x89\x4c\x7c\xc9\x7e\xd9\x20\x72\x72\x4f\xbd\x3f\x13\xd7\x39\x22\x27\xf7\x65\x7d\x29\x22\x27\x0f\x22\xf4\x9d\x58\xcb\xc4\xa7\x11\xfa\x81\xc9\x6a\x4f\x1e\x46\x08\xb2\x9c\x45\xe8\x67\xb9\xd4\x10\xb9\x37\x8a\x90\xca\x79\x4f\x96\x53\xf0\xbc\x7a\x9b\x14\xf2\xf3\x7e\x84\x5e\x82\x2e\x11\x22\xf7\x1e\x44\xe8\x99\xb2\xdd\x4e\xee\x9f\x45\x68\x82\xc8\x83\x71\x84\x28\x22\x67\xe3\x08\xfd\x28\x52\x44\xce\x8e\xcd\xcb\x89\x7e\x19\x8f\x1e\x44\xe8\x1b\xf9\x7f\x0a\x49\xc7\xa3\xb3\x08\x0d\x10\x19\x8f\x47\x11\x1a\xca\xff\x71\x84\x8e\x10\x19\xcb\x06\x9a\xd2\xc7\xa7\x27\x2a\xd1\xc3\x07\x50\xcd\xf8\xa1\xce\xfc\xf0\x61\x84\x88\xfc\xd7\x85\x9c\xe9\x42\xce\x74\x21\xb2\xfe\x7f\x22\x72\x2c\xbb\x71\x86\xc8\xb1\xec\xc3\x8b\x0b\xf9\x32\x8e\xd0\x5c\xfe\x1f\x47\xe8\x4f\x88\x3c\x38\x39\x96\xfd\x28\x7b\x41\xbe\x9e\x98\xd6\xcb\x8f\x7b\xa6\x9f\xe4\xc7\x7d\xdb\x45\x0f\x4e\x8e\x4f\x8f\x1d\x88\xf2\xf3\xc4\xf4\xad\xfc\x30\x3d\x2e\xdf\x1f\xb8\x71\x91\x9f\xa7\xfe\xd0\x3c\x38\x39\x19\x1d\xdb\x4e\xf5\x08\x90\xef\xdb\x67\xbe\x8c\x5d\xb1\xec\xeb\xe3\x29\x1b\x56\x22\x52\x5a\xa4\xde\x3d\x73\x7c\x47\x5a\x90\x85\x93\x59\xbc\x7b\xdf\xd8\x5d\x1a\x80\xcc\xbb\x13\x11\xfc\x5e\x84\xd5\x6c\x34\xc7\x91\x77\x7b\x5a\xdc\x9d\x9c\xc5\x21\x88\x6f\xe2\xa8\xa5\x6a\xec\xdd\xbc\xc6\x3e\x49\x76\xad\x64\x9c\x12\x38\x0f\xd0\x17\xb9\x24\x10\xf3\x1e\xd8\x12\xae\xe8\x6b\x1e\xe6\xd8\x38\x4d\x79\x27\x3f\x88\xa0\x7c\xca\x15\x91\xa8\x9a\x53\xc4\x61\x8e\xa3\x0a\x9e\x23\x03\x86\x3c\x54\x12\xe1\x1d\x7a\x79\xab\x52\x05\x82\xf6\x63\x92\x3b\x18\x0a\x1d\xa4\x2b\x53\x66\x51\xea\x7a\x44\xa9\xab\xb2\x6d\xab\x1e\x0c\x6f\xe4\xda\xbb\x85\xbe\xd6\xbc\x78\x7b\x84\x25\x72\x57\x15\x38\xdd\x9e\x6a\x98\xac\xce\xa9\x50\x2f\x1e\xa4\x2a\x9e\xc4\xd3\x51\x24\x3c\x64\x6e\x61\x17\x71\x47\x60\xc6\xc2\x62\x7b\x1d\x64\xcb\x8b\x1e\xcd\x83\xa0\x3a\xf7\xb2\xc6\xba\xd9\x7f\x13\x6d\x29\x85\xe2\x73\xce\x27\xc0\xc8\x34\x58\x71\xa8\x82\x00\x6c\x36\xb8\x5b\x47\x17\x49\x69\xa5\x2c\x3a\x50\x5a\x79\x34\x45\x61\x92\x02\xe4\x5c\xc1\x4a\x40\x6a\x55\x75\xe1\x54\xe7\xef\x81\x51\x88\x20\x08\xff\x26\x80\xaf\x80\xa3\x3d\x11\x39\x26\x05\x3e\x28\x68\xde\xec\xe9\x9b\x32\x6e\x5b\xad\xce\xad\xda\x7e\xbf\x90\x27\x3f\x50\x3c\xd2\x47\xba\x47\xa3\x20\x78\x2a\xb4\x82\x86\xd9\x8f\x2b\x8c\xf7\x51\xdf\xdb\xb8\x7b\x4e\x57\xd3\xdc\x37\x94\x73\x98\xb9\x44\xde\x75\x75\x1c\x2b\x43\x8d\x31\xe5\x33\x31\x27\x25\xd5\x30\xc6\x76\xca\x0e\x8a\x48\xe6\xd1\x8e\xa6\xca\x47\xb1\xd6\x09\x2f\xcf\x63\xe7\xbd\xea\x10\xec\x29\x94\x94\xc6\xda\xaa\x06\xbc\xba\x68\xa8\xa6\xc4\x94\x8a\x69\x19\x15\x8f\x46\x94\x86\x50\x63\x9f\x16\x73\x6c\xab\x92\x39\xb4\x4d\x3d\x80\xdd\x4b\xd3\x92\x37\x2e\x29\x14\xe1\x60\x04\xa0\x65\x6e\x32\x18\xcb\x81\xd1\xdf\x20\x3f\x2b\x03\x7c\x27\x7e\x3b\x7d\x25\x3b\xdf\xfa\xa2\x9b\xf0\xbd\x1d\xcf\x31\x9e\x60\xde\xb7\x96\x94\x0e\xf9\xf9\xa8\xae\xf9\xa3\x16\xd6\x98\x82\x50\x32\x6f\x7c\xf3\x6e\xee\xec\x3d\x9a\xb0\xf3\xf1\x68\xc2\xfa\x7d\xfc\x77\x31\x63\xfd\x7b\x0f\xe7\x14\x5e\xce\x1e\xcc\xa9\x12\xb6\x08\xb5\xbc\x3e\xa3\x0f\xee\x4f\xd8\x39\x3d\x73\xc9\x4d\x12\x68\xd3\x53\xcd\x3c\x73\xe9\xc7\x32\xf9\xf8\xd8\x95\x3e\x1e\x8f\x75\xf1\x80\xf3\xe7\x14\xbd\x40\x7d\xd6\xe0\x50\x21\xa8\x24\xa6\x3b\x46\x34\xd0\xc2\xfc\xaa\xb2\xba\x2e\x17\xad\x5f\x59\x96\xd5\xf5\xab\x57\x5f\x7f\xfd\xf5\x2b\xf8\x91\x57\xe4\xd5\xd8\xfe\x54\xd8\xab\x1f\xee\xfc\x7d\x49\xbc\xae\x68\x71\xe7\x8f\xc8\xea\xa1\x7e\x55\xde\xd7\x5f\x8f\xc7\xf0\x3a\xfe\xe1\x53\xc5\x7f\xa2\x5a\x15\x8f\x48\x45\x51\xe1\xfd\x48\xf1\xea\xd5\x1a\x7e\xc5\xbf\xf3\x5b\xb7\x7e\x3a\x30\xb7\xbf\xaf\xf3\x5c\x26\xfa\xb7\x8a\xfe\x9f\x03\x05\x7e\xd0\x32\xa4\xcd\x75\xc0\x5d\xe9\x9d\x77\xd3\xa3\x53\xf5\xf1\x30\x4e\xe6\x47\x24\xa7\x47\x33\x39\x09\xe6\x47\x84\xd3\xa3\xd9\x0f\x3f\x17\xf3\x23\x22\xe4\xdb\x62\x9c\xcf\x8f\x48\x4c\x8f\x66\xf2\xc5\xed\xff\x65\xcb\xf3\x06\x2c\x56\xe3\xd6\x08\x10\xb2\x36\xf9\x50\x09\x5a\x34\xdd\x4b\x7d\xe5\x5e\xb9\x57\x28\x1e\xc4\xd6\xb3\x71\x66\x5d\x8b\x92\x84\x6e\x8d\x1f\x8f\xa5\x3c\x0b\xad\xe8\x68\xb2\x3a\x4f\x26\xfd\xfe\x0a\x2f\xd5\xb9\xe3\x92\x86\x19\xdd\xfa\xec\xe6\x15\xc6\xe7\xf4\xf8\xde\xe9\xd4\x9e\x72\x32\x1c\x8d\xef\x1d\xdf\x3b\xa7\x59\x10\x64\xe7\x74\x7c\xff\xf8\xde\x14\xfd\x8c\xa2\xf1\xfd\x93\x07\x36\xf0\xf4\xf4\x64\x6a\xd1\x41\x36\x90\x71\x38\x1a\x9f\x9e\xda\x6c\xc7\xc7\xc7\xa3\x29\x2a\x50\xf4\x70\x7c\x76\x6c\x02\x1f\x1e\x8f\x4e\xa6\xe8\x1a\x45\x0f\x8f\x47\xf7\x28\xcd\xa6\x68\x81\x22\xf4\x03\xc2\x07\x2b\xea\x5c\x54\xa6\x14\xfd\x80\x2c\xe4\xb7\x68\x8d\x28\x0d\x2f\xe9\x72\xb6\x9a\xe3\xa9\x7c\xd2\x34\x4a\xe9\x65\xe3\xe7\xd9\x74\xf2\x8c\xbd\x3c\x41\x80\xe4\x31\x6e\xa3\xf2\xa2\x1c\x45\x5c\x75\xe3\x25\x0e\x82\x70\x43\x2f\x09\xc4\x5f\x06\x41\xa8\x52\xfc\x0c\xce\xf2\x45\x11\xae\xe8\x98\xa4\x74\x39\x1b\xcd\x65\xd1\x83\xb1\x2e\xbc\xdf\x2e\x5c\xd6\x95\xea\xff\xe5\x6c\xd5\x1f\xcf\x75\x4d\x63\x24\x89\xd9\x1e\xbd\xac\xeb\xb4\xa7\xa3\xea\x1a\x8d\x51\x0f\xd2\xe7\xf2\xbf\xae\x55\xa5\x29\x26\xb2\x4d\xaa\x56\x37\x6e\x72\xd4\x11\xf1\xea\xc3\xaa\xe8\x57\xc8\x72\xdd\xd1\xd7\x12\x78\x87\x5b\xd7\x74\xd5\x1f\x4f\xd6\xe7\x49\x10\x40\xd4\x72\xb6\x9e\x4f\xfa\xfd\x35\x9e\x98\x14\x57\x74\x15\x04\xa8\xa7\xc0\x1d\x48\x98\x54\xea\xb1\x4e\x3d\x05\xc8\x5f\x21\x72\x43\x57\x93\x9b\xf3\xf5\xa4\xdf\xbf\xc1\xcb\xd9\xcd\x9c\x5e\x1d\xac\xe8\x7a\x30\x6e\x0c\x9c\xa4\xd3\xef\x60\x5c\x00\x00\x3d\x40\x3f\x20\xf0\xdf\x08\xa5\x5e\xea\x1e\xf9\x61\xa7\xef\xf1\x4e\x93\x41\x9d\x1f\xd2\xa8\x06\x43\xc3\xbc\x46\xd9\xc8\xf5\x1c\xab\x76\x5d\x81\x2b\x62\xa8\x30\x5c\x4d\x55\x9b\x60\x5a\x91\xf7\x3a\x74\x7d\x9e\x4c\x65\x06\x35\xd9\xa0\x1f\xe8\xa2\xae\xdf\x4f\x25\x44\xe8\xe7\x4f\xb4\x54\x96\x7d\x4d\x9e\x83\x14\xb4\x07\x28\x06\xfd\x0b\x1f\x4a\x10\x75\xa1\x2b\x48\xd5\xef\xaf\x64\xaa\x20\xf0\x93\x40\xe3\x26\xcf\x9d\xf5\xe6\x32\x1c\x91\x8f\x64\xe5\xeb\xaa\xbd\xa5\x2b\xf2\x9a\x3e\x37\x26\x82\x5a\x65\xa1\x1f\x10\x4c\xa2\xb9\x2a\x48\xc6\xdd\xd0\xb7\x93\x9b\xf3\x15\x40\x13\x9b\xaa\x6e\x24\x34\x6f\xcf\x6f\x82\xe0\xb9\x11\x4e\x7e\x4d\x46\x44\xd5\x38\x26\x6f\xc9\x8d\x26\xcb\x1f\xd3\x1b\x5d\xc3\x8d\x2c\x25\x08\xfc\x22\xa0\x27\x26\x7b\x4a\x38\x26\x8f\x65\x09\xe4\xad\xf6\xe6\xdd\xef\xdf\x1c\xbc\x95\xb9\xef\xa8\x4d\xb6\x4f\x63\xb3\x31\xa5\xcf\x2d\xfd\x1b\x04\xe1\x35\xdd\x5a\x1d\x9d\x8b\xb2\xaf\xe4\x08\x21\x05\xe0\xc3\x6b\xc7\x4f\x26\xcf\x87\xdb\x5c\x69\xc6\x99\x9e\x1b\x11\x2f\x1e\x63\x4c\xc6\xe0\xa5\xf2\x39\xde\x57\xfc\x45\xd9\x57\x9a\x3f\xa1\x4a\x52\x89\x41\xa7\xf8\xd6\xa8\x24\x03\x3f\x32\x91\xa5\x1f\xb7\x61\xef\xc2\x33\x26\x10\x5b\x09\xf3\x8f\x31\x71\xe9\x7b\x6d\xc8\x5a\xb5\xb9\x54\x24\x91\x55\x91\xe7\x4d\xe3\xd8\x66\x6f\x87\x57\xac\x28\xb9\xc8\x29\xba\x3f\x1c\xdf\x1f\x1e\x23\xf2\xb6\xc1\x2d\xb5\x5a\x24\x40\xd2\xcd\x33\x30\xff\x71\x23\x8a\xaa\x0c\x82\x9d\x98\xb5\x48\xb7\x19\x9b\xb2\xb0\x60\xbf\x6f\x79\xc1\x42\x34\x1c\x1e\x0d\x87\x47\x19\x5f\x1c\x39\xb9\x62\x84\x71\xb4\x87\x57\x92\xb2\x25\x1c\x85\xd4\xff\x30\x5e\xa7\x53\xf5\x1a\xce\xf6\x17\x33\x27\x0c\x47\x2c\x74\x2c\x68\xdc\xb4\xdc\x69\xa0\x6d\xc9\x0e\xcb\xaa\xe0\x49\x85\xdc\x2e\x59\xd9\xcb\xa3\x5d\xe9\xba\x0a\xef\x5a\xa1\xf8\x25\x57\x50\xa4\x87\xe0\xf6\xf3\x10\xf5\x2b\x65\x7a\xa2\xe4\xeb\x4d\xc6\x64\x9b\x99\xaf\xad\x58\x78\xe5\xeb\x5d\xf4\x28\x9c\x46\xf8\x48\xd3\x00\xc8\xba\x05\x6f\x59\xf8\x51\x37\x37\xd3\x90\x0d\x39\x88\x5d\x3f\x8d\x4b\x06\x06\x9e\x10\x47\x98\x30\xca\xb4\xc4\x17\x8e\x98\x23\x5f\x89\x77\xe7\x13\x82\x58\x60\x35\x45\x28\x42\xff\x40\x18\xee\x7d\xe0\xfe\x07\x23\x52\x78\xf0\xe5\x21\x93\xc4\x78\xc8\x86\x39\xfb\x08\x9a\x2c\x72\xb2\xe0\x20\xa8\xc0\x3a\x74\x2b\x90\x68\x7b\xe0\x97\xec\x23\x2d\x40\x4d\xe2\x92\x7d\xc4\x86\x8c\xf8\xc0\xda\x8a\x3e\xbb\x9a\x8a\x72\xf7\xd8\xf1\x75\xe3\x6e\xe2\xb4\x5d\xc5\xf0\xe8\x62\x78\x74\x49\x5a\x16\x64\xb4\x45\xc2\x96\x60\x68\xd1\xef\x63\x4f\x53\x31\x08\xe0\xd4\xb8\x5b\x88\x77\x66\x03\xa1\xbb\x0f\x2c\xd7\x30\xa7\x71\x15\x53\xef\xfe\xec\x6e\x3f\xec\xda\xea\xcb\x46\x19\x7b\xb6\xf6\x40\x4d\x80\xd1\xa2\x35\x35\x8d\xa8\x17\x67\x34\xa0\x5d\x7e\x6d\x63\xb8\x50\xfe\xbb\x5b\x36\xe5\x08\x57\x10\x36\xca\xca\x8c\x48\xe2\xcc\x58\x9c\x91\xef\x43\x96\xa7\x41\x50\x68\x3c\xe3\x05\x62\xc3\x6b\xf0\xc2\xc0\x5b\xaf\x32\x0f\x68\xd5\x8e\x54\xac\x49\xf5\x56\x4e\x61\xa5\xd6\xaf\xfd\xbb\x1e\xb8\x12\xe4\x4c\x56\xc0\x80\x23\x77\x97\x01\x77\x4a\x03\xcf\xd3\x49\x9c\x83\xc3\xeb\x4e\x98\xbe\xc9\x1b\x26\xdb\xa2\x00\x26\x2c\x60\x45\x68\x39\x2d\x94\x9b\xeb\x7e\xa9\x6f\xe9\x88\x68\x9c\xba\x26\x9b\xe5\xca\xb1\xee\x9c\x64\x74\x34\xc9\xce\x0d\xb1\x39\xc9\xcc\x9d\x53\x42\xb7\xb3\x6c\x4e\x96\x34\xec\x25\x30\x96\xc3\x52\x64\x75\x5d\xc8\xbf\x10\x63\xd7\x4f\x89\x9e\xa9\x72\x02\x2a\x47\xad\x3a\xbd\x9c\xdd\x53\x5d\x0f\xf5\xc2\x22\xfd\x2e\x27\xd7\x34\x0c\x21\x45\xf2\xa1\xae\xcd\x9b\xa7\xb6\xa4\x73\x63\xd2\x29\x06\x16\x8c\x2d\x47\x6c\x24\x21\x01\x79\xed\x8b\x3f\x31\x54\x56\x13\x01\x4a\xed\x98\xe8\xcc\x72\x1c\x82\x20\x0e\x2b\x92\xfb\x41\x24\x31\x73\x59\x07\xca\x4e\xcc\x2b\x59\xbc\x7a\xd3\x6a\x55\xfa\x4b\x2b\xd6\xf5\x2b\xfd\xfd\x4b\xce\x2b\x9b\x35\x65\xdd\xac\xa0\x56\xbf\x34\xca\x10\xc7\x60\xf0\x45\x4f\x5e\x4d\x9a\xc8\x11\x58\xd1\xe3\xc9\xea\xdc\x24\x9b\xac\xfa\x7d\xa0\x17\x65\x41\x66\xf6\x2b\x95\x5a\x50\x9f\x95\x51\x04\x60\x8e\x34\xec\x40\x3a\x35\xde\xbd\xd4\x22\x4e\x3e\xfc\xb2\x09\x97\x6e\x3b\x1c\x84\xcb\x19\x50\xb8\x63\x13\x12\x8d\xa0\x6f\x54\x01\xa3\xb9\xd9\xed\x75\x48\x10\xe8\x17\x70\xa1\x30\x75\xe9\x4c\x9d\x8e\x35\x04\x43\x1d\x2a\x53\x7a\x4d\xdb\x09\xb4\xc2\xd8\x8c\x3a\x89\x73\xa5\x03\xdb\x63\x75\x6d\xb6\xb9\x9e\x45\x61\x75\xdd\xab\xf6\x84\x77\x6e\xaf\x0a\xef\xfc\x90\xdf\x2d\x65\x9b\x63\x85\x3a\xf7\x8a\x73\xf7\x84\x12\x5b\xaf\xda\x86\xa7\x8b\x7e\xbf\x69\x4b\x8d\xe3\x3d\xd9\x83\xa0\x18\x0c\x3c\x14\xe5\x33\xff\x60\x76\x71\x62\xec\x55\x29\xbe\xdd\x46\xd2\x02\x65\xe5\x1b\xc9\xd9\x02\x62\x33\xc1\x80\x0e\xca\xc9\x36\x08\x7a\xe5\x64\x4b\xb7\xd0\xa3\x38\xe4\xc3\x72\xc3\x92\xa9\xd0\x2f\x64\x0b\x7f\x38\xe2\xca\x34\x94\xa4\x93\x44\xca\x30\xe0\x8b\xad\x22\x0e\x33\x5a\x4e\x95\xe5\x28\x9d\x4a\x6e\x3a\xda\xe2\x9a\x72\x38\x2e\x4b\x20\x09\x24\x83\xd5\x12\x31\xe3\x25\x3f\xae\x58\x98\xe1\x03\x1f\x5e\x09\x90\xc6\xb8\x6d\x58\xe9\x2d\xd4\x91\x11\x59\x5e\xa4\xe1\x53\xe5\x25\x04\x96\xfe\x6e\x1e\x65\x9a\xd0\xe1\xcb\xc4\x7c\xda\xc2\x58\x9e\x46\x5c\xe3\xe6\x10\x5e\x30\xd1\x08\xd0\x84\x83\x77\x0f\xae\x8c\x20\x3f\xf7\x12\x82\xd6\x9f\x41\xd6\x51\x2c\xa9\x62\x98\xb8\xf1\x2c\x76\xba\x14\x51\xec\xcd\xcf\x32\xdc\x6b\xab\xba\x65\x9d\x4c\x42\x07\x6a\x90\x0e\x93\xab\x95\x8d\x3b\xa8\xdb\x8b\x0a\xfd\x46\x5a\x2f\x15\xea\xf6\xdc\x20\x86\xba\xd6\x89\x24\x9a\x4d\x45\x5e\xbd\x84\x60\xd5\x4f\x6d\x37\x1a\x9f\xb4\xc3\xc8\x97\x61\x05\x0a\x1d\xbe\x38\x8d\xc1\x83\x64\xb7\x68\xfc\x68\x30\x76\x84\xc2\x9b\xb8\x2c\xb5\xc2\x8c\xc5\x58\xd6\xca\x75\x49\x2b\xbb\x75\x1c\xb0\x08\xd8\x8a\x13\x07\x8c\x32\x04\x60\x85\xbb\xb6\x66\x33\xc9\x68\xa9\xcd\x00\x64\x6d\x9c\x08\x03\xd7\x0a\x7b\xb9\xfc\x81\xe7\x4a\x4c\xc9\x6c\x44\x99\xda\x61\xd4\x6e\xa7\x74\x72\x92\x20\x48\x66\xa3\x39\xbe\x8d\x07\x03\x12\x66\x9a\x92\xca\x0c\x79\x15\x4a\x38\xdb\xa1\x73\x4c\xb8\x35\x79\x9e\xf8\xd2\x2d\x9e\x7d\xa7\x46\xbb\xf4\x34\xac\xdd\xf3\xd1\x74\x14\x99\x5e\x98\xc5\xf3\xa6\x01\xc5\x67\x09\x20\x10\xa4\x72\x01\x39\xb2\x4c\x19\x41\xd6\x09\xf4\xda\x72\x91\xfe\x45\xb0\xcd\x1c\x2a\x9b\xdc\x0d\xf1\x03\xa9\x47\x1c\x09\x7c\x5b\x85\x82\x20\x58\x8d\xc8\x68\x32\xdd\x36\x64\x4b\xc5\x70\xcd\xaa\xb8\xae\x6f\x1b\x92\x51\x8f\x79\x94\x48\x1c\x25\xe4\x2c\x48\x7a\x74\x2b\xcf\xad\x1d\x64\x95\x60\x67\x61\x81\xc6\xb3\x64\xae\x18\x4c\x62\x96\xcc\x49\x4a\x47\x93\xf4\x7c\x65\x46\x30\x35\x23\xb8\xa1\xab\x59\x3a\x3f\x58\xba\xd3\x4e\x1e\x6e\x88\x3c\x19\x85\x1b\x3b\x7d\x37\x7a\x0c\xe5\x08\x64\xb4\x37\x52\xa2\x17\x6b\x7a\xeb\x70\xc9\x1e\x47\x0c\x0a\x41\xe8\x16\x12\xbd\xb5\x81\x15\x0c\x02\xab\xc1\x7b\x55\x45\x28\x5d\x50\xa8\x33\xca\xa6\xb3\x79\xa4\xf6\x18\xb0\x9e\xdb\xa9\xc4\x59\x46\x52\xb5\x54\x7a\x11\x98\x5a\x2a\xb3\x95\xea\xaa\x2a\xb5\x00\xef\xaa\xad\xb2\x74\x80\x79\xb3\x5e\x18\x9a\x83\xca\x5b\xe1\x40\x86\x79\x58\x8d\x0d\x2d\x70\x61\xe5\x61\x07\xe2\x67\xc2\x98\x54\x86\x8c\x09\x0b\x4d\x0c\xe9\x10\x5b\x8f\xef\xcd\xba\xda\xdd\x2d\x94\xd1\x37\xd8\x29\x8a\xbb\xf0\x73\xae\xaa\x06\x24\x9d\xfb\x48\xda\x90\x4a\xd4\x87\x6a\xea\x37\x24\xf2\x1b\xa2\xcb\x71\x44\x9a\xc4\xf0\xbb\xb5\x36\x4e\x09\x4c\x13\x28\x3c\x8c\x41\x84\x32\xcf\x59\xd1\xb6\xfa\xd9\xba\x27\x55\x78\x56\xc1\xcc\xfc\x4e\x33\x5b\x94\x83\xab\x69\xcc\x10\x95\x61\x4c\xb6\xb8\x91\x48\x62\x6b\xa7\xf9\x15\x18\x60\xc4\xdb\xee\x4a\xb8\x02\x2e\xc2\xec\x6a\x4e\xb7\xb3\x2b\x27\xfd\xb5\x6e\xfe\x97\x3c\x96\xb3\xe1\x7a\x9b\x55\x7c\x93\xb1\x8f\x3c\xbf\xec\xe0\x2e\xb3\x50\xbe\x54\x53\xad\x75\xc6\x75\x17\x7f\x7b\x64\x8f\x77\xa4\x76\x40\x4b\xdf\x6c\x95\x41\xc0\x1f\x0d\xc6\x53\xde\x37\xbb\x4c\xa4\x6c\x08\x08\x5a\xe9\xe3\xcd\xd4\xc8\xf0\x14\x38\x72\xc7\x23\x31\x35\x8e\x2d\x8a\x7e\x98\x4f\x3d\xef\x16\xd1\x08\x47\x83\x71\xe3\xb0\xcb\xdd\xa8\x47\x6c\x2b\x56\xb4\x69\x9d\x4a\xcf\x4b\x50\x87\xb6\xab\x3f\x67\xc5\x27\xb0\x4c\xb1\x53\xa0\xb7\xda\x49\x31\x84\xd0\x76\xb9\xf2\xe4\x60\xbf\x74\x05\xad\x30\xb0\x43\x61\x4b\x69\x45\xa9\x45\xa0\x83\x70\x63\x56\x95\x05\xc7\x90\x2a\xc2\xcf\xe4\x4c\xf0\x79\x81\x07\x99\xdc\x12\x61\xc4\x80\x00\x8f\x87\x49\x26\x4a\x16\x04\x5c\x1f\xf3\x4c\x67\xfb\x99\x4c\x11\x9e\xc5\x3a\x75\x90\x35\x54\x4d\xb8\xa4\xba\xa0\x69\x1e\x66\x44\xbf\x13\x2e\xcf\xa5\x24\x1e\x6e\xe2\xa2\x64\xcf\x58\xc6\xd7\xbc\x62\x45\x29\x07\x0b\x4b\xea\x6d\x23\xca\x20\xe8\xed\xc6\x5b\x09\x6c\x75\xde\xd4\xc5\x61\xf2\x09\xa0\x24\x31\x91\xf1\xf5\xdb\xea\x26\x93\xa7\x3b\xef\xab\x8f\x0e\x51\xbf\x1d\x30\x80\xf2\xd0\xc1\x52\xd9\x0d\x32\x1d\x42\x33\x2b\xf5\xb5\xd4\x4c\xd6\x92\xc6\xfe\xc1\x9d\x1b\x10\x9c\xde\x66\xb7\x08\x4c\x96\xb6\x69\x3b\x2d\x03\x3f\x26\x77\xb5\x01\x93\x58\x7d\xe9\x46\x84\xa5\xa4\xce\x35\xf8\x2e\x22\xf2\x3f\x30\x29\xbd\x43\xfe\xf8\x68\x44\xdc\xf8\x92\x84\x8e\x26\x89\x6f\x8c\x21\x51\x53\x62\x49\x56\xb4\x98\x25\x73\x3d\x72\x72\xc4\x56\x43\xb1\x61\xb9\x1a\x30\x6c\xc6\xc6\x8c\xc3\xaa\xdb\x0c\xe5\x26\x42\x0e\x8d\xca\xd7\x1d\x99\x95\xf9\xa6\xad\x85\xb6\x32\x1b\xa0\x42\xdc\x53\xf3\x12\x0a\xb5\x5e\x08\x42\x38\x1a\x61\xb2\x6a\x8d\xe5\xaa\x3b\x96\xed\x80\x81\x04\x00\x81\xf8\xde\x32\x08\x96\xe7\xdb\x20\x08\xb7\x74\x89\x9b\x6d\x4f\xf6\xc7\xfe\xe1\xdd\xea\xe1\x4d\xc1\x14\x90\x19\x59\xb5\x68\xcd\xc8\xee\xc9\x8f\x49\x6a\x77\x9d\x36\x3b\xcb\x88\x54\x7b\xbd\x30\xdd\x5d\xc1\x51\xe5\x94\x0b\x74\x1f\x98\x97\x70\x6f\xde\x48\x63\x12\x92\xe3\x48\xd1\xe9\x0d\x59\x64\x71\xfe\xa1\xed\x1d\xd6\x79\xd4\x69\x15\x92\xef\x03\x00\x4e\xa2\xb6\x0c\xb9\xee\xed\x47\xb8\x37\x7b\x94\x1b\x6c\xd6\x8a\xc6\xe8\x42\x6e\x63\xed\x2a\x0d\x32\x69\x97\x64\xd2\xa8\x59\xde\xb6\xd6\xb2\xc7\x60\x88\x46\x5b\xc5\x4c\xcc\x0f\x74\x25\x31\x4c\xb3\x9d\x72\x63\x03\x52\x7b\x9e\x69\x86\xce\x6e\x1f\xe7\xad\x79\x26\xf1\x28\x88\x40\x16\x3c\x79\xba\x8a\x8b\x32\xaa\x86\xad\xef\xcf\x91\x2b\x10\x3d\xbd\x35\xb4\x09\x7c\x12\x4d\xbb\x74\x7b\xbe\x89\x6c\x3a\x05\x83\x1a\x8e\x46\xfe\xfe\x13\x29\x8f\x85\xb8\x66\xc5\xfb\x44\xac\x37\x22\x97\xfb\xb6\x47\x39\xec\xd0\x23\xe4\x8b\x72\xc5\x69\x2a\xf2\x23\x09\xed\x91\x3a\xaf\xfc\x1b\x84\xcc\x1f\x80\x8a\xfc\x41\x60\xfe\x20\x39\xe4\x9d\xd4\xd0\xaa\x5a\x67\xca\xb0\xca\x22\x2e\x4a\xb4\xff\xe0\xd6\xa5\x9f\x42\x9f\x8d\x02\xee\xc0\x8e\x64\x39\x08\x93\x5b\x39\x45\x23\x74\x7b\x8b\x08\xac\x82\x08\x35\x0d\x32\xd3\xc1\xcb\xe3\x55\x89\x49\x07\xb1\x46\xda\xb3\x96\x05\xf4\xe5\x8f\xcf\x43\x55\xcb\xc7\x81\xcb\x38\xa8\xd8\x7a\x93\xc5\x15\x43\xa4\xdb\x0a\xfc\xbf\x24\x1d\xdb\xbe\x5e\x72\xec\x9a\xa3\x7f\x84\xd3\x48\x52\xf6\x71\x25\x8a\xba\x14\xcb\xfa\x03\xbb\xb9\x16\x45\x7a\x98\xd4\x49\x5c\xb2\x3a\x67\xd7\xf5\xec\x62\x76\xdb\x5c\x84\x64\x12\xcd\x6b\xfa\x08\x7f\xa5\xad\x07\x54\x60\x31\xf3\xdd\xcd\x86\xe1\xba\x46\xbf\x6f\xe3\x92\x83\xb9\x56\x13\x1a\x04\x47\x17\xb7\x17\xe5\x37\x26\x3d\xd3\xdb\x80\xdd\x44\x98\xdc\x23\x07\x61\x51\xd7\x23\x8c\x71\xd3\x9e\x5c\xbf\xc5\x57\x71\x99\x14\x7c\xe3\xfb\x23\x73\x5b\x05\x11\x24\xa6\x85\xc7\x3b\x26\x25\xd5\xa7\x2a\x49\x6f\x2b\x5e\x0d\xd9\xd2\x7c\xf8\x5b\x29\xf2\x2c\x25\x99\x7e\xad\xeb\x2d\x49\x68\x0e\xa6\x85\x54\xf9\x64\x49\xf3\xe1\xb5\xb6\x97\x00\x1a\x5e\x65\x5d\x1f\xcd\x2e\xae\xbf\xba\xf8\x18\x8f\x07\x17\xdb\xe5\x72\xb9\x9c\x1f\x91\x95\x2f\x24\xe5\x24\x55\x1d\x46\x53\x56\x8f\xe4\x59\x4b\x52\x19\x48\xf7\x24\x52\x1a\x27\x15\x65\xa1\x09\x3a\x8c\x41\x73\xc5\x0b\x58\x80\x06\x8e\x17\x90\x20\x4c\xb8\x0c\x30\x83\x83\xc0\x34\x2b\xd4\x80\xe2\x4a\xac\x91\xa9\x06\x3e\x1a\x12\xd3\x5b\xbe\x8c\x58\x88\xf8\x12\x61\x02\x62\x83\x51\x45\xae\xc1\x25\x18\x91\x3b\x46\x54\x90\x54\x44\x05\xa9\x8a\x9b\xa8\x20\x4b\x9e\xc7\x59\x26\xdf\x14\xec\x51\x4e\x80\x8f\x13\xe5\xc4\x30\x77\xa2\x9c\xe4\xec\x5a\x16\x99\xb3\x6b\x84\xb5\x3d\xc8\x28\x27\x70\x07\x19\xe5\x24\x65\x8b\xed\xe5\xa5\xdc\xe0\xc8\x55\x5c\xc8\x84\x57\xb1\x84\x13\xdc\x2f\xb8\xcf\x8c\x79\x1f\xa6\xdf\x64\x88\x5d\x04\x98\x80\xc8\xbc\x0c\x83\x17\x99\x4e\x40\x81\x4b\x68\x78\x79\xcd\x75\xb4\x7a\x83\x0c\x25\x53\xe9\x4b\x06\xb0\x29\x0b\x53\x2c\x44\xfa\x55\xf6\x5f\x1e\x71\xa2\x96\x57\xc4\x89\xbb\xcc\x94\xa1\xc5\x96\x45\x82\x2c\x63\xd9\x31\xca\x43\x5c\x24\xc8\xd6\xdc\xa5\x46\x82\xbc\x8a\x5f\x45\x82\xbc\xcc\x97\x3c\xe7\xd5\x4d\x24\x80\x6a\x97\xe5\xcb\x7f\x09\x00\x38\x4b\x94\x10\x80\x37\x42\x4c\xca\xed\x86\x01\xcc\x30\x20\x98\xdc\x70\x96\xa5\x51\x4e\x14\xbe\x90\x11\xea\x4d\x02\xb6\x36\x41\xea\x0d\x19\x97\xe1\x65\x94\x93\xf8\x3a\xe6\x95\xfc\x2f\x6f\xf2\x04\xca\x93\x2f\x48\x9d\xcf\x13\x63\x43\x48\xcf\x84\xab\xb8\xe0\xa0\x7e\x64\x66\x83\x09\x18\x9c\xa0\x86\x6c\xe9\x2d\xcf\x2b\x56\x2c\xe3\x84\xf9\xa0\x02\xe6\x87\x63\xa9\x1c\xe3\x78\xcd\x40\x9a\x3f\xca\x89\xc2\x60\x32\xa9\x7a\x93\x80\xe5\xdb\x75\x2b\x60\xb3\x5d\x64\x3c\xd1\x41\x7c\xc9\x99\x1c\xa1\x4d\xc1\xaf\x60\x73\xee\x84\x8a\x4a\xb9\x98\x6f\x87\xc7\x8b\xb2\x92\x2b\xad\x1b\x5c\x46\x9c\x28\x1c\x11\x95\x44\xf9\x8d\x8f\x4a\xb2\x10\x02\x3c\x9c\x96\x24\xce\x6f\xa2\xb2\x71\x22\x5f\x8a\x45\x11\xcf\xb2\x39\xdc\xbc\x59\x1e\x64\x13\x62\x92\xd2\xa3\x59\xff\x62\xf0\x4d\xf0\x35\x3d\x7f\xd4\x9b\xd6\xff\xfb\x3f\xe6\x47\x64\x43\x8f\xfe\xf1\x5f\x42\x39\xc1\xd9\xc7\xaa\xe6\x69\x0d\xd6\x5d\xea\x2c\xce\x2f\xb7\xf1\x25\xab\xc1\xf5\x9e\x56\xc0\x64\x45\x9d\xf1\xb2\xaa\x4b\x56\xd5\x05\xbb\x62\x45\xc9\x6a\x38\x3d\xd7\x0b\x89\x18\xaf\x44\x12\x2f\xea\xcb\x22\xde\xac\x30\xf2\xa4\xdc\xd6\x1d\x97\x7f\x9c\x32\x22\x68\xe1\x9b\x54\xbf\x0a\x99\x95\x88\x06\xf7\x6e\xea\xde\x47\x8e\xef\x9f\xd0\x9f\x28\xe5\x75\x8d\xfe\x84\x28\xb5\xc2\xba\x85\xa2\xb1\xf9\xbf\x18\x0d\x73\xca\xc9\x1e\xfd\x40\xc2\xa9\x72\x7e\xb9\x0d\x02\xf4\x5f\x40\x6b\x67\xc3\xd8\x87\x10\x6c\x6f\xab\xa3\xc6\xc6\x9e\x4d\x2b\x57\xde\x15\x59\x87\x48\xa1\xc8\x81\x41\x58\x04\xad\x59\x15\xeb\xdb\xee\x89\x92\x8b\x06\x57\x4e\x0a\x4e\xb8\x30\xed\x81\x45\x70\x3c\xc1\x9c\xf6\x78\x10\xa0\x8b\x0b\x44\x3d\x79\x58\x70\x13\xe9\x2a\xc1\xb2\x16\xcd\xe6\xb0\xba\xd6\xe0\x58\xd1\x26\x82\x3e\x81\x1b\xf9\x21\x02\xcd\x24\xe6\x64\x63\xd2\x7e\x38\x8d\x66\xec\xf9\x5c\x8e\xe8\x7c\x7a\x91\xf6\xf1\xf4\xc8\xb6\x66\x1d\x22\x35\x57\x10\x31\x2f\x7b\x0b\x42\xc3\x21\xf2\x33\x95\x9b\x82\xc5\x5e\x6b\xf9\x32\x3c\x9a\x5d\xcc\x2e\xe6\x72\xb3\xbb\xc0\x64\x72\x11\x5d\x0c\xe7\x7a\xf3\xe2\x5e\x4e\xc5\x4f\x47\xd4\x14\xcf\xe2\x2a\x44\x8f\x5a\x65\xd3\x47\x88\x78\xa8\x1b\xd2\x8f\xfc\xf4\x47\x1f\x8f\x5c\x91\x10\xf4\x57\x90\xf4\x3e\x9a\x5d\xa4\xf1\x60\x39\x3f\xe2\xd0\x67\xfb\x1b\xd6\x2e\x49\xdc\x55\xd2\x68\x70\xfa\x47\xca\x59\xdc\x59\xce\xf8\x93\xc5\x1c\x5d\xa4\x3b\x9d\xe4\x0f\xde\x37\xe1\x34\xba\x18\x5e\xa4\xdf\xe0\xe9\xbe\x61\xbc\x1b\xbc\x23\x7f\x0d\xe8\x6e\xfe\x06\xe1\x69\xe8\xad\x87\x1b\x72\x03\x33\x47\x1e\xef\x20\xc1\x91\x4c\xc0\x86\xe5\x07\xbe\x01\xed\xa9\x10\x2a\x48\xc4\x5a\xe2\x3b\x44\xec\x1b\xc6\x51\x05\xf6\xf8\xc7\x78\x1a\xee\xd5\xa9\x23\x05\xed\x8d\x49\x4e\x7b\x63\xb3\x06\x2a\xb7\x06\xb4\x25\x7e\x65\xa0\x13\x20\xad\x82\xc0\x8a\xf0\x1f\xa0\x19\x38\xaf\xcd\x69\x6f\x14\xe5\x41\x80\xe6\x2a\x41\x28\x4b\xc3\x4d\x41\x7b\x85\x59\x33\x55\xd3\x28\x6f\x35\xb6\xc3\x16\x61\x38\xbb\xe4\xeb\x9b\xed\x1c\x87\xd3\x9e\x7e\xfd\xe6\xe2\x18\xe3\xfe\xc5\x42\xf5\x17\x5c\xee\x6c\xec\x52\x1a\x1c\xcb\xe6\x84\xde\xa0\xa5\x90\xcc\x4e\x40\x6f\x2e\x12\xe6\xcb\x3e\x40\x3f\xff\xf3\x0e\x5c\x73\x49\x2e\xdd\xaa\xfc\xdf\xda\x83\xd1\xe9\x5f\xa6\xcf\x1e\xea\x1f\x72\xa4\xbb\x73\xe2\x8f\x82\x07\xf2\x11\xb6\x98\x5b\xaf\x80\xa5\x53\x56\xb4\xc9\x49\x4c\x57\xc3\x8d\xe6\x53\xbf\x2c\x9f\xe7\xdb\x35\x2b\xe4\x5e\x18\x0a\x1c\x04\x2b\x79\x1a\x36\x1b\x44\x10\xa0\x21\xea\xd1\xc2\xd2\xaa\xd3\x75\x18\x2b\x6b\x93\xb1\x32\x0e\x41\x04\x8e\xd6\xa1\xb7\xbf\x7a\xaf\xc2\xd7\x20\xb8\xe9\xdc\x2d\xaa\x09\xe3\xb0\xe5\xc4\xcd\x90\x22\x08\x72\x7c\xeb\xe3\x45\x6d\x31\x35\xa7\xe0\xe9\xc0\x8a\x3d\xef\x9f\xb0\x9e\x61\xb9\xbd\x75\xee\x22\x6a\x3d\x49\xc1\x33\x83\x1c\xe4\xa2\xae\xd1\x57\x0a\x10\xbd\x5a\x6e\x11\xc6\x77\x80\x24\xb3\x69\xb4\xee\xc1\xa5\xc8\x7c\x6f\xe2\xb5\x06\xac\xd1\xa2\xa8\xe1\xec\xb6\x99\x63\xef\xd8\xf1\x5e\x41\x5c\x0d\x97\x71\xf5\xb8\x28\xc4\xf5\x63\x30\x14\xea\x7d\x6a\xde\x86\xd5\x4c\x57\x47\x05\xab\x62\x2a\x11\xaa\xe6\x51\x28\x4d\x96\xb0\x38\x1f\xe1\xae\x95\xc3\xde\x58\xee\xb5\x83\xf1\x44\x3c\xa2\xa3\xc9\x60\x20\x9c\xcb\x18\x5d\xa0\x16\xd9\x16\x98\x94\x74\x61\x8b\x8f\x95\x09\xc6\x47\x74\x14\x04\xe5\xf9\x89\xd1\xc7\xb9\xed\xf7\x85\xee\x0f\xbe\x0c\x47\x94\x0e\x06\xb9\xf2\xb7\xd1\x18\xe9\xe3\xf2\x11\x3d\x91\x79\x1e\xe0\x7e\x3f\xb7\x32\xc9\x7a\xd2\xc6\x58\x6e\x8f\x23\x65\x8a\x18\xb6\x17\xf4\xa7\x8b\x23\xb3\xa5\xc4\x66\x65\x00\x4b\x09\xb0\x87\x57\x61\xd3\x40\x50\xb7\x97\x84\x56\x60\xbf\xa6\xb7\x92\xce\x8c\x7a\x23\x43\x28\xf5\x46\xc4\x4c\x51\x70\x4e\xa8\xe8\xa8\xde\x88\x28\x64\x21\xdf\x80\x84\xed\x8d\x48\x77\xc3\x8f\x5a\xe6\xac\x9f\x3b\x0b\x98\x70\x97\x0a\x56\x34\xe1\x3c\xc5\x52\x23\xb0\x9f\x28\x9b\x93\x46\x64\xff\x66\xc3\x24\x89\x23\xdf\x37\x05\xbb\xa2\x5c\xdb\xde\xcc\x97\x82\x0a\xed\x1a\x32\x37\xee\xf0\xc1\xfd\x34\xcd\xbd\xf9\xfc\x71\xd7\x32\x01\xdc\x53\xfd\x25\x2e\xca\x49\x31\x29\xa8\x12\x8d\xc1\x60\x9d\x57\xd2\xab\x2d\x31\x18\xcf\x81\xd3\x50\x93\x76\xc6\x91\x53\xc1\xae\xe0\x42\xab\xa0\xf9\xf0\xea\x4b\x0a\x6b\x94\x14\xb2\x66\x35\x01\x63\x5c\x35\x55\xbd\x2b\x77\x08\x3a\x3c\x51\xd7\x1b\x9e\x25\xbc\x96\x86\x8f\xbd\xfa\xb1\xa2\x00\x13\x26\x67\x25\x1b\x0c\xf0\xdb\x61\x92\x68\xab\xbe\x26\xd5\x8c\xf9\xb6\x60\x1f\x3b\x33\x86\xaf\x7d\x33\x86\xce\x63\x1c\xe9\x79\x3a\x8d\x1f\x60\xe3\x72\x67\xfc\x56\x67\x56\x77\xb4\xda\x49\x3a\x1c\x58\xd5\x67\x95\xe3\xad\x3a\x48\xcb\x79\xf9\x56\xbb\x80\xa0\xf2\x5c\x85\x48\x61\x7a\x58\x79\x74\x33\x37\xb6\x72\xa0\xec\x6c\xf6\xc2\xe8\xad\xac\x2a\x62\xe6\x9e\xd3\x46\x34\x8d\x59\x13\xb2\x8c\xcb\x4c\x2c\x3a\x85\xe4\x5e\x20\x5c\xed\xba\xcf\x6e\xa1\x2e\xa6\xd1\x8b\xe3\x9d\x4e\xa2\xce\x6a\x2a\x9d\x0e\xb1\x1d\x88\x1a\x6f\xe4\x9e\x86\xf8\x56\x37\xda\x34\x90\xde\xca\xd9\x13\x75\x42\xe5\x12\x2b\x6d\xa0\x6b\x0e\xd9\x09\xa2\xef\x3c\xb3\x45\x5e\xf1\x2e\x41\xa7\x68\x98\xa0\xa4\x0b\x45\x37\x91\x04\xca\x33\x17\xe4\x6b\x86\x76\x54\xb8\xec\x30\x92\xdc\x32\x4a\x58\xaa\x65\x5e\xe3\x0a\x81\x72\x27\xfb\xc8\x93\x38\x53\xae\x41\x73\x2f\xc0\x26\x6f\xf1\x9a\xb9\x4b\x31\x91\x44\x3f\x46\xe0\x1a\x1b\x78\x3d\x5c\xad\xeb\x09\xa7\x5c\xad\xbb\x9c\x72\x57\x8c\xcd\x07\x46\x47\x9f\x87\x39\x34\xb4\x60\xf1\x5a\xa3\x92\x10\x13\xed\x3e\xd0\x26\x25\x95\x73\xb6\x04\x81\x54\x22\x33\xcf\xa2\x91\xd5\x55\x33\xf3\x95\x59\xf8\x25\x04\x72\xd7\xc3\x48\x59\xae\x75\xcd\x04\x4b\x97\x0e\x9d\xed\xb4\x58\x92\x62\x06\xd6\x76\x79\xbe\xcb\x97\x3d\x96\xb7\x0f\x2b\x77\xa9\x79\x58\x50\xca\xa6\x8f\x43\x1c\xa1\x89\x84\x60\xfa\x3a\xc4\xd1\xe3\xb0\xf2\x09\x87\x67\xbe\x70\x2f\x70\x47\x54\x9e\x9f\x81\xea\x80\xd5\x66\xee\x77\x31\x89\x19\xf9\x2d\x44\x13\x84\xc9\x1b\x1c\x79\x6c\x24\x9b\x65\x29\x8a\x35\xc2\xe4\x15\x79\xd6\x4a\xb1\xd8\x49\xa1\xe2\x6f\x5d\x78\x83\x30\xa9\x18\x84\x4e\x90\x05\x9b\x2f\xe1\x3d\x44\x72\x02\x20\x6a\xe7\xa1\xeb\xae\xa5\x08\x02\x3b\x3b\x93\x99\x7b\x75\x62\x62\x94\xbe\xf1\xd3\x28\x29\xce\x10\x93\x1d\x88\xc9\x92\x75\xb8\xa2\x12\x8c\x1b\x26\xc3\x44\xb1\xd3\x86\x15\xd3\xcd\xb0\x34\x99\x4d\x01\x53\x1b\x93\x3f\xe3\xc8\xf0\x8a\x76\xbb\x08\x1a\x4d\x1c\x2f\xe9\x37\xa0\x83\xa0\x13\xa0\x54\xe0\x29\xa9\x6c\xaf\x64\x64\x04\x2c\x5b\xc3\x57\x52\x11\x36\x58\x31\xac\xba\x95\x3c\x95\xf9\x42\x84\xc9\x25\x0c\x1c\x56\x1d\x4f\x7e\x94\x19\x80\x09\xd3\xcd\xb0\x50\x23\xa0\x59\x44\xdd\xe6\x7c\x54\xb1\x9a\x5b\xd4\x8d\x7d\xab\x62\x35\x87\xa6\x5b\x72\xc9\x88\x1e\xe5\x6e\x3b\x15\x63\x49\xa5\x7f\x86\xa3\xd7\x5e\x91\xaf\xdc\x74\xf3\xcc\x39\x79\xb3\xfe\x87\x90\x11\x79\x94\xb1\x91\x2f\xbb\x91\xbe\x97\x97\x1f\xac\x08\xab\x99\x0d\x1e\x49\x43\x2d\x2a\x28\x9d\x08\x5b\x41\xab\xe9\x5f\xa2\xdf\x01\x5d\x85\xc8\x6d\x56\x87\x8f\xc3\xa7\xb2\x3d\xb2\x47\xbf\x0f\x4b\x46\xe0\xed\x8d\x04\x97\x3e\x42\x98\x14\xe4\x47\x75\x5e\xf1\xa7\x86\xc9\xfb\x3a\x7c\x2a\xbb\xc3\x4f\xdb\x68\xb1\xa0\xe9\x93\xe8\x3b\x83\x6c\xae\xbb\x32\x2f\x0c\x4f\x1f\x87\xf9\xbe\x09\x4a\x72\x6f\xb1\x99\xbe\xac\xa6\xff\x8a\x5e\xe0\x48\xc1\xad\xc6\x42\x02\xf9\x82\xfc\x68\x27\xc3\x1b\xc8\x68\x4f\x3d\x94\xb2\xba\x36\x0c\x09\x53\xc8\xcb\xe8\x15\x8e\xe0\x20\xa9\x0b\x99\x23\x4c\xde\x31\x9d\x57\xad\x60\xc6\xc2\x9f\x88\x9c\xcd\xda\xd7\x41\x64\xf9\xf0\x12\xe7\xfc\x02\x21\x39\xbb\xd6\x65\xec\xb9\x84\xdb\xbd\xb3\x01\xb6\x49\x35\x7d\x1c\xb2\xe9\xb7\xd1\xaf\x72\x5a\x30\x00\xa5\x69\xc0\x32\xc2\x63\xdf\x1d\xc0\x8b\xd6\x75\x9e\x3e\xc1\xce\x26\x17\xcd\x05\xbe\x98\x93\xf9\x11\x06\xc4\xf7\x3a\x7c\xe5\xe5\xf9\xd7\x17\xe6\x79\xe9\xe5\xf9\xae\x85\x2b\x89\x59\x9c\x38\x7a\x62\x3c\x37\xb8\xb4\x4f\xda\x16\x07\x46\x94\x16\xd3\xef\xa2\x27\x84\xab\xd7\x57\xd1\x4b\x63\xbc\x89\x3e\xd2\x05\x3d\x25\x85\x9c\x6c\xb0\x3c\xfd\x31\x99\x1e\x5d\xf4\x2f\xfa\xf5\x60\x60\x6e\x3c\xcc\x3c\x98\xea\x2e\x32\xe8\x81\x70\xd9\x31\x7c\x6f\xf7\x4f\x50\x8f\xb2\xa9\x9e\x0c\x8c\x85\x2f\xe5\x94\x25\x28\x89\xb3\x0c\x41\x82\xa1\x86\xe2\x2b\xf8\xea\x8c\xf7\x0b\x59\xc3\xdc\xcc\x18\xe5\x4b\xce\xb8\x94\xb3\x4d\xfe\xa5\xd5\x3d\x0a\x84\x9e\xde\x75\xd0\x57\xb7\xa8\x47\x2b\xeb\x79\xd5\x78\xae\x93\x4d\xf9\x45\x42\xfd\x8a\xfc\xd5\xeb\xbd\xbf\x6a\x4d\x19\xd4\xf8\x0b\xc7\x51\x81\xee\xdc\x67\x56\xb2\xc7\x2e\x90\x25\xba\xa2\x7e\xf7\x06\xfa\x7d\x68\x16\xb9\xc9\x87\xc9\xeb\x50\x4f\xe2\x67\x91\x3f\x3f\xfe\xf2\xe5\xd9\xfc\x29\xf2\xab\x45\x31\x48\x39\xc1\x41\x9e\x75\x76\x07\xbf\xe5\x71\x3e\x0e\xbf\xf3\x72\x7f\xfb\x87\x73\x3f\xf1\x72\xff\xd9\x81\x8c\x22\x3d\x7e\x6f\x08\xa0\xd4\xef\xf6\x21\xd2\xaf\x4c\x27\xef\x43\x52\xae\x36\xc3\xcb\x90\xd5\x79\xb9\x7f\xea\x12\x0e\xb6\x88\xba\xb6\x10\x2a\xac\x7a\x93\xb1\x69\xb8\xbf\x40\xa4\x1b\x29\xf1\x8e\x7a\x9b\xfe\x2d\xfa\xbb\xdc\xd1\x34\x0f\x4e\xe3\x24\x23\x9b\xe6\x17\xb4\x9d\xba\xa2\x22\x5d\x4f\x1f\x1d\xfa\xc5\x43\x49\x9d\x63\xa6\xea\x98\xbf\xab\xad\x4a\x31\xfd\x55\xd0\x4f\xde\xbc\x7f\x65\x26\xbc\x4c\xd7\xc2\x88\xaf\xf0\xce\xc4\xff\x9b\xd7\xf1\xb6\x23\xd4\xcc\xff\x3b\x8e\xee\x68\xf9\x0d\xf3\x9d\xa8\xfc\x7d\xcf\xd8\xbd\xb4\xc8\xfb\x35\x10\x21\xdd\x6a\xbf\xd7\xe7\x55\xa7\x53\x07\xde\x22\x8c\xae\xb2\xf5\x2a\xd7\x21\x9a\x0c\xde\x81\xa5\x4f\x41\x74\x69\x09\x6e\x17\x40\xfb\x48\xfd\xd5\xf5\x08\xf7\xc7\xe0\xdf\x9a\x14\x56\x73\x34\x57\xd6\x4a\x14\xd2\x91\x8b\xf6\x37\x89\x8b\x77\xb4\xe4\x01\x8a\xfd\x59\x5e\xab\xf2\x3c\x0b\x3b\x6c\xd7\x51\xc4\xc9\x24\x3f\xef\x1e\x5b\xc1\x12\xe0\xbe\xf3\xaa\x67\xfa\x4f\x62\x2b\x70\x1f\xa0\x3a\xa6\x35\xd7\x2b\xef\x82\x54\x21\x15\x0d\xcf\x33\x52\xf9\xa6\x5d\x0b\xa6\x17\x45\x12\x04\x6a\x20\xdc\x8e\xcf\xfd\x84\x39\x73\x6b\x95\xfa\xcb\xf4\x71\x6b\xcb\xe0\xec\xcb\x16\x99\x77\x61\x46\x1e\x87\xc2\xaf\x49\xb0\xd6\x4a\x3b\xd7\x48\xff\xfb\x90\x33\x82\x24\x01\x21\x98\x37\x71\xf5\xb4\x15\x7b\xe6\x4b\xcc\xbc\xe3\xbc\x24\x5a\x0a\x46\x32\x46\x12\xbf\xb2\xb2\x5d\x59\x67\x85\x94\xac\x4b\xed\x86\x1f\xc2\x4a\x4e\x13\xdc\x5d\x26\xa5\x03\x8a\x31\xa0\x90\xe6\xc8\xa7\x17\xb6\x4c\x12\x0c\xbb\x40\x6e\xd9\x7e\xbc\xd2\x93\x78\xc0\x92\x68\x4e\x5f\xf9\x9b\xe8\x48\x6e\xbc\xd3\x76\x07\x83\x6f\xfc\x9d\x55\x87\xc9\x1e\x18\x1b\xef\x64\xa4\xb7\xd1\x52\xf6\x0b\xc6\x91\x69\x5c\xd6\x5a\xaa\xd9\x97\x8d\x7c\x62\x47\x9e\xb4\xa7\x51\xec\xf7\xf7\xd2\x2b\xac\x75\x5a\x0a\x02\x73\xe6\xf1\xca\x37\xe4\x34\x51\x71\xea\x18\xe5\x0a\x5b\xd9\x2a\x3b\xb4\xaa\x26\xfd\x52\x47\xf8\x79\xb9\x52\xd6\x46\x5f\xba\x73\xdc\x59\x6f\xcd\xbc\x43\xd9\x7a\x67\x0a\x3c\x0e\x37\x0c\xa8\x2b\x2f\xbd\x2b\x7d\xd3\x1e\x4f\x9e\x6b\x6c\x2f\x96\x30\x8f\xc3\xbd\xbb\xda\x2b\xa0\xf0\xbe\x6b\x97\xb4\x6e\x97\x64\x00\xba\x92\x00\x7d\x79\xb1\x1e\x9c\x57\x7e\xe9\x57\xd0\x0b\x08\xcb\x89\x16\x04\x8f\x5b\xb4\xe2\x4d\xbb\xe6\x6f\x3e\x51\xc5\x0d\x9c\x20\xf7\x2e\x11\x15\x15\x5a\x62\xcf\x1e\x1f\x2e\xed\xf1\xa1\x90\x27\xca\x1f\x77\x17\xc5\xa5\x3f\x44\xad\x29\x7c\x09\x5d\xaf\xd6\x72\xee\xb7\x67\xe1\x4d\xac\x7d\xa8\x47\x03\xf5\xde\xcf\xf3\xbe\xdd\x4e\x2d\x0c\x60\x89\xcc\xf7\x6c\xf7\xc8\x7e\x0d\x87\xbe\x2e\xbc\xd7\x77\x2c\xe2\xbb\x88\x03\x38\xef\xf1\xe4\x13\xfd\x7a\x0d\xeb\x71\xdf\x4e\xba\x87\x82\x78\x1c\x3e\x67\xe4\x86\x91\x6b\x26\xa7\x91\x7a\xc1\xd1\x27\xc7\x4d\xa5\x30\x73\xea\xda\x21\x06\xb9\x4b\x74\x9b\xf7\x9c\xdd\xbd\xe1\xdf\xb9\xdf\xfb\x28\xe4\xe3\x97\x4f\xa8\x0f\x66\x19\xb6\x0f\xff\x77\x4e\x71\x97\xfa\x75\xf8\xcc\xab\xf2\x6d\x6b\x0a\x39\x72\x4a\xed\x82\xaf\x19\xf9\xe0\xcf\x84\xd7\x6d\x00\x2d\xd6\x7e\xad\xb1\x76\x17\xdb\xc2\x6c\x52\xed\x68\xa1\x5e\x03\x99\x9c\x6a\x8f\x5b\x58\xf4\xb1\x37\x3f\xe3\xf2\xb3\x74\xee\x6b\x1f\xba\x0f\x5e\xde\x65\x21\xd6\x9f\xcd\xed\x2f\xe6\x77\x7e\x47\xcc\xbd\x3e\x78\x49\x9e\xfa\x95\x3c\xf5\xd3\x19\xf6\xcf\xeb\x50\x1d\x9e\xe7\xc0\x74\x31\x27\xc0\xef\xc3\x7f\x11\x15\xf4\x3a\xfc\x5e\x9e\xac\xe6\xc8\x6f\xea\x8f\xfb\x4a\x7a\x1c\xae\x18\xf9\x91\x39\x1e\x97\x1c\xbb\x1f\xdd\xae\xad\x9b\xf3\xc6\x70\x1c\xf7\xaa\x43\x58\x0b\x82\xb7\xe6\xf8\x13\x5d\x11\x73\x99\x18\xa1\x52\x2c\x11\x49\x92\x68\x36\x27\x9a\xf6\x8b\x14\xdf\x33\x64\x92\xc0\x1b\xc4\x64\x44\x10\x18\xc9\x45\xa0\x6f\x69\x99\xc2\x51\xee\x18\xc4\x44\xf3\x7c\xfd\xb0\x20\xb8\xbd\xea\x24\x33\x02\xd5\x2c\x8d\x64\xe1\x8d\x53\x86\xf7\x39\xe8\x3b\xc2\x8a\x1d\x06\x7b\xe5\x33\xd8\xfd\x38\x4c\xaa\x1d\x6d\x09\xab\x8f\xac\x54\x1e\x20\xbb\x61\x0c\x76\x58\x27\x08\xb8\xc2\x08\x3c\x3f\xd9\x34\xea\x06\x48\x36\xbc\xf2\x59\xb1\x2d\xc5\x70\xa2\xae\x0c\x31\x71\x97\x93\x3d\x7a\xa3\x2f\x2e\xc1\x3e\x68\xd8\x36\x03\xa7\xb9\x46\xbe\x40\x49\x65\xed\x34\x9b\x4b\x54\x4a\xf9\xb4\x88\x3c\xd1\x45\xea\x0e\xfc\x3d\x10\xbc\xe9\xf7\x51\x8f\x8a\x20\x40\x83\x81\x7c\x99\x72\xb9\xc7\x25\x29\x4b\x50\x4b\xec\xc6\x78\x88\xb3\xb7\xd0\x09\xdc\x43\x69\x8a\x9f\x32\xcb\xdf\xa6\x9c\xd8\x95\x01\x4c\x1a\x49\x4b\x53\x41\x34\x06\x06\x9f\xc8\x9f\xef\x3b\xd6\xed\xbb\x11\x9e\x80\xd9\x9b\xd0\xf8\x49\x9b\x0a\xc5\x5e\x8d\xb2\xe9\xab\xe8\x19\x06\x51\x49\xed\x4b\x4d\x58\xcd\x7e\x31\x13\x8e\x3b\x2b\x8b\x9c\x60\x61\xb8\xb2\x07\x9d\x75\x3c\x35\x2f\xad\x5d\xb5\x08\x82\x8f\x60\xa1\x63\xea\x28\xe7\x63\x14\x55\x4d\x03\xae\x47\x39\x11\x44\x62\x9b\x1d\x21\x7f\xe3\xcb\xd4\xbb\x6a\xa6\x37\x1d\x0d\xda\x56\x74\x8f\x5e\x99\xe8\x91\xb6\xa2\x09\x4e\xd5\xf5\x05\xee\x08\x13\x41\xed\x8c\x82\x1b\x61\x20\x4a\x25\x79\x76\xb1\x38\x32\xc6\xd1\x3d\x3d\xf1\xca\x67\x4d\x4f\xb6\xea\x82\xd8\x78\xdd\x86\x58\xa3\x6f\x4b\xe9\x1b\x2c\xa8\x00\xa6\xbf\xbd\xd2\xcd\x7a\x74\xc9\xf4\xe5\xaf\xb9\x40\x11\xfa\x46\x01\x76\x2c\x0e\x0e\xf4\x54\x2e\x4c\x4a\x7d\x3d\x62\x93\xd8\x2c\x32\xde\xdc\x44\xd8\xf4\xca\x0c\x9f\x4e\x4d\x96\x94\x53\x9a\x1c\xb8\x7d\x2e\x65\x12\x55\x25\x5a\x7f\x4b\x2e\x97\x7e\xe8\x73\xaa\xdc\x7c\xae\x6b\x40\x8e\x2e\x60\xaa\x8e\x99\xfd\x71\x34\x52\xdc\x74\x89\xb4\xe5\x19\xeb\x16\x16\x83\x2b\xd1\x45\xfa\xd5\xc4\x91\x81\xbc\x5d\x7b\x1b\x17\x68\x48\x7d\xde\x59\x17\x22\x3f\x20\x35\x02\xc4\x76\x30\x71\x5d\x1f\xcd\x88\x95\xb6\xf2\x63\x60\x62\xe1\x69\x59\xd7\x31\x34\x41\xb3\xed\x7b\xfa\xfc\x5c\xd7\x4b\xb0\x72\x9a\x0f\x53\xb1\x5d\x64\x4c\x6b\x69\x43\xa2\xa9\x50\xcb\x65\x2a\xf4\x2d\x53\x3f\x5c\x4e\x47\xd1\x18\x47\xad\xa6\x4c\x47\x51\xdc\x0e\x02\xb1\x68\x90\x7f\xd6\x1b\x3f\xf6\xe6\xd4\x34\x8e\x8e\xbf\x89\xb1\xd3\x7d\x78\x99\x6f\xb6\x55\x04\xd3\x4f\x67\x3b\x1c\x7e\x33\x8d\x4c\xde\xa8\xbe\xb8\xad\x2f\x1a\xfc\xd5\x11\x01\x94\xff\x54\xe1\x22\xd0\xd7\x8e\x32\x65\x26\x12\x1d\x7d\x83\x5a\xb1\xcf\xf3\xd4\xc6\x7d\x73\x84\x48\xc6\x73\xa6\xa3\x5c\x9e\x23\x44\x96\x22\x4b\x23\xb4\x28\xc0\x5e\x32\x88\xcd\x3f\x29\xe2\xe4\x03\xab\xca\x08\x85\x78\x36\xbf\x6d\xfe\xf4\xa7\x0b\x74\x81\xfe\xf9\x4f\x44\x56\x2c\xdb\xb0\x02\x76\xa8\x6c\x0a\xcc\x19\x14\xb5\xe4\xac\x15\xbf\x06\xf4\x35\xb6\xf0\xf1\xa3\x36\x27\xf0\x71\x53\xb0\xb2\xe4\x22\x7f\x9c\x65\xe2\x9a\xa5\x51\x45\xca\x0f\x7c\xf3\xdc\x86\xef\xd9\x19\xe1\x56\xa8\x7d\x1f\x74\x50\xf5\xe8\xab\x20\xa8\x7a\xf4\x65\x5d\xbb\x1b\x21\xd0\xe0\x00\xeb\x3d\xbc\xac\x58\xf1\x1d\x80\x19\x22\x23\x92\x5d\x22\xd2\x82\x12\x44\xb3\xe7\x47\x7b\x85\xfc\xfd\x74\x7e\xa6\xbd\x89\x59\xb2\xfe\xa2\xc4\xf1\x66\x93\xf1\x04\xf6\xa5\x2f\xae\xc0\xcf\xf3\x71\xf0\xef\xe4\xfa\xb7\xa0\x93\x63\x4a\xf4\x55\x77\x77\x64\x41\x37\xe2\xd3\x60\xfe\xcf\x64\xcf\xd2\xfe\x27\xf3\x67\xe9\xbe\x12\x60\x20\x9c\x2c\xfe\xde\xdc\x2e\xfa\x73\x30\xfc\xb1\x82\x1a\x90\x1b\xe7\x39\x0b\x91\xaf\x40\x33\x9b\x13\xef\x2a\xbd\xa5\x46\xa1\xe5\xfc\xcd\xc2\x76\xba\x17\x8d\x57\xd6\x7f\x61\xeb\x05\x2b\x06\x69\x5c\xc5\x47\x71\x1a\x6f\x2a\x56\x1c\x0d\xb4\x80\x34\x22\x33\x7d\xc7\x57\x82\x6d\x76\xd0\x13\x41\x04\xa9\x2c\x3c\x5f\x4a\x94\x02\xca\x1d\x6d\x62\xa3\x03\x87\x62\xd7\xd9\x53\x09\xcf\x0f\xab\x69\x65\xdc\x29\x47\x15\xe1\xf4\xe8\xa2\x98\x5e\xe4\x47\x5a\x4a\xee\xe8\x62\x76\x31\xff\xca\x93\x52\x76\x66\x99\x81\xe8\xed\xc1\xc6\xae\x6d\x6b\xc0\x6b\x41\xc1\xf7\x02\xdd\xa3\xa9\x52\x4c\x8b\x10\x47\x05\x71\xde\x55\xe7\x94\xe5\xb2\x07\x7f\xf9\xf9\xe5\x53\xa3\x76\x14\x56\xb8\x8f\x28\xea\xef\x89\x29\xb4\xa0\x58\xe9\x2c\xce\x6f\xe9\x73\xd9\x03\xc3\x1f\xf9\x47\x6e\xcc\xe9\x87\xb7\x8b\x2d\xcf\xd2\x5f\x7e\xfe\x21\xda\x47\x79\xa9\x7d\x20\xcc\xf1\x2d\xdc\xd7\x2e\x79\x9e\xfe\xcc\x12\x10\x67\x32\x62\xce\x2b\x5e\x0e\xb7\x45\xf6\x42\x14\x2f\x6c\x6c\x58\x11\x90\x69\xb4\x99\x1e\x67\xd9\x5d\x39\x1e\x67\x59\xe8\x12\xff\xbe\x65\xc5\xcd\xbe\xa4\x3f\xc9\x88\x90\x13\xe6\x27\xbc\x1b\x96\x9f\x5c\xb4\x97\x49\x82\xf2\x63\x9c\xef\xad\xe0\x85\x8e\xdb\x81\xfd\xbb\xb8\xfc\x54\x1e\x1d\xbd\x93\xed\x09\xcb\x44\x7e\x59\xbe\x13\x77\x65\xb4\x09\x5a\x59\xb5\x97\x83\x3b\x1b\xf6\xd4\x8b\xf7\xfa\x6d\xbb\x49\x3f\x99\xed\x17\x2f\xbe\x55\x9f\x52\x38\xb9\x3b\xe3\x33\x2f\xde\x64\x34\x6b\xc0\x4f\xfd\xde\xcc\xa3\x50\xb9\xb8\x26\xef\xf7\x4e\x2c\x23\x49\x9f\xd3\xd9\x9c\x70\x3d\x21\x2f\x99\x72\x28\x4d\xd0\x4a\x94\x15\x28\xe1\x18\x08\xde\x14\x6c\xc9\x3f\x3a\xc2\x59\xd9\xc3\x53\x42\x70\x71\xb5\x7a\x21\x60\xab\x0d\x19\xc6\x60\x7f\x0a\x8c\x5f\x81\xb3\x5d\xfd\xb1\x77\xcd\x60\x22\x64\x02\x63\x5d\x51\x60\x92\x53\x65\x3a\x0a\x44\x9b\x49\x8f\x07\x41\x1e\x04\xe8\x08\xf5\x24\xcd\x63\xc9\x24\x90\x2d\x46\x47\xa8\x9f\x63\x92\x37\xa4\x3b\xeb\x77\x1c\x6d\xed\xef\x1f\x70\x8f\x4d\x5a\x0b\x20\xda\x47\xe9\xed\xf4\xab\xcd\x05\x93\xfb\x8b\xf2\x54\xed\x3c\x7b\xe0\xfc\x7c\x4e\xb3\x30\xbe\xb4\x79\xad\x8c\x7a\x75\xfc\x9b\x5d\x63\x97\xc8\xbf\x91\xdf\x5f\x28\x7f\xb0\x7f\xfd\xc5\xf2\x6f\xd4\xec\x2f\x99\x3f\x9a\x5d\xcd\xf7\x7d\x4b\xe6\xae\xb5\x92\xef\x44\x58\x65\x23\x64\x1c\xf4\xa9\x99\x5c\xd4\xb5\xde\x72\xac\x51\xca\x7f\x5c\x1c\x5d\x1c\x79\x8e\x8a\x8f\x56\x55\xb5\x09\x4b\x3c\x8d\x5a\x11\x53\x16\x81\x70\xb5\x73\x53\x33\xc2\x53\x84\xfa\x45\x9f\x45\x55\x5f\xae\x08\xa6\x8f\x8f\x33\x2b\xff\x5d\x04\x01\xb7\x0b\x32\xb7\x1f\x39\x26\xdc\x2d\xb5\x86\x78\xab\x78\x0f\x7d\xab\x9a\xa6\xed\xb0\x27\xf1\x9a\x65\xc0\x74\xf0\x8c\xc7\x6d\xb2\x6d\x11\x43\xa8\xc4\x3a\xf8\x80\x0d\x9f\xe8\x4e\x85\x6d\x8e\x6e\x81\x92\xa9\x58\xb1\xe6\x39\x7b\x22\xd2\x9b\x37\x85\x58\xf3\x92\xd1\xbd\x53\x42\x19\x97\x0f\xf1\xb0\x5a\xb1\x3c\xf4\x0d\x69\x28\x6a\xa0\x50\x6e\xf1\xe8\xf7\x6f\x5f\xbf\x52\xf6\x06\xc2\xc2\xf8\xa2\x51\xc6\x2d\x7a\xa1\xf0\x4d\x7a\xbe\xbd\xc9\xab\xf8\x23\x98\x11\x35\x76\x45\xc5\x81\x31\x3c\x22\x0f\x7d\xdb\xf2\xa0\xc7\x86\xe2\x43\x5d\x1f\x8f\xee\xf5\xe0\x84\x7b\x3c\xba\xaf\x5e\xd0\x77\xcf\x1f\x3f\x93\x23\x57\x0d\xd7\xac\x5a\x89\x74\x9a\x88\xbc\x14\x19\x1b\x5e\xc7\x45\x1e\xa2\x77\x2b\x5e\x1e\x16\xac\xdc\x88\xbc\x64\x87\xd7\x71\x79\xb8\xcd\xe3\x45\xc6\x0e\x2b\x71\xb8\x60\x87\x00\x5f\x7a\x18\x97\x87\x92\x34\x1c\x22\x52\xe0\x28\xa7\x6d\x0e\x5c\xae\x8c\x3c\x2d\x59\x95\xac\x3a\xde\xb9\x94\x44\x31\xb5\x06\x16\x4a\xa5\x3d\x05\x36\xe6\x42\x04\x39\x10\x36\xd2\x81\xb9\x0d\x31\x14\xd2\x41\x49\x77\x0c\x9b\x1c\x32\x27\x93\xea\x88\x1e\x6b\x3b\x0f\x4a\xd8\xb5\xbe\x9a\xc4\x79\x2e\xaa\x43\xb9\xa9\x1e\x56\x2b\x76\xf8\x4f\x48\xf7\x4f\xad\x0a\x7c\x28\x8a\x56\xa8\xe2\xaa\x0d\x0f\x9f\xf1\xf4\xf0\x46\x6c\x0f\xd7\x2c\xce\x65\x87\xc0\xa0\x64\x99\x4a\xab\x48\x41\x9d\x03\xf4\xb5\xa7\x08\xef\x85\x18\xd2\x58\xf3\x81\x65\x08\xdd\x05\x3d\xfb\xb3\xee\xf8\xef\x58\x9c\xb2\xa2\xa4\xbb\xb3\xb7\xed\x1e\x5e\xc9\xde\xb7\x0c\xa4\x56\x07\xbb\x8e\xe2\xf8\x5e\x37\x71\xb7\xce\x14\x41\x31\xcb\xe7\x24\xa6\x23\x52\xd2\xde\x78\x12\x9f\x1b\x6e\xd3\x24\x56\x36\xd6\xee\x3f\xa4\x94\x0a\xdf\xfe\x7a\x8c\xf1\x6d\x49\x7b\x23\x27\x66\x0f\xf6\xcd\x4a\x05\xe7\x96\x8a\x61\xb9\x5d\x28\xae\x39\xf8\x92\x1a\x56\x05\x5f\x87\x98\x64\xad\x98\xb8\x3f\x26\xa6\x2e\x93\xe4\x20\x0b\x82\xb0\x9a\x6d\xdb\x5e\xcc\xe7\x34\x23\xd5\x6c\x3b\xa7\x19\xb6\x3d\x57\x81\x2d\x31\x56\x70\x58\xac\x2f\xf3\x4a\x7c\x17\x97\x2b\xda\x25\x3a\x0d\xb1\x4c\x29\xc8\xb2\xe7\xf4\x96\xe7\x49\xb6\x4d\xd9\x4b\x75\xb2\x71\x6b\xc7\x14\x55\xbc\x10\x45\x58\x81\xf9\x82\x0c\x5c\xdd\x1d\xb4\x26\x97\xa5\xa8\xf9\x6e\xed\x86\xb3\x78\xdb\xf8\xee\x34\x3b\x89\x42\xa1\x21\x23\xa2\xd9\x4d\x05\x2c\xc0\x56\xd3\x60\xa3\x7d\x13\x17\xf1\x7a\xdf\x94\x70\xf8\xd1\x53\x6e\xf6\x34\xae\x4b\xb2\x05\x9c\x2d\x07\x52\x99\x3c\xe2\x25\xfc\x87\xb9\xe2\xb3\x71\x18\xf8\xdc\x8c\x39\x3f\x2f\x27\xbc\xdf\xc7\xc2\x31\x4e\x80\x47\x98\xcf\xf8\x1c\x47\x2c\x2c\xfa\x68\x86\xfa\xe1\x2e\x67\x7a\xc6\xe7\x53\x70\x8c\xd8\x47\x73\xa4\x92\x3b\xcd\x8a\x1d\x11\x36\x34\x53\x05\x1c\xaa\x29\x3d\x97\x7b\x81\x9e\xdd\xce\x24\x53\x25\x2c\xa2\x96\x34\x3d\x6e\x0c\xcc\xdb\x43\x9e\x1f\xe6\xd8\x40\xb3\xd5\x55\x6e\x4d\x95\x1a\x64\x07\xc0\x1f\x69\x39\x58\xb1\x9c\xf1\x39\x08\xdc\xab\x37\x50\x38\xf5\x4c\x78\xd8\xfa\xb7\xba\x56\x3b\x27\x43\x84\x08\xc3\x7a\x3f\x0a\x10\x76\x96\x84\xbf\x3e\x1e\x1d\x5d\x12\xd4\x97\x7b\x94\x6e\xa9\x3a\x7b\x3a\x81\x45\x82\xde\xbf\x67\xe5\x8f\x4a\x22\x94\xdc\x42\xad\xdd\x33\xef\xbe\x73\xaa\xfe\xf7\x8f\xa9\x73\x72\xa7\x55\x81\x3f\x5a\xb9\x3a\xb9\x4b\x0c\xac\x51\xfd\x81\xbf\x95\xea\xd2\xd4\xe5\x67\x68\x0e\xd9\x6f\xed\x62\x8a\xd0\xc0\x1c\x78\x89\x3b\xed\x29\x65\x0c\x7d\x90\x53\x1f\x70\xfe\xf2\x5e\xfd\x84\x97\x2c\x67\x45\x5c\xb1\x97\xe9\x0b\x51\xf8\x11\x76\x91\xec\x27\xc8\xbc\x55\x04\x64\xa4\x7f\x16\x52\x05\xf8\xc7\x1c\x15\xe2\x9f\x5f\x8c\x2e\x49\x9c\xb1\x32\x61\x8a\x30\xff\x7d\xcb\xca\x0a\x14\x72\xcc\xe1\x4f\xc3\x58\x88\xed\x46\x65\x2b\xef\x22\x72\x0d\x60\xb3\x6a\xde\x90\x72\x25\xb6\x59\xfa\x33\xcb\x44\xbc\x8f\xde\xf7\x5c\xdb\xb5\x92\xde\x45\xdd\xf7\xac\xe3\x2b\x9d\xfc\x49\x9c\x7c\x90\x40\xe5\x5f\x50\xc7\xe8\xae\x4c\x77\xd6\x36\x52\xb4\x91\x99\x19\xd5\x67\xa6\xa8\x56\x35\xf4\xf9\x28\x7e\xb2\xb2\x12\x05\x73\xfc\x96\x79\x47\x59\x7a\xbf\x55\x0c\x6d\x14\xdd\xe2\x77\x50\x4e\xa3\xe8\xb1\xaa\xf2\x50\xf1\xb5\x41\x6a\x24\xe6\x19\x4b\x91\xb6\xd7\xcd\x4b\x9d\x02\xa8\x01\xb9\x8b\xf9\xe4\x30\x04\x2a\x84\x03\xc4\x6f\x85\x0f\x0a\xa3\x03\xa5\x0c\x15\x6a\x83\x85\xda\xf8\xb7\x66\x4d\x71\x91\xd3\xc2\xff\xd2\x2e\x52\x78\xc6\xb4\x37\x59\xf3\xaa\x22\x32\x9e\xb3\x57\x20\xb2\xa7\xbd\x75\xa9\x0f\x15\xb9\x66\x65\x19\x5f\xca\x4c\xfa\x4d\x05\xe7\xaa\xa0\xdc\x16\x92\x9b\x02\x72\x2f\xb3\x3c\x9e\xd2\x02\xfe\x74\x83\xa1\xef\x4b\xca\xea\x7a\x76\x5b\xf1\x2a\x63\x91\xed\xa3\xe7\x6a\x58\x52\x56\xc5\x3c\x8b\xaa\x66\xde\xfc\x61\xec\x70\x67\x06\x55\xad\xdc\xf1\xde\x09\xc0\xbb\x88\xdc\x32\xab\xde\x29\x17\xd0\x25\xab\x76\x6d\xd5\x1d\x56\xc3\x9d\x9c\xcd\xe7\xeb\x81\x74\xef\x60\x83\xfd\x83\xf5\x78\x39\x15\x4b\xfb\x2d\x2b\xae\xcc\xec\x60\xc3\xa7\x22\x5f\x66\x3c\xa9\xcc\xf7\x2b\x51\xbd\x90\xeb\xc3\x7c\xbf\x10\xc5\x82\xa7\x29\xcb\x4d\xc0\x2f\x79\xbc\xad\x56\xa2\xe0\xff\x62\x36\xd1\xe3\x85\x28\x6c\x09\xef\xf8\x9a\x89\xad\xfd\x7c\x99\x5f\xc5\x19\xb7\x49\xf7\xe0\x5a\x79\x4c\x70\x22\x72\x77\xc8\x81\xab\x49\x1c\xba\xd5\x30\xbd\x6d\xa2\x0a\x9b\x29\x64\xcd\x09\x76\x45\x0a\xc5\x5e\x6d\x24\xa0\x20\x98\xb7\x0e\x0a\x92\xd7\x75\x4b\xb7\xc7\xee\xd3\x1d\xb2\x94\xb9\x18\x4c\x0a\xbd\x33\x50\x2e\x4f\x6d\x45\xe3\xda\x97\x93\xbb\x8b\xf0\x97\xe2\x5d\x85\x69\x0b\xb1\x22\x2c\x08\x7a\xb7\x62\x87\x1a\xd3\x1c\x16\xec\x37\xb0\x5e\x01\x74\x79\x22\xd6\x6b\x5e\x1d\x2e\x58\x12\x4b\x14\xc2\x2b\x38\xd4\x70\xd5\xe3\x48\x22\xb0\x56\xef\xc7\xda\xfa\xdd\x4e\xa1\x0e\x97\x54\x7c\xcd\xd2\x43\xb1\xad\x20\x77\x6b\x28\x4b\xcd\x14\xfd\x44\x6e\x59\x7b\x2c\xe7\x02\x53\xb5\x7b\xf3\x62\xab\x2d\x58\x7f\x22\x37\x87\xf3\x98\x9d\x5c\x50\xc2\xee\x6c\xcb\xcc\xb5\xe4\x27\x0b\x5a\x9a\x69\x0b\xa5\x74\x26\x71\x72\xa0\x6c\xe6\xee\x14\x91\xc8\x3d\xe2\xb0\x75\x78\x2a\x98\xf2\x21\x01\xe5\xb4\x17\xc7\xf2\x40\x99\x77\xff\x04\x24\x0a\x35\x1f\xa6\x5b\x38\x63\xc6\x87\x89\x5e\x6d\x50\x5a\x7b\xe9\xad\xb4\xed\xba\x3f\x50\x5a\x09\x2b\xf9\xd0\xe8\xb7\xb7\x97\x76\xfa\x99\x2d\x0b\xd4\x8c\xef\xde\xb2\x76\x2f\x09\x3e\x49\x9b\x7d\xe6\x6e\xe0\x3f\x0f\xed\xb6\xb8\x15\x5f\x8c\x0a\x5b\xb9\x3e\x89\x6e\x2d\x35\xf7\x45\x25\x17\x66\xbd\x37\x9f\xa5\x62\x7f\x2b\x45\x3e\x88\x37\xfc\xf3\x5d\x5e\xb0\xb2\xda\x73\xfd\xf2\x99\xf1\xe9\x8e\x80\xc4\x70\xff\x1f\x10\xc6\x9c\xda\x3b\x9d\x4f\x52\xc5\xae\xb9\xf1\x6f\xf1\xc7\xd7\x40\x34\x94\x3b\xdc\x3d\x8b\xce\xd5\xf5\xce\x2d\x58\x5f\x01\x11\xa3\x5c\x49\xc2\xb4\xbe\xea\xba\x75\xb1\x76\x95\xa7\xc3\x78\xc3\xd5\x0d\x9f\xde\x49\x14\x9f\x10\xcc\x1e\xe9\x3a\x9c\xe8\xd1\x4a\x31\x1e\x86\x8f\x93\x84\x6d\x2a\xda\x0d\xf8\x54\xe9\x24\x6f\xee\xa0\x93\xc7\x8e\x4e\xde\x73\x36\x57\x1d\x26\x61\x72\xac\x4b\x77\xf4\x86\x5b\x23\x77\xc9\xe2\xce\x59\xa0\x91\xfe\x5b\xfc\x31\xe4\x04\x7d\xfb\xfc\x1d\x22\xb7\x72\xcc\xa3\xdb\x25\xcf\x2a\x56\x44\xb7\x3c\x8d\x0a\x7d\x08\x23\x08\xae\xaa\xff\x10\x63\x30\x8d\xcb\x15\x2b\x5a\x9c\xc1\x70\x44\x3c\xde\x20\x56\x5c\xe9\x4f\xb1\x75\x55\xd3\xc0\x59\xeb\x2e\x9f\x40\x27\x32\xf7\x12\xfb\xdb\x3e\xe4\x29\x29\x48\xfb\x26\x66\x4f\x17\x08\x82\xde\x3c\x7e\xf7\xf4\x3b\xd3\x09\xbc\xc1\x6d\xda\x9c\x7f\x66\xe1\xa9\xe5\xf4\x99\x45\xf7\xef\x61\x3f\xa6\x8d\xde\xfd\xe7\xaf\x3c\x60\xa3\xe9\x55\x43\x57\x77\x2d\x45\x35\xaa\x3f\xbf\xfd\xcb\x9b\xa1\x66\xd3\x12\x41\x91\xb5\x18\xe6\x38\x85\xbf\x01\x97\x85\xc4\x7b\x23\x73\xd9\xcf\x3b\x2e\x11\xcd\xfc\x15\xc0\xc2\x15\x94\x0d\x95\x41\x42\xc3\xc6\xd3\x8e\x08\xb6\x25\xb1\x0b\x09\x06\x5d\x73\x77\x63\x67\x6c\x6a\xa8\x68\x96\x30\xb6\xca\x21\x22\x08\x44\xe7\xa0\x32\xb5\xc9\x04\x8e\x3c\x47\xca\x5b\x0d\x8d\x11\x6b\x53\xa6\x4e\xa1\xe3\xdf\xad\x0a\x71\x9d\xfb\xdc\x63\xc5\x37\x16\xb4\x95\xc0\x39\xe5\xab\x14\x39\x83\x28\xd5\xfe\x84\xde\x42\x03\xb0\x00\x05\xf0\xbc\x45\xee\xb8\x5c\x40\xd0\x74\xf3\x80\x78\x0f\x18\xe5\xd5\x25\xec\xbb\x81\x60\x9a\x0d\x0d\xf6\xb4\xb6\x45\x46\x64\x2f\x7a\x90\x81\x4f\x63\xdd\x89\x25\xfd\xcc\xe9\x25\x44\x1a\xe9\x68\x32\x20\x3a\x44\xfd\x02\x4c\xe7\x72\x78\x86\xa2\xae\x11\xc2\x96\x19\xa9\xca\x8d\xe2\xc6\x72\xd0\x54\x23\x1d\x4d\x16\x96\xb8\x09\x65\xcf\xaa\xb6\xde\x31\xcc\xa6\x8d\x84\xbb\x61\xae\xeb\x56\x0f\xb7\x46\x5d\xd0\xd8\x0e\xb3\xa7\x26\xe1\x59\x24\xd4\x90\x19\x7e\x3e\x71\xbd\xaa\x5d\x5c\xab\x0f\xa2\xab\x8b\xc0\xff\x8b\x7a\xf7\x29\xfb\xe4\x4b\x8b\x54\x61\xef\xd8\xc7\xca\x16\xa9\xd0\xdd\x1e\xae\x34\x56\xa6\x40\x1f\x67\x59\x27\x22\xc4\x7e\xdd\x4b\x4f\xd8\xb6\xf1\xee\x5a\xd9\x70\x29\x8a\xe7\x71\xb2\xf2\x65\xd1\xbc\x5b\xac\x59\x31\xa7\xac\xc1\xbe\xe1\xb5\x95\x27\xb9\x9a\x14\xe0\x77\x81\xc7\x59\x49\x51\x19\xaf\xd9\x40\x14\xfc\x52\xd2\x39\x0c\x7c\x6b\x60\x39\x1f\xe5\x86\x00\x57\x4b\x6a\x72\xd5\xb5\xba\xf6\xf0\x82\xa0\x34\x8d\x74\x3e\xb0\x9b\x32\xd4\xb9\x0d\x33\xda\xf8\xbd\x96\x73\xd2\x59\xb3\x99\x22\xfc\x68\x30\x9e\xa2\x00\x45\x68\x8a\x0e\x20\xb6\x4f\x11\xea\xe7\x7d\xe8\xae\x7d\x1c\x5b\x6c\x8a\x56\xf7\x14\x87\x6c\xb8\x10\xe9\x8d\xba\xee\x51\x6c\x70\xbe\xbc\x31\x69\x6c\x3f\x35\xc6\x4a\x73\x87\x90\xe8\xd0\x69\x64\x2f\x61\xa1\xd0\xf9\xf2\xff\xe5\xee\xdd\xbb\xdc\xb6\x91\x44\xf1\xff\xf5\x29\x24\xee\x5c\x2d\x71\x1b\x56\xd4\x33\xb3\xe7\xdc\x9f\x6c\xa6\x4f\xc7\x8f\x89\x67\x62\x3b\x6b\x3b\xc9\xce\x6a\x75\x7b\x69\x11\x6d\x61\xac\x26\x7b\x40\xc8\x9d\x9e\x16\xbf\xfb\xef\xa0\xf0\x06\x01\x4a\xed\xd8\x99\xec\xfd\xc7\x56\x93\x20\x1e\x85\x42\xa1\xde\x55\xb6\xfc\x5d\xd3\xf0\x85\x24\x81\xeb\xe6\xea\x7a\xc7\x49\x95\xf7\x59\x34\x63\xed\x7b\x75\x53\x13\x06\xd2\x1e\x9a\x6d\x9b\xe6\xc3\xee\x3a\xcf\x04\x07\x4d\xd7\x64\xa1\xbb\x83\xfc\x6f\xbb\x96\x3c\x13\xe4\x77\xa0\x6f\x69\xc4\x89\x76\x2d\x04\x86\xed\x47\xf2\x1a\x1c\xc7\x24\xe3\x9e\x67\x82\xef\xa7\xef\x17\xa4\xfe\x48\x59\x53\xcb\xd4\x49\x3a\xc1\xc9\x24\x07\xc4\x81\xce\x9e\xbe\xfc\x71\x3a\x85\xa2\x74\xf6\xc1\xec\xe2\xcf\xff\xfe\xc3\xd3\xd7\x7f\xbd\x78\xfe\xf2\xed\xd3\x3f\xbd\x3e\x7f\xfb\xfc\xd5\x4b\xb4\xdf\x4f\xca\xe9\x74\xd2\x74\x08\xb7\x0d\xe3\xce\x96\x44\x2e\x7f\x0f\x15\x10\x66\x85\xd6\xa5\x81\xea\xfc\xd1\xef\x8d\xcb\xab\x93\xb6\xe6\xae\xc3\x82\xd5\x13\x9d\xe7\xe2\x22\x87\x84\xce\x0f\x9b\x93\x13\x54\x2f\xe9\xb2\x59\xad\x0a\x22\xff\x37\xd4\x65\x98\x43\x8a\xb2\x11\xf7\xe2\x91\x34\x8b\xe0\x71\x15\xd2\xcd\xa5\x3e\xc8\x3a\x35\x82\x45\xba\x8c\x78\x0f\xc4\x27\xa1\xbb\x1d\xe4\x60\x64\x78\x3b\x36\x0e\x3b\xc8\x31\xe5\x0a\xb2\x49\xeb\x35\x29\x98\xd2\x52\x69\x5e\xc6\x99\x93\xe0\x64\x94\x5e\x38\xc6\x5d\xd5\x07\x87\x16\xff\x28\x0f\x20\x87\xd1\x95\xba\x3c\x1f\x29\xac\x17\x48\xf0\x22\x67\xc8\x9d\x60\xed\x4d\x90\x99\x09\x0e\x30\x81\xf7\x99\xa6\xda\xc2\x2f\x37\xd9\x5f\x91\x17\xa7\x55\xbb\x60\x9d\x1e\x34\xee\xb7\xe1\x8c\x2b\xb8\xdd\xa6\x70\x06\x34\xc8\x12\xfa\xee\x28\x45\xa7\x99\x64\x83\x29\xe6\xd8\x73\xad\xf2\xc0\xc0\xe4\xbc\xd4\x44\x52\x2e\x20\x9f\x7b\x2a\xd6\x5d\x2b\x31\x99\x75\xca\x9f\xe4\x98\xcd\xd0\x47\xcb\xf3\xee\x12\xa7\xd1\xbf\x89\x7c\x81\x23\x41\x05\xbe\x7f\xf5\xc6\x27\x03\x69\xb9\xa6\x76\xe4\x9a\xf4\x30\x58\x88\xa9\x4d\x51\x0b\x38\x96\x03\x8b\x68\xc4\x0a\x0e\x89\x37\x25\xce\xbe\xff\xc1\x27\x09\xd5\x90\x3f\x8c\x52\x98\xce\x68\xd5\xef\x6b\x00\x9e\x42\xd2\xf2\x5c\xd7\x10\xce\x9e\x3c\xfd\xee\xe9\xdb\xa7\x62\xaf\x2e\xc4\x5d\x7d\xfd\xfc\xc9\x33\xd6\x5c\x25\x3d\xd0\xf0\xd0\x86\x01\x52\x71\xa4\x6c\xf2\xe0\x15\xd6\x14\x74\x49\xad\x9f\x35\x30\xbb\x76\xd6\x15\xe9\x39\x9a\x35\xa8\x28\x8a\xf2\xcc\xfb\xaa\xc8\xb2\x45\xce\x8a\x06\xd7\x45\x76\x46\xab\x22\x3b\x29\x71\xcc\x15\x42\x49\xb6\xd6\xb8\x4a\xea\xaa\xfd\x89\xf2\xcd\xd9\x83\xd3\x49\xa1\x72\x4d\x09\x36\xa7\xc6\xda\x4f\xe0\x81\x36\x8d\xa2\x05\x33\xcd\xf3\x1a\x52\xc9\xfa\x73\xf0\xed\xfd\x26\x5a\xc5\xd6\x9e\x43\x28\xf0\xd2\xb9\x2a\x7f\xfe\xe1\xf5\x77\xdf\xc9\x3a\x36\xbf\x9f\xff\xf1\xff\x1c\x69\x3f\x93\x72\x83\x60\xd4\x5f\x94\xd7\x58\x92\x56\x0d\x77\xb7\xcf\x11\xef\x33\x9a\xdc\xd6\x8b\x08\xf6\x53\x45\x1d\x81\x23\x0a\x45\x50\xfc\x93\xf0\x9c\xe2\xe5\x0a\x61\xe9\x08\x45\x55\xa1\x4e\x8e\x3a\x9d\xc4\xd2\xf1\x4c\x8a\x8c\x25\x50\xd1\xfb\xd3\xc6\x1d\xcd\x71\x19\x9f\xc2\x72\xbe\x42\x42\xce\x59\x5a\xa6\x21\xb2\x0c\xeb\xab\xdf\x77\x45\x24\x33\x5a\x69\x2e\xf6\x84\x8e\xf4\x06\x9c\x34\x27\xfc\x6b\x50\x21\x89\xd1\x5b\xb9\x94\xe5\x0a\x21\xdc\x9c\x14\x5c\x69\x86\x6c\xca\xbb\x51\xbb\xac\x57\xca\xdd\x51\xf0\x7b\x6d\x87\x72\x8e\x29\xce\xa6\xb4\x6a\xff\xd7\xbf\x7d\xf3\xbf\xfe\xed\x49\x91\x19\xc7\x8d\xd8\x04\xb5\x7c\x63\x3b\x11\x14\xa1\xc3\xbe\xe8\x14\x52\x60\x99\x8d\x41\x19\xe9\xde\xec\xd6\x6b\xd2\x2a\x59\xdb\x04\x8d\xb1\x91\x6d\xa1\x54\xf7\x41\x0b\x29\xc4\xb9\x6a\xfd\x9c\x29\x4b\x8f\xde\x39\x69\x3c\x6b\xd8\x15\x10\x2f\x68\x63\xa4\x39\xa5\x98\x51\x64\x4b\x1b\x9e\xab\x27\x20\x63\x92\xea\x85\xb4\xa6\x98\x09\x8f\x94\x43\x33\x91\x0e\xcd\xe3\x3f\xce\x4f\x17\xde\x44\x7a\xfa\xf9\xbc\xc1\xa5\x74\x95\x1d\xff\x71\xfe\x07\xbf\xb1\xaf\x86\xf7\x5a\xfe\xd1\x6f\xe9\x29\xda\xbd\x86\xff\x9f\xdf\xd0\xd3\xa1\xcb\x86\xda\xdb\x56\x48\x54\x5f\x17\xff\x36\x9f\xfb\xa0\x73\x74\xe4\xd0\xbe\xf3\xde\xaa\x8f\xe5\x1b\x6c\xb6\x29\xe5\x96\x48\xbe\x2e\x7e\x3f\x9f\x4f\xa7\xe4\xd1\x1f\xe6\xf3\xfd\xfe\x0f\xf3\x3f\x0a\xd6\x5d\x7c\xa8\x76\x28\xf5\xe1\x1f\x7f\xff\x7b\xd9\x52\x10\xee\xe8\x25\x24\xf7\x11\x97\x3d\x77\x45\x2d\x9e\x64\x08\x5f\x16\x77\x3b\xb6\x5d\x10\x2c\xe5\xbe\x05\xef\xf0\xa6\x68\x66\x8e\xc6\x35\xb8\x18\xcb\x33\xa9\x20\x05\xf5\x92\x62\xd1\xf3\x4d\xe8\xbe\x47\x02\xe1\x09\x14\x4c\x9b\xb2\xdd\xe4\x77\xda\x7b\x6e\x41\xf0\x75\x79\xbb\x6d\xca\x4a\xca\xd2\x31\x97\x41\x71\x5d\x5e\xc2\xd9\xe8\xf7\xaf\xc3\x71\x74\x7f\x98\x15\x64\xa6\x7a\x94\x5e\x73\xcd\x07\x14\x9a\x01\x03\x46\x66\x9b\x5b\x3e\x52\x2d\x14\x53\xd4\xe5\x0d\x66\x98\xe3\x4b\x34\x92\x9e\x71\xe9\x08\x49\xb7\x83\xc6\x55\x68\x14\x35\x96\x7a\x27\x8a\x1b\xd3\xa1\xf4\xe9\x40\x1d\x82\xb0\x59\x1a\x44\x9b\x6d\x66\xad\x44\x15\xaf\x8e\xa4\x9d\x6c\x6a\x11\xeb\xe4\x22\xc4\xaf\x4b\x34\x92\x5b\xc0\x76\xca\xe1\x1a\x66\x41\x44\x13\xbc\x91\x53\x76\xbb\x3e\x6a\x40\x8e\x46\x9e\xfa\xa6\x60\x26\x6f\x31\xa8\x44\x7c\x8a\xc1\xcd\x1e\xbd\x25\x3f\x73\x5b\x48\x29\x97\x0c\x8e\x9c\x2b\x49\xcf\x95\xc3\x5c\x9b\xd9\x05\xb0\x28\x1b\xd4\xe1\xec\xc9\x9b\xc5\xf8\xf5\xd3\x37\x6f\x95\xa2\xeb\x5f\xc4\x1b\x55\x23\x9e\x37\xe3\xec\x84\x08\x96\x44\x3c\x54\x18\xea\x89\xb4\x52\x95\x29\x19\x1e\x68\x58\xa7\x5a\x42\x25\xb4\xbe\x7b\x24\xb4\x1f\x57\x0d\x69\xc1\xd2\xd7\x12\x72\xa5\x1c\x40\x75\xd1\x7a\x5a\x8f\x6f\x9b\x1d\x1b\x97\xd7\xd7\xd6\x2f\xb2\xf9\x48\x18\xa3\x15\x58\x59\x3f\xd2\x72\xfc\xdf\x65\x55\xbd\x62\xaf\xd4\xd3\x37\x65\x5d\xbd\x6b\x7e\xfe\x13\x38\x53\xb6\xff\x0d\xe5\x85\x37\x64\xac\xf5\x0a\xca\x54\x77\x96\xa1\x51\x6d\x67\xee\x9e\xc2\x88\xd8\x0e\x07\x4b\xfa\x78\x2a\x57\x52\xe3\x07\x99\x4b\x7d\x22\xd1\x38\xfe\x4f\xf0\xfe\x54\x5b\xe4\xcd\x3b\x4d\xaa\x62\x74\x87\xa0\x45\xf8\x81\x86\xd7\x8c\xb6\xcf\xca\x96\x7f\x03\x2a\x19\xf5\xad\xbb\xcf\xe2\x5b\xf9\xd4\x7f\xd8\x0d\x5a\x9b\xb4\x13\x4c\xd9\xb6\xf4\x7d\x9d\x07\xb4\x13\x22\xb1\x04\x09\x55\xc6\xf7\xbe\xa3\xb8\xd2\x1e\x4a\x37\x71\x13\xa4\x54\x9f\x31\xad\x9e\x0c\xfa\xef\xb0\x79\x83\x6b\xc1\x65\xaa\x3f\xf6\xfb\xdc\x7e\x22\x6d\x5e\x82\xfb\x9f\x4e\x41\x76\x02\x76\x15\x3c\x02\x4c\x01\xb2\xb4\x0d\xec\x6f\x6d\x53\x3f\x1c\xaf\x37\xe2\xdc\xf2\x62\xc7\x2f\x1f\xfc\x9f\x6c\x64\x3a\x5f\x66\xea\xcb\x07\xa2\xbf\x6c\x55\x50\x75\xdb\xe5\x7d\xf7\x78\x67\xaf\x36\x4a\xf0\x43\x01\x77\x2a\xf5\x78\x32\x42\x5d\x9a\xc5\x6c\x4e\x58\xae\x54\x94\x76\x11\xc4\xa6\x36\x15\x2f\x12\x4a\x41\xdd\x85\xb2\xf7\x1d\x5c\x9c\xd5\x22\xce\xde\x91\xcb\x86\x91\x37\xa4\xae\xbc\xfa\x97\xbe\xe2\x53\x2b\x8e\xfb\x7c\x9c\xa3\x96\x15\xfc\xb0\x42\x22\xa9\xee\xcd\x19\x36\x9f\x2e\xd9\x4a\x96\xf6\xed\x34\x58\x90\x38\x7c\x85\xc5\x3f\xc1\xdf\x32\xf1\x0c\x61\xa6\x8e\x85\x2f\x45\x01\x2d\x3a\x0a\xd7\x7d\x7b\x5d\xa4\x31\x93\xd3\x94\x92\xce\xba\xd9\x42\x40\xdc\xc1\xd6\x32\xf6\x01\x0a\x23\xf8\x21\x0c\x8a\xa2\x64\x82\xfa\x12\x15\xb1\xbe\xe1\xfc\xba\x0d\x22\x1a\x10\x67\xb7\x06\x5c\x27\xd9\x57\x5f\x41\x30\x83\xd2\xfa\xd7\xe8\xae\x47\x86\xfe\xda\xec\xc6\x25\x23\xe3\x5d\x4b\xeb\xf7\x92\x8f\x18\x3f\x29\x79\x39\xbe\xa1\x7c\x33\xae\x9b\xb1\x98\x52\x9f\xe2\xca\x1b\x61\x36\x06\x57\xfd\x1b\xba\xdd\x8e\x4b\xce\xc9\xd5\x35\x17\x44\x69\xd7\x12\x20\x48\xf0\x69\x73\x09\xbf\x35\xe8\xc6\x6a\xa9\x78\x7c\xb3\xa1\xeb\xcd\x98\x4a\xea\x2e\x15\xaf\x3b\x46\xaa\xf1\xa5\x22\x7d\x2a\x33\xbc\xd3\x0b\x44\x05\x48\x40\x8d\xbf\xdf\x12\xc1\x68\xb6\x84\x9b\xa1\x7e\xda\x50\x4e\xb6\xb4\xe5\x26\x99\x1c\xf4\xa5\xe7\xec\x28\x75\x67\x7f\x6b\x67\x76\x46\x00\x89\xc5\x38\x3b\xa9\xb5\x97\x92\x75\xef\x26\x1d\xee\xdf\xb5\xb1\x80\x65\xb0\xbe\x71\x37\x80\x82\x68\x63\x0b\x43\x77\x8e\xb7\x78\x9c\xe1\x4f\xf1\x9f\x2c\x92\x7d\x03\x52\x19\x48\x51\xe2\x4c\xff\x58\x2c\xb5\x6d\x25\xcb\x4e\x08\x56\x16\xaa\xb7\x1b\x32\x7e\x57\xae\x3f\x90\xba\x52\xf1\x14\x15\xa9\xe4\xce\x96\xb5\xf2\x47\xd1\x76\xab\x2c\x3b\x61\xdd\xaa\xc3\x29\x59\x23\xa5\xa7\xc2\x4d\xc1\x43\xfa\xb5\xdf\x67\x4f\xaf\xae\xf9\xed\xf8\xb1\x7a\x2c\x68\x46\x66\x9c\xd1\x0b\xa7\x74\x5b\x51\x14\x8d\x58\x8f\x14\xe3\xbe\xfe\xfd\xbf\xcd\xcf\xb2\xe5\xab\x2b\xca\x39\xa9\xc6\x52\x88\xbe\x1d\x7f\xfb\xf6\xc5\x77\xab\x6c\xc1\xf0\x32\x73\x30\x54\xdb\xd9\xb2\x93\xbc\x56\x16\x15\xb0\xb0\xd5\x70\xc4\x4f\xb2\xb1\x1c\x8f\x54\xe3\x52\x30\x2b\x38\xfb\x5e\xf2\xad\xe3\x3c\x3b\x69\x4e\x32\x94\x61\xba\x52\xca\x80\xff\xaa\xc5\x45\x69\x55\xca\xb1\x64\x2d\x50\x43\x89\x58\x9b\xa1\x72\xe0\x97\x7e\x99\xfa\xaf\xc2\xe6\xdd\xe3\xbe\xf9\xfb\x90\x9f\xcf\x47\xc2\x5a\x2a\x68\xf5\xaf\xe4\x3d\x6d\x1f\x64\x7f\x98\x9d\xfe\x7e\xf6\xc7\x2c\x31\xc1\x75\x59\x97\xec\xf6\xc1\x25\x29\xf9\x8e\x91\xf6\x2b\xf5\x99\x79\xf0\x4f\x98\xf1\xdd\x9b\xf3\x17\xdf\x7f\xf7\xf4\xe2\xd9\xd3\xf3\xb7\x3f\xbc\x7e\x7a\xf1\xec\xbb\xf3\x3f\x49\xf7\xe7\xd7\x4f\x1f\xbf\x7a\xfd\xe4\xe2\xc9\xf9\xdb\xf3\x8b\xa7\xaf\x5f\xbf\x7a\xfd\xa6\xff\xfc\xcd\xdb\xf3\xb7\x4f\x55\x79\xe1\xe3\x96\x7c\xc0\x07\xeb\x20\x84\x8e\x76\x24\xd6\xe7\x3e\x8f\x06\x4f\xbf\xb9\xbd\x7a\xd7\x6c\xa7\xd3\xac\x85\x1f\xe1\x8b\x19\xe5\x32\x85\xc6\x59\x44\x42\xd4\x05\x08\xbb\x68\x35\xcd\xe9\x74\x60\x38\xb8\xf9\x5b\xce\x76\x6b\xde\xb0\xa2\x28\xcc\xf3\x89\xfe\x6d\xf5\x79\x67\x7a\x6e\x0b\x33\x20\x12\x94\xf0\x13\x76\xbf\xb7\x65\x85\xff\x4c\x6e\x6f\x41\x66\x11\x64\x28\xc8\x4c\xfd\xf9\xc6\xf7\x60\xb5\xc4\xb4\xc8\x1d\x1f\x0b\xb3\x66\x20\x2f\x82\xba\x3c\x7d\xf9\xe3\x99\xd3\x60\xc1\x72\xf7\x15\x84\xe5\xca\x38\x32\xef\x0b\xf7\x8f\xc5\x5d\x17\x75\x97\x9d\xe4\x93\x7a\xf6\xf4\xe5\xf9\x37\xdf\x3d\xbd\x78\xf5\xfd\xdb\xe7\xaf\x5e\x9e\x7f\xa7\x27\xff\x66\xbf\x57\xdd\x12\xb4\xdf\x13\x55\x99\x3b\xe4\x56\x8d\x41\x16\xd7\x66\x99\xe0\x3e\xa9\x97\xdc\x28\xaf\x54\x9a\x37\x31\xe8\x80\x0b\x62\x04\x68\xda\xef\x54\x7c\xd6\x87\xb4\xf8\x2a\x02\x7f\xed\x6e\x1a\x7e\x04\x5b\x16\x7e\x23\xf7\x71\x97\x38\x76\xa0\xa6\x4e\xa4\x3b\x18\x70\xd3\x1f\x3c\x8c\xb1\x4f\x0f\x7b\x02\x91\x59\xc9\xb9\x27\xb1\xd7\xb1\x6a\x9e\x67\x79\x5d\x10\x4c\x14\x8a\xa1\x45\x5d\xd4\xfb\xfd\x5d\xa7\xbc\x7e\x74\x49\x47\xda\x9e\x73\xce\xe8\xbb\x1d\x07\x0f\xc5\x0f\xb4\xae\x16\x59\xa9\x1f\x65\xb8\x51\x62\x50\x6d\x3c\x14\x02\x83\xf6\x9d\xe7\xd4\x68\xae\x20\xc9\xd8\x42\x91\xbe\xba\xdc\xbe\x10\xc0\x0b\x83\xb0\x7c\xaf\x86\x19\x03\xbd\xb6\xc0\xcf\x67\x8d\xa0\x36\xb3\x4d\x09\x73\xcb\x19\x78\x98\x10\x74\x06\xdc\xa9\x99\xee\x8f\xe2\x3c\x0a\x19\x2e\xce\x9d\x44\x68\x86\x41\x4d\xf8\xf4\xcc\xff\x33\x5e\x8c\x64\xe1\x37\xea\x24\x6f\x5c\x43\xe4\x70\xeb\x2d\x5c\xf9\x5f\xb0\x08\x1a\x4e\xa7\x11\x68\xcc\x2e\xec\x82\xf5\xba\x72\x82\x26\x45\xc1\x3d\x9b\xa8\x60\xc8\x95\xff\xbe\x10\xfc\xe1\x6f\x02\x81\xf7\x8c\x5c\x35\x90\x63\x52\x9a\xce\x2e\xae\x4a\xf6\x41\x69\x0c\x15\xf7\x71\xde\x3e\xde\x92\xb2\xce\xed\xb5\x1f\x99\x47\x4b\xf8\x13\xca\xf8\xad\x01\xac\x4a\x26\x80\x04\xdb\x52\xe6\x14\x22\xed\xde\x69\x4b\x5d\xcc\x47\x09\xd3\x51\x0c\xfd\x58\x41\x30\x35\xe8\x97\xb3\x82\x63\x5a\x10\x84\x6d\xae\x40\x1d\x25\x38\x9d\xe6\xb4\xa8\xad\xba\xf9\x85\x36\x09\xe5\x14\x69\x85\xb4\x44\x58\x8a\x69\xfb\x9a\x6c\x41\xb4\x6b\x37\x14\x8a\xff\x68\x14\x65\x05\x13\x08\xae\x70\xd8\xcc\x38\xc3\x32\x5f\x8a\x32\x36\x8e\xc5\x93\x0f\xe4\x56\xd5\xb8\x39\x12\xa9\x07\xe0\xf7\x9e\x70\x9b\x55\x22\x8e\x17\x47\x40\xdf\xe9\x02\x73\xbd\xa3\xc3\x03\xe9\x1d\x6a\x60\x87\x36\xd2\xac\x1b\xec\x4f\x7f\x5f\x20\x00\xc8\xa1\x0b\x98\x17\x1c\xc0\xd6\xdb\x16\x10\xbb\xe3\xdb\x42\x90\x2e\x68\xa5\xe9\x88\xde\x04\x1e\xd9\x20\xb9\x21\x6a\x82\x7a\x3b\xbe\x2d\xdb\xb1\xfc\xfb\x33\x6f\x86\xce\x0d\x12\xdf\x8a\x83\xd4\x89\x99\x2d\x31\x1d\x89\x0d\x61\x41\xd7\x1a\xf8\xec\xf3\x85\x2a\xca\x1b\xe6\x00\x3b\x17\x5e\x43\xc7\x87\x88\x7d\x41\x7f\x7a\x71\x5f\x1c\xed\x46\x2f\x1a\x0f\x7a\xcf\x3b\x27\xf7\xc8\x2e\xcd\x17\x83\xfd\x1a\x04\x3c\xb2\x57\xd5\xfe\xb3\x7a\xfa\x03\xaa\xa5\xfd\xfc\xe5\xee\xfe\x66\xa5\x2d\x1b\xff\x1d\x65\x84\x06\x26\xe9\x2a\xa4\xfc\x54\x48\x86\xba\x0c\x39\x06\x45\x9d\xf1\xe5\x1b\xf2\x33\x54\xdc\x15\x5d\x57\x15\x51\x0e\x5e\xad\x0a\x4c\x94\x11\x89\x0d\x23\x98\x40\xc8\xf8\x07\x72\x0b\xd1\xb1\x0e\x7d\x4a\x70\x0f\x66\xa9\x99\x0c\x2c\x80\xae\x36\x65\x6b\xdc\x08\xd5\x40\x52\x4d\x0c\x79\x3c\xb2\x8a\xa4\xbe\x7a\x62\xdf\x84\xdf\x49\xc5\xb4\x9c\x98\x7b\x05\x33\xad\x9c\x76\x97\x2e\xd8\x6e\x1b\xd0\x9b\xce\xd4\xa2\x1d\x3c\x3e\x90\x5b\x63\x0c\xae\x1b\x33\x77\x39\xf8\x9b\x6b\xb2\xa6\x97\x94\x54\x79\x8d\x50\x04\xcc\x90\x34\xc2\x71\xb2\x71\x57\xff\xdc\xac\xc0\xfa\xb7\xa5\xa1\x53\x23\x5c\x16\x0e\x13\x91\xd7\xa0\x46\xa4\xba\xe6\xb3\x1c\xfc\x3d\xe1\x2f\xca\xeb\x6b\x52\xfd\x85\xdc\xe6\x30\x77\x2c\xd5\xbf\x68\xd4\x0a\x70\x8a\x27\x0a\xa4\xfd\x7d\x9c\x4e\x73\xd5\x4f\xff\x9d\xea\x8c\xcd\xc4\x45\x84\x9d\xad\x45\x08\x97\x67\x39\x5f\xb6\xab\xa2\x84\x48\x82\x99\xba\xc6\x66\xd7\xcd\xf6\xf6\xaa\x61\xd7\x1b\xba\x56\x43\x9a\xaf\xbe\xb7\xaf\x64\x1a\x24\x69\x5a\x5f\x40\x37\x70\x8f\x81\x17\x6b\xa3\xb9\x3e\xf3\xa1\x46\x51\xef\xaa\x87\x40\x43\x3c\xd0\x28\xb1\xb7\x2e\x34\x61\x79\x48\xbb\x78\x0c\xc1\x91\x1e\x03\x47\xfa\x29\x70\xac\x05\x1c\xe9\xaa\x70\x22\x39\xf2\x20\x8d\x84\x3c\x8e\x92\x6b\xd5\xcb\x7c\xd6\x30\x42\xdf\xd7\x62\xa6\xd2\xc1\x48\x74\x82\x7e\xe9\x46\x50\xb5\x11\xf6\xa8\xa4\x52\x22\x7d\xb6\x83\x32\xd6\x5f\xa7\x4e\x89\xe7\xaf\xf6\xcf\xd9\x23\x00\x8c\xe1\x14\xf3\x1a\x83\xff\x21\x70\x24\xd2\x79\xff\xd0\x29\x3e\x4b\x60\xb4\xc3\x29\x19\xba\x15\xc0\xe1\xbc\xae\xc4\x26\xd9\xbe\x7a\xc7\x43\x75\x72\xde\x3a\xad\xf5\x09\xc1\xc3\xcd\x86\xae\x8e\x90\xb2\x4a\xf8\xb8\x80\x81\xc8\x0a\x0d\x14\x79\x96\x46\x7c\x59\xaf\xd4\x75\x75\x9e\x53\x34\xbb\x2a\xaf\x23\xae\x0d\x77\xb4\x5a\x10\x70\x5a\x03\x26\xd8\xba\xb2\x81\x4b\x67\x12\x4e\x83\x37\xdd\x00\x66\xd4\xc7\x60\x46\xfd\x69\x98\x51\xaf\xcc\xf8\x52\xc5\x6e\x36\xcf\xd9\x5d\xd8\x89\x64\x83\x80\xd3\x76\xb3\xec\x68\xe8\x72\x49\xa9\x6a\x03\x5a\x26\xa0\x5f\x93\x9b\xb1\xca\x3a\x62\xea\x02\x4a\x67\x71\x93\x78\xa4\x39\x39\xd1\x15\x6f\xeb\x65\xb3\xc2\x6d\x51\xa6\x09\xcd\xe8\x10\xa1\x29\x31\xc7\x2d\xc2\x74\xd9\xac\x8a\xd6\x24\x98\xe9\x70\xea\x93\x88\x79\x81\x5e\xe6\x0e\xa3\x2a\x37\x86\xd6\x95\x3e\xe5\x72\xcb\x66\xb4\x86\xf2\xfa\xcf\xc0\xc1\x4a\x40\xdf\x72\x24\xee\x0d\xd8\x14\x54\xa6\x2c\x50\x2e\x55\xd0\x60\x20\xdb\x4e\x6c\x77\x1b\x4c\xd5\xce\xba\x6c\x08\x1a\x95\xd3\xa9\xf4\xd9\x1c\xd7\xcb\x72\xd5\x75\x1d\xde\x94\xad\x5e\xe2\xf9\xf6\xa6\xbc\x55\x67\x32\x62\x56\x90\x5e\xa1\x9c\x33\xcb\xae\x18\xe6\x6b\x3a\xcd\x4a\xf8\x5a\x2c\x9e\xcf\x88\xea\x11\xba\x8f\x13\x90\xd4\x00\x89\xf9\xa8\x28\x83\x81\x29\xec\xf7\x6c\x3a\xcd\xa4\x1a\xa5\x95\x7b\x60\x56\xee\xcf\xe3\xf9\xa1\x39\x24\x17\x99\x67\xb4\x52\x4b\x34\x7d\xef\xf7\x19\xad\x82\x67\xa8\x37\xa0\x4f\xf1\x3e\x6d\xe0\x07\x65\x5d\x81\xd9\x2a\x3a\x05\xf3\xb6\x3f\x97\xf4\x1d\x76\xaf\x89\x4c\x72\x59\xcd\xda\x19\xd7\x6e\x35\x92\x6b\x4e\xf1\xb6\xbf\xc6\x76\x3b\xa8\xde\x61\xe7\xb3\xd4\xd8\xa0\x4c\x83\x76\x99\x07\x6b\xbe\x4c\x25\xbd\x5b\xed\xf7\x1c\x2a\x18\xe3\x84\xa4\x31\x18\x25\x60\x95\x0a\xa4\x5c\x6f\xbc\xf3\xea\xa4\x91\x68\xd0\x1d\x19\x94\x12\x18\x12\xf8\xa0\xe5\x57\xc8\x34\x26\x8e\xfa\x74\x4a\x7b\xf2\x8f\xcd\x8c\xca\x70\x8d\x1b\x84\x7d\x2a\x95\xfe\xd0\xcd\x8c\x2a\x3f\x15\x42\x6a\xdd\x5f\xf7\xa1\x28\x05\xeb\x47\xc0\x70\x26\xc4\xc6\x19\x73\xd6\xdd\xce\xc0\x47\x0b\xfc\x36\x32\x4d\x03\x6d\x9e\x35\x7b\x15\x50\x5b\x22\xb6\x98\x3f\x2c\x1f\x51\x37\xe3\x9a\x94\x1b\xf0\xae\xa0\xcb\x72\x85\xb5\x1b\x85\xb5\x5e\x9b\x2d\x72\x00\x2e\xf8\xcb\x1d\xc2\xeb\x62\x0b\x83\xe3\xcb\x62\xab\x0d\xa3\xe0\x2d\xc8\xcc\x5f\x85\xfd\xb9\xdf\x2f\x57\xd8\xfe\x29\x7d\x75\xd7\x08\x5f\xa2\xbc\x75\x9a\x49\xcf\x67\xa5\x42\x6e\xf1\x25\x1a\x35\xcb\x72\x55\x08\xfe\x60\x6d\xf8\x83\x35\xdc\x09\xb2\x90\xf3\xa6\xd0\xb1\x04\xca\xdf\xad\x1d\x82\x17\xde\x80\x90\x90\xda\xb1\xcf\xb9\x15\xb0\x0d\xfa\x1e\x3a\x02\xa2\x14\xc1\x5d\x0c\x10\xdd\x09\x29\xea\x93\x20\xda\x22\xbc\x43\x79\x93\x82\x68\x83\x77\x48\xa5\xfe\x30\x81\x33\x8b\xd6\x00\xb6\x55\x80\x3d\x0a\x94\x5b\x00\xe5\xe0\xc2\x52\xfc\x19\x0c\x33\xe2\x71\xd9\x24\xaf\xb5\xc7\x95\x49\x97\x07\x17\xb6\xb8\xbb\x6b\xc7\xe1\xc8\xbf\xd5\x6b\x64\xd5\xab\x39\x15\x7b\xb7\xdb\x6e\xc1\x69\x38\x20\x33\xa0\x34\xb1\xd9\xf8\x58\x3c\xb5\x98\xcd\xf5\xa5\xf2\x74\xf9\x0f\xc4\x81\x2e\x98\x93\x72\x21\x95\x1b\xcc\x78\x1a\xd1\xf6\x65\x53\x13\x30\x38\x4c\x20\x63\xce\xac\xdc\x6e\x9b\x9b\x97\x62\x96\xda\xe7\xd9\xa9\x51\xa2\x14\xc7\xba\xc0\xc3\xbb\xa6\xd9\x92\xb2\x06\x5a\x7d\x46\x16\x56\xc3\x5c\xb0\xb3\xaf\xfe\x6f\xce\xd9\x8e\xec\xf9\xfe\x14\xfd\xee\x2b\xaa\x7d\x84\x9c\x2a\x8d\x05\x9b\x4e\x4f\xa5\x83\xf3\x81\x1c\x66\x07\xe7\x2a\xeb\x0a\x7c\x23\xa7\x23\xd5\xb7\x98\x1e\x84\x84\xb9\x3a\xf4\xb2\x64\x89\x71\xbd\x06\xee\xba\x5b\xa8\xf8\xd7\x13\x73\xaf\xc8\x90\x91\xe9\x54\xa7\x12\x7f\xf0\x6f\xb0\xec\x9c\x9d\x14\x7f\xc0\x82\xcc\x3d\x91\x89\x80\x64\xf9\xd2\x39\x66\xe8\x24\x5b\x64\x27\xfa\x01\x43\x48\xfa\x08\xcb\x66\xda\x82\xe3\x40\x87\x9f\x39\xaf\x17\x32\xc3\x39\x39\x53\x1b\x1d\x85\x98\x35\xa9\xbb\xf1\xee\xa2\x87\xe9\x74\x42\xdb\x97\xe5\x4b\x48\x3b\x3b\xe3\xcd\xf3\x37\xaf\xe4\x55\x98\x23\xed\x8b\x30\x72\xb3\x21\xd9\x9e\xa0\x56\x13\x99\x14\xc5\xe9\x57\x73\xf9\xe3\xc1\xe9\x57\xf3\x4e\xb2\xea\x47\x02\x58\xa3\x0b\x84\x1f\x4b\x23\xb3\x58\x0a\xec\x59\x93\xf3\x42\xe6\xfd\xca\x09\x42\x67\x7c\x70\x79\x9f\xd8\x5b\x27\x68\xd8\xe1\xb9\xc6\x91\x4d\x76\xac\xa0\x25\x6d\x0e\x9f\xfe\xb1\xcc\xa5\x2b\xd1\xf4\x2d\x2b\xeb\xf6\xb2\x61\x57\x45\x8d\xc9\x4c\xec\x92\x7d\x42\xb1\x0c\xed\x0d\x09\x04\x78\x50\xca\x05\xda\xc6\x25\x26\x8a\xb1\xb1\xcf\x5a\x4c\x66\xf6\x2f\x86\x15\xb1\xfa\xb6\xb4\xe6\xe0\x57\x9e\x7c\x21\xe4\x0e\xe0\x67\x8b\xe4\xaa\xc0\x32\x89\xad\xf1\xb8\xcd\x90\x4c\x5b\x0b\x2c\x2a\xda\xef\xbd\x66\x1e\x65\xfe\xe6\x56\xf4\xef\xb7\xff\x6c\x76\x15\x47\x6b\x7d\xc0\xb8\xe2\xb4\xb4\x3f\x87\x1d\x64\x3e\x9f\x11\xe5\x7e\xa6\x04\x7e\x38\x69\x90\xb3\x9a\x78\xde\xa0\xe1\xe4\x40\xc1\xe7\x9f\xe6\xab\xf0\xb9\xf2\x05\xb1\x5e\xbe\x20\x7b\x85\x3f\x69\xd6\x60\xad\x97\xe5\x55\x42\x8f\x59\xc7\xa9\x46\xe2\x9f\xc0\xae\x57\x97\xda\x75\x18\x29\xc7\xe2\x80\xdf\x79\xad\x32\x76\xa9\x92\x2d\x3a\xf9\x40\x3c\x57\xaa\xee\xca\xf0\xb1\xdc\xe1\x63\xe5\x4b\xc3\xcc\xb2\x62\xfe\x90\x3d\xf2\x1e\x3e\x64\x9a\xa3\xad\x0b\xf9\x62\xc9\x56\x23\x48\xf3\x30\x3c\xab\x1a\x75\x7a\xf6\x5d\x64\x52\x86\x95\xb2\x13\x73\x74\x2d\x4a\xc3\x62\x9b\x45\x54\x2d\xf6\xa5\xd4\xb9\x0c\x4f\xa7\x44\x23\x9d\xbe\xda\x64\x1e\x6f\xc5\x14\x0d\x17\x48\x1d\xcf\x55\xb7\x1b\x4b\x09\x9e\x94\xbc\x8c\xec\xa3\xe1\x9e\x20\x11\x9e\x8c\x64\xd4\xda\x90\x67\xac\xb9\x52\xce\x93\xa0\xdd\x91\x4c\x18\x0e\x86\x70\x67\x1a\xb9\x33\xe8\x65\xce\x8f\xeb\x37\x4b\x34\xc8\xf0\xc4\xd1\xdd\x5c\x08\x61\x4d\xb3\x7f\x3c\x5a\xcf\xcd\x36\xbe\xb2\x0d\xfd\x90\xf6\x98\x1a\xc8\x65\x18\x19\x26\x08\x10\xa0\xc3\x02\xda\x6a\x32\x03\x16\xef\xc4\x99\x11\x03\x13\x9d\x37\x3e\x80\x5b\x34\x0a\xb1\x86\xa0\x26\xdf\x10\x9f\xea\x9b\x21\xc7\xaf\xd8\xa9\x88\xd0\xef\x5b\xa7\xc4\x70\x54\xec\x4a\x00\x90\x51\x6c\xc6\x2b\xc7\x26\x01\xc1\x4a\x26\x32\xb7\x56\x9b\x5c\x3d\xae\x9d\x34\x2b\xd2\x0c\x2d\xbf\x90\xa5\xf7\xd6\x1b\xab\x23\x0e\xf1\x83\x4a\xb5\x6b\x60\xa1\x0b\x14\x6d\x26\x96\xc3\xed\x7b\x49\x57\x42\x34\x58\x92\x55\xf8\x58\x49\xd7\x6a\xfe\x09\xf1\xe3\x18\x0a\x66\x83\x23\x7a\xc7\x33\x76\xae\x0c\xb5\xc2\xff\x34\x22\x16\x9d\x96\x4b\xcc\x7a\xdb\xeb\x7e\x73\xf4\x0e\x7b\x1c\x86\xde\xe4\xb8\x0e\x86\xd8\x78\x3e\x16\x53\xae\x92\x84\x72\xd5\x0d\xe1\x09\x06\x5c\x36\x2b\x4d\x46\xfb\x6f\x46\x80\x11\xc0\x72\x86\xcb\xcb\x4b\x90\x4e\x1c\xc5\x4b\x90\x8d\x2d\x74\x28\x4a\x11\x2c\x29\xae\xa2\x0e\x27\x1a\x44\x08\x6c\x3e\xc7\x7c\xd6\xd2\xfa\xfd\x6e\x5b\x32\x48\xe1\x06\xb9\xd9\xfa\x0e\x40\x28\x87\x5a\x88\xd7\xa6\x33\xd1\xb5\x79\x9b\xea\xd9\x49\x0d\x47\x5c\xa2\x10\x2c\xce\x3f\x9b\x7e\x20\xf2\x0f\x62\x76\x4f\xc8\x7a\x5b\x32\x52\xbd\x28\xaf\xaf\x81\x71\xc6\xee\x27\x08\xf7\xb6\xfe\xc8\x3e\xbc\xaf\x8c\x83\x13\xad\xa4\x41\x4b\xed\xc6\xf3\x4a\x79\x68\x41\xa0\x97\xeb\x82\xa0\x8d\x90\x08\xdb\xc9\x78\x9f\x5a\x22\xa5\x7c\x8a\x3c\xac\x76\x5b\x7a\xf8\x2e\xfd\xf1\xfc\x4c\x0d\x82\x2a\x1a\xfe\x5d\xb4\x60\x1e\x04\x74\x36\x13\xed\xf1\x60\x7d\x3c\x07\xe4\xe7\x48\x62\xbf\x7b\x78\x4c\x0c\x75\x92\x12\xdf\xdd\xab\xe9\x08\x72\xcf\x9c\xeb\x3f\x81\x7a\xb9\x63\x84\x73\xc1\x60\x66\x10\x87\x84\xab\x34\xab\xa5\x9a\x47\xdb\x73\x2f\xd6\x65\xfd\xc6\x56\x1e\x40\x3e\x7e\x7a\x54\xdd\xb8\xd7\x36\x85\xf4\xd1\xcd\x99\x52\xab\x29\x0f\x09\xae\x77\x4c\xdc\xe4\x14\x39\x16\xac\x06\xd7\x5a\xad\xa4\xb3\xf6\xc6\xcc\x81\xc6\x14\x58\xaa\x74\x97\x65\xc2\xc8\x19\xda\xf7\xdc\xbb\xa7\x5c\x15\x4d\xf7\xc9\x6e\x24\x3e\x3c\xac\x5d\xdb\x77\xef\xc0\x4d\x41\x05\x13\x28\xb5\xf5\xd3\xe9\x44\xff\x94\x2a\x78\xda\xbe\x24\x37\x92\x7e\xaa\xd2\x6c\x74\xbf\x6f\x04\x68\xbd\x33\x11\x52\x4e\x03\xe0\x28\x74\x6a\x0f\x3a\x75\x08\x1d\x8f\xc8\xd6\x9e\x9b\x99\x07\x2c\xe5\x67\x0e\xac\x1a\x6c\x5e\xab\x9c\x1c\x07\xf1\x8e\xba\x78\x47\xab\x05\x9d\xd1\xaa\x1b\x85\x94\xbf\x5c\x29\x05\x66\xdb\x75\xdd\x27\xba\x27\xc8\x24\xf4\x6f\x82\x4f\xa5\xfb\x84\xb3\x1b\xc6\xca\xef\xdf\x52\xf4\x78\x20\x37\xc3\x40\x6e\x24\x90\xd3\x96\xe8\x66\x08\xfa\xc6\x19\xcf\x87\xbd\x66\x3e\xca\x82\xce\x64\xa2\xd2\x58\x46\x01\x62\xf1\x8a\xc4\xf0\x0a\x14\x3a\x96\x7b\xb1\x8c\xcb\xae\x98\x3f\xdc\x3d\x32\x3c\xcb\x4e\xf3\x2c\xdb\x82\x2e\x77\x2b\xbc\x1e\xa6\x2d\x5b\xb7\xe0\x49\xbb\xdc\xad\x14\x62\xac\xc5\x86\x6f\xc5\x86\x77\xfd\xab\xde\xdd\x70\x93\x17\x85\x3a\x3e\x77\xcd\x71\xe2\xfb\x31\x5a\x8b\xc1\x0c\xa3\x49\xe9\x7e\xc8\x99\xf4\x7e\x0e\xa6\x5a\x2e\xf8\x02\x2a\x80\xd2\x0b\x34\xd1\xba\xa4\x2b\xc2\xde\x13\x21\x98\xf6\xd4\x03\xd7\x8c\x5e\x95\xec\x56\xf0\x39\x19\xad\x32\x0c\x2d\x2b\x35\x3c\x25\xed\x62\xa9\xec\x80\x2b\x1c\x5c\xa6\x43\xec\x65\x52\xd1\x65\xf5\xfb\x82\xc9\x34\x9d\x91\x2a\x26\x54\xa8\x24\x2e\x96\x73\x5c\x92\x95\x65\x3f\x83\x4b\x02\x12\xe1\x48\xa7\xff\x91\x68\x58\x34\xae\xd5\x33\x17\x8f\x70\x69\xee\x8e\x0e\xf2\x42\xe2\x63\x04\x38\x53\x68\x92\x1e\x28\x34\x69\x3a\xb3\x55\xf7\x74\xb7\x89\xfb\x7a\xb8\x58\xe4\x90\x30\x38\xd4\x61\xb4\xa6\xa5\x37\x39\x27\xe3\xe6\xa1\x8e\x12\x95\x22\xbd\xee\x4c\x9b\x63\x3b\x8d\x56\xad\xf4\xba\x54\x2d\x8e\xed\xf0\x40\x6f\xc7\x76\x15\x29\xf0\x19\x6e\xc2\xe1\x4e\xd2\x45\x32\x4d\x5f\x6e\xf9\xbf\x63\xba\x4c\xd7\xc1\xb4\xca\x04\xa7\xc9\x31\x5d\xa6\x6b\x72\x5a\xfe\xdf\x69\x32\xdc\x65\xe7\x9c\xa4\x3e\xf2\x47\xcf\x54\x74\xc4\x37\xb4\x7e\x6f\x53\x3a\x25\xc6\x3a\x52\x49\xf2\x99\xc7\x0a\x8e\xcd\xf1\xe3\xc0\xd5\x7a\xaf\x61\x7a\xc7\xe9\x8b\x2e\x2a\x38\x69\x5f\x72\x61\xbf\xc6\x38\xde\x31\xfd\x52\x83\xc4\xce\xef\x3d\x36\xa9\xfc\x78\xfc\x16\xc5\xce\xf5\x17\x1a\x2a\x76\xde\xbf\xd0\x50\x6e\xe3\x2f\x86\xdd\x7e\xf3\x83\xc3\xf4\xb5\xb9\x0e\xb3\x36\x99\xbb\x3d\x7b\xd8\xf2\x0b\x3b\x3e\xbd\x8f\x22\x59\x72\x78\x92\x53\x06\xcf\x05\x6d\x32\x58\x2c\x57\x9d\x36\x3c\x28\xdd\xc8\x0b\xc2\x75\x91\x6f\x21\xd9\xb4\x42\xce\x83\x58\xac\xa2\x45\xba\xaf\x5d\x90\xbf\x0e\x72\x0d\xe2\x6d\xb1\x93\x8e\x2a\xeb\x62\x67\x1d\x55\xa4\xf3\x4a\xb1\xc5\x6b\xe8\xc9\x18\x2b\xd6\xd2\x2b\xda\xe8\x43\x2f\x1d\x89\x82\x19\x89\x62\x53\xcc\x71\x55\x98\xb2\x91\x9b\x47\xd5\xc3\x8d\x96\x2a\xae\xf1\x55\xc1\x96\x9b\x15\xfe\xd8\x9f\xce\x15\xc2\xb7\xc5\x47\x39\x9d\xf7\xc5\x47\xcf\x6f\xe6\x3d\xca\xaf\x1d\x57\x1a\xcf\x15\xe6\x1a\xbf\x47\xa3\xcb\xe5\x66\x55\xdc\x76\x6a\xe6\x97\x5a\x5f\x5a\xa6\x75\x6a\x2a\x27\xa4\x90\x69\x5d\xb7\xb7\xa3\xf4\x62\x08\xa7\x34\xd0\x7c\xb6\xa5\xf5\x87\x16\x1d\xad\x61\x93\xcd\xf1\x01\xad\x9a\xa3\xc3\xf9\x22\xaa\x34\x7c\x8c\x0e\xcd\xd5\x1e\x99\x49\xc6\x65\x83\x65\x98\x3a\xc7\x0a\x1f\x19\x5a\xd9\xe2\x18\xcd\x6c\xdd\x10\xb6\x26\xcf\x2b\x04\x56\x91\xa3\x6c\x17\x36\x81\xa7\x93\x24\x7e\xc0\x5e\xc1\x8a\xfa\xa0\xad\x02\x3b\xa2\x07\x5b\x41\xaa\x52\xb2\x82\xdf\x42\x74\xa6\x87\xac\x12\x31\x0f\xa1\xc0\xc6\x35\x60\xb6\xe0\xa0\x42\xa3\x95\xcc\x4c\x52\x15\x01\x60\xc4\x33\x13\x5d\x1a\x33\x92\x39\x1e\xa1\x2a\x39\xd4\x04\xb4\xd4\xc7\x3a\x30\x20\xe9\x4e\xc9\x8f\xb0\x25\x2a\x15\xba\x10\xa9\xac\xc3\x7f\x38\x5f\x8d\xb4\x16\x4f\x9c\xc0\x94\x63\x14\xa7\x29\x6c\x55\xc8\xfa\xe9\x26\x90\x23\x2d\x1e\x32\xe4\xfd\x17\x18\x3e\x96\xe5\x4a\x47\x72\xc9\x82\x91\xf0\x68\xd4\x73\x91\x97\x5d\xa1\xb6\xa0\x31\x17\xba\x33\x63\x0e\x49\xc0\x2f\xa7\xb0\x1d\x78\x87\xef\x3e\x90\xdb\x05\xc1\xba\xac\xd6\xb7\x65\xbb\x59\x70\x8f\x06\x88\x4b\x62\x41\x3b\xc8\xca\x1b\x81\xac\xee\xc9\x5a\xf4\x5d\xef\x5a\xaa\x9c\x64\x27\x1e\x86\xef\x10\x12\xd7\x8d\x73\x0b\xec\xcc\x2d\x10\x5d\x10\xd2\x37\xc7\xb6\x98\xc3\x95\xa3\xee\x88\xed\xa3\xf5\xc3\xad\xbe\x23\x2e\x8b\xdd\x72\xbb\x1a\xb5\xcb\xad\x63\x0f\x3a\x00\x80\xcb\x7b\x00\xa0\x33\x05\x59\xa5\xdb\xa9\xb8\xad\x76\xf1\xdb\xaa\xd8\x2d\x37\x62\x26\x9b\x94\x65\x4a\x0d\x7f\x8d\xba\xc6\x6a\xb5\xc4\xa7\x57\x06\x79\xbe\xa3\xf5\x07\x83\x34\xaa\x74\x35\x10\xfd\xe9\xd4\x31\x94\xc1\x93\xe5\x95\xc2\x9a\x8f\xce\x93\x87\x79\x53\x34\xfb\xfd\x5d\x87\xe4\xa3\xe2\x0e\x16\x45\xaa\xc5\xc7\xae\x6b\xb4\x29\xb5\x51\xc6\xd3\x7b\x59\xb6\x68\xc2\x8e\xe5\x69\x4b\x0e\x9c\x31\x45\x8c\x47\x49\xa5\xe7\xc1\x23\x47\x26\x45\x91\x5b\x1a\x7d\xcc\x61\x43\x2e\xec\x24\xbd\xe6\x9a\x5e\xab\x3c\xdf\x63\xae\x13\xcc\x0d\xde\xc1\xc9\x9c\xdc\xe1\x05\xa6\x5d\xe4\x41\xff\x6d\xbc\xb3\xc7\xb4\x1e\x53\xc4\x8a\x68\xa8\x52\x83\x89\x77\xaf\xd4\x62\x9e\xc3\x8e\x61\x0d\xb2\x59\xfa\xc3\x2b\xab\x41\x08\x1f\xe9\x2f\xd6\xef\xc6\x0f\x8c\x41\x08\xd7\xd2\x17\x33\x97\xf6\xe8\x65\xed\xc0\xad\x5e\x21\x19\xd5\x64\xd7\x92\xd8\xf9\x14\x90\xf4\xbd\x37\x9d\x0a\xe4\x9c\x4e\x73\xb1\xbf\x4b\xb2\x42\x32\x54\x2b\x67\x85\x0a\xd0\xec\x65\x58\x60\x90\x61\x81\x21\xe9\xad\xe2\x1a\x56\x92\xd5\xb7\x52\xc3\x4f\xf8\x7e\x3f\x11\x68\xb1\xdf\x43\x9d\x71\xf1\xd3\x8d\x86\xb9\xb8\xda\xb5\xfc\xd3\xbb\x17\xec\x22\x87\xd5\x49\xd7\xda\xa0\xf7\xb8\x4d\x22\x19\xba\x0a\xb1\x51\x26\xdb\xaf\xbb\x5b\x60\x43\x65\x5e\x98\x94\x5a\x9f\xf4\xae\xf1\x97\x91\x73\xb4\xdf\x47\xac\x52\x1c\xe2\x25\xae\xca\xfa\xf6\x6d\x23\x68\xb7\x20\xea\xf5\x7e\xaf\x9e\x68\x32\x5f\x1f\x65\x99\x94\x37\xaa\x20\x64\xd3\xa9\xc9\xa4\xf6\xdc\x09\xf4\xa2\xd5\x88\x02\x61\x1a\xe4\x02\x0b\x6a\x92\xb0\x24\xb9\x37\x0e\x12\xd6\xac\x6f\xab\x04\xe3\x0e\xe4\xc0\x45\x78\x88\xc2\x40\x07\xb1\x3b\xf7\xcc\xe9\xd5\x0d\x3f\x16\x32\xdd\x22\x76\xf5\x39\xed\x5d\x03\x13\x55\x84\xb7\x57\xd5\x20\x62\x4d\x05\x21\xcd\x0b\xd8\x85\x8a\xa9\xe8\x48\x63\x6c\xda\xfe\xea\x9a\x69\xf1\xaf\x66\x6a\x8d\x51\xa9\x7b\x18\x60\x7f\x0d\xab\x2b\x16\xec\x29\x98\x50\xbe\xa8\xe9\x2e\x65\x38\xc5\x1e\xbb\x44\xd1\x19\x5f\x36\x32\x10\x7b\x01\xbf\xe8\x2f\x09\xeb\xfe\xb5\xac\xa5\x36\x26\x3a\x34\x9b\xfe\x93\x4c\xa2\x58\xc2\xce\x33\x17\x07\x20\x72\x3d\xe8\x8c\xbc\x00\x0c\x60\x08\x21\x7a\x99\x33\x87\x9b\x60\xa0\x37\xb1\x80\x13\x7f\xd9\xda\x1a\x70\x41\xca\x87\xb8\xb6\xd2\xcd\x53\x99\xd3\xd3\xeb\xda\xc9\x87\xce\x9d\xb0\xb7\x3a\x92\x20\x54\x5c\x93\x2a\x2f\x28\x04\xcd\x40\x82\xea\x5e\x95\x69\x94\xeb\x46\x2a\x6d\xc0\xb0\x6e\x81\xe3\x1a\x61\x7e\xc0\x8b\x8f\x17\xcd\x61\x2f\x3e\x3e\x81\x88\x06\x9b\x98\x79\xc9\x8d\x07\x9f\xf8\x8d\x4d\x30\x2d\x07\x61\x99\x0f\x31\x7c\xe1\xb8\x01\xb7\xf7\xcb\x86\x06\x42\x7c\x94\x7b\x0f\xb9\x8f\x1b\x8f\x69\x2c\x58\xf9\x64\x7f\x2e\x79\x8d\x5e\x9d\x83\x15\xd3\xcc\xd7\x8b\xec\xc4\x8a\xf3\xcc\xcf\x49\xda\x1e\xb6\x8b\xf7\xab\x72\xfe\x62\x97\xf6\xa4\x35\xfc\x48\x7b\xf9\x97\x31\x89\x27\x3f\x88\x05\x81\x1c\x19\x41\x40\xa3\x11\x24\x5d\xda\x00\xdf\xf7\xc1\x97\x88\x92\xa4\x46\x11\x35\x47\xec\x1c\xa0\x93\x0c\x52\xf0\xba\xfa\x62\x20\x05\x83\xa1\xb5\x58\xcb\xa0\xcb\x95\xaf\x2d\x2e\x0b\xcf\xa3\x1a\xb7\x45\xdf\x87\xda\xcf\x34\x76\x55\x7e\x20\x4a\xaf\x1b\x49\xf1\x6d\x24\x80\x5d\x41\x1d\x9d\xb7\x27\xa3\x0b\xf8\x29\x42\x58\xe2\x36\xa1\x69\x7e\x98\x37\xd2\x63\x16\x1c\xad\xb7\x08\xaf\xa5\xe0\xd2\xc4\x35\xbd\x0c\xaf\x55\x45\x98\x81\x41\xfb\xfa\x74\xa3\x4d\x6f\x70\x5b\xd4\x90\x8d\x1b\x84\xdf\xe3\xd5\x63\x90\x9b\xc3\x49\x1e\xbf\x3b\x4a\x49\x36\x0a\x9c\xde\x77\x08\xb8\xa3\x10\xf6\x3b\xb9\x21\x57\xb6\x99\xe1\x8b\x4b\x47\x41\xde\xea\xbc\x1f\x07\x2d\x08\x14\x37\xb8\xd4\xea\xa7\x94\x05\x61\x97\xb4\x20\xec\xa6\xd3\xbc\x95\xe6\x83\x9d\x75\x3f\xda\x7a\xe5\x0e\x19\xc2\xeb\x62\x0e\x01\xc3\x4a\x71\xb2\x7e\x74\xf9\x70\xad\x15\x27\x9b\x62\xbb\x5c\xaf\x70\x55\x6c\xf0\x75\x31\x39\x1d\x65\x17\x82\x93\xde\xcc\xd6\x9b\x92\x9d\xf3\x7c\x2e\x00\x71\x5d\x4c\xe6\xa2\x85\x2a\x02\x95\x9f\x2a\x15\xe7\xd5\x30\x6c\xa5\x0a\x25\x80\xec\x15\xd2\x7a\x93\xc9\xb5\x62\x36\x68\xfb\xbd\x14\x36\x14\xc7\x74\x85\x39\xc2\xb7\x60\x7c\xd0\x3e\x76\x93\xa2\xb8\x45\x02\x1b\x3e\xee\xf7\xbe\xe7\xf7\xad\xea\xef\x3d\x7e\x87\x2f\x42\x6f\x6d\xe5\xff\x8d\xaf\xf0\x2d\xde\x20\x7c\x53\x5c\x48\xc4\x7e\x5a\x5c\x78\x36\x8b\xa7\x28\x7f\x5f\xb4\x71\x4c\x7e\x8f\x9f\xc2\x3a\x4a\x74\x33\x50\xaa\xe9\xe3\x74\x0a\x7a\x5c\xab\x5a\x85\x4a\x4d\x42\x28\x19\x7d\x9c\x4e\x27\x74\x3a\x9d\xb4\x30\xf8\x7e\xcf\xcf\xe4\xaf\x82\x2c\xda\x20\x94\x98\xa0\xce\x6a\xf5\x3e\x22\xd5\xee\xc6\x3c\xba\x41\xf9\xbb\xd4\x44\xdf\xe1\x1b\x65\xf4\x11\x53\xfa\x19\xbf\x09\xa1\x11\x3b\xf4\xb7\x78\x83\xb9\xcc\xe9\x8f\x5f\x15\x6f\x24\x78\xce\x8b\x37\x16\x3c\x6a\x0e\xaf\xf0\xf9\x74\x9a\xff\x9c\x1a\xfc\x67\x7c\x8e\x3a\x93\xdb\xbd\xed\xb0\xb7\xa9\xc9\xeb\xda\xa5\x75\x42\x52\x39\x1c\x0a\x12\x25\x9b\xb6\x6a\x27\x94\x1d\xf1\xb2\x15\xa5\xb0\xb3\x8e\x61\x27\x45\x9a\x13\x74\xa6\x46\x65\x02\x30\x9f\x14\x34\xae\x3b\x5d\x48\x89\x41\x31\x93\xc6\x16\x4c\x0b\x97\x5c\x40\xf1\x18\x41\x59\xa8\x8e\x44\xa7\x0e\xd9\x65\x0e\xd9\x85\x48\x73\xc8\x81\x99\x88\x35\xe7\x78\x87\x3a\xd4\x75\x4e\x3c\xcc\x2f\x74\xa0\x6f\xd2\x0e\xf4\x07\xe2\x9a\x0f\x7a\x46\x1f\x27\x89\x93\xe5\xa0\x5b\xa3\x9b\x59\x46\x45\x6b\xf8\x22\xfb\x7d\x1c\xfd\xc7\xa9\x44\x1a\xc7\x88\x2f\x7d\x39\x0e\x7b\x89\xae\x42\xd1\xb0\xc6\xd2\xaa\xe4\xa7\x73\x6a\xc2\x54\x73\x9e\x5c\xda\x08\xb9\x94\x1a\xb9\x94\xae\x8a\xf8\x8c\x5d\xec\xbc\xb7\x65\xc7\x5f\x01\x9b\xb9\x8a\x7a\xdc\xc0\x03\x5f\x55\x1f\x13\x8c\x71\x39\xbc\xf6\x9e\x00\xa1\x76\xa0\x71\x64\x08\xba\x2c\x57\x56\x08\x33\x95\x0e\xf9\x19\x18\x60\x9d\x20\x86\xd4\x19\x17\x1d\xa0\x6e\x71\x18\x13\x3b\xed\x38\x5d\xde\x8f\x87\x77\xbd\x57\x7f\xa5\x7c\x97\xae\xc2\x33\x48\xa0\xd0\x67\x37\x80\x99\x08\xf2\x2a\xa4\xac\xec\xf1\xe2\x0a\xfc\x30\x10\x8c\x40\x74\x54\x6c\x72\xc2\xff\xf6\x8b\xc0\x89\x15\xdc\x06\x8a\x3b\x8b\x62\x87\x17\xf5\xdb\x4d\x63\x1a\x08\x7a\xc7\x08\x90\x5f\x35\xac\x22\x8c\x54\x0f\x5a\xc2\xef\x95\xd4\xdd\x77\xc2\x8e\x89\x87\x01\x20\x58\x01\x35\x54\x36\x65\xfb\xea\xa6\x36\x80\x30\xe1\xe1\xe8\xcc\xc8\x61\x0b\x5d\x73\x4d\xa2\xf2\xd3\x8f\xa4\xe6\xa4\x32\xd5\xfe\xe0\x22\xfd\x9e\x35\x3f\xdf\x6a\xf4\x96\xcf\x55\x65\x3d\x78\xa3\x6a\xa4\x0b\xfe\x37\xa8\x54\x3e\x63\xa4\xac\xda\x5c\x17\x4f\x01\x16\x59\x79\xd6\xbb\x27\xe7\x98\xfe\x9d\xdc\x11\x3b\xef\xa0\xb4\x26\x0b\xec\xb5\xfc\x66\xe1\xd4\x0a\x54\xdd\xe8\x5a\xe8\xd2\x1a\x8e\x6c\xcd\xfb\xad\xd7\x55\xf9\x09\x5d\x09\xe0\xad\x8b\xd6\x1c\xfe\x08\x14\xdc\x7a\xed\x1d\xb8\x99\xf8\x5c\x95\x9b\x5d\x4a\xa7\xaf\xba\x30\x97\xcf\x1b\x5e\x72\x82\xdd\x8b\x40\x26\xa3\x15\x37\x80\x2c\xca\x5f\x72\x5a\xbf\x7f\x1e\xcb\x43\x4d\x67\x72\x30\x27\x2f\x13\x48\xbd\x90\x7c\x3e\xa8\x85\xe8\x50\x1e\xe4\xa5\xea\xb8\x74\x2e\xe6\x20\xcc\x56\xe7\xc9\xc8\xfb\xa6\x1f\xb5\xe5\x19\x42\x4b\xb2\x32\x6c\x91\x4b\xeb\xa5\xd8\x53\x1a\xc8\x45\xe0\xe2\x05\x32\x13\x9e\x67\x6a\x5f\x32\xa9\xcf\x83\x70\x0d\x33\x90\x5a\x6b\x4e\x54\x1d\xe8\xb0\xf2\x73\xde\x2b\xe2\x5c\x8b\x87\x4d\x0d\x3f\x89\xfc\x2d\xee\x7e\xce\xe8\xfb\xf7\x84\x89\x07\xea\xa7\x68\x71\x79\x09\x2d\x2e\x2f\x33\x84\x37\x65\xbb\x90\xe6\x7e\xc0\xe6\xaa\xf8\xea\xff\xfe\xd7\x57\x67\xe2\xa8\xfe\xd7\x57\xb9\x13\xcb\xe5\x07\x03\xfe\xd7\x57\xf9\xec\x7f\xa3\xaf\xf0\xb5\x6d\xfe\x15\xbe\x2a\xb2\x77\x65\x4b\x9c\x2a\x29\x1f\x2d\x46\xd8\xd2\xb7\x9a\xfd\xf8\x9e\x91\x16\x0a\xd0\xa2\xe9\xd4\xaf\xa6\x1f\xad\x2b\x66\xcb\xe8\x87\xbc\x31\x59\xb2\x15\xc2\xb4\x98\x3f\xa4\x36\x43\x22\xd5\xe2\x68\x53\x64\xaa\x0a\xc0\xf8\xdc\xd6\x71\x28\x8b\xec\x2b\x49\x8f\xcc\x12\xbf\xca\x4e\xd8\x88\x15\x45\x71\x05\x9a\x69\xf3\x95\x8e\xdf\xb6\x1f\x09\xc0\x4a\x76\xf8\x4e\x16\x6f\x6a\x74\x61\xa6\x7a\x49\x57\x58\xf2\x36\x8b\xbb\xeb\x06\x32\xaa\x2f\xca\xae\x53\x81\x08\x06\x30\xb7\x5e\xad\xa2\x01\xc0\x90\x28\xcf\x0f\x62\x86\x1c\x46\x34\x91\xbf\x66\x6a\x3c\x9b\x86\xc7\x7f\x3e\xbb\x82\x0a\x57\x15\x1a\xb1\x33\x56\xb0\xe5\xef\x57\x0b\x48\xca\xd3\x6b\xd7\x92\x92\xad\x37\xf9\xb5\x54\xc7\x5c\x21\xec\x98\x8a\xd9\x0a\x12\x56\x89\x1f\x4a\xbe\x9c\xc9\xa5\xef\xf7\x64\x06\xc0\x40\x6a\xad\x20\x42\x27\x49\x6f\x83\xef\x2e\x18\x79\x4f\x5b\x4e\xd8\xb7\x50\xe1\x97\x85\x1e\x06\x92\x78\xe8\x46\xa4\xd2\xcd\x8a\xbb\x77\x44\xb0\xa5\xba\x1a\x2c\xc1\xf2\xef\x1f\xe1\x2f\xde\x75\x58\x6a\xca\xbf\xb1\x25\x1c\x80\x39\x4f\x53\x32\xad\x9e\x97\x25\xa2\xc5\x5d\x0a\x1d\xf8\xba\xdc\x94\x61\x38\x3a\x98\x63\x28\x06\x9b\x3c\x41\xfb\x3d\x54\xc4\xcb\x09\xd6\xb9\x3e\x21\x0e\x51\x46\xb2\x74\x58\x15\x33\x6b\xc3\x5b\xe7\xaa\xbc\xfe\xe6\xd6\x52\x06\x9c\xa9\x86\x19\xc2\xea\xd9\xe1\x75\x99\x01\x3b\x84\x77\xf5\x87\xba\xb1\xf7\x68\x2a\x31\xa0\x01\x40\x2e\x13\x73\x2a\x3f\x15\xe9\xde\x63\x88\x2b\xa4\xe5\xba\xe6\xb7\xe1\xa4\xeb\x86\xe7\x99\x6c\x0c\xb4\xac\xac\x5e\xd5\xdb\xdb\x1c\xe1\xb2\x8a\x8b\xe0\x21\x4c\x55\xbf\x99\x4a\x5d\x7a\x51\x56\xca\x1f\x92\x19\x2f\xa4\x48\x63\x9d\x42\xb7\x8f\x32\xe9\x37\x33\x0f\x97\x72\xa8\xc0\xd9\x9b\xa4\x02\xca\xc5\x25\xad\xab\x57\x4c\x7a\x85\xab\x4a\x6b\xad\x53\x9f\xa2\xac\x2a\x49\xc7\xda\x5c\x3f\x72\xe1\x18\x7b\x5f\x37\x9c\x5e\xde\xea\xdd\x78\xbc\x29\xeb\xf7\x44\xd5\x31\x8d\x8c\x95\xcc\x28\xdb\x1b\x0b\xf7\xa9\x24\xff\xe4\xd4\xb2\x6c\x06\x11\x42\xb7\xb9\x41\x3e\x5c\xa2\x91\xcc\x16\xbb\xdf\xdf\x19\x0a\x0a\x75\x3f\x65\xfd\xb9\xb2\xeb\xa5\x91\xf5\x50\x2d\xb9\x87\xfb\x7d\xae\xb7\x4a\x57\x73\xf9\x12\xfb\xfd\xa3\xdc\x6d\x01\xe8\xc8\xec\xe8\x65\x9e\xc6\x32\xef\x9c\x30\x22\xf6\x53\x80\xc6\xa9\x11\x64\xd4\x37\x11\x16\x42\xd0\x00\x07\x09\x8e\x24\x26\x33\x69\xea\x32\xb5\x6d\x12\x68\x33\xf0\xd2\x1c\xc7\xae\xc3\xeb\x2d\x29\x99\x6b\x01\x39\xbc\x1b\xf0\x49\xae\xeb\xb0\xfc\x32\x80\xf7\x86\xb7\x59\x4e\x46\x47\x41\xfe\x48\xa0\x61\x26\x98\x8e\x58\x35\x7c\xe0\x93\x6d\x71\x7e\xcc\x67\x7a\x7d\xb1\xb2\xfc\xe8\x8e\xc4\x61\x0a\xdf\xf6\x2e\x38\x53\x5e\x4d\x76\x3a\x5b\x97\xdb\xad\xb4\xf7\xc9\x5c\xc3\x49\xae\xd0\xa3\x15\xaa\xc4\xe2\xdc\x63\x5f\xdf\xa5\xf4\x4a\x5e\x7a\x01\x01\xa4\x0b\xaf\x62\xda\xc4\xaf\x12\x77\x26\xff\x8b\x4c\x24\xbb\xb8\xc8\x4e\xc8\xc9\x8b\x92\x6f\x66\x97\xdb\xa6\x61\x39\xfc\x64\x65\x5d\x35\x57\x39\xfa\xdf\x4f\x4a\x2e\x60\x71\x93\x23\x74\x22\xda\x76\x28\xcf\x9e\x3c\xfd\xe6\x87\x3f\x3d\xe0\xed\x83\x77\xa2\x59\xe6\x4c\xf7\x26\x24\x53\xf3\x87\xec\x11\x8f\x24\x48\x11\xdc\xc4\xa8\x9e\x59\x2b\x5d\xe1\xfe\xb1\xdf\x4f\x4e\x41\x0f\x2e\xab\x8e\xc2\xfb\xc9\x1c\x67\x20\xfb\x66\x14\xcc\xea\x79\x3d\xbb\x61\x94\xab\x77\x69\x03\x21\xf8\x19\xe2\x1a\x75\x96\x15\x7b\x6a\x8a\x74\x19\xc3\x6b\xf1\x2e\x67\xca\x2d\x4b\xb0\x35\xd2\x59\xcd\xf1\x0a\x22\xca\x2b\x28\x67\x85\xa7\xde\xcc\x19\x42\x98\xc1\x06\xfc\x5c\x38\x08\x6e\xc6\x12\xfb\x23\xf9\x1a\xb0\xb0\x48\x87\xa0\xe5\xc5\x4a\x89\xec\xea\x78\x81\x23\x76\xa6\x04\x83\x8b\x0b\x95\x34\xfb\x2f\xe4\xb6\xff\xf0\x79\x7b\xde\xde\xd6\x6b\x01\x0f\xf5\x62\x53\xb6\x8f\xcb\xed\x7a\x07\x5e\xa2\xcf\x65\xab\x62\x72\x8a\x95\xca\x93\x91\x9a\x1b\x7d\xa5\x37\x6c\xf8\x8e\x84\x4f\x3a\xa9\x69\x96\x1e\x92\xc4\xe2\xb9\x95\xd0\xdc\xa9\xc6\x34\x41\x93\xd3\xa2\x28\x06\xe6\xa9\xa9\xc8\x5a\xbf\x50\xcf\xdd\x1a\x50\xce\x18\x1d\xb6\x43\x6a\x40\x7c\xe9\x61\xd5\x38\x30\x74\xd8\x3e\x5a\x0b\xac\x1e\x0d\x6e\x8c\x4a\xe8\x86\x1b\x5c\xe2\x16\xef\x54\x9a\x85\xc2\xe0\x08\xce\x1b\xeb\x1e\xae\x0a\x19\x42\xde\x62\x35\x9f\xfd\x3e\xdf\x15\xdc\x4d\xac\xae\x75\xa4\x58\x08\x8f\xbb\xb3\x9c\x15\x3b\x99\x4c\xbd\x56\xdb\x5d\x14\x45\xde\x16\x79\x59\xec\x90\xee\x78\x3a\xb5\x1a\xd7\x52\xac\x0f\xed\xf7\x2d\xd4\x28\x93\xfa\xbd\x62\x72\x1a\x81\x7f\xc1\x12\xd8\x58\x77\x98\x17\x04\xe7\xac\x58\x82\x67\x76\xf6\x81\xdc\x66\xa9\xc4\x7d\x7a\xa5\x62\xce\x5d\x87\xd5\x07\xb4\xae\x8e\xf8\x82\xd6\x95\xf9\x04\xb2\x24\x0e\x7d\x02\xe7\xea\xcc\xfe\x5c\xe4\xce\x71\x7b\x9a\x9b\x6e\x91\x73\x0c\x91\xe9\x5e\x81\xe7\xf0\xa4\x54\x43\xf3\xa1\x80\xfd\xe1\xaf\x6a\xa8\x92\xb0\x42\xd3\xe9\x4d\xce\xed\xd9\xc2\x0c\xe1\x1a\x9e\xe1\x1a\x61\xd2\xe5\x52\xab\xfc\xa6\x48\x33\xfd\xf2\x36\x55\xb2\xcc\xa8\x97\x91\x52\x5e\x99\x71\xef\xe1\xa4\xad\x5f\xe7\xfa\x05\xc7\xb0\x1c\xea\xee\xa8\xb4\xc2\xcb\x15\xc2\x44\xa6\x54\x46\xce\x8d\x4a\x3a\x8f\xef\x7f\x35\x30\x5f\x5f\xdd\x3e\x92\xd3\x37\x22\x8b\x97\xe6\x87\x94\xeb\xcd\x63\xd5\x85\x21\xea\x8e\xb7\xa7\xf2\xe8\x9a\xf9\x25\xd7\xc4\x5d\xff\x81\xdc\x16\x5c\x57\xa0\xcf\x19\x1a\x99\x2c\x7c\x6d\x5e\xc3\x72\x60\xee\x35\xc8\xae\xc1\xe4\xcf\x0f\x02\x5b\xdd\x36\x4a\xe3\x06\x29\x8b\x71\x98\x3e\xef\x1e\x0b\x01\x23\x55\x1d\xac\x02\xee\xb8\x0f\x70\xe8\x6a\xc0\x16\xf8\x11\x12\x6d\x8e\x89\x90\xd3\x23\x2c\x86\x40\x88\x9f\x05\x7b\x90\xd7\x48\xed\x10\xfe\x30\xb0\x32\x7d\x6b\x1b\x54\xc2\x7d\xc6\xcb\xc3\x22\x09\x04\x60\xbb\x5c\x6d\x0e\x17\xb2\xc8\xfc\x61\xfd\xc8\xc4\x04\xd6\xfa\xe2\xa7\xe2\xe2\x5f\xd6\xab\xd5\x48\x62\x13\x95\x6a\x41\xeb\x18\xec\xed\x83\xe5\x2b\xde\x3a\x06\x46\x12\x94\xad\x13\x5b\x19\x3e\x40\x6e\x6d\x49\x99\x01\xd7\x5e\xff\x8f\x9d\xce\xde\x82\x9c\x2e\xdb\x3b\x2b\xb3\x8d\x5f\x78\x3a\x56\xf1\xa9\x84\x86\xa3\x86\x7d\xad\x93\x76\xd1\x16\xaa\xe6\x9d\x89\xb5\xd5\x55\x9e\xbd\x23\xeb\xe6\x8a\xc0\xb3\x0c\x2d\xf4\x53\x5d\xfd\xfc\xa7\xb2\x7d\x4d\x5a\x22\xe0\x47\x66\x6e\xd0\x3e\x70\x96\x6d\x2e\xd9\xba\xef\x8b\x3b\x5a\x53\x4e\xcb\x2d\xa8\x52\x17\xd9\xae\x5e\x37\x57\xb2\x00\x77\x86\xd5\x88\x8b\xc9\x1c\x3b\xcf\x17\x77\x15\xad\xde\x10\x6e\x44\xfe\xd7\x78\xdb\x94\x15\xad\xdf\x0b\x70\xf8\xbe\x92\xe1\x6c\x02\x81\x13\x8e\xbf\x64\x7e\x2b\x27\xe2\x50\x91\x03\xb1\x1c\xd6\x6c\xb7\xa4\xfa\xa6\x5c\x7f\xc8\x90\xb4\xbc\x93\xca\x1f\x86\x0c\x77\x03\x96\x1f\x2a\x5a\xbe\x6d\xf2\x4c\x4c\x94\x54\xb3\xb6\xfc\x48\x2a\x28\xfa\x6d\x61\xe8\x4f\xfc\x86\x6e\xb7\x8f\x61\xc5\xc1\x48\x7e\x7f\xb4\x7e\xb6\xa5\xef\x37\x5c\xf4\x25\x55\xac\x11\xb7\x21\x4b\xf3\x94\x7e\x1c\xd7\x85\x49\x72\x3e\x62\x39\xd1\x39\x2d\xdd\x1e\xa0\xea\xac\xe8\xd5\x00\x60\x70\x22\xfe\xc2\xb0\x78\x0d\xda\xd9\xef\x4a\x4e\x58\x08\x46\x5f\xdd\x35\xbc\x3e\x68\x93\xa9\x89\xbc\xeb\x4f\x43\x3f\x76\xe1\xde\x1f\x9e\x94\xd5\x2d\x88\x8a\x1a\x60\x8b\x3b\xda\xbe\x29\x3f\xd2\xfa\xbd\xc0\xae\x1e\x42\x25\xf7\x25\x86\x01\xe2\xf9\xae\x76\x80\xff\x2c\xba\x7d\xa2\x59\x45\xab\x23\x76\xd5\x42\x51\x22\x21\xad\x3f\x36\x1f\xc8\x77\xf4\x92\xac\x6f\xd7\x5b\xf2\xb8\x94\x4b\x6e\x15\xf3\x5c\x89\x69\xbe\x95\xb9\x00\x07\xb6\xeb\xb3\xee\xc7\xe1\xb9\x99\x7e\xc1\x9f\x78\xb0\x57\xf7\xd0\xf7\x37\xcf\xe9\x25\xc3\x44\x6e\xa2\x9c\xe9\x1d\x6d\xa5\x8e\x74\x72\x8a\xdd\x54\x23\x83\x83\xc9\x86\xd5\xcc\x1b\xb4\x0b\x51\x20\xa4\x13\xaa\x72\x90\x98\x84\x52\x5e\x3d\x63\xcd\x95\xf5\x33\xe6\x70\x85\x21\x2c\xa9\xa5\x2c\xd7\x2a\x1d\xa9\x73\x1d\xc2\xe2\xea\x0d\x48\x1a\xea\x02\x4d\xee\x8d\x7e\x49\x72\x01\x22\xbb\x3b\x6d\x7d\x3c\x92\x54\x24\x85\x40\x47\xf5\x74\x88\x0c\xa8\x73\xe8\x29\xb8\x8f\xc6\x0c\xd8\xf8\x28\xb2\x0d\xe2\xba\x07\x67\x89\x41\x4e\x6d\xf4\xbf\x05\x32\xbd\xf4\x8e\x22\xda\x38\x60\x33\xd1\x9a\x2f\x9e\x38\x4c\xc8\xdf\x72\x47\x14\x76\x42\xc9\xee\xac\xbf\x15\x95\x3d\xb2\x82\x2f\xe9\x0a\xd7\x4b\xba\x2a\x58\xc4\x6d\x9e\x9d\x09\x69\x7b\x61\x64\xf6\xba\xcb\xbf\x47\x58\x69\x3f\x5e\x16\x4f\xf2\x3b\x73\xcc\x17\xca\x58\x06\x37\xe4\x4b\x72\x23\xa3\x19\x5e\xce\xd4\xb1\x98\xd9\x2d\x2c\x8e\x39\x08\xc7\xd1\xec\x97\xee\x81\xf9\x22\x43\x00\x37\xfb\x3c\x58\xa9\xe4\x1c\xaa\xcc\xd5\x1a\x7d\x77\xdc\x50\x07\xe9\x93\xe9\xf0\x99\xe8\xb0\xf3\x57\xe8\xd2\x93\xe2\x3b\x6c\xa1\xdb\x7b\x11\xc2\xe5\x5d\x08\x95\xef\xa3\x4d\xe2\x6e\x36\xbd\x13\x15\xac\x2b\xdc\x08\x4b\x10\x06\x37\x42\x9d\x4b\x05\xcd\xd9\x30\xc1\xad\x68\xf5\x5d\x53\xc6\x06\x0b\xb8\xa9\xc2\xa3\x41\xcf\x0d\x88\x9c\xd3\x7d\xcc\xac\xcc\xd2\x44\x0f\x92\x12\xcd\xdc\xfb\xb4\x78\x86\x9f\xa7\xf7\xe6\x13\x68\xfd\xf3\xc3\x47\xe5\xb3\x50\xbb\x1e\x76\xff\xa3\x70\xc9\x85\x74\xde\x73\xe9\x44\xce\x8b\xbf\xe5\xec\xcc\x17\xbf\x18\x5a\xdc\x75\x98\x23\xa4\x84\x23\xe0\x94\x0b\x86\xf9\xac\x15\xbf\x40\x4c\xaa\x31\x47\x3c\x74\x29\xa1\x68\x3a\xcd\x9c\x6f\xb2\x49\x51\xd0\xe9\x34\x33\x9f\xe9\x07\x21\x2d\xe2\x32\xab\xb5\x2c\x27\x09\xff\x61\x8e\xeb\x93\x6c\x96\x9d\x50\x64\x25\xd8\x2e\xbf\xd3\xf6\xb2\xc9\x29\xa6\xed\x77\x92\x0b\xb7\x7f\x90\x4a\xfe\x56\x5c\xbc\xf8\xa9\x79\x2e\x78\x2c\x77\x47\xfe\x01\x74\x4c\xfc\x50\x37\xfa\x3c\x7a\x13\xf5\x58\x2d\x77\xd7\x86\xd8\x7d\x08\x9c\x82\xa9\xda\x39\xcf\xe3\x72\x83\xba\xf1\x2f\xae\x1d\x37\x17\xa8\xbb\xd1\xdf\x7c\x5a\xbf\x17\xf8\x24\xf1\x20\x22\x16\x44\xd1\x45\x11\xef\x03\x87\xd0\x5c\x95\x49\x99\xe3\x5e\xb8\x68\xce\xf4\x00\x6f\xac\x56\x24\x20\x64\xb6\x72\x8e\xc9\xcf\x3d\xa6\xc2\x07\x8d\x2c\xd8\xf2\x2b\x4d\x13\x93\x99\xe0\xa1\xb7\xa4\xac\xe1\x74\xe6\x07\xd8\xcc\x21\x46\x12\xd7\x0d\x7f\xd6\xec\xea\x61\x16\x84\x48\x5b\x4d\xa7\xb7\x79\x11\x48\xac\x72\x29\x0e\xc6\x27\xd0\x4a\x60\x20\xb4\x5d\xdc\xb5\x84\xef\xae\x8f\x92\x20\xa7\x53\x32\x53\x0e\x66\x4f\x68\x05\xe7\x28\xef\x33\xab\xaf\x93\x7c\x61\x94\x91\x8c\xf1\x59\xb1\x8b\xe1\x68\x29\x54\x7f\xfd\xe5\xa5\xd1\x5f\xca\xe5\x0f\xd0\x8e\x88\x68\x26\x1e\xf7\x71\x04\xdd\x75\xda\x7d\xa9\x5a\xbc\xc4\x6a\xf1\x8b\xe7\x7a\x76\x3d\x0c\xf1\x74\x1a\x0e\x6f\xa3\x9a\x67\x2e\x29\x9c\x7b\x88\xe4\x28\x40\x62\x38\x13\x55\xab\xf8\xaa\x92\x4f\xd1\x23\x7c\x06\x41\xfb\x7e\x08\x09\xe0\x8f\xee\xac\x78\xf3\x99\x34\x10\x86\x7e\x0c\x5c\xd2\x29\xfd\xc0\x3f\x47\xba\xff\x62\x12\xf4\x27\x0a\xfc\x07\xc5\x2a\x4d\xdf\x9c\x1b\x3f\x86\xb6\x52\x96\x16\xf2\xb3\xb2\x1a\xf9\x29\xbc\x3e\x55\xce\xab\x68\x25\x8f\x91\x98\x4c\xec\x66\x91\x7b\x23\x21\x70\x8f\x2d\x1c\x90\xbb\x13\xaa\x88\xff\x11\xaa\x84\xf4\x81\x4b\xc1\xe6\xb7\xac\x1a\xe8\x8e\x42\x1a\xf0\xa1\xd7\xc2\x33\x94\xd8\x8b\xa1\x09\xbc\x17\x68\xb2\x88\xbc\x95\xc9\x26\x8f\x40\xb1\x0e\x4a\x3d\xe2\x8c\x35\x0d\x77\x9d\x08\xbe\xfd\x2d\x3b\x11\x88\x91\xbf\x49\x59\xfa\xe1\xee\xd6\x16\x57\x48\x2f\x58\xdc\x75\xc6\x8c\xea\xd4\x4c\x80\x85\x07\xae\xd2\xde\x19\x8f\x1b\x98\xfc\x0f\x9e\x57\x43\xcd\x36\x3a\xfb\xeb\x71\xbd\xaa\xe6\xc3\x7d\x7a\x66\x96\x82\xc8\x93\xf7\x5a\x25\xa2\x57\x7e\x7b\x66\x91\xf2\x1b\x5a\x15\xb2\x3e\xbc\x74\x97\x03\x46\x4d\xd6\xf4\x85\xca\x11\xde\x03\xf5\x85\xb4\xd2\x15\x26\xd5\x0c\xf6\xcd\x6a\x85\x9b\x1c\x51\x99\xf1\x43\xbe\xb0\x20\xb3\xde\x33\x65\x50\x19\x74\x67\x10\xb3\x2f\x42\xb7\x5b\x50\x4f\x05\x8b\x43\x9e\x99\xd9\x29\x2d\x41\x56\x23\xbe\x61\xcd\x0d\x58\xdf\x54\x54\x02\xb0\xe1\x19\x00\x6d\xfc\xaf\xd9\x89\x72\xfa\xad\xdb\x6b\xb2\x96\x76\x35\x95\xc1\x1f\x9d\x64\xff\x3a\xde\x94\xed\xb8\x6e\xc6\xa6\xcb\xb1\xa0\x75\x95\xf8\x8e\x88\xd7\xca\xc1\x67\x06\xca\x3e\xb7\x0c\x47\xca\x09\x54\xa6\x8b\xcf\xef\x54\xce\x47\x77\x0d\xa2\x87\x3e\xe8\xa2\x16\xc1\xb8\xbd\xd3\xb3\xfa\xc5\x77\x02\x4a\x25\x01\x03\xab\xcf\xef\xa3\xda\x9e\x61\x2a\xcf\x30\x11\x72\x74\xa2\x83\x25\x5d\xa9\x82\xa0\x8e\x95\x10\x53\x1b\xdf\x16\xf7\xc1\xc0\xb4\x90\xe9\x8a\x2a\x93\x0a\xc6\xc3\x5e\xc9\x43\x43\xc2\x9c\xe9\xd4\xd9\x62\xf7\x74\xf9\x9b\xec\xbe\x11\xdb\x4c\x2f\xf3\x49\xe2\x5b\xef\xd0\x25\x7a\xf1\xda\x88\xfe\x54\xcc\xba\x6f\x89\x7c\x41\x78\x69\x5c\x3c\x2c\xda\x03\xfd\x90\x7e\xba\x93\x72\xbf\x77\x12\xd2\x4c\x8a\x42\x7a\x49\xa0\xcf\x82\x86\xa6\xe3\xb1\x3b\xab\x24\x4e\xaa\x00\xb8\x17\x52\x69\x27\x6d\xa5\x82\x27\xc8\x11\xde\x15\xed\x74\x2a\xe3\x80\xad\xd7\xd5\x6e\x3a\x6d\x82\x8d\x81\xe4\x08\xd2\x3d\x1d\x42\xe5\x9d\x50\x3e\xf9\xb5\x2c\x34\x3c\x9d\x4e\xd8\xcc\x88\x05\x39\x3a\xa3\x67\x5e\xad\x67\xc1\x91\x2d\x98\x42\xd8\x37\x75\x79\xdd\x6e\x1a\xae\x6a\xb9\x22\x4c\xcf\xa2\x7b\x5a\xd4\x8b\x03\xbb\x54\xd4\xb8\x16\xd8\xa7\xc8\x65\x1c\xf7\x34\xe6\x81\x73\x63\xed\xa1\x88\x25\xb3\x3e\x5a\xd8\xe7\x1a\xb5\xa2\xdf\x0d\x20\x56\xac\x85\x46\x2b\x9a\x3e\x01\xb8\x29\xe8\xbd\x51\xae\xd9\xef\x8d\x73\xdc\x44\x97\x54\xff\x3c\x08\xa7\xba\xbd\x07\xba\x95\x31\x74\x1b\x99\xa0\x28\x85\x32\xac\x58\xae\xb0\xfc\x6b\x20\x02\x9f\x0e\x20\x23\x41\x23\xee\x62\xdc\x7e\x9f\xd7\x67\x4c\x87\x44\xd0\x4a\xa0\x9b\x74\x87\xe9\x61\x1d\x92\xc9\x6a\xce\x22\x7b\x5d\xb0\xc5\xe0\xfe\x15\x0c\x33\x81\x70\x5e\x62\x9f\x00\xed\x1c\x50\x06\x09\x80\x64\xfe\x54\xda\xcb\xd0\x73\xa0\x83\x48\x0e\x56\x6a\x23\xa2\x63\xbe\x26\x6e\x0f\xd1\xa2\x8d\x1e\x32\xb9\xc9\xc8\xd4\xd6\x85\xfe\x63\xb2\xaf\x61\xef\x2e\x1f\x9d\xdf\x13\xae\x54\x21\xd6\x85\xcb\xb9\xed\x7a\x5d\x7d\x74\x2a\x2d\x3a\xed\x9c\x8a\x4c\x24\x70\xfc\x16\x9d\x8f\x22\x9f\xc4\x6f\xc7\x54\x2e\x26\x27\x73\xc1\x92\xad\x5c\x0f\x1b\xcc\x50\xe7\x5c\x72\xc7\xbb\xb9\xf9\x80\x00\x30\x3f\xde\x96\x6d\x2b\xdd\xcb\xbe\x8d\xb8\x97\x7d\x1b\xb8\x97\xfd\x50\xf4\x0e\x03\x66\x96\x25\x77\x46\x4c\x64\x67\x97\x72\x57\x67\x28\x3b\xc1\x39\x2f\x6a\x64\x07\x0e\x80\xc4\xec\x1b\x08\xad\xb2\x2e\xd4\x4d\xdd\x72\xb6\x5b\xf3\x86\x15\x1c\xf3\xd9\xc5\x05\xbc\xbb\xb8\x00\xef\x27\xf9\x75\x84\xd9\x11\x64\x47\xc6\xcd\xd5\x4e\x67\x65\x55\xfd\x44\xf9\xe6\x79\x5d\x91\x9f\x63\xb4\x5a\x43\x7f\x47\x2b\x13\x45\x21\x5d\x63\x21\x20\x6b\x4d\xde\x10\xae\x03\xf0\xb7\xb4\x85\x2a\xa9\x13\x99\x99\x8a\xad\x4c\xba\x67\xb1\x8d\x93\x39\x96\x58\xc3\xcf\xa8\x4e\xc3\xb1\xa0\xb3\xf6\x1a\x58\x17\x8e\xe7\x58\x3b\xeb\xb7\xf4\x1f\xe4\xa4\x38\x55\x51\x7e\x75\x97\x33\x47\xf6\xf9\x49\x80\xdf\xd6\x9f\x34\xf0\x55\xdc\x13\x66\x4e\x3c\x07\xff\xfa\xf4\x8c\x3f\x38\x5d\xcc\xc5\xac\x4f\x1f\xd6\x8f\x38\x38\x5a\xb1\x65\xfd\xe0\x74\x65\x3f\x5d\xd6\xc6\x46\xdb\x07\x9b\xde\x4d\xe5\x16\xcc\x5c\x37\xe9\xbf\xbb\x80\x22\xb3\x4b\x5a\x97\xdb\xed\xad\xe7\xc8\x07\x54\x90\xcd\x2e\xda\xdd\xbb\x76\xcd\xe8\x3b\xc2\xf4\x4c\x8b\x39\xea\x9c\xbc\x56\xa6\xd3\x1f\x2d\xd1\x98\xf8\xc9\x51\x05\x69\x6d\x39\x6b\x6e\x85\xb8\x1a\x94\xca\x36\xef\xc0\x9e\xe0\x18\x26\xff\x1a\x24\x03\xf9\x7b\xee\x04\xbd\xda\x60\x57\x16\xc6\x8b\xba\xa9\xbc\x10\xee\xc3\xe5\xc7\xdc\x0f\xb5\xfd\x53\x28\x93\xea\xa2\xf6\x0e\x6b\x8b\x69\x01\xbe\xf3\x57\x54\x3a\xf4\x61\x93\x58\x7a\xfe\xb0\x7c\x44\x1f\x96\x27\x27\x48\xc8\x13\xcb\x72\x65\x72\x46\x37\x45\x39\x7a\xc7\x48\xf9\xa1\xd3\x6e\xbe\xd3\xa9\x4e\xd5\xda\x14\x54\x33\x54\x73\xbc\x2b\xe6\x4e\x1e\x9b\xc6\x4e\x65\x5b\xd0\x07\x0d\x5e\x17\xa7\x0f\xd7\x8f\x0a\x0a\x39\x79\x60\x10\xf6\x60\x2d\x87\xa9\x1f\xac\x57\xe8\x6e\x5b\xac\x1f\x9c\xaa\xa1\xda\xa2\x7e\xb0\x7d\xd0\xe0\x5d\xc1\xc4\xff\x3a\xb3\xf7\x25\x65\x2d\x97\x2a\x76\x38\x30\x8b\x06\x97\x55\x45\xaa\xc7\xcd\xae\xe6\x8b\x56\x05\xf5\xa8\x3f\x77\x52\x14\xfe\x4b\x34\x89\x80\x7c\xf6\x62\x07\x82\xb5\xaa\xb5\x8c\xef\x02\x9f\xe1\x9e\x15\xac\xf6\xd5\x29\xfc\x50\xc2\x05\x25\x2e\xaa\x2e\x0a\xef\x2f\x10\xfe\xe5\xb1\x55\xe8\xa8\x5c\xde\xa5\x5d\xc6\x11\xc0\xc1\x2d\xdf\xfc\x92\xbe\x82\xba\x67\x27\xe3\x44\xd1\x7f\x64\xc7\x58\xef\x98\xb5\x3b\x2e\x57\xf2\xe1\xe5\x76\xd7\x6e\x1e\x97\x75\x53\xd3\x75\x29\xe3\x41\x66\xae\xda\x5b\x16\x88\x28\xeb\xdb\x1f\x6a\x65\x37\xe9\xa1\xa1\x4a\xf9\xea\x76\x3f\x58\x13\xee\x42\x9c\x93\xab\x92\xab\xcb\x95\xd6\xef\xf7\xfb\x09\x31\x40\xc9\x51\x87\x96\xf3\x95\x0e\xcf\xd2\xe3\x7a\xc1\xd7\x8b\xa8\xf8\x37\x7f\x48\x1e\xf5\xa7\xa2\x24\xba\x93\x13\xff\xa2\x74\xdb\x28\x6e\x96\xc7\xa7\xc6\x9d\xa9\x79\xdc\x6c\x29\x70\xe6\xb1\x8c\xa0\xfa\x89\x6e\xb7\x3a\xde\x09\x9f\xe2\x39\xea\xc3\x5c\x93\x59\x82\xb5\xd3\x3a\xc4\x5b\xab\x00\xa8\x48\x7b\x1d\x08\xd7\x1b\xec\x09\xad\xfc\xb1\x26\xf3\x4e\x87\x14\x74\x58\x9a\x81\xcf\x79\x2a\x86\x32\xb2\x72\x9b\x0f\xda\x2c\xd0\xe3\x54\xb0\x8f\x26\x81\x2a\xce\x74\x60\xf4\x49\x93\x39\xc2\x3f\xca\xe0\x22\x4d\x9a\xff\x94\xf7\x06\x17\x8c\xba\x22\x15\x6c\x16\x9e\x6b\x5d\xf6\x22\x01\xe4\xfe\x07\x98\xcd\xdc\xb3\x8f\xd9\xcc\xd2\x85\x18\xbc\x03\xf8\x7a\xa7\x83\x68\x61\x7e\x08\xf6\xf7\x9e\xc2\x74\xea\x3e\xf8\x7a\xae\x93\x82\xf9\x7c\x51\x59\xdf\xaa\xfa\x2e\x60\x0f\x12\xed\x25\x24\x20\x14\xff\x03\xb9\xcd\x04\xa7\x2e\x8e\xc7\xf5\xb6\x5c\x27\xb2\xf2\x8c\xa0\xfb\xbc\xee\xef\xb8\x5a\x19\xc1\xe4\x44\x83\x05\x3a\xb6\x9e\xc8\x10\x1a\xab\x55\xfb\x3a\x11\x6b\x30\x03\x5c\xcf\xae\xca\xeb\xd8\xf9\x7e\x0b\x99\xbd\x10\x84\xc4\x26\x7a\x2f\xab\x0a\xb2\x87\x46\x3b\x66\xc3\x1d\x1b\x06\x85\x11\xce\x28\xf9\x48\xbe\x2b\x39\x69\x79\x0e\xa6\x4a\xf7\x49\x82\x89\xee\xcf\xe6\x3d\xe1\x89\xb9\x18\x67\x79\x65\xc9\xb4\x2d\xbf\xb9\xfd\x73\xdb\xd4\xe7\xd7\xd4\x95\xbb\x08\xd0\x66\x93\x26\x97\xe7\x19\xe4\xe2\xc0\xc4\x8d\xde\x08\xe9\xad\xac\xec\x73\x20\x2f\x03\x4c\x49\xe6\xad\xd4\x29\x18\x5e\x68\x34\x91\xf7\x8d\x6d\xe6\x61\x53\xe6\xee\xb0\x84\x2f\x64\x78\x2a\x3f\x26\xca\xb9\x63\x5e\x64\x4f\xde\x2c\xc6\xa6\xfb\x7f\x11\x6d\xc7\x5a\x2c\xb6\x2e\xf6\xc0\xee\x23\xac\x79\x53\xe0\x64\x74\x40\xe1\x4c\xaa\xf0\xa5\x89\x4c\x4c\x21\x99\x07\x83\x68\xed\x7a\x64\x4c\xd5\xc4\x3c\xcd\x1c\x71\x39\xcc\x21\xc2\x3a\x14\xa6\xa2\xe8\xd1\xbe\x70\x05\x0a\x9e\xb8\x1f\xe5\xad\xd6\x26\x78\x26\xb7\xcf\x9c\x39\x8a\x06\xe2\x47\x80\x08\x5e\x5a\x72\x17\x79\x8d\x70\xed\x45\x47\xfe\xce\xbd\xfd\xa6\x53\xa2\x0b\x2d\xa8\x1f\x33\x55\x39\x01\x38\x95\x7f\x1f\x52\xda\x5b\x5c\x54\x11\x7a\x3e\xe9\x28\x38\x76\x44\x40\xf0\x25\x73\xe3\xe8\x9c\xc7\x6f\x55\xdc\xa7\x04\x4c\x44\xc7\xcc\x67\x17\x3a\x15\x96\xef\x1c\xc6\x81\x34\x70\xf2\x56\xc8\x4a\xfd\xfd\xfc\x9d\x09\x92\x56\xc7\x02\xa1\xb3\x4c\xac\x32\x83\xea\x9e\x9d\x2a\x2d\x54\xf4\x70\x4f\xf2\x33\x45\xf8\xf5\xc8\xf6\x0b\xc9\x2e\x15\xe4\x72\xa2\x4b\x51\x68\xe0\x41\x66\x7e\x99\xfc\xe6\xde\x9d\x83\x1e\x4c\x1e\xdd\xbe\x0b\x95\x7a\x01\x23\xca\x63\x4c\x3a\x29\x90\x9a\xdd\xf9\x8f\xdf\xba\x25\xe8\x3f\x0f\x8b\xcd\x46\x98\xc3\xac\x2f\xce\xd5\x6e\x45\x2d\x9d\xd0\x84\x41\x26\x13\xf0\x83\xb5\x42\x1c\x5d\xd9\x6c\x35\x04\x22\x8c\x15\x53\x4c\x30\xe4\xb6\x5b\x89\xe5\xad\x4b\x71\x48\x94\x2c\x8e\x54\x79\x9f\xf0\x16\xb4\xb6\x93\xee\xcb\x88\xe9\x6e\x7c\x63\x51\xf7\x8f\x00\x18\x85\x92\xaa\x8c\xaa\xc3\xed\xe0\x51\xc8\x68\x45\x6a\x4e\xf9\x6d\x26\x5a\x0a\xf2\xd0\xdf\x04\x2f\x07\x77\x4c\x22\x0c\xe9\xa6\x73\x2d\xa8\x3b\xc9\xa4\xd2\x14\xa3\x00\xa6\xa4\xe6\xec\xc3\xd7\x58\xc4\xce\x22\x2f\x1d\xce\x6f\x21\xbd\xc2\xda\x99\xb8\x73\xdc\xae\xad\x94\xa7\x21\xe2\xb1\xc6\x72\x76\xb6\x52\xad\xa4\x0b\xa0\xda\x31\xed\x5d\x13\x94\x54\xc2\xfe\x50\x0b\xcc\x1e\xf3\x66\x7c\x49\xf8\x7a\x33\x96\x24\x6b\x2c\xce\xe1\xed\xb5\xb8\x85\x4c\x2f\x27\xd9\xf8\x86\xf2\x4d\xb3\xe3\xe3\xb2\x1e\xcb\xc8\x92\x56\x5d\x8d\x7d\x02\x00\x9f\x01\x74\xec\xa9\x27\x67\x44\x67\x33\x42\x52\xb9\x29\x7f\x77\x98\x16\x35\xce\x1b\xad\xe2\xbb\xa0\xc3\xfa\x3d\x1f\x74\xb4\x92\xda\xac\xff\xc8\xa9\xa3\xcd\x6a\x10\x2e\xe1\x19\x2e\xc5\xe5\x90\xff\xbb\x94\x98\xff\x7c\xe8\x5c\x9a\xc4\x63\x90\x2f\x48\x1f\xad\x46\x1d\x2d\x75\xf3\x63\x66\x8e\xd2\x07\x72\x5b\x50\xdc\xcc\xa2\x86\x81\xa2\xc6\x8d\x3c\x6c\x75\x3f\xad\xa1\x9c\xa6\xf2\x4c\x85\xbc\x87\xb2\x0a\xe3\x25\x61\xa4\x5e\xdb\x57\x9e\x14\x56\x30\xdc\x7c\xd1\xd3\x19\x3b\x97\x34\x38\x97\xc7\x93\x78\xa9\x63\x97\xff\xcb\xba\x66\x82\xee\xa8\xbf\x80\xae\xd3\xf8\xb5\xd7\xd7\x1e\x8b\x5b\x54\x1c\x13\x3f\xe9\x17\x04\xe4\x8b\x5e\x3e\xdf\x71\x0f\xe2\xff\xc9\x98\xd6\x2d\x2f\xeb\xb5\xb8\x9b\x5e\x91\x33\xb2\x08\x08\x01\xe6\xf1\xcd\x17\xfc\xa8\xe1\x3a\x5f\x9b\x35\xe4\x6f\x55\x6a\x00\x98\x76\x8f\x7e\x38\xa7\x27\xb2\xfd\xca\x34\x13\x81\xba\xae\xc2\x22\x60\x6b\x55\x73\x69\xa3\x85\x6a\x39\x92\x65\x0f\x58\x44\xde\x66\x9e\x38\xea\x54\xb0\x13\xf3\xf6\x0f\x7d\xc0\x3b\xc7\x26\x1e\xdd\x39\xe0\x8c\x69\x8f\x86\x44\x77\x2f\xd9\x73\x2c\x17\x9c\xea\x7c\x80\x96\x2b\xd2\x04\x75\xa1\x0c\x75\x20\xe4\x4b\x91\x87\x88\x11\xe7\xff\x19\xe2\x70\xcf\x03\xec\x49\x7e\xfa\xf8\xc6\xef\x75\xd7\x12\xd3\xa7\x30\x03\x8c\xbd\xc3\x01\xb7\x99\xe8\x9f\x56\xed\xe1\x8e\xb1\x9b\x9a\x8e\x68\x03\xa1\x60\xab\x80\x62\x25\x84\x64\x22\x6e\x20\x28\x84\xf8\xf9\xc9\x50\x41\x46\x3d\xfe\x18\x96\x6d\x8c\x97\x44\x9d\x63\x9d\x56\x37\x29\xc9\x07\x54\xcb\x51\xc2\xf3\x18\x76\xea\x40\x70\xa9\x6a\x69\x73\x28\x22\xd2\xe3\x59\xcc\x5e\x46\xbb\x80\xcd\x45\x32\x35\x87\x56\xc6\x46\x37\xc1\x14\xb2\xf2\xc5\xc2\x58\xa7\x90\x7c\xe5\xdc\x7f\x26\xb5\x0a\x4a\x0b\x10\x9b\xc8\x15\x24\x1d\x6d\x67\xbc\x91\x1c\x35\x9a\x91\x8f\x84\xdd\x46\xb4\xfe\x50\xc2\x8b\xa4\x49\xef\x20\x45\x05\x7a\x29\xff\x7a\x0e\xac\xe8\x25\x25\x2c\x47\xc8\xd3\xb3\x46\xa9\xbe\xcf\xe9\x9a\xd6\x09\x4e\xd1\x57\x44\x00\x98\x17\x47\x11\xe6\xf4\xfe\x1d\x24\xc8\xe9\x6e\x64\xe3\x68\x4f\x92\xb2\x1a\xf2\x09\x59\xab\xee\x9c\x9b\xa4\x28\xc8\x7e\x9f\x41\x1a\x9d\x33\x48\x3a\xdd\x2b\x03\x27\xee\xdb\xac\x85\x1c\x45\xde\xc3\x19\x6f\x64\xbe\xa3\x1c\x2d\xb2\xec\xc4\x89\x31\x64\xe4\xb7\x2e\x1b\xd6\xe4\x50\x42\x20\xeb\xd1\x66\x58\xf7\xb7\x8d\x24\xf1\x69\x1f\x3c\xf8\xaa\x35\x56\x86\x0b\x21\x3a\x43\x72\x7d\x40\x8d\x83\x1e\x6e\xef\xdd\xa0\x34\xd2\x13\xbe\xd4\xf8\x50\x45\x4f\xe3\xda\xa6\x6c\x23\x9f\xe8\x72\x74\xee\x37\xd2\x4d\x80\xc7\xbc\x0b\xbc\x76\x05\x10\xd1\xb2\xaa\xc2\x96\x5a\x35\xed\xb4\xe6\xab\x82\xf8\x6b\x37\xa2\x99\xba\x50\x3e\x86\xfe\x10\xba\xb2\x61\xaf\x27\xb7\xa6\xae\xee\x8c\xd6\x15\xf9\xf9\xd5\x65\x4e\xd0\x43\xc8\x8d\xa9\x95\xab\xfa\xbd\x32\x2d\x30\x7c\x2a\xfd\xe5\x9a\x9a\x97\xb4\x8e\x41\x04\x3e\x4f\xf4\x0d\x9f\x6e\x49\xc9\x52\xd7\x93\xfc\x62\x14\xec\xf1\xc8\x9a\x82\xe7\x0f\xf9\x23\x63\x72\xe1\x02\xbd\xc9\x92\xaf\xbc\x30\xc0\x1c\x75\x31\x9c\x08\x3c\x2b\xb4\x96\x7e\xc8\xa1\x40\xcd\x5f\x36\x35\x8e\x08\xf2\xe9\x31\x5f\xda\x4f\xd4\x4c\x0e\x7c\xa4\x5a\x99\xe4\x73\x66\x01\x91\x73\x80\xa4\x1c\xc8\x48\xc4\xad\x41\x3c\xd4\x7e\x0d\x98\xa6\x0e\xa0\x46\xc9\xab\xf2\x3a\x36\xc0\x90\xf2\x4e\x6b\xc2\x13\x97\x3f\xf4\xb9\x24\x86\xbb\x08\x8c\x37\x6e\x13\xd0\xfc\xd4\x44\x26\xfc\xed\x74\x42\xba\xb8\xf7\xa5\xf9\x2e\xf0\xb9\x24\xe0\x5d\xd9\xa3\x7b\x64\x29\x68\xde\x4a\xa7\xb8\xeb\xa4\x5a\x0d\x37\x32\xb1\xcb\x4f\xa4\xfc\xf0\xa2\xbc\xc6\x25\x29\x4e\x2d\xd1\x6e\x89\x53\xac\x8b\xa8\x24\xa5\x89\x65\x88\x5e\x76\x90\x7d\xb0\x21\x2a\xc3\x29\x47\x3a\x01\xec\xee\x10\xd9\xf3\xd4\xac\x17\x5a\x99\xf3\xa2\xbc\xf6\x53\xa2\xd5\xe4\x66\x7b\x2b\x3d\xcd\x2b\xff\x8d\xfb\x89\x98\x0a\x25\xb1\x4f\xe4\x9b\xa1\xbd\x94\xb5\xb8\x8a\xa8\x95\xa7\x50\xe6\x78\x2e\x2f\x2c\x4e\x64\x32\x4d\x29\x9d\x10\xf2\x01\xaa\xb5\xd7\x98\x19\x10\xd1\xb3\x1c\x28\xe5\x9b\xf5\x86\x54\xbb\x2d\xa9\x94\xc3\x42\x8e\xa6\x53\x3a\x5b\x0b\xc1\x72\x6b\x1e\x61\xaa\x14\x23\xef\x76\x74\x2b\x7b\x02\x31\x9b\x21\x81\x08\xb2\xff\x81\x79\x19\xa9\xd5\xda\xa1\xbc\xb5\x03\xb9\xd3\x69\x05\x65\xa2\x26\x84\x27\xf5\x74\xca\xed\x07\x70\x4e\x5f\x94\xd7\x4e\x2b\x2e\x0b\xaa\x01\x83\xf3\xcd\xed\xeb\x1e\xb7\x6f\xf0\xc3\x9d\x03\x99\xad\xb7\x54\x30\x51\x95\x83\xe1\x89\xc9\xc8\x32\x49\x12\xb7\xcc\x67\x62\x50\x05\x6b\xdb\x83\x2a\x93\x26\xbf\xc0\xe0\x40\xee\x7d\x01\x07\xa6\xd5\x72\x6b\x12\x58\xfe\x76\x41\xb5\x23\xeb\xdd\x55\xa3\x9e\x96\xec\x71\x59\xd7\x0d\x1f\xb7\x84\x8f\xf9\x86\x8c\x69\x35\xce\x4e\xf8\x49\x36\x16\x4c\xcd\x86\x68\xa5\x19\xb8\x21\x2e\xb2\x13\x76\x92\x8d\xcb\x56\xbc\x61\x64\x4c\xc1\x7b\xb1\xdd\x59\xdd\x1a\x95\x1f\xad\xcb\xf5\x86\x68\x5f\x45\x21\x5a\x81\x47\x72\xed\xa4\x89\xb2\x53\xa2\xf2\xd2\x05\x6b\xf1\x9d\x33\x79\x48\x87\xd4\x60\xae\x92\xe3\xba\x7b\x57\xfb\x5e\x75\x5c\x15\x02\x1c\xd8\x06\xef\x0b\x95\x73\xb5\x06\xfa\x29\xbe\x7f\x5e\xe5\x5c\x50\x0c\xee\x0c\x1d\xf5\x9c\x4a\x63\x91\x83\x9e\x2c\x75\x24\x72\x36\xab\xe4\x5f\x6f\x6e\xeb\x75\x2e\xe8\x98\x64\x72\x98\x18\x1a\x8e\x45\xb0\xa7\xba\x22\x2a\x0a\xe1\x22\xe6\xa4\x8d\xdd\x7c\xbf\xaf\xf7\xfb\xbc\x2e\x32\x89\x2c\x0f\x68\xb5\x50\xba\xcd\x9a\xdc\x3c\x56\x08\x94\x23\xb3\x1b\xe4\x66\x7c\x25\x0b\x6c\x5a\xda\x84\x6b\xb7\xa2\xf1\x81\xe3\x55\x56\x55\x4e\x0d\xc8\x03\x78\xc8\x97\x82\x72\x88\x55\x39\x33\x88\x08\x05\x25\x39\x39\xd1\x56\xa0\xf4\xfd\xe2\x0d\xe0\x6c\x24\x66\x32\xcc\xa2\x2e\xec\x39\x19\x09\x56\x46\xef\xb0\xbe\x21\x87\x0f\x68\x1f\x33\x08\x54\xbf\xe1\xee\xc0\x43\xfc\xa3\xa1\xcc\xe6\xa6\x04\xe6\x87\x27\x86\x4c\x77\xe5\x36\x0f\xfb\x0a\x6e\x4a\xe2\x04\xdd\xe8\x6c\x7f\xee\x4c\xd4\x35\xb8\x88\xed\x90\xbe\x22\x03\xc3\xd3\xf6\x37\x2f\x5d\xac\xe3\x31\x19\x97\xf1\xc7\x9b\xe8\x63\xbb\xde\xca\x15\xd9\x36\x04\xd8\xff\x1c\xfe\x2f\xa4\x73\x0d\xcf\xb3\x59\x86\x24\x6b\x74\x4d\x8a\x53\x7c\x95\xbc\xe6\xf5\x61\x8d\xcb\x38\xb4\x2a\xdc\xb3\xa6\x13\x4a\x6a\x9c\x2d\x6a\x1d\x2d\x95\xb0\xb5\x5e\x38\x6e\x82\xde\x0b\x2a\x43\x00\xfd\xc6\xd7\xa4\xae\x68\xfd\xde\x09\x00\x7e\x51\xd6\xe5\x7b\xc2\x9e\x6d\x77\xed\xa6\xdf\xb1\xe7\xa0\x14\x74\xff\x9a\xa8\xa8\x75\xff\xb3\xaa\x79\xd9\x70\x35\xa5\xe0\x0b\xeb\xb3\x18\xcc\xca\x4d\x0e\xe0\xbd\x91\x8b\xf6\x9f\xb5\x01\xf9\xf4\xdf\x5a\x67\x5f\xff\xf9\x45\x45\x2e\x09\x63\xa4\x7a\x2b\x23\xf0\xc2\xd7\xcc\x89\x89\x0e\xe7\xa0\xb4\x8f\xbd\xe7\x9e\x6e\x32\x98\x86\xd6\x55\x3c\x16\xd7\xdd\x80\xf8\xca\x88\x10\x9f\x88\xf5\xb2\x38\xfc\x81\xd5\xf0\xa8\x2a\x26\xed\x3d\xbf\xf9\xf9\xd0\x20\x9e\x87\x92\xbb\x2e\xd2\x47\x29\x17\x31\x8d\xaf\xa0\xaa\x7c\xfe\xa7\x1f\x9e\x3f\xb9\xf8\xcb\xd3\xbf\xae\x8a\x6b\x72\x72\x72\x62\x3c\x46\x1e\xc0\x2e\x65\xb1\xed\x77\x22\x01\xd5\xe6\x03\x77\xd5\xc7\x75\xed\x6b\xa8\xf1\x5c\xff\x7d\x08\xc7\x4d\xbb\x3e\x7e\x9b\x57\x3d\x14\xb3\xb3\x62\xa4\xb5\xe6\x81\x3e\xce\x39\xd3\xef\x63\x9c\xfb\xd2\xc3\x37\x6f\xd1\x06\xdb\x7a\xa0\xb0\xb8\xe6\xe9\x36\x28\xd4\x37\xeb\x31\xf4\xcd\x8c\xb6\xdf\xd2\xaa\x22\xf5\x33\xd6\x5c\xb9\x31\xff\xfd\xdb\x56\x29\x2f\x54\xa2\x13\xf0\x62\x9e\xd4\xb3\xd7\x4f\x1f\xbf\x7a\xfd\xe4\xe2\xc9\xf9\xdb\xf3\x8b\x37\x6f\xcf\xdf\x3e\xdd\xef\x75\x3b\x95\xee\x23\x47\x08\x8c\x5b\x91\xb6\xfa\xe2\x51\xd6\xdf\x67\xbb\xed\xf6\xd6\xc4\x8a\x2c\x20\xc8\x75\xe6\xa7\x2a\xd2\x29\x8a\x7d\x1f\x32\x9d\x7a\x26\xb5\x6b\x2a\xc0\x39\xca\x57\xa9\x77\x0e\xda\xec\xf7\x44\xd9\x3c\x3a\xdc\xc4\x67\x17\x83\x4e\x64\x7d\xd3\x69\x3e\xc9\x27\xee\xf6\x80\xa6\x5f\x05\xc4\xd0\xa6\x7e\xac\x83\x8d\x35\xd4\x0e\x34\xcb\x11\x80\x7d\x92\x47\x1a\xbf\x24\x37\x36\xbf\x7c\xd8\x09\xa9\xa2\xef\x5e\x92\x9b\x1c\x0d\x7d\x05\x03\xde\x7f\x23\x10\x12\xa0\xd3\x90\x7b\x5e\xff\xd0\x0e\x18\x2f\x20\x44\xc4\x1a\x2e\x26\x39\x51\xbe\x63\xbe\x73\x7b\xf8\x54\xb9\xb5\xc3\x38\x80\x92\x29\xad\xb1\x37\x45\xd5\x56\x7e\xa6\x30\xf4\xc8\x0f\x55\x6b\xfb\x69\x0c\x0f\x92\x5f\x92\xaa\x93\xc6\x2e\x88\x9a\x8f\xc7\x8e\x26\xbb\xe8\x7f\x26\x67\x21\x93\x49\x1c\x39\x0b\xd9\x58\x7e\x98\xc4\xe3\x71\x14\x8d\xd3\x08\x72\x36\x84\x3b\x8b\xd8\x34\xd4\x5b\x39\x8f\x97\xe4\xe6\x17\xcc\xe1\x25\xb9\x89\x8d\x0f\x58\x1d\x1d\xfb\x25\xb9\x91\xe3\x06\x69\xc4\x64\x31\x0b\x7f\xd8\xa7\xaf\x5f\xbf\x7a\xfd\x06\x0d\x00\x14\x3a\x11\xfd\x99\xf4\x2b\x47\xed\x84\x69\x2d\x3e\x35\x86\xe4\x30\x84\xda\xa3\x07\xd3\xe9\x24\x41\xda\x3c\x49\x47\x8a\x62\xac\xb8\x83\x1f\x0b\x8e\x7d\x93\x0c\x80\x04\xbb\x73\xe9\x03\x09\xab\xbb\x72\xe1\x5e\x9c\x58\xc5\x9c\x3b\x6f\xe0\x96\xef\x3c\x6f\x6d\x39\xef\x8c\x56\x82\x49\x27\x86\xd9\x27\x32\xd2\x4f\x8b\x9b\xb5\x75\x49\x7d\x5e\xe5\xb5\x64\x8f\x69\xc1\x83\x6c\xc2\x4f\x04\x2b\x0f\x69\x19\x22\xa1\x70\x4e\x54\x07\x45\x5a\xde\x68\x70\x19\x2a\xfa\xda\x62\xfe\xb0\x7d\x54\x6a\x11\xa4\xd5\x22\xc8\xae\x28\x97\xed\x0a\x6f\x0b\xba\xdc\xad\x46\x66\x01\x5b\x59\xd1\xca\x29\x61\xb0\x85\x28\xcd\xb3\x5b\x92\x93\xe5\x6e\x85\x16\xef\xd5\x0f\x2c\xfe\x2d\x1a\x2d\x57\x14\x3d\x24\xbc\x10\x93\x97\x1b\x2b\x05\x32\x15\xae\x9f\x9b\xaa\x27\x2a\xc6\x9c\xe1\xb5\xae\x8e\xd1\xea\xb2\xf7\x0c\x87\x75\xf0\x11\xf2\xf9\x1d\xae\x18\x8a\x67\xe5\x9a\x37\xec\x36\x16\x2d\x68\xf2\xbc\xe9\x3c\xed\x92\xc3\x78\x12\x30\x1c\xd6\x7f\xc1\x1d\x40\x60\xa6\xc3\xc5\x14\xbd\x10\x13\x87\xef\xea\xf3\xfa\x9a\x47\x92\x9c\xa0\x6d\xe3\xb1\x8c\xff\x98\x11\x4d\x88\x2b\x07\xa5\x7b\x09\xf8\x3c\x63\x68\x92\x2b\x8b\x4a\x16\x86\x57\xd3\x87\xc8\xbb\x36\xb5\x32\x25\x37\xe2\xa3\x13\x93\x1f\xe7\x86\xe3\xb9\xdf\x49\xaa\xf9\x92\xaf\xf4\x20\xd3\xe9\x31\xad\x72\xa4\x12\xa8\x8c\x87\x5a\x77\xb1\x09\xfb\xc2\xc4\x50\x92\x7a\x92\x12\x28\xc0\x6c\x14\xf6\xb4\xe4\xab\x91\x9d\x53\xef\x1d\x96\x41\xe5\x41\x98\xd2\x74\xca\x8c\x96\x20\x40\x5d\x38\x1d\xbe\x01\x26\xc9\x34\xc7\x33\x51\x35\x89\x4c\x8d\xe8\xee\xb8\x6b\x43\x10\x9e\x01\xa6\xc8\x7d\x9d\x4f\xe6\x26\x56\xa3\xae\x74\xfe\x2f\x5d\x4e\x50\x4c\x45\x30\x43\x11\xbd\x93\xf4\x20\x17\x87\x51\x7b\xac\x73\x59\xea\xd1\xf1\x70\x00\xd6\xdf\x51\xfd\x59\x0a\x3e\xd3\xb2\xc5\x9b\xf2\xa3\x0a\xf6\x65\x98\x20\xcc\x74\x28\x16\x8c\xcc\x4b\xc6\x49\x65\x4f\x5d\x78\x46\xbd\x13\xa9\xce\x87\x93\x7a\xc4\xd0\x1c\xef\x50\xe0\xcc\xf9\x2c\x93\xe1\x00\x0d\x38\x90\xfc\x54\x2a\x36\x06\x0c\xfb\xc9\xb0\x68\x89\x63\x77\xdd\x88\x81\xcd\xb2\xbf\xf7\xd7\xbb\x76\x03\xce\x5e\x50\x4b\x58\xaa\x37\x62\x15\x85\xb1\x77\x1d\x48\x9f\xfa\x66\x26\x2e\x85\x76\x73\xf4\xb2\x4f\x3f\x71\xd9\xa7\x48\x52\xc0\x9e\xad\x5f\x6d\x92\x0f\x7a\x15\x0f\x6c\xea\x79\x3a\xbb\x2f\xbb\x18\x37\x97\x0a\x05\x46\x4e\xe8\x6d\xbf\xd4\xa8\x17\xf0\xcc\x75\xb2\x78\x27\x63\x5d\x86\xef\x94\x63\xcc\x82\x61\x95\xdd\x6e\x41\x04\x68\x7a\xd1\x9a\x8e\x43\x57\x90\xdb\x10\xf3\x0e\xfb\x6b\x62\xcd\x8d\x6c\x26\x5b\x10\x70\x3f\xec\xaf\x62\xdd\x5c\x5d\x8b\x03\x80\xc7\xf2\x64\x8e\x2f\xb7\xe5\xfb\x36\x43\xd1\x30\xd7\xfe\x56\x89\x91\xe3\x67\x1a\xa0\xed\x25\x67\xed\xef\xaa\x23\x9e\xe5\xce\x91\x74\xbf\xd2\xf1\x25\x91\xfb\x24\xb7\x16\x93\xa8\xf4\x6e\xee\x86\x9e\x58\x2f\x77\x89\xed\xea\xd9\xbb\x72\xfd\xe1\xdd\x8e\xd5\x02\x7f\x54\x2b\x41\x12\xa0\x99\xd4\x53\xe0\xec\x62\xbd\x21\xeb\x0f\xcf\x1a\xf6\x8a\x5d\x6f\xca\x3a\x08\x14\x6c\x21\x58\x4a\x8a\x01\xa1\x24\x9a\x14\xb8\x7b\x53\x12\x1d\x78\xc6\xb1\xfe\xf5\xec\x5f\x83\x69\x6d\xdd\xe4\x14\xdb\xf5\xc9\x3e\x13\x70\x40\x43\x6a\x0f\x49\x94\x8d\x69\xa2\x3f\x9f\xde\xc8\x8a\xf0\x86\x36\x3e\xd9\x7a\x18\x86\x39\xc2\x7d\x94\xe8\x69\x0f\xd5\x23\x73\xb1\x82\x28\x3f\xdc\xf1\x11\xd3\x3e\x4a\xfd\xe3\x4c\x4c\x8c\x7a\x20\x8f\x84\x4b\xfd\xad\x92\x28\x95\x52\xa2\x91\xe5\x15\xbf\x89\x26\xf2\x91\x3a\x64\x9b\xbc\x24\x72\xb3\xf8\x5f\xf7\x03\xc7\x24\xc1\x86\x8e\x02\x7a\x62\xe3\xc5\x3f\x92\x9c\x62\x82\x03\x8e\x5d\x7c\x03\x9e\x00\xf8\xf8\x4f\xb4\x01\x17\x29\x49\x28\xbe\x2c\xcf\x7a\x76\x91\x72\x79\xb6\x79\x08\x6c\xa6\xcf\x23\xf3\xb3\x68\x23\xb5\x4e\xee\x52\xfb\x55\x9e\x70\x69\x4b\x42\x35\xfb\x7d\x83\xdb\x02\x1c\x35\x08\x96\x62\x16\xc5\xa9\xaa\xcc\x52\xe0\x32\xe3\x2d\x6a\xb0\xcd\x82\xd4\x54\x6a\x49\x04\x2c\x7e\x55\xc9\xcb\xb3\xa1\x44\x2a\xb2\x89\xf4\x65\x03\xc7\x64\x7f\x7d\x82\xa0\x3c\x2b\xe9\x96\x40\xa2\xdb\x73\xce\x05\x6f\x8d\x02\xc6\x3e\xca\x4e\xaa\x6c\x37\x5b\xa7\x76\xa7\x03\x53\xf0\x8a\x0a\x58\x94\x0b\x49\xc2\xdd\x7a\xdd\x02\xb4\x4e\x3e\x25\x4c\xb0\x89\x85\xdb\x9a\x02\xac\xbb\xb3\x5d\x2f\x96\x03\x07\x55\xaf\x17\xad\x4d\xe6\x71\x2f\xc0\x44\xa2\x44\x1a\xcf\x1f\x30\xc4\xa8\x20\x42\xf8\x14\xb9\x7e\x4e\xf7\xc7\xa0\x3a\x8a\x9d\xda\xf3\xcf\xa2\x58\xc8\x41\xeb\x9c\x58\xba\x08\xb3\x3b\xfc\x50\x80\x67\x8d\x70\x59\x4c\x26\xb5\x3f\xc9\xe9\x34\x78\x10\x32\xe6\x39\x1a\xd1\xe2\x2f\x26\x60\x51\xa9\x09\x2c\xee\x5b\x3e\x4c\xce\xe1\x4a\x81\x3b\x67\xd2\x0f\x01\xdb\xf5\x2d\xc2\x05\x63\x28\x84\x5e\xcb\x7a\x6c\xf2\x7c\x78\xa1\xff\x0b\x66\x8e\xd5\xb5\x7d\x8a\xbd\xac\xb6\x8d\x89\x74\x0e\x13\x1f\x94\x38\xa2\xca\xb0\xa9\x10\xb8\x49\x19\xd8\x03\x70\x41\x43\x09\x37\x2a\xfc\x90\x95\x23\x1f\x26\x5a\xf4\xe5\xb4\x03\x1f\x80\x15\xbb\x99\x41\xfc\x10\xac\xe3\xdb\x48\x0e\x2c\xcf\x6f\x5e\xf2\x90\x65\x11\x3d\xb4\xd6\x90\xe3\xf8\x4b\x95\xfb\x7d\x5e\x16\x21\x8d\x4f\x62\x8e\x34\x1e\x62\x8e\x69\x3a\x06\xa0\xee\xc5\x33\x4b\x47\x87\x3c\xd3\x10\x07\xd1\x00\xd7\x5d\x3a\x47\xc8\x47\x92\x37\x98\xe0\x80\x50\x61\xde\xbb\x25\x0e\x7e\x22\x6f\x56\xd4\x1d\xb4\x6e\x89\xcd\x2e\x71\xa9\x6f\x93\x18\xac\x87\xee\x12\xe7\xb4\xfe\x82\x9b\x24\xbc\x3c\x1a\x7b\x79\xd0\xfd\x9e\xea\xad\xf5\x7c\x95\x09\x6e\x40\xa7\xd5\xa8\xca\x6c\x9f\x97\xb6\xb7\x72\xc4\x1e\x12\x4a\x6f\x2c\x5c\x1e\x4b\xe0\xb5\x5e\xcc\x25\xef\xad\x21\xef\xa5\xa5\xdc\x25\xf0\x29\xd1\x5e\x86\x9c\x8e\xd2\x1a\x0f\xd0\xf7\x21\xa3\xa7\x63\x33\x35\xa8\xa0\x77\x80\x96\xa6\xf0\xb7\x79\x65\x30\x56\xcd\x34\xb3\xd2\x33\x1a\x91\x6d\x4b\x14\x9f\xe4\x15\x2c\x3d\xdb\x2c\xd6\xa3\x03\x73\x29\xa8\x55\xad\x85\x84\x25\xa5\xb0\x31\xb2\xe4\x31\x28\x39\x70\xe2\x05\x72\x98\x18\xa4\x91\x0f\xba\x38\x26\x8f\x7a\x37\x44\x1e\x5e\x11\x2d\xb4\xef\x61\x58\x3e\x39\x15\x30\xec\xb5\x7d\xb3\x69\x76\xdb\xea\x59\xc3\xd6\x44\x4a\x76\xf9\x64\x6e\x7c\x83\x3e\xf1\xd4\x34\xb1\x33\x81\xf4\x51\x89\x21\x2e\xc5\x35\x6e\x7a\x88\x9b\x3c\x07\x67\xf7\x46\xec\xb2\x43\x8b\xd2\x6e\xdc\x71\x9c\xe9\x67\xd8\x3a\x97\xa1\xfd\x1f\xb5\x79\x3d\xd6\xb1\xc6\xf4\x73\x6d\x50\x9c\xb5\x6c\x3a\xb4\x68\x1c\xd1\xd3\x9a\xb0\xfd\xca\x35\x31\xa1\xf8\x2c\xaa\x2e\x5e\xf4\x65\xc6\xaa\x2f\x62\x87\xfa\x68\xcf\x69\x65\x32\x8f\x6a\x93\x63\xfc\xc1\x80\x36\x39\xa1\x9e\x4d\xe8\x89\x13\xad\x3b\x84\x5b\x92\xdb\x5d\x35\xfe\x69\xe2\x11\x8a\xb8\x06\x4d\xe6\x5a\x5e\x4d\x65\x4d\x1c\x10\x56\xc3\x04\x8a\x8d\x53\x6d\x37\xe9\xb2\xe6\xf4\xe1\xd4\xe6\x25\x52\xb5\x4a\xf8\xee\xba\x57\x83\xc8\xf5\x1b\x8f\x69\x15\x49\xa0\xf1\x53\xee\x9f\xbd\x9c\xcb\xca\x06\x70\xe1\x95\x2c\xa7\x04\x2a\x71\x42\x0b\x9b\x9c\x3d\xd7\x0c\x85\x59\xe2\x8f\x7e\x90\x52\xe8\x87\xe7\x9f\x68\xf1\x95\x5d\x12\x98\x71\xe3\xd7\x40\xaa\x8f\xe0\xab\x9c\xe0\x5b\x92\x73\xe4\xf5\x98\xa2\x4f\x87\xfa\x74\x0f\xec\xfb\x5e\xaf\x29\x34\xa0\x97\xb9\xc1\x7c\xed\x26\x90\xc8\x64\xaa\x08\x12\xa9\xc6\xbc\x01\x27\x61\x9d\x91\x94\x37\xe2\x27\x17\x3f\x95\xab\xb0\x72\x30\xb0\x2e\xc3\x80\xa7\x23\x3d\x58\x6f\x03\x72\x82\x1c\xaf\xdf\xd8\xea\x7c\x9c\x1c\x25\x58\x3f\xda\x8a\x76\xb2\x0c\x0a\x51\xf8\xa2\xf4\xfd\x5e\xce\xfd\x0c\xdf\xd5\x42\x8a\x27\xa6\x82\x06\xb3\x3c\x0f\x07\xad\x9c\x97\xc3\x34\x55\x5f\xf6\x1b\x9b\xbf\xb3\x99\x39\x55\x5d\x22\x8a\x66\x98\x85\xd3\x24\x73\xbe\x0a\x0b\x74\xf5\xbe\x21\x2a\xa7\x90\xf8\x40\x17\x1c\x49\x34\xd7\xaf\x65\xe3\x58\xf9\x2f\xaf\xb9\x6d\x90\x69\x75\x66\xaf\xcc\x4c\x44\x9f\xa9\x91\xc6\x38\x06\x69\xb3\xb6\xa3\x7c\x8f\x79\xa3\xc4\xab\xd8\x00\xc0\x0f\x8f\x3a\x3e\x62\xd0\xb3\xbb\xae\x27\xce\x46\x93\xa1\xe3\x46\xa7\x5f\xff\xc9\x94\x33\x48\x19\x47\xa1\x13\x5b\xf5\x20\xf7\x2c\x49\xf6\x79\xe6\xf6\xaa\xcb\xf1\x24\xe0\xee\x15\xc7\x1d\xb6\x91\x89\x0f\xd2\xbc\x8a\x6b\x89\x35\xae\xe7\xe0\xc1\xaa\xee\xe1\x7a\x53\xd6\xd5\x96\x54\x4f\x3f\x92\x9a\xe7\x0c\x43\xd1\x08\xd1\x42\xc5\x71\xc3\x18\xb1\xe4\x60\x7d\x24\x4e\x91\x5e\x49\x79\x15\x51\x93\x89\xc5\x88\xc6\x55\xfb\x42\x6e\x7c\xe8\x1c\x11\xd0\xf8\x20\x9a\x28\xd4\xb0\x70\xe9\xd3\x1d\x48\xb4\x69\xf0\xd9\x49\x18\xf2\x18\x99\x46\xb8\xb8\x3c\xb2\xba\xe0\x7b\x7d\x3b\xa9\x46\x03\x73\x70\x00\xa1\xc9\xcf\x27\x4e\xc1\xff\x3c\x27\x43\x83\x8e\x06\xe1\xa8\x91\x23\xa9\xed\x00\x52\xed\x56\x62\x4a\x66\x4c\xcc\xd1\x28\x31\xc8\x74\xca\x0e\xeb\x61\x52\x33\xf4\xb5\x32\xbd\xd7\xee\xce\x02\xea\x1f\x03\x52\x32\x9d\x66\xe0\x38\x94\x4d\x20\x26\x57\xdf\x45\x5a\xdb\x18\x07\xb3\xfa\x04\x61\xf9\xb9\xba\x26\xef\xdb\x85\xfe\x0c\x79\xfd\xb8\x0e\x81\x6e\x8f\x49\x73\xb9\xae\x3e\x32\xec\xcc\x21\x89\x1e\xf8\x94\x3f\xd1\x5f\xc8\x0e\xfa\x45\x9a\x86\x9d\xf9\xa0\xa7\x58\x65\xa7\x51\x98\xdb\x4c\xf9\x17\x99\x08\xf5\x9e\xa5\xd2\xd2\x3e\xb7\xa4\x52\xe0\xd6\x21\xb3\x1d\x80\x8f\x8f\x49\x63\x98\x66\xf0\x24\x91\x71\xcb\xbe\xc4\x32\x5b\x80\xf8\xd2\xc4\xae\xf0\x4b\xe5\xea\x0f\xff\x17\x10\x05\xb0\x9c\xaf\x50\xe7\x48\xac\x9e\x43\x55\x5b\x94\xd6\x31\xf2\x24\x7b\xf0\x75\x76\x42\x46\x55\x73\x57\xce\xc8\xcf\x94\x4f\xa7\xf2\x7f\xc5\x94\x97\x45\xe9\x16\x64\xec\x6e\x36\x74\x4b\xf2\x49\xb9\x6c\x56\xf2\x74\xee\x8a\x35\x59\xb6\x70\xd4\x76\x88\x17\x3b\xc9\x26\xb7\x98\x15\xbb\x19\x11\x47\xac\xc5\xa5\x78\x0a\x94\x1d\xf4\x1c\xbc\x58\xae\x30\x2b\x96\x5a\xd1\x0f\x33\x86\x20\xd9\xba\x98\x63\x5a\x6c\x4d\xc5\xf9\x47\x14\x92\x21\xe7\x65\x51\x2e\xb7\xcb\x7a\xb5\x42\xb2\xcb\xe9\x54\x65\x69\x2f\x11\x2e\xe5\x80\x82\xa2\xaa\x47\x23\x98\x50\x21\xeb\xcf\xb5\x0b\x8e\xe5\x34\x16\x0c\xc3\x24\x16\x65\xd7\xd9\xc1\x58\x38\x18\x5b\xd6\x2b\x39\x8a\x84\x00\x4c\xac\x07\xc4\xa2\x3c\xda\x90\xef\x7e\x96\x41\x86\x23\x18\x98\x87\x03\x73\x31\x30\xcc\x59\x0d\x3c\x78\x86\x82\x1b\x31\xa1\xc6\xf2\xb9\x5d\xf9\xc1\x98\x88\x0f\xc6\xff\x0d\xbc\xee\x7f\x8f\x33\x9d\x67\xea\xa4\xc8\x9a\x7a\x9c\x9d\xa8\x58\x7d\x98\xc3\x49\x36\x86\x0d\x1f\xd3\x7a\x0c\xc0\x1b\x67\xb8\x3e\x29\x88\x8b\x3f\xb3\x71\x86\xad\x26\x6c\x3a\xcd\x45\x4f\x8f\x4b\x71\x38\x20\x09\xd5\x38\x2c\x1a\xc0\xd0\x49\x36\xcb\x10\x0e\x59\xf3\x5a\x9d\x03\x5b\x6c\x28\x1e\x48\xdb\x4b\xc0\xc6\x9d\x04\x6c\x26\x9a\x96\x40\x80\x0f\x5f\x32\x37\x01\x1b\x5b\x8d\x4e\x8d\xc9\x3d\x74\x75\x57\x89\xff\xf5\xd1\x57\x8a\x07\xb9\x01\xfe\x65\x01\xb0\x81\x5d\x48\x38\xb1\x05\x8e\x9c\x21\x77\x10\x06\x05\x87\x33\xc1\xbe\x40\x89\xc5\xe5\xa5\x46\x52\xd8\x43\x42\xec\x51\xca\x7a\x02\x89\xc2\x75\xaa\x65\xdc\xa0\x8e\x98\xe4\xc9\x9d\xd4\x1e\x0d\x55\x25\x4b\xc4\x63\x81\xbb\xfc\xe4\x34\xe2\x38\x75\xa0\xc8\x99\x24\x6d\xd7\x52\x65\x35\x20\x3a\x63\xf0\xd0\xf1\x9d\x25\xfb\xca\x08\x63\x4b\x76\xd3\x8a\xd7\x68\xc4\x5d\xb1\xfd\x4a\x2a\x87\x4c\xcc\x55\x8d\x24\x63\x6d\x66\x75\x96\x33\x2f\x87\x4f\x0b\xd9\xcf\xbd\x27\x50\xf0\x29\x78\xb6\xac\x57\x05\x9f\x5d\x5c\x6b\xef\x17\xc7\x12\x5e\x63\x8a\xd0\x22\x67\x4e\x25\x1f\xe8\xd3\x29\x2e\x20\x3b\x74\x4a\x0c\xd5\xab\x82\xba\x16\x84\xbe\xe2\x80\x49\x0c\x8b\x0c\x98\x64\xa3\xb1\x1b\x17\x1c\x07\x87\x32\x09\x38\x31\x17\x77\x55\xc9\xcb\x85\xab\x76\xae\xa5\x93\x29\x4f\x25\xa8\x61\xb3\x8b\x75\x23\xb6\x9b\x7f\xdf\x9f\xdc\xdb\xe6\xcf\x6f\x5e\xbd\xcc\x09\x16\xcb\x53\x42\xcc\xc1\xd6\x5c\xb4\x96\x1e\x11\x07\x9a\x46\xd5\x09\xfd\x54\x24\xfb\x7d\x56\xef\x04\x96\xb8\x99\x48\xee\xa4\x35\x11\xd3\x6a\x41\xba\x85\xfc\x2b\xef\xa7\xde\x3a\x0b\x1f\x2c\x08\x72\xd4\x8c\xb4\x5a\xb0\x19\xad\x64\xa9\x63\x06\x8e\x42\x3d\x1a\xdd\x17\x97\x80\x98\xb0\x5e\x78\x8f\xce\xb7\x64\xb2\x26\x1b\xd2\x02\xee\xc8\x91\xe3\x42\x74\x7e\x0a\x5a\x29\x6d\x5f\x55\x10\xcc\xa7\x53\xe5\x7f\x4c\x3c\xf2\xe5\x84\x57\x87\xea\x52\xe2\x07\xed\x41\x02\xe6\x23\xe4\xa3\x1e\x53\xa8\x64\x74\xed\xac\xd5\x67\x5e\xa5\xd7\x2d\x09\x22\x9f\xfa\x0e\x80\xde\x60\xad\x51\x73\x08\x16\xe9\x4e\x3b\x81\x4f\xe6\xbe\xeb\x37\xe9\x0c\x47\x69\xd8\xb4\x1e\xf0\x43\xb7\xdf\x30\xfa\xea\xbe\x73\x38\xf5\xe7\x00\xd6\xfd\x40\x68\x0e\x25\x71\x0d\x8b\x80\x9f\x1c\x25\xb4\x87\xa6\xc6\x5e\x5f\xff\xa3\x85\xf4\xb4\xd4\x84\xc9\x11\x3a\x45\x39\xdd\xca\x2d\x67\xf8\xb6\x49\xa9\xd7\x82\x54\x4f\x8e\xa4\x80\x33\x00\x6e\x9b\xa1\xd9\x45\x59\x55\x46\xd5\x7a\xa0\xfa\xa3\x07\x98\xe3\x7a\xd7\xa1\xcc\x52\xcd\xd2\x2b\xc5\xe8\x6e\xfa\x71\x1d\x9a\xa8\xe1\xc6\x96\x9e\x3c\x18\xfa\x21\x63\x30\x22\x2a\xa1\xf7\x84\xcb\x2e\xfa\xf1\x1f\xe6\x55\x7e\xd7\x21\x23\x16\x2c\x8e\x9a\xe5\x7b\x27\x25\x3b\xfa\x7a\xee\x23\x99\xaa\x84\x59\xc6\xd4\xa1\xd1\xd0\x11\x95\x2f\x51\xe6\x1f\x8c\x44\x75\xf8\xd3\x85\x40\x06\x36\x86\xd8\x09\x12\x56\x5d\x67\x9a\x4d\x4a\x23\x51\xce\x30\x59\xb2\x95\xb6\xe6\x7c\x0c\x70\xd9\xaf\xac\x8a\x30\x18\xa4\x15\x78\xa6\xd3\x9c\x16\xcb\x3b\x4e\xf9\x96\x2c\x32\xd5\x66\xac\x4a\xbb\x56\x42\x0a\xdf\x2e\xb2\x0c\x4b\x0f\x82\xc5\xdd\x75\x03\xf4\x7a\x91\x7d\x05\x69\x6a\xba\x6e\x15\xb9\x58\x65\x1d\x4d\xa8\x99\x2e\xd8\x0c\x52\xe5\x77\x9d\xb8\x76\x84\x4c\x32\xee\xcd\x4b\x89\x81\xc7\x75\x23\x3b\x51\x79\x06\x05\xd4\x9a\x04\xd4\x9a\x23\xa0\xd6\x60\x02\xc2\xd5\x00\xa8\x8e\x98\x94\xab\x5a\x90\xdb\x19\xea\x16\x94\xa0\x3c\x4a\x23\x80\x4c\x01\x3a\x88\xce\xfb\xbd\xce\x61\x25\x87\x52\x73\x74\x47\xcc\x89\xab\x3c\x8a\x34\xe8\x53\x49\x57\x15\x41\xfb\x1f\x68\xbd\x9c\x3d\x09\x89\x9b\x27\xb9\xa1\xae\x67\xf1\x51\xc0\x14\x82\x89\xca\x62\x16\x49\x66\xfc\x48\xa5\xa7\x30\x97\x2b\xa4\x16\x51\xb7\xf3\x49\xf6\x75\x26\x49\xa2\x0a\x84\x0d\xbd\x0e\x3c\x45\xa8\x0d\xa5\x55\x6e\x06\x13\x23\xcc\xbd\xd0\xaa\xce\x91\x63\x7f\x04\x2f\x01\x59\x50\xe8\xcf\x8e\x69\x4d\xfa\xd4\xd4\x98\x23\x8f\xb3\x23\x90\x87\x50\x34\x26\x24\xda\xda\xc4\x3e\x38\xb3\x28\x98\xf1\x80\x0b\xd3\x50\x59\x46\xf3\x88\x84\x52\xd0\xce\x66\x87\xb2\xf1\xc7\x0e\xbf\x62\xfc\xbb\x7c\x78\x22\x74\x7c\x21\x2d\xb7\x72\x16\x76\xeb\x90\x99\x48\xe4\xd4\xe7\x9e\x43\x76\xf0\x4d\xa0\xcb\x74\xa2\x9a\xc9\xcd\xf8\x3f\x43\x58\x06\x31\x26\xa6\xb5\xad\x69\xe6\xd4\x58\x08\x67\x63\x53\xc9\xc8\x3e\x9c\xb6\x9e\x72\x4b\x09\xa8\x6e\x0e\x7e\x10\x1c\x02\x3e\x4f\xa1\x61\xc0\xed\x85\x66\x70\x63\xa5\x26\x98\xf8\x5e\x24\xce\xcb\x0e\xb7\xc4\xaf\x9b\xd2\x6b\x52\xf4\xd6\x28\xd9\x92\xa3\x60\xee\x7d\x61\x20\x1e\x84\x9d\x93\x9b\xf1\x0f\x28\x16\x91\xee\x6c\xb7\xc6\xde\x23\x77\x5a\x37\x77\x36\xd9\x04\xb4\xc7\x92\x97\xf5\xc2\xde\xed\x9a\x43\x51\xfe\xb8\x75\x87\x5f\xd9\xb5\xf7\xe2\xf1\x97\xe6\x6e\xeb\xbd\x33\xb3\x70\x03\x95\x87\x6b\xce\x39\x9e\xe1\xfa\x63\xc3\x0d\x27\x3e\x9d\x78\x2c\x83\xcc\xe3\xb6\xed\xe5\x71\xa3\xf2\x21\xa6\x28\xc8\xca\xf2\x91\xb8\x2e\x86\xf4\x32\x4f\x06\x98\x39\xfe\x2a\x7c\x85\x59\xc2\x5d\xe4\x14\x89\x7e\x58\xda\xf1\x64\x2e\x19\x90\xa6\x18\x0a\x61\x53\x4a\xb0\x66\x3a\xf5\x69\x2b\x03\x51\x78\x3a\xcd\x1b\xed\xc7\xe5\x79\x57\x4c\xa7\x4d\xe0\xef\x25\x13\x52\x34\x81\xab\x57\x24\x8f\xac\xc4\x24\x84\x8d\x33\xe8\xc0\x12\x4e\x91\x5c\xbe\x2b\x0e\x3f\x6f\xdf\xf0\x72\x4b\xa4\x63\x8d\x4d\xa9\x79\x4b\xbc\x74\xb7\x42\x82\x7f\x4f\x9c\x1a\x68\x70\x1f\x03\xe3\x47\x90\x83\x8a\xe2\xa6\x21\xe0\x3a\x69\xe4\x4c\x71\x0b\x4f\xa7\x2a\xc8\x5d\xaf\xcf\xd2\x8d\xb3\xb7\x39\x57\x9e\xcd\x26\x6f\x2d\x91\xc1\xb3\xef\x88\xd2\xd0\x48\x8b\xa5\x95\x3b\x60\x23\x2e\x08\xbe\x21\xf8\xa9\x69\x23\x73\xd7\x56\x79\xa0\x28\x8d\xe8\x1d\x02\x8e\x39\xa8\x98\x18\x94\x4e\xea\xd0\x8c\x91\x52\x66\x97\x42\xf8\xe7\xfe\x70\x92\xc7\x9e\xe9\x4c\x8a\xfd\xf1\x26\x4e\xc1\x1b\xbf\x31\xfa\x7a\x1e\xf4\xff\x26\x4c\x27\x21\x39\xee\xb3\x9f\xc9\xe2\x29\x19\x5d\xc4\x93\x4d\x1c\x09\x00\x4d\xf4\x55\x59\x12\x9b\xb4\xcd\xc6\xbc\x13\x2f\xc8\xfd\x1e\x70\x72\x6d\x3a\xde\x8a\x16\x4f\xc5\x36\x7d\xa1\x69\xbf\x24\x37\x67\xc4\xc4\xc5\xdf\x6f\xba\x60\xc5\x0a\xa7\x0a\x88\xf5\x8a\x44\xeb\xd8\x35\xf8\xee\xfe\x55\xe9\xe2\x52\x9f\x99\x20\xb0\xa4\xaf\xc9\xdf\x77\xa4\xe5\x40\x92\x3b\xac\x84\xec\x97\x84\xdf\x34\xec\x83\x4a\xc5\xdc\x1b\x34\x65\x58\xfb\x51\x72\xf6\x1d\x56\xe9\x20\x04\xf8\x8d\x8b\x80\xfd\x83\x54\xe2\x77\x3f\xf9\xc2\x62\x68\x4f\x66\xca\x3b\x24\x8b\x94\x48\xb4\x18\x1e\xfd\x02\x75\x08\xeb\x3c\x0d\x72\x16\x0a\x5b\x16\x17\xe2\x8f\x97\xe4\x66\x71\x23\x7e\xc0\xf4\x17\x6f\x08\xbe\xb8\x2a\xd9\x87\xe7\x1e\x7c\xce\x5b\xd0\x78\x2c\x92\x71\xb1\x07\xa1\xab\x33\xe1\x45\x00\x0c\x86\x69\x93\xbf\x40\x4e\xd1\x68\x69\x1c\x87\x0a\xf1\xa7\x97\x67\x40\x45\x7b\x87\x09\x09\x40\x49\x24\xa3\x10\xa4\x3b\x21\x9c\xfb\x10\xbc\x51\x63\x23\xe6\xc5\x7b\xcd\x26\x20\x55\x2f\x8f\x91\xf7\xb4\xe5\x84\x7d\x0b\x96\x17\xd6\xba\x5f\x92\xb8\x70\xd7\xe1\x64\x1b\x8d\x24\x71\xf4\xd4\x95\xab\xa9\x39\x71\xf4\x32\xa7\x9e\x34\xc7\x0a\xe7\xef\x1c\x21\x9b\xaa\xa0\x80\xd2\x35\x7e\xbe\x82\x26\x9a\xaf\x80\x4b\x45\x0f\xe4\x2b\x68\x96\xe2\xbf\x95\xe3\x73\xe4\x11\xc5\x98\xe8\xb6\x08\x1c\x27\xe2\x2b\x51\x6a\xe3\x9e\x96\x27\x47\x4e\x32\x5d\x65\xec\xf1\xbc\x1b\x4d\xf9\x1d\x3d\x65\x2a\xa6\x0c\xbd\x0d\x29\x2a\x96\x74\x85\xf9\x52\xfc\x07\x36\xf9\x81\xb6\x41\x6d\xbf\xf0\x86\xf0\xf5\x60\x91\x15\xf4\x28\x42\xf0\xb1\xd1\x4a\xf5\x54\x8c\xd8\x94\x5b\x4e\x16\x42\x0b\x49\x67\x50\xc1\xda\x29\xd8\x0c\x39\xf8\x40\xa1\x9e\x2a\x83\x18\xab\x33\x1e\xd4\x83\xce\x1e\x54\xe4\xb2\xdc\x6d\x39\x94\x09\x3b\x66\x06\x36\x6f\xab\x9d\x0a\x03\x17\x32\x81\x36\xb7\x72\x9d\x15\x05\xee\xc7\xfc\xf1\x03\xe8\x38\xcd\x9f\xd2\x11\xc0\xfc\x29\x09\x92\xfc\xd3\x3b\x4a\xee\x23\x07\x8a\xd6\x6c\xaf\xa1\x5a\x57\x8b\x01\x1f\xc5\x00\x0c\xe2\x38\xca\xcd\x75\x0d\xf6\xc7\xee\x88\xfb\x0d\xec\x81\x1b\xc0\xdf\xbf\xa1\xfc\x8f\xdd\xb6\x39\x7c\x0b\x6c\x68\xa4\xa2\x9b\x3b\x03\xff\x2b\xe5\xc0\x50\x2a\x4d\xaa\x1b\xac\xdc\x1b\xbe\x1f\xcf\x1a\x4c\x28\x48\x5b\x8d\x7b\x7a\xe6\x04\x6e\x8d\xde\x91\x3c\x62\xd9\x4d\xda\x36\x19\x98\x35\x31\x8f\xdf\x9e\x32\x5c\xb3\xe7\x1c\x77\x64\x9d\xed\xa8\x53\x5d\xdf\x55\xe4\xd0\xde\xc4\x9c\x4b\x12\x4c\x84\x52\x7f\xa4\xee\x49\x00\xa4\x7f\x6e\x8e\x5d\x4a\x70\xd8\xc4\x09\x97\x2a\xab\xa7\x82\x13\x6a\x69\x53\x1f\xd7\x93\x9e\x63\xaf\x76\x53\x50\x19\x31\x5a\x32\xa3\xed\x55\x1f\x8c\x9e\xa3\x32\x56\x4a\xc3\x4e\xaa\x83\x4d\x8d\xd4\x7d\xd4\x55\xd8\x9c\x21\x63\x55\x37\xac\x31\x8c\x68\x35\xa1\x4a\x78\x03\xe1\x95\x77\xfe\xb3\x45\xd8\xa8\x43\xf8\xb8\x75\xa8\x12\x59\xe9\x12\x8e\x4c\xae\x44\x59\xef\x13\xb0\x53\xae\x6a\x99\x7e\xeb\x14\xd8\x73\xd3\x97\x0e\x57\x9e\x7b\x20\x24\xe1\xe2\xd4\xad\x3d\xe7\x97\x10\xa7\xab\x11\x77\xd9\xdd\x5a\x65\x9a\xdf\x94\x6d\x4e\x8c\x9b\xeb\x00\x57\xdc\xe1\x92\x73\xe6\xe2\x50\x87\x8d\xb4\x7c\x2c\x09\x74\xd5\xa0\x7e\x20\x05\xea\xb0\x52\x55\x7e\x5a\x5f\x36\x6a\x46\x1c\xa1\x8a\xbc\xdb\xbd\x7f\x5e\x5f\x36\xfd\x4a\x9e\xcb\x8c\x56\xd9\x0a\xf3\xe2\xae\x93\x7e\x48\xd2\x4a\x18\xaf\xf4\xef\x16\x26\x27\xda\x45\xa4\xd3\x45\x5c\x96\xd2\x03\x3b\xb3\xe7\x3e\xc3\xd7\x96\xfe\x11\x4c\x7e\xbe\x2e\xeb\x6a\x31\x99\x77\x2b\x4f\xe5\xd6\x0b\xa7\x77\xae\x20\x1b\x7a\xb9\xa4\xa0\x7f\xd0\x29\xa1\x64\x69\xf1\xdc\x79\x21\xb8\xe3\x5a\xce\x4a\xce\x84\xce\xc4\x7f\xee\x1c\x1a\x67\x0e\x08\x29\x6f\xea\x5c\x66\x6f\xd1\xe5\xf1\xfc\x3e\xb2\x67\x90\x46\xc3\xed\x64\xe9\x04\x5a\x66\x7d\xf9\x23\x13\x92\x99\x14\x13\x32\x57\xa6\xb4\x0e\x75\x5a\x74\xc3\x46\xd8\x59\x75\x08\x42\x67\x80\x96\xc3\x46\xdd\xd1\x7a\xbd\xdd\x55\xe4\x15\xdf\x10\xe6\xdc\x22\x93\x39\x7e\xcf\x9a\xdd\x75\xbb\xa8\xc5\x5a\x04\x29\xfb\xe8\x68\x15\x16\xac\xeb\x3a\x1c\xf5\x6f\xed\xeb\x2a\x13\x3e\xa8\x1d\x0e\x37\x24\xc6\xe8\x39\x45\x97\x52\xf9\x10\x5c\x0d\xd3\xb3\x86\xc5\x30\x39\x90\x77\x9d\x4e\x71\xe6\xb9\x9c\x7c\x73\xfb\xb2\xbc\x22\xca\x0a\x08\xe5\x27\x4c\x48\x4a\xf2\x84\xb8\x53\x74\x23\x58\x70\x92\xa9\x43\x1a\x76\xae\xe7\xf3\x3d\x01\x37\xc8\x1e\x87\x50\x0b\x02\x73\x3a\x34\x8a\x67\x4b\x7e\xe5\xe4\x07\xc5\x99\x2c\x40\x71\xe7\x66\x61\x16\x42\x5d\x5c\xbb\xa9\x24\xa0\xd9\x85\xf8\xaa\x53\xa7\xf5\x9c\x14\xbd\xcf\x43\x7d\xb6\xa2\xc9\xe0\x91\xa8\xd3\x91\xc7\xaf\x43\x93\x66\x7d\x58\xc1\x7a\xd4\xbd\xda\x59\xf5\xe8\x07\x4f\x7f\xd7\x1d\x03\x19\x5a\x65\xf8\x9c\x20\xfc\x8a\xcc\x18\x69\xae\x49\x0d\xc6\x8f\xfc\x8e\xb6\x52\xa6\x9d\xcc\xdd\x8c\x0f\xe0\x05\x71\x7b\x4d\x82\xac\x49\x8b\x98\x45\x2a\xf4\x8e\x1d\xc2\x4e\x27\x61\x3c\xef\x85\xe9\x1b\xd4\x7d\x51\x5e\x0f\x08\xd3\xaa\x8b\x58\x39\x0f\x14\x47\xfe\xf4\x5c\xed\x80\x99\xac\x9c\xb7\x24\x2b\xe4\x44\x16\x78\x21\x8f\x97\xb4\xae\x9e\x7b\xa7\x05\xb9\x51\x08\x45\x8d\xeb\x0e\x07\xad\xa2\xb3\x80\xee\x22\xe0\x95\x5d\x4a\x73\x9e\xab\x76\x85\x49\x60\x5d\x67\x55\x5a\x6e\xfa\x1e\x5b\xbb\xa2\xd5\x41\xdc\x4e\xa1\x81\x9d\x3e\xe0\xa1\x22\xd7\xbe\xa8\x6d\x23\x4c\x8b\xbc\x71\xa0\x34\x48\x6c\x6a\x84\xe0\x7e\xc1\x65\xd1\x98\x91\xc1\xc6\xad\xaa\x94\xea\xf2\x7e\x2f\x4c\x01\x04\xe9\xcb\x6b\xf0\x98\x04\xe5\xf7\x0a\x0a\xa6\xe2\x72\x60\x06\x72\x9f\x26\xa5\x5e\x4e\xa3\x82\xc5\x4b\xb9\xab\x6e\xa2\xfc\x5d\x01\x4c\xcf\x8c\xb6\x92\xf9\x69\xd1\x59\x3b\xbb\xa4\x5b\x4e\x58\xaf\x30\x1b\x2f\x58\x1f\xa6\x70\x4b\x22\xb3\x34\xa5\xf0\xe5\x1a\x58\x86\x81\x34\x4f\xf6\xfb\xba\x70\xfe\xec\x54\xe6\x13\x35\xd5\xdd\x74\x2a\xef\x55\xc5\x38\x35\x78\x87\x30\x9f\x01\x2f\xb5\x16\xa7\x71\x3a\x25\xb9\xfb\x37\xc0\xa6\x41\xb8\xe9\x6c\x3a\x35\xb1\xfa\x39\xe4\x78\x54\x95\xf7\x43\x44\x59\x17\xdb\xde\x22\xb9\xb6\x0e\xf7\x17\xc9\xa3\x8b\x1c\x13\xf0\xf0\x33\xeb\x00\x87\xd8\xb5\xf5\xbb\xd8\x16\x6b\x84\xeb\x62\xbb\x9c\xaf\x24\x2b\x41\xe5\x6f\x85\x0e\xf0\x5b\xf5\xa8\xd4\x3e\xd2\x91\x8e\x61\xe0\x1d\x6a\x2c\x1a\x2e\xa8\x49\x06\x56\x76\x5d\x90\x39\xed\x8d\xf7\xb7\xd8\xd0\xc3\x0a\xb6\x3b\xcd\x19\x2e\x57\x0e\xcb\xb9\x5c\x75\x3d\xa6\xea\xb1\xea\xc3\x80\x21\xe0\xe4\x02\x6f\xd0\xe9\x94\x2c\xa5\x91\x67\x65\x99\x3b\x4c\x3a\x84\x55\x79\xc2\xb7\xb7\xd7\xa4\x5d\xbc\xc2\x91\xc3\xb2\xf8\xe0\x3f\x95\x74\x6b\x71\x8e\x2f\x29\xd9\x56\x87\x17\x25\x98\xf7\x17\xe5\xf5\x2f\x5d\xc2\x19\x51\x35\x43\xe4\x3a\xd0\x82\xa9\x08\x42\xb8\x64\x85\x04\x24\x5f\x67\xc6\xfd\x34\x53\x6b\x74\x95\x75\x07\xf8\x9f\xe3\xae\x82\x9e\xcb\x2e\x24\x80\xd2\x05\x37\xa1\xd6\x4e\xe7\xf2\x5a\x12\xbc\xc1\x50\x56\xe0\x89\x0e\xaa\xb6\x04\x2a\xd0\xcf\x1f\xd6\x56\xd5\x67\xdc\xa0\x69\xc1\x96\xf5\x6a\x64\x86\x05\xdf\xd2\x8a\x70\xc2\xae\x68\xed\x79\x28\x47\x46\xd7\x39\x29\xa1\x4e\x83\xf8\x5f\xe0\xbd\x8a\x45\x77\x18\x2a\xe6\x5c\x11\xf4\xcc\x37\x1a\x4a\xde\x3c\x78\x58\x9f\x65\x4d\x4d\xde\x36\xaf\x6a\x92\x2d\xb2\xab\xb2\xbe\xd5\xbf\xa3\xcd\x40\x92\xd1\xed\xd4\x1f\xd1\x86\x2f\x1b\xa7\x43\xf8\x43\x8a\x69\x71\xc3\xc0\xe7\xc4\x41\x07\xc5\x72\x06\xb4\xa2\xe0\xd8\xe0\x22\x8a\xe0\x18\xa8\xbf\x2e\x1b\x76\xe5\x29\x6a\x3e\x75\x8a\x49\x61\x0d\xae\x28\x8b\xf7\x9a\x07\x89\xa2\x7c\x8a\x73\x0d\x51\xcf\x82\xf4\x7e\x68\xfe\x36\xb2\xe4\x03\x43\x45\xa1\x74\xfc\xa8\x5a\xe9\xd3\xe7\x49\xa5\xbb\xce\x42\xc7\x63\xd8\x11\xcd\xcd\x9a\x21\xcd\x2c\xbf\x25\x45\xf6\x94\x0a\x41\x4c\x56\x10\x1f\x37\x6c\x5c\x8e\xb5\xfb\xc8\x98\xb6\x63\x46\xfe\xbe\xa3\x8c\x54\xe3\xb2\x15\x4d\xb4\x9a\x60\x96\xe1\xc7\x07\xaa\x87\x2d\x2f\x56\x41\x75\x0c\xa8\x22\xe2\x3d\xba\xa1\xdb\xad\x54\xfc\x9a\x60\xbb\x36\x5a\x16\xc4\xbc\x96\xad\xdb\x58\xcf\x64\xa8\xd3\xb0\x06\x43\xaf\xc3\xe5\x6a\xa8\x00\xd9\x85\xb8\x99\x14\xbb\x9b\x8e\xc0\x57\xbe\x3a\x4e\x5b\x5d\x52\x47\xe7\xed\x0b\x86\x1d\xce\xa3\x47\x2f\xf3\x7c\x78\xd2\x83\x6f\x05\x2b\x86\x94\xf4\xaf\x7a\xc7\x93\xb9\x29\x7c\x18\x03\x93\x56\x7b\xc6\x41\x38\x1f\x39\xd9\xc2\xf4\x62\x6d\x7a\xca\x51\x33\xfb\x5b\x43\x3d\xf5\x58\xe3\xa4\xac\x6c\x6f\xeb\xb5\x17\x37\x92\x61\x8a\xe9\xec\xe2\x72\xbb\x6b\x37\xdf\xc7\x97\x20\x50\xbd\x33\x2a\xe1\x84\x3b\xa1\x1b\x0a\xa5\x33\x4f\x5c\xa8\xd4\x13\x7e\x45\xb1\x7a\x3a\xad\x23\x7d\xe5\x72\x8f\x86\x26\x12\xe6\x6c\x3f\x3d\x00\x46\x37\xee\x27\xb1\x3d\xa3\x43\xf8\x38\x8c\xce\x8e\x89\x2c\x58\xb4\x0e\x8d\xb2\x25\x90\x8a\x3f\x6a\xf8\x90\x25\x5b\x61\x2a\xfe\x3b\x39\x55\x75\x43\x71\x03\x7f\xfe\x5e\xb0\xed\xe2\xc7\x1f\x56\x42\x46\xd1\x90\x03\xb1\x05\x8d\xda\xe9\xb4\x8d\x45\x48\xe7\x25\xea\x60\x87\x2c\xe5\xf4\x52\xa8\x1f\x3c\x2b\x89\xef\xd4\xb9\x49\xe7\x66\x3f\xd8\xf1\x40\x5a\x77\xd9\xb7\xbd\xe6\x8f\x8a\xba\xd1\x1d\x5f\xd9\x93\xad\xc9\xc3\x07\x05\xff\xc1\x21\x97\x7c\x85\x4c\x5e\xbc\xbf\x90\x5b\x77\xcb\x54\x35\x41\x3f\xf7\xdc\x3f\x65\x62\x3a\x61\x5f\x7f\x72\x07\xa2\xc2\x9d\xba\x6f\x93\x17\x44\xb2\x06\x61\xd1\xbe\xb7\x44\x7b\x89\x0f\x1f\x53\x3a\x9d\xd2\xb8\x26\xaa\x76\xa6\x92\x8a\xd4\x3f\x76\x26\x6a\x02\x71\xc2\x6c\xba\xb1\xe3\xa5\x83\xf2\xbf\xd0\xda\xc3\x28\x7e\x77\x32\xf1\x38\x72\xff\x0e\x39\x7a\x20\xa7\x33\x35\x88\xf5\xf4\x8c\x25\x4f\x3b\xb4\xce\xc8\x71\xf4\x3a\x54\xfd\x1c\x2a\x0c\xe9\x7e\xef\x46\x38\xd9\xaf\x13\x95\x5e\x8e\x9c\xe6\x31\x37\x86\xa9\xb2\x23\x6e\x0e\x6f\x38\x79\x69\x54\xb4\x5d\x37\x75\x4d\xd6\xfd\x72\x1a\x9f\x6f\x12\x30\x78\x34\xdb\x54\xbf\x1c\xde\x0b\xe2\x5a\xb7\x27\xf9\x84\x4c\xa7\x13\xee\xb8\x06\xbe\x76\x3c\x33\x71\xe3\x18\x3d\xea\x86\x5d\x95\x32\x75\x75\x7b\xdd\xd4\xad\xd1\xed\xe0\xc6\xf9\xfc\x7b\x12\xa4\xd0\x73\xbc\x05\x7a\x35\x68\xa1\x64\x5e\x11\x3a\x14\x30\x53\x47\x54\xbe\xbf\x23\x3f\x73\x56\xae\xf9\x22\x84\x9d\x31\xae\x75\x9e\xf3\xe3\xdf\x82\x15\x88\x89\x68\x8d\xd3\x79\x4e\x53\xf1\x8c\x24\x34\x9d\x36\x4a\xa7\x09\xc5\x02\xc4\x95\x67\xf5\x99\x08\xef\x0a\x32\xbb\xa4\x75\x25\x4b\xa8\xe3\x16\xd7\xb8\x44\x78\x2b\x93\xac\x4b\x47\x9f\xf1\xb9\xb4\x26\xfe\x8b\x6e\x37\x6e\x2e\xc7\xff\x0a\xc5\x46\xff\x35\xb3\x25\x4a\x8a\xa2\xd8\xf5\xeb\x97\x2a\x4b\xa4\x19\x63\x2c\x67\x49\xaa\xf1\xae\x96\x7a\xe0\x0a\xc3\x09\x1a\xdf\x94\xed\xf8\x23\x61\xb7\xe3\x2d\xfd\x40\xb6\xb7\xe3\x72\x7c\x45\x5b\x5e\x7e\x20\xc6\x4d\x33\xdf\x15\x7f\xcd\x77\x98\xe3\x2d\x0a\x2d\x94\x86\x18\xbc\x26\xf9\xf7\x62\x47\xc1\x6d\x57\xae\x07\x2e\xff\x4c\x4f\xc0\x71\xfa\x9c\x5d\x00\xd3\x48\x51\xa7\xda\x88\x35\x3f\x95\x9b\x34\xbe\x2e\x6f\x6d\x6e\x79\xe6\x60\xc6\x13\x12\x10\x20\xa5\xee\xcc\x9b\x82\x43\xb6\x5c\xec\xc4\x05\x73\xc7\xfc\x35\xa3\x15\x2e\x0b\xee\x46\xab\x8e\x43\x9a\x26\x9a\x93\x19\xad\x8c\x93\x2f\x34\x26\xbd\x10\x5f\xd2\x0f\xf1\x1d\x49\xfc\x08\xde\xe0\x36\x42\x37\x13\x83\x6b\x18\x12\x69\x4a\xf9\x89\x95\xd7\xd7\x84\xe1\xa6\x90\xf2\x30\x4c\xde\x7a\xe2\xb7\x05\x4d\xf0\x16\x79\xa9\x12\x6e\xb6\x3a\x0b\x33\x1d\xba\x9a\x6b\xb4\x6c\x57\xa0\xef\x03\x4d\x83\x0e\xe4\xb5\x2c\xc4\xa2\x95\x6a\xb8\x5d\xd7\x75\xf6\xc2\xca\x19\xe6\xa0\x76\xf4\x46\x32\x6a\x8d\xbf\x90\x5b\xbc\x2d\x5a\xa9\xf1\x58\x17\xe5\x72\xb7\x9a\x4e\xc5\xbf\xb0\x47\x23\xaf\x0c\xcd\x74\x6a\x50\x78\xbd\xdf\xe7\xa2\x15\x7c\xb0\xdf\xdf\x75\xd8\x7c\x13\x67\xc5\x21\xeb\x02\x14\xd0\x65\x0e\x70\xca\xe2\x8e\x56\x0b\x2a\x33\xfe\x36\x9d\x37\x1c\x3f\x13\xc4\xc2\x91\x5a\x4a\xb4\x90\x4f\xee\x3a\xec\x55\xaf\x11\x67\xd1\x16\x7e\xed\xf2\x35\xde\x62\x8e\x50\xd7\x01\xc9\x22\x42\xd0\x11\xc3\x34\x72\x98\xb2\xeb\xb0\xaf\x48\x6e\xd0\x59\x03\x64\xa2\x44\x8b\x32\x6f\x10\x1a\x29\x9b\xaf\x8c\x92\xbe\x53\xc1\xbf\xf2\x73\x96\x2c\x0e\x91\xd3\xe2\xae\xc3\x74\x09\xe5\x3e\x57\x85\xfc\xb8\x85\x70\xb3\xce\x39\x18\x2f\xc3\x83\x11\x90\x9a\x46\x71\xdb\xe7\xdb\xad\x74\xcf\x6b\x66\x81\x6b\x48\x5e\x0b\x02\xd5\x2f\xdc\x60\xdc\xcc\x93\x8e\x09\x92\x88\x9d\x4b\x05\x99\x3c\xcd\x25\xea\x0c\xe1\x68\x8b\xbf\xe6\x2d\xe6\x38\x45\xd5\xce\xb7\x5b\x79\xd0\x69\x8a\xb2\x94\x21\x65\xa1\x1e\x65\x39\xdf\x6e\xfb\x84\xa5\x44\x42\xdc\x32\x3e\x5f\x6a\xdd\xcd\x01\x6a\xa3\xe7\xf3\xbb\x3b\xb3\x1f\x5d\xe6\x80\xf9\xb9\x53\x16\x3d\x5a\x41\x55\x2b\x1c\x65\xd4\x1e\xe4\x8c\x10\xe2\x90\x99\x9d\xed\xea\xbb\xdf\x7c\x4d\xd9\x67\x83\x35\x5d\x9d\xac\x0e\x0c\x1c\x42\xef\x4c\x0e\x82\x56\xa1\x54\xa4\x86\xa3\x4c\x58\xae\xb4\x28\x2a\x9d\x04\xf1\x63\x53\x75\x51\xa7\xdb\x6b\xe2\x7c\x2f\x48\x94\xae\xb9\xe2\x7b\xd8\x14\x2c\x78\xa0\xe2\x94\xa4\x07\x80\x20\x10\xf2\x97\x29\x18\x59\x5b\x07\x72\xa3\x85\x99\xd9\x39\xc7\x23\x6c\x8c\x2c\x6e\x1a\x9e\x05\x7f\x2f\xf2\x70\xf5\xbd\x85\xcf\x2e\xc4\x9d\x6a\xfd\xaa\x42\x78\xa1\x30\x2a\xee\x60\x88\x1a\x80\xc9\x44\xc2\x01\xcc\xfa\xa3\x02\x78\xa1\x2b\x41\xbf\x56\x68\x3a\xfd\xae\x17\x65\x53\xcb\x87\x82\xac\x09\x66\x0f\xff\x43\xbb\xc0\x43\x17\x10\xe1\xf2\x8b\xdc\xe0\xa5\xb7\xa0\x17\xe0\xa2\x4d\xfa\xe2\x2f\xa9\x26\x30\xe5\x2f\x54\x09\x42\xef\x2f\x40\x74\xf5\x04\x0e\xb5\x5b\xb4\x42\x6a\xe7\xec\x4f\xa5\x76\x90\xf3\xda\xa9\xd6\x8a\xa2\xa9\xba\x1e\x8c\x5c\x6f\xcb\x35\xf1\x97\x11\x70\x50\x6f\xa1\xcc\x7b\xbb\xdb\x72\x41\x1d\xca\x71\x4b\xd8\x47\xc2\xc6\x7f\xdf\x09\x5e\x29\xbf\x6c\xd8\xb8\xdc\x6e\xc7\xfd\x98\xcd\xb1\x00\x6b\x8b\xc6\xb4\x1d\xd3\xab\xab\x1d\x9c\xbc\xd9\xf8\x6d\x33\xbe\x6a\x2a\x7a\x79\x3b\x56\xab\x6e\xf1\x78\xd7\x92\x31\x6f\xe4\x95\x81\x32\x81\x00\xe0\x7d\x1e\x38\xe1\x5b\xb5\x6a\xca\xf3\xde\xb4\x38\xb3\x40\x48\xc6\x40\xaa\x44\x03\xae\x06\x5b\x7a\xbe\x9d\xf3\xc7\x2a\xe7\x75\xdf\xf6\x19\xaa\x7a\x4d\x20\xcf\x4c\x7f\xeb\x68\x05\x20\x2f\x9d\x13\x7c\xdb\x61\x99\x5f\xa0\xef\x42\xa5\xb5\x90\xfd\xfc\x59\x7a\x93\x33\x84\xfa\x39\xbc\xed\x76\x8e\x2c\x6a\x39\xdf\x60\x1d\xad\xa5\x9d\x90\xe5\xf8\x79\xb4\xa2\x0f\x89\xe3\x08\x8e\xd6\xe5\xec\x97\xeb\xd4\x45\x3c\xfb\x73\x38\xb5\xf7\x60\x7c\xf2\x82\xa4\x75\xf8\xa2\x0f\x9c\x7e\x7d\x13\x73\xc9\x7a\x7b\x89\xef\x94\x6b\xe3\x64\xde\xa1\x0e\xc3\xe5\xe7\xd7\x7e\xf1\xb6\x32\xbd\x89\xe2\x43\x79\x2f\xc8\x64\x3b\x2a\x4d\xc2\x27\xf5\x25\x3f\x75\x7b\xf3\xdd\x3d\x83\x60\x07\xb8\x8d\x9d\xcc\x13\x6e\x61\x31\x97\x31\x8a\x71\x27\xa5\x86\x08\xad\x3f\x36\x1f\x48\x9e\x89\x6f\xc5\x25\x92\x66\x57\x5c\x1e\xa0\x37\xaa\x6a\xe4\x3c\xb7\xbc\x45\xd9\x73\xe4\x84\xd2\x5d\x17\x15\x6d\xdb\x66\x4d\x4b\x0e\xa9\x29\x5e\xdd\xd4\xf2\xeb\x36\x81\xec\xdc\x46\xca\x18\x88\xa5\x6b\xda\xf1\x20\x36\x75\x24\x8b\x87\x80\x5b\x1c\x78\xdc\x09\xf4\xa9\x75\x78\x88\x98\x80\x4a\x08\xd3\xa3\xcf\x57\x2a\x51\x8c\x6d\xed\xac\x52\xa7\x8b\xb9\xa1\x5b\x5d\xb4\xa8\x4f\xe0\xa3\xe3\x98\x6b\x2c\x05\x86\xdc\xa9\x02\x19\xa0\x8a\x0a\x72\x0c\x5f\xeb\x48\xba\xb9\xb9\x21\x87\x5c\x49\x93\x3e\xce\x7e\x6e\xda\x67\xaa\xde\x9c\x05\xbf\xe0\x29\x32\x24\x9d\x3c\xdd\x8b\x39\x72\x0e\xd3\xb8\x7e\xac\x26\x00\xcc\x0c\x08\x7f\x4b\x8a\x7f\x10\x7d\x93\xc6\xef\xd1\xc8\x2d\xe9\x63\xcb\x7e\xaf\x15\x11\xe8\x08\x00\xc9\x16\x70\x65\x15\xf6\xa7\x7b\x41\x6e\x69\xfd\x41\x71\x2b\xf0\x53\xbe\xfb\x1c\x37\x24\xa4\x81\x0b\x2f\xc7\xe0\x5a\xcc\x50\x94\x00\xca\x03\x13\xc2\x1d\x48\xa1\x38\xde\xbd\x37\x30\x62\xe6\x04\x07\x5e\xc0\x93\x5e\x0c\x3b\x56\x88\x7e\xd1\x12\x9e\x24\x6e\x7e\x40\x8e\xdd\xec\x96\x70\x4b\xd5\x0c\x4f\xe3\xa7\xf6\xd1\x75\x5b\xe6\xd8\x5e\x05\x8b\xc9\xa9\xac\x21\xf3\x5c\x30\x5e\xe2\x17\xc2\x00\x6a\xf9\x00\x7e\x9a\x1c\x5e\xfa\x9c\x5e\x94\xfa\x3c\xfd\x44\xf9\xc6\x3d\xab\x2a\x35\x80\xc9\x39\x04\xe9\x7c\xc4\xb8\x19\xd2\xd9\x03\xd9\xae\x9e\x35\xf5\x9a\x18\x4b\x30\x78\x8d\x67\xd8\xb6\x14\xd8\xf8\x0d\x89\x16\x81\xc3\x3f\x1c\xb0\xbb\x2a\x7e\x8b\x38\x89\x0a\x82\x5c\xf1\xa7\xbd\x82\x61\xd6\x3c\xba\xa5\x1f\xfd\x1c\x57\xe9\xd2\xfd\xca\x72\x35\xd0\x42\xf1\xfe\xdf\x37\xd7\x3b\x70\xe9\xf0\x3a\x1e\x36\xb8\x06\x19\xb3\xfa\x59\x3f\x3c\xf7\x4a\x9b\x59\x8b\x38\xfa\x6b\x53\x3b\xf2\x9e\x5f\xc7\x5f\xc6\xb2\x74\x59\xe4\x05\xa7\x36\x72\xa8\xc4\x3f\xb0\x33\xc3\x4d\xb4\x99\x95\xf9\xd6\x43\x70\xe0\xca\x19\x24\xea\x58\xf2\x95\x6b\xdb\x45\xd3\xe9\x37\xc4\x31\xb4\x96\x30\xcb\x56\xd5\x06\x94\xbd\x80\x6d\x53\xda\x52\x3d\x3b\xa7\x7f\xca\x9e\x35\xcc\xb8\xfa\x15\x29\x77\x9d\xe5\x4a\xb9\xe4\xf0\x88\x4b\x0e\x5f\xd6\xab\x11\x3d\xbc\xc6\x53\x4c\x67\xb4\xfd\x96\x56\x15\xa9\xad\x4a\x5b\xe7\xb6\x32\x99\x3f\xa9\x0c\x35\xd7\x26\xe7\x10\x39\x97\x64\x35\x6a\x94\xbf\xad\xa4\x52\xdf\xf9\x2d\xf2\x06\x12\x48\x3b\x59\x5a\xdd\x4d\xb4\x16\xd4\xf9\x43\x6e\xed\xa5\x5c\x2c\xc7\xae\x17\xf2\x12\xd4\x05\xf3\xe4\x36\x41\x8d\x5b\xae\xc2\x10\x6b\x37\x0c\xb1\x5e\xd2\xd5\x2c\xca\xa0\xe5\x90\x26\x29\xec\x47\x87\x02\x76\x39\x73\xcc\xd0\xa9\x4c\xb7\x1a\x1b\xcc\xd4\xc7\x54\x73\xaf\x43\xc7\x91\x20\x07\x0d\x0e\x6e\x7d\xce\xb1\x58\x34\x4c\x27\x0a\xd6\x78\xb6\xff\x41\x84\x59\xae\x14\xb0\xb8\x0b\x2c\x1b\x01\xb1\x02\xbd\x57\x1a\x25\x70\x5b\x34\x3e\xe4\x46\xe5\x7e\x6f\x8a\xf0\xe7\x68\xbf\xd7\x31\x2e\x90\x95\x11\xd0\xa7\x41\x18\x92\x30\xe5\x04\x21\x5c\x82\xae\xc5\x3e\x37\x6c\x1a\xea\x5c\x04\x21\xb3\x08\x9f\x9e\x33\x34\xaa\xfd\x46\xd1\x1d\xae\x8d\x66\x4d\x77\xb9\xdf\xeb\xef\xd0\xd7\xf3\x4e\x07\x15\xce\x2e\xda\xdb\x7a\x3d\x0c\xd5\x08\x11\x90\x98\xe8\xeb\x32\x19\xc2\xb4\x98\xd4\xfb\x3d\x68\x7b\x74\xcc\x50\x53\x04\x35\x38\x80\x50\xbd\x28\xaf\x41\xe2\x44\x9e\x87\x6e\x63\x98\x3a\x54\x14\x5e\xd6\x4d\xf3\x5c\x56\x8b\xdb\xef\x27\x25\xba\xab\x4d\x0c\xf7\xd1\xd8\xc4\x82\xc2\x65\x76\x39\x56\x2d\xa7\x55\x32\x1f\x69\x4b\xdf\x6d\x03\xc0\x7e\x03\x81\xdf\x62\xe2\x3b\x81\x49\xdb\x62\xfe\x70\xfb\x48\x2b\xa9\x1e\x6e\x35\x26\xad\x8b\x76\xb9\x5d\xe1\xcb\x62\x1d\xa0\xca\x44\x50\xcf\x4b\x13\x03\x95\x5f\x2a\xac\xc0\x3b\x89\x10\x6b\x84\xba\x9d\xf1\x8e\x8d\xa3\xc0\x4e\x91\x4f\x57\x6f\x99\xac\x11\x12\xa3\x54\xdc\xcb\x1e\x8c\x7b\xd2\x28\x16\xcc\x86\xf7\x59\xe8\xe7\x70\x68\x04\x48\x84\xae\x98\xce\x3e\x7e\x89\x63\xed\x14\xa1\x62\x47\x00\x9c\xa0\x91\x1a\xcf\xcd\x3f\xa4\x19\x1d\x53\xe4\x3d\x32\x97\x82\x3b\x25\x2a\xf8\xe0\x28\x45\x9c\x26\x0f\x20\x30\x41\x2a\xb3\x54\x8b\x8f\xb9\x8f\x60\xf7\x8f\xbd\x6f\x9c\x24\x58\xfd\x45\x47\x8f\xe8\x3f\x88\x91\x3d\x6d\x04\x06\x31\x15\xca\xb4\x3c\xc0\xe1\xce\xc6\xbd\xe2\x87\x2e\x57\xaa\xd8\x4b\x78\x6d\xb5\x13\xfe\x81\xe7\x68\x3a\xfd\xbb\x3a\x55\xce\x2c\xcf\xd3\xbc\x56\xca\x43\x20\xde\x3f\x43\x67\x7f\x27\x39\xc3\xb4\xf8\x36\xbe\x30\xe0\xdd\x17\xbc\xb7\x40\x16\x59\x9c\xbb\x20\x7c\x98\xff\xae\x43\xfe\xbb\x36\xfc\x37\x5a\xdc\x7b\x42\x07\xe6\xd3\x1d\xc3\xa6\x6a\xbc\xc0\x14\x6e\xc3\x98\x78\x7e\x04\x63\x18\x77\x3e\xa6\x75\x45\x7e\x7e\x25\xce\xac\x68\xf4\xe0\x74\x52\x14\x26\x6e\x84\xcc\xda\x6b\xa8\x49\xc9\xf0\x29\xc2\x93\xb9\xf6\x44\x38\xed\xf2\xc3\x93\xc6\x04\xf9\xf7\x47\xef\x80\xf2\xd5\x88\x4d\xa7\x44\x1a\x08\x3c\xda\x1c\x69\x2a\xe9\x5e\x4a\xe2\x09\xce\xc4\xdf\x89\xb9\xe4\x1c\x7d\x45\xa2\x90\x55\xbf\x66\x55\x38\x7c\x5c\xfd\x62\x05\xc9\xc8\x74\x9d\x4a\x5a\x47\xed\xb0\x1e\xe0\x27\xd2\x2f\xf1\x0c\xc5\xa9\x78\xac\x1c\x57\x44\xae\x9a\xe3\x43\x7c\xb8\x03\x91\x9e\xe7\xc6\x4f\x20\xc1\x11\x67\xf6\xe6\xd5\xdf\xfb\xf6\x28\xf0\x5a\xd7\xf6\xa8\x47\xb5\xb4\x49\x91\x25\x5b\x05\xec\xa5\xb8\xe7\x38\xea\x6c\x5f\x3f\xfe\xe6\x6d\x5b\x7f\x1d\xb4\x6d\x49\x5f\x00\xad\x56\x74\x7c\xd6\x3c\x97\xe0\x0f\xb4\xae\xbc\x07\x4e\xee\x3a\xf7\xf1\x15\x11\xb4\xc2\x77\x27\x5e\x97\x75\x53\xd3\x75\xb9\x7d\x11\x79\xd9\x77\x62\xfe\x40\x6e\xbd\xbf\xad\x9d\xdd\x7f\x1c\x99\xa5\x57\xa8\x36\x98\xae\x5f\x08\x2f\x31\xc2\xb3\x86\x3d\xbf\x12\x74\x82\xf2\x60\x59\xc1\x27\x17\xda\xc1\xaf\xd7\xd9\x05\x27\x57\xd7\x56\xea\xf3\xd6\x1a\xe6\x61\x33\x6a\x02\xd6\x4f\x51\xe6\x7d\xb9\x29\xbd\x12\xe6\x44\x07\xd4\x85\x8d\xce\xeb\x5b\xd7\x41\xa2\xb7\x3d\xfe\x38\xc0\xe9\x87\x5d\xf4\x12\xa9\x99\x49\x8a\x9b\xc3\x6b\x2d\x4e\xdf\x9b\xde\x1e\xf8\x48\x44\x1d\xfc\x91\x91\x36\xca\xe5\x84\xf5\xaa\x73\x47\x0b\x0b\x8f\x42\x6c\xab\x7d\x44\x83\xc4\x86\x09\x3c\x73\xde\x79\x1e\xed\x02\xc3\x98\xf8\xd7\x55\x0c\x3a\x68\xc6\x63\x18\xa6\xab\x86\x27\x11\x6d\x52\x14\xe5\x74\x5a\x26\xf0\x8d\x0d\xa1\x5a\x04\x71\x4e\xf4\x4c\x1d\x04\x74\xcc\x7c\x49\xf4\x8b\x61\x92\x93\xb1\x3b\x8e\x45\x4e\x83\x18\x06\xc5\xb1\x54\x62\xcf\x64\x6e\x6d\xcd\x90\x85\xa4\xa7\x7b\xa2\xa1\x33\x6c\xa4\xa4\xd8\x24\x82\x3a\x1d\x76\xbf\x7c\x13\xff\x30\x9f\x04\x60\x55\x39\x57\xfc\xae\x10\xf4\xb5\x29\xdb\x37\xbb\xeb\xeb\x86\x71\x07\xf6\xe9\x42\x0e\x9e\xf3\xdd\xa4\x80\x84\xf7\xb1\x8f\x6c\xda\x8c\x44\x83\xfe\xe0\xf7\x1a\x94\xa5\x06\x63\xe1\x20\xf6\x94\x3c\xa1\x95\xb7\xd3\x71\x76\x41\x17\xcc\xb0\xd0\x1b\xe9\xb0\xed\xcb\x86\x9d\x6f\xf5\x41\x72\x62\x67\xc0\x01\x93\x0c\x2d\x27\x67\xc8\xa6\xde\x65\x18\x72\x4b\x31\xbf\x24\x2a\x47\xfe\xe4\xa5\xef\x2c\xd5\xa5\x30\xf4\x22\x84\xe0\x68\x97\x34\x29\x8a\x48\x9b\xfd\xde\x04\x65\x86\x6b\xce\xdd\xaf\xc1\x83\x08\x53\x7f\x5d\x09\x41\x29\xa6\xf0\x51\xb7\xba\x43\x79\x40\x61\x15\xbb\xe5\xc3\x36\x32\x42\x40\xa9\x01\x76\xb4\x92\xae\x68\x23\xbe\xa4\xab\xfd\x3e\x17\xff\x89\x7b\x9e\xe4\x35\x42\x9d\xcd\x2c\x36\x7f\xd8\x3c\x8a\x52\x35\x6f\xdc\x46\x8f\xab\x2b\x16\xc5\x1a\x2f\x9b\x95\xf1\x76\xd2\x13\x28\xc5\x04\x5a\x39\x81\x56\x4d\xa0\x84\x7c\xc1\x34\x05\x4f\x0f\x5a\x13\x97\x42\xee\xf7\x10\x37\xa6\x32\x13\x9e\x69\x1f\xf9\xab\xe6\xa3\xb3\x53\xca\x4e\x66\x6c\x09\xf2\xfd\x63\x3d\xe1\x74\xc3\x5e\x06\x4f\xa9\xa0\x9a\xcc\x91\x2a\x94\x21\x13\x80\x46\x29\x9b\x68\x25\x96\x24\xb5\x6e\x40\x2c\x7b\xaa\x6b\x20\xad\x44\xb4\x02\xd5\x61\xbc\x7a\x4e\x6f\x57\x1f\xda\x52\x55\x0f\x8d\x94\xb2\x9c\xaf\x46\xd1\xc5\x0b\x96\xd1\x32\x88\xe9\xad\x7a\xc8\xc2\x5e\xeb\x82\x05\xbd\x46\x40\x96\xd7\x72\xe7\x64\x83\xf3\xad\xf3\xaa\x55\xe0\x8c\x94\x22\x8c\x27\x46\xd5\x76\x48\xbd\x58\x93\x5a\xcd\xe9\x3e\x32\x85\xe4\x38\xbd\x75\xaa\x0e\xe5\x28\xa0\xf2\x32\xdd\x41\xf9\x22\x77\x2c\xa7\xff\x84\xe2\x66\x44\xfa\x02\x8d\x13\xc1\xd2\xdf\x09\x69\x46\xa6\x82\x91\x8f\xf7\xee\xeb\x0a\x53\xfd\xfb\xdf\xc3\x57\xb6\x9e\x93\xa0\xa2\x27\x27\x66\x9c\x18\xb8\x92\xe6\x80\x20\xd4\xe8\xc4\xd6\x4b\xe7\xd2\xdd\x25\xde\x61\x0e\x91\x48\xec\x84\xab\x43\x31\xd0\x6a\x60\x5a\x45\xc4\x2c\xd8\xdb\x40\xa3\x15\x8e\xbf\x56\x9a\x40\x8d\x64\xbb\xeb\x48\x8d\x23\x50\x20\xa7\x11\x00\x3b\xe7\x3a\xc2\x90\xe8\x53\x9d\xea\xbd\x70\x45\x5b\x53\xe4\xd6\x5c\x72\x6e\x05\x87\x81\x7b\x8c\x6b\x57\x9c\xd1\x8b\x9c\x87\xdc\x1b\x4a\x01\x38\x60\x57\x55\x8d\x83\xc4\x80\x51\x26\xc4\x19\xd8\x78\x45\x44\xf9\x0a\x2c\x68\x43\x9a\xab\x5c\x8d\xea\xfd\x3e\x3f\xd0\x46\x66\xb5\x0f\x13\xb1\x03\xdf\x79\xa7\x73\x11\xdc\x01\x83\xbe\x70\x29\x7e\xd7\x41\xd6\xfb\xfa\x68\x28\xd8\x23\xfd\x79\x0f\x43\x9a\x24\x06\xe7\x61\xb8\x21\x1a\x9c\xdf\x3d\x4e\x85\xd6\xe5\x1f\x7d\xbb\xd9\x6d\x39\xb0\x20\xa7\x5a\x58\x4e\x74\x89\xa8\x23\xb0\x49\xcc\x29\xc5\x99\x0e\x61\xc6\xa7\x7d\x35\x00\xe7\x10\x27\x0e\xdd\x00\x1e\x81\x2d\xfc\x60\x75\xef\x86\x12\x90\xe7\x86\x1e\x5d\x59\x32\xf4\x13\xe5\x9b\xe7\x75\x45\x7e\x96\xca\x5d\x78\x2d\x23\xb4\x5e\xab\x02\x03\x76\x55\xb2\x72\xad\x6d\x37\x4c\x19\x14\x97\xec\x6c\x5e\x8a\x46\x0c\x00\xe0\xf8\x3d\xe4\x80\x57\x9f\xb0\x1d\x02\x28\x9f\xf0\xd9\x2f\xa0\x0a\x9e\xe8\x8c\xc0\x31\xfd\xfe\x48\x34\x0c\x37\x74\xec\xfd\x10\xde\xfd\x31\xde\x2f\x7d\x78\xef\x7b\x66\xff\x87\x1e\xd5\x21\x40\xc7\x80\xe8\x2c\x2e\x5a\xce\x79\xe8\xe0\x68\x35\x3a\x2f\x5e\xe8\xdc\x6a\xce\x71\xd1\x05\x9e\xe3\xc0\x1f\xb8\x52\x7a\x8d\x63\x04\x5b\x6f\xb5\xf5\x26\x1c\x22\xf9\xbf\xce\x2a\x07\xee\x87\xfb\xdd\xa0\x03\xeb\xee\x5d\x54\x06\x00\x47\x71\xe0\x8f\x9b\xab\x6b\xd1\x7e\x7b\x1b\x05\x49\xe8\xd9\xdc\x63\xb5\x86\x44\xea\x60\x8d\xd8\x99\x7f\x58\xb4\xd2\xca\xcd\xc3\xca\x87\x1a\x39\x31\x56\x42\xb6\x9e\x4e\xf3\x17\x79\x8d\x89\x47\x97\x63\x4b\x13\x40\x17\xc4\x5f\xca\xe3\xa8\x1b\x79\x58\xa3\x65\x80\x1a\xc5\x75\x8d\xbd\x06\x46\x34\x96\xcd\xb5\x53\x4a\x02\xae\xfe\xde\x1d\xb9\x73\x51\x8c\xf6\xb7\x33\xe1\xf6\xe2\x0a\xb2\x23\x5f\x95\xeb\x25\x42\x80\x8a\xc3\x3d\x1e\x0c\xac\x22\x4a\xd8\x37\x05\x84\x65\xcd\x32\x4f\x35\x9b\x10\xff\x9a\xeb\x5b\x27\x21\x79\xc4\xd4\x1c\x5e\xe3\x39\x5f\xd6\xab\xc8\xe2\x7a\xc5\x6e\xbd\x95\x68\x7e\xc0\xae\xcc\xb5\x38\x68\x1f\x79\x17\x7b\x20\x6c\x5b\xfa\x06\x3b\x4a\x83\xef\x68\xfd\xa1\xbf\x37\xa0\x0b\x27\xb6\x55\x20\x08\x2b\xe3\x71\xac\xb6\xd6\xc0\x9d\xa5\xa3\x44\x20\x12\x42\xa7\xea\x97\xdb\xea\x3f\xf4\xfa\x15\xaf\x07\xb9\x9a\x80\x2a\x28\xc9\x29\x3e\x8d\x68\x11\xf5\x58\x3b\x62\xbb\x89\xeb\x94\x63\x1d\xc5\x5b\xea\xae\x22\xea\x88\x7e\x2f\x31\xfd\x76\xbc\x03\xa9\x9f\x3e\xd0\x81\x6c\xa4\x3b\xe8\x15\xca\x89\x6c\x60\xaf\x89\x03\x89\xbe\xed\x24\x06\x85\x7e\x2b\xe8\xe2\xda\x73\x53\x73\xd4\x10\x93\x53\x5c\x8b\x73\x09\x9a\xd7\x2b\xc2\x4b\xcf\x43\xef\x05\x11\x32\x8c\xb2\xf3\x3b\x7a\xe3\x4a\xdc\x1a\xb6\x62\xa8\x6c\x2c\x05\x1e\x19\x3d\xcc\xa5\xef\xca\x18\xd2\xaf\xe8\xa2\x4a\x8a\x6c\x4d\xa7\x93\x81\xcd\x47\x77\x4c\x7b\x55\xd2\xc2\x8b\x38\xdd\x28\x53\xcf\xd9\x72\x25\x33\xfd\x85\x63\x53\xcc\x51\x07\x0b\x01\x3f\x04\xa8\xf8\x2e\x7e\xcc\x54\x92\x32\xed\xc1\xe6\xc2\xad\xbd\xa1\x7c\xbd\xc9\x75\x9a\x6a\x74\xb7\x2e\x5b\xa2\xd3\x57\x2f\xb4\xe9\x7a\x04\x4f\x55\x49\x5b\xf5\xf4\x6e\xc3\xc8\xe5\x82\x74\x9d\x13\xdc\xd6\xe5\xe1\x90\xa3\x66\x3a\x6d\x66\xa2\xa9\xfe\x5f\x07\xc0\x89\x76\x10\x52\xef\x43\x51\x90\x84\x5c\xb6\x44\xb0\x1a\xe7\x68\x27\xea\x10\x69\x2d\xad\x4a\x42\x29\xb7\x60\xbf\xf7\x3d\x45\xd4\xa6\x4d\xa7\x73\xd3\x44\xd1\xc5\xd1\xb1\xc4\x63\xa0\xdc\xd1\x61\x5d\xe9\xe9\xb0\xc6\x55\x29\x33\x04\xc2\x18\x9f\xb5\x01\x2d\xe2\x84\x2b\x3e\xa8\x0d\x2f\xfa\xd0\xa6\xe7\x85\x81\xc7\x13\x95\xb8\x6e\xed\x50\x97\xcd\x16\x65\x33\xb2\x89\xbc\x5e\xb7\xcd\xba\xdc\x02\x29\xef\x91\x00\x49\xfb\x2c\x36\x46\x08\x63\xc4\x31\x21\x8c\x53\x54\x19\x99\x07\x02\x15\x9d\x95\xa9\x6b\xd2\x56\x3a\x73\xec\x76\xb1\x12\x76\x96\x77\xd9\x84\x66\x3e\x93\xd8\x4d\xe5\x2b\x4d\xb0\x5a\x3d\x22\x27\xbe\x95\xe9\x47\x59\xbc\x66\x20\x1a\x91\x63\x33\x9c\x86\x63\x76\xfd\x69\x16\x61\x21\x3c\xe7\x9d\x0c\xc8\xfc\x31\x16\x90\xf9\xa3\x13\x90\x69\x7d\x38\xfe\xf4\x9b\x77\xae\xf8\x4b\xc4\x8f\x1d\x33\xbb\x82\x3a\x0f\x33\x6b\x68\x8f\xd6\xb2\xd0\x49\xe8\xc0\x14\x67\x5a\x49\x96\x11\x59\xce\x09\x90\x59\x1b\x79\x4b\xaf\xb4\x93\x7d\x1a\x4b\x6b\xe5\xbc\x3d\x90\xf6\xad\x74\xbd\x2e\xca\x70\xe8\xe5\x2a\x1c\x16\x9e\x44\x87\x9c\x9c\x0e\x0d\x27\x03\xe6\x61\x30\x09\xc6\xb2\x63\xe2\x70\xf1\xa2\x46\x16\x25\x02\x71\x81\xd9\x37\x08\x3b\x98\xe3\xa6\xc8\x2e\x38\xe6\xb3\x8b\x0b\x78\x77\x71\x51\xb0\x91\x9b\x31\xa3\xee\x1b\xa5\x53\x0a\xf2\x98\x9e\x29\xaa\xea\x03\x85\x93\xb9\x6e\xd9\x99\xdf\x52\xd6\x83\x32\x1e\x67\x73\xac\xd5\x90\x41\x0b\x95\x3b\x15\xbb\xd1\xd9\xf1\x89\xf9\xa8\x22\x18\xd4\xf6\xb0\xa1\x8e\xa3\x3b\xb7\xe7\x44\x7b\xb7\x6b\x5f\x7a\x51\x8c\x86\xa4\xc8\x66\x33\x35\x91\x87\x39\xdc\x5f\x4b\x17\xac\x35\xb9\x44\x1c\xc4\xdc\x4b\xf8\xb9\xf5\xb6\x94\x1f\x38\xee\xbf\xf1\x20\xef\x2a\xfe\xfc\x64\x6b\x12\x8c\xc7\x4b\xd5\x4e\x9e\x1e\x36\x1a\xc2\x8d\xe9\x34\x0f\x92\xf6\xc4\x76\xdf\xfa\x2b\x22\x5c\x7f\xfd\xe0\x54\x81\x3b\x8e\x45\x35\x3e\xf5\xf1\xe4\xd0\xb4\x63\x18\x73\x5f\x0b\x5e\x7f\xbc\xe1\x6f\xed\x98\x29\x39\xd9\xb3\xfe\xc5\x57\x1a\xba\x8d\xf9\x9b\xfd\x0b\xa6\xe4\x6c\x76\x5a\xfa\xe6\xb1\x55\xf7\xda\x7b\x67\x66\x14\x33\xeb\x86\x5b\xfc\x50\xfa\xa3\x0e\xee\x31\xf8\xa6\x0e\xaa\x20\x39\x2c\x62\x58\xc8\xe7\xb1\x99\xe0\xd8\x01\x8a\xe4\xfe\xf6\xeb\x0d\x0a\x01\xff\xc1\xa9\x4a\xe1\x2d\x57\x42\x50\x07\x4e\xec\x82\xfa\xae\x4b\x9e\xb3\xc8\xf9\x83\x8c\xb6\x16\x86\xfe\x74\x7b\x38\x12\x3d\x99\x76\xaf\x0e\x9d\xc7\xfe\x6e\x1d\x3a\x0a\x2a\x49\x18\xd3\xca\x19\xaf\x86\x5f\xb0\x61\x86\xd3\x8d\xd1\x97\xda\xec\x57\x9a\xba\x1c\x29\x9a\x7b\xf5\x22\x22\xb0\x18\x50\x00\x18\x4a\x43\xa0\xf4\xf8\x72\xe5\x25\x03\x08\x4f\xa0\xf6\xf0\xef\x9b\xd3\xc1\x5d\x0e\xa4\x4c\x74\xc0\x31\x96\x4b\x23\xaf\x8c\xbf\xd2\x51\x09\x10\xdc\x10\x35\x96\xd7\xc6\x64\xec\x16\x4f\xe1\x83\xe6\x2e\x08\x11\xd2\xd3\xa0\xc5\x1c\x37\x76\x1a\xf4\x51\x63\xa3\x9d\xca\x82\x40\x8d\x9e\x61\x23\x5f\x89\x74\x3a\x95\xa8\xbd\xb2\x94\xd9\xae\x41\x9e\x79\x5e\x53\x4e\x53\xe6\x49\x9b\xad\x34\x10\xdd\xd0\x74\x4a\xa6\x53\x29\x7a\x2b\x52\x35\x18\x0f\x67\x63\xe1\x06\x2e\x12\x36\x6c\x65\x67\x81\x22\xd0\x7d\x96\xb4\xbc\x8b\x9b\x20\x42\x1f\x12\xda\x3a\x93\xae\xa3\xb3\xb8\x1c\x32\x02\x09\x25\xa3\x23\xef\x91\x23\x24\x3c\xc7\xc5\x1f\x13\x21\xe1\x91\x98\x84\x87\xa3\x47\xe4\x13\x67\xe0\x1f\xb3\xa3\x27\xf0\x9e\x70\x9f\xd9\x31\xe9\xf6\xfd\xbc\xfa\x71\xe5\x89\x38\xa3\x32\xcd\x57\x9f\xac\x24\xe3\xeb\x21\xbb\x48\xdb\xec\xd8\x9a\x3c\xaf\x48\xcd\xe9\x25\x05\x35\xbd\x36\x85\x29\x45\x85\xd2\x6c\x14\x77\x4a\xb5\xb1\x30\x2f\x4d\xbc\x35\x51\x33\x90\x39\x86\xf4\x23\x71\xad\x7a\x2e\x79\xd2\x3f\x90\x88\xe5\x26\xe5\x65\x40\x61\x9b\xce\x84\xb6\x2f\x9b\x1a\xe2\xff\x98\x92\x24\x64\x6c\x14\x73\xca\x6d\x99\xb3\x11\xe8\x7f\x89\xab\xff\x65\xcb\x7a\x15\x6e\xa0\xbf\x7d\x41\xf6\xcb\x65\xbd\x92\x02\x2e\xfc\xa2\x15\xea\x94\x77\x40\xf4\x34\xe7\x4c\xf1\xe2\x43\x9a\x5b\x08\x1e\xa5\x45\x8d\xf3\x46\xcb\xfd\xe5\x76\xfb\xdc\x75\x3f\x6c\xcf\x19\xd1\xc5\x9d\x02\x41\xde\xc1\x41\x6f\x7f\x19\xa9\x76\x6b\x92\x47\xa3\x3d\xc9\x7e\xcf\x6d\xf4\x65\x87\x27\xa7\x26\x5b\x26\x51\x4c\x83\x56\x65\x03\x99\x8f\xb1\x11\x07\xfa\x9f\x84\x03\x20\x3c\x21\x52\x26\xff\x13\xc9\xa9\x23\x93\x37\x10\xde\x29\x1e\xe2\x12\xe1\xba\xcb\xff\x4a\x1c\xa9\xfc\x77\xbf\x79\xa9\xfc\xdf\xbf\x98\x54\xde\xf3\x40\x4d\x4a\xcd\x71\xd1\xda\x11\x7d\x23\x7d\x29\xf9\x38\xe8\xe9\x37\x24\x35\x9b\xbc\xb1\x3d\x63\x01\x31\xde\x69\x9e\xb3\xdd\xc2\x55\x19\xb9\xbe\xbd\x51\x36\x37\x8f\xb7\x3e\xc6\xe0\x7f\xb4\xfe\x33\xea\x4c\x7a\x8a\xd4\xed\x3f\xec\xfe\xe3\x2e\x33\xea\x4b\x14\x15\xf3\xbd\xc5\x26\x5d\x63\xfc\x6f\x86\xad\xb3\x2e\x69\x3b\x38\x63\xc3\xc1\x0e\x79\xea\x5d\x45\x9e\xf5\xf1\x33\xc6\x38\x90\xc3\xae\x7e\x4a\x51\x30\xac\x6f\x39\xa8\x6d\xf9\xbc\x90\x0d\xd9\x9f\x7b\xea\x60\x7e\x01\x4a\x1a\x94\x3b\x4e\x89\x73\x6f\x1d\xce\xd0\x11\x8a\x67\xc2\xfe\x62\x92\x71\x14\xd4\xe0\x1f\x1b\xdb\x99\xc2\xcd\x8b\xd7\xc3\x3d\xe7\xb3\x04\xe1\x1c\x5a\x61\x72\x89\x11\x97\x86\x43\xab\x54\x9f\xf4\x04\xd9\xf8\xb4\x86\x05\xf6\x41\xf2\xd8\x7b\x6e\xa5\xf2\x49\x04\x7e\x67\x3c\x30\xe5\x2f\x12\xe0\xd2\xf6\xad\xf0\x30\xa5\xa0\x1b\xd3\x27\x0c\x02\xfb\x38\xf1\x7f\x50\x81\x38\xe8\xe4\xf7\x79\xee\x93\xc8\x42\x43\x2a\x30\x78\xf8\x0f\xa3\xda\x90\xee\x22\xba\xc0\x03\x18\x7e\x4f\x5d\xc7\xd1\xf3\x3c\x18\x32\x10\xd5\xba\x1d\xa1\xff\xfb\x84\x93\x6a\x65\xbc\x64\x85\x80\x94\x94\x37\x28\x34\xc4\x87\x3b\x5a\xea\xbb\x87\x96\x78\xf8\x26\x1b\xa0\x7d\xbf\xf8\x4e\x99\x7f\xba\x8a\xf8\x9f\xad\x20\xb6\x50\x18\x92\xb1\xa1\xfc\xb0\x27\x65\x47\x48\x81\x96\x8e\xfa\xe4\x33\x21\x47\xeb\xfc\xf9\x89\xcf\x14\x71\x49\xcb\xf3\xee\xc5\xa5\x44\x71\x3e\x24\x8a\x5b\x37\x0d\x68\x09\xda\x00\xe2\x4b\xe8\xbc\x27\xa1\xf3\x98\x84\xce\x8f\x90\xd0\x03\xf1\x1c\x8c\x29\x72\xc2\x2a\x96\xd0\xb1\xaf\x1c\x29\x71\x2b\x71\x5b\xc8\xda\x08\xf7\x84\xed\x18\x23\xc6\x6c\xb0\x56\xfc\xf5\xe7\x11\xb7\x7b\x7b\xa7\x65\xe8\xdc\xad\x6d\x6e\xa4\x60\x95\x22\xf8\x77\x31\xe9\xf7\x77\xbe\xf4\x2b\x06\xf9\x8f\x43\xa9\xe2\x9c\x38\x65\x5d\x3d\x2b\x52\xa5\xcb\x85\x6c\x10\x3b\x0d\xf0\xa3\xff\x20\x95\x1f\x22\x7a\x54\xa3\x74\xde\x38\x6f\xc0\x0f\x82\xe8\xb9\x4f\xbc\x56\x45\xff\x0b\xf5\xd7\x50\x76\xb9\x4d\x19\x0b\x63\x35\x61\xbd\xf1\x09\x2f\xc9\xaa\xc3\x46\x63\x9c\x4a\xcc\x93\xfa\xda\xcf\x75\x11\xab\xf3\x86\xee\x48\xce\x30\x87\xf0\x0e\xc8\x9f\xf1\x9e\xf0\xfb\x8e\x82\x59\xc1\x55\x26\xa0\x09\xf3\x42\x3c\x1d\xbf\x55\x7a\xe8\xec\x24\x4b\x12\x84\xdf\xd9\xb4\xc5\x30\xa8\x3c\x97\x4b\xb2\x4a\xd6\xa4\x61\xfe\x50\x89\x3a\x09\x6e\xca\xfd\x1a\x41\x09\x81\xd8\x67\xf1\x42\x49\xc1\xd7\x6a\xd3\x5d\xb7\x2f\x59\xee\xf1\xac\x26\x37\xe3\xbf\x10\x48\x8c\x4f\x30\xc3\x0d\x5a\x88\x27\xff\xee\x3e\xe9\x72\xea\x22\x1b\xae\x31\xa4\x0b\x33\x29\x82\x7c\xef\x8f\xff\xfc\xcd\xeb\x99\xfe\x4c\x8a\x53\xec\x62\x55\x2c\xbf\x86\x66\xf4\x4c\x4e\x08\xed\x14\x5e\xe9\x4c\x03\x9a\xe3\xd0\x59\x02\xbc\xf3\xaa\x12\x1e\x5c\x10\xa8\xb0\x16\x64\xa1\x60\x49\x32\x71\x11\x8f\x08\x08\xf2\x65\xd8\xc4\x2c\xde\xb7\x20\x66\xf8\x8f\xde\x5d\xb6\xcf\x83\x56\x4e\xb1\xb1\x5e\x72\x8c\x67\x5b\xfa\x7e\xc3\xcf\x53\x0d\xaa\x30\x33\x85\x29\x1c\x55\xe9\x0c\x37\xc1\x84\x54\x71\xfc\xe8\x63\xda\xd4\x8f\x9b\xab\x2b\xda\x7b\x1f\xc0\xc7\x4b\xa0\x10\x85\x8e\xc3\x85\x45\xf6\x20\x9a\xe1\x53\xc2\xca\xfc\x29\xe1\x64\xb2\x31\xb4\x84\xe7\xc8\xa4\x48\xa0\x60\xc6\xea\x11\xd0\x26\xce\x98\xf4\xf3\x1d\xdc\x51\xc5\x48\xe8\x62\x1a\x3e\x66\x61\x8d\x48\x0b\x0f\xad\xba\x0e\xcb\x3a\xcb\x49\x16\xc1\xaf\xbe\x2e\x16\x64\x92\xd2\xf9\xcb\xeb\x17\xb8\x12\x0c\x80\xe5\x1f\x2e\xd6\xf0\xb4\xfa\x8b\xa0\xca\xc4\xa9\x62\x87\x90\x5f\x72\x44\xb6\x06\x47\x54\xaf\x59\x1f\xb5\x74\xfd\x77\xc9\xe5\xc8\x51\x9d\x12\x9f\xb9\x60\x79\x83\x1c\x09\x0a\xa3\x08\xdf\x5d\x87\xa1\x19\xc0\xb4\x18\x29\xab\x82\xa2\xf5\x92\x8d\x61\x02\x4a\x42\x78\x96\xa8\xd4\x13\xd2\x63\x48\x2d\x5f\xd8\xb9\xe2\xf0\x81\x62\x68\x1b\x71\x43\xf6\xa6\x7e\xa8\xfc\x82\x07\x84\x7e\x6a\x27\xe7\x35\x32\x61\xe3\x62\xac\x0b\x70\xb2\x90\x15\x19\xdd\x31\xea\xd9\xeb\xa7\x8f\x5f\xbd\x7e\x72\xf1\xe4\xfc\xed\xf9\xc5\xd3\xd7\xaf\x5f\xbd\x7e\xa3\x81\x25\xa9\x8b\xd9\xf5\x08\xb1\x89\x08\x53\x5e\xd1\xc7\x00\x15\x0d\x9a\xba\x98\x28\x84\x0c\x40\xf6\xfe\xe4\x34\x00\x0e\xce\x71\xbf\x5f\xae\x44\x2f\xb4\xef\xde\xe9\x00\xb1\x88\x02\xd1\x7f\xd3\xdf\xd0\xb0\x85\xc0\x4f\x31\x96\x0c\xb1\x90\x5c\x65\x04\x31\x0c\x71\xd2\x7e\xc2\x91\x63\x22\xa7\xac\x1b\x26\x3c\x47\x6d\x57\xa2\xb9\xe0\xa8\xfb\x5f\x90\xfe\xb0\x04\x7b\x27\x57\x9d\x2d\x43\x19\xeb\x4b\xca\xae\x48\x95\xa3\x63\x26\x67\x68\xe9\x11\xd3\x74\xe8\xae\xe8\x01\xa8\x5d\x1f\x3c\xe1\x71\x18\xb8\x24\xdc\xd7\x95\xaf\x2d\xf0\x51\x12\xd0\xbc\x7f\xc0\x13\x19\x3d\xfa\xf8\x7b\x88\x27\x73\xaa\xe6\xb3\xc2\xe7\x34\x0f\x15\xd0\x06\xef\x76\xaf\xff\x25\x5d\x69\xbf\xf6\xfe\x1b\x55\x37\xd1\x7b\x0c\xbe\xb6\x14\xe9\xe4\xaa\x1d\x10\xf0\x14\x01\x1c\x48\x58\xb1\x8e\x10\x4b\xee\x2d\x87\x98\x38\x2c\x97\x8a\xd5\xc5\x5c\x30\xb5\x66\x85\x8f\xa8\x5d\x65\x03\x39\x20\xa1\xb6\x69\xb3\x1a\x95\xcb\xf9\xaa\x28\x8a\x72\x79\xba\x32\x79\xef\xd8\xb2\x59\xc1\x8c\x7b\xc3\x0f\x4c\x55\x5e\x05\xbc\x3f\x17\x3d\xbd\x3e\xb6\xe0\xba\xf0\xae\x94\xbb\x0e\xab\x7c\x33\x31\x49\xa8\xf1\xd6\x5d\x23\x5c\x16\x73\x48\x82\xab\x16\x59\x3e\x6a\x1f\x96\x7a\x91\xbb\xa2\x59\x96\xab\x11\x5d\xee\x56\xc5\x92\x2c\x77\x2b\x5c\x2f\x77\xab\x95\xe6\x54\xa9\x3c\x2f\xe2\x62\x4c\x9f\x90\x97\xe4\x06\x0e\x45\xb3\xdd\xbe\x2b\xd7\x1f\xe2\x50\x00\x08\x84\xd7\xaf\xa1\x26\x36\x2d\x53\xe4\xda\x03\xc5\x43\xff\x56\xe8\xdf\xa5\xc1\xf1\x33\x2e\x9e\x4a\x93\xec\xc6\xbc\x3a\xda\x6d\xff\xe2\x34\x9a\xa7\x08\xb1\x33\x2c\x82\x69\x32\x78\xb0\x9d\xcb\x69\x80\x22\x61\x02\x38\xdf\x23\x62\x3d\xf2\x72\x60\xe2\x40\xda\x2a\x5a\x85\x97\x7a\x9f\x8a\x9a\xbb\x2f\x49\x38\x63\xec\xa6\x0b\x18\x09\x05\xe5\x7c\x05\x6e\xfa\xe0\x91\xf5\xa9\xdc\x89\x47\xb0\xdc\x82\x9d\xc1\x4d\x4b\xfa\xd7\x2c\xee\xb3\x37\x42\x72\xb7\x98\xa0\x6a\x10\x79\x99\xd1\x5d\xd6\xcd\x96\xe9\x4f\x71\x6d\x49\x22\x6e\xd4\xce\x07\xf0\x20\xcd\xcf\xdd\x0b\x4f\x80\x6d\x1b\x28\xe2\x1a\xb2\x3d\x6f\xde\x9e\xbf\x7d\xaa\x36\x21\xc2\xd2\xb8\x9d\x1f\xc5\xd1\x28\x86\x46\xf9\x12\xc5\x92\x79\xa5\x08\x3c\x41\x5a\xcd\x29\xb1\xb4\x25\xfc\x09\x65\xfc\xb6\xdf\x55\x98\xbe\x3a\xd6\xd7\x88\x19\xdf\xda\x20\x39\x4d\x0b\x5e\xa3\x8d\x78\xf8\xb6\x89\x75\x6e\x8b\xc3\x46\x27\x19\x76\x06\xc5\x62\x1b\xe7\xe0\xc5\x27\xfc\xff\xb3\xf7\xee\xed\x6d\xdb\x68\xa2\xf8\xff\xfa\x14\x12\xcf\x73\x54\x62\x0d\x29\x72\xd2\xbd\x8c\x1c\x46\xe3\x26\xe9\x34\xb3\x4d\x93\x5f\x92\x4e\xa7\x47\xd5\x7a\x69\x09\x92\xd0\xd0\x80\x06\x84\xec\x78\x2c\x7d\xf7\xdf\x83\x2b\x01\x12\x94\x28\xc7\x49\xd3\x8e\xf7\xd9\x69\x2c\x02\x78\x71\x7f\x6f\x78\x2f\x3b\x20\x56\x82\xfb\xe8\x11\x4e\xe5\xad\xfa\x29\xcd\xdf\x20\x81\xd6\x2a\xae\x8b\x6a\x0d\xaa\x38\xaf\x7a\xd0\x64\x04\xd8\x22\x98\x12\x28\x2c\x09\x2b\x04\x46\xc5\xda\x62\x6e\x48\x2d\x6b\x51\x89\xc7\x82\x98\x4d\xba\xdd\x58\xff\x55\x4b\x8c\x54\xb1\xc9\x82\x5c\x77\xf2\xc3\xdc\x6d\xcc\xcb\x7c\xb7\x7d\x5e\xbe\x4b\x9e\xdb\x3e\x7d\xdc\xc5\x21\x0d\x01\xdb\xb3\xeb\x9e\xed\x88\xde\x71\x03\xce\x2e\x54\x10\x5c\xb1\x5b\x32\x12\x36\xe4\x49\x92\xc4\xa8\x08\xd5\x5f\x5d\xee\x51\xed\x3e\xa1\xc9\xb0\xc0\x62\x63\x34\x01\xa5\x78\xbd\x5e\x5f\x7a\xe5\x44\xf3\xd0\xa2\x39\x43\x48\xcb\x5d\x7b\x70\x86\x77\x34\x58\x2d\x49\x1e\x34\x9e\xcd\x66\x67\xe7\x5e\xb1\x91\x77\xd6\x24\xa3\xe9\xac\x46\xde\x71\xb4\x20\x36\x1b\x9f\xf6\x9b\x2b\xd1\x5e\x4f\x09\x52\xa3\xe7\xb1\x20\x2a\x0a\xa0\x50\xb6\x16\x27\x1c\xb0\xee\x52\x87\x03\x8e\x24\xbd\x20\xeb\xd5\x2b\xb6\x5a\xa6\x04\xb9\x28\x2b\x02\xea\x0e\xec\xa8\x52\x97\x1f\x22\xcd\xb2\x37\xc8\x09\x71\xac\xb0\x95\xc4\x2e\x61\x51\xc3\xb3\xf4\x3d\x3a\xe2\x40\x88\x03\x63\x3e\x29\x27\xbb\x06\x26\xfe\xb4\x79\xa0\x18\x6c\x63\x04\xc0\x0e\x40\xae\xc9\x30\xf3\x37\x81\x39\x41\x8e\x6b\x16\xd3\xe8\x21\xea\x22\x2f\x97\xae\x6c\xd5\x8c\xdb\x31\x25\xe4\xd5\x88\xd0\x7e\x88\xe7\x00\xf2\x2a\x27\xf6\x6e\x4e\x5c\x6b\x92\x92\x07\xd2\xc6\x59\x75\xb6\xb7\xd4\x8d\x3b\x3a\x9b\x61\x86\xa6\x3c\xbb\xae\xee\x78\xf5\x78\x8c\x27\xad\x1d\x98\xb3\x1a\x63\xdb\xf1\x1c\xf2\xc2\x2f\xc8\xe8\x98\xc1\x58\x80\x2d\x94\x20\xe3\x64\x41\x20\x16\x4b\xad\x78\xe2\xe0\x99\xac\x3a\x81\xc8\xe0\x0d\xd2\xd4\xff\xaf\xe8\xe8\x48\x1a\xdc\x6a\xf3\x7b\x5e\x3c\xbf\x6a\x75\x25\xa9\x06\x1e\x94\x6f\x0b\x4b\x3c\xe7\x31\x68\x71\x13\xb5\xbd\x55\x04\xa8\xc4\xbb\xd6\x2b\x96\xe2\xd5\x49\xfa\x98\x16\x27\x38\x35\xde\xc0\x52\xb4\xca\xdb\x98\xe4\x3c\x25\x53\xe9\xd3\xdd\xed\x9a\xa1\x3c\x26\xdd\xae\x19\x67\x0e\x60\x31\x42\xb0\x75\x12\x20\x88\x53\x21\x50\x98\xa4\x1d\x3b\x03\xa8\x06\x90\xb1\x75\xce\xb2\xc5\x41\xcc\x7b\x00\x09\x09\xf7\x23\x37\x0b\x13\xac\x4f\xfc\x53\x29\x8d\x9a\x44\xae\xd5\x77\xa8\x9b\x6d\x91\xe3\xbc\x93\x24\xae\x13\x46\xe9\x08\x93\xaa\x42\x03\xe2\x84\x38\xec\xbd\xaf\xd1\x90\x39\x91\xc9\x2e\x9d\x87\x4c\x93\x1c\x38\xc8\x30\x2f\x6b\x0b\xd6\xc9\xe0\x64\x5d\xa4\x0a\x59\x1b\x89\x39\x4b\x72\x21\x26\x4f\x13\x34\xce\xa4\x0e\x24\xc2\xb3\xa8\x93\x24\x99\x2a\x9e\x27\x74\x9c\x4d\x36\x1b\x3c\xce\x26\x70\x69\xec\xc3\xb5\x67\xbf\x9d\xf3\x7c\x34\x97\x4f\x49\x32\x76\x80\xf6\xf3\xb7\x93\x8a\xec\x03\xb2\xcf\x31\xc4\x19\x9c\x82\xd6\x39\x43\xe9\x7b\x15\x03\xe0\xdc\xb0\x26\xa5\x16\x45\x00\x5a\xd1\x02\xc6\xcb\x44\x1a\x04\xc4\x19\x00\x7b\x6c\x2e\x96\x3b\x8c\xf8\xdc\x9e\xcd\x9b\x98\xdf\xaf\x66\x8f\x3f\x45\xaf\x33\x34\x4f\xd7\x19\x1f\xf2\x71\x36\x49\xa6\x5b\xe5\x9f\x6f\x64\xbf\xa9\x77\x61\x76\xcb\xc9\xbb\x1c\x8a\x0a\xc1\xbe\x09\x92\x63\xbb\x4c\xe6\x62\x00\x3b\x1a\xb0\x15\x57\xb6\x7e\xee\xd2\xe0\xbb\x4c\xcb\x48\x9b\xf5\x8f\x36\x0d\x9e\x83\xbd\xb7\xc2\x66\xa3\x24\xc5\x28\xb5\x3e\xa2\xca\xe7\x7c\x1c\x2d\xe5\x82\x13\x56\x4b\x80\xee\x70\x09\x50\x38\xd1\x03\xe7\xb1\x4a\x45\xa5\xe4\x2d\x49\xfe\x9e\x61\x8d\x9b\x42\x9a\x6d\xa9\xd3\xd0\xaf\x0a\x85\x7e\x20\x80\xbe\xc6\x4a\xf3\xa9\xd9\x14\x65\x35\x2f\xed\xc8\x2b\x08\xc4\x20\x0f\x98\x25\x3b\xd4\x5b\x92\xd4\x64\xdd\x6e\x9c\x56\x70\x2b\xb0\xe9\x51\xb5\x5a\xa2\xde\xf2\x61\xb7\xaa\xc2\xe8\x72\xd7\x52\xbd\x89\x13\x34\xa6\x49\x3e\x26\x93\x89\xda\x7f\x9b\xaf\xbf\x93\x24\xe9\x98\x4e\x4c\x2e\x4a\x9c\x3f\xff\xc7\x3a\xcd\x62\x21\xf2\x41\x0c\x36\x1b\x6e\x35\xb5\xee\x8d\xe3\xf4\xad\x8c\x46\x52\xe5\x59\xa2\xc7\xd5\x4c\x91\x43\xfd\x09\xcf\x8e\xa2\x27\x51\x39\xe8\x84\x33\xfb\xba\xd0\x13\xf5\xaf\x1e\xd5\xf7\xa2\x90\x86\x34\xf0\xf4\xb6\x85\x39\xf2\x73\x8c\x56\x21\xa1\x22\xb6\x85\x77\xec\x9b\x0d\xb3\xa4\x1a\x8b\x43\x9f\xa5\xff\xd0\xdf\x4d\x64\xa6\xe0\xcb\x6e\x31\x06\xb1\xe1\xcd\xba\x9e\x29\xe3\x2d\xf7\xb5\x61\xd7\xaa\x28\xd1\xa8\x66\x3d\x94\x05\x97\x13\xe5\x23\x74\x49\x43\xf1\x3e\x4a\x0f\x52\xa1\x66\x86\xe3\x0c\xe5\xe0\x2f\x45\xda\x08\xa2\x06\x04\x2b\x11\x39\x82\x51\xea\x9d\x10\x25\xe5\x7b\xd2\x6c\x41\x43\xcf\x69\x71\x6d\xd9\xce\xc5\xae\x56\xaf\x5d\xfa\x00\x64\xed\xd3\xf4\xff\x2a\x71\x46\xb0\xfa\x08\x71\x39\xce\x88\x40\x8b\xe0\x06\xed\x88\xa0\x2f\x9f\x99\xfd\x74\x04\x4a\x05\xbf\xcb\x1c\x56\xbf\x4d\xef\x37\x8b\x8c\x81\xb2\x11\x60\xca\x0b\x57\xa1\x99\xb3\x6f\xac\xd8\x1b\x8f\x23\x42\xd9\x85\x1c\x49\xe9\x4c\x45\xf9\x35\x99\x96\xbf\x09\xde\x2e\x5f\xa2\x59\x34\x71\x26\x49\xb8\x47\x79\xd6\x31\x2a\xa5\x8d\xae\x78\x1c\x4e\x55\x3e\x73\x00\xb9\x1a\x1e\xe6\xe1\x14\xaa\x94\x27\xda\x09\xf0\xf9\x0f\x7f\x83\xc7\x00\xa6\xa6\xe2\x5b\xc4\x2e\xf1\x74\x4f\x12\xe0\xfd\x19\x7d\xcf\x8a\xce\x12\xc6\x8d\x5a\x61\x5a\xca\x85\xa9\x3c\x98\x51\x7c\x53\xa4\xa9\xda\x96\x92\xab\xbe\x4d\x2f\x65\xf4\x12\xf5\x51\xc5\xc0\x49\xa7\x9c\xb2\xeb\xa7\xe9\x74\x19\xbc\x64\x21\xde\xe7\x19\x9a\xef\xab\xef\x31\xe3\xfb\x2a\x07\x47\xa7\x14\xe4\x25\x23\x3f\x5b\x2a\x28\x0e\x9a\xf9\xf9\xdf\x2a\x6d\xeb\x8a\x75\x7f\xdf\x22\x3e\x5d\xca\x55\x7b\x99\xae\xcc\xb8\x95\x03\xe4\xbe\x11\xe7\xe6\x62\xec\xab\xe9\xdb\xd1\xa0\xab\xf6\x53\x64\xa2\x31\x38\xbb\x3a\x54\x3e\x6e\xaa\xef\x61\xd4\xfb\x35\xa7\xa4\x97\xae\x70\x04\x35\x8b\xab\xfd\x32\x75\x2e\x32\xed\x0d\x3f\x8b\x23\xdd\x24\x82\x15\x09\xbd\x9c\x34\xd9\xd4\xf4\xb1\xa6\xfe\xaa\xb2\xe0\x6d\x01\x74\x53\xd4\x0d\xeb\x34\xf0\x36\xb5\x09\xef\xff\x4a\x71\x28\xf1\x3a\x73\x8f\x6c\xa5\x92\x62\x44\xcf\x05\x3b\x84\x2b\x6f\x98\x1c\xf8\x16\xbb\xb8\x8f\x67\x02\xd3\x88\x7f\x13\xd6\x3f\x5b\x20\x82\x58\xca\xd1\x8b\x99\x54\x0b\x00\x88\xf5\x43\x8f\xac\xa8\xb3\xeb\xe4\x28\x66\xa0\x7f\xbe\xc6\x99\xac\x25\x4b\xac\xb1\x51\x26\xcd\x68\x95\x4e\x57\xbf\x8e\x39\xb3\x96\xdf\x8a\xeb\x8f\x05\xaf\x28\x36\xab\xe8\xb7\x76\x5d\xfc\xd5\x34\x1d\xca\x24\xee\x45\x6b\x69\x5e\x28\x40\x8f\x82\x5f\xd5\x6e\x09\xc0\x43\xa5\xb3\x72\x6d\x2f\x3c\x02\x80\x3c\xb3\x8c\x18\x6c\xa1\xab\xb6\x2c\x55\x75\x8b\x44\xd5\xb9\x10\x33\xcb\x8f\x20\xee\xc1\x10\x15\x74\x75\x95\x7f\xad\xf8\x50\x69\xe7\xed\x27\x97\x79\x35\x6d\xc2\x50\xd0\xcf\x28\x7d\xbf\x5e\x89\x6d\x80\x1e\xd5\x66\x09\xdb\x6c\xc4\x86\x6b\x26\x58\x01\xff\x96\x32\xbd\xb3\x23\xc2\x4d\x62\xd0\x62\x2c\x54\xd0\x31\x99\xce\xff\xad\xb8\x58\xff\xa7\x28\x6a\x47\x47\xe4\x28\x6a\x5f\x61\xbe\x6c\xe3\xd9\xb0\x1d\xd9\xd8\xe7\xb2\xfd\x37\xd7\x1e\x32\x90\x80\xb6\xf0\xac\x66\x56\x2a\xd2\x6d\x9f\xc9\x10\x87\xc0\x63\x1f\x8c\x6a\x51\x22\x0f\x59\xb7\x65\x12\xf0\x95\xd2\xc0\x4b\x5b\x89\xca\xb9\x70\x6c\x2b\x5a\xd6\xe8\x47\x85\x55\x54\x11\x15\xdd\x73\xc0\xc0\xa8\xae\xd7\xa1\x8a\x5a\x28\xe9\xd0\x82\xd1\x35\xd1\xcd\x47\xea\xf6\xbc\x79\xfb\xb7\xd7\xfd\xd7\x8c\x5e\xe0\x5c\xd0\xe0\x9c\x66\x97\x32\x1a\x73\x1c\x57\x9b\x6c\x36\x66\x04\xdf\x94\x4a\xfc\xb1\x00\xfb\x78\x5b\x19\x0d\xdc\xd9\xab\x59\xe9\xd2\x26\x0c\x83\x22\x61\x11\x03\x4e\xf0\x4f\xc9\xcd\x56\xf9\xef\xca\xf1\x74\xbb\xc8\xfc\xa9\x5e\x51\xcc\x2f\x00\xbd\xd3\x22\x15\x05\xfe\x86\xcb\x51\xd6\x9d\x1c\xe4\x8a\x22\xee\x19\x92\xaf\xc7\x7a\xf4\x55\xa0\xe1\x09\x38\x06\xf6\xf5\xbb\x27\x2a\x7d\x4f\x53\x41\x86\x62\x30\x42\xfd\xb3\x95\x5a\xb5\xd7\x8c\x7e\xb8\x1e\xee\x5c\x4d\x75\x17\xbf\xb9\x7e\x31\x2b\xe7\xb1\x2f\x54\x66\x45\xcc\x01\x6e\x43\x07\xd9\x2b\x5a\xc9\x9b\xcc\xc6\x58\x3f\xed\x39\x57\x8d\xc8\x60\xc0\xf6\x90\x66\xb1\x33\xa8\x34\xcb\x04\x82\x95\xfc\x93\x4e\x8f\x29\x2f\x77\x79\x81\xe5\x20\xdb\x74\xae\x2f\xe7\x54\xab\x1b\x22\x75\x22\xc4\x6a\xec\x20\x35\x6e\xd6\xcb\x40\x4e\xe8\x92\x07\x7b\x82\xcb\xf7\x8f\x02\x98\x27\xd8\x51\x1c\xae\x93\x1d\xeb\x0a\x4a\xdc\xa0\xb3\x9d\xce\xa2\xa8\x5e\x53\x60\xb3\xa9\xc6\xeb\xe4\xe7\x78\x0d\xb9\x9a\xf9\x77\x29\x99\x65\xa8\xad\xa9\xb5\x7b\xc6\xe8\xbc\xfd\x55\x74\x94\x1f\x45\x5f\x15\xc7\xeb\x2b\xb9\x2a\x5f\x45\xa0\xdc\x37\x36\xb6\x46\x6f\x50\xfc\x5a\xe6\xcf\x86\x82\x15\x94\x16\xb4\x44\xb2\xb7\x1a\xac\x43\xcd\x15\x4b\x24\x84\x70\xe8\x8b\x09\x8c\x5e\xb5\x65\x88\xdc\x6f\xc5\xbd\x8e\x25\xc1\x34\xe7\xb3\xdb\xc5\x25\xd2\x00\xd1\x56\x4d\xe5\xf9\x07\xce\xd2\x29\x6f\xaf\xd2\x6b\x51\xee\x4c\x20\x02\x3a\x69\xa8\x83\xd6\xb4\x17\x05\x74\x5c\x63\xa0\xa2\x1b\xfe\xe1\x7f\x99\x92\xeb\x06\x87\x16\x39\x87\x76\x47\x80\x8c\xf2\xc5\x1a\x93\x09\x2c\x9b\x6e\x78\x9b\xad\xce\x6d\x79\x50\x55\xd4\x5f\xba\x8f\x45\x16\x55\xef\xb3\x45\xfc\x78\x26\xc3\x04\x15\x27\x0d\xbb\x27\x6d\x86\xe6\x88\xc5\x91\xec\x0a\x93\x85\xba\x0b\x5f\xb9\x58\x46\x6a\xa8\x6f\xb0\x87\x5a\x10\xd4\x27\x93\x0d\x31\x34\x59\x07\xf8\x16\x8a\x83\xae\x07\xd1\x42\x92\x97\xc1\x64\x61\x82\xfc\x14\xa1\x33\x5d\x16\xb7\x9f\xe3\x7f\xa2\x6e\x17\xf3\xdd\xd9\x44\xa5\xa3\xea\x69\x96\xbd\x76\x9a\xa2\x5c\x91\xb7\x3c\x00\xb6\x08\x8b\xb0\x4c\xf3\x98\xc8\x94\xe9\x39\xe2\x31\x81\x32\x31\xb1\xe4\x3d\x89\xb5\xe2\x83\xe9\x16\x86\x7b\xa8\x08\x44\xde\xe3\x9e\xff\x05\x93\x85\x7d\x31\xf5\xa6\x68\xb4\x7d\x9a\x06\x38\xa9\xc4\x65\xf9\xb7\x94\xbd\x13\x07\xd3\x7d\xfb\xf1\xda\x6b\x3d\xa7\xc4\x4b\x35\x8d\x6b\xcf\xad\x5c\x42\x92\x30\xf7\x42\x48\x43\xbc\x4e\x87\x48\xe4\x21\x4e\xbd\x54\xa6\xd2\x34\x43\xf9\x14\x7d\x2b\x2f\xf0\x3f\xd6\x28\xe7\xb9\x13\xd9\x09\xa6\xce\x15\x90\xd8\x2b\x24\x56\xac\x65\xa5\x9f\x50\xfa\x5e\x48\x2d\x2a\x77\x39\x75\x93\x96\x23\x93\xb4\xdc\x3b\x50\xad\x74\x9c\x4d\x92\x39\x5c\xcb\x3d\x9a\xc3\xa9\x49\x37\x09\x60\x3e\x9e\xf7\xf1\x6c\x92\x4c\x8b\xb4\xae\xcb\x42\xb3\xc9\xfa\x2e\xa6\x8e\x91\x0f\x16\x22\x0b\xa7\x65\x91\x29\xb3\x58\x95\x3b\x69\x67\x67\xe5\x75\x0b\xcd\x4e\xd9\x5e\xa2\x1a\xdb\x4b\xa4\x6c\x2f\xf3\x31\x15\x03\x96\x46\x2e\xea\xcf\x84\xc2\x14\xa4\xd5\xfe\x69\x91\x78\xcc\xa4\x7a\x87\xd3\xc2\xb4\x33\x7b\x3c\x2d\x56\x6e\x9e\xf0\x71\x36\x69\x31\xb5\x1a\x9b\x8d\x4e\xe6\x3e\x77\x73\xb9\xaf\xe2\xb5\x33\xa3\x55\xb3\x3c\xba\xea\x3d\x51\x66\xe4\xa1\x49\x3e\xc6\x72\xec\x32\xea\xb2\x33\x5e\xb1\x14\x31\xdf\x6c\xa4\x02\x84\x31\xca\xe2\xe8\xf9\x87\x95\x34\x03\x92\x94\x02\x0b\x9c\xc1\x69\xfb\x1c\xb5\x57\x0c\xe5\x88\x70\x65\xb7\x80\xda\xfa\xd4\xb5\x57\x8c\x5e\xe2\x19\x9a\x19\x94\x0d\xdb\xe7\x6b\xde\xc6\xbc\x7d\x95\xe6\x6d\x42\x79\x7b\x2e\x08\x40\x5f\x10\xdf\x2d\x9e\x0b\x22\x63\x06\x7e\xe1\x9f\xbb\xcb\x64\x70\x72\xf9\x98\x9e\x5c\x1e\x1d\x81\x8b\xf1\xe5\x24\x49\xc7\x97\x93\x32\x75\x5d\xcb\xfb\xfd\x0a\x14\x8f\xa2\xd7\x09\xe9\x0b\xe6\x71\xa5\x3d\x16\xbf\xa5\xec\x5b\x7d\xf8\x15\x07\x79\x01\xe0\x22\x19\xc0\xf3\xe4\xda\x2c\xd1\xe2\xf1\xf9\xc9\x42\x2c\x91\x81\x71\x96\x5c\x8f\x17\x13\x78\x25\xff\x31\xd7\xe2\xb9\x33\xbc\x2b\x00\x3f\xf8\x3f\xdf\x26\x83\x93\xb7\x8f\xaf\x4e\xde\x9a\xa5\x7e\x95\x9c\x8d\xdf\x4e\xfa\x67\xfe\xf1\xff\x30\x7e\x3b\x49\x5e\xc1\xe7\xf2\x9f\x3e\x9e\x89\x25\xb8\x7a\x72\x0c\x3c\xfd\xcf\xaf\x28\x26\x90\x41\x0e\x9f\x43\x04\xd7\x65\xb2\xcc\xc1\xcd\x4c\x66\xbd\xdf\x82\xfe\x34\xe5\xa5\xb7\x05\x75\x18\x84\xb4\x18\x7f\x28\x62\x8b\x0b\x26\xfd\xb9\x0d\x89\xb6\x8c\xf3\xf1\x87\xf1\x60\x22\x4e\x00\xd8\xea\x07\x2b\x33\xf7\xd3\x64\x70\x72\xfa\x98\x9e\x9c\x1e\x1d\x01\x41\xcc\x4e\x27\x60\x0b\xa5\x24\x3a\x47\x0c\x91\x69\x19\x01\xa9\x23\x27\x79\x3a\xa2\xc4\x2e\x8b\x91\x4b\xb2\x97\xe0\x59\xe4\xf5\xd2\x5a\x23\x0b\x71\x0b\x57\x08\xbd\xdf\xc1\x83\x85\xa0\x87\x04\x36\x06\x09\x18\xd5\x77\xeb\xa8\xd3\xb4\x58\x7b\xc6\x50\x50\x58\x85\x32\xcc\x06\x9e\xb5\xaa\x3c\x60\x95\xe7\x68\xed\x91\xcc\xb6\xd0\x1f\xe6\xde\x29\x42\x5c\xc8\xad\x62\x65\xd4\xcc\x3c\xb9\xb5\xd3\x51\xe9\x3a\x75\xf2\x79\x21\x4c\xb3\xda\x1e\x6a\xf6\x03\x41\xd5\x5b\x65\x71\x14\x6b\x7f\xc7\x4c\x52\x9d\x40\xd4\x98\x5b\x12\x00\xf4\x2b\xee\xb0\xea\x89\xd9\x80\x35\x67\x41\xd6\x9c\x17\x41\xb8\x71\x5f\x05\x6a\x5a\x27\x8a\xdb\x36\x6f\xc6\x1c\xa6\x32\x41\x37\xcc\x92\x3a\xfe\x5a\x57\xd5\xfc\x29\x73\x05\xb9\xaf\xda\x0a\x73\x4a\xe0\x82\x71\x2d\x78\xf6\x7f\x58\xbe\x3d\x03\xf0\xa7\xf8\x6f\x42\xba\x2d\x5f\x77\x52\xe5\xc2\xcd\x38\x39\xcc\xf5\xb1\x50\xdc\xb8\x1e\x44\x04\x5a\xcf\x44\x45\x2a\x38\x75\xc5\x38\xa5\x49\xc1\x99\x9b\xa5\x4e\x95\x73\x3b\x95\xff\x08\xbe\xa8\x10\x9d\xc2\x5c\x77\x65\x56\xfa\xa5\xdd\x9f\x5d\x80\x2d\x77\xb5\x0d\xd0\x68\x96\xe4\xb6\x69\x99\x56\x0f\xfc\x9b\xeb\xbf\xe6\x94\x9c\xae\xb0\xf1\xc2\x0b\xec\x73\x61\x3f\x2a\xdd\x81\x11\xa8\x1e\x1c\x43\x75\x4d\x0c\x4e\x5a\xce\xd3\x0b\xc5\xac\x03\x39\x2c\xa4\x27\x42\xbd\xcb\x3b\x5c\x27\xb4\x36\x81\x06\xcc\x54\x61\xc0\x8e\x00\x4e\x2b\xdd\xc9\x8b\x00\xe7\x09\xad\xa6\xb2\x68\xed\x48\xcc\xd0\xed\xc6\xf3\xcd\x66\xbd\xd9\xa4\x9b\x4d\x27\xef\x76\x3b\x53\x00\xca\xea\xb2\xe2\xd0\x96\x1a\xcb\xf5\xab\x3e\x36\x28\xb5\xd9\xcd\x2c\xe5\xe9\xb0\x36\xf8\xe1\x3b\x6d\x82\x1a\x8e\x7f\x68\x63\x41\x38\x99\x2f\x74\x04\x05\xa2\x33\xbb\xda\xf0\x09\x62\x48\x3f\xa5\x1a\x6d\x55\x9d\x9c\x95\x5f\x2f\x44\xfa\x31\x7e\x99\x64\x62\x96\x70\x96\xac\x37\x9b\x69\xb7\x5b\x93\xaa\xc1\x4b\xd3\xf0\x64\x20\x4f\xc6\xbc\xdb\xed\x88\x11\x2c\x37\x9b\x99\xce\x81\xb0\x32\xf9\x1c\x6a\x66\x89\x4b\xd4\x5a\x0e\x4f\x4d\x58\x45\xdc\x2d\xaf\xb5\x5c\xe8\x95\x38\xc7\x78\x1e\xcb\x91\x8a\xce\x6e\x14\x33\x73\x87\x7d\x55\xa5\xd7\xf8\x42\xf4\xba\xf3\xec\x4b\x6d\x31\x6f\x70\xb5\x5c\x1f\x7c\x69\xad\x66\xfa\x46\x66\x65\xa5\x6b\xe9\xee\xf9\xf0\x3d\xf3\x91\x3e\x02\x52\x19\x63\x0c\x80\x3e\x13\x12\x77\x32\x5e\xef\x47\xe3\xb6\xb2\xd2\x16\x79\x18\xaf\x2d\x64\x64\x05\xfd\x93\x61\x70\xdb\x7f\xe4\xbc\x14\x88\x65\x1f\xc5\x0e\x4a\x87\x05\x32\x37\x8c\xcc\x4e\xdc\x5d\x3f\x91\x83\x91\xb5\x38\x7f\x76\x90\xdf\x63\xf2\xfe\x5b\x46\x2f\x76\xa0\x6b\xf7\x24\x85\x71\xda\xc8\xde\x26\x77\xa7\x0e\xc1\x5d\xa8\xdb\xdd\x85\x9f\x0a\xdd\x54\x03\xdc\xa3\xf0\x20\xd9\xda\x60\x34\x68\x24\xfe\x18\x96\xde\x62\x87\x81\x2b\x27\xd9\x28\xa3\x62\x36\x53\x69\x42\xd2\xf6\xd1\xb1\xc2\x49\x08\xeb\x4b\x68\xad\x22\xeb\x2e\x9c\x42\x8c\xea\x3d\xef\xf7\x45\xfe\xe0\x32\x39\x80\xfa\x09\x4c\xef\x30\xc2\x52\x8d\x0d\x0a\x0c\xeb\xaa\xc9\xea\x14\xab\xd8\xdf\x59\x01\x71\xe9\xbf\xb5\xec\x3e\xf4\x76\x1f\xe5\x0e\xcd\x04\xc1\x92\x63\x83\x2b\x4d\xb3\x74\xa6\xa7\x8b\xa4\xb0\xe8\xd3\x89\x87\xbc\x3c\x44\x56\xb9\xac\xe6\x37\xeb\x76\x3b\xab\x51\xe7\xc2\x3a\x43\x6b\xf4\x8b\xbd\xa7\x15\x73\x44\xbc\x49\x80\xe1\x45\xa8\x8e\x3c\x46\xc3\x90\x90\x82\xab\x97\xab\x6e\x79\xf6\x83\x0e\x3d\x73\x61\x89\x3d\xfe\xb1\x46\xac\xcc\xba\x5b\xfe\x63\xdb\x92\x2f\x94\x1a\x11\x69\x03\x5d\xc9\x40\xf8\x9f\x92\x72\x1d\x73\x33\xce\x9d\xc7\x4e\x35\x12\xd9\x5f\x8c\x21\x57\xd8\x51\x22\xb0\xd0\x18\x1c\x3c\x95\xc5\xbb\x68\x8f\x43\x65\x18\x68\xe1\x04\x6f\x36\x3c\x60\x01\xa1\x29\x94\xa6\x2b\xaf\xe9\x6a\xed\x58\x66\x2b\xce\xc5\x9e\x97\xfc\x96\x8f\x01\x6a\x6e\x9a\xa2\x41\xea\xbc\x04\xe4\xc9\xcf\x71\x5e\xf3\x12\x20\x5b\x69\x8a\x50\x21\x53\xd4\x98\x86\x17\x64\x8a\x09\x0a\x95\x42\xaa\xc9\x8b\x6c\x1e\x09\xd2\x6a\x08\x50\x6e\x97\x1c\x8f\xb0\x74\xa7\xf4\x8d\x1d\xe2\x35\xcc\xc1\x10\x27\xb7\x5f\x26\x28\x20\x40\xbc\x87\xc2\xa9\x89\x89\x59\x05\x08\x5a\x89\x8c\x99\x93\xd8\xe8\x19\xb9\x04\x4b\xc6\xed\x29\x62\x9f\x85\x8f\x2c\xdd\x7b\x64\xe1\x3a\x70\xce\xac\x67\xb7\x7b\xca\x60\xfa\x31\x07\xc4\x3e\x17\x51\xa8\x9c\x17\x8a\x00\xcb\x3f\xc7\xe9\xae\x43\x52\xbc\x17\x85\x8e\x8a\x95\xc3\x4a\x47\x85\x5a\x66\xc6\x01\x52\x7d\x1d\xc2\xa0\xc9\x76\xda\x67\x51\x66\x23\x16\x41\x22\x3a\x09\x30\x02\x66\xda\x23\x54\x55\xf2\x00\xad\x3b\x38\xcd\xca\x2f\xa5\x85\xe6\xa5\x55\x45\xf8\xa7\x59\x16\xeb\x48\x40\x2b\x84\xde\xcb\x9f\x40\xbd\x25\x99\xf2\xea\xd9\xf1\x93\xe5\xdc\x6c\x4d\x96\x8b\x80\x5d\x86\x74\x8d\xf4\x9f\xf6\xd5\x4e\xe7\x88\xc7\x1c\x46\x38\x97\xf9\x9a\x30\x59\x44\xb0\x33\x00\x30\x8b\x7f\x40\x31\x31\x47\x99\x01\x83\xf7\x78\xff\xac\xc4\x11\xb3\x9a\x27\xfd\x53\x13\x66\x10\x83\x51\x7c\x58\x5f\xfa\x9d\x9f\x55\xdf\xf9\xbd\x07\xd9\xf2\xf9\xe4\x00\x0c\xe3\xb8\xda\xaa\xfe\xa9\xdf\x19\x23\xe8\x76\x77\x8f\xb2\x34\x46\xb8\x6f\x28\x62\xeb\x66\x78\xa6\xd2\x60\xf9\xdb\xe7\x45\x8e\xf3\x90\x94\xd7\x42\x3e\x7b\xeb\xd3\x10\x10\xa0\x2a\x27\x29\x00\x2f\xc3\xc6\xe7\x56\x7e\x56\x8f\x34\xc6\x68\x26\x0c\xd6\xe8\xed\x5a\x6e\x6a\x3a\x04\xb8\x79\x2d\x52\x11\xfe\x9d\xc3\x6c\x4a\x18\xd8\x8a\xa3\x9f\x71\xc4\xdc\xd7\xad\x2d\x34\xe4\xff\x6d\x7a\x59\x66\x48\x2d\x53\x5d\x96\xb3\x18\x50\x9a\x89\x33\xe3\xd8\xf5\xed\x3a\xcb\xae\xb5\xdb\x7e\xc1\x75\xf1\x02\x39\xa9\x80\xe7\xfa\x89\x50\x1f\xfe\x9f\x6c\x68\x9f\x38\x60\x76\xa7\x9e\x3a\x6e\x72\xdd\xe7\x90\x14\xaf\x8f\x7c\x0b\xa0\xf3\x74\xf8\x8a\x4c\x77\x3c\x1f\xbe\x2e\x40\x02\xfd\xde\xe7\x7c\xaa\x89\x5a\xe8\x0d\x24\x97\xa9\x65\x8c\x27\xb1\x6f\x19\xe8\xe4\xe6\x1d\x40\x56\xbc\xb4\xf0\xc7\xac\x48\x2b\x82\xa5\x8f\x20\xa4\x09\xee\x9b\xe9\xc8\x47\x53\x33\x21\xc9\x6c\xfb\x1c\xbc\xa0\xab\x25\x3c\xe1\xc5\x40\xc9\x8c\xc7\x0e\x9e\xc7\x01\x77\x7a\x90\x25\x36\xa0\xc4\x28\x72\x4d\xe8\xa2\x61\x5e\x44\xbd\x11\x85\xae\xc9\x56\x34\x8c\xdc\x1c\x0c\x91\x3a\x4d\x78\x1e\x47\x8c\x52\xae\xad\xbb\x66\xfd\x3c\xbd\x44\xb3\x28\x49\x92\x72\x12\x1e\xf1\x5f\x39\xbe\x9b\xb4\xd8\xfa\xd6\x94\x12\x8e\xc9\x1a\x6d\xef\x66\x50\xdb\x02\x76\xce\x85\xb8\x2d\xf6\x3b\x83\x14\x88\x13\x3e\xc3\x33\xb1\x33\xf5\xef\x07\x2d\x1d\x1b\x4b\x49\x45\xd0\x1e\xc6\x67\x26\x22\x85\xd4\x2f\xab\xcb\xfa\x53\x9a\xbf\x20\x97\x69\x86\xab\x9c\x41\xc8\x6f\x7c\xe4\x02\xd3\x0d\x65\x02\x63\xc8\xc0\xb0\xae\xcc\xed\x4c\x3e\xb2\x55\x5e\x1e\x8a\x76\xea\x11\x4e\x66\x9c\x2a\x82\x4f\x54\x86\x66\x55\xfb\x6e\x84\x0a\x55\xb6\x85\x67\x02\xb5\x84\xd1\x95\x56\x43\x30\x1b\xa2\x02\x92\x8a\xc9\x9c\x4c\x03\x87\x13\x49\x00\x48\x29\x4f\x93\x92\xe4\x1c\x72\x83\xf8\x7a\xa5\x83\xf0\x43\x3c\xaa\x43\x82\xda\xc2\x1b\xcf\xb4\x07\x3d\xd1\xc2\x43\x6d\x55\x2b\xb5\x0b\x0e\x8c\x6c\xa1\xe1\x90\x6a\xb4\x58\xbe\x51\xb1\x6f\x08\x29\x90\x63\x9a\xe7\x23\xfd\xef\x90\x6f\x61\xb9\x76\x0d\x6a\x87\x2c\x59\x73\x27\xbc\x7b\xd5\x72\x19\x72\x89\x24\xb5\xc4\xc6\x80\x32\x7b\x29\x8c\xc9\xf5\x8b\xea\x0f\xb4\x2d\x9b\xca\x27\x51\xf9\x1c\xda\x9e\x53\xd6\xfe\x2a\x3a\xe2\x52\x83\xde\x2a\x62\x31\x9e\x2d\xd3\xfc\x65\xfd\x64\x5d\x8a\xa3\xa3\x96\xed\x1f\xe2\x16\x0a\x34\x5b\xbb\x74\x3a\x39\x94\x01\xeb\xab\x5c\x39\x18\xf1\x3d\x19\x72\xac\xa8\x68\x1c\x13\x94\x06\x85\xfb\x2f\x4c\x67\x3b\xc6\xe0\x73\x63\x7b\x4c\x78\x25\xef\x9c\xa0\x3e\x26\xd3\x6c\x3d\x43\x52\x7f\x8e\xa5\xdb\xa6\x7a\x08\xc7\xd5\xbc\x59\xb2\xef\x92\x84\x2a\xd3\x68\xe1\x79\x1c\xd4\x30\x83\x1b\x52\x4a\x05\xac\x58\xf5\xe2\x15\x8c\xa8\x07\x68\x15\x1c\x53\xf5\x43\xc7\x6c\x92\x04\x3b\x53\xa0\xdc\xc4\x5d\x74\xeb\x3b\x73\x68\x35\x8f\x5e\xb8\x5a\x10\xca\x26\xb8\x52\x5a\xb2\xba\xf5\xa2\xc4\xca\x25\x15\x08\x41\xf1\x32\x82\x32\x2a\xbe\x3b\x84\x38\x21\x91\x39\x6e\xc5\xf4\xb9\x27\x66\x6b\xdf\x57\x6b\x7e\x2e\x15\xaf\x3a\x33\x31\x49\x8a\x24\xb7\x5e\x85\x28\x5d\xad\x32\x3c\x95\x7a\x20\x71\xc8\xfb\x4e\xef\xea\xcc\x12\x89\x19\xc5\x6f\x9b\xde\xaa\x5e\x56\x37\x86\xb1\xe6\xc1\x83\x39\xcd\x1b\x28\x99\x4d\xf3\x42\xeb\xa8\x75\x9c\xe5\xb4\xbd\xdf\x96\xf0\x33\xf4\x43\xd0\x5a\x61\x0d\x95\x1e\x31\xa5\xe1\xd1\xae\x3c\xbe\x12\x37\xd7\xb8\x0b\xd7\xde\xce\xaa\x47\x83\x8e\x8c\x5b\x18\xac\x7a\xc6\xe0\xce\xf0\x6c\xa8\x2e\x9d\x61\xd8\xf1\x66\x03\x2d\x1e\xb6\x83\x09\xf9\x4d\x3a\x36\xda\xe2\x88\xa3\x6d\xbd\xb7\x85\x8c\x14\xe2\xf8\xe3\x55\x1c\x38\x1a\xcc\x38\xe8\xf3\xd1\x78\xd2\x2d\xbe\x23\xad\xb2\x9a\x72\x04\x94\x2a\x6e\x97\x8f\x49\x65\x22\x75\xba\xd7\x61\x00\x31\x5a\x8a\xba\x40\xfc\x9b\x6b\xf7\x59\xa4\x0a\x27\x40\xdc\xeb\x9f\xef\x15\x79\x77\xb9\x2a\x41\x7b\x77\x5a\xd4\x97\x2b\xcb\x55\x92\x57\xa3\xe2\x28\x02\xb6\x30\x50\xbb\xfe\x46\x09\x6c\x88\x78\x5c\x3c\x17\xb0\x1d\xed\x9c\xa7\xc5\xf0\xc4\xc0\x16\x5a\x6f\xab\x9d\x16\x13\x55\x44\xc3\xac\xea\xc6\xd5\xd7\x59\x26\xc5\x82\x55\x89\xf0\x21\x41\x57\x4f\x4d\xc8\xd6\xaa\x2a\x85\xf2\xa3\x23\x87\x5f\x53\x6c\x48\x23\xd1\xb1\xcc\xba\x54\xf7\x3b\x2f\x9f\xfb\xf2\x56\xcb\xf1\xbf\x4c\x57\xda\x33\x06\x16\xa2\x41\x3d\x8f\x52\xf5\x20\x82\x24\x61\x63\x2e\x2f\x0c\x31\x72\x1a\xd1\xf8\xdc\x5e\x8e\x57\x57\x04\xb1\xb2\xa0\xd9\x49\x92\x58\x92\x50\xb5\x33\x91\xf5\x0d\x3a\x12\xf2\x74\x45\x6d\x41\x60\x24\x0f\x50\xa4\x2d\x1c\x45\xaf\x09\x51\x54\xc4\x05\xa8\xdc\xcc\x34\x29\xd8\x6c\xaa\xf0\x3d\x4a\xd1\xbc\x23\x0f\xae\xec\x58\xab\xd4\xc4\x92\x08\x04\x50\xf5\x3f\x72\x87\x45\x47\x4c\x3a\x18\x87\xe6\x4b\xc1\x50\x55\xf5\x74\x27\x75\xe3\x18\x53\x39\x6f\x30\x14\x93\x1d\x3b\x9e\x54\x41\xe8\x45\xb1\xf1\x60\xd8\x09\xdb\x05\x27\x7b\x11\xb2\x81\x73\xfe\xf7\x1d\x8d\x92\xd7\xd8\xdd\x9d\x8e\x02\xf0\x27\x3b\x20\x4e\x17\x9f\xe2\x8c\xf8\x6a\xe3\xd4\x21\x1d\x14\x46\xda\x09\xee\xad\x1d\x42\xf8\x14\xa5\x23\x36\x4e\x27\x35\x83\x8e\x8e\xd2\xc3\x0e\x52\xea\x1f\x24\x3d\x86\xa8\x0e\xbe\xad\xd0\xf0\x24\x59\x78\xfa\x20\x5d\xe1\x2c\xd3\x46\xce\xb7\xf1\x10\x0d\xfa\x43\x16\xb4\x35\x80\x24\x6d\x10\xa3\x90\xe7\xa3\x43\x95\xcb\xae\x8e\x45\x91\x55\x9d\x49\xb1\xc2\xa8\x0d\x0a\x1a\x2e\x45\xd5\x3a\x49\xe3\xd8\x9a\xaa\x87\x1c\x3d\x4d\xa2\x5c\xe3\x71\xb4\x43\x14\xe1\x5e\x69\x61\xe1\x1e\x70\x0c\x96\xf9\xfe\xa4\x52\xea\xc7\x40\x9f\x8a\xa7\xaf\x2d\x76\x77\xa5\x1c\xbd\x35\x34\x05\x58\xa3\xa4\x92\xe1\xb0\xfc\xa4\x50\x31\x68\x99\x6a\xc9\xc0\x2e\x65\xbd\x64\x51\x59\x3b\x7f\xdf\x8b\xc5\xdb\x67\xf2\xef\xcd\xd6\x07\x52\x5e\x0b\xbf\xb4\xc1\x62\xf8\x0d\x76\xae\xc6\x19\x67\x78\xb1\x40\xec\x19\x9a\x23\xc6\xd0\xec\x9d\xfa\x99\xfb\xeb\xb2\x75\x9c\xb9\x73\xee\x1b\xa6\xd1\x84\x94\x75\x7a\x69\x42\x1c\x8f\x0c\xcf\x52\x25\x05\xb7\xf5\x05\x1a\xb3\x49\x2c\x4d\x47\xc0\x16\xc0\x2c\xd1\x4f\x30\x29\x80\xd3\xc4\x7b\x52\x49\xc9\xac\xad\x02\x16\xb6\xd3\x73\xba\xe6\xed\xe8\x88\x15\x0e\x50\x62\x06\xf2\x81\x87\x86\xec\x59\xa6\xca\x9e\x85\x56\xed\x59\x3c\xa3\x9f\x3d\xd2\x39\x86\x29\x5c\xcb\x08\xac\xb1\x7c\x2d\xca\xa4\xc9\x0b\x82\xa4\x8f\x67\x82\xc9\xb3\x62\x7b\xb7\x1b\xaf\x13\x6c\x7f\x02\xa9\x2c\x55\xfa\x3a\xde\xf7\x34\x7c\x31\xd5\x56\x1a\xe9\x16\xc0\x75\xb7\x6b\x5e\x95\xb4\xe9\x86\xc0\x0b\x06\xca\x70\xbd\x15\x2b\x44\x7d\x67\x24\xa5\x13\x44\x6e\xec\x2b\xdc\xd7\xfa\x39\xa9\xa1\x19\xc5\x2c\x89\x4c\x8b\x28\x49\x84\x00\x4d\xe7\xed\xac\x8f\xd4\xba\xaa\xe8\x8f\xa3\xd2\xef\xb8\x98\x19\x18\xaa\x10\x92\x12\xd3\xc9\x70\x9f\xcb\x18\xf5\xd5\x37\x31\x9f\xb2\xaa\x31\xa6\x90\x41\x04\xc0\xd0\x29\x52\xba\x22\x0a\x85\x08\x23\xd5\x48\x68\x0b\xa7\x8e\xd5\xff\x9a\x97\x84\xd1\x31\x53\x19\x52\x94\x45\x49\x4c\x92\x8c\x4b\x61\x0d\x6c\x36\x31\x09\xc6\xf0\x2c\x51\x77\xc9\x4e\xb3\xfe\xbc\xd0\x9a\x45\x17\xf8\x03\x26\x92\x98\x43\x9c\x10\x15\x89\x27\xcd\x73\xa5\x63\xd1\x47\xfe\x95\x0d\x2c\x80\x41\x8b\xf6\x19\xa2\x2b\x44\x9e\x8a\x6a\xf1\xcd\xd9\x19\xce\x5f\x4a\x18\x9d\x01\x3c\x3b\x53\xe0\xf0\x16\x40\xc1\x1d\x2f\x70\xce\x91\xe8\x44\x62\x96\xe8\x88\xc3\x22\x76\x4b\xa6\xc2\x24\x6c\xd5\x0c\x60\xa7\xe0\x4c\xd6\x59\xa6\x99\x13\x3b\x98\xe2\x82\x75\xbb\xb8\xbf\x4c\xf3\x57\x57\xc4\x66\x0b\x89\x6c\xa1\x90\xf3\x62\xa7\x72\xc2\x80\x4c\x4c\x93\x10\xab\x7d\x29\x96\x37\xf3\xe3\x34\x54\x96\xca\x5f\x26\x33\x03\xb0\x45\xfd\x1d\x0f\xda\xc9\x77\x08\xa2\xbe\x0e\xbb\xbf\x80\xa8\xef\x61\xa7\x44\x86\x11\xb6\x9a\x8f\xe4\xbf\xc5\x2f\x59\xf0\x4a\x14\xbc\x62\x33\xc4\xd0\xec\x2d\xe2\xc9\x8f\x10\x19\x6c\xa1\xaa\xa6\xc5\x87\xa2\xfd\xb2\xf8\xa8\x04\xdd\x24\x87\xa8\xef\x0e\xe7\x9f\xc8\xff\x60\x42\x38\xfc\x58\x7c\x57\x69\x94\xb8\xfc\xed\xe4\xbd\xfa\x59\xd6\xa0\x54\x29\x82\x93\x7f\x42\xd4\x37\x2f\x45\xc9\x37\xce\x0f\xb7\xb7\x6f\x45\x1b\xe9\x95\x99\xa4\x02\xe0\xd9\x39\x26\xb3\xe4\x27\xf1\xd7\x62\x9d\xb2\x59\xf2\x0f\xf1\x27\x95\x43\x7d\x91\x9f\x66\xf8\x12\x25\x7f\x83\xa8\x3f\xa5\x48\x9a\x74\x25\x5c\x00\x98\xe1\xf9\x5c\xc1\xfb\x0b\x34\x77\xca\xb9\x67\xc9\xb5\xfd\x2a\x7e\xbe\x53\xa9\xd3\x93\x4b\x88\xfa\xb2\x13\xeb\xd3\xa5\x06\xf2\x33\x44\x85\x3c\xf8\xd2\x9e\x8c\x73\x88\xfc\x6c\x5b\xc9\xbb\x52\x82\x0b\x39\x6f\x51\xf0\xb2\x9c\xf9\x42\x7c\x7c\x5a\x9b\xba\x26\x3a\x3b\x43\xf9\x4b\x2a\x68\x61\x04\x6f\x64\xf2\x9b\x61\x67\x20\xd1\x94\xaa\x1b\x47\x7f\x96\xf1\x07\x7b\x02\x9d\x3d\x90\x7c\xdb\x03\x4c\x66\xe8\x43\x04\xc7\x11\xfa\xb0\xa2\x8c\xe7\x11\x0c\x54\xea\xad\x18\xbe\x4c\x39\x8a\x26\xd0\xbf\xec\xd1\x3a\x47\xed\x9c\x33\x3c\xe5\x51\xeb\xd0\x71\xd5\x4f\xc4\xb0\x8e\xf0\xa6\x48\xf2\x23\xae\x79\x38\x4a\x0d\x57\x3b\xbf\xdd\x05\xb1\xba\x11\x8d\x81\x57\x9b\x6e\xf7\xac\xe9\x25\x62\xb9\x40\xef\xce\xaa\x4e\x3c\x32\xf1\x71\xcb\x86\xfa\x7a\x7d\x6c\x1a\x76\xfb\x21\x7a\xd4\x3f\x7e\xd8\xff\x3a\xda\x82\x56\x79\x78\xe2\xc8\xa5\x9c\xb2\xfc\x81\xa0\xd1\x94\x20\xc2\x77\x6d\x7e\x51\x7d\xcd\x71\x26\x1a\x65\x59\xba\xca\x51\x4f\x06\xdc\xd9\x51\xd1\x7e\x28\x1d\x16\x41\x4e\xbc\x79\x17\x71\x6b\x3c\x74\xe8\xae\x53\x55\x69\x6e\x85\x31\xb4\x8d\x11\xd8\x6c\x2a\x8e\xad\x9d\xf8\xed\xf5\xc5\x39\xcd\xfa\x98\x23\x39\x8c\x36\x26\x6d\xb5\xc4\xb2\x41\x34\x56\x58\xa0\x7d\x6a\x04\x8c\x49\x94\x24\x46\x43\x59\x24\x3b\x34\xc1\xbd\x54\x42\x43\x64\xa5\x40\xed\xb6\x23\xe3\x6e\x76\x06\xf2\xf1\x0a\x52\xb3\x11\x9c\x5d\x5b\x66\x31\x85\x79\x82\xc6\xa5\xc1\x4c\x62\x70\xd2\x89\x49\x12\xa7\x49\xde\x27\xe8\x03\x8f\x01\xe8\xcf\x28\x51\x59\xfb\x14\x5b\x9b\xf6\xe5\x5e\x03\xd8\xe1\x9b\x8d\x09\xdb\xd9\x49\x12\x0e\x4e\x44\x97\xe0\x64\xab\x5c\xb3\xd6\xe0\x06\x8b\x21\xd0\x64\xbd\x9d\x63\x92\x66\xd9\xf5\x8d\x18\x00\x31\xd6\x7f\x42\x28\x12\x43\xde\x6c\xcc\x5f\x31\xb0\x35\x25\x99\x55\xd4\x9f\x6e\x8b\x0c\x5d\x72\x1d\x9d\x65\x35\xfe\xd5\x04\x5d\xb5\xdf\x5d\xaf\x90\x7e\x66\xd2\xcc\x45\x3b\xe5\x1c\x5d\xac\x78\x9b\xd3\xb6\x94\xb6\xd6\x53\xbe\x66\xa8\x4d\x28\xe9\xc9\x29\x9f\x67\x05\x2f\x14\x81\x6d\xec\x30\x19\xd8\x61\xf6\xf6\xed\xf9\x8d\xff\x2c\x1e\xf0\x10\x72\x83\xe9\x72\xe9\x1d\xc4\x27\x3a\x94\xae\x99\x5a\xf9\xc0\xc8\xae\x3e\xd1\x61\xf1\x1e\xb8\xe6\x8c\x5e\xc4\x08\x94\xfa\x6f\xbe\xb2\xf9\x8a\xa1\x74\xb6\x6b\x51\x6f\x81\x42\xb2\xf4\x9a\xae\x79\x82\xfa\x3c\x5d\xa8\xa4\x65\x45\x78\xd1\x6f\xb0\xb4\x49\xc8\x13\xa4\xd8\x20\x51\x1e\xfa\xe6\xfd\x70\x01\x98\xfb\xa0\xb8\xb8\x78\x00\x85\x30\xae\xd1\xc2\x4f\x98\x2f\x5f\xa7\x2c\xbd\xc8\x81\xa7\xf9\x2f\x3c\x70\xac\xe8\x6f\xbc\x2e\x1e\xb9\x71\xfa\x4c\xe1\xf8\xd1\x64\xe4\xfe\x18\xaa\x00\x85\xf1\x00\x72\x83\x0e\x81\xe0\x3b\x3b\xa8\xc2\xb6\x55\x26\x1a\x81\x22\x7f\x4b\xa5\xb0\x15\x5a\x19\xff\x88\x52\x30\xa2\xc6\xae\x63\x38\x9e\x6c\x75\xbc\x86\xf1\x60\x32\x8a\x22\x13\xe3\x97\xc1\x68\x18\x01\xf3\x4b\x14\x82\xa1\xcd\xcc\x15\xe8\x43\x63\x03\x00\x55\xf6\xba\x52\x76\x3b\x00\xc9\x16\xb8\x43\x4b\xa8\x76\xc7\xfa\xe2\x96\xbb\x72\x86\xdc\xe5\xae\x14\xb6\x42\x87\xae\xd1\x72\x5b\x27\x9d\xfa\x45\x57\x82\xa4\xf8\xe4\xad\x7d\xa5\xc3\x26\x6b\x5f\x88\xea\x05\x26\xab\xae\xfd\x1b\xf4\x8f\x35\x66\x68\x56\xd9\x03\x63\x9f\xef\xaf\x20\x2b\xb0\x0a\x80\x32\x70\xbb\xfb\x45\xaf\x9a\xf3\x69\x8c\x26\x2d\xd2\x5f\x13\x19\xc9\x59\xeb\xcf\x08\xc4\x31\x75\xd2\x2e\x7a\xb5\x13\x02\xd9\x16\x22\x21\x4d\x14\x57\x37\x6d\x29\xff\xf1\xdc\xd9\xac\x3c\x02\x2d\xef\xae\xaf\x5b\x3a\x0e\x70\x70\x47\x83\xdb\xa6\xc4\xa9\xa9\x68\x12\xb8\x73\xc1\x8b\x35\x6d\x29\x4f\xf5\x03\x56\xd2\x11\x3b\x49\xcc\xe1\x31\x18\x0f\x0a\x3f\x23\x17\x4b\x6b\x4c\xc7\x64\x08\x10\xfd\x4b\x0e\xc3\x94\xcc\x5b\x16\x31\x06\xd5\x3f\xe5\xab\x02\xb9\x4b\x8b\x00\x54\x6f\xf4\x48\xd9\x02\x08\xf1\xaf\xb8\x31\x6c\x52\x0d\xf1\x62\x1f\x16\x6b\x06\xac\x87\x22\xc6\xbb\x0d\x30\x9c\x65\xce\xcb\x70\xe9\x0f\xe4\x46\xf4\xe6\x18\x65\xb3\xde\x0c\xe5\x53\x86\x57\x82\x1f\x6b\xc6\x8e\xda\x63\xcd\x9d\x63\xcd\x43\x4a\x0b\x45\x3b\xbb\xdd\x28\x97\x7f\x94\x0b\x2c\x51\x1d\x85\xd4\x3b\xaa\x26\xda\x86\xde\xa8\x50\xb7\xbb\xa3\x3b\x19\x34\x5d\xf1\x1a\x94\x25\x49\x62\xbf\x77\xcc\xdf\xc5\x12\x8e\xcc\xd8\x86\xb6\x43\x81\xa5\x0a\x2e\x84\xdd\xf3\x9e\xff\x82\xbc\xa7\xe3\xe1\x25\x0e\xc0\x23\xa9\x82\x1a\x0f\x26\x90\x26\x64\x7c\x3c\x81\x69\x42\xc6\x0f\xed\x95\x7c\x24\xad\x66\x4c\x80\x8c\x48\xed\xa1\xd8\x38\x1e\x63\xa0\x9c\x68\x3a\x49\x82\xc5\x45\x90\xdb\x56\x1c\x59\xda\xed\xc6\x5e\xfd\xb4\xa8\x9f\x76\xbb\x51\x21\x80\x46\x98\xb4\xc5\x17\x97\xd2\xc8\x6f\x9b\x8d\x35\x44\x48\x6f\xc5\xe8\xe1\xfc\x5b\x81\x08\x9e\x59\x3c\x90\x10\xf9\xd5\xf9\x10\xb8\x82\xa4\xc2\x2c\xeb\x58\x29\x31\xf2\x11\xec\xb1\xbf\x38\xd5\x6b\xcb\xbb\xdd\xc8\x1e\x6d\x31\x25\xde\xed\x76\x78\xff\xec\x0c\xe7\x4f\x75\x94\xc7\x67\x06\x93\x89\x7b\xd5\x04\xd3\x95\x85\xd1\x4f\x2d\x67\x7b\x30\xab\x53\xf4\x30\x92\xba\xc7\x25\x34\xa5\x3e\xc6\x8d\x26\x57\x08\xd0\x8d\x04\xf3\x7d\x58\xff\x6e\x55\x36\x28\xc4\x59\x86\x0e\x50\x80\x7e\xb2\x2a\xfd\x24\x0e\xfd\x64\x26\x72\x1b\x93\x21\xdb\xc8\x18\xbb\xf4\x13\x9b\x13\x27\xf9\x25\xf7\xf8\x82\x98\x80\x11\xd2\xbc\x8f\x4e\x68\x4a\x40\xe8\xfd\x86\x57\x07\xe0\x05\x92\xb3\xa1\xe3\x8a\x98\x71\x81\x01\xb4\x4b\x7d\x31\xc3\x5d\x8e\xc9\x04\xc8\x5c\x8e\x68\x17\xe3\x92\x04\x03\x68\xdc\x6a\xb4\x2a\x2a\x06\x2f\xc2\x61\x14\xa3\x25\x55\x76\x63\x27\x64\x52\xbf\x0e\x75\x1b\x51\x5e\x07\x62\xd7\x81\xa9\x75\xa8\x9c\xf5\x07\x54\xe9\x99\x7b\x39\x0a\xe8\x9e\xee\xf0\xea\xea\x84\x03\x86\x32\xd6\xa4\xef\x06\x37\x71\x80\x84\x7b\x8f\x37\x1c\x80\x20\x0d\x7a\x9a\x12\x42\x79\x5b\xd0\xe7\x76\xda\x96\x37\xaf\x9d\xe6\xed\xd4\xae\x76\x04\xb6\x40\x47\x3a\x05\x26\x15\x8d\xca\x33\x50\x08\x1d\x95\x98\xfc\x8e\xb1\x93\x68\x22\x0e\x52\xc1\x14\xc8\xf6\x95\x08\xfe\x2a\x52\xd2\x14\xbd\x45\x61\x2b\x3b\x59\x29\xc3\x39\xb7\xb1\x81\x73\xfc\x4f\x94\x0c\x7c\xd8\xe9\x2c\x9c\x89\x8d\x9b\x88\xf8\x8b\x35\x9e\x59\x4b\xbf\x72\xc7\xc6\x22\x4a\x26\xb5\xd1\x31\x64\x84\xec\x48\xc6\x6c\x22\xc4\x27\xc1\x08\xdb\x9c\x41\xa2\x77\x6c\xde\x6f\xd5\xf8\xfc\xb1\x28\x5b\xfd\xbb\x1a\x8e\xd8\x52\x41\x3b\xc5\x20\xc0\x8d\x4e\x04\x26\x7e\x68\xdd\x04\xee\xcb\x73\xf8\x6a\xee\xd8\x58\xd2\x27\xbd\xe3\x6e\x17\xf7\xf3\x95\x14\x31\x29\x34\xf9\x31\xf4\xe0\xf5\x95\xe9\x0c\xf4\x5e\x76\x8e\xfd\x19\xd4\x27\x2e\xb6\xd1\xeb\x04\x24\xbf\xd1\x32\xf5\xd1\x28\x9e\xc7\x5e\xed\x22\x9f\x94\x3a\xdb\xe5\x85\xb0\x0b\x6f\x1a\x39\x2b\x32\xe6\x13\xbf\x33\x6d\x79\x59\xe9\xb0\xe3\x76\xe8\x5a\x4a\x9a\xb5\x7c\x98\x24\x15\xdc\x01\x76\xa4\xef\x47\x8a\x85\x2d\xb0\xc7\xf1\x44\xbe\x8b\xe9\xf0\x51\xa6\xa5\x46\x64\x6e\x78\x1f\x14\x73\x81\x4f\xb7\xfe\xc0\xb9\x7e\x73\x09\xe8\xe9\xcd\x30\x8d\x62\xa0\x74\x7b\xe8\xea\xba\x9a\xe4\x89\xa0\xab\x58\x1f\x4c\x87\x58\x17\x01\xbf\x64\x04\x32\xd4\xec\x92\x39\x95\x00\x2a\xad\x7e\x68\x47\x0a\x2c\x2a\xaf\xa7\xac\xa1\xa7\x27\xc3\xca\xcb\xc3\x66\x77\x43\x88\xac\x68\x1b\xbb\x4c\x09\xaf\xe2\x57\x86\xc8\x0c\xb1\xde\x05\x9d\xc9\x00\x05\xf9\x83\xe2\xaf\x19\x9e\xf5\x30\xc9\x11\xe3\x1f\x21\x07\xde\x5a\x40\xfa\xdd\xe8\x5a\x1b\x4a\x12\x1f\xff\x66\xe3\x3e\x93\x9f\xe5\x88\xbf\xd4\x3b\xa5\xdf\x49\xab\xa6\x19\x37\xd3\x74\x95\x9e\xe3\x0c\x73\x8c\x72\x1d\x24\xe2\xec\xc2\x6f\xf5\xd4\xa9\x12\x47\x8f\xfa\xc7\x8f\x22\x13\xf1\xdc\xc0\xf7\xbd\xf5\xe4\xac\xb2\xac\x5a\xe8\x69\x08\x79\x4c\xfa\x2b\x9a\x4b\x73\xea\x34\x03\x27\xf1\x00\x4a\xf5\x65\xcc\x20\xd6\xd7\xed\x18\x40\xd2\x27\xe9\x05\x9a\x81\x2d\x54\xf6\x31\xe1\x1e\xb5\x51\x56\xb0\x70\x5b\x18\x53\x7c\x46\xf2\x2c\xd5\xa8\x66\x77\xd8\xc1\x97\x4a\x4d\xf6\xfe\x52\xdd\x5f\x2a\x0f\x30\xca\x90\x58\x6f\xe5\x27\xbe\xf3\xa2\x49\xaf\x3c\x5d\x3d\xe1\xf5\xb7\x07\xb9\x1e\xb4\xba\xbe\xe0\x75\x62\x16\xbe\x9c\xc4\xbd\x9c\xcc\x5e\xce\x3f\xd4\x05\xbc\xc2\x59\xd6\xb3\x89\x42\xef\xaf\xe0\xfd\x15\xfc\xa4\x57\x70\x27\x01\xbb\x9b\xfb\xf9\x85\x5d\x41\xa5\x74\x4a\x7f\x4d\x3f\x14\x8a\x26\xed\x79\x7f\xff\x9e\x50\xff\x9e\xb0\x43\x24\xf2\xb3\x14\x16\x1a\xe0\xc4\xfd\xb1\xd9\x74\x8e\x61\xe5\xdd\x11\x46\xf2\xe6\x45\x98\xb4\xd5\xbb\xe4\x15\xc3\xdc\xbe\x49\xd6\xdd\x5d\xa2\x23\x1f\x6e\x3d\xfd\x77\xe1\x26\xd5\x61\x9b\x8d\x51\x52\x0b\x01\x30\x66\xc0\x5d\xaf\x8e\x59\x2f\x7f\xdd\x4b\x01\x23\xec\x09\xb4\x91\x77\xf5\x31\x14\x07\xac\xbd\x4c\x73\xf2\x15\x6f\x9f\x23\x44\xda\xd2\x2d\x2f\xcd\x70\x8e\x66\xed\x5e\x5b\xda\xfd\xc7\xc0\xab\x21\x8e\x2c\x72\x62\xbb\x48\xac\x3b\x64\x9e\xe9\x88\xeb\xe7\x15\xe3\x24\x5a\x13\x35\xef\x59\x31\xde\x37\x68\x9e\xa1\x29\xef\x76\xf5\x1f\xfd\x05\xe2\x23\xe7\xef\x1a\xcf\x4b\xff\xbe\x89\x8d\x3c\xe9\x54\x90\xb5\xff\xc4\xad\x51\x36\xe4\x85\x76\x3f\x46\x09\x15\x48\xfc\x04\x9c\x38\xb3\x30\x4e\xdc\x86\xb1\xd6\x70\x95\xed\xa7\x81\x56\x68\x36\x63\xe2\x84\xaf\x95\xd1\xb2\x46\xf2\xbf\xaa\x3f\x06\x86\x58\x3d\xd7\x6c\xc5\x21\x14\x73\xd8\x6c\xdc\xb3\x48\x9d\x0b\x47\x4d\x5f\x39\xe2\xaf\xcd\x34\x5e\xcd\x47\xc5\x08\x9c\xaf\xc1\x3b\xd4\x3f\x3b\x93\xf3\x3f\x3b\xdb\x6c\x82\xad\x64\x2c\x46\xef\x32\xa4\xae\x8a\x33\x4e\xc3\x43\x28\xbf\xa3\x55\xfb\x4b\x38\x44\x6a\x86\x77\x45\xa0\x7c\x55\x8b\x8b\xa1\x1c\xef\xc1\x4f\x89\x78\xb5\x1f\x3d\x80\x44\xfd\x45\x63\x0e\xd4\xae\x16\x41\x67\xa4\x59\x43\x0e\xd7\x30\x0b\x25\x07\x91\x23\x0a\xdc\x52\x6e\x8f\x20\x0f\x0f\xef\xad\xb8\x71\x6d\xf4\x61\xc5\x50\x9e\x8b\x59\x5f\xac\x73\xde\x46\x98\x2f\x11\x6b\x9f\x23\x69\x05\xdd\xa6\xcc\x1b\x6f\xcb\x51\xa5\x94\x34\x20\xbc\xdb\x75\x93\xf0\xdd\x38\xb8\x74\xa8\xf7\x01\x41\x83\xa7\x86\x9d\x01\x74\x71\x9a\xd8\xa2\x2d\x80\xbc\xdb\x4d\xb5\x4d\x36\x0f\xe4\xd9\x91\x51\x38\x61\xbc\x36\xb9\x32\xf9\x12\x91\x08\x2a\xd8\x21\x81\x35\x4d\x70\x4c\xdd\xd4\x80\x00\xea\x36\xca\xf3\xd1\x5b\x67\x48\x9c\xa8\xc5\x1f\x96\xda\x91\xed\xc3\x92\xc1\x54\x65\x19\x64\x71\xee\xcc\x6f\x0d\x60\x26\xbf\xc1\x0c\x40\xbe\x8d\x5d\xba\x99\xef\xa1\x9b\x02\x40\x1e\xc1\xf1\xc4\xcd\x65\xb6\xa7\x8d\x7a\xe3\x59\x20\xde\x5b\xa2\x74\x86\x9a\x3e\xe2\xdf\xc9\x5b\x97\x3e\x64\x5e\xb2\x32\xc1\x7e\x7a\x1f\x78\xe9\x71\x5a\x27\xcb\x89\xfd\xac\xb0\x40\x46\xe1\x0c\x47\x76\xe0\xf4\x7b\x7a\x25\x78\xbc\x1c\xc5\x40\x66\x7c\xf2\xbe\x14\xf1\x6a\xd9\x08\x8d\xd9\x44\xbb\xb8\x6d\x1b\x2d\x1c\xce\x7b\xfa\x4d\xf6\xb3\xbe\x11\xaa\x01\x57\x9e\x83\x51\xb3\x41\xaf\x52\x96\xa3\x1e\x43\xf9\x8a\x92\x1c\xe9\x8d\xcf\x3f\xef\x0c\xd4\x66\xaa\x94\xe5\x45\x04\x51\xc7\x64\x2a\x5f\x65\x98\x0b\xac\xc5\xd0\x6c\x3d\x45\x21\x6b\x1c\x48\x12\xae\xeb\x45\xc3\x08\x40\x5c\xd6\x37\xef\x10\xb3\x58\x42\x7e\x63\x41\x8b\x7d\x4a\x41\x0b\x52\x69\x1d\x28\x3d\x91\x8c\x0c\xd0\xa2\x09\xed\x73\x86\x2f\x62\x13\xbf\x31\x2d\xcc\xd5\x4c\x81\xf1\xe2\xee\x76\x63\x34\xa6\x93\x24\x97\xf9\x8c\x98\xd4\x76\x3f\x7d\xf3\xfd\xb7\x2e\x95\xe3\x49\xf4\x0b\xfb\x85\x44\x2d\x5d\xc4\x1b\x9d\xbe\x35\xcb\x7a\x4b\x94\xad\x3e\xe9\x91\x93\x47\xfc\xc7\x37\xdf\x27\x4c\x59\x28\xac\xb3\x4c\xfc\xaa\xde\xa1\x4e\x07\xf5\x2f\xa4\xc9\x09\x97\x73\x5c\xa6\x97\xe8\x6d\x7a\x81\xbe\xa3\x79\x19\x55\x59\x7b\x0e\x71\xd2\x98\x93\xce\x81\xa8\xcd\x9f\xd2\x2c\x49\x54\x6e\x21\xf9\xa3\xdb\x25\xfd\x25\xcd\xb9\x10\xbc\x64\x81\xf9\x21\x0a\xc4\xa4\x55\x6d\xca\xf8\x56\x2f\xe7\x83\xff\x89\x97\x9c\xaf\x36\xe2\x3f\x39\x78\xd0\x72\xb9\x7e\xfd\x5c\x22\x33\xe3\x17\xcc\xa8\xbd\xfa\xdf\xa6\x39\xff\x86\x52\xfb\x94\x35\xa3\x53\x79\x46\x35\x19\x7d\xae\xc4\xc5\x38\x4a\x65\xf4\x92\x25\x43\xf3\x04\x41\x21\x8a\xa9\x8c\xef\x89\x69\xdf\x67\xea\x31\x39\x8e\xd6\x2c\x8b\x80\x5a\xc8\xe2\xf9\xe7\x46\xb4\x1c\x72\x09\x00\x9a\x89\x0e\xb9\x9d\x33\x34\x73\x14\x75\xf4\x9f\x50\x4c\x51\xd4\xa1\x8c\xc3\x55\xca\x97\xba\xdc\xfc\x09\x73\x94\xb2\xe9\x72\x28\x18\x37\xf1\x07\x5c\xa6\xb9\xf8\x25\xfe\xd9\xd6\x60\x34\xf1\x9f\x1e\x53\x09\x80\x7c\x33\x06\xa7\x92\x74\xd9\xca\xfd\xba\x77\x6f\xad\x50\xab\x9d\xd0\xd0\xb4\x83\x59\x61\x83\xb9\x5f\x12\x56\x3e\x40\xf7\xf2\x6f\xbd\xfc\x7b\xb7\xdc\xf2\x1f\x4a\x6e\xfd\x83\x31\xee\xb9\x62\xdc\x7d\xa1\x53\x53\x9f\xea\x99\x7b\x99\xae\x46\x3a\x1d\xb1\xe6\xe3\x5a\x56\x40\x2d\xed\x92\x09\x57\xb5\xd9\xc4\x2c\x41\xb0\x77\x9c\x24\xc9\xb7\xba\x4a\x89\x86\x33\x60\x5f\xf1\xa3\x31\x49\x39\xbe\x44\xed\x29\x9d\xa1\x89\x13\xbc\x01\xa9\xbb\xdf\x0a\x2f\x3e\xba\xc3\x25\x77\xe3\x4d\x98\x3c\xab\xcb\x34\x77\x38\x0d\x29\x39\xab\x68\x9a\xb9\x8c\x6a\x43\xbc\x33\x6e\xef\xad\x10\x8a\xec\xd3\x39\x5c\xeb\xc0\x2d\xee\x4b\xf5\xd6\x27\x71\x81\x6d\x46\x7b\xf6\x98\x40\xd7\x0b\xee\x78\xdf\x8e\xe7\x31\x81\x61\x39\xdf\xd1\xc7\xa4\xee\x4b\x7b\x0d\x41\xd4\x8a\x98\xcd\xa6\x63\x54\x32\x76\x70\x85\xa9\x03\x9e\xc7\x95\xd2\x7e\xbe\x4c\x2f\xbc\x2a\x81\x73\xe6\x26\x35\xec\x28\xdb\x58\xbd\x52\xcf\x52\x8e\x6a\x99\xc1\x4a\x67\xb1\xa8\x5e\x91\xd8\x00\xec\x0c\xb4\x21\x6c\xc1\xa8\x1c\x6f\xb7\x31\x18\x55\x20\xd4\x68\x99\xc6\xe2\xe8\x4c\x5a\x44\x5a\xc2\x58\xbb\x7d\x6e\x22\xef\x12\x74\x15\xdb\xc3\x7e\x8e\xc9\x4c\x57\x11\x47\xc5\xcd\xbb\x9c\xc7\x18\x7a\x2e\x03\x78\x0b\x0c\x34\x99\x70\xdb\x46\xd1\x28\x76\x2b\xf7\xb4\x32\xf9\x5d\x68\x65\x2c\xec\xb5\x43\xe3\xd6\x9f\x51\xe5\x74\x2b\xbb\xd8\xd3\x5f\xd3\x0f\xf2\xa2\x27\x67\xf2\xf7\x8f\x24\x5d\xf3\x25\x65\xf8\x9f\x48\x39\xeb\x87\xec\x1a\xcf\x62\x04\x46\x1e\x65\x9b\x0f\xbf\x1e\x48\x2b\xd8\xad\xe2\x65\x29\x3b\xc7\xb3\x19\x22\x07\x80\x58\x0e\xbf\x1e\x3c\x2a\x40\xb8\x01\x03\x9a\x01\x98\x0e\xbf\x7e\xf8\xb0\x00\xf0\x4d\x6a\xb2\x2f\x1e\x00\x63\x36\xfc\x7a\x30\x28\x60\xfc\xa0\xf3\xa9\x1e\x00\x61\x35\xfc\x7a\xf0\x75\x01\xe1\x2f\x94\xa0\x03\x5a\x5f\x0c\xbf\x3e\x76\xfa\x7f\x87\x2f\x10\x5d\xd7\x4f\xc0\x6b\x7b\xa9\xda\x9c\x9e\x53\x76\xc8\x94\xaf\x87\x4e\x87\x4f\x29\x99\x67\x78\x7a\x48\xfb\xc5\xf0\xeb\xc1\x9f\x0a\x08\x6f\x11\xbb\x44\xec\x80\xf6\xe7\x43\xf4\x24\xf9\xf7\xc1\xa0\xdb\x45\x8f\xff\x63\x30\xd0\x50\xd6\xd3\x29\xca\xf3\x8a\x38\xce\x13\xd4\xaa\xaa\x14\x64\x0a\x69\x29\x05\xbc\x20\x82\x94\x1c\x0f\x0a\x04\xc1\x9f\x24\x0f\x05\x70\xfe\xf8\xd1\x60\xb0\xd9\x3c\x92\x9b\xc3\x45\x2f\xee\x48\x51\xdf\x9f\x39\xea\x3b\xcb\x88\xfa\xde\x3e\xa0\x7e\xb1\xa9\xa8\xef\x1f\x11\xd4\x2f\x1f\x3b\xd4\x2f\x5d\x06\xd4\xaf\xde\x31\xe4\xc5\xc7\x10\xbd\xdb\x6b\xe9\x30\xed\x59\xad\xc6\xd6\x04\x03\xa1\x55\x47\xb6\xe3\xa0\x23\xdb\xb1\xeb\xc8\x76\x3c\x19\x46\xa2\xc3\xb6\x40\x19\xd2\xd1\xbe\x3d\x4f\xb1\x60\xe3\x60\x5a\x05\xf8\xd0\x69\xf9\x70\xe2\x73\x30\x6d\x66\x95\xba\x31\x4e\xb4\x5e\x77\xed\xeb\x75\x65\xc4\x13\x1d\x8c\x3e\x41\x10\xcb\x10\xc7\xeb\x3c\x49\x21\x36\x94\x1c\xc7\x1c\xd2\x58\xce\x1f\x58\x0d\x63\xb1\x24\xc6\xa3\xaa\x7e\x35\x2a\xa3\x09\x0f\x05\xc1\x48\xef\x95\x0c\x15\xab\xd2\x73\xa2\x59\xfb\x1c\x4d\x53\x21\xbe\xe8\xac\x9a\x58\xed\x4d\x04\xbf\x7e\xf8\xb0\x70\x29\x13\x83\x2c\xf4\x9f\xde\xfe\x19\xff\xad\xbb\x18\xa0\xdc\x18\x73\x5e\xfc\xcd\xf9\x7a\x70\x5c\x37\x9c\x00\x1a\xd7\x09\xbf\x3e\xf9\xa2\xad\x73\xc4\xda\x58\xe5\x22\x5d\x21\x76\x81\xb9\x28\xe5\x54\xfc\x98\x53\x76\x21\xad\x14\x8b\xa3\xd6\x17\xf3\x78\x54\x37\x8f\xd2\xdd\x59\xea\x24\x30\x77\x3d\x09\x31\xae\x54\x8e\x13\x93\x29\x65\x0c\x4d\x79\x76\x2d\x47\x36\xa8\x1b\x59\xf9\x9e\xab\x5c\x96\xab\x3b\x1a\x9a\x0a\x61\x59\xce\xe9\x0a\xbf\x1e\x7c\x5d\x37\x1e\x1f\x0f\xad\xe4\x68\x2e\xee\x76\x34\x72\x53\xdb\x19\x25\x0b\xc4\xda\xe9\x65\x8a\x33\xc1\x14\x8b\x61\x1d\xd7\x2e\x53\x81\x2a\x2f\xe4\x90\x2e\xeb\x86\xd4\x78\x44\x2a\xb3\xc5\xbb\x25\x6a\xa7\x3e\xce\xe2\xf8\x02\xcd\xda\x74\xcd\x23\xd8\xab\xbd\x18\x1e\x26\xbf\x94\x43\xba\xfe\x74\x43\x12\xfb\x97\x0a\x42\x22\xae\x6b\xed\x1a\x39\xa4\x46\x65\x1b\x5f\xdc\xc9\xbe\x05\xc6\xa3\x30\x47\x7b\xb6\x46\xe2\x42\xa6\xed\xa9\x26\x7a\xe2\x64\xfd\xa9\x6e\x78\x3e\x65\x5c\xc8\x11\x9e\xd7\x3f\x1e\xe2\x8f\xc6\x24\x7a\x78\xb9\xa4\xcf\x6d\xa9\x68\x8a\x20\x0e\x0f\xcf\x76\x7d\x56\xc7\x16\x65\x5b\x9f\xd4\x9f\x87\xf5\x59\x81\x30\x20\x4e\xe9\xa7\x51\xcd\xdd\x59\xec\x17\x5d\xdf\x8f\xc9\xb2\x47\xcb\x58\x37\x55\xa3\xd8\x73\xbf\x29\xad\xb8\xf8\xd3\xff\xde\xf0\xd1\xa6\xe1\xab\x5e\x53\x85\x7c\xb3\xb7\xae\x9d\x66\x3b\xe5\xb0\x2c\x2a\xcd\x13\x4c\x61\x5e\xa7\xb9\xf4\xa5\xba\x3f\x96\xe6\xf2\x6e\x74\xca\x99\xd6\x29\xbf\x43\x39\x87\xd3\xe4\xc1\xff\x38\x81\x40\x7f\x79\x10\x8f\x86\x97\x64\xf6\x4b\x3f\x5d\xe1\x5f\x8e\xc0\xe8\xd7\x9c\x92\x07\xb8\x58\xde\xb9\xfb\xdc\x11\x0f\x60\xea\x06\x54\xe8\x76\x8b\x27\x10\x37\x46\x9b\xa3\x7a\x88\x1e\x44\xd2\x09\x73\xba\x4c\xd9\x29\x8f\x07\x7e\x46\xfa\x9a\x5a\xc6\x67\xb3\x77\xec\xa7\x7b\x77\xa4\xef\x7c\x7d\xae\x0e\x54\xec\xd6\xb9\xf0\xeb\xc8\xc7\xab\x01\xf4\xc0\x5c\x3a\x55\x54\x98\xc6\x18\x25\x2b\xe9\xef\x33\x33\x3f\x2f\xe4\x4f\xb4\x55\x54\x68\xd0\x52\xeb\xc7\x51\xce\x31\x59\x74\xbb\x99\x0d\xe2\xf6\x53\x2a\x4e\x4f\x20\x54\xa1\x10\xdd\xae\xb5\xaf\xd7\x42\xaf\xbf\x0c\x08\x67\x54\x5f\x37\x53\x4a\x38\x22\xfc\xdd\xf5\x0a\x0d\xdd\x08\xf1\x0f\x3e\xf4\xae\xae\xae\x7a\x82\xf3\xe9\xad\x59\x86\xc8\x94\xce\xd0\xec\xa4\x2d\x96\x26\x47\x3c\xf9\xf1\xdd\xb7\xbd\xff\x8a\xa0\xbe\xc3\x9a\xcd\x97\x4f\x27\xe6\x6f\x92\x5e\xa0\x7c\x95\x4e\x91\xf9\xc0\xd9\x3a\xe7\x68\xf6\x1d\xcd\xb9\x6d\xa0\xb1\x4d\x30\xc2\xb4\xb4\x32\xa0\x2a\x67\x97\xfc\x6e\x1c\x99\xce\x2e\xd2\xf7\x48\x93\x06\xe5\x12\x49\xd0\x55\x3b\x37\x47\xa2\xf4\xce\x4a\xaa\x09\xdc\x35\xfc\xbe\x41\x45\x2d\x14\xb3\x40\x3e\x77\xfb\xc6\x8b\x8a\x9a\x32\x6e\x3c\xd8\xba\xe8\x63\xd8\x2e\x42\x69\xc8\x68\xff\x30\x6a\x17\xf1\x34\x58\x7f\xcd\x32\x18\xb5\x0d\x84\x08\x38\xe6\x4a\x1f\x96\x2c\x21\xd2\x92\x02\x6f\x21\x4b\xaf\x9a\xad\x83\x9f\x4d\xc0\x5f\x8c\x2d\x74\x3f\x54\xe2\xae\xaa\x40\xbb\x50\xa7\x04\x5e\xd2\xd9\x66\xa3\x32\x14\x6c\x36\xd1\x5f\x9e\xbf\x8b\x60\x96\xdc\xa8\x82\x61\x0a\xc5\xf7\x61\x0a\xd7\x2c\x1b\x22\x31\x8b\xed\x49\x30\xa0\x84\xd4\xe4\x99\x43\x24\x1f\xb4\x65\xc6\x45\x9a\xf0\xbe\x3e\x1e\x7a\xc0\xb2\x87\x4e\x92\xa0\x6e\xb7\x13\x77\xe6\xf2\x31\xa2\x23\xa3\x7b\xe0\xe2\x3a\x53\x18\x3d\x55\xe0\x7a\x02\x5e\x04\x00\xf0\x1c\xca\xd7\x31\x01\x5b\x10\xa7\x50\x5d\x12\xd9\x57\xf2\xd7\xb7\xaf\x7e\xe8\xab\x8b\x88\xe7\x45\xde\x08\x78\x7d\x94\x1c\x6b\x69\x50\x07\xcb\x30\x48\x43\xee\x0a\x02\x70\x59\x7f\x76\x18\xb8\x99\x4a\xe7\xff\xe2\x23\x56\x24\x40\x45\x02\xa1\xfd\xa5\x4c\xdd\xf6\x46\xef\x6c\x9c\x6b\x59\x15\xc6\x03\x48\x8a\xbe\x64\xec\xeb\xd3\x2c\x33\xf5\xbe\x53\x8b\x12\x03\x00\x31\xcc\x80\x0d\x11\xe3\x68\xdb\x40\xbc\xd6\xf1\x5f\xa6\xc9\x8d\x16\x86\x87\x18\x72\xf4\x41\x46\xfc\x5b\xe7\xc3\x14\xfe\xfa\x8f\xbf\x7f\xf7\x66\x98\x43\x73\xb0\x86\xeb\xad\xc6\x10\x6c\x4d\xd4\xab\xb8\x64\x3c\x19\x9c\xaa\xd4\x10\x37\x4a\xea\xfc\x58\x78\x08\xce\xc1\x76\x0b\xfa\x82\x59\x74\x97\x0b\xc3\x14\xdc\xd8\x06\x2f\xc8\x33\x74\xbe\x5e\xb8\x38\x49\x72\x9c\x9a\x6b\x53\x07\x02\xcd\xda\x29\x69\xa3\x8b\x15\xbf\x6e\xab\xdd\x93\x99\x58\xec\x75\xca\xaa\xd7\x29\x53\xd7\x09\xb6\xaf\x96\x78\xba\x6c\x4f\xd5\xd3\xd8\x39\x6a\x4b\xe6\x42\x08\x68\x92\x73\x55\x36\x07\xf2\x58\xb4\xdf\x68\x44\xac\x9e\x24\xcc\x7b\xc4\xcd\xb6\x1f\x01\x18\xc9\x66\x4c\x31\x91\x89\x8c\x50\x50\x5c\xf6\x77\xe8\x03\xd7\xc8\x33\x97\xe9\x57\x65\x65\xb9\x41\x76\xcf\xfd\xda\x60\xb3\x49\x5b\x79\x12\x71\x25\x46\x48\x88\xf2\x31\x87\x7b\x92\xc5\x30\x92\x5c\xbf\x5b\x5c\x30\xf9\xc3\xca\xb9\x42\xe1\x73\x85\xea\xcf\xd5\x1a\xea\x94\xb5\xce\xf1\x59\xbb\xdb\x8d\xf5\x76\x23\x28\xa7\xfe\x6e\xc9\xe8\x15\x19\xa6\xc5\xe6\xe7\x3b\x0e\x13\xe8\xa7\xd9\x55\x7a\x9d\xbb\x9b\x7b\xdd\x4b\x8e\xeb\xf1\x22\xaa\x6e\xa4\xbc\x81\x05\x2e\x5c\x4a\x5c\x38\x85\xcb\x2d\x5c\xd1\x0a\x41\x70\x11\x9e\x26\x19\xa2\x40\x87\xac\x9e\x09\x44\xf1\x8e\xea\xf4\x8e\x32\xa7\x1b\x8c\x5e\xbf\x7a\xfb\x2e\x02\x32\xc9\xca\x5d\x40\xfb\x51\x03\x13\x14\xe2\x0e\xc0\x9d\xbe\x7b\xfa\x9d\x04\xe8\x47\x75\xbe\x25\xb8\x67\xcf\xbf\x7f\xfe\xee\xb9\x81\x87\x78\x39\x63\x83\x0b\x52\xa6\xaf\x91\x89\x17\x7c\xfb\x5e\xf9\x0a\x55\x55\x0f\x6e\x36\xbd\x63\x99\x51\xde\xbe\x1e\x3e\x88\x40\x5d\x66\xa5\x17\xbc\x9d\x23\x74\x91\xb7\xaf\xe9\xba\xcd\x19\x56\x8a\x1d\xc1\x2f\xff\xaf\x38\xab\xff\x2b\x7e\x09\xea\xd4\x4e\xdb\x7a\x66\x9d\xf6\x8f\x39\x6a\xf3\xa5\xa8\xa1\x3f\xfd\x6f\x5b\x11\x20\x29\xa4\xa1\x74\xd6\x8f\xca\xd9\xd8\xeb\xe3\xa0\x6f\x61\x68\x89\x82\xab\x11\xa3\x04\x6d\x36\x37\x5b\x20\x8f\xa6\x7c\xa9\x91\x19\xdb\xbf\x5d\x67\x99\xbe\x49\xdf\xa5\xc1\x1c\x49\x45\x54\x7a\xd9\x7b\x64\xe4\x98\x52\x02\x9a\x34\xcf\xf1\x82\xc4\x37\x5b\xc8\x21\x02\x5b\xa8\x29\x78\x00\xe0\x2d\x95\xb2\x36\x11\x6a\x6c\xc6\xe4\x74\x09\x80\xb8\x5f\x9a\x5f\x3a\x5f\xe3\x6c\xf6\xe3\x9b\xef\x15\x17\xc5\xf5\x8c\x3d\xba\xaf\x88\xf6\x3b\x55\x60\xfe\xdc\x6c\x22\xc1\x88\x8b\x52\x87\xc4\x27\xc6\xb8\x51\xba\x70\xc7\x5e\x19\x18\x95\x57\xc7\x29\x8c\xc0\xd0\xe7\x15\xf4\x7e\xca\x54\x94\x6f\x11\x99\x19\x0c\x26\xd3\x5c\xe9\x65\xd5\x53\xa8\xee\x4c\x6c\xab\x08\xb0\xb6\xb6\xf9\x4b\xec\x2d\xe4\x5b\x68\x27\x7f\xa7\x0b\xaf\x68\x36\x2d\xec\xb2\x80\x6b\x9b\xe7\x06\x21\x52\x46\x44\xd6\x2b\xbf\x38\x35\x34\xe7\x11\x68\x49\x27\x85\x64\x16\x13\x30\xba\x88\x09\x18\x12\xa8\xc3\x0c\x11\x27\xc5\xa8\x65\xa5\xab\x60\x6c\x51\x04\x5a\x58\xc0\x1a\xe1\xe4\x32\xc6\x60\x38\x93\x81\x77\x62\x9c\x5c\xc4\x18\x00\xa8\xec\x37\x16\xcf\x3f\xac\xe2\xe8\x7f\xe2\x07\x60\x64\x71\xb3\xa8\x0d\xe5\xad\x96\xa2\x85\xb4\x13\xd4\x63\xc0\x0e\x7e\x96\x42\x89\x58\x17\x66\x23\xd9\x58\x89\x85\x99\x60\x05\x50\x87\x21\x17\xe0\xb6\xd0\x27\x63\x3b\x72\x41\x89\x1d\xb6\x8f\x3a\xfa\x11\x78\xc4\x86\xb1\xe6\x7d\x6d\x74\xd9\x12\xe9\x95\xf5\xf4\x21\x52\xf2\xcc\x53\xa5\x9c\x55\xe8\xc8\xc9\x38\x1c\x28\x2e\x99\x45\xdb\x04\xc0\x32\xe5\x96\x1a\x50\x45\x4b\xae\x2d\xa8\x81\x4a\x3d\xc6\xab\x6a\xf4\x98\x68\xaf\xfd\x02\x88\xaf\xa2\x2e\x43\x28\x95\x56\x9b\xbb\x0f\x07\xe5\xc6\x5e\x59\xb5\x69\x49\x05\x5d\x6e\x5d\x2e\xae\x02\xf0\x74\xc6\xe5\xe6\x7e\x61\xb5\xb1\xd5\xec\x96\x1b\x16\x05\xd5\x46\x05\x17\x54\x6e\x55\x94\x94\xdb\x78\xfa\xc7\x72\x33\xbf\xb0\xda\xa1\xa3\xf9\x2b\x37\x75\x8b\x08\x44\x4e\x9e\xd7\xd4\x64\xb4\x21\x88\xa5\x1c\x3d\x43\x5c\xea\x4d\x5f\xa2\x3c\x4f\x17\xc8\x9e\xa7\x96\x1d\xbb\x61\xeb\x63\x02\x85\xdc\x62\x14\x95\x54\x0a\x6b\x7c\xba\x54\x22\x71\x88\x4a\x85\x94\x1d\x31\x77\xf5\x97\xea\x52\x8f\xb8\xb9\xbc\xc3\xca\xfb\x27\x1f\xf1\x24\x49\xd0\x30\x9e\x52\x92\xd3\x0c\xf5\xaf\x52\x46\xe2\xc8\x15\xc7\xdb\x94\x64\xd7\x6d\x75\x5f\x73\xcd\x8a\xe7\x82\x4b\x66\x68\x81\x3e\xa0\xbc\xdf\x8e\x20\x87\x91\x54\xf1\x2b\x3e\x5a\x30\xcf\x9d\x63\x79\xb7\x2a\xf8\xbb\x26\xdb\x87\xcc\xfc\x20\xb8\x77\x92\x20\x89\x14\x5b\x2c\x61\x9b\x4d\x14\x41\x92\x90\x3a\x04\x29\xca\xcb\xd9\x70\x74\x05\x77\x02\x91\xb5\xb9\x3f\x8d\x01\x94\x01\x3e\xa9\xb5\xa0\x05\x31\x03\xd6\x94\xd3\x04\x01\x29\xa3\x6f\x06\x36\x9b\xb8\xd3\xc1\xb5\x56\xf8\xbc\xef\x6c\x96\x94\x3f\xb7\xa2\x89\x00\xe3\x5a\xdc\x82\x58\xe3\x9c\x9a\xe3\x11\x40\x83\x12\xef\xa8\x41\x3b\x82\x30\x2f\x0b\xc2\x9b\x4d\x24\x29\x6e\xdb\xfb\xdc\xa2\x49\x24\x18\xfb\x07\x4b\x7e\x91\x09\x89\x22\xf5\x7d\x03\xba\x5d\x66\x9f\x66\xff\x7d\x30\x8a\xc6\xaf\xf4\x93\xdb\xf7\xf2\xe3\x75\xfb\xbb\x77\x2f\xbf\x9f\x44\xc3\x92\x08\xcd\x8c\x81\x75\x11\x27\x94\x54\x99\x78\x22\x99\x78\xb8\x4e\x22\x9d\x48\xb0\x1d\xdb\xea\x29\x8c\x80\xe5\x89\xc6\x91\xdc\x9d\xf6\xe9\x5f\x4f\xff\xde\x36\x5a\x7d\x5b\x35\x97\xfa\x11\x23\x11\xba\x42\x82\x10\x65\xe8\x44\x13\x95\x5f\x88\xa0\x2a\x01\xbc\x5c\x71\x71\xd1\x7c\x91\x92\xaa\x2b\xd5\xa5\x52\x13\x96\x51\xf3\x6e\x20\x7e\x5d\x03\xc1\xc5\xc0\xbb\xdb\xbb\x35\x4d\xeb\x12\x06\xde\x0d\xa0\x54\xd9\xc0\xf0\xd0\xf0\x6e\x08\x5e\x55\xd3\xde\x62\xe3\xdd\x6d\x6d\x35\xd3\xce\x91\x57\x77\x36\x2c\xea\x99\x96\x1e\x4a\xde\xdd\xd8\xab\x6a\xda\x3b\x78\x79\x77\x6b\xa7\xa2\x6d\xab\x58\x8c\x3d\xed\x54\x25\xd5\xa6\x2a\xf2\xfb\xc9\xe7\x0a\xab\x39\x79\x81\x8c\xad\xb9\x36\x7d\x73\xac\xc2\xb6\x4e\x42\xbd\x3a\x78\x5e\x66\x3e\xb6\xf5\x3c\x8e\x17\xfb\x9f\x6e\xf2\xf5\x6a\x45\x1b\x07\xaf\xb9\x1b\xad\x3e\x0f\x6a\x95\xc5\x70\xc4\xf2\xe3\x29\xd2\xee\xea\x98\x68\x3b\x37\xf9\x31\x8e\xe4\x63\x11\x50\x0a\x63\x55\x63\xaa\x23\x1d\xf6\xd3\x0c\xa7\xb9\xaa\xa1\x61\xf4\x15\x2d\x70\x54\xca\xfb\x9b\x38\x8c\xb1\xd5\x52\x37\xe8\xc8\xc8\x72\x50\x6a\x30\xc2\x86\x89\x2a\x57\xd9\xaf\xe9\x07\x2d\x62\x86\x65\xd1\x6a\x3a\x52\x45\xb6\x9c\xee\x22\xe0\x48\xf8\x04\xf8\x1b\x5e\xe3\x8a\xa2\x37\x3c\x43\x8b\x74\x7a\xfd\xc0\x1e\xa9\x9e\xd4\xe3\xd8\xc7\xb5\xda\xe7\xbb\xda\x07\xb1\x9d\x4f\x97\xbe\x17\x87\xbe\x2d\xc1\x2c\x3d\xbf\xe3\x67\x2e\xd7\x84\xde\xbe\x08\x15\x8a\x67\x76\x77\x4f\x61\x38\x78\x69\xf6\xa3\x07\xe6\xbc\x9e\x97\x34\x37\x1d\x52\x08\xa0\x36\x00\x9a\x65\x76\x3a\x5c\x27\x65\xe9\x76\x8d\xf0\xae\xe3\x18\x9a\xb4\x48\xdb\x18\x27\x9e\xd3\x22\x06\xa3\x9b\xed\x10\x83\x11\xd6\x55\xfc\xbc\xd3\xca\x6a\x5b\xfc\xeb\xa7\x33\x72\x55\x10\xd6\xea\xcb\xd8\x70\x15\xbc\x04\xd7\x9f\x00\x64\x9a\x1b\xbe\x51\x1f\x86\x45\x1d\x04\x20\xc7\x3c\x43\x43\xbe\xdd\x82\x61\x4c\x13\x0c\xfd\xc1\x53\x31\xb8\xf2\xa8\x8c\xb5\x77\xcc\xc1\x68\x17\xcc\xbe\xfc\x77\xb3\x91\x5a\xe9\xf3\x74\xfa\x1e\x91\x99\x7e\xa4\x99\xa1\x59\xfb\x0a\xf3\xa5\x54\x4e\x2b\xf3\x82\x99\x64\xe2\x86\x7c\x3b\xdc\x01\xd3\x99\x1e\x90\x43\xf6\xc2\x96\x63\x30\x1a\xef\x68\x8c\xb7\x93\xe1\xce\xf2\x5b\x0d\x18\x6f\x27\x8a\x91\xa3\x3e\x72\xc1\x61\xe4\xc2\xd2\xab\x5a\xcc\xf1\x59\x7c\x90\xfc\xe7\x97\xb2\x01\x83\xb9\x2a\xa0\xcf\xd2\x2b\x59\xa5\xc6\xb7\x6a\x9f\x11\xc3\x97\x35\x17\x4b\x02\x6a\xe7\xa3\xc9\xa6\xb1\xb1\xb8\x2b\x67\xb1\x7f\x39\xb4\xee\x08\xd6\xdc\xf3\x8c\x62\x31\x0f\x7b\x46\xf1\xdf\xd6\x33\x8a\x07\x93\xc1\xc4\xf8\xb7\x08\x55\x41\x3d\xf5\x79\x4d\xb4\x8c\x4f\x1e\xaa\xe2\xb4\x60\x9f\x64\x96\xbb\x24\x48\x61\x4d\xee\x58\xc3\xd7\x55\x3c\x18\x61\x9e\xa4\x6e\x5c\x02\x9d\xdd\x61\x9f\xa9\x9f\x3f\xb9\x4f\x1b\xf0\x02\xc7\x1c\x84\x59\x4b\xab\x41\xaa\x0c\xe7\x8f\xe3\x34\x47\x6d\xb4\x8b\xd4\xb3\xf1\xf6\xf6\x7e\x1d\x46\x97\xae\x3d\x9a\x8b\x2b\x7f\xfd\xc7\x1a\xb1\xeb\xcf\xe3\x40\xbb\xcb\xc3\x79\x54\x50\x01\x29\x66\x54\x3d\x97\x89\x92\x8f\x76\xfa\xd9\x9e\xa7\x39\x9e\xf6\x66\x8c\xae\x66\xf4\x8a\x14\x29\xcb\xf2\x07\x7e\x49\x4f\x3f\xb9\xec\x8b\x95\x6e\x01\x58\xaa\x52\xea\x81\xa3\x8b\x55\x96\x72\x94\x37\xe9\x2b\x0c\x42\xc7\xa6\x4f\xb3\xa9\xcc\xce\xd8\x33\x51\xbf\x76\xd7\xcf\xa7\x8c\x66\x85\x85\x5f\xc8\x3a\xaf\xb4\x8b\x5a\xa5\x06\x65\x6c\x18\x38\x0d\x1a\x92\xc5\xf3\x3f\x2a\xa5\x5b\xde\xe7\x0d\xbb\xb3\xbc\x61\xae\x9d\xe0\xef\x20\x6c\xd9\x6a\x07\x93\x33\xff\xf2\x99\x9c\x8b\x92\x9b\xec\xc5\x17\x19\xb6\xec\xf2\xb7\x0e\x5b\xe6\x58\x8f\xc6\x97\xbf\x05\x2f\x78\xed\xf1\x82\xd7\x77\xea\x20\xbb\x70\xb1\xba\x32\x5a\xb4\xa6\x0e\x6d\x37\x66\x12\x01\x26\x4a\xbb\xf7\x5e\x43\x65\x0a\xaf\x31\x9a\x6c\x01\xa4\xee\x35\xec\x74\xdc\x9f\x90\x96\x2e\x61\xc7\xff\x00\xe3\xe2\x4e\xd2\xcd\x86\xf6\xcd\xf1\xfe\x27\x62\xa0\xdb\x8d\xa9\x7f\x47\x69\xc2\x4c\x58\xf5\x3e\x43\x97\x88\xe5\xea\x2f\x3f\xf2\x8f\xfb\xec\x6d\x4e\xe7\x66\xc3\xb6\x90\x02\x88\x1d\xe3\x03\xaf\x37\xd9\x99\x1c\x8b\xff\x7d\xe4\xfd\x52\x47\x07\x03\x63\x5a\xeb\x15\x6a\xde\x04\x40\x7b\xb3\xcb\x3d\xd4\xe1\x18\x2e\x86\x46\x13\x15\xc5\x9d\x16\xbb\x74\x2e\x59\x64\x71\x87\x50\xb7\x1b\x77\x74\x6a\xb3\xef\x71\xce\x37\x1b\xf7\x97\x34\xf8\x48\x31\xc9\xc3\x6c\x8b\x65\x18\xc4\x85\x42\x89\x0c\x7b\x83\x08\xd7\xc1\x5e\x0a\x3c\xe1\x3a\x72\x88\xb3\x74\x85\xc9\x8c\x5e\x19\xd9\xf9\x94\xe0\x0b\x69\xb6\xfc\x2d\x4b\x2f\x50\x39\x0b\x3a\x4b\x74\xed\x05\xe2\x26\x9f\xce\x5b\x7e\x9d\xc9\xa0\x30\x82\x69\x26\x94\x20\x29\x05\xf6\x53\x03\x48\xa5\xb3\x8e\xd8\x9a\x10\xf5\x98\xea\x16\xbe\xce\xd2\x6b\x99\x81\x18\xdc\xc8\xc4\x10\xcf\x2f\x11\xe1\x62\xb2\x88\x20\x16\x47\xb6\x1e\x22\xb3\x08\x3a\x42\xb6\xa8\xce\xd0\x05\xbd\x44\x3b\x5b\x30\x00\x79\x0c\xb6\x40\x07\xb6\x91\x7f\xde\x0d\x5b\x7a\x95\xc4\x32\xd7\x24\xd7\x79\xd3\x40\x5c\xd8\xc4\xaa\x07\x48\x6e\x12\xbd\x81\x38\x8a\x84\x94\xe4\xeb\xcc\xe3\x68\x26\xcd\xcf\x53\x25\x06\xd8\x0c\xfa\x45\x39\xa7\xab\x08\x46\x19\x9a\x0b\x1e\x90\xe1\xc5\x52\xfc\x7b\x85\x67\x7c\x19\xc1\x68\x89\xf4\x07\x2a\x84\x0b\xb9\x07\x79\x04\x20\x8d\xb3\x24\x8d\xe3\x45\x1c\xd7\x7a\x6d\xea\x74\x04\x90\x95\x6d\x90\x3f\x49\xb4\x57\x5e\xe4\x37\x20\xd5\x44\x30\xd8\xe1\x92\x88\xb8\x1c\x83\x13\xfa\x98\x9c\xd0\xa3\x23\x80\xc7\xd4\x4d\x04\x43\x6d\x46\x1e\x96\xac\x14\x68\x49\x3e\x38\x50\x8e\x4e\x36\x64\xc1\x58\x94\x4d\x6c\x0e\x46\x00\x00\xe8\xe3\xfc\x1d\x5d\x4f\x97\xcf\x90\x90\x77\x92\x6f\x28\xcd\x50\x4a\xe2\x4e\x47\x1d\xe6\x6e\x37\xa2\x84\x8b\x0a\x39\x4f\x19\x17\x58\x4a\x15\x00\xc8\x04\x11\x7b\x49\x2f\xd1\x2c\xe9\x1c\x43\xe7\xdc\x2a\xa1\x29\x8a\x20\xeb\x73\x96\x12\xc5\x7a\x63\xb2\x78\x61\x4a\x82\x37\xb4\xe7\xd5\xed\x61\xe2\xb7\x47\xb3\xc6\xcd\xd1\xac\xd2\x1a\x93\xc5\xab\x35\x3f\xa0\x7b\xe9\xc0\xc7\xfa\x4a\x24\x10\xd8\xf7\x94\x4c\x51\x2e\x04\x98\x64\x3c\x81\x6c\xab\xc2\xaa\x51\x98\xfe\x0b\x44\x84\xbc\x2e\x45\x84\x7c\x6a\xc4\x32\x00\x59\xc2\x61\x4c\x4d\x38\x48\x81\xea\x2b\xe1\x20\xc1\xcd\x45\x7c\x59\x8a\x01\xa9\x2a\xaa\x20\x2a\x41\xd5\x83\x32\xb7\x32\x9b\xf3\x62\x56\xb3\x69\x1a\xab\xf7\x0a\x8d\xb8\xdb\xac\xbf\x26\xf8\x1f\x6b\xf4\x62\xa6\xc1\xd9\x03\xfa\x9c\x88\x09\xce\xba\x5d\x95\xd4\x03\x71\x07\x35\xca\x33\xa2\xc6\x16\x3c\xbd\x60\xbb\x85\x6a\xb6\x39\xe2\xeb\x55\x35\xfa\x65\xc9\x16\xc5\x86\x17\x93\x4a\x81\xb7\x48\x30\x8f\x62\xab\xc7\xb3\x94\xa7\x3d\x74\x3e\xeb\xe1\x59\xb2\x67\xfc\x30\xea\x71\x86\x17\x0b\xc4\x26\x11\x00\x2d\x59\x49\x5b\xbd\x51\xca\x5f\xd2\x75\x8e\x9e\xd1\x2b\x87\xf3\x24\xe0\x86\xdb\xdb\xb9\xd9\xa0\x82\x3a\x92\x3e\x4f\xd9\x02\x71\xc1\x0e\x74\xbb\x2c\x50\x30\x52\xa1\x70\x22\xd3\x3c\x82\x9d\x63\x30\xec\x58\x24\x89\x62\x87\xd7\x3d\x8f\x4b\x0c\xe9\x79\x5c\x3b\xe1\x94\xe1\xb4\x47\xaf\x48\x9e\x38\xb6\x1e\x36\xed\x68\xde\xc7\x33\xc5\x7d\xc0\x48\x46\x0b\xb2\x6c\x6b\xb7\x8b\x43\xd5\x04\xad\xdc\x6c\x50\x8c\xa1\x0d\xbe\xd3\x39\xde\xda\x79\x40\xee\x1c\x1f\x31\x29\xbb\xaa\xe9\x54\x3d\xa7\x4e\x33\x9a\xa3\x98\xc0\xce\x00\x0c\x43\x73\xde\x42\x3b\x95\x0a\xf1\x55\x66\xd3\x94\x72\xf9\xb9\xb0\x32\x0d\xec\x8a\x80\x0f\x35\x67\x50\x25\xe2\x0c\xe5\xf8\x9f\x48\x9f\x37\xb6\x26\x19\xa5\xab\xd3\xab\x94\xa1\x37\xc8\x28\x2d\x76\xb4\xa6\x0c\x23\xc2\xe5\xb9\x9d\x2e\x53\xb2\xd8\x07\x48\x9b\xa3\x39\x08\xbf\xdb\x8d\xeb\x67\x19\x39\x88\x5f\xdf\x08\xf1\xe1\xad\xf8\xf0\x9d\x9c\x29\x93\xb3\xdb\x07\x41\xb2\x1b\xbb\xd6\xc7\x64\x75\x12\x7b\x10\x40\xb9\xba\xf1\x02\xf1\xb7\xd5\xc2\x98\x99\xe6\xe9\x6c\xa6\xca\xe5\xd8\x30\x59\xc8\x1c\x86\xfa\xb6\x72\x94\x32\xb1\xfd\x01\xfc\xa4\x6d\xe0\x05\xc3\xf4\x97\x8c\x9e\xa7\x99\x9c\x43\x1e\x6b\xb0\xaa\xa4\x04\xd9\x8c\x38\x4c\x1f\xec\x82\x84\xd8\xb0\x43\xcf\xce\xee\x4d\x0b\x32\x7a\x87\xee\x5b\x3d\x90\xfd\x5b\x67\x57\x58\xa1\x50\xf4\x22\x10\x11\xd8\xc5\x89\xad\x1a\x5c\x2c\x38\x6e\x77\x53\x6a\xf0\x72\x88\x25\x10\x9c\x6b\x69\x14\xaf\xd6\x55\x4a\x64\x86\x01\x99\xb5\xbe\x2d\x0f\xc3\xb3\xbd\x50\xd9\x2e\x5e\x08\x3e\x7c\x8a\x46\x25\x99\xc1\xff\x35\x2c\x95\x42\x2c\x13\x6a\x53\x82\x7e\xa0\x33\x14\x77\x06\xa0\x85\xfb\x02\xd1\x47\x45\x02\x6c\x2c\xf0\x7a\x4f\x56\x8a\x00\x8c\x79\x82\x0b\x71\x06\xe8\x2d\x31\xd4\x11\x2e\xe3\x5a\x8a\x64\x02\xbb\xb6\x05\xd6\x84\x31\xf3\xe1\xa4\x33\x13\xb1\x8a\x05\x81\x18\xb6\xc8\x87\x42\x44\x1b\x44\x66\x4f\x97\x38\x9b\xc5\xd8\xbd\x9f\xcd\x29\x25\x3c\x8b\xb1\xbb\xa5\x44\x4f\xca\x00\xdd\xca\x1c\x0b\x0e\x31\x7d\xb9\x56\xb8\xec\xd5\xb9\xf2\xdf\x6a\x72\x90\x2e\x4a\x6d\x24\xd3\x5c\x06\xe4\x09\xee\x31\x1a\x0f\x26\x62\x5d\xd0\x4c\x6c\x8e\xe1\xb7\x37\x1b\xf9\x5d\x0d\xd1\x2b\x01\x82\x8d\x0a\xa3\x54\x21\x34\xc1\xe0\x38\xfa\x54\xfd\x11\x0b\xbe\x4b\x4c\x58\x6c\x87\xe0\xb1\xf2\xf5\x39\x67\x48\x89\x4f\x15\xec\xb4\x77\x05\x34\xb6\xaa\xf4\x36\xc3\xf9\x94\x12\x82\xa6\x3c\xae\x19\x50\xa2\x93\x6f\xe8\x0e\xcb\x08\x21\xd0\xd3\x3e\xb4\x2e\x16\xca\xc5\x2f\x82\x74\x3a\xe8\xc5\xef\xcb\x29\xac\x9b\x54\x21\x4e\x0c\x9a\xa0\xa6\xa6\xdd\x87\x77\x2e\x30\x88\x92\x27\x9a\xcf\x8b\x19\xae\x81\x15\xe4\xb4\xe8\xa1\x42\x3b\x02\xd0\xad\x2a\x21\x30\x9f\x43\xb8\x80\x20\x80\x03\x19\x01\x3b\xf2\x30\x49\xad\xbf\x77\xe3\x89\x40\x9d\xc8\x49\x34\x28\x9d\x05\x2d\x98\xd7\x12\x09\x82\xd8\xa0\x43\x71\x8d\xc0\x09\xeb\x76\xa3\x6f\x5e\x3d\xfb\x59\x29\x3f\xb4\xe4\xdf\xe7\xf4\xc7\xd5\xaa\xb0\x1f\x8e\xbe\x7b\xf7\xf2\xfb\x1d\x35\x4e\x00\x57\xfe\x1f\x4c\x88\x1d\xe1\x6e\x99\xdb\xad\x75\xe7\x2a\x68\x43\x99\x41\x08\x4d\xd4\xe4\xa9\xe4\x3a\x51\xa0\x58\x68\xd5\xca\x2c\x42\xc9\x3a\xc9\xe1\xae\x79\xc1\x5d\x23\x15\x3f\x5d\xfd\xbc\xb1\x6b\x25\xd5\xaf\xa7\x26\x6a\x8d\x86\x6b\xdb\x41\x99\x46\xd3\x54\x53\xa5\xcf\x50\xc6\xd3\x1c\xc4\x5c\xea\xc7\xfa\x33\xf1\xf3\xef\x30\x35\x7f\xfe\xdc\xa2\x8f\x99\xfe\xfa\x03\x5a\xc8\x90\x9b\xa3\x98\x26\xe5\x6f\x90\x9b\xc9\x3c\xd3\x3e\xc8\x00\x0c\xe9\x13\x53\xed\xb5\x3c\x1a\x7e\x53\xf3\x2d\xd8\x34\x35\xbd\xfe\x5c\xf4\x9a\x26\xe5\x6f\xe1\xa6\xa6\xd7\x9f\x4d\x0f\xdd\xae\xd3\x76\x57\xb7\x85\xa5\xd3\x6b\x55\x24\x38\x87\x98\x6e\x36\x29\xe8\x76\x95\x61\x3b\xce\xb5\xa8\x60\x16\x97\xc2\x14\x3a\x0b\xac\xd5\x5d\x15\xd8\xdb\xd6\x0e\x7c\x77\xb5\x44\x28\x8b\x20\x87\x37\xd3\x74\xc5\xd7\x4c\x4a\xcb\xab\x34\xcf\xf1\x25\x1a\x76\x8e\xb7\x3b\x58\xc5\x24\x84\x51\x83\x97\x78\x6f\x27\x5b\x3d\x76\x8f\xd9\xdd\xcf\xac\x26\x95\x12\xd5\xa6\x84\xbf\xf6\x5c\x0d\x70\x53\xbd\x47\xb5\xc8\x4e\x25\xf5\x94\x54\xba\x56\x78\x51\xbc\x73\x13\x89\x25\xc0\x65\x57\x55\xf2\x5c\xf0\x8c\xf5\xbd\xa0\x5a\x5c\x58\xc6\xe3\x07\x4f\x2d\xb8\x99\x9f\x62\x76\x3b\x3b\x6a\x32\xc1\x32\xbb\x1b\x85\x63\xf9\x44\x1c\xe5\xf2\x29\xcf\x1a\x15\xbf\xba\x32\x92\x8b\xe0\x4c\x73\x9a\x5d\xa2\x37\x32\x2a\x88\x0a\xe9\x14\xeb\x6c\xf9\x43\x44\x2e\x31\xa3\xe4\x42\xaa\xda\xfb\xce\x2f\x3b\x04\x47\xb1\xab\x79\xe5\x9a\x41\xb4\xed\x65\x59\x20\xc3\x56\x7f\x73\xfd\x62\xa6\xe9\x72\x01\xc6\xd1\xc8\xf0\xeb\x0c\x55\xc0\xa9\x0d\x8b\x22\x68\x53\xbb\xae\xa0\x76\xf9\xcb\xd0\x9c\x9b\x70\x1f\x52\x89\x6c\x32\x16\x4b\x4d\x32\x54\x61\x2c\xfa\x4a\x9d\x0c\xb5\x3f\x96\xa3\x53\xb6\xe9\x4a\xba\x5d\xf7\xc1\x28\x0d\x3c\x18\x71\x70\x83\x8e\x5c\xcb\x54\x18\x0d\x1d\x0f\x94\x74\xcc\x27\x30\x3a\x89\x80\xd2\xb8\xc5\xa2\x2e\xa7\x2b\xc7\xb7\x9d\xcb\x62\x00\x99\x2e\x15\x43\x77\x43\x82\xe8\x62\xa2\x8b\xe5\x6c\x9c\x72\xa2\xcb\xb1\x2e\x97\x13\x74\xca\xb1\x2e\xa7\xba\x5c\xcd\xd9\xa9\x40\x01\xd0\xea\x3f\xfd\x50\xbe\xe4\x17\xd9\xdb\x74\x2e\xdd\x10\x64\x7a\x96\x59\xec\xc4\xbf\x85\x14\xc0\x54\x7e\x33\x86\x35\xc0\x29\x0c\x1c\xc4\xb1\xaf\xe1\x9f\xc0\x7d\x4f\x9b\xd3\x9d\xf0\x00\x9c\xba\x1a\xc7\x85\x5f\x3d\x74\x08\xc7\xf9\x81\x7d\x06\x80\xec\xee\x55\x1f\xcf\xf1\xfa\xc0\x8e\x54\xbb\x3d\xb0\x95\x32\x52\xaf\xe2\x99\xe2\x56\x0f\xed\x47\xc2\xd8\xdd\x4f\xa1\x46\xf9\xa8\xae\x2c\x98\xdd\xbd\x39\x2a\x85\x8f\xea\xae\x80\xd3\xa8\x3f\xa9\x3c\xb8\x8b\x0e\x05\xa0\x06\xfb\x56\x95\xfa\x3e\x7e\x1f\x2b\x30\x9b\xed\xeb\x1d\x0f\xa5\x16\xec\x9e\xd1\x54\xa5\xd3\x8f\x1b\x46\x05\x5e\x83\xfe\x3d\x89\xf5\xe3\xbb\x77\xc1\xed\xee\xbd\x4e\x60\xfd\xa8\x31\xd4\x00\x2d\x8d\x24\x4b\xa6\x00\x6c\x36\x99\xfc\x9f\x63\x16\x78\x75\x7b\xb3\x40\xfd\x72\xf1\x59\xcc\x02\x4d\x5f\x65\xd3\xbd\x80\xd9\x1e\x81\x4e\xdc\x37\x3f\x3f\xdf\x1f\xd4\x5c\x2f\xfd\x5d\x58\x96\xe5\x3b\x2c\xcb\xe8\x97\x6f\x59\xf6\x5b\x85\xdd\xb7\x03\xc8\x3c\x93\xa9\xec\x4e\x4d\xa6\xa6\xf7\x26\x53\x5f\xae\xc9\xd4\xdd\x98\xee\xcc\xeb\xec\x76\x62\x52\xb5\xdb\x89\xe3\x69\x1c\xe3\x3f\xae\x2d\x4d\x6e\x6d\x69\xd6\xcd\x6c\x69\x90\x79\xd1\x4b\xa2\x69\x86\xa7\xef\xa5\x09\x09\xa7\x2b\xb1\x1d\xe9\x42\x72\x40\xd2\x56\x46\x9b\x8f\x08\x1a\xf4\xc7\x37\x1f\xc9\xf6\x98\x8f\x10\x63\x3e\xa2\x5e\x18\xed\xeb\x62\x48\x39\xeb\xeb\xe4\x67\x38\x97\xd2\xde\x66\x13\x5d\x88\x56\x52\xa2\x30\xaa\x5b\xbb\x17\xdd\xae\x24\x04\xfd\xf3\x35\xe7\x54\x10\x27\xa5\x75\xf1\xb7\x45\xd0\xda\xd2\x27\xa3\x52\x3b\x13\xdf\xdf\xa1\x0f\x5c\xd9\x32\x60\x4a\x7e\x24\x1c\x67\x72\x9c\xeb\x95\xa9\xc5\xe9\x62\x91\xa1\x17\xf9\x37\x08\x93\x85\xe2\xf3\x66\xdf\x5c\xcb\x47\x5b\xa5\x4a\x1a\x35\xab\x96\x74\x8e\x87\xe1\x97\x07\xd5\x34\x46\xce\x93\xab\x5a\xb1\xa7\xea\xa8\x55\x57\x2b\x64\xd4\x6c\xb4\x2a\x66\x1d\x70\xfe\x4c\xa5\x51\x17\xcb\xd8\xf1\x7a\xde\x6c\x6a\x97\x5b\x9d\xee\x3b\x5f\xea\xcf\xb9\x88\xe5\x55\xfc\x6f\x74\x7d\xe8\xa9\x8b\x8f\x65\xaa\x18\x41\xf3\x9e\xd2\x19\x1a\xed\xe9\x72\xf8\xe8\xa1\x57\x5d\x66\x84\xf2\x95\xd0\x70\xdf\xa8\x87\x0f\xff\xd3\x85\xa1\x4d\x98\x6a\x6c\x5b\xaa\x47\xe5\x9d\x15\x84\x3e\xee\xbd\xef\xac\x2c\xd2\x04\x3b\x7a\x4e\x66\xb5\xcb\xd9\x60\x0f\x07\x10\x89\xb3\x52\x56\xf8\xd7\x1f\xcb\xd8\x7b\x46\x2c\xd7\xab\x2c\x26\x2c\xbd\x3a\x1e\x1f\xf8\xea\x58\x5d\x04\x88\xf4\x3b\x43\x7f\x4e\xa7\xeb\x3c\x06\x30\x47\x5c\x87\xe4\x2c\x9b\x0b\xcb\x04\x95\xa6\x3e\xe0\xec\xfa\x26\xe6\x95\x64\x94\x97\x32\x15\xa5\x44\x35\x5a\x21\x0d\x80\x64\x0f\x8a\x4f\xb1\x21\x35\x9d\x81\xf8\x7f\x6d\x9d\x59\x24\xc5\xe2\x92\xf4\x79\x55\xc1\x76\x8e\x49\x9a\x65\xd7\x37\x76\xbc\x33\x9c\xcb\xa0\x93\xaa\x1e\x17\xdb\x39\x90\xe9\x41\xcb\x2f\x30\xc1\x47\x4f\x3d\xff\x90\xba\x7c\x0f\x0e\xfa\xe8\x15\xdf\x0d\xe0\x42\x21\x69\xd3\x5c\xff\x74\x5e\x89\x8b\xf9\x94\x0a\x77\xdd\x8f\xdb\x75\x55\x0c\xf5\x9c\xce\xae\x1d\xd3\x75\x05\xae\xc6\x70\x9d\xa3\x0f\xbc\x97\x4b\xca\xd3\x33\x27\x3d\x72\x46\xfd\xe9\x1f\xd7\x77\xdc\xf5\xdd\xa4\xf1\x30\x14\x73\xfb\xf5\x4b\x67\xb3\x03\x17\x6f\x02\xba\xdd\xd4\x53\x57\x13\xc9\xe5\xa7\x31\x83\x38\xa0\xae\xae\x70\x26\x87\xaa\x62\xf0\x2e\x68\x00\x62\x57\x07\x33\x0d\xd5\xd6\x34\xfe\x0e\xfa\x55\x90\x9a\xf4\x69\x29\xe2\x1d\xf4\x6a\x60\x35\xe9\xd7\x25\x52\x77\xd0\xb5\x03\xae\x71\xef\x92\x72\xdd\x55\xdf\x02\xd8\xee\x9e\xc3\xb8\xf4\xa3\xfa\x0f\x82\xdc\x3d\x8a\x0a\x06\xfc\xa8\x01\x94\xa1\xed\xe9\xfb\xe3\x55\xae\x7b\xe0\x95\xfa\x27\x09\x06\x60\xb3\x21\xe2\x7f\x8e\xa2\x73\x7e\x6b\x45\xe7\xe7\x50\x70\xde\xc2\xdf\x59\xfb\x7a\x1f\xe0\xcd\xdc\x72\x75\x71\x4e\x76\xca\x3f\xa8\x5a\x74\xfd\xbb\x50\x8b\x66\x3b\xd4\xa2\xf9\x97\xaf\x16\x9d\x96\x1c\x6e\xa7\x5f\xa4\xc3\xed\xfc\xb7\x76\xb8\xf5\xc3\x06\xfc\x06\xda\xe3\xa5\xa7\x3d\x5e\xfe\x46\xc1\x57\x02\x7a\xc9\x19\x5c\xc1\x0b\x78\x09\xaf\xe1\x02\x9e\x27\xe3\x46\xfe\x7f\x13\x78\x56\xab\xcd\xa4\x21\x6d\xe6\x2c\x71\x13\x26\xff\xd1\xb4\x99\x99\xd5\x66\xce\x9b\x69\x33\x39\x5d\x25\x2a\x1d\x83\x34\x94\x31\x7f\xcb\xd5\x36\x3f\xe4\x92\x9b\x1f\x6a\xdd\xcd\x2f\xc7\x50\x26\xb9\xd9\xca\xe8\xdd\xe7\x19\x9e\x9e\xbe\x7e\xa1\x7e\x7a\xe6\xf5\xca\x85\xf0\x12\x31\x8e\xa7\x69\xf6\x5a\xd3\xaf\x24\x4a\xd7\x9c\x46\x02\x34\x65\xf8\x9f\x94\xf0\x50\x99\x8c\x97\xfb\x4e\x3d\xfd\xfd\x24\xc7\xe3\xe8\x58\x31\xa4\xff\x02\x3a\xd6\xe5\x1e\x1d\x2b\xde\xe3\xa2\x37\x8d\xe7\x87\xba\xe8\xb5\x0a\x43\xb8\xfe\x7a\x35\x4b\x39\x92\xbe\xca\xf1\x8d\xf1\x5a\xd3\x71\x30\x17\x6b\x3c\x93\x09\x24\x04\x28\x88\xf3\x57\x2b\x44\x94\x72\x4e\xd3\x95\xec\x5a\x7c\x92\xea\xc7\x63\x68\xa4\x34\xad\xbe\xb3\xaa\x9d\xce\x31\xd4\xfa\x9b\xe1\x0d\xb5\x10\xc4\x5f\x32\x29\xb7\x86\x2e\xd5\x5e\xaa\x48\xfe\xe9\x96\x29\xb5\xcf\xd0\x51\x3e\xb9\xa5\x85\x59\xf7\x50\x5b\x4b\x9a\xdf\x4e\xad\xed\x56\x3b\xdf\x39\x8e\x89\xa5\xdf\x9b\x4d\x43\x4f\x45\x54\xf6\x4e\xa4\xe4\x05\xc1\x5c\x2b\xf4\xd4\x0f\xd7\x7f\x69\x86\x67\x6f\xd0\x14\xe1\x4b\x74\xca\x79\x50\xd3\x52\xdd\xc3\x4a\x9b\xfd\xdb\xd9\x51\x2a\xe0\x33\x9a\xcd\x9e\xe9\xc5\x87\xcc\x7c\x35\xdb\xd1\xaa\xd4\x49\x18\x64\xdd\x6e\x07\x8d\x02\x36\xf4\xd0\x6d\x0b\x86\x1d\xd6\xed\x22\x13\x20\x32\x50\x11\x49\x0b\xae\x62\xe2\x57\x38\xcb\xb4\x8a\xba\xd1\xa4\xbd\xfa\x3b\x26\x6c\xec\x65\x55\x6e\xb3\xd3\xd7\x2f\xf4\xd2\x3b\x5f\x64\x32\x9a\x62\x24\xe2\xb4\xd5\xea\x33\x3d\x3d\xba\xb2\x1d\x37\xe8\xce\x39\xc6\xa5\x02\x75\x1b\xf4\x67\x4a\xc4\x8f\x6e\xb7\x73\x6c\xf4\xea\xea\x4b\xec\x37\x82\x08\xe8\x06\xde\xad\xd3\x17\xcb\xf3\x2a\x91\x77\xa0\x3a\x62\x43\xb5\xca\xe3\xee\x76\x3b\x35\x03\xd7\x4b\x53\x1e\x78\xb7\xdb\x89\xf5\x40\x9f\x8a\xae\xfc\xb1\xcb\x4f\xb5\x83\xf7\xd6\x2b\x36\xee\x45\x9a\x3f\xc0\x28\x8f\x6f\x96\x06\xd3\x0f\x25\x41\xb9\xf4\x7f\x72\xba\x52\x7f\x48\x43\x48\x45\x72\xa4\xc9\xa2\xfc\x53\x99\x37\xca\x3f\xb5\x25\xa3\xf4\x7e\xd1\x9b\xbe\x62\xe8\x12\xd3\x75\xfe\xb7\x32\xb9\xf1\x4a\xbf\xab\x92\x1c\xd5\x73\xed\xda\x4b\x3b\x70\x60\x43\x95\xde\xc2\xf5\xb7\x58\xe1\x1a\xdf\x5f\xe9\xb4\xcb\xd3\xf3\x17\x64\x86\x3e\x3c\xe9\x1d\x8b\x9f\x5a\xd7\xbc\x75\x1c\x6e\x04\x7a\xab\x3d\xaa\xe5\x6d\x1c\x15\x08\x53\xb2\xed\x06\xb3\xba\xe8\x87\xed\x72\x9c\x31\xde\x74\x65\xc0\xc6\xf6\x76\xb7\x25\x6f\xe1\xa5\x0b\xf9\x27\x59\x33\x3c\x8f\x51\xb7\xcb\xcd\x3b\x4e\xc5\x6c\x33\xa9\xf9\xbe\xd9\x34\x36\x41\x6e\x39\x39\xf4\x16\xde\x31\x8e\xaa\x9c\x4b\x04\xa3\x32\xa3\x13\xc1\xa8\xc2\xc5\x44\x30\xaa\x3f\x8a\x4e\x61\xf9\x14\x4b\xa1\xdf\x61\xad\x84\x58\x66\x57\x59\x19\xae\x2b\x59\x46\x4d\xc3\x6a\x0d\x4c\xfb\xcd\x86\xb8\xe9\x01\xb4\x77\x6a\x75\x79\x20\xf3\x33\x26\x49\x2c\xeb\xb8\xc6\x89\xa6\x58\x9c\x4a\x6b\x7d\xee\x57\x08\x21\xa6\x42\xa8\x73\xae\x7f\x88\xfb\x73\xd0\x41\x95\x6d\x84\x0e\xeb\x39\x2c\x1b\x6d\xcb\xac\x3a\xac\x2f\x8d\x6a\xbb\xdd\xd8\x1a\x76\xe8\x4f\x82\xeb\x95\x92\xba\xe0\x7e\x23\x27\xe5\xa2\x2d\x85\xd1\xea\x43\x04\x8c\xc1\x86\xd3\x52\x60\xa2\x51\x4c\x14\xb3\x5c\x6d\x2a\x8d\xcd\x65\x5b\x48\x5c\x26\xba\x02\x47\x96\x75\xbb\xb1\xf7\xdb\xd8\x89\x18\x2b\x92\x40\x7d\x03\xb5\xda\xb5\xb2\x6d\x37\x7d\x5b\x66\x3e\x30\x07\x89\x38\x95\xa6\x42\x72\xd2\x55\x58\xca\x34\xbe\x6e\x0d\x14\xb6\x95\x00\xb4\x34\x50\x85\xa0\xed\xe9\x35\x08\xd7\x6e\x48\xd7\x08\x5b\x0f\xf5\x04\x6d\x39\xb7\x19\xc2\x90\x10\xdd\xc7\x68\x52\x74\x3e\x46\x13\xd9\xb1\xb3\xd9\x63\x34\x71\x4a\xc1\x16\xc8\x2c\xd9\x86\x46\x71\xba\x02\x46\xb0\x1f\x4f\xac\xc4\x45\xdb\x58\x45\x93\x16\x43\x29\xcf\x70\x4c\x45\x27\x11\x59\x0b\xfe\xa5\x50\x4d\x15\xa5\x23\xac\xdc\xd4\x8a\x79\x53\xdf\xd6\xbf\xa8\xaa\x97\x60\xd8\xbc\x05\x00\xa0\x25\xc5\xf1\x53\x13\x10\x21\x36\x66\xe5\x58\xa7\xaf\x38\x89\x8a\xc0\x9d\x01\xb2\x4a\x4a\x34\x30\x40\xe5\x82\xf7\x6d\x37\xe1\x0c\xdc\x41\xe2\xb0\xae\x92\x8b\xa8\x7b\x99\xaa\x72\x15\xa5\xcf\xfe\xa3\x36\x08\x10\x60\x2b\x35\x78\xec\x8f\xe2\x24\xeb\xba\xad\x01\x70\xec\x00\x70\xaa\xd4\xbb\x44\x2a\x46\x36\xb7\x81\xf7\xed\xb8\x23\x58\x89\x55\x5e\xe6\x85\x7c\x04\xba\x9b\x17\xe5\x00\x16\x5e\x34\x67\x0b\xc4\x9f\x15\x18\xf9\x45\xf5\x9d\xdd\xd0\xde\x8f\x73\xe1\x91\x71\xab\xa4\x37\x90\xb4\x3a\x70\xca\xba\xdd\x5d\xa1\x47\x0b\x1d\xda\x38\x28\x0f\x45\x93\x6e\xb7\xb6\xc8\xa5\x35\x75\xf2\xd4\x15\x65\x17\x4b\x9a\xa1\x28\xe4\x58\x54\xe7\x51\xa4\xc4\x96\xf2\xd2\xc5\x60\x0b\xf3\x52\x92\x42\xdd\xa0\xd0\x97\x8e\xea\xda\x0e\x91\x7a\x4e\x5c\x7b\xcf\x89\x58\x7a\xd2\xac\x63\x06\x69\xf5\x39\x71\x95\xf8\x83\xbd\x48\x2a\xce\x2f\x97\x7b\x15\x8d\x69\x8d\x2b\x4a\x04\xe0\x75\xe2\x16\x2e\x92\x9b\xad\x87\x64\x2f\xc3\xe8\x75\x21\x70\xe5\xa5\x32\xce\x5c\xf8\xc6\x99\xee\x4f\xb8\x28\x1b\x67\x2e\x6a\x8d\x33\x17\x9b\xcd\xa2\x6c\x9c\xb9\xf0\x55\xe0\x8b\xe4\xa2\x81\x71\xa6\x97\x5e\x32\x9e\xc1\x95\x94\x23\xd0\x16\x2e\x00\xbc\x76\x8c\x33\x17\x25\xd3\xc9\x85\x36\xce\xf4\xbe\x8f\x16\x55\xe3\xcc\x6b\x6b\x9c\xb9\xd8\x6d\x9c\x59\xee\x21\xac\xdd\x14\x23\x5c\x88\xc9\x69\xe3\xcc\x24\x05\x60\xb3\xa1\xe2\x7f\xce\x5b\xd3\xd9\xbe\xb7\xa6\x83\x22\xe1\xfe\x06\xd9\x58\xbe\x7b\xf7\xf2\xfb\x6f\x52\x96\xf7\xcd\x40\xe3\x1b\x3c\x1b\x46\xcb\x3f\xe5\xc7\xe9\x5f\x7f\xc5\x11\x3c\xcf\xe8\xf4\xfd\xf0\xab\x1b\xfd\x06\x93\x47\xc3\x71\x64\x1d\xae\x9c\xbf\xfe\xac\x3b\xd1\x21\x25\xa2\x3f\xfb\x0c\x2c\x8c\xfe\x7c\xe9\x70\xb7\x7f\x5e\xba\x3f\x66\x98\x45\x30\xea\xa6\x4a\xc3\x11\xfd\xd9\x79\x2b\xeb\x6a\xb0\xb2\x0d\xbf\xc8\xde\xa5\x8b\x68\x02\xa3\x5c\x20\x74\xa9\x04\x88\x86\xe3\xf1\xd7\x30\xc2\xf3\x08\x8e\xc7\x0f\x1f\xc1\x3f\xc1\x71\xa4\x88\x50\x34\x99\x4c\x24\xaf\x00\x6f\x4a\xf5\x07\x30\x6a\xb7\xa3\x09\x1c\xff\x27\x8c\x66\xf8\x32\x82\x9c\xad\xd1\x04\x8e\x8f\x07\x30\x9a\xea\xf1\xef\x54\x01\x19\xd4\xd5\xa3\x0c\x2f\x30\x11\xa0\xfe\x6b\x02\x05\xdc\x5f\x7e\x91\xbf\xdc\x11\x7d\x0d\xc7\xb5\x23\x29\xea\x7d\x0d\xc7\x11\xbd\x44\x2c\x4b\xaf\xf7\x0c\x5c\xfd\xdf\x6d\x86\x6f\xe1\xab\xe1\xfe\xc9\x19\xf2\x44\x26\x38\x4e\x2f\x10\x47\x4c\x74\x35\xd9\xca\x11\xa8\xa9\x64\x88\xcb\x31\xfe\x17\x8c\x9c\x27\x50\xf5\xa1\x87\xac\xf7\x9d\xfc\x4d\x99\x9e\xf6\xf1\xb1\x98\xb7\x1a\xa1\x9a\xce\xc4\xfe\x33\x1e\x47\x5a\x6d\x2f\xc6\xb2\xbf\x5d\xd3\x05\xf9\x0f\x28\x20\x3c\x94\x00\xc6\xe3\xe3\x87\x30\xc2\xb3\x48\x7e\x1b\xc0\x71\x54\x88\xa9\x72\x85\x65\xb9\x5e\xaf\xf1\x43\x71\x6e\x76\xed\x79\x7b\xe7\x81\xe8\xa9\x5e\xfe\x43\x0d\xbd\x51\xdd\x7f\xd7\x75\x8b\xf1\x95\xc2\xb2\x88\x21\x8a\x95\xf1\x0f\xd2\x5e\xe8\x98\xf4\x56\xf2\xca\xe9\xc5\xb3\x5d\x3c\x92\xe7\xd0\x4c\xdc\x78\x32\xea\xbe\xd5\x4f\x5b\x2a\x6f\xa4\x28\xfb\x4f\x75\x78\xc7\xc7\x8f\xa0\x38\x32\x8f\xa4\x46\xb2\x87\x49\x8e\x18\xd7\xc3\x92\xcd\xa5\xdf\xa1\x82\x1e\xaa\x23\x56\x57\xf3\x80\x52\xb6\xb5\x02\x64\x7d\x13\x0b\xb6\xe2\x78\xb6\xbb\x4d\xe1\x28\x68\xeb\x5d\xe1\x2c\xeb\xcd\x8c\x42\xd1\xd6\xac\xf5\x6c\xdb\xd7\xd0\x71\x0d\x6c\xda\x47\xa4\x97\x7e\x3c\x91\x9b\x18\x38\xc7\xbf\xfc\x42\xda\x6d\xf7\x30\x1f\x7f\x0d\x8f\x07\xf6\x8a\x16\x25\xd5\xab\xba\xe3\x1e\x3f\x34\x17\x39\x70\xc1\x43\xc8\x88\x78\xf7\x59\xdf\x9b\xaa\x97\xac\x9a\x4b\xb4\x58\x8b\xfb\x15\x11\xf4\x81\xbf\xc5\xe7\x99\xca\x0e\x35\x8e\xfe\xef\x74\xcd\x72\xca\x86\x83\xff\x1b\x99\xce\xef\x11\xdf\x67\x40\x7c\xc7\xf7\x88\xef\x1e\xf1\xdd\x23\x3e\x59\x78\xbc\x03\xf1\xd5\x7c\x57\xd0\xd4\x18\xf6\xa0\x88\xc6\x1c\xe5\xb1\xb9\x89\xe2\x6c\xb9\xd7\xf0\x00\x6e\x53\x9e\xea\x25\xcd\x66\xd2\x2d\x56\xb6\xd3\x87\x38\x9a\xe1\x7c\x95\xa5\xd7\xc3\x36\xa1\x04\x9d\x34\xc3\x6f\xe2\xd3\x32\xcd\x9f\x5f\xa6\x59\x34\x9c\xa7\x59\x8e\xb6\x5f\xc1\x0b\xc4\xd3\xe1\xcd\x85\x14\x1f\x04\x7a\x1a\x7e\xb4\x38\xd3\x5f\x9e\xe7\xd1\xbe\x44\x85\x1f\xe1\x20\xfc\x05\x49\x4b\x57\x6f\x5f\xfd\x29\xfb\x79\x45\xf6\x49\x4b\x15\x19\xa9\x5e\x24\xaa\x48\x4f\xae\x4c\x64\x04\xa5\xa6\xc2\xd1\xad\xc8\xd8\x9f\x6e\x47\xc5\x02\xcd\xf6\xcb\x61\x55\xf2\xb5\x9f\x3c\x15\xe7\xc0\xa3\x15\xff\xbe\x8b\x56\xe8\x36\x01\x5a\x11\x22\x38\x7a\xc1\xc8\x34\x95\xb2\xf9\x1e\x90\x8a\x6c\x38\xc2\xde\x24\x0c\xfb\xd1\xad\x61\x3f\x0a\xc0\x36\x34\xee\xa1\x47\xe3\x18\x95\xd8\x41\xf9\x70\x45\xfa\x23\x4f\xcf\xa5\xe2\x5d\xaf\xd8\x9a\x64\x48\x2e\xb1\xa6\xdf\x91\xb5\xae\x17\xeb\x37\x28\x36\x5d\xd1\xc5\xe2\xed\x4e\xef\x8a\x69\x66\x5e\xec\x64\xb3\xc2\x7d\xdf\x34\xb4\x21\x83\x9b\xf0\x1a\x05\x37\xe1\x82\xf5\x61\xa1\x0f\xab\x94\xcc\x64\xbc\x19\x6f\x5d\xff\xc3\x15\xfc\x65\xce\x6f\x54\x9a\x83\x6c\x6e\x67\x19\x68\xee\xad\x40\x19\xc0\x23\xf8\x9f\x3b\x09\x5e\xd0\x5a\xdb\x52\x49\x19\xfc\xc1\x71\x71\xb4\xfc\x47\xd9\x93\xa0\xd4\x42\x3b\x06\xf9\xb5\x95\xfd\x7f\xa9\xe6\x7b\x74\x1d\x82\x6c\xac\xf6\x4b\xb5\xdd\xf0\xb2\x7e\x03\xc7\xd6\x3e\xd4\x46\x46\x93\x0d\xb4\x78\x4e\x66\x8d\x49\xbd\x26\xf2\xff\xe5\xd0\xf8\x8f\xa0\xee\x9f\x92\x96\xe9\xe3\xfc\x89\x68\xd9\x97\x44\xc3\xfe\xdf\xb3\xff\x9e\xce\x1e\x5c\xd4\xd0\xb0\x74\x85\x7d\x7a\x53\x28\xeb\xbc\x30\xc8\xe2\x83\x17\x70\x51\x7c\xd0\x97\xfb\xa9\x63\x3d\xff\x67\xbd\xb0\xc5\xb7\x10\xdd\xba\xc2\x7c\x69\xe8\xd2\x32\xcd\x97\x4a\x9a\x14\xe4\xc7\x62\x07\x68\xee\x3c\x2c\x6e\x2f\x74\x38\xee\x77\x86\x4a\x98\x14\xf9\x8a\x62\xa9\xe3\xeb\xbc\xf3\x78\x68\x2c\x54\x5e\xa0\x96\x50\xa9\x8b\x39\x42\xe5\x66\x40\x05\xe6\x2f\x91\x61\x4b\x3f\xff\x53\xd1\xaf\xda\xa8\x28\x05\x09\x76\x38\x82\x65\xad\xe1\x00\x8c\x0a\x1e\xc3\xd0\x6a\x86\xd2\x19\x25\x99\x8b\xbc\x8a\xb1\x4e\x7c\xb2\x15\xa8\x5b\x74\xb6\xbf\xae\x3f\x98\xfd\xf5\x2f\xab\xb0\x27\xfb\xd7\xec\x3f\x82\x6b\x36\xb5\x1b\x7e\xf0\x9a\x95\x8f\x70\xf9\x8c\xbb\x7c\x9b\xf7\x0e\x74\x8b\xa4\x26\x5f\xf8\xae\xfc\xbb\xc3\x74\x40\x7f\xd9\xb5\x58\xae\x48\xd4\x2d\x76\xb6\xb6\xae\xbb\xa4\xfb\x6b\x8b\x25\xdf\x5f\x4b\x6e\x49\x83\xa5\x51\x66\xe7\x7b\xeb\xa9\x2d\x6d\xb0\x2d\xa8\x21\x40\xef\x48\x38\x67\xbf\x9e\x7b\x76\xdf\x18\xea\x77\xb5\x4e\x73\xe4\x0a\xab\x92\x70\xfa\x7a\xa1\x9a\x77\x5d\xc9\x07\x3d\xd2\x62\xe6\xf1\xd7\x82\xed\xb4\x9c\xfb\xe4\x96\x62\xb3\xe5\x07\xca\xc0\x76\x8b\xb0\xbf\x05\x3f\x10\xe6\x03\x5a\x3b\xf9\x80\x7a\xc7\xae\x46\xc4\xdf\xf1\x5f\xd0\x4e\x5f\x85\xa3\x13\x4e\x48\xc8\xce\x83\x26\xa4\x6a\xcb\x91\x26\xa4\x6a\x65\x0f\xf3\x84\xec\x30\x23\x81\x6b\xa7\xb8\x6c\x30\x02\x33\x93\x2c\x6b\x95\x2e\xd0\xdf\x5f\xcd\xe7\x39\xe2\x70\xea\x7e\xfc\x59\x7f\x9c\x27\xa8\xbf\x40\xfc\x1b\xba\x26\x33\x4c\x16\x4f\x33\x8c\x08\x7f\xa3\x02\x9d\x2f\x93\xb9\x32\xab\x9a\x25\x73\x69\x9a\xb5\x4a\xe6\xda\x40\xe9\x22\x99\x1b\x43\xa3\xcb\x84\xd7\x42\xb8\x4e\x2e\x4d\xb5\x45\x72\xa9\xdb\x9e\x27\x65\x57\x63\xd1\x42\x4e\x7a\xb3\xd1\x43\xc4\x84\x98\x75\x38\x4b\x6e\xb6\xf0\x2a\x71\x83\x4f\xc3\xe7\xb5\xc9\xc0\xae\x40\xdf\xec\xe2\x49\xc4\x50\x26\xe3\x24\xcb\x60\xab\xdd\x6e\x94\x9e\xe7\x34\x5b\x73\xfb\xdb\x44\xcd\xbe\xaa\x8b\x89\x7d\x95\x5c\x1d\xdc\xad\x34\xea\xb0\x3d\x27\x49\xf2\x7c\xb3\x29\x7a\x16\xbf\x95\xf1\xc8\x87\xe4\xaa\x6e\xdd\x5a\xcb\x5e\xf2\x41\x2f\xbd\xf8\x4b\xac\xfd\x55\x9f\xca\x1d\x53\xc1\xb8\xbb\xdd\x78\xd9\x4b\xfc\x6f\x3a\xd4\xed\xf7\xba\x59\xb0\xf0\x1d\x5d\x81\xed\x22\x49\x47\xab\xe1\x02\xa6\xdd\x6e\x7c\xa6\x2d\xd1\x16\xca\xc8\xf2\x6d\xb2\x3c\xca\xe4\x0c\xa4\xfb\x47\x92\x24\x58\x8c\x7e\xcd\x69\x4f\x62\x69\xf1\x41\x0d\xff\x55\xf2\x32\xe5\xcb\xfe\x05\x26\xf1\x39\x5c\x1e\x2d\x40\x4f\xfd\x4e\x3f\xc4\x03\xb8\x04\xf0\xd4\x2f\x5f\xf9\xe5\x47\xab\xde\x02\xb4\x70\xb2\x78\xf2\xaa\xdb\x3d\x7d\xf2\x6a\xa4\xb1\xfb\x70\xf1\xe4\xb4\xdb\x7d\xf5\xe4\x74\xa4\xa8\xc2\x30\xdf\x6c\xd4\x5f\x2a\x38\xb3\x19\x59\x4f\x55\x2f\x86\xf3\x7e\xcf\x70\xde\x35\x1c\xce\xbb\x6e\xf7\xfd\x93\x77\xa6\xf7\xc5\x93\xf7\xdd\xee\xbb\x27\xef\xed\xf0\xc4\x70\xd4\x9f\xdb\xa8\x18\xc2\xe8\x4c\xdb\x06\x9e\xf7\xe2\xb7\x47\x2b\x30\x3c\xd3\x56\x8a\x53\x44\xb8\xb4\x63\x4b\xf0\xe8\xed\x51\x2c\x7a\x79\xf0\x70\xf8\x56\x2e\xf5\xd3\x64\x56\x39\x2a\x75\xc7\xcb\xbb\x30\xc0\xb1\x81\xbd\xfe\x9b\x10\x2d\xe2\xa8\x88\x38\xb8\xd9\xc4\x4f\x8f\x92\x29\x80\x51\x7a\x4e\x15\x54\x0a\xce\xa4\xbd\xe5\xd3\xde\x75\xcb\xae\xe2\x39\xca\xe8\x95\x57\x7a\x74\x21\x4b\xe5\x72\xbe\x14\x3f\x8f\xae\x1f\x4f\x8f\xdc\x0b\xf9\x9d\xba\xca\x6f\x92\xd9\x93\xeb\x16\x4d\x0a\x18\xeb\x6e\xb7\xf3\xb2\xdb\x7d\x33\xd2\x9d\x0e\x8b\xce\x45\xd1\x9b\x6e\xf7\xe5\x48\xd7\x1e\xae\x37\x9b\xb8\xf8\xa5\x2b\x02\x68\x06\xe1\x8e\x6c\x74\x31\xec\x5d\x1b\x73\xbb\x9b\x2a\x3a\x1d\x62\x58\x46\xa6\x43\x0a\xa5\x02\x76\x78\xe6\xb8\x77\xb2\x02\x3f\x4b\xdc\x2c\xd1\x70\x00\x3b\xa7\x21\xec\x9c\x27\x37\x5b\xef\x46\x50\x05\x65\x5d\x8f\x39\x5b\xb8\x1e\x27\xca\xbd\x0f\xe1\xe7\xa3\x0a\xea\x6b\xe5\x21\xc7\xac\xb5\x3c\x5b\x47\x58\x5d\xdc\x27\x99\x3d\x9b\xe5\x7b\x52\x1c\x3e\x3d\xe2\x69\xfd\x88\x35\x6a\x9e\xd7\x8f\x5b\xd5\x68\xe5\xca\x58\x32\xb9\x91\x8e\x01\xf1\xb4\x37\x07\x0f\x1e\x6e\xeb\x2e\xa7\xee\x78\xb9\x83\xc8\xcc\x76\x2c\x55\x70\xfe\x4b\x75\xd7\x9e\xcc\xd4\x88\x42\xd3\x2f\xae\x26\xed\x76\xe3\x20\x14\x5d\xc5\x98\x08\x16\xe7\x35\x1d\xc5\x79\xd5\x53\x2e\x85\x58\x60\xc2\x7a\x4a\x67\xd7\x85\xd3\xd5\xb0\x87\x35\xd5\xdb\x82\x61\x00\x98\x3e\xe1\x30\xff\x18\xef\x4d\xc7\x7a\x8b\x40\x0c\xa9\xb5\xe0\xa2\xa5\xcc\x3a\x4c\x3b\xe8\x68\x0b\xac\xc2\x45\x67\xc8\xeb\x4a\xb6\x10\x15\x86\xeb\x3f\x69\x83\x9a\x59\xe1\xc7\xe1\x16\xeb\x6e\x0a\x5b\x55\x88\xca\x99\x23\x92\xaa\x59\x67\x7d\x2e\x4f\xc8\x12\x8f\x5a\x72\x4b\x58\x21\x49\x1e\xc4\xe2\x7c\x6d\x14\x2d\x03\x0f\xe4\xb5\x9c\xe3\x0f\xd2\x46\xd2\xa9\x09\xca\x31\xce\x05\xda\x6c\x15\xac\x19\x3a\xc1\x09\xf6\x53\x0a\x9d\x00\x3c\x8f\xeb\xc7\x85\x01\x8c\x3b\x6c\xb3\x91\x4c\x32\x9e\x0a\xa6\xc1\xe9\xae\xdb\x25\x7d\x8e\x72\x1e\xf3\x3e\xbd\x44\x6c\x9e\xd1\xab\xa3\xe2\xcf\x9f\x9d\xbf\xff\x6e\x53\x5f\xdb\xd8\x74\xde\x20\xb7\xfb\x54\x57\xc1\x5c\xea\x9f\x4c\x57\x55\x4a\x93\x51\xd9\x48\x9c\xa0\x22\x65\x86\xb5\xe2\xc3\xa3\xc1\x10\xc3\xdc\x94\xfd\x0c\xd7\x45\x59\x3e\x1a\x0c\x73\x98\x99\xb2\x97\x82\xad\x9a\x16\xc5\xd9\x88\x0f\x25\xff\x31\x95\x3e\xa2\x37\xd3\x24\x49\x58\xb7\x1b\xa7\xff\x96\x10\xb8\xfe\xb7\x44\xfb\x82\xcc\x13\x1a\x83\x56\xfa\x6f\xc9\x5c\x7c\x9c\x1b\x0a\xa1\x86\x32\x4c\xa1\xea\x77\xb8\xde\x6e\xdd\x49\x7c\x8f\x09\x52\x24\x2c\xa1\xea\x7b\x29\x55\x48\xc9\xd7\xdd\x86\x11\x4c\x6e\xfc\x6c\x1f\xc3\x01\xf4\x73\x78\x98\x0f\x3f\x97\x6b\xfc\x5c\xd4\xd8\xca\x03\x78\xe2\xe4\xd2\x95\xde\x5a\x49\x92\xa0\x13\xc0\x12\xa4\x39\x34\x89\xf9\x7b\xc8\xe5\x8a\x21\xb1\xa5\x6a\xf8\xb6\x58\x13\x64\x5c\xca\x46\x72\x94\xf4\x90\xcb\x0d\xe2\x52\xca\x91\xa3\x84\x05\x2b\xfc\x1c\x00\xf0\x8e\xae\x6c\x71\xd1\x9e\x78\xe5\x45\xca\x5f\xc1\x26\x5b\x07\x7d\xb1\xf8\xe5\x84\x21\x49\x39\x4e\x86\x23\x32\x41\x9a\xf8\x79\x10\xdd\x50\xa8\x65\x37\xed\x27\x5f\x3b\x96\xa9\x85\x4b\xf6\xd7\x93\x91\xfb\x63\x38\x9e\xc8\x03\x93\x26\x37\xfa\x31\x6d\x48\x60\x31\xf1\xe1\x00\xda\x59\x88\x1d\x12\x55\x85\xdc\xe5\x6e\x05\x71\xb7\xa2\xa5\x28\x3f\xf1\xb7\x83\x78\xdb\xa1\x29\x7c\xf9\xcc\xf4\x88\xc7\xa0\xfb\xe7\x27\x0f\x94\xfe\x5c\x6d\x2a\x16\xbb\x74\xae\xd6\x6e\xa1\x9a\xc1\xb4\x16\x8d\x11\xd0\x8a\x96\x78\x36\x43\x44\x60\xb0\x69\x81\x96\xc4\x15\x73\x06\x90\xb8\xa3\x39\xe2\x90\x3f\xc9\xca\x99\x6c\x78\x2f\x29\x7f\x1b\xf2\xc7\x59\x39\x57\x8e\x53\xcd\x4e\x87\x27\x83\x9a\x71\xfc\xec\x8c\xe3\x1d\x5d\x25\xce\xd4\x8e\x18\x64\x66\x14\x76\xf6\x23\x66\xc1\x17\x2b\xc2\xcc\x28\x8a\xdc\x39\x4e\x35\x3b\x0a\x26\x46\x81\xe7\x31\xe9\x24\x09\xee\x76\x63\xbe\xd9\x30\x8b\x9d\xf5\xf1\x73\x85\x3f\xac\x02\xe7\x4e\x53\x1e\x8f\xd3\x49\xe1\x5c\xe0\x7d\xdd\xda\x63\x0d\xd3\x64\x70\x92\x3e\xa6\x26\xd4\x49\x7a\x74\x04\x62\x9c\x50\x51\xab\xaf\xcf\xa2\xbb\xe2\xd8\xbf\x8f\x7e\x0d\xb1\x16\xd8\xd9\x66\x88\xfa\xdf\xbf\xf8\xe1\xf9\xdb\xb3\xd7\xcf\xdf\x9c\xbd\x3e\xfd\xcb\xf3\x04\xf5\x9f\xbd\x7a\x79\xf6\xec\xf9\xf7\xef\x4e\xab\x1f\x44\x5d\xbf\xc6\x8b\xbf\x3f\xff\xde\x7f\x81\x18\xb4\xaa\x15\x78\xab\x02\xe5\x58\xfb\xe2\x3d\x6c\x55\x7a\x64\x2a\xf2\x77\xf2\xa8\x55\x19\x1d\xd1\x3e\x71\x64\x9d\x65\x6e\x5c\x70\xe5\x29\x8b\x2b\x9e\x8c\x3a\x3e\x9f\x5a\x83\x38\xc2\x73\x96\x5e\x20\xe9\xe9\x9f\xb3\x69\x12\xfd\x9f\x08\x22\xed\xed\xb4\x2a\xe2\x15\x18\xa6\xc1\x96\x5d\xe2\x1c\x9f\xe3\x0c\xf3\xeb\xc4\x9c\x36\x5b\xa6\xfd\xaf\x06\xab\x0f\xc5\x37\xe3\x52\xe5\x7d\x3c\xa7\x6c\x86\x58\xa2\xd2\x8b\x97\x82\xa4\xb9\x59\xfc\x10\xd0\x0b\xa9\x12\x56\x49\x84\x21\x2f\xa1\x69\xd2\xe2\xca\xed\x13\x40\x2e\x8d\xf4\x51\x1c\x3d\xee\xcc\xe8\x94\x5f\xaf\x50\x7b\xc9\x2f\xb2\x27\x8f\xf5\x7f\x51\x3a\x7b\xf2\xf8\x81\xfa\x47\xf4\xf3\xe4\x71\xbe\x4a\xc9\x93\xbf\x3f\x7e\x20\xff\x7d\xfc\x40\x7d\x7c\x20\xab\x47\x02\x9e\xf1\xdd\x11\x72\x87\x1c\xd9\x1c\xb3\xdc\xb0\x36\x72\x7c\x5a\x19\xa0\x09\x86\x3f\x0d\x37\x6f\x20\xb2\xde\x4d\xb8\xca\x8b\x4c\x33\x2c\xfe\xb7\x3a\xa7\x29\x9b\xb9\xaa\xb8\x29\x5d\x5d\xf7\xf4\x93\xb6\x17\xa8\x29\xd4\x2e\xa8\xcc\x73\x21\xf8\xc1\x94\xea\x94\x6e\xcc\xf1\x24\x29\x05\xe2\x91\xb1\x3b\xfa\x38\x57\x31\x3c\x10\x28\x68\x0c\x4f\x06\x90\x39\xf1\x3d\x90\x49\x42\x78\xc2\x1f\x9b\xbf\x4f\xf8\xd1\x11\x60\x63\x3e\x49\xd0\x98\x9b\x08\x1f\x6d\xb6\xdd\x4a\x82\x5d\xea\xaa\x14\x8a\xa9\x8d\x4d\xa8\x6e\x59\x39\x1a\xab\x38\x42\xed\x53\x43\x93\x26\x82\x53\xad\x84\xcf\xe1\x54\xa7\x7d\x51\x81\x73\x2c\x1a\x52\x13\x99\x33\x7a\x21\x36\xc6\xef\x1f\xdc\x04\x23\x68\xbc\x20\x97\x69\x86\x67\xed\x94\x8b\x75\xe6\x6d\x4e\xdb\xf9\x8a\xa1\x74\xd6\x26\x94\xf4\xe4\x38\xcf\xb3\x22\xa0\x4a\x04\xb6\xf1\x5d\x45\x91\x21\xc9\x38\xca\xd7\xd3\x29\x52\x5a\x6a\x31\x9e\x68\x02\x71\x52\x0a\x9a\xd1\x47\x1f\x38\x22\xb3\xf8\x46\x05\x8e\x19\xda\xa4\x63\x50\x6b\xe1\x86\xc6\x3a\x02\x4a\x8d\xb7\xf8\x94\x0f\xc7\x91\x3a\x22\x5c\x9c\x0f\x9b\xb0\xf8\x1b\x2c\x45\x31\x59\x6c\x0e\xd8\x3b\xf4\x81\x0f\xa5\x51\x84\xfd\x24\x43\x15\x46\xd0\xa9\x23\xe3\x72\x56\x6a\xc9\xaf\x6e\xbd\x53\xb9\xd6\xe5\x7a\xea\xc9\xd0\x5a\x71\x88\xd5\x97\xf1\xaf\x4a\x2f\x9d\x0c\xa7\xbd\x2c\x3d\x47\x59\x04\x23\x8e\x79\x86\xa2\x09\x74\x5a\xd8\x59\x3a\xee\x71\x82\xba\x0b\x02\xa5\xec\x08\xe4\xbb\xd6\xb0\x33\x80\x67\x0a\x21\x3e\x35\x23\x08\x67\xcc\xea\x7b\x4b\x00\xad\xe7\x75\x19\xe2\x28\xfa\x3f\xbe\x8f\xb7\x26\x36\x2f\x66\xda\x3d\x5d\xff\x36\x47\x5f\x9c\x30\xcd\x51\xd8\x11\xfc\xf5\x6d\xcc\xe1\x8d\x58\xd6\x61\x20\x94\x18\x1a\x21\xed\xf1\xb3\x05\x5b\x78\x66\x1d\xed\x74\x8c\x91\x9a\x74\xde\xb8\xe0\xe3\x5a\xa4\xea\x45\x45\xc0\x0d\xea\x8b\x7f\xa1\xef\x1c\xdf\xe1\x36\x92\x82\x5d\x8d\x31\x99\x78\x57\x65\xdb\x8a\x72\x79\xc3\xdc\x31\xf2\x7e\x8e\x88\xde\x62\x9b\x0a\x76\x8c\x6c\x9c\x1e\x26\x23\xf5\x0c\x91\x2f\x26\xcb\xaf\xdb\x2d\xf0\x66\x16\xdc\x19\x7f\x4f\xb4\xd3\xa1\xfd\xdd\xd7\x76\x2a\xb1\x17\xeb\xa5\xbc\xd3\xb1\x8e\x89\x52\x5e\x43\x21\x29\x97\x7d\x23\x2d\xe8\x08\x22\xb0\x85\x33\x3c\x7b\x21\x0d\x51\x4d\x16\xdd\xf2\xd0\xce\x64\xb0\xb1\x5d\xf1\x3b\xaa\xf3\x8b\x15\xe0\x1f\xa5\xef\xa6\x8c\x7b\x72\x67\x60\x9d\xd0\x22\x75\x23\x6e\xb0\x98\xfe\x13\x10\xde\x43\xc3\xb4\x04\xfd\x00\xe7\xce\xf5\xce\xd7\x2b\x41\xbf\xa4\x21\xd2\x27\x36\x02\x41\x7d\x9c\xdb\x45\x78\x6b\xfa\xf5\x39\x33\x75\xf5\xba\xdd\xea\x15\x1c\x55\x3f\xf5\x71\x6e\xc1\x54\x7d\x34\x3b\xc7\xdb\x56\x4d\x97\x5c\x33\x76\xda\x12\x45\xae\x4b\x5f\x2d\x4f\xcc\xdd\x25\x65\x7b\x96\x74\x2f\x79\xff\x82\x2c\x6b\x4e\x7f\xbc\x3e\xbe\x7c\xf5\xf3\x69\xd8\xb2\xc6\xda\xd4\x54\x0c\x60\x8e\xbf\x86\xc7\xfe\x2b\x68\xe3\x97\xcd\xc3\x16\xab\x91\x75\x93\x00\x29\xb8\x45\x17\x86\xf8\xdd\x53\x04\xb6\x8e\x23\x93\x4d\x82\x03\x70\x1b\xef\x64\xc6\x3e\x62\x93\xea\x98\x02\xcb\x03\x44\xb0\xc2\x1f\xe4\x4b\xba\xce\x66\xef\x50\xca\x9e\xd1\x2b\xf2\x4a\x46\x71\x12\xe4\x51\x8c\xd7\xa0\x0c\xdf\xd7\x37\xae\xba\x29\x07\x5d\xb6\x33\x4a\xdf\xaf\x57\x71\x94\x23\x76\x89\xa7\x68\xd8\x33\x1c\x72\x04\xfa\x02\xfa\x16\x40\x2c\x3a\x3b\x08\xd7\xd9\x9e\x34\x7e\x0e\x0d\x3f\x02\x1a\x95\x9d\x71\xfd\xfd\x3b\x94\x4a\x74\xe8\x7d\x18\x96\x49\x9e\x6c\x82\xf3\x6f\xd3\x9c\x9f\x53\xca\x63\x50\x91\xa1\xfc\x10\x2f\x5f\x89\xf3\x38\x26\xe9\x05\x4a\x4a\x47\xa0\xa7\x4c\x0d\x27\x5f\xed\x08\x10\xb3\xa3\x35\x22\x33\xd1\xb6\x08\x03\x53\x84\xfa\x44\x7d\xc7\xfb\xe8\x84\x75\xbb\xac\x93\x24\xfc\x04\xd8\x4e\x04\x00\x4f\xfa\x90\xc9\x87\xbd\x66\xad\xfa\xca\xc8\x89\x59\x5d\x29\xe4\x32\x60\x8f\xb3\x42\x81\x3c\x9c\x81\x18\x99\xc6\xc3\x5e\xd2\xf7\xba\x6b\xa6\x0f\x89\xbe\x27\x82\x37\xfc\xf4\x38\x4d\x27\x87\x54\x3d\xdb\xcb\xb2\x6b\x94\x7b\x6f\xf6\x17\x84\x87\x8f\xe8\x11\xbd\x7a\x77\x31\x0f\xe2\xe1\xa0\x4f\xb1\xef\x0c\xf7\xb5\x34\xe7\xb1\x48\xe0\xe3\x7d\xe0\x5c\xa7\x11\x71\xf6\x3d\x7f\x36\x71\x0f\x2a\x98\xd4\x5c\x23\xed\x3c\x62\xfc\xc6\x23\xd7\xf1\xe3\x58\x39\x9b\xc8\xea\x85\x09\x9c\x31\xf1\x69\xde\x95\xbc\x73\xbb\x3a\xda\xe7\x41\x77\x28\xc1\x6a\x74\xa0\x1a\xd3\x2a\xc5\x89\x9b\xd7\x8b\x07\xbd\x15\xc3\x97\x29\x47\x0f\x14\xeb\xeb\x17\x7f\xfa\x53\x1a\x08\x4c\x51\xa4\xad\xb2\xd1\x89\x63\x06\x8f\xc1\x78\x60\xd5\x01\x5e\xb2\x56\x9c\x8b\x73\x2d\xd3\xb5\x12\xd0\xed\xc6\x24\x21\x7d\x35\x0b\x00\x91\xf8\xb5\xd9\x44\x11\xd8\x6e\x5b\xa5\x0c\xe7\x01\xfd\x85\x8e\x1e\x57\xd1\x60\x18\xbd\x64\x6b\x8f\xce\x01\x04\x21\x2a\x7c\x3c\x9e\x40\x92\x74\x06\x10\x27\x9d\x63\x48\xcd\xf5\xe4\xec\xda\xe2\xec\x14\xe6\x09\x1a\x97\xe0\x4f\x62\x70\xd2\x89\x49\x12\xa7\x49\x2e\x51\x73\x0c\x40\x7f\x46\x09\x02\x32\x8a\x92\x0c\xae\x93\xaa\x50\x10\x00\x76\xf8\x66\xc3\xb4\x22\x45\x3e\xe1\x9c\x88\x2e\xc1\x89\xce\x98\xb1\x06\x37\x58\x0c\x81\x26\x6b\x9b\x25\x43\x0c\xa0\x43\xba\xdd\xbc\xaf\xc6\x5e\xfc\x15\x17\xa9\x34\xf0\x3c\xc6\x3a\x64\x28\xdd\x6e\xad\x4e\x46\x85\x10\x6e\xaa\x08\x91\x42\xc2\x7a\xca\xd7\x0c\xd5\x6a\x43\xb6\x71\x18\xa7\x96\x0e\xad\xf9\x77\x9a\x5e\xa0\x0c\xff\x13\xd5\x31\x59\x07\x9d\xf5\xbb\xe6\xb5\xcc\xe0\x5c\x4c\x2c\xe8\xab\xfd\x2e\xa3\xf4\xda\x68\x64\xde\x99\x36\x75\xdc\xeb\x1c\x92\x0d\xd8\x81\xcb\xb5\xc2\x3c\xfd\x82\x17\xcc\x0c\xaf\xba\x64\xb6\x64\xe7\xa2\x99\x5a\x77\xbc\x6c\x59\x9a\xe7\x78\x7e\xfd\x65\x2e\x9a\x1e\x5c\x65\xc9\xcc\xf7\x5d\x0b\xa6\xeb\xdc\xed\x72\xcd\xd2\x7c\x89\xd8\x97\x7a\xc8\xec\xe8\xca\x0b\x56\x14\xec\x58\x31\x5b\xe9\x6e\x97\x6c\xc9\x2f\xb2\x5e\x9e\xce\xbf\xcc\x25\x33\xd9\xd0\xcb\x2b\x66\xbf\xef\x58\x30\x53\xe7\x8e\xd7\x6b\x7d\x91\x92\xd2\x09\xbb\x5b\xfe\xc4\xf4\x90\xe0\x7b\xb6\xe1\x77\xc1\x36\x40\x96\x3c\x38\x3b\xda\xf4\x8e\x1e\x2c\x20\x49\xa2\xb6\xf3\x56\x85\x0b\x83\x19\x1e\x23\xcd\x49\xe2\x79\x5c\xc7\x45\x62\xb1\x46\x38\xc1\x96\x8b\x54\x71\x15\xb1\xde\xa6\x48\x67\x13\x49\x70\x9f\xd3\xef\xe9\x95\x31\x58\xee\x33\x24\x5d\x67\x65\xba\x55\xe7\x7d\x7a\x99\xb2\x53\x1e\x0f\x80\x6f\xde\x7c\x44\x75\x6c\xb0\x63\xb0\xdd\x7d\x35\xf0\x41\x57\x23\x13\x03\x9a\xa6\x79\x53\x54\xa2\x4c\x9a\x9c\x56\x77\x83\x75\x2a\x79\xa9\x6f\x71\x07\xed\xa0\xfc\x67\x2e\xb7\x20\x1e\x40\x27\xf1\x41\x81\x84\xf6\x60\x1b\x72\xd0\x92\xca\xd7\xa3\xe6\xf4\x4c\xad\x68\xd1\xe8\xcb\x59\x50\x33\xa6\xf2\x7a\xda\xef\x9f\x67\x39\x19\xbe\x38\x6c\x29\x65\x83\x2f\x68\x19\x19\xbe\xa8\x2c\xa1\xf8\xf6\x99\x96\x6f\x4d\xa6\x32\x6a\xe7\xa7\xa2\x7d\xa6\x07\x6d\x53\x72\x4f\xfb\xbe\x74\xda\x57\x32\xcb\xd0\xf1\xba\x63\x04\x1f\x01\x48\x12\x36\x1e\x4c\x20\x4e\xd8\xf8\x78\x62\x17\x51\xda\x89\x1e\x7f\x3d\x18\x62\x98\x26\x6c\xfc\x70\x02\xf3\xa2\x24\xdd\x6c\x52\xb8\x4e\xf2\x11\xed\x3d\x1a\xd2\x83\x75\x2e\xa4\xdb\x25\xc6\x4c\x70\x3d\xca\x47\xa4\x9f\xaf\xcf\x55\x61\x3c\x80\x6b\x70\x14\xf5\xfb\xfd\x68\x58\xfe\x3c\x24\x7b\xe8\xe0\x61\x2c\xe2\x9a\xcc\x10\xcb\xa7\x94\x7d\x99\x3c\x75\x31\xbc\x32\x57\xed\x94\xec\xe0\xab\x8b\x5a\x77\xcb\x59\xaf\x05\x87\x72\x30\xfb\xe0\xb4\xfa\x72\xd0\xb4\x1d\x54\x19\x57\x17\x05\x9f\x05\x61\x5f\xdd\xc2\xa1\xd1\xa4\xd1\xd5\x68\x85\x27\x08\xfa\x18\x96\x83\x11\x1f\x3a\x06\x4a\x1c\x00\xcd\x4f\x0e\x40\xff\x22\x5d\xf9\xa7\xe5\x6a\x77\xd8\x59\x64\xed\x51\xc0\x16\x8e\x27\xb7\xb2\x48\xba\x92\x8e\x09\xbb\x56\x8d\x37\x5a\xb5\x0a\x3f\xfa\xd9\x34\xd0\xe6\x0d\xaf\x62\xeb\x3c\x08\xda\x3a\x0f\x5c\x5b\xe7\xc1\x64\x18\x45\xd2\x21\x42\x1b\xba\xd8\x37\x2d\x14\x4e\xb5\xf4\xfc\xc3\x0a\x4d\x39\x9a\xb5\xd3\xb6\x6a\x01\xdb\x0b\xca\xdb\x69\x3b\x3a\x72\x32\xd9\x8d\x9c\x57\xb2\xa1\xa4\x96\x45\x1a\x3a\x5f\xf8\x30\xda\xed\x3f\x4c\x22\xc3\xe6\x67\x25\xc4\x9e\xdf\x1f\x95\xfa\xa3\x62\xe5\xd4\x07\xf1\x68\xf8\x3f\x9b\x5f\xf2\x4d\x6f\xf3\xcb\x03\xf0\xcb\xdb\x07\x0b\x18\x4c\xb5\xe7\xc9\xad\xdb\x7f\xe9\xa3\x56\x12\x5d\xee\x8f\x99\x7f\xcc\x18\xbe\xf8\x97\x46\x45\x41\xee\xe9\xfe\x90\x94\x70\x91\x8b\x4d\xfe\xf8\x67\x85\x5e\xac\xa8\xb4\x8f\x0d\x30\xc2\x19\xcd\xd7\x0c\x59\x8b\xe6\xdf\xc0\x24\xe4\xec\x2c\xa3\xe9\x0c\x31\xc8\x92\x9b\xd3\xa7\xef\x5e\xbc\xfa\x41\x65\x13\x6b\xe9\xe1\x2f\xf9\x45\x76\x9e\xb2\xfc\xc1\x7b\x74\x7d\x45\xd9\x2c\x2f\x0f\x1a\x93\x36\xd7\xb9\x3c\xd8\xf5\x88\x25\xe2\x87\xcc\xca\x1c\x37\x85\x00\x8c\xad\x03\xa3\x6b\x2e\xef\xd4\x41\x7d\x0a\x99\xbe\xda\x6b\x63\x58\x00\x68\xb9\x80\xf5\xd5\xfc\x1d\xde\x9f\x1c\xb6\x9b\x4a\xac\xb9\x58\x67\x1c\xf7\x52\xc1\x9a\x1f\x66\x45\xe1\xf3\xff\x9f\xd9\xbb\xe1\x6e\x4d\x38\x3c\xf6\xdf\x98\x4b\x69\xab\xc0\x8a\xfd\x39\x83\x24\xd9\xe7\x42\x52\x64\x2d\x66\x89\x74\xdc\x8c\xd9\xed\xbc\x31\x9a\x68\x54\xa4\x2b\x0f\xb1\xe2\x94\xaf\x00\x29\x0c\xbe\xe5\x16\xe7\x11\xc4\x52\xde\xaa\x5d\x85\x62\x16\x3a\x81\xe4\x69\x8c\xc0\x10\x6d\x41\xd5\x44\xd1\x98\x13\x81\xad\xca\x78\x93\x3f\xc3\xb3\xa7\xcb\x94\x2c\x90\x36\xac\xa4\x3a\x1e\x71\xac\x3b\xef\x8f\x27\x11\xac\x58\x45\x32\xa4\x97\x5a\x76\xfc\xdf\xe8\x3a\xd7\x56\xee\x62\xa5\xcb\x7d\xea\x59\x00\xeb\x29\x52\x2a\x12\xcd\x23\xd0\x32\x73\x79\x7e\xb1\xe2\xd7\x31\x31\x73\x29\x9d\x17\x7f\x1a\x42\x94\x1c\x36\xa9\x57\xb2\xf1\xff\x4c\xfe\x44\x2c\xc1\x1f\x73\x92\xf6\xfa\xf5\x00\x21\xef\xea\x39\xd6\x6f\xa4\x09\x0a\x1c\xda\x49\xbb\x91\xd2\x2a\x26\xb0\xaf\x61\x4f\x14\xc8\xeb\x77\xb9\xe6\x00\xa8\x5d\xde\x6c\xc6\x13\xe9\xc5\x26\x0e\x34\x03\x32\x50\xc7\x1c\x67\x1c\xb1\xc0\xf1\x96\x29\xcb\xb0\x93\xb2\x6c\x0b\x5a\xb4\xea\x37\xc2\x4b\xd7\x41\xdc\x1f\x04\x39\x54\xe9\x47\x01\xe4\x4d\x9b\x30\x99\x25\x4a\x34\x09\x5e\x44\x39\x03\x99\x93\x4f\x33\x15\x2c\x80\x98\xa2\xb3\x33\x85\x98\xad\x07\x8e\x9f\xc7\x17\x49\xdf\x92\xc3\x71\x3e\x41\x68\x26\x8a\xd3\xeb\x9c\xa7\xd3\xf7\x9f\xdf\x7a\xee\x23\x99\x40\xde\xda\x8d\xb8\xe5\x11\x2d\x1b\x77\x47\x6a\xd6\xf2\xe4\x46\x66\xea\xea\x17\x5d\x29\x86\xa6\x34\xbe\xea\xb9\x54\x20\x22\x00\x59\xa5\xc8\x40\x0c\x1e\x5a\xdd\x41\xc1\x56\x2a\x8f\x61\xb0\x15\xd2\x6d\x3a\x7b\x45\xb2\xeb\x58\x5c\xbe\x30\xc5\x91\x75\x93\x98\x25\x8f\xf6\xe2\x9a\x82\xf0\xf0\xc4\x77\x40\xd4\x0f\x1f\x9f\x88\x48\x7f\xf9\x2f\x20\x64\xb3\x51\xef\xe2\xe6\xf1\x63\xb3\x69\xfe\x0c\xb2\x15\xfb\xf5\x29\x29\xb8\x24\xe1\xe3\xc1\x44\xe0\xb0\xf1\xf1\x04\xa6\x09\x19\x3f\x2c\xd9\x8f\x1a\x6a\x96\x8a\x55\x49\x13\x2a\xea\xca\x9c\x56\x65\x04\xa3\x4f\x29\xc4\xd5\x22\x7b\x4a\x61\x5a\x2d\x34\xd7\x80\xee\x24\xf5\x4d\x49\xc4\x1e\xfa\x50\x28\x66\x5c\xcf\xbb\x26\xd8\xcc\xfc\xab\x1c\xaa\x83\x8a\xff\x5b\xb1\xbd\xf7\x9e\xc4\x9f\xdb\x93\xd8\x2e\xaa\x00\x6b\xd6\xaa\x4a\x15\x20\x77\x97\x4e\xe0\xd7\xc1\x09\x79\x8c\x4e\xc8\xd1\x11\xe0\x63\x32\x71\x28\x05\x99\xd8\x84\xba\x09\x17\xfc\x01\xa8\xe1\x76\x8b\x04\x9f\x08\x46\x82\x0a\x08\x7e\xc0\xbb\x6e\x86\x70\x54\x1d\x3a\x6d\x0c\x87\x32\x3d\x83\xc4\xf8\xa6\xf2\x4a\xb7\x65\x82\x42\x20\x02\xe5\xfb\x5d\xbc\x95\xf4\x39\x55\x3f\xc0\x70\xcc\x27\x76\x68\x31\x4a\xc4\x94\x54\xff\x7a\x60\x48\x3b\x99\x4e\xc0\xad\xc4\x22\x75\x8b\x12\x12\x96\xbb\x71\xe9\x51\x8f\x94\xfc\x25\x5b\xcd\x6f\xab\x98\xce\xe1\xa2\xe5\x47\x72\x0a\xe3\x12\x0e\x3d\x8d\x91\xc9\x71\x78\xbb\xd5\x12\xb3\xf0\x9e\x8e\xbc\xe7\xd0\xdb\xf8\x43\xd6\x2f\xd9\x74\xb9\x26\xef\x6f\x15\x5e\xb4\x31\x86\x2a\xf8\x85\x20\xb7\xd0\xf9\x54\x88\x46\x77\xdc\xfa\x63\xb3\x0d\x72\x1d\x3f\x21\xd7\x70\x9b\x13\x2c\x0f\x55\x82\xeb\x4e\xb0\x09\x74\x09\x89\xfa\x73\x8a\x70\xe6\x99\x26\x1a\x73\x17\x9c\xac\x52\x96\xa3\x17\x44\xda\x28\x0e\x84\xf4\xc5\x62\x0c\x07\x32\x96\x4d\x61\xae\x58\x20\x35\xc9\xb4\x38\x7c\x05\x8c\xd4\x66\x44\x00\xc0\x4e\xba\xd9\xd0\xc7\xc7\xfa\x54\x38\xf9\x9f\xf3\x64\x00\xd7\x49\xef\x18\x66\x0e\x09\x20\x71\xfa\x80\x02\x70\x92\x3f\x4e\x4f\x40\x36\x3e\x3a\x5a\x4f\x12\xae\xaf\x75\x0e\xf3\xa3\x84\x5a\xcc\x9a\x6d\x95\xed\xe3\x61\x82\xc2\xfa\x22\xd2\x62\x5a\x59\xce\x2d\x25\xf2\x75\x25\xba\x82\xbb\xc7\x71\x45\x6e\x58\x5f\x44\x00\x22\x25\x61\xd7\xa8\x95\xa4\x05\xcc\xc3\x92\x05\xcc\x4e\x65\x4e\x90\xc3\x93\x83\x27\x9f\x87\x83\x73\x10\x1b\x3d\x08\xb1\xd1\x8b\x55\x3a\x6d\xea\x54\x78\x8f\xda\xee\x51\xdb\x6d\xdf\x0d\x58\xdd\xcd\xdf\x75\x09\x03\xbe\x7b\xe6\x5c\x31\x30\x8a\x6b\xee\x22\xdb\x71\xe7\x8c\x5e\xf1\x34\x1e\xb3\x49\x71\x03\x4b\x98\xc7\x28\xaf\x0c\x44\xd3\xf5\x6b\x86\x72\x44\x78\x73\xed\xdc\x21\x17\xf7\x30\x8e\x44\x01\xb9\xd5\x0b\xc1\xe7\x97\x99\xc8\x67\x90\x5c\x0e\x11\x07\x7d\x8c\x74\xeb\xd1\x35\xbc\x40\x8e\x70\xf5\xf9\x65\xc6\xaa\x33\x03\x49\xc4\x52\x39\x6a\x0e\xeb\x4f\x60\xc9\xa6\x2f\x69\xf1\x98\xde\x8e\x47\xd7\x87\xb4\x8e\xc7\xa1\x35\x5e\x0b\xb7\x27\x66\x2a\x42\xe7\x2d\x15\x11\x75\xba\xd8\x7a\x08\xea\xed\x1e\x93\x69\xb6\x9e\xa1\x7c\x9f\x25\xa2\x7b\x0c\x0a\xea\xe9\x5b\x12\x1a\xe4\xc4\x25\x8f\x52\xe6\xf6\x74\x34\x98\x4e\x80\xa1\x2b\x3f\x19\x75\xbb\x05\x0a\x44\x05\x83\x37\x42\x01\x7b\x3e\xe6\xbe\x70\x93\x98\x41\x0e\xb6\xb0\x33\x00\x43\x35\xd0\x5b\x6e\xbd\xda\x8b\xfa\xbd\xf7\xc5\xd9\xdb\xef\xfa\x0c\x4d\xef\xd9\x97\x7b\xf6\xa5\x21\x81\xd8\xc1\xe0\x3b\x92\x92\x52\xef\x6a\x77\x2e\x02\x89\x5e\x6e\x81\x34\x7f\x58\x8b\x3a\x31\x06\xb0\x83\xf3\x1f\xd2\x1f\x62\x6c\x4f\x88\xb5\x63\x21\xd2\xb0\xfd\x18\x40\xdc\x23\xb7\x63\x9f\xa6\x32\x20\x77\x30\x58\x5f\xd8\x54\xfb\x50\xe3\x03\x7b\x7b\x18\x5d\xdd\x5f\x9f\xfb\xeb\xf3\x25\x72\xff\x87\x8b\xe0\x58\xb3\x32\x04\x6c\xa1\xfc\xfa\x74\x1f\x9f\x1e\xd4\x2d\xdc\x25\xa3\xae\x24\x89\xde\x79\x38\x08\x40\x2d\x4f\x91\xf7\xd0\x3f\xd6\x69\xd6\xfc\x29\xe4\xfe\x46\xde\xdf\xc8\xc3\xa2\xbe\x1e\x74\x23\xb9\x10\x1a\x94\x5b\x18\x57\x37\x92\x2b\xb7\x30\x5e\xbc\x8e\x96\xf8\x52\x6a\x99\x50\xf3\x45\x12\x54\x9a\x60\x88\x2d\x41\xad\xb9\xcb\xb4\x5a\x72\x7e\xfd\x3a\xe5\x4b\x47\xa3\x56\x14\xc9\xb9\x3a\x3a\xb8\xa0\xae\x4d\xb5\xaf\xc7\x04\x06\xbe\x81\xb6\x57\xd7\xa8\x1b\x84\x4c\x10\x14\x08\x50\x65\x29\x10\x00\x0d\xed\x9f\x8a\xa4\x3e\xa4\x65\xf6\xca\x2a\x20\x62\x06\x46\x01\x53\x54\xc7\xa4\xb5\xc0\x06\xcc\xd5\x81\x42\x04\x80\x63\xdb\x4a\x1c\x29\xa4\xe2\x30\x66\xde\xc6\x20\x73\x9b\x54\xc4\x10\x03\x77\xab\x9f\xa9\x76\x69\x52\xfa\x7f\x46\xe9\x74\xd9\x2f\x5e\xfc\x00\x24\xc6\x44\x6c\xf7\x8a\x48\xfb\x9c\x4f\xa2\x76\x39\x88\x5d\x52\xb3\xb9\x67\x98\xee\xd1\xf3\x1f\x83\x61\xaa\xc4\x22\x4e\xb3\xec\x5c\x5a\xa5\xec\x79\xb8\xd0\xf5\x76\xdc\x44\x0b\x69\x2f\x22\xb5\x55\xef\x08\x61\xf2\x9d\x38\x28\x82\xa8\x19\xca\xe1\x9f\x0c\xe5\x1c\xc8\x40\x92\x59\x89\x7d\xbc\xc7\x39\xf7\x38\xe7\x4b\xc1\x39\x81\x48\x01\xac\x62\x30\xf7\x25\xf1\x77\x8d\xf9\xba\x56\x19\x13\xdd\xa9\xe9\x7a\xf9\xa9\xbb\x8e\x3f\xaa\x61\x47\x6b\x2c\xb5\x77\x72\xa3\x25\xfb\x1b\x0e\xfa\x02\xb7\x7c\x23\x0d\x97\xc0\xf6\x20\xab\xf3\x4f\x87\xed\x32\x71\xfa\x6f\x97\xca\xf7\x1e\xdb\xfd\x6b\x60\xbb\xe0\x93\x5f\xc5\x67\x26\xf4\xd2\x11\x88\x5c\xc0\x62\x0e\x54\xf0\x82\x21\xba\x0d\x1e\xd5\x07\xb6\xa1\xbe\x76\x1f\x4e\x25\x75\xcf\xde\x15\x0c\x4a\x00\x64\x9f\x58\xcf\x75\x90\x64\xb4\x60\x74\xbd\xba\xe7\x53\xee\x6f\xee\xe7\xe0\x53\x9a\xda\x81\x05\x1c\x9a\x2a\x5a\x1b\x3d\x26\xf5\x08\x1c\x3b\xfe\xc6\x15\xf7\x22\x7b\x47\xdd\xa7\x55\xee\x3b\xc0\xb1\x42\xa1\x51\x68\xbd\x36\x9b\xd8\xd4\x39\x8d\x01\x64\xe3\xc2\xe6\x99\x80\x49\x22\x15\xd7\x72\xf7\xa5\x5d\x1a\xdb\xc2\x03\xb1\xc6\x5d\x49\x7f\x15\x16\xec\x33\x31\x5a\xa8\x11\x67\xd5\x94\x63\x62\xa0\x19\x07\x66\x1c\xc9\x7e\x73\xa5\xd2\x32\xcd\x7b\x44\x66\xba\x6a\xf4\x42\x60\xfe\x55\x4d\x3e\x83\x7d\x43\xf8\x2d\x42\x65\x01\x0d\x23\x75\xac\xac\x0a\x94\x42\xb0\x62\x30\xfe\x30\x68\x30\xfe\x70\xd2\xed\xba\xbf\xa0\x36\x11\x10\xd3\x04\x02\x1e\xc4\xe6\x72\x76\xe2\x01\x24\x85\xba\x92\x42\x04\xb1\xa3\x6c\x36\x4a\x52\x7a\x2b\x84\xb3\x4c\xf3\x1f\xd0\x07\xbe\xd3\x70\x81\xdd\x85\xe1\x82\xd8\xf6\x15\x43\x97\x98\xae\x9b\x9a\xac\x98\x7f\x8b\x66\x7f\xf8\xed\x37\x53\xfd\xcc\x47\xe0\xb5\xee\xf6\xd3\x1f\x03\x4c\xee\xed\x57\xee\x79\xa6\x2f\xd4\x7e\xe5\xe8\x56\xf6\x2b\x98\x7c\x36\xfb\x15\x4c\x38\x62\x39\x9a\x36\x25\x9e\x1f\xeb\x7d\x78\x57\x1c\x6c\xe8\xc1\xcd\xea\xab\xed\xa4\x6e\xad\x46\xc1\xe4\x92\xbe\xff\xa4\xd6\xc1\x75\x58\xe5\x77\xe3\x14\xf9\xe9\x44\x16\xb5\xf8\x75\x8e\x7c\x46\xee\x78\xf3\xf6\x6f\xaf\xfb\xa9\x9b\x58\xd9\xd7\x02\x04\x2d\x74\x61\x9a\xd0\xfe\x8a\xae\xe2\x1a\x8f\xc5\x14\x8c\xaa\xae\xfd\xbb\xc3\x8c\x70\x76\xfd\x42\x0e\x38\x96\xc9\xb2\x1d\xef\x4b\x81\x70\xb6\xd5\x04\x5c\x95\x76\xa9\x6a\xb7\x75\xdf\x7f\xcb\x71\x2f\x77\x27\x77\xac\x3f\xc8\xbf\x52\x7c\xaf\x0c\xbc\x27\x8f\x5f\xe4\xd3\xc7\x6e\x81\xdb\x1c\x31\x52\x50\xe1\x08\x46\xb5\x16\x2f\x52\x09\x20\x4e\xfb\x97\x64\xbc\x76\x91\xde\xab\xf4\xee\xef\xdf\xef\xf3\xfe\x7d\xc9\x0a\xaf\xcf\xf8\xb2\x28\x88\xff\x37\xd7\x8e\xed\xc3\x17\xf1\xcc\x77\x91\xde\x5b\x9d\xdf\x63\x95\x3f\x28\x56\x69\x6a\x44\xb5\x0f\xaf\xdc\xce\x84\xea\x33\xe3\x96\x2f\x0d\xb3\x1c\xa0\x48\x57\xfa\xcd\x05\xe2\x3d\x19\x8b\xee\x0e\x94\xa9\x87\x78\x00\xda\x24\xa5\xb7\x55\x90\x96\x23\xc2\x30\x88\xc4\x81\xa3\xde\x6b\x94\xf5\xfc\xeb\x1d\xb7\x04\xde\x2b\x6b\x88\x0c\xa2\xc4\x49\x92\xd0\x11\xb2\xde\xd1\x0c\xf4\x15\x06\x3c\xe5\x31\x3e\x3a\xbe\xd5\x8d\x14\x5b\xb1\x33\x9c\x0d\xab\x0f\x67\xd3\x7c\xc3\xd5\x30\x7b\xe9\x7d\x10\x83\x7b\x82\xd2\x4c\x8b\xaa\xb7\xac\xec\x45\x6b\xb7\xb8\x1c\x4f\xc5\x31\x98\xb2\x77\xe2\x76\x91\x6f\x4d\xf3\x83\xad\x45\xc2\xe1\x51\x0c\xda\x0a\xca\x81\x21\xf3\x7f\x89\xcc\x55\xab\x2a\x65\xd2\x6f\xe6\x77\x17\x1a\x45\x0f\x2f\x60\xd0\x57\xa6\x9d\x9f\x2d\x38\xca\x41\xba\x65\x15\x85\x2f\xcd\xee\x11\xcb\x3d\x62\x39\xf8\x79\xc6\xb5\xe1\x0a\xba\xea\xb0\x60\x88\xf9\xed\xad\xd0\x8a\x3e\xa8\x9f\xeb\xd1\x65\x85\x57\xa1\xd8\xf3\x4d\x1e\xae\xf1\x0a\x35\xe3\xb3\xfc\x60\xeb\x77\x9f\xe4\x29\xb8\x4c\xbc\x2f\x06\xd8\xb2\x7c\x49\xb7\x1b\x93\xb1\xfd\x35\x11\xa7\xb5\xf5\x29\xb4\xdc\x6a\x59\x0e\xf3\x0f\x5d\x31\x7a\x81\x73\x74\x80\x87\x28\x0b\x7b\x7b\x49\x5b\x49\xbe\x44\x24\x66\x60\xc8\xbc\x98\x21\x1f\x1d\x1f\xb8\x88\xfa\xe7\xdc\xc0\x22\xae\x4c\x25\xbe\x24\x71\xc2\xcc\x48\xcb\xaa\xc1\x09\x7e\xcc\x4f\xf0\xd1\x11\x20\x63\xec\xc6\x97\xc4\x93\xc2\x52\x2b\x60\xe8\x09\xb1\xbd\x53\x2a\x67\x1d\xf7\x63\x9a\x10\x39\x55\x19\xe9\x42\xbf\x8d\xde\xea\xe6\xa9\xa7\x9e\x6f\x75\xc7\xf2\xfe\x89\xbd\xac\xe7\x7a\xef\xf8\xdc\x1c\x66\x3e\xf2\x87\x14\x78\x76\x8a\x35\x6a\xef\x6b\xc4\x9a\xde\xed\xc4\x1a\xb3\xe8\x9f\x5e\xb4\xf9\xc7\x1a\xad\x3f\x39\x5e\xf8\x94\x37\x9c\xed\xbe\xe1\xcc\xdc\x70\x76\xf8\x0d\x67\x95\x1b\xce\x2a\x37\xdc\xad\xbe\x0f\xf7\x05\x38\xe7\x32\xbc\x2d\x18\x56\xbf\x29\xe7\x89\x8f\x42\x22\x72\x9b\x3f\x17\xed\x66\x82\x95\x3e\xe8\x4c\xc9\x18\x81\x0c\xe7\x15\x32\x7c\x1f\x8d\xe0\x9e\xff\xdd\x86\xac\x17\x74\xa8\x80\x60\x20\xf5\x34\x89\xce\x29\xcd\x50\x2a\x98\x61\x7d\xb6\xc5\x06\xbd\x9a\xcb\x70\xea\x69\x4b\x05\x1b\x1d\x4b\x7b\x26\xfc\x98\x02\xb3\xfe\xeb\x24\x1d\xf1\x7e\xc6\xd1\x50\xfc\x17\x66\x09\x3e\x59\xc7\x19\xa4\xe0\x24\x3b\x3a\x02\xb9\x5a\xeb\x4c\x92\x03\xfc\xa4\x68\x36\x95\xcd\x16\xb2\xd9\x82\xc3\x79\x82\x4f\xa6\xf1\x5c\x34\x9b\xf7\x7a\xa6\xd9\xbc\x08\x7d\x96\x24\x09\xed\x76\xd3\x6e\x57\x17\x51\x00\xf3\xdb\x5c\x6a\x79\xcf\x3e\x17\x1f\xa0\xd0\xe3\xbd\x9c\x7a\x7f\x4f\xbf\xc4\x17\x95\x03\x5d\x44\x03\xcf\x27\x4d\xfc\x47\x31\xc1\x1c\xa7\xd9\xdf\x9a\xf8\x8a\x1e\xe2\xbe\x5e\x02\x5c\x79\x8a\xa9\x49\x9c\x53\xbc\xc8\x04\x3c\x32\x3d\x90\x01\xaf\x77\x7e\x9b\x30\x21\x49\xd8\x41\x22\xac\x16\x74\x5d\x58\x8c\xe6\xcf\x70\x59\x5c\xba\x83\x36\xf2\x91\x27\x5f\x86\x8f\x3c\x43\xf2\x0d\xe0\x3e\xc8\xd2\x3d\xba\xfc\xa2\xd0\xe5\x7d\x90\xa5\x1a\x53\x99\x3f\x58\x90\xa5\x4e\xa3\x20\x4b\x9d\xdb\x44\x59\xf2\xe1\xfe\x8e\x83\x2c\x35\x4f\x50\xc2\xd0\x0a\xdd\x3f\xe7\xde\xa3\xe7\xbb\x70\x8a\xd1\x0f\x30\x44\x7a\xbd\x44\x9d\x92\xc4\x49\xc0\x68\x8c\x27\x43\x75\x3a\x94\x66\x47\x4c\x1a\xde\xa8\xe5\x1a\x92\x6d\x29\x6b\x91\x3d\x5f\x78\x7b\x2b\x1a\xa1\x8e\xf6\x67\xd3\xf5\xa0\x4b\xc4\x1a\xe7\x94\xbe\xbf\x49\xff\x8a\x37\xe9\xf7\x9b\xdd\x41\x6a\xf3\x4d\xae\xdd\xbe\x3e\xeb\x31\x00\xc3\x31\x9b\x7c\x31\x16\xf4\xf9\x72\x3d\x9f\x67\xf7\x57\xf0\xfe\x0a\x36\xb7\x4d\x42\x09\x2a\x72\x48\x5f\xaa\xf4\xcb\x5e\x90\x09\x27\xa0\xbf\xcc\xcf\xe4\xa7\xc1\xf7\x49\x1c\x07\xdd\x2e\xdf\x6c\x64\x0a\x29\x96\x92\x19\xbd\x38\xc1\x4f\x8e\x4f\x80\x4e\x30\x35\xcf\xa8\x00\x10\x83\x7f\xc3\xbd\x9e\x20\x9e\x68\x8c\x27\x50\xfc\x27\x41\x63\x26\xfe\x62\x93\x84\xd8\x87\x98\xdb\xa0\x0b\x7d\x05\xee\x34\x42\xce\xc3\x92\x76\xb9\x55\x76\x61\xa5\x35\x42\x50\x21\x37\xd5\x22\x18\x0a\x20\x8b\x29\xc4\x6e\xae\x18\x3a\xf9\x72\x22\xed\xc8\xa3\x71\x8f\x50\xee\x11\xca\x97\x48\xd3\x6f\x1d\x0e\x90\x9a\xd0\xed\x42\x0a\xfd\x62\xa8\x37\x65\x65\xad\xe2\xfd\x65\xbb\xbf\x6c\x5f\xc2\x65\xb3\xd9\x53\xc5\x7d\x53\x2e\xe1\x10\x27\x3c\x66\x1e\x5b\x1d\xd7\x33\x06\x18\x6c\x36\x65\xcd\xa1\xdc\xb4\x24\xe0\xd2\x52\x04\x9d\x2b\x97\x88\x2b\x22\x66\x9d\xef\xce\xbb\xb6\x85\xb6\x62\xfd\x7d\x76\x60\xed\x55\x0c\x16\x75\xab\x2e\x2f\x46\x25\xba\x57\xff\x07\x03\xfa\xbd\xdb\x04\xa3\xea\x8b\xd1\xb8\x9e\x30\xb7\x71\xa6\xf1\x60\xb8\xf3\xfb\x22\xfc\x6a\x78\x7a\xab\x78\x12\xf7\x78\xf0\x1e\x0f\x7e\x81\x2e\x7b\x26\x51\x8c\x34\xe1\xfa\x52\xb8\x0d\x4e\x17\x8b\xec\x96\x86\xd5\xaa\xed\x17\x6d\x5a\xad\x86\xf8\xf9\x8d\xab\xcd\xd2\xdc\xc7\xc2\xf9\x44\x5a\xf7\x00\xcb\xaf\xaf\xd7\x43\x10\x30\x0e\x2d\xd3\x73\xac\x8d\x78\xab\xb1\xdb\xcc\xab\x28\xed\x4b\x7b\xe5\x57\x73\x19\xde\x31\xf1\x49\x83\xea\xa0\x77\x9c\x24\x09\xdf\x6c\xf8\x91\xf8\x03\x8d\x06\x43\x7e\x74\xbc\x75\xde\xd8\x68\xa1\x33\x81\x1c\x54\x31\x04\x86\x04\x52\x99\x13\x36\x58\xd4\x41\xb7\xb3\xed\x54\x87\xef\x73\x29\xfc\xd7\xa4\x39\xe6\xf8\x5d\x44\xc2\x92\x13\xba\x35\x42\xbd\xc2\x7c\x49\xd7\xb7\x0d\x0d\xf6\xdb\xe4\x03\xfd\xa8\xec\x9e\xbc\x62\x28\xcd\x21\x09\xa0\xb1\x66\xe9\x47\xe5\xbb\xf4\x88\x0f\x79\x11\xac\x76\xeb\x78\x8a\x4b\x87\x48\xbd\xc4\x02\x23\xdd\xe6\x7a\xe8\xe6\x3b\x4d\xe9\xf9\xc7\x98\xd2\x6b\x47\x87\x83\x68\x69\xba\x5a\x21\x32\x6b\x54\x53\x33\xeb\xfb\x53\xd3\x2e\xd7\xe4\x7d\xa3\x8a\x26\x21\xfb\x01\x29\xa0\x0f\xc9\x8c\xdb\x30\x9f\x6a\xd3\xc4\x91\x07\xe5\xbf\x6b\x9e\x5e\xe9\x80\xac\x28\x07\xa4\x14\x38\x24\x88\xf9\x21\x51\x7b\x0f\x0d\xf5\xda\x30\x26\xe8\x41\xc1\x0f\x9b\x87\x04\x6c\x1a\x73\xad\x79\x74\xa8\x86\xe1\x5e\x3e\x3e\xa2\x71\xc0\xe5\xff\x10\x2f\xde\x03\x1d\x1b\x3f\xde\x9b\xb1\xea\xa6\xd5\xd8\xe7\xa7\xb1\x23\x47\x73\xe3\xf0\x83\xcc\x28\x9b\x5b\xe9\x1c\x60\x86\x70\xc0\x73\x69\xe3\x67\x90\x03\x94\xb8\x4d\x95\x1c\x07\x4b\x6a\x77\x21\x9e\x95\x58\xb8\xe6\xcc\x4d\x35\x2c\x33\xc4\x90\xc2\x14\xe6\x70\x0d\x33\x38\x85\x73\xb8\x84\x33\xb8\x82\x17\xf0\x12\x5e\xc3\x05\x3c\x87\x67\xf0\x0a\x3e\x87\x1f\xe0\x5b\xf8\x0a\x9e\xc2\xf7\xf0\x1d\x7c\x0a\x5f\xc2\x37\xf0\x35\xfc\x15\x3e\x83\x3f\xc0\x17\xf0\x7b\xf8\x2d\xfc\x27\xfc\x0e\x7e\xf3\xb1\x4c\x5f\x6d\x83\x53\x49\x64\xbf\xd3\x3c\xd5\x0d\x22\xeb\x0b\x25\x73\x0c\x3b\x03\xb8\x40\x3c\x10\x77\xd2\x32\x02\xdb\x9d\x80\x05\x4d\x3e\x08\x2e\x6b\x04\xf7\xa9\x20\xe1\x07\xc1\x25\xcd\xe0\x2a\x8a\x7f\x10\x64\xdc\x18\xf2\x9a\xa3\x83\x20\xd3\x86\x90\x15\x3f\x71\x10\xe8\xb4\x11\xe8\x67\x68\x7a\x10\xd4\xbc\x19\x54\x46\x57\x07\x81\x5d\x37\x02\xfb\xad\xe4\x57\xbe\x39\xec\xb8\x65\x07\x80\x3e\x08\xf0\xb4\x21\x60\x32\x3b\x70\xc4\xf3\x66\x80\x15\x9f\x75\x10\xe4\x65\x23\xc8\x7f\x11\x6c\xd9\x81\x63\x9e\x35\x82\xfc\x9d\x0a\xf6\x7f\x10\xe4\x55\x53\xc8\x26\x86\xfc\x41\xd0\x2f\x1a\x41\x7f\x41\x0e\xbb\x25\x97\x0d\xa1\x6a\x7e\xf2\x20\xd8\xd7\x0d\x61\x0b\xf6\xf3\x20\xc0\x8b\x46\x80\xff\x4a\xf1\x61\x67\xee\xbc\x11\xd8\x97\xe9\xa1\x27\xee\xac\x29\xdc\x83\xa0\x5e\x35\x82\x7a\xf0\x21\x7e\xde\x08\xec\x2b\xed\x2b\x7f\x10\xe8\x0f\xcd\x40\x6b\xb6\xfc\x20\xd0\x6f\x1b\x81\x7e\x8d\x57\xe8\x54\xb6\x3c\x08\xf8\xab\xc6\xc0\x0f\x02\x7b\xda\x0c\xec\x6d\x70\xc5\xfb\x46\xa0\xff\x3f\x21\x51\x1c\x04\xf7\x5d\x23\xb8\x6f\x84\x00\x72\x10\xdc\xa7\x0e\xdc\x7a\x56\xf2\x8d\x94\x57\x0e\x02\xfc\xb2\xd9\x80\xa5\x78\x73\xe0\xad\x7e\xd3\x10\xb4\x10\x86\x0e\x02\xfc\xba\x21\x60\x29\x3b\x1d\x04\xf9\xd7\x46\x90\xdf\x2a\x51\xeb\x20\xc8\xcf\x9a\x41\x16\x92\xd9\x41\x70\x7f\x68\x06\x97\xb2\x43\x77\xef\x45\x23\xc0\xef\xd2\x03\x29\xd3\xf7\xcd\xc0\x4a\xa1\xef\x16\x98\xe8\xdb\x03\xc0\x1f\x04\xf8\x9f\x8d\x00\xff\x48\x0e\x1d\xf0\x77\x8d\xe0\xfe\xa4\x24\xd6\x83\x20\x7f\xe3\x40\x6e\xa2\xef\xad\x84\xac\x68\xf6\xec\x77\x0b\xd5\x75\xc6\x51\xf0\x25\xaa\x8d\x1e\x27\x7c\x2b\x2b\xd4\x95\xcb\xe2\x45\x6d\xfb\x27\x89\xae\x50\x57\x2e\x97\xb9\xe1\x52\x38\xd1\x7e\xee\xdc\x35\xf6\x23\x9e\x80\x1c\xa8\x32\x91\x94\xd2\xf6\xb3\x16\x91\xc1\xf2\xcd\x03\x03\x52\x29\x6a\x03\xc9\x2b\x4a\x61\x5c\x24\x90\x2d\x00\x3a\x37\x93\xd3\xde\xbc\x1c\xda\xcc\x51\x6d\xfa\x24\x19\x8c\xe8\x90\xac\xb3\xec\x80\x75\xb4\xaf\x3a\x9f\xec\x40\x55\x97\xc6\x0d\x95\x25\xb3\xea\xc8\x11\x6c\x36\x32\x79\xa9\x14\xc0\xe1\xbe\x08\x3b\x4f\x8e\xff\x7f\xf6\xde\xb5\xbd\x6d\x1b\x6b\x14\xfd\xae\x5f\x21\xf3\xe9\x51\x89\x57\x30\x2d\xa7\xb3\xcf\xb3\x37\x1d\x56\x6f\x9a\xcb\x4c\xf6\xb4\x49\x77\x92\xce\x9c\xd9\xaa\xc6\xa5\x25\xc8\xc6\x84\x02\x34\x20\x68\xc7\xb5\xf8\xdf\xcf\x83\x2b\x01\x12\x94\xe4\xdc\x7a\x99\x7e\x49\x2c\x10\x77\x2c\x2c\xac\xfb\x9a\xb2\xe3\xd3\x54\xa6\xfe\x39\x75\x23\xed\x1c\x9f\x86\x63\xed\x98\x38\x59\x48\xfb\x76\x1f\xba\x3d\x06\x60\x3e\xe3\xf6\x38\x77\xe2\x3d\x43\x4a\x4d\xff\xf7\xeb\x97\x2f\x92\x52\x6a\xd6\xf1\xea\x36\x46\x20\xcb\xb2\x56\x19\x37\xfa\x2e\x5c\x3e\x15\x2b\xd4\x86\x34\x7e\x99\xf4\xcd\xbc\xd7\x6e\x29\x19\xf6\xe7\x85\x26\xed\x0c\xa7\x87\x6e\x1b\x04\x4a\x73\x04\xab\xf0\xef\x7e\xbd\xdf\xfa\x4c\x18\xaa\x7b\x62\x1d\x3d\xb7\x4f\x8f\x76\xfa\xe2\x41\x8d\x46\x1d\x53\x85\xf7\x8c\x8c\x75\x57\x07\xc2\x3f\xb6\x36\x55\xc6\x9e\x02\xa3\xd1\xae\x2a\xd2\x28\x4c\xda\x76\x84\x4e\x80\x2c\x2a\xc6\x10\x59\xdc\x9e\x1c\x5f\x54\xab\x15\x62\xc7\x1b\x5a\xe0\xc5\xa1\x36\xcb\xf7\xdd\xcb\x81\xc2\x46\x6d\x1c\x75\x86\x92\x7c\xc1\xf1\x35\x7a\x93\x97\x6f\x9f\x6b\x18\x32\xfb\xf5\x10\x25\xeb\xfc\xdd\xe3\x66\xaa\x67\xc6\xb0\x43\xc7\xbe\x5a\xfa\xad\xca\x2b\xbc\xe2\xb1\x0a\xec\xc6\xc1\x05\x43\xf9\xdb\x41\xb8\x7f\x69\x56\xc7\x41\x5d\x0f\x7c\xd3\x14\xf3\x52\xb6\xc6\x3d\x0e\x8f\xa7\x66\x79\xbc\x6b\x09\x35\x4a\x10\x91\x6d\xc5\xd7\xf2\x7b\xb9\xc5\xd9\x1d\x43\xff\xae\x30\x43\xe5\x0f\xe4\x82\x56\x64\x89\x96\xce\x60\x82\xa6\x29\x17\x57\x48\x6c\xa1\x67\xb7\x26\x83\x07\x0b\x72\x47\x30\xed\xdf\x23\xb6\xa2\x6c\xfd\x9a\xe7\xbc\x2a\x43\x11\x41\xc5\x7a\xbe\x9e\x4c\xa3\xb2\x5a\x2c\x10\x5a\x46\x69\xa4\x27\x12\xd5\x82\x48\x58\x32\xba\xf9\x3f\x76\x4d\x76\x62\x0b\x31\xf9\xe2\x15\xca\x4b\x4a\xd2\x08\xf3\xe1\x05\x2a\x28\xb9\x2c\x87\x9c\x0e\xf3\xe1\x97\xa2\xd5\x97\x43\xd1\x62\xc8\xaf\x72\x3e\xbc\xc9\xcb\x61\x5e\x30\x94\x2f\x6f\x87\xac\x22\x04\x93\xcb\xa8\x7f\xf2\x10\x25\xe5\x46\xd0\xf8\xde\x4e\x49\x1b\xbb\xc4\x1d\x18\x06\xb7\x1b\x4e\xc2\xe5\x7a\xa7\x3f\x68\x6b\xa4\x52\x5a\xee\x8b\x9a\xc7\x4b\x72\x49\x31\xb9\xbc\xcf\xd6\x30\x54\xf2\x9c\x71\x81\x9d\xda\x3b\x94\x6c\xd4\x8c\x62\x80\x96\xc3\xfc\x32\xc7\xa4\x67\x93\x0c\x70\x07\xe0\x09\xb2\x30\xd0\x0f\xb8\x04\x66\xfd\xf8\x72\xb8\xcf\xe4\xcc\xa1\x0c\x26\x90\x65\xba\xdc\xec\xe1\x19\x7f\x68\xfe\x3e\xe3\xe3\x31\x60\x33\x3e\xcf\xd0\x8c\xdb\x57\x9e\xd5\x61\xfb\x31\x06\x00\x34\x96\xa9\x99\xb1\x51\x92\x8e\x62\xeb\xfc\x9d\x44\x95\xf6\xb2\xf8\x57\x0b\x0c\x0e\x05\x0a\x0e\x95\xd1\xe5\xfb\x9f\xb2\xea\xee\xdc\x6a\x55\xed\x45\xf8\xa6\xe2\x7f\x45\x68\xf3\x6d\xce\x51\xc9\x0f\x3c\xef\xb7\xb6\xc1\xaf\xf4\x42\x1c\x9f\x82\x7a\x0f\xe2\x57\x63\xc8\x07\x55\x3f\xbb\xe6\x61\x0d\x3f\xbf\x4e\x53\x9e\x97\x6f\x8f\xed\xa3\x1f\xaa\x22\x9f\xe6\x4f\x60\x25\x7a\x95\x97\x57\x19\x4a\x58\xbe\x40\xe2\xaa\x14\xc5\x6b\xc4\x79\x81\x96\xea\x87\x6f\x25\xc7\xd0\x25\x22\xca\x7e\xf2\x55\x45\x38\x5e\x0b\xf0\x63\x6f\x63\x2a\xc8\xda\x52\x9b\x2d\xc9\x84\x7a\xdf\xab\xf5\xc3\x28\x2f\x8a\x08\xe6\xa0\x79\x18\xa8\x0b\x53\xdd\xfe\x6e\x98\xeb\xe7\xcf\xf5\xb3\x76\x06\xca\x1b\xcc\x17\x57\xb1\x4a\x44\x9b\xe9\x74\xc4\x77\x8b\xbc\x44\xc3\x49\xda\xd0\xcc\x17\xac\xda\xf0\x38\xd2\x0f\x3e\x44\x60\x20\xab\x9c\xa6\xe2\xbf\x08\x91\x65\xd4\x54\x2e\x39\xdd\xc4\xa0\xae\x21\x81\x02\x44\x40\xad\x56\xdc\xba\xf2\x93\x2c\xcb\xec\x85\x36\x0f\xda\xc0\x5c\x7b\x92\x4d\xce\x48\x73\xc9\xc7\x63\xcd\x43\xe5\x19\x9a\x11\x19\x3b\xef\x28\xdf\x6e\x8f\xf2\x19\x4b\x6e\x31\x2a\x96\x02\x38\x94\x25\xea\xdc\xa6\x7c\x10\x37\x5e\x45\xdb\x3b\x3a\x85\x55\x86\x3a\x79\x02\xb5\x85\xa7\x21\x8f\x4c\x8e\xf4\xbb\x15\x49\x29\xcc\xd9\x65\x99\xce\xd0\xbc\x06\xc9\xb9\x44\x99\x4d\x4e\xc2\xd3\xa3\x2c\x63\xc9\xb9\xa0\xf3\x0a\x24\x3a\x13\xb7\x1b\x8d\x46\x71\x99\x1d\x4d\x00\x64\x4d\x8a\xc1\x72\x8a\xe3\x0a\xa4\x55\x5f\x8a\x42\xa4\x4c\xe6\x6b\x20\xae\xb8\x03\x23\xee\x99\xcb\xb3\xd6\x1f\xc4\x91\x43\x0d\x54\x61\xb8\x10\x9f\x74\x2d\x09\x81\x7e\x4f\xa2\x28\x82\x81\x89\x68\x00\x7f\x8b\x6e\x4b\xc1\x55\xae\x5b\xc0\x62\xa6\x3b\xe3\x73\x69\x01\x6e\xa1\x2e\xf7\x82\x7b\xdb\xe2\xd2\xf0\xbd\x6d\xd3\x3c\xac\x76\x9d\x66\xe2\x4f\x98\xbb\xb9\x22\x97\x68\x85\x58\x0c\x06\x68\xc6\xe6\x31\x06\x2a\x6c\x69\x9e\x30\x54\xd2\xe2\x1a\x41\xf1\xd7\xbf\x64\xce\x50\xe7\x4c\x1d\x5a\xb6\xdc\x6e\xe5\xfe\x43\x1a\xcc\x6c\x2f\x8e\xa7\xb1\xf7\xa5\xab\x46\xdb\x3e\x35\xaf\x69\x0c\xd2\x90\xbf\x4c\x72\x7e\x8e\x16\xe7\x1a\x29\x9f\x8f\x46\xad\x82\x18\x08\xc6\xbc\x86\x45\x96\x27\x1a\x3b\x25\xda\x57\x21\xae\x2c\x20\x14\x7e\xa3\xac\x82\xc5\x3e\xac\x87\xc8\x22\xdf\x94\x55\x91\x73\xb4\x94\x78\xec\x9e\xc8\xee\x53\xf1\x18\xcd\x7d\x31\xde\x0b\xe7\xeb\xfc\x2d\x7a\xae\x0d\xc0\xd3\x0e\x7f\x21\xdf\x89\x4b\xc4\xe3\x48\x13\x18\x11\x68\x22\xdf\x6a\x82\x40\x06\x99\x13\xf5\xc4\xb5\x03\x35\xd4\x35\x95\x14\x23\x24\x19\x73\x96\x1d\x78\x0b\x3e\x2e\xaf\x29\xf6\x55\x49\xf5\x1e\x2b\xdf\x82\xac\x6d\x92\x62\x05\x3c\xca\x65\x9b\xd9\x84\xa6\xbe\x21\x36\xab\x48\x72\x81\xc9\x52\x45\x61\x71\x36\x0a\xaf\x62\xec\x73\x49\x1a\xfa\xf0\x8c\xcf\x1b\x62\xa8\xcb\xab\x35\xb4\x91\xb8\x4d\x93\xb3\xfc\x21\x3a\xcb\x25\x45\x94\xbb\xf2\x8f\x5c\xa2\x4c\x32\x1a\x11\xed\xa3\x73\xa7\x2e\x11\x33\xc9\x56\x15\xab\xd1\x58\xdd\x96\xd0\xd4\xb4\x06\xe3\x62\x2a\xfa\xb8\xf0\x2f\x45\xbf\x51\x60\x6c\x75\x19\x10\xec\xe2\x9e\x2b\xb4\xd1\xc7\x7b\xbc\xa6\x4b\xbc\xc2\x88\x95\xc7\x6b\xfc\x0e\xf7\x98\x90\x3b\x0d\x0d\x29\xc4\xc2\x9f\x7d\x4e\xf4\xe3\xd3\x0e\x66\xde\xdf\x99\x69\x6b\x72\x41\x46\xd8\x91\xe8\xf0\xb5\x99\x60\x47\xd2\x88\x05\x4f\x7d\x2e\x40\x56\x9a\x15\x7c\x9f\xf3\x2b\x0b\x9d\xca\xa0\xba\xfd\xd5\xc6\x86\x4d\xce\xed\xba\xeb\xb6\x4d\x92\x7d\x1c\xd5\xda\x15\xf5\x99\xa2\xe4\xdc\xfd\x0d\x7d\xa2\x59\x7c\xf6\x4b\x6a\x50\x0f\x42\xcb\xbb\xf3\xba\x49\x59\x80\x1b\x85\xad\xae\xd2\xd3\x93\x09\xf4\x57\x22\xb1\x05\x3c\xbf\xca\xcb\x1f\x4a\xb4\x34\xbd\xa7\x47\xa7\xb2\xec\x35\xe2\xdf\xb8\x83\xe8\xe2\xa7\x44\xd0\x0e\xcb\xa7\xd7\xe2\xa2\x88\x42\x87\x43\x0a\x19\x3d\x29\x5c\xc5\x7a\x39\x30\xf1\x94\xab\xc9\xef\x6a\xdd\x5d\x1f\xa8\xa1\xa0\xf1\x77\x35\x0a\x32\xc3\xa0\x86\x0d\x8d\xbf\xaf\x75\x80\x83\x00\x75\xfb\xd4\x02\xe4\x81\x44\xcd\xed\x8d\x15\x8f\xad\xfa\xe0\x77\x90\x21\x88\xe5\xa0\x40\x7e\xae\xa1\x34\x3b\xee\xef\xd6\x3b\xc3\x4e\x63\x24\x0e\x06\x2d\x43\xf6\x72\x66\x52\xde\x11\x9a\x59\xd5\x70\x89\x2e\xaa\xcb\xde\x76\xf2\xab\xad\x5c\xf7\xb8\x2b\x88\xe7\xbf\x0b\x3b\xa2\x19\x0a\xee\x47\xeb\x42\x64\x1c\x62\xc5\x40\xb5\xf7\x28\xcb\x4e\x4f\x26\x82\x26\xe9\x7c\x39\x05\xd0\xa1\xa4\x44\xf3\xbb\x3d\x68\xce\xc1\x56\x9f\x52\x28\x36\xb1\x41\x0a\x75\x07\xe6\xfd\x2f\xf2\xd2\xf0\xb9\x68\xa9\x2e\xa1\x28\x7a\x2d\xae\x91\x5b\xf0\x4a\x71\x9a\x4e\x0d\xc1\xf3\x96\xe5\xaa\x2a\x9a\xb2\xc7\x8a\xaa\x46\x4d\x89\xf4\xeb\x72\xfb\x79\x2c\xaf\x9e\x5b\xf2\x9c\x2c\xbc\x66\x9a\x7c\x78\x4c\x2b\xc2\xd3\x09\x94\xd2\xab\xbf\xe4\x64\x59\xa0\x67\x55\xb1\xc2\x85\x1e\xcf\x29\x57\xca\x73\x55\x8c\x09\xf6\x6e\x92\x02\x98\xb2\xda\x20\xe6\xd2\x2b\xf6\x79\x05\x9a\x74\xe9\x8a\x43\xb2\xd9\x5c\x7d\x0b\xf0\xbf\xd9\x6c\x5e\x43\x85\x45\x1e\x15\x45\x40\xc0\x32\x9b\x0f\x64\xdb\x10\xef\x8d\x7a\x87\x84\x93\xde\x4f\x86\x66\xe0\x7a\xc2\x3b\x3a\x0e\xf3\xf1\x7d\x9f\x9c\x8e\x05\xbb\x50\xc3\x40\xcf\x69\xd7\x8c\xb7\xa1\x12\x68\xc6\xce\xe8\x43\x36\x26\x67\xe3\x31\x35\x9c\x1e\x9f\xd1\xf9\x20\x17\x6c\x8c\x86\xa4\xed\x36\x97\xb4\x58\xb2\x44\x0b\x86\xc4\xd6\x5b\xe0\x8d\x48\xb5\x56\xa8\x31\x02\x30\x37\x04\x3d\x02\x10\x8f\x46\xd8\xb8\x27\x8b\xb6\xa0\xe6\x7a\xdd\xb1\xd4\xa9\x85\xa5\x1e\x6d\xcf\x5a\x0f\xc2\x05\xfb\xab\xb6\x02\x93\xce\x3c\x5c\xc8\x8b\x0c\xf1\x18\xaa\xe8\x4e\xb8\x77\x5f\xe5\xc4\xcd\x68\xe7\xab\xa2\x2a\xaf\x64\xa3\x32\x06\x35\x74\x7f\xbb\xe0\xda\x50\x8b\x02\xfa\xb2\xc9\x19\x7f\xb8\x07\x22\xce\xc6\x63\x0e\x90\x16\x37\xf7\x54\x15\xd4\x9f\xdc\xc0\x41\x2f\xb0\x87\x35\x7b\xb3\x39\x64\xd9\x04\x12\xcb\xed\x9f\xb1\x87\xe2\x9c\x99\x21\x4b\x04\xc3\x37\x38\x3a\xb5\x9a\x01\xe5\x34\x19\xe1\xf2\x19\x26\xb8\xbc\x12\x3b\x34\x1a\x29\xf9\x61\x8c\x2d\x39\xca\xeb\xde\xa9\xea\xfd\x72\x11\x71\x62\x8e\x59\xbd\x2d\x83\x26\x83\x87\xba\xf1\x2a\x11\xcf\xde\x5d\xb2\xec\x6b\xef\x2e\xe1\xf9\x80\x7a\x20\x1b\x6b\xec\x21\x7e\xbb\x55\x63\x0a\x20\xcb\xa8\x24\xf7\x64\x20\x7e\x0d\x9e\xcc\x38\xbf\xf9\xd0\xa7\xfb\x73\xa2\x50\xf8\xdf\x5f\x19\x29\x1e\x6b\x16\xa7\x18\x82\x3d\x97\xf6\x6c\x3c\xce\xbd\xb3\x0f\x54\x9d\xe5\xe6\xec\xc5\xd9\x76\x13\xc2\x36\x8f\x51\xb4\x0f\xf9\x08\xb8\xed\xec\x45\x00\xf9\x29\xa2\x25\x53\xf7\x47\x3a\x55\xef\xbc\x41\xac\xe7\x8a\x99\x6d\x91\x4f\xb0\x16\xe3\x24\xe7\x94\x3c\x13\x1c\x3a\xfe\x19\x79\xa1\x2f\x7b\x06\xb1\x7d\x68\x69\x1d\xea\x88\x7e\x06\xce\x8e\xa8\xe3\x30\xaf\x98\xc4\x15\x02\xb4\xc9\xb4\x53\xa7\x79\xfd\x44\xad\x34\x7e\x10\xae\xa6\x9f\x3f\x59\xe7\x2b\x51\xc5\x03\x10\x3d\x9c\x7e\x11\xe5\x70\x9d\xaf\xcd\xeb\x28\x83\x77\xc0\x86\x19\xa5\x44\xc6\x43\xe7\x1e\x6e\x01\x92\xaf\xf2\x08\x22\x70\xc7\xc7\x63\xe7\xd2\xf4\x5f\x67\xaa\xae\x33\x4d\xce\x4b\x84\xc8\x73\xb2\x44\xef\x1e\xf2\xd1\x28\x76\x0b\x24\x55\x44\x05\x03\xe7\x93\x39\xae\x35\x40\xb3\xef\x12\x0a\xec\x59\xcb\x81\xa5\x30\x41\x52\x95\x11\x38\x23\x67\xa0\x59\x31\x81\xee\x89\x89\x07\xa9\xfd\x4d\x83\x8c\xb8\x47\x24\x23\x5e\x57\xf5\x6e\x3f\xdc\xb6\xa4\x45\xb5\xda\xc3\x4a\x2a\xf1\x72\xbf\xb8\xa6\xe4\xd2\x39\x59\x71\xa5\xf7\xe2\x61\xbb\x8e\x31\x7d\x0e\xb8\xd8\x09\x32\xe2\xcb\xc0\x00\x08\xba\xd0\x3f\xce\x09\xa1\x7c\xb8\xc8\x8b\x62\x98\x0f\x17\x45\x5e\x96\xc3\xbc\x1c\xe6\x56\x8e\x17\xbd\x97\x37\xec\x1b\x4b\xe8\xeb\xea\x99\x53\x66\x24\xe2\x6e\x51\x88\xda\xb4\xde\x2c\xf0\x0e\x97\xb6\x6a\x2a\x08\x79\x1d\x43\xa0\x4b\xf2\x47\x0f\x9b\x8a\xd1\x58\x21\x64\xb3\xaf\x2f\xf2\x35\x1a\x47\x5f\x47\x35\x3c\x6f\x20\xe7\x25\x7b\x61\x20\xa5\x95\x95\x34\x11\xfb\xe3\x82\x98\x87\x86\x70\x69\x68\xdc\x56\xab\x0b\x4a\x8b\x38\x0a\x8f\x20\xdb\xe9\xc1\x8e\x4e\x6b\x63\xe4\x13\xda\xaf\xee\x1e\xd9\x4f\xd4\x3e\xbf\x43\x14\x83\x3b\xc5\x44\x41\x04\x6a\x28\xf5\x5a\x3a\x2d\x58\x59\xe2\x4b\x02\x62\xda\x84\x5e\x80\xa4\xcb\x8f\xef\x11\xb8\xb5\x94\x2a\x87\x5c\x80\x8f\x2d\x8c\xfc\xfe\xe9\xab\x67\x2f\x5f\x7d\x77\xfe\xe6\x1f\xdf\x3f\x3d\xff\xf6\xf9\x8b\xbf\x3e\x7d\x92\xb5\x4a\x7f\x78\x11\x2e\x7f\xf2\xf4\xd9\xa3\x1f\xbe\x7d\xd3\x88\x54\x2e\x91\x79\x3d\xcd\x7b\x94\x05\xbc\x7b\x66\xb9\x55\x58\xcd\xa5\x42\x0e\x2f\x15\xd6\xcd\x4a\xd1\x07\xcd\x56\x50\x69\x59\xb2\xee\x63\xd6\xb1\xb0\x38\x0d\x5a\x58\x9c\xba\x16\x16\xa7\x8e\x85\xc5\xc1\xb9\xc7\xee\x97\x77\x6c\xa5\xa2\x6d\x48\x40\x21\x50\x66\x0b\xac\x75\xd4\x82\x48\x00\x98\x5a\x5f\x2e\x2f\xbc\xc4\xbb\xc1\x7d\x8c\x42\xa5\x11\xc4\xbd\xe7\x11\x05\x8b\x23\x48\xdb\x2d\x82\xf5\x4d\xed\x5c\xf0\x47\xae\xc2\xa1\x61\xd9\x47\x23\x94\x90\x7c\x8d\xb2\x2c\x63\xcd\x13\x53\x85\x22\x9e\xe8\x13\x1a\xb4\x45\x0a\xaf\xab\x8b\x72\xc1\xf0\x05\x5a\x0a\xae\x3e\xe6\x8e\x10\xfb\xdc\x98\xfe\x00\x30\x43\x73\xab\xd1\x6e\xb8\xc1\x5a\x6a\x9d\x8a\xec\xce\xc4\x44\xd1\x72\xa9\x25\x2e\x37\xb4\x44\xe6\x67\x8b\x86\x48\x27\x50\xdc\x2b\xf5\x51\x29\x9f\xe6\xd0\x9f\x8a\x14\x59\xb1\x8a\x7c\x4b\xa9\x44\x78\x4a\x86\xd1\x2b\xc8\xf2\x34\xc3\x6a\x4c\xcd\x9d\x08\x54\x9f\x12\x78\x8e\xde\x6d\xd0\x82\x97\xdf\x62\xf2\x16\x2d\xff\x81\x51\x21\x87\x50\x17\x4d\x36\x40\xe2\x3d\xd0\x4c\x71\xe9\x70\xeb\x47\xa7\x10\x97\xf2\xb1\x50\x7f\x5a\x8e\xbc\x85\xf6\x72\xb2\x8c\x23\xf3\x59\xa1\x4b\x97\xac\x87\xce\x27\xd1\x51\x43\x37\xab\x6e\x4d\x4d\xf5\xab\x07\xb5\x12\xca\x63\xbf\x57\xf9\xa6\x76\xb3\x49\x97\x4f\x18\xdd\x6c\xc4\xdb\xdf\x9a\x52\x33\xac\x3f\xbf\x9d\x79\x65\x74\xa6\x1b\xdb\x29\x98\x4a\xf3\x0c\xf1\x67\xda\xad\xd5\x0c\x07\xa6\x5a\xc1\x1f\xae\xd8\x2c\x63\x1a\xad\xcc\xdf\x9d\x7a\xce\x8c\xc1\x34\x32\x1a\xfc\x34\xba\xc9\x31\x17\x7f\xd5\x62\x6b\xf5\xcc\x02\x1b\xd1\xb7\xf8\x43\xd6\xeb\xac\x64\x34\x3a\xda\x35\xb1\x1a\xc0\x73\x69\x9e\x9a\x9e\x6a\x9a\xbf\x4f\x18\xe7\xf2\x4b\x8a\xb1\x6e\x86\x99\x8a\x82\xb4\x13\xcc\xd6\x9d\xf6\xd1\xc4\x70\xc8\x86\xcb\xfb\x9e\xd1\x05\x42\xcb\x98\x27\xff\x78\xfe\xf4\xdb\x27\x8f\xbe\xf9\xf6\xe9\xf9\xe3\x97\x2f\xde\x3c\x7f\xf1\xc3\x53\x93\xcb\x50\x37\xe1\x0c\x5f\x5e\x22\x26\xaf\x4d\x1c\x95\xa6\xcf\x46\x04\x09\xea\x20\x65\x21\x39\x6c\x23\xc9\xc8\x22\x4d\x56\x28\x6e\x45\x2b\x31\x24\x99\x1c\x35\x66\x35\x11\x8c\x51\x86\x6d\x50\x6f\xc8\xb3\xe3\x53\x30\x8e\xc9\x76\x1b\x45\x60\x6c\x22\x1e\xf2\x31\x03\x46\x30\xd4\x55\xa6\xbd\xa7\xb1\x5e\x64\x75\x9c\xd2\xf6\x03\xbd\xdb\x14\x78\x81\x79\x71\x2b\x89\x3c\xb4\x8c\x94\x35\x5a\x6b\xef\x03\x07\xec\x42\x68\x57\x4e\xe2\x81\x96\x09\x78\xd5\x4d\x6d\x22\x65\x22\x1e\x05\x16\x81\xed\x36\x7a\x58\x91\xb7\x84\xde\x90\xaf\xa3\x41\x37\x69\x56\x83\xcb\x22\x18\xb9\xcc\xe3\xf0\xcb\x68\xcc\xc6\xd1\x97\x72\x61\xe6\x6a\x0d\x2f\xd0\x22\x17\x34\x46\x34\x46\xe3\x28\x19\x3e\xa3\x6c\xb8\xa6\x4c\x50\xbf\xe2\x2c\xe4\x9b\x06\x87\x25\x42\xe9\xf0\x8a\xf3\x4d\x7a\x72\xd2\xa1\x5c\xc4\x8d\x39\x59\xd2\x45\x79\x22\xe9\x9d\x45\xf3\x18\x4a\x8d\xa3\x11\xdb\x34\x80\x38\xb5\x84\xa5\x80\xbd\xd7\x94\x12\x1f\xfe\x1e\xbd\x78\xfc\xf4\x5b\x28\x90\x29\x48\xb5\x40\xc7\x70\xa1\x12\xc3\x7e\x05\xea\x5a\xe0\xf4\x95\x7d\x22\xf4\x4b\xd3\xbe\xc1\xfd\x22\xed\x15\x62\x01\x95\xba\x95\xd2\xdf\x5e\xa0\x57\x4a\x7f\xf4\xc4\xfb\x22\xeb\x19\xed\xb5\xb8\xb6\x9d\xaa\x5d\x71\xa8\x6c\x33\x1a\xa9\x1f\x5d\x53\x08\x19\xaf\x2a\xf4\x6d\xea\x0e\xa9\xb5\x59\x4a\xf0\xa0\xf4\x8d\xa9\xff\x5d\x46\x12\x93\x45\xf2\x2d\x02\xe2\x36\x5e\x21\x92\x56\x71\x24\xfe\x8f\x00\x94\xf6\xa3\xe2\xb7\xfc\x23\x02\x50\x6b\xdf\x45\x91\xfe\x33\x02\xd0\xee\x75\xea\x13\xa2\x3a\x7a\x9b\x20\x57\x94\x60\x4b\xa1\xac\xf1\x18\x76\x2f\x43\x4c\xb2\xaf\x20\x96\xe6\xe7\x8a\x51\xea\x58\x40\x01\x18\x3b\xda\x05\x63\x45\xfd\xf4\xc5\xdf\x92\x27\x4f\xbf\xf9\xe1\xcf\xe7\x6f\x1e\xbd\xfe\xeb\x6b\x30\x1a\x2d\x28\x29\x69\x81\x92\x82\x5e\x86\x3a\xc1\x8a\x7c\x61\x10\x4b\x84\x62\xc9\x52\x85\x94\xda\x77\xa3\xbd\xc3\xc1\x38\xa6\xe7\x0c\x95\x55\x21\x93\xe0\x68\x79\x44\x07\xa5\xba\x2f\xbc\x42\xaa\xbd\x39\x92\x40\xfa\xa0\xaf\x0f\xb9\x33\xe1\xe6\x48\x7d\x12\xcd\xbb\x82\x0c\xbf\x46\x37\xfd\x9d\xf3\x2c\x37\xf8\x5e\x93\x54\x16\x90\x59\x65\x25\x3b\x8f\x75\x82\xba\x32\x76\x2b\x0b\x10\x31\x35\x14\xa5\xa4\x24\xa9\xed\x46\xfa\x02\x36\x82\x22\xdf\x28\xce\xbb\xbd\xb6\x91\x15\xf6\x75\xbe\x64\xb3\xb9\x15\xe2\xb6\xbf\xb5\x84\xbc\x9d\xab\xb4\x6b\x65\x35\x0c\x7e\x48\x7d\xd3\x82\x7d\xd7\xbf\x33\x25\x57\x86\x2c\x9e\xa9\xbe\x99\x6b\x01\x10\x7a\xc8\xcf\xc6\x63\x04\x7a\xaa\xcd\xd0\x3c\xd6\x52\xe3\xc0\xce\x48\x0b\x0f\x67\x86\x6f\xae\x18\xbd\xf9\x81\x5c\x49\xad\x8c\x14\x43\x4a\x88\xfa\x36\xe7\x62\xc6\x35\xdc\x5f\x2b\x6c\x81\x32\x08\xd0\xf6\xdb\xed\x83\xa3\x1e\x34\x65\xee\x2e\xab\x48\x23\x3b\x76\xac\x38\xf2\xc5\xdb\x8b\x8a\x11\xc4\x94\xbc\x54\xbc\x61\xe5\x6c\xcf\xf7\x86\x81\x74\x29\x2d\xd4\x99\x54\x19\x23\x8d\xed\xcc\x2c\x24\x36\xd7\xc8\xd0\x7c\xab\xc5\x66\x84\x61\xda\xdd\x01\x63\xe0\x17\x5a\xa4\x36\xf4\x3b\x4d\x83\xa4\x90\x32\x48\xb5\xc4\xd0\x40\x59\xaa\xcb\x16\x0f\x82\x2d\x90\x91\x54\xca\x2b\xdb\x7e\xf4\xd5\xdd\x06\x5e\x3f\x5f\x05\xfb\xb1\xf4\x71\xb8\x23\x8f\x16\x00\xea\xd1\x54\x78\x20\x08\xf7\x86\xed\xf2\xcc\x91\x6c\xe9\xc0\xff\xa9\xd4\x01\x48\x9a\x2f\x9e\xe3\xf2\xcf\xc6\x8c\xf2\x09\x25\xa8\xc7\xb2\xe9\xdc\xda\x5a\x2a\x59\xb0\x16\x39\x3d\x79\xf9\xe2\x69\x94\x65\x19\xda\x6e\xa3\xa7\xaf\x5e\xbd\x7c\xf5\xf4\x89\xfc\x29\xae\x2c\x2a\xab\x35\xb2\x7d\xb7\x5e\x24\xce\x6e\xef\xf2\x46\x1e\x6f\x68\x28\x33\x16\x37\x86\x56\x31\x98\xf1\x79\x8c\xcc\xcd\xb2\xb3\x90\x59\x37\x33\xa6\x9e\x53\xc8\x64\x94\xde\x69\x68\xa6\x99\x9a\x63\x1a\xfe\xf6\x97\x47\xaf\xcf\xbf\x7b\xf9\xea\xe9\xf9\xdf\x1e\x7d\xfb\xc3\xd3\xd7\x91\x0e\xde\x4b\x0c\xf6\x6b\x8d\x47\x60\xb8\x1b\xb3\xf4\x26\xd2\xaf\xac\xd6\xe5\x3c\x47\xa3\x38\xd4\xb1\xc1\x7f\x7e\x69\xe2\x72\xb2\x59\x96\xd1\xed\xd6\x3c\xa9\x37\x39\x23\x71\xf4\x0f\x5a\x0d\x37\x46\x61\x37\xcc\x87\x49\x21\x47\x8a\xc1\x50\x3c\xa8\x43\x1d\x5c\x68\x88\xd7\x6b\xb4\xc4\x39\x47\xc5\xed\x50\xda\x91\x62\x72\x79\xa2\x0e\x10\x93\xcb\x21\xe6\xc9\xf0\xcd\x15\x2e\x87\xb8\x1c\x2a\xb2\x50\x50\xcc\x15\x29\xab\xcd\x86\x0a\x92\x6f\x18\x5f\x54\x7c\xb8\xc6\x97\x57\x7c\x78\x81\x86\x4d\x39\x26\xc3\x55\x25\xe3\x8d\x5e\x23\x56\x4a\xfb\xdc\xd5\xb0\x43\x62\x82\xc4\x50\x91\x81\x0d\xc9\x8e\x4e\x01\xcc\x95\x81\x96\x80\x46\xe7\xe8\xfb\xf8\x28\x23\x70\x30\x0f\x91\xf9\x9d\x19\xfc\xda\x98\xe9\xc5\xc0\xe8\x30\x75\x81\xc4\xac\x61\x33\x3e\x77\x88\x15\x71\x54\xe0\xd2\x4f\x0f\xbd\xe3\x9e\xe9\xde\x79\xbe\xbc\x16\x37\x54\x8a\xfa\xd3\x96\xa1\x98\x43\x62\x89\xcb\xa0\x6d\x75\xc7\x63\xa7\xbc\x86\x2e\x09\x1d\x20\xd7\x98\x8b\xcf\xdd\xc1\xdc\xde\x1d\x8a\xe0\x5b\x4a\x37\xd3\x06\x35\xff\x8b\x62\x2f\x1d\x7e\x00\xcf\x47\x2a\xf2\x55\x19\x41\x06\x99\xa5\xe8\x95\x84\x0c\xa4\x25\xe2\x6f\xf0\x1a\xd1\x8a\x07\xb3\xea\x9b\xea\x72\xc2\x35\x3c\x05\x35\xd4\x25\x69\xdb\x4e\xac\xe7\xe5\x09\xac\x0c\x01\x73\x11\x3c\xf6\x42\xe6\xe6\x6f\x73\xbd\xfb\xb6\xac\x33\x9e\x66\xfc\xcc\x5e\xb9\x4f\x9f\x86\xfa\x57\x7a\x17\x5b\xf5\x8e\xf6\x54\x74\x77\xe2\xde\xdb\x96\xda\xce\x1d\xf3\x50\xef\x2c\x40\x03\x2a\x6d\x1c\xda\xb3\x50\x8b\x95\x43\xc8\x6a\x6a\x28\x04\x65\x0f\x22\x09\xa5\xe5\x2b\x39\x3f\xb4\x94\x68\x47\x2d\x24\x54\xed\x31\x25\x1c\x93\x0a\x35\xd5\xc4\xe4\x76\x74\xe5\x4e\x98\xd9\x57\xda\xbc\xc8\x21\xb9\x45\xda\xf9\xf2\xea\xe9\x9b\x1f\x5e\xbd\x68\xf3\x92\x0c\x9e\x7a\x6f\xac\xdb\xe2\xcd\x5f\x5e\xbd\xfc\x7b\xb7\xc1\x83\xde\x06\x8a\x69\x4d\xf7\xf1\xf9\xb0\x9f\x9f\xf5\xf7\x38\x8d\xbe\x79\xfa\x4c\xbc\x2a\x8f\x5f\x3d\x7d\xf4\xe6\x69\x04\x5b\x88\xdd\x9a\xf0\xf5\x6e\x6e\x6b\xe3\xb4\x4a\x76\x40\xc4\xa1\x76\x26\x6e\x63\xcb\xee\x98\x3a\xc9\xba\x7b\xda\xe1\x2f\x74\xb8\x56\x07\xc1\xe8\xcb\xd4\x7a\xcb\xa5\x51\x09\x0c\x5c\x60\x99\xb6\xd6\xbe\x86\x47\x07\x40\xa0\x7c\x04\x0c\xe0\x75\x24\x06\xa1\x57\x11\x3e\x70\xa0\xce\x6d\xde\x95\x5b\x29\xa9\x55\xa8\x93\x01\x9e\x62\xdf\x4e\xfe\x55\x7e\x23\xbf\xf8\x97\xfa\xef\x98\x5f\xbd\xc6\xe2\x82\xa9\x19\x62\xc3\xbf\xc7\x66\xf5\xcb\x27\x9a\xa8\x8a\xb1\x6f\xfd\x0e\x20\x9e\xf1\x8e\xdf\xc6\xd4\x6c\xee\x35\x7d\xab\x66\x2f\x3e\xc6\x38\x68\x95\x8f\xa5\x7b\xc0\x34\x46\x19\x86\x0a\xb9\x89\x73\x6c\x4e\x07\x2a\xd7\x53\xdf\xe7\x22\x31\x28\x86\xc0\xa0\x60\x10\x81\x1a\x1e\xd2\x40\xde\x22\x51\x1b\x98\x63\xe9\xdb\x93\xfd\x15\x1a\x14\xd6\xfa\xd6\x65\x38\xcd\x64\xdc\x65\xf6\xae\xc3\xdd\xff\xf6\x23\x1c\xf2\x72\x70\xed\x2e\xfa\xa9\x63\x3e\x75\xe5\x40\x31\x90\x94\x72\x8a\x24\xb1\xec\x9f\x9b\x3f\x7d\x76\x6b\xd2\xba\x04\x0e\xde\x45\xef\xea\xed\x1e\x74\x41\x88\x81\x86\x00\x15\xc3\xb9\x1c\x43\x98\xc8\x68\xab\x44\xcc\x0a\x83\xc2\x48\x4d\xc8\x04\x13\x31\x87\xa4\x95\x03\x31\xcc\x68\xc4\x13\x3d\x8f\xd1\x88\x35\x4c\x33\xe9\xaa\xe6\xb0\x56\xcd\x91\xaf\x4f\xa7\x44\x05\x2c\xa0\xd9\xe9\x19\x7d\x48\xce\xe8\x78\x0c\xf0\x8c\xfa\x01\x0b\xe8\x7c\x60\xfb\xb6\x2a\xa6\x19\x1b\x47\x69\x34\x46\x73\x63\x04\xff\x0b\x59\xe1\x63\x20\xb8\xae\xba\x1e\x14\x81\xd3\xcc\xba\xf8\x59\x99\x4b\xd9\xf8\x14\x01\x05\x1b\xed\xb3\xc9\x51\xdb\x49\xbb\x16\x37\x4a\x86\x85\xec\xa5\x60\xe1\xab\x40\x0d\x56\x7a\xb0\xb3\xbe\xba\xd1\x54\x73\xd6\x46\x3a\xd5\xdb\xbb\x23\xc9\xad\x41\xcb\x8f\x83\x7a\xbc\xc9\x51\x96\xe1\x40\xb1\xe8\xbf\x0b\x8f\x68\x27\x30\xd2\xf6\x57\x0d\x83\x6c\x34\xe2\x47\x59\x26\xfe\x4b\x70\xf9\x04\x95\x9c\xd1\x5b\x29\xaf\xf4\xda\x5a\xfd\x59\x04\x8c\x81\x65\xf4\x53\x34\xd6\x06\x8a\x2d\x73\x88\x9f\x22\x58\xca\xcf\xb4\xe7\xf3\xc0\x63\xb7\xbe\xec\x70\x36\xc3\x25\xe2\x68\xc1\x25\xef\xb5\xa1\x1c\x11\x8e\x05\xf7\x37\xbc\xca\x7f\xce\xd9\x92\x56\xe5\x30\x2a\x51\xb1\xd2\x52\xf5\x61\x41\xe9\x26\x1a\x5e\x20\x7e\x83\x10\x19\x6e\x72\x41\x4a\x2a\x4e\xed\xcb\x71\x3e\x8e\x86\x39\x59\x0e\x17\x57\xb8\x58\xaa\xc2\x68\x5c\x8e\xa3\x64\xf8\x7c\x35\xbc\xa5\xd5\xf0\x26\x27\xbc\xf3\x75\xc8\xa9\xe0\xc8\xac\x3e\xe0\xe6\xaa\xd5\x71\x24\x3b\xc6\x8d\xca\x00\x0e\x37\x05\x12\xf4\xcf\x42\xe6\x47\x19\xfe\xd4\x28\x6e\x7e\x12\xbd\xfd\x64\x79\x48\xe7\xc3\xfe\x49\xbc\x45\x68\x63\x7c\x6c\x87\xf9\x8a\x23\xb6\x6f\x1a\x7a\x7c\xcc\xd5\xa8\x15\x09\x8c\x1b\x81\xba\xa6\x56\xa7\x53\x6b\xbd\xfd\x22\x68\x31\x53\x38\xb6\x5c\x2b\x97\x27\x38\x38\xaa\xc8\xd4\xfd\xe1\x98\x25\x2c\x8c\x57\x88\x1e\x30\x97\xe6\x25\xf1\x9d\x54\x5f\x23\xb8\x22\x29\x87\x1a\x5c\xe5\x3b\x58\x43\x06\x1a\x77\x4a\xc7\xdc\x6a\x71\x80\xc1\x89\x01\xc1\x8f\xe0\xf3\xfb\xa1\xa6\x57\xf7\x34\xf4\xea\x7a\xf2\x85\x83\x1a\x7f\xb8\x59\xcc\x9b\xbc\x7c\xdb\x32\xae\xd2\x76\x2e\x67\x2e\x56\x75\x2c\x85\x24\x38\x38\x86\x7d\x67\xec\x21\xb7\x86\x7d\xe3\xb1\x55\x90\xcc\xd8\x7c\x40\x92\x26\xa4\x55\xe6\xfe\xd8\x6e\x8f\x4e\x21\x11\x98\x69\x85\x2f\x2b\xf5\xfd\x68\x62\xf4\x05\x98\x0c\xc9\x68\x14\x93\xe4\x86\x61\xae\xbf\xf5\x87\xd1\x22\xc9\x5b\x74\x2b\x83\xf3\xd4\x20\xf6\x3d\x4d\x3f\xbe\x11\x9b\x6f\x3f\xf2\xf9\x9e\x50\xd1\xa1\x8e\x5e\x9d\x05\xa8\x31\xf5\x94\x8e\x46\x51\x29\xff\x68\x7f\xb0\x32\x9b\x69\xc8\xa7\x46\x13\x74\x75\xc8\xe1\x06\x05\x9d\x0c\xcd\x70\x32\xee\x92\xca\x94\x43\x59\x96\x65\xb6\xfc\xc8\xfc\xdd\x98\x8d\x4d\xcd\xdc\x52\x3b\x20\xbc\x0a\xbb\x87\x9c\x37\x76\x2d\xbe\x01\x8a\x2c\x51\xc8\x4d\x35\xf1\x9c\x37\xc2\x26\xed\x1d\xca\x8a\x37\x0e\x90\x0a\x7c\x91\x84\x5b\x01\xb0\x0e\x0e\x63\xf3\x41\xc7\xe7\xc8\xbe\xc8\xaf\xaf\x72\x26\xe8\x6a\x23\x62\x68\xe6\xa8\x4b\xdc\x39\x2a\x9f\x43\x73\xb9\x76\x5b\x28\xc6\x55\x76\xb7\xd2\xb6\x37\x06\x0f\x6a\xc5\x92\x4a\xbb\x65\xf4\x4c\x02\x57\xdc\x3e\x12\x58\xb3\xbb\x29\x65\xd8\x29\xc5\xd2\xb9\xbb\xfc\x52\x9c\x58\x48\xba\xfa\x8a\x80\x4e\x8a\xa2\x97\x37\x04\x31\x4f\xa0\x07\x20\xcf\xd0\x14\x25\x54\x7c\x79\x4e\x44\x1f\x72\x54\x81\xfb\x9b\x0d\x34\x7a\xc9\x67\xb9\x00\x98\xdb\x8c\xb6\x3d\x83\xf5\x8e\xae\x08\xa8\xe3\x09\xc4\xc9\xf9\xa2\x40\x39\xa9\x36\x2f\x89\x26\x53\x40\x57\x8c\x68\xe4\xfb\x8f\x8a\x22\x82\x77\x4c\xc7\xb5\xe0\x57\x68\xa8\x33\x49\x61\x3e\x2c\xf0\x35\x2a\x87\x94\x48\x95\xff\x52\x75\x85\x96\x43\xca\x86\x15\x61\x88\x2c\x11\x43\xcb\x48\xea\x47\xe4\xc6\x86\x21\x49\xcb\x88\x0a\x4a\xa4\xfe\xb0\xdf\xb5\x96\x03\xa8\xc2\x11\xf0\x33\x22\xef\x38\x71\x21\x8b\xcc\x1b\x67\xe6\xe6\x1c\xb3\x99\x25\xd2\x4b\xa3\x7b\x31\xdf\xb6\xdb\xd9\x1c\xc0\x52\x06\x23\x41\x35\x54\x67\xdd\x55\x2e\x48\xb3\xcd\xae\x6d\x22\xd0\x91\x83\x90\x83\xf5\x34\xc6\xfb\x07\xad\x04\x19\x31\xa4\x44\xdb\x75\x38\x62\x6f\x81\x79\xa4\xd8\x1b\x93\x61\x2e\x49\x8f\xa4\x71\xc3\xbe\xb2\xde\x9d\xea\xae\xca\x73\xf0\xee\x2a\x0f\x59\xe6\xb5\x2e\xaf\x0c\x63\x60\xa8\x95\x60\x30\xec\x7b\x8e\x62\x4c\x03\xd5\x49\x16\x2d\x15\x8c\x0d\x84\xed\x84\x6d\xd0\xe0\xe6\x11\x1d\x16\xba\xce\x29\xc3\x97\x58\x57\xd2\x3f\xda\x1e\xa4\x0d\x70\xdb\xb2\x46\xbe\xca\xf4\x67\xfb\x1b\x7a\x74\x71\xc3\xea\xdb\xa2\xba\xc7\x78\xc8\x35\x4b\xde\x65\x91\x1c\xb8\x65\xa9\x75\xc9\xbd\x27\xa2\x74\x3c\xc5\x75\x74\x8d\xdd\xe0\xec\x21\x43\x8d\x22\x05\x1f\x14\x32\xf7\xd4\xbc\x10\xf4\xab\xa7\x6d\xdf\x64\x57\x88\x66\xaf\xc3\x74\xc7\x55\x11\xd7\x04\x01\x90\x22\xa8\x5d\x6e\x42\x3b\x12\x02\x00\x49\x81\xe2\x30\x1c\x48\xa4\xe6\x17\x39\xf0\xa8\x6c\x2a\x79\x63\xc5\x11\x30\xae\x0c\x0b\x18\x3c\x00\xf3\x01\xdb\x09\x09\xc2\xa4\xa0\x32\x70\x9b\x24\x89\x14\xd4\x03\x19\xf9\xaa\x9e\x6d\x8b\xcb\x6b\xd8\x80\x96\x11\x1c\x6b\x14\x1a\x14\x40\x5a\xd7\xb0\xc8\x70\xf2\xfc\xc5\xdf\x5e\xfe\xf5\x29\x5c\x04\x6c\x9c\x95\x94\x49\x4d\x3b\xfc\xa0\xd4\xb0\x18\x62\x32\xac\xa6\x61\xea\x4d\x90\x34\x9a\x20\x5d\x40\x3f\xfc\xa9\x4b\x1b\x8a\xdf\x86\x16\x94\x94\x6b\x5a\xcd\x8a\x79\xb6\x80\x15\x00\x70\x93\xb5\xc8\x58\x6d\xf3\x6e\x49\xb5\xb5\x4f\x32\xe3\x55\xcc\x80\xef\xf1\xc4\x5c\xd7\x26\x13\xe9\x60\x96\xcf\x61\x95\x09\xda\x59\x3c\x7b\xe7\x0e\x81\xae\x05\xa6\xec\x3c\x1a\xdf\x8e\xc7\x03\x3e\xab\xe6\xd9\x75\xac\xba\x87\x28\xe6\xb0\x94\xe0\x0d\x2b\xd7\x61\xe5\xda\xe8\x70\xc2\x16\xc5\xa4\x31\x18\x46\x60\xc0\xa6\x5d\x25\xd3\x4b\xb2\x30\xd1\x2f\xb4\x25\xfa\xac\x51\x3b\x11\xc8\xed\xa5\x50\x94\x63\x93\x2a\x51\x5a\x09\x2a\xcb\xed\xe6\x60\x00\x48\x49\x13\x9f\x81\x78\xd6\xc8\xad\xfd\xdc\xf8\x8e\x02\xb9\xe7\x28\x80\x5b\x8e\x02\x1b\xc7\x51\xe0\xae\x44\xdc\xf3\xe3\xb6\x9a\x16\x31\x99\xd7\x82\x0c\x79\x2d\x6a\x68\x4d\x95\x5f\xb8\xcb\x71\x36\xe8\x1b\x6d\xd4\x60\x5d\xef\xeb\xb6\xae\xf7\xcd\x15\x1a\x0a\xbe\x89\xae\x86\x7e\x47\x31\xb0\x8a\xde\x7c\x58\x6e\xd0\x42\x30\x71\x9a\x3f\x37\x2c\x9d\x60\xbd\x97\x68\xc3\xd0\x22\x97\xd2\x0a\xb2\x1c\xde\x50\xf2\xe5\x3e\x75\x6e\x19\xd4\xe7\x26\xc3\xef\x95\x08\x41\x0d\x76\xab\x5f\x5a\x67\x30\x52\x72\x94\x2f\xe1\x10\x25\x97\xc9\xf0\xa7\x68\xcc\xc7\x51\x2a\xeb\xc4\x49\x92\x00\x13\x16\x20\x06\xad\xf0\x63\xb1\x79\x23\xfc\xe2\x71\x04\x7e\x8a\x00\x5c\x6b\x25\x47\xbe\x5c\x7e\x8b\x4b\x8e\x08\x62\x50\x93\xae\xd2\x7b\x5e\x1a\x9f\x40\x0e\x6d\xfc\x15\x78\x74\xba\xb3\x95\x42\x28\x4f\xbd\xb6\x0e\x55\xd6\x6a\xfd\x52\xa7\x90\x35\xad\x2d\x71\xeb\x0f\x39\x01\x35\x74\xf5\xb9\x3e\xda\x69\x26\x9a\xb5\x7e\x0b\x72\xa9\xbd\x18\x2f\x98\x5c\x6b\x9d\x2d\xe8\x32\xa6\xb4\x2f\x7b\x87\x6e\xaf\x36\x0b\x96\x36\xd3\x68\x7f\xe9\x4c\xa6\xb3\x7d\x9d\x29\x59\xf2\xff\x53\xf2\x38\x66\x90\x8c\xeb\x51\x03\xf4\x42\x87\x86\x7c\x44\xba\x60\xad\x80\xd8\x90\x27\x92\xe8\x16\x9c\x75\x89\xb8\xa0\xc1\x31\x2f\x0d\x69\x7e\x8d\xf3\xe1\x97\xfe\x9b\xf0\x65\x32\x7c\x8d\x90\xbd\x62\x58\x12\xed\xca\xba\x62\x45\xd9\x70\x89\x78\x8e\x8b\x32\x89\x24\x5b\xb5\x07\x01\x85\x3c\x95\xa4\xdc\xeb\x36\x9b\x1c\x20\x40\xf2\xe4\x3d\x9f\x32\x50\x42\xdb\x09\xa2\xc0\x79\xe9\x24\x76\x54\x9f\xbf\x13\xf3\xb0\xa4\x4b\xaf\x77\xc3\x25\xf7\xdd\xcd\x26\x8e\xb3\x58\xb8\xaa\x71\x70\x94\x35\x9f\x2f\x8b\x90\x27\x44\xe3\xbd\x66\x3a\x0b\x18\xff\x1f\xd9\x27\xcc\x15\x1e\x8f\x46\x5e\xb9\x71\x61\xab\xfb\xdd\x2e\x0e\x1a\x6c\x18\x1c\xcc\xf1\x6d\x08\x0d\x3a\x8d\x94\xb3\x72\x94\x46\x78\x59\xa0\xa8\x06\x2d\x8a\x5c\x33\xdb\x8a\x2c\x93\x3f\x88\x24\xd4\x95\x17\x8f\xa3\xcf\x81\x0e\xb8\xa4\xbc\xe5\x3a\x5c\xe4\x25\x97\x6d\x1a\xca\xca\x75\xc9\x06\x5e\x70\x8b\x6e\x3d\xbf\xa3\x26\x50\x46\xb7\x66\x13\x62\x00\xb4\xe3\x63\x04\x86\x6f\x8c\x75\x81\x1f\x39\xa3\x5b\xd7\xba\x23\x03\x2f\xa2\x46\xb7\xa2\x71\x36\x06\x7e\xa0\x8d\x40\x8f\xc6\x46\x0f\xb4\x03\x70\x74\xeb\x3a\xfe\xc7\xc0\x0f\xcd\xe1\xd7\x6d\xc5\x4e\x68\xce\x20\x9d\x40\x0b\xd8\xe9\x04\x36\x9e\xc4\xe9\x64\x67\x04\x0d\xb4\xdd\xde\xd5\x90\x65\x3c\x51\x72\x04\xa9\xeb\x67\xa8\x44\x5c\x9b\xea\x65\x6c\xbb\x35\xae\x11\x8f\x8a\x5e\xef\x08\x81\xe6\xf8\x15\x92\x01\x34\xa3\x0e\x95\xdd\x34\x67\x00\x12\x6b\xb0\x6b\x87\x89\x81\x09\x81\x73\xa0\x1d\xbf\xc7\x7e\x1a\x6a\x4a\xd3\xfe\x46\x2d\xd9\x0e\xe2\x24\x40\xbf\xe1\x53\x15\xdc\x37\x53\xe8\x98\xef\x97\xc8\xf8\xb8\x63\x54\xaa\x08\x2e\xbb\xe2\xb4\xb4\x23\xb9\x84\xa2\xbd\x7c\x9e\x58\x2e\xd2\x37\x7d\x37\xb2\xbf\xc9\x31\x3f\x5e\x51\xf6\x11\x3c\x53\x2d\xa5\xcc\x1a\xe9\xb3\x2b\x78\x79\x85\x56\x48\x74\x66\x64\xce\x62\x6f\x87\x57\x79\xa9\x08\x48\x44\x86\x98\x60\x8e\xf3\x02\x97\x68\x39\x3c\x1e\x4a\x51\x5d\x0c\xbc\x1a\xda\xff\xc6\xf0\x87\x47\x7c\xbb\x35\x52\xbb\x23\x23\xa0\xe5\xae\xd8\xb6\x29\x9d\xa2\x94\xd7\xed\xb8\x45\x9e\x7e\xdf\xed\x41\x6c\xe6\x51\x96\xf1\xb0\xb4\x5c\x52\xea\x02\xf2\x19\x2a\xa5\xbd\xe2\xba\x2a\xf9\x10\x61\x7e\x85\x98\xa0\x85\x45\xeb\x21\x65\x8e\xf8\x1c\x4a\x22\x20\x1a\x9b\x11\x80\x8a\xec\xa5\xde\x6a\x93\xe1\x5d\xbf\x6f\x52\x55\xee\x70\x12\x8e\x9c\x39\xd5\xef\x27\xf2\x18\xc6\x53\x97\x41\x6c\x33\x8f\x82\x54\xe0\xa3\x91\xd1\x3a\x29\x58\x56\x5d\xbf\x5c\x4d\x83\xa5\xca\x72\x0b\x25\xe7\xe7\x72\x16\xe7\xe7\x19\x07\xf5\xaf\xce\x41\x5e\x40\xee\x33\xca\x24\xa2\x0b\xc4\x72\x97\xb3\x28\x65\x78\x6d\x5b\x57\x52\x99\xe1\xa4\x01\xa2\x76\xa5\xcd\xe9\x6c\x7d\xcb\x06\xb6\x6d\x11\x9d\x46\x85\x2e\xab\xb5\x27\xfa\x6f\x4e\x73\xd4\xe6\xc9\xb9\x17\x8c\x94\x8d\x46\x28\x76\xc1\x51\xa1\x6d\x24\x93\x89\x43\x5e\xd7\x31\x80\x79\xcf\xa2\x5d\xc7\x7a\x63\xcf\x10\x23\x38\xbb\x7b\x8b\x6e\x53\xe5\x91\xa4\xfd\x67\xdb\xf2\x5c\x7d\xbf\x63\x2d\xd8\xb5\x66\x13\x6f\xa8\x8e\xdd\xaa\x64\xe1\x40\x05\x3e\xb5\x59\x2a\x5c\x46\x7e\x0e\x20\x12\x93\x6b\x45\xda\xf1\x75\x58\x6a\x7a\xa5\xa1\x45\x95\x5c\x1f\xc6\x65\x03\xfa\xdb\xad\xde\xc1\x4b\xff\x8a\x88\xb1\xad\x43\x38\x00\x4d\xc6\x0c\xeb\xc1\x90\x21\xc8\x6b\x1b\x57\xae\x84\x39\x80\x34\x2e\xf5\xea\x3b\xa6\x20\xed\x8d\x90\xf6\x20\x01\x6b\x5b\xf9\x20\xd9\x31\x7c\xd7\x88\x3d\xe6\x1d\xda\x04\x43\x6e\x4d\x29\xb6\xa6\xea\xdd\x1a\x79\xc1\xbd\xcd\x21\x1f\x61\x73\x88\x66\x57\x32\x01\x7e\x96\x09\xcd\x38\x24\x1f\xb8\x4f\x8d\x10\x09\x62\x17\x16\x6b\x48\xb3\xa3\x53\x17\x3e\x09\xb8\xa3\xe2\xce\xe0\x58\x87\x8e\xdc\xb9\x61\x20\x94\xb5\xc1\xa0\x70\x71\x10\x54\xab\xf2\x97\x4a\xaa\x69\x44\x03\xd3\x78\xd7\xd7\x16\x13\x2e\x16\xec\xcd\xda\x6c\x53\xc2\xd0\x9a\x5e\x23\xbf\x2d\xf1\x1a\xd6\xc6\x82\x50\xb7\xa0\x04\x05\x7a\x77\xfa\xa6\xdb\xad\xed\x9e\xae\x56\x9d\xee\x1a\xe0\x28\x76\x02\x47\xd8\x72\xeb\x40\x9b\x88\x6f\x28\x2d\x50\x4e\x06\x3e\x84\xd1\x8f\x00\x61\xb4\x81\x30\x2a\x10\x5c\xc6\x21\x4d\x36\x0c\x2d\xf1\x22\xe7\xd6\x8f\x2a\xa4\x45\x26\x53\x12\xd4\x01\x67\x59\x46\x6a\x48\x3f\x11\x80\x2a\x19\x7f\x63\x7a\x64\xce\x46\xa1\x67\xa9\xbb\x22\xdd\xf9\xc7\x18\xd8\x20\xe0\xfb\x60\x18\x03\x78\x34\xa9\xa5\x12\x0c\xc7\xb6\x59\x0b\x3c\x8d\x50\x4a\xc1\x8e\x7c\x18\xa4\x16\xd5\x03\x9d\x16\x58\xda\x36\xc4\x6d\x50\x5b\x00\xda\x49\x76\x9a\x54\x2f\x8a\x1b\x38\x96\xf1\xd9\xf7\x18\xaa\x98\xc0\xc5\x1f\x3b\x38\x8a\x9a\x82\x8a\x58\x9c\x11\x13\xd1\x43\x30\x30\x5f\x36\xb3\xfb\x72\xc8\xd1\x7a\x53\xe4\x1c\x0d\xd5\x3c\x24\xeb\xa3\xac\x38\x97\x51\x2b\xfa\x93\xb6\xb2\x9e\x4d\x8c\x88\xe9\x88\x88\x5b\x67\x39\x1f\x15\x63\xa6\x13\x27\x19\x18\x5f\x2e\xb5\x1d\xae\x0c\x71\x46\xac\x72\x97\xd5\x73\xd7\x16\x48\x81\x8e\xea\x27\x51\x53\x8b\xc9\x61\x7b\x6f\x85\x8d\x1f\x63\xe3\x3d\xda\x9f\x79\xf9\x74\x42\x0b\xb5\x63\x37\x7f\x89\x66\xef\x43\x06\xea\x0e\xf4\x01\x32\xb8\x7b\x6f\x18\xa8\xc1\x60\xff\xde\xb4\x23\x88\x7f\x9a\x74\x4c\xa1\x09\x76\xf8\x72\xc8\xb2\x58\xe0\x33\xdf\xd8\x86\x83\x29\x4f\x1d\x33\x19\x0e\x00\x24\x2a\xa2\x36\x0e\x44\xd4\x26\x5a\x4d\x68\x55\x1e\xbf\x9c\x31\xec\x1e\x86\x74\x47\x7a\xba\xc3\xe3\x84\x35\xd6\x6f\x1f\x62\xf2\xa6\x43\x96\xdd\x37\xc9\xc6\x6e\x2e\xfb\x03\xa3\x96\x99\x74\xfe\x1f\x0e\x84\x2b\xca\xd0\x35\x62\x59\x97\xd9\x69\xb1\x4b\x2d\x4e\x0b\x25\x5c\x39\x26\x35\xf9\x3a\x74\xf6\x8e\x26\xc8\x53\x6f\x0a\x0f\x1d\xe2\x33\x10\xf5\xa9\x08\x65\x7c\x50\xc8\xe3\x19\x49\x96\xb8\xdc\x14\xf9\xad\x22\xab\xc7\xd1\x30\x96\x01\x16\x23\xc8\xa4\xb6\xce\xd3\x69\xeb\x26\x9e\x36\xbb\xa5\x6c\x6e\x59\x31\xec\x30\x61\x88\x27\xb0\xec\x44\x11\x07\xda\x54\x07\xe2\x26\xb2\x58\x5b\x96\x8a\xac\x6e\x7c\x87\x62\xbc\xab\x15\x97\xf9\x22\x5a\x8b\xcf\x10\x0c\x73\xe9\x5c\x2f\xdf\x1c\x5c\xc3\xa4\x09\xc6\x4c\x6f\xb5\x8a\x0d\x77\xe0\x7e\x3b\x0b\xfa\x35\xee\xe9\x3d\x77\x07\x77\x03\xbf\xf9\x5b\x24\x1f\xfb\x4a\xa3\xe1\xf3\x12\xf1\xc7\x45\x5e\x96\x78\xf1\x04\x2d\xa8\x76\x0d\x75\xbe\x69\x41\xa4\xfd\xd8\xbc\x79\x45\xb3\xad\xb6\x8c\xc7\x2e\x17\x6d\x89\x62\x39\x4d\xa9\xf5\x55\x7f\x28\x17\xa8\x96\xa8\x13\x01\x5f\xd7\xed\xb0\xb5\x66\xf9\x55\xcc\xc5\x0a\xd4\xdd\xa2\xe2\x5f\x3f\x27\x0a\x75\x7e\x78\xf1\xd7\x48\xf3\xb7\xc9\x7a\x22\x43\xb0\x5e\x99\x4c\x29\x54\xfe\x07\x9b\x6b\xce\xcd\x5f\x6d\x99\x4b\xee\xfd\x6c\x4b\x59\x72\xef\x67\x40\xa6\x92\xb7\x4b\x1c\xa4\xc4\xcd\x5f\x7b\xde\x0a\x25\x2f\xfc\x59\x3c\xd9\x9d\xcf\x7b\x1e\x91\x4f\xf4\xa6\xdf\x49\x9d\x49\x60\x38\xd8\xcc\xd6\x15\x77\xec\x49\x6c\xa2\x5f\xba\x83\x28\x11\x07\xf6\x7c\x31\x15\x1f\x62\x32\x44\x3d\x66\x28\xa2\xaa\x5e\x0a\xbb\x97\x19\x8a\x78\xef\x05\xbd\x55\xb7\xe5\xbe\xdc\xf8\x37\x67\x5a\xc7\xad\x42\xed\xf0\xf7\xa1\xee\x70\xf9\x54\x85\xb4\x57\x6d\x43\x72\x3e\x34\x1a\x05\x9d\xb4\x04\x33\x1c\xb4\xe0\x45\x82\xf3\xdd\x6e\x83\x5f\xda\xbc\x7a\x4f\x07\x01\xce\x5c\xca\x0d\x1f\x99\x9b\x2a\x09\xd1\x8e\x05\x67\x47\x8e\x78\x90\x13\xd4\x57\x53\x72\xfc\x95\x72\x82\xfa\xca\x73\x82\xfa\xaa\xe5\x04\x25\x05\xee\xc9\x0d\x2e\x0a\x63\x31\xaa\xb6\xa8\xfb\x21\x31\x96\x3d\x92\x7b\x2c\x4b\x54\x9e\x1b\xcb\x50\x56\x9e\x9f\xdb\xf4\x51\x6e\x1b\x58\x66\xb3\xf9\xc0\x2b\xca\x02\x1a\x79\x45\x30\xda\x70\x27\xfc\x21\x93\x24\x62\x39\xe3\xf3\x18\x0c\xf2\x90\xac\x0e\xde\x67\x6e\x59\x59\xdf\xa7\xba\x8a\x0d\xe1\x6a\x74\x66\xac\x89\x43\x88\x81\xca\x26\x65\x70\x5d\xf7\x9d\xd4\x28\x98\xa9\x40\x46\xeb\x76\x0e\xa9\xa6\x67\x06\xee\x0c\x45\xcf\x2a\x92\x14\x32\x04\x0b\x93\x8e\x8f\x83\xc6\x6f\xdb\xcb\x6b\x14\xf4\xab\xd7\xf6\x69\x1c\xd4\x90\x89\xa9\x19\x87\xd2\xac\x92\x18\xfa\xa6\x4f\xd4\x5d\x69\x51\x37\xcb\x6f\xde\x04\x56\x63\x50\x41\x7c\x57\x43\x0a\x5d\x61\x6f\x4b\x3a\x11\xf6\x3c\xe7\x8e\x9c\x21\x87\x24\xd1\x11\x92\xc4\x88\x20\x10\x77\xf3\x06\x93\x25\xbd\x49\x04\xfc\xb3\xe7\x84\x23\x76\x9d\x17\x31\x96\xda\x28\x88\x02\xe2\xdc\xc0\xc6\x07\x92\x5d\xd9\xa7\xdf\xa4\x8e\xf2\xb7\x13\xcd\xe8\x3c\xbe\x0b\xf8\xb8\xab\x97\x38\xcb\xf2\xed\x96\x65\x59\x39\xe5\x36\x94\x16\x01\x29\x37\xa1\x62\x08\xa8\x6b\x38\x01\xd0\x76\x5f\x43\xe6\x58\x92\xe9\x26\x59\xc7\xd3\xd4\x8d\xed\xe5\x07\xea\x42\x32\x81\x8b\x6b\xa2\x91\x79\xbe\x3f\xdb\x6d\x8b\x0d\x23\x55\x51\x64\x19\xda\xad\x46\xa1\xe4\x1a\x31\x3e\xac\x88\xc2\xa3\xd2\x92\x5b\x2a\x9c\x38\xd5\xa6\x25\x11\x18\x18\x9d\x52\x8c\x9a\x08\xe7\x3c\x3b\x3d\xe3\x0f\xdb\x88\x46\xde\xce\xb6\x8f\x93\x60\xe5\xf4\x7c\x8e\xb2\xc6\x62\x90\x88\x87\x84\x01\xbd\x88\x66\x6f\xae\xf2\xf2\xe5\x0d\xb1\x44\x96\x14\xcc\x89\x4d\x1f\x8d\x62\x34\x23\xf3\x8c\xcd\xc8\xdc\xaa\x00\x90\xd8\x14\x65\x58\x99\x45\xe7\xda\x15\xf6\x5c\x39\x48\x9c\x9f\x47\x4e\x56\xbb\x99\x7e\x10\x2f\x0b\xbc\x5e\x23\x66\xb9\x73\x65\xf9\x67\x1f\x75\x46\x2b\x8e\xc9\xe5\xf1\x15\x5f\x17\x17\x39\x2b\x4f\xde\xa2\xdb\x1b\xca\x96\xe5\xc9\x42\x09\x1c\x8e\xc3\x0d\x7a\xeb\xcd\x75\x44\x58\x62\xb6\x08\x0b\x84\xbb\x8a\xc9\x0c\xcf\xb1\x09\xf3\x78\x7e\x5e\xd0\x7c\x29\x4f\xfb\x12\x97\x9c\xdd\x82\x3b\xbb\xac\x4e\x0d\x99\x19\x56\xb6\x07\xba\x8e\x8a\x21\x50\x9b\xe8\xc5\x2d\x21\xa2\x34\xbd\x5c\x9c\xdb\xd2\xf3\xf3\x08\x0a\x74\xdc\x15\xf0\x65\x11\x41\xef\x78\x04\xcb\x2c\x46\x6d\x1f\xcd\x2c\x92\x80\x14\x41\xd4\xf1\xd9\xcf\x4c\x76\x42\x30\x40\x1d\x67\xcd\x4c\xcb\x9e\x44\xc3\x73\x43\xf7\x5a\xba\x4d\x2d\xae\x5d\x3c\x70\x88\xb7\x16\x8e\x01\x77\x6e\x80\xf4\xca\x5e\x1c\xf9\xd0\x67\x28\x44\x00\x6d\x6e\x4f\xc4\x3f\x61\x12\x4e\x7f\x14\xfb\xf2\x39\x52\xd2\xab\x34\x51\x8d\x9a\x39\xd3\x64\x79\x96\x65\x68\x1a\xd9\x6b\x18\xa5\x2c\x46\x00\x6c\xb7\xea\x12\xdb\x70\x2d\x43\x24\x9f\xdf\xb6\x84\x45\x70\x00\xc6\x01\x44\xb9\x7f\x8a\xd6\x56\xaa\x2b\x16\x18\x93\x0e\x6a\x1d\xa2\x58\x8b\x00\xfa\x27\x45\x5a\x93\x22\xce\xa4\x88\x19\x81\xe8\xc4\x80\xfa\x79\xab\x8c\xe1\xb0\xca\xad\x16\x57\x19\xb5\xc9\xf2\x09\x00\x5f\x67\x13\x60\x43\x3b\x57\x12\x35\xf8\xeb\x21\x40\xce\xa7\xcc\x88\x16\x3d\x01\x88\x25\xd6\xa8\x1a\x4a\xe0\xf8\xb8\xfa\x3a\x9b\x9c\x81\x72\x56\xcd\x33\x14\x8b\xff\xf4\x52\x6a\x54\x94\x68\x88\x57\x71\x67\x4b\x08\x00\xa2\x4f\xb9\x1b\xaa\xee\xc0\xd4\x25\xae\xea\xf9\x49\xce\x91\xa8\x89\x6e\xe4\x9f\xb1\x0c\x55\x2f\x9e\xb1\x18\xa8\x16\x77\x65\x76\xa7\xf8\x3d\x9b\x4d\x54\x4c\x4f\x1a\x68\x93\xc3\x10\x1a\x81\x05\x18\x8d\xa2\xf3\x73\xb1\xdd\x45\x52\x56\x17\x2a\x2f\x7c\x3c\x81\x0f\x04\xa6\x2b\x67\xc5\x3c\xc3\x53\x71\xcd\x0b\xb3\xb2\x54\xfc\x0d\x6a\x2c\x63\xfa\x4b\x4a\x84\xc8\x30\x45\xe2\x2f\x47\x6d\x51\xd6\x02\xce\x20\x99\xce\xe6\xda\xf0\xca\xfc\x05\x6c\x8c\xe9\xdf\x8b\xe3\x5b\xff\x6d\x97\x17\xfa\x33\x09\x5d\x7d\x83\x42\x31\x7a\x7f\xf6\xc4\xcd\x4e\xa9\xa4\x45\x55\x07\xe0\xa7\x0f\x4f\x77\xd7\xdb\x40\xcd\xe1\xce\x67\xe0\x2e\x51\x30\x8a\xb0\xd9\x8b\x7a\x57\x87\x8f\xed\x89\x1c\xd4\x29\x73\x3a\xed\xec\xe1\x32\xe7\xf9\xf1\x9a\x2e\x51\x71\xbc\x62\xf9\xa5\x24\x31\x4e\x72\x81\x39\x4e\xcc\xef\xd0\xe6\xee\x68\x26\xcd\x27\x65\xe8\xcd\x5d\x75\x9b\xce\x77\xd5\x12\x3c\xf6\x89\x41\x26\xc7\x74\x75\x2c\x60\xf5\xbe\x19\x23\x54\x8a\x26\xf5\x9c\x7b\x41\x0a\xa4\x03\x4d\xd4\xa4\x6f\xd5\x11\x06\x4a\x4e\x19\x8a\x00\x2c\x5b\x21\x0d\xc4\xd0\x00\x56\xad\x3e\x36\xca\xd5\x01\xc0\xc2\xff\x40\xb4\x3d\xa6\xc1\x69\x56\xdc\xef\xe5\xa4\x25\x70\x65\x38\x0c\x6f\x18\x81\xc7\xe3\x09\x64\x09\x2e\x9f\xe9\xdd\x00\x12\x95\x2f\xb4\x22\xec\x2a\x53\x9f\x05\x05\x4f\xf2\xe2\x3b\xb1\x71\xcf\x28\x03\xf1\x02\x08\x0e\x60\x41\xd9\xf2\x49\xce\xf3\xc6\x2d\x12\x0c\xae\xb6\x5b\xd9\xa6\x44\xdc\xf4\x29\x3f\x81\x78\x01\x29\x2c\x14\xae\x8f\x17\x19\x9f\xad\xe6\x60\x8a\xa7\xed\xca\xa2\x3f\x51\x97\x80\x26\x8e\x92\x63\x7c\x27\x3f\x2c\xd4\xb4\xd4\xed\x6d\x66\x9e\xc3\x52\x0c\x01\x2b\xd8\x3c\x9c\x8b\xfa\xfe\x4a\x25\xad\x8d\xee\xa6\x6e\xe5\xd6\x11\x57\x1f\x88\x36\x1d\x24\x94\xad\xa5\x60\x47\x4c\x3e\x84\x50\xb5\xa2\xbb\x13\x9b\x91\x12\x8e\x54\xe6\x2b\x65\xf1\x7f\xae\x96\xf4\x9a\xe4\x9b\xf2\x8a\xf6\x46\x00\xef\xcd\x8f\xdc\x6a\x1f\xab\xb0\x97\x32\x5b\xcd\x63\x19\x27\x61\xf9\x88\x73\x86\x2f\x2a\xee\x5b\xd3\x07\x7b\x45\x49\x4f\x4b\xdd\x6d\xbe\xcc\x37\x1c\xb1\x27\x78\xf9\x98\xae\xd7\x98\x07\x82\xbe\xee\xcd\x02\xd7\x49\x3e\xac\x22\xbd\x25\x9d\xce\x63\x34\x1a\xa1\x19\x9b\xb7\x87\x56\x61\xf5\x3f\xca\xc8\xad\x71\x15\xd7\x85\xe4\x80\x57\x79\xf9\x04\x33\x7e\xeb\xec\x5e\xdb\x72\xfb\xbf\x51\xbe\xb8\x4a\xba\x15\x23\x18\x69\x41\x79\x5e\xe8\x80\xc3\x7d\x96\xac\x3b\xe6\x6c\x23\xbd\x3f\x22\xb7\x71\x14\x18\x45\xe0\x5c\x46\x95\x79\xc0\x8e\x33\xde\xbf\x2f\x8a\x1d\x8b\xa3\x6e\x67\x11\xa8\x61\x89\x58\x57\x84\xe9\x05\x55\xd4\xcd\x6d\x45\xd1\x8a\xa1\x4d\x91\x2f\xd0\x63\x05\xee\x9d\xc0\x7e\x8a\xd9\xeb\xbf\x1c\x34\xd3\xf7\xc7\x10\x97\x08\xa2\x31\x07\x90\x39\xea\x4d\x3d\x84\xec\x92\x82\x1a\xe6\xcb\xa5\x41\x0c\xbd\xb9\x34\xa5\xe1\x83\x66\x92\xc5\x24\xd7\xf4\x1a\xed\x6d\x64\x8c\x1f\x6c\x3b\x1f\x0b\x05\xec\xaa\xdb\x0b\x33\x0f\x82\x17\x3b\xa9\x79\x10\xba\x3b\xa1\xdf\x04\x9c\xb5\x51\x5e\x4c\x1c\xe9\x8b\xf2\x47\xac\xca\x2b\x3d\x37\x0c\x6a\xe8\x88\xc9\xde\x03\x14\x82\x99\xc1\x13\x2d\x5c\x93\x06\x1e\xae\x73\xb0\x06\xef\xfd\xad\xea\x1a\x38\xfe\x1d\xf4\x3e\xc4\x42\xf3\xea\x87\x29\xb1\xdd\xef\xbc\x6c\xdd\xb6\x63\xf8\x60\x92\x6c\xe0\x82\xaf\xe4\x86\xbe\x67\xf4\xdd\xad\xf5\xea\x4f\x0c\x21\x05\xef\x94\x2f\x6d\xe3\x59\xf1\x21\xf9\x33\xcf\x37\x88\x2c\x31\xb9\x14\x4f\x8e\xe1\xe2\x3a\x61\xcc\x5b\x88\x67\x36\x17\xf0\xaa\x6f\xe1\x5e\xf3\x7a\xbd\x22\x79\xd0\x92\x40\xde\xf1\x1a\x71\xc9\xa2\x49\x04\xc1\xab\x4d\xe7\x19\xb4\xe1\x17\x9c\x49\x1f\x09\x16\xf9\xae\xbb\x16\x34\x70\x63\xab\x79\x4f\xab\xf6\xa2\x5b\xe7\x6f\x91\x35\x54\x08\x84\x20\xb3\x98\xa3\x93\x18\xa1\xbd\x21\x02\x89\x58\xd4\x31\x71\xde\x67\x06\x23\xc5\xb5\x46\xc0\x26\x00\x0d\xec\x78\x5d\x1f\xf0\xf8\xa3\x83\xdf\x75\x4e\xd5\xb2\x0e\x7b\xb4\xf7\x3d\xc1\x3a\x04\xa1\x3d\x91\x18\x81\x4e\x68\xca\xce\x86\x78\xd3\xd8\xf9\xd4\x8a\x09\x1c\xf0\x2e\xce\xe6\x07\xbd\x80\x93\xa3\xcc\xf1\x04\xcb\x99\x36\x63\xb4\x53\xe9\xd0\x4e\xad\x2e\xc1\x81\x0f\x60\x89\xb8\x0e\x14\x12\xef\xef\x71\xff\x73\xe7\x9c\x98\xc4\x50\xfa\x89\x13\x07\x22\x8f\xee\x5e\x17\x7b\xd0\x8a\x34\xd2\x7a\x2f\xba\x2f\x89\xa2\xfe\x07\x81\xb4\x32\x1d\xf2\x40\xd1\xd9\x06\x17\x3e\xc1\x4b\x59\x03\x48\x0c\x28\x4d\x28\xd3\x76\x85\x57\xa8\x44\x1c\x68\x8b\x78\x13\x96\xe1\xa9\x40\x6a\x25\x0e\x79\xa6\xaa\x79\xc6\xd1\x38\x38\xff\x04\x2f\x23\x30\x8e\x40\xe4\x63\x7f\x72\x20\xf6\x77\xc8\xa9\xf7\xc1\xfc\xf7\xe1\x19\xdb\x6c\xe9\x01\x2f\xca\x67\xe4\x41\x8d\xf0\xef\x83\xad\x7f\x5c\xde\x2c\x43\x89\x5c\x75\xd6\x94\x3f\x6a\xfd\x36\x0c\xa6\x92\x1a\xfe\x6e\x84\x51\x9e\x58\xda\xa5\x46\xa3\xe3\xf5\xea\x38\x1a\xa3\xb3\x98\x8f\x46\x31\x19\x67\xd1\x17\x91\xa4\x39\x47\x23\x96\x6c\x68\x71\xbb\xa6\x6c\x73\x85\x17\xa0\xf9\x1a\xb3\x44\xf4\xfb\x57\x74\xbb\xdd\x6a\x9a\xad\x21\x50\x6b\xd7\x58\xc4\x88\x13\x94\xf5\xaf\x62\x2b\x11\xc4\xa5\xbd\xb0\xe9\xd1\x04\x36\x3c\xb9\xf8\x65\x18\x4e\x9e\xf1\xed\xf6\xae\xb6\x76\x20\x2d\x74\x7b\xe7\x09\x67\x2c\x09\x1a\x4f\x20\x0d\x70\xf1\xf2\xe2\x43\x63\xd9\x9f\x48\x0a\x14\x6a\x87\x8d\x46\xd9\xe6\x32\xfa\x0e\xa3\x2e\x25\xe3\xf2\xc1\x0f\x84\xd0\xc6\xbb\x87\xcc\x77\x0e\x99\x67\x3a\x88\x35\x82\xb9\x78\x7d\xf1\x8e\x29\xe4\x82\x9c\x4c\xd6\x88\xe7\x82\xe0\xb5\x9b\xbc\x50\x22\x19\x0b\x44\x6a\xd3\x9d\x79\x62\x68\x83\x5d\xf4\xcc\x14\x4b\xff\x88\xb8\x14\x73\x80\x91\xbc\x1f\x52\xfe\x52\xb6\x25\x1f\x76\x36\xb9\x96\xb3\x5b\x1b\x1d\x57\x42\x6d\xe5\x63\xa3\xd1\x51\x31\x2d\xb2\x2a\xad\x46\xa3\xea\x28\xcb\x8a\x69\x5c\x6c\xb7\x71\x91\x91\x58\x4c\x0a\x40\x7f\x80\x73\x81\x2e\x66\xf9\x3c\x2b\x60\xe1\xbc\xe5\x15\x00\x69\x91\x55\xb0\xa8\xdb\x28\x62\xdf\xba\x9a\x7d\x56\xb0\x63\x44\xf8\x39\x98\xc6\x6c\xbb\x8d\x59\xa6\xce\x11\x28\xb9\x8c\x79\x2d\x73\x00\x52\xad\x44\xc8\x47\xa3\x58\xe5\x7e\x08\x4f\x96\xcf\x8f\xb2\x8c\x6d\xb7\xcc\x0d\xaa\xc9\xfa\xdf\x25\xdc\xf3\x2e\x31\xf9\x28\xe1\x9e\x47\x09\xb2\xda\x39\xf0\x55\x8c\x4c\x9a\x74\x23\x90\x94\x46\x2f\xdd\xe9\x4d\x03\x65\x33\x36\xef\x09\xbf\xd3\xa8\x45\x02\x48\xc8\x9e\xa9\x54\xd0\x03\xc1\xa0\xb9\x05\x71\xa3\xac\x88\xdc\xf2\x48\x2a\x51\xdb\xb5\x95\x9a\x42\xd4\x55\xb0\x76\xe4\x6a\x6b\x04\x54\xe1\x6c\x36\xaf\x7b\xdd\x51\xfc\xce\xa6\x38\x95\xb6\xd7\x92\x2a\x8f\xb1\x94\x2e\xc5\x13\xb9\x3f\xb5\x83\xd4\xfd\x8b\x6b\xef\x4a\x15\x47\xcd\xab\x85\xa0\xc6\x39\xc0\xbd\x41\xac\x91\x77\xe6\x7d\x90\x46\xa4\xf3\x55\x9c\x43\x2c\x6e\x90\x51\x4d\xc3\x2a\xcb\x7b\xaf\x10\xb6\x9e\x9d\xd5\x68\xa4\xba\x75\x44\x93\x25\x98\x56\x59\x99\x96\xa3\x51\x79\x94\x65\xd5\xb4\x9a\xc6\x79\xe0\x30\xf1\x3c\xab\xa0\x6c\xdc\x91\x2b\x56\xb0\x04\x20\x8d\x2b\x35\xe5\xb6\x00\x91\x41\x24\x5f\x58\x0e\x05\x8e\xea\xe9\x19\xa4\x55\x56\xc2\xaa\xf6\xf7\x42\x9a\xe4\x2a\x73\x42\xa6\xb1\x5a\xd1\xb7\x2f\x4c\x0a\x5e\x4b\xa0\xa4\xaf\xed\x25\x02\xbd\x9f\x5d\x01\x6a\x29\x01\xd3\xc2\x49\x0e\xbc\x7b\xec\xcb\x49\x73\xb9\x84\x41\x1e\x5e\x68\x05\xd5\x6d\x11\x0b\x55\xca\xb7\x3c\x73\x31\x57\x11\x58\x3b\x11\xb7\x3a\xef\xbb\xaf\x72\x0f\x7a\xef\xab\x34\x72\xcc\x95\xf1\x87\x4f\x61\x04\x21\x90\x6f\xb7\x31\xcf\x04\xc4\x2d\x5c\x58\x3c\x56\x17\x43\x66\x33\xf0\x61\xb1\xb9\xf5\xc4\x0a\x6d\x8d\x6e\x47\xbf\xae\xf6\x01\x55\xac\x37\xd6\x81\xad\x04\x12\x91\xd3\xca\x7b\xa7\xe3\x84\x05\xec\xd3\xfc\xca\xb8\x5b\x53\x69\xa6\x8f\x34\xca\x00\x69\x6b\x15\x66\xf2\xc0\x7f\x88\x48\x57\x83\x62\xa7\xde\x9a\x33\xd1\x73\x46\x66\xce\x3e\x11\xd7\xc7\xc1\xf7\xb3\xf8\xbb\xde\xe8\x1e\xf9\xbe\x79\x6c\xef\x1a\xa0\x95\x5f\x24\x5d\x99\x30\x94\x2f\x5f\x92\x42\xf0\x43\x87\x11\xf6\xd2\x74\x21\xac\xf8\x39\x51\x02\x31\xaf\x48\x36\xf7\x8b\x8e\x37\x0c\x5f\x4b\xa6\xd2\x6b\x6b\x18\x37\x56\x9e\xfc\xab\x74\x4c\x3f\x3e\x31\x19\xdf\x62\x1e\x3e\xa5\xfd\xfe\xff\x7e\xfd\xf2\xc5\x6b\xbb\xcc\x0c\x25\xf2\x00\x33\x94\xbc\x16\xfb\xe6\xd2\xeb\x55\x46\x92\xe7\xee\x29\x3b\xde\xbc\x45\x46\x92\x57\xcd\x41\xdb\x0f\x83\x16\x29\xd5\x24\x8f\x98\xf1\xf9\x40\x9a\x7e\xb6\xdc\xd8\x50\x46\x7a\xd8\x5a\x0b\xdf\x4d\x02\x65\xdf\x55\xd7\x7b\xc5\xf7\x8d\x65\x7b\x0b\x0b\xc7\x7a\x26\x51\xd7\x7e\xd4\xe5\x02\xde\xa1\x7c\x71\x65\x60\xf8\xaf\xe8\x36\x94\xb3\xce\x9c\x6b\xd6\xfa\x6d\xbd\x12\xcd\x4d\x6d\x14\xa9\x6f\xd1\xad\x09\xcc\x67\xab\x03\x2b\x14\x95\x26\x7a\xfe\xb8\xdd\xfc\x05\x8d\xfc\x4b\x85\x0f\x6d\x35\xf0\x4c\x0e\xb5\xe9\x9e\xf7\x88\x32\x30\x90\x1e\xda\x02\xeb\x0a\x44\x61\x6e\x6f\x9f\x10\xe3\x5c\xa2\x15\x49\xca\xb7\xea\xd9\x9d\xa0\x8a\x4d\x94\x75\xa4\x2d\x7e\xb7\x8a\x4c\xc2\x88\xe4\x68\x7e\x8d\xd6\x60\xa2\x9e\xac\xb5\x57\xd4\x7e\xbf\xfd\x6f\x55\x99\xa1\xb9\x9c\x6d\x60\x14\xf7\xa5\xf9\x18\xe3\x64\x3c\x38\xf8\x72\x87\x62\x0c\x97\x2f\xd0\x4d\x76\x74\x0a\xd1\x34\x46\x09\xd3\xa9\x52\xcb\x2b\xbc\x29\x4d\x48\x14\x49\xeb\xbf\x72\xbf\xc4\x48\x5a\x44\xdb\xe4\x5f\x12\x41\xfe\x9d\xe5\x9b\x8d\x7a\xfe\xd5\x3d\x7e\xae\x73\x5e\x48\xd4\x24\xfd\x7a\x45\x1b\x1d\x8c\xab\xc0\x88\xf0\xe7\x4b\xa3\xeb\x59\x0a\xf2\x80\x24\x0b\x8a\xd8\x02\x3d\x5f\x82\x58\x54\x05\x00\xa2\x0c\x25\x8d\xcc\x05\x86\xa0\x50\x51\xb8\xbe\xde\xae\x31\x73\xed\xaa\xef\x66\x7c\xde\xa4\x00\xd9\xdd\x97\x77\x40\x81\xbe\x80\x8d\x1d\xa5\x76\x4a\x85\x80\x5f\xfe\x55\xdc\xbc\x86\xbb\xf1\xef\xbb\xaa\x29\x70\xb6\x3e\xab\x73\x4c\x9e\x15\xf8\xf2\x8a\x3f\x6a\xad\xf3\xdc\x59\xb8\xcd\x33\xd9\x94\xa9\x9c\x77\xfa\x14\x3b\x5d\xb8\x5f\xab\xcd\x32\xe7\x28\xa0\x3d\x85\xd2\xf0\xa2\x51\x2f\x33\x44\x37\x88\xc4\x77\xbd\x9a\xa4\x26\x08\x3d\x41\x37\xc3\x16\x32\x17\x34\x84\x19\x14\x06\xa2\x14\x03\x19\x0d\x27\xc7\x82\x84\x1c\x30\x93\x7a\x4a\x25\x9c\x73\x62\x10\xaf\x37\xfc\x16\x32\x9f\xee\x93\x57\x5a\x76\xce\xda\x2c\xb8\xea\x5f\xf1\x80\x2c\x91\x76\x8e\xf2\x9b\x4d\xfe\x23\x67\xa1\x20\xd2\xb1\xdc\x1d\x8d\x70\x8b\x50\x95\xfc\xbd\xce\xdd\x11\x47\x82\x80\x10\x6c\x36\x16\x57\xc4\xec\x84\xf4\xd7\xaf\x5d\x81\x48\x4b\xb7\x10\x09\x94\x8f\x55\xc0\x34\x93\x45\xf0\x58\xaf\x2c\x72\x4c\xf1\x8e\x4e\x5d\xb8\x59\x6b\x82\xc7\x81\x99\xbc\x6d\x7f\xc6\x5d\x21\x30\x7b\xd6\x52\x35\xb7\xf4\x7b\xce\x9e\x43\xa6\x6e\x96\x55\x0e\x7c\x67\x6e\xa3\xcb\x80\x6b\x9d\xae\x83\xb8\xa7\xa1\x43\x47\x49\x41\xe9\xdb\x6a\xe3\x68\x55\x59\x1a\x8d\xb9\xed\xc7\x7a\x17\xb1\x29\x4b\xed\x8f\xb8\xa7\xa5\x25\x57\x22\x00\xa6\x2c\xed\xab\x65\xf6\x0f\xd4\xf2\x72\xa7\x7b\xc5\xd7\x02\xa8\x59\x07\xa8\xdf\x57\x05\x39\xb0\x71\x9d\xf3\x5e\x31\x92\x63\x9d\xef\xd8\xf4\xf1\x00\xe3\xdf\x3c\xc5\x72\x57\xc2\xdf\x04\x8a\x1a\x8d\x64\x44\x72\xad\xac\x84\x4b\x54\x20\x8e\x7a\x7b\x13\x2d\x7a\xc7\x5c\x4a\x8e\xb3\x3b\x9e\x96\x91\x00\x47\x38\x64\xe1\x6e\xbb\x65\xae\xd0\xa8\x34\xe5\x87\xcd\xcb\xf4\x1c\x3a\x09\xe9\xda\x16\xdf\xad\x30\x2a\x96\x1d\x2d\x4d\x97\x94\x43\x37\xc3\xef\xf2\x8d\x07\xa8\x02\x69\xb7\xad\x7e\xdb\x0f\x80\x03\xcd\x53\xa4\xf4\x4c\xb0\x91\x25\x80\x54\x54\x70\xdf\x34\x5b\x89\x25\x6f\x31\x59\xaa\x0a\x16\x57\x8e\x46\xb6\x0f\x8b\x80\xa5\xa5\x03\xf2\x79\x0d\xc9\x61\xc1\xc8\x57\xb2\x45\xb0\x7b\x55\x91\x8b\xc9\x5b\x0f\x85\x22\xdc\x40\x50\x7f\xad\xb3\x02\xce\xd0\x7c\x10\xf6\x08\x62\x6d\xd3\x1b\xf1\x46\x0b\xd2\xa0\xf3\x21\x06\x7a\x01\x6a\xce\x2d\xf5\x5a\x04\x43\x08\x80\xcf\x26\xf3\x36\x29\x22\x51\xaf\x4d\xab\x66\x61\xe0\x80\x97\x35\x60\xe5\xc2\x94\x57\xb6\x9c\x51\xc0\xf0\x03\x76\x2e\xee\x7d\x47\xec\x76\x1a\x9b\x21\x0b\x18\x2d\xda\x6f\x64\xe8\xec\xb8\x93\x15\x69\x2f\x59\x2c\x85\x7f\xdc\x3d\x6d\xe9\x8a\xc0\xe6\xd9\x4c\xfc\x3b\x9b\xcc\xa1\xfc\xff\x74\x3e\xd5\xff\x9b\x35\xa5\xfa\xf7\xdc\x1c\xd3\x4a\xcc\x50\x60\x31\x45\x7d\x74\x37\xe3\x5e\xc4\xcc\x0e\x8b\x2a\x3d\xd4\x42\x0e\xf3\xf7\xbc\x7c\x25\xdd\x52\x5a\xf1\x1f\x3f\x84\x7c\x52\x67\xad\x86\xc2\x1d\x44\xcd\x59\x4e\xca\x15\x65\xeb\xf6\x2b\x87\x57\xb1\x78\x4e\x90\x35\x08\x57\xba\x11\x3f\x96\xc8\x5e\x54\xde\xfb\x4e\x46\x76\xe0\x34\x1a\x2b\x5b\x79\x9e\x5c\x89\xe5\x4b\xb7\x8a\x5c\x1f\xa9\xe5\x09\x93\xb5\xcc\x6c\x76\xf2\x4f\x31\x8b\xd8\xe0\x96\xad\x2f\x24\xda\xca\x7f\x41\x3c\x4d\x7f\xfc\x22\x9e\xfd\xf3\x8b\xf9\x18\x80\xa9\xfa\x95\x88\x3f\xbf\x38\x01\x10\x67\x64\x76\x3a\x87\x34\x23\xb3\x07\x73\x98\x67\x64\xf6\xd5\x1c\x96\x19\x4f\x56\x2a\x52\xfa\x33\x19\xa3\xce\x99\x1c\x06\x83\x32\x8b\xcb\xac\x1c\x8d\x04\x29\x9d\x97\x25\xf0\x4d\x03\x29\x74\x34\x43\x6f\x6e\x37\x92\x93\x4f\x73\x28\x09\xf5\xb4\xa1\xd9\x25\xf5\xa7\xdc\x46\xa4\x8f\x58\x69\x7d\x63\xb8\x79\x8a\x99\x44\xe2\x86\x99\x6f\xa2\xd8\x1b\x36\x9f\x39\x25\x2d\x49\x80\x3d\xda\xc3\x44\x30\xbb\x0c\x70\xf7\x6b\x56\xd1\xbb\xae\x94\xe3\xc3\x65\x1b\x97\x88\x3f\x5a\xf0\x2a\x2f\x0c\x94\xcb\x34\x60\x58\x70\x32\x2d\x52\x20\xa3\x10\x75\x44\xa5\x59\xee\x17\x4a\x8b\x8d\x12\xa2\x96\x1c\x34\xeb\x08\x67\x28\xac\x14\x9c\x15\x19\x8e\xb9\xfc\x09\x17\x59\xbb\x5d\x5c\x34\x04\x63\xbc\x90\x42\x59\x58\xc6\x0b\x59\xb9\x96\x3e\xab\x81\x11\x5c\x7d\x26\x72\xa9\xdb\xda\x84\xd7\x52\x27\x6b\x20\xaa\xf1\xb2\xc9\xa5\xe5\x35\x74\x0d\x89\xb4\x8d\x44\x98\xa7\x45\x59\x96\xf1\xe9\x24\x3d\xad\x3b\x66\x3b\x4d\x2e\x0f\x9d\x07\xd2\xd5\x9e\x42\x92\x85\x9e\x18\x26\xd1\x8d\xc5\x55\x1e\x9a\x25\x02\xa3\x3a\x8a\x06\xd7\xc6\x98\x01\xc3\xa7\x09\x66\xc0\x72\xa3\x26\x52\xb9\x77\x90\xcd\x67\x0f\xc3\xcb\xcb\xd2\xde\x7c\x2c\xd5\x8e\x07\xd8\xc7\xd0\x80\x20\xb3\xc1\xe3\xf1\x5e\x13\x56\xd3\xbe\xc3\x7f\xde\x35\xaf\x4a\x8a\x82\xef\xf2\x6e\x23\xd5\xf0\xd4\x3a\x78\x3f\xde\x67\x77\xa1\x4e\x93\x5a\x62\x58\x41\x56\xd8\x2c\xdb\x6c\xeb\x34\x64\xa6\x01\x23\x63\x9d\x91\x46\x51\x2d\x69\x2b\x97\x64\x74\xaf\x56\xc3\xb9\xed\xa5\x21\x67\xf3\x0f\x21\x1f\xe5\x68\x32\xab\xa0\xcc\xed\x1e\xa2\xfa\xda\x16\xf8\x8e\xc3\xbb\xab\xa2\x97\x49\xff\xd8\x8c\xb7\xb5\xf3\xf3\xed\xd6\xf1\x5d\xa7\xbe\x21\xb5\x07\x9e\x4d\xad\xdc\x17\x50\x52\x87\x99\x23\x61\x16\x99\x03\xd8\xf9\x22\x00\x3d\x66\xae\x4d\x93\x67\xc6\xd0\x50\xcc\xad\x2d\x8f\x02\xd4\x29\x07\x77\x28\x21\x94\xe3\xd5\xad\xd9\x55\x75\x2b\xcc\x9e\xd9\xb9\xeb\xc8\x6d\x62\xce\x8e\x22\xd9\x05\x66\x5e\xbb\xa1\xa5\x0e\xb4\xcd\xe9\x75\x8d\x09\xd6\xd6\x19\x01\x3e\x81\xac\x7d\x67\x5d\xfb\x8c\x1f\xda\x79\xa0\x81\x51\x3f\x1d\xd8\xec\x80\xda\x8e\x59\xd3\x27\xd3\x14\x78\x31\x4e\x64\x80\xfd\x4d\xbe\x40\x56\xa0\xf9\xb7\xa7\xaf\x5e\x3f\x7f\xf9\xc2\xc9\x93\x63\x85\x2c\xac\x53\x24\x55\x76\x29\xe9\x94\xbf\xb1\x44\x12\x0e\xb7\x69\x2a\x58\x89\x13\x6c\x7d\xb0\x2c\x30\x34\xfb\x93\x96\x56\xc1\x05\x3d\xa5\xa1\xf3\x41\xfe\x56\xa6\x77\x69\xa9\x74\x78\xd0\xbb\x3c\x4e\x5d\xf9\xbb\x36\xe6\x72\x05\xbe\x60\x39\xc3\x82\x31\x68\x15\x34\x94\x59\x24\x6f\xff\xd0\x2c\xa5\x8c\x60\x95\xe8\x0d\x73\x3d\xca\xaa\xc3\x2e\x8a\xd1\x32\xf5\xa8\xbb\xac\x22\xeb\x63\xbb\xb4\xb6\x95\xb5\x92\x64\x6a\xeb\x68\xb3\xfc\xf7\xe6\x67\x18\x08\xca\xc7\xb3\xbe\xf7\x11\xb6\xa5\x34\x5a\x8b\x11\x83\x01\x1f\x8d\xa8\x8c\x89\xab\x33\x11\xe2\xec\x0e\x97\x4f\xd7\x1b\x7e\x9b\x1e\x9d\x42\x5c\x7e\x4b\xf3\x25\x26\x97\xcd\x0f\xb4\x54\x7f\xcb\xcd\x56\x7f\xbe\xce\xaf\x6d\x95\x27\x52\x74\xa3\xeb\xbc\x40\x37\xea\x8f\xbf\xe5\x05\x5e\xa6\x47\x13\xb8\xc4\xcb\xd7\x56\x40\x7a\x9b\xf2\xe4\x15\xa5\x4a\x5a\xab\xa5\xac\x49\x99\x5f\xa3\x65\xe2\xd7\x83\x26\x50\x92\xa4\x1f\x4a\xdf\x43\xaf\x86\x17\x68\x41\xd7\x48\x4d\xc8\xfb\x20\xf8\x72\xb4\xfc\x26\x5f\xbc\xf5\xcb\xa5\x38\x38\x6d\x16\x3a\x81\x8d\x88\xd7\x37\x32\x4e\x24\xca\xc3\xe2\xf7\x1b\x1a\x47\x7a\x8e\x0a\xbd\x2c\x23\x50\x43\xf1\x7e\x1f\xde\x50\x2e\x2e\x02\x75\xad\x07\x4c\xef\x0e\x6c\x6f\x1a\x42\xf9\x47\xda\x49\xbf\xf3\x21\x10\xd0\xa6\x56\xfb\xac\x57\x18\xb0\x29\xf4\x15\x5d\xc5\xc6\x51\xc8\x25\x08\x6c\xb7\xb9\xa4\x78\x7a\xb6\x47\x9c\x40\x40\x7b\xd4\x7b\x92\x81\xed\x50\xca\x07\xb5\x93\xfa\x30\xc4\x71\x6a\x98\x9c\x18\xd0\x9b\x28\x83\xfd\x94\xf4\x68\xab\xfa\x76\xb9\x86\x7a\x00\xaf\x53\xd3\x57\x07\x18\x03\x50\xac\xdb\x27\x15\x51\x84\xaf\xf8\xbb\xdd\xee\x9e\x93\x0a\x42\xf3\xae\x45\xd4\x0e\x92\xa0\x86\xb2\x43\x9e\x8a\x24\xb1\x17\x76\xbb\x8d\xdb\x74\x61\x9b\xae\xf3\xcf\x59\x9e\xb0\x64\x44\xc9\x32\x8e\x9c\x83\x8b\x00\x68\x51\x94\xe0\xae\x11\xe8\xf6\x8f\xe0\x48\xb3\x66\x7c\x0e\x3b\x13\x7d\x81\x6e\xb6\x5b\x33\x5e\x7b\x2f\x23\xc8\x41\x8d\xdd\x6c\x56\xda\x65\xd5\x84\xdb\xa0\x43\x4c\xe2\xb6\x49\x98\x8d\x58\x2e\xe5\x69\x40\x4a\xd0\xb8\x93\x3b\x07\xd5\x31\x99\xb6\x18\x20\x90\xde\xd5\x90\x03\x90\xa8\xcc\xcd\x4a\xd3\x44\x20\x4f\xe4\x03\x28\x43\xf8\x61\xc8\x01\x6f\x39\xd9\xc7\x14\x8c\x46\x91\xd3\x26\x3a\xca\x32\x2a\x5e\x1d\xd3\xcc\x14\x34\xf6\x38\x2c\xe6\x33\x2a\x85\xf6\xe2\xff\x0c\xc9\xff\x20\x87\x78\x1c\x25\xd1\x98\x3a\x61\xb9\x6b\xc1\x37\x56\x45\x01\x23\x46\xa9\xf4\xb8\xb4\xcf\x37\x3e\xec\xf9\xee\x92\x76\x3d\x0f\xb9\xad\xf8\x71\x5f\x72\xfd\x3e\x77\xbd\x52\x95\x74\x49\xe9\x00\xad\x83\xea\x12\x05\x7c\x17\xfc\x20\x33\xae\x6d\x61\x4f\xb2\x7f\xbb\x12\xbb\x91\xc6\x3d\xc1\xf5\xc1\x81\x7c\x8a\xb4\x17\x90\x33\xac\x4c\x21\x10\x74\xa1\xf8\x28\xd3\x40\xc6\xf7\x62\x8a\x1a\x2f\x8c\x14\x39\x73\x69\xcf\xa4\x11\xe5\xb5\x7d\x54\x24\x3b\x08\x83\x72\x12\x95\x44\xa7\x71\x97\x3e\xda\x39\x61\x57\xeb\x6a\x74\x6a\x9e\x78\xd3\x01\x48\xe0\x39\x42\x74\x03\xdd\xdd\x97\x2d\x39\x90\x01\x0b\x71\x42\x9f\x07\x4e\xfb\x40\xb2\x2b\xde\xd7\xa0\x31\x15\xff\xa7\xa8\xcf\xdd\xd9\x83\xb6\xd7\x98\x5c\x16\x32\xe2\x92\x72\x67\xd9\x01\x78\xc1\x23\x6c\xe4\x4d\x4d\x82\xda\xde\x71\x3d\x8d\x70\x8c\x1a\xe9\x15\x68\x3e\x29\xcf\xe1\x8f\x74\xc6\x07\xe0\x9a\x9d\xe6\x6f\xc7\xf9\x06\x7f\x22\xbf\xc7\x03\xf1\x51\x48\x30\xbe\x13\x51\x85\x40\x81\xab\x10\x5b\xa1\x43\xdf\xd9\x89\xf1\x84\x93\xe2\xc4\x03\x0f\x4f\x85\x03\x81\xf6\xeb\x1e\xdd\xbf\xef\xaa\xdb\xf5\x49\x0c\xac\xdf\xc1\x66\x52\x44\x25\x1e\x57\xf1\x92\x65\xd2\xcf\x1d\xf2\x1a\x76\x96\xda\x73\x6f\xb4\xc1\x31\xcb\x7c\xc3\x1f\x65\xdb\x20\xd3\x38\xf9\x8b\x66\x00\xe2\x8c\x37\x06\x10\x0c\x40\x9a\x39\xc6\x0a\x31\x86\x6d\x2f\x01\x1d\xb5\x42\x40\x97\x63\x19\x14\x81\xf7\x72\xe7\x0a\x3b\x3b\x7d\xf2\xc8\x2f\x61\x0d\x99\xab\x6f\x0f\x44\xa7\xd9\x2d\xc5\xfa\xd4\x53\x8e\xfe\x94\x4c\x92\x49\x14\x9c\x95\x63\xfa\xea\x62\x87\xff\x6e\x9b\xd0\xba\x26\xb2\x9d\x8f\x3e\xde\x68\xa4\x73\xff\xdd\xb1\xba\x0d\x49\xa8\x5a\x0b\x65\x99\x74\x8f\x6a\xd1\x75\x91\xb5\x24\x99\x5a\x91\x52\xca\x20\xc9\xc8\x68\x44\x76\x54\xb6\x72\xa6\x94\x40\x9c\xe1\xd1\x08\xef\xa8\x6c\x05\x4f\x29\x1e\xb8\x41\x58\xfa\x25\x5e\x44\x19\x55\x47\x4f\x5e\x47\xf7\x11\x0a\x3d\xa6\x0c\x7d\x2b\x4b\x6f\xe3\x48\x56\x1a\x0a\xe2\x3c\x82\xd4\x8a\x86\x06\xca\x2b\x42\xf5\x20\x3e\x3e\x52\x9a\x00\x8b\x21\x05\xcf\x88\x0b\x8e\x58\xd9\xb5\x92\x9c\xe9\x00\xb2\x92\x9c\x8f\x04\x0a\x58\xa4\x91\xf8\xb3\x86\xf6\x8b\x4e\xe8\xb8\x34\x9f\xed\x6f\xa7\xce\xe3\x02\xe5\xc4\x54\x50\x3f\xea\xb9\x40\x29\x1c\x2d\x82\x26\x97\xe8\x28\x53\x9b\x6c\xa3\x91\xd5\x70\x41\x8b\x6a\x4d\xc4\x1e\xbe\xa1\x4f\x44\x4f\x81\x76\x6a\x99\x4a\x4d\x91\x2c\xf2\x0d\xe6\x0a\x87\x78\xe5\x15\x59\x22\x56\x2e\x28\x13\xa8\xd5\x7a\x5c\x9f\x9c\x9f\x5c\xc2\x68\x18\x81\x84\x33\xbc\x96\xfe\xc6\x6a\xc4\xf2\x19\x65\x32\x15\x74\x18\xdf\x41\x96\xd9\x6d\xb2\x9b\xf0\x7c\x19\xd5\x73\x48\xb2\x09\xc4\x1e\x31\xe1\xc5\xbd\x71\x51\x57\xc0\xd2\x43\xa7\x48\x26\xe3\xf1\xd7\xb8\x41\x73\xdf\xe2\x35\xe6\xbe\x09\x59\x9e\xf1\xa4\xbd\x39\x31\x05\x03\xa6\xd4\x15\x6a\x72\x54\xcd\x2c\x97\x0a\x77\x26\x6d\x5e\x95\x41\x5c\xd9\x52\xdc\xe1\x55\xdc\x8e\xca\xf8\xf0\x41\x63\xfd\xa5\x02\x88\x3f\x36\x56\x7c\x7f\x45\xb7\x03\x99\xc7\xf9\xce\x28\x0e\xb5\x46\x5c\xde\xd3\x34\x4e\xfe\x0b\x9c\x80\x81\x4e\x60\x46\xe4\x8b\x42\x66\xa7\xf3\x26\xd3\x53\x43\xd7\xea\x98\x13\xc9\x06\xa1\xb7\x8f\x0a\x15\x74\xd4\xce\xf2\xb1\x5c\x9f\x34\x2e\x28\xfb\x0f\x62\x02\x49\x76\x87\x4d\x7a\x4d\xbd\xcd\x58\xb0\xd7\x0d\x21\xd5\xa3\x40\xc4\x2a\x1f\xf5\x78\xfc\x35\xef\xdd\x6c\x32\xc3\x73\x2f\xe4\x11\x16\x9b\x49\x9c\x69\xfe\x55\x07\x71\x0c\x4c\x71\x36\xb7\x2f\xf1\xa3\x78\x26\x66\x35\x07\x7b\x67\x85\x1c\x3b\x56\x79\x98\x48\x1e\x5f\x17\x5a\x3c\x75\x93\xa8\xd8\xd1\x7e\x8a\x37\xdc\xce\x53\xdd\xf8\xc0\x76\xaa\x4e\xee\x94\x44\x06\x99\xac\x9d\xe2\xca\x03\xd8\xdc\x75\xf3\x25\x24\x4e\x1a\x8d\x8e\x3a\xed\xe4\x95\x4f\x8f\x76\xb4\xaa\xfd\xb3\x0e\xd2\x37\xd1\x45\x91\x2f\xde\x46\xcd\xa6\xb9\xa3\x4c\x79\x16\x5d\x32\x84\x48\xb4\x7b\x72\xb1\xec\xa7\x12\x84\x11\xb7\xd9\x7c\xd5\xb8\x41\x23\x57\x1b\x78\xc2\xc6\x42\xd1\xa7\x07\x0d\x56\x0c\x0d\x34\x17\x84\xc8\xde\x33\x25\xcd\x99\x0e\x9a\x04\xfb\x03\xd2\x3d\x5e\x62\xa2\x79\xb9\xd6\x37\x31\x4e\x6e\x58\xbe\xd1\x76\xad\x08\x80\x7a\xd0\xc9\xec\x2c\x43\xf9\x51\x01\x32\xed\xd0\xc3\x3a\xc8\xaf\x9f\x3e\x47\xd5\x76\x43\xdb\xbb\x6f\x42\xd0\x1c\xcd\x9c\x86\x8a\xa6\x52\x83\x7e\x0a\x43\xbf\x3c\xdf\xd3\x4d\x55\xe4\x1c\x2d\xd5\xc4\x1f\x29\x8e\xf1\xc0\x60\x71\x3b\xfa\xd8\x19\x40\x4e\x6a\xbd\xcb\x83\x87\x51\xd5\x77\xf6\xe8\xd9\x3d\x1f\xdc\xb1\xd7\x6a\x67\xff\xdf\xe5\xe4\xf6\x7e\x7b\x63\x5b\xec\xec\x57\x07\x39\xbe\x5f\xd7\x6e\xa3\x43\x7a\xbf\xff\xe4\xdb\x0d\x0f\x19\x45\x7d\xbf\xef\x10\xaa\xd5\xce\xfe\xdf\x07\x32\x0f\x85\x44\xa7\xde\x77\x39\xc9\x2f\x11\x7b\x9f\x21\x74\xd3\x03\x46\x52\x04\xe1\xbd\x46\x10\x4d\xf6\xf4\xdc\x58\xcd\xde\xa3\xef\xa6\xd1\xee\xde\x8d\x78\xfe\xf0\xae\x4d\x8b\x9d\xfd\x36\xc6\xb8\x07\x76\x6b\x1a\x1c\xd4\xeb\xfb\xc0\x4c\xa0\xed\xce\xb1\x8c\x6f\xcc\xc1\x03\x98\x06\x3b\x7b\xed\xfa\x05\x1c\xdc\x7f\xb7\xe9\xce\x91\x1a\xfd\xc1\x33\x7a\x38\xd8\x7b\xad\xf6\xf4\xdf\x80\x98\x84\x87\xfb\x0d\xd3\x6d\x7c\xf0\x68\xe5\xfb\x8e\x54\xea\x51\x8c\x75\x25\x83\x28\x79\xf2\x5a\xaa\xc5\x9f\x08\x4a\x5b\x3f\x78\xd2\x8a\x10\x9b\xfc\x3c\xbd\xee\xb5\xcf\x9e\x3e\x7a\xf3\xc3\xab\xa7\xaf\x9b\xaa\xbd\xc9\x5b\xfa\xd7\xd5\x23\x09\x08\xf3\xfd\xda\xb0\xac\x9f\xed\x37\x15\x3e\xae\x25\x41\x6f\x03\xc3\x85\xdf\x3f\xfa\xec\xce\xf5\x95\x27\x48\x53\x10\x7b\xd6\xa9\xea\x7d\xae\xd5\x3e\xba\xa0\x8c\x6b\x63\xfd\x43\x29\x28\xdb\x64\x27\x70\x6b\xb8\xbb\x67\xdf\x4e\xa3\x3d\xf1\x7c\xc9\xaa\xc0\x8b\x7b\x4e\xdd\x6b\xb5\xb3\xff\x67\x94\x5d\xe0\xe5\x12\x91\xfb\x0d\xe0\x37\xdb\x43\xfe\x5d\xe7\x85\x75\x94\x38\x98\xfa\x6b\x1a\xed\xec\xfd\x05\xe5\xcf\x68\x45\xee\xd9\xbd\xd7\x6a\xf7\xa3\x25\xc9\xfd\xfb\xf5\xee\xb4\xd9\xd9\xb7\x4e\xd8\x71\xbf\xce\xdd\x46\x3b\x7b\xff\x81\xe4\x15\xbf\xa2\x0c\xff\x8c\xee\xb9\x3b\x9d\x96\x3b\xc7\x51\xd7\x5d\xd9\x85\xd1\xbf\xe4\xe5\xd5\xc1\xe3\x74\x5a\x1e\x30\x8e\xa8\xf6\x86\xde\x8f\x78\xe8\xb4\xdc\x8f\xc3\xac\xfa\x65\x2f\x16\xeb\x51\xd4\xfc\xf6\xd0\x36\x43\x25\xdf\xbf\x5c\x59\xeb\xb7\xba\x54\xce\x77\x3c\xbf\x21\x79\xf9\xaf\x66\x69\x62\xea\xbd\xeb\x0a\xd8\xf2\xee\xd1\x18\x74\xc2\x6f\x60\xb2\x2a\xd0\x82\x3b\xa9\x2e\xb5\x46\x92\x57\x9b\x63\xeb\x89\xec\x7f\x6c\x32\xa3\x1d\xcb\x21\x8e\x4b\xc4\xae\xf1\xa2\xa3\xb0\xb0\x4a\x2c\x4f\xef\xd9\x53\xa5\x47\xeb\x61\x89\xa7\xdd\x77\x70\x07\xcc\xee\xa2\x41\xfa\x66\xd3\x3f\xcd\x9e\x11\x5b\x35\xfa\xbf\x06\xa6\xd4\xaf\xaf\x51\x16\xc5\xb0\x82\x05\x5c\xc0\x15\xbc\x82\x4b\xb8\x81\x6b\x78\xdd\x82\x4e\xbc\x8a\x3f\x40\x67\xe5\x05\xa3\xd5\x3a\x11\xeb\xb4\x75\xfa\x63\x12\xcf\x26\xc7\xff\x6b\xbe\x3d\x9d\x4d\x8e\x1f\xcc\xc1\x8f\xc9\x09\x70\xf2\x1d\xa9\x56\x3a\xe3\x51\xa3\x5e\x19\xea\x14\x3a\xe5\x30\xe7\xc3\x02\xe5\x25\x57\x35\x87\xa7\xc9\xe9\x57\xc9\x04\x0e\x2f\x2a\x3e\xbc\xa5\xd5\xf0\x2a\xbf\x46\x43\xe3\xdc\xa0\x07\x1f\x47\xc9\xf0\x7b\xd1\x08\x0d\xab\xcd\x25\xcb\x97\x48\x54\x65\x43\xad\xed\x1a\xd2\x95\xea\x0c\x0e\xf9\x15\x22\xb6\x4e\x33\x7a\x12\x81\x01\x4b\x9e\xbc\xee\x78\x63\xc9\x42\x57\x50\x93\x31\xef\xa7\x57\x41\x67\xb0\x63\xfe\x6f\xaf\x8a\x15\xc5\x34\xb5\x6c\x91\xaa\xa8\xbc\xbf\xae\xfd\x19\x58\x5e\x3c\x63\xcd\xdf\xea\x93\xb8\xee\xd9\xb5\xfc\x4f\x15\x28\x31\x5b\xa6\xf7\xb8\x54\x85\x9e\x88\x2c\x63\xfe\x6f\x55\xc5\xf0\xcd\x19\xb3\x7f\xaa\x0f\x86\x5b\xaa\xfc\x39\xb9\x74\x69\xb6\xf2\xbf\xb9\x34\x59\xb6\xf2\x7e\xaa\x0a\x2e\x69\x92\xad\xbc\x9f\xba\x77\x4b\x51\x67\x2b\xe7\x87\xfa\xd8\xa1\x3a\xb2\x55\xb7\x4c\x55\xf5\xa9\xcf\x6c\xd5\x2a\x50\x95\x3c\x1a\x2f\x5b\xf9\xbf\x55\x15\x8f\x4c\xce\x56\xfe\x6f\xbd\x81\x0d\x2d\x97\xad\xdc\x5f\xea\x73\x87\xb4\xc8\x56\xdd\x32\xb7\xaa\x43\xed\xd8\xaa\x4e\x99\x1d\xd4\xb8\x05\x5e\xf9\x67\xe0\x71\xba\xcc\xfb\xa9\x81\xaa\x11\x90\x08\xb0\x6a\x7e\x79\xe7\x1b\x92\x0a\x67\x6c\xd7\x57\x0d\xc7\x0e\xa4\xb7\x40\xbc\x2b\x72\xf3\xc7\xd7\x85\xba\xf2\xd3\xd7\x6f\xcc\x2a\x16\xfe\x0a\xbf\xa9\x70\xb1\xfc\xe1\xd5\xb7\x32\xd5\x4b\x56\xf9\xbf\x07\xb6\xb5\xb3\x45\x6b\xbf\x83\x96\x5f\xe5\xa6\xfb\xf5\xd1\xf7\xcf\xcd\xe0\x45\xf0\xab\xd3\x7c\xe9\x57\xb0\x9e\x0f\x59\xde\x3a\x98\x9c\xa3\xe6\x63\xe9\xff\xd6\xa7\x2a\x95\xaa\x6e\xa5\x56\x89\x86\xdb\x4a\x60\x30\xb7\x5a\xab\x44\xef\x13\xa5\x05\xca\x89\x5b\xaf\x5d\xa4\x51\xc7\xfa\x02\x2d\x97\xe6\x30\x4b\xb5\xaf\xeb\x60\xb1\x6a\x70\x81\x0a\x4a\x2e\xcb\x37\x34\xbb\x6e\xfe\x56\x9f\xae\xf2\x52\x1c\x7b\x76\x6d\xfe\x32\x67\xdf\x88\x69\xe4\xa9\x37\x3f\x55\x05\x15\x16\xc7\xea\x42\x1b\x67\x57\xfd\xb9\x21\x25\x24\xae\x7e\xad\x08\x89\x26\xd0\x49\x0f\x21\x25\x1a\x1f\x24\x95\x6b\x52\xa0\x9e\xb6\xd2\xa3\x9e\x42\xf5\x1a\x06\x25\x74\x4a\xd9\x24\x80\xfd\xc9\x6b\xc7\x5e\xe6\xb6\x8f\x0c\xeb\xa3\x87\x3e\x9f\x89\x0c\xb8\x8b\x4d\x5c\x90\x29\x4a\x91\x13\x44\xc6\x8d\x16\x22\x66\x95\x6a\x2d\x72\xd8\x76\xc6\xc4\x6c\xfb\x4d\x12\xcb\xfb\xf8\x00\x4f\xaa\xf8\x2b\x59\xa3\xbd\x68\x07\xaf\xd2\xb6\xd8\xc9\x35\xeb\x7b\x7a\x70\xaf\xba\x7e\xef\xde\xb9\xc4\x71\x2f\xc3\xd1\xd4\xf9\x0d\x40\xc8\x60\xe7\x2a\x55\x86\x6a\x81\x28\x8f\x95\x74\xdd\x24\xf9\x3f\x60\xf5\xbf\x6a\x66\x39\x84\xff\x0f\x38\xf5\x43\x44\x23\x21\x3e\xe9\x57\xba\x0b\xfb\x50\x45\x37\x22\xe5\x81\x8b\xfe\x3d\x2c\x78\xb7\x44\xe8\x37\x02\xe7\xfb\x17\xdc\x12\x71\xec\x73\xf4\x0c\x0b\x57\x3e\x9f\x9c\xe0\xfd\x85\x1e\x21\x31\xcb\x2e\x79\xc3\xa7\x21\x50\x8a\x0c\xc1\xc2\xf1\xd6\x95\xa6\xba\x7a\xd6\xe9\x3a\x17\xa8\x95\x7b\x8c\x0d\x80\xbe\x5b\x58\xd3\xb4\x71\xd2\xb8\x50\xa4\x6f\x04\xab\x0e\x15\x2c\xe6\x11\x6a\xb2\x94\x87\x59\xf9\x94\x7a\x5f\x65\x22\x49\x70\x51\xbd\x45\x8c\xf7\x35\x50\x49\x46\x45\x83\x16\x91\x0f\xea\x18\x81\x60\x90\x2b\x4c\xc4\xfe\x6e\xb7\xe6\x2f\x4c\xc9\x80\xab\xe8\xab\x48\xa5\xc7\x91\x9e\x72\x2c\x32\x59\xa7\x60\x9b\x96\x83\x4d\x75\x46\x2b\x09\xab\xfb\x6b\xba\xfb\xdf\xdf\xa0\x77\xd6\x66\xf1\x2f\x55\xd4\x63\x6d\x02\x2a\x56\x41\xbd\x12\x67\x29\x2e\x0d\x71\x57\x4a\x13\x79\x4e\x49\x7a\x74\x5a\xbb\xf3\xb2\x53\x6a\x57\x71\x37\x3c\x14\xfa\xae\x89\x92\xd4\x5f\x57\xdd\x0e\x1a\xae\x68\x80\x51\xd7\x2a\xf7\xd4\x6a\x2e\x62\xbe\x7f\xe0\xa6\x32\x69\x2a\x57\xe2\x4a\x64\xad\x2d\x87\x71\x25\xa8\xb1\xa9\xfc\x37\x2e\x40\x5a\x75\xe2\x2b\x15\x00\x88\x8d\xf6\x46\x72\x7b\xb0\x86\xdb\x3a\x9e\x00\x2c\xc4\x31\xaa\x7c\xba\x3d\x74\xbf\x6e\xb9\x5b\x96\xfc\x1b\x45\xf5\x8e\xf8\xf9\x80\x47\xed\x13\x39\x04\x7e\xbe\xe5\x7e\x36\x77\x07\x1d\xc5\xd1\xf1\x7f\xf8\x2a\x39\x7d\x90\xfc\xa9\xeb\x00\x81\x0a\x24\x9d\xdf\x54\x4a\x78\x9b\x19\xde\x94\x7f\xa2\xa9\x6a\x67\xb1\xee\x1e\x76\xec\xb9\xdb\xe9\xbe\xbd\x64\xe0\xad\xb8\x09\x43\x6c\x82\x10\x3a\x15\x43\x86\xb1\xb3\x39\x24\x32\x18\x6a\x76\x74\x0a\xa9\xd9\x2d\xce\x6e\xad\x9f\x6e\x0e\xcb\x0c\xcd\x5a\xfd\xcf\x63\x70\x76\x14\x93\x2c\xce\xb3\x32\x21\xe8\x1d\x8f\x01\x48\x96\x94\x20\x15\x55\x52\x5a\xa9\xe6\x2a\x1b\x3b\x80\x47\x7c\xbb\x65\xda\x08\xfd\x28\xcb\x38\x38\x13\x43\x82\xb3\x7a\x21\x25\xf8\x15\xb8\xc3\x62\x0a\x34\xab\xea\x15\x26\x79\x51\xdc\xde\x89\x09\x1c\x91\xd1\xa8\x4c\xd4\xdc\x9b\xbf\x62\x60\x2b\xe1\x55\x8c\xb5\x9c\x9f\x5a\x4b\x74\x56\xcb\xe5\x0d\x1a\xf9\xbf\x40\xf0\x5a\xfa\xaf\xc5\xc2\xc3\x9c\x73\xb4\xde\xf0\x21\xa7\x43\x19\x00\xb3\x5a\xf0\x8a\xa1\x21\xa1\xe4\x58\xae\xf0\xa2\x40\xd6\x87\x27\x02\x75\x1d\x3b\x81\x81\x58\x0c\xee\xea\x76\xee\xe7\xbf\x48\x60\xb1\xde\x18\xef\x99\x80\x8f\xe7\x97\xd2\x97\x99\xe9\xd0\xca\x74\xbd\xa1\x04\x11\xae\x0a\x6b\xa8\xdd\x4b\x3b\x46\xd5\x2c\xe3\x31\x82\xa7\x60\x36\x91\x79\xd4\x59\x96\x65\x6e\x7f\x5e\x54\x3d\xaf\x53\x99\x84\x44\x53\x03\x47\x36\xf0\xa4\x4d\x58\xc4\xaf\xd0\xd0\xcc\x71\xb8\xc9\xcb\x12\x2d\xc5\x96\x89\xe2\x9f\xf4\xad\xf8\x69\xa8\xee\xc9\x70\x5d\x95\x7c\x78\x81\x86\xf9\x50\xf7\x27\x81\x88\x8c\xb3\x68\x18\xdf\xd2\xca\x34\xff\x29\x1a\xb3\x71\xf4\x13\x88\xf4\xe1\x63\x70\x57\x3b\xaa\x1a\x79\x4c\x04\x78\x6e\x05\xcd\xae\x44\xc7\xcb\x5b\x92\xaf\xf1\xc2\xde\x49\xb3\x52\x6f\x55\xd3\xc0\xee\x75\x9a\x1e\xe7\x05\x8f\xd2\x43\x6a\x46\x21\x24\xb6\x42\x7c\x71\x75\x92\xff\x2b\x6f\xe9\x36\x65\xf9\x47\x8f\xb7\x12\x70\x37\x63\x4e\xc6\x05\x8b\x6e\x81\xfc\x90\xf0\x2b\x44\xe2\x96\x8b\x2a\x4a\xe8\x5b\x8b\x31\x12\xf1\xd2\xc7\xe6\x92\xa0\x3a\x20\x68\x53\x0b\xec\x9a\x4b\x7d\x5c\x2c\x8d\x4b\x57\x8b\xf2\x0a\x95\x1b\x4a\x4a\x14\x8a\x71\xf7\xa7\xc9\x69\x96\x65\x48\x7a\xfc\x57\xa5\x8e\x89\x67\x34\x2b\xbb\x1b\x7e\xd5\x69\xa8\xf1\xc0\xce\x66\x0f\x1e\x74\x9a\x7d\x93\x2f\x5f\xa1\x7f\x57\xa8\xe4\xbb\x07\x9c\x74\x5a\x1a\xfd\xce\xee\x76\x7f\xea\xb4\xfb\x33\x25\x68\x67\x9b\xd3\xee\x58\xae\x22\xab\xd3\xc2\xb5\x35\x13\x0d\x55\xe8\x7c\xd1\xcc\xe8\x97\x76\x4f\xf1\x7f\x75\x86\x73\xd4\x4e\xbb\x9a\x9a\x46\x5f\x67\xff\x63\x32\x91\x51\x78\xe5\xcf\x87\xff\xef\x64\xd2\x07\x7c\x52\x96\x55\x1a\xa6\x51\x15\x86\x6e\x1b\xf4\x5a\x55\x1c\x17\xe5\xc9\xba\x22\x97\xc7\x9a\xc8\x3f\x5e\x51\xdb\x3a\x50\x75\x89\x38\x62\x6b\x4c\xd0\xf1\x05\x5d\xde\x1e\x6f\x94\x92\xf4\x7e\xc9\xda\x0d\xcb\x71\x57\x0f\xdc\x98\x8c\x01\x77\x30\xc7\xc5\x67\xc6\xe6\x99\x0c\xdc\x79\xef\x74\xe2\x10\x25\x57\x28\x5f\x22\x56\xbe\xa1\x5a\x07\x8c\x61\xfb\x4d\x92\x52\x33\xeb\xa3\xa8\xeb\xeb\x58\xde\xf7\x4f\x11\x5b\x43\x81\xec\x34\x23\xe5\xe7\x5b\xb6\x99\xad\xc8\x76\x7b\x57\x0f\x70\x52\x31\xc1\x47\x63\x19\x1d\x2f\xe3\x83\x76\x06\x7b\x9d\x52\x52\x4d\x28\x02\x03\x3a\x1a\xc5\xd8\x2c\x48\xd7\xd3\x31\xf6\x6d\xb1\xe8\x19\x52\x60\x1c\x21\x65\x66\x49\x8b\xf4\x6c\x8a\xa7\xe8\xcf\x4f\xdf\x88\x37\x21\x4f\xd6\x88\x5f\xd1\xe5\x76\x7b\x94\x27\xe2\x54\xb7\x5b\x1b\xc3\x3c\x37\x5d\x8e\x46\xb1\xfd\x7b\x16\xe9\x34\x9b\xc7\x6f\x74\x1c\x3f\xe7\x93\x4e\xfe\xaa\xf3\x27\x82\xed\xb6\x69\xd7\xf4\x26\x27\xd8\xdb\x5f\xe6\xc6\x93\x97\xd2\x91\xb3\xe1\xe2\x2a\x67\x25\xe2\x59\xc5\x57\xc7\xff\x33\x02\x30\x57\x5b\x1c\xcc\x65\xad\x7c\x8a\x20\xcd\xee\x2a\x56\xa4\x08\xaa\xe5\xa5\xbc\x86\xb9\x7a\x00\x9d\xc3\xd1\xed\xbc\x48\x89\xe7\xe2\xbb\xc6\x5d\x71\x0e\x12\xf5\xf8\xb6\x47\x52\xcf\x01\x96\x9d\xa9\xa7\x18\x8b\xe3\x95\xd1\xfa\x21\x02\x75\xe0\x65\xf1\xec\x96\x5f\xbd\xfe\xdb\xf7\x82\x0f\xbc\x8a\xef\x98\x46\x05\x29\x82\x9b\xfc\xb6\xa0\xf9\x32\x95\xd1\xeb\x9d\x87\x4a\x79\x28\x75\xbb\x6c\x98\x77\xd5\x85\x0c\xa3\xa4\x3b\x11\x04\x0b\x77\x5e\x32\x35\xd7\xd7\xd5\x62\x81\xca\x52\xce\x96\x41\x6a\xde\xb5\xf6\x42\x98\x1a\x12\xba\x9b\xb1\x23\x53\x88\x40\x11\x66\xcb\x90\x80\x69\xb1\x05\xd0\x2b\x4f\x0f\x7b\x90\xd5\xc1\xea\x59\xa6\x5d\xb4\xa2\x2e\x08\x4a\xae\x72\xb2\x2c\x2c\xbe\x8f\xb9\xc6\x91\x10\xc7\xdc\x00\x16\x50\x09\xbb\xf4\x4c\xe9\x68\x44\x05\xc6\x77\x0c\x23\xa6\xce\x51\x30\x19\xf6\x33\xa6\x20\xa5\x35\xdc\x08\x68\x7b\xa6\x26\xaf\x06\x78\x46\x59\x3b\xd7\xbd\x9f\x31\xcb\x20\xe9\x37\xe8\x1d\x57\x6b\xe8\xd6\x57\x41\x6e\x25\x89\x41\xcd\xa9\x50\x7d\x4b\xc5\xb1\xf5\x0d\x1a\xbb\x30\x7a\xe0\xd2\x75\x7f\xde\x5b\x23\x53\x24\xca\xb4\x34\xbd\x54\x9a\xb8\xb7\x9f\x94\x86\xf9\xbe\xc8\x31\xd1\x78\x38\xf0\xe4\xce\x54\x74\x21\xcd\x90\xcd\x05\x82\xd2\xc3\xd8\x60\x73\x89\x89\xca\xaa\x25\x4c\xbd\x04\xd9\xce\x27\xeb\x97\x09\x77\x80\x12\x2e\x19\xc0\xd6\x4d\x6e\x9c\x89\x15\x27\x90\xfd\xef\xd7\x2f\x5f\xa8\x03\x8c\x19\xd0\xe4\xbf\x02\x9c\xa3\x98\xba\x21\x13\x5e\xdf\x12\xae\x41\xcd\xd8\x71\x51\xed\x59\x69\x20\x72\x70\x24\xe8\xd9\xed\xf6\xc1\xe4\x4f\xca\xc7\xfc\xc1\xe4\x7f\xa8\x3f\xa2\xbf\x3c\x7d\xf4\x24\x12\x6c\xa6\x7e\x03\xa6\x0b\x4a\x4a\x5a\xa0\xe4\x26\x67\x24\x8e\xde\x5c\xe1\x72\x68\x50\xcb\xf0\x26\x2f\x87\x95\x74\xb1\x10\x8c\xcd\x05\x1a\xca\xf9\x2d\x87\x79\x39\x14\x48\x3a\x89\x20\x03\x29\x31\xa9\xb9\x8d\xc3\x67\x3f\xbd\xbc\x9b\xf8\xe8\x4a\xef\xdd\x56\x56\xbc\x73\xfc\xef\x0a\xb1\xdb\xe3\x4d\xce\xf2\x75\xbb\xaa\x82\xe5\x8f\x1f\x1e\x3b\x24\x0c\x77\xb3\xd0\xeb\xf7\xf8\x6e\xc1\xd0\x12\x11\x8e\xf3\xa2\x4c\xa3\x32\x5f\xa3\x63\x95\xe2\x3a\xaa\x21\x92\xd1\x8c\x88\xde\xf6\xcc\xfe\xb5\xdd\x12\x49\x09\x6c\xb7\xf2\x79\x06\x09\xa7\x3f\x6c\x36\x88\x3d\xce\x4b\x14\x03\xf1\x26\xe4\x3c\x07\x82\x13\xd5\xaf\x77\xd3\x50\x1d\xa6\x53\x24\xc1\xc5\xcd\xae\xa0\x5b\x6b\xe9\x82\x25\x44\x04\xba\x6e\x82\xcb\x4f\x23\xf0\xf5\xf1\xe9\x34\x1a\x45\x69\x34\x8d\x06\xf2\xeb\x38\x8b\xa2\x31\x1e\x4b\x64\x6d\x77\xfe\xff\x88\x8d\xff\x5e\xee\x3b\x30\x5d\xd7\x32\x9b\xa1\x24\x38\xbc\x9b\x6e\x2b\x4c\x89\x24\x31\x14\x7c\x2b\xe6\x17\xaf\x6e\xcd\xd7\x54\x7f\x55\x3f\x9b\xe4\xbd\x3b\x01\xa8\x0f\x14\xfa\x00\x28\x04\x15\x1f\x0e\x13\xa1\x6d\xc9\xf0\xef\x2d\xa8\x27\x24\xd9\xc9\x8f\xb3\x1f\xe7\x5f\x9c\x04\x28\x7a\xec\x84\x9c\xb6\x5f\x51\xdc\xa4\xe6\x84\x05\x5c\x0c\x64\xe6\xcc\x8e\x84\xae\x04\x60\x45\x59\x5c\x65\x13\x99\xe2\x57\x41\xe8\x59\xf5\xb0\x38\xab\xc6\x63\x40\x12\xae\x68\xb1\x29\x8d\x31\xcc\x61\x39\xab\xe6\x20\x45\x71\x3e\x8e\x66\xd1\x38\xf6\x22\xd2\xc9\x6f\xd3\x2a\x8d\x22\x30\x8e\xe6\x91\xaa\x6b\x13\xc1\x4a\x10\x6e\x81\xa6\x1e\x7b\x31\xc4\x64\x58\x02\xd3\xeb\x42\xb7\x5e\x98\xd6\x7a\xe8\xa6\xaf\xfb\xac\x40\x34\x16\x33\x91\x3c\xa4\xfa\x4b\x09\xfc\x54\x6f\xde\xf8\x0b\x3d\xaa\x21\xdb\xea\x38\x8a\x20\x02\xc9\xbf\x28\x26\x71\x34\x8a\x9c\x00\x1e\xff\xcf\x83\xc9\xc9\x25\x8c\xc6\x11\xf0\x22\x69\x6b\x5a\xd8\xa6\x25\x1a\x8d\x74\xb8\x37\xf9\x27\xcb\x22\x19\x23\x29\x94\x47\x65\xca\x62\x90\x32\x88\x66\x48\xaf\x60\x9e\x21\xb2\xa0\x4b\xf4\xc3\xab\xe7\x8f\x8d\xe8\x27\xe6\x60\x1c\x65\xd1\x38\xf0\x85\x01\x37\x84\x75\x37\xb4\x9f\x35\x4f\xef\x8f\x5b\xdd\x54\x29\xf0\xc5\x49\x79\x5b\x72\xb4\xee\xf9\x88\xde\xf1\x13\x2d\x41\xfb\x44\x52\xa4\x57\x55\x81\x4a\xf1\x92\x62\x72\x59\x15\x39\xc3\x3f\x23\x41\xa9\x15\x15\x93\x97\xdd\x18\x5b\xf3\xe4\xb9\x99\x98\xdf\x92\x7b\x3f\x7b\x54\x06\xca\xfa\x39\x7a\xde\x98\xee\xdf\x85\x55\x05\xea\x79\x59\xa2\x0d\x43\x0b\xc1\xa8\x2a\x0b\xed\x66\xec\x21\x2e\x87\xf6\xeb\xd2\x5a\x5d\xa3\x77\x82\x9d\xc2\xbc\xb8\x4d\x87\x78\x2d\x76\x7b\xd8\x34\x59\x31\xba\x1e\x7e\xd9\xda\xdd\x2f\xcf\x22\x78\x74\x0a\xef\xf0\x32\x6d\x6f\x7c\x72\x59\xd0\x8b\xbc\x28\x23\x58\x11\x8e\x8b\x34\xfa\xca\x84\x48\x72\x36\xa1\xdf\x92\xc9\x0d\x4b\x03\x23\x67\x5b\xef\xbb\x68\x4d\x02\x3a\x3d\xc4\xe0\xf0\xf5\xdf\x0d\x9d\x86\xc3\xfa\xa3\xee\x82\xd3\xf3\xa1\xfb\x60\x01\xea\x3d\x77\xc1\xb6\xbf\xdf\x1e\xd8\x66\x1f\x79\x07\x6c\xbf\xb5\x47\x2f\x39\x00\x02\xdd\x4b\xe4\x34\x80\xfe\x55\xf3\x36\xb3\x7d\x2b\xfd\xbb\xb5\x03\xd5\xb4\x50\x85\xc0\x39\xbd\x98\x26\x84\x4f\x7c\x6c\x72\x16\x1f\x4d\xb2\x4c\x93\x7a\x4f\x5f\xfc\x2d\x79\xfa\xff\xbd\x79\xfa\xe2\xc9\xf9\xf7\xaf\x5e\xbe\x79\xf9\xe6\x1f\xdf\x3f\x7d\xbd\xdd\xee\xf8\xa8\x8f\x0c\x8c\x46\x3d\x4e\x1e\xe6\x48\x6d\x8e\xd8\xf7\x81\x8e\x76\x27\xbf\x2e\x08\xe9\x2c\x20\x9e\xb8\x00\xa1\xf3\xcb\xd5\xfd\xb7\xa7\xbb\x47\xef\x85\x49\x3a\xbb\xf4\xab\xc3\x26\xe1\x9d\x72\x46\x73\xf6\xaa\xcb\xd2\xfb\x00\x6e\x94\xb4\x0e\x38\xed\x78\x7d\x7b\x9e\x5c\xcd\xb4\xe5\x6f\x91\xd6\xfd\xee\xe3\xaf\x2c\x5d\x62\x94\x2b\x1d\xd5\xac\xd5\x9e\xf2\x6c\x02\x59\xa6\xcb\x0d\x97\x72\xc6\x1f\x9a\xbf\xcf\xf8\x78\x0c\xd8\x8c\xcf\x55\x66\x62\xab\xc4\xd4\x7f\xa8\x8e\xc5\xde\xc7\x08\xbc\x8f\x98\xd8\xe0\x29\x5f\x60\xea\x8b\xad\x34\xcf\x84\x6e\xe2\x67\xba\xdc\x01\x9f\x0b\x4c\x4c\xf4\x01\xe5\x50\x31\x13\x64\xd7\x5c\xd0\xdc\x8b\x9c\xc7\x62\x07\x40\x13\x14\xf9\x41\x96\x65\x58\x2f\x6d\x34\xc2\x3a\x74\xd9\x0d\xe6\x57\xb4\xe2\x8f\x69\x45\x78\xca\x66\x91\xfe\x7d\xbc\x10\x05\xd1\xdc\xc7\xaf\x7e\xa8\x03\x12\x63\x00\x02\x92\x9d\x30\x18\x78\x37\xe6\x33\x00\xc2\x27\x38\x10\x4f\x8a\xe8\x5d\x0a\x34\x9b\xcc\xf7\x6f\x85\x21\x2e\x0f\x23\x42\x4f\xf6\x6d\x89\xff\x82\x1c\xd2\x15\xa6\x24\x94\x7b\xe4\xa3\x93\xaf\xcd\x5b\xdb\x26\x65\xed\x8b\xdc\x90\xb2\x26\xa0\xac\x9d\xb8\x4c\x47\x69\xcb\x63\xe2\x1a\x47\x35\xed\xdd\x24\x69\xee\x18\xac\xf5\x86\x37\x73\x61\xde\xbb\xef\x4d\xd9\x8e\x71\xd0\x09\x7a\xdb\xf9\xc9\x05\x7b\x77\x6a\xd6\x65\x3a\x9b\x9d\x7c\x71\x02\x23\x31\xce\xec\xa4\xfc\xe2\x04\x9b\xbf\xff\x19\xe7\xef\xb6\x82\x65\x05\x58\x15\x7f\x71\x8a\xd4\x97\x98\x2e\x38\xdd\x6c\xaf\x31\x03\x95\xf9\x84\xdb\x5f\xb0\xff\x21\x2f\x70\x5e\x6e\x95\x2c\x6f\x7b\x41\x49\x55\x82\x56\xa7\x17\x15\x30\x9d\x95\x4d\xd9\x6a\x95\x17\x5b\x4e\xd7\x39\x07\x54\x7f\xa5\xe6\xeb\x8c\xe3\x39\xa8\xd6\xba\x38\x77\x0a\x73\xaf\xac\xd4\x0b\xb0\xdd\x4e\xd3\x78\xf6\xcf\xd5\x1c\xac\xd0\x36\x9e\x15\x6c\x0e\x56\x66\x32\x5f\x3c\xb8\x36\x95\xae\xf0\x35\x32\xc5\x66\xc0\x7f\xe6\x08\xd3\xea\x76\xbe\xfd\x77\x05\x6e\xcd\x02\x4d\x83\x77\xdb\xc5\xd5\xb6\x2c\xb7\xe5\x55\x7b\x69\xeb\x9c\xb3\xed\x35\x62\x7c\x8b\xc9\x12\xc4\xd3\x14\xbf\xdb\xa2\x77\xa6\x16\x5e\x20\xb3\xe3\xeb\x6d\x01\x68\x55\xa2\xe6\x8b\xf3\x01\x2f\xba\xe5\xd4\xf6\x82\x88\x2d\x42\xc4\x14\xaa\xe1\xff\x5d\xe1\x9f\x4d\xc9\xcf\x62\xac\x39\x34\xd0\x2c\x8e\x5f\x6d\x8e\xaa\x5a\x96\x7e\x53\x02\xd0\x8d\x3d\xfd\x9b\x32\xb0\xc5\xd5\x5a\x15\xc6\x39\x20\x79\x71\xbb\x8d\x2f\x40\xbe\x8d\x97\x00\xe7\x97\x84\x6e\xe3\x0d\x90\xc1\xf8\xaf\x90\xf8\x93\x51\x59\x56\x82\x5b\x42\x37\xdb\x98\x83\x2b\x04\xe2\x12\x97\xdb\x12\xd9\x71\x4b\xac\x47\xf9\x67\x2e\xfa\xeb\xff\x2e\x4f\xf0\x1a\x99\xd9\xad\x90\x73\x6c\xa5\xb7\x08\xde\x2d\x92\xa7\xee\x34\x0e\x9c\x2f\xb6\x5f\x6f\xf5\xde\x00\xc4\x9a\x42\xf9\xb7\x3e\x5e\x40\xaf\x9b\x0f\xe2\xef\x0e\x40\x20\x6f\xf8\xf6\x79\x8a\x23\x37\x00\x5f\x82\x18\x95\x60\xea\xcd\x96\xb6\xda\xc7\xe5\x15\x6d\xaf\x68\xc1\x70\xa9\xae\x6b\x8c\xcb\x6d\xb3\x5f\xd8\xde\x66\xf0\x6e\x86\xd1\xdc\xb4\x7a\x87\x3b\x97\x39\xae\xca\x2d\x36\xed\xaa\xb2\xf7\xe2\x76\x26\x28\xe1\x10\x11\x77\x3a\x16\xda\x05\x74\x9b\x2d\x7b\xd7\x5c\x07\xb7\x1c\xbf\x73\xe0\xf4\xe7\xd6\x52\x97\x39\xcf\x2f\xf2\xd2\x5d\xee\x1c\x62\xc6\x90\x84\xdf\xef\x73\xcc\x04\x0e\x8b\x04\x35\x20\x4d\xd7\x37\x88\x6e\x0a\xb9\x9b\xd1\x3a\x17\x05\x6b\x75\x33\xa2\xc5\x15\x2e\x96\x11\x54\xff\x33\x5d\x58\xa2\x77\xd2\xba\xf8\x9d\x3a\xcb\x68\x4d\xaf\x91\x68\x43\x35\x1a\x88\x16\xf4\x26\x82\xd1\x5b\x4c\x54\x97\x3f\xd3\xf5\x05\x16\x35\xd4\x1f\xf2\x2e\x55\x44\x92\x35\xd2\x40\x72\x16\xa1\x7f\x57\x78\xa3\x73\x83\x61\xb2\xa2\x6c\xad\x52\x8a\xc3\x88\xa9\x68\x04\x6b\x4a\xd0\xad\x18\x74\x83\x16\xa2\x07\x65\x81\x2c\xff\x58\xe1\xf2\x4a\xfc\xbe\x42\x68\x13\xc1\xe8\x5f\x28\x17\x4f\x41\xb4\xa1\x85\xbc\xf1\x5d\x11\xf2\xbe\x17\xfe\x53\x1a\x30\x9e\xfc\xf3\xc7\xf2\xbf\xbe\x38\x81\x2c\x3b\x89\x67\x3f\xde\xfc\x78\x72\x3c\x1f\xcf\xce\x7f\x3c\xf9\xb1\x3c\x9e\x83\x78\x96\x1f\xff\xfc\xe3\x72\x3e\xfe\x02\x9c\x40\x62\x6a\x88\x4f\x63\x10\xcf\x1e\x1d\xff\xdf\xb9\xae\xf0\x5f\xa2\x02\xce\x4e\xfc\xb2\x93\x56\x4e\x15\x27\x89\x88\x0c\x16\xcb\x0d\x31\xcd\x1e\x92\x33\x36\x1e\x03\x94\x38\xa7\x30\xe3\x33\x36\x4f\x38\xfd\x96\xde\x18\xa5\xc3\x3c\x3b\x9a\x74\xf2\xa5\x34\x7d\x1a\xda\x53\x05\xfe\x35\x9d\x93\x87\xf8\x8c\x08\x6a\x3d\xe3\x33\x32\x87\x28\xb1\x60\x37\x63\xb3\x49\x67\x04\x36\x3b\x6d\x57\x3a\xdd\x5b\xe9\x39\xb9\x46\xac\x44\x3d\x75\x27\x3d\x75\x43\x83\x4f\xe6\x5e\x9a\x3e\x70\x17\xa3\x0c\x6d\xb7\x77\x35\x70\xf7\x26\xf3\x76\x6a\xbb\xad\x62\xe0\x0e\x21\xef\x53\xd6\x2e\x90\xd5\xdc\x24\x07\x4c\xd2\x37\x96\x86\x30\xf4\x50\xb9\xdd\xce\x9c\xb7\xa5\x21\xa1\x64\xb9\xed\x33\x15\x83\xb6\x57\x25\x0b\xdd\xab\x54\xc5\xa0\x1e\xd0\x58\x50\x62\x4e\x31\x80\xb9\x2c\xf2\x27\xa8\xcd\x29\x91\x54\xec\x3d\xce\x17\x57\x28\x06\x35\x5e\xc5\x47\x5e\x5a\x99\xd1\xe8\xe8\x65\x37\xcf\x66\x2b\x20\x38\x68\x1b\x27\x2a\x05\xe2\x05\xa3\x37\x25\x62\xc3\x25\x45\xe5\x90\x50\x3e\x2c\xab\x8d\x64\x9b\x03\x3d\xc2\xe1\x46\x71\xd9\x1b\x5a\xdc\xae\x70\x31\x14\xec\xcf\x10\x95\xff\xe3\xb8\xbc\xca\xd7\xe9\xf0\x8a\xf3\x4d\x7a\x72\x72\x89\x79\x82\xe9\xc9\xed\x37\x3f\x3c\x60\x97\x91\x63\x70\x5a\xd9\xec\x21\x81\xce\x1b\x0d\xfa\xf9\x12\x2f\x78\xa6\x13\x20\x98\xcc\x3f\xa2\x0c\xa2\xba\x6c\x18\xba\xec\xce\xd9\x96\x8e\x05\xd0\xa6\x62\x97\x66\xc7\xd4\x26\xba\x64\x6f\xaf\xad\xc4\x42\xb4\xf8\xa1\x44\xcb\xec\x68\x02\xb5\x29\x91\xec\x65\x86\xe6\xdb\x6d\xdc\x2a\xc9\xf4\x6f\x47\x30\x81\x80\xce\xb2\xe1\x90\xd2\x21\x73\xe5\x76\x4c\xeb\xaf\x1f\x8c\x46\x8d\x65\x8f\xf9\x38\x7b\x30\x9f\xba\x3f\xd2\xbb\x7a\xd0\x9d\xa8\xce\x36\x31\x93\x0c\x4a\xe2\xf2\xa8\x7e\x96\xd1\xf3\x8d\x9a\x38\x69\x96\x62\x4b\xf4\x52\x1a\x49\x94\xe2\x12\x41\x5d\xc3\x66\x2b\xbb\x76\x56\xce\x34\x4e\xbd\xfd\xca\x2a\xb3\xef\x7a\x0c\x51\x50\xc3\x25\x2e\xfb\xcf\xcc\x34\x55\xe9\x31\xdc\xb6\x4d\xc9\x41\xa7\xe8\x1f\x48\xff\x79\xb4\x9a\xb5\x39\xf7\xb6\xe1\x58\x0d\x55\x8d\x96\x99\x49\x6b\x27\x46\xa3\x1e\x00\x94\xc8\xc5\x60\x14\x25\x50\x10\x47\xd6\xc2\x78\xa0\x6e\x10\xcd\x87\x8c\x63\x3a\xd9\x35\x90\x8b\x96\xdc\xcd\x3c\x60\x24\x95\x59\x57\x8d\x05\x67\xa8\xdb\x77\x83\x15\xef\xbd\x8a\xdc\xeb\x5b\x4c\x7d\x2e\x7a\xb4\xc7\x13\xf2\xd3\x38\xe8\x00\xe1\x79\xa0\x8f\x8f\x72\x29\xf5\x34\x54\x65\x99\x63\x5a\xce\x48\x93\x2c\x62\x8c\x0e\x04\xb8\x45\x76\xb3\x40\x1a\x9f\x1e\x65\x99\xb2\x36\x2a\x68\xce\x63\xa4\x82\x84\x7b\xdd\xf1\x83\xbb\x03\x2d\x84\x30\xe5\x29\x1a\x47\xc3\x68\xcc\x1d\x38\xeb\xc9\x0c\x13\xbe\x4b\xe7\x87\xb4\x0a\xae\xdb\x34\x0c\xce\x54\xbf\x96\x02\x70\x54\x5b\xf7\x80\x28\xcc\xd5\x11\xc9\xf0\x4c\x86\xaa\x59\x98\x3f\x56\xe6\x8f\x2b\xf3\xc7\xd2\xfc\xb1\x31\x8e\x20\x78\x15\x97\xd9\x11\xda\x6e\xb9\x52\x57\x23\x00\xab\x0c\xdb\xbf\x4b\xcf\x07\x65\x95\xb5\x00\x1a\xc6\x57\x19\x4b\xd0\x3b\xb4\x88\x11\xd8\x6e\x89\xf9\x53\x9c\xcd\x32\xbb\x9a\x3d\x68\xd1\x2d\xde\x4d\x74\x29\xb8\xd5\x5c\xe7\xf8\xee\x7e\x5a\xce\x9b\x39\x08\x0a\x6e\x33\xc4\x64\x28\xb5\xf1\x2b\x1d\x21\x6a\x33\x8e\xbe\x88\xac\x13\xcc\x22\xcb\x67\x9b\x39\xac\x46\xa3\x7c\xb6\x9c\x8f\x46\xf1\x22\xeb\x4b\x37\xb1\x00\x70\xd3\xfb\x71\x03\x94\x1f\x9d\xd2\x5a\x0b\xfa\xe0\x15\xba\x7c\xfa\x6e\x13\x6f\x60\x84\x23\x00\x17\x60\x60\x08\xca\x75\x46\x0d\x0d\xb9\xfe\x7a\x32\x1a\x1d\xc5\x9b\x2c\x2e\x32\x3a\x5b\x1f\x9f\xce\xc1\x6c\x32\x07\x66\x43\xcf\xd6\xc7\xc7\xe0\x4c\xcf\x54\x56\x2a\x04\xad\x24\xea\xc0\x45\x56\x28\x62\xd1\x8c\xb9\x81\x0b\x81\x5c\x1b\x21\xce\x3e\x7d\x51\x4b\x96\x77\x6f\x09\xe1\x47\xb7\x2f\xd9\xad\x80\x46\xe1\xb7\x47\x92\x42\x1a\x73\xc4\x4e\xe4\xac\x46\xb6\x07\x3a\xc2\x64\xe4\xa1\x33\xb4\xf7\x39\xec\xf6\x99\xb4\x2e\xf4\x9e\xad\xee\x4a\x92\x3f\x6b\x9c\x15\xbc\x8a\x5d\xbf\x24\xe0\x29\x8b\xb4\xaf\x92\x9a\x57\xac\xac\xb6\xf4\x97\x37\xdf\x7d\xfb\x4d\xce\xca\x56\x7d\x5d\x2a\x13\xf4\x7d\x43\x2b\xb2\xfc\x8b\x6d\xea\x57\x94\x36\x9c\x17\xe1\xaa\xa1\x1d\x2b\x30\x41\xc7\xe5\xf5\xa5\x95\xdf\x37\x45\x61\xf0\xb4\x0d\xd4\xfe\x5e\x22\x82\x58\xfe\xb1\xc3\xa0\xa0\x44\x0d\xf4\xfa\xfa\xd2\x73\xb8\x69\xec\xdc\x95\x85\x2f\xe5\x1c\xaf\x6e\x81\x4a\x75\xe5\xe7\x13\x19\xd8\x17\x8d\x8e\x46\x27\x3f\x26\xe5\xf5\xe5\x17\x27\xea\x92\xcb\x84\xae\xad\xfa\x49\x29\x38\xfa\x78\x02\x8f\xff\xe4\xe8\x52\xa8\x1a\x47\x42\xb0\xcc\x9b\x0f\x62\x0a\x49\xb2\x90\x7f\x42\xf7\xeb\x1b\xcc\x0b\xa4\xbe\x72\xf9\x27\xf4\xb0\xd6\x15\x5f\x17\xaf\xf3\x15\x8a\xe9\xee\x53\xf0\x37\xf5\xd3\x01\xac\xda\xb8\xc0\xc5\x8b\xd1\x76\x1b\xb9\xb6\x40\xff\xfc\xf1\xe4\xe4\x12\x7a\x45\xaa\x24\x89\xe4\x3d\x6e\xf6\x26\xeb\xb8\x4b\x1e\xf1\xe6\x61\xb0\x4c\x92\xe9\x26\x7a\x28\x61\xec\x4b\xf1\xdf\x50\xee\x68\x16\x7d\x39\xe6\xe3\x2f\xa3\x2f\x9b\x8e\xe5\xb6\x1e\xd2\xf1\xb1\x20\x3e\x50\x63\x6f\xf8\x50\x9e\xc2\xd7\x11\x98\x36\x23\x9e\xe8\xc2\x38\xf9\xaf\x29\x78\xf8\xe3\x89\xfa\x75\x72\xb9\x86\xb6\xfa\x98\x8f\xa3\x87\x27\xa6\x6d\xea\xce\xf6\xa4\xbc\xbe\xfc\x3a\x0a\x57\xd5\x1f\x03\x67\x5b\xd0\x7c\x79\xdc\x44\x7e\x62\xc1\xcc\xfa\x3a\x0c\xe2\xee\x4b\xe4\x78\x3f\x5a\x9f\xc3\xb6\x9d\xbb\xe4\x36\xe4\x3f\x47\x13\x95\xd8\x92\x75\xb8\x67\x41\x45\x49\x4f\x41\x35\xfe\x30\x27\x43\x67\x7e\x49\x64\x52\x00\x5a\xd5\x98\x35\x98\x94\x56\x66\xdb\x6d\xac\xfe\xc8\x90\xbe\x33\x28\x29\xf2\x92\x3f\x37\x3b\x7f\x12\x81\xf1\x29\x00\x90\xd4\xae\x8e\xb6\x31\x56\x6e\x9d\x14\x87\x46\x0f\x7b\x6c\xc4\x3c\x1f\xa4\x65\xf5\x77\xd0\xbc\xff\x38\xe3\xe3\xe8\xc4\x3b\x87\x08\x52\x5d\xa8\x33\xd6\xb5\xbe\xe6\xd9\x6c\x0e\x4b\xf1\x4f\x95\xb9\xe6\xae\x25\x2a\x56\x89\x3e\xb1\x7f\x95\xc9\x39\xca\xdf\x9e\x97\x08\x11\x00\x8b\x6c\x72\x56\x3c\xac\x0c\xa1\x51\x8c\xc7\xea\x9c\x16\x59\x35\x2b\xe6\x03\x81\x8b\x16\xde\x5e\x61\x38\x01\x53\x12\x2f\x60\x74\x2c\x10\x93\xcc\x20\xad\xb8\x9e\x05\x48\xbb\xd5\x29\x9c\x08\xcc\xe5\x37\x28\x4d\x03\x50\xc7\xe1\xb5\x93\x6c\x72\x46\x1e\x36\x32\x34\x29\x9c\x73\x16\x1b\xb3\x98\xcf\xc8\x1c\x80\x5a\x80\x50\x0e\xe0\xbd\xba\x51\x9b\xf7\x3c\xd4\x5d\x8c\x60\x19\xb8\x12\xeb\x7c\xc1\xe8\xb1\xf5\xed\xbe\xa8\x70\xb1\x3c\x36\x69\x5b\x0f\xc4\x79\x16\xb4\xf8\x6f\x46\xfd\xdf\xf5\x18\x46\xc9\x82\x16\x45\xbe\x29\xd1\x5f\xd1\x6d\x09\x49\x26\xf3\x2d\xc9\x5c\x52\x10\x67\x28\x59\x15\x39\xe7\x88\xc8\x8f\x54\x5c\x99\xf2\xdb\xfc\xe7\xdb\x40\x3e\x21\xb3\x54\xd4\xe1\x03\x61\x9e\xd9\x7c\xbe\x65\x36\x39\x2b\x1f\xa2\xb3\x72\x3c\x06\xf9\xac\x9c\x3b\x7c\x61\x39\x57\x01\x20\x02\x0f\xc2\x9d\x00\xfa\x14\x35\xef\xe3\x29\x80\x8b\xbc\x28\x2e\xf2\xc5\xdb\xb4\x31\xe8\x3c\x3e\x9d\xd7\x75\x9c\x8b\x4b\x50\xc9\x7b\x02\x17\x59\x95\x98\x8a\x70\x95\xb1\xb8\x50\x98\xe5\x2a\xb8\x13\x98\x2c\xe8\x1a\x93\xcb\xc7\xa6\x85\xd8\x0d\x25\x65\x7b\xc4\x2e\x4b\x88\x0d\x3b\x14\x34\x2f\xc5\x21\x12\xd2\xf3\xa2\x23\xea\x3f\x04\x40\x9d\xc6\x38\xbb\xab\xa1\x7c\xfa\xa5\xdb\xdb\x25\x0a\xf9\x8c\x0c\x65\x85\x9e\x3e\x04\x77\x5a\xea\xe6\xa5\xd7\x1c\x62\xed\x4c\x64\xe8\x63\x9a\xc9\xaa\x40\x6e\x86\xee\x8e\xc2\x99\xec\x0a\x5b\x23\x0e\x1e\x37\xbd\x8b\xfe\x5d\x3b\xdd\xbb\xf6\xe6\xa4\x0b\xd8\x6c\x4d\x50\x1e\xb0\xf2\xd3\xdc\x5a\xc7\xa8\x3b\xe9\x48\xf7\x8e\xa7\x08\xca\x6b\x98\x32\xf8\x16\xdd\xa6\x32\x31\x8b\xdd\x62\x43\xfc\x4c\x63\x2c\xe6\x2e\x0f\x1e\x80\xa4\xdc\x68\x10\x98\x40\x02\x52\x2c\x33\xd4\x6d\x62\x02\x20\xae\xeb\x16\x19\x6a\x6e\xb3\x6f\x48\xc2\x63\x1c\x17\x00\x98\x25\xcf\xae\xe6\x40\x71\x4f\x12\x05\x3c\xae\x18\xc3\x68\xf9\x58\x37\x0d\x9d\x88\x2d\xe2\xdd\x22\xc7\x17\xc6\x1b\x54\xdd\x5f\xc7\x16\x4b\x2c\x42\xb9\xf8\x34\x0c\x89\x9d\x12\x97\x53\xda\x8b\xb3\xa4\xb5\x7b\x4e\xf8\xa7\x32\x0b\x18\xa0\xe4\xd1\xab\x57\x8f\xfe\x71\xfe\xf4\xd1\xe3\xbf\x64\xd1\x7f\xa3\x7c\x71\x95\x44\xd0\x94\x7e\xfb\xf4\xc5\x9f\xdf\xfc\x25\x8b\x66\xf3\xa8\x13\x9f\xce\x9f\xa9\x41\x30\xc7\x6f\x51\x30\x99\xb4\x5f\x1b\xbd\xdb\xe4\x64\x79\x6c\x92\xcc\xf7\xd4\x72\x56\x7f\x5f\x23\xad\x4e\xa0\x03\x13\x18\x61\x86\xe6\x03\x97\xb0\xb7\x24\x8d\xa4\x62\x8c\x39\xd3\xd7\xa7\xdd\x38\x1a\xce\xb9\x2b\x70\x4c\x18\x5a\x56\x0b\x14\x87\xae\x05\x4f\x56\x32\x5f\x5f\xdc\x85\xa4\x63\xe5\xdb\x6e\xc9\x12\x27\x73\x1b\x32\xe0\xc1\x40\x0d\x67\x73\x50\xc7\x18\x0c\x8c\xc3\xa0\x69\xc0\x9c\x13\x03\x03\xa7\x4f\x2a\x99\x8d\x6e\x45\x75\x88\x00\x40\xc9\xa3\x4c\x67\x51\x34\x4f\xe9\xd7\x93\xe9\xac\xc1\xb5\xf4\xf8\x14\xcc\xd3\xf6\x8e\x7c\xc8\x23\xd4\x4d\xe5\xdb\x0f\x2f\x41\x67\x97\x1d\xe0\x75\x6f\xea\x55\x06\x3e\x69\x9c\x3b\x42\xbe\xda\x3e\xbb\xe7\x40\x05\xcb\x98\x39\x15\x7b\x18\x1a\x7d\xd1\x8c\x68\x78\x99\x92\x19\x69\xde\xa7\xf1\x69\x3a\x81\x24\x23\xb6\x9d\x8f\x23\x2d\x20\x51\x65\xf3\x78\x67\x16\xb7\x14\x0f\xb0\x42\x94\xdf\xe5\x9b\x94\xd4\xef\x73\x00\xee\x4b\xff\x77\xcc\xaf\xbe\xcb\x37\x32\x43\x51\x88\x3a\x30\xef\x4f\x8c\x40\xe2\x4d\x62\x1f\x5e\x32\x68\xf7\xb8\x22\x65\xbe\x0a\xda\xdf\xed\x21\xbe\x82\xb5\x2e\x11\x3f\x96\x8b\xb1\xfd\x06\xab\x69\x72\x45\x82\x8e\xa9\xf9\xd1\x8d\xd0\x06\x9e\xf9\x9e\x03\x13\x77\xee\x0e\x07\x3d\x98\x64\x62\x4c\x49\x5d\xa5\x96\xb7\x81\x0e\x8d\x95\x3a\xd6\x61\x07\x6e\xf4\xc7\xda\xe1\xd6\xb5\xdb\x7d\x0a\x07\x6c\xff\x21\x69\x9d\x3f\xcc\x70\xb2\x77\xe7\x9b\xad\xb5\xbb\x4d\x82\xbb\x8d\x0f\xdf\x6d\x49\xeb\x1c\x4b\x19\x41\x90\x51\x78\xbf\x0d\x3b\x64\xd3\xbd\x4d\xbd\xf7\x73\xf8\x71\x77\xdd\xe9\xbb\x0a\xd1\x3f\x86\x0b\x28\xba\x5c\xc0\x42\x73\x01\x05\x80\xab\x6c\x72\xb6\x7a\x58\x9c\xad\xc6\x63\xb0\x98\xad\x5c\x2e\x60\x35\xd7\x04\xba\x34\x8c\x0d\x60\x2c\x10\x2f\x00\x5c\x66\x57\x3e\x56\x82\x9b\xec\x2a\x51\xc8\x71\xa0\x64\xed\xb3\x79\x83\xef\xaf\x63\x47\x6a\xa7\x23\x28\xac\x5b\xd4\x29\xa4\xcd\x2d\x9d\xd1\xb9\x74\x26\xeb\xc0\x98\xa2\x5b\xb1\x47\xb7\x92\x1a\x00\xc8\x6a\x00\xf3\xac\x72\x29\x75\x6a\x52\x7f\xb7\xf6\x59\x85\xbd\x68\x40\x28\x07\xb5\x8a\xe0\x7d\x57\x0f\x96\xdd\xe7\xc7\xc6\x7e\x20\x32\x7b\xff\x80\x6c\xb7\x71\x5b\xc2\xe0\x50\x35\x59\x43\xd5\xe8\x17\x6e\x31\xdb\xcc\xf8\x5c\x46\x84\x92\x62\x0f\x66\xa9\x00\xec\x92\x0b\xdb\x6d\xcf\x57\x43\x23\xb4\x99\x52\x54\xcb\xb9\x99\x87\x2f\xe4\x13\xde\x9d\xd4\x34\xd2\x9b\x98\x44\x63\x94\x46\x84\x12\x25\x9c\x2c\x93\x68\xcc\x55\x87\x83\xb5\x92\x26\x50\x00\xc9\x68\x14\xdf\xce\x22\xf1\xb0\x8f\xd9\x38\x7a\x82\x97\x8f\xaf\x72\x72\x89\x22\x93\xb8\x99\x9a\x54\xb7\x14\x5e\x03\x93\x78\xf7\x32\x2b\x4d\x04\xae\x5b\x78\x47\xc9\x73\x82\xb9\x4e\x22\x4d\x49\x1c\x61\x82\x79\xe4\x7a\x1f\x5c\x2b\x4a\x5c\x39\x1b\x08\x3c\x70\x91\xed\xe2\x20\x5a\x02\xf6\xcf\xc4\xf4\xc7\x7e\xd8\x8c\x85\xc3\xc2\x74\x59\x59\xc5\x29\x66\xe1\x08\x13\x38\xcb\x95\xc0\x19\x0c\xf0\x76\x1b\x4b\x8b\xff\x21\x85\xb9\x60\x10\x25\xeb\xa8\x76\xb1\xcc\x24\x53\x1a\x13\x49\xfd\x5a\x5d\x40\x39\x28\x33\x6b\x7a\x22\xf8\xf2\x94\xc1\x86\x9f\x6b\xce\x53\x6f\xb8\x6f\xaa\x22\x36\x57\xf2\xaa\x31\x81\x25\x80\xc8\xf5\xf6\x57\xf5\xad\xbb\xe5\x68\x84\x12\x2a\x90\xf1\x0d\x2e\x8a\x27\xa8\xe4\x8c\xde\x3e\x35\x11\xf8\x9c\xc3\x2b\x93\xa5\xfa\x18\x3b\xc4\x72\x59\xab\x5b\x76\x09\x11\xbc\x10\x4c\xe5\xb2\x43\x90\xcb\x10\xb2\x6d\x38\xb5\x2c\x01\x1e\x8d\x62\x32\xa3\x36\x1c\x43\x0c\xe6\x7d\xc8\x80\x69\x64\x80\x25\x32\x40\xb5\x94\x3a\xc2\xbb\x36\x37\xaa\x16\x1d\x6d\x18\xba\x46\x84\x3f\xa1\xd5\x45\x81\x5e\x21\xb2\x44\x2c\x82\x47\x13\x23\xa9\x2f\x11\xd7\x78\x02\xa3\x32\x26\x49\xb3\x9f\x10\x3b\x75\xfa\x7b\x3a\x35\xb5\x2e\x55\x2d\x8b\x66\x40\x3d\x07\x82\x2d\xc9\x97\x2f\x49\x71\x1b\xdb\xd9\x5d\xd4\xb5\x17\x98\xe7\xef\x28\x7f\xfb\x5d\xbe\x81\xb9\x02\x0b\x0d\x0a\xde\x61\x9a\xe8\x76\xa6\x6f\x7b\x2d\xd3\xd6\xa5\x74\x90\x5c\x5b\x71\x67\xc2\xb5\xc9\x3d\x84\x5a\x41\xff\x16\xdd\x42\x05\xbc\x49\x60\x75\x03\x94\xe0\x52\x43\x02\x26\x97\xca\x44\xc0\x1e\x7e\xca\xb6\x5b\x94\x10\xca\xf1\xea\xd6\xa0\x5a\x35\x2b\xc9\x46\xed\x7f\xdf\x15\xe7\x7f\x8f\xa7\xfd\x50\xaa\x4a\x7f\xfe\xa4\x2e\x24\x3c\x28\xbe\x00\x71\xe3\x5a\xb2\x67\xf9\x2d\xae\xfb\xb8\xc0\xed\xb0\xda\x87\xf0\xea\x9f\x3e\xde\x9d\xc3\x69\x77\x59\x6c\xe6\x7c\xd5\xc8\xd1\xbf\xb4\x0c\x68\xe6\xf9\x7e\xbb\xf1\x79\x95\xb6\xea\xe9\x68\x58\x52\x75\xa9\xd4\x94\x1c\xe4\x80\xbc\x89\x70\x81\x94\xd5\x92\x11\x90\xb1\xc4\xf6\x2c\x31\xc4\x28\xed\x3d\xef\x1d\xe4\xfd\xa7\x3c\xec\x36\xe3\x1d\x96\xae\x38\x9a\x1d\xde\xe8\xe0\x86\x91\x0c\x3f\x2c\x29\x0a\x0e\x20\x3a\xe8\xfc\x7d\x8a\x7b\xdf\xae\x60\x87\x21\x38\x58\xfe\x20\x80\xd5\x04\x6d\x70\x96\x66\x9e\x68\x94\x9c\x2f\xd1\x46\xe0\x3d\xc2\x05\x7d\x2b\xde\x60\xab\x4c\xc6\xfa\x31\xb6\x4a\xb1\x18\x43\x26\x2d\x5b\x7b\x65\x5b\x43\x34\xd0\xb6\x6c\x08\x74\x74\x62\x61\xa1\x07\x93\x1f\xeb\x8f\xaa\x6f\x90\x70\x4d\x62\x5f\x92\xaf\x23\x3f\xe3\xcc\x93\xe4\x4b\x99\x9b\x89\x89\x25\x03\x77\xa9\x08\x71\x54\x89\xcc\x99\xfa\x03\x72\x00\xa9\x92\x82\x8b\x92\x52\x96\x34\x71\x43\xf7\x1d\x74\x57\xaa\x70\x38\x43\xf7\xc9\xe1\xdf\x3c\x95\x1d\xbb\xba\x49\xd0\xae\x6e\xe2\xda\xd5\x4d\xe6\xe9\x5d\x0d\x3b\xca\x59\xe0\x9b\xda\x09\x7a\x7f\xca\x52\x94\xc8\x35\x1e\xbc\x59\x1f\xf1\x4a\xfc\x5a\xf6\x09\x59\x5a\x84\x64\x7a\x3b\xa4\xfa\xeb\x2d\x32\xba\x2e\x7f\x27\x09\x98\x92\xe4\xfc\x12\x71\x2e\xf8\x04\xc1\x3e\x30\x88\x41\xda\xb9\x7f\x64\x4a\x34\x55\x84\xcb\x6f\x8a\x9c\xbc\x15\x2d\x59\xda\xd0\x68\x3a\x64\xd9\xce\x8d\xef\x8d\x27\xd2\x27\x10\xba\x8f\x04\xe3\x40\x6a\x28\x58\xad\xc8\x7f\xbe\x3d\xac\xce\x81\xfd\xc9\xd0\x40\x45\xcf\x57\x96\xdf\xf4\x7d\x41\xf9\xb2\x6f\x57\x4c\x5a\xad\x3d\x59\x2b\x3f\x59\xc4\xf4\x66\xc9\xf7\x0e\x99\xbe\xa3\x53\x79\x96\xd2\xe2\xe5\xf1\xfd\xfa\x67\x87\xf5\xef\x13\x92\x07\xf6\x4d\x0e\xea\x5b\x00\xc4\x3d\x3b\xc6\x87\x77\xfc\x5e\x13\xa7\x87\xf5\x6f\xa0\xf3\xa0\x3e\xf3\x83\xfa\x94\x30\x7d\x50\x7f\xe5\x61\xfd\xa9\x9b\x70\x50\x8f\xd5\x41\x3d\xda\xfb\x73\x58\xa7\xc5\xae\x90\xff\xfd\x8f\xc4\x67\xa5\xb0\x0d\x49\x14\x16\x3f\x88\xf9\x98\xbe\xf7\x61\xe6\x16\x02\xfc\x43\x10\xff\xc1\x82\x78\xa8\x0c\x4c\xe4\x20\x07\x6d\xfe\x27\xe2\xdb\xfd\x93\xfd\x75\x33\xef\x16\x31\xed\x5b\xba\xc0\x36\xbf\xbd\x44\x21\xfe\x1a\x6c\x0a\xcc\xe3\x9c\xb1\xfc\xf6\x30\xa3\x82\x5e\xfd\xc8\xa7\x63\xe1\x03\xfe\x30\xa7\x41\x7a\xf4\xd4\xa5\x47\x4f\xe7\xe9\x6c\x1e\x4c\xc7\xe0\x70\x72\x4a\x1b\x60\x22\x78\xbb\x06\x03\x9e\xfe\xdf\x08\xfc\x71\x13\x59\xb8\xdc\x14\x98\xc7\x51\x12\x01\x98\x67\x74\x46\x1d\x76\x8b\x64\x13\x19\x31\xdb\x72\xce\x77\x11\x98\xe6\x49\x59\x5d\xa8\x99\xc4\xa7\x30\xb7\xd5\x81\xe9\x09\x46\x20\x9d\xe5\xf3\x5a\x05\x0e\x0c\x4c\x45\x6b\x0f\x94\x92\x5d\x32\xaf\x53\x94\x45\x51\x8a\x05\x75\x1e\x37\x06\x9c\x13\x88\x8f\x4f\xa5\xc3\x4d\x50\x01\x6f\xb6\x0d\x8d\x46\xd2\xa0\x81\xd8\x81\x10\x18\x8d\x88\x65\x6d\x8d\xec\xda\xb7\x22\x9a\xc8\x16\x5a\x1f\x5f\x66\xfe\xdc\xd2\xb8\x29\x11\x1b\x07\x4f\xbd\xda\xe3\x8c\x08\x2e\xa1\x1c\x67\xd1\x5d\x34\x26\x3a\x54\x21\x8c\xc0\x38\xaa\x23\x23\x6d\x35\xc4\x3d\x02\xd3\x32\x45\xe3\x28\x89\xc6\x7b\x15\xe5\xf2\xe9\xff\x05\x9e\x3d\x5f\xb7\x11\xb0\x3d\x40\xb5\x2b\x28\xde\xbb\x0c\x45\x71\xec\xbb\x81\x3d\x64\xf8\x6f\x0f\xff\x34\xf4\xd0\xc1\xfc\xd8\x67\x48\x03\x62\x75\x3b\x7e\x7c\x30\xd7\xf2\xc0\xba\xd9\x91\xd1\xc8\x8d\x2b\xda\xc8\x95\xc8\x34\xaa\x88\x9a\xc8\x32\x4a\x59\x4c\x80\xbc\x5b\x25\xe2\x53\x65\x61\x28\xff\x4e\x5b\xd6\x86\x0e\xf9\x1f\xf6\x1b\x04\xb0\x6d\x22\x8e\x41\xfd\x7b\x0b\x1f\xdb\x85\x1a\x2a\x96\x6f\x81\x40\xd0\x1d\x79\x79\x0f\xa8\x09\x5b\xaf\x7c\x52\xcc\x10\xd0\xe3\x77\x5f\x31\x48\xb4\x4a\x93\x01\x88\xb3\xc9\x19\x7e\xc8\xce\xf0\x78\x0c\xc8\x0c\xbb\x7a\x7c\xdc\x38\x4f\x5b\x2f\x2a\x3f\xa2\x57\x57\x7f\xe9\xaa\x4e\x3b\xc3\x1a\x4d\x2a\x17\x6f\x89\xb4\x02\x57\x51\x18\x66\xc4\x1d\x96\x38\x96\x5c\x56\xab\x0b\x99\xd4\x7e\x85\x4c\x2a\xdb\x87\xb4\xc8\x0b\x44\x96\x79\x2b\xc5\xa6\xaa\xd6\x1c\x58\xf8\x68\x3f\x32\x91\xa8\x9f\xf9\xee\x3d\xeb\xe8\xfe\xff\xc8\x08\xc6\x7f\xc1\x8c\x60\x87\xc4\x72\xfb\x20\x82\xf0\xae\x96\x5e\x34\x68\xbb\x95\xc9\x64\x74\xdb\xaf\x40\x70\x21\x2e\x84\xa6\x43\xb3\x2c\x95\x10\x74\x48\x57\x36\x8f\x57\x09\x87\x39\x1f\xae\x69\xc9\x87\x5f\x45\x46\x00\x2f\x00\xe0\x2b\x00\x69\x86\x67\x93\x39\xcc\x33\x3c\x3b\x9d\xc3\x32\xc3\xb3\x07\x8e\x03\x8a\xd6\xe5\x33\x00\x0b\xad\x17\x5e\x23\x76\x89\xe2\x0a\x96\x20\x28\x2b\xa5\xd2\xec\x5c\x5e\xab\x38\x87\x45\x50\x17\xdb\xbe\x51\xcb\x8a\xe9\x00\x39\xbf\xf8\x3d\xbc\x47\xb0\x3e\x07\xd7\x99\x05\x98\x37\xb1\xe1\x7a\x7f\x19\xf3\x11\x14\x0c\x9f\xd8\xd9\x41\x15\x99\xe8\x57\xb0\xeb\x7f\x60\xbf\xdf\x1b\xf6\x13\xfb\xfb\x40\xd0\x0c\x32\x80\x11\x95\x31\x8f\x24\x62\xa3\xaa\x46\xde\x38\xc3\xbe\xbc\x21\x88\x29\x83\x2c\x19\x54\x7f\x34\xca\xdb\x79\x65\x03\x45\x71\xb4\xa0\x64\x85\x2f\x53\x44\xae\x31\xa3\x44\x42\xad\xd6\xa8\x96\x59\x9e\x30\x54\xd2\xe2\x1a\xed\x6f\x32\x28\x5b\xbe\xb9\xa5\xb9\x04\x09\xad\xf8\xa6\xe2\xcf\xd4\x2d\x11\x24\x45\x08\xe1\x61\x90\xa8\x7b\x14\xd3\xc3\x2e\x1d\xa3\xeb\x63\x42\x6f\x7e\x05\xd7\xee\x20\x64\xe7\x46\xc7\x6a\xc8\xad\xe6\x4d\x8b\x65\xa6\x26\xba\x91\x91\x1c\xc2\xd4\xdf\x2f\x87\x05\xe5\x8f\x17\xf4\x26\x66\x07\x9d\xcd\x55\xb5\xce\x49\x27\x8e\xec\x1f\x28\xf1\x0f\x94\xf8\xa9\x50\x62\x37\xf8\x44\xf9\x44\x13\x13\x31\x06\xd2\x62\xb3\x4b\x66\xc4\x18\x00\x88\x13\x03\xad\x07\x22\x9e\x82\x0a\xc2\xec\x0f\xd0\xfe\x03\xb4\x7f\x35\xa0\xdd\x7e\x49\x05\x54\x2b\x30\x3d\x10\xa6\x0d\xfc\xfe\xe2\x30\xfd\x7e\x7c\xc3\xaf\xe4\x95\x3c\x64\xa7\x39\xfd\x83\x68\xf9\x5c\x44\x0b\xa7\x0d\xc9\xd2\x76\xb6\xed\x9c\xcb\xcf\xbf\x82\x33\xf9\x03\xa3\xff\x07\x61\xf4\x0e\xfb\xc3\x7f\x3e\x10\x5b\x57\x7c\xf1\x2b\x00\xd6\xf7\x43\xd5\x15\x5f\xfc\x26\xa4\x3b\x8d\xe1\x43\xfe\x39\x92\x83\x7a\xd1\xc5\x8c\xaf\x88\x16\x48\x6a\x6d\x29\x91\x9d\x97\x88\x5d\xcb\xb0\x0e\x26\xae\xe9\x73\xc2\x11\xbb\xce\x8b\xf4\xe8\x14\xaa\xb4\x31\x8f\x8a\x82\xde\x3c\x5d\x6f\xf8\x6d\xda\x72\xc9\xba\xa0\xb4\x88\x0d\x57\x7e\x7e\xae\xd8\xf8\xf3\xf3\x24\xb7\x2d\x22\x00\x75\x34\xde\xf2\xcf\xed\xce\x8e\x26\x50\x11\x15\x2f\xd9\x1b\xbc\x46\xff\x97\x12\xa4\x9c\x45\x96\x1d\x1f\x16\x3d\x84\x21\x95\xcd\x6f\xae\x9b\x79\xae\x2d\x2a\x36\x21\xd2\x93\x94\xee\x4e\xfa\xef\x60\x80\x0c\xed\xa6\xc5\x13\xac\x17\x3e\x68\x27\xc7\x6e\x6d\x4c\x04\x4c\xe8\xd9\x45\x81\x72\x39\x75\x16\x2b\x37\x39\x1d\x38\x52\xd5\x93\x1f\xb2\x12\x71\xf1\x07\xad\xb8\xab\xe4\x55\x43\xb0\x8a\x04\x34\xbf\xcc\x9f\xbc\x4e\x16\xfc\x9c\xf0\x98\xc0\xd3\x89\x0c\x0a\x02\xd7\x94\x6d\xae\xbe\x53\xc7\x19\x0e\x6f\xa0\xb6\x4a\x2e\xcc\xec\x12\xc4\x9d\xbc\xdf\xfa\xa2\x5b\x8b\x64\x96\x31\x93\x5c\x4a\x54\xc2\x30\xd2\x5b\x0e\x20\xc9\x48\xeb\x93\xdd\x7d\x00\x99\x94\x89\xcb\xaa\xda\xa0\x40\x93\x8b\x0c\xc8\x9d\x41\x09\xff\x59\x7f\xe0\x3f\xc7\x04\x48\x1f\x80\x66\xfb\x5c\x65\xb0\x2d\x15\x5b\xd6\xdd\x50\x50\x43\xed\x6e\xd4\x89\xbd\xeb\x1d\xc7\xfe\x1c\xea\xfb\xef\x2a\x2e\x8f\xf3\x15\x47\x2c\xa8\x2f\x0c\x5e\x6b\xff\xa3\x8a\xe1\xa6\xaa\x18\x33\xa6\x4f\x88\x35\x1b\xa4\xd8\x72\x0e\x4b\x7b\x13\x0e\x19\x80\x91\x70\xb2\x61\x68\x81\x4b\x4c\x89\x0a\xb4\xae\x00\x88\x3a\x00\x34\xd8\xbb\xa9\x83\x96\x0c\xb1\x05\x66\xe2\xb5\x37\xaa\xc4\x4a\x90\x07\x85\xe3\x62\x73\x9a\x65\x59\x39\x2d\xb4\x15\xc9\x6c\x32\x07\xe9\x03\x51\x34\x1a\xc5\x95\x53\x08\x6d\x8d\xd3\x39\x00\x30\xd6\xbe\x6a\xce\x8d\x88\xf3\x44\xe3\x07\x35\xc7\x1c\x56\x00\xde\xa9\xf5\xa4\x18\x9a\xd5\xa4\xb4\x06\x40\x3c\x0b\xe2\x88\x75\x55\x06\x0b\xab\x11\x55\x81\xb0\x0e\x82\x92\x0b\xb4\xa2\x2c\xac\x56\xde\x01\x09\x3b\x41\xe9\xd3\x81\x09\xdb\x05\x26\xfc\x0f\x30\xe9\x01\x93\x6f\xe4\x19\x7f\x28\x9c\xf0\x1b\x84\xc8\x7f\x24\xa0\x60\xb2\x28\xaa\x12\x5f\x63\x7e\x2b\xa1\x45\x03\x4e\x7e\x7f\xc0\x29\xfb\x01\x47\x40\x4b\xe3\x82\x07\x0b\x0b\x47\x82\x8d\x29\x1e\x3e\xd8\x6e\x8b\x8f\xa0\xb3\x45\xef\x36\x68\xc1\xd1\x72\xf8\x60\x48\x99\xd5\xdc\x2e\x1c\x20\x2d\xbe\x7e\x30\x1a\x2d\x14\x04\x56\x49\x79\x85\x57\x82\x89\x09\x42\x61\xe9\x43\x61\x09\x17\x0d\x14\xd2\x06\x0a\x73\x03\x85\x12\x82\x2c\x18\xfe\x42\xa4\x6e\xd5\x38\xbe\x13\x88\x0f\xbf\x00\x3a\x49\xf9\xde\x67\xf5\xf7\x7b\x0d\xfe\x63\xf0\xe5\xeb\x7c\x8d\x5e\xb2\x8f\xf0\xb8\x1a\x98\xf9\xe3\x91\xfd\x4f\x01\x9a\x8f\xf1\xd4\x0a\xa8\xf9\x03\x56\x7e\xef\xb0\xf2\x01\x30\xa2\x7e\x1e\xe7\xcb\xb0\xb7\xca\x27\x02\x13\xd7\xeb\xfb\x37\x12\xae\xf6\x43\xc0\x13\x7b\xe0\xf9\x09\xc9\x3e\x0b\x9e\x02\x32\xe1\xa2\x05\x9e\xd5\x74\xd1\x06\xcf\x6a\x34\x8a\x88\x24\xee\x22\x9b\x6c\x9b\xdf\x6e\xd0\xcb\x95\xaa\x34\x1a\x35\x71\x93\xda\x9f\x4f\xe7\x40\x77\xa8\xa7\xbb\x80\x32\xf5\x6e\x1a\xbb\xb7\x00\x76\xab\x68\x37\x8b\x53\x00\x0e\x25\x06\x8b\x7e\x62\x30\x5f\x2e\x2d\xf8\x2f\x2c\xf8\x1f\x4a\x8c\x69\xf0\x0f\x9b\xda\xfe\xba\x50\xe5\x1f\x5a\x8c\xdf\x9a\x16\xe3\xfe\x28\xc3\x44\xa6\xf8\x20\xeb\xdc\xbd\x78\x04\x7e\x7a\xfb\x5d\xd6\x8f\xa5\x7a\x5e\x67\x98\x1b\x93\xdf\x32\xcb\x67\x93\x39\xac\xb2\x7c\x76\x2a\xde\xd8\x7c\xf6\x40\xe0\x32\xdf\xe4\x97\x83\x81\x4e\x29\xb7\x30\xbd\xd9\xdf\x16\xa3\x8a\x99\xac\xf4\x4c\xf2\xb2\xc4\x97\x24\x5e\xc0\x26\x41\x5d\x07\xef\x30\x8d\x77\xe2\xb2\xef\xc5\x6d\xac\x87\x2b\xb8\xba\x0f\x86\x59\xe2\xd5\xea\x0f\xec\xf2\x07\x76\xf9\x25\xb1\x8b\xab\x18\xf1\xa9\xe5\x55\x41\x73\xde\x4b\x98\xdc\x07\xa7\x3c\x90\xc9\x2c\x34\x99\xf6\xa1\x58\x45\xa6\xe5\xb8\x40\xc3\x07\xd1\x01\xb4\x8f\xd6\x09\x17\x59\xa5\x52\x53\x55\xae\x95\x4f\x1f\x85\x11\xf7\x8a\x99\x12\x71\x63\xe3\x02\x32\x88\xef\x75\xcf\xef\xe1\x2c\xf0\xcb\x73\x56\x7e\xc0\x32\x93\xe7\x44\xc3\x00\xce\xd8\x7d\x89\x53\xda\xaf\x5a\x0b\xb8\x8d\x3c\xf8\x68\xcf\x8e\x01\x90\x3c\xa3\xe6\x60\x7f\xd5\xee\x0f\xfd\x4f\x50\x9e\x9c\x63\x0b\x91\xa4\x81\x48\x5c\x83\xc6\xa2\xf2\x10\xad\x9d\x86\xc7\x90\x13\xc5\xaf\xeb\xe5\xd9\x09\xa8\xfa\xb7\x32\x72\xef\x0f\xee\xa8\xd9\x05\xaf\xf6\xa1\xda\xf0\xc3\xa4\x0b\xf6\x4e\xdc\x9b\x61\xeb\xbf\x13\x30\xf7\x04\xf3\xf9\xfd\xe8\x30\xb2\x53\x26\xdf\x26\xc8\x74\xe2\x1e\x29\xb4\x08\xcf\xa7\xb5\x7b\x4d\x00\x53\x97\x99\x3b\x15\xf4\xa7\x51\x80\xe3\x52\x5a\x30\xc4\x05\x98\x0a\x5e\x32\x9f\x56\x8e\x6c\x23\xcd\xbf\x7e\x30\x1a\xc5\xb6\xf5\x83\x39\x80\xee\x77\x90\xea\x5f\x45\x98\x07\xa4\x3e\x0f\x48\xa1\x43\x93\xf9\xf7\xc2\x78\x38\x58\x36\xb0\xba\x0f\xc2\x0e\x3b\x3c\xfc\x86\xae\xc8\x7d\x5e\xfd\x2b\xbc\x44\xaf\xab\xd5\x0a\xbf\x93\x40\x2d\x7e\x3e\x92\xbf\xfa\x44\x66\x26\x6a\xb4\x20\x17\x04\xd9\x1d\x35\x3d\x0c\x71\x39\xb4\x1f\x96\x82\xd2\x5b\xe5\xd7\xb4\x92\x10\x69\x3b\x8e\xa0\xf5\xe8\x66\xf0\x0e\x2f\x53\x6f\xd7\x04\xf3\x4e\x89\x4e\xfb\x67\x9e\x64\xe7\x44\x2a\xc2\x71\x91\x46\xff\x33\x99\x24\x93\xa8\x3e\xc0\x9a\x61\xbf\x00\x8f\x6d\xb7\x64\x07\xf2\x6d\x49\xde\x7e\xb9\x17\xa2\x8f\xff\x30\x1e\x23\xe5\x7d\x61\xfc\xf7\x0f\xdf\x50\xd0\xb2\x31\xc9\x10\xf4\xcf\x89\x80\x29\x49\x9d\x1d\x26\xc0\x75\x2b\xb5\xc2\x28\x58\x7a\x37\xa2\x6a\x6e\x44\x71\x7f\xa4\xbf\xd8\x67\x63\x14\x42\x79\x0b\x43\xbb\xd0\xe6\xf8\xab\xe6\xf8\x8b\x5a\x7b\x0c\xfd\xd2\x6a\xcf\xbc\x51\x7b\x96\xf7\x93\xb3\x95\xd5\x05\x67\xf9\xe2\xb3\xd2\x23\x7f\xc8\x9a\xff\x90\x35\x7f\x24\x59\xb3\x01\xdf\x0f\x17\x38\x73\x7a\xbc\xcc\xf9\x7f\x8a\x6a\x4e\x60\xd5\xef\x19\xda\x45\x68\x7c\xe8\xd3\xbe\x03\xad\x9a\x57\x3d\xee\x57\xa3\x71\xfa\x4b\xe3\x54\x04\xde\x57\x75\x17\x72\x7d\xf9\x3d\x42\x92\x0f\x47\x1f\x40\xbe\xaa\x1e\x3e\x19\xf9\x6a\xce\xe3\x0f\xe2\xb5\x43\xbc\x2a\xcf\xa1\x7b\x91\xae\x9c\xfe\xfe\x21\xfb\x3f\x82\x70\xfd\xe5\x51\xec\x7b\x93\xad\x07\x1b\xbe\x7f\xaa\xf8\x58\xfd\x26\xed\x07\x7b\x3d\x1c\x78\xfc\xfb\x7d\x23\x3a\x87\x8f\x7d\xbc\x83\x7f\x0d\x78\x87\x35\xc0\x47\xea\x43\xa4\xa5\x07\x3a\x8f\xfe\xf2\xc8\x24\x10\x2f\x70\xaf\x6a\xa6\xef\x48\xbb\xa2\x72\x42\x6f\x62\x70\xc8\x7e\x55\x04\xbf\xfb\xc5\x37\xec\x0f\x9d\xe5\xef\x47\x67\x19\xf6\xf1\x3c\x05\xb3\x89\xaf\xc4\xfb\x48\x80\x2e\xe0\x57\xa6\xe0\x39\x00\xd4\x0f\x73\x0b\xfd\x03\xd2\xff\x80\xf4\x0f\x80\xf4\xde\xf8\x14\xef\x0f\xf4\x15\x5f\xc4\x9e\x87\x70\x8c\x21\xdd\x09\xf2\xda\x0b\x76\x67\xe0\x8a\x4f\x45\xe3\xa8\x65\xbc\x56\x33\x30\x9b\xa6\x0a\x9f\x5e\x23\xc2\xd1\x12\xde\x9d\x37\xaf\x7a\x55\x14\xd0\x68\x83\x9a\xbf\x5f\x6e\xc4\xc4\x4a\x55\xe4\xe9\xb3\x54\x51\xe3\x9c\x9b\xf6\x87\x1e\x56\x19\x5c\x42\x01\xc0\x92\x55\xbe\xe0\x94\xdd\x3e\xa3\x2c\x1c\xad\x2b\x91\x19\x4d\xb6\xdb\xbb\xda\xcf\x98\x25\x73\x1c\x36\x47\x23\x2a\x78\x81\x8d\x1b\x72\xa5\x35\xad\xe8\xbc\x71\xee\xbd\x0b\xc7\x0b\x6e\x9f\x7f\xd3\x02\xd4\xb0\xf4\x22\xf0\xea\x44\x4f\x0d\x50\xf0\x9f\x81\xd7\x4b\x19\xe8\x05\x32\x00\xd9\x60\x41\x49\x49\x0b\x94\xdc\xe4\x8c\xc4\xd1\xcc\x05\x9b\xb9\xb9\x29\x68\x29\xee\x4a\x89\xf8\x50\x34\xfe\x99\x12\x04\x87\x17\x15\x1f\x1a\x56\x4e\x17\x0a\xce\x9b\x50\x2e\x2a\x56\x9b\x24\x92\x51\x9d\x4b\xc4\xbf\x55\xa7\xe9\x5e\x0f\xe5\xcf\x2a\x55\xbe\xea\xab\x20\xf4\x60\xb5\x59\xe6\x1c\x05\xaa\x7f\xa8\xed\x5c\x60\x38\xc8\x41\x0d\xdd\xa2\xc0\xf5\x7d\xff\x01\x43\x89\x16\xe5\xf6\x1b\x3a\x16\xb5\xe0\x9a\xd5\x6e\x40\x10\x77\x23\xe4\xe1\x2a\x19\x03\x67\xf8\xf2\x12\xb1\x58\x3b\x2d\x6b\x67\xf2\x08\x22\x05\x0f\xc6\xc9\xbc\x6f\xa7\xcd\x77\xb9\xd7\x7e\x91\xd7\xa4\x0d\x31\x0d\xc0\xa0\xf6\x44\xb8\xef\xd7\xae\xa6\x82\xcb\x8e\xe7\x76\x20\xb0\x81\xa9\x25\x67\xb3\x6e\x35\xb0\x09\x1c\xc3\x31\x52\x1c\x24\xe9\xd8\x23\xb6\xf7\x3a\xb2\xee\xf4\x8e\x27\x77\x9f\x19\x4c\x13\xb6\x3a\xec\xe8\x2d\x58\x74\xdc\x76\xf4\xc6\xca\xd1\xbb\xe2\x8b\x5d\x53\x0f\x85\x70\xb8\xdf\x0a\x80\x9e\x85\xe5\x94\x76\xb9\xa3\xa3\x1d\xef\x40\x58\xae\xf2\x0b\xc4\x87\xb7\x45\x5c\xa3\x2e\x41\x25\xf0\xd1\x68\x92\x65\x82\xcd\xfd\x38\x56\x66\xae\xcd\x44\x81\xf2\x92\x0f\x4f\x23\x43\x71\x71\xf1\x22\x0b\x08\x68\x62\x39\x6c\xb7\x6c\x16\xc9\x9f\xc7\x48\xc6\x76\x90\x91\x23\xc5\xf3\x92\x65\x78\x34\x8a\xbb\x2c\x74\x3b\x7e\x44\x04\xda\xb1\xfa\x09\x00\x8a\x50\x51\xeb\xf6\xb1\xed\x97\xfe\x5a\x72\x32\x94\xe3\x0e\xe5\x26\x0e\xe5\xc8\x70\x68\x83\xa5\xc3\x21\x65\xc3\x28\x02\xc3\x9b\xbc\x1c\x6e\xf2\xb2\x54\x58\xd9\xed\x63\xa8\x4e\xf6\x4b\x9b\x9b\x0e\xf5\xc5\x06\xe8\x00\x08\xbd\x46\x8c\xe1\xa5\xa0\x7d\x6c\x46\x92\x6e\x4e\xb0\x8f\x0b\x1f\x66\x1c\x97\xfc\xfd\xff\xd9\x7b\xb3\xf6\x36\x8e\x63\x61\xf8\x9e\xbf\x02\x98\x37\x07\x99\x0e\x1b\x20\x40\x52\x1b\xa8\x31\x2d\x6b\xb1\x75\x62\x59\x8a\x44\xdb\x71\x60\x1c\xbe\x43\xa0\x41\x4c\x34\x98\x81\x67\x1a\x94\x68\x02\xcf\x93\xc4\x4b\x9c\x38\x9b\xcd\x24\xce\x62\x29\x89\x97\xc4\x8e\xb3\x58\x49\x9c\x68\x89\xed\x0b\xed\xef\x85\xcf\x6f\x20\x2f\x75\xf3\xfd\x85\xef\xe9\xbd\x67\x03\x40\x91\xb2\x9d\x44\xc9\x63\xb1\xd0\xdd\xd3\x55\xbd\x55\x57\x55\x57\x57\x0b\xb9\x13\xd1\xa7\x61\xc5\x43\xb1\xa9\xa1\xba\x49\x81\x31\xc3\x75\x33\x0b\x88\xba\x3b\x1b\x50\x7b\x1b\x8b\xc4\x14\xdd\xd0\xd3\x9f\x63\x36\x6d\x6b\xcb\xe6\x0f\x45\xde\x56\x4c\x20\x03\xd3\x06\xfd\x7e\x0c\xd5\x30\xf1\xbe\xdf\x37\x6a\x2c\xce\x7e\xee\x80\x68\x72\xdd\xb0\x2c\xe1\x56\x2d\xe3\xc9\xcb\x77\x86\x59\xcc\x72\xa5\x18\x24\xac\x69\x1a\x7e\xb2\x81\x8c\x27\x49\x87\x5d\x22\xf5\x64\x0a\xd1\xa6\xf6\x96\x74\x5c\xde\x71\x5a\x26\x2a\xb5\x6d\xc6\xf4\x94\x62\x23\x17\x1a\x98\x18\x1a\xb2\x7d\x0b\xf3\x80\x57\xed\xeb\xcb\x22\x88\x4b\x53\x38\xf2\xc6\xab\xdc\x07\x89\xb4\x34\x18\xd4\xf9\xcb\xd5\x76\x72\x09\x75\xed\x65\x54\xc4\x0e\x76\x91\xd4\x19\x55\xd2\x98\xab\x48\x9e\x69\xe3\xf4\x9d\x98\xd6\x84\xb4\x27\xa3\xb7\x75\x1c\xcd\xf5\x3d\xdd\xaf\x3f\x16\x52\x87\x34\x60\x81\x60\x7d\xd4\x09\x33\x23\xeb\xb4\x91\xdd\x3c\x64\x63\x3b\x2b\xdf\xf1\x1c\x9c\x88\x66\xc2\x54\x1f\x33\xa9\xe6\x44\x50\x1a\x80\x69\x93\x6b\x8e\x08\x9a\xb3\xdc\x73\x9a\x44\x4c\x17\x2f\xa9\xa7\x05\xbf\x91\x2e\xaf\x23\xea\x96\x11\x63\xf8\x1d\x82\xb5\x01\x0c\x24\x3f\x70\x4a\x4e\xd3\x4a\xc1\x09\x9d\x12\x1d\x07\x0b\xf1\x67\x5a\x88\x54\xc1\xa8\x94\xcf\x67\x07\x3d\xaf\x14\x36\xda\x88\x74\xfe\x71\xaf\x81\x4c\x83\xde\x08\x17\x2f\x68\xc7\xc9\x12\x1d\x68\x00\x88\xa1\x07\xa0\x61\xa4\x46\x81\x89\xe9\x2f\x19\x6d\x0a\xd2\x88\x9e\x40\xa5\x00\x75\xfc\x15\x22\x22\x4c\xc4\xfa\x46\xd7\x83\x5c\xdf\x3f\xdd\xeb\x9a\x46\xe0\xf7\x30\x0a\xaa\x1d\xdb\xf1\x68\x37\x99\x5e\x69\x91\xa5\x1d\x73\x1a\x81\xef\x3a\x4b\xfd\xbe\x57\x62\x29\x44\xe9\x01\x25\xbb\x81\x9d\x15\xb4\x10\xd8\x5e\xe8\x60\xe6\xa1\x90\xdd\xcc\x09\x67\xde\x21\x9c\xa9\xe3\x84\xa8\xc4\x15\x7a\x5d\x53\xf3\xd5\x2b\xdc\xa8\x29\xbc\x12\x47\x74\xaa\x0f\x31\x11\x3f\x41\x75\x2b\xa5\x07\x11\xd5\x7e\xd8\x92\x96\x2a\xb4\x4a\xcb\x7c\xc0\xba\xe1\x77\xef\xdd\x3b\xd5\x29\x8b\x36\xa6\x5c\xaf\x8d\xb3\xe0\x34\xae\xe2\x9f\x46\x5e\x28\x66\xe5\x01\x13\x24\x8b\x30\x5e\x6b\xc0\xb2\x38\xed\x64\x93\xe9\xf0\x59\x27\xc4\x8e\xb7\x4c\xa7\xdf\x82\xbd\x6c\xd2\xe8\x45\x94\xcc\x53\xa8\x6b\xd3\xcd\xaa\x6a\xe4\xfa\x39\x43\x24\x9f\x08\xe8\x83\xc3\xd5\x7c\x59\xa4\x9c\x44\x5d\xd7\x6e\x70\x65\x9f\x91\xc2\x60\xca\xa2\x17\x48\xc2\x21\x56\x32\x4c\xd1\x09\x13\xb1\xac\x62\xd8\x8d\x88\x7c\x1d\x2d\xc4\x69\xa1\x4a\x41\x46\x11\x4e\x9c\x01\x26\x98\x18\x48\xb6\x03\x5e\x33\x11\xbc\xd5\x2f\x8b\x6c\x3d\xbc\x48\x97\xd5\x5b\x28\x90\x84\xbc\xc5\x4a\xf2\x44\x2b\x50\xe5\x02\x56\xb9\x28\xe7\xd1\x72\x3c\xd1\xf2\x88\x22\xe5\xb5\x51\xe0\xe0\x23\x81\xdf\x39\x11\xa0\x15\xc7\xef\xa5\x75\x01\xad\x9b\x66\x4e\xe0\x42\xc1\x1c\x49\xa8\x82\x53\x48\xd6\x28\xc5\x02\x02\x60\x00\x09\x7b\x4b\xd1\x90\x99\x36\x48\x07\x8d\x2c\xe3\xe6\x43\xab\xa6\xe1\x10\x35\xb0\xe4\x34\xe9\xcd\x00\xc9\x89\xf5\x92\xe2\x55\x2d\xfa\xb8\x0b\x3d\x44\x25\x0b\x06\x98\x5a\x19\x22\x9f\x05\xaa\x61\x72\x37\x16\x29\x96\x0f\x11\xb5\x3c\x5a\x01\xfd\x03\x79\x24\xad\x44\x87\x99\x42\x67\x4d\x4e\x27\x92\xe5\xd0\x37\xc6\x1a\xc8\xf4\x60\x85\xa8\xb7\x74\x71\x8d\x5a\x20\x0e\x00\x03\x76\xa4\xaf\xb7\x8a\x9d\xda\x16\x99\x65\xdb\x16\x5d\xc9\xa8\xb5\xa1\xcd\xa8\x45\xc3\x08\x1d\x46\x29\x77\xdb\xca\xe8\xad\x09\xe1\x8d\x3d\x7a\x75\x87\x43\x96\x77\x7c\x15\xf0\x74\x30\x59\x01\x03\xc8\x96\xfc\x56\x26\x01\xd3\xb6\xe9\xf0\x38\xfa\x68\x92\x99\xee\xa9\xce\x71\xa8\x66\x6d\x3a\xac\x87\x3c\x00\x55\x51\xfe\xb9\x45\xe6\x69\xc4\xe7\xfe\x80\x99\xd1\x13\x60\xc2\xe7\x3b\x1d\x97\x90\x83\xd1\x5d\xe2\xdf\x45\x97\x14\x49\x97\xac\x38\xa1\xb3\xe4\xa2\x05\xc6\xb5\xe2\x16\x3e\x81\x26\x2e\xee\x2a\x15\x27\x5e\x39\xff\x02\x40\x6c\xa1\x79\xa1\x29\x54\x89\x32\x51\xab\xcf\xe1\x62\x71\x4e\xac\x26\xaa\x33\x10\xe5\x54\xf0\x0b\xb0\x16\x94\x7a\x1e\x0b\xc4\xe3\x81\x89\xa5\x00\xd9\xa7\x07\x7a\x92\x32\x90\x0f\x00\x0c\xfd\x00\xa3\x66\x06\xd9\x91\x46\x25\xa9\x4f\xa7\x3c\xfa\x11\x61\xba\xf9\x32\x7d\x8e\x4f\x8a\x58\x07\xa8\xff\x93\x5a\xc9\x69\x2f\xf0\x51\x45\x40\x70\x9d\xb5\x80\xc6\xcb\xcd\x57\x78\x3d\x6c\x86\x7b\x40\x5c\xbe\xf0\xc8\x3a\xf3\x0b\x05\xd3\x44\xfa\xb2\x40\x00\x68\xdc\xce\x8f\x70\x3b\xd9\x1f\x08\xb0\xc7\x04\x83\x7e\xdf\xd4\x48\x95\x28\xa0\xf6\xd8\x1f\x74\x4a\x01\x6a\xf6\x1a\x28\xe6\xe1\x21\x5b\xc2\xd5\x1a\x0c\xe4\xb3\xff\x42\x3c\x1f\x6f\xd4\xf5\xd1\xa0\x63\x5f\xab\xc3\xc0\x2a\xd3\x47\xc2\xb9\xb2\x18\xec\xf7\xe6\x82\xc9\x49\xf9\x70\x7f\x2d\xa8\x4f\x70\x31\xb4\x50\x30\x31\x97\x3e\x59\x02\x80\xc1\x64\x65\xbf\x57\x28\xc8\x64\xd5\x05\xea\xd1\x7a\x29\xbb\x0e\x60\xc6\x66\x1e\xd3\xd0\xf2\x6c\xe3\x6f\xdb\xe1\x11\x3b\xc4\x4b\xbe\x8f\x4d\x00\x54\xa3\x9a\x7e\x83\xaa\x59\xa4\x5d\x87\x5d\x44\x35\xae\x87\x56\x17\xec\xe5\xc7\xec\x0e\x32\xb9\xe6\x42\x1a\x57\x8e\x2b\xc1\x9c\x8b\x30\x35\xb8\xd4\xb5\x03\xe4\xe1\xc7\xfc\xa6\x10\x58\x0f\xb6\x1d\xb7\x69\x06\x60\x30\x80\x3a\xf2\xa4\xbd\x3c\x9f\x1f\x2a\xd1\x72\xf9\xad\xda\xe2\x15\x18\xa3\x85\x3f\xff\x0c\x0a\x8a\x21\x72\x51\x83\x05\x87\xf5\x3d\xd2\xaa\x29\x3d\xbd\xd8\xe9\xb9\xd8\xe9\xc6\xe3\xdb\x3f\xc8\x6a\x68\xa2\x86\x4f\x3b\x3e\x54\xdf\x4b\x21\x31\x52\x3d\x51\xa3\x5d\x1b\xa3\x70\x0c\x44\x69\xdf\x33\xc3\x9e\x7c\xd6\xad\x65\xbb\xee\x92\xdd\x38\x5d\x74\x5a\x45\xf5\xda\x5e\xf2\x89\xde\x98\x54\x4a\x67\x97\x7a\xae\x1c\x36\x60\x0b\xb6\x61\x13\x76\x61\x47\x69\xa6\x2b\xca\x8c\x67\xae\xfc\xfb\xbc\xad\x47\x38\xc7\x40\x36\x72\x55\xf5\x50\x50\x28\x64\x49\xeb\x38\xf2\xf0\x63\x50\x52\x3f\x20\x3b\x44\xea\x89\x1c\xfd\x27\x14\xaf\x3b\x56\x83\x92\x00\x21\x13\xf5\x89\xf2\xec\x60\xc7\x76\x9d\x67\x51\x30\x1f\xf9\xc5\xac\x36\x1e\xa8\x32\xf9\x7f\xa0\x11\xbb\xcc\x18\x92\x7a\x4e\xaf\x3c\x17\xec\xc7\x92\x77\x88\x35\xe6\x59\x98\xf0\x0d\x4f\x23\xd3\xd2\x7f\xf4\xfb\x84\xd7\x46\x48\x25\xac\xd1\x60\x4f\x40\x3b\xec\x4d\x47\x4f\x92\x6c\xe5\xcb\xd9\x4f\x63\x7a\xa5\xd3\x68\x15\x7a\x60\xa0\xa8\x5c\xd2\xe6\xcd\x92\xb0\x4e\xb1\x23\x12\x36\x28\xc7\x5b\xf3\x3c\x75\x39\x92\x9a\x3a\x15\x4a\x8b\x8b\x74\x34\x17\x17\xfb\xfd\xd4\xaf\x28\xef\x8e\x8c\xe9\x22\xdf\x62\xa4\xe7\x27\xd2\x2c\xcc\x27\x51\x0b\x05\xc8\x6b\x08\x0b\x17\x61\x1e\xb9\xb6\x1d\x7a\x5f\xc4\xb9\x25\x84\xbc\x9c\x18\x8a\x10\x35\x73\xc5\x1c\xd7\xa5\x22\x25\xc8\x00\xa1\xa6\x72\xa8\x42\x0a\xf5\x19\x7d\xcb\x30\xcf\xa4\xb7\x5e\x37\xfb\x45\x36\x18\xd9\x54\x0b\x43\x3a\x51\x21\xd6\x9a\x75\x58\x7f\x6f\x9b\x6d\x8d\xea\x94\x92\x23\x3a\x8d\x56\x43\xd3\x03\xa9\x9b\xae\x5f\x43\x75\xcb\xab\xa1\xfa\x00\x40\x5f\x9f\x1b\xf9\xbc\xfe\x13\xfa\xb1\x99\x91\x8f\x26\x40\x53\x4d\x14\xbf\xdf\xf7\xf5\xb9\x0b\x0a\x05\xd3\x8f\x4e\x1c\x22\xde\x33\x89\x19\x94\x02\xb4\x82\x82\x90\x41\xd1\x8d\x96\x2d\x40\x7e\x34\xc3\x1d\x2e\xfa\xfd\x60\x00\x7d\x2a\x33\xca\xc3\xb8\x08\x36\x8a\x8c\xd2\x12\x4d\x9f\xf7\x93\xeb\xc9\x11\xeb\x09\x46\x32\xb9\x92\x0d\x94\x97\x70\x1c\x43\x36\x4b\xf0\x49\xe3\x88\xc0\x0a\xa0\xbf\x43\xc6\xb9\xb3\x96\x78\xb4\x02\xb3\x0d\x15\x50\xab\x93\xcf\xd2\x5c\x7b\xd5\xef\x61\xfd\x29\x6f\x68\x93\x1c\x4f\xf9\xa6\x1a\xa9\x5b\xc9\x14\x3f\xc7\xa3\x2e\xc8\xd1\x0f\x18\xfd\x3d\x2b\x21\xd3\xb2\x2f\x0e\xba\x76\x48\x64\x15\x37\x59\xc0\x5e\xe2\xa7\x06\x46\x88\xec\xa0\xd1\x3e\xec\x91\x31\x6f\x1a\x50\x7e\x2b\x77\x42\x00\x1b\x31\xb4\xd1\x05\xa0\x18\x9a\x49\xd6\x8a\x4b\x0f\x73\xfa\xfd\x5a\x1d\x88\xf7\x9c\x89\x86\x51\xac\x88\x27\x42\x05\xc7\x73\x26\x27\x81\xd3\x32\xe5\x5d\xd6\x67\x7a\xb6\x6b\x06\x35\xa7\x0e\x11\x00\x6b\x9e\xe5\x08\xf9\x98\x4f\xac\x07\x8a\x95\xf9\x40\x53\x04\x41\x35\x90\xea\x14\x11\x0b\x1c\xb3\x65\xf9\xa6\xd9\xb4\x0e\x9b\x66\x3b\x72\x9a\xa5\x99\x6b\xb9\x64\xcc\x16\xe2\x9c\x99\xf0\xdf\xc9\x9b\xca\x1e\xee\xb7\x72\x18\xa4\x1f\x6f\x1d\xb4\x3d\xcf\xc7\x94\x97\xe4\xec\x1c\xf5\x3a\xc8\xd9\x61\xce\x96\x27\x66\x06\x61\x6b\x54\x70\xc4\xca\x2e\xee\x27\xed\xe2\xb6\x66\x17\xf7\xc9\x00\x97\xe7\xc2\xfd\xfe\x5c\x38\x39\x09\xec\x5a\xa8\xdb\xc5\x43\x69\x17\x67\x6a\x3a\x5c\x25\x32\x31\x99\x71\xc8\x5a\x32\x31\xa0\xb1\x51\x5c\x6e\x32\x47\xb0\x46\xca\xc8\x93\x14\x1b\x00\xd0\xef\x8b\x97\x7e\xf3\x96\xb5\x62\x3a\x40\xdf\xa7\xe5\xdb\xe2\xce\xfc\x22\xd9\xbe\x9c\x94\x89\x00\x9b\x70\x91\x9e\x5d\xae\x9a\x01\x34\x58\x20\x44\x7e\x32\xae\x15\xea\x46\x0a\xf5\x1c\xb7\x79\x8a\xce\x09\x1a\x94\xa1\xc3\x33\x83\x81\xf4\xbc\x9e\xc8\x72\xa5\x4a\x21\x0e\x0b\x2b\x8c\x85\xd3\xc7\xe5\x14\x61\xf8\x39\x74\xb6\x1b\xa0\x30\x24\x23\x4e\x43\x58\x20\x07\xb7\x51\x90\x5b\x42\x39\xf2\x75\xce\x0f\x22\x03\x35\x81\x94\xc4\x11\x8f\x72\x43\xc5\x73\x91\x09\xd7\x34\xd1\xa5\xca\xd9\x81\x26\x27\xe4\xcb\x51\x79\x22\x5f\xa6\x5a\x46\xa1\xc0\xf6\x95\x81\x89\xb9\x9e\x2a\x7b\x8b\x68\x60\x18\x9a\x9e\x55\x5b\x3b\x8d\x56\xab\x46\xdb\xf6\x9a\x2e\x3a\xde\x45\x9e\xc1\x45\x8d\x44\xaf\x50\xf9\xde\xf7\x48\x99\x42\x21\x5f\xb1\x2c\x4b\x4b\xa1\xa5\xf8\xc9\x4c\xbe\xc2\x1c\x2a\x5a\x7e\xa3\x17\x1e\xf5\xba\x3d\xaa\x4f\x0d\xa0\x8e\xe9\x08\xc9\x4b\x47\xc5\x6b\xa5\x25\x0a\x05\xfd\x17\xcd\x87\x23\xeb\xfe\x32\x5a\x6d\xfa\x67\x32\x1a\xa2\x7b\x57\xf9\x1e\x2f\x1a\x6d\x0f\x4f\xa4\xe5\xe7\x09\x67\xc1\x7e\x97\xb0\x66\x7b\x99\x3d\x12\x04\x60\xbe\x02\xaa\x95\x19\x7a\x14\x7d\x1a\xad\x1e\xf4\x9b\x34\xb8\x85\x13\x92\x9e\x48\xff\x42\xbd\x1d\x5f\x6a\x3b\xcb\x6d\xd7\x59\x6e\x63\xd4\x9c\x47\x92\x6d\x15\x0a\xf4\x99\x7c\x95\xa0\xde\x96\xd7\xbf\x00\xf3\x26\xa2\xa6\x74\xdf\x0b\x4b\x0d\xd7\x0f\x91\x89\x19\x3d\x7a\x7a\xdb\x27\x19\x91\x0f\x61\x4a\x31\xed\x73\x29\x36\x8a\xae\x54\x1d\x9c\xec\x47\xa6\x88\x0b\xfb\xa2\xd4\xec\x9e\xe9\xa1\x60\x95\x2d\x39\xb2\x22\xfe\x4f\x52\x0d\x29\xf2\x95\x2d\x77\x98\xa2\x43\x30\x14\x0d\x19\xb3\xb8\xd4\xf3\x9c\x67\x7a\xe8\x68\x13\x80\x09\xba\x06\x28\x1d\x26\x18\x48\xc2\x58\x49\xe4\xd9\x44\x27\xd6\x77\x9b\xf8\xab\xea\x4c\xef\xac\xa5\x68\x43\x0a\xbd\xd8\xe0\xa2\x5e\x77\xfa\x26\x46\x06\x96\xf2\xfa\x44\x0e\xd9\x8b\x99\x92\x9c\x33\xd4\x14\x14\xc3\x97\x20\x87\x21\xa8\xd5\xe3\xae\x59\x4a\x7e\x61\xb6\xd6\xf9\x5a\xbd\x8a\xb4\xd6\xb2\x8d\x73\xc1\x5e\x3a\xca\xb6\xcd\xd4\x6a\x47\xec\xdf\x62\x6e\xc7\x19\x2b\x5f\x5e\x91\x8d\x78\xde\x28\x56\x8c\x2a\x2b\xce\xf7\xea\x7e\xdf\x28\x1b\x83\x41\x1d\x14\x0a\xcb\x66\xa0\xb1\x25\x8f\x4a\x59\xcb\x66\x00\x1d\x00\x31\x3d\xc3\x55\x99\x29\x6c\xbc\x66\xd7\x29\x2b\xd3\x39\x15\x8c\x3e\x8d\xaf\xf3\x34\x4d\xa2\xa2\x26\xff\x01\x80\x5d\xeb\xb0\xd9\xd6\x91\x64\x6d\x06\xb5\x70\xbb\xa8\x62\x88\xb2\xe7\x5d\xad\x57\x87\x4a\xc5\x38\x7e\xc6\x13\x72\xdc\x21\x14\x36\x02\xa7\x4b\x56\xc3\x78\x55\x01\xa8\x95\x4b\x50\xa0\xa6\x56\x2d\x2a\x55\x6d\x11\xbd\xac\x67\x38\xba\xe4\xd4\xab\xb9\x5b\x6e\x68\xac\x8a\xe1\x18\xf5\x4d\x88\x37\x71\x91\x31\xab\x2d\xe2\xd5\x2a\x1a\x07\x23\xdf\x8c\x76\x00\x25\xab\x69\x1c\x9c\x72\x93\xda\x01\xac\xa2\xae\x18\xde\x4e\x62\xad\xc4\x64\xa2\x5a\x63\xbb\x6b\xa4\x65\xb5\x89\x78\xd7\xa2\xff\x69\xc6\xb2\xb3\x89\x07\xc2\xb6\x64\x2c\x93\x8c\xeb\xd3\x32\x9a\x49\x84\x23\xdc\xf7\xa9\x99\x04\x6a\x26\x30\x65\xf6\x6a\x68\xe6\x8b\xc6\xbf\xab\xd9\xab\xf5\x2f\x61\x49\x6a\x6b\x43\xd1\xfe\x2c\x2c\x49\xcd\xcf\xce\x92\xd4\x8d\x58\x92\xba\x3b\x6a\x49\xea\xdc\xb7\x24\xfd\xbb\x5b\x92\x56\xac\x33\x8e\xd7\xf4\xcf\x14\x0a\xec\x6f\xc9\xb3\x57\x9c\x65\xca\x96\xe2\x09\xa5\x5e\x88\x82\x03\xcb\xc8\xc3\x55\xc3\x80\xab\xd6\x8a\xd4\x58\x8c\x63\xa7\x8e\x1e\xce\x19\xe0\x81\x62\xa5\xdf\xd7\x92\x17\x02\xa7\x89\x3c\x3c\x45\x73\xe0\xb2\x65\x7a\x29\x46\x2b\x27\xd3\x68\xe5\x27\x8c\x49\x8c\x8b\x97\xd6\x98\x00\xbb\x80\xce\x0a\x56\x04\xa5\x16\xc5\x7e\x0f\x68\xcc\xb5\xf8\xe7\xf4\x64\xb4\xed\xbb\xd4\xe1\x47\x54\x16\xfb\xd2\x00\xd0\x33\x43\xcb\x31\x4d\xd7\xea\x98\x66\x6f\x2c\xf3\x8e\xd8\x1f\x3e\x6d\x33\x4f\x2b\x69\xe6\xe9\x6a\x66\x9e\x16\x91\x09\xca\x73\x9d\xfd\xad\xb9\xce\xe4\x24\xe8\xd6\x3a\xba\x99\xa7\x13\x37\xf3\x48\x23\x4f\x7b\x94\x91\xa7\x1b\x37\xf2\x34\xb2\x8d\x3c\x4d\x66\xe4\xf1\xad\x00\xda\x96\x81\xd1\x59\x7c\x0c\xd9\x61\x2f\x20\x63\x10\x5a\x2e\xec\x59\x4d\x33\x00\x30\xcc\x3a\x55\x21\x5d\xab\x9f\xaa\x84\x99\xa7\x2a\x61\xc6\xa9\x4a\x18\x3f\x55\x09\x23\x6b\x37\x4c\xae\xdd\x9e\x3a\x55\x81\x41\x69\xd1\xb5\x43\x7c\x94\x2a\xfb\x56\xbe\xf2\x1f\x66\x51\xea\x8e\x6b\x51\x6a\x3a\xcd\x93\xa8\x81\x9c\x15\x74\x00\xe3\x20\x69\xeb\x91\xf7\x20\xa8\xd1\x45\xc8\xa5\xf4\x06\x15\x57\x4a\xb1\x69\xc8\x74\x03\xf2\x44\xf2\x83\xf0\x2e\x66\x6c\x29\x14\xf2\x5a\xba\x4c\xcc\xf4\xf0\x63\x96\x0f\x03\x32\x67\x32\xed\x4b\x61\x13\x61\x9c\x04\x1a\xba\x46\x8f\xfd\x00\x51\x4b\xc8\x29\xbc\xea\xa2\x14\xab\x95\xb0\x84\x70\x0e\xb9\x8c\xf0\x41\xce\x63\xe8\x17\xd4\x4c\x6c\xe1\x52\xcb\xf7\x58\x15\xf4\x7e\x3e\xf9\xf5\x84\x1d\x38\xb6\x87\x59\x24\x5e\xdf\xc3\x4f\x22\x67\xb9\xcd\xc2\xf1\xd2\xc2\xce\xb3\x2c\x7a\x93\xeb\x78\xe8\x11\x96\x17\xf2\xbc\x23\x76\xc7\x71\x57\x27\xb8\xb7\x50\xb7\x87\x8f\xf8\x1e\xb6\x0c\x69\x49\x09\xa0\x91\x33\xa4\x4b\xb5\x17\xf9\xe5\x44\x7e\xf9\xd0\x98\x52\xbf\xec\x48\x5e\xa8\xba\x81\x19\x95\x98\xa2\x9d\xdd\x05\xa8\x84\xed\x60\x19\x51\x11\x89\x8c\xbb\xb3\xd4\xc3\xc8\x34\x9a\x36\xb6\x8b\x82\xb3\x16\xd9\x01\x00\xf5\xff\xc2\x60\x0d\xa5\x98\xcb\x98\x6b\x14\xf2\x30\xf7\x70\x32\x45\x70\x71\x6d\xcc\x50\x93\x7b\xf0\xe8\xe3\x28\xb2\xd8\x1d\xcf\xe4\xf8\x72\xd3\x58\xa0\x19\x94\x98\x0e\x95\x69\xea\xe2\x46\x41\x9a\x1f\xb5\x13\x0a\xf3\x63\xbf\x9f\x86\xc9\xa7\x56\xd1\xb1\x6d\x93\xba\x89\x75\xb8\x55\x52\x73\x80\x4f\xb3\x4c\x92\x5e\xdd\x4b\x44\x4e\x61\x9a\xe4\x6e\x33\xc9\xb2\xd1\x9b\x28\x72\xe4\xd8\xb5\x5c\x31\xa0\x69\x9d\x5b\x4b\x4b\xe4\x1b\x4e\xb1\x52\xa7\x6e\x86\xe9\x8b\xcb\x95\xe3\x15\xd5\x45\x4d\x1c\x5b\xdf\x00\xaa\x90\x60\x82\x61\xce\x67\x2f\x58\x13\x83\xea\x90\x5c\xcd\xa3\x06\x6a\x16\xaf\x23\x0e\x72\x9b\xc2\xab\x2e\x7d\xf8\xc0\x80\x3a\x02\x99\xb2\x37\x1f\xb0\x66\xf7\x12\xa5\x8a\xff\xdc\x6f\xed\x2b\xf7\xfb\x33\xd3\x91\x0e\x27\xf9\x89\xee\x4e\x58\x08\xd9\xec\x1d\x6a\xa5\x46\x25\xb6\xa5\x1e\xc0\xf3\x0a\x24\x6d\xd5\x2f\x97\x62\x55\x35\xd7\x62\x8f\x71\xad\x56\x31\xad\x84\xd9\x50\x1e\x7f\x0d\x61\x92\x69\xdd\x12\xa0\xae\xcf\xfc\xb7\xa3\xdd\xa6\xcc\xd8\x44\x48\x8e\x7a\x30\x25\xd6\xa6\x74\x92\x13\x7b\x40\x39\x62\x7e\x95\xec\x8c\xde\x5d\x63\x96\x48\x4d\x4c\x28\x9d\x71\x9a\xb8\x1d\xab\x59\xc8\x7f\x30\x5a\x83\x74\xdc\xe3\x37\x5b\xda\xb8\xe3\x9e\xb2\x5b\xc8\x34\x68\x25\xd5\x9c\xb2\x3c\x4f\x4e\xef\x82\x46\xf7\xac\xa1\x7c\xa0\x86\x7f\x59\x29\x97\xff\x6b\x4e\xdb\x26\x3a\xf6\xea\x12\x3a\xa1\x4b\x94\xc9\x2e\xcf\xaf\x02\xbd\xa1\xdb\xea\xbb\x79\x83\x5b\x69\x35\x29\xb6\xdf\x37\xb8\x9d\xb6\x95\x62\xa7\x6d\x65\xd9\x69\x23\x32\x58\x2d\xed\x92\xc6\x76\xed\x44\x1d\xb3\x97\x62\x19\x4e\x9b\xa7\x35\x7f\xb4\x09\x6c\xcc\xba\x68\xd8\x61\xcd\x1c\x16\xfd\x2e\x39\x5e\x35\x7b\x8b\xa8\x13\x55\x0c\xc7\x98\x14\x24\xb6\x6a\xfb\x1b\x5e\xdd\x70\xec\xd1\xfd\x7b\x5b\x98\x23\x55\x0d\xc7\x1a\xd9\x5c\xb7\x85\x54\xaf\x69\x1c\x9c\x77\x6d\x60\x1d\x52\x57\x0c\x6f\x68\xf5\x88\xde\x13\xd2\xff\x34\xeb\xe7\xf2\x5d\xb9\x0a\xde\x6b\x63\xe7\x36\x1c\x03\xc7\xf9\xd2\x67\x47\x30\xc5\x8e\x8d\x1b\x6d\xaa\x50\x67\x7e\xb3\x1c\xf8\xbd\x6e\x91\xc2\xda\x95\x18\xaf\xd1\x0b\x02\xe4\x35\xe2\x37\x63\x94\x4a\x9d\x62\x8c\x4d\xf8\x21\xc2\x15\xb8\x0a\x97\xe1\x12\x5c\x84\x67\xe0\x61\x78\x16\x9e\x82\xc7\xe1\x01\x78\x1a\x2e\xc0\x83\xf0\x18\x3c\x09\x4f\xc0\xaf\xc3\x43\xf0\x31\x78\x14\x3e\x0a\x8f\xc0\x67\xe1\x23\xf0\x21\xf8\x38\x7c\x12\x3e\x03\x9f\x80\x4f\xc1\x87\xe1\x97\xe1\x17\xe0\x57\xe0\x57\xe1\xd7\xe0\x7f\x43\x84\x20\x46\x30\x40\xd0\x43\xd0\x41\xd0\x47\xd0\x46\x30\x44\xb0\x87\x20\x51\x36\x91\xb2\xfe\xb6\x90\x66\x73\x6c\xa1\x7f\x57\xfb\x6f\x1b\xfd\x2b\xf9\x3d\x36\xd1\xbf\x84\xb9\xba\x8b\x3e\x3b\x73\x71\x07\x89\x73\x0e\x3e\x77\x3b\xc8\x32\xd4\xc2\x97\xd6\x8a\x93\xa8\x45\x16\x70\xa1\xc0\x01\xc2\x3e\xe7\x35\xb8\x1a\x3f\x36\x89\xc5\x2d\x92\xe3\x30\x97\x4f\xdc\x3b\x6e\xdb\xa1\xc6\x89\xf9\xed\x63\x88\x81\x34\x90\x98\xc8\x5a\x21\x7d\x04\xe6\xc0\x9c\x6c\x02\x8b\xe3\xe3\xb4\x4c\x4f\x78\xbd\x8f\x62\xec\x1e\xf9\x40\x5e\xde\x24\x0d\xa0\xff\x32\x84\x01\xa8\x3a\x4c\xf5\x19\x30\xbb\x37\x0c\xfa\x7d\x7d\xea\xaf\xe8\x2b\x7c\x05\x7d\x16\xc7\x0a\xab\x28\x62\xdc\x5f\xcd\x20\xe2\x2e\xad\xfb\xcb\xe8\xbe\x79\xff\xf3\x6b\xde\x57\x6e\xd2\x28\xea\xc8\xa4\x1c\x54\xa2\x0e\x29\xca\xad\x19\x45\xa6\x1d\xf6\xa9\x31\x78\x5e\x42\x26\xa8\xa2\x1d\x3a\x3d\x38\x83\xac\x35\x2e\x07\x54\x6b\x75\x18\xa0\x90\x5e\xcb\x54\xe0\x41\xbf\xe7\xe1\x6a\x59\x9a\xe7\x45\x9f\x69\x8e\x4a\x22\x49\xe9\x74\x55\xc3\x80\xae\x1d\xe2\x53\x34\x05\x35\x65\x9a\x6f\x37\x1d\x6f\xb9\x9a\xaf\x40\x27\x3c\x40\xaf\x17\x13\x78\x11\x9d\xed\x3a\x74\x26\x9d\x8a\x54\xb1\x18\xa0\x2e\xb2\xb1\xe3\x2d\x1f\x6c\xdb\x41\xd5\x30\x06\xf0\x30\xb2\xcc\x30\xe5\x0c\xa2\x97\x79\x06\xe1\xc6\x1c\x52\xc9\x0c\x8c\x3b\xa9\xe6\x2b\x00\xb6\x62\x69\xbe\x00\x8f\x31\xf1\x08\xc0\x76\xdc\x05\xf7\x51\xd6\x9c\x1c\xef\xc0\x52\xa9\x64\x00\xd8\x8c\x97\x7a\xcc\xcf\xf1\xbe\xcc\xb5\xfc\x1e\xbd\x9d\xda\x8d\x97\x59\x58\xed\x22\x16\x90\x89\xb4\xdf\x00\xb0\x93\x42\xf5\x4a\x16\x85\x8f\x68\xde\x66\x70\x35\xab\x14\xc1\x71\xa0\x8d\xec\xa6\x6c\xd0\x72\x0a\x92\xa5\x54\xb7\xe1\xc5\x61\xde\xc7\x53\xcc\xa3\x47\xc8\x93\x06\x80\x67\x86\x16\x57\xe5\x0e\x0f\x2d\x17\x39\xf7\xa7\x12\xa8\x01\xe0\xd9\xa1\x9f\x28\xf7\xe7\x53\x43\xcb\xb1\x7e\x2e\x76\x50\x18\xda\xcb\x44\xef\x3c\x3e\x9c\x92\x88\xc6\x78\x20\xd3\xc5\x59\x2d\xda\x01\x80\xa7\xe3\x55\x2e\xf5\x30\xa6\xea\xd7\x02\xc9\x71\xb4\x1c\x29\x81\x27\x27\xdd\xc1\x78\x59\x1c\x1b\x46\xed\xa3\xe4\x08\x1f\x1b\xee\xee\x0d\x8d\x6e\x6f\xc9\x75\x1a\x07\x4e\x1c\x2d\x89\x05\x69\x00\x78\x32\xf1\x55\x33\xf0\xbb\x44\x9f\x1a\xfa\xd9\x89\xe4\x71\x9d\x2c\xb6\xc6\x97\xbe\xc6\x24\x22\x1c\x66\x20\xbd\xcb\x25\x70\x4c\x0e\xce\xd7\x53\x8e\x11\x79\x51\x1d\x43\x8c\xe1\x44\xea\x17\xac\x67\x60\x00\x78\x88\x74\xa9\x5d\xc2\x76\x78\x1a\x98\x01\x5a\x46\x1e\x13\xe3\x4f\xf6\x3c\xec\x74\x50\xa9\x63\x07\xa7\xe5\xa0\xe6\x90\xa9\xc7\x7e\xe6\x3e\x24\xe2\xea\x65\xf2\xe3\x33\x81\xdd\x8d\xcc\x08\x2a\x42\xcd\x81\xf0\x8c\x83\x1b\x6d\x7e\x83\xd8\x62\x37\x9d\xc1\x5a\xc3\x0e\x51\xae\x5c\x15\xd5\x59\x15\xc8\xef\x55\xab\x76\x45\x99\x20\x3d\x78\xe0\x56\x4b\x7e\x71\xdf\x09\x1f\xeb\x75\xba\x76\xf3\xcb\x68\x95\x46\xdf\x33\x89\x1c\x66\x3a\x45\x6b\x76\x2f\xe1\x8b\xdc\x1a\xd6\x0a\xfc\x0e\xa9\x80\x7c\x68\x3a\x00\x9a\xa1\xd5\x13\xa6\xea\x2c\x64\xf3\xbd\x6a\x3c\x3f\x85\x53\x4f\xf6\x80\x8c\xa6\x36\x6f\xb2\x6b\x8e\x86\x01\xaa\x9e\xd5\x83\xb1\xcf\xc5\x69\x4f\x2c\x59\xf7\xaf\x0d\x26\xc9\xe8\xf8\xe2\x08\x9a\x99\x2c\xf8\x85\x60\xf5\x05\x67\x21\xf1\xfa\x75\xb7\xdb\x6a\x7e\x3c\xe4\x62\x63\xdb\x1e\x66\x51\x0b\xa8\x92\x0e\xa0\x99\x2c\xe4\xdb\x29\x6c\x63\x64\xae\xa5\x6e\x71\x63\x75\x6e\x7c\x17\xf4\x06\x9a\x6f\xb2\xe9\xb2\x11\x6c\x39\x5e\xf3\x49\x07\xb7\x8f\xb7\x5a\xe2\xc2\x73\x0a\xcd\x21\x0c\x60\xbe\x0c\x80\x30\xf6\xc7\xfb\x66\x3e\x9e\x2c\x6c\xc8\xb2\x5f\x4d\x57\xfa\x73\x27\x4b\x85\x8d\xc0\x77\xdd\x05\x9f\x16\x02\xf1\xd6\xc5\x8e\x14\x68\x19\x71\xe3\xbf\x32\x03\xd9\x92\x74\x3a\x88\xee\xdf\x15\x34\x03\x26\xe8\xe2\xa8\xcc\x54\xc7\xec\xcd\x54\x81\x41\xd4\x32\x5b\x25\x7f\x0d\xe4\x35\x8d\x6a\xe4\x30\x86\x9a\xf9\xd9\x52\x02\x03\x40\xc4\xd0\x10\xdb\x01\x15\x56\x4d\x00\x1f\xbb\x4b\x56\x71\x8f\x18\x04\xef\xae\x69\x88\x59\xb3\xa6\xab\x01\xf5\x3f\xf7\x70\x64\xca\xc9\x33\x9a\x80\x37\xff\x2e\x5b\x7f\xf4\xf3\xd5\x7a\xac\xbb\x61\xf0\x2b\xe8\x44\x1c\x3e\x11\xf8\x67\x57\xf9\xba\x66\x3d\xc0\x9d\x8b\x4d\xaa\xa0\xd1\xf0\x9f\x98\xde\x4e\x02\x29\x2b\x53\xca\xa4\x4c\x46\xa6\xf8\xa7\xc5\xc4\xdc\x25\x7a\x7a\x57\x6a\x4f\x0b\x3c\xa2\x9f\xf7\x54\x23\x61\x2d\xac\x3d\xc3\xf0\x55\x28\xbe\x96\xe3\x39\x61\xdb\xdc\x23\x26\x6a\x79\x8c\xa1\x82\xb5\xda\x34\x84\x7b\x60\xa5\x5c\xaf\xa7\x0c\xdb\xa3\x5b\x1d\x36\xa9\xfd\x2b\x7f\x88\x1d\x9f\xb8\x34\x33\x8d\x33\xc6\xfa\x9f\x76\xfb\x2c\x0c\xc4\xc4\xf5\x44\xb7\x3b\xd6\x22\x32\xbd\xb4\x11\x14\x4a\x8b\x03\x17\x03\xfb\x0c\xe3\x08\x27\x79\x9a\x97\xd4\x43\xa2\x82\x41\x95\xf2\xfc\x06\x01\xf9\x68\x02\x82\x25\x32\x4a\x22\x40\x4e\x88\x74\x51\xdb\xd4\xd8\x17\xbb\x7e\x26\x87\x90\x37\xb7\x52\x86\xa8\x84\xcb\x16\x2a\xb1\xc0\xc8\xe5\xd4\xf9\x97\xa4\x4f\x47\x2e\xb9\x60\xb4\x27\x2b\x33\x30\xc5\x82\x48\x34\x5b\xaf\x81\xdc\x42\x41\x40\xa6\x36\xc7\x2a\x92\xa7\xee\x1e\x6f\x92\x95\x61\xa5\x0c\x2b\x33\xb0\xb2\x3b\x75\x9e\x85\xe6\x11\xab\x67\x9a\x8f\x58\xcb\xc8\x34\x9f\xfd\x0f\xb8\x45\xd7\x46\xea\x1a\xdd\x0a\xda\xf2\x3d\xba\x16\xca\xf6\xb1\xea\x22\x7e\x93\x8e\xaa\x02\xfc\x8a\xc1\x93\x4e\x13\xb7\x0d\xf8\x08\xec\xb2\x38\xa0\x04\x3f\x34\xb8\x9f\xc5\x29\xba\xdb\x1a\xf0\xa1\x68\xae\x54\x25\x1e\x8f\xa6\xf3\x39\x25\x84\x6a\xf8\x64\x34\xdb\xf3\x99\xce\x10\xca\x02\xcf\x44\x0b\x44\x65\x72\xf8\x44\x34\x97\x5e\x4c\x3a\xee\x09\xcf\x9f\xa7\xa2\xb9\x49\x35\xd5\x80\x0f\x47\x8b\x24\xb5\x9a\x2f\x47\x0b\x48\x11\xe4\xb8\xf7\x88\xbf\x42\x0a\x7c\x21\x5a\x80\xc6\x02\x4b\xde\x2a\xf9\x4a\xb4\x54\xd6\xe5\x93\xaf\x46\x8b\xf9\x89\x02\x5f\x8b\x16\xa0\xea\xa8\x96\xfd\xdf\xb1\xe6\x24\x2e\xd2\x20\x34\xa4\x3f\xb5\x72\x38\x56\x4e\x53\x3d\xb5\x52\x41\xac\x54\xfc\x9e\x80\x87\x52\xe9\x39\xe9\xbb\xc8\x80\x8e\xcc\x0c\x94\x7c\x66\x9d\x41\x91\xb6\x2b\xed\x32\x5e\x95\x18\xa9\xe3\xd1\x72\x76\x3a\xca\x85\xd5\xae\xe3\x2d\x2f\xd8\xe1\x69\x03\x86\xb1\x22\x8b\xba\xbc\x82\x9a\xac\x50\x2f\xbd\x10\x1f\x32\x56\xc6\x8d\x95\x61\x67\x7e\x07\xc2\x55\xaf\xc1\x05\x42\x5a\xac\xa1\x1a\xfa\x1f\xe5\xf1\xc7\xad\xce\x63\xb8\xfc\x39\x9e\x93\xf4\x67\x01\x6b\x1d\x64\x12\xfe\xa6\x9f\x9c\xf2\xa2\x2c\x02\x4b\x7a\x74\x7b\xb6\x4d\xca\x19\x75\x80\x09\xfc\x16\xf7\xf5\xad\xf2\x90\x75\xcc\x5d\x4f\x2e\x67\x9e\x2c\x7f\x73\x43\xa3\x2c\x4d\x7e\x40\x76\x7c\xcd\xd3\xd8\x0f\x28\xb4\x0d\x51\x92\xff\x54\x5e\x62\x67\x1c\xd7\xe5\x11\x07\xc7\x6c\x62\xe4\x8b\xd1\x2d\x15\x41\xa9\xd8\xcb\xd6\xe1\x51\x4f\x88\x83\x99\x05\xc4\x4c\x17\x25\x02\xb4\xec\x84\x18\x05\x07\x4e\x1c\xe5\xf2\xab\x96\xc2\x4c\x6f\xb2\x39\x8b\x5a\xd6\xa8\x0b\x9e\xf1\x10\x98\x51\x55\x0c\x22\x30\x21\xfd\x83\x12\x65\xe5\x6d\xd3\x8c\xf1\x94\x5e\x44\x7a\x6c\xeb\x35\x59\xaa\x8a\x21\x67\x9e\x47\xe5\x13\x6c\x11\x43\x9e\x38\x75\x96\x7e\x3c\x58\xdd\x20\x1d\x8c\xd5\x2f\x38\xe1\x0a\xb8\x8d\x5b\xd0\xb1\xae\x89\x5c\x89\x56\x4e\x71\xd8\x34\xfc\x2e\xf2\x1c\x6f\x99\x9a\x58\x0c\xa2\x05\x1b\xa7\xb9\x8f\x01\x61\x0f\xf4\xf9\xcb\x7e\x7f\x66\x6f\x3e\x72\xc5\x78\xb6\xac\xff\xee\xf7\x71\xc2\x4b\x32\x5b\xba\x8c\xb5\xf1\x20\xd9\x62\x47\x35\x92\x16\x8a\xb6\xf2\x20\xbb\x33\x3c\xb4\x99\x59\xad\x64\xc6\xdf\xa4\xcc\x9a\x34\xfe\x0f\xe2\xe4\x66\x7a\x67\xd2\x19\x0a\x03\x2b\xea\xbd\x38\x91\xe2\xb4\x69\xe2\xa8\xdf\x66\x90\x9c\xc7\xc2\x93\x33\xcd\xcc\x40\xfd\x08\xd3\x7c\x12\xab\x81\xb6\xaa\x64\x53\xd2\x68\x45\xc2\x31\x99\x3f\x0a\xd1\x74\x42\x16\xfa\x42\xe0\xcd\xec\x15\xa4\x75\xc8\xa2\xf0\xe6\x48\x1b\xbb\x68\x48\x8b\x0c\xab\x12\x94\x2e\xab\xbe\xc7\x02\xf3\x9b\x28\xde\x19\x38\x82\x90\x99\x47\x33\x7c\x63\x65\x24\x56\xc7\x5b\xee\xf7\xcd\x98\x57\x29\x98\xd7\x66\x24\xdb\x4e\x4d\xe9\xab\x49\x7e\xf1\xfc\x2e\x0a\x5a\x7e\xd0\xe1\x25\x10\x2f\x22\x92\x8f\x38\x2e\x46\x01\xf3\xc7\x14\x64\x31\xce\x9d\x39\x87\xf3\x3c\x22\x99\xe3\x2d\x20\x1a\xb7\xac\x50\xa0\x1b\x62\xc3\x75\x90\x87\x9f\x12\x91\x05\xb4\x19\x9a\x92\xa4\x4a\x1f\xb3\x71\xbb\x64\x2f\x85\x66\x66\x99\xa2\x84\xc0\xfe\x69\x10\x71\xf4\xcb\xb4\x5b\xa5\xb9\xc2\xc6\xc7\x02\x48\x23\x59\x44\x2e\xce\x34\xaf\x45\xa2\x02\xc4\x6e\xf5\xb3\xd5\xc4\x15\x82\xed\xfb\x22\x27\x57\x10\x53\xfc\x8e\x76\x3a\xa8\xe9\xd8\x18\x45\x3c\x60\x27\x68\x48\x3d\xea\x8c\xdc\xc0\x81\xfb\x65\xb4\xda\xef\xa3\x52\x07\x61\xfb\xcb\x68\x75\xdc\x2f\x87\xb9\xe1\x66\x58\xb0\x11\x51\x02\xd5\xed\x77\x25\x43\x96\xf8\xec\x32\x11\xc3\x40\x9a\x3d\x33\x9d\xd7\x5d\x79\x23\x8f\xf1\xd0\x70\xc6\xca\x0f\x9b\xbf\xac\x27\x5d\xc4\x4e\x75\xed\x06\x7d\x3c\x63\x7c\x9f\x6f\x7e\x92\x9f\x8f\xf6\x6b\xbf\x9f\xaf\xe4\xc7\xe8\x6c\x3e\x61\xe3\x74\x69\x2b\x97\x8b\x31\x19\x43\x2c\x22\x37\x14\x0a\xda\x90\x8b\x6f\xf4\x70\xf5\xc3\x83\xaa\x3f\x50\x99\xc7\xc5\x4a\x95\x06\xdb\xa9\xe8\xc1\xd5\x8b\x95\xf4\xf0\xea\x11\x3c\xba\x50\x54\x8b\xcf\x7d\x2d\x20\x3f\x0b\xa9\xea\xa4\x05\x12\x7c\x68\xf5\x68\x33\xcd\xd3\x2e\x45\x3a\x88\x2e\x19\x2d\xd8\x04\x7d\x84\x61\x8d\x45\x6d\x1d\xc3\x70\xcf\x8d\x3e\x44\xf8\x71\x5a\x26\x0d\xdd\x61\xb3\xcf\x43\xcb\x89\x46\xc2\x38\xe0\xba\xa6\x51\xa3\x37\x20\x18\x3d\xec\xfe\x43\xdd\x00\x25\x07\xa3\x8e\x69\xd3\x2a\x42\xf6\x75\xcf\x0a\x4b\x3e\x35\xbb\x2f\xf8\xdd\xa2\xa3\x60\xe8\x5a\xbd\x49\x91\xc7\xee\x82\x4c\xb8\x0f\x38\x91\x84\x49\x47\xf6\x6a\x77\x5e\x83\x2d\xb7\x18\x2d\x58\xed\xed\xd7\xb2\x69\x6c\x55\x55\xb8\x47\x26\x70\x7c\x0e\x73\x96\x91\x11\xb6\x25\x75\x27\x60\x73\x93\x86\xfd\x26\x1b\x1a\xe7\x61\xe9\x81\x5d\x12\x73\x3b\x1d\xfd\x43\x6e\x2f\xd8\x12\xf6\x26\x4a\xe2\x27\x95\x48\xf4\xe4\xc7\x48\xec\xc3\x5b\xbd\x43\x4d\xfc\xd4\xdb\x26\xe9\x4e\xd1\x67\xc6\xba\x1b\x00\x8d\x10\xe1\xa3\xe2\xc4\x16\xe6\xcb\x5a\xdd\x8a\xb8\x9d\xaa\xbd\xa2\xdf\xa0\xd0\x32\x32\x7a\x2c\x22\x4b\x49\xf7\x10\x5d\x90\x6a\x51\x99\x22\x5d\x7e\xc8\x78\xdf\x69\x3a\xf5\x7d\xa7\xe9\x7a\xa1\xa0\xff\x12\xef\xe5\x12\x2e\xc2\x90\x48\x5b\x30\xea\xf7\x6b\x75\xc8\xad\xfe\x11\xd3\x08\x0c\x74\xca\xf4\xf3\xb7\x34\x0a\x95\x87\x5d\x82\xc6\x99\x54\x1a\x67\x22\x34\xce\xc4\x68\xf4\xb8\xf9\x45\x21\x8d\x91\x9a\x6e\xa6\xa1\x7e\xa0\x92\xea\x88\x65\x25\x7b\xb5\x0c\xd1\x73\xe9\x63\x45\x64\x57\xb7\x9b\x4d\x51\x80\xc6\xc9\xd6\x7e\x9b\x46\xad\xce\x27\x08\xab\x2f\x82\xf6\x80\xd7\xe4\xb6\x7a\xa1\x09\xf9\xec\x3b\x4e\x78\x68\x89\x70\xdf\x59\xdf\x45\x64\xcc\xd8\x09\xd8\x16\x1a\xa5\xe9\xe6\x42\x20\x16\xef\xc0\xcc\xdf\x6d\x1b\x45\x9d\xb4\xa2\x78\xfb\x44\x66\xbc\x81\x91\x8f\x48\xe3\xaa\x28\x9f\x38\xa8\x57\x37\x50\x92\x6b\x47\xba\x6a\x21\x98\xa9\x92\xc4\xd5\xcd\xac\xcb\x9e\x13\xa9\x8e\xd1\x14\x67\xd2\xaa\x3b\x9f\x91\x1e\x63\x69\x5c\x53\x48\x96\x1b\xa1\x69\x46\x1a\x90\x31\x19\x32\xe4\xa6\x7c\x3c\x42\xb3\xce\x9e\xc5\xad\x26\xa2\x95\x52\xd7\xbb\x09\x29\x59\x51\xdd\x06\x70\x3d\x34\x42\x98\x70\x9a\x0b\xa4\xcf\x5c\x30\xf2\x5c\x29\x88\x9e\x2b\x31\x09\x16\xc7\x86\x36\xf2\x96\x87\x50\xca\xf4\x0b\x53\x60\x3e\x60\x1d\xc8\x38\x15\x51\x8b\xf5\xdc\x89\x34\x6a\x03\x79\x1c\x96\xa0\x7b\xdc\x53\xb0\x01\x8e\x7a\x50\xa4\x5a\x2c\x62\xc3\x13\x99\xca\x69\x43\x93\x39\x2c\x59\x3a\xb6\x9c\xdb\x74\xa0\x12\x33\xfa\x54\xba\xe2\x1b\xb9\xb9\x9c\xf0\x8b\x60\x5a\x41\xaa\x0d\x99\x9f\xa2\x11\x81\x70\xd8\xc9\x23\x1a\xc3\xf7\x71\x54\x77\xa3\x58\x77\xcb\x86\x45\x14\xea\xec\x7b\xbc\xfa\x94\x48\x6f\x27\x14\x0a\x50\x6a\x1b\xb0\xde\x06\x94\x6c\x02\x1a\xd9\x02\x0c\x86\x9c\x95\x26\xda\x93\x31\x54\x28\x76\x8d\x95\x5a\x8b\x83\x94\x29\xad\x53\x3b\x20\x8a\x0c\xa6\xcf\x04\x31\xff\x72\x79\x59\x92\x4c\x2d\x0f\x1a\xb8\x8d\x3c\x83\x2b\x95\xe9\x03\x2d\x15\x4b\xe8\xf1\x85\xc9\x94\x17\x7a\xe8\x3c\xa4\xdb\x9c\xbb\xe9\x29\x67\x68\x4f\xb1\x38\xf6\x29\x4d\x4e\x62\x8a\x2c\x00\x4d\xa7\xcc\xd6\x5c\x73\x33\x91\xab\xc6\xfd\xfe\x6c\x59\xff\x3d\x1f\xd3\x90\x1f\xef\x1e\x62\x2a\x2a\x8b\x9e\x98\x59\xee\xb0\xc7\xac\x3d\xd5\x7d\xc3\x4a\x2d\xd8\x4b\xa4\xcc\xf4\x9e\xa1\x55\x9d\x3a\x48\x0a\xc5\xec\x20\x71\x92\x86\xd9\x40\xe2\x7e\x4d\x60\x2d\x79\x3b\x1d\xa6\x5c\xf8\x9d\x60\x33\x2f\xd6\x23\x95\x6a\xb1\x02\x03\xa6\x62\xda\xcd\x15\xc2\x10\x18\x5f\xb3\x97\xc4\x6b\x9f\x99\xca\x66\x2c\x39\x1a\xdd\x71\x22\xc3\x1c\xa4\xbc\xad\x02\xf9\x3e\xe7\x10\x6f\xab\x80\xcf\x98\x8c\x72\xf1\x5b\xed\xb1\x31\xdb\x4a\x3f\x6a\x72\x6a\x76\xc3\x46\x98\xd1\xf8\x75\xfe\x21\x1d\x83\xc4\xd8\xa4\x5b\x96\x60\xbe\x92\xd2\x16\x6a\xc9\x49\x6b\x4b\xcd\x58\x38\xfc\xd5\x85\x03\x27\x0f\x1f\x30\xa0\x71\xf4\xb1\x13\x8f\x2f\x18\xf5\x92\xe3\x35\xdc\x5e\x13\x85\xea\x0a\xbd\xe7\x37\x11\xf5\x26\x9f\x1f\x86\x3b\xee\xd3\xb6\x85\x6e\x61\x6f\xf6\x64\xb7\x2a\x65\x86\x6e\xa3\x07\xd3\x86\x7b\xc1\x5e\xca\x14\x87\xb3\x6c\x92\xe9\xf3\xe6\xd4\xc1\x6d\x55\x94\xa5\x4f\xa4\x6c\xdb\xa9\x1a\x81\x38\x96\x89\xa7\x97\xa2\x15\x6f\x57\xef\xe0\xf7\x40\x86\xd0\x7d\x4a\x86\x77\x1c\x41\xf8\x29\x29\xad\x9b\xe9\x19\xe3\x91\x3e\x9e\x3a\x91\xa0\x3b\x6e\x5e\x1d\xb2\x39\x68\xd6\xda\x7d\xbb\x23\xd6\xda\x4a\x79\x57\x5c\xc9\xc2\x69\xb6\x82\xd8\x19\xa4\x7a\x7e\x47\xce\x0c\xf1\x02\xcf\x90\xe3\x49\x10\xb1\x3b\x8e\x3a\x0d\x84\x58\x52\x26\x8f\x0e\xb2\xa2\xae\x62\x14\x62\xc3\xb2\xd2\x9f\xca\x0b\x50\xe8\xbb\x2b\xe8\x24\xad\x3d\x60\x2b\x33\xfd\xed\x70\xed\xd7\xb8\x71\x64\xa9\x2f\x40\x56\x28\xd9\x3c\xea\xf7\x51\xd2\xbd\x91\x79\x07\x50\xff\xc6\x7e\x3f\x1f\x39\x8a\x62\x12\xcd\xfc\x78\x86\x19\x5d\x94\x10\xaa\x31\x94\x27\x36\x49\x2f\x0c\xcd\xcc\x0e\x55\x64\x5b\x71\x6f\x63\xfc\x38\xb9\x9a\x24\xe7\xbb\x62\x61\x45\xc6\x56\x25\x5b\x08\x22\xcb\xb2\xf0\x3c\xaa\x9a\xf1\x73\x37\xde\xd8\x94\x65\x1c\xa3\x36\xfb\xa5\xc0\xac\xfe\x38\x2e\x65\x63\xdd\xd2\x96\x15\xef\x15\x6d\x29\x68\x71\x7a\xac\xe2\xe4\xdd\x09\x79\x21\x6c\x48\x25\xc5\xa2\x2d\xee\x59\x2c\xc9\xd3\xbf\x48\x70\xe3\x54\xe2\x0f\xe9\x17\x37\xb6\x46\xbd\xb8\xf3\xb1\x3d\xf2\x45\x2d\xa9\xf4\x47\xae\x95\x68\x81\x39\x7a\x21\x3e\xd5\xf6\xb9\x2b\xa7\xf4\x39\x4b\x9d\x76\x71\x2f\x7f\xae\x43\xf1\x77\xa7\xe3\x46\x93\x58\xd0\xb9\x42\x21\x9f\xd7\xf4\x8c\xd8\x4f\x8e\x38\xb5\xaa\xc8\xdd\x95\x38\xdd\x8f\xf9\xfc\xd3\xac\xb5\xb2\x15\xa2\x75\x4c\x85\x82\xa9\x13\x98\x38\xfc\x8e\x2b\x08\xc2\xc2\x48\x76\x83\x3a\x28\x14\x9a\x28\x25\xc8\x08\x49\x4c\x8d\x32\x92\xe2\x8a\x58\x73\xb7\x1b\x57\xe4\x21\x6b\x19\x99\xcf\xea\x68\x62\xfe\x8c\xdb\x0f\x71\xfb\x78\x02\x85\x74\x8a\xac\xb5\xb6\x5b\xf9\x93\x89\xca\xe3\x9e\x95\xb5\xf6\x76\x71\x3c\x93\xc0\x91\x74\xcf\xac\x35\xb7\x8b\xe5\x89\x04\x96\x98\x8f\x67\xad\xbb\x5d\x14\x4f\x25\x50\xc4\x1c\x45\x6b\x9d\xed\xa2\x78\x38\x81\x22\xcd\xdb\xb4\xb6\xb2\x5d\x3c\x5f\x4e\xe0\x49\xba\xac\xd6\x56\xb7\x8b\xe5\x0b\x09\x2c\x49\xbf\xd7\xda\xf2\x76\xb1\x7c\x25\x81\x25\xc3\x79\xb6\xb6\xb4\x5d\x54\x5f\x4d\xa0\xca\x0c\xff\xbe\xb8\x5d\x5c\x5f\x4b\xe0\x4a\xba\xf1\xd6\xce\x6c\x17\xcb\x7f\x27\xb0\xc4\x7d\x81\x6b\x87\xb7\x8b\x03\xa1\xe4\x6c\x4b\x86\xe6\x3f\xbb\x5d\x34\x38\x89\x26\xcb\x2d\xb9\x76\x6a\xbb\xc8\x82\x24\xb2\x74\xdf\xe6\xda\xf1\xed\xa2\xf2\x92\xa8\x12\x81\xd4\x0f\x6c\x17\x89\x93\x39\x46\xcc\xcb\xba\x76\x7a\xbb\x18\xe2\xd5\x6b\xca\xcd\x96\x9f\x13\xc8\xa8\x08\xc0\x67\x75\x0f\xd8\xe4\x6c\xb8\xeb\xf7\x0b\xd2\xeb\x19\x81\x4f\x6a\x18\xdb\x43\xa7\x2e\x98\x47\xb0\xf9\xc9\x11\x8b\xf9\xba\xd7\x16\xb6\x3b\x66\x76\xca\xac\xc8\x70\x98\xaf\x1d\xdc\xe9\x09\x32\x4c\x6b\xa9\x1d\xdb\x62\x27\x0e\xa9\x6c\xc4\x28\x0e\xd5\x3f\x6a\x27\xb7\x41\x47\xbc\xb6\x11\x84\x64\xe8\x11\xb5\x13\x5b\x24\x21\xbd\x9e\x31\x91\xeb\xca\x40\xed\xeb\x77\x89\x59\xab\x64\x04\xda\xa8\x9b\xf8\x56\x23\xa9\x65\x57\x35\x02\xed\x76\x1e\x02\xc9\xaa\x68\x2c\x94\xdc\x2d\x7a\x07\x70\xb2\x9a\xc6\x42\x7a\x97\xd1\xf1\x32\x6b\x1a\x35\xa6\x9a\x93\xf2\xf6\x46\x54\x55\x34\x0a\xa5\x8c\x70\xb7\x2d\x7c\xbc\x96\xd1\xc8\xd8\x59\xe0\x76\x91\xf1\xe0\x29\xc3\x91\x09\x2f\xe4\xed\x21\xe3\xb5\x8c\x35\x5d\xe2\xde\xbb\x3b\x30\x6f\x62\x55\x8e\x45\xc6\x4e\xe2\x1f\x13\xb1\xe6\xcf\xba\xcd\xb1\x15\xf5\x6c\xa5\xc3\xef\xf2\x95\xa0\x51\x15\x6e\x85\x04\xe6\x23\xb8\x73\x14\xd0\xfa\xc6\x22\x60\xe7\x1a\xbf\x85\x56\xef\x58\x73\xd3\xda\x19\x66\x4a\xdc\xfa\x25\xc3\xda\xa1\xed\x8a\x55\xbd\x24\x9e\xd4\x9b\x8a\xb5\xc7\xb6\x8b\xc9\xcd\xc4\x14\xb9\xee\x58\x3b\xba\x5d\x44\x8d\x24\xa2\x8c\x3b\x93\xb5\x47\xb7\x8b\xeb\x88\xf5\x2c\x00\xfd\xfe\x11\xfa\x9f\x16\x63\xf5\x30\xba\xab\x20\xab\xf1\xe8\x52\xf7\x38\xe6\x6a\x1c\xdd\x78\xcf\x4b\xa9\xb0\xa2\xbe\x76\x49\xc0\xff\x77\x0d\x2a\x6a\xff\x4b\x44\xe9\x0c\xf5\xb0\x7b\x79\x1c\xb9\x8b\xef\xd3\x28\x49\x69\x57\x7e\xe7\x63\x9e\x10\x9f\x5e\x88\x4f\x7a\x87\x4a\x91\xdf\xd3\x66\x52\xef\xb3\x08\x5e\xe9\x46\x62\x57\xba\x3b\x1a\xba\xb2\x71\x3f\x72\xe5\xe7\x37\x72\xe5\xce\x84\x96\x6c\x25\xc3\x34\x8a\xe7\xa3\x92\x61\x1a\x4d\xb3\x61\x9a\xce\xc8\x18\x22\x9f\x76\xfc\x90\xa4\xb7\x3e\x74\xb4\x8b\x54\x1e\xe9\xb5\xf2\x9c\xbf\xdf\x9b\xf3\x27\x27\x81\x53\xf3\xf5\xeb\x53\xbe\xf4\xd9\x0f\x2c\x76\x9b\x04\x9a\xc8\xea\x8d\x8a\x1b\xe2\x00\x00\x40\xc9\xee\x61\x9f\xbe\xa4\x4b\x38\xe2\x7f\x56\xf8\x02\x77\xdc\xe8\x05\xda\x7d\x7d\x7e\xaf\x2c\xd3\x13\x87\x72\xe0\x61\xb7\xf9\x23\x2f\xea\x8e\xf1\x1e\x91\xf2\x23\x18\xfd\x1e\xd1\x38\x0f\xc9\x0c\x7d\x38\x26\x5f\x99\x88\xba\x5f\xca\x2b\xdb\xd1\xa7\x72\xe2\xae\x56\xc3\x9f\x84\x56\xde\x19\x13\xaa\xb9\x44\x38\x0a\x4c\xbd\xff\xd4\x54\x24\x52\x84\x78\xdd\x19\x8a\x33\x65\x3b\xe5\x48\xd9\xce\x38\x51\xde\xa6\x1e\xea\x0c\xd3\x43\x1d\x5d\x55\x68\x44\xcb\xea\xfd\xb0\x2d\xa4\x5a\x45\x31\x8c\x9e\xe5\x10\xa9\xd7\x23\xff\x69\x42\x6f\xeb\xee\x64\xde\x4f\x4b\xd8\xbd\x2f\xe5\xde\x97\x72\xef\x4b\xb9\x3b\x2d\xe5\xee\x8c\xfc\xd4\x80\x2d\x2b\x9f\x17\x8f\x7b\x1a\xbe\x87\xfd\x5e\xa3\x4d\x03\xb0\x91\x59\xc3\x32\x26\xb4\xd0\xff\x72\x35\x1c\xb1\x43\xfc\x90\xef\xe3\x42\x21\x45\x2a\x30\x1b\xe2\xd5\x3b\xbe\x67\x6a\x5c\xac\xc4\x1c\x65\xc2\x42\xc1\x6c\x08\xd8\x6a\x94\x3a\x21\xf7\x3e\x11\x17\xa4\xfb\xfd\x46\xa9\xe3\x3f\x9b\x92\x7a\x06\x2d\x9d\x76\x70\x2c\x03\xc0\x94\x29\xd8\x60\xdb\x55\x88\x29\x32\x0e\x5b\xf1\xf8\x82\x6a\x8f\x9a\xc3\x85\x02\xdd\x23\xa9\xaf\x36\x11\x62\xe6\x98\xa7\xba\x20\x54\x7b\x67\x0d\x4f\x60\x0b\x97\xba\x76\x80\x3c\xfc\x98\xdf\x44\x03\xdd\x05\x13\x30\x3f\xff\xc8\xeb\x23\x5b\x13\x55\xdb\xd6\x7d\x51\x55\x13\x55\x9d\x70\x81\xcc\xcc\x43\x68\xc5\x69\x20\xab\x75\x5f\x5a\x4d\x97\x56\xed\x66\xf3\x11\x2a\xb3\xa4\x3c\xad\x19\x91\xc6\x68\x70\x9c\xe8\x6b\x8c\x81\xef\x22\xf6\xfc\x22\xf3\x36\x21\xcc\x3d\xed\xc9\x0e\x99\x16\x88\x8b\x0d\x7c\x61\x65\xc4\x33\xa0\xb7\xa5\x0a\x85\xbc\xa7\x95\xb3\x03\xc7\x2e\x8a\x48\x37\x16\x0e\x7a\xa8\x2e\x6e\x48\x3a\x96\x97\xf6\x4c\xa4\x5e\x29\xe9\x72\x13\x97\x16\x59\xda\x91\xc0\xef\x1c\x25\xc9\xa6\x03\xe8\x7d\xe9\x09\x1a\x12\xc4\x6e\x36\xa9\x27\xfa\xa3\x4e\x88\x91\x87\x02\xd3\xe8\xf8\xbd\x10\xf5\xba\x06\x4c\xe1\xea\x9e\x89\xd3\x1f\x85\x84\x48\xde\xa3\x8a\xbb\x49\xf1\xfb\xba\x69\x58\x98\x17\xd5\x78\x78\x54\x58\x32\x85\x2a\x32\xdd\x45\xbf\x48\x0e\x10\x50\x91\xb9\x6d\x87\xc7\xfc\x15\xd4\x24\x1b\x3d\xf5\x8f\x65\xfe\xfd\x31\x72\x28\x43\x27\xe9\x06\xe9\x9b\x89\x34\x8a\x35\x9e\x0f\x35\xa1\x3c\xb3\x28\xab\x8d\xde\x2f\xcb\x2c\x83\xbc\x66\xb4\xfd\x4c\xba\x41\xe3\x4f\x99\x00\xd0\x61\x4c\xde\x58\x91\x0d\x07\x7a\x1f\x54\x64\x34\x98\x7c\x30\xde\x44\x23\x13\x78\xf4\x44\xcb\x98\x16\x69\xd3\xcf\x63\xee\xdd\x60\xa0\xad\x9f\x74\x25\x4a\xde\xab\xd2\x33\xf5\xfb\x4d\xda\x2d\xd7\x18\x96\xb4\x65\xad\x36\x31\x54\x0a\xbb\xae\x83\x4d\xa3\x64\x00\x71\xa3\x91\xcb\xdf\xb5\xae\x1d\x84\xe8\xa8\x87\x4d\x5c\x2b\xd7\x61\xa5\x0c\xea\x22\x32\x8b\x10\x37\x69\x80\x16\x2b\x48\xfb\xc2\x63\x5f\xc8\xd0\xbd\x5b\xd6\xcb\x9a\x56\x94\x39\x75\xad\xb8\x92\xd4\x19\xf9\x54\x4f\x44\x4d\xd2\x6b\x03\x70\xc5\xd2\x33\x57\xad\xb5\x01\xd4\x2d\x7c\x9d\x74\x0b\xdf\x6a\x0d\xd5\xad\x0e\xb3\xf0\xad\x46\x2d\x7c\xfa\x4f\xb8\x1a\xb7\xf0\xad\x66\x5a\xf8\x56\xfb\xfd\xd5\xb8\x85\x6f\x35\x2a\x78\xaf\x5a\xdd\x31\x2c\x7c\x91\xe7\x5c\x4c\x22\x49\x20\xd0\xef\xa3\x01\x5c\x05\x70\x45\xb3\xf0\xad\xc6\xec\x6f\xab\xdc\xc2\x17\x49\x9f\x5f\x4d\x5a\xf8\x56\xa4\x85\x6f\x75\xb8\x85\x2f\x8e\x21\x5d\xf4\x24\x14\xae\x92\xc6\x31\x0b\x5f\x86\xae\x7a\x77\x8f\xe0\x45\x1e\xc7\xb8\xd7\xfa\xaa\x8e\x6b\x1c\x9d\x55\x69\xac\x8e\xa6\x67\x38\xff\xae\x1a\xab\x3f\x44\x17\x74\x3e\xff\xba\xa0\xad\x8d\x91\xfd\x59\xe8\x82\x11\x5d\xda\x0c\x3f\x3f\xba\x60\x6f\x4b\x0a\x8a\x97\xad\x9c\x64\xc9\xe3\x3b\xa8\x9a\x08\xcd\x04\xfa\xdc\xd2\x6a\xe2\x8c\x38\xaa\xf2\xdd\xde\x7f\x63\xf5\x20\xcc\x56\x0f\xe8\x36\x9c\x64\xc3\xbd\xbb\x64\xc3\xc9\xd7\x92\xee\x39\x37\x4e\xa2\xbc\xcf\x94\xef\x33\xe5\xfb\x4c\xf9\x3e\x53\xbe\xcf\x94\xd3\xde\x99\xbb\xd7\x0c\x39\x86\xee\x3e\x33\xbe\xcf\x8c\xef\x33\xe3\xfb\xcc\xf8\x3e\x33\x8e\x3c\x0e\x7a\xaf\xb9\xb0\x0c\xfb\x70\xff\x50\xfd\xfe\xa1\xfa\xfd\x43\xf5\xcf\xdb\xa1\x3a\x94\x27\xbf\x5b\x74\x50\x1c\x7a\xea\xfb\x69\x6e\x1b\xfc\x84\xb6\x37\x64\xdb\xb8\x7f\x02\x9b\x72\x02\xdb\x70\x91\x9d\x15\xf0\x2e\x25\x1c\x60\x86\x7b\x1f\x7d\x06\x82\x19\xd2\xf5\xe3\x39\xea\x9e\x47\xbd\x28\x84\xcf\xde\x96\xcf\x61\x5a\x96\x20\xb1\x9d\x38\x81\x69\x6e\xed\x04\x86\xd5\x03\x60\x37\x72\xf6\xd2\x89\x9f\xbd\x34\xd3\xcf\x5e\x3a\x35\x54\xb7\x9a\xec\xec\xa5\x13\x3d\x7b\xd1\x7f\xc2\x4e\xfc\xec\xa5\x93\x79\xf6\xd2\xe9\xf7\x3b\xf1\xb3\x97\x4e\x94\x3f\x77\xac\xf6\x96\xcf\x5e\xc8\x7a\xe6\x67\x2f\x1d\x00\xbb\xda\xd9\x4b\x27\x76\x32\xd2\xe1\x67\x2f\x91\xf4\xf9\x4e\xf2\xec\xa5\x2b\xcf\x5e\x3a\xc3\xcf\x5e\xe2\x18\xd2\x39\x14\xa1\xb0\x43\x1a\x37\xf4\xec\x65\x65\xb8\x48\xd3\x46\x6e\x17\x05\xe1\x54\x4a\x80\x25\x27\x4c\xb3\xf6\xa5\xd4\xd1\xc3\x8e\x1b\x4e\xd1\xb2\x45\x0a\xc7\x04\x94\x98\x78\xa2\x9d\x68\xeb\x5d\x1e\x5b\x36\xd4\xb9\x44\x0b\x95\x0d\xf4\x2d\x29\xce\xe0\x29\x3b\x8c\xc9\x2a\x39\x47\xf8\xfb\xd3\x0f\x8c\x1a\xdb\x68\x73\x07\x04\x33\xab\x93\x95\xc5\xbb\x56\xce\xe4\x12\xf6\xf9\xbb\xd6\x74\xc8\x10\x10\x88\x27\x98\x50\x51\xab\x43\x8f\xc8\x03\x8e\x95\xaf\x40\x5f\x6c\x00\x38\x58\x95\x82\x87\x0d\x43\x0b\xd5\x62\xc4\xd4\x4d\x30\x97\x27\x7b\x80\x6d\x85\xf4\x69\x4f\xb2\x3e\x9b\xbe\x87\xc8\x6c\x0d\x58\x90\x2b\x9b\xcd\x23\x00\x89\x58\x10\x70\xc1\x85\xb2\xcc\x39\x82\x12\xcc\x0d\xd8\x63\x9f\x3d\xb0\xe6\x10\x12\x7c\xab\x37\x68\x39\x9e\xed\xba\xab\x6b\x84\x00\xaf\xdf\x27\x33\xc1\xb2\xc2\x12\x23\xb9\xdf\x17\x90\x09\x64\x49\xfa\xb8\x05\xe3\xc1\xfe\x60\x20\x4f\x76\x69\x3f\x6a\xdd\x0a\xd6\x52\xf9\xf4\x51\x6f\xc5\x76\x9d\x66\xce\xc6\x44\x5a\xc5\x39\xec\xe7\x9a\x88\xb1\xd6\x5e\x80\x72\x9e\xef\x15\x69\x93\x97\x5c\xb5\x39\x91\x0d\x46\xdb\xc1\xa5\x63\x80\x67\x91\x09\x50\x01\xb5\xb2\x16\x82\x1e\x97\x9c\xf0\x61\x32\x93\x80\xe9\xdd\xd5\xd6\x4c\xe7\xe7\x09\x32\x3d\x99\x93\xd8\x51\x56\x9d\xe5\xa5\x6f\xdb\x0e\x0f\xd8\xf7\x08\x5d\x07\x25\xb6\x1c\x4c\x4f\xbf\x5e\xe6\x6c\x67\x05\x69\x81\x2e\xe4\x22\xaa\x47\x7c\x24\xd2\xd7\x06\xbe\xbf\x36\xfe\x03\xd7\x46\xa0\x9c\x66\xc8\x04\x98\x26\x5c\x3d\xa8\x95\xeb\xd0\xb1\x82\x5a\xa5\x4e\x9d\xaa\x68\x33\x1c\xe5\xbf\x2f\x23\x52\x8b\xf9\xe0\x00\xa5\x05\x31\xcf\x3c\x47\x68\x41\xd4\x41\x4f\x95\x67\x4f\x83\x39\x35\xbf\x0e\x3d\x79\x23\xa0\x3c\x21\xc5\x0c\xde\x03\xd1\xe2\x1e\x74\x76\x68\x61\xca\xc0\xa2\x41\xfa\xda\xf4\x52\xd7\x66\xa0\xaf\x4d\x6f\xf8\xda\x1c\xa9\x52\x17\x3b\x3d\x17\x3b\x5d\x17\x8d\xb9\x3e\x77\x46\x57\x10\x31\x4c\x1f\x59\x38\xf6\xe8\x43\x76\x10\x96\x04\x9d\xe6\x9a\xd3\xac\x1a\x2b\x5f\x79\x1c\x1f\x99\xc5\x1d\x03\x2e\xb9\x7e\xe3\x74\xf5\x8b\x6b\x5c\xf7\x0d\x8d\x6a\x8d\x47\x96\x31\x44\xec\x1b\x03\x1a\x0f\x46\xc2\x03\x19\x0f\xda\x81\x63\x33\xf1\x6d\x09\x35\x1f\x5a\x15\x49\x7c\x7e\x8a\x9f\x8f\xda\x4b\xc8\x8d\xfc\x70\x65\xe9\xf4\xa0\x5d\xc6\x83\xb6\xeb\xfa\x67\x0e\x32\x49\xd2\x78\xb0\x61\xbb\x8d\x1e\x21\xfb\x84\x1f\x3a\x9c\xa8\x07\x63\x71\xd8\x8c\x07\xd3\xa2\xa6\x19\x0f\xca\x07\xef\x08\xac\x07\x5f\xa1\x96\x93\xb3\x38\xb0\x09\x10\x0f\x80\x65\x3c\xd8\xf6\x03\xe7\x59\xdf\xc3\xb6\xab\x23\xe5\xe2\x92\xbb\x7a\xbc\x8b\x3c\x56\x69\x3c\x78\x9e\xf1\xa0\x8c\xd5\xc7\xc1\x68\x00\x42\xe3\xc1\x64\x28\x3c\xe3\x41\xf6\x72\x0e\x83\xd8\xfb\x78\x1c\x66\xc1\x41\x08\xc8\x6f\x7f\x18\x0f\xca\xab\x15\x12\x8c\x50\x1e\xf1\x66\x89\xfc\x8c\x16\x8b\x06\x2d\x34\x1e\x8c\x84\x5d\x21\x3f\xbd\x26\x0a\x8e\x7a\x27\x5c\x1a\x97\xda\x78\x50\x05\x42\x30\x1e\x14\xe1\x2e\x04\xc4\x6f\x1d\xa9\x84\x23\x0e\x72\xb5\x9f\x5a\x4b\x59\xc2\x89\x28\x91\x6a\xf7\x52\xf0\x51\x8c\x3a\x11\x8a\x29\xbd\x84\x0f\xd2\xa9\xe8\x60\x36\x09\xb1\xbd\xc4\xbc\xe9\xd4\xfc\x3c\x4a\xeb\x59\x41\x01\x76\x1a\x91\xf1\x2b\xd8\x18\x07\xa4\xe3\x0a\x7c\xb2\x18\x75\x68\x84\xd8\xc6\xd4\x8d\x9c\xcc\xfa\xda\x2e\x68\xe8\xeb\xd6\x80\xb5\x5a\x65\x06\xce\xee\xa9\xd7\x61\xad\xf6\x99\xad\x80\xac\x90\x73\xc6\x83\xf1\xb0\x60\xdb\x5c\x2d\x34\xaa\x96\x2d\xbe\xfa\xf7\x59\x3c\x3c\x96\x44\x74\x1d\x79\xf2\x1e\x17\xf9\xc1\x42\xff\x7c\x66\xcb\x2b\x40\xcf\xf4\x9c\x80\x2f\x81\xcf\xe9\x52\xd3\x82\x68\xe9\xbf\xf5\x2f\x47\x2d\x41\xb5\x5e\xc9\x82\x9a\x9e\x81\x33\xb0\x46\xd6\xd6\xf4\x0c\x9c\x95\xd0\x2e\x09\xed\x96\xd0\x1e\x09\xed\x95\xd0\x3e\x09\x95\x61\x2d\x2b\x2e\xa3\x5e\x22\xba\x58\x78\x4e\xa5\x2c\xab\xa9\x54\x14\x38\xcd\xc1\x69\x68\xe8\xcb\x82\xe7\x2a\xb2\x2b\x8a\xee\x8a\x22\xbc\xa2\x28\xaf\x28\xd2\x2b\x8a\xf6\x8a\x22\x7e\x5a\x11\x30\xad\x08\x98\x9e\x56\xa0\xc2\x36\xad\xb0\x4d\xef\x8a\x34\x5f\x0f\x75\x22\x4a\xec\x4e\x29\x21\x26\x7d\x22\x83\x2e\x00\xf1\xa5\xa2\x79\x5a\xd1\x3c\xad\x68\x9e\x51\x34\xcf\x28\x9a\x67\x14\xcd\x33\x33\xaa\xff\xe4\xdc\xe6\x59\xaa\x0d\x33\xaa\x0d\x33\x8a\xd8\x19\x85\x7d\x46\x61\x9f\x51\xd8\x67\x15\xf6\x59\x85\x7d\x56\x61\x9f\x9d\x89\xb4\x3c\x2b\x14\x1c\x6b\xee\x5e\x68\x68\x47\x26\x35\xf1\x51\x62\x7a\xd7\xd9\x26\x10\x9f\xc1\xb3\xb4\x39\x75\x81\x59\xb5\x68\x76\x77\x8c\x08\x16\x0b\x70\xc1\x5e\x62\xce\xd6\xf4\x9b\xb5\xd8\x06\x54\x86\xc6\xd3\x4f\x7b\xb9\x1c\xa9\xbd\x32\x0b\x67\xf7\x32\x24\xda\xbc\x60\xd8\x20\x2f\x49\x9a\x60\x74\xed\xc0\xee\x20\x8c\x02\x52\x45\x05\x4e\xd7\x07\xd1\xfc\xb6\x1d\x1e\x5e\xb1\x5d\xa3\xda\xb2\xdd\x10\x0d\xbe\x08\x3b\x08\xdb\xd5\xb5\x0e\x15\x24\x1f\xb3\x3b\x28\xed\xa1\xeb\x2d\x48\xb5\xa5\xf6\x52\x68\x0c\x06\xba\xc4\x8c\x77\x4a\x62\x4e\x3b\xf5\xfa\xac\x25\xe7\xc6\x8c\xd7\x7b\xe4\xe8\xf2\x4c\xa6\xe4\x6c\x40\xc3\x69\x9e\x55\x3c\x96\x6e\x76\x4e\x88\x97\xfc\xb3\x8c\x35\xea\x62\x4b\x64\x7b\xe2\x5b\x99\x94\x50\x34\xa9\x25\xb6\x03\x24\x64\x97\x3d\xd0\xe8\xb9\x06\xa4\x63\x4c\x66\xcf\x34\x21\xc2\x80\x35\xb2\x6c\xd3\x22\x9b\x8b\x1e\x56\x6f\x96\x42\xce\x91\x0d\xf1\x4a\xa9\xc1\x27\x36\xa9\xab\xc1\xf9\xfe\x18\x35\xd1\xc9\x3b\x03\xf7\xd5\x61\x6d\x06\x1a\x34\x5c\x69\xe4\x22\x88\x5c\x12\xf4\xba\x03\x63\xd9\x6c\x39\xa8\xf2\xf4\xaa\x0b\xbf\x66\x9d\x5d\x7c\xaf\x36\xd1\x61\x6d\x16\x1a\xc8\xa6\x71\xd8\x44\x43\xe4\x76\x47\x4a\x13\x9d\x36\x6d\xc1\xe5\x72\x6c\xbd\xed\x81\x86\xeb\x18\x90\x5e\xe4\x80\xb5\x4a\x45\xb6\x79\xdc\x2e\xcc\x19\x8c\x9d\x38\x2d\x43\x2e\x5b\xf5\xe6\x36\x59\x89\xa3\xeb\x28\x16\xd5\x07\x94\xe2\x8c\x86\xf6\x3c\x17\x51\xda\x44\x53\x35\x3c\xc3\x9b\xaa\x35\x37\xec\xda\x9e\x6a\x70\x19\xb2\x7b\x5a\xd0\x58\xea\x61\xcc\x36\x3b\x92\x48\xef\xb9\xb8\x5c\x8a\x65\x17\x81\x72\x88\xc7\x2b\xe0\x45\xc6\x99\x1c\xec\xcb\xe2\x12\x66\x15\x57\x20\xbb\x13\x23\x86\x88\xdf\x8a\xd1\x98\x9c\xde\xea\x9c\xfc\xdf\xd5\xd7\xb4\x9f\xa4\xa6\x7d\x43\x98\x61\x7d\xc0\xfa\x90\x76\x19\x1f\x96\x59\x6d\x5e\x44\x45\x9f\x71\x7b\xae\x92\xb6\x6b\x0c\xaf\xb6\x46\xb8\x17\x93\x98\xe3\x9a\x35\xdd\x47\xf6\x92\x9e\xb5\x9b\xbe\xe7\xae\xca\xda\xd8\x07\x82\x28\xbe\x55\x45\x4a\xf1\x8d\x21\xbb\x80\x22\x4a\xd5\x43\x00\xc1\x24\x86\xf4\xdb\xa8\x3e\x98\x85\xb1\xbd\x29\x8a\x6b\x68\xe5\x2c\x73\x9c\x01\xa4\xbb\x59\x82\x16\x35\x98\x7b\xa1\x61\x7b\x4d\xd9\xd6\xc8\xfd\x0a\xde\x21\x9e\xaf\x0f\x50\x84\x85\xca\x2e\xd1\xff\x64\xb7\x3c\x6b\xd5\x0c\x99\xfd\xd1\x0b\x1f\x74\x42\x57\x98\x54\x14\xbb\x0a\xc2\x07\x64\x9c\xc9\x9c\xda\x9f\xb3\x3a\xdb\x29\xab\x59\x31\x82\xe1\x39\x4c\x1d\xd2\x37\x8d\x21\xad\x11\x6f\x79\xc8\x35\xcd\x3e\xe7\x1f\xda\x3d\xec\x93\x35\xe1\x22\x4c\x98\x88\xdf\x6a\x45\x73\x82\x80\x6d\x85\xf1\x0c\xbb\xeb\x60\x7a\x08\x15\xcd\x0b\xbb\xc8\x75\x1b\x6d\xd4\x38\x6d\x40\x83\x12\x68\x8c\xb3\xad\xa5\xd3\x38\x62\x73\x63\xc7\x7c\x50\x6d\x1b\xe2\xa1\x0d\x43\x16\xa1\x5c\xb0\xe1\x7b\x38\x20\xfb\xbc\x52\x59\x04\xb5\x78\xd5\x45\x6a\xaf\xe2\x54\x1c\xe3\x44\x50\xad\xf3\x14\x2d\x22\xbf\x88\xde\x3b\xe2\xdf\x75\xec\xd5\x25\x74\x22\x32\x8b\x79\x71\xa5\x8d\xa7\x72\x7c\x5a\x46\x89\x15\x52\x8f\x12\x39\x4c\x9b\xe3\xea\xa4\xbe\xd1\xb6\x78\x9c\x45\xa1\x6e\x45\x76\xe1\x25\x16\x0f\x51\x28\x60\x91\x3c\x3e\x75\xa2\x5a\x04\x53\xaf\x63\x25\x4f\xcb\x80\x29\x19\xaa\x08\x2f\xdd\x74\xc8\x2e\x10\xa2\x40\x97\xc3\x43\xec\x07\x5a\xff\x85\xda\xce\x3f\x1e\xe7\xdf\x17\xd9\x3a\xb7\xb8\x7e\xc9\xda\xe9\x85\x45\xa7\xc1\xb6\xc3\x14\xac\xf7\x5a\xb8\x16\x02\xf0\x3d\x10\xb2\x3f\x4f\x32\xf5\xde\xdd\x5f\x6b\x3f\xf6\x14\x3a\x99\x2e\x53\xcb\xb7\x7c\xa0\x71\x40\xb3\x99\x19\xd0\x50\x90\xdc\x57\x31\x0a\x3a\x06\x34\x62\x51\xb3\x8d\x87\x74\x03\x81\x01\x8d\x05\xa1\x58\x70\x89\x9d\x7f\x26\x2d\x5b\xba\x0c\xee\x78\xf4\x38\x9f\x9a\xe6\x3c\xa7\x43\x6d\x01\x09\x53\x4c\x22\x21\xc3\xf6\x92\xb0\xb7\xc4\xac\x7d\x09\x9b\x5e\x37\x5e\x4f\xc4\xf0\x93\x6e\x6e\x8b\xd9\xf2\x52\xac\x6f\x09\x1b\x54\x9a\xbd\x46\xb3\x01\x2a\x45\x24\x6a\x1f\xd2\x4d\x3e\xdb\xb6\x88\xea\x76\xb0\xa4\x91\x37\xcd\x5e\xbb\x64\x87\x4e\x43\x3d\xf6\xc4\x2c\xb6\xd3\x7b\xb9\xc5\xf6\x6e\x3b\x27\xd5\xfa\x98\xb0\xea\x45\x8c\x8c\xc2\x82\x38\xca\xd4\x37\xa2\x9b\x53\x2c\xb8\xdc\xd2\x30\xd2\x24\xc4\x36\x90\x38\xe1\x5a\x66\xb4\x01\x09\x13\x10\x6b\xcc\x50\xcb\x10\x49\x8d\xc4\x55\x4f\x5a\xa3\x34\xb3\x93\x66\x47\xa2\x0a\x5c\xb2\x65\xa3\x6c\x20\xbb\xa1\xd0\xa3\xc4\x72\xa5\x03\xab\xc9\x29\xa3\x8c\x3c\x6c\xc7\xd0\x05\x07\x61\xbe\xe2\x89\x4c\xe7\x89\x6d\xdc\xd4\xc4\x1f\xdd\xfb\x9b\x62\x5e\x2f\xad\x1a\x9a\xe5\x4b\x2f\xe2\x88\x79\xae\xac\x61\x7a\x36\xd7\xa1\x94\x7d\x2c\x91\xe9\x6a\xb5\xcf\xc6\x4b\xa8\xb5\xa1\x6c\x67\x62\x7b\x67\x4b\x45\x19\xd2\x52\x04\x02\x4d\x54\xd6\xa4\x62\x31\x48\x11\x1d\xc2\x0f\x84\x62\xc9\x06\xd0\x28\x1b\x71\x49\x79\xe4\xee\x1e\x8b\xf0\x1d\x13\x09\x34\xa9\x23\xf1\x89\x30\x62\x66\x48\x22\x89\xf2\xd4\x66\xc2\x85\xb9\x9a\xce\x9d\x84\x66\x25\x9b\xc3\x2d\x98\x9a\x71\x41\xea\x44\x19\xb3\x90\x6b\xdb\x2e\xc2\xa2\xe3\xc6\xb6\x15\x8e\xad\x52\xec\xd6\xed\xda\x9c\x6d\xe1\x8e\xbb\x60\x2f\x8f\xb3\x39\xc8\x83\x98\x88\x81\x29\x79\xb4\x92\x66\x66\xd2\xcf\x43\xc6\x3c\xd9\x88\x1c\x9b\x8c\x3e\x93\x10\xd6\xaf\x0c\xcd\x58\x75\xe1\xa2\x08\x85\xcd\xbc\x59\x8d\xa1\x26\x73\xcd\x50\x4f\xbe\xe5\x66\x27\x2a\xd2\xcb\xc4\x58\x0f\x0c\x37\x95\xab\x64\x3e\x99\x32\xc4\xda\xb8\xc1\xbe\x1c\xd5\x39\x53\x8f\x1d\x52\xed\xee\xda\x59\xc1\x74\xb4\x31\xea\x9d\xd1\xc8\x01\xc2\x10\x3e\x19\x51\xca\x2b\xd3\xac\x4f\xb5\xce\x2a\x47\x4d\xc6\xa2\x78\x5c\x62\xde\x07\x2b\xe5\xb8\xe5\x38\x52\x60\xaf\x92\xa9\xe9\xfc\xcd\xd6\xec\x53\xd8\xf7\x41\xdf\xc3\xa2\x63\x46\xb1\xef\xf8\x33\x29\x72\x69\x8b\x65\xa1\xcf\x9b\x06\xab\x58\xcd\x9b\x6d\xae\xe5\xcc\x73\xa4\x2d\xaf\xe8\x3d\xfa\x8a\x4e\x17\x1b\xd5\xf2\x18\x47\x80\x8c\xac\xf0\xec\xa3\xcc\x94\x75\x2e\x99\xc4\x98\xab\x7c\xe8\x72\xad\xcc\x8e\x98\xb0\xa9\xe7\x60\x99\x0b\x35\x65\x85\x8d\x71\x5c\x35\xc6\xf2\x95\x5c\x22\x61\x6d\x19\x67\xe9\x8a\x65\x37\x64\x41\xec\x49\x33\x2f\x72\x31\x2c\xf5\xc9\x9d\x4c\xa3\xcc\xe8\x69\x99\xf1\xb0\xd9\xd8\xd3\x52\x9f\x98\xbb\xf5\x89\x99\x72\x6e\xac\xcc\x92\x29\xb8\x8d\x8c\xa1\x1f\xda\x53\xbb\xb3\x6d\x57\x43\x8c\x7b\xb3\x5a\x47\x6a\x2f\x08\x0d\xeb\x45\xfe\xe5\x2e\x58\x99\x19\xd7\x98\x3b\x4b\xca\x6e\xc9\x14\x1a\xa5\x30\xe1\x93\xb0\x05\x03\x7c\xcf\x1d\xd7\x10\xa1\x1f\xad\x28\x43\x3d\xe7\x08\x46\x86\xad\x3c\xe5\x54\x63\x1c\x2c\xb9\xcc\x9c\x62\xd1\xf3\x8b\x3c\x5e\xa1\x76\x4d\x57\x27\x89\xab\xe1\x19\x14\x29\x03\x3a\x9b\x41\x29\x9d\x17\x33\x4e\x47\xbf\xdc\x97\x48\x4f\x4b\xdd\x92\xed\x74\xbc\x01\x1f\xb1\x3c\x13\xbe\x22\x77\xb5\x30\xb9\x56\x17\xd1\x55\xe2\x7c\x73\xb4\x95\x56\x4e\x15\xb6\xc0\x93\xa2\x20\x75\xd9\x39\x2a\xce\x1f\xe5\xde\xa0\xb6\xa3\x11\x4e\x30\xc9\x37\x3d\x13\x6e\x40\x1a\xf7\x48\x0a\x62\x86\x91\x26\xc5\x25\xf6\x91\x68\x22\x34\xf8\x4b\xc2\x22\x3b\x7a\xc6\x9f\xa0\x49\xcb\x8b\xd3\x36\x5a\x98\x4a\x88\x53\x31\xef\x94\xb8\x34\x95\x36\xe5\x66\xe1\xae\xa1\xe2\xd4\x4c\x4c\x9c\xca\x10\xa8\xb2\xac\xfd\x23\x26\x64\xba\x6b\xd9\x5d\x48\x31\xd3\xd1\xcd\x42\x4c\x11\x7e\x38\xa5\x10\x26\xc5\x80\xca\xc8\x0d\x74\x7a\x2b\x12\x65\xca\xe1\x10\xeb\x9e\x7b\x64\x81\xbd\x07\x06\xd7\x21\x6f\xc1\x7c\xd6\xf6\xd7\x43\x27\x4e\x3f\x7c\xda\xc1\x8f\xa4\xdb\x5f\xb3\xfc\x18\x52\xc5\xd4\x88\x64\x9a\x22\x8c\x8e\xf0\x63\xd0\x45\xa9\x3d\xa3\x0e\xb2\xf8\x0e\xd7\x74\x56\xc6\xb6\xe8\xcb\x23\x90\xe8\xfe\x94\x7d\x20\xf6\xa9\x9d\x6b\xf1\x1d\xb4\xe1\x77\x96\x7c\xbe\xab\x8f\x60\xf5\x3c\x60\x46\xe4\x18\x4e\x3b\xcb\xaa\x8c\x7f\x96\xa5\x1b\xab\x12\x27\x53\x33\x63\x9d\x24\x69\x07\x42\xb3\x89\xd3\x22\xcd\xe0\xb3\x6b\xc8\x31\x53\xf2\x08\x6a\x5b\x87\x47\x5a\xbc\xfb\xb4\x63\xa3\xf1\x1d\x08\xee\x1d\x9b\x89\xf1\x84\x7b\xc1\x75\x3e\x87\xec\xe6\xf1\x85\xaf\x3c\x75\xa6\xfd\xe4\xa1\x74\x76\xf3\x30\xbb\x10\x18\x3d\xdc\x31\xc8\xe2\x64\x32\x8b\x3c\xea\xd1\xf8\x52\x44\xa8\xd1\xce\x6e\x94\x7c\x93\x26\xca\x24\xbd\x97\x35\xd9\x27\x21\x39\xf1\x23\x90\x71\x5c\xaf\x92\x02\x7a\xea\xc2\x1b\x71\x88\x2d\x17\x45\xf2\xd4\x9a\xe8\xe1\x43\x66\xbe\x1e\xc2\x34\xc3\x85\x48\x72\xd9\xdd\x4a\x4a\x1b\x47\xb9\x12\xfe\xaf\x63\xba\x4b\xec\xa4\xf6\xc1\xa9\x1c\x4b\xf5\x60\x4a\x06\x77\xd5\xdd\x9e\x7f\x85\xa6\xe5\x0f\x11\xbb\x2a\x49\x67\x9c\x44\x11\xcd\x33\x63\x48\x47\x6b\x5e\x6c\x95\xe9\x21\x5d\x1d\xf1\x83\x19\x7e\xb7\x56\x63\xe3\x5b\x56\x4b\x2a\xba\x08\xc8\x2b\xcc\x94\x05\x67\x52\xbc\xb7\xf7\x8d\x65\xc1\x4c\x91\x3a\xf5\xa5\x24\x02\xf4\x6d\x51\xfd\xd1\xd6\x73\x06\xb3\x18\x93\x31\xc4\x5b\x69\xe8\x88\xb4\xe6\xee\xd3\x44\x17\xb5\x19\x42\xa3\x34\xdc\xe3\x7c\xdc\x3e\x8a\xbb\x5f\xc5\xbc\xe5\x93\x9a\x49\x9a\x58\xbd\x2b\x62\xa9\xcd\x56\x9a\xb7\xe5\x22\x76\x17\x6b\x5f\x78\x06\x52\x3e\xa9\x5d\x6a\x65\x9d\x9a\x39\xc9\xb5\x92\x89\x29\x98\xf4\x01\xe5\x0c\x54\xa0\xd1\x1d\x6b\x74\xe7\xcd\x99\xb8\xf3\x26\x69\x88\x3a\x07\x53\x15\x34\x7a\x41\xc0\x96\xb8\x22\xf3\x99\x54\x52\xb4\x30\xdc\x29\xd4\x24\x43\x84\x67\xce\x26\xf6\xcd\xb8\x46\x97\xe8\x84\x99\x19\x35\x61\x46\xcb\x44\x49\x5d\x16\xce\x66\x71\x4f\xe6\xc1\x27\x7d\x71\xee\xa1\x20\x75\x0f\x25\xa8\x8c\x18\xd1\x9f\xb5\x14\xb5\x72\xf2\xf8\x57\xbf\xfa\xb0\xbf\x2f\x5d\x8a\x52\x0e\x1b\x51\xeb\xf7\x90\x8d\x7d\xd8\x66\xa3\xeb\x5b\xcc\x85\x6a\x4c\xaf\xc1\x98\xed\x9d\x48\x2e\x91\x2d\x7a\xfa\x6e\x76\xe8\x7b\x35\x89\x34\x62\xef\xc9\x44\x1a\x1a\xe5\xf6\xb3\x9e\x4f\xde\x81\xd6\xc2\xae\xc3\xd3\x47\x32\x8c\x00\x62\xeb\xcf\xbe\x3f\xb9\x25\x96\xaf\x36\xf4\x51\xac\x38\xe1\x47\x1f\x67\xc5\xa3\x38\xe1\x5d\x78\xfe\xb1\x40\x23\x1e\x3d\x53\x8c\x08\x94\xc2\xa0\x28\x8e\xa9\x93\x13\x57\x72\xdc\xe9\x88\xc8\x7d\x4f\x99\x5f\x92\xf6\x7b\x31\x7d\xb3\xe3\x81\x7e\xd6\x53\xf7\xcc\x91\x63\x7b\x0e\xac\x1c\x7d\x2a\xd3\x7e\x15\x39\xc2\xca\x50\xe0\xee\xc1\x51\xcc\x3d\x50\x82\x12\x51\x52\xc7\x91\x04\x0c\x7d\x02\xa7\x1c\xb2\xc4\x37\xfd\x7b\x3c\x5d\xa3\x6d\xb8\x17\x53\xf5\x73\x78\x6f\xec\xe0\x1e\x7b\x5f\xe3\x50\xbb\x97\x31\x47\xb7\x74\x36\x9f\x65\xe4\x18\xc7\xc9\x74\xa8\x08\x30\xde\xb5\xa9\x98\xf9\x60\x9c\xdb\x06\xa9\xb7\x66\xe4\xd7\x5b\xbd\x20\x23\xdd\xdb\xb3\xef\xc6\xa4\xb6\x24\xb3\xe8\x0e\xdd\x8f\xb9\x1b\x1f\x73\x79\x03\x0a\xa3\x8e\xdc\x6c\x66\x89\xa4\x9f\xd2\x8c\xb4\x9b\x36\x23\xa4\x75\x98\x7e\x61\x46\x69\x15\x11\x7f\xc0\xd4\xcb\x64\xe3\x99\x0d\xee\x46\x3a\xa4\x91\xde\xc4\xad\xb0\xa1\xd7\xff\xd8\xdc\x8d\x5a\x87\x53\xaf\x15\x6a\x05\x39\x13\xbc\xfa\xda\x16\x0c\xbd\x63\x8d\xf4\x90\x19\x3d\x2d\x67\x74\x4c\xf2\x95\xdc\x77\xbc\x29\xf6\x2f\x74\x5b\xe1\xee\x2f\x29\xb0\xa8\x6e\xe2\x72\x74\xb1\x65\xbb\xee\x92\xdd\x38\x5d\x74\x5a\x45\xf5\x32\xe4\x3d\xe7\xe1\x29\x61\x43\x19\x27\x17\x84\x99\x6b\xcb\x08\xeb\xcf\x32\xcb\x58\x58\x30\xd4\x33\x68\x98\x5c\x9e\x27\x03\xed\x05\xf3\xa8\x1a\x0c\x06\x60\xb0\xa5\xae\x10\xd7\x72\x65\x4c\x8c\x4f\xaf\x13\xb4\x98\x60\xb1\x6e\x30\x22\x1e\x9e\x48\x7f\xd3\x8d\x07\x94\x6a\x3b\x21\x0f\xaf\x4a\x50\x3b\x28\x24\xc8\xf5\xaf\x58\xb4\x29\x44\xa3\x4d\x95\xb4\x0c\x11\xe9\xd3\x29\x14\x3c\xcb\xb2\xf4\x68\xb4\x1a\x3d\x1e\x0f\x2b\xb5\x8c\xb0\x89\x68\x10\x4a\xa0\x87\x04\x8e\x94\xa4\x61\x35\xc7\xec\x76\x3d\xae\xe0\xd6\x83\xa8\xc9\x50\xbb\x79\x54\x28\xe4\xf3\x3a\x89\x9a\xb2\x00\x12\x79\x42\x94\x4c\x0f\xce\x55\x8e\x07\x3f\xcd\x21\xd3\x63\xa1\xd6\x3c\xa0\x3d\x09\x2a\xdf\xd0\x74\xac\xf2\x9c\xb3\x5f\x61\xf0\xa0\xc1\x42\x72\x19\x60\xce\x11\xa1\x89\x7d\xcb\x2b\xb1\x40\x6c\x07\xf0\xbc\x02\x4d\x07\x54\xbd\x9a\x53\x9f\xc0\xa6\x0f\xe6\x91\xd6\xcd\xbe\x46\x27\xa8\x06\x93\x93\x83\x81\x89\x00\x0c\x22\xc1\xf6\xd4\xd3\x8d\x69\x54\x3b\x8c\x6a\x27\x95\x6a\x16\x3d\x4c\xe1\x73\x34\xaa\x7d\x41\xb5\x6d\x39\x8a\x6a\x05\x9a\x3e\xa8\x3a\x35\x9f\xc6\x2c\xc3\xa6\xcd\x9f\xdf\x0b\x2d\x9d\x7e\x5b\xa7\x9f\x14\x0c\x1f\x28\x56\x04\x25\xe1\x00\xb9\x21\x22\xd4\xd9\x64\xa5\x4a\x02\x27\x3c\xd2\x4e\xf6\xab\x58\x19\x44\xa2\x03\x3b\x23\x9b\x0b\x7d\xde\xe0\x7e\x3f\xd8\x5f\xe6\x95\xae\x89\x5d\xb5\x9a\xaf\x40\x46\x11\x8f\xd4\x39\x90\x7d\x61\x5b\x65\x18\x5a\xe9\x7d\xe1\xed\xb7\x82\x42\xc1\xde\x1f\xce\x31\xdc\xbd\x8c\x2e\xb1\x49\x97\xd8\xbc\x4b\x7a\xbc\x4b\xdc\x48\x97\xf4\xb4\x2e\x81\x7e\xbf\xaf\x4f\xcb\x9e\x76\xd7\x90\xf5\x97\x2b\x7a\xc5\x95\x9d\xe5\x69\x9d\xa5\xda\x35\xac\x26\xd1\xe2\xde\x80\x76\xad\xcd\xa6\x11\xcc\x57\x40\xbf\x3f\xa4\x67\x12\x4f\x1f\xb0\xa5\xb1\x26\x57\x55\x15\x95\x24\xcc\xbf\x0d\xab\x78\x20\x63\x4b\x97\xda\x76\xa8\x05\x9c\x35\x35\x92\x68\xe0\x3f\xf9\x80\x23\x92\x60\x64\x6e\xd3\x80\xdf\x64\x3c\xd5\x10\x91\x25\x0a\x43\xeb\x98\x8d\xdb\xa5\x8e\xe3\x99\x0c\xb0\xcf\x9a\x8c\xe5\x4c\xfa\xb0\x0c\xa0\x5d\xac\x00\xd8\xb3\xc8\x5c\x09\x01\x74\xad\x9e\xac\x1e\x36\xac\x1e\x7f\x07\x71\xae\x51\x28\xb8\x7c\x38\x5b\xac\xec\xa4\xe5\x83\x09\xd7\x6a\xe9\xc5\x5b\xbc\xb8\x08\x95\xd7\xb8\x9b\xc8\x78\x3c\xe2\xa5\x85\x21\x2a\x35\xfc\x9e\x87\xf9\xe9\x2a\x8d\x8b\x47\xed\xcd\xc7\x5b\x2c\x89\x46\xb1\x64\x18\x0f\x60\x7a\x4a\x62\x39\x10\x95\x5a\x8e\xd7\x64\x05\x9e\x74\x70\xfb\x78\xab\x15\xa2\xc8\xa6\x41\xe3\x35\x73\x1e\x03\x6d\x18\x26\x1e\xf4\x7d\x60\x56\x8b\x6f\xab\x1e\xef\x9d\xad\x17\x0a\xfa\x2f\xd8\xb3\xca\xd0\xb5\x12\x9b\x6d\x3e\x6f\x0f\x52\x16\x5b\x03\xb6\xd4\xe0\xb4\xb5\xb5\xd3\x50\x6b\x07\x36\xad\xf2\x5c\x73\x7f\x7b\xae\x29\xf8\x49\xd7\x6a\xa8\xc5\xa3\x40\xb3\x09\xaa\x8d\x5a\xb3\x0e\x3b\x96\x3e\x93\xbb\xfa\x4c\x26\x4b\x22\x1f\xf6\xfb\xf9\x0e\x7b\xc0\xd9\xec\x02\x16\x82\xd9\x8c\x7c\xa0\x16\x58\xab\xdf\xef\x00\xe8\x9a\x22\xf8\x21\x5d\x45\x39\xcf\xec\xc2\x00\x3c\x60\x95\xe7\xcd\xde\x7e\x67\xde\xef\xf7\x4d\xdf\xea\x82\xaa\x6d\x75\x61\x6f\x72\x12\x54\x7b\x93\x93\x74\xf5\xa9\xef\xc4\x8a\x81\x76\xbf\xef\x0f\xe8\x90\xb8\xca\xcd\xcb\xd2\x3a\x45\x1b\x0b\x3b\x39\x0e\x33\xa9\xe3\x30\x13\x19\x87\x99\xfa\x04\x63\xa5\xac\x51\x07\x4c\xc0\xdf\xa9\x50\x8d\x0c\x54\x07\x4b\x06\xe6\x5a\xe5\x39\x77\x7f\x6f\xce\x15\x1d\xdd\xb0\x02\xd5\xd1\x0a\x34\x5d\x50\x0d\x6a\x2e\xe5\x52\x79\xbb\xdf\xcf\x47\xc6\x4d\x63\x40\xb4\x87\x1b\x40\xac\x11\xbd\x93\x1b\x7a\x27\x7b\xd0\x81\x36\x98\x50\xb9\x2d\x45\xdd\x03\xe5\x42\x21\x64\x21\x3e\x7d\x3a\x5f\x00\x1b\x02\xc7\x6c\x40\x8f\x0c\x81\xcc\x6e\xc8\x17\x2b\xc2\x81\x12\x8d\xb4\x38\x69\x11\x51\x51\x3c\x8c\xca\x3d\x13\xe9\xc3\xc7\xda\x19\x0f\x74\x2c\x54\x12\xaa\x1b\xf4\xad\xa0\xdf\x77\x26\xf4\xb8\xfa\x7e\xbf\x5f\xac\x58\x96\x45\xe4\x46\x5f\xc6\x57\xb5\xc9\x2f\x58\x91\xe1\xf1\xe9\x48\xdb\xcd\x15\xdb\x6b\x20\x76\xf5\x87\xf4\x0d\x5f\xaa\x36\x44\x25\x22\x91\x74\x0f\x39\x76\x23\x70\xb0\xd3\x08\xad\x9e\xa2\x9c\x79\xd7\x06\xe9\xb2\x5d\xcf\x44\xa0\x84\xfd\xc7\xbb\x5d\x14\x1c\xb4\x69\xb4\x6a\xce\x07\x4c\x1a\x9b\x3d\x92\x05\xb4\xfe\x58\x58\xed\xa2\x03\x6d\x64\x37\xb7\x5a\x3d\xd5\xd4\x42\xc2\x3e\xd2\x30\xcc\x57\xaa\xc5\xca\x80\x4f\xbb\x35\x63\xf3\xd5\xbf\x1b\x55\xe3\x80\x01\x8d\xff\xef\x9f\xbf\xe1\xd0\xd5\x6f\x08\xe0\x9b\x02\xf8\x16\x07\x36\x2e\xff\x56\x42\x6f\x49\xe8\xf7\x12\x7a\x47\x7c\xf0\x1c\x07\xae\x89\xba\xae\xa9\x2a\xde\x97\xd0\x9f\x24\xf4\x37\x09\xfd\x85\x43\xb7\x04\xa6\x9b\xbf\x16\x95\x3e\x2f\x52\xce\xcb\xd2\x6f\x88\xbc\x17\x44\xde\x65\x01\x7c\x5f\x54\x24\x48\xb8\xa5\x48\xf8\xb5\x84\xfe\x20\x21\xd1\x11\x1b\x17\x25\xcd\x02\xe1\x2d\x51\xe9\xe6\x85\x3f\x73\xe8\xce\xeb\x94\x50\x8a\xfb\x45\x02\x1d\x26\x38\xff\x29\xa1\x37\x04\x74\xe7\x75\xda\xb6\xe3\x14\xa4\x38\x1e\xa7\xe0\x45\x02\x3e\x41\xc1\xcb\x0a\xa4\x15\x3c\x45\x30\xbd\xfa\x0f\xa3\x6a\x3c\x44\x07\xe6\x0d\x0e\x6d\x5c\xfc\x96\x84\x9e\x97\xd0\x8b\x1c\xba\xfd\x1c\x07\x6e\x88\x52\x37\xbe\xc9\x81\xcd\x57\x09\xb6\x83\xb4\xb2\x37\x39\x74\xed\x45\x01\xbc\x24\x80\xef\x0a\xe0\x7b\x1c\xb8\xfa\x6d\x0e\x6c\x5c\x14\x85\x6e\x88\xa4\x5b\x57\x38\x70\xe7\xf5\x8f\x38\xb4\xf9\xea\x25\xa3\x6a\x1c\xa2\x68\xde\xe2\xd0\xc6\xc5\xef\x72\xe8\xda\x0f\x64\xd2\xf7\x24\xf4\x23\x09\xbd\x2a\x21\x51\xee\x9a\xc8\xbc\xf1\xb2\x00\x44\x5d\x37\xbe\xc3\x81\x3b\xe7\x04\xca\x9b\x17\x08\xf0\x35\x02\x3d\x2f\x21\x32\x46\x87\x9e\x25\xd0\x0b\x02\xda\x7c\x95\x74\xf7\x61\x4a\xe4\xdb\x1c\xba\xfa\x92\x00\xbe\x23\x80\xef\x72\x60\xe3\xca\x37\x04\x74\xf9\x23\x99\xf6\xbc\x84\xbe\x25\x73\xff\xc9\xa1\x6b\xaf\x8a\xa4\x8b\x3f\x96\xd0\x4f\x45\xa6\x48\xba\x26\x52\xae\xbe\x2c\x6b\x10\x84\x5d\xfb\x05\x07\x6e\x09\x3c\xb7\x5e\x94\x85\x2e\x4a\xd4\x22\xed\xd6\x3b\x12\xcd\xeb\xa2\x86\x9f\xc9\x24\x05\x89\x5a\x6f\xfc\x48\x00\x3f\xe0\xc0\xe6\xab\x64\x30\x8f\xd0\x3e\xf9\x2d\x87\x36\x2e\x9e\xe7\xd0\x8d\x57\x38\x70\xe7\x9c\x28\xb6\xf9\x2a\x69\xed\xc3\xf4\x83\xdf\x71\xe8\xe6\xdf\x38\x70\xed\x75\x0e\x6c\x5c\xfc\xb5\x48\x3a\x2f\x00\x91\x72\xf3\xb7\x22\xe5\x0d\x91\xf2\x16\x07\x6e\xac\x73\xe0\xce\x79\x51\xfa\xce\xb9\x0f\x25\xf4\x11\x87\x36\x5f\x25\x69\x8f\x50\x1a\xde\xe1\xd0\xb5\xb7\x38\xb0\x71\xf1\x0d\x09\xfd\x96\x43\xb7\xce\xcb\x24\x55\xec\x1d\x09\xfd\x5e\xd4\x21\xca\x6f\x5e\xf8\x9d\x84\x3e\xe0\xd0\x9d\xf3\xdf\x17\x69\xaf\x12\x42\x8e\x52\xf4\xef\x72\xe8\xea\xf7\x04\xf0\x7d\x01\xfc\x80\x03\xd7\xde\x11\xc0\xef\x05\xf0\x07\x01\xbc\x2f\x0a\xff\x90\x03\x1b\x17\xff\x24\xa0\x2b\x2f\x71\xe8\xa6\xc8\xbc\x25\x52\x6e\x7d\x57\x16\x12\xd0\x35\xf9\xdd\x45\x51\xfb\x8d\xd7\x38\xb0\xf9\xea\xc7\x46\xd5\xf8\x6f\x4a\xf0\xef\x39\x74\xed\x6f\x1c\xb8\xfd\x12\x07\x36\xd7\xc9\x7c\xff\x32\x2d\xf5\x1e\x87\x36\x2e\xbe\xcf\xa1\x9b\xef\xc8\xa4\xbf\x70\xe8\xda\xdf\x65\xd2\xdf\x38\x74\xe3\x67\x1c\xd8\xbc\xf0\x2e\x87\xee\x9c\xfb\x86\x84\xbe\x25\xa1\xe7\x05\x74\xfe\x0d\xf1\xc5\x3a\xe1\x59\x8f\x52\xf4\x7f\xe0\xd0\xb5\x8f\x05\x70\x49\x00\x1f\x72\x60\xe3\xe2\xdf\x25\x74\x51\x64\x5e\x91\x49\xff\x94\xd0\x65\x0e\x5d\x17\xd5\xdf\x12\x55\x6c\x5e\x78\x43\x42\xbf\xe6\xd0\x9d\x73\x2f\x49\xe8\x45\x01\x9d\xff\x06\x87\x6e\x12\x16\xf8\x28\xe9\xac\x9b\xb4\xd8\xd7\x29\xdd\xa4\x55\xc7\x28\xdd\x7f\xe4\xd0\xc6\xc5\x8f\x04\x74\xe9\x1b\x12\x12\xe5\x36\x2f\xfc\x89\x43\x37\x5e\x17\x49\xeb\x84\x85\x3f\x46\x2b\xf9\x13\x87\x6e\x5e\xe4\xc0\x75\x91\x77\xf5\x15\x0e\x6c\x5c\x7a\x5e\xe4\x7d\x5b\x26\xbd\x28\x92\x5e\x90\x49\xdf\x95\xd0\x4b\x1c\xba\xf5\x6b\x0e\xdc\x38\xc7\x81\x3b\xe7\x7f\x24\xa1\xb7\x04\x6a\xfa\x21\x6d\x27\xe1\x51\x8f\xb1\x76\x12\x9c\xc7\x29\x89\x7f\xe6\xd0\xd5\x57\x05\xb0\x2e\x80\x1f\x73\x60\xe3\xca\xab\x12\xfa\x91\x84\x7e\x2a\x21\x51\xee\xea\x4f\x44\xd2\xa5\xef\x71\xe8\xd6\x1f\x64\xd2\x0f\x38\x74\xfd\x7b\x32\x49\x56\x76\x49\x20\xb8\x2e\x4a\xdd\xfa\x93\x00\xde\x17\xb5\x0b\x84\xb7\x7e\x2f\x31\xcb\x3a\x45\x4d\x37\x5f\x11\x85\x24\x05\xa2\xcc\x8d\x5f\xcb\xcf\x5e\x97\xd0\x2f\x24\xa4\x72\xcf\x4b\xe8\x0d\x09\x49\x9a\xaf\xfc\x4c\x60\x12\x54\xdc\x14\x4d\xbc\x2a\xb3\x3e\x12\x28\x5f\x14\xc0\xaf\x38\x70\xe7\xdc\x77\x25\x24\xea\xbc\x41\xd1\x1c\xa5\x69\x94\x58\x4a\x36\x4d\x7c\x9c\x0e\x16\x99\x04\x27\xe8\x60\xbd\xcf\xa1\x8d\x4b\x3f\x96\xd0\x4f\x39\x74\xe3\x2d\x0e\x6c\x5e\x78\x93\x43\x77\xce\xfd\x48\x42\xaf\x4a\x48\x7c\xba\xb9\x4e\xc8\xfb\x0a\xad\xf8\x02\x87\xee\x9c\xfb\xa9\x84\x7e\xc6\xa1\xdb\xdf\xe5\xc0\xe6\x3a\x99\xa1\x27\xe9\x07\x7f\xe1\xd0\xf5\x1f\x73\x60\xe3\xd2\xcf\x44\x92\x00\x6e\xfd\x48\x00\xaf\xca\x42\xbf\x90\xd0\xeb\xa2\xf8\x4f\x65\xd2\x79\x0e\xdd\xfe\x1e\x07\x36\x2f\xbc\xc5\xa1\x3b\xe7\xc4\x97\x77\xce\xff\x56\x42\xdf\x12\xe5\xd6\xc9\xa2\x38\x45\x29\xfb\x2b\x87\x36\x2e\x9f\xe7\xd0\xf5\x5f\x88\xa4\x4b\x6f\x89\xa4\xd7\x65\xd2\xaf\x45\xd2\xaf\x65\xd2\x6f\x25\xf4\x86\x84\xde\xe1\xd0\xad\x9f\x89\xf2\xa2\xfa\xcd\x0b\x1f\x71\xe8\xce\xf9\x77\x24\xf4\xbc\xc8\x5d\x27\xd2\xc8\x02\x25\xed\x6f\x1c\xda\xb8\xf4\x7b\x0e\x5d\x7f\x4b\x26\xfd\x81\x43\xb7\x7e\x21\xf2\xde\x90\x79\xef\x4b\xe8\x4f\x22\xf3\xb7\x1c\xb8\x21\xbe\xbb\x21\xb2\x6e\x7d\xc4\x81\x3b\xe7\x5f\x14\xd0\xeb\x84\xb0\x85\xaf\x51\x7a\xc8\x70\x3e\x4e\xe9\xf9\x80\x43\x57\x7f\x2e\x80\x5f\x08\xe0\x97\x1c\xb8\xfe\x0e\x07\x36\x2e\x5d\x14\x49\xbf\x97\x49\x97\x45\xd2\x1f\xc4\x77\xaf\x73\xe0\xa6\xa8\xe0\xe6\x6b\x02\xf8\x89\x00\x04\xb6\x8d\x2b\xbf\x15\xdf\xff\x49\x00\xef\x8b\x42\xeb\x1c\xb8\xf5\x63\x01\xfc\x94\x03\x37\xfe\x2c\xbf\x97\x94\x5c\x91\x64\x5e\xf9\x93\x84\xfe\x20\xa1\xf7\x25\xf4\x96\xa4\xfd\x2f\x02\xe5\x5f\x64\xd2\xdf\x25\xf4\x37\x0e\xdd\x7e\x9e\x03\x9b\xeb\x84\x7b\x3e\x41\xbb\xed\xef\x1c\xda\xb8\xf4\x4f\x09\x7d\xc4\xa1\x1b\x7f\xe1\xc0\x9d\x73\xe7\x39\x74\xfb\x05\x99\x44\xa6\xd8\x13\x54\x31\x58\x27\x53\xfc\x49\x5a\xdd\x3f\x38\xb4\x71\xf9\x1b\x12\xfa\x16\x87\xae\xff\x4d\x26\xbd\x28\xa1\xe7\x25\xf4\x12\x87\x36\x2f\xfc\x45\x40\xeb\x44\x68\xf9\x2a\xad\xf8\x22\x87\x36\x2e\x7f\x57\x42\xdf\xe3\xd0\xe6\x3a\x61\x35\x4f\xd1\x72\x97\x38\xb4\x71\xe5\x2f\x1c\xba\x7a\x8e\x03\xd7\xff\x2e\xf3\x2e\x72\xe8\x96\x28\xb4\x71\x59\x54\x71\xfd\xa2\x2c\xa5\xca\xff\x8d\x43\x37\xfe\xca\x81\xdb\x3f\x90\x79\x1f\x71\x68\x73\x9d\xc8\x43\x5f\xa3\x54\x5c\xe6\xd0\xf5\x4b\x1c\xd8\xb8\xfc\x23\x91\x74\x45\x00\x1f\xca\xbc\x57\x25\xf4\x63\x0e\xdd\xf8\x80\x03\xb7\xde\xe2\xc0\xe6\x85\x8f\x25\xf4\x1e\x87\xee\x9c\x7b\x43\xa4\xad\x93\xfa\x6d\x82\xfc\xc3\x6f\x72\x68\xe3\xf2\x2f\x38\x74\xf5\xd7\x02\xf8\x8d\x00\xde\x90\x85\x7e\x27\xa1\xb7\x25\xf4\x9e\x84\xde\x15\x1f\xbc\xc9\x81\x6b\xa2\xfa\x6b\xcf\xc9\x42\x17\x24\xf4\x67\x09\x7d\x20\xa1\xbf\x72\xe8\x96\xc0\x74\x53\x52\xf1\x96\x48\xf9\x95\x2c\x2d\xf0\x5c\x15\xd4\xdc\xbc\x22\x80\x1f\x88\x8a\x04\x09\xb7\x14\x09\xbf\x91\xd0\x1f\x25\xf4\x0f\x01\x5d\x94\x34\xbf\xc0\x81\xcd\x0b\xa2\xfa\xdb\xa2\xe3\xee\xbc\x4e\x09\xa5\xb8\xc9\x5a\xb6\x11\xc1\xf9\xa1\x84\xde\x14\xd0\x9d\xd7\x69\xdb\x7c\x0a\x52\x1c\x3d\x0a\x92\xb1\xb6\x57\x28\x78\x45\x81\xb4\x82\x55\x3a\x44\x64\x3f\x5f\xa2\x43\xf4\x2d\x0e\x6d\x5c\x7c\x4e\x42\x2f\x48\xe8\xdb\x1c\xba\xf1\x0d\x01\x88\x52\xb7\xd7\x39\xb0\xb9\x4e\xe6\x4c\x83\x56\xf6\x1c\x87\xae\x7d\x5b\x00\xdf\x11\xc0\xcb\x02\xf8\x3e\x07\xae\xfe\x8e\x03\x1b\x17\x45\xa1\x1b\x2f\x71\xe0\xd6\x3f\x39\x70\xe7\xf5\x8f\x39\xb4\xf9\xe2\xf3\x02\x5a\x27\xa8\x9b\x14\xe1\xf3\x1c\xda\xb8\xf8\x32\x87\xae\xfd\x50\x26\x7d\x5f\x42\xaf\x48\x68\x5d\x42\xa2\xdc\x35\x91\x79\xe3\x7b\x1c\xb8\xfd\x53\x01\xbc\xc6\x81\x3b\xe7\x2e\x73\xe8\x26\x19\x99\x26\xd5\x9a\x5f\x14\xd0\xe6\x3a\x59\x2b\x88\x12\xf4\x02\x87\xae\xbe\x23\x80\x77\x05\xf0\x7b\x0e\x6c\x5c\xf9\xa6\x80\x2e\x7f\x2c\xd3\x5e\x90\xd0\x73\x32\xf7\x43\x0e\x5d\x5b\x17\x49\x17\x7f\x22\xa1\xd7\x44\xa6\x48\xba\x26\x52\xae\xbe\x27\x6b\xb8\x22\xf2\x7e\xc9\x81\x5b\x02\xcf\xad\x6f\xcb\x42\x97\x24\x6a\x91\x76\xeb\x5d\x89\xe6\x9c\xa8\xe1\xe7\x32\x49\x41\xa2\xd6\xdb\xe2\xc3\xdb\x22\xe5\xa6\xf8\x6e\x73\x9d\xd0\xd7\xa2\x9d\xf3\x22\x87\x36\x2e\xfe\x8a\x43\x37\x5e\xe5\xc0\x9d\x73\xff\xe4\xd0\xe6\x3a\xe9\xfe\x65\xfa\xc1\xb7\x39\x74\xf3\x03\x0e\x5c\x3b\xc7\x81\x8d\x8b\xbf\x11\x49\xbf\x12\x80\x48\xb9\xf9\x3b\x91\xf2\xa6\x48\x79\x9b\x03\xb7\x7f\xcd\x81\x3b\xe7\x45\xe9\x8d\x0f\x2e\x89\xb4\x73\x1f\x73\x68\x73\x9d\xf4\x65\x9b\xd2\xf0\x12\x87\xae\xbd\xcd\x81\x8d\x8b\x6f\x4a\xe8\x77\x1c\xba\xf5\x2b\x99\xa4\x8a\xbd\x2b\xa1\xf7\x04\x74\xf9\xa7\xa2\x36\xf1\xe5\xe6\x85\x77\x24\xf4\x77\x0e\xdd\x16\x75\xdc\x20\x7d\xd7\x5e\xa1\x14\x11\x01\xc9\xa1\x14\x7d\x87\x43\x57\xff\x20\x80\x3f\x0a\xe0\x4f\x1c\xb8\xf6\xae\x00\xde\x13\x80\x2c\xf3\x67\x0e\x6c\x5c\x94\xd0\x15\x51\xe5\xcd\x1f\x71\xe0\x96\x48\xb9\xf5\xb2\x2c\x24\xa0\x6b\xaa\x06\x51\xe9\xed\x77\x44\xde\x05\x0e\x6c\xae\x93\x69\xf2\x75\x4a\xf0\x77\x39\x74\xed\x03\x0e\xdc\x7c\x9f\x03\xb7\xbf\xc3\x81\xcd\x75\xb2\x43\x9c\xa6\xc5\x5f\xe6\xd0\xc6\xc5\x0b\x1c\xba\xf9\xae\x4c\xfa\x2b\x87\xae\xfd\x43\x26\x7d\xc0\xa1\x1b\x3f\xe7\xc0\xe6\x85\xdf\x73\xe8\xce\xb9\x6f\x4a\xe8\x39\x09\xbd\x20\xa0\xf3\x6f\x8a\x2f\xd6\xc9\xc4\x75\x29\xfa\xef\x71\xe8\xfa\x37\x38\x70\xed\xb2\x00\x3e\xe2\xc0\xc6\xc5\x7f\x48\xe8\x92\xc8\xfc\xa7\x4c\xfa\x50\x42\x57\x44\x5d\x1f\x0b\xe0\x5b\x1c\xb8\xf1\x0b\x0e\xdc\x7e\x8f\x03\x9b\x17\x7e\xc3\xa1\x3b\xe7\xbe\x23\xa0\xf3\xdf\x94\x69\xdf\xe6\xd0\x4d\x9a\xc9\x3a\x8d\xc8\x85\x1d\x4a\xf5\xf7\x39\xb4\x71\xf1\x63\x01\x5d\xfa\xa6\x84\x9e\xe3\xd0\xed\x0b\x02\xf8\x33\x07\x36\xd7\xc9\x92\xf2\x68\x1d\x3f\xe0\xd0\xcd\x4b\x1c\xb8\xfe\x3c\x07\xae\x5e\xe0\xc0\xc6\xa5\x17\x44\xde\x4b\x32\xe9\xdb\x22\xe9\x45\x99\xf4\xb2\x84\xbe\xc3\xa1\x1b\xe7\x39\x70\xfb\x2f\xa2\xb8\xc8\xba\x73\xfe\x15\x09\xbd\x2d\x68\x20\xc3\xe0\xb1\x56\x92\x2f\x7d\x4a\xe1\x0f\x39\x74\xf5\x2f\x02\xf8\xab\x00\xfe\xc6\x81\x8d\x2b\xeb\x12\x7a\x45\x42\xaf\x49\xe8\x27\xe2\x83\x0f\x44\xd2\xa5\xef\x73\xe8\xd6\x1f\x65\x92\x40\x74\xfd\xfb\x32\x49\x56\x76\x49\x20\xb8\x2e\x4a\xdd\xfa\xb3\x00\x2e\x88\xda\xff\x2e\x52\xde\x93\x98\x65\x9d\xa2\xa6\x9b\xaf\x8a\x42\x92\x02\x51\xe6\xc6\x6f\xe4\x67\xe7\x24\xf4\x4b\x09\xa9\xdc\x5f\x49\xe8\x4d\x09\x49\x9a\xaf\xfc\x5c\x60\x12\x54\xdc\x14\x4d\xbc\x7a\x51\xa4\x7c\xcc\x81\xdb\x3f\xe6\xc0\x9d\x73\x2f\x4b\x48\x54\x75\x5b\xf4\xd6\x0d\x8a\x86\x72\x06\x0a\x51\x81\xe3\x1c\x25\xdb\xa7\x83\x45\x08\xea\xd2\xc1\xfa\x11\x87\x36\x2e\xfd\x44\x42\xaf\x71\xe8\xc6\xdb\x22\xe9\x83\x0f\x39\x74\xe7\xdc\x2b\x12\x5a\x97\x90\xf8\x74\x73\x9d\xb0\xee\x67\x68\xc5\xaf\x70\xe8\xf6\xcb\x1c\xb8\x73\xee\x35\x09\xfd\x9c\x43\x9b\xeb\xa4\x93\x02\xfa\xc1\xab\x1c\xba\xfe\x13\x0e\x6c\x5c\xfa\xb9\x48\x12\xc0\xad\x57\x04\xb0\x2e\x0b\xfd\x52\x42\xe7\x44\xf1\xd7\x64\xd2\xaf\x38\x74\xfb\xfb\x02\xf8\x90\x03\x77\xce\x89\x0f\xef\x9c\xff\x9d\x84\x9e\xe3\xd0\xe6\x3a\x91\x78\x43\x4a\xd8\x3a\x87\xae\xfe\x8a\x03\xd7\x7f\xc9\x81\x8d\x4b\x6f\x8b\xa4\x73\x32\xe9\x37\x22\xe9\x37\x32\xe9\x77\x12\x7a\x53\x42\xef\x72\xe8\xd6\xcf\x45\x79\x51\xfd\xad\x8f\x39\x70\xe7\xfc\xbb\x12\x7a\x41\x7c\x78\x59\x20\xdf\x5c\x27\x95\x61\x4a\xe2\x8f\x39\xb4\x71\xe9\x3d\x01\x5d\x7e\x8d\x43\xd7\xdf\x96\x99\x7f\xe4\xd0\xad\x5f\x8a\xbc\x37\x65\xde\x05\x09\xfd\x59\x64\xfe\x8e\x03\x37\xc4\x77\xff\xef\x25\x0e\x6c\x5e\xf8\x2d\x87\xee\x9c\xff\xb6\x80\x5e\x27\xd4\x62\x26\x6c\x11\x49\xbd\x47\x49\xfb\x09\x87\xae\x5e\x12\xc0\x65\x01\x5c\xe1\xc0\xf5\x77\x39\xb0\x71\x49\x14\xba\xfe\x9e\x4c\x92\xa5\xfe\x28\xbe\xfb\x27\x07\x6e\xbe\x2e\x80\x9f\x09\xe0\xa7\x02\xf8\x85\xf8\xfe\xca\xef\xc4\xf7\x7f\x16\xc0\x05\x51\xe8\xc7\x1c\xb8\x25\x88\xbc\xf5\x1a\x07\x6e\xbc\x2f\xbf\x97\x94\x5c\x91\x64\x5e\xf9\xb3\x84\xfe\x28\xa1\x0b\x12\x7a\x5b\xd2\xfe\x57\x81\xf2\xaf\x32\xe9\x1f\x12\xfa\x80\x43\xff\xef\x3b\x1c\xd8\x5c\x27\x5f\xae\xd0\x6e\xfb\x29\x87\x36\x2e\x7d\x28\xa1\x8f\x39\xf4\xff\x5e\xe6\xc0\x9d\x73\xbf\x12\x49\xdf\x93\x49\x64\xda\xad\x30\x0d\x82\x0c\xd2\x19\x5a\xdd\x6b\x1c\xda\xb8\xfc\x4d\x09\x3d\xc7\xa1\xeb\x1f\xc8\xa4\x6f\x4b\xe8\x05\x09\xfd\x4c\x42\xdf\xe1\xd0\xe6\x85\xbf\x0a\x68\x9d\xf4\xee\x59\x8a\xe2\x67\x1c\xda\xb8\xfc\xb2\x84\xbe\xcf\xa1\xcd\x75\x22\x7b\xac\xd2\x72\x3f\xe7\xd0\xc6\x95\xbf\x72\xe8\xea\x87\x1c\xb8\xfe\x0f\x99\x77\x89\x43\xb7\x44\xa1\x8d\xcb\x3f\x14\xc5\x3f\x96\xa5\x64\xf9\xcb\xaa\xd6\x0f\x38\x74\xe3\x6f\x1c\xb8\xfd\x43\x99\x27\xbe\xdc\x5c\x27\x63\xf9\x2c\xa5\xe7\x17\x1c\xba\x7e\x99\x03\x1b\x97\x5f\x11\x49\xff\x14\xc0\x47\x32\x6f\x5d\x42\x3f\xe1\xd0\x8d\xbf\x73\xe0\xd6\xdb\x1c\xb8\xfd\x0d\x0e\x6c\x5e\xf8\x03\x87\xee\x9c\x7b\x93\x43\x9f\x90\x0d\xf8\x93\x57\x08\x44\x96\xd3\x27\x3f\x21\x10\xe9\xda\x4f\x5e\x23\x10\x91\xc3\x3e\xf9\x39\x81\x7e\x2f\x21\x32\xb8\x9f\xfc\x8a\x40\x64\xf7\xff\xe4\x6d\x02\xbd\x27\x21\xd2\xbc\x4f\xde\x25\x10\x41\xf6\xc9\x05\x02\x91\x69\xf9\xc9\x07\x04\x22\xd2\xe6\x27\xff\x20\x10\x99\xb4\x9f\x5c\x32\xa0\xf1\xbf\xdf\x15\xd0\x27\x3f\x92\x69\x14\xc7\xc7\x04\x22\x83\xf6\xbf\x2f\x10\xe8\x65\x01\x7d\xf2\xbe\x4c\x23\x94\xfe\xef\x77\x08\x44\xa4\xa4\xff\x7d\xce\x18\x4c\xa4\x3d\xc9\x6f\x18\x25\x16\xad\xd1\x44\xa0\x14\x20\xea\xe4\x6c\x4e\xd5\xfe\xe7\xe9\x5e\xb9\x5c\x2e\x17\xc9\x9f\x3d\x87\xeb\x53\xcb\x30\xc5\xab\x36\xac\xa1\x7a\xbf\x8f\xd2\x9c\x32\x03\x14\xfa\xee\x0a\x0a\xa6\x5a\xc8\xc6\xbd\x00\x85\x06\xac\xd5\x75\x07\xd3\xec\x2f\xc4\x6d\xd9\xc4\x03\xd2\xb2\x84\x00\xc2\x29\xea\x3e\xed\x34\x86\x3f\x1e\xbd\x65\xf7\xaa\xcc\x0f\xe4\x1d\x8d\x35\xf5\xee\x78\x35\x5f\x86\xe9\xee\xc4\x58\x78\x58\x0c\x06\x20\xbb\xb9\x02\xf8\xcf\x6b\xb1\x6c\xcc\x54\xc3\xf7\xb0\xed\x78\x28\x28\x36\xd1\x52\x6f\xb9\x68\x37\xed\x2e\xde\x6a\x97\x4c\x89\xb0\xe2\x63\xbf\x23\xae\xfc\x3e\x71\x89\x3a\x66\x9b\x1e\x3a\x93\x3b\x89\x96\x0f\x9f\xed\x9a\xc6\xff\x4c\xcd\x1b\x93\xc1\xa4\x31\x65\x96\x26\xc1\x94\x31\x89\x26\x8d\x2f\x70\x1f\x4a\xaf\xe7\xba\x79\xcb\x52\x7e\xbb\xb5\x4a\xfd\x6e\xbc\xf8\x84\xb3\x36\xf3\x73\x3a\x28\x7a\xe1\x10\xe9\x84\x03\xac\x0f\x4a\xe8\x2c\x46\x5e\xd3\x5c\x5b\x64\x6e\xfd\x27\x69\xb8\xee\x60\xb5\x4a\xaf\x6e\x38\x9e\x13\x19\x07\xea\xb0\xbd\x18\xf6\xba\x28\x28\xd9\xdd\xae\xbb\x6a\x92\x14\x28\x1d\xc1\x00\x64\x25\xa2\x75\xf5\xfb\x66\x5a\xb2\x45\x7a\x03\x97\x8e\x45\x12\xc1\x00\x36\x6c\xef\xa0\x8d\x6d\xd7\x5f\x3e\xec\xe1\xc0\x41\xe1\x43\xab\x0b\xab\x5d\x54\x4d\x72\x08\xa3\xe3\x37\x91\x6b\x58\x96\x85\xfa\xfd\x91\xb4\x91\x9a\x47\x54\x2b\x1c\xd3\xb0\x95\x46\x70\x49\xdd\x7c\x08\x4d\x00\x3d\xe5\xed\x06\x1d\xf6\x81\x47\xb2\xba\x76\x03\xf1\xa2\x27\x02\xd4\x72\xce\x42\xdf\x2a\x43\xdb\xc2\xf2\xc9\xe3\xfd\xb6\xf2\x55\x0e\x2d\xcc\x5d\x92\x8b\x95\xbc\x65\x85\xd2\xab\x0a\x01\xe1\xb9\x4b\x26\x53\x08\x63\x08\xba\x7e\xf3\x98\x86\xa3\xdf\x77\xc0\x44\xaf\xdf\x37\x7b\x56\x58\x0a\xbb\xae\x83\x4d\x34\x69\x84\x53\x06\x28\x75\xfd\xae\x09\x00\xf4\x4a\x76\xb3\xc9\x5f\xd8\xee\x01\xf9\x96\xb4\xb7\xc5\xb5\x34\x9a\x7d\xf2\xab\x09\xa4\x7c\xb1\x65\x37\xb0\x1f\xac\x66\x15\xea\xd8\xa7\x51\xb1\xe9\xd0\xfe\xb7\x83\xd5\xd8\xe2\x22\xeb\x67\xbb\xf7\x15\xa2\xb3\x8b\xdf\xbf\x83\xea\xb6\x05\x0b\x93\xfe\xf5\xb0\x84\xd8\xa4\x28\x14\xcc\x44\x9a\x56\x6a\x11\xd9\xa7\x17\x43\x84\x3c\xc0\x9f\x83\x4e\x60\xd0\x56\x8b\xe6\x62\x89\xc1\x9a\x99\xf2\x06\xba\x7a\x75\xdb\x6f\xe5\x30\x00\xa9\x8f\x78\x1f\xb4\x3d\xcf\xc7\xb9\x86\xed\xba\x39\x3b\x47\xfb\x35\x67\x87\x39\x5b\xfa\xb5\x1a\x60\x00\xd8\x64\x47\x62\x01\x0a\xca\x71\xbf\x9f\x68\xce\x40\x7a\x3b\xab\x67\xd4\xb5\x99\x9d\xf4\xa5\xe5\xef\xb2\x97\x4e\xa3\xd5\xd0\x8c\xd4\x4f\xfd\xfc\x54\x2d\x6d\x3b\x4c\xbb\x1d\x43\x5a\x99\x8b\x7c\x17\xfd\x6c\x19\xa5\x5e\xaa\xe1\x84\x9b\x88\x60\x19\x70\x97\x52\xf1\x38\x3e\x27\x49\x70\x2f\x3e\xaf\x8e\xe3\x36\x0a\xaa\x71\xaf\x4b\x7e\xd1\xa4\xe5\x78\x7c\xc9\x90\x76\x9a\x88\xb2\x5a\xc5\xa2\x19\x7d\x67\x71\x60\x37\xf0\x21\xc6\x38\x0f\xd3\x29\x6e\x06\x90\x95\x95\xb3\xc6\xd3\x06\x8a\x0f\x52\xee\xf0\xd9\x2e\x75\xdd\xcc\x61\x3f\x47\x30\x55\x73\x5f\x34\x26\x51\xa9\xd5\x73\x5d\x82\x6e\xd2\xf8\x62\xee\x8c\x83\xdb\x8e\x47\xd2\x03\xf2\x73\xa9\x87\x73\xcb\x3e\xce\x7d\x51\xde\x5d\xfa\x62\x29\x77\xc8\x69\xe6\x56\xfd\x5e\xae\xe5\x07\xcb\x88\x3e\xd8\xfe\x45\xb6\xd0\x72\x9c\x99\xc7\xab\x99\x37\xa4\xef\x27\x6d\x42\xd8\xf6\x7b\x6e\xf3\xc9\xc0\xee\x1e\x65\x31\xb1\x8f\xb0\x25\x68\x7a\x90\xbe\x5e\xef\x59\x66\x19\xca\x8d\x14\x98\x1e\x61\x0d\x83\x01\xec\xda\x41\xc8\x2e\x75\xc5\x5e\xf6\xcf\x93\x16\xa3\x12\xcd\x6f\x92\x02\xf2\x69\x7f\x7e\x8d\x95\xaf\xa9\x40\x00\x9e\x00\xa8\x47\x2b\x65\x45\xc6\x83\xcc\x13\x7a\xda\xb2\x2c\xf1\xf2\xbb\xb8\x60\xe2\xd4\xca\x75\x51\xac\xaa\x8a\xf9\xa2\x18\xf5\x7d\xad\x55\xea\xfc\xf7\xbc\x19\x58\x7e\xad\x5c\x87\x9e\x65\x3c\x68\x4c\x3a\xb5\x4a\x1d\x54\x4d\x4c\x8b\x40\x99\x45\x93\x27\xe8\x05\x04\x7e\x21\x84\xd4\xa0\x61\xc1\x14\x2f\x0c\x2c\x9b\x7d\x60\x93\x2d\xd6\x10\x77\xd7\xc8\x96\x12\x14\x0a\x04\x35\x2e\xb9\x76\xc8\x1c\xdb\x8f\xb7\x4c\x43\xbb\xd3\x66\xc0\x32\xeb\xd0\x48\xe2\xa4\x07\xb1\x85\x4b\xa1\xeb\x34\x90\x59\xa9\x08\xef\xe1\xc0\x32\xb5\xee\xa8\x1a\x00\x28\x42\xb9\x13\xab\x07\x75\x7f\x69\xba\x9e\x0d\xc9\xef\xe5\x28\xaf\xa9\x81\x20\x82\x92\x98\x5f\x55\x04\xbb\x74\x23\xa8\x62\xbe\x15\xb2\x9f\xe6\x1a\x59\x62\xd5\x60\x00\x20\x03\xe4\x17\x4f\x3a\xb8\xed\xf7\xa8\x7b\x6e\x35\x84\x04\x51\xd5\x83\x81\xef\xe3\x6a\x0f\xf2\xe5\x74\x0c\xe1\xb6\xcf\x50\x19\x3c\xc9\x98\x64\x24\x9e\xc2\x81\xe3\x2d\x97\xd8\xae\xd0\x5a\x35\x03\x40\xe6\x90\xdb\x0b\x68\x10\xc3\x26\xa9\x35\x64\x32\x44\x9a\x5c\x41\xf8\xfe\x82\xcf\xea\x48\xbf\x90\x35\x64\x3b\x9d\x24\xe3\x8e\x27\x8d\xaa\x31\x80\x59\xb3\x3d\x29\x3c\xe6\x2b\x83\x61\xe2\x8c\xc9\x39\x27\x43\xf4\x90\x1d\xa2\xe6\x49\xbe\x57\x59\xf9\xf2\x96\xc5\x1a\x4f\x30\x62\xcf\x0f\x3a\xb4\x4b\x0e\xda\x8d\x36\x22\x6b\x2f\x50\x6b\x8f\x17\x8a\x75\x9b\x95\x96\xd8\xef\x8f\xf3\x29\xd1\xb5\x5a\xce\xb2\xa0\x2c\x3d\x97\xcc\x57\xf2\xd7\x10\x34\x36\x51\x37\x40\x0d\x1b\xa3\xe6\x89\xa8\x50\x61\x91\x4e\x93\x2d\x48\x11\xc0\x72\x69\x8d\xa4\x5a\x9b\x99\x91\x63\xc5\xd2\x89\x98\x33\x10\xf3\x2d\xc1\xb9\xb9\x1c\x26\x79\x13\xbd\x4a\x66\xe1\x52\x62\x7e\x4a\xa6\xc3\x57\x89\x21\xf7\x46\xcb\x22\xf3\x9e\x6c\xaf\x6d\x27\xac\x05\x75\xba\x62\x39\x6c\x62\xc2\xfc\x7a\xae\x6b\x59\x9e\x4c\x2f\xe9\x7b\x09\x2b\x31\x80\x8b\xe9\xbd\x20\x7c\xfa\x35\xc6\x22\x55\x15\x7e\x7d\xa2\x32\x6f\xb4\x91\xdb\x45\x01\xe1\x29\xb8\x56\xae\xcf\x93\x7f\xc8\xec\x9d\xc4\x84\x27\x49\x9d\x78\x71\x6a\x19\x1a\x45\x03\x54\x65\x7e\x64\xa5\x35\xed\xb0\x8d\x02\xd2\x63\xd1\xcf\x9e\x2e\x91\xef\xa6\x0c\x00\xaa\x48\x5b\x81\x99\x83\x15\x9b\x13\xda\x60\x25\x73\x2c\x22\x42\x1a\x60\x00\xbb\x7e\x93\x2e\x89\x47\x7d\xff\x74\xaf\x4b\x38\x07\x9b\x20\xb1\xb5\xcb\x37\xdb\x52\x0a\x8b\x11\xe3\xa2\x73\x58\x5c\x22\x43\x43\x24\x2e\x2b\x50\x0d\xfa\x1f\xc5\x4d\x9f\x9e\x9a\x82\x86\x01\x00\x44\x93\xc6\x14\x53\x96\x8c\x49\xf6\x95\xa2\x49\x6d\xe9\x59\xd3\x67\x88\xd0\x3c\x84\xcd\x44\x76\xd5\xac\x0e\x30\x31\x44\x5a\xff\xc8\x20\x0a\xe1\x51\xef\x54\x6f\xa9\xe9\x24\x85\x91\xed\xd1\xe4\xb4\x4c\x3c\x69\x19\xda\xd5\x6a\x43\xbf\x53\x4e\x77\x6a\xd2\x3d\xfd\xbe\xde\x8f\x53\x25\x8c\x42\x6c\xa2\xb4\x81\x91\x37\x49\xc6\x69\x27\x5f\x1a\x87\xbd\x65\xc7\x4b\x5f\x09\x29\x18\x26\x8d\x29\x44\x3f\x30\x28\xf9\x69\x8a\x55\xdb\x0e\xc9\x4a\x8b\x30\x95\x54\x51\x0c\x2b\x22\x4e\xfa\x3d\x8c\x8e\xd9\xdd\x71\xc9\x20\x8c\x63\xd2\x98\x0a\xc8\x67\xe1\x70\x52\x02\x30\x8e\x54\x28\xd7\x3a\x11\x9f\x38\x51\x0b\x7c\x7a\x67\x0d\x7b\x84\xb7\x20\x55\x03\xe5\x41\xb8\x50\x30\x85\xb2\xbe\x70\xf8\xd8\x89\x47\x0f\x2c\x1c\x3e\x55\x4b\x6d\x4c\x1d\x40\x3c\x80\x1d\xdb\xf1\x32\xa6\xbf\xd3\x32\x0d\x92\xcd\xa6\x44\xda\xb8\x6b\x5a\x00\xdb\x55\xa7\x88\xbc\xca\xd6\x96\xb8\x10\x94\x5e\x77\xda\x97\x51\x0e\x62\xb2\x8a\x00\xaf\x34\x05\xfd\x40\x88\x2b\x23\xd7\x47\xe6\x9a\x94\x45\x6a\x0c\xdb\xa4\xc1\x0a\x19\x75\xda\x8f\x23\xca\xb0\x0e\x94\x0d\x64\x13\xfe\x84\x8d\x31\x0a\xbc\xb0\x1a\xbb\xc9\x9e\x90\x26\x6a\x91\xd5\xa2\xfa\x09\x46\xd2\x93\xec\x80\x0b\x19\x91\x71\x63\x69\x89\x2e\xaf\x0f\x40\x29\x40\x76\xf3\xb8\xe7\xae\x9a\x00\x46\xb5\x97\x18\xe3\x15\x76\x0b\x75\xa5\xde\x34\xb2\xda\x46\xef\xd4\x4b\x09\xbd\x0c\x7d\x2b\x10\x86\x09\x67\xbf\xaf\xae\x7e\xdb\x56\x50\x73\xea\x25\xa2\x76\x0a\xe5\x92\x2c\x1a\xbb\x50\x30\x6d\x86\x86\xbd\xb1\xad\xa9\x54\x36\x44\x00\x40\xbb\x50\xc8\x5c\x59\x36\x93\x98\x6d\x00\x85\x98\xba\xe8\xfa\xcb\x8c\x40\xa2\xa1\x40\x1b\x40\x65\xf6\x1a\x0c\x60\x1c\x47\xea\x8e\x13\xd9\x28\x89\x36\x15\x84\x0d\x3f\x10\x2a\x1e\xca\x53\x61\x3e\x93\x26\xa2\x16\x0d\x63\x05\xa9\x4a\xf9\x81\xce\x92\xb3\xdc\xf3\x7b\x61\x8e\x7d\x94\xa3\x33\x8d\x29\x7d\x44\xb9\xb3\xbd\xa6\xd0\xd0\x98\x4e\x33\x04\xbd\x52\xa8\x46\x30\x25\xa1\x18\x4b\xdb\x83\x92\x02\xa6\x8a\x66\xed\x7f\x9e\x9e\xaa\x7f\x09\x7c\x61\x0a\x1a\x53\x8b\x5f\xa8\xc4\xf4\xc2\xb4\x2a\x3d\x30\x2f\xef\x4e\x43\x97\x0e\x02\x7b\x90\x91\xdd\xaa\x1e\x43\x1a\x8b\xa0\x88\x29\xd8\x18\xe6\xcb\x60\x00\xd5\x00\x57\xe3\xc6\x1d\xa7\xc5\x2f\x68\x1e\x7e\xec\x89\xd2\xa3\xc7\x1f\x5e\x3c\x76\xfc\xd0\xe3\x8f\x1e\x5e\x3c\x79\xf8\xd4\xf1\x47\x9f\x38\x7c\xb2\xdf\xc7\x25\xa2\x91\xd0\x3c\x91\x28\x58\xb3\x52\x32\xe7\x8d\xda\xe6\xeb\xeb\x75\xa3\x6a\xd4\x72\x75\x63\xc2\xd3\x24\x10\x21\x85\xed\x2e\xcf\x1b\x25\xa3\x4a\x06\xf1\x40\x10\xd8\xab\xe6\xee\x72\x31\x51\x0a\x94\xbe\xee\x3b\x9e\x69\x94\x0c\x00\x83\x7e\xdf\xe4\xab\x29\xd1\x31\x54\x28\x6c\xf8\x5e\xe8\xbb\xa8\x50\xe0\x40\xc9\xf1\x5a\x7e\xf4\x97\xe9\x40\x85\x03\x7a\x90\xea\x48\xa7\x3d\xff\x8c\x77\xc4\x0f\xb6\x6b\x7b\x8c\xab\x03\x6c\x29\xe3\x8c\xa5\x8c\x6b\x4e\x1d\x72\xcd\x02\x07\xb6\x17\x92\x4d\x6a\xc1\x97\x26\xe1\x23\x3d\xd7\xf5\xe8\x90\x42\x1b\x4c\x84\x64\x91\xd6\xc2\xba\x45\x06\x50\x2e\x46\x38\xec\xc3\x74\x49\x30\xa1\x87\xa2\x01\x8d\xe8\x41\xf6\x05\xe8\x58\x74\x77\xa0\x54\x0b\xa3\xa7\x07\xa8\xa1\x54\xfc\x74\xe8\xd2\xa1\x16\x80\x42\xc1\x66\xda\x38\x6d\x5f\x51\x58\x11\x0a\x05\x29\x69\x7b\x1c\x98\x94\x16\x06\xb1\xae\x98\xb4\xcd\x75\x72\x7f\x52\x14\x24\x4d\x65\xaa\x77\x90\xba\x87\xd1\xed\x4b\xcc\x70\x66\x0b\x10\x84\x85\x40\x43\x2c\xae\x4a\xcf\x47\x11\x89\x64\x20\x97\x58\xaa\x20\x91\xb2\xcc\xa4\xe5\x8b\x05\x50\xa2\xff\xe4\xcb\x6a\xb1\x11\xdc\x7c\xe8\xd9\x56\x27\x27\x02\xc4\x83\x01\x98\x70\x4a\x01\xf2\xbb\x88\x69\xc4\xe6\x5a\x8a\x4e\x1b\x3f\x21\x70\xb2\x4d\xc0\xa9\xe6\xdc\x4f\x3f\xc6\xce\x5a\x23\x40\x11\xc1\x4a\xda\x0a\x52\x74\x3d\xc4\x0d\x83\xf3\x02\x30\x31\x51\x8f\x06\x43\x0e\x12\xd3\x0d\xd2\x9f\x5e\x43\xd9\xd8\x23\x8b\xd7\xc5\x5a\x4b\x4f\x82\x80\x0a\x4f\xb1\x48\x48\xb3\xe8\x7c\x68\x22\x17\x61\x24\xd2\x20\x4a\x6d\x5a\xd7\xf7\x42\x67\x05\x4d\x31\x0d\x34\x9c\xea\xa0\xa6\x63\xdf\xa3\x46\x71\x6b\x60\xd2\x7a\x9c\xb0\x7b\x53\x0e\x5c\x72\x42\xc6\x89\x63\xfb\xdf\x29\x1a\xe4\xae\xe4\x60\x14\xd8\xd8\x0f\x72\x8e\x30\x3f\x6b\x05\xd3\x78\x4d\xad\x0e\x3d\x2b\x4f\xf6\x83\x7c\x05\xfa\xc2\x1a\x80\x83\x55\x15\x8b\x03\x86\x16\xaa\xc5\xea\xaf\x9b\x60\x2e\x6f\x7a\x96\x69\x5b\x61\xc9\x43\x67\xb1\x09\x40\xa9\xe9\x7b\x88\x05\xfc\xa0\xf7\xfc\xed\x12\x6d\x25\x80\x79\xdc\xef\x0b\x61\x29\x6f\x59\x18\xcc\x11\x94\x60\x6e\xd0\xa0\xa7\x7b\x3d\xb0\xe6\x10\x12\x7c\xab\x37\x68\x39\x9e\xed\xba\xab\x6b\x84\x80\xbc\x57\x28\x10\xd1\x9f\xd0\xae\x20\x13\xc8\x42\x0e\xe1\x74\x4c\xcc\xf0\xe5\xc1\x4c\x30\xa0\xcd\x9b\x48\x15\x3f\xf8\x23\xc9\x39\x22\xd3\x75\xba\xd4\x4e\xdc\x44\x21\x0e\x7a\x0d\xdc\x0b\x50\xce\xf3\xbd\x22\x6d\xe1\x92\xab\x8e\x18\x0c\x30\x18\x98\x7a\xb4\x2d\x1e\x7f\x90\xce\x0d\x69\x49\x8f\xdb\xc8\xd8\xac\x24\xac\x71\x62\xcc\xd3\x3f\x26\x7d\xd2\x99\x06\x4a\xbe\xc7\xe1\x83\x6d\xdb\x5b\x46\x4d\x43\x3f\xa4\x27\x02\x0c\x97\xb1\x4d\x30\x00\x03\x48\x4b\x72\xe1\xdb\xf1\xe8\xfc\x0b\x51\xb0\x42\xb8\x29\xd9\x71\x69\xc9\x34\xf3\xbe\x89\x60\x05\xd4\xca\xf5\x89\x48\x20\x2a\x65\x46\xa5\xf5\x96\x8c\xc9\x80\x86\x78\x02\x13\x99\x0b\x85\xbf\xee\xec\x3c\x4b\x56\x8b\x4a\xbf\xab\x28\x4f\xa4\x75\xec\xed\x63\x1e\x73\x83\xef\xfa\xa6\xb1\x14\x20\xfb\x74\xd7\x77\xa8\xfa\xbe\xc6\xc6\x07\x3b\x84\xbb\xe5\x2b\x03\x70\x57\xf1\x5a\x24\xdd\x34\x64\x8b\x18\xe1\x35\x4f\x8b\xd2\xa6\x9a\x53\x8c\x10\xa0\xbe\xad\xe2\xa1\x5c\x84\xf0\x1d\x16\x61\xac\x78\x2f\x19\x49\x3a\x77\xe4\xbb\x00\x7f\x4f\x8e\x74\xd4\x50\x5a\xf9\xb4\x49\x61\x79\x70\x8c\x86\xed\xa8\xf7\xc3\x04\x9b\xa4\x29\xdb\x14\xe3\x45\x85\x02\x8f\xec\x19\xcf\x90\x4c\x6a\x3e\xcd\x98\xc7\x77\xba\x41\xaa\x6a\x5e\x28\x0c\x41\x87\x4a\x44\x4a\xa5\xcc\xc2\x0f\x2c\xcb\x92\xe9\x79\x01\xab\xc3\xb9\x79\x41\x5b\x55\x22\x4c\x70\x90\x53\xac\xaf\x05\x0b\xe1\x22\xfd\x0a\xf2\x30\x6a\xc2\xb5\xc5\x8e\xdf\x38\x8d\x9a\x7c\x55\x63\xfa\x9a\xfa\x32\xe4\xa9\x0f\xc9\x89\x58\x35\x9a\x28\x3c\x8d\xfd\xae\x01\xc5\x18\x8f\x52\xc2\x73\xe2\xfc\x5d\xb1\x1d\x5e\xad\x01\xe6\x6b\x89\x44\x85\xcb\x00\xf5\x6a\xad\x0e\x06\x00\xba\x64\x7d\x7a\x28\x08\xab\x6b\x03\x8e\x97\xc3\xcf\xb8\x3a\x17\x74\x5a\xa6\xc1\xa2\xd1\x18\x96\x65\x99\x86\x0a\x37\x28\x7b\xf7\x8c\xe3\x35\xfd\x33\xf3\x5a\x56\x35\x30\x59\x22\x00\x85\x02\x83\x98\x1f\xc8\x31\x32\xc9\xc4\x66\x96\xc8\x98\x48\x78\xbb\x10\xf1\x7e\x1b\x6c\x59\xc5\xb9\x39\x7e\xc6\x43\x01\xcd\x06\x91\x18\xb4\xd1\x2c\xae\xf1\x44\xf8\x54\x95\x1a\x93\xc0\x04\x2e\x14\x22\xa7\xc1\xa0\xd4\xf2\x83\xc3\x76\xa3\xad\x86\x47\x1e\xa9\x1a\x4e\x98\x7d\x5c\xc4\x89\x4a\xac\x22\x0f\xc6\xa3\x08\xf2\xe9\x50\xaa\xd5\x23\x9b\x87\xae\x79\xb2\x2d\x87\x95\x33\x54\x60\x9a\x00\x3c\x50\xac\x0c\x00\x80\x19\xb8\x82\x38\x2e\x6f\x18\x02\x0f\x90\xaa\x10\x77\xe5\x09\x20\xae\x05\x75\xba\x6b\xd1\x56\x51\xcd\x2c\x3e\x65\xef\x82\xf6\x8e\xdd\x35\xd3\x3c\x5d\xc8\xcc\x28\x66\x9e\x09\x20\x30\x10\xda\x6b\xce\x20\x13\x5b\x3c\x91\x7d\x4c\xdb\x7b\x13\x47\x5f\xbc\x4c\x7c\x87\x5e\x23\x8d\x12\x15\xd0\x75\xac\x7f\xc9\x28\x08\x7a\x5e\xc9\xf7\x1a\x88\xcd\x35\x36\x05\x53\x50\x02\xbe\xaa\x32\xd5\x43\x1a\xd2\x29\x65\xfd\x46\x0c\xb0\xac\x8b\x9e\x71\x0d\x60\x62\xa2\xe9\x46\x74\x00\x96\xeb\x84\x87\x88\xfc\xe3\xaf\x92\x8f\x89\xee\x5e\x0a\x55\xbf\x06\x61\x89\x28\x9a\x44\x3d\x2a\xf1\x9e\x9e\x0f\xe2\x1d\xaf\xbc\x63\x10\xa8\x26\x72\x03\xd4\xf1\x57\x90\x2c\x00\x83\x52\xa4\x83\x4c\x00\x06\x13\x8a\x56\xc9\x56\x0c\x50\x43\x75\xcb\x61\xce\x37\x8f\xf2\xd4\x42\x21\xf2\x33\x32\xdc\xb2\x77\x4d\xe6\x80\x05\xc9\xc8\x42\x87\x4c\xbe\x34\x47\x1d\xc2\x4e\x8b\x67\x6c\xb2\x51\x84\x53\xf4\xbd\x77\xfe\x2b\x6d\xc7\xd3\x0b\xa7\x26\x4e\x79\xbe\xdf\xd5\x53\xee\x81\x43\x4e\x9a\x86\x27\xc3\x22\x12\x29\x57\x5a\x35\xc8\xa4\x1e\xde\xe0\x4c\x5f\xa4\x48\x29\xf6\xb7\xd8\xb1\x3d\x9b\xc6\xf8\x4e\x2b\xa3\xb7\x39\xb5\x40\xb4\x6f\xb3\xd0\x14\x5b\x7e\x50\xec\x06\x7e\xc7\xa1\x0f\xf5\x45\xfb\x8e\x45\x59\xbb\x47\x8e\x94\x42\xd4\x1c\xdb\x93\x52\x7c\x30\x18\x56\x6b\xcf\xdb\x72\xbd\xea\x93\xa1\x35\x2f\x23\xfc\xa4\x98\x89\x63\xd6\xac\x3e\x19\x5a\xf3\x62\x80\x42\x34\xbe\x47\x29\x2b\x3e\x8a\xd6\x13\xc8\x6b\x3a\xde\x32\xc3\x7f\x0a\xdb\x18\x6d\x85\xec\xe4\xd7\x43\xf1\xb5\xed\x30\xf2\xc5\xf8\x5d\x94\xf8\x72\x28\x9e\x05\x14\xf2\x1e\x1d\x13\x41\xa0\xf9\xdf\x66\x57\x4b\x97\xca\x96\xea\xf5\xc6\xaa\x97\x2c\xb0\x23\x7e\x70\x82\x2f\xaf\xf1\xaa\x76\x86\xb9\x0c\x0f\xe7\x7d\x5b\xd7\xf9\xa2\x47\x31\xe5\xb9\x60\xbf\xb4\xc7\x06\xc2\x16\xeb\x59\x44\x6e\x98\xf0\x4a\x8a\x7a\x4b\xff\xd1\xef\xe7\x2b\xd0\xe3\xae\x1a\x3d\x96\x9f\x2f\x8b\x97\x3a\x1d\x2f\x47\x3d\x15\x4a\x67\x02\x07\xf3\xbc\xec\x2e\xf3\x88\x90\x06\xc9\xd6\xb1\x33\x4f\x16\x04\x9f\x0f\xef\x46\xa2\xd4\x5a\x78\x40\x29\x22\x4c\x55\xec\x1e\x81\x85\xa0\xe9\x59\xb5\xb5\xd3\x68\xb5\x6a\x2c\xa1\x65\xc7\x3b\x10\xae\x7a\x0d\x03\xb2\x86\xa5\x0b\x60\x83\x01\x64\x1f\x20\xaf\x99\x55\x5c\x96\x21\x53\xe3\x71\x0f\x3b\x6e\x66\x9d\xf9\xb2\x2c\x4c\x9d\xcd\x8f\x7a\x2d\x3f\xb3\x70\xad\x3e\x18\xd4\x41\xa1\x80\xcd\x40\xa9\x5c\xd0\x03\xd0\xa1\x69\xd0\x01\xcc\xf3\x51\x8d\x46\x30\x7c\x12\x67\xcc\xdf\x71\xf6\xc5\xb1\x1d\xdb\x53\x0c\x7b\xe9\x66\x3d\xed\x48\xa3\x0c\x03\x4b\x1d\xbe\xc8\x03\x97\x39\xbc\x5f\xc0\x73\x78\x72\x12\x04\x35\x5c\xb7\x50\x0d\x4b\x43\x4e\x40\xc3\x47\xf7\xfb\x31\x54\xc3\x8c\x84\xfd\xbe\x51\x63\xaa\x5a\xee\x80\x50\x81\xea\x44\x6b\xe3\x6b\x40\xf9\x9d\x62\x5f\xa8\x25\xb6\xeb\x6a\xe6\x45\xd6\x90\x56\xe0\x77\x88\x08\x12\xc5\x4f\x24\xe7\xf1\xec\x71\x61\x37\x40\x76\x33\xd3\x14\x67\x82\x68\x48\xec\x7f\x73\xd6\xe1\x58\xe5\x09\x2d\x3a\xb3\xe2\xcf\x93\x93\x03\x76\x44\x95\xc1\x5a\x88\xcc\xf9\x69\x32\x17\x27\x3c\xc9\xe5\x17\xd4\xb4\xf2\x15\x9e\x88\x51\x27\xa4\x13\xf8\x98\xdd\xd5\x99\x10\x87\xd1\x59\xbc\xe0\x9f\x46\x9e\x15\xf4\xfb\x3e\x6d\x8f\x03\x6d\x18\xca\x28\xf5\x84\x31\xd9\x82\x31\x29\x91\x2a\xc1\x15\x12\x14\xf4\xfb\x26\x75\xd7\x15\xdf\x30\x62\x53\x49\x2d\x03\xc9\x78\x86\xb2\x3e\x66\x39\x48\x84\xf9\x2d\xa7\x86\xf9\x2d\xd7\xe7\xf5\x1f\xd5\x68\x73\x4d\x00\x71\xb2\xa6\x8a\xf6\x49\xa5\xce\x0f\xbf\xe4\xd1\xb6\x68\x89\xf0\x60\xa4\x5d\x2b\x0e\xc2\x13\x6e\xd5\xaa\x25\x74\x10\x51\x33\xd7\xf2\x83\x9c\xba\x53\x06\x0d\xea\x46\xed\xe0\x9c\x13\xe6\x6c\x97\xac\xb8\xd5\x5c\x97\x89\x40\x25\x03\x08\xdb\x9b\xac\x31\x72\x5e\xcd\x50\x87\x34\xba\xfe\xda\x32\xc2\xb9\x10\xdb\x8d\xd3\xba\xb8\x43\x13\x06\xd0\xb5\x97\x90\x5b\xc5\x64\x6e\x8f\xde\x2d\xb8\xd7\xf4\x18\x8d\x13\x55\x8c\xd1\x34\x3a\x8b\xd9\xd3\x91\x6e\xb4\x81\x1a\x1e\x76\x24\x44\xd5\xa6\xb1\xb7\x2b\x76\xae\xa9\xf5\x86\xf3\x2c\xda\xc2\x06\x96\x63\x26\x23\xfe\x31\x2d\x14\x12\x5d\x98\xee\x6a\x9e\xe9\x68\xbb\x9a\x0d\x60\x48\xd3\x60\x98\xd8\xd5\xec\x11\xbb\xda\x6a\x17\x29\x6d\x6f\xf8\x3d\xbf\xe1\x3a\xd9\xa8\x3d\x31\x5b\xf7\xbd\x57\x4f\x67\xb0\x09\x8a\x26\xca\x6a\xcb\x9b\x60\x17\xa3\x84\x1a\x6c\x70\xe2\x05\x5d\x23\xe4\xd8\xb8\xba\x7b\xaf\x6c\xf4\x62\x21\x47\x34\x79\xcc\x96\x13\xe5\x8e\xd4\x63\x10\x69\x0a\x61\xac\xa4\x98\xae\xb4\x30\x2d\xaa\x34\xbc\x94\x63\x44\x64\x61\x39\xc1\xe0\x7d\xd1\x63\x5b\xa2\x07\x65\x8b\x88\x74\x39\x53\x7f\xf5\xee\xc6\x25\xfa\x26\x92\x29\x46\x24\xa9\xbc\xd2\x47\x00\x12\xaa\xa6\xe5\x71\x93\x32\xdf\x26\x75\x99\x51\xec\x3a\x6b\x9c\x73\x55\xcb\x90\x4f\xd7\xea\xda\x60\xa0\x0c\xde\x09\x5b\x32\xdf\xed\x71\x49\x72\x32\x13\x80\x35\x54\xe2\xf5\x4c\x4e\x4e\x08\x9f\x63\xc9\xab\x28\x63\xe1\xb5\xd7\x30\x9d\x5c\x75\xb2\x2f\x13\xc1\x9c\x30\x1e\x4d\xea\xd2\xb8\x18\x10\x55\x3e\x50\x1e\x70\x0f\x4c\x14\xe2\x42\x41\xc1\x72\xc2\xb3\xf6\x26\x8f\x23\xf2\x1e\x3d\xc4\x4c\x2e\xce\xb3\xb8\xd8\x41\x76\xd8\x0b\x50\xa0\xce\xa5\x22\xc9\x9f\xc9\xc3\x73\xb1\x63\x9b\xc4\xc9\xef\x98\xc7\xbd\x0d\xdb\x5b\xb1\x43\xab\xe9\x37\x68\x32\xf7\x5c\x38\xec\xd2\x37\xb0\x4c\x83\x65\x8b\xbb\x06\x0d\x7c\xd6\xd2\xbe\x22\xf3\xeb\xa0\xef\x91\xbe\x30\x8d\xe9\xa6\x01\x06\xf0\x8c\xd3\xc4\xed\x14\x9f\x98\xa4\x98\x91\x2a\xb0\x54\xea\x51\xe9\x83\x3e\x1e\xa3\xfc\x66\x4c\x41\x45\xa9\xe5\x7b\xd8\xc2\x8a\xac\x12\x1f\x8b\x05\x42\x0b\x02\x25\x4a\xc7\x00\xba\x8e\x87\xc2\x54\xeb\x75\x82\xa0\xe9\x54\x82\xa6\x75\x82\xa6\x05\x41\x09\x4a\x02\xf5\x2a\x82\x27\x2f\x14\x4c\x3d\xed\x4d\x01\xe8\x58\xd2\x61\x89\xbd\x7e\xe3\xc9\x8b\xa4\xca\xc1\xcb\xe3\x97\x48\x0d\x83\x60\x57\xfc\x2f\xb4\x6c\x71\x3b\x21\x67\x00\xfe\x5a\x46\x79\xce\xdd\x2f\xc8\x2e\x56\xf4\xe7\x17\x52\x7b\x23\xac\xb9\xf5\x49\xf2\x39\xeb\x94\x39\xb3\x37\x69\x35\xc0\x03\xa4\x3b\x9d\xc9\x49\xd8\xb3\x1a\x60\xc0\x1e\x5c\xc8\xfc\x5c\xff\xb4\xa5\x7f\xda\x52\x37\x51\x9d\x01\x6c\x39\x98\x7c\x72\x2a\x7a\x81\x61\x47\xfa\x1c\xf2\xb3\x04\x4a\x07\x7d\x93\x47\x5c\xda\x15\x63\xc0\x0f\x76\xa6\x9e\x6e\x4e\x4e\xe9\xce\x04\xf4\xc5\x96\x96\xeb\xfb\x81\x49\x5d\x1f\x8f\xb8\xbe\x8d\x4d\x07\x7c\x09\x4f\x11\xfd\x68\xf8\xfb\x65\x38\xe8\xe1\x76\x51\xf8\xdf\x88\xbf\xec\x55\xbd\xa4\x28\x12\x29\xcc\x3c\x92\x58\x5a\xc3\xf7\x56\x50\x80\xb7\xa2\xa4\x6b\xda\x24\x24\x53\x4a\x68\x93\xfb\x3d\xaa\x51\x12\xb6\x5a\xb1\xac\xd8\x6d\x40\x54\x0b\xea\xca\x1f\x87\x68\x9b\x12\x46\x72\xc2\xdc\xd5\x5d\x74\xdb\x6b\xd2\x7d\x23\xd5\xf9\x84\x35\xd9\x0c\x52\xb8\x67\x6a\xff\xa1\x67\x7a\xb6\xbb\x8d\xa7\xb7\x72\xa8\x56\xae\x5b\x96\x85\xee\xf2\x62\x3d\xc5\x1f\xf1\xb4\x48\x6b\x0e\x1e\xb7\x39\xcb\xf8\xde\x6d\x00\xcb\xd8\x0a\xee\xbb\x66\xfd\x6b\xb8\x66\xe9\x0b\x58\x0b\x1e\x61\x22\x38\x4d\xb7\x81\x5a\xb9\x0e\x7d\xcb\xab\x55\x94\x90\x4a\x44\xa6\x06\x7a\xac\x47\x66\x57\xa1\x60\x1a\x1e\x85\x8c\xbc\xf0\x4a\x70\x08\xa7\xb5\x58\xbe\xe9\x00\x00\x13\x25\xfc\x42\xc1\xf4\x45\x09\x1f\x00\x00\x9d\x07\xfc\xc1\x0e\x2d\xd4\x65\x7c\x0f\x1f\x7e\x5e\x26\xa2\xe8\xfd\xb9\x7d\x7f\x6e\x6f\x69\x6e\x5b\x3b\x36\xb9\x9d\xb0\x68\x93\xb9\x74\x57\x1b\x51\x54\x41\x55\xaa\xe8\xfe\x80\xaa\xa3\x62\x7b\xe6\xbe\x90\x62\xd2\xd6\xb0\xdc\x9e\xf3\x95\x09\x79\xe2\x70\x57\x2f\xbc\xd1\x2a\x77\x6e\x13\x73\xc2\x22\x99\x13\xf7\xca\x67\xfa\xfe\x3a\xff\xd7\x58\xe7\xc3\x67\xd3\xd8\xbe\xbb\x4e\x78\x98\x4c\x26\xba\x18\xb7\x30\x01\xb7\x20\x17\xde\xd5\x9a\x39\x4c\x05\xbf\xfb\x9b\xce\xbf\xc8\x64\x8c\x6a\x44\x6a\xc2\x4d\xb3\x77\x85\xcb\xf4\x5d\x61\x6d\xcb\x91\x73\x8f\x0c\xb3\xe9\x41\x07\xec\xd4\x5e\xe1\xde\x43\x11\xdf\xbd\x2f\xe2\xff\x4b\xce\xc8\xcf\x52\x0c\xda\xbf\x63\x52\x90\x7b\x2f\x45\x7c\xf7\xbe\x88\x7f\x7f\x6e\x6f\x79\x6e\xef\x9c\x88\xef\xf9\x78\x4b\x42\x45\xa6\xb1\x29\x7f\xf7\xc6\x26\xcf\xc7\x74\x3f\x62\x4d\xd8\x39\x81\xdd\xf3\xf1\xe7\xc1\x08\x59\x1e\x6a\x84\xdc\xa6\x96\xe3\xf9\x78\xe7\xac\x8e\x7e\xba\x4f\xd5\xe7\xaa\xbf\x76\xd6\x68\xeb\x07\x3b\xd7\x7b\x67\x3f\x85\xee\xe3\xfc\x2f\xd6\x3b\xe5\x3a\xc8\x27\xfb\xac\x52\xbf\xab\x9b\x76\x67\x77\xa2\x4f\xd2\x9a\xf9\xa9\xde\xa9\xe6\x71\x72\xc4\xf9\xe6\x32\xf5\x81\x31\x9c\x70\x81\x90\xb4\xca\x22\x56\x18\x4b\xbe\xef\x22\x5b\x0f\xa1\x25\x23\xf4\xc4\x05\x66\xb1\xe1\xce\x97\xf3\x96\x15\xa9\x53\x3c\xab\x5d\xcd\xe7\x23\x77\x94\x9d\x95\xd5\x62\xc3\x6f\xa2\x8e\x43\xf6\x1d\x2d\xa0\xd1\x54\x34\xe7\xde\xf7\x8b\x88\x8e\xcb\x09\x90\xe7\xa1\xd8\x5e\x66\xa1\xef\x30\x3a\x8b\xed\x00\xd9\x06\x24\x64\x1d\xa3\x64\x65\x5d\x52\x6d\x3a\xcd\xa3\x5e\x88\x02\xcc\x0f\x40\xef\x26\x7a\xae\xc2\xa2\x5d\x7f\x51\x89\x06\xa0\x0e\x02\x0b\xe8\x2c\x3e\x10\x20\x5b\xbb\xfd\x86\x18\xce\xa3\x4d\x43\xbf\x8a\xcb\x53\x0d\xc0\x13\x43\x84\x7b\xdd\x83\xb2\x3a\x7a\x7f\xe5\x11\xdb\x6b\xba\x28\x30\x8d\x06\xbd\xb7\x63\x40\x75\xad\x27\x6c\xb4\x11\xe9\xbe\x27\x48\xdf\x3d\xde\x6d\xda\x18\x35\x0f\xd0\x26\x81\x01\x69\xee\x49\xe4\x35\xf5\xa0\x9b\x63\xb7\xb3\x47\xeb\x52\x84\xf0\x5b\xb2\x66\x46\x36\xc5\x6f\x82\x01\x74\xc2\x27\x9c\xd0\x59\x72\xd1\x21\xa7\xc9\xae\x19\xf1\xc1\xf0\x97\xc8\x38\x90\x56\xc8\x22\x91\x5b\x57\x8c\xae\x33\xb6\xc8\xcc\x5b\x5a\xff\xaa\x4f\x80\x58\x15\x41\xcf\x93\xad\x3f\xee\x35\x90\x69\x04\xb4\xad\x7a\xef\x60\x7f\x79\xd9\x45\xf4\x53\xc7\x75\xf0\x2a\x59\xf9\xd9\x3d\x16\x3b\xd4\xcc\xbc\x4a\x15\x22\xaf\x99\xfc\x9a\xf9\x63\xf0\x7e\x80\xa4\x86\x01\x1c\x32\x98\x89\x70\x2b\x4c\x1e\x53\x48\x97\x1c\xaf\x49\x1d\x2c\x27\xe2\xf3\xae\x44\x3f\x12\x41\x0c\x7d\xb2\x5e\xcf\x38\xae\xcb\xaf\x58\xf1\xa9\xcd\xbb\x21\xd1\xc1\x7a\x35\xad\x16\xad\x67\x40\x29\x4d\x6b\x93\x3e\x6f\xc4\xe6\x97\xf4\x4e\x84\xd8\x12\x1c\x06\x32\xef\x58\x44\xf7\x43\x5c\x0b\xea\xda\xb9\x6f\x50\x9f\x90\xdd\xc7\xaa\xd7\xe7\x5f\x8d\x39\xc2\x72\xf4\x46\x5d\x78\xda\x6d\xd1\x97\x68\xeb\x7e\x44\xe9\xbe\x3d\x18\x00\x30\x80\xf1\xf9\x93\x7e\xc7\x33\x31\x45\x27\x52\xe6\x32\x12\x4e\x05\x5a\xb2\x85\x20\x12\xd1\x8d\xb4\x71\x09\x50\x2b\x40\x61\x9b\x3e\xd4\x9f\xbe\x0c\x63\x33\x35\x51\xc3\x32\xc2\xac\xa0\x89\xc8\xe6\x8a\x53\x90\x84\xaa\x08\x9d\xaa\x19\xeb\x7d\x58\x8b\x7d\x56\xc4\x00\x13\x28\x7a\xef\x14\xa5\xdc\x3b\x15\x64\xa6\xe3\x31\x31\xa4\xd6\xf3\x01\x9d\xb5\x29\xe4\x3c\x91\xee\x28\xab\x88\x61\x6e\xd4\x60\x42\xf2\x8d\x58\x7f\xf0\x85\x99\xde\x13\x2c\x13\xf5\xfb\x06\x73\x72\x89\x2f\xa6\xed\xed\x13\x25\xec\xcb\xed\x40\x67\xfd\x91\x4d\x43\x39\xe2\x1d\xe5\x7a\x5b\xfa\xd6\x01\x44\x6c\x91\x38\x96\xe8\x15\x9a\xd8\x06\x2e\x1d\x9b\x48\x5a\x31\xb9\x77\x43\x43\xdb\xd3\xef\x95\x6b\xe5\x8e\x3a\x36\x2d\x0a\xf5\x36\x4c\x0b\xca\x32\x80\xfa\x26\xac\x2f\x97\x20\x7a\xbf\x37\xd1\xe9\x48\xc9\xa1\xd1\x8d\x3c\x20\xcb\x51\x20\x3d\xe2\x07\xd9\x01\x57\x25\x65\x35\x54\x1f\xc0\x38\x86\x21\x11\x75\x23\x5f\x5a\x18\xe2\x01\x0c\x9d\x65\xcf\x76\x63\x0d\x50\xbe\x48\x09\x56\xec\x70\x0e\xe8\x3d\x30\x3d\xef\x15\xa7\xab\x65\x00\x7d\x6b\x7a\xce\xdf\xef\x51\x7f\x24\xa7\xe6\x17\xa7\x75\xa6\xec\xd7\x27\x54\x7b\x19\x32\xd1\xeb\x22\x19\xd6\x10\x0c\x3e\x6b\x7e\xec\x50\x7e\x9c\x5c\x24\x91\x51\x88\xac\x8c\xc8\x28\x44\xd6\x46\xc7\x27\x6d\x4f\xbb\x9f\xca\x73\x5c\x67\x69\x0b\x2f\x49\xb0\x50\x69\xaa\x17\x9d\xf0\x18\xad\x86\x85\xae\x4b\x26\xab\x50\x71\xa8\xe4\x84\x0f\xa1\x96\x1f\x20\x33\x00\xf3\xc5\x4a\x95\x24\x9c\xb2\x3b\xf4\x67\xb9\x5a\x99\x48\x38\xa5\x4b\xc7\xd5\x5c\x37\xf0\x57\x9c\x26\x8b\x68\xfe\x7f\x89\x7c\x6e\x07\xe8\xff\xe6\x6c\x6a\x04\xc2\x39\xd6\x90\x1c\x73\x77\x0d\x8d\xbb\xd0\xa5\x14\xe1\xca\x2f\x96\xa3\xb1\x02\x2d\x37\x2d\x4d\xfb\xc2\xf5\x3d\x94\xb4\x0d\x46\xb5\x3d\xce\xf2\x35\x47\x2d\x79\x2d\x30\x31\x68\x64\x68\xee\xb9\xce\x11\x22\xb7\x55\x62\x08\x07\x00\xf2\x30\x11\xa5\x33\x68\xa9\x6b\x37\x4e\xff\x77\xe8\x7b\xdd\x45\xaa\x37\x2e\xda\x3d\xec\x2f\x3a\x1d\x42\xcb\xa2\x35\x5e\xb1\x7e\xbf\x56\x07\xcc\xbe\x58\xab\x4d\xd7\x61\x2d\x2e\x07\x46\x1a\xc1\x56\x39\x99\x00\x87\x6c\x8c\xa0\x23\x41\xfd\xba\x0e\xbb\xbf\x6c\x6b\x37\x73\x42\x15\x7f\x2b\x87\x4c\x2c\xbf\x32\x27\x31\xd1\x33\xc4\x1a\x0b\x99\xe3\x9c\x15\xc2\xb0\xd4\x40\x8e\xab\x06\x2a\xd0\x3e\x0f\xd4\xe7\x41\xb1\x42\xbe\x37\x03\x58\x01\x90\xcc\x52\x18\x0c\x60\x58\x0a\xfc\x9e\xd7\x4c\xd1\x60\x43\x26\x11\xb2\xca\xb5\x78\x84\xa8\x88\xf7\x07\x45\x34\x8f\xab\xf4\x73\xbf\xd5\x8a\x78\x39\x47\x98\xb4\x89\x34\xea\x91\x08\x08\x1d\xcc\x57\xaa\x9a\xe7\x5f\x00\x00\x44\x94\x12\xa2\x70\x68\xcd\x60\xb7\xba\x69\x28\x7b\x68\x5b\x35\xea\x84\x29\x09\xa2\x4e\x86\xac\x3e\x27\x5a\x9f\x03\x60\xde\x0c\xf6\x7b\x85\x82\xf3\x40\x59\x2e\x57\x7b\xa2\xe9\xaf\xd9\x6c\xec\x7c\x8d\xaa\x80\xf7\x89\xc3\xfa\x64\x70\xa6\xed\xb8\xc8\xf4\xf7\x07\x85\x42\xb0\xdf\x93\xad\xb6\x09\x81\x2d\xc7\x8d\xf8\xda\xab\x96\xfa\x71\xbf\x6a\xfc\x80\x85\x01\xe1\xa6\x73\xc8\xc4\x00\xe6\x03\x13\x83\x39\x40\x7d\xf8\x17\x9c\x0e\x32\x71\xb1\x42\xf6\x39\xd5\x6b\x1e\xfd\x0c\x3d\x60\x21\xe0\xb4\x4c\x6f\x7f\x99\x7d\x3d\x39\xe9\xed\xb7\xca\x73\xec\x07\xd1\xfa\x8b\x15\x5a\x1b\x02\x73\x60\x8e\x86\xbf\xa7\x39\xc5\xa2\xf7\x40\xa4\x98\x56\x8a\x68\x08\x41\xa1\x60\x86\xa5\x86\xdf\xf3\xb4\xa1\xc2\xd0\xd7\xee\x09\x0b\xca\x26\x31\x80\x8e\xfa\xe5\x93\x7e\xf1\xc8\x3f\x0e\x80\xfa\xa8\xd1\x33\x3c\xa2\x7c\x94\xd0\x0a\xd2\x5f\xe7\xd0\xac\xb3\x96\xf6\x01\x02\xd0\x09\x8f\x10\x81\x01\x51\xe6\x8a\x1e\x28\xcf\xa3\x07\x2a\xf3\xa2\x5b\x4d\x7b\x5e\xef\x43\xd1\xef\x26\x06\xff\x85\x2c\xab\x3c\x48\x09\x4f\x97\xe3\x4d\x22\x1c\x89\x97\x02\x55\x16\x1b\x9f\xe8\x8a\xfc\xf6\x9b\xaf\xfb\x93\x0f\x62\x3b\x03\x52\x2d\x45\x93\x18\xc4\xb3\xc5\x44\x2e\xa2\x01\x98\xb0\xb7\xd9\xd2\xe8\x24\x51\x73\x41\xfb\x14\x4f\x21\xf0\x25\xa4\x93\x41\xd9\x0a\xd6\x46\x67\x32\x48\x29\xc0\x39\x73\x50\xc4\x60\x0a\x0d\x40\xd5\x66\x9d\xc0\x63\x30\xda\xb0\x67\x99\x36\x5b\x5f\x70\x37\x9a\x05\xd0\xb5\x76\x97\x67\xf7\xa2\x5d\xb0\xa1\x77\x0f\xd2\xfb\x03\x15\xa9\x4e\x7c\xcc\x71\x5d\x27\x44\x0d\xdf\x6b\xd2\xeb\x47\xc3\xfa\xaf\x82\x66\xbe\x94\xd5\x87\x26\x2e\x22\x30\x55\x41\x33\x83\xb4\xf7\xc8\x28\xaa\xc7\x17\x0e\x9e\x12\x88\x06\x00\xb6\xac\x06\x6c\x5b\x66\x83\xd3\xbd\x25\x3a\x8b\x84\x14\x9a\x7e\x6a\x3c\xd2\xf1\x97\x7a\x43\x09\xef\x65\x93\x7d\xcc\xf1\x7a\x18\x51\x9a\x01\x6c\x5a\x6d\xd8\xb5\xcc\xf6\x0e\x11\x5d\x8c\x62\x48\x21\x32\xd2\x8a\x99\xdd\x68\xd7\x88\x11\x20\x45\xb2\xdb\xf2\x88\xdf\x0b\x78\x4b\x3a\x56\x17\xae\x58\x66\x37\xbb\x25\xac\x70\x19\xd2\xff\xa7\x13\x46\x79\x2c\xad\x99\x42\x20\x73\x89\x11\xe2\x8a\x26\x0d\xe9\x40\x1a\xf3\xac\xef\xa1\xe3\x74\x67\x11\x7d\x10\x4f\x25\x7d\x31\xb5\x77\xf7\xec\xb0\xd6\x30\x9c\x2c\x4e\xd1\xaa\xb5\xa2\xb6\xdd\x65\xad\x64\xca\xaa\xa4\xdf\x61\xad\x06\xf1\x63\xd5\x04\x93\x7b\x8a\x08\xfc\xd7\x1e\x22\x63\xdd\x65\x17\xec\x19\x3a\x42\x5b\xef\x04\x77\x00\x06\x2b\x6c\x94\xe8\x7a\x5f\xb2\x96\xcd\x32\x80\x8b\xd6\xb2\x59\x01\xf0\x8c\xb5\x6c\x4e\x03\x78\xd8\x5a\x36\x67\x00\x3c\x6b\x2d\x9b\xb3\x00\x9e\xb2\x96\xcd\x5d\x00\x1e\xb7\x96\xcd\xdd\x00\x1e\xb0\xcc\x25\x3e\xca\x8b\xfc\xef\x19\xfe\xf7\x30\xff\x7b\x96\xff\x3d\xc5\xff\x1e\xcf\x9e\x15\xb4\x95\x44\xc2\x18\xb3\x7f\x8e\xf9\x1e\x6e\xb3\x0e\x62\x60\xf6\x24\x61\x21\x3f\x78\xa9\x62\xe4\x93\xca\xf4\x97\x58\xc7\x1d\xe9\xb9\xee\x53\xf4\x92\x15\x2b\xa0\x7e\x83\x21\x4b\x98\xd5\x42\xe6\xc9\x69\xeb\x00\x5c\xb0\xcc\x03\xd9\x0d\x64\x85\xcb\x70\x0b\x6d\x94\x44\xc4\x48\x1a\xd1\xd2\xec\xb6\x64\x37\x45\x2b\x03\xc0\xc4\x42\xf6\x96\xa5\xb6\xa8\xe8\xde\xc5\x37\xac\x94\x65\x21\xab\xd6\x37\xac\x28\x4e\xb6\x7d\xb1\xb5\xa1\xf5\xd3\xf0\xb5\xa2\xb6\x38\x59\x51\xac\x5a\xb6\xe7\x01\x6d\x53\x3b\x68\x2d\xc0\x63\x96\xb9\x90\x3d\x4c\xda\x6e\x92\x39\x2e\x3b\xc0\xfd\x1f\x5f\x38\x18\xd9\x00\x4e\x5a\xc7\xe0\x09\xcb\x3c\x36\x94\x30\xf1\xc5\x90\x29\xb3\x63\x2c\xfd\xf1\x85\x83\x1a\x57\xff\xba\x75\x02\x1e\xb2\xcc\x13\x43\xc9\x1b\x63\x46\x3f\xbe\x70\x50\x31\x36\xf1\x63\x38\x7b\x1f\xc9\xae\x65\x35\x8c\x63\x3f\x66\x1d\x52\x1c\xfb\xe8\x70\x8e\x2d\x3e\xc5\xd1\x7a\xb4\xdf\x09\xd6\xbd\xad\x76\x0e\xe7\xe1\x8c\x27\x1f\xd2\x78\xf2\xa3\xd6\x51\xc2\x93\x8f\x58\x47\x09\x6b\x7c\xd6\x3a\x4a\x78\xf2\x23\xd6\x51\xc2\x93\x1f\xb2\x8e\x12\x9e\xfc\xb8\x75\x94\xf0\xe4\x27\xad\xa3\x84\x27\x3f\x63\x99\x8f\xf2\x31\x3a\xc2\xff\x3e\xcb\xff\x3e\xc2\xff\x3e\xc4\xff\x3e\xce\xff\x3e\x39\x74\x4c\x23\x6c\x79\xec\xb6\x6b\xcc\x59\xfe\x1a\xc5\xb5\x54\xc1\x62\xfc\x43\xc9\xa5\x1f\x5f\x38\x18\x67\x6e\x91\xa4\x21\x0c\x4e\x55\x47\x26\xc9\x13\xd6\x33\xf0\x29\xcb\x7c\x66\xf8\x72\x8b\x71\xec\xb1\x9b\x1f\xe5\xdb\x11\x0a\x47\x77\xc2\xd0\x06\x0e\x6d\x5f\x94\x87\x3f\xb5\x93\x3c\x5c\xaf\x3d\xce\xc6\x23\x98\x75\x4e\x1e\xed\xc2\x91\xab\x47\xf1\x73\xbd\xc6\x24\x8a\x24\x57\x7f\xd8\x7a\x6a\xe2\x29\x3e\x94\x41\xa9\x69\x62\x68\x34\xd2\xa2\x3b\x86\x03\x20\xf2\xbd\x11\xf9\xcb\x69\xf9\x2d\x95\x1f\x8c\xc8\x6f\xa6\xe5\x37\x55\xfe\x52\x5a\x7e\x47\xe5\xdb\x69\xf9\xab\x2a\xff\xeb\x69\xf9\x4b\x2a\xbf\x3d\x22\x1f\xa5\xe5\x2f\xaa\x7c\x27\x2d\xff\xac\xca\x6f\xa5\xe5\x9f\x56\xf9\xa7\xd3\xf2\x0f\xaa\x7c\x3f\x2d\xff\xa4\xca\xef\xa4\xe5\x7f\x5d\xe5\xbb\x69\xf9\x8f\xa9\xfc\x5e\x5a\xfe\xa3\x2a\x3f\x1c\x91\xdf\x4d\xcb\x3f\xa2\xf2\x71\x5a\xfe\x43\x2a\xff\x99\xb4\xfc\x27\x54\xfe\x4a\x5a\xfe\xc3\x83\x18\x73\xc8\xb0\x0d\xc6\x8b\x68\x4f\x77\x5a\x9a\x25\xd6\x0a\x60\x10\x09\x2c\x8c\xb4\x17\xc1\x1d\xdd\xa1\x32\x7a\x9a\xa2\x55\xa7\xdd\x81\xa6\x4f\x86\x82\xa0\xe6\xd5\x2d\x5c\xf3\x34\xe3\xbd\x66\x95\x04\x6b\xdc\x78\x62\x3c\xfd\x74\xf8\x25\xb3\x36\x59\xac\xcf\x3f\xfd\x74\x73\x12\x90\x9f\x06\x0c\x63\xe9\x5f\x7a\xfa\xe9\x12\xcd\x37\xe7\xab\x35\x74\xb8\xae\xca\xcf\xf3\x2f\x7a\x5b\xf8\xe2\xbf\xd8\x27\xae\x35\xf5\x3f\xff\xc7\xac\x95\x8b\xfb\xec\x62\xab\xbe\x36\x33\x00\x5f\x98\x82\x8d\x68\xe2\x6e\x9a\xd8\xb2\x22\xaf\x3f\x07\xcb\x4b\x4f\x3f\x6d\x1a\x93\x35\x1b\xda\xd0\xae\x4f\x1a\x4f\x3f\x0d\xbe\x60\x00\xd8\xce\x28\xd6\x83\x3d\xd8\x53\xc5\x9a\x89\x62\xb6\x56\x1d\x0c\x55\xc9\x6e\x56\x49\x5a\xa3\x5e\xb2\x13\x2d\xd9\x0e\x5d\x56\x30\x8c\xa2\x5e\x49\x14\xb3\xb5\x72\x7a\x85\xab\xd6\x9a\xed\x3a\x0d\xb4\xe4\xf6\x50\xb5\xb2\x6b\xcf\xbe\xe9\x99\xbd\x33\xd0\xf6\xb0\xf3\x4c\x0f\x9d\x69\x3b\x18\x55\x2b\xbb\x67\x67\x67\x67\xf6\xec\x82\xf6\x33\x3d\xbb\xba\x7b\xd7\xae\x19\x06\x76\xec\xc0\xf1\x50\x75\xef\xcc\xde\xbd\xbb\x76\xcf\x42\xfb\xd9\x5e\xc0\xaa\x98\xad\xec\xd9\x05\x97\x90\xb3\x4c\xbe\xad\x54\xf6\x4d\xef\x2e\xc3\x25\x27\x7c\x86\x60\xd8\xbd\x67\x4f\x79\x7a\x76\x16\x2e\xb9\x76\xe3\x74\xb5\x4c\xfe\x7a\x8d\x36\x6a\xda\x6e\xc7\xf7\x9a\x34\x7f\xba\x3c\xbb\x0b\x52\x7a\xa6\x77\x31\x60\xc5\xf1\x5d\x84\xab\xfb\xca\xbb\x76\x4d\x97\xa7\xe1\x52\xe0\x9f\xf1\xaa\x95\xf2\xde\xe9\xd9\xe9\x99\x59\xb8\xd4\x0b\xdc\xd5\x33\xbe\xdf\xac\x56\x66\x77\xed\xdb\x3d\x3d\x53\x81\x0d\xbb\x89\x30\xad\x62\xf7\xf4\xee\xdd\xbb\xa6\xf7\xc2\x46\xdb\x0e\x70\x80\x7a\x21\x23\x78\x66\xd7\x34\x6c\xb4\xfd\x86\x4f\x5f\x02\xab\xcc\xec\xd9\xbb\x6f\x76\x4f\x19\x36\xfc\xc0\x76\x09\x11\xb3\xb3\xd3\x7b\xa6\xc9\x4f\xaf\xe5\xfa\x67\x50\xc0\xea\xda\xb5\xaf\xb2\x6f\x6f\x85\x26\x87\x8e\x7b\x9a\x52\xbb\x6b\x66\xef\x5e\xd8\x08\x9c\x4e\xe8\x7b\xd5\xca\xec\xec\xf4\x4c\xa5\x5c\x86\x8d\x55\xdb\xe3\x5d\xd5\xb4\x83\xd3\xac\x77\x67\xf6\xd1\x1f\x34\x6f\x66\xd7\x9e\xe9\x19\xfa\x73\xd9\x77\x9b\xc8\x0b\x08\xf9\xd3\xe5\x7d\xd3\xfb\x78\xa9\xe5\xc0\x5e\xad\x56\x2a\x95\xca\xbe\x72\x65\x0f\x4f\x41\xff\x3f\x79\xef\xbe\xde\xb6\xad\x3c\x8a\xfe\xef\xa7\xb0\xf9\x6b\x54\x40\x1c\xd1\xa4\xee\xa6\x0d\xeb\x64\x25\xe9\x4a\xda\xdc\x1a\x3b\xbd\x29\xaa\x3f\x5a\x82\x24\xc6\x14\xa9\x92\xa0\x2f\xb5\xb4\xdf\xea\xbc\xc0\x79\xb2\xf3\xe1\x42\x12\x94\x28\xdb\x59\x6b\xfd\xf6\xd9\x67\xef\x7e\x8d\x45\x82\x83\xc1\x60\x30\x00\x06\xc0\x60\x86\x86\x6e\xb3\xd3\xb5\xed\xec\x7d\x03\xe2\x6a\xee\x5d\xf9\xae\xd3\x6c\xb7\x5a\xcd\x8e\x44\xb3\xf0\x66\x34\x64\x9e\x7b\xe4\xd8\x47\xdd\xb6\x2c\x31\x0a\xfc\x6b\x2a\xb1\x75\x3a\x47\xbd\xa3\x23\x09\x1a\x89\xf9\x52\xd4\xbe\xd7\x69\xda\x2a\x6d\x3c\xf7\x27\xae\x63\xdb\x6d\xdb\x76\x9a\x22\x2d\xa6\x13\x81\xae\x63\xb7\xc5\x7b\x22\xda\xce\x75\x3a\x2d\xbb\xdf\x76\x64\xbe\x84\x7a\xb2\x80\xa3\xb6\x73\x74\xe4\xc8\x02\x44\x60\x1a\xc1\x8a\x76\xaf\xd5\x6e\xb5\x7b\x45\xaa\xa8\x2d\xe7\x5c\xfb\xa8\xa3\xa7\xd2\x72\x2a\x4b\xe3\xbf\xd2\xc8\x4f\xa8\xdb\x69\x1e\xb5\x65\x5a\x26\x1c\xdd\xa3\xa3\x0e\xe7\x1d\xa5\xcb\xa5\x1f\x8a\xc6\x71\xba\x47\xbc\x10\x4a\x97\xc9\xd5\x9d\x2c\xf8\xc8\xe9\x38\x30\xf1\x17\xa2\xc0\xee\x91\xdd\x6f\x76\x3b\xf2\x9d\x6a\xef\xd1\x64\xa6\xda\xbc\x69\xdb\x2d\xe7\xe8\x08\xa6\x7e\x4c\x2f\x63\x7f\x7c\xe5\x3a\x9c\x41\x4e\xbb\x0b\xd3\x80\x4b\x4b\xd6\x47\x7a\xbd\xce\x51\xd3\x86\x69\x14\xd3\x84\xa9\xa6\x6a\x76\x5b\xfd\x76\x13\xa6\xe9\x78\x9e\xf8\x9e\xa0\xc8\x39\x6a\x75\x60\xe6\xf9\x61\x72\x19\xc5\x11\x17\x98\x5e\xbb\xdd\xb5\x61\x36\x8f\x12\x96\xe1\x6a\x39\xdd\x6e\xcf\x01\x2e\x19\x3c\x53\xb7\xdb\x6b\xda\xa0\xc9\x49\xbb\xd5\x3c\x72\x78\x12\xaf\x44\xbf\xdd\x74\x78\x53\xc8\x32\x5b\xcd\x5e\xb7\x2f\x9f\xef\x68\x10\x44\x37\xae\xe3\xb4\xed\x96\xdd\xe9\x80\xa8\x62\x06\x3d\x8f\x42\x7a\x37\xa1\x37\xaa\xc3\x76\x6d\x98\x47\x2c\xe3\x5b\xab\xdf\x6b\xdb\xe0\x87\x13\xdf\x0b\x79\x6b\x3b\xad\x76\xa7\xdf\x69\xb6\x45\xd2\x2c\x12\x5c\x6c\xb5\x6c\xf0\xaf\xa3\xf8\x4e\xd4\xbd\xd7\xb4\x6d\x50\xe2\xd7\xe9\xf5\x7b\xdd\xae\x0d\x81\x77\x2d\xed\xce\x9c\x8e\xd3\x6a\x72\xc9\xc8\x52\x2e\x83\x34\x99\x8b\x7c\xad\x56\xb7\x03\x81\x77\x13\x4a\xea\xfb\xce\x91\x7d\xd4\xeb\x42\x40\x17\x51\x38\x9e\xfb\xd3\x29\x17\x2c\xce\xdb\x7e\xbf\x03\x81\x3f\x9b\xcb\x5e\xed\x38\xad\xa3\x56\xb3\xd3\x96\x49\xaa\xd7\x76\x7a\x5d\xa7\xd3\xea\xaa\x34\xde\xc9\x9c\x76\xaf\xdd\xe9\x1c\x1d\xc9\xa4\x9c\x81\x19\x63\xba\xed\x76\xbf\xc9\xc9\x12\x5f\x45\x7f\x6b\xf5\xfb\xcd\x56\xb3\x95\x25\x49\x09\x3e\xea\x37\x3b\xdd\x3c\x69\x13\x2a\x63\x5a\xa7\xdf\xee\x2a\x1a\xb3\x1e\xd1\xed\x75\x9a\xbd\x6e\x53\x25\x66\x5d\xa2\xe9\xb4\x9b\xfd\x23\x55\x6c\x26\x98\xfd\x23\xdb\x6e\xb5\x55\x29\x45\x97\xe8\xf5\x5b\xad\x5e\xa7\x55\x4a\xa6\x9b\xc9\x8c\xd2\x40\xb1\xa5\xd3\xe7\x5d\x4b\xa6\xe7\xd5\xec\xf5\x7a\x4e\x9f\x27\x2e\xf8\x18\xd6\xec\xdb\xe2\x51\xc9\x4b\xab\x79\xc4\x9b\x32\xf0\x43\x1a\x0a\x96\x74\xba\x3d\x1b\xb2\x61\x23\x17\xd9\x85\x17\x47\x51\x28\xc6\xce\xae\xdd\x17\x51\x40\xd2\x85\x36\x0b\x74\x7b\xad\x5e\xab\xd9\x54\x1f\x54\xd7\xe9\xa8\xd7\x6c\x14\x69\x36\x1d\x2e\xd9\x2a\x75\x99\xc6\xcb\x80\xba\x47\xdd\x6e\xb3\xdb\x6f\xa9\xc4\x9c\x4b\xad\xa3\x5e\xdf\x3e\xca\x60\x8b\xa1\xa3\x6f\xf7\x7b\xbd\x23\x3b\x4b\x5f\xc6\x7e\x38\x93\x39\xba\x6d\xa7\xd3\x56\xe9\xc5\x40\xd1\xee\xf5\x9a\x2d\x3b\x83\x97\x83\x85\x94\x69\xbb\xdd\x73\x7a\x2d\x58\xf8\x93\xb0\x10\xac\x6e\xbb\x7d\xe4\x34\x61\xe1\x87\x8c\x2b\x3f\x0b\x3e\x83\x35\x9d\x7e\xc7\x86\x85\x9f\xb0\xbb\x38\x4a\xb2\x49\x8c\x67\x8d\xc6\x63\x2f\xf1\x43\x95\xd2\x3c\x82\xd0\xbb\xf6\xbe\x46\xf9\x98\xd0\xed\x77\xfb\x1d\x9e\x78\xe7\x3a\xcd\x3e\x44\xc1\x24\xf0\xc6\xfc\x4b\xb7\xdd\xea\x74\x78\x82\x7f\x4d\x45\x9f\x6c\xf5\xba\xf2\x6d\x12\x7b\x97\x6e\xcf\x6e\xf7\x7b\xad\x23\x28\x86\xe4\x4e\x8b\x8f\x2e\xf2\x5d\x90\xdf\xed\x35\x8f\x5a\xed\x36\x64\xbc\x6d\xb7\x9c\x0e\x6f\xfa\xa5\x17\x50\x6d\xa8\xe8\x74\x3b\x3d\xa7\x65\xcb\x64\xc1\x26\xc7\xb6\x9b\x9d\x7e\x5f\x26\x15\x7c\x72\x9c\x4e\xf3\xe8\xa8\xdb\x15\xc9\x1a\x9b\xda\xad\xbe\xd3\xb4\x5b\xb0\xf4\x96\xde\x9d\x77\x33\xf7\x97\xb2\xe3\xda\xbd\x1e\x2c\xa9\x37\x9e\x2f\xd3\xe9\x54\xd4\xb5\xd7\xed\xb5\x60\x49\xe3\x94\x8f\x17\xdd\xfe\xd1\x91\x03\x59\xdf\xe8\x3a\x76\xab\x03\xcb\x20\x5d\xf0\x39\xba\xd9\xee\xb6\x7a\xb0\x8c\x6e\x26\x6a\x90\x75\x1c\x3e\xb3\x3a\x36\x28\x91\xe0\x52\xd6\x6b\x75\x21\xa6\x97\x74\x3c\xf6\x54\x6a\xb7\x7b\xd4\xeb\xf7\x1d\x50\xd5\x77\x9c\x6e\xdf\x86\x38\x4a\xee\x94\x3e\xd0\x6c\x75\x7a\x1d\xe7\x08\xe2\xe8\xce\x93\xfd\xa1\xdd\xec\x77\xf9\x34\x91\x78\x93\x49\x40\x25\xd8\x91\xd3\xec\x39\xfd\x1e\xe4\x7d\xb4\xed\x74\xfb\xfd\x26\x24\x5e\x38\xc9\x30\x75\xed\x56\xb3\xdf\x6d\x43\x21\x8c\x76\xc7\x6e\x35\x7b\x3c\x21\x99\xd3\x40\xa8\x08\xbd\x76\xb7\xd5\x87\xc4\xa7\x61\xe8\xb9\x8e\xdd\xb1\xbb\xbd\xa3\x1e\x24\xbe\x88\xdd\xe5\x34\xbb\xad\x26\x1f\x35\x4a\xfd\xbb\xe5\x40\x21\xc8\xdd\xa3\x9e\x6d\x77\x55\x8a\xec\xec\xad\x5e\xf3\xa8\xdd\x06\xad\x9f\x67\x29\xa1\xea\xc8\x9d\xa3\x96\x0d\x25\xa1\xef\xb4\xed\x1e\x14\x43\x40\xbb\xdb\xb4\x8f\xfa\x36\x30\x3e\xfc\xb5\x78\x67\xe1\x2f\xd4\x0b\xdc\x56\xb3\x7f\xd4\x15\x66\x53\x2c\xa0\xae\xd3\x6e\xda\xed\x7e\xbf\x0f\x2c\x5a\x78\x2c\x12\xa3\x7e\xcf\x3e\xea\x80\xd6\x73\x9a\x1d\xa7\xdf\xe9\x82\x9a\x60\x9d\x4e\xb7\xe5\xd8\xfd\x2e\xdc\xcc\xa9\xc7\x84\x66\xd7\xe2\x35\x2a\x26\xc0\x5e\xd3\xe9\xc8\xd7\x64\x11\x5d\x65\xca\x5f\xbf\x03\xda\x48\xd4\x3d\xea\xda\xea\x3d\x13\x47\xa7\xdd\xb1\x7b\xed\xf5\xc6\xa9\x8a\x30\x1e\xc8\x6d\x05\x08\xa2\xa6\x61\x60\x8b\xc5\xfe\x02\x61\x8b\x45\x6f\xb9\x56\xf6\xc2\x4b\x28\xc2\x80\x18\x09\x2c\x7a\x4b\xc7\x88\x62\x3c\xe0\x9a\xef\x2d\x42\x8c\x08\x4f\x40\x6f\x42\x26\xa2\x31\x83\xd3\xc5\xf8\xf4\xb4\x5f\x73\x3a\x2b\x76\x7a\xda\xae\x35\xdb\x36\x88\x07\xa7\xb3\x6a\xb6\xed\x1a\x03\xe4\x74\x6a\x0c\x9f\x9c\xb4\x57\xfc\x01\x1c\x11\xb3\x7e\x5c\x20\xbe\x44\xdb\x18\x39\xc8\x74\xb3\x6c\xf1\x95\x0d\x9b\xfc\x4f\x6b\xa4\x10\xcd\x37\xa1\x9a\x9d\x4e\x9d\x43\x1e\x72\x7d\x51\xbe\x34\xf5\x97\x96\x7c\x91\xb9\x27\x45\xee\x8b\x4d\xfc\x6c\xd8\x96\xf1\xf5\x97\x3a\xd0\x13\xd1\xe7\x99\x17\x45\xe6\x0f\x45\x09\x0a\xa6\x44\xcb\xf5\x13\x20\x25\x5a\x11\xc2\xf2\xc3\x4d\x58\x18\xde\x70\x2e\xde\x0d\xe9\x08\xbb\x86\x08\x55\xb8\xf4\xe2\x2c\x28\xb2\x62\xcb\x7b\xef\x3d\x64\xff\x6c\xb5\xa7\x93\x4b\xc6\xa5\xb6\x67\x25\xc1\xe9\xe9\xa9\xd3\xad\xf1\x85\x02\xe5\xad\xcb\x1f\x9a\x9d\x4e\x8d\x82\xa3\x39\xef\xbd\xc8\xbc\xfb\x17\x99\x4f\x88\x5d\xab\x21\x4a\x18\x89\xc9\x7b\xef\x3d\x06\x85\x4e\xc1\x15\x79\x6f\xf4\x7d\x35\xdd\xa1\x6d\xb4\x5a\x21\x4a\xb8\xac\x62\xc8\x88\x47\x94\x50\x2b\x9e\x5d\x22\x8c\xad\x18\xa8\x35\x03\x6a\x5d\x02\xb5\xa2\xa5\x37\xf6\xd9\x1d\x16\xd1\x2d\x6f\x0b\xe4\xaf\xb6\x08\x73\x08\xd9\xb2\xe7\x1b\x70\x1a\xdc\x12\x81\x32\x20\xfa\xc0\x71\x75\x52\x0b\xf2\xa5\xfd\x64\x4c\x4c\x15\xb9\x76\x46\x4c\xe5\x07\xf7\x92\x98\x2a\xc2\xad\xa2\x89\x98\x61\x81\xe1\x4c\xbb\xa1\x93\xed\x05\x2e\xbc\x5b\x64\x4b\x8b\x8d\x85\x1f\x72\xb9\x92\x2f\xc2\xde\x47\xb8\x3f\xb4\x31\xc6\x27\x4e\x77\x60\xd8\x86\x6b\x18\xd8\x2c\x7c\x27\x22\xa7\xab\xd1\xf7\xa1\xb2\x19\x06\x79\x23\xb8\xf1\x09\xb1\x57\xab\xf8\x94\x38\x22\x91\x27\xb1\xac\xa1\xf2\x46\xba\xaa\x68\xa4\xe7\x4f\xe3\xe3\x86\xd9\x62\xa9\x39\xaf\xb0\x26\x57\x57\x88\x5a\x73\xa0\x56\x02\xd4\x0a\xb4\xf6\xdb\xdb\xcc\xa5\x0b\xc1\x01\x2d\xa1\xd8\x82\xbd\x2a\xae\xba\x4a\xcb\xa8\x92\xb4\x1c\x72\xc6\xc6\x84\x5a\x33\xf1\x14\x12\x6a\x5d\x8a\x27\x9f\xe4\xbc\x97\x55\x04\xaf\x68\x18\x95\x92\x70\xf6\x40\x4a\xbc\x86\x0f\x01\x41\x9e\xe9\xe3\xc3\x66\x36\x78\xa6\x03\x94\x10\xc6\xf9\x31\x40\x71\x23\xc4\x87\xa9\xd9\xad\xa3\xf8\x24\xc4\x6e\x2c\x53\xc3\x06\xe3\xa9\x4d\x17\xb1\x46\xcc\x9f\xda\x90\x1e\x92\xe0\xc4\xea\x0c\x3c\xd3\x77\x9b\x0d\x8e\x37\xa9\x93\xae\x8d\xdd\x94\x04\xa7\x76\xad\x16\x9c\x38\x03\xdb\x4d\x54\x8b\x24\x90\x82\xce\xa7\x75\x26\xb0\x57\x0f\x0a\xec\xd5\x86\xc0\xce\x73\x81\x4d\x72\x81\x0d\x1e\x14\xd8\xf3\x6c\xc7\x4b\xd5\x95\x8f\x6d\x88\x9e\x74\xed\x01\x33\x85\x15\x4b\x9d\x1e\x76\x6d\x97\x9e\x38\x7d\x7b\x10\xbb\xf4\xa4\xd9\x2e\x3e\xa1\x66\xdb\x6e\x50\xcc\x01\x18\x5e\x87\x28\x82\x19\xdc\x4f\xfc\x64\x19\x78\x77\x22\x64\xc1\xf6\x86\x9c\xec\x57\xbc\xc9\x2c\x0d\x10\xe1\x35\xcc\xe9\xed\xc3\xf0\x73\x7a\x8b\xc4\x6d\x02\xd9\x35\x1e\x04\x36\x0d\x63\xbd\xc6\x10\xa2\x5b\x78\x05\x3e\x8a\xe0\xfe\x32\xe6\x3a\x2a\xad\x34\x38\xa6\xca\x7e\x8d\x0e\x9c\x43\xab\x27\x4d\xd8\x96\xd1\x0d\xe2\x6f\x40\xb3\xa1\x4d\x62\xaf\x67\x23\x42\xf6\x70\x99\x3d\xe4\x6d\x27\x56\xd5\x8f\x95\xa4\x97\xf3\xaf\x95\x12\xcf\x2e\x77\xb9\xfb\x87\x87\x1b\xc1\x3e\x51\x91\xda\x95\x1d\x7f\x7c\x42\xf8\x98\x5f\xcb\xd2\x67\x2a\x7d\xb6\x91\x7e\xa9\xd2\x2f\x37\xd2\x15\x4d\xea\xab\x7a\x3b\x21\xce\x8e\x46\x35\xfe\xcb\x30\xcf\x54\x45\x71\xf6\x34\xcb\x9f\x2e\x77\x34\xb2\x76\x57\x41\x15\xa1\x3a\x28\x12\x3e\xfe\x28\xf1\x93\xf7\xde\x7b\x3e\x45\x2a\x2b\xc4\x8d\x81\xd7\x01\x8a\x31\x1e\x18\x5c\x40\x0c\x97\xff\x78\xc8\xc0\xe6\x13\xc6\x68\x45\xaa\x18\xa8\x4d\x03\xf6\x8d\x27\x67\x9a\xfd\x2b\x99\x2e\x55\x26\x51\x2f\x3a\x30\xb0\xe1\x8a\xfc\xd4\x34\xb0\x81\xd7\x6b\xcc\x05\xfb\x0a\x9e\xff\x67\x04\xfb\x4a\x16\x3a\x57\xe3\x86\x1a\x34\xfe\x93\x42\xfd\xd4\x12\x36\x04\x5a\x6b\xef\xf9\xb3\x56\xd7\x36\x5b\x5d\xbb\xae\x50\x9d\xd8\x18\x58\xde\xe0\xab\x95\x7c\x92\xf8\xf1\xc0\x76\x55\x49\x59\x74\x6b\x11\x8f\x19\xc5\x7c\x3c\x8e\x5d\xa7\x11\xe3\x3a\x03\x9f\x34\xeb\x71\x23\xdc\x2b\x69\x43\xe7\x88\x9e\x12\x3e\xc4\xd1\x46\xb3\x6d\xbb\xd4\x74\x9a\x36\xf8\x7c\x86\xe0\x03\x65\xf6\x70\xe2\x34\xed\x01\x35\x05\x44\x23\x87\xd8\xe4\xd7\x43\x5d\x10\x65\x5d\x27\x51\x9d\x26\x39\x21\xce\x46\x35\x70\xd1\xc1\x02\x05\x15\x9c\x10\xe7\x09\xdd\x6e\xad\x9c\xc2\xbf\x90\xf3\xdc\xc7\x37\x87\x4e\xdf\x86\x77\xc4\xe9\xdb\x87\x2a\x05\x3e\x11\xeb\xa8\xdb\x6e\x36\xe1\x23\x71\xe0\x2b\xb1\xfa\xcd\x4e\xd3\x81\x97\xa4\x7d\xd8\x3c\x82\xf7\xa4\xcb\x7f\xde\x90\x56\xfd\x7d\xfd\x3d\xbc\x25\xef\xf9\x6f\xb1\xc0\xf8\xa1\x4a\x01\x78\xad\xcf\xde\xaf\x91\x9c\xf8\xbd\x0d\x05\x6e\x6b\x52\xff\x5d\x20\x52\x2d\x69\xcd\xf1\x36\x12\x1b\x6c\x1d\x81\xba\xd6\x6b\xcd\xeb\x2f\xf6\xb6\x60\x45\xed\xc6\x51\x82\xf8\xc4\x65\x8d\xe5\x7b\xc2\x67\x7e\xf9\xae\xcd\xb0\x25\x2a\x6e\x85\x1a\xc2\xd5\x44\xe5\x4e\x1f\x42\xf0\xc9\x5f\x88\x5a\x31\x86\x48\x3c\xcc\xb8\xde\xc0\x1f\x2e\xb9\xba\xf0\x0f\x84\xac\x66\xb3\xd9\xb1\xdb\x9d\xba\x6f\x5a\x3d\xa7\xdb\xef\xf5\xbb\xf5\xc8\xb4\xec\xae\xdd\x75\xba\x47\x75\x0f\x1f\x7e\xc4\x45\x74\x04\x11\xde\x3b\x12\xea\x42\x4c\x42\x92\xb8\x28\x16\x48\xda\xad\xae\xdd\x6b\xf7\x38\x92\x56\xbf\x63\x77\xdb\x47\x1c\x89\xd3\x6e\xd9\x7d\xbb\xcd\x91\x7c\xc2\x10\x0a\x48\x5b\xec\xd9\x35\x39\xa4\x7d\xd4\x73\x78\xc9\x11\x2f\xb9\xed\xf4\x5a\x2d\x0e\xf9\x15\xcb\xfe\xf6\x1a\x39\x4e\xb7\x9e\x34\x9c\x2e\x74\x6c\xbb\x8e\xe2\x46\x82\xa1\xc9\x9f\x92\x46\x88\x75\x1e\xe4\x0d\xfa\xf7\xd3\xf4\xbf\x1f\x32\xb5\xe4\xf5\x83\x6a\xc9\xeb\x0d\xb5\x24\xc8\xd5\x12\xef\x89\x7a\xf4\x3f\xf4\xe1\xe5\xf4\xed\x20\x1f\x55\x28\x38\x87\x2d\xec\xd2\xc3\x37\xe6\xcb\x02\xfc\x73\x09\xfc\xfd\x80\xd6\x69\x9d\xba\x6f\xea\x88\x36\x5e\x6a\x74\xfd\xaa\x81\x29\x45\x87\x58\xb6\xdd\x72\x5a\x76\x7f\xe0\x34\xad\xa3\x66\x9d\xba\x8e\x65\x77\x3a\xf5\x52\x81\x4d\xab\x8d\x1b\x3c\x59\xc3\xf5\x97\xa6\xe9\xd3\x43\x3e\x1f\x62\x8e\xac\x6d\xb7\x3b\x03\x7a\x28\x90\x15\x63\x21\xa2\xa6\xc8\x7e\x28\x90\x03\xc7\x57\x60\xfa\xe5\xdf\xd7\xbd\x7f\xd7\x7b\xcd\xef\x4a\xf7\x1e\x3f\xa6\x7b\xbf\x16\x42\xff\x83\xd0\xbd\x6d\x3e\xd5\x58\x5e\xad\x26\x1f\x2e\xcb\x08\xc5\x5a\x72\x13\x9d\xec\x88\xa2\x8e\x1e\xf3\xc2\x26\x92\x3d\xdd\xc3\xf5\x77\x7b\xa5\xdc\xec\x84\xab\x8c\x2d\xae\x25\xaa\x0e\xf9\x57\xcc\x10\xb5\xbc\x3a\xb5\x3c\x93\x72\xdd\x86\x77\xaa\x32\xfa\x5c\x03\xfe\xfd\x41\x51\xfb\x7d\xa7\x06\x3c\x7e\x58\x03\x0e\xd1\x6b\xf8\xfb\xf1\x19\x54\x0a\xbb\x44\x63\x3a\xfd\x3a\xca\x27\x54\x37\x8b\xa6\xe2\x29\x81\x7e\xfa\x84\xa9\x23\x6d\x7c\x1b\xd2\xca\x39\x32\xa7\xaf\x8b\x0f\x1d\xa7\x9b\xcf\x8c\x12\x13\x1e\x50\x97\xca\xc0\xff\xde\x61\xc7\xb6\x21\xd6\x3f\x5f\x8a\xcf\x0d\xf9\x7c\xd8\xb4\xed\xf2\x84\xf8\x2b\x6a\x59\x4e\xab\xd5\xef\x74\x9d\x3a\x62\xe4\x53\xfd\x33\x62\x18\x37\x1c\xab\xeb\x74\xfb\xdd\x6e\xaf\x8e\x28\xf9\x58\xe7\xfd\x0f\x37\xac\xf6\x91\xdd\x75\xda\x7c\x6d\x44\xbe\xd6\x3f\xa3\x18\x63\x0c\xbf\xa2\x86\x75\xd4\xeb\xf7\xba\xfd\x76\x9d\x99\x8e\x75\xe4\x74\x9d\xb6\xd3\xa9\xf3\x1e\xd1\x6a\xb5\x3b\xed\x7a\xcc\x81\x2c\xbb\xe7\x1c\xb5\x3b\xad\x3a\x6b\x58\xcd\x66\xff\xe8\xc8\x69\xd7\xa9\xe9\x58\x6d\xbb\xd3\x6c\x37\x7b\x1c\xa8\xcc\x09\xa9\x05\xfd\x0e\xbf\x3c\xad\x0d\x7f\x2f\xe9\x20\x63\x78\xb0\x45\x9f\xda\x86\xd5\x48\x77\xb4\xe8\x63\x8a\xfb\x0f\x2a\x30\xad\x58\xbf\xe4\x53\xf8\x3f\x49\xc3\x72\xda\xfd\xae\x03\x3f\x11\xc7\xea\xf5\x9b\xbd\x1e\x7c\x47\x1a\x56\xf3\xa8\xd9\xec\xc1\xcf\xa4\x61\x1d\xf1\x39\x03\x7e\x23\x8e\x75\xd4\x6b\x1e\xb5\xe1\x0f\xf2\x5b\xfd\x67\xf8\x91\xfc\x56\xff\x09\x28\x25\x3f\xd5\xbf\x6b\xfc\x5c\xff\xa7\xe6\xb5\x87\xfe\xfb\xe3\x4d\x5c\x5a\xa9\xc7\x74\xd7\x6a\xff\xc1\x39\x96\x4f\xe2\x0f\xad\xda\x11\xa5\xf5\xd0\xfc\xa3\xce\x1a\x3f\xd6\x63\x7c\x88\x28\x35\xff\x68\xfc\xc8\xa7\xe3\xb0\xe1\x83\x47\xd0\x6f\x7c\x6a\xf3\x71\xe3\xbb\x7a\x84\x0f\x7f\x86\x84\x14\x83\x8b\x57\xf7\xcc\x88\x27\xa3\xdf\xea\x7e\x1d\x39\x0d\x1f\x63\x48\x49\x32\xd0\x86\x2b\x0f\x22\x5c\x7f\xc7\xf5\x37\xf7\xbd\xf7\x7e\xaf\x5c\xa1\xf4\xc4\x1e\xa4\x62\xcc\x4a\x21\x01\xbf\x6a\x60\x8a\xe9\x83\x23\x53\x4c\xff\xd5\xc5\x79\x88\x62\x0a\x8c\xfe\x67\xd4\xfb\x98\xfe\xb7\xeb\xf7\x4f\x2e\xa2\x72\xf0\xd2\xc6\xa2\x39\x57\xdd\xd5\x23\xd7\xbc\x71\xfd\x05\x30\x62\x2a\x1d\xbe\x34\x6c\x69\x5a\x7e\x9d\xf1\x06\x66\x5c\x4d\xca\xd5\x3f\x8a\xb3\x6d\x1f\xae\xfc\x15\x77\xe6\x8a\x9d\x63\xc4\xcc\xb8\x8e\xfe\x59\x0f\xcd\x9f\xea\x5c\x38\x8a\xb4\xef\xea\xa1\xf9\xf3\x46\xda\x6f\xf5\x10\x57\x8d\x40\x0f\xd9\x96\xcd\x1e\xb1\xed\x7a\xf5\x88\x6d\xdb\xf3\x47\x6c\xcb\xfe\x2e\xbe\x57\xda\xe6\xfd\xf2\x88\x6d\x1c\xa3\x8f\x1a\x47\xc5\x56\x8c\x18\xae\xb0\x91\x2a\x64\xe3\x84\x89\x2b\xb7\xa7\x8c\x0f\x75\xa7\x84\x0d\x44\x6f\x5a\xeb\x11\x8c\x37\x0f\x23\xc4\xb2\x56\x0d\x33\xb5\x1a\x62\x84\x02\xad\xbe\xb7\x18\x22\x19\x88\x18\xaf\x31\xdc\x07\x74\xaa\x5d\x71\xcf\x83\xcd\x4e\xa3\x58\x8d\xb6\x22\xf4\x1b\xb1\xb3\xdb\x8d\xd2\xaf\x1a\xcb\x2f\x4d\x87\x27\xfe\xb1\xba\xc5\x48\x42\xd3\x3f\x3d\x3d\x75\xf6\x28\x62\xc3\x68\x04\x31\x3e\xb1\x07\x21\x89\x4c\xc7\xf5\x49\x94\x5d\xec\x0c\xd7\x20\x3a\xdf\x7f\x5b\xa1\xa7\xf6\xc0\x27\x91\x2b\x0a\x2e\x0a\x5d\xaf\x21\x22\x3e\x12\xfb\x94\x91\x25\x28\x80\x84\x44\x16\xaf\x3f\xa4\xc4\x83\x60\xa3\x29\x64\xc9\x22\xf2\x07\x19\x17\xf6\x65\x65\xff\x5a\x0d\x07\x7c\x42\x95\x7b\xba\x3c\x54\x50\x78\x62\x0f\x6c\x37\xc4\xc2\xfb\x16\x8e\x86\xf1\x88\x30\xe4\x0b\x48\xd3\x8c\x47\x79\xbf\x89\xb4\xd3\xa5\xb1\x2e\x00\x43\x0a\x6c\xa4\x22\x63\x6c\x8a\x92\x10\x1b\xf0\x21\x02\xe1\x3c\x30\xbb\x5c\x9f\xe6\xec\x81\x40\x23\x25\xa9\xa7\x92\x76\x75\x37\xb5\x56\x43\x31\x19\xf3\x5e\x1d\x11\xfb\x38\x3c\x49\x8e\x4d\x33\x14\xf7\x2a\x3d\x42\x87\xe1\x08\x7c\x62\x1f\xfb\x27\xe9\xb1\x69\xfa\x60\x9a\x11\x0e\x86\xd1\x88\xc4\xc8\x03\x36\xf4\x0b\xca\x83\x35\xcc\xab\x45\x97\x9d\x50\x2e\xba\xec\x94\xcf\xd2\xec\x94\xd0\x4c\x74\x27\x55\x16\xbe\x92\x2a\x42\x07\xef\xbd\xf7\xae\x49\xd7\xb0\xac\x0a\x72\x25\x96\x8d\x54\x0b\x65\x02\x1e\x69\x38\x90\x10\x1b\x52\x22\x02\xc4\xa9\xc6\xca\x2e\x95\x7a\x5c\x3e\xe4\xb8\x16\x93\x09\xa2\x43\x6f\x84\xf1\x6a\x85\x52\x93\xa0\x90\xf0\x95\x1b\x9f\xe4\x50\x62\x92\xf0\x90\x57\x12\xe3\xbd\xe2\xb2\xe9\x56\x76\x26\x10\x80\x27\x76\xba\x1e\xc6\xe2\x4f\x51\x74\xea\x64\xd3\x78\x7a\x88\x22\x71\x11\x76\x51\x19\xba\x6b\x29\x9d\x29\x66\x06\x8a\x83\x62\xa2\x8d\xb1\x1b\xaf\xe1\x7a\x17\x2f\x20\x2a\xb8\xc1\x39\xa1\x73\xe0\x3e\xaf\x43\x74\x8c\x55\xfa\x01\x41\x31\x11\x4c\xa8\xd5\xe2\x53\x12\x0b\x36\x85\xc4\x27\x71\x06\xb8\x09\x85\xc2\xd3\x58\x74\xc1\x18\x83\x7f\x12\x8b\xee\x17\x63\xbc\x2e\x73\x69\xa3\x04\x9d\x4f\x8f\x16\x54\x06\xde\x51\x9e\xe2\xcd\x30\x04\x7f\xb4\x86\x3b\xe9\xb1\x41\x8b\x0c\x37\x23\x77\x56\x12\xf8\x63\x0a\x97\xe4\xce\x5a\x78\x4b\xb8\xa8\x92\xb2\xed\x51\x9a\xae\xd7\x70\x53\x79\xd3\x75\x0d\xaf\xb6\xed\x56\x85\x8e\xc1\xd5\x8b\x98\x20\x7f\x4b\xa9\xc3\x27\xcd\x81\x1a\x6f\xc5\x61\xa4\x7f\xd2\x1a\x38\xae\x19\x6b\x71\x79\xc4\x38\x61\xaf\x36\xf7\x2a\xc5\x55\x6f\x79\xa5\x22\xc6\xb8\x34\x86\xf8\x58\x5c\x8e\xf6\xf9\xf8\x11\x8e\x08\x35\xc3\x7a\x5c\x8c\x1b\x70\xab\xa9\x65\x1d\x1b\xc3\x99\xf6\xee\xd8\x18\x3e\x68\xef\x4d\x0c\xcf\x1f\x19\x46\xa4\x0c\xc5\x5c\x6f\x42\xbc\xb6\x98\x10\xc4\x2b\x2c\xda\xd1\xc6\xd9\xa8\x24\xee\xa8\xa3\x90\xb0\x13\xe1\x8b\xd4\x17\x75\x66\x7c\x65\x24\xd7\xba\xc8\x23\xea\xf0\x84\x77\x94\x83\xdc\x7e\xdf\xcb\x36\xa0\xe4\x2d\x77\xef\x54\x5e\xff\x56\x47\x79\xf2\x06\xfe\xa1\x87\x81\x91\xd2\x65\x61\x6f\x83\x25\x1a\x38\x6b\x50\xd3\xc1\x9c\x47\x89\xe4\x51\x32\x22\x88\x9a\x09\xae\x7b\x45\x57\x2e\x5f\x1b\xa8\x17\x05\x48\x14\xf5\x07\xf0\xd3\x06\xab\xc0\xdf\x48\xf0\xa1\x97\x6b\x3d\xb5\x5a\x64\xc5\xf4\x9a\xc6\xe2\xb8\x5f\x1f\xcc\xaf\xca\x8e\xb3\x64\x0b\x6b\x8d\x1f\xe7\x8a\x94\xa4\x4d\x3c\x06\xd1\x0c\x85\x0a\xec\xed\x7b\x47\x78\x47\x09\x0f\x0b\xf5\xd3\x06\xbf\xd8\xf9\x3a\x25\xf6\x00\x45\xa7\xe4\x76\xe0\xd8\x6e\x74\x4a\xce\x06\x1d\xfe\xf3\x61\xd0\x74\x1d\x5c\x2f\x67\x72\x1b\xfa\x7b\xc3\xc7\x87\x3b\x73\x56\x1c\x61\xc9\x2a\x48\x0d\xff\x32\x79\xa0\x2a\x0a\xff\xa3\xd5\x92\xf5\xca\x63\x2f\x0b\x52\xfc\x3a\xc9\xa8\xf1\xeb\x44\x12\xc4\x05\xac\x4e\x9a\x18\xc4\x94\xe2\xbb\xfe\x5a\xee\xbe\x56\xf4\xda\xa2\xdd\xf2\x22\x73\xb7\x2e\x59\xc9\x4d\x6c\x3a\x6b\x78\x47\xb6\x54\xe5\x1b\x60\xe4\x1a\x62\xf2\xa2\x68\xbf\x10\x85\xf2\xab\xe8\x1f\x45\x14\xad\x44\x93\x16\x4f\xce\xab\x72\xbe\xf4\xf8\x7c\x89\x93\xa1\x3f\x22\x14\x85\x43\x7f\x24\x36\xaf\x85\x8a\x17\x10\x86\x12\x0c\x63\x12\x70\x35\x61\x4a\x82\xa1\x33\x82\x39\x89\x51\x02\x63\x98\xe2\xbd\xb2\x97\x9a\x39\x9f\x60\xe6\xe4\x1c\x8d\x61\x0a\x73\x0c\x73\xf2\x0a\x15\xb5\x1b\x1f\xce\x71\x7d\x2e\xbe\x14\x1a\xc9\x84\xcc\x33\xb7\x35\xf3\xa1\x3d\x3a\x21\xe3\x63\x3c\xb7\x92\xb9\x3f\x65\x08\x43\xa3\x31\x11\x90\xc7\xf3\xe1\xa4\xe1\x8c\x4e\xa7\xfc\xe3\x32\x5a\xaa\x4f\x1c\xc1\x52\xd9\x6f\x4b\x0a\x26\xa6\xa3\xd7\x8c\x4c\x44\xd5\xd0\x92\x2c\x78\xed\x86\x23\x6c\xdd\xda\xc4\x3f\xb5\x07\xf3\xa1\xdf\x70\x46\xee\x18\x96\xd6\xad\x43\xfc\x93\x09\x4f\x19\xb9\xd3\x2d\xb6\x8c\x4f\x08\x8a\x08\x67\x0e\xae\xd5\xa2\x13\x32\xad\xd5\x16\xc3\x14\xcd\x21\x02\x1b\x26\x78\x24\xbd\x56\x84\xba\x7e\xb1\xc8\x15\x37\xe9\xe7\x98\xe8\x37\x7d\xd4\xa7\xad\xb5\x35\xa2\xc4\xc8\xe0\x34\xd7\x93\x03\xe6\x5e\x20\xbe\x90\xc1\x2e\x5d\x43\x68\x4d\xa2\x85\xe7\x87\x55\x62\xb4\x8d\x91\x55\x61\xa4\x03\xea\x5e\xa0\xa1\x50\xfb\xe8\xd0\x19\x8d\x04\x6e\xc6\x71\xb3\x79\x4c\x93\x79\x14\x4c\x92\xa7\xe1\x8f\x77\xe1\xdf\xf4\x5d\x34\xb8\x40\x45\xc8\x47\xf7\x82\xeb\xef\xa1\x50\x12\xc2\x35\x7c\xda\x1a\xdc\x73\x7d\x40\xea\x7b\x13\xac\xa9\xac\xe2\xab\x1c\xdc\x85\x5d\x43\x78\xd2\x54\x83\xb3\x19\x0b\x97\xa7\x60\x03\x15\x9a\x0c\x3b\x25\x8e\xfe\x29\x6c\x38\x23\x08\x1b\x0e\xff\xac\xa6\x0f\x82\xc2\x86\x83\xeb\x0c\x22\x52\x76\x51\xe2\x11\x91\x25\x1a\x41\x04\xc5\x42\xd1\x33\x91\x4c\x36\x9d\x11\x44\x26\xc7\xd4\xf0\x70\x1d\xf9\x8d\x08\xaf\xd7\xf0\x71\xab\x22\xf9\x5a\xf9\x52\x55\x1e\x26\xd8\x4a\xa2\x98\x71\x45\x5e\x9b\x42\x85\x67\x08\xd4\xac\xa3\x4f\x88\x82\xd5\xeb\xe0\x86\x78\x68\x76\xb0\x36\x18\xe6\x3a\x53\xc3\x39\x6c\x09\x9f\x4d\x5f\x77\x15\xb8\x85\xba\x65\x75\xea\x0b\x44\x1f\xc4\xf6\xf2\x29\xba\x6b\xb5\xb6\x16\x09\x8d\xb3\xa4\xad\x45\x1b\xda\x5a\x9c\x81\x6d\xc3\x84\x4a\x75\x2a\xa9\x67\x5b\x28\x59\xd1\x1e\x8f\x61\xde\x04\xcd\x0a\xd8\x2b\xd6\x70\xef\xab\x2b\x5b\x54\xd5\x27\xa1\xa8\x2e\x78\x95\x2a\x7a\xc4\x97\x46\xba\x8a\x1e\x8d\x30\x1e\x34\x1a\xbe\xeb\x99\x24\xde\x2b\xd7\x24\xdc\x54\xc7\x33\xe2\xb4\x1c\xc2\x61\x79\x26\x67\x87\xfe\x1a\xde\x54\x52\xb8\xd1\x18\xb9\xe7\x9d\x2d\xf2\xfc\x6d\xf2\x56\x2b\xe5\x61\x27\xc6\x7b\xdb\xac\xae\x26\x50\xcf\x93\x5d\x1f\x43\x5e\x2e\xc3\x56\x07\xaf\xe1\x6d\x69\xb0\xc8\x9d\x94\x41\x85\xf0\x70\x6e\x66\x25\x7a\xa6\x10\x01\xf5\x59\x0c\xbb\x71\x69\x82\x3a\x6e\x34\xfc\xdc\x6f\x0e\xe3\x8b\x16\xca\x07\xd9\x6c\xb6\x68\x34\x98\xf8\x1a\x0f\x1b\x0d\x6f\x44\xc2\x92\xab\x33\xf8\xe1\xff\x1b\x69\x2e\x16\x02\xff\x4d\xd2\x5c\x14\xa0\x49\xf3\xdf\x1b\x95\x2d\x56\xfb\xf9\xaa\x3a\xd4\x58\x1b\xe3\xe3\xb8\xd1\x38\xc6\x21\x5f\xda\xd3\x21\x1b\xc6\xa3\x91\x86\xed\xf5\x06\x36\xa1\x5a\x17\xe3\xaf\x12\x44\xb5\x90\xb5\x45\x08\x00\x6f\xa4\xad\xd2\xe5\xa6\x43\x88\x45\x4d\xe2\x63\x8c\x18\x57\xb5\x79\x1d\x12\x7c\x62\xaf\x56\xf6\x01\xe1\x4a\x05\x88\xd3\x6c\x94\x10\x1f\x3c\x12\xe5\xd5\x11\x71\xb9\xc5\xd7\x81\xa7\x62\xa8\xaf\xd7\xf0\x8f\xad\xa1\x2e\x5f\x9d\x08\x52\xb2\x09\x63\x90\xd1\xe9\xc6\xb8\xc1\xa9\x90\x14\x0d\x6c\xd7\x64\xf8\x98\xaf\xf8\xe4\x48\x1f\x7b\xe1\x24\x5a\x20\x5c\x8f\x1a\x8d\x95\xd8\x12\x19\x46\x26\xe3\x13\x22\xff\xe1\x82\x26\xdf\xf8\x0f\xc9\xed\x01\xe8\x1a\x3e\x3f\x3e\x70\x34\x1c\xce\x9b\x8a\x5e\xe9\xf3\x91\x80\x2f\x53\xa8\x54\x26\x50\x64\x92\x8d\xbe\x98\x83\xf0\x56\x17\x7a\x98\x5c\x60\x4a\xc8\x62\x01\xf5\x2b\xd9\xd8\x8a\x3f\x40\x85\x64\x6b\xcb\x95\xc2\x65\x60\xc3\x81\x98\xfc\x80\x28\xfc\x85\x37\x85\xc1\x34\x19\x6f\xa7\x0c\xd6\xcf\xba\x2a\xef\x52\x9b\x6b\x3a\xd9\x75\x87\xd1\x48\xb4\xa8\xd6\xe7\x42\x6d\x01\xf1\x57\xe9\xda\xb4\x24\x4a\xa8\xbf\xbf\x54\x04\xb3\xf8\x15\x15\x0e\x28\xd7\x7b\xd9\xe6\xa4\x9f\xd0\x71\xe5\xed\xcf\x54\xdb\xc1\x14\x40\x9f\xfc\xd9\xbc\x12\xd2\xdb\x84\x7c\x4b\xa7\x95\x80\xda\x85\x64\x2f\x19\xcb\x70\xc8\x55\x70\xe1\x26\xc2\xa8\xf2\x7e\xb2\xaf\xed\xc1\xc6\x51\x52\x79\x07\x56\xbf\xc3\x4c\x1f\x2a\x73\xae\x03\x5e\xfb\x9e\xd0\xb5\x1e\xbe\xd4\x2c\xdc\x7f\x56\x56\xf4\x5a\xbb\xb9\xec\x27\x2c\x9a\xc5\x5e\xe5\x0d\xe0\x77\xda\x0d\xdc\x4c\x25\xfc\x21\xa6\x74\xb2\xf0\xc2\x97\xbe\x37\x8e\x42\xbf\xb2\x56\x1f\x2b\xf2\x9d\x8d\x23\x56\x49\xcc\xd7\x2a\x60\x96\xc6\x33\x5a\x89\x5b\xbb\xd5\xbc\xf0\x6e\xab\x20\x5e\x6a\x10\xd4\xab\xe4\xd2\x7b\x1d\x64\xe2\x57\x03\xbd\xd1\x81\xe2\x59\xe5\x3e\xbb\x76\x87\x79\xe1\x57\x62\xd1\x6e\x31\x2f\x3d\x3f\xae\xac\x53\xa0\xc1\xd0\x78\x91\xb2\xc7\xf6\xf4\xff\x4a\xbd\x90\xf9\x41\x25\x98\x76\xad\x3b\x96\xbe\xcc\x1f\x3c\x5e\x48\xc6\xd5\xb5\x7f\xad\x81\xcc\xd3\xe9\xb4\xba\x30\xed\x0e\x76\x92\x56\xca\xd0\x67\xad\x79\xfd\xf1\x55\x65\xfd\x9f\x97\x61\xde\x84\xe3\x58\x79\xd8\xde\x86\xbd\x2a\xc3\x9e\x31\x5a\x79\x79\xfc\x5c\x03\x13\xb6\xf0\x51\x52\x59\x81\x5f\xb5\x4b\xe2\x5e\xec\x8b\x68\x2e\x15\x60\xcb\x02\xec\x6f\xbf\xb2\xc0\x5f\xbe\xed\xc0\xc4\x98\x33\xb6\x74\x0f\x0f\x6f\x6e\x6e\xac\x9b\x96\x15\xc5\xb3\x43\xe7\xe8\xe8\xe8\xf0\x76\xce\x16\x81\x01\x3e\xb9\x4f\xae\x67\x6e\x05\x54\xd3\xb6\xed\xc3\xe4\x7a\x66\x80\x00\x75\x43\xb8\x0d\xfc\xf0\xaa\x0a\x54\x22\xe4\x5f\x0d\xb8\x5d\x04\x55\x20\xbf\xbd\x7b\xcb\xc1\xfa\x87\xa1\xb7\xa0\xc9\xd2\xe3\xb5\xbf\x5d\x04\x61\xb2\xb3\x68\xf1\xf5\xd0\x58\x43\x54\x15\x50\xc1\x24\x86\x01\x5c\xdd\x10\xae\x5f\x3f\x4c\x91\xe1\x1a\xc5\xde\xf0\x29\xb1\x6b\x35\x43\x60\x30\x0e\xc4\xde\x1c\x95\x1b\x9f\x62\x07\x06\x0b\x53\xf4\x2c\x25\x36\x1d\x8c\xc1\xdf\xbc\xe4\xc0\xf0\xe0\x5e\xd0\xe9\xfa\x43\x36\x82\x20\x1a\x7b\x81\x4b\xd7\x7c\x4d\xec\x55\x10\x14\x15\xe7\x7b\x88\x59\x02\x7a\xf0\xa4\xad\x55\x79\x9c\x77\x13\xd2\xf8\x65\x65\x60\xf7\xf7\x67\x88\x5a\x82\x10\xa0\x12\x2f\x5e\xaf\xab\x0e\x48\x37\x36\x6a\x18\xd9\xc6\x9c\x99\x22\xe6\x6d\xf0\xf9\xd3\x9b\x9c\x67\x44\x1c\x23\x31\x2b\x8b\x2f\xaf\xca\x2f\x01\x73\x98\xc1\x66\xe4\x79\x8a\xdd\x6d\x9a\x63\xa0\x78\xbd\xc6\x88\x61\x6d\x9a\x4e\x32\x4f\x02\xe9\xee\xc3\x0d\x3a\x48\x76\x19\x55\xff\x95\xd2\xf8\xee\x8c\x06\x62\x22\x44\x1c\x7f\x81\x3a\xc8\x61\x87\xf2\x24\x68\xfc\x50\x11\xc1\x93\x8a\x78\x2e\xb6\x0f\xd6\x6b\x98\x3e\x6d\x97\x5c\x60\x10\xb1\xcd\x69\x22\x33\xce\x2b\x89\xc8\x15\x9c\x5c\x7f\xd2\x2a\x32\xd1\xfc\xc0\x97\x1a\x8f\xd0\x8d\xc6\xdc\x6a\x4a\x42\x4b\xaf\xca\xb9\x76\x48\x6f\xa5\x5a\xaa\xde\xe5\x65\x1d\xa2\xce\xc5\x2f\x2e\x26\x1e\xf3\x2e\x2e\x08\x5b\x4f\x34\x17\x13\xf7\x9a\x7f\x09\x77\x02\xde\x72\x49\xc3\xc9\x8b\xb9\x1f\x4c\x76\xfb\xca\x96\x88\x2d\x5f\x44\xe5\x50\xbe\x90\xa9\x46\x84\xf4\xb9\x9d\x7f\x7b\xc8\x79\xf6\x0e\x54\x78\x0d\xa5\x06\x7a\x94\x96\x2d\x89\x81\xcd\x06\xfe\x36\x14\x99\x44\xc8\x7d\x40\x62\x7c\xa7\xf9\x8f\x5e\x64\x96\x16\x7c\x7d\x80\x4b\x21\xcb\xec\xf2\x71\x63\x94\xad\x28\x93\x93\xe0\xd8\x34\x13\x8c\x3c\xc2\x86\xc9\x08\x0f\x90\x57\x34\x48\x34\x4c\x46\x10\x0e\x93\x11\xf1\xb0\x1b\xf3\x5f\x2e\x38\x5c\x3c\xf8\x17\xb9\xe7\x78\x9c\x88\xa3\xc7\x02\x43\xad\x86\x7c\x99\xa5\xd8\x9a\xbe\xd6\x09\x03\x4f\x0e\x0f\xf2\xae\xc7\x98\xdc\x73\xe9\xce\x69\x9b\xe7\xb4\x95\xf6\x38\xa7\xb2\xb4\x84\xd8\xc7\xc9\xc9\x54\x16\x98\xe6\x05\x2e\x78\x81\x01\x59\x9a\x9e\xdc\x74\x4a\x21\xcd\x6b\x01\x09\x30\x0c\xc1\xbe\x1f\xee\x8f\x07\x82\xb2\xd4\x1d\x0f\x83\x11\x49\x75\x94\xf3\x0c\xe5\x78\xa8\xe1\x91\x15\x85\x04\x22\xcc\x59\x23\x58\xa1\xe3\x96\x1c\x12\xd8\x84\xa3\xf8\x5d\x4c\xaa\x26\x7b\x3c\xe4\x74\x8f\x08\x21\x69\xc6\xb4\x54\x63\xda\xdd\x93\x0c\x0c\x38\x27\x67\x95\xe7\x62\xe5\xbe\x5a\xab\x6d\x24\x64\xfe\xa9\x7f\xf1\xe9\xcd\x6a\x45\xf3\x41\xb7\x56\xa3\xe2\xb5\xf8\xaa\x0d\x0d\x97\x65\x9a\xac\x84\xdd\x05\xc2\x49\x54\x36\x69\xc9\xd8\x07\x0c\xaf\x56\x33\x44\x31\xff\xf2\x22\x5a\x2c\x53\x46\x27\x67\x1c\x14\x51\x61\x1f\x80\xab\xb2\x94\xae\xd9\x69\x65\xa8\xab\x9a\xc9\x32\xf0\x19\x3a\xfc\x73\xf5\x25\x31\x0f\x77\xdd\xab\xb3\xc6\x81\x97\x24\x6f\xfd\x84\xad\x56\xc2\xd1\x39\xef\x2b\x39\x28\x7f\x53\x11\x01\xc2\x68\x42\xf3\x01\x48\x0c\x59\xe4\x42\x3a\xd5\x7a\xce\x58\xec\x5f\xa6\x8c\x22\x43\x20\x33\xb0\x0c\xe4\x90\x63\xb9\xdd\xdc\x70\xb8\x11\x7b\xbb\xf2\xc4\x30\x93\xe3\xec\x28\x30\xb6\xbc\xc9\x04\xb1\x61\x38\xc2\xa5\xdb\x71\xdf\x82\x21\xa6\x8b\xe8\x9a\x6e\x22\xf9\x90\x45\x37\x60\xf4\x96\xbd\x88\x42\xbe\x00\x22\x86\xa1\xdf\x65\x53\x00\x7e\x18\xd2\xf8\xf5\xf9\xbb\xb7\xa5\xcf\x57\xd9\x67\x3e\x30\x9e\xf9\x97\x81\x1f\x66\xf7\x5d\xe4\xb8\xf3\x3e\x9a\x50\x4b\x1b\x76\x95\x67\x75\xed\xbc\x49\x21\x58\xc6\xf4\xda\x8f\xd2\x64\x27\x92\xd2\x20\xca\xf2\xc8\x37\x1a\xc4\xd4\x8f\x13\x26\x4a\xd1\x0a\x78\x81\x4a\xb3\x66\xf1\xe1\x5d\xf9\x56\x44\x81\x67\x8f\x72\x31\x97\xfc\xaa\xa4\xf9\xd3\xc6\x54\xf9\x10\x91\xd2\xdd\x3c\xff\x86\x0e\x1c\x65\xf4\xa4\xf1\x4a\xc3\xfa\xf1\x5f\xc4\x6a\x57\x61\x7d\xa5\xcf\x81\xde\xa4\x3c\xdb\x69\xf2\x9a\xab\x9d\x14\x9f\xd8\x79\x38\x18\xf9\x49\x6c\x5f\x66\x06\x97\x42\xd6\xad\xa4\x42\xb2\x75\xf1\xb7\xbe\x46\x7e\x88\x8c\x7d\x43\x6c\x8c\x4b\x16\xba\xdb\x4a\x66\x35\x01\x7b\x4c\xa8\xbb\x25\x1a\x78\x7f\x1d\x53\xc4\xc0\xf9\x37\xe8\x18\x47\x21\xf3\x7c\x3d\x70\xcc\xe6\x1c\xb9\x49\xca\x29\xb1\xd5\xe4\xf8\x95\xcf\x2c\x2f\xc5\xc0\x5c\x0c\x60\xef\xb7\xce\x29\xde\xa8\x14\xd0\x0f\xac\xb2\x9d\xc4\x98\x06\x1e\xa3\x93\x73\x2f\x9e\x51\xb6\x27\xcf\x66\x64\x44\x98\xd5\xaa\x5f\x8b\xb3\x78\x05\xd9\x98\xfa\x31\x4a\x7c\x89\x82\x8b\x1d\xe6\xe3\xa8\x98\x47\xa4\xcc\xe3\x75\x21\x32\x6f\x36\xe8\xc8\x0b\xcf\x8e\x31\xc9\xcb\xbd\x97\x24\x14\xa1\x47\x4b\x48\x74\x8d\x49\x60\xc8\xe3\x7f\xbe\x24\xfe\x5a\x2b\xe1\xed\xa3\x8a\xf9\xc5\x45\x14\x8a\x53\x23\x6d\x28\x82\x90\xd8\xd9\x7e\x5e\x3e\x12\x85\x27\x91\x30\x3a\x8a\x85\x7f\x2e\xa0\x16\x17\xce\x5a\x2d\x16\xbf\x07\x84\xc8\x84\xd5\x2a\x16\xca\x9f\x48\xe0\x0f\x03\x36\x34\x4d\x7f\x44\x62\x69\xa0\x28\x65\x4a\x44\xad\xe2\x03\x34\x0d\x69\x8c\x24\x0a\x88\xad\x40\xa5\x40\x6c\x8d\xbd\x25\x4b\x63\x8a\x8f\x4d\xd3\x1f\x64\x34\x10\xdf\x2d\xc5\xe3\xb8\x88\x42\xbd\xb2\x3f\x94\xcf\xbe\xbf\x6e\xdd\x17\x17\xe5\xe0\xc1\x7b\x37\x5f\x6d\xe4\x3c\x29\xab\x24\x05\x6b\x20\x20\xc2\x25\x3d\x78\xe2\x6c\x2d\xcd\x37\x0b\xc7\xc4\x86\x29\x49\x33\xee\x8c\xc5\xc4\x3e\xc6\xfe\x14\xa1\x84\xa4\xc3\xf1\x08\x8b\xd2\x48\xc6\x98\x5a\x4d\x2a\xc9\x24\x63\x0c\xd6\x25\xb8\x8a\x2d\x89\x64\x4b\x52\xb0\x25\xc9\xd9\xa2\xec\xe2\x27\x93\x47\xb2\x90\xa0\xc8\x44\x62\x0c\xd7\x91\x3f\x41\x89\x3a\x9c\x65\x2a\xaa\xd4\x16\x1a\x49\x31\x04\xbc\x43\x24\xe4\x9e\xbf\xb8\x2a\x8d\x53\xee\xca\x0a\x80\x0c\x74\xc1\x20\x2b\xcc\x0d\x40\x15\xe5\xc6\x6b\x48\x07\xa9\x1c\x82\x12\xec\xe6\xec\x24\xc3\x64\xb4\xae\xbc\x69\x93\xc9\x3b\xb5\x92\x28\x8d\xc7\x92\x17\xe4\x25\xbc\x24\x54\xc8\x7f\xc6\x2d\x15\x4a\x46\xde\xd8\xd6\x85\x3e\x47\xfa\xba\x2c\x06\x33\x69\xff\x1a\x5a\x2f\xd2\x84\x45\x0b\x81\x77\xaf\xe2\xf8\xd6\x1f\xc8\x50\x18\xbe\xf0\x14\xe9\x22\x9e\x65\xb2\xb1\x14\xe6\x79\x91\x21\x7e\x0c\x0c\xf1\x00\xf9\x96\x1f\xfa\x4c\xa6\x33\x88\xad\xcb\xf4\xf2\x32\xa0\x89\x10\xe0\x70\x4c\x03\xef\x32\xe0\xa5\x5b\x13\xca\x3c\x3f\x20\xb1\x7a\xc0\x6e\x39\xe3\x81\x03\x07\x7c\xf5\x4f\xc5\x3d\x60\xbe\x72\x93\x5f\x7c\xbc\x36\xd2\x50\xc6\x1b\x99\x14\x21\x70\x0b\x2d\x0d\x19\x51\xb8\x88\xd2\x84\xd2\x90\xd1\xd8\xf0\xc3\xfc\xdb\xe6\xfa\x79\xb5\x42\x5f\xc9\x7d\x01\xeb\x1a\xe2\x39\xba\xa6\xb1\x01\xe2\x31\xa0\xde\x35\xcd\x92\x53\x66\x64\x56\xf7\xff\x20\x43\x3e\x7c\x8e\x8a\xf1\xf3\xb3\x1e\x23\x6c\x16\x47\xe9\x32\xc9\xd5\x28\x39\xed\x25\x84\xe9\x37\x8d\x4a\x6b\xce\xcf\x68\x38\xdc\x45\xe5\x68\x04\xff\xc0\xeb\xcf\xda\xec\xf7\xeb\xae\xd5\xe0\x67\x48\xc4\x6a\xa8\x34\x2b\x14\xed\x9a\x33\x8b\x8a\x5d\x96\x54\x58\xda\x17\xa7\x02\x3a\xed\xb0\xf3\xb8\x48\x99\x55\xc6\xc2\x1e\x22\xcb\x2c\x4d\xaf\xd8\xd0\x1f\x41\x40\xf2\x28\x49\x63\x12\x0e\x7d\xfd\xd4\x20\xc0\x30\x25\xf6\xf1\x54\xac\xad\xa6\x58\x98\x52\x4c\xc5\x42\xc5\x23\x6a\x30\x8f\x20\x2a\x86\xf1\xa9\x3a\x17\x32\xb2\x14\xde\x9a\x11\x07\xd7\x56\x1a\xf9\x23\x86\xf1\x70\xca\xd7\x57\x7b\x25\xce\x86\xe5\x56\x10\x51\xf8\x38\x93\x36\x57\x98\x3b\xf9\x34\x7e\x32\x9f\x86\x23\xf0\xf9\x9f\x88\xd8\xc7\x91\x60\x51\x84\xf5\xc5\xa6\x30\xeb\x4d\x0b\x06\x05\xc4\x3e\x0e\xc4\x32\x31\xe0\xcb\xc4\x64\x18\x48\x8b\x45\xa5\xa7\x48\x8e\x78\x50\xd4\x16\x02\xce\x11\xf0\x55\xe4\x6c\xbc\x55\x55\x1f\xaf\x41\x46\xe9\x78\x5a\xdd\xa6\xff\x51\x19\x90\x12\x90\x10\xaf\x30\xe5\x0d\xa5\xa9\x8d\xaa\x6a\x22\xab\x1a\x11\x4f\x56\xb5\xaa\xd1\x03\xf0\x70\xad\xa6\x06\xca\xe8\xd1\xc6\xe4\xb9\xdc\xad\x43\xca\xc2\x55\xc4\x52\xa3\x5c\xde\x07\xf0\xff\xa6\x08\x63\x18\xf3\xc9\x5c\xa4\xd0\x52\x08\x3d\x8a\xef\x97\x43\xd3\x1c\x8f\x08\x5d\x63\x58\x66\xd7\x3d\x09\x1b\x5c\xbb\x0b\xbe\x0e\xd1\x09\xe0\xda\x80\xc6\xb2\xbd\x1d\x8c\x8e\xcb\x26\xec\x79\xdf\x8f\xd7\x05\xf3\xbd\x62\x81\x5f\x36\xce\xe2\x5c\xd4\x5f\x83\xf2\xeb\x98\xd8\xc7\x63\x61\x9f\x34\x96\xe3\xfb\x94\xf8\xc3\xf1\x08\xe6\x24\xe2\x3f\x85\x4d\x15\x2c\xb3\x4e\x36\x85\x69\xad\x36\x2d\x58\x3e\x06\x1f\xc3\x1d\x59\x66\x80\x33\x31\x5b\x6b\xc5\xdc\x61\xb8\x24\xc9\x66\xda\x5e\x88\xa6\x30\x87\x19\x5c\x42\x50\xfe\x36\xc1\xb0\x04\x56\xd4\xed\x02\x6e\xe0\x15\xb1\xe1\x96\xd8\xc7\xaf\x4e\xee\x8e\x4d\xf3\x15\x57\x0b\x2e\xc8\x6c\xf8\x6a\x24\xb5\xac\x57\xa7\xe4\xb6\x56\x43\xb7\xe4\x95\xe9\xe0\xe3\x03\x74\x43\x2e\x87\xb7\x5c\x46\x4c\xf3\xf6\xe4\xee\x18\x1f\x5f\xa8\xfd\xb2\x9b\xd5\x4a\xac\x7a\x94\x5d\x15\x92\xcc\xfa\x8c\x12\xf0\x31\xb6\x2e\xc4\x48\x4e\x52\x48\xac\x0b\x7a\xeb\x33\x3e\xdb\xaf\x41\x0e\xef\x15\xa7\x78\x22\xa7\x6c\x41\x01\xb3\x5a\xe9\xcd\x69\x2d\xbc\x25\x9a\xe3\x2d\x99\xe3\x88\x1f\xc3\x76\xeb\xb3\xa7\x21\xe3\x7a\xfd\x8e\x30\xa5\x52\x3a\x39\x5d\x08\x2b\xc9\xcb\x04\x8e\xe3\x47\x45\xe7\xd8\x61\x7c\x85\x42\xec\x86\x6a\xad\x2a\x1d\x3c\x81\xb4\x25\x60\xf2\x1a\x82\x08\x27\x9f\x1d\x97\x47\xd9\x82\x1a\xbb\x31\x8a\x30\x84\xb5\x9a\x3f\x08\x2d\x71\xee\x85\x7c\x6c\x45\xf1\x84\x13\xe2\xfa\x6b\x10\x69\x6e\xa5\xa9\xc7\xe6\x10\x42\xf3\xe7\xb0\x18\x4e\x7c\x12\x17\x96\x17\xb9\xaf\x03\x3e\x7c\x81\xa7\xdf\x3e\xe0\xba\x96\x7d\x9c\x08\x35\x3b\xc9\x47\x9a\x14\x02\xb1\x55\x04\x63\x12\xf3\x9f\x29\x09\x8a\x5d\x32\x2f\xdb\x69\xca\xf6\xc7\x60\x42\xec\xe3\x89\xd0\x45\x27\x18\xa5\x24\x18\x4e\x46\xab\xd5\x78\x38\x11\x63\xed\x7c\x38\xc9\x77\xbc\x8e\x93\x93\x50\x14\x24\x70\xf0\x12\xca\x83\x8f\xb7\xd5\x76\x82\x25\xd5\xe1\x5b\x4b\x6c\x50\x47\xee\xb4\xd8\xc2\x28\x9d\xb2\x0b\x53\x94\x21\xe3\x13\x87\x5f\x5c\xc7\xf0\x88\x3f\x8c\x46\xc7\x8d\x46\x24\x6c\x5b\x50\x28\xde\xc5\x6c\x59\xab\xb5\xff\x0c\x77\x2e\xb2\xf8\xf8\xe9\xed\x5c\x6c\x87\xe0\x09\x2e\xe7\xc2\xc3\x84\x47\x90\x24\x8a\xcb\x7a\x43\xae\xab\x30\x3d\x72\xd1\x3e\xab\xd5\xe2\x01\x45\xac\x18\x3d\xe2\x62\x06\x76\x0f\x58\xe3\x20\x5e\x53\x71\x93\xef\x4e\xbf\x6a\x52\x62\x47\x58\x34\xbf\x5f\x6e\x6e\x39\x73\x86\x62\xe6\x2c\xed\xd3\xc6\x5b\x53\x27\x67\x86\x96\x39\xcd\x46\xc2\x54\x8c\x84\x62\x3a\x1d\x0b\x6e\x89\xb1\xc9\xc3\x7b\x81\x34\x55\x62\x78\x5d\x6a\x55\x7f\xa3\x55\x33\x39\x5f\x03\x1f\x2b\xb7\xef\xa3\x15\x51\x1d\xed\x5c\x3e\xf4\x34\xd9\x4d\xa9\x52\xca\xc5\xee\xfe\x46\x54\xcd\x35\xf0\x15\x7f\x45\xd0\xd7\x1d\x33\x15\x97\x1e\xbd\xb1\x36\x26\x2c\x7c\x4f\x87\xa6\xc9\x64\xc1\x6b\x11\xa2\x8d\xe3\x7f\x92\x58\xda\xba\x54\x32\x31\xa3\xb3\x42\x2c\xa5\x50\xfa\xc4\x86\x28\xb7\x1c\x3e\xf6\x45\x6f\x54\xf1\xde\x3c\x31\xc1\x0b\x4b\xf8\xdc\x62\x6d\xad\xef\x4d\x01\xaf\xc4\x76\x4d\xed\x07\xeb\x63\x9a\x54\xd6\x83\x2e\x96\xe5\x70\xc0\x32\xd7\x81\xdc\x1d\x8a\x26\xc2\x31\x10\xcf\xfd\xb4\xb1\xc8\xd6\xc6\x20\x71\xa3\xc9\x34\xe3\x92\xa9\x0b\x1b\xc6\x23\x65\xc8\x94\x9f\x04\x78\x42\x6b\xf1\x30\xf2\x49\x24\xaf\x94\xa8\x59\xd4\x07\xbf\xe8\x04\x1e\x44\x1b\x1d\xca\x63\x2c\x76\x2b\x0c\x84\xe4\x79\x24\xe7\xd8\x86\x0d\xed\x49\xb3\x34\xee\xcb\xea\xe5\x67\x80\xea\xe0\x32\x2c\x6d\xc5\xbe\x3f\x43\xb1\x3a\x81\x54\x00\x7c\xbc\x2f\x6d\xd6\xc6\xb9\xb8\x17\xac\xce\x8c\x91\x06\xf1\x93\x8e\x43\xb5\xe5\xb8\x5e\xf2\x37\x9f\x7d\x56\xe1\x11\x67\x36\x6e\xa5\xb1\xf3\x36\x71\xda\x16\xfb\x86\x44\x71\x55\xb5\x32\x8c\xed\x5e\x36\xbb\x3d\xb1\x12\xea\xce\x68\x99\xc7\x1b\x40\x10\x97\xeb\xfa\x9f\x26\x4b\x1c\xdb\x6e\x92\x21\xee\x3d\xae\xd7\xee\x53\xb9\xf2\x94\x7a\xb0\xa7\xd4\xa3\x8a\x12\x26\x0e\x90\x63\x60\x22\xae\x20\xbb\x0b\xe8\x96\x06\xb3\xc3\x50\xfc\xd4\x19\x54\xc8\xe1\x13\xe4\x46\x9e\xa8\x48\x4e\x69\xee\x0e\x77\x09\xcf\x0e\x72\x36\xda\x27\x7c\xa4\x7d\xc2\xc1\x43\x65\xbb\xda\xc7\xa4\x38\xb7\x41\x14\xc2\x6d\x11\xa9\x26\x62\x27\x06\xb1\x83\xb9\xc6\xe2\x29\x93\x15\xc3\x70\x63\x8c\xdd\x4b\xa4\x8d\x0f\x40\xf1\x1a\x96\x2a\x5f\x75\x5b\xfe\x27\x9a\x40\xdb\x63\x14\x81\x7e\x1f\x67\xfa\xbf\xde\x25\xca\x65\xb9\xea\x97\xc4\x4f\x94\x55\x11\xd4\x59\xb1\x0e\xab\x36\x92\xbc\x12\x81\xa2\xc5\xce\x3a\x9d\x54\x8e\xcc\x17\x52\x47\xde\x35\x38\x17\xf3\xe2\x8d\xde\x04\x38\xdb\x17\x8e\x0b\xf5\xce\x57\x37\x0a\x0f\xb8\x96\x26\xb7\xea\x51\x3c\xf4\x47\x99\x39\xe6\x41\x36\xa1\x1f\xd8\x15\xc3\xf3\xbf\xc4\x5c\xb4\x83\xaf\x83\x5b\xf7\x4c\x46\xff\x15\x76\x1f\xee\x63\x4d\x7d\xab\xc1\x3e\x0c\x79\x56\x40\xe6\x83\x01\xa3\xb7\xac\x2a\xdb\xd6\x85\x91\xa2\xba\x99\xe5\xc7\x07\xb7\xaa\xe2\xf4\x11\x72\x33\x4f\x11\xd5\x32\xb5\x75\x10\x98\x89\xbb\x61\xb8\xec\x69\x13\x96\x9e\x9b\x0a\xb9\x2a\x4b\x95\x0e\xb0\x06\x61\x8f\xf5\xaf\xd5\xff\xf9\x7f\x57\xfd\x8b\x73\xce\x6f\xaf\x7d\x91\xb7\xb2\xee\xf9\xe7\x35\xc4\x9e\x9f\xec\xf4\xe8\x28\x2a\x7a\x85\xd7\x20\x82\x3d\x3c\x08\x75\x8e\xd7\xca\xa8\xa5\xe2\x98\x6d\xc7\x1d\x23\x4f\x73\xe1\xa0\xe6\xab\x80\x8e\x19\xda\x51\x4e\xe9\xf0\xb6\x9a\x73\x78\x9d\xdb\xc4\x54\x0e\x15\x0f\x10\x02\x61\xce\xe7\x17\xd5\xe3\x24\x73\x53\xc4\xbe\x85\xe0\xd2\x02\x6e\x57\xc0\xfe\xb0\x3a\x5d\x6e\x97\x88\xfa\x6c\x9e\x5e\x56\x70\xff\x1d\x5f\xf7\x04\x51\x48\x77\x9e\x2c\x2a\x4a\xe9\xe0\xa3\xfb\x49\xee\xbf\xa5\x8b\xa7\x4b\x7c\x36\x55\x69\x7b\xba\x40\xcb\x32\x95\x7d\x58\x43\xb4\x63\x63\x44\x98\xf9\x57\x9a\x76\x54\xda\x44\x88\x9d\x97\x0a\x59\x32\xc4\xe2\x27\xb7\x52\xb4\x36\xad\x14\x35\xdb\xc4\xd8\x74\x30\xd0\xb2\xa9\x22\xa8\x53\x20\x79\x00\xc4\xa7\x9c\xb5\xda\x63\x29\xb6\xf2\xf6\x84\x39\x7e\xc5\x64\x22\x67\x93\x84\xb0\xc1\x0f\xee\x5b\xd0\xaf\xb8\x1d\x38\x5c\x82\xec\xe3\x50\xec\xe9\x85\xb8\x68\x9b\x04\x45\xc3\x70\x24\xef\x24\x97\xd6\x1a\x32\x78\x70\x99\x87\xf2\x08\xb3\xbc\x69\x62\xc3\x38\x5f\x41\x1f\x07\x27\x63\xb1\x1b\x2b\xef\x9a\xd8\x7c\x71\x3d\x0c\x46\x79\xb1\xfe\x14\x89\x15\x4f\x58\x9c\xda\xa5\xea\xd4\xce\xcf\x4e\xed\xd2\xd2\xa9\x5d\x2a\xcf\xd0\xa4\x67\x43\x8f\x95\x16\x65\x9b\x66\x64\xff\xc6\x3c\x97\xd9\x26\xab\xc9\x07\x76\x76\xe0\xc7\xd5\x85\x2d\x54\x38\xd7\x1b\xd4\x59\xf9\x5f\xe4\x57\xf8\xa5\x42\xd4\x8c\x44\xb8\x1f\xd5\x3b\xff\xd6\x39\xce\xa6\x85\xdb\x68\x04\xbb\x0f\x79\xa4\xcb\x20\x9e\x9f\xca\x03\x1f\xf8\xbd\x4a\xc2\x7f\x41\x7c\x84\x91\xeb\xcf\x5d\xb8\xf8\x34\xfc\x4f\x62\x17\x67\x53\x3f\x95\xb7\x28\xbf\x2b\x8e\xa1\xbe\xcb\x86\xf9\x0b\x62\xfc\x5f\x86\x89\x4c\xf3\x9f\xb8\xf0\x2d\xdd\xea\xe2\xf5\x77\xda\x59\xd3\x4f\xbb\xce\x9d\xbe\x83\x19\x65\x0f\x2e\xc1\x8f\x0f\x10\xdb\xf7\xc3\x7d\x8a\xa5\x5a\x24\x8c\x7c\x8b\x1d\xaa\x4c\x2d\xca\x2f\xd7\x0c\xd9\x68\x0d\x09\xdd\x1c\x7b\x8b\xcf\x02\x2b\x57\xf4\xaa\x4c\x32\x4a\x86\x10\xa2\xd8\x5a\x4d\x69\x95\x79\xd6\xc7\x1d\x05\x5f\x28\x19\xf8\x99\x54\xed\xa4\x00\x23\x2f\x8f\x29\x61\xfa\xd9\xec\x31\x66\x84\xe6\x3d\x73\x0d\xbf\x55\x3a\xcb\x50\xf6\x66\x67\xbf\xfc\x33\x3f\x87\xa4\xc2\x67\x81\x3a\x52\x3d\xfb\xe5\x9f\x1f\x23\x3f\x64\xd9\x12\x65\x33\x5d\xdb\xf6\xb5\x6e\x09\xb3\xc6\x81\x4f\x43\xf6\x1b\x84\xd6\x5d\xfe\xf6\x3b\x0c\x51\x48\x42\x6b\xe1\xb1\xd8\xbf\x3d\x8f\xbd\x30\x99\x46\xf1\x42\x5a\x72\x9d\x8d\x63\x4a\xc3\x17\xe7\xef\xc4\x04\xae\x6e\xfd\x63\x6c\xdd\x72\x14\xd2\x44\xd7\x27\x02\xf2\x1f\x51\x2a\x6e\xa3\xbc\x10\x48\x3f\xf1\x71\x3f\xf7\x64\x91\x17\xdc\xf0\x85\xeb\x99\x06\x55\x09\x6f\xe9\x94\x41\x4e\x48\xc3\xb7\x58\xb4\xcc\x3f\x9e\x47\xcb\xd1\x1a\xfe\xa8\x30\xd3\xfe\xb9\xa8\x17\xb3\xc6\x73\x2f\x9c\xd1\xc9\x79\x94\x8e\xe7\x34\x11\x43\xf1\x66\xe2\xd0\x1e\x61\xf8\x4d\xd9\x9e\xfe\xf8\x4d\x7d\xb4\xba\x8b\x4a\x0b\xd2\x27\x75\xd2\x4c\x65\x1b\x8e\x5c\x2a\x7b\x2b\xa5\x5b\xb7\xd2\xb6\x46\xfd\x96\x18\xdf\x19\x88\xba\x6e\xd4\x46\x0b\xfb\xa6\x36\xdc\x58\x6e\xe3\xe1\xda\xf9\xa6\x9b\x72\x5a\x21\xee\x3e\xfa\x13\x1a\x32\x7f\xea\xd3\x98\x10\x12\x67\xa3\x30\xe7\x48\xb1\xb7\x2b\xf7\xe0\x18\x7d\xc0\x23\xd0\xcf\x22\xdc\xc3\x06\x11\x6a\xaf\x4c\x23\x61\x63\xa7\x36\xdf\x3e\xf3\x87\xf1\x88\x88\x66\x18\x6a\xfe\x80\xfc\xfc\xf6\x96\x94\xdd\xaa\xdb\x12\xbf\xeb\x77\xa3\xa8\xb7\xe3\x06\x95\x76\x73\x4b\x6c\x5a\x54\xc1\xfc\xa4\xdf\x07\x62\xe3\x39\x7d\x2c\x56\xa4\x38\xd0\xaf\x82\xf9\x43\x8b\x57\x59\xdc\x86\xd8\x86\x8b\x2a\xe0\x2a\xaf\xb5\xe8\x17\xc0\x44\x07\x10\x5d\xb8\x0a\xf2\x37\xed\x1a\x8d\x90\xc8\x47\x7c\x76\xe5\xa7\xd8\x55\x70\x3f\x6e\xc2\xed\xb8\x2a\xf6\xd7\x26\x5c\x75\x23\xa4\xdb\x60\x3b\x0a\x1e\x6b\x90\xec\xae\xfa\xc2\x90\x16\x14\x53\x08\x5e\x15\x0c\xa5\x1b\x40\xd5\xec\x65\x1a\xd8\x8d\x1f\x4e\xa2\x9b\x47\x3c\xad\xd1\xeb\x1d\x77\x8a\xb4\x1b\x63\xe3\xc2\x2a\x66\xc7\x1d\xac\x27\xc5\x8c\x8c\x91\x83\x37\xa2\x3f\x66\xee\xc1\xa4\xbf\x2f\x5a\xa7\x5c\x55\xac\x67\x53\x06\x42\x4e\xa3\x55\xa7\x66\xab\x1e\x35\x3c\x5c\x67\x26\x6a\x37\xba\xf5\xc8\x6c\xd5\x3d\x5c\x8f\x4d\xe4\x98\xd9\x57\x91\x12\x9a\x5e\xdd\xc7\x87\xdd\xb5\xc4\xf6\xf0\x62\x2e\x63\xab\x7e\x31\xc3\xab\xd6\x8b\x34\x23\x40\x33\xae\x33\xcd\x8c\x28\xd1\xa7\x31\xd6\xa0\x85\xc3\x27\x8e\x2a\x3e\x75\xfa\xf6\x6a\x15\x9f\x34\x44\x2c\x80\x46\xab\x6b\xd7\x35\xd7\xe5\xf1\x61\xab\x6b\x63\x37\xc6\x6e\x84\x72\x4f\xec\xcc\xd5\xed\x90\xd3\x87\xf1\x6f\xe7\x94\x5e\x49\xf2\xfc\xb4\x30\x51\xac\xe0\x86\x23\x9c\xc0\x9b\x14\x0f\xd2\x92\xc7\xb6\xe2\x34\xbe\xb1\x73\xdf\x90\x12\xcd\xe1\x6f\x9c\x7b\xdf\xe1\xef\x1c\xac\x41\x21\x26\xce\x61\x5c\x88\x45\xe1\x3c\xb3\xc8\x68\x86\x75\xb9\xad\x27\xfc\xc4\xd1\xa2\x3a\x0c\x0f\x62\x97\x89\x0f\x9b\x12\x93\x59\x81\xc5\x08\x51\x15\x34\x14\x85\xd6\x54\xac\xc4\xad\x18\x10\x2b\x25\x32\x9e\x88\x21\x22\x22\x10\x32\x30\xe9\x94\x3a\x16\x9e\x77\x99\x74\x4c\x9d\xa2\xdc\x55\x25\xb0\xc2\x13\xe7\xa6\x10\xe8\xc6\xec\x31\xf1\x11\xc3\x40\xad\x19\x89\xe4\xc3\x25\xf1\xe4\x43\xe6\x95\x32\x11\xaf\x22\xaa\x42\x36\xf0\x59\x33\x6f\xb1\xf0\x08\x05\x7f\x5d\xea\x08\xe3\x2a\x01\x65\xfa\x5d\x72\x56\x78\x04\x2b\xa6\x9c\x08\x97\xcc\x22\xa2\xb2\x59\x44\x84\x95\xd3\x00\xfb\x38\x16\x53\x65\x8c\xfd\x32\x67\xf8\xec\x04\x1e\x9f\xac\x7c\x2b\x5e\xad\x6c\x48\xe4\xf3\x8c\x3f\xa7\xf2\xf9\x72\xb5\xca\x0f\xa6\x3c\x42\x91\xc7\xcb\xa4\x28\xe1\x65\x51\x94\x62\xf0\xf3\x0a\x3b\x55\x61\xa1\x7d\x2b\x26\x62\x07\xc0\xb7\x66\x44\x3a\x99\xb4\x2e\x85\x9d\x15\xf8\x82\x37\xeb\x71\xc5\x3a\xb4\xf0\xc0\xb7\xd5\x0a\xb9\x25\x40\x7c\x42\xec\x41\x4c\x6c\x57\xc4\x6e\x41\x31\x71\x80\x35\x1c\xec\x6a\xae\x4a\xe2\x3a\xe3\x2d\x2f\x5c\xdf\x09\x0f\x78\xa6\x33\xe2\x2c\x3b\xb5\x07\xd2\xe1\x89\xdb\xe4\xe3\x0a\x67\xdb\x09\x6b\x38\x3c\xd1\x6c\xf2\x44\xaf\x11\xe5\xd3\x36\x42\x71\x23\x3c\x64\xb8\xce\x20\x11\x0e\xb5\x52\xbe\x24\x82\x87\xc8\xde\x4d\xb4\x46\x1c\x42\xf1\x33\xe2\xe0\x13\x7b\x60\x9a\xb1\x1b\xe3\x8c\x56\x14\x9a\xbc\x1e\xcf\x98\xa2\x99\x3f\x24\x32\x5d\xa6\xa6\xf2\xa5\xc9\x5f\xaa\xa8\x14\x96\x67\x92\xca\xbd\x6d\x2f\x83\xc5\x3c\xd1\x20\xc2\xf5\x59\xe5\x20\xc7\xea\xb1\x3e\x2c\xce\x35\xcf\xdd\xf3\xaa\x8d\x9e\xb3\xbb\xc5\x65\x14\xd4\x6a\x46\x22\x1e\x36\x3f\x58\x3e\xa3\x31\x57\x67\xaa\x76\xee\x32\x55\xb4\x72\xf3\x8d\xd6\x6a\x0f\x14\x47\x4b\x91\x85\x09\xc9\xd3\x0f\xb2\xe7\x62\x7d\x36\xc8\x68\x73\xf3\x02\xf9\x90\xb1\x96\x5e\x96\x0e\x87\x0d\x73\x34\x40\x03\xf7\xcb\xc4\xfc\x62\x0d\xbe\x4c\xea\x2b\xf1\x63\xe2\x2c\xc8\x2f\xff\x2e\x62\xfc\x1e\xce\xca\xc1\x73\x27\x6a\xbd\x03\xc6\x4c\x44\xcb\xad\x58\xe0\x28\xbf\x7e\x13\x2b\xf0\x12\xf6\x26\x9c\xd0\x5b\xb2\xd4\x9e\x73\x97\x87\x43\xde\xba\xca\x2f\x81\xbc\x34\xca\xf8\xdf\x63\x14\x6b\xd1\xb8\x84\x83\x0b\x15\x77\x8b\x61\x7c\x8c\x85\x11\xaa\xd8\xb3\xc1\xa7\x91\x72\xa6\x29\x37\x65\x22\xf0\x31\x24\x43\x6f\x34\xe0\x7f\x4c\xe2\xbb\xc9\xd0\x34\xbd\x11\xf1\x31\xa0\x98\xc4\x7c\xc1\x40\x08\xe1\xeb\x22\xfe\x38\xd0\x40\xc3\x0c\x34\x74\x51\xf6\x94\x06\x01\x28\x2b\xb4\x7b\xdf\xf5\xe0\xd6\x9d\x4a\x13\x5b\xe1\xf6\x4b\xab\x51\xee\x8a\xe1\x84\x15\x4e\x4b\x35\xb2\x76\x12\x55\x6c\x07\x0d\xd2\xa1\x3d\x7a\x70\xa3\x57\x1b\x8f\x11\x93\xe1\x6b\x10\xcf\x64\xdd\xe2\x47\xb6\x71\x8b\x99\x1f\x31\x11\x5e\x2c\x33\xd0\x86\xaa\x05\x7b\xac\xf6\x9e\x98\xd8\x04\x4a\x86\x28\x26\xa9\xd8\x03\xf2\x47\x24\xb6\x6e\xb5\x7d\xd6\xec\x46\x82\x81\xd7\xfa\x25\xc9\x6b\xad\xf7\x5c\xff\x6f\xd8\x7b\xee\x84\xbd\xdb\x45\xc9\xe7\xa2\xee\x93\xe7\x5a\xdb\xd9\x55\xcb\xac\xd5\xca\xb8\x8c\xa2\x80\x7a\x9c\x2c\xe2\x0f\x22\xd1\x10\x46\x98\x2e\x2e\x69\x2c\x93\xa6\x6e\xb1\x5a\x25\x3e\x1f\xe0\xf3\xc9\xcb\x13\xd3\xfa\x00\x31\x12\x43\x80\xdd\x85\xcb\x74\xa7\xd9\xa1\xe5\x0d\x82\x72\xd2\x4b\x8f\xd1\x41\xd5\xc6\x03\xef\xc6\xfc\xe3\xde\xae\x41\xb1\x50\x5a\x62\x2b\xa1\xec\xdc\x5f\x50\xc4\x87\xc7\x10\x43\xbc\x5e\x6f\x78\xf2\x62\xb8\xaa\x90\xed\x55\x23\x1d\x68\x06\x5e\xf9\xb5\x5a\xd7\xde\xf0\x11\xb9\x61\xf8\xa5\x4d\xe7\xbe\x98\xce\x85\xef\xd9\x1b\x44\x87\xf1\x48\x2d\x35\x85\xc9\x56\xb6\x0c\x15\x33\x3b\x4f\xdf\x9a\x8e\x94\x70\xeb\xb8\x04\x30\x47\xa8\x89\xb3\x57\x3a\xd4\xcc\xad\x37\x99\xdc\xd4\xfc\x30\xd5\x85\x4b\xfb\x9a\x6d\x22\xe5\xb1\x59\x76\x71\xe5\x7e\x0d\x3e\xb9\x5f\xcb\x7a\xed\xfb\x52\x38\x0e\x08\xe1\x52\x1b\x89\xb6\xe6\x4d\x3f\x17\xd1\x6a\x10\x25\xf7\xeb\xcc\x54\x8f\x2f\xd3\x4b\x10\x8c\x43\x30\x01\xc1\xb0\x40\x45\x07\xe1\x26\x77\x5c\xff\x51\x86\x08\x22\xe4\xfa\x3d\x2c\xf3\xc2\x5f\xaf\xdd\x29\x56\x5b\x2b\xaf\xbe\x79\x46\xd5\xa3\xd7\xf1\xc9\x15\xaf\xd7\x70\x5b\x0a\x2e\x73\x46\xee\x85\x47\x86\xc0\x63\xf4\x37\xd7\x86\xfc\xe5\x77\xd7\x86\x38\x62\x1e\xa3\xae\x0d\xc9\x15\xbd\xe1\x5f\x93\xb1\x17\xd0\xdf\x5c\x47\x3e\xfc\xee\x3a\x6b\xf8\xb0\xb1\xdb\x92\x5d\xed\x55\xe6\x62\x90\x66\x4b\x2a\x4f\xf3\x1e\x4a\xeb\x9c\x1c\x26\x9d\x0c\x1c\x12\x0f\xd8\x21\xf1\x30\xa0\x94\xd0\x7a\x2c\xc4\xbc\x56\x43\x71\x83\xd0\x7a\x0a\x61\x83\xb0\x7a\x8a\x01\xe9\x5e\xe3\xe3\x7a\x6c\x86\xf5\x50\x20\x88\x0f\x49\x02\x21\xff\x93\x1e\x92\x04\x03\xad\x87\x27\xac\x1e\x0b\xab\xea\x06\x05\x46\x1a\x0c\x52\xd2\x48\xf9\x6c\xe7\x61\xd0\xeb\xeb\xeb\xf5\x8d\xb2\xfa\x6a\x9e\xe7\x19\x50\x5c\xbf\x55\xf5\xcf\xd3\x51\x2a\x12\x25\x33\xbc\x8c\x19\x89\xae\xba\x68\x61\xfa\xf4\x65\x84\xa6\xcb\xab\xb3\x18\x2a\x1d\x27\x9a\xc6\xbe\xe1\x1a\xc6\x7a\x53\x44\x8a\x8b\x3f\xf9\x2c\x9d\x4d\x72\x44\xcc\x68\x4a\x3b\xd6\x1a\x21\xf7\xc0\x2a\xa3\x01\x1c\x10\xe2\xaf\x56\xe1\x01\x21\xaa\x55\x52\xa2\xbc\x87\x19\x79\xe5\x91\x01\xf2\xf2\xbb\xfc\x89\xf1\x5e\x92\xcf\xb7\x69\xa3\x2d\x66\x5c\x2a\x4c\xda\x45\x42\x53\x24\x84\x10\xf1\x09\x87\x06\x09\x45\xfe\x6a\x15\x49\x5b\xc7\x4d\xc4\xa6\x6f\x32\x33\x32\x63\xbc\x46\x91\x55\xb0\x1e\xb4\x97\xdf\xc1\xd3\xbf\x78\xfa\x17\xae\x51\x6e\x2c\xf1\xb9\x74\xf1\x5a\xb1\x01\xa2\x0d\xc6\x97\xba\x03\x66\x12\x11\xb4\xa4\x41\xf9\x2b\x6f\x79\x91\x80\x35\xb5\x21\x96\x4f\x3e\x8a\xb1\x69\xc8\x86\xce\x6a\x1d\x62\x55\x23\xd1\xcd\x30\x76\x59\xad\x56\x09\x6e\x32\x33\x14\xf5\x90\x09\xe0\x65\x0f\xc9\x6e\x1a\x77\x50\x20\x24\x6a\x07\x01\x5b\xe5\x2b\xe0\xbc\x78\xf1\x0e\x9e\xfa\xdd\x2e\x3c\x94\xf7\xc5\x54\xeb\xc7\xab\x15\x3b\x20\x24\xcc\xe4\x28\xca\x50\x47\x1c\x35\x97\xdd\x8c\x0e\x03\xb2\x07\x6c\xe0\x3d\x2f\xa7\x3c\xc9\x45\x20\x96\x22\x90\x28\x7a\x99\xd0\xc2\xa4\x53\x35\x87\x88\x73\x33\xfe\x13\xae\x56\x55\x85\x98\xb1\x69\x80\x61\x86\x32\x38\x1a\xaf\x87\xe8\x41\xa0\x1e\xb8\x18\xa8\x14\x2f\x4b\x11\xcd\x1f\x11\x4f\x2a\x81\x95\xe7\x1a\x10\x73\x25\x36\x2c\x6e\xbb\x99\xa6\x70\x91\x9e\x0c\xb9\x86\xc5\x47\x60\xae\x31\xb1\x5d\x1a\xd3\x5a\xe8\x12\x57\xe4\x39\xaa\xd8\xb7\x0e\xa3\x90\xca\x88\xad\x67\x2e\xba\x5b\xad\xd0\x1d\xd9\xbc\x75\xa5\xfc\x7b\x18\x2f\xdf\xfc\x62\x60\x98\x91\x5d\x5b\xd6\x70\xa9\x7d\x2a\x6e\xae\x63\xb8\x53\x56\x47\x2c\x3b\x1a\x10\x37\x14\x2e\xb7\x2f\xa6\xcf\x4a\xa7\xe5\x77\x78\xd7\x3d\x75\x23\xc7\xc4\x09\x2a\xdd\x35\xbe\xd3\x8f\x4e\x7b\xd0\x70\xb2\x03\x5a\x03\x0c\x0c\x1f\x90\x29\x7c\x75\x9a\x74\xe8\x88\xbf\x4d\xf1\xb7\x25\xfe\xb6\xc5\xdf\xce\x08\xe3\x35\x18\xcb\x5b\xd8\x37\xf8\x0f\x36\xc0\x98\xd0\x19\x36\x30\x9c\x57\xb2\x30\xf7\x26\x72\xe6\xa2\x8b\xd5\x0a\x5d\xec\x60\xe0\xfb\x33\xf4\xa0\x7b\x1d\xbe\xc8\xc1\x70\xb1\x71\x39\xb7\xa8\x29\x50\x0c\x88\x92\x8b\x82\x8d\xd6\xa5\x97\xd0\x5f\xbc\x40\x68\x9b\x51\xe0\x4f\x78\x17\xe6\xea\x1b\xe7\x80\x3c\x8d\x81\x0f\xa8\x88\x7b\x36\x06\x6a\x4d\x80\x5a\x14\xa8\x35\xc5\xd8\x3d\xe3\x15\x15\xd5\xc4\x86\xec\x10\xf9\x40\xfe\xa2\x72\x5d\x90\x1d\x8a\xfb\x84\x22\x7d\x37\x68\x22\x77\x83\xe6\xa0\xeb\x92\x13\x8c\x62\x9e\xc8\xa5\x3b\x45\xcc\x4a\x20\xb6\x12\x3e\x9a\xf3\x97\x00\x62\x2b\x90\x5b\x44\xf9\xc6\x10\xc4\xbb\xb7\x88\x34\xb5\xdc\x9a\x13\x5f\xdc\xab\xb6\x12\x61\xde\x0a\xcc\x0a\xe4\x4e\x08\xd3\xb6\x88\xf8\xab\xdc\x06\xc9\xeb\xf4\xee\x9b\xea\x34\xae\xaa\xd3\x78\xa3\x4e\x63\x88\xad\xf1\x7f\xb4\x4e\xe3\x6f\xab\xd3\xa7\x8a\x3a\xed\x33\xae\x1f\x69\x73\x32\xd3\xb6\x81\x4b\x75\xbc\xcc\xeb\xe8\x97\x12\x7d\x59\x47\x4f\xb5\x9b\xcf\xdb\x2d\x51\x75\xf4\x79\x1d\x83\x52\x1d\xfd\xa7\xd6\x31\xca\xda\xcd\xcb\xea\x98\xa0\xd2\x5e\xa7\x5e\xdf\xa0\xa8\x6f\xb6\x50\x20\x66\x0c\xd9\x5e\x1f\x93\x7b\x7d\x6b\x91\xff\xec\xe7\x4f\xe7\x4d\x78\x81\x12\x0c\x2f\x50\x8a\xe1\x1d\x7f\x7a\xc7\x9f\x3e\xa1\x44\x6e\xd6\x7c\x24\x9f\x50\x8a\xf7\x1e\x0a\x92\x72\xf3\x48\x10\x93\xe9\x23\x41\x50\x5e\x3d\x12\x64\x45\xf3\x95\x57\xe9\x73\x4f\x73\x35\x56\x79\x4e\x71\xfe\x48\x90\x96\xe0\x91\x20\x2b\x1f\xff\x9d\x18\x2b\xfe\x14\xa1\x98\x20\x4a\xd8\x80\x5a\x2c\x7a\x75\xbb\x8c\x42\x1a\x32\xdf\x0b\x90\xd8\x1d\xdc\x4c\xc4\xb8\xb0\x76\xa1\x06\xc6\x27\x36\xd6\xc6\xcb\xbd\xc2\x7f\x65\x61\xe5\x92\xc7\x2d\x28\x8c\x47\xc3\xa1\x3d\x32\x43\x05\xd3\xc4\x6e\x08\xa6\x6e\x26\x33\xda\x8c\xed\xa2\x34\x71\x4a\x42\x94\xfb\x5e\x17\x0e\x6f\xf9\x80\x2f\x23\x6a\x44\xe4\xf0\x4f\x34\x70\x91\x85\x07\x68\x78\x72\x4a\xfe\x1c\xf1\x21\x73\x68\x7e\x69\xa0\xfd\x11\x7f\xfa\xee\xbf\xf8\x8f\x8d\x07\x48\xec\x4a\x21\xe0\x4f\x96\x7c\xfe\x1f\x1c\xc0\x6b\xfc\xfd\x6c\x84\x07\xdf\x1d\xfa\xa5\xf3\x8d\x92\xe1\x43\x52\x72\x7a\x92\xe4\xde\x32\x19\x89\xf2\xfd\x26\xcc\xe6\x71\x74\x23\xc0\x5f\xc5\x71\x14\x23\xc3\x0f\xaf\xbd\xc0\x9f\xec\xf3\xd1\xdd\x63\xee\xbe\x61\x2a\xa7\xd1\x4c\x5a\xd7\x4d\xfd\x20\x20\x6c\xe8\x8c\x56\x2b\x63\x5f\xb9\x6c\xf0\x02\x7f\x16\x12\x36\x6c\xf2\xc4\x53\x95\x98\xc8\xb4\x16\x4f\x6b\x64\x69\x62\x9f\x81\xb0\x61\x9b\xa7\xaa\xc4\xbf\x69\x1c\x91\x83\x03\x36\xec\x8c\x64\xc2\x8d\x3f\x61\x73\xc2\x86\xdd\x51\xad\x66\xf2\x1f\x15\x50\x2c\xe2\x9d\x8e\x03\xf6\x54\xca\x32\xa6\x63\x3f\xf1\x23\x5e\x4e\x5f\x02\xf7\x47\xaa\x6d\x32\x77\x13\x2c\xf6\x17\x22\xd3\x91\xca\x24\xec\x39\xd8\xd0\xb1\x05\x09\x6b\x4f\xb3\xf2\x48\xb4\x08\x15\xda\x73\xbe\xea\xad\xb8\xd2\x98\xf3\xc4\x2c\x38\x61\xe6\xf5\x37\xb5\x5a\x9b\x28\xaf\x6d\x1e\xd9\x3c\x33\x47\xce\x6b\x3d\x30\x8c\x22\x58\xaf\x03\xf6\xaa\xf8\x84\xb1\xc2\x20\xf8\x30\x30\x60\x1b\x45\xce\x0f\x8e\xc6\xb0\x4a\x21\x76\x15\xaa\x1c\x24\x47\xc7\x19\x34\x30\xfe\x87\xc4\x96\x73\x48\xda\x82\x08\xcf\x4c\x30\xdd\xf0\x1e\x46\x5d\x5d\x2f\xa4\xc5\xa5\x59\x47\x98\x06\x1f\x87\xe2\x62\x4d\x88\x93\x1b\x9f\x8d\xe7\x88\x0e\xc3\x11\xbe\x1f\x7b\x09\x35\x2c\xc3\xf5\x09\x23\xe1\xde\x65\x4c\xbd\xab\x3d\x91\x66\x1b\xae\x4d\xb2\x48\x41\x21\x86\xe2\xb3\xd2\xe0\x5c\x7f\x8a\xfc\x53\x5b\x4a\xaf\x29\xb0\x89\xef\xfb\x74\xcf\x27\x76\x71\x02\x73\x6a\x0f\x8a\xae\xec\xe3\xbc\x97\x32\xd3\x11\x0e\xe4\x27\x95\xe6\x29\xf2\x45\x18\xae\xe5\x46\x05\xd4\x34\xe4\xa9\xa6\x2f\xb6\x51\x21\x22\xf1\xd0\x29\xd6\x84\x27\xf6\xc0\xb0\x2d\xc3\x2c\x36\x70\x1a\x11\x56\xca\xae\x6d\x60\xd3\x77\xb3\x6b\x6d\xa7\x91\xe9\x0c\xfc\x9c\xa8\xc8\x74\xb0\xc9\xdb\x25\x4b\xe2\x09\xae\xaf\x21\x8a\x1a\x59\x56\xb3\xa9\xa1\x5c\xc3\x92\xdc\x1b\xcf\x8c\x4a\xfb\x20\xe4\xd8\x76\x9d\x62\x8b\x45\x3f\xf8\xb7\x74\x82\x18\x5e\xc3\x65\xd5\x8e\x61\x29\xcc\x7e\x61\xf7\xd4\xc4\x6b\x18\x57\xee\x30\xf2\x99\x0f\x2a\xfd\xac\xed\x40\xe5\xd8\x78\x0d\x3b\xfc\xa9\x6d\x0d\xd9\x7c\x26\xd8\x0d\x5a\xd4\x65\xb6\x1b\xe8\x63\x26\xcd\x02\x30\xfa\x06\x4a\xfb\x9c\xa7\xd5\x88\x27\x92\xa1\x62\x37\x28\x76\x27\x90\x54\x5a\xc4\x3e\x5d\x6e\xc0\x23\x51\x03\xa5\xa4\x55\xcf\xbb\x63\xa3\x5f\x84\xbc\xee\xeb\x81\x37\x22\xe1\x91\x1e\x9b\x0e\x24\xf9\xdd\xc8\xe2\x88\x8e\x90\x64\xe0\xbb\xde\x69\x32\xd0\x65\xc6\x6b\x24\xa6\xa3\x09\x8b\xeb\x9d\xda\x9a\xd0\x79\x65\x91\xf3\xb0\xbb\x21\xbc\x4e\xc3\xd3\xa5\x97\x57\x4c\x1b\x37\x98\xe9\x35\x1c\x8c\x87\xf6\x68\x0d\xbf\x7d\x8b\x28\x74\xf9\xcb\xe7\xe5\x92\xc6\x2f\xbc\x44\xdc\x5c\xbb\xfd\xb6\xec\xeb\x72\xf8\x25\x6d\x6b\x1f\xae\xc9\xd0\xb8\x33\xc0\xf8\xdb\x10\x7a\x14\xd7\x75\x8c\xa5\x01\x46\x68\x80\xf1\xff\xfc\xdf\x06\x18\x0b\x03\x0c\x03\x8c\x2b\x03\x8c\x77\x06\x18\xff\x34\xc0\x38\x37\xc0\xf8\x68\x80\xf1\xca\x00\xe3\x0f\x03\x8c\xdf\x8d\x11\xdc\x6d\x1b\x66\x81\x54\x09\xc4\x25\x3a\xe1\xc5\x8a\x5a\x6c\x1e\xa5\x89\x17\x4e\x12\x11\x2c\x28\xff\x24\xc6\xbe\xfc\x5b\x69\x73\xa8\x58\x39\x97\x9c\xae\x0f\xb3\xdb\x76\x8c\x4b\x47\x4a\xec\x63\xff\xd4\xae\xd5\x12\xfe\x07\xa5\x66\x62\x3a\xc2\x61\xbf\xda\x83\x93\x53\x40\xd8\x48\x31\x86\x28\xf3\x91\x90\xa4\x97\x72\xe7\x1c\xf9\x0d\x92\x80\x6f\x26\x18\xc3\x01\x42\xa9\x49\xb8\x14\x9c\x86\x18\x1f\x63\x5e\x80\x47\x90\x27\x0e\x15\x55\xf1\xc5\xf0\x55\x84\xbe\x91\xad\x1e\xe3\x35\x76\x17\x22\x34\xd5\x38\x8d\x63\x1a\x8e\xef\x44\x7c\xb2\x09\x1d\xfb\x0b\x2f\x80\x80\x50\x2b\x4c\x17\x34\xf6\x82\xe4\x89\x87\x36\xcc\x8a\xe9\x32\xf0\xc6\x14\x1d\x0e\xed\xc6\xd1\xe8\x70\x06\x55\x47\x3b\x43\x93\x8d\xd6\x78\xbd\x46\x45\x01\x9c\x92\x31\xa1\xd6\x92\xc6\x63\x61\x2b\x68\x3c\xd3\x3c\x1b\x4e\x8b\xf3\x58\x44\x85\x0a\x8f\xc5\xe4\x2b\x9a\x42\xcc\xbd\xc2\xcb\x3d\x9f\x7a\x61\xca\x1f\xc4\xcc\x0b\x13\x42\xc5\xbc\x0b\x0b\x42\xe5\x64\x0a\x77\xbc\xb6\x7c\x22\x85\x19\x2f\x2d\x1b\x47\xe0\x92\x48\xab\x6a\xb8\x50\x5e\x7b\xf6\x0c\x71\x8c\x71\x31\x40\x77\xe4\xc0\x86\x0b\xc2\x17\xc9\xee\x72\x78\x31\x5a\xad\xd4\xdc\x3b\xab\xd5\xd0\x8c\x38\x4d\x0c\x97\x05\x08\xa0\xc9\x6a\x65\xd8\x3c\x2f\xab\xd5\x0c\x62\x08\xab\xb5\x5a\x0d\x4d\x38\x0c\x23\x86\x6d\x40\x4c\x0c\x62\x48\xed\xea\x86\x18\xdf\x71\x90\xe9\x20\x1a\xda\x23\xd7\xf8\x2f\xf1\x52\xab\x1d\x0e\x2f\xa3\xdb\xdf\x46\x87\x16\xa3\x09\x43\x17\x98\xab\x0e\xe6\x85\xc5\xa2\xb7\xd1\x4d\xd6\xb3\x5c\xc3\x80\x57\x5a\x7e\x67\xe4\x1e\x0e\x9f\x2d\xb5\x4c\x63\x0e\x72\x4b\x38\xd5\x70\x46\x0e\x87\x13\x3a\x9d\x2d\xe3\xe4\x59\x01\x52\xf0\xf8\x43\xc6\xe3\x08\x3c\x3e\xf9\x93\x1b\x58\x92\x57\x7c\xa0\x33\xc6\x82\x13\x78\x49\x6e\x11\xc5\xe6\x12\x28\x31\x0c\xe1\xc3\x5d\xc0\x7f\x50\xf6\x26\x27\xc2\x01\x3c\x25\xb7\xba\xfe\x0b\x33\x0c\x97\x62\xb7\x78\x2e\x02\x2c\x7f\x10\xa1\x95\x4d\x5a\xab\xa1\x0f\xc2\x06\x7c\x4a\xd0\x87\x81\x81\xe4\x81\x90\xef\x1a\x0d\x83\xff\x23\x62\x5f\x35\x4b\x36\x0c\xd7\xc7\xe6\x14\x96\x04\x19\x89\x6c\x95\xeb\x61\xdf\x4c\x0f\x5b\x23\xa1\xbd\x2c\x4d\xf4\xa1\x56\xcb\xa1\xb1\xd0\x69\xe0\x4c\xd8\x7c\x2b\xc7\xee\xda\x9d\xf4\xe8\xc4\x13\xd6\xb9\xed\xfe\x29\xe2\x22\x37\x9e\x7b\xf1\x8b\x68\x42\x9f\x33\x14\x61\xbc\x5a\x8d\x4f\x3b\x3d\x7c\xbf\x24\xa8\xdd\x25\x84\x8c\x07\x49\xae\x51\x88\x69\x3b\x7f\xc1\x92\x15\x85\xee\x11\x61\xa9\xc0\xac\xd7\x77\xb5\xda\xc1\x44\xd4\x3a\x14\x91\xb3\x6d\xe5\x50\xe7\x39\x99\x66\xd3\x7c\x46\x90\x99\xbb\xa3\xb8\x22\xcf\x4f\x16\x83\x62\x7c\x5e\x34\x9e\xe7\xe3\x3b\xe3\x8d\xbd\xa7\x14\xab\xbb\x5a\x2d\x43\x7e\x65\x52\xb8\xca\x76\xbb\x17\x8d\x0c\x97\xcb\x8b\x84\x2b\xc2\xd9\x10\x2b\x1d\xec\xc4\x70\x29\x99\x9a\xd4\x5c\x9a\x57\xba\x1e\x46\x64\xfa\x15\xff\xa2\xa7\xff\xc9\xd3\xaf\xf2\xca\x3d\x27\x59\x39\xa7\xa7\x0e\x36\x15\x22\xf5\xf9\x39\xde\x50\xdd\x28\xb9\x92\x20\x99\x96\x26\xbc\x96\x66\x76\x6a\xea\xe2\xc8\x6c\xd0\x75\x0f\x87\x5c\x20\x35\x91\xd5\x86\xc0\x7c\xaa\x6c\x3a\x30\xc3\xd8\xdd\x0c\xc6\x26\x3e\xd9\xfc\x13\x7c\x78\x48\x57\x97\xfa\xcc\x07\x55\xfc\xbd\x5a\xe1\x4c\x41\x3e\x7c\x8c\xe9\xd4\xbf\xad\x9c\xeb\xa7\x08\xe5\xc3\x8d\x58\x28\xf0\x09\x87\x4b\x71\xf8\xa4\x49\xdd\x47\x0c\x8b\x79\x3d\xf3\xfe\x90\x05\xf4\x12\x0e\x1f\xb8\x04\x87\x87\xad\xca\x83\xab\x6c\xd7\x01\x45\x75\x8a\xcd\x64\xbd\xd6\x4f\x3f\x66\x1a\x44\x40\xee\x78\x27\x1b\x93\xc0\x92\xb5\x11\x5e\x22\xf4\x8a\x41\xb0\x9e\xa1\x7b\x35\xa6\xf3\xc5\x01\xe4\x53\x97\x6b\x80\x01\xd9\xac\xe6\x0e\x5b\x23\xc8\xe6\x01\x77\x68\x7c\xc7\x67\xd2\x91\x32\x37\xb9\xdc\x19\xc3\x4b\x36\x47\xc3\x2f\xaf\x79\xd7\xa5\xb0\x7e\x9a\x8e\xa5\xe5\xf9\x26\x0e\x6e\x17\xb0\x79\x30\x5d\xb6\x60\x53\x83\x0f\xd3\xc2\xa0\xe1\x46\x49\xbf\xe1\xa8\x1b\x3e\x47\x66\x3a\xb9\x15\xaf\x64\xdc\x4b\x29\xc4\x6f\xa3\xb1\x57\x6d\xd9\xa9\x87\xb4\x15\x39\x1e\x31\x11\xd5\xdb\xe3\x91\xdd\x1d\x09\xba\xbb\xe8\xbb\x4d\xd0\xb3\x25\x1d\x0b\xeb\xe8\x47\xac\x8a\xf3\xa9\x4e\x28\xd8\x8f\xd8\xab\xe6\xc0\xbb\x69\xbe\xa8\x80\xfe\xc4\xd5\xb9\x1d\xdb\x5b\xdf\xb2\xfd\x13\x23\xbb\x6c\x20\x28\xd6\x80\xf6\x09\xa1\xd6\x1d\x57\xcc\xee\x4e\x1c\xdb\xce\x14\x82\xec\xb8\x1f\x35\x1c\xa0\xd6\x42\x6d\x34\xbf\x06\x6a\xbd\x03\x6a\x9d\x01\xb5\xde\x6a\x16\xf7\x09\x65\x3f\xa4\x41\xf0\x3b\xf5\x62\x44\xad\x3b\x0c\x4c\x77\x93\x21\xf0\x50\xeb\x6e\x27\xa2\x62\x5f\x25\x7a\x22\x55\xfc\x8f\xf5\xf9\xfc\xc5\x43\xe4\x95\xe9\xfb\x7c\xfe\xe2\x31\x12\x73\xa4\x0f\xd1\xaa\x11\xab\x6d\x11\xdd\xdf\xb9\x14\x16\xae\x0d\x13\xd7\x81\xd7\xae\x0d\xef\x5c\x1b\xce\x5c\x1b\xde\xba\xf6\x7a\x63\xdb\x28\xb3\x80\x9b\x78\x8c\x9e\xfb\x0b\x2a\xd4\xad\x89\x38\x93\xe3\x5a\x12\x4f\x49\xa5\xce\xe6\x47\x93\x44\x28\x8c\x13\xef\x2e\x11\x8a\x5c\x32\x8f\x62\xf6\x92\xbf\x71\x85\x6c\x11\x85\x6c\x9e\xc0\x3c\xfb\xf0\x4e\xbe\x2f\xc9\x25\x4a\x31\x2c\xc8\x05\xff\xb9\x26\x97\x28\xc0\x70\x47\x2e\xf8\xcf\x8c\x5c\xa2\x31\x86\x5b\x4a\x2e\xf8\xef\x19\x25\x97\x68\x8a\xe1\x03\x7f\x9f\x62\x78\xce\xdf\xe7\x18\xae\xf8\xfb\x1c\xc3\x39\x25\xf7\x5e\xd5\x42\x63\x3c\x14\x77\x3c\x5e\x7a\x77\x08\x8f\xd6\xf0\xbc\x0a\x26\x28\xc3\x54\xae\xa2\xe7\x12\x46\x50\x2e\xa0\xfe\x51\x69\x91\xb4\x09\x35\x76\xc5\xe9\xda\xc4\x7d\x0d\xd4\x7d\x0d\x53\xf7\x17\x78\xed\xfe\x03\xde\xb8\x9f\xe1\xab\xfb\x2b\xbc\x75\xff\x82\x85\xfb\x3b\xbc\x73\xff\x59\x5a\x97\x16\x36\xe9\x43\x53\x5e\x67\x79\x1d\xa5\x71\x82\xf0\x29\x57\x38\x47\x6b\xf8\xd9\xbd\xa1\x90\xb8\xaf\x28\x9c\xb9\x3f\x41\xea\x7e\x07\x9f\xdd\x9f\xe1\x17\xf7\x37\xb8\x71\xff\x80\x5f\xdd\x1f\xe1\x56\x96\xfc\x9b\xfc\xb9\x73\x29\x85\xdf\x5d\x46\xe1\x0f\x37\xa6\x60\x3c\x33\xdc\x0b\xba\x86\x17\x8f\xb0\xed\xf3\xf9\x8b\xa7\x70\x4e\x03\x7b\x88\x79\x9f\xcf\x5f\x3c\x8d\x7f\x25\xc0\x9c\x85\x21\x05\xca\xff\x4c\xdd\x94\xc2\x6b\xd7\xa7\xf0\xc6\x8d\x28\x7c\x75\x3d\x0a\x6f\xdd\x84\xcb\x75\x40\xe1\x9d\x3b\xa6\x8f\xf0\xf2\xf3\xf9\x8b\x07\xd8\x39\xa5\x90\xba\x73\x0a\x9f\xdd\x09\x85\x5f\xdc\x25\x85\x1b\x77\x41\xe1\x57\xf7\x9a\x6e\x31\xf5\x8e\x33\x75\xc6\x99\x7a\x59\x30\xf5\xdd\x06\x53\x4b\x4e\x29\x95\x91\x5f\xb6\x95\xac\x39\xb7\x1b\x20\x6a\xdd\x90\x5b\x3a\x0c\x87\xf6\xa8\xac\xea\x8f\x20\x36\x45\x6a\x66\x57\xd4\x70\xca\x0d\xa2\x17\x71\xfd\x58\x11\x77\x4f\x2d\xe1\x72\x47\x09\xcf\xe9\xc3\x45\x2c\xc8\xd5\x93\x6b\xf1\x8f\x1d\x65\x9c\x3d\x5a\xc6\x87\x27\x97\xa1\x6f\x73\x49\xbb\x11\x85\xe9\x2b\xcd\x4d\x49\xd6\x30\x71\xdf\x01\x75\xdf\xc1\xd4\x7d\x03\xaf\xdd\x8f\xf0\xc6\xfd\x08\x5f\xdd\x4f\xf0\xd6\x7d\x0f\x0b\xf7\x05\xbc\x73\xbf\x6e\xec\x1d\x15\xd4\x2e\x1f\x26\x76\x49\x16\x4f\xa5\xf5\x67\xf7\x07\x48\xdc\xbf\xe1\xcc\x7d\x09\xa9\xfb\x0a\x3e\xbb\xb7\xf0\x8b\x7b\x06\x37\xee\x0d\xfc\xea\x7e\x80\xb2\xaa\xba\x59\x97\x58\x24\x95\xb7\x6c\x4a\x26\xfe\x02\x2a\x91\x8e\x37\xe0\xce\xbd\x82\xdf\xdd\xe7\xf0\x87\x7b\x2e\x84\xf7\xad\xa6\x66\x7e\xa2\x3b\xef\x4d\x5c\x17\xa1\x88\xc9\x70\x24\xa2\x11\x43\x4a\x6c\x31\x01\xe8\xb1\xed\x36\xcd\xf5\x56\x2b\x54\x98\xe7\x21\x33\x56\xe1\x7a\x83\x63\xdc\xea\x09\xef\xb8\xda\x52\x2c\x11\x1e\xc0\xf2\xed\x0f\xc1\xd5\x54\xb8\x85\x54\x61\xe2\x7c\x32\x19\x86\x2a\xcf\x73\x86\x4c\x33\xc1\x23\x3c\xd8\x48\x71\x7d\x62\x08\x23\x83\x70\x20\x6c\x80\x6c\x03\x50\x24\xdc\x18\x4b\x93\xdb\x08\xc5\xe0\x63\x0c\xaa\xa0\x10\x43\x2a\xf6\x53\xf2\xbd\xb7\x2a\x02\x3c\xcd\xc0\x21\x67\xd7\xc7\x87\xd9\xe5\x43\x02\x29\xf1\x90\x73\x64\xdb\x62\xf7\xf0\x2b\xc7\x46\x21\x16\x16\xc1\x36\x3e\xc8\xdd\x6a\x94\xce\xaa\xf8\xea\xfb\x67\xc3\x0f\xf7\x53\xbc\xa9\x03\xa4\xd6\xcf\x02\x91\xb1\x14\xdf\x6b\x35\x94\x5a\xaf\x49\x6a\xbd\x7e\xe6\x34\x4d\xa7\x59\x4f\xad\x25\x06\xe3\x17\x99\x99\x6b\x2a\xa9\xf5\xcb\x89\xb3\x5a\xa5\xd6\x2f\xa7\x9d\x56\xa9\x14\xe3\x46\x40\xad\x56\x28\xb5\x6e\x88\x83\xc1\xf8\x43\x24\x0c\x50\xc2\xf9\x1c\x21\x0f\xa5\xd6\x1d\xc6\x58\x1f\xea\xc1\x27\xc9\x69\x7b\xb5\xb2\xc5\xf6\x64\x68\x2d\x65\xf8\x4d\x1f\xbb\xf9\x79\xee\x12\x23\x5f\x7a\xe0\x0d\xac\x68\x3a\x4d\x28\x43\x3e\xf4\xea\x9c\x92\x86\x83\x31\xa4\xd6\x1d\xf1\x15\xce\x5c\xe5\xe1\xc9\x8b\x3c\x59\xcd\x02\x90\x5a\x93\x3c\x4d\x54\x1f\x9b\x9c\x58\xb3\x8b\x9f\xf5\xb0\x2b\xe9\x64\x25\x3a\x2b\x89\xa4\xdb\x44\xd2\x9c\x48\xef\x61\x22\xab\x28\xdc\x22\x6f\x8b\x36\x69\xc2\x65\xfc\xaa\x38\x6c\x7c\x96\x0d\x52\xab\xa1\x32\xd7\x8d\x54\xb2\x3c\xb5\xd2\x67\x3d\x57\xc1\x0f\x1c\xd7\xe6\x6b\xc5\xac\x3d\xf2\x96\xd0\x1b\xc2\x65\x7a\xaa\xac\x36\x27\xd0\x16\x54\x65\x98\x72\x8a\xcc\x5e\x3d\xb5\x7e\x6d\xa0\xc4\xec\xe0\x67\x3d\x97\x27\xf3\x94\xcf\x3c\x45\x50\xac\x64\x3f\x97\x81\xd4\x7a\x6d\x92\xd4\xfa\xe3\xd0\xb1\xed\x15\x47\xfa\x4e\xbc\x3e\x73\x6c\x1b\x22\x94\x62\x4e\x40\xaa\x77\x05\x6d\x50\xbd\xd7\xdc\x8e\x65\x7b\xa0\x85\xd7\xd4\x58\x77\x3e\x26\x83\xe0\x9e\x92\x4c\xd2\x65\xa4\x4a\x31\x30\x08\x33\x73\x6d\x6c\xf0\x4c\x13\x63\x01\x9f\x7d\x50\x89\x70\x80\x22\xf2\x8e\x0e\xfd\x7d\x3f\xdc\x9f\x0c\x4a\xdf\x5c\x7f\x84\x57\x2b\xd1\xe7\xe5\x1c\x50\x9c\x0b\x37\x1c\x69\x65\xc5\x11\xf2\x8e\xa8\x15\x15\xf2\xa2\x72\xa8\xac\xd3\x64\x0f\xe7\xd4\xba\x25\x9f\x28\x8a\xe1\x9c\x72\x15\xd4\xfa\x8d\xbf\x25\xd9\xdb\x98\xbf\x31\xf1\xf6\x22\x87\x7c\x21\xdf\x14\xa4\x7a\x53\x90\xfc\x2d\xdf\x9f\xd8\xdc\xa1\xe6\x20\xf2\x02\xc1\xb9\xe6\x06\xe4\xc1\x8d\x8f\x35\xb0\x35\x2c\xbd\x38\xa9\xf2\xe5\xff\x31\x43\xe7\x7f\x0b\xb6\x94\x8d\x7f\x78\x94\xc0\x17\xdf\x44\x60\xca\xc6\x1f\x1f\xa0\x51\x77\x39\xf7\x28\x32\x69\x71\x96\x9f\x5f\xc2\x84\xdc\x8b\x2d\x45\x03\x2e\x5c\x63\xdf\x00\x9b\xcf\x01\x6b\x58\x92\xc3\x3f\xbf\x24\xf5\x2f\x13\xf3\x10\x16\xe4\xf0\xcf\x67\x87\x70\x4d\x0e\x87\x5f\xbe\xfc\xf9\x5d\xdd\x1c\xac\x86\x5f\x46\x08\x5b\xf7\xeb\xd1\xe1\xac\x98\x10\xef\xca\x33\x3e\x3d\xb1\x07\x0a\xb5\x4f\x50\x38\x68\x50\x97\x62\xd3\x30\x34\xef\x96\xb9\x0a\x60\xa2\xe8\x24\xd6\xb6\xf6\xe2\x46\xa4\x6d\xed\x99\xbe\xeb\x6b\x8b\xb5\x59\xc9\x92\x35\xdb\x50\xbf\x06\xe3\xcb\x97\xef\x6a\x7a\x24\x92\xcb\x8d\x83\x7f\x75\x77\xc5\xf8\x13\x0d\x5c\xc3\xa4\xc2\x1f\xc8\x2c\x3b\xe2\x59\x19\xd8\x14\xc6\x56\xbe\xb1\x19\x6a\xa5\xf0\x62\x70\xbf\xce\x0c\xfe\xe8\x86\xc1\x1f\x1b\xd2\x61\xbc\xa9\xbe\x90\xb8\xf0\x02\x90\xa3\xbc\x79\x58\x31\x02\x11\xed\x6c\x43\x21\x15\x5a\x50\x85\x32\x94\x23\x7d\xf5\xcd\x48\xd3\xc7\x91\xde\x3e\x8a\xb4\xb9\x81\xf4\xf3\xe3\x48\xcf\xbe\x19\xe9\x2f\x8f\x23\xfd\xf0\xcd\x48\x7f\x7d\x1c\xe9\xf3\x47\x91\xb6\x37\x90\xde\x3d\x8e\xf4\xea\x9b\x29\x55\x48\x4d\x24\x7e\x4e\xbb\xfd\x01\xd7\x91\xdc\x26\x6d\xe1\x87\x0a\x3a\x2f\x17\x74\xf8\x27\xfa\x03\xaf\xd0\xd0\x6c\x8c\xbe\x4c\xbe\x4c\x30\x1a\xb8\xee\x00\x89\x47\x3c\x38\xdc\xa6\xa2\xbb\x41\xc5\x1f\x24\x1c\x3a\xa3\x81\xed\x36\x50\x38\x6c\x8e\x4c\x14\x4a\x0b\x16\xdb\x36\xf0\x83\x74\xbc\xf8\xe6\x0a\x2f\xc4\xc5\xac\x86\xf3\x10\xd6\x77\xdf\x8c\x75\xf2\x78\xdb\x7c\x7a\x14\x69\x6b\x8b\x54\x1b\x9e\x84\xfa\xe3\x37\xd3\xfb\xfa\x71\xa4\x5f\xbf\x19\xe9\xbb\xc7\x91\xbe\xfc\x66\xa4\x67\x8f\x23\x7d\xff\xcd\x9c\x7d\xfb\x38\xd2\x37\x8f\x22\xdd\x14\xe2\xb7\xfa\x5d\x54\x8e\xf7\xd0\x79\xa4\x17\xbd\x2d\x97\xb1\x78\x64\x5c\x2d\x61\x2a\x21\xfa\xe1\x9b\x96\xc3\x3f\x3f\x5e\xfb\xbf\xbf\x11\xa1\x43\x5b\xf5\x47\x91\xbe\x2e\xad\xd1\xee\x10\x2d\x54\x76\x60\xd0\xd4\x26\xc6\x7f\x54\x41\xaa\x3d\xa3\x0d\xd0\xcf\x0f\x80\x3e\x73\x9a\xab\x95\xd3\xdc\xc8\xf1\xeb\x46\x0e\xc7\xe4\x8b\x8f\x71\x94\x86\x0c\xe5\xeb\x92\x2b\x8c\x28\x06\xca\x4b\x6b\x69\x79\xff\xaa\x2a\xed\x9d\x1f\x04\x7e\x42\xc7\x51\x38\x91\xf4\xe9\x39\x7e\x29\xe5\x90\xf9\x4d\xc3\xb6\x6d\x2d\x1a\xd8\xef\x95\x58\xe5\xe2\xc6\x74\x36\xc8\xff\x67\x35\x09\x61\xca\xe8\x36\x77\x7e\xaa\x02\x3e\xd3\x48\xd5\x81\xbf\xd3\x77\x9d\xb3\xc5\x4c\x29\x4c\xfa\xa0\xe7\x6a\xba\xc6\xcf\x1b\xc8\x43\x6b\xfe\x00\x1b\xf5\x92\x7e\x2b\xbb\x2a\xda\x2c\x8b\x92\xf8\x94\xa8\x75\x63\x3c\xc8\x91\xf9\x1c\x99\x1b\x5a\xbe\x5c\x46\x52\x0c\xbc\x4c\x7f\x57\x99\x26\x6a\x13\x42\xca\xc9\x79\x51\x9b\x14\xfd\x51\x52\xfb\x32\xa8\xe2\xfb\x8f\x5b\x75\xa5\x4f\xac\x2b\xa5\x55\x6d\x50\x2c\x67\xc5\x4a\xae\x9c\x85\x3d\x9a\x85\xb6\x81\x41\x5b\xcb\x12\xd3\x8d\xc6\x3b\xf7\x17\xf4\xef\x28\xa4\x1f\xe4\xa2\xba\x08\x4e\x7b\x2a\x15\x67\xc4\xea\x5c\xd7\x34\x4c\x03\x63\xf3\x0e\xb1\xc3\x2e\x5f\x5e\x1a\xb6\x01\x4d\xf1\xfe\xac\x9b\xbd\x15\x85\x84\x95\x74\xe5\x7b\x02\x1b\xb5\xf0\x77\x41\x57\x77\xe4\xe8\x11\xf0\xea\xce\xec\x6d\xe6\xe2\xbd\x39\xd8\x6c\x9a\xeb\xea\xde\x9c\xec\x2a\xf2\xc1\x1e\x9d\x96\x73\x29\x24\x9b\x7d\x3a\xd8\x89\x7b\x47\xbf\x1e\xef\x26\xa6\xba\x6f\x4f\x77\x65\xd8\xd5\xbf\xe7\x9b\x32\x92\xed\x61\x3c\xd0\xc7\x27\x9b\x85\x84\x56\xf2\x00\x77\xf5\xe2\x96\x74\xab\x97\x6f\x16\xb8\xa3\xa3\x33\xd5\xd1\x59\xa9\xa3\xb3\x5d\xe5\x6e\x74\xf4\xeb\xac\xa3\x67\xa5\x6d\x12\xb6\xa0\x9b\x9d\x3d\x83\xd4\x82\xa6\x6e\xd7\x7b\xf9\xc4\x7a\xdf\xed\x6a\x97\x07\xfb\xfc\xec\x29\xb9\xb6\xba\xfd\x25\xcd\x57\xe0\x86\x69\x97\x25\xf0\x42\xfb\xf6\x4c\x4b\xbf\xd1\xaa\x6f\x52\x6d\x95\x47\x37\xcd\x0b\xa4\x2a\x63\x52\xa1\xc8\x68\x2b\x37\x1d\x30\x95\xf7\x53\x02\x92\x66\x36\x10\x63\x92\x5a\x62\xd7\x43\xc4\x69\xcb\x77\x2c\x60\x2e\xdf\xc4\x66\x03\xa4\xeb\x5b\x8a\xee\xb3\xa3\x4d\xd7\x78\x76\x0b\xfb\xcf\x7e\x33\x80\xa7\xb8\xc6\xb3\xc6\xe2\xf0\x59\x63\x72\xf8\xec\x77\x03\x98\xfc\xde\x78\xe3\x3e\x7b\xe7\x3e\x3b\xdb\x7f\xb6\x34\x40\x9d\x79\xba\x43\xe3\xf9\x3b\x03\x8c\x8f\xef\x8c\x11\x4c\xbc\x3b\x9e\x70\x96\x86\x13\xef\xce\x00\xe3\x5d\xa4\x1e\xce\x53\x9a\xc8\xa7\x5f\xe9\x24\xcc\x9e\xcf\xe7\x69\xac\x1e\x7f\x88\x7d\xf9\x70\xe6\xb1\x34\xe6\x8f\x23\xc8\x0f\x50\x25\x4a\x89\x4f\x22\x93\x88\x24\x0a\x99\x5b\x66\x35\x46\x20\x0f\x5a\xdd\xa1\xf1\xa3\x17\xa6\x5e\x2c\x90\xd3\xcb\x58\x3d\xbe\xf3\xe2\xf1\xdc\x00\xe3\xf9\x32\xf6\x03\xf1\xce\x53\x7f\x4c\x43\x2a\x7e\x02\xfe\xf6\x3c\x9d\xa5\x09\xe3\x08\xe9\x92\x51\x71\x77\x1f\x8c\x0f\x63\x16\xc9\xa7\xf7\xd1\x75\x96\xf8\x92\x8e\xe5\xa3\x22\xf6\x9d\x56\xb6\x2c\x57\x16\x29\x0b\xd4\x8b\x93\xa5\xc9\xc2\x64\x49\xb2\x0c\x89\x5f\xa2\xce\x8d\x4f\xce\x28\x11\xe7\xdd\xba\x5d\xfe\x9b\xb3\x0f\x72\x1f\xa8\xca\x30\xb1\x04\x80\xf0\xda\x9d\x22\xe3\xd9\xef\x8d\x67\x8b\xc6\xb3\xc9\xf9\xb3\xd7\xb2\x15\xad\x67\x6f\xff\x30\xc4\x71\xb2\x99\x6f\xa9\x1b\x4d\xdb\xb6\x1b\xb6\xd3\xb0\x9d\x73\xdb\x76\xc5\xff\x96\x6d\xdb\x7f\x18\x78\xb0\xbd\x37\x55\x18\x0c\x14\x37\xca\xb3\xcb\xf1\x61\x1a\x04\x2e\x5b\xbb\xf3\x9d\x25\xef\xe5\x91\xfd\x17\xf4\x87\xa7\x99\x9d\xdc\xea\xce\xc2\xf2\x6c\x8f\x5c\xc7\xe1\x80\x42\xe0\x1f\xb1\x51\xc9\x7b\xc9\x23\x06\x2a\x59\xff\xa9\x02\x9b\x57\xd1\xb7\xbb\x3e\x49\x01\xee\x27\xd1\xee\xd2\xcf\x68\x09\x70\x67\xf1\x1f\xe8\x1a\xaf\x01\xe0\x29\x5e\xcb\xb4\xdc\x85\x9e\x84\x36\xe2\xf2\xda\xc7\xf1\x49\x11\x48\xc3\x34\x73\x6f\xfa\xc3\x78\xb4\x17\x5a\x54\x1a\xaf\x5e\x06\x94\xe8\x2f\xab\xd5\x81\x03\xc2\x21\xfa\xd4\x9f\xa5\xf2\xfb\x81\x0d\x86\xf0\xb0\x60\xf8\xe1\x7e\x28\x82\x9f\xdd\xc4\x3e\x53\xdf\x30\xc8\x11\xdd\x92\xf1\xfe\x74\x0f\xfb\xd6\x15\xbd\x83\x10\xaf\xb7\xee\xae\xb3\xd2\x39\x66\x5c\xab\x51\xc4\xb4\x6b\x2c\xb1\x08\x6c\x44\xc5\x25\x62\x60\xeb\xb5\x38\x0a\x19\x0e\xef\xc7\x51\x10\xc5\xae\x61\xc3\x3e\xff\xdf\x90\x7e\xe2\x5d\xc3\x0b\x13\xbf\x71\x19\x78\xe3\x2b\x63\x0d\x19\x90\xd3\xef\x55\x81\xc5\x74\xa2\x01\xd9\xb0\x2f\xe1\xca\x40\xb3\x98\xd2\x70\x13\x57\x15\xe0\x1d\x0d\x82\xe8\xa6\x8c\x50\xe2\xdc\x24\x2e\xa5\x15\xb4\x6d\xc1\x2d\xbc\x19\x0d\x99\x57\x41\xe1\x16\xe8\xf8\xce\xd3\x49\x6c\x76\x3a\xa0\xfe\x95\xe1\x6e\xe6\x3e\xa3\xc6\x7a\x04\x39\xfb\xfa\x1d\xd8\x97\xff\x36\x88\x8c\xfd\xd9\x9c\x6d\x31\x92\x63\x7d\x08\x7e\x8b\xa3\x22\xc3\x66\xeb\x48\xd8\x4d\xc6\x0a\x50\x55\x40\x65\x86\x2d\x06\x67\xc4\x6f\xd5\x33\xa7\xbe\xc4\xe9\x9c\xf8\x5d\xf0\xdb\x1c\xef\x67\x24\xed\xca\x52\xc1\xf9\x87\x33\x64\x4d\x30\xd2\x3d\x62\x97\xba\x2e\xbe\x3f\x28\x1b\x04\x4a\xff\xbb\xfa\x11\x34\xd3\xaf\xbd\x9d\xdf\x2d\xa9\xba\xfa\xf6\xc2\x0b\xc3\x88\xed\x8f\xbd\x20\xd8\xf7\xf6\x45\xe9\xfb\x5e\xb2\xef\xe5\x9d\xcd\xc0\xeb\x2c\x06\x80\xbc\x4b\x36\x9d\xc9\x8b\x57\x97\xea\x77\x3a\xbb\x60\x71\x4a\x45\x75\xb2\x2f\x5a\x8a\x74\xff\x20\x92\x45\x75\x48\x1e\x0d\x21\x54\x11\xd1\x61\x78\x7f\x45\xef\x5c\x83\x26\x63\x6f\xc9\x07\xce\xd7\x6c\x11\x18\x2a\xce\x6a\xd1\xe7\xf3\xab\x3f\xbc\x06\x14\x5b\x25\x70\xc4\xf0\x7a\x0d\x12\x4f\xe0\x87\x57\xfe\xf4\xee\x71\x0c\x0a\x50\xcf\xcb\xf9\x7e\x1e\x55\x13\x50\x18\x12\x64\x08\x0a\x68\x24\xbd\xfe\x95\xb0\xfc\x98\x70\x9d\xe5\xa9\x58\x38\x74\x15\x96\x73\x7a\xcb\x1e\xaf\x4a\x01\x2b\x6a\x33\xc2\xc0\xb9\xab\x18\x9b\x50\x96\x2e\x3f\x7a\x01\x65\x8c\x6e\xa1\x52\xde\xa1\x3f\x3e\x7f\xfb\xea\xfc\xfc\xd5\xc5\x8b\x0f\x6f\x3f\x7c\x3a\xcb\x7c\x76\xa9\x48\x4e\xc7\xf4\xa4\x79\x6c\x9a\x14\x17\xa7\x25\xf6\x31\x3b\xe9\x8b\x50\x52\x15\xd9\x95\x8b\x86\x21\x1d\x0d\xd9\xc8\x12\x72\xa0\xfb\x9d\x1d\xda\x70\xd4\x01\xa7\xd5\x01\xa7\xd7\x81\xa6\x23\x86\x9d\x11\x94\xaf\xbe\xea\x03\xfc\x90\x8e\x4c\x03\xf6\x0d\x33\x1e\xb2\xfc\x29\x1c\xad\x55\x2c\xb1\x6e\x39\x0a\x27\xb1\x8f\x3d\x91\xe6\xe5\x69\x32\xc4\x5c\x57\x44\x7e\xdb\x49\xaf\xf0\x89\x02\x89\x16\x2c\x33\x25\x7d\x15\xd5\xb2\xd9\x3e\x36\xcd\x00\x52\x93\x38\xf6\x43\x18\x52\x48\x21\xc5\x45\x1b\x3e\x2c\xd3\x55\x67\x5d\x87\xc3\xda\xc9\xe9\xe8\x70\xb6\xa8\xf0\x3e\x68\xd4\x0c\x42\xe8\xc0\xa8\x79\x8b\xe5\xb1\xe1\x1a\x27\xea\x35\x60\xfc\xed\x54\xbd\xcd\xc4\x9b\xb1\x7e\xbc\x47\x54\x96\x8f\xe6\x8c\x2d\x93\x81\xfb\xe5\xf0\xcb\xe1\xf0\xcf\x2f\xc9\xc8\xc4\xd5\xd4\x7c\x7f\xe2\xed\xcf\x63\x3a\x25\xc6\xf7\x26\x35\xbf\x37\x4e\xf9\x8f\x71\x72\xe8\x9d\xea\x65\x3f\xd0\xa3\xb6\x5c\xc6\x2f\xe3\x68\x4c\x13\xe1\x82\x14\x0e\xec\x27\xf5\x27\xfd\x4e\x20\x23\x6c\xb5\xba\x5f\x63\xeb\x6b\x12\x85\xe2\xc6\x89\x35\x0e\xa8\x17\xbf\xf5\x43\x4a\x0e\x1c\x78\x42\x19\x95\xbd\x8d\xee\xa2\xf2\x7e\x0d\x07\x4e\x81\x42\x7d\xa8\xa2\xb1\x1c\xf0\x51\x5e\xd8\x91\x01\x0c\xbe\xd8\xad\xd6\x97\xe1\x21\x16\x47\xa7\xc9\xdc\x9f\x32\x94\xc5\xc9\x91\xce\x9b\x85\x13\x28\xad\x22\x87\x5f\x62\x75\x63\x40\x5d\x52\xf6\x88\xbf\x15\xfe\x20\x1b\x62\x33\x62\x5f\xcc\xd3\x30\x3b\x9e\x5a\x0b\xd3\x19\x56\xab\x31\xc1\xa8\xcc\x7b\x8b\x5e\x37\x01\x2e\x46\x24\xc3\xd0\x7c\x9b\x8c\x55\x8c\x94\x08\x12\x8d\x20\x8d\x38\xf0\xac\x34\x94\x95\x48\x38\xd5\xd2\x45\xc8\x85\x88\xf1\x26\x42\x00\x7b\x96\x0c\x5d\x5b\x41\xec\x01\xb5\xfc\xe4\x15\x87\x44\xc2\x01\x5f\x1e\x64\xae\xc0\x19\x95\xed\x8f\xca\x6c\xcf\x69\x7e\x98\xff\x88\x91\xeb\xc8\x9f\xa8\xdd\x96\xfb\xb5\xcb\xb0\x95\x26\xf4\x42\x06\x0d\x4a\xd4\xc7\x03\x42\x98\x9e\xcc\x99\xa5\xbd\x0a\x0f\xa6\x57\xf4\x8e\x84\x03\x15\xc7\xdf\x35\xc4\x30\x67\x80\x27\xfc\xe6\x73\x36\xb9\x14\xa6\x33\x69\x2b\x79\xa9\x7e\xf5\xb9\x32\xfb\xb2\x99\x92\x33\xd3\xd5\x19\x3b\xa1\xe3\x28\xf6\x78\x75\x24\xd4\x8d\x97\x5c\xa8\x8a\xd3\x89\x7b\xe0\x80\xe2\x5d\x45\x24\x3d\x2f\x6b\xb7\xf5\x5a\xd8\x2e\x0b\xff\xd9\xe8\xf0\x4f\x34\x3c\xf8\x72\xdb\x1a\x37\xbe\xdc\xb6\xa6\xa3\x3a\x46\xc3\x2f\x93\x63\xf9\x7b\xdb\xb4\x1b\x5f\x6e\x9b\xe3\x51\x7d\xf8\xe5\xb6\xcd\x9f\x7b\x74\xc4\x3f\x24\x5f\xce\x46\x75\x7c\xb8\x90\x77\x40\x93\x3c\x1e\xe0\x5e\x5e\x06\x49\x86\xed\x91\xbc\x47\x4d\x92\x61\x73\x94\xb9\x81\x39\x96\x31\x97\x0c\xe3\x80\x90\x44\xde\xa4\x5f\xc8\xe7\xd6\xa8\x40\x53\xba\x59\xea\x89\x71\x58\x88\x65\x51\x7b\xa1\x4f\x1c\x67\x2e\x79\x4e\xed\x63\xd9\xae\x01\x49\xb3\xce\x03\x63\x22\xf6\x3f\xde\x84\x0c\x05\xa2\x50\xb9\x32\x1d\x63\xb9\xd3\x35\xc6\x95\x6a\xcc\x46\x11\x7b\x99\x51\x8c\x53\x64\xd1\x40\x8c\xcb\x28\x98\x18\x39\x50\xb3\x1a\x68\xe2\x2f\x0a\x98\x56\x25\x88\xcf\xbc\xc0\x1f\x17\x50\xed\x4a\xa8\x34\x9c\xd0\x38\xf0\x43\x5a\x00\x76\xaa\xc9\xe2\x43\x7d\x01\xd4\xab\xa6\x4b\x5d\x86\x2c\xe0\xfa\xd5\x70\x73\x7f\x32\xa1\x61\x01\x76\x54\x0d\xc6\x57\x97\x57\x94\xab\x97\xe9\x6c\xae\x55\xf8\x48\x67\x76\x89\xa9\xed\xe2\xd3\xe5\xc6\xa7\xf1\x29\x69\xd9\xb5\xda\xf8\xa4\xd5\xcf\xf3\xfa\x43\x7b\x34\x1c\x3f\x73\xec\xd1\x30\x1a\xe9\x90\x47\x02\xf2\x48\x87\x74\xaa\x21\xdb\x02\xb2\xdd\xcf\x0b\xdd\x89\xd3\xb1\x05\xa8\x63\xeb\xb0\x55\x58\x5b\x82\x6b\xab\x55\x5b\x72\x4f\x05\x66\x96\xa9\x7b\xc2\xe6\x50\x09\x29\x71\xe4\xc7\x79\x21\xa4\xa2\x2f\x74\x84\xb3\xbf\x5a\x6d\x0b\x70\x52\x48\x70\x9e\x43\x64\x99\x88\xa0\x35\x93\x13\xd2\xec\x74\xb0\x3f\x45\x6a\xf0\x5e\x92\xc9\x29\x71\xba\x03\xb9\x6c\x58\x4a\x4d\xaf\x61\x98\x13\xd7\x1f\x4e\x4e\x7b\x03\xc7\xb5\x47\xc3\xc9\xb3\xfe\xc8\x12\x83\xd5\xde\x74\x90\xf1\x6b\xe9\x66\x75\x5c\x4a\x33\xb0\x0a\xdd\x46\xc5\x38\xd6\xb5\x48\x84\xa1\xc0\x51\x91\x65\x38\x19\xb9\xa5\xde\xb5\xf5\x39\x37\x3a\x33\x9a\x5b\x5c\x68\xc9\x5a\x2d\xaa\xb8\x00\xd7\x95\xa9\x77\xbb\x38\xb6\x10\x1c\x5b\x08\x8e\xd5\x6a\xd7\xe2\xed\x5a\xbd\xdd\x89\xb7\x3b\xc9\x4d\x51\xe4\x8c\x2c\xa4\x7a\x79\x2d\x7f\xee\xf6\xc2\xc1\x74\x80\xb2\x9a\x4a\xfe\xe6\xe3\xb5\x01\xdb\x0b\xa0\x19\x76\x51\x56\xf3\x6a\xf0\xcb\x0d\xf0\x82\x91\xb3\x9c\x67\xb3\x35\xff\x4f\x33\x53\x25\x24\x5b\x6c\xd5\x6a\xfa\xfb\xe5\xc6\x7b\xd1\x2d\x07\x9e\x8b\xbc\xbc\x79\xa6\x33\xf0\xf2\xc6\xb8\xe4\x2f\xdb\xcb\x36\x3d\x45\x40\x3f\xb4\xae\x03\x4f\x1f\x02\x36\xca\x06\xcf\x2a\xcd\x4f\x5c\x17\xf3\xaa\x27\xec\xc7\x95\xa5\x3d\xa5\xd6\x29\x27\x03\xd5\x6a\x8a\xcc\x25\xf4\x1a\xa9\xd4\x64\x9b\x92\x62\xfc\x2f\x14\x0b\x95\x6e\x18\x62\xaa\xf1\xcb\x64\xe6\x99\xb2\xc9\x6c\x4f\x7a\x6f\x2a\x4f\xfd\xca\xec\x5b\x38\x4d\xbc\x5f\x43\x50\x11\xe7\x64\x38\x82\x58\x29\x12\x85\x33\x50\x8a\xa9\x35\xf7\x92\x0f\x37\x61\xbe\xc7\x15\x63\xae\x57\x48\xcf\x86\x13\x8f\x79\x0d\xc3\x8c\xcd\xef\xb9\x3e\x1d\x6e\x2c\x6f\xe9\x30\x1e\x61\xf3\x7b\xe3\x7b\xcd\x1c\x30\x9b\x02\x07\xc6\xbe\x61\x32\xa5\x17\xed\x1b\x98\xeb\xfe\xf9\xa6\xac\x90\x18\x14\x0d\x90\xf2\xbb\xc8\x13\x4c\xa3\x31\x9d\xe5\x71\xc2\x89\x5f\x6a\xf9\x5a\x0d\xa5\xc3\x0d\xc9\xe5\xe0\xa3\x0d\x38\x28\xbf\x8a\x41\x1c\x63\x37\x73\xd4\x28\x15\x9a\x78\x76\x89\x0c\x53\x96\x89\x0d\x2c\x9c\xa5\x6f\xd2\x73\xc9\xe9\xb9\x2c\xd1\x73\xf9\x18\x3d\x97\x92\x9e\xcb\x32\x3d\x5b\xfb\x0e\x1a\x3d\x97\xde\xf8\x6a\x26\x5c\x2e\x34\xca\xa4\x5d\x16\xa4\x15\x02\x2c\x48\x54\x14\xca\xb2\x39\x68\xf1\x1d\xbb\x52\x01\x20\x9c\x5a\xbd\xcf\xa9\x2c\xd3\x28\x64\x8d\x1b\xea\xcf\xe6\xcc\x15\x80\xd8\x15\xca\xc0\x2e\x78\xe5\x7c\xcb\xb5\xad\x0e\x07\x55\x4a\xc1\x83\xd8\x65\x48\x56\x05\x89\xdd\x7c\x4e\xdf\x99\x49\xe8\xdd\xae\x08\x06\xc4\x90\x63\xdb\xcf\x30\xcf\xa6\xa6\xf8\x5d\xb9\xae\xfd\xc4\xbf\xf4\x03\x4e\x9b\x82\xc4\xee\xc6\x7c\xbf\x2b\x2b\xa3\xb7\xac\xa1\xa9\xad\x5c\x7d\x69\x64\x99\x8a\x86\xd9\x04\xdb\x60\x34\x86\x68\xf0\xfd\x49\xb2\xf4\x42\xb9\x39\xc5\x3b\x47\x52\xc8\x3a\xef\x12\x66\x80\x52\x6c\x1a\xa7\x3c\xa7\xea\xb8\x7c\x19\xca\xf3\x9c\x1a\xae\xca\x2c\xd8\xc5\x33\x67\x0b\x88\xe3\x27\x64\x16\x1b\x29\x74\x8d\xf0\x1e\xb5\xe8\xed\x32\x8a\x59\x42\xa2\xed\xcb\x9c\x79\x2c\x90\x66\x75\x68\x87\x98\x14\x4b\xd3\x09\x0d\xfc\x85\xcf\x68\xbc\x5a\x19\x96\x01\x3e\x61\xd6\xc2\xbb\x7d\x49\x97\xc2\x59\xc6\xfd\x7a\xf3\x46\xf4\x3e\x45\xd2\xfb\xfd\x7d\x4a\xd2\xd5\xca\xc9\x76\xcb\xaf\xe8\x5d\x82\x3c\x6c\x4d\xa3\xf8\x55\x29\xb4\x76\x20\xcb\x1c\x13\x6f\x18\x8c\x60\x4a\x98\x95\x78\x53\x5a\xab\x95\x3d\x3b\x8f\x31\xcc\xd5\x99\x6d\x85\xcf\x27\x19\x7c\x6c\x8c\x61\x42\x42\xfe\xb3\x24\xc9\x20\x31\x63\x33\x70\xc5\xad\x8c\x83\xa9\xba\xe2\x6f\x0c\xa5\xd3\xe2\x7d\x89\x69\x24\x66\xf2\xd5\x2a\x4f\x16\x65\xc9\x54\x5c\xab\xe9\x94\x8f\x71\xe1\x47\xfd\xa0\x60\xc1\x6a\x95\x9e\xf8\x38\x77\x2d\x83\xc6\xb0\x84\xd4\x74\xf0\x5e\x34\x5c\x8e\xc8\x58\x84\xdf\xc3\x10\xad\x8b\xe6\xf0\xf9\x38\x14\x78\x8c\xd1\x50\x3c\xa7\x61\xf6\xa6\x71\x50\xf3\x36\x88\x62\x12\x57\xb6\x44\x44\x62\x2b\xba\xa6\xf1\x4d\xec\x33\x79\x8c\xe1\xf1\xe6\xe0\x4a\x96\x70\xc7\xbc\x55\xd7\x03\xf2\x18\x03\x59\x5e\x13\x56\xc8\x85\x76\xb9\xf4\xbd\xf0\x0e\x5e\x71\x84\xb6\x5a\x35\x9c\x03\xb2\x11\xb8\x70\xb5\x8a\x2d\x49\xc2\x80\xba\xf9\xb5\x58\x9d\xa9\x0c\xcb\xf0\xf7\x95\x1b\x2c\x79\x08\x8a\x6c\xe2\x58\x57\x08\x8f\x76\x69\x21\x25\xa1\x5a\xbb\xf9\x18\x02\x92\xe8\xda\xd6\x98\xbf\x8a\xe0\x5c\x53\xe2\x1d\xe7\x2b\xe6\xf1\x71\xa6\xe7\x3e\xc2\x98\xe9\x30\x18\x71\xe1\xfa\x06\xf9\x11\x72\x17\x49\xb9\xcb\x0b\x14\x78\x64\xfd\x8e\x91\xf8\xb8\x5a\x71\x20\xa9\x11\x89\xaf\xb5\x9a\x28\x8d\x64\xae\xd8\x73\xbf\xde\x63\x8d\x9f\xf7\x6b\x77\x28\x2a\xc3\x41\xa1\x58\x5c\xd6\x6a\x68\x57\xcd\xf1\x5a\xa0\xa5\x88\x0d\xc3\x91\xd8\x54\x01\x6f\x5d\x1e\x1a\xf0\x7d\x21\xa6\x55\x7b\x33\x62\xb6\xa3\x92\xda\x03\x52\x72\x5e\x5f\xe9\xe6\xbe\x04\x61\xf9\xc9\x3f\xd2\xe9\x94\xc6\x1b\x6e\xef\xf3\x74\x11\x38\x7b\x6b\xa8\xda\x0a\xf2\xa1\xdc\x6a\x57\x7a\xd4\x43\xde\xff\x66\xce\xfd\xa3\x8a\x9b\x13\xdb\xda\xdb\xbd\x76\x11\x30\xe6\x5d\x82\x6b\x95\xc3\x30\xdf\xa6\xe0\xcf\x59\xc3\x66\x4a\xe9\x30\x1c\x91\x7b\xdf\x0d\x21\x70\x0f\x1c\x50\x1f\xdd\xfb\xf5\xba\x08\x77\x18\x8e\xa4\xf0\xfb\x59\x5e\xe0\xe3\x55\xf6\x1c\x73\x05\x24\xe0\x8a\x72\x9e\x96\xfb\xdf\xb4\x16\x84\x42\x6c\x8d\x09\x83\xd8\x9a\x6c\xef\x92\x5b\x91\x10\xb7\xd5\x6a\xd7\x49\x2a\x83\xfb\xe2\x88\xd6\x3d\xb0\x45\x2c\xc7\x50\x84\x8b\xb5\xca\x71\x94\xc4\x4e\x03\xcf\x3d\x29\x7a\x4a\xc6\x69\xc5\xe5\xac\x2b\x9f\x7b\xb3\x7c\x4c\xdf\x2a\x71\x1b\x16\xee\xa5\xa2\x6f\xbc\x8b\x26\x69\x40\x8d\xf5\xee\x83\x5f\xe3\xe2\x82\x26\x0a\x2c\xcb\x76\x60\x4b\x72\xd9\xb6\x7f\x4c\xa7\xc6\x84\x47\x98\x58\x38\xd9\xe9\xd7\x58\x3e\x7f\xf0\x41\xa3\x5d\x2b\x39\xd7\xe7\xe2\x5d\xab\x51\x2e\x4f\x45\x29\x45\x06\x39\x95\x2b\xc2\xa4\x1f\x61\xe1\xf0\x08\xcb\xe8\x8d\x5c\x1c\x76\x90\x1d\x82\xa1\x1c\xc0\x18\x9b\xdc\x96\x35\xa0\x6b\x0c\x4d\x41\x8c\x0a\x03\x91\x33\xb8\x38\x57\xf1\xe5\x42\x21\xb6\x26\x88\x77\xcb\xed\xf3\x1e\x19\x36\xd3\xba\xf4\xc3\x89\xa0\x0b\x7c\xcd\x18\x98\xf3\x27\xac\x58\x8e\x6c\xd4\x76\x50\x71\x7d\x28\xf3\x1c\xbd\xae\x88\x94\x49\x73\x21\x2e\xbc\xb8\x32\x0c\x8c\x17\x17\x55\x7b\x22\xd9\x1a\xff\xcb\x0b\x1f\xd9\x11\x94\xb7\x39\x6b\x29\xc2\xf4\xa2\xd8\x4a\x88\x83\xd7\x68\xf8\x0d\x63\x68\x49\xa9\x19\x94\x55\x1c\x8a\xdd\x8a\x89\xe4\x91\x99\xa9\x72\xd0\x2c\x2c\x30\xb5\xb1\x31\x7c\xda\xd8\xe8\xa1\x8d\x61\x11\x57\x8d\x8b\x5c\x2a\xff\xa7\x8d\x89\xa2\xb0\x3c\xd8\x89\x4f\x62\xd4\x94\xf1\xc4\xfa\x18\x12\xe1\x7f\x04\xd2\x1d\x07\xcd\xba\xba\x6b\x05\xd1\x58\xae\xf6\xfd\x62\x47\x3d\x1c\xd8\x6e\x08\x1e\x89\xad\x89\x2f\xcf\x9e\x21\x29\xbe\x7a\x03\xc7\xb6\x5d\x4f\xdc\x7e\x64\xf3\x98\x26\xf3\x28\x98\x40\x50\x00\xa4\x03\xab\xeb\xa6\x30\x26\x31\x57\x09\x3f\x72\x45\x2e\x0e\xdf\xaa\x50\x36\x05\xd8\x78\xd0\x6a\xba\x63\x98\x93\xd8\x1a\x7b\x09\x3d\xa3\x61\xe2\x33\xff\x9a\xc2\xa4\xd8\xbe\x9f\xd7\x6a\x73\x58\xf2\x82\xa2\x2b\x1a\x9e\xd1\xa5\x27\xd8\x0f\x8b\x02\xcd\x72\x70\xb8\x6f\x1e\xce\xdc\x25\x5c\x93\xd8\x9a\xfa\xe1\xe4\x79\x10\xbc\x13\xd1\x25\x13\xb8\x2b\x50\x5d\xd7\x6a\xd7\x30\xe3\x34\xf9\xa1\xf8\xfc\x62\xee\xc5\x8a\xaa\xcb\x02\xdd\x6c\xe0\xb8\x33\xb8\x20\xb1\xe5\x4f\xe0\xa6\x48\xbf\x90\x16\x51\x17\xf0\x8a\xc4\x42\x51\x83\xdb\xe2\xe3\xab\xc1\x70\xe4\xbe\x82\x33\x12\x5b\xc9\x3c\x4a\x83\xc9\x59\x14\x33\xf8\x50\x00\x9c\xad\x56\x67\xf0\x9c\xc4\xc2\x06\x39\x84\xab\xe2\xcb\xf3\x41\xe4\x3e\x87\x73\x9e\x33\x8a\xf9\xb7\x17\xc5\xb7\xf3\xea\x18\xcb\xd4\x4a\xc6\x51\x4c\x1b\x4c\xfe\xae\xdd\x73\x78\x97\xb1\xc8\xff\x9b\xc2\xa7\xa2\xd2\xef\x6a\xb5\x77\xf0\x51\x34\x04\x1b\xcf\x9f\x07\xc1\x39\x07\x4a\xe0\x6b\x01\xf2\xb1\x56\xfb\x08\x2f\x79\x7d\xc3\x71\x90\x4e\x68\xc6\xba\xf7\x05\xc8\xcb\x5a\xed\x25\xbc\x29\x40\xce\x78\xb1\xf0\xb6\x00\x78\x53\xab\xbd\x81\x1f\x48\x6c\x5d\xd3\xf8\x32\x4a\x28\xfc\x5d\x7c\xfb\xa1\x56\xfb\x61\xef\x7f\xa2\x65\x43\xb4\xe4\xc9\x09\xb9\xcf\x24\xdb\xf5\x21\x13\x63\x37\x81\x5c\x62\xdd\x00\x36\xa5\xd3\x9d\x82\x9f\xbc\xd0\x65\xd1\x9d\x40\x59\xf2\xdc\x05\x94\x45\xcc\xbd\x83\x6d\x81\x72\x2f\xc1\x9f\xb8\x37\xc0\xe5\xc4\xbd\x85\x32\x67\xdd\xf7\xa0\xf3\xd1\x7d\x0b\x85\xcc\xb8\x1f\x40\x48\x88\x7b\x05\x52\x1c\xdc\x17\xa0\x78\xea\xfe\x0d\x59\x0b\xbb\x9f\xa0\xdc\x9e\xee\xd7\x35\x64\xdb\xbb\x2f\xa2\x40\xc5\x11\x45\x4c\x0e\x0e\x2c\xb7\x5b\x27\x85\x2d\x41\x01\xf6\xd8\x49\x69\xe0\x27\x8c\x50\xa0\xf9\xce\x5f\x42\xa5\x11\xe6\x76\x36\x39\x53\x6d\xc6\xd3\x3d\x75\x34\x6d\x3f\xff\x38\x74\x46\x03\xfd\xc5\xbd\x17\x2b\x39\xf7\xc0\x59\x4b\x7f\xcd\x17\x41\x34\x43\xdf\x37\xb2\xff\xbe\x84\x67\xa2\xdc\xfd\xa5\x6c\x32\x77\xdf\xf8\x9e\x8f\x9c\x63\x8f\x21\x0a\xdf\x1b\xdf\x2b\x0f\x75\x6a\x9b\xf3\x62\x19\xf3\x36\xa3\x32\x13\x8d\x13\x19\xf0\x3f\x1f\x49\x54\x2a\xf8\x7c\xd0\x48\x83\x20\x4b\x81\x48\xe5\x97\xb5\xe4\x33\xb8\x8c\x13\x2f\x37\x82\x12\x48\x48\x64\xc5\x34\x49\x03\x96\xe8\xb1\xdd\xad\x8b\xb1\x0c\xc7\x20\x1a\x95\x2f\xf7\xcb\xf2\xa8\x0d\x0c\xb5\x9a\x2a\x81\x2f\xf3\xc4\x09\xab\xa8\x79\xad\x56\x44\x9a\xca\xc3\x16\xa9\x2f\x28\x21\x49\xee\xc8\x4e\xa5\x62\x55\xc0\x85\xb4\x19\x46\x49\xb1\x37\xbb\x55\xf9\x0a\x83\x11\x69\x15\xb2\xd5\x56\x76\x65\x5b\xd9\x7a\x5b\xd9\x23\xd7\x30\x80\x91\xe1\x48\x6c\xd5\xea\x95\xcc\x24\x14\x17\x76\x22\xd9\x19\xf9\x36\x5c\xde\xa9\x44\x1c\x7d\xb1\x76\x57\x96\x8a\xe1\x49\x74\x1c\x9a\xc4\xc1\x6a\x5f\x95\x0f\x0a\x3e\x8a\x45\x50\x7d\x0d\x4d\xae\x35\xdd\x97\x1b\xd5\x65\xa0\x37\xa9\x2b\xb3\xd3\x72\xde\x75\xc1\xad\x1d\x02\xfd\x6f\xf2\x68\x38\x82\xaa\xbe\x50\x16\x7a\x89\x07\x94\xd0\xf2\xae\x96\x85\xa0\x92\xdc\xdd\x8a\x8d\x2d\xa2\xe3\xe5\xeb\xfb\x48\x44\xe9\xcb\xf9\x16\x9d\x78\xc7\x91\xe0\x9b\x10\x0c\x2f\xf4\x82\xbb\xbf\x29\x92\xd5\xcc\xea\x17\x0f\xa3\x11\xc4\x74\x1c\xc5\x13\x37\x02\xb1\x39\xe1\x46\x6b\xb8\x97\x42\xfd\xce\x5b\xba\x21\x28\x01\x77\x7d\xd8\xe0\x2c\x2d\x73\x96\xad\xf3\x26\x50\xfd\x43\x1e\x6c\xe7\xf9\xd7\xeb\xc2\x7a\xe7\x7e\xad\x7c\xac\xe4\xf4\xa6\x27\xc1\x71\xca\xe9\xcd\x80\xc6\x24\x1e\xa6\x23\x98\x12\x1b\xe6\xa4\x24\x31\x7c\x28\xcd\xb2\x4d\x4f\xe6\xc7\x53\xb3\x38\x67\xdb\x02\x1c\x4e\x4b\xcc\xcb\x75\xf4\x89\x98\x7a\x92\xe1\xc4\x0a\xbd\x05\x1d\x11\x45\xb4\xeb\x34\x26\xaa\x7f\xaf\x56\xce\x1a\xb2\x97\x13\x62\xaf\x56\xd9\xcb\xa9\xb3\xed\x72\xfe\x27\x7a\xb7\x2f\xbf\xee\xcf\xbd\x64\x9f\x45\xfb\x97\x74\xff\x74\xdf\xde\xf7\xc2\xc9\xfe\x09\xd9\x77\x0c\xbc\x37\x21\xb2\x34\x79\x56\x96\x0c\x27\x5a\xb1\xd9\x48\x57\x6a\xa8\x89\x6a\xa7\x52\xad\xc4\xac\x80\xc6\x30\xc1\x59\xd3\x8d\x55\xd3\xa5\xff\x7a\xd3\xad\x37\x9a\x2e\xd1\xdb\x2d\xef\x1d\x8a\xb8\x6a\xa3\x9d\xac\x8f\x0b\x23\x5f\x42\x2d\x8f\xeb\xe8\x22\xda\x62\x59\xa1\x6c\x38\x6e\x28\x1c\xf5\x0a\x24\xc2\x9d\xa9\xac\x87\xf0\xbf\x26\x6a\x02\x01\x61\x9b\xa3\xf3\xb8\xc0\x11\x70\x1d\x2b\x10\x7b\xa1\xa5\xf1\x7a\x5e\x80\x4c\x39\xc8\x14\x26\x84\x59\x39\x47\x60\x59\x7c\x9f\x0c\xee\xd7\xee\x04\x16\xf9\xf7\x04\xae\x8b\xaf\x0b\x9e\x7b\x21\xf6\x0a\xc5\x5e\x8e\x8a\x87\x75\x47\x0e\x1c\x98\x91\x86\x03\x97\xc4\xae\xec\x92\x91\xb2\xbe\x13\x13\x96\xf1\x25\xfc\x89\xde\xb9\xfb\x46\x36\x37\x19\xc2\x7f\xae\xb8\x2f\x16\xab\x29\xea\x82\xcc\x2d\x35\xbd\x44\x38\x1f\x43\xe5\x7c\xf7\x43\x1a\x04\xfb\x8c\xde\x32\x7d\x7e\x8b\xe0\x7b\x03\xf6\x85\xb6\xe7\xee\x7f\x8f\xb3\xe4\x0b\xa9\x00\xe2\x8d\x99\x26\x1f\x84\xf3\x61\xe2\x86\x44\x4f\x19\x85\x5f\x91\xe1\x08\x6e\x89\x7d\x7c\x7b\x32\xce\xfa\xda\x6d\xde\xcf\xce\xc8\x78\x78\x3b\xd2\xe7\xe6\x2f\xe1\xc7\xed\xb9\xf8\xcc\x52\x13\xb4\x9a\x93\x33\x1a\x3e\x70\x3e\x3e\x27\xf6\xf1\xf3\x93\x9b\x0c\xf9\xf3\x1c\xf9\x15\xb9\x19\x3e\x1f\xc1\x39\x39\xcb\x38\x73\x85\xe1\x05\xb9\x5f\xef\x9d\x5b\x7e\x22\x34\xa7\x01\x7a\x31\xbc\x1a\x91\x73\x59\x69\x10\x4e\x8d\x3f\xf0\x3f\xaf\xe4\x24\x71\x9e\x71\xc3\x95\x80\x4e\x99\x2b\x65\x8d\x69\xb5\x52\xb9\x9c\x7c\x1a\x15\x55\x12\x5f\xf5\xea\x5c\x55\xb3\x9e\x97\x80\xf1\xfa\x43\xad\x86\x2e\x79\x25\xd6\x33\xf2\x6a\x68\x17\xf6\x96\xef\xc8\xab\xcc\x4b\xcc\x27\xe2\x1c\x7f\x3a\x79\x77\xfc\x89\xc3\xcd\x4c\xf2\x6a\xf8\x69\xb4\x37\x3b\x24\xef\xb4\x72\x0d\x51\xae\x2c\x66\xdf\xbb\xa6\xb1\x37\xa3\xae\x01\x33\xa9\xc0\x7d\x24\xaa\xa5\xf7\x66\xa7\x0d\xa7\x56\x43\x1f\x09\xfa\x68\xce\xf0\x61\x53\xa7\xdd\x38\xdb\xc8\xfd\x51\x4a\xdb\x57\x72\x50\x29\x1e\xab\xd5\xc1\x83\x0c\xba\x3c\x25\x99\x14\x94\x65\xd4\xf8\x12\xbe\x98\xd3\xf1\xd5\x7e\xa6\xd0\x16\xc2\xfe\x15\x63\x40\x77\xab\xd5\x45\xd6\x68\xb8\x56\xfb\x2a\x5b\xf8\x25\x59\x0e\xd3\xd1\xde\xcb\xc1\x4b\x2b\x4a\xd9\x32\x55\x53\xbb\x18\x64\x62\x28\xc6\x0d\xd7\x57\x03\x4d\x04\x92\xeb\x1f\xa5\xb2\x4b\x27\x6f\xc2\x89\x3f\xa6\x89\x7b\x61\x95\x13\xd6\xd8\x45\x1c\x37\xb9\xf7\x19\x5d\xb8\x1e\x48\xfc\xee\xf0\x3f\x81\x7b\xb4\x86\x6b\x49\x29\x2f\x02\xe3\x75\x6e\xf3\x90\xa0\x08\xe7\x13\xd7\x7b\x62\xc3\x1b\x12\x65\x82\xfd\xfe\xe4\xcd\xf1\xfb\x1d\x13\x71\x89\xa0\xf7\x19\x41\xc3\xf7\xf9\xa4\xec\x55\x8e\xec\xcb\x7c\x70\xbe\xde\x1c\xd9\xc7\xe5\x91\x7d\xbe\xd6\x95\x1b\x5d\x2d\xad\x1e\xc3\x4b\x2d\xfb\x25\x94\x61\xc5\xfc\x70\xa6\xa4\xfe\x4b\x68\xe8\x76\xbf\x36\x84\xa4\xb8\x52\x72\x12\x1e\xc7\xa2\x13\x17\x6e\xe3\xd9\x30\x1e\xa9\x26\xd6\x3c\xc9\x80\x47\x1c\x48\x88\x70\xb3\x76\x9c\x9e\x44\x72\xde\x57\x66\x5f\x74\x40\x87\xfe\x30\x1d\xf1\x69\x64\x64\x65\xb3\x23\x8c\x89\x30\xdc\x0a\x06\xe2\x9b\xa4\xa6\x78\x5c\xad\x2c\xdb\x76\x70\x3d\xd8\x73\x0e\x38\x50\xe6\x7c\xde\x0f\x51\x02\x63\xec\x22\x01\x1a\x8a\x8a\x93\x31\x78\x75\x32\xc6\x6b\x41\x9c\xc8\x4e\x1c\xe1\x51\xcb\x13\x6b\xc2\x8c\x01\x22\x24\xa7\xae\x19\x46\x71\xa5\x25\xe9\x06\xcb\xb8\x56\xef\x87\x33\xcb\xb2\x2c\x03\x03\x95\x07\x38\x65\xed\x5f\xac\xe6\x34\x0d\x3d\x73\xbb\xbb\x6b\x11\x55\xa1\x5c\xab\x85\x60\x36\xe9\x0e\xf5\xb1\x58\x90\xf1\x41\xca\x3d\x7f\x34\xe0\xc7\xb3\x0f\xef\x2d\x39\x55\xf9\xd3\x3b\x44\x61\x6b\x09\xae\x05\x2b\xe5\x6b\xc5\xec\x0c\x83\xc8\xaf\xe2\xf0\x2a\xce\x0f\xaf\xf2\x63\xb0\x3d\x15\x7b\x90\xe5\xde\xb0\xd9\x1a\x63\x90\x67\xf5\x6a\x33\x2a\x23\x2d\xa3\xbc\xbc\x00\xae\xd5\x7c\x89\xa2\x5a\x95\x90\xa2\xb3\xc7\x54\x4f\x4c\x74\x33\x76\xbe\x4e\xf0\xf5\x75\x82\x2f\xd7\x09\x2a\x42\x17\x5f\x21\x70\xb6\x71\xc5\x3c\xda\xe8\xc9\x99\x3b\x05\x19\x7a\x94\xdc\xfb\xaa\xc7\x6f\xc2\x65\x1d\x52\x6a\x2a\xeb\xbd\x88\x0b\xa5\xf0\xe4\x77\x45\xef\x88\x78\xc3\x10\x6d\x1a\x81\x18\x45\x9f\x36\x70\xad\x16\x69\x8a\x90\x1c\xb2\x3d\x2d\x85\xe8\x9f\xf9\xfa\x4f\xd5\x54\x72\xc5\xe3\x02\xb8\x31\xa5\xeb\x1b\x06\x3b\xd8\xa7\x76\x83\x88\xda\x1d\x5a\x17\x7d\x56\x2e\x12\xe8\xd6\x22\x41\x99\x0c\xd3\x61\xb4\x2d\x6b\xfe\x84\x2f\x3a\x2d\x3e\xa0\x92\x0a\x45\x54\x7e\xd9\xa0\x71\x82\xc5\x69\xa2\x9f\x73\xba\x38\x85\x94\x23\xb3\xcc\xb5\x86\x80\xd8\x30\xce\x47\x86\xe3\xe0\x64\x7c\x1c\x70\x82\xfc\x61\x30\x42\x09\xa4\x78\x4f\x4d\x0e\xa9\x0a\x1e\xa9\x5e\x65\x7e\x4d\xee\xf2\xde\x14\x44\xb3\x5d\xcb\xb7\xbd\xaa\x3e\x24\x8e\x1a\x64\xe4\x3f\x8a\xad\x20\x12\xc1\x13\x03\xde\x4b\xf2\xd5\x99\xb8\x80\x51\xab\x95\x99\xfc\xbf\xe6\xcd\x3a\xa4\x5d\x2d\x05\xb6\x65\xec\x90\xee\x36\x76\x68\x61\xde\x9d\x50\x5b\x6e\x1d\xf7\x30\x78\xff\xbf\xd9\x33\xde\xd8\xa9\xfb\x5f\x60\xd7\xf8\xff\xbc\x5d\x4e\xb5\xeb\xa8\x14\xfe\xf2\x40\xb1\x51\xc6\x80\xb9\xac\xec\x7c\xad\x94\x37\x8b\xb0\x4f\xa6\xb5\x1a\xd2\x3f\x3c\x0f\x96\x73\xef\x92\x32\x12\x95\x92\xf1\xee\xad\xcd\xff\x97\xbd\x37\xdd\x6e\x1b\x57\x1e\xc4\xbf\xfb\x29\x6c\xfd\xd3\xfa\x03\x62\x51\x22\x95\xa5\x6f\xd3\x46\x74\x9c\xad\x3b\xdd\xd9\x3a\x4b\x6f\x34\xaf\x2f\x2d\x41\x16\x13\x99\x54\x40\xc8\xb1\x62\xf1\xd1\xe6\xcc\x23\xcd\x2b\xcc\xc1\x46\x82\x14\x65\x3b\xbd\xdc\x6d\x7e\xf9\x10\x8b\x24\x50\x28\x00\x85\x42\x55\xa1\x50\xb5\xcd\x38\xb9\xc1\xe2\xea\x08\xca\x6c\xde\xb4\x8e\x62\x1d\x47\x42\x88\x39\x64\xbc\xd4\xe2\x6d\xb0\xe7\x69\x49\xd2\x6b\x4a\x92\x61\xe8\x95\x59\xd4\x5d\x3f\x8a\x94\xeb\x23\xaf\x0d\x12\x30\xe5\x39\x54\xa7\xf7\xac\xd2\x83\xf5\x7c\x94\xec\xb9\x3e\x5a\xf7\x4b\x2f\xfb\xd4\x58\xb7\x8c\xee\x95\x99\x5b\x25\xb5\xe6\x72\x12\x57\x8b\x77\x49\xe2\x6a\xad\xce\x49\x6c\x2d\xcc\xb1\xbc\xe2\x51\x5b\x13\x53\x12\xb7\xac\x81\xd2\xe7\xa5\xd9\x7e\xdb\x14\x42\x45\xac\x79\x45\xac\xcb\x1a\xb1\x36\xc8\x6e\xdc\x46\x76\xd3\xe2\xbf\x87\x37\xc7\x4d\x6f\x13\xd5\x83\x41\x78\xe4\x1e\x85\x47\xd1\xd1\xe0\xe8\xf2\xa8\x38\x42\x47\xf8\xa8\x77\xe4\x1c\x8d\x8e\xfa\x47\x47\x47\x7f\x3f\xba\x75\xb4\x8e\x06\xa7\x3b\x6d\xa7\xaa\x06\x46\xba\x69\x7a\x1c\xb6\x9a\x2d\x87\xb6\xd9\x72\x18\x05\x92\x2f\x42\x42\xac\x78\x8c\x55\x52\x24\x66\x62\x38\x96\x6f\x52\xe8\xac\x3b\x32\x41\x88\xb9\x93\x22\xed\xe5\x7b\x7b\x99\x74\xaf\x15\x94\x5b\xdd\xe0\x53\xe6\xbf\x6c\xc3\xfc\xa7\x9d\xdd\x32\xa1\x20\x6a\x29\x28\xac\xfc\xa6\xc6\x18\xc6\xd5\x42\x2a\xad\x56\x6a\xdd\xc5\xa3\xfe\xdd\xc0\x07\xb3\x1e\xe3\xe6\x32\xcc\x8b\x96\xb3\x60\xb3\xfd\xdd\x55\xdb\xdf\x3d\xbc\x65\x28\x55\xa6\xee\xea\x4e\x62\x56\xad\x9e\xda\xe6\xa6\xb6\xb6\xcc\x5e\x4e\xd6\xce\x26\xb6\x3e\xb1\xb5\x65\xd6\x0a\xab\xed\x69\xfd\x7b\x72\x4f\xcb\x9a\x6b\x6e\x73\x4b\xcb\xda\xf6\xa1\xda\xb6\xe6\xcb\x2d\x2d\x97\x69\xa2\xb4\xe6\x75\x4a\xa6\x32\x3b\x54\x29\xca\xc3\x39\x86\xe3\x2a\x8c\xed\x27\x12\x46\xf0\x98\x78\xfb\x8f\x0f\x56\xfb\x8f\xc5\x7c\x7c\x0a\x1f\x47\xca\xd8\x25\xb5\x80\x13\x35\x62\x17\x42\x4d\x80\x4b\x2a\xf6\xac\x3c\xf0\x74\xae\x15\x19\x1e\x41\x2e\xea\x13\xa0\x17\x0b\x3a\xe6\x74\x52\xbe\x3a\xaf\xd6\xf9\x5c\xdd\x58\x3b\xad\xb4\xb4\x0b\x38\xc5\x20\x1b\x40\x02\xbd\x79\x9c\xf3\xa7\x15\x8a\xce\x31\xc6\xc6\xf0\xf4\x47\xdb\xb5\x1a\x7d\x03\xa7\xb8\x28\x4e\x88\xeb\x5b\x96\xa9\x30\x82\x43\xe2\xc3\x07\x72\xec\xac\xe0\x2d\xf1\x0f\x0e\x8e\x5d\x1f\x1e\x12\x6f\xff\xe1\xc1\xf1\xfe\xc3\x9a\x82\xfb\x9c\x78\xf0\x9a\x7c\xd8\x7f\x7e\xf0\x7a\x1f\xdb\x88\x3d\xdc\x40\xec\xdc\x79\x7d\x1d\x6a\x07\xe4\x74\xf4\x9c\xbc\x0e\x3e\x90\xd7\xf0\xda\x0e\x7e\x87\x3e\xb8\xcf\xf1\x60\xe8\x3c\xc7\x3b\x1f\xc8\x6b\x9d\x85\xd7\x4a\x2d\x74\xee\xbe\x76\x7c\x0c\xef\xc9\x64\xb4\x0a\xca\xde\x89\x16\x57\xd8\x39\x86\x47\x44\xf9\x4f\xbc\x77\x86\x78\xe7\x51\xf8\xde\xf1\x23\x82\xfc\x83\x83\x87\xd8\xea\xf8\x0b\xf2\x7e\xff\xc5\x7d\xf2\x6a\xff\x85\x6b\x16\xe1\x53\xf2\xc2\xf5\xe1\x19\x61\x61\x19\x85\xfc\x29\x96\xab\xf8\x59\xb7\x8b\x3e\x85\x4f\x23\xe2\x63\x78\x14\xbe\x88\x08\x7a\x14\xbe\x70\xfc\xe8\xe0\xc0\x5f\xfb\xb8\xfb\x0c\x04\x99\x3e\xec\x76\xc5\xeb\x68\x4d\xd0\x4b\xf9\x75\xfd\x32\x7c\x11\x61\x59\x66\xad\xde\xa8\xda\xdd\xb7\xdd\x2e\x3a\x24\x57\x8f\xdf\xd3\xeb\x46\x4f\x0c\x9f\xdc\xd8\x4f\xc9\x21\xa0\x13\xf2\x14\x1f\x90\x73\x95\x63\x73\xa7\x36\x5a\xc3\xde\xb9\x7b\x82\x8b\x42\x39\x82\x56\x4d\x3a\xfe\xe6\xa4\x5d\xd7\xe8\xfd\x53\xdd\xc2\x4b\xf2\xa8\x68\x88\x03\x27\xf7\x49\x29\x10\xc8\xc3\xfd\xbe\xe7\xf9\xc1\x61\x93\x29\x25\xe8\x13\x9c\xe1\x26\x67\x6a\x77\x93\xa9\x36\x05\xde\x57\x68\x43\x5a\x2d\x78\x36\xf2\x02\x26\x1d\x90\x1b\xfd\x80\xac\x2a\x94\x8c\xbc\x20\x81\x58\x00\x68\x74\xad\x8d\x8d\xf1\x6b\xd8\x58\x3a\x28\x39\xcb\xb4\xca\x4e\x94\xbb\x55\x90\xe3\xf9\x68\xec\x4c\x07\xf3\x60\x3a\xf2\x83\xf1\x4d\x3a\x59\xad\xae\x3f\xfb\xb4\xed\x46\x27\xcf\x3e\x30\xc1\x02\x52\xe2\xaa\x3c\xb0\x70\x13\x8d\x39\xef\x76\x5d\x5f\x2a\x3e\x29\xc9\x82\x7c\xbd\x56\x4f\xeb\x35\x42\x09\xc9\x5c\x1f\xbb\xa9\xe3\xdf\x27\xbc\xdb\xd5\x06\x93\x30\x85\x24\xc2\xb2\x95\x52\x85\xa5\x61\xe6\xfa\x51\xb7\x9b\xb9\x69\xa3\xa8\x78\x8f\x81\xdd\xd0\x1b\xb5\x11\x00\xd9\xca\x6c\xeb\xc9\xa4\xb6\xea\x30\xb5\x5a\xd3\x29\x16\xfc\xbd\xb2\xd9\x79\xfb\xc9\x01\xdb\x4f\x1a\xa5\x12\x1c\xad\x05\x33\x64\x6e\xe2\xfa\x3b\x96\xd6\xbd\x6d\x3f\xf5\xb6\x6d\xa4\x1b\x8e\x9a\x4a\xa5\x84\x44\xae\x5e\x56\xda\x6f\x6a\xbe\xd2\x42\x9b\x84\x5c\xdd\x15\x95\xdb\x44\x26\x6f\x1f\x33\x2b\x5d\x1d\xe4\xe5\x63\x26\x03\x7d\x2a\x29\x83\x87\x71\x54\x1d\xe4\x2c\x71\x32\x45\xf9\x7a\xbd\x71\x1c\xb8\xac\x8e\xdc\xab\x77\xf2\x46\x1e\x5a\x56\xa6\x5d\x65\xad\x58\x6e\x58\x2b\x28\x5a\x86\xf3\x08\x72\x48\xb0\xba\x4d\x98\x77\xbb\x32\xc1\x42\xf9\x42\xdb\x69\x96\x55\x72\x50\xac\x0d\x1a\x89\xb1\xa1\x95\x02\x74\x21\xc7\x32\x8c\xa4\x68\x5b\x80\xed\xeb\xc8\x71\xd3\xf7\x71\x64\xdd\x64\x40\x38\x40\xa9\x20\xdf\x72\xa9\xa2\xa4\xc5\xab\x0d\x31\x92\xe1\x11\xd3\x76\x0e\x0e\x29\x0e\x18\x16\x3a\x4f\xe5\x84\x8f\x71\x81\xb5\xcf\xbb\x50\x35\x19\xf2\xef\x60\x44\x31\xfe\x22\x87\x68\xda\xff\x44\x4f\x16\xf1\xf8\xc3\xab\x6c\xbe\x9a\x26\xf3\xb9\x6c\x63\x42\x17\x8c\x8e\x63\x4e\xed\x35\x5f\x00\x15\x2a\xc2\x4c\x5e\xc3\x12\x44\x97\xcc\x27\x8c\xa6\xb2\x82\x79\x20\x61\x74\x85\x8b\xe9\x3c\x8b\x27\x74\xb2\xe1\xaa\x79\x4a\x79\x9b\x07\x64\x7f\x5e\x5c\xe5\xaf\x9a\xdc\x1c\x50\x22\x00\x6d\xf4\x54\xec\x8c\xb4\x65\x75\xb4\x04\x6f\x62\xc8\xbf\x87\x5b\xd3\xaf\xef\xa6\xe8\x92\x5e\xc4\x63\x2e\x9d\x65\x4d\x88\x80\x62\x27\xe9\x9f\xdf\x69\x2d\xde\x3f\xbf\xd3\x5a\x03\x92\xfe\xf9\xbd\x2d\x35\xee\x6d\xad\x41\x99\xcc\x4a\xde\x52\x2d\x11\x74\x27\xb0\x10\x7f\xef\x04\xf7\xb4\xeb\x82\x98\xc4\x92\x82\x6e\xd4\xf7\x76\x07\x49\x6a\x6c\x9c\x0f\xb2\x65\x3a\x89\x59\x42\xf3\x51\x07\x8d\x02\x34\x3a\x20\x47\x47\xf9\xfa\xef\x18\x8d\x48\x75\xa8\x1a\xc6\xee\xf4\xd0\x7d\x72\x74\x34\x09\xa2\x0e\x74\xf0\x5a\x94\xeb\xe0\xad\xdf\xd1\x48\x42\xb9\x85\xb1\xba\x5a\x07\x09\x11\xd0\x87\x77\x43\xcf\xbd\x1b\xad\x87\xa1\xe7\xde\x89\x8e\x8e\x26\x6b\xff\xe8\x68\x22\xfe\x86\xbe\xfb\x8d\x7c\x71\xa4\x62\x71\x1f\x1d\xf5\x6f\x5e\x1e\x5f\xde\x2e\x3a\x90\x11\x0b\x8d\xe8\xd2\x87\x3b\x45\x07\x62\xd2\x39\x4a\xd1\x51\x8a\x46\x41\xa7\x3a\xde\xed\x04\xf8\xf2\xeb\x42\xbc\xc3\xd6\xcb\x75\x80\xd7\xbb\xd7\xfc\x1b\x0c\x76\xfd\x60\x18\xdc\x0e\xee\x04\x77\x83\x7b\xc1\xd7\x41\xb0\xdb\x78\xf1\x37\xd5\x18\xae\xb7\x76\xaf\xde\x5a\x22\x5a\xbb\x79\xe3\x8d\x56\x03\xf1\xae\xf6\xe2\x6f\x2d\x2f\x6a\xcf\x7e\x7f\xd8\xbf\xdd\xbf\xd3\x8a\xdb\x5d\x81\x5b\x03\x39\x54\x2f\x85\x2f\x7d\x18\x16\xad\x38\xd6\x70\x0b\xd4\x3b\xeb\xc5\xd7\x0d\xdc\xe4\x63\xbd\xc0\x55\xb8\xdd\x11\xb8\x6d\x20\xe3\x81\x5f\x5c\x8f\xf0\x6d\x85\xb0\x85\x60\x60\x90\x2e\x5f\xdc\x6b\x20\xa8\xd0\x6b\x14\xb8\x0a\xc1\xdb\x5b\x10\x1c\xde\x00\xc1\x3b\x0d\x04\x83\x6a\x54\xf5\x8b\xbb\x0d\x04\x0d\x7a\x8d\x02\x57\x21\x38\xdc\x82\xe0\xed\x1b\x20\x78\xb7\x86\x60\x60\x4f\xbb\x7c\x71\xa7\x81\x60\x85\x5e\xa3\xc0\x55\x08\xfa\x5b\x10\xbc\x73\x03\x04\xef\x59\x08\x06\x75\xba\xf4\x03\x7b\x51\xaa\x17\x7f\xdb\x5a\xc0\x46\x30\x40\xf5\xf5\xa0\xf1\xb9\xbb\x81\xcf\x66\x29\x1f\xbe\x16\x18\xe1\xfa\xfa\x08\xea\x0c\x62\xb7\xed\x45\x0d\xb5\x5d\x6b\xc1\x62\xf4\x55\xe8\xb9\xdf\xc4\xee\xe7\x43\xf7\x37\xc1\xd6\x0a\x3c\xda\xca\x28\x36\xff\x0d\x06\xbb\x5f\x51\x3e\xf3\xec\x77\x5f\xf9\x47\xa9\x65\x53\x1a\x1c\xe5\xbd\xa3\xc1\xd1\xa0\xdf\xbb\x35\x38\x3d\x83\x4e\xed\x53\x3a\x38\x95\x6f\x38\x4b\xce\x90\x10\x00\xb7\xed\x27\x72\x87\x1b\xd9\x69\x45\xd0\x28\xf8\x7b\xc7\x1a\xb0\x5b\x62\xdb\x08\xfe\x5e\x0d\x59\x2c\xde\x75\x30\x0e\x1a\xb5\xca\x4a\xa9\xcc\xa4\x6b\x20\x60\xfb\xb5\xda\x84\xac\xf1\xaf\x95\x8d\x9b\x65\x3b\x18\x3a\xa7\x1d\x5c\xec\xe4\x5b\x36\xf6\x2d\x7d\xa8\x77\xa0\x89\xeb\x4d\x10\xd5\x0d\x43\xbe\x45\x3e\xb8\xb6\xe1\xf8\xc6\x0d\xc7\xad\x0d\x57\x02\x43\xde\x14\x2d\xad\x2b\x5b\xd5\x25\x0d\xf6\x5f\x76\x81\x4d\x89\x41\x9d\xe3\xe3\x79\x36\x89\xf3\xd9\xf1\x4c\xfc\x57\x5e\xd9\x3a\x3e\xee\x40\x42\xbe\xf1\xbc\xaf\xfd\x6f\xbe\x19\xde\xbd\xf3\xf5\x1d\xef\x9b\x6f\x7c\x29\x4c\xe8\x7b\x30\x4f\x34\x76\x91\x94\x26\xcc\xdb\x6f\x69\xaa\x7a\x6c\x7d\xce\xc9\xe0\xef\x47\xa6\x40\xdf\x19\x3d\xac\x70\x3f\x8a\x6e\x0d\x60\x49\x2a\xbd\x02\x59\xb7\xc6\xca\x6e\x9f\xce\xb3\x93\x78\x3e\xb2\x3e\x05\x0c\xa9\x97\x18\x77\xbb\xea\x97\xf9\xdb\x57\xa2\x75\x79\x3f\xc7\xbc\x87\xf9\x75\xcd\xe4\x74\x3e\x6d\x34\x22\x5e\x89\x26\xc4\x5f\xf5\xff\x26\x78\xf1\x56\xa8\x66\xeb\xf5\x7c\xbd\x36\xdd\x46\x1d\xcb\x2b\xbb\x83\x11\xae\x25\xe1\xaf\x54\xd1\x3d\xb4\x47\xd7\xeb\x3d\xa3\x2a\x37\x8e\x13\x84\xec\x9a\x4c\x11\xdf\x23\xe5\x45\xb4\x86\x61\xd8\x4e\x0d\x56\x29\xdc\x19\x71\x7d\x99\xa1\x3d\x91\x19\xda\x39\xa2\x61\x16\x41\x06\xb4\xbc\x45\x9c\x69\x95\xcf\xf5\x85\xca\x37\xc1\x96\x6f\x83\x34\x3f\x58\x79\x8b\x52\x0d\x85\x86\x69\x44\x48\x85\x49\x5a\x03\xc1\xf1\x7d\x3b\x43\xc4\xac\x79\x1a\xa2\xb2\x21\x8d\x0c\xdc\xc0\x83\x44\x1b\x07\x53\x6c\x92\x23\x25\x21\x8b\x08\x97\x01\x2a\x80\x81\x75\x97\xd9\x8a\x62\x6e\xaf\x91\x3d\x62\x05\xbd\x5e\x34\x6e\xa7\xcc\xe2\xdc\x5c\x3d\x38\x83\x73\xd5\x96\x75\x08\xb2\x22\x66\xaa\xac\x97\xa7\x1b\x77\xba\xe0\x84\x8c\xc3\xce\xf1\xb1\xbc\xea\xf2\x3e\x3f\xce\x67\x31\x93\xab\x23\x82\x63\x82\xce\xc8\x20\xfc\x7b\x3f\x72\x6e\xe9\xcc\x38\x27\xdd\xee\x89\x74\xfd\x35\x7f\xfb\x4f\x1f\x1f\xbf\x7a\xfd\xf2\xed\xcb\xf5\xba\xd3\xc1\x78\xd4\x51\xab\x13\xe5\x6c\x8c\x8f\xfd\x7e\xc7\x39\x0b\x3a\x1d\xf8\x44\x56\xa5\x72\x0e\x8f\xc9\x69\xc3\xad\x03\x2e\xc8\x69\xf5\xfd\x0d\xa9\x78\xa1\xf3\x49\x69\xca\x8f\xad\xad\x49\x26\xdf\xea\xf7\x9c\x11\xc2\xe1\x51\x74\x59\xac\x23\xb1\x55\x35\xce\x4b\x06\xf5\x16\xd6\xa5\x17\x07\xee\xf7\x46\x52\x4b\x39\x42\x78\xbd\x3b\xcd\x98\x58\xb0\xea\x45\x84\x05\xa0\x5b\x7e\xbf\x37\xea\x60\x47\x30\x5f\x78\x49\xce\xa5\x47\xe7\x98\xc2\x61\x69\xe8\x84\x0f\xa5\x9d\x1b\xde\x92\x67\x68\x0c\x9d\xe7\xf1\xa2\x83\xe1\x21\x79\xa6\x43\xae\x43\x47\xdd\x87\xec\x58\xcb\xe2\x79\xe5\x75\xe4\xfa\xc0\x6a\xb4\x52\x45\xef\x92\x51\xcc\x90\xa0\x18\x7e\xc0\xf6\xcb\x1c\x62\x21\xd7\xbe\x3e\x39\xe5\x32\x63\x0b\xa4\xa1\x1f\xd9\xc9\xf4\x5e\xff\xb5\xe0\x5f\xfd\xb5\xe0\xdf\xdf\x08\xfc\xf1\xf1\x24\xe6\xf1\xf1\xb1\x3c\x35\x7b\x65\x5a\x91\x9f\xe2\xc9\x04\x89\x76\x70\x23\x83\x8f\xb5\x44\x21\xb5\xd7\x7d\xe2\xba\x72\xd5\x23\x46\x68\x98\x44\xa1\x17\x61\x42\x08\x4a\x09\xc7\xeb\x35\xdb\x23\xac\xdb\x4d\xf7\x88\x15\x1c\xa7\x64\x06\x65\x03\x2f\xec\x7c\xc4\x9b\x5b\x5c\x4b\xd8\xbe\x3d\x6a\xdb\x98\xe4\xbd\x73\x79\xc7\xf6\xaa\x2b\xef\x2d\xa1\x2d\x9b\x17\x58\x84\x2c\x21\xfd\x9f\xe8\x57\x3e\x21\x5e\xb7\x4b\x0f\x48\x52\x20\x8b\xe9\xee\x3d\xd0\x6d\x15\xd2\xae\x15\x84\x51\x23\x7f\x90\x95\xac\x95\xd0\x72\xa0\xcd\xb9\x7f\xe5\x8c\x8d\x12\xc2\xe4\x20\xe1\xf5\xba\xc2\x23\x59\xaf\x2b\x09\x41\x3c\x9c\x64\xd9\x9c\xc6\x62\x67\x4f\x46\x9d\xe3\x63\xc9\x6e\x8e\x8f\x3b\x7b\x84\xa8\x98\x7c\x84\x90\x14\x8f\xb2\x70\xc3\xcb\x9b\x8f\xcc\xab\xa0\x23\x76\xec\x4e\x24\x5d\xc7\x16\x8d\x54\x44\xc6\x58\xdf\x6a\xfd\x54\x0d\xd0\x91\x32\x9d\x04\xf2\x1a\xb0\x2c\xd0\x0c\x18\x62\xcd\x0c\xda\x7b\x87\x28\x5e\xaf\x11\x27\x14\x8e\xbb\xdd\xe3\xdd\x24\xdd\xe5\x62\x6b\x44\x0f\xe4\x87\x4d\xdf\xc1\x3d\xbf\x32\x7e\xd6\xc4\x99\xea\xb2\x72\xc9\xd5\x30\x67\xab\x4b\x4e\xf6\xf6\x10\x75\x3a\x1d\x5c\x8c\xe5\x19\x2e\xc5\x97\x95\x97\x95\x98\x98\x37\x41\xae\x0d\x45\x0d\x97\x0a\xdd\x0a\xbe\x14\x70\x74\x95\x4f\xe5\x35\xdc\x0a\x9a\xf5\x59\x34\x64\x7d\x29\x4c\x34\x27\xd1\x90\xb2\xe0\xf2\x02\x31\x3c\x62\xc6\xc4\xf4\xdc\xba\xe9\x2b\x17\xb2\x6d\x45\xac\xaf\xbf\x87\xa3\x87\xea\xaa\x77\x70\x59\x14\x60\x57\x9c\xd0\x39\xb5\xed\x8f\x8d\x5b\x6e\x62\xd3\x12\x04\xaf\x8a\xed\xd6\xa0\x86\x34\xaa\xc3\x3a\xa5\xbc\xe5\x86\x76\xad\x8e\x98\x81\x87\xe5\xc9\x4d\x48\xa3\xf2\xfa\xb5\x3c\x33\xd0\x14\xc0\xcc\x28\x3f\xd6\x86\x57\xa0\x78\x24\x4a\x97\xd6\xb5\xe7\xf5\xfb\xd7\xd7\x36\xab\xe1\x3d\x1c\x55\x21\x30\x05\x38\x0b\x7e\x1d\x66\x4e\x9b\x97\xf1\x6b\x97\xda\xaa\x11\x20\x0f\xcd\x59\x8a\x8c\xb9\x99\x06\x5c\x3a\x79\x14\xf0\xfa\xe6\xb3\x13\x46\xf5\xe2\x2d\x73\xd2\xd2\x27\x60\xe4\x91\xc4\x7c\xc7\x2c\x09\x76\xe0\xc9\x4c\xcc\xe5\x19\xb6\xeb\x8f\x78\x7f\x91\x2d\x10\x0e\x5e\x9a\x9e\x32\xf0\x31\x78\x18\xd7\x9b\xbc\xc1\xd4\x35\xdb\xdb\x65\x07\x9e\x99\x30\x1e\xb2\x28\xf4\x1b\xdd\x68\xce\x8b\xae\xf6\xa8\xbe\x37\x00\x95\x82\x5a\xad\xe6\xe6\xe8\xdb\x57\x18\x4d\xc5\x94\x3c\x42\xb6\x54\x96\x1e\x78\x23\x73\x52\x44\x81\x47\x38\x60\x61\x2a\xd0\x22\x66\x4e\x5e\xdd\x7c\x4e\x2e\x05\x33\x93\xba\xdc\x73\x38\x8b\x17\xe2\x17\x7a\xbb\x5e\xbf\xc6\xa0\xd8\x9d\xfa\x54\xd4\x61\x6e\x5f\x4c\x4f\x8d\x9f\x9a\x2e\x23\x0d\xcb\xaf\xae\x98\x80\x8d\x7a\xa7\x94\x6f\x54\xda\x32\xc2\x55\x25\xb5\x7c\xeb\x95\xb6\x92\x76\x55\x4d\x6c\xfb\xd2\x2d\x47\x0d\xdb\x7b\xab\x76\x3c\x99\x10\xfb\x59\x0c\xf7\x56\xee\x61\x46\x53\x03\x4c\xdb\x00\x6e\xe9\x43\xbd\xbe\xee\x87\xe4\x82\x4f\xe0\x33\x7c\x47\xd0\x93\x16\x7a\x15\x42\xfe\x8b\x8d\x28\x72\xdd\x2e\x0f\x3d\xa1\x29\xd0\xd0\x8b\x46\x1b\x01\x10\x4a\x3d\x63\x2a\xc4\x8d\x2a\xc3\x9c\xdc\x58\x4b\x2f\xfd\x0c\x72\xad\x1e\x64\x18\x96\xc4\x1f\x78\x30\x27\x61\xb4\x1f\x0b\xb1\x44\x3b\xea\xd0\x30\x8e\x76\x96\xe4\x03\x1a\x97\xa9\x90\x31\xe4\x61\x1c\x91\xe4\x3e\xf1\x87\x5e\xb7\x3b\xae\xa2\x61\x0e\x3d\x69\x47\x78\x8f\xe2\x6e\x77\x8c\x0d\x63\x1b\x4b\x0c\x76\x54\xa4\x21\xd7\x87\x09\xc9\xc5\x33\x0d\x04\x9a\xfb\x8e\x33\x3b\x48\xba\xdd\xb9\x71\x0b\x5c\xee\x9b\x68\x92\xe3\x70\x16\xc1\x39\x91\xf7\xb4\xce\x88\xe0\x6f\x67\xa3\xb3\xc0\x83\x3d\x34\x19\x2d\xd0\x04\xce\x71\x90\xa2\x39\x9c\x03\xc3\x58\xf5\x39\x26\xd9\xbe\xeb\xc6\xfb\xe6\x3a\x57\xae\x0f\x07\xf7\xd0\x6a\xb4\x40\x2b\x55\x43\xf4\x48\x57\x1a\x67\x29\x4f\xd2\x25\xdd\xa5\xc5\xa4\xdb\x9d\xa8\x75\x76\x8e\x61\xae\x7e\x9d\x55\xa9\x2c\xe6\x05\xe2\x58\x48\x2c\xf0\x99\x1c\xa2\x92\x39\x7e\x1e\x3d\x29\xd9\x52\xf0\x19\x3c\x0c\x57\x1f\x74\x83\x16\x2d\x0f\x4b\xb9\xc8\x95\xb5\x52\x3d\x0f\xac\x14\x5b\xd3\x90\x47\x84\x86\x9f\x1d\x21\xb6\xda\x2e\x2c\x46\xa3\xfb\xec\xf8\xaa\xf0\x67\xa1\xd3\xc9\xc2\xbc\xdc\x79\x92\xf0\x73\x44\xd2\x8d\x23\x9a\xfc\x53\x22\xb6\xe2\x32\x7b\xfb\xe5\x38\xce\xa9\xd8\x9b\x8c\x3e\xa7\xc3\x60\xed\xc8\xf7\x7e\xf3\x3d\xc8\x1b\xa9\xea\xe3\xb0\xf5\x23\x30\x21\x53\xab\x12\xb7\xb7\x97\x00\x16\x0e\xa3\xea\x64\xbc\x3c\xa9\x64\xb8\x40\x4f\xe4\x7a\x82\x04\x17\x96\xde\xf2\xa0\x5a\x0f\x42\x44\x1a\x5d\x18\xb1\x23\xe8\x74\xca\xa5\x41\x48\xb6\x5e\x73\x42\xe2\x5a\xba\x43\x53\xcf\x8a\xdb\x25\x45\x60\xeb\x4e\x04\x5f\xaf\x6b\x76\x20\x6c\xc5\x2b\xfb\x6e\xcb\x11\xf8\xff\x3b\x41\x98\x36\x42\x50\x71\x5d\x15\x75\x52\xfa\x89\xb2\x0e\x06\x56\xbe\xc9\xe6\x13\xf1\x66\xc7\x0e\xc1\x22\xd8\xf1\xc6\xe1\x3b\x95\xb1\xd2\x29\x50\xe2\x69\xd7\xdb\x3c\xf9\x4c\x89\x07\xfa\x76\xf4\x59\x22\xbe\x2a\x97\xd6\xf9\x84\xe6\x7a\xe3\x16\x2d\xe6\x26\x22\xb8\xbe\xcd\xf3\x81\xae\xce\xe2\x85\xd4\xc7\x9e\xc7\x0b\xe0\xc6\xad\x38\xce\xf3\xe4\x34\x45\x1c\x03\x3d\xf0\xcd\x4b\x05\xb9\x6c\x10\xdb\x19\xf8\x24\x3b\x57\x7b\xe6\x07\xba\x32\xcd\x4b\xa7\x50\xa2\xfc\x5c\xc5\x3a\xb3\xda\x0e\x99\x79\xb4\x12\xf3\x95\x97\x86\x68\xca\xd9\xca\xb6\x9e\xe4\xdb\x3f\x2d\x37\x3e\xd1\xfe\xb3\xd7\xef\x9e\x8b\x7e\x81\x65\x3d\xe9\x1f\x9f\xc5\xec\xc3\x63\x51\xe6\x30\x7f\x97\xd3\x49\x6d\xc7\x10\xd3\x6a\x0d\x53\xb7\x2b\xd5\x51\x79\x03\x42\x7f\x50\x63\x69\x06\x43\x8f\xac\xd4\x59\x41\xfc\x2f\x3a\x24\x43\x97\x82\xf8\x5f\xd6\x67\x91\x61\x2e\xaa\x88\xe9\x3f\x95\x76\xa4\xaa\x31\xa8\x37\x6c\x3d\xc9\xfa\xd8\xfe\x4e\xc4\xfe\x6d\xf7\x4a\x4d\xd5\xc6\xee\x97\x9a\x10\x0d\x72\xd6\xd6\x6b\x15\x80\xaf\xff\xfc\xf0\x97\xe3\x9f\x0e\x9f\xbd\x7b\xbc\x63\x13\x80\x51\xfc\x77\x2a\x27\x4e\x1a\x36\x96\x57\x24\x8f\x11\xe2\x7e\x4a\x2f\x38\xc2\xfb\x7b\x79\x7f\x92\xa5\x74\xbf\x7a\xa5\xda\x5d\x12\x15\x47\x40\x4f\xbe\x60\x5b\xe6\xa7\x60\x6f\xe5\x15\x49\xdd\xb0\x90\x04\x96\xd2\x0d\x78\x89\x21\x1d\x21\xc9\xbb\x97\xb0\x14\x23\x94\xe2\xc0\x1e\xea\x25\xa4\x64\x09\x1e\x21\x99\xeb\x6e\x5e\x32\xcf\xce\x29\x9b\xce\xb3\x4f\x1d\x5c\xd8\xa3\x95\x5a\x0b\xa4\xde\x70\xf2\x99\xd6\x07\xf2\x2a\x99\x57\x57\x52\x42\x97\xec\x04\xae\x09\x26\x0d\xca\x12\x0b\x87\xeb\xab\x51\xb5\x36\x1a\xc2\x56\x6a\x5c\x7a\xda\x5a\x31\x96\xd0\x11\xca\x6a\x0b\x69\xb3\xb5\x4c\x51\x88\x09\xc7\x6c\x8f\x2d\x85\x8c\x98\xc0\x0e\x29\xae\x51\xd2\xa8\x49\x68\x19\x64\x0d\xc2\xac\x4f\x40\x56\xa3\xc3\x0c\x1c\xa7\x1c\xdb\x6a\x94\xef\x57\x44\xa7\x23\x78\x98\x58\xf5\x12\xc5\xc6\x70\x88\x4f\x64\x23\x94\x84\xd5\xa8\x18\x6b\x5a\x1b\x6b\xf5\x3e\xe4\xd1\x08\x6d\xb0\xb8\xf2\x9b\xcd\xfd\x2a\x4e\x63\x06\x48\x57\xb1\x39\x61\x8d\x39\xea\xd5\x4a\xab\x9a\x35\x76\x59\xca\xec\xea\x96\x9b\xeb\x56\xc3\x10\xaa\x3b\xfe\xfa\x02\x7f\x54\xef\xed\x34\x49\x27\x37\xa4\x30\xd3\xe1\x91\xa6\xa2\x52\xd1\x4d\x6f\x2a\x2a\x6b\x78\x46\xe2\x4f\xaf\xd7\x27\xd3\x6d\xb4\x9e\xe2\x36\xc8\x7a\x10\x52\x35\x08\xa9\x64\x96\x69\xc8\x22\xb1\x86\x15\xe3\x13\xef\xe4\x07\xb9\x98\x05\x6b\x0c\x52\x39\x6f\xe6\x9d\x3d\xb6\x7a\x4e\xc4\x27\x51\xcc\x86\xd3\x32\x4f\x0a\xda\x4d\xb6\x38\x31\x2d\xae\x0b\x69\xdb\x6a\x6c\xd7\xf9\x6e\x00\x90\x34\x08\x42\xb3\xcf\x02\xb2\x0a\xfa\x06\xff\x6c\x09\xc8\xa8\xd4\x1f\xab\x92\x64\xa5\x5b\x16\x84\xdc\xdd\xca\x18\x8b\x9a\xfa\xf5\x96\x27\x46\xfa\x52\xf0\xe3\x60\xcf\xd7\x97\x7a\x9a\xa4\x88\x03\x5d\xc0\x04\xe9\xd3\x24\x55\x40\xfe\x7b\x90\xce\xff\x12\xa4\x25\xce\x57\xa0\xba\xfc\x3d\xa8\x2e\xff\x22\x54\x15\x45\x6d\x47\xd6\x26\xb5\x0f\x74\x95\xb7\x20\x28\x58\x73\x6e\x33\xa5\xc6\x52\x95\x10\xb7\x55\x5c\x5e\x51\x51\xe0\x9d\xb4\xd6\x54\x63\x92\x7e\xd9\x40\x8a\xe6\xb2\x2b\x9a\xd3\xd1\x75\xed\xbd\x8d\xe1\x4b\xa3\x26\xec\x11\x12\xcb\x00\xf0\x48\xd9\x6c\xec\xd3\x3c\x0b\xe6\x7e\xba\x8f\xb5\xc2\xc3\xcc\x82\xd5\x77\x84\x64\x2d\x48\x25\x7b\xa8\xb7\xcc\xb3\xef\xdf\xbc\x7c\xd1\xee\x24\x2d\xb0\x56\x1a\x5f\x25\xb4\x82\xbe\x9b\xdf\x68\x36\x64\x8e\x13\x11\x79\x39\x4e\xb5\xa8\xe6\xb2\x62\x1b\xb2\xe9\x92\x3a\x9a\x38\x28\x2b\x71\x3b\x16\x9d\x8e\x09\x5c\xa4\xdb\x63\xfb\x98\x3a\x44\xfb\xba\xca\x30\x79\xd8\xe9\x04\x1d\x87\xe9\x2e\x23\x46\x98\x60\x83\x42\x86\x74\x48\x67\xf7\x60\xb7\x4a\x4c\x44\x8b\x02\xa3\x8c\xd4\x1d\x5f\x47\x3c\xa8\xbd\x10\x83\x25\x33\x2d\x04\x97\x05\xbe\xce\xe3\x35\x25\x19\x1e\xa5\x95\x39\x90\x03\xc5\x41\xda\x74\x7a\xbd\xc6\x67\xd1\xd6\x59\xbe\x34\x6c\xe4\x7f\x8c\x36\x57\x86\x90\xf4\xd4\x45\xe0\xa1\x2f\x9d\xaf\xd1\xd0\x8e\x85\x9e\xd7\xcd\xc3\x7d\x9a\x8e\xb3\x09\x1d\xf1\xbe\x1a\xaa\x51\x22\x34\x6f\xf5\xf2\xdd\xeb\xa7\x0f\xb3\xb3\x45\x96\xd2\x94\xcb\xb7\x0d\x9d\x46\x47\x34\xad\xbc\xbd\x47\x25\x1d\x48\x2f\x7a\x3e\xea\x74\x02\xaa\x1d\xbb\xb9\xe3\x5b\xfa\xd8\xbc\xfd\x90\x45\xc3\xdc\xd1\xc6\x0c\x1d\x88\x48\x65\x64\x55\x16\x8d\x8e\x6c\xac\x13\x6c\x9e\xe6\xcb\xb3\x7c\x4e\x06\x47\x21\x3a\x9a\xf4\xf0\x51\x64\x0e\x95\x29\x06\x4a\xac\xa4\x6a\x47\xe1\xd1\xa4\x27\x1d\x27\x3a\x1d\x0c\x7c\x54\x99\x7c\xd2\x90\x0a\xc5\x48\xfc\x91\xa9\xbe\x52\x99\x35\x2f\xf4\xa3\x88\x30\xb1\xe9\xd3\x88\xb0\x42\x5a\x40\x3a\x27\x2c\x1e\x7f\xa0\xfc\x2a\x44\xd0\x51\x78\x14\xe1\x2b\xb0\xa8\x50\x28\xad\xfc\xa2\x8d\x91\x6c\x28\x8c\x4a\xa7\x9b\x90\x46\x60\xda\x0f\x59\x54\x22\xa2\xe3\xc4\xb6\xa0\xa0\x6c\x19\x06\x28\x13\x40\x59\x1d\xa8\x78\x04\x8e\x03\xf9\x9a\x17\x45\x81\x38\xc9\xd0\xa5\x35\xde\x41\x27\xcd\x52\xda\x29\x80\x63\x0c\x49\x6b\x1c\x5e\x7d\xe4\xb3\x11\x43\x77\x94\x04\xea\x16\xae\x74\xee\xaa\xfa\xfc\xf7\x70\xf4\xff\x75\x23\xd9\x69\x3c\x42\x26\xa4\x5c\xa7\xdb\x69\x09\x7f\x6e\xd1\x57\x35\x66\xce\xe0\x14\x3a\xbb\x1d\x6c\x6a\x92\x0e\x96\x71\x4c\x8c\x08\x9f\x11\x2b\x15\x87\x49\xc3\x41\x3a\xc6\x5c\xb9\x63\xdd\xa6\xc9\x54\x24\xd0\x58\x28\x27\x0c\xc5\x28\xc5\x90\x49\xcb\x54\x2d\xaa\x7f\xa2\xc3\xb8\x8b\x4e\x4c\x96\x63\xda\x1a\xec\x22\xb1\x38\xef\x03\x75\x30\x29\x77\x93\x5a\x64\x0e\xf1\x62\xaf\x1e\x15\x97\xe1\x91\x94\xe3\xed\xdb\x14\xed\xe1\x74\x25\x0f\xd5\x98\x04\x8d\x80\x1f\x23\x8a\xea\x81\xe7\xaf\x8a\x3c\x5f\x86\xb9\x77\xf5\x2f\x8e\x0b\xbc\x2d\x63\x1d\x0f\xa5\x58\x26\x8f\xf1\xe4\x29\x27\x61\x40\x0b\x68\xa1\x04\x8c\x83\xa4\xe0\x7d\x7a\xc1\x59\x3c\x16\x9a\x30\x57\x79\xcf\xc9\x1c\x78\x15\xbd\xa4\x61\xc6\xdf\x13\x3c\x42\x91\x9d\xe2\x37\xf2\x1a\xb6\xe4\x42\xe2\xd7\x16\x52\x94\x9d\xeb\x76\x91\x1a\x8e\xda\x45\x04\x13\x39\xd2\xee\xca\x97\x73\x92\x7a\x42\x63\x7d\x98\xcc\x46\x61\x2e\x0f\x93\xa0\x13\x76\x20\x85\x4e\xd4\x89\xca\xec\x77\x81\xfd\x2d\x47\xa9\xfc\x19\x11\xf1\x9b\x01\xc5\x55\xc1\xeb\x78\x87\x95\x90\xb4\x6a\x58\xc1\xb6\xda\x68\x87\xbc\x8d\x19\xdc\x08\x66\x1b\x44\xc1\x12\xaa\x6d\x7d\x64\xd3\x18\xd5\x24\xa6\xe6\xa0\x41\x3f\xa9\x49\xef\x40\x75\x18\x97\xea\x02\x5b\x2d\xe3\x8f\x46\xc6\xbc\xdc\x15\x03\xc7\xa5\x3e\x57\x27\xfd\x04\x1b\x23\x44\x58\xd9\xc0\xf5\xa6\xb2\x85\x6f\x18\xc6\x47\xbb\xdd\x4c\x99\xfb\x99\x98\x15\x30\x57\x96\xb1\x58\xe6\x99\xee\x6a\xb7\x53\x5a\xab\x15\x0a\x4e\x87\x74\x9c\x1c\x25\x20\xd7\xc6\xd6\x1c\x89\x65\x16\x87\xfb\x5e\x81\x2b\x58\xf2\x5a\x82\x26\xff\x77\x6c\xde\x7a\x74\x75\xb9\x64\xf3\xa0\x64\x7f\xa3\x0e\x0e\xbd\x68\xbd\xee\x74\xe0\xe3\x92\xb2\x55\x30\x47\x62\x7b\x15\xcd\x5f\x77\x0d\xe5\xea\x3b\x3c\x6d\x9b\xb8\xe5\xe7\xb4\xf7\xff\x23\xdc\x8b\x06\xa7\x6d\xc9\x4d\xbf\xea\x38\xea\xfe\xd8\xc3\x6c\x42\x0f\x39\xf2\x70\x75\xfb\xc9\xbf\x27\x1e\xde\x2d\x16\x26\xbe\x42\xd1\x16\xa8\xbb\xe5\xca\x88\x26\xa1\x53\xca\x2d\xd7\x29\x25\xdc\xe4\xd5\x0e\xb3\x2d\x50\x39\x64\x9b\x25\x16\xfa\xdb\xd3\xfc\x71\x79\xe3\xa7\x6d\x50\x94\x5f\x43\x32\x45\x7b\x1a\x84\x32\x4a\x6a\xd2\xdb\xf3\x77\x2a\x79\x5c\x77\xb2\x13\x9f\x8c\x55\x9a\x44\x1a\xde\x8d\x48\x67\x42\x3b\xa0\x92\xc4\xb5\xf6\xe2\x45\x7c\x46\xc5\xba\x08\xbd\xa8\x02\xda\xb8\xce\xe7\xed\xb3\x03\xdf\x93\x91\x0c\x78\xd8\x39\xee\x38\x3a\xd8\xf9\x94\x65\x67\x0f\xf5\x50\x23\x86\x23\x22\x03\x45\x74\x3c\x7f\x78\xfb\xce\xdd\x7b\x5f\xff\xed\x1b\x2b\xbd\x49\x5b\xab\xcd\x05\xd8\x64\xe0\xe5\x92\xae\x77\x37\xad\x32\xdc\x88\xce\x4e\xe8\xf4\x74\x96\xbc\xff\x30\x3f\x4b\xb3\xc5\x47\x96\xf3\x8e\xa1\xcf\x2d\xbb\xb3\x94\x42\x68\x81\xa1\xbd\x76\x35\x52\x92\x65\xd4\xc6\x1d\x5d\x16\x90\xe2\x0a\xb1\xca\x8d\xc4\x60\x58\x14\x08\x8f\x6a\x75\x1a\xd1\xce\x2a\xaf\xab\xb8\xe1\x3c\x5e\xb2\x16\xda\x1e\xa5\xa5\x06\x75\x77\xac\x62\xb6\x9c\x50\x19\xb6\x85\x4e\x76\x3f\x25\x7c\x26\x19\xe5\x6e\xc6\x76\x2b\x5f\xd6\x92\x13\xaa\xea\xda\xd3\x09\x96\xc4\xdf\x5f\x1e\x34\x2f\xac\xee\x2f\x1d\xa7\x42\x71\xbe\x9b\xa4\xbb\x4c\x8f\x06\xaa\xae\xac\x2e\x23\x8c\x13\xa3\x4e\xce\x85\x36\x95\x87\xf3\x88\xb0\x70\x1e\x69\xb3\xd6\x65\x2c\x05\x87\x9d\x2a\xae\xaa\xb7\x3f\x3e\x88\x4d\x2b\x63\xc7\xc1\x99\x01\x10\x87\xe3\x48\xc1\x10\xbf\x04\x18\xf9\xb7\x3a\xe6\xcc\xaf\x5b\xa4\xff\x0f\xe9\x48\xb6\xcf\xfb\x57\x61\xec\x4e\x3d\xf7\x9b\xe8\x72\x58\x74\xa0\x73\x9a\x74\xb0\xb6\x49\x97\x57\x07\xec\x22\xd8\xd1\x85\x6a\x27\x84\x32\x74\x57\xe5\x1b\x35\xa1\x9b\xac\xb7\x5a\x86\x96\xd7\x94\x4e\x6a\x5a\x7a\xd2\x99\x71\x50\x89\xf6\xfc\x1d\x13\x4d\xad\x0c\x1a\x8d\x65\x7c\x56\xad\x52\x95\x44\xd9\x70\xce\xd5\x42\xbe\x22\x8d\x30\x82\x18\x31\x0c\x42\xc4\xc5\xcd\x03\xab\xab\x51\x36\x98\xa6\xf6\xd5\x64\x2b\x40\x08\x23\x7e\x33\x46\x0b\x27\x88\x0a\x15\x1f\x98\xc5\x77\xca\x1a\x96\x95\xa0\x7d\xeb\x6a\x0b\xf7\xbb\x65\x1d\x3f\xd6\x97\xe0\x77\xff\xa1\x36\xba\xc9\xbb\xd7\x4f\xff\xa1\x83\xf7\x66\x53\x49\x67\xbb\xff\x50\xb0\xfe\x01\xbb\xa7\x19\xdf\xfd\x47\xc7\x11\x8d\x38\x9d\x7f\x74\xf0\x8e\xed\xc9\xd6\xaa\x63\xc0\x55\x23\xb2\x79\x15\xba\x71\x7f\xbb\xf3\xd5\x93\xc7\x5f\x3d\x79\xd2\x09\x3a\xff\xe7\x7f\xff\xaf\xff\xf3\xbf\xff\x57\x07\x3a\x5f\x3d\x79\xf2\xd5\x93\xc7\xd5\x1b\xb1\x27\x64\x46\x39\xdc\x67\xfb\x6a\x3a\x78\xc8\x42\x2f\x8a\x48\x4b\xeb\xf2\x88\xbe\x22\x1e\xc5\xc4\x73\xf5\x7a\x27\x95\x8a\x9e\x27\xf4\x57\x03\x22\xc5\x85\xd5\x42\xc1\xc3\xce\x57\x0f\x87\x42\x30\x15\xad\x5b\x4e\x07\x75\xf5\x01\x54\xd2\xf6\x32\xae\x5b\x6c\x22\xef\x2c\x49\x12\xc6\xd1\x8e\x3d\x5a\xd6\x2a\x59\xca\x6b\x21\xc0\x05\x5b\x2b\x4f\xff\xa5\x47\x68\x51\x00\x5c\xcd\x79\x58\x5f\x28\x22\x7a\x57\x92\xbe\xcf\xaf\x9e\x42\x42\x86\xbd\x14\x32\x92\xb8\x3e\x75\xef\xd9\xab\xcd\xf8\x3e\x5d\x78\xfa\x44\x60\x65\x7e\x5c\xf8\xe6\x8d\x2f\x2f\x9c\x6b\x2b\x38\xe9\x74\x6c\xc2\xaf\x59\x0d\xe3\x22\xae\x16\x0e\xb1\xac\xc6\x32\x77\xb4\xe1\x36\x41\x0c\x67\xd9\x39\x7d\x9b\xb5\x06\xdd\x74\x48\xe7\x79\xc7\x41\x0d\xac\x2e\x7c\xe2\x50\xc9\x2e\xcc\xa7\x12\xcf\x95\x4f\x1c\x8e\x0b\x18\xcf\xb3\x9c\xbe\x8a\xf9\xcc\xbe\x9f\x6c\xe2\x37\x6a\x20\xe6\xc0\xb5\xea\xdc\x85\xb1\xee\xaf\xca\xee\x9a\x37\x0e\xe9\xfc\xd6\xc1\x05\xcc\x93\xf4\x0a\x64\x9f\x55\xc8\x6e\xe2\xa8\x51\xfb\xb8\x8c\x27\x2c\xe6\xc9\xf8\xe1\x92\x6d\x74\x5c\xdb\x38\x0c\xbc\x1f\x3b\xce\xae\x43\x25\x94\x5d\x87\xdb\xd0\x04\x7c\xb6\x01\x3f\xc5\x05\x9c\xd0\xcf\x09\x65\xdb\x80\x43\x02\x99\xd5\xc0\xc3\xcd\x06\x76\x1d\xa6\xff\xa6\xcd\x06\x93\x8d\x06\x33\x5c\x40\xcc\xc6\x9b\x0d\xc9\x66\x28\x71\x28\x70\xe2\x70\x60\xc4\x61\x90\x10\x27\x81\x8c\x38\x99\x1d\x7b\xeb\xf8\xc2\x87\xbc\x9c\x3d\x58\x12\xe6\x52\x98\x93\xc4\xe5\x30\x26\xb1\x4b\x61\x4a\x72\x97\xc3\x8c\x8c\x7b\x63\x67\xda\x9b\x8a\x0d\x3c\x3b\xf0\x36\xcf\x81\x53\x7a\x1a\xf3\xe4\x9c\xee\xb2\x78\x92\x2c\xf3\x60\xb7\xe3\xa8\xe8\xd1\x76\xea\xd8\xe3\x0b\x13\x73\xb6\x4e\x5a\x3e\xd9\x98\x2c\x8e\xcb\x24\xc8\xb3\xfb\x62\xa5\xe0\x64\x8a\xca\x78\x1e\xd3\xde\xd2\x9d\xf7\xc6\x58\x7e\xe9\x76\x33\x13\x6b\x9d\xb9\x31\x2c\x48\xe2\xe6\x70\x46\x96\xbd\xa5\x33\xef\xcd\xe1\x9c\x4c\x7a\x13\x67\xd1\x5b\xc0\x4a\x2d\xc2\xfc\x23\xe3\xe8\x0c\xc3\xa9\xf5\x38\xc3\x70\x42\xb2\x9e\x7c\xc1\xe3\x14\xa1\xd4\x55\x8d\x8d\xb3\x1c\xa1\x33\x67\xe6\x9e\xe3\x01\x1a\xf6\x56\xbd\x53\x8c\x65\x68\xe3\x63\x72\x32\x38\x85\x4f\xe4\x64\xb0\xda\x29\xf1\x3a\x76\x7d\x83\x13\xaa\x91\x25\x75\x8e\x7b\x63\xd3\x47\xe7\xb8\x37\x2d\x03\x3b\x3b\xa4\x73\xd8\x71\x32\xf9\x49\xfc\xef\x81\x27\xa7\x1f\x4d\x7b\x93\xfb\xe3\xde\x02\x37\xc8\x80\x3a\x9f\x7a\xcb\x8d\xd1\x72\x3e\xf5\xe6\xd8\x4a\xaf\xbc\xb1\x1c\x5a\x06\x58\xd2\x4e\x93\x72\x74\x26\xc8\x92\x76\x76\x54\x90\x09\x24\x48\x08\xab\xf1\x11\x43\x12\x63\x18\x13\xa6\x9e\xf3\x24\x15\xcf\x53\x42\x9d\x39\xcc\x08\x77\xc6\x30\x21\xfe\xdf\x97\xb0\x20\xcb\x51\xec\xe6\x41\xee\xca\xb4\xeb\xec\x86\x74\xc3\xf0\x4e\x83\x68\x46\x36\xd1\x4c\x65\x47\x66\x41\x45\x0d\xa6\x98\x3b\x55\x83\xbf\x5e\x37\x3e\xad\x7c\x77\xa6\x3e\xe1\xc6\xc4\x68\x60\x18\x58\xb7\x8b\x16\x07\x9e\xf8\x9f\x2c\xbe\x4a\x9c\x04\xc3\xe2\x7e\x36\xb2\xe7\x48\x2d\x4c\x26\xe7\xc8\x87\x8e\x33\x51\x23\x4a\xdd\xb9\x19\x5b\x57\x4c\xf1\xf6\x92\xe5\x64\x4c\x9b\x93\x31\xc3\xc1\x62\x83\x6e\x1a\x80\x24\x51\x2c\xee\x93\x54\x55\x6e\xc2\xa4\x0e\xab\xa6\x27\xc7\x9b\x14\x62\xcd\x56\x8e\x31\xc6\x05\x30\x3a\xe6\x57\xf1\xbf\xdf\xc3\xfc\x9d\xce\x4c\x33\xb1\x73\xcd\xc4\x66\x1d\xc7\x65\x4e\xe7\xb7\x4e\x01\x46\xd7\x6e\x09\x5b\xa1\x60\x14\x85\xc9\xeb\xdf\x48\x7a\xdc\x94\x4a\xac\xcc\x61\x05\x8c\xcb\x40\x3f\x65\xcc\x1f\x1e\xa7\x43\x98\x11\x33\x20\x30\xa9\xae\x21\x2d\xaa\x6b\x48\x67\xc4\x0c\x09\x9c\x57\xcc\x00\x56\xc4\xa7\xae\x3f\x34\x0c\xe2\xd5\x53\x38\x21\xa7\x83\x21\x1c\x93\x61\xef\xb4\xda\xb1\x3f\xd9\x12\xfe\x7d\xe2\x8f\x4e\x02\x7a\x40\x5c\x7f\xe4\x9e\xa8\x98\x57\xb1\x18\x6b\x6a\x09\xa7\x8f\x6b\x66\x96\x24\x4d\x29\x7b\x2d\xc9\xbe\x2a\x72\x51\x2b\x92\x2d\xf9\x66\x91\x37\xb5\x22\x39\x8f\x19\x3f\x4c\x4f\xe7\xd6\x31\xc6\xcb\x5a\x09\x9a\x4e\x1a\xdf\x0f\x9b\x17\x6a\x17\x71\xb3\xc8\x07\x7b\xcb\x82\xb8\x0c\x2e\xe4\x32\x58\x12\xee\xa6\x30\x27\x28\x1e\x65\x81\x9b\xe1\xc1\x39\xca\x7b\xb9\xb3\xec\x2d\x05\x53\x98\xf7\x96\x30\x25\xee\xbc\x97\xc3\x8c\x50\x67\x0c\x0b\xc2\x9d\x29\x9c\x11\xe6\x8c\x61\x45\x52\x67\x0a\xa7\x04\xcd\x9c\x33\x3c\x18\xc2\x09\x41\x0b\x67\x85\xe5\xd8\x9e\xb9\x33\xf8\x44\x56\xee\x02\x1e\x93\xe3\xde\xb1\xf3\xa9\xf7\x09\x2e\x48\xe2\x66\xf0\x86\xcc\x7a\x2b\xf7\xac\xb7\x80\x97\x04\x7d\x3a\xf0\x46\xae\x1f\xf8\xb8\x77\x8e\x26\xc8\x83\x8b\xde\x45\xef\xb1\xfb\xa6\xf7\x06\x63\x38\x24\xe8\x4d\xef\x93\x7b\xdc\x7b\x89\x07\x8f\xe1\x03\x41\xee\x9b\xde\xb1\xfb\x49\x3d\xbe\x95\x1f\x1d\xfd\xf1\xa1\xfa\xe8\xe8\x8f\xcf\xc9\xa1\x7b\x0a\xaf\xc9\x07\xf7\x04\x5e\x91\xb7\xee\x29\xbc\x27\x0f\xdd\x13\x23\xd8\x3f\xef\x3d\x77\x5e\xf7\x5e\xdf\x7f\xd5\x7b\xe5\xbc\xef\xbd\x97\xd1\xc1\xde\xc2\x07\xf2\x10\xc3\xe5\xf8\x22\x38\x84\xf1\x2a\xf8\x00\x17\x9e\x1f\xb8\x63\x58\x89\x3f\x53\xb8\xf0\xfd\xe0\xb0\x87\x92\xc1\x85\xeb\x63\x58\xf9\x7e\xf0\xc1\x3c\x15\x52\x5f\x7b\xbb\x79\x20\xfe\x18\x38\xb9\x00\x46\xe6\x48\x7a\xd8\xaa\xf4\x7b\xe4\x0d\x64\xe4\x25\xc4\xe4\x50\xc7\x1b\xaa\x48\x70\xa2\x6b\xce\x61\x02\x8f\xe1\x82\x38\xa5\x63\xea\x2c\xc9\xad\x68\xc1\xf0\x86\x38\x7c\xcb\xa7\x97\x24\x69\xff\xe2\x9e\xc0\x21\xc9\xb6\x7e\x7b\x4b\xc6\xe8\xd0\x7d\x89\xe1\x21\x39\xbc\xff\x72\x47\x45\x31\x42\x39\x99\x93\x25\xc2\x18\xde\x1c\x5c\x74\xbb\x68\x42\xde\xc0\x1b\x72\x01\x17\x64\x82\xe1\xcd\xfd\x95\xd8\xc5\xdf\xde\x3f\x76\x57\x38\xef\x2b\xc9\x13\xbd\xe9\xcd\xd0\x4b\x0c\x6f\x7a\x67\xe8\x25\xc6\x90\xf7\x63\x36\x46\x62\x17\x7c\x03\x2f\xe1\x10\xf6\x1e\x62\xb8\xb8\xbf\x92\x01\x9f\x75\x8d\x8b\xde\x0c\x1d\x62\xb8\xe8\x9d\xa1\xc3\x5a\x8d\x0b\x38\x84\x97\xf0\x10\x2b\xd9\x41\x8e\xcc\x73\x78\x0d\xaf\xc8\x4b\x78\x4f\x0e\xe1\x11\x79\x09\x2f\xc8\x21\x3c\x25\x6f\xe1\x19\x79\x0b\x4f\x48\xdc\xde\xbb\xc1\x10\x3e\x93\x27\xb2\xd1\x74\xe4\xa4\xed\x85\x82\x73\x74\xd1\xbb\x70\x14\xe5\x7d\x47\x16\x68\x8c\xde\xb8\x17\xa2\xae\xc3\xda\x6b\x60\x78\x40\xbe\x83\x77\xe4\x3b\x31\x58\x9f\xef\xaf\xd4\xdc\xfd\x4c\x3e\xa1\xcf\x03\xd1\x99\x27\x18\xc3\x47\xf9\xf4\x46\x3d\xed\xa3\xa7\x2e\x19\xf6\x7e\xc6\xf7\x57\x23\xf4\xc8\x21\x3f\xf7\xc8\xc3\x91\x1f\xb8\x3e\xbc\x70\xc9\xcf\x38\x40\x4f\x89\x07\x8f\xc8\x0b\x82\x5e\x3a\x87\x52\x2a\x41\xcf\x44\x85\x8f\xb2\xc2\x2b\x87\x7c\x2c\x2b\xbc\x77\xc9\x47\x1c\xa0\x67\xc4\x83\x57\xe4\x7d\x59\x41\x12\xe2\x4f\x44\xcc\xc1\x2b\x0c\xbf\x12\xd1\xf0\x2b\x0c\xdf\x12\x31\xc6\x2f\x30\xfc\x40\x04\x62\x2f\xa4\x24\xf7\x9d\xc1\xf8\x16\xfc\x28\x6b\xbc\xc7\xf0\x8b\xac\xf1\x1e\xc3\x6f\xb2\xc6\x23\x0c\xdf\xcb\x1a\x8f\x64\x8d\xb7\x07\xa7\xdd\x2e\xba\xd5\x8c\x5a\xa9\x79\x0a\xe4\x46\x01\xfb\xcd\xfd\x09\xe6\xe4\x7b\xf7\x57\x18\x93\x6f\xdd\x1f\x61\x4a\x7e\x70\x7f\x81\x19\x11\x62\xde\xb8\xa7\x12\x42\xa3\x59\x6f\x76\xb0\x32\xc6\xbe\xf0\x27\x07\xcd\x08\x1a\xf7\xd0\xaf\xee\x2f\xd8\x9d\xf6\xd0\x4f\xee\x8f\x18\x0f\x66\xb8\xb7\x84\x5f\x9d\x59\x6f\x1e\x15\xc8\x84\x68\xa4\x94\xfc\xe4\xde\x0a\xbd\x08\x38\x25\xbf\xba\xb7\xa4\x3b\x37\x25\x3f\xaa\x77\x29\x25\xbf\xa8\x77\x09\x25\xfe\xe0\x0c\x21\xf4\x98\x20\x4a\x7b\x8c\x3a\x9c\xf6\x52\x8a\x07\xe8\x5c\x3c\x53\xf9\xcc\xa9\xe0\x3c\x4c\x7e\x4e\xe5\x67\x8c\xef\xfb\x23\x2f\x78\x7c\xe0\xfa\xa3\xd3\xa0\x12\x1b\x1f\x2b\x41\x31\xa3\xe4\x1c\x89\x96\x7a\xe2\x3f\x47\xb4\xd4\xbb\x25\x9d\x32\x1f\x90\x05\xfa\x0e\xd0\x85\x9b\x89\x36\x12\xea\xfa\x18\xc3\x3b\xf5\xf2\x8d\x79\xe9\xf8\x18\x17\xc5\xb3\xfb\xab\xd1\x3b\x31\xa9\xcf\xc9\x07\xf4\x1b\x7c\x0f\x3f\xc1\xaf\xf0\x06\xde\xc1\x43\x2c\xb8\x16\xfa\x11\x7e\x81\x6f\xe1\x07\xf3\xaa\x5c\x2a\xcf\xfb\xe3\x0b\xe7\x79\xff\xc2\xf3\xe1\x79\x7f\xbc\x72\x9e\xf7\x57\x9e\x8f\xe1\xdd\xc1\x77\x23\xb5\x6c\x44\x01\xf9\x09\xde\xc1\x14\xc9\xcf\x20\xcb\x63\x98\xa2\xd7\xf2\xf1\xb5\x7a\xdc\x7b\x88\x03\x74\x83\x4a\xcf\xfb\x2b\x5f\x3e\xfa\xaa\x52\x6d\x45\x8b\xcf\x0a\x0d\x59\x46\x21\xe7\xeb\xc6\xc6\x2b\xe7\xb5\xfc\xf0\x5a\x7c\x78\xdd\x84\x20\xde\x8a\x4f\xaa\x55\x53\xb2\xac\x5d\x47\x15\x4b\x64\xf5\x28\xfc\x04\xbf\xd6\xd1\x78\x05\xef\x65\xa1\xa0\x5e\x44\xf2\x99\xa7\xf7\x57\xa3\x07\x66\xa8\xc5\x98\x8a\xb1\xbd\x00\xf7\x81\x19\x6b\x31\xf4\x62\x0a\xcc\xbb\xbc\xaf\xd4\xd2\x6d\x83\xfd\xa0\x65\xb0\x1f\xfc\x9e\xc1\x6e\xa9\x74\xc5\x60\x5f\xfc\x8e\xc1\x6e\x19\xeb\x07\x37\x1a\x6b\xbb\xd9\x17\xf0\x08\x1e\x8a\x57\x7a\x58\xbe\x85\x1f\xb4\x6a\x52\x8e\xb6\x07\x9e\x64\x10\x79\xbf\x34\x15\x20\x0c\xf3\xf2\xcc\x4c\xed\x7c\x73\xa7\xd3\x59\xaf\x65\xe6\x06\x63\xcd\xeb\x8f\x69\xca\x59\x96\x4c\x9a\x7b\x27\x23\x68\xdb\xe6\x27\x74\xeb\x2d\x0c\x79\x30\x84\x94\x20\x67\xcb\x06\xe8\xec\x3a\x5b\xb6\x3f\x3c\x18\xba\xa7\x83\xa1\x16\x0f\xc2\x19\x4a\x71\x8f\xc1\x99\xfc\x13\x15\x30\xb1\x65\xbb\x0a\xd3\xca\xba\xd6\xb4\xac\x8f\x10\x6d\x33\x48\xf3\x11\x0f\xe6\xc8\xe1\x18\x26\x38\xa0\x02\xae\x25\x10\xb6\xc9\xc7\x9b\x70\x79\x1b\x5c\x3a\xa2\x02\x2e\x95\x70\xb9\x80\x3b\xce\x58\x0b\xc2\x57\x01\x6e\x8d\x7b\x52\x03\xcc\x04\xe0\x45\x3c\xf9\x12\xa8\x4a\xe6\x21\x84\x2a\x37\x86\xeb\x9a\x48\x45\x13\x95\x04\x7c\xb3\x36\xda\xdc\xb1\xea\x60\x13\x01\xd6\x88\xcd\x37\x03\x9a\x5d\x0b\x34\xd3\xc3\xf1\x05\x40\x5b\xef\xe5\xd4\x80\xc6\x6a\xf2\x52\x5e\xf3\xaf\xbc\x0a\x66\x5e\x1f\x61\x2a\xa0\xe4\x05\x4c\xac\x8c\xe4\x0f\xab\x24\x32\x06\x34\x2d\x1e\xda\x26\xc4\x98\xd1\xf8\x8d\x18\xf6\xa0\xe9\xc5\x7b\x2c\x16\x3d\xf1\x0a\x10\x45\x1e\xa7\x93\x2d\x05\x5e\xc4\x2f\x94\x35\x6f\x0b\x94\x45\x96\xa4\x5c\x80\x11\x65\x1a\x60\x50\x05\x67\xbd\xf6\x4a\x93\xa2\x78\xee\x76\xfd\xd2\x6c\x20\x41\x60\x93\xce\x52\x77\xa4\xc6\x6f\x2c\x7c\x7c\xb7\x7a\x28\x40\x56\x6d\x58\x19\x8d\xc7\x45\x69\x54\xb3\x5b\x31\xb7\xd2\x6c\xe4\x7d\x0b\xfe\xa8\x8e\x84\x66\x8c\x02\x6e\x50\xff\xa2\xf9\xa3\xbc\x75\xaf\xe2\xf8\xea\x7b\x6d\x36\xe4\x61\xe9\x15\xb1\x15\x6c\xa1\x35\xe9\xe7\xad\x31\x16\xe9\x27\x39\xc7\xd6\x94\xbf\xb6\x35\xc2\xd0\x8b\x1a\x11\x2c\xca\x2f\x7e\x24\x25\xc6\xf7\x9b\xaa\xcb\x6b\xe0\xe4\x95\x54\x5d\xf6\x6c\xdd\xe5\x39\x64\x0d\x9d\x25\x46\x46\x9b\x84\x39\x8c\x65\xe8\x7e\x7d\x4d\x73\x46\xf4\xe9\xb2\xa2\xd0\xb4\xdb\x45\x19\x49\xd0\x58\x2a\x14\x18\x72\xe2\xed\xe7\x07\x64\xba\xef\x38\x39\xde\x43\xf9\xc1\xb4\xdb\x65\x68\x4e\xe2\x30\x8f\x20\x87\x18\x63\x22\x43\x91\x23\x34\x23\x7b\x33\x3c\xca\xfa\x25\x81\x21\x1c\xa8\xa7\xc7\xe9\x44\x28\x27\x33\xe9\x41\x21\x06\x13\x39\x14\xcd\x65\x6d\x70\xb8\xfe\x25\xb7\xa6\x71\x19\x12\x47\x75\x65\xbc\xb1\x19\xc5\xfd\x8b\x3f\x85\xb7\xc7\x92\xb7\xc7\xfd\xd5\x9f\xc2\xd1\x63\xc9\xd1\x63\x1d\x42\x74\xf2\x87\x99\xf9\xde\x9e\x02\xca\x04\xd0\xf1\x92\x9d\xdf\x98\xcb\x52\x50\x26\x7f\x33\x8f\x29\x96\x80\x12\x09\xe8\x4b\x58\x56\xc9\xb0\x88\x9a\x8b\x40\x42\x23\x0a\xaf\xb4\x80\xb8\x80\x47\xed\x04\xa9\xd2\x7d\x1a\x75\xfa\x15\x24\x9a\x3c\xf5\x9c\xc6\xe4\xf9\x86\x4a\x3d\x46\x73\x7d\x91\x18\xa6\x30\x83\x09\x2c\xe0\x8c\x98\xab\xbe\x70\x4e\xf6\x7c\x58\x59\x1e\xce\xd2\x8e\x6c\x3f\x5a\x04\x9c\xc9\xd4\xb8\x31\x5a\x68\x02\x56\xe7\xdc\xe4\x6c\xdf\x71\xc6\x3a\x01\xcb\xf8\xe0\xac\xdb\x4d\xd0\x84\xcc\xc3\x71\x04\x63\x98\x4b\x22\x3e\x17\x6a\xf2\x39\xd9\x3b\xc7\x53\x32\x96\x12\x99\x66\xb7\xc8\x48\x9b\xfa\x49\xe9\xb9\xa2\xc5\xbc\x22\xef\x7a\x11\x98\x91\xb1\xeb\xef\xcf\xee\x93\xe9\xbe\xeb\xce\x70\xae\xe9\x7e\x15\xce\x22\x38\x0d\x67\x11\xde\xa9\xd7\xd5\x8c\x1b\xe1\xe2\xbc\xdb\x45\xab\x70\x1c\x11\x87\xa2\x89\x44\x0e\x4e\xe5\x23\x33\x8f\x06\x18\x1f\x39\x5c\xbf\x0b\x44\x0d\x10\x6a\xb3\x79\x21\xea\x60\x5c\x24\x53\xb4\x68\x08\x78\x8b\x6a\x4d\x95\xe3\x3f\xad\x6c\x7b\xef\x11\x36\x64\x2c\xa3\xc4\x09\xe2\xd3\x51\xdb\x04\xf1\xa0\xac\x3c\x91\x1b\xdb\x4b\x91\x7d\xe9\x52\x64\x23\x26\x16\x0f\xc3\x86\x62\xc6\x72\x45\x8e\xfb\x17\xde\x9f\xb2\xc0\x4b\x70\xfe\x4d\x57\xf8\xcd\x85\xa0\xb1\x5c\xee\xe3\x9b\x32\x8f\x6b\xa4\xb6\xb4\xec\x3f\x93\x40\xbd\x3f\x05\x6a\x09\xee\x86\xfd\xff\x12\x21\x70\x2c\x39\xc0\x58\x52\xf0\x2f\x1e\x51\x3f\x7e\xf5\x5a\xee\x52\x4c\x11\xee\x5f\x20\x8a\xfb\x2b\xc4\xb0\xa9\xf2\xab\x7f\x75\xc9\xb4\x2c\xf9\xcb\xf6\x92\xbc\x82\xf9\x45\x5c\xf7\x0a\x41\x54\x72\xdd\xb1\x64\x96\xe3\x2f\xe1\xba\x71\xc9\x75\x0d\xf3\xc9\xb0\x04\x14\x4b\x40\xbf\x87\xeb\x66\x44\xad\xd6\x40\x42\x23\x0a\xaf\xac\x80\x71\x01\x2f\xb6\x04\x67\x39\xa0\x23\xd7\x0f\xf8\x7d\x3a\x12\xff\x13\x3a\xf2\x02\x29\xf0\x3d\x6d\xf5\xe7\x2b\xe0\xd9\x26\xf7\x7e\x0a\x9c\xbc\xd0\x79\xfb\x20\x55\x1c\x5c\x70\xef\x63\xc1\xbc\xc5\x53\xab\x40\xb1\x54\x22\x05\xcc\x2a\xa1\x62\x42\x3c\x58\x58\x1c\x7a\x86\xe1\xac\xfe\x78\x4e\xb6\x99\xf8\xcc\x89\xe1\x59\x92\xa2\x63\x28\x33\x36\xb8\xc7\xb0\xcd\x64\x7a\x8e\xcb\x73\x45\x51\xa9\x3c\x87\x5a\xe1\xc1\x0c\xb6\x29\x93\x70\x42\x4e\x7b\x68\x65\x0c\xdb\x72\x07\x51\xc2\xce\x4c\xca\x3a\x68\x4a\xce\xc2\x45\x98\x47\x24\x97\xbc\xb8\x12\x78\xee\x7b\xdd\x2e\x9a\x38\x64\x5a\x6d\x3b\x7b\x84\x8f\x16\x1b\xae\xd2\x15\x4f\xe4\xe8\x2c\xa4\x11\x9c\xc9\x5c\x92\x38\x50\x55\x58\xb7\xbb\x59\xa7\x9a\x50\x86\x62\x51\x27\x96\x81\xc2\xa4\x20\x06\x73\x32\x19\xa1\x95\x3b\xeb\x9d\xe0\xc1\x24\x28\x71\x85\x73\x32\xc6\x4b\x22\x90\x85\x31\x39\x77\x90\xc4\x7d\x19\xe1\xfb\xde\x68\xda\x9b\x07\x1e\x76\x4e\xe0\x4c\xa6\x43\x9d\xc4\x3c\x0e\xe2\x70\x19\xe9\x84\xa2\x26\xb7\xe1\x14\x2a\x85\x2e\x38\x07\xa3\x86\x05\x63\x30\xca\x53\x70\x6a\x3c\xfc\x76\xcf\x2a\x61\x4c\xdd\xd5\xfd\x33\x05\x32\x31\x20\x3f\x35\x6e\x82\x5d\xcd\xb7\xa9\xa1\x58\x23\x85\xd5\x9d\xb9\xaf\xe6\xa1\xd4\x6c\x3f\x46\xda\xfa\x52\xc5\xb6\xd5\xa9\xad\x26\x19\x0a\x61\xe9\x0b\x15\xdb\x6b\xb4\x65\x23\xd0\x7d\x99\x62\x7b\x8d\xb6\x1c\x4b\x06\x13\x17\xf0\x84\x7c\x87\x9e\x5b\x4b\xfd\xb3\xa5\x99\x4a\xa6\x68\x9d\x58\x7d\x27\x5d\x95\xcc\x13\xb7\x08\x40\xac\xf6\xcf\x88\x22\x8e\xab\xec\x8c\x25\x00\xe0\x15\x88\x07\xf6\xf5\x0c\xf9\xbd\xf4\xec\xea\xc7\xb2\x77\xb4\x7f\x01\x3a\x08\x97\xf8\x49\xfb\xea\xd8\x9a\xd0\xfe\xaa\x7a\xbf\x02\xfa\x05\x3c\x9b\x23\x81\x39\x0e\x38\xc2\x1a\xa9\x02\x68\xf1\xf9\x86\xea\xb6\xac\x60\x0b\x88\x57\x68\xde\x55\x59\x25\xdf\x5d\xa5\x80\xab\xb2\x96\x1c\xd9\xaa\x8a\x37\xcb\x6a\xb8\x6d\xfa\xb3\x5d\x54\x0b\x8d\xd5\x81\x34\xc5\xc0\x7b\x6e\x79\x7c\x4d\x31\xd6\xfa\xeb\xbb\x96\x4d\xf7\x01\x12\x82\xa1\x92\x06\x9f\x60\x5c\xc0\xcf\x9b\xdb\xc7\x23\xab\x04\x94\xb3\xa9\x92\x8f\x48\x49\x41\xfa\x1b\xaa\x7d\x5d\x85\x37\x94\x62\x83\x0a\x36\x24\xe5\x82\x6b\x67\xde\x5a\x9d\xb4\x7f\xe1\x59\x1f\x3d\xa8\x0e\x5d\xc5\x37\xdf\xfa\xe6\x5f\x41\x33\xb6\xd1\x90\xf6\x57\x16\xc8\x95\x00\x69\xdb\xfe\x68\x7f\x65\x41\x5d\x09\xa8\xe5\x5c\x35\xd6\xa1\x35\x6e\x0c\x89\xe1\x2a\xab\xe9\x91\x28\xa7\x6e\x7b\xc5\xb4\xa5\xa2\x69\xf3\x69\x9b\xa9\xd3\xaa\x9b\x6c\xd6\xfd\xd5\x34\xfa\xb2\xcd\x9c\x69\xd5\xcd\x5a\xea\xfa\x7f\xc2\xea\x82\x8f\xad\x92\x4b\x88\x38\x71\xb8\xe5\xe6\x42\x5d\xe3\x02\x20\xb3\x99\xdb\x04\x1b\x15\xf0\x53\x33\x7a\xac\x72\x60\xad\xd8\xd5\xaf\xf5\x93\xfa\x6c\xc9\xc6\x16\xc3\xfa\xb6\xf6\x95\xc7\xec\x94\x5a\xbc\xe8\x87\x8a\x17\xfd\x0a\x8c\x7c\x0b\x29\x79\x0d\x09\x79\xd5\x62\x4f\xd1\x59\x83\x21\x27\x3f\x29\xdf\x58\x4b\x82\x99\x93\x9a\xed\x3b\x97\x7e\x3b\xf5\x37\xd2\xa7\x6b\xbd\x46\x19\x89\xd5\xd1\x2d\x45\x19\xd4\x45\x22\x94\x87\x5e\x44\xe6\x20\x84\x95\xba\xb5\x3c\xc7\xad\x45\xc7\xad\x45\x05\x67\xaf\x5b\x55\xe2\x16\xab\x8a\x1a\xa7\x9b\x6f\xb9\x66\xaf\x55\x23\x78\xf3\xdd\xd6\x6c\xb3\x17\x7f\xea\xee\x7a\x43\x45\xec\x86\xdb\xea\x17\x49\xec\x59\xd3\xb4\x6b\xf6\xd1\x92\x56\x6e\x55\x27\xb0\xf8\x92\x1a\x6b\x23\x07\x86\x81\xf6\x6b\xae\x8b\x88\x13\xc4\x9d\x14\x0f\x86\xf2\x6e\x72\x22\xab\x54\x80\x7e\xfc\x02\x40\xc0\x08\x62\x4e\x22\x0f\x5b\x74\x95\x0a\xd0\x2f\x36\x20\x75\x1f\xea\xa3\x82\x13\xab\x1f\xa6\xae\x10\x3b\x3f\xa2\x54\x7c\x59\xca\x1f\x09\xde\x29\x1b\xce\x42\x2f\x82\x2c\xf4\xa3\xcd\xe6\x63\xf1\x29\x0e\xfd\x08\x72\x19\x14\x47\xfc\x5a\x8a\x5f\x4b\x19\x4b\xb7\x44\xe4\xb7\x8a\xef\xfc\x80\x6e\x59\x1f\xbe\xb7\x3f\xfc\x68\x7d\xa0\xb4\xdc\x6e\x7e\x40\xbf\xe0\xdf\x2b\x2a\xa8\x54\xb1\x94\x5c\x4e\x58\xfc\xa9\xb1\x69\xaa\x93\xad\xca\x4d\x91\x0f\x4e\xad\x5e\x33\xf0\x44\x7f\xcd\xc9\x1b\x03\x0f\x8e\x71\x51\x00\xbb\x29\xb0\xbb\x78\x30\xac\xc0\xb9\xb7\x7b\x0c\x5c\x39\x83\xda\x92\xec\xb6\x3c\xdf\xee\xd9\x6f\xda\x5e\xd8\x8f\x1b\x20\xc5\x8b\x7a\xf9\xfa\x53\x1d\x9a\xdb\xf2\xa2\xf6\x58\x82\xb3\xec\xfa\x45\x01\x29\xb5\xfa\xe9\x0f\x6e\x63\x48\x28\x19\xf6\x52\x0a\xd9\x4d\xc7\x26\x91\xe6\x10\xd6\x4b\x69\x35\x42\x5e\xbd\x2f\xa9\x1a\x7f\xfd\xe4\xd5\x31\xd3\x1f\xeb\x78\xc5\xb4\xf4\x38\x43\xa7\x03\xdf\xc3\x83\xf2\xf1\xeb\x9e\x7c\x01\xb9\x55\xe4\x58\xbc\xe9\xc5\x14\x96\x94\x54\xd2\x51\xf9\x76\x7e\xb3\xbe\xf4\xff\xf6\x8d\xf7\x37\xff\xb6\xf7\x8d\x7f\x77\xf8\xcd\xf0\x6f\x77\x87\x3d\x79\xdd\x22\xa7\x3d\x06\x09\x59\xd2\x1e\xbb\xa2\x87\x89\x9d\xa9\xdd\xdf\xcf\x0e\xee\xee\x3b\x4e\x66\xf2\xd4\x1f\xf7\xb2\xc1\x5d\xc8\x89\xed\x17\xba\x24\x96\x57\xe8\x4e\x09\x6a\x29\x28\x21\xaf\x4d\x66\xde\x4b\xdd\x65\x2f\x81\x65\x2f\x75\xf2\x5e\x82\x8b\xe6\x70\x8d\x6f\x38\x59\x32\x6f\x1d\x93\xb4\xcc\xe8\x98\xa3\x54\x32\x1a\x26\xef\xef\xd9\x94\x70\x1b\xc3\xec\x2a\x90\xae\x4d\x00\xe8\x76\x6f\x4a\x31\xb6\xc7\x66\x58\xa7\xc5\x29\x6d\x52\xb7\xf5\xa6\xde\x93\x49\x1d\x8d\xc1\x10\x16\x94\xf8\x03\x8b\x48\x87\x18\xce\x28\xb9\xdd\x43\x0b\x3a\x18\x3a\x3e\x86\xf3\x9b\x52\xea\x99\xa2\xd4\xc1\x10\x12\xc2\x7a\x0b\x19\x7a\x0a\x62\xf9\xd3\x61\x90\x13\x37\x83\x25\x89\xab\x7e\x88\x49\xad\x50\xce\x20\xb6\xa7\x04\x96\x76\x0f\xfb\x77\x7b\xa9\x3b\xa1\xbd\x04\x26\xb4\x97\x3a\xe2\x39\x69\x7c\xcf\xc4\xf7\x58\x7c\xcf\xe4\xf7\xb8\xf1\x3d\x17\xdf\x97\xe2\x7b\x2e\xbf\x6f\xc0\x77\x24\x7c\x09\x5a\x14\x4d\x9b\xf0\x1d\x09\x5f\x82\x16\xdf\xb3\x26\x7c\x47\xc2\x97\xa0\xc5\xf7\x7c\x73\xf0\x57\x94\x84\x9c\x02\x13\xab\x1f\xc6\x62\xdd\xc0\x8c\xc2\x39\x8d\xe0\x94\x6e\xaa\x0e\x73\xc4\x85\x3a\x42\xe6\xe8\xde\x1d\xac\xf5\x79\xfb\x12\x99\xbe\xa1\x22\x3d\x9a\x65\x9c\xdf\x54\x4b\x4d\xed\xd6\x9d\xbe\x98\x43\xc4\x60\xab\x0f\x02\x94\x71\x9e\x8c\xb5\x6b\x43\x26\x4a\xfb\x52\x0f\xfc\xa3\xb6\x0d\xb1\x4e\xa4\x69\x23\x55\xd1\x94\xfe\x8c\xe3\xa6\x54\x0a\x5f\xe9\x97\x09\x2a\xac\x29\xa8\xa4\x52\x14\x4b\x0b\x38\xa9\xe7\xe0\xab\xc6\xfd\x98\x9a\x2b\x36\xb4\x3a\xf0\xac\xef\xf4\x68\xd8\xa3\xfd\xe3\x0b\xcf\xa1\xf2\xa2\xc1\xe0\x36\xa8\x37\x2b\xf9\x66\xa5\xde\xa8\x12\xaa\x64\xf9\x66\xa5\xdf\xd4\xca\xdc\x51\x65\x1c\x8e\x07\xf7\x4c\xa9\x3b\xaa\x94\xc3\xf0\xe0\x9e\x25\x09\x7c\xa2\x6d\x27\xe6\x9f\xe8\x3f\xf5\xc8\xfc\x62\xf3\xb6\x90\xe5\x9a\xfd\x22\x7e\x01\xd7\x1f\xad\xeb\x43\xee\xcd\xa3\xed\xdb\xc1\x31\x55\x94\x5b\x5e\x1b\x31\xa0\xcb\xe8\xaa\xad\x87\xd1\x9b\xc5\x8b\xff\x39\xbf\xb7\x3f\x0d\x6b\x9f\x6e\x43\x6b\x4b\xe8\x6e\xcf\x4c\xb2\x53\xde\xa4\x11\x64\x69\xde\xaf\xcc\x7b\x41\xc2\xf7\x70\xe9\x20\x60\x66\x4d\xfa\x04\x6c\xd0\x09\x54\xb7\x07\x60\x83\x64\xac\xcb\x58\xda\x18\xf3\xb8\x95\x65\xa4\xf4\x93\x5a\x00\xd6\x6a\xbd\x68\x5d\x10\x17\x5b\x16\xc4\x09\x2d\x49\xff\x84\x7e\x19\x89\x5f\x0c\xcd\x8f\xdb\xe6\xc7\x9d\x16\xea\xd7\x3f\x4c\xe1\x95\x29\xbc\xba\xf3\x47\x17\x86\xdf\x4e\x00\x06\x3b\x33\x88\x43\x0c\x5b\xe9\xb8\x8d\x1a\x1a\xe0\x4a\x78\xce\xd0\x10\xc2\x6d\xc9\xaa\x0c\xf8\xf2\xfd\x4a\xbc\x6f\x36\x66\xa8\xc8\x54\xad\xa0\x0c\x6d\x28\xd5\xfb\xd5\xb0\x05\xca\x16\x94\x6f\x2b\x94\xb5\x4d\x6f\x4b\xbf\x6b\x5f\x0d\x91\xaf\x6e\xb7\x7d\xbd\x63\xbe\xde\x11\x7b\xf7\x9f\xba\x94\x2f\x86\x15\xa1\x0f\x09\xbf\x62\x85\x42\x49\x55\x65\x85\xdb\xf5\x0a\xed\xeb\xf6\xe2\x4e\x55\xe1\x0e\xe1\x70\xe5\x6c\x8a\xfd\xc4\xd0\xb3\x43\xe5\x7a\x2e\x57\xb3\xf9\xb2\x52\x1b\x90\x19\xf1\xbf\x64\x5d\xbf\xd9\xba\xae\x2f\x1a\xeb\xfa\x65\xeb\xba\x7e\xf9\x9f\xb7\xd1\x5d\xb9\x07\xdd\xfe\xf7\xd9\x83\x7e\xdf\x26\xa2\xef\xd7\x6f\xa7\xb3\x94\x6c\xa5\xb4\x9d\xeb\x76\x3d\x06\xe9\x96\x5d\x4f\x7c\x69\xe1\x0c\x1a\xab\x3b\x7f\x0d\xf1\x1e\x6e\x25\xde\x97\x0d\xe2\xfd\x40\xed\x93\x88\x93\x38\x4f\x72\x52\x6e\x5e\x1a\xf0\x09\xe5\x31\xe1\xc5\x87\x1a\x45\x5f\x45\x8b\x24\x8c\x0c\x4e\xd5\x4f\x09\xfb\xda\xc3\x13\x2b\x06\xe6\xf1\x05\x98\x80\xb4\x2b\x2b\x43\xba\x2b\x53\xe5\xb0\xfb\x5e\x99\xee\x3b\xd5\xc9\x11\x20\x23\x5c\x1a\xb6\x64\xb4\x5c\x37\x81\x9c\x70\xf1\x43\xa8\x7a\x32\xc7\xdb\xf2\x80\xb0\x7d\x9c\x92\xe5\x80\xd5\x90\xb2\x59\xad\xe8\x6c\x8f\x86\xcb\xc8\x41\x86\x76\xc5\x2b\xdc\x43\x89\x93\x0a\x45\xce\x2a\xc6\xdb\x8a\x65\x4e\xda\xcb\x31\xde\x31\x63\x61\x06\xc2\xba\xa3\x5e\x0d\xc5\xb5\x67\x43\x17\x2a\xa6\x91\x53\x4e\xc6\x4a\xbf\xe0\xe6\x34\xe8\x2d\x6d\x04\x15\x2b\x9f\xac\x8c\x8c\xbb\x2a\x46\x5f\x39\xb3\x32\x45\x88\x9e\x7b\xa3\x50\xb1\xbe\x9c\xe8\x16\x85\x8a\xca\xe6\x80\x15\xa8\xff\xb7\xbb\xd6\xc9\xe3\xc3\xeb\xf5\x0f\xa5\x2e\xd0\xfe\xf1\x87\x9e\xfc\x3d\x74\xa5\x22\x21\x34\x43\xb1\xb8\xca\x0f\x2b\xf9\x61\xa5\x3e\x5c\x0c\xad\x1a\xbe\xcb\x55\x69\xeb\xe5\xca\x57\xf6\x04\xb1\xa9\xca\x4f\x96\xde\xf1\xbc\x46\xd1\x25\x43\x36\x41\x72\x89\x98\x2f\x3c\xb8\x57\x3c\xff\x57\x33\xe8\x52\x4c\x6b\x15\xca\xfe\xa0\x08\x76\xb5\xe6\x61\x89\x22\x75\xde\xf4\x70\xab\x42\xf3\x3f\x1a\xca\xb0\x85\x09\xfb\x57\xca\x3f\x25\x73\x7f\x78\x43\xe6\xde\x98\x1e\x5b\x34\x6b\x65\xf7\x7a\x12\x2d\xf1\x4d\x33\x85\xd7\x37\x62\x0a\x32\xd5\x42\x93\x09\x70\x9a\xd6\x13\xca\xb7\xf1\x01\xdb\xd5\xe8\xd5\x0d\x17\xdc\xab\x7f\xaa\xa6\x73\x71\xf7\xcb\x54\x1e\xfd\xe3\xee\x5f\xab\xfb\x6c\x48\xf9\x5f\xaa\xfb\xd4\xd7\xf1\x17\x83\x6b\xd3\x4b\x6e\xac\x79\xb4\x7c\xbd\x6b\xbe\xde\xfd\xf3\xf5\x92\xed\x6a\x46\xfb\xba\x6c\x1f\xf1\xba\xee\xd1\x3a\xb6\x0d\x6d\xe5\x6e\x55\xe3\x6e\xd9\xee\xbf\x6c\x25\xbf\xbf\xf1\x4a\x7e\xf5\x87\x57\xf2\xa3\x1b\xae\xe4\x47\xff\x0d\x5b\xe7\x7f\xb7\xb6\x73\xed\x2e\xb8\x29\x09\xdc\xd4\x68\x73\x13\x6d\xe6\x9f\xbe\x4c\x5e\xdc\x78\x99\x3c\xfa\xc3\xcb\xe4\x29\xad\xa5\x90\x22\x52\x4a\x95\x0e\x53\x02\x59\x99\xf3\xf4\x62\x28\xb4\x10\x81\xa1\x0c\x2b\xd9\x3f\x9e\x7b\xfe\x71\x6c\xee\x8a\xe7\x44\x5a\xd6\xc5\xbb\x61\xec\xdc\x36\xbf\x63\xf9\xc3\x1f\x1e\xc7\x8e\xfe\x31\x8c\x61\x49\xac\xef\x25\x24\x53\x20\xc6\x3b\x29\x41\x69\x2f\x57\x62\x75\xaf\xac\x27\xed\xfd\x56\x2b\x78\xb0\x84\x84\xa0\x44\x95\x5c\x35\x4a\xae\xea\x25\x0b\x8d\xf3\xf0\x76\x85\xf3\x5c\xe3\x3c\xbc\x5d\xe1\x2c\xbe\xb7\xe1\x3c\x26\xd6\xf7\x12\x92\x85\x73\x46\x50\xd6\x9b\xab\x33\x89\x0a\xaa\xcb\x2b\xac\xf0\x60\x0c\x31\x41\xb1\x2a\xb5\xb2\x4b\xb1\x5a\xa9\x62\xab\xea\x61\x6e\xd4\xb7\xab\x09\xcf\xae\xe4\x75\xf1\x7c\x31\x13\x3a\xef\xb3\xff\x14\x4e\x27\xa9\xc2\xb0\x30\x31\xc8\xe6\xb7\x18\x79\x52\x95\x19\xda\x85\x86\x76\xa9\xf2\xe1\x9f\xa9\x6f\x6c\x4a\x14\x56\xd1\x7f\x91\xca\x21\x88\xbf\x9d\x3d\xdb\x99\x3e\x85\x26\x6b\x72\x37\x08\xed\x95\xef\xd8\x03\x6e\x1d\x45\xdb\x03\x2c\x5f\x2f\xb2\x4f\x88\xf5\x98\x93\xf6\x52\x9b\xda\x30\x2e\xb6\x8e\xee\xbf\xc3\x21\x4c\xc9\xdb\x9f\x6e\xf2\xf6\x0d\xea\x83\x2d\x94\x08\x5b\x29\x11\xb6\x92\x25\xfc\x33\xf6\x8f\x27\x37\xda\x3f\x94\x05\x45\xb3\x8e\xa0\x54\x9f\x3c\x6b\x37\x51\x9c\xe3\x6a\x23\x8a\x6d\x43\xf9\x7c\x23\x3e\xf4\xf9\x3f\x4d\x77\xfa\x57\xf3\xa3\xff\x51\xc3\xfe\x43\x99\xda\xbf\xa7\xda\xf7\x5f\xc9\xf3\xbe\xfb\x02\x9e\xf7\xd9\xe2\x79\xaf\xfe\x28\xcf\x7b\x70\x23\x9e\xf7\xe0\x7f\x64\xaf\x7f\x03\x85\xf5\xdf\x9f\x71\xfc\x47\x2a\xc8\xff\x95\x0c\xe5\xdd\x17\x30\x94\x07\x16\x43\x79\xf4\x47\x19\xca\xcf\xad\x47\xf0\x3f\xff\x51\xa1\xe9\xaa\xd5\x68\x95\xb8\x62\xad\xb5\xaf\xa9\xd6\x05\x75\x85\x24\x8f\xda\x36\xca\x16\xc1\xde\x1c\x09\x7e\xdc\x7a\xfc\xfb\x73\xe3\xf8\xf7\x27\x6a\xdf\xb7\xd1\x97\x6d\x2b\x25\xf9\xd7\x36\x4b\x87\x32\x35\x40\x42\xb8\xab\x2c\x1f\x19\xd1\x67\x72\xea\x04\x6f\x80\xd2\xf5\x3a\x39\xf0\xba\x5d\xd7\xc3\x42\x89\x67\xae\x76\x23\x44\xc9\x7a\x9d\x9a\x0f\x39\x41\x59\x2f\x71\xe2\x5e\x2a\x6a\x38\x65\xc0\x78\xf4\x13\x45\x19\x76\x7e\xa2\x28\xc6\xfa\xd6\x51\xed\xd6\x70\x86\xa1\xfc\x1d\x63\xe8\xdf\xed\x95\x8f\x39\xc6\xeb\xb5\x95\xc3\xf9\x5b\x6a\xbb\x07\x5b\xc8\x9b\x6b\x09\x6c\x84\x6e\xf7\xea\xc8\x33\x97\xe3\xc1\x30\xb0\x2f\x1d\xb5\x0c\x82\xa7\xcd\x3d\x9e\x36\xf7\xf8\xda\xdc\xe3\xcb\x6e\xb9\x29\x1e\xdc\xde\xd9\x6e\x98\x70\x72\x48\x9c\xbc\xc7\x21\x73\x73\x88\xdd\xbc\xc7\x64\x38\x51\xeb\x4a\x4a\x2b\x3d\x57\x17\x4d\x5a\x3e\x8b\xd9\xfd\x85\xd6\x22\xab\xfe\x72\x35\x94\xdf\x68\x83\x38\x6e\xd5\xab\x7f\xdf\xfc\xfe\x63\xfd\xbb\xcc\xc9\xba\x1d\x3c\xe7\xe5\x65\x2d\x60\xea\x66\xa1\x3e\xbf\x87\xc4\xba\x6b\x9e\x9a\x0c\x0c\xe5\x63\x5c\x7b\x94\x9e\xf6\x49\xe8\x45\xc4\x83\x4c\xfc\x19\x42\x2c\xfe\xd0\xd0\x8b\x9c\x61\x8f\x86\x7e\x04\x9c\xf8\xfb\xfc\x20\x95\x67\xfc\x5c\x65\xd1\xf7\x21\x13\x7f\xee\xc8\xfb\xd9\xe4\x4e\x8f\x86\x5c\x15\xe7\x8e\x1f\x69\x98\xa9\xeb\x0b\x70\x99\xfa\xf1\x35\xc4\xea\xc7\xdf\x7a\x54\xfe\x70\x68\x98\x96\xb0\x25\x64\x95\xfe\x6b\x90\x85\xdc\xf5\x23\xd9\x80\x4b\x98\x6c\xc1\x25\xac\x17\xcb\xd7\x36\x6c\x05\x70\xa0\x1a\x00\x4e\x52\x77\xb8\xcf\xef\x13\x6f\xdf\x75\x35\x9a\x48\x56\x4e\x24\x56\x58\x00\x56\xf5\x35\x4a\x48\x60\xe0\x28\x60\x78\x30\x04\x4e\x3c\xab\x9f\xb2\x83\xa6\x4b\x1a\x86\x09\xbe\x96\x40\x16\x15\xb7\xfe\xd5\x02\xd4\xa6\xdc\xc4\xbd\xbf\xf6\x60\xdb\xf6\xc0\xad\xed\xc2\x3f\xd4\x0e\xb6\xb9\x07\xdf\x36\x5e\xe0\x7f\x95\xb9\x49\x31\xa7\x17\xf1\x0b\x99\xca\x5b\x6c\x0a\x52\xe0\xc2\x56\x5a\x80\xf5\x9a\x97\x4f\x2b\xff\x8a\xc1\xf9\x77\xb0\x13\x81\x19\x6a\x33\xc2\x8c\xfc\x6a\x09\x3b\x18\x58\xd3\x6f\x6f\x63\x6e\x1a\x35\x7e\xbf\x3b\x54\x09\x92\xb0\xa2\x28\x00\xfd\x68\xaf\x88\x7a\x6e\x3b\x7b\xb1\x60\xac\xd4\xeb\xc6\x7d\x58\xbb\x88\x2a\xa0\x33\x95\x4a\xe4\x81\xe2\x02\x7e\xa9\x2d\xb9\x2b\xd2\x48\x34\x85\x48\x59\xbb\x35\x45\xc4\x15\xb2\xc5\x7c\x7b\xe6\x87\xe6\xf2\x90\xf0\x6f\x9e\x87\xa1\x7d\xe3\xe2\x40\xe5\x25\x22\x99\x3c\xb1\x00\xca\xff\xb9\xfc\xa5\xee\x56\xf6\x3b\xdd\xc7\xa4\xf3\x18\x2e\x53\xff\x5f\xb1\x36\x64\x6c\xdc\xd0\x8b\xb6\xad\x90\xf2\x3b\x0c\x09\x21\x0c\x6f\x81\x22\x38\xbf\x8c\x6c\x2b\xa3\x7d\x5a\xc9\x86\xc5\xfe\x28\xa4\x28\x79\x57\x2b\x23\x1e\xc4\xc4\xdf\x8f\x0f\xd8\xbe\xe3\x64\xe0\x38\x31\xbe\x6a\x2a\xd2\xd0\x8b\xc2\x2c\x82\x44\xff\x4d\x43\x5f\x3f\xab\xbf\x34\x8c\x45\xbb\x71\x84\xf7\xaf\x65\x6b\xec\xf7\x30\x33\xb3\x04\x6b\xfe\x6d\x7f\xcc\x93\xad\x3d\x2a\x88\x10\x06\xa4\xa8\x61\x89\xad\x29\xbf\xca\x80\xc0\x09\x2f\xd2\x7f\x36\x6d\x9a\x61\xb8\xd9\xf6\xe6\x1d\x68\x54\xcd\xc8\xf3\x03\xbf\xdb\x1d\xd6\xf7\x98\xe6\xac\xd4\xb7\x3a\x33\x8a\x18\xfe\x82\x7d\xeb\x3e\xf1\xca\xac\x0b\xbc\x9c\x77\xbe\x8d\x18\xb6\xe8\x39\xff\x4e\xce\x5b\xe5\x6e\x53\x2e\x7d\x7e\x40\xbc\xf6\x45\x5b\x8e\xf0\x96\x3b\x03\xb2\xa9\x32\x9a\x7a\x69\x03\xe9\x95\xae\xa0\x1c\x3b\x54\x7b\x10\x1b\x4b\xc8\x86\xc3\x70\x39\x7d\xdb\xbe\xe3\xc2\x6c\x7c\xd5\x2e\x57\xaa\xda\xc9\xd6\xb5\x22\xd7\x46\xff\xae\xbd\x5c\x32\xde\x56\xc6\xb3\x64\xf9\xb8\xb5\x84\xaf\x42\xa1\xe7\xcd\x8d\x30\x99\x22\x94\x54\x89\xcc\xee\xfb\xb8\x4a\xd1\x27\xb7\x11\x22\xf5\xa1\x50\x70\xc7\x08\xf2\x32\xee\xd4\x7e\x76\x90\xc8\x9b\xb2\x32\x2e\x13\x89\x75\xa1\x2c\x8a\x74\xca\xc4\x7c\xdf\x71\x18\x8e\x43\x16\x85\x7e\xe4\x10\xf9\xc3\x8b\x48\x92\xbf\x88\x5f\xa0\x54\xbd\xc6\xa3\x54\xbd\x0e\xf4\x8b\x02\x96\xf5\xc1\xb0\xf3\x97\xe9\x80\x57\xcc\xce\xbf\x8e\x85\xfc\x2d\xc4\x70\xcc\x84\x08\xcd\x4b\x6d\xd0\x1a\xb2\x39\xaf\x05\x7b\x12\xea\x83\x1c\x8b\x71\x4b\xc6\xfe\x39\x0a\x23\x0c\x9c\x2c\x39\x30\x92\x73\x48\xc9\x9c\x57\x90\x12\x64\x2e\xf1\xcb\xf4\x85\xdb\x92\x11\x2c\x89\xc9\xc2\x05\x73\x62\x6e\x05\xc2\xd8\xc2\x7b\xae\x74\xa1\x8c\x78\xfb\xd9\xc1\x5c\xdd\x38\x36\x5d\x9d\xc2\x8c\xe4\x82\xef\x4f\xc8\x38\xcc\x22\xab\xd6\x12\xc3\x82\x78\xfb\x8b\x83\xe5\xbe\xe3\x2c\xf0\x24\x5c\x44\x64\x4a\x42\x0f\x9c\x14\x25\xe1\x22\x82\x19\x2c\x20\xc1\x11\x4c\xfb\x93\x98\xc7\x44\xbc\xdb\x99\xf4\x3f\xd0\x15\x99\x15\xba\x3d\x88\x09\x47\x63\x5c\x36\x3b\x0e\x63\x31\x69\x2a\x19\x38\xc9\xca\xf1\x43\x63\x88\x31\x8c\x8d\x1d\x27\x91\x69\xc6\xfe\xf0\x0d\x4d\x1d\xbf\x43\xa6\xa6\x96\x37\x35\x93\x66\x58\xab\x3f\x10\xa1\x22\x91\x11\x2a\x92\x7e\xc6\x26\x94\x7d\x69\x24\xc2\x25\xdf\x1e\x87\x4f\x63\x4d\x15\xd6\x5c\xb6\x31\x9d\xe6\x37\x8f\xc5\x61\x1a\xc9\x79\x40\x05\x08\x56\x40\x52\xc0\xb4\x6d\x2d\xa6\xd6\x5a\xf4\xec\x7c\x99\x6a\x31\x7a\x72\x9d\x79\x51\xb5\x0a\xe3\x8a\x7a\x12\xa2\x96\x5e\x2a\x97\x5e\xe2\x48\xdf\xf9\x30\x13\x0b\x6b\xbd\xf6\x84\xb4\x94\xc8\xe5\x6a\x97\xaa\x8a\x0c\x48\x52\xe4\x5c\x47\xd7\x85\x59\x1b\x72\x79\x0d\xb9\x06\x6e\x2a\xb5\x92\x0c\x9d\xa6\xd9\x45\x99\x56\x53\xd2\xda\x12\x2b\x12\x8c\x89\x57\x63\x11\x28\x21\xa2\xd7\x21\x0f\x59\x14\x85\xcb\x08\x87\x7e\xe4\x0a\x99\x08\xdf\x27\xde\x48\x4a\x47\x24\x93\x42\x11\xc9\x1c\x92\xe0\x20\x39\x90\xaf\x85\x52\x0e\xf2\x6b\x2c\x5f\xab\x82\x05\x4c\xda\x30\x67\x5b\x87\x95\x48\xfb\x8f\xe6\x6f\x59\xb9\x72\xf7\xd3\x83\x6c\xdf\x71\xac\x14\x8a\x02\xef\x5c\xe6\xd8\x13\x62\x5d\x8c\x73\x31\xbe\x71\x14\xa6\xe5\xf8\xaa\x9f\x0e\x91\x3f\xbc\x88\xb8\xf9\x60\x68\x0d\xe9\xe2\x3a\xde\x2b\xf6\xe9\x94\x08\x5c\x15\x3a\xf8\x3a\x4a\x10\x32\x66\x2a\x91\x29\x3f\xe7\xc4\xd3\x93\xe0\xed\xe7\x92\x45\xe7\xd5\xc7\xb1\x84\x9c\x47\x11\x4c\xc9\x58\xe0\x2e\x11\x87\x19\x41\x53\x17\x8d\xc3\xd8\xf5\xf5\x2b\x19\x39\x7e\x42\xbc\xfd\x89\x9c\xa4\x89\xe2\x7a\x0b\x59\x7d\x12\x45\x3b\x33\x87\xa0\x45\x09\x00\xbb\xe2\xa1\xaa\x5c\x2c\x1d\x32\x85\xb9\x43\x66\xbd\x69\xc1\xcc\x17\x87\xe8\x9f\x72\x3e\x97\xdd\x2e\xca\x5c\x32\x1f\x2c\xf1\xb6\x22\xd5\xc8\x9d\xd5\x57\x5a\x95\xd0\x72\x81\xce\xab\x6c\x9a\x4b\x5e\x66\xb8\xb6\xc6\x99\xd5\xd2\xea\xba\x82\xca\x0a\x7b\x43\x3d\xe7\xb5\x7d\x06\x18\x71\x7d\x43\x15\x86\x75\x67\xc4\xf5\x07\x9e\xa0\xd6\x83\x64\x1f\x0b\xcd\x9e\xea\x0d\xec\x7e\x26\x83\xff\x8a\x8d\x82\x95\x88\xa4\x72\x7b\x59\x6d\x47\xfa\xf4\x8f\x22\x7d\xba\x81\xb4\x07\x29\x71\x7d\x0b\x69\x41\xbc\x15\xb6\x92\x32\x71\xb7\x8b\x98\x43\xaa\xc6\x99\x44\xf4\xa4\x95\x8f\xad\x74\xda\xe9\x73\xca\x64\xb2\x68\x38\x6e\xe9\x4f\xcd\x1a\x28\x1b\xd7\xdd\x83\x8c\x9c\x49\xa5\x48\xaf\x1a\x58\x0a\x8d\x6f\x4e\x42\x65\x14\xd3\xd6\x2f\x6d\x89\xcb\x42\x1e\x41\x7c\x90\x8f\x90\x58\xc9\x21\x8b\x60\xa9\xd3\x7f\xcb\x2c\x17\xfa\xdd\xbc\x7c\x67\xd0\x9f\x57\xe8\xe9\xd4\xa9\x68\x89\x0b\xf8\xd4\xda\x9f\x65\xa3\x3f\x3b\xac\x3f\x41\x1c\x3a\x31\x1b\x77\xc0\x92\x03\x74\xf1\xb7\x05\x86\xb2\x04\x8d\xdb\x8a\x3c\xaa\x8a\x08\x49\xaf\xad\xc8\xfb\xaa\xc8\x22\x69\x2d\xf1\xac\xde\xce\xeb\x78\x92\xc4\xf3\xb6\x82\x3f\x57\x05\x99\x2c\x74\xb8\x05\xad\x9f\xeb\x68\x6d\x87\xf8\xae\x09\xf1\xd9\x96\x5e\x58\x05\xa5\x04\xbe\x1d\xe4\xc7\x5a\xdb\x1f\xbe\xcb\x58\xf2\x39\x4b\x79\x7b\xe1\xdf\xea\x85\x7f\xa2\x8c\x27\xe3\xf6\xa2\xdf\xd7\x8b\x6e\x47\x80\xd2\xaa\xa4\xce\x24\xdc\x52\xea\x74\xa3\x54\xde\x56\x6c\xb5\x51\xec\x61\xc2\xc6\xf3\xd6\x31\xe2\x9b\x65\x59\x96\xb7\x82\x65\x1b\x45\x1f\x25\xf1\x59\x96\x4e\xda\x0a\x67\x1b\x85\xdf\x7c\x5c\xc6\xac\x15\x87\xf1\x66\x59\x1e\xb3\xb6\x92\xf3\x8d\x92\x6f\x59\x22\xc3\x3a\xb5\x95\x9e\x6d\x94\xfe\x79\xd5\x5a\xf0\xdc\x2a\x28\x63\xd1\x3d\x88\xf3\x24\x7f\x28\xd4\xd2\xd6\xce\xbd\x69\x2d\xff\x72\x41\xd3\xb6\xd2\x87\xad\xa5\xdb\x4a\x3e\xde\x28\xb9\x4c\x27\xed\x7d\x7b\xdb\x2c\xfa\x30\x66\x93\x24\x8d\xe7\xdb\xb1\x7e\xbf\xad\xca\x36\xc4\x5f\x6c\xab\xd0\x56\xf8\xf5\x66\x61\x7e\xb6\x9c\xcf\x5f\x67\x67\xdb\x51\xfa\x6e\x7b\xa5\x6d\x48\xbd\xdb\x5e\xa5\xad\xf8\x93\x66\x71\xc1\x2c\x62\xb6\x1d\xa5\x8f\xed\x15\xda\x8a\x3e\x6f\x94\x7c\x9e\xa5\x19\xcf\x52\xfa\x4b\x2b\xd7\x68\xc2\x35\xa5\x7f\x6d\x65\x1c\xcd\xd2\x2f\x62\xbe\x64\xed\x23\xcf\x78\xa3\xec\x1b\x4e\x17\x6d\x05\x93\xb6\x82\x87\x53\x4e\x5b\x7b\x17\xb7\x95\x7e\x40\xa7\x59\xfb\x22\xce\xac\xe2\x39\x8f\xc7\x1f\x5a\x57\x7a\xb3\xd0\x4b\xa9\x8f\x3c\xbe\x58\xc4\xed\x6c\x64\xda\x5e\xe1\x51\x72\x4e\xd9\x69\x92\x9e\xb6\x2e\xfb\xf6\x3a\x2f\xb2\xf6\x5d\x22\x6f\x2f\xfe\x26\x99\xcf\xb2\x25\xe5\xbc\xb5\xd2\xa4\xbd\xd2\xcf\xc9\xe9\x16\x5e\xb4\xd8\xa8\x20\xb4\xbd\xc3\xc5\x82\xc6\x2c\x4e\xc7\xad\x75\xce\xda\xeb\xe4\x63\x9a\x4e\xb6\xf4\x7d\xd5\x5a\xe5\x11\xbd\xaa\xce\x49\x6b\x9d\xa7\x69\x9e\x4c\xe8\xcb\x25\x6f\xab\x72\xdc\x5a\x65\xdb\x08\x2f\x5b\x4b\xbf\x56\x22\x4d\x5b\x85\x4f\xbc\xc0\xc5\x17\xe4\xf0\x66\xe8\x36\x86\x84\x5c\xea\x40\xd5\x15\xbc\xc2\xb6\x40\xa1\x4a\xf2\xa4\xc0\xa5\x36\xd7\x54\x7a\x21\x25\x97\xc5\x3e\x97\x9a\x12\xd7\xa9\x20\x68\x55\x2a\xe4\x91\xd3\xe9\xe0\xf5\x9a\xee\x26\xe9\x6e\xba\x99\x35\x37\x99\xcf\xe9\x69\x3c\x97\xd9\xe0\x83\xdd\x8e\x43\xf1\x4e\x1a\xd2\x88\x84\x51\x61\x19\xb6\x62\x94\xda\x76\xaf\xea\x08\xdb\x3e\xbb\xce\x95\xae\xb5\xa1\xf1\x55\x7a\x5e\x22\xf5\x3c\xad\x25\x86\x69\x84\xfb\x69\x7c\x46\x09\x21\xbc\x0c\x5c\xa5\xac\x14\x15\xd0\xa5\x19\xcb\xea\x0c\x40\xc7\xd6\xad\x2b\x8f\xc9\x54\x9e\xfb\x56\x00\x2f\xc5\x23\x49\x80\x12\x1d\x4c\x15\x79\x90\x96\xd2\xab\x79\x97\x3a\x3e\xd6\x06\xd0\xb2\xbf\x26\x8e\x39\x55\x62\xf0\xa5\x00\x19\x70\x1d\x53\x9c\x15\x18\x68\x2d\x23\x7a\xb6\x3d\x23\x7a\x96\xb6\x1d\x5b\x96\x2e\x5f\x90\xb4\x47\xbd\xa7\x7d\xce\x92\x33\x84\xfb\xf9\x62\x9e\x70\x34\xf8\xfb\xfa\x28\x77\x06\x58\x4a\xfc\x4d\xc5\x80\x91\x4e\x47\x6a\x06\xd2\xac\xf4\x72\x8a\x3a\xfd\x8e\xca\x96\xad\xac\xd1\x8c\xd8\x5d\x6d\x8c\x06\x06\xda\xed\xee\xf1\xfe\x2c\xce\x5f\x7e\x4a\x5f\xb1\x6c\x41\x19\x5f\x21\x8a\x37\xe9\x64\x99\x7e\x48\xb3\x4f\xa9\x4d\x27\x0a\xdb\x4b\xf9\x86\x82\x1c\x25\x56\x14\xb8\x40\xd4\x11\x38\x61\xa9\xcc\x41\x5c\x2a\xfa\x2a\xf9\x62\x93\x80\x0f\x86\x58\x92\xad\x8e\x38\xdf\xed\x56\xc6\xa1\xbd\xd2\xa4\xd5\x42\xb7\xe9\x79\x3c\x4f\x26\xbb\xe3\x78\x3e\x3f\x89\xc7\x1f\x04\x4e\x5c\xd9\xfa\xf6\x1d\x27\x3b\x88\xf7\x05\x49\x30\x82\x28\x49\xc2\x2c\xc2\x32\xee\x19\x4e\x43\x16\x91\xa5\x34\x8a\x02\x95\xb4\x02\x56\x7a\x70\x65\x3c\xe2\xca\x72\xa3\xd6\x4b\x4b\x05\x51\xaa\x54\x8c\xc4\x44\x16\x8d\x46\x37\x5a\x95\xd3\x90\xdb\x40\x30\x2e\x09\xbe\x80\x71\xb6\x58\x6d\x1e\xc7\x5d\x16\xe5\x49\x5c\x19\x37\x51\x22\xc5\xa5\x25\x49\x06\x69\xd0\x53\x59\xa9\xc3\x72\xa9\xca\x43\xd1\x78\x3e\xdf\xf4\x49\x44\x9b\xfc\xc3\x1d\x6e\x18\x98\x2c\x3b\x28\x93\x67\x6c\xfb\x99\x3a\x5f\xc3\xa2\x4f\x16\x6f\xc9\x9c\x61\x24\x27\x55\xa1\xf9\x3b\xc9\xc8\x98\x4b\x19\x41\x66\x61\x84\xb4\xb4\xc8\x94\x6d\xa7\x61\x16\x29\xe6\x60\x6c\xc1\x90\xe0\x02\xe4\xef\xa0\xc9\x78\xff\x14\xa4\xf4\x89\xa3\xc1\x08\x12\xc9\x79\x52\x83\x58\x22\x39\x4f\x82\xd3\x30\x69\x22\xc6\xcc\xe1\xdc\x9c\x64\x76\x3e\xa0\x52\x47\x46\xe3\x36\x03\xeb\x1b\x29\xf1\x77\xbb\x46\x9f\x6a\x7c\xe8\x27\x9c\xb2\x98\x67\x6c\xd4\xa2\x74\x1b\x33\x6a\x11\xb4\x7c\xa4\xf6\xaa\xda\x68\x8e\xf6\x2d\xae\x45\x08\x29\xdf\xef\x99\xdf\x15\x87\x1b\x19\xdc\x82\xb2\x41\x2c\x08\x4e\x9b\xd3\x75\x8e\x0c\x0f\xce\x88\x07\xe7\xc4\xa7\xb7\x61\x45\x3c\x38\x25\x1e\x9c\x10\x0f\x8e\x49\x27\x93\xfe\x03\x1d\x42\x88\x18\x77\x9d\xe4\xa4\xc2\x69\x41\xd9\x34\x63\x67\x42\xbe\x18\x59\xdf\x83\x31\xb2\xbe\x60\xdc\xed\x5a\x8f\xfd\x34\xfb\x34\xb2\x9e\x83\x47\x31\xa7\xf0\xe9\xda\xb6\x3e\x25\xe9\x24\xfb\xd4\x68\x46\xbd\x14\x2d\xa8\x5f\x7d\x46\x3f\x2e\x69\xce\x0f\xd3\xe4\x2c\x16\xe3\xf7\x84\xc5\x67\x74\x74\xd5\xc7\xfe\x49\x92\x4e\x0c\xa0\xda\x74\xe4\x94\xbf\x4d\xce\x68\xb6\x94\xe7\x44\x5f\xdb\x76\xa6\xc7\x96\xce\xbc\x5e\xa3\x4f\xe8\x02\xc3\x29\x39\x16\x7d\x43\xd8\x39\xc1\x76\x5e\x6f\x7c\x79\x4a\x3c\x3b\x8b\x77\x79\xa6\x1b\xcf\xe7\xc6\x67\x28\x39\x33\x47\xfa\xa9\xf4\x74\xab\xa5\x46\x7a\x59\x77\xce\x13\x6b\xe1\x4d\xc9\x44\xfa\x8c\xca\x88\xf4\xba\x0c\xa4\x76\xba\x6f\xd1\x36\x5a\x19\xc4\xb0\x73\x02\x13\xb2\x20\xde\x0e\x67\xab\xcb\x3d\x8b\x89\x3d\x46\x18\x1c\x67\xb2\x63\xcb\x2f\xd3\x7d\xbe\x8f\x11\x25\xa7\x2e\x57\x08\x62\xb9\x47\x71\x85\xb8\x32\xfd\xcb\x80\x2f\x32\x6a\x26\x57\x98\xef\xbb\xee\xa4\x40\xb8\x98\x0a\x35\x6e\xbe\xba\x14\x14\x66\xb5\x63\xc1\x07\x46\xa6\x90\x12\x7f\xe0\xed\xb3\x7d\xcc\x14\xd4\x11\x4a\xef\x33\xd5\x9a\xb4\xf9\xea\xdf\x62\x27\x64\xc0\xc4\xa3\x68\x04\x07\x88\x9b\xdf\xc0\xac\x21\x03\x46\xe8\x88\xea\x17\x3c\x98\x12\x8e\x77\x66\x84\xc2\x5b\x21\x10\x21\x31\x45\x5e\x61\xa7\x3a\x37\xdc\x5b\x8f\x0f\x70\x42\xdd\xd5\x0e\xbf\x7f\xde\xed\xa2\x13\x97\x70\x58\x11\xdb\x1b\xf0\xad\xa0\x8a\xc9\x7a\x8d\x16\xdd\x2e\x5a\x90\xf1\x9c\xc6\xcc\x50\xc8\x42\x6c\xcf\xee\xe9\xfd\xe1\x9d\x11\xa2\x07\xfe\xc0\x93\x45\x2c\x12\x3a\x04\xea\xea\x76\xdc\x13\x8c\xe1\xac\xdb\x45\x67\x0a\xc6\xd3\x94\x53\x76\x1e\xcf\xd1\x99\x4c\x5f\x7b\xb6\x5e\x57\x73\x06\x67\x02\x48\x59\xe2\x03\x9c\x63\x0c\x13\xe2\xc3\x27\x74\x88\x31\x2e\xde\xd8\xde\x3e\xdb\x64\x9b\x37\xa0\x89\xa4\x8d\xf5\xb6\xec\xe0\xd4\xe2\xba\x6f\x57\x0b\xaa\x39\xaf\xd9\xbd\x77\x93\x7c\x37\xcd\xf8\x6e\x5c\xe6\xe5\xef\xe0\x1d\xb1\x21\xc8\x1d\x99\x8d\x1e\x23\x1c\x38\x0c\x3b\x66\x8b\x1e\x79\x81\x53\x9e\x33\x8b\xb9\x59\xaf\x67\xfa\xc8\x7e\xbd\x46\xb3\xd1\xcc\xcc\xd8\x2c\xc9\xc5\xa4\xcd\x92\x1c\x66\xf2\x4f\x79\x72\x2c\x96\x4a\xe9\xfb\x20\x16\x0b\x83\xb7\x08\x17\x90\xf3\x6c\xd1\xe2\x49\x14\xcf\xe7\xe5\xd9\xbe\xac\x6b\x45\x26\x92\xd5\xfd\x81\x27\x00\x18\xce\xff\x90\x34\x07\xa6\x65\xa9\x99\x43\x31\xd5\x1f\xa8\x56\x5e\x59\x97\xe1\xcb\xb4\x2f\x50\x42\x18\x28\x62\xd2\x8f\x5b\x2f\x4a\x78\x4e\xe6\xa8\x23\xcb\x77\xa0\x43\x85\x36\xda\x19\x0b\xfe\x37\xef\x40\x27\x11\xd3\xcb\x96\x0b\xde\xc1\xf0\x9a\x84\x11\xbc\x22\x1e\xbc\x27\x3e\x3c\x22\x43\x78\x41\x6e\xc3\x53\x72\x07\x9e\x91\xbb\xf0\x84\xdc\x83\xcf\xad\x69\xb5\x4d\x64\x66\xda\x3f\x3e\xe6\x2c\x4e\xf3\x44\x94\x10\xfb\x7d\x2c\x67\x59\x0a\x23\x26\x0a\xbf\xca\xca\x5b\x2f\x4a\x2e\x8b\x9d\xbd\xd6\x51\x50\x7e\xc0\x36\x54\x4b\xe7\x59\x9a\x44\xf4\x32\xfd\x92\xf4\x3c\xea\xe7\x3c\xe6\x62\x3b\x7a\x5f\xa6\x7d\x43\x6a\x8f\x9e\x0b\x24\x12\x29\x75\xcd\x48\x12\xce\x2b\x95\x82\x29\x41\x4b\x60\x3a\x53\xf5\x09\x21\x2f\x4c\xfd\x87\x28\xc3\x3b\xd5\xfb\xa7\xa3\xb2\xd0\x13\x98\xf5\xc5\x84\x32\x33\xec\xb3\x7e\x96\x2a\xde\x64\x8d\x2a\x50\x10\x3d\x98\xc4\x3c\x3e\x3e\x86\x99\x92\xbe\x61\xd6\x3f\x65\xd9\x72\x81\x4d\x54\x76\x89\x50\xe0\xcc\x0f\x78\xb7\x7b\xa3\x06\xcc\xfc\xdd\x1c\x7a\x91\x4c\xd1\x43\x64\x2b\xa4\x55\x67\x85\xdc\xa9\x9f\x9e\x02\xd3\x8d\x1a\x12\x8b\x85\x7e\x4b\xe7\xf1\x4a\x7f\xc1\x10\xa3\x25\xc6\x52\xef\x55\x75\x1e\x01\xab\x30\xd3\x74\x56\x43\x8c\x69\xc4\x98\x41\xac\x6a\xfb\x91\xe2\xcc\xe6\xc5\x0b\x48\x2d\xa9\x72\x4a\x58\x9f\x7f\xa2\xd4\x88\x52\x18\xe6\xc4\x83\x31\x71\xfd\xfd\xf9\xc1\x74\xdf\x71\xe6\x18\xcd\x4c\x99\x70\x6e\xa4\x2b\x75\x34\x7c\x15\x02\x42\xd2\x4e\x43\xc7\x19\x47\x64\x86\x77\x0c\x78\x32\x76\xfc\xc2\xd6\x5e\x2d\x25\x35\x21\xfc\x80\xf5\x27\x4b\x26\xb7\xef\x11\xeb\xd3\x38\xa7\xd6\x4e\xc4\x07\xd5\x57\x1c\xa0\xe6\x20\xe6\x55\x9f\x9f\x81\x5f\x6a\x3c\x69\x75\x32\x24\x95\x02\x29\xbb\x6a\xf4\x13\xbc\x53\x0d\xd3\x33\x39\x45\xe5\x20\xcb\x45\x7c\xf5\x10\xe7\x82\xc5\x58\x2a\xb7\xa5\x18\x8b\xa5\xc0\x4a\x22\x63\x75\x22\x2b\x69\x86\x47\x90\xe8\x55\xb0\x53\x26\x0f\xb0\xd7\x62\x21\x7d\xac\x99\x01\x40\x5e\xd6\x74\x4e\xd3\xc0\xfb\x0d\x82\xca\x36\x08\x4a\x3f\x1f\x10\xda\xed\x66\x88\xba\xfa\x19\x17\xe0\x99\x32\x05\xa2\xc0\xc0\xa8\xd8\x2a\x7d\x57\x0a\xb2\xaf\x41\x22\xf4\xe7\xe7\x20\xa9\x20\x78\x0d\xa2\x7c\x90\xc9\x6a\x20\xe1\x04\x99\x6e\xcf\x4c\x90\x78\xa1\x7f\x82\x98\xc7\x20\x93\xd3\x29\x6b\x32\x99\x9f\x0c\x24\xf2\xc1\xab\xda\x11\xdf\x77\xb6\x4b\xf1\x3b\xe5\xa7\x54\x71\x9d\xfb\xaf\x36\x15\x06\x9e\x65\xbb\xf3\x98\xd3\xfd\xdd\x78\xce\x68\x3c\x59\xed\xe6\xe3\x19\x9d\x2c\xe7\x74\xd2\xb1\x8e\xfc\xca\x16\x1e\x5c\xdd\xc2\x8b\x9b\xb4\xc0\x96\x69\x9a\xa4\xa7\xad\xf0\xdf\x35\x6e\x6c\x34\xf8\xf5\x1e\x5b\xaf\xf7\x10\x23\x2c\xe4\x51\x8b\xfa\x53\x15\x96\x7b\xf0\x34\x5b\xa6\xb5\x6e\x08\xb0\x3f\x93\x56\x43\x86\x3c\x1f\xaf\x37\x08\x31\xd9\x93\x1e\x10\xc6\x55\x42\xea\xac\xe5\x46\x27\xc3\x74\x73\xa7\xd3\x81\x0c\x23\x46\xb2\x30\xb1\xac\x40\x23\x29\xa0\xa9\x41\x79\xd4\xed\xea\x9f\x07\xcf\x60\x2b\x59\x57\x8b\x27\x1d\x59\xec\x39\x68\xe7\xa4\x1b\xab\x49\x2f\x00\x89\x45\x10\x93\x3d\x7f\x27\xee\x76\xdb\x57\x45\x01\x1f\x09\x43\x77\xac\xfb\x53\x3f\x6d\xdc\x70\x49\x26\x55\xea\x0e\x1a\x8f\x67\x68\x43\xab\x7f\xa0\x5c\x98\x52\xbc\x8f\xa8\x62\x6b\xeb\xb5\xf9\x45\x2e\x0b\x8c\xe5\xda\x6b\xf7\x76\x2a\x30\xb4\xe8\x76\x62\xee\x53\xac\x20\x84\x3c\x2a\xe4\x74\xfd\x4a\x18\xf2\x31\x7c\xdb\x36\x6b\xe6\xc6\x50\x27\x5d\x9e\x9d\x50\x66\x3b\x0e\x7d\xec\x8f\x03\xbe\x9b\xa4\x39\x17\xa3\x97\x4d\x77\x7f\xed\xc7\xa3\x8f\xfd\x49\x80\x98\x76\xfc\x46\xbf\xf6\x63\x8c\x38\xc6\x23\x21\x30\xc3\xc7\xfe\x04\x07\x1f\xfb\x53\xac\xfc\x07\xa4\xe4\xf3\x03\x49\xfb\x39\x9d\x53\xd9\xae\xe5\xfb\x6d\x89\x8f\xd5\x18\xde\xb2\x7a\xd2\x14\xba\x72\xbe\x9a\xd3\x3e\xa3\x67\xd9\x39\xb5\xf4\x77\xd5\xc3\x1f\x89\x57\x41\x29\x53\xbf\x18\x71\x4d\x4e\x6f\x5e\xca\x77\x8b\x98\x89\x11\x2c\x5d\xdb\x25\xbd\x19\x67\xc2\x64\x42\x52\x3b\x79\x4b\x85\x90\xee\xb2\xd5\x1d\x8c\x70\xbf\xa2\x89\xfa\xc5\x9f\x52\x81\x73\x9c\x1f\x25\x8a\x94\xb6\x8f\xc4\xce\x2f\x96\x54\xfd\xdb\x36\x09\xfb\x17\x50\x55\x83\x4d\xd7\x86\xaa\x13\x60\xdc\x28\x93\xc9\x4e\x9b\xd4\xdd\xed\x22\xe3\xb2\x5f\x76\x23\x63\x42\x63\xaf\x4c\x1c\x09\xb1\xc7\xcc\x72\xcc\xa9\xdd\x29\xca\x4c\xd6\xec\x4c\x3a\xba\x98\xca\x32\x4d\x26\x49\xc2\x5c\x3a\xba\x54\xe9\xb7\xe3\x30\xb7\xfd\xe9\xa6\x58\xfb\xb8\x4c\xa5\x8f\x0b\x5a\x92\x71\x38\x91\x5e\x12\x73\xa2\xb7\xdb\x25\x2c\xab\x85\x3a\x81\xb1\xdc\xcc\x3b\xe6\x4d\x27\x49\x77\x97\xa2\x78\x59\x86\x54\xc5\x31\xcc\xc2\x49\x44\xe6\xf0\x19\x89\x1f\x92\x14\x26\x30\x83\x77\x68\x09\x0c\xe3\x9a\x79\xec\x17\x14\xd7\x89\x42\x2e\xe1\x42\x0f\xf6\x61\xcd\x6a\xf6\x67\x8d\xf7\xe1\x7c\x7e\xf3\x21\x0f\x23\xc8\xc5\x7f\x4b\xe2\xed\x2f\xe5\x68\x2f\xcb\xd1\x56\x63\xbd\x6c\x8c\xb5\xb7\x3f\x93\xe3\x3a\x13\x62\xf0\x9c\x8c\xc3\x59\x54\x49\x05\x13\x58\x98\x11\x9e\xc3\xdc\x12\x2a\x61\x2c\x34\xc1\x77\x68\x2e\xb4\x89\x73\xe2\xc1\x8a\x2c\x8c\xd8\x72\x7e\xb0\xda\x77\x9c\x73\x8c\x26\x64\x11\x9e\x8b\x79\xfa\x8c\x26\x72\x58\xcf\x61\x01\x67\x78\x27\x56\xa6\xf1\x85\xcc\xdb\x2c\x7e\xcd\x71\xd1\x18\x64\x33\xb0\xd3\x64\xce\x29\xab\x8d\xea\xf5\x23\x77\x16\xf3\xf1\x8c\x36\x08\x95\xd7\x47\x8d\x11\x5e\xb9\xc3\x6c\x35\x59\x96\x3e\x65\x32\xae\x6d\x26\xc6\x35\xaf\x5c\x46\xa5\x41\x33\x8c\x74\x3e\xed\xa5\x4c\xa7\x8d\x62\x92\x87\x63\xd1\x69\x3d\x6e\x31\xc4\xd5\xb8\x8d\x21\xc7\xdd\xae\xf6\x90\x89\x1b\xa4\x95\x34\x49\xab\x22\x1c\x43\x36\xb8\x80\x33\xca\x4e\x69\x6d\x40\x54\xe4\xa8\x64\x52\x7a\xa1\x27\x93\xe6\x36\xbd\x7d\x14\x68\xf9\x3b\xb5\x47\x84\x55\x2e\x55\xe5\x75\x50\x99\xaf\xa5\x7e\x53\x70\xdb\xaa\x26\x5c\x25\x5e\x65\x6a\x69\xcf\xbf\x60\x69\xcf\xc3\x49\xb4\x5e\x9b\x05\x2e\x97\xe6\x52\x5b\xe6\x73\xe9\x89\x94\x63\x09\x43\xb4\x70\xcd\xd2\x6c\x1d\xbf\x92\xa5\x06\x9b\xe7\x70\x02\xce\x0f\xa8\x36\x42\x35\x90\x42\x7d\x2e\xf9\x77\xd0\x66\x47\xb2\x57\x3b\x2f\xa7\x03\x18\xf9\x1e\xe1\xf2\xe4\x46\x83\x4e\x4a\x49\x5f\xd3\x5c\xb2\x41\x73\xe9\x06\xcd\x79\xfb\x73\x49\x69\x73\xb1\x5c\x05\xad\xcd\x23\x9d\x26\x9e\xbc\x13\x23\x80\x77\x3e\xa3\x18\x84\x58\x3c\x87\x1c\x2e\xa5\xd8\x3b\x96\x52\x8f\x33\x56\x02\xaf\xf8\x6b\xe4\x5c\x25\x09\x7b\x95\x0c\x3c\x6e\xc8\xc0\x63\x29\x03\x17\x8d\xf5\x99\x36\x46\x9a\xca\xb5\x2a\x4f\x0d\xa8\x22\x7b\x48\xb3\x09\xcd\xc5\x93\xfc\x21\x1f\xcd\x13\xe4\xc9\x67\xf9\x20\xfe\x02\x3d\x5b\xf0\x95\x78\x92\x3f\x40\x08\x3e\xf2\x29\x1e\xcf\xb6\x9c\x80\x55\x4c\x74\x8b\x2b\xef\xc1\x70\xf4\x4e\xcd\xa2\x68\x4e\xc8\x79\x58\x08\x7a\x72\xb5\xa8\x1b\x0a\x75\xf1\xaa\x6e\x5c\x80\x8c\x20\x21\x62\xe2\x2d\xe7\x68\xf4\x9c\xb2\xd5\xc6\x49\x1a\x6f\x1e\xa2\x19\x23\x8d\x3a\x48\xb3\x4f\xce\x38\xc6\xb0\x47\xd7\x6b\xad\x15\x13\x42\x68\x81\x47\xdf\x05\x0f\x76\x36\x45\x19\x65\x44\xc9\xf4\xcd\x3c\x2c\x1d\xfb\xb3\x74\x27\xdf\x23\x24\xed\x76\x95\x4b\x6e\x8e\xfb\xe3\x6c\xb1\x42\x58\xf4\x52\xe7\xac\xeb\x67\x29\x49\x8a\x02\x31\x7d\x9d\x0f\x62\xce\x59\xeb\x60\x96\x5c\x53\xd0\x6c\xbe\x88\xc7\x14\xab\x4b\x52\x4a\xb2\x9f\x66\xec\x4c\xa0\xc8\x46\x1f\xfb\xb3\xe0\x5b\xfb\xe4\xaa\x2f\x60\xbe\x15\xfa\x15\xa2\xd0\xea\x4a\x8e\x58\x7f\x9e\x8d\xe3\xf9\x68\xeb\x50\x6f\xeb\xb2\x74\x51\x66\xb2\xdb\xea\x3c\x52\x9e\xef\x2d\xb5\xea\x89\x74\xa0\x85\x53\xca\x0f\x39\x67\xc9\xc9\x92\xd3\x17\x6f\x10\xed\x4b\xfc\x81\xaa\x56\x31\x26\x84\xa0\x9c\x2c\xc5\x64\x2a\xd5\x21\x26\x72\xdc\x72\x42\x48\x32\xca\x02\x94\x10\xb1\x7f\x72\x79\x31\x62\x69\x02\x88\x2b\x99\xf1\x2a\xc0\x45\xb1\x61\xb8\xfc\x0b\x7a\x24\xb6\xaf\x3f\xa5\x07\x52\xec\xc5\x88\x41\x02\x3f\x29\x4a\xea\x88\xa9\xeb\x77\x1c\x49\x1c\x81\xd1\xae\x5a\xa6\x6b\xab\x78\xfd\x85\x83\x74\x53\x38\x06\x55\x69\x2d\xb9\x86\x76\x08\x73\x3a\x9d\xad\x6b\xe6\x26\x04\x52\x32\x10\x42\x48\x66\x8d\xef\x28\x09\x12\x3d\xa6\xec\xca\xc9\xfe\x42\x14\x10\xbd\x69\x93\x6a\xb6\xca\x95\x2b\x57\x59\xeb\xf2\x2d\x67\x52\x9a\x56\x37\x4f\xc7\x35\x79\x69\xa6\x29\xad\x21\x88\x09\xe9\x98\xf5\x8f\xa5\xd6\xb7\x63\x1d\x5d\xdb\x8b\x5b\x17\xd5\x07\xd6\xed\x76\xf9\x8d\x93\x75\x75\x4f\x6a\x0b\x4f\xd9\x69\x03\x8f\x92\x96\x69\x2e\x2d\x04\xf6\x95\x1e\xf5\x32\x21\x5b\xf2\x97\x19\xe8\x89\x66\x8d\xf2\x40\x38\xc1\xdd\x6e\xab\x93\x84\x6d\x22\x57\xea\xe2\x95\x94\x02\x5c\x0c\x5a\x51\x48\x0b\x1c\x06\x56\x5d\xb7\x51\x83\x48\x38\x24\x45\xbb\xb7\xc6\xbf\xa6\x0b\xa2\xe4\x0d\x50\xc6\x48\x13\x99\xd4\x96\x5b\xe9\xbc\xb1\x11\x20\xea\x10\xc1\x8c\x3e\xf6\x4f\xab\xdd\xc0\x30\x90\x4a\xf1\x36\xdb\x42\xdb\x90\x5c\xc1\x24\x2d\xed\x47\x40\xc1\xd6\xbe\x87\xae\xd2\xea\x61\x4b\xbd\xda\x72\xcb\xab\xe5\xc6\x2a\x0e\x2a\x98\x27\x23\x31\x24\x24\x2f\x47\x4b\xec\xa3\x1d\x9a\x4e\x74\x73\x82\x4f\xde\x92\xd9\x9b\xdb\x2f\x4c\x5d\xd9\xeb\x72\x1c\x21\x83\x78\x4b\xbf\xf3\xad\xfd\x2e\xb7\x0c\x98\xcb\x5d\xa0\x3e\xe2\x4b\x73\xa8\xb4\x6d\x58\xe6\x64\xb9\x0d\xb4\x18\x53\x42\xe6\x6a\x4c\xe4\x60\x74\xbb\x73\xc9\x94\xe2\x00\x65\x64\x2e\x2f\xa0\x89\xdd\x65\x69\xa8\xa8\xdc\x3c\xaa\x51\xe1\x18\xe3\x4d\x61\xaa\x66\xe0\x83\x98\x94\x15\x38\xe4\x44\x8e\x6b\xc7\xd9\x36\x14\x4b\x63\xe4\x52\xd8\xf7\xb3\x14\xc6\xda\xfc\xb7\xd4\x66\xaa\x38\x1a\xa9\x34\xd1\xb7\x90\xd8\xbd\xce\xb3\x64\xb2\xeb\xed\xcc\xd5\xb4\x26\x84\x90\xf1\x7a\xad\xee\xe7\xcc\x6b\x92\x91\x90\xb8\xc7\x18\x04\x4c\x92\x16\x26\xf4\x44\x32\x01\x99\x97\xfb\xe6\x93\x78\x15\xd3\xdf\x3a\x93\xa6\xbc\x18\xe9\xd8\x1a\x74\x4d\x81\x62\xa0\x99\x19\x67\xae\x25\xd6\x26\x0d\x4a\x56\xac\xd7\xea\xe6\x8e\x50\xd9\x12\xcb\xf1\xd6\x8b\xf5\xea\xad\x21\xb5\xb7\x86\x54\x6c\x0d\xe9\x8d\xb6\x86\xf4\x0b\xb7\x86\x36\x08\x5b\x36\xd6\xba\x13\xa3\xbc\xc8\x79\x1d\xcf\xcc\xf6\x24\x05\x8b\x79\x4f\x48\xd6\xe0\x99\xd6\x3d\x9d\xf2\x75\x5a\xb3\x13\xe6\x94\x57\xeb\x06\xb8\x50\x6d\xf5\x74\x64\xc0\x30\x86\xd4\xb0\xcf\xac\x62\x9f\x59\x21\x61\x9b\x53\xe6\x4e\x27\x10\x0c\x17\x38\xbd\xe0\x6d\x92\x8f\xd5\xf1\x8e\x28\xd3\x69\x93\x99\xe9\x35\xb2\x97\x56\x35\xb4\x18\xa9\x40\xd2\x0b\xfe\x30\x4b\x39\x4d\x2b\x3b\x79\xa7\x13\xf0\xa2\x40\x66\xc1\xaa\xe6\x04\x99\xdf\x40\x22\xb3\xe1\xd1\xa2\x40\xe6\x52\x64\xa7\x13\x50\x21\x87\xe2\x02\x14\xa3\x69\x51\xa0\x25\x00\x43\xb8\xaa\x54\x07\x10\xad\x14\xe1\x8d\xae\xc8\x2f\x4a\x8f\x7c\x91\x4d\x68\xc3\x59\x4d\x56\xb3\xec\xe8\x42\xe9\x75\xd8\x1e\x21\xd4\x1c\x42\xf1\x6e\x97\xeb\x96\x1e\xce\x92\xf9\x44\x8d\x4c\x81\x95\xab\x2c\x2d\xf4\x01\xd0\x95\x6a\x64\x32\x55\x0b\x05\x5a\x16\xc9\xa5\x9d\xf1\x68\x43\xab\x94\xc0\xf5\x25\xbf\xa4\x79\xd7\x53\x5d\x13\x55\x9e\x7c\xfa\x8c\xc2\xa0\xbd\x9b\x2a\x5e\x66\xb3\xf3\xc2\x1e\x43\xc9\x53\x4b\x7f\x85\x76\xc1\xa2\x9d\x3a\x12\x8b\x81\x66\x24\x51\x28\xca\x13\x95\x3d\x42\x18\xae\xdf\x92\x44\x29\x61\x24\x2b\xbd\xe5\x62\x79\x8b\x30\x16\x98\xa7\x61\x6c\xbb\xc3\xa2\x94\xa4\xc6\x5f\x50\x69\xc4\x63\x8a\x62\x30\x21\x7f\x0a\xdd\x8e\xe0\xab\xdb\xa4\xe5\x2d\x8c\x82\x6d\x63\x14\x8d\x7e\x65\x56\xbf\x62\x92\x55\xfd\x8a\x85\xb4\x84\x2f\xa5\x2a\x1c\xe3\xd2\xa9\xb1\xba\x68\xd9\x74\xc1\xd5\xf7\x2e\x93\xe6\xb5\xd7\x64\x8a\x92\x70\x69\xf7\x5a\x3c\x92\x5c\x77\x71\x29\xb6\xcb\x6e\x37\x51\xc6\xbb\x1c\x17\x1a\x07\xa1\x67\xe3\x4a\xd1\x56\x26\x95\x6d\x66\xe0\xed\x46\x8b\x91\x35\xef\xd7\x30\x86\x36\x21\x10\x5f\x7e\x67\x86\x47\x99\x79\xc8\xb6\x44\xbf\x45\x53\x50\x2d\xdd\x49\x1c\x0e\x57\xc0\xe3\xa2\x9b\x5c\x72\x91\xfa\x3a\xe0\xba\x44\x51\x99\x91\xfe\x05\xdd\x7f\x50\xa1\xab\xb1\xf8\xc3\x23\xd0\x02\xf2\xca\x41\xd0\x85\x0a\x65\x3a\xfb\x43\x63\xb0\xe1\x7c\xfb\x25\x5b\x6c\x6b\x17\x04\x4e\x02\xfd\x6d\xd8\x4b\x3b\x1f\xd0\x96\xd8\x3e\xd2\x37\x4e\x1d\x3c\x12\x26\xb9\x78\x42\x98\x34\xde\xd5\x7d\x87\x5f\xb1\xec\x2c\xc9\x69\x85\x7b\x06\xb1\x91\x8a\xf4\x55\x85\x58\x2c\xbe\xcd\x6b\x0b\x1e\x21\xae\x9b\x74\xbb\x19\xc2\x45\xb1\xc3\x5a\x4f\x3f\x59\x75\xfa\x29\xdb\xcf\xd2\x1d\xa1\x27\xd1\x6e\x17\x21\x2e\x5d\xa6\x2b\x61\xef\xb8\xaf\x0e\x70\xcd\x52\x05\xde\x3f\xee\x97\xe7\xbb\xb5\xb7\x62\xa3\x92\xcf\x4b\xac\xce\x83\x09\x2f\x70\x21\x33\xb6\x1b\x19\x64\x7b\x58\xcd\x32\x9a\xaa\x9d\xdd\x42\x52\x11\xeb\xd3\x8b\x45\x96\xca\x3d\x14\x58\x81\x6e\xe3\x9b\xc0\xf3\xdd\x12\xa2\xef\xfe\x39\x30\x11\xa2\x3d\x32\xc4\x07\xc4\x1f\xd5\xb0\x0d\x86\x55\x5b\x43\xd9\x16\x1e\x0c\xaf\x6b\x4e\xd6\x78\xf5\xf4\x26\x5d\xa1\x3d\xda\x43\x88\x3b\x3e\xee\x51\x77\xa3\x23\xd9\x39\x65\xf9\x2c\xcb\x34\x68\xbf\xff\xb5\xe7\xdf\xfd\xdb\x4d\xfa\xe3\xba\x36\x64\x87\x63\xc7\xff\xd3\x60\x9b\xb1\xf2\x47\x0d\xec\x03\x44\x5d\x32\xc4\x8d\x86\x87\x9b\x23\xb6\xa5\x6d\x29\x8b\x70\x4a\x86\x3d\x33\x82\x8c\x12\x64\x23\x54\x09\xef\x2a\xb2\x66\x9e\xa4\xc8\x1f\x20\xae\x4f\x5f\xe2\x0b\xe4\x4b\x65\xab\x87\xd8\x80\x70\x8a\x6d\xab\x82\x25\x62\xf6\xaa\x39\x05\xdf\xeb\xb9\x2e\xd5\xe1\x3c\x05\x3c\x94\xba\x14\x0f\x18\xae\x2c\x01\xf1\xd9\x62\x9e\xf0\xe5\xa4\x35\xa5\xbb\xc4\xaa\xc7\x29\x2e\x20\xe9\x2f\x28\x4b\xb2\x09\xb1\x6d\x0e\x76\x31\x51\xa6\x40\x3e\xf4\x1b\x34\xf9\xe7\x74\xcb\x77\x6b\x1d\x73\x7d\xaf\xa7\xe2\xf5\xd9\x9d\xa3\x4e\xfa\x9f\xd8\x39\x84\x04\x59\x50\xd7\xc7\x07\xde\xa8\x39\x7f\x6d\xb3\x17\x0c\x37\x47\xa3\x5e\xce\x91\xe5\x2c\xe2\xfc\x8b\xc6\x42\x1d\x2e\x49\xc7\xa8\x8d\x73\xa4\xe1\x5d\x6f\x73\x17\xdc\xe0\x48\x62\x99\xd1\x6a\x71\x51\xb5\xa4\x0a\x6b\xa4\x52\xda\xb8\x16\xb6\xbf\x87\x9a\x4e\x4a\xd8\xf2\x4f\x92\x57\x68\xf6\xe4\x71\x4b\xa5\x54\x54\xd7\x65\xa8\x3c\x09\x23\x8f\x85\xf4\x4e\x2b\x1f\xa5\x76\x97\x93\x72\xc3\x68\x0b\x53\xd0\xb2\x55\xe3\xcb\x9f\xcd\x6e\x5b\xe0\x02\xda\x81\x5a\x0e\xae\x1b\x02\x02\xb0\x1d\x6a\xfb\xcf\xfc\x32\x42\x5c\x39\x06\xc9\x9b\x57\xf2\x54\x51\xfa\x9a\x7f\x8f\x30\x88\x1e\x53\x5c\xf5\x87\x96\xd1\x6b\xa4\x71\x41\xaa\x6a\x1b\x17\x51\xfe\x9c\x93\x47\x73\xee\xd8\xed\xaa\xb3\x46\x2e\xcf\x1a\xd9\x7a\x9d\x52\x79\x04\xd9\x38\xd7\xde\x3c\x2d\x34\xce\x3e\x09\x25\xa1\xc0\x36\x82\x8c\x6e\x73\x11\x6b\xf1\x48\x53\xd1\x71\xd2\x6d\xae\x61\x89\xbe\x46\x95\xc8\x3b\x82\xca\x1f\xec\x7d\xb7\xcb\x36\xae\x0b\x2a\xf4\xc2\x90\x46\x11\x24\xa2\x1b\x4e\x8a\x6b\x1a\x99\x89\x3d\x51\x35\x7f\x4d\x7c\x84\x78\xcc\x93\xf3\xf6\xeb\xc2\xd6\x05\x67\xcb\x11\x78\xb3\xe0\xcf\x5f\x7a\x15\x74\x88\xeb\x26\xe6\xc2\x32\x9e\x58\xda\xae\xe8\xac\xd4\xc1\x6a\x24\x96\xe0\xa6\xaf\x99\x12\x88\xfb\x39\xe5\x2a\x82\x65\x75\xc1\x4d\x9e\xd8\xf7\x93\x5c\x9d\xdc\x53\x6c\x34\x3b\xed\xb6\x6a\x47\x7b\xb4\xef\xc2\x19\x37\x56\x05\x33\x03\x2a\x14\xe2\x2a\x32\x63\xfd\x33\x97\x21\x86\xb2\x08\x32\xa1\xe7\xa5\xb8\x30\x8d\xd3\x92\x3a\x73\x31\xef\x54\x97\xcf\x81\x86\x79\x64\xb9\x1b\x26\x37\xb9\x5b\x99\xc0\x2c\xce\x5b\x58\x53\xe7\x56\xc7\xa1\xc6\xf0\x50\xc0\x29\xdd\x6a\xc8\x09\x65\xd1\xa8\x80\x9c\x36\x23\xf0\x6d\x96\xd2\x9e\x63\x9b\x76\x93\x52\x33\x90\xe5\x4a\x0b\x99\xc1\xa0\x74\x26\x94\xb0\x78\x54\x80\xbc\x9e\xd1\xea\x78\x60\xea\xe0\xce\x2d\x79\xa2\x1c\x7a\x51\xbd\xba\x40\xf6\x03\x5d\xe5\x9b\x77\x05\x75\xac\x17\x89\x49\x03\x0c\x97\x60\xf4\x55\x56\xae\x75\x6b\xbf\x5a\xe0\xb4\x50\x5a\xf5\x1f\x81\xaa\xfa\x66\x83\xa4\x29\x67\xc9\x1f\x81\x79\xf9\x81\xae\x82\x0a\x5d\xad\xf9\x9b\x51\xb4\x9b\x92\xae\x08\x1b\xed\x78\xd7\x34\xe3\x54\x93\x25\xd0\x95\x1e\x0c\x57\x4e\x8a\x50\xe0\xca\x79\xd1\xec\x67\xcf\xd7\x30\xf6\xbc\x42\xb9\x3d\xd8\x74\x71\x4d\x3f\xcd\xb0\x81\xd5\x4b\x65\xf9\x52\x9c\x35\xb6\xaf\x0e\xe6\x82\x2b\x28\xe3\xba\x75\xf5\x78\x27\xb7\x96\x47\x9b\x7d\x4c\x70\x8c\x7c\x83\x63\xe4\x9b\x1c\x43\xf0\x8b\x78\x32\x41\x35\x6e\x41\x8d\x70\x54\x8b\x76\xd4\xc2\x1c\x64\xf4\x23\x0d\x40\x70\xec\x1a\x6b\xb0\x3e\x72\xf9\x19\x52\xa1\xbe\x96\x69\x0b\x8a\x6d\x4b\x3c\x97\x4b\x7c\xd9\x9f\xc5\x39\xc4\x93\xc9\x95\xeb\x58\x9b\xc9\x23\xed\xf1\x59\xae\xd3\xa5\x36\x2c\xea\x65\xb7\xec\xcb\xbf\x86\xe2\x97\x32\xd4\x9e\xa2\xa0\xa5\xed\xcb\xb2\xb4\x5d\x59\x96\x72\xb0\xcc\x7d\x4e\xc5\x42\x4b\x94\x61\x4c\xe6\xfd\xb3\x78\x21\x5d\xa4\xe4\x3c\xc2\x4c\x9b\xab\x3a\x89\x10\xd9\xc6\x09\xef\x58\xbe\xe6\x93\x8a\x63\xc4\x42\x84\x21\x61\x04\x29\x99\xb5\x05\x3e\x24\x89\xd8\x0a\x63\xc2\xfb\xa7\x82\xeb\x4a\x33\xfd\x9e\xba\x7a\x93\xee\x11\x32\x2b\xf7\xc0\x1d\xae\xf9\x72\x4c\x98\x5a\x3d\x49\x35\xbe\x34\x44\xb1\xeb\xe3\xaf\xcc\xf4\x95\xd7\xfa\x2b\x69\x23\x8c\x82\xa9\x89\xbb\x07\x49\x7f\x92\x9d\xc5\x49\x5d\xb6\x91\x2d\x37\x4c\x1d\xd5\x8d\xfd\xf2\x12\xb2\x0c\x35\x2c\xfa\x55\x49\x2d\x90\x41\x2e\xe8\x67\x69\x47\xcb\xca\x0f\x96\xfb\x58\xde\x3a\x47\x99\x8a\x48\x97\x47\x58\x85\x29\x30\x5d\xd1\x1d\x49\x2b\x46\x95\x08\xd9\x96\xc5\xe9\x69\xab\x04\xdc\x16\x1b\x71\x6a\x42\x20\xca\x08\x88\x06\x4d\x01\x46\x5f\xf8\xbd\x69\x2c\x44\x5a\x06\x3c\x1c\x67\x8b\x15\xd9\xdc\xf1\x27\x08\xeb\x61\x43\x0c\x2b\x24\x11\xc5\xa6\x19\x94\x4a\x99\xbb\x9c\xe2\x45\xcd\x2c\x23\xea\x9a\x82\xea\x20\x4c\x59\x47\x14\x3c\xc8\x08\x53\x00\x21\x26\xa1\x07\x7e\x04\x39\xd9\xf3\x4d\xe0\x39\x18\x93\xfe\xdd\x8a\x78\xa6\xa5\xa5\x25\x41\xc6\x24\x0c\x53\x12\x87\x7e\x74\x10\x87\x5e\x24\xbd\xf7\xa6\xae\x17\xc1\x44\xbc\x74\xa7\xd1\x0e\x25\x68\xe2\xce\xf0\xc0\xd2\x78\x98\xbb\x74\x86\xbd\x39\x86\x5c\xba\x3d\xc9\x2f\xd3\x79\x96\x31\x19\x97\x71\xe6\xc8\x1a\x2e\xed\x21\xe6\x2e\x31\xee\x8d\x81\x13\xda\x43\xbe\xbb\x54\x35\x66\xaa\x06\xcb\x96\xe9\x04\xcd\x30\x70\xfb\x99\x6b\xb3\xfe\xa2\x3a\x65\x93\xbd\xc3\x62\xe0\x6a\xf1\x0d\xaa\xb9\x9d\x39\xb4\xc7\x2b\x9e\x9f\xa1\xe9\x68\x51\x85\x17\x0b\x16\x25\xad\xeb\xcd\x92\x99\xf1\x04\xd6\x46\xcc\x5b\x27\x5a\xe8\x74\x30\x45\x18\x07\x89\x20\x13\xd6\xa4\xb6\xab\xea\xc6\x24\x74\x64\x6c\x6b\x87\x86\x7e\x14\x29\x30\x71\x45\x73\x1a\xd8\x6b\x31\x08\xad\x10\x1b\xf5\x73\xb2\xe7\x09\x20\xa2\xe6\x49\x9c\x4e\x3e\x25\x13\x3e\x6b\xa1\x3c\x5e\xc8\xbb\x11\x74\xd1\xf2\x8d\xca\x66\xb7\xb6\xb8\xd1\x87\x9c\xec\xed\x51\x85\xb9\xe0\xa0\xfd\x45\x3c\x99\x24\xe9\xe9\xcd\x2a\x2f\xc9\xbc\xd2\x9a\x3d\x28\x5d\x4e\x7d\x79\x50\x2d\x81\x2e\x2d\xa0\x4f\xd3\xf4\xa6\x91\x43\x97\x5f\x02\xf7\xe5\x92\xdf\x14\xee\xb5\xf8\xce\x05\xdc\x78\x9e\x9c\xde\x90\x7e\xc6\xd7\x01\x1c\x0b\x80\x5b\x58\xc8\xa2\x62\x21\x09\xc2\x86\x89\xc4\x58\xaf\x9b\x1c\xd7\x46\x0e\x2d\x71\xad\xc7\x68\x8e\x15\xa6\x68\x2c\x74\x0f\x64\xdd\x4b\x38\x43\x1b\xb6\x76\x65\x3f\xd3\x47\x68\x12\xa1\x52\x70\x2d\x27\x9d\xd7\xe0\x9b\x8b\x32\xbc\x86\xc5\xc6\x5b\x55\x96\x6f\xeb\x23\x45\x0c\xc9\xf3\xd5\x02\x89\xee\xd6\x3a\xe4\x63\x15\x44\xe0\x5c\x5e\xb2\x81\x55\xdb\x90\xb7\x91\x78\x01\x6d\x04\xea\xd0\x02\x4e\x14\xbf\xac\xb8\xe3\xb1\x2d\xdd\x23\xee\x12\x69\x81\x1a\x6d\x1a\x4a\x10\x73\x29\x1e\xf0\x22\x58\x21\x6e\x8d\xe4\xa7\xea\x96\x89\x3a\xa6\x93\x0b\x36\x23\x32\x5a\x7d\x2c\xe5\x3a\xe9\x64\x5e\x26\x14\xd9\xcd\x0e\x92\x11\x4a\x08\x43\x99\x76\xbc\x46\x39\xc4\x18\x07\xf2\x5d\x02\x99\x7a\x17\x43\x8e\x5b\xaf\xf6\xc4\x92\x25\x61\xeb\xee\xe2\x63\x8d\x42\x29\x23\x94\x64\x56\x86\x86\x34\x2e\xe0\x58\xdd\x44\xac\x5f\xe0\xa8\x3d\x2e\x89\xeb\xcb\x9d\x5a\xa8\x6b\x07\x4a\xdf\xb0\xdc\x5c\xad\x10\x8e\xf2\x36\xfe\xc6\x5b\xbc\xef\x38\xcb\x83\x6c\x1f\xc7\xe1\x32\x22\x02\xcc\x32\x02\x1a\x2e\x1d\x3f\xc2\x90\x8b\x77\x09\xe2\xe2\x1d\x57\xef\x36\x0e\x37\x36\x3d\x58\x4f\x92\x9c\x8e\xb9\xbc\x4d\x04\x3e\x64\xd8\xf5\x4b\xaf\x8b\x90\x45\x28\x16\xff\xf1\xda\x88\x5c\xd4\x55\x36\xb3\x86\xa8\xf9\x51\x2e\x25\xaa\xff\x62\xac\xcc\x42\x8b\x6c\x1e\x73\xf1\xda\x7e\xc2\xb8\x3f\x9e\xc7\x67\x0b\x44\xf5\x5f\xfb\xb2\xe5\x9b\xcd\xab\x6f\x27\x10\x93\x13\xc8\xc9\x79\x3f\x86\x25\xd9\xf3\xad\x50\xd8\x56\xb4\xb3\x6a\x96\xb2\xf2\x9e\x47\x19\x70\x76\x38\x7a\x1c\x7c\x82\x94\x24\xea\x46\xf9\xac\x6a\x6f\x56\xed\x81\x28\x95\x0e\x31\x82\x90\x62\x58\x5e\xe9\x61\x60\xdf\x48\x53\x99\x51\x18\x71\xd8\xe6\xe0\xdb\x19\xac\xe4\x05\x74\x7a\x9f\xb0\x91\x1f\xc8\x5b\x4d\x45\x81\x28\x0e\xa8\x20\x4c\x2c\x73\x0d\x98\xad\xb8\x9f\xa4\xe7\xb4\x35\xe5\x00\x4a\xd6\x6b\x49\xd7\x31\x64\x70\xfc\x57\x20\xe9\x8d\xb8\x40\xd2\x1f\xb1\x12\x49\x8e\x03\x2e\x51\xa4\xb8\x80\xd9\x17\xed\xf6\x19\x19\x9b\x2b\xb9\xa7\x18\xe6\x82\x3f\x67\xd5\x7e\x3d\xfb\xb2\xcd\xbf\x92\x9f\xe7\x8d\x8d\x7f\x76\xed\xc6\x5f\xd5\x15\x74\x44\x05\x04\x51\x4d\xd2\xdf\x4d\x77\x48\xb1\x71\xcf\xf5\x5e\x38\xb3\x29\xfa\xa6\x3b\xbf\xae\x9e\x17\xb2\x79\x31\x33\x2f\x09\x43\x77\x31\x1c\xb6\xc6\x31\x90\xd7\x3e\x05\xbf\x8b\x09\x0d\xab\x1c\x55\x82\xff\x95\x6b\x99\x27\xe3\x0f\x6f\x38\x5d\x60\x49\xb4\xc6\xc8\xe7\x7b\x01\xc7\x3b\x3a\xc7\x41\x75\xad\xf0\x65\x5f\x46\x6f\xe1\x6f\x16\x74\x9c\x4c\x13\xca\x70\x19\xfb\xa1\x03\x53\xe9\x97\xa3\x62\x29\xc9\x04\x08\x9d\xbc\x13\x28\x6d\xb8\xdc\x71\xb7\x64\x3a\xab\x59\x03\xf7\x84\x7e\xc4\xe8\x38\xc9\x93\x2c\x5d\xaf\x55\x80\xfc\xa4\x42\xa1\xfc\xf6\x8a\xd1\x69\x72\x81\x91\x74\x9d\x5b\xaf\x91\x55\x8d\x24\xa5\xab\xa2\xc1\xd9\x94\x66\xb0\xc4\x32\x8b\x42\xa7\x13\xc8\x3f\x54\xff\x3d\xd5\x7f\x17\xfa\x2f\xeb\x04\x5f\x84\x8e\x24\x1e\x81\xcd\xb5\xbd\xdd\xc4\xd6\x45\x1d\x2a\xbd\xff\xd5\xf0\xd9\xc9\x1e\x3a\x53\x8d\xcf\x57\x5f\x88\xcf\x93\xe4\x82\x0a\x7c\x5a\x5a\x1b\xf6\x50\xe7\x2b\xbb\x3d\xc3\x39\x1a\x63\x26\xe4\x7d\x4b\x2d\xfe\x60\x5f\xc2\x50\xab\xb8\xba\x49\x2b\x08\x29\xdf\xb0\xb5\x33\xc2\xab\xc3\xeb\x1a\xd1\xe5\x18\x31\x41\x9b\x2c\x64\x16\x65\x1a\x6d\xd7\xf7\x02\xc1\x2c\x14\xd8\x27\x12\x19\x9b\xc4\xab\xd3\x92\x43\xc4\x11\xd6\x17\x63\x68\x3f\x4d\xc6\xb4\x76\xa6\xa2\xc9\x53\x3a\xf9\xfa\x9e\xd2\x6a\x12\xe9\xc8\x6f\x42\x31\x67\x55\xee\xb6\x25\xc9\xc2\x38\x82\x39\xc9\xac\x3b\x4f\xf3\x83\xa5\xbc\x00\xb2\x84\x25\x99\xc3\x9c\x24\x90\xc8\xec\x0e\x39\xe4\x82\xca\x50\x52\x5f\x4b\x4f\xd3\x31\xa3\x62\xdd\x62\xb4\x84\x39\x30\x8c\xef\x7b\xa5\x74\xac\xf4\xb3\xe5\x20\xc1\xbd\x04\xb4\x64\x3b\xa6\xc9\x1c\xcd\xd5\xab\x6b\x61\x05\x32\xf7\xa0\x01\x27\xab\x2e\x7b\x09\x1e\x94\xd0\x54\x0b\x73\xf5\xee\x5a\x70\x90\x08\xe4\x44\xa7\x5b\xf0\x13\x83\xb0\x89\x22\x47\x59\x89\x46\x55\xd1\xc6\xa4\xaa\x57\x43\x46\x56\x04\x5a\x00\xb5\x03\xeb\x18\x4b\xe0\x1b\x74\x0c\xe7\xfd\x71\x65\x32\xdc\x26\x9d\x0a\x49\x42\x06\x70\x81\x0f\xb5\x8b\xbd\x0f\x2b\xe3\x65\x5d\x9e\xe4\x35\x79\xb3\x94\x40\xf4\x0e\xc9\xc1\x08\x23\x84\x37\x37\x13\x76\xa5\xdd\x42\xef\x4b\x4c\xec\x4b\xbc\x66\xb9\xd8\x2a\x59\x3f\xac\xb4\x07\x2a\x3b\xc0\x15\x13\x7f\xde\x7e\x26\x23\xe3\x32\xda\xa2\x1e\xae\x48\x35\x93\x91\x19\x25\x63\x4f\x4a\x52\x8d\x0f\x32\x49\xe8\xa9\x10\x54\x20\x91\xa1\x93\x32\xc8\x24\xb9\x32\x0c\x32\xd4\x22\xd7\xb3\x92\x89\xe7\x44\x3c\xcb\xb9\x8b\xc5\xd4\x54\x83\xf6\xba\x2e\x84\xab\xe9\x9c\x67\xa7\x88\x0f\x28\x6e\x13\xc6\x77\xcb\x12\x6c\xd0\x26\x95\xbf\xaa\x87\x4e\x3c\xf0\x5a\x60\x54\x8e\x12\xae\xd8\xc2\xaa\xc3\x57\x97\x82\xef\x32\x6c\x79\x13\xb1\x4d\xd7\x90\x7a\x15\x5d\xa3\x42\xe0\xbd\xb5\xb5\x26\xf9\x93\x24\x4d\xe4\x35\x91\x91\x83\x3a\x3e\xed\x38\x42\x8e\x3a\xf0\x84\x7c\x55\x55\x79\x64\x1f\x8d\x7b\x44\xb0\xa5\xf7\x01\x25\x44\x8d\xc6\x63\xe5\xe7\x41\x2f\xac\x38\x44\x7c\x8b\xc7\x4a\x05\xf3\x85\x2d\x2c\x35\x40\xcd\xb3\xd3\x40\xb5\xd3\xed\x9a\x17\xbe\xb7\x5e\x0f\xeb\xaf\x86\xeb\xb5\xb1\xf7\x88\xf1\xa6\x96\x52\xc2\x37\xa7\x83\xe3\x01\x2d\xac\x89\x78\xda\x2a\xe8\x95\x53\x40\x91\x5b\xc3\xf7\x99\xb5\x42\x5f\xc3\xab\x92\x7e\x43\x1f\x7c\x4f\x66\x86\x31\x3b\x01\x08\x06\x0b\x09\x79\x81\x7c\x0f\x43\x46\x1e\x89\xbf\x15\x45\xc5\x56\xb8\x60\xf2\x42\xdd\xff\x7d\x24\xfe\x70\x84\x43\x2f\x92\xfc\x24\x21\x4f\x51\x22\x3e\x3c\xd5\xbc\xa2\x64\x06\x27\x71\x7e\x43\x21\x89\x11\x87\x42\x2c\xa4\x24\x26\x36\x84\x2f\x91\x35\x55\x7c\x7e\x51\x95\xa3\x72\xef\xd9\xdc\xd2\xe4\x1d\x65\x24\x14\xb3\x5c\xec\x5f\x73\x92\x87\x79\xb5\x83\xed\xa3\x98\xcc\x0f\x96\xb8\xdb\x45\x93\x72\xcf\x98\xa8\x8d\x47\x86\x4a\x82\x09\x49\x54\xe6\x9a\x04\xcd\x31\x9c\x11\x6b\xcb\x73\x28\x9c\x93\x50\x45\x6b\x44\xec\x2b\x1f\x77\xbb\x0b\x77\x72\x70\x26\x6d\xbb\x13\xdb\x42\x37\x11\x8a\xe3\xc2\x7e\xb3\xc0\x8e\x0f\x4b\x93\x19\x63\x7f\x72\xb0\x90\x37\x7d\xc5\xc3\x94\xf8\x30\x26\x19\x9a\xe0\xfd\xa9\xbc\x70\x3d\x55\xa7\xf7\x68\x46\xc6\xbd\x29\x3e\x58\xaa\xd8\x9e\xb3\xfb\x73\xac\xe4\x8e\x73\x65\xd7\x9d\xe1\xa2\xa8\x0e\x09\xea\x10\x99\x5b\xc1\xbc\x4f\xfc\x7d\xd7\xfd\x52\xa0\xe7\xa4\x29\x0f\x4c\x60\x51\x59\x64\x16\xee\x04\xce\xb0\x32\x37\x66\xd5\xfd\x92\xd1\xb9\x65\x54\x3c\xdf\x26\x21\x70\xa1\xfe\x97\x47\x20\xa9\xf4\x57\x97\x4b\x8b\x8d\x3a\x7d\x8f\x76\x82\x0e\x74\x30\xb4\xf8\xfa\xa9\xa2\x1b\x62\x50\x8a\x05\xa9\x13\xe2\x0f\xbc\xca\xa0\xaf\x85\xe5\x6e\x17\xf1\x52\xb6\x88\x6d\xa7\x14\xd6\xe3\x03\x4d\x45\xa5\xa1\xb7\x55\x7b\xd2\x32\xd5\x20\x43\xd6\x84\x4a\xab\x42\x75\x99\xab\xc7\x0e\x98\xdb\xbf\x2b\x5a\xeb\x09\x6e\xce\x0f\x48\x3c\x92\x37\x6d\x3b\x9d\x62\x53\xf6\xa9\x94\x6d\xf4\x5c\x8a\x48\x97\x92\xef\xb7\x9d\xcf\xe8\x56\xd5\xbe\xa0\x5a\x2d\x40\xec\x0a\x57\x14\x96\x9b\x86\x2e\x5b\x60\xb9\x5a\xae\xd8\xb0\x9f\x21\x2c\x97\xb0\xbc\x29\x65\x0b\x00\x4f\x36\xb6\x05\xd7\xe6\xfa\x1c\x07\x75\x46\x5a\x56\xfc\x5c\xf2\x25\x1f\x38\x79\x83\xea\x3a\xab\x31\x10\x91\x27\x88\x01\xc5\x2e\xe2\xe4\x89\xf2\xc7\xb4\xf6\xae\xb4\x2c\xf7\x04\xa5\xa2\x14\xc7\x03\x26\xf6\x2d\x66\x3b\x06\xd8\x77\x1a\x5a\xe0\xc1\x26\xb8\xdd\x27\x88\x3b\xac\x97\x82\x3f\x90\x97\x2c\x65\x08\x84\xba\xb4\xcc\x2b\x97\xbf\x1b\x9e\x92\x08\xdd\x5b\xda\xe5\x64\x96\xa8\xad\x12\xc6\x05\xe2\xf0\x19\xe1\x12\xbc\x34\x4c\x29\x41\xa3\x1c\xba\xef\xaa\xe2\xb5\xa2\xfd\xbb\xd8\x8e\x85\x54\x9d\x05\x03\x17\xff\x31\x79\x2a\x6c\x3b\x40\x28\xf3\x9a\x07\x35\x9a\x2f\x0d\x5b\x3b\x2a\xb3\x52\x65\xcb\x8a\x5d\x1f\xef\x3b\x4e\x22\x9d\x10\xc2\xc4\xf5\xa3\x8a\x01\x7c\x5c\xc6\x29\x4f\xe6\x14\x23\x0a\xc9\xa0\x0a\xd8\x90\xd5\x9c\x2c\xd4\x11\x97\xd2\x78\x94\x5f\x9a\x19\xcf\x70\xc3\x36\x25\xe6\x29\xaa\x2e\x93\x28\x71\xef\xf1\x05\xaf\x8d\x79\x5a\x5d\x14\x34\x77\xca\x2b\xcf\x94\xe4\xc0\x1b\x85\x2f\xe2\x17\xf0\x22\x7e\x11\x05\xa1\x10\x95\x15\xda\x81\xd4\xa9\x93\x03\xa3\xb7\x88\xd7\xe2\xa5\xa5\x61\x47\x05\x64\x1b\x7b\x0f\xbf\xfa\x88\xae\x14\xf3\x76\x6a\x07\xf0\x4c\x5f\x7b\xe0\xcd\x6b\x0f\x8a\xfd\x20\x26\x03\x66\x60\xa3\x09\x4a\x0b\xcd\x7a\x4d\x4d\x72\x98\x4a\xa0\x96\x39\x75\xd2\x7e\x6c\x42\xb6\x63\x90\x07\x28\xd9\x97\xd8\x50\xb8\x65\x07\x49\xe4\x4e\x59\x89\xbd\x59\x39\x8b\x79\x0b\x65\x32\xbb\xe0\x16\xea\x7d\x60\xcb\xc7\xda\x10\xc8\x45\x05\x3b\x86\x56\xe9\x3b\x00\x9c\xf8\x42\xe8\x80\x84\x84\xfd\xbb\x11\x64\x4d\xc9\x3f\x36\x41\x3b\x0e\xaa\xfb\x20\xd9\x26\xa5\x24\x40\xc1\x03\x86\xa3\x7a\xc0\x36\x73\xa8\xae\x92\x5e\xd7\x42\x97\xc8\xf3\x72\xb6\x8f\x13\x21\x50\x23\x19\xb2\xbb\xc7\x5d\x94\xba\x0c\xf7\x28\x1e\x20\xe6\xf8\xd5\x86\x65\x68\x30\xde\xa0\x87\xab\xf5\x0b\x47\x6a\xc7\x5c\xfc\xf5\x23\x19\x50\x2e\x08\x29\xf0\xa8\x80\xf8\x4b\x66\x8c\x11\x94\x55\x93\x66\x69\x10\x79\xc3\x96\x16\x5f\xbd\x46\x62\x92\xb5\xac\x91\xb8\xb6\x46\xe2\x03\x7f\x14\x52\x99\xb7\x35\x0a\xe2\xfb\x84\x8d\xc2\x24\x64\x32\x3f\xb8\x58\x40\x32\x95\x15\x24\x61\x1c\xc9\x4e\x6c\x21\x82\x77\x15\x11\xc8\xfe\x1a\x42\xc8\x24\x23\xb3\x33\xc9\xff\x5c\xf1\x28\x31\xff\x5c\x9f\xbc\x32\xe2\x37\x0e\xea\x93\x29\x4a\x0e\x48\x72\x05\xb7\xa0\x90\x68\x1a\x30\x8b\x7f\x63\xb6\xd2\x9b\x9c\x62\xa7\x82\xdb\x6f\xb7\xf6\xbb\xfe\xe6\x29\x77\x63\x2e\xaf\x6a\x86\x7f\x59\x33\xdc\x6e\xa6\x7d\x72\x4b\xfb\x6e\xc5\x00\x4b\x96\x11\xaa\x54\xf1\x52\x6d\x8c\xae\x38\x56\xff\x79\xcb\xaa\x4d\xa4\x6e\xfb\x91\x30\xe4\x61\xf8\x89\x30\x74\x0f\xc3\xaf\x32\xd8\xf4\xb7\xe4\x9e\xd7\xfb\x15\x7e\x10\x7f\xbe\x85\x5b\x64\x78\xa7\xf7\x03\xfc\x48\xbe\xee\xdd\x82\x5f\xc8\x6d\xaf\x77\x0b\x7e\x23\xb7\xef\xdd\xed\xdd\xaa\xe6\xf1\xfb\x46\x0e\xcf\x47\x31\x6f\x64\xec\xb7\x33\xfa\xd7\x1c\x69\x44\xd1\x91\x43\x03\xa7\xac\xe7\xd8\x15\xd5\x1d\x6e\x60\x55\xca\x3e\x98\xab\x51\x99\x96\x56\x09\x98\x91\xa9\x1e\x41\x98\x90\xa9\xd1\x78\x16\x64\x8e\x3a\xfd\xaf\x9e\x75\x84\x18\x3f\x47\x9d\xe0\xab\x37\x1d\x0c\x2b\xf1\xf3\xab\xa7\xc1\x57\xcf\x3b\x18\x4e\xd5\xc3\xee\x57\x8b\x0e\x86\x13\xf9\x10\xef\x7e\x35\xe9\x60\xf8\x24\x1f\x4e\xd4\xc3\x63\xf9\xf0\xa0\x83\xe1\xa5\xfc\xf5\x6b\x07\xc3\x21\x09\xc3\x1c\x7c\xf8\x35\x82\x30\x87\xbb\x70\xb7\xa7\x7e\xf9\x77\xc1\x37\xbf\x6f\x7b\x70\xdb\x93\xbf\x63\xf0\xe1\x5b\xf9\x57\x94\x54\xbf\x54\x49\xf5\x5b\x95\x14\xbf\x33\xf0\xe1\x07\xf9\xf7\x36\xdc\xee\xa9\x5f\xf7\xe0\x9e\xfe\xe5\x0f\xc1\x1f\xca\xdf\x09\xf8\x70\x4b\xfe\x1d\xc2\xb0\x27\x7e\x31\xf0\xe1\xc7\x08\x42\x0e\x3e\xfc\x22\xff\x0a\x08\xe2\x17\x05\x1f\x7e\x8b\x22\xdb\x54\x58\x89\x57\x39\x4a\xf1\x41\x3a\x5a\x04\xb1\xfa\x71\x16\x64\xea\xc7\x2a\x48\xd4\x8f\xd3\x80\xab\x1f\x4c\xfd\x39\x09\x3e\x05\x54\xfd\x7c\x1c\xbc\xc4\xb5\xb4\x16\x6f\x91\x9e\x2c\x4b\xc0\x2f\x65\x70\xd8\x0c\x97\x67\xd8\x57\x69\x80\x4d\x5c\x86\x07\xdc\xb6\x81\x2b\x2e\x90\x31\x8c\xda\x8e\x34\xc2\x61\x54\xe0\x3e\x4b\x4e\x67\x1c\x1d\x42\x8c\x77\x72\x42\xc8\xa1\x75\x42\xd1\x62\x4b\x67\x83\xdf\x20\x19\xfc\x26\xb3\xec\x12\x8a\x83\x5c\x94\x43\x39\x39\x0c\xe3\xc1\x61\x98\xbb\x7e\x14\x0e\xa3\x83\xc3\x30\x17\x7f\x07\xf1\x28\x77\xfd\x20\x97\x99\x1e\x81\x4b\xb5\x12\x07\x28\xab\xc4\xaa\xb6\x16\xd4\xfd\x65\x5f\x26\x67\xc5\x76\x56\x0c\x42\xb2\x11\x0f\xb8\x8e\x9f\x93\x95\xdf\xa6\xdb\x4f\x85\xaa\x25\x35\x53\x12\xe3\xf4\x4b\x14\xe7\x09\x2a\xcf\x68\x28\xc5\x38\x98\x20\xa5\xb5\x7d\x2f\x01\x35\x95\x68\xdb\xc0\x35\x41\x18\x12\x92\xaa\x03\xda\x34\x4c\x2d\x43\x70\x4c\xb2\x83\xa4\xdc\x66\xa4\x59\x2b\x81\x44\x9a\xb3\x98\xe0\x7e\x88\x91\xb7\x92\x6d\x67\xc0\x31\x1e\x69\xcf\x0d\x94\x40\xe6\xf8\x38\x08\xff\x2f\x65\xef\xda\xdc\xd6\x8d\x2c\x6a\x7f\xcf\xbf\x08\xdf\xb7\x54\x64\xbc\xcc\x74\x03\x8d\x46\x43\xd9\x3c\xae\x4c\xf6\x54\xcd\x9c\x9a\xd4\xe4\x4c\x32\xd9\x1f\xbc\x7d\x5c\xb8\x74\xdb\xdc\x91\x28\x9b\xa2\xe2\x78\x12\xfd\xf7\x53\x00\x75\xa1\x64\xda\xc9\x44\xa9\xc7\x22\x56\xe3\xba\xd6\x6a\x74\x53\x40\xe3\xc5\x94\x7b\xda\x9d\xa7\xb8\xbd\x6d\xca\x87\xdf\x25\xdf\x1b\xde\xb7\x7f\xfd\xf8\xe9\xf4\x6c\x68\x30\x7b\xe4\x53\x1d\xac\xd9\x6b\x77\xdf\x6a\xcf\x75\x34\xe4\xc8\x77\xd9\xbd\x5d\x6d\xfe\xed\x30\x45\x17\xa7\xd6\xcb\xfb\xa8\xd9\x6e\xd3\x51\x3d\xd4\x1b\x31\xd4\xe8\xf6\xa8\x6b\xa7\xf3\xb7\xcb\x9f\xa6\xb7\x4b\x9b\xde\x2e\xff\x67\x7a\xbb\xcc\xd3\xdb\x65\x99\xde\x2e\xdb\xf4\x76\xf9\x6a\x7a\xbb\xac\xd3\x8f\x63\xe1\xfa\xbe\xd3\xf7\xf3\xea\xdd\xed\x76\xea\x27\xe8\x0f\xd1\xa3\x14\xb7\x78\xb1\xb8\x9e\x36\x1f\xad\xf4\xe7\xe9\xed\xf2\xed\xf4\x76\x79\x35\xbd\x5d\x9e\x4d\x6f\x97\xe7\xd3\xdb\xe5\xc5\xf4\x76\xb9\x9d\xde\x2e\x37\xd3\x8f\xcb\xab\x5d\x7d\x5c\x67\x2f\x7d\xf9\xcf\x1f\xbe\xb9\xaf\xf3\x51\xca\xbe\xce\xf5\x51\xbb\x46\xf7\xb1\xe6\xe6\x5f\x2e\x7f\xe5\xeb\x2f\x5f\x7d\x78\xc8\xca\x5e\x6e\xf6\xff\xcd\x9e\xe8\x75\xb7\x18\x75\xb5\xd6\xf9\x0c\x2d\xc6\x42\x66\xd1\x40\x5d\xcd\xe0\x6a\x63\x17\x9d\x24\xe2\x58\x9a\xd4\xc0\x54\xd4\xc7\x58\x5d\xb4\xfe\x53\x6a\x69\xce\x61\x2c\x5a\x6d\xb6\x98\xf2\xbe\x14\x9f\x7c\x89\x29\xb8\x40\xd9\x73\x61\xad\x96\x6a\xd2\xa6\xec\x63\xf2\x49\x6a\x76\xc1\x95\x50\x8d\x4b\xd5\x56\x52\x95\xca\xcd\x63\x69\x49\x7d\xd2\x58\x72\x70\x1a\x6b\x49\x24\xe4\xab\x4f\xb9\x51\xa2\xdc\x98\x91\x8b\xc6\xc4\xa9\xc6\x42\x18\x7d\x0e\x01\x13\x55\xe5\x56\x5a\xd3\xa4\x8d\x67\x8b\xe9\xf2\xa6\x05\x28\xae\x34\x2e\x59\x1b\x27\xad\x59\xb1\x72\x2b\x6a\xca\x21\x40\xb3\x26\xcd\x57\x6b\x59\xb9\x58\x6b\x90\x9d\xc7\xec\x03\x45\xaa\x14\x39\x63\x4b\xa9\xd4\xa8\xa9\x42\x0c\x5c\x0a\x26\x4d\xb9\x4a\xef\x6b\xab\x2d\xb7\xac\x85\x7d\xff\x49\xdc\x7f\x4a\xeb\x3f\x2d\xf5\x9f\xd9\x62\xba\x3a\x1c\xc9\xac\x35\xaa\xec\xc7\xd3\xac\x94\x28\xfb\x51\x4d\xd2\x4c\xf2\x7e\x6c\xcd\x92\x24\xde\x8f\x70\x0d\x05\x5a\xd8\x8f\x73\xa5\x54\x13\xed\x47\xdb\x62\xe1\x76\x33\xe6\x35\xf6\x9f\xfd\xc8\xf7\xaa\xa5\xed\xc7\x3f\x69\xcb\x1a\x66\x8b\xe9\x4c\xf7\x61\x52\xeb\x5d\xe4\xc1\x9f\x97\x65\x71\xab\x13\xcf\xb4\x7f\xf0\x00\xd3\x32\x4c\x70\xf7\x57\xbf\x7d\xf2\x53\x47\x23\x1d\xbb\xa3\xfe\x89\xec\x4f\xb1\xe7\x8f\x61\x5a\xfa\xf0\xa8\x08\x81\x09\x97\x61\x5a\xca\x62\x31\xbd\xfe\x44\x11\x8e\xff\x48\x09\xed\xae\x84\xfd\xb5\xc5\xf4\xe6\xe1\xf3\x3e\xd7\xff\x80\xdf\x7e\xd3\xff\x85\x8b\x93\x93\xb9\x3e\x7d\xb4\xac\x6f\xbf\xbf\xed\x7e\x2a\xd3\xa7\xcb\x70\x67\x8b\x37\x5d\xbe\x5e\x79\x86\x2f\x74\x74\xa7\xe9\xf2\x72\x85\xcb\xf0\x14\x97\xe1\x8b\x5d\xff\x78\xb6\x5a\xca\xd3\x65\x1a\x1f\x9e\xcc\x0e\xd7\xbb\x9e\xeb\xe1\x5f\xf6\x6e\x56\x10\x3f\xfe\x9e\xea\x60\x87\xd2\xf3\x63\x4b\xa8\x76\x4f\x71\x3a\x68\xee\xf6\x8b\xdd\x62\xb1\xb8\x89\x74\xfb\xb3\xae\xce\x75\xde\x1f\x24\x22\xc0\x40\x44\xe0\x02\x53\x00\x0a\x91\x02\x84\x90\x88\x21\x86\x4c\x0c\x12\x2a\x31\xe4\xd0\x88\xa1\x04\xa5\x08\x8d\x81\x22\x28\x23\x45\x04\xf6\x14\x11\x99\x28\xa2\xe7\x40\x82\xc4\x91\x04\x99\x85\x04\x23\x27\x12\x14\xce\x24\x98\xb9\x92\x60\xe1\x46\x82\x95\x95\x04\x1b\x1b\x09\x5a\x04\x12\x07\x11\x49\x1c\x46\x4f\xe2\x7c\x24\x12\x47\x31\x90\xb8\x10\x99\xc4\x71\x8c\x24\x4e\xa2\x90\xb8\x14\x13\x45\x97\x63\xa6\xe8\xea\x60\x8b\x85\x62\x7f\xa7\x29\x3a\x8b\x8d\xd8\x43\x54\x62\xef\x06\x7d\x34\x62\x4f\x02\x14\x7c\x10\xa4\xe0\xe3\xa0\x88\x23\xf2\x49\x3c\x91\xcf\x83\x45\x88\xbc\x6f\x83\x2a\x81\x9c\xb7\x4e\x02\x61\x72\x84\xc2\x84\xe4\x24\x12\x12\x49\x24\xa0\x20\x42\x40\x2c\xe2\x8d\xe2\xa0\x48\xf2\x4a\x69\x30\x0f\x56\xc9\xbe\x51\x1b\x54\xc9\xbe\x92\x75\x06\x90\xe2\x4b\xc0\x41\x27\xc5\xe7\xe0\x07\x49\xaa\x4f\x21\x0c\xb2\x54\x2f\x41\x06\x93\x54\x1f\x43\x1e\x2c\xd2\x3c\x87\x3a\xd8\x55\x4d\x08\x3a\x68\xd2\x7c\xbf\x61\x9d\x28\xcd\x7b\x76\x83\x5e\x9a\x77\x4c\xa2\xde\x71\x10\xf5\xfd\xe6\x74\xc6\x41\x11\xf5\xc0\x69\x30\x8b\x3a\xe3\x32\x58\x45\x9d\x72\x1b\xd4\x41\x13\x75\x2d\xc2\x20\x8a\xba\x7a\x43\x37\xe8\x45\x5d\x89\x34\x18\x44\x5d\x8e\x3c\x18\x07\x45\xb4\xdf\xb9\xc1\x3c\xd8\x6b\x91\x58\x07\x7b\x2d\x31\xea\x60\xaf\x25\x4a\xaf\x85\x05\x07\xdd\x1d\x83\xf8\x41\x1a\xec\xb5\x90\xf0\x60\xaf\xc5\x8b\x0c\xa6\xc1\x2c\xcd\x39\x29\x83\x75\xb0\x49\x73\x28\x3a\x68\x9d\x09\x06\x51\xaa\x83\xe4\x0e\xe8\xa5\xa2\x25\x1a\x0c\x52\xd0\x12\x0f\xc6\x41\x19\x4c\x92\xd1\x52\x96\x8c\x9a\xca\x60\x95\x84\x9a\x9a\x24\xb4\xa4\x83\x26\x82\x96\x61\x10\x6f\x18\xd1\xb2\x93\xe8\x20\x7b\x61\x07\x99\x84\x1d\xe6\x20\xc1\x61\x66\x09\xae\x0f\x56\xa7\x08\x39\x9f\x93\x78\x47\x39\x8b\x77\x21\x17\x71\x2e\xe4\x2a\xce\x71\x6e\x82\x2e\x0e\x4a\x56\x01\x97\xb2\x45\x73\xb9\x40\x34\x57\x0b\x46\x75\xad\xb8\xd8\x9c\x16\xdf\xf5\x7b\xa1\x58\x3d\x96\x10\x8b\x77\x85\x63\xf6\x54\x38\x26\x1f\x4a\x8c\xc9\xc7\x22\x51\xbc\x94\x14\xa3\xcf\x25\x47\xf6\xa5\x94\x18\x7c\x2b\x35\x92\xb7\x52\xa3\x27\x28\x2d\x3a\x72\x45\x23\x12\x95\xfe\xce\x72\x85\xfe\xfe\x56\x64\xa5\x5c\x91\x1b\xd5\xea\xb8\x92\x56\xcf\x25\x40\x25\xce\xc1\xd5\xc0\x29\x50\x0d\x2c\x81\x2b\x73\x0c\x52\x23\x87\xde\x09\xa6\x50\xab\xb0\x0f\x5a\x13\x3b\x86\x9a\x19\xd8\xd7\x12\x8c\x43\x2d\x41\x39\xd6\x1a\x2a\xa7\xda\x42\xe1\x5a\x5b\xc8\xac\x55\x83\x44\xa8\x16\x62\xf4\x0d\x02\xc7\xd0\x20\x50\x8c\x0d\x83\x8f\xb9\x61\xc0\x58\x9b\x0b\x10\xad\x79\x52\xc1\xe6\xa9\x09\x35\xa2\x22\xdc\x42\x7f\x2f\x5b\x20\x91\xd2\x98\x58\xb4\x31\x85\x04\x2d\x92\x4f\xbe\x45\xc2\x14\x9a\x10\x24\x69\xe2\x35\x95\x96\x7c\x4d\xad\x25\x5f\x32\xb4\xec\x53\x76\x2d\xfb\x98\x43\x2b\x9e\xb3\xb4\xe2\x29\xe7\x56\xbd\xcb\xad\x55\x0f\x05\x5a\x73\x56\x5c\x6b\xae\x95\xd0\xd4\x95\x22\x4d\x5d\x2a\xb9\xa9\x93\xd2\x9a\x39\xae\xd0\xcc\x85\xea\x9a\x39\x5f\x83\x82\xc3\x2a\x0a\x0e\xba\xf9\x80\x56\x9b\x22\xb6\x06\x8a\x58\x9b\x53\x87\xa5\x05\x75\x98\xfb\xab\x81\xa9\x65\xf5\x98\x5a\x53\x8f\xd2\xac\x53\x9d\x12\x8a\x06\x25\x4c\x1a\x07\xb3\x06\xcc\x7d\x90\xb0\x9b\x22\x01\xab\xa1\x06\x6c\x46\xca\xa8\xc6\xca\x0e\x4c\x94\x1d\x5a\xd1\xe8\xbc\x35\x8d\x2e\xcc\x16\x8b\xe9\xfd\xdd\x6c\x00\xfd\x3f\x02\x04\x80\x00\x08\x08\x3c\x28\xe0\x00\x21\x81\x03\x07\x65\xb0\x81\x07\x0f\xd6\x89\x0e\x08\x08\x09\x02\x10\x32\x30\x04\x94\xc1\x0c\x11\x18\x2b\x08\x44\x54\x48\x10\x1d\x40\x06\x71\xbd\x8c\xe4\x08\x2a\x24\xc7\xd0\xed\xa3\x04\x0a\xc5\x15\x04\x28\xae\x21\x42\x75\x86\x0e\x9a\x47\xf4\xd0\x7c\x2f\x5b\x3d\x63\x00\xf5\x82\x0c\xe6\x0b\x0a\x98\x6f\x98\x10\xbc\x61\x46\x20\x87\x15\x81\x08\x1b\xf6\x59\x49\x11\x29\x39\x40\xa4\xe2\x10\x91\xd4\x39\xc4\x00\x8e\xd0\x05\xef\x02\xba\x10\x5c\x44\x17\xc4\x25\xc4\x90\x5d\x46\x0c\xd5\x55\xc4\x60\xbd\x7e\x46\x67\x88\xec\x3d\x22\x72\xf0\x1e\x81\xa3\x27\x04\x4e\x9e\x11\xb8\x78\x41\xe0\xea\x13\x18\xab\x2f\x60\x11\x7c\x03\x8b\xe8\x0d\x2c\x3a\x02\xb0\x48\xe4\xc0\x62\x20\x02\x8b\x4c\x01\x21\xc6\x3e\x5b\x46\xa1\x34\x98\x11\x62\xa2\x8a\x18\x33\x29\x62\xb7\x8a\xd1\xc5\x12\x10\x5d\xac\xc1\xa1\x8f\x35\x10\xfa\xd8\x42\x9f\x66\x5b\x88\x18\xa2\x86\x34\x98\x91\xa3\x86\x8a\x1c\x2d\x34\x8c\xd1\x82\xa1\x44\x63\x40\x11\x60\x87\x49\x80\x09\xb3\x00\x87\xc1\x88\x45\x80\x05\xab\x20\xe7\xc1\x82\x4d\x90\xdb\xa0\xa2\x0a\x46\x40\x13\x8c\x6e\xd0\x3b\x10\x8c\xc1\x61\x9f\xc0\x07\xc5\x39\xc1\x98\x9c\x13\x17\x8b\xf3\xe2\x62\x1d\xec\x9a\xd7\x09\xf4\x81\x94\x3e\x9c\x28\x7e\x68\x6d\x1a\x64\x17\x05\x45\x06\x93\x13\x41\x29\x2e\x49\xd7\xb6\x69\x68\xf6\x2c\x98\x60\x10\x5d\x11\x4c\xde\x15\x81\x44\xae\x0a\x24\x1e\x14\xd7\x04\x52\x1a\x2c\x4e\xa3\xa5\x3a\xa8\xce\xa2\x65\x18\xc4\x3e\xdb\x67\x3f\x18\x3c\x46\xcd\xec\x31\xb6\xae\x32\x63\xcb\xd9\xfb\xd8\x72\xf1\x3e\xd6\xdc\x3c\xc5\x9a\xd5\x53\x2c\x05\x7c\x88\xa5\xb8\x41\xef\x39\xe6\x12\x06\xa3\x8f\x31\x15\x19\xcc\x5e\xa2\x94\xea\xbb\xda\x6f\x3e\xc5\x58\xcc\xe7\x18\x2b\xf8\x1c\xb9\x3a\x5f\x62\xa8\xe4\x6b\x0c\x35\xf8\x1a\xa9\x46\xdf\xa2\xaf\xe2\x35\xfa\x9a\xbd\x46\x57\xab\xb7\x88\xb5\x11\x44\xac\x46\x10\xa1\xf5\x57\xc4\x9a\x23\xc7\x5d\x47\x79\xd6\x16\x88\xb8\x75\x5d\xc4\xb5\xc9\x60\x22\xee\x56\x7f\xf7\x15\x5a\x25\xe1\xd4\x94\x12\x4b\x33\xca\x2c\x0a\x54\xb9\x0f\x7c\x63\x56\x4f\xca\x41\x89\x8c\x49\x43\x00\x26\x8d\xc1\x71\x37\x5e\x3c\x3b\x4d\x81\xd8\x69\x0e\xcc\xa8\x25\x44\x06\xad\x41\x18\xb4\x85\x1c\x4c\x35\x94\xa0\x6a\xa1\x05\x35\x08\x16\xd4\x90\x21\x74\x45\xe5\x06\x29\x54\xf3\x1c\x42\x35\xe2\x38\x98\x42\xb5\xc0\xc3\xb3\xe2\x3a\xa8\xa1\x5a\x8c\x30\xe8\x42\x35\x89\x34\xc8\xa1\xf6\xc9\x32\x34\x4b\x31\x0d\x96\xd0\x2c\xc7\x5e\x57\x8e\xbd\xae\x2c\x18\xcc\x8a\xf8\xc1\xc0\x60\x45\x22\xa3\x55\x49\x83\x99\x9d\x75\xc7\xcd\x5b\x15\x65\xb2\x9a\x80\x83\xb5\xe4\x98\xad\x0f\x50\xb4\x96\x98\xc5\x5a\x12\x4e\xd6\x52\xe6\x6c\x2d\x15\x2e\xa6\xa9\x71\x35\x4d\xc6\xcd\x34\x23\xab\x69\xf6\x6c\xa6\x39\x44\x34\xcd\x31\x3a\xd3\x9c\xa2\x37\xcd\x39\x92\x69\xae\x91\x4d\xb3\xc6\x68\x5a\x20\x8a\x69\x71\x31\x9b\x16\x8a\xc5\xb4\x70\xac\xa6\x25\x46\x35\x2d\x29\x9a\x69\x29\x82\xa6\xa5\x89\x33\x2d\x26\x64\x5a\x51\x82\x69\x75\x12\x4d\x2b\x89\x98\x56\x96\x6c\x5a\x45\xaa\x69\xcd\x5d\x65\xd7\x2a\x66\x5a\x5b\x02\xeb\xce\x94\x33\x6d\x98\xc8\xb4\xf9\x14\x4c\x5b\x48\xd1\xb4\xc5\x94\x4c\x9b\xa4\x6c\xad\xe5\x54\xad\xb5\x9a\xd4\x5a\xd3\x0c\xd6\x14\x32\x5a\x53\x97\xbb\xe6\xf6\x39\x58\xd3\x90\x63\xd7\xe2\x39\x59\xd3\x94\xb3\x35\x2d\xb9\x5a\xed\x1e\xa9\x55\xd5\x02\x56\x0d\x8a\xb3\x6a\xae\x90\x55\xa3\xc2\xd6\xfd\x62\xb1\x6a\xb1\x24\xab\x96\x4a\xb1\x6a\xa5\x34\xab\xd6\x8a\xf5\xd9\xe0\xd5\x1f\x9b\x0d\xf2\x98\x07\xea\xa0\x82\x07\x87\x5d\x76\x3f\x1b\xf8\x9b\xd9\x20\x02\x03\x61\x82\x08\x01\x0b\x08\x04\x6c\x90\x80\xd1\x20\x43\x1c\xf3\x40\x1c\xf3\x80\x8c\x79\x40\xc6\x3c\x90\xc6\x3c\x90\xc6\x3c\x90\x3d\x60\x37\x94\x1c\x12\x14\x4f\x18\xa0\xf8\x88\x0c\xc5\x27\x14\xa8\xbe\x62\x82\xea\x15\x0b\x54\x42\xac\x50\xc9\xa3\x42\xa5\x80\x06\xb5\xfb\x13\x50\x29\x3b\x0f\x95\x6a\xaf\x87\xac\x1b\x1a\x01\x9d\x40\x09\xde\x25\x28\x21\xb8\x02\x25\x44\xd7\xa0\x84\xe4\x0c\x72\x28\x1e\x21\x87\xea\x1d\xe4\xa0\x9e\x20\x07\xf3\x0c\x89\xd1\x0f\xb5\xe4\x13\x24\xf6\xbe\x40\x62\xf2\x0d\x12\x07\xaf\x90\x98\x09\x20\x73\x24\x07\x99\x85\x68\x30\x40\xe6\x44\x11\x0a\x67\x4a\x83\x19\x2a\x17\xaa\x83\x0d\x1a\x57\xb2\xce\x80\xa0\x5c\x83\x03\xed\x66\x0a\x18\xb7\x10\x06\xbb\x7f\xd5\xb5\x7e\x67\x46\xec\xef\x1b\x3a\xd6\xd0\x06\x0d\x3d\x2b\xe3\xa0\x43\x62\x65\xc2\xc0\xca\x61\x30\x22\xb3\x72\x1a\xcc\x18\x59\xb9\xa2\xb0\x72\x1b\x34\x4c\xac\x11\x07\xbb\xe1\xa9\x91\x06\x03\x16\xd6\x18\xb1\x72\x8b\x32\x98\xb1\x71\x8b\x75\xb0\xa1\x72\x8b\x86\xca\x55\x00\xbb\x8f\xe0\x1c\x70\x15\x72\xc0\xa5\x5b\xb0\x5c\x24\x0e\x0e\x23\x55\xf2\x60\x75\x9e\x93\xb4\x41\x73\xc4\x29\x75\x67\x53\x92\x1b\xf4\x8e\x39\xa6\x30\x18\x5d\x64\x4e\x32\x98\x9d\x70\x48\xc5\x25\xa6\xd4\x06\xcd\x65\xf6\x19\x06\x9d\x2b\xec\xb2\x77\x95\xb1\x9b\x99\x0c\x99\x5d\x63\xc8\xe2\x34\x58\x4e\x4e\x83\xe6\xe2\x2c\x68\x6e\x1e\x42\x37\x9f\x20\xd4\x02\x1e\x43\x29\x38\x8c\x69\x3f\x48\xde\x87\x54\xd8\x53\x90\x12\x7d\x08\xb1\x24\x1f\x02\x97\xdc\x55\x5f\xe9\xde\x16\x95\xe6\x25\xf8\x62\x3e\x05\xd7\x75\x7f\xc0\x8a\x3e\x07\xa8\xde\xf7\x97\x8a\x7c\xb7\x79\xb9\x7b\x79\x35\x76\x8f\xaf\x76\x4f\xb0\xd4\x4c\x40\xb9\x16\x42\x4a\xb5\x92\x23\xa9\x4a\x7d\x02\x32\xea\x0a\x1f\x28\x50\x68\x8e\x98\xa8\x4f\x4b\xe4\x1b\x91\x90\x6b\x81\x32\x61\x8b\x54\xbc\x35\xa1\xea\xb5\x25\x6a\xbe\xb5\x4c\xea\x6b\x2b\x01\x7c\x69\x2d\xa0\xcf\x4d\x83\xf3\xd2\x2c\x78\x1f\x15\x42\xf0\xac\x18\xba\x39\xed\x42\xf4\xa4\x3e\x24\xef\x95\x42\xf6\xa8\x21\x54\x0f\xca\xa1\x39\xd3\x18\xd4\xa9\x0a\x83\x6b\x9a\x18\x5d\xe9\xd3\xa5\xcb\x5a\x98\x5c\xd2\xc2\xec\x44\x2b\x47\xc7\xda\x38\xb9\xa0\xca\xd9\x91\x5a\x9f\xee\xba\x09\xe9\xd0\x80\xcd\x81\x61\x44\x34\xc3\xe8\xb1\x99\x8b\x84\xd5\x7c\x64\x2c\xd6\x9d\xeb\x64\x14\x13\x8a\x85\x58\x30\x5a\xe8\xe6\xb9\x71\x54\x24\x63\x01\xf4\x16\xc5\xa1\xb3\x28\x84\x60\x22\x01\xcc\x44\x22\xa8\x89\x24\xa8\x96\xa4\x40\xb1\x24\x15\xb2\x25\x51\x48\x96\x13\x80\xf4\x9b\x0a\xd1\x72\x22\x88\x56\x12\x03\x5b\x49\x71\x30\x0d\x96\xc1\x06\xd1\x6a\xb2\xce\x8c\x20\x56\xb3\x87\x64\x35\x07\xc8\xd6\x5d\x8c\x6a\x35\x0b\x34\xab\x39\x83\x59\xcd\xb5\x9b\xde\x59\xd1\x59\x2d\x80\x64\xb5\x38\x64\xeb\xb7\x4d\xac\x14\xc6\x6c\x5d\xdd\x37\x2b\x25\xa3\x59\x29\xb5\x5b\xcf\x45\x9d\xb7\x5c\xc1\xb1\xe5\xea\x9c\x58\xae\xe4\xb2\xe5\xca\xae\x59\xaa\xd1\x99\xa5\x9a\xbc\xb3\x54\x8b\x0f\x26\xb5\xf9\x68\x52\xcd\x67\x8b\x0d\x7d\xb3\xd8\xfc\xfe\x35\x27\x6f\xdc\x22\xb1\x85\x96\x28\x59\x68\x85\xaa\x51\x6b\x64\x46\xfd\xde\x1a\xf5\xbb\x6a\x5e\x7d\xc8\xe6\x35\xf4\x99\x59\x99\xd1\x9c\x0a\x07\x73\x9a\x39\x19\x6a\xe5\x66\xa8\x2d\xa2\xa1\x5a\x0c\x86\x86\x31\x99\x33\x17\x9b\x39\x23\x71\xe6\x2d\x08\x9b\xb7\x3e\x2f\x91\x89\xa8\x05\x4b\xc9\x19\x5b\x4e\x6c\x62\x25\x65\x4b\x56\x53\xb3\x6c\x2d\xa3\x55\xb3\x4c\x7d\x36\x28\xf7\xb3\x41\x03\x91\x88\x00\x51\xa4\x1b\x5d\x92\x90\x21\x4a\xc6\x04\x2c\x15\x0b\xb0\x34\x6c\xd0\xfd\x71\x00\x16\xeb\xaa\x21\x81\x23\xe0\x84\x8e\x21\xa4\xae\x77\x43\x72\x2e\x43\x48\xde\x55\x08\x89\x9c\x42\x48\xc1\x19\x84\xc4\x1e\x21\xa4\xe8\xfd\x60\x00\x4a\xe2\x23\x50\x4a\x5e\x80\x52\xf6\x79\xb0\x02\xa5\xe2\x15\x28\x55\x6f\x9d\x84\x40\xa9\x91\x07\x9f\x94\x68\x90\xc1\x27\x23\x19\x4c\xd0\x33\x16\xf0\x19\xa9\x82\xcb\x48\x0a\x2e\xbb\x00\x83\x08\x2e\xfb\xe0\x07\x03\xb8\x4c\x81\x01\x33\x05\x19\x4c\x80\x39\x84\x32\x58\x01\x33\x07\xed\x64\x18\x44\x80\xee\x2a\x0f\xd2\x20\x0f\x46\x80\x2c\x9c\x06\xf3\x60\x1d\xd4\x41\xeb\xec\x83\x98\x25\x3a\xc0\x2c\x91\x06\xc3\x60\x1c\x94\xc1\xae\xe8\x24\x96\xc1\x06\x3e\x4b\xd4\x4e\x01\xa0\x2c\x82\x40\x39\x8a\x87\x90\xa3\xd0\x20\x03\x67\x96\x08\x31\xb3\x08\x48\x66\xc9\x90\x72\x90\x02\x39\x07\x69\x50\x72\x10\x85\x9a\x49\x0c\x5a\xee\x6e\x88\x66\x9f\x1c\x58\xf6\x89\xb0\x3b\x61\x01\x31\x63\x9f\xe8\x32\x26\x41\xca\x90\x12\x86\x64\x29\x23\x27\x4b\x15\x63\xd2\xd4\x50\x52\x4b\x8a\x29\xb5\x0c\x98\x53\xcd\x88\x25\x95\xec\xb0\xa5\xdc\x95\x4d\xca\x39\xa0\xa5\x94\xd9\x41\x92\x1c\x1d\xa6\x98\xc5\xb9\xc4\x39\x3b\x9f\x42\x2e\x8e\x12\xe5\xea\x38\x51\x6e\x2e\x26\x9f\xd5\x49\x72\x05\x5c\x4a\x58\xd0\xe5\x04\xc5\xb9\x22\x56\xbc\xab\xa2\x85\x9c\x4a\x2b\xc1\x99\xd4\xc2\x1e\xa4\x94\xe8\x51\x72\x11\xef\xa4\xdb\xe8\x5e\xa4\x14\xdf\xdd\xfa\xea\x83\xc4\xd2\x7c\x14\x2e\xea\x45\x42\xd7\xd9\x42\x5d\x67\x8b\xaf\xe8\x8b\xb8\xea\x7c\x15\xac\xde\x37\xe9\xc6\x82\x46\xab\x81\x20\x6a\x65\xc2\xd8\x6a\x24\x17\x6b\x15\xf2\xb1\xd4\x44\x14\x73\xcd\x14\x62\xd7\xe2\x1c\xbb\x16\x8f\x51\x6a\xa5\x14\x63\x6d\xd4\x7d\x00\xa5\x32\x4c\xe3\x1a\xa9\x01\xb5\xe8\x1b\x92\x46\xd7\x1c\x59\xc4\xe6\x03\x46\x6c\x14\x5c\x84\xd6\x15\xb4\xb5\x10\xa8\x2b\xd6\x10\xb8\xb5\x18\xb8\x5b\xfc\x21\x72\x69\x29\x08\xe7\x96\x43\x1e\x2c\x9c\x5a\x09\x95\xa5\xd5\xd0\x38\xb6\x16\x94\xb9\x69\x30\x0e\x4d\x19\x99\x9a\x71\xb7\xf2\x81\x3d\x7b\x45\xee\x56\xbe\xe3\xc0\xa8\x8e\x99\xbb\xab\xdc\xcd\xd1\x6e\xaf\xab\x06\xce\xa1\x69\xb7\xda\x9b\x0e\xab\x5d\x23\x6b\x28\x1a\xd9\x42\x56\x89\x10\x92\xa6\x88\x41\x34\x45\x17\xa2\xe6\x48\x21\x6a\x89\x21\xb0\x96\xc8\x21\x68\x8d\x31\x50\x37\x4d\x83\xd7\x16\x73\x70\xaa\xdd\x4f\x55\x8b\x75\x50\x03\x74\x75\x4b\x66\x20\x40\x6a\x28\x48\xcd\x50\x3c\x55\x73\x42\x54\xcc\x4b\x18\x8c\x94\x8d\x44\xa8\xbf\x9c\x89\xc4\x82\x14\x8a\x16\xa4\x12\x1b\x4b\xa3\x60\x2c\x46\x64\x31\xc1\x20\x92\xb7\x98\x3c\x39\x93\x44\x84\x26\xa9\x1b\x47\xa9\x9b\xee\x96\x92\x78\xed\x8f\x99\x57\xcb\xa9\xf8\x66\x39\x55\x5f\x2d\x27\xf5\xc5\x4a\xea\xba\xb6\x64\xf4\xc9\x4a\x76\x7e\xcc\x03\x83\xc1\xf7\x99\x81\x3d\xf7\x79\xc0\x07\xab\x39\x79\xb2\xe1\x21\x5a\xcb\x75\x50\xbd\xb3\x96\xcd\xa3\xb5\x82\x1e\xac\x15\xe7\xcc\x5a\xa1\xc1\xe0\xba\x27\x10\x5d\x33\xed\x0f\x94\x69\xc9\x83\xc5\x75\x6f\xa1\xb9\xee\x39\x68\x67\x05\x97\xac\x55\x37\xe8\x9d\x58\xab\xc1\x45\x6b\x95\x07\x65\x30\x77\x47\xb0\x16\xc7\x56\x6b\x73\xc1\x6a\xd5\xce\x06\x83\xce\x05\x2b\xcd\x3b\xb2\xd2\xc2\x60\x74\x64\xb9\xc9\x60\x76\x64\xa9\xd5\xc1\x9e\x57\x9a\x75\x2a\xba\x60\x51\xdd\x20\xb9\x30\xbe\xf9\x61\x63\x15\xc7\x16\x34\x0d\x16\x17\x8d\xb4\xb9\x68\x5e\xb5\xd3\xc0\xc5\x3e\x63\xb8\x68\x68\xdd\x3d\x45\x0b\x2e\xec\xbf\xd0\x30\xb0\xe4\x70\xb6\x38\x58\x3e\xfe\xf2\xe0\x2f\x14\x30\x56\x7d\x6d\x1e\x6c\xe4\x3c\x08\xc8\x31\x5f\x3f\xdd\x2d\xbe\x9c\x6f\x9f\xee\xee\x17\xbf\xcd\x37\xcf\x8e\xef\xfa\xbe\x58\x2c\x4e\x2f\x16\x1f\x5f\xf5\xf3\xe9\xc5\x70\xfb\x60\x00\xdb\xd5\x08\x07\x30\xad\x17\xa7\xcf\x77\xd3\x76\xbf\x56\xe6\x8f\xef\x0b\xdc\x8c\x7d\x81\xb7\xb1\x2b\xee\x77\x05\x5e\x6c\xff\xe8\xe2\xd0\xdd\x58\x54\xf4\x89\x25\x3a\x63\xf4\xee\xfe\x12\xdb\xdb\x78\xbb\x83\x76\x33\x56\x55\xad\x17\xd7\x37\x21\xb3\x2e\x6b\x3e\xd3\x3f\xe5\x4d\x3b\x16\x32\xeb\xcd\x7d\x68\xad\x21\xf7\xdd\xc5\x7a\x73\x34\xb6\xd6\xf9\x23\xc1\xbf\x36\xdd\xec\xd6\xbb\xf7\xc7\x64\xbf\x79\x24\xfb\xb7\xf5\x46\xf3\xf6\x98\xe4\x0f\x8f\x25\x2f\x5e\x1d\x13\xfb\xdb\x23\xb1\xbf\x6f\xdb\x7a\x93\xcf\x8e\x89\xb6\xc7\xed\xbc\x8d\x05\x73\x44\xf6\xf5\x07\x9d\x7f\x77\x4c\xec\x5f\x8f\xc4\xbe\x7f\xbb\x3d\x5a\xdc\x5f\x1e\xc9\xfd\x9f\x9b\xb5\x93\xc7\x64\xff\x74\x54\xf6\x5f\x47\x65\xff\xf9\x48\xf6\x87\xd7\x5b\xbd\x7c\x7d\x71\x76\xf4\x86\xfe\xd7\x63\xe1\xf5\xf9\xd1\x42\xb7\xfa\x48\xf0\x9f\xbb\x7a\x4c\x6e\xf3\x40\xee\xb5\x9e\xeb\x37\x79\xa7\xaf\x2e\xb6\xef\x11\x7e\x2f\x58\xdb\x43\x79\x07\xe5\x58\x86\xfc\x89\x0c\x47\x5b\x74\xf9\x89\x0c\xc7\xe4\xaf\x1e\x87\x8f\xdb\x6f\xd0\xfd\xe6\xaa\xe8\x6b\x3d\x5b\xff\xf2\x9f\x6a\xf9\xea\xec\xe8\x1d\xad\xc7\xb3\xfe\x23\xaf\x37\xe5\xf8\xb3\xf2\xe6\x78\x8e\xff\xca\xdb\xf3\x63\xe2\xf6\x91\xb6\x5d\x5c\x1c\x7d\xb8\x5f\x1f\x17\xff\x71\xbd\x5d\xb7\xf5\xe5\xb1\x1c\x3f\x1f\xcf\xf1\x6d\x7e\x75\x9e\x8f\xc9\xbf\x3f\x2e\xff\xd7\x8d\xe9\x76\x73\x71\x2c\xc7\xab\xe3\x39\xbe\x3b\xcb\x97\xc7\xab\x28\x8f\x9f\xbc\xef\xf5\xed\x55\x57\x26\xc7\x5f\xe8\x97\xfa\xef\x45\xf5\x7b\x14\x27\xea\x26\x36\xd4\xfa\xe8\x12\x94\xeb\xe9\x62\x85\x53\x5e\xb9\xe9\x72\xe5\xa7\xab\x15\x4d\x67\x2b\xd4\xa7\x7c\x3f\x09\xd5\x83\x95\x28\x23\x94\xe1\x88\x56\x30\xe2\x5e\x2d\xc3\xe2\xc9\x6c\x82\xc5\xec\x7e\x21\x9b\x1d\x95\x86\xe9\x5e\xfe\x50\xfa\xf5\x5d\x27\x3f\xbf\x89\xd6\x9f\x7f\x59\x5f\xde\x5f\x6f\x87\xab\x93\x9e\xbf\x98\xda\x3e\x50\xc1\x9b\xfd\x3f\xe7\x2b\x9e\x7e\x5e\xf1\xf4\x7e\xe5\xa7\x57\x2b\x5d\xad\x56\x17\xbf\xfd\xd6\xff\xb9\x7a\xf6\x14\x4f\x71\x2a\x23\xed\x6a\x9f\x96\x9f\xcd\x7e\x99\x9d\xce\xde\xcf\xa6\x97\x87\xa2\x97\xcf\xea\xa9\xdd\x77\xf6\xdd\xed\xca\xe0\xdb\x63\x43\xda\xb3\xdd\x7e\xb1\xd7\xed\xbf\xb7\x41\xc1\xa7\xed\xe2\xf4\x2e\xe4\xc3\xe2\xb4\x4d\x76\x93\xe3\xcd\x8d\xe4\x7e\xa9\xd0\x83\x0f\x87\x79\xd7\xa7\x6f\xa6\x77\xf7\x8b\xe1\xce\x27\x58\x3c\x79\x3f\xfd\xf9\x76\xc3\xe6\x7c\x31\xfd\xb2\x7a\xf2\xe7\xe7\xf0\xe2\xc9\x32\x4c\xdf\xf7\x5f\xff\x7c\xbf\x0a\xab\xa7\xfd\x7d\x35\xdf\xdd\xc7\xe7\x79\xf6\xe1\xce\x9b\x03\xdb\x40\xef\x05\xe7\x8b\xa7\xb8\xf8\xd2\xdd\xaf\xa0\xdf\xef\xcb\x59\x8c\xc5\x86\x0f\xa3\x25\x4d\x1f\xae\x92\x78\xa2\xf3\xed\xe2\xc9\xee\x77\x4e\xe7\xda\x1d\x88\xef\xc6\x79\x54\xbb\xdb\xe8\xda\xd3\xd7\x87\x07\xd3\x3e\x3b\xf8\x7d\xbe\x38\xdd\x4c\x3f\xad\xbe\x5e\xde\x1d\x87\x3a\x9f\xdd\x8c\xef\x6c\xb1\x6c\x79\x97\xe7\xfb\x70\x9f\x8b\xe9\x87\x47\x52\x7d\x84\x6f\x65\xea\xb4\x5b\x2c\x2f\xb6\x4d\xb7\xf3\xc5\xf4\xcd\xea\x87\xa5\xfe\xb2\xde\xcd\x17\xd3\xb7\xfd\xd7\xfe\x72\xce\x17\xfd\x36\xe8\xa6\xcd\x67\xaf\x66\x8b\x71\x0c\xdd\x7c\x56\xcf\xf2\xe5\xe5\x6c\x9a\xed\x4b\x9a\xfe\xb1\xfa\xe1\xa6\x82\xf9\xec\x6c\xbd\xd1\xd9\x62\xfa\xee\x20\x69\x9c\x88\xb1\xf8\xec\xa7\xd5\x4f\xcb\x71\xa0\xe6\xfc\xa7\xbb\xa2\xd7\x9b\x4b\xdd\xee\xe6\xb3\x37\x79\xf7\x7a\x36\xdd\x35\xed\x61\x2d\x77\xbd\xda\x27\x5f\xee\xb6\x17\x3f\xe9\x6c\x9a\xd5\xab\xed\x56\x37\xbb\x6f\x2e\xce\x2e\xb6\xb3\x45\xef\xe7\x0f\x37\x15\x7c\xdb\xdb\xf4\x8f\xdb\x0f\x77\x1d\xd8\xb7\xed\xd3\xc5\xec\xaf\x96\x27\x33\x37\x9b\x5e\x7d\x71\xbe\xe8\x5d\xf9\xee\x83\x92\xf6\x5d\xba\x29\xc9\xd6\x67\x67\x1f\x2b\x67\x7a\xf5\xc5\xbb\x5b\xb9\xf6\x7e\x36\x8d\x77\xe9\xd9\x0c\xf4\x7c\x76\xba\x7f\xa1\x66\xb0\x8c\xd8\x3f\xce\x60\xe9\x9d\x9e\xf7\x9e\x6c\x3e\x5f\xad\xbe\x3e\x39\x99\xf7\x21\x3b\x38\xc4\x78\xb3\xef\xe3\xc3\x94\xde\xd1\x87\x29\xbd\xc1\x0f\x53\xbe\x59\x7d\xf3\x30\xe5\xa6\x45\x17\x6f\x72\x1d\x26\xd9\xd9\x6d\xca\xfd\xf1\x53\xc7\xc2\xdc\xdc\x6f\x9a\x5d\xfd\x7d\xae\x8b\xc5\xb3\x97\x77\xa7\x3c\x3e\x38\x7a\xed\xa0\x98\xc5\xf5\x62\xfa\xf6\xdf\xad\xee\xe8\x71\x25\x37\xea\xee\xf6\x55\x7c\x39\xdf\x9d\x9c\xdc\x35\x68\xb7\x1a\xfb\x9c\x9e\xed\x4e\x47\xc3\xae\x17\x8b\xe9\x9b\x9b\x88\x82\xf3\xc5\xf4\xd3\xed\x1d\xd8\xdf\x80\xbd\x8e\xcb\xcf\x7e\x7e\x36\xfb\x76\xf6\xe4\xd5\x17\x3f\x3f\x99\x4d\xb3\x27\xbf\x3c\x99\xfd\x05\x96\xe1\xc7\xd9\x93\xef\x9f\xcc\xfe\x32\xd2\x4f\x67\xdf\xc2\x32\xec\xaf\xf5\xf4\xd3\x7d\x8e\x5f\x86\xfc\xc8\xf7\x23\x2c\xc3\x5f\x46\x8e\x1f\x6f\x73\xec\xaf\xdf\xa4\x2f\xa6\x1f\x1e\x77\x1e\xff\xd8\x58\xbf\x9c\xdf\xf4\x64\xfa\xc7\xe3\x67\x72\xfa\xee\xc1\xd3\xd5\x1f\xc6\xb9\x2d\xa6\xaf\x97\xfb\x13\x7c\xe7\xaf\x1f\x3d\x99\x9b\x8b\x83\xe7\xde\x2e\x36\xbb\xa7\x97\xc3\x72\x44\x78\x90\x68\xf9\x7c\x7d\xf6\x7e\x36\xcd\x2e\xf3\xe6\xf2\xe9\xa5\x6e\xd7\x76\x97\xab\xd7\xf1\x34\x6f\xea\xeb\x8b\xed\x7e\x0c\xf3\xb3\x9b\x23\x35\x4f\xf7\x53\xc8\x4c\x37\x6d\x76\x3a\x3b\x5f\xb7\x76\xd6\x15\xc0\xd7\x1f\x04\x6c\x3e\x98\xb2\x56\x7f\xbf\x3f\xe5\xf4\xdd\x72\xcc\xe9\x7f\xd4\xdd\xd2\xe9\xdd\xe2\x74\x77\x3d\xbd\x7b\xbc\xa8\xf8\x60\x87\xde\xcd\x39\xf3\xf7\x87\x50\x4c\xef\x6e\x33\x7c\x7d\x9b\xf6\x47\x77\xce\x1c\x84\x5e\xdc\xdc\x6d\x7b\x7a\xb7\x38\x3d\xd8\xcb\xb4\x2f\xf9\xc7\x11\xa9\xf2\x8f\x15\xdb\x1e\xc6\x8f\x7e\x50\x70\x3b\x39\x69\x8f\xcb\xfe\x60\xc1\xf2\x27\xca\x7e\xb3\x1f\xa2\x37\xb7\x79\xbf\x5f\xff\xeb\x0f\x0e\xee\xf9\xea\xe7\xd5\x93\x91\xf9\xfc\x30\xf3\xbf\x11\x00\xee\xfc\x58\xfe\x7f\x23\xd0\xdb\x6d\xfd\x3f\xdf\xe6\xff\xee\xdf\x09\x6c\xf7\xfe\x26\xf7\xfb\xeb\xe9\xdd\x61\x0c\xc7\xfb\x3c\x6d\x7e\x31\xe9\x83\x88\x6b\x87\xd7\xf2\x83\x6b\x3f\x3f\xb8\x76\xf9\xe0\xda\xfb\x07\xd7\xae\xfa\xb5\xdb\xa0\xd4\xbf\xac\x2f\x7f\xb8\x78\xf3\x3b\x9e\x73\x97\xfa\xc7\xfa\xd5\xeb\xdf\x73\x9c\xbb\xdc\x9f\x2e\x76\xbb\x8b\xa3\xbe\xc0\xcf\x0f\x05\xff\xa6\x76\xb4\xbc\xf7\xd7\x8b\xeb\x17\x2f\xf6\xd6\xee\xcb\x97\x7a\x5e\x74\xfb\x32\x5f\xed\x2e\x5e\xae\xcf\xdf\x5c\x6c\x77\x2f\x5f\x3e\x18\xdd\xfb\x3d\x31\xf3\xdd\xe1\x81\x4c\xfb\x53\xb9\xe1\xc5\x74\x35\xe2\xa6\x8d\x63\xa7\xdd\x8b\xc9\x56\x30\xbd\x5e\x3d\x7f\xf1\x95\xfd\xc7\xed\x8d\xf8\xca\x9e\x3c\x59\xe4\xd5\xe5\x73\xdb\x6f\xf4\x3a\x39\x79\x7d\x13\xeb\xf4\x79\x7e\xf1\x1c\x5e\x2c\x46\xea\x4d\xdc\xdf\x11\x58\xfc\x6a\xb1\x5f\x10\x7b\x60\x84\xbf\xce\x97\x7f\x7f\xb7\xb9\x3d\x26\xec\xf6\xdc\xf9\xcd\x58\x11\xfb\x7c\xf3\x62\x75\x35\xa2\xd7\xf6\x12\xea\xc9\x49\x9d\xef\x16\x5f\xbd\xbe\xad\x7e\xf1\x7a\x79\xf9\x7a\x6d\xbb\xf9\xe2\x3e\xea\xcc\xc5\x68\xc1\x8d\x41\x79\x31\x9d\xfd\xf6\xdb\xf3\x17\x8b\x69\x7b\x18\x7d\x6f\x7b\x18\x4c\x78\xda\xad\xe0\xab\xdd\x7f\xdc\xc6\x85\xf9\x6a\xf7\xe4\xc9\x41\x5c\xfc\xd5\xc5\xf3\xdd\x8b\x69\xb3\xfa\x1c\xa6\xcb\x15\x7e\x75\x79\xb7\x0b\xf4\xab\xcb\x2e\xb7\x8f\x77\xb4\x7d\x7e\xf9\xe2\x33\xf8\x7c\x35\x8e\x81\x1f\x3b\xca\x3f\xc7\xc5\xf5\xe6\xe4\x64\x7e\x71\x7b\xa6\xd3\xee\xe9\xd3\x09\x17\x93\xae\xf2\x3c\x2f\x2f\x57\xdb\x3e\x38\xf7\xe1\x60\xaf\xf7\xee\xc9\xaf\xd7\xd3\x7a\xf5\x2b\x9c\x42\xf7\x3d\x9e\x3f\xd8\xda\xb8\xdf\x4c\xba\x79\xbe\x7b\x71\xb7\x21\xfd\xf9\xee\xc5\xd8\xcd\xbb\xdd\x5d\x7e\x76\x13\x59\xf8\xf9\xee\xc5\xea\xd7\xf5\xe9\x6e\x3a\x3b\xfd\x1c\xa7\x9b\x8b\xa7\xbf\x5e\x5f\xdf\x19\xb5\x3d\xd3\x3e\x90\xc9\x6d\xde\x69\x3b\xdd\xff\x9e\xfb\x63\x76\xd6\x7b\x7b\x97\x76\x9d\x97\xe7\x2b\x9d\xf2\xb2\xae\x36\x53\x5e\xb6\x0f\x42\x4f\xe5\xe5\x3e\x20\xfa\x6f\xbf\xdd\xdc\xda\xa6\xb6\xde\xe8\xe1\xb9\x6f\xd3\xaf\xba\xb9\x3a\xd7\x6d\x2e\x67\x7a\xfa\x39\x8c\x08\xe0\xdb\xeb\xb1\x0b\xf1\xa1\xba\x98\x5d\x6d\xf6\xb9\xdb\xfd\x1e\xfd\xef\xdf\x9f\x97\x8b\xb3\x93\x93\xfd\xbf\xcb\xdd\xc5\xf7\xbb\xed\x7a\xf3\xea\x87\xfc\xea\xe4\xe4\x63\x35\x7e\x28\x3b\xdd\x1c\x8f\x33\xfb\xf6\xa2\x5d\x9d\xe9\xec\xfa\x76\xd9\xf6\x87\x99\x67\x2f\x5f\xea\xe5\x8d\xd8\x6d\xb6\xcf\x61\xdf\xdc\xc7\x5b\x49\xd6\x36\xc7\x93\xdd\x08\xd1\x97\x47\x24\x56\x39\xb9\x8b\x83\x3f\x0e\xfa\xa3\x7e\x75\x76\x31\xaa\x3a\x38\x77\xe9\xe4\xa4\xff\xbf\xbc\xaf\xe9\x3e\xd3\x61\xf4\xbd\x65\xdd\x6a\x77\x13\xef\x8e\x04\xcc\xcb\xed\x7c\xfb\xb1\xa6\x6f\xa7\x59\xbb\xfd\xc2\xe2\xd1\x88\xef\x7b\xd1\xbd\x6b\x37\x1a\x74\x39\xc6\xe5\xe0\xa8\xff\xbb\x38\xf0\x9b\x7d\x1c\xf8\xbc\x6c\xf3\xed\xb4\x39\x16\x6c\xa4\x3f\x44\xd7\xcb\xb2\xde\xb4\xd1\xae\xe9\x20\x1e\xf0\xb6\x8f\xd1\x91\x23\x18\x56\x8f\x7a\xfb\xec\x43\xdd\xa5\xcb\x9b\xb6\x5f\x1f\x39\x00\x4f\xef\x9e\xe0\x7c\xa3\x05\x67\x63\xb3\x55\xaf\xee\xe2\xf8\xee\x9e\x3f\xa4\x67\x46\x94\x81\x29\x2f\xdf\xac\x66\xb3\xcf\xf6\x47\x2a\xbd\x5b\x6f\xda\xc5\xbb\xe5\x3b\x2d\x6f\x72\xfd\xe9\x7f\x5f\x5e\x6c\xde\x1c\xd1\xa4\x7f\x50\xac\x2b\x9f\x71\xdc\xc3\xd0\x49\x63\xc8\x2e\x17\x9f\xed\x3f\xae\x76\xd3\xe5\xea\xf2\x83\x83\xd5\xf6\x27\x42\xdc\x69\xd8\xb3\x27\x4f\x16\xbb\xf9\x38\x17\x62\x1f\x54\x64\x75\xf5\x50\xd3\xcd\x9f\xcb\xe4\x6e\x34\xdc\xfc\xd7\xf8\x28\x6a\xfe\x4d\x33\x5f\x6a\x5e\xbf\xdc\xae\xb6\xfa\xf6\x6a\xbd\xd5\xe9\x30\xb5\xad\xf6\x4f\xd1\xf5\x24\x1f\x1c\x31\xb7\x9d\xc7\xc5\xa4\xb7\x9a\x60\xb5\x9d\xa7\xc5\xf5\x94\x3e\x71\x48\xf7\xb1\xf7\xb7\x5d\xd4\x31\x7b\x9f\x9c\xcc\xb7\xcb\x37\xab\xf9\x66\x75\x9b\xb2\x7c\x7b\xa5\xdb\xf7\xdf\x0f\xdf\xf1\x62\x3b\x3c\xd6\xcb\xba\x5d\xbf\xd9\xcd\x16\x8b\xc3\xdd\x61\xcb\xcb\x6d\x5d\x6e\xf5\xcd\x59\xae\x3a\xff\xf2\xbf\xbf\x7c\xfe\x7f\xff\xfb\xcb\x17\x5f\xfc\xff\x5f\x4e\xb3\x2f\xbb\x0b\x75\xdf\xc0\xf9\x7a\xb5\xef\xd3\x74\xb1\xff\x65\x7b\xdb\xd5\x71\x6b\xbe\xbe\xda\x5d\xfc\x75\xdc\x98\xff\x7c\xbf\xc9\xe7\xeb\x7a\xcc\xd8\xb8\x98\xcf\xf6\x65\xbc\xdf\xbc\x9c\x8d\x10\x86\xeb\xf9\x2c\x77\xe7\x75\x36\x3d\x7f\x71\xec\xdb\xd2\x39\x42\xb7\xdd\xd7\xf3\x59\xf3\x4f\xf3\x76\x9b\xdf\x7f\x54\xd2\x1d\x08\xfe\xb2\xbe\xfc\xb8\x9c\xdc\x0b\xee\x83\x92\x7c\x54\x34\xdc\x4b\x0e\xeb\xfa\xe3\x65\xc6\x03\xc9\xdb\xef\x16\x3e\x2a\xed\x0f\x84\x5f\xe7\x37\x9f\x28\xf6\xa0\x01\xbb\xf5\xb9\xfe\x5e\x7b\xf9\x40\xfc\xe0\xfc\x8f\x8f\x95\x7e\x2b\x6e\x67\x9f\x28\x13\xf1\x56\xea\xea\x52\x97\xff\xf3\xf1\x71\xc5\xdb\x6e\xad\x2f\x9f\xae\xdf\x7c\x5c\xec\xb6\x4f\x67\x17\x2d\x5f\xde\xc4\x6e\xbc\xfc\x9d\x11\xc3\xdb\xf1\x3d\xdb\x5e\xbd\x3c\xcf\x9f\x28\x7d\xdc\xdc\x11\x56\x7c\x3d\x9f\x8d\x77\xe0\xe9\x8d\x3e\xfe\x68\x96\xd4\xfd\xdc\xeb\xeb\xc5\x67\xff\x2f\x00\x00\xff\xff\x81\xab\xd6\x34\x21\xcf\x17\x00") -func distAssetsVendor4b52c9afd07b1f7fae097395f2dbaf27JsBytes() ([]byte, error) { +func distAssetsVendor34c674f94f8ed54c9c302f718969513fJsBytes() ([]byte, error) { return bindataRead( - _distAssetsVendor4b52c9afd07b1f7fae097395f2dbaf27Js, - "dist/assets/vendor-4b52c9afd07b1f7fae097395f2dbaf27.js", + _distAssetsVendor34c674f94f8ed54c9c302f718969513fJs, + "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js", ) } -func distAssetsVendor4b52c9afd07b1f7fae097395f2dbaf27Js() (*asset, error) { - bytes, err := distAssetsVendor4b52c9afd07b1f7fae097395f2dbaf27JsBytes() +func distAssetsVendor34c674f94f8ed54c9c302f718969513fJs() (*asset, error) { + bytes, err := distAssetsVendor34c674f94f8ed54c9c302f718969513fJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "dist/assets/vendor-4b52c9afd07b1f7fae097395f2dbaf27.js", size: 1488659, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} + info := bindataFileInfo{name: "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js", size: 1560353, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -408,7 +408,7 @@ func distImagesIconsWarningSvg() (*asset, error) { return a, nil } -var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xdf\x72\xa3\x36\x14\x87\xef\xf3\x14\x94\x19\xdf\x95\x60\x04\x06\x7b\xc6\x78\xc6\x8d\xe9\x4e\x3a\x1d\xc7\xeb\x75\xda\xdd\xab\x8c\xfe\x1c\x81\x1a\x21\x51\x49\x38\xf1\xdb\x77\x30\x36\x25\xdb\x34\xb3\x57\x18\xf4\x9d\x0f\xce\xcf\x47\x5a\xfe\xb4\x79\xb8\x3b\x7c\xdb\x15\x5e\xe5\x6a\xb9\xba\x59\xf6\x17\xcf\x5b\x56\x80\x59\xf7\xc3\xf3\x96\x35\x38\xec\xd1\x0a\x1b\x0b\x2e\xf7\x5b\xc7\x83\xb9\x3f\x5e\xaa\x9c\x6b\x02\xf8\xbb\x15\xc7\xdc\xff\x1a\x3c\xae\x83\x3b\x5d\x37\xd8\x09\x22\xc1\xf7\xa8\x56\x0e\x94\xcb\xfd\xfb\x22\x07\x56\xc2\xb5\xd2\x09\x27\x61\xb5\xd5\x35\x66\xcb\xb0\xbf\x19\x29\x15\xae\x21\xf7\x19\x58\x6a\x44\xe3\x84\x56\x23\x91\xff\x5f\xf0\x28\xe0\xa5\xd1\xc6\x8d\xa8\x17\xc1\x5c\x95\x33\x38\x0a\x0a\xc1\xf9\xe6\x67\x4f\x28\xe1\x04\x96\x81\xa5\x58\x42\x1e\xf9\xab\x9b\xb3\xe9\x66\xac\x52\xdd\x17\x05\xad\x08\xa9\x56\x5c\x94\x21\xa8\xa3\x30\x5a\xd5\xa0\xc6\xf6\x49\xf6\xcb\x04\xa1\x5a\xb3\x56\xc2\xce\x00\x17\xaf\x13\x84\x26\xf1\x7a\x82\xd0\x55\xd0\x3d\x40\x77\x13\x84\x46\x86\x01\x6a\x8c\x66\x2d\xed\x1a\x1b\x30\xa3\xb5\x7b\xdc\xff\x3e\x20\x61\x2b\xc2\x61\x51\x6a\x8a\x3b\xfa\x70\x6a\x60\x20\x70\xeb\xf4\x40\x14\x35\x01\x53\x6c\xff\xb8\xac\x9e\xbf\xef\xd7\x62\x7d\x78\xdc\x17\x5f\xc6\xcf\xa0\xe3\x02\xa3\x5b\x27\x54\x79\xbe\x82\x09\x2c\x98\x2e\xa7\x9e\x73\xa6\x85\x49\xb6\xb9\x68\xbf\x1e\x8a\xed\xe6\x69\xb7\x7f\x38\x3c\x74\x73\xf2\xc6\xb5\xc1\xee\x52\xc3\xb1\xb4\xff\x16\x3d\xfd\xf6\xf9\xb1\xd8\x7f\x7b\xba\xdf\x1e\x8a\x4f\xfb\xf5\xe1\xfe\x61\xfb\x8e\x7a\xbd\xdb\x8d\x65\x44\x6a\xfa\x2c\x54\xf9\xb9\x05\x23\xc0\x8e\x0a\xce\x74\x2d\x0c\x2e\xe1\x0b\x05\x85\x8d\xd0\x43\x06\xb6\xc6\x52\xde\xc9\xd6\x3a\x30\x43\x16\x3d\xfb\xa7\x70\xd5\x16\xd7\x60\x1b\x4c\xff\xcf\xd7\x31\x07\xfd\x0c\xea\x83\xf5\x3d\x94\x42\xbf\x01\xae\x1d\xf4\x59\x52\x29\x82\x9e\x1e\xb7\xd3\x5a\xa1\xca\x9d\xd1\xaf\xa7\xef\xcd\xad\x85\x0d\x70\xdc\x4a\xb7\xc3\xd6\xba\xca\xe8\xb6\xac\xde\xd5\xbf\x76\x33\xbd\x6e\x1a\x29\xfa\x7f\xff\x93\xd4\x04\xcb\xb7\x89\xfb\x5e\x78\x19\xe3\xa5\x14\xea\xd9\x33\x20\x73\xdf\xba\x93\x04\x5b\x01\x38\xdf\xab\x0c\xf0\xdc\xef\xa6\x09\x5b\x0b\xce\x86\x47\x50\x4c\x9b\x20\x4b\x48\x12\x63\x9a\x4c\xa3\x69\x3c\xe7\x24\x65\x71\x92\xc2\x7c\x86\x09\x8b\x09\x99\xc5\xe9\x2d\xb5\xf6\xba\xd5\x7e\xd0\x7c\x1d\xfd\x00\x71\x0e\x3c\xca\x80\x13\x42\x93\x38\x8d\x16\x53\xc4\x52\x4a\x23\x96\x20\x0a\x88\xcc\xdf\x77\x0b\xda\xed\x73\x77\x6a\x20\xf7\x45\x8d\x4b\x08\x1b\x55\x8e\x5f\x13\x72\x7c\xec\xa0\x20\xa2\x68\x86\x32\x9c\xe1\x69\xc6\xa2\x78\x0a\x94\x60\x4e\x21\x9b\x41\x92\x46\x33\x9c\x2e\x6e\xcf\x85\xd7\x60\xba\xe3\x2c\xbc\x9e\x67\x4b\xa2\xd9\xa9\x7f\xf5\x25\xb6\xfe\x8c\xf1\xac\xa1\xef\xc5\x94\x90\x19\xa2\x0b\xcc\xd9\x34\x23\x11\xcf\x38\x86\xe9\x22\x8b\x17\x33\x8e\x18\xc1\x1c\x65\xb7\x7f\x59\x7f\xb5\x0c\x7b\xc9\xea\x43\xe3\x10\x0f\x4b\xe7\xc9\x34\x9d\x21\x40\x73\x16\xa5\x38\x26\x64\x41\xa3\xe9\x0c\x25\x08\x41\x44\x68\xfa\x9d\xb3\x97\x32\x71\xf4\x04\xcb\xfd\x7e\xe8\x08\xb6\x82\x06\xcc\xe8\x86\xe9\x17\x15\xbc\x68\x53\x57\x5a\x42\x57\xc6\xc4\xf1\xdc\x68\xd8\x77\xba\x0c\xfb\x33\xfd\x9f\x00\x00\x00\xff\xff\xd0\xd2\xd3\x1b\xeb\x05\x00\x00") +var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x51\x6f\xa3\xb8\x13\xc0\xdf\xfb\x29\xf8\x23\xe5\xed\x4f\x01\x43\x20\x91\x20\x52\xae\xa1\xab\x9e\x4e\x69\x36\x4d\xef\x76\x9f\x2a\x63\x8f\xc1\x57\x63\x73\xb6\x49\x9b\x6f\x7f\x22\x24\x2c\xbb\xd7\x5b\xdd\x53\x02\xfe\xcd\xcf\x9e\x61\x3c\xd9\xff\x36\x8f\x77\x87\xaf\xbb\xc2\xa9\x6d\x23\x56\x37\xd9\xf0\xe3\x38\x59\x0d\x98\xf6\x7f\x1c\x27\x6b\xc0\x62\x87\xd4\x58\x1b\xb0\xb9\xdb\x59\xe6\x2d\xdc\xe9\x52\x6d\x6d\xeb\xc1\x5f\x1d\x3f\xe6\xee\x17\xef\x79\xed\xdd\xa9\xa6\xc5\x96\x97\x02\x5c\x87\x28\x69\x41\xda\xdc\x7d\x28\x72\xa0\x15\x5c\x23\x2d\xb7\x02\x56\x5b\xd5\x60\x9a\xf9\xc3\xc3\x44\x29\x71\x03\xb9\x4b\xc1\x10\xcd\x5b\xcb\x95\x9c\x88\xdc\x7f\x82\x47\x0e\x6f\xad\xd2\x76\x42\xbd\x71\x6a\xeb\x9c\xc2\x91\x13\xf0\xce\x0f\xff\x77\xb8\xe4\x96\x63\xe1\x19\x82\x05\xe4\xa1\xbb\xba\x39\x9b\x6e\xa6\x2a\xd9\x9f\xc8\xeb\xb8\x4f\x94\x64\xbc\xf2\x41\x1e\xb9\x56\xb2\x01\x39\xb5\xcf\xd2\x5f\x66\x08\x35\x8a\x76\x02\x76\x1a\x18\x7f\x9f\x21\x34\x8b\xd6\x33\x84\xae\x82\xfe\x05\xba\x9b\x21\x34\x31\x8c\x50\xab\x15\xed\x48\x9f\xd8\x88\x69\xa5\xec\xf3\xfe\xb7\x11\x99\xa1\xfb\x5e\x72\x3f\x02\x42\x11\xdc\x47\x1c\x4e\x2d\x8c\x14\xee\xac\x1a\x89\xa2\x29\x41\x17\xdb\xdf\x2f\xab\xe7\x33\xde\x17\xeb\xc3\xf3\xbe\x78\xfa\xf6\x2e\xdd\x5c\xe8\x2f\x87\x62\xbb\x79\xd9\xed\x1f\x0f\x8f\x7d\x0b\x3c\x4d\xc3\x36\xd8\x5e\x36\x61\x58\x18\x18\x83\x5e\x7e\xfd\xfc\x5c\xec\xbf\xbe\x3c\x6c\x0f\xc5\xa7\xfd\xfa\xf0\xf0\xb8\x1d\x30\xab\xbb\x6f\xd4\x7a\xb7\x9b\xca\x4a\xa1\xc8\x2b\x97\xd5\xe7\x0e\x34\x07\x33\x09\x38\xd3\x0d\xd7\xb8\x82\x27\x02\x12\x6b\xae\xc6\xd4\x4c\x83\x85\xb8\x13\x9d\xb1\xa0\xc7\x14\x07\xf6\x0f\x6e\xeb\x2d\x6e\xc0\xb4\x98\xfc\x9b\xaf\x67\x0e\xea\x15\xe4\x4f\xd6\xf7\x50\x71\xf5\x1d\x70\xcd\x00\xfa\x52\x7a\x44\x70\x6f\xa0\xa7\xe9\x74\x86\xcb\x6a\xa7\xd5\xfb\xe9\x47\x73\x67\x60\x03\x0c\x77\xc2\xee\xb0\x31\xb6\xd6\xaa\xab\xea\x0f\xf5\xef\x7d\xbb\xae\xdb\x56\xf0\xe1\xa3\x7e\x12\xaa\xc4\xe2\xfb\x8a\xbb\x8e\x7f\xe9\xd0\x4c\x70\xf9\xea\x68\x10\xb9\x6b\xec\x49\x80\xa9\x01\xac\xeb\xd4\x1a\x58\xee\xfa\x1d\xf7\xb1\x31\x60\x8d\x7f\x04\x49\x95\xf6\xd2\xb8\x8c\x23\x4c\xe2\x20\x0c\xa2\x05\x2b\x13\x1a\xc5\x09\x2c\xe6\xb8\xa4\x51\x59\xce\xa3\xe4\x96\x18\x73\xbd\x45\xff\xd1\x7c\xed\x6a\x0f\x31\x06\x2c\x4c\x81\x95\x25\x89\xa3\x24\x5c\x06\x88\x26\x84\x84\x34\x46\x04\x50\xb9\xf8\xd8\xcd\x49\x7f\x85\xed\xa9\x85\xdc\xe5\x0d\xae\xc0\x6f\x65\x35\xdd\xc6\x67\xf8\xd8\x43\x5e\x48\xd0\x1c\xa5\x38\xc5\x41\x4a\xc3\x28\x00\x52\x62\x46\x20\x9d\x43\x9c\x84\x73\x9c\x2c\x6f\xcf\x81\xd7\xc2\xf4\x93\xca\xbf\x8e\xaa\xac\x54\xf4\x34\x6c\x7d\x29\xdb\x30\x3e\x1c\xa3\xc9\x47\x65\x8a\x62\x92\xa4\x31\x5b\xc6\x6c\x01\x74\x1e\x93\x25\x89\x02\xc4\xd2\x70\xb1\x4c\x96\xf3\x30\x62\xb7\x7f\x1a\x77\x95\xf9\x83\x64\xf5\x53\xe3\x58\x9e\x88\xcd\x31\xa6\xb0\xc0\xcb\x98\xe0\x65\x9c\xd0\x18\x51\x56\x06\xb8\x4c\x03\xc6\x00\x82\x1f\x9c\x83\x94\xf2\xa3\xc3\x69\xee\x0e\x4d\x57\x62\xc3\x89\x47\xb5\x6a\xa9\x7a\x93\xde\x9b\xd2\x4d\xad\x04\xf4\x61\x94\x1f\xcf\x89\xfa\x43\xa6\x99\x3f\x8c\xeb\xbf\x03\x00\x00\xff\xff\xb4\x7f\x01\xeb\xc6\x05\x00\x00") func distIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -423,7 +423,7 @@ func distIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "dist/index.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} + info := bindataFileInfo{name: "dist/index.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -502,8 +502,8 @@ func AssetNames() []string { var _bindata = map[string]func() (*asset, error){ "dist/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": distAssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs, "dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css": distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css, - "dist/assets/nomad-ui-d6840652e28d16a3bb9c1052422e1bc6.js": distAssetsNomadUiD6840652e28d16a3bb9c1052422e1bc6Js, - "dist/assets/vendor-4b52c9afd07b1f7fae097395f2dbaf27.js": distAssetsVendor4b52c9afd07b1f7fae097395f2dbaf27Js, + "dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js": distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js, + "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js": distAssetsVendor34c674f94f8ed54c9c302f718969513fJs, "dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css": distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css, "dist/crossdomain.xml": distCrossdomainXml, "dist/ember-fetch/fetch-fastboot-5e5d008c8b65b0ac116f7635d0c6c6b9.js": distEmberFetchFetchFastboot5e5d008c8b65b0ac116f7635d0c6c6b9Js, @@ -564,8 +564,8 @@ var _bintree = &bintree{nil, map[string]*bintree{ "assets": &bintree{nil, map[string]*bintree{ "auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": &bintree{distAssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs, map[string]*bintree{}}, "nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css": &bintree{distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css, map[string]*bintree{}}, - "nomad-ui-d6840652e28d16a3bb9c1052422e1bc6.js": &bintree{distAssetsNomadUiD6840652e28d16a3bb9c1052422e1bc6Js, map[string]*bintree{}}, - "vendor-4b52c9afd07b1f7fae097395f2dbaf27.js": &bintree{distAssetsVendor4b52c9afd07b1f7fae097395f2dbaf27Js, map[string]*bintree{}}, + "nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js": &bintree{distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js, map[string]*bintree{}}, + "vendor-34c674f94f8ed54c9c302f718969513f.js": &bintree{distAssetsVendor34c674f94f8ed54c9c302f718969513fJs, map[string]*bintree{}}, "vendor-74b43ac401038fb6d346e85abd3bb536.css": &bintree{distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css, map[string]*bintree{}}, }}, "crossdomain.xml": &bintree{distCrossdomainXml, map[string]*bintree{}}, diff --git a/command/agent/consul/check_watcher.go b/command/agent/consul/check_watcher.go index 99c4a5be4c3..058c298f512 100644 --- a/command/agent/consul/check_watcher.go +++ b/command/agent/consul/check_watcher.go @@ -22,8 +22,8 @@ type ChecksAPI interface { Checks() (map[string]*api.AgentCheck, error) } -// TaskRestarter allows the checkWatcher to restart tasks. -type TaskRestarter interface { +// WorkloadRestarter allows the checkWatcher to restart tasks or entire task groups. +type WorkloadRestarter interface { Restart(ctx context.Context, event *structs.TaskEvent, failure bool) error } @@ -35,7 +35,7 @@ type checkRestart struct { checkName string taskKey string // composite of allocID + taskName for uniqueness - task TaskRestarter + task WorkloadRestarter grace time.Duration interval time.Duration timeLimit time.Duration @@ -114,7 +114,7 @@ func (c *checkRestart) apply(ctx context.Context, now time.Time, status string) // asyncRestart mimics the pre-0.9 TaskRunner.Restart behavior and is intended // to be called in a goroutine. -func asyncRestart(ctx context.Context, logger log.Logger, task TaskRestarter, event *structs.TaskEvent) { +func asyncRestart(ctx context.Context, logger log.Logger, task WorkloadRestarter, event *structs.TaskEvent) { // Check watcher restarts are always failures const failure = true @@ -292,7 +292,7 @@ func (w *checkWatcher) Run(ctx context.Context) { } // Watch a check and restart its task if unhealthy. -func (w *checkWatcher) Watch(allocID, taskName, checkID string, check *structs.ServiceCheck, restarter TaskRestarter) { +func (w *checkWatcher) Watch(allocID, taskName, checkID string, check *structs.ServiceCheck, restarter WorkloadRestarter) { if !check.TriggersRestarts() { // Not watched, noop return diff --git a/command/agent/consul/client.go b/command/agent/consul/client.go index cfa219d8203..e7480a8b758 100644 --- a/command/agent/consul/client.go +++ b/command/agent/consul/client.go @@ -115,12 +115,12 @@ type operations struct { // allocations by task. type AllocRegistration struct { // Tasks maps the name of a task to its registered services and checks - Tasks map[string]*TaskRegistration + Tasks map[string]*ServiceRegistrations } func (a *AllocRegistration) copy() *AllocRegistration { c := &AllocRegistration{ - Tasks: make(map[string]*TaskRegistration, len(a.Tasks)), + Tasks: make(map[string]*ServiceRegistrations, len(a.Tasks)), } for k, v := range a.Tasks { @@ -164,14 +164,14 @@ func (a *AllocRegistration) NumChecks() int { return total } -// TaskRegistration holds the status of services registered for a particular -// task. -type TaskRegistration struct { +// ServiceRegistrations holds the status of services registered for a particular +// task or task group. +type ServiceRegistrations struct { Services map[string]*ServiceRegistration } -func (t *TaskRegistration) copy() *TaskRegistration { - c := &TaskRegistration{ +func (t *ServiceRegistrations) copy() *ServiceRegistrations { + c := &ServiceRegistrations{ Services: make(map[string]*ServiceRegistration, len(t.Services)), } @@ -675,11 +675,11 @@ func (c *ServiceClient) RegisterAgent(role string, services []*structs.Service) // serviceRegs creates service registrations, check registrations, and script // checks from a service. It returns a service registration object with the // service and check IDs populated. -func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, task *TaskServices) ( +func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, workload *WorkloadServices) ( *ServiceRegistration, error) { // Get the services ID - id := MakeTaskServiceID(task.AllocID, task.Name, service) + id := MakeAllocServiceID(workload.AllocID, workload.Name(), service) sreg := &ServiceRegistration{ serviceID: id, checkIDs: make(map[string]struct{}, len(service.Checks)), @@ -692,14 +692,14 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t } // Determine the address to advertise based on the mode - ip, port, err := getAddress(addrMode, service.PortLabel, task.Networks, task.DriverNetwork) + ip, port, err := getAddress(addrMode, service.PortLabel, workload.Networks, workload.DriverNetwork) if err != nil { return nil, fmt.Errorf("unable to get address for service %q: %v", service.Name, err) } // Determine whether to use tags or canary_tags var tags []string - if task.Canary && len(service.CanaryTags) > 0 { + if workload.Canary && len(service.CanaryTags) > 0 { tags = make([]string, len(service.CanaryTags)) copy(tags, service.CanaryTags) } else { @@ -708,7 +708,7 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t } // newConnect returns (nil, nil) if there's no Connect-enabled service. - connect, err := newConnect(service.Name, service.Connect, task.Networks) + connect, err := newConnect(service.Name, service.Connect, workload.Networks) if err != nil { return nil, fmt.Errorf("invalid Consul Connect configuration for service %q: %v", service.Name, err) } @@ -734,7 +734,7 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t ops.regServices = append(ops.regServices, serviceReg) // Build the check registrations - checkIDs, err := c.checkRegs(ops, id, service, task) + checkIDs, err := c.checkRegs(ops, id, service, workload) if err != nil { return nil, err } @@ -747,7 +747,7 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t // checkRegs registers the checks for the given service and returns the // registered check ids. func (c *ServiceClient) checkRegs(ops *operations, serviceID string, service *structs.Service, - task *TaskServices) ([]string, error) { + workload *WorkloadServices) ([]string, error) { // Fast path numChecks := len(service.Checks) @@ -782,7 +782,7 @@ func (c *ServiceClient) checkRegs(ops *operations, serviceID string, service *st addrMode = structs.AddressModeHost } - ip, port, err := getAddress(addrMode, portLabel, task.Networks, task.DriverNetwork) + ip, port, err := getAddress(addrMode, portLabel, workload.Networks, workload.DriverNetwork) if err != nil { return nil, fmt.Errorf("error getting address for check %q: %v", check.Name, err) } @@ -796,186 +796,67 @@ func (c *ServiceClient) checkRegs(ops *operations, serviceID string, service *st return checkIDs, nil } -//TODO(schmichael) remove -type noopRestarter struct{} - -func (noopRestarter) Restart(context.Context, *structs.TaskEvent, bool) error { return nil } - -// makeAllocTaskServices creates a TaskServices struct for a group service. -// -//TODO(schmichael) rename TaskServices and refactor this into a New method -func makeAllocTaskServices(alloc *structs.Allocation, tg *structs.TaskGroup) (*TaskServices, error) { - //COMPAT(0.11) AllocatedResources is only nil when upgrading directly - // from 0.8. - if alloc.AllocatedResources == nil || len(alloc.AllocatedResources.Shared.Networks) == 0 { - return nil, fmt.Errorf("unable to register a group service without a group network") - } - - //TODO(schmichael) only support one network for now - net := alloc.AllocatedResources.Shared.Networks[0] - - ts := &TaskServices{ - AllocID: alloc.ID, - Name: "group-" + alloc.TaskGroup, - Services: tg.Services, - Networks: alloc.AllocatedResources.Shared.Networks, - - //TODO(schmichael) there's probably a better way than hacking driver network - DriverNetwork: &drivers.DriverNetwork{ - AutoAdvertise: true, - IP: net.IP, - // Copy PortLabels from group network - PortMap: net.PortLabels(), - }, - - // unsupported for group services - Restarter: noopRestarter{}, - DriverExec: nil, - } - - if alloc.DeploymentStatus != nil { - ts.Canary = alloc.DeploymentStatus.Canary - } - - return ts, nil -} - -// RegisterGroup services with Consul. Adds all task group-level service -// entries and checks to Consul. -func (c *ServiceClient) RegisterGroup(alloc *structs.Allocation) error { - tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) - if tg == nil { - return fmt.Errorf("task group %q not in allocation", alloc.TaskGroup) - } - - if len(tg.Services) == 0 { - // noop - return nil - } - - ts, err := makeAllocTaskServices(alloc, tg) - if err != nil { - return err - } - - return c.RegisterTask(ts) -} - -// UpdateGroup services with Consul. Updates all task group-level service -// entries and checks to Consul. -func (c *ServiceClient) UpdateGroup(oldAlloc, newAlloc *structs.Allocation) error { - oldTG := oldAlloc.Job.LookupTaskGroup(oldAlloc.TaskGroup) - if oldTG == nil { - return fmt.Errorf("task group %q not in old allocation", oldAlloc.TaskGroup) - } - - if len(oldTG.Services) == 0 { - // No old group services, simply add new group services - return c.RegisterGroup(newAlloc) - } - - oldServices, err := makeAllocTaskServices(oldAlloc, oldTG) - if err != nil { - return err - } - - newTG := newAlloc.Job.LookupTaskGroup(newAlloc.TaskGroup) - if newTG == nil { - return fmt.Errorf("task group %q not in new allocation", newAlloc.TaskGroup) - } - - newServices, err := makeAllocTaskServices(newAlloc, newTG) - if err != nil { - return err - } - - return c.UpdateTask(oldServices, newServices) -} - -// RemoveGroup services with Consul. Removes all task group-level service -// entries and checks from Consul. -func (c *ServiceClient) RemoveGroup(alloc *structs.Allocation) error { - tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) - if tg == nil { - return fmt.Errorf("task group %q not in allocation", alloc.TaskGroup) - } - - if len(tg.Services) == 0 { - // noop - return nil - } - ts, err := makeAllocTaskServices(alloc, tg) - if err != nil { - return err - } - - c.RemoveTask(ts) - - return nil -} - -// RegisterTask with Consul. Adds all service entries and checks to Consul. If -// exec is nil and a script check exists an error is returned. +// RegisterWorkload with Consul. Adds all service entries and checks to Consul. // // If the service IP is set it used as the address in the service registration. // Checks will always use the IP from the Task struct (host's IP). // // Actual communication with Consul is done asynchronously (see Run). -func (c *ServiceClient) RegisterTask(task *TaskServices) error { +func (c *ServiceClient) RegisterWorkload(workload *WorkloadServices) error { // Fast path - numServices := len(task.Services) + numServices := len(workload.Services) if numServices == 0 { return nil } - t := new(TaskRegistration) + t := new(ServiceRegistrations) t.Services = make(map[string]*ServiceRegistration, numServices) ops := &operations{} - for _, service := range task.Services { - sreg, err := c.serviceRegs(ops, service, task) + for _, service := range workload.Services { + sreg, err := c.serviceRegs(ops, service, workload) if err != nil { return err } t.Services[sreg.serviceID] = sreg } - // Add the task to the allocation's registration - c.addTaskRegistration(task.AllocID, task.Name, t) + // Add the workload to the allocation's registration + c.addRegistrations(workload.AllocID, workload.Name(), t) c.commit(ops) // Start watching checks. Done after service registrations are built // since an error building them could leak watches. - for _, service := range task.Services { - serviceID := MakeTaskServiceID(task.AllocID, task.Name, service) + for _, service := range workload.Services { + serviceID := MakeAllocServiceID(workload.AllocID, workload.Name(), service) for _, check := range service.Checks { if check.TriggersRestarts() { checkID := MakeCheckID(serviceID, check) - c.checkWatcher.Watch(task.AllocID, task.Name, checkID, check, task.Restarter) + c.checkWatcher.Watch(workload.AllocID, workload.Name(), checkID, check, workload.Restarter) } } } return nil } -// UpdateTask in Consul. Does not alter the service if only checks have +// UpdateWorkload in Consul. Does not alter the service if only checks have // changed. // // DriverNetwork must not change between invocations for the same allocation. -func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error { +func (c *ServiceClient) UpdateWorkload(old, newWorkload *WorkloadServices) error { ops := &operations{} - taskReg := new(TaskRegistration) - taskReg.Services = make(map[string]*ServiceRegistration, len(newTask.Services)) + regs := new(ServiceRegistrations) + regs.Services = make(map[string]*ServiceRegistration, len(newWorkload.Services)) existingIDs := make(map[string]*structs.Service, len(old.Services)) for _, s := range old.Services { - existingIDs[MakeTaskServiceID(old.AllocID, old.Name, s)] = s + existingIDs[MakeAllocServiceID(old.AllocID, old.Name(), s)] = s } - newIDs := make(map[string]*structs.Service, len(newTask.Services)) - for _, s := range newTask.Services { - newIDs[MakeTaskServiceID(newTask.AllocID, newTask.Name, s)] = s + newIDs := make(map[string]*structs.Service, len(newWorkload.Services)) + for _, s := range newWorkload.Services { + newIDs[MakeAllocServiceID(newWorkload.AllocID, newWorkload.Name(), s)] = s } // Loop over existing Service IDs to see if they have been removed @@ -997,8 +878,8 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error { continue } - oldHash := existingSvc.Hash(old.AllocID, old.Name, old.Canary) - newHash := newSvc.Hash(newTask.AllocID, newTask.Name, newTask.Canary) + oldHash := existingSvc.Hash(old.AllocID, old.Name(), old.Canary) + newHash := newSvc.Hash(newWorkload.AllocID, newWorkload.Name(), newWorkload.Canary) if oldHash == newHash { // Service exists and hasn't changed, don't re-add it later delete(newIDs, existingID) @@ -1009,7 +890,7 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error { serviceID: existingID, checkIDs: make(map[string]struct{}, len(newSvc.Checks)), } - taskReg.Services[existingID] = sreg + regs.Services[existingID] = sreg // See if any checks were updated existingChecks := make(map[string]*structs.ServiceCheck, len(existingSvc.Checks)) @@ -1028,7 +909,7 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error { } // New check on an unchanged service; add them now - newCheckIDs, err := c.checkRegs(ops, existingID, newSvc, newTask) + newCheckIDs, err := c.checkRegs(ops, existingID, newSvc, newWorkload) if err != nil { return err } @@ -1039,7 +920,7 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error { // Update all watched checks as CheckRestart fields aren't part of ID if check.TriggersRestarts() { - c.checkWatcher.Watch(newTask.AllocID, newTask.Name, checkID, check, newTask.Restarter) + c.checkWatcher.Watch(newWorkload.AllocID, newWorkload.Name(), checkID, check, newWorkload.Restarter) } } @@ -1056,41 +937,41 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error { // Any remaining services should just be enqueued directly for _, newSvc := range newIDs { - sreg, err := c.serviceRegs(ops, newSvc, newTask) + sreg, err := c.serviceRegs(ops, newSvc, newWorkload) if err != nil { return err } - taskReg.Services[sreg.serviceID] = sreg + regs.Services[sreg.serviceID] = sreg } // Add the task to the allocation's registration - c.addTaskRegistration(newTask.AllocID, newTask.Name, taskReg) + c.addRegistrations(newWorkload.AllocID, newWorkload.Name(), regs) c.commit(ops) // Start watching checks. Done after service registrations are built // since an error building them could leak watches. for _, service := range newIDs { - serviceID := MakeTaskServiceID(newTask.AllocID, newTask.Name, service) + serviceID := MakeAllocServiceID(newWorkload.AllocID, newWorkload.Name(), service) for _, check := range service.Checks { if check.TriggersRestarts() { checkID := MakeCheckID(serviceID, check) - c.checkWatcher.Watch(newTask.AllocID, newTask.Name, checkID, check, newTask.Restarter) + c.checkWatcher.Watch(newWorkload.AllocID, newWorkload.Name(), checkID, check, newWorkload.Restarter) } } } return nil } -// RemoveTask from Consul. Removes all service entries and checks. +// RemoveWorkload from Consul. Removes all service entries and checks. // // Actual communication with Consul is done asynchronously (see Run). -func (c *ServiceClient) RemoveTask(task *TaskServices) { +func (c *ServiceClient) RemoveWorkload(workload *WorkloadServices) { ops := operations{} - for _, service := range task.Services { - id := MakeTaskServiceID(task.AllocID, task.Name, service) + for _, service := range workload.Services { + id := MakeAllocServiceID(workload.AllocID, workload.Name(), service) ops.deregServices = append(ops.deregServices, id) for _, check := range service.Checks { @@ -1103,8 +984,8 @@ func (c *ServiceClient) RemoveTask(task *TaskServices) { } } - // Remove the task from the alloc's registrations - c.removeTaskRegistration(task.AllocID, task.Name) + // Remove the workload from the alloc's registrations + c.removeRegistration(workload.AllocID, workload.Name()) // Now add them to the deregistration fields; main Run loop will update c.commit(&ops) @@ -1203,23 +1084,23 @@ func (c *ServiceClient) Shutdown() error { return nil } -// addTaskRegistration adds the task registration for the given allocation. -func (c *ServiceClient) addTaskRegistration(allocID, taskName string, reg *TaskRegistration) { +// addRegistration adds the service registrations for the given allocation. +func (c *ServiceClient) addRegistrations(allocID, taskName string, reg *ServiceRegistrations) { c.allocRegistrationsLock.Lock() defer c.allocRegistrationsLock.Unlock() alloc, ok := c.allocRegistrations[allocID] if !ok { alloc = &AllocRegistration{ - Tasks: make(map[string]*TaskRegistration), + Tasks: make(map[string]*ServiceRegistrations), } c.allocRegistrations[allocID] = alloc } alloc.Tasks[taskName] = reg } -// removeTaskRegistration removes the task registration for the given allocation. -func (c *ServiceClient) removeTaskRegistration(allocID, taskName string) { +// removeRegistrations removes the registration for the given allocation. +func (c *ServiceClient) removeRegistration(allocID, taskName string) { c.allocRegistrationsLock.Lock() defer c.allocRegistrationsLock.Unlock() @@ -1249,11 +1130,11 @@ func makeAgentServiceID(role string, service *structs.Service) string { return fmt.Sprintf("%s-%s-%s", nomadServicePrefix, role, service.Hash(role, "", false)) } -// MakeTaskServiceID creates a unique ID for identifying a task service in +// MakeAllocServiceID creates a unique ID for identifying an alloc service in // Consul. // // Example Service ID: _nomad-task-b4e61df9-b095-d64e-f241-23860da1375f-redis-http-http -func MakeTaskServiceID(allocID, taskName string, service *structs.Service) string { +func MakeAllocServiceID(allocID, taskName string, service *structs.Service) string { return fmt.Sprintf("%s%s-%s-%s-%s", nomadTaskPrefix, allocID, taskName, service.Name, service.PortLabel) } diff --git a/command/agent/consul/group_test.go b/command/agent/consul/group_test.go index 6f9fe0e215d..8adcda07684 100644 --- a/command/agent/consul/group_test.go +++ b/command/agent/consul/group_test.go @@ -64,6 +64,9 @@ func TestConsul_Connect(t *testing.T) { { Name: "testconnect", PortLabel: "9999", + Meta: map[string]string{ + "alloc_id": "${NOMAD_ALLOC_ID}", + }, Connect: &structs.ConsulConnect{ SidecarService: &structs.ConsulSidecarService{ Proxy: &structs.ConsulProxy{ @@ -76,10 +79,10 @@ func TestConsul_Connect(t *testing.T) { // required by isNomadSidecar assertion below serviceRegMap := map[string]*api.AgentServiceRegistration{ - MakeTaskServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0]): nil, + MakeAllocServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0]): nil, } - require.NoError(t, serviceClient.RegisterGroup(alloc)) + require.NoError(t, serviceClient.RegisterWorkload(BuildAllocServices(mock.Node(), alloc, NoopRestarter()))) require.Eventually(t, func() bool { services, err := consulClient.Agent().Services() @@ -94,7 +97,7 @@ func TestConsul_Connect(t *testing.T) { require.NoError(t, err) require.Len(t, services, 2) - serviceID := MakeTaskServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0]) + serviceID := MakeAllocServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0]) connectID := serviceID + "-sidecar-proxy" require.Contains(t, services, serviceID) @@ -123,88 +126,8 @@ func TestConsul_Connect(t *testing.T) { "bind_address": "0.0.0.0", "bind_port": float64(9998), }) + require.Equal(t, alloc.ID, agentService.Meta["alloc_id"]) time.Sleep(interval >> 2) } } - -// TestConsul_Update08Alloc asserts that adding group services to a previously -// 0.8 alloc works. -// -// COMPAT(0.11) Only valid for upgrades from 0.8. -func TestConsul_Update08Alloc(t *testing.T) { - // Create an embedded Consul server - testconsul, err := testutil.NewTestServerConfig(func(c *testutil.TestServerConfig) { - // If -v wasn't specified squelch consul logging - if !testing.Verbose() { - c.Stdout = ioutil.Discard - c.Stderr = ioutil.Discard - } - }) - if err != nil { - t.Fatalf("error starting test consul server: %v", err) - } - defer testconsul.Stop() - - consulConfig := consulapi.DefaultConfig() - consulConfig.Address = testconsul.HTTPAddr - consulClient, err := consulapi.NewClient(consulConfig) - require.NoError(t, err) - serviceClient := NewServiceClient(consulClient.Agent(), testlog.HCLogger(t), true) - - // Lower periodicInterval to ensure periodic syncing doesn't improperly - // remove Connect services. - const interval = 50 * time.Millisecond - serviceClient.periodicInterval = interval - - // Disable deregistration probation to test syncing - serviceClient.deregisterProbationExpiry = time.Time{} - - go serviceClient.Run() - defer serviceClient.Shutdown() - - // Create new 0.10-style alloc - alloc := mock.Alloc() - alloc.AllocatedResources.Shared.Networks = []*structs.NetworkResource{ - { - Mode: "bridge", - IP: "10.0.0.1", - DynamicPorts: []structs.Port{ - { - Label: "connect-proxy-testconnect", - Value: 9999, - To: 9998, - }, - }, - }, - } - tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) - tg.Services = []*structs.Service{ - { - Name: "testconnect", - PortLabel: "9999", - Connect: &structs.ConsulConnect{ - SidecarService: &structs.ConsulSidecarService{ - Proxy: &structs.ConsulProxy{ - LocalServicePort: 9000, - }, - }, - }, - }, - } - - // Create old 0.8-style alloc from new alloc - oldAlloc := alloc.Copy() - oldAlloc.AllocatedResources = nil - oldAlloc.Job.LookupTaskGroup(alloc.TaskGroup).Services = nil - - // Expect new services to get registered - require.NoError(t, serviceClient.UpdateGroup(oldAlloc, alloc)) - - // Assert the group and sidecar services are registered - require.Eventually(t, func() bool { - services, err := consulClient.Agent().Services() - require.NoError(t, err) - return len(services) == 2 - }, 3*time.Second, 100*time.Millisecond) -} diff --git a/command/agent/consul/structs.go b/command/agent/consul/structs.go index f58fa2efc83..0aa21f3cc03 100644 --- a/command/agent/consul/structs.go +++ b/command/agent/consul/structs.go @@ -2,22 +2,28 @@ package consul import ( "github.com/hashicorp/nomad/client/allocrunner/taskrunner/interfaces" + "github.com/hashicorp/nomad/client/taskenv" + "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/plugins/drivers" ) -type TaskServices struct { +// WorkloadServices describes services defined in either a Task or TaskGroup +// that need to be syncronized with Consul +type WorkloadServices struct { AllocID string - // Name of the task - Name string + // Name of the task and task group the services are defined for. For + // group based services, Task will be empty + Task string + Group string // Canary indicates whether or not the allocation is a canary Canary bool - // Restarter allows restarting the task depending on the task's + // Restarter allows restarting the task or task group depending on the // check_restart stanzas. - Restarter TaskRestarter + Restarter WorkloadRestarter // Services and checks to register for the task. Services []*structs.Service @@ -26,41 +32,49 @@ type TaskServices struct { Networks structs.Networks // DriverExec is the script executor for the task's driver. + // For group services this is nil and script execution is managed by + // a tasklet in the taskrunner script_check_hook DriverExec interfaces.ScriptExecutor // DriverNetwork is the network specified by the driver and may be nil. DriverNetwork *drivers.DriverNetwork } -func NewTaskServices(alloc *structs.Allocation, task *structs.Task, restarter TaskRestarter, exec interfaces.ScriptExecutor, net *drivers.DriverNetwork) *TaskServices { - ts := TaskServices{ - AllocID: alloc.ID, - Name: task.Name, - Restarter: restarter, - Services: task.Services, - DriverExec: exec, - DriverNetwork: net, - } +func BuildAllocServices(node *structs.Node, alloc *structs.Allocation, restarter WorkloadRestarter) *WorkloadServices { + + //TODO(schmichael) only support one network for now + net := alloc.AllocatedResources.Shared.Networks[0] + + tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) + + ws := &WorkloadServices{ + AllocID: alloc.ID, + Group: alloc.TaskGroup, + Services: taskenv.InterpolateServices(taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region).Build(), tg.Services), + Networks: alloc.AllocatedResources.Shared.Networks, + + //TODO(schmichael) there's probably a better way than hacking driver network + DriverNetwork: &drivers.DriverNetwork{ + AutoAdvertise: true, + IP: net.IP, + // Copy PortLabels from group network + PortMap: net.PortLabels(), + }, - if alloc.AllocatedResources != nil { - if tr, ok := alloc.AllocatedResources.Tasks[task.Name]; ok { - ts.Networks = tr.Networks - } - } else if task.Resources != nil { - // COMPAT(0.11): Remove in 0.11 - ts.Networks = task.Resources.Networks + Restarter: restarter, + DriverExec: nil, } - if alloc.DeploymentStatus != nil && alloc.DeploymentStatus.Canary { - ts.Canary = true + if alloc.DeploymentStatus != nil { + ws.Canary = alloc.DeploymentStatus.Canary } - return &ts + return ws } // Copy method for easing tests -func (t *TaskServices) Copy() *TaskServices { - newTS := new(TaskServices) +func (t *WorkloadServices) Copy() *WorkloadServices { + newTS := new(WorkloadServices) *newTS = *t // Deep copy Services @@ -70,3 +84,11 @@ func (t *TaskServices) Copy() *TaskServices { } return newTS } + +func (w *WorkloadServices) Name() string { + if w.Task != "" { + return w.Task + } + + return "group-" + w.Group +} diff --git a/command/agent/consul/testing.go b/command/agent/consul/testing.go new file mode 100644 index 00000000000..e034f12bb8a --- /dev/null +++ b/command/agent/consul/testing.go @@ -0,0 +1,17 @@ +package consul + +import ( + "context" + + "github.com/hashicorp/nomad/nomad/structs" +) + +func NoopRestarter() WorkloadRestarter { + return noopRestarter{} +} + +type noopRestarter struct{} + +func (noopRestarter) Restart(ctx context.Context, event *structs.TaskEvent, failure bool) error { + return nil +} diff --git a/command/agent/consul/unit_test.go b/command/agent/consul/unit_test.go index 5c3effeb3d1..3cc702f003d 100644 --- a/command/agent/consul/unit_test.go +++ b/command/agent/consul/unit_test.go @@ -20,15 +20,15 @@ import ( ) const ( - // Ports used in testTask + // Ports used in testWorkload xPort = 1234 yPort = 1235 ) -func testTask() *TaskServices { - return &TaskServices{ +func testWorkload() *WorkloadServices { + return &WorkloadServices{ AllocID: uuid.Generate(), - Name: "taskname", + Task: "taskname", Restarter: &restartRecorder{}, Services: []*structs.Service{ { @@ -48,7 +48,7 @@ func testTask() *TaskServices { } } -// restartRecorder is a minimal TaskRestarter implementation that simply +// restartRecorder is a minimal WorkloadRestarter implementation that simply // counts how many restarts were triggered. type restartRecorder struct { restarts int64 @@ -63,7 +63,7 @@ func (r *restartRecorder) Restart(ctx context.Context, event *structs.TaskEvent, type testFakeCtx struct { ServiceClient *ServiceClient FakeConsul *MockAgent - Task *TaskServices + Workload *WorkloadServices } var errNoOps = fmt.Errorf("testing error: no pending operations") @@ -85,10 +85,10 @@ func (t *testFakeCtx) syncOnce() error { } // setupFake creates a testFakeCtx with a ServiceClient backed by a fakeConsul. -// A test Task is also provided. +// A test Workload is also provided. func setupFake(t *testing.T) *testFakeCtx { fc := NewMockAgent() - tt := testTask() + tw := testWorkload() // by default start fake client being out of probation sc := NewServiceClient(fc, testlog.HCLogger(t), true) @@ -97,7 +97,7 @@ func setupFake(t *testing.T) *testFakeCtx { return &testFakeCtx{ ServiceClient: sc, FakeConsul: fc, - Task: tt, + Workload: tw, } } @@ -105,35 +105,35 @@ func TestConsul_ChangeTags(t *testing.T) { ctx := setupFake(t) require := require.New(t) - require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task)) + require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload)) require.NoError(ctx.syncOnce()) require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul") // Validate the alloc registration - reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Task.AllocID) + reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Workload.AllocID) require.NoError(err) require.NotNil(reg1, "Unexpected nil alloc registration") require.Equal(1, reg1.NumServices()) require.Equal(0, reg1.NumChecks()) for _, v := range ctx.FakeConsul.services { - require.Equal(v.Name, ctx.Task.Services[0].Name) - require.Equal(v.Tags, ctx.Task.Services[0].Tags) + require.Equal(v.Name, ctx.Workload.Services[0].Name) + require.Equal(v.Tags, ctx.Workload.Services[0].Tags) } // Update the task definition - origTask := ctx.Task.Copy() - ctx.Task.Services[0].Tags[0] = "newtag" + origWorkload := ctx.Workload.Copy() + ctx.Workload.Services[0].Tags[0] = "newtag" // Register and sync the update - require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task)) + require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload)) require.NoError(ctx.syncOnce()) require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul") // Validate the metadata changed for _, v := range ctx.FakeConsul.services { - require.Equal(v.Name, ctx.Task.Services[0].Name) - require.Equal(v.Tags, ctx.Task.Services[0].Tags) + require.Equal(v.Name, ctx.Workload.Services[0].Name) + require.Equal(v.Tags, ctx.Workload.Services[0].Tags) require.Equal("newtag", v.Tags[0]) } } @@ -145,7 +145,7 @@ func TestConsul_ChangePorts(t *testing.T) { ctx := setupFake(t) require := require.New(t) - ctx.Task.Services[0].Checks = []*structs.ServiceCheck{ + ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{ { Name: "c1", Type: "tcp", @@ -170,13 +170,13 @@ func TestConsul_ChangePorts(t *testing.T) { }, } - require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task)) + require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload)) require.NoError(ctx.syncOnce()) require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul") for _, v := range ctx.FakeConsul.services { - require.Equal(ctx.Task.Services[0].Name, v.Name) - require.Equal(ctx.Task.Services[0].Tags, v.Tags) + require.Equal(ctx.Workload.Services[0].Name, v.Name) + require.Equal(ctx.Workload.Services[0].Tags, v.Tags) require.Equal(xPort, v.Port) } @@ -205,9 +205,9 @@ func TestConsul_ChangePorts(t *testing.T) { require.NotEmpty(origHTTPKey) // Now update the PortLabel on the Service and Check c3 - origTask := ctx.Task.Copy() - ctx.Task.Services[0].PortLabel = "y" - ctx.Task.Services[0].Checks = []*structs.ServiceCheck{ + origWorkload := ctx.Workload.Copy() + ctx.Workload.Services[0].PortLabel = "y" + ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{ { Name: "c1", Type: "tcp", @@ -232,13 +232,13 @@ func TestConsul_ChangePorts(t *testing.T) { }, } - require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task)) + require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload)) require.NoError(ctx.syncOnce()) require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul") for _, v := range ctx.FakeConsul.services { - require.Equal(ctx.Task.Services[0].Name, v.Name) - require.Equal(ctx.Task.Services[0].Tags, v.Tags) + require.Equal(ctx.Workload.Services[0].Name, v.Name) + require.Equal(ctx.Workload.Services[0].Tags, v.Tags) require.Equal(yPort, v.Port) } @@ -266,7 +266,7 @@ func TestConsul_ChangePorts(t *testing.T) { // properly syncs with Consul. func TestConsul_ChangeChecks(t *testing.T) { ctx := setupFake(t) - ctx.Task.Services[0].Checks = []*structs.ServiceCheck{ + ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{ { Name: "c1", Type: "tcp", @@ -279,7 +279,7 @@ func TestConsul_ChangeChecks(t *testing.T) { }, } - if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil { + if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } @@ -300,7 +300,7 @@ func TestConsul_ChangeChecks(t *testing.T) { // Query the allocs registrations and then again when we update. The IDs // should change - reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Task.AllocID) + reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Workload.AllocID) if err != nil { t.Fatalf("Looking up alloc registration failed: %v", err) } @@ -317,8 +317,8 @@ func TestConsul_ChangeChecks(t *testing.T) { origServiceKey := "" for k, v := range ctx.FakeConsul.services { origServiceKey = k - if v.Name != ctx.Task.Services[0].Name { - t.Errorf("expected Name=%q != %q", ctx.Task.Services[0].Name, v.Name) + if v.Name != ctx.Workload.Services[0].Name { + t.Errorf("expected Name=%q != %q", ctx.Workload.Services[0].Name, v.Name) } if v.Port != xPort { t.Errorf("expected Port x=%v but found: %v", xPort, v.Port) @@ -335,8 +335,8 @@ func TestConsul_ChangeChecks(t *testing.T) { } // Now add a check and modify the original - origTask := ctx.Task.Copy() - ctx.Task.Services[0].Checks = []*structs.ServiceCheck{ + origWorkload := ctx.Workload.Copy() + ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{ { Name: "c1", Type: "tcp", @@ -356,7 +356,7 @@ func TestConsul_ChangeChecks(t *testing.T) { PortLabel: "x", }, } - if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil { + if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } @@ -414,7 +414,7 @@ func TestConsul_ChangeChecks(t *testing.T) { } // Check again and ensure the IDs changed - reg2, err := ctx.ServiceClient.AllocRegistrations(ctx.Task.AllocID) + reg2, err := ctx.ServiceClient.AllocRegistrations(ctx.Workload.AllocID) if err != nil { t.Fatalf("Looking up alloc registration failed: %v", err) } @@ -449,8 +449,8 @@ func TestConsul_ChangeChecks(t *testing.T) { } // Alter a CheckRestart and make sure the watcher is updated but nothing else - origTask = ctx.Task.Copy() - ctx.Task.Services[0].Checks = []*structs.ServiceCheck{ + origWorkload = ctx.Workload.Copy() + ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{ { Name: "c1", Type: "tcp", @@ -470,7 +470,7 @@ func TestConsul_ChangeChecks(t *testing.T) { PortLabel: "x", }, } - if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil { + if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } if err := ctx.syncOnce(); err != nil { @@ -502,7 +502,7 @@ func TestConsul_RegServices(t *testing.T) { ctx := setupFake(t) // Add a check w/restarting - ctx.Task.Services[0].Checks = []*structs.ServiceCheck{ + ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{ { Name: "testcheck", Type: "tcp", @@ -513,7 +513,7 @@ func TestConsul_RegServices(t *testing.T) { }, } - if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil { + if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } @@ -526,11 +526,11 @@ func TestConsul_RegServices(t *testing.T) { } for _, v := range ctx.FakeConsul.services { - if v.Name != ctx.Task.Services[0].Name { - t.Errorf("expected Name=%q != %q", ctx.Task.Services[0].Name, v.Name) + if v.Name != ctx.Workload.Services[0].Name { + t.Errorf("expected Name=%q != %q", ctx.Workload.Services[0].Name, v.Name) } - if !reflect.DeepEqual(v.Tags, ctx.Task.Services[0].Tags) { - t.Errorf("expected Tags=%v != %v", ctx.Task.Services[0].Tags, v.Tags) + if !reflect.DeepEqual(v.Tags, ctx.Workload.Services[0].Tags) { + t.Errorf("expected Tags=%v != %v", ctx.Workload.Services[0].Tags, v.Tags) } if v.Port != xPort { t.Errorf("expected Port=%d != %d", xPort, v.Port) @@ -544,7 +544,7 @@ func TestConsul_RegServices(t *testing.T) { // Assert the check update is properly formed checkUpd := <-ctx.ServiceClient.checkWatcher.checkUpdateCh - if checkUpd.checkRestart.allocID != ctx.Task.AllocID { + if checkUpd.checkRestart.allocID != ctx.Workload.AllocID { t.Fatalf("expected check's allocid to be %q but found %q", "allocid", checkUpd.checkRestart.allocID) } if expected := 200 * time.Millisecond; checkUpd.checkRestart.timeLimit != expected { @@ -552,9 +552,9 @@ func TestConsul_RegServices(t *testing.T) { } // Make a change which will register a new service - ctx.Task.Services[0].Name = "taskname-service2" - ctx.Task.Services[0].Tags[0] = "tag3" - if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil { + ctx.Workload.Services[0].Name = "taskname-service2" + ctx.Workload.Services[0].Tags[0] = "tag3" + if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } @@ -575,7 +575,7 @@ func TestConsul_RegServices(t *testing.T) { t.Fatalf("expected 1 service but found %d:\n%#v", n, ctx.FakeConsul.services) } for _, v := range ctx.FakeConsul.services { - if reflect.DeepEqual(v.Tags, ctx.Task.Services[0].Tags) { + if reflect.DeepEqual(v.Tags, ctx.Workload.Services[0].Tags) { t.Errorf("expected Tags to differ, changes applied before sync()") } } @@ -589,22 +589,22 @@ func TestConsul_RegServices(t *testing.T) { } found := false for _, v := range ctx.FakeConsul.services { - if v.Name == ctx.Task.Services[0].Name { + if v.Name == ctx.Workload.Services[0].Name { if found { t.Fatalf("found new service name %q twice", v.Name) } found = true - if !reflect.DeepEqual(v.Tags, ctx.Task.Services[0].Tags) { - t.Errorf("expected Tags=%v != %v", ctx.Task.Services[0].Tags, v.Tags) + if !reflect.DeepEqual(v.Tags, ctx.Workload.Services[0].Tags) { + t.Errorf("expected Tags=%v != %v", ctx.Workload.Services[0].Tags, v.Tags) } } } if !found { - t.Fatalf("did not find new service %q", ctx.Task.Services[0].Name) + t.Fatalf("did not find new service %q", ctx.Workload.Services[0].Name) } // Remove the new task - ctx.ServiceClient.RemoveTask(ctx.Task) + ctx.ServiceClient.RemoveWorkload(ctx.Workload) if err := ctx.syncOnce(); err != nil { t.Fatalf("unexpected error syncing task: %v", err) } @@ -744,7 +744,7 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) { t.Parallel() ctx := setupFake(t) - ctx.Task.Services = []*structs.Service{ + ctx.Workload.Services = []*structs.Service{ { Name: "auto-advertise-x", PortLabel: "x", @@ -785,7 +785,7 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) { }, } - ctx.Task.DriverNetwork = &drivers.DriverNetwork{ + ctx.Workload.DriverNetwork = &drivers.DriverNetwork{ PortMap: map[string]int{ "x": 8888, "y": 9999, @@ -794,7 +794,7 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) { AutoAdvertise: true, } - if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil { + if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } @@ -808,14 +808,14 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) { for _, v := range ctx.FakeConsul.services { switch v.Name { - case ctx.Task.Services[0].Name: // x + case ctx.Workload.Services[0].Name: // x // Since DriverNetwork.AutoAdvertise=true, driver ports should be used - if v.Port != ctx.Task.DriverNetwork.PortMap["x"] { + if v.Port != ctx.Workload.DriverNetwork.PortMap["x"] { t.Errorf("expected service %s's port to be %d but found %d", - v.Name, ctx.Task.DriverNetwork.PortMap["x"], v.Port) + v.Name, ctx.Workload.DriverNetwork.PortMap["x"], v.Port) } // The order of checks in Consul is not guaranteed to - // be the same as their order in the Task definition, + // be the same as their order in the Workload definition, // so check in a loop if expected := 2; len(v.Checks) != expected { t.Errorf("expected %d checks but found %d", expected, len(v.Checks)) @@ -838,22 +838,22 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) { t.Errorf("unexpected check %#v on service %q", c, v.Name) } } - case ctx.Task.Services[1].Name: // y + case ctx.Workload.Services[1].Name: // y // Service should be container ip:port - if v.Address != ctx.Task.DriverNetwork.IP { + if v.Address != ctx.Workload.DriverNetwork.IP { t.Errorf("expected service %s's address to be %s but found %s", - v.Name, ctx.Task.DriverNetwork.IP, v.Address) + v.Name, ctx.Workload.DriverNetwork.IP, v.Address) } - if v.Port != ctx.Task.DriverNetwork.PortMap["y"] { + if v.Port != ctx.Workload.DriverNetwork.PortMap["y"] { t.Errorf("expected service %s's port to be %d but found %d", - v.Name, ctx.Task.DriverNetwork.PortMap["x"], v.Port) + v.Name, ctx.Workload.DriverNetwork.PortMap["x"], v.Port) } // Check should be host ip:port if v.Checks[0].TCP != ":1235" { // yPort t.Errorf("expected service %s check's port to be %d but found %s", v.Name, yPort, v.Checks[0].TCP) } - case ctx.Task.Services[2].Name: // y + host mode + case ctx.Workload.Services[2].Name: // y + host mode if v.Port != yPort { t.Errorf("expected service %s's port to be %d but found %d", v.Name, yPort, v.Port) @@ -871,7 +871,7 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) { t.Parallel() ctx := setupFake(t) - ctx.Task.Services = []*structs.Service{ + ctx.Workload.Services = []*structs.Service{ { Name: "auto-advertise-x", PortLabel: "x", @@ -889,7 +889,7 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) { }, } - ctx.Task.DriverNetwork = &drivers.DriverNetwork{ + ctx.Workload.DriverNetwork = &drivers.DriverNetwork{ PortMap: map[string]int{ "x": 8888, "y": 9999, @@ -898,7 +898,7 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) { AutoAdvertise: false, } - if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil { + if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } @@ -912,23 +912,23 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) { for _, v := range ctx.FakeConsul.services { switch v.Name { - case ctx.Task.Services[0].Name: // x + auto + case ctx.Workload.Services[0].Name: // x + auto // Since DriverNetwork.AutoAdvertise=false, host ports should be used if v.Port != xPort { t.Errorf("expected service %s's port to be %d but found %d", v.Name, xPort, v.Port) } - case ctx.Task.Services[1].Name: // y + driver mode + case ctx.Workload.Services[1].Name: // y + driver mode // Service should be container ip:port - if v.Address != ctx.Task.DriverNetwork.IP { + if v.Address != ctx.Workload.DriverNetwork.IP { t.Errorf("expected service %s's address to be %s but found %s", - v.Name, ctx.Task.DriverNetwork.IP, v.Address) + v.Name, ctx.Workload.DriverNetwork.IP, v.Address) } - if v.Port != ctx.Task.DriverNetwork.PortMap["y"] { + if v.Port != ctx.Workload.DriverNetwork.PortMap["y"] { t.Errorf("expected service %s's port to be %d but found %d", - v.Name, ctx.Task.DriverNetwork.PortMap["x"], v.Port) + v.Name, ctx.Workload.DriverNetwork.PortMap["x"], v.Port) } - case ctx.Task.Services[2].Name: // y + host mode + case ctx.Workload.Services[2].Name: // y + host mode if v.Port != yPort { t.Errorf("expected service %s's port to be %d but found %d", v.Name, yPort, v.Port) @@ -945,7 +945,7 @@ func TestConsul_DriverNetwork_Change(t *testing.T) { t.Parallel() ctx := setupFake(t) - ctx.Task.Services = []*structs.Service{ + ctx.Workload.Services = []*structs.Service{ { Name: "service-foo", PortLabel: "x", @@ -953,7 +953,7 @@ func TestConsul_DriverNetwork_Change(t *testing.T) { }, } - ctx.Task.DriverNetwork = &drivers.DriverNetwork{ + ctx.Workload.DriverNetwork = &drivers.DriverNetwork{ PortMap: map[string]int{ "x": 8888, "y": 9999, @@ -973,7 +973,7 @@ func TestConsul_DriverNetwork_Change(t *testing.T) { for _, v := range ctx.FakeConsul.services { switch v.Name { - case ctx.Task.Services[0].Name: + case ctx.Workload.Services[0].Name: if v.Port != port { t.Errorf("expected service %s's port to be %d but found %d", v.Name, port, v.Port) @@ -985,31 +985,31 @@ func TestConsul_DriverNetwork_Change(t *testing.T) { } // Initial service should advertise host port x - if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil { + if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil { t.Fatalf("unexpected error registering task: %v", err) } syncAndAssertPort(xPort) - // UpdateTask to use Host (shouldn't change anything) - origTask := ctx.Task.Copy() - ctx.Task.Services[0].AddressMode = structs.AddressModeHost + // UpdateWorkload to use Host (shouldn't change anything) + origWorkload := ctx.Workload.Copy() + ctx.Workload.Services[0].AddressMode = structs.AddressModeHost - if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil { + if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil { t.Fatalf("unexpected error updating task: %v", err) } syncAndAssertPort(xPort) - // UpdateTask to use Driver (*should* change IP and port) - origTask = ctx.Task.Copy() - ctx.Task.Services[0].AddressMode = structs.AddressModeDriver + // UpdateWorkload to use Driver (*should* change IP and port) + origWorkload = ctx.Workload.Copy() + ctx.Workload.Services[0].AddressMode = structs.AddressModeDriver - if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil { + if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil { t.Fatalf("unexpected error updating task: %v", err) } - syncAndAssertPort(ctx.Task.DriverNetwork.PortMap["x"]) + syncAndAssertPort(ctx.Workload.DriverNetwork.PortMap["x"]) } // TestConsul_CanaryTags asserts CanaryTags are used when Canary=true @@ -1019,10 +1019,10 @@ func TestConsul_CanaryTags(t *testing.T) { ctx := setupFake(t) canaryTags := []string{"tag1", "canary"} - ctx.Task.Canary = true - ctx.Task.Services[0].CanaryTags = canaryTags + ctx.Workload.Canary = true + ctx.Workload.Services[0].CanaryTags = canaryTags - require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task)) + require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 1) for _, service := range ctx.FakeConsul.services { @@ -1030,16 +1030,16 @@ func TestConsul_CanaryTags(t *testing.T) { } // Disable canary and assert tags are not the canary tags - origTask := ctx.Task.Copy() - ctx.Task.Canary = false - require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task)) + origWorkload := ctx.Workload.Copy() + ctx.Workload.Canary = false + require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 1) for _, service := range ctx.FakeConsul.services { require.NotEqual(canaryTags, service.Tags) } - ctx.ServiceClient.RemoveTask(ctx.Task) + ctx.ServiceClient.RemoveWorkload(ctx.Workload) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 0) } @@ -1052,10 +1052,10 @@ func TestConsul_CanaryTags_NoTags(t *testing.T) { ctx := setupFake(t) tags := []string{"tag1", "foo"} - ctx.Task.Canary = true - ctx.Task.Services[0].Tags = tags + ctx.Workload.Canary = true + ctx.Workload.Services[0].Tags = tags - require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task)) + require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 1) for _, service := range ctx.FakeConsul.services { @@ -1063,16 +1063,16 @@ func TestConsul_CanaryTags_NoTags(t *testing.T) { } // Disable canary and assert tags dont change - origTask := ctx.Task.Copy() - ctx.Task.Canary = false - require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task)) + origWorkload := ctx.Workload.Copy() + ctx.Workload.Canary = false + require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 1) for _, service := range ctx.FakeConsul.services { require.Equal(tags, service.Tags) } - ctx.ServiceClient.RemoveTask(ctx.Task) + ctx.ServiceClient.RemoveWorkload(ctx.Workload) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 0) } @@ -1402,7 +1402,7 @@ func TestConsul_ServiceName_Duplicates(t *testing.T) { ctx := setupFake(t) require := require.New(t) - ctx.Task.Services = []*structs.Service{ + ctx.Workload.Services = []*structs.Service{ { Name: "best-service", PortLabel: "x", @@ -1439,20 +1439,20 @@ func TestConsul_ServiceName_Duplicates(t *testing.T) { }, } - require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task)) + require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 3) for _, v := range ctx.FakeConsul.services { - if v.Name == ctx.Task.Services[0].Name && v.Port == xPort { - require.ElementsMatch(v.Tags, ctx.Task.Services[0].Tags) + if v.Name == ctx.Workload.Services[0].Name && v.Port == xPort { + require.ElementsMatch(v.Tags, ctx.Workload.Services[0].Tags) require.Len(v.Checks, 1) - } else if v.Name == ctx.Task.Services[1].Name && v.Port == yPort { - require.ElementsMatch(v.Tags, ctx.Task.Services[1].Tags) + } else if v.Name == ctx.Workload.Services[1].Name && v.Port == yPort { + require.ElementsMatch(v.Tags, ctx.Workload.Services[1].Tags) require.Len(v.Checks, 1) - } else if v.Name == ctx.Task.Services[2].Name { + } else if v.Name == ctx.Workload.Services[2].Name { require.Len(v.Checks, 0) } } @@ -1467,8 +1467,8 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) { ctx.ServiceClient.deregisterProbationExpiry = time.Now().Add(-1 * time.Hour) - remainingTask := testTask() - remainingTask.Services = []*structs.Service{ + remainingWorkload := testWorkload() + remainingWorkload.Services = []*structs.Service{ { Name: "remaining-service", PortLabel: "x", @@ -1482,16 +1482,16 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) { }, }, } - remainingTaskServiceID := MakeTaskServiceID(remainingTask.AllocID, - remainingTask.Name, remainingTask.Services[0]) + remainingWorkloadServiceID := MakeAllocServiceID(remainingWorkload.AllocID, + remainingWorkload.Name(), remainingWorkload.Services[0]) - require.NoError(ctx.ServiceClient.RegisterTask(remainingTask)) + require.NoError(ctx.ServiceClient.RegisterWorkload(remainingWorkload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 1) require.Len(ctx.FakeConsul.checks, 1) - explicitlyRemovedTask := testTask() - explicitlyRemovedTask.Services = []*structs.Service{ + explicitlyRemovedWorkload := testWorkload() + explicitlyRemovedWorkload.Services = []*structs.Service{ { Name: "explicitly-removed-service", PortLabel: "y", @@ -1505,18 +1505,18 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) { }, }, } - explicitlyRemovedTaskServiceID := MakeTaskServiceID(explicitlyRemovedTask.AllocID, - explicitlyRemovedTask.Name, explicitlyRemovedTask.Services[0]) + explicitlyRemovedWorkloadServiceID := MakeAllocServiceID(explicitlyRemovedWorkload.AllocID, + explicitlyRemovedWorkload.Name(), explicitlyRemovedWorkload.Services[0]) - require.NoError(ctx.ServiceClient.RegisterTask(explicitlyRemovedTask)) + require.NoError(ctx.ServiceClient.RegisterWorkload(explicitlyRemovedWorkload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 2) require.Len(ctx.FakeConsul.checks, 2) // we register a task through nomad API then remove it out of band - outofbandTask := testTask() - outofbandTask.Services = []*structs.Service{ + outofbandWorkload := testWorkload() + outofbandWorkload.Services = []*structs.Service{ { Name: "unknown-service", PortLabel: "x", @@ -1530,39 +1530,39 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) { }, }, } - outofbandTaskServiceID := MakeTaskServiceID(outofbandTask.AllocID, - outofbandTask.Name, outofbandTask.Services[0]) + outofbandWorkloadServiceID := MakeAllocServiceID(outofbandWorkload.AllocID, + outofbandWorkload.Name(), outofbandWorkload.Services[0]) - require.NoError(ctx.ServiceClient.RegisterTask(outofbandTask)) + require.NoError(ctx.ServiceClient.RegisterWorkload(outofbandWorkload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 3) - // remove outofbandTask from local services so it appears unknown to client + // remove outofbandWorkload from local services so it appears unknown to client require.Len(ctx.ServiceClient.services, 3) require.Len(ctx.ServiceClient.checks, 3) - delete(ctx.ServiceClient.services, outofbandTaskServiceID) - delete(ctx.ServiceClient.checks, MakeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0])) + delete(ctx.ServiceClient.services, outofbandWorkloadServiceID) + delete(ctx.ServiceClient.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0])) require.Len(ctx.ServiceClient.services, 2) require.Len(ctx.ServiceClient.checks, 2) - // Sync and ensure that explicitly removed service as well as outofbandTask were removed + // Sync and ensure that explicitly removed service as well as outofbandWorkload were removed - ctx.ServiceClient.RemoveTask(explicitlyRemovedTask) + ctx.ServiceClient.RemoveWorkload(explicitlyRemovedWorkload) require.NoError(ctx.syncOnce()) require.NoError(ctx.ServiceClient.sync()) require.Len(ctx.FakeConsul.services, 1) require.Len(ctx.FakeConsul.checks, 1) - require.Contains(ctx.FakeConsul.services, remainingTaskServiceID) - require.NotContains(ctx.FakeConsul.services, outofbandTaskServiceID) - require.NotContains(ctx.FakeConsul.services, explicitlyRemovedTaskServiceID) + require.Contains(ctx.FakeConsul.services, remainingWorkloadServiceID) + require.NotContains(ctx.FakeConsul.services, outofbandWorkloadServiceID) + require.NotContains(ctx.FakeConsul.services, explicitlyRemovedWorkloadServiceID) - require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingTaskServiceID, remainingTask.Services[0].Checks[0])) - require.NotContains(ctx.FakeConsul.checks, MakeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0])) - require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedTaskServiceID, explicitlyRemovedTask.Services[0].Checks[0])) + require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingWorkloadServiceID, remainingWorkload.Services[0].Checks[0])) + require.NotContains(ctx.FakeConsul.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0])) + require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedWorkloadServiceID, explicitlyRemovedWorkload.Services[0].Checks[0])) } // TestConsul_ServiceDeregistration_InProbation asserts that during initialization @@ -1576,8 +1576,8 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) { ctx.ServiceClient.deregisterProbationExpiry = time.Now().Add(1 * time.Hour) - remainingTask := testTask() - remainingTask.Services = []*structs.Service{ + remainingWorkload := testWorkload() + remainingWorkload.Services = []*structs.Service{ { Name: "remaining-service", PortLabel: "x", @@ -1591,16 +1591,16 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) { }, }, } - remainingTaskServiceID := MakeTaskServiceID(remainingTask.AllocID, - remainingTask.Name, remainingTask.Services[0]) + remainingWorkloadServiceID := MakeAllocServiceID(remainingWorkload.AllocID, + remainingWorkload.Name(), remainingWorkload.Services[0]) - require.NoError(ctx.ServiceClient.RegisterTask(remainingTask)) + require.NoError(ctx.ServiceClient.RegisterWorkload(remainingWorkload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 1) require.Len(ctx.FakeConsul.checks, 1) - explicitlyRemovedTask := testTask() - explicitlyRemovedTask.Services = []*structs.Service{ + explicitlyRemovedWorkload := testWorkload() + explicitlyRemovedWorkload.Services = []*structs.Service{ { Name: "explicitly-removed-service", PortLabel: "y", @@ -1614,18 +1614,18 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) { }, }, } - explicitlyRemovedTaskServiceID := MakeTaskServiceID(explicitlyRemovedTask.AllocID, - explicitlyRemovedTask.Name, explicitlyRemovedTask.Services[0]) + explicitlyRemovedWorkloadServiceID := MakeAllocServiceID(explicitlyRemovedWorkload.AllocID, + explicitlyRemovedWorkload.Name(), explicitlyRemovedWorkload.Services[0]) - require.NoError(ctx.ServiceClient.RegisterTask(explicitlyRemovedTask)) + require.NoError(ctx.ServiceClient.RegisterWorkload(explicitlyRemovedWorkload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 2) require.Len(ctx.FakeConsul.checks, 2) // we register a task through nomad API then remove it out of band - outofbandTask := testTask() - outofbandTask.Services = []*structs.Service{ + outofbandWorkload := testWorkload() + outofbandWorkload.Services = []*structs.Service{ { Name: "unknown-service", PortLabel: "x", @@ -1639,39 +1639,39 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) { }, }, } - outofbandTaskServiceID := MakeTaskServiceID(outofbandTask.AllocID, - outofbandTask.Name, outofbandTask.Services[0]) + outofbandWorkloadServiceID := MakeAllocServiceID(outofbandWorkload.AllocID, + outofbandWorkload.Name(), outofbandWorkload.Services[0]) - require.NoError(ctx.ServiceClient.RegisterTask(outofbandTask)) + require.NoError(ctx.ServiceClient.RegisterWorkload(outofbandWorkload)) require.NoError(ctx.syncOnce()) require.Len(ctx.FakeConsul.services, 3) - // remove outofbandTask from local services so it appears unknown to client + // remove outofbandWorkload from local services so it appears unknown to client require.Len(ctx.ServiceClient.services, 3) require.Len(ctx.ServiceClient.checks, 3) - delete(ctx.ServiceClient.services, outofbandTaskServiceID) - delete(ctx.ServiceClient.checks, MakeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0])) + delete(ctx.ServiceClient.services, outofbandWorkloadServiceID) + delete(ctx.ServiceClient.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0])) require.Len(ctx.ServiceClient.services, 2) require.Len(ctx.ServiceClient.checks, 2) - // Sync and ensure that explicitly removed service was removed, but outofbandTask remains + // Sync and ensure that explicitly removed service was removed, but outofbandWorkload remains - ctx.ServiceClient.RemoveTask(explicitlyRemovedTask) + ctx.ServiceClient.RemoveWorkload(explicitlyRemovedWorkload) require.NoError(ctx.syncOnce()) require.NoError(ctx.ServiceClient.sync()) require.Len(ctx.FakeConsul.services, 2) require.Len(ctx.FakeConsul.checks, 2) - require.Contains(ctx.FakeConsul.services, remainingTaskServiceID) - require.Contains(ctx.FakeConsul.services, outofbandTaskServiceID) - require.NotContains(ctx.FakeConsul.services, explicitlyRemovedTaskServiceID) + require.Contains(ctx.FakeConsul.services, remainingWorkloadServiceID) + require.Contains(ctx.FakeConsul.services, outofbandWorkloadServiceID) + require.NotContains(ctx.FakeConsul.services, explicitlyRemovedWorkloadServiceID) - require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingTaskServiceID, remainingTask.Services[0].Checks[0])) - require.Contains(ctx.FakeConsul.checks, MakeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0])) - require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedTaskServiceID, explicitlyRemovedTask.Services[0].Checks[0])) + require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingWorkloadServiceID, remainingWorkload.Services[0].Checks[0])) + require.Contains(ctx.FakeConsul.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0])) + require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedWorkloadServiceID, explicitlyRemovedWorkload.Services[0].Checks[0])) // after probation, outofband services and checks are removed ctx.ServiceClient.deregisterProbationExpiry = time.Now().Add(-1 * time.Hour) @@ -1680,12 +1680,12 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) { require.Len(ctx.FakeConsul.services, 1) require.Len(ctx.FakeConsul.checks, 1) - require.Contains(ctx.FakeConsul.services, remainingTaskServiceID) - require.NotContains(ctx.FakeConsul.services, outofbandTaskServiceID) - require.NotContains(ctx.FakeConsul.services, explicitlyRemovedTaskServiceID) + require.Contains(ctx.FakeConsul.services, remainingWorkloadServiceID) + require.NotContains(ctx.FakeConsul.services, outofbandWorkloadServiceID) + require.NotContains(ctx.FakeConsul.services, explicitlyRemovedWorkloadServiceID) - require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingTaskServiceID, remainingTask.Services[0].Checks[0])) - require.NotContains(ctx.FakeConsul.checks, MakeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0])) - require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedTaskServiceID, explicitlyRemovedTask.Services[0].Checks[0])) + require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingWorkloadServiceID, remainingWorkload.Services[0].Checks[0])) + require.NotContains(ctx.FakeConsul.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0])) + require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedWorkloadServiceID, explicitlyRemovedWorkload.Services[0].Checks[0])) } diff --git a/nomad/job_endpoint_test.go b/nomad/job_endpoint_test.go index 8f1380d2544..5367311d324 100644 --- a/nomad/job_endpoint_test.go +++ b/nomad/job_endpoint_test.go @@ -4455,6 +4455,7 @@ func TestJobEndpoint_ValidateJob_ConsulConnect(t *testing.T) { tg := j.TaskGroups[0] tg.Services = tgServices + tg.Networks = nil err := validateJob(j) require.Error(t, err) diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 585adec36f4..ba806bc2cea 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -3629,15 +3629,16 @@ func (j *Job) LookupTaskGroup(name string) *TaskGroup { func (j *Job) CombinedTaskMeta(groupName, taskName string) map[string]string { group := j.LookupTaskGroup(groupName) if group == nil { - return nil + return j.Meta } + var meta map[string]string + task := group.LookupTask(taskName) - if task == nil { - return nil + if task != nil { + meta = helper.CopyMapStringString(task.Meta) } - meta := helper.CopyMapStringString(task.Meta) if meta == nil { meta = make(map[string]string, len(group.Meta)+len(j.Meta)) } diff --git a/nomad/structs/structs_test.go b/nomad/structs/structs_test.go index e067ad89b29..6a1c4fc4d3b 100644 --- a/nomad/structs/structs_test.go +++ b/nomad/structs/structs_test.go @@ -2565,6 +2565,51 @@ func TestJob_ExpandServiceNames(t *testing.T) { } +func TestJob_CombinedTaskMeta(t *testing.T) { + j := &Job{ + Meta: map[string]string{ + "job_test": "job", + "group_test": "job", + "task_test": "job", + }, + TaskGroups: []*TaskGroup{ + { + Name: "group", + Meta: map[string]string{ + "group_test": "group", + "task_test": "group", + }, + Tasks: []*Task{ + { + Name: "task", + Meta: map[string]string{ + "task_test": "task", + }, + }, + }, + }, + }, + } + + require := require.New(t) + require.EqualValues(map[string]string{ + "job_test": "job", + "group_test": "group", + "task_test": "task", + }, j.CombinedTaskMeta("group", "task")) + require.EqualValues(map[string]string{ + "job_test": "job", + "group_test": "group", + "task_test": "group", + }, j.CombinedTaskMeta("group", "")) + require.EqualValues(map[string]string{ + "job_test": "job", + "group_test": "job", + "task_test": "job", + }, j.CombinedTaskMeta("", "task")) + +} + func TestPeriodicConfig_EnabledInvalid(t *testing.T) { // Create a config that is enabled but with no interval specified. p := &PeriodicConfig{Enabled: true} From a15bdc130dc44660400a310c77eeaa04022e7455 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 15 Nov 2019 09:31:34 -0500 Subject: [PATCH 035/241] Add tests for orphaned processes --- drivers/exec/driver_test.go | 101 ++++++++++++++++++++++++++ drivers/rawexec/driver_unix_test.go | 107 ++++++++++++++++++++++++++++ 2 files changed, 208 insertions(+) diff --git a/drivers/exec/driver_test.go b/drivers/exec/driver_test.go index e0680eb4985..2959248217b 100644 --- a/drivers/exec/driver_test.go +++ b/drivers/exec/driver_test.go @@ -7,9 +7,12 @@ import ( "io/ioutil" "os" "path/filepath" + "regexp" "runtime" + "strconv" "strings" "sync" + "syscall" "testing" "time" @@ -251,6 +254,104 @@ func TestExecDriver_StartWaitRecover(t *testing.T) { require.NoError(harness.DestroyTask(task.ID, true)) } +func TestExecDriver_DestroyKillsAll(t *testing.T) { + t.Parallel() + require := require.New(t) + ctestutils.ExecCompatible(t) + + d := NewExecDriver(testlog.HCLogger(t)) + harness := dtestutil.NewDriverHarness(t, d) + defer harness.Kill() + + task := &drivers.TaskConfig{ + ID: uuid.Generate(), + Name: "test", + } + + cleanup := harness.MkAllocDir(task, true) + defer cleanup() + + taskConfig := map[string]interface{}{} + taskConfig["command"] = "/bin/sh" + taskConfig["args"] = []string{"-c", fmt.Sprintf(`sleep 3600 & echo "SLEEP_PID=$!"`)} + + require.NoError(task.EncodeConcreteDriverConfig(&taskConfig)) + + handle, _, err := harness.StartTask(task) + require.NoError(err) + defer harness.DestroyTask(task.ID, true) + + ch, err := harness.WaitTask(context.Background(), handle.Config.ID) + require.NoError(err) + + select { + case result := <-ch: + require.True(result.Successful(), "command failed: %#v", result) + case <-time.After(10 * time.Second): + require.Fail("timeout waiting for task to shutdown") + } + + sleepPid := 0 + + // Ensure that the task is marked as dead, but account + // for WaitTask() closing channel before internal state is updated + testutil.WaitForResult(func() (bool, error) { + stdout, err := ioutil.ReadFile(filepath.Join(task.TaskDir().LogDir, "test.stdout.0")) + if err != nil { + return false, fmt.Errorf("failed to output pid file: %v", err) + } + + pidMatch := regexp.MustCompile(`SLEEP_PID=(\d+)`).FindStringSubmatch(string(stdout)) + if len(pidMatch) != 2 { + return false, fmt.Errorf("failed to find pid in %s", string(stdout)) + } + + pid, err := strconv.Atoi(pidMatch[1]) + if err != nil { + return false, fmt.Errorf("pid parts aren't int: %s", pidMatch[1]) + } + + sleepPid = pid + return true, nil + }, func(err error) { + require.NoError(err) + }) + + // isProcessRunning returns an error if process is not running + isProcessRunning := func(pid int) error { + process, err := os.FindProcess(pid) + if err != nil { + return fmt.Errorf("failed to find process: %s", err) + } + + err = process.Signal(syscall.Signal(0)) + if err != nil { + return fmt.Errorf("failed to signal process: %s", err) + } + + return nil + } + + require.NoError(isProcessRunning(sleepPid)) + + require.NoError(harness.DestroyTask(task.ID, true)) + + testutil.WaitForResult(func() (bool, error) { + err := isProcessRunning(sleepPid) + if err == nil { + return false, fmt.Errorf("child process is still running") + } + + if !strings.Contains(err.Error(), "failed to signal process") { + return false, fmt.Errorf("unexpected error: %v", err) + } + + return true, nil + }, func(err error) { + require.NoError(err) + }) +} + func TestExecDriver_Stats(t *testing.T) { t.Parallel() require := require.New(t) diff --git a/drivers/rawexec/driver_unix_test.go b/drivers/rawexec/driver_unix_test.go index 8845d75d872..1ffcbda55bc 100644 --- a/drivers/rawexec/driver_unix_test.go +++ b/drivers/rawexec/driver_unix_test.go @@ -4,7 +4,11 @@ package rawexec import ( "context" + "os" + "regexp" "runtime" + "strconv" + "syscall" "testing" "fmt" @@ -196,6 +200,109 @@ func TestRawExecDriver_StartWaitStop(t *testing.T) { require.NoError(harness.DestroyTask(task.ID, true)) } +func TestRawExecDriver_DestroyKillsAll(t *testing.T) { + t.Parallel() + + // This only works reliably with cgroup PID tracking, happens in linux only + if runtime.GOOS != "linux" { + t.Skip("Linux only test") + } + + require := require.New(t) + + d := newEnabledRawExecDriver(t) + harness := dtestutil.NewDriverHarness(t, d) + defer harness.Kill() + + task := &drivers.TaskConfig{ + ID: uuid.Generate(), + Name: "test", + } + + cleanup := harness.MkAllocDir(task, true) + defer cleanup() + + taskConfig := map[string]interface{}{} + taskConfig["command"] = "/bin/sh" + taskConfig["args"] = []string{"-c", fmt.Sprintf(`sleep 3600 & echo "SLEEP_PID=$!"`)} + + require.NoError(task.EncodeConcreteDriverConfig(&taskConfig)) + + handle, _, err := harness.StartTask(task) + require.NoError(err) + defer harness.DestroyTask(task.ID, true) + + ch, err := harness.WaitTask(context.Background(), handle.Config.ID) + require.NoError(err) + + select { + case result := <-ch: + require.True(result.Successful(), "command failed: %#v", result) + case <-time.After(10 * time.Second): + require.Fail("timeout waiting for task to shutdown") + } + + sleepPid := 0 + + // Ensure that the task is marked as dead, but account + // for WaitTask() closing channel before internal state is updated + testutil.WaitForResult(func() (bool, error) { + stdout, err := ioutil.ReadFile(filepath.Join(task.TaskDir().LogDir, "test.stdout.0")) + if err != nil { + return false, fmt.Errorf("failed to output pid file: %v", err) + } + + pidMatch := regexp.MustCompile(`SLEEP_PID=(\d+)`).FindStringSubmatch(string(stdout)) + if len(pidMatch) != 2 { + return false, fmt.Errorf("failed to find pid in %s", string(stdout)) + } + + pid, err := strconv.Atoi(pidMatch[1]) + if err != nil { + return false, fmt.Errorf("pid parts aren't int: %s", pidMatch[1]) + } + + sleepPid = pid + return true, nil + }, func(err error) { + require.NoError(err) + }) + + // isProcessRunning returns an error if process is not running + isProcessRunning := func(pid int) error { + process, err := os.FindProcess(pid) + if err != nil { + return fmt.Errorf("failed to find process: %s", err) + } + + err = process.Signal(syscall.Signal(0)) + if err != nil { + return fmt.Errorf("failed to signal process: %s", err) + } + + return nil + } + + require.NoError(isProcessRunning(sleepPid)) + + require.NoError(harness.DestroyTask(task.ID, true)) + + testutil.WaitForResult(func() (bool, error) { + err := isProcessRunning(sleepPid) + if err == nil { + return false, fmt.Errorf("child process is still running") + } + + if !strings.Contains(err.Error(), "failed to signal process") { + return false, fmt.Errorf("unexpected error: %v", err) + } + + return true, nil + }, func(err error) { + require.NoError(err) + }) +} + func TestRawExec_ExecTaskStreaming(t *testing.T) { t.Parallel() if runtime.GOOS == "darwin" { From 6878134a7fae2bf01b092db070373d285312e02f Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 15 Nov 2019 09:33:46 -0500 Subject: [PATCH 036/241] always destroy --- drivers/exec/driver.go | 6 ++---- drivers/java/driver.go | 6 ++---- drivers/qemu/driver.go | 6 ++---- drivers/rawexec/driver.go | 6 ++---- drivers/rkt/driver.go | 6 ++---- 5 files changed, 10 insertions(+), 20 deletions(-) diff --git a/drivers/exec/driver.go b/drivers/exec/driver.go index 87974ce06ff..6611ec472ce 100644 --- a/drivers/exec/driver.go +++ b/drivers/exec/driver.go @@ -458,10 +458,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error { } if !handle.pluginClient.Exited() { - if handle.IsRunning() { - if err := handle.exec.Shutdown("", 0); err != nil { - handle.logger.Error("destroying executor failed", "err", err) - } + if err := handle.exec.Shutdown("", 0); err != nil { + handle.logger.Error("destroying executor failed", "err", err) } handle.pluginClient.Kill() diff --git a/drivers/java/driver.go b/drivers/java/driver.go index 4d10f0e66b3..ac35aa82d72 100644 --- a/drivers/java/driver.go +++ b/drivers/java/driver.go @@ -486,10 +486,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error { } if !handle.pluginClient.Exited() { - if handle.IsRunning() { - if err := handle.exec.Shutdown("", 0); err != nil { - handle.logger.Error("destroying executor failed", "err", err) - } + if err := handle.exec.Shutdown("", 0); err != nil { + handle.logger.Error("destroying executor failed", "err", err) } handle.pluginClient.Kill() diff --git a/drivers/qemu/driver.go b/drivers/qemu/driver.go index 8cbe7d9f8f9..156dd1104b7 100644 --- a/drivers/qemu/driver.go +++ b/drivers/qemu/driver.go @@ -534,10 +534,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error { } if !handle.pluginClient.Exited() { - if handle.IsRunning() { - if err := handle.exec.Shutdown("", 0); err != nil { - handle.logger.Error("destroying executor failed", "err", err) - } + if err := handle.exec.Shutdown("", 0); err != nil { + handle.logger.Error("destroying executor failed", "err", err) } handle.pluginClient.Kill() diff --git a/drivers/rawexec/driver.go b/drivers/rawexec/driver.go index a69932bb5ae..9e754c5b383 100644 --- a/drivers/rawexec/driver.go +++ b/drivers/rawexec/driver.go @@ -460,10 +460,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error { } if !handle.pluginClient.Exited() { - if handle.IsRunning() { - if err := handle.exec.Shutdown("", 0); err != nil { - handle.logger.Error("destroying executor failed", "err", err) - } + if err := handle.exec.Shutdown("", 0); err != nil { + handle.logger.Error("destroying executor failed", "err", err) } handle.pluginClient.Kill() diff --git a/drivers/rkt/driver.go b/drivers/rkt/driver.go index b4145523881..238dcfc7739 100644 --- a/drivers/rkt/driver.go +++ b/drivers/rkt/driver.go @@ -810,10 +810,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error { } if !handle.pluginClient.Exited() { - if handle.IsRunning() { - if err := handle.exec.Shutdown("", 0); err != nil { - handle.logger.Error("destroying executor failed", "err", err) - } + if err := handle.exec.Shutdown("", 0); err != nil { + handle.logger.Error("destroying executor failed", "err", err) } handle.pluginClient.Kill() From 1607a203a8bf955f74692db4fa3b004ebcc129d9 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Thu, 14 Nov 2019 15:34:38 -0500 Subject: [PATCH 037/241] Check for changes to affinity and constraints Adds checks for affinity and constraint changes when determining if we should update inplace. refactor to check all levels at once check for spread changes when checking inplace update --- scheduler/util.go | 102 +++++++++++++++++++++ scheduler/util_test.go | 202 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 304 insertions(+) diff --git a/scheduler/util.go b/scheduler/util.go index 37a5b729db4..1046215a2e9 100644 --- a/scheduler/util.go +++ b/scheduler/util.go @@ -356,6 +356,21 @@ func tasksUpdated(jobA, jobB *structs.Job, taskGroup string) bool { return true } + // Check Affinities + if affinitiesUpdated(jobA, jobB, taskGroup) { + return true + } + + // Check Constraints + if constraintsUpdated(jobA, jobB, taskGroup) { + return true + } + + // Check Spreads + if spreadsUpdated(jobA, jobB, taskGroup) { + return true + } + // Check each task for _, at := range a.Tasks { bt := b.LookupTask(at.Name) @@ -442,6 +457,93 @@ func networkPortMap(n *structs.NetworkResource) map[string]int { return m } +func affinitiesUpdated(jobA, jobB *structs.Job, taskGroup string) bool { + var aAffinities []*structs.Affinity + var bAffinities []*structs.Affinity + + tgA := jobA.LookupTaskGroup(taskGroup) + tgB := jobB.LookupTaskGroup(taskGroup) + + // Append jobA job and task group level affinities + aAffinities = append(aAffinities, jobA.Affinities...) + aAffinities = append(aAffinities, tgA.Affinities...) + + // Append jobB job and task group level affinities + bAffinities = append(bAffinities, jobB.Affinities...) + bAffinities = append(bAffinities, tgB.Affinities...) + + // append task affinities + for _, task := range tgA.Tasks { + aAffinities = append(aAffinities, task.Affinities...) + } + + for _, task := range tgB.Tasks { + bAffinities = append(bAffinities, task.Affinities...) + } + + // Check for equality + if len(aAffinities) != len(bAffinities) { + return true + } + + return !reflect.DeepEqual(aAffinities, bAffinities) +} + +func constraintsUpdated(jobA, jobB *structs.Job, taskGroup string) bool { + var aConstraints []*structs.Constraint + var bConstraints []*structs.Constraint + + tgA := jobA.LookupTaskGroup(taskGroup) + tgB := jobB.LookupTaskGroup(taskGroup) + + // Append jobA job and task group level constraints + aConstraints = append(aConstraints, jobA.Constraints...) + aConstraints = append(aConstraints, tgA.Constraints...) + + // Append jobB job and task group level constraints + bConstraints = append(bConstraints, jobB.Constraints...) + bConstraints = append(bConstraints, tgB.Constraints...) + + // Append task constraints + for _, task := range tgA.Tasks { + aConstraints = append(aConstraints, task.Constraints...) + } + + for _, task := range tgB.Tasks { + bConstraints = append(bConstraints, task.Constraints...) + } + + // Check for equality + if len(aConstraints) != len(bConstraints) { + return true + } + + return !reflect.DeepEqual(aConstraints, bConstraints) +} + +func spreadsUpdated(jobA, jobB *structs.Job, taskGroup string) bool { + var aSpreads []*structs.Spread + var bSpreads []*structs.Spread + + tgA := jobA.LookupTaskGroup(taskGroup) + tgB := jobB.LookupTaskGroup(taskGroup) + + // append jobA and task group level spreads + aSpreads = append(aSpreads, jobA.Spreads...) + aSpreads = append(aSpreads, tgA.Spreads...) + + // append jobB and task group level spreads + bSpreads = append(bSpreads, jobB.Spreads...) + bSpreads = append(bSpreads, tgB.Spreads...) + + // Check for equality + if len(aSpreads) != len(bSpreads) { + return true + } + + return !reflect.DeepEqual(aSpreads, bSpreads) +} + // setStatus is used to update the status of the evaluation func setStatus(logger log.Logger, planner Planner, eval, nextEval, spawnedBlocked *structs.Evaluation, diff --git a/scheduler/util_test.go b/scheduler/util_test.go index 4983e592b63..f6d6d56ca05 100644 --- a/scheduler/util_test.go +++ b/scheduler/util_test.go @@ -384,6 +384,208 @@ func TestShuffleNodes(t *testing.T) { require.False(t, reflect.DeepEqual(nodes, orig)) } +func TestTaskUpdatedAffinity(t *testing.T) { + j1 := mock.Job() + j2 := mock.Job() + name := j1.TaskGroups[0].Name + + require.False(t, tasksUpdated(j1, j2, name)) + + // TaskGroup Affinity + j2.TaskGroups[0].Affinities = []*structs.Affinity{ + { + LTarget: "node.datacenter", + RTarget: "dc1", + Operand: "=", + Weight: 100, + }, + } + require.True(t, tasksUpdated(j1, j2, name)) + + // TaskGroup Task Affinity + j3 := mock.Job() + j3.TaskGroups[0].Tasks[0].Affinities = []*structs.Affinity{ + { + LTarget: "node.datacenter", + RTarget: "dc1", + Operand: "=", + Weight: 100, + }, + } + + require.True(t, tasksUpdated(j1, j3, name)) + + j4 := mock.Job() + j4.TaskGroups[0].Tasks[0].Affinities = []*structs.Affinity{ + { + LTarget: "node.datacenter", + RTarget: "dc1", + Operand: "=", + Weight: 100, + }, + } + + require.True(t, tasksUpdated(j1, j4, name)) + + // check different level of same constraint + j5 := mock.Job() + j5.Affinities = []*structs.Affinity{ + { + LTarget: "node.datacenter", + RTarget: "dc1", + Operand: "=", + Weight: 100, + }, + } + + j6 := mock.Job() + j6.Affinities = make([]*structs.Affinity, 0) + j6.TaskGroups[0].Affinities = []*structs.Affinity{ + { + LTarget: "node.datacenter", + RTarget: "dc1", + Operand: "=", + Weight: 100, + }, + } + + require.False(t, tasksUpdated(j5, j6, name)) +} + +func TestTaskUpdated_Constraint(t *testing.T) { + j1 := mock.Job() + j1.Constraints = make([]*structs.Constraint, 0) + + j2 := mock.Job() + j2.Constraints = make([]*structs.Constraint, 0) + + name := j1.TaskGroups[0].Name + require.False(t, tasksUpdated(j1, j2, name)) + + // TaskGroup Constraint + j2.TaskGroups[0].Constraints = []*structs.Constraint{ + { + LTarget: "kernel", + RTarget: "linux", + Operand: "=", + }, + } + + // TaskGroup Task Constraint + j3 := mock.Job() + j3.Constraints = make([]*structs.Constraint, 0) + + j3.TaskGroups[0].Tasks[0].Constraints = []*structs.Constraint{ + { + LTarget: "kernel", + RTarget: "linux", + Operand: "=", + }, + } + + require.True(t, tasksUpdated(j1, j3, name)) + + j4 := mock.Job() + j4.Constraints = make([]*structs.Constraint, 0) + + j4.TaskGroups[0].Tasks[0].Constraints = []*structs.Constraint{ + { + LTarget: "kernel", + RTarget: "linux", + Operand: "=", + }, + } + + require.True(t, tasksUpdated(j1, j4, name)) + + // check different level of same constraint + j5 := mock.Job() + j5.Constraints = []*structs.Constraint{ + { + LTarget: "kernel", + RTarget: "linux", + Operand: "=", + }, + } + + j6 := mock.Job() + j6.Constraints = make([]*structs.Constraint, 0) + j6.TaskGroups[0].Constraints = []*structs.Constraint{ + { + LTarget: "kernel", + RTarget: "linux", + Operand: "=", + }, + } + + require.False(t, tasksUpdated(j5, j6, name)) +} + +func TestTaskUpdatedSpread(t *testing.T) { + j1 := mock.Job() + j2 := mock.Job() + name := j1.TaskGroups[0].Name + + require.False(t, tasksUpdated(j1, j2, name)) + + // TaskGroup Spread + j2.TaskGroups[0].Spreads = []*structs.Spread{ + { + Attribute: "node.datacenter", + Weight: 100, + SpreadTarget: []*structs.SpreadTarget{ + { + Value: "r1", + Percent: 50, + }, + { + Value: "r2", + Percent: 50, + }, + }, + }, + } + require.True(t, tasksUpdated(j1, j2, name)) + + // check different level of same constraint + j5 := mock.Job() + j5.Spreads = []*structs.Spread{ + { + Attribute: "node.datacenter", + Weight: 100, + SpreadTarget: []*structs.SpreadTarget{ + { + Value: "r1", + Percent: 50, + }, + { + Value: "r2", + Percent: 50, + }, + }, + }, + } + + j6 := mock.Job() + j6.TaskGroups[0].Spreads = []*structs.Spread{ + { + Attribute: "node.datacenter", + Weight: 100, + SpreadTarget: []*structs.SpreadTarget{ + { + Value: "r1", + Percent: 50, + }, + { + Value: "r2", + Percent: 50, + }, + }, + }, + } + + require.False(t, tasksUpdated(j5, j6, name)) +} func TestTasksUpdated(t *testing.T) { j1 := mock.Job() j2 := mock.Job() From c87c6415ebcf0a5a12789ad3c0704886c1de6148 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Mon, 18 Nov 2019 16:06:25 -0500 Subject: [PATCH 038/241] DOCS: Spread stanza does not exist on task Fixes documentation inaccuracy for spread stanza placement. Spreads can only exist on the top level job struct or within a group. comment about nil assumption --- scheduler/util.go | 2 ++ website/source/docs/job-specification/spread.html.md | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scheduler/util.go b/scheduler/util.go index 1046215a2e9..4e6fdc01ddf 100644 --- a/scheduler/util.go +++ b/scheduler/util.go @@ -337,6 +337,8 @@ func shuffleNodes(nodes []*structs.Node) { // tasksUpdated does a diff between task groups to see if the // tasks, their drivers, environment variables or config have updated. The // inputs are the task group name to diff and two jobs to diff. +// taskUpdated and functions called within assume that the given +// taskGroup has already been checked to not be nil func tasksUpdated(jobA, jobB *structs.Job, taskGroup string) bool { a := jobA.LookupTaskGroup(taskGroup) b := jobB.LookupTaskGroup(taskGroup) diff --git a/website/source/docs/job-specification/spread.html.md b/website/source/docs/job-specification/spread.html.md index 41ab562211f..2703073e32c 100644 --- a/website/source/docs/job-specification/spread.html.md +++ b/website/source/docs/job-specification/spread.html.md @@ -17,8 +17,6 @@ description: |- job -> **spread**
job -> group -> **spread** -
- job -> group -> task -> **spread** From 4196b27cc1491ec7acd70564365f20314a3cc36b Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Tue, 19 Nov 2019 08:29:43 -0500 Subject: [PATCH 039/241] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4eb88c4955..247a153edb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ BUG FIXES: * scheduler: Changes to devices in resource stanza should cause rescheduling [[GH-6644](https://github.com/hashicorp/nomad/issues/6644)] * vault: Allow overriding implicit Vault version constraint [[GH-6687](https://github.com/hashicorp/nomad/issues/6687)] * vault: Supported Vault auth role's new field, `token_period` [[GH-6574](https://github.com/hashicorp/nomad/issues/6574)] + * scheduler: Fixed a bug that allowed inplace updates after a constraint, affinity, or spread was changed [[GH-6703](https://github.com/hashicorp/nomad/issues/6703)] ## 0.10.1 (November 4, 2019) From c47d52e865c0e0344f0359ac866bf227541e1da4 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Tue, 19 Nov 2019 09:10:56 -0500 Subject: [PATCH 040/241] getter: allow the gcs download scheme (#6692) --- client/allocrunner/taskrunner/getter/getter.go | 2 +- client/allocrunner/taskrunner/getter/getter_test.go | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/client/allocrunner/taskrunner/getter/getter.go b/client/allocrunner/taskrunner/getter/getter.go index a7698d9b74a..c896d6f9292 100644 --- a/client/allocrunner/taskrunner/getter/getter.go +++ b/client/allocrunner/taskrunner/getter/getter.go @@ -18,7 +18,7 @@ var ( lock sync.Mutex // supported is the set of download schemes supported by Nomad - supported = []string{"http", "https", "s3", "hg", "git"} + supported = []string{"http", "https", "s3", "hg", "git", "gcs"} ) const ( diff --git a/client/allocrunner/taskrunner/getter/getter_test.go b/client/allocrunner/taskrunner/getter/getter_test.go index ef961bbc129..2816be10b1e 100644 --- a/client/allocrunner/taskrunner/getter/getter_test.go +++ b/client/allocrunner/taskrunner/getter/getter_test.go @@ -342,6 +342,13 @@ func TestGetGetterUrl_Queries(t *testing.T) { }, output: "bucket.s3-eu-west-1.amazonaws.com/foo/bar?aws_access_key_id=abcd1234", }, + { + name: "gcs", + artifact: &structs.TaskArtifact{ + GetterSource: "gcs::https://www.googleapis.com/storage/v1/b/d/f", + }, + output: "gcs::https://www.googleapis.com/storage/v1/b/d/f", + }, { name: "local file", artifact: &structs.TaskArtifact{ From c9b281dc163fc78e5582901c9f438f526d3967f7 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Tue, 19 Nov 2019 09:18:26 -0500 Subject: [PATCH 041/241] CHANGELOG: gcs support --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 247a153edb6..b15f713c1ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ IMPROVEMENTS: * core: Add support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)] * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)] + * client: Add support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)] BUG FIXES: From 2dfced01e5043a436d634a24f0bfb4c8c792cae3 Mon Sep 17 00:00:00 2001 From: Chris Baker <1675087+cgbaker@users.noreply.github.com> Date: Tue, 19 Nov 2019 14:53:34 +0000 Subject: [PATCH 042/241] the plugin launcher tool was passing the wrong byte array into SetConfig, resulting in msgpack decoding errors --- plugins/shared/cmd/launcher/command/device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/shared/cmd/launcher/command/device.go b/plugins/shared/cmd/launcher/command/device.go index 2a89881bfbd..5b4d86529a3 100644 --- a/plugins/shared/cmd/launcher/command/device.go +++ b/plugins/shared/cmd/launcher/command/device.go @@ -209,7 +209,7 @@ func (c *Device) setConfig(spec hcldec.Spec, apiVersion string, config []byte, n } req := &base.Config{ - PluginConfig: config, + PluginConfig: cdata, AgentConfig: nmdCfg, ApiVersion: apiVersion, } From 796097bd893b0c7472f1ae1f7009f57f07453f50 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Tue, 19 Nov 2019 10:36:41 -0500 Subject: [PATCH 043/241] hclfmt nomad jobspecs (#6724) --- command/assets/example-short.nomad | 2 +- command/assets/example.nomad | 2 +- dev/docker-clients/client.nomad | 2 +- e2e/consul/input/consul_example.nomad | 2 +- e2e/metrics/input/helloworld.nomad | 2 +- e2e/metrics/input/redis.nomad | 2 +- e2e/metrics/input/simpleweb.nomad | 2 +- e2e/prometheus/prometheus.nomad | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/command/assets/example-short.nomad b/command/assets/example-short.nomad index d450ff7a1ac..ae3de97d310 100644 --- a/command/assets/example-short.nomad +++ b/command/assets/example-short.nomad @@ -19,7 +19,7 @@ job "example" { network { mbits = 10 - port "db" {} + port "db" {} } } } diff --git a/command/assets/example.nomad b/command/assets/example.nomad index f78dc356bde..8f8d5fffab0 100644 --- a/command/assets/example.nomad +++ b/command/assets/example.nomad @@ -316,7 +316,7 @@ job "example" { network { mbits = 10 - port "db" {} + port "db" {} } } # The "service" stanza instructs Nomad to register this task as a service diff --git a/dev/docker-clients/client.nomad b/dev/docker-clients/client.nomad index 37248bfce05..4689df77534 100644 --- a/dev/docker-clients/client.nomad +++ b/dev/docker-clients/client.nomad @@ -23,7 +23,7 @@ job "client" { network { mbits = 10 - port "http" {} + port "http"{} } } diff --git a/e2e/consul/input/consul_example.nomad b/e2e/consul/input/consul_example.nomad index 24217b84260..18b02be7c10 100644 --- a/e2e/consul/input/consul_example.nomad +++ b/e2e/consul/input/consul_example.nomad @@ -49,7 +49,7 @@ job "consul-example" { network { mbits = 10 - port "db" {} + port "db" {} } } diff --git a/e2e/metrics/input/helloworld.nomad b/e2e/metrics/input/helloworld.nomad index f8fed4ed8fe..bd8cfb44318 100644 --- a/e2e/metrics/input/helloworld.nomad +++ b/e2e/metrics/input/helloworld.nomad @@ -29,7 +29,7 @@ job "hello" { network { mbits = 10 - port "web" {} + port "web" {} } } diff --git a/e2e/metrics/input/redis.nomad b/e2e/metrics/input/redis.nomad index 2fedaed8755..27d8a5d8429 100644 --- a/e2e/metrics/input/redis.nomad +++ b/e2e/metrics/input/redis.nomad @@ -39,7 +39,7 @@ job "redis" { network { mbits = 10 - port "db" {} + port "db" {} } } diff --git a/e2e/metrics/input/simpleweb.nomad b/e2e/metrics/input/simpleweb.nomad index 92a20e1a36a..352f89bb020 100644 --- a/e2e/metrics/input/simpleweb.nomad +++ b/e2e/metrics/input/simpleweb.nomad @@ -28,7 +28,7 @@ job "nginx" { network { mbits = 1 - port "http" {} + port "http"{} } } diff --git a/e2e/prometheus/prometheus.nomad b/e2e/prometheus/prometheus.nomad index 85b64544331..c32d45d3347 100644 --- a/e2e/prometheus/prometheus.nomad +++ b/e2e/prometheus/prometheus.nomad @@ -64,7 +64,7 @@ EOH resources { network { mbits = 10 - port "prometheus_ui" {} + port "prometheus_ui"{} } } From c7db0278099305fd3165804bee560705ca62bfab Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Tue, 19 Nov 2019 11:02:55 -0500 Subject: [PATCH 044/241] doc: clarify that gcc-go is not supported (#6726) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c8ff72ae719..6d6e9700586 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,11 @@ Nomad is an easy-to-use, flexible, and performant workload orchestrator that dep Nomad enables developers to use declarative infrastructure-as-code for deploying their applications (jobs). Nomad uses bin packing to efficiently schedule jobs and optimize for resource utilization. Nomad is supported on macOS, Windows, and Linux. -Nomad is widely adopted and used in production by PagerDuty, Target, Citadel, Trivago, SAP, Pandora, Roblox, eBay, Deluxe Entertainment, and more. +Nomad is widely adopted and used in production by PagerDuty, Target, Citadel, Trivago, SAP, Pandora, Roblox, eBay, Deluxe Entertainment, and more. * **Deploy Containers and Legacy Applications**: Nomad’s flexibility as an orchestrator enables an organization to run containers, legacy, and batch applications together on the same infrastructure. Nomad brings core orchestration benefits to legacy applications without needing to containerize via pluggable task drivers. -* **Simple & Reliable**: Nomad runs as a single 75MB binary and is entirely self contained - combining resource management and scheduling into a single system. Nomad does not require any external services for storage or coordination. Nomad automatically handles application, node, and driver failures. Nomad is distributed and resilient, using leader election and state replication to provide high availability in the event of failures. +* **Simple & Reliable**: Nomad runs as a single 75MB binary and is entirely self contained - combining resource management and scheduling into a single system. Nomad does not require any external services for storage or coordination. Nomad automatically handles application, node, and driver failures. Nomad is distributed and resilient, using leader election and state replication to provide high availability in the event of failures. * **Device Plugins & GPU Support**: Nomad offers built-in support for GPU workloads such as machine learning (ML) and artificial intelligence (AI). Nomad uses device plugins to automatically detect and utilize resources from hardware devices such as GPU, FPGAs, and TPUs. @@ -138,7 +138,7 @@ Who Uses Nomad Contributing to Nomad -------------------- -If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.12+ is *required*). +If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.12+ is *required*, and `gcc-go` is not supported). See the [`contributing`](contributing/) directory for more developer documentation. From 04b588dcf004cca5ee8ebc0c55f9ecb05a664afc Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Tue, 19 Nov 2019 11:06:10 -0500 Subject: [PATCH 045/241] Infrastructure for Windows e2e testing (#6584) Includes: * baseline Windows AMI * initial pass at Terraform configurations * OpenSSH for Windows Using OpenSSH is a lot nicer for Nomad developers than winrm would be, plus it lets us avoid passing around the Windows password in the clear. Note that now we're copying up all the provisioning scripts and configs as a zipped bundle because TF's file provisioner dies in the middle of pushing up multiple files (whereas `scp -r` works fine). We're also running all the provisioning scripts inside the userdata by polling for the zip file to show up (gross!). This is because `remote-exec` provisioners are failing on Windows with the same symptoms as: https://github.com/hashicorp/terraform/issues/17728 If we can't fix this, it'll prevent us from having multiple Windows clients running until TF supports count interpolation in the `template_file`, which is planned for a later 0.12 release. --- e2e/terraform/.gitignore | 1 + e2e/terraform/README.md | 8 +- e2e/terraform/compute.tf | 72 ++++++++- e2e/terraform/main.tf | 28 +++- e2e/terraform/packer/README.md | 43 +++++ e2e/terraform/packer/packer-windows.json | 69 ++++++++ e2e/terraform/packer/windows/README.md | 20 +++ .../windows/disable-windows-updates.ps1 | 30 ++++ e2e/terraform/packer/windows/fix-tls.ps1 | 151 ++++++++++++++++++ .../packer/windows/install-consul.ps1 | 32 ++++ .../packer/windows/install-docker.ps1 | 35 ++++ .../packer/windows/install-nomad.ps1 | 34 ++++ .../packer/windows/install-nuget.ps1 | 21 +++ .../packer/windows/install-openssh.ps1 | 53 ++++++ .../packer/windows/install-tools.ps1 | 37 +++++ .../packer/windows/install-vault.ps1 | 31 ++++ .../packer/windows/setup-directories.ps1 | 2 + e2e/terraform/packer/windows/setupwinrm.ps1 | 44 +++++ .../shared/config/provision-client.sh | 0 .../shared/config/provision-server.sh | 0 .../config/provision-windows-client.ps1 | 49 ++++++ .../shared/config/userdata-windows.ps1 | 30 ++++ e2e/terraform/shared/nomad/client-windows.hcl | 35 ++++ e2e/terraform/terraform.tfvars | 11 +- 24 files changed, 828 insertions(+), 8 deletions(-) create mode 100644 e2e/terraform/.gitignore create mode 100644 e2e/terraform/packer/packer-windows.json create mode 100644 e2e/terraform/packer/windows/README.md create mode 100755 e2e/terraform/packer/windows/disable-windows-updates.ps1 create mode 100755 e2e/terraform/packer/windows/fix-tls.ps1 create mode 100755 e2e/terraform/packer/windows/install-consul.ps1 create mode 100755 e2e/terraform/packer/windows/install-docker.ps1 create mode 100755 e2e/terraform/packer/windows/install-nomad.ps1 create mode 100755 e2e/terraform/packer/windows/install-nuget.ps1 create mode 100755 e2e/terraform/packer/windows/install-openssh.ps1 create mode 100755 e2e/terraform/packer/windows/install-tools.ps1 create mode 100755 e2e/terraform/packer/windows/install-vault.ps1 create mode 100755 e2e/terraform/packer/windows/setup-directories.ps1 create mode 100755 e2e/terraform/packer/windows/setupwinrm.ps1 mode change 100644 => 100755 e2e/terraform/shared/config/provision-client.sh mode change 100644 => 100755 e2e/terraform/shared/config/provision-server.sh create mode 100755 e2e/terraform/shared/config/provision-windows-client.ps1 create mode 100755 e2e/terraform/shared/config/userdata-windows.ps1 create mode 100644 e2e/terraform/shared/nomad/client-windows.hcl diff --git a/e2e/terraform/.gitignore b/e2e/terraform/.gitignore new file mode 100644 index 00000000000..c4c4ffc6aa4 --- /dev/null +++ b/e2e/terraform/.gitignore @@ -0,0 +1 @@ +*.zip diff --git a/e2e/terraform/README.md b/e2e/terraform/README.md index e41873c3544..e4670270942 100644 --- a/e2e/terraform/README.md +++ b/e2e/terraform/README.md @@ -23,9 +23,15 @@ Terraform will output node IPs that may be accessed via ssh: ssh -i keys/nomad-e2e-*.pem ubuntu@${EC2_IP_ADDR} ``` +The Windows client runs OpenSSH for conveniences, but has a different user and will drop you into a Powershell shell instead of bash: + +``` +ssh -i keys/nomad-e2e-*.pem Administrator@${EC2_IP_ADDR} +``` + ## Teardown -The terraform state file stores all the info, so the nomad_sha doesn't need to be valid during teardown. +The terraform state file stores all the info, so the nomad_sha doesn't need to be valid during teardown. ``` $ cd e2e/terraform/ diff --git a/e2e/terraform/compute.tf b/e2e/terraform/compute.tf index 7f1c6ae8d0e..59ec0fdec3c 100644 --- a/e2e/terraform/compute.tf +++ b/e2e/terraform/compute.tf @@ -1,5 +1,5 @@ resource "aws_instance" "server" { - ami = data.aws_ami.main.image_id + ami = data.aws_ami.linux.image_id instance_type = var.instance_type key_name = module.keys.key_name vpc_security_group_ids = [aws_security_group.primary.id] @@ -44,7 +44,7 @@ resource "aws_instance" "server" { } resource "aws_instance" "client" { - ami = data.aws_ami.main.image_id + ami = data.aws_ami.linux.image_id instance_type = var.instance_type key_name = module.keys.key_name vpc_security_group_ids = [aws_security_group.primary.id] @@ -95,3 +95,71 @@ resource "aws_instance" "client" { } } } +data "template_file" "user_data_client_windows" { + template = file("${path.root}/shared/config/userdata-windows.ps1") + vars = { + nomad_sha = var.nomad_sha + } +} + +data "archive_file" "windows_configs" { + type = "zip" + source_dir = "./shared" + output_path = "./windows_configs.zip" +} + +resource "aws_instance" "client_windows" { + ami = data.aws_ami.windows.image_id + instance_type = var.instance_type + key_name = module.keys.key_name + vpc_security_group_ids = [aws_security_group.primary.id] + count = var.windows_client_count + depends_on = [aws_instance.server] + iam_instance_profile = "${aws_iam_instance_profile.instance_profile.name}" + + # Instance tags + tags = { + Name = "${local.random_name}-client-windows-${count.index}" + ConsulAutoJoin = "auto-join" + } + + ebs_block_device { + device_name = "xvdd" + volume_type = "gp2" + volume_size = "50" + delete_on_termination = "true" + } + + # We need this userdata script because Windows machines don't + # configure ssh with cloud-init by default. + user_data = data.template_file.user_data_client_windows.rendered + + # Note: + # we're copying up all the provisioning scripts and configs as + # a zipped bundle because TF's file provisioner dies in the middle + # of pushing up multiple files (whereas 'scp -r' works fine). + # + # We're also running all the provisioning scripts inside the + # userdata by polling for the zip file to show up. (Gross!) + # This is because remote-exec provisioners are failing on Windows + # with the same symptoms as: + # https://github.com/hashicorp/terraform/issues/17728 + # + # If we can't fix this, it'll prevent us from having multiple + # Windows clients running until TF supports count interpolation + # in the template_file, which is planned for a later 0.12 release + # + provisioner "file" { + source = "./windows_configs.zip" + destination = "C:/ops/windows_configs.zip" + + connection { + host = coalesce(self.public_ip, self.private_ip) + type = "ssh" + user = "Administrator" + private_key = module.keys.private_key_pem + timeout = "10m" + } + } + +} diff --git a/e2e/terraform/main.tf b/e2e/terraform/main.tf index 13c5838b5c2..941435b8df7 100644 --- a/e2e/terraform/main.tf +++ b/e2e/terraform/main.tf @@ -28,6 +28,11 @@ variable "client_count" { default = "4" } +variable "windows_client_count" { + description = "The number of windows clients to provision." + default = "1" +} + variable "nomad_sha" { description = "The sha of Nomad to run" } @@ -39,6 +44,12 @@ provider "aws" { resource "random_pet" "e2e" { } +resource "random_password" "windows_admin_password" { + length = 20 + special = true + override_special = "_%@" +} + locals { random_name = "${var.name}-${random_pet.e2e.id}" } @@ -51,7 +62,7 @@ module "keys" { version = "v2.0.0" } -data "aws_ami" "main" { +data "aws_ami" "linux" { most_recent = true owners = ["self"] @@ -66,6 +77,21 @@ data "aws_ami" "main" { } } +data "aws_ami" "windows" { + most_recent = true + owners = ["self"] + + filter { + name = "name" + values = ["nomad-e2e-windows-2016*"] + } + + filter { + name = "tag:OS" + values = ["Windows2016"] + } +} + data "aws_caller_identity" "current" { } diff --git a/e2e/terraform/packer/README.md b/e2e/terraform/packer/README.md index bea87daa568..69b04d3a17a 100644 --- a/e2e/terraform/packer/README.md +++ b/e2e/terraform/packer/README.md @@ -18,4 +18,47 @@ $ packer --version # build linux AMI $ packer build packer.json + +# build Windows AMI +$ packer build packer-windows.json +``` + +## Debugging Packer Builds + +You'll need the Windows administrator password in order to access Windows machines via `winrm` as Packer does. You can get this by enabling `-debug` on your Packer build. + +```sh +packer build -debug -on-error=abort packer-windows.json +... +==> amazon-ebs: Pausing after run of step 'StepRunSourceInstance'. Press enter to continue. +==> amazon-ebs: Waiting for auto-generated password for instance... + amazon-ebs: Password (since debug is enabled): +``` + +Alternately, you can follow the steps in the [AWS documentation](https://aws.amazon.com/premiumsupport/knowledge-center/retrieve-windows-admin-password/). Note that you'll need the `ec2_amazon-ebs.pem` file that Packer drops in this directory. + + +Then in powershell (note the leading `$` here indicate variable declarations, not shell prompts!): + ``` +$username = "Administrator" +$password = "" +$securePassword = ConvertTo-SecureString -AsPlainText -Force $password +$remoteHostname = "54.x.y.z" +$port = 5986 +$cred = New-Object System.Management.Automation.PSCredential ($username, $securePassword) +$so = New-PSSessionOption -SkipCACheck -SkipCNCheck + +Enter-PsSession ` + -ComputerName $remoteHostname ` + -Port $port ` + -Credential $cred ` + -UseSSL ` + -SessionOption $so ` + -Authentication Basic +``` + +Packer doesn't have a cleanup command if you've run `-on-error=abort`. So when you're done, clean up the machine by looking for "Packer" in the AWS console: +* [EC2 instances](https://console.aws.amazon.com/ec2/home?region=us-east-1#Instances:search=Packer;sort=tag:Name) +* [Key pairs](https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#KeyPairs:search=packer;sort=keyName) +* [Security groups](https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:search=packer;sort=groupName) diff --git a/e2e/terraform/packer/packer-windows.json b/e2e/terraform/packer/packer-windows.json new file mode 100644 index 00000000000..52f2575e6b6 --- /dev/null +++ b/e2e/terraform/packer/packer-windows.json @@ -0,0 +1,69 @@ +{ + "builders": [ + { + "type": "amazon-ebs", + "region": "us-east-1", + "source_ami_filter": { + "filters": { + "virtualization-type": "hvm", + "name": "Windows_Server-2016-English-Full-Base-*", + "root-device-type": "ebs" + }, + "owners": [ + "amazon" + ], + "most_recent": true + }, + "instance_type": "t2.medium", + "ami_name": "nomad-e2e-windows-2016-{{timestamp}}", + "ami_groups": [ + "all" + ], + "communicator": "winrm", + "user_data_file": "windows/setupwinrm.ps1", + "winrm_username": "Administrator", + "winrm_insecure": true, + "winrm_use_ssl": true, + "tags": { + "OS": "Windows2016" + } + } + ], + "provisioners": [ + { + "type": "powershell", + "elevated_user": "Administrator", + "elevated_password": "{{.WinRMPassword}}", + "scripts": [ + "windows/disable-windows-updates.ps1", + "windows/fix-tls.ps1", + "windows/install-nuget.ps1", + "windows/install-tools.ps1", + "windows/install-docker.ps1", + "windows/setup-directories.ps1", + "windows/install-openssh.ps1" + ] + }, + { + "type": "windows-restart" + }, + { + "type": "powershell", + "elevated_user": "Administrator", + "elevated_password": "{{.WinRMPassword}}", + "scripts": [ + "windows/install-consul.ps1", + "windows/install-vault.ps1", + "windows/install-nomad.ps1" + ] + }, + { + "type": "powershell", + "inline": [ + "C:\\ProgramData\\Amazon\\EC2-Windows\\Launch\\Scripts\\SendWindowsIsReady.ps1 -Schedule", + "C:\\ProgramData\\Amazon\\EC2-Windows\\Launch\\Scripts\\InitializeInstance.ps1 -Schedule", + "C:\\ProgramData\\Amazon\\EC2-Windows\\Launch\\Scripts\\SysprepInstance.ps1 -NoShutdown" + ] + } + ] +} diff --git a/e2e/terraform/packer/windows/README.md b/e2e/terraform/packer/windows/README.md new file mode 100644 index 00000000000..071f4122735 --- /dev/null +++ b/e2e/terraform/packer/windows/README.md @@ -0,0 +1,20 @@ +# Windows Packer Build + +There are a few boilerplate items in the Powershell scripts, explained below. + +The default TLS protocol in the version of .NET that our Powershell cmdlets are built in it 1.0, which means plenty of properly configured HTTP servers will reject requests. The boilerplate snippet below sets this for the current script: + +``` +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +``` + +We need to run some of the scripts as an administrator role. The following is a safety check that we're doing so: + +``` +$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") +if (!$RunningAsAdmin) { + Write-Error "Must be executed in Administrator level shell." + exit 1 +} +``` diff --git a/e2e/terraform/packer/windows/disable-windows-updates.ps1 b/e2e/terraform/packer/windows/disable-windows-updates.ps1 new file mode 100755 index 00000000000..1b9f80660c7 --- /dev/null +++ b/e2e/terraform/packer/windows/disable-windows-updates.ps1 @@ -0,0 +1,30 @@ +$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") +if (!$RunningAsAdmin) { + Write-Error "Must be executed in Administrator level shell." + exit 1 +} + +$service = Get-WmiObject Win32_Service -Filter 'Name="wuauserv"' + +if (!$service) { + Write-Error "Failed to retrieve the wauserv service" + exit 1 +} + +if ($service.StartMode -ne "Disabled") { + $result = $service.ChangeStartMode("Disabled").ReturnValue + if($result) { + Write-Error "Failed to disable the 'wuauserv' service. The return value was $result." + exit 1 + } +} + +if ($service.State -eq "Running") { + $result = $service.StopService().ReturnValue + if ($result) { + Write-Error "Failed to stop the 'wuauserv' service. The return value was $result." + exit 1 + } +} + +Write-Output "Automatic Windows Updates disabled." diff --git a/e2e/terraform/packer/windows/fix-tls.ps1 b/e2e/terraform/packer/windows/fix-tls.ps1 new file mode 100755 index 00000000000..f17a6aea51f --- /dev/null +++ b/e2e/terraform/packer/windows/fix-tls.ps1 @@ -0,0 +1,151 @@ +# This script hardens TLS configuration by disabling weak and broken protocols +# and enabling useful protocols like TLS 1.1 and 1.2. + +$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") +if (!$RunningAsAdmin) { + Write-Error "Must be executed in Administrator level shell." + exit 1 +} + +$weakProtocols = @( + 'Multi-Protocol Unified Hello', + 'PCT 1.0', + 'SSL 2.0', + 'SSL 3.0' +) + +$strongProtocols = @( + 'TLS 1.0', + 'TLS 1.1', + 'TLS 1.2' +) + +$weakCiphers = @( + 'DES 56/56', + 'NULL', + 'RC2 128/128', + 'RC2 40/128', + 'RC2 56/128', + 'RC4 40/128', + 'RC4 56/128', + 'RC4 64/128', + 'RC4 128/128' +) + +$strongCiphers = @( + 'AES 128/128', + 'AES 256/256', + 'Triple DES 168/168' +) + +$weakHashes = @( + 'MD5', + 'SHA' +) + +$strongHashes = @( + 'SHA 256', + 'SHA 384', + 'SHA 512' +) + +$strongKeyExchanges = @( + 'Diffie-Hellman', + 'ECDH', + 'PKCS' +) + +$cipherOrder = @( + 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P521', + 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384', + 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256', + 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P521', + 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P384', + 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P256', + 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P521', + 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P384', + 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256', + 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P521', + 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P384', + 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P256', + 'TLS_RSA_WITH_AES_256_GCM_SHA384', + 'TLS_RSA_WITH_AES_128_GCM_SHA256', + 'TLS_RSA_WITH_AES_256_CBC_SHA256', + 'TLS_RSA_WITH_AES_256_CBC_SHA', + 'TLS_RSA_WITH_AES_128_CBC_SHA256', + 'TLS_RSA_WITH_AES_128_CBC_SHA', + 'TLS_RSA_WITH_3DES_EDE_CBC_SHA' +) + +# Reset the protocols key +New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols' -Force | Out-Null + +# Disable weak protocols +Foreach ($protocol in $weakProtocols) { + New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -Force | Out-Null + New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name Enabled -value 0 -PropertyType 'DWord' -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name DisabledByDefault -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name Enabled -value 0 -PropertyType 'DWord' -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name DisabledByDefault -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null +} + +# Enable strong protocols +Foreach ($protocol in $strongProtocols) { + New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -Force | Out-Null + New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name 'DisabledByDefault' -value 0 -PropertyType 'DWord' -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null + New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name 'DisabledByDefault' -value 0 -PropertyType 'DWord' -Force | Out-Null +} + +# Reset the ciphers key +New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers' -Force | Out-Null + +# Disable Weak Ciphers +Foreach ($cipher in $weakCiphers) { + $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers", $true).CreateSubKey($cipher) + $key.SetValue('Enabled', 0, 'DWord') + $key.Close() +} + +# Enable Strong Ciphers +Foreach ($cipher in $strongCiphers) { + $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers", $true).CreateSubKey($cipher) + New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\$cipher" -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null + $key.Close() +} + +# Reset the hashes key +New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes' -Force | Out-Null + +# Disable weak hashes +Foreach ($hash in $weakHashes) { + $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes", $true).CreateSubKey($hash) + New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes\$hash" -name 'Enabled' -value '0' -PropertyType 'DWord' -Force | Out-Null + $key.Close() +} + +# Enable Hashes +Foreach ($hash in $strongHashes) { + $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes", $true).CreateSubKey($hash) + New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes\$hash" -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null + $key.Close() +} + +# Reset the KeyExchangeAlgorithms key +New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms' -Force | Out-Null + +# Enable KeyExchangeAlgorithms +Foreach ($keyExchange in $strongKeyExchanges) { + $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms", $true).CreateSubKey($keyExchange) + New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms\$keyExchange" -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null + $key.Close() +} + +# Set cipher order +$cipherOrderString = [string]::join(',', $cipherOrder) +New-ItemProperty -path 'HKLM:\SOFTWARE\Policies\Microsoft\Cryptography\Configuration\SSL\00010002' -name 'Functions' -value $cipherOrderString -PropertyType 'String' -Force | Out-Null + +Write-Output "TLS hardened." diff --git a/e2e/terraform/packer/windows/install-consul.ps1 b/e2e/terraform/packer/windows/install-consul.ps1 new file mode 100755 index 00000000000..d2359a9c382 --- /dev/null +++ b/e2e/terraform/packer/windows/install-consul.ps1 @@ -0,0 +1,32 @@ +Set-StrictMode -Version latest +$ErrorActionPreference = "Stop" + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +Set-Location C:\opt + +Try { + $releases = "https://releases.hashicorp.com" + $version = "1.6.1" + $url = "${releases}/consul/${version}/consul_${version}_windows_amd64.zip" + + $configDir = "C:\opt\consul.d" + md $configDir + md C:\opt\consul + + # TODO: check sha! + Write-Output "Downloading Consul from: $url" + Invoke-WebRequest -Uri $url -Outfile consul.zip + Expand-Archive .\consul.zip .\ + mv consul.exe C:\opt\consul.exe + C:\opt\consul.exe version + rm consul.zip + +} Catch { + Write-Error "Failed to install Consul." + $host.SetShouldExit(-1) + throw +} + +Write-Output "Installed Consul." diff --git a/e2e/terraform/packer/windows/install-docker.ps1 b/e2e/terraform/packer/windows/install-docker.ps1 new file mode 100755 index 00000000000..6dbe21f9957 --- /dev/null +++ b/e2e/terraform/packer/windows/install-docker.ps1 @@ -0,0 +1,35 @@ +Set-StrictMode -Version latest +$ErrorActionPreference = "Stop" + +$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") +if (!$RunningAsAdmin) { + Write-Error "Must be executed in Administrator level shell." + exit 1 +} + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +Try { + Write-Output "Installing containers feature." + Install-WindowsFeature -Name Containers + + Write-Output "Creating user for Docker." + net localgroup docker /add + net localgroup docker $env:USERNAME /add + + Write-Output "Installing Docker." + Set-PSRepository -InstallationPolicy Trusted -Name PSGallery + Install-Module -Name DockerMsftProvider -Repository PSGallery -Force + Install-Package -Name docker -ProviderName DockerMsftProvider -Force + +} Catch { + Write-Error "Failed to install Docker." + $host.SetShouldExit(-1) + throw +} Finally { + # clean up by re-securing this package repo + Set-PSRepository -InstallationPolicy Untrusted -Name PSGallery +} + +Write-Output "Installed Docker." diff --git a/e2e/terraform/packer/windows/install-nomad.ps1 b/e2e/terraform/packer/windows/install-nomad.ps1 new file mode 100755 index 00000000000..3001973190a --- /dev/null +++ b/e2e/terraform/packer/windows/install-nomad.ps1 @@ -0,0 +1,34 @@ +Set-StrictMode -Version latest +$ErrorActionPreference = "Stop" + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +Set-Location C:\opt + +Try { + # we install the most recent stable/GA release; this will be replaced + # with the current master when we run e2e tests + $releases = "https://releases.hashicorp.com" + $version = "0.9.6" + $url = "${releases}/nomad/${version}/nomad_${version}_windows_amd64.zip" + + $configDir = "C:\opt\nomad.d" + md $configDir + md C:\opt\nomad + + # TODO: check sha! + Write-Output "Downloading Nomad from: $url" + Invoke-WebRequest -Uri $url -Outfile nomad.zip + Expand-Archive .\nomad.zip .\ + mv nomad.exe C:\opt\nomad.exe + C:\opt\nomad.exe version + rm nomad.zip + +} Catch { + Write-Error "Failed to install Nomad." + $host.SetShouldExit(-1) + throw +} + +Write-Output "Installed Nomad." diff --git a/e2e/terraform/packer/windows/install-nuget.ps1 b/e2e/terraform/packer/windows/install-nuget.ps1 new file mode 100755 index 00000000000..e1f38da6da9 --- /dev/null +++ b/e2e/terraform/packer/windows/install-nuget.ps1 @@ -0,0 +1,21 @@ +Set-StrictMode -Version latest +$ErrorActionPreference = "Stop" + +$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") +if (!$RunningAsAdmin) { + Write-Error "Must be executed in Administrator level shell." + exit 1 +} + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +Try { + Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force +} Catch { + Write-Error "Failed to install NuGet package manager." + $host.SetShouldExit(-1) + throw +} + +Write-Output "Installed NuGet." diff --git a/e2e/terraform/packer/windows/install-openssh.ps1 b/e2e/terraform/packer/windows/install-openssh.ps1 new file mode 100755 index 00000000000..767b570efe7 --- /dev/null +++ b/e2e/terraform/packer/windows/install-openssh.ps1 @@ -0,0 +1,53 @@ +Set-StrictMode -Version latest +$ErrorActionPreference = "Stop" + +$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") +if (!$RunningAsAdmin) { + Write-Error "Must be executed in Administrator level shell." + exit 1 +} + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +Try { + + # install portable SSH instead of the Windows feature because we + # need to target 2016 + $repo = "https://github.com/PowerShell/Win32-OpenSSH" + $version = "v8.0.0.0p1-Beta" + $url = "${repo}/releases/download/${version}/OpenSSH-Win64.zip" + + # TODO: check sha! + Write-Output "Downloading OpenSSH from: $url" + Invoke-WebRequest -Uri $url -Outfile "OpenSSH-Win64.zip" + Expand-Archive ".\OpenSSH-Win64.zip" "C:\Program Files" + Rename-Item -Path "C:\Program Files\OpenSSH-Win64" -NewName "OpenSSH" + + & "C:\Program Files\OpenSSH\install-sshd.ps1" + + # Start the service + Start-Service sshd + Set-Service -Name sshd -StartupType 'Automatic' + + Start-Service ssh-agent + Set-Service -Name ssh-agent -StartupType 'Automatic' + + # Enable host firewall rule if it doesn't exist + New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' ` + -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22 + + # Set powershell as the OpenSSH login shell + New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" ` + -Name DefaultShell ` + -Value "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" ` + -PropertyType String -Force + + +} Catch { + Write-Error "Failed to install OpenSSH." + $host.SetShouldExit(-1) + throw +} + +Write-Output "Installed OpenSSH." diff --git a/e2e/terraform/packer/windows/install-tools.ps1 b/e2e/terraform/packer/windows/install-tools.ps1 new file mode 100755 index 00000000000..b4535d1d067 --- /dev/null +++ b/e2e/terraform/packer/windows/install-tools.ps1 @@ -0,0 +1,37 @@ +Set-StrictMode -Version latest +$ErrorActionPreference = "Stop" + +$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") +if (!$RunningAsAdmin) { + Write-Error "Must be executed in Administrator level shell." + exit 1 +} + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +# TODO (tgross: some stuff installed on Linux but not here yet +# - Possible issues: no redis-tools for windows +# - Possible non-issues: probably don't need tree, curl,tmux + +Try { + Set-PSRepository -InstallationPolicy Trusted -Name PSGallery + + Write-Output "Installing 7Zip" + Install-Package -Force 7Zip4PowerShell + + Write-Output "Installing JQ" + Invoke-WebRequest ` + -Uri https://github.com/stedolan/jq/releases/download/jq-1.6/jq-win64.exe ` + -Outfile jq-win64.exe + +} Catch { + Write-Error "Failed to install dependencies." + $host.SetShouldExit(-1) + throw +} Finally { + # clean up by re-securing this package repo + Set-PSRepository -InstallationPolicy Untrusted -Name PSGallery +} + +Write-Output "Installed dependencies" diff --git a/e2e/terraform/packer/windows/install-vault.ps1 b/e2e/terraform/packer/windows/install-vault.ps1 new file mode 100755 index 00000000000..82498ea0837 --- /dev/null +++ b/e2e/terraform/packer/windows/install-vault.ps1 @@ -0,0 +1,31 @@ +Set-StrictMode -Version latest +$ErrorActionPreference = "Stop" + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +Set-Location C:\opt + +Try { + $releases = "https://releases.hashicorp.com" + $version = "1.2.3" + $url = "${releases}/vault/${version}/vault_${version}_windows_amd64.zip" + + $configDir = "C:\opt\vault.d" + md $configDir + + # TODO: check sha! + Write-Output "Downloading Vault from: $url" + Invoke-WebRequest -Uri $url -Outfile vault.zip + Expand-Archive .\vault.zip .\ + mv vault.exe C:\opt\vault.exe + C:\opt\vault.exe version + rm vault.zip + +} Catch { + Write-Error "Failed to install Vault." + $host.SetShouldExit(-1) + throw +} + +Write-Output "Installed Vault." diff --git a/e2e/terraform/packer/windows/setup-directories.ps1 b/e2e/terraform/packer/windows/setup-directories.ps1 new file mode 100755 index 00000000000..3cb3ad806e4 --- /dev/null +++ b/e2e/terraform/packer/windows/setup-directories.ps1 @@ -0,0 +1,2 @@ +md C:\ops +md C:\opt diff --git a/e2e/terraform/packer/windows/setupwinrm.ps1 b/e2e/terraform/packer/windows/setupwinrm.ps1 new file mode 100755 index 00000000000..030eb6f1ce2 --- /dev/null +++ b/e2e/terraform/packer/windows/setupwinrm.ps1 @@ -0,0 +1,44 @@ + + +Write-Output "Running User Data Script" +Write-Host "(host) Running User Data Script" + +Set-ExecutionPolicy Unrestricted -Scope LocalMachine -Force -ErrorAction Ignore + +# Don't set this before Set-ExecutionPolicy as it throws an error +$ErrorActionPreference = "stop" + +# Remove HTTP listener +Remove-Item -Path WSMan:\Localhost\listener\listener* -Recurse + +$Cert = New-SelfSignedCertificate ` + -CertstoreLocation Cert:\LocalMachine\My ` + -DnsName "packer" + +New-Item ` + -Path WSMan:\LocalHost\Listener ` + -Transport HTTPS ` + -Address * ` + -CertificateThumbPrint $Cert.Thumbprint ` + -Force + +# WinRM +write-output "Setting up WinRM" +write-host "(host) setting up WinRM" + +cmd.exe /c winrm quickconfig -q +cmd.exe /c winrm set "winrm/config" '@{MaxTimeoutms="1800000"}' +cmd.exe /c winrm set "winrm/config/winrs" '@{MaxMemoryPerShellMB="1024"}' +cmd.exe /c winrm set "winrm/config/service" '@{AllowUnencrypted="true"}' +cmd.exe /c winrm set "winrm/config/client" '@{AllowUnencrypted="true"}' +cmd.exe /c winrm set "winrm/config/service/auth" '@{Basic="true"}' +cmd.exe /c winrm set "winrm/config/client/auth" '@{Basic="true"}' +cmd.exe /c winrm set "winrm/config/service/auth" '@{CredSSP="true"}' +cmd.exe /c winrm set "winrm/config/listener?Address=*+Transport=HTTPS" "@{Port=`"5986`";Hostname=`"packer`";CertificateThumbprint=`"$($Cert.Thumbprint)`"}" +cmd.exe /c netsh advfirewall firewall set rule group="remote administration" new enable=yes +cmd.exe /c netsh firewall add portopening TCP 5986 "Port 5986" +cmd.exe /c net stop winrm +cmd.exe /c sc config winrm start= auto +cmd.exe /c net start winrm + + diff --git a/e2e/terraform/shared/config/provision-client.sh b/e2e/terraform/shared/config/provision-client.sh old mode 100644 new mode 100755 diff --git a/e2e/terraform/shared/config/provision-server.sh b/e2e/terraform/shared/config/provision-server.sh old mode 100644 new mode 100755 diff --git a/e2e/terraform/shared/config/provision-windows-client.ps1 b/e2e/terraform/shared/config/provision-windows-client.ps1 new file mode 100755 index 00000000000..7eaf29b28c1 --- /dev/null +++ b/e2e/terraform/shared/config/provision-windows-client.ps1 @@ -0,0 +1,49 @@ +param( + [string]$Cloud = "aws", + [string]$NomadSha = "", + [string]$Index=0 +) + +# Force TLS1.2 +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + +# Consul +cp "C:\ops\shared\consul\base.json" "C:\opt\consul.d\base.json" +cp "C:\ops\shared\consul\retry_$Cloud.json" "C:\opt\consul.d\retry_$Cloud.json" +sc.exe create "Consul" binPath= "C:\opt\consul.exe agent -config-dir C:\opt\consul.d -log-file C:\opt\consul\consul.log" start= auto +sc.exe start "Consul" + +# Vault +# TODO(tgross): we don't need Vault for clients +# cp "C:\ops\shared\vault\vault.hcl" C:\opt\vault.d\vault.hcl +# sc.exe create "Vault" binPath= "C:\opt\vault.exe" agent -config-dir "C:\opt\vault.d" start= auto + +# Nomad + +md C:\opt\nomad + +Read-S3Object ` + -BucketName nomad-team-test-binary ` + -Key "builds-oss/nomad_windows_amd64_$NomadSha.zip" ` + -File .\nomad.zip + +Expand-Archive .\nomad.zip .\ +rm C:\opt\nomad.exe +mv nomad.exe C:\opt\nomad.exe + +# install config file +cp "C:\ops\shared\nomad\client-windows.hcl" "C:\opt\nomad.d\nomad.hcl" + +# Setup Host Volumes +md C:\tmp\data + +# TODO(tgross): not sure we even support this for Windows? +# Write-Output "Install CNI" +# md C:\opt\cni\bin +# $cni_url = "https://github.com/containernetworking/plugins/releases/download/v0.8.2/cni-plugins-windows-amd64-v0.8.2.tgz" +# Invoke-WebRequest -Uri "$cni_url" -Outfile cni.tgz +# Expand-7Zip -ArchiveFileName .\cni.tgz -TargetPath C:\opt\cni\bin\ + +# enable as a service +sc.exe create "Nomad" binPath= "C:\opt\nomad.exe agent -config C:\opt\nomad.d" start= auto +sc.exe start "Nomad" diff --git a/e2e/terraform/shared/config/userdata-windows.ps1 b/e2e/terraform/shared/config/userdata-windows.ps1 new file mode 100755 index 00000000000..c92039bd2fd --- /dev/null +++ b/e2e/terraform/shared/config/userdata-windows.ps1 @@ -0,0 +1,30 @@ + + +# Bring ebs volume online with read-write access +Get-Disk | Where-Object IsOffline -Eq $True | Set-Disk -IsOffline $False +Get-Disk | Where-Object isReadOnly -Eq $True | Set-Disk -IsReadOnly $False + +md "C:\Users\Administrator\.ssh\" + +$myKey = "C:\Users\Administrator\.ssh\authorized_keys" +$adminKey = "C:\ProgramData\ssh\administrators_authorized_keys" + +Invoke-RestMethod ` + -Uri "http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key" ` + -Outfile $myKey + +cp $myKey $adminKey + +icacls $adminKey /reset +icacls $adminKey /inheritance:r +icacls $adminKey /grant BUILTIN\Administrators:`(F`) +icacls $adminKey /grant SYSTEM:`(F`) + +$archiveFile = "C:\ops\windows_configs.zip" +while (!(Test-Path $archiveFile)) { Start-Sleep 10 } + +Expand-Archive $archiveFile "C:\ops\shared" + +& C:\ops\shared\config\provision-windows-client.ps1 -Cloud aws -NomadSha ${nomad_sha} -Index 1 + + diff --git a/e2e/terraform/shared/nomad/client-windows.hcl b/e2e/terraform/shared/nomad/client-windows.hcl new file mode 100644 index 00000000000..189a340ba0f --- /dev/null +++ b/e2e/terraform/shared/nomad/client-windows.hcl @@ -0,0 +1,35 @@ +enable_debug = true + +log_level = "debug" +log_file = true + +data_dir = "C:\\opt\\nomad\\data" + +bind_addr = "0.0.0.0" + +# Enable the client +client { + enabled = true + + options { + # Allow rawexec jobs + "driver.raw_exec.enable" = "1" + } +} + +consul { + address = "127.0.0.1:8500" +} + +vault { + enabled = true + address = "http://active.vault.service.consul:8200" +} + +telemetry { + collection_interval = "1s" + disable_hostname = true + prometheus_metrics = true + publish_allocation_metrics = true + publish_node_metrics = true +} diff --git a/e2e/terraform/terraform.tfvars b/e2e/terraform/terraform.tfvars index b38ab88553f..1160e9d7a31 100644 --- a/e2e/terraform/terraform.tfvars +++ b/e2e/terraform/terraform.tfvars @@ -1,4 +1,7 @@ -region = "us-east-1" -instance_type = "t2.medium" -server_count = "3" -client_count = "4" +region = "us-east-1" +instance_type = "t2.medium" +server_count = "3" +client_count = "4" + +# TODO(tgross): add only once Windows client is working +windows_client_count = "0" From 1d2fa5ac31f6fc6481d1ce5ebe3f98d683910f2c Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Wed, 13 Nov 2019 15:42:10 -0800 Subject: [PATCH 046/241] vendor: update go-version to include NewSemver --- .../github.com/hashicorp/go-version/README.md | 2 +- vendor/github.com/hashicorp/go-version/go.mod | 1 + .../hashicorp/go-version/version.go | 47 ++++++++++++++++--- vendor/vendor.json | 2 +- 4 files changed, 43 insertions(+), 9 deletions(-) create mode 100644 vendor/github.com/hashicorp/go-version/go.mod diff --git a/vendor/github.com/hashicorp/go-version/README.md b/vendor/github.com/hashicorp/go-version/README.md index 6f3a15ce772..2ee50c503c1 100644 --- a/vendor/github.com/hashicorp/go-version/README.md +++ b/vendor/github.com/hashicorp/go-version/README.md @@ -1,5 +1,5 @@ # Versioning Library for Go -[![Build Status](https://travis-ci.org/hashicorp/go-version.svg?branch=master)](https://travis-ci.org/hashicorp/go-version) +[![Build Status](https://circleci.com/gh/hashicorp/go-version/tree/master.svg?style=svg)](https://circleci.com/gh/hashicorp/go-version/tree/master) go-version is a library for parsing versions and version constraints, and verifying versions against a set of constraints. go-version diff --git a/vendor/github.com/hashicorp/go-version/go.mod b/vendor/github.com/hashicorp/go-version/go.mod new file mode 100644 index 00000000000..f5285555fa8 --- /dev/null +++ b/vendor/github.com/hashicorp/go-version/go.mod @@ -0,0 +1 @@ +module github.com/hashicorp/go-version diff --git a/vendor/github.com/hashicorp/go-version/version.go b/vendor/github.com/hashicorp/go-version/version.go index 4d1e6e2210c..30454e1b435 100644 --- a/vendor/github.com/hashicorp/go-version/version.go +++ b/vendor/github.com/hashicorp/go-version/version.go @@ -10,14 +10,25 @@ import ( ) // The compiled regular expression used to test the validity of a version. -var versionRegexp *regexp.Regexp +var ( + versionRegexp *regexp.Regexp + semverRegexp *regexp.Regexp +) // The raw regular expression string used for testing the validity // of a version. -const VersionRegexpRaw string = `v?([0-9]+(\.[0-9]+)*?)` + - `(-([0-9]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)|(-?([A-Za-z\-~]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)))?` + - `(\+([0-9A-Za-z\-~]+(\.[0-9A-Za-z\-~]+)*))?` + - `?` +const ( + VersionRegexpRaw string = `v?([0-9]+(\.[0-9]+)*?)` + + `(-([0-9]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)|(-?([A-Za-z\-~]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)))?` + + `(\+([0-9A-Za-z\-~]+(\.[0-9A-Za-z\-~]+)*))?` + + `?` + + // SemverRegexpRaw requires a separator between version and prerelease + SemverRegexpRaw string = `v?([0-9]+(\.[0-9]+)*?)` + + `(-([0-9]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)|(-([A-Za-z\-~]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)))?` + + `(\+([0-9A-Za-z\-~]+(\.[0-9A-Za-z\-~]+)*))?` + + `?` +) // Version represents a single version. type Version struct { @@ -30,12 +41,24 @@ type Version struct { func init() { versionRegexp = regexp.MustCompile("^" + VersionRegexpRaw + "$") + semverRegexp = regexp.MustCompile("^" + SemverRegexpRaw + "$") } // NewVersion parses the given version and returns a new // Version. func NewVersion(v string) (*Version, error) { - matches := versionRegexp.FindStringSubmatch(v) + return newVersion(v, versionRegexp) +} + +// NewSemver parses the given version and returns a new +// Version that adheres strictly to SemVer specs +// https://semver.org/ +func NewSemver(v string) (*Version, error) { + return newVersion(v, semverRegexp) +} + +func newVersion(v string, pattern *regexp.Regexp) (*Version, error) { + matches := pattern.FindStringSubmatch(v) if matches == nil { return nil, fmt.Errorf("Malformed version: %s", v) } @@ -89,7 +112,7 @@ func Must(v *Version, err error) *Version { // or larger than the other version, respectively. // // If you want boolean results, use the LessThan, Equal, -// or GreaterThan methods. +// GreaterThan, GreaterThanOrEqual or LessThanOrEqual methods. func (v *Version) Compare(other *Version) int { // A quick, efficient equality check if v.String() == other.String() { @@ -265,11 +288,21 @@ func (v *Version) GreaterThan(o *Version) bool { return v.Compare(o) > 0 } +// GreaterThanOrEqual tests if this version is greater than or equal to another version. +func (v *Version) GreaterThanOrEqual(o *Version) bool { + return v.Compare(o) >= 0 +} + // LessThan tests if this version is less than another version. func (v *Version) LessThan(o *Version) bool { return v.Compare(o) < 0 } +// LessThanOrEqual tests if this version is less than or equal to another version. +func (v *Version) LessThanOrEqual(o *Version) bool { + return v.Compare(o) <= 0 +} + // Metadata returns any metadata that was part of the version // string. // diff --git a/vendor/vendor.json b/vendor/vendor.json index 75b74730147..12cb96d328c 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -225,7 +225,7 @@ {"path":"github.com/hashicorp/go-sockaddr/template","checksumSHA1":"PDp9DVLvf3KWxhs4G4DpIwauMSU=","revision":"6d291a969b86c4b633730bfc6b8b9d64c3aafed9","revisionTime":"2018-03-20T11:50:54Z"}, {"path":"github.com/hashicorp/go-syslog","checksumSHA1":"eEqQGKsFOdSAwEprYgYnL7+J2e0=","revision":"8d1874e3e8d1862b74e0536851e218c4571066a5","revisionTime":"2019-01-18T15:19:36Z","version":"v1.0.0","versionExact":"v1.0.0"}, {"path":"github.com/hashicorp/go-uuid","checksumSHA1":"5AxXPtBqAKyFGcttFzxT5hp/3Tk=","revision":"4f571afc59f3043a65f8fe6bf46d887b10a01d43","revisionTime":"2018-11-28T13:14:45Z"}, - {"path":"github.com/hashicorp/go-version","checksumSHA1":"r0pj5dMHCghpaQZ3f1BRGoKiSWw=","revision":"b5a281d3160aa11950a6182bd9a9dc2cb1e02d50","revisionTime":"2018-08-24T00:43:55Z"}, + {"path":"github.com/hashicorp/go-version","checksumSHA1":"+wX9Wh8280cHZMckQlOit3UrwbA=","revision":"2046c9d0f0b03c779670f5186a2a4b2c85493a71","revisionTime":"2019-10-09T19:36:37Z"}, {"path":"github.com/hashicorp/golang-lru","checksumSHA1":"d9PxF1XQGLMJZRct2R8qVM/eYlE=","revision":"a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4","revisionTime":"2016-02-07T21:47:19Z"}, {"path":"github.com/hashicorp/golang-lru/simplelru","checksumSHA1":"2nOpYjx8Sn57bqlZq17yM4YJuM4=","revision":"a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4"}, {"path":"github.com/hashicorp/hcl","checksumSHA1":"vgGv8zuy7q8c5LBAFO1fnnQRRgE=","revision":"1804807358d86424faacbb42f50f0c04303cef11","revisionTime":"2019-06-10T16:16:27Z"}, From 75d6d4ec5e13e8847751286195228b031bfb8c33 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Wed, 13 Nov 2019 15:36:15 -0800 Subject: [PATCH 047/241] core: add semver constraint The existing version constraint uses logic optimized for package managers, not schedulers, when checking prereleases: - 1.3.0-beta1 will *not* satisfy ">= 0.6.1" - 1.7.0-rc1 will *not* satisfy ">= 1.6.0-beta1" This is due to package managers wishing to favor final releases over prereleases. In a scheduler versions more often represent the earliest release all required features/APIs are available in a system. Whether the constraint or the version being evaluated are prereleases has no impact on ordering. This commit adds a new constraint - `semver` - which will use Semver v2.0 ordering when evaluating constraints. Given the above examples: - 1.3.0-beta1 satisfies ">= 0.6.1" using `semver` - 1.7.0-rc1 satisfies ">= 1.6.0-beta1" using `semver` Since existing jobspecs may rely on the old behavior, a new constraint was added and the implicit Consul Connect and Vault constraints were updated to use it. --- api/constraint.go | 1 + helper/constraints/semver/constraints.go | 147 ++++++++++++++++++ helper/constraints/semver/constraints_test.go | 125 +++++++++++++++ jobspec/parse.go | 16 ++ jobspec/parse_test.go | 5 + jobspec/test-fixtures/basic.hcl | 6 + nomad/job_endpoint.go | 6 + nomad/job_endpoint_hook_connect.go | 4 +- nomad/job_endpoint_hooks.go | 2 +- nomad/job_endpoint_test.go | 105 +++++++++++++ nomad/structs/structs.go | 10 ++ nomad/structs/structs_test.go | 13 +- scheduler/context.go | 26 +++- scheduler/feasible.go | 92 ++++++++--- scheduler/feasible_test.go | 82 +++++++++- 15 files changed, 603 insertions(+), 37 deletions(-) create mode 100644 helper/constraints/semver/constraints.go create mode 100644 helper/constraints/semver/constraints_test.go diff --git a/api/constraint.go b/api/constraint.go index 7b18ade9ffa..3233a3bfdcd 100644 --- a/api/constraint.go +++ b/api/constraint.go @@ -5,6 +5,7 @@ const ( ConstraintDistinctHosts = "distinct_hosts" ConstraintRegex = "regexp" ConstraintVersion = "version" + ConstraintSemver = "semver" ConstraintSetContains = "set_contains" ConstraintSetContainsAll = "set_contains_all" ConstraintSetContainsAny = "set_contains_any" diff --git a/helper/constraints/semver/constraints.go b/helper/constraints/semver/constraints.go new file mode 100644 index 00000000000..0a100623d32 --- /dev/null +++ b/helper/constraints/semver/constraints.go @@ -0,0 +1,147 @@ +// semver is a Semver Constraints package copied from +// github.com/hashicorp/go-version @ 2046c9d0f0b03c779670f5186a2a4b2c85493a71 +// +// Unlike Constraints in go-version, Semver constraints use Semver 2.0 ordering +// rules and only accept properly formatted Semver versions. +package semver + +import ( + "fmt" + "regexp" + "strings" + + "github.com/hashicorp/go-version" +) + +// Constraint represents a single constraint for a version, such as ">= +// 1.0". +type Constraint struct { + f constraintFunc + check *version.Version + original string +} + +// Constraints is a slice of constraints. We make a custom type so that +// we can add methods to it. +type Constraints []*Constraint + +type constraintFunc func(v, c *version.Version) bool + +var constraintOperators map[string]constraintFunc + +var constraintRegexp *regexp.Regexp + +func init() { + constraintOperators = map[string]constraintFunc{ + "": constraintEqual, + "=": constraintEqual, + "!=": constraintNotEqual, + ">": constraintGreaterThan, + "<": constraintLessThan, + ">=": constraintGreaterThanEqual, + "<=": constraintLessThanEqual, + } + + ops := make([]string, 0, len(constraintOperators)) + for k := range constraintOperators { + ops = append(ops, regexp.QuoteMeta(k)) + } + + constraintRegexp = regexp.MustCompile(fmt.Sprintf( + `^\s*(%s)\s*(%s)\s*$`, + strings.Join(ops, "|"), + version.SemverRegexpRaw)) +} + +// NewConstraint will parse one or more constraints from the given +// constraint string. The string must be a comma-separated list of constraints. +func NewConstraint(v string) (Constraints, error) { + vs := strings.Split(v, ",") + result := make([]*Constraint, len(vs)) + for i, single := range vs { + c, err := parseSingle(single) + if err != nil { + return nil, err + } + + result[i] = c + } + + return Constraints(result), nil +} + +// Check tests if a version satisfies all the constraints. +func (cs Constraints) Check(v *version.Version) bool { + for _, c := range cs { + if !c.Check(v) { + return false + } + } + + return true +} + +// Returns the string format of the constraints +func (cs Constraints) String() string { + csStr := make([]string, len(cs)) + for i, c := range cs { + csStr[i] = c.String() + } + + return strings.Join(csStr, ",") +} + +// Check tests if a constraint is validated by the given version. +func (c *Constraint) Check(v *version.Version) bool { + return c.f(v, c.check) +} + +func (c *Constraint) String() string { + return c.original +} + +func parseSingle(v string) (*Constraint, error) { + matches := constraintRegexp.FindStringSubmatch(v) + if matches == nil { + return nil, fmt.Errorf("Malformed constraint: %s", v) + } + + check, err := version.NewSemver(matches[2]) + if err != nil { + return nil, err + } + + return &Constraint{ + f: constraintOperators[matches[1]], + check: check, + original: v, + }, nil +} + +//------------------------------------------------------------------- +// Constraint functions +//------------------------------------------------------------------- + +func constraintEqual(v, c *version.Version) bool { + return v.Equal(c) +} + +func constraintNotEqual(v, c *version.Version) bool { + return !v.Equal(c) +} + +func constraintGreaterThan(v, c *version.Version) bool { + return v.Compare(c) == 1 +} + +func constraintLessThan(v, c *version.Version) bool { + return v.Compare(c) == -1 +} + +func constraintGreaterThanEqual(v, c *version.Version) bool { + return v.Compare(c) >= 0 +} + +func constraintLessThanEqual(v, c *version.Version) bool { + return v.Compare(c) <= 0 +} diff --git a/helper/constraints/semver/constraints_test.go b/helper/constraints/semver/constraints_test.go new file mode 100644 index 00000000000..0759414ae10 --- /dev/null +++ b/helper/constraints/semver/constraints_test.go @@ -0,0 +1,125 @@ +package semver + +import ( + "testing" + + "github.com/hashicorp/go-version" +) + +// This file is a copy of github.com/hashicorp/go-version/constraint_test.go +// with minimal changes to demonstrate differences. Diffing the files should +// illustrate behavior differences in Constraint and version.Constraint. + +func TestNewConstraint(t *testing.T) { + cases := []struct { + input string + count int + err bool + }{ + {">= 1.2", 1, false}, + {"1.0", 1, false}, + {">= 1.x", 0, true}, + {">= 1.2, < 1.0", 2, false}, + + // Out of bounds + {"11387778780781445675529500000000000000000", 0, true}, + + // Semver only + {">= 1.0beta1", 0, true}, + + // No pessimistic operator + {"~> 1.0", 0, true}, + } + + for _, tc := range cases { + v, err := NewConstraint(tc.input) + if tc.err && err == nil { + t.Fatalf("expected error for input: %s", tc.input) + } else if !tc.err && err != nil { + t.Fatalf("error for input %s: %s", tc.input, err) + } + + if len(v) != tc.count { + t.Fatalf("input: %s\nexpected len: %d\nactual: %d", + tc.input, tc.count, len(v)) + } + } +} + +func TestConstraintCheck(t *testing.T) { + cases := []struct { + constraint string + version string + check bool + }{ + {">= 1.0, < 1.2", "1.1.5", true}, + {"< 1.0, < 1.2", "1.1.5", false}, + {"= 1.0", "1.1.5", false}, + {"= 1.0", "1.0.0", true}, + {"1.0", "1.0.0", true}, + + // Pre-releases are ordered according to Semver v2 + {"> 2.0", "2.1.0-beta", true}, + {"> 2.1.0-a", "2.1.0-beta", true}, + {"> 2.1.0-a", "2.1.1-beta", true}, + {"> 2.0.0", "2.1.0-beta", true}, + {"> 2.1.0-a", "2.1.1", true}, + {"> 2.1.0-a", "2.1.1-beta", true}, + {"> 2.1.0-a", "2.1.0", true}, + {"<= 2.1.0-a", "2.0.0", true}, + {">= 0.6.1", "1.3.0-beta1", true}, + {"> 1.0-beta1", "1.0-rc1", true}, + + // Meta components are ignored according to Semver v2 + {">= 0.6.1", "1.3.0-beta1+ent", true}, + {">= 1.3.0-beta1", "1.3.0-beta1+ent", true}, + {"> 1.3.0-beta1+cgo", "1.3.0-beta1+ent", false}, + {"= 1.3.0-beta1+cgo", "1.3.0-beta1+ent", true}, + } + + for _, tc := range cases { + c, err := NewConstraint(tc.constraint) + if err != nil { + t.Fatalf("err: %s", err) + } + + v, err := version.NewSemver(tc.version) + if err != nil { + t.Fatalf("err: %s", err) + } + + actual := c.Check(v) + expected := tc.check + if actual != expected { + t.Fatalf("Version: %s\nConstraint: %s\nExpected: %#v", + tc.version, tc.constraint, expected) + } + } +} + +func TestConstraintsString(t *testing.T) { + cases := []struct { + constraint string + result string + }{ + {">= 1.0, < 1.2", ""}, + } + + for _, tc := range cases { + c, err := NewConstraint(tc.constraint) + if err != nil { + t.Fatalf("err: %s", err) + } + + actual := c.String() + expected := tc.result + if expected == "" { + expected = tc.constraint + } + + if actual != expected { + t.Fatalf("Constraint: %s\nExpected: %#v\nActual: %s", + tc.constraint, expected, actual) + } + } +} diff --git a/jobspec/parse.go b/jobspec/parse.go index 3cff938e5e2..7d386abd8a6 100644 --- a/jobspec/parse.go +++ b/jobspec/parse.go @@ -138,6 +138,7 @@ func parseConstraints(result *[]*api.Constraint, list *ast.ObjectList) error { "set_contains", "value", "version", + "semver", } if err := helper.CheckHCLKeys(o.Val, valid); err != nil { return err @@ -159,6 +160,13 @@ func parseConstraints(result *[]*api.Constraint, list *ast.ObjectList) error { m["RTarget"] = constraint } + // If "semver" is provided, set the operand + // to "semver" and the value to the "RTarget" + if constraint, ok := m[api.ConstraintSemver]; ok { + m["Operand"] = api.ConstraintSemver + m["RTarget"] = constraint + } + // If "regexp" is provided, set the operand // to "regexp" and the value to the "RTarget" if constraint, ok := m[api.ConstraintRegex]; ok { @@ -219,6 +227,7 @@ func parseAffinities(result *[]*api.Affinity, list *ast.ObjectList) error { "set_contains_all", "value", "version", + "semver", "weight", } if err := helper.CheckHCLKeys(o.Val, valid); err != nil { @@ -241,6 +250,13 @@ func parseAffinities(result *[]*api.Affinity, list *ast.ObjectList) error { m["RTarget"] = affinity } + // If "semver" is provided, set the operand + // to "semver" and the value to the "RTarget" + if affinity, ok := m[api.ConstraintSemver]; ok { + m["Operand"] = api.ConstraintSemver + m["RTarget"] = affinity + } + // If "regexp" is provided, set the operand // to "regexp" and the value to the "RTarget" if affinity, ok := m[api.ConstraintRegex]; ok { diff --git a/jobspec/parse_test.go b/jobspec/parse_test.go index 95a2b6cdc2d..407666bfd4a 100644 --- a/jobspec/parse_test.go +++ b/jobspec/parse_test.go @@ -43,6 +43,11 @@ func TestParse(t *testing.T) { RTarget: "windows", Operand: "=", }, + { + LTarget: "${attr.vault.version}", + RTarget: ">= 0.6.1", + Operand: "semver", + }, }, Affinities: []*api.Affinity{ diff --git a/jobspec/test-fixtures/basic.hcl b/jobspec/test-fixtures/basic.hcl index cbbd5d34939..19b8a596487 100644 --- a/jobspec/test-fixtures/basic.hcl +++ b/jobspec/test-fixtures/basic.hcl @@ -16,6 +16,12 @@ job "binstore-storagelocker" { value = "windows" } + constraint { + attribute = "${attr.vault.version}" + value = ">= 0.6.1" + operator = "semver" + } + affinity { attribute = "${meta.team}" value = "mobile" diff --git a/nomad/job_endpoint.go b/nomad/job_endpoint.go index 7f425930c9d..4e368386a08 100644 --- a/nomad/job_endpoint.go +++ b/nomad/job_endpoint.go @@ -951,6 +951,12 @@ func (j *Job) Allocations(args *structs.JobSpecificRequest, return structs.ErrPermissionDenied } + // Ensure JobID is set otherwise everything works and never returns + // allocations which can hide bugs in request code. + if args.JobID == "" { + return fmt.Errorf("missing job ID") + } + // Setup the blocking query opts := blockingOptions{ queryOpts: &args.QueryOptions, diff --git a/nomad/job_endpoint_hook_connect.go b/nomad/job_endpoint_hook_connect.go index 1c858398f92..9a670c5d8a8 100644 --- a/nomad/job_endpoint_hook_connect.go +++ b/nomad/job_endpoint_hook_connect.go @@ -35,8 +35,8 @@ var ( connectVersionConstraint = func() *structs.Constraint { return &structs.Constraint{ LTarget: "${attr.consul.version}", - RTarget: ">= 1.6.0beta1", - Operand: "version", + RTarget: ">= 1.6.0-beta1", + Operand: structs.ConstraintSemver, } } ) diff --git a/nomad/job_endpoint_hooks.go b/nomad/job_endpoint_hooks.go index 3040a8449cc..443dee42956 100644 --- a/nomad/job_endpoint_hooks.go +++ b/nomad/job_endpoint_hooks.go @@ -21,7 +21,7 @@ var ( vaultConstraint = &structs.Constraint{ LTarget: vaultConstraintLTarget, RTarget: ">= 0.6.1", - Operand: structs.ConstraintVersion, + Operand: structs.ConstraintSemver, } ) diff --git a/nomad/job_endpoint_test.go b/nomad/job_endpoint_test.go index 5367311d324..b8370a56c5b 100644 --- a/nomad/job_endpoint_test.go +++ b/nomad/job_endpoint_test.go @@ -718,6 +718,7 @@ func TestJobEndpoint_Register_Dispatched(t *testing.T) { require.Error(err) require.Contains(err.Error(), "job can't be submitted with 'Dispatched'") } + func TestJobEndpoint_Register_EnforceIndex(t *testing.T) { t.Parallel() s1 := TestServer(t, func(c *Config) { @@ -1178,6 +1179,87 @@ func TestJobEndpoint_Register_Vault_Policies(t *testing.T) { } } +// TestJobEndpoint_Register_SemverConstraint asserts that semver ordering is +// used when evaluating semver constraints. +func TestJobEndpoint_Register_SemverConstraint(t *testing.T) { + t.Parallel() + s1 := TestServer(t, nil) + defer s1.Shutdown() + codec := rpcClient(t, s1) + testutil.WaitForLeader(t, s1.RPC) + state := s1.State() + + // Create a job with a semver constraint + job := mock.Job() + job.Constraints = []*structs.Constraint{ + { + LTarget: "${attr.vault.version}", + RTarget: ">= 0.6.1", + Operand: structs.ConstraintSemver, + }, + } + job.TaskGroups[0].Count = 1 + + // Insert 2 Nodes, 1 matching the constraint, 1 not + node1 := mock.Node() + node1.Attributes["vault.version"] = "1.3.0-beta1+ent" + node1.ComputeClass() + require.NoError(t, state.UpsertNode(1, node1)) + + node2 := mock.Node() + delete(node2.Attributes, "vault.version") + node2.ComputeClass() + require.NoError(t, state.UpsertNode(2, node2)) + + // Create the register request + req := &structs.JobRegisterRequest{ + Job: job, + WriteRequest: structs.WriteRequest{ + Region: "global", + Namespace: job.Namespace, + }, + } + + // Fetch the response + var resp structs.JobRegisterResponse + require.NoError(t, msgpackrpc.CallWithCodec(codec, "Job.Register", req, &resp)) + require.NotZero(t, resp.Index) + + // Wait for placements + allocReq := &structs.JobSpecificRequest{ + JobID: job.ID, + QueryOptions: structs.QueryOptions{ + Region: "global", + Namespace: structs.DefaultNamespace, + }, + } + + testutil.WaitForResult(func() (bool, error) { + resp := structs.JobAllocationsResponse{} + err := msgpackrpc.CallWithCodec(codec, "Job.Allocations", allocReq, &resp) + if err != nil { + return false, err + } + if n := len(resp.Allocations); n != 1 { + return false, fmt.Errorf("expected 1 alloc, found %d", n) + } + alloc := resp.Allocations[0] + if alloc.NodeID != node1.ID { + return false, fmt.Errorf("expected alloc to be one node=%q but found node=%q", + node1.ID, alloc.NodeID) + } + return true, nil + }, func(waitErr error) { + evals, err := state.EvalsByJob(nil, structs.DefaultNamespace, job.ID) + require.NoError(t, err) + for i, e := range evals { + t.Logf("%d Eval: %s", i, pretty.Sprint(e)) + } + + require.NoError(t, waitErr) + }) +} + func TestJobEndpoint_Revert(t *testing.T) { t.Parallel() s1 := TestServer(t, func(c *Config) { @@ -3712,6 +3794,29 @@ func TestJobEndpoint_Allocations_Blocking(t *testing.T) { } } +// TestJobEndpoint_Allocations_NoJobID asserts not setting a JobID in the +// request returns an error. +func TestJobEndpoint_Allocations_NoJobID(t *testing.T) { + t.Parallel() + s1 := TestServer(t, nil) + defer s1.Shutdown() + codec := rpcClient(t, s1) + testutil.WaitForLeader(t, s1.RPC) + + get := &structs.JobSpecificRequest{ + JobID: "", + QueryOptions: structs.QueryOptions{ + Region: "global", + Namespace: structs.DefaultNamespace, + }, + } + + var resp structs.JobAllocationsResponse + err := msgpackrpc.CallWithCodec(codec, "Job.Allocations", get, &resp) + require.Error(t, err) + require.Contains(t, err.Error(), "missing job ID") +} + func TestJobEndpoint_Evaluations(t *testing.T) { t.Parallel() s1 := TestServer(t, nil) diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index ba806bc2cea..f1d38b3a67f 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -30,6 +30,7 @@ import ( "github.com/hashicorp/nomad/acl" "github.com/hashicorp/nomad/helper" "github.com/hashicorp/nomad/helper/args" + "github.com/hashicorp/nomad/helper/constraints/semver" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/lib/kheap" psstructs "github.com/hashicorp/nomad/plugins/shared/structs" @@ -6619,6 +6620,7 @@ const ( ConstraintDistinctHosts = "distinct_hosts" ConstraintRegex = "regexp" ConstraintVersion = "version" + ConstraintSemver = "semver" ConstraintSetContains = "set_contains" ConstraintSetContainsAll = "set_contains_all" ConstraintSetContainsAny = "set_contains_any" @@ -6689,6 +6691,10 @@ func (c *Constraint) Validate() error { if _, err := version.NewConstraint(c.RTarget); err != nil { mErr.Errors = append(mErr.Errors, fmt.Errorf("Version constraint is invalid: %v", err)) } + case ConstraintSemver: + if _, err := semver.NewConstraint(c.RTarget); err != nil { + mErr.Errors = append(mErr.Errors, fmt.Errorf("Semver constraint is invalid: %v", err)) + } case ConstraintDistinctProperty: // If a count is set, make sure it is convertible to a uint64 if c.RTarget != "" { @@ -6803,6 +6809,10 @@ func (a *Affinity) Validate() error { if _, err := version.NewConstraint(a.RTarget); err != nil { mErr.Errors = append(mErr.Errors, fmt.Errorf("Version affinity is invalid: %v", err)) } + case ConstraintSemver: + if _, err := semver.NewConstraint(a.RTarget); err != nil { + mErr.Errors = append(mErr.Errors, fmt.Errorf("Semver affinity is invalid: %v", err)) + } case "=", "==", "is", "!=", "not", "<", "<=", ">", ">=": if a.RTarget == "" { mErr.Errors = append(mErr.Errors, fmt.Errorf("Operator %q requires an RTarget", a.Operand)) diff --git a/nomad/structs/structs_test.go b/nomad/structs/structs_test.go index 6a1c4fc4d3b..808e768cc1b 100644 --- a/nomad/structs/structs_test.go +++ b/nomad/structs/structs_test.go @@ -1827,9 +1827,7 @@ func TestConstraint_Validate(t *testing.T) { Operand: "=", } err = c.Validate() - if err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, err) // Perform additional regexp validation c.Operand = ConstraintRegex @@ -1849,6 +1847,15 @@ func TestConstraint_Validate(t *testing.T) { t.Fatalf("err: %s", err) } + // Perform semver validation + c.Operand = ConstraintSemver + err = c.Validate() + require.Error(t, err) + require.Contains(t, err.Error(), "Malformed constraint") + + c.RTarget = ">= 0.6.1" + require.NoError(t, c.Validate()) + // Perform distinct_property validation c.Operand = ConstraintDistinctProperty c.RTarget = "0" diff --git a/scheduler/context.go b/scheduler/context.go index e62509a82dd..e38ae5b0f31 100644 --- a/scheduler/context.go +++ b/scheduler/context.go @@ -5,7 +5,6 @@ import ( log "github.com/hashicorp/go-hclog" memdb "github.com/hashicorp/go-memdb" - version "github.com/hashicorp/go-version" "github.com/hashicorp/nomad/nomad/structs" ) @@ -35,7 +34,10 @@ type Context interface { RegexpCache() map[string]*regexp.Regexp // VersionConstraintCache is a cache of version constraints - VersionConstraintCache() map[string]version.Constraints + VersionConstraintCache() map[string]VerConstraints + + // SemverConstraintCache is a cache of semver constraints + SemverConstraintCache() map[string]VerConstraints // Eligibility returns a tracker for node eligibility in the context of the // eval. @@ -44,8 +46,9 @@ type Context interface { // EvalCache is used to cache certain things during an evaluation type EvalCache struct { - reCache map[string]*regexp.Regexp - constraintCache map[string]version.Constraints + reCache map[string]*regexp.Regexp + versionCache map[string]VerConstraints + semverCache map[string]VerConstraints } func (e *EvalCache) RegexpCache() map[string]*regexp.Regexp { @@ -55,11 +58,18 @@ func (e *EvalCache) RegexpCache() map[string]*regexp.Regexp { return e.reCache } -func (e *EvalCache) VersionConstraintCache() map[string]version.Constraints { - if e.constraintCache == nil { - e.constraintCache = make(map[string]version.Constraints) +func (e *EvalCache) VersionConstraintCache() map[string]VerConstraints { + if e.versionCache == nil { + e.versionCache = make(map[string]VerConstraints) + } + return e.versionCache +} + +func (e *EvalCache) SemverConstraintCache() map[string]VerConstraints { + if e.semverCache == nil { + e.semverCache = make(map[string]VerConstraints) } - return e.constraintCache + return e.semverCache } // EvalContext is a Context used during an Evaluation diff --git a/scheduler/feasible.go b/scheduler/feasible.go index 143e16d62ef..fbe184bb3b5 100644 --- a/scheduler/feasible.go +++ b/scheduler/feasible.go @@ -8,6 +8,7 @@ import ( "strings" version "github.com/hashicorp/go-version" + "github.com/hashicorp/nomad/helper/constraints/semver" "github.com/hashicorp/nomad/nomad/structs" psstructs "github.com/hashicorp/nomad/plugins/shared/structs" ) @@ -551,7 +552,11 @@ func checkConstraint(ctx Context, operand string, lVal, rVal interface{}, lFound case structs.ConstraintAttributeIsNotSet: return !lFound case structs.ConstraintVersion: - return lFound && rFound && checkVersionMatch(ctx, lVal, rVal) + parser := newVersionConstraintParser(ctx) + return lFound && rFound && checkVersionMatch(ctx, parser, lVal, rVal) + case structs.ConstraintSemver: + parser := newSemverConstraintParser(ctx) + return lFound && rFound && checkVersionMatch(ctx, parser, lVal, rVal) case structs.ConstraintRegex: return lFound && rFound && checkRegexpMatch(ctx, lVal, rVal) case structs.ConstraintSetContains, structs.ConstraintSetContainsAll: @@ -601,7 +606,7 @@ func checkLexicalOrder(op string, lVal, rVal interface{}) bool { // checkVersionMatch is used to compare a version on the // left hand side with a set of constraints on the right hand side -func checkVersionMatch(ctx Context, lVal, rVal interface{}) bool { +func checkVersionMatch(ctx Context, parse verConstraintParser, lVal, rVal interface{}) bool { // Parse the version var versionStr string switch v := lVal.(type) { @@ -625,17 +630,10 @@ func checkVersionMatch(ctx Context, lVal, rVal interface{}) bool { return false } - // Check the cache for a match - cache := ctx.VersionConstraintCache() - constraints := cache[constraintStr] - // Parse the constraints + constraints := parse(constraintStr) if constraints == nil { - constraints, err = version.NewConstraint(constraintStr) - if err != nil { - return false - } - cache[constraintStr] = constraints + return false } // Check the constraints against the version @@ -644,7 +642,7 @@ func checkVersionMatch(ctx Context, lVal, rVal interface{}) bool { // checkAttributeVersionMatch is used to compare a version on the // left hand side with a set of constraints on the right hand side -func checkAttributeVersionMatch(ctx Context, lVal, rVal *psstructs.Attribute) bool { +func checkAttributeVersionMatch(ctx Context, parse verConstraintParser, lVal, rVal *psstructs.Attribute) bool { // Parse the version var versionStr string if s, ok := lVal.GetString(); ok { @@ -667,17 +665,10 @@ func checkAttributeVersionMatch(ctx Context, lVal, rVal *psstructs.Attribute) bo return false } - // Check the cache for a match - cache := ctx.VersionConstraintCache() - constraints := cache[constraintStr] - // Parse the constraints + constraints := parse(constraintStr) if constraints == nil { - constraints, err = version.NewConstraint(constraintStr) - if err != nil { - return false - } - cache[constraintStr] = constraints + return false } // Check the constraints against the version @@ -1119,7 +1110,17 @@ func checkAttributeConstraint(ctx Context, operand string, lVal, rVal *psstructs return false } - return checkAttributeVersionMatch(ctx, lVal, rVal) + parser := newVersionConstraintParser(ctx) + return checkAttributeVersionMatch(ctx, parser, lVal, rVal) + + case structs.ConstraintSemver: + if !(lFound && rFound) { + return false + } + + parser := newSemverConstraintParser(ctx) + return checkAttributeVersionMatch(ctx, parser, lVal, rVal) + case structs.ConstraintRegex: if !(lFound && rFound) { return false @@ -1164,3 +1165,50 @@ func checkAttributeConstraint(ctx Context, operand string, lVal, rVal *psstructs } } + +// VerConstraints is the interface implemented by both go-verson constraints +// and semver constraints. +type VerConstraints interface { + Check(v *version.Version) bool + String() string +} + +// verConstraintParser returns a version constraints implementation (go-version +// or semver). +type verConstraintParser func(verConstraint string) VerConstraints + +func newVersionConstraintParser(ctx Context) verConstraintParser { + cache := ctx.VersionConstraintCache() + + return func(cstr string) VerConstraints { + if c := cache[cstr]; c != nil { + return c + } + + constraints, err := version.NewConstraint(cstr) + if err != nil { + return nil + } + cache[cstr] = constraints + + return constraints + } +} + +func newSemverConstraintParser(ctx Context) verConstraintParser { + cache := ctx.SemverConstraintCache() + + return func(cstr string) VerConstraints { + if c := cache[cstr]; c != nil { + return c + } + + constraints, err := semver.NewConstraint(cstr) + if err != nil { + return nil + } + cache[cstr] = constraints + + return constraints + } +} diff --git a/scheduler/feasible_test.go b/scheduler/feasible_test.go index cc6ca022b6e..62b39acf89a 100644 --- a/scheduler/feasible_test.go +++ b/scheduler/feasible_test.go @@ -708,6 +708,8 @@ func TestCheckLexicalOrder(t *testing.T) { } func TestCheckVersionConstraint(t *testing.T) { + t.Parallel() + type tcase struct { lVal, rVal interface{} result bool @@ -733,15 +735,93 @@ func TestCheckVersionConstraint(t *testing.T) { lVal: 1, rVal: "~> 1.0", result: true, }, + { + // Prereleases are never > final releases + lVal: "1.3.0-beta1", rVal: ">= 0.6.1", + result: false, + }, + { + // Prerelease X.Y.Z must match + lVal: "1.7.0-alpha1", rVal: ">= 1.6.0-beta1", + result: false, + }, + { + // Meta is ignored + lVal: "1.3.0-beta1+ent", rVal: "= 1.3.0-beta1", + result: true, + }, } for _, tc := range cases { _, ctx := testContext(t) - if res := checkVersionMatch(ctx, tc.lVal, tc.rVal); res != tc.result { + p := newVersionConstraintParser(ctx) + if res := checkVersionMatch(ctx, p, tc.lVal, tc.rVal); res != tc.result { t.Fatalf("TC: %#v, Result: %v", tc, res) } } } +func TestCheckSemverConstraint(t *testing.T) { + t.Parallel() + + type tcase struct { + name string + lVal, rVal interface{} + result bool + } + cases := []tcase{ + { + name: "Pessimistic operator always fails 1", + lVal: "1.2.3", rVal: "~> 1.0", + result: false, + }, + { + name: "1.2.3 does satisfy >= 1.0, < 1.4", + lVal: "1.2.3", rVal: ">= 1.0, < 1.4", + result: true, + }, + { + name: "Pessimistic operator always fails 2", + lVal: "2.0.1", rVal: "~> 1.0", + result: false, + }, + { + name: "1.4 does not satisfy >= 1.0, < 1.4", + lVal: "1.4", rVal: ">= 1.0, < 1.4", + result: false, + }, + { + name: "Pessimistic operator always fails 3", + lVal: 1, rVal: "~> 1.0", + result: false, + }, + { + name: "Prereleases are handled according to semver 1", + lVal: "1.3.0-beta1", rVal: ">= 0.6.1", + result: true, + }, + { + name: "Prereleases are handled according to semver 2", + lVal: "1.7.0-alpha1", rVal: ">= 1.6.0-beta1", + result: true, + }, + { + name: "Meta is ignored according to semver", + lVal: "1.3.0-beta1+ent", rVal: "= 1.3.0-beta1", + result: true, + }, + } + + for _, tc := range cases { + tc := tc + t.Run(tc.name, func(t *testing.T) { + _, ctx := testContext(t) + p := newSemverConstraintParser(ctx) + actual := checkVersionMatch(ctx, p, tc.lVal, tc.rVal) + require.Equal(t, tc.result, actual) + }) + } +} + func TestCheckRegexpConstraint(t *testing.T) { type tcase struct { lVal, rVal interface{} From b228f4a51c227d627d20f69900385fda35a9a2c4 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Tue, 19 Nov 2019 11:20:07 -0600 Subject: [PATCH 048/241] Docs: correct that exec task flag is not optional (#6729) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The task is required, not optional, there’s no default as was described. --- website/source/docs/commands/alloc/exec.html.md.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/commands/alloc/exec.html.md.erb b/website/source/docs/commands/alloc/exec.html.md.erb index 9a7c552aa8f..95f4e51cbe6 100644 --- a/website/source/docs/commands/alloc/exec.html.md.erb +++ b/website/source/docs/commands/alloc/exec.html.md.erb @@ -34,7 +34,7 @@ the given job will be chosen. ## Exec Options -- `-task`: Sets the task to exec command in. Defaults to first task. +- `-task`: Sets the task to exec command in. - `-job`: Use a random allocation from the specified job ID. From 88a9877a071574240d81c25060aaf83aeb604531 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Tue, 19 Nov 2019 10:26:25 -0800 Subject: [PATCH 049/241] docs: document semver constraint operator --- CHANGELOG.md | 1 + .../docs/job-specification/constraint.html.md | 21 ++++++++++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b15f713c1ec..497a99f0a1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ IMPROVEMENTS: BUG FIXES: * core: Ignore `server` config values if `server` is disabled [[GH-6047](https://github.com/hashicorp/nomad/issues/6047)] + * core: Added `semver` constraint for strict Semver 2.0 version comparisons [[GH-6699](https://github.com/hashicorp/nomad/issues/6699)] * api: Return a 404 if endpoint not found instead of redirecting to /ui/ [[GH-6658](https://github.com/hashicorp/nomad/issues/6658)] * api: Decompress web socket response body if gzipped on error responses [[GH-6650](https://github.com/hashicorp/nomad/issues/6650)] * api: Fixed a bug where some FS/Allocation API endpoints didn't return error messages [[GH-6427](https://github.com/hashicorp/nomad/issues/6427)] diff --git a/website/source/docs/job-specification/constraint.html.md b/website/source/docs/job-specification/constraint.html.md index 52c364400e3..db3ea4eff14 100644 --- a/website/source/docs/job-specification/constraint.html.md +++ b/website/source/docs/job-specification/constraint.html.md @@ -85,6 +85,7 @@ all groups (and tasks) in the job. regexp set_contains version + semver is_set is_not_set ``` @@ -186,7 +187,10 @@ constraint { - `"version"` - Specifies a version constraint against the attribute. This supports a comma-separated list of constraints, including the pessimistic - operator. For more examples please see the [go-version + operator. `version` will not consider a prerelease (eg `1.6.0-beta`) + sufficient to match a non-prerelease constraint (eg `>= 1.0`). Use the + `semver` constraint for strict [Semantic Versioning 2.0][semver2] ordering. + For more examples please see the [go-version repository](https://github.com/hashicorp/go-version) for more specific examples. @@ -198,6 +202,20 @@ constraint { } ``` +- `"semver"` - Specifies a version constraint against the attribute. Only + [Semantic Versioning 2.0][semver2] compliant versions and comparison + operators are supported, so there is no pessimistic operator. Unlike `version`, + this operator considers prereleases (eg `1.6.0-beta`) sufficient to satisfy + non-prerelease constraints (eg `>= 1.0`). _Added in Nomad v0.10.2._ + + ```hcl + constraint { + attribute = "..." + operator = "semver" + value = ">= 0.1.0, < 0.2" + } + ``` + - `"is_set"` - Specifies that a given attribute must be present. This can be combined with the `"!="` operator to require that an attribute has been set before checking for equality. The default behavior for `"!="` is to include @@ -289,3 +307,4 @@ constraint { [interpolation]: /docs/runtime/interpolation.html "Nomad interpolation" [node-variables]: /docs/runtime/interpolation.html#node-variables- "Nomad interpolation-Node variables" [client-meta]: /docs/configuration/client.html#custom-metadata-network-speed-and-node-class "Nomad Custom Metadata, Network Speed, and Node Class" +[semver2]: https://semver.org/spec/v2.0.0.html "Semantic Versioning 2.0" From 89964c989a721e5c32a881815b17c3d11980d85f Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Tue, 19 Nov 2019 13:34:41 -0500 Subject: [PATCH 050/241] Removes checking constraints for inplace update --- scheduler/util.go | 37 ---------------------- scheduler/util_test.go | 71 +----------------------------------------- 2 files changed, 1 insertion(+), 107 deletions(-) diff --git a/scheduler/util.go b/scheduler/util.go index 4e6fdc01ddf..4b6aa46b2f3 100644 --- a/scheduler/util.go +++ b/scheduler/util.go @@ -363,11 +363,6 @@ func tasksUpdated(jobA, jobB *structs.Job, taskGroup string) bool { return true } - // Check Constraints - if constraintsUpdated(jobA, jobB, taskGroup) { - return true - } - // Check Spreads if spreadsUpdated(jobA, jobB, taskGroup) { return true @@ -491,38 +486,6 @@ func affinitiesUpdated(jobA, jobB *structs.Job, taskGroup string) bool { return !reflect.DeepEqual(aAffinities, bAffinities) } -func constraintsUpdated(jobA, jobB *structs.Job, taskGroup string) bool { - var aConstraints []*structs.Constraint - var bConstraints []*structs.Constraint - - tgA := jobA.LookupTaskGroup(taskGroup) - tgB := jobB.LookupTaskGroup(taskGroup) - - // Append jobA job and task group level constraints - aConstraints = append(aConstraints, jobA.Constraints...) - aConstraints = append(aConstraints, tgA.Constraints...) - - // Append jobB job and task group level constraints - bConstraints = append(bConstraints, jobB.Constraints...) - bConstraints = append(bConstraints, tgB.Constraints...) - - // Append task constraints - for _, task := range tgA.Tasks { - aConstraints = append(aConstraints, task.Constraints...) - } - - for _, task := range tgB.Tasks { - bConstraints = append(bConstraints, task.Constraints...) - } - - // Check for equality - if len(aConstraints) != len(bConstraints) { - return true - } - - return !reflect.DeepEqual(aConstraints, bConstraints) -} - func spreadsUpdated(jobA, jobB *structs.Job, taskGroup string) bool { var aSpreads []*structs.Spread var bSpreads []*structs.Spread diff --git a/scheduler/util_test.go b/scheduler/util_test.go index f6d6d56ca05..8114fa600ed 100644 --- a/scheduler/util_test.go +++ b/scheduler/util_test.go @@ -427,7 +427,7 @@ func TestTaskUpdatedAffinity(t *testing.T) { require.True(t, tasksUpdated(j1, j4, name)) - // check different level of same constraint + // check different level of same affinity j5 := mock.Job() j5.Affinities = []*structs.Affinity{ { @@ -452,75 +452,6 @@ func TestTaskUpdatedAffinity(t *testing.T) { require.False(t, tasksUpdated(j5, j6, name)) } -func TestTaskUpdated_Constraint(t *testing.T) { - j1 := mock.Job() - j1.Constraints = make([]*structs.Constraint, 0) - - j2 := mock.Job() - j2.Constraints = make([]*structs.Constraint, 0) - - name := j1.TaskGroups[0].Name - require.False(t, tasksUpdated(j1, j2, name)) - - // TaskGroup Constraint - j2.TaskGroups[0].Constraints = []*structs.Constraint{ - { - LTarget: "kernel", - RTarget: "linux", - Operand: "=", - }, - } - - // TaskGroup Task Constraint - j3 := mock.Job() - j3.Constraints = make([]*structs.Constraint, 0) - - j3.TaskGroups[0].Tasks[0].Constraints = []*structs.Constraint{ - { - LTarget: "kernel", - RTarget: "linux", - Operand: "=", - }, - } - - require.True(t, tasksUpdated(j1, j3, name)) - - j4 := mock.Job() - j4.Constraints = make([]*structs.Constraint, 0) - - j4.TaskGroups[0].Tasks[0].Constraints = []*structs.Constraint{ - { - LTarget: "kernel", - RTarget: "linux", - Operand: "=", - }, - } - - require.True(t, tasksUpdated(j1, j4, name)) - - // check different level of same constraint - j5 := mock.Job() - j5.Constraints = []*structs.Constraint{ - { - LTarget: "kernel", - RTarget: "linux", - Operand: "=", - }, - } - - j6 := mock.Job() - j6.Constraints = make([]*structs.Constraint, 0) - j6.TaskGroups[0].Constraints = []*structs.Constraint{ - { - LTarget: "kernel", - RTarget: "linux", - Operand: "=", - }, - } - - require.False(t, tasksUpdated(j5, j6, name)) -} - func TestTaskUpdatedSpread(t *testing.T) { j1 := mock.Job() j2 := mock.Job() From ecd4ed1bdddf64b1a62d4fac9b989698025f14d9 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Tue, 19 Nov 2019 10:59:40 -0800 Subject: [PATCH 051/241] test: assert semvers are *not* compared lexically --- helper/constraints/semver/constraints_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helper/constraints/semver/constraints_test.go b/helper/constraints/semver/constraints_test.go index 0759414ae10..5c50d49d603 100644 --- a/helper/constraints/semver/constraints_test.go +++ b/helper/constraints/semver/constraints_test.go @@ -58,6 +58,9 @@ func TestConstraintCheck(t *testing.T) { {"= 1.0", "1.0.0", true}, {"1.0", "1.0.0", true}, + // Assert numbers are *not* compared lexically as in #4729 + {"> 10", "8", false}, + // Pre-releases are ordered according to Semver v2 {"> 2.0", "2.1.0-beta", true}, {"> 2.1.0-a", "2.1.0-beta", true}, From bdef161e209373c5b8474d760415c4657522897e Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Tue, 19 Nov 2019 15:51:08 -0500 Subject: [PATCH 052/241] changelog and comment --- CHANGELOG.md | 1 + drivers/exec/driver_test.go | 2 ++ drivers/rawexec/driver_unix_test.go | 2 ++ 3 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4eb88c4955..e64fc4cf45e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ BUG FIXES: * cli: Make scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] + * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)] * driver/docker: Added mechanism for detecting running unexpectedly running docker containers [[GH-6325](https://github.com/hashicorp/nomad/issues/6325)] * nomad: Multiple connect enabled services in the same taskgroup failed to register [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] diff --git a/drivers/exec/driver_test.go b/drivers/exec/driver_test.go index 2959248217b..747fac64764 100644 --- a/drivers/exec/driver_test.go +++ b/drivers/exec/driver_test.go @@ -254,6 +254,8 @@ func TestExecDriver_StartWaitRecover(t *testing.T) { require.NoError(harness.DestroyTask(task.ID, true)) } +// TestExecDriver_DestroyKillsAll asserts that when TaskDestroy is called all +// task processes are cleaned up. func TestExecDriver_DestroyKillsAll(t *testing.T) { t.Parallel() require := require.New(t) diff --git a/drivers/rawexec/driver_unix_test.go b/drivers/rawexec/driver_unix_test.go index 1ffcbda55bc..77bb7c4acc7 100644 --- a/drivers/rawexec/driver_unix_test.go +++ b/drivers/rawexec/driver_unix_test.go @@ -200,6 +200,8 @@ func TestRawExecDriver_StartWaitStop(t *testing.T) { require.NoError(harness.DestroyTask(task.ID, true)) } +// TestRawExecDriver_DestroyKillsAll asserts that when TaskDestroy is called all +// task processes are cleaned up. func TestRawExecDriver_DestroyKillsAll(t *testing.T) { t.Parallel() From fd66b9c9ab75d34bfcdb5ea71ce4fb6cc8e9ce92 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 4 Oct 2019 10:08:03 -0400 Subject: [PATCH 053/241] api: acl bootstrap errors aren't 500 Noticed that ACL endpoints return 500 status code for user errors. This is confusing and can lead to false monitoring alerts. Here, I introduce a concept of RPCCoded errors to be returned by RPC that signal a code in addition to error message. Codes for now match HTTP codes to ease reasoning. ``` $ nomad acl bootstrap Error bootstrapping: Unexpected response code: 500 (ACL bootstrap already done (reset index: 9)) $ nomad acl bootstrap Error bootstrapping: Unexpected response code: 400 (ACL bootstrap already done (reset index: 9)) ``` --- command/agent/http.go | 3 +++ nomad/acl_endpoint.go | 36 +++++++++++++------------- nomad/acl_endpoint_test.go | 2 +- nomad/structs/errors.go | 31 +++++++++++++++++++++++ nomad/structs/errors_test.go | 49 ++++++++++++++++++++++++++++++++++++ 5 files changed, 102 insertions(+), 19 deletions(-) create mode 100644 nomad/structs/errors_test.go diff --git a/command/agent/http.go b/command/agent/http.go index cb18c7f31e5..01caac0cd32 100644 --- a/command/agent/http.go +++ b/command/agent/http.go @@ -304,6 +304,9 @@ func (s *HTTPServer) wrap(handler func(resp http.ResponseWriter, req *http.Reque errMsg := err.Error() if http, ok := err.(HTTPCodedError); ok { code = http.Code() + } else if ecode, emsg, ok := structs.CodeFromRPCCodedErr(err); ok { + code = ecode + errMsg = emsg } else { // RPC errors get wrapped, so manually unwrap by only looking at their suffix if strings.HasSuffix(errMsg, structs.ErrPermissionDenied.Error()) { diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index 7c382e4dcb9..09f187f2c16 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -18,7 +18,7 @@ import ( var ( // aclDisabled is returned when an ACL endpoint is hit but ACLs are not enabled - aclDisabled = fmt.Errorf("ACL support disabled") + aclDisabled = structs.NewErrRPCCoded(400, "ACL support disabled") ) const ( @@ -55,13 +55,13 @@ func (a *ACL) UpsertPolicies(args *structs.ACLPolicyUpsertRequest, reply *struct // Validate non-zero set of policies if len(args.Policies) == 0 { - return fmt.Errorf("must specify as least one policy") + return structs.NewErrRPCCoded(400, "must specify as least one policy") } // Validate each policy, compute hash for idx, policy := range args.Policies { if err := policy.Validate(); err != nil { - return fmt.Errorf("policy %d invalid: %v", idx, err) + return structs.NewErrRPCCodedf(404, "policy %d invalid: %v", idx, err) } policy.SetHash() } @@ -99,7 +99,7 @@ func (a *ACL) DeletePolicies(args *structs.ACLPolicyDeleteRequest, reply *struct // Validate non-zero set of policies if len(args.Names) == 0 { - return fmt.Errorf("must specify as least one policy") + return structs.NewErrRPCCoded(400, "must specify as least one policy") } // Update via Raft @@ -370,9 +370,9 @@ func (a *ACL) Bootstrap(args *structs.ACLTokenBootstrapRequest, reply *structs.A // Check if there is a reset index specified specifiedIndex := a.fileBootstrapResetIndex() if specifiedIndex == 0 { - return fmt.Errorf("ACL bootstrap already done (reset index: %d)", resetIdx) + return structs.NewErrRPCCodedf(400, "ACL bootstrap already done (reset index: %d)", resetIdx) } else if specifiedIndex != resetIdx { - return fmt.Errorf("Invalid bootstrap reset index (specified %d, reset index: %d)", specifiedIndex, resetIdx) + return structs.NewErrRPCCodedf(400, "Invalid bootstrap reset index (specified %d, reset index: %d)", specifiedIndex, resetIdx) } // Setup the reset index to allow bootstrapping again @@ -404,7 +404,7 @@ func (a *ACL) Bootstrap(args *structs.ACLTokenBootstrapRequest, reply *structs.A } out, err := state.ACLTokenByAccessorID(nil, args.Token.AccessorID) if err != nil { - return fmt.Errorf("token lookup failed: %v", err) + return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err) } reply.Tokens = append(reply.Tokens, out) @@ -448,7 +448,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A // Validate non-zero set of tokens if len(args.Tokens) == 0 { - return fmt.Errorf("must specify as least one token") + return structs.NewErrRPCCoded(400, "must specify as least one token") } // Force the request to the authoritative region if we are creating global tokens @@ -466,7 +466,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A // the entire request as a single batch. if hasGlobal { if !allGlobal { - return fmt.Errorf("cannot upsert mixed global and non-global tokens") + return structs.NewErrRPCCoded(400, "cannot upsert mixed global and non-global tokens") } // Force the request to the authoritative region if it has global @@ -494,7 +494,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A // Validate each token for idx, token := range args.Tokens { if err := token.Validate(); err != nil { - return fmt.Errorf("token %d invalid: %v", idx, err) + return structs.NewErrRPCCodedf(400, "token %d invalid: %v", idx, err) } // Generate an accessor and secret ID if new @@ -507,15 +507,15 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A // Verify the token exists out, err := state.ACLTokenByAccessorID(nil, token.AccessorID) if err != nil { - return fmt.Errorf("token lookup failed: %v", err) + return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err) } if out == nil { - return fmt.Errorf("cannot find token %s", token.AccessorID) + return structs.NewErrRPCCodedf(400, "cannot find token %s", token.AccessorID) } // Cannot toggle the "Global" mode if token.Global != out.Global { - return fmt.Errorf("cannot toggle global mode of %s", token.AccessorID) + return structs.NewErrRPCCodedf(400, "cannot toggle global mode of %s", token.AccessorID) } } @@ -538,7 +538,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A for _, token := range args.Tokens { out, err := state.ACLTokenByAccessorID(nil, token.AccessorID) if err != nil { - return fmt.Errorf("token lookup failed: %v", err) + return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err) } reply.Tokens = append(reply.Tokens, out) } @@ -557,7 +557,7 @@ func (a *ACL) DeleteTokens(args *structs.ACLTokenDeleteRequest, reply *structs.G // Validate non-zero set of tokens if len(args.AccessorIDs) == 0 { - return fmt.Errorf("must specify as least one token") + return structs.NewErrRPCCoded(400, "must specify as least one token") } if done, err := a.srv.forward("ACL.DeleteTokens", args, args, reply); done { @@ -585,7 +585,7 @@ func (a *ACL) DeleteTokens(args *structs.ACLTokenDeleteRequest, reply *structs.G for _, accessor := range args.AccessorIDs { token, err := state.ACLTokenByAccessorID(nil, accessor) if err != nil { - return fmt.Errorf("token lookup failed: %v", err) + return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err) } if token == nil { nonexistentTokens = append(nonexistentTokens, accessor) @@ -599,14 +599,14 @@ func (a *ACL) DeleteTokens(args *structs.ACLTokenDeleteRequest, reply *structs.G } if len(nonexistentTokens) != 0 { - return fmt.Errorf("Cannot delete nonexistent tokens: %v", strings.Join(nonexistentTokens, ", ")) + return structs.NewErrRPCCodedf(400, "Cannot delete nonexistent tokens: %v", strings.Join(nonexistentTokens, ", ")) } // Disallow mixed requests with global and non-global tokens since we forward // the entire request as a single batch. if hasGlobal { if !allGlobal { - return fmt.Errorf("cannot delete mixed global and non-global tokens") + return structs.NewErrRPCCoded(400, "cannot delete mixed global and non-global tokens") } // Force the request to the authoritative region if it has global diff --git a/nomad/acl_endpoint_test.go b/nomad/acl_endpoint_test.go index 4f55a7e1dbe..58601e12a17 100644 --- a/nomad/acl_endpoint_test.go +++ b/nomad/acl_endpoint_test.go @@ -931,7 +931,7 @@ func TestACLEndpoint_DeleteTokens_WithNonexistentToken(t *testing.T) { assert.NotNil(err) expectedError := fmt.Sprintf("Cannot delete nonexistent tokens: %s", nonexistentToken.AccessorID) - assert.Contains(expectedError, err.Error()) + assert.Contains(err.Error(), expectedError) } func TestACLEndpoint_Bootstrap(t *testing.T) { diff --git a/nomad/structs/errors.go b/nomad/structs/errors.go index 9ec28976242..ee7d4459484 100644 --- a/nomad/structs/errors.go +++ b/nomad/structs/errors.go @@ -3,6 +3,7 @@ package structs import ( "errors" "fmt" + "strconv" "strings" ) @@ -25,6 +26,8 @@ const ( ErrUnknownJobPrefix = "Unknown job" ErrUnknownEvaluationPrefix = "Unknown evaluation" ErrUnknownDeploymentPrefix = "Unknown deployment" + + errRPCCodedErrorPrefix = "RPC_ERROR::" ) var ( @@ -144,3 +147,31 @@ func IsErrUnknownNomadVersion(err error) bool { func IsErrNodeLacksRpc(err error) bool { return err != nil && strings.Contains(err.Error(), errNodeLacksRpc) } + +func NewErrRPCCoded(code int, msg string) error { + return fmt.Errorf("%s%d,%s", errRPCCodedErrorPrefix, code, msg) +} + +func NewErrRPCCodedf(code int, format string, args ...interface{}) error { + msg := fmt.Sprintf(format, args...) + return fmt.Errorf("%s%d,%s", errRPCCodedErrorPrefix, code, msg) +} + +func CodeFromRPCCodedErr(err error) (code int, msg string, ok bool) { + if err == nil || !strings.HasPrefix(err.Error(), errRPCCodedErrorPrefix) { + return 0, "", false + } + + headerLen := len(errRPCCodedErrorPrefix) + parts := strings.SplitN(err.Error()[headerLen:], ",", 2) + if len(parts) != 2 { + return 0, "", false + } + + code, err = strconv.Atoi(parts[0]) + if err != nil { + return 0, "", false + } + + return code, parts[1], true +} diff --git a/nomad/structs/errors_test.go b/nomad/structs/errors_test.go new file mode 100644 index 00000000000..08e5fb71662 --- /dev/null +++ b/nomad/structs/errors_test.go @@ -0,0 +1,49 @@ +package structs + +import ( + "errors" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestRPCCodedErrors(t *testing.T) { + cases := []struct { + err error + code int + message string + }{ + { + NewErrRPCCoded(400, "a test message,here"), + 400, + "a test message,here", + }, + { + NewErrRPCCodedf(500, "a test message,here %s %s", "and,here%s", "second"), + 500, + "a test message,here and,here%s second", + }, + } + + for _, c := range cases { + t.Run(c.err.Error(), func(t *testing.T) { + code, msg, ok := CodeFromRPCCodedErr(c.err) + assert.True(t, ok) + assert.Equal(t, c.code, code) + assert.Equal(t, c.message, msg) + }) + } + + negativeCases := []string{ + "random error", + errRPCCodedErrorPrefix, + errRPCCodedErrorPrefix + "123", + errRPCCodedErrorPrefix + "qwer,asdf", + } + for _, c := range negativeCases { + t.Run(c, func(t *testing.T) { + _, _, ok := CodeFromRPCCodedErr(errors.New(c)) + assert.False(t, ok) + }) + } +} From 5a1f6c7bc4225e4a8dd9245f0a81fc790731fbc2 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Tue, 19 Nov 2019 15:52:53 -0500 Subject: [PATCH 054/241] 404 if token isn't found --- nomad/acl_endpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index 09f187f2c16..f45a46497f5 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -510,7 +510,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err) } if out == nil { - return structs.NewErrRPCCodedf(400, "cannot find token %s", token.AccessorID) + return structs.NewErrRPCCodedf(404, "cannot find token %s", token.AccessorID) } // Cannot toggle the "Global" mode From 6b25483786cc46c56fe104f5053106e6686cfb66 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Tue, 19 Nov 2019 15:54:11 -0500 Subject: [PATCH 055/241] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 497a99f0a1a..c41c729c058 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ BUG FIXES: * api: Return a 404 if endpoint not found instead of redirecting to /ui/ [[GH-6658](https://github.com/hashicorp/nomad/issues/6658)] * api: Decompress web socket response body if gzipped on error responses [[GH-6650](https://github.com/hashicorp/nomad/issues/6650)] * api: Fixed a bug where some FS/Allocation API endpoints didn't return error messages [[GH-6427](https://github.com/hashicorp/nomad/issues/6427)] + * api: Return 40X status code for failing ACL requests, rather than 500 [[GH-6421](https://github.com/hashicorp/nomad/issues/6421)] * cli: Make scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] From 82a5e3dd14e8be09f05d0e7baacd55edb5da38be Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Tue, 19 Nov 2019 16:03:55 -0500 Subject: [PATCH 056/241] comments and casing --- nomad/structs/errors.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nomad/structs/errors.go b/nomad/structs/errors.go index ee7d4459484..6bb0ce0cbfa 100644 --- a/nomad/structs/errors.go +++ b/nomad/structs/errors.go @@ -27,7 +27,7 @@ const ( ErrUnknownEvaluationPrefix = "Unknown evaluation" ErrUnknownDeploymentPrefix = "Unknown deployment" - errRPCCodedErrorPrefix = "RPC_ERROR::" + errRPCCodedErrorPrefix = "RPC Error:: " ) var ( @@ -148,15 +148,22 @@ func IsErrNodeLacksRpc(err error) bool { return err != nil && strings.Contains(err.Error(), errNodeLacksRpc) } +// NewErrRPCCoded wraps an RPC error with a code to be converted to HTTP status +// code func NewErrRPCCoded(code int, msg string) error { return fmt.Errorf("%s%d,%s", errRPCCodedErrorPrefix, code, msg) } +// NewErrRPCCoded wraps an RPC error with a code to be converted to HTTP status +// code func NewErrRPCCodedf(code int, format string, args ...interface{}) error { msg := fmt.Sprintf(format, args...) return fmt.Errorf("%s%d,%s", errRPCCodedErrorPrefix, code, msg) } +// CodeFromRPCCodedErr returns the code and message of error if it's an RPC error +// created through NewErrRPCCoded function. Returns `ok` false if error is not +// an rpc error func CodeFromRPCCodedErr(err error) (code int, msg string, ok bool) { if err == nil || !strings.HasPrefix(err.Error(), errRPCCodedErrorPrefix) { return 0, "", false From 673292ae74fb913dc8a7d3ff975c84a314331008 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Tue, 19 Nov 2019 16:07:28 -0500 Subject: [PATCH 057/241] changelog GH-6684 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfb8a6d774e..8f616cb9f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ BUG FIXES: * api: Decompress web socket response body if gzipped on error responses [[GH-6650](https://github.com/hashicorp/nomad/issues/6650)] * api: Fixed a bug where some FS/Allocation API endpoints didn't return error messages [[GH-6427](https://github.com/hashicorp/nomad/issues/6427)] * cli: Make scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] + * cli: Fixed a bug where `nomad alloc exec` fails if stdout is being redirected and not a TTY [[GH-6684](https://github.com/hashicorp/nomad/issues/6684)] * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)] From 57fd7489d55d85ffc27843d1a3b32cfce2f47346 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Tue, 19 Nov 2019 15:17:21 -0600 Subject: [PATCH 058/241] Docs: add missing exec command to alloc listing (#6730) --- website/source/docs/commands/alloc.html.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/source/docs/commands/alloc.html.md b/website/source/docs/commands/alloc.html.md index 70f05f1148a..674efd9cf37 100644 --- a/website/source/docs/commands/alloc.html.md +++ b/website/source/docs/commands/alloc.html.md @@ -17,6 +17,7 @@ Usage: `nomad alloc [options]` Run `nomad alloc -h` for help on that subcommand. The following subcommands are available: +- [`alloc exec`][exec] - Run a command in a running allocation - [`alloc fs`][fs] - Inspect the contents of an allocation directory - [`alloc logs`][logs] - Streams the logs of a task - [`alloc restart`][restart] - Restart a running allocation or task @@ -24,6 +25,7 @@ subcommands are available: - [`alloc status`][status] - Display allocation status information and metadata - [`alloc stop`][stop] - Stop and reschedule a running allocation +[exec]: /docs/commands/alloc/exec.html "Run a command in a running allocation" [fs]: /docs/commands/alloc/fs.html "Inspect the contents of an allocation directory" [logs]: /docs/commands/alloc/logs.html "Streams the logs of a task" [restart]: /docs/commands/alloc/restart.html "Restart a running allocation or task" From 219fb500e87620190a09b1fa735831415b9ebff8 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Tue, 19 Nov 2019 16:05:35 -0600 Subject: [PATCH 059/241] Docs: fix broken alloc signal link (#6731) --- website/source/docs/commands/alloc.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/commands/alloc.html.md b/website/source/docs/commands/alloc.html.md index 674efd9cf37..83cf934ffb2 100644 --- a/website/source/docs/commands/alloc.html.md +++ b/website/source/docs/commands/alloc.html.md @@ -29,6 +29,6 @@ subcommands are available: [fs]: /docs/commands/alloc/fs.html "Inspect the contents of an allocation directory" [logs]: /docs/commands/alloc/logs.html "Streams the logs of a task" [restart]: /docs/commands/alloc/restart.html "Restart a running allocation or task" -[status]: /docs/commands/alloc/signal.html "Signal a running allocation" +[signal]: /docs/commands/alloc/signal.html "Signal a running allocation" [status]: /docs/commands/alloc/status.html "Display allocation status information and metadata" [stop]: /docs/commands/alloc/stop.html "Stop and reschedule a running allocation" From 635f67b50738ac282fb54dcee0b9a571cf428b5b Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Tue, 19 Nov 2019 16:05:53 -0600 Subject: [PATCH 060/241] CLI: Remove duplicated error output (#6738) --- command/alloc_exec.go | 1 - command/alloc_logs.go | 1 - 2 files changed, 2 deletions(-) diff --git a/command/alloc_exec.go b/command/alloc_exec.go index 71ed7f4a148..c19bca29a91 100644 --- a/command/alloc_exec.go +++ b/command/alloc_exec.go @@ -194,7 +194,6 @@ func (l *AllocExecCommand) Run(args []string) int { if err != nil { l.Ui.Error(err.Error()) - l.Ui.Error("\nPlease specify the task.") return 1 } } diff --git a/command/alloc_logs.go b/command/alloc_logs.go index 2717a01abbd..5865f955bc5 100644 --- a/command/alloc_logs.go +++ b/command/alloc_logs.go @@ -190,7 +190,6 @@ func (l *AllocLogsCommand) Run(args []string) int { if err != nil { l.Ui.Error(err.Error()) - l.Ui.Error("\nPlease specify the task.") return 1 } } From ac239a3f0b734cf602c3e81ef7628498ffb5190d Mon Sep 17 00:00:00 2001 From: Nick Ethier Date: Tue, 19 Nov 2019 19:05:15 -0500 Subject: [PATCH 061/241] docker: set default cpu cfs period (#6737) * docker: set default cpu cfs period Co-Authored-By: Michael Schurter --- drivers/docker/config.go | 5 +- drivers/docker/config_test.go | 35 ++++---- drivers/docker/driver_test.go | 30 +++++++ helper/pluginutils/hclutils/util_test.go | 109 +++++++++++++---------- 4 files changed, 116 insertions(+), 63 deletions(-) diff --git a/drivers/docker/config.go b/drivers/docker/config.go index 34eb46d60fa..3b31f0da610 100644 --- a/drivers/docker/config.go +++ b/drivers/docker/config.go @@ -276,7 +276,10 @@ var ( "cap_drop": hclspec.NewAttr("cap_drop", "list(string)", false), "command": hclspec.NewAttr("command", "string", false), "cpu_hard_limit": hclspec.NewAttr("cpu_hard_limit", "bool", false), - "cpu_cfs_period": hclspec.NewAttr("cpu_cfs_period", "number", false), + "cpu_cfs_period": hclspec.NewDefault( + hclspec.NewAttr("cpu_cfs_period", "number", false), + hclspec.NewLiteral(`100000`), + ), "devices": hclspec.NewBlockList("devices", hclspec.NewObject(map[string]*hclspec.Spec{ "host_path": hclspec.NewAttr("host_path", "string", false), "container_path": hclspec.NewAttr("container_path", "string", false), diff --git a/drivers/docker/config_test.go b/drivers/docker/config_test.go index 45284437179..57f6725d8c9 100644 --- a/drivers/docker/config_test.go +++ b/drivers/docker/config_test.go @@ -20,9 +20,10 @@ func TestConfig_ParseHCL(t *testing.T) { image = "redis:3.2" }`, &TaskConfig{ - Image: "redis:3.2", - Devices: []DockerDevice{}, - Mounts: []DockerMount{}, + Image: "redis:3.2", + Devices: []DockerDevice{}, + Mounts: []DockerMount{}, + CPUCFSPeriod: 100000, }, }, } @@ -51,36 +52,40 @@ func TestConfig_ParseJSON(t *testing.T) { name: "nil values for blocks are safe", input: `{"Config": {"image": "bash:3", "mounts": null}}`, expected: TaskConfig{ - Image: "bash:3", - Mounts: []DockerMount{}, - Devices: []DockerDevice{}, + Image: "bash:3", + Mounts: []DockerMount{}, + Devices: []DockerDevice{}, + CPUCFSPeriod: 100000, }, }, { name: "nil values for 'volumes' field are safe", input: `{"Config": {"image": "bash:3", "volumes": null}}`, expected: TaskConfig{ - Image: "bash:3", - Mounts: []DockerMount{}, - Devices: []DockerDevice{}, + Image: "bash:3", + Mounts: []DockerMount{}, + Devices: []DockerDevice{}, + CPUCFSPeriod: 100000, }, }, { name: "nil values for 'args' field are safe", input: `{"Config": {"image": "bash:3", "args": null}}`, expected: TaskConfig{ - Image: "bash:3", - Mounts: []DockerMount{}, - Devices: []DockerDevice{}, + Image: "bash:3", + Mounts: []DockerMount{}, + Devices: []DockerDevice{}, + CPUCFSPeriod: 100000, }, }, { name: "nil values for string fields are safe", input: `{"Config": {"image": "bash:3", "command": null}}`, expected: TaskConfig{ - Image: "bash:3", - Mounts: []DockerMount{}, - Devices: []DockerDevice{}, + Image: "bash:3", + Mounts: []DockerMount{}, + Devices: []DockerDevice{}, + CPUCFSPeriod: 100000, }, }, } diff --git a/drivers/docker/driver_test.go b/drivers/docker/driver_test.go index ebcc80ea2eb..0aa8ccb2b9e 100644 --- a/drivers/docker/driver_test.go +++ b/drivers/docker/driver_test.go @@ -19,6 +19,8 @@ import ( "github.com/hashicorp/nomad/client/taskenv" "github.com/hashicorp/nomad/client/testutil" "github.com/hashicorp/nomad/devices/gpu/nvidia" + "github.com/hashicorp/nomad/helper/pluginutils/hclspecutils" + "github.com/hashicorp/nomad/helper/pluginutils/hclutils" "github.com/hashicorp/nomad/helper/pluginutils/loader" "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" @@ -103,6 +105,7 @@ func dockerTask(t *testing.T) (*drivers.TaskConfig, *TaskConfig, []int) { LinuxResources: &drivers.LinuxResources{ CPUShares: 512, MemoryLimitBytes: 256 * 1024 * 1024, + PercentTicks: float64(512) / float64(4096), }, }, } @@ -2498,3 +2501,30 @@ func TestDockerDriver_CreationIdempotent(t *testing.T) { require.NoError(t, err) }) } + +// TestDockerDriver_CreateContainerConfig_CPUHardLimit asserts that a default +// CPU quota and period are set when cpu_hard_limit = true. +func TestDockerDriver_CreateContainerConfig_CPUHardLimit(t *testing.T) { + t.Parallel() + + task, _, _ := dockerTask(t) + + dh := dockerDriverHarness(t, nil) + driver := dh.Impl().(*Driver) + schema, _ := driver.TaskConfigSchema() + spec, _ := hclspecutils.Convert(schema) + + val, _, _ := hclutils.ParseHclInterface(map[string]interface{}{ + "image": "foo/bar", + "cpu_hard_limit": true, + }, spec, nil) + + require.NoError(t, task.EncodeDriverConfig(val)) + cfg := &TaskConfig{} + require.NoError(t, task.DecodeDriverConfig(cfg)) + c, err := driver.createContainerConfig(task, cfg, "org/repo:0.1") + require.NoError(t, err) + + require.NotZero(t, c.HostConfig.CPUQuota) + require.NotZero(t, c.HostConfig.CPUPeriod) +} diff --git a/helper/pluginutils/hclutils/util_test.go b/helper/pluginutils/hclutils/util_test.go index 4faae2738eb..42a2a3f5da7 100644 --- a/helper/pluginutils/hclutils/util_test.go +++ b/helper/pluginutils/hclutils/util_test.go @@ -42,9 +42,10 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -58,9 +59,10 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -73,10 +75,11 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - PidsLimit: 2, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + PidsLimit: 2, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -91,10 +94,11 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - PidsLimit: 2, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + PidsLimit: 2, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -107,10 +111,11 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - PidsLimit: 4, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + PidsLimit: 4, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -125,10 +130,11 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - PidsLimit: 4, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + PidsLimit: 4, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -141,10 +147,11 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - Args: []string{"foo", "bar"}, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + Args: []string{"foo", "bar"}, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -159,10 +166,11 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - Args: []string{"foo", "bar"}, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + Args: []string{"foo", "bar"}, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -177,11 +185,12 @@ func TestParseHclInterface_Hcl(t *testing.T) { spec: dockerDecSpec, vars: vars, expected: &docker.TaskConfig{ - Image: "redis:3.2", - Args: []string{"world", "2"}, - PidsLimit: 4, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + Args: []string{"world", "2"}, + PidsLimit: 4, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -196,10 +205,11 @@ func TestParseHclInterface_Hcl(t *testing.T) { }`), spec: dockerDecSpec, expected: &docker.TaskConfig{ - Image: "redis:3.2", - Args: []string{"foo", "bar"}, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Image: "redis:3.2", + Args: []string{"foo", "bar"}, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -220,8 +230,9 @@ func TestParseHclInterface_Hcl(t *testing.T) { "foo": 1234, "bar": 5678, }, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -244,8 +255,9 @@ func TestParseHclInterface_Hcl(t *testing.T) { "foo": 1234, "bar": 5678, }, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -280,7 +292,8 @@ func TestParseHclInterface_Hcl(t *testing.T) { ContainerPath: "/dev/xvdd", }, }, - Mounts: []docker.DockerMount{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -309,8 +322,9 @@ func TestParseHclInterface_Hcl(t *testing.T) { "tag": "driver-test", }, }, - Devices: []docker.DockerDevice{}, - Mounts: []docker.DockerMount{}, + Devices: []docker.DockerDevice{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, @@ -347,7 +361,8 @@ func TestParseHclInterface_Hcl(t *testing.T) { ContainerPath: "/dev/xvdd", }, }, - Mounts: []docker.DockerMount{}, + Mounts: []docker.DockerMount{}, + CPUCFSPeriod: 100000, }, expectedType: &docker.TaskConfig{}, }, From 48bdf7ea938ac2a042ad9bc0bbc54190d7189979 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 1 Nov 2019 07:57:56 -0700 Subject: [PATCH 062/241] release: switch to Go 1.12.13 --- .circleci/config.yml | 4 ++-- README.md | 2 +- appveyor.yml | 4 ++-- scripts/release/mac-remote-build | 2 +- scripts/vagrant-linux-priv-go.sh | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8271c8c0ad0..806a1ff1076 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -78,7 +78,7 @@ executors: go: working_directory: /go/src/github.com/hashicorp/nomad docker: - - image: golang:1.12.12 + - image: golang:1.12.13 go-machine: working_directory: ~/go/src/github.com/hashicorp/nomad machine: @@ -284,7 +284,7 @@ commands: parameters: version: type: string - default: "1.12.12" + default: "1.12.13" steps: - run: name: install golang << parameters.version >> diff --git a/README.md b/README.md index 6d6e9700586..59f3dc4d5f5 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ Who Uses Nomad Contributing to Nomad -------------------- -If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.12+ is *required*, and `gcc-go` is not supported). +If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.13+ is *required*, and `gcc-go` is not supported). See the [`contributing`](contributing/) directory for more developer documentation. diff --git a/appveyor.yml b/appveyor.yml index 9ef979b1381..8336b333f5e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,10 +23,10 @@ install: cd %APPVEYOR_BUILD_FOLDER% rmdir /Q/S C:\go - # install go 1.12.12 to match version used for cutting a release + # install go 1.12.13 to match version used for cutting a release - cmd: | mkdir c:\go - appveyor DownloadFile "https://dl.google.com/go/go1.12.12.windows-amd64.zip" -FileName "%TEMP%\\go.zip" + appveyor DownloadFile "https://dl.google.com/go/go1.12.13.windows-amd64.zip" -FileName "%TEMP%\\go.zip" - ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\ diff --git a/scripts/release/mac-remote-build b/scripts/release/mac-remote-build index 92c2ea18d6d..ea1787024c3 100755 --- a/scripts/release/mac-remote-build +++ b/scripts/release/mac-remote-build @@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad" mkdir -p "${TMP_WORKSPACE}/tmp" install_go() { - local go_version="1.12.12" + local go_version="1.12.13" local download= download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz" diff --git a/scripts/vagrant-linux-priv-go.sh b/scripts/vagrant-linux-priv-go.sh index 4c470237225..c3c69ad9441 100755 --- a/scripts/vagrant-linux-priv-go.sh +++ b/scripts/vagrant-linux-priv-go.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash function install_go() { - local go_version=1.12.12 + local go_version=1.12.13 local download= download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz" From f76ba4ff0eb507f9c7996e17624bfedac061636c Mon Sep 17 00:00:00 2001 From: Preetha Appan <460133+preetapan@users.noreply.github.com> Date: Wed, 20 Nov 2019 10:19:05 -0600 Subject: [PATCH 063/241] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f616cb9f81..39daacca66a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ BUG FIXES: * cli: Fixed a bug where `nomad alloc exec` fails if stdout is being redirected and not a TTY [[GH-6684](https://github.com/hashicorp/nomad/issues/6684)] * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] + * client: client: Return empty values when host stats fail [[GH-6349](https://github.com/hashicorp/nomad/issues/6349)] * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)] * driver/docker: Added mechanism for detecting running unexpectedly running docker containers [[GH-6325](https://github.com/hashicorp/nomad/issues/6325)] * nomad: Multiple connect enabled services in the same taskgroup failed to From 9ebe22438712b03048b262e275f76d6b7d647920 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Wed, 20 Nov 2019 08:40:55 -0800 Subject: [PATCH 064/241] docs: changelog entry for #6606 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1af495e340b..8b21c607e5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ FEATURES: IMPROVEMENTS: * api: Add `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)] + * build: Updated to Go 1.12.13 [[GH-6606](https://github.com/hashicorp/nomad/issues/6606)] * core: Add support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)] * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)] From 8b77a6ec87a36553a0b1398a4e88104bf50cf5e5 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Wed, 20 Nov 2019 08:45:58 -0800 Subject: [PATCH 065/241] docs: add #6370 to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b21c607e5e..9f3a18569d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ IMPROVEMENTS: * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)] * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)] * client: Add support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)] + * command: add -tls-server-name flag [[GH-6370](https://github.com/hashicorp/nomad/issues/6370)] BUG FIXES: From 7c7637c379061cc8e7c3763bb3eda8a963ef25a9 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Nov 2019 11:21:36 -0600 Subject: [PATCH 066/241] Remove merge error --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e98f383fd2..49bafe439bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,7 +62,6 @@ FEATURES: IMPROVEMENTS: * core: Added rolling deployments for service jobs by default and max_parallel=0 disables deployments [[GH-6191](https://github.com/hashicorp/nomad/pull/6100)] * agent: Allowed the job GC interval to be configured [[GH-5978](https://github.com/hashicorp/nomad/issues/5978)] - * agent: Added `-dev=connect` parameter to support running in dev mode with Consul Connect [[GH-6126](https://github.com/hashicorp/nomad/issues/6126)] * agent: Added `log_level` to be reloaded on SIGHUP [[GH-5996](https://github.com/hashicorp/nomad/pull/5996)] * api: Added follow parameter to file streaming endpoint to support older browsers [[GH-6049](https://github.com/hashicorp/nomad/issues/6049)] * client: Upgraded `go-getter` to support GCP links [[GH-6215](https://github.com/hashicorp/nomad/pull/6215)] From 241ed987ecd0bab35fde8baa52801a5db6521a20 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Nov 2019 11:37:01 -0600 Subject: [PATCH 067/241] Remove extraneous whitespace --- nomad/acl_endpoint.go | 1 - 1 file changed, 1 deletion(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index 78189cdac1d..54f790c7648 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -264,7 +264,6 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S reply.Policy = out if out != nil { reply.Index = out.ModifyIndex - rules, err := policy.Parse(out.Rules) if err != nil { From e5a2d13512b96af3162822079d74869299dfa762 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Nov 2019 11:37:45 -0600 Subject: [PATCH 068/241] Remove extraneous else block --- nomad/acl_endpoint.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index 54f790c7648..7b160c73fc1 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -268,9 +268,8 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S if err != nil { return err - } else { - reply.Policy.RulesJSON = rules } + reply.Policy.RulesJSON = rules } else { // Use the last index that affected the policy table index, err := state.Index("acl_policy") From 4f1dbc38f84ad098fdf6bd2d130c8fb06cbcb909 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Nov 2019 11:45:44 -0600 Subject: [PATCH 069/241] Add explanatory comment --- nomad/structs/structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 280c09c5394..0d9c04fb7a2 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -9065,7 +9065,7 @@ type ACLPolicy struct { Name string // Unique name Description string // Human readable Rules string // HCL or JSON format - RulesJSON *acl.Policy + RulesJSON *acl.Policy // Generated from Rules on read Hash []byte CreateIndex uint64 ModifyIndex uint64 From 8b1839678c63ca3dd82a952679891d4d4989777e Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Nov 2019 12:47:01 -0600 Subject: [PATCH 070/241] Add gofmt changes --- nomad/structs/structs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 0d9c04fb7a2..cf3bb544383 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -9062,9 +9062,9 @@ func IsServerSide(e error) bool { // ACLPolicy is used to represent an ACL policy type ACLPolicy struct { - Name string // Unique name - Description string // Human readable - Rules string // HCL or JSON format + Name string // Unique name + Description string // Human readable + Rules string // HCL or JSON format RulesJSON *acl.Policy // Generated from Rules on read Hash []byte CreateIndex uint64 From e0535387670c4dee11c85770d7c50e8576cf81c7 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Wed, 20 Nov 2019 14:45:20 -0500 Subject: [PATCH 071/241] ci: add build-binaries job for artifact storage (#6741) --- .circleci/config.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 806a1ff1076..42e39892266 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,6 +16,7 @@ workflows: jobs: - lint-go: <<: *IGNORE_FOR_UI_BRANCHES + - build-binaries - test-machine: name: "test-client" test_packages: "./client/..." @@ -115,6 +116,27 @@ jobs: - run: make check - run: make checkscripts + build-binaries: + executor: go + environment: + <<: *COMMON_ENVS + GOPATH: /go + # TODO: add ui tag here + GO_TAGS: "codegen_generated" + steps: + - checkout + - run: apt-get update; apt-get install -y sudo unzip zip + - run: make deps + - install-protoc + - run: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + - run: make pkg/windows_amd64.zip pkg/linux_amd64.zip + - store_artifacts: + path: pkg/windows_amd64.zip + destination: /builds/nomad_windows_amd64.zip + - store_artifacts: + path: pkg/linux_amd64.tar.gz + destination: /builds/nomad_linux_amd64.tar.gz + test-container: executor: go parameters: From e1c544f5e581762a89ff75ce1e5ea19971312a73 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Mon, 11 Nov 2019 22:38:27 +0000 Subject: [PATCH 072/241] low case references --- .circleci/config.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 42e39892266..185e07ff917 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,11 +1,11 @@ version: 2.1 references: - common_envs: &COMMON_ENVS + common_envs: &common_envs GOMAXPROCS: 1 NOMAD_SLOW_TEST: 1 GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - ignore_for_ui_branches: &IGNORE_FOR_UI_BRANCHES + ignore_for_ui_branches: &ignore_for_ui_branches filters: branches: ignore: /^.-ui\b.*/ @@ -15,30 +15,30 @@ workflows: build-test: jobs: - lint-go: - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - build-binaries - test-machine: name: "test-client" test_packages: "./client/..." - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-machine: name: "test-nomad" test_packages: "./nomad/..." - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-machine: # API Tests run in a VM rather than container due to the FS tests # requiring `mount` priviliges. name: "test-api" test_packages: "./api/..." - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-container: name: "test-devices" test_packages: "./devices/..." - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-machine: name: "test-other" exclude_packages: "./api|./client|./drivers/docker|./drivers/exec|./drivers/rkt|./drivers/shared/executor|./nomad|./devices" - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-machine: name: "test-docker" test_packages: "./drivers/docker" @@ -46,27 +46,27 @@ workflows: # and we get unexpected failures # e.g. https://circleci.com/gh/hashicorp/nomad/3854 executor: go-machine - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-machine: name: "test-exec" test_packages: "./drivers/exec" - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-machine: name: "test-shared-exec" test_packages: "./drivers/shared/executor" - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-machine: name: "test-32bit" # Currently we only explicitly test fingerprinting on 32bit # architectures. test_packages: "./client/fingerprint" goarch: "386" - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-e2e: - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches - test-ui - test-website: - <<: *IGNORE_FOR_UI_BRANCHES + <<: *ignore_for_ui_branches website: jobs: @@ -106,7 +106,7 @@ jobs: lint-go: executor: go environment: - <<: *COMMON_ENVS + <<: *common_envs GOPATH: /go steps: - checkout @@ -150,7 +150,7 @@ jobs: type: string default: "amd64" environment: - <<: *COMMON_ENVS + <<: *common_envs GOTEST_PKGS: "<< parameters.test_packages >>" GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>" GOPATH: /go @@ -171,7 +171,7 @@ jobs: test-e2e: executor: go environment: - <<: *COMMON_ENVS + <<: *common_envs GOPATH: /go steps: - checkout @@ -193,7 +193,7 @@ jobs: test-website: executor: go-machine-recent environment: - <<: *COMMON_ENVS + <<: *common_envs steps: - checkout - run: make test-website @@ -214,7 +214,7 @@ jobs: type: string default: "amd64" environment: - <<: *COMMON_ENVS + <<: *common_envs GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>" GOTEST_PKGS: "<< parameters.test_packages >>" GOPATH: /home/circleci/go From 7136a8466576e5ee5d89b9a11b63189751a5e664 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Mon, 11 Nov 2019 22:41:59 +0000 Subject: [PATCH 073/241] Ignore ci workflow in stable-website `stable-website` branch is only meant for updating the nomadproject.io website, and the backend tests are irrelevant. Also, the ci workflow uses up the plans containers and may delay website deployments by 20 minutes or more while we are cutting a release. --- .circleci/config.yml | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 185e07ff917..28b57f8fdf2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,40 +5,47 @@ references: GOMAXPROCS: 1 NOMAD_SLOW_TEST: 1 GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - ignore_for_ui_branches: &ignore_for_ui_branches + backend_branches_filter: &backend_branches_filter filters: branches: - ignore: /^.-ui\b.*/ + ignore: + - /^.-ui\b.*/ + - stable-website + ui_branches_filter: &backend_branches_filter + filters: + branches: + ignore: + - stable-website workflows: build-test: jobs: - lint-go: - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - build-binaries - test-machine: name: "test-client" test_packages: "./client/..." - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-machine: name: "test-nomad" test_packages: "./nomad/..." - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-machine: # API Tests run in a VM rather than container due to the FS tests # requiring `mount` priviliges. name: "test-api" test_packages: "./api/..." - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-container: name: "test-devices" test_packages: "./devices/..." - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-machine: name: "test-other" exclude_packages: "./api|./client|./drivers/docker|./drivers/exec|./drivers/rkt|./drivers/shared/executor|./nomad|./devices" - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-machine: name: "test-docker" test_packages: "./drivers/docker" @@ -46,27 +53,28 @@ workflows: # and we get unexpected failures # e.g. https://circleci.com/gh/hashicorp/nomad/3854 executor: go-machine - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-machine: name: "test-exec" test_packages: "./drivers/exec" - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-machine: name: "test-shared-exec" test_packages: "./drivers/shared/executor" - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-machine: name: "test-32bit" # Currently we only explicitly test fingerprinting on 32bit # architectures. test_packages: "./client/fingerprint" goarch: "386" - <<: *ignore_for_ui_branches + <<: *backend_branches_filter - test-e2e: - <<: *ignore_for_ui_branches - - test-ui + <<: *backend_branches_filter + - test-ui: + <<: *ui_branches_filter - test-website: - <<: *ignore_for_ui_branches + <<: *backend_branches_filter website: jobs: From b6b6b55cc11528a23611b32a94caf3fb41925e0f Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Mon, 11 Nov 2019 22:45:20 +0000 Subject: [PATCH 074/241] build-deps-image no longer runs This is a remenant of the time we used a custom hashicorp docker image for CI. Currently, we use the official golang image, so no longer need the job or manage the dockerhub credentials. --- .circleci/config.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 28b57f8fdf2..8b6cc083678 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -92,9 +92,6 @@ executors: working_directory: ~/go/src/github.com/hashicorp/nomad machine: image: circleci/classic:201808-01 - docker-builder: - working_directory: ~/go/src/github.com/hashicorp/nomad - machine: true # TODO: Find latest docker image id # uses a more recent image with unattended upgrades disabled properly # but seems to break docker builds @@ -104,13 +101,6 @@ executors: image: ubuntu-1604:201903-01 jobs: - build-deps-image: - executor: docker-builder - steps: - - checkout - - run: docker build -t hashicorpnomad/ci-build-image:$CIRCLE_SHA1 . -f ./Dockerfile.ci - - run: docker push hashicorpnomad/ci-build-image:$CIRCLE_SHA1 - lint-go: executor: go environment: From 90d1c69e9e514a241ab7efb154c6e65d58699cf4 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 20 Nov 2019 11:11:28 -0500 Subject: [PATCH 075/241] Refactor circleci CI scripts This adopts pattern used by Vault, where we split CircleCI yaml config into multiple files that get packed and translated to 2.0. This has two motivations: First, to ease translating config to CircleCI 2.0 so it can run on Enterprise private repository. Second and most importantly, it also adding Enterprise specific jobs in separate files with reduced config file merging conflict resolution. --- .circleci/.gitattributes | 1 + .circleci/.gitignore | 1 + .circleci/Makefile | 80 ++ .circleci/README.md | 130 ++ .circleci/config.yml | 1175 +++++++++++++----- .circleci/config/commands/install-consul.yml | 11 + .circleci/config/commands/install-golang.yml | 10 + .circleci/config/commands/install-protoc.yml | 6 + .circleci/config/commands/install-vault.yml | 11 + .circleci/config/commands/run-tests.yml | 18 + .circleci/config/config.yml | 39 + .circleci/config/jobs/build-binaries.yml | 17 + .circleci/config/jobs/build-website.yml | 30 + .circleci/config/jobs/lint-go.yml | 8 + .circleci/config/jobs/test-container.yml | 27 + .circleci/config/jobs/test-e2e.yml | 17 + .circleci/config/jobs/test-machine.yml | 39 + .circleci/config/jobs/test-ui.yml | 27 + .circleci/config/jobs/test-website.yml | 4 + .circleci/config/workflows/build-test.yml | 62 + .circleci/config/workflows/website.yml | 6 + 21 files changed, 1386 insertions(+), 333 deletions(-) create mode 100644 .circleci/.gitattributes create mode 100644 .circleci/.gitignore create mode 100644 .circleci/Makefile create mode 100644 .circleci/README.md create mode 100644 .circleci/config/commands/install-consul.yml create mode 100644 .circleci/config/commands/install-golang.yml create mode 100644 .circleci/config/commands/install-protoc.yml create mode 100644 .circleci/config/commands/install-vault.yml create mode 100644 .circleci/config/commands/run-tests.yml create mode 100644 .circleci/config/config.yml create mode 100644 .circleci/config/jobs/build-binaries.yml create mode 100644 .circleci/config/jobs/build-website.yml create mode 100644 .circleci/config/jobs/lint-go.yml create mode 100644 .circleci/config/jobs/test-container.yml create mode 100644 .circleci/config/jobs/test-e2e.yml create mode 100644 .circleci/config/jobs/test-machine.yml create mode 100644 .circleci/config/jobs/test-ui.yml create mode 100644 .circleci/config/jobs/test-website.yml create mode 100644 .circleci/config/workflows/build-test.yml create mode 100644 .circleci/config/workflows/website.yml diff --git a/.circleci/.gitattributes b/.circleci/.gitattributes new file mode 100644 index 00000000000..2dd06ee5f7c --- /dev/null +++ b/.circleci/.gitattributes @@ -0,0 +1 @@ +config.yml linguist-generated diff --git a/.circleci/.gitignore b/.circleci/.gitignore new file mode 100644 index 00000000000..3018b3a6813 --- /dev/null +++ b/.circleci/.gitignore @@ -0,0 +1 @@ +.tmp/ diff --git a/.circleci/Makefile b/.circleci/Makefile new file mode 100644 index 00000000000..3852d19f7af --- /dev/null +++ b/.circleci/Makefile @@ -0,0 +1,80 @@ +# Set SHELL to 'strict mode' without using .SHELLFLAGS for max compatibility. +# See https://fieldnotes.tech/how-to-shell-for-compatible-makefiles/ +SHELL := /usr/bin/env bash -euo pipefail -c + +CIRCLECI := circleci --skip-update-check + +# Set up some documentation/help message variables. +# We do not attempt to install the CircleCI CLI from this Makefile. +CCI_INSTALL_LINK := https://circleci.com/docs/2.0/local-cli/\#installation +CCI_INSTALL_MSG := Please install CircleCI CLI. See $(CCI_INSTALL_LINK) +CCI_VERSION := $(shell $(CIRCLECI) version 2> /dev/null) +ifeq ($(CCI_VERSION),) +# Attempting to use the CLI fails with installation instructions. +CIRCLECI := echo '$(CCI_INSTALL_MSG)'; exit 1; \# +endif + +SOURCE_DIR := config +SOURCE_YML := $(shell [ ! -d $(SOURCE_DIR) ] || find $(SOURCE_DIR) -name '*.yml') +CONFIG_SOURCE := Makefile $(SOURCE_YML) | $(SOURCE_DIR) +OUT := config.yml +TMP := .tmp/config-processed +CONFIG_PACKED := .tmp/config-packed + +default: help + +help: + @echo "Usage:" + @echo " make ci-config: recompile config.yml from $(SOURCE_DIR)/" + @echo " make ci-verify: verify that config.yml is a true mapping from $(SOURCE_DIR)/" + @echo + @echo "Diagnostics:" + @[ -z "$(CCI_VERSION)" ] || echo " circleci-cli version $(CCI_VERSION)" + @[ -n "$(CCI_VERSION)" ] || echo " $(CCI_INSTALL_MSG)" + +$(SOURCE_DIR): + @echo No source directory $(SOURCE_DIR) found.; exit 1 + +# Make sure our .tmp dir exists. +$(shell [ -d .tmp ] || mkdir .tmp) + +.PHONY: ci-config +ci-config: $(OUT) + +.PHONY: ci-verify +ci-verify: config-up-to-date + @$(CIRCLECI) config validate $(OUT) + +define GENERATED_FILE_HEADER +### *** +### WARNING: DO NOT manually EDIT or MERGE this file, it is generated by 'make ci-config'. +### INSTEAD: Edit or merge the source in $(SOURCE_DIR)/ then run 'make ci-config'. +### *** +endef +export GENERATED_FILE_HEADER + +# GEN_CONFIG writes the config to a temporary file. If the whole process succeeds, +# it then moves that file to $@. This makes is an atomic operation, so if it fails +# make doesn't consider a half-baked file up to date. +define GEN_CONFIG + @$(CIRCLECI) config pack $(SOURCE_DIR) > $(CONFIG_PACKED) + @echo "$$GENERATED_FILE_HEADER" > $@.tmp || { rm -f $@; exit 1; } + @$(CIRCLECI) config process $(CONFIG_PACKED) >> $@.tmp || { rm -f $@.tmp; exit 1; } + @mv -f $@.tmp $@ +endef + +$(OUT): $(CONFIG_SOURCE) + $(GEN_CONFIG) + @echo "$@ updated" + +$(TMP): $(CONFIG_SOURCE) + $(GEN_CONFIG) + +.PHONY: config-up-to-date +config-up-to-date: $(TMP) # Note this must not depend on $(OUT)! + @if diff config.yml $<; then \ + echo "Generated $(OUT) is up to date!"; \ + else \ + echo "Generated $(OUT) is out of date, run make $(CONFIG) to update."; \ + exit 1; \ + fi diff --git a/.circleci/README.md b/.circleci/README.md new file mode 100644 index 00000000000..1ec75cafade --- /dev/null +++ b/.circleci/README.md @@ -0,0 +1,130 @@ +# How to use CircleCI multi-file config + +This README and the Makefile should be in your `.circleci` directory, +in the root of your repository. +All path references in this README assume we are in this `.circleci` directory. + +The `Makefile` in this directory generates `./config.yml` in CircleCI 2.0 syntax, +from the tree rooted at `./config/`, which contains files in CircleCI 2.0 or 2.1 syntax. + + +## Quickstart + +The basic workflow is: + +- Edit source files in `./config/` +- When you are done, run `make ci-config` to update `./config.yml` +- Commit this entire `.circleci` directory, including that generated file together. +- Run `make ci-verify` to ensure the current `./config.yml` is up to date with the source. + +When merging this `.circleci` directory: + +- Do not merge the generated `./config.yml` file, instead: +- Merge the source files under `./config/`, and then +- Run `make ci-config` to re-generate the merged `./config.yml` + +And that's it, for more detail, read on! + + +## How does it work, roughly? + +CircleCI supports [generating a single config file from many], +using the `$ circleci config pack` command. +It also supports [expanding 2.1 syntax to 2.0 syntax] +using the `$ circleci config process` command. +We use these two commands, stitched together using the `Makefile` +to implement the workflow. + +[generating a single config file from many]: https://circleci.com/docs/2.0/local-cli/#packing-a-config +[expanding 2.1 syntax to 2.0 syntax]: https://circleci.com/docs/2.0/local-cli/#processing-a-config + + +## Prerequisites + +You will need the [CircleCI CLI tool] installed and working, +at least version `0.1.5607`. +You can [download this tool directly from GitHub Releases]. + +``` +$ circleci version +0.1.5607+f705856 +``` + +[CircleCI CLI tool]: https://circleci.com/docs/2.0/local-cli/ +[download this tool directly from GitHub Releases]: https://github.com/CircleCI-Public/circleci-cli/releases + + +## Updating the config source + +Before making changes, be sure to understand the layout +of the `./config/` file tree, as well as circleci 2.1 syntax. +See the [Syntax and layout] section below. + +To update the config, you should edit, add or remove files +in the `./config/` directory, +and then run `make ci-config`. +If that's successful, +you should then commit every `*.yml` file in the tree rooted in this directory. +That is: you should commit both the source under `./config/` +and the generated file `./config.yml` at the same time, in the same commit. +The included git pre-commit hook will help with this. +Do not edit the `./config.yml` file directly, as you will lose your changes +next time `make ci-config` is run. + +[Syntax and layout]: #syntax-and-layout + + +### Verifying `./config.yml` + +To check whether or not the current `./config.yml` is up to date with the source +and valid, run `$ make ci-verify`. +Note that `$ make ci-verify` should be run in CI, +in case not everyone has the git pre-commit hook set up correctly. + + +#### Example shell session + +```sh +$ make ci-config +config.yml updated +$ git add -A . # The -A makes sure to include deletions/renames etc. +$ git commit -m "ci: blah blah blah" +Changes detected in .circleci/, running 'make -C .circleci ci-verify' +--> Generated config.yml is up to date! +--> Config file at config.yml is valid. +``` + + +### Syntax and layout + +It is important to understand the layout of the config directory. +Read the documentation on [packing a config] for a full understanding +of how multiple YAML files are merged by the circleci CLI tool. + +[packing a config]: https://circleci.com/docs/2.0/local-cli/#packing-a-config + +Here is an example file tree (with comments added afterwards): + +```sh +$ tree . +. +├── Makefile +├── README.md # This file. +├── config # The source code for config.yml is rooted here. +│   ├── @config.yml # Files beginning with @ are treated specially by `circleci config pack` +│   ├── commands # Subdirectories of config become top-level keys. +│   │   └── go_test.yml # Filenames (minus .yml) become top-level keys under +│   │   └── go_build.yml # their parent (in this case "commands"). +│ │ # The contents of go_test.yml therefore are placed at: .commands.go_test: +│   └── jobs # jobs also becomes a top-level key under config... +│   ├── build.yml # ...and likewise filenames become keys under their parent. +│   └── test.yml +└── config.yml # The generated file in 2.0 syntax. +``` + +About those `@` files... Preceding a filename with `@` +indicates to `$ circleci config pack` that the contents of this YAML file +should be at the top-level, rather than underneath a key named after their filename. +This naming convention is unfortunate as it breaks autocompletion in bash, +but there we go. + diff --git a/.circleci/config.yml b/.circleci/config.yml index 8b6cc083678..83f5280fc15 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,369 +1,878 @@ -version: 2.1 - -references: - common_envs: &common_envs - GOMAXPROCS: 1 - NOMAD_SLOW_TEST: 1 - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - backend_branches_filter: &backend_branches_filter - filters: - branches: - ignore: - - /^.-ui\b.*/ - - stable-website - ui_branches_filter: &backend_branches_filter - filters: - branches: - ignore: - - stable-website - - -workflows: - build-test: - jobs: - - lint-go: - <<: *backend_branches_filter - - build-binaries - - test-machine: - name: "test-client" - test_packages: "./client/..." - <<: *backend_branches_filter - - test-machine: - name: "test-nomad" - test_packages: "./nomad/..." - <<: *backend_branches_filter - - test-machine: - # API Tests run in a VM rather than container due to the FS tests - # requiring `mount` priviliges. - name: "test-api" - test_packages: "./api/..." - <<: *backend_branches_filter - - test-container: - name: "test-devices" - test_packages: "./devices/..." - <<: *backend_branches_filter - - test-machine: - name: "test-other" - exclude_packages: "./api|./client|./drivers/docker|./drivers/exec|./drivers/rkt|./drivers/shared/executor|./nomad|./devices" - <<: *backend_branches_filter - - test-machine: - name: "test-docker" - test_packages: "./drivers/docker" - # docker is misbehaving in docker-machine-recent image - # and we get unexpected failures - # e.g. https://circleci.com/gh/hashicorp/nomad/3854 - executor: go-machine - <<: *backend_branches_filter - - test-machine: - name: "test-exec" - test_packages: "./drivers/exec" - <<: *backend_branches_filter - - test-machine: - name: "test-shared-exec" - test_packages: "./drivers/shared/executor" - <<: *backend_branches_filter - - test-machine: - name: "test-32bit" - # Currently we only explicitly test fingerprinting on 32bit - # architectures. - test_packages: "./client/fingerprint" - goarch: "386" - <<: *backend_branches_filter - - test-e2e: - <<: *backend_branches_filter - - test-ui: - <<: *ui_branches_filter - - test-website: - <<: *backend_branches_filter - - website: - jobs: - - build-website: - context: static-sites - filters: - branches: - only: stable-website -executors: - go: - working_directory: /go/src/github.com/hashicorp/nomad - docker: - - image: golang:1.12.13 - go-machine: - working_directory: ~/go/src/github.com/hashicorp/nomad - machine: - image: circleci/classic:201808-01 - - # uses a more recent image with unattended upgrades disabled properly - # but seems to break docker builds - go-machine-recent: - working_directory: ~/go/src/github.com/hashicorp/nomad +### *** +### WARNING: DO NOT manually EDIT or MERGE this file, it is generated by 'make ci-config'. +### INSTEAD: Edit or merge the source in config/ then run 'make ci-config'. +### *** +version: 2 +jobs: + test-nomad: machine: image: ubuntu-1604:201903-01 - -jobs: - lint-go: - executor: go + working_directory: ~/go/src/github.com/hashicorp/nomad environment: - <<: *common_envs - GOPATH: /go + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./nomad/... + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: amd64 steps: - - checkout - - run: apt-get update; apt-get install -y shellcheck sudo unzip - - install-protoc - - run: make deps lint-deps - - run: make check - - run: make checkscripts + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi - build-binaries: - executor: go - environment: - <<: *COMMON_ENVS - GOPATH: /go - # TODO: add ui tag here - GO_TAGS: "codegen_generated" - steps: - - checkout - - run: apt-get update; apt-get install -y sudo unzip zip - - run: make deps - - install-protoc - - run: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs - - run: make pkg/windows_amd64.zip pkg/linux_amd64.zip - - store_artifacts: - path: pkg/windows_amd64.zip - destination: /builds/nomad_windows_amd64.zip - - store_artifacts: - path: pkg/linux_amd64.tar.gz - destination: /builds/nomad_linux_amd64.tar.gz + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi - test-container: - executor: go - parameters: - test_packages: - type: string - default: "" - exclude_packages: - type: string - default: "" - goarch: - type: string - default: "amd64" + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports + test-api: + machine: + image: ubuntu-1604:201903-01 + working_directory: ~/go/src/github.com/hashicorp/nomad environment: - <<: *common_envs - GOTEST_PKGS: "<< parameters.test_packages >>" - GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>" - GOPATH: /go - GOTESTARCH: "<< parameters.goarch >>" + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./api/... + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: amd64 steps: - - checkout - - run: apt-get update; apt-get install -y shellcheck sudo unzip - - run: make deps - - install-protoc - - install-consul - - install-vault - - run-tests - - store_test_results: - path: /tmp/test-reports - - store_artifacts: - path: /tmp/test-reports + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi - test-e2e: - executor: go + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi + + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports + test-exec: + machine: + image: ubuntu-1604:201903-01 + working_directory: ~/go/src/github.com/hashicorp/nomad environment: - <<: *common_envs - GOPATH: /go + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./drivers/exec + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: amd64 steps: - - checkout - - run: apt-get update; apt-get install -y sudo unzip - # e2e tests require privileged mount/umount permissions when running as root - # TODO: switch to using machine executor and run as root to test e2e path - - run: - name: prepare non-root user - command: | - groupadd --gid 3434 circleci - useradd --uid 3434 --gid circleci --shell /bin/bash --create-home circleci - echo 'circleci ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-circleci - echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep - chown -R circleci:circleci /go + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi - - run: sudo -E -H -u circleci PATH=${PATH} make deps - - run: sudo -E -H -u circleci PATH=${PATH} make e2e-test + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi - test-website: - executor: go-machine-recent + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports + test-client: + machine: + image: ubuntu-1604:201903-01 + working_directory: ~/go/src/github.com/hashicorp/nomad environment: - <<: *common_envs + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./client/... + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: amd64 steps: - - checkout - - run: make test-website + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi + + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi - test-machine: - executor: "<< parameters.executor >>" - parameters: - test_packages: - type: string - default: "" - exclude_packages: - type: string - default: "" - executor: - type: string - default: "go-machine-recent" - goarch: - type: string - default: "amd64" + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports + test-shared-exec: + machine: + image: ubuntu-1604:201903-01 + working_directory: ~/go/src/github.com/hashicorp/nomad environment: - <<: *common_envs - GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>" - GOTEST_PKGS: "<< parameters.test_packages >>" - GOPATH: /home/circleci/go - GOTESTARCH: "<< parameters.goarch >>" + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./drivers/shared/executor + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: amd64 steps: - - checkout - - install-golang - - install-protoc - - install-consul - - install-vault - - run: - name: Install 32bit gcc libs - command: | - if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then - sudo apt-get update - sudo apt-get install -y gcc-multilib - else - echo "Skipping 32bit lib installation while building for not 386" - fi - - run: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap - - run-tests - - store_test_results: - path: /tmp/test-reports - - store_artifacts: - path: /tmp/test-reports + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi + + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi + + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports test-ui: docker: - - image: circleci/node:10-browsers - environment: - # See https://git.io/vdao3 for details. - JOBS: 2 + - environment: + JOBS: 2 + image: circleci/node:10-browsers steps: - - checkout - - restore_cache: - keys: - - v1-deps-{{ checksum "ui/yarn.lock" }} - - v1-deps- - - run: - name: yarn install - command: cd ui && yarn install - - save_cache: - key: v1-deps-{{ checksum "ui/yarn.lock" }} - paths: - - ./ui/node_modules - - run: - name: lint:js - command: cd ui && yarn run lint:js - - run: - name: lint:hbs - command: cd ui && yarn run lint:hbs - - run: - name: Ember tests - command: cd ui && yarn test - + - checkout + - restore_cache: + keys: + - v1-deps-{{ checksum "ui/yarn.lock" }} + - v1-deps- + - run: + command: cd ui && yarn install + name: yarn install + - save_cache: + key: v1-deps-{{ checksum "ui/yarn.lock" }} + paths: + - ./ui/node_modules + - run: + command: cd ui && yarn run lint:js + name: lint:js + - run: + command: cd ui && yarn run lint:hbs + name: lint:hbs + - run: + command: cd ui && yarn test + name: Ember tests + lint-go: + docker: + - image: golang:1.12.13 + working_directory: /go/src/github.com/hashicorp/nomad + steps: + - checkout + - run: + command: apt-get update; apt-get install -y shellcheck sudo unzip + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: make deps lint-deps + - run: + command: make check + - run: + command: make checkscripts + environment: + - GOMAXPROCS: 1 + - GOPATH: /go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 build-website: - # setting the working_directory along with the checkout path allows us to not have - # to cd into the website/ directory for commands - working_directory: ~/project/website docker: - - image: hashicorp/middleman-hashicorp:0.3.35 + - image: hashicorp/middleman-hashicorp:0.3.35 steps: - - checkout: - path: ~/project - - # restores gem cache - - restore_cache: - key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} - - - run: - name: install gems - command: bundle check || bundle install --path vendor/bundle --retry=3 + - checkout: + path: ~/project + - restore_cache: + key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} + - run: + command: bundle check || bundle install --path vendor/bundle --retry=3 + name: install gems + - save_cache: + key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} + paths: + - ~/project/website/vendor/bundle + - run: + command: bundle exec middleman build + name: middleman build + - run: + command: ./scripts/deploy.sh + name: website deploy + working_directory: ~/project/website + test-other: + machine: + image: ubuntu-1604:201903-01 + working_directory: ~/go/src/github.com/hashicorp/nomad + environment: + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: '' + - GOTEST_PKGS_EXCLUDE: ./api|./client|./drivers/docker|./drivers/exec|./drivers/rkt|./drivers/shared/executor|./nomad|./devices + - GOTESTARCH: amd64 + steps: + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi - # saves gem cache if we have changed the Gemfile - - save_cache: - key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} - paths: - - ~/project/website/vendor/bundle + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi - - run: - name: middleman build - command: bundle exec middleman build + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports + test-devices: + docker: + - image: golang:1.12.13 + working_directory: /go/src/github.com/hashicorp/nomad + environment: + - GOMAXPROCS: 1 + - GOPATH: /go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./devices/... + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: amd64 + steps: + - checkout + - run: + command: apt-get update; apt-get install -y shellcheck sudo unzip + - run: + command: make deps + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi - - run: - name: website deploy - command: ./scripts/deploy.sh + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi -commands: - install-golang: - parameters: - version: - type: string - default: "1.12.13" + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports + test-website: + machine: + image: ubuntu-1604:201903-01 + working_directory: ~/go/src/github.com/hashicorp/nomad steps: - - run: - name: install golang << parameters.version >> - command: | - sudo rm -rf /usr/local/go - wget -q -O /tmp/golang.tar.gz https://dl.google.com/go/go<< parameters.version >>.linux-amd64.tar.gz - sudo tar -C /usr/local -xzf /tmp/golang.tar.gz - rm -rf /tmp/golang.tar.gz - - install-vault: - parameters: - version: - type: string - default: 1.2.3 + - checkout + - run: + command: make test-website + environment: + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + test-docker: + machine: + image: circleci/classic:201808-01 + working_directory: ~/go/src/github.com/hashicorp/nomad + environment: + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./drivers/docker + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: amd64 steps: - - run: - name: Install Vault << parameters.version >> - command: | - wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/<< parameters.version >>/vault_<< parameters.version>>_linux_amd64.zip - sudo unzip -d /usr/local/bin /tmp/vault.zip - rm -rf /tmp/vault* + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi - install-consul: - parameters: - version: - type: string - default: 1.6.1 - steps: - - run: - name: Install Consul << parameters.version >> - command: | - wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/<< parameters.version >>/consul_<< parameters.version >>_linux_amd64.zip - sudo unzip -d /usr/local/bin /tmp/consul.zip - rm -rf /tmp/consul* + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi - install-protoc: + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports + build-binaries: + docker: + - image: golang:1.12.13 + working_directory: /go/src/github.com/hashicorp/nomad + environment: + - GOMAXPROCS: 1 + - GOPATH: /go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GO_TAGS: codegen_generated steps: - - run: - name: install protoc - command: | - sudo rm -rf /usr/bin/protoc - sudo ./scripts/vagrant-linux-priv-protoc.sh - - run-tests: + - checkout + - run: + command: apt-get update; apt-get install -y sudo unzip zip + - run: + command: make deps + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + - run: + command: make pkg/windows_amd64.zip pkg/linux_amd64.zip + - store_artifacts: + destination: /builds/nomad_windows_amd64.zip + path: pkg/windows_amd64.zip + - store_artifacts: + destination: /builds/nomad_linux_amd64.zip + path: pkg/linux_amd64.zip + test-e2e: + docker: + - image: golang:1.12.13 + working_directory: /go/src/github.com/hashicorp/nomad steps: - - run: - name: Running Nomad Tests - command: | - if [ -z $GOTEST_PKGS_EXCLUDE ]; - then - unset GOTEST_PKGS_EXCLUDE - else - unset GOTEST_PKGS - fi + - checkout + - run: + command: apt-get update; apt-get install -y sudo unzip + - run: + command: | + groupadd --gid 3434 circleci + useradd --uid 3434 --gid circleci --shell /bin/bash --create-home circleci + echo 'circleci ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-circleci + echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep + chown -R circleci:circleci /go + name: prepare non-root user + - run: + command: sudo -E -H -u circleci PATH=${PATH} make deps + - run: + command: sudo -E -H -u circleci PATH=${PATH} make e2e-test + environment: + - GOMAXPROCS: 1 + - GOPATH: /go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + test-32bit: + machine: + image: ubuntu-1604:201903-01 + working_directory: ~/go/src/github.com/hashicorp/nomad + environment: + - GOLANG_VERSION: 1.12.13 + - GOMAXPROCS: 1 + - GOPATH: /home/circleci/go + - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + - NOMAD_SLOW_TEST: 1 + - GOTEST_PKGS: ./client/fingerprint + - GOTEST_PKGS_EXCLUDE: '' + - GOTESTARCH: '386' + steps: + - checkout + - run: + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz + name: install golang + - run: + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh + name: install protoc + - run: + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/1.6.1/consul_1.6.1_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* + name: Install Consul 1.6.1 + - run: + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/1.2.3/vault_1.2.3_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* + name: Install Vault 1.2.3 + - run: + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + name: Install 32bit gcc libs + - run: + command: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run: + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi - if [ ! -z $GOTESTARCH ]; then - export GOARCH="$GOTESTARCH"; - fi + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi - mkdir -p /tmp/test-reports - sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs - sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad + name: Running Nomad Tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports +workflows: + build-test: + jobs: + - build-binaries + - lint-go: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-client: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-nomad: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-api: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-devices: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-other: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-docker: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-exec: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-shared-exec: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-32bit: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-e2e: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + - test-ui: + filters: + branches: + ignore: + - stable-website + - test-website: + filters: + branches: + ignore: + - /^.-ui\b.*/ + - stable-website + website: + jobs: + - build-website: + filters: + branches: + only: stable-website + context: static-sites + version: 2 diff --git a/.circleci/config/commands/install-consul.yml b/.circleci/config/commands/install-consul.yml new file mode 100644 index 00000000000..75aeb3b81f2 --- /dev/null +++ b/.circleci/config/commands/install-consul.yml @@ -0,0 +1,11 @@ +parameters: + version: + type: string + default: 1.6.1 +steps: + - run: + name: Install Consul << parameters.version >> + command: | + wget -q -O /tmp/consul.zip https://releases.hashicorp.com/consul/<< parameters.version >>/consul_<< parameters.version >>_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/consul.zip + rm -rf /tmp/consul* diff --git a/.circleci/config/commands/install-golang.yml b/.circleci/config/commands/install-golang.yml new file mode 100644 index 00000000000..485ffd9e1c2 --- /dev/null +++ b/.circleci/config/commands/install-golang.yml @@ -0,0 +1,10 @@ +steps: + - run: + name: install golang + command: | + set -x + echo installing golang ${GOLANG_VERSION} + sudo rm -rf /usr/local/go + wget -O /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf /tmp/golang.tar.gz + rm -rf /tmp/golang.tar.gz diff --git a/.circleci/config/commands/install-protoc.yml b/.circleci/config/commands/install-protoc.yml new file mode 100644 index 00000000000..db0d0dad7e4 --- /dev/null +++ b/.circleci/config/commands/install-protoc.yml @@ -0,0 +1,6 @@ +steps: + - run: + name: install protoc + command: | + sudo rm -rf /usr/bin/protoc + sudo ./scripts/vagrant-linux-priv-protoc.sh diff --git a/.circleci/config/commands/install-vault.yml b/.circleci/config/commands/install-vault.yml new file mode 100644 index 00000000000..3e52cbee22c --- /dev/null +++ b/.circleci/config/commands/install-vault.yml @@ -0,0 +1,11 @@ +parameters: + version: + type: string + default: 1.2.3 +steps: + - run: + name: Install Vault << parameters.version >> + command: | + wget -q -O /tmp/vault.zip https://releases.hashicorp.com/vault/<< parameters.version >>/vault_<< parameters.version>>_linux_amd64.zip + sudo unzip -d /usr/local/bin /tmp/vault.zip + rm -rf /tmp/vault* diff --git a/.circleci/config/commands/run-tests.yml b/.circleci/config/commands/run-tests.yml new file mode 100644 index 00000000000..f72a1d7a550 --- /dev/null +++ b/.circleci/config/commands/run-tests.yml @@ -0,0 +1,18 @@ +steps: + - run: + name: Running Nomad Tests + command: | + if [ -z $GOTEST_PKGS_EXCLUDE ]; + then + unset GOTEST_PKGS_EXCLUDE + else + unset GOTEST_PKGS + fi + + if [ ! -z $GOTESTARCH ]; then + export GOARCH="$GOTESTARCH"; + fi + + mkdir -p /tmp/test-reports + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad diff --git a/.circleci/config/config.yml b/.circleci/config/config.yml new file mode 100644 index 00000000000..9d3168971f7 --- /dev/null +++ b/.circleci/config/config.yml @@ -0,0 +1,39 @@ +version: 2.1 + +references: + # environment specific references - aim to avoid conflicts + go-machine-image: &go_machine_image + circleci/classic:201808-01 + go-machine-recent-image: &go_machine_recent_image + ubuntu-1604:201903-01 + +executors: + go: + working_directory: /go/src/github.com/hashicorp/nomad + docker: + - image: golang:1.12.13 + environment: &common_envs + GOMAXPROCS: 1 + NOMAD_SLOW_TEST: 1 + GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + GOPATH: /go + + go-machine: + working_directory: ~/go/src/github.com/hashicorp/nomad + machine: + image: *go_machine_image + environment: &machine_env + GOMAXPROCS: 1 + NOMAD_SLOW_TEST: 1 + GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + GOPATH: /home/circleci/go + GOLANG_VERSION: "1.12.13" + + + # uses a more recent image with unattended upgrades disabled properly + # but seems to break docker builds + go-machine-recent: + working_directory: ~/go/src/github.com/hashicorp/nomad + machine: + image: *go_machine_recent_image + environment: *machine_env diff --git a/.circleci/config/jobs/build-binaries.yml b/.circleci/config/jobs/build-binaries.yml new file mode 100644 index 00000000000..21a0079c524 --- /dev/null +++ b/.circleci/config/jobs/build-binaries.yml @@ -0,0 +1,17 @@ +executor: go +environment: + # TODO: add ui tag here + GO_TAGS: "codegen_generated" +steps: + - checkout + - run: apt-get update; apt-get install -y sudo unzip zip + - run: make deps + - install-protoc + - run: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs + - run: make pkg/windows_amd64.zip pkg/linux_amd64.zip + - store_artifacts: + path: pkg/windows_amd64.zip + destination: /builds/nomad_windows_amd64.zip + - store_artifacts: + path: pkg/linux_amd64.zip + destination: /builds/nomad_linux_amd64.zip diff --git a/.circleci/config/jobs/build-website.yml b/.circleci/config/jobs/build-website.yml new file mode 100644 index 00000000000..3dc1384c3b2 --- /dev/null +++ b/.circleci/config/jobs/build-website.yml @@ -0,0 +1,30 @@ +# setting the working_directory along with the checkout path allows us to not have +# to cd into the website/ directory for commands +working_directory: ~/project/website +docker: + - image: hashicorp/middleman-hashicorp:0.3.35 +steps: + - checkout: + path: ~/project + + # restores gem cache + - restore_cache: + key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} + + - run: + name: install gems + command: bundle check || bundle install --path vendor/bundle --retry=3 + + # saves gem cache if we have changed the Gemfile + - save_cache: + key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} + paths: + - ~/project/website/vendor/bundle + + - run: + name: middleman build + command: bundle exec middleman build + + - run: + name: website deploy + command: ./scripts/deploy.sh diff --git a/.circleci/config/jobs/lint-go.yml b/.circleci/config/jobs/lint-go.yml new file mode 100644 index 00000000000..90a9abcab61 --- /dev/null +++ b/.circleci/config/jobs/lint-go.yml @@ -0,0 +1,8 @@ +executor: go +steps: + - checkout + - run: apt-get update; apt-get install -y shellcheck sudo unzip + - install-protoc + - run: make deps lint-deps + - run: make check + - run: make checkscripts diff --git a/.circleci/config/jobs/test-container.yml b/.circleci/config/jobs/test-container.yml new file mode 100644 index 00000000000..744f931d030 --- /dev/null +++ b/.circleci/config/jobs/test-container.yml @@ -0,0 +1,27 @@ +executor: go +parameters: + test_packages: + type: string + default: "" + exclude_packages: + type: string + default: "" + goarch: + type: string + default: "amd64" +environment: + GOTEST_PKGS: "<< parameters.test_packages >>" + GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>" + GOTESTARCH: "<< parameters.goarch >>" +steps: + - checkout + - run: apt-get update; apt-get install -y shellcheck sudo unzip + - run: make deps + - install-protoc + - install-consul + - install-vault + - run-tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports diff --git a/.circleci/config/jobs/test-e2e.yml b/.circleci/config/jobs/test-e2e.yml new file mode 100644 index 00000000000..103cc7fb964 --- /dev/null +++ b/.circleci/config/jobs/test-e2e.yml @@ -0,0 +1,17 @@ +executor: go +steps: + - checkout + - run: apt-get update; apt-get install -y sudo unzip + # e2e tests require privileged mount/umount permissions when running as root + # TODO: switch to using machine executor and run as root to test e2e path + - run: + name: prepare non-root user + command: | + groupadd --gid 3434 circleci + useradd --uid 3434 --gid circleci --shell /bin/bash --create-home circleci + echo 'circleci ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-circleci + echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep + chown -R circleci:circleci /go + + - run: sudo -E -H -u circleci PATH=${PATH} make deps + - run: sudo -E -H -u circleci PATH=${PATH} make e2e-test diff --git a/.circleci/config/jobs/test-machine.yml b/.circleci/config/jobs/test-machine.yml new file mode 100644 index 00000000000..755a99fcc3b --- /dev/null +++ b/.circleci/config/jobs/test-machine.yml @@ -0,0 +1,39 @@ +executor: "<< parameters.executor >>" +parameters: + test_packages: + type: string + default: "" + exclude_packages: + type: string + default: "" + executor: + type: string + default: "go-machine-recent" + goarch: + type: string + default: "amd64" +environment: + GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>" + GOTEST_PKGS: "<< parameters.test_packages >>" + GOTESTARCH: "<< parameters.goarch >>" +steps: + - checkout + - install-golang + - install-protoc + - install-consul + - install-vault + - run: + name: Install 32bit gcc libs + command: | + if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then + sudo apt-get update + sudo apt-get install -y gcc-multilib + else + echo "Skipping 32bit lib installation while building for not 386" + fi + - run: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap + - run-tests + - store_test_results: + path: /tmp/test-reports + - store_artifacts: + path: /tmp/test-reports diff --git a/.circleci/config/jobs/test-ui.yml b/.circleci/config/jobs/test-ui.yml new file mode 100644 index 00000000000..d29c0f92bfc --- /dev/null +++ b/.circleci/config/jobs/test-ui.yml @@ -0,0 +1,27 @@ +docker: + - image: circleci/node:10-browsers + environment: + # See https://git.io/vdao3 for details. + JOBS: 2 +steps: + - checkout + - restore_cache: + keys: + - v1-deps-{{ checksum "ui/yarn.lock" }} + - v1-deps- + - run: + name: yarn install + command: cd ui && yarn install + - save_cache: + key: v1-deps-{{ checksum "ui/yarn.lock" }} + paths: + - ./ui/node_modules + - run: + name: lint:js + command: cd ui && yarn run lint:js + - run: + name: lint:hbs + command: cd ui && yarn run lint:hbs + - run: + name: Ember tests + command: cd ui && yarn test diff --git a/.circleci/config/jobs/test-website.yml b/.circleci/config/jobs/test-website.yml new file mode 100644 index 00000000000..0a54aa06a07 --- /dev/null +++ b/.circleci/config/jobs/test-website.yml @@ -0,0 +1,4 @@ +executor: go-machine-recent +steps: + - checkout + - run: make test-website diff --git a/.circleci/config/workflows/build-test.yml b/.circleci/config/workflows/build-test.yml new file mode 100644 index 00000000000..136fd408740 --- /dev/null +++ b/.circleci/config/workflows/build-test.yml @@ -0,0 +1,62 @@ +jobs: +- build-binaries +- lint-go: + filters: &backend_branches_filter + branches: + ignore: + - /^.-ui\b.*/ + - stable-website +- test-machine: + name: "test-client" + test_packages: "./client/..." + filters: *backend_branches_filter +- test-machine: + name: "test-nomad" + test_packages: "./nomad/..." + filters: *backend_branches_filter +- test-machine: + # API Tests run in a VM rather than container due to the FS tests + # requiring `mount` priviliges. + name: "test-api" + test_packages: "./api/..." + filters: *backend_branches_filter +- test-container: + name: "test-devices" + test_packages: "./devices/..." + filters: *backend_branches_filter +- test-machine: + name: "test-other" + exclude_packages: "./api|./client|./drivers/docker|./drivers/exec|./drivers/rkt|./drivers/shared/executor|./nomad|./devices" + filters: *backend_branches_filter +- test-machine: + name: "test-docker" + test_packages: "./drivers/docker" + # docker is misbehaving in docker-machine-recent image + # and we get unexpected failures + # e.g. https://circleci.com/gh/hashicorp/nomad/3854 + executor: go-machine + filters: *backend_branches_filter +- test-machine: + name: "test-exec" + test_packages: "./drivers/exec" + filters: *backend_branches_filter +- test-machine: + name: "test-shared-exec" + test_packages: "./drivers/shared/executor" + filters: *backend_branches_filter +- test-machine: + name: "test-32bit" + # Currently we only explicitly test fingerprinting on 32bit + # architectures. + test_packages: "./client/fingerprint" + goarch: "386" + filters: *backend_branches_filter +- test-e2e: + filters: *backend_branches_filter +- test-ui: + filters: + branches: + ignore: + - stable-website +- test-website: + filters: *backend_branches_filter diff --git a/.circleci/config/workflows/website.yml b/.circleci/config/workflows/website.yml new file mode 100644 index 00000000000..519c460e591 --- /dev/null +++ b/.circleci/config/workflows/website.yml @@ -0,0 +1,6 @@ +jobs: + - build-website: + context: static-sites + filters: + branches: + only: stable-website From 96a3742ed961e87cb55e4f32ca742de8b73fd111 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 20 Nov 2019 14:52:25 -0500 Subject: [PATCH 076/241] simply link to vault .circleci README --- .circleci/README.md | 129 +------------------------------------------- 1 file changed, 1 insertion(+), 128 deletions(-) diff --git a/.circleci/README.md b/.circleci/README.md index 1ec75cafade..c2107009793 100644 --- a/.circleci/README.md +++ b/.circleci/README.md @@ -1,130 +1,3 @@ # How to use CircleCI multi-file config -This README and the Makefile should be in your `.circleci` directory, -in the root of your repository. -All path references in this README assume we are in this `.circleci` directory. - -The `Makefile` in this directory generates `./config.yml` in CircleCI 2.0 syntax, -from the tree rooted at `./config/`, which contains files in CircleCI 2.0 or 2.1 syntax. - - -## Quickstart - -The basic workflow is: - -- Edit source files in `./config/` -- When you are done, run `make ci-config` to update `./config.yml` -- Commit this entire `.circleci` directory, including that generated file together. -- Run `make ci-verify` to ensure the current `./config.yml` is up to date with the source. - -When merging this `.circleci` directory: - -- Do not merge the generated `./config.yml` file, instead: -- Merge the source files under `./config/`, and then -- Run `make ci-config` to re-generate the merged `./config.yml` - -And that's it, for more detail, read on! - - -## How does it work, roughly? - -CircleCI supports [generating a single config file from many], -using the `$ circleci config pack` command. -It also supports [expanding 2.1 syntax to 2.0 syntax] -using the `$ circleci config process` command. -We use these two commands, stitched together using the `Makefile` -to implement the workflow. - -[generating a single config file from many]: https://circleci.com/docs/2.0/local-cli/#packing-a-config -[expanding 2.1 syntax to 2.0 syntax]: https://circleci.com/docs/2.0/local-cli/#processing-a-config - - -## Prerequisites - -You will need the [CircleCI CLI tool] installed and working, -at least version `0.1.5607`. -You can [download this tool directly from GitHub Releases]. - -``` -$ circleci version -0.1.5607+f705856 -``` - -[CircleCI CLI tool]: https://circleci.com/docs/2.0/local-cli/ -[download this tool directly from GitHub Releases]: https://github.com/CircleCI-Public/circleci-cli/releases - - -## Updating the config source - -Before making changes, be sure to understand the layout -of the `./config/` file tree, as well as circleci 2.1 syntax. -See the [Syntax and layout] section below. - -To update the config, you should edit, add or remove files -in the `./config/` directory, -and then run `make ci-config`. -If that's successful, -you should then commit every `*.yml` file in the tree rooted in this directory. -That is: you should commit both the source under `./config/` -and the generated file `./config.yml` at the same time, in the same commit. -The included git pre-commit hook will help with this. -Do not edit the `./config.yml` file directly, as you will lose your changes -next time `make ci-config` is run. - -[Syntax and layout]: #syntax-and-layout - - -### Verifying `./config.yml` - -To check whether or not the current `./config.yml` is up to date with the source -and valid, run `$ make ci-verify`. -Note that `$ make ci-verify` should be run in CI, -in case not everyone has the git pre-commit hook set up correctly. - - -#### Example shell session - -```sh -$ make ci-config -config.yml updated -$ git add -A . # The -A makes sure to include deletions/renames etc. -$ git commit -m "ci: blah blah blah" -Changes detected in .circleci/, running 'make -C .circleci ci-verify' ---> Generated config.yml is up to date! ---> Config file at config.yml is valid. -``` - - -### Syntax and layout - -It is important to understand the layout of the config directory. -Read the documentation on [packing a config] for a full understanding -of how multiple YAML files are merged by the circleci CLI tool. - -[packing a config]: https://circleci.com/docs/2.0/local-cli/#packing-a-config - -Here is an example file tree (with comments added afterwards): - -```sh -$ tree . -. -├── Makefile -├── README.md # This file. -├── config # The source code for config.yml is rooted here. -│   ├── @config.yml # Files beginning with @ are treated specially by `circleci config pack` -│   ├── commands # Subdirectories of config become top-level keys. -│   │   └── go_test.yml # Filenames (minus .yml) become top-level keys under -│   │   └── go_build.yml # their parent (in this case "commands"). -│ │ # The contents of go_test.yml therefore are placed at: .commands.go_test: -│   └── jobs # jobs also becomes a top-level key under config... -│   ├── build.yml # ...and likewise filenames become keys under their parent. -│   └── test.yml -└── config.yml # The generated file in 2.0 syntax. -``` - -About those `@` files... Preceding a filename with `@` -indicates to `$ circleci config pack` that the contents of this YAML file -should be at the top-level, rather than underneath a key named after their filename. -This naming convention is unfortunate as it breaks autocompletion in bash, -but there we go. - +Refer to https://github.com/hashicorp/vault/blob/master/.circleci/README.md . From 3478e980135b218e6d331ed383cc72ae434cff09 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Wed, 20 Nov 2019 15:34:25 -0800 Subject: [PATCH 077/241] docs: added #6021 to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49bafe439bc..9f86ec1c0a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ FEATURES: IMPROVEMENTS: * api: Add `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)] * api: Added JSON representation of rules to policy endpoint response [[GH-6017](https://github.com/hashicorp/nomad/pull/6017)] + * api: Update policy endpoint to permit anonymous access [[GH-6021](https://github.com/hashicorp/nomad/issues/6021)] * build: Updated to Go 1.12.13 [[GH-6606](https://github.com/hashicorp/nomad/issues/6606)] * core: Add support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)] From 82263f3b79ccff1dd3677915a6f34e72b6d99244 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Wed, 20 Nov 2019 14:01:10 -0500 Subject: [PATCH 078/241] command: quota status reports network usage --- command/quota_status.go | 16 +++++++++++++--- .../docs/commands/quota/status.html.md.erb | 4 ++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/command/quota_status.go b/command/quota_status.go index 6c7805e3fdb..f5a0a3690ea 100644 --- a/command/quota_status.go +++ b/command/quota_status.go @@ -155,7 +155,7 @@ func formatQuotaLimits(spec *api.QuotaSpec, usages map[string]*api.QuotaUsage) s sort.Sort(api.QuotaLimitSort(spec.Limits)) limits := make([]string, len(spec.Limits)+1) - limits[0] = "Region|CPU Usage|Memory Usage" + limits[0] = "Region|CPU Usage|Memory Usage|Network Usage" i := 0 for _, specLimit := range spec.Limits { i++ @@ -171,17 +171,27 @@ func formatQuotaLimits(spec *api.QuotaSpec, usages map[string]*api.QuotaUsage) s return used, ok } + specBits := 0 + if len(specLimit.RegionLimit.Networks) == 1 { + specBits = *specLimit.RegionLimit.Networks[0].MBits + } + used, ok := lookupUsage() if !ok { cpu := fmt.Sprintf("- / %s", formatQuotaLimitInt(specLimit.RegionLimit.CPU)) memory := fmt.Sprintf("- / %s", formatQuotaLimitInt(specLimit.RegionLimit.MemoryMB)) - limits[i] = fmt.Sprintf("%s|%s|%s", specLimit.Region, cpu, memory) + net := fmt.Sprintf("- / %s", formatQuotaLimitInt(&specBits)) + limits[i] = fmt.Sprintf("%s|%s|%s|%s", specLimit.Region, cpu, memory, net) continue } cpu := fmt.Sprintf("%d / %s", *used.RegionLimit.CPU, formatQuotaLimitInt(specLimit.RegionLimit.CPU)) memory := fmt.Sprintf("%d / %s", *used.RegionLimit.MemoryMB, formatQuotaLimitInt(specLimit.RegionLimit.MemoryMB)) - limits[i] = fmt.Sprintf("%s|%s|%s", specLimit.Region, cpu, memory) + net := fmt.Sprintf("- / %s", formatQuotaLimitInt(&specBits)) + if len(used.RegionLimit.Networks) == 1 { + net = fmt.Sprintf("%d / %s", *used.RegionLimit.Networks[0].MBits, formatQuotaLimitInt(&specBits)) + } + limits[i] = fmt.Sprintf("%s|%s|%s|%s", specLimit.Region, cpu, memory, net) } return formatList(limits) diff --git a/website/source/docs/commands/quota/status.html.md.erb b/website/source/docs/commands/quota/status.html.md.erb index 7de58835cd6..e568c61fb5e 100644 --- a/website/source/docs/commands/quota/status.html.md.erb +++ b/website/source/docs/commands/quota/status.html.md.erb @@ -36,6 +36,6 @@ Description = Limit the shared default namespace Limits = 1 Quota Limits -Region CPU Usage Memory Usage -global 500 / 2500 256 / 2000 +Region CPU Usage Memory Usage Network Usage +global 500 / 2500 256 / 2000 30 / 50 ``` From 26b39ffac887e5829fefb6bb1270ee27da4605a8 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Wed, 20 Nov 2019 14:02:25 -0500 Subject: [PATCH 079/241] command: quota init writes files with a network limit --- command/quota_init.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/command/quota_init.go b/command/quota_init.go index a78a356c773..45d7125913f 100644 --- a/command/quota_init.go +++ b/command/quota_init.go @@ -115,6 +115,9 @@ limit { region_limit { cpu = 2500 memory = 1000 + network { + mbits = 50 + } } } `) @@ -128,7 +131,10 @@ var defaultJsonQuotaSpec = strings.TrimSpace(` "Region": "global", "RegionLimit": { "CPU": 2500, - "MemoryMB": 1000 + "MemoryMB": 1000, + "Networks": [ + { "MBits": 50 } + ] } } ] From 9210bde91a580b6cd7ffe7299db485c3b3c5783f Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Tue, 19 Nov 2019 16:52:03 -0500 Subject: [PATCH 080/241] docs: update quota docs to include network limits --- website/source/api/quotas.html.md | 45 ++++++++++++++++--- .../docs/commands/quota/inspect.html.md.erb | 12 ++++- .../governance-and-policy/quotas.html.md | 7 ++- 3 files changed, 57 insertions(+), 7 deletions(-) diff --git a/website/source/api/quotas.html.md b/website/source/api/quotas.html.md index 290d5ced87d..988869bbf7c 100644 --- a/website/source/api/quotas.html.md +++ b/website/source/api/quotas.html.md @@ -62,7 +62,17 @@ $ curl \ "CPU": 2500, "DiskMB": 0, "MemoryMB": 2000, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 50, + "Mode": "", + "ReservedPorts": null + } + ] } } ], @@ -115,7 +125,17 @@ $ curl \ "CPU": 2500, "DiskMB": 0, "MemoryMB": 2000, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 50, + "Mode": "", + "ReservedPorts": null + } + ] } } ], @@ -157,12 +177,17 @@ object](https://github.com/hashicorp/nomad/blob/master/api/quota.go#L100-L131). "Region": "global", "RegionLimit": { "CPU": 2500, - "MemoryMB": 1000 + "MemoryMB": 1000, + "Networks": [ + { + "Mbits": 50 + } + ] } } ] } -``` +``` ### Sample Request @@ -305,7 +330,17 @@ $ curl \ "CPU": 500, "MemoryMB": 256, "DiskMB": 0, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 50, + "Mode": "", + "ReservedPorts": null + } + ] }, "Hash": "NLOoV2WBU8ieJIrYXXx8NRb5C2xU61pVVWRDLEIMxlU=" } diff --git a/website/source/docs/commands/quota/inspect.html.md.erb b/website/source/docs/commands/quota/inspect.html.md.erb index 403e4f2da09..cc843126b6d 100644 --- a/website/source/docs/commands/quota/inspect.html.md.erb +++ b/website/source/docs/commands/quota/inspect.html.md.erb @@ -68,7 +68,17 @@ $ nomad quota inspect default-quota "CPU": 500, "DiskMB": 0, "MemoryMB": 256, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 0, + "Mode": "", + "ReservedPorts": null + } + ] } } } diff --git a/website/source/guides/governance-and-policy/quotas.html.md b/website/source/guides/governance-and-policy/quotas.html.md index e803226bc3a..1c7f56df7f1 100644 --- a/website/source/guides/governance-and-policy/quotas.html.md +++ b/website/source/guides/governance-and-policy/quotas.html.md @@ -65,13 +65,18 @@ limit { region_limit { cpu = 2500 memory = 1000 + networks = [ + { mbits = 50 } + ] } } ``` A quota specification is composed of one or more resource limits. Each limit applies to a particular Nomad region. Within the limit object, operators can -specify the allowed CPU and memory usage. +specify the allowed CPU, memory usage, and network bandwidth. Network bandwidth +limits may only specify a single limit for all interfaces. Network quotas were +introduced in 0.10.2 and are optional, they will not be enforced if omitted. To create the particular quota, it is as simple as running: From fe8e3e7d8098803585b46542f23c5736da0d3ad9 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Wed, 20 Nov 2019 14:01:10 -0500 Subject: [PATCH 081/241] command: quota status reports network usage --- command/quota_status.go | 16 +++++++++++++--- .../docs/commands/quota/status.html.md.erb | 4 ++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/command/quota_status.go b/command/quota_status.go index 6c7805e3fdb..f5a0a3690ea 100644 --- a/command/quota_status.go +++ b/command/quota_status.go @@ -155,7 +155,7 @@ func formatQuotaLimits(spec *api.QuotaSpec, usages map[string]*api.QuotaUsage) s sort.Sort(api.QuotaLimitSort(spec.Limits)) limits := make([]string, len(spec.Limits)+1) - limits[0] = "Region|CPU Usage|Memory Usage" + limits[0] = "Region|CPU Usage|Memory Usage|Network Usage" i := 0 for _, specLimit := range spec.Limits { i++ @@ -171,17 +171,27 @@ func formatQuotaLimits(spec *api.QuotaSpec, usages map[string]*api.QuotaUsage) s return used, ok } + specBits := 0 + if len(specLimit.RegionLimit.Networks) == 1 { + specBits = *specLimit.RegionLimit.Networks[0].MBits + } + used, ok := lookupUsage() if !ok { cpu := fmt.Sprintf("- / %s", formatQuotaLimitInt(specLimit.RegionLimit.CPU)) memory := fmt.Sprintf("- / %s", formatQuotaLimitInt(specLimit.RegionLimit.MemoryMB)) - limits[i] = fmt.Sprintf("%s|%s|%s", specLimit.Region, cpu, memory) + net := fmt.Sprintf("- / %s", formatQuotaLimitInt(&specBits)) + limits[i] = fmt.Sprintf("%s|%s|%s|%s", specLimit.Region, cpu, memory, net) continue } cpu := fmt.Sprintf("%d / %s", *used.RegionLimit.CPU, formatQuotaLimitInt(specLimit.RegionLimit.CPU)) memory := fmt.Sprintf("%d / %s", *used.RegionLimit.MemoryMB, formatQuotaLimitInt(specLimit.RegionLimit.MemoryMB)) - limits[i] = fmt.Sprintf("%s|%s|%s", specLimit.Region, cpu, memory) + net := fmt.Sprintf("- / %s", formatQuotaLimitInt(&specBits)) + if len(used.RegionLimit.Networks) == 1 { + net = fmt.Sprintf("%d / %s", *used.RegionLimit.Networks[0].MBits, formatQuotaLimitInt(&specBits)) + } + limits[i] = fmt.Sprintf("%s|%s|%s|%s", specLimit.Region, cpu, memory, net) } return formatList(limits) diff --git a/website/source/docs/commands/quota/status.html.md.erb b/website/source/docs/commands/quota/status.html.md.erb index 7de58835cd6..e568c61fb5e 100644 --- a/website/source/docs/commands/quota/status.html.md.erb +++ b/website/source/docs/commands/quota/status.html.md.erb @@ -36,6 +36,6 @@ Description = Limit the shared default namespace Limits = 1 Quota Limits -Region CPU Usage Memory Usage -global 500 / 2500 256 / 2000 +Region CPU Usage Memory Usage Network Usage +global 500 / 2500 256 / 2000 30 / 50 ``` From eea322522ca3b937abed4b7d4ecad5b0b5cf8a98 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Wed, 20 Nov 2019 14:02:25 -0500 Subject: [PATCH 082/241] command: quota init writes files with a network limit --- command/quota_init.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/command/quota_init.go b/command/quota_init.go index a78a356c773..45d7125913f 100644 --- a/command/quota_init.go +++ b/command/quota_init.go @@ -115,6 +115,9 @@ limit { region_limit { cpu = 2500 memory = 1000 + network { + mbits = 50 + } } } `) @@ -128,7 +131,10 @@ var defaultJsonQuotaSpec = strings.TrimSpace(` "Region": "global", "RegionLimit": { "CPU": 2500, - "MemoryMB": 1000 + "MemoryMB": 1000, + "Networks": [ + { "MBits": 50 } + ] } } ] From 4e96d12bf68aa8bd67cb8ab448ed5f6f5ddca32f Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Tue, 19 Nov 2019 16:52:03 -0500 Subject: [PATCH 083/241] docs: update quota docs to include network limits --- website/source/api/quotas.html.md | 45 ++++++++++++++++--- .../docs/commands/quota/inspect.html.md.erb | 12 ++++- .../governance-and-policy/quotas.html.md | 7 ++- 3 files changed, 57 insertions(+), 7 deletions(-) diff --git a/website/source/api/quotas.html.md b/website/source/api/quotas.html.md index 290d5ced87d..988869bbf7c 100644 --- a/website/source/api/quotas.html.md +++ b/website/source/api/quotas.html.md @@ -62,7 +62,17 @@ $ curl \ "CPU": 2500, "DiskMB": 0, "MemoryMB": 2000, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 50, + "Mode": "", + "ReservedPorts": null + } + ] } } ], @@ -115,7 +125,17 @@ $ curl \ "CPU": 2500, "DiskMB": 0, "MemoryMB": 2000, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 50, + "Mode": "", + "ReservedPorts": null + } + ] } } ], @@ -157,12 +177,17 @@ object](https://github.com/hashicorp/nomad/blob/master/api/quota.go#L100-L131). "Region": "global", "RegionLimit": { "CPU": 2500, - "MemoryMB": 1000 + "MemoryMB": 1000, + "Networks": [ + { + "Mbits": 50 + } + ] } } ] } -``` +``` ### Sample Request @@ -305,7 +330,17 @@ $ curl \ "CPU": 500, "MemoryMB": 256, "DiskMB": 0, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 50, + "Mode": "", + "ReservedPorts": null + } + ] }, "Hash": "NLOoV2WBU8ieJIrYXXx8NRb5C2xU61pVVWRDLEIMxlU=" } diff --git a/website/source/docs/commands/quota/inspect.html.md.erb b/website/source/docs/commands/quota/inspect.html.md.erb index 403e4f2da09..cc843126b6d 100644 --- a/website/source/docs/commands/quota/inspect.html.md.erb +++ b/website/source/docs/commands/quota/inspect.html.md.erb @@ -68,7 +68,17 @@ $ nomad quota inspect default-quota "CPU": 500, "DiskMB": 0, "MemoryMB": 256, - "Networks": null + "Networks": [ + { + "CIDR": "", + "Device": "", + "DynamicPorts": null, + "IP": "", + "MBits": 0, + "Mode": "", + "ReservedPorts": null + } + ] } } } diff --git a/website/source/guides/governance-and-policy/quotas.html.md b/website/source/guides/governance-and-policy/quotas.html.md index e803226bc3a..1c7f56df7f1 100644 --- a/website/source/guides/governance-and-policy/quotas.html.md +++ b/website/source/guides/governance-and-policy/quotas.html.md @@ -65,13 +65,18 @@ limit { region_limit { cpu = 2500 memory = 1000 + networks = [ + { mbits = 50 } + ] } } ``` A quota specification is composed of one or more resource limits. Each limit applies to a particular Nomad region. Within the limit object, operators can -specify the allowed CPU and memory usage. +specify the allowed CPU, memory usage, and network bandwidth. Network bandwidth +limits may only specify a single limit for all interfaces. Network quotas were +introduced in 0.10.2 and are optional, they will not be enforced if omitted. To create the particular quota, it is as simple as running: From 47bc949a8fadc6524d6d1d2354938921da61a910 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 20 Nov 2019 20:22:14 -0500 Subject: [PATCH 084/241] tests: remove TestClient_RestoreError test TestClient_RestoreError is very slow, taking ~81 seconds. It has few problematic patterns. It's unclear what it tests, it simulates a failure condition where all state db lookup fails and asserts that alloc fails. Though starting from https://github.com/hashicorp/nomad/pull/6216 , we don't fail allocs in that condition but rather restart them. Also, the drivers used in second client `c2` are the same singleton instances used in `c1` and already shutdown. We ought to start healthy new driver instances. --- client/client_test.go | 92 ------------------------------------------- 1 file changed, 92 deletions(-) diff --git a/client/client_test.go b/client/client_test.go index f1a4c00134f..4c029eaf46f 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -29,7 +29,6 @@ import ( "github.com/hashicorp/nomad/testutil" "github.com/stretchr/testify/assert" - hclog "github.com/hashicorp/go-hclog" cstate "github.com/hashicorp/nomad/client/state" ctestutil "github.com/hashicorp/nomad/client/testutil" "github.com/stretchr/testify/require" @@ -637,97 +636,6 @@ func TestClient_SaveRestoreState(t *testing.T) { } } -func TestClient_RestoreError(t *testing.T) { - t.Parallel() - require := require.New(t) - - s1, _ := testServer(t, nil) - defer s1.Shutdown() - testutil.WaitForLeader(t, s1.RPC) - - c1, cleanup := TestClient(t, func(c *config.Config) { - c.DevMode = false - c.RPCHandler = s1 - }) - defer cleanup() - - // Wait until the node is ready - waitTilNodeReady(c1, t) - - // Create mock allocations - job := mock.Job() - alloc1 := mock.Alloc() - alloc1.NodeID = c1.Node().ID - alloc1.Job = job - alloc1.JobID = job.ID - alloc1.Job.TaskGroups[0].Tasks[0].Driver = "mock_driver" - alloc1.Job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{ - "run_for": "10s", - } - alloc1.ClientStatus = structs.AllocClientStatusRunning - - state := s1.State() - err := state.UpsertJob(100, job) - require.Nil(err) - - err = state.UpsertJobSummary(101, mock.JobSummary(alloc1.JobID)) - require.Nil(err) - - err = state.UpsertAllocs(102, []*structs.Allocation{alloc1}) - require.Nil(err) - - // Allocations should get registered - testutil.WaitForResult(func() (bool, error) { - c1.allocLock.RLock() - ar := c1.allocs[alloc1.ID] - c1.allocLock.RUnlock() - if ar == nil { - return false, fmt.Errorf("nil alloc runner") - } - if ar.Alloc().ClientStatus != structs.AllocClientStatusRunning { - return false, fmt.Errorf("client status: got %v; want %v", ar.Alloc().ClientStatus, structs.AllocClientStatusRunning) - } - return true, nil - }, func(err error) { - t.Fatalf("err: %v", err) - }) - - // Shutdown the client, saves state - if err := c1.Shutdown(); err != nil { - t.Fatalf("err: %v", err) - } - - // Create a new client with a stateDB implementation that errors - logger := testlog.HCLogger(t) - c1.config.Logger = logger - catalog := consul.NewMockCatalog(logger) - mockService := consulApi.NewMockConsulServiceClient(t, logger) - - // This stateDB returns errors for all methods called by restore - stateDBFunc := func(hclog.Logger, string) (cstate.StateDB, error) { - return &cstate.ErrDB{Allocs: []*structs.Allocation{alloc1}}, nil - } - c1.config.StateDBFactory = stateDBFunc - - c2, err := NewClient(c1.config, catalog, mockService) - require.Nil(err) - defer c2.Shutdown() - - // Ensure the allocation has been marked as failed on the server - testutil.WaitForResult(func() (bool, error) { - alloc, err := s1.State().AllocByID(nil, alloc1.ID) - require.Nil(err) - failed := alloc.ClientStatus == structs.AllocClientStatusFailed - if !failed { - return false, fmt.Errorf("Expected failed client status, but got %v", alloc.ClientStatus) - } - return true, nil - }, func(err error) { - require.NoError(err) - }) - -} - func TestClient_AddAllocError(t *testing.T) { t.Parallel() require := require.New(t) From 77a0064fcd2a2e21fa3dfa920a105aa9b2e0f914 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 20 Nov 2019 20:29:27 -0500 Subject: [PATCH 085/241] testS: fix TestClient_RestoreError When spinning a second client, ensure that it uses new driver instances, rather than reuse the already shutdown unhealthy drivers from first instance. This speeds up tests significantly, but cutting ~50 seconds or so, the timeout in NewClient until drivers fingerprints. They never do because drivers were shutdown already. --- client/client_test.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/client/client_test.go b/client/client_test.go index 4c029eaf46f..8f677f1feb4 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -18,6 +18,7 @@ import ( "github.com/hashicorp/nomad/client/state" "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/helper/pluginutils/catalog" + "github.com/hashicorp/nomad/helper/pluginutils/singleton" "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad" @@ -602,10 +603,14 @@ func TestClient_SaveRestoreState(t *testing.T) { // Create a new client logger := testlog.HCLogger(t) c1.config.Logger = logger - catalog := consul.NewMockCatalog(logger) + consulCatalog := consul.NewMockCatalog(logger) mockService := consulApi.NewMockConsulServiceClient(t, logger) - c2, err := NewClient(c1.config, catalog, mockService) + // ensure we use non-shutdown driver instances + c1.config.PluginLoader = catalog.TestPluginLoaderWithOptions(t, "", c1.config.Options, nil) + c1.config.PluginSingletonLoader = singleton.NewSingletonLoader(logger, c1.config.PluginLoader) + + c2, err := NewClient(c1.config, consulCatalog, mockService) if err != nil { t.Fatalf("err: %v", err) } From b886e154879aa3280a058c3670b0e0f156128447 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 20 Nov 2019 20:32:11 -0500 Subject: [PATCH 086/241] tests: run TestClient_WatchAllocs in non-linux environments --- client/client_test.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/client/client_test.go b/client/client_test.go index 8f677f1feb4..8899b0fd89c 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -31,7 +31,6 @@ import ( "github.com/stretchr/testify/assert" cstate "github.com/hashicorp/nomad/client/state" - ctestutil "github.com/hashicorp/nomad/client/testutil" "github.com/stretchr/testify/require" ) @@ -447,7 +446,6 @@ func TestClient_UpdateAllocStatus(t *testing.T) { func TestClient_WatchAllocs(t *testing.T) { t.Parallel() - ctestutil.ExecCompatible(t) s1, _ := testServer(t, nil) defer s1.Shutdown() testutil.WaitForLeader(t, s1.RPC) @@ -462,6 +460,11 @@ func TestClient_WatchAllocs(t *testing.T) { // Create mock allocations job := mock.Job() + job.TaskGroups[0].Count = 3 + job.TaskGroups[0].Tasks[0].Driver = "mock_driver" + job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{ + "run_for": "10s", + } alloc1 := mock.Alloc() alloc1.JobID = job.ID alloc1.Job = job From bb81fce18e6eb1e127745119c1d64bf7484280bf Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 20 Nov 2019 20:34:11 -0500 Subject: [PATCH 087/241] tests: don't assume eth0 network is available TestClient_UpdateNodeFromFingerprintKeepsConfig checks a test node network interface, which is hardcoded to `eth0` and is updated asynchronously. This causes flakiness when eth0 isn't available. Here, we hardcode the value to an arbitrary network interface. --- client/client_test.go | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/client/client_test.go b/client/client_test.go index 8899b0fd89c..898ff32f02f 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -3,6 +3,7 @@ package client import ( "fmt" "io/ioutil" + "net" "os" "path/filepath" "runtime" @@ -1171,7 +1172,6 @@ func TestClient_UpdateNodeFromFingerprintKeepsConfig(t *testing.T) { client, cleanup := TestClient(t, nil) defer cleanup() // capture the platform fingerprinted device name for the next test - dev := client.config.Node.NodeResources.Networks[0].Device client.updateNodeFromFingerprint(&fingerprint.FingerprintResponse{ NodeResources: &structs.NodeResources{ Cpu: structs.NodeCpuResources{CpuShares: 123}, @@ -1187,6 +1187,14 @@ func TestClient_UpdateNodeFromFingerprintKeepsConfig(t *testing.T) { assert.Equal(t, 80, client.config.Node.Resources.CPU) assert.Equal(t, "any-interface", client.config.Node.Resources.Networks[0].Device) + // lookup an interface. client.Node starts with a hardcoded value, eth0, + // and is only updated async through fingerprinter. + // Let's just lookup network device; anyone will do for this test + interfaces, err := net.Interfaces() + require.NoError(t, err) + require.NotEmpty(t, interfaces) + dev := interfaces[0].Name + // Client with network interface configured keeps the config // setting on update name := "TestClient_UpdateNodeFromFingerprintKeepsConfig2" From 720b41c47ef26206faa89fa37939270b8b51b733 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 20 Nov 2019 20:39:23 -0500 Subject: [PATCH 088/241] ci: match ci timeout to go test timeout make test-nomad sets 15 minute time out for build. Increase the ci timeout to 20m, so we can get meaningful output and goroutine stack traces rather than have test be simply killed by CircleCI. The extra 5 minutes is a buffer for generating-structs and some unnecessary padding. --- .circleci/config.yml | 9 +++++++++ .circleci/config/commands/run-tests.yml | 1 + 2 files changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 83f5280fc15..d5a887dc95f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,6 +73,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -146,6 +147,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -219,6 +221,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -292,6 +295,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -365,6 +369,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -511,6 +516,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -567,6 +573,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -654,6 +661,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: @@ -783,6 +791,7 @@ jobs: sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad name: Running Nomad Tests + no_output_timeout: 20m - store_test_results: path: /tmp/test-reports - store_artifacts: diff --git a/.circleci/config/commands/run-tests.yml b/.circleci/config/commands/run-tests.yml index f72a1d7a550..9a90841d382 100644 --- a/.circleci/config/commands/run-tests.yml +++ b/.circleci/config/commands/run-tests.yml @@ -1,6 +1,7 @@ steps: - run: name: Running Nomad Tests + no_output_timeout: 20m command: | if [ -z $GOTEST_PKGS_EXCLUDE ]; then From c661d37ca20aa9a9799a04f1b16e89daeb833c1d Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Thu, 21 Nov 2019 08:28:20 -0500 Subject: [PATCH 089/241] fixup! tests: don't assume eth0 network is available --- client/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client_test.go b/client/client_test.go index 898ff32f02f..3b4533b9e3a 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -1171,7 +1171,7 @@ func TestClient_UpdateNodeFromFingerprintKeepsConfig(t *testing.T) { // Client without network configured updates to match fingerprint client, cleanup := TestClient(t, nil) defer cleanup() - // capture the platform fingerprinted device name for the next test + client.updateNodeFromFingerprint(&fingerprint.FingerprintResponse{ NodeResources: &structs.NodeResources{ Cpu: structs.NodeCpuResources{CpuShares: 123}, From 7b16c98a9c9c47bcd90cdfff063eb43199f8d0a5 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Thu, 21 Nov 2019 10:34:05 -0500 Subject: [PATCH 090/241] CHANGELOG quota network --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f86ec1c0a4..37df777f6a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ IMPROVEMENTS: * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)] * client: Add support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)] * command: add -tls-server-name flag [[GH-6370](https://github.com/hashicorp/nomad/issues/6370)] + * quota: Add support for network bandwidth quota limits in Nomad enterprise BUG FIXES: From 1c301bd3680dd1789f7407a597f3178631df09ef Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Thu, 21 Nov 2019 14:51:48 -0500 Subject: [PATCH 091/241] Allows a node uuid prefix to be passed in --- command/agent_monitor.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/command/agent_monitor.go b/command/agent_monitor.go index 4d50faf6a43..4dc466d2a18 100644 --- a/command/agent_monitor.go +++ b/command/agent_monitor.go @@ -89,6 +89,28 @@ func (c *MonitorCommand) Run(args []string) int { return 1 } + // Query the node info and lookup prefix + if len(nodeID) == 1 { + c.Ui.Error(fmt.Sprintf("Node identifier must contain at least two characters.")) + return 1 + } + + if nodeID != "" { + nodeID = sanitizeUUIDPrefix(nodeID) + nodes, _, err := client.Nodes().PrefixList(nodeID) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error querying node: %v", err)) + return 1 + } + + if len(nodes) > 1 { + out := formatNodeStubList(nodes, false) + c.Ui.Output(fmt.Sprintf("Prefix matched multiple nodes\n\n%s", out)) + return 1 + } + nodeID = nodes[0].ID + } + params := map[string]string{ "log_level": logLevel, "node_id": nodeID, From 43cc0b8d0399a7c76f9dce89f6eacc305bcc1f4d Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Thu, 21 Nov 2019 14:51:48 -0500 Subject: [PATCH 092/241] Allows a node uuid prefix to be passed in --- command/agent_monitor.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/command/agent_monitor.go b/command/agent_monitor.go index 4d50faf6a43..4dc466d2a18 100644 --- a/command/agent_monitor.go +++ b/command/agent_monitor.go @@ -89,6 +89,28 @@ func (c *MonitorCommand) Run(args []string) int { return 1 } + // Query the node info and lookup prefix + if len(nodeID) == 1 { + c.Ui.Error(fmt.Sprintf("Node identifier must contain at least two characters.")) + return 1 + } + + if nodeID != "" { + nodeID = sanitizeUUIDPrefix(nodeID) + nodes, _, err := client.Nodes().PrefixList(nodeID) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error querying node: %v", err)) + return 1 + } + + if len(nodes) > 1 { + out := formatNodeStubList(nodes, false) + c.Ui.Output(fmt.Sprintf("Prefix matched multiple nodes\n\n%s", out)) + return 1 + } + nodeID = nodes[0].ID + } + params := map[string]string{ "log_level": logLevel, "node_id": nodeID, From 4f1890b5feabcec4f440f6f035f617941317dac0 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Thu, 21 Nov 2019 14:18:06 -0600 Subject: [PATCH 093/241] docs: vault integration docs should reference new token_period field --- dev/vault/nomad-cluster-role.json | 2 +- website/source/data/vault/nomad-cluster-role.json | 2 +- website/source/docs/vault-integration/index.html.md | 4 ++-- .../guides/integrations/vault-integration/index.html.md | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev/vault/nomad-cluster-role.json b/dev/vault/nomad-cluster-role.json index 37728363f21..3017ae36e63 100644 --- a/dev/vault/nomad-cluster-role.json +++ b/dev/vault/nomad-cluster-role.json @@ -3,6 +3,6 @@ "explicit_max_ttl": 0, "name": "nomad-cluster", "orphan": false, - "period": 259200, + "token_period": 259200, "renewable": true } diff --git a/website/source/data/vault/nomad-cluster-role.json b/website/source/data/vault/nomad-cluster-role.json index dc2621524c4..21909d50c36 100644 --- a/website/source/data/vault/nomad-cluster-role.json +++ b/website/source/data/vault/nomad-cluster-role.json @@ -3,6 +3,6 @@ "explicit_max_ttl": 0, "name": "nomad-cluster", "orphan": true, - "period": 259200, + "token_period": 259200, "renewable": true } diff --git a/website/source/docs/vault-integration/index.html.md b/website/source/docs/vault-integration/index.html.md index fff3434f15e..0871043db99 100644 --- a/website/source/docs/vault-integration/index.html.md +++ b/website/source/docs/vault-integration/index.html.md @@ -141,7 +141,7 @@ An example token role definition is given below: "explicit_max_ttl": 0, "name": "nomad-cluster", "orphan": true, - "period": 259200, + "token_period": 259200, "renewable": true } ``` @@ -196,7 +196,7 @@ documentation for all possible fields and more complete documentation. making bootstrapping and upgrading simpler. As such, **setting `orphan = true` is the recommended setting**. -* `period` - Specifies the length the TTL is extended by each renewal in +* `token_period` - Specifies the length the TTL is extended by each renewal in seconds. It is suggested to set this value on the order of magnitude of 3 days (259200 seconds) to avoid a large renewal request rate to Vault. **Must be set to a positive value**. diff --git a/website/source/guides/integrations/vault-integration/index.html.md b/website/source/guides/integrations/vault-integration/index.html.md index 07b5c1c8fb4..3803efcf951 100644 --- a/website/source/guides/integrations/vault-integration/index.html.md +++ b/website/source/guides/integrations/vault-integration/index.html.md @@ -192,7 +192,7 @@ submitted to Nomad. We will use the following token role: "explicit_max_ttl": 0, "name": "nomad-cluster", "orphan": true, - "period": 259200, + "token_period": 259200, "renewable": true } ``` @@ -213,7 +213,7 @@ disallowed policies group. An example of this is shown below: "explicit_max_ttl": 0, "name": "nomad-cluster", "orphan": true, - "period": 259200, + "token_period": 259200, "renewable": true } ``` From 022afcb6023ea39f65262ed948ae53661a25b924 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Thu, 21 Nov 2019 15:49:49 -0500 Subject: [PATCH 094/241] changelog GH-6580 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37df777f6a9..08d510805a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,7 @@ BUG FIXES: register [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] * scheduler: Changes to devices in resource stanza should cause rescheduling [[GH-6644](https://github.com/hashicorp/nomad/issues/6644)] * vault: Allow overriding implicit Vault version constraint [[GH-6687](https://github.com/hashicorp/nomad/issues/6687)] - * vault: Supported Vault auth role's new field, `token_period` [[GH-6574](https://github.com/hashicorp/nomad/issues/6574)] + * vault: Supported Vault auth role's new fields, `token_period` and `token_explicit_max_ttl` [[GH-6574](https://github.com/hashicorp/nomad/issues/6574)], [[GH-6580](https://github.com/hashicorp/nomad/issues/6580)] * scheduler: Fixed a bug that allowed inplace updates after a constraint, affinity, or spread was changed [[GH-6703](https://github.com/hashicorp/nomad/issues/6703)] ## 0.10.1 (November 4, 2019) From f2e2efac3843ed4a39adbf6d0a701ec05ed8b072 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Thu, 21 Nov 2019 16:01:09 -0500 Subject: [PATCH 095/241] add server-id to -h output --- command/agent_monitor.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/command/agent_monitor.go b/command/agent_monitor.go index 4dc466d2a18..8fd2fdf19eb 100644 --- a/command/agent_monitor.go +++ b/command/agent_monitor.go @@ -30,7 +30,7 @@ Usage: nomad monitor [options] General Options: ` + generalOptionsUsage() + ` - + Monitor Specific Options: -log-level @@ -39,6 +39,9 @@ Monitor Specific Options: -node-id Sets the specific node to monitor + -server-id + Sets the specific server to monitor + -json Sets log output to JSON format ` From 445480240db96b9da3dc88e10746177fb8ecf268 Mon Sep 17 00:00:00 2001 From: Drew Bailey <2614075+drewbailey@users.noreply.github.com> Date: Thu, 21 Nov 2019 16:01:09 -0500 Subject: [PATCH 096/241] add server-id to -h output --- command/agent_monitor.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/command/agent_monitor.go b/command/agent_monitor.go index 4dc466d2a18..8fd2fdf19eb 100644 --- a/command/agent_monitor.go +++ b/command/agent_monitor.go @@ -30,7 +30,7 @@ Usage: nomad monitor [options] General Options: ` + generalOptionsUsage() + ` - + Monitor Specific Options: -log-level @@ -39,6 +39,9 @@ Monitor Specific Options: -node-id Sets the specific node to monitor + -server-id + Sets the specific server to monitor + -json Sets log output to JSON format ` From e23db928ec6879f0afd5e10c347d1e1104094978 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 21 Nov 2019 14:36:56 -0800 Subject: [PATCH 097/241] docs: reformat changelog for 0.10.2-rc1 --- CHANGELOG.md | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08d510805a9..425cfb9cc02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,26 @@ ## 0.10.2 (Unreleased) FEATURES: - * core: Add `nomad monitor` command to stream logs at a specified level for debugging [[GH-6499](https://github.com/hashicorp/nomad/issues/6499)] + + * **Nomad Monitor**: New `nomad monitor` command allows remotely following + the logs of any Nomad Agent (clients or servers). See + https://nomadproject.io/docs/commands/monitor.html + * **Docker Container Cleanup**: Nomad will now automatically remove Docker + containers for tasks leaked due to Nomad or Docker crashes or bugs. IMPROVEMENTS: - * api: Add `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)] + + * agent: Added support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] + * api: Added `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)] * api: Added JSON representation of rules to policy endpoint response [[GH-6017](https://github.com/hashicorp/nomad/pull/6017)] * api: Update policy endpoint to permit anonymous access [[GH-6021](https://github.com/hashicorp/nomad/issues/6021)] * build: Updated to Go 1.12.13 [[GH-6606](https://github.com/hashicorp/nomad/issues/6606)] - * core: Add support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)] * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)] - * client: Add support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)] - * command: add -tls-server-name flag [[GH-6370](https://github.com/hashicorp/nomad/issues/6370)] - * quota: Add support for network bandwidth quota limits in Nomad enterprise + * client: Added support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)] + * command: Added -tls-server-name flag [[GH-6370](https://github.com/hashicorp/nomad/issues/6370)] + * command: Added `nomad monitor` command to stream logs at a specified level for debugging [[GH-6499](https://github.com/hashicorp/nomad/issues/6499)] + * quota: Added support for network bandwidth quota limits in Nomad enterprise BUG FIXES: @@ -23,19 +30,18 @@ BUG FIXES: * api: Decompress web socket response body if gzipped on error responses [[GH-6650](https://github.com/hashicorp/nomad/issues/6650)] * api: Fixed a bug where some FS/Allocation API endpoints didn't return error messages [[GH-6427](https://github.com/hashicorp/nomad/issues/6427)] * api: Return 40X status code for failing ACL requests, rather than 500 [[GH-6421](https://github.com/hashicorp/nomad/issues/6421)] - * cli: Make scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] + * cli: Made scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] * cli: Fixed a bug where `nomad alloc exec` fails if stdout is being redirected and not a TTY [[GH-6684](https://github.com/hashicorp/nomad/issues/6684)] * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] - * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] * client: client: Return empty values when host stats fail [[GH-6349](https://github.com/hashicorp/nomad/issues/6349)] + * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)] * driver/docker: Added mechanism for detecting running unexpectedly running docker containers [[GH-6325](https://github.com/hashicorp/nomad/issues/6325)] - * nomad: Multiple connect enabled services in the same taskgroup failed to - register [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] + * nomad: Fixed registering multiple connect enabled services in the same task group [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] * scheduler: Changes to devices in resource stanza should cause rescheduling [[GH-6644](https://github.com/hashicorp/nomad/issues/6644)] + * scheduler: Fixed a bug that allowed inplace updates after affinity or spread were changed [[GH-6703](https://github.com/hashicorp/nomad/issues/6703)] * vault: Allow overriding implicit Vault version constraint [[GH-6687](https://github.com/hashicorp/nomad/issues/6687)] * vault: Supported Vault auth role's new fields, `token_period` and `token_explicit_max_ttl` [[GH-6574](https://github.com/hashicorp/nomad/issues/6574)], [[GH-6580](https://github.com/hashicorp/nomad/issues/6580)] - * scheduler: Fixed a bug that allowed inplace updates after a constraint, affinity, or spread was changed [[GH-6703](https://github.com/hashicorp/nomad/issues/6703)] ## 0.10.1 (November 4, 2019) From bb2a482ddde6058652e3f10fd9df112526d29105 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 21 Nov 2019 14:37:09 -0800 Subject: [PATCH 098/241] docs: add Nomad v0.10.2-rc1 download link --- website/source/downloads.html.erb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/source/downloads.html.erb b/website/source/downloads.html.erb index 391440f054f..fb58aa0c512 100644 --- a/website/source/downloads.html.erb +++ b/website/source/downloads.html.erb @@ -36,6 +36,11 @@ description: |-

Check out the v<%= latest_version %> CHANGELOG for information on the latest release.

+ +

Nomad 0.10.2 Release Candidate

+

+ A release candidate for Nomad 0.10.2 is also available! The release candidate can be downloaded on the Nomad releases page. +

From 39f485ca882bfa36419d736db6c928fbb11c0687 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 21 Nov 2019 15:19:32 -0800 Subject: [PATCH 099/241] Merge pull request #6754 from hashicorp/docs-0.10.2 Changelog updates and download link for 0.10.2-rc1 --- CHANGELOG.md | 29 ++++++++++++++++++----------- website/source/downloads.html.erb | 5 +++++ 2 files changed, 23 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f86ec1c0a4..425cfb9cc02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,26 @@ ## 0.10.2 (Unreleased) FEATURES: - * core: Add `nomad monitor` command to stream logs at a specified level for debugging [[GH-6499](https://github.com/hashicorp/nomad/issues/6499)] + + * **Nomad Monitor**: New `nomad monitor` command allows remotely following + the logs of any Nomad Agent (clients or servers). See + https://nomadproject.io/docs/commands/monitor.html + * **Docker Container Cleanup**: Nomad will now automatically remove Docker + containers for tasks leaked due to Nomad or Docker crashes or bugs. IMPROVEMENTS: - * api: Add `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)] + + * agent: Added support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] + * api: Added `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)] * api: Added JSON representation of rules to policy endpoint response [[GH-6017](https://github.com/hashicorp/nomad/pull/6017)] * api: Update policy endpoint to permit anonymous access [[GH-6021](https://github.com/hashicorp/nomad/issues/6021)] * build: Updated to Go 1.12.13 [[GH-6606](https://github.com/hashicorp/nomad/issues/6606)] - * core: Add support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)] * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)] * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)] - * client: Add support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)] - * command: add -tls-server-name flag [[GH-6370](https://github.com/hashicorp/nomad/issues/6370)] + * client: Added support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)] + * command: Added -tls-server-name flag [[GH-6370](https://github.com/hashicorp/nomad/issues/6370)] + * command: Added `nomad monitor` command to stream logs at a specified level for debugging [[GH-6499](https://github.com/hashicorp/nomad/issues/6499)] + * quota: Added support for network bandwidth quota limits in Nomad enterprise BUG FIXES: @@ -22,19 +30,18 @@ BUG FIXES: * api: Decompress web socket response body if gzipped on error responses [[GH-6650](https://github.com/hashicorp/nomad/issues/6650)] * api: Fixed a bug where some FS/Allocation API endpoints didn't return error messages [[GH-6427](https://github.com/hashicorp/nomad/issues/6427)] * api: Return 40X status code for failing ACL requests, rather than 500 [[GH-6421](https://github.com/hashicorp/nomad/issues/6421)] - * cli: Make scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] + * cli: Made scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] * cli: Fixed a bug where `nomad alloc exec` fails if stdout is being redirected and not a TTY [[GH-6684](https://github.com/hashicorp/nomad/issues/6684)] * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] - * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] * client: client: Return empty values when host stats fail [[GH-6349](https://github.com/hashicorp/nomad/issues/6349)] + * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)] * driver/docker: Added mechanism for detecting running unexpectedly running docker containers [[GH-6325](https://github.com/hashicorp/nomad/issues/6325)] - * nomad: Multiple connect enabled services in the same taskgroup failed to - register [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] + * nomad: Fixed registering multiple connect enabled services in the same task group [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] * scheduler: Changes to devices in resource stanza should cause rescheduling [[GH-6644](https://github.com/hashicorp/nomad/issues/6644)] + * scheduler: Fixed a bug that allowed inplace updates after affinity or spread were changed [[GH-6703](https://github.com/hashicorp/nomad/issues/6703)] * vault: Allow overriding implicit Vault version constraint [[GH-6687](https://github.com/hashicorp/nomad/issues/6687)] - * vault: Supported Vault auth role's new field, `token_period` [[GH-6574](https://github.com/hashicorp/nomad/issues/6574)] - * scheduler: Fixed a bug that allowed inplace updates after a constraint, affinity, or spread was changed [[GH-6703](https://github.com/hashicorp/nomad/issues/6703)] + * vault: Supported Vault auth role's new fields, `token_period` and `token_explicit_max_ttl` [[GH-6574](https://github.com/hashicorp/nomad/issues/6574)], [[GH-6580](https://github.com/hashicorp/nomad/issues/6580)] ## 0.10.1 (November 4, 2019) diff --git a/website/source/downloads.html.erb b/website/source/downloads.html.erb index 391440f054f..fb58aa0c512 100644 --- a/website/source/downloads.html.erb +++ b/website/source/downloads.html.erb @@ -36,6 +36,11 @@ description: |-

Check out the v<%= latest_version %> CHANGELOG for information on the latest release.

+ +

Nomad 0.10.2 Release Candidate

+

+ A release candidate for Nomad 0.10.2 is also available! The release candidate can be downloaded on the Nomad releases page. +

From 9062380c1144b16920d6e35a98b6d44ca47dc1ce Mon Sep 17 00:00:00 2001 From: Chris Baker <1675087+cgbaker@users.noreply.github.com> Date: Thu, 21 Nov 2019 19:50:50 +0000 Subject: [PATCH 100/241] added the device plugin authoring guide, made minor formatting changes to task driver plugin authoring guide. --- .../docs/internals/plugins/devices.html.md | 77 ++++++++++++++++++- .../internals/plugins/task-drivers.html.md | 16 ++-- 2 files changed, 82 insertions(+), 11 deletions(-) diff --git a/website/source/docs/internals/plugins/devices.html.md b/website/source/docs/internals/plugins/devices.html.md index a7a7e205f7f..6b137aa1059 100644 --- a/website/source/docs/internals/plugins/devices.html.md +++ b/website/source/docs/internals/plugins/devices.html.md @@ -3,10 +3,81 @@ layout: "docs" page_title: "Device Plugins" sidebar_current: "docs-internals-plugins-devices" description: |- - Learn about how to author a Nomad device plugin. + Learn how to author a Nomad device plugin. --- # Devices -Device plugin documentation is currently a work in progress. Until there is -documentation, the [Nvidia GPU plugin](https://github.com/hashicorp/nomad/tree/master/devices/gpu/nvidia) is a useful example. +Nomad has built-in support for scheduling compute resources such as CPU, memory, +and networking. Nomad device plugins are used to support scheduling tasks with +other devices, such as GPUs. They are responsible for fingerprinting these +devices and working with the Nomad client to make them available to assigned +tasks. + +For a real world example of a Nomad device plugin implementation, see the [Nvidia +GPU plugin](https://github.com/hashicorp/nomad/tree/master/devices/gpu/nvidia). + +## Authoring Device Plugins + +Authoring a device plugin in Nomad consists of implementing the +[DevicePlugin][devicePlugin] interface alongside +a main package to launch the plugin. + +The [device plugin skeleton project][skeletonProject] exists to help bootstrap +the development of new device plugins. It provides most of the boilerplate +necessary for a device plugin, along with detailed comments. + +### Lifecycle and State + +A device plugin is long-lived. Nomad will ensure that one instance of the plugin is +running. If the plugin crashes or otherwise terminates, Nomad will launch another +instance of it. + +However, unlike [task drivers](task-drivers.html), device plugins do not currently +have an interface for persisting state to the Nomad client. Instead, the device +plugin API emphasizes fingerprinting devices and reporting their status. After +helping to provision a task with a scheduled device, a device plugin does not +have any responsibility (or ability) to monitor the task. + +## Device Plugin API + +The [base plugin][baseplugin] must be implemented in addition to the following +functions. + +### `Fingerprint(context.Context) (<-chan *FingerprintResponse, error)` + +The `Fingerprint` [function][fingerprintFn] is called by the client when the plugin is started. +It allows the plugin to provide Nomad with a list of discovered devices, along with their +attributes, for the purpose of scheduling workloads using devices. +The channel returned should immediately send an initial +[`FingerprintResponse`][fingerprintResponse], then send periodic updates at +an appropriate interval until the context is canceled. + +Each fingerprint response consists of either an error or a list of device groups. +A device group is a list of detected devices that are identical for the purpose of +scheduling; that is, they will have identical attributes. + +### `Stats(context.Context, time.Duration) (<-chan *StatsResponse, error)` + +The `Stats` [function][statsFn] returns a channel on which the plugin should +emit device statistics, at the specified interval, until either an error is +encountered or the specified context is cancelled. The `StatsReponse` object +allows [dimensioned][dimensioned] statistics to be returned for each device in a device group. + +### `Reserve(deviceIDs []string) (*ContainerReservation, error)` + +The `Reserve` [function][reserveFn] accepts a list of device IDs and returns the information +necessary for the client to make those devices available to a task. Currently, +the `ContainerReservation` object allows the plugin to specify environment +variables for the task, as well as a list of host devices and files to be mounted +into the task's filesystem. Any orchestration required to prepare the device for +use should also be performed in this function. + +[DevicePlugin]: https://github.com/hashicorp/nomad/blob/v0.9.0/plugins/device/device.go#L20-L33 +[baseplugin]: /docs/internals/plugins/base.html +[skeletonProject]: https://github.com/hashicorp/nomad-skeleton-device-plugin +[fingerprintResponse]: https://github.com/hashicorp/nomad/blob/v0.9.0/plugins/device/device.go#L37-L43 +[fingerprintFn]: https://github.com/hashicorp/nomad-skeleton-device-plugin/blob/v0.1.0/device/device.go#L159-L165 +[statsFn]: https://github.com/hashicorp/nomad-skeleton-device-plugin/blob/v0.1.0/device/device.go#L169-L176 +[reserveFn]: https://github.com/hashicorp/nomad-skeleton-device-plugin/blob/v0.1.0/device/device.go#L189-L245 +[dimensioned]: https://github.com/hashicorp/nomad/blob/v0.9.0/plugins/shared/structs/stats.go#L33-L34 diff --git a/website/source/docs/internals/plugins/task-drivers.html.md b/website/source/docs/internals/plugins/task-drivers.html.md index a6dd06bce2a..8b0d7272408 100644 --- a/website/source/docs/internals/plugins/task-drivers.html.md +++ b/website/source/docs/internals/plugins/task-drivers.html.md @@ -3,22 +3,22 @@ layout: "docs" page_title: "Task Driver Plugins" sidebar_current: "docs-internals-plugins-task-drivers" description: |- - Learn about how to author a Nomad plugin. + Learn how to author a Nomad task driver plugin. --- # Task Drivers Task drivers in Nomad are the runtime components that execute workloads. For -a real world example of a Nomad task driver plugin implementation see the [LXC +a real world example of a Nomad task driver plugin implementation, see the [LXC driver source][lxcdriver]. ## Authoring Task Driver Plugins Authoring a task driver (shortened to driver in this documentation) in Nomad consists of implementing the [DriverPlugin][driverplugin] interface and adding -a main package to launch the plugin. A driver plugin is long lived and its +a main package to launch the plugin. A driver plugin is long-lived and its lifetime is not bound to the Nomad client. This means that the Nomad client can -be restarted without the restarting the driver. Nomad will ensure that one +be restarted without restarting the driver. Nomad will ensure that one instance of the driver is running, meaning if the driver crashes or otherwise terminates, Nomad will launch another instance of it. @@ -29,7 +29,7 @@ Nomad client can recover tasks into the driver state. ## Task Driver Plugin API -The [base plugin][baseplugin] must be implement in addition to the following +The [base plugin][baseplugin] must be implemented in addition to the following functions. ### `TaskConfigSchema() (*hclspec.Spec, error)` @@ -123,7 +123,7 @@ returned by the `StartTask` function. If no error was returned, it is expected that the driver can now operate on the task by referencing the task ID. If an error occurs, the Nomad client will mark the task as `lost`. -### `WaitTask(ctx context.Context, id string) (<-chan *ExitResult, error)` +### `WaitTask(context.Context, id string) (<-chan *ExitResult, error)` The `WaitTask` function is expected to return a channel that will send an `*ExitResult` when the task exits or close the channel when the context is @@ -153,7 +153,7 @@ called. The `InspectTask` function returns detailed status information for the referenced `taskID`. -### `TaskStats(ctx context.Context, id string, i time.Duration) (<-chan *cstructs.TaskResourceUsage, error)` +### `TaskStats(context.Context, id string, time.Duration) (<-chan *cstructs.TaskResourceUsage, error)` The `TaskStats` function returns a channel which the driver should send stats to at the given interval. The driver must send stats at the given interval @@ -188,7 +188,7 @@ inside the running container. `ExecTask` is called for Consul script checks. [lxcdriver]: https://github.com/hashicorp/nomad-driver-lxc -[DriverPlugin]: https://github.com/hashicorp/nomad/blob/v0.9.0-beta2/plugins/drivers/driver.go#L39-L57 +[DriverPlugin]: https://github.com/hashicorp/nomad/blob/v0.9.0/plugins/drivers/driver.go#L39-L57 [baseplugin]: /docs/internals/plugins/base.html [taskconfig]: https://godoc.org/github.com/hashicorp/nomad/plugins/drivers#TaskConfig [taskhandle]: https://godoc.org/github.com/hashicorp/nomad/plugins/drivers#TaskHandle From 538695d1c1f4d16ac2db83d86a9167e1c7ddff33 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 08:43:09 -0500 Subject: [PATCH 101/241] acl_endpoint: permission denied for unauthenticated requests If ACL Request is unauthenticated, we should honor the anonymous token. This PR makes few changes: * `GetPolicy` endpoints may return policy if anonymous policy allows it, or return permission denied otherwise. * `ListPolicies` returns an empty policy list, or one with anonymous policy if one exists. Without this PR, the we return an incomprehensible error. Before: ``` $ curl http://localhost:4646/v1/acl/policy/doesntexist; echo acl token lookup failed: index error: UUID must be 36 characters $ curl http://localhost:4646/v1/acl/policies; echo acl token lookup failed: index error: UUID must be 36 characters ``` After: ``` $ curl http://localhost:4646/v1/acl/policy/doesntexist; echo Permission denied $ curl http://localhost:4646/v1/acl/policies; echo [] ``` --- nomad/acl_endpoint.go | 48 ++++++++++++++--------------- nomad/acl_endpoint_test.go | 63 ++++++++++++++++++++++++++++++++++++++ nomad/state/state_store.go | 8 +++++ 3 files changed, 94 insertions(+), 25 deletions(-) diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go index cfcc0c3c7e9..f28a45c6a6e 100644 --- a/nomad/acl_endpoint.go +++ b/nomad/acl_endpoint.go @@ -119,6 +119,7 @@ func (a *ACL) ListPolicies(args *structs.ACLPolicyListRequest, reply *structs.AC if !a.srv.config.ACLEnabled { return aclDisabled } + if done, err := a.srv.forward("ACL.ListPolicies", args, args, reply); done { return err } @@ -136,12 +137,7 @@ func (a *ACL) ListPolicies(args *structs.ACLPolicyListRequest, reply *structs.AC mgt := acl.IsManagement() var policies map[string]struct{} if !mgt { - snap, err := a.srv.fsm.State().Snapshot() - if err != nil { - return err - } - - token, err := snap.ACLTokenBySecretID(nil, args.AuthToken) + token, err := a.requestAuthToken(args.AuthToken) if err != nil { return err } @@ -207,6 +203,7 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S if !a.srv.config.ACLEnabled { return aclDisabled } + if done, err := a.srv.forward("ACL.GetPolicy", args, args, reply); done { return err } @@ -224,12 +221,7 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S // If it is not a management token determine if it can get this policy mgt := acl.IsManagement() if !mgt && args.Name != "anonymous" { - snap, err := a.srv.fsm.State().Snapshot() - if err != nil { - return err - } - - token, err := snap.ACLTokenBySecretID(nil, args.AuthToken) + token, err := a.requestAuthToken(args.AuthToken) if err != nil { return err } @@ -284,6 +276,19 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicySpecificRequest, reply *structs.S return a.srv.blockingRPC(&opts) } +func (a *ACL) requestAuthToken(secretID string) (*structs.ACLToken, error) { + if secretID == "" { + return structs.AnonymousACLToken, nil + } + + snap, err := a.srv.fsm.State().Snapshot() + if err != nil { + return nil, err + } + + return snap.ACLTokenBySecretID(nil, secretID) +} + // GetPolicies is used to get a set of policies func (a *ACL) GetPolicies(args *structs.ACLPolicySetRequest, reply *structs.ACLPolicySetResponse) error { if !a.srv.config.ACLEnabled { @@ -294,19 +299,12 @@ func (a *ACL) GetPolicies(args *structs.ACLPolicySetRequest, reply *structs.ACLP } defer metrics.MeasureSince([]string{"nomad", "acl", "get_policies"}, time.Now()) - var token *structs.ACLToken - var err error - if args.AuthToken == "" { - // No need to look up the anonymous token - token = structs.AnonymousACLToken - } else { - // For client typed tokens, allow them to query any policies associated with that token. - // This is used by clients which are resolving the policies to enforce. Any associated - // policies need to be fetched so that the client can determine what to allow. - token, err = a.srv.State().ACLTokenBySecretID(nil, args.AuthToken) - if err != nil { - return err - } + // For client typed tokens, allow them to query any policies associated with that token. + // This is used by clients which are resolving the policies to enforce. Any associated + // policies need to be fetched so that the client can determine what to allow. + token, err := a.requestAuthToken(args.AuthToken) + if err != nil { + return err } if token == nil { diff --git a/nomad/acl_endpoint_test.go b/nomad/acl_endpoint_test.go index 6357d5bccca..eb388087b7a 100644 --- a/nomad/acl_endpoint_test.go +++ b/nomad/acl_endpoint_test.go @@ -89,6 +89,18 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { } assert.EqualValues(t, 1001, resp3.Index) assert.Equal(t, anonymousPolicy, resp3.Policy) + + // Lookup non-anonoymous policy with no token + get = &structs.ACLPolicySpecificRequest{ + Name: policy.Name, + QueryOptions: structs.QueryOptions{ + Region: "global", + }, + } + var resp4 structs.SingleACLPolicyResponse + err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", get, &resp4) + require.Error(t, err) + require.Contains(t, err.Error(), structs.ErrPermissionDenied.Error()) } func TestACLEndpoint_GetPolicy_Blocking(t *testing.T) { @@ -395,6 +407,57 @@ func TestACLEndpoint_ListPolicies(t *testing.T) { } } +// TestACLEndpoint_ListPolicies_Unauthenticated asserts that +// unauthenticated ListPolicies returns anonymous policy if one +// exists, otherwise, empty +func TestACLEndpoint_ListPolicies_Unauthenticated(t *testing.T) { + t.Parallel() + s1, _ := TestACLServer(t, nil) + defer s1.Shutdown() + codec := rpcClient(t, s1) + testutil.WaitForLeader(t, s1.RPC) + + listPolicies := func() (*structs.ACLPolicyListResponse, error) { + // Lookup the policies + get := &structs.ACLPolicyListRequest{ + QueryOptions: structs.QueryOptions{ + Region: "global", + }, + } + + var resp structs.ACLPolicyListResponse + err := msgpackrpc.CallWithCodec(codec, "ACL.ListPolicies", get, &resp) + if err != nil { + return nil, err + } + return &resp, nil + } + + p1 := mock.ACLPolicy() + p1.Name = "aaaaaaaa-3350-4b4b-d185-0e1992ed43e9" + s1.fsm.State().UpsertACLPolicies(1000, []*structs.ACLPolicy{p1}) + + t.Run("no anonymous policy", func(t *testing.T) { + resp, err := listPolicies() + require.NoError(t, err) + require.Empty(t, resp.Policies) + require.Equal(t, uint64(1000), resp.Index) + }) + + // now try with anonymous policy + p2 := mock.ACLPolicy() + p2.Name = "anonymous" + s1.fsm.State().UpsertACLPolicies(1001, []*structs.ACLPolicy{p2}) + + t.Run("with anonymous policy", func(t *testing.T) { + resp, err := listPolicies() + require.NoError(t, err) + require.Len(t, resp.Policies, 1) + require.Equal(t, "anonymous", resp.Policies[0].Name) + require.Equal(t, uint64(1001), resp.Index) + }) +} + func TestACLEndpoint_ListPolicies_Blocking(t *testing.T) { t.Parallel() s1, root := TestACLServer(t, nil) diff --git a/nomad/state/state_store.go b/nomad/state/state_store.go index ab61390b5c3..a04e824a065 100644 --- a/nomad/state/state_store.go +++ b/nomad/state/state_store.go @@ -3769,6 +3769,10 @@ func (s *StateStore) DeleteACLTokens(index uint64, ids []string) error { // ACLTokenByAccessorID is used to lookup a token by accessor ID func (s *StateStore) ACLTokenByAccessorID(ws memdb.WatchSet, id string) (*structs.ACLToken, error) { + if id == "" { + return nil, fmt.Errorf("acl token lookup failed: missing accessor id") + } + txn := s.db.Txn(false) watchCh, existing, err := txn.FirstWatch("acl_token", "id", id) @@ -3785,6 +3789,10 @@ func (s *StateStore) ACLTokenByAccessorID(ws memdb.WatchSet, id string) (*struct // ACLTokenBySecretID is used to lookup a token by secret ID func (s *StateStore) ACLTokenBySecretID(ws memdb.WatchSet, secretID string) (*structs.ACLToken, error) { + if secretID == "" { + return nil, fmt.Errorf("acl token lookup failed: missing secret id") + } + txn := s.db.Txn(false) watchCh, existing, err := txn.FirstWatch("acl_token", "secret", secretID) From bfe08cf8872ba9d2ba4953efe0bf55456fcca371 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 09:58:00 -0500 Subject: [PATCH 102/241] document docker dangling container repeaper --- website/source/docs/drivers/docker.html.md | 48 +++++++++++++++++-- .../guides/upgrade/upgrade-specific.html.md | 11 +++++ 2 files changed, 56 insertions(+), 3 deletions(-) diff --git a/website/source/docs/drivers/docker.html.md b/website/source/docs/drivers/docker.html.md index 62d4943d807..7e280628e40 100644 --- a/website/source/docs/drivers/docker.html.md +++ b/website/source/docs/drivers/docker.html.md @@ -166,7 +166,7 @@ The `docker` driver supports the following configuration in the job spec. Only } ``` -* `logging` - (Optional) A key-value map of Docker logging options. +* `logging` - (Optional) A key-value map of Docker logging options. Defaults to `json-file` with log rotation (`max-file=2` and `max-size=2m`). ```hcl @@ -648,6 +648,13 @@ plugin "docker" { image = true image_delay = "3m" container = true + + dangling_containers { + enabled = true + dry_run = false + period = "5m" + creation_grace = "5m" + } } volumes { @@ -690,7 +697,7 @@ plugin "docker" { * `config` - Allows an operator to specify a JSON file which is in the dockercfg format containing authentication information for a private registry, from either (in order) `auths`, - `credHelpers` or `credsStore`. + `credHelpers` or `credsStore`. * `helper` - Allows an operator to specify a [credsStore](https://docs.docker.com/engine/reference/commandline/login/#credential-helper-protocol) -like script on $PATH to lookup authentication information from external @@ -719,6 +726,16 @@ plugin "docker" { * `container` - Defaults to `true`. This option can be used to disable Nomad from removing a container when the task exits. Under a name conflict, Nomad may still remove the dead container. + * `dangling_containers` stanza for controlling dangling container detection + and cleanup: + * `enabled` - Defaults to `true`). Enables dangling container handling + * `dry_run` - Defaults to `false`. Enables a mode where nomad logs + potential dangling containers without killing them. + * `period` - Defaults to `"5m"`. A time duration that controls interval + between Nomad scans for dangling containers. + * `creation_grace` - Defaults to `"5m"`. A time duration that controls + how long a container can run before it is tracked by Nomad or gets + marked (and killed) as a dangling container * `volumes` stanza: * `enabled` - Defaults to `true`. Allows tasks to bind host paths @@ -894,7 +911,32 @@ need a higher degree of isolation between processes for security or other reasons, it is recommended to use full virtualization like [QEMU](/docs/drivers/qemu.html). -## Docker for Windows Caveats +## Caveats + +### Dangling Containers + +Nomad 0.10.2 introduces a detector and a reaper for docker dangling containers, +containers that Nomad starts yet does not manage or track. Though rare, they +sometimes in very loaded clusters and lead to unexpectedly running services, +potentially with stale versions. + +When docker daemon becomes unavailable as Nomad starts a task, it is possible +for Docker to successfully start the container and fails the API call with 500 +error code. In such cases, Nomad retries and eventually aims to kill such +containers. However, if the Docker Engine remains unhealthy, subsequent retries +and stop attempts may still fail, and the started container becomes a dangling +container that Nomad no longer manges. + +The newly added reaper periodically scans for such containers. It only targets +containers with a `com.hashicorp.nomad.allocation_id` label, or match Nomad's +conventions for naming and bind-mounts (i.e. `/alloc`, `/secrets`, `local`). +Containers that don't match Nomad container patterns are left untouched. + +Operators can run the reaper in a dry mode, where it only logs dangling +container ids without killing them, or simply disable it through +the `gc.dangling_containers` config stanza. + +### Docker for Windows Docker for Windows only supports running Windows containers. Because Docker for Windows is relatively new and rapidly evolving you may want to consult the diff --git a/website/source/guides/upgrade/upgrade-specific.html.md b/website/source/guides/upgrade/upgrade-specific.html.md index 3b93d8649f0..9afb6d29163 100644 --- a/website/source/guides/upgrade/upgrade-specific.html.md +++ b/website/source/guides/upgrade/upgrade-specific.html.md @@ -15,6 +15,16 @@ details provided for their upgrades as a result of new features or changed behavior. This page is used to document those details separately from the standard upgrade flow. +## Nomad 0.10.2 + +Nomad 0.10.2 addresses an issue occurring in heavily loaded clients, where +containers are started without being properly managed by Nomad. Nomad 0.10.2 +introduced a reaper that detects and kills such containers. + +Operators may opt to run reaper in a dry mode or disabling it through a client config. + +For more information, see [Docker Dangling containers][dangling-containers]. + ## Nomad 0.10.0 ### Deployments @@ -364,6 +374,7 @@ deleted and then Nomad 0.3.0 can be launched. [drain-api]: /api/nodes.html#drain-node [drain-cli]: /docs/commands/node/drain.html +[dangling-containers]: /docs/drivers/docker.html#dangling-containers [hcl2]: https://github.com/hashicorp/hcl2 [lxc]: /docs/drivers/external/lxc.html [migrate]: /docs/job-specification/migrate.html From ac9547e6b2d47a49f8ad27ad2a3a25b7e04b0f38 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 10:44:59 -0500 Subject: [PATCH 103/241] drivers: always initialize taskHandle.logger Looks like the RecoverTask doesn't set taskHandle.logger field causing a panic when the handle attempts to log (e.g. when Shutdown or Signaling fails). --- drivers/exec/driver.go | 1 + drivers/exec/driver_pre09.go | 1 + drivers/java/driver.go | 1 + drivers/java/driver_pre09.go | 1 + drivers/qemu/driver.go | 1 + drivers/qemu/driver_pre09.go | 1 + drivers/rkt/driver.go | 1 + drivers/rkt/driver_pre09.go | 1 + 8 files changed, 8 insertions(+) diff --git a/drivers/exec/driver.go b/drivers/exec/driver.go index 6611ec472ce..6c0bf7c99e0 100644 --- a/drivers/exec/driver.go +++ b/drivers/exec/driver.go @@ -304,6 +304,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/exec/driver_pre09.go b/drivers/exec/driver_pre09.go index 5b063ea24eb..607142d9e2c 100644 --- a/drivers/exec/driver_pre09.go +++ b/drivers/exec/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) diff --git a/drivers/java/driver.go b/drivers/java/driver.go index ac35aa82d72..02931cdcf4c 100644 --- a/drivers/java/driver.go +++ b/drivers/java/driver.go @@ -290,6 +290,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/java/driver_pre09.go b/drivers/java/driver_pre09.go index 80d1fc5cad1..9f1b3f31f9b 100644 --- a/drivers/java/driver_pre09.go +++ b/drivers/java/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) diff --git a/drivers/qemu/driver.go b/drivers/qemu/driver.go index 156dd1104b7..f24bda73d66 100644 --- a/drivers/qemu/driver.go +++ b/drivers/qemu/driver.go @@ -286,6 +286,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/qemu/driver_pre09.go b/drivers/qemu/driver_pre09.go index 10d810ee049..eeef3d29ffc 100644 --- a/drivers/qemu/driver_pre09.go +++ b/drivers/qemu/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) diff --git a/drivers/rkt/driver.go b/drivers/rkt/driver.go index 238dcfc7739..6de9f4dfe35 100644 --- a/drivers/rkt/driver.go +++ b/drivers/rkt/driver.go @@ -405,6 +405,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/rkt/driver_pre09.go b/drivers/rkt/driver_pre09.go index e974e9c0954..a30c80ad4a5 100644 --- a/drivers/rkt/driver_pre09.go +++ b/drivers/rkt/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) From dd46c985d5db314d41a4d29742c560058893a312 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 11:04:24 -0500 Subject: [PATCH 104/241] changelog [ci skip] --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 425cfb9cc02..4693be800ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ BUG FIXES: * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] * client: client: Return empty values when host stats fail [[GH-6349](https://github.com/hashicorp/nomad/issues/6349)] * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] + * drivers: Fixed a bug where client may panic if a restored task failed to shutdown cleanly [[GH-6763](https://github.com/hashicorp/nomad/issues/6763)] * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)] * driver/docker: Added mechanism for detecting running unexpectedly running docker containers [[GH-6325](https://github.com/hashicorp/nomad/issues/6325)] * nomad: Fixed registering multiple connect enabled services in the same task group [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] From 51b39b42350116190d4b94562dfd4c8424ce4a9c Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 11:04:54 -0500 Subject: [PATCH 105/241] Merge pull request #6763 from hashicorp/b-handle-initialize-logger drivers: always initialize taskHandle.logger --- CHANGELOG.md | 1 + drivers/exec/driver.go | 1 + drivers/exec/driver_pre09.go | 1 + drivers/java/driver.go | 1 + drivers/java/driver_pre09.go | 1 + drivers/qemu/driver.go | 1 + drivers/qemu/driver_pre09.go | 1 + drivers/rkt/driver.go | 1 + drivers/rkt/driver_pre09.go | 1 + 9 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 425cfb9cc02..4693be800ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ BUG FIXES: * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)] * client: client: Return empty values when host stats fail [[GH-6349](https://github.com/hashicorp/nomad/issues/6349)] * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)] + * drivers: Fixed a bug where client may panic if a restored task failed to shutdown cleanly [[GH-6763](https://github.com/hashicorp/nomad/issues/6763)] * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)] * driver/docker: Added mechanism for detecting running unexpectedly running docker containers [[GH-6325](https://github.com/hashicorp/nomad/issues/6325)] * nomad: Fixed registering multiple connect enabled services in the same task group [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)] diff --git a/drivers/exec/driver.go b/drivers/exec/driver.go index 6611ec472ce..6c0bf7c99e0 100644 --- a/drivers/exec/driver.go +++ b/drivers/exec/driver.go @@ -304,6 +304,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/exec/driver_pre09.go b/drivers/exec/driver_pre09.go index 5b063ea24eb..607142d9e2c 100644 --- a/drivers/exec/driver_pre09.go +++ b/drivers/exec/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) diff --git a/drivers/java/driver.go b/drivers/java/driver.go index ac35aa82d72..02931cdcf4c 100644 --- a/drivers/java/driver.go +++ b/drivers/java/driver.go @@ -290,6 +290,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/java/driver_pre09.go b/drivers/java/driver_pre09.go index 80d1fc5cad1..9f1b3f31f9b 100644 --- a/drivers/java/driver_pre09.go +++ b/drivers/java/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) diff --git a/drivers/qemu/driver.go b/drivers/qemu/driver.go index 156dd1104b7..f24bda73d66 100644 --- a/drivers/qemu/driver.go +++ b/drivers/qemu/driver.go @@ -286,6 +286,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/qemu/driver_pre09.go b/drivers/qemu/driver_pre09.go index 10d810ee049..eeef3d29ffc 100644 --- a/drivers/qemu/driver_pre09.go +++ b/drivers/qemu/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) diff --git a/drivers/rkt/driver.go b/drivers/rkt/driver.go index 238dcfc7739..6de9f4dfe35 100644 --- a/drivers/rkt/driver.go +++ b/drivers/rkt/driver.go @@ -405,6 +405,7 @@ func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: taskState.StartedAt, exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(taskState.TaskConfig.ID, h) diff --git a/drivers/rkt/driver_pre09.go b/drivers/rkt/driver_pre09.go index e974e9c0954..a30c80ad4a5 100644 --- a/drivers/rkt/driver_pre09.go +++ b/drivers/rkt/driver_pre09.go @@ -36,6 +36,7 @@ func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error { procState: drivers.TaskStateRunning, startedAt: time.Now(), exitResult: &drivers.ExitResult{}, + logger: d.logger, } d.tasks.Set(h.Config.ID, th) From 275c94b86c3c73933d4a60fb1468f496d2e80641 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 11:24:13 -0500 Subject: [PATCH 106/241] git: only .circleci/config.yml is a generated one --- .circleci/.gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/.gitattributes b/.circleci/.gitattributes index 2dd06ee5f7c..f7c6b31eb8a 100644 --- a/.circleci/.gitattributes +++ b/.circleci/.gitattributes @@ -1 +1 @@ -config.yml linguist-generated +/config.yml linguist-generated From ff096037f43c436951ee7ea7aeb3c14aa7ce8305 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 11:29:06 -0500 Subject: [PATCH 107/241] ci: ignore docs only changes Skip running backend and UI changes for docs/website updates, as indicated by branch name. --- .circleci/config.yml | 13 +++++++++++++ .circleci/config/workflows/build-test.yml | 2 ++ 2 files changed, 15 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d5a887dc95f..973d2e825eb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -805,77 +805,90 @@ workflows: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-client: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-nomad: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-api: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-devices: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-other: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-docker: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-exec: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-shared-exec: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-32bit: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-e2e: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-ui: filters: branches: ignore: - stable-website + - /^docs-.*/ - test-website: filters: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website website: jobs: diff --git a/.circleci/config/workflows/build-test.yml b/.circleci/config/workflows/build-test.yml index 136fd408740..3cbc270d728 100644 --- a/.circleci/config/workflows/build-test.yml +++ b/.circleci/config/workflows/build-test.yml @@ -5,6 +5,7 @@ jobs: branches: ignore: - /^.-ui\b.*/ + - /^docs-.*/ - stable-website - test-machine: name: "test-client" @@ -58,5 +59,6 @@ jobs: branches: ignore: - stable-website + - /^docs-.*/ - test-website: filters: *backend_branches_filter From 78178cb8923669427b4b9da37adac1a9a6d25725 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 11:51:10 -0500 Subject: [PATCH 108/241] ci: avoid paging --- .circleci/config.yml | 26 ++++++++++++++++++++++++++ .circleci/config/config.yml | 23 ++++++++++++++--------- 2 files changed, 40 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 973d2e825eb..02c78ce4e9e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,11 +9,13 @@ jobs: image: ubuntu-1604:201903-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./nomad/... - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: amd64 @@ -83,11 +85,13 @@ jobs: image: ubuntu-1604:201903-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./api/... - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: amd64 @@ -157,11 +161,13 @@ jobs: image: ubuntu-1604:201903-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./drivers/exec - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: amd64 @@ -231,11 +237,13 @@ jobs: image: ubuntu-1604:201903-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./client/... - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: amd64 @@ -305,11 +313,13 @@ jobs: image: ubuntu-1604:201903-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./drivers/shared/executor - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: amd64 @@ -421,10 +431,12 @@ jobs: - run: command: make checkscripts environment: + - GIT_PAGER: cat - GOMAXPROCS: 1 - GOPATH: /go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat build-website: docker: - image: hashicorp/middleman-hashicorp:0.3.35 @@ -452,11 +464,13 @@ jobs: image: ubuntu-1604:201903-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: '' - GOTEST_PKGS_EXCLUDE: ./api|./client|./drivers/docker|./drivers/exec|./drivers/rkt|./drivers/shared/executor|./nomad|./devices - GOTESTARCH: amd64 @@ -526,10 +540,12 @@ jobs: - image: golang:1.12.13 working_directory: /go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOMAXPROCS: 1 - GOPATH: /go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./devices/... - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: amd64 @@ -587,21 +603,25 @@ jobs: - run: command: make test-website environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat test-docker: machine: image: circleci/classic:201808-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./drivers/docker - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: amd64 @@ -671,10 +691,12 @@ jobs: - image: golang:1.12.13 working_directory: /go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOMAXPROCS: 1 - GOPATH: /go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GO_TAGS: codegen_generated steps: - checkout @@ -718,20 +740,24 @@ jobs: - run: command: sudo -E -H -u circleci PATH=${PATH} make e2e-test environment: + - GIT_PAGER: cat - GOMAXPROCS: 1 - GOPATH: /go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat test-32bit: machine: image: ubuntu-1604:201903-01 working_directory: ~/go/src/github.com/hashicorp/nomad environment: + - GIT_PAGER: cat - GOLANG_VERSION: 1.12.13 - GOMAXPROCS: 1 - GOPATH: /home/circleci/go - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml - NOMAD_SLOW_TEST: 1 + - PAGER: cat - GOTEST_PKGS: ./client/fingerprint - GOTEST_PKGS_EXCLUDE: '' - GOTESTARCH: '386' diff --git a/.circleci/config/config.yml b/.circleci/config/config.yml index 9d3168971f7..c18e455f218 100644 --- a/.circleci/config/config.yml +++ b/.circleci/config/config.yml @@ -7,29 +7,34 @@ references: go-machine-recent-image: &go_machine_recent_image ubuntu-1604:201903-01 + # common references + common_envs: &common_envs + GOMAXPROCS: 1 + NOMAD_SLOW_TEST: 1 + GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + # disable implicit git paging. CircleCI runs commands with in a tty + # making git assume it's an interactive session. + PAGER: cat + GIT_PAGER: cat + executors: go: working_directory: /go/src/github.com/hashicorp/nomad docker: - image: golang:1.12.13 - environment: &common_envs - GOMAXPROCS: 1 - NOMAD_SLOW_TEST: 1 - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + environment: + <<: *common_envs GOPATH: /go - + go-machine: working_directory: ~/go/src/github.com/hashicorp/nomad machine: image: *go_machine_image environment: &machine_env - GOMAXPROCS: 1 - NOMAD_SLOW_TEST: 1 - GOTESTSUM_JUNITFILE: /tmp/test-reports/results.xml + <<: *common_envs GOPATH: /home/circleci/go GOLANG_VERSION: "1.12.13" - # uses a more recent image with unattended upgrades disabled properly # but seems to break docker builds go-machine-recent: From 9da5a4f86dece24c05e5999f9f903cf4414febdb Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 13:03:20 -0500 Subject: [PATCH 109/241] Apply suggestions from code review Co-Authored-By: Michael Schurter --- website/source/docs/drivers/docker.html.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/website/source/docs/drivers/docker.html.md b/website/source/docs/drivers/docker.html.md index 7e280628e40..88f991b0ba8 100644 --- a/website/source/docs/drivers/docker.html.md +++ b/website/source/docs/drivers/docker.html.md @@ -728,7 +728,7 @@ plugin "docker" { Nomad may still remove the dead container. * `dangling_containers` stanza for controlling dangling container detection and cleanup: - * `enabled` - Defaults to `true`). Enables dangling container handling + * `enabled` - Defaults to `true`. Enables dangling container handling. * `dry_run` - Defaults to `false`. Enables a mode where nomad logs potential dangling containers without killing them. * `period` - Defaults to `"5m"`. A time duration that controls interval @@ -915,24 +915,24 @@ reasons, it is recommended to use full virtualization like ### Dangling Containers -Nomad 0.10.2 introduces a detector and a reaper for docker dangling containers, +Nomad 0.10.2 introduces a detector and a reaper for dangling Docker containers, containers that Nomad starts yet does not manage or track. Though rare, they sometimes in very loaded clusters and lead to unexpectedly running services, potentially with stale versions. -When docker daemon becomes unavailable as Nomad starts a task, it is possible +When Docker daemon becomes unavailable as Nomad starts a task, it is possible for Docker to successfully start the container and fails the API call with 500 error code. In such cases, Nomad retries and eventually aims to kill such containers. However, if the Docker Engine remains unhealthy, subsequent retries and stop attempts may still fail, and the started container becomes a dangling -container that Nomad no longer manges. +container that Nomad no longer manages. The newly added reaper periodically scans for such containers. It only targets containers with a `com.hashicorp.nomad.allocation_id` label, or match Nomad's conventions for naming and bind-mounts (i.e. `/alloc`, `/secrets`, `local`). Containers that don't match Nomad container patterns are left untouched. -Operators can run the reaper in a dry mode, where it only logs dangling +Operators can run the reaper in a dry run mode, where it only logs dangling container ids without killing them, or simply disable it through the `gc.dangling_containers` config stanza. From cba071b5d87c9647a0ece7e1b7b2da671225f6f1 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 13:07:54 -0500 Subject: [PATCH 110/241] address more review comments --- website/source/docs/drivers/docker.html.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/website/source/docs/drivers/docker.html.md b/website/source/docs/drivers/docker.html.md index 88f991b0ba8..6adadd74567 100644 --- a/website/source/docs/drivers/docker.html.md +++ b/website/source/docs/drivers/docker.html.md @@ -729,13 +729,15 @@ plugin "docker" { * `dangling_containers` stanza for controlling dangling container detection and cleanup: * `enabled` - Defaults to `true`. Enables dangling container handling. - * `dry_run` - Defaults to `false`. Enables a mode where nomad logs - potential dangling containers without killing them. - * `period` - Defaults to `"5m"`. A time duration that controls interval + * `dry_run` - Defaults to `false`. Only log dangling containers without + cleaning them up. + * `period` - Defaults to `"5m"`. A time duration that controls interval between Nomad scans for dangling containers. - * `creation_grace` - Defaults to `"5m"`. A time duration that controls - how long a container can run before it is tracked by Nomad or gets - marked (and killed) as a dangling container + * `creation_grace` - Defaults to `"5m"`. Grace period after a container is + created during which the GC ignores it. Only used to prevent the GC from + removing newly created containers before they are registered with the + GC. Should not need adjusting higher but may be adjusted lower to GC + more aggressively. * `volumes` stanza: * `enabled` - Defaults to `true`. Allows tasks to bind host paths @@ -917,8 +919,7 @@ reasons, it is recommended to use full virtualization like Nomad 0.10.2 introduces a detector and a reaper for dangling Docker containers, containers that Nomad starts yet does not manage or track. Though rare, they -sometimes in very loaded clusters and lead to unexpectedly running services, -potentially with stale versions. +lead to unexpectedly running services, potentially with stale versions. When Docker daemon becomes unavailable as Nomad starts a task, it is possible for Docker to successfully start the container and fails the API call with 500 From c0e0125fb1b66788e94e3ee03cfc6640f65d4054 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 22 Nov 2019 10:18:10 -0800 Subject: [PATCH 111/241] docs: update connect limitations --- .../integrations/consul-connect/index.html.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/website/source/guides/integrations/consul-connect/index.html.md b/website/source/guides/integrations/consul-connect/index.html.md index eecc8cc59b0..2cc8fe5e3a3 100644 --- a/website/source/guides/integrations/consul-connect/index.html.md +++ b/website/source/guides/integrations/consul-connect/index.html.md @@ -323,13 +323,19 @@ dashes (`-`) are converted to underscores (`_`) in environment variables so - The `consul` binary must be present in Nomad's `$PATH` to run the Envoy proxy sidecar on client nodes. - - Consul Connect Native is not yet supported. - - Consul Connect HTTP and gRPC checks are not yet supported. - - Consul ACLs are not yet supported. - - Only the Docker, exec, raw_exec, and java drivers support network namespaces + - Consul Connect Native is not yet supported ([#6083][gh6083]). + - Consul Connect HTTP and gRPC checks are not yet supported ([#6120][gh6120]). + - Consul ACLs are not yet supported ([#6701][gh6701]). + - Only the Docker, `exec`, `raw_exec`, and `java` drivers support network namespaces and Connect. - - Variable interpolation for group services and checks are not yet supported. + - Changes to the `connect` stanza may not properly trigger a job update + ([#6459][gh6459]). Changing a `meta` variable is the suggested workaround as + this will always cause an update to occur. - Consul Connect and network namespaces are only supported on Linux. [count-dashboard]: /assets/images/count-dashboard.png +[gh6083]: https://github.com/hashicorp/nomad/issues/6083 +[gh6120]: https://github.com/hashicorp/nomad/issues/6120 +[gh6701]: https://github.com/hashicorp/nomad/issues/6701 +[gh6459]: https://github.com/hashicorp/nomad/issues/6459 From 41bf4e8ecf3a1c029a815ba773d6cf81cd174532 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 13:22:14 -0500 Subject: [PATCH 112/241] docs: address more GH-6762 review comments Incorporate suggestions in https://github.com/hashicorp/nomad/pull/6762#pullrequestreview-321716747 [ci skip] --- website/source/docs/drivers/docker.html.md | 10 +++++----- website/source/guides/upgrade/upgrade-specific.html.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/website/source/docs/drivers/docker.html.md b/website/source/docs/drivers/docker.html.md index 6adadd74567..1ca370818b1 100644 --- a/website/source/docs/drivers/docker.html.md +++ b/website/source/docs/drivers/docker.html.md @@ -922,8 +922,8 @@ containers that Nomad starts yet does not manage or track. Though rare, they lead to unexpectedly running services, potentially with stale versions. When Docker daemon becomes unavailable as Nomad starts a task, it is possible -for Docker to successfully start the container and fails the API call with 500 -error code. In such cases, Nomad retries and eventually aims to kill such +for Docker to successfully start the container but return a 500 error code from +the API call. In such cases, Nomad retries and eventually aims to kill such containers. However, if the Docker Engine remains unhealthy, subsequent retries and stop attempts may still fail, and the started container becomes a dangling container that Nomad no longer manages. @@ -933,9 +933,9 @@ containers with a `com.hashicorp.nomad.allocation_id` label, or match Nomad's conventions for naming and bind-mounts (i.e. `/alloc`, `/secrets`, `local`). Containers that don't match Nomad container patterns are left untouched. -Operators can run the reaper in a dry run mode, where it only logs dangling -container ids without killing them, or simply disable it through -the `gc.dangling_containers` config stanza. +Operators can run the reaper in a dry-run mode, where it only logs dangling +container ids without killing them, or disable it by setting the +`gc.dangling_containers` config stanza. ### Docker for Windows diff --git a/website/source/guides/upgrade/upgrade-specific.html.md b/website/source/guides/upgrade/upgrade-specific.html.md index 9afb6d29163..e626a37c2dc 100644 --- a/website/source/guides/upgrade/upgrade-specific.html.md +++ b/website/source/guides/upgrade/upgrade-specific.html.md @@ -21,7 +21,7 @@ Nomad 0.10.2 addresses an issue occurring in heavily loaded clients, where containers are started without being properly managed by Nomad. Nomad 0.10.2 introduced a reaper that detects and kills such containers. -Operators may opt to run reaper in a dry mode or disabling it through a client config. +Operators may opt to run reaper in a dry-mode or disabling it through a client config. For more information, see [Docker Dangling containers][dangling-containers]. From 1552e9b8e728241a38f7ced2779c90598cb41f8e Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 22 Nov 2019 10:31:34 -0800 Subject: [PATCH 113/241] release: bump version to 0.10.2-rc1 --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 782ad77aa78..2b794606f95 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var ( // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. - VersionPrerelease = "dev" + VersionPrerelease = "rc1" // VersionMetadata is metadata further describing the build type. VersionMetadata = "" From 33d411d6a5bc72870ce504e75371d219e5c729bb Mon Sep 17 00:00:00 2001 From: Nomad Release bot Date: Fri, 22 Nov 2019 18:42:49 +0000 Subject: [PATCH 114/241] Generate files for 0.10.2-rc1 release --- client/structs/structs.generated.go | 9709 +++ command/agent/bindata_assetfs.go | 42 +- nomad/structs/structs.generated.go | 106164 +++++++++++++++++++++++++ 3 files changed, 115894 insertions(+), 21 deletions(-) create mode 100644 client/structs/structs.generated.go create mode 100644 nomad/structs/structs.generated.go diff --git a/client/structs/structs.generated.go b/client/structs/structs.generated.go new file mode 100644 index 00000000000..1361cd0eacd --- /dev/null +++ b/client/structs/structs.generated.go @@ -0,0 +1,9709 @@ +// +build codec_generated + +// Code generated by codecgen - DO NOT EDIT. + +package structs + +import ( + "errors" + pkg1_stats "github.com/hashicorp/nomad/client/stats" + pkg4_structs "github.com/hashicorp/nomad/nomad/structs" + pkg2_device "github.com/hashicorp/nomad/plugins/device" + pkg3_structs "github.com/hashicorp/nomad/plugins/shared/structs" + codec1978 "github.com/ugorji/go/codec" + "runtime" + "strconv" + "time" +) + +const ( + // ----- content types ---- + codecSelferCcUTF8102 = 1 + codecSelferCcRAW102 = 255 + // ----- value types used ---- + codecSelferValueTypeArray102 = 10 + codecSelferValueTypeMap102 = 9 + codecSelferValueTypeString102 = 6 + codecSelferValueTypeInt102 = 2 + codecSelferValueTypeUint102 = 3 + codecSelferValueTypeFloat102 = 4 + codecSelferBitsize102 = uint8(32 << (^uint(0) >> 63)) +) + +var ( + errCodecSelferOnlyMapOrArrayEncodeToStruct102 = errors.New(`only encoded map or array can be decoded into a struct`) +) + +type codecSelfer102 struct{} + +func init() { + if codec1978.GenVersion != 10 { + _, file, _, _ := runtime.Caller(0) + panic("codecgen version mismatch: current: 10, need " + strconv.FormatInt(int64(codec1978.GenVersion), 10) + ". Re-generate file: " + file) + } + if false { + var _ byte = 0 // reference the types, but skip this branch at build/run time + var v0 pkg1_stats.HostStats + var v1 pkg4_structs.QueryMeta + var v2 pkg2_device.DeviceGroupStats + var v3 pkg3_structs.StatValue + var v4 time.Time + _, _, _, _, _ = v0, v1, v2, v3, v4 + } +} + +func (x *RpcError) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Message)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Message\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Message`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Message)) + } + } + } + var yyn6 bool + if x.Code == nil { + yyn6 = true + goto LABEL6 + } + LABEL6: + if yyr2 || yy2arr2 { + if yyn6 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Code == nil { + r.EncodeNil() + } else { + yy7 := *x.Code + if false { + } else { + r.EncodeInt(int64(yy7)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Code\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Code`) + } + r.WriteMapElemValue() + if yyn6 { + r.EncodeNil() + } else { + if x.Code == nil { + r.EncodeNil() + } else { + yy9 := *x.Code + if false { + } else { + r.EncodeInt(int64(yy9)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RpcError) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *RpcError) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = (string)(r.DecodeString()) + } + case "Code": + if r.TryDecodeAsNil() { + if true && x.Code != nil { + x.Code = nil + } + } else { + if x.Code == nil { + x.Code = new(int64) + } + + if false { + } else { + *x.Code = (int64)(r.DecodeInt64()) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RpcError) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Code != nil { + x.Code = nil + } + } else { + if x.Code == nil { + x.Code = new(int64) + } + + if false { + } else { + *x.Code = (int64)(r.DecodeInt64()) + } + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *ClientStatsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.HostStats == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.HostStats == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.HostStats)); yyxt4 != nil { + z.EncExtension(x.HostStats, yyxt4) + } else { + z.EncFallback(x.HostStats) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HostStats\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `HostStats`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.HostStats == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.HostStats)); yyxt5 != nil { + z.EncExtension(x.HostStats, yyxt5) + } else { + z.EncFallback(x.HostStats) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ClientStatsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *ClientStatsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "HostStats": + if r.TryDecodeAsNil() { + if true && x.HostStats != nil { + x.HostStats = nil + } + } else { + if x.HostStats == nil { + x.HostStats = new(pkg1_stats.HostStats) + } + + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.HostStats)); yyxt5 != nil { + z.DecExtension(x.HostStats, yyxt5) + } else { + z.DecFallback(x.HostStats, false) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ClientStatsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.HostStats != nil { + x.HostStats = nil + } + } else { + if x.HostStats == nil { + x.HostStats = new(pkg1_stats.HostStats) + } + + if false { + } else if yyxt12 := z.Extension(z.I2Rtid(x.HostStats)); yyxt12 != nil { + z.DecExtension(x.HostStats, yyxt12) + } else { + z.DecFallback(x.HostStats, false) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *MonitorRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(13) + } else { + r.WriteMapStart(13) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LogLevel))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogLevel)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LogLevel\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `LogLevel`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LogLevel))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogLevel)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.LogJSON)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LogJSON\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `LogJSON`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.LogJSON)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ServerID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ServerID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `ServerID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ServerID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.PlainText)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PlainText\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `PlainText`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.PlainText)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { + z.EncExtension(x.MaxQueryTime, yyxt28) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt29 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt29 != nil { + z.EncExtension(x.MaxQueryTime, yyxt29) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *MonitorRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *MonitorRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "LogLevel": + if r.TryDecodeAsNil() { + x.LogLevel = "" + } else { + x.LogLevel = (string)(r.DecodeString()) + } + case "LogJSON": + if r.TryDecodeAsNil() { + x.LogJSON = false + } else { + x.LogJSON = (bool)(r.DecodeBool()) + } + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "ServerID": + if r.TryDecodeAsNil() { + x.ServerID = "" + } else { + x.ServerID = (string)(r.DecodeString()) + } + case "PlainText": + if r.TryDecodeAsNil() { + x.PlainText = false + } else { + x.PlainText = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.DecExtension(x.MaxQueryTime, yyxt13) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *MonitorRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj18 int + var yyb18 bool + var yyhl18 bool = l >= 0 + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LogLevel = "" + } else { + x.LogLevel = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LogJSON = false + } else { + x.LogJSON = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ServerID = "" + } else { + x.ServerID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PlainText = false + } else { + x.PlainText = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { + z.DecExtension(x.MaxQueryTime, yyxt28) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj18-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocFileInfo) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + var yyq2 = [6]bool{ // should field at this index be written? + true, // Name + true, // IsDir + true, // Size + true, // FileMode + true, // ModTime + x.ContentType != "", // ContentType + } + _ = yyq2 + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + var yynn2 int + for _, b := range yyq2 { + if b { + yynn2++ + } + } + r.WriteMapStart(yynn2) + yynn2 = 0 + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.IsDir)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"IsDir\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `IsDir`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.IsDir)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Size)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Size\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Size`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Size)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FileMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.FileMode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FileMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `FileMode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FileMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.FileMode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.ModTime) + } else if yyxt16 := z.Extension(z.I2Rtid(x.ModTime)); yyxt16 != nil { + z.EncExtension(x.ModTime, yyxt16) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.ModTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.ModTime) + } else { + z.EncFallback(x.ModTime) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `ModTime`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.ModTime) + } else if yyxt17 := z.Extension(z.I2Rtid(x.ModTime)); yyxt17 != nil { + z.EncExtension(x.ModTime, yyxt17) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.ModTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.ModTime) + } else { + z.EncFallback(x.ModTime) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[5] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ContentType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ContentType)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, "") + } + } + } else { + if yyq2[5] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ContentType\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `ContentType`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ContentType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ContentType)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocFileInfo) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *AllocFileInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "IsDir": + if r.TryDecodeAsNil() { + x.IsDir = false + } else { + x.IsDir = (bool)(r.DecodeBool()) + } + case "Size": + if r.TryDecodeAsNil() { + x.Size = 0 + } else { + x.Size = (int64)(r.DecodeInt64()) + } + case "FileMode": + if r.TryDecodeAsNil() { + x.FileMode = "" + } else { + x.FileMode = (string)(r.DecodeString()) + } + case "ModTime": + if r.TryDecodeAsNil() { + x.ModTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.ModTime = r.DecodeTime() + } else if yyxt9 := z.Extension(z.I2Rtid(x.ModTime)); yyxt9 != nil { + z.DecExtension(x.ModTime, yyxt9) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.ModTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.ModTime) + } else { + z.DecFallback(&x.ModTime, false) + } + } + case "ContentType": + if r.TryDecodeAsNil() { + x.ContentType = "" + } else { + x.ContentType = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocFileInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.IsDir = false + } else { + x.IsDir = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Size = 0 + } else { + x.Size = (int64)(r.DecodeInt64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FileMode = "" + } else { + x.FileMode = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.ModTime = r.DecodeTime() + } else if yyxt17 := z.Extension(z.I2Rtid(x.ModTime)); yyxt17 != nil { + z.DecExtension(x.ModTime, yyxt17) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.ModTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.ModTime) + } else { + z.DecFallback(&x.ModTime, false) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ContentType = "" + } else { + x.ContentType = (string)(r.DecodeString()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *FsListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Path\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Path`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *FsListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *FsListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Path": + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *FsListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *FsListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Files == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocFileInfo(([]*AllocFileInfo)(x.Files), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Files\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Files`) + } + r.WriteMapElemValue() + if x.Files == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocFileInfo(([]*AllocFileInfo)(x.Files), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *FsListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *FsListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Files": + if r.TryDecodeAsNil() { + x.Files = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocFileInfo((*[]*AllocFileInfo)(&x.Files), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *FsListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Files = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocFileInfo((*[]*AllocFileInfo)(&x.Files), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *FsStatRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Path\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Path`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *FsStatRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *FsStatRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Path": + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *FsStatRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *FsStatResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Info == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Info == nil { + r.EncodeNil() + } else { + x.Info.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Info\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Info`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Info == nil { + r.EncodeNil() + } else { + x.Info.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *FsStatResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *FsStatResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Info": + if r.TryDecodeAsNil() { + if true && x.Info != nil { + x.Info = nil + } + } else { + if x.Info == nil { + x.Info = new(AllocFileInfo) + } + + x.Info.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *FsStatResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Info != nil { + x.Info = nil + } + } else { + if x.Info == nil { + x.Info = new(AllocFileInfo) + } + + x.Info.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *FsStreamRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(15) + } else { + r.WriteMapStart(15) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Path\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Path`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Offset)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Offset\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Offset`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Offset)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Origin\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Origin`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.PlainText)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PlainText\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `PlainText`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.PlainText)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Limit)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Limit\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Limit`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Limit)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Follow)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Follow\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Follow`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Follow)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt34 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt34 != nil { + z.EncExtension(x.MaxQueryTime, yyxt34) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt35 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt35 != nil { + z.EncExtension(x.MaxQueryTime, yyxt35) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *FsStreamRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *FsStreamRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Path": + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + case "Offset": + if r.TryDecodeAsNil() { + x.Offset = 0 + } else { + x.Offset = (int64)(r.DecodeInt64()) + } + case "Origin": + if r.TryDecodeAsNil() { + x.Origin = "" + } else { + x.Origin = (string)(r.DecodeString()) + } + case "PlainText": + if r.TryDecodeAsNil() { + x.PlainText = false + } else { + x.PlainText = (bool)(r.DecodeBool()) + } + case "Limit": + if r.TryDecodeAsNil() { + x.Limit = 0 + } else { + x.Limit = (int64)(r.DecodeInt64()) + } + case "Follow": + if r.TryDecodeAsNil() { + x.Follow = false + } else { + x.Follow = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt15 != nil { + z.DecExtension(x.MaxQueryTime, yyxt15) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *FsStreamRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj20 int + var yyb20 bool + var yyhl20 bool = l >= 0 + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Offset = 0 + } else { + x.Offset = (int64)(r.DecodeInt64()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Origin = "" + } else { + x.Origin = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PlainText = false + } else { + x.PlainText = (bool)(r.DecodeBool()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Limit = 0 + } else { + x.Limit = (int64)(r.DecodeInt64()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Follow = false + } else { + x.Follow = (bool)(r.DecodeBool()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt32 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt32 != nil { + z.DecExtension(x.MaxQueryTime, yyxt32) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj20-1, "") + } + r.ReadArrayEnd() +} + +func (x *FsLogsRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(15) + } else { + r.WriteMapStart(15) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Task\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Task`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LogType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogType)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LogType\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `LogType`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LogType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogType)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Offset)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Offset\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Offset`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Offset)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Origin\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Origin`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.PlainText)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PlainText\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `PlainText`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.PlainText)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Follow)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Follow\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Follow`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Follow)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt34 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt34 != nil { + z.EncExtension(x.MaxQueryTime, yyxt34) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt35 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt35 != nil { + z.EncExtension(x.MaxQueryTime, yyxt35) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *FsLogsRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *FsLogsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Task": + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + case "LogType": + if r.TryDecodeAsNil() { + x.LogType = "" + } else { + x.LogType = (string)(r.DecodeString()) + } + case "Offset": + if r.TryDecodeAsNil() { + x.Offset = 0 + } else { + x.Offset = (int64)(r.DecodeInt64()) + } + case "Origin": + if r.TryDecodeAsNil() { + x.Origin = "" + } else { + x.Origin = (string)(r.DecodeString()) + } + case "PlainText": + if r.TryDecodeAsNil() { + x.PlainText = false + } else { + x.PlainText = (bool)(r.DecodeBool()) + } + case "Follow": + if r.TryDecodeAsNil() { + x.Follow = false + } else { + x.Follow = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt15 != nil { + z.DecExtension(x.MaxQueryTime, yyxt15) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *FsLogsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj20 int + var yyb20 bool + var yyhl20 bool = l >= 0 + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LogType = "" + } else { + x.LogType = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Offset = 0 + } else { + x.Offset = (int64)(r.DecodeInt64()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Origin = "" + } else { + x.Origin = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PlainText = false + } else { + x.PlainText = (bool)(r.DecodeBool()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Follow = false + } else { + x.Follow = (bool)(r.DecodeBool()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt32 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt32 != nil { + z.DecExtension(x.MaxQueryTime, yyxt32) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj20-1, "") + } + r.ReadArrayEnd() +} + +func (x *StreamErrWrapper) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + var yyn3 bool + if x.Error == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Error == nil { + r.EncodeNil() + } else { + x.Error.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Error\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Error`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Error == nil { + r.EncodeNil() + } else { + x.Error.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Payload == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Payload)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Payload\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Payload`) + } + r.WriteMapElemValue() + if x.Payload == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Payload)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *StreamErrWrapper) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *StreamErrWrapper) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Error": + if r.TryDecodeAsNil() { + if true && x.Error != nil { + x.Error = nil + } + } else { + if x.Error == nil { + x.Error = new(RpcError) + } + + x.Error.CodecDecodeSelf(d) + } + case "Payload": + if r.TryDecodeAsNil() { + x.Payload = nil + } else { + if false { + } else { + x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *StreamErrWrapper) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Error != nil { + x.Error = nil + } + } else { + if x.Error == nil { + x.Error = new(RpcError) + } + + x.Error.CodecDecodeSelf(d) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Payload = nil + } else { + if false { + } else { + x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) + } + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocExecRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(12) + } else { + r.WriteMapStart(12) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Task\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Task`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Tty)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tty\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Tty`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Tty)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Cmd == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Cmd, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Cmd\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Cmd`) + } + r.WriteMapElemValue() + if x.Cmd == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Cmd, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt25 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt25 != nil { + z.EncExtension(x.MaxQueryTime, yyxt25) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt26 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt26 != nil { + z.EncExtension(x.MaxQueryTime, yyxt26) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocExecRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *AllocExecRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Task": + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + case "Tty": + if r.TryDecodeAsNil() { + x.Tty = false + } else { + x.Tty = (bool)(r.DecodeBool()) + } + case "Cmd": + if r.TryDecodeAsNil() { + x.Cmd = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Cmd, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.DecExtension(x.MaxQueryTime, yyxt13) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocExecRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj18 int + var yyb18 bool + var yyhl18 bool = l >= 0 + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tty = false + } else { + x.Tty = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Cmd = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Cmd, d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { + z.DecExtension(x.MaxQueryTime, yyxt28) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj18-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocStatsRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Task\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Task`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocStatsRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *AllocStatsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Task": + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocStatsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocStatsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Stats == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Stats == nil { + r.EncodeNil() + } else { + x.Stats.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Stats\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Stats`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Stats == nil { + r.EncodeNil() + } else { + x.Stats.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocStatsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *AllocStatsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Stats": + if r.TryDecodeAsNil() { + if true && x.Stats != nil { + x.Stats = nil + } + } else { + if x.Stats == nil { + x.Stats = new(AllocResourceUsage) + } + + x.Stats.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocStatsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Stats != nil { + x.Stats = nil + } + } else { + if x.Stats == nil { + x.Stats = new(AllocResourceUsage) + } + + x.Stats.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *MemoryStats) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.RSS)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RSS\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `RSS`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.RSS)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Cache)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Cache\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Cache`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Cache)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Swap)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Swap\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Swap`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Swap)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Usage)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Usage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Usage`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Usage)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MaxUsage)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxUsage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MaxUsage`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MaxUsage)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.KernelUsage)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KernelUsage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `KernelUsage`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.KernelUsage)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.KernelMaxUsage)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KernelMaxUsage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `KernelMaxUsage`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.KernelMaxUsage)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Measured == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Measured, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Measured\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Measured`) + } + r.WriteMapElemValue() + if x.Measured == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Measured, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *MemoryStats) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *MemoryStats) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "RSS": + if r.TryDecodeAsNil() { + x.RSS = 0 + } else { + x.RSS = (uint64)(r.DecodeUint64()) + } + case "Cache": + if r.TryDecodeAsNil() { + x.Cache = 0 + } else { + x.Cache = (uint64)(r.DecodeUint64()) + } + case "Swap": + if r.TryDecodeAsNil() { + x.Swap = 0 + } else { + x.Swap = (uint64)(r.DecodeUint64()) + } + case "Usage": + if r.TryDecodeAsNil() { + x.Usage = 0 + } else { + x.Usage = (uint64)(r.DecodeUint64()) + } + case "MaxUsage": + if r.TryDecodeAsNil() { + x.MaxUsage = 0 + } else { + x.MaxUsage = (uint64)(r.DecodeUint64()) + } + case "KernelUsage": + if r.TryDecodeAsNil() { + x.KernelUsage = 0 + } else { + x.KernelUsage = (uint64)(r.DecodeUint64()) + } + case "KernelMaxUsage": + if r.TryDecodeAsNil() { + x.KernelMaxUsage = 0 + } else { + x.KernelMaxUsage = (uint64)(r.DecodeUint64()) + } + case "Measured": + if r.TryDecodeAsNil() { + x.Measured = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Measured, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *MemoryStats) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RSS = 0 + } else { + x.RSS = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Cache = 0 + } else { + x.Cache = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Swap = 0 + } else { + x.Swap = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Usage = 0 + } else { + x.Usage = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxUsage = 0 + } else { + x.MaxUsage = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KernelUsage = 0 + } else { + x.KernelUsage = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KernelMaxUsage = 0 + } else { + x.KernelMaxUsage = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Measured = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Measured, d) + } + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *CpuStats) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeFloat64(float64(x.SystemMode)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SystemMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `SystemMode`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeFloat64(float64(x.SystemMode)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeFloat64(float64(x.UserMode)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UserMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `UserMode`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeFloat64(float64(x.UserMode)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeFloat64(float64(x.TotalTicks)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TotalTicks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `TotalTicks`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeFloat64(float64(x.TotalTicks)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ThrottledPeriods)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ThrottledPeriods\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `ThrottledPeriods`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ThrottledPeriods)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ThrottledTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ThrottledTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `ThrottledTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ThrottledTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeFloat64(float64(x.Percent)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Percent\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Percent`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeFloat64(float64(x.Percent)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Measured == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Measured, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Measured\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Measured`) + } + r.WriteMapElemValue() + if x.Measured == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Measured, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *CpuStats) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *CpuStats) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "SystemMode": + if r.TryDecodeAsNil() { + x.SystemMode = 0 + } else { + x.SystemMode = (float64)(r.DecodeFloat64()) + } + case "UserMode": + if r.TryDecodeAsNil() { + x.UserMode = 0 + } else { + x.UserMode = (float64)(r.DecodeFloat64()) + } + case "TotalTicks": + if r.TryDecodeAsNil() { + x.TotalTicks = 0 + } else { + x.TotalTicks = (float64)(r.DecodeFloat64()) + } + case "ThrottledPeriods": + if r.TryDecodeAsNil() { + x.ThrottledPeriods = 0 + } else { + x.ThrottledPeriods = (uint64)(r.DecodeUint64()) + } + case "ThrottledTime": + if r.TryDecodeAsNil() { + x.ThrottledTime = 0 + } else { + x.ThrottledTime = (uint64)(r.DecodeUint64()) + } + case "Percent": + if r.TryDecodeAsNil() { + x.Percent = 0 + } else { + x.Percent = (float64)(r.DecodeFloat64()) + } + case "Measured": + if r.TryDecodeAsNil() { + x.Measured = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Measured, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *CpuStats) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SystemMode = 0 + } else { + x.SystemMode = (float64)(r.DecodeFloat64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UserMode = 0 + } else { + x.UserMode = (float64)(r.DecodeFloat64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TotalTicks = 0 + } else { + x.TotalTicks = (float64)(r.DecodeFloat64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ThrottledPeriods = 0 + } else { + x.ThrottledPeriods = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ThrottledTime = 0 + } else { + x.ThrottledTime = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Percent = 0 + } else { + x.Percent = (float64)(r.DecodeFloat64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Measured = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Measured, d) + } + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *ResourceUsage) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + var yyn3 bool + if x.MemoryStats == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.MemoryStats == nil { + r.EncodeNil() + } else { + x.MemoryStats.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MemoryStats\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `MemoryStats`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.MemoryStats == nil { + r.EncodeNil() + } else { + x.MemoryStats.CodecEncodeSelf(e) + } + } + } + var yyn6 bool + if x.CpuStats == nil { + yyn6 = true + goto LABEL6 + } + LABEL6: + if yyr2 || yy2arr2 { + if yyn6 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.CpuStats == nil { + r.EncodeNil() + } else { + x.CpuStats.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CpuStats\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `CpuStats`) + } + r.WriteMapElemValue() + if yyn6 { + r.EncodeNil() + } else { + if x.CpuStats == nil { + r.EncodeNil() + } else { + x.CpuStats.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.DeviceStats == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtodevice_DeviceGroupStats(([]*pkg2_device.DeviceGroupStats)(x.DeviceStats), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeviceStats\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `DeviceStats`) + } + r.WriteMapElemValue() + if x.DeviceStats == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtodevice_DeviceGroupStats(([]*pkg2_device.DeviceGroupStats)(x.DeviceStats), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ResourceUsage) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *ResourceUsage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "MemoryStats": + if r.TryDecodeAsNil() { + if true && x.MemoryStats != nil { + x.MemoryStats = nil + } + } else { + if x.MemoryStats == nil { + x.MemoryStats = new(MemoryStats) + } + + x.MemoryStats.CodecDecodeSelf(d) + } + case "CpuStats": + if r.TryDecodeAsNil() { + if true && x.CpuStats != nil { + x.CpuStats = nil + } + } else { + if x.CpuStats == nil { + x.CpuStats = new(CpuStats) + } + + x.CpuStats.CodecDecodeSelf(d) + } + case "DeviceStats": + if r.TryDecodeAsNil() { + x.DeviceStats = nil + } else { + if false { + } else { + h.decSlicePtrtodevice_DeviceGroupStats((*[]*pkg2_device.DeviceGroupStats)(&x.DeviceStats), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ResourceUsage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.MemoryStats != nil { + x.MemoryStats = nil + } + } else { + if x.MemoryStats == nil { + x.MemoryStats = new(MemoryStats) + } + + x.MemoryStats.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.CpuStats != nil { + x.CpuStats = nil + } + } else { + if x.CpuStats == nil { + x.CpuStats = new(CpuStats) + } + + x.CpuStats.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeviceStats = nil + } else { + if false { + } else { + h.decSlicePtrtodevice_DeviceGroupStats((*[]*pkg2_device.DeviceGroupStats)(&x.DeviceStats), d) + } + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *TaskResourceUsage) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + var yyn3 bool + if x.ResourceUsage == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.ResourceUsage == nil { + r.EncodeNil() + } else { + x.ResourceUsage.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ResourceUsage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `ResourceUsage`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.ResourceUsage == nil { + r.EncodeNil() + } else { + x.ResourceUsage.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Timestamp)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Timestamp\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Timestamp`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Timestamp)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Pids == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoResourceUsage((map[string]*ResourceUsage)(x.Pids), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Pids\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Pids`) + } + r.WriteMapElemValue() + if x.Pids == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoResourceUsage((map[string]*ResourceUsage)(x.Pids), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskResourceUsage) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *TaskResourceUsage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ResourceUsage": + if r.TryDecodeAsNil() { + if true && x.ResourceUsage != nil { + x.ResourceUsage = nil + } + } else { + if x.ResourceUsage == nil { + x.ResourceUsage = new(ResourceUsage) + } + + x.ResourceUsage.CodecDecodeSelf(d) + } + case "Timestamp": + if r.TryDecodeAsNil() { + x.Timestamp = 0 + } else { + x.Timestamp = (int64)(r.DecodeInt64()) + } + case "Pids": + if r.TryDecodeAsNil() { + x.Pids = nil + } else { + if false { + } else { + h.decMapstringPtrtoResourceUsage((*map[string]*ResourceUsage)(&x.Pids), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskResourceUsage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.ResourceUsage != nil { + x.ResourceUsage = nil + } + } else { + if x.ResourceUsage == nil { + x.ResourceUsage = new(ResourceUsage) + } + + x.ResourceUsage.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Timestamp = 0 + } else { + x.Timestamp = (int64)(r.DecodeInt64()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Pids = nil + } else { + if false { + } else { + h.decMapstringPtrtoResourceUsage((*map[string]*ResourceUsage)(&x.Pids), d) + } + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocResourceUsage) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + var yyn3 bool + if x.ResourceUsage == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.ResourceUsage == nil { + r.EncodeNil() + } else { + x.ResourceUsage.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ResourceUsage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `ResourceUsage`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.ResourceUsage == nil { + r.EncodeNil() + } else { + x.ResourceUsage.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskResourceUsage((map[string]*TaskResourceUsage)(x.Tasks), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tasks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Tasks`) + } + r.WriteMapElemValue() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskResourceUsage((map[string]*TaskResourceUsage)(x.Tasks), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Timestamp)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Timestamp\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Timestamp`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Timestamp)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocResourceUsage) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *AllocResourceUsage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ResourceUsage": + if r.TryDecodeAsNil() { + if true && x.ResourceUsage != nil { + x.ResourceUsage = nil + } + } else { + if x.ResourceUsage == nil { + x.ResourceUsage = new(ResourceUsage) + } + + x.ResourceUsage.CodecDecodeSelf(d) + } + case "Tasks": + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskResourceUsage((*map[string]*TaskResourceUsage)(&x.Tasks), d) + } + } + case "Timestamp": + if r.TryDecodeAsNil() { + x.Timestamp = 0 + } else { + x.Timestamp = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocResourceUsage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.ResourceUsage != nil { + x.ResourceUsage = nil + } + } else { + if x.ResourceUsage == nil { + x.ResourceUsage = new(ResourceUsage) + } + + x.ResourceUsage.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskResourceUsage((*map[string]*TaskResourceUsage)(&x.Tasks), d) + } + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Timestamp = 0 + } else { + x.Timestamp = (int64)(r.DecodeInt64()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *HealthCheckRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(0) + } else { + r.WriteMapStart(0) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *HealthCheckRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *HealthCheckRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *HealthCheckRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4 int + var yyb4 bool + var yyhl4 bool = l >= 0 + for { + yyj4++ + if yyhl4 { + yyb4 = yyj4 > l + } else { + yyb4 = r.CheckBreak() + } + if yyb4 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj4-1, "") + } + r.ReadArrayEnd() +} + +func (x *HealthCheckResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Drivers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtostructs_DriverInfo((map[string]*pkg4_structs.DriverInfo)(x.Drivers), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Drivers\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Drivers`) + } + r.WriteMapElemValue() + if x.Drivers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtostructs_DriverInfo((map[string]*pkg4_structs.DriverInfo)(x.Drivers), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *HealthCheckResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *HealthCheckResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Drivers": + if r.TryDecodeAsNil() { + x.Drivers = nil + } else { + if false { + } else { + h.decMapstringPtrtostructs_DriverInfo((*map[string]*pkg4_structs.DriverInfo)(&x.Drivers), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *HealthCheckResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Drivers = nil + } else { + if false { + } else { + h.decMapstringPtrtostructs_DriverInfo((*map[string]*pkg4_structs.DriverInfo)(&x.Drivers), d) + } + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *HealthCheckIntervalRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(0) + } else { + r.WriteMapStart(0) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *HealthCheckIntervalRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *HealthCheckIntervalRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *HealthCheckIntervalRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4 int + var yyb4 bool + var yyhl4 bool = l >= 0 + for { + yyj4++ + if yyhl4 { + yyb4 = yyj4 > l + } else { + yyb4 = r.CheckBreak() + } + if yyb4 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj4-1, "") + } + r.ReadArrayEnd() +} + +func (x *HealthCheckIntervalResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Eligible)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Eligible\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Eligible`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Eligible)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.Period)); yyxt7 != nil { + z.EncExtension(x.Period, yyxt7) + } else { + r.EncodeInt(int64(x.Period)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Period\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, `Period`) + } + r.WriteMapElemValue() + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Period)); yyxt8 != nil { + z.EncExtension(x.Period, yyxt8) + } else { + r.EncodeInt(int64(x.Period)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *HealthCheckIntervalResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap102 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray102 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) + } + } +} + +func (x *HealthCheckIntervalResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Eligible": + if r.TryDecodeAsNil() { + x.Eligible = false + } else { + x.Eligible = (bool)(r.DecodeBool()) + } + case "Period": + if r.TryDecodeAsNil() { + x.Period = 0 + } else { + if false { + } else if yyxt6 := z.Extension(z.I2Rtid(x.Period)); yyxt6 != nil { + z.DecExtension(x.Period, yyxt6) + } else { + x.Period = (time.Duration)(r.DecodeInt64()) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *HealthCheckIntervalResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Eligible = false + } else { + x.Eligible = (bool)(r.DecodeBool()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Period = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.Period)); yyxt10 != nil { + z.DecExtension(x.Period, yyxt10) + } else { + x.Period = (time.Duration)(r.DecodeInt64()) + } + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x codecSelfer102) encSlicePtrtoAllocFileInfo(v []*AllocFileInfo, e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer102) decSlicePtrtoAllocFileInfo(v *[]*AllocFileInfo, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*AllocFileInfo{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*AllocFileInfo, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*AllocFileInfo, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(AllocFileInfo) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*AllocFileInfo, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer102) encSlicePtrtodevice_DeviceGroupStats(v []*pkg2_device.DeviceGroupStats, e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt2 := z.Extension(z.I2Rtid(yyv1)); yyxt2 != nil { + z.EncExtension(yyv1, yyxt2) + } else { + z.EncFallback(yyv1) + } + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer102) decSlicePtrtodevice_DeviceGroupStats(v *[]*pkg2_device.DeviceGroupStats, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*pkg2_device.DeviceGroupStats{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*pkg2_device.DeviceGroupStats, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*pkg2_device.DeviceGroupStats, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(pkg2_device.DeviceGroupStats) + } + if false { + } else if yyxt3 := z.Extension(z.I2Rtid(yyv1[yyj1])); yyxt3 != nil { + z.DecExtension(yyv1[yyj1], yyxt3) + } else { + z.DecFallback(yyv1[yyj1], false) + } + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*pkg2_device.DeviceGroupStats, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer102) encMapstringPtrtoResourceUsage(v map[string]*ResourceUsage, e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer102) decMapstringPtrtoResourceUsage(v *map[string]*ResourceUsage, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*ResourceUsage, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *ResourceUsage + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(ResourceUsage) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer102) encMapstringPtrtoTaskResourceUsage(v map[string]*TaskResourceUsage, e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer102) decMapstringPtrtoTaskResourceUsage(v *map[string]*TaskResourceUsage, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*TaskResourceUsage, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *TaskResourceUsage + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(TaskResourceUsage) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer102) encMapstringPtrtostructs_DriverInfo(v map[string]*pkg4_structs.DriverInfo, e *codec1978.Encoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8102, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt3 := z.Extension(z.I2Rtid(yyv1)); yyxt3 != nil { + z.EncExtension(yyv1, yyxt3) + } else { + z.EncFallback(yyv1) + } + } + } + r.WriteMapEnd() +} + +func (x codecSelfer102) decMapstringPtrtostructs_DriverInfo(v *map[string]*pkg4_structs.DriverInfo, d *codec1978.Decoder) { + var h codecSelfer102 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*pkg4_structs.DriverInfo, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *pkg4_structs.DriverInfo + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(pkg4_structs.DriverInfo) + } + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(yymv1)); yyxt4 != nil { + z.DecExtension(yymv1, yyxt4) + } else { + z.DecFallback(yymv1, false) + } + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} diff --git a/command/agent/bindata_assetfs.go b/command/agent/bindata_assetfs.go index 2a83585b546..2dfb4954ebc 100644 --- a/command/agent/bindata_assetfs.go +++ b/command/agent/bindata_assetfs.go @@ -3,8 +3,8 @@ // ui/dist/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js // ui/dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css // ui/dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js -// ui/dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js -// ui/dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css +// ui/dist/assets/vendor-44114fe8d7aaeb1fcb23a1020f2623c2.js +// ui/dist/assets/vendor-d8602bc1ee5a13b26e7066b76b62d063.css // ui/dist/crossdomain.xml // ui/dist/ember-fetch/fetch-fastboot-5e5d008c8b65b0ac116f7635d0c6c6b9.js // ui/dist/favicon-1c2527a7a07d130ecbafce75e4615a69.png @@ -148,42 +148,42 @@ func distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js() (*asset, error) { return a, nil } -var _distAssetsVendor34c674f94f8ed54c9c302f718969513fJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\xfb\x76\xdb\x38\xb2\x28\x0e\xff\xef\xa7\x90\xf9\x75\x34\x40\x04\xc9\x24\x75\xb3\xd9\x46\xeb\x4b\xc7\xb9\xf5\x44\x49\xba\xed\x8c\x27\x91\x35\xda\xb4\x04\xd9\xec\x48\xa4\x1b\x84\xe2\x38\xa6\xf6\xb3\xff\x16\x0a\x00\x09\x4a\x94\x93\xcc\xec\xb3\xcf\x49\xd6\xb2\x88\x5b\xa1\x70\x2b\x14\x0a\x55\x85\xdb\x28\x9e\x25\xb7\xad\x67\xcb\x4b\xc6\x9f\xbd\xf9\x07\xbd\x7f\xfe\xec\xc9\xd9\xfb\x3f\x9e\x9d\x06\xf7\x6b\xf2\xec\x9f\x67\xcf\xde\x9c\x4c\xde\xfd\xf1\xf6\xec\xed\xd9\x87\x77\x32\xf2\x24\x14\x2c\xd8\xf7\xd6\x64\xf2\xdb\xef\xef\x9f\xfd\xf1\x61\xf2\xea\xcd\xd9\xb3\x17\x7f\x3c\x39\x7b\xf5\xf6\x4d\xb0\xef\xae\xf7\x3e\x87\xbc\xb6\x48\xc2\x19\xe3\x64\xc6\xe6\x51\xcc\x08\x67\x7f\xad\x22\xce\x86\xc9\x6c\xb5\xc8\x43\xe6\xf7\xcf\x94\xf0\x55\x1c\x47\xf1\xd5\x19\x4b\x45\x4a\xf7\xbd\xbd\x68\x8e\xe6\xab\x78\x2a\xa2\x24\x46\x0c\xdf\x3b\xab\x94\xd5\x52\xc1\xa3\xa9\x70\xf6\x4c\x42\x4d\x20\x7c\x2f\xab\x62\xf4\xed\xe5\x9f\x6c\x2a\x5a\x53\xce\x42\xc1\x50\xbc\x5a\x2c\xf0\x1e\x67\x62\xc5\xe3\x1a\x6b\x4d\x26\xf4\x73\x12\xcd\x6a\x2e\x99\xb1\x05\x13\x0c\xa2\x08\x5b\xcb\xa2\x9c\xde\x2b\x44\x83\x12\xbe\x41\x15\xda\x41\x65\x23\x82\xad\xc6\x04\xf9\xd7\x7a\x2f\xff\xa4\xfa\x8b\x96\x80\x50\xbb\x91\xf3\x84\x23\x89\x93\xa0\xa3\x31\xe1\x74\x81\x18\x71\x90\xce\x8e\x1d\x22\x30\x89\xa9\x68\x2d\x58\x7c\x25\xae\x9b\xde\xcf\xf1\x2f\xd4\xfd\x39\x6e\x36\xb1\x18\xc5\xe3\x16\xfb\x72\x93\x70\x91\xa2\xbc\xdd\xbc\xb5\x84\x2a\x4c\xca\x9a\xa8\x16\xd2\xfb\x38\x79\x9a\xc4\xf3\x45\x34\x15\x41\x5e\xbd\x50\x3d\x19\x93\x68\x4f\xa2\x11\xd7\xa2\xb8\x26\xb0\x68\x5d\x87\xe9\xdb\xdb\xf8\x1d\x4f\x6e\x18\x17\x77\x28\xc6\xf5\x3a\xaf\x8a\x44\x11\x95\x68\x10\x36\x8a\xc6\x94\xa9\xaf\x78\x4c\xf9\x28\x1e\xe3\x35\x59\x86\x9f\xd8\x09\x9b\x87\xab\x85\x78\x06\xd8\xe4\xb3\x24\xa6\x02\x61\x12\x51\x24\x7f\x5c\x0c\x71\x09\x1d\x39\xba\xd9\x0e\x71\x34\xfa\x0e\x71\x54\x7b\x9c\x71\x31\x01\x42\xc4\x88\x20\x9c\xc4\xf8\x5e\x5c\x47\x69\x6b\xb5\x8a\x66\x34\x6a\x34\x08\x84\xa2\x19\x65\xea\x6b\xc6\x6e\x52\xba\x6f\xfa\x4e\x36\x41\x7d\x0d\x92\x40\xa8\x1c\x0a\x36\xbd\xd7\xb5\x05\xf7\xeb\xb5\x4a\x98\x86\x8b\xc5\x65\x38\xfd\x44\xb9\x0a\x5f\x87\xa9\x6a\x42\xfa\x24\x3d\x61\x37\x74\xdf\xd3\x95\xa5\x4f\x16\x51\x98\xd2\x58\x05\x39\x8b\xe6\x11\x9b\xd1\x98\xdd\xd6\x9e\x70\x1e\xde\x21\x53\x3b\x56\x19\x52\x11\x0a\x46\x9d\x98\xdd\x3a\xeb\xbc\x3d\x29\xc2\xf7\x45\x68\x25\x27\x45\xde\x92\x22\x7e\xa1\x5a\x5d\x4c\x98\x88\xc6\x23\x36\xce\xb2\x78\xc4\x1a\xce\x41\x14\xcf\xd8\x17\x67\xfc\x73\x54\xaf\x47\x06\xad\x9f\xb1\xcc\x13\xb5\xa2\x19\x64\x93\x1f\x45\x4e\x33\x63\xa2\x2c\x2b\xa6\x23\x11\xb2\x6e\x9e\xdc\xd6\x64\x13\x9e\x71\x9e\x70\xe4\x3c\x4d\x56\x8b\x59\x2d\x4e\x44\x6d\x1e\xc5\xb3\x9a\xea\xb4\xda\x7f\x39\x0d\xd6\x70\xfe\xab\x16\x2d\x65\xbf\xb0\x59\x6d\xce\x93\xa5\x8c\x15\x0d\xe7\xbf\x1c\xbc\x06\x60\x84\xd7\xeb\xce\x0d\x8b\x67\x51\x7c\xe5\xec\x53\x1a\xa9\x1e\xa8\xd7\x9d\x79\x14\x87\x8b\xe8\x2b\x9b\x95\xa2\x51\xd4\x92\x75\x9c\xb0\x9b\x14\x71\x4c\x78\xeb\x66\x95\x5e\xa3\x08\x63\x12\x15\x3d\x31\x55\x78\x46\x73\xe4\xb4\x64\x69\xd6\x9a\x5e\x87\xfc\x89\x40\x2e\xc6\x66\xf9\xef\x99\x5e\xe2\x94\xb5\xd2\x9b\x45\x24\x90\x73\xe0\xa8\xb5\x54\x04\x5b\xe9\x22\x9a\x32\xe4\x92\xa6\x27\xa7\xa3\x4b\x12\x6a\x26\xc9\xcf\xd1\x71\xf2\x73\xd4\x68\xa8\x15\x12\x52\x3e\x8a\xc6\x7b\x50\x65\xcb\xa1\x94\x86\x50\xbf\x4b\x29\x8d\xcd\x08\x6f\xf7\x5b\x18\xcb\x4e\x0b\xa7\x53\x96\xa6\xb5\x9b\x90\xb3\x58\x98\xde\x4b\xe6\x35\x9e\x24\xc2\xc1\x7b\x71\xeb\x26\xb9\x41\x78\xcd\x16\x29\xd3\x6d\x02\xf8\xd3\x24\x16\x51\xbc\x62\x32\x83\xec\x84\x10\xaf\xd7\xba\x75\x71\xeb\xcf\x24\x8a\xa1\x05\x45\xaf\xcc\xe5\xbc\x51\x19\xf6\xd1\xbe\x9c\x1a\xf5\xfa\x7e\x69\x6e\xe0\x75\xd8\xba\xe1\x89\x48\xc4\xdd\x0d\x6b\x6d\xad\xce\x82\x2a\x19\xfa\x6a\xad\x11\x43\x4f\xf6\x24\x95\xa5\x94\xb2\x2c\x73\x12\x20\xbf\xce\x3e\x95\xf0\x92\x79\x0d\x86\x55\xc3\xb0\x62\xb3\x4c\xd1\x61\x18\xa9\x99\xaa\x31\xcb\xf6\x35\xf1\x8e\xd2\x67\x5f\x04\x8b\xd3\xe8\x72\xc1\x10\xc3\x59\x86\xf2\x4c\x94\xe1\x35\xb1\x51\xd6\x38\xd8\x88\xca\x0e\x2b\xa6\x12\xa5\xb4\x58\x66\x59\xe6\xc8\xf5\x78\x27\xa7\x5e\x29\xc1\x4c\x92\xaa\xe6\x29\x6a\xd9\xba\xe5\xe1\x8d\xa2\xd5\x69\xbd\x8e\xca\x24\x61\x3b\x0b\xd2\xcb\xb5\x4c\x3b\x30\x2e\x88\xc2\x1d\x52\x44\x4e\xf7\xa9\xc9\xd2\x0a\x6f\x6e\x16\x77\x50\xbc\x44\x40\x72\x72\x6e\x47\xea\x79\x46\xdd\x12\x29\x29\x1a\x5f\x49\xa9\xea\x75\xd5\xf9\x6a\xc8\x50\x45\x93\x29\xc3\x7a\x8f\xd8\x9e\x12\xf5\xba\x2a\xb0\x19\x8f\x30\xa9\x80\x54\x1e\xac\x55\x9c\x32\x66\x0f\xd5\x26\x01\xdc\x49\x82\xcb\x70\xa0\xfb\x36\x87\x5c\x77\x89\x5c\xfd\xd6\xb8\x96\xaa\xc8\xc7\x7e\x4f\xf0\xbb\xfb\x12\x79\x86\xc0\x44\x8f\x0b\xd9\x2c\x24\xe1\xae\xa1\x5b\x17\x77\xf7\x3b\xa6\x90\x99\x14\xba\x18\x93\x0b\x9e\xcd\x1c\xbc\x89\xfc\x64\x0b\x7b\x43\x97\xf4\x4c\x30\x63\xab\x08\x11\x26\x82\xba\x3f\x8b\x63\x66\x88\x90\x30\x04\x88\x53\x36\x12\xe3\x3d\xf9\x87\x72\xd3\xe1\x83\xfc\x2b\xd8\xdc\xf7\x11\x36\xc4\x82\x95\x31\x32\xe4\xb5\xc4\x83\xc8\x2e\x95\x43\x42\x77\x77\xa7\x21\xe2\x7b\x05\xbf\x92\x6f\xb2\x84\x53\xf7\x67\x7e\x6c\xf6\xba\x9f\xb9\xc1\x3a\xa6\x62\xc4\xc7\x24\x2a\xb5\x75\xc4\xc7\xc5\x70\x6b\x16\x4d\x21\xaf\x43\xeb\xbd\x7c\xfb\x97\xf4\x75\x80\xaa\xb7\x60\x97\x44\xf9\x1c\xae\x98\x8d\x38\xc8\xd9\x09\x80\xb2\x99\x39\xfc\xc4\xfe\x50\xe9\x08\x07\x86\xcb\xa8\xcc\xa9\x70\x8b\xcc\x54\x5d\xa0\x29\x8a\x0d\xaf\x81\xcd\x07\x61\x5b\x83\x6f\x55\xb1\x83\xb6\x4a\x92\x41\x6d\x6e\xcc\x70\x71\x1a\xb1\x29\x12\x84\x61\xbc\xce\xc9\x41\x4e\x1a\x05\x11\x1a\x9f\x57\xc0\xef\xc8\xee\xa9\x82\x34\xcf\x61\x10\xb1\x26\x48\x31\xb8\xd4\xde\xf0\x25\x4b\x51\xb0\x13\x7b\x51\xbd\x0e\x53\xa1\xd8\x95\xb3\x0c\x85\xfc\x6a\xb5\x64\xb1\x48\xf5\x08\x1f\xfb\xf5\xba\x3d\x7f\xb6\xb6\xbe\x30\xae\xad\xe2\x74\x75\xa3\x59\x03\xbd\xe9\xdd\x86\x69\x4d\x61\x30\x23\x35\xf6\xe5\x86\x4d\x65\xe2\x7f\xa9\x28\x14\xcd\x48\x0d\x66\x93\xce\x8e\xff\xab\x16\xc5\xa9\x60\xe1\xac\x76\x95\x88\x20\x67\x38\x72\x64\x6a\x22\xd1\xe0\x80\xdf\xd8\x44\x12\x13\x60\xc1\x24\x33\xa4\x58\x31\xb9\xb9\x70\xd9\x73\x74\x34\xc6\x44\xb6\x96\x72\xa8\x22\x8c\xa7\x72\xa7\x5a\x0d\x64\x0b\x42\xc4\x61\x5c\x08\x27\xfb\x2e\x0e\x54\x94\x62\x38\xf7\x3d\x8c\xd7\x78\x7b\x1b\x02\x76\x44\xad\x52\xd5\x87\x73\xb4\xcf\xb3\xcc\x2c\x29\x5e\xda\x76\x10\xa7\x06\xe6\x68\x4c\x52\x02\xc7\x16\xbc\x49\x94\x05\xe1\x15\x14\x5e\xe1\x4c\xf8\x5a\x1f\x58\x5a\x21\x70\x9f\x65\x44\xf4\xc8\xfb\x92\x8b\xd8\xe8\x92\x81\xee\x6a\x41\x24\x0a\x92\xd3\x54\x0d\x94\x5f\xeb\xe2\x28\xd3\x62\xb1\xe0\x11\xcb\x4f\x2f\x7f\xa6\xad\x09\x0b\x3f\x4d\x52\xc6\x62\x1a\x5b\xf9\x60\xd2\x59\xe1\x0d\x9a\xcf\xf0\xbd\x3a\xce\x40\x3c\x76\x64\x07\xaa\x3c\xa8\x54\xdd\x74\xc1\x42\x6e\x2f\x91\xef\xc4\x04\x4e\x11\x42\xc2\xd2\xed\x72\xe6\x49\xe2\x10\x0b\xd0\x1a\xdb\x49\x07\x97\x21\x77\x64\xaf\xef\xce\x11\xa6\xb3\xb9\x43\x46\x86\x1e\xd8\x07\x11\x43\x4d\xac\xe2\x7a\xf9\xc0\xd9\xa8\xa8\x41\x9e\x96\xac\xd0\x16\x0e\x5f\x01\x07\x7b\x04\x15\xe2\xb8\x9c\xf1\xaf\xd5\x57\xe7\xa1\x5c\x76\x24\xd1\x25\xbe\x38\x55\x0d\xd6\x59\x5a\x0a\xa4\xd3\x52\x38\x38\x2d\xdd\x5a\x88\xe0\xf2\xb7\x75\x20\x73\x3e\xd4\x3f\xcb\x30\x8a\x35\x44\x28\x54\x9d\x37\xdf\x85\x20\x5f\xde\x85\x32\x83\x21\x6d\xa5\x94\x8d\x68\xa8\x24\x8f\xd3\x33\xa6\xe8\xd0\xcd\x99\x83\x30\x31\xbc\x28\xcd\xb9\x4e\x05\xb9\x5e\xdf\x4a\x51\x23\x5b\xaf\x97\x17\x5c\xbd\x8e\x36\x56\xe0\xfd\xe6\x49\xbf\x24\x23\x58\xe3\x35\x6c\x4b\x98\x38\xab\x58\xd3\xb4\xa2\x8e\xe7\x61\x2a\x7e\x4d\x12\x61\x53\x49\xb9\x34\x1f\x40\xb3\x80\xb2\x5f\xc6\x74\xb0\x49\x19\xe4\x76\x95\xb3\xd9\x39\x24\x55\xba\x5e\x37\x73\x63\x39\xcb\x17\x3b\x0e\x58\x6b\x99\x48\x3a\x20\x0b\x2b\xbc\xed\x61\x2b\x89\x59\x60\x77\x22\xa2\x38\x6d\x73\x94\x93\x14\xa6\xf9\x55\x49\xb2\x48\x4e\x5b\xac\x33\x48\x5c\x9c\x41\x6a\xcc\x26\xad\x40\x81\xb3\xcc\x19\xa9\x0e\x50\xe1\xb1\x24\x8e\xfa\x18\x50\xec\x9a\x22\x39\x15\x3c\x8a\xaf\x80\x49\x96\x74\x29\x87\x1e\x59\xd0\x25\x0a\xfb\x54\x9e\x38\x0c\x48\x05\xe8\x47\x61\x26\x16\xcc\x82\x53\x5e\xdb\xb2\x06\x93\xee\xc4\xab\xe5\x25\xe3\xd6\xe0\x59\x0d\x7a\x03\x69\x3f\x5a\x7b\xba\xab\xbf\x4e\xd4\xf9\xc5\x40\x97\xc1\x1f\x85\xbd\xb2\xb6\x25\x12\xd3\xd1\x18\x38\x37\xc5\xa9\xe5\xfc\x65\xa3\xc1\xb1\x3e\x5f\x0a\xc4\x24\xaf\xc6\x71\x7e\xf8\x88\x37\x84\x0f\x39\xaa\x5b\x58\x94\x45\x43\x1a\x17\x22\xf0\xd6\x99\x3d\x3f\x95\x2b\x49\xd3\x02\x49\xfa\x59\xaf\x43\xd5\xc0\x2b\xe6\x95\xcb\x24\xc7\xb4\xce\x81\x3c\x79\x63\xa9\xc8\x3f\x31\x81\x8c\x9f\xc3\xc5\x8a\xbd\x9d\xeb\x7c\x3a\x44\x85\xf9\xc2\x84\x95\x0e\xca\x46\x7c\xa4\xeb\x7a\x22\x4c\x94\xdc\xf2\x5b\x2b\x31\x45\x16\xea\xd7\x1b\xd3\x4e\x1e\x63\x27\x37\x73\xa8\x69\x72\x33\xa7\xf7\x6c\x79\x23\xee\x82\x7d\x8f\xac\xe2\x55\xca\x66\x67\xc9\x27\x16\xa7\xc1\x68\xac\xc3\xaf\xe2\x9b\x95\x90\xc1\xe4\x33\xe3\xf3\x45\x72\x1b\x34\x7d\x32\xbd\x0e\x79\xfa\x9a\xcd\xc5\xdb\xcf\x8c\x07\x2e\x70\x01\x2a\xe3\xbe\x47\xa2\xf8\x73\xb8\x88\x66\xc3\x24\x16\xd7\x01\x2c\x36\x1d\xf3\x3c\xe1\xcb\x10\xb2\xac\x52\xc6\x5f\xa9\xc8\x50\xb0\x19\x94\x4a\x13\xf9\x73\x13\xf2\x94\xcd\xe4\x8c\x79\x17\x4a\x0e\x7b\x34\x26\x4b\xc6\xa3\x59\xc4\x96\x0a\x16\x9f\x4f\xfd\x43\xdf\x97\x79\x6f\x19\xfb\x34\x0b\xef\x86\x51\xba\x0c\xc5\xf4\x3a\xd8\xf7\xd6\x98\x40\xab\x8a\xe6\xcf\xf4\x01\x21\x6f\x7a\x94\xfe\x43\x56\x6b\x38\x1e\xd9\x3d\x20\x56\x81\x51\xe7\xad\x8d\xfa\x89\xcd\x0d\x94\x17\xef\x1a\x93\x88\xee\x47\xe9\x9b\xf0\x8d\xec\xca\x59\xeb\x8a\x89\xb3\x68\xc9\x10\x06\x79\xa3\xe9\xae\x63\xb7\x5e\xdf\xe7\x2d\xe8\x65\xf8\xb2\xbb\xc7\x8e\x38\x57\xad\x81\xa8\x8d\x96\x41\x5c\xde\xc7\x76\x21\xd5\xa5\x10\xb3\xd1\xa7\xf5\x3a\xda\xe7\x2d\xd3\x77\x59\x56\x7c\xd7\xeb\x31\x96\x4c\x1e\x6b\x4d\x14\xd9\x04\x49\x68\x54\xaf\xbb\xc0\xed\x95\xc6\xd6\x44\xda\x73\x23\x97\x48\xe6\x14\x87\xb7\x2e\xa3\xab\x97\xc9\x8a\x63\xa2\x3a\x27\x97\x8e\x3c\xe7\xc9\x57\x16\xd7\xeb\x1b\x11\x92\x75\x33\x02\xbc\xbd\x62\x50\x68\xb4\x2e\x04\xe0\x3a\xae\x18\xca\x1b\x39\x06\xea\xec\x36\x47\x6f\xc2\x37\xc5\x4a\x57\x03\x32\x98\xa2\x6b\x24\x30\x61\x38\x90\xbf\x9b\x1d\x22\x8f\x5c\x62\x2d\xa8\x62\xab\x8b\xd5\x9f\x26\x4b\x36\xa8\x8a\x0c\xaa\xe5\xdc\xaa\x29\x7a\xfb\xe4\xb9\x70\xfb\x97\x5f\x7e\x71\x49\x4c\xdd\x9f\xe3\x63\xfe\x73\xdc\x68\x60\x39\xe9\x80\x4e\xd4\xeb\x4c\xcd\x2e\x25\x28\x19\xc5\x63\x12\x13\x61\x3a\x60\xdf\xd5\xcd\xd8\xf7\x94\x74\x79\x49\xb9\xde\xef\x34\x45\x92\x0c\xe4\xc8\x12\x20\x7f\x2e\x91\x46\x12\xc9\xb1\x4c\x90\x90\x3d\xf6\x64\x08\x05\x15\x8a\x4a\x1a\xb5\x19\x4b\x2b\x32\x12\x55\xdc\x14\x80\x2c\x3a\x72\xae\x23\x25\x39\x9a\xcc\x75\xe4\x42\x47\x2e\x28\x04\x54\xa4\x9a\x4b\x3a\x45\x05\x68\x11\xad\xf2\x88\xaf\x4b\x9d\x41\x7c\x5d\x52\x1d\xa1\x6b\x4f\xdf\x9f\x3d\xcd\x51\x7e\x7f\xf6\x94\xe6\x91\x2a\x43\x32\x9f\xa7\xcc\xc0\x57\x01\x5a\x44\xab\x3c\x37\x06\xdd\x9b\x39\x95\x73\xc0\xe0\x9b\x4c\xc3\x05\x33\x48\x43\x80\x16\xd1\xc4\x3d\x5e\x9a\x43\x57\xb1\xc9\x2c\x6d\x71\x40\xa2\xae\x0a\xe8\x72\xc4\xc7\x63\x80\x33\x8a\xc7\x34\x2a\xee\x6b\xe0\x5e\xe6\x8e\xee\x7b\xc5\x30\x5d\xc1\x74\x55\x83\xce\xf4\x41\x7b\xa2\x84\xeb\x27\xe6\xc2\x67\x5f\x52\xa4\xd9\xa0\x4c\x3e\x02\x39\xb7\x8d\x80\x1e\xd6\x00\xc2\x46\xf8\x65\x03\x90\xd9\x30\xd9\xf7\x28\xa5\x77\xf5\x3a\xba\x93\x13\x9c\xb7\x56\x37\x72\xb6\xbf\x85\x5e\xd1\x93\x54\xe2\x65\xed\x08\x97\xbb\xb6\xed\xab\x2c\xcb\x19\x93\x1c\xbb\x8d\xb9\x52\x80\x99\xd8\x60\x8e\xdd\xc1\x30\x14\xd7\xad\x29\x8b\x16\x20\x07\x75\x03\x08\xcf\x17\x49\xc2\x4b\x1b\xfb\x6d\xb1\x8a\x1b\x8c\x70\x6a\xa6\x3f\x48\x58\x45\xbd\x1e\xa5\xcf\xa3\x38\x12\x92\xf1\xab\xd7\x11\xa7\x13\x18\x46\x5e\x00\x78\x66\x1f\xfb\x63\x12\x51\xa8\x68\x19\xc5\xc8\xf0\x05\xa4\xb8\xb6\x48\x54\x6a\x78\x99\xe6\xa9\xcd\x22\x35\xa4\xae\xba\x39\x82\x65\x1b\xc1\xb2\x45\xbc\x5e\x97\xa3\x2b\xb1\x19\xc5\xe3\x2c\xdb\xe7\xf5\xfa\x2d\x0c\x38\xde\xa7\xf4\x16\xc9\x58\x49\xe2\xc3\x46\xc3\xa0\x1e\x36\x92\x02\xbf\x2f\xb2\x81\x30\x2a\xbc\x95\xae\x6e\x6e\x38\x4b\xd3\x13\x76\xc3\xd9\x34\x94\xe9\xe7\x21\x8f\xa3\xf8\x6a\x07\xd3\x3c\x4d\xe2\x34\x91\xfc\xbd\xfe\x68\xdd\x86\x3c\x2e\x87\x90\x63\x41\xab\xdd\x2a\x70\x41\xcd\x69\xd8\xbd\x7c\x5a\xd0\x88\x98\xe6\x24\xa6\x36\x45\x65\x49\xa4\x1a\x65\xde\x9a\x15\x10\x5f\x86\xf1\x6c\x21\x09\x7f\x55\xac\xe2\x9d\xe5\x8e\x69\x5d\xe4\x90\x84\x8e\xc6\xb2\x2f\x7f\x0e\x8f\x37\x8f\xec\x3f\x87\x8d\x06\xd4\x14\x51\xc7\xd9\x3e\xe7\xe4\xd9\x47\xe1\xb8\x80\x98\x4a\xb2\x19\x35\xa8\x73\x11\x8f\x9c\x46\xd8\x70\xc6\x35\xa7\x60\xd8\x47\xee\x18\x47\x0d\x9a\x36\x1c\xd9\x68\x3b\x7a\x94\x8e\x1b\x0e\xa9\x39\x7b\x11\x8d\x8a\xbb\x11\x5f\x5d\x4e\xd4\x22\x6a\xd7\xb6\x97\x98\xcb\x99\xf5\x17\xc4\x1a\xce\x45\xfc\xc4\xa4\x4a\xb0\x5b\xfb\x81\x84\xa6\xa8\x78\x82\xf5\xfd\x85\x83\x65\x31\xa7\x81\x72\xc9\x11\x6e\xa5\x22\x9c\x7e\x92\x0c\xc5\xbe\xb7\xce\xa5\x5e\x96\x98\xdc\x3a\x76\x48\x06\x53\xb6\xf6\x2d\x79\x42\xef\xd7\x05\xdd\xf8\xa4\x86\xee\x87\x87\x06\x2e\xac\x9e\xc0\x9d\x1a\xfa\x82\xf4\x37\xdd\x77\xad\x59\x71\xb6\x6b\xe5\x3f\xd7\x39\x2c\xa6\xdd\x44\xfd\x28\xe3\xfe\xb4\xcc\xb8\x4f\xd1\xfd\x9a\x30\xac\xb8\xf7\x0d\xb6\x39\x02\xc6\x19\xd7\xeb\x11\x02\xe6\x79\x80\x62\x90\xae\xae\xc9\x14\xbe\x08\x24\x9b\x00\x64\xc1\x81\xea\x17\x19\x18\xc4\x86\xed\x0e\xf4\x1d\x79\x0c\x2c\x78\x5e\x15\xc3\x92\x8f\x97\x55\xed\x9b\x3a\xf3\x2a\x55\x55\x80\x1d\x94\xaa\x3a\x36\x0c\x65\x77\xe5\x14\x51\x89\x93\x99\x90\xad\x7d\x70\x65\xd3\x7d\x8f\x54\x8d\x10\x85\xc5\xf3\xd6\x74\xe6\x27\x76\x97\x0e\xac\xef\x12\xbb\x01\x04\x92\x70\x73\xee\x11\x45\x73\x04\x70\x97\xea\xcc\x53\xdc\x9b\x2b\xd6\xe1\x8f\xd2\x44\x7a\x67\x4b\xf6\xe4\x90\xbd\x4e\x6e\x19\x7f\x1a\xa6\x0c\xe1\xbd\x3f\x64\xf3\xff\x18\xf1\x86\x93\x3a\xf2\x43\x8c\xed\x73\xe3\x9f\xd6\xb9\x31\x55\x67\x98\xe2\xdc\x38\xf8\x03\x26\xd9\x1f\xa3\x0d\x98\x63\x23\x00\xcf\xc1\x9c\x58\x4d\x21\x31\x20\xb7\x3d\x36\x48\xd0\x3f\x11\xc7\x6a\x4c\x24\x1a\xf6\x39\x2a\x86\x25\xf2\xa6\xd4\xae\x57\xaa\x5d\x6f\xe4\xf4\xb6\xf6\xa3\xd7\xa5\x7d\x81\x3a\x4e\xa3\x20\xfd\x92\x55\x17\x4d\x73\xd7\xa9\x81\x23\xf7\x98\xb2\x01\x1f\x38\x0d\x27\x70\x9c\xc0\x69\x3a\x58\x15\xb9\x49\x6e\x91\xe7\x12\xb5\xaf\x84\x5f\x90\x4b\x22\x8c\xf3\x29\x8f\x70\x2b\x5d\x5d\xa6\x82\x23\x0f\x37\x14\x7e\xcf\xe9\x01\xba\x18\x8d\xfe\x75\x31\x1a\x3f\xbe\x18\xe3\x0c\x5d\x5c\xe0\x01\x1a\xbd\xbc\x1e\x2f\x97\x28\x4d\xf1\x20\x1b\x26\xd9\x70\x38\x90\xff\xb3\x93\x24\x3b\x39\x81\x3f\x03\xf9\x3f\x9b\xcd\x66\x83\xd9\x20\x9b\x25\x83\xec\x76\x94\x64\xb7\xe3\x41\x76\x3e\x4a\xb2\xf3\xf1\x20\xfb\x3d\x19\x64\x1f\xe0\x5f\x56\xfc\xcd\x3e\x7c\xc8\xae\xae\xd0\xd5\xd5\xd5\x00\x0f\xb2\x17\x2f\xd0\x8b\x17\x2f\xe4\x17\xcb\x9e\x65\x61\xf6\x24\xbb\xbe\x1e\x64\x2f\x5f\x0e\xb2\x4f\x9f\x06\xd9\x72\x39\xc8\xd2\x74\x90\x9d\xde\x7b\xe4\x68\x9d\x7d\xc9\xfe\x99\x7d\xfd\x3a\xc8\x3e\x7e\x1c\x64\x2d\x7c\x70\x45\xbe\x56\x22\xfe\xfa\xec\x34\x7b\x7d\x96\xbd\x7e\x3d\x90\xff\xb3\xc5\xbd\x47\x3a\x6b\x99\xfd\xa5\x5c\x9b\xbf\x96\x06\xe3\x7d\x71\x1c\xd5\x62\xf8\xbd\xad\x19\x13\xc3\x01\xa3\x24\x20\xcd\xaf\x07\x47\xf1\x18\x61\x79\x6c\xab\xd7\xd1\xaf\x72\x44\x23\x4c\x04\x7c\x8b\x91\x3b\x1e\x57\x94\x7a\x8d\xa2\x6a\x8a\x4a\xc4\xc8\x93\x64\xc2\x1f\x4b\x80\x1c\x80\xf0\x2a\x08\xb0\x92\x15\xf3\x77\x12\x8a\x10\xe1\x56\xc2\x67\x51\x1c\x2e\x76\x42\x66\x78\x6d\x91\xb8\xf3\x92\x38\x81\x15\x5c\xda\x00\x09\xfa\x17\x12\x84\x95\xa0\x63\xf2\x52\xce\x6b\xf9\xc7\x56\x56\xb0\x56\x06\x89\x28\x6b\xc1\x49\x0f\x3d\x57\xf4\x4b\x50\x97\x70\x1a\xe5\x17\x69\xc7\x1c\x2e\xd3\x7e\x1d\x45\x23\x31\x1e\x0f\xe4\x5f\xaa\x03\x01\x04\x50\x4c\xe5\x2f\xd6\x60\x0e\x2e\x46\xa3\x8b\xf4\xe2\x74\x7c\x80\x07\x71\x8b\xb3\x9b\x45\x38\x65\xe8\xe0\x5f\x17\xa3\xec\x62\xfc\xd3\xc1\x15\x71\x1c\x1c\x58\x09\x17\x17\x2a\xce\xac\xbb\x6d\x1d\x9b\x84\x3a\x8e\xc5\x2c\xa9\x33\x4e\xd2\xa0\x67\x28\x92\x0c\xd1\x40\xfe\xd5\xc7\x1c\x79\x02\x93\x41\x03\x2c\x59\xaf\xe5\x7e\x24\x3b\x00\x64\xf6\xe5\xee\x31\x47\x59\xe0\x69\xad\x5e\xfe\xcb\x26\x5f\xdd\xbd\x4a\x29\x9d\x68\x2d\x92\xf8\x4a\x96\x54\x07\x61\x60\x3d\xd9\x5a\xa2\xf9\xb5\xb5\x08\x53\xf1\x2a\x9e\xb1\x2f\xd4\xfd\xd9\x3d\xa6\xbc\x5e\xff\xda\x12\x2c\x95\x99\x7e\xc6\x8c\xb2\xbc\xf5\x5f\x49\x8c\x49\x29\x3f\xe1\x4d\xea\x95\x99\xfb\x7f\xd0\x83\x8b\xd9\x01\xf9\x20\x7f\xe4\xc7\x0b\xf9\x71\xdf\x5e\x1f\x90\xbf\xc3\x57\x67\x7d\x40\x7e\xa2\x07\xa3\x46\x73\x3c\xb8\x98\xdd\xf7\xd6\x07\xe4\x77\x95\x77\x70\x40\xfe\xa9\xbe\x74\xe8\x63\x11\xd2\x31\xbf\x01\x08\x8f\x48\x70\x8c\xe9\x80\x84\x28\x58\x01\xd2\x23\x12\x28\x87\xe4\xc6\x01\x89\x8b\xa4\xc6\x01\x89\x18\x3d\xf8\x98\xc9\xb0\x04\x19\x0c\x00\xc9\xab\x88\x24\xa5\x78\x34\x08\x54\x12\x1e\xc8\xc4\x50\x82\x70\x9b\x47\xe3\x7b\x97\xf8\xdd\xde\x7a\xf4\xb7\xb0\xf9\xf5\x62\xe5\xba\x4f\xdc\xe6\xc5\xca\xed\x3e\x7f\x7e\xb1\x72\xfb\xae\x0c\x9c\xf4\x65\xe0\xf9\x11\x04\x9e\x9f\x3c\x95\x81\x93\xe7\x10\x78\xee\xf6\xe5\x5f\x4f\x05\x9e\x3d\x1f\xdf\x7b\x00\x2d\x1b\x5d\xac\xdc\x1e\x14\x70\x7b\xcf\x9f\x5f\x1c\x98\x04\x74\x91\x3e\x1e\x94\x13\x4d\x12\x96\xbf\xeb\x83\x88\xa4\xac\x44\x66\x56\xcc\x50\xf7\x94\x49\x2a\x71\x86\x04\x1e\x58\xaa\x60\xcc\x92\x87\xb1\x7a\x9d\x0f\x78\x20\xd6\x96\x00\x90\x95\x96\xec\x02\xa5\x8c\x30\x3c\x00\x58\xc5\xd9\x95\x14\x67\x42\xb8\x57\xfa\x83\x5d\x3d\xfb\x72\x83\xa6\x0c\x15\x73\xc5\xb9\xb8\x70\xe4\x42\xb1\x97\x0e\xba\x18\xe1\x4c\xfe\x8c\x71\x76\x31\x42\xa3\x7f\x5d\x8c\x25\x41\xc5\x17\x63\x19\x0b\x84\xb6\x7c\xe7\x22\x57\x7c\x31\x87\xb3\x8c\x67\x59\x9c\x65\xd1\x1a\x63\x5b\xe6\xc8\x6c\x6e\xad\xa8\x6f\xd4\xbc\x38\xb8\xb8\xf8\xd7\x4f\x8f\x1b\x83\x16\xc2\xd9\xe8\x62\x7c\xbf\x1e\xcb\xd5\x7b\x71\xf1\x53\xdd\x51\x3c\xe5\xbc\xdc\x7b\xd7\xac\xcc\x94\x09\x58\xc8\xdb\x3b\x7b\xbd\x8e\x18\x1d\xb1\x31\x26\xa1\x3a\x7e\xc5\xf6\xe5\x1c\xc7\xf7\x5c\x92\x1a\x79\x82\x93\x04\xb6\x2c\x8b\x95\xc7\xe4\x39\x1b\xc9\xdd\x7b\x4c\x2d\x26\x6a\xa6\xeb\x06\x1c\x6c\x68\xaa\x13\xe2\xd6\xe4\x96\xca\x3f\x59\x76\xbf\x26\x42\x0e\x64\x6b\x72\x0b\x69\x6b\xd5\x96\x1b\x46\x5d\xb2\x64\xd4\x23\x9f\x19\xf5\xc9\x1d\xa3\x6d\x72\xc5\x68\x87\x5c\x32\xda\x25\x13\x46\x7b\xe4\x96\xd1\x3e\x79\xc6\xe8\x61\xd1\xe4\x2f\x76\xef\x9d\xca\xc0\xa0\xdd\xeb\x05\xed\x5e\xd7\x3a\x24\x95\x7a\xf8\x51\x87\x52\xb7\x5e\x67\x8f\x3c\xd7\xdd\xa7\x6e\x96\xb1\x47\x1d\xd7\xa5\xd4\x5d\xbf\x47\xce\x07\x87\xb8\xc4\x25\xd5\xf7\xe0\x77\x70\x8b\x93\x93\x8b\x63\x7a\x74\x74\x74\x34\x70\x9c\x06\x0b\x9c\x86\xd3\x60\x6b\x4c\xde\x23\x97\x8c\x9c\x0f\x1f\x1c\xe2\x8f\xcb\x70\xec\x3d\x49\x01\x92\x08\x58\x45\x64\xa1\x8e\x2c\xe4\xc8\x64\xc7\x4e\xf8\xe0\x90\xee\x8e\x94\x0f\x0e\xe9\x91\x7d\xd7\x4e\x7d\x87\xd4\x17\x71\xee\x1c\x4c\x5e\x99\x90\x87\xc9\x8a\x41\x0b\x63\xa6\x3f\x3f\x38\xe4\x77\xf2\xc1\x04\x64\x90\x31\xf2\xf7\x22\xfc\xc1\x21\x82\x91\x9f\xac\x88\x3c\xe6\x9a\xa1\x1c\x37\x93\x34\x26\x37\x0c\x52\x34\xb0\x0d\x85\xbd\xd1\x0d\x1b\x53\x9f\x52\x6a\xe6\xd2\x40\x8b\x61\xcf\x6e\x93\x93\xe8\x2a\x12\x1f\x64\xb7\x30\x1c\xe8\x89\x77\xad\x51\xac\x02\x53\x5d\xd2\x14\xaa\x2e\x03\x25\x5e\xc5\x72\xee\x79\x2e\xcc\xec\x6d\x20\xb4\x42\x0e\x2c\xd1\x69\xa0\xde\xe1\xb1\xfc\x18\x78\x47\xae\x1b\xf8\xac\x8d\x15\x2b\xfe\x96\x91\x27\x8c\x7e\x62\xc8\x79\xbe\x5a\x2c\x3e\x40\x4f\xef\xbb\xd8\x3a\xe6\x95\x49\x52\x0e\x3f\xde\x90\x33\xc7\x03\xf4\x94\x69\x29\x92\xdc\xa7\x2a\x24\x3c\xf2\xe0\x07\x92\x9e\xe0\xcc\xe4\xc4\x16\xf1\x3b\x63\x3b\xf9\x15\xd6\x9a\xcc\x46\xce\x15\x13\x4e\x23\x97\xbb\x0d\x9c\xf7\x67\x4f\x25\x47\x8c\x1b\x62\xac\xa4\x51\xd6\xe9\x2e\xa7\xc3\x16\x98\x7a\x5d\x8b\xc1\x81\x9d\x2f\x1a\x4c\x41\xa0\x23\x57\x99\x9e\xd9\xb8\x5e\xf7\x60\x9c\x97\x49\x2c\xae\x65\x41\xff\x08\xc2\x33\xd8\xfb\x35\x3a\xe9\x03\xe8\x70\x92\x17\x26\x43\x66\x07\x81\xaf\xf8\x66\x71\x9b\xc0\x0e\x59\xae\x89\xa9\xa5\xf8\x38\xcb\xd4\x57\x2e\x9d\xad\xbd\x09\xdf\xec\x29\x16\x04\x89\x47\x9e\xdf\xf0\x7c\xfc\xc8\xf3\xf3\xb5\xde\xa0\x48\x34\x39\x3e\xf0\x7c\x02\x12\x9f\x81\x22\x35\xfe\x51\xe0\x1f\x06\x6d\xaf\xc9\x1f\xf5\x1f\xf9\xeb\xb7\x6c\x4b\xea\x0c\x4a\x8d\x6f\xe7\x5b\x82\x67\x1d\xbf\x7d\x18\x34\x6c\xe1\xcf\xe2\x58\xf1\xaf\xe6\x0a\x4c\xe0\x68\x0e\xa3\x2e\x69\x33\xa5\x85\x7e\xa0\x46\xb2\xe9\xad\xc9\x7b\xe4\x0c\x1d\x32\x72\x86\x43\x20\x40\xce\xb0\xac\x67\x50\xd6\x28\x84\xee\x6c\x78\x40\x82\x9c\xa1\x2c\x52\x22\x7d\xec\x01\x3e\x1a\x0a\xa7\xa7\xd7\x09\x17\xf9\x44\x34\x60\x7e\x1c\x8e\x05\xe2\x1d\x72\x20\xce\x21\xce\x50\x11\x2f\x1d\x3c\x54\x44\x68\xe8\x90\xdf\xf5\xd7\xd0\x22\x5e\x50\x6b\xa5\x7e\x89\xb0\x71\xfd\x83\x5d\xb1\x2f\x8a\x4e\xe8\x52\xdf\x2a\x66\x95\x00\x8a\x37\x94\x88\x0d\x37\x94\x2b\x24\x81\x59\x32\xb5\x61\x36\xbd\x3c\xeb\x50\x65\xde\xca\x6e\x9f\xa2\xb8\xe1\x44\x74\x7d\xef\x24\x41\x92\x9b\x23\xe1\xb9\x48\x7d\x4f\x11\x88\x68\xa0\x6a\x89\x82\x6b\xc4\x71\xe9\x7a\x89\xb2\xb5\x52\xdc\xfc\x83\xd1\x83\x93\x51\x72\x32\x1e\xe8\xe3\xde\xc5\x58\x1e\xf8\xb2\x8b\x14\x37\x24\x26\x83\x03\xf2\x8e\x51\xe7\xb7\x30\x5e\x85\xfc\x6e\xf2\x9c\x5d\x72\xf8\x18\x86\x7c\x7a\x3d\x79\x72\xc3\xa3\xc5\x64\x18\xde\x4d\x7e\x5b\xc5\x6c\xf2\xdb\x6a\x71\x37\x79\xb2\xba\x5a\xa5\x62\x72\xca\x6e\x04\x5b\x5e\x32\x3e\x79\x3b\x15\x89\xfc\x7d\x93\x7c\x56\x11\x27\x6c\x0a\x1f\x8e\xd1\x58\x9e\x38\x98\xfc\xa9\x6a\x91\x35\x48\xe0\x12\xb4\x01\x2c\xe1\x4a\xb0\x12\xa6\x84\x26\x21\x49\x20\x76\xf9\x82\x7c\x9e\xd8\x2c\x0d\xa8\x2c\x59\x04\xa9\xd0\xa3\x8e\xe6\xdb\x6c\x0e\x2c\x98\x83\x7f\x5d\xcc\x1a\x3f\x1d\xa8\x03\x81\xc0\x58\xd0\x5b\x24\xf0\x9e\x92\x14\xce\xd1\x7e\x88\x04\x65\x55\x93\x52\x8d\x84\xc0\x56\x25\x46\x08\x63\x4b\xa2\x15\x45\x93\x34\xca\x10\x3f\x22\x30\xdc\x4e\x3e\x44\xa2\x1c\x18\x36\x67\x0c\xd2\x2a\xfb\xd6\xf7\x0d\xdb\xbe\x80\x1c\xa0\x93\x9c\xdc\x57\x6e\x0b\xfb\xee\xe6\xbe\xa0\xe1\x2b\xc6\xea\x15\xa3\x21\x23\xaf\xe5\xdf\xa2\x5f\x9f\x33\x84\xef\xf3\x10\xdb\x98\xfc\x5a\x82\x6e\x36\xea\x75\x21\xdb\x19\x8d\x49\x24\xff\x24\xb9\xc8\x0a\x48\x95\xe7\xc3\xb9\x95\xd3\x39\x1a\xf9\xac\x4d\xc4\x18\x13\x73\x63\x9f\x53\x1b\x4d\x30\xb8\xe4\xab\x31\x89\xb6\x92\x4d\x4a\xf2\x03\x29\x36\x48\x75\x6c\x6d\xa5\x32\x86\xc9\x0a\xcc\x57\x92\x7f\x95\xb0\x05\x31\xd4\x94\x81\x38\x0a\x93\x48\x87\xe0\x78\x6d\x35\xcd\xef\x40\xe6\x44\x27\x27\x90\xac\x2e\x69\x2c\x1a\x41\xad\x83\x84\xf3\x2f\xe4\x34\x12\x2d\x3d\xce\xe4\x70\x63\x87\x38\x91\x63\x2e\x87\x36\x29\x12\xdd\x82\x56\xce\x08\x64\xa0\xba\x96\xe8\xbb\x6a\x79\x08\x42\x5c\x01\xa1\x98\x8f\x5f\x59\xb1\x31\x45\x73\xc4\x8e\x3d\xd7\xad\xd7\xdd\x63\xca\xcc\x89\xfd\x01\x09\x7a\x21\x58\xd9\xe3\x23\x77\x4c\x59\xa3\xe3\xba\x44\x14\x37\x5b\xf2\x4f\xeb\xfd\xd9\x53\x5b\x61\x87\xcb\xa9\x91\xdf\x0d\xb5\xae\x98\x78\x7f\xf6\xd4\xb0\x1a\xc0\x5a\x88\x56\x5a\x8e\x64\x5a\xf2\xff\x0d\xc8\x05\x3a\x85\xe2\x7a\xd1\xd2\x97\xac\x2c\x57\xec\x37\x44\x93\x9b\xad\x15\xf5\x1b\xb2\x27\x88\x4b\x62\xac\x51\x3a\x09\xef\x10\x6e\x0a\xfc\xa8\xdf\x90\x5b\x6f\x0e\xe7\x57\x66\x9f\xfd\xc0\x64\x88\x84\x24\xa5\x5e\xa3\xff\x18\x89\xa6\x87\x1b\xa8\xdf\xe0\xcd\x58\x16\x7c\xa9\x48\x7d\x71\xbf\x18\xd2\xf4\x98\xba\x83\x2f\x0c\x25\x94\xc9\xbc\x69\x90\xfe\x02\x47\x9c\x81\x8c\x69\x78\x24\x6d\x42\x10\x07\x32\x4c\x52\x4c\xee\x25\xd5\x09\x12\x32\x0b\xef\xde\xce\x65\x77\x04\xa1\xc5\x13\xbe\x67\x1b\xb7\x68\x24\xa1\x2f\x6d\x5a\x25\xe9\x4f\x48\xad\x3b\x3c\xa0\x69\x1a\x14\xc2\xcd\xa4\xe9\xe1\x83\x3e\x6e\xe4\x52\x92\xf0\xd8\x1b\xc4\x34\x6c\x9c\x33\x14\x51\x03\xa7\xe9\x01\xa4\x20\xfc\xe5\x7c\x03\xf8\x00\xc5\x34\x6c\x6e\xc6\x92\xa2\x68\xc3\xc3\x81\x05\x89\xc4\x34\xc4\xe4\xfe\x96\xb1\x4f\x41\x4c\xa0\x6d\x91\xd5\x9e\xf3\x8d\x51\xca\x47\x8d\x44\xf0\xdd\x50\x88\x18\xc9\x2f\xf4\x55\x33\x6e\x44\xf8\xa0\x6f\x49\x9c\x36\x19\x65\x75\x87\x24\x48\x1f\xb7\xa6\x49\x3c\x0d\x05\x62\xf9\xbd\x92\xc0\x58\x1e\x0c\x6f\x25\x5b\x75\x7b\xab\xd8\xaa\xdb\xc4\x21\x8e\x44\x11\xce\x62\xce\xb9\x4c\x3b\x3f\x57\x69\xe7\x32\x2d\x4a\x93\x73\x95\xfc\x0e\xa9\x8c\xc4\xb9\x55\x21\x93\x44\x9c\x73\xc5\xe0\xa8\xe4\x2e\x7c\xe7\x89\x5d\xc5\xa1\xdc\xe6\xec\x8e\xac\x3a\x67\x77\xce\xf3\x68\x59\x2b\x44\xcf\x24\xcb\x71\x2b\xab\xb9\x05\xd0\x44\x26\x55\xf1\x1d\x62\x14\x1b\xb9\xb6\x4b\x3c\x9c\x1f\xf3\xdf\x23\x67\x26\x39\x37\x67\x26\x1b\x30\x0b\xef\x54\xdb\x66\xb3\x1f\x60\xe7\xb4\x3a\x4b\x3a\x8c\xe2\x32\x5b\x38\xfb\xb7\xc0\x54\xf0\x97\xb3\x7f\x0f\x52\x19\x08\x53\x10\x1c\x9d\xaa\x1a\xfa\x4c\x47\xea\x21\x50\xf1\xef\x10\xf4\x04\x71\x66\xc5\x50\xaa\x08\x56\x1a\x4d\x15\xf7\x4c\x0d\x28\x04\x3c\x2f\x1f\x5c\x3b\x6c\xe7\xf7\xf4\x89\x7c\x96\x8f\x26\xcb\xbf\x9e\xe5\x5f\xb2\xbd\x3b\x58\x54\xab\xbb\x37\x38\xdb\xd9\x77\x94\xaa\xe2\x88\x67\xdf\x53\xd0\x2a\x03\xb3\x4e\x16\x51\x35\xaa\xf2\xdf\xc3\xed\x1a\x58\x0f\xf3\xbb\xad\xd9\x06\xb7\xab\xfb\x0e\x94\xb2\x54\xdd\x30\x14\xb2\xeb\x77\xcc\x75\x33\xbf\x81\x3d\xfe\x07\xa3\xce\xe9\x2a\x9e\x85\x77\x93\x61\x02\x3f\x67\x2b\x96\xca\xdf\x73\x36\x8b\xd5\xd7\xd9\xf5\x8a\xc3\xc7\x73\x1e\xc9\x9f\xd3\x50\xac\xb8\x1c\x2f\x9b\xbd\xfd\xa0\x00\x49\x28\x12\x84\x2c\x2e\x0b\xca\x32\xb2\x40\x29\xef\x0b\xc8\x3b\x19\x26\x93\xb3\xd5\xe4\x9c\x4d\xce\xae\x27\xcf\xf9\xe4\x34\x2c\x65\xfa\x3b\xf0\x68\x3f\xc1\xdf\xdf\xcb\x9c\xda\x3f\xff\x3d\x4e\x4d\x92\x7a\x12\x4a\x56\x2d\x95\x7f\x56\xf2\xcf\xa2\xcc\xb4\xf5\xcb\x3c\x9b\x37\xc6\x92\xf4\x23\x65\xcb\x2b\xd7\x92\xbd\x9e\x81\xc5\x32\x36\x32\xe5\x15\xaa\x92\x92\x72\x92\x8e\x0d\x15\xc7\x16\x63\x92\x9a\x8b\x78\xb2\x52\x5f\x09\x26\x8b\x3c\x75\x91\xa7\x2e\x4c\x2a\x60\x1a\xe6\xac\x5b\x9a\x7f\xad\xf2\xaf\xc5\x06\x63\xa7\x5a\x94\x6a\x56\x2d\x05\xbe\x6e\xa5\x43\x2b\x08\x2d\x74\x68\x61\xb1\x71\xa5\x89\xbd\xc5\x20\x2d\x76\xb3\x58\xdb\x4b\x89\x56\x40\xdc\xc8\x6c\x56\xeb\x77\x64\x7d\x88\x6f\x5b\x7d\x27\x5a\x0f\xc1\x48\xbf\x0d\x63\x18\xc5\x0f\x41\x08\x1f\xe4\x1e\x3f\xb2\x0d\xa1\xc3\x75\xb2\xe2\x29\xc2\x8f\x3c\x3f\xcb\x3c\xbf\xc8\xf8\x9b\x9e\xd6\xef\x81\xc7\xda\x29\x37\x2d\x1f\xd3\xb4\x9a\x23\xb2\x21\x6b\x6b\xbd\x28\x5e\x09\x06\xc1\xd2\x85\x1e\x13\x1b\xab\x67\x62\x80\x00\x1d\x92\xfb\xfc\x4b\xb9\x97\xbf\x7c\xa9\xe5\xb7\x8e\x04\xab\xf6\x87\x6b\x99\x70\x7d\xad\x13\x3e\x32\x88\xfc\x24\x23\x3f\x7d\x7a\x58\xda\xab\x51\xcb\x32\xbf\xa3\xf6\x9f\xeb\xe5\x72\x4b\xcc\xac\x2f\xe1\x9d\xc6\x47\x66\xdd\x4d\xe2\xc6\x6b\xb4\xd1\x22\x1f\xe7\x40\xd2\xf4\x3f\x01\x63\xe2\x52\x36\x4d\xe2\x99\x0d\xfa\xe5\x43\xf8\xd9\x4d\xda\x8d\xdd\xcb\x87\xb1\xfb\x16\x90\x1d\xb8\xfd\xc6\x90\x13\x82\x7c\x15\x3e\x9f\x80\xa9\x8e\xdc\x86\x61\x98\x88\x73\xad\x36\x60\x15\xf2\xda\x6a\x4f\x0b\x1d\xc2\x84\xfa\x7c\x52\x7c\xbe\xcc\x37\xd8\xeb\xfc\xeb\x53\xfe\x25\x27\x40\xce\x6d\xc9\x41\xcf\x03\x72\xb0\x8b\x14\xd9\x51\xff\xcc\xbf\x65\x8b\x3f\x6a\x00\x56\xca\xcb\x3c\x05\xe4\x42\x2f\x1d\x22\xe1\x8f\xc9\x1d\xd3\x31\x92\x19\xfc\xf4\xa9\xc2\x62\x47\xf1\xb8\x72\x03\xdb\x13\xa3\x3b\x36\xa6\x7e\x07\x4c\xff\xdc\x20\x36\x52\xa6\xd0\x21\xce\x93\x4a\x63\x9f\x49\x94\xbe\x5b\x5a\x5b\x6e\x94\xbe\x1b\x22\x90\x20\xe4\xb3\x1e\xf6\x51\x00\x73\x2d\x7b\xef\xba\x02\x8e\xaa\x57\xa2\x40\x60\x23\xd6\x0a\xc0\x74\xdf\xd5\xc2\x76\xe8\x83\x6a\xc4\x73\x4d\x3c\x7f\x2f\x07\x53\xf0\x9e\x31\xc6\x44\x8c\xae\xca\xd1\x32\x72\x67\x3d\xb2\x17\xbf\x51\x53\x07\x4e\x16\x3f\x5e\x2d\xf1\x21\xfa\xb2\x1c\x1d\xed\xc4\xe6\xe5\xff\x74\xab\x0b\xb8\xff\x37\x5a\xa9\xf9\x23\x21\x08\x17\x70\x99\x21\x5b\x9b\xaa\x95\x16\x0b\x7a\x2f\x27\x50\x3c\x0b\x79\x70\x9f\x86\x4b\x76\x12\xde\x05\xce\xe8\x2c\x99\x85\x77\xb5\x50\x8c\x6b\xaf\xcf\x1c\x12\xb3\x2f\xc2\xc4\x2f\x13\xce\x93\xdb\x52\x92\x64\xdc\x02\x60\x0f\x6b\x23\x13\xbf\x08\x53\x5d\xe4\x03\x4b\x05\xe3\x36\x38\x99\xa6\xca\x8c\x5e\x87\xa9\x18\xd7\xca\x45\x25\x16\xcf\x16\x29\x0b\x9c\xd7\xce\x9a\x94\x75\x03\x82\xfb\xd7\x67\xa7\x81\x73\x1d\x2c\x97\x41\x9a\xd6\x9e\x38\xe4\xf5\x99\x0a\xc2\x77\xe0\x0c\x87\x07\x27\x27\x07\xea\x8a\xea\x35\x84\x87\xc3\xda\x09\xa9\x99\x98\x8d\xa8\x5a\x5e\x14\x92\x24\x22\xa4\x56\x95\x61\x4d\x2c\x0d\x87\xc0\xd1\x2a\xe9\xb5\x59\x28\x98\x43\xb4\xe6\x49\xe0\x3c\x9a\x39\xea\xac\x0e\x22\xba\xb7\x2a\x1a\xb6\x9f\x40\xa9\x03\xf8\x70\xf9\xbf\x08\x45\xf4\x99\x9d\x45\x4b\x16\xdc\xcf\x57\x62\xc5\x59\xe0\x44\x71\xed\x51\xea\x90\x9b\x30\x15\x81\xf3\x28\xad\x85\x57\x89\x43\xd2\xc0\x09\x6b\x73\x76\x5b\xd3\xb4\xd2\x21\x69\x2a\x6b\x29\xc2\x4b\x99\x43\x51\x57\x87\x2c\x97\x90\xa8\x89\xad\x43\xae\x03\x27\x8c\x6b\x8a\x62\x5e\x5f\x43\xda\xb5\x1a\xfb\x99\x2c\x06\x07\x95\xd9\x0c\xe2\x25\x3b\xe0\x90\x21\x40\x53\x42\xf9\xe1\x50\x01\x03\x49\x93\x43\xee\x64\x92\xba\x6c\xbc\xbb\x83\x14\x19\x48\x9d\x35\x51\x39\x82\x77\x8c\x58\x52\xa9\xe0\x4f\x06\xa6\x1d\xc1\xfd\x2c\xb9\x0d\x5c\x32\x4b\xee\x82\xde\xda\x58\x7b\xa4\xc1\x3f\x18\xb1\xb8\x90\xe0\x45\x11\x54\xc5\x3f\x30\x52\xda\xbe\x83\x83\x51\x78\x33\xbe\x68\x0d\x96\x83\x8b\xd6\xe0\x20\x5a\x93\x48\xd0\xfb\x35\x49\x44\xe9\x92\x1c\xb4\x47\xf2\xb3\xff\x60\x43\xb9\xad\x50\x00\x98\x38\xc4\x69\x3a\x38\xb0\xa4\xb3\xa0\x53\xa2\x95\x9a\xe5\x21\x05\xe4\xd1\x91\x00\x27\x16\xbb\x4d\xe3\x8c\x11\xdf\xa6\x31\x1f\x06\x8b\x7f\x2a\x44\x6b\x12\x5e\x5e\xf2\xc2\xb8\xb0\x75\xa0\x48\xf6\x81\xd3\x90\xdc\xae\x40\x02\xaf\xa7\xa0\xee\xc3\xf0\xbd\x51\x37\x85\x6a\x2d\x3b\x2a\x61\xcb\xc9\x0b\x0d\x09\x84\x38\x4d\x90\xc0\x83\xa9\xc4\x3d\x58\xa8\x6c\x78\x20\x04\xe5\xc1\xbf\xad\x99\xfc\x1a\xf0\xab\x81\xa9\xb3\x72\xb9\x92\xac\xe2\x59\xab\x76\x12\xcd\x6a\x77\xc9\xaa\x36\x4f\xf8\x15\x13\x35\x91\x80\xa7\xa5\x5a\x24\x06\x8e\xa4\x3c\xba\xa5\x96\xbe\x86\xc8\xaf\xe6\xb4\xc7\x0e\x61\xc4\xed\x5a\xd5\x13\x9a\x09\xd6\x26\x7b\x46\xab\x21\x06\x51\xa4\x68\x49\x50\x94\x69\x4b\x14\xc8\x87\x3f\x21\x47\x35\x48\x21\xf8\xf6\x33\xe3\x3c\x9a\xc9\x03\xe2\x2a\x65\x35\x65\x6d\xa1\x05\xe8\x2a\x07\x52\x3d\xfd\x26\x5c\x32\x22\x9b\x3e\x8f\xae\xb0\x44\x7b\x7a\x1d\xc6\x57\xac\x16\xc6\x35\xf6\x25\x4a\x45\x14\x5f\xd5\xf4\x36\x6a\xa0\xd8\xf5\x54\x42\x49\xaf\xc1\x21\x4d\x12\x2f\xee\x6a\x97\xac\xb6\x4a\xd9\x4c\xf6\x4b\x0d\xfc\x40\x49\x80\x21\x98\xa2\xab\xa2\xb5\x53\xc6\x6a\xd7\x42\xdc\x04\x07\x07\xaa\x82\x3f\xd3\xd6\x34\x59\x1e\x5c\xad\xa2\x19\x4b\x0f\xfe\x7f\x07\x5a\x01\x3c\x3d\x50\x15\x37\xf5\x14\x01\x90\xcb\x84\xb3\x5a\x14\xcf\x93\x16\xf8\x8e\x81\xbe\x68\x4d\x14\x22\xf9\x55\x87\x56\xa8\x6d\x29\x0f\x2f\x0a\x71\x9c\xc7\x47\x62\x54\x4e\x1a\xe3\xb8\x22\xb2\x04\xb5\x18\x36\xc4\x69\x2a\xd0\x06\xec\xfc\xe6\x24\xd9\x02\x93\x65\x68\x3b\x12\xec\xdd\xb7\xa3\xd5\x71\xf0\x3e\x0e\x97\x2c\x60\x44\x55\x1f\x88\xb5\x32\x41\xda\x8b\x25\x87\xa3\x22\x4b\x2b\x03\x4e\x2a\x43\xf4\x14\x81\x09\x8e\x04\x2b\x17\x29\xfc\xb4\xe6\x09\x7f\x16\x4e\xaf\x4b\x4e\xbc\xe4\x4c\x6c\xc9\x3a\x08\x6b\xe9\x11\x5c\xc3\xda\x63\x98\x6c\x2c\xb5\xa9\x28\xcb\xc4\xeb\xf5\xdc\xda\xc4\xfa\x54\x53\x1d\x34\x6d\x36\xe2\x30\xd9\x2f\x2e\x6f\x01\xc4\x3e\x18\x4a\xc9\xee\x14\x14\x68\x4c\x71\xb7\x0b\x7a\x3a\xeb\x4d\xe5\x01\xdb\x50\xc9\x1c\xf6\xa9\xfb\x73\x52\xa8\xe9\xa8\x0c\x82\xa2\x88\x4a\x82\x37\x4a\xc6\xd8\xc8\x1b\x9a\x0e\xc6\xc6\x82\x82\xcb\xa1\x53\x19\x1a\xde\x18\xe3\x01\xb7\x72\x81\x0e\xf6\xcf\xee\xb1\xf8\x59\xad\x50\x89\x5b\x64\x09\x46\xf5\xd9\x4f\xc2\x33\x08\xc7\xb2\x39\xbc\x70\x62\xf5\x0b\x15\xf5\xfa\x33\x14\x29\x37\x05\xbf\x50\xd1\xf4\xf0\x25\x67\xe1\xa7\x3d\xd1\x6c\xae\x93\x46\x23\xd7\x9e\x17\xeb\x92\x7a\xf9\x5c\xd8\xea\xd1\xb2\xe7\xf2\xeb\xb7\x7a\xbd\xe9\x53\x0a\x16\x7d\xb9\xf5\x1d\xa8\x17\xf3\xd1\x92\x8d\x8f\xdd\x2c\xf3\xbc\x63\xf8\x1e\x2c\x59\xc0\x47\x9f\xd9\xf8\xd8\xcb\x32\xf8\xf8\x65\xc8\x10\x1f\xdd\xb0\x31\x81\x0c\x78\xf0\x59\xe6\xb8\x53\xc5\xfc\xce\x31\x7c\xcb\x2f\x4a\x29\x7c\xd7\xeb\xc8\xdd\x97\xdf\x57\x32\x5e\x7d\x5e\x16\x9f\x13\x09\xe3\x4e\xc2\xb8\x52\x30\xba\x47\xc7\xf0\x3d\xb8\x92\x91\x97\x56\xe4\x25\x1b\x0f\x2e\x65\xe4\x44\x45\x1e\x1d\xc9\xd8\x09\x1b\x0f\x26\x2c\x68\x7a\x04\xda\x33\x31\x0d\x3a\x31\x32\x78\xd9\xb2\xe3\x1b\x96\x65\x9f\xd9\xb1\x50\x6a\xd4\x9f\x81\x19\xb7\x73\x4b\x56\x29\xad\xd7\x9b\x9e\x52\xc5\x40\x82\xde\x56\xe6\x01\xbb\x43\x2b\xd7\x33\x93\xcb\x64\xa2\xa2\x74\x1d\x79\x2d\xf2\xf3\x44\xf9\x4a\x92\x19\xfd\xfc\x81\x08\x2c\x7a\x3e\xb3\x46\x4d\x4b\xa0\x40\xfc\xa4\x2f\x6e\x27\xda\x1c\x73\x45\x16\x20\xdc\x59\x51\x46\x16\xc5\xa5\x0d\x6f\xc5\xc9\x2d\xc2\x98\x44\x74\xd5\x9a\xac\x52\xf6\xfe\xec\xe9\x60\xb4\xd8\xba\x03\x22\x26\x6a\xa8\x35\x44\x16\xf9\x9d\x8c\x00\xfd\x74\x55\x66\xb3\x40\x29\xb7\xce\x4a\x58\x6b\x72\xab\xac\xa0\xc0\x6a\x34\x94\x93\xa4\x14\x5e\xca\xf0\x0e\x6d\x5e\xd5\x3e\xb2\xda\xcb\xc9\x28\xdc\x26\x4f\x6e\x71\xeb\xc5\x0b\x63\x64\x25\x5a\xe7\xc5\xe7\x33\x9c\x50\x8f\x84\xb4\x43\x38\xbd\x96\x14\xf3\xc5\x0b\x02\xd5\xc8\x29\xf9\x9e\xa1\x4f\x02\x61\xe2\x91\x0e\x86\xeb\x10\x49\xcc\x21\xd7\x39\xf1\x30\x41\x28\x52\xa1\x67\xc4\xc3\x58\x4e\xe9\xfe\x71\x24\x67\xc4\x8a\xee\xbb\xea\x4a\xfb\x3e\xb1\x89\x8d\x64\x97\x5a\xb3\xe4\x96\x84\x15\xb1\x77\xca\x11\x22\x35\x95\x26\x24\xc4\x7b\x1a\xa9\xab\xab\x02\xa9\x45\x19\x93\x5b\xb2\x00\x11\x9f\xb1\x00\x15\xad\xd9\x40\x22\x26\x5a\x33\x2c\x67\x75\xcf\x42\xc9\xcc\x91\x16\x1b\x40\x0e\xd6\x48\x08\x12\x2d\xa6\xf2\x89\x16\xcb\x73\xe2\x20\xa2\xc9\x3a\x96\x6d\x8a\x7f\x39\x67\x88\x03\x3a\x83\x8a\x49\x4e\xf7\x5d\x0d\x76\x55\x91\x3c\x0b\xef\x64\x06\x94\xd2\x5f\x25\x10\x3d\x44\x38\x6f\x0d\x55\xba\x77\x70\x3d\x6f\x16\x18\x4d\x8b\x0b\x2f\xbc\x06\x33\xe1\xdc\x62\xcf\x5a\x84\xa1\x6c\x7f\xde\x2b\x91\xfc\x8b\x09\xb2\x33\xfd\xf2\x85\xa1\x10\x67\x19\xd8\xe6\x5b\xf1\xb2\x95\x3b\x16\x37\x85\x03\x16\xfd\xca\x50\x48\xdc\x12\x56\x1a\xe7\xa5\xdc\xc9\x36\x66\xbb\x99\xa6\x79\x82\x9a\xcb\x46\x06\xda\x2e\x4d\x5f\x31\x06\xd5\x21\xfd\x4d\x41\x34\x1a\x8d\x84\x12\x03\xe7\x12\xd3\x52\x72\xa9\xf4\x40\x92\x5a\x31\xf0\x02\x37\xd0\x31\x7b\x40\x1c\x21\x00\xf4\xd1\x35\xa1\xab\x52\xe8\xb2\x14\x9a\x00\x25\x65\xad\x89\x3e\x27\xd2\x7d\x97\x18\x10\xd4\x55\xfa\x12\x54\xa6\xeb\x55\xff\xd5\xb6\xca\x25\xd6\x72\x53\xeb\x2f\x2d\x94\x30\xf3\x0b\xe9\x01\x4a\x0b\x52\xa2\xaf\x9a\xad\x72\xc5\xa5\x72\x5a\x26\x0e\xb8\x5e\x07\x7b\x1f\xeb\x3a\x19\x07\x36\xa8\x32\x98\x74\x8d\xed\x4b\xe5\x14\x13\x58\x73\x1a\x6f\x63\xe1\x69\x2e\x88\x03\x13\x01\xa1\x62\x66\x89\xaf\x4b\xe0\x15\x66\xfa\x2e\x7b\xa8\x85\x5f\x56\x79\x13\x85\x9b\x4c\xdb\xcf\x16\xdd\xa7\xfa\x32\xd4\x32\x21\xac\xa9\x98\xe5\xc0\x6e\x72\xdb\x9a\x41\x05\xb7\xad\xd9\x3e\xa5\x89\x99\x82\x1b\x06\xe7\x60\x36\xa6\xb4\x6f\x05\x3d\xf8\xd7\x45\xfa\x18\xa1\x41\xa0\xb4\xc8\xef\x7b\xeb\x0c\xf4\xdd\x71\x13\x0d\x82\x8b\xd9\xc5\xac\x29\xff\x64\xe7\xfa\x53\x7d\x64\x4a\xb7\x1d\x7e\x30\x46\x83\x00\x9d\x65\x35\x8c\x8c\x12\xfa\xc6\xef\xa8\x45\xc6\x17\xb3\x06\x1e\xc0\x7f\x34\xba\x68\x5c\x6c\x29\xac\x67\x17\xe9\xe3\x8f\x32\xfd\xa7\x03\xb2\x7c\x00\x2b\x8d\x54\x81\xd3\xf7\xa1\x54\xfe\xf9\x51\x84\x3e\x8b\x5d\x6a\xf6\xe4\x4e\xd0\x91\x51\xca\x6d\x0e\x87\xcd\x93\x13\x87\x1c\xe4\x48\x37\xf3\x0e\x3c\x18\x6b\xdd\xdd\x3c\x13\xb4\x67\x23\xc3\x8b\x17\x2f\x5e\x34\x47\xe7\xe3\xf3\xf3\xe6\xb3\x3c\x8b\xe9\xfa\x8d\x1c\xe5\xf4\x03\xb2\xef\xe5\x55\x9c\x94\x2a\xb8\x6f\xaf\xed\xda\x4b\x55\xdb\xc5\x3e\x7c\x18\x0e\x6d\xf4\x3d\xb7\x28\xa7\x53\x2e\x66\xf7\x87\xeb\x1c\x0f\x40\x23\xc7\xf3\xbc\xa8\x29\x4f\xb4\xd3\xfc\xb5\x5d\x59\x8e\x62\x7f\x7d\x30\x1e\x93\x2b\xe8\xc6\x97\x2f\x95\xf8\xa6\x75\x7a\x7a\x7a\x0a\xc9\x17\xb3\x20\xff\x73\xd1\xba\x98\x35\x00\xbe\xc9\x47\x2a\xf3\x91\xcd\x6c\x5b\x39\x8a\x54\x3b\x49\xc7\x2e\x97\x65\x04\xf2\xff\x56\xf5\x32\x0f\xa9\xc8\x43\xca\x59\x36\x52\xf3\x14\x2b\x5e\xc7\xe9\x18\xd9\x15\x97\x30\xfb\x0f\x06\x92\x0c\x5d\x20\x74\xd1\x1c\xc8\xa9\x7a\x10\x15\xb2\x8c\x89\xa8\xe4\x48\xc0\x9e\x9b\xac\xe8\x8d\x68\xb1\x2f\x6c\x8a\x52\x9c\x65\xcb\xfc\x5b\x72\x2b\x2b\x75\x3e\x00\x9a\x10\xa5\x09\xf8\x4c\x00\x53\xa4\x3b\xb1\x69\x8b\x14\xcd\xd1\x9d\x18\x89\xf1\xc8\x1b\x2b\x08\xab\x91\x3c\x29\xdc\x47\x54\x45\xbb\x63\x30\x83\xdd\xa7\x3a\xec\x8f\xf7\x80\xc3\x5f\xe7\xa7\xc3\x08\x5b\xae\x6b\x90\xe5\x06\x62\xdf\x53\xc8\x8c\xda\x63\x73\x5e\x91\x38\x5c\x55\xe1\x70\xb5\x81\x43\x5b\xe2\x90\x50\xb4\x1a\xf9\xe3\x2c\x73\x6a\x0e\x6e\x5c\x69\x7c\x36\xeb\x4f\x1e\xa8\x7f\x0d\xc7\x2f\x63\x07\xff\x50\x4e\x85\x69\x67\x0c\x67\xa1\xfd\xcf\xc2\x20\xd2\x19\xe3\x87\x4a\x85\xd4\xf9\xe8\xac\xc1\xb3\x42\xd4\x40\x49\x96\x39\x0e\x6e\xa0\x10\x7e\xc9\xa9\xc8\x95\x97\x4a\xc5\x80\x24\xdf\xca\xe1\x97\xe4\x6b\x98\xc4\xd9\xd9\x8a\x65\xe7\x6c\x96\x9d\x5d\xaf\xb2\xe7\x3c\xca\x4e\x43\x91\x9d\xae\x62\x4c\x06\x17\x29\x1e\x20\x2d\x39\xc4\x17\x29\xfa\x2d\x8c\xb3\xe7\xec\x32\x1b\x86\x3c\x7b\x72\xc3\xb3\x61\x78\x97\xfd\xb6\x8a\xb3\xdf\x56\x8b\xec\xc9\xea\x2a\x3b\x65\x37\xd9\xdb\xa9\xc8\xde\x24\x9f\xb3\x13\x36\x95\x45\xe4\x9a\x24\x9d\xb5\xfa\xbc\x98\xe1\x40\xfd\x48\xf2\xa6\xbe\xf0\xe0\x22\x95\x98\xbc\x3f\xcb\x5e\x0c\xcf\xb2\xd1\xb3\xa7\xc3\x77\xe3\xd1\xe9\xc9\xf8\x0c\x67\x68\xf4\xf1\xeb\x58\xfe\x28\x5a\xd1\x59\x63\xfc\xd3\x01\x30\x97\xcf\x04\xbd\x7f\x7f\x16\xb8\xe4\xc5\x50\xfe\x7d\x76\x72\x16\x34\xfd\x8e\x4b\x9e\x9d\x9e\x05\xcd\xb6\xeb\x92\xa7\x27\xe6\x03\x62\x7a\x2e\x19\x9e\x98\x0f\x19\xd3\xf1\x5d\xf2\xee\xc4\x7c\x40\xcc\xa1\x6b\x89\xf2\xbe\x6c\x4e\x7f\x7a\xab\x87\x45\xf6\xa6\x65\xba\x83\x46\xff\xc2\xe3\xc7\x17\x38\x1b\x5d\xc4\x17\x02\xac\x68\x6a\xb6\x6d\x0f\xba\x48\x2f\xd2\x06\xde\x8a\xff\x97\x8c\x7f\x7c\xb0\x61\x08\x24\xe3\x7e\x3a\x50\x2a\x87\xd1\x1c\x19\x35\x2f\x5a\xc5\xb1\x18\xc7\xbc\xa3\xad\x23\xc4\x86\x3d\x42\xae\x92\x76\x4c\x3b\x47\x03\x9f\xb5\x1b\x22\x10\x60\x62\x02\x26\x07\x32\x04\xcc\xe9\x9f\xb9\xee\x38\x12\x98\xe4\x30\xb8\x84\x51\x04\xe3\x72\x30\x92\xc1\xc2\x4e\xaf\x5e\xd7\xd7\xf2\x79\x86\x44\x66\xc0\x24\x5c\xa3\x68\xd4\x91\xec\x6d\x5b\xfe\xf1\xe5\x9f\xae\xfc\xd3\x93\x7f\xfa\x63\x68\x2f\xa7\x09\x89\x29\x23\x48\xd0\x48\x92\x82\x7a\xfd\x83\x8d\xd3\x3e\xb5\x4e\x74\x92\x3a\xf0\x91\x27\xff\xf8\x63\x9c\x33\x42\xc0\x8e\xc4\x55\xec\x08\xd9\x47\x71\x69\x01\x99\xc5\xb5\x27\x19\x1e\x9a\x10\xed\x53\x64\xf3\x86\x24\x9a\xa3\x5c\xa8\xf2\x4c\x68\xf7\x86\xb9\x30\xd1\xd5\xfe\xbc\x37\xba\x2b\xa2\xf1\x23\xcf\x35\x5e\x13\x50\xdc\x8c\xf0\x81\xe7\xba\x8f\x7b\x6e\x23\x92\x3d\x71\x28\x5b\x7d\x24\xff\x78\xee\x58\x33\xa9\x5f\x4b\xee\xc5\x24\x52\x2a\xe1\x47\x18\x39\x20\xbb\xda\xc1\x11\xdd\x77\xab\x08\x40\x61\xbc\x24\xb4\x67\x23\x49\x42\xf6\x29\xe5\xad\x57\xa7\x6f\x27\x87\x3d\xd7\xc3\x76\xe4\x1f\xcf\x9f\x4e\x24\x38\x7c\x0f\xfd\x34\x1a\xab\x4a\xc0\x1d\x11\xdd\x57\xed\x17\xf6\x99\x95\x4c\xc9\x9c\x3a\x4e\x03\xb6\x8a\x19\x9d\x1b\x89\xd0\x8d\xf6\x95\x11\xd1\xbf\x00\x3a\xc9\x8f\x8e\x38\x37\x5d\xcd\xb2\xd1\x58\x9f\x36\x22\xdb\x07\x6c\x02\x47\x0b\x82\x62\x8a\xe6\x3a\xf3\x82\xa1\x84\x30\x0c\x45\xf0\xc8\x05\x93\x7c\xf7\x18\x85\x74\x5e\x5c\x56\xcd\xf3\xd9\x13\xe3\x5c\x34\x55\xaf\x43\x03\x2c\xe7\x54\xc6\xc1\x34\x99\xcb\xc2\x20\x85\xb2\x4b\x36\x72\x17\xd7\xe4\xa6\x51\xf8\xbb\x26\xbf\x8e\x92\xf1\x00\xc5\x03\xbb\x3f\xbc\xc0\x02\xae\xbd\x1d\x19\x9d\x94\x94\x26\x64\x9a\xcb\x95\xd1\x8a\xc6\xb8\x5e\x5f\xa0\x39\x23\x29\xae\xd7\xe7\x6c\x94\x8e\xd1\x8a\x4c\x5b\x93\x90\x4c\x49\xaa\xcc\x51\x8c\x7f\x25\xb9\x93\xec\x84\xbc\x07\x29\x25\xb7\x4b\x74\xd6\xbc\x21\xee\xf1\xfc\x1b\x6d\x9e\xe3\xfc\xb0\x74\x4c\x3d\xbf\x5e\xdf\x77\x8d\x00\x4c\xdf\x4c\xca\x23\x50\x71\x24\x43\x76\x92\x7e\x5f\x40\xcf\xba\x0d\xbf\x57\x70\x3a\x33\x22\x3d\x9d\xa5\xb8\x1d\x2e\x6e\x8a\x8b\xc3\x5a\xe5\xd5\xe4\x5e\xc9\xf1\x18\x1f\x88\xc0\x9c\x74\x0c\x00\x89\xc9\xa0\x1c\x04\xe5\xf7\x20\xf7\x8f\x13\xa5\xef\x86\xf5\x3a\x42\xb1\xfe\x56\xbe\x02\xc4\xb1\x6c\x2f\x12\x0d\xea\xf9\x98\xc4\x59\xe6\xf9\xfb\x94\x8a\x2c\x93\xbc\x02\x06\x05\x8f\xc2\xd9\x4f\x8e\x25\xb1\x50\xc7\x04\xa4\x52\x64\x5e\xec\xb5\xb0\x6f\x28\xc1\x38\x70\x50\xc5\x6a\x7b\x6b\xed\x28\x0b\x32\x27\x4b\x72\xa7\x98\xa9\x89\xfc\x99\x5b\xef\x36\x68\xf7\x42\xf9\x57\x96\x4d\x41\x3e\xb0\x50\xa7\x3c\x4a\xe9\x9d\x71\x29\x4e\x29\x9d\xd4\xeb\x8e\x23\xe3\x06\x37\xe8\xde\xf2\xa2\xe6\xae\x71\xb0\x6d\xb9\xa0\xcf\x77\x11\xbd\xb3\x04\x37\x37\x9c\xc1\xe0\xa1\x3b\x8c\xc9\x25\xba\xc3\xe0\x07\xf6\x0a\xcd\x85\x8c\x09\x50\x2a\xa3\x80\x44\xdd\x05\x31\x9a\xe0\xc1\x4e\xa1\xd5\x9e\xf6\x09\x2f\x5b\x64\x96\x89\x6e\x98\x62\x08\x6d\x9f\x63\xfa\xa4\xbe\xe1\x8f\x48\x93\x08\xf7\xe7\xe8\xd8\x82\x02\x9e\xe8\x13\x2a\x79\xc9\xcf\xca\x1f\x48\x71\xe2\x55\x07\x64\x39\x94\xe6\xbb\x88\xc5\x44\x48\xfe\x48\x42\x1a\x45\x63\xc9\x15\x09\x4c\x66\xca\x34\x35\x69\x80\x87\xa7\xf2\xba\x21\x49\x83\x7a\xee\x63\xe5\xfe\x6b\xdb\x65\x19\x81\x84\x74\x9a\x70\x46\x13\xa2\xb9\xc0\x38\xcb\x92\xe3\x58\x59\xbb\x26\x84\x53\x81\xf1\xde\x14\x31\xc2\xb3\x0c\x26\x11\x0e\x26\x03\x20\xb6\x41\x82\x16\x20\xc8\xc3\xad\x49\x84\x07\xa2\xd4\x78\x23\xa3\x0c\x52\xb4\xd8\x4c\x5b\x18\x47\x7e\x32\x7d\x6b\x50\x17\x03\x34\xa7\xc2\x4c\x0e\xb4\xa4\x97\x9a\x57\x99\xcb\x6a\xf0\x00\x4d\x84\x5c\xe8\xe0\x51\x68\x9e\xef\x05\xf5\x3a\xd2\x37\x61\x45\x1c\xf9\xf2\xdd\x39\xb9\x7e\x76\xe4\x39\x4f\x96\x30\xe5\x9e\x6b\x9f\xee\x68\x8e\x31\xc6\xc1\xbc\xd4\x80\xc6\x12\x58\xfb\x20\x96\x6d\x93\x03\x15\xd2\x15\x5a\x14\xe4\xa1\x42\xe7\x76\xcb\xa8\x72\x06\x66\x36\x41\x24\x41\xd8\xf9\xcb\x12\x60\x41\x4f\x60\x86\x63\xb5\xad\xaf\xd0\x48\x28\xc9\x9c\x36\xbc\x22\xa2\x35\x0b\xef\xb2\x4c\x80\x81\x0d\x11\xa0\x2c\x24\x13\x61\x2f\x25\x42\x6b\x06\x41\xcc\x62\x11\xa9\xd0\xb8\x0a\x41\x56\xaf\x57\xe1\xc8\x30\x38\x2b\x08\xc2\x8a\x61\xc4\xc1\xee\x6e\x83\x89\x69\x5c\x8c\xcd\x40\x56\x86\xc1\x71\x75\x4e\x42\x72\x37\x8d\x85\xb4\x8a\xac\xe8\xbd\xf1\x8e\xbd\x0f\x17\x07\xf5\x3a\x9c\x98\x78\x96\xa1\x84\x72\x52\x10\x69\x14\x21\x86\xcb\x02\xe7\x68\x8e\xb4\xfb\x98\x2b\x26\x2c\x07\x96\x6f\xc2\x25\x4b\x73\x0e\xa7\xf0\xde\x53\x91\x4b\xae\x6a\xed\x13\xc5\x32\x32\x54\xfe\x59\x80\x8b\xd8\x78\x35\xa5\xf0\x5a\xe7\xe5\x68\xaf\xa1\xd9\x31\xa0\xe7\x5a\x56\xbc\xe0\xcc\x32\xc7\x7f\xb5\xed\x88\x6e\xdf\x25\xb9\x38\x9f\xae\x8c\xd7\xb7\x50\x46\x2e\x28\x87\x12\x94\xc9\x1f\xb9\x3c\x56\xb9\x4f\xb9\x84\x68\x81\x1e\x90\xb8\xb7\x02\xad\xe4\x8c\xb5\x45\x60\x69\x2b\x9c\xcd\x90\xa7\xb4\xb3\xd3\x42\xb6\x68\x70\x49\x8b\x41\xf9\x24\x1e\x74\xa7\xe9\xe1\xf5\xce\x21\xa7\xa7\x48\x39\xee\xac\xdd\xf0\xe4\x73\x34\x63\xb3\x5a\x94\xc2\xa5\x77\x14\xd7\xc2\x1a\x67\xd3\xe4\x2a\x8e\xbe\xb2\x59\xed\x8f\xe7\x4f\x25\x0b\x56\x4b\x78\xed\xd5\xe9\xdb\xda\x1c\xe8\xa7\xb9\x30\x86\x8b\x75\xc1\x57\xfa\x7a\x2b\x5c\x2c\xd2\x9a\x04\x5f\x13\x49\xed\xcf\x54\xcd\x3c\x4c\x6a\xb7\xd7\xd1\xf4\xda\x54\xc0\xd9\x22\x0a\x2f\x17\xac\x16\x4e\x79\x92\xa6\xb5\x70\xb1\xa8\x5d\xf2\xe4\x36\x65\x3c\xad\x85\xf1\xac\xf6\x99\xf1\x34\x4a\xe2\xb4\x55\x7b\x93\xc4\xa6\xfe\x03\x59\xb9\x5c\x36\x1a\x83\xb4\x16\x72\x56\x9b\x45\xe9\x34\x59\xf1\xf0\x8a\xcd\xa0\xe8\x6d\x24\x81\xb1\x1a\x67\xcb\xe4\xb3\x6c\x53\x5c\x0b\xe3\xda\xea\x66\x9a\x2c\xa3\xf8\xaa\xb6\x0c\xff\x4c\xb8\x44\x80\x85\x29\x6b\xd5\xde\xc1\x6f\x8d\xb3\x39\xe3\x12\xe3\xef\xbb\xaa\xfe\x33\x6d\x4a\x3c\xb6\x2e\xa9\x4b\xeb\xb4\xbc\xb9\x48\xa2\xd0\xb0\x04\xc1\x4e\xcd\x18\xcd\x29\x8b\x6d\xc3\xfc\xda\xee\x5e\xd6\xa4\xe0\x7f\x4b\xf1\x30\xd9\xcf\x84\x1c\x41\x85\x29\xc2\x92\x82\xc8\xee\x35\x6e\x9b\xd8\x8c\xd4\x2c\xdd\x80\x65\xf8\xc5\xb8\x73\x6f\x7d\x67\x23\x97\x51\xdc\x5c\x86\x5f\x0e\x9c\x6d\xaf\x01\x9f\x44\xb5\xfd\x51\xe9\xdd\x0c\xcb\xbc\xba\x64\xb2\x0d\xe6\xbf\x03\xf9\x27\x60\xc1\x0d\x38\xcf\x79\xba\xd1\x14\x89\xec\xee\xa6\xc8\x86\xfe\x3f\xd1\x14\x99\x76\xcc\x4a\x4d\x29\xce\xf0\x43\x5b\x71\x45\x39\xb9\x84\xfb\xc9\x9c\x25\x8e\x91\xd0\xe7\x06\x41\xe1\x8b\xe4\x8f\x25\x19\xe2\xf7\x49\x20\xed\x0e\x0c\x72\x90\x88\x7a\x3f\x47\xc5\x43\x0f\x8d\x46\x84\xc5\x28\x1a\x97\x2c\xd9\x65\xc4\x88\x8d\x11\xd7\xfe\xf6\x47\xd1\xd8\x72\xb3\x05\xc6\xb4\x82\x8e\x8c\x27\x85\xbf\x56\x21\x17\x8c\xc3\x43\x4f\xca\x3c\x59\x5b\xf5\x28\xcb\x0f\xad\x7f\x6a\x94\xac\x1c\xb5\x1f\x41\x4c\xbe\x3b\xd9\x6f\x43\xbd\xb3\x14\x89\x4e\x40\x29\x93\xaa\xfd\x2f\xcb\x5c\xf0\x52\xab\xeb\x93\xc1\x88\xea\x3d\x51\x06\x12\xaa\xec\x30\xe4\xce\xa8\x6d\x49\x64\x74\x48\xf5\x7e\xe9\x92\x94\xaa\xcd\x52\x7e\xaf\xa8\xd9\x31\x65\x68\x41\xcd\xb6\x29\x43\x53\x5a\xda\x3b\xb3\xcc\xd5\xda\xf0\xe6\x10\x5a\xa9\x6c\x90\x6f\x19\x70\x89\xfc\x56\x1b\xfa\xfd\x21\x88\xc0\xb9\x53\xc9\x91\x18\xd7\xeb\xda\xd2\x7e\x24\xc6\xd6\x56\x52\xbc\x76\xb4\xef\x69\x1f\xaa\x7f\x58\xa3\x14\xc3\x5e\x34\xfa\x43\x8c\xe2\xb1\x12\xb3\xf1\xa2\x2c\x6c\xe2\xcf\x17\x09\x28\x2b\xe8\x2c\xe0\xa7\x31\x0f\x81\x1b\xc9\x7d\xd7\x3c\x29\x22\x77\x2c\x91\x1b\x43\x16\x2d\x4d\x69\x63\xda\xf0\x58\xfb\xf1\xa2\xd1\x63\x9d\xc7\x2b\xf8\x4e\x1f\xf7\xe4\xb1\xdf\x78\xef\x0c\xef\x52\xda\x08\x1b\xfd\xc7\x49\xc9\x98\x92\x36\xa2\x46\xfb\x71\xdc\xf0\xfc\xc7\x3c\xcf\x2a\x42\x7a\xaf\xdf\xe3\x32\x87\x82\x69\xfe\xf4\xcc\xe4\x72\x75\x79\xb9\x28\xf9\x3b\xfa\x53\xec\xf2\xce\xf7\xce\x32\x47\x3c\x11\x1b\x6e\x37\x9b\xde\x63\xb0\xd2\xe3\xc9\x2a\x9e\xa1\xa6\xf7\x98\xe1\xc0\x8a\xb0\x0f\x31\x6f\xc4\x4e\x6d\x7a\xcb\x9b\xc9\x4a\x4c\xb5\x11\xb1\x9c\x7e\x4e\xc3\x29\xee\xd4\x5c\xd8\xd2\x9b\x4c\xc6\x37\x1d\x4c\x78\xe3\x35\xfa\xef\xff\x46\xec\xa0\xe7\x82\x76\xb6\x80\x30\x7b\xd4\x73\x41\x2f\x7b\xfd\x46\x20\xe7\xa3\x43\x9c\xc0\xc1\x04\xbe\x3f\x82\xef\x1c\xd0\x7e\xfe\xe8\x90\x44\xfb\x1b\xf9\xa8\xbf\x41\xe3\x58\x66\xf9\xf8\xb1\x5a\x73\x59\xf3\x0a\xe0\xe7\x14\xa4\x3d\xaf\x05\x4a\x18\xc9\xed\x78\x5e\x09\x7a\xa0\xef\x6a\xd4\x2d\xcf\xc1\x95\x25\x14\x7f\x6d\x53\x14\x8a\x04\x88\x5a\xb5\x38\x82\xe1\xbd\x42\xd7\x8c\x63\xeb\xd8\xaa\x25\x44\x08\xf1\x11\xcf\xdf\xb1\x1b\x83\xd8\xa2\x51\x94\x7f\x25\xe7\xf9\xc8\x69\x82\x6a\xbb\x24\x34\x3d\xf7\x71\x3c\xf2\xc6\x8d\x5b\x14\x8f\xfc\x82\x82\x48\x06\x29\x1a\xb8\x81\xd3\x80\xc7\x5a\x46\xee\x78\x10\x05\x4d\xeb\x75\xb0\xe7\x16\x92\x31\x89\x8a\xa7\x53\xb4\xad\x38\x02\x5f\xd5\x8b\x24\x66\xea\x09\xba\x4b\xe0\xbe\x24\x23\x37\x60\xc5\x31\x23\x90\x7c\x0d\xb6\x8e\x1d\xcd\xb8\x08\x90\x58\x8b\xa5\xc0\xdd\x2c\x04\xf2\xb4\x46\xb4\x65\x4a\x0e\x6c\x10\x89\x0d\x4c\x98\xca\xf6\xbc\xfd\x6a\xcf\x48\xaf\xfb\xb8\x69\xcf\x3e\xcb\xb1\xed\xd7\x24\x36\x20\xf1\x81\xd7\xb5\x20\xbc\x14\xb9\x0d\xc0\xfe\xfe\xe6\x86\x61\x88\x0f\x1c\x12\x5d\xf3\xc4\x8f\x76\xfb\xbb\x2e\xe3\xba\xbd\xc9\xff\x0a\xb2\xf2\x8b\x66\x76\xd1\xc0\x03\x34\x08\xd0\xc5\xec\x31\x1e\xb5\x6a\x63\x90\x8d\x37\xf0\x45\x00\x3f\x68\x10\x98\xaf\x8b\x96\xcc\xa2\x6e\xf5\xde\x43\x69\x55\xf8\x9d\x2c\x3d\x6a\x36\xc6\x83\x91\xdb\x3c\x22\xad\xf1\x63\xfc\x41\x81\x2c\x47\x0e\xab\x22\xcf\xab\x22\x4f\x20\xf2\x6c\x3b\xe1\xe5\x77\xc3\x3d\x55\x88\x16\x73\xfc\x5c\x6c\x38\x87\x26\x60\x0e\xac\xb4\x52\xf5\x18\x01\xa1\x19\x24\xf4\x7e\x99\x06\xac\x4c\x02\xc9\x2c\x50\xca\x06\x29\x19\x42\x1a\x90\xb7\x75\x10\x6a\x4b\x63\x49\xd0\x06\x60\xf1\xce\x82\xa4\x55\x22\x9e\x0c\x83\x7a\x85\x91\xb3\xcb\x83\x2b\x50\x09\x4a\x69\x3a\xf2\xc6\x83\xa6\x17\x78\x24\xa1\xf7\x77\x81\x4b\x66\xc1\x2d\x4a\x47\x9f\xd9\x18\x3f\xe6\xe4\x1a\x02\x77\x2a\xb0\x84\xc0\x95\x0a\xa4\x10\xb8\xd4\x29\x32\x74\x22\x10\x50\x65\xd0\xaf\xc2\x8f\xf9\x1a\x2a\x7d\xff\x1d\x95\xfe\x25\x50\x3a\xf2\xc7\x84\x63\x32\x54\x81\x36\x04\x6e\x55\xa0\x03\x81\x99\x0a\x74\x21\x70\xad\x02\x3d\x08\x2c\x55\xa0\x0f\x81\x54\x05\x0e\x65\x60\xad\xb4\x59\x28\x4d\x64\x8f\xae\x83\x2d\x17\xb7\x49\xbd\x8e\x9c\x39\x4f\x96\x4e\x14\xd7\x92\x2c\x73\x44\x02\x5f\xb8\xec\x14\xb1\x42\x49\xb7\xb4\x0a\xca\x4e\x06\x9f\x0b\xf0\xb2\x47\x64\x9e\x5f\xd9\x3c\xe1\x0c\x09\x3c\xe0\xf4\x1f\x6a\xf8\x03\x84\xe0\x1b\x9e\x4e\x2a\x0f\x53\x93\x97\xc2\x84\x6b\x7f\x09\x90\x00\x5f\x98\x70\x1c\xdc\xdb\x99\x02\xd7\x28\x6a\xbb\xeb\x35\xfa\x24\x50\xd2\x92\x0d\xc2\x04\x3e\x45\x82\x31\x81\xb9\x81\x5b\xcb\x94\x46\x65\xf8\x49\x6b\x28\xa3\x34\xe4\x18\x18\xfa\x77\x02\x25\x98\xc0\x34\xac\xd7\xe1\x89\x1d\xbd\x41\xc2\x03\x08\xf1\xb6\x0c\x0d\x13\xcb\xa1\xd8\x5f\x25\x32\x6e\x8e\xf1\x9a\x03\x28\xd4\xb4\x89\x43\x9c\x96\x93\x9b\xf4\x23\xe3\xa1\x68\xe0\x06\x1c\x3f\xb6\x76\xd4\x7f\x94\xe0\xe5\xe7\xf1\x5a\xde\x33\xc2\xf8\xc4\x69\xb2\xc2\x3b\x8e\xff\x18\x09\x63\xe4\x9e\xbb\x37\x22\xcc\x90\x66\x38\x81\x1a\x08\xe0\xb3\xa6\x15\xa5\x4f\xe6\x82\x71\x90\x5e\x35\xf3\xde\x26\xe5\xf1\xa0\x0d\xd1\x6c\x3c\x00\xc5\x76\x84\xfd\x41\x54\x7b\x90\x2a\x0c\x6b\xcb\xe2\x57\x1a\x1b\xf7\x46\x8d\x58\x32\xb7\x9f\x90\x20\xc5\xa1\x01\x5e\xbe\x44\x37\x8c\x47\xc9\x8c\xd4\xd4\x63\x21\xb8\x7c\x8c\xc8\x8f\x7b\xc5\x69\x22\x2f\xa8\x0a\x90\x9a\x02\x80\x5b\x3f\xa0\xb8\x1c\xce\x66\xcd\x28\xfe\xcc\xb8\x60\xb3\xe6\x4d\xc8\xc3\x65\x85\xf6\x72\x04\xd2\x90\x98\xc4\x34\xc2\xe4\x85\xb6\xfe\x3e\x17\x72\xb9\x6f\x0a\xd4\xf8\xa0\xc1\x03\xd9\x09\xc6\xed\xba\xe5\x27\xe0\x85\x3a\xdc\x17\x3e\x18\xa8\xd8\xa0\x80\x21\x3d\x11\x48\x28\x22\x88\x49\xaa\x43\x7a\x02\xef\x95\x16\x25\x8a\xb4\x4e\x54\x94\x65\x11\x49\xeb\x75\x70\x4a\x03\xee\xb6\x8c\xa3\x95\x46\xfa\x38\xc6\x24\xac\xd7\xc1\x71\x96\x73\x02\x36\x1f\x67\xc5\x37\x6e\x84\x32\x43\x52\x28\xfd\xc0\xa6\xcc\xca\x9b\x72\x22\xf3\x44\xf5\xfa\xc6\xce\xcc\x48\x98\x65\x29\xc6\xeb\x73\xd1\x9a\xc7\xf4\x9d\xe5\xa0\x99\x9c\x0b\x23\xae\xad\x70\x80\x7a\x2e\x40\x58\xab\xb6\xc8\xbf\x0b\xfa\x41\x20\x8f\x38\xe1\x6c\xe6\x60\xf2\x13\x04\x9b\x1e\x71\xd2\xd5\xa5\xe0\xe1\x54\xd8\x6e\x77\x7e\x2f\x2d\x96\xea\x55\xd0\x40\x15\x2b\x46\xae\xfd\x8d\x79\xad\xcf\x4c\x69\xee\x75\xb4\x89\x78\x03\x89\x66\x7c\xec\x0e\xe4\x0f\x3e\x40\x71\x73\xa3\x8c\xc4\xcb\x94\xc2\x81\xce\xb5\x91\xa7\x61\xe5\x69\xc6\x18\xe3\x2c\xb3\x7c\x12\xff\xd3\xd2\xd2\xb6\xae\xe7\xd5\xcb\x39\x03\x9b\x5d\x57\x5a\xd9\x41\xa1\xc1\x09\x0a\xde\xd8\x3c\x9e\x98\x3f\x24\xa0\x9d\xec\xac\xb9\x79\xde\x4e\x0b\xc8\x2d\x65\x9e\x33\xa3\x68\xf2\xd1\x21\x1b\xd9\xde\x8b\x69\x65\xce\xd1\xc7\xb1\x7a\xce\xe8\x63\xf9\x70\xbf\x08\xe3\x2b\xb4\xb5\x30\x5f\xa9\x03\x3d\x29\x2f\x4d\xdb\x2e\xb6\x26\x92\x1a\xd8\x5e\x5c\xb3\x9a\x84\xb1\x0a\xaf\x98\xb6\x49\x58\x71\x70\x53\xdd\xaa\xbd\xdf\x2e\x8c\x6c\xb3\x07\x53\x2e\xdd\x10\xd5\xec\xe8\x47\xbb\xfa\xc0\x8a\x51\x86\xf7\x85\x91\xaf\xd8\x30\x8c\xd5\x3d\x0b\x87\x6d\x26\x67\x59\xcf\xf7\xfb\x87\xee\x21\xb3\xbc\xc0\x0a\x6e\x13\x3f\xc4\x1e\x89\x86\xc0\x8f\x2c\xb2\xce\xf9\x86\x8a\xb2\xad\x12\xb8\xad\x0f\x88\x9b\x8c\x07\x65\xdd\x3e\x8b\x7f\xb6\xde\x88\x7a\x08\xac\xf1\x2e\xb3\x01\xb6\x88\x86\x28\xeb\x49\x28\x6e\x0e\x64\x2e\x19\x31\x62\x24\xa7\x63\xe2\x96\x5e\x1f\x4a\xf8\x96\xeb\x98\x32\x65\x67\x83\xf7\xda\xc1\x93\xcc\x01\xeb\x30\x40\x28\xa1\xe7\xc6\x8f\x0c\x3e\x56\x7a\xdd\x09\xae\xf4\x44\xaa\x28\x61\xc9\x43\x0d\x09\xe9\x57\x86\x12\x25\x7c\x77\x49\x62\xe9\xc2\xee\x6d\xb9\xac\x0c\xb7\xdd\xf1\x10\xcb\x99\x5c\x58\x56\x54\xd5\x69\xe0\x21\x2b\xdc\x54\x55\x95\xe4\xda\x7a\x2d\xa5\x40\x08\xaf\x95\x77\xcb\xab\xab\x87\xad\xaa\x6f\x19\xfb\xf4\x61\xdb\x8f\xe6\x8b\x17\x0f\x17\xd3\x42\x93\x52\xc9\x88\x23\xe7\xea\x4a\x56\xe8\x18\xa8\x4e\x11\x5b\x11\xfd\xe2\x85\xac\xc6\xb1\x60\x59\x09\xdb\x29\xda\x71\x88\x72\x0e\x29\x1b\x66\xbb\x0e\xd1\xb1\x2f\x5e\x14\xde\x60\x3e\x18\x7f\x9d\xaf\x36\x72\x69\x87\x21\x2f\x0a\x17\x9e\x57\xc5\xa7\xac\x38\xb7\x4c\x96\x58\xe7\x01\x85\x54\xe1\xda\x53\x35\xaa\x08\x6b\xac\x0b\x57\x9f\xba\xd9\x2a\x02\xfc\x6c\xe8\x7e\x30\xfd\xa1\x9b\xa9\x0a\x7e\xd3\xcb\x8c\x5f\x78\x99\xd1\xc0\x54\x83\x37\x0a\xc2\x14\x15\xa3\xe8\x01\xef\x9e\xef\x91\xf3\x3b\x38\xa9\xf9\x3d\xb1\x84\x72\xd0\x9d\x85\x84\xee\x77\xd5\x93\x79\x44\x5f\x35\xea\x77\x87\xfc\x43\x19\xd9\xfe\xbe\xed\x1f\x74\xc9\xc6\xb4\xfd\x18\x29\x0f\x7e\xba\xa6\x13\x87\x8c\x9c\x93\x13\xe5\xd6\xe7\x44\x79\xc5\x11\xcc\x78\x85\x01\x39\xdf\x89\xf1\xf8\x22\x43\x47\xaa\x9e\x93\xdc\x8a\x5c\x96\xcd\x07\xe1\x24\xd9\xe1\x58\x85\x0d\x84\xd6\xfb\xde\xb2\x08\xcd\x32\xd1\x9a\x24\xb6\x89\xe8\xce\xac\xaf\x59\x1c\xb1\x58\x18\x7b\xee\x13\x89\xdc\x89\x33\x26\x9f\xb5\x47\xd6\xed\xea\x05\xe8\x90\xdf\x22\xe3\x91\xfc\x77\x50\xcf\xd0\x12\x96\x90\x83\x19\xb0\xe2\x63\xf6\x5d\xbc\x27\xfb\xe3\x44\xf7\x88\xfc\x6d\xcb\x3e\x39\xd1\xbd\xa2\x29\x46\xee\x30\x47\x07\x21\x47\xee\x13\xc7\x44\x76\x4c\xe7\x9c\x38\xe4\xb7\xfc\xfb\xc4\x21\x2f\x0c\xee\x27\x0a\x7b\xc0\xbf\x42\x3a\x54\x68\xee\x17\xae\x8b\x96\xf0\x1a\xe6\xd2\xb8\x6d\xd0\x82\x58\xe5\x4f\xd2\x08\x65\x97\xda\xa1\xa4\x0e\x7b\x1a\x91\x65\x3e\x5e\xb2\x3c\x8c\x17\xa0\xb1\x94\x45\x96\xce\x98\x5c\x31\xd5\x27\xa9\xea\x93\xa1\x31\x9d\xdd\xf7\xa0\x5b\x52\x59\x75\x9a\x9a\xaa\xb5\xb0\x17\xaa\xce\xc5\xc0\xa9\xaa\xda\x84\x3d\xed\xde\x29\xcd\xab\x96\xe5\x8b\xaa\x53\x59\x24\x75\xc6\xe4\x52\x57\xbd\xe2\x64\xa1\x6a\x3f\x35\x56\xbd\xb2\xf6\x79\xc2\xd1\x7b\xe4\x9c\xee\x70\xb4\xf0\xdf\xff\x6d\x3c\x2b\xe4\x7c\x2f\x02\x05\x27\x9c\x93\xcb\xd3\xd3\x5d\xe4\x72\x57\x61\xbb\xec\x29\xcc\x03\xb7\x2c\xe6\xb6\x92\x4f\xb5\x47\xe3\x6d\x5a\xec\xb9\x8f\xb7\xa1\xdb\x90\x65\xd9\xee\xae\xb2\xdf\x2e\x7c\xea\x90\xde\x8e\xd2\xac\xfd\xed\xd2\xa7\x0e\xe9\xef\x2a\xde\xf9\x8e\xe2\xa7\x0e\x39\xdc\x55\xbe\xfb\x3d\xe5\x4f\x1d\x72\xb4\x0b\x40\xaf\x1a\x00\x4c\xf5\x62\x18\x88\xb3\x4c\xcd\x84\xb7\x62\xbd\x9e\x9a\x70\xa7\x0e\xf9\x4d\xd2\x43\xf8\x86\xc0\x07\x13\x80\xd0\x0b\x4c\x56\x9c\xaa\x41\xfc\x79\x65\x24\xa2\xc7\xf4\xe8\xe7\x15\x6f\x50\xe7\xd4\xc1\x2b\x86\x56\x9c\x70\x66\x71\x78\x53\x6e\x48\xcb\x04\x48\x8b\xec\x6b\xe4\xb8\x2d\xa7\x01\x37\xe4\x09\x47\x00\x73\x07\xc0\x6b\x00\x38\xe5\x6a\xca\xcf\xcd\x6a\x2b\xce\x6c\xf9\x92\xfb\xaa\x7d\x75\x7d\x4d\x62\xf6\xe4\xf2\x52\x7b\x68\xf9\x6a\x47\xbf\x09\x97\xcc\x51\x90\xae\x39\xbd\x2a\x4e\x4c\x05\xb6\x33\x6e\x8b\xd8\xd7\xd7\x5c\x1e\x2b\xe8\xdf\x05\xb9\xe6\x2d\xe3\xf0\xa0\x42\x70\x13\x53\x96\x65\x60\x32\x15\xd1\xe7\x42\xbf\xb1\x0d\x2f\x02\x71\xf1\x76\x8e\xb4\xeb\xb4\x84\x16\x40\xf4\x9b\x05\xc0\xe8\x44\x38\xcb\x1c\xe3\xbe\xc0\x21\x21\x18\xe2\x9d\x21\x31\x4a\xc6\x78\x20\xff\x5a\x4c\x51\x8c\x03\x88\x2f\x31\x62\xea\x4e\x17\x85\x59\xb6\xed\x12\xc7\x54\x88\xd4\xb5\x05\xf9\x24\x40\xa3\x6e\x0d\x2d\x92\x47\xa7\x8a\x33\xa2\xba\x61\x57\x27\x1b\x99\x6f\x16\xcd\xe7\xd5\x4a\x5e\x46\x75\x68\x43\x74\x6b\x7b\x50\x96\xa9\x28\xa6\x4a\xb8\x2d\x41\xe2\xea\x7c\xe9\x6d\x24\xb7\x9c\x88\xf6\x58\xe7\x31\x8a\xed\xbb\x88\xe6\xe6\xe5\x04\x26\x82\xfe\x89\x04\xc6\xf7\xd3\x30\x65\xea\x42\x2e\x48\xe8\xef\xc2\x74\xd2\x81\xe7\x2b\x8d\xef\x3d\xc8\xa0\x2e\xe8\x4a\x39\xec\x64\xc3\x16\x94\x41\xb4\xed\x2c\x7a\xad\x04\x09\x85\x74\x79\xf6\xf4\x58\x29\x87\xde\x43\xec\x1c\x3d\xd6\xb1\x73\xc0\x8d\xa0\x9d\xde\xee\xb1\xae\x9d\x41\x4e\x93\x22\xbd\x19\xe1\x83\xc3\x5e\xa7\x9c\x05\xae\x18\xcb\x79\x7a\x6e\xe7\x30\xcf\xa4\xcf\x97\x81\xf2\xbc\xd5\x8c\x8d\x2d\x2d\x1f\x24\xc1\x04\x25\x6a\x3c\x59\x3c\x7b\x3b\xa7\x5b\xba\x60\x72\xa8\xf2\x73\x1c\x62\xf4\x4f\x04\x4a\x9a\x25\x62\x21\x4f\x78\x59\xb6\x63\xb8\x65\xac\xbe\x33\xb1\x44\xf7\x83\x98\x07\x9c\x9b\xf1\x65\xa5\x31\x13\x54\x79\x05\xcc\x1d\x3f\x12\x97\x78\xb8\xe9\x55\x8e\xce\x46\x66\xfb\x98\xa1\xa7\x88\x0e\x3c\x6a\x37\xda\x5b\x60\xf4\x1c\x78\x08\x48\xc3\xdb\x2a\xa5\xfa\xfb\xa1\x42\xd6\x89\x46\x63\xa1\x35\x98\x11\x6e\xf4\x37\xa0\x19\x5f\x8e\xdf\x0f\x10\xd9\x27\x14\x00\xda\xf4\xb6\xe1\xc2\xc4\xd1\x5f\x72\x0e\x7e\x2f\xf8\xc6\x66\x73\xd5\x14\x15\x7a\xf8\x2c\x39\x14\x11\x0d\x2a\xa7\x6b\x53\x70\x24\x1a\xc8\x1e\x5e\x37\xe8\x99\x0d\xb0\xb4\x44\x65\xf6\xcd\x31\xd0\x6b\x64\x47\x05\x3d\xd6\x01\xf8\xa4\xc7\x3a\x1b\x25\xcd\xfa\xdb\x51\xd2\x63\x6d\x55\xd2\x63\x6d\xdc\x2c\xde\x5f\xd3\x79\x8d\x6c\x4d\x3c\xec\x2c\x19\x16\x87\x22\xa6\xa5\xd5\xc1\xb2\x0c\xe9\x1b\xd2\x28\x7d\x2f\xa6\x08\x0f\xb6\x25\x39\xc1\x46\x94\x76\x9f\x43\xcf\x8d\xa3\xc9\xbd\x9d\x6e\xcb\x6e\x92\x54\x68\x1a\x2e\xd4\x0a\x9d\xf3\x64\x59\xfd\x38\xfe\xe6\x1d\x19\xdc\x02\x96\x74\x2b\x60\x27\x62\x36\x95\x1d\x9c\x0b\x74\x2f\x12\x90\xc3\x10\x09\x3a\x60\xeb\x5c\xc8\x63\x0b\x67\x30\x6e\x5d\xaf\x96\x61\x1c\x7d\x65\x68\x5f\x94\x04\x37\x95\x0f\xf6\x18\x54\xdf\x24\xb7\x55\xaf\x24\xa8\xcd\x89\x27\x4b\x65\x4e\xcc\x54\x01\x91\xfc\x0f\xb7\x0c\x5a\x04\x6d\x13\xc9\xff\x64\xcb\x44\xf2\x50\xbb\x44\x52\x6a\xd5\x15\x13\x55\x59\xcf\x94\x7b\x7e\x45\x4c\xc7\x4a\xef\x65\xc4\xc6\x5a\x28\x06\x25\x75\xc5\x4f\x44\xc5\x4e\xac\xfc\x5a\x17\xb6\xf8\xaa\x80\xba\x4d\xa8\xba\x40\xa2\x97\x70\x1b\xac\xee\x6b\x8d\x9a\xde\xe6\xee\x9c\x65\xfb\xdc\xea\xc3\x7a\x1d\x6d\x92\x78\xa4\xb6\xd7\x0d\xda\xaf\xb0\x2f\x16\xde\x2f\xdc\xba\x75\xb6\xbe\xd5\x23\x05\x46\x2e\x6b\x98\x20\x61\xdf\x49\xeb\x76\xa8\xfb\xab\xff\xeb\x0d\x39\xb6\x1b\x52\x42\x1e\x76\xca\x12\xea\x76\xde\xa2\x19\xe2\x96\xb1\x78\xcb\xd8\xc7\xf8\x38\xb5\xdb\x42\x12\x7a\xa9\x1e\x30\xfa\x24\x8a\x57\xfc\xf6\xf7\xd1\xe6\xf4\x8f\xec\x40\xb2\xd1\x4c\x04\x8d\x8b\x69\x9c\x65\x0e\xc2\x8e\x3c\xa6\x0f\x34\x00\x75\xd3\x14\x11\x8e\x03\xd3\x5d\xfa\x9a\x50\xc6\x41\x69\xac\x14\x10\xbc\xbc\x8c\xce\x90\xd8\x85\x14\x1c\x19\x65\x9a\x79\x1a\x2e\x2b\xc7\x8a\xc4\xdf\x3b\x5a\xf1\xff\xc4\x68\x49\xdc\xad\xf1\x42\xdc\x0e\x92\x6f\xce\x3d\x78\x0d\x8c\x1f\xd3\x6f\x8c\x73\xa9\xd5\x6f\x79\xd5\x8a\x2b\xd3\x2d\x99\x0f\xe2\x35\x17\x6e\x7a\x10\x5e\x93\xb7\x41\x55\x4e\xfa\x6f\xc1\xd2\x23\x64\x01\xfb\xc7\x8e\x0b\x9e\x99\xc5\xb8\x2f\xc2\xf8\x8a\x7e\x84\xd3\x8b\xbe\xb1\xf8\xa7\x15\x90\x84\x8f\xfe\x06\x11\xcb\xf0\x0b\x7d\xaa\xbe\xa2\x98\x9e\xc1\xd7\x4d\xc8\xd3\x28\xbe\x7a\xbe\x08\xaf\xd2\x8a\x7a\xe0\xfd\x4c\x4d\x9f\x54\x6d\x25\x2d\x0c\xe3\xc3\x69\xeb\x52\x9c\xe1\x42\xe5\x6b\xdb\x00\x4e\x3b\xa3\xcd\x5f\xda\x67\x58\xdb\xbb\xdc\xaf\xe2\x48\x04\x9c\xdc\xf0\x28\xe1\x91\xb8\x0b\xde\x8c\xf8\x78\x5d\x6c\xaa\xca\xeb\x6b\xb5\x34\xad\x65\x0a\x35\x45\xfe\xb9\xc6\x44\xac\x11\x03\x55\x3b\x6c\x1e\xef\x36\x7a\x67\x71\xa3\x81\x81\x52\xf3\x51\x3c\x6e\xc9\x9a\xc7\x88\x59\x81\xe2\xb1\x88\x0d\xfa\x6e\x73\xc2\xf0\xbe\x58\x69\xd7\x57\xbd\xa4\xe6\xe4\xff\x8b\xec\x37\x30\xdf\xff\x29\xeb\xbd\x01\xe2\x3b\xd8\xee\x8d\x12\xff\x11\xcb\x8d\xff\x0f\xb0\xdb\xf8\x7f\x82\xd5\xc6\xdf\xc9\x66\x37\xe9\x0f\x72\xd8\xdf\xcd\x5f\x2b\xc8\xc0\x5b\x7f\x37\x67\xad\xcb\x48\xae\xfa\x3f\xe1\xa9\xcd\x75\x32\xfd\x49\x28\xc6\x0a\x5e\x88\xa0\x95\x4a\x88\x7a\xc1\x8c\x72\xef\xff\xc5\xab\x4f\xf9\xd3\x2a\x0c\xd4\x59\x55\x1a\x34\x19\x3e\x8d\xe0\x0b\x62\x2d\x41\xd8\x58\x73\x73\xda\xf6\xe0\xa1\x5a\xe1\xe5\x84\x34\xc8\xeb\xd6\xba\x2f\x05\x0a\x12\x81\x20\xc7\x03\xdc\x22\x06\x2c\xf7\x34\xac\x5d\x28\x06\xcc\xf2\x5c\x6b\x14\x69\x98\xe5\xb9\xb6\xa4\x61\x53\xc2\x36\x45\x78\xad\xd1\x95\x9c\xe8\x0e\xe1\x0c\x30\xa9\xe5\x5d\xd1\xb0\xac\xaf\x4e\xdf\xaa\xb7\x6a\xe9\xa6\xa5\x4d\x35\xd1\xc8\xf5\x1c\x05\x05\x33\x14\x46\x38\x15\x83\xd2\xe6\xb8\x92\x27\x9e\xc0\xea\xa5\x1a\xd7\xfd\xa3\x7d\x56\x1d\x1d\x9b\x88\xc1\x39\xe2\x44\x0c\x4a\x2e\x2f\x46\x67\x63\xdb\x75\xc3\xe8\xe3\xd8\x09\x1e\xca\xf0\xd1\xc1\xc1\x99\x7a\xad\xc3\x7e\x74\x3a\x6f\x18\x1e\x68\xfc\x54\x17\x21\x6c\x27\x22\x1c\xec\xe8\xa0\x46\xcf\xdd\x5a\x42\x8f\xe5\xc4\x2e\x17\x2f\xb4\x88\x3e\x3a\x44\xb6\xc6\xf9\xe8\x60\x1c\x58\xed\xfa\x46\xab\x76\xb5\x49\xf3\xfa\xe9\xcd\xc6\x1c\xdc\x39\x34\xfa\xde\xdf\x9c\x0f\xd0\xc1\xe3\x9a\xf6\x92\x3c\x89\x1a\x4e\xed\xf1\x01\x56\x4a\x02\x8c\xea\x9c\x0e\x11\xd4\x71\xf6\x34\xb0\xd7\x4a\x59\x13\x8e\xae\xb9\xee\xa4\xd5\xf6\x81\x81\xbf\x12\x53\x27\x30\x01\xb8\x64\xfb\x98\xc4\x0c\x80\x7d\xd4\xe2\x52\x4e\x9d\x91\xd3\x60\x8d\xbf\x21\x67\xfc\x37\xb9\x59\x1e\xdb\xaf\x1f\x6a\x45\x4d\x3d\x25\xf4\x0b\x88\xe0\x39\x35\xc8\x5f\x08\x8c\xa8\x68\xfc\x6d\xe4\xe0\xf1\xdf\xaa\x24\x97\xbc\x11\x37\x9c\xca\x8e\x73\x1a\x91\x99\xd9\xbf\x9d\xbe\x7d\xb3\xeb\x45\xdf\xb2\x61\xc1\xe6\x84\x58\x2d\x16\x1a\xc6\xe6\xd2\x28\x43\x31\x13\x5e\x9f\x19\x1d\x16\x3b\xd8\xa0\xe8\xcc\x66\xb3\x1a\x78\x78\x3d\x51\x1e\x5e\x0d\x96\xb5\xd1\x8b\xe1\xd9\xf8\xa3\x19\xe1\x55\x1c\x7d\xa9\x80\x6f\xbd\xa6\x52\x9e\x96\x07\x40\x5b\x65\x49\x1d\xb5\x0b\x39\x9b\x30\x37\x41\x46\x2a\x2c\x6d\xd8\x2c\x73\xb5\x4c\x17\x5c\x49\x26\x31\x30\x77\x5b\xa0\xee\x23\xb0\x31\xd5\xb3\x88\xa8\xb6\xe9\xe0\x9c\xa8\x76\xeb\xa0\x36\x9f\x85\x1d\x28\xb0\x76\x23\xa2\x6c\xb1\x74\x94\x0a\x28\x92\x25\x27\x00\x7d\xc2\x14\x7b\xfa\x9a\x85\x37\xe5\xd7\x13\xed\x27\x39\xad\x09\xa3\xd0\x36\x77\xdc\x55\x67\xe8\x84\x97\xb5\x02\xcc\x86\x6f\x36\xd8\x7c\xf3\x27\xdb\xa7\xfa\xc2\xe1\xd9\xee\xb4\x3b\xc3\x52\xe7\xd7\xea\xdf\x8b\x85\x2e\x62\x6a\xb6\xf9\x06\xf0\xd8\x06\x70\x35\x13\x45\x8b\xcf\xb4\x0a\xbe\x51\xe7\x80\x99\x32\x65\xd1\x02\xa1\xb2\x6c\x12\x1f\xb4\xf5\xe9\x54\x45\xb5\x1f\x23\x78\x0f\xa8\xcc\x7e\xa9\x3a\x21\x48\xdf\xc0\x58\xcc\xc2\xbb\xf4\x55\xac\x1e\x85\xab\x98\x98\x6c\x27\xfb\x52\x8c\x0c\xd5\xbf\x69\x05\xc7\xbe\xdd\xaf\x30\x36\x70\x2e\xd8\x54\x55\xd1\xb3\x26\x9c\xcd\x50\x5f\x62\x2f\x30\x18\xea\xd9\xdd\x4f\x8b\xcf\xaa\xda\x8c\xb2\x0b\xf8\xc3\x93\x15\xfd\x48\x15\xd0\x84\x57\xf1\xe6\xb4\xb4\x0c\x20\xb6\xe7\x87\x81\x7f\x5e\xee\x27\x06\x73\x8a\x6d\xcd\x9e\x0a\xf0\xd5\x00\xf2\xe9\x21\x59\x09\x1a\x72\x3d\x52\x54\x0f\xd8\x0f\xec\xde\xfb\x5a\xe7\x2a\x30\xef\x55\xaa\x57\xd9\x6c\x06\xd2\x10\x10\xdb\x0b\x99\x15\x07\x11\x7b\x1b\x20\x91\x50\xbc\xc0\x66\xb7\x10\x96\xab\x5d\xe6\x0e\x82\xc5\x40\x04\xe6\xf5\xcc\x81\xa3\xf4\x41\xf3\x13\x1f\x12\x94\x6f\x3c\xee\x02\xde\x86\x81\x2e\x07\xb9\x21\xae\x00\xf7\x1b\xf9\xe0\xb1\x66\x0c\x03\x87\x83\x38\x1f\xbb\x99\xcd\x33\xfe\x1b\xfd\xa2\x6e\x4d\x5a\x5a\x36\xdf\x7c\x80\x5a\xe0\x47\xfd\x07\x26\x16\x6b\x8a\xad\x79\xfb\x1f\xe0\x96\x5b\x9f\x30\xfb\x24\xa7\xd0\xcc\xb2\xbe\x35\xa6\x3b\xc7\x64\xfb\xa1\xc3\xc1\x76\x9f\x3f\xea\x67\x59\xbf\x18\x27\xe8\xfe\xf2\x01\x55\xbd\xf5\x92\x57\xfe\xa8\x3f\x88\x83\xb8\xd9\x37\x13\xd5\xe8\x58\x6c\x2f\x4b\xcb\xee\x03\x55\x4a\x60\xd4\x15\x68\xb3\x3a\x4d\x3d\x52\xac\x6f\xbb\xac\x77\xc5\xbe\xd5\xf5\x92\xed\xa6\xfa\x37\xa5\xdc\xc8\x2f\x56\x82\xd1\xfc\x2b\xa5\x29\x57\xc2\x09\xc9\x5e\xd3\xfc\x2b\xa5\x0b\xae\xf2\xe7\xbc\x37\xbd\xde\x50\xc8\x9e\x43\x8e\x9c\x67\x2a\xcb\xf7\x8c\x74\xcf\x3c\x72\x53\x6c\xc4\x0f\x5c\x88\x7e\xef\xd8\xeb\x75\x9b\x04\x5f\x85\xa6\xa4\x55\xaf\x59\x32\xdb\x4b\x36\x62\xb9\x49\x54\x49\x22\xa0\xdc\x5b\xc0\x00\x85\x97\x29\x62\xf8\xd8\xeb\x29\xaf\x24\x88\x3d\xa6\xbd\xdc\xcb\xd0\xbe\x55\x71\xbd\x2e\x40\xc5\xd9\xd4\x6e\x2c\xd7\x54\x13\xa9\xde\xfd\xb4\xd5\xf6\xbe\x6b\xfc\x6d\x6b\x46\x50\x8e\x53\xa4\x74\x6b\x12\x79\xa2\xa8\xd7\xd1\xbe\xd0\x92\xac\x89\x52\x27\x7d\x15\xbf\xe3\xc9\x15\x67\x69\x3a\xb0\x14\xba\x59\x33\x51\xc5\x3c\xb2\xef\x19\x0a\xb5\x59\x20\xcb\x50\x75\x82\xb2\x0d\xdb\x7d\x12\xad\x28\x01\xa6\xfa\xd6\x39\x75\x25\xa6\x3b\xe5\xfd\x05\xeb\xec\x1a\x99\x3f\x2c\xc1\x9d\x05\x4c\x57\xa2\x8a\xe2\xe5\x0e\xf4\x08\xd3\x5d\x67\x0e\xca\xc8\xf4\x3c\xf4\x87\x85\x61\xce\x9f\x6f\x1c\x21\xb4\x5b\x55\x80\x2a\xbe\x2e\xf1\x46\x9d\x79\x02\xd9\xf7\x88\xf1\x0c\x5b\xab\x7c\x21\x55\x21\x66\x76\xc5\xd7\x02\x45\xf9\x70\x9b\x67\xb8\xb4\x8e\x6f\x01\x9e\xe9\xc1\xb2\x1b\x59\x58\x5d\x16\xb2\xaf\xeb\x30\x7d\xb2\x88\xae\x62\x36\x7b\x99\xac\xf8\xd6\xaa\xda\x6d\x09\x86\x18\x65\x03\x75\xf9\x63\x1d\x61\x02\x97\x6c\x76\x2e\x6e\x32\xfc\xa8\xe7\x52\xea\x1a\xea\x7c\x72\x7a\xb6\x8b\xa5\xb6\x8a\xfd\x52\xa2\x4c\x8a\x01\x72\x4b\x95\xe9\x09\xfc\x8d\x32\xdd\x52\x19\x8d\xc2\xeb\xf2\x3c\xd9\xdd\x4c\x7b\x0d\xea\xb2\xef\xb7\xa9\xcf\x77\x19\xcc\x15\xc5\xe9\x4b\xa1\xbf\xcf\x9e\xea\x6f\xa3\x24\xb3\xf3\xac\x51\x7e\x9c\x76\x6d\xca\xbc\x29\xdd\x00\x54\x97\x79\x9a\x28\xed\x44\xc1\x66\xb5\xf7\x71\xf4\x99\xf1\x34\x5c\xd4\xce\xa2\x25\xcb\x41\xc9\x15\x9a\xd2\x53\xa5\x24\x99\xd6\xc2\xe9\x94\xa5\x69\xc2\x37\x15\xdb\xdf\xa7\x4c\xf9\x2c\x30\x26\xeb\x0e\x09\x39\xce\xd9\xdb\x54\xe9\xc6\xcb\xaf\x07\x41\x40\x16\x03\xc3\x21\x6f\x18\x36\x87\x15\x80\x00\x1f\x0f\x02\x90\x39\x8a\xf2\x4f\x54\x79\xd9\x1d\x25\xe5\x7c\x19\xb1\xdb\xf4\x1e\x59\xf3\xe2\x47\x4d\xf0\x25\xe4\x83\x1d\x9a\xa2\x39\xb7\xb6\xc5\x93\x31\x6d\xb0\xab\x69\x8d\xb5\x58\x8b\x37\xe3\xb7\x14\x6b\xd6\x38\x5f\x34\xa7\xd7\xd1\x5c\xb0\x99\x6c\xa3\x1d\xde\xec\xa0\x1f\x78\xa4\x20\x15\xcd\x54\x01\xd9\x30\xf2\x91\x87\xd0\x28\x89\x4b\x2e\x06\xe4\x1e\x9a\xe4\x52\xd0\xa2\x7e\xbc\xb9\x4f\x16\x49\x5a\x1a\x72\xbf\x06\x49\xba\x51\x37\x22\x88\x51\x70\xe1\x84\x5b\x93\xd0\xf0\x2b\xf9\xfb\xcb\xe0\x2e\x2d\x54\x06\xae\xf2\x63\x6f\x1b\x2c\xdd\x5c\x65\xee\xf1\x33\xc8\x4c\x84\x91\x64\xca\xb3\x92\x7a\x6e\x76\xbb\x74\xee\x2e\xa5\x22\x51\x6b\xd6\xde\x70\x3a\xac\xd2\x46\x5b\xf2\xcd\x9b\x44\xb0\x22\x4f\xe8\x5c\x72\x4f\x60\x9f\x5b\xf0\x6f\xd1\x88\x8f\xc1\xaf\x5a\x61\x3c\xf0\x99\x5b\xae\xf0\x42\xb8\x4d\x07\x0e\xb2\x70\xcd\xc2\x28\xcb\x32\xc7\x31\x8e\xbb\x4d\xdf\xe6\x15\x6b\xf1\xbd\x42\x33\x86\x67\x9e\xd5\x8b\xca\x70\x5f\xe2\xf9\x70\x53\x12\x8d\xe2\x31\x85\x22\xb1\x5d\xc4\xe0\x55\xe0\x73\x67\xb5\xc7\xb9\x4c\x92\x05\x0b\x63\x8b\x9b\x19\x84\xca\xbd\x13\xa7\x82\x08\x83\x62\xa0\x31\xde\xf7\x48\x28\x53\xb6\x32\x60\x22\x28\xd8\x73\xef\x19\x76\x0c\x3a\x29\xa5\x6c\x90\x14\x0c\x7d\xe0\x16\x0e\xd9\xb9\xd5\x4c\x41\x10\x6f\xa4\xf8\x51\x9f\xc4\xfa\x85\x53\xa5\x5c\x6b\x1a\xaa\xfc\x59\xf5\xc1\x8b\xd5\x6a\x14\x41\x3b\x05\x41\xd1\x46\x19\x0d\x70\xb5\xbe\xd9\xa1\x27\x58\xbc\xd8\xa4\x59\x11\x9d\x69\xc4\xc6\x39\x67\xa4\xa3\x5a\x46\x15\x70\x2f\xd7\x21\x88\xf1\x20\xd6\xd2\x07\xc2\xe1\x44\x74\x23\xb9\x0f\xfb\x89\xa3\x5d\x27\xf3\x49\x39\xdb\x88\x8d\xcd\x01\x62\x2b\xa5\x25\x92\xf7\x37\x37\xe6\xd5\x9b\xdc\x35\xa4\xc8\xb2\x7d\x3e\x10\x01\xda\x01\x8f\xf2\xc2\x0f\xe6\x70\x38\x1c\x66\xc3\x61\x76\x72\x92\xcd\x66\xb3\xd9\xc1\x55\xa5\xfb\x25\xed\x3d\x0a\x94\xea\x77\x00\xc5\xd0\x44\x4b\x27\x63\xf7\xb6\x53\xe4\x81\x32\x5a\x37\x7e\x37\x5b\xa6\x33\x14\x82\xde\x47\x33\x07\x38\xba\x1b\x9e\x3b\x54\xa3\x33\x0e\xc1\x5c\x31\x47\x47\xd8\x8f\x30\xed\xbc\xee\x57\xd5\xd8\x59\x47\x7c\x5c\x0c\x66\x84\x07\x51\x5e\x24\xb0\x5c\x92\x3e\x9a\x1d\x44\x39\x22\x61\x2a\x9e\xc3\x1b\x4f\x95\xda\x11\x15\x55\xb8\xc7\x6c\xe0\xa8\x67\xa1\x9c\xc0\x91\xe5\x1d\xab\x52\x8e\x07\x1c\x09\x1c\x58\x63\xf5\x28\x3d\x88\xe0\x3a\xf9\x66\xf3\xea\x36\xf7\x0d\xa7\x1c\xa8\xa8\x7b\xd8\x33\xb9\x10\x47\xdc\xe8\xb0\xf0\x31\x55\xc7\xb2\x91\x33\x71\x1a\x32\xa4\x49\xa7\xb2\x2b\xcb\xcf\x08\x0f\x9a\x26\xd8\x6f\x47\xa2\x87\xf2\xb7\xd2\x64\xc5\xa7\xcc\x2c\x95\x64\x3b\x09\x37\x9c\xcc\x69\xe4\xcf\x65\x99\x58\x68\x9d\x66\x17\x76\x98\x5a\xe8\xfb\x3b\x63\xe7\x39\xb0\x43\xa3\xfc\xe6\x67\x1c\x94\xe2\x4b\x65\x5a\x51\xaa\x26\x6e\x96\xfd\xc1\x70\x4b\xb0\x54\x80\x20\x44\x4d\x1d\x27\x70\x52\x11\xc6\xb3\x50\x32\x8a\xce\xd8\x06\xf9\x50\xd5\xa5\xfa\x5a\x05\x04\xab\x45\xf0\xe6\xd5\xf7\x35\x0b\xb2\x96\x2b\x80\xa8\x5d\x0d\x54\x89\x7f\xb0\x7f\xbb\x31\xbb\x2a\xdc\xae\xa5\xba\x6d\x30\xb6\x0f\x2b\x1d\xdb\x90\x20\xfb\xb3\x2f\xe1\x34\xdf\xc3\x76\x16\x85\xa7\x2f\x44\xa2\x9e\x12\xb2\x9e\xf9\x2a\x8e\xed\x36\x4c\xd0\x56\xd8\x8a\xa5\xa3\xb1\x45\xb9\x86\x55\x09\xa9\x6c\xdb\x46\x4a\xbe\x6d\x36\x1a\x31\x4e\xcc\x23\xbb\xf1\x18\xef\x28\x23\x37\xd6\x42\x22\xab\x9f\xd6\x4d\xc0\xf5\x70\x45\x03\xaa\x31\xda\x80\xb1\xbb\x78\x7e\xb9\x37\x70\x86\xc3\xa1\x03\x6f\x3c\x34\xbd\x7d\x4a\x51\x94\x7b\xf5\xa9\x46\x93\x84\x18\x0f\x22\x25\xcf\xab\x2e\xb1\x81\x93\x5d\xe0\xdf\xac\xec\x87\xeb\xf9\x91\x02\x3f\xdc\xec\x2d\xbb\x45\x65\x88\xb3\x35\x6f\x72\xe1\xc5\x7f\x3c\x97\x30\x29\xf1\x60\x92\xc3\x8b\xec\x09\xc5\xf3\xd3\xe4\xf6\x7c\xb0\xcc\x98\xb7\xa6\x4a\xe9\x35\x5f\xa7\x61\xcf\x9c\xa8\xe4\xf3\xda\x69\x81\x43\x9f\x86\xf3\x53\xe9\x91\xe0\xaa\x29\xbc\x1b\xa6\x9a\xd1\x0f\x03\xc6\xe0\x8e\x73\xb3\xd7\x46\x31\xbc\x18\x46\x2b\x91\x6c\x38\xd9\xce\x7a\x48\x15\x28\x1b\xc5\x64\x13\x13\x83\x45\xbd\x0e\x8f\x40\x3a\xea\xa9\xa4\x5d\x3d\xa8\x28\x26\xdb\x7a\xfe\xca\xd9\x2c\x5a\xd1\x53\x95\x65\xf7\xb9\x29\xb1\x7c\x38\xf3\xda\x22\x9f\xea\x69\xe6\x9d\x3c\xd0\x26\xd1\x1c\x20\x3d\x79\x9d\x89\x55\xde\xc1\x59\xf6\xdc\x5a\x02\x98\xb0\x32\x41\x2f\x5e\x81\x2e\x91\x75\x88\xc1\xc1\x4e\x98\x68\x2b\x33\x7d\xcd\xca\x03\x63\x81\xae\xd7\x7f\xa4\xd6\xcd\xed\xf1\x7f\xa7\x23\x36\x5e\xd5\xde\xde\xe4\x76\x74\x49\x91\xb6\xd5\x2f\x16\xf6\xaf\x36\x3b\x67\xa3\xba\xad\x1e\xfa\x4e\x74\xa0\xaf\xe0\x7e\xaf\xa2\x7f\xde\x33\xc4\xac\x87\xbf\x8b\x3b\xd4\xe2\xda\x14\xca\x02\x90\x79\xc4\xe1\xe1\xd6\xcd\x0b\x82\x8d\xde\x36\x25\x37\xca\x9c\x97\x50\xa8\x2e\x73\x9b\x23\xbb\x71\x3d\x56\x30\xc5\x86\x01\x31\x99\x0c\xf7\x91\xbf\x1e\x5a\x0e\x8e\x58\xbd\xae\x54\x5e\xcc\xfa\x32\x29\x39\x3f\xf7\x0d\xee\x27\xf7\x83\x0a\x7e\x0f\xfe\x62\x88\x6f\x74\x18\x0e\xd8\x80\x8f\x98\xba\x4d\x19\x07\xbc\xd4\x86\x61\x14\x57\xc9\x3e\x73\x60\x65\x9c\x86\x51\x5c\x01\x7c\x2b\x4f\x51\xd9\x56\x52\xa9\xf2\x4d\xd6\xf1\x5b\xd5\x43\xfe\x6f\x22\x60\x58\xca\x4a\x14\x20\xb1\x84\xc4\x77\xf3\x78\xa5\x02\xff\x63\x5c\x5e\x09\xaa\xc5\xe7\x95\xd1\x2b\x6f\xc2\xe7\xd5\x69\xcb\x28\xde\x4a\x51\xfb\x73\xbf\xcc\xeb\x79\x63\x0c\xbd\x13\xe3\x1d\x25\x73\x76\xcd\x1a\xb9\x6f\xb2\x7c\xdb\xa8\x6d\x81\xf9\x3e\xde\xf1\xf6\x41\x18\xdf\xc5\x3b\xca\x73\xff\x43\xfc\x5c\xa9\x8a\x12\x23\xf8\x8d\x82\xdb\x8d\xfc\x36\x7b\xb7\xd9\xbb\x9b\xf5\xfd\x30\xa6\x3f\x88\xda\xbf\x87\xd5\xbf\xd5\x0b\xff\x69\x1b\x1e\x42\xea\x87\x4a\xfc\x1f\xeb\xcc\x6f\x32\xda\xa5\x3a\xf2\xed\x74\xc7\x72\xae\x5a\xb2\xdf\x5e\xe8\xf3\xd5\x62\xb1\x99\x84\xf3\xa5\xbe\xc5\x89\x5b\xcb\xbd\x60\xc8\xb7\x60\xd8\x2c\x79\x55\x62\x25\x03\x9d\x2f\xca\x0a\xee\xf9\xe2\xa2\x35\xd8\xc1\x9a\xff\x10\xec\x9d\xec\x79\x75\x05\x55\xb4\xec\x21\xf0\x92\xb4\x7d\x1b\xf8\x2e\xda\x54\x66\xff\xcb\xdd\x61\x1d\x00\x2a\xda\x52\x91\x9a\xa3\xb2\x8b\x10\x7e\xe7\x01\x21\xa7\x29\x86\xa7\xa8\x1a\xcf\x9d\x47\x84\xcd\xc2\x95\x23\xf6\x40\xe9\x52\xe1\x8a\xd1\xf8\xc6\xf9\x62\xb3\xd1\x3b\x4e\x18\x26\xdb\x37\x58\xeb\xed\x4d\xdb\x62\xae\x4b\x30\x24\xef\xfb\xcf\x4a\xf6\x3a\x1f\xbc\x2d\x66\xb6\x04\xc0\x66\xac\xb7\x20\xa3\x8a\x02\xf4\xef\x6c\x73\xa4\x2b\xf9\xe9\xef\xad\x7f\x9b\xb7\xfa\xdf\xec\x9c\x6a\x76\x7f\x1b\x9d\xaa\x6e\xaa\x3c\x81\x54\xb4\xe4\xa7\xed\x0e\xdb\x79\x0a\xf9\x71\xc4\x36\x19\xe3\xff\xc5\xde\x1b\x46\xf1\x6e\x14\x0d\x2a\x55\x3d\x67\xd2\x2a\xfa\x2d\x6f\xc1\xef\x5b\xbd\x56\xae\x6e\xbb\xcf\xbe\x0f\x1d\x75\x3b\x92\xbe\x1b\x56\xf4\x91\x73\x03\xb6\x74\xac\x61\x78\xb5\x9c\x4b\x83\x07\x53\x9e\x08\xe4\xea\x53\xb2\x79\xd4\x67\xcb\xa1\x8e\x76\x2b\xe2\x1d\xb3\x01\x1f\x38\x37\x4b\x27\x70\xde\x0d\x9d\x80\x0f\x9c\x50\x7e\x3f\x19\x3a\x6b\xb2\x12\xa0\x20\x4d\xee\xab\x25\xf6\x81\x11\xc5\x23\x71\x9d\xa5\x22\x8b\x67\x19\x9f\xe1\x03\xa2\x45\xf7\xc1\xf6\x75\x15\x7b\xe4\xb9\xb9\x03\xd4\x06\x78\x7c\xbf\x45\x32\xd2\x3d\xf0\x5c\x3c\x70\xc4\xb5\x13\x80\x1b\xf8\x81\x93\x0a\x27\x50\x8f\xd0\x3a\xf1\xcc\x09\xda\xea\x93\xcf\x9c\x40\xe6\xc2\x6b\x78\x16\x00\x8c\xdf\xf2\x1b\x7a\x08\x56\xab\x07\xa8\x64\xf5\xe6\x7e\xa1\x6a\xb0\x12\x06\x08\xa8\x52\x97\x01\xc9\xa8\x6f\x02\x53\x99\x72\x80\x53\x6d\x12\x7e\xc5\xa9\xd1\xc6\x2a\xae\x7a\x2f\xb7\xae\x7a\xcf\x05\x5c\xf6\x59\xcf\x0b\xd9\xba\x69\x0d\x1a\x3f\x8e\x36\xdc\x57\x6a\xf7\xbd\x3a\x09\x3c\xf9\xe6\x7e\x7c\x4d\x7e\xe5\x4e\x94\x55\x39\x21\x9f\xf0\x0d\xf7\xe2\x96\xce\xba\x71\x2c\x0e\x7a\xc9\xf6\x15\xf3\xad\x5d\xa8\x73\xe8\xba\x8f\xd9\x81\xd7\xe9\xb9\x47\xfd\x22\xcf\x33\x3b\x8f\x4a\x7c\xcc\x0e\x64\xe6\x22\xcf\x17\x3b\xcf\x0e\x51\x40\x98\xc2\x13\x2d\xb2\x7b\x4e\x39\xfd\xc2\x91\x72\x67\xf3\x56\x7d\xcb\xcf\x27\x3a\xda\xc1\xe4\x93\xfa\xbc\x76\x30\x39\x53\x9f\x33\x07\x93\xa7\xea\xf3\xd6\xc1\x64\xa8\x3e\x87\x0e\x26\x7f\xa8\xcf\xdf\x1d\x4c\xde\xa9\xcf\x3b\xdb\xf1\xe5\x9f\xdf\x81\xdb\x86\x01\x02\xf8\x80\x1f\xb1\x71\xf0\x26\x7c\xa3\x30\x3e\xe1\xf4\x4f\x5e\xb2\x78\x95\x08\xbf\x51\xb1\x45\xc4\x2b\x93\x4d\x39\x94\xc2\xe4\xb5\x8a\x00\x15\x47\x07\x93\xe7\x2a\x28\x07\xd7\xc1\xe4\xab\xce\xad\x3d\x5e\x92\x97\x2a\x0c\x2a\x2d\x0e\x26\xbf\x72\x4b\x31\x93\xbc\xe7\xf4\x3e\x4d\x83\x4e\x87\xa4\x41\xa7\x4b\x96\xf2\xcf\x75\xe0\xfb\x64\x16\xf8\x3d\x32\x0c\x3c\x6f\x4d\xce\xab\xe6\xe6\x5f\x56\xfb\x91\x7b\xcc\x70\x13\xb1\x63\x17\x67\x59\xc3\x7a\x16\xfe\x1f\xfc\x21\x5b\x96\x0a\xa7\x07\x25\x7b\x7b\xa5\xba\x21\x17\x00\x3d\xcf\xc5\xe6\x56\x57\x81\x99\x04\x89\x8b\x44\xe5\xa2\x35\xb2\x72\x6b\x2f\xad\x82\x4e\x10\x62\x74\x82\xf8\x41\xcf\xc5\x18\xdc\xd3\xf3\x47\xb4\xe7\x12\x26\xff\xee\x29\x7f\x87\x13\x14\x1d\x78\x3e\x26\x21\x8d\x1e\x51\xcf\x27\x29\x8d\xc9\x8a\x0a\xb2\xa0\x8c\x4c\x29\x1f\xf0\x96\x48\x9e\x47\x5f\xd8\x0c\xb5\xed\x57\x1e\x5b\x03\xb7\xa1\x5e\x79\x0c\x1c\x87\xcc\xa9\x9e\x96\xa7\xc6\x74\x0b\xd8\xa9\xb9\xb1\xdf\x79\xe7\x9e\x28\xa5\x84\x6b\x3a\x3f\x76\x07\x4e\xd3\x91\xa5\x66\xf4\xaf\x0d\x9c\xf7\xa9\x8c\x9a\x63\x93\xe3\xa6\xc8\x01\xcd\xdc\x4c\x5f\x5a\x10\xec\x3e\xda\xc8\x67\x28\xc7\x75\xc3\x79\xe7\x34\x50\x32\x98\x35\x92\x86\xf3\x01\x1e\x4e\x69\xa0\x70\x30\x6b\x84\x0d\x67\xa8\x83\xe9\xe0\xa6\x91\x36\x9c\x13\x1d\x5c\x65\xd9\x22\xcb\xa6\x03\xe7\xcc\x44\x0c\x96\x8d\x55\xc3\x79\xa9\x83\x8b\xc1\xb2\xb1\x28\x4a\x4f\x07\xcb\xc6\xb4\xe1\x9c\x42\x10\xa6\xfb\x07\x5e\xf2\x49\x6b\x70\xf9\xf0\x90\xe5\xb2\x6a\x92\x4e\x5f\x93\x0f\x5c\x4e\xc3\x1d\x8a\xfa\xb0\xc0\xca\x8a\x35\x25\xd5\xdd\xab\xca\x1e\xb2\xdf\x72\xb8\x2a\x4f\x25\x7b\x44\xac\xd2\x6a\x84\xca\x16\x85\x90\x5e\x8e\x29\xcc\x0f\x75\xa2\x15\x6f\xf4\x90\x75\x21\x08\x18\x13\x46\x1d\x0b\x9f\xb9\xa5\xa3\xc9\x9a\xd7\xad\x74\xd5\x20\x12\x3e\x8d\x3e\xe8\x07\xe5\x9e\xaa\xf2\x02\xf8\x92\x17\x87\x64\x0f\x43\xde\xdc\x0a\xf3\x9b\x05\x9a\xba\x44\xf8\xbd\x76\x08\x55\xa6\x07\x76\xff\x80\xfa\xb2\x52\x0c\x2a\x1b\x37\x1b\x0b\x63\x65\xd8\xac\x34\xc1\xe5\x37\xd6\xf6\xca\xb9\x55\xaa\xdc\xd8\x62\xa5\x21\x9e\x2b\xb0\xe8\xad\xed\x96\x23\x81\x89\xb1\x6c\xd6\x06\xc7\x46\x20\xb5\x61\xc8\x6c\xa2\x0f\xda\x7b\x96\x1d\x74\x1e\xeb\xf9\x4a\x8f\xab\xaa\x76\x4b\xc7\xfd\xd9\xc6\xfc\x28\x6a\x57\xc6\xcb\x66\x5e\x1e\xf4\x1b\xb1\xf1\xcf\x54\x58\x0f\x9b\x54\xd3\x1e\xdb\x26\x58\xa7\xf9\x9d\xc7\x32\x19\x1c\x44\x95\x2c\x7b\xf3\x5d\xb4\xe3\x42\x8e\x1e\xeb\x94\xcd\x78\x75\x86\xc3\x5e\xc7\x55\x39\x3c\xd6\x36\x20\x0a\x3b\xf2\x60\xdb\x2c\x0d\x50\x79\x2c\x70\x23\xce\x9d\x48\x89\x6b\x9e\xdc\x82\xc1\xe9\x33\xce\x13\x8e\x9c\xf7\xf1\xa7\x38\xb9\x8d\x6b\xab\x38\x12\x35\xa7\x21\x77\x63\x35\x4d\x6c\x97\x6c\xf4\x94\xab\x48\x4d\x16\xe9\x5b\x6e\x32\xa9\x85\xf0\x44\x87\x5f\xc2\x02\xf8\xa4\x43\x27\x72\x51\x9e\xe9\x80\x32\xff\x79\x6a\x0a\xaa\x55\x31\xd4\xc1\xdf\x8d\x15\xd5\x1f\x3a\xe2\x03\xac\x8f\x77\x10\xfa\x86\x15\xdd\xe6\x3e\x5d\xe2\xa9\x74\x17\x14\x43\x6e\x0f\xf2\x23\xcf\x7f\xec\x77\x8f\x7c\xd6\x6b\xb4\xbd\x6e\xbb\xc7\x7a\x8f\x6f\x4b\xb3\x40\x6e\x28\xb0\xdf\x4b\x34\x34\x7f\xb5\x45\xbd\x8a\x57\x80\x2b\x56\x09\x09\xad\xf9\x46\xd2\xd2\x2c\x97\xdb\xd3\x16\xe1\x73\x8f\x69\x02\xfe\x87\x43\xf8\x9b\x66\x59\x72\x4c\xdd\x7a\x3d\x84\xbf\xe9\x31\x75\xb3\x0c\x25\x0d\xaa\x1a\x36\xe1\x72\xe2\xa6\xb8\x11\x62\x92\xd2\x90\xc2\xd3\x6c\x25\xba\x96\x3c\x92\xdb\xac\xdc\x3d\x13\xb0\x4b\x24\xab\x9c\xaa\xc1\xcb\x2e\x72\x73\x55\x2f\xbe\xac\x72\xb2\x26\x64\x02\xa7\x13\x24\x74\x82\xb6\xc6\x78\xe4\x77\x48\xda\xa0\x11\x9d\xa0\x5b\x8e\xc2\x06\x6c\xc9\x7e\x07\x63\x4c\xc2\x26\x55\xb8\x44\xe0\x7a\x61\x82\xa0\xef\x48\x0a\x5b\xf1\x4a\xd9\x3f\x85\xb2\x0a\x35\xee\x29\x59\x69\x12\x18\x17\x84\x6f\x97\xef\xba\x73\x61\xfc\x5f\x7c\xd8\xe9\x94\x47\x91\x1f\x52\x31\x21\x46\xac\xe1\xa4\xce\x18\x15\x03\x59\xea\x9f\x13\x98\x62\x26\xf4\x86\xab\x0c\xaa\x1f\x5e\x41\x48\x35\xfe\x35\x7c\x43\x3b\x9e\xc3\xe7\x86\xf1\x5c\x8e\xc9\x24\xb7\xb6\x49\x11\x3e\xe8\x2b\xac\x75\xb3\xbf\x42\x49\xd5\xf0\x97\x0a\xb8\xf6\x60\xf4\x9d\x44\xf9\x7b\x78\xae\xd2\x1b\xf1\x64\x45\x16\xf0\x06\xf0\x56\x49\x72\x4d\x91\xa0\xfb\x8c\x70\x3a\x97\x6c\x98\xee\x64\xb0\x28\x91\x6c\xd8\xaf\x1c\xc5\x92\x3f\x97\x5c\x38\x26\x49\x11\x06\xeb\x85\xb0\x08\x5f\xcb\x70\x5a\x84\x67\x32\xbc\x2a\xc2\x43\x19\x5e\x14\xe1\x3b\x19\x46\x53\x1a\x1d\xd3\xf7\xbc\x95\xa6\xf5\x3a\xb8\x42\x8d\xc6\x59\x16\x1d\xcb\x18\x88\xd0\x31\xc9\x31\xf5\x64\x78\xe9\x40\xe0\x3d\x6f\x2d\x21\xb8\x74\x48\x32\xce\xb2\x50\x27\x5f\x3b\x10\x78\xcf\x5b\xd7\x10\xbc\x76\x48\x38\xce\xb2\x54\x27\xcf\x1c\x08\xbc\xe7\xad\x19\x04\x67\x0e\x49\xc7\x59\xb6\xd2\xc9\x43\x07\x02\xef\x79\x6b\x08\xc1\xa1\x43\x56\xe3\x2c\x5b\xe8\xe4\x3b\x99\x3c\x72\xee\xee\x1c\xb2\x18\xe3\x91\x3f\xa6\x82\x4c\x47\xed\x31\x75\x8f\x81\x9c\x90\xe9\xa8\x33\xa6\xbc\xd2\x17\xb7\xd1\x98\x2d\xa9\x19\x22\x91\x65\x1e\xd9\xdf\xe7\x84\x91\x18\xaf\xed\x27\xd7\xa6\xb8\x38\x1e\xd6\xeb\xe8\x9a\xce\x2d\xbd\x41\xa4\xaa\xbb\xc6\x98\xcc\x6d\x0f\x63\xd7\x6a\x92\xd9\x9e\x02\xfe\xc1\x55\xcc\x46\x10\x0c\xae\x55\xa0\xf0\x1e\xf3\x61\xd3\x7b\x8c\x82\x95\x9a\xc2\xa7\xc8\xb1\x82\xdb\xde\xea\xad\x67\x24\x4a\x56\xda\xe6\xa0\x5c\x43\x71\x22\xa2\x29\x03\x67\xf5\xd3\xf0\x26\x12\xe1\x22\xc5\x0e\xf9\x07\xc7\x50\xb7\xf6\x68\xf3\x1e\x39\xff\xd4\xae\x3d\x57\x71\xf4\x45\x79\xfb\xfc\xa2\x63\xf4\x1e\xa0\x5f\x9b\xfa\x52\xf8\xc3\xfe\xa7\x43\x0e\x46\x8d\xe6\x78\x70\x31\x6b\xc0\x6b\x3f\xf7\x1e\x69\xaf\xf1\xe0\x40\x39\x44\xfe\xa7\x53\xe9\x5b\xb8\x78\x89\xd0\x63\xed\xc7\xf6\x93\x23\xf0\x42\xba\xf2\xaf\x2c\xab\x79\xb8\xf0\xad\x64\x79\x40\x32\xa1\x9f\x68\xa4\x8e\xdf\xf2\x3b\x2d\xd7\x21\x8c\x7e\x12\x84\xb7\xe6\x31\xbd\xe6\x44\xf9\xe0\xa9\xb0\xd4\x15\xc8\x31\x8e\x80\x1c\x32\x1a\x2b\x2d\x5a\x25\xda\xca\x1f\xdf\x23\x12\x21\xa2\x1c\xfa\xec\x02\x01\x7e\x89\xbe\x09\x21\xb6\x7d\x9f\xe5\x10\xc0\x2d\x43\x9c\xdc\x0e\xcc\x07\xc2\x41\xc3\x34\x51\x16\x03\x13\x2a\xb2\x69\x07\x5f\xd0\xde\x4f\xea\x19\x1f\xa6\xb0\x7c\x40\x31\x53\x2b\xaf\xe7\x87\x5b\x99\x3f\x4a\x41\x15\x38\x25\xf9\x8c\x5c\xc9\x7e\x33\xaf\x5d\xdc\x10\xde\x9a\xe9\x17\x0d\xe8\x39\xa4\xa4\xea\xd9\x51\x7a\x49\x76\x28\x0f\x58\xf2\xae\x5c\x3d\xdd\x31\x39\x55\xad\x95\x36\x57\x79\x73\xaa\xdf\x40\x2c\x0a\x21\x80\x61\xad\x99\xa9\x42\xec\xc4\x20\xfa\xa7\x20\xdf\xa1\xd0\x59\xee\x0e\xc8\xa8\xb0\xab\x56\x27\xf8\x46\xc3\x86\x51\xac\x4a\xcf\xd8\x3c\x8a\x99\xba\xcf\xa5\x0b\x91\x1b\xd0\xe9\x98\x2d\x77\x4e\xc6\x50\xa0\x78\x65\x8a\xc6\x42\x9b\x85\xa1\x98\xa6\xe6\x99\x8c\x88\xc6\x46\x15\x18\x13\xc4\x61\x15\x0c\x91\xa0\x4f\x51\x44\x04\xc6\xd0\x3f\x2c\x16\xba\x9a\x08\xf4\xd2\x23\xa5\x4d\x4e\x56\xc5\xab\xdc\xda\xb0\x50\x26\xd4\xeb\xc8\x0a\x95\xca\x0f\x54\xc9\xed\x84\xa0\x54\x5e\x3f\x85\x0c\xa1\xc2\x3c\x41\x86\x8a\x11\xaa\xda\xa4\xdf\xa2\x48\x94\xba\x7a\x7b\x98\x1e\xec\x6c\x6b\xb0\x62\x49\x83\x17\xd1\x57\xf6\x3e\x8e\x44\x4a\xff\x24\x65\x95\xf2\x3f\xe4\xe9\x62\xd3\x77\x8b\x99\x00\xc5\x0b\x1b\xbf\xf2\xc0\x31\x39\x2c\xfb\x89\x7a\x1d\xfd\xca\x29\x03\xcb\xbb\x0d\xc0\x67\xd7\x9c\xa5\xd7\xc9\x62\xc7\x61\x51\xc1\xde\xa7\xf4\x3d\x57\x3d\x9d\x57\x26\x06\x10\x15\x20\xf8\xa1\x82\x38\x29\x9c\xcf\xea\x75\x04\xfb\x31\x15\x4d\x0f\xcb\x1a\xa1\xca\xb2\x77\xe3\x4a\x25\x1d\x06\xde\x84\x91\x20\x4a\x86\x05\xc6\x88\xe6\xf8\x75\xdc\xec\x0d\x0a\x47\xc8\x01\x3f\x6e\x7a\x03\x67\x11\xa6\x42\x79\x71\xe2\xc7\xae\x0a\x9e\xc0\x29\xea\xd8\x53\x99\x75\xc8\x1f\x38\xfa\xb1\x5f\x19\xea\xab\x90\x2a\x58\xc0\x84\xe5\x6c\x84\x12\x8a\xd8\xbe\x3c\x1b\xbe\xee\x4e\x9e\x0f\xcf\xe8\xfd\xc9\x93\xb3\x67\x67\xaf\x86\xcf\x26\xaf\xdf\x3e\x7d\xf2\x3a\xd8\x7a\x9a\xc5\x21\xe5\x1c\x93\xd3\x67\x4f\xdf\xbe\x39\x39\xdd\xce\x19\x48\x96\x64\x23\xf3\xb0\x3a\x1f\x78\x39\x81\xbc\x76\xb2\x43\x64\xc9\xc0\xd1\xf5\x02\x98\xbc\xb6\xa2\x0a\x88\x1f\x5a\x51\x0a\xda\xf9\xb3\x67\x7f\x0f\xe0\x29\x86\xe6\xe8\x7c\x7c\x7e\xee\x90\xe1\xdb\x37\x67\x2f\xf3\x0a\x64\x3f\xac\x71\x85\x27\xf1\x5c\x9c\xc7\x90\x16\x46\xe7\x31\x11\x0a\x49\xaa\xd8\x4d\x3e\x0a\xc7\x9a\xf1\x84\x2f\x65\x31\x53\x31\x25\x39\xfb\x6b\x15\x71\x56\xaf\xeb\x0f\x90\x8f\xa5\xf5\xfa\xca\xb0\xa8\x2b\x14\xc2\x0c\x88\xe6\x28\x31\x71\x89\x8e\x93\x50\x17\xd4\x3a\x7d\x3e\x0d\xe3\x38\x11\xb5\x79\x14\xcf\x6a\xcb\x64\xb6\x5a\xb0\xda\xdf\x9c\x46\xd8\x70\xfe\xe6\xe0\x3d\x75\x56\x5d\xb4\xa6\xc9\x8c\x51\x67\xf8\xf6\xe4\xfd\xeb\x67\x93\x37\x6f\xcf\x26\xcf\xdf\xbe\x7f\x73\xe2\x90\x05\x88\xa5\xa6\x54\xe2\x4e\xef\xd9\x97\x9b\x84\x8b\x34\xb8\x5f\xaf\xf7\x64\x1b\x46\xae\x76\xb2\x3d\x6d\xe9\x24\xb2\x79\x41\xc1\x29\x64\xf4\xc6\x23\x96\xdb\x55\x44\x88\x67\x99\xdc\xca\xa6\xa4\x28\x68\xe4\xf8\xb9\xeb\xe5\x51\x38\x36\x89\x6b\xe3\xdc\x2e\xf9\x9e\xee\x22\x21\x75\x7f\x0e\x8f\x63\xe3\x96\x2e\x6c\x34\x70\x84\x62\xd9\xe7\x85\x75\xd5\x1a\x61\x74\xef\x05\xa3\x4d\x72\xe4\x48\x16\x4b\xb9\x67\x71\xf6\x18\xf2\x0b\x1b\x2e\x14\x53\x86\xbc\xae\xa4\xd3\x71\x6b\x32\x61\xe9\x10\x3a\x73\x10\x07\xf7\xe6\xe4\x1f\xaf\xf7\x22\xe3\xce\xb6\x35\xb9\x0c\x2f\xd9\xe2\x5d\xb2\xb8\x9b\x47\x8b\x45\xbd\xee\xac\x62\xb5\x6d\xcc\x0a\x6b\xc3\x69\x12\xa7\xc9\x82\xd5\xeb\xfa\xa3\x75\x1b\xf2\xb8\x1c\x42\xce\xff\x1f\x00\x1d\xdc\x68\x48\x92\x35\x5c\x24\xe1\x8c\xcd\x94\x29\xa0\xb8\x0e\xe3\x5a\x12\x4f\x59\x2d\x51\x87\x97\xda\x4d\x78\xc5\x5a\xb5\x33\xf9\x29\x43\x3c\xb9\x0c\x2f\x17\x77\xf0\x0e\xf6\x8c\xa5\x11\x0f\x2f\x17\xec\x20\x8a\x05\x8b\x67\xfa\x09\xeb\x65\x78\x57\xbb\x0e\x3f\xc3\xf3\x46\x29\xfb\x6b\xc5\xe2\x29\x4b\x6b\xd1\xbc\x26\xa9\x0e\x93\x3b\x43\xfe\x40\x76\x0d\xac\x9d\x59\xcd\xa0\xa3\xde\xc4\x96\xbb\x79\xc4\x66\x35\x55\x58\x44\xe1\x62\x71\xd7\xaa\xbd\x9a\xd7\xee\x92\x55\x6d\x96\xd4\x62\xc6\x66\x35\x91\x00\xe2\xa5\xe2\x1b\x6d\x50\xc6\x9f\x1b\x2d\x3e\x88\x93\xa7\x49\x3c\x5f\x44\xd3\xdc\x08\x54\xc2\xba\xbc\xbb\x09\xd3\x14\xa0\x69\x6b\x49\x78\xf6\x6c\xc7\x00\xd0\x7d\x77\x4d\xee\xbd\x6e\xe0\x75\x89\x1f\xf8\xeb\x31\xf1\xbf\x39\xfa\x6d\x4c\x18\xea\xca\x3f\x1d\xf9\xc7\xf3\xe0\xaf\x0b\x7f\x21\x4d\x9e\xbf\x19\xf2\x20\xb5\x2f\xff\x1c\xca\x3f\x3d\xf9\xe7\x48\xfe\x69\xbb\x3d\xf5\x23\xcf\xa8\xf7\x9e\x1b\x78\x2e\xf1\xbc\xc0\xf3\x88\xe7\x07\x9e\x4f\xbc\x76\xe0\xb5\x89\xd7\x09\xbc\x0e\x69\x07\x6d\xd2\x76\x7b\x41\xdb\xed\x91\xb6\xdb\x0f\xda\x6e\x9f\x74\x82\x0e\xe9\x06\x5d\xd2\x0b\x7a\xa4\x1f\xf4\xc9\x61\x70\x48\x8e\x82\xa3\xf5\x98\xb4\xb7\x91\x67\xc8\xef\x43\xfd\xbe\x42\xc8\xf7\x7a\xea\xa7\xab\x7e\x54\x9a\xef\xaa\x1f\x1d\x79\xa4\x7e\xfa\x2a\x52\xff\xa8\x72\xbe\xaf\x7e\xda\xea\xc7\x53\x39\x75\x48\xd5\xe0\x6b\x98\x00\xc5\x3b\x54\x3d\x73\xa8\x3a\xe5\x50\x15\x68\xeb\x1f\x55\xad\xab\xa1\xe8\x1f\x55\x83\xab\x7f\x14\x68\x57\x81\x76\xbb\x58\xae\x3f\xd5\x81\xbe\xab\x30\x73\x55\x7d\xae\xc6\x5a\xd7\xa7\x06\xe7\xb0\xab\x7e\x7a\xea\xa7\xaf\x7e\x0e\xd5\x8f\x42\xf0\x48\x15\x38\x52\xe3\x78\xa4\xf0\x3c\x52\x23\x79\xa4\xa0\x1c\x29\x28\x47\x0a\xca\x91\x82\x72\xa4\xa0\x1c\xa9\x6a\x5d\xd5\x94\x9e\xea\xc1\xbe\x0a\xf5\x15\x82\x3d\x85\x60\x4f\x67\x51\xcd\xec\xa9\x36\xf4\x3d\x68\x51\x5f\x35\xb3\xab\x22\xbb\xaa\x5c\x57\x95\xeb\xaa\x1a\x7a\xaa\x43\x7a\x2a\x67\x4f\x75\x48\x4f\xd7\xa0\xb2\xf4\x55\x96\xbe\x4a\xeb\x6b\x5c\x14\xd6\x2a\xe4\x29\x94\x3c\x13\xa9\xba\x40\xcd\x10\x4f\x81\xf6\x14\x82\x5e\x4f\x47\xea\x72\x2a\xb2\xaf\xb3\xa8\x3e\x53\xb5\x7b\x5d\x0d\x53\x75\x5d\x17\xc6\xc8\xeb\xeb\x2c\xaa\x06\x85\xbc\xa7\x1a\xed\x75\x55\xb7\x76\x75\x48\x65\x51\xad\xf5\x14\xf2\x9e\x6e\x5f\x47\xb5\xaf\xa3\x7b\x42\x47\xaa\xd6\x76\x55\x7f\x76\x55\x7f\x76\x55\xdb\xbb\xaa\x7b\xda\x7a\xba\xe9\x6e\x55\x3d\xa1\x46\xda\x57\x23\xed\xab\xb6\xfb\x6a\x7e\xfa\x6a\xa2\xf8\x6a\x6a\xf8\x87\x3a\x4d\x15\x3f\xec\xc1\x18\xa9\x29\xe5\xab\x49\xe4\xeb\x99\xac\xe6\xb5\xdf\xd6\xd5\xaa\x2c\x6d\x05\xac\xad\x46\xb3\xad\xdb\xa0\x2a\x6a\xab\x1a\xda\xaa\x86\x8e\x82\xd2\x51\x50\x3a\x0a\x4a\x47\x37\x53\x15\xef\x74\x31\x11\x66\xd3\xa3\x0c\x75\x7d\x20\x1b\xdd\x4e\xe0\x75\x3b\xc4\xeb\x4a\xe2\xd5\x25\x5e\xb7\x17\x78\xdd\x1e\xf1\xba\xfd\xc0\xeb\xf6\x89\xd7\x3d\x0c\xbc\xee\x21\xf1\xba\x47\x81\xd7\x3d\x22\x5e\xcf\x0d\xbc\x9e\x4b\xbc\x9e\x17\x78\x3d\x8f\x78\x3d\x3f\xf0\x7a\x3e\xf1\x7a\xed\xc0\xeb\xb5\x89\xd7\xeb\x04\x5e\xaf\x43\xbc\x5e\x37\xf0\x7a\x5d\xe2\xf5\x7a\x81\xd7\xeb\x11\xaf\xd7\x0f\xbc\x5e\x9f\x78\xbd\xc3\xc0\xeb\x1d\x12\xaf\x77\x14\x78\xbd\x23\xe2\xf5\xdd\xc0\xeb\xbb\xc4\xeb\x7b\x81\xd7\xf7\x88\xd7\xf7\x03\xaf\xef\x13\xaf\xdf\x0e\xbc\x7e\x9b\x78\xfd\x4e\xe0\xf5\x3b\xc4\xeb\x77\x03\xaf\xdf\x25\x5e\xbf\x17\x78\xfd\x1e\xf1\xfa\xfd\xc0\xeb\xf7\x89\xd7\x3f\x0c\xbc\xfe\x21\xf1\xfa\x47\x81\xd7\x3f\x22\xde\xa1\x1b\x78\x87\x2e\xf1\x0e\xbd\xc0\x3b\xf4\x88\x77\xe8\x07\xde\xa1\x4f\xbc\xc3\x76\xe0\x1d\xb6\x89\x77\xd8\x09\xbc\xc3\x0e\xf1\x0e\xbb\x81\x77\xd8\x25\xde\x61\x2f\xf0\x0e\x7b\xc4\x3b\xec\x07\xde\x61\x9f\x78\x87\x87\x81\x77\x78\x48\xbc\xc3\xa3\xc0\x3b\x3c\x22\xde\x91\x1b\x78\x47\x2e\xf1\x8e\xbc\xc0\x3b\xf2\x88\x77\xe4\x07\xde\x91\x4f\xbc\xa3\x76\xe0\x1d\xb5\x89\x77\xd4\x09\xbc\xa3\x0e\xf1\x8e\xba\x81\x77\xd4\x25\xde\x51\x2f\xf0\x8e\x7a\xc4\x3b\xea\x07\xde\x51\x9f\x78\x47\x87\x81\x77\x74\x48\xbc\xa3\xa3\xc0\x3b\x3a\x22\xbe\xeb\x06\xbe\xeb\x12\xdf\xf5\x02\xdf\xf5\x88\xef\xfa\x81\xef\xfa\xc4\x77\xdb\x81\xef\xb6\x89\xef\x76\x02\xdf\xed\x10\xdf\xed\x06\xbe\xdb\x25\xbe\xdb\x0b\x7c\xb7\x47\x7c\xb7\x1f\xf8\x6e\x9f\xf8\xee\x61\xe0\xbb\x87\xc4\x77\x8f\x02\xdf\x3d\x22\xbe\xe7\x06\xbe\xe7\x12\xdf\xf3\x02\xdf\xf3\x88\xef\xf9\x81\xef\xf9\xc4\xf7\xda\x81\xef\xb5\x89\xef\x75\x02\xdf\xeb\x10\xdf\xeb\x06\xbe\xdc\x9d\xbc\x5e\xe0\x7b\x3d\xe2\x7b\xfd\xc0\xf7\xfa\xc4\xf7\x0e\x03\xdf\x3b\x24\xbe\x77\x14\xf8\xde\x11\xf1\x7d\x37\xf0\x7d\x97\xf8\xbe\x17\xf8\xbe\x47\x7c\xdf\x0f\x7c\xdf\x27\xbe\xdf\x0e\x7c\xbf\x4d\x7c\xbf\x13\xf8\x7e\x87\xf8\x7e\x37\xf0\xfd\x2e\xf1\xfd\x5e\xe0\xfb\x3d\xe2\xfb\xfd\xc0\xf7\xfb\xc4\xf7\x0f\x03\xdf\x3f\x24\xbe\x7f\x14\xf8\xfe\x11\xf1\xdb\x6e\xe0\xb7\x5d\xe2\xb7\xbd\xc0\x6f\x7b\xc4\x6f\xfb\x81\xdf\xf6\x89\xdf\x6e\x07\x7e\xbb\x4d\xfc\x76\x27\xf0\xdb\x1d\xe2\xb7\xbb\x81\xdf\xee\x12\xbf\xdd\x0b\xfc\x76\x8f\xf8\xed\x7e\xe0\xb7\xfb\xc4\x6f\x1f\x06\x7e\xfb\x90\xf8\xed\xa3\xc0\x6f\x1f\x11\xbf\xe3\x06\x7e\xc7\x25\x7e\xc7\x0b\xfc\x8e\x47\xfc\x8e\x1f\xf8\x1d\x9f\xf8\x9d\x76\xe0\x77\xda\xc4\xef\x74\x02\xbf\xd3\x21\x7e\xa7\x1b\xf8\x9d\x2e\xf1\x3b\xbd\xc0\xef\xf4\x88\xdf\xe9\x07\x7e\xa7\x4f\xfc\xce\x61\xe0\x77\x0e\x89\xdf\x39\x0a\xfc\xce\x11\xf1\xbb\x6e\xe0\x77\x5d\xe2\x77\xbd\xc0\xef\x7a\xc4\xef\xfa\x81\xdf\xf5\x89\xdf\x6d\x07\x7e\xb7\x4d\xfc\x6e\x27\xf0\xbb\x1d\xe2\x77\xbb\x81\xdf\xed\x12\xbf\xdb\x0b\xfc\x6e\x8f\xf8\xdd\x7e\xe0\x77\xfb\xc4\xef\x1e\x06\x7e\xf7\x90\xf8\xdd\xa3\xc0\xef\x1e\x11\xbf\xe7\x06\x7e\xcf\x25\x7e\xcf\x0b\xfc\x9e\x47\xfc\x9e\x1f\xf8\x3d\x9f\xf8\xbd\x76\xe0\xf7\xda\xc4\xef\x75\x02\xbf\xd7\x21\x7e\xaf\x1b\xf8\xbd\x2e\xf1\x7b\xbd\xc0\xef\xf5\x88\xdf\xeb\x07\x7e\xaf\x4f\xfc\xde\x61\xe0\xf7\x0e\x89\xdf\x3b\x0a\xfc\xde\x11\xf1\xfb\x6e\xe0\xf7\x5d\xe2\xf7\xbd\xc0\xef\x7b\xc4\xef\xfb\x81\xdf\xf7\x89\xdf\x6f\x07\x7e\xbf\x4d\xfc\x7e\x27\xf0\xfb\x1d\xe2\xf7\xbb\x81\xdf\xef\x12\xbf\xdf\x0b\xfc\x7e\x8f\xf8\xfd\x7e\xe0\xf7\xfb\xc4\xef\x1f\x06\x7e\xff\x90\xf8\xfd\xa3\xc0\xef\x1f\x11\xff\xd0\x0d\xfe\x3f\xda\xde\x75\xbb\x71\x63\x4b\x13\xfc\xaf\xa7\x10\xd1\xa7\x50\x11\xc9\x4d\x08\x00\xef\x21\x85\xd8\xe9\xb4\xd2\x27\xfb\x38\x2f\x95\xca\x63\xd7\x29\x1e\x96\x16\x44\x06\x45\x38\x49\x80\x07\x00\xa5\x94\x05\xd6\x72\xcf\x4c\xcf\x75\xad\x79\x80\xf9\x33\xfd\x77\x7e\xcd\x3b\xd4\x9b\xb4\xe7\x45\x66\xc5\x0d\x08\x90\x20\x53\x76\x55\xdb\x6b\xa5\xc0\x00\x10\x88\xeb\xbe\xc5\xde\xdf\xf6\x07\x2e\xf8\x03\x8f\xf8\x03\x0f\xfc\x81\x4f\xfc\x81\x0f\xfe\xa0\x4d\xfc\x41\x1b\xfc\x41\x87\xf8\x83\x0e\xf8\x83\x2e\xf1\x07\x5d\xf0\x07\x3d\xe2\x0f\x7a\xe0\x0f\xfa\xc4\x1f\xf4\xc1\x1f\x0c\x88\x3f\x18\x80\x3f\x18\x12\x7f\x30\x04\x7f\xe8\x12\x7f\xe8\x82\x3f\xf4\x88\x3f\xf4\xa0\xeb\x93\x2e\x97\x7f\x3a\xb5\x22\x04\xe7\x8a\x3b\x34\xc8\x11\x68\x0d\xce\x7c\x19\x64\x6f\x83\xf5\x16\x9e\xfc\xa1\x4f\xfc\xa1\x5f\xd4\xd4\xad\xaf\xa9\x7d\xa8\xa6\x30\x9a\x2e\x37\x33\x96\x8a\xaa\xda\xc4\x1f\xb6\x8b\xaa\x7a\xf5\x55\x75\xf6\xab\x92\xb8\xb4\x0e\x8b\xb2\x24\x54\x55\x75\x88\x3f\xec\x14\x55\xf5\xeb\xab\xda\xa7\xb1\xba\xaa\x3b\x96\xbd\x7f\x88\x3e\x24\xf1\x9a\x25\xd9\xe3\xb7\x2c\x9d\x26\xe1\x3a\x8b\x13\x59\x79\x97\xf8\xc3\x6e\x51\xf9\xa0\xbe\xf2\xde\xc1\xca\x85\x75\x55\xd6\xd4\x23\xfe\xb0\x57\xd4\x34\xfc\xba\x12\x22\x59\x9c\xcf\xa5\x91\xdd\xda\x3f\x24\xf1\x2a\x4c\x99\x33\x0f\x23\x2e\x73\xf3\xfa\xf5\xf6\x1d\xf6\x89\x3f\xec\x17\xdf\xf1\xdc\xfa\x26\x0f\xf6\x2b\x95\xd6\x65\x67\x1d\xcc\xae\xa2\x99\x68\xf2\x80\xf8\xc3\x41\x59\x55\x8d\xe2\xc4\xab\x1a\x1e\xab\xea\x3a\x0b\x92\x4c\x54\x36\x24\xfe\x70\x58\x56\x56\x23\x87\x73\x91\xd9\x3b\x58\x59\x96\x84\xab\x8f\xe1\xdd\x82\xd7\xd6\x76\x3d\xd2\x76\xcb\x45\xed\xd5\x0a\xc6\x6d\x2e\xb3\x1d\xa9\xed\x7b\x36\x97\x95\xb9\xa4\xed\xba\x65\x65\xb5\x5b\xa4\xed\xee\x6c\x11\xaf\xeb\x61\x67\x8e\xac\x20\x7d\x8c\xa6\x6f\x32\x96\x04\x59\x9c\x58\x92\x75\x7b\xc4\xeb\x7a\xd0\x76\x7d\xd2\x76\x45\x95\xb5\x7b\xa5\xbd\x5b\xe3\x00\x3b\x77\xcb\xf8\x36\x58\xf2\x4a\x38\xbb\x83\xb6\x4f\xda\xa2\x82\x9a\x1d\x52\xbe\xba\x73\xc4\x55\x6a\xcb\x25\xc0\x0d\x96\x3a\xff\xa7\xc7\x35\x93\x16\x02\xd6\xb4\xb8\x9e\xc8\xd5\xc3\xa0\x30\x65\x34\x4a\x78\x0e\xb6\xdd\xc2\x13\xff\x72\xcd\x86\x52\x69\xbc\x90\x3f\xc0\x27\x07\x5b\xd1\xe0\x17\x47\x3f\x1b\x9d\x4a\xbc\xfb\xdd\xaf\x72\x4e\x35\xe0\x9f\xae\xd9\x6e\x0a\x17\xa4\xf8\xe8\x93\xd2\x50\x89\xe5\x3b\x3d\xa7\x6b\x6d\x4f\x76\x21\x15\x4f\x6f\x6e\x98\x6d\xa3\x9b\x1b\x46\x23\xac\xfa\x54\xb3\xfb\x74\x9f\xbc\x5e\x7d\x9f\x0a\x6c\x18\xde\x2d\x28\x6d\x7e\xda\x12\xc3\x34\x6a\x7c\x22\xbd\x1b\x4e\x3d\xb2\xeb\x05\x67\x24\xc3\x2d\x01\x4a\xb6\xc2\xe1\xe0\xd4\xdf\x7f\x1a\xa2\x9a\xe7\x21\xd2\x6f\xb4\xeb\xde\x30\x4e\xc6\xcc\x77\x20\xc4\xdb\xed\x41\xa7\x3c\xa6\xcc\xf2\x99\x61\x93\xdf\xf2\x89\xf0\xb8\x88\xc8\x75\xe6\x1a\x22\x52\x8e\x51\x83\xd3\x2a\x8c\xf6\xeb\xed\x37\xa8\x22\x83\xd2\x04\xa2\x69\x2c\x7a\xda\x82\x15\x58\xf0\x74\xc7\x32\x52\xf3\xda\x76\x8b\x9d\x60\x8b\x05\x55\x23\x7e\x9b\x37\xa0\x86\xf4\x18\x8b\x10\x42\xfe\xb7\x83\x9d\x59\x3c\x15\xed\x87\x98\x46\x28\xc4\xb6\x1d\xa1\x50\xa2\xfc\xb2\xab\x25\xe3\x77\x0e\x2d\x58\x6d\x4f\x1b\xed\x3c\x8f\x18\x26\x4f\x62\x30\xb8\x7c\xc5\xd9\xaf\x5c\x9b\x7e\x0d\xfd\x2a\x5a\xd4\x91\x2d\xe2\xba\x77\xcc\xff\x0e\x31\x04\xbc\xbc\x27\xa0\x76\x10\xd7\xc2\x37\xb5\xa1\x7c\xe2\x44\x19\x16\x94\xd9\x1b\xe7\x35\xcc\xc4\xdf\xef\x60\x2d\xfe\x5e\xc3\x4a\xfc\xfd\x00\xf7\xe2\xef\x37\xf0\x28\xfe\xfe\x08\x77\x74\x36\x0a\x49\x38\xce\x26\x79\x8e\xf8\x1f\xfa\xb4\xc5\x70\x6b\x66\xed\x83\x1b\x3a\x1b\x45\x64\x3d\x8a\xc6\xd9\x84\xa0\x48\x3c\xfb\xb4\xc5\x26\x92\x52\x9c\xa0\xe5\x69\x18\x9d\xce\x24\x6a\x10\x86\x04\xa3\x29\x6d\x2c\x6c\xfb\xc6\xb6\x0b\xab\xf7\xcd\x78\x39\xc1\xb6\x9d\xa2\x3b\x58\xe2\x3c\x47\x73\x3a\x1d\xf1\x32\x92\x8c\x97\x13\xb8\x1b\x2f\x27\x74\x66\xdb\x35\x24\x88\x3f\x34\xe2\x0f\x91\x7b\xdb\x9e\x8e\x62\x34\x87\x08\x93\x47\xdb\xe6\x37\x28\x9d\x8f\xf6\xbd\x9c\x8b\x12\x65\x5f\x55\x31\x8e\xc2\x1c\x14\x44\x53\x05\xeb\xa8\xf6\x5d\xb1\x76\x95\x05\x50\x6d\x43\x57\x6f\x93\x88\x3d\x9c\xb2\x93\xea\xd6\x14\x65\x28\xc3\x3b\x7b\x50\x15\xf3\xdd\xb9\x5b\x62\xd8\x2a\x8b\x6d\xb3\x08\x53\x73\xe7\x94\x69\x36\x4a\xeb\xb9\x01\xcf\x0e\xd9\x16\xcd\x31\x59\x99\x83\x54\xd0\xaa\xf9\x28\x46\xaf\x55\xa9\xd8\xbf\x30\xc7\x64\x0e\x2b\xdb\x46\xe8\xce\xb9\x0f\x93\x6c\x13\x2c\xf3\xbc\xbc\xe6\x53\x8d\xf9\x00\xce\x81\x2f\x86\x8f\xb6\x7d\x6b\xdb\x8d\xdb\xf1\x72\x62\xdb\x01\xba\x05\x5e\x01\xc6\xdb\x93\x8d\xf3\x9a\x7a\xb0\x71\xbe\xa3\x3e\x6c\x9c\x6b\xda\x81\x8d\xf3\x81\x0e\x60\xe3\x7c\x43\xbd\x1e\x6c\x9c\x1f\x69\x9b\xdf\xf9\x33\xed\xf1\x5b\x1f\xa9\xe7\x0f\x0c\xe6\xb4\x29\x38\x92\xc7\xd5\x25\x50\x9b\x81\x8b\xde\xc0\x15\x0d\x41\x25\x6a\x98\x70\xfd\x66\xcb\x92\xc7\x02\x96\x8f\x21\xbc\x9d\x8a\x04\xba\x59\x19\x57\xbb\x55\xcc\xc7\xaf\x61\xc5\xbb\x1c\xa0\xce\xc2\xfa\x10\x46\xb3\xf8\xc1\xb6\xe5\x5f\xe7\x6d\x90\x2d\xa8\x70\xd6\x1d\xc9\x12\x52\xf7\x52\xca\x96\x73\xdb\xe6\xff\x9a\x2f\xf0\xdf\x44\x4f\x09\xb2\x0c\x77\x11\x0b\x23\x5c\xc7\x6d\xee\x04\xb7\xb9\x2b\xb8\x8d\x5f\xc3\xfc\x65\x27\x9e\xb6\xce\x22\x48\x0d\xe9\xf3\x00\xe7\x29\x11\xec\x24\x4d\x17\x99\x6d\x54\xe5\x35\x82\x41\x41\x87\x86\x92\x0e\xb5\x5d\x93\xea\x31\xe4\xbb\x78\x74\xe0\x40\x2e\x72\xe6\xa2\x24\x44\x9e\x48\x66\x44\x0e\x3c\xc7\x38\x95\x49\x40\xb2\x6b\xae\x38\x03\x57\x2b\x87\xd0\xe6\xa2\x14\x6f\x56\x8d\xd4\x50\xe5\x18\x2e\xb6\xed\xdf\xce\x39\x18\xf2\x3d\x8c\xac\x59\x78\x6f\xe1\xe7\xf2\x10\xd9\x3c\xae\x85\x43\xc1\x4f\x6a\x24\x8b\x63\x7c\x61\x3f\x31\xcf\x48\x9e\x96\x52\x56\x7b\xba\xa8\x27\xe7\x98\x9c\xd1\x57\x6c\xab\x2f\x99\x44\xdb\xe3\x4c\xa2\xb6\xd7\x27\x89\x33\x57\xd3\x56\x7b\x7f\x6f\x92\xb4\x94\x92\xd1\x18\x65\x02\xd3\x95\x0b\x1f\x10\xe2\x72\xe3\x9d\x06\x3a\xcb\xbe\xdc\x7c\x29\x7e\xda\x72\xd1\xf1\x8e\x65\x56\x18\x9d\x26\x79\x6e\xa5\xea\x72\x4f\x86\xb3\x5e\x2a\x00\x48\x29\xc7\xa5\x9b\x35\x1f\x37\x36\x2b\xe5\x38\xe9\x55\x22\xde\xb6\x6d\x24\x17\x8b\xd4\x85\xb0\x5c\x33\x5e\x9f\x78\x7d\x50\x53\xc3\x15\x62\x68\x7b\xa4\xed\x6d\x27\x7c\x05\x3d\x6b\x6a\xca\x5d\xf1\xc4\xa2\xcd\x8a\x89\xf3\x0d\xd2\x40\x9e\xcd\x30\xc8\xc3\xf4\x8d\x2e\xf3\x79\xd9\x43\x12\x66\xea\x77\x87\xff\x16\xcd\x21\x99\x26\x35\xed\xe3\x22\xc6\xc1\x9d\x59\x48\xba\x85\x1c\x28\x4f\xfb\x43\x11\x91\x5f\x47\xe4\x51\x22\xa2\xed\x55\x82\x0e\xdb\x6e\x44\x28\xa4\x0a\x30\xdf\xc0\x23\x16\x15\x1c\x78\x5b\x39\xed\x7c\xe5\xe5\xc6\xbf\xed\xf3\x7b\xd3\xfe\x2a\x88\xfe\x3e\x3b\x9d\xc6\xd1\x3d\x4b\x32\x25\xbb\x9f\x66\xf1\xe9\x3a\x09\x57\x61\x16\xde\xb3\x53\x39\xed\xd8\x14\xe2\xdb\xc7\x04\x25\x1f\x9f\x44\x28\x72\xbe\x83\x27\xa9\xf7\x10\x21\x3c\xc9\x6d\xeb\x13\xdf\x97\x7c\x86\xd7\x52\xc3\x5b\x0a\x96\x3b\xee\x4c\xc6\x5e\x4f\x9c\x4b\x4a\x8e\x9c\x98\xec\xb8\x14\x63\xdb\x07\xb9\x09\x43\x9d\xe3\x53\xac\xc9\xbc\x89\x18\x6a\xbd\xd3\x65\xb5\x9a\x4e\x81\x36\xd9\x14\x2b\xbe\x33\x20\x1d\x31\x1e\x07\xb9\x01\x57\x29\x7d\x8c\xac\x4d\x94\x4e\xe3\x35\x5f\xaa\xa9\xc5\x69\x84\xb4\x9e\x94\x82\x9a\xc4\xb0\x0e\x45\x20\x34\x43\x7d\x1f\xa3\x10\x22\xe0\x22\xdf\x01\x5d\x6c\x1c\x4d\xc6\x6c\x42\x39\x5b\xe5\xca\xa9\x4f\xbc\xae\x0f\x7d\x9f\xf4\xb9\x66\xd9\xae\x61\x20\x15\x4b\x44\xd1\x38\x7f\x88\x51\xc3\x3d\xa6\x1d\x15\xce\xda\x28\x19\xc9\xb1\x53\xb2\x18\xf1\xc4\x9a\xf0\xfc\x21\xf1\x7c\x71\x90\x75\x94\x3f\xec\xfa\xfb\xc9\x5d\x86\x98\x29\xf8\x65\x38\xcf\x0b\xa1\x34\xb2\xed\x48\x65\x40\xdb\x99\x85\xa4\x69\x91\xd3\x30\x9a\xc6\x49\xc2\xc4\x41\xe2\x7d\x3c\x0d\x0e\xa8\xba\xed\x1a\xae\x50\x5d\x64\xfd\x23\x8b\x4c\x50\xb4\x81\x47\x06\x82\x8a\x7d\xcd\xbe\x53\x8c\x6a\xc7\x57\xca\x42\x5b\x31\x02\xaf\xe3\x99\x63\x3c\x9e\x38\xd3\x78\xfd\xf8\x63\x98\x2d\xc2\x28\xcf\xeb\xdc\x44\x22\x15\xad\x19\xd0\x18\xe9\xb4\x6c\x5c\xd3\x08\x11\x83\x80\xab\x1a\x21\x57\xed\x30\x2c\xe9\xae\x8c\x7c\xe9\x8f\xca\x0e\xfa\x13\x22\x07\x14\xa6\x32\xb0\x69\x15\x46\xa8\xf4\x6e\x59\x8e\x02\x12\xa2\x25\x04\x18\xb7\x36\x10\xb4\x52\x0c\x73\xea\x09\xb5\x61\x73\x91\xda\x76\x7a\xb1\x69\x4e\x6d\x1b\xcd\x69\xcb\x83\x4d\x93\x4e\x5b\x1e\xa4\xe2\x0f\x3e\x9f\xb6\x5a\xa7\x97\xee\x39\xde\xf0\x49\x4a\x46\xc9\x38\x9d\xd0\x64\xbc\x99\x10\xe5\x66\xc4\x0b\xf8\xc3\x73\xfe\xe2\xbc\xf0\x71\x11\x6b\xa6\xdd\x27\x5e\xbb\x0f\x5e\xc7\x23\x5e\xc7\x03\xaf\xe3\x13\xaf\x23\x2c\x99\x35\x9c\xe2\xf7\x8d\xb1\xb9\x5b\xb4\xd3\x41\x56\x0c\x6b\xc2\xb9\x68\x31\xac\xc1\xde\x20\x8a\x91\x0e\x2e\x3d\x63\x28\xbd\x62\x28\x13\x3e\xfe\xc1\x81\x71\x5e\xd2\x62\x74\x37\xa3\x84\x84\x68\x03\x09\x3e\x5f\x5e\xa6\xe7\x38\x1b\xa7\xcd\xe6\x84\x16\xc1\x40\xd9\x57\xc6\xe2\x08\xf7\xf2\x3a\xae\xea\x7e\xc7\x53\xdd\x6f\xf7\xbf\xa2\x07\x57\x34\x2f\x85\x04\x9c\xc2\x86\x8f\x09\x5f\x47\x21\xda\x14\x03\x32\xa5\x31\x0a\x60\x29\xfc\x52\x98\x6d\x27\x0d\x9a\xc8\x51\x3c\x5f\x5e\x4e\xcf\x71\x38\x47\x28\xa5\x9b\xf1\xb4\xd9\x9c\xe0\x06\x4d\x71\x21\xe3\x0b\xa7\xb5\xe2\xc1\x69\xb3\x29\x9e\x65\x79\x3e\xe5\xab\x64\x83\x6d\x7b\x33\x9e\x4e\x28\x2d\x31\x68\xf9\xbd\x3c\xd7\x81\xaf\x0d\x66\xdb\x2d\x6f\x5b\x1d\x18\x97\x78\x1d\x57\x0f\x10\x1f\x98\x23\xec\xa7\xab\xf4\xf4\x7e\xb1\x2a\x7c\xa9\xa8\x8b\x81\xe2\x92\x72\xa7\x7b\x98\x2b\xc8\xbd\xe7\x51\xca\x60\x43\x7d\xfe\x67\x49\xdb\x54\xc4\xc4\x75\xf8\x9f\x39\xed\xf1\x3f\x0b\xda\x15\xe1\x3a\x73\x98\xd1\x2c\xcf\x8b\xb4\x60\xc6\x08\xa7\xb0\x2e\xd7\xdd\x0a\xee\xe1\x91\xaf\x38\x0c\x77\x34\x44\x8f\x5c\x91\x8f\x50\x0a\x6b\x68\x63\xb8\xa1\x01\xba\x2b\x46\xfe\x81\xba\x70\x45\x93\xd1\x0c\x65\x70\x83\xc9\x46\x5c\xb8\x58\xad\xae\xf3\x9b\xcb\x87\xf3\x07\x35\xaa\x8b\x3c\x7f\xe0\xa3\xca\x19\x3e\xba\xa7\xb7\x68\x45\xef\xc6\x0f\x13\x78\x80\x47\x0c\x0c\xf3\x67\x12\x7c\x35\x7e\x98\xd0\xfb\x02\xee\xfe\x1e\x57\xf3\x20\x16\x16\xa7\x86\x2b\xf5\xe5\xae\xd6\x97\x57\xf2\x77\x4f\xff\x7e\xd0\xfa\xf4\x95\xcc\x47\xb9\x52\x1e\x8a\xe1\x1c\x4d\xf5\xfc\x17\x48\xcf\xf3\x51\xcb\x23\x22\x80\x6e\x4a\xae\xe4\x6c\x56\x97\x37\x74\xba\xa4\xd3\x85\x6e\x87\x74\x3b\xd0\xef\x93\x7e\x9f\xcf\x6b\x8d\x40\xa0\xe7\xb5\xdd\xd6\xeb\xdd\x97\x13\xcb\x27\x38\x38\xb6\xed\x05\x9b\x49\x61\x83\x9f\xf8\x02\x57\xde\x54\x21\x17\xa1\xf9\xea\x5e\x72\x4a\x17\xa0\x65\x31\xf0\x0b\xba\x19\xcd\x5b\x1e\x71\x61\x46\x37\xbc\xf9\x9e\x80\x95\xb8\xf0\x05\x30\xd2\xf9\xb9\xe0\x57\x0b\x3e\xde\x53\xfc\x94\xd2\xe9\x78\x31\x81\x45\x93\xce\x64\x2a\x41\x2e\x67\xf3\x5f\xb0\x19\x2d\x2e\x5c\x32\xbf\xa0\x8b\x7d\x11\xfb\x23\x9b\x6d\xa6\xec\x94\x4b\x1a\xab\x75\xf6\x78\x1a\x70\x21\xe0\xf4\x21\xcc\x16\xa7\x51\x7c\x1a\x46\x61\x16\x06\xcb\x42\xde\x12\x9f\xdd\x8c\x16\x97\xd4\x25\xf3\xcb\xc5\x39\xaf\x1e\xcb\x06\xd8\x36\x4a\x69\x86\x52\x90\xad\x80\x65\xe9\x07\x9f\xd6\x0d\x76\xbb\x4d\xda\xed\x72\x98\x8f\x88\x4c\x03\x4f\x6d\x9f\xa1\xda\x3e\x42\x7a\x49\xd7\x6c\x1a\x72\xc9\xe5\x00\x81\x91\xe9\x3b\x0b\x9f\x30\x81\xb3\xbd\x6f\x2d\x42\x19\x65\xce\x34\x8e\xd2\x2c\xd9\x4c\xb3\x38\xc1\x79\x9e\x35\xa8\x14\x85\x6c\xbb\x11\x22\xc3\xb8\x22\x20\x05\x0a\x94\xee\x48\xe0\x62\xeb\x3c\x1f\x19\xcd\xc6\xf1\x44\x62\x79\x17\x18\xd8\x86\xc3\xa6\xa8\x90\x64\x15\xc1\x68\x48\xfa\xc3\x82\x91\x77\x8e\x88\x6b\x9d\xce\x61\xea\x50\xda\x8d\x84\x2a\x86\x91\xd4\xd8\x3b\x1d\xd2\xe1\xf2\x6c\xe7\xb9\x52\x97\x5e\xcb\x03\x45\xba\xfb\x3d\xbe\x94\xb5\x3b\x3a\xa4\xf4\x69\x6b\xb4\xa1\x30\x1d\xdd\x86\xd1\xcc\x14\x16\xb4\x45\xad\xe4\x69\xc1\xae\x2b\xbb\x57\x31\x4a\xea\x5e\x26\x7c\x16\xa6\x41\x86\x76\x9f\xc7\x95\x64\x38\xa6\x64\xb6\xd9\x33\x2e\x08\xe9\x8d\x0b\x5f\xa7\x29\x2e\x29\x5d\x44\xc7\x13\x90\x98\xe1\x99\xc0\x0c\x8f\xc6\xe1\x84\x5a\xc1\xd8\x6a\x86\x4d\x6b\x62\x9d\xa4\x5c\x6f\x2c\x4d\x2f\xaf\x21\xb0\xc0\x32\x0c\x72\xaf\x91\xd5\x8c\x9c\x9f\xe2\x30\x42\x16\x58\xb8\x69\x61\xab\x30\xce\xf1\x77\x11\xe3\xfa\x2d\xca\x40\x3b\x05\x42\x84\x09\xd7\x88\x23\x60\xa5\x99\xae\xba\x96\x6c\x1b\x6d\x0c\xbb\x9d\x79\x0b\x36\x7c\x06\xd5\xfe\xe8\x91\x7e\xaf\x5c\x24\x47\xce\x48\x3a\xca\x3c\x2d\x77\x87\xd6\xbb\x3e\x05\x77\x16\x9f\x50\xeb\xa5\x1e\x4f\x8b\xd2\xa8\xc6\x12\x52\x8c\xf7\x16\xe1\xa3\x5b\x8a\xf3\xe9\x93\x7d\xf7\x67\xeb\xcf\x85\xa1\x8b\xa8\x4d\xc1\x46\xd6\xbb\xcd\x72\x29\xf0\xf9\x2a\xf9\x4c\xd0\x6e\xd2\x66\xc3\x5c\xc0\x75\x78\x65\x2a\x48\xf0\xd3\x76\x8b\x32\x65\xab\xe0\x44\x32\xc4\x78\x94\x90\x78\xc4\xf7\x1e\xb1\xde\x6b\x5b\x09\x0a\x84\xbc\x80\x6b\x2d\x9d\x99\x58\x4f\x8c\x8d\x8c\x21\x20\x81\xb9\x11\xb5\xc6\xd4\x39\x78\x0c\xf4\xb4\x2d\x14\xd9\xe3\xe2\x8c\xb6\x9b\x61\x85\xa6\x3e\x10\x51\xbb\x52\xea\xef\x3c\x57\x54\x1f\x0e\xb1\x33\x17\x73\x39\xd4\x86\x7d\x4f\x31\x16\x2e\x49\x70\x79\x81\xcb\x97\x1b\xca\x50\x6f\xc0\xa5\x24\x86\x06\x5d\xce\x41\x18\x1a\xf4\x39\x0b\xe1\x3a\x54\x9b\x73\x0f\x86\xba\x03\x0c\x33\x5e\x53\x07\x3b\xf3\x20\xcd\xfe\xc4\x1e\x61\x2d\x38\xd4\x10\xc3\x8a\x2e\x46\xd6\x4d\xca\x27\x28\xfc\x99\x59\x70\x7f\x20\x91\xf8\x8c\xf3\x2a\xae\x9c\xbe\xb6\xb8\x0e\x84\x4b\xf4\x0b\xae\xf2\x49\x3c\x72\xca\x9c\x9b\xf9\x79\x72\x9e\xd0\xc4\x89\x04\x9b\x77\x3e\x1b\xa7\x56\x89\x49\x3d\x9e\xee\x58\xf6\xaa\xa4\xb9\x3b\x66\x25\x58\xca\x2f\xf3\xfe\x18\x77\x22\xfc\x94\x22\x06\x53\xc8\xc0\xba\x09\x2d\x0c\xcc\xb9\xc9\x68\xc6\xff\x84\x34\x14\x61\x08\xa2\x6c\xae\xe8\x2f\xbf\x5e\x16\xd7\xe3\xd5\x84\xea\x94\x48\x91\x6d\x6f\x50\x04\x09\xb0\xf1\x72\xc2\x77\x68\x41\x61\x62\x34\x35\xec\xe7\x4f\xd3\x25\x0b\x12\xd3\xe8\xa7\x29\x0a\xa3\x6b\x69\x8d\xcf\x38\x85\xe3\x2d\x80\x48\x0e\x40\x74\x1e\xd1\xc8\x89\x70\xe4\x24\x22\x07\x93\xb3\xb6\x6d\x14\x39\x6b\x1a\x39\x6b\x27\x2a\x98\x47\xa1\x8e\x44\x4e\x38\x39\x11\xad\xde\x6f\xee\x56\x3d\xb6\x07\xcb\x92\x18\x9f\x8f\xe8\x3d\x4a\x80\x89\xf9\x29\x60\x4a\x22\x27\x82\x98\x7f\xf2\x44\x7f\x48\x4c\x95\x13\x4e\x40\x35\x2c\xb6\x6d\x14\x3b\x11\x0d\x31\x84\xb6\x8d\x42\x67\x4d\x63\x0c\x09\x6f\x08\x1f\x1f\x24\xae\x42\x51\xb2\x2c\x4a\x96\xe2\x99\xf1\x6a\xd2\x6a\x6d\xb5\x59\x3d\xda\xc2\x3c\x4e\xae\x82\xe9\xa2\xd2\xcc\xa2\x81\x65\xe6\x70\x88\x68\xc0\x15\xc5\x5d\xd5\xb0\x5e\x9f\x69\x63\xbe\x94\x46\x89\x13\xe9\x4c\x98\xe7\x42\xe8\x89\x50\xe2\xdc\x43\xe2\x7c\x96\x89\x44\xce\x13\xdb\x4e\x9c\xe4\x1c\xf3\x75\xb7\xde\xc2\x22\x48\xc9\xfe\xbe\x6c\x34\xee\x51\x39\x64\x4c\x60\xd1\x2c\x6c\x3b\xaa\x4c\xb7\xda\x04\x07\x0c\xbd\xc5\xeb\xe3\xd5\x84\xbf\x3e\xe5\xb3\x33\xdf\xb3\x88\x16\x50\x97\x54\xe4\x3a\x29\x57\xd6\x28\x76\xee\x69\x42\x90\x98\xe6\x98\x3e\x85\x24\xe4\xfb\x4a\x18\x4d\x3f\x93\x0c\xee\x49\x02\x6b\x22\x56\xd1\x12\xa2\x42\xab\x23\x0d\x6f\x2b\x56\x75\x9e\x23\xb1\x4c\x62\x0c\x91\x58\x52\x11\xbf\xe4\x0b\xa5\xd9\x04\xb9\x31\xf9\x44\x8a\x3d\x19\x4e\x68\x8c\x31\xb0\x2d\xdc\xb1\xec\x2a\xca\x92\x47\x72\x0f\x29\xcb\xae\xb3\x24\x8e\xee\xf6\xda\x2c\xec\xfc\x66\x9c\x5c\x82\x9f\xe4\x98\x67\x74\x5d\x66\xa6\x71\x6e\x3e\x53\x8d\xa5\xaa\x57\xea\x16\x6a\x77\x87\x7a\x1c\x8a\x74\x17\xe7\x99\x6d\x67\x7c\x9a\x32\xce\xe9\xaa\x10\x11\x59\x89\x7c\x4d\x33\x9a\x8d\xb2\x62\xca\x33\xe7\x66\x8e\x47\x53\xe4\x82\xf5\x99\x3d\x72\xce\xc5\x46\x99\xf3\x99\x48\xab\xaf\xfe\x7d\x4f\xc6\x19\x5f\x0e\xce\xfd\x04\xeb\x7c\x18\x5a\x08\x83\x29\xf2\x44\x14\xcc\xc8\x52\x9e\x3c\x56\xf1\x36\x34\x12\x31\xfa\x73\x21\x32\x71\x7e\xe0\xf5\x89\xe7\xf5\xc1\xf3\xdb\xc4\xf3\xdb\xe0\x75\x86\xc4\xeb\x0c\xa1\xdd\x27\xed\xbe\x52\x0b\xba\x03\xd2\x1d\x40\x6f\x40\x7a\x03\x18\x74\xc9\xa0\x0b\x83\x3e\x19\xf4\x61\xd8\x21\xc3\x0e\x0c\x07\x64\x38\x80\xe1\x90\x0c\x87\xdb\x09\x74\x9f\x6d\x37\xd0\x36\x7a\x4e\xa5\xef\x58\xf6\x23\x0b\x3e\x4b\x5b\xfd\x40\x92\xfd\x81\x57\x4f\xf6\xb9\xde\xc1\xc9\x64\xdf\x53\x64\x9f\x53\xf5\x05\x5d\xa2\x2e\xa7\xfa\x4b\xd4\xc3\xb0\xa6\x2e\xac\x6a\xe3\xad\x9d\x9b\xa5\x5c\x54\x32\x9e\xe3\x1e\x6f\x4d\x06\xa0\x96\x00\x17\x01\xb7\xf0\x58\x2f\x74\x2e\x10\x73\x82\xda\x64\x22\x63\x97\xeb\xd3\xd9\x16\x6f\x4f\xee\x0d\x29\xa7\xba\xb7\x0a\x61\x51\x1d\x6d\x4a\x22\x56\xb0\x8c\x6c\xec\x4d\x0e\x6f\xe8\xe2\x9d\x2d\x5f\xd9\xa4\x4e\x65\x2e\xab\x4d\x46\xc9\xd8\xd3\xb9\x31\x9c\x40\x2a\x8b\x63\x06\xd9\x04\x1f\x24\xb2\x19\xdf\x9e\xe2\xf1\xb2\x87\x65\xd7\x33\xd9\x43\x56\xf0\x8e\x7f\xd1\x10\x7f\x81\x93\xae\x05\xef\xcf\xb8\xa4\xdb\x68\xfc\x0b\x17\xfa\x9f\xcd\xfb\x62\x75\x3e\x5f\xcb\xfb\x96\xb5\xbc\x6f\xdd\x6c\x56\x78\xdd\x1e\x93\x8b\xab\x4c\x2e\x42\x4b\x93\xc9\xd5\x74\x9f\x8b\xd1\x41\x79\xd4\xd0\xf0\x54\xbe\x69\xae\x45\x99\xf0\xca\xc9\x68\x85\xe6\x9a\x2e\x62\x47\xd6\x84\x18\x26\x89\x6d\x4f\x0b\xdc\xe5\x10\x17\x51\x7e\xc9\x58\x15\xd5\x4c\xec\xef\xfc\xe8\x42\x00\x50\xed\x7e\x91\x53\xe8\xe5\x11\x0a\x4d\x43\x24\x2c\x1f\x65\xa0\x9b\xa8\x3b\x1a\xad\x84\xec\xc6\x32\x95\xd3\x67\xcc\x47\x58\x1e\x40\xc2\x66\x9e\x66\x71\xc2\xc8\xaa\x42\x2b\x2a\x34\xa2\x3d\x20\xed\x01\x74\x7c\xd2\xf1\x15\x8d\xe8\x7b\xa4\xef\x49\xf9\x5d\xd2\x08\x4e\x17\xbe\x16\x18\xa4\xe9\x42\x5f\xd9\xd3\x7a\xbe\x16\x03\x15\x3d\x10\x04\x23\x95\x04\xa3\x42\x10\x38\x81\x98\x2a\x82\xc1\x09\x42\xaf\x23\xc5\xc0\x41\x4f\x8a\x81\x9e\xdf\xc1\x42\xfe\xeb\x1f\x34\x38\x41\x02\xc2\x34\x24\x47\xea\x8e\x46\x63\x36\x81\x5b\x7a\x07\x37\xf4\x7e\x24\xce\xea\x88\x15\xcc\x66\x16\x3c\xd0\x5b\xdb\xbe\x35\x96\xd2\x15\x7d\xda\xc2\x97\x9a\x9c\x47\x0f\x63\x36\x39\x89\xd1\x03\x30\xb0\xe4\x4a\x10\xa4\xbb\x66\x5b\x23\xae\x74\x4f\x65\xb8\x6a\x66\xa0\xca\x4a\x1d\xc3\x25\x0c\x6f\x89\xb5\x08\xd2\x7f\xd3\xfb\x77\x2c\x3b\xf0\xfe\xa9\x7e\x7d\x24\xf7\x12\x39\x58\x47\x20\x70\x3d\x6b\xeb\xa8\x7f\x47\x82\x64\x90\x2a\x97\x3d\xf6\x06\x24\xea\x1d\xbc\xad\x3f\xa0\x3b\xbd\xb5\x6d\xf4\x98\xe7\x0f\x8e\x12\xc0\x6c\xbb\x31\x37\x35\x3b\xc4\xc9\xfa\x2d\xd6\x3e\xac\x08\x3b\x11\xfb\x22\xf2\xc9\x61\x39\x33\xd7\x82\xf0\xdf\xc2\x7b\x7a\x3d\xbe\x99\xa0\xc7\xd1\xd3\x96\xb4\x5c\xf0\x70\x83\x5e\xc3\x4b\x5a\xa9\xec\x5a\xec\x34\x91\x1d\xea\x33\x5d\x20\xb3\xdf\xa2\x12\xc4\x49\x0c\x7c\xa2\x8d\x47\xdb\xae\xbc\x58\x4a\x05\xf2\x63\x19\xed\x9e\x67\xad\xd6\x39\x66\xfc\x9b\x59\x29\x23\x35\x98\xf8\x44\xcb\xe5\xb4\xea\x73\x9e\x23\x74\x4b\x33\x64\x1a\x88\xb9\xa8\x92\xc1\x2d\xa7\xe8\x72\x8b\xac\x45\x17\xef\x20\x83\xdb\x9d\x54\xc9\x09\x27\x7f\x09\xdc\x43\x34\xbe\x99\x40\x84\x21\xda\x62\xc3\x09\x89\x3e\xc0\x83\x69\xf6\xa1\xb7\x18\xd0\xcb\x3c\xff\xc4\xf5\xf2\x2f\x48\xaf\x52\x0c\x5f\x90\x58\x6e\x18\xee\x6d\xfb\x8b\x3c\xb5\xc6\x18\xd0\xa7\x3c\x7f\x8f\x79\xc9\x0d\x86\x47\xdb\x7e\x70\x84\xaa\x50\xd0\x39\xf5\x5b\x1a\x23\x6f\xe9\xca\xa9\x12\x7d\x94\x01\x83\x7b\xb8\xc1\x10\x20\x73\x03\x25\x18\x52\xe7\xdd\xd5\xd5\xb7\xb4\x51\x80\x2e\xce\x10\xef\x2f\x5c\x8d\xd9\x84\xde\x42\x88\x42\xe7\xbb\x66\xe8\xfc\xd8\x0c\x9d\xd7\x2f\xd0\x6d\x83\xde\x61\xb8\xc2\xf0\x98\xe7\x2b\xa7\x90\xf0\xf8\x2b\x70\x8f\xe1\xb6\x42\xa9\xbc\x01\xf1\xbc\x01\x78\x7e\x87\x78\x7e\x47\x51\xac\x9e\x4f\x7a\x3e\xf4\x3a\xa4\xd7\xd1\x14\xcb\x25\x7d\x17\xfa\x5d\xd2\xef\x2a\xba\x35\xe8\x91\x41\xaf\xa4\x5e\x35\x86\xee\xea\xe1\xd5\xe0\xc8\xe1\xd5\x80\x78\x5c\xd5\xee\xd6\x58\x55\x0f\xe9\xc2\xd2\xaa\x71\xdc\x5d\x52\xd8\x7c\xd8\xa8\xf4\x2a\x71\x21\xc1\x98\x48\x87\x00\x39\x0a\x3d\xe2\x79\xbd\x52\x36\xab\xb1\x37\x56\x7b\x31\x3c\xd2\x0b\xe1\x9a\x24\x0c\x34\xbc\xaa\x1a\xcb\x5d\x6d\x5f\x7a\xe2\x18\x40\x60\x34\x14\x73\xce\x57\xc6\xa7\x70\xc5\x20\xde\xbd\x61\x00\x71\x40\x50\x2b\xc0\x5d\x0e\x47\x8c\x58\xae\xd5\x64\xa6\x72\x5d\x63\xdc\xb1\xdc\xf6\xa0\xdb\x72\xfb\x2d\xbf\xfb\xc9\xed\x13\xb7\x47\xda\x43\x67\x38\x1c\xfe\x93\xd5\xa0\xb1\xa4\x3d\x05\x20\x46\xab\xcb\xbc\x76\x8b\x0b\xcd\x38\xcf\x1b\x95\xca\x76\x1f\x7d\x17\xbc\xe3\x8f\x8d\x8c\x47\x38\x13\x0f\xd3\xd7\x61\x14\x66\x0c\x85\x06\xc2\xab\x3e\xb6\xfe\x18\x44\x77\xda\xf4\xfc\x46\x22\x44\x9c\x66\xe1\xaa\x38\xd1\x3f\x29\x15\x08\xc8\x28\x53\xc9\xd1\x5f\x6f\x96\xcb\xbf\xc8\x14\xed\x49\x51\x68\xc2\x5b\x21\xae\x08\x67\x0a\xcf\x2f\xbb\x1c\x0e\x87\xc3\x91\xd5\x34\x01\xf7\xa2\x26\xb2\x5c\xfe\x9f\xd5\x2c\xd2\x2e\x73\xf9\x41\xda\x69\xa2\x51\xab\x47\x5a\x1d\xdc\xb4\x5a\x56\x33\x40\xc5\x27\x8a\x34\xff\x3b\x37\x24\x58\x0f\x6e\x5a\x9f\xcc\x52\x81\x9d\x25\x8a\x49\xa5\x16\x09\x46\xb4\x7f\xa3\x80\x28\xc4\x4d\xcb\xb1\x9a\x28\xb9\x1c\x0e\x47\x89\x98\xd2\x00\x25\xbc\xf4\x9f\xac\x2d\x89\xb7\xf0\x24\x36\x28\x5f\x6b\xcf\x36\xe7\x6a\x6b\x60\xa7\x7d\xc4\x75\xba\xcc\x4f\x4a\x99\x6d\x97\xbe\x07\xe2\x97\x0a\x74\x15\x3f\xf7\xcf\x0d\xde\x14\x47\xdd\x8b\x30\xca\x8c\xcc\x92\x48\x9b\x7e\xcb\xea\x98\x3c\x94\xef\xb4\x89\xd7\x69\x4b\x21\x89\xf7\xe5\x99\x47\xf3\x46\x3e\xed\x9a\x76\x28\x5f\x91\x60\xb9\x3c\x5d\xb1\x6c\x11\xcf\x4e\xe3\xe8\x54\xc0\xa0\xed\x9e\xba\x77\xbf\x76\xea\xee\xbb\x87\xb7\xbc\xf4\x20\x2a\xa6\xa1\xc6\x94\x57\xad\xca\x3b\x52\x95\xf0\x10\x93\x64\x56\x1b\x76\x7b\x47\x9d\x91\x2c\x83\x53\x41\xd5\x91\x0f\xc2\xf4\x83\x26\x19\xef\xe7\xb0\x56\xc5\x6f\xd2\xab\xc2\x57\x09\x74\x6a\x08\x45\x4c\xb4\x25\x13\x34\x22\x8f\x50\x58\x32\x61\xda\x96\x23\xd5\x3b\x76\xc8\xeb\x2a\x5d\xd5\x73\x3b\x4a\x2a\x75\x0f\x7a\xe7\xeb\xb3\x00\xc6\xf7\x6d\xe8\xcc\xc5\xe9\x15\xd6\x12\x41\x00\x29\x4d\xf8\xbd\x0d\x8d\x9d\x39\x2c\xa9\x7b\x5e\x18\x85\x96\xe7\x78\xa3\x7d\x10\x03\x9a\x8e\x97\xcd\xe6\x44\xc8\x74\x42\x75\x0b\x70\xf5\xb8\xda\xed\x10\xcf\xed\x80\xe7\xf6\x89\xe7\xf6\xc1\x73\x07\xc4\x73\xf9\x1a\xeb\x1d\x39\x95\xd5\xd2\x75\x57\x1f\xde\xe9\x43\x59\x2e\x65\xa7\xca\xd8\x7a\xd4\x7d\x5a\x39\x4e\xbf\x56\x8e\xd3\xdf\x29\xc7\xe9\x6b\xe5\x38\xfd\x41\x39\x4e\x7f\x03\x77\x74\x3d\x8a\xc8\x6a\x24\xdd\xa1\x85\x57\x34\x7d\xda\xe2\x5a\xff\x68\xb8\xa5\xeb\x1a\x2f\xeb\x1b\x6a\x48\x0a\x79\x6e\xca\x0d\xfc\x7e\xe9\x55\xbd\x2e\xbd\xaa\xe7\x14\xa1\x29\x6d\xcc\x6c\xfb\xce\x70\xac\xbe\x1b\x2f\x27\x78\x74\x47\x12\x3c\x5e\x4e\x60\x41\x1f\x6d\x7b\x3a\x4a\xa5\x97\xf4\xfd\x01\x67\xe1\xb4\xce\x59\xf8\xce\xb6\x03\x74\x07\x4b\x90\x2e\xc1\x7f\xc6\x70\x3b\x5e\x4e\x1a\x74\x6e\xdb\xb1\xf0\x08\x5e\x08\xb1\xe9\x46\x17\x22\xe1\x80\x3d\xc7\xdb\x93\xc8\x99\xc6\x09\xa3\x21\xfc\x7b\x78\x0b\x2b\xb9\x46\x44\xd5\xe8\xc3\x5b\x29\xc3\x28\xcf\xa3\xde\x91\x23\x5c\x79\x5a\xb2\x0a\xb2\xe9\xe2\xf8\x49\x22\x3d\x73\xce\x4e\xb2\xe4\xf1\xc9\x3a\x73\xce\xac\x31\x9b\xa0\x0c\x97\xe7\x14\xc6\x01\x46\x36\x8e\x26\xb4\xe1\x41\x63\xff\xc1\x10\x3f\xe9\xe8\x88\x8a\x8f\x14\x6f\xe3\xd7\xe4\x11\xbf\x7d\x84\xa2\x28\x6f\xd3\xde\xd7\x24\x11\x19\x00\x6d\xd8\x9d\x14\x97\xe8\xab\x2d\xc0\x25\x14\x71\xcc\xa0\xd4\x4b\x3e\x3a\x42\xbf\xf4\x7c\x97\x2b\x98\xa9\x71\xec\x0a\x53\xda\x88\xd1\xce\x39\x1e\x13\xc3\x54\x58\x98\xd8\x17\x36\xdd\xc7\x8a\x1d\x4f\xca\x27\xee\x92\x78\xb3\x4e\xe9\x53\x40\xac\xbe\xb5\xe5\x6a\xb6\xd5\xe7\x1c\xc7\xb2\x0a\x84\x5f\x06\xd6\x1f\x2e\x82\x4b\x8b\xeb\x17\xf3\xfd\xda\xce\xd0\x88\xe0\x33\x21\x2c\xf0\xcf\x9d\xec\x7f\xb5\xd0\xb2\x0e\xb8\xd1\x4b\x3b\x83\x15\xdc\x6a\x4a\x58\xf2\x0e\x9f\x52\xaa\x3d\x9d\x6c\xdb\x0a\x2c\xfe\x7b\xec\x4e\x6c\xdb\xba\x95\xd7\xde\x64\x8b\x8e\x49\xa6\x12\x6a\x38\xe5\x64\x6e\x56\x33\x60\x19\x7d\x2a\xfd\xf8\xc7\x8b\x49\x4d\xbb\xfb\x5b\xe8\x37\xa8\xa5\x97\x12\xd7\xdf\x67\xa3\xba\x9a\x1a\x1e\x24\xf4\x2c\x28\xc6\x3f\x39\x38\x12\xe2\x68\x62\xb3\x5c\x6e\xc1\x12\x3d\xd6\xe8\x41\x49\x45\x27\x7a\x12\xe8\x41\x65\x81\xd8\xbd\x7b\x95\x25\x5b\x0c\xc9\x78\x31\x41\x96\x85\xa1\x91\x6d\xb5\x5b\x88\x70\x0c\x9d\xe5\x79\x63\x9d\xe7\x96\x9a\x4b\xf5\x9d\xc6\x34\xcf\x2b\x1f\x6e\xcc\x65\x1f\x56\x7c\xf9\x8c\x17\x13\xb8\xa7\x09\x0a\x60\x01\xa2\xd7\xc7\x60\xf9\x32\xd9\x47\x4a\x37\xa3\x99\x6d\x37\xc2\xd1\xd3\x2c\x8e\x18\x69\xb8\xca\xed\x76\x55\x09\x68\x22\x3b\x77\x55\xe8\x52\x02\x99\x79\xd7\xdb\x6e\x31\x3c\xd2\xfb\xb1\x3b\x81\x3b\x7a\x3f\xf6\x26\x27\x11\xd2\x91\x86\x05\x99\x66\xf0\x88\x21\x44\x32\xfd\x88\x51\xbe\x00\x9f\xd2\x6c\x54\x6b\x30\xbd\x2b\xdc\xea\xa5\xf9\x6a\x5b\x63\xda\xac\x3e\x84\xb7\xda\x36\xad\xb5\x37\x97\x78\xbe\x0b\xfa\xec\x52\x47\x33\x77\xfb\xa4\xdb\x57\x7a\x5c\x41\xf7\x7e\x83\xb0\x58\xb7\x82\xf5\x0e\xd3\x02\x5d\x46\x4b\x71\x9a\xa9\x00\x42\xdb\x46\x59\x93\x5a\x77\xc2\x26\x19\xde\x45\x71\xc2\x5e\x05\x29\x53\xc5\xd2\x54\xb9\xda\x2c\xb3\x70\x19\x46\xba\x74\x25\x4a\x37\x51\x38\x8d\x67\xba\x6c\x23\xca\xd2\x2c\x9c\x7e\x7e\x54\x45\x8f\x16\x06\xc1\xde\xb5\xc0\xd8\xab\x11\x18\xeb\xed\x66\xc3\xaa\x2f\x83\x70\xb3\x32\x8f\x4f\x25\xd5\x0f\xd3\x57\xc2\xe5\xe0\x7a\x9d\xb0\x60\xc6\x45\xa5\x5a\x16\xa0\xe2\x71\x14\x0c\x27\xe7\xfa\xa5\x51\x63\x0d\x2b\xb8\xa7\x53\x78\xa4\x2e\xdc\xd1\x46\x63\xc1\x59\xe2\x02\x66\xd0\xc6\xe7\x8f\x17\x4b\xe9\xa0\xf3\x28\xdd\xcc\xf8\xe5\x9a\xde\x8d\xee\xd0\x66\xfc\x38\x81\x47\x48\x30\x11\x57\x2b\xbe\x73\x43\xb4\xc6\xb6\x8d\x56\xb4\xe0\xd3\x68\x45\xd7\xe3\x74\x82\x47\x8d\xc6\x8a\x44\x68\x8d\x31\xac\x6c\x7b\x7e\xe9\xe2\x7b\x2a\x9b\xb4\x86\x18\xad\x0b\x67\xa1\x7b\x98\xb7\x3c\xdc\xf2\x84\x5f\x15\xff\xd8\xfd\x25\x1d\xba\x6e\xdf\x1b\x0e\xfd\x6e\xa7\xdf\x71\x87\x43\x6f\x4f\x7e\xc6\x27\xd9\xf8\x7e\x42\xd7\xdb\xfb\x66\x73\xfb\xd8\x6c\x6a\xb7\x86\xfb\x8a\xcb\x8e\x5a\x6c\x8a\xb9\x56\xfc\x56\x7a\x07\x0f\xcd\x4b\xbf\xb7\x41\x5b\x49\x58\xca\x7c\xd9\x56\x02\x96\x98\x17\xc1\x5e\xba\x6d\xce\x5e\x9e\xb6\x30\xa5\x4f\xdb\x73\x2e\xbf\x1c\xb2\x4d\xce\x61\x21\x3f\x30\x83\xb5\x34\x54\xd2\xc5\x68\x9f\x2a\xb1\x2d\xd9\x70\x9a\x7b\x47\x23\xc4\x5f\xca\x46\x3e\xf1\x30\xdc\x52\xf7\xa4\x3e\x70\xf5\xf1\x58\x04\x69\x98\x49\x51\xba\x61\x49\x54\x2c\xf4\xa8\xdc\x4b\x66\x9c\xb2\xeb\x19\x38\x9f\x5d\xde\x9e\xdf\x2a\x47\xb8\x7b\x9a\x8d\xee\x50\x80\xd6\x94\x8d\x6f\x27\x98\xd3\x92\xf5\xd8\x9b\x60\x72\x87\x44\x01\xa6\x94\x2e\xf3\xfc\x9e\x52\xaa\x5d\xd5\x4e\xef\x4b\x57\xc5\x15\x7d\xd4\xae\x04\xe7\x0d\xb4\xa6\x2b\x65\xbb\xc3\x0e\xa7\x51\xe7\xea\x13\x21\x5a\xc1\x1d\xac\xa5\x9b\x3e\x64\x07\x2a\xc5\xce\x37\x1f\xaf\x5e\xfe\x89\x2e\x21\x71\x3e\x5e\x7d\xfa\xf3\xc7\x77\x74\x5a\x99\xdd\x36\xf1\xba\x4a\x2f\xd3\x73\x3c\x20\xfd\x01\x0c\xda\x64\x20\xe4\x8a\x1a\x75\xa7\x12\x4f\xec\xf7\x30\xb2\x22\x01\x6c\xd7\xd2\x0f\xb6\xb2\xb8\xa5\xd4\x4b\x28\x84\xc7\x22\x1c\x40\x38\x69\xf7\x88\x27\x02\xba\xfa\x35\xda\x4f\x55\xf8\xe9\x1c\x11\x7e\x94\xe7\x7e\xbf\x46\x69\xa9\x56\xd2\x3d\x52\x49\x97\xf8\x5d\x5e\xc9\xd7\x8c\x5b\xfe\x31\xf7\x7f\x65\x63\x12\x71\x6a\xea\xa4\x50\xdb\x9b\xfa\x47\x64\xd0\xbe\x5b\x06\x94\x9a\x86\x1c\xdb\x8e\x8a\x72\x15\x25\xba\x85\x27\x21\xdb\xf2\x1a\xbf\x2a\x31\x1e\x71\x22\x97\xa1\x30\xb2\x89\xdd\x21\xe9\x0e\x0b\xd5\xb6\x7f\xc4\x0f\x4d\x3b\xe2\x79\xbe\x2f\x0e\x49\xbe\x22\xf6\xc4\x10\xd0\xcc\x14\x20\x34\xf3\x08\x1a\x94\x26\xb5\x9a\x46\x60\xdb\x28\xa6\x81\xe1\x0c\xc5\x1f\x2d\x7f\xda\x76\x84\x62\x6c\xdb\xa1\x6d\x87\x88\x41\xac\xa3\x7c\x7c\x9f\x78\xbe\x5f\x10\xa5\xfe\x33\xa3\xd8\xcd\xee\x15\xbe\x4c\x89\x0e\xb0\xce\x0e\x05\x78\x8e\x18\xc2\x85\xec\x80\x77\x43\x3d\x47\x0c\x65\x63\x77\x82\x0d\xe9\x82\xff\xdc\x0d\xfd\x54\x8f\x41\x26\xa8\x42\xe5\x59\x59\xb6\x13\x7d\x5d\x79\x01\xb2\xb1\x5f\xfb\x96\xbc\x21\x5f\xed\x1c\x7e\x15\xb2\x71\xfb\xf0\xfb\xf2\xee\x6e\xf8\x69\x52\x06\x03\xf6\x8f\xfb\xa1\x19\xeb\x42\xf9\x6e\x59\x3f\x5b\x42\xc5\xdd\x33\x4e\xa0\x22\xd6\xac\x46\x14\xb2\xae\xb5\xdf\x18\x2f\x1c\x31\x6d\xa8\xb0\x30\x29\x7c\xc2\xcc\x90\x97\xfe\x11\x5e\x34\xa8\xb8\xc7\x85\x05\x8c\x02\xc4\x7b\x71\x2f\x47\x3d\xbc\x0a\xf6\xcc\x84\x17\x86\x78\x57\xe6\x49\x88\xc7\xa1\x38\x12\xc6\xa6\x6f\xd9\x60\x40\x06\xa2\x69\x47\x22\xf4\xaa\x23\xa6\x30\x4c\x52\xf1\xb7\xea\x5a\xa9\x46\x45\xdc\x51\x83\x62\x76\x7f\x50\x43\x46\xab\x5b\xb7\xcc\x2c\x70\xb4\x93\x22\xce\xcc\xb6\x0b\x43\xae\xf8\x81\x18\x16\x07\xde\x5b\x78\xd2\xdb\x6c\xf0\x55\x92\x7b\xe4\x28\x40\xc7\x6d\x0d\x8e\x98\x68\x34\xc1\xe9\x0c\x4c\xcf\xdf\x67\x68\xeb\xe5\x59\xb7\xf0\xb4\x2c\x65\xaa\x8c\xb2\x71\x2c\x64\xaa\x8c\x58\x52\x76\xb7\xa8\x38\x63\xc6\x7b\x2e\x81\x05\x39\x19\x1c\xf3\x01\x3f\x18\xcf\x05\x09\xd7\x53\x0c\xcb\x40\x38\xca\x50\x84\x12\x21\x0b\x24\x62\xd7\x67\xa8\x88\x8b\x54\xb1\x0f\x31\x65\x8e\x7c\x5c\x85\xc5\x15\x4d\x8f\x05\xed\x2b\xc2\xe7\x20\xd8\x9a\xb2\xf1\xa0\x86\x1b\xd4\x1f\xa8\x0c\xca\x03\x15\x39\xa6\xbe\x50\xfa\x9f\xb6\x27\x32\xc6\x2b\x80\x9a\x4d\x52\xa3\x43\x8a\xa3\xc9\xda\x48\x30\x05\x3b\x62\x18\xa8\x22\x14\xc0\x13\x17\x60\x88\x8c\xf7\xdd\x62\x88\xf9\x73\x4d\xeb\xd4\x00\x34\x31\x58\xa8\x3e\xa4\xaa\x04\x91\x49\xf7\x1a\xde\xd9\xe7\x9e\xb8\x0c\x86\x07\x0e\xd0\xfb\xbe\x94\x40\x39\x55\xe0\x02\xe8\xa0\x23\xcf\xcf\xc5\x60\x4c\x85\x51\xb3\xab\x5c\x6a\x76\x87\x62\x41\x1b\x68\x3c\x71\x3e\xb3\xc7\xd4\xb6\x05\x9e\xad\x15\x46\xaa\x00\x61\xae\xe5\x1f\x18\xac\xc3\xcb\x64\xad\x4f\xdc\x37\x42\x15\x5d\xab\x94\x64\x70\x0b\x37\xf0\xb0\x07\x77\xb2\xb0\x6d\xc6\x35\x8a\xf7\x5a\xc2\x7b\x3f\x66\x93\x93\x6a\x08\x85\xf4\x97\x22\xe2\x52\xb9\x3b\xed\xa1\x78\x98\xbe\xe3\xa7\x49\xe1\x4e\x73\x18\xbe\x63\xe7\x39\xb8\xa2\x95\x09\x84\x2f\xb4\x74\xcc\x5a\xc1\x35\xd7\x6a\xde\x57\x00\x09\x5e\xd2\xf7\xe3\xf9\x24\xcf\xdf\x8f\xad\xff\xf8\x1f\x8b\x21\x9d\xe4\xf9\xca\xb6\xdf\x8f\x57\x13\xf8\x4c\x5f\xe6\xf9\x03\x5a\x61\xf8\x44\x57\xa3\x2f\xa3\x07\x54\xb8\x6d\x61\xf2\x59\x3b\xc5\xbd\xa2\x05\x09\xcc\x6c\xfb\xbd\x3e\xdf\xce\xf3\x97\x5c\x38\x7f\x65\xdb\xe8\x86\x4e\xd1\xab\xf2\xb4\x8a\x61\xcc\xe5\x08\x15\xd3\x6c\x08\x13\x37\x42\xaa\xb6\x6d\xb4\x44\x37\x70\x25\x03\x98\xf3\xbc\x46\x2e\xb9\x11\xed\x0e\xd0\x0d\xcc\x61\x86\x31\x7c\xb1\xed\x97\xb6\xad\xbb\xdb\xa0\xf4\xa5\x13\x05\x2b\xce\x12\xae\x69\xc3\x85\xba\xc4\xe9\x2f\x8d\xd3\xb0\xad\x70\xe2\x6b\x3c\xe6\x39\x9f\xcd\xc6\x35\xef\xbe\xfc\xc0\x7b\x98\xc3\x67\x0c\xc2\x23\xfd\x33\xa4\xe3\xab\x09\x9d\xc1\x8a\x8b\xfb\x77\xf4\x49\x7e\x8e\x7c\x19\x7d\x26\x0f\x48\x7f\x1c\x03\x9f\x6b\x72\x2f\x0b\xc5\xbc\x63\x50\x43\x42\x3e\x6d\xe1\x51\xd8\xdb\x6f\x65\x50\x8e\xf8\xf3\x3e\xcf\x63\xf4\x1e\x6e\xe1\x8e\x2b\x22\x2a\x0c\x07\x85\xce\x07\x79\xa8\xbc\xc8\xf3\x6b\x0c\x19\xdc\x15\x56\xb0\x3b\x69\x64\xef\x12\xcf\xed\xee\x9d\x23\xeb\x2d\x2a\x4f\x92\xe5\x46\x1d\x74\xc8\xa0\x23\x79\x1f\x0c\x86\x64\xc0\x25\xe0\xc1\x11\x00\x81\xbd\x4d\x16\xd2\x86\x27\xac\xad\x92\x26\x8e\xfb\x93\x71\x34\x41\xf8\x24\x56\xc4\xd1\x1c\xdf\x50\x60\xaf\x2a\x10\xb1\x24\x5e\xa1\x18\x2a\x5e\x6c\x9c\x8a\xfa\x5b\x83\xce\x6e\x8f\x85\x58\x67\xb6\xdd\x08\x77\x7d\x90\x76\x1b\x03\x29\x8d\x65\x83\x52\xb1\x82\xf6\xa7\x5b\x9a\x92\x12\x19\x0b\xcb\x9f\xad\x59\x11\xe9\x16\x18\x8a\xcd\x86\x55\xe2\x11\x0b\xdb\xf0\xe0\xd9\x31\xac\xc5\xd7\x55\xcc\x39\x48\x83\x56\x83\xe9\xe0\xf3\xc1\x51\x3c\x82\x27\xfd\xd4\x51\x7d\xaf\xe1\xc9\xa7\x86\x07\xc5\x0d\x21\x66\xb0\x2f\xeb\x95\x67\xd0\xbc\x46\x94\xe7\x11\xf2\x5c\x7c\xe9\xfb\xae\xdf\x75\x3a\xbd\x6e\x7f\xd8\x19\xb8\xbd\xbe\x37\x50\x77\x2e\xea\xee\xb4\x7c\xd6\xf2\xfa\x0d\x1a\x21\x79\x85\xeb\x7c\x6e\x5c\x91\xbf\xaa\xc9\x85\x44\xc2\x2e\x5b\x1e\x6b\xf5\x6c\x9b\x5d\xf0\xbf\x23\xd6\x64\x2f\xd8\x99\x4f\x74\xab\x10\xc3\x2d\x6f\x4b\x22\xd5\x8b\x23\x67\x5d\xc3\x76\x21\x34\xad\xe3\x07\x88\x69\x88\x7c\x68\x75\x65\x8a\x3a\x7e\xe9\xb7\x65\xf8\xab\x0f\x9e\xdf\xc7\x2f\x90\xdf\x52\x61\xb0\x3e\xb4\xb8\x52\x6c\x74\x5f\x8a\x5e\x22\x53\x55\x4d\xbc\x0c\x97\x15\x8a\x24\x7f\x88\x71\x66\x14\x19\x66\xe8\xf0\x62\x33\x5a\xbe\x40\xe1\xd9\xe6\x2c\x68\x7a\x67\x71\xcb\x3b\x8b\xf1\x8b\xcd\x8b\x80\xa0\x84\xcb\x34\xc8\x6b\x06\xbc\x24\xc4\x2d\x94\xb5\x42\x8c\x2f\xd3\x3c\x4f\x1a\x34\xe1\x6f\x79\x67\x2e\x26\xcb\x17\x62\x51\x0d\xdb\x64\xc8\x35\xfa\x61\x8d\xd0\xb5\xd3\xd6\x65\x7c\xe7\xad\xeb\xe4\x4f\x39\xd0\x62\x90\x07\x6a\x90\x07\x23\xd6\x32\x06\x79\x19\xdf\x21\x4f\x26\xa2\x12\x43\x7c\x14\xaf\x45\xbc\x91\x86\x77\x51\xdd\xb7\xca\x89\xcd\x73\xd6\xa0\x8c\x4f\xef\x85\x2b\x22\xe1\x74\xe5\x47\x02\xc7\xbc\x4e\x9f\x8b\x8b\x2c\x0b\xac\x9d\xe0\x26\x65\x0f\x94\x91\x16\x29\x75\x61\xa3\xb9\x43\x98\x5e\x7d\xc9\x58\x94\x86\xb7\x4b\x66\xb4\xc8\x80\x8c\x81\x25\x6d\x88\xa3\x92\x9a\x28\x9a\x0d\x2a\x98\x0c\xbb\xe7\x6a\xbb\xac\x2b\x8e\x52\xf4\xb4\x15\x89\x46\xa6\x15\x7e\x1e\x20\x06\x11\xa8\xed\xfa\x14\x12\xeb\xbd\xd5\x3c\x6d\x36\x53\x78\x10\x60\x50\x78\x0b\x73\x13\x83\xec\x4f\x57\x7f\x21\x11\xbc\xbb\xba\xfa\x96\x34\x3c\x50\xf1\x1c\x64\x9f\x88\x85\xa5\x1f\xa5\x95\x3e\xae\x6e\xe3\xa5\x89\x28\xc2\x08\xda\x8d\xc8\x39\x65\x23\x91\x28\xf0\x83\x85\x9b\x12\x10\x3e\x16\x6e\xa7\xb2\xba\x8d\x51\xdd\x6b\x4b\x22\x3e\xe8\xdf\x57\xd6\xc9\x94\xeb\x21\x85\xe7\x6f\x34\x71\x42\xe1\x78\xfe\x23\x0b\x3e\xd7\xb4\xed\x40\xc5\x0d\xb7\x52\x6f\xc3\xdb\xaf\xf6\x61\x0b\x71\xf4\x3a\x61\xec\x67\x56\x67\x37\x5f\xda\xf6\x5c\x78\x4f\xd9\xf6\x46\x88\xfd\xea\x53\xb6\xcd\x6b\x02\xa6\x42\x3e\xfb\xc4\xeb\x14\x96\x72\xd3\x3b\x53\x59\x6a\x86\x47\x0c\x20\xfa\xc8\xd8\x6b\xf7\x84\x01\x44\x04\x59\xbc\xdd\x64\x22\xd0\xff\xfd\x6d\xca\x92\x7b\x96\xe4\x79\xe4\xfc\xc8\x6e\xff\x14\x66\xbb\x77\x20\xa0\x11\x17\x3f\xa6\x2c\x4d\x21\xa5\x91\x86\x57\x84\x0d\xb5\x54\xb1\x45\xa5\xba\x83\x82\x63\x26\x79\x19\x26\xb3\x17\x44\x07\xa1\x8c\x92\xe7\x9a\x29\x0d\x9c\x59\xbc\x0a\xc2\x48\x00\xca\xb3\x2f\x61\x86\xf0\x39\x3b\xe7\xec\x92\x39\xf3\x08\x18\x65\x82\x75\x09\xc6\x16\x16\xd8\x48\xb1\xe6\x98\x6c\x94\x20\x4c\x0a\x3f\xfa\x78\xbb\x2d\xae\x85\x61\x8a\x45\x19\x4b\x90\xf4\x4d\xdc\xe0\xc4\x6c\x4b\x20\x2a\xfe\x14\x4e\x3f\xa3\x25\xde\x16\x61\xbe\x8d\x98\x8f\x4c\x14\xdc\x87\x77\x9c\xcb\xf3\x4a\x8a\x1f\x4e\x9a\x05\xd1\x2c\x58\xc6\x11\xe3\xb2\x4e\x6a\xdb\xa9\x93\xb0\x34\x5e\xde\x33\x1d\x0c\x54\x14\x28\x6d\x0e\x9f\x54\x3e\x3a\x75\xb2\x05\x8b\xf8\x07\xa5\x11\xb5\x72\x53\x79\x22\x45\xa0\xdb\x23\xea\x9c\x73\x51\x6d\x41\xb5\x89\x4d\xe1\xb1\x7d\x62\x5f\xb2\x77\xf1\x8c\x21\xcb\xc2\x27\x5c\x7a\x8c\xd1\x12\x3b\xb1\x9c\x42\xb4\x80\xa7\xe9\x22\x48\x82\x69\xc6\x92\x6f\x83\x2c\x20\x0d\x77\x8b\xa1\xf2\xb1\x85\x33\x0b\xb2\x80\xce\x69\x63\xbe\x2f\x4c\x17\x21\x3a\x4f\xf3\x88\x44\x20\x74\x22\x15\x4a\x71\x22\x02\x21\xa4\x3c\x11\x62\x60\x79\x8e\x18\x0d\x21\xe1\x4a\x45\x46\x43\x15\x7f\xde\x23\x5e\xbb\xa7\xf4\x53\x6d\x0a\x1c\xfe\x86\x20\xcf\x32\x83\x6c\x68\x70\x9f\x13\xe1\x38\xbd\x96\xcb\x91\x4a\x10\x32\xa3\x46\x09\x8c\x51\xa8\xa2\x99\x81\x88\x51\x83\xda\xf3\x4d\x30\x3b\x55\x2b\xfb\xd4\xb0\xfe\x71\x8d\x9d\x32\x48\x68\xb4\x55\x01\x25\x6a\x42\x65\xb0\xbf\x2a\xe1\xd4\x93\x72\x2d\xb9\x94\xd2\x9c\x79\x6d\xa8\x1d\x7b\x10\x5d\x28\x62\x25\xf9\x40\x3c\xf7\x84\xa8\xde\x8b\x45\xc5\x6e\x2b\xdd\xb0\x2f\x82\x2d\x14\x3d\x0f\x52\xce\xa2\x4c\x71\x66\x93\xe7\x7b\x5c\x40\x9e\x97\x3d\x6d\x21\x13\x87\xa7\xf4\x5a\xd0\x5e\xe1\x9c\x66\x05\xb7\xd3\x19\x9b\xdf\x2d\xc2\x9f\x3e\x2f\x57\x51\xbc\xfe\x5b\x92\x66\xe5\x71\xda\x38\x99\xd0\x3e\x44\xa5\x85\x4b\x3b\xf5\x56\x3c\x6d\x45\x46\x1d\xb6\xc5\xd0\x6f\xd0\x0d\x7a\xda\x02\xc3\xe3\x84\x2b\x54\xb2\x91\x42\x05\x15\xe5\x19\xc6\x2a\x5e\xd5\xc2\x0d\x3e\xe0\x3b\xe7\x91\x45\x50\x16\x0d\xa4\x03\xce\x1e\xd6\xc4\x92\x7a\x30\xa5\xa1\x33\x87\x39\x8d\x9d\xf9\xf9\xe6\x72\x79\x5e\x78\xee\x2c\x60\x46\xd3\x32\x44\x57\x7a\xe7\xc0\x9a\x4e\x47\x11\x9a\x61\x1d\xc9\x3b\x45\x33\x8c\x09\x2f\x81\x15\xd5\xe7\x54\x70\x4f\xdd\xf3\xd5\xe5\xfd\x39\x9e\xcb\x4d\x39\x83\x05\x5d\x8f\xef\xa5\x7f\x0f\x4a\xc6\x8b\x09\x9d\x8d\x17\x65\x32\x8d\x64\x4b\x36\x87\x7d\x7c\x8a\x70\x72\x45\xd0\x55\x38\xf9\xf0\x88\x25\xb0\x70\x8d\x73\x5d\xe5\xf5\xe0\xaa\x99\xf7\xbb\x18\x59\x6f\xae\x6e\x3e\x7c\x7c\xff\xe9\xbd\xc5\x57\x81\x31\xb7\xdb\xfd\xa8\xe5\x0c\x12\xca\x50\x77\xc8\x75\x97\x79\x12\xac\x98\xc5\x67\x3a\x56\x3d\x95\x71\x91\x4e\x9a\x3d\x2e\x99\x33\x0b\xd3\xf5\x32\x78\xa4\x56\x14\x47\xcc\x02\x86\xfa\x6d\xec\x04\xeb\x35\x8b\x66\xaf\x16\xe1\x72\x86\x12\x0c\x89\x93\x26\x53\x6a\xfd\x14\xdc\x07\x12\x1b\x98\x58\x80\x32\x19\x19\x9d\xb1\x28\xfb\x51\x82\xcc\x69\x7a\x85\x9d\x78\xcd\x22\x84\x21\x73\x1e\x92\x30\x63\xc8\xba\x90\xaf\x5d\x16\x14\xed\xb5\x5a\xbe\x17\x7f\x3d\x53\xb7\x2c\xfe\xf8\x74\x19\xa7\x0c\xf1\x69\xcf\x9c\xd7\xe7\x51\xab\x75\x8e\x95\xe3\xb2\x11\x92\x3c\xe6\x5a\x4b\xe1\xa9\xb1\xe1\xa4\x7e\xd7\xac\xab\x28\x66\x2d\x58\x4c\xd5\x1d\x9b\xb2\x11\x4a\x2b\x06\x21\xe1\x12\xc6\xf7\x70\x0a\x95\x1b\x9b\xe5\x12\x44\x3a\x18\x86\x49\x42\x37\xa8\x12\x45\x9f\x90\xb0\x30\x43\x7b\xae\x4b\x3c\xd7\x05\xcf\xef\x12\xcf\xef\xea\xe3\x2b\x79\x98\xe1\x92\x9e\x0b\xfd\x36\xe9\x0b\xaa\xf0\x55\x6f\xbd\x63\xbe\xbe\xca\x6b\x51\xc1\xce\xc9\x8f\x88\x73\x93\x7e\x87\xf4\x3b\x02\xf9\xf8\x88\xdd\x55\xfb\x2f\xb7\xb5\x05\xd3\xed\x57\x31\xf2\xba\x83\x7a\xb0\x35\xae\xbd\xef\x08\x4f\x5c\x21\x28\xa3\x29\x03\x89\xdd\x91\xd2\x40\xef\xac\x0d\x75\xcf\xd3\xcb\xcd\x39\x96\x6e\xd0\x09\x0d\xc6\x9b\x66\x73\x02\xd9\x38\x99\x54\xbd\x21\xf5\x26\x32\xbb\xa3\xe5\x1f\xcf\x3d\xea\xfd\xb7\x67\x3e\xec\xe8\xdd\xd3\x69\x2b\xba\xa9\x0e\x75\xfb\xc2\xa6\xf6\x15\xf0\x6b\x05\x39\xc7\x47\x61\xb9\x2f\x2c\x32\x1a\x4b\x78\xb9\x40\x45\x4a\x6e\x4c\x64\x39\x85\x4f\x58\x06\x8b\x73\xc9\x41\x94\x15\xd8\x62\xa8\x11\x39\xf3\x12\xcb\x10\xd8\x38\x9b\xa8\xd5\xa3\xc8\x87\x36\x38\x16\x80\x2e\x72\xba\xd5\x14\x0b\xf9\xb0\x9c\xe8\x23\xa6\xea\x12\xfc\xc6\x6d\x73\xa5\x22\x36\x83\xc6\x21\xa0\x7b\xc8\x7e\x55\xe8\x48\xdb\xae\x1d\xa8\x77\xc1\x8a\xa5\xa3\xc3\xb7\x90\x7c\x1b\x93\xf1\xe4\xe4\x2b\xfc\x32\xb0\x6d\x6b\xac\xb0\xd4\x24\x25\x99\x58\x94\x16\x06\xe5\x8a\x56\x6d\x1a\xad\x39\x8b\xdd\xc1\xcd\x3c\x0d\x94\xdb\x34\xde\x6e\x11\xc3\x24\x94\xd0\x13\x72\x5c\xdb\xc4\x73\xdb\x7a\x3c\xc5\xa8\x1d\x73\xbf\x73\x7b\xca\x42\xeb\x16\x6c\xc3\x92\xcb\xd9\x02\xab\x20\x0b\x16\x16\xeb\xe4\xf0\x38\xd4\xea\x8e\xfc\x6b\xa1\x6a\x55\x8f\x78\x6e\x4f\xd2\x05\xd1\xa6\x1a\xad\xf1\xe0\x17\x24\x17\x4f\x15\xa4\xb3\x7b\x4c\x3f\xf0\x76\x00\x61\xf6\x58\x4a\xb0\x67\x85\xdc\xa7\xaa\x77\x2c\x33\x7c\x7a\x6b\xbb\xc6\x24\x68\x4c\x24\xce\x40\x47\x6c\x1c\x4f\x6a\xe1\x21\xcd\xc3\x57\x69\x35\x2e\xf1\x6c\xcd\x7b\xa3\xca\xaf\xb2\x6d\xa4\xf2\x8a\x6c\xde\x28\x10\xf8\x0e\xf2\xd8\x55\x92\x5e\xcd\x83\xc5\x76\x11\x63\x74\xc4\xd6\x57\x8e\x91\x62\xbf\x1d\x0f\xa3\x86\x57\xcf\x82\x8f\x83\x22\x49\xe8\x31\x4e\x6d\x5c\x58\xd2\xb1\x42\x22\x90\xf0\x1f\x49\x83\x06\xb6\x1d\xa1\x14\x12\x6c\xdb\x4b\xe9\x37\x9c\x48\x02\x7a\xae\x4f\x76\x05\xb1\xe4\x8f\xd0\x4c\x90\x4a\x2e\x81\xfc\x4b\x8c\x96\x90\xe0\x3c\x2f\xde\x29\x68\xe7\x4e\xa7\x25\xc5\xe8\x78\xa4\xe3\x19\x5d\x3f\x72\x34\x6a\xae\xf6\xfd\x69\xe7\xd2\xdb\x6f\x5e\xc7\x35\x72\x0e\x5f\xc7\x4f\xdb\xda\xd3\x56\xbd\x84\x8f\x1c\x46\xf6\xfc\xaa\x57\x74\xef\x08\xf6\x8c\x94\x20\x51\xa8\x92\x10\x08\x47\xe6\x31\x2b\xe4\xd1\x31\x9b\xc8\x83\xa5\x40\x64\x29\xe4\x22\x4e\x84\x22\xe7\xba\x19\x39\xaf\x5f\x54\xfc\x17\x13\x19\x58\xa6\x11\x3d\x20\x10\xbd\x95\x1e\xbd\x46\x84\x92\xc8\x0d\x70\x84\xd9\x96\x52\xbd\x5e\x5b\x9c\x5f\x39\xf3\xe7\x42\x90\x19\x72\xb1\xb0\xf0\x09\xf6\x1a\x21\x61\xd3\x33\x04\x63\x17\xa6\x74\x3c\x91\x12\xb1\xa2\x9f\x01\x24\xa5\x93\xfa\x54\x2e\x1c\x36\x1a\x27\x10\x8c\x93\xc9\x84\x04\x26\x07\x9e\x6e\x4d\x16\x5c\xca\xb1\x05\xc1\xac\xcb\x7f\x50\x76\xb1\xbd\xa3\xb8\xe8\x18\xf1\xbe\x8b\x9d\x8f\x6c\xbe\x64\x53\xd3\x2f\x23\xb0\xed\xc0\x89\x1f\xa2\x3f\xed\x2d\x2e\xe5\x9b\xef\xcc\x51\x2c\xce\x13\xa5\x83\xbe\x16\xba\x47\x99\x26\xc7\x09\xbf\xab\x90\x8b\x34\x71\x57\xb2\xb8\x14\x1f\xb4\x16\xea\xd5\xa5\x5a\x30\x7d\x5c\xca\x24\xbd\xca\x88\xd2\xc1\x22\x3d\x82\xd1\x5c\xef\x2c\x42\xfc\x4e\x17\x37\xad\x96\xcb\x75\x97\x96\x77\xe6\xd6\x20\x76\x87\xca\x21\x93\x6f\xff\xb6\x10\x25\x4b\x1c\x4c\xe9\xc5\x61\xdb\x56\x8b\x93\x42\x87\xeb\xeb\x2f\x33\xe4\xe2\x51\xcb\x25\x89\x34\xfc\x7a\xed\x0e\xf1\xda\x1d\xf0\xda\x5d\xe2\xb5\xbb\x46\x1f\xbe\xe2\xa7\x23\xfa\xf0\x26\xda\xe9\x81\x02\xbb\xeb\xf2\x99\x38\xfb\xe7\x71\xab\x39\x19\xb9\xe3\x2f\xff\x38\x39\x33\xba\x36\x68\x50\x1a\xa1\xb8\x69\xb9\x03\x0b\xe7\xb9\xef\x17\xbf\xbf\x78\x3d\x6b\x57\x41\xd3\xb1\xcf\x66\x2f\xcb\x43\xed\x04\xb2\xcb\xcb\x4b\x37\xcf\x51\xe0\x64\x2c\xe5\x5b\x6b\xc4\x05\x19\x17\xe3\xaf\xf5\xaf\x86\xf1\x7d\x0d\x3b\xfb\x89\x91\x86\x07\xf7\x44\xf0\xfb\x1d\x51\xe0\x49\x7a\xd3\x0a\x78\x5b\x45\x5d\xea\x72\x50\xec\xea\x5e\xda\x10\x3b\x3c\x18\xd5\x57\x82\x0b\x87\x02\x68\xab\xe2\x48\x24\xdc\x2c\xf4\xd9\xaa\x3a\xa3\x89\xb9\xd0\xab\xc7\x08\xb9\x22\xd7\xaa\x34\x20\xf1\x7d\x9c\x68\xe3\x46\x71\x68\xae\xcd\x7e\x3d\x32\xec\x89\x66\xd7\xf0\xac\x8a\x96\xd0\x3e\x12\x1e\xa4\xe1\xa8\xbd\x63\x59\x2c\x3c\xef\x88\xaf\x40\x49\x7b\x42\xce\xc0\x32\x2c\xa8\x3e\x64\xe3\x70\x02\xc9\x8e\xf4\x2e\x4f\xe0\xc4\xe7\x8e\xe8\xb9\xda\x58\xa9\x9d\xfb\xb5\xd1\x5b\x5a\xc5\xd3\x64\x6a\x49\x79\xbd\x37\xe4\xf4\x0d\x59\x56\x33\xc5\xda\xfe\xa0\x05\x57\x0b\x9f\xc8\x6c\x26\x61\x94\xae\xd9\x34\xbb\x8e\x37\xc9\x94\xd5\x51\xd1\x54\x0b\x92\x5b\x40\x87\x91\xef\x34\xba\x41\x5d\x9e\xcd\x93\xa5\x6d\xa3\x18\x25\x60\x45\x42\x95\xce\xf3\xb0\xf8\xc1\x65\x7a\x21\xbc\x4b\xcf\x31\xa4\x1f\x0d\xd4\x53\x81\xb8\x39\xb2\xac\x26\xff\x4b\x36\xd2\xf8\xa1\x36\x4f\x86\x31\x7f\x5b\xc4\xf7\xcb\x88\x50\x92\x8a\x0b\xfd\x2b\x54\x43\x47\x90\x52\x83\x79\x39\xe8\x52\x8c\xb7\xb8\x0c\x7f\x31\xf0\x62\x8a\x41\xda\x77\x8f\xa8\xc3\xa1\x5a\x84\xa9\x84\x88\x18\x8b\xc4\xf6\x95\xe3\x60\xc3\x32\xad\xb8\xde\x90\xf4\x86\x3a\x8e\x45\x6a\x21\xca\xab\xdb\xab\x4b\x2a\x52\x6b\xe4\xea\x08\x6e\xb8\xeb\xa0\x2e\xa3\x24\x8e\xb3\x74\xf5\x50\x7d\xd8\xb9\xf6\xee\x2b\xb0\x9c\x41\xa1\x43\x29\x0d\xa7\x70\xa9\x8d\x95\x69\x90\x6b\xf9\x15\xc4\x41\xde\xa0\x53\xfe\x05\x1d\xb2\x27\x07\x8d\xcd\x4e\xd3\x98\x97\x84\xd1\xdd\x69\x9c\x2d\x58\x22\x33\x77\x06\x91\x12\x3d\x4f\xe3\x44\xd8\x13\xca\x68\xc3\x58\x60\x89\x2b\x3f\x9e\x06\x35\x01\x92\x6b\xbf\xfa\x1f\xc4\x57\x05\x20\x98\x08\x14\x0c\xa3\x69\xbc\x5a\x07\x59\x78\xbb\x64\xa7\x09\x9b\xb2\xf0\x9e\x25\x46\x30\x63\x15\x06\xbf\xd3\x27\x9d\xbe\xc8\x29\xf4\x2c\x64\x17\x01\x03\xc4\x50\x4f\x20\xe9\xd5\x4e\x03\xa4\x74\x37\xae\x40\x87\xbd\xc0\x86\x06\xb0\xa4\x28\xa2\x67\xc1\x19\x84\xf4\xec\xf6\xc5\xd9\x1d\x04\xda\x90\x6d\x05\x5c\x99\x90\xbf\x42\xf9\x4b\xe0\x13\x3b\xcb\x20\xcd\xde\x44\x33\xf6\x25\xcf\x79\x41\x58\x16\x60\x98\x96\xce\xe5\x67\x08\x8f\x46\x67\xa2\x11\xc8\xb2\xf0\xd8\x9b\x9c\xa3\x65\x9e\x4f\x05\x2e\x5d\x2d\xe8\x1b\xef\xce\x46\x04\xe6\x16\x82\x8c\x88\x34\xe3\xe3\x2c\x3b\x87\xac\x7f\xb6\x9a\x1b\x27\x15\x34\xa2\x69\xfd\x01\x8d\x1a\x7f\xfd\x6b\x8a\x2d\x50\x42\xd2\x86\x6f\x43\x11\x31\x40\x37\x66\xb3\x22\x8d\x11\xb8\x01\x26\x1e\x88\x04\x38\x5e\xf1\x04\xdd\xa8\x60\x83\x51\xe4\x84\xbc\xa0\x19\x71\x42\xac\x10\x9f\x33\x0c\x53\xf1\x4a\x54\x00\x4a\xd9\xb6\xda\x5d\x91\x70\xb5\xda\xc5\x28\x0a\xa9\x77\x1e\x5e\xec\x5a\x3c\x5b\xbe\xc0\x06\x2c\xac\x4d\x25\xed\x0f\x45\x9a\xf3\x71\x38\xd1\xf0\x5d\x5b\x01\x27\xb0\x13\x87\xd6\xeb\x91\x9e\x60\x24\x75\x39\x64\xf6\x84\xfd\x30\xdd\xb5\x9a\x15\x9a\x1d\xa5\xd9\x48\x38\x18\xe6\xb9\x77\xc6\x28\xf5\xce\x32\xc2\x1a\x94\xd9\x76\xd6\xa0\x99\xe6\xb2\xc7\xf2\xc2\x68\xb7\x39\x69\x74\xda\xe3\xaa\x42\x67\x6a\x94\xf8\x95\x0d\x4a\xb3\x7d\x54\xf1\xa6\x45\x4e\xa7\x22\xb8\x36\x65\xd9\x69\x20\x32\xfd\xca\x25\xda\xb0\x2a\xb6\xc0\xa7\x94\x65\xca\x1f\xd3\x49\x77\x54\x57\x64\xdd\xdc\x88\xf7\x6e\x6e\xac\x30\x7a\xda\x96\x52\x8e\xc2\xdb\xe6\x52\x06\x52\xb1\x02\x3b\x31\x86\x5c\xc6\x15\x99\xaf\x76\x35\x66\x30\x2a\x95\xc7\x70\x3e\xc6\x28\x83\xf1\x84\x0b\x82\x12\x00\xb2\x50\x5a\x85\x5f\x88\x11\x80\x27\x5c\x32\x76\x25\x7f\x73\x02\x62\x69\x29\xe2\x3a\x71\xf1\x19\x9a\x91\x48\x19\x90\xb6\x5b\xf4\xb4\x85\x86\xa7\xc3\x9c\x30\x4c\x17\x6c\xfa\x99\xc4\x52\x40\xf6\x88\xe7\x7a\x15\x57\x7a\xed\x44\xe8\xd5\xa5\x2d\x39\x0a\xfb\x32\x54\x78\xa7\x5d\x7d\x32\xf1\x7c\xdc\x53\x81\xda\x72\x12\xdb\x76\x66\xdb\x22\x1f\xb8\x6d\x87\xce\x1c\x65\x10\xc0\x53\x35\x67\x81\x0b\xf5\x78\x67\xc2\x65\x6d\x5b\x71\x8a\x54\x36\x31\xc1\x93\x0a\x6b\xe1\xe1\xcc\x29\x26\x90\x61\xdf\x33\x1d\x38\x2b\xe0\x94\x47\x24\x22\x26\x10\x58\x19\x4d\x46\x8c\x98\x7e\x64\xb1\x48\xb8\xc4\x20\xde\xef\x8c\x4e\xb6\x50\x69\xb8\x64\xa0\x65\x93\x8f\x21\xe3\x8b\x50\x06\xe5\x45\x15\x2a\x69\xe9\x2b\x98\x8f\x42\xe5\x45\xfc\x8f\xe1\x48\x2a\x83\x1b\x40\x71\x75\xf1\xd9\x23\x46\x91\xae\xd2\xba\xfb\x42\x6f\x0d\xc7\xd6\xcd\xcd\x34\x4e\x58\xeb\xa7\xf4\x26\x5d\x04\x09\x9b\xdd\xdc\x58\x32\x1c\xb8\xf6\x0e\x7d\xda\xe2\xf3\x03\x62\x57\xb9\xb0\x65\x3b\xf9\x9f\x92\x0f\x64\xa3\x8c\x3c\x6d\xb9\x84\x63\xe9\x14\xdc\x16\xdf\x48\x52\x85\x2d\x92\x9e\x45\x8e\xba\x82\x55\x3c\x63\x44\x78\x56\x8e\xac\xf5\x26\x61\x16\xb1\x24\x71\xb6\x60\x1a\xaf\x1f\x93\xf0\x6e\x91\x11\xeb\x5f\xff\x9f\x53\xdf\xf5\x86\xa7\xdf\xb2\x28\x4c\x4f\x3f\x6c\xd2\xc5\xe7\x20\x61\xf7\xa7\xe8\xe7\x65\x1c\x26\xf1\xf4\xb3\x93\x6c\xb0\x25\xe4\x1e\x29\xef\xa8\x70\x78\xe5\x2b\xe6\xd5\xa5\x75\xd9\xd5\x21\xda\xed\xe7\xc3\x01\x97\x26\xa3\x40\xc8\x08\x75\x51\x09\x25\xe5\xcf\x73\x09\x37\xc0\xb9\x1b\x0a\xb0\x70\x18\xce\x48\x88\x92\xca\xaa\x92\x00\xad\xda\x01\xd7\xab\x4b\xf5\x72\x08\x06\xe4\x2b\x68\xbe\x8d\x86\x08\x74\x30\xbd\xd8\x46\xca\x55\x5f\x9c\x8f\x54\x4e\xa5\xbc\xc2\x8d\x5f\x40\x60\xca\x95\x5f\x98\x4b\x8e\x66\x86\x69\xab\xc3\x89\xee\x6f\x41\x69\x2f\x62\x3b\x0a\xe1\x05\x71\x0d\x0d\x0b\xd0\xf6\x44\x44\x09\xeb\x03\x30\x7d\x76\x74\xe1\xe6\xf9\xe6\x92\x2e\x47\x6c\x64\x59\x8a\x6e\x12\x14\xd3\x54\xe8\xe6\xaf\xe2\x19\x7b\x99\x71\xe9\xe0\xa2\xdb\xf5\x87\xbd\x3c\x8f\x2f\xbb\xbd\xb6\x37\xcc\xf3\x4d\xd3\x93\x11\x4d\x28\xd8\x79\xb8\xe9\xf1\xc7\x7b\x6d\xdf\xcd\xf3\xe0\xb2\xdb\x6f\x77\xda\x23\x36\x4a\xb5\xb2\xbf\xc1\x24\x26\xfc\xb7\xb4\x53\x6f\x60\xd3\xf4\x31\x09\x5a\xe2\x8d\x26\x8a\x5b\xe2\x4b\x17\x17\x9e\x8b\x9b\xbd\x6e\xb7\xdd\x53\xa7\xeb\x43\xe2\xb5\x87\x32\x98\x52\x64\x7b\x3c\xe6\x51\xef\x1f\x1f\x3c\x28\x33\xe4\x64\xfb\x49\x3b\x54\x68\xc3\x7f\xb0\x9a\x49\xd3\x3a\x9d\xc5\x2c\xe5\x9c\x36\x98\x4e\xd9\x3a\x3b\x4d\xd8\x1d\xfb\x62\xe4\x8d\x28\x86\x59\x11\x17\x19\xec\x39\xf0\xc9\x40\xe6\xa4\x3c\x62\x2f\xd2\xe6\xbc\x9e\xb2\x16\x75\x05\x90\xec\x99\x75\x76\x07\x75\xe9\x2f\xa4\x6f\x82\xfa\x9e\xb4\x0b\xa5\xd4\xba\xb0\x9a\xda\xa3\xde\xb2\x94\x06\x96\x36\xa9\x75\xca\x5b\xff\xf7\xd4\xfa\xfb\xa6\x7a\x23\xc2\x45\xd4\x76\x00\x96\xfd\xb7\x4d\x9c\x9d\x5b\xb8\xf9\xf7\xd6\xdf\x63\x48\x9b\xd6\xa5\x00\x5c\xbe\x38\xb3\x9a\x19\xff\x71\xc8\x23\x5a\x6b\x21\x4f\xdb\x93\x44\x5a\x0e\x53\x69\x39\xfc\x20\x2c\x87\xe1\x7e\xe4\xb3\x0c\x8e\xe6\x9f\x29\x62\xa9\x39\x6d\x73\xb2\xf8\xfb\xf8\x81\x25\xaf\x82\x94\x21\x9c\xe7\x99\x52\x6f\xf9\x83\x5a\x58\x6c\x6f\x31\xe8\x38\x13\x48\x8c\xe1\xdd\xb1\x3b\x1e\x4b\x2f\x23\xe2\x18\xa5\x41\xa8\x5d\x0c\xf3\x61\x77\x6f\x9d\xe6\xa0\x3a\xce\x15\x13\x63\x19\x8c\x34\xb2\x4e\x2d\xa2\x1e\x4c\xb8\x08\x1f\x29\x30\xde\xe9\x05\xdd\xe4\xb9\x65\x51\xba\xd4\xa6\x90\xf4\x44\xba\xb5\x4c\x5b\x1b\x58\x50\xa5\xbc\x2c\x41\x78\xd8\x4d\x59\xb8\x44\xf3\xb3\x02\x5b\xbe\x18\xa9\x85\x1e\x89\xb9\x6d\xa3\x05\x5d\xa8\x2d\xe3\xc2\x1c\x63\x08\x46\x8b\x66\x4a\xd2\xe6\x42\x6e\x8f\x36\xf1\xda\xed\x22\x2b\x44\xb9\x4d\x9e\x2b\xd9\x3c\x83\xe2\xc8\x09\x2d\x09\x8b\x00\x0f\x82\x84\x5a\x96\xc8\xb5\x28\x31\x22\x63\x4e\x51\x62\x2e\x1a\xbb\x35\xb8\x42\xaf\xe2\x4d\x94\x29\xd9\xf5\x96\x9d\x46\xec\x4e\x44\x26\x5a\xca\xf8\x1f\x5f\xba\xe7\x28\xbe\xbc\xbc\xa4\x1e\x96\xa1\xc6\x19\xc6\x9e\x1d\x73\x6d\x86\x5f\xef\x64\x05\xd9\x25\x09\x47\xe4\x9d\x5e\x49\x12\x2a\x70\x0a\xc2\x32\x98\x52\x6b\x6c\x35\x83\xa6\x35\xb1\x60\x43\x0d\x8d\x29\x6d\xa6\x4d\xeb\x85\xc5\x29\xa7\x2a\x95\x25\x7f\xb0\xaa\xde\x82\xe5\xb7\x42\xfa\xb4\x85\x94\xc6\xfb\x0e\x88\x8d\x46\xc0\x77\x02\xce\x73\xeb\xd7\x5f\xfe\x8f\x7f\xfd\x2f\x56\x83\xaa\x0b\x51\xbc\x15\xde\xa9\x7c\x4f\xa5\xa3\x0c\xcd\x31\xe1\x4f\x9f\xf0\xed\x1c\x8e\x93\x09\xdd\x98\xdb\x2c\x2d\xb7\x45\x28\xfc\x10\xa7\xc2\xd4\x59\x2f\x5b\x30\x6a\xd2\x28\xf0\xb8\xdc\x89\x18\x2d\xb4\x59\xb4\x01\xcb\xc2\x18\xfc\xbd\x1b\x4b\x79\xa3\x02\x61\x25\xa2\x53\x95\xe5\xb2\x7e\x33\xd6\x48\x70\x06\x5c\xce\x5f\xb3\xbf\x46\x7f\xbd\xff\xeb\xfc\xaf\xc9\xe9\xbf\xfe\xd7\xff\xf6\x7f\xfd\xf2\xdf\xfe\xeb\xff\xf9\xeb\x2f\xbf\xfc\xfa\xcb\x7f\xfe\xf5\x97\xff\xe1\xd7\x5f\xfe\xc7\x5f\x7f\xf9\x9f\x7e\xfd\xe5\xbf\xfc\xfa\xcb\xff\xfc\xeb\x2f\xff\xcb\xaf\xbf\xfc\xaf\xbf\xfe\xf2\xbf\xfd\xfa\xcb\xff\xfe\xeb\x2f\xff\xef\xaf\xff\xf9\xff\xfe\xff\x7e\xf9\xe5\xaf\x1b\xdf\xf5\x07\xe2\xdf\xe1\x5f\x37\x73\x36\x9f\x5b\x4a\xe5\xaa\xcb\x60\x54\x28\xfa\x95\xf8\xf2\x7e\x4f\x1d\x81\xb7\x65\x58\x49\x77\xa8\x70\x5a\x5d\x2c\x06\x52\xfb\x00\x2e\xe8\x94\xeb\x2f\x6f\x56\x2b\x36\x0b\x83\x8c\xc1\x8c\x4e\x25\x74\x5c\x59\xb4\xa6\x53\xe7\x2d\x4b\xd3\xe0\x8e\xbd\x5a\x04\x51\xc4\x96\xb0\xa2\x53\xe7\xdb\x30\x5d\x73\x9d\x06\xee\xa9\x0b\x8f\x7c\x41\xdc\xed\x47\xee\x37\x85\xba\x1e\xce\xd1\xe3\x4e\xfe\x3f\x3e\x4b\x1a\x7c\x95\x2f\x01\x65\xf7\xe2\xd7\x90\x21\x4e\x05\x6f\x2b\xbb\x52\x63\x12\x08\xd7\x36\xbc\x3d\x59\xd8\xf6\x2c\xcf\xd1\xe2\x40\x46\x9b\xf1\x04\x12\xea\x9d\xef\x41\x3d\x27\xe7\x58\x23\xf8\x14\xda\x75\xd2\x6c\x96\x67\x23\x8f\xe3\x66\xf3\xbe\xe2\x2b\x9f\xd6\x99\xa0\xd8\x88\x95\xa9\x12\x19\x86\x0c\x6f\x21\x42\xf7\x18\xee\xb7\x66\xfc\x0d\xc3\x4f\x46\xc7\xb6\xb0\xe7\x64\x39\xc7\xa3\xa8\xda\x85\xd2\x75\x31\x40\x77\xc0\xc0\xc3\x78\x4b\x56\xb6\xbd\x72\xa2\xf8\x61\xe7\x61\x51\x66\x3e\xb7\x1e\xa1\x98\xa2\x50\x98\x44\xd6\xd8\xe1\xab\xd1\x87\x50\xfc\xf5\x9c\x38\x5a\xc9\x59\xa4\xb7\x02\x09\x3b\x76\xd6\x71\x9a\xa9\x99\x85\x98\xd7\x40\xa6\x4e\x30\x9b\x5d\xdd\xb3\x28\xfb\x3e\x4c\x33\x16\xb1\xfa\x28\x59\xe3\x45\xdb\x6e\x4c\x9d\x70\xc5\x3f\x71\x2d\x5c\x2a\xd2\x11\xaa\xb6\x72\x6a\x7e\x07\xb1\xa6\x65\x01\xa7\x36\x5b\xd8\xff\x18\xb2\x54\x13\x2d\xb8\xe5\x2a\x2e\x26\x11\xb5\xe2\x28\x61\xc1\xec\x31\xcd\x82\x8c\x4d\x17\x9c\xcc\x5a\x61\x74\xba\x44\x96\x74\xe1\xb0\xaa\x9e\x03\x9b\x8a\x53\x93\xf1\x14\x76\xf6\x2b\x32\xe7\x79\xe3\x24\x6c\x15\xdf\x33\xf9\xa2\x04\x9c\xb8\x2b\x6c\xca\x55\xa0\x8c\x54\x62\xe6\xc5\x9b\xac\x18\x7d\x10\x56\x99\x1d\xa3\xc4\x02\x24\x82\xfb\xac\x88\x92\xd4\x28\xce\xc2\x4b\x48\x59\x57\xdb\xa4\xaf\xf2\x2c\x88\x4d\x7e\xcc\x80\x2f\xd9\x97\xcc\x59\x15\x7c\x81\xb8\x48\x5f\xf5\x15\x81\x1e\x49\x8f\x27\x7c\xe1\x8e\x42\xc4\x9a\x22\x79\x4e\x5c\x98\x15\x15\x8f\x11\x5f\x3f\x62\xcf\x2f\x98\xe7\x91\xa4\x52\x85\x97\xa6\x79\x42\xe2\x9e\x54\x71\xb8\x94\x00\x91\x19\xde\x9b\x26\xfb\xfc\x31\x89\xa3\xbb\x53\xb9\x63\x0d\x21\xb4\xc2\x0e\xcb\xbc\x47\x5e\x5d\x06\x32\x23\x0c\x84\xcb\x1d\xcf\x8f\x3c\x3d\x0d\xd3\x77\xc1\x3b\x15\xca\xe1\x12\xc4\x2e\xdd\x51\x48\x22\x8c\x8a\x60\x02\xaf\x2e\x1b\x57\x61\x39\xe9\x3f\x53\xa1\x89\x76\x85\x69\xed\x38\xe8\x1d\x4d\x70\x65\xce\xff\x81\x49\x37\xe0\x19\xf9\x64\x8b\x31\xdf\x43\xe1\x20\xee\xce\xbc\x1f\xcd\x1e\xf5\xb5\xce\xa8\x58\xe8\xa8\xd2\x23\x51\xeb\xd7\x92\x19\xb6\x8f\xc0\xd4\x89\x3c\x99\xa5\xf5\xaa\x2e\x41\x4f\x45\xc6\x0b\xe7\x48\x98\xaa\x0c\x0d\x69\x68\x1a\x35\x4a\x71\xa8\xe7\x6b\xf8\x0f\xc5\x26\xbd\x4e\x57\xf1\x49\x15\x7d\xd9\xd6\x69\x2c\xbc\x9e\xc4\x2f\xee\xfb\x0a\xbf\xd8\xeb\x4b\xfc\x62\x31\x15\x2b\x2d\x7b\xdf\x8b\x92\x01\x86\x47\x9d\x7c\xed\x4e\x7b\xa4\xdd\x2a\xeb\xd3\x8d\x3a\x10\x79\x50\xf6\xd1\x2b\xed\xa6\xf3\x45\x01\x93\x5c\xab\xe0\xd8\xf7\x3a\xfa\xf3\x65\xe9\xcc\xf5\x59\x63\x94\x7c\x52\x16\x21\x78\xa5\xd1\xb1\xde\x2a\x18\xf6\x8f\xd2\x93\x05\x3e\x08\x23\x52\x1f\xc3\x4f\x22\xc7\x7b\x07\xc3\xb7\x2a\xce\xf4\x9d\xc2\x61\x7e\xa3\xf3\x73\x7c\xcf\x5f\x71\x31\xbc\xe6\x3d\x1e\x62\xf8\x59\xd9\xfc\xfe\x48\xa5\xe9\x13\xbe\xa1\x3f\x3b\x73\xf8\x33\xfd\xa3\x33\x87\x1f\x69\xe8\x94\xbb\x14\xfe\x46\x43\xa7\xd0\x26\xe1\x07\x1a\x3a\x7f\x0e\xa3\x6c\x20\xac\x9d\xf0\x97\xdd\x90\x76\xf8\x8e\x6e\x64\xa8\xfa\x37\x9b\xf9\x9c\x25\xf0\x27\xba\x71\xbe\x0d\xb2\xe0\x87\x90\x3d\xc0\x1f\xe8\x5b\xe4\x62\xf8\x07\xfa\x16\xf9\x18\xfe\x91\xbe\x45\x6d\x0c\xff\x44\xdf\xa2\x0e\x86\xff\x44\xdf\xa2\x2e\x06\xc6\xe8\x5b\xd4\xc3\x90\x31\xfa\x11\x35\x5c\x0c\x89\xb8\xf0\x30\x44\x8c\xfe\x24\xf1\x47\x52\x08\xf9\xf5\x67\xf6\x98\x42\xcc\xaf\x54\x10\x22\x04\x8c\xfe\xa5\xb4\xe6\xbf\x9f\x43\xca\x0b\x12\x91\x78\x0a\x36\xe5\xf5\xc7\xf0\x6e\x91\xc1\x92\x17\xfc\x14\x87\x11\x4c\xf9\x55\x1a\x27\x19\xcc\xc5\x95\x48\x44\xb4\xe0\x97\x85\x5f\xdd\x4c\xfe\xaa\xe0\x1b\xae\x19\x7d\x55\x09\x26\x5c\x89\x82\x6a\x46\x9c\x7b\x46\x3f\x21\x8b\x8f\xcd\xec\xa6\xe2\xa3\x0e\x8f\xe2\xce\x8c\xcd\x77\xca\xef\x18\x4d\x9d\x57\xef\xdf\x5d\x7f\xfa\x08\xb7\xfc\xfa\xd3\x5f\x3e\x5c\x7d\x0b\x37\xfc\xf2\x87\x37\x57\x3f\xc2\x03\x1f\x23\x0f\x6a\xe5\xe3\x97\x0c\x7d\x40\x0c\xd8\xf8\x91\x4d\x84\xb8\x82\xe1\x8a\xd5\x09\xf0\xa7\x1e\xa5\x42\x7e\xf8\x41\x44\xae\xf2\x49\xf5\x7a\x62\xe6\xd0\xd8\x9b\x60\xe7\x56\xcc\x1f\x1e\xbb\x93\x2d\x86\x2f\x8c\x36\x1a\x3f\xd8\x76\xa3\xf1\x83\x71\x80\x94\xb2\xcc\xb6\x2b\x55\xcb\xfa\x3c\x09\x6c\x2e\xac\x7d\x70\xcd\x6a\x55\xee\xb5\x52\xb0\x12\xae\x60\x25\x7f\xa7\x8f\x05\x7e\xd4\x5c\x21\x9e\xcf\x53\x96\x55\xb8\x02\xbc\x67\xbb\x2c\xe8\x41\x84\xdf\xdc\x32\x99\x29\x53\xd3\x43\x15\xd0\xfe\x37\x13\x58\x27\x38\x15\x53\x20\xb3\x8e\x35\xb8\x54\xf2\x72\xb7\x61\x22\xa7\x93\xac\xf1\x5e\xd5\x88\x75\x4d\xd6\x9b\xac\xb6\x26\x33\xec\xc0\x68\xac\xce\xc2\xbe\x85\xcf\xbb\x5f\x51\x4f\x7c\xda\x9d\x27\xf8\xb4\xfb\x64\xe9\x3a\xef\x42\x44\xb5\x27\x19\x84\xf4\x25\x13\x91\x12\xe7\x11\x17\x73\x85\x3e\x95\x09\xe1\xb6\x38\x4c\xdc\xc2\x2b\xb6\xa7\xcf\x7d\x23\x2e\x0e\x24\x1d\x91\x70\xf6\xb3\x71\x32\x11\xb1\x60\x6f\xd9\xc1\x93\x39\x69\x8f\xbb\x3a\xe0\xcc\x3f\xa5\x9b\x03\x69\x56\xe6\xa5\x29\x78\x0a\x0b\xfa\x19\xa5\x32\x93\x8c\x38\x16\x5a\xd8\x76\xe3\x0b\x5a\x28\xac\xa3\x80\x2e\xa4\x3c\x96\x62\x10\x29\xb5\x32\xea\x9e\x37\x04\x5c\x4b\x05\x9b\x28\x6b\x36\x71\x24\xa5\xfc\x58\xe5\x62\x3e\x49\x69\x24\x72\xc7\xcd\x6d\x7b\x73\xe9\xdb\x36\x9a\xd2\x25\x9a\x82\x99\xab\x12\x7c\x11\xe7\xe2\x42\x42\x57\xa8\xc8\xad\x2f\xc7\x55\xc4\x9c\x27\xf8\x3c\xb9\xcc\x44\xf5\x02\x15\x73\x3e\x9a\xa2\x74\x9c\x4d\x20\xc3\x84\xff\x35\xc6\xf9\x63\x45\xb4\x2c\x11\xc8\x5d\xc8\xf6\x07\x27\x29\xbe\x90\xe1\xf3\xec\x92\x9d\x63\x61\x75\x2a\xdb\xc6\x8c\x49\x4c\xb6\xf0\x41\xed\xba\xca\x16\x9b\xb1\x32\xdc\xfc\x07\x91\x73\x04\xc3\x4f\xac\x26\xe8\x77\xa6\xe1\x54\x3e\xb0\xd1\x5c\xbd\xf4\x9e\x29\x3b\x07\xd1\x57\x15\x56\xfc\x2d\xa3\x4f\x65\x6a\x56\x52\xbb\x70\x5f\x57\x6b\x02\xbe\xa8\x9e\x97\x84\x15\x6f\x81\xdd\xb3\xe4\xb1\x2e\xa4\xee\x9f\xcc\x0a\x9f\x97\xb8\x07\x6f\x61\x1e\x2e\x97\x75\xb5\x7d\xaf\x7a\x5e\xdb\xc9\x79\xb8\xcc\x58\x52\xf7\xda\x67\x35\x3b\xff\xf0\x3b\x1a\x23\x2a\x8e\x66\x75\xd5\xfe\xa7\xdf\xd9\xb7\x68\x26\xd8\x58\x5d\x95\x8c\xfd\xbe\x3a\x6b\xf2\x27\xfd\xe1\x77\xd5\x14\x4a\x06\x5b\xd7\xb6\xe4\xf7\xb5\x2d\x8c\xa6\xcb\xcd\x8c\xd5\xe5\x60\x39\xcd\x7e\x5f\x95\x9c\xb7\xd7\xc6\x6f\xb2\x63\xeb\xc3\x90\x1f\xea\x5e\x0e\x8e\xbe\xbc\x0a\xd6\x75\x2f\x3d\xfc\xbe\x0e\x48\x69\xa5\xae\xc2\xf4\x68\x2b\x0c\x29\xa7\xee\xe5\xcd\x57\x5e\xbe\x67\x49\xca\x6a\xb3\x91\x41\x46\xf5\x3b\x25\x51\x2b\x35\x2e\x94\x9d\xf9\x9c\x64\xbb\xe7\xd1\x45\x72\x8e\x25\xba\xfa\x38\x9a\x80\xfc\xdb\x6c\x4e\x64\x49\xab\x95\xa9\xb2\xcc\x4c\x08\xbc\x08\xd3\x2d\xa4\xf1\xaa\xb6\xc7\xff\xf8\xbb\x46\x90\x0b\x75\x75\xb5\x4d\xd9\x2e\x19\xe3\x0f\x6f\x6e\x05\x53\xaf\xcd\xf1\x53\x3c\x19\x15\x38\xad\x10\xd2\x47\xc1\x89\x0d\xb6\x8f\x3e\xa0\x04\x12\xc1\xd5\x31\x4a\x94\x14\x05\x89\x73\xfb\x98\xb1\xf7\x42\xa6\x69\x86\x2f\x12\xe7\x9b\xbf\x7c\xba\xba\xbe\xf9\x70\xf5\xf1\xe6\xea\xfb\xab\xb7\x57\xef\x3e\xc1\xca\x48\x4c\x9d\x8d\x22\xf2\x88\x32\x88\x30\x6e\x85\x42\xd5\x7a\x77\x40\x8c\xd0\x24\x6b\x97\xc0\x83\x08\x4e\xd9\xc2\x9b\x2a\x23\xd7\xb7\x95\x9e\x7e\xcd\x90\x39\x6c\xe0\x71\xad\x5d\x88\x02\x3a\xbb\xa4\x64\xf4\x21\x5d\xa1\xa8\x60\x94\xb1\x84\x36\x0c\x9b\xd9\x65\xb2\x2b\xb6\x95\xca\xbc\xb4\x80\x5f\x84\xe7\x58\x4e\x74\x33\x9e\xd0\x68\x1c\x37\x9b\x93\x2d\x7c\xcf\xe8\x93\x06\x0e\xd9\x67\x5c\xf1\x2e\xb3\xda\x4a\xe0\x91\xfd\x27\xc3\xfd\x27\x15\x72\xc9\xfe\xb3\xd1\xde\xb3\x5b\x78\x7d\x60\x54\xa5\x10\xc8\xc6\xb7\x6c\x62\xdb\x3a\xae\xbd\xf0\x36\xcb\x6c\x5b\x66\x81\xb0\x6d\x65\x8b\x6e\x66\x98\xd2\xc2\x07\x70\x0b\x3f\x1f\xa8\xf7\x35\x17\xdc\x32\x7a\x27\x63\x8c\xf0\x68\x8e\x7c\x19\x28\x44\xfe\x2c\x6d\x34\xf0\xc7\x7d\xb9\x4d\xd9\xdb\xd1\xce\xcb\xb6\xfd\x80\x12\x2e\xfc\xa2\x04\x2c\x95\xd3\x00\xe7\xb9\xf8\x29\x92\x87\xa8\xeb\x54\x5e\x8b\xd8\xbe\xc2\x81\x41\xdd\x7b\x48\xc2\x4c\xa2\x91\xda\x76\x23\x71\xf4\x4f\x75\x97\x15\xde\xfc\xea\x7e\x59\x30\xfa\xa6\x70\x64\x94\x9e\x8d\x0a\x18\x92\xe1\xed\xc9\x1d\xcb\x73\xf4\x47\x67\x4e\x7f\x66\xf0\xb3\x33\xa7\x7f\x64\x18\x02\x14\x38\xd7\xcd\xc0\x79\xfd\xa2\x71\xc7\x4a\xef\xfb\xa7\x43\xc1\x5a\xe4\x67\x06\x95\x20\xb5\x47\xf2\x47\x26\xb0\x9c\x8c\x89\x5d\xa8\x19\x15\x7a\x86\x6d\xa3\x05\xa3\xb3\x3a\x41\x68\xc9\x2a\x1e\x90\x62\xed\x7f\xc3\xe8\x0c\x3d\x71\x89\x07\x9f\xcc\xd0\x37\x0c\xbe\x67\x18\x16\xfc\x62\xcd\xaf\x95\x9e\x89\x41\xdc\x7b\x12\x0a\x21\x79\xc7\x44\x02\xb0\x37\x0c\xa6\x75\x69\xb5\xf0\xd3\xb6\x40\xbc\x27\x8b\x5d\x30\x7c\xf2\x13\x6f\xff\x2b\xc6\xeb\xb3\x24\x55\xb0\xc0\xba\xb5\xca\xb2\x82\x40\x58\x60\xc5\xd5\xf2\xef\x75\x9c\xd2\xb2\x2c\x2f\x62\x97\x98\x85\xe1\x1b\x5e\xb4\x62\xc7\xa4\x7b\xbe\x98\xb7\x47\x70\xb4\x60\x53\x24\x04\x6b\x22\xb4\xa1\x8d\xc6\x06\x8f\xac\x57\xcb\x60\xb5\x66\x33\x8b\x58\x16\x6e\x2a\x30\x24\x98\x53\xb1\xc2\x9a\x0c\x66\x54\xac\xaf\x26\x83\x35\x0d\xc7\xcb\x09\x3c\xd2\x75\x9e\x8b\x23\x82\xb5\x6d\xbf\x47\x6b\x0c\xb7\xb4\xb1\xce\xf3\x46\xea\xbc\xfc\xe6\x07\x9d\xb8\x69\x6d\xdb\x26\x90\xf1\x67\xb3\x29\x4a\x53\x49\x0e\xf5\xa5\xfa\xa8\xb2\x00\x39\x37\xb3\x82\x06\x3b\xf7\xe3\xf9\x04\x25\x2f\xb2\x66\xe4\xc4\x70\xc5\xf0\x56\x4b\xf5\xbb\x09\xdc\x6a\xeb\x2c\x0f\xa7\x45\xad\x12\xe2\x00\x29\x1b\xa3\x40\x55\x41\x91\xb0\xaf\xba\x24\xba\xf4\xbb\xdd\x91\xdf\xed\x12\xbf\xdb\xb5\x23\x0c\xa1\x73\x3f\x9e\xc9\x6f\x87\x4e\x0c\x91\xf9\x75\xc1\x61\xca\x1d\x24\xc2\xf9\xb7\x27\xb7\x23\xb4\xa6\x09\xaa\x36\x00\x42\xfc\x34\x45\x0c\xd6\xb0\x04\xeb\x66\xa6\x72\x95\x08\xc5\x0b\x36\x30\xa7\x2e\xcc\x24\x09\xe6\x14\x40\xe9\xad\x89\xe9\x8a\xf6\x5d\x9e\x5b\x86\x11\xc6\xa2\x14\x6d\xe8\x0d\x7f\x38\xcf\xad\x6b\xe1\xcc\x53\xbd\xbd\x29\x02\x19\xa5\x2e\x9d\x8c\x3e\x31\xb4\xe6\xfb\xfb\xad\xda\x3c\xfc\xc7\x49\x4c\x13\x98\x71\xae\x11\x81\xca\x29\xfe\x48\x25\x6b\x93\x2b\xf4\xc4\xb4\x0a\x87\x12\x92\x78\x5f\xb5\x2f\x79\x44\x38\x47\x28\xa0\x8f\xad\x19\xbe\x70\x0f\x3e\x55\x24\x5a\x47\x01\x5d\xa1\x10\xbf\xc8\x70\x73\x76\xf9\x78\xb8\xd6\x94\x06\x67\x99\x7c\x2b\xa5\xf7\x28\xe1\x1c\x8b\x6b\x4b\xdf\xa1\x80\xa6\x2f\x54\xa2\xd0\x05\x62\x62\x6c\xe1\xe9\x96\xc4\x10\x93\x19\x2c\x49\x00\x8c\xa4\x70\x4f\xf8\xc3\x7f\x42\x31\xde\xe2\xf3\xf9\x45\x7a\x8e\x3f\x23\x06\xf3\x66\x93\x6b\x5a\x5f\xa8\xb1\x70\xe9\x35\xfa\x46\x90\x8d\x2f\x60\x26\xce\xb0\x60\x8d\x31\xa9\x90\xaa\xb5\x08\x3b\xaa\x31\x96\xac\x51\x4b\xde\x79\xb7\x97\xe8\x6a\x0d\xf2\x01\x99\x6f\x56\x5e\x7b\x4e\x57\x5f\xf2\xe5\xd4\x70\x71\x9e\x1f\x58\x40\x62\xc9\x14\x0e\xb4\x72\x35\x61\xe0\x2b\x66\xf4\xb5\xb5\x12\x1f\x5d\x2b\xf1\xa8\x50\xe4\xc3\x11\x6f\xcb\x23\x4a\x40\xad\x09\x08\xb5\xb7\x62\x83\xd2\x68\xf7\x2e\x26\xaa\x00\x93\x63\xcb\x4c\x3d\xc5\x67\x8e\x0f\xf9\x1f\xd0\x5d\x83\xd2\x7d\xb7\xf8\xd1\x4b\xf4\x58\x84\x72\xbe\x44\x77\x18\x13\x5e\x52\xc9\x12\x29\xbe\xb2\xce\xf3\x05\x5a\x03\x83\xc7\x31\x9b\x08\x58\x7b\x63\x0a\xbf\x40\x94\xe7\xe8\x4b\x25\xe6\x63\x8d\xe5\xe2\xfe\x44\xbf\x8c\xd7\x6c\x02\xaf\x68\xa3\xf1\xc9\xb6\x51\x09\x3a\xf7\x49\x80\xb0\x69\xef\x2d\xf9\x0b\xc3\x5b\x5a\x70\x8e\x13\xfe\xc5\x7b\x26\x42\x89\xf9\xfa\xb8\x65\x7c\xf4\xf9\xd5\x4d\x59\xf8\xc8\x60\x8d\x01\x6d\x46\x6a\x72\xf1\x78\xc5\x26\x94\x2e\xc9\x4a\xb4\xfb\x0b\xce\xf3\x6f\xd0\x97\x23\x74\x7d\xc9\x09\xfa\xd5\x78\x39\xa1\x6b\xc1\x62\xbf\x6b\x06\xce\x8f\x82\xcd\xa2\x75\x83\x3e\x8a\x84\x5d\x82\xf5\xc2\x12\x9e\xf6\x44\x4e\x92\x6d\x4d\xce\x5c\x59\x9b\x8f\x4e\x3c\xd7\x33\x22\x22\xe6\x96\xf0\x34\x4f\xe2\x15\x79\xcb\x20\x9e\x93\x8f\x9c\x99\x59\x7b\x35\x5a\xbc\xd5\x7c\xb4\xbf\xd4\xdd\xe4\xeb\x83\x7f\xee\x03\x2c\x39\xdf\x85\x37\x68\xa9\x0a\xc4\xf7\xbf\x30\xfe\x11\xc9\x61\xb7\xe6\x8d\xc6\x2b\x58\x0a\xfe\x1c\xe5\xf9\x97\xc2\x22\x4b\xe9\x82\x89\x99\x2b\x0a\x16\xcc\x7c\xab\x66\xab\x79\xb8\x88\x26\x16\x1d\xd2\x6c\xbd\xf2\x35\x54\x63\x2b\x1d\x7b\xe0\x4f\x76\xac\xbf\x08\x37\xe4\xf1\x2b\x12\x77\xf1\xde\x6d\x91\xd6\xaa\x52\xd9\x97\x9d\x67\xe4\x00\xcb\xd7\xb7\x58\x34\xa9\x4e\x68\xf8\x96\x4f\xf0\xab\xd1\x27\xf2\x96\x8f\xc0\x2b\x39\xbe\x6b\x06\x6f\x35\x02\x4d\x2d\x7c\x8f\xe9\x25\x5c\x86\xd3\x69\x64\x3d\x15\x8b\xbe\x9b\x87\xd6\xef\x13\xcf\xef\x8b\xb3\x49\xaf\xdd\x17\xa7\x84\x5e\x7b\x00\x3b\x87\x71\x45\x18\xae\x8e\x61\xf7\x3a\x5d\xe2\x75\xba\xe0\x75\x7a\xc4\xeb\x14\xbe\xa8\x05\x62\x9f\x06\xfe\xf6\x7a\x1d\xe2\xf5\x74\x46\xb8\xf6\x90\xb4\x87\xd0\x71\x49\x11\xdb\x2a\xf3\x59\x8a\xe0\x87\x6a\x16\x5c\x23\x77\xdc\x5e\xa4\x8a\x86\x10\x37\x32\xc8\x19\x78\x80\x3b\x99\x72\x79\x4b\x7f\x9b\x6f\x74\x57\xe1\x29\x0c\x86\x3a\xa8\xa9\xa7\x5c\x2f\x74\xc6\x12\xaf\x2f\xcf\x94\x7a\xbb\x67\x4a\xed\xa1\x3c\x53\x12\x27\x47\x33\x7d\x72\xb4\x2e\x4f\x7b\x56\x85\xeb\xf2\xbd\x3a\xa1\x79\xd4\xd0\xa0\x77\xd4\x08\x4a\x87\x5b\xaa\xb8\x9c\xb0\xbb\x34\x2c\xb8\xa1\x51\xe5\x98\xe5\x81\x46\xe5\x31\xcb\x15\x8d\x1c\x2e\xae\xc0\x17\x1a\x99\x47\x39\xd7\x34\x72\xde\x44\xf3\x30\x0a\xb3\x47\x78\x4f\x6f\xe0\x25\xbd\x72\x82\xdb\x14\x3e\xd3\x2b\x81\x3b\xf7\x89\x5e\x49\x45\x1e\x5e\xd1\x2b\x67\x19\xdf\xc1\x5b\x7a\xe5\x7c\xff\xce\x87\x8f\x34\x1c\x59\x37\xb7\x16\x29\x64\xd7\x0f\xa2\x64\xc9\x4b\x0c\x09\xf5\x27\x51\x1a\xab\x52\x25\xcf\x96\x48\x40\xdf\xd6\x79\xb3\xf0\x5d\x24\x0f\x1e\x12\x3e\xb2\x83\x17\x49\x2b\x6b\x79\xb0\xa1\xc8\xbb\xb8\x48\x71\xcb\x83\x25\xdd\x5c\x5e\x7a\x30\xa5\x7e\x5b\x68\xc7\x9f\x05\x24\x5e\x07\xb7\xc4\x45\xbf\x8f\x89\x2b\xc4\xa2\x05\x65\x17\x6e\x9e\xbb\x32\xd7\x87\x77\xc6\x2e\xdc\x91\x47\x5c\xc1\xf0\x11\xa3\x2f\x11\xc3\xb8\x41\x59\x9e\x33\x4a\xe9\xf5\x08\x85\x54\x40\xbd\x79\xc4\x85\x88\x6e\x30\x41\x11\xfd\x84\x5e\x21\x86\xcf\xde\x62\x60\x2f\x50\x4c\xc5\x07\xb8\xbc\xe7\x71\x39\xb0\xd5\x82\xf8\x05\xf5\x31\x20\xd6\xa4\x51\x73\x79\x49\xbd\xd1\xf4\x2c\x26\xd3\x17\xfc\x39\xaf\xb5\xc4\xf8\x45\x7c\x49\x7d\xfe\x6c\xb3\x09\xf1\x19\x7f\x56\x3c\xb7\xe1\x1f\x53\x5f\x51\x2f\xa2\x90\x22\xf6\x22\x6e\x79\x58\xbc\x9d\xf1\x27\xe9\x12\x13\xde\x2a\x51\xb2\x34\x6f\x51\x17\xe3\xf3\xec\x92\x0e\xce\x83\xf1\xbc\xd9\x9c\x50\x2e\x72\x86\x10\x9e\x51\xbf\xdb\x83\xac\x45\x07\xf8\x5c\x64\x2d\xa7\xd1\xc5\x45\x96\x87\x90\x36\x69\x76\x9e\x5e\xba\xe6\xf3\x11\x44\xf2\xf9\x54\x3c\xaf\x2d\x5a\xe3\x56\x6b\x3e\xc9\xa9\xe7\x0f\x5e\x2c\x20\xd8\x16\xb3\xf5\x6e\x67\xb6\x8a\xa9\x89\xc5\xd4\x84\x7c\x6a\x02\x1a\xf3\xa9\x49\x69\xd8\xea\xc3\x86\x26\x62\xb6\xd8\x78\xd3\x6a\x4d\x60\x4a\x3d\xbf\x6f\x2f\x65\xc6\xa8\xcb\x4b\xda\x17\xed\x99\xf2\x16\xbc\x98\x36\xd9\x78\x33\x81\x4d\xab\xa5\x1a\x23\x1b\x3f\xb5\x79\xcd\x2d\x31\xeb\xd3\xcb\x4b\xda\x4a\xcb\x8e\x44\xe2\xc5\x68\xf7\xc5\x70\x8e\x5c\x91\x86\x60\x4a\xbd\x56\x50\xe4\xa4\x98\x52\x4a\x63\x2d\xd5\x46\xa3\x77\xc1\x3b\xb2\x1c\xb5\xae\xc9\xf5\x49\xd4\xa4\x6a\x54\xa7\x2d\x1a\xa8\x10\x0d\xb4\x14\x58\x7f\xf8\x45\x24\x86\x7c\xda\xca\x70\x39\x10\x6f\x2a\x19\xa7\xdb\x93\x8b\x0b\xbf\x93\xb3\xb1\x3f\xb9\xb8\xf0\x7a\x39\x1b\x7b\x93\x8b\x8b\x41\xce\xc6\xee\xa4\x7c\xe7\xfb\xf2\x9d\x31\x1f\x7b\x66\xdc\x7b\xbd\x7b\x0f\xd8\xe5\xe5\xc0\xf6\xbb\x5d\xe3\xa1\x9f\x0f\x3e\xc4\x2f\xbc\x9e\xbe\xf2\x3b\x3b\x2f\xfe\xd1\x68\x2d\xdf\x70\x5d\x1f\x06\x46\x67\xbe\xd9\xb9\xed\xb7\xa1\x63\xdc\xfe\xb3\x9e\xf4\x15\x62\xe3\xbb\xc9\xf1\x23\x23\x75\x5e\x54\xbc\xfc\xe3\xae\x83\xef\x0c\x35\x13\xac\xad\x45\x6c\xfc\x61\xa2\xc4\xf6\x2f\xe8\x56\x69\x35\x94\x8d\x3f\x4e\x9c\x9b\x5b\x08\x68\xd8\x64\xe3\x9f\x04\xe4\xa9\xe2\xd3\x01\x04\xcd\xd2\x4d\x32\x1a\xa5\x24\x75\x94\x79\x12\x19\x5f\xfd\x1b\x2a\xd2\xf5\xe8\xb4\xd6\x41\xf9\xe5\xa0\xe6\xcb\xda\xa0\x99\x16\x5f\xdf\xd0\x40\x7e\x7d\x49\x23\xd4\x0c\x39\x25\x77\xcf\xa7\x17\xd9\xf9\xb4\xd9\xc4\xe9\x78\xd3\x9c\x4e\xe8\x72\x1c\x8f\xa6\x24\x6b\x4d\x5b\xde\x64\xcb\x6b\xe6\x3a\xad\xd4\xbf\x96\x26\x9f\xbf\x11\xd2\x7e\x9e\x57\x4b\x39\x99\xbb\x91\xe2\x7e\x9e\x2f\x6b\x0e\x64\xc5\x03\x20\x1f\x2b\x04\xfd\x1b\x91\xfc\x12\x2a\x22\x7a\x83\xde\x08\x89\x73\x8b\x4b\xd3\xec\x0f\xf0\x17\x8a\x6e\xea\x9c\x36\xa6\x52\x01\xbd\x91\xf5\xbd\x47\x33\xe1\xbd\x81\xc7\x77\x13\xfa\x9e\x4f\xf0\x77\x74\x8d\xde\x63\xf8\x13\x75\xcf\xbf\xd3\xe6\xd4\x3f\x9d\x63\xf4\x03\xfd\x6e\xfc\xa7\x66\x73\x82\xc3\xe8\xf4\x26\xcf\x53\x74\x03\x3f\xc0\xfb\xf1\x0f\x13\x7c\x12\xe7\x39\xfa\x4b\x45\x64\xbe\xc1\x5b\xde\x8a\x3f\x08\x62\xfe\x80\x64\xcb\x7d\x8c\xe1\x1f\xe8\xc3\xf8\x6e\x22\x7c\x0f\xa3\x6c\x70\xf2\x07\x7d\x85\x5c\xf0\xbd\x4e\xbf\x33\x68\xf7\x3a\x03\x0c\x65\xb9\x57\x96\x0f\x31\x34\xfe\xe0\xdc\xe9\x17\xb0\x6d\x97\xbf\x3c\x9c\xe7\x1b\xc4\xeb\x16\x32\x23\x2f\xdb\x31\xdb\xfe\x83\x91\xeb\x98\x41\xc6\xf7\x2c\xdf\x2c\xd2\x0a\x20\x7c\x18\x9e\xfb\x82\x50\xb4\xa4\xa8\x55\x1d\x61\x3d\xb4\xd5\xe9\xd1\xd6\x55\x3e\xd0\x12\xee\xee\xe6\x96\xde\x97\xa7\x76\x92\xd7\x65\x18\x5c\x89\x45\x37\xfe\x30\xa1\xd9\xb6\x82\xbf\x2d\x77\xa0\xaa\xfe\x01\x2c\xcd\xda\x2d\x0c\x5c\x95\xbb\x31\x4b\xb4\xc4\x32\xfe\x30\x81\x90\xce\x95\xcf\x55\xc8\x19\x61\x78\x19\x15\xab\x7e\xef\x5c\x5d\x6c\x4a\x94\x98\x1e\xe0\x51\x2b\x24\x02\x87\x64\xff\xbd\x52\xbd\x16\x4d\xfe\x38\xa1\x32\x6d\xd4\xf8\xa7\x09\x0d\x8b\x6e\x24\x5b\x08\x6d\x1b\xfd\x19\xdd\xec\x18\xae\x6e\x96\x16\x86\x3f\xa3\x07\xc3\xf6\x75\x73\x5b\x14\x1d\x78\xd2\xb4\x88\xdd\xc4\x16\xc6\xa0\x67\xfc\x6e\x6f\xc6\x8b\xe5\xfe\xa3\x1c\x34\x0f\x18\x1e\xbb\x13\x3d\x89\x02\x27\x74\x77\xd2\x0f\xbc\x23\x9e\x7d\x13\x65\x5e\xaf\x26\x55\xbf\x7a\xd4\x37\x0f\x21\x44\x0e\x0d\xc5\x46\x32\xc5\x0c\x44\x26\x0e\xce\x1e\x38\xa9\x2e\xbe\xfe\x7b\xaa\x3c\x35\xab\xd4\x6d\x6b\xfb\x75\xfd\x78\x83\x54\x5d\x9d\xdd\xba\x70\xd1\x84\xdf\xfc\xe6\xe5\xe5\xa5\x2b\xde\x16\x80\x1a\xf5\xaf\xbf\x3b\xf8\xba\x62\x2f\xc5\xfb\xbd\xce\xd1\xf7\x07\x7b\xef\x4b\xee\x05\xf5\x7b\xfc\x6f\xc5\xc4\xc1\xf7\xc2\x7e\x7e\x60\x6b\xd7\x3d\xb7\x3b\xc3\xc6\x73\x7c\x2a\x5e\x9b\xe7\xda\x63\xae\xa1\xe9\xca\x7f\xfb\x5b\xbb\x13\x66\xbc\xc4\x07\xec\xe7\x83\x9f\xfa\xed\x6f\xed\x4f\xd2\xce\x6b\xdf\x1c\x7e\xad\x32\x37\xc6\x6b\x7c\x52\xfe\xb8\xf7\xda\x16\x9f\x3c\xa2\x5d\xd2\x07\x8f\xa8\x4a\xae\x52\xb9\x63\x03\xe9\xb9\x24\x1c\xba\x4c\xc5\x85\xde\x40\x52\x28\x2e\xf4\xc1\x84\x7e\x29\x74\x53\x85\xfe\x7e\x50\x17\x95\x3a\xa7\xd4\x29\xa5\x36\xa9\xb4\x46\x53\x5f\x94\x68\xf1\x52\x23\x2c\x74\xc1\x1a\x37\x7b\xcd\x4f\xa3\x8a\x43\x61\x91\xb1\xb5\x23\xf2\x55\x06\xda\xa1\x4b\x1c\x17\x5a\xc2\x13\x06\x59\xf7\xb2\xc7\x4b\xda\x40\x8d\xd0\xec\x64\x9e\x37\xc2\xa2\x93\x5c\xb2\x58\x2a\x6d\xc5\x7a\x53\x78\xd2\x19\x4e\x75\xe2\x52\x19\xde\x65\xc9\x9b\xc2\x37\x0b\x0c\x3f\x2d\x10\xcb\xaa\x2c\xd6\xd7\x6a\x09\x18\x3f\x7a\x1d\x69\xb9\x37\xf2\xef\x9e\xcf\x2f\x86\xe7\x18\x45\x34\x1c\x2f\x84\x82\x30\xc1\x23\x14\x23\x13\x76\x22\x15\xd3\x55\x2d\xdb\x88\xb3\x27\x32\x15\x40\xf5\xa5\x0f\xf4\xcb\x6f\x7e\x20\x4b\x90\x3e\x6b\x64\x0a\xc2\x61\x8d\xa4\xc0\xe7\x9c\x6c\x4c\x34\xe4\x6a\xbe\x54\x5e\x7a\xc0\x1b\xd5\xd5\xee\xaf\x49\x10\xcd\xe2\xd5\x81\xcc\x97\x65\xfe\x1e\x89\x7f\x6a\x69\x7b\x60\xe9\x9b\x3c\xb2\x2c\xc2\xc0\xc2\x37\x16\xa0\x66\x33\x6a\x86\xb8\xb0\x18\xa1\x76\x0f\x97\xde\xbe\xc7\x01\x4e\x4a\x04\xe1\xdd\xc4\x59\x9b\x94\x25\x2f\xef\x58\x94\xe5\xb9\x65\x19\x69\xb3\xbc\xce\x91\x88\xc8\xc1\x01\xc7\x6a\xed\x87\xc6\xfb\x96\xe7\xcc\xb9\xc9\x6a\x63\xe6\x45\x52\xec\x3d\x38\x09\x38\x15\xf1\x6e\xa7\x09\xfb\xdb\x26\x4c\xd8\xcc\x70\x48\xab\x64\xd3\xf1\xba\xc7\x3c\x9b\x77\x92\x15\x17\x76\x8f\xae\x27\xed\x1e\xc2\x60\x71\x34\xa6\x2a\x74\xe4\x74\xe4\x39\xd2\x97\x34\x1e\x3d\x6d\x49\x54\xdc\x78\xda\xe2\x13\xeb\xc6\xa2\x94\x95\xa8\x49\x79\x2e\xcc\x9e\x19\x97\x35\x33\x60\x1a\xac\x3c\x10\x70\x3b\x3a\xce\xda\x23\x5e\xd7\x83\xbd\x50\xde\x72\x53\x77\x6b\xdc\xaa\x25\xf4\xa3\xd7\xf5\x71\x25\xdd\x01\xbf\xfa\x4a\x7c\xf6\xc3\x67\x33\x3c\x5b\xd2\x02\x17\xab\x6e\x40\x50\x07\x2f\x13\xd7\xc7\x47\xd7\x46\x71\x07\xb6\xad\x82\xa5\x83\x51\x4c\x42\x8c\xd4\x42\x76\xac\xa6\x10\xd2\x9d\x34\x8b\x13\x46\xa3\xfd\x38\xef\x12\x68\xa9\x7b\x04\x48\xaa\xd3\x3f\x98\x8b\x4a\xb8\x0a\x57\x01\x42\x7d\x2c\xc4\x6b\xf5\xd4\x5b\x81\x98\x52\x97\x1e\xbd\x51\x7a\xfc\xb3\x71\x38\xc9\x73\xb6\x9b\x66\x25\x1e\xf3\xe7\x27\x95\x44\x47\xd2\xaa\x27\x26\x4e\xe7\xaa\xf2\xba\xc7\x63\xdc\x4e\x44\x90\x18\xe8\x73\x47\xd3\x37\x4d\x38\x32\x6f\x31\x30\xd4\xee\x62\x64\x95\x77\x44\x6a\xf1\x76\x97\xb4\xbb\xca\xc0\x28\x8c\x87\xe2\x63\xcf\x35\xfd\xe9\xe8\xba\x8e\x8f\x51\x47\x35\x42\x44\xaa\x35\xf8\xb2\x18\x60\x34\x9e\x38\xc2\x93\x4d\x10\xc8\xa2\x75\x07\x9d\xdb\x42\xad\x53\x54\x24\x9b\xad\x04\xe3\xf1\x07\xc4\xf3\x07\xca\xf4\x59\xb6\xf5\x48\x08\x7f\xcd\xc0\x08\x47\x38\x61\x41\x2c\x87\x84\x97\x19\x83\x21\x39\x63\xf9\x81\xe7\x02\x58\x9b\x83\xe1\x1f\x18\x0c\xe9\x52\x57\x1d\x8d\xc3\x6e\x76\xbf\x67\x38\x9e\x1d\xf2\x6e\xb4\x56\xe0\xc6\x5a\x85\x1f\x9d\x05\x01\x6d\xb8\x27\xf1\x69\x18\x8d\x27\xb6\x2d\xb5\x30\x0f\x8f\xe3\x89\xa9\x8b\x07\xb4\xe1\x6d\xcd\xe8\xc4\xc0\xec\xd2\x11\x97\xbc\xfd\x5e\x7d\xc5\x37\xa9\x98\xa9\xd8\x98\xa4\x9d\x6e\x3f\x17\x80\xc9\xec\x76\x97\x77\xbb\xe1\x9e\x88\x9e\x5b\xd5\xce\x3a\xbc\xcc\xec\x6e\xbc\xdb\xdd\xb8\xda\xdd\x7f\xdf\x9e\xca\x26\x1d\xec\x6e\xef\x59\x60\x47\x3b\xdd\xd5\xf8\x8b\x7a\x29\x4a\x17\x47\xbe\x16\xcd\xb5\x6a\x76\xab\xc6\x09\xf2\xf7\xaf\xcc\x5e\x0d\xbb\xa9\x6d\xb3\x4e\x51\x5b\x64\x08\xeb\x28\x99\x72\xa0\xd1\x8c\x07\x3a\x46\xc5\x53\x31\x2a\x6d\x95\x21\xac\xdb\xc6\x27\x21\x67\xa5\x22\x6d\x52\x43\x04\x77\x54\x8e\x8b\x8d\x94\x44\x4c\xc0\x5b\x16\x7d\x4d\xe2\xd5\xbe\xc6\x09\x09\x84\x30\x87\x85\xc4\x3c\x9e\xd5\x31\x31\x3e\x0e\x23\xfe\x0f\x91\x62\xe4\x7a\xdf\x9b\x79\x45\xd7\x07\x5c\xbd\xef\x4b\x57\xef\x95\x4a\x58\x3c\x45\x0b\x61\x71\xb8\x17\x99\x87\x23\xb4\x82\x75\xbd\x93\xb0\x70\xce\x96\xc7\xaa\x77\x79\x3e\xa3\x32\xc0\xc4\xb6\x53\x74\x87\x05\x2a\xbc\xc4\x81\x9a\xa1\x8c\x6e\xd0\xa2\x88\x31\x3f\xcf\x2e\x1f\xcf\x1f\x9b\x4d\xbc\x44\x09\x3c\xc2\xfd\x68\x85\x16\x22\xf7\x31\x26\xfc\xaf\xca\x3d\x25\x1c\xc3\xa9\x3a\x77\x5b\x68\x5c\xf0\xd9\x79\x03\x85\x74\x5e\xf5\x2d\x37\xeb\x0a\xd0\x1c\x56\x30\x0e\x95\x93\xd3\xe3\x84\xaf\x2e\x12\x6a\x97\x73\xed\xf7\xaa\x1a\x43\x1f\x21\x51\x4b\x66\xf7\xb8\x4c\x1d\x83\x75\xdb\x84\xff\x2b\x0e\xb8\x54\x32\xab\x32\x0b\xae\x3c\xc2\x12\x4b\xab\x46\x3a\x39\xbe\x1d\x14\xbe\x6d\x4c\xc7\x13\x47\x79\xe8\x72\xa2\xd7\x88\x6d\xdb\x3b\x1b\x7b\x45\x21\xf2\xa0\xe5\xe2\x0b\xd7\xd8\x21\x28\xc8\x73\x4d\xd1\x63\x6c\x2c\xa1\x23\x9e\xbe\xc1\x28\xae\xcf\x74\x9f\xe7\x2e\x79\xd6\x5e\x12\xa7\x7e\xe5\x5e\x3a\x22\xc9\x68\xa6\x77\x6d\xb4\x4c\x66\xae\x24\x22\x0d\xb7\xa8\x57\x0d\xe6\x90\xf4\x85\x28\xd8\x7b\x6e\xaa\xc2\x76\x57\x81\x45\xf6\x0b\xc9\x48\xa9\x7b\x6e\x55\x44\x1a\x74\x31\x92\x1b\xa2\xf0\x85\xaa\x88\xee\xd2\xda\x97\xc9\x5c\x07\xf2\x47\x48\x5d\x75\xf5\x99\x66\x5b\x13\x51\x45\x46\x0a\xa8\x57\x20\x53\x57\x9f\xb5\x0b\xe6\x4d\xd8\x6c\xaa\xb5\xd5\x60\x79\x9e\x5c\x52\x9d\xff\x79\x84\xf4\x77\xd4\x9e\x09\x91\x87\x31\x09\x91\x0b\x12\x50\x48\x22\xd8\x97\xee\x0a\xd9\x88\x8d\x93\x09\x19\x27\xc0\xff\x72\x95\xbf\xcc\xe9\x16\x3b\x2f\xf5\x04\xd1\x58\x6a\xad\x10\x15\xc0\x44\x91\x91\xfd\x2d\x32\x72\xe4\x89\xd5\x2d\x61\x89\x25\x29\x1f\x74\xc9\xa0\x0b\x83\x3e\x19\xf4\x4b\xf1\xae\xf7\x5b\x25\x2e\x05\xa7\x3b\x9e\x88\xb8\x2c\x73\x79\x8a\x90\xcb\x06\xd5\xf8\xbf\xb5\x4b\xf5\x90\xbf\xb7\x42\x85\x53\x18\x0f\x60\xea\x86\x60\x11\xb6\xb3\x28\x75\xbf\xd4\x62\xd2\xe1\x9a\xcf\xce\x71\xbf\xd3\x17\x75\x0e\x1c\x68\xca\x9e\xf2\xde\x99\x31\x6a\x1b\xda\x68\xa4\x7a\x83\x1a\x37\xea\x36\xe9\xa6\xec\x79\x6a\xf6\xfc\x90\xcf\xba\x4c\x99\xa3\x71\x33\x0f\xed\xd5\x13\x8d\x74\x2b\xc7\x27\xa1\x41\x99\x91\x18\x22\x9a\xb4\x3c\x71\x60\xb2\xcf\xee\x85\x6f\x9c\x0e\x52\x45\x11\xc4\xa8\x6a\x3a\xc4\x10\x5d\xb8\xe2\xa1\xa4\x29\xe2\x95\xa8\x7b\x1e\xb5\x5a\x98\xeb\x11\x42\xd5\xb3\xed\x6c\x1c\x4d\xcc\x10\xe2\x88\xb7\x47\x5e\xb7\xbc\x9d\x89\x29\x2c\x3f\x1a\x41\x5f\x92\xd7\x92\x7e\xfc\x1e\x99\xd6\x3b\x20\xd3\xae\x82\x75\x55\xa0\x3d\xe0\xda\xff\x7b\x64\x86\xdf\x2a\xcd\x72\x01\xa0\x04\xb4\xde\x4b\x06\x53\x1c\x84\x31\x54\xa4\xf6\x6b\x48\x3a\x55\xb8\xf1\x30\x6c\x42\xb2\x57\x84\x84\x78\x5e\xeb\xeb\x7f\x28\x86\x29\x62\x0f\x75\x48\x09\x3b\x12\x03\x46\x3a\xc6\x29\x44\x49\x65\x74\x98\x09\xc3\x50\x30\xcd\x4c\x33\x4d\xc9\x1c\x77\x60\x38\xea\xf2\xc2\x1f\x9f\xd9\xf6\x81\x69\x35\x03\x40\x2b\xd3\xfb\x95\x98\x89\x83\x42\x6f\x65\xde\xc5\x41\x51\x75\xea\xdb\xa4\xd3\x2e\xa7\xbe\x2e\x01\xfd\xbf\xa5\x23\x75\x7d\xf8\xb7\x34\xdf\xfb\x4a\xf3\x9f\x2b\xed\xea\xe6\xf7\x15\x4c\x51\x47\x73\xd4\x76\x5f\x87\x64\x8b\xe4\x1d\xe3\x89\x3c\xea\x35\xfa\xb8\xb7\xbc\x43\xdb\xde\x28\x0a\x5e\x59\xb7\xd2\x7d\xab\x2e\x56\x23\x45\x46\x10\x83\xc8\x94\xa3\xc2\x1e\xc2\x39\xca\x68\x25\xcd\x4b\x06\x65\x96\x6b\x4d\x83\x36\xd5\x83\xc0\xf2\xb8\x38\xe4\x8c\x1d\x04\xf4\x58\x20\x10\xca\x60\x4a\x53\xb4\x6c\x85\x18\xe6\x86\x1b\xcb\x14\xc3\x82\xba\xe7\x8b\x8b\xe9\xf9\xa2\xd9\xc4\xf3\xf1\x62\x42\x8d\x0c\xe3\x62\x97\x68\xb3\x57\xd8\x5c\x60\x22\x8e\xcf\xc2\xe6\xa2\x08\xfe\x9b\xab\x59\xd0\x7e\x58\x8a\xd2\x49\x64\x89\x8a\x37\x94\xca\x3c\xe3\xf5\x7f\xb3\xb0\xe8\x63\x74\x68\x6d\xa5\xf1\x6a\x67\x65\x1d\x8a\xca\xf9\x1d\xd4\xaf\xff\x5c\x0c\x27\xdd\xd2\x02\x7e\x4f\x6b\x4c\xbd\x8e\x62\xa3\x22\x64\x7b\x43\xc7\x1e\xf8\xd0\x9e\x54\xa4\x59\x73\x01\x6d\xc4\x83\xa8\xc0\x54\xcd\xf3\x46\xdd\x7d\x85\x6a\x77\x80\xc5\x1e\x8a\x24\x32\xa4\x09\x85\x05\x1b\xeb\x18\xcb\xea\x6f\x50\x40\x10\x55\x59\x43\x6a\x06\x12\xe1\x6f\x87\xe8\xf5\x6b\xc4\x57\x19\xd0\x8f\x54\xab\x64\x55\xc2\x77\x4f\xbc\x70\x04\x6e\xd2\x90\x9f\xbf\x0d\x32\x66\xc1\x53\x14\x3f\xec\x7b\x75\x88\x03\x6a\xfe\x80\x30\x05\x7e\x0a\x57\x02\x8a\xbd\x90\xad\xc5\x57\x8e\x9b\xa6\x24\xc3\xea\x9a\x2b\x0b\xf1\x0a\x8d\xb8\xf1\x2c\x7e\x73\xfd\x5e\xee\x87\x06\xa5\x21\x2e\x9a\x64\xdc\x20\xa1\xe4\x06\x5d\xd2\xed\x1a\x6b\xe7\xb7\x72\xf8\x32\x3f\x4a\x95\x90\x1e\x4a\xab\xa9\x50\x6a\xf5\x28\x08\xe7\x0b\x27\x8b\xff\xd3\xf5\xfb\x77\x08\xe7\xb9\xd7\xa0\x74\xaf\x33\xfc\xa6\x8a\x44\x31\x3b\xb0\x5f\xb9\x90\x67\xcc\xde\xf2\x37\x6b\x0e\x84\x4b\x41\x2c\x2e\x73\x0d\x58\xd1\x66\x75\x2b\x9c\x3f\x34\x3a\x76\x9e\x17\x79\xf3\x13\x3c\xca\xcc\x61\x45\x58\xa5\x4e\x91\x82\x7a\xd5\x5b\x73\x77\x99\x1d\x43\x82\x51\x28\xaa\x1f\x92\x70\x15\x4a\x68\x33\x08\x77\x46\xe0\x44\x88\x72\x61\x9e\xcb\xac\xee\x21\x44\xc0\x50\xb7\x87\xb1\x09\xe8\xda\x23\xdd\x5e\x79\xec\xd3\x3f\x78\x32\x52\xad\x1a\x42\x1a\x95\x10\x0c\x31\x8d\xf4\xa2\x3c\xa9\x4c\x50\xd3\xb2\x1a\xd4\x7a\x13\xdd\x07\xcb\x70\x26\x8a\x2d\xdb\x96\x28\xf8\x28\x3a\x80\x9e\x2e\x45\x9c\xd8\x88\x0c\x3a\x29\x71\x91\xd9\x28\x34\x6e\x90\x6a\xd5\x72\x4c\x4b\x64\xfc\xc1\x91\xc3\x14\xc3\x54\xab\x1d\xd8\x2d\x78\xba\x0d\xa3\x19\x61\xa8\xd3\x93\x5a\x6b\xa7\x47\x3a\xbd\x72\x8d\x0f\x9e\xcb\x63\x35\xf8\xb2\xc0\x10\x29\xf1\x49\x17\x41\xfa\x46\x89\x7a\x22\x0d\xd0\xbe\xe7\xbc\xb0\x81\x9e\x06\x7c\xc6\xc4\x61\x0e\x0a\x20\xd6\xa7\x2d\x3b\xda\x43\x29\xe8\x35\x4c\x41\x2f\xcf\xc5\x09\x55\x99\x42\x55\x9e\x59\xe9\xdc\x8e\xf2\x33\x45\x4c\x49\x25\xb7\x8f\x00\x0a\x13\xc1\x81\x32\xb5\xd0\x39\xd7\x06\xaa\x2f\x1a\xfa\x40\x43\x2b\x03\x0d\xad\x0c\x68\x17\x66\xb5\xb2\xaa\x29\x55\xbd\xc1\x91\x13\x1d\x0d\x12\x5c\x83\xb0\x1f\xd3\xb3\x7f\xfe\x6b\xfa\xa2\x10\xa4\xd1\xf8\x9f\x4f\xd1\xe4\x05\x3e\x3b\x91\x59\x01\xf4\x02\xef\x0e\x04\x20\x70\xa8\x93\x05\x7c\x0d\xe2\xb8\x4c\x6d\x81\x2c\xab\x29\xe3\x66\x57\x2a\xfd\xe9\xd8\x9b\x28\xb0\xe8\xf2\x18\xd3\xda\x2a\x21\xb8\x9a\x28\x6d\xf0\x5c\x96\xd9\x29\x80\x9b\x86\x3b\x67\x3b\x1e\x46\xd6\xdb\x60\x6d\x41\x0d\x0b\xdb\xa7\x54\x6c\x47\x4b\xd4\x1a\x9f\x6b\x98\xec\x5c\xc3\xc0\xbb\xe3\x23\x68\x24\x7d\xb9\x63\xd9\x55\x94\x25\x8f\x4a\xfb\x06\xd1\x08\x0c\xa5\xd9\x8c\xeb\x80\xce\xfd\x6e\x68\x96\x11\x34\x19\x39\x33\x36\xdf\x79\x5d\xf2\x5b\x97\x28\x60\xab\x48\xc8\xdd\x9c\xd2\x0d\x89\xd7\x19\x42\x67\x48\x3a\x43\xe8\x7a\xa4\x2b\x8e\x3b\x07\xcf\x40\x52\x1c\x0a\x3e\x21\x53\x44\xff\x2d\xc9\x20\x50\x49\xb2\xa7\x71\xba\x30\x74\xaf\x06\x0a\x6c\xbb\xef\xb9\xd4\x8c\x7a\x0e\xd0\x3b\x41\x9b\x9d\xb7\x2f\xff\xf1\xe6\x87\x97\xdf\xff\xf9\x0a\x63\xdb\x0e\x44\x3e\x6c\x09\x1d\xc9\xdb\x9d\x2d\x2c\x78\x12\xf5\xd5\x88\x11\x12\x88\xea\xc2\x13\x7e\xaa\xec\x72\xd8\x19\xba\x3d\xbf\xd7\x75\x7a\x7e\xc7\xef\x7a\xdd\xde\xa8\x48\x77\xcd\x70\x53\x5c\x7f\xff\xce\x27\x21\x62\x2d\xaf\x19\xf3\x7f\xf1\x8b\x18\xb1\xa6\x87\x4d\x6e\x0d\x43\x9f\x0c\x25\x4d\x39\x2e\x19\x14\x29\xc1\xd3\x30\xaa\xf6\x36\xb4\x6d\xef\x2c\x44\x2e\xbe\x34\x3b\xc1\x1f\x23\x86\xd6\x99\x19\xa8\x5a\x8a\x23\x65\xb4\x99\x61\xdb\x76\x1b\x34\x1b\x65\x17\xee\xa8\xc5\x50\x2b\xc3\x65\xd6\xee\xac\x59\x8c\x35\xca\x5e\x64\xbc\xe5\x24\xdb\x91\x34\x8e\x25\xf2\x37\x5b\x9d\x05\xf5\xad\x16\xe6\x13\xa3\xd9\xfc\xb9\x3a\x11\xce\xcc\xe9\x5e\x34\x50\xe4\x15\x3f\x43\x5e\x8b\x61\x7c\xe6\xef\xb6\xec\x08\x76\x5b\xb1\xa2\xda\x85\xc4\xa5\x1a\x30\xbd\xad\x17\x21\x43\xf9\xf5\x17\x3a\xff\x3b\x32\xf3\xb3\x7b\x67\xed\xea\x9c\xaa\xc4\xea\x5e\x5d\x86\xfd\x1a\x69\x4f\x7f\x7b\xf9\x73\xad\xeb\x16\x62\x97\x97\x97\xd4\xc5\xa3\xb6\xd7\x32\x96\x74\xb9\xdc\x9a\x4e\x57\xb5\xec\xfb\xf7\xdf\xf9\x57\x98\xb4\xf7\x06\xe3\xab\x49\xbe\x74\x42\xfc\xdd\x36\x1d\xd8\x0b\x6a\x3c\x9a\x21\xaa\x1d\xfc\xe1\x71\x86\x2b\x07\xdf\x35\x2d\x26\x28\x6c\x14\x6d\x58\x79\xe5\x8a\x10\x3f\x95\xa4\xa9\x46\xd7\x25\x43\x71\xaa\x7e\x2c\x5b\xff\xfe\xe8\xca\x74\xfb\x84\xa1\xa1\x67\x5a\xa2\x87\x1e\x19\x0a\x0a\x54\x97\x05\xbf\x6e\x25\xdf\xa6\x3b\x15\x2f\x1e\xd7\xf1\x2e\x5d\x2c\x53\x87\x45\x10\x53\x17\x02\xea\x42\xba\x6f\xa9\xd9\x50\xf7\x3c\xb8\x48\xcf\xf1\xe6\x02\x25\x34\x34\x4c\x73\x41\xb3\x39\xc1\x78\x84\x62\x1a\xbf\x40\x11\xdd\x9c\x25\xf8\x45\xd4\xf4\x60\x43\x13\x4c\xe2\x26\x4d\x2e\xdd\x11\x8a\x68\x72\xb6\xc1\x2f\x22\x52\xc0\x96\x6f\xa8\x20\x66\x23\xef\xcc\x25\x9b\x17\xe5\xf6\x8d\x77\x35\x84\xba\x34\xfc\x35\xbd\x0d\x57\x9b\xe5\x31\xb3\x96\xb2\x02\x76\x1b\x34\x44\x1d\x7f\xd8\x19\xf6\xfa\xfe\xb0\x0b\x5d\x9c\xe7\x7e\x83\x86\xaa\x9f\xdb\x72\x3a\x79\x85\xb5\xf6\x80\x26\x83\x88\x36\x33\x08\x69\xaf\xdb\x6d\x77\xed\x04\x62\x75\x15\x15\x99\xbc\xf2\xf0\x45\xdc\x44\x48\x3d\x70\x79\x79\xe9\xf5\xf0\x8b\xb8\x19\xbe\x50\x45\x91\x2c\x92\x2e\x9d\x97\x6e\x65\x4f\x16\xb2\xf4\xf0\x19\xfe\x0c\xe5\xe4\x2e\xe3\x3b\xcf\xad\x23\x08\x06\xb1\x2f\xb6\x9e\xe7\x5e\xed\x0e\xf3\xf3\xd4\x3d\xe3\x63\x6b\x22\x18\x5d\x1d\x87\xa8\xcb\xec\x7d\xb4\xb2\x5a\x3f\x50\xa3\xe1\x67\x9a\x4b\xed\xb6\xfa\x38\xe9\xdc\xf9\x50\x1a\xde\x45\x44\xd0\xd2\x3a\x12\x78\x2c\xf9\xb2\x41\x09\x34\x63\x2f\x28\xd0\xd1\xf5\xe6\xb3\x96\xd7\x6f\xd0\x86\x5c\xe0\x61\xb4\x40\xb2\x08\x1b\x2b\xad\xc2\x00\x77\xfb\x2f\x08\xb7\x62\xe7\x02\xfd\xb1\xa5\x09\x19\x41\x92\x57\xb7\x62\xd4\xe2\x7f\xf1\x0b\x49\x68\xaf\xce\xfc\xfd\xf5\x64\xd0\xa2\x67\x64\x51\xac\xeb\x66\xd1\xdc\x3d\xc6\xa7\xf5\x4c\xd1\x4c\x81\xd4\xd9\x32\x24\x32\xb5\xcd\x49\x22\x2f\x5a\x1e\x41\x59\x2b\xc1\x67\x02\x3f\xbc\x19\x8b\xce\x6c\x6b\x88\xa6\x7f\x2c\x3f\xf1\xfe\xdc\x66\xc9\x26\x9a\xd6\xb3\x24\x77\x54\xf2\x22\x52\xa0\x7b\x4a\x70\x4e\x73\x35\xf9\x75\x29\x84\x8f\x86\xf3\xe9\xfc\x20\xda\x20\xd9\xef\x6a\x7b\x64\x5b\x1e\xbf\xf7\x3a\xf2\xf4\x5d\x85\xe8\x4d\xa9\xce\x0e\x23\x62\xfa\xa4\x0e\xb1\xa8\xa4\xe4\x9b\xd1\xc8\x91\x02\x20\xac\xe9\x0c\x56\x74\x66\x68\x16\xf7\xd4\x92\xf7\x2c\x4a\x63\x24\x80\x1f\xd1\x0a\x63\x78\xa4\x16\x7f\x99\x6b\x16\xbb\x89\x99\x4c\x7c\xe5\x62\xae\x52\xc4\xa0\xe1\xc9\xf4\x57\xa9\x36\x25\x1a\x80\x24\x05\xf2\x96\x4e\x3f\x21\x93\x42\xa1\x8c\x3e\x8e\x32\xd1\x4e\x84\xc9\x02\x65\xd0\xc6\xd8\xcc\x6f\xe0\x8a\x2a\x3b\x6d\x4a\x69\x9c\xe7\x9d\xae\x88\x9a\xe2\x9a\xdf\x60\x40\x45\x5e\x8a\xcc\x7c\xda\xc7\x38\xcf\x3d\x5f\x44\x0b\x68\xed\xee\x5d\xf0\xae\x08\xd1\xef\x0c\xe4\xfb\xe9\x43\x28\x92\xf7\x99\xef\x7a\x18\x3f\x4d\x83\x94\x9d\xf6\x7a\x44\xfc\x1d\x0e\x48\x44\x7d\x08\x69\x67\x78\x72\x9b\xb0\xe0\xf3\x89\x28\xee\x0f\xe5\x6d\xcf\xf3\x48\x44\x07\x10\xd2\x6e\x57\xdd\x9f\xb1\x79\xb0\x59\x66\x44\x7e\xb9\x99\x6d\x35\x2b\x0c\x44\x86\x71\x19\x34\xe4\x63\x95\x39\x73\xa3\xc6\xe4\x7c\x79\x31\x3d\x5f\x36\x9b\x58\x62\x08\x6c\xcc\x46\x2d\x31\xbe\xe8\x0c\xf2\x3c\xb8\x0c\x8d\xfe\xe8\x9d\xa0\x73\x30\xa2\x0d\x44\x78\xbb\x2d\x3e\x2b\xd4\xdd\x19\xb2\x4e\xdd\xd8\xb3\x70\x9e\xf3\x6b\xf7\x56\x5c\xce\x90\xd5\x74\xbf\x78\x16\xc6\x4f\xb3\x9a\x69\xdc\xe5\xd2\x17\x9e\xd0\x62\x92\x4a\xba\xab\x4a\x7c\xfe\xcc\xb6\xd1\xfd\x68\x63\x12\xaa\x95\xf4\x3c\x78\xaf\x8e\x76\x12\xbc\xc5\x44\xaf\xb2\x06\x8d\x51\x82\xf1\x28\x40\x32\x38\x59\x24\xa5\x83\x04\x66\x98\x08\x6c\x9a\xc2\x96\x7d\x2b\x80\x4a\x45\x3a\x6c\xb4\xc6\xc4\x2a\x74\x17\x78\xfb\xe6\x9d\xba\x7a\x17\xbc\x83\x77\x57\xdf\xbd\xfc\xf4\xe6\x87\xab\x9b\x37\xef\x5e\xbf\x79\xf7\xe6\xd3\x5f\xe0\xc3\xfb\xeb\x37\xd5\x92\xab\x0f\xd7\x6f\xbe\x7f\xff\x0e\xb4\xf4\x0f\x61\xfa\x26\xca\xd8\x1d\x4b\x40\xc0\xec\x42\x98\x5e\x07\x73\xa6\xcb\xf8\xa7\xae\x5f\xbe\xe6\x15\x7c\xba\xfa\xee\xea\xa3\xf8\x62\xa5\xc0\x48\xe0\x59\xe6\xc1\xd4\x75\x9a\x6e\xcc\xf0\x40\xdd\xf3\x1b\xbd\xf8\x1f\xce\x1f\xf8\x34\xa3\x35\xdc\xd2\x9b\xf1\xc3\x04\x8b\xb4\x3e\x33\xb8\xc5\xb6\x3d\xe7\x7f\x61\xca\xef\x61\x7c\x62\x6c\x51\xba\x82\x55\x25\x96\x69\x06\xa5\xed\x48\x8d\x2a\xcc\x70\x6d\x3c\xb5\xb4\x02\x41\x91\x04\x53\x59\xd8\x14\x02\xf4\xbe\x17\xba\x8c\x5a\xee\x92\x7e\x77\x27\x2e\xd9\x3f\x96\xf1\xdb\x20\x9d\xba\x3d\x4f\x6a\xc8\x49\xa1\x33\xf8\xd0\xea\x9a\xac\x5d\x54\xfa\x55\x41\x4c\xba\xb3\xea\x79\xdb\xfb\x8a\xbe\x51\x43\xa5\xb5\x3d\xb2\x84\x4a\xb7\xed\xb0\x4a\xa0\x0b\x1f\x55\xbf\x2e\x0b\xf6\xb1\xde\x15\x73\x4d\x18\x1a\xb8\x26\xef\x1f\xb8\x64\x20\xab\x7c\x9e\xf4\x63\x54\xc9\x55\xeb\x1a\x9e\xcd\x1a\x94\xed\x72\x95\x67\x98\xb8\x07\x25\xc3\x35\xc4\x76\xe3\x73\xc6\x8a\x3f\xa0\xf4\x09\x40\x10\x86\x2f\xe8\x2e\x6c\xf3\xb6\xb6\xc3\xcf\x13\x9c\x8a\x16\xec\xee\x32\xb2\xf7\x95\x6a\x9f\x9f\xa7\x4e\x96\xd5\xef\xec\x59\xd2\xfa\x4a\xfd\xcf\x10\x62\x3c\xcf\xaf\xa8\x6d\xca\xac\x52\x52\x83\x86\x38\x2d\x28\xda\x50\xde\x50\x4a\x9c\xe7\xf9\xc4\xf3\xca\xc3\x26\xff\x58\x12\xe7\xf2\xab\xed\x83\x5f\x7d\x13\xd5\x7e\xf3\x4d\x54\x7e\xb1\x4d\x3c\xaf\x6d\x7c\xf1\xb7\x1e\x91\x0a\xf7\x10\x91\x5f\xb9\x48\xe2\x21\x3c\x02\x3d\xc7\xc9\xe2\xd7\xe1\x17\x36\x83\x8d\x61\x6d\x82\x25\x1d\xbb\x50\xfc\x3f\x81\xa9\x96\x30\xf4\xe3\x44\x24\x9b\x4c\x12\x36\xcd\x4e\xc3\xe8\x3e\x9e\x06\xbc\x2d\x0d\x0b\xe6\x07\x01\x66\x5b\x1e\x44\x34\x3b\x6f\x36\x93\x8b\xde\x39\x8e\x9a\x94\xbd\x58\x8e\x93\x09\xf0\x7f\x68\xf4\x77\x1e\xeb\x43\x44\x37\x28\x3a\xf3\x58\x1f\x6f\xe1\x50\x36\x86\x1e\x24\xd4\x3d\x6f\xb5\xb2\x4b\xea\x9e\xe3\xa4\x49\x97\xe3\x8c\x57\x92\x4d\xe8\x06\x25\x67\x42\xd4\x4c\xfe\x8e\xbd\xf0\x58\xbf\x92\x3e\xc1\xf4\x3a\xe8\x41\x46\x2d\xeb\xbc\xd5\x62\xa2\x12\x2e\xef\x58\x0d\x4a\x33\x15\xd6\x2f\x93\x4d\x2e\xc7\x6c\xa2\x95\x3b\x75\xe2\x21\x8a\x4e\xf8\xbb\xfa\x64\xb7\xa9\x92\x3d\x5a\xae\x05\xfd\x96\xf6\x34\xc0\xcd\x44\x67\xe5\xcb\xb6\xb0\x3e\x00\xb7\x56\x9e\x0f\xff\x9d\x4f\xa9\x37\x5a\xf3\xdb\x2d\x0f\x92\x17\x0c\x93\x35\x62\x2f\x18\x64\x67\x3e\x24\x78\x6b\x9e\x73\x09\x47\x1e\x64\xb9\x8e\xeb\xba\xbc\xd1\x03\xd6\xea\xea\x59\x41\x6d\x9c\xe7\x96\xc7\x8b\x9d\x61\x51\xe8\x8a\x42\xc7\xef\xf2\x72\xfe\xb7\x7c\xde\x17\xb7\xdc\xea\x7f\x9e\x3f\xe0\x4f\x22\xf7\xcb\x8c\xb9\xb7\xbd\xdb\x76\xd0\xef\x75\x5c\x77\xe0\x62\xa3\x4a\x79\x84\xb9\xa3\xdd\xa4\x06\x58\x9a\xb9\x9e\xf5\xa2\xa9\xf3\x12\x8d\x20\x85\x8d\x3a\x3c\x87\x29\x97\xab\x44\x46\xc7\x15\xb5\x2c\x2e\xd8\xba\x02\x8b\x7d\x79\xe1\xe6\xf9\xf2\xd2\xaf\x49\x90\x33\x15\xc2\xe5\xa6\x41\xb5\x13\x92\xf5\x2e\x78\x27\x5e\xda\x5c\xd0\x96\xc7\x7c\x4f\xa4\xeb\xe2\x17\x5a\xfa\x52\xb3\xb9\x91\x6f\x0a\xef\xa1\x15\xb5\x5a\x16\x6c\x68\x6b\x83\x61\x73\xe9\xb1\x96\xef\xf1\x65\x91\x70\xe1\xb6\x7e\x1d\xba\x90\x50\x76\x9e\x5c\xd2\x8e\x3b\xec\x9d\xe3\xac\x49\x3d\x1f\x92\x33\xf1\x53\x9e\x3d\x24\x97\xd4\x97\x37\x78\xb9\x5f\xa8\x3e\x5b\xb4\x79\xb1\x46\x3e\xf4\x86\xe0\x61\xdc\xea\x0d\xf1\x85\x3b\x92\x45\xad\x0c\x3c\x4c\x36\x67\xfc\x3a\x13\x50\x89\x2f\x68\xa7\xeb\xb6\xbb\xc3\x61\xcf\xef\xb7\xfb\x6e\x67\xd8\x03\x94\xd1\xae\xdf\xca\xf0\xa5\x2b\xdb\x33\x47\x2e\x24\x18\x22\xba\x3c\x8f\x2e\x69\xff\x1c\xcf\x11\xdf\x4c\x2e\x86\xa8\x45\xfb\x27\xf2\x91\x35\xf2\x5c\x88\x64\x6e\x09\xbe\x0f\x5b\x1e\x7f\xd8\x6f\x9f\xe3\x05\xf2\x2e\x2e\xfc\xb6\x78\xda\x6f\x9f\x88\x9f\x11\x86\x39\xf2\xf8\xd3\x0b\x2e\xeb\xde\xd3\x19\x52\xc1\xc9\xea\x63\x73\x01\xa1\x90\xf1\xca\xc4\x4d\x73\x1f\x2c\x0b\x2d\xef\x9e\x2e\x2f\xdd\xd1\xaa\x89\x50\x4a\xef\xf5\xde\xb8\xa0\xcb\x91\xe5\x3a\x56\xe5\x95\x56\x8a\x9b\xf7\xe4\xbe\x48\xd7\x94\xb6\x96\xb8\x69\x39\x56\x53\x17\xf1\x02\x4c\x56\xcd\x7b\xed\xb5\xa0\xb2\x37\x29\x7f\xad\x76\x87\xb4\x3b\x3b\xa7\x8e\x7e\x5d\x0a\xf7\xa3\x64\x52\xe7\x15\x93\x54\x52\x10\xc7\x0f\x09\x9b\x86\x69\x18\x57\x1c\x05\xc3\x7d\x95\x5e\xee\x3a\xd5\x25\x0f\x4c\x3f\x80\xca\xd3\xc1\xc1\x2d\x52\x7c\xa9\x46\x8b\x56\xdb\x43\x3d\xfe\x1f\xcc\x87\x0f\x10\x62\xbc\x97\x08\x90\x8d\xd4\xb7\x33\x4c\xf4\x15\x68\x59\xaa\x7e\xfc\x9e\xe3\x2b\xcb\x47\xc4\x40\x5b\x0c\x52\x6d\x4e\xe9\x57\xcc\x29\x7d\x32\xec\x8b\x3a\x9f\x27\xa5\x15\xf5\x4d\x13\x16\x64\x8c\x08\xa5\xd6\xac\x8f\x4b\xb6\xa2\xbe\xe7\x88\x68\xda\xf7\xa4\x3b\xc0\x46\xd5\x15\xf0\xc7\x90\xa5\x84\x6b\xe1\x4a\x10\xf4\x5c\x97\x78\xae\x6b\x62\x03\x89\xaf\x3d\xc7\x82\xf5\x8c\xaf\x3d\x12\xa5\xe6\x1b\x27\x71\xaa\x63\x5a\x58\x3f\x96\x7b\x5d\x9f\xca\x0e\x3b\xd8\x89\xa3\xd7\x09\x63\x3f\xb3\x13\xde\xfa\x21\x46\xd6\x5c\xfc\x3c\x7e\x08\x67\xe4\xba\xb2\x6d\xfe\x73\xc4\x64\xde\x43\x7d\x3e\xe2\xb9\x43\xe2\xb9\x43\x7d\xf4\xd9\x21\x43\xb9\x22\x8e\x9d\xe3\x77\x5c\x7d\x56\xec\x61\x67\x5e\xb4\xe7\x10\xfe\x66\x4d\xa2\xf1\xfa\x1c\xb6\x2a\xef\x48\xa6\xfd\x5a\x0a\x05\x49\x36\x51\xb9\x6a\x8a\xe6\xd5\xc8\x7f\xf5\xcd\x78\x17\xac\x58\x5a\xd7\x02\xfe\xb8\xaf\x27\xc6\x73\x7d\xe2\xb9\xbe\xfe\x14\xff\x44\x5d\xb2\xec\x72\x04\xfc\xf2\xb4\xdc\xec\xbf\x91\x45\xf8\x78\xaf\x77\xfa\x8c\x77\xce\xa3\x8b\x1e\x0b\x67\x0b\xd1\x9c\x23\x47\x08\x03\xaf\x6c\x44\x98\x5e\x7d\xc9\x58\x94\x86\xb7\xcb\xe7\x2e\x8d\x86\x4a\xaa\x8c\x1a\x2c\xcf\x19\x5f\x1c\x35\x4b\x43\xb4\xe1\x78\xf2\x66\xa3\x0d\xaf\x93\xf8\x67\x16\x3d\xf7\xfb\xfc\x3a\xcf\x45\xfa\x50\x91\xe7\xe0\xc0\xd7\x8f\x10\xa9\xea\xd7\xaf\x59\xb0\x64\xb3\x7f\xe7\xaf\xff\x46\x72\x16\x0a\x2a\xe3\xab\x13\x1c\xcf\xf7\x88\xe7\x97\xde\xc5\xfe\xd1\x64\xbe\xe5\xea\xea\x97\xdd\x12\x3e\xf4\xbf\x6b\x4d\xf5\x89\xe7\xf6\x6b\xd7\xd4\x11\x22\x77\x94\xf2\xac\x13\x76\xcf\xa2\x4c\xad\x34\x91\x7c\xf7\xbf\x07\x11\x3a\x96\x4e\xf7\x68\xfb\x52\x16\x2c\xff\x3b\x35\xe9\x79\x8a\x6d\xb1\x0c\xaa\x99\xc5\xc5\x92\xf0\x45\x42\x13\xb5\x2c\x7c\xe2\xf9\x86\x86\x59\x97\xf7\xb6\xde\x37\x43\xc4\xe2\x3e\x6d\x4f\xc2\x71\x6d\x7a\xea\x09\xb5\x7e\xb6\x20\x94\xce\x4c\xe3\x58\x34\xe7\xf4\xe7\x49\xe9\xca\xb4\x9f\x9d\xbc\xd6\xb3\x49\xc9\x3c\xba\x06\xab\x29\xfd\x72\x70\xd3\x9a\x58\x5b\xed\x28\xa1\x0d\x57\x66\x70\x2e\xef\xcd\xb1\x3c\xb4\x7b\x5a\xfa\x77\x52\xe2\xda\x51\xcf\x9f\xa1\x95\x3f\x27\x8f\x6c\xa1\x95\x9b\x5f\xd1\xea\xf8\x57\xb5\xf0\xba\x24\xaa\xfb\xb3\x52\xa4\x33\x91\x61\xee\x1b\x75\x4e\x60\x26\x88\xea\x28\x30\x3f\xde\xac\x85\x5a\xc4\x33\xe5\x94\xba\x56\x60\x7f\x2b\x7e\x7f\xa0\x92\x43\xf9\x7d\x9d\x1c\xaa\x27\x53\xc6\xdf\xf1\x25\xdf\xc5\x48\x66\x88\x1a\xf6\x64\x86\x28\xcf\xeb\xc8\x14\x51\x5e\x67\xa0\x72\x44\x79\x5d\x0c\x5f\xe8\xc6\xc8\xb6\x74\x4d\x37\x45\x06\xc7\xf7\xf4\xda\xb6\xaf\x75\x76\xec\x14\x5e\xd2\xf7\xb6\xfd\xde\xb9\x1f\xe4\xb9\x65\xc1\x67\xba\x71\x3e\x24\xf1\x2a\x4c\x19\x7c\xa2\x46\xfa\xc1\x29\xba\xc6\xf0\xaa\x02\x0c\x09\x6f\x69\x48\x6f\x9d\x39\x7c\xa4\x8d\xc6\x8e\xb3\x92\x14\x69\x3f\x3b\x09\x4b\xe3\xe5\x3d\x43\x02\x11\x1e\x65\x15\xfb\xe8\xd3\x16\x8f\xf7\x92\x61\x4f\x2a\xaa\x18\x43\xaf\xe0\x15\xde\x6a\x50\x9c\x4f\x79\x5e\x13\x31\xa0\xda\xfb\x91\xf1\x75\x1a\xc6\x91\xc8\x10\x88\x6d\x3b\x73\xb2\x05\x8b\xd0\x2b\x33\x62\x21\x11\xae\x24\xf4\x65\x11\xc1\x66\xf5\x9c\x9e\x85\x6d\xbb\xe5\xfd\xff\xcc\xbd\xfb\x76\xdb\x46\xd2\x2f\xfa\xbf\x9e\x42\xc4\x64\x23\xdd\x66\x0b\x22\x24\x59\xb1\x21\xb5\xb0\x1d\x5f\x12\xcf\xd8\x71\xc6\xf2\x24\x33\x1f\x84\x68\x43\x64\x53\x44\x0c\x02\x0c\xd0\xd4\x25\x02\xe6\xcd\xce\x3a\x8f\x74\x5e\xe1\xac\xae\xbe\xa0\x01\x82\xbe\x7c\x7b\xce\x65\xad\xc4\x22\x6e\x7d\xad\xae\xaa\xae\xae\xfa\x15\xa5\xf4\xb6\xbd\xfd\x7c\x51\x16\x4b\xb6\x7f\x7c\xec\xe8\x54\xfc\x39\x7e\x68\x1a\x84\xc9\xcf\x9b\xe6\x78\xed\x5b\x86\x46\x0b\xc0\x5b\xd8\xf4\x76\x43\x9c\x32\x68\x0e\x16\x0d\x6b\xc8\xef\x03\x58\x0d\xcc\xbb\xcc\xf1\x83\xf8\x97\x8e\x64\x2c\x4d\x49\x99\x77\x39\xdd\xb9\x46\x03\x16\x0e\x40\xab\xbe\x21\x29\xf5\xa9\xf8\x55\xa9\x23\x7c\x9b\xcd\xc9\x03\x1c\x49\x99\x69\xc8\xbd\xe2\x63\xc0\xbd\x79\x92\x66\x70\xca\xa1\xa6\x86\x64\xf0\x5b\x8c\x1d\x99\x52\xee\xcd\x8a\x65\x92\xe6\x3b\x62\x12\xab\x10\xa5\x75\x8d\x0e\xa0\x82\x85\xeb\xbe\x16\x2a\x9a\xf8\x49\x7d\x4c\x46\x62\xbf\x51\x85\x25\xcd\x03\x34\x75\xdd\xa9\xc7\x72\xce\x4a\x24\xe6\xb9\x42\x39\x26\x53\xd7\x45\x53\x8f\xdd\xa5\x1c\x61\x88\x98\x86\xa4\xb8\x94\x02\xe3\x11\xf3\x15\x66\xe8\x0e\x39\x6a\xf2\xf6\xa6\x8b\x24\xcd\x77\xa7\xf7\xd3\x8c\x39\x18\x07\xa8\xa0\x3f\xc3\xf9\x83\xf2\xac\x2c\xc9\x9a\x64\x38\x58\x8b\x7b\x41\x86\x72\x3d\x29\x73\xfc\x30\x75\xdd\x51\x02\x0d\x90\x75\x65\x68\x8e\x9b\xe6\x44\xdb\x69\xce\x8a\x13\x9c\xa0\x12\x32\x06\xe0\x1d\x31\x9e\x34\x8a\x89\x1c\x65\x9f\x70\xd7\x1d\xc9\xce\xbd\xd0\xe0\x10\x2f\x3a\xf3\x7b\x2f\xeb\x5f\xf7\x7d\x3e\x15\x4e\x9c\x9c\x84\x82\xfe\xa4\xf3\xfc\xba\x2e\xe2\xf4\xd2\x9e\xb0\x0f\xe1\xb9\xc7\x96\x29\x47\xce\x3a\x5f\x24\xf9\x2c\x63\x33\x43\xaa\x0e\x49\x09\xc3\x01\x2a\xe9\xda\x2b\x72\xf3\xbc\xd4\xcf\x71\x58\xa2\x07\x35\x5e\x01\x23\x25\x4b\xaa\x22\x17\xbc\x2a\x40\x39\x5d\xc3\x6a\x2a\x32\x86\x5d\x37\xf7\x98\x58\xe9\xe6\x07\x72\xfe\xa1\x0b\xdb\x55\xdf\xef\x96\x56\xad\x10\xdf\x2f\x66\xf2\x43\x5d\x8b\xb6\x87\x07\x81\x0f\x77\x12\x1d\x0b\x58\x88\x05\xc4\x94\x2d\x86\x7b\x37\x82\x3f\xfe\x34\x84\x43\xe1\x8f\x34\x7d\x08\x8a\x40\xa2\x0c\x40\x1c\x99\xea\xd4\x1e\x0d\x79\xfd\x65\x43\xba\xd3\x0e\x95\x69\xeb\x8f\xb2\x13\x0e\x0c\x13\x87\x61\x32\xcf\x54\x07\xc5\x8a\x1a\x18\x25\x31\x33\x0d\xe8\x60\x6f\x06\x0e\xd0\xe0\x9c\x8c\x7b\x97\xb3\xba\x46\xe2\x0f\x1d\x4d\x08\xe2\x94\x7b\x97\xb7\x75\xcd\xb1\x77\x79\x43\x19\xe1\xde\x65\x45\x0f\xc4\x9f\x44\xbe\x96\x88\x17\xa6\x1a\xfd\x17\x93\xdf\x55\x12\x85\x86\xbc\x1a\x4a\x74\x45\x75\x36\xdb\x51\xe9\x5d\xce\xf0\x43\xa9\x2a\x2a\x69\x09\xf5\x94\xb0\xcc\xc0\x06\x45\x29\x6b\xa1\xd2\xd4\xa2\x68\x33\x42\xab\xb5\x3a\xdb\x4d\x79\xc5\xb2\xb9\x83\x4f\x10\xa7\x3f\x0b\x4d\x2f\xbc\xee\x27\x17\xcf\xe9\xc3\xe5\x6d\x50\x92\xcb\x59\x30\xf2\x1b\xa8\x81\xab\xd8\x2d\x92\xa1\x57\xd2\x40\x94\xa1\x37\xf0\x43\xaf\xa3\x14\x3f\xbc\x51\xc8\x72\x82\x38\x04\x81\x95\x72\x0c\x4a\x31\x06\x3e\xf9\x1d\x95\x90\x60\xb5\x65\x86\xea\x7d\xbb\x32\x38\xdd\x6c\x76\xde\xd7\x35\xfa\xd8\x19\x8f\x95\xb4\x6d\x7c\x24\xba\x6b\x0e\x71\x2e\x17\x0e\x26\x33\xc1\x52\x72\xdb\x7b\x5a\xb4\x97\x21\xd1\x50\x09\xb5\x25\xdb\xaa\x7e\xeb\xea\xb9\xa9\x5e\xa5\xc1\x6a\x1a\xd2\xcb\x22\x2b\x43\x5b\x61\xb1\xcb\x9f\x86\xb2\xe5\x65\x65\xe2\x69\x67\xc0\x08\xe0\xe7\x4d\xf7\x9d\x85\x79\x27\x07\x7c\x03\xeb\xb0\x4f\xe2\xf5\xa2\x8f\x96\x1a\xf5\x20\xf8\xfb\xa0\xdf\xd0\x5b\x74\xa3\x06\x00\x5b\x11\x6b\xc5\x47\x3a\xe0\x16\x2d\x36\x62\xa4\x04\x36\x3d\x18\x50\xef\xba\x9c\x94\x8a\x4b\x53\xb1\x60\xe4\xcf\xa0\xd3\xf0\xa9\xcc\x66\x56\xea\xe0\xe1\xc4\x75\xd5\x8f\xde\x83\xca\x75\x7f\x97\x4d\x1b\x09\x11\xad\x79\x73\x43\x60\x9c\x07\x73\x28\x89\xef\x40\xb0\xaa\x1a\xc1\xbc\x44\x8a\xcd\x5c\xce\x39\xbb\xdd\xcd\x77\xb4\x4b\xb6\x28\x56\x61\xfd\x69\xd1\x43\xc5\x2c\x43\x2e\x5c\x75\x57\xac\x6b\x2a\xa6\x5b\xdc\x6c\xc8\x95\x37\xa7\x6f\x07\x33\x95\x52\x4a\x3f\x4a\xf4\xdd\x04\x40\xcf\x0b\xc4\x70\x90\x4a\xd0\x82\x39\x9a\x7b\x3f\x8c\xe7\xde\xaf\xe3\xb9\xf7\xea\xd1\xe8\x3d\x79\x50\x34\x17\x7c\x04\x00\x09\xff\xe0\x08\x23\x8b\x12\xe5\xbd\x43\x8c\xac\x3b\x89\x82\xb1\xd1\xaa\x90\x28\xf3\x5c\x97\xd7\xd2\xf0\x83\x6c\xf2\x80\x31\xef\x6d\x27\x16\x00\x4d\x88\x96\xb1\x18\xcc\x1c\x66\x9c\x55\x7b\x65\xd9\xa8\xaa\xeb\xd1\x7b\xdc\xad\x00\x46\x6a\x68\x22\x5e\xa2\x4a\xce\x2a\x8c\xc2\xc7\x40\x06\x50\xe1\x6e\x91\x23\xf4\x5e\xe8\xfd\x7d\xa0\x87\x8f\x9e\x8c\xe5\xf4\xe4\x72\x7a\x2e\x0d\x95\x6d\xb5\x49\x2f\x1f\x5a\xcb\x33\x89\xa0\x66\x2e\xb3\x17\x69\x0d\x22\x85\xdf\xa0\x41\x14\x5d\xd9\x27\xc9\x3f\x8a\x95\x72\xe2\xef\x2c\xc1\xfd\x84\xf4\xcb\xae\x68\x31\x1e\x93\x35\x1d\xf9\x3b\xa5\xa4\x50\x65\x5c\x25\xc9\x78\x4c\x8c\xae\x22\x5a\x0c\xa4\x67\x7f\xbf\xae\x6b\xb4\x06\xae\x1a\x55\x31\x65\x64\x6f\x2f\xa9\xeb\x1c\x40\xff\xa5\x9c\x33\x37\x1a\xb3\xf8\x0a\x0f\x4e\x99\x0b\xef\xa6\x43\xf4\x65\xd2\x8b\x7a\xdc\xd6\x6f\xe8\x6b\xda\xed\xeb\x40\xd7\x36\x1b\xde\x0e\x5a\x2e\x44\x93\x69\x50\xea\xc1\x66\x34\xed\x36\x48\xed\x49\x8e\x02\xdf\x3f\x22\xbe\xff\x38\xf0\xfd\xc7\x03\x60\xeb\x0a\xd8\xce\x80\xae\x1f\x07\xfe\xe1\x31\x20\x91\xf9\x47\xed\xde\x4c\xc6\x86\x29\x78\x3b\x0b\x44\xc9\xc6\x8f\x38\x7e\x12\x1c\x3f\xd1\x78\x58\x36\x10\xba\xc4\xc6\x7a\x1c\x3c\x7d\x4c\x9e\x1e\x07\x4f\x8f\x61\x6f\xf4\x05\x5e\x01\x3a\xe6\xee\x10\xdc\xa4\x90\x74\x13\x78\xcf\xe6\x19\x44\xdf\x3f\x34\x58\x06\x93\x93\xaa\x8d\xa6\x80\x1b\x5d\x2b\x6b\xef\x08\xaa\x13\x74\x27\x43\xa1\x54\x91\x82\x74\xc5\xe7\xc1\x70\xbb\x52\x99\x6d\xb2\x40\xa5\x19\xf8\x24\x4c\x50\x4e\x38\x59\x9b\x30\x3b\x79\xa5\x4c\xe6\x72\xcc\x9e\x04\x87\x03\xe0\xf1\x30\x06\x5f\x12\x12\xa0\x90\xdf\xc5\x58\x24\x6a\x2c\x2a\xb5\x05\xb4\x3d\xc5\x8e\x8e\xc5\x56\x71\x68\x8c\xcc\xae\x89\xcc\xe9\xfa\xf3\x11\xdb\xd3\xce\xf8\x10\xa1\xee\x6e\x44\x6d\x2f\xe8\xa8\x53\xd2\xb4\x3f\xa6\xf6\x49\xf6\xbc\xae\x17\x9d\x41\x36\x0d\xea\x89\x3b\x00\x82\x49\x90\x4a\xea\x52\x6e\xba\x29\x1d\x86\x2c\xb0\xa3\xfb\x0f\x62\x50\x9b\x17\xae\x3b\x9a\x63\x2b\xc9\x88\x18\x48\x48\xd0\x4c\x69\x69\xb9\x81\xa9\xe3\x25\xe9\xff\x35\x09\x2c\xc0\x63\x26\x9d\xbe\xfc\xce\x3d\x04\xe8\xa9\xf2\xc9\xc1\xe6\x13\xc2\x01\x1e\x15\x1e\x1f\x6e\x79\x4c\x38\xb4\x11\xde\x39\xfa\xd4\x3b\x84\x47\x87\xb1\x44\x2f\xce\x69\x94\xaf\xb3\x2c\x6e\x53\x09\x09\x96\xa6\x60\x13\x20\xbd\x49\xce\x6e\x51\xa6\x6e\x08\x56\x20\xbf\x5b\xd3\xd2\x52\x27\x66\x34\x45\x15\x5a\xe3\x70\x1d\xf4\x2d\x36\x98\xac\x7a\xeb\x45\x2b\x78\x33\xd2\xe2\x5c\x57\x68\x85\xc3\x55\x30\xdb\x24\x65\x2b\x52\xac\xe3\x57\xa4\x2c\x5e\xfa\xdc\xe5\xf0\x13\x96\xca\xa7\x4f\xbb\x30\x44\x87\x06\xea\xa4\x03\x32\xb4\xb1\x76\x15\x0d\x79\xdd\xa3\x12\x94\x7b\x73\xf4\xd0\x10\x5f\x87\x8f\xf9\x0d\x6e\x2f\x0e\xfa\x6b\xbc\x77\xce\xd2\x6f\x23\x50\x21\x87\xd0\x6a\x89\x3c\x59\x4a\xb5\xd2\x4c\xc7\x5c\xbd\x49\x46\x93\x56\xff\x6d\xe3\xc3\x54\xb4\xa3\xf4\xc1\xda\x5c\xfc\xe6\xf8\xe6\xf0\x0b\xdc\x7b\x94\xcf\xa7\x1a\x22\x6d\x24\xb4\xbb\x92\x31\x3e\xdc\x15\x2d\x3e\x53\x24\x3b\x84\x8d\x99\xa1\x84\x34\x6a\x76\xcc\x18\x76\x5d\x59\xd2\x2e\x8b\x78\xdc\x3d\x44\xb1\x7a\x00\xad\xfe\xda\xd8\xd7\xc3\x27\x1d\xf5\x8e\xb5\xf0\x34\x69\x07\x9e\x66\xc7\xde\xf5\x78\x97\x1f\x69\x14\xc3\xc1\x34\x57\x59\x95\xa5\x60\xe7\xb8\xd9\x61\xe8\xc9\x11\x46\x45\x6b\x2c\xed\xeb\x8e\x2d\x8a\xcd\xce\xac\x78\xd0\x81\x7d\x97\xe9\x99\x49\x5f\xac\x98\x85\xa2\x10\xa5\x8a\xce\x8a\x1c\x12\x62\x35\xb7\x8b\x34\x63\x68\x84\x10\xa3\x3c\x32\x28\x38\x00\x41\xae\xda\x6e\x14\x71\x55\x02\x53\x1f\xfb\x8d\x82\x31\xeb\xcc\x92\xca\xb7\x35\xe8\xc0\xb6\xab\x15\x50\xb5\xce\x2c\x7a\x79\x72\x14\x3c\x01\xdb\xf1\xe1\xa7\xce\xd4\x26\xfe\xc6\x52\x92\x2b\xc8\x6e\xc1\xd6\x0c\x77\x83\xc7\x69\x82\xc4\x8b\xa1\x03\xb5\x3e\x2d\x7c\x89\x33\x95\x0e\x0b\x1d\xa4\xdf\xee\xc9\xd7\xb0\x83\x5a\xb1\x79\xcc\xd5\x6b\xc7\xd1\xa7\x4e\xdc\x26\xfd\xf8\xd4\xef\xfc\x6e\x5a\x7e\x2d\x48\x45\x03\x65\x9a\xa2\x6e\x03\x3b\x21\x66\xba\xe8\x84\x64\x64\x3a\x24\xa0\x78\x60\x8b\x27\x13\xb4\x82\x38\xa6\x94\x4e\x43\x1e\x95\x71\x80\x12\x2a\x86\x58\x14\x86\xc3\x02\x25\x26\x73\x62\x98\x78\x36\x45\x82\xbb\xc0\x35\xe3\x21\xfc\x2b\x99\xf4\x54\xa7\xb6\x0a\x2a\x94\x51\x38\x79\x08\x19\xca\x48\x49\xcc\x93\xfe\x21\xe8\xc6\x98\x29\x0f\x50\x73\x44\x75\xf4\x65\x51\x46\xed\xa8\x2c\x92\x6a\x98\x72\xe4\x62\xed\xf9\x31\x1e\x7d\x36\xec\x48\x73\x09\x25\xa9\xec\xa3\xc8\xcd\xca\xed\xa7\xdb\x5c\x1a\xc9\xa8\xa8\xeb\xc1\x55\x05\x0d\xfa\x32\x84\xaf\xb6\xca\xe2\x36\xff\x1b\xbb\x87\x83\x39\x5f\x1f\xcc\xf9\x7e\xe0\xfb\xd6\xc1\xdc\xd1\x17\xe8\x72\x9d\x5e\x6e\x9c\x85\x6d\xd6\xbb\xf1\x4a\x37\x30\x1a\x90\xfd\x5b\xc9\x54\x48\x47\xce\x56\x2c\xf1\x0d\xb1\xd4\x1f\x88\xcf\x06\x64\xca\x73\xa7\x9d\x54\x6c\x2f\x7a\x8d\xab\xb6\xad\x5d\xb0\x48\x7b\xd3\x05\x9b\x7e\x84\x0b\xbb\x8d\x29\xe4\xe4\x17\x77\xdb\x66\x96\x9b\xd2\xb3\x7f\xbc\x35\x84\x91\xdd\xd7\x25\x60\xa5\x17\x7a\xa5\x27\x6a\xa5\x57\xaa\x2b\x32\x47\xd2\xb1\xd4\x95\xc5\x3c\x4c\xd5\xe9\x6f\x85\xaa\x8d\x7e\xf5\x96\x3c\xa9\x64\x6d\x73\xb2\x20\xb3\xcd\x45\x7f\xd4\x59\xf4\x87\x31\x59\xd1\xd4\x9b\xa3\x4c\x6c\xf8\xa4\x1e\x3a\x5a\x81\x8d\x7e\x8a\x16\x80\xa5\xd0\x86\xa4\xa3\x85\x28\x9d\xcc\xf0\xce\x8a\xae\xd1\x04\x43\x3e\x0f\xb4\x6a\x53\xa9\x82\x69\xdf\xa7\x94\xae\xac\xbc\xa8\xa3\x29\x9a\x75\xa3\xde\xe7\x50\xe3\x8c\xa8\x44\x8c\x73\xc1\x2f\xea\x7a\x2e\x06\xbb\xae\xe1\xfb\xb9\xf9\xbe\xfd\x70\x2e\xb9\x0d\xad\x48\x2e\xbf\x26\x73\xe5\xc3\xa5\xaf\xd7\x68\x42\x2a\x23\xec\x46\x93\xa6\xe3\x32\x34\x12\xcd\xaa\x18\x77\x5d\x04\x7f\x25\x87\x9a\x91\x0a\x5b\x08\x44\x3d\x36\xa4\x93\x7e\x6d\x61\x47\xad\x7a\xb4\x1d\x94\xdb\x0a\xa3\x51\x2c\x5d\xc6\xc3\x24\x6d\xbc\x0c\xf0\x75\x35\xeb\xc7\x30\xe9\xb9\xf7\x9e\x5d\xbf\xbc\x5b\x29\xdc\xf3\xcc\x52\x95\x17\x74\x3f\xd9\xbf\x26\x33\xf9\x67\x05\x96\xa7\x0c\x2d\xf0\x88\x52\xc8\x25\xa9\x02\xee\xd1\x68\x55\xd7\xdb\x10\x3b\x66\xe6\x2c\x0a\x02\xeb\x1d\x1c\xd3\x91\x4f\x64\x29\x8b\xba\xce\xd0\x0c\x53\x3a\xab\x6b\x67\x3f\xd9\x4f\x9d\x11\xcd\xd0\x82\x38\xa9\x83\x1b\x8c\xf1\x43\x46\x87\x14\x37\xa1\x6a\xd8\x21\x18\x19\xc9\x29\xc4\xe2\x16\x16\x76\x90\x9e\x99\xd2\x75\x73\xd7\x65\x9d\x13\x32\x4a\x33\xd7\x2d\x42\x16\xa4\x68\x05\x76\xae\x29\xca\x5d\x77\x54\x84\xcc\xab\x8a\x75\x39\x65\x10\xb8\x1e\x4c\x11\xca\x69\x07\x1c\x21\xc3\xf6\x2b\xb9\x28\x64\xad\xf1\xbb\x02\x41\xd4\x12\x61\x6b\x4e\x32\x2b\x92\x63\xd9\x3d\x7a\x13\x82\x20\x13\x3c\x38\x23\xec\xb3\x00\x05\x7a\xeb\x16\xb1\xb8\x17\x82\xcf\xf1\x83\xb8\x4b\xe5\xe1\xfa\x0d\x4d\xd0\x14\x93\x7b\x3a\x39\xd1\xce\x82\x67\xf7\x27\x78\x89\x6e\xa2\x7b\x38\xa0\x99\x77\x06\x20\x23\xd6\x34\xd3\xb9\x15\x50\x21\x69\xc1\x11\x1d\xd0\xe6\x3b\x75\x0b\x77\xc0\xff\xd5\xf9\xb4\xb6\x95\x68\x1c\x11\x2b\xa4\xe2\xf8\x38\x38\x3e\xd6\x81\x15\x10\x52\xf1\xe4\x20\x78\x62\x79\x69\x0d\x21\xba\x0f\x2a\xcc\xfe\xc1\x04\xef\x00\xb3\x42\x0f\x3c\x29\xc5\x10\x99\x76\x42\x2f\xc4\xc0\xcd\x8b\x72\xca\x66\x41\x3e\xa2\x74\xdf\xdb\xf7\xd8\x1d\x9b\x36\xe4\x41\xfc\x09\x72\xc5\x3a\x27\x81\x7f\x30\xb1\x58\xe7\xa0\xc7\x13\x50\xb4\x73\xed\x8c\x44\x31\xd7\xde\x3c\x4b\xae\x2b\xd7\xd5\x48\x1c\xb2\x5a\xfb\x8c\x1f\x5e\xd8\x82\x34\x01\x4b\xcc\x76\x53\x83\x21\x31\x03\x30\x04\xf3\x3e\x8c\x7f\xf9\x44\xc3\x46\x28\x46\x7e\x78\xac\x76\x85\xfe\x53\x18\x99\xc7\x66\x79\x11\x9f\x74\x8b\x14\x2c\x5a\x52\x51\x5b\x97\xc5\x30\x14\xf4\x11\x95\x90\xae\xa5\xca\x1d\x1a\x94\x11\x8f\x77\xfa\x2c\x2d\xd5\xb0\x2b\x25\xc9\x65\x16\x50\x39\x1c\xa8\xc4\x11\x8f\x91\x72\x0d\x16\xbb\xee\x0d\x43\x24\xa7\x15\xc0\xcc\xb5\x30\x5f\x00\xe3\xaa\xd9\x3d\x97\xfc\x76\x47\xee\xd6\xc1\x65\x2d\x33\x09\xbb\xf5\x27\xa3\xb5\x77\x9d\x15\x57\x49\xa6\xbf\x4a\xd0\x9a\x64\xd2\x24\x32\xa5\x6b\x6f\x9d\xa7\xd3\x62\xc6\x76\xd6\x2d\x4a\x23\x9d\x98\x55\x38\x27\x0b\x1a\xc5\x64\x46\x27\x27\x0a\x44\x08\xcd\xa9\x2c\x01\x9f\xc8\x46\xae\x74\x95\x73\x30\x6f\x2c\xa2\x59\x4c\x57\x04\x1c\xd6\x57\xae\x8b\xec\x72\xc5\xea\x4d\xed\x3b\x98\x4c\x31\x26\xb3\xf1\xb8\xb1\x1c\xd4\x67\xa1\xa8\x2a\x58\x34\xb1\xd2\x8c\x9e\x06\xbe\xdf\xa6\xc6\x38\x3c\x0e\x0e\x0d\xbf\x7f\x1c\x1c\x3f\x06\xa2\xf8\xd2\xf8\x84\x96\x28\x0c\x84\x92\xaf\x03\x14\x9e\x4a\xf1\x2e\xc8\x64\xad\xc8\x84\x64\x0a\x09\x32\xb9\x23\x53\x03\x0a\x49\xe6\x76\xe8\xc2\x82\xee\x5f\x7c\x83\xa2\x6f\xdc\xff\xf5\x6d\x5c\x5f\xcc\x2e\x66\x61\x7d\x1a\xfd\x76\x16\x3f\x3a\xc3\x52\x0c\xf4\x9e\xe2\xfd\x6b\x4d\x7d\x25\x5b\x65\xc9\x94\x39\xe4\xa0\x4f\x7f\xab\x4d\xfa\x6b\x13\xe0\x1a\x0a\x4c\x14\x05\xe6\x9a\x02\xf3\x21\x0a\x4c\xb4\x1f\x6e\x4e\x0a\x92\xe2\xa0\x94\x57\x6a\xda\x0a\x0c\xa9\x75\x1b\xb2\x29\x34\x52\xba\x32\xf4\x47\x54\x06\xa6\x0e\x05\xa6\x16\x05\xce\x25\x05\x2e\x3a\x14\xb8\x05\x87\x79\x07\x0e\x3a\xdb\xe4\xf2\x92\x1c\x6f\xe8\x5c\xd1\x2a\x80\x2a\xcb\x36\xdc\xd3\xb9\xa1\xd1\xb9\x4d\xa3\x26\x4c\xf2\x9a\x46\xf1\x89\x22\xc6\x2b\xba\x46\x73\x22\x51\x99\xe5\xd0\xd0\x2b\x2c\xc3\x2c\xd3\x39\xba\x96\x9b\xfe\x2b\x4c\x46\x37\xea\x2e\xd0\xa9\x6a\xc7\x95\x20\x60\xd7\x45\x76\x35\x15\x5a\x90\xc2\xbe\x83\xc9\x3d\xc6\xa6\xee\x4b\x72\x4b\x1d\x87\xbc\xa4\x13\x72\x47\x27\x27\x77\xa7\xd7\x3a\x3c\xf3\x6e\x3c\xc6\x0f\x57\xf4\x3a\xba\x8b\xcd\x6a\x3a\xef\xd4\x44\xde\xd1\x0c\x4d\x51\x82\xae\xa4\xa3\x07\x26\x06\xf9\x99\x4c\x30\x79\x26\x16\xde\x47\xea\x9f\x7c\x3c\xbd\xd2\x85\x7e\x1c\x8f\xf1\x33\xfb\x48\x82\x52\x8a\x2e\xe9\x55\xf4\x31\xc6\xe1\x65\xa0\x4a\xbf\x34\x99\x7e\xaf\xbc\xeb\xb2\x58\xaf\xe0\xd4\x77\x26\x47\xe8\x39\x8d\xce\x63\x93\x60\x98\xbc\x13\x83\x65\x28\xe5\x83\xeb\x3e\x97\xc5\x7f\x90\x45\xbc\x35\x73\xa4\xec\x83\xca\xb6\xf1\x1c\x2b\xcd\xee\x2d\x5d\xa2\x73\xb2\x20\xef\xc8\x33\xf2\x41\xd0\xc8\xbb\x33\xfa\xd2\x75\xd1\xed\x98\x2e\xd4\xc9\xf4\x4b\xf2\x0e\x8f\xdf\x92\x97\xf4\xdd\xf8\x5c\x77\x50\xaf\xf7\xdb\xb1\x79\x0b\x37\x71\x9b\x52\x73\x09\xcb\x20\x97\xee\x22\xb2\xe1\x6b\x9a\x8f\x35\x56\x30\xc9\x68\xa1\x7f\x4e\xe9\x6c\x93\xe2\x5d\x17\x25\x34\x45\x89\xd0\xcb\x17\x98\x28\x8a\xaf\xc8\xb4\xa5\xf2\x52\x2f\xa7\x6a\x47\x59\x74\xd3\x36\x6b\x87\x34\xea\x3a\xdf\x38\xca\xc8\xea\x7c\xe3\x80\xd5\xd5\x71\xf5\x1d\x65\xe3\x75\xfe\x97\xb9\xc1\x4d\x2c\x41\x2e\x4d\xb4\xce\xb7\x1b\xcf\xd6\xea\xc9\xa9\x13\x54\x34\x89\x52\x75\xdb\x27\x7b\x3e\x8e\x7b\xf1\xc0\x92\x43\x8f\xd3\x1d\x93\x0b\x52\x1f\xd6\x8a\x3b\xd3\xb3\x4c\x36\x7f\x41\xe7\x68\xba\xef\x4f\x8c\xa5\x55\xbc\xbb\x08\xcb\x60\x71\x4a\xb3\xd0\x90\x49\x11\x2d\xf6\xfc\x38\x34\x7d\xf4\x71\x20\x6f\x8d\xed\x5b\x65\x53\xd1\x22\x82\x54\x80\x7d\x6f\xfe\x2a\x74\x9c\xa0\x6a\xb4\x1e\xae\xb9\xf2\x96\x24\xba\xc3\x5c\xfa\x4b\xc3\x23\x0c\x97\x3e\xd0\x7b\x30\x4b\x64\x57\x2c\x29\x07\x65\x76\xf2\xff\x0f\x99\x9d\x7c\xa9\xcc\xae\x24\xc7\x5c\x77\x39\x66\x46\xab\x96\xdb\xec\xa4\x28\x23\x90\x0f\xbd\xb2\x79\x9f\x16\xdf\x05\xaa\xc8\xba\x3d\xb6\xb3\x5f\x22\x59\xff\xab\x4c\x43\xd0\xd3\x69\xb8\xe7\x07\x53\xc9\x75\xfa\x52\x56\x39\x08\xf7\x67\xee\x4b\xb1\xba\x9e\x74\x4c\x13\xca\x73\x30\x51\x52\xd5\x82\x48\x35\xe2\x55\x2a\xaa\xb0\x7d\x3e\x3e\xc2\x5a\xb2\x0a\x21\x2b\x34\x0f\x60\x46\x64\x46\x47\xd3\xae\xd9\x1e\x26\xc3\x82\x4f\x71\xee\xc5\xde\xc7\x50\xc8\x2a\x4b\xf9\x80\x50\x9d\x2a\x8d\xc5\x44\xc2\x53\x67\xea\x50\xea\x24\x57\x57\x53\x1d\x7f\xbd\x8f\xae\xf0\xa3\x7d\x1c\xf9\x71\x5d\x1f\x8d\xa8\xc3\x59\xc5\xdb\x67\x61\x80\xf7\xc5\x5a\x55\xcc\x07\x30\x5b\x9c\xe4\xca\x7e\x21\x81\xef\xcd\x0b\xa2\x0c\xaf\x7d\xee\x85\x58\xfc\x6f\xbd\x60\x3f\xc5\xa8\x7d\x72\xe6\xd7\xb5\x63\x1e\x79\xa1\x79\x10\x0e\x09\xea\xbe\xda\xd7\x06\xe1\x48\x4f\x28\xae\x08\x30\x8a\x77\x74\x26\x26\xc3\x4e\x14\x0c\x6d\x17\x15\x16\x38\x2f\x60\xd9\xc2\x31\xa0\x97\x5e\xe7\x45\xc9\x9e\x27\x15\x0b\x9d\xd4\x09\x1c\x07\x8f\x11\xf3\x96\xeb\x8c\xa7\x59\x9a\xb3\xd0\x59\x9a\x9b\x4a\x5c\x87\xce\xda\xdc\xaa\x78\x3a\xfd\x78\x1f\x3a\xf7\x70\x07\x12\x85\xcd\x6c\xc8\xda\x76\x2a\x03\x7e\x76\x76\x36\x51\xdb\x66\x35\xd1\x7a\xf7\x48\xa6\x63\xe7\xda\xc1\x27\xa8\xa0\x99\xce\xe3\x9e\x62\xec\xba\x23\x84\x12\xba\xb2\x84\xf4\xd9\x1c\x54\x4f\x10\x65\x9a\xc9\xce\x49\xa1\x04\x2d\x26\x85\x85\xf6\xad\xee\x9e\x6a\xec\x1d\xd7\xd5\xa7\x63\x6b\xa2\x73\xb6\xfa\x58\x50\x6f\x11\x4d\x62\x2d\x76\xe6\x34\x21\x1a\x8b\xe1\x8c\xce\x84\x3a\x6c\x35\x40\x30\x5c\x59\xac\xeb\x5a\xb7\x0d\xf6\xfd\xee\x9c\x52\x03\xf6\x13\x8e\x2a\xf1\x96\xa0\x34\xe4\x38\xb8\xae\x55\xc3\x1d\x07\x07\xfd\x3e\x60\xdc\xd6\x3a\x0b\xd7\x46\xe4\xcc\x70\xb0\x6e\x02\x67\xa2\x09\x46\xc9\xe9\xc9\x16\xa2\xd9\x08\xd5\x52\x54\x12\x46\xb1\x56\x0f\x0d\x50\x70\x13\x94\xc4\xe2\xa8\x6d\x1a\x5c\xcd\x53\x8b\x2f\xe2\xa9\x45\xeb\x3d\x99\x0a\xae\xba\xea\x68\xa1\x29\x86\x04\xbb\x43\x5a\x68\x4e\xa7\x68\x65\xb4\x50\xb2\x1a\x51\x2a\xcd\x60\x79\x87\xb3\xe6\x16\x67\x55\x21\x9d\x3d\x5d\x74\x09\x1b\x10\x49\x53\x98\xdc\xd0\x4c\x53\x2a\xb9\xa7\x28\x1b\xa4\xf0\x6c\x88\xc2\xb3\x4d\x0a\x9f\x49\xd2\xbe\x76\x30\xb9\x06\xca\x5d\xa2\x59\x98\x05\xce\x6f\x28\x0c\x9c\x71\xa6\xe8\x77\xec\x60\x87\xdc\x63\x72\xf5\x29\xd2\xd7\xe2\xfe\xaa\xb3\x62\x41\xa8\x77\x4f\x9b\x76\x15\x37\x5f\xa3\x6b\xb2\xc0\x61\xb4\x88\x83\xa8\xd5\x35\x2f\xe9\x84\xdc\xd2\x09\x79\x29\xb4\xe3\xdb\x53\xfd\xed\x09\x7e\xb8\xb6\xc8\x74\x16\xde\x06\xf2\xa8\xec\x8e\x9c\x43\x49\xb3\x70\x11\x68\x9d\xec\x16\xdb\x8a\xf4\x79\x5d\xa3\x3b\x3a\x47\x15\xb2\x4a\x10\x5d\x9f\x04\xb7\xd8\x52\x5e\x31\xa5\xf4\x12\xdf\xd2\x04\x2d\xc8\x2d\xb9\xc1\x26\x79\xf5\x4b\x49\xcb\xba\xf4\x4b\x22\x3e\x7b\xa9\xb1\xd2\xdb\x1e\xef\xbe\x34\xbd\x78\x47\xfd\x93\x77\xa7\x54\xeb\x8d\x7b\xfe\xc9\x3b\x09\x79\xa2\xca\x3a\x8f\xde\xc5\xdb\xca\xb8\xa5\x97\xf4\x4e\xe3\x9b\xec\xf6\x2b\x17\x55\x6f\xc8\x3e\x69\xeb\x30\xbe\x2b\x43\x3b\x4e\x69\xa5\x11\x72\x51\x5a\x66\x40\x3a\x7e\x2e\x25\x07\x43\x07\x47\x4f\xf1\x86\x7a\x73\x7c\x2c\x85\xe4\x63\x38\xae\xde\xf7\xf6\x5b\x58\xd8\xaa\xe3\x3b\xad\x2c\x4d\x9b\x76\x94\x36\x56\x02\x4e\x97\x9b\x9d\x2d\x06\x45\x67\x3f\xd9\xbf\x72\x46\x3a\x5c\xf4\x41\x59\xe3\x9c\xc4\x21\x60\x8a\x09\x9c\x2b\xa7\xc1\x0d\x0e\xab\xbe\xc3\x14\xa3\x79\xc7\x7b\xcc\xd9\x37\xe9\x08\x0d\x5b\x76\xf6\x1d\x6d\xd2\x49\xf3\x5d\x16\x32\x69\x00\x0a\x46\x85\xeb\x76\x2c\x81\xb2\x03\x5a\xb9\x62\xd8\x60\x6d\xe2\xa0\xed\x8a\x68\x65\x9e\x2c\x99\xeb\x56\x03\x96\xd1\xc4\x72\xcf\xb4\x41\x6b\xc1\x32\x75\x70\xf4\x54\xcd\xd3\x86\x4d\x0d\xe6\xe9\x4b\x33\x77\x7c\x1a\x71\xf4\x9c\xf1\xff\xc7\x10\x47\x93\xd9\x60\x76\xaa\x2e\x5c\xa8\x68\x00\x26\x8c\xb6\x80\xa1\x0c\x00\x43\xb7\xa3\x85\x1e\x0c\xa5\x5e\xeb\x91\xa8\x7f\x28\x3a\x97\xe4\xd3\x45\x27\x54\xf2\xd3\x41\x4b\xaa\x45\x89\xa3\xc1\x63\xcd\x19\xef\xa1\x1f\xf8\x87\xb2\xee\xcf\x9d\xf1\xeb\xba\xaf\xd2\xeb\xaf\x1b\x58\xf9\x85\x23\xfe\x1b\xa8\xf6\x73\x96\x52\x53\x6d\x96\xe6\x1f\xbf\xb6\x62\xf9\xcd\xb6\xaa\x3f\x17\x3e\x65\xaa\x2e\xb2\xcf\xc4\x07\x6e\xd6\xbc\xb5\xd6\xaf\xce\x34\xe6\x1f\x3c\x85\xdc\x4a\x1a\xcd\x59\xf3\x92\x07\x21\xdc\x7e\x2e\xd2\x9c\x3f\xfb\x64\xda\x08\x83\xfb\xfe\x34\xf0\x0f\xda\x9c\x84\x07\x5f\x9c\x3e\xac\x05\x34\xd7\xfb\xbc\xc3\x89\x60\x85\x8e\xe3\xb1\x7c\x56\xfd\x9a\xf2\x45\x17\xde\xfc\x10\x23\x47\x3f\x71\xb0\xd5\x62\x7d\x73\x7b\x28\x3b\x23\xf6\x97\x9b\xde\x60\x5b\xd2\x7e\xe5\x34\xb5\xf2\xc6\x54\x9d\xc4\xe2\x81\xc9\x12\x93\xa2\x12\x93\xdc\xda\xcb\x31\xdb\xa7\x4f\xc7\xbe\xaf\x49\x85\x03\x6e\xf0\x05\xb4\x22\x47\x2a\x21\x32\xd7\x7a\x3e\x27\x81\x7f\xd8\xcb\x03\x43\x8e\x0f\x83\xe3\x43\x18\xda\xcf\x6d\xa1\x35\x65\xcd\xd3\xbb\xcf\x85\x9e\x6e\x90\x16\xe7\xdb\x69\xeb\x73\x1b\x40\x53\x6f\x91\xf3\x69\x91\x7d\x3d\x0b\x11\x1f\x3a\xc4\x51\xdf\x0e\xb0\x91\xcf\x26\xbe\xb2\x9b\x50\xa5\x5f\x11\x91\xde\x6d\x81\xfc\x74\xa8\x01\x5f\x72\xbc\x7d\x08\xd9\xb6\x14\xfa\xdd\xbc\x2c\x96\xcf\x15\x2e\x1b\x49\x3a\x77\xf5\x0a\xb3\x3d\x1b\x47\xa3\xc4\x75\x7d\x21\xff\x34\xbd\xb5\x04\xde\xf9\xa8\x43\xe5\x06\x21\x84\x80\x73\x73\xbe\x09\x9a\x9a\xd0\xc9\x49\x7e\x96\x9c\xc0\x61\x2e\xa7\xe3\x2e\x68\x2a\x49\x11\x27\xbe\xef\x1f\xf9\xbe\x8f\xad\xc4\xbc\x16\xe4\x09\x1f\x3b\xbb\x69\xb5\x9b\x17\x7c\x37\xd9\x95\xa8\xf1\x82\x45\xec\xae\x44\x63\x1c\xac\xdd\xa4\xf9\xe9\xf1\xe3\xc7\x87\xc7\x61\x81\x38\x0e\x0a\xf4\xf8\xf1\xc1\xd3\xe3\x31\x42\x7c\x0f\x70\x49\x8f\xf1\xd9\x99\x3f\xc1\x84\xff\x0f\x7f\x72\x70\x34\x7e\x7c\x7c\x78\x30\xc1\xc6\x12\x58\x42\x72\x2c\x64\xd1\x9e\xcc\x12\xd2\x32\x95\xaf\x4e\x55\x75\x38\xc1\x9b\xdc\x23\xcd\xa7\xd9\x7a\x06\xa9\xbf\xda\xc1\xd5\x37\x07\x98\xdd\x68\xf4\x6f\x93\x0e\xc4\xfa\xd8\xc4\xe6\x7d\x4d\xc2\x48\x6b\x79\xf7\x97\xf5\x97\x8a\xc8\x94\x27\x59\x3a\xfd\x4c\x9c\xf3\x06\x65\xa7\xdb\xd7\xf5\x97\x1f\x27\x0a\x59\x01\x47\x8a\x4f\x1e\x63\xb5\x6d\x6b\x87\x70\xc8\x21\xcf\xb0\xc2\xd6\x2b\x6f\x33\x55\x9c\x71\xae\x6b\x7d\xf5\x52\x13\x95\xd2\x7a\xd8\x85\xc3\xbe\x75\x01\x02\xfd\x94\x98\x10\x92\x74\x6c\x12\xca\x91\x0d\x67\x3a\xdc\x11\x57\x90\xdc\x0d\xc6\xe0\x4b\xa5\xf5\xe7\xf5\x84\x61\xcd\x68\x51\xb2\xf9\x20\x47\x19\x4a\x9c\xb4\x29\x1b\x27\xed\x49\x95\xf6\xe9\x31\x94\x5b\x26\xb7\xc3\xcc\x40\xec\x80\xbd\x32\xb9\x55\x09\x37\xac\xb4\x41\x03\xec\x21\x8a\x49\x45\x27\x27\xe5\x59\x75\x82\x55\x50\x8e\xde\x39\x47\x15\xe0\x2a\x93\xea\x34\x77\xdd\xee\xb3\x96\xca\xab\xb8\x0d\x25\x4a\xfa\x0b\x79\x4b\x62\xb3\x83\xa1\xb4\x4b\x7d\xb7\x29\x5b\x29\x29\xd9\x8a\x25\x3c\x90\x50\x62\x1d\x4c\x9e\xb6\xc8\x2f\x95\x8e\xd5\x32\xc9\x3e\x13\x99\xbf\x31\x93\xea\x9b\x2d\x0b\xe9\xab\x13\x00\x0d\xe8\x3c\x15\x4f\x4a\xbe\x45\xeb\x69\x9f\x75\x38\x57\x7b\xfb\x93\x9a\x4f\xe7\xeb\x92\xa6\xc8\x68\x2e\x5f\xa8\x06\x19\x02\x12\x14\xf4\x29\x1d\x27\x27\x65\xab\xe3\x94\xa4\x1c\xe7\xfa\x4b\x4a\x69\xfe\x45\x3a\xce\x50\x8a\xa0\xe1\x59\xe4\x65\xfa\xf1\x33\x62\x7e\x73\x1a\xd5\x47\xdb\xe6\xf1\x73\x7b\x44\x53\xf9\xfa\xea\x6b\x6b\x5e\x6f\xd7\xdd\x87\xf2\x0f\x6d\xa9\xf6\x2b\xd3\x5d\xc8\x2f\xb6\x55\xfb\x25\x72\xe7\x08\x23\x09\xeb\xfb\x55\xf5\x1e\x9a\xda\x00\x46\x14\x6a\xfb\x52\x61\xd3\xc7\x35\x7e\xfc\xa4\xeb\x63\xeb\xfb\x2a\xad\xf0\xd3\x23\xec\xfd\xed\xe5\xbf\xe0\x1c\xe1\x58\x81\x1b\xf8\x07\xc7\x12\xdd\xc0\x3f\x38\x92\xf0\x06\x90\xe5\x7e\xa6\x72\xc9\x00\xc0\x01\xe4\xfd\x5f\xc2\x8f\x89\x84\x38\x38\xf6\x25\xc2\xc1\x77\x4f\x31\x80\x1b\x1c\x3e\x91\xd0\x06\x4f\x7c\x05\x6d\x20\xd8\xf0\xad\xc6\x54\x7e\xa9\xdd\xff\xee\x54\x48\xcd\x39\x95\x38\x3e\xe4\x9d\x76\x1d\x7c\xa6\x7c\x09\x3f\x2a\x00\x15\xf2\x81\xbe\xf3\xe6\xe4\x39\x7d\xe6\xcd\xc9\x5b\x7a\x0e\x50\x05\xb9\x4e\xba\xff\x33\xcd\xbd\xbf\x9e\xbf\xfb\x89\xfc\x4e\x7f\x76\xdd\x9f\x3d\x89\x86\x9c\xce\xef\xc9\x0b\x3a\x43\xce\xe5\x22\x9d\xcd\x58\xee\x60\xf2\x93\xb8\xec\xe6\x2e\x7a\x4d\x1f\x1a\x6f\xa5\x9c\xb1\x5f\x57\x2f\xa5\x7b\xf8\x55\xc6\xc8\x1b\x3a\x45\x4e\x05\x35\xec\x95\xec\x3a\xad\x78\x79\xef\x60\xf2\xaa\xbd\x2d\xf4\xa0\x3f\xc5\x65\xb1\xda\x6b\xef\xfc\x48\x37\x60\x39\xbe\x1f\x3a\xc8\x7f\x4f\xfe\x41\x73\xef\xef\xf2\x65\xf2\x2b\x1d\xfd\xa3\xae\x47\xff\x68\xbf\xea\x5e\x41\x9e\xee\xe7\x8b\x34\x9b\x91\x3f\x68\xe1\xba\xd9\x80\x79\xe7\xbb\x11\xbd\x43\xcf\xd1\x43\x03\x92\xf3\x61\xd8\xb1\xeb\x79\x2b\x5b\x95\x8c\xff\xae\xc1\x5e\xd2\x34\x58\xfc\x8b\xc3\x61\xa9\xf2\x01\xfd\x48\x38\xde\xc9\x4d\x70\xc2\x8f\x11\x8f\xc9\x73\x1d\x7d\x91\xbb\x2e\x1b\x51\xfa\xa3\xeb\x3e\x17\x2f\x92\x1c\x37\xc1\x73\xf2\xcb\x40\xb4\xf6\xab\x88\xc5\xf4\x0e\xbd\xb7\x42\x60\x0c\xd4\x9e\x77\xf9\x91\x32\xc2\x1b\xf2\x2f\xfa\xbd\xeb\xaa\x41\xb6\x06\xcc\x4b\x39\x2b\x13\x5e\x94\xe1\xe6\x5a\xda\x78\x9b\x35\x83\xd0\xae\x1d\x8b\x5a\x43\x7e\xd8\x86\xf6\xc8\x28\x74\xe7\x07\xf4\xa7\xec\xa1\x54\xc5\xe8\xad\x8a\x44\xb9\x16\x7b\xd6\x14\xbd\x22\x1c\x87\xa8\xf4\x98\x21\x1b\xc0\x77\x27\x2f\xb0\xeb\xb2\xe8\x45\x1c\xf1\xd8\x75\x91\xfa\x45\x21\x30\x97\xde\xa1\xd2\x84\x21\x5c\x65\x2c\x78\x89\x26\x90\x65\x11\xe3\x40\x7d\x5b\xd7\x62\x60\x5f\x90\x97\xc8\x27\x0f\x0d\xc6\xc4\x14\x30\xc1\xe4\x0f\xd5\x50\x1c\xe8\xd1\x6f\xc8\xdf\x7a\x4e\x8b\x20\x5e\xac\xa4\x10\xf4\x06\xa0\x0c\x38\x16\x9c\x61\x02\x69\xb3\x94\x45\xbb\x38\x4b\x4f\xf0\x0f\x88\x91\x92\xe6\x51\x2a\x36\x34\x3c\x2a\xdb\x64\x9c\xac\x21\xdf\x0c\x4c\xe2\x6b\xfb\x94\x83\xde\x22\x48\x0d\xd8\x06\xb5\xa8\x50\xd6\x1f\x5d\x57\x8c\x10\x93\x98\xcb\x7f\x12\x86\xc1\x73\x13\x71\x40\xd9\x53\x56\x10\xf8\xfd\x0a\x7e\xa8\x7b\x62\xec\x20\xfd\xe1\x8b\x38\x62\x31\xae\x6b\x8e\x1b\xf2\xf7\x4d\x94\x0d\x46\x2f\xbb\x73\x02\x14\xa8\xca\xe3\x50\xde\x9f\x84\x63\xed\xc2\xf9\x41\xfa\x3f\x6b\x1f\xcd\xce\x7b\x9d\x09\xab\xeb\xce\x84\xc2\xa0\x97\x4d\x43\xfe\x39\x0c\x2d\x09\xe1\xa4\xa2\x25\x42\xb8\xcb\xf8\xd8\x0e\x62\x05\xd4\x42\x15\x6a\x45\x5d\x73\x4a\x5f\xc0\xbf\xeb\xba\xce\x75\x1c\x8d\x09\x2f\x6b\xc8\x7f\x6d\xad\x05\x28\x92\xe4\xf4\x2d\x2a\xc3\x3f\x03\x59\x63\x21\x6a\x84\x1d\xaa\xae\x31\x39\xc1\xb2\x63\x34\x97\x59\x3d\xea\xba\x84\xf1\xff\x11\xfa\x5a\xc8\x2a\x5f\x45\xbc\x9d\xe4\xa2\xd9\xf9\xbe\xae\x51\x85\xd0\x7b\x3b\xf4\x5b\xc5\xea\x74\x16\x8c\xda\xdd\x1a\x3c\x1a\xe4\x48\x16\xdc\x6e\x70\x2d\x9f\xcf\x91\x23\xad\xf6\x8c\x2e\x36\x35\xa5\x61\x2b\x2e\xb1\xf0\x3b\x4b\xb9\x19\x92\x84\xa4\xfc\x99\xff\x24\xb0\xec\x0c\x9d\xc8\x9f\xd1\x8b\x18\xa8\x0c\xb5\x64\x03\x6b\xed\x0f\xad\xc2\x89\x85\x54\x62\x83\x3e\xb3\x5b\xb8\xee\xaf\xae\xfb\x07\xfa\x71\xc8\x1f\xb6\x62\x3c\xe0\x0d\x26\xbf\x40\x10\xfa\x17\x82\x2b\xa9\x60\xa4\x8f\x0d\x26\xef\xbc\x39\xfd\x3b\x79\xe6\xcd\xe9\x0f\x44\x3b\x41\x0b\x89\x45\xff\x09\x97\x4f\xc4\xe5\x37\xf0\xf3\x48\xfc\xfc\x2f\x52\xb8\xee\x08\xe0\x86\x5c\xb7\x42\x3f\x12\x67\x48\x1a\x39\xe4\x1b\xa0\xf1\x95\x37\x1f\x0a\xa3\xff\x05\xcd\x20\x32\x07\x93\x04\x25\xde\x0f\xe3\xc4\xfb\x75\x9c\x78\xaf\x1e\x8d\xbe\x27\x0f\x72\x86\x82\xf7\x4d\xcb\x12\xfe\x4a\xed\x9c\x70\x24\xad\x9e\xc3\xa1\xc4\xf9\xaa\x64\xc9\x0c\x84\x9f\xe6\xb4\x04\x7c\x3c\x89\xf2\xb5\x23\xd2\x7d\x84\x28\x8c\x1f\x02\xc7\xa5\xc4\x12\xa8\xc4\xc2\xaf\x22\xeb\xbc\x9a\x16\x2b\x51\x5c\xd5\x01\x68\x67\x8c\x4e\x4e\xfe\xaa\x09\x81\xb1\x13\x3c\x43\x7f\x8d\x98\xcc\x02\x6c\x28\x9e\xd1\x8f\x68\xe6\x55\xbc\x28\x19\x26\xa5\xf8\x84\xeb\xcd\xe9\x59\xc9\x4e\xf0\x12\x71\x16\x95\xf2\x23\x08\x15\xd2\x1d\x56\x24\xe9\x10\xb1\x7a\x86\x2d\xb0\x6f\x08\x1b\x53\xc7\xc1\xe1\x9b\x88\xc5\x81\xf8\x87\xbe\x17\xb3\x4d\x3e\xb2\xfb\x57\xbd\x8f\xd2\x39\x1a\xfd\x4b\x0c\x6e\x9f\xf4\x99\x6d\xd7\x91\xd2\x47\x50\xbc\xe9\xc0\x6e\x9a\xef\xbe\xc1\xe9\x1c\xbd\x11\xac\xdb\x4a\x68\xcd\x1b\xb2\xae\xd8\x39\xe3\xdc\xc6\x01\xc7\x0f\xbf\xd2\xd1\x44\x3e\x4a\x97\x2b\x3b\x9e\x06\x1e\x41\x38\x5b\xb7\xa3\x7d\xd8\xcd\x4f\x1f\x53\xf3\xf0\x0e\x31\x1c\xfc\x0d\xdd\xa9\x70\x32\xd2\x0b\xbe\xfc\x81\x6c\x60\x6c\xfe\x8d\x6c\x8d\x56\xfb\x3b\x19\xc0\x68\x0c\xfe\xd9\xbb\x2b\xe7\xa2\x0a\xfe\xab\xc1\xe4\x67\xd7\x6d\xdb\x8f\x46\xdf\xd7\x75\xb6\x79\x60\xf6\x1e\x99\xc3\x32\x19\x7a\xeb\x8c\xe8\xef\x48\x0a\x02\xe7\xa1\x81\xab\x87\x24\x60\x8d\x75\x2d\xc7\x41\x2e\x00\x4c\x1c\xa1\x0a\xc2\xee\x4e\x69\x81\xdb\x0c\x7e\x82\x5f\xb3\x98\xa4\xd4\x3f\xd9\x60\x4f\xe9\x09\x56\xdc\xb9\x65\x53\x10\x77\xb8\x03\x18\x2f\x82\xbb\xfa\x31\x41\x57\x00\x3b\x68\x8e\xe9\x41\xd4\xfd\xcb\x72\x0f\xb9\x87\xe7\x1d\x54\x62\x25\xbd\x06\x14\xc2\x12\x10\x87\xfa\x1e\x04\x98\x8c\xfe\x25\x24\xb7\x21\x1e\x4c\x44\xdd\x94\x93\xdf\x95\xa7\xc5\xcf\x00\xd6\x82\x89\xa5\x53\x45\x3f\xc5\x3a\xfb\xa6\x75\x97\xfc\x64\xbf\xa3\x53\x46\x60\x32\x47\xef\xcd\xaa\x11\x57\x62\x7f\xab\x73\xb2\x08\xa6\x33\x47\x4a\xbf\x56\x43\xab\x10\xe3\x4c\x34\x89\x86\xdd\x54\x9e\xfa\x93\xa3\xc0\x9f\x1c\x91\x16\xb3\xf0\x49\xe0\x4f\x9e\x98\x68\x93\xd6\x93\x5f\xa3\x1d\x1c\x07\xfe\xc1\xb1\x95\xc4\x5d\x86\xeb\xfa\x47\xdf\x05\xfe\xd1\x77\xc4\x7f\x3c\x09\xfc\xc7\x13\xe2\x3f\xf6\x03\xff\xb1\xdf\xa2\x20\xd8\x67\x95\x7e\x70\xec\x0f\x84\x41\xab\xf4\x0a\x07\xc1\x77\x07\xe4\xbb\xa7\xc1\x77\x1a\x0a\x50\xa1\x20\x1c\x05\x4f\x8f\xfa\x69\x17\x86\x32\x91\x7e\xc6\x16\x71\xac\x6d\x4c\x8f\xbb\xb0\x00\x60\xcf\x5e\x6b\x73\x45\xa6\x36\x44\x53\x95\x62\x01\x12\xf6\x7e\xbf\x9e\xcf\x59\xa9\x76\x5c\xdf\x89\x1d\x57\xd1\x79\x30\xa3\x85\xf7\x22\xe1\xc9\x2f\x29\xbb\x85\x58\xa6\x67\xdf\xff\xe2\xba\x53\x2f\xad\xe0\xce\x92\x2e\xac\x09\x05\xbb\x01\xb9\xa1\xa9\xf7\xcb\xeb\x97\xbf\x1a\xa8\xbc\x5f\xa5\x81\x7c\x3a\xa2\x74\x81\xc9\x83\x55\x7c\xb0\xd0\x21\xb2\x12\x9f\x21\xf5\x9e\xbf\xfb\xe9\xfc\xc3\x7b\x95\xe3\x58\xbe\x04\x61\x7e\xa2\xb6\x21\x5e\xba\x72\xdd\x15\x00\xa5\x65\x90\xbc\xe0\x46\xc7\x1c\x12\x6d\x83\xf9\xc7\xa7\x32\x2b\x8d\x72\x76\xbb\xbb\x40\x07\xd8\xb8\x72\x2a\x3d\xc0\xbb\xba\xe7\xec\x8d\xc9\xe6\xd5\x6d\xcd\x50\x96\x6f\xe3\xb5\x35\xa2\x74\xe9\xba\x2d\xd3\xd3\xeb\x66\x29\x97\x55\xa2\xdc\x59\x6c\xfd\x98\xaa\x9b\x56\xa5\x32\xbc\x07\x94\x0d\x5a\xa1\x5e\x7a\xf0\x12\xbc\x76\xd8\x2d\x92\x0a\x12\x59\x60\x8c\xd6\x28\xdd\xcb\x31\x04\x37\xb1\xdb\xdd\x99\xaa\x65\xaa\xae\x0a\xb1\x71\x9e\x9c\xe4\xa7\xe9\x09\x9e\x7a\x15\xe3\xff\x48\x73\xfe\x04\xad\xc6\x63\x92\x79\xd7\xfa\x32\x1f\x8f\xb1\xa5\x94\x35\x2d\x9c\x8d\xdd\x7f\x2b\xc3\xb3\x05\x14\xd2\xcd\x0a\xee\x1f\x3d\x0e\xfc\xa3\xc7\xc4\x3f\x3a\x0e\xfc\xa3\xe3\x6d\xb0\x17\x6d\xd4\xe9\x97\x64\xac\x6d\x49\x69\x24\x89\x5e\xd0\x22\x79\xd0\xd4\x19\xc8\x05\x60\xa8\x55\xd9\x2f\xbb\x0d\x31\xc6\xc6\xa1\x94\xb6\xa2\x80\x23\x8c\x1c\x00\x8a\x3c\x3c\x70\xc8\xd1\xa7\xcd\xc5\xe0\xf4\xd4\x33\x9c\xc8\x9b\xda\x78\x7a\x14\xf8\x47\x60\x3c\x19\x4a\x02\xdb\xa9\xee\xf8\xc8\x21\x4f\xfe\x73\xd5\x0d\xd8\x33\x75\x75\xaf\x73\xee\x1f\x77\xfd\x2b\xff\x37\x2b\x1b\x4e\x0a\xae\x2b\xfb\x0f\x0f\xe4\x80\x85\xcf\xaa\xec\x49\xd7\xb3\xf8\x7f\xb3\xae\x01\xb3\x9e\xae\x4b\xac\x98\xff\xf0\x30\x0e\x58\xf3\xec\xda\xfe\xc3\xe3\x38\x60\xcd\xb3\x6b\xfb\xcf\x0e\xe4\x30\xd0\xf6\x7f\xa8\x32\x93\x69\xd7\xd4\x37\x94\x8e\x73\x08\x6a\x55\x19\x2b\x21\xf9\xda\x01\x46\x13\x1d\x61\xa6\xc4\xe7\xd3\x23\x65\xa7\xfc\x4e\x01\xb0\x4e\x4c\xa4\xb0\x14\x98\x47\x4f\xb5\x89\xf2\x29\x26\x33\x3a\x4a\xbd\x67\x53\xb1\x0b\xf9\xa7\x54\x08\x5d\xd7\xe9\x5c\x43\xce\x66\xb2\xa2\x95\x60\xb9\xbf\xb2\xe4\x23\x59\x0e\x45\xb9\x4b\xe7\xc6\x39\xec\x3c\xc8\xfd\xd0\x6e\xeb\x3f\xe0\xab\x74\x4d\x37\xf2\x23\x43\x50\x32\xc3\xda\xc6\xb2\x6a\x8f\x08\x46\x52\xf6\xdc\x68\x81\xe3\x88\xc6\x43\xda\x63\xc8\xc9\x0f\x91\xa0\xa1\x41\xc7\x88\x0d\xf4\xc0\xf6\x0c\xca\x19\xb8\x44\x6d\x14\x47\x54\xf6\xe4\x2b\xba\xe1\xb7\xa5\xdf\x21\xf7\xe4\x9a\x64\x64\x34\x11\xd3\xbe\xb3\x70\xdd\x99\xeb\xa2\x35\x42\x39\x05\x49\xf6\xbc\xdd\xfe\xa3\xfb\x4e\x43\xad\x64\x76\x98\x54\xde\x4f\x2f\x5f\xbe\xa0\xa3\x09\x29\x50\xe4\x48\x93\xa2\x43\xc4\xa6\xd4\x21\xce\x35\x03\x4f\x02\xc6\x9d\x78\x20\x42\xe0\xca\x2a\xa9\xa4\x3c\x62\xf1\x4e\x82\x38\x61\xc4\xa2\xd6\x54\x8d\x26\x17\xfa\xf8\x52\x68\xcf\xea\x5c\x75\x2e\x94\x71\xf9\x4b\x82\xda\x49\x0b\x45\xa1\x0e\x4f\xe7\x11\x8b\xe1\x73\xbd\x05\x11\x8d\xa0\x94\xc9\x18\xdb\xa2\xe9\x3a\x7d\xab\x55\x90\x02\xfc\x57\x07\x43\x59\xbb\x91\x1d\x04\x47\x07\xe4\xf1\x24\x78\x3c\x91\xce\x64\x5d\x70\x1e\xa9\x7d\xea\x54\x0b\x43\xe9\x65\x07\xf5\xce\xc7\x13\xcb\xbf\xce\x9a\x9d\xff\xcf\x3d\xeb\x74\x23\x04\x19\x41\xcc\x39\xc9\xc9\xc8\xef\x25\xe2\xb6\x46\x03\x7a\xfd\xd5\x49\x3f\xbe\xd3\xca\xf6\x81\x86\x29\x52\xc8\x02\x87\x2a\x5d\xe3\xd1\x63\x73\xfc\x09\x7a\x93\x43\x1e\xe6\x59\xc2\xdf\x26\xab\xe1\x8c\x36\xea\xa4\xcf\x02\x5b\x52\x98\x43\xe6\xf0\x8d\x94\x74\x8d\x72\x22\xc6\x1d\x95\x24\x27\x39\xe1\x64\x42\x7c\x62\xb9\x2f\x44\x7e\x0c\x56\x42\xa1\xb3\x1d\x3e\xc6\xc8\x51\x55\x4a\x75\xad\x1f\xdf\x23\x01\x9c\x1e\x07\x87\x8f\xc9\xd1\xe3\xe0\xe8\xb1\x56\xcd\xbe\x0b\x8e\x25\x2d\x7c\xed\x79\xe8\x91\x2f\xfd\x0b\x7a\xfd\xfe\x84\x6b\x86\xf1\x43\xfb\x0a\x17\x0c\xdd\xb7\xd6\x93\xa3\x21\x0f\xaa\x1b\x7e\x60\x1f\x4f\x7f\x26\xeb\xad\x82\xf3\x9e\xb4\x8d\xb6\xe1\xd6\x59\xce\xcb\x74\x5b\xa3\x8d\xdf\x9c\x3f\x09\x7c\xdf\x8a\xad\x7e\xfa\x25\x0e\x46\xbe\x3e\x36\x3e\xd2\xc2\x66\xa2\xa8\xe7\xf1\xe1\x66\x43\xb6\xd9\x3e\xaa\x4f\x58\x14\x0a\x19\x95\x94\x78\x73\xc8\x8d\x94\x0b\x91\xf5\xd0\x90\x39\x9d\x9c\x64\x7a\x80\xe7\x27\xd8\x6c\x56\x90\xa4\x2d\x4e\xb3\x68\x0e\xce\x02\xae\x5b\xa1\xa9\x44\x4d\x53\x9d\x9e\xf6\xd0\x1b\x14\xda\x89\xde\x2f\x3f\x3e\x0c\x1e\x5b\xc7\xf8\x9f\x49\xdb\x6b\x0d\xbd\xbf\xd9\x63\x30\x09\x7c\xf5\xc8\x7f\x2d\x0c\xd5\x63\x15\x3e\xfc\x9d\x9e\x04\xb1\xf3\xad\x14\xe0\xb9\x39\xbd\xef\xc0\x73\xce\xd3\x3c\xc9\xb2\xfb\x81\x73\x7a\xb9\x79\x23\xa9\x46\xf8\xac\xeb\x42\xff\x14\x0b\x77\xc0\xce\xc2\x76\x6c\x9b\xad\x04\x73\x0c\x6d\xb3\xb3\x61\x04\x9c\x30\x84\xfb\x40\x95\xe6\x79\xd9\xe0\x26\x60\xe4\xeb\xbe\x95\x56\x44\xf9\xa9\x19\x50\x05\x07\xa9\x76\x73\x12\xcc\xb1\x97\x2f\x71\x28\xb1\xf1\x67\x3c\xb8\x4c\x90\xb6\xf4\x90\xff\x45\xe2\xc4\x5f\xec\xfb\x93\x0b\xef\x62\x36\x46\xf0\x2f\x0e\xd1\xee\xdb\xe2\x2a\xcd\xd8\xc5\xfe\xc5\xed\x18\x87\xbb\xe7\xc9\x3c\x29\xd3\x8b\xfd\x7d\x19\x54\x53\xd8\x7e\x60\x89\xe5\x3d\xb1\x4a\x66\x2f\xf3\x41\xb1\xf0\x95\xac\x05\x4e\xbf\xd4\x71\xf7\x41\xe0\x1f\x1e\x18\xc0\xcb\x96\xc4\xbe\xda\x28\xf3\xff\x42\xef\xcf\x79\xb2\x2d\x7b\xff\x57\xf6\x7f\xf2\x99\xfe\x1f\x0e\xa5\x51\xde\xea\x6a\xf0\x86\xcd\xbf\x52\x13\x10\xe3\x4f\xe0\x5b\xe8\x93\xd3\x75\x3d\x38\xfc\x6c\x4a\x65\xbb\xf6\xf7\xe9\xf5\xe2\x2b\xab\x3f\x30\xd5\xbf\xcc\x67\x1b\x95\x0f\x6f\xdd\x1f\x4f\x30\x72\x92\xea\x3e\x9f\xbe\x56\x47\x15\xf2\x43\x69\x2c\x84\x0f\x07\x84\xa8\x05\xb9\x8f\xfc\xe3\xa3\x36\x43\x8b\x0a\x94\xd5\x29\xa0\x27\x92\x1f\x7d\xa7\x60\x6b\x9e\x3c\x51\xd1\x96\x82\x73\x4d\x69\x86\x9c\xd4\x54\x4a\xe6\xe2\xba\x93\xb7\x83\x2c\xe8\x5a\x5a\xf1\xc8\x8c\x3e\x3c\x3f\x3f\x7f\xbf\xce\xd8\x9b\xb4\xe2\xc1\x68\x42\x9e\x9f\x9f\x9f\xf3\xfb\x8c\xbd\x60\xd3\x2c\x29\x21\xff\x57\x30\xf2\xc5\xed\x5f\x04\xf3\x95\xaf\xf9\xe4\x79\x96\xb2\x9c\xbf\x67\x53\xae\xef\xbc\x78\xf7\xb6\x77\x29\xab\xb4\x6e\x7c\x28\x3e\xb2\x5c\x57\xf4\x22\xe1\xc9\x87\x32\xc9\xab\x39\x2b\x5f\x73\xb6\xd4\xef\xbd\x4a\x33\x53\xcb\x8f\x1f\xde\xbe\x79\x96\x65\xcf\x8b\x2c\x93\x40\xec\xfa\xe6\xe6\x9d\x57\x45\xb9\x7c\x99\x31\x41\xbb\xfa\xd6\x39\x13\xef\x58\x37\xdf\xb2\x59\x9a\xe8\xfa\xdf\xa6\x4b\xf6\xe1\x7e\xc5\x60\x20\xc4\xd3\x9f\x92\x25\x9b\xfd\x54\xcc\x98\x50\xc5\xc4\x75\x31\x33\xa3\xf2\x73\x92\x8a\xde\xfe\xb1\x66\x95\xe9\xe1\xcf\xd9\xfa\x3a\xcd\xdb\x5f\xa6\xa0\xf3\x5f\x7e\x90\x66\x3a\xfd\xe6\xf9\x2f\x3f\xc8\x5c\x6b\xd6\x8d\x9f\x13\xbe\x38\x67\xd7\xf6\x9d\x22\xcd\xb9\x75\xdd\x1d\xbe\xf3\x5f\x7e\x90\xa3\x55\x94\x66\xa8\xce\x21\x44\x47\x1a\xde\xcc\x3d\x31\x79\xe7\x0b\xc6\xb8\x6e\xfb\x07\x76\xc7\x3f\x94\xc9\xf4\xe3\xf3\x76\xfa\xcc\x3d\x73\xa3\x58\x4f\x75\x7b\x1b\xb2\xa2\x29\x9a\x61\xb2\xa4\x93\x93\xe5\xe9\x4a\x1f\xc6\x2f\xc7\x63\x29\xd5\x6e\xc8\x3d\x5d\x45\xcb\x98\x5c\xd3\x59\x74\x1f\x93\x2b\x9a\x88\x3f\x97\xf4\xca\x75\xad\xfd\xcf\x4e\x3a\x47\x97\xae\x8b\x2e\xa3\x69\x5c\xd7\x15\xba\x24\x53\xb2\xc0\xe4\x32\x9a\xab\xcb\x39\xb9\xc7\x64\x1d\xdd\xc7\x74\x41\xae\x31\x06\xea\xdf\x4d\xf3\xdd\x1c\x5f\x46\x37\x71\x5d\x17\xe8\x92\xdc\x90\x3c\xba\x89\x95\xc2\xde\x26\x1a\xea\xa5\x83\xf1\x8f\x8f\x02\xbf\x35\xab\x83\x41\xfd\xc9\x93\xe0\xc9\x13\x58\x69\x5f\xa2\xed\x1d\x1e\xb7\x66\xc4\xef\x01\xd9\xeb\xf5\x72\x29\xe8\x85\xb3\x00\x90\xc8\xc8\x34\x63\x49\x69\xdf\x84\x1b\x8a\x31\x4a\x24\xe4\x96\x21\x7e\x42\xdb\xd3\x0e\x50\xc7\x5d\x11\x10\xc5\xca\x40\x5e\xd1\xfd\xb7\xe7\xaf\x5f\xee\x7a\x17\x9e\xe1\xf2\x64\xfd\xc9\x8d\xbe\x55\xfe\x06\x4f\x3f\x20\x29\x1d\x8d\xc0\xc1\x53\x9a\x98\xf5\x0b\xe4\xa0\xf5\xa3\x40\x79\x68\xb1\xbf\xa1\xd3\x1f\x1e\xf2\xe0\x55\xeb\x0a\xab\xe0\x94\x95\x72\x83\x1b\xb0\x3b\x37\x0d\xc0\x49\xfe\x30\x4e\xbd\xef\x01\x94\xb5\x82\x81\xfc\x90\x2e\x59\xb1\xe6\xc1\x1a\xe5\x5e\x7b\x89\xc5\xf6\xff\x75\xce\x59\x79\x93\x64\xfa\x99\xbe\x56\x3e\xa0\xb6\x9c\x31\xba\xc6\xe1\x50\xb2\x63\x86\x0e\x27\x8f\x61\x07\x30\x39\x92\x7f\x0e\x31\xe9\x58\x09\x0e\x60\x37\x30\x39\x0c\x0e\x27\x87\x40\x13\x87\x93\x23\x98\xa8\xc3\xc9\x63\xa9\xd3\x40\xd9\x5b\xa1\xc4\xec\xf1\xdf\x90\xed\x9c\x94\x9b\x6e\x55\x39\x2d\xbd\x45\x52\x59\x3a\x3a\x49\x87\x14\x3e\x79\xb4\x15\xaa\x83\xf0\x87\x86\x14\x34\x35\xbe\x44\x75\xed\xfc\xcf\xff\x69\xd8\x39\x49\x68\xea\x75\xc4\x0a\x3c\xef\x0a\x1a\x52\xd1\xd4\xb3\x38\x3e\xbc\x62\x4b\x80\x16\x8b\x63\xad\xa2\xe7\x4d\xdc\x2f\x64\xe6\x37\x5d\xb0\x9d\x2b\x96\x21\x0f\x96\x2d\x24\xa1\x3c\xd3\x45\xa9\x8d\x15\x9c\x80\xd1\xe2\x23\xca\xeb\x3a\xb2\xfc\x37\xbc\xcb\x34\xbf\x29\x3e\xb2\x0d\x5f\x26\x15\x01\xbc\xd3\x27\xe7\x94\xc8\x8c\xfe\x39\xa5\x74\xa1\x0e\xb6\x45\xc9\xca\xa7\xe3\x07\x96\xcb\x9e\xee\xa6\xd5\x6e\x92\x95\x2c\x99\xdd\xef\x96\xeb\x3c\x17\xaa\x8f\x8c\x6a\xa5\x94\xce\xe4\x39\x26\x7c\xed\x50\x4a\x53\x55\x50\xb1\x63\x3c\xcd\x24\xd6\x4b\xe9\x2d\x19\x5f\x14\x33\x9a\x92\xd2\x4b\xca\x6b\x5a\x68\xc4\x99\x84\x96\xde\x8c\x65\xec\x3a\xe1\xc0\xcc\x12\x8d\x21\x7f\x8e\x12\x05\xd7\x57\x41\x2d\x15\xa5\x74\x85\xa7\x45\xce\xd3\x7c\x6d\xf4\xf7\xaa\x69\x44\x0b\x72\x76\xc7\x45\x03\x74\x3d\xb8\xf4\x2a\x96\x73\x5a\x7a\x97\xea\x6f\x52\x5e\x43\x20\xed\x6e\xa7\xc1\xe6\x7d\x3d\x14\x53\x3d\x14\x74\x26\x5b\xba\x53\x7a\xb3\xb4\x5a\x25\x7c\xba\x78\x79\x37\x65\x2b\xa9\xe4\x8b\x27\x12\xc1\xc5\x51\x66\x22\xab\x30\xd7\x2d\xbd\xe4\xaa\x5c\xaf\x20\xf5\x09\x3c\x95\x65\xe1\x9d\x9c\x2e\x14\xdc\x54\x66\xe1\x62\x3b\x79\x51\x2e\x93\x4c\x94\xb1\xf6\x60\x9a\x65\x73\x4a\x08\xd0\x0e\x67\xc1\x9c\xac\x61\xd4\x06\x46\x40\x39\xf0\xc1\x73\xe9\xa8\x2f\xbf\x6a\x9a\xb6\x97\xb2\x50\xd7\x45\xb2\x57\x6a\x2a\xd4\x73\x35\x21\x6b\xd9\xa5\xa6\x41\x0c\xa0\x40\x48\xd1\x18\x0a\xd6\x6d\x7d\x68\x91\x23\x1f\x44\x89\x81\x6e\xb8\xd0\x72\x03\xa6\x5d\x98\x05\x93\x32\x89\x45\x3a\xaf\xab\x1a\xc5\xdb\x79\xd3\x34\xcc\xbb\x2d\x93\x15\x5d\x2b\x34\x0e\xa7\x5a\x57\x2b\x96\xcf\x98\x54\xab\x1d\x32\xb7\x6e\xfd\x2b\x65\xd9\xcc\x21\x0b\xea\xb0\x3b\x36\x5d\x73\x50\xc1\x67\xd4\x99\x16\xcb\x55\xc6\x38\x9b\x39\x64\x45\x1f\x1a\x1b\x02\x07\x3f\xb4\x5d\xb8\xe9\x5c\xdd\x8b\x2b\x89\x7d\xf4\xd0\xec\x5c\x47\x45\x4c\x87\xdd\x79\x9a\x1d\x89\x8a\xa4\x16\x64\x17\x1f\x57\x09\x63\x74\x85\x3e\xa0\x28\xc6\x18\xef\x5c\xba\xee\xe5\x88\x52\xc8\xdc\x03\x83\x71\x49\x0a\xec\xba\xe8\x9a\x5e\x4a\x2b\xe3\x2d\xbd\xb7\x20\xf0\x96\xd6\xef\xee\x92\xbf\xc6\x6d\x47\x5e\x0a\x6e\x18\x49\x12\x27\x7a\x08\x35\x61\xc5\xde\xbc\x28\x5f\x26\xd3\x45\xbb\xc1\xe4\xf8\x81\x45\x3c\x1e\x12\x66\xca\x3c\x0c\x9c\xc2\xe4\x92\x35\x15\xdd\xb5\x29\xb0\xec\x17\x2d\x77\x2c\x92\x5a\x28\xf5\x05\xea\x80\x26\xab\x0d\xb7\xd5\x0e\xc1\x61\xcc\xe5\x2e\x07\xe0\x82\x82\x98\x05\x9e\x21\x16\x95\x31\x61\x24\x95\x8b\x40\xf6\x6c\x44\x69\xa5\xd6\x80\x5c\x28\x15\x50\xf6\x94\xae\x15\x3e\x81\xb6\x88\xb8\xae\x23\x93\xd9\xb5\x4c\x7e\x6a\xc6\x7d\x4a\x9c\xcb\xcb\xe4\x36\x49\xb9\x83\x43\xd5\x32\x93\xbe\x61\xea\xa9\x67\x03\xf9\x27\xb8\xe2\x25\x84\x41\x53\xbb\xf8\x34\x5c\x37\x52\x3f\xc5\xc1\x46\xd9\x43\x39\x2d\x14\xae\x27\x23\x05\x5a\xf7\x8a\xd4\x13\xb3\x51\x72\x93\xa0\x4a\x2e\x49\x0c\x03\x27\x46\xb3\x31\xd1\x5e\x9c\xf2\x50\x65\x44\x2b\x48\x81\x83\x02\xe1\xa6\x9d\xc8\x73\x38\xb7\xd6\xca\x90\x11\x73\x91\x5e\xfa\xb1\xe6\xdf\xf2\xd4\xbc\x65\xc0\x00\x44\x41\xb6\xb0\xc7\xb6\x20\x4f\xb6\xc2\x75\x5b\xbe\xde\x65\x74\x94\x13\xd9\x86\xa1\xb2\xf4\x71\xfc\x6a\x67\x0b\x2b\x12\xd4\x64\xb9\x17\x7e\x58\xb0\x5d\x5d\xf3\xee\xac\x60\xd2\xdf\x6a\x55\x16\x37\xe9\x8c\xed\x26\xbb\xdf\xc2\xc7\xdf\xee\xca\xb2\x1c\x33\x46\xab\x46\x8a\xdb\x0c\xe5\xa4\x6d\xbb\xe6\xc4\x5d\xb9\x25\x29\xce\xd8\xf6\x07\x9b\x95\x02\x21\xf6\x07\x6b\xa5\x4e\x0f\x52\x29\x2c\x94\x38\x0e\x0b\xc9\xba\x51\x19\x01\x6d\xac\x33\x2e\xb6\x3e\x31\x2d\x24\x2d\x90\xd2\x13\x64\x46\x19\xfc\x79\x53\x4c\xcd\x82\x1e\xd9\x72\xc4\x1a\x5f\x49\x95\x6a\x74\xf1\x66\x33\x70\x50\x04\xe8\xcb\x06\xd4\x0c\xa6\x6c\x98\xf1\x60\xcb\x77\xd5\x82\x1a\x2a\xbe\xa5\xae\x77\xad\xe1\x4d\x08\x84\x37\xc5\x34\x60\xd1\x24\x6e\x76\x7c\xf0\xfc\x70\x5d\xc4\x65\x26\x9a\x37\xc5\x94\x32\xb0\x8a\x1f\xb4\x4f\x94\x15\x4f\x3e\x3b\x88\x09\xf7\x92\x39\x67\xa5\xbc\x3e\x8c\x55\x1c\x1a\x2f\xef\x5f\x4a\x13\xb0\xc1\x99\x37\xf5\x3f\x6b\xeb\x67\x9e\x62\xff\x69\x91\xd7\xf5\x43\xb3\xc3\x61\x22\xa9\x91\x4b\xca\x53\x9d\xc3\xd4\xd9\x6f\x53\xde\x16\xf8\xd1\x04\xdd\xb5\xd5\xd2\x48\xf7\xcd\x29\x8b\x82\x3b\x4d\x4c\x98\x61\xb5\xef\x24\x3a\x95\x49\x7f\xc4\x38\x12\x7b\x27\x53\xe0\x07\x75\x96\xc7\xb4\xe3\x31\x8b\x0a\x58\x73\x65\x0f\x33\x48\xa6\x99\x1b\xb2\x4f\x02\x5d\x18\x5c\x62\xc0\x1c\x4a\xab\x9f\x92\x9f\x10\x33\x81\x44\x4a\x9b\xdc\xf3\xad\x44\x81\xbb\xa5\x4a\x2a\x78\x32\x1e\xa7\xa7\xcc\x80\x96\x00\xda\x8b\xca\x2a\x91\x5a\xc8\x45\x8a\x31\x45\x69\x4c\xa4\xda\x40\x47\x3e\x29\x77\x7a\xcf\xb9\x79\x38\x21\x65\xd3\x06\xaa\x01\x09\x27\x1a\x22\xe4\x41\x5c\x06\xcf\x2d\x3e\xf4\xdc\x48\x08\xa5\xa5\xf0\x16\xd4\x5f\xbb\x26\x5a\x22\xf0\xb6\x83\x16\x7b\x4f\xee\x3b\xd7\x37\xe4\x3e\xaa\x62\x7a\x03\xea\x58\x96\x80\xb3\x21\x6d\xf5\x54\xbd\x6f\x72\xc4\x5a\xaf\x36\x6e\x0f\x78\xb0\x0f\x0d\x7b\x0f\xb3\x57\x1f\xbe\x8e\x38\xf8\xe5\x51\x7a\x53\xd7\x03\x55\x52\x4a\x11\xb7\xdb\x55\xd7\x1c\x20\x38\x30\x6e\x08\xf3\x96\x49\xf9\x71\x48\x1a\x2b\x91\xdf\x05\xee\x0e\x07\xef\x22\x46\xee\x71\x80\x98\x77\x79\x09\xe3\x75\x79\x49\xef\x49\x05\xab\xaa\xae\x11\x13\x03\x33\xd0\x2e\x8c\x09\xdb\xaa\x62\xdc\x62\xc2\x44\xeb\x12\xd0\xc1\x36\x9b\xf7\xa0\x84\x64\xc0\x9a\x86\xbc\x44\x77\xf6\x26\xc4\xba\x88\x92\xad\xba\x13\x61\xde\x33\x7b\xd3\x44\xef\x44\x75\xe2\x0e\xed\xba\x15\xb4\xc0\x9c\x82\x53\xdd\xa1\xb5\xb9\xdd\xee\x9e\x87\x26\x15\x95\x38\x2c\x82\x02\xe8\x10\x0d\x08\x5e\xf3\x2d\xf0\x62\xe5\xed\x68\xde\x17\xdb\xdf\x97\x62\x18\x6e\xbb\xc3\xe7\x90\xdb\x4f\x28\x84\xe4\xd6\x6c\xfb\x36\x5f\x31\xf9\x75\x4d\x61\xb1\x23\x86\xe1\x23\xbb\xaf\x06\x28\xd0\x82\x1b\x2a\x65\x5a\x0d\xae\x33\xba\xb5\x01\x31\x25\xbb\x61\x65\xc5\x10\x26\x9b\x8b\x9c\xb7\xa8\x44\x52\xd8\x73\x6f\x55\xac\x90\xdc\x9f\xa9\x44\x1d\xdd\xa5\x9c\xdb\xeb\xbc\x3d\xcc\x6e\x57\xb7\x68\xae\x3c\x02\xa2\x1f\x88\x95\x10\x8f\x3e\x58\xeb\x22\xf8\x48\x80\xed\xf5\x9d\x17\x54\x7a\x38\x76\xa3\x53\xed\x01\x87\x50\xbf\x61\x23\xa6\x12\xd5\xc1\x4f\x79\x5b\xb7\x46\x5e\x74\xa4\x0e\xdc\xea\x0a\x40\xb8\x25\x35\x8c\xbe\xa0\xd0\xdc\xf9\x19\x26\x23\x86\x3b\x03\x0b\xec\xda\x51\x3b\x44\x03\x52\x69\xb4\x45\x99\x12\x0c\x62\x54\x80\xc7\x8e\xcb\x16\xb6\x4c\x87\x14\x94\x31\xe5\xb8\x21\x15\x2f\x56\x41\xe7\x2c\xc7\x74\x61\xa2\x22\x1d\x7a\xed\x8a\x26\xb1\x25\x77\xba\x7a\x07\x93\x7a\x87\xdc\x72\x32\x5b\x83\x90\xa2\xe5\x26\xc9\x1a\xb2\xb1\xfd\x1c\x1c\x75\x80\xf2\x52\x05\xed\xb4\x88\xe5\xed\x36\x22\x95\x00\xb8\x7a\xdf\xac\x04\xa5\xd2\x13\xe4\x98\x1a\xb5\x24\x27\xe9\xa7\x94\x8f\xd1\x28\x35\x08\xae\x45\xbf\xbf\x2d\xd4\x54\x71\x46\x27\x27\x7b\x7b\x85\xde\xe8\xf7\x07\xa6\x88\x49\x45\x93\xfe\xe0\x80\xb8\xa5\x94\x26\x9e\x14\xc0\x06\x2b\x17\x90\x4b\xa4\xed\x41\x3f\x3b\xa5\x86\xe2\x0c\xc8\xa9\xb2\xc0\x11\x47\xeb\x20\x8e\xc4\x9b\xd7\xb7\x5b\x05\x44\x96\xb5\x76\xdd\xac\x4b\xbc\xa7\x89\xd1\x5f\xda\xca\xdb\x7b\xe0\xf5\xd2\x7b\xbf\x2d\xd4\xfe\xc2\xba\xdb\x68\xdb\xc3\xfa\xab\xeb\x6a\x34\xfe\xd7\x28\xdb\xb4\xd3\xf0\xf2\x7e\xb7\xe2\x09\x07\xfb\xfb\xee\x6d\xca\x17\xc5\x9a\xef\xc2\xe7\xbb\x45\xb9\xab\x5a\xe0\xfc\x37\x1a\xdc\x34\x0d\x91\x56\x8c\x9e\xff\x50\xeb\x34\xbb\x75\xe6\x4b\x39\xf3\xa5\xb1\x78\xf5\x66\xbe\x8c\x25\x16\xf2\xc6\x2c\x9a\x25\x99\x76\x27\x4a\x65\xbc\x84\xc6\xa7\x76\x33\x95\xdc\x48\x25\xf6\x6b\xd3\x14\xae\x8b\x1c\xf8\x0d\xeb\xab\xae\x1d\x6d\x2f\x81\x6b\xec\xba\x45\x5b\xab\xeb\xf2\x53\x5a\x58\xc5\xb9\x2e\x92\x60\x7c\x72\xb7\x9e\x48\xd0\x3d\x43\x9f\xc1\x83\xa5\xfc\xc8\xc4\xa1\x24\x51\xdc\xa8\x08\xd1\x36\x76\x05\x4b\xca\xae\x46\x68\xeb\xf0\x44\x1b\x2f\x90\xd8\x69\xea\x8b\x4d\xb7\xe6\x2f\x60\x18\x56\x9f\x3d\x19\x39\xda\xed\x38\xdc\x0c\xdb\xe6\xc0\xb7\x81\x65\xbc\x52\x6f\x20\xc3\x78\xa8\x61\xb5\xf0\x6e\x97\x19\xeb\xdd\x5e\x5b\xa0\x5c\x9c\x81\x65\xca\x62\xca\xea\xc4\x15\x0b\x95\xef\x71\x4c\x56\x0d\x99\xa7\x79\x5a\x2d\xb6\x20\x2f\x6c\x25\x2b\x2e\xc9\xaa\x93\x92\xc1\x26\x2b\x2e\x95\x6c\x7b\x8f\x61\xc7\xdc\x74\x46\xbc\xb4\xe6\x55\x70\x36\xb5\x09\xc1\xe4\x19\x2a\x45\x13\x87\x92\xa6\xfe\x07\x9b\x28\x69\x10\x9a\xa7\x44\x77\xb9\x55\x4a\xe4\x96\x3d\x24\xa5\x39\xcc\xba\x68\xa5\x16\xdf\x69\xd3\x6c\xf0\x85\x34\x13\x82\x34\x53\x9c\x20\xe1\x9c\x2d\x57\x70\xa8\xab\x25\x2c\xd8\xd3\x6c\x52\xb3\xdd\x3b\xbb\xb2\xf8\x41\x6f\x18\x03\xb1\xb1\x21\xed\x76\x36\x28\x89\xda\xbe\x06\x79\x43\x8c\x11\xd6\xa2\x14\x3d\xf5\x4a\x70\x88\x61\x65\x0d\xda\x30\xdc\xf0\xd0\x1c\x23\x04\x0f\x8d\xce\x50\x73\xad\x95\xa8\xf7\xeb\x9c\xa7\x4b\x46\xf3\x36\xbf\x9b\x51\x01\x9d\x12\x8c\x61\xfd\x77\x77\xe9\x6e\xe9\x60\x04\xce\xa9\x0f\x4d\x2c\xfe\x21\xb0\x15\xed\x2e\xae\xce\x21\xc3\x46\xb3\x96\xc5\x6c\x9d\xb1\x01\x43\x93\x7c\xa0\x9b\x1c\x76\x2f\xa9\xd0\x37\xa7\x70\xfe\x13\x72\x19\x17\xbb\x11\x4d\xd6\xbe\xb2\xc9\xd2\x7f\xff\xfb\x9a\x95\xf7\xbb\x25\xfb\x63\x9d\x96\xac\xda\x4d\x76\x6f\xd3\x7c\x56\xdc\x02\x77\xdf\x4d\x76\xf5\x97\x4e\xab\x24\x22\x86\x9b\x00\xfe\x45\xce\x3a\x97\x21\x5c\xb3\x36\x0b\xb1\xfc\x3e\x94\x7f\x64\x6a\xd9\x4f\x0c\xc3\x8d\x4e\xf3\x9a\x5b\x3d\x21\xe9\x16\x1b\x68\x41\x95\xb2\x44\x12\x20\xe1\x7c\x9a\x70\x52\x51\x89\x68\x44\xd6\xb4\xd4\x48\x3f\x24\xa3\x0f\x0d\x99\xd2\xac\x05\x69\x9c\xd3\xac\x7f\x78\xb3\xa0\xf3\xf6\xf9\x8c\x2e\xa4\x34\x90\x55\x63\xb0\xf0\x92\xe5\xc0\x66\x65\x78\x2f\xe7\xe4\x70\x22\x6c\xa5\x63\xf6\xf2\x62\x06\x27\xd2\x0d\xb9\x19\xda\x92\xc9\x24\x0d\x62\x1b\x08\x0c\x4c\x8e\x58\x43\xee\xa9\x34\x60\x8f\x26\xa4\x2a\xa7\xe2\x4f\x5e\xe4\x53\x26\x7f\xbc\x85\xd9\x17\x9b\xda\x56\xd9\xba\xb6\x8f\x5f\xc0\xea\x49\x51\x49\xcb\xba\xce\xb1\xda\x7f\xa9\x23\x73\xe4\x48\x8f\x32\xa3\xd7\x00\x73\x26\x1c\xf4\xd7\x54\xe8\xae\xf7\x18\x15\x94\x47\x69\x2c\x36\x95\xd7\x8c\x3f\xe3\xbc\x4c\xaf\xd6\x5c\x70\xd6\xce\x35\x02\x28\xdf\x44\xec\x1c\xad\x7b\xa4\xc0\x3b\xa5\xb7\x60\xc9\xcc\x4b\x56\x2b\xa6\x00\x04\x50\x82\xbd\x55\x52\xb2\x9c\xff\x54\xcc\x98\x57\xb2\x65\x71\xc3\xf4\x93\x76\x03\x7f\xd5\x1b\x1a\x4a\x59\xc8\xc6\x8e\x13\x6c\xac\x08\x21\x70\x06\xe6\x20\xcc\xa2\xa9\x36\x75\xc4\x75\xad\x3f\x0b\x4c\x80\xbe\x84\x5a\x1d\x74\x50\x16\x4b\xe2\xd2\x9b\xe7\x5e\x9a\xa7\x32\x47\x55\x43\x6e\xe9\xfe\x6f\xd1\x45\x75\xb1\x7e\xf5\xf2\xd5\xab\x8b\xbb\x67\x93\x78\x5c\xf7\xae\xbf\xd9\xbf\xee\xd9\xce\x25\xcb\x1e\x8d\x04\x45\x48\x46\xed\x48\x73\x94\x41\x3a\x2a\xe9\x95\xe5\x6a\xbd\x84\x38\xa6\xd1\x0d\xfc\x41\x4e\x02\x9e\x94\x62\xeb\x50\xd7\xe0\x85\x5d\xd7\x9a\xb0\x3a\x89\xbc\xcf\x26\xae\xcb\xf7\xa4\x11\x0c\x37\xa2\xe5\xf4\xd2\xde\x3f\xfd\xfe\x87\x58\xd7\x81\x73\xe8\x1d\x79\xbe\x43\xec\xed\xd4\x25\x91\x0d\x09\x26\x84\x17\xd2\xc7\x61\x73\xfb\x59\xd8\xc8\x9d\xa4\xef\x3a\xde\x9b\x25\xfb\xe5\x80\x9d\x4e\x40\xf4\x47\x6c\x0c\xdc\x58\x56\x16\x07\xf2\x5e\xdc\x10\xb1\x56\xcf\x79\x32\xfd\x38\xe0\x5c\x77\xe9\x2d\x59\x79\x2d\xdd\x74\x6c\xdb\x08\x82\x08\x2a\xb3\x4d\x15\xaa\x99\x5c\xa6\x32\xc3\x32\x6f\x08\x4b\x86\x93\x8e\x5f\x7a\xe2\x89\xc1\x40\x24\xcb\x9e\x5b\xae\x2d\x84\x4c\xcb\xd0\xa5\xb7\x4c\x54\xe6\xf9\xee\x99\xbc\xd9\xe5\xeb\xe3\x27\x41\x29\x58\xec\xd5\xba\x41\x62\xdb\x0a\x2e\xec\x63\x76\x73\x72\x0f\xd8\xf4\x69\x59\x0d\xe1\x67\x40\x01\xec\x0f\x34\xc1\x0d\xc9\x92\x4f\xbe\xb2\xe7\xe3\x86\xb0\x3f\xb6\xe4\xa1\x6e\xe9\x6f\xcc\xc6\x08\xa6\x29\x68\x13\x11\xf4\xda\x29\x94\x6a\xd7\x2d\x4f\x79\x18\xa9\x1d\x69\x1c\x44\xb1\x28\xde\x76\xc1\xeb\xf5\xd2\xcc\x4a\x5d\x6f\x4e\xa0\x9c\xf8\xa0\x22\x55\x51\xf2\xa0\xf4\xc4\x1f\x08\xe8\x9e\x32\x71\x05\x3f\x1a\x72\xe9\xb1\x3b\xce\xf2\x19\x85\xc5\xa8\x7e\x5b\xf5\x29\x18\x32\x69\xb1\x01\x56\x67\xbb\x90\xd7\xf5\x43\x43\x2a\xea\x93\xf5\x26\x70\x56\x46\x47\x3e\x58\x40\x9c\xab\xa2\xc8\x58\x62\x71\x8e\xc4\x75\x51\x46\x93\x4e\x61\x95\x2a\x6c\x3c\xc6\x64\x83\x01\x25\x75\xbd\x44\x09\xae\x6b\x94\xd0\x87\x06\x93\x8a\x52\xba\x86\x34\x16\x30\xaf\xd5\xde\x1e\x3e\xa9\x4e\xd7\x27\x95\xc4\x3f\x96\x8c\x1e\x31\xda\x05\xe1\xb2\x32\x9c\xe6\x94\x45\x3c\x26\x8e\xb1\xb8\x39\x23\x2a\xb6\x0c\xc9\x88\xd2\x5c\xb4\x0e\x52\x7c\xa1\x4b\x2f\xad\x7e\xce\x92\x34\x57\x11\xc8\xb9\x68\x42\x4a\x61\x11\x7b\x69\x05\x7f\x51\x8e\x31\x0e\x51\x49\x13\x51\x62\x41\x53\xd7\x1d\x75\x5f\x28\x71\x18\xc5\x41\x5a\xd7\xfd\xe2\x4a\x1c\x96\xc1\x43\x43\x52\x3a\xf2\x89\xf8\x9c\xea\xe9\x40\x19\x29\x48\x8e\x71\x9b\x9c\x52\x34\x07\x5e\xc9\x2d\x34\xb1\x76\xfe\xd0\x03\xbb\x5b\x25\xf9\xac\x08\x94\x8a\xe1\x8c\x91\x62\x46\x63\x80\xb3\x2a\xc5\xc3\x25\xc2\xd8\x53\xb1\xfe\x68\xff\xe2\xc5\xfe\x35\x71\x1c\x4c\xd2\xea\x3d\x4b\x66\xf7\x42\xe2\x31\xa1\xa6\x74\x08\xba\xaf\xc2\x88\x45\x9d\x17\x5d\x43\x49\x43\x3a\x1d\x1b\xf2\xc3\x37\xe0\x21\x23\x21\x4d\xb4\x29\x4d\xbe\x1f\x8b\xd1\x37\xa2\x44\x81\x88\x00\x4a\x39\x1e\x92\x3c\xa8\xa4\x73\xcd\x0f\x1c\x8b\xe6\x61\x27\x69\x2f\x02\xec\xba\x4a\xc7\x28\x31\x38\x34\x88\x76\xbe\x5c\xae\xf8\xfd\xb6\x76\x76\xb2\xe0\xca\x06\xfb\x6d\x42\x3e\x22\x13\xf0\xbc\xbc\x49\xb2\xde\x3e\x4e\xa8\x04\x0f\x52\x6d\x00\x07\x10\xf8\xd9\xe0\x0d\x36\x69\x32\xce\x91\x9c\x02\x98\xb9\x90\x61\x40\x98\xa5\x81\xe6\x3b\xc9\x4f\x4b\xd7\x1d\xf9\x82\x22\xd5\x98\x44\x79\x4c\x72\x22\xfe\xe0\x93\x7c\x3c\xc6\x27\x60\x70\x10\x9f\x29\x43\xa0\xce\x5c\x38\xf0\x81\xca\xe5\xa3\x19\x69\x43\x78\x99\x2e\x3f\x25\x5d\x1c\x27\x40\x42\x0f\x68\x29\xe5\x16\xe0\xb1\xc8\x32\xf9\xc8\x7a\xf2\xcb\x4e\xa1\x57\xd7\x51\x9b\x47\x5b\xab\x5a\xe8\xa5\x15\xbd\x1f\x6a\x71\x53\x4a\xa4\xb1\xfc\xda\xd6\x26\x22\x16\x07\xcc\xe4\x76\x2f\x09\xc3\x98\x94\x0d\xd1\x7e\x81\x7d\xdf\x97\x4e\xab\x79\xb8\xe7\x07\x6b\x4d\x14\x0c\x40\x73\xa0\xaa\xad\xe6\x8d\xb1\x36\xaf\x8a\x99\x20\x69\x67\xf4\x61\x8c\x19\xe0\x01\x50\x1e\xe5\x71\x6b\xa7\x56\x50\xea\x29\x61\x0d\xb9\x2e\xd9\x6a\xa3\x55\xad\x03\x6a\x14\x2b\x2c\x1e\xd6\x42\x09\x8e\xca\x93\xf4\xb4\x38\x49\xc7\x63\x3c\xe2\x08\x4e\x66\x52\x2c\x53\xf2\x28\x34\x02\x71\xcf\x86\x8b\xe9\x8a\x4f\xcb\xeb\x47\x70\x63\x3a\x21\x15\x95\x10\xf8\x86\x8e\xf2\xb6\x27\xc5\x69\x7e\x52\x8c\xc7\x58\xb1\xc3\x94\x8a\x2a\x8b\x98\x14\xa4\x84\x30\x04\x95\x3d\x41\x62\xd0\x03\x35\x15\x8a\x3b\x7e\xee\x03\x63\x27\x91\xc2\x35\x8a\x09\x68\x2d\xeb\x74\x16\xf8\xa4\x5a\xaf\xc4\x56\x29\x58\x35\x98\x6c\x75\xd6\x02\xe6\x3a\xcf\x23\x79\x65\x0e\x70\x63\x5a\x6e\xdc\xc2\x44\xe9\x14\xce\xf7\x52\x90\xec\x4a\x5f\xd0\x5d\xb9\x91\xd8\x7d\x65\xce\x0e\x05\x9d\xec\xbe\x48\x38\x53\x58\xea\x8a\xbd\x48\xc6\xa5\x2a\x36\x48\x25\xbb\x4e\x7f\xbf\x98\x45\x86\x2f\x39\x63\x3e\x76\x62\x27\xa6\xdc\xe3\xc5\x9b\xe2\x96\x95\xcf\x93\x8a\x21\xdc\x48\xdb\xd1\xdd\xa6\xbd\xbf\x95\x90\xa4\x22\x6b\x92\x91\x29\x81\x14\xa6\x64\x45\x96\xe4\x06\xa2\xea\xae\xc8\x25\x75\xaa\xf4\xcf\x3f\x33\xe6\x8c\xfd\x47\x82\xa5\x8a\xc6\x92\x5b\x7b\x2b\xa6\xb2\x65\x91\x73\xba\x66\x08\x93\x77\xf2\xcf\x33\xf9\xe7\xa3\xfc\xf3\x61\x58\xa7\x16\xdb\x1a\xee\xba\x68\x0e\x90\x46\x93\x86\x3c\xa7\x0f\x4d\x7f\x0f\xf6\x56\x10\xe6\x7b\xfa\xd6\x5b\x15\x2b\xf2\xb3\xf8\x2b\xb6\x72\xbf\xeb\x1f\x2f\xe8\x5b\xb5\xe3\xfb\x89\x6e\x5b\x3a\x13\x62\x11\x59\x79\x9a\x9f\x94\x52\xec\xb2\xa8\x8c\xed\x90\x7c\xcd\xf3\xf7\xfc\x86\xbc\xa6\x0e\x24\xa9\x65\xb3\xba\x02\xaf\x62\x36\xab\xe1\xb4\xa8\x4e\xd6\xbc\x98\x17\xd3\x75\x05\xbf\x56\x59\x72\x5f\x4f\x8b\x9c\x97\x45\x56\xd5\x33\x36\x67\x65\x3d\x4b\xab\xe4\x2a\x63\xb3\x5a\xe2\xbc\xd5\x69\xb5\x4c\x56\x75\x56\x14\xab\x1a\x12\x50\xac\x32\x56\x17\x2b\x96\xd7\x25\x4b\x66\x45\x9e\xdd\xd7\x6a\x7b\x3d\xab\xab\x69\xb1\x62\x33\x87\xbc\xa1\x4e\x74\x71\x71\x77\x30\xb9\xb8\xe0\x17\x17\xe5\xc5\x45\x7e\x71\x31\x8f\x1d\xf2\x8a\x3a\x28\x0c\x2e\x2e\x2e\x2e\xbc\x3a\xba\xb8\xb8\xdd\x8b\xeb\xe8\xb7\x8b\xc9\xde\xc5\xc5\x5d\x32\x89\xf1\xd8\x21\x7f\x52\xe7\xe2\x22\x72\xc6\x6f\xc6\xce\x23\xe4\x8c\x5f\x8d\x1d\x0c\x69\x2b\xe0\x3a\x7a\xf4\xdb\x37\xf5\xe8\xdf\x71\x48\xb1\xba\x13\x06\xdf\xa2\xb6\xc4\xdf\xc4\xdf\x6f\x63\xfc\x08\x7f\x5b\x5f\x38\xfd\x07\x17\x8e\x78\x72\xe1\xd4\xaa\x5c\x5c\xab\x52\x2e\x2e\x62\x87\xfc\x48\x9d\xa0\xad\xf0\xe2\x02\x21\xf4\xf5\x45\xe3\xba\xff\x04\xe1\xe8\xe2\x22\x8e\x6b\x67\xfc\xe7\xd8\xc1\x8f\x70\xed\x3d\xc2\x17\x17\xa2\x6a\xf2\xbd\x9d\x56\xe6\xcd\xd8\x19\x3b\x04\x92\x76\xfc\xc3\xbe\xef\xfc\x06\x6d\x1c\x43\xc1\xbf\xa9\x42\x63\xac\x6b\xc1\x8f\x64\x1f\xc6\xdf\xa8\x8f\x7f\x1d\xf8\xf8\x11\x91\x7f\x1c\x4c\xfe\x18\x7a\x8c\xa2\xb3\xf1\xbf\x45\x13\xdf\x8c\x1d\x6c\x5e\xfd\xa5\xd7\xbc\xfa\xcc\xc1\xe4\x5f\xf6\xcd\x1f\x31\xf9\xa1\x5f\xde\xab\xb1\xf3\x8d\x83\xc9\xdf\xe8\xc3\xeb\x17\x41\xe7\xd9\x5f\xd4\xe8\x3a\x98\x3c\x7f\xf3\xec\xfc\xbc\xfb\xf4\xe2\xc2\x6b\x9f\x7f\x78\xf6\x43\xf7\xa9\x7c\x54\x47\x8f\x62\xf1\xf8\xd9\x87\x0f\xef\x83\x5e\xbd\x7f\x62\xf2\xf3\xf9\xcb\x7f\xbc\x78\xd7\x7f\xf0\x23\x26\xcf\x7f\x7c\xfd\xa6\xd7\x98\x00\x01\xe1\xc2\xa6\xa4\x16\xdb\x8e\x3a\xe7\x0b\xf1\xff\x9e\xb8\xc0\x7b\x68\x2a\xf6\xef\x75\x31\xdf\x03\x73\xa1\xa4\x08\x35\x5a\xec\x86\xe5\x75\x31\x9b\xd5\x08\x45\xe3\xbd\xb8\xc6\xe8\xe2\x62\xf6\x08\xe7\x75\x4b\x94\xea\x81\xba\xbe\xb8\x98\x8d\x71\x8d\x0d\xb5\xc1\xec\x3b\xa9\x83\x89\x50\xd5\x7b\x3d\x15\xc4\xfe\x7a\xec\xe0\x6f\xd4\x2b\x39\x63\xb3\xea\x79\x91\x73\x76\xc7\xfb\x7d\x13\xc5\xc9\xb9\x0b\xda\x56\xb1\x3f\xea\x6b\x5e\x67\xb2\x47\x6d\x07\xbb\x7d\x40\x61\xb0\x77\x71\x31\xc3\x21\x34\xdd\x6a\x18\x0a\x69\xf4\xdb\x5e\x5c\x7f\xa3\x9a\xd8\x90\x6f\xe8\xfe\x8f\x1f\xde\xbe\xf9\x66\x3f\x25\x7f\xa7\xfb\xa2\x81\x69\xbe\x5a\x73\xc5\x57\x6a\xd1\xae\xa4\x64\x49\x7d\xb5\xe6\xbc\xc8\xb1\x78\xef\x9f\x74\xff\xb7\xc5\xc5\x4c\xfc\xfc\x2f\xba\xff\x5b\xf4\xdb\x43\x3c\xbe\x78\xb8\xa8\x1e\x5d\x44\x79\xc2\xd3\x1b\xb6\x7b\x71\xbb\x4f\xfe\x2a\x4b\xfb\x0b\x8a\x04\x23\x18\xe3\x1a\x5d\xdc\x8e\x71\x7d\xe1\xe9\x1b\xf8\x9b\x7d\xc2\x18\xdd\x8f\xc6\xff\x8e\xf7\x09\x67\x1d\x5a\x83\xc5\x15\x5d\x5c\xcc\x92\xbd\x79\xfc\xe0\x93\xe3\x06\x7a\x11\xd6\xb2\x8b\xb8\xf6\xa0\x07\x62\x4d\x94\xdb\x3c\x79\x9d\xc9\x9d\x33\xe6\x7b\x00\x08\x6e\x94\x80\x11\xcd\xeb\xba\x0c\x79\x90\x9f\x4e\xc2\x01\xec\x74\x94\x8f\x25\x82\x78\x30\xf8\xf0\xec\xcc\x9f\xd4\x80\x36\x4e\xfc\xc9\xc1\xa1\x9b\xd7\x12\x5c\xbc\x21\x39\xa3\xfb\x28\x12\xdc\xee\xce\x9f\x5f\xdc\x7d\x37\x8f\xeb\xdf\xf6\xc2\x8b\x19\xae\x7f\xdb\xfb\x46\xf1\x41\xf5\x64\xef\x62\xfd\xea\xd5\xab\x57\x62\x18\xf6\xaf\x49\xca\x86\x05\x10\x0f\x9d\x8b\x09\x9c\x0e\x84\xce\xff\xf5\x7f\xfe\x1f\x4e\xc0\x4c\x0a\xa6\x3d\x1f\x8f\x9d\x8b\x0b\x67\xcc\xe0\x88\x56\x34\xed\x19\x37\xfe\x2e\x7b\x3e\x36\x86\x41\xe4\x1f\xe3\xb1\xb3\xeb\x04\xf2\xf5\x86\x14\xcc\xde\x90\x2e\xc4\xce\x36\x61\xf4\x92\x0d\x78\x03\x40\x20\x3d\xf3\xb4\xc0\x70\x5d\x67\x9e\xb2\x6c\x26\xa3\xbc\xa9\x34\x10\xfe\x94\x2c\x59\x4f\xa8\x93\x87\x59\x5a\x06\x4e\x6b\x33\x73\xc0\xf4\x1d\x38\x19\xbb\x66\xf9\xcc\x51\x46\x6b\x8d\xc7\xf4\x96\xbe\x90\x9a\xe6\xad\x07\xab\x52\x7c\x51\x61\xd2\xbd\x7a\x1b\xd9\xd7\xda\x2a\xd3\x9a\x28\xa5\xb1\xfb\x1d\xc3\x0f\xbf\xd3\x07\x28\x37\x78\x3b\x9c\x8e\xea\x67\x55\x2d\x23\xaa\x5a\x8e\x71\xb3\x55\xaf\x65\x96\x5a\x7b\xc2\xa2\x52\xe9\xb0\xe3\x71\x7c\x82\x4f\x8c\x02\x5b\xee\xf9\x8d\xe5\xcb\x53\x31\x95\x52\x52\xfb\x6a\x90\x4a\x69\x30\x2b\xa1\xb9\x48\xa7\xf6\xe2\x36\x67\xe5\x8b\x56\x4f\xe1\x21\x37\xdd\x09\x9e\x4a\xaf\x43\x70\x5c\x37\xca\xfd\xc8\x32\x20\x8a\x6d\x9f\xd8\xd2\xbc\x74\xdd\xa7\xf2\x8f\x0f\x97\x26\x5f\x93\x74\x83\x72\x5d\x84\x44\xc1\x9d\xca\xea\x9a\x07\xb7\x42\x4f\x9e\xb9\xee\x02\x71\x4c\xb8\xd8\x6d\xcc\xc8\x52\x66\x60\xf7\x55\xb9\x68\x4e\xff\x0a\x59\x9a\x85\x2e\x2c\x14\x92\x82\xce\x23\x3f\x86\x77\x9e\x52\x51\x17\x98\xe7\x51\x46\xc1\xb6\xaa\x8c\xb4\xdf\xdf\xbf\x9e\xa1\xa2\xcd\x13\x0f\x0d\xc9\xbc\x74\x46\x29\x2d\xda\xfc\x59\xa0\xfa\x66\x98\xe4\xe6\xb0\xf7\x1a\xac\x18\xd7\x03\x45\xb9\xee\x15\xe2\x24\xc3\xae\xfb\xb9\x72\x20\x81\x7c\x74\x10\xeb\xe7\x9a\xc4\x72\x62\x37\xb1\xfa\xfe\xfe\x43\x72\x2d\x08\x57\xc2\x50\x8a\x16\x42\xe7\x0e\x63\xec\xba\x65\xf7\xcd\xe7\x59\x52\x55\x3f\x41\x8a\x20\xbe\xe5\xc9\x67\x6b\x33\x6f\x8a\xde\x90\xbc\x81\x53\xad\x3f\xaa\xc4\x75\x47\x1f\x23\x26\x56\x67\x2c\x36\xe9\x37\x75\x3d\xba\x91\x11\x36\x72\xdb\x0e\x13\xd1\x5a\x82\x61\x07\x3b\xbc\xe6\xe4\xcc\xdd\x53\x26\xa8\x8b\x88\xad\xeb\x4b\xd7\xfd\xc5\x94\x05\x04\x8d\xa6\xb4\x67\x04\x77\xd2\x99\x83\x71\x38\xa5\x53\xb3\x37\xcd\x19\x49\x19\x80\x6a\xf7\x5f\x24\x53\x7a\x89\x49\x45\xd1\x8a\x26\xa2\x4c\xad\xb1\x56\x7b\x7b\x27\x78\x05\x6e\x41\x7f\x71\xc6\x53\xd1\x9b\xf1\x15\x43\xe2\x0e\xde\xb9\xa7\x2b\x05\xd1\x4e\x20\x5d\x19\x63\xba\x4d\xae\x7b\xcf\x10\xb7\x0c\xeb\xb8\xae\x79\xd3\x3a\xcd\x5b\xa3\x79\xed\x81\x35\x58\x86\xcf\x15\xe5\xb3\x2c\x43\xf7\x30\x8e\x72\xd1\xdf\xe1\x87\x8f\xf2\xe8\xa8\x51\x87\x99\x0f\x53\x4a\xe9\xa5\x98\x30\x69\xac\xef\xf5\xb8\x31\x1e\x75\x6b\xc4\x4c\xcf\xff\x41\x9c\x6f\x7c\x07\xab\x75\xdb\x2e\x66\xb1\x45\x50\x60\x7b\xed\x86\xbc\xeb\xa9\x6d\xd9\x55\xa5\x4b\x92\x18\x04\x7c\x96\x7b\xd3\x64\xba\x50\x10\x59\x06\x09\x98\x47\xcc\xab\x16\xe9\x9c\x23\x0c\xe8\xb1\x30\xfd\x34\xb5\xd8\x47\xc6\x6c\x87\xac\xe8\x32\xa6\xa3\x09\x61\xed\xf3\x29\x6b\x2d\xa3\xb3\xfe\x11\x89\xe1\xd0\xfa\x64\x50\x3a\xe5\x31\xc4\xb1\xc5\x24\xb5\x31\xc6\x8c\x98\x3d\x13\x10\x72\x33\x7c\xe0\x01\xcc\x42\xec\x67\xad\xe6\xce\xd9\x26\xd3\x54\x9b\xc2\xda\xc1\x24\xa5\x1a\xde\xf5\x24\x15\xa4\x92\x7b\x09\xe7\xe5\x8f\x49\x3e\xcb\x58\x54\x46\x69\x1c\xdb\xfe\xa5\x0b\xd6\x31\x82\xb8\x2e\x84\x2d\xb9\xae\x6f\x04\xce\x07\x38\x28\x97\xd6\x99\xf6\x5a\xe7\x07\x83\x44\x71\x7b\xdc\xbe\x02\x56\xda\x61\x47\x25\x6c\xed\x4f\x4a\x2a\x5d\x78\xce\xd3\xab\x2c\xcd\xaf\xc1\xf3\xb3\xb4\x76\x5c\x7b\xbe\xb1\x54\x84\x7e\xb0\xe7\xb7\xad\x9c\xb1\x4f\x26\x64\x70\x40\x83\x72\xe8\xf6\xf5\x2a\x86\x18\x4e\x3a\x28\x65\xd6\x50\xae\xb6\x95\xab\x86\x63\x4b\x69\xaa\x99\xa8\xad\xb7\xac\x6b\x47\x2a\x6c\x70\xb5\xad\xbe\xe5\x67\xfa\x31\x2f\xca\xa5\x93\xe6\x70\xe6\x6c\xd3\x87\x32\x8e\x69\xc5\x20\x74\xb2\xe4\x8a\x65\xf2\x4d\xeb\xb7\xf5\x4d\xa7\x00\xf3\xa1\x68\x4e\xc0\xfb\x97\x69\xf5\xc2\xba\x51\xd7\xf6\x9d\x11\xa5\x23\xe6\xba\x89\xa0\xe7\xa1\xaf\xad\xda\x45\x9f\xed\x67\x56\xbf\x6f\xec\x7e\x67\x0c\x6d\x76\x7d\x97\xd3\x31\x27\xf6\x23\x38\xf3\xd7\x34\x9e\x42\xa4\x64\x14\x13\x4d\xdb\x84\x63\x92\x98\x44\xd1\x27\x89\xa0\xf4\x32\x4a\x69\x11\x25\xb1\x60\xee\x82\xd0\xe9\x08\xe5\xe2\x8f\xf8\x8d\x01\x05\xc7\x8a\xb2\xe9\xac\x79\x8d\xc8\x37\x12\x44\x3f\x24\xb8\x5c\x97\x35\xc6\xb6\x5a\xd2\x8a\x79\xca\x4c\x44\x21\x5c\xaf\x62\x5e\x5a\xfd\xf3\xed\x9b\x01\x3f\x4a\x06\xce\xb6\xd5\x2a\x99\xb2\x7f\xbc\x7f\x4d\x4a\x8a\x58\x5f\x3b\x60\xd8\xd8\x4f\x54\xc5\xda\x66\xfb\x8d\xe4\xde\x1c\x40\x92\x4b\x43\x8d\x75\xed\x88\x2d\x84\xd8\x4d\x2c\xa0\x2d\x8c\xeb\xd2\x06\x2c\x3b\x29\x49\x28\x0b\x37\x6b\x0d\x6e\x8d\x21\x4c\xea\x26\x4f\xc1\xb3\xad\x5d\xe3\x49\xbf\x59\x21\x5a\x51\x34\xa3\xc9\x46\x7b\xc9\x92\x8e\x0a\x34\xc3\xe4\x56\x96\x84\x52\x3a\xf3\x54\xae\xeb\x5f\x52\x76\x8b\x5d\x37\xf5\x78\xb1\x1a\x51\x2a\x54\xa4\xd4\x4b\x66\xb3\x97\x37\x4c\x86\x3b\xb3\x9c\x95\xe1\xe6\x2d\xe4\xac\xf3\xac\x48\x66\x0e\x29\x18\x19\xf9\x38\x48\x05\x23\x4b\xa6\x0b\x78\x4b\x14\x68\x5d\x22\xa7\xc8\xdb\xd7\x31\x26\x25\x70\x3d\x10\x42\x15\x9d\x0e\x29\xdb\xbb\xcc\x9b\x6a\x3d\x81\x3a\xa9\x43\x46\xac\x27\xad\xcd\x63\x07\x37\xa2\xc4\x21\xc2\xd8\x5a\xb6\x7d\xa0\xad\x85\xc6\xf3\x62\x29\x85\x86\x83\xb1\xaa\x6e\x53\x45\x72\x1e\x39\x5a\xd6\x6f\xd6\x6a\x34\x1b\xfa\x5f\x92\x34\x66\xdb\x74\x24\xf9\xa5\x50\xe9\xb6\x34\x71\xd5\x69\x22\xc3\x42\xd5\xbb\x24\xa3\x5e\x81\x92\xdc\x86\xee\xa2\xcb\x7e\x33\x45\x65\x21\xca\xbd\x79\x9a\x71\x56\x7a\xaf\x5f\x0c\x2e\x07\x2d\xff\x39\x23\x65\x7b\x48\x3b\x38\x86\x9b\xca\x93\x60\x83\x4d\x43\x72\x48\x37\xd0\xad\xa1\x0f\xb3\xd9\x57\x92\x5d\x77\xd9\xf2\xf5\x9e\xd2\xdb\xb6\xa3\x0c\xa3\x32\x0e\xa2\xb8\x69\x70\xf0\x1f\xe8\x8a\xac\xaf\xcb\x5c\x4c\x97\x24\x6f\xdf\xbc\x27\xbb\x6a\x5a\x24\x56\xbe\x74\x90\xfe\x4f\x74\x5e\x9a\x79\x07\x87\x40\x6c\x39\xa0\x18\x54\xd2\x62\x4b\xab\xb0\xdd\x1a\xad\x89\x47\x85\x74\x16\x4f\x29\x1f\xa0\x13\x86\x61\x33\x57\xd0\x54\xed\xe3\xfe\x7b\x35\x28\x1d\x12\xa6\x46\x8f\xc1\x87\x67\x3f\xd0\xe1\x75\xf9\xa9\x9c\xc8\xbd\xf1\xb1\x3e\xda\xba\x6b\x09\x60\xff\x10\xf2\x4d\xcd\xd8\x24\x3a\xed\xef\x69\xf5\x39\x99\x39\x48\xd9\x5a\x38\x78\xd4\x3d\x92\x3e\xa0\x0f\x4a\x53\x2a\xe0\xf8\xe6\x04\xfb\xe0\x16\xde\xf2\xe4\xbc\xef\x84\x9f\x6b\xdd\xba\x30\x94\x01\xe6\xc0\xfe\xb8\x58\xfb\xaa\x2f\x23\x9b\xee\x37\xcb\x36\xc9\xfd\x96\xad\x16\xc3\x0d\xb9\x17\xbd\xbd\x11\xff\xc8\x0d\x57\xcb\xa5\xfa\xe3\x06\xfb\xad\x1e\x63\xda\xe4\x48\x79\xce\x4a\x21\xe9\xa8\x73\x9a\xec\xa6\x33\xfa\xad\x33\xbe\x1c\x3b\xdf\x9e\x9d\xee\x27\x67\xa7\xd2\x60\xd6\xde\xde\xbb\x28\x2f\x2e\xbe\xdd\x5d\x56\x49\x96\x15\xb7\xd3\x64\xc5\xd7\x25\xa3\xdf\x7e\x7b\x76\x5a\xac\x94\x99\x40\x5a\xee\xe1\xde\xbe\xbc\x79\x76\xba\x2f\x6f\x9f\x39\x84\x6d\xce\xae\x13\x75\x8b\xfb\x8d\x7e\xfb\x6d\x6c\xf8\xb3\xeb\xde\xa8\x6c\xde\xd1\xa3\xdf\xbe\x89\x69\x6b\x44\xff\xb6\xbe\x70\x2e\xc0\xf6\x3a\x58\xa8\x6e\x49\x5b\x54\x5d\xeb\xa2\x5a\x73\x7d\x18\xc0\x32\xa8\xa5\x01\x73\x5b\x59\xe9\xec\xdf\x54\xf6\x7f\xa8\xb4\x7f\xd3\x2d\xdf\x05\xea\x3c\x63\xe0\x9b\xf6\xd1\xe0\x97\xc9\x5f\xa0\xba\xf1\xa3\x81\x4f\xbd\xbf\x78\xe3\x68\xfc\xef\x18\x24\x66\x6f\x7a\x59\x6f\x3e\x17\x25\x9b\xd3\x6f\xbf\xdd\x35\x3a\xe3\xb7\xfa\x57\x77\x82\x07\x9f\xcb\xd9\xdb\xb7\xa6\x6f\x67\xcb\x06\x4d\xea\xe8\x78\xa7\xbf\xc5\x16\xea\xb9\x43\x1c\x93\x7c\xa7\x2b\xb2\x39\xee\xbd\x2e\x33\xe0\x3a\x2f\xb6\x4d\x83\x78\x4e\x67\x43\xb4\x01\x5f\x4a\xdb\xb2\x39\x6f\x71\x30\x39\x00\x79\x30\x30\x31\x2c\x87\x4e\x0e\x94\x64\x1e\x11\x27\xd0\x63\xe1\x60\xb2\xb1\x6e\xcc\x88\x8d\x26\xdb\xab\x69\x0b\xf8\xd2\x7a\x86\x8a\x79\x44\x82\x3b\x07\x13\xfd\x25\xf1\x1e\x05\x0e\xc0\xdc\xa3\xd2\x83\xdc\x0c\xac\xd2\xef\x6b\x66\x70\x4d\x57\xfa\x51\x5d\xaf\xbc\x5b\x76\xf5\x31\xe5\x6f\xbb\xef\x8a\x07\xcb\xe2\xcf\x81\xbb\xc5\xd0\x9b\x55\xef\xa6\xe0\x2e\x7d\xad\x47\x8c\xca\xb4\xc8\x73\x58\x78\xf0\x3e\xbd\xd6\x61\x87\x70\x40\xd3\x5e\x45\xd5\x48\xac\x73\xe8\xd9\xbd\xea\xd9\x88\x3a\xe4\x47\x41\xd5\x37\xf4\xc6\x0c\x98\x65\x40\xbf\x51\x76\x97\x5a\xe8\x76\xf7\xf4\x7e\xe8\x9d\x7b\xfb\x1d\xae\xc7\x63\x05\xce\xd5\x49\xc9\xb4\x6e\xfe\x73\x51\xa5\xa2\xd9\x98\x5c\x51\x5e\xd7\xd6\x6b\x39\x4f\xd2\xbc\xc2\xe1\x90\x03\xc3\xd3\xce\x8e\x3d\x64\x7d\x1d\x3d\x10\x3b\x7b\xde\xb5\x35\xec\x58\x47\xaf\x79\x5d\x8f\xd0\x28\x97\x66\xce\xdc\x14\x24\xee\x96\xa6\xea\xb0\xfd\x89\x72\x1c\xb0\x6d\x4d\x77\x5d\xff\xd8\xdd\xfa\x14\x7c\x8e\xfa\xf2\x32\x9d\x23\xe9\x59\x7a\xc2\xa9\xdd\x46\xd0\x17\xb8\xa5\x0b\x8c\x26\x3b\xc6\x9c\x42\x3e\x50\x1e\x6e\x94\xc3\xec\x63\xdc\xb9\x58\x05\x13\x85\xc0\x36\xda\xda\xa6\xbd\x11\xdf\xf6\xc8\x88\xda\xba\x46\xbe\x8b\xf2\xc1\x2d\x9c\x8c\xb3\xec\xdb\x7d\x71\xb8\x7d\x10\x38\x0e\x7c\x5c\xd7\x23\xe9\xdb\xf6\x82\x89\xcd\x0c\x9b\x49\x1f\xa0\xe1\x2f\xa0\x96\x3c\x14\xdd\x9b\xd5\x75\xaf\x11\x94\xd2\x5b\xd7\xbd\x42\xb7\x84\xe1\x70\xcf\x0f\xb8\x7c\x8b\x6f\x7b\x8b\xe3\xd0\x0f\xa6\xe1\x4f\x68\x4a\x18\xde\x13\x7f\x38\x0e\x26\xc1\x91\x9b\x8b\xaf\xfd\xa1\xf9\xd9\x36\xae\xa5\x71\x42\x69\xa7\x0d\x14\x1e\xeb\x32\x81\x64\x16\x15\x55\x51\x06\xa3\xb4\xae\x47\xc6\xae\x0c\x3d\x32\x8d\x0e\xfd\x20\x15\x17\xc5\x50\x03\x21\x38\xc7\xb6\x49\x2b\x0b\xd6\x8e\xf2\x42\x02\x2b\x93\x4d\x3d\x89\xb7\xce\xa5\xfd\xaf\xd4\x2f\xf1\x8d\x97\xaa\xfe\x4b\x27\x49\x94\xc7\x94\xd2\x2a\xca\xe3\x13\x9c\x8f\xc7\x86\x08\xc2\x05\x43\xe2\x21\x11\x8f\x70\xa0\xde\xbb\x15\x0d\xae\xf4\x6f\x3f\x98\x34\x64\x86\x83\x59\x43\x2a\xa6\x99\xdd\xf0\xa1\x13\x9c\x5d\x40\x44\xa1\x0c\x2b\xc4\xf6\x27\x86\x75\x6e\x4c\xc5\x10\x09\xea\x13\x06\xd8\xfc\xf5\x4a\x70\xdd\x25\x58\xbf\xb9\xb1\x7e\xdf\xd7\xf5\xe8\x5e\xd9\x17\xa4\xd3\x9a\x65\x0f\xe7\x18\x63\x5e\xde\xab\x73\x3d\xc3\x19\xb9\x8c\xde\xac\xeb\x01\x6e\x2a\x08\x52\xb3\x1c\x75\x3a\xd2\xde\x30\xec\xc4\xd8\x05\x2d\xe3\xe8\x47\x99\x20\xab\x69\x47\x84\x93\x99\x1c\x8e\x88\xc5\xd8\xc0\xff\xc2\xc8\x68\xf6\x33\x38\x9a\x9f\x19\x95\x2b\xe5\xa9\x5d\x31\xb0\x0e\xf4\x8a\xf8\xf4\xc7\x3b\x26\xc2\xa5\xb5\xa6\xf6\xbc\x6b\x94\xfb\xe4\x73\x39\x5a\xf6\x9b\xa4\xf7\x26\x0e\x53\x38\xb1\x1a\x2d\xf5\xee\x61\xa7\xbf\x43\x29\xc2\x22\xb0\x8d\x18\x75\x3d\x5a\x86\xbd\x2d\x31\xc7\x01\x2a\x06\x36\x95\x72\x42\x0b\x0f\xf2\x20\xcd\x53\x36\x0b\x15\xb4\x43\x00\xa6\x64\xd1\x7f\x56\x4d\x93\x15\x1b\x08\x33\xe8\xf9\xce\xc9\xf3\x09\xf9\x49\x59\x76\x28\x71\xd3\xb7\xd2\x39\xbf\xcf\x79\x72\xb7\x0b\x6f\x92\xdd\x75\x5e\xb2\x69\x71\x9d\xa7\x7f\xb2\xd9\x2e\xbb\x5b\x95\xac\xaa\xd2\x22\x0f\x76\x9d\xb1\x2a\x72\x9d\xa7\x7f\xac\xd9\x79\x51\x0e\xd9\xad\xac\xad\x13\xac\xfa\x39\x1d\x95\xde\x8c\x71\x36\xe5\x2f\xd6\xab\x2c\x9d\x26\x9c\x55\x64\x4a\x15\x03\x3d\xe7\x42\x4f\x01\xcb\xb4\x3c\xb4\x15\x0a\x8b\x78\x80\x3e\x60\x32\xd7\x41\xc9\x94\x41\xa6\xb3\x13\x0c\x12\x25\x2a\x62\x30\x56\xa9\x5d\x55\x81\xd5\xe2\x07\xc3\x39\x53\x5e\xc6\x60\x44\x24\xbe\xa1\xcf\xa9\x0c\x00\x66\x0d\x49\x69\x05\x83\xff\x81\xdd\x0d\x75\xa0\xa4\x8e\x03\x9c\xb1\xb0\x04\x73\xbb\xcb\x16\x5b\xbb\xa2\xae\x9f\xca\x3f\x3e\x5c\xca\x90\xba\x0d\xe7\x42\x08\xbd\x00\xa7\x85\xbc\x05\x5e\xb0\x6f\x42\xb3\x19\x65\x1e\x38\x28\x80\x22\x78\xc2\x4e\x98\xc2\xf0\x50\x06\x77\x5c\x8e\xc1\x2b\xd5\x1c\x01\x1e\xca\xaa\x8f\x6c\x76\x2a\x5b\x0a\x58\x8f\x8d\x71\xac\x83\x71\x93\x9b\x77\x28\xa3\x4d\x09\x57\x36\x04\xe5\xd2\x06\x29\x19\x4d\x45\x1f\xac\x53\x98\xe0\xf1\x84\x48\x7d\xfc\xe7\x8a\xad\x67\x45\x90\x31\x99\xb2\x2b\xf8\x1b\x69\x97\x47\xf0\x00\x51\x77\x33\xf1\xb7\x64\x19\xb8\x34\x04\x0f\xce\x99\x13\x6c\x9e\x6c\x4b\xbf\xf7\xd1\xa4\x21\xce\xee\xc0\xf3\x86\x38\x63\x73\xbb\x64\x37\x69\xb1\xae\x54\xf7\x3b\xdf\xfe\x7b\xdb\x4b\x4d\x43\x56\x25\x7b\x05\x76\x9f\xe0\x01\x5c\x63\x86\x6c\x53\x91\x1f\x03\x7e\x48\xcf\x06\x44\x58\x74\x18\x53\x24\xfe\xad\x6b\x16\x1d\xc1\xbf\x8f\xe3\xba\xb6\xd7\x94\x7a\x55\xec\xcd\x80\x08\x0f\x64\x12\xc6\xc3\x98\x3a\x62\x69\x44\x87\x31\x9c\x67\x91\xd6\xfd\xe0\x08\x37\xca\xeb\xe6\x93\x6d\xe9\xf0\x18\xe2\xe4\x7c\x21\x2b\xf0\x63\x53\xd2\x21\x0e\x55\xeb\xf4\x8a\x46\x2c\x9a\xc4\xa2\xe1\x47\x31\x1d\x23\xf1\x27\x14\x4d\x16\x3f\x8f\xe3\xba\xf6\x71\x70\xf0\x08\x39\xec\x86\xc9\x50\x4c\xf8\xd6\x29\x66\x33\x7d\x05\xf9\x1f\x1f\xcb\x6f\xbf\x8b\xc7\x2c\x7a\xb2\xf1\x42\x20\xfe\xb8\x6e\xbf\xc6\x46\xbb\x18\x0d\x2d\x9d\x91\xa8\xde\x75\xc5\xe8\x68\x5a\xfb\x9b\x07\x63\xa0\x4e\x34\x45\x19\xa1\x58\x89\x01\x74\x28\x14\x6f\xd2\xee\x90\x07\xa5\xeb\xfe\x4b\xbe\x5e\x42\xb0\x3c\x4d\x50\x09\xb9\x20\x55\x2a\x2b\x9d\xe8\xdd\xc1\x8e\x39\x59\xd8\xe3\x78\x4f\xff\xc6\x30\x31\x13\x51\xee\xa4\x1d\x43\x2e\x7a\x7c\x10\xeb\xe0\x32\xb8\x63\xcf\xd6\x21\xc6\x8d\x20\x68\x49\x42\x1f\x9e\xfd\x30\x10\x61\xd1\x37\x1e\x0e\x1e\x30\x29\xa3\x50\xb8\x11\x40\x31\x9a\x0c\x67\x0f\x35\x27\x04\x82\x0d\x0e\x9f\x5d\x29\x23\xa2\x74\x19\xdb\x6c\xd7\xb9\x3a\x1f\x37\x71\x1e\x90\x1e\xcc\x76\x14\x42\xbf\x19\xcf\x36\x36\x76\xa4\x77\x50\xfd\x0d\x06\xc3\xdd\x39\x62\x83\x08\x52\x72\x0e\x06\xf8\xda\xb4\xb5\x30\x59\x17\x76\xca\xb2\x5e\x58\xd9\xa0\x8d\xde\xc1\xb0\xc0\x1a\xdc\x90\xde\x82\xed\xf8\x5a\x9b\xdb\x06\xed\x50\x29\x02\x28\xb7\xc2\x85\xa4\x47\x76\x1a\x8a\x1d\x9f\x18\xac\x60\x24\xc6\x20\x1d\x0b\x66\xee\xc8\x5b\xa1\x50\x40\xcb\x40\xbf\x11\xa6\x23\xb8\xfc\x4d\x5d\x96\xae\x3b\x01\xe0\x26\x4d\x5e\x25\x0e\x9c\x47\xed\x43\xfb\xc1\xd9\x9e\x1f\x38\xdf\xd8\xcf\x24\x15\xb5\x24\x28\xab\xfa\xb7\x7a\x05\x09\x16\x91\x1a\xe2\xf9\x5e\x70\x41\xf0\x37\xc2\xfd\x42\x6b\xf9\x05\xc8\x37\x38\xa0\x4c\x0d\x81\xea\xb2\xc7\x3e\x94\x3e\x76\xf6\x1c\x20\xd9\x3e\x8b\x21\x3d\x04\x14\xe0\x28\x30\x29\x2d\xa9\x93\x84\x3a\x59\x52\x71\xfb\xfe\xde\x11\x26\x15\x75\x94\xb7\x1f\x34\x43\x8f\xae\x90\x72\xb9\x1a\x9f\x81\x34\xb9\xa3\x91\xbd\x87\xb0\x88\x5c\xb4\x64\x2d\xdb\xd1\xf1\x4d\xa6\xc5\x88\xd2\x24\x74\x2c\x31\xe7\x0c\x70\xfe\x9b\xee\x66\xe4\x9e\x56\x32\xcc\x61\x68\x85\x90\x6b\x3a\x5a\xbb\xee\xa8\x22\x57\x74\xe4\x0b\x79\x7d\x03\x62\xb9\x50\x3a\xc4\xf2\x44\xfe\x58\x50\x7e\xb2\xa0\x8b\x68\x29\x4d\xda\x55\xb8\xd8\xbe\xe4\xee\x03\xd1\xf1\x45\x5f\x0d\x1e\xf9\x3b\x2b\xba\xa4\x4e\x91\x67\x10\xc5\xc7\x5c\x77\xb4\x72\xdd\x4e\x6f\x1a\xb3\xe4\xd3\x39\x5a\xd1\x28\x09\x6f\x2c\x29\x1f\xdc\x78\x62\xf4\xe1\x77\x4c\x12\xd7\xbd\x96\x8d\xbb\xa2\x68\x46\x51\x46\xd1\x94\xa2\x39\x45\x0b\x7a\x83\xa3\xcb\xb8\xae\xd1\x22\xba\x8c\xe9\x43\x83\x71\xb4\x50\xea\xd7\xeb\x17\xe2\xfe\xdc\xbe\x96\x2f\xb0\x18\x70\x3c\x05\xff\x03\xff\x96\x2c\xf2\x63\x2c\xfe\x1c\xc4\x64\x21\xf4\xe2\x1b\xcb\x45\x2c\x9a\xc5\x27\x0b\x3a\x1e\x0b\x75\xd9\x75\xc5\xa8\xd4\x35\xba\xa2\x33\x3a\xc1\x75\xbd\x92\xd0\x2f\x30\x4e\xdd\x81\x70\xdd\xf1\xf8\xca\x75\x17\x12\xf0\x6d\x1a\xb1\x98\x46\x2f\xc9\x8c\x5c\xc5\x1a\x35\xc1\xf6\x57\x12\xe5\xd9\x9d\xe2\xff\xa1\x4e\x11\x38\x60\xbf\x92\xe6\x07\xf4\xb9\x6e\x08\xa9\xf0\x89\xe9\x1e\xc1\x74\x8f\x3a\xd3\x5d\xd7\xa3\xf1\xf8\xaa\xae\xa1\x17\xb2\xf9\x8b\xff\x46\xd3\xc5\xd8\x5c\xc5\x98\x2c\x46\x62\xb8\xf0\x09\x3e\x51\x4a\xfb\xd5\x1e\x4d\xb1\x34\xe2\x5c\xfd\x8f\x9c\xd2\x89\xeb\x5e\xed\xe7\x67\x74\xd2\x34\x03\x52\xb6\x3d\x9e\x00\xd5\x17\x34\xb3\x0a\x46\x06\x40\x78\xa5\xf2\x53\x45\xbd\x7e\xd9\x3a\x83\xb3\xce\xd5\x01\x38\x9b\xed\xca\x02\xa4\x5a\xaf\xd7\x79\x1a\x5d\xc6\xa1\x50\x14\x83\xb4\x05\x97\x47\x25\x8d\x18\x61\xc4\x71\x08\x8f\x89\x5d\x57\xcf\xcd\x1f\xf5\xdd\xad\x42\xdb\x33\x80\x75\x22\x55\xc4\xa6\x0b\xba\xb4\xe1\x0f\xc0\xa2\x9c\xfe\x84\x18\x29\xa2\x24\xc6\x31\x1d\xa1\x52\xec\xcf\xe1\xaa\xc1\x5b\x92\x48\x90\x09\x29\xc5\xd3\x54\xe8\x81\x72\x60\x82\x87\xbc\xe0\x41\xd6\x35\x27\x6a\x90\x24\xa2\xa2\xd1\xab\x4d\xcf\xa6\x56\xa2\x88\xb1\xe8\x76\x40\xb0\xb3\xb4\xed\x44\x41\x12\x9a\x6b\x3b\x40\x4a\xa2\x18\xf0\xdd\x3b\x1e\x5f\xa8\xa0\x49\x54\xc5\x52\x23\xa9\x44\x6f\xb8\xf8\x53\xe0\x6e\x5f\x08\x60\xe7\x6a\xb9\x0b\xaa\x0b\x11\xdc\x13\x4a\x2e\x48\x89\x09\xdc\x84\xcb\x51\x29\xe9\xb9\x69\x30\x59\x24\x55\xbf\x8b\x5b\xdd\x54\x94\xbf\xa5\xb5\x31\x6f\x30\xd1\xfb\xf2\x2d\xa5\xb0\x0d\x8d\x87\x6c\x16\x8c\xb8\xbd\xa7\x81\x8c\xdb\xb8\x95\x6b\x4c\xc8\x35\x51\x55\x96\xe4\xd7\x5b\xaa\xf9\x41\x29\x87\xa0\x0f\x6c\xa3\x57\xf8\x1e\xa8\x95\x6c\x36\xab\x27\x0b\x36\x9c\x82\x76\x66\x05\xe0\x52\xd2\x65\xc8\x3d\x28\xa9\xef\xe4\x77\xb7\xcc\x02\xf1\x40\x34\xa0\xff\x4c\xde\x57\xdc\x1f\x95\xb4\xec\xd1\xb9\x74\xc0\x99\xc0\xa1\x9f\xe9\x37\xc8\xe7\xe6\x76\x91\x66\x0c\xa1\xae\x71\x14\xf7\x3d\xb3\x70\x6b\x1b\x6d\x30\xe1\x49\xd9\x89\xc5\x36\xc6\x62\xe6\x65\xc5\x34\x91\x96\xda\xf6\xb7\x58\x85\x8b\xce\xb9\xb3\x86\x9a\x82\x3a\xd2\x59\x43\xca\xa2\x18\x8c\xed\x66\x94\xd2\x55\x43\x20\x12\x66\xdb\xf3\x99\x97\x40\xbe\x33\x65\x90\x76\x5d\x34\x9a\x89\x2a\x5f\x41\xf8\x4c\xdd\xfe\x06\x16\x3b\x1a\x21\x0d\x17\xc3\xbc\x45\xc9\xe6\x75\xfd\x6f\xe6\xf1\xe4\x0a\x9c\xcc\x20\xb4\x18\x0e\x26\x82\x25\x43\x23\x1f\x13\x7d\x50\x01\xd7\x13\x4c\xd4\x21\xd6\xa0\xee\xfd\x49\xb7\x2e\xcb\x9b\x4c\xb4\x82\x79\x3a\xf2\xa7\x76\xe4\xa9\x93\xf5\x48\x1f\xe4\x35\x44\xff\x1a\xd6\xcb\x6d\x67\x2e\xfb\xca\x14\x00\x9d\x22\xca\x01\xbc\x2d\x95\x2d\x57\x7c\x33\x41\xf0\x67\x37\xfa\x80\x88\xaa\x49\xe2\xf4\x78\x28\x16\x54\xb6\x61\xa0\xb5\x23\x23\x11\x3c\xa8\x1d\x0e\x76\x17\x2c\x99\xb1\xc1\x6c\xd5\xff\x54\x2b\xce\x8c\x29\x6e\x08\x0c\xe0\xd0\xcb\x7f\x1f\x78\x59\xba\xcd\xfd\x6f\x4e\x93\xe5\x7c\x67\x30\x86\xda\x5b\xbc\x21\x10\xee\xb1\x19\x2f\xdb\x2f\x6a\x5b\x9d\xae\xeb\x70\x85\x20\xc3\x0c\x60\x35\x6c\x14\x10\xa7\xfd\x3d\x09\x28\xbd\x10\xfb\xab\xbf\xe9\x9b\xff\x74\xf8\xfe\x0d\xdb\xcc\xdb\x13\x4d\x62\xe0\x71\xbd\xc7\x96\x95\x33\xe2\x7b\xbe\x78\x87\xfd\xd1\x7f\xa3\xdd\xec\x44\xe5\xe9\x24\x2c\xc7\x3c\x28\xe1\xcd\x1b\x96\x6f\x96\x66\x85\xc4\x9d\x94\xa7\xfc\xa4\x1c\xd3\x03\xcc\xfa\x0e\x06\xac\xc1\xa4\x98\xcd\x3e\xf5\xb9\xff\x99\xcf\xb3\x8d\xae\x74\x63\x4d\x4d\x5b\xcf\x78\xc8\x83\xf2\x64\x6f\x4f\xa8\x2e\x27\xba\xb0\xbc\x53\xd8\xf5\x97\x16\x76\x32\x1e\xe7\xa7\x7c\xb8\x94\xa6\xc1\x86\xca\x73\xbe\xa0\x16\xcd\xff\x41\x1e\xca\x64\x96\x16\xc1\x68\x22\x79\xc8\x55\x71\x27\x7e\xcf\x53\x99\x7f\x7f\x95\x54\xd5\x6d\x51\xce\xc4\xef\x74\x99\x5c\x03\xba\x0a\x6e\xd5\x28\x1e\x53\xb0\xc0\x9a\x58\xec\x87\x6a\x7d\xb5\x4c\x21\x15\x87\x04\x26\xdc\x78\x7f\x25\xdf\xd7\xbe\x89\xd7\xac\x03\x08\x7e\xc5\xba\xf8\x4e\x13\xd2\x09\x93\x70\x9c\x13\x7e\x5a\x9e\xf0\xf1\x18\xe7\x63\xc0\x05\xe8\x82\x51\xe7\x6d\x49\x97\xac\x1b\xaf\xc3\xbd\x59\x2a\x74\x40\x0e\xcc\x43\x28\x52\x75\x9d\x93\x84\x96\xae\x6b\xdb\xd4\x28\xa5\x05\xa9\xe8\x5d\x7b\x08\xc2\x25\xfb\x09\x3b\xdb\xb3\xd4\xd8\x58\x39\x1c\x9a\x28\x5d\x9f\x5b\x47\x89\x89\xb1\x32\xaa\x2f\x5a\x69\xf5\xa9\xad\x9e\x50\x7b\x2b\x38\x36\x5a\x6f\xd6\x31\x50\x89\xeb\x32\x55\x8a\x39\x32\xec\xd8\x32\x3f\xd1\xbe\x74\x2e\xb5\x73\x2e\xb5\x73\x6e\xb4\x73\xde\xd3\xce\x79\x57\x3b\x27\xa9\xeb\xa6\x9f\x70\x40\xc6\xb2\xd6\xba\xe6\x3b\x3a\x70\x02\x65\x74\x1a\x15\x72\x47\x65\xef\x46\x28\xa5\x95\x39\xdc\x8a\x0e\x62\x2a\x36\x5c\xa2\xf3\xe2\x6d\xba\x20\x70\x6f\xb3\x83\xad\xdc\x37\xf3\x7d\xdb\x71\x72\x6d\xf5\xf0\xce\x50\xdb\x5e\xb6\xad\xce\x09\x16\x70\x40\x83\x8a\xd2\x58\xbd\x37\x20\x46\x24\xba\xb2\xa9\xf0\x25\xb3\x8d\x06\xb6\x76\x1b\xc5\xa4\xa2\x13\xb2\x6e\x29\x37\xa3\x32\x4e\x9b\x1b\xe8\x0b\x54\x50\xa6\x54\xdc\xd2\x75\x47\x25\x2a\xa0\x9c\xba\x46\x89\xb6\xcf\x93\x0c\x0e\xb0\xc5\x45\x85\x6d\x24\x09\xd3\x84\x3b\xab\x09\x96\x2a\x9c\xbb\xee\x48\xe8\xe1\x90\x68\xe0\x8e\xa1\x1c\xc3\x94\x8d\x52\x79\x2f\x15\xf7\xc4\xfb\xb8\xe3\x83\xac\xc2\xa1\x7b\xc4\x18\x93\x99\xf8\x67\x45\x13\xdd\x97\x25\x2d\xea\x7a\x3b\x4b\x9a\xc0\x1a\x33\x01\xfa\x29\x04\xe8\x4b\x25\x3a\xca\x63\x2b\x95\x5e\xd9\x20\x5e\xd7\xce\x23\x87\x54\xed\x49\x7e\x54\xc5\x41\x05\x7b\x82\x1b\x3a\x62\x75\x3d\x2a\x5c\x97\x87\xcb\xe0\x25\x43\x4b\xb2\x20\x0c\x5a\x48\xee\x69\x19\xa6\x75\x8d\x8a\x90\x05\xab\xba\xce\x01\xb4\x23\x09\x6e\xc0\xff\xde\x75\x4b\x74\x43\xee\xe5\x9b\x39\x6c\x73\x33\xfa\x92\xa1\x7b\x32\xc3\x24\x47\x19\x11\xd3\x23\x9e\x4d\xa9\xce\x02\x78\x32\x85\x5d\xc7\x9c\x66\xd1\x14\xa6\xe4\x3e\x9a\x45\xd3\x58\x6c\x3c\x6e\xd4\xaf\x39\xb6\x7c\x06\xd3\xba\x96\xf8\x61\x6a\xe2\x33\x31\x44\x53\xe3\x07\x61\x8a\xbb\x97\xc5\x65\x72\x12\x6f\xa2\xa9\x28\x67\x27\x05\x69\x2a\xfd\xc7\x32\xb2\x96\x89\x39\xb6\x7f\x8d\x32\x9a\x86\x3f\xa1\x82\xcc\x71\xb0\x10\xb7\xce\xf6\x7c\xd7\x45\x45\x94\x89\xf6\x25\xe2\xcf\x1c\x63\x65\x3b\xb8\x87\x9e\x52\x4a\x93\xf0\x5e\x1f\xe9\xac\x88\x2e\x1a\x07\xf7\x98\xa4\xa1\x6a\x40\x42\xee\xc9\x1a\x07\x3a\x16\x26\x21\xf7\x1d\xaf\xf1\x73\xd6\xcf\xa8\x98\x76\x11\x12\x72\x4f\x9f\x5f\x44\x60\x32\x16\xaa\x00\x20\x89\x8a\xad\xb5\x79\xe4\xec\x3a\x31\x59\xd3\x24\xf4\x83\x09\x99\x0e\xc7\x02\xca\x70\xf8\x86\x54\x44\x28\xb3\xf3\x2d\x2f\xfd\x04\x99\x12\xc4\xbe\x48\xbd\xb8\xa0\x76\xfa\x1a\x2b\xb1\xcb\x28\x11\xa4\x5f\xd7\xe5\x88\xd2\x4c\xac\x29\xc4\x69\x89\x5b\x2a\x9b\xaa\xd7\x83\xb9\xfa\xd1\x42\xfd\xc8\xdd\x62\xda\xc4\x27\xeb\xd3\xe2\x64\x2d\xa3\xe5\xcb\x6e\x5f\xd7\xaa\xaf\x78\x41\xa3\x4b\x86\x6e\x19\x5a\x60\x52\xe2\xb8\xe5\x76\xe2\x03\x69\x13\xb7\x5e\xd7\x31\x47\x70\xa0\x26\xee\xaa\x63\x6b\x8c\xa3\xcb\x58\x8e\x74\x4a\xc7\xe3\xf5\x49\x7a\x5a\x88\x15\x6c\x57\x99\xaa\x32\x00\x8f\x42\x19\x42\xc4\xf2\x5f\x9f\xf9\xae\x2b\x1b\x00\x3f\x85\xfc\x34\x06\xcb\xf5\x9e\x8f\x15\x12\x1c\x52\xc0\xdf\xce\xae\x3c\xa9\x58\xef\x1d\xc8\x12\x43\xe7\x91\x13\x38\x4e\x63\x81\xcd\xe8\x60\xa5\x92\xac\x4f\x53\xd7\x3d\x6f\x8b\x5c\x93\x54\xb0\x12\xd1\x3c\x71\xd7\xd8\x40\xcd\x5d\x10\xdf\xb8\x59\x68\xc5\x48\x1f\x23\x42\x0b\xf5\xc5\xb5\x8d\x85\xad\xc7\xa9\x6a\xd5\x92\x8e\xb1\x04\xcc\xf1\xd7\x8c\x24\xb4\x12\x52\xe6\x23\xcb\xd3\x3f\xfb\x21\xad\xca\xbc\x63\x03\x3a\xd0\x77\xda\xb6\x2f\x64\x89\xf1\xe7\x0c\x27\xc1\xd4\x1c\x99\x82\xd2\x52\x51\x46\xd6\xb0\x12\x45\x03\xf4\x61\xd8\x49\xa5\xec\x9e\x09\xc4\x40\xb8\xee\x08\xa5\xf4\x57\x19\xb0\x58\x61\x40\x16\x72\x5d\x54\xd1\x4a\x0f\x80\xa0\x7f\xb5\xc6\xea\xba\xc2\x64\xad\x98\x38\x8d\x62\x8c\x49\x49\x47\x3e\x41\x29\xfd\xc3\x94\x20\xd8\x3e\x4d\x75\xac\x16\x29\xe4\xeb\x6a\x92\x4a\x02\x20\x77\x50\xa8\x35\x29\xbb\xe0\x68\xd8\x56\x6a\xac\xe6\xd2\x45\x58\xb4\x1b\x8b\x76\xfe\x2d\x4a\x62\xab\xa9\x59\x94\xc4\xb2\x03\xe2\x97\x98\xab\xba\xfe\x7c\xe5\x09\x51\xd4\x19\xa4\x5b\x2a\x05\xcf\x96\x52\x42\xd6\x98\x74\x18\xa1\x0e\x9f\x0d\xaa\xb0\x3d\x02\xc3\xc1\x3b\xc4\xc8\x1a\x9b\xa1\x6f\x44\x89\xd2\x5b\x28\xcd\xb6\x4c\xa7\x98\x94\x42\xca\xd2\x67\xd6\x64\x8e\x2a\x39\x33\xf2\xb0\x06\xa2\x05\x49\xd9\x4a\x9c\x12\x98\x67\x45\xcf\x19\xe2\x51\x19\xc3\xda\x0a\x53\x2d\x45\x83\x42\xff\x3a\x41\x15\x7d\xd6\x39\xc1\xb1\x22\xc3\x8c\xb1\xc7\x02\x9b\x39\x9b\x90\x82\xf6\x85\x25\x51\xc0\xb7\x73\xb2\x22\x37\xe4\x9e\x4e\xc8\x35\x75\x26\x0e\xb9\xa2\x85\xeb\x46\x31\xb9\x14\xed\xbf\xa5\x19\xb9\x13\x42\x33\x75\xdd\xd6\x97\x1b\x09\xc9\x37\xc5\xe4\x9c\xbe\x1c\x53\xb9\xbd\xba\x0d\xfd\xa0\x03\x00\x55\xd7\x9e\x4f\xde\xd1\x3b\xd5\x04\x20\xd8\xa9\x04\xe4\x92\x0e\x4f\x49\x5d\x4f\xf1\xc9\xf5\x88\xd2\x77\xae\xab\xa0\x60\xe6\xf4\x2e\xba\x8e\xf1\xc9\xf5\x78\x2c\x65\x94\xeb\x2a\x8f\x80\x15\x9d\x90\xa4\xae\xe7\x1b\x5e\x52\xb3\xba\x46\x0b\x34\x17\xf3\x3c\x5a\xe2\x93\x1b\xca\xa2\x95\xf6\x5e\xbf\x41\x73\xf1\xd1\x8c\x54\x18\x3f\x28\xb2\x9e\x63\x65\xb0\x16\x8d\x79\x49\xcf\x71\x53\xba\x2e\x42\x73\x3a\xba\x11\x95\xb9\xee\xfd\xde\x1e\x29\x20\x3f\x9e\x7c\x1d\x37\xe9\x1c\xdd\x8f\xe9\x35\x29\x5d\x57\x34\xf7\xde\xb4\xe8\xe4\x86\x72\x55\xdb\x0d\xba\x22\x97\x62\x60\x2d\x51\x7b\x7f\x36\x91\x96\xea\x6b\x31\xb1\x57\xd1\x75\x5c\xd7\x97\xf0\x2f\x12\x7f\xe8\x7b\xe9\x80\xb2\xc6\x78\xe7\x52\xc8\xbe\x4b\xdc\x68\x81\xb6\x26\x97\x98\x4c\x5d\x57\xe8\x10\x97\x66\x16\x5d\xf7\xde\xe0\x09\x09\x8e\xd9\xf1\xcc\x40\xeb\xd6\xf3\x41\x76\x8d\x64\xf4\x16\x93\xab\xa6\x8d\x99\xc8\x18\x2a\x70\x50\x34\xa8\x10\xdc\x10\x1b\x67\x00\xca\x8c\x53\x4f\x43\xd6\xad\x9b\x00\xdd\x34\x85\x4a\x45\xd1\x20\xcf\x6c\xcb\x80\x00\x79\xf4\x5d\x37\x41\x8c\x2e\x4c\x35\x42\xf5\x00\x3d\x87\x96\x10\xc0\xed\x83\xb1\x49\x2d\x4a\x10\x3e\x6b\x3a\x13\x3a\xf6\xcc\x3a\xc6\x35\x11\xb5\x67\x07\xae\xeb\xbc\x7e\x01\x99\x12\x32\xba\x8e\x26\x31\x56\x5b\xfc\xa7\xbd\xa0\xc7\xa5\x20\x56\x23\x81\xd6\x70\xe4\x0e\x42\x4f\x06\x66\x73\x8a\x4c\x6c\x06\xca\xb4\x28\xb3\x39\x96\xb2\x7c\x72\xac\xcf\x20\xda\x74\x17\x3b\x0b\x38\x93\xee\x18\xf7\x48\x2b\x4e\xd6\x9a\x35\xc9\xcd\x9d\xee\x1c\xe8\x49\x05\xfd\x9b\x67\xc3\x5a\xe8\x90\xdf\x70\x12\xac\x0d\x98\xd2\xde\x1e\x2c\x92\x75\x54\xc4\xc4\x96\xa3\x00\x7a\x0a\x9d\x90\xbb\xa9\x39\x95\x7d\x50\x8a\x56\x4a\xe7\x9f\xec\x8a\x0e\x30\x5e\x6b\x6d\x67\x38\xd0\x58\x05\x4c\xaf\xb5\xfe\x55\x10\x1f\x93\x11\x62\x34\x35\x7e\xb2\x57\x4c\x50\x6c\x3f\xb6\x5b\xd0\x06\x29\xf5\x59\x90\xb2\x9b\x2e\xea\xba\x42\x8c\xcc\x30\x46\x29\x78\x51\x91\x92\x8c\x78\x5d\x7f\x26\xda\x19\xf0\xb8\x6c\x67\x21\x7a\xa9\x03\x67\x1d\xac\x5d\x85\x94\x8b\x2e\x84\x1a\x5d\x92\x4d\x87\x23\x3a\x1a\xcd\xc9\x02\x61\xd2\x75\xdb\xdc\x12\x64\xe5\x7f\xc2\x09\xf6\x13\xa1\xc4\x03\xde\xf3\x66\x17\x37\xe4\x44\xff\x17\xe9\x31\xef\x10\xe7\x2f\xd2\x44\xd5\x5a\x07\x7b\xb6\x29\xf1\xbe\x90\x99\x75\x3d\x57\x96\xaa\x1a\x6c\xab\x0b\x96\x5e\x2f\x78\x7d\x9b\xce\xf8\xc2\x21\xfd\xad\x8c\x14\x6b\xc3\x71\x59\x9c\x38\xe6\x94\xb7\xbb\xe7\x0d\xfd\xe0\x40\x46\xce\xb5\x6e\x6c\x9b\x7e\xd9\x43\xfd\x02\x7b\xdc\x3e\x84\x64\x58\x3d\xe9\x3a\xe4\xc3\x3a\x70\x00\x00\xd0\xf9\x4c\xa7\xe5\xab\xa6\xd7\xea\xcb\xc1\x4e\xba\xee\xe7\x8d\x81\xed\x40\xe8\x10\x47\xf0\x96\xda\x36\x65\x0a\x98\xae\xd7\xa6\xd6\xaf\x5e\x35\xeb\xf5\x46\x83\x60\xf3\xb8\x63\x8f\xbd\xb4\x0f\x47\x3c\x0e\x7b\x43\x1d\x00\x70\xda\xb0\x1f\x60\x6e\xf9\x01\xe6\xb6\x1f\x20\x26\x15\x6b\x10\xc3\x3b\x97\xb0\xe2\xe9\x1d\xc0\x31\xae\x4a\x7a\xd7\x7a\x73\xa9\x5b\x91\x13\x38\x12\xde\x71\x55\x1a\x9d\xf4\xd2\xf6\xdf\xd3\x17\xf4\xce\xba\x4b\x2e\x25\x68\xf0\x9d\xf6\x92\x23\x97\x32\x50\xf6\x45\x31\xa5\x77\xf2\x27\xb9\x6c\x7d\x3a\xef\xcc\x4f\x51\x2f\xb8\x28\x1a\x17\xd8\x3b\x75\x03\x1c\x31\xcf\x37\x10\x68\x7a\xc8\x75\xc6\x81\xa4\x3c\x11\x4a\x79\xc4\x05\x37\x7b\x3a\xb2\x5d\xe4\x8d\x05\xa8\xbd\xa5\x95\x83\x4b\x88\x3e\xaa\x50\xa9\xe1\x07\x35\xbc\x9d\x11\x85\x79\x43\xde\x6d\x45\x18\x8b\xe2\x01\x9b\x7c\x3f\xa2\x9e\x49\xc8\xce\x52\x97\x6c\x79\xd4\x3d\xd3\x23\x0d\x7c\xb7\xc3\xdb\x5b\x2b\xe1\xc7\x2e\x78\xda\x17\xba\xfe\xf4\xa0\x63\x44\x7b\x3f\xd0\xfd\xdf\x4e\x51\x94\xec\xfd\x19\x47\xbf\x5d\xec\x5f\x4c\xce\x02\x80\x1a\xe3\x17\xe5\x45\x7e\x31\x8f\x1f\xe1\xa8\x7b\x7d\xb1\x1f\x9e\xa1\x30\x38\xbd\xd8\xbf\xf0\xcf\x6a\xfc\xcd\x7e\xda\xb6\xea\x79\xcf\xe7\x66\x89\x38\x0e\x2f\xbd\xeb\x92\xad\xba\x9a\x65\xde\xba\x7c\x68\xd4\x47\x92\x13\xf0\xb8\x2d\x1b\x1c\xb4\x62\x77\xe8\xeb\xee\x26\x59\x7d\xb2\x01\xdb\xc2\x3f\xf9\x69\x0b\xb7\x28\xf6\xcf\xaa\x8c\x4b\xb5\x69\xd0\x28\x8c\xfa\x7a\x0b\xe0\x11\x8f\x26\xb1\x75\x5e\x86\x18\x75\x82\xbc\xe0\x08\x5c\xa3\xb0\x83\x89\x34\x30\x6a\x11\x07\xce\x2f\x76\xc7\x40\x59\xe8\x79\x6a\x83\x33\x52\x18\xe5\x71\x10\xc5\x41\xf7\x15\xc4\x88\xea\x11\x1f\xea\x51\x97\xc2\x00\x66\xd8\x82\xc5\x45\x0f\xe0\x62\x39\xe0\x6b\x47\xf2\x0e\xe0\xaf\x4c\x89\xb1\x63\x39\xa2\xb6\x40\x38\x9d\x7c\x05\x16\xfe\xb1\x58\x2f\x6a\xe4\xac\x03\x0d\xd8\x93\xd0\xc9\x09\x3f\xcd\xc1\x3e\x9d\xce\x51\xbb\xd8\x51\x1a\xf1\x58\x26\x2b\x6b\x8d\x98\xd8\xb8\xe8\x77\x2b\x88\x62\x4c\xec\x92\xe4\xb8\x20\x46\xa0\x10\x2b\x1a\xf2\xcc\x0f\x6d\xb6\x84\x4a\x1c\x94\xc6\x17\x6f\xc8\x35\xad\x5b\xcf\x73\x85\xfc\x0c\x6a\xe4\xc8\xc7\x00\x16\x3b\x78\x94\xf5\xc9\x0f\x27\x18\xb0\x5a\x87\x4e\xd7\x46\xea\xcd\x4d\x67\x38\xd7\x7d\x66\x34\x37\x31\xa0\x81\x69\x85\x8e\xb3\x56\xf0\x8d\x6f\xc9\x7b\x09\xf5\x75\x51\x3d\x42\xa7\xd1\xc5\xed\xc5\xaf\xf1\xf8\x0c\x47\xbf\x9d\xc5\x8f\xea\xbf\x58\x68\x5f\x27\xc8\x60\x94\x0f\x12\x70\x4a\x0a\x10\x2f\x9d\x69\x35\x8a\xf4\xdb\x81\x36\x2a\x4d\x37\xa5\xce\xa9\x34\x9a\x4c\x62\xd7\x75\xce\xe4\xef\x16\x0e\x2b\x6e\xf1\xcb\xcf\xe8\x61\x18\x49\xfb\x0e\x38\x21\xc4\xc1\x7b\x03\x72\x54\xd7\xa3\x34\x12\x2f\x6b\xa7\x66\xa1\xc4\x71\x4f\x82\x91\x87\x00\x7b\x80\xd5\x44\x9b\xa4\x24\x2d\x44\x34\x37\xcf\x20\x26\x44\x43\x25\x71\xca\xed\xb4\xc5\x97\xa1\x58\xa4\x81\x90\x3c\x2d\x56\x38\xb9\x14\xaa\x61\xc5\x84\xba\x01\x5f\x12\xae\xfd\xc1\x60\x65\x0e\x00\x38\xe5\x30\xab\xe4\x83\x9c\xa2\x54\xba\x42\xf5\x11\x91\x39\x6e\xb1\xf1\x39\x5e\xca\xec\x4c\x69\x8c\x43\xf5\x03\x71\x71\x25\xbb\x02\x8e\x87\x29\xe1\x36\x62\x2a\x64\xf1\x52\x4a\x6e\x41\xf3\x7e\x8c\x76\x1a\x1d\xc4\x6d\xd6\xa7\x49\x4c\x0b\x62\x2d\x5c\xea\xcb\xac\x7f\x4d\x47\x24\x7c\x30\x99\x53\xa4\x33\x48\xe7\x03\xb9\xfc\x82\xa5\x20\xb9\x56\x62\x7a\x90\x51\x39\x54\x7f\x81\x12\xd1\xa5\xe0\x8d\x06\x41\x17\xc9\x72\x70\x83\x2d\xb3\x95\xa0\x35\xf2\x96\x5e\xa2\x5c\x92\xe9\xcf\x92\x48\xa5\x0e\x5e\xd5\xab\x92\xdd\xa0\x30\xf8\x47\xce\xd3\xac\x86\x08\xe0\x7d\xf2\x3b\x7d\x00\x0f\xb2\x92\xe5\x70\xdc\x26\x1d\x3f\x2a\xc8\x5d\xc0\xee\xe0\xc8\x4c\x7c\xd6\xcd\x5f\xf0\xa2\x15\xb7\x96\x6c\xf7\x7b\xb2\xfd\xc4\x1c\xf6\x75\x78\xe0\x22\xa9\x86\x70\xe4\x75\x87\x2c\xb3\x49\x07\xe9\x7c\x98\xb7\x49\x94\xa2\xc9\x09\x3b\x2d\x4f\xd8\x06\x7f\x93\x50\xf3\x11\x8b\x6d\xfe\xd6\x90\x69\x56\x54\xac\xea\x27\x2e\xb2\xc3\xa8\x6c\x66\x0c\xd6\x9e\x84\x6e\x72\x62\xa9\xa4\xc0\xf2\x35\x6c\x43\x5a\x05\xf4\x01\x43\xcb\x48\xa3\x3c\x3e\x29\x5d\xb7\x14\x1a\x47\x2f\xf4\x09\x4c\xb9\xad\xab\x80\xef\xbb\x2e\x4a\xc2\x44\x3a\x9f\x28\x57\xd2\x7e\x0c\xfa\x16\xb9\x05\x90\xc7\xf8\xa1\x30\x27\xc0\x5d\x33\x58\x1f\xd8\xde\x9c\x46\x75\xf8\x75\x81\x83\x02\x3c\x08\x66\xec\x6e\xd0\x95\x22\x1c\x80\x5e\x56\xa2\x5c\x0c\x08\x51\x94\x8e\x0d\x9c\x32\xb0\x65\xcd\x53\x04\xc3\x0a\x14\x33\x01\xde\xa5\x7e\x74\x90\x73\xe4\x84\x97\x95\xd8\x6d\x0b\xf2\x7b\x96\x65\x48\xf3\xe0\x60\xcf\x6f\x48\x32\x9b\x05\x83\xc1\x5c\x1b\x69\x01\xac\x9e\x75\x72\x15\x5c\x33\x8e\x30\x01\xb2\xc3\x58\x08\x8b\x64\x36\xfb\xbe\x9f\xe3\xc0\x2e\x34\x99\xcd\x90\x46\xb8\xee\xa1\xe7\x07\xbd\x6b\x4d\xac\x0c\x83\x67\x97\x42\x1f\x7e\x18\x70\xf8\xd0\x7e\x16\x9b\x01\xa1\x3a\x82\xcb\xe6\x89\x2a\x78\x48\xad\xe7\xa1\x96\x9e\x23\x46\xec\x83\x63\x6c\xde\x86\x55\xbf\xcd\x2f\xbb\xff\x19\xc0\x5f\xe7\x7d\x87\x0d\xf5\xb2\x58\xfd\x1d\xff\x58\xdc\x48\x1e\xb1\xed\xdd\xbe\x2f\xb0\x2a\xfb\x59\x96\x6d\xed\xc2\x40\xf1\x9f\x7a\x7d\x4b\x0d\x9f\xef\xb3\x5d\x0f\x74\x5a\x94\xf4\x05\x43\xd5\xf7\x6e\x16\x9f\x56\xf2\x62\x70\x5e\xde\x21\x64\x4f\x72\x5d\x3f\x34\xd8\xda\x2d\x43\xa2\x0b\xc3\x87\x07\xbf\xb7\x37\xd7\x90\x0e\x4c\x31\xea\x81\x97\x2d\xd7\x7d\xf5\x9a\x16\xa3\xe1\xc6\x9d\x00\x89\x5d\x8c\xc3\xd9\x72\x95\x25\x9c\x39\xe0\xdd\xd8\x7e\x58\xd7\x0c\x1b\xb9\x1d\xc5\x84\xd9\x10\x95\x10\x63\xd1\x59\x84\x80\xc8\xcd\x62\x3b\x27\xb8\x39\xfe\xb2\x32\x74\xf0\x56\x5f\x74\x60\xb0\x3b\xae\xeb\x8f\x31\x1c\x11\x97\x98\xe4\xae\xbb\xc1\x6b\x72\x30\x89\x99\x5d\x02\xa4\x01\xb5\x45\xea\x99\xe0\x9f\xbf\x83\x2b\x6d\x67\xf1\xa7\x98\xfc\xdc\xda\xa6\xd2\x36\x71\xa6\xfa\xba\xe5\x19\x29\xd6\x6a\xde\x4f\x74\x3f\xfa\xad\xb3\xf3\x1a\xdb\xe9\x63\x5e\xdb\x5c\xb1\x3d\xa2\x7c\xd3\x06\xe6\x59\x77\x5f\xe9\x43\x71\x35\x1e\x80\x55\xc7\x5c\x77\x89\x20\x6a\x57\x26\x0a\xc7\x61\xaa\x93\x18\x40\xca\x46\xd0\xb0\x92\x34\x13\x4a\xb4\x79\x97\x2f\x58\xde\xbe\x08\x83\x19\x70\x65\xac\x93\x53\x4f\x22\xa6\x8d\xac\x39\xd6\x20\x78\x10\x81\xdf\x7f\x0b\x37\xcd\xa5\xf7\x3c\xc9\xb2\xab\x64\xfa\xb1\x9b\x84\x94\xd1\x01\x3e\xbf\xc9\xbb\xda\xa4\x77\x8a\xcd\xa9\xd0\x59\xf4\x13\x98\x58\x49\xd7\x67\x98\x47\x65\x4c\x85\x14\x26\xbc\x11\x6a\x4d\x9b\x7d\xa2\x21\x2a\xc2\xd3\x78\x0e\x48\xb9\x0b\x47\x2d\x7b\x3e\x59\xd3\x9e\xe8\x4f\x69\x0a\x11\xd8\xf9\x14\xc2\xea\xe9\x68\x72\x92\x18\x7f\x5d\xba\xe7\x2b\xe9\x9b\x68\xb3\xed\xc9\x78\x5c\x9d\x1a\xf7\x64\x0c\xfe\xe6\x45\x54\xe9\x03\xd0\x32\x9a\xc4\xa4\x94\x4a\x25\xf3\x2a\x5e\xac\xde\xe5\xaf\x92\xac\x62\x70\xa4\x56\xb4\xb9\x58\x46\x3e\xde\x61\xde\x92\x2d\x8b\xf2\x1e\xce\xac\x46\x42\xeb\xa3\x23\x1f\xb2\x62\x16\xb4\x0c\xa3\x38\x80\x74\x07\x19\x7d\xe8\xc8\xa9\x36\x57\x8f\xf2\xaf\xe0\x9d\xb2\xf7\x7c\x92\x68\xc9\x6d\xa5\x73\x15\x3b\xa8\x07\x35\xb6\x25\xe9\xae\xac\x25\xca\x71\xa8\x8f\x0a\x5c\x17\xf2\x65\x41\x8e\x91\x42\x7b\x5c\x05\xb9\xeb\xe6\x66\xfb\xdb\x2a\x31\xf4\x0a\xe5\xd8\x75\x39\xca\x71\x83\x1b\xd4\x26\xb6\x21\xaa\x61\x6b\xbd\x32\x1a\x22\xe1\x10\x07\xfa\xa1\x5a\x65\x3e\x26\x5b\xcc\x31\x27\xa8\xa4\x97\x9e\xca\xc3\x80\xb8\x4c\x07\x70\xb6\xe7\x9f\xe0\x42\x9b\xa3\x4b\xe2\x63\x52\x9e\xd2\xca\x75\xab\xbd\xbd\x46\x57\xdd\x57\x16\x8d\x0e\xd2\x16\xc7\x48\x01\x3a\x52\x61\x45\x29\xf7\x9c\x36\x3b\x03\x0f\xa7\x9f\xaa\x78\x65\x02\x1c\x78\x33\xa5\x89\x3c\xea\x83\x10\xd2\xce\xdb\x03\x33\x3a\x2a\x1a\x92\x15\xb6\xf2\xd0\x2f\xa8\xac\x6b\x5e\xd7\x48\x96\xa7\xab\x17\x9f\x0c\x16\x37\x4a\xc1\x3f\x91\xfd\x9a\xf2\x4e\xf2\x8f\x56\x0c\xa5\x40\x7a\x11\x23\xfa\xc8\x45\x1d\x63\x86\xda\x63\x18\x07\x65\xdc\xd2\x13\xe1\x75\x6d\xcd\xa8\x28\x7b\xa0\xad\x99\xa7\x2b\xed\xa7\x3b\xb2\xbe\x1b\x6c\x6f\xde\x18\x36\x90\xd9\x39\x65\x5e\xb0\x39\x2b\x3b\xdf\x98\xf3\xcc\x28\x72\xf2\x82\xa7\xf3\x7b\x47\xc8\xd3\xe2\xba\x64\x55\xe5\x10\x8b\x1b\x21\x47\x2e\x32\x07\x6f\xb9\x7b\x10\x93\xc8\x29\x59\x55\x64\x37\xcc\x21\x8e\x60\x98\xbd\x02\x04\x73\xd8\x1d\x2e\xa5\xfb\x68\x42\x74\x41\x33\x47\x96\x0a\xf8\xb3\xc4\x11\xdc\xf7\xbf\x5b\xa8\x4f\x54\x39\xa2\xd0\x98\xe4\xd4\x59\xb1\x7c\x06\xfa\x42\x4a\x1f\x20\x2f\xeb\xc0\x24\xe4\x0d\x49\xb2\xdb\xe4\xbe\x1a\x4c\xf2\x05\x52\xa1\x9d\x17\x29\x1d\x36\xe6\x69\x33\x39\xa5\x26\x1b\x99\x06\x5b\x5a\x03\x84\xba\x93\xae\x3a\x6d\x90\xfb\x29\x53\x5e\xcb\xda\xf5\x44\x76\x80\x23\xb7\x70\x25\x29\xef\x97\x88\x45\x79\x74\x14\x03\x43\x95\xbf\x76\x8a\x28\x8f\xfc\x38\x46\x1b\x35\xa6\x80\x26\x38\x94\x68\x6b\x07\xe4\x9e\x25\x21\xcd\x4f\xd8\x1b\x48\xba\x41\x42\x4b\x16\xb4\xa4\xc5\xa6\xa7\x66\x53\x0d\x90\xb8\x86\x1c\x81\x01\x8f\xf2\x68\x12\x8f\x1d\x41\xe4\x4e\x2c\x2b\x4b\x21\x73\x4c\x5b\x65\x83\x1b\x4c\x64\x92\x69\xb9\xbd\x96\xb5\x35\x44\x8c\x9d\xed\x25\x69\x05\xe6\x4d\x5a\xb5\x20\x69\xd3\x96\xf7\x03\x38\xe4\xdb\x95\x4c\x3a\x65\xa5\xbc\x22\xd9\x66\xca\xac\x6c\x47\x1e\x69\x9e\x16\x58\xe1\x4d\xd0\x5c\x0d\x51\x45\xd6\x10\xa8\x50\xb6\x8d\xb3\x12\x45\x8a\xbd\x82\x42\x03\xf8\xb0\x90\x2e\xfa\xbb\x15\xcb\xe6\x7b\x30\x26\x6b\x38\xd1\xc5\x3b\x19\x24\xd7\xf9\xd2\x4c\x7d\x20\x14\x45\xf7\xc9\x12\x65\x38\x4c\xc3\x4c\xab\x1f\x09\x2a\x48\x49\x5e\x93\x14\xab\x9f\x6f\x84\x46\x16\xa0\x62\x3c\x26\x9f\x7e\xc9\xdc\x2d\xd5\xe4\x89\x39\xc1\xe2\xdb\x7c\x44\xe9\x6b\x90\x8d\x4a\x53\x59\x53\xa1\xab\x10\x94\xd6\x75\xa9\xa7\x16\xde\x96\x43\xd1\x34\x64\x4a\xd3\x30\xeb\xa4\xde\x2e\xef\x1f\x32\x64\x29\x3f\x2d\x0d\x7b\x4c\xe7\xca\xfe\xb1\x28\x3e\x8a\xdd\xf4\xf0\x13\xc4\xc8\xd4\xab\x84\x4e\xf8\xa1\x4c\xa6\x62\x67\x3b\xf6\xcf\xa8\x90\x21\xa2\x81\x6f\x06\x1a\x58\x2a\x3a\x03\x16\xaa\x9a\xb6\xc3\xc3\x29\xc2\x01\xb2\x6a\xb9\x66\x1c\x54\x4d\x59\x3d\xb2\x2b\xa1\x5b\x5e\x43\x32\xbe\x99\xf1\x0f\xe9\x92\x15\x6b\x8e\xa6\xa2\xec\x4f\x2c\x4f\xb1\xe6\xa3\x49\x1c\x1d\xc6\xb0\x73\x4d\xd0\x84\x30\xb2\x44\x29\x0e\xd3\xe0\x35\x61\x9d\x21\x07\xbd\xa7\xff\x26\xc7\x21\x0f\x5e\xc3\xc3\x83\x8d\x87\x39\x0e\xf3\xe0\x0d\xc6\xdd\xf5\xa1\x7e\x6e\xcb\x0d\x35\xa2\x42\x6e\x2b\xd1\xc0\x48\x2a\x63\xbc\x8a\x4d\x15\xb2\x1c\x70\x80\x49\x28\x8f\x0e\x84\x2e\xc8\xa3\xc7\xf1\x4e\x1a\x71\xc1\x48\x68\x22\x5a\x45\x2a\xd7\x85\x1f\x36\x5f\xc9\xa9\xd0\x5c\xa2\xc3\x3d\x16\x47\x07\xb1\x06\xe4\xd2\x77\x0e\xed\x3b\x13\x78\x43\x08\x63\xa2\x87\x4c\x5c\x60\x22\x0b\xe5\xe2\x86\x90\x7c\x98\x14\x11\x8f\x26\xf1\x50\xf6\x7f\xf9\xa4\xc3\x57\x84\x7e\xa9\x6c\x7a\xc1\xb0\x38\xed\x7e\x44\x13\x23\x7e\x1b\x4c\x52\x33\xb0\x05\x96\xb6\x51\x58\x4b\x05\x29\x30\x29\x1a\x72\xbb\x60\x43\x11\x1b\x1b\x49\xf4\x4a\xca\x49\x4e\x75\x1a\x39\x92\x52\x95\xfa\xd1\x6a\x4b\x62\xd1\x1c\xc2\xa4\x1a\xca\x7c\xda\x32\x78\xfc\x00\x3b\x3c\xc9\x38\xc5\xaf\x7e\x95\x67\x7e\xb8\x51\x47\x50\x92\xbd\x3d\x5e\xd7\x89\xbd\x78\x61\xef\xd6\x34\x90\x7b\xfc\x94\x8a\x6d\x9b\xd8\x23\x25\x92\x83\xc3\xc9\x9f\x7e\x9b\x24\x6a\x5d\x91\x11\xc7\xc4\x48\x51\x00\xcb\x05\x31\x8a\x70\x5d\x2f\x51\x1a\x95\xb1\xeb\x8a\x7f\xe5\x1e\xc9\x1c\x13\x27\x52\xea\x29\x68\x11\x70\xc6\x7a\x05\x6f\x13\x51\x8d\x29\xdd\x4a\x4b\xd5\x12\xb5\xda\x0a\xfe\x49\xff\x6f\xde\xfe\xbe\xbb\x6d\x1b\x5b\x1b\x87\xff\xf7\xa7\xb0\x78\x67\x78\x80\x08\x96\xe5\x74\xce\x59\xe7\xd0\x41\xf5\xa4\x69\xd2\x76\xa6\x6d\xda\x38\x9d\xb6\xc3\x70\xbc\x68\x09\xb2\x39\xa1\x48\x15\x84\xfc\x32\xa6\xbe\xfb\xb3\xb0\x37\x00\x02\x24\x95\x66\x7a\xee\xfb\xd7\xb5\x1a\x8b\x20\x88\xf7\x97\x8d\x8d\xbd\xaf\xeb\xf4\x1f\xe4\xd5\x6d\x5e\xb6\xdf\x54\x4a\xc8\x2a\x2f\xdb\xb7\x79\x75\x2d\xda\xb7\xba\xe5\x44\xb5\x14\x2d\x42\xaf\xb4\x60\xc7\xfe\xd3\xdb\x6f\x28\xac\xc1\x4f\x4e\x8f\x0e\x2d\x2f\xdc\x37\x02\xa7\x8f\x70\xe6\x6e\x6a\x04\x50\x31\x3f\x67\x77\xb9\xac\x80\x23\xfb\x5f\x06\x15\x08\xb0\x8c\x69\x3f\x8a\xa5\x05\x76\x39\x1d\xbb\x9c\x92\xe3\x68\xaa\x66\x1b\xd1\x34\xf9\xb5\x60\x0a\x97\x1a\xd0\x57\x5c\xa2\x76\xf9\x95\x8d\xc9\xfd\xad\x3d\x58\x6b\xfc\x65\x15\xb6\x19\xb5\xa7\x7b\x68\x96\xaf\x83\xb1\xd3\xed\x81\x5f\xe8\x19\x68\x70\xd4\x7b\x98\xc2\x5f\xbe\xf9\xce\xb8\x17\x7e\x5b\xe7\x2b\xb1\x8a\xd8\x17\x7a\x69\x1b\x8d\x8b\x70\xc2\x5f\x50\x5b\x56\x82\xcc\xa9\xf8\x30\x36\x4e\xbf\xc6\x9e\x16\x14\x39\xf2\x83\xe5\xb0\x5f\x5f\x22\xa8\x3b\x67\x74\x12\xab\xa3\x32\x3c\x63\x10\xfd\xe7\xbc\x50\x89\xf9\x1d\x4c\x38\x82\xa6\x00\x8b\x93\x13\x93\x30\xc4\xbc\x9c\x99\x04\x68\xdb\x12\xf7\xc0\x27\x73\x36\x01\x8d\x4c\x1c\x07\xf1\x3f\x9f\xb7\xed\xd7\xbd\x49\x91\x5e\x66\x56\x6f\x08\xf1\xa0\x4a\x1c\x6b\xc6\x22\x4b\x51\x8e\xd4\xdf\x10\xe1\x42\x4f\x81\xb6\x85\xd6\x32\xa7\x3b\xff\x0d\x58\xed\xf6\xa0\xe8\x66\xab\xfa\x62\x29\xeb\xb2\x5c\x04\x1d\x6d\x72\x04\xe0\xdd\x21\x1a\xf4\x81\x9e\x1b\x46\xb4\xdd\x86\x53\xe7\xa7\xbe\xad\x99\xa1\x39\xb3\xc2\xd0\x88\x4f\x02\xe7\x12\x6e\x3f\x9d\x74\xc2\xaf\xf4\x7a\x00\xa6\xb1\xc7\x85\x3e\x54\x4d\xe6\x4c\xd2\x9f\x20\xc1\x86\xc9\xb4\xc9\xd8\x64\x0e\x89\x1e\x59\x6f\xf5\x80\xf8\x12\x3e\xd8\x20\xfd\x66\x0e\xec\x66\x25\xa8\xd9\x49\x77\xf3\x6d\x71\xfe\x69\x42\x4a\xae\xd8\xf0\xbe\xce\x1d\x92\x3a\x55\xb7\x04\xa0\x45\x73\xe7\xe4\xbc\x28\x14\xf8\x07\x33\xc9\xf2\x45\x95\x54\x96\x50\xb1\xc9\x58\xc3\xec\x2b\xcf\x73\xa2\x58\x88\xa4\x5c\xd8\x72\xd0\x64\xb7\x40\x68\x15\x26\x69\x52\xef\xd9\xcf\xfc\xf4\x1f\x27\x9b\xe6\xe4\x94\xfd\xc6\x4f\x4f\xd0\x48\x80\xfa\x5a\xa8\xbf\x85\xfa\xef\x99\xaa\x7f\xda\x6e\x9d\x79\x81\x8b\xf6\x6b\x60\xea\x63\x6d\xc8\x7e\x66\xd1\xa6\x39\xf1\x90\x71\x7e\x63\x7f\x43\x9b\x84\xaf\xc6\xa6\x57\x78\xbf\x8d\xc8\x49\xfe\xf3\x64\xea\xdd\x7e\x77\x45\xfc\x2b\x2c\x1c\x45\x33\x33\x14\xa3\x68\x5c\xa1\x7f\x4d\xff\x3a\xdb\x15\xab\xe9\x74\x0f\x7f\xf9\x19\xfb\xab\xcf\x89\x0c\x30\x46\x63\xfa\xf2\xd4\x4f\xad\x87\x94\xf2\xb8\x67\x5f\x21\x37\xb3\x8f\xc5\x18\x7e\xc1\x55\x62\x34\xf5\xc8\x86\xde\x79\xbd\x33\x3f\x1e\x33\xd6\xc7\x8a\x2d\xeb\x6a\x5d\x5c\xef\x24\x68\x0b\xe0\x96\x9c\x32\xb5\x67\x8d\x50\x87\xc8\x15\xf1\x0e\x09\x6a\x60\x01\x86\xfb\xea\x34\x45\x8b\xf4\x57\xa2\x68\xc6\xe5\x51\xc8\xc7\x89\x6f\x2a\x1a\xb2\x47\x16\x7d\x5e\xe7\x01\xae\x32\x00\x94\x04\x19\x27\xbd\x9a\xeb\xb3\x58\x10\x80\x25\xd8\xb3\x7c\xb9\x14\x4d\x73\x48\xeb\xdd\x25\xdf\xb6\x6a\x44\x2b\xab\x2c\x7e\xbf\x3e\x95\x2c\xdc\x05\x8b\x2e\x61\x82\xf7\x2d\x0d\x3e\x32\x49\x59\x77\xcf\xb9\x90\x89\xa2\x43\x05\x53\x70\x1f\xd7\xef\xec\x60\x6a\xf7\xc0\x93\xe9\xa3\xe4\x44\xf5\xe8\x75\xb5\x20\x0b\xba\xe7\x5f\x75\x59\xb8\xae\x2f\x2d\xaa\xe3\x6a\x91\xaa\x2c\x51\x81\xb6\x92\xfa\x36\xcd\x28\x28\x18\x0e\x93\x2a\x55\xa9\xcc\xb2\x3d\xf1\x5b\x42\xaf\xef\x1e\x1b\x2c\xa9\xe8\xef\x0c\x3b\x23\x0d\x9a\x34\x7b\x6f\xf5\x31\xe6\x26\x6f\xbe\xcc\x55\xfe\xe9\x63\xbe\xab\x7b\x1c\x4f\xfa\xe5\x51\x5a\xbc\xd2\x9f\x3f\x01\x87\x85\xbf\xb2\x1f\xcd\xdf\x5f\x8c\xf5\xc2\x23\x9a\x2e\x3c\x7d\xbf\x6f\xdf\xa7\xf6\x77\x46\x9f\x9c\xb2\xbf\xf3\xd3\xf4\xc5\xc9\xdf\x33\x7f\xa5\xf9\xcb\xc0\x2c\xae\xeb\xf3\x3e\x5f\x09\xb0\x28\xf3\x68\x95\xab\xfc\x44\x0b\x20\x76\x7d\xf9\x3b\x8b\x4e\x9e\xc4\x51\xdf\xc9\xbf\x3f\xa0\x80\xcd\x36\x30\xd7\xd3\xe2\x1c\x1c\xea\xe4\x18\xc1\xbf\x92\x3b\xd8\x11\xe1\xf8\x9a\x97\x8d\x88\x70\xb3\x25\x91\x5e\xd2\x11\xc3\x09\x90\xaa\x04\xe7\x7c\x2a\xa6\x51\xb4\x98\x8a\xe4\x17\x67\xed\xf1\x97\x8b\x37\xdf\xa3\x41\x02\xcc\x19\xba\x27\xd2\x1e\x1d\x0b\xfa\xb8\xff\xd1\x1b\xbe\xe8\xd2\x64\x21\xe5\x3b\x9b\xb1\x4b\xff\x86\x7b\xd0\x89\xce\xfd\xda\xbc\x24\x82\xb6\xed\x13\xef\x69\xcf\x56\xe1\x37\xc1\xfc\xfb\x71\x86\xf3\xd3\x96\xc1\x4c\x99\x2f\xfb\x9f\xd0\xc7\x1f\x8d\x24\x65\x80\x16\x2f\x3f\x96\xea\x93\x7e\xaa\x97\x07\x93\x7d\x12\x24\x0b\xc2\x89\x77\xa7\x3f\xc8\xa4\x07\x75\x8f\x57\xbc\x2c\xd7\x87\xe7\xda\xb3\x45\x0d\xc6\x10\x9a\xb6\x78\x57\x39\xb0\x6f\xff\x08\x0b\x49\x8d\x86\x5c\xb5\x77\x07\x3e\x79\x82\x6f\x58\x64\x1a\x51\x8f\x95\x26\xa2\x86\xfb\x49\x3a\xdf\x40\x9c\xc7\x39\x1c\x0e\x74\x3e\xa4\xe2\xfa\x01\x25\xe9\x0e\x80\x0c\x87\x2a\xde\x3d\xfd\x4a\x2a\xa3\x46\xfd\x4f\x4a\xd9\x5f\xd0\x0d\x12\xb8\x90\x8f\x9e\xc0\x50\xe8\xe7\xea\xa3\x67\x16\xe6\xc7\x50\xb7\x82\x0b\x23\x1c\x71\x3d\x91\x1a\x07\x97\xe5\xbb\xa7\xc9\x4f\x7d\x1a\x7b\x8b\x7b\x51\xac\x49\xed\xad\xb3\x0e\x87\xd0\xad\x01\x44\xda\xe6\x62\x82\xd2\x85\x4c\xfc\x37\x7f\xe9\x85\x1e\xfd\x6e\x61\x80\x29\x7f\x6f\x50\x51\xd9\xf0\x9c\x87\x6f\x74\xcd\xc7\x87\x63\x8f\xee\x7e\x90\x93\x19\x51\xae\xe6\xe6\xae\xdc\x8c\xa9\xdf\x76\x62\x27\xc6\x77\x57\xdd\x12\x9d\xc5\x14\x07\x8f\xcd\xf5\x7d\x44\xa7\x11\x7c\x14\xb1\x8a\x3f\x71\xfb\x0f\x93\x71\x0c\xa8\xca\x03\x4e\x75\x1d\xcb\x9b\x00\xbe\x75\x8d\xa4\x34\xa9\xba\xcb\x18\x60\xa5\xdb\xb3\x95\x18\x16\x8a\x3e\x02\x97\x9c\xce\x1f\x91\x78\xf9\xe5\x0c\x62\x61\xe6\x95\xe3\x82\x02\x5a\x28\xe7\xdd\xc4\x2f\x67\x97\x10\x4d\x9f\x04\x1b\x04\x76\x8d\x8a\xca\x29\xc2\xb9\xe1\x69\xf1\xbe\xa9\x4e\x4e\xc0\x63\x96\xe8\xbc\xb8\x31\x5d\xb5\xa0\xb9\xfe\xb7\x94\x99\x0d\xa6\x86\x7b\x2c\xe6\xae\x0a\xbd\xd6\xbf\x9c\x99\xca\x98\x75\xa2\xa6\x94\x4d\xaa\x38\x86\x09\x0a\xd7\x27\xa0\x8c\x20\x7a\x51\xe8\xca\x39\xce\xdb\x6d\x9a\x1d\x62\x44\x47\x6e\x6d\xc1\x0e\x90\xb0\xce\xb9\x66\x96\xec\x11\x2f\x67\x0e\xeb\xcd\xfb\x9a\x1c\x6f\xe9\x49\x95\xeb\x62\x99\x21\x9f\x50\x7f\x29\x1a\xeb\x21\x2c\xe7\x33\x7b\xe5\x3c\x62\xc9\x43\x14\x17\x4c\x70\xdd\xb2\x4c\xea\x76\xee\x8f\xf6\xe7\x72\x61\xfb\xd5\xae\x66\x8e\x77\xc2\x49\x5d\xc9\xe8\x40\x0f\x47\x85\x9b\x5a\x47\xe1\x08\x30\xb3\x80\x99\xce\x15\x68\x06\x6f\xbb\x54\x0b\x4b\x60\x2d\xd3\xf5\x5b\x37\x6d\x46\xc6\xe5\xc7\xa7\xde\x68\x22\xcb\x52\xe4\xf2\xc7\x8f\xa6\x63\x06\x0c\x8e\x76\x96\x66\xa3\x2a\x3f\x5f\x76\x3b\x63\x45\xa8\x5c\xc2\xbd\x80\xe5\x81\x85\x55\xe3\xeb\xd3\x4e\x4e\xaa\xb6\x2d\x82\x23\x71\xcd\x52\x2d\x1d\x81\x50\xf6\x91\xce\xc3\xce\x00\x97\x1d\x2c\x21\x62\x50\x11\x69\x16\x83\x3a\xcd\x33\x26\x82\xc1\x8a\x54\x27\x30\x20\xf5\xba\x3f\x9d\x32\xf3\x04\x63\xb0\xe9\x0e\x69\x0d\xf1\x35\x72\xca\xa9\x85\x90\xcc\xf5\x24\x5b\x68\x69\x6a\xf5\xf4\xfd\xac\xa5\xef\x57\x53\xb2\x48\x52\xf1\x2a\x83\x17\xef\x57\xd3\x96\x9e\x1a\x76\xb6\x3e\xe5\xeb\x3f\x2c\xb3\x2e\xe5\x2d\x25\xd1\x54\x88\x69\x44\xe1\x8c\xf7\xa7\xec\xa9\x23\xcc\x95\x82\xa7\xd1\xbb\x7a\x1b\xb1\xe8\x6d\x71\x7d\xa3\x22\x16\x7d\x51\x2b\x55\x6f\x22\x16\x7d\x2b\xd6\x2a\xca\x58\x25\xf8\xe0\x8c\x1f\xb2\xac\x7a\x97\xb6\xce\x3e\xae\x07\xb7\x0c\x37\x42\xb5\x3e\x77\xd5\x9b\x6d\xdd\x88\x15\x58\xfd\x55\x20\x88\xbd\xad\x6b\x03\x9e\x43\xfe\x40\xb2\x6d\x1b\x24\x42\x6a\xc0\x51\xef\xc5\x33\x4d\x9a\x8f\x73\xc3\x46\x55\x5d\x81\x88\x47\x04\x47\xc6\xae\x46\x3d\x94\x40\xac\x06\x94\xdf\xad\x71\x41\x09\x42\xe3\xb8\x10\x70\x16\x74\x5f\x5f\xce\x96\xb0\x0e\x45\x26\x46\x04\x30\xc8\x03\x0d\x85\xb3\xce\x65\x39\x7f\xc4\x91\x57\xe3\xc1\x2c\x4f\xeb\xcc\x66\x93\xd6\x19\xeb\x7e\x72\x65\x59\x78\x6a\xd4\x51\x48\xc7\xbb\x0a\xfb\x07\x65\x8a\x7a\xb1\x75\x42\xdd\xc9\xae\x93\xb2\x77\x62\xac\x10\xcf\xe6\xac\xe1\xd5\x10\x87\xf4\xb8\x9a\x2d\x77\x92\xf8\x58\xf1\x7e\x97\x98\xad\x0d\xcc\x11\x76\x5c\x8f\xe2\x52\xcb\xea\x12\x30\x64\x09\x44\x40\x2e\xfc\x54\x65\x8b\x28\x4a\xa2\xed\x7d\x44\xd9\x32\x70\x93\xe8\x45\x6b\x5b\x1d\x69\xc2\x79\x19\xc7\xd3\x1d\x8d\x63\x25\xd0\x9c\xd8\x65\x87\x5e\xb8\xcb\x38\x5e\xa6\x9f\x65\xe0\xec\x0e\x12\xd9\xee\x94\x3f\x63\x25\x2f\xdb\x56\x87\xb3\x25\x9f\xee\xda\xf6\x0c\x27\xe9\x25\xb6\x0b\x14\x76\x39\x2d\x29\x23\x67\x27\x35\x7d\x4a\xce\x4e\x48\xad\x8b\x7d\xba\x6b\xdb\xd9\x7f\x52\xfa\x9c\xcf\xe3\x98\xe4\x7c\x4e\xd9\xf2\x94\xd7\x47\xcb\xa7\xfc\x19\x1b\x7c\x6c\xae\xc4\xf7\x9e\x5f\xc0\x92\x4f\x97\x6d\xab\x73\x9c\xeb\x8d\x38\x3d\xcb\x16\xcb\x29\xd1\x7f\xa7\x67\xf4\xa9\x4c\x9f\x65\xc9\x54\xff\xcb\x2a\xbd\x10\xcc\x76\x55\xa1\x78\xc9\xaa\x59\xa3\x72\xa9\xf8\x92\x55\x33\x51\xad\x38\xb8\x94\x83\x7a\xa4\x14\x30\x2e\x6c\xa7\x79\x04\x95\x80\x0d\x13\x4e\x80\xca\x73\x64\x62\x05\x2f\x85\x7f\xa8\x07\xa5\x85\x9c\x5d\xd5\xab\x87\x80\x45\x44\xf6\x9c\xd3\x00\x2f\xc3\x8c\x5f\xe5\x8d\x5f\xf6\x31\xea\x4a\x37\xee\x51\x98\x88\xae\xca\x7a\xf9\x21\xa2\x0c\x8a\xc0\x8b\x80\xf6\x73\xc0\x6a\xa9\x85\x5e\x34\x82\x98\xb3\xbc\x03\x26\xa9\x9f\xe7\xe7\xf5\x74\x4a\x49\x05\xf0\xdd\x66\x22\x82\xef\x78\x15\x4e\x3f\xa6\x16\xc4\x95\x40\xf7\x42\xa1\x07\x3e\xae\xc6\x95\x57\x85\xb6\x45\x7c\x83\xb4\xd6\xa3\xb2\x97\x08\x07\xae\xb6\x08\xf5\x9d\xbd\xd9\x9d\x0b\xb0\x62\xc1\x74\xd1\xda\x89\x26\x98\xe3\xc4\xcb\x11\x43\x18\x8a\xee\x5e\xc6\xa8\x87\x43\x07\xce\xb9\xab\x17\x5e\x55\x15\x88\x4c\xae\x6b\xd8\x2b\x8f\x7e\xe3\x21\x19\x05\xd2\x47\x73\x53\xdf\x8d\xcc\xc4\xb5\xd9\x69\x41\x56\xbe\x29\x56\x63\xf7\xfe\x26\x0e\xdd\x33\x55\x5f\x5f\x97\x63\xbb\x70\x74\x55\xd7\xa5\xc8\xfd\x8b\xd9\x85\x39\x54\xe8\x8c\x89\xb1\x6b\xd7\x19\xd8\xdf\xfd\xad\x3f\x37\xb9\x2c\x2e\xf1\xaf\xfd\xd0\x3e\xe2\xb7\x7b\xb7\xc1\xdd\x08\x54\x15\x58\x1c\xa6\x16\x90\x99\x80\x13\x7d\x25\xf8\x69\xe8\xb5\xd4\x73\x5a\x3a\x2d\xd8\x56\x7f\xfe\xa4\xfd\xc7\xa6\x5e\xed\x4a\xf1\xa4\x7d\x7f\x4a\x16\xc9\x3f\xf3\xdb\xbc\x15\xcb\x4d\x4e\x9b\xa5\x2c\xb6\xea\xb4\x60\x1b\xc1\x1f\x11\xda\x2d\x49\xcf\x58\x64\x89\x87\x36\xbb\x52\x15\xdb\x52\xf0\xff\xb0\xbf\xfe\xe3\xf3\x88\x45\x1d\xe5\x50\xc6\xd4\x8d\xc8\x57\xf8\x11\x78\x94\xe2\x7b\xf3\x33\x63\xcb\xba\x4c\xd2\x67\xee\xe5\xf3\x65\x5d\x5e\xcb\x7a\xb7\xc5\x68\xee\xc9\xfb\x42\xc9\xe0\x03\xa5\x27\xa6\x49\x14\x7e\xfa\x51\x57\x49\xfa\x59\x3f\xea\x73\x25\x4d\x74\xf9\xf9\xc8\x37\x97\xc6\x63\x31\x49\xe7\x2c\x8a\x58\x14\x65\xde\x32\x72\xeb\x73\xc1\x3a\xd5\x02\xff\x1d\x6a\xcc\xc5\x01\x1e\x43\x04\xb2\xa1\x89\xf7\x79\x9f\x3e\x68\x31\xc2\x28\x64\x3f\x4b\x33\xd6\x53\xfb\xa1\xc3\xdb\xc2\xd9\x83\x0a\x50\x52\xcb\x90\xd3\xb3\x87\x6b\x06\x8b\x9f\x3d\x88\x3f\xaf\xce\xe5\x74\x4a\x71\x22\x8a\x54\x66\x2c\xba\x2e\xeb\xab\xbc\x7c\x75\x9b\x97\x11\x78\x10\xe3\xea\xa0\xfa\xef\x28\xdd\x6f\xc4\xac\xde\x2a\xe8\x2f\x8e\xbf\x8b\xba\x62\x1b\x31\x83\x36\xd6\x41\x6a\x5d\xd7\x4a\xff\xb0\xfd\x0a\xbf\x73\xbc\xdd\xda\x80\x01\x43\xbe\x82\x2f\x6e\xe0\x71\x05\x43\xfc\x5a\xb0\x2b\xc1\x2e\xf5\x68\x6e\xe3\xff\xb3\x78\x7f\x37\x3d\x3f\xed\xba\xe4\xee\x10\xa0\x92\x05\xf5\x60\x6b\xae\xcc\x52\x6d\x17\xfc\xd7\x32\xbf\x86\x35\x9b\x5a\xb0\xa2\x39\xdb\x76\xcd\xb0\x7a\xbe\x3d\x5f\xa1\xb3\x02\x00\x2e\xad\x32\x8a\x88\x93\x35\xed\x5f\x7a\xd4\x94\xda\xd6\xbe\x61\xb5\x87\x48\x54\x67\x49\xdd\xdd\x75\x5c\x1a\xb7\xeb\xda\x28\x3f\x72\x0e\x88\x0a\x01\x9d\x56\xdf\xd7\x79\x55\xdc\xea\x85\xb5\xe1\x64\x65\x36\xf0\x9a\xb6\x6d\x8a\x63\x92\x0e\xc1\xec\x77\x7c\x23\xd2\x26\x6b\xdb\x8d\x98\xd9\x41\xcc\x72\xcf\x69\x78\xa7\x37\xd3\xcb\xd9\x8d\xda\x94\x3f\x48\x61\xec\x73\x6b\x3a\xdd\xe9\x6d\x75\x09\x6e\xfd\x88\x22\x94\xf3\xbc\x83\x4c\x3e\xea\xea\x97\x07\xfc\xf7\x24\xe7\x6b\xdf\xe6\xd9\x07\x26\xe5\x51\x84\x6a\x38\x83\xe9\x62\x2b\xf7\x4e\xdc\x1b\x01\xd3\xac\xeb\xeb\xde\x57\xba\x2b\xce\x6b\x7e\x93\xae\x2c\x92\x44\x05\x3e\x44\xc6\x96\xb0\x66\x15\xfd\xfc\xe4\x8c\x82\x39\x92\x01\xbc\x72\x8d\x5c\xf2\x02\x2e\xe3\x73\x7e\x2b\x48\xd8\xb8\x35\x65\x11\xae\x65\x11\xdc\x2c\x3d\x08\x92\x53\x86\xa4\xcb\x4b\xc8\x31\x4f\x97\x90\xe3\xd6\xf6\x94\xc5\x48\x8c\xa8\xf3\x40\xad\x3b\x02\xcb\xfd\xb5\x16\xe8\x0f\x8d\xaa\x20\xef\xea\x40\xc7\x92\xab\x2e\x89\x3e\x15\x5b\x9f\x5a\xcd\x30\xb1\xc1\xda\x1e\x51\x76\x25\x7a\xef\x2d\x1d\x1d\x8b\x3a\x62\xba\x41\x24\xc3\xcf\xa6\x9b\xe0\x3a\xa4\x72\xbb\x12\x94\x6d\x11\xc4\xf3\x65\x59\x57\x82\x5f\x8b\xd9\x52\xff\x80\xbe\x9a\xcc\x69\xef\xc9\x0d\x0e\x0b\xfc\xa9\x13\xf4\xbd\xd3\x75\xa7\xe6\x52\xe4\x9f\xdf\x3f\x3f\x75\xbf\x23\xb6\x9d\x55\x35\x64\xf0\x12\x3f\xe3\x93\xc9\x20\xa7\x2e\x6d\xdf\x75\x1c\x16\x82\x57\x7a\xb3\xfa\x20\x1e\x4e\xd9\xbd\xd9\xf5\x36\xf5\xae\x11\xed\xb6\x2e\x2a\x25\x64\xbb\x44\x07\xe0\x8d\xa8\x76\xed\x4a\xe6\xd7\xed\x4a\xd6\x5b\xda\x2e\xcb\x62\xf9\xe1\x94\x5d\xc0\x37\xe9\x3f\x66\xd9\x53\xaa\x4f\x83\x33\x32\x9b\xd2\x96\x7a\x4b\xc9\x1b\xe1\xd3\x07\xb8\xe0\x17\x5e\xb0\xc7\xb8\xfd\x41\x84\xee\xc5\x9c\xf3\x9e\x79\x93\x3b\x01\x04\xa0\xae\x9d\xc5\xd3\x7e\x4f\x28\xe7\x24\x02\x48\x58\xd0\x18\x79\xd2\xde\xbb\x1e\x4a\x1b\x1c\xbd\x58\x13\x5e\xbb\xba\x8b\xaa\x47\x7b\xf5\x3a\x38\x7f\x4b\x50\x98\x56\x6d\x2b\x99\x74\x47\x70\x45\x21\xf9\x06\x92\x57\x69\x93\xb1\xda\x93\x98\xf4\xac\x83\x4b\xde\x0a\xe1\x61\x38\x2f\x16\xa4\xe0\x92\x55\xdc\x25\x91\x98\x17\x71\x3c\xbc\x37\x93\x3a\x76\xc5\x2a\x17\xd7\x3c\x7a\x25\x30\x78\xe2\x05\x2d\xf8\x0b\xe1\x66\xf0\xa4\x70\xc0\x01\x3e\x1a\x7e\x0d\x47\x8a\x82\x91\x62\xf4\x60\x4b\xe8\xac\x5e\xaf\x89\x00\x7b\xa0\x31\x13\xc5\x3d\x9d\x5d\xef\x8a\x15\xcf\xe1\x0f\x80\xe5\xc1\xf3\x25\xfc\x99\x4e\xc1\x74\x6b\xa8\x83\x11\xb7\xa2\x52\x68\x61\x84\x4e\x11\x05\xab\xe0\x46\xb9\xeb\xa4\x97\x0e\x2e\x52\x2e\xc8\x13\x77\x09\x31\x39\x03\x45\xa9\xfb\x5e\x87\x3d\x3a\x92\xeb\x64\x72\xc6\x6e\x80\xd5\x45\x0e\xee\x91\x2a\xe0\xa2\x36\x7b\x2c\xe4\x0a\x67\xb5\xb3\x58\xcc\x8a\xe6\x9d\x2c\xae\xaf\x85\x34\x2e\x59\x0a\x9d\x39\xad\x16\x9d\x12\x9b\x23\x60\x19\xe4\x25\x1c\x05\x1f\xf7\x74\xb6\x12\xa5\xb8\xd6\x8b\xaf\xa5\xa5\x57\xf5\xf6\x07\x59\x6f\xf3\xeb\x1c\xeb\xea\xda\x3f\x1f\xb1\x3e\x7a\xd2\x29\x9c\x15\xcb\x41\x61\x6a\x4b\xc6\x4c\x39\x08\x65\xf9\x84\x73\x52\x84\x05\xd7\xc7\x86\x45\xf0\x39\x70\x54\xf3\xc7\x3d\x44\xef\xfa\x1a\x4a\xf4\xcd\x66\x23\x56\x45\xae\x44\x50\x34\x26\xc0\x6d\x4b\x54\xea\x4b\x5c\x0d\x40\xcf\x73\xdb\x71\xef\xe4\xdd\x5d\x44\x90\x95\xb9\x19\xb6\x6d\xa2\xb0\xe9\x88\x53\x5f\xe7\xe9\x3c\x63\x97\x33\x30\x8c\xe8\xae\xb4\xf5\x10\xb2\x80\xce\xd6\x7f\x93\x7d\xac\x7c\x5a\x0e\xf7\xd4\x8c\x9d\x56\x5b\xef\x5a\xe1\x00\x78\x23\xe8\xde\x84\xf1\x47\x94\x9c\x92\xc7\xa1\xa7\x5c\xc0\x27\xe1\x4b\x31\x96\xcf\x81\xdd\xda\x6c\x28\x32\x2f\xc0\x6d\xca\xcc\x8c\x28\x38\xe6\x91\x9a\x4b\x6a\x43\xc0\xa6\xcc\xa2\x55\x80\x82\xfa\x90\x57\xbd\x00\x24\x19\x3b\x49\x64\x6f\x92\x30\xb2\xe3\xb7\x58\xfe\x86\xb6\xad\xf7\x04\xe8\x9e\x24\xe7\xb7\x26\x4b\x34\xe2\xb0\x4f\x81\xd9\x52\xff\x46\xe4\xb2\x6b\x27\xd3\x45\x40\xa8\xaf\x10\x65\xce\xbe\xd2\x27\x3b\xc0\x79\xb0\xfa\x1a\xcf\x72\xcd\x50\x0b\x53\x56\x72\x62\xae\x1a\x22\xea\x5f\x1a\x6b\x69\xc9\x4a\x76\x25\xdc\x18\xf3\x0d\x07\xac\x2f\x94\xaa\x54\x5a\x66\x06\x6d\xe8\x2c\x63\x5b\x4e\x9a\xf4\x99\xa1\x23\x32\xd0\x37\x33\x8b\x7d\x43\xd9\x2a\x8e\xc9\x9a\xf7\x67\xda\x0a\x66\x1a\x5b\x71\x52\x2c\xd6\xc1\x7c\x4b\xd6\xb3\xab\xa2\x5a\x19\x86\x83\x15\x3b\xf8\xed\x92\x77\x37\x2b\x00\xa5\xb6\x62\xb5\x2c\xae\x21\x8d\x0d\x5e\x3d\x56\x6e\xd5\x90\x4c\xf7\x49\x82\x3d\xc4\x6c\xdf\x26\x05\xf3\x71\x30\x12\xe8\xe9\x03\x20\x19\xc6\x47\x9b\xb2\x6e\x55\xda\x1a\x5c\x9f\x59\x04\xd7\x0d\x8c\xdc\xf0\x1d\x8a\xbe\xc4\xfc\xe4\x69\xd6\xad\x26\x2f\xeb\x5d\xa5\xf8\x9c\xad\xf5\xac\xdb\x6d\xe3\x78\x72\x36\xe1\xdc\x3c\x75\x70\x15\x5b\x96\x83\x76\xb1\x6f\x84\xa4\x17\xa2\x81\x61\xd2\x8a\xe5\x94\xb2\xb5\x7e\xa1\xdb\x59\xff\xb5\x29\x2d\x29\x5b\xda\x11\x6d\x47\x68\x18\xc0\xf1\x0f\xa5\xac\x58\xdc\x58\xb7\x95\x9b\xb0\xbc\xd3\x29\x9b\xb3\x25\x4d\x8c\x58\xba\xec\x96\x69\x9c\x90\xba\x92\xde\x7d\xd9\x1f\x98\x98\xdd\x85\x71\x1c\x07\xd3\x34\x8e\xfd\xf9\x63\x11\x40\x3f\x71\xc8\x16\x6b\xf2\xbf\x1a\xb5\x98\xdd\xc1\xc1\x07\xdd\xcb\x49\xf5\xf1\xc1\x0b\xb4\x20\xac\xe1\x0d\xd0\x71\xf5\x08\x8f\xde\xbf\x9f\xd1\x68\x6a\xc7\xd0\xfb\xf7\x33\xb2\x48\x66\x4f\xdf\xbf\x9f\xb5\x34\xa2\xd3\x88\xe8\x5f\x4f\x68\x04\x14\x14\xfc\xc6\xc3\xdc\x3a\xa7\x4b\x7e\x03\x90\x5b\x45\x1c\x6f\x26\x9c\x2f\x67\x76\xe0\xb7\x2d\x20\xec\xeb\x5e\x85\x70\xec\xf6\x26\x8e\x27\x0d\x8e\xdf\xe5\xcc\x0d\x5f\xbd\xd9\xc4\x71\x05\xf1\x1a\xc7\xe8\x48\xa2\xa7\x4f\xc1\xdc\xae\x6d\x27\x5d\xb8\x1e\xd2\x37\x01\xce\x96\xff\x4d\x6f\xc8\x9c\x9c\xb0\xb5\xd1\xda\xc5\xb1\xfd\xd5\x8d\x4a\x7a\x94\xc7\xf1\xe4\xa6\xdb\x85\xf4\x89\x26\x97\xab\xfa\xae\x72\x53\xc2\x06\xd8\xaf\xb6\xcc\x5b\x29\x2f\x7d\xcb\x4a\x22\xd8\xaa\x7b\x69\xaf\x09\x61\x1a\x76\xf0\xcc\xab\xe3\xa2\x3a\xde\x51\xdb\x97\xee\xf2\x6d\x35\xd5\x83\x02\x86\xe9\x64\x4e\x8f\xfa\xc6\x26\x3b\x18\x91\x2e\x76\x84\x99\x1c\xe3\x80\x8c\xe8\x1e\xfc\xa7\xb6\x03\xc7\x94\xc0\xe5\x4f\x0f\x7b\x37\x88\xd6\xc5\xbd\x16\xba\x76\x70\x63\x82\xe7\xb3\xfe\xad\x1c\xac\xca\x9e\x50\x10\xd9\xdc\x40\x32\x49\x1b\xc4\x55\x83\x71\xb5\x1c\x0c\x4e\xf7\xd6\x28\xf8\xf5\x01\x95\x37\x4c\xf1\xb3\x73\xf5\xbc\x9f\x13\x60\x9e\xec\x52\xe5\xd9\x3b\x1b\x1e\xd5\xa6\x1b\xd3\xc0\xf5\x80\x37\x5c\x93\xa5\x16\x2c\xbe\x34\x35\x6e\x5b\xe8\xaa\x20\xcc\x73\x8e\x6f\xdc\xb1\xdd\x96\xd1\x2c\x3c\x8d\x1f\x89\x95\x88\xc0\x42\x0a\x9e\xa7\x6a\x3a\xcd\x28\x8c\xd4\xa2\xf1\x24\x86\x0b\x55\x6f\xb7\x62\x45\xe8\x39\x1a\x4b\xce\x96\x3b\x29\x45\xa5\x4c\xd1\x8a\x99\x28\xc5\x86\x49\x9d\x4a\xcd\x0b\x97\x4d\x2a\xbd\xe4\xc6\x24\x11\x2f\xdd\x66\x26\xdd\xac\x30\x43\xb0\x9e\xf9\x21\x7e\x04\x7b\xd8\xf5\xe7\x11\x69\x4c\xbe\x6f\xae\xfe\xc9\x6b\xd6\xcc\xf4\xee\xc3\x6b\xf8\xd3\xd9\x86\x91\x8a\x93\x81\xc8\x59\xbb\xb9\x6b\x64\x4f\x4c\xa8\x6d\x6b\x5b\x15\x6a\xf6\x70\x53\xd3\x1d\xf0\x58\x68\x21\x9f\x34\x33\x29\x9a\x5d\xa9\x38\x68\x8c\x9b\xa1\xdc\xd7\x0c\x25\xd7\xee\x02\x70\x39\xdb\xd6\x8d\xb2\x7d\x17\xc7\xe1\x73\xd0\x97\xcc\xe6\x04\xf6\x5c\xd8\xc0\x87\x8d\x63\x60\xc8\xa7\x19\xdb\x71\x15\x2e\x0c\xac\xe4\x62\x86\xf4\x21\x80\xbb\x1e\xc7\xa5\x6f\xfd\x42\x22\x38\x77\xfa\x7c\x08\x62\x86\x84\x0b\x9f\xf3\x33\x63\x91\x5a\x6a\x59\xe7\xa6\x68\xce\x4b\x5e\x06\xee\xe7\x20\x7b\x1a\xf0\x2d\x3f\x59\x9b\xea\xa4\x63\x71\x00\xbb\xe5\xd2\x31\x9a\x9b\xa1\x6a\xbc\x73\x1f\xf7\x0c\xb9\x0b\x76\xa0\xd8\x73\x82\x6a\x9e\x16\xba\x07\x01\xec\xd4\xad\x7d\x96\xf8\x36\x4f\x8b\x8c\x57\x81\xbc\xb0\xb8\x24\x05\x0a\xc4\x06\xf7\xa2\x04\x9f\x4e\x03\x32\x84\xaf\x0c\x1f\x6d\xe9\xf6\x2e\xca\x74\x4a\x71\xec\x9c\x5d\x8f\x6a\xb7\x4e\x36\x06\x3e\x56\x8f\x82\xa4\xec\xfa\xa1\xde\x3b\x3b\x9d\xd2\xb8\x61\x3d\x57\xbf\xfb\x95\xb2\x18\x90\x80\x75\x0b\x42\xb5\x1e\x27\xbd\x5e\x1d\x37\x29\x1d\x1c\x02\x98\x60\x8f\xa2\xda\x6d\x84\xb5\x26\xed\x5b\x97\x82\x95\x27\x38\xe0\x78\xe7\x45\x6b\x1a\xa5\x27\x40\x51\xe5\x25\x24\xea\x6c\x60\xc6\xde\x05\x57\x82\x1f\xff\x7c\xf0\x26\x15\x59\xcf\xba\xf5\x60\xfd\x8c\x41\xc3\xef\x54\xe9\x4e\x16\xca\xfe\x36\x46\xb5\x70\xc9\xb0\x67\xeb\x62\x1c\x66\x24\x75\x46\xc2\xd9\x42\x24\x7a\x0f\x30\x2d\x09\xc6\x72\x66\x45\x48\x1e\xcb\x3a\x5f\x25\x8f\x55\xfd\xc5\xee\xca\xd8\xe6\x32\x18\xc2\xc9\x23\x48\x8a\x23\x96\x94\xba\xc0\x6d\xeb\x34\x00\x37\xc2\xba\x56\x18\xf0\x4c\x35\x83\x04\xe2\xf8\x03\x51\xcc\x6a\xcc\xe2\xf8\x25\x00\x2d\xe2\xf4\xd0\x87\x2d\x36\x39\xdb\x33\x73\xa8\xf8\x7f\x93\x0b\x65\xba\x36\xee\xc2\x60\xc4\x26\xd4\xae\x0f\xff\x66\x26\x66\xc7\x74\xf9\xb4\x2d\xbc\xcf\x61\x97\xbe\x12\xeb\x5a\x8a\x5d\x85\x0d\xeb\xaf\x72\x61\x09\xba\x4b\x05\x5c\xed\xf4\xfa\x13\x8c\x21\x30\x85\x0d\x42\x66\x58\x4e\xd0\xb8\xb9\xef\xe8\x7e\xbf\x47\x67\x14\x27\xa6\x0c\x4c\xef\x47\xdd\x43\x74\x86\x63\x5e\x23\xc6\x94\x71\x36\x4c\xca\xa2\xc4\xde\x14\x4d\x00\x50\x85\x51\x9d\xbb\x50\x30\xd6\x98\x02\x17\x54\x5c\x0d\x17\x23\x93\xc8\x22\x3a\x81\xc9\x3a\x46\xc3\x80\xa2\x31\x7b\xcb\x0f\xb8\xd3\x88\x15\x77\x78\x95\x2e\xc8\x12\x6d\xc2\x32\xde\x7f\x69\xb6\x2e\xe1\xb7\xdb\xe2\x8d\x48\x5e\xd8\x2c\x71\x57\xb7\xc3\x20\x8e\x3f\xc3\xdd\x00\x9e\x3c\x2b\x64\x1b\xd2\xed\x00\x89\x0d\xc3\x84\x42\x29\x41\x84\xcf\x18\x05\xe0\x6a\xc5\xca\x45\x09\x9e\xcd\x65\x23\x36\x01\x53\x78\x30\x84\xc3\xa6\xaf\xca\x99\xa9\x62\x23\x2e\x54\xbe\xd9\x72\x6c\x51\xfb\xd8\xb6\x5f\xe6\x4a\xcc\xaa\xfa\x8e\x18\xa5\x4f\x37\xf7\x39\xcc\x81\xfe\x1a\xca\x1f\x3d\x1c\xb2\xc4\xbc\x66\xc3\x16\xd7\x4d\x35\x26\x20\x61\xf8\x47\x24\x1d\x8c\x70\x51\x6c\x76\x50\xcd\x64\x72\xc6\x42\x81\x61\xe8\x35\x3d\x1c\x1a\x47\x87\xc6\xc1\x1b\xc1\xf4\x1e\x6e\x5e\xbb\x5c\x80\x99\xaa\x27\x96\xec\x59\x4f\x2a\xf9\x77\x32\x1e\xd6\xeb\x63\x59\x0f\xc4\x1f\xcc\x7b\xac\x95\xfe\x9d\x42\x7c\xa4\x95\x7f\xaf\x34\x07\x94\x76\x78\xe3\x3d\x28\xed\xde\x21\x2d\xe5\xa5\xfa\xab\x78\xd0\x7b\xcd\x15\x6c\x0b\x80\x67\xb6\xd4\xd3\xbd\x74\x1b\xd4\x4d\x5e\x5d\x8b\xd5\xbb\x7a\x07\x78\xf2\x3a\x44\xc9\xd2\x7c\xb5\x12\x2a\x2f\x4a\xfd\x0b\x3a\xe3\x87\x9b\xbc\x81\x8f\x36\x42\xe5\x26\xca\x36\xbf\x16\xbf\xd8\x1f\xbf\xea\x1f\x60\x88\x69\xde\xde\x16\xe2\xce\xe4\x22\x71\x3b\x5c\xd9\x5c\xe5\x4b\xf3\xfb\x03\x46\xfd\x20\x1e\x6c\x88\x21\xe2\x72\xbf\xb0\x58\x65\x21\x2a\xf5\x4b\xf7\x13\x32\xab\xd7\xeb\x46\x60\x28\xfe\x84\x50\x73\x53\xf1\xcd\xca\x7b\x80\x93\xb6\x2e\xde\x52\x0a\x51\xfd\xd2\xfd\x84\x2f\x70\x15\xf0\x5a\x41\xd5\xe6\x1e\x01\x1f\x5c\xf8\xdd\x4d\x31\x76\x72\xe3\x56\xe8\x0c\xc9\x7b\xc5\x0c\xe2\xc7\xf1\x2b\x0b\x08\x8d\x5b\xd2\xc2\xf8\x01\xcf\x6c\x43\x2c\xba\x9f\x89\x98\xb9\xb6\x70\xdf\xfb\xfe\x0d\xf7\xbd\xb4\xce\x62\xb5\x38\x4b\x9e\xc5\x6a\xf1\x59\xf2\xe7\x58\x2d\x9e\x25\xf3\xc4\x7c\x88\x63\xc1\xea\x47\xf5\x30\xe9\x60\xb8\x90\x21\x0f\x6f\x45\x8a\x2a\x62\x57\xe5\x4e\x9a\xc7\x7a\xa7\xa2\x21\xa6\x51\x78\x06\x11\x19\xef\x8b\x16\x4e\x68\x79\xe9\xec\x3b\x3f\x1c\x12\x10\x86\x71\x71\x9b\x0f\x14\x23\xca\x87\x0d\x83\x4b\x28\xbd\x6e\xc8\x24\x82\xdf\xf5\xad\x90\x11\x83\x9f\xa5\xc8\x6f\x85\x0d\xde\xa9\xc8\x76\xba\x89\x6e\x9e\xf0\x03\xf3\x60\x3e\xb1\xaf\x3e\xb1\xc6\x61\xf1\x98\xd5\xdb\x24\xca\x08\xc9\x83\x91\x01\xae\x3b\xe1\x2e\x01\xbc\x05\xee\xe8\xe7\x06\x0c\x5c\x20\x71\x23\x30\xf5\xd1\xfb\x2a\x20\x86\xc0\x1e\xe7\x85\x3b\xfe\x31\xd9\x9d\x5e\xc7\x2f\x65\x98\xf9\x06\x30\xc7\x07\x56\xc2\x01\xdd\x9d\xb5\xb6\x33\x05\x7a\xd7\x19\xe9\x42\xf8\x9e\xd5\xd5\x50\x55\x77\x28\x3a\x3b\xd3\x1f\xac\xd7\x87\xfc\xc2\xc0\x76\x7d\xb8\xd0\xeb\x10\xd7\x34\x4e\x10\xf1\xdb\x8b\x5d\x12\xd1\x53\x35\xe0\xc5\x54\xd5\x9d\xae\x17\x95\x6b\xa1\x69\x34\x8b\xa6\xde\xab\xa4\x7b\x05\x54\x26\x78\x24\x63\x95\x3b\x38\xc3\xaa\x3a\x7a\xfd\x67\x08\x77\x00\x53\x53\x50\x5c\xe8\xd7\x6b\x00\x7e\x17\x07\xb0\x33\x41\x2d\xa0\xe2\xb8\xc3\x92\xe8\x30\x81\x01\xb9\x46\x31\xe5\x6e\x0b\x41\xc8\xc1\x9b\x85\x17\x06\x3f\xf0\xe0\x75\x59\xe0\x33\xc0\x24\xba\x28\x58\x54\x56\x30\x48\x5a\x4c\x72\x29\xf2\xf6\x4a\xb6\xcb\xba\x6c\xc5\xe6\x4a\xac\xda\x1b\xd9\x16\x9b\xeb\x16\x04\xe0\xb6\x2c\xaa\x0f\xad\x5e\xc9\xdb\x6d\x2e\xf3\x0d\x25\x1f\xb3\x61\x02\x48\x57\xfa\xfe\xf4\xf3\xd3\xeb\x82\xbd\xd5\x19\xe0\x3d\x7f\xfb\x1c\x8c\xc2\xda\xe7\x3a\xb5\xd3\x82\xfd\x20\xf8\xa9\xb9\xac\x7e\xdf\x3c\x25\x8b\x24\xfd\x07\xcf\x5a\xfe\xbe\x79\x6a\xef\xb0\x67\xf4\xb4\x60\xff\x14\xfc\xf4\x1f\xef\x9b\xa7\xcf\x27\x64\x91\xbc\x4f\x5f\x7e\xf9\xe2\xdd\x8b\xf7\x69\x7b\x72\x42\x5b\x1d\x90\xbd\xcf\xf4\xef\xcf\xdf\x37\x4f\x9f\xf8\x9e\x57\x5f\x86\x77\xc1\x08\xd9\xa6\x77\x32\x2d\xcd\x7f\x20\x43\xa0\x40\xe5\x83\xcb\x45\x4a\xea\x78\x00\x11\x6c\x41\xe6\x48\x04\x56\x33\x11\x4d\xe7\x59\xdb\x7a\x38\x65\xdf\x87\x8c\x65\x30\x87\x08\xae\xda\x87\x68\x16\xa7\xd1\x69\x34\x35\x92\xaf\x97\xd2\x37\xa2\xe7\xa0\x75\x8a\xe6\xbb\x9d\xe5\x83\xe3\x04\xfa\x4f\xba\x10\xbe\x00\xed\x9c\x6f\x12\x2b\xe2\x0f\x72\xf5\x73\xfa\x56\x8c\xaa\x55\xd8\x0e\x41\x54\x7a\xfc\xac\xfa\x10\x10\x2a\xd2\x49\xed\x79\x82\x50\xb8\x20\x85\xab\x3e\x56\x53\x56\xf2\xda\x29\xd5\xdd\x2c\x30\x8a\xd3\xdc\x4c\x1e\x96\x77\x37\x55\xac\x34\xc0\x63\x73\x56\xf1\x32\x2d\xb2\xbe\xf1\x53\x70\xf1\xcb\x0a\xa6\xe3\xa4\x32\xa3\x47\x3f\x86\x65\x6a\xf8\x8f\x5e\x99\x76\xdc\x87\x4a\x6b\x28\x33\x8e\x3a\x88\x31\xe2\x5a\xe2\xb5\x67\x3c\xac\xb8\xbd\xaf\x4e\x33\x7d\x8a\xb1\xc6\xc4\x9d\xdd\xd2\x9c\xdd\x74\x9e\xd7\x2b\x7e\x73\x72\xc6\x6e\x01\x51\x9b\x3d\xf0\x0d\xb9\x85\x8b\x85\x87\xb6\x05\x4c\xbd\xc1\x2d\xfc\x6d\x1c\x4f\x7c\xa3\x8e\x38\xfe\xc1\xec\xcf\xb7\x1e\x3e\x7f\x38\x8f\x1d\x5c\x8e\x98\x89\xdf\x48\x41\x8f\x1e\xe2\x98\x00\x1d\xf2\xad\xa7\x42\x2b\x58\x0d\x56\x44\x84\x52\xca\x5e\x0b\x52\xdb\x85\x18\x0a\x74\x03\xfd\x45\x0a\x7e\xa7\x8f\xca\xc0\xf1\x15\x5a\xdb\x4e\xce\x98\xd0\xfb\x86\x3f\x05\xc0\x18\xc0\x33\x2f\xf2\x3d\xcc\x6a\xca\xea\xb6\xad\x8c\x62\x6b\xc7\x49\x63\xb0\x0a\x6f\x05\x29\x3c\xbb\x9e\xef\x85\x23\x2c\x39\x5f\x3f\xbf\x39\x5f\x4f\xa7\xb4\xe4\x05\x5b\x4f\x38\x5f\x01\xb5\xc7\x25\xda\x9a\x90\x92\x81\xbf\x3f\x65\x3b\x7d\x12\x42\xf3\xa6\x86\xdd\xea\x17\x2e\x39\x4a\x99\xb4\xae\xe1\xeb\x8c\x95\x6c\x4d\x91\x5e\x11\x6d\x86\x9a\xb4\xe9\xb0\x9c\x7b\x15\xc4\xd2\x35\xec\x1b\x41\x75\x27\x9e\xaf\x9f\xef\x4c\x61\x1a\x9d\x94\x35\x31\x2a\x7d\x13\xa3\x89\x1b\xe0\x65\x68\x57\xa7\x4b\xe8\xb6\xdc\x25\x2b\x81\xdb\x6d\xd6\xc8\x65\x1c\x47\x68\xb5\x19\x4d\x38\xf7\x13\xeb\x51\x4c\x5c\xce\x2e\xc5\x6d\x5e\xfe\x24\xcb\x38\x9e\x94\xb3\xaa\xfe\x0e\xbe\xd2\xe9\xda\x17\x98\x20\x7b\xac\xea\x6a\x29\x12\x1d\xa7\x5a\x8a\xb6\x2d\x7b\xcb\x09\x04\x47\x74\x4f\x93\x6b\x9d\x5f\x67\xb8\xe5\xbc\x47\xff\x29\x80\x6d\xa2\x64\x4b\xea\xd4\x78\xde\x3a\xf0\x2f\x31\xe0\x22\x60\x05\x57\x0b\x1f\x53\x9e\x26\x82\xd5\x7c\x7e\x6e\x78\x89\x2a\x34\xe7\x05\xc3\x5f\xd9\xb6\x67\x13\x1f\x1f\x1e\xc4\x91\x52\xe4\x15\xcc\xca\x5b\xe4\x2c\xac\x02\x2a\x61\x22\xc1\xc7\xa0\x42\xbe\x13\x1d\xc5\xeb\xe2\x20\x6e\x60\x9a\xed\x91\xbb\x09\xdf\x73\xd4\xb7\x9d\x1b\xe7\x31\xb6\x4d\xf1\x9d\x60\xd1\xf3\x27\x67\x9f\x3f\x3f\x7d\xf2\xec\xf3\x08\x51\x8d\x07\x62\x4a\x67\xf4\xe1\xb3\x90\xf5\x4c\xa2\xd8\x9a\x17\xd6\x47\x7d\x42\xfa\x36\x54\xd8\x26\xbe\x3f\xc0\x59\x18\x80\x6e\xd0\xc8\x28\x41\x04\xc5\x55\x12\x6c\xe4\x96\xd4\xc0\x29\x93\x5a\x3f\x7a\xd3\xc7\x31\x30\xf2\x3a\xad\x80\x88\x4f\xff\x29\x2d\x9a\x52\x47\x00\x42\x4a\xbe\x3b\xc4\x01\x12\xc7\x56\xdf\xd5\x98\x03\xc1\xce\xee\xb5\xbc\xb1\xbf\x12\x93\x16\xfa\x2b\x44\xd6\x58\x0c\x9e\xdb\x96\xec\x02\x2b\x30\xde\x04\x8f\xd0\x22\x0a\xf0\x99\x29\xea\xbc\xeb\xb6\x85\x8a\x30\x30\xb0\xf4\xab\x58\xf7\xab\xf6\xad\x20\x50\x37\x5d\x33\x63\x01\x03\xdb\xd4\xd2\x76\xbc\x69\x23\x6f\xb8\xf8\x6c\x50\x82\xe4\x6c\xb2\x8e\x63\xbc\x4b\xeb\x46\xd4\x12\x1d\xb5\xaa\x81\xab\xa5\x4f\x89\x58\x81\xa3\x40\x20\xc4\xc3\x98\xf7\xdd\x41\x85\x1b\xf6\xc5\x9a\x7c\x45\x24\x35\xd0\xed\x32\x7d\xd2\x79\xa4\x43\x90\xdd\xfe\x3a\x74\x02\x1b\x52\xa4\x55\xb6\xe8\x49\x66\xc0\x60\x18\x5e\x3a\x82\x11\x98\xbd\x74\x3c\xf2\x33\x30\x1d\xbe\x97\xe9\x8f\x1e\x42\x01\xf1\x1f\xad\x94\x38\x94\xe1\x57\x40\xfc\x33\x36\x4b\xfe\xe5\x04\xc4\xf1\xcb\xf6\x61\x44\x3a\xc2\x4f\x6d\xe2\xf4\xdd\x71\xfb\x38\xbb\xe0\x5b\x8e\x2c\x2b\x68\x43\x6f\x0c\xef\x81\xb9\x9b\x0e\x04\xd9\x33\x73\x25\xd3\x9f\x50\xbd\xb0\xff\xe9\x07\xb5\x2d\xea\x1e\x7d\x7b\x56\xd1\xf9\xe7\x8a\x81\xc7\x22\xdd\x33\xb4\xc1\x1c\x39\x7b\xbe\x16\xbd\xe3\x52\x50\xbd\x3f\x5e\xc4\x2f\x5d\x7b\x06\xf6\x9f\x58\xce\xad\x14\x7f\xa8\x38\x56\x82\x0b\xb3\x3a\x1b\x09\xfb\x9f\x7e\x90\x55\x52\x74\xe5\x3a\x52\xb3\xa2\x6a\x84\x54\x5f\x80\x9a\x5b\x2f\x93\x01\xb0\xb2\x2e\x28\x6a\xc0\xff\xed\x72\x42\xce\xfe\xde\xd0\x0b\x18\x64\x8c\xf6\x5f\x7b\x96\xaf\xd5\xa8\x86\xe0\xff\x7e\x76\x01\x1d\x8e\xce\x7a\x00\x94\xea\x40\xf5\xe1\xaa\xd9\x6c\x92\xa8\xdd\x4b\x55\x46\xe1\x1a\xbc\xcf\xa3\x43\x7a\xbb\xa4\x00\xde\x0e\x7d\x00\x0f\x6c\xaf\xc3\x73\xe2\xc8\x7e\xe5\xd9\xba\x1a\x35\x51\x1c\x0b\x83\xca\xc3\xb9\x5a\x88\xc4\xe8\xa2\xb5\xf8\x33\xea\xee\x06\xd2\x57\xe0\xbc\xae\x77\xd4\x4f\x9c\xd5\xdd\xbd\x0d\x9c\x89\xf0\x6a\x33\x64\x66\x09\xf1\x0a\x10\xf3\xc2\x3b\x59\x38\x0c\x1e\x67\xab\x3c\x8a\xfb\x22\xe2\x78\xf2\xd6\x23\x4a\x9b\x6c\x44\xea\x8c\xf0\xc5\xc7\x8c\xf0\x33\xfa\x28\x78\xdf\xc4\x5e\x0f\x6a\xf9\x80\x6c\x0c\xf6\x90\x01\x37\xde\xa6\x32\xd2\xdc\x95\x1f\xee\x30\x85\x1d\xe6\x95\x9b\xeb\x44\xf9\xdc\x83\xc0\xd8\x2b\x33\xc2\xec\xc2\x86\x13\x1c\x2e\xe3\x0e\xaf\x40\x46\x5a\x09\x71\x6c\xad\xca\x38\x75\x4e\x70\x1f\x19\xe9\x9d\x9b\x79\x38\xbc\x8f\x3c\x40\x61\x9c\xda\xcf\xe7\x23\x35\x03\x72\x1b\x06\x76\x3e\xa6\x2c\xc6\x1d\xc2\xf0\xde\xec\xf5\xda\xef\x29\xdb\xb0\x56\xef\xea\x24\xc2\x5f\x91\x5d\xb6\x74\x90\xf9\x19\x31\x7f\x6a\x25\x11\xae\x17\x36\xf4\x05\xcc\xe6\x08\x26\x75\x64\x1b\xe0\x45\x59\x26\x91\xd7\x18\x23\x3a\xb7\x1e\x72\xba\x08\x1c\xf1\x90\x52\x0b\x30\xa7\x6a\xc7\xd8\x77\x72\xc6\x72\x3e\x3f\xcf\x9f\xf3\xfa\x3c\xd7\xf2\x2b\x10\x70\xd6\x9e\x2b\x3a\x4e\x08\x2d\xe3\x5d\x92\x22\xcd\x33\x9a\xaa\x8c\x48\xca\x1a\xcb\xfa\xcb\x24\x12\x21\x04\x73\xd3\xc3\x42\xaf\x9c\x72\xe5\xeb\xbe\xe7\xb2\xf5\x56\x5e\x4c\xb6\xf7\x14\x5d\x96\xa7\xd6\x63\xf9\x8b\xd0\x2a\xd3\x12\x98\x06\xc7\x18\x27\x6a\x15\xe2\xce\x63\x70\x92\xb3\x7a\x2b\x2a\x21\x41\x4b\x24\x28\x16\xf0\x65\xbd\xd9\xee\x94\x58\x5d\x80\x9f\xa7\xa2\x7b\xf6\x53\x50\x1c\x29\x8c\x61\x58\x1b\x51\x28\x41\xa7\x3a\xf9\x59\x8c\x8a\xc2\xd6\x85\xd7\x0a\x63\xe0\x32\xfa\x05\x08\xa9\x71\x4c\x22\x38\xf3\xe4\x1c\x32\xb7\x37\xdd\x20\x13\x12\x45\xdb\x56\xea\xa5\xb0\x6d\x41\x6a\x06\x5b\x54\xcf\x03\x95\x52\x36\xd9\xce\xb6\xc5\xbd\x28\xbf\xa8\xef\xa1\xc0\x0d\xa1\x71\xfc\xb5\x99\xf0\x39\x8d\xe3\x9f\xec\x3d\x2d\xa2\x8d\x34\x33\x20\xfd\x63\x05\x6f\x66\x9b\xa2\xfa\x19\x1e\x6a\xfd\x90\xdf\xe3\x43\x17\xee\x85\xda\xef\x78\xce\x74\x49\xef\x4c\x4c\x0c\xab\xfc\x6f\x0a\xe6\x7d\x55\x53\x0f\x81\x29\x5f\xe4\xd3\x28\x4a\x3c\xf6\xf6\xdf\x02\x55\xd3\x63\x00\x38\x85\xf7\xa7\x1d\xff\x9e\x63\xd2\xe0\x8a\x1e\x40\xef\x35\x9a\x12\x1b\x71\xbf\xdf\x07\x14\x2e\x36\x57\x85\x69\x2f\xe9\x63\x69\xbc\x2d\x97\x4d\xf3\x4e\xdc\x2b\x1e\x6d\x0d\x5b\x63\x92\x5f\x01\x7c\xad\x38\x2f\xc5\x5a\x25\x27\x67\xfa\xbf\xed\xfd\x39\xd4\x37\xf9\xaf\xf9\xf6\xfe\x7c\x93\xcb\xeb\xa2\x3a\x51\xf5\x36\xd1\x6f\xb6\xf9\x6a\x55\x54\xd7\xc9\xfc\xfc\xaa\x96\x2b\x21\x93\x79\x04\x80\xae\xe3\xc9\x5b\x3e\xce\x73\xe3\xe7\x99\x80\xaf\xec\xf9\x55\x7d\x7f\xd2\x14\xff\xd2\xe9\x60\x2a\x27\x57\xf5\xfd\x79\x7d\x2b\xe4\xba\xac\xef\x92\x06\x50\xf4\x4c\xce\x49\xbe\x53\xb5\xcd\xcc\x2f\x81\x5f\xce\x3f\x9d\x43\xf9\xfe\x14\xb1\x2a\xf4\x92\x29\x43\xa1\x69\x69\xe0\xf0\x51\xeb\x16\xce\x80\x25\x3d\x2a\x78\x74\xf6\xa7\x08\x6d\x99\xeb\x2d\xdb\xf1\xb3\x67\x9c\x73\x49\xd4\x0c\xcb\xf2\xad\x58\x2b\xea\xaa\x2b\x8b\xeb\x1b\xc5\xa3\xff\x9a\xff\x29\x62\x0d\xff\xec\xbf\x4c\x54\x08\xd6\x4b\x8a\x0b\x81\x52\x76\xdf\xd9\xd6\xe1\x91\x6d\xfd\x88\xe5\x36\xab\xe5\x0c\xaf\x9e\x60\x5c\x9d\x7e\x46\x75\x85\xfc\x43\x6e\x49\xd9\x12\x51\x94\xbb\xe1\x25\xbd\x3d\x18\x59\x85\xeb\x5d\xb5\x22\x00\xbd\xf4\xba\xac\x73\x20\xd1\xd9\x3b\xbf\x77\x3c\xb3\x0e\xfd\x98\xc0\xc7\x49\xa7\x3e\xfa\xe2\x68\xe9\x7c\x92\x6d\x45\xae\xf2\xe5\x87\x6b\xc8\xeb\x65\x59\x6c\x79\x64\xf8\x2d\x74\x67\xea\x41\x11\xfa\x08\x8d\x7f\x12\xb1\x2d\x6c\x2e\x12\x8e\xc7\xd0\x11\x61\x3a\x1c\x8c\x43\x47\xbe\xed\x50\x6d\xb6\xec\xf1\xaa\xbe\xbf\x80\xf1\xf4\x56\x94\xc5\x01\xf4\x79\x80\x88\xd9\xb3\x70\x15\x39\x10\xaf\x31\xf1\x2c\xab\xe9\x81\x68\x85\xde\x8c\x31\xc3\xef\xdc\x00\x39\x10\x77\xb7\x67\x38\xae\xb1\xac\x87\x4a\x98\xef\xf7\x94\xee\x29\xc1\x81\xfa\x37\xc1\xd3\xe8\x67\x71\xf5\xa1\x50\x11\x8b\xbe\xab\xff\x15\xb1\x68\xd3\x44\x19\xfb\x75\xc4\x0f\x0d\xba\x09\xdb\x8a\x7d\x15\xba\xd2\xff\x55\x78\xac\x50\x7a\x9e\xea\xf5\xb7\x01\x42\x8f\xaf\x44\x2a\x02\xb4\x3f\xa1\x8f\xa3\xbf\x8a\x85\x48\xe0\xd5\xe8\xee\xa9\x80\x23\x2d\x84\x45\x9c\x8a\xce\x0d\x43\xf2\xbf\x89\x00\x29\x0a\xb1\xb6\xff\x26\x52\x99\x4d\x15\x85\x0c\x9c\x3e\x73\x0f\x2b\xbe\xc0\x11\xfa\x04\x3c\xbe\xaa\xba\x12\x2d\x28\xe3\xc9\x62\x72\xb2\x4c\x45\x9e\xd1\xd9\x94\x9e\xb2\x1f\xf5\xeb\x93\x93\x53\xf6\x8b\xe0\x8f\x6e\x99\xf1\x26\xd2\x6d\xd1\x14\x57\x45\x59\xa8\x87\x24\xba\x29\x56\x2b\x51\x45\xcc\x2e\x3e\xc6\x53\x7f\xcf\xfe\x2e\xf8\x63\x29\x94\x12\xf2\x62\x9b\x2f\xf5\x62\x12\xcd\x23\xb6\xae\x2b\xf5\x33\x10\xc6\x26\xd1\x9f\xe7\xf3\xc8\x6b\xbf\xbf\x88\x1e\x43\xa2\xb5\xe8\xee\x28\xfa\x16\x30\xf3\x36\xf9\x3d\x99\xb3\x2a\x7d\x96\x9d\x10\xd9\xb6\x73\x4a\xa7\xa4\x02\x60\x08\x40\x81\x48\x54\x37\x6b\x2d\xf8\x59\xe0\x2c\xc6\x23\xe4\xaa\x05\xf8\x9b\xb3\x64\xce\x10\xca\x73\x8e\xf4\x75\x9c\x93\x6a\x11\xe1\x5a\x18\x25\x76\x9e\x44\x4e\x35\x3c\x47\x8c\xbd\xfc\xf9\x9f\xcf\xf3\x29\x7f\x46\x23\x5c\xb6\x2c\x52\xc0\x6e\xea\xa0\x3a\xe4\x54\x8a\x34\x07\x80\xcf\x82\x52\x56\x2d\x88\x4b\xcd\x46\x3e\xe9\x70\x3d\xcc\x92\x1b\x85\x1f\xd9\xd4\x27\xc3\x0f\x4c\x11\x31\xfe\x34\xfa\x19\xf9\x77\xf1\x3b\x9a\xf8\x05\x19\x4d\xbb\x0b\x05\x40\x43\x3f\xfa\x47\x52\x4e\x9a\x4f\x8b\x67\xfb\x0c\xa0\x99\x3e\x07\xf0\x8b\xdd\x94\x7b\xdd\x07\x3f\x97\xa2\x28\x89\x48\x23\x5c\x8e\xa3\xa9\x1a\x0e\x78\xe5\x06\x7c\x76\x52\x9f\xec\x4e\x9a\x93\xd9\x7f\x52\xaa\x7b\x9d\xed\xba\x7e\x56\x2a\x1c\x3b\x20\x10\xb1\x82\x93\xc9\x76\x36\x58\xb7\x88\x96\x84\x68\x1c\x47\xdd\xbe\x18\x20\xac\xb8\x0f\x22\x36\x39\x63\x15\x48\xae\x2c\xe7\x46\x20\xab\x28\x6b\xf8\xa7\x95\x58\x0f\xa8\x4e\x7c\xea\x71\x21\xe7\x47\x39\x8f\xf4\xbe\x1b\x59\xda\xbe\xf1\xb2\xc6\x71\xd1\xb6\x18\x91\x73\x9e\xb7\xed\xc4\xdb\x73\xb4\x50\x16\x15\x55\x59\x1c\x00\x89\xc1\x0a\x00\xec\xb2\xde\x8b\xc1\x0c\xe3\xad\x58\xaa\xc6\xb1\x92\x19\x78\x8d\x4f\x6c\x09\x52\xf3\x06\x6f\x53\xc1\xf5\x50\xa4\x4d\x46\xc1\xc5\x29\x28\x93\xee\x9d\xa9\x9d\x7a\x6d\x4b\x8a\xb1\xf9\xc4\x6a\x56\xb1\x9c\x4e\xf5\x9c\xf5\xb6\x59\xe5\xbb\x94\x78\x76\x6d\xd2\x33\xa2\x02\x5a\x4a\x2f\x9e\xa7\x88\x5e\x36\x0d\x02\x7e\x3d\xd6\x7a\xd5\x51\x0f\xc9\xe3\x10\x7a\x14\xb4\xa3\x46\xb8\x87\x5e\x8d\x4c\x64\x77\xd4\x07\xd4\x0e\xb9\x88\xce\xa2\x44\x82\x99\x9f\x03\x92\x49\x1e\xf3\xaa\xd8\x80\xe5\xce\x37\x4a\x48\xf8\x01\x66\xcf\x68\x2d\x53\xee\x36\xdd\xe3\xba\x28\xcb\x37\xa6\x18\xfa\xb1\x14\xf7\x5f\xc9\xfa\xce\xfe\xbe\xb8\x91\x45\xf5\x01\x9e\xba\x55\x71\x32\x67\xd7\xb2\x58\xbd\x90\x22\xb7\xbf\x5f\x42\xaa\xe1\xd3\xab\x6a\x15\x06\x5c\xa8\x5c\xba\xaf\xdf\x62\x26\xe6\xa7\x17\xf7\x6d\x7d\xe7\x22\xea\x41\xf3\xb5\xcb\xb4\xee\xca\x89\x62\x20\xfc\xd8\xde\xe4\x68\xcc\x73\x57\xac\xea\x3b\xf8\xf5\xaf\x6f\x80\x60\x4f\xff\xaa\xeb\x0d\xda\xad\x9a\xbd\x2e\x79\xdc\x33\xd8\x1a\x47\x8c\x0e\xd0\x7a\xe0\xb3\x9e\x4a\xfe\xbf\x7b\xcf\xe6\x70\xe3\x01\x08\xb1\x06\x80\x4f\xd9\x8e\xff\xe8\x0e\x1f\x60\x61\x8e\xa7\xa0\x62\x4d\x76\x00\x44\xf3\x57\x41\xf4\x81\x39\xc7\xc1\x0b\x63\x00\x1c\x3d\xbd\xc7\xc6\xc3\x85\xe8\xa6\x61\x1c\x47\xd7\x42\x45\x05\xfc\xec\x14\xcd\x05\xcf\x8d\xcf\x22\x4e\xa1\x45\x91\x94\xa9\xca\x8e\x3a\xa5\x08\x27\xb5\x73\xec\x45\xbe\x7b\xbb\x63\x49\x3d\xe3\x90\x9e\x94\x48\x6e\x70\x91\x0a\xbd\x8e\x44\x15\x0c\xa2\x88\x32\x54\x14\xe9\x73\x23\xae\xec\xf6\xcd\x84\xf3\xba\x6d\x75\x9d\xe4\x14\xd8\x45\x86\x88\x47\x4d\x87\x78\x44\x87\xa2\x5d\xdb\xc2\x21\x50\x6f\x8c\x20\x64\x3b\x9c\xc8\x4e\xb4\x8b\xf4\xe1\x4f\xd7\x86\x47\x45\x75\x23\x64\xa1\xa7\xa3\x6e\x88\xa6\xd7\x10\x1c\x34\xee\xb9\xf1\xdf\x95\xc6\xa8\x65\xb7\x28\x75\x48\x67\x48\xcd\x24\x85\xc6\xe1\x12\x29\x2d\x06\x70\xbc\x01\x24\x94\xe9\x51\xbb\xa9\x77\xdd\xea\xf7\x23\xf9\x78\x47\xd2\xa0\xd7\xfc\xce\x9a\x33\xe9\xce\x89\x0e\x3e\xc8\x2d\xdd\x00\x2c\x24\x37\x79\x69\xa0\x85\x94\x5e\xcc\xfe\x0e\xe0\x60\xfc\xef\x40\x07\x8a\x80\x3d\xb2\x6d\xe5\x82\xd4\xfe\xb2\x56\x50\x06\xc0\xe9\xb2\x6d\x8b\xe6\xb5\x5e\x81\x04\xa9\xe9\xa2\x6e\xdb\x79\x82\x8c\x10\x4e\x19\x93\x46\xc8\x89\x1f\x31\x23\x69\x64\x03\xa5\x89\x57\x35\xde\x5f\xa1\xec\x7c\x71\xd4\xed\x4f\x4c\x13\x0d\x31\xc0\x2c\x40\xd9\xf8\xca\x0e\xaf\xbe\xd0\x3d\x5e\x54\xd7\x5d\x14\x42\xf1\xb4\xb4\x30\xbb\x66\x45\x93\x46\x37\xd0\x2f\x01\xd0\xa2\x95\x56\x6d\x9c\x3d\x1d\xc0\x46\xfb\xfd\x6a\xb6\xdc\x9c\x4f\xb6\xb3\x40\x06\xd7\x3b\x58\x27\x3b\x02\x16\xaa\x95\x29\x59\xc3\x49\xde\xb6\xd5\x27\xef\xc5\x35\x78\x55\x2d\xcc\xd6\x52\xb1\x86\xd5\x34\x71\x50\xb6\x4d\x1c\xe7\x28\x23\xfd\x11\xe1\xc2\xeb\xea\x5a\x0f\x84\x13\x93\x8b\xdd\xba\x30\x7f\x90\x3e\xd8\x6e\x38\xdd\x0d\xb6\x18\x29\x3a\x41\x14\xec\xc8\x11\x36\x4d\xcf\x0d\x26\xb9\x87\x34\xc6\xfe\x22\xc8\x9c\x49\xb6\xb3\x17\x44\x76\x44\x78\xc7\x60\xfe\x9b\x20\xdb\xd9\xf0\xf4\xc3\x46\xb6\x33\x23\x43\x78\xb5\xc0\x9d\xad\x4b\xad\x1b\x2d\xa3\x43\xa2\x14\x6b\x75\x02\xe3\xe0\xb1\xfb\x26\x99\xef\x47\xc6\xc4\xc7\x13\xd9\x53\xb3\xa9\x7b\x96\x80\xa8\x65\xd0\x27\x51\xa3\x58\x88\x22\x66\xd4\x0d\x46\x6c\x1c\xea\x15\xdd\x14\x11\x53\x3d\x49\xf0\x5e\xad\x1b\x7e\x01\x71\xff\x9c\x81\xfb\x7c\x3d\xa4\xfe\x93\x0b\x69\x1d\x3f\x8f\x23\x9a\xa4\x32\x3b\xaf\x9e\xff\x19\x6e\x3a\x8b\x54\x68\xd1\xb5\xca\x74\xfa\x75\x5a\x65\x6d\x5b\xa7\xd5\xc9\x33\xf8\x3b\xf7\x30\xee\xf6\xbe\x18\xee\x80\xe5\xba\xc2\xe9\xd5\x90\xff\x05\x58\x19\x82\x8b\xbe\xfe\x42\x78\x58\x89\xdf\x53\xf4\x01\x14\x00\x1e\x48\xfa\x90\xe0\x58\xeb\x4e\xc2\xb5\x3e\x40\xe7\xf9\xf3\x02\x94\xa9\x75\xaa\xd2\x3c\xcb\xba\xb1\x06\x12\xbf\xde\xc3\x6c\x85\xea\x7d\xdf\xdb\x5c\x2e\x7c\x28\x3a\x49\x93\x6e\xa0\xee\xc1\x3e\x70\x88\xa1\x6b\x94\xcf\xef\xee\x84\xa8\xb8\x54\x4c\x1e\x34\x72\x97\x8a\xe9\xd5\x72\xc4\x67\x58\x9f\xc8\x50\x35\x5f\x8a\x8d\x75\x47\xd8\xca\x7a\xcb\xa5\x35\xa6\x6b\x8a\xea\x9a\x17\x7a\xf5\xc7\xdf\x1d\x82\x0f\x9a\xf3\x01\x44\x52\xc3\x95\x35\xad\xce\xa5\xb2\x37\x69\x77\xdc\xba\x08\x58\xcb\x6b\x51\xad\x78\x85\x3f\x01\x27\xaf\xee\x6d\xac\xb2\xdb\x58\xf7\x6c\xb9\x93\x43\xcd\x3f\xd6\x72\x6b\x96\x6e\x5b\x5c\x37\x54\x84\x59\x73\x11\xd8\xca\xdc\xaa\xfa\xdf\xb8\xe2\x77\xef\xf7\x4c\xee\x46\x18\x71\x98\xfc\xbd\xcc\xfc\x06\x98\xad\x76\x28\x8a\x1a\x86\xdf\xba\xe1\x8a\xdb\x36\x4b\xbd\xb6\xcc\xec\x85\x5a\xff\xc3\xa7\x82\xcd\xd9\xd9\xf8\x3b\x73\x33\x8c\xa9\xda\x0b\xb9\xfa\x8e\x13\xdb\xaa\x27\x5d\xeb\xd3\xa7\x6a\xda\x3d\x85\xe9\x35\x4a\x6c\xcd\x65\x8c\x1f\xd4\x59\x50\xa1\xef\xa3\x4d\xdf\xf2\x6a\xc7\xb1\xd4\x33\x6c\x21\x1d\x8e\xc5\xa1\x46\x75\xef\x91\x1d\x65\xcf\x06\xa7\x06\x6f\x90\xfa\xef\x98\x9f\x1e\x7f\x74\xae\x4b\xbd\xad\xd9\xf4\x8d\xc3\x60\x01\xe9\x55\x97\xd9\xbb\xcb\xb5\x86\xe2\x3a\x38\x15\xd8\x65\x16\x2e\xc6\x44\xc6\x3d\xc1\xbc\x5b\x84\x51\x13\xa2\xec\xd4\xc5\xd6\xc0\x70\x16\x01\xe6\x2b\x9e\x03\x27\x80\xdb\xab\xd7\xe6\xa6\x57\xbc\xcb\xd9\xfa\x1e\xda\xd4\xa5\x3e\x08\x21\x82\x26\xa3\x05\x9f\xf8\xab\xda\x47\xca\xfd\x57\x81\xac\x76\x5b\xda\x2f\x3b\x88\xf2\x77\x89\x5b\x4b\x82\x0a\xc0\xbb\x29\x70\x7e\x82\xeb\x54\xd0\xe4\x46\x64\x78\xa7\xa7\xfe\x30\x18\xf6\xc2\xc7\x7e\x5d\x7b\x15\xd0\x53\x0f\x02\x02\x2b\xa7\xb1\x02\x5a\x87\x0b\x58\x5b\x1e\xf5\x31\x28\x1f\xb7\x59\xda\xb3\xe6\x4e\x6f\x56\xc3\x77\xb3\xff\x3c\x41\x19\xa3\x6e\x88\x78\x0a\x3f\x7f\xf8\x86\x9e\x3e\xf3\xbc\xde\x22\xf8\x36\xd2\x59\xad\xef\xf9\x60\x20\x32\xd7\x31\xfc\x11\xb9\x0e\x2a\xc5\x0a\xc5\x6a\x85\x08\x4e\x88\xa5\xd8\x36\x37\xf5\x5d\x7b\x53\xac\x04\x7d\x72\xca\x72\xc5\x4f\x3b\x10\xe0\x27\x1e\x42\x53\x03\xf7\x10\x2a\x8e\x09\xd8\x24\x57\x33\x54\xcb\xa1\xa7\xd9\x6f\x3b\xd1\xa8\x17\xf6\xd4\xfa\x5a\x22\xf2\xde\x68\x38\x69\x14\x4d\x02\x66\x9d\xc6\x94\x14\x8c\xee\x6f\xf3\x92\xe2\xa3\x2a\x96\x1f\x08\xf5\x10\x7f\x76\xca\x97\x0f\xc6\x39\x98\x2a\x6b\x3a\xbd\xa7\xac\x52\xbc\xf3\x9d\xea\x92\x29\xd5\x90\xd4\xfe\x11\xa5\xe9\x44\xa0\xbb\xbb\x42\xad\x9d\xd9\xc6\xf9\xb3\x13\x45\x8b\xd4\x6e\xd0\x53\x22\x39\xec\xe9\x34\xe3\x45\xea\x29\xbe\x32\xee\x33\x94\x93\x62\x66\x0e\xbc\xbc\x30\x17\x4f\x7a\x37\xed\xca\xb1\x54\x63\x16\x79\x64\xad\x66\x4a\xef\x78\x42\xe2\xa1\x24\xcd\xe8\x6c\x59\x57\xcb\x5c\x05\xaf\xa2\xa7\x51\x46\x0d\xfc\x68\xd1\x87\x1f\x05\x82\x89\x22\xad\x33\x5c\xf7\x24\x53\x4c\x74\x2e\x7c\x1e\xac\xa9\x1a\xca\x05\x3a\xc1\xb5\x1e\x4a\xe6\x0e\xdd\x83\xa2\xf6\xe1\xaa\x67\x48\xc4\xe9\xb7\xbd\x85\x4c\x80\xf9\xb0\xa7\x21\x2d\x71\xb1\x26\x16\x75\x68\x72\x76\xd4\x29\xa0\x2b\xd5\xb6\xba\x63\x99\xf4\x55\x77\x25\xae\xed\xba\x83\xa7\xa5\xdb\x24\x4e\x00\x34\xfe\xec\x84\xc8\xd3\x2e\x10\xf4\x74\x58\xec\x12\x9b\xa7\xe9\x37\x87\x0d\xd7\x0d\x22\x77\x15\xe9\xe4\x94\xc6\xe3\xfa\x23\x82\xa5\x25\xab\x98\xcc\x28\xab\x9e\x9f\xc5\x71\xbe\x90\x89\x3e\x3c\x0c\x23\x9d\xb1\x79\x66\x7c\xd9\x1d\x12\xb7\x00\xf7\x6b\x36\x39\x03\x76\xe3\xc6\x01\x62\xa3\xc3\xb4\x60\x5b\x50\x5f\xf8\x96\xca\x8a\xb2\x7a\xab\xbc\xb0\xc9\x9c\x3d\x1a\x9b\xb4\x57\xb0\x74\x24\x8f\x7b\x86\x8b\x48\x32\x90\x4e\xf6\x4c\x52\x66\x9d\xca\xcc\x41\xb9\x10\x4d\xa2\x5c\xe0\x1b\xdc\x00\x13\xc9\x5c\x63\x26\xae\xb9\x6d\xf3\x25\xd2\xb5\x24\xc3\x56\x4a\xd2\x8c\x19\xc8\x40\xfd\xec\x93\x7a\x3a\xe5\xa7\x91\xca\x88\x60\xa5\xde\x67\x81\xb6\xdc\xfc\x9c\x05\x35\x80\x21\x6c\x5e\x60\x05\x5c\xdb\xbb\xde\x32\x1e\xea\xac\x42\x9f\xba\x11\x3e\x5c\x30\x35\x59\xf4\xba\x37\x01\xe1\xb5\xf0\x1d\xb5\x8f\x90\xfc\x7a\x32\x77\xc6\x1e\xae\xeb\x25\x76\xfd\x59\x77\x9b\xbf\x20\x9f\xde\xb1\x4c\x65\x94\x26\x8d\x4f\x61\x69\x83\x8d\x1c\x40\xd9\x92\x97\xb0\x05\x60\x29\x3e\x02\x6a\x00\xef\x25\xea\x38\x75\x0d\xb8\x4a\x2b\xfe\x2b\x91\x34\x63\x35\x07\xe4\xcf\x50\x22\xaf\x51\xf5\x53\xa7\x67\x36\x02\xd7\x87\x07\xca\xa4\x61\xf0\x02\xc0\xe2\x9a\x39\xea\x1c\x3d\x82\x43\xed\x46\x05\xea\x0c\x3c\xdf\x80\x46\x83\xba\x32\xd4\x3c\x37\x06\x85\xa4\xa6\x5d\x1a\x55\xc6\x6a\x8a\x85\x6c\x5b\x62\x32\x95\x19\x03\x96\xf2\xc2\x58\x6d\x2a\x40\x4a\xde\x93\xe5\x68\xdf\xd3\x70\x3d\x0a\x16\x15\xb7\x36\x95\x4c\x30\xfb\xb9\x5b\xa2\x36\x00\x74\x5c\x6f\x29\x1c\x84\x7c\x2a\x80\x12\x37\x7c\x93\x1d\xbc\xa0\x10\x95\xe3\x17\x80\x9a\x83\xb6\xc8\x1d\x71\xe6\x26\xdf\x92\x25\x5b\x2a\x56\x52\xb6\x21\xb6\xa8\x20\x4a\xc6\xb1\xff\x68\x51\x62\x4a\xca\xca\x8e\x40\xd7\xc4\xb0\xcf\x86\x47\xd7\x84\xea\xdf\xb6\x38\x96\x7f\xce\x30\xeb\x9a\x50\xfd\xdb\x2d\x97\x26\x0c\x9f\xdc\x46\xb7\xf1\xe1\xd1\x76\xcc\x2e\x19\x79\x55\x6c\x92\x92\x21\x81\x81\x5f\xe5\x3d\xa5\xac\xdc\x5f\xce\xdc\xce\xda\x79\x40\xac\x15\x7b\xb4\x9b\x44\xf2\x18\x3d\x8d\x92\x74\x64\x28\x9a\x73\x4b\x37\xcb\xd1\x99\xdb\xb4\xd8\x4e\x10\x69\x04\x2b\xd6\x5d\x91\xe9\xf5\x46\xee\xb3\x3d\x33\xc9\xf7\xce\x9d\x1b\x22\xe8\xc2\xd0\x0d\xe0\xee\x94\x08\xde\x11\xde\x1f\xf9\x16\x3b\x73\x70\x77\xeb\x59\x05\x4b\x0e\xa3\xce\xdf\xe4\x64\xc6\xc3\x47\xa4\xcd\x0f\x82\x1c\xcd\x87\x42\x3b\x4a\x33\xc0\xc2\x6a\x1f\x30\xf7\x66\x6b\x7b\x51\x57\xc0\xa5\xa9\x55\xaa\xe9\x27\x76\x83\x18\x18\x2b\x7d\x52\xde\x5a\x6d\x30\xdb\x04\xca\xe4\x1c\x8e\xc8\x0e\x15\x8e\x45\xeb\x7b\x2d\x4e\x45\x58\x5d\xb0\x08\x96\xd8\x65\x6d\x6b\x80\x1d\x61\x62\x86\xfc\x26\x40\xd0\x42\x67\xbb\x0a\x42\x57\x71\x4c\x72\xf7\xc0\xe7\xac\xd1\x33\xd4\xd1\x8e\x30\xff\xc1\xdf\x61\xbb\x6f\xda\xb6\x21\x74\x4f\x59\x17\x32\x9d\xb2\x9b\x91\x1d\x7b\x2c\xac\xfb\xe8\xe4\x84\x75\x7c\x2d\x50\x46\xd3\x65\x6d\x9b\x87\x3c\x28\x86\xea\xcf\x2e\x66\x19\xab\x1d\xca\x19\xec\xfc\xd6\xd2\x05\x5e\xe9\x33\x71\x84\xb2\x27\xa8\x48\x59\xc1\x39\x27\x9b\x45\xa4\x65\xd0\x28\x89\xb0\x01\xe1\x3b\xfc\x3d\xe1\xfa\x78\x3e\xb9\xf5\xf0\x00\x6e\xf5\x8a\xb6\xac\x2b\x55\x54\x3b\x71\xb4\xe1\x93\xf9\x7e\xa5\xd7\xa2\xdb\x38\xbe\x05\x2d\x4b\xa7\x6c\xa8\xe8\xbe\x58\x13\xb2\xe3\x23\x14\x60\x14\x8e\x24\x61\xe8\x8a\x76\xd6\xdc\xeb\x3e\x75\x57\x1c\x13\x39\xb3\x06\x2e\x3c\xdd\xba\xdf\xac\xfb\xf9\x8b\xf7\xfb\xd7\x8c\x99\x5e\x2f\xa1\x6c\x16\x28\x1d\x3c\x49\xba\x51\xd3\x29\x5b\x3b\x54\x7a\xb2\x1c\x21\x64\x80\xef\x16\x4b\x5e\x26\x64\x8d\x20\xd3\xc0\xd7\xd8\xe7\x76\x68\xdb\x92\x8d\x7d\xce\xf0\x23\x4a\x29\x23\xde\x9d\xde\xb2\x6d\xcd\xd3\x09\x5e\xad\xeb\x30\x3c\x98\x4d\x78\x39\x4a\x11\xb1\x2e\xeb\x1c\xf0\x32\xe0\x6e\xe4\x06\x97\x44\x6f\x14\x6d\x1d\x24\x7c\xb9\xa7\xa6\x0d\x4a\xe0\x1a\x70\x6f\x58\xc9\x5d\xba\xcb\x45\x14\x25\x4b\xb8\x6b\x70\xd0\xf6\x41\x89\xc0\x25\xc8\xb6\x6a\x1c\x93\xae\x89\xb9\xb3\x0f\x18\x1b\xcd\x5e\xbc\xee\xfb\x74\x9e\xf9\xfd\xe5\xbf\x39\xf3\xdf\xfc\xea\xbf\x79\x96\xe9\x41\xbe\xe3\x93\x33\xb6\xa2\xba\xd2\xb7\x0b\x9b\x73\x51\x1d\xdf\xc6\x31\xd9\xf0\x5b\x73\x28\xa2\xc9\xad\xcf\x9f\x64\x57\x05\xf6\x68\x4d\x18\x74\xa3\xd4\x71\x4c\xec\x07\x7c\xb2\xa1\x6c\x13\xc7\x5e\xa7\x0e\xdb\xd4\x0d\xcb\x4d\xdb\x9a\x8e\x64\x3e\xaa\x98\x5d\x7b\xd8\xca\xe3\x8c\xa8\x98\x9e\x18\x14\xcb\xbe\x54\x64\xb3\xd0\x13\x24\x99\xb3\x8a\xdd\x50\x06\xc9\xdd\xea\xca\xe8\xd9\xb3\x33\x1a\x95\x8d\xee\x56\x50\x65\xd9\x10\xf3\x97\xcf\x29\xdd\x67\xdd\x2a\xdb\x67\x7b\x5a\x84\x07\x07\xbb\x32\x0b\x9a\x84\x2f\x40\xe2\xb3\xc6\xa5\xcd\x56\x88\xd5\x00\xd6\x04\xe5\x4c\x11\xc7\x23\x54\x61\xbe\x10\x2d\x68\xf2\x68\xf7\xdd\x44\xb6\xed\x44\xc6\xb1\x6a\xdb\x0d\x58\x0f\x8b\x4e\xcc\x15\x56\x90\xc6\xf7\x2a\x8e\x27\x1b\x30\x32\x54\x1e\xc3\xf6\xfa\x7e\x56\xaf\xd7\x8b\xca\x89\xc4\x7c\x9e\x74\xb7\x66\x26\xff\xee\x2d\xd0\x61\xd8\x07\xdd\x92\x78\xe0\xd6\xf5\x69\xfc\x44\xbc\xe0\xb4\x0b\xce\x92\xf1\x28\x4e\xc2\xb7\x37\x78\x15\x2e\xc2\x71\x0c\x70\x53\x55\xb7\x9f\xe0\x2f\x60\x66\xa2\xac\x9a\xd5\xe5\x8a\x57\x4e\x08\x61\xdd\x4f\x7f\x97\xd0\xa2\x55\x5d\xae\x68\x1c\xc3\xdf\x4e\x31\xa6\x53\x30\xf9\xf4\x38\x90\x4c\x38\xdd\x6b\x09\x3d\xd0\x3e\xaf\xf3\x95\x78\x57\x1f\xf6\xff\x06\x29\xc3\x98\x62\xe7\x82\xc2\xe2\xe1\x2e\xc2\xd9\xdc\x32\x2c\xe8\xa1\xa6\x4f\x94\x20\xcd\x08\xe2\xee\xd5\xd5\x9e\x09\xe3\x66\x6e\xde\x1d\xba\xf4\xe3\xfd\x55\x5c\x20\x8f\x18\xb4\x28\xc1\x98\xfa\x5c\x1b\x2a\x5b\x15\x5f\x1b\x70\xbc\x70\x44\xb1\x9a\x9e\x93\xc2\xe1\xed\x03\x7a\xde\xba\xa8\x8a\xe6\x06\x56\x60\x05\x92\x26\x99\xcc\xe9\xbe\x63\xc5\xc6\xf7\x3c\x67\x7a\xab\x42\x3e\x3e\x68\x35\x8f\xd7\x2e\x37\x4a\x4e\x6c\x5a\xf3\x9e\xe5\xb4\x7f\xec\x09\x66\xc0\x18\xaa\x84\x8e\x6e\xad\x47\xf1\x89\x29\x22\x5d\x69\x46\x79\xa0\xd0\xad\xdc\xe7\x82\x52\x06\xa1\xce\xba\x47\x0c\x18\xac\xc6\xbd\xcd\xb1\x10\x13\x2d\xc2\x75\x9e\x08\x01\x73\x14\xb4\x3c\x08\xb5\x4d\x00\xa8\x4c\xf1\xbc\x86\xc0\x64\xfa\x5f\x28\x7a\x1c\x57\x80\x7a\x46\x3b\x9e\x57\xf0\x23\xce\x87\x11\x73\x27\x55\x74\x1f\xe1\x89\xcf\xb9\x98\x15\x27\x27\xe7\xb4\xd6\x9f\x68\xf9\x75\x62\xa1\x13\x5c\x49\xe1\x15\x94\x75\x02\x8c\x98\x04\x02\xf4\xe8\xc2\x4e\x95\x94\x29\xbd\xc4\xd7\x16\xa3\xb2\x60\x67\x94\x1e\x4d\x54\x1c\x4b\x2d\x55\x8c\x90\x83\x61\xcf\x8f\x68\xf0\x6c\xeb\x12\xc7\xba\xf5\xb1\x26\x65\xd2\x6f\x2a\x56\x71\x99\xda\x66\x8d\x32\xe0\xe5\x09\x5b\x39\x0b\x9b\xb9\x5a\x54\xdd\xb9\x18\x61\x89\xcd\x90\x9c\xcc\x59\x8f\x60\x4d\xf7\x2d\xc0\xf8\x63\xb3\xe2\x5f\xcf\xc9\x58\x6f\x3f\xaa\x6b\x53\x85\x6d\xaa\xb0\x4d\x8d\x1f\x91\x6e\x4a\x65\x9a\x12\x1d\x3e\xe0\x4e\xd3\x6b\x4a\x9d\x8a\x6b\x46\x05\xcd\x88\xba\xb5\xf9\xb9\x7a\x9e\x83\xb7\x4c\x95\xaa\x2c\x8e\xf5\xbf\xa6\xb0\xc1\x83\xb7\x36\xd9\xd1\x6e\x2b\xb5\xa7\xc1\x5d\xb8\x91\x26\x19\xca\x8b\x0c\x25\xc9\xfe\x8d\xb8\xe5\x9a\x5b\xeb\x2c\x8e\xcc\x5f\x7f\xdf\x09\xec\x81\x50\x29\xdd\xb6\x63\xbc\x32\x07\x60\x35\x70\x76\xdb\x55\xac\x54\x44\x41\x4b\x62\xc2\xbe\x23\x45\x53\x16\x2b\xf1\x65\x7d\x57\x25\xa5\x32\x32\x2e\x65\x10\xf8\xd3\x16\x82\xa0\xfc\x26\xe8\x1d\x32\xde\xe8\x60\x53\x4d\xca\xf4\xba\xfb\x4d\xd5\x19\x20\x61\x1a\x7b\x08\x7f\xb3\x53\xde\x0b\x48\x09\x5f\x98\x84\xba\x77\x26\xb9\xfd\xef\xfb\x5b\x0c\x17\x75\x5b\x4b\x65\x57\x68\xa8\x1e\x8e\x46\x9e\x66\x9d\x06\xb7\xbf\xe6\x82\xf3\x14\xdc\x53\x63\x64\x3c\x28\xf9\x9a\xda\x73\xf5\x5c\xfa\xc8\xa2\x44\x70\x70\x2a\x20\xc6\xbb\x00\x27\xae\x74\x23\xeb\xe4\x84\x9d\xd1\x23\xe9\xce\x26\x46\xeb\x5d\x6f\x09\xa8\x80\x8d\x3a\xd8\x3b\x6a\xf3\xf0\x3a\x03\xcb\x61\x65\x12\xab\x34\xcf\x25\x00\x4c\x05\x8a\x69\x7e\xf6\x99\xf7\x3a\xd0\x6e\xaa\xb6\x25\x05\x2c\x8b\x8d\x22\xd4\x7e\x08\x8a\x89\x20\x1a\xda\x7c\x33\x6f\xbb\xe7\x8f\x4d\x59\xdf\x25\xff\x35\x9f\xb3\x75\xde\xa8\xe4\xd9\x7c\xde\x69\xf8\xff\x3c\x9f\x9b\x2d\x77\x25\xb4\x50\x1c\xea\xe2\x1c\xcb\xa7\x4e\x0e\xb0\xc5\x9d\x98\xa1\xb2\xb6\x55\x48\xf6\x05\xcb\xb9\xb7\xc2\xcb\xae\xbb\xbd\x0d\x34\x50\xa8\x4b\xa6\xe8\x51\x35\x28\xbe\x40\x43\x20\x1b\xab\x30\x20\x85\xfd\x1b\xcc\x43\xcc\x1a\x4c\x0d\x5f\x21\xd8\x4a\xf4\x3b\xb4\x1d\x78\x95\x17\x51\x7a\x64\xa0\x30\x22\xcb\xb9\x14\x59\xf2\x8c\x37\x15\x8f\x10\x9a\x13\x20\x14\xb5\x14\xbf\x55\x88\xaf\x2e\x56\x5c\x19\x54\x17\xb1\x62\xe4\x63\xd4\x1f\xf0\x2d\x8f\x54\x64\x21\x72\x0c\xef\x07\xdb\xce\xe0\xc7\xdf\xec\x7b\xee\x72\xda\x1b\x1b\xef\x1b\xc5\x56\x8a\x1b\xd4\xef\x5c\x29\xf9\x35\x38\xf5\x1e\x05\x02\x93\x0e\xff\xe8\x7d\xfd\x25\x7c\x7a\xf0\x42\x9c\x75\x88\x1f\xff\x06\xa3\x65\xf7\xd1\x21\x42\xd9\x41\xb9\xc2\x3b\x81\xee\x00\xac\xb7\xf0\xcf\x26\xc0\x0b\xf1\xdf\xf8\xe7\x99\xfe\x43\x07\x6e\xbf\x01\x7e\xc1\xe2\x12\x34\xa3\xf6\xea\x9f\x18\x66\x89\xc0\x39\x5e\x4f\x20\x8e\xd5\x37\xd7\xd1\x3d\xff\x3e\xb8\x49\xf7\x30\xd5\xf5\xc2\x6c\xed\xba\x16\x37\x2a\x71\xf4\x16\x9e\xcd\x01\x2e\xe3\x5c\x2e\x20\x2c\x68\x09\xe0\x5f\x2f\x3a\x8b\xb4\xc2\x37\xcd\xab\x78\xe1\x2c\xd2\x14\xa5\x8b\x2a\x21\x3d\x4a\x17\xc5\xe4\x34\x8a\xa8\xae\x4e\xd1\x59\x8a\x15\xf6\xd4\x8c\x49\x58\x46\x02\x9d\x80\xd1\x03\x80\xa8\x5f\x54\x2b\xa8\xa8\x79\x69\xa8\xcf\x41\xce\xb5\xd5\x4f\x10\x8a\xfe\xb1\x4f\xa3\x8f\x26\xbe\xfe\x70\x8c\x63\x33\x48\x91\xf7\x16\x00\x70\xec\x80\x36\x9b\x9e\x19\xaa\x47\xfe\xe5\xd9\x80\xe2\xc6\xd0\x01\x9b\xb8\x5c\x4b\x42\x60\x97\x3a\x3a\xe4\xfa\x17\x68\x4a\x8b\xc5\x4e\xd7\xa7\xe5\xbc\x01\xeb\x39\x3a\x61\xf2\x22\xad\x80\xed\x67\x88\x5e\x23\x61\x50\xde\x0c\xee\x61\x7d\x5e\x6e\x10\xad\xd5\xa2\xd7\x93\xd2\xdc\x28\x7a\x69\xa1\xb6\xd2\xc1\xde\x0d\x47\x0e\xb2\x8e\x9a\x32\x9f\xbe\xbf\x9b\x9e\x5e\xd3\x51\x89\x61\xa5\x8c\x71\xa0\xeb\xb6\x23\x08\x0a\x8f\xac\x01\x23\x65\x6f\xe8\x3a\xe7\x02\x2d\x6f\xea\xf4\xf2\x8c\xc1\xbf\xa0\xfc\x32\x66\x9a\x26\x95\x45\x0e\x23\xc5\xbc\xaf\x29\x2b\xac\x97\xe1\xd6\x5c\xdb\x22\x52\x13\xae\x67\xad\x05\x6d\x68\x11\x69\x0e\xc8\xe7\x36\x26\x62\xde\xea\x37\x3a\xc8\x63\x51\x53\xdd\x72\x41\x44\x8f\xe0\x1f\xfd\x04\x8f\x23\xef\xb2\xf4\x41\x05\x08\x1b\xfe\xa4\x36\x86\x28\x3e\x15\x52\x99\x37\x00\x30\x1e\x79\xe6\xd6\xd7\x7e\x0a\xe1\xc5\x86\xa0\x0b\x91\x8c\xb9\x00\x87\x05\x0b\x69\x04\xb7\x43\x70\xe1\xfe\x12\x8a\xc6\x00\x1f\x5f\x42\x7b\x18\xc5\x1f\x5f\x42\x3d\x4f\xbd\x14\x93\x7f\x5d\xdc\x83\xdb\x8d\xc8\xfa\x4b\xe9\xa0\x7c\x7f\x70\x29\x3d\xb0\x46\xea\x2d\xc6\x16\x00\x37\xf9\xc2\x84\x58\x63\xcf\x60\x01\xfc\xf4\x05\x0e\x2d\x08\x3f\x71\x31\xd3\x91\x81\xe0\x78\x6b\x17\xab\xfc\x0a\x8d\xb6\xc7\xcd\x59\x7a\x8b\x5e\xa4\xf2\x2b\x30\x1a\xf6\x1c\xdf\x17\x60\x57\xf8\x4d\xa5\xc5\xe6\xb3\x39\x4d\xb6\xca\x22\x1a\x5a\x8c\x13\xda\xb6\x9b\x61\x20\xa0\xc3\x49\xb1\x5e\xcc\x93\x93\x33\xbd\x5e\x99\xd6\x49\x1e\xd7\xb5\x4c\xa2\x1b\xb5\x29\x5f\xd7\x32\x62\x30\x38\x13\x1c\xa3\xfa\xc3\x48\x77\x5b\x20\x25\xc0\x06\xe3\x19\x86\x58\xe1\xe1\x40\x95\x84\xef\x71\xdd\xdd\xfb\xab\x10\x78\xc0\x47\x1d\xb0\x29\x42\x4b\x31\x94\x04\xfb\x26\x27\x23\x69\xab\x38\x26\xaa\xf7\xf1\xa7\xe6\xd2\x3b\x27\x99\x5e\x8a\x58\x24\x45\xbe\x7a\x53\x95\x0f\x11\x8b\x36\xf9\xfd\xb7\x30\x3d\x22\x16\x2d\x45\x59\x1a\x67\x2a\xf3\xf4\x83\xb1\x6f\x60\x91\xac\xef\x2e\xb6\x79\xa5\xc3\xeb\xd2\xfc\xda\x35\xe2\xbb\x7c\x1b\xb1\x68\x2d\xf3\x8d\xf8\xc2\xd8\xb1\x5a\x17\x8c\x57\x2b\x44\xb6\xf6\xcf\x62\x5a\x20\x71\x03\x18\x50\x3b\x82\x5d\x1e\x0e\x97\x7d\x2b\xc7\x7c\xb5\x7a\x09\xdd\x37\x62\xc3\xe6\x63\x9a\xa1\x3d\xe3\x86\x74\xc6\x0e\x23\xd3\x59\x9f\x70\x0c\xa3\xa7\x4d\x97\x08\xef\xf4\xab\xd8\x83\x39\x84\x53\x03\xab\x45\x14\x87\x55\xcc\x81\xab\x9b\xad\x0c\xd6\x83\x9d\x65\xcb\x2b\xf8\x83\x22\x12\x2c\x14\xb4\xc8\xe1\xdd\x19\x44\xc7\xd1\xf4\x56\xcb\xcb\x53\xbd\xb8\x1a\x3a\x83\xf9\x79\xcd\x55\x9a\xc3\xd7\x55\x67\x42\x7f\x1c\x4d\x6b\x88\x06\x2e\xfb\xd5\x94\xe3\xd3\x51\xa1\xa7\x61\xc3\x6f\x81\xec\xd6\x98\xab\x0d\x96\x5e\xd6\x38\xe8\x27\x04\x92\x30\x2e\xa7\xff\x2f\xda\xce\x4b\xfa\x77\x9a\x6f\x32\x00\x3f\x08\x4e\x92\x7a\x49\xb0\xe5\x8f\xa2\xff\x6f\x1a\x1c\xd2\x1b\x6b\xf5\xcf\x4f\xce\xce\x69\xc5\x2b\x87\x25\xe5\x5e\xb1\xff\x45\x37\xe0\x49\xbb\xdf\x0d\xde\x6d\xac\xd9\xf9\x58\xe5\x59\x17\xeb\xb3\x5b\x7f\xbf\xb4\x1a\xbe\x81\x52\x42\xc5\x71\xb5\x40\xa6\x7d\x6f\x54\x1b\x95\x44\xd0\x55\x34\x81\x9b\xda\x91\xce\x95\x5d\xe7\x7a\x05\x0e\x3a\x57\xba\xce\x05\xe0\x6a\xba\x3f\x40\xa5\x8b\xe3\x0b\xad\x1d\x8a\x35\xa9\x10\x1e\x90\xcf\x59\xcd\x4d\x16\x2c\xc7\x2e\x3e\x57\x3c\x4f\x0b\xe8\x94\x7a\x76\x93\x37\x98\xa7\xa2\x8b\x3a\x28\xb6\xa2\x49\xdd\x55\x4c\x19\x65\x61\x07\xb4\x0e\xe6\xfd\xd8\x26\xe8\x99\xa2\xc7\x90\x1b\x88\x71\xec\x11\x94\x45\x97\x97\x6e\x13\xb8\xbc\x8c\x1c\x02\x77\x13\xc8\x36\x83\x20\xd7\xb9\xca\x28\x78\xc5\x22\x8a\x12\x5f\x45\x1c\xa6\x0b\x62\x10\x45\xa0\x15\x53\xad\xf1\x29\xc8\xe7\x46\x2f\xa6\x87\x9a\xd0\x43\xcd\x8e\xf4\xca\x8e\xf4\xfe\xf8\x26\x66\x80\xc3\xf8\xc7\x41\xee\xc6\xb2\x02\x96\x4e\x4b\xa5\x78\xe4\xc8\x13\x8d\x14\x79\xa5\xf8\xe9\x7b\x79\x7a\x1d\x9e\x4b\x6f\xf3\xf2\xd0\xfa\x60\x51\x5f\x9c\xaa\xbb\x37\x99\x17\xa4\xe2\x7a\x44\x8d\xa9\x36\x8d\xe4\x53\x1c\x0d\x00\x89\xf4\xda\x86\x07\xa2\x82\x57\x8b\x70\x88\xd9\x41\x78\x9b\x97\x84\xd2\x44\xd0\x45\xc1\xa3\xc8\x5d\xc4\xb8\x31\x5f\x2c\x8a\xa9\x7e\x11\x4e\x92\x02\xad\x65\xd0\xea\xa3\x18\xc3\xa6\x32\xba\x3d\xdd\x7d\x62\x1a\x45\x7b\x4a\x19\x88\x55\xb7\x79\xe9\x19\x42\x1b\x02\x9c\x7e\xf0\x38\xe0\x1a\x98\xd7\x18\x39\x4b\xf9\xc8\xcc\xdd\xb0\x2b\x58\x04\x07\x2b\xf0\x8c\x82\xa4\xf0\x9c\x55\xe8\x31\x42\x93\x62\x11\x96\xa1\x18\x29\x40\xf1\xb1\xdc\xaf\x87\xb9\x13\xc9\xd1\x0a\xbc\xcb\x9b\x2e\xe4\x40\xe2\x26\x92\x1b\x5e\x3f\xba\x70\x50\x30\xe4\x0a\xa8\xf1\xcd\xb1\x55\xea\xc6\x92\x96\xf0\x2d\x90\x77\x6d\xe9\x12\x4b\x52\xfd\x69\x12\xa0\x29\x8f\x0f\x8d\x3d\x01\x93\xe3\x5b\x45\x0c\x62\x98\x00\x57\x2f\x14\x67\x0e\xa4\x6a\x86\xa8\x65\x3c\x6e\x40\xc0\x0e\x25\xa5\x9c\x1b\x25\xd3\x89\xb9\x6b\x36\x68\xac\x0d\xcf\x41\x3d\x90\x00\xc1\x4c\xbe\xa8\xa7\x67\x89\x35\xa4\x44\xa5\x24\xaf\x9f\xcf\x17\xbb\x24\x5f\xd4\x60\x0a\xba\x43\x8f\x8e\x35\x21\x04\x4e\xb1\x8e\xbd\x45\x4b\x8e\x15\x50\x14\xc7\xf1\x44\x3a\x36\x98\x38\x26\x13\xe9\x0b\x66\xf6\x45\xdb\x4e\x3e\x10\xff\x0d\x8b\x2c\x79\x73\x44\x2d\xd6\xdc\x25\x91\x66\x06\xb0\xdc\xed\x97\x47\x46\x4d\xa9\xdc\xfe\xd2\x0c\x3c\xa6\x06\x2c\xf5\x7e\xe3\xe8\x59\xf1\x41\x58\x47\x0f\xdf\x74\x34\x3f\x39\x39\xa7\x04\xcc\x46\x73\xaf\x66\xbc\x83\x12\xea\x06\xa2\x49\x10\xb9\xea\x29\xab\x61\xc5\x81\x3b\xa6\xc9\xdc\xf5\xa8\x04\x6c\xea\xa0\x2f\xf8\xc9\x19\x65\xf5\x7e\x1f\xc8\xa4\x46\xc1\xd6\x69\xf4\x7a\xb2\x62\x30\xfd\xb2\xa1\x6e\x00\xda\x6b\xe0\xc2\xe2\x4e\xac\x16\xf5\xd0\xab\x07\x11\xb6\x65\x61\xad\xd4\x47\x06\xab\x43\x84\x23\x40\x98\x23\x60\xb8\x1c\x5c\x45\x06\xb8\xbf\x66\x5c\x2f\xa2\xba\x8a\x12\xab\x22\xa4\x70\xd4\x30\xa8\xea\x3c\xaa\x2b\x0b\xb0\x5e\x54\xc7\xc8\xaf\x7b\x69\xce\xec\xe6\x05\xfc\x69\x2d\xee\xfa\x55\xb9\x93\xf4\xc9\x29\xbb\x0b\x0b\x32\xc6\x4a\x70\xe4\x26\xa6\xc1\x1e\x64\x8f\x03\x98\x75\x3d\x6b\x7c\x5e\x5b\x63\x0b\x85\x54\x7a\x0f\x3c\x2d\xda\xb6\xca\xd8\x35\x5f\x9b\x55\x99\x19\x58\xe1\x05\x72\xa7\x24\x8a\x5d\x79\xef\x1c\x8a\x36\x44\xe8\xd8\xad\x3a\x2a\xbc\x24\x45\x32\x30\xbe\xe5\x3b\x5e\x70\x9d\x3c\xd3\x07\xdf\xa2\xe7\xa5\xeb\x3f\x4f\x2e\xcd\x49\xef\x7a\x3a\x20\xa9\xd4\x43\xed\xba\x93\xdd\x66\x20\xb5\xc5\x31\xb9\xe2\xd7\x5e\xae\xec\x9a\x5f\xcd\xd0\xfe\x80\xb2\x2b\x43\xc7\x47\xd9\x92\x7b\x9f\x26\x28\x66\xeb\xbe\x9a\x5e\xeb\x4d\x40\xf9\xcc\x3a\x2a\x60\xd6\xb9\x66\x43\xee\xdf\x38\x56\x94\x76\xec\xb0\xbc\x5e\x3c\x4b\x3e\x63\x5e\x2b\xf0\xab\x8e\xd9\x91\x29\x8f\xfc\x8b\x2b\x1f\x99\x7c\x8c\xcf\xef\xea\x77\xf9\xfc\x50\x51\xa4\x2c\x77\x97\x01\x08\x55\x86\xbd\x44\xef\x32\x96\x05\xa5\xa0\x4c\x72\xbb\x92\xa7\x2a\x4b\xfc\x75\x40\x32\x50\x1a\xac\x06\x24\x70\xd7\x88\xf4\x56\xb7\xed\x64\x65\x5b\xdf\xb0\xb5\xb9\x67\x4b\x29\xc6\xa4\x59\xb9\x26\x75\x1c\x4f\x56\x33\x4b\x3a\x14\xc7\x93\x5b\xb0\x02\x43\xce\xc5\x55\x40\x72\xd8\xb6\xd7\xcc\xf6\x73\x39\xbd\x06\xfe\x33\xee\x03\x99\xd1\xf3\xe6\xbc\x17\xf2\x80\x2b\x60\x43\xd9\x8e\x37\x47\x3b\xae\x25\x88\x10\x3c\x0b\xbd\x3d\x4d\xbc\x9d\x0f\xa5\xd5\xb6\x3b\x93\xd4\xcf\x45\xb5\xaa\xef\x00\xad\xc4\x1e\x0e\x48\xc3\x1f\xe0\x74\xa0\x57\x71\x75\x90\x3a\x6e\xcb\x1b\x86\xf3\x80\xe7\x9f\x9f\x2d\xca\x64\xe5\x88\x1a\x75\x75\xc8\x8d\x25\xdd\x1b\x30\xee\xe1\x57\x99\xa5\x18\x6a\x2c\x0d\x20\xd8\x14\x58\x7e\xd5\x86\x49\xa0\xff\x5c\xc6\x71\x93\x2e\xb3\xee\x4d\x1c\x7f\x45\x1a\x0a\x9a\x00\xd3\xdf\xc1\x27\xa8\x17\x75\x74\x43\x6a\xc0\x95\xd2\x29\x5a\xb0\xf0\xd7\xba\x5f\xd5\x08\x01\x0b\xa1\x6d\xbb\x72\x36\x28\xc6\x46\xa0\x0b\x30\x99\x3e\xcc\xb6\x70\xc1\x26\x69\xdb\x4e\xbe\x22\x05\x6d\xdb\x65\x1c\x6f\x48\x91\x5e\x43\x03\xde\xa2\x1c\x46\x76\xbc\xc0\x6a\x10\xfd\x17\xc6\x60\x47\xfc\xe9\x66\x34\xbf\x66\x87\x5a\x3c\x8e\xb7\x43\xb2\xd2\x6b\x76\xa7\x28\xd3\x79\x11\xfa\xd1\x2f\xc7\x38\x90\xf0\xe3\x61\x19\xcc\xfc\xd9\xd9\xb2\xee\x00\xf6\xcf\xd1\xd5\x35\x86\x80\xe5\x80\x9d\x86\x5b\x77\xbd\x35\x83\x49\x86\x5a\xfc\x1e\x5f\xce\x7c\x4f\x8f\xfa\xec\xc8\x15\x22\x05\x2a\x3a\xc0\x72\x1d\xf2\x68\x79\x3a\xcf\x03\x37\x3e\x61\xda\xba\xa0\xca\x22\x6a\x9a\xc0\xaf\x07\x2c\xd8\xa1\x71\xb0\x96\xf8\x3d\x07\xf1\xe3\xb1\x34\x25\x60\xc8\xfa\x7b\x1b\x7a\x51\xfe\x01\x26\x11\xcc\x38\xbc\x98\x35\xab\x91\x69\x37\xa2\x98\x23\x66\x0a\x69\x30\x71\xd7\xeb\xf1\x6f\x8f\x10\x91\x18\xcc\x1f\xf0\x0d\x0c\x17\x0c\x14\xd0\x3b\x93\xbd\x0a\xb8\xbf\xdb\xb6\x1a\x0e\x3d\x81\xb5\x66\x7e\x5c\x46\x0a\xc0\x23\x39\x03\xa8\x5c\x24\x1c\xfd\xe3\x19\x9f\x9c\x1d\x15\x8b\x20\xf9\x82\x26\xa4\x1a\x1d\xcb\x5d\x69\x8c\x19\xa0\x4e\x00\xdc\xbd\x91\xb5\x5f\x71\x31\x2b\xeb\x25\xba\x77\xdc\xfb\xb7\xec\xec\x42\x1f\x04\x17\xa7\x47\x97\x33\x50\xbc\xfe\xf2\xdd\xb7\x43\x5c\x42\xd0\xde\xa8\xb6\x1d\x58\x14\x39\x7a\x3c\x3d\x68\x01\x62\x53\x72\x18\xf9\x62\xf6\xe5\x9b\xef\x7e\xd0\x09\x4a\x8a\x09\xbf\x96\xf5\xe6\x02\x3e\x07\x49\x42\xdc\xab\xd3\xfb\x4d\x19\x51\x83\x9f\x59\xd1\x47\xe9\xa0\x8e\x1d\xd2\xe1\x04\xd0\x05\xcd\xfd\x6c\xf3\xc5\xc3\xbb\xfc\x5a\x1f\x7b\x48\x04\x49\x4a\x21\x65\x2d\x3d\x73\xe4\xcb\x19\x84\x90\xe8\x9b\xea\x36\x2f\x8b\xd5\xf1\x2f\xdf\x7d\x9b\x1c\x47\x53\x20\x38\x81\x96\x78\xa3\x6b\x9b\xbe\xcf\x9e\x9c\xb2\x17\x70\x02\x5e\xbc\xaf\x4e\xaf\xd9\x07\x23\x76\x35\xbb\xab\x4d\xa1\xcc\x25\x4a\x5b\x6c\xf2\x6b\xd1\x4a\xd1\x08\xd5\xae\x8b\x52\xc0\xad\xca\xbb\x8f\x5e\xbf\x7c\x10\x0f\xd7\xa2\xa2\xfe\x55\xcb\x4b\xd5\x33\x52\x1b\xf5\xb5\x36\xf3\xc5\x73\xb8\x57\x60\x86\xd2\xb6\x6f\xac\xae\x9b\x2e\xf4\x24\x29\x68\xa2\x53\x9c\x46\x69\x34\x1d\xf2\x90\x38\x5d\x7d\xb1\x50\x49\xa4\xc5\x84\x2c\x62\x85\xa5\x06\xb0\x24\xf3\xb2\x6d\xed\x97\x13\xce\xaf\x74\xfe\xc6\xf2\x3f\xb4\xbd\x52\xd4\x65\x55\x40\x4a\x2a\x2d\x32\x4c\x0c\x86\x4b\xbe\xe1\xe3\x57\x81\x00\xc5\x39\x36\xb3\x81\xb2\x51\x11\x9a\xa8\xa3\x2a\xb5\x96\x4a\x19\x17\xd5\xb2\x5e\x89\x9f\xde\x7e\xf3\xb2\xde\x6c\xeb\x0a\x19\x0c\xa7\x11\x8f\xa6\x23\x6f\xfc\xa3\x28\xdd\x83\x5e\x09\x4f\xf2\xd4\x22\xea\x0c\x5b\x18\x20\xc9\x66\xff\xfc\x6d\x27\xe4\x83\x96\x2a\xf5\x5e\x51\xe6\x45\xe5\xcc\x04\x6d\x07\x04\xc0\x14\x05\x1e\xd0\xb5\x84\xc6\xba\xa3\xba\x6b\x49\xcf\x7f\xe7\xa5\x22\x92\x81\xcf\x8e\xee\x36\x77\x9a\x35\xb2\x5b\x1c\xd1\x9e\xc5\x64\x23\x64\x91\x97\xe3\xb8\x71\xa6\x69\x89\x51\x3d\x99\x88\x58\x0f\x0a\xd0\x18\x7e\xd0\x18\xf0\xdc\x08\x00\x30\x9a\x64\x98\xfb\x77\xd4\x53\x09\x33\xad\xba\xd3\xb7\x58\xf8\x02\xa1\x51\x1b\xee\xa9\x35\xdd\x1c\x24\xe7\x14\x24\x81\xa3\xb8\x6e\x2e\xdd\xc6\x46\x7d\x53\x34\x24\x4a\xec\x99\x37\xa2\x71\xfc\xce\x0c\xe8\x40\x8f\xa2\x85\x85\x0f\xaa\x03\xfc\xc5\xb7\x4b\x0b\xb0\x3f\xb9\x71\x60\xc0\x74\x4f\xc3\xca\xf9\x56\x5d\xbe\xca\x28\xa4\xdb\x42\x23\x80\x9e\x92\x48\xd2\x05\x2a\x88\xe4\x88\x82\xe8\x51\x57\x24\x41\x01\xdd\x10\x72\x76\xdc\x02\x2f\x14\x8b\xde\xcb\xf7\x55\xa4\x37\xbe\x64\x24\xaa\x1c\x8f\x8a\x58\xb2\x8e\x8e\x47\xf1\xd3\x3f\x3d\x9b\x9f\x5e\xb3\xb7\x8a\x9f\xfe\x9f\xd9\xd3\x27\xa7\xec\x07\xc5\x4f\x49\xba\x88\x33\x7a\xc9\xd3\x7f\xc4\xd9\xd3\x53\xf6\x4f\x58\x73\x66\x4f\x17\x34\x49\x8f\xdf\xab\xec\x29\x49\xff\xa1\x53\xcc\x9e\xd2\x27\xa7\xd7\x1b\xf6\xa5\x59\x93\xbe\x7a\xf5\xae\xfd\xfa\xd5\x8b\x2f\xf5\x21\xf1\x7b\x1d\xf6\xfe\xf4\xfd\xe9\x29\xfb\x46\xf1\xc7\x3d\xfb\x16\xfe\x7d\xad\x78\xf4\xf4\x34\xb2\xae\xa4\xd1\xd3\x88\xb2\x7f\x8d\x18\xe4\xe4\x3e\x40\xec\xd7\xfe\xdd\x6d\x68\x7b\x34\xdc\x12\x9c\x91\xa9\x4e\xfb\xc8\xfa\xb3\xce\x59\xdd\xbf\x0e\x0f\x2e\x77\xf1\xd2\x41\x1a\x52\xde\x8a\xd7\x46\x19\x1c\x4d\x23\xce\x79\x95\xce\xb3\x05\xa9\x78\xe5\x50\x54\xda\x36\x7a\x1a\x31\x74\x79\x13\xe0\xea\x91\x66\xd4\x59\x9a\x4b\x4a\x93\xfe\x3b\x38\x07\x48\x9f\x09\xe6\x8b\xfe\xca\x8c\xc0\x1e\x82\x73\xfe\xad\xea\x6a\x9f\x93\x06\xdf\xef\x1c\x4e\x47\xda\x64\x68\x4f\x89\x6b\x46\xda\x18\x8f\xa4\x6e\x48\x9a\x4f\x4a\xde\x18\xb3\xe3\x43\x46\xb9\x65\xdb\xd6\x6d\x5b\xa4\x65\xb6\xa8\x17\x13\xb2\xe3\x25\x35\xfa\xb5\x84\x28\x20\x7c\xd6\x67\x8a\xce\x88\xbe\xa4\x2c\xd7\xff\x4c\xce\xe8\x9e\xb2\x9d\xdd\x2c\x73\x3f\x72\x3a\xcf\xb4\x3c\x5e\x80\xff\x55\x1c\xe7\xd0\xcd\x5d\xbd\x7f\x52\x3d\x6f\x44\x7e\x39\xcb\xff\x99\xdf\x5f\x08\xa5\x8a\xea\xba\x99\xad\xcb\x5c\x19\xaf\x51\x47\xfd\x2d\x71\x43\xe8\x54\x9a\xa9\xcc\xb4\x64\x5f\xa4\x12\xc8\x67\xdb\x96\x54\xfc\x71\x4f\x69\x2a\x33\x24\x35\xf6\xd8\xcb\x7c\xd7\x56\xc1\x2a\xca\xc4\xfe\x5f\x0a\xae\x6b\xf9\x2b\xfc\xeb\x1b\x21\x2d\x55\x71\x2b\x92\x39\x2b\xf3\x46\x7d\x57\xaf\x8a\x75\x21\x56\xe0\x02\xab\x72\x70\x85\xf5\xcb\x9a\x3c\xee\x64\x99\xd8\x44\x40\xca\x8e\xbe\x7a\xf5\x2e\x62\x45\xf3\x6d\xbd\xcc\xcb\x04\x4d\x20\xae\xea\x9d\x6a\xf3\xed\x56\xff\x7f\xd2\xa8\x5a\xea\x9d\x7d\x36\x3d\x81\x3c\x9b\xa2\xae\x60\x83\xd7\x7b\x7d\x7b\x57\xac\x80\xae\xf3\xc9\x29\xae\x38\xaf\x8c\x3f\xfd\xb2\x2e\x29\x43\x5a\x18\xa0\x0e\x94\xb5\x16\xcc\x80\x64\x62\x32\x67\x79\xf3\x50\x2d\x0d\xab\xaf\x12\x95\x02\xe6\xb7\x48\x1f\x92\x0a\x14\xbb\x4e\xef\x4f\xee\xee\xee\x4e\xd6\xb5\xdc\x9c\xec\x64\x89\xfb\xda\xea\xfc\x78\x79\xa3\x45\x19\xc5\x7f\x7a\xf7\xfa\xe4\xbf\x23\xa6\xc5\xbd\xad\x32\x2e\x7b\xaf\x15\x52\x2e\xa0\xb8\xb4\xd5\x1b\x56\x84\x70\xed\x18\xa2\x7f\x46\xec\x5e\x3f\x07\x39\x6d\x4a\x76\xec\x24\x2c\xf6\xcf\x06\x30\x35\xbd\x08\x3a\xc4\xc4\xf8\x67\x7e\x9b\x1b\xea\x8c\xbd\x2d\x7b\x93\x3c\xea\x34\x4f\xdf\x5f\xdd\x6f\xca\xf7\x57\xa7\x98\xe5\xe9\xfb\x2b\xfd\xf7\x14\xd3\x3b\x7d\x7f\xa5\xff\xbe\xbf\x3a\xdd\x33\x29\x9a\x6d\x5d\x35\xe2\x75\x21\xca\x95\xf9\x38\xb2\x81\xbf\x7c\xf7\x6d\x64\x6a\x61\x83\xde\x89\x7b\x65\x8b\x65\xc3\xfe\x72\xf1\xe6\x7b\x2c\xc1\xad\x90\xca\x38\x2d\x42\x11\xa3\x04\xc5\x46\x14\x1a\x8f\xa1\xce\xba\xa1\xf1\x51\xa7\x12\x25\xfa\x6b\x14\x33\x4d\xb0\xae\x78\xd2\x89\xb4\x7b\xe6\x0d\x69\x1c\x32\xb6\xab\xee\x95\x3e\x88\xb9\x41\xb5\x3b\x60\x54\xa2\x16\x3f\x29\x02\x13\x27\x9c\x2b\x94\x29\x9a\xfc\xa4\x48\x18\x0a\x6c\x19\x3a\xa0\x63\xaa\xf9\x5a\x91\x6f\x14\x85\xc0\x77\x32\xaf\x9a\x6d\x2d\x95\x0e\xfc\xd6\x04\xf6\xfc\xab\xc7\x94\x4c\x3d\x4e\x38\xb0\xea\x34\x88\x0e\x3d\x77\x46\x54\xe2\x75\xd3\x7a\xb7\x25\x8f\xe0\x28\xbe\xe1\xdb\x99\xa9\x76\xdb\x6e\xd9\x6d\xf7\x18\xc7\xc4\x87\xe8\xd8\x18\x61\x89\x2e\x2e\xc9\x86\x26\x56\x8b\xf8\x10\x38\xff\xb3\x6b\x7e\x39\x7b\x99\x97\xe5\x55\xbe\xfc\xd0\x90\xa8\xae\x96\xe2\x78\x23\x36\xb5\x7c\x88\x28\xbb\xe2\xdb\x59\xa3\x72\xb5\x6b\x5e\x02\xa1\xfa\xe3\x9e\xdd\xe9\x15\xf6\x95\xfe\xe7\x9e\x47\x48\x36\x2a\x56\x11\xbb\xe0\x8f\x52\xe4\xab\x87\x0b\xa5\x0f\xd6\x40\xee\xfd\xd6\x8c\x8b\xaf\x45\xbe\x1a\x23\x8f\x3e\x42\x28\x6c\x7d\x30\x41\xda\x95\x86\x3f\xee\xcf\x15\xff\xa7\x42\x3f\xd5\x9c\x9e\xd3\x26\x55\x03\x7a\x00\x20\x58\xe7\xe4\xe0\xab\x00\x68\x41\xa5\xcf\x32\x7a\xa4\x78\x93\x8a\x91\xa8\xfb\x40\xbe\x50\x28\x5f\x28\x23\xf2\xb1\x63\x2d\xf3\x5d\x0b\xf5\xa2\x2c\xc3\xba\x8c\x81\x14\x2f\x8d\xb9\x17\x68\xf1\xdf\x22\x5c\xc6\xa0\xe6\xde\x68\xc4\x2c\x97\xe0\x53\xf0\xaa\x5f\xb8\x6c\x24\xa8\x6d\x05\xbb\x4b\x45\xc6\xcd\x2d\xe7\x9e\xd5\xb7\x42\xca\x62\x25\xbe\x2b\x36\xc8\x58\x79\x50\xb7\xbd\x04\x3f\xbb\x8d\x89\xc7\x85\x4d\xa1\xeb\xdb\xf1\xee\x01\xaf\xf6\x25\xbd\xb0\xee\x78\x22\xbd\x30\xe3\xc1\x77\xf2\x50\x28\x40\x5f\xe9\xb3\x7a\xaa\xff\x65\x22\x55\x59\x16\x12\x61\xe4\x57\x7a\xb6\x8c\xd8\xc7\xb4\xed\xbd\xdb\x94\xe3\xb8\x98\x41\x44\xa2\x28\x7b\x43\xe6\xf6\x46\x77\x0f\x67\x84\x07\x87\xc4\x70\x41\xd9\x76\xb6\x93\x25\x27\x44\x4f\x02\xfd\xb3\x6d\xcd\x0e\x42\xa7\x51\x44\x9d\xe4\xf6\xbd\x62\xde\xea\x3f\x8d\x4e\x4f\x23\xfd\x2d\x62\xfa\xcc\x36\x42\xdd\xd4\xab\xb6\x95\x86\xf7\x6b\xeb\x42\x30\x0a\xdb\x76\x3b\x32\x27\xdd\x03\x88\x2e\xf4\xb0\x2c\x14\x45\xd6\x5b\x74\x3b\x5b\xca\xba\x69\xbe\xac\x37\x79\x51\xd1\xc7\x11\x90\x6f\x2d\xa6\xe9\x63\x77\x89\x9b\x29\x54\x86\x99\x07\xfc\xc3\x82\x44\xf8\xbf\x7a\xf5\x99\xea\x7d\xb8\x6e\xd4\x04\x51\x0b\xbc\x17\x25\x84\x9b\xe3\xf9\x0b\xfa\x18\xa6\xa3\xd7\xcc\x62\x6d\x6a\x15\xc7\xdb\x99\xb7\x1f\x76\x4c\x78\x4e\xca\xb1\xf1\xcc\x07\xdc\x9e\x71\xf0\x51\xb7\xa9\xcc\x57\x80\xd4\x97\x97\x94\xb2\x2f\xf4\x62\xc9\xb6\x4c\xb2\x0b\xca\x96\x56\xc9\x70\x01\x82\xc8\xcd\x71\x51\x91\xb5\xd5\x52\xeb\xac\x71\x53\xa6\x71\x3c\xe7\x7a\xc9\x03\xf1\x61\x3a\x05\xa9\x23\xd0\x55\x45\xb0\x1a\xaa\x5c\xaa\xae\x1b\xf1\x4f\x08\xd6\xc7\xb6\x60\x81\x60\x58\x59\x26\x5f\x9a\x63\x09\x46\xa5\xac\xc6\x66\x76\xa3\xe4\x2d\xdc\x90\x06\x1f\x2d\x0e\xb4\x0b\xc0\x5c\x9a\x25\x17\x65\x04\xa4\x8b\x73\x37\x11\xbf\x2b\x30\x80\xaf\xad\x69\x44\xfc\xd3\xd1\x9d\x29\x16\x4d\x23\x2d\xf9\xae\x4c\x09\x51\x58\xb6\x0e\x3c\x94\x79\xbd\xe0\x15\xab\xd3\xeb\xf0\xb0\xbb\x80\xf6\x71\xca\xc9\x85\x69\x80\x9a\x2e\xa2\x38\x4a\xa2\x45\x44\xa7\xa6\xe3\x8c\x45\xa4\x89\x8f\xea\xe7\xed\x6c\x99\x2f\x6f\xc0\x13\x88\xd7\xae\x74\x3f\x28\x16\x3d\x39\x8b\x28\x5b\x8d\x27\x18\x5d\xf2\x68\x7a\xaf\xa6\xd3\xe9\xca\xce\xcf\x1a\x7f\x16\x6b\x2b\x04\x02\x0c\x84\x2f\x15\xa6\x75\x16\xc7\x17\xb3\xfe\xa2\x49\xa2\x6f\xd6\x27\x36\xce\xc9\x45\x51\x2d\x45\xc4\x06\x5f\x82\xf2\x57\xe5\xd7\x1f\x4b\xe4\xfb\xba\x12\x27\xdf\xe9\x29\x10\x75\xb1\x29\x65\xde\xc0\xef\x7a\xdd\x28\xc9\x7b\xfd\x2b\xfd\x47\x3a\x9e\x93\x49\xe0\xe4\x1d\x58\x60\x07\x09\x50\x36\xf6\xc1\x0b\x10\x13\x23\x7f\x89\x49\xe7\x19\x28\xc9\x51\x80\x4c\xc3\x37\xd9\xe2\xe0\x9b\xa9\x3e\x1d\x40\xb1\xfd\xe0\x85\xde\xc1\xa6\xaf\xd5\x34\x3a\x3f\xfe\x8d\xcf\x67\xf3\xb3\x28\x89\x22\x9a\x74\xc9\x20\xf2\xd0\x76\x76\x83\xbb\x1a\x1d\x29\xe6\x4d\xf7\x3a\xbd\xc9\xc0\xa4\x6b\x3b\x43\x2a\x98\x0b\x51\xad\x2c\x86\x94\x1f\x86\xf7\x89\x1b\x76\xc1\xb6\xb4\x6d\x97\xee\x06\xf7\xc2\x2c\xed\x90\xc8\x3d\x8f\xe0\x29\x62\xd7\xc0\x11\xba\xed\x20\x37\xd8\x05\xfa\x4b\x6f\x67\xcd\x0e\x34\xa7\x3a\x04\x60\x38\xb6\xa8\x1c\xa4\xac\xe0\x5f\x68\xb1\xcb\x2c\x2f\x20\x43\x5c\xcc\x3a\xf9\x83\x9f\xb1\x75\x1c\xdf\xf6\x56\x0d\xe0\xb4\x49\x2f\xd8\x36\x0b\x16\xa4\xed\x0c\x04\x7f\xdd\xf0\x0a\xdd\x61\x3e\x07\x00\x72\x7e\x08\x98\xca\xd6\x23\x32\xd1\xb5\x94\xe0\xbe\xa5\xb8\x98\x2f\xf9\xe4\x8c\x15\xb3\x46\x9f\x86\xee\xd8\x1b\xda\xad\xc1\xb0\xa1\xaa\x1b\x59\xdf\x1d\xbf\x38\x7a\x43\x4e\xce\xd8\x0b\xba\xdf\xc3\x5e\x0a\x4f\xd1\xf7\xf5\xb1\x93\x2e\xfd\x13\xfc\x1b\x3c\x85\xba\x63\x29\x08\x88\x77\xec\x15\xbb\xe7\xf2\x68\xd9\xb6\x64\xa9\xcf\xb3\xbb\x38\xee\xf9\xf6\xec\x74\x73\x99\x1b\x91\x9c\x37\x7a\xb5\x62\x41\x63\xa9\xcf\xe7\x8b\x3f\xeb\xb3\x1a\x57\x9f\xf3\x67\xf3\x79\x1c\xab\xe7\x9f\xcd\xe7\x6d\xfb\xd9\xfc\xcf\x9c\x73\xc5\xaa\x38\x26\x77\x03\xb7\x6e\x0f\xea\xca\x91\xcd\xd8\xd3\x07\xd3\xad\xe7\xc6\xe2\x79\xf4\x34\xe2\x9c\xef\xd2\x79\x76\x4e\x77\xee\x26\xd7\x79\x98\x20\x37\xb6\x70\xf2\x49\xdb\x82\xad\x4b\x28\x73\xf5\x66\x18\xa5\x9e\x35\x9a\x96\x3f\x1a\x2d\xaa\x34\xe0\x67\xaa\xff\xc5\xd5\xa9\xa2\xf4\x71\xe7\xce\xdd\x05\x3d\xba\x92\x22\xff\xa0\x77\x3d\x5d\x98\xa2\x3a\x96\xb4\x86\x72\x81\x30\xd3\xf1\x3f\x4b\x14\x4b\x77\x48\x1b\x3c\xeb\x8e\x34\x69\xa1\xe5\xc6\xa9\x7e\x91\xd1\xc7\x9a\x17\x26\xc5\x1c\x08\x72\x0a\xba\x07\x4c\x8c\x5c\xe7\xe0\xcc\xbf\xeb\x09\xd6\x3d\x8e\xbb\xa2\xd4\x94\xc9\xb4\xce\xf6\x64\xcb\x2e\x00\x69\xb8\xdf\xbe\x3d\x10\x64\xe0\x07\x79\xdc\x03\xad\x65\xa7\x50\xc0\xcd\x01\x5a\x62\x99\x9e\x65\xc8\x49\x09\xc2\x98\x57\x64\x5a\xa6\x79\x5f\xba\x0c\xaa\x94\x67\x47\xc8\xfb\xb8\xb4\x5d\x73\x5e\x83\xad\x9a\x98\x85\xc7\xc2\xd4\xd0\x16\x8e\x84\x83\x54\x3a\xd9\xc5\x31\xa0\xc8\xe9\x12\xbe\x86\x33\x53\x1c\x13\xc5\xfd\x00\xb8\xfb\xb1\x35\x00\x24\x83\x9a\x79\x39\xeb\x6c\x71\xb4\xd4\xba\x67\x9c\xba\x1b\xd7\xb7\x5d\x1c\xef\xc0\xb0\x1e\x7a\x87\xe4\xbc\x4c\x77\xd0\x1f\x75\xd6\xb6\x65\x1a\x3d\x85\x9f\x1e\x83\x71\x09\x46\x3e\x0d\x2f\x3c\x54\x57\x9a\x9e\x65\x68\x90\xef\x25\x00\xcb\xa8\x4b\x03\x9e\x28\x7d\x04\x08\xe7\x7c\x91\x03\xc3\x71\x02\x3e\xfb\x25\x8c\x30\x52\x73\x1d\x87\x2d\x5d\x87\x36\xba\xfd\xbd\xf1\x05\x91\x73\x9d\x7d\xae\x5b\x04\x26\x7c\x43\x15\xcf\x9d\xc5\xa3\x5e\x26\xf0\xb9\x5b\x1c\x8c\xd6\xb2\x81\x43\x54\x70\x43\xc2\xe0\x4f\x92\x2f\x5e\x24\x7a\x85\xc0\xee\x6b\x00\xf9\x4d\xd6\x1b\x3d\x24\xa7\xd1\xb1\xaa\x75\x03\xec\xf7\xfb\x30\x1d\xb3\x8c\x46\x4c\xb7\x7b\xa2\xf6\x7a\xd4\xdd\xb1\x0b\xc0\x46\x5a\x90\xde\xee\x4c\x5e\xf1\x8b\xb1\xd9\xf7\x6d\xde\x28\xb7\x21\x23\x7c\xc9\x60\x3b\xe6\xaf\x28\x3b\xf4\xbd\xde\x78\xed\x67\x66\x13\xe6\xaf\x28\x65\xcf\x70\x91\x69\xdb\xe8\xeb\x57\x2f\xbe\x8c\x60\x2f\xd1\x22\xcc\xe2\x9e\x47\x55\x6d\x09\x00\x12\xb3\x16\x61\xa8\xda\xd8\x72\x24\xe4\x9e\xdf\xc1\x91\x44\xb0\x1b\x7e\x87\x12\x4d\xc9\x27\x64\xc5\xef\xcc\x66\x81\xd2\xd4\x3d\x9b\xa8\x38\xbe\x6f\x5b\xbd\xf3\x98\x26\x55\x60\x98\x0d\x50\x18\xb0\x45\xc3\xc1\x86\x2b\xf7\x13\xa8\x93\x88\x6c\xdb\x7b\x7d\xa6\x60\xe5\xe2\x21\x40\x13\xdb\xb0\xf4\x86\xdd\xb3\x8b\x8c\x26\x0f\x3e\x9c\xd8\x46\x6f\x32\xf7\x6c\x95\x75\x89\xea\x13\x16\xb9\xd2\xe7\x69\xb3\x10\x07\xdb\x53\xb9\xc0\x0d\xca\x74\x53\x02\x4f\xaf\xb0\x8c\x7a\xbf\x62\xe5\xe2\x26\xd1\xc9\x5d\x03\x4a\x8f\x97\x49\x46\x75\x4a\xa4\xb7\xd3\xbd\x34\x3b\xa9\xdb\xed\x4e\x4e\xac\x4c\x0d\x17\x6c\x63\x12\x75\x0d\x06\x6b\xf6\x3c\x7c\x01\xe7\xde\xbf\x5c\xbc\xf9\xfe\x80\xf3\xd6\xf1\xa5\x75\x22\x61\x92\x45\xa0\xc1\xc1\xb3\xf2\x05\x28\xa2\xc6\x8f\xbc\xf6\x1b\x6b\xde\xd2\x31\xbe\x06\x66\x64\xd7\x42\x45\x2c\xda\xd6\x8d\x1a\x42\xa1\xf7\x9c\xb5\x42\xe6\x87\x0d\x31\xd0\xfa\x60\x97\x54\x01\x88\xb6\xd5\xb4\xa0\x1e\xa5\x83\xe6\x02\x05\x92\x60\xc6\x0a\xca\x2e\x48\x49\x81\x73\x44\x32\x33\x67\x12\xc0\xc9\xe8\xdf\x34\xc5\x31\x18\x34\xea\x54\x2d\xf9\x33\x3f\x50\x63\xc8\xd5\xcf\x0c\x55\x9b\x2e\x43\xdb\x04\x0c\x04\x6e\x4f\x0d\x79\xe6\x14\x95\x67\xa1\x4a\x0d\x94\x63\xe6\x2b\x5f\x0f\xb1\xdf\xb3\x6e\x99\xed\xe1\xbc\x76\x54\xd8\x08\xd3\xbc\xef\x5f\x66\xdd\xc9\x7c\xfb\xa2\x1c\xb1\x1c\xf6\x0f\xf1\xb0\x87\x11\xc4\x63\x21\x82\x7b\xa6\xbe\xe9\x5c\x4b\xd4\x8a\x5f\x1a\xc0\xe0\x01\x5d\x39\x9d\x89\xdf\xc8\x9c\x7a\x54\x7d\x36\x5a\xe8\xfc\x12\xb0\x79\xda\x94\x99\xea\x5f\x85\x39\xfe\x4e\xb8\xbf\x3a\x17\x48\x6e\x6a\x8e\xd4\xe0\x79\x7c\x4e\x75\x01\x07\xc1\x1d\x1d\xb5\xa3\x76\x44\xbb\x72\xa3\x10\xd1\xed\xf0\x4d\x55\x8d\xd3\x52\x1f\xb2\xb6\xf7\x5c\x29\xdc\xf7\xa1\x23\x05\xfd\xb8\x79\xbd\xb3\xa4\x97\x5c\x39\x19\x8a\x74\x9e\xf0\x0b\x39\x33\x1d\x04\x37\x7a\x1e\x29\x25\xc5\x22\x8f\xe8\x55\x36\x9d\x8f\xc1\x98\x69\x89\x0c\xcb\xac\x93\x56\xa1\xf1\x36\x4d\x30\xfd\x5d\x35\xc8\x21\x60\x51\x84\xfe\x23\x82\xce\xaa\x5a\x91\xe8\xaa\x5e\x3d\x44\x43\x3e\xe0\xce\xd5\xc4\x91\x43\xda\xeb\x41\x4b\x56\x4f\xf7\x1d\x00\xa3\xf1\xf1\xdc\x36\x62\xb7\xaa\x1b\x8b\xac\x34\x82\xcb\xd1\x8b\x08\x5c\x53\xa5\x00\xba\xce\xf1\x57\x63\x89\x4c\x88\xf0\x39\xde\xb4\xc4\x87\x8f\x48\x78\xf2\x11\xd6\x04\xc8\x26\xb8\x77\xb9\xbf\x91\xbe\x9f\x3d\xd8\x53\x74\xbc\x34\x62\xf6\xcb\x77\xdf\x7e\xad\xd4\xd6\x1c\xb2\xcc\xce\xaf\xf4\xec\x05\x25\xf0\xcf\x8a\x3f\xce\x01\x38\xe0\xec\xd9\xb3\xcf\x92\x67\xf3\x3f\xef\xd9\x6f\xaa\x7f\xb9\x73\x7f\x23\x09\x3d\xd2\x47\x26\xd9\xf0\xc9\xe4\x37\x15\xc7\xd1\x5d\xa1\x6e\x5e\x4a\xb1\x12\x95\x2a\xf2\xb2\x89\x8a\xea\xf8\x37\xc5\xb6\xf0\x21\xff\x4d\x41\x34\x53\x58\x77\xbc\x20\x03\x33\x11\x56\xe1\x09\x4f\xa7\xdc\xb6\x3a\xe1\x89\x0a\x34\x58\x56\xb2\x08\x28\x8e\x7d\x13\x54\xae\x4c\xf1\xb4\x38\x0e\x2c\x97\x04\xed\xd4\x98\x02\xcd\x96\xc2\xe3\x96\x7e\x6a\x84\xc4\x7b\xf9\xd9\x36\x6f\x9a\xbb\x5a\xae\xf4\x54\xbf\xbf\x91\x28\x56\x76\xe2\xac\x1f\xa8\xe5\x55\xee\x05\x58\xf1\xd5\x44\xb4\x67\x88\x38\x6e\x66\x7d\xfd\xe8\x58\x18\xe9\x3e\xd1\x99\x7b\x55\x6d\xdb\x22\x8d\x7e\x39\x31\x3d\x25\x56\x27\xc0\x68\x9a\xb5\x2d\x19\x0d\xe7\x51\xd8\xb5\x11\x65\x05\x6d\x86\x07\xea\x9c\x81\x59\xf6\x91\x1c\xb3\x44\xf6\xd5\xca\x70\x59\x50\xf1\x66\x56\x57\x65\x9d\xaf\xe0\x07\x08\x2e\xf0\x0b\x8e\xa0\xf0\xcb\x1c\x3c\xe1\x37\x9c\xea\x40\x1a\x5a\xde\xe4\xd5\x35\x32\x0c\x33\x73\xd2\x06\x47\x97\xc6\x1e\xc2\x13\x23\x05\xa1\xfb\x4b\x1f\x19\xab\x31\x82\xcb\xa2\x26\x73\x66\x62\xd2\xa4\x26\x36\x9c\x35\x9e\x8c\xa4\x5f\xfc\xac\x52\x1b\x94\xb5\xed\x68\x34\xbc\xd7\x01\xde\x8b\xc6\x9d\x20\x8c\x02\x0d\xde\xd0\x11\xf3\x24\x2f\xa6\xb8\x57\x8b\xc7\xab\xa2\xca\xe5\x43\xd2\x05\xef\x93\x47\xb8\x01\x0a\x23\xee\x19\x10\x71\x0e\x35\xf7\x84\xa2\x2b\x82\x6d\x55\x49\x28\xab\x7a\x6d\x6b\x5b\x54\x4b\xad\x58\xf3\xce\x0f\xd7\xb5\xfd\xa2\xeb\x85\x2a\x19\x6d\x7b\xaf\x33\xb5\xec\xda\x78\x67\x6e\xe0\x2e\x1a\x55\x2e\xc8\x38\xae\x00\x86\x91\x49\x9d\x3f\xf6\x1c\xea\x14\x1a\x54\x27\xa8\x40\x5d\x85\x57\xc6\x08\x8b\x64\x0f\x12\x3b\x43\x08\x83\x5a\x86\xdd\x7e\xa0\x7c\x87\x6c\x24\xb1\x64\x22\xc1\x2d\x17\x09\xed\xd2\xbd\x09\x01\x88\x02\x76\x77\x9a\xa1\x04\xc2\xf1\x0e\x3b\xb8\xa5\x72\xf7\x9f\x18\xc5\x5c\x74\x76\xb7\x94\xec\x38\xb8\xc8\x3c\x10\x2e\x96\x9b\xd1\xf0\xfb\x93\xee\x4d\x70\xdf\x69\x72\x3b\x7d\x7f\x45\x16\x89\x4e\xb5\xd5\x11\x29\x06\xc3\x25\xe7\x27\x88\x51\xc2\x17\x56\x3d\xa1\x89\x32\x31\xda\x58\x4e\x7c\x0b\x36\xe0\x0e\x3a\xc3\xaa\x51\xcd\x2f\xdd\x5c\x6c\xd8\xa8\x88\x4f\xa2\x05\xc3\xae\x31\xbb\x45\x7a\x3c\x0f\xf4\x99\x81\x4b\x9a\x70\xd5\x12\xa6\x6b\x5e\x28\x25\x9b\x8f\xac\xd7\x5a\xea\x88\x9e\x63\xdc\xcf\x23\x6a\xdc\x79\xfc\x8f\x91\x50\x1b\xcc\x8d\x1e\xcd\x1d\x77\x62\x23\xbc\xc4\x67\xd6\xc8\x65\x22\xf4\xc2\xbe\xa7\xb3\xba\x22\x91\x9e\x54\xc7\xe6\x7c\x15\x2e\x71\xca\x1a\x36\x5a\x0b\x76\x26\xe2\xb8\x26\xde\x32\x84\xe7\xbe\x3f\xcf\xff\x0c\x1b\x20\x3e\xea\x06\xa9\x40\x03\x19\xe0\xca\x28\x2d\x17\x7e\x74\x5c\x23\x5b\xa7\x62\xbf\x2a\x9e\x66\xec\x2b\xc5\x4f\x09\xa7\xef\x17\x64\xc1\xe3\xf6\x09\x6d\xdf\x2f\xd0\x62\xd2\x1b\xb7\xfa\x14\xb3\x4d\xa2\xa5\xb9\x0c\xc5\xeb\xed\xad\xbd\x1b\x1d\xd2\x7b\xfc\xaa\xd0\x72\x1a\xce\x54\xe8\x69\x30\x8d\x2e\x51\x03\x1e\x88\xcd\x02\x2c\x4d\xc4\xe8\xf8\xd1\x79\xc0\x0d\xf8\x36\x62\x81\x5b\x47\x8f\x04\x0b\xd4\xd2\x6a\x06\x31\xe3\x98\x7c\x65\x0d\xb0\x74\xd3\xd3\x45\xb4\x93\x65\x34\xc4\x5f\x50\x46\xc3\x0d\x77\x16\xea\x7f\x7b\x67\xd1\xe5\x69\x6e\x16\x22\xfd\x17\xdd\x7c\x9b\xb6\x8d\xb0\x16\x60\xbc\x1e\x98\xb1\xd8\xcb\x3d\x5b\x7c\xdb\xa2\x7c\x43\x7a\x21\x74\xd1\x0b\x20\x5a\xda\x0d\x42\x58\xb3\x50\x69\x93\x71\xfd\x8f\xbb\x98\xf8\x0a\x2f\x26\xa6\x05\x4d\x7a\xed\x04\xed\xe3\xdd\x7f\xd8\xf6\xb2\x57\x16\x26\x26\xd8\x29\x16\x20\x00\x74\x7a\x31\x33\xef\xd0\x3e\x21\xe3\xc3\x2b\xdf\xbc\x33\x57\x2d\xa6\xd1\xf1\x5d\xde\x1c\x57\xb5\x3a\xd6\x03\x48\xb7\x18\xcb\xd3\x79\xb6\x67\x61\x6b\x70\x3c\x2c\x03\xfa\x77\x91\x31\xfd\x4f\x80\xfc\xcb\x9d\x53\xe6\x9e\x55\x23\x28\xa8\x6e\x6d\xa9\x17\xe0\xfd\xd4\x41\x60\x90\x82\x26\x90\x5c\x0d\x36\x9e\x50\xf9\xb0\xbd\x65\xaf\x29\xf5\x00\xde\x35\x37\xa4\xa0\x40\xe8\xb6\x01\x78\xf2\x9a\xe4\x70\xe6\xca\x79\xdd\xf1\x2f\xd8\x25\x08\x0c\xc4\xf1\xfe\xf2\xeb\x77\x00\x65\x01\x65\xe5\x84\xfc\x4d\xf1\x6a\x56\x6c\xb6\x78\xd6\x82\x91\x34\x12\x91\xe8\x51\xa7\x8f\x08\xd4\x23\xe1\x8f\x9e\xeb\xc1\xf6\xf9\xf3\x53\xfc\xe3\x3f\x44\xec\x19\xe7\xfc\x6f\xca\x3b\x26\xb8\x9b\x30\x63\x1a\x02\x49\x8c\x2b\x29\x86\xe8\x89\x8b\x34\x4b\xc8\xa8\xcb\xb5\x31\xcc\xd0\xeb\xb3\x6a\x5b\x32\x56\xcb\x05\x21\x05\x27\x9f\x5c\x4f\xda\xbf\xe8\xbd\xca\x1b\xa1\x83\xe1\x66\xb7\x72\xc6\xdc\xc6\xec\x69\xb8\xc6\x15\x94\x26\x8a\x03\xda\xe5\x44\xc6\x71\x9a\x31\x52\xf3\x77\x68\x1b\x21\x28\x5d\xa4\xaa\x97\x43\x9d\x9e\x65\x34\x4b\x48\xcd\xef\x10\x7c\x56\xb1\x1c\x7a\x36\x77\x24\x6f\x97\x24\xa7\xdd\x3a\x7c\x39\xdb\x08\x79\x2d\x48\x9a\xb1\xda\x3f\x89\x51\xda\x59\xa4\x18\x45\x01\x08\x4b\x07\xb1\x50\x58\x8e\x08\xdb\x0d\x17\xbe\x27\x7e\x47\xce\x80\x6e\x5d\x15\xbf\x55\xc4\x92\x12\xeb\x43\xb7\x3e\xa3\xe3\xd3\x9c\xe9\x67\xb0\x2d\x0e\x6d\x64\x12\x35\x02\x1c\xab\x90\x88\xf4\x87\x37\x17\xef\xf4\x3c\xb3\x98\x30\xf3\x38\x1e\xd1\xb8\x14\x6d\xdb\x57\xba\xa0\xd5\x95\x51\x87\xd2\x1e\x3c\xaf\xa0\x8f\x75\x37\x0d\x59\x3e\xd3\xb1\x49\xb5\xd0\xdb\xe5\xaa\xb8\xfd\xdc\x41\x9c\x11\x6f\x08\x02\xc4\xc1\x1a\x11\xeb\xe1\xe0\x6c\xe7\xae\x8c\xe3\x50\x35\x94\x0f\x0e\xc7\x01\x08\x61\xdd\xb6\x9e\x82\x1d\xe4\x66\xc5\x44\x06\xc8\xdc\x46\x49\xe1\x34\x65\xdd\x65\x38\xeb\xd4\x78\xac\xa7\x03\xf4\xb5\x89\x81\x9e\x91\x75\xd7\x62\x43\xca\xc1\x3e\xa4\x62\x78\xe8\x87\x3d\x4a\xd0\x91\xa3\xba\x41\x13\x5c\x8d\x7d\x7a\x39\xbb\x96\x62\x4b\x1c\xd4\xa5\x7f\xfa\xb4\x7a\x19\xd8\x3e\x90\x75\xc4\xf4\xaa\xae\x2f\x1e\xc7\xc1\x11\xe4\x0d\xfc\x3c\x0c\xcb\xe3\x6e\x4b\x3a\x3e\x63\x43\x20\x08\x54\xea\x7a\xd1\x64\x6b\xfe\xb8\x3f\x8a\xb4\xac\x5e\x2c\xf5\x86\x55\x76\xe4\x7b\x1e\x17\xbc\xa5\xca\x8f\x28\x6b\xb8\x65\x81\x27\x88\x46\x6b\x92\x06\xb5\x29\xdb\x75\x01\x25\x50\xe7\x31\x12\x70\x18\x96\x6d\x1b\xad\x8b\x7b\xb1\x82\x07\xbc\x92\xdf\xf9\xbb\xef\x4e\xd5\xe0\xf9\xb8\x20\x39\x27\x15\x5f\xba\x42\x10\x4a\x81\xf7\xbe\xd0\xeb\x85\x58\x2b\x9a\x84\xec\xb9\x35\x6d\xdb\x39\x2b\xfc\xa0\x1d\xd2\x1d\x23\x22\x32\x51\xdc\x31\x21\xc8\x00\x1a\x57\x4f\x72\x03\x4a\x0c\xd4\xfa\x71\x4c\xd6\xfa\x2f\x3e\x9d\x34\xfa\xdf\x69\xde\x45\xd1\xb9\x43\x1c\xfd\xc3\x3c\x9f\x34\xf0\x47\x6f\x9c\xd1\xae\xd1\x2b\xad\x3e\x82\x2f\xf4\xc9\xbe\xa8\xae\x6d\xbe\x6b\x9a\x2c\xa1\x79\xd6\x48\xa5\xe4\x69\x1d\xeb\x7e\x5f\xc2\xc1\xe5\x10\xc6\x48\x27\x56\x83\x12\x6e\x4c\x9f\x06\x43\x17\x53\x9d\xb9\xb1\x62\xb1\x52\x15\x35\x52\x21\x62\x35\xf4\xc0\x10\xaa\x45\x75\x48\xcb\xb3\x80\x45\xff\x00\x8b\xa1\x16\x66\x43\x5d\xa7\xef\xa7\xc8\x1e\x55\xbd\x4d\xa0\x4d\xa7\x72\xb6\xcd\xaf\xc5\xaf\x58\x28\xa6\x5b\x2e\xc1\x76\x34\x6f\x7e\xc1\x37\x7b\x9a\xc0\x47\x73\x8c\x32\xdf\x5b\x5f\x7d\xb6\x1d\xe1\xbe\x2f\xd6\x4e\x4d\x6a\x41\x39\xfd\xda\xb1\x82\x87\x89\x69\x61\xad\x1b\x8c\x38\x6e\x2b\x7f\x8e\xd0\x8f\xd4\xb5\xbb\x25\x35\xbc\x79\x6e\x4e\x0c\x1a\x81\x09\x1d\x02\xaf\x7f\x00\x0d\x61\xdb\xca\xd9\xca\xbc\x34\x1b\xd6\x39\x22\xea\x72\x2e\x41\x26\x68\x5b\xfc\xdd\x8b\x05\x78\x0c\x6e\xaa\x8e\xcc\x6a\x54\xf5\x7a\x28\x4b\xfa\x78\x8d\x7c\x2a\x03\xc8\x7f\x52\xc0\x0a\xe0\x0a\x0e\xd3\x6b\x40\x52\xfe\xae\xde\x3a\x7a\x72\xca\x0a\xec\xa4\x7e\xa4\x6f\xc5\x5a\x75\xb1\xec\xd5\x49\xd7\xdf\x27\x05\xfc\xeb\x9a\x18\x39\xa7\xde\xe9\x15\x1a\x90\xfe\xbb\xfe\x3f\xc1\x1c\xfa\x51\x81\x86\x13\xfd\xf2\xf6\xcc\x6f\xca\x4f\xf4\x17\x09\x95\xe4\x41\x67\xe8\x96\xff\x94\x46\xf5\xbf\x71\xaa\xf3\xb6\xad\xc4\x3e\x44\xc1\x75\xc4\x6b\x49\xe4\x8d\xe4\x88\x39\xa2\x36\x0c\x37\x63\xff\x80\xcb\x60\x10\x45\xef\x03\x47\x03\xf8\xda\xea\x23\xa4\x98\x70\x13\xa4\x53\xaa\xf5\x18\xbf\x25\x82\x2e\x6a\x2e\x92\xff\xe9\x0f\x81\x9a\x0b\x7f\x86\xfa\xf4\xbf\xee\xc6\x7e\x51\xa7\x2a\x4b\x44\x5a\x65\x47\xf5\xa2\x76\x7c\x73\x44\x2e\x6a\x7f\xaa\x26\x05\x93\x8b\x22\xa9\xfd\x89\x4d\xe1\x33\x5e\xec\x01\x2d\x78\xb0\x96\xf5\xc0\x8e\xf5\x76\x0d\x7b\xc6\xc7\x49\x7f\x81\xda\x75\x5b\xdc\x8b\xf2\x07\xcb\x86\xeb\xdf\x82\x05\x04\xc0\x96\xa6\x5c\x51\x66\xe9\xe4\x25\xc5\xc3\x42\xb7\xad\xa4\x2a\x03\xda\xd5\x44\xee\xa9\xd7\x91\x86\xe1\xdb\x31\x12\xc3\xf8\x4e\x0c\xb1\xca\x10\x5c\x18\x3f\x72\x2c\xad\x20\xd2\x47\x53\x61\x95\x32\x89\x62\x51\x94\x44\xf5\x4e\x41\xf0\xbe\x87\x56\x0b\xbd\x5b\x79\xbd\xdb\xa9\x91\x79\xbf\xdd\xb4\x80\xee\x21\x38\x3b\x89\xbe\xd0\x7b\xb3\x6c\x5b\x02\x57\xf5\x45\xdb\x4e\xf0\x6c\x64\x19\xde\x12\x4b\xc8\xeb\x44\xd1\xfe\xc0\x01\x08\x05\x3b\x70\xec\x4e\xa3\xc5\x50\xb0\x4c\xe9\x36\x69\xac\x05\x5d\xa8\xd4\xd5\x33\x4b\x94\x5b\xac\xfa\xab\x56\x1a\x2d\x61\xe1\x84\x68\xff\x03\x52\x8d\x1d\x83\x0b\x52\xf3\x41\x7c\xe6\x28\xd3\x14\x2c\x86\x70\xfa\xac\xcb\x52\x7f\xcf\xea\xe0\xc9\x46\xb0\x54\xc5\x18\x21\x7c\xea\x32\xa7\xd6\x17\x45\xb7\xcf\x02\x67\xba\xae\x73\x43\x1d\xf5\x22\xa2\x48\x34\x74\xaf\x0f\x0c\x8b\x22\xb1\xc6\x42\x70\x4f\xe8\x06\x47\x74\x55\xee\xe4\x31\xb8\xfd\x1e\x1b\x5f\xe0\x63\xeb\x04\x7c\x2c\x45\x53\xfc\x4b\x1c\x63\x29\x8f\x97\x65\xb1\xfc\x70\xbc\xba\x2a\xf1\xc7\xa6\xde\x35\x62\x55\xdf\x55\xf8\x6b\xb7\xc5\xbf\xfa\x10\x82\xbf\xea\x5b\x21\xcd\xaf\x9d\xc2\x1f\xa2\x52\x36\xac\x14\xf9\xad\x38\x46\xa5\xea\x31\x7a\x6b\x1e\xa3\x97\xe7\xf1\x07\xf1\x00\xe9\x7e\x10\x0f\x5b\x29\x9a\x46\xff\xd8\x6d\x8f\x8d\x3d\xfc\x46\x54\xbb\xc8\xb3\xfc\xf8\x5d\x21\xd7\xbb\xdf\x1e\xe0\x4d\xce\x17\x9d\xe4\x8b\xda\x2b\x26\xcd\x9d\x9e\xbd\x4a\x1f\xf1\xf8\xbe\xd1\x55\xfb\x88\xbf\x77\x57\x57\x3d\x3f\xbb\xea\x12\x05\x88\x06\xfd\xe4\xae\x0a\x5f\x8d\x17\xde\xc8\xdb\xe2\x09\xe3\x7e\xce\x24\x5c\xde\x0d\x3e\xe9\x7d\xb0\x5e\xbb\x2f\xe8\x9e\x59\x4c\x87\xdf\x21\x82\x40\xf9\xdf\x10\x3a\xec\xaa\x03\x5f\xb9\x6f\xf4\x36\x3c\x00\x9b\xf2\xb2\x8f\x9e\x3e\x8d\x4c\x5b\xea\x00\xc5\xc0\xc0\xfa\x69\xc4\xa4\x69\x82\xad\xac\xef\x1f\xc6\x1d\x55\x19\x38\xe3\x0e\x55\x5f\x70\xa4\x17\xa9\xca\x0c\x57\x82\xd4\x32\xb1\x47\x9d\xc8\x6b\x14\x50\xbb\x83\xde\x33\xca\x48\x31\xa2\xe6\x11\xf6\x78\x66\x9c\xbc\x2b\xeb\x5b\xd0\x4f\x01\x60\xf2\x66\xd7\xbb\x62\xc5\x85\xff\xa7\x6d\x2f\xe1\xef\x74\xca\x0a\x2d\x01\xdf\xd4\xe5\xea\xad\xc8\x57\x0f\x21\x06\x0c\x40\xe1\xe6\xab\x87\x9f\xf3\x42\x4d\xa7\x89\x79\x02\x72\x0a\xb0\x41\x00\x7f\x47\x1e\x78\x3f\x5a\x25\xc8\x5f\x2e\xde\x7c\xcf\x3d\x0f\x9a\x4b\xe7\x94\xc9\x3f\xc0\xb7\xaf\x4d\x46\x7c\x03\x8f\x08\x9a\xc1\x6f\xd9\xe5\x6c\x99\x6f\x44\xf9\x32\x6f\x04\xff\x95\x5d\xa2\x26\xfa\x0a\xbe\xbf\x73\x2e\xe6\xf0\xc9\xf7\xbb\x8d\x90\xc5\x72\x84\xc5\x02\xbf\xea\xae\x9b\x49\x07\xef\xc5\x95\x6f\x99\xcc\xb5\x2c\x37\x29\x9a\xef\xf3\xef\x89\xf0\x29\xd4\x05\xa5\x7b\x16\xd9\x94\xbb\x4e\x5c\x89\x75\x51\x89\x38\xc6\xbf\xb3\x7c\xb3\xb2\xbf\x49\x84\xbe\x2d\x11\x4b\xb3\x11\xce\xf1\x4b\x23\xe9\xff\x55\x71\x31\xfb\xe7\x8f\x3a\x26\x7b\xa2\x7f\x3f\xe9\x18\x62\xaa\xfa\x65\x5d\xad\xcb\x62\xa9\xf8\xd8\x41\x74\xf6\x44\x0b\x46\x70\x30\x7c\xc2\x9f\x28\x20\xd9\xb0\x69\xb9\x37\xe6\xf1\xaf\x8a\xb2\xcb\x3d\x28\x8e\x5c\x98\xfe\xec\x52\x07\xd3\x01\xac\xba\x9e\x1b\x47\x9b\xbc\xa8\x5e\xe2\x3a\xc5\xc3\x1d\x89\x3e\x3a\x9b\x4f\xb3\x26\xe1\x9e\x28\x58\x03\x90\x4e\x47\x0d\xa0\xab\x14\x69\x3e\xe5\xd1\x29\x82\xaf\x66\x58\xdf\x1d\xaf\x75\x04\x2d\xff\xd8\x0b\xab\x9d\x1d\xf1\xbb\x23\x7c\xcb\xf5\xe9\xaf\x6d\xc3\xc9\x84\x57\x45\x0a\xf0\x6b\x5e\xa1\x03\xfe\xcb\x7a\x57\xae\x40\xa1\xb9\x2e\xaa\xd5\xf1\xa6\x5e\xed\x4a\x61\x70\xed\xa4\xf8\x6d\x57\x48\xb1\x3a\xbe\x7a\x40\xe7\xfc\xe4\x53\x3e\xa4\x7b\xa8\x8e\xe3\x8f\x2b\x79\x33\x5b\x89\x6d\xc3\x96\xbc\x99\x59\xb5\x3b\x5b\x73\x9d\x16\x3a\xf7\x96\x4e\xdb\x77\xc3\xe7\xe7\x37\xcf\xed\xf3\xf9\xcd\x74\x4a\x23\x71\xbf\xad\xa5\x6a\xe0\x54\x9d\xde\x64\x8b\x75\x7a\x93\xf1\x5d\x12\x99\xd2\x85\xe1\x2a\x81\x3f\x15\xd1\x41\x2c\x77\xf2\xc0\xd2\x57\xbe\xac\x29\xdb\xed\xf5\x72\xa2\xd7\x34\x3d\xce\x56\xdd\x60\xbc\x83\x39\x13\xc7\xde\xbb\xce\x37\x02\x4d\xf1\xe3\x38\x4a\x51\x55\x65\x43\x32\x5d\x88\xc7\xfd\x4c\xd5\xe8\x01\x87\x2b\x86\x79\x49\xdb\x96\x18\xfe\xbe\x57\x7a\xc2\x78\x3f\xe1\xea\xa5\x93\x4c\xf1\x32\x38\x0c\x9a\x5d\x5e\x96\x75\xbe\x12\x16\x99\x8f\xa3\x79\x92\xd1\x09\x12\xc4\x67\xa9\xc7\x42\x8f\xc4\x01\x8e\xa6\xc7\xfd\x91\x5c\x90\x0a\x3a\x85\x2b\xbd\xd0\x39\xd5\x31\xe0\x56\x40\x78\x9a\xf9\x2f\x00\xbc\x45\x64\xbc\xda\x33\x32\x0e\xae\x65\xb6\x17\xbd\x34\x1a\xb1\x9b\x2b\x06\x97\x98\x63\xd1\xbf\x40\x09\x8f\xe8\x44\x69\xdb\x7a\x8f\xd3\x6e\xac\xef\x99\x9a\x5d\x8a\xfc\xc3\xa5\xde\x3b\x79\xc1\xba\xb6\xe0\x8f\xd8\x37\x89\x60\x66\x14\x24\x8a\x49\x71\x5d\x34\x4a\x3e\x24\x85\x31\xb4\x16\x5e\xeb\xcd\xf0\x03\xa6\xfc\x30\xf3\xed\x9e\x50\x26\x48\xf4\xff\x13\xba\x4b\x4e\x4f\x80\x3c\xa2\xca\xcb\xe6\xf4\x4a\xd6\x77\x8d\x90\x27\xa2\xba\x2d\x64\x5d\xe9\xd5\x3f\x62\xa9\x1b\x90\x59\x70\x55\x17\xed\x1a\x71\xac\x17\xc1\xa5\x8a\x8e\x84\xae\xf8\x97\x6f\xbe\xe3\x42\xaf\xca\x85\x14\xeb\xfa\x1e\x7e\xbf\xbc\x91\xf5\x46\x9f\xb9\x76\x8d\x90\x2f\xae\x45\xa5\x97\xab\x9b\xa2\x51\x35\x2c\x26\x56\x5b\xcc\xc5\xec\xce\x2c\xde\x30\x12\x50\xa1\xc1\x07\x1a\xd2\x46\x94\x6b\x07\xfa\x8c\x0f\xfa\xdf\x19\x0e\x07\xce\xcd\xb8\x18\x1f\xce\x3f\x9b\xa1\x0e\x5f\x78\xec\xfc\x9c\x73\xfb\x6a\x90\xa1\x95\x67\x5d\xa6\x5d\x00\x24\x63\x1f\xb9\xff\x66\x90\x8a\xad\xa6\x4b\xa5\x0b\x80\x54\x5c\x33\xf8\x6f\x06\xa9\x98\x66\x73\x89\xb8\x67\x48\xc3\x36\xaa\x17\x3e\x48\xa1\xca\x6f\x8b\xeb\x5c\xd5\xd2\xa5\xe1\x85\x40\x2a\xee\x99\x07\xef\x06\x82\x88\x7b\xd7\x75\x6c\x37\x08\xd4\x91\x81\xe9\x59\xe8\x34\xc1\x7f\xf0\xc8\x75\xb0\x3c\x32\x68\x33\x8b\xa0\xea\x36\x96\x6b\x8a\x0a\x95\xf5\x36\x9e\xa9\x94\x8d\x66\x6b\x5b\x40\xac\xda\xc6\x1a\x29\x56\x12\x7d\xfb\x50\xdd\x1f\x13\x10\x9d\xeb\x95\xa0\x7a\xb4\x76\xa3\xb1\x3e\xc2\x6d\x68\x32\xd1\xb2\x95\x9d\x98\x72\xb6\x84\x81\x8b\x80\x89\xf5\x56\xc8\x9c\x1e\x79\xe3\x39\x87\xaf\x1a\xfc\x6a\x6c\xac\x7d\x53\x35\x2a\x2f\x4b\x83\xbb\x76\xe4\x4f\x8b\x66\x7f\x60\xfa\xe9\x21\x59\x97\xc2\xac\x07\xde\xc4\x63\x36\xf2\x4a\x5c\xed\xae\xfd\xc7\xad\x14\xcb\x5c\x89\xd5\xc9\x5a\xe4\x6a\x27\x45\xd3\x3b\x71\x83\xc3\x6e\x38\x51\xed\x6a\xe5\x4d\xb4\xea\x48\xce\xbe\x7d\xf3\xd5\x57\xaf\xde\xc2\x6d\xc6\x63\x59\x5f\x0f\xee\x85\xad\x14\x24\xb8\x29\x26\x9d\x95\xf5\xb5\xd9\x65\x84\x47\x32\xb4\x67\x77\xb9\x1c\xa0\x0b\x8d\x7d\xaf\xe3\x8d\x26\x80\x46\xe1\x9f\x90\x02\x44\x1c\x4d\xa2\xa8\xd6\xf5\xa7\xa4\xa0\xe3\x8d\x26\x00\x4d\x3d\x48\x81\x39\x7d\x91\x49\x61\x06\xf1\x16\x44\x75\x49\x42\x88\xdd\x7e\x7d\xf6\xa5\x4f\xca\x37\x6f\x1a\x11\x5e\xfe\x1f\x2a\x3a\xc6\x1c\x4b\xc4\x88\x89\x05\xaf\xbc\xfe\x2e\x3e\x32\xec\x54\x5e\xe8\xb3\xff\xd8\x90\xf3\x22\x82\x26\x74\xf4\xcd\x4e\x15\xe5\xe1\x61\xba\xad\xcb\x87\x75\x51\x96\xc3\xc1\x89\xda\xad\xde\x00\xdd\xca\xe2\x36\x57\xc5\xbf\xc4\x18\xb5\x5c\x3a\xcf\x58\xc5\xaf\x53\x95\xa1\xa3\x8c\xdd\x8e\xed\x62\x61\xcf\xc5\x49\xa4\xa5\x84\x42\x47\xcf\x79\x91\x9e\x39\x85\xb8\xfe\x94\x93\x39\x93\x48\x9a\x54\x51\x52\x4f\xa3\x24\x9a\xe6\xd3\xe8\x24\x9a\x5e\xe9\xd1\x37\x7b\xfd\xe2\xe5\xbb\x37\x6f\x7f\xbd\x7c\xfd\xe6\x2d\x17\xb3\x97\xb6\x7d\xb8\x98\xbd\x35\x7b\xae\x3f\x7b\x6a\x3e\x26\xe3\x8a\xae\xd0\x43\x92\x07\x0f\x02\xd7\xbd\x4c\xcf\xb2\x85\xff\x90\x3c\xee\x8f\x0c\x38\xb6\xc9\xd3\x40\xfd\x40\x37\x70\x85\x7f\xd1\x44\x0a\x5f\xa0\x2d\x0e\xd4\x6d\x55\x40\x29\x72\xf9\x40\x89\xc2\x17\xc6\x98\x0a\xa3\xae\x73\xbd\xf1\x3d\x7c\x97\x57\xf9\xb5\x90\x2f\x0f\x7d\x38\x12\x2d\x48\xa6\x68\xbe\x14\x8d\x92\xf5\x83\x58\xf1\xc9\x59\x2f\xac\xa8\xae\xf9\xe4\x6c\x6f\x78\x32\xd1\x87\xd7\x87\xe4\xa9\x66\x65\x5d\x7f\xd8\x6d\xc7\x6d\xcc\x77\xc6\xc6\xd8\x6f\x81\x59\x55\xcb\x0d\x00\x0c\x01\x9c\x33\xdd\x33\x2d\xbc\x41\x66\x7e\x1f\xdc\x58\x00\xf0\x61\x71\xe6\xfa\x93\x75\x51\x41\x22\x5f\x0e\x3f\x5d\x8d\x7e\xaa\x6b\x07\x5f\x02\xe2\x56\x68\xfe\xd3\x8b\xd8\xb6\xc4\xbb\xd0\x21\xb6\x28\xd6\x1e\x7b\x14\xcd\xce\x58\x51\xe9\x31\xed\x38\x13\x47\x5a\x5e\x1f\xfa\xb5\xc4\xec\xe2\x2c\x5d\xa8\x6d\x85\x38\x76\x3f\x09\xa5\xfb\xdf\x6b\x42\x0a\x2d\x08\xe3\xe8\x9b\x4a\x4b\x0a\x7a\xdf\x3d\xbc\xf2\x20\x46\xe4\x9b\x9f\xbf\x7f\xf5\x36\xf3\xc0\xe2\x98\x80\x46\xc5\x02\xbf\xae\xe5\xc8\xb4\xfd\xc3\x33\x80\x99\xd3\xc3\x68\xf1\x11\xfc\xcd\xf0\xe4\x80\x49\xaf\x43\x2c\xed\x8e\x20\xee\x4b\xb4\x65\x02\xe8\x95\x6f\x61\xdc\x21\x57\x88\x5d\x41\x1c\xb8\xb7\xd0\x4b\xc0\x9e\x50\x1f\x66\xc7\x1b\x98\xc8\x99\xd8\x25\x7b\x2d\x0c\x7a\x07\x51\x2c\x6a\x8a\xea\xba\x14\x0a\xdc\x46\xdc\xe7\xcd\x27\x7f\x5e\x68\xa1\xa1\x52\x45\xae\x84\x9f\xc0\xce\x1f\x2c\x83\xa6\x7c\x36\xda\x94\xcf\xfc\xa6\x7c\x06\x4d\x59\x71\x00\x3f\x98\xc8\xae\xc5\x64\xd0\x62\x95\x5f\xb0\x61\x73\xa9\x0e\x42\x55\x57\x42\xce\x5c\x6d\x3b\x8a\x36\x1c\x92\x55\x78\x56\x77\x17\x10\xc5\xbe\x6f\x10\xdc\x43\x39\x2a\x8d\xcc\xd2\x7d\xee\xdd\x5f\xe8\xc0\xf1\x03\x9e\x5e\xcb\x5d\xcb\x1d\x79\x0d\xed\x95\xd1\xb8\x40\x57\x71\x8c\xdd\x19\xc7\xd8\x2f\x7b\x43\x1e\xe8\x01\x32\x9b\x69\xc5\x0b\x7b\xbc\xa4\x9f\x98\x35\x2b\xfc\x1c\xfd\x82\x54\xe0\x51\x8c\x3c\xe1\x98\xff\xc1\x02\xfc\xdb\xb9\x1e\xae\xb0\x57\xd9\x49\x98\x59\xa8\x28\xf9\xb7\xaa\x83\xf5\xa8\x0c\xce\x6e\x61\xb3\x68\x5b\xcc\x61\xac\x3e\x65\xde\x34\x47\xa8\x8b\x19\x55\xa8\x60\x85\x8f\xcd\x12\x12\x41\x12\x15\xaa\x7a\xbb\x59\x50\xf6\x88\x97\x0f\x2c\x91\xc1\xc8\x1b\xc8\x07\xde\x00\x37\x3e\x6f\x44\xd1\xde\x60\x7d\xb4\xdb\xba\x2e\xeb\x86\x08\x40\x29\x54\x1d\x14\xdd\x81\x8c\x79\xcd\x6a\xaf\xb8\xcb\x61\xc3\x9a\x15\xb6\x39\xea\xb9\x08\xfb\xef\xf4\x22\xeb\x34\x49\x05\x9f\x9f\x17\xcf\x95\xa3\x8e\x9d\x4e\xcd\x8d\x0e\x07\xb8\xc3\x86\xd7\x60\xc6\x2a\xa4\x7a\x60\x25\xaf\x11\x5c\x74\x5d\x08\xc9\x96\xfa\x09\x66\xf9\x51\x95\x36\x19\x5f\x2e\xf4\x22\x52\xb2\x47\x0c\x4c\x96\x7b\x9a\x40\x08\xd5\x82\x50\xf3\xe5\x43\x95\x6f\x8a\xa5\x5e\x35\xbb\x27\x3e\xc9\x21\x86\xdf\x09\xeb\x70\xdf\xb2\x8d\xa9\xd7\x16\x4f\xf2\xf2\xec\x0f\x0e\x68\x64\xba\x0a\xdb\x6b\x19\x97\x6d\x32\x39\x73\xac\xc5\x1d\xa6\x57\x1c\x2f\x0d\xff\x98\x47\x1e\x85\x81\x40\x9d\x5c\xc1\xb0\xd3\xcb\xe9\xbb\x87\xad\x70\xbb\x59\x43\x2a\x8a\xc1\x5e\x90\x1e\xa4\xae\x46\x37\x7a\x97\xb2\x0d\xae\xec\x12\xc6\xa4\xd5\x30\x7d\x10\x0f\xfa\x0b\x56\xf1\xf9\x79\xd5\xf1\x7e\x56\xb6\x2f\x0a\xae\x52\x99\x56\x59\x76\x54\x74\xbb\x70\xd1\xed\xc2\x5e\xe3\xad\x8c\xed\xf9\xb8\xb4\x85\x62\xd5\xe8\xe8\x3a\x10\x79\xef\xcb\xa6\x78\x8e\xdd\xc2\xa0\xfd\x59\xe4\x1f\xbe\xcb\xb7\x47\xa1\x24\xbb\x85\x18\x9b\x43\xd2\xaa\x5d\x89\x51\x94\xec\x64\x5e\x5f\xe8\x14\x66\xc7\xc7\x38\x7a\x5a\x73\x65\x04\xca\x5d\x59\x82\x62\xde\xbc\x74\xfb\xf4\x0a\x42\x2b\x66\xae\xf2\x57\xe2\x9d\xd1\x19\x3a\x38\x70\x90\xa0\xba\x09\x60\x82\xb7\x1d\x31\x05\x22\x03\xdb\x31\x37\x90\x23\xa5\x53\x43\x8e\xdc\x72\xb8\xa9\x36\xc8\xdf\x22\x39\x06\x65\x0a\x2b\xdf\x2d\x16\x9b\xfc\x83\x8b\x44\xba\xda\x87\x75\x37\xee\x76\x41\x8a\x7b\x26\xcd\x7a\x3e\x10\x8b\x8c\x80\xe2\xad\x0b\xfe\xae\xd7\xf1\x6b\x93\xb0\x50\x63\xed\xab\xcf\x3a\x95\x9f\x92\xe4\x35\xab\x82\x89\xdd\x6f\xe6\x1a\x5b\x34\xe7\x32\x58\xfe\x04\xf8\x8f\x93\x39\x2b\xf4\xf9\xb2\xb8\xae\x28\xe0\x73\x31\x5d\xb9\x49\x57\x71\x53\x27\x3a\x58\xd4\x5f\xe7\x45\x29\x56\xc7\xaa\xb6\x8b\x7a\x5e\x1d\xe3\x96\xb2\x14\xc7\xf5\xfa\xf8\x3f\xa2\xe9\x48\xf9\xa7\xd1\x7f\xcc\x8e\xbf\xab\x1b\x75\x5c\x16\x1f\x44\xf9\x00\x5f\x6d\x70\x6d\x2b\x1f\xcc\x85\xc9\xea\x18\xb2\x3e\xae\x25\x26\x8a\x40\xba\x46\x0f\x8f\xe7\xd6\x59\x44\x8f\x46\x2e\x5c\xbc\x72\x5f\x16\x55\xa1\x5e\xe3\x14\x5b\x1c\x08\x47\x59\x3d\x09\x1a\xa5\x13\xb1\x00\x12\xa1\xdf\x40\x39\xa5\x8c\xcc\x19\x9a\x67\xe9\x29\x42\x49\xee\x4d\x1c\x63\x79\xda\xf0\x41\x0b\x92\x4e\x65\x8f\x23\xde\x0c\x77\xd6\xa0\x14\xca\x6e\xf9\xe9\x3f\xd2\x7f\x24\xd9\x34\x81\x7f\x9f\x9c\xb2\x87\x03\x33\xd8\x1a\xf0\x0f\xef\x78\x47\x25\xc4\xb9\x2f\x21\xce\xbb\xe3\xe6\xda\xea\xc0\x85\xfb\xe9\x1f\x32\xcd\xb6\x89\xab\x3f\xfe\x0c\x5f\xc3\x8c\xc9\x71\x90\x0d\xd6\x2d\x11\x46\x08\x0e\x93\x97\x2a\x58\xb9\x0f\xad\x90\x18\xb7\xf8\xc4\x78\x65\x27\xc0\xe2\x52\x3a\x76\x9d\x80\x51\xdd\x90\xfc\xd8\x9a\x6b\xe2\x9a\xaa\x7f\x42\xcc\x75\x5e\x94\x17\x42\xc1\xba\x7c\x21\xcc\x6a\x79\x69\x08\x4f\x3e\xfe\xa9\x6e\x8f\x37\x1f\x8d\xb8\x77\x64\x7c\xfd\x45\x51\x79\x4b\xf8\xd8\xf5\x85\xb8\x3b\xae\x1d\xd7\x2e\xa0\xc8\xeb\x6e\x09\x22\xff\x5f\x3a\x73\x04\xb3\x5d\x9f\xda\x82\x76\x99\xe1\x69\x56\x6f\xd3\xc3\xf1\x93\x56\x19\xef\xb5\x98\x0e\x92\xba\xc0\xbb\x6a\xa4\xc8\xf6\xbc\x79\x28\xd3\x4f\x1a\x0d\x1e\x97\x66\xaf\x38\x2a\x0b\x5e\x06\xa3\x60\xf0\xd2\x16\x58\x65\x6c\xb4\xc6\xca\xb4\x3b\x24\x71\x00\xad\x7a\x5c\x7a\x52\xc1\x8a\x0d\x97\x68\x46\xd8\x6b\x5b\xef\x44\xa7\xa5\x7e\x38\xd3\x1d\x3a\xca\x99\x63\x95\xb1\x89\xe7\xa2\x57\xa1\xde\x29\xae\x03\x7e\x41\xef\x2c\x57\x9f\x9b\x5c\x4b\x59\x36\xb5\x6e\x59\x00\x63\xf6\xee\xd1\x09\xdc\x95\x5e\x0d\xdd\xe1\xce\xc5\x0a\xfb\xdd\x8f\xb2\xf0\x32\xcb\x57\x68\x8a\x3e\x28\x2b\x2f\x1c\xdc\x9e\xaf\xf7\xe8\x69\x8c\x02\xd1\xdb\x5c\x81\x04\xab\x1e\x08\xe4\x56\x77\x60\x03\xa9\x2d\xbb\x51\xb6\x4a\x4f\xd9\xda\x81\xc9\x82\x4f\x8c\x68\x96\xb2\xb8\x1a\xf3\xc7\x3e\xf6\xb3\xeb\xda\x28\x78\x34\x1a\xb1\x2f\x05\x3a\xa6\x14\x75\xb5\xf8\x9d\xf7\x44\x20\xcb\x4a\xbf\x1e\x8b\xe0\xc9\x95\x4b\x47\x17\xba\xa0\xae\x5d\x5e\x5b\xc1\xed\x0f\x96\xd8\x25\xb4\x38\x10\xfe\x89\x25\x1c\x14\x68\x58\xd4\x83\x76\xfb\xbd\xa5\x1b\x78\x6f\xc9\x81\x37\xbd\xb5\xc1\xcb\x0d\xe6\xa3\x2f\xe8\x8d\x2b\x26\x3f\xa5\x51\xfc\x54\x16\x87\x5f\x21\xc5\xf7\x27\x34\xce\xf0\x23\xe1\x84\x5e\x02\xe5\x0e\xef\x9d\x2d\x0b\xb7\xd1\x4e\xfe\x4d\x4b\x4a\x7e\x4d\xad\xc6\xc0\xde\xd3\xc5\x71\xa7\x46\xeb\x4d\x1b\xfb\x42\x9f\x80\x20\x9e\xa7\x31\x32\x4a\xf0\x83\x4a\x9d\xfe\x29\x4e\x74\x87\x6e\x77\x12\x95\xcc\x25\x98\x54\x7b\x7a\x70\xee\xa2\x51\x96\xb2\x54\x61\xaf\x6b\x09\x98\x9f\x7d\x7b\x8f\xde\xbe\x09\x1d\xae\x3f\x73\x7a\xb6\x91\x2f\x83\x5d\xa3\xf7\xf5\xd1\xe0\x1c\x71\x70\xdd\x50\x61\xc8\x30\x4b\x02\x27\x04\xaf\x12\xa3\x9b\xed\xa1\xbd\xcb\xee\x27\x72\x50\xa3\x4f\xd9\x00\xad\x22\xd5\xdb\x96\x06\x55\x93\x07\xab\x26\x0f\x56\x0d\xea\x24\x83\xf2\x1c\xae\x95\xcb\x5c\x64\xfd\x2d\xac\xfb\x9d\x2a\xe7\x5b\xa9\x7f\x1f\x59\x75\xcf\x98\x7a\xc1\x16\x2c\xe8\xb4\x2a\xa3\xbd\xf4\x16\xfa\x9f\x4f\x99\x67\x9d\x36\x16\x26\x99\xf5\x50\x40\xa4\x87\x11\x15\xb9\xb5\x07\x0c\x0b\x77\x4e\xc6\xe4\x59\x7f\x55\x1a\xbc\xe1\x69\x46\x0d\x10\xfc\xa3\x55\xe9\x24\x8a\x39\x85\x0e\x18\x34\x33\xd5\x1d\xe0\x0e\x89\x06\x61\xbf\xa3\x26\xf5\x04\xfd\x05\x7c\x52\xb1\x80\xe0\x36\x28\x8d\xd1\xb2\xd8\xfb\xb4\xfe\x38\xb2\x75\xeb\xe4\xef\xb4\xe8\xea\x15\x84\xfe\x6e\x9d\x2a\xac\xd3\x87\xaa\xbe\xab\xc6\x66\xa5\xd3\xca\xb0\x8a\xd5\x87\x44\xe5\x3c\x54\xd4\x0c\x84\x36\xca\x1a\x3e\x3f\x6f\x9e\x5b\x6f\xba\xf3\xc6\x6a\x6e\x76\x3c\x4f\x9b\xec\x68\x17\x76\x1e\xc7\x33\x70\x9d\xee\x32\x3e\x99\xd3\xfd\xc8\xaa\xff\x91\x39\xef\xd7\x05\xa6\xc6\xa7\xec\x16\xfe\x47\x20\x7f\x1c\x7e\x0d\x69\xf6\x0f\x9f\x8a\xd5\x66\x71\xec\x2d\xf5\x63\x1b\xe6\xad\x65\xab\x30\x73\xd6\x3b\x70\x1d\x5a\x11\x0b\x7f\xa4\x5a\x56\x93\x7e\x63\x04\x13\xdd\x9f\x50\x9e\xe2\x4d\x58\xf9\xcb\x88\xad\xd6\x08\x01\x20\xd0\x64\xa2\xac\x05\xaa\xec\x20\xbb\xec\x52\x17\x6a\xf5\x3e\xba\x78\x7f\xf3\xbf\x2a\x6e\x4f\x7d\xf8\x47\x8b\x3c\x90\xb9\xff\xb8\x30\x31\x48\x6a\x71\xe8\xfa\x44\x0c\x4f\x38\x70\x09\xae\xb2\xa3\xba\x6d\x09\xfe\x1c\x3b\xf3\x50\x63\x04\x53\xb5\xad\x64\xcd\xd0\xda\xd2\x02\x2e\x1c\x37\xc6\x1e\x53\x7c\xa4\x78\x21\xad\xc4\x31\x18\x67\xee\x0e\xcb\xe4\x87\xc4\x0d\x4f\xd2\xf8\x24\x19\x69\xfc\x7e\xcf\x80\x97\xc3\x85\x9e\x77\x7d\xff\x00\xf5\xb8\x3e\xb4\xa8\x5c\x71\x12\x45\x53\xf0\x5d\x90\x79\xb5\xaa\x37\x84\x4e\x3b\x66\xaa\x0e\x86\x3b\x9a\x01\x23\xf8\x21\xcb\x8a\x03\x76\x74\xff\x86\xfd\x4e\xcf\x38\xc2\x69\x7b\xa4\x37\xa3\x01\x76\xa5\x67\x00\xb7\x10\x76\xf3\x02\x90\xa7\xfe\x10\x74\xdf\xd6\xe6\x44\xb1\x67\x80\xdc\x32\x18\xaa\xf4\xd1\xc6\xe0\x42\xc7\xb9\x16\xea\xd5\xf7\x7f\x1b\x03\x0d\xd0\x6f\xf5\x2b\x61\x61\xfb\xb9\x30\x50\x23\x81\xa5\x11\x2b\xb8\x24\xa4\x1a\x5a\xf6\x61\xdc\x38\x76\x90\xd9\xdd\x49\xad\x73\x31\xa9\x4c\xad\x68\xdb\xca\x21\xc5\x54\x67\x0f\x38\xfe\xde\x9a\xba\xe2\x5f\xda\xb6\x63\x86\x5b\x9e\x01\x73\x1c\x7b\x0f\x6d\x5b\x89\xbb\x63\x6b\x70\x4e\x22\x6f\x03\x8d\x28\x0c\x2e\x53\xdb\xa2\x6f\x14\xf2\xff\x27\xef\x5f\xbb\xdb\xb6\xbd\x7d\x51\xf8\xbd\x3e\x85\xcd\xdd\xa1\x3f\x31\x0c\xab\x72\xda\xbd\xd6\x7a\xe4\xa2\xfe\x3b\xb6\x92\xb8\xf5\xad\xb6\x93\x34\xd5\xd0\xd6\xa2\x25\xc8\x42\x4d\x81\x2a\x08\xd9\x71\x25\x7e\xf7\x67\x60\xe2\x42\xf0\x26\x3b\x69\xbb\xf7\xd9\xe7\xf4\x45\x63\x91\x20\xae\x13\x13\x13\xf3\xf2\x9b\xfe\x7e\xf7\x98\xc7\x8a\xcd\x81\x1c\x7a\x14\x1b\xc2\xe8\x51\xac\xe7\xba\x47\xb3\x9e\x7b\x2d\x3b\xe6\xaf\xf5\x3a\x2f\x09\x0c\xc6\x3e\x34\x1f\x49\xb3\x52\xeb\x35\xcd\xb2\x90\x61\xa6\x7d\x6e\x55\xd7\xec\x92\x58\x67\xb7\x55\xff\xfc\xf0\xf5\x69\x7f\x74\x71\x79\x73\x72\x71\x7e\x78\x3a\x7a\xd3\x3f\xbc\x79\x7f\xd5\xbf\xee\x6d\xef\xe1\xfe\xaf\x37\xfd\xf3\xe3\xd1\xe5\xd5\xc5\xcd\xc5\xcd\xa7\xcb\xfe\x75\x6f\xa5\xf3\x39\x6d\x77\xb1\x1d\xbf\xfa\x5b\x5f\x3f\x7a\xdb\xdd\x0c\x9f\x5e\xbc\x1d\x5d\xdf\x1c\x1e\xfd\x7c\x73\x75\x78\xd4\x1f\x5d\x9c\x8f\x8e\xfb\x97\x57\xfd\xa3\x43\x55\xbd\x2a\xab\x0a\x7c\xe8\x5f\x5d\x9b\x9f\x57\x87\x27\xd7\xd5\x62\x7b\xf8\xfa\xe6\xea\xfd\x91\xea\x08\x34\xff\xe6\xe4\xb4\xaf\x9e\x8e\x0e\x2f\x2f\x4f\x4f\x74\xa9\xd1\x4d\xff\xec\xf2\xf4\xf0\xa6\x3f\xfa\x78\x75\x78\x79\xd9\xbf\x52\xd5\xe5\x0f\x2f\xce\x4f\x3f\x8d\xde\x9e\x9e\x9c\x9d\xf5\xaf\x46\x47\x17\x67\x97\x17\xe7\xfd\xf3\x1b\x18\xd6\xe8\xa7\x5f\xde\xf7\xaf\x3e\x8d\x4e\xce\x6f\xfa\x6f\xaf\x5c\xcf\x46\xc7\xfd\x37\x87\xef\x4f\x6f\x46\x87\xd7\x9f\xce\x8f\x46\x17\xaf\xaf\xfb\x57\xaa\xa7\xf0\xc9\x55\xff\xaa\x7f\x7e\xdc\xbf\x1a\x9d\x5e\x5c\x5c\x8e\x4e\x4f\xce\x4e\x6e\x7a\x7b\xf4\x3b\xdc\x3f\x7b\x0d\x0f\x0f\x8f\x47\xef\x2e\x2e\x7e\xbe\xee\xad\x32\xec\xa6\x70\x95\x65\x2d\xbd\x17\x22\x5c\x8a\x01\xae\x90\x24\x75\x22\xb7\x27\xef\x98\xcc\x5d\xa0\x65\x99\x45\xe9\xc5\x23\xbf\x34\xe2\x13\x20\x41\x06\x95\x05\x0a\xf4\xe1\x14\x94\xbb\x05\xcf\xad\x68\x18\x0d\xc4\xb0\x05\x71\x64\xfc\x40\xfd\xad\xb1\x57\xe8\x40\x0c\x7b\x80\x75\xcd\xdb\xed\x50\x3f\x07\xdf\x95\x81\x18\x6a\xf5\xa2\x3a\x56\x2a\x2d\x96\x4c\xa6\x75\x43\x73\x09\xdf\x08\x43\x51\xb5\x86\x8e\xb9\x63\x6b\x2b\xb2\xf9\x85\x65\xe7\xcd\xfb\xf3\x23\x58\x68\x57\x74\x04\xdf\x2a\xd2\xb9\x56\x5d\xac\xa9\xca\x85\x81\x98\xca\xec\x6f\x84\xeb\x4a\xeb\x80\x13\x53\x14\x7e\xe8\x00\x60\xbd\x6d\xf5\xf3\xd6\x86\x1e\x27\x7f\xb5\x97\xc9\xa6\x7e\x25\x99\xb6\x14\xd0\x4e\x79\x35\x5b\x75\xb3\x9c\xe6\xde\xd0\xc8\xd2\xcf\x32\x07\x8e\x2e\xd3\xcf\x12\xb9\xec\x4f\x83\xe5\xb0\x55\xcc\x39\x06\x31\xfc\x51\xa5\x5d\x25\x09\xc7\x95\x4c\x6b\xee\xfc\xa9\xb1\xb7\xd0\x0c\x69\xda\x19\x13\xda\xb1\xfb\xa2\xb6\xfb\x63\xd7\xfd\xb1\xeb\xfe\x54\x75\x7f\x8c\xc6\xe5\xbe\x4f\x75\xf7\x6c\x7d\x83\xa9\x21\xd5\xf1\x60\x3a\x44\x8a\xe3\x69\x7e\xd7\x3f\xff\xb0\x5e\x33\xb5\xff\x9a\xcf\x65\x21\x12\xb1\x0b\xc9\x6d\x19\xbf\xab\xfa\xdb\x6e\x70\x74\xd7\xe8\xa1\x70\x10\x5e\x18\x6c\xb5\x9a\xb0\x65\x73\x9c\x56\x4a\x50\xb4\x92\xee\x20\x3d\x66\xe9\x22\x92\xe3\xd9\x85\xc1\xee\xab\xa9\x48\x98\x8a\x9a\x8b\xaa\x65\xd0\x35\x26\x1c\x4c\x70\x37\x3a\xa1\xb2\x77\xe6\x0a\xcc\xc9\xea\x8e\xca\x2d\x03\x06\xe7\xf7\x53\x71\xaa\xe2\x87\xbc\x71\xd2\x6c\x42\xaa\xdd\x74\xb9\x50\xf3\xb4\xc1\x4f\x79\xe3\x67\x31\xbb\xfd\x76\x12\xc9\x68\x14\x4d\xa2\x85\x6c\xf0\x28\xad\xff\xcc\xd9\x34\x46\xe0\x62\xea\x6a\x78\xc6\xe9\xd9\x48\xbc\xfa\xac\x77\xf4\x44\x71\x70\x1c\xc9\xe8\xd0\xf6\x62\x45\xf9\x72\x4e\x45\x74\x1b\x03\x60\x6d\x21\x9d\x7f\x3e\x65\xd6\x9f\x36\xcb\x10\x6e\xac\xd7\x99\xe5\x8f\x55\x37\xbf\xac\x05\xe1\xb5\xf0\xf2\xb5\xd8\x34\x3b\x75\x2b\x64\xfc\xf9\xeb\xa6\x5e\x2c\x01\x2a\xf0\xeb\x3c\xc9\x89\x30\xa2\xa8\x0b\xee\xb4\x17\x05\x9d\x0c\x7c\x1c\xf1\xa3\x48\x46\x71\x72\xd7\xe7\x52\x30\x9a\xbe\x7e\x6a\xc8\xf1\x13\xcc\x93\x09\x8d\x03\x6d\x7e\x0d\x24\x9d\x2f\xe2\x48\x52\xf8\x9d\xe1\xf1\x73\x75\xe8\xce\x80\x78\x7f\x88\x42\xd1\x39\x77\x69\xdf\xcf\x0f\xcf\xfa\xd7\x97\x87\x47\xfd\x6b\x84\x99\x2b\x01\x16\xf4\x3c\xcb\x39\xd8\x72\xc1\x4e\xcb\xa6\x4f\x08\x52\x7e\x7e\x13\x78\xd9\x33\xa7\x89\xe8\x17\x20\x3a\xbc\xe3\x9b\x37\x1f\xdf\x1c\xb5\xdb\x49\x8e\xe1\x6f\x02\xe0\x06\x7c\xd8\x0a\xa0\xb1\x80\x10\xdd\x23\xd0\x67\x4d\x51\x18\xa1\x76\x9b\x69\x1d\x0a\x74\x69\x12\xa5\x33\x2a\xd8\x9f\x14\x41\xbe\x5d\x7d\x0b\x49\xd4\x1d\x44\x23\x37\xb3\x2c\x43\xde\xca\x7c\xc1\x66\xae\xee\xca\x2f\x72\x06\x17\x4b\x1e\x27\x10\xf7\x5f\x2d\x3a\xa7\x32\x8a\xff\x12\xe9\x61\xc0\xc0\x79\x09\x01\x46\x24\x29\x13\x20\xe3\xac\xb0\xcf\xb4\xa6\x20\x5d\x2e\x68\x01\xa1\x28\x37\xe9\x58\x4b\x64\x4c\xa3\x94\x9e\x41\xe6\x24\x30\xc0\x26\x40\x28\x1a\x9c\xb1\xb2\xbb\x5d\x78\xb9\x94\x82\xdd\x2e\x25\x3d\x65\x73\x26\x7b\xdf\xd9\xbc\x79\x67\x8a\x9a\x15\x15\xaa\x9d\x5f\xac\xbb\xe7\xea\x56\x2c\x41\x23\x5d\xd7\xe4\xe2\xf2\x7a\xf0\xa8\x0e\x03\xa8\x11\x00\xd8\x1a\x73\x64\x5b\xfb\xeb\x1d\x95\x79\xe9\xd0\xd0\xbd\xae\xac\x45\x43\x5e\xca\x5a\x9a\xbb\xd8\xdd\x83\x93\x4b\x42\x34\x50\xb3\xab\x22\xe4\x98\xc2\xed\xdc\xed\x08\x43\xa3\xa2\x93\xdc\xa6\x54\x3c\xd0\xbc\x28\x35\x49\x6a\x11\xc2\x49\xe6\x14\x0d\x3e\xd4\x4b\xed\x66\xb2\x77\xdb\x50\xf1\x40\x51\x5a\x0c\x03\xf5\x65\x80\xcb\x23\x94\x15\x10\xa1\x4b\x65\x55\xc7\x5c\x49\x00\xfe\x52\x1d\xba\x49\x8e\xd4\xd8\xca\x20\x3d\x95\x38\x27\xe7\xab\x03\xdb\xef\xce\x79\x77\x80\x93\x86\xe7\xf4\x1c\x6a\x76\xd5\x0b\x76\x28\x6a\x51\x25\x8d\x0b\xcd\x3f\x32\x07\xcd\xad\x57\xed\x8a\x8e\x13\x31\x49\xcb\x91\xe8\xcc\x43\x1a\x56\x0b\xb7\xcc\x57\x08\xc7\x46\xb9\xe5\xf5\x3b\xa4\x08\x8f\xdd\xda\x9a\x3a\xc3\x18\x53\xcf\x6d\x79\x0a\xf3\x18\x0e\xa8\x11\xe4\x67\x64\x5c\x59\x68\xeb\x6c\xaf\x97\x2f\xb5\xcb\xa7\x2b\x04\x94\x23\x84\x53\x58\x7c\xfb\x48\xad\xc7\x84\xac\x26\x6c\x72\x04\xd0\x05\xfe\x40\x04\x4e\x70\x94\x33\xc2\x98\x88\xfd\xf8\x07\xb1\x13\xed\xc7\x56\xe7\x3a\x56\xc3\xe2\x1d\x2d\x06\x1e\x4a\xa4\x5d\x10\x67\xa4\xd0\xc6\x18\xb5\x1a\x3a\x34\x86\x0e\xc9\x70\x30\x1b\xa2\x2c\x69\xb7\x59\x28\x70\xa2\xf6\x03\x8b\xe3\x72\x77\x0a\x26\xc2\xcc\x92\x08\x34\x1f\x4d\x26\x20\xf1\x5e\xe8\xca\x05\x0a\xc7\xb0\xe7\xf1\x04\xe1\x02\x6d\x2e\x9f\xa7\x4d\xa8\x50\xd3\x63\xa5\x4e\xa8\xb0\x42\x90\x65\xe2\xc5\x32\x9c\xd5\xf2\x9c\x2a\xe9\xaa\x71\x9a\x50\x83\xbf\xcc\xd1\x9e\x1d\x5a\x86\x27\x54\xd2\x71\x8d\x8c\xb2\xbd\xa7\x98\x60\xbc\x9c\x3b\xd3\xd6\x46\x6e\x55\xe6\x09\x35\xec\x4a\x5b\x1a\x70\x52\x4f\xe9\x51\x85\xd2\x93\x02\xa5\xa7\x6a\x0e\xc2\x01\x14\x2a\x32\x2a\x55\xce\x90\xff\xb2\x81\x68\xa5\x0e\x42\x0a\xf9\x8f\xdd\xf5\x9a\xfd\xd8\x55\xb7\x0c\x75\x04\xa7\xe3\x19\x9d\x2c\x63\x7a\xc1\xc7\x14\x85\x41\xa4\x15\xc2\x81\x26\x94\xf4\x65\x44\xb7\xdf\x40\x6e\xda\x37\x0c\x2f\x51\xc5\x76\xea\x4d\x5f\x03\x59\x45\x98\xe1\x25\xca\x34\x42\xfe\xa6\x39\x15\x95\x59\xa3\xb9\x1b\xb3\xc9\x0b\x8d\xc7\xc9\x92\xcb\x1e\xb4\x76\x47\x25\x0a\x05\x0e\xb4\x9d\x24\x40\x76\x89\x7b\xc6\xff\xd0\x5f\x6f\xb5\x2a\x7a\x13\xf7\x68\x06\x19\x32\xea\x4e\x23\x17\x34\xa7\x57\x37\xef\x50\x18\xd4\x9e\xa1\x5e\xbe\x6f\x22\x3a\x0d\xa2\xa2\xe1\xb4\x01\x3a\x50\x45\x36\xbc\xd7\xfd\x1e\x29\x9e\x0d\x3d\x4d\x2f\xb8\x93\x02\xd5\x21\x48\x1d\x8b\xa5\xe5\xbc\xdd\x2e\x65\x0d\x1c\x80\x3d\x59\xa1\x48\x98\x3d\x80\xbe\x2d\xd4\xd2\x78\x49\x86\x7b\x83\x84\x34\x1b\xfa\x50\x35\xac\xc3\x7c\x98\xe1\x86\x6e\x56\xe1\x79\xb5\x1a\xdd\x35\x9a\x34\x48\xb6\xc2\x3b\xe1\x5d\x17\x2a\x3b\x5e\x96\xa4\x56\xa9\xa4\x56\x59\x27\xb5\x52\xdb\x7f\x39\xe0\x43\x64\xdd\xd0\xc1\x12\xe5\xcb\xa4\xa8\x25\x34\xe7\x4e\x40\x1c\x15\x19\xce\xc9\x6f\xb3\x44\xe3\xd8\x7f\x4d\xd2\x87\x95\x23\x35\xdf\xbd\x4d\xd1\xe3\x87\x28\x5e\xd2\xb4\x44\xe8\x47\xde\x2b\x30\x31\x74\x52\x1a\x89\xf1\xec\x67\xfa\xf4\xa8\x3a\x52\x2a\x6e\x1f\xeb\xa2\x7a\x09\x6b\xeb\x7d\xe3\xbd\xd2\x85\xc7\x49\x9c\x94\xb7\xd9\x91\x7a\x06\xaf\xbd\xc1\xfb\x5d\xaa\xce\xc3\x2a\xf3\x8a\xda\xee\x6c\x9c\xae\xda\x3e\x3d\x53\x31\x74\xac\x86\x55\x69\x0b\x49\xe1\xa0\xad\x29\xe5\x3d\xc9\x8a\x97\x8c\xa8\xe9\x92\x71\x17\xb3\xf9\xbc\x7c\x93\xe0\xc9\x84\xee\x6a\xa7\xdd\x00\x07\xf0\xcd\xee\x6d\x74\x4b\xe3\xba\x78\xd1\x8d\x17\x0f\x53\xfd\xb7\xc9\x62\xac\xea\x1c\x27\xf3\x05\x8b\x1b\xd4\x09\xf6\x62\xf1\x82\xe0\x55\xef\x26\x63\x5b\x10\x74\x4a\x05\x85\x5c\x8d\xcf\x5f\x6f\x5c\xf0\xab\xfb\x3a\x6f\xdb\x3e\x52\x4d\xd6\xd6\xf5\xc0\xe8\x63\xfd\xb0\x6b\xb1\x19\x6c\x39\x06\x58\x06\x0e\xba\xd7\xbb\x6b\x51\xf1\xc0\x1a\xfa\x5d\x5b\x53\x7e\x39\xb3\x7d\x7d\x64\x82\x02\x6e\x76\x24\x6b\xab\xf1\xc2\x87\x03\x91\x3e\x14\x26\x4e\x2d\x76\xfd\x7a\x24\x4b\x59\xb8\x04\xbe\x24\x94\x1d\x17\x90\x50\xf3\x6c\xd2\x78\x8e\x1f\xf0\x13\xbe\xc3\xb7\x78\xa4\x53\x07\xe2\x6b\x7c\xd1\x64\x3a\x3b\x0c\xd1\x0a\xc0\x1f\xb6\x28\x39\x09\x07\x81\xa2\x9b\x84\x53\x2e\x7b\xbb\x86\xa2\x83\x3c\x43\xfc\x61\x1d\x70\x52\x86\x69\x1e\xd4\x71\x5f\xaa\xce\x2a\x2a\x1c\x3d\xf6\xe6\x11\xe3\x5e\x95\xf7\xcf\x56\x79\xf3\xa5\x55\xde\x3c\x5b\xe5\xd1\x97\x56\x79\xf4\x6c\x95\x67\x0d\x55\xf6\xdc\x84\xa6\xdf\xd6\xcc\xe8\xd9\xb3\x15\x5f\x35\x55\xbc\x2b\x92\xc4\xaf\xea\xea\xd9\xaa\x2e\x5f\x5a\xd5\xe5\xb3\x55\xfd\xfe\x25\x64\xf3\xfb\xb3\xd5\x1d\x7f\xdd\xec\x1d\x3f\x5b\xf1\xf9\xd7\x55\x7c\xfe\x6c\xc5\x27\x45\x94\xb5\xf5\x1a\x52\x20\x1a\x98\x6b\x84\x30\xed\x88\xe8\x91\x48\x4c\x41\xda\x3e\xcd\x37\xdc\x9b\x92\xdf\xf9\x9f\x21\x1c\x64\xb6\x63\x26\xe8\x02\x81\x07\x26\x75\x8f\xc9\x1b\x4c\x3b\x33\x1a\x2f\xa8\x20\x7f\x60\xda\xa1\xe9\x38\x5a\xd0\xfe\x67\x00\xc4\x2b\x3a\x40\x15\x6e\xee\xdb\xde\xcd\x9d\x4d\x43\x30\x8e\xcb\xe4\xdd\xcd\xd9\x69\x1e\xe1\xa9\x7f\xeb\x00\x4b\x9d\xcf\x9a\x9a\x97\x41\x00\x21\xb2\xd4\xe5\x51\x35\x2e\x97\xea\x4e\xef\xfe\x86\x44\x88\x4c\x5a\x47\x1a\x57\x6f\x1e\x21\xe8\x34\x73\x12\x47\x12\x20\x05\x66\x72\x1e\x5f\x47\x53\x4a\x52\x89\x69\x87\xa5\xaa\x03\xf0\x7b\xa9\x7e\x8f\x20\xb0\xfc\x8a\xf2\x09\x15\x54\xa4\xfe\x5a\x7c\xb2\xe1\x7f\xa4\xab\xea\x11\x50\xe6\x9a\x4a\x19\xfb\x68\xd4\x68\xa5\xc7\x41\xbe\x91\xed\x76\xf8\x8d\x24\x7d\x7b\x3c\xab\x7f\xa9\x08\x41\xda\x5c\x02\x14\xf0\x52\x08\xca\xe5\xd5\x92\x9f\x26\xc9\x02\x85\x68\xbd\x5e\x76\x6e\xa3\xf1\xfd\xed\x52\x70\x9a\xdf\x7b\xbc\x2b\x0f\x68\x6e\x7f\x96\xb9\xaf\xf3\x37\xd2\xe6\x2c\x37\xb6\x8c\x1b\xbb\x6a\xa5\x55\xa1\xa2\x2c\x4c\x7a\xf3\x25\x06\x74\x68\x0c\x1c\x35\xdf\x7b\xc4\x06\x25\x09\x58\x55\x66\x51\x5a\xdb\x96\x2b\x59\x6d\xaf\xd4\xc5\xb4\x8e\xd2\x45\xa9\x1f\x45\x0f\x23\x6a\x4c\x2c\x29\x95\xcb\x45\x9f\xdf\x31\x4e\x9d\x27\x49\xa1\x9c\x0b\xa3\x08\x03\x75\x92\xf7\x76\x93\xa5\x8c\xa9\x0c\xf0\x31\x87\x0d\xe2\xde\xe6\x8c\xc8\x96\xb8\x82\x12\xce\xd5\xaa\x5c\x41\xae\x00\xc7\xd5\x8f\x4b\x5f\x9a\x43\xbf\xb7\x3b\x49\xe6\xbb\x1a\x60\x52\xc9\x14\x16\x9f\x28\xc0\x7e\x09\xf3\x6c\x53\x15\x52\x50\x75\x50\x18\xbc\x24\x2d\x5f\x3c\x5b\x99\x1b\x6b\xd8\xc5\x8f\x39\xa6\x07\x0a\xcf\x42\x84\xf0\x51\x69\x3e\x5c\x1d\x46\x72\x28\x8a\x39\x53\xb9\xb1\xc6\x23\x55\xe3\x4d\x69\xfe\xca\x85\x6e\x54\xa1\xa0\x28\xf3\xf8\xad\xe8\x03\xb0\x34\x0d\xde\xa4\xe7\xe2\x65\xb9\xe6\xfb\x10\x01\xfb\x2b\x7a\x26\x87\x81\x66\x5e\x01\x5e\x79\x21\xd5\xbd\xed\xbd\xac\x38\x72\x5d\xaa\x17\x27\xe3\x00\xcf\x44\xf1\x9d\x77\xc6\x48\xfa\x59\xee\x4e\x19\x8d\x27\x01\xfe\x4c\x1b\x8b\x8d\x67\x74\x7c\x7f\x9b\x7c\x0e\xf0\x63\x63\xa1\x98\xf1\xfb\x5d\x99\x04\xf8\xac\xb1\x08\xe3\x8b\xa5\x9a\x77\xd1\x40\xb5\xde\x59\x62\x8a\x9e\xf1\xa6\xba\x54\xcf\x23\x41\xa3\x00\x5f\x53\xd4\xba\xeb\xf4\xcf\x3f\x74\x9e\x75\xd8\x58\xaf\x37\xac\xf7\xa1\x5a\xca\x5b\xbd\xb1\x61\x4b\x1e\xe6\x79\x5e\x1a\xf6\x65\x1d\x69\xd7\x92\x5a\xa0\x73\x20\x5c\x2c\xa8\xf1\x1f\x2d\x12\x78\xdd\x66\x28\xd1\x8c\x30\x5c\x3c\x00\x6a\xf3\x3f\xaf\x6b\xb0\x61\x1b\xa8\x96\x6e\x97\x2c\x9e\x00\x01\x69\x57\xbd\xc2\xc5\x38\x7d\x64\x72\x3c\x0b\x69\xe7\x36\x49\xac\x2f\xb6\x3a\x46\x54\xdb\x67\xc9\x84\xa2\xd5\x38\x4a\xa9\xaa\x90\x81\x63\x5d\xd0\x33\xac\xee\x73\xc7\x3d\x7b\xad\x1b\xe8\xdc\x42\x7e\x07\x80\xd0\x83\x8f\x04\x9d\x3d\x4d\x84\x22\x7b\xfb\xd1\xac\x63\x9f\xb1\x84\xd7\x7c\x66\xce\x9a\xbc\xb8\x06\xea\xad\x96\x84\x6c\x53\xcd\x9c\xc6\x0d\x39\xf0\x86\xf5\x92\x8d\xea\x4d\x7a\x5e\x47\x6d\xd5\x1b\x39\xc9\xa5\xa2\xac\x77\xcd\x75\x2b\xa9\xf1\xc6\xf1\x84\xf2\xd7\x57\x86\x11\xe4\xeb\x69\x3f\x85\x2e\x04\xf8\x27\xd9\xf4\x5a\xdd\x9f\x64\x80\x7f\x93\x08\xcf\x0d\x8a\x9a\x12\x5c\x5e\x4e\xb6\xcb\xc5\x24\x92\xb4\x99\x6c\xed\x31\x80\x5a\x8d\xf4\xe6\x4e\x8a\x3a\x7a\xb3\x81\x86\x96\xc7\xb7\x3c\x81\x6e\xd6\x39\xbe\x38\xd3\x9a\xd0\xd4\xa0\x05\x37\x36\x52\x73\x96\xbc\xa4\x39\x2c\x88\x9d\x97\x03\x68\xee\x46\x50\x7a\xe4\x55\xd3\xfb\xdc\x39\x4f\x26\xb4\xe6\x8d\xdf\x53\x03\x66\x9c\x69\x91\x4b\x77\xf0\x2c\x1a\x8b\xa4\x78\xde\xf7\xb9\x56\x62\x69\x16\xc3\xa4\x36\xd9\xbf\x49\x04\x39\xa7\x98\x76\xc6\xd1\x22\xba\x65\x31\x93\x8c\xd6\x79\x22\x7f\x3d\xdc\x93\xd6\xda\x6e\x77\x5b\x36\xa6\x66\x05\x49\x25\x4f\xd9\x94\x1e\x3d\x8d\x63\x6a\x53\x1c\xa5\x3d\x8b\x53\x67\xd2\x4e\xaa\x12\xe3\x42\x09\x84\x01\x81\x00\xf0\x0d\xbd\xd2\xf9\x43\x84\x35\xc9\xbc\x4b\x92\xfb\x9e\xc8\x0c\x2f\x3d\xb2\x6c\xdb\xc0\x0f\xd4\xc5\x72\xb4\x04\xb9\xe8\x38\x56\x3d\x3a\x3b\x3c\x3f\x7c\xdb\xbf\x1a\x5d\xdf\x5c\x9d\x9c\xbf\x1d\x9d\x5e\x5c\xfc\xfc\xfe\xb2\x06\x31\x90\x1e\xf8\x6a\x47\xa7\xc7\xd3\x3e\x8b\xde\x81\xb1\x3b\xd7\x4d\x83\x29\x2d\xeb\x39\xa9\x3a\x16\xe1\xca\xd8\xdb\x7a\x02\x5b\x55\x42\x6f\x7b\xcf\x24\x20\x76\x15\x04\x19\x96\x56\xe8\xdb\x30\x1e\xbb\x5c\x63\xe1\xa7\x94\x05\x18\x21\x5b\x79\xbb\xed\xd5\x0a\x60\xe7\x90\xca\xcd\xe1\x62\xb9\x00\x11\x98\x3b\x93\x31\x5c\xd4\x4f\x5d\xcd\x28\x68\xcd\x28\x4c\x0a\x70\xe1\x0f\xa2\x5c\xf1\x67\x8e\x69\xc7\x16\x3c\xd2\xc4\x58\xa2\xc5\xbc\xc5\x55\x96\x35\xfb\xa9\xe4\xfb\xf6\x85\xce\x29\xfe\x56\xdf\xe8\x01\x53\xb3\x11\xbf\xa4\x89\xf2\xb7\x1b\xdb\x62\xe9\xb5\x39\xd2\x80\xf7\xbd\x61\x22\x85\x8c\x19\x2f\x6e\xb0\xa9\x82\x8d\xad\x36\xb0\x9b\x17\x36\xda\xc8\xae\x34\xf7\xbc\x00\xc1\xfe\x03\xa3\x8f\x84\x76\xc0\x44\x72\x2d\x75\x4c\xfe\xc9\xf9\x87\x8b\x9f\xfb\x84\x76\xde\xab\xed\xab\x1a\xb9\xb2\xda\x49\x42\x3b\x87\xb7\xa9\x14\xd1\xb8\x4a\xf7\xb4\x33\xa2\x9f\x17\x54\x30\x50\x12\xc6\x86\xe9\xd1\xce\x89\xa2\x40\x9d\x44\xdd\x5e\x3f\xe1\x29\x15\xd2\xfb\xed\xfd\xa9\x2e\xad\xc6\x11\x92\x76\xfa\xf9\x19\x44\x68\xe7\x9d\xbe\xad\xd3\xce\xd5\xc5\xc5\xcd\xe8\xaa\xff\x06\xc0\xf3\x4c\x47\x08\xed\x9c\x32\x7e\xef\xff\xbe\xa1\x9f\xe5\xa1\xa0\x91\xf9\x13\x12\xdf\xaa\x4f\x8c\x0c\xab\x2a\xf2\xce\x5b\xdf\xcb\xe3\xcf\x66\xc8\x3d\x13\x14\x30\xd6\x00\xb3\x06\x5d\x44\x55\xcb\x26\x06\x9d\x83\x4a\xd5\xa2\xfa\xc7\xd9\xe6\xf3\xf8\xf9\x26\xb0\x0e\xa9\x6d\x1d\xb9\x03\x40\x29\x0d\xb5\x69\xd1\x46\x55\xd0\x8e\xbd\x2f\xe0\x15\x28\xac\x7b\x32\x33\xb8\x62\xf8\x1d\x79\x13\xae\xd8\xa4\x17\xcc\x7e\x9f\x7d\x7e\x9f\x88\x65\x80\x6f\xe3\x64\x7c\xdf\xfb\xd7\x2a\x48\x9f\xe6\xb7\x49\x9c\x06\xbd\xc1\x10\x43\x26\x13\xc8\xa2\xa0\x7e\x0f\xf6\xf0\xe0\xd5\x7f\x61\x8f\x21\xe1\xc1\xe0\xd5\x77\xb8\x8b\x07\xc3\xe1\x10\xae\xe8\x43\x3c\x8d\xe2\x94\x0e\x87\x38\x98\x45\x69\xff\x21\x8a\x83\x1e\x3c\xc9\xfe\x85\xd5\x70\x7b\x2b\xad\x77\x07\x2f\x94\x60\x11\x8d\xef\xa3\x3b\x9a\x7e\xdb\xa8\xb8\x07\x9f\x20\x2b\xf3\xa7\xdf\x2a\xe1\xa7\x33\xbb\x4d\x03\xad\xfe\x2f\xac\xcd\x3b\x58\x96\xd7\x6a\x92\xd2\x8e\x1e\x04\x0a\x83\xab\xbe\x3a\x26\xde\xdf\xf4\x47\x37\x87\x6f\x03\xed\xfb\xf1\x9e\x44\x9d\x37\x22\x9a\xd3\xc7\x44\xdc\xff\x2d\x9e\x3a\x83\xd7\x43\x12\x77\x8e\x99\x90\x4f\x6a\x3b\xdc\x44\x77\x0e\x41\x2b\xc3\x82\xaa\x09\x5b\x4a\x5a\x6f\x49\xdb\x07\xad\xc8\xef\x09\xe3\x28\xac\x51\x0b\x0c\x5e\x0f\x75\x46\xbf\xce\x44\x55\x0f\x56\x71\x18\xbc\x21\xf5\xf7\xf8\x7d\x87\xa5\xfa\x87\xd1\x63\x91\xed\xae\x12\x0c\x23\x75\x22\xb8\x71\x82\xdd\x10\x85\xef\xf5\x14\x7c\x7c\x86\x7a\x4d\x8f\x1d\xf5\x56\x1a\x78\x09\xdd\x3a\xfe\x6f\xc7\xef\x57\x9d\x95\x21\xee\xfe\x28\xe9\xe8\x3e\x2a\xd9\xc7\xbd\xfd\x90\xbf\x85\xa1\x19\x87\x61\xb5\x09\x0e\x74\x5c\xaf\x96\x74\x9c\xa0\x41\xb5\xc9\xfd\x53\x89\x1e\xde\x5f\x1e\x1f\xde\xf4\x03\x84\xdf\x96\x5e\x68\xa6\x06\xc2\xa9\xe1\x6f\x6f\x35\xd0\x7d\xa9\xdc\x21\x38\x5d\x07\x08\x7f\xd3\x88\x81\x52\x37\x37\x77\xb4\x16\xc3\xfb\x37\x4b\x27\x0e\x07\x03\xf6\xe7\x2f\xc5\x20\x44\x5b\xb9\xb4\x69\xed\xad\x27\x89\x06\x8b\x32\x89\xe5\x91\xce\xa2\x80\x3a\x71\x94\xca\x2b\xfa\xc0\x40\x47\xa9\x71\x51\xe0\x19\x98\xe8\xcc\x83\xcc\xcd\xa5\xe8\x30\x3e\xa3\x82\xc9\xf4\x34\x49\x52\x8a\x20\xff\x1c\x96\x5e\xdf\x1f\xe0\xbb\x5a\xe2\xed\xc8\xe8\xce\xd8\xd6\x0b\xcd\x5a\x43\xbb\x6b\xb6\x55\x8a\x36\x53\x57\x0b\x40\xcf\x81\xc1\x7b\x78\xed\x79\x47\x7d\x6a\x09\x8d\xff\x48\x61\x68\xa6\x67\xa1\x09\xff\xcd\xc2\x6f\x10\xfe\xb5\x69\xe6\x72\xd1\xd1\x86\xed\xfa\x39\xf9\xa5\x9b\x3c\x48\xd6\x28\x28\xaf\xc5\xe5\x10\xcf\x4f\x5b\x0d\xf3\xb6\x87\x3c\x35\x21\x8f\xcd\x54\xe1\xc5\x11\xda\x7e\x34\x04\x80\x87\xd5\x62\xe0\x3c\xfa\x93\x45\x59\x02\x54\x4c\x13\xec\x9d\x85\x71\x07\x0e\x78\x77\x4e\x6b\x2e\xf0\x5b\x33\x99\x39\x12\xae\x65\x7a\x7a\xb2\xbe\x62\x32\x72\xa1\x30\xec\xe2\xb8\xc3\x52\xe8\x16\xec\xe2\x62\x21\x36\x0d\x63\xea\x67\x15\x81\xb1\x81\xf7\x08\x9b\x86\xe3\xf2\xab\x88\x86\x74\x20\x87\x1a\xaf\xd0\x7f\x39\xeb\xbc\x3f\x3f\xee\xbf\x39\x39\xef\x1f\x2b\x71\xa0\x7f\xd5\x3f\x3f\xea\x6b\x20\xc0\xb0\x8b\x27\x80\xe1\x12\x8d\x67\x8a\x6b\xa3\x10\x65\xa1\xa3\x29\x6c\x52\x2f\x50\x9d\xf1\x69\xf3\xba\x79\x3d\xa1\xde\x5e\x96\x59\xf8\x0b\xc2\x3f\x35\x92\xa4\x0b\x9a\xb6\x44\xc9\x6b\xf7\xb3\x4e\xc0\x66\x36\x05\xe6\x0e\x70\xef\x67\xfa\x44\x84\xf7\xfb\x26\xba\x23\x71\x2e\x94\x79\xa7\x50\xd8\xc5\x63\xb5\x55\xdf\x24\xc2\xca\x8f\x48\x23\xb0\x60\xae\x9e\x93\x42\x25\x98\x67\x4d\x6b\x6a\x81\xd3\xeb\xa0\x74\xed\x99\x51\xcf\x28\xbc\x41\x58\x86\xe1\x8d\x23\x77\x8d\x1b\x6b\x27\x20\x3d\xe7\x7c\xf0\xa9\x98\x2a\x13\x0a\xa4\xaa\x40\xb5\xd2\x52\x95\x76\x05\x7e\x43\x98\xd2\xe7\x97\x60\x7f\xe3\xe4\xe7\x02\x6e\x65\x01\x1c\xec\xb3\x62\x85\x09\x79\xc9\x72\xc4\x9d\xa3\x8b\xf3\xeb\x9b\xc3\xf3\x1b\x25\x95\x78\x3e\xdd\x6a\x29\x60\x63\x8c\x93\xf9\x2d\xe3\x14\x85\x03\x86\x93\x21\xfa\x07\x57\xc4\x8d\xac\xbc\x2a\x8a\x10\x44\x65\xa1\xb0\xc7\x76\x31\x73\x50\xfc\xc5\x4c\x41\x84\xb5\xdb\xd6\x87\x0b\x70\xe4\x5c\x8f\xf4\xc3\x62\x1c\x0e\xc9\xc3\xb4\xf8\x7a\xed\xc7\xf2\x10\x9b\x3e\x0c\x47\xc4\x29\x51\xc0\xe5\xc7\x50\x49\x84\x05\x02\x48\x02\x25\x1f\x69\x65\x42\x3d\xad\x47\x40\xeb\x49\xf6\x52\x92\x72\xb3\x92\xb3\x83\x66\xf2\x92\xcd\xe4\xb5\xe9\xd0\x71\x24\x26\x81\x50\x6a\xa5\x47\x2c\x3a\xa3\x07\xb3\xf1\xc5\x57\xd1\x40\xe5\xf0\xf6\xaf\x0c\xba\xee\x0c\x73\x33\x79\x45\x95\xb5\x8d\x76\xd6\xa5\x2c\x58\xa1\x8c\xee\x8a\x02\x29\xf6\x0a\x11\x33\x2b\xdf\x28\x39\xaa\xe6\x7a\x28\xa9\xd6\x30\x7d\xdd\x8c\x79\xc7\xb4\xa6\x9e\x17\x6f\x31\x2c\xea\xf6\x96\xde\xb3\x22\xaf\x6c\xf8\xb5\x47\x3c\x9b\x86\xe5\x03\x2d\x87\x28\x35\x24\x04\x66\x5d\x10\x26\x59\x7a\x29\x92\xcf\x4f\x28\x14\xde\x39\x75\x29\xd8\x9c\xe9\x4b\xb0\xa5\x3d\x33\x96\x0f\x7e\x68\xbf\x3a\x63\x64\x45\x90\x90\x89\x92\x7b\x6b\xce\xa4\x62\x7b\x14\x1d\xe8\x45\x74\x23\x7e\xc1\xde\x01\xf5\xc6\x8d\x58\xca\xd9\x53\x80\x10\xb6\x02\xb6\xcf\xab\xfd\x02\xa8\xf7\xd2\x26\x60\x96\xf0\x07\x83\x7b\x94\x85\x33\x25\xa4\x4c\x20\x8f\x62\x14\xe7\xa2\x0a\xe6\x2f\x60\xdf\x9b\x4f\x50\x63\xc4\x57\xbc\x3b\x12\x77\x29\x9c\x9a\x8a\x1e\x80\x2a\x30\xff\x1a\x41\x46\xd4\x2c\xba\x40\x39\xd6\xae\xcd\x08\x19\xc5\x80\x61\xcc\xa3\x39\x9d\xc0\xf1\x60\x19\x4a\x44\x98\xa3\x0c\x4f\x42\x0c\x13\x1c\x55\x56\x1b\x32\xce\xf9\xeb\xbd\x99\xb3\xeb\xe1\x5a\x86\xae\x46\xac\x38\xb9\xdf\x25\xc5\x2c\x74\x97\x54\xe7\x6c\x97\xbc\xee\x39\x47\x02\xc8\x1d\x69\x45\x19\xf6\x97\x57\xc2\x02\x71\x56\xd7\xa2\xbc\x37\x07\xaf\x87\x7a\xd7\xc2\xf1\xf7\x75\x2b\xf4\x97\x66\xd1\x76\xf5\xef\x99\x47\x77\x93\xf1\xe7\x33\xf9\x3f\x4f\xd9\x1b\x67\xc3\x7d\xed\x91\x95\x39\x27\x55\x6b\x6e\x1c\x51\xe3\x38\xfe\xb1\x9b\x44\xe1\x5a\x85\xb7\xf7\x5e\x26\xa1\xcf\xa8\x77\x3f\x1a\xd0\xa1\xf9\xb0\xe6\x82\x84\xd3\xbf\x78\xaa\x43\x13\xea\xd8\x86\xf5\x30\x47\xcd\xdf\x25\xc6\xf9\x87\xb8\x66\xaf\x86\xde\x32\xed\x45\xdf\x88\x53\xa7\x0b\xdf\x51\x7d\x84\x40\x6f\xf4\xd4\x1a\xfd\x90\xc4\x83\xd5\x3d\x7d\xea\xbd\x6d\x0a\x3e\xcd\x67\xef\xed\x30\xcb\x86\x48\x53\x40\xae\xc6\x59\xea\xfb\x52\x8e\x24\x40\xa8\x01\xae\x96\x3e\x70\xb5\x20\xba\x17\xe0\xcb\xed\x60\x94\x3d\xa8\x75\x5a\x05\x01\xa4\x35\xe9\xa4\x3c\xef\xb0\x31\x7d\x26\x22\xdc\x95\x9c\x7a\x25\xb7\xbb\x1e\x10\xb7\x97\x31\x65\xbb\x92\x2d\xbd\xd1\x88\x86\xd6\x6b\xff\xa7\xb3\x16\xa9\xda\x0e\x74\xe6\xbf\x5f\x01\x82\xd0\x5c\x54\x51\x0f\xba\x7a\x90\xff\xde\x74\xfa\x1b\x45\xd6\x84\x96\x14\x51\xc7\x27\x57\x37\x9f\xb4\x56\x13\x2f\xca\x2f\x0f\xaf\xde\x5e\x07\x08\xcf\xcb\xcf\xad\x5a\x1c\xf4\x5c\x4e\x47\x3e\xd7\x52\xd9\x43\xb9\xf4\xc9\xf5\xe8\xf8\xe4\xfa\xf2\xf0\xe6\xe8\xdd\xc9\xf9\xdb\xd1\xe1\xcd\xcd\x95\xaa\xf5\xa9\x5c\xee\xdd\xe1\xf5\xe8\xf5\xe9\xc5\xd1\xcf\x01\xc2\x77\xe5\x97\xaf\x2f\xde\x9f\x1f\xab\xcf\x6e\x29\x59\x74\x8e\x12\x41\x3f\x30\xfa\x68\x15\xae\x8b\xce\xd1\x8c\xc5\x13\xf5\x28\xbd\xd6\x71\xa0\x78\xd1\x51\x3f\xaf\x65\x24\x69\xfe\x08\xe8\x13\x02\x0d\xec\xb3\xa8\xa3\xe3\xc5\x0f\x61\xf1\xf2\x92\xe5\xdf\xaa\xb2\x33\xf6\x99\x71\x1c\x86\xa7\x64\xa5\x4e\x6b\xeb\x18\xb2\xdd\xc5\x5f\xa9\xf0\x7d\xa0\x43\x9b\x6e\x66\x30\xa1\x8d\xda\x5f\x5d\x60\x6e\x94\x33\xbf\x7a\xa9\x5d\x06\x77\xea\x21\xf8\xbd\x0b\xaa\xad\xf0\xe5\x6e\xa8\x8a\x6b\x45\x6d\xe8\x5d\x88\xb2\x0c\x0d\xc6\x9d\xcb\xab\x8b\xcb\xbe\x22\x85\xe3\x93\xe3\xd1\xd1\xbb\xc3\xf3\xb7\xfd\x61\x59\x36\xdd\xb6\x7d\xf6\x55\x4c\x83\x05\x1d\x62\x41\x72\x80\xfb\x03\x39\xa0\xc3\x9e\xb5\x71\xd4\x23\xe3\x7d\x1a\xb6\xdb\xea\xff\x9e\xf8\x67\xd4\x1d\x28\xcb\xf0\xa9\x7a\x72\x28\x65\x2d\xe0\xaf\x8b\xbc\x51\x9c\xe7\x14\x72\xb0\x1e\x5f\x9c\x55\x4a\x3b\x53\xc7\x42\x15\x56\x8b\x67\xd3\xd5\x9b\xd9\x83\xd3\x8e\x78\x28\xb3\xef\xaf\x4e\x08\x21\xb3\xce\xf5\x87\xb7\x23\x17\x80\xa2\x03\x4c\x67\x39\xae\x53\x2e\xd0\x0a\x0c\x68\xe5\x0c\x4c\xa9\x20\x87\xe5\x50\xe0\x8e\xeb\xae\xd7\x41\x24\x25\xa4\x5a\x4d\x0e\x84\x1d\x17\x84\xd5\x86\x11\xea\x89\x41\x34\x54\xa3\x98\xb0\xc9\x15\x1d\x53\xf6\x40\xd5\xeb\x82\x63\x9f\x7b\xad\xd6\xb6\xfc\xe2\x91\xc5\x71\xfd\x9b\x09\x9b\xc0\x85\xa6\xbe\x42\xf5\xdd\xfb\xd2\x5d\xad\xf4\x5d\xe9\x05\x52\x5b\x3d\xb7\x79\xdd\x52\x7c\x4b\x37\xc0\xd5\x5b\x6f\x78\xdf\x96\x7d\x4b\x3b\x82\x26\x0b\xca\x75\xf0\x91\xbf\x85\x8c\x45\x40\xed\xa4\x5c\x2c\xba\x8c\x44\x34\x4f\x7b\x83\xa1\x8e\x30\xaa\x35\x44\xdc\x9a\x33\x6f\x44\x9d\x2d\xea\x41\xa6\x7f\xfe\xe7\xd5\x9b\x17\xd9\xa2\xfe\x21\x03\x13\x9d\x2f\xe4\x93\xb5\x30\xe1\x47\x4a\x6e\xa9\x33\x0d\xc5\xd1\x53\xb2\x94\xbd\x11\xc5\x63\xc7\x8b\x7a\x03\x13\x3f\xe2\xbc\xde\x86\x58\x46\x77\xba\x75\xe3\x97\xe6\xc2\xb1\x5f\x33\x3e\x61\xfc\x4e\x7d\xa4\x28\x2f\xc0\x01\x7c\x45\x27\x01\x0e\x18\x9f\x50\x49\xc5\x9c\x71\xed\xeb\x37\x61\xa9\xe2\x25\xea\x95\x8c\x6e\x0d\xcc\x45\xa0\x48\x3e\xc0\x41\xb4\x94\x09\x24\x08\x0f\xb0\x4d\xc9\xaa\x0a\x4e\x13\x31\x57\xed\x6b\x5f\x04\xe7\x86\x67\xab\xea\x6d\xef\xe1\x42\x33\xea\xc1\x84\x4d\x4e\x78\x4a\x85\xcd\x96\xfe\x15\x31\x9d\x54\x7f\xd9\x29\xd4\x4d\x9c\xc3\x87\x16\x18\xbc\x57\x28\xc3\xe3\x4a\xcc\x62\x51\x0b\xe3\xcd\x4c\xa1\x09\xf3\xd4\x58\xc0\x9c\x95\xf6\x91\xe2\xc7\x2f\xa2\xe9\x6f\xdd\xec\x68\x8f\x97\x3e\xcd\x7d\x7b\x6a\xf4\xfe\x3a\xe3\xa3\x2a\xf8\xd9\xa7\x88\x05\xd8\x8c\xed\x41\xb3\x99\x3e\x3c\xe7\xc9\x97\x51\x88\x8e\xd9\x37\x8b\xad\x3a\x1e\x53\x69\xd7\x3e\x8d\x1e\x34\x8d\x08\xb3\xea\x91\xf5\x89\x55\x3f\x28\x1f\x1b\xf2\x52\xbf\xe6\x10\x6a\x6b\x7e\xf0\xc4\xda\x5c\xcc\x03\x09\x27\x68\x80\x83\x19\x65\x77\x33\x09\x84\xb8\x58\x42\x92\xca\x00\x07\x71\x04\xf1\x31\x31\x4b\xc1\xfd\x57\x57\x3a\x8f\x14\x25\xce\x99\x6a\x6e\xbe\x8c\x25\x5b\x40\x18\x95\x21\xcd\x45\x24\xd5\x0e\x0b\x70\x90\xb2\x3f\xd5\x83\x54\xd2\x45\x80\x03\x10\x4f\x03\x1c\x3c\xb2\x89\x9c\x05\x43\x0c\xbf\x7b\x41\xa0\xa9\x15\x56\xdf\x88\xb9\x13\x14\xae\x6a\x65\xcf\x40\xcd\x61\x90\xe1\xd4\x7f\xe9\x85\x9a\xea\xf7\x55\x28\x60\x7d\x02\xda\xf5\xb5\x0a\x97\xdc\x4e\x08\x58\xe2\x5b\x8c\x6f\xf5\x9d\xcf\x7d\x9f\x0e\xe8\xd0\x24\x80\xb5\xfe\x5f\x86\x22\xcc\x3e\x09\xcd\xda\xa1\x96\x14\x4f\x2b\xed\x95\x43\x68\x36\x8e\xe4\x78\x16\x8a\xdc\x06\xd8\xd7\x80\xcf\xfa\x3d\x21\x34\x0b\x25\xd2\x68\xb6\x08\x0b\xc5\x63\xd4\x34\x69\x5c\x12\x33\x75\xfa\xc7\x9c\xd9\x3f\xa2\xcf\x1a\x40\x50\x51\x7c\xee\xa3\xf0\x99\xe2\xcf\x5f\x46\xf2\x1e\x05\x6a\xa2\xbf\xde\x40\xcb\x4d\x14\x0c\x5e\xb4\x43\x9c\x93\xba\x23\xe5\xdc\xc7\xb6\x8e\x9a\x45\x02\x31\x65\xe3\x04\xc2\xdc\x0c\xad\xa4\x34\xd6\xae\x85\x7d\x3e\xf1\x7f\x5e\xcb\x48\xd4\x50\xfe\xa3\x88\x16\x39\x51\x6a\xe2\xd7\x64\x35\xc4\xaa\x7e\x83\xee\x92\xc4\x69\x71\xc2\xc0\xbf\xe3\x9a\xe2\xeb\xaf\x98\x2f\x18\x91\x9e\xae\x0b\x8a\x0f\xdd\x59\x75\xc7\x6e\xce\x3f\xef\x24\x8b\xda\xb3\x2a\x68\xbb\xe0\x96\xb2\x07\xc5\xf7\x38\x60\x53\x70\x9b\xf8\x9f\x78\xcf\xf8\x4c\xe0\x55\xd9\xcd\xe2\x7b\x78\x17\x2c\xd4\x31\xaa\xf8\x26\x1c\x78\x59\xb5\x1c\x36\xde\x17\x41\xcc\xf8\xfd\x0d\x93\x31\x0d\x86\x9e\x07\x46\xe9\xfb\x7f\xca\x29\xc3\x38\x73\xbb\x53\xf3\xde\xe5\x34\x98\x0a\x4a\xff\xa4\xe1\xca\x4e\x7b\xcd\x9e\x76\xd6\x39\xf8\xf4\xa6\xf2\x69\x86\xf6\xc3\x8b\xba\x63\xf8\xd0\xa3\xbd\x28\xc0\x22\x59\x4a\xda\xbb\xa7\x58\x63\x60\xd8\x3f\x52\xf5\x17\xe4\xb3\x57\x7f\x04\x63\x1d\x78\xb2\xfb\x38\xa3\x3c\xd0\xf4\x22\xd5\xb4\xe9\x3f\x05\x8d\xcd\x33\x73\xe2\xda\x5f\x8a\x47\xea\xbf\xb5\x9b\x92\xc6\xed\x08\xf4\x8f\x00\xc7\x49\xa4\xe8\xdc\x3c\x35\xbf\xf2\x73\xd7\x3c\xcf\x4f\x74\x13\x9a\xa3\x8e\xdf\xba\xbd\x32\x13\x74\xaa\xd8\x2d\xac\xa7\x3a\xe0\xe3\xa2\x10\x60\x78\xf6\x30\x3f\x66\x0a\xc7\x86\xee\x53\xde\x8d\x82\x28\x21\x22\xae\x85\x34\xc6\xef\x4e\x78\xf9\xc9\xc5\x52\x55\x4b\x1f\x28\x97\x7a\x62\xc7\x31\x1b\xdf\x07\x5f\x7e\x47\x6a\x79\x6a\x34\x57\x9d\x06\x11\xd7\x3c\xdb\x01\xb1\x8e\x18\x7f\x48\xee\x21\xfc\xdc\x04\x64\xaa\xc3\xe0\xc9\xb8\x1d\xa3\x30\xd8\xb5\x71\x9a\x08\x8f\xcc\xf2\x5d\xc1\x5a\xc3\x99\x11\xc5\x2c\x4a\x51\x18\xd8\x8f\x3b\x7e\x11\xd5\x68\xf9\x33\x01\xd7\xca\xcd\x1f\x43\x11\xf5\xa1\x9e\xe9\xe7\xbf\xd3\xe5\xdc\x67\x22\xef\x5f\x7e\xa6\x05\xf0\x34\xc0\x41\x4d\x77\x02\x5c\xaf\x81\x84\x4f\x72\x3c\x02\x42\xee\x4d\x8a\x83\xe2\x4c\xd0\x0c\xe1\x91\x21\xf7\x72\xab\x1a\x88\x00\xeb\x7f\xd3\xa6\x86\xe0\xad\xd5\x73\xea\xa2\xae\xd9\x6d\x68\x56\xdd\x0c\xa5\xfe\x53\x6a\xc1\x7e\xa4\xb7\x55\xb9\x41\x78\xda\xd4\x0e\xbc\x2c\x0d\xe8\x86\x6a\xec\x07\x0f\x4d\x5a\x23\xbc\x58\xb1\x75\xa3\x70\x40\x7d\x40\x90\xaa\x64\x50\x30\x76\xb1\xf4\xd8\xd4\x49\x24\x86\xb4\xd9\xf0\xbc\xb0\x4f\x15\x17\xd2\x7b\xa8\x32\x32\x6f\xef\xab\x65\xb4\x3b\xad\xc2\xd3\xb6\x75\xce\x03\x53\xc0\x34\xe2\x7d\xac\xe6\xae\xa1\x89\x5a\xda\xd0\x74\x06\x7f\xd8\x55\x0c\x46\x66\x9a\xbd\x6d\x5e\xe0\x6d\x0d\xf3\x5f\x53\xbf\xcd\xa9\xb8\x6d\x7b\x3a\x62\xe9\x21\xf4\x4e\x03\xed\xa8\x0b\xe7\x6b\x7a\xf8\x45\xfd\xad\xec\x9b\x7f\x7a\x10\xd8\x81\x6f\x97\x5b\x06\xe1\x6e\x9b\x10\x89\x4a\xa4\x60\xc6\x28\xd5\x18\xdd\xcf\x32\x16\x93\xf6\x39\xd2\xbd\x2b\x66\xac\x30\x2a\x94\x62\x87\x01\xb1\x3a\xb8\xd5\x92\xa5\x97\xfb\xcb\xb5\x6d\xdc\xeb\xdd\xdd\x08\xb5\x24\x11\x07\x2e\x6f\xe1\x56\x80\x7a\x1a\x42\x46\xcf\xd6\xd0\xa5\x61\x34\x20\x5a\x66\xee\xb0\x41\xc5\xd7\x13\xe8\x20\x6b\x0c\x3b\xc2\x11\xe9\xee\x47\xb9\xba\x35\xda\xd9\x41\x6c\x1a\x26\x1d\x3b\xca\x37\x89\x80\x19\x0a\x39\x66\x58\x0e\xa2\x21\xa6\xd8\x59\x22\xb7\xbb\xad\x7c\x43\x95\xce\x8b\xea\xfa\xbb\xe3\xc6\x27\x93\xba\x3d\xe1\xf2\xdf\xf9\x05\xdb\xed\xd2\x56\xb1\xa2\xa6\xdf\xec\x2e\xe3\x41\x86\x70\xf9\xa0\xfa\x0b\x7d\xd1\xe9\x43\x2b\xbd\x59\xaf\x0b\xbd\x41\x0d\xdd\x49\x96\x32\x00\x9a\x81\x83\xab\x4c\x31\xdb\xa0\xb8\x62\xe9\x35\x53\x72\xeb\x91\x3a\x3f\x91\x97\xee\xa4\xeb\x11\x4f\xe7\x76\x79\x7b\x1b\xd3\x34\xf7\xb2\x80\xa3\xf2\x58\xcb\x8e\x16\x37\xcd\x5e\x7d\x35\x65\x63\x46\xb6\xf9\x7a\x1d\x8c\x52\x1a\x4f\x03\x42\x08\x78\x5e\xe8\xbc\xab\xed\x36\x6b\xb7\x69\xa9\x9a\x10\x61\x80\xd6\x05\x87\xbb\x54\x26\x8b\x4b\x91\x2c\xa2\xbb\x48\xcf\x08\x2e\x33\xc6\x9c\xc8\x1b\xa9\x1f\x22\x8f\x8b\x9b\xc1\x27\x40\x6a\xa1\x92\x2c\xad\xa6\x05\x5a\x5d\x5a\xa0\x79\x10\x81\x70\x4c\x56\xf0\xdc\x68\x8c\x52\x2d\xc7\x81\xf0\x91\x78\x78\x59\x0f\x9d\x69\x1c\xdd\xdd\xd1\xc9\x89\x43\x99\x40\xea\x06\x66\x1c\xc7\x13\xde\x71\x11\x85\x26\x09\xdc\xe8\x8e\x72\x2a\x22\x49\x6f\xdc\xe2\x85\xb1\x45\x6e\x40\x6a\x52\x00\xf0\xa6\x5c\xa6\x8c\x89\xc6\x2d\x2a\x5a\x69\x8f\xd5\x80\x26\xd1\x4e\x4e\x27\x24\xf1\x7e\xdc\x24\xa1\xad\x2a\xcb\xb0\x92\xee\xfe\x06\xbe\x6f\x64\xdf\x02\xf3\x34\x7f\xbd\x03\xf9\xd1\xeb\x99\x62\x4a\x51\x60\x37\xa0\xf9\xb2\x89\xbf\x6d\xf9\xcf\x54\x55\xbe\x2c\x67\x56\x58\x16\x57\x58\x14\x56\x98\xd7\xcf\x14\xef\xd8\xd9\x7e\x7f\x75\x6a\xd0\x3c\xd5\x61\x6b\x5a\xaa\x4e\x49\x69\xf0\x87\x82\x9e\x26\xd1\x04\xc4\x58\x5f\xe0\x6e\x3c\x25\xb4\xf0\xe4\x52\x10\x95\xab\xd1\x79\xff\xf2\xb0\xfb\xc2\xb8\xdd\x39\x5d\xfa\xa8\xda\xcb\x1a\xb9\xca\xf2\x6c\x5a\x9c\x25\x49\xba\xfb\xf2\x07\xeb\xa7\xbc\x2f\x2d\x1e\x9d\x20\x36\x67\xb0\xee\x90\x70\x7b\x2b\x73\x16\x2a\x37\x4d\x6a\x41\x7a\xc1\xff\x50\x97\x8b\x82\xde\xb9\xde\xb5\xdc\x89\x36\x1f\x67\x94\xb7\xfc\x5c\x92\xf0\x36\xa5\x32\xf4\x6e\x07\x46\x21\x2b\x9d\x77\x58\x34\x87\x7c\xa0\xb2\xdd\x06\xf3\x80\xe9\x39\x5a\x49\x22\x0d\xe8\x82\x31\x65\x3c\xd1\xa1\xb6\x7a\xea\x2a\xf3\xdb\x28\x96\x9d\x74\xc6\xa6\x32\x34\xa8\x8b\x82\xc8\x81\xad\x67\x77\x6f\xd8\x02\x8c\x42\x96\xfe\x92\xb3\x80\x83\xbc\x1a\x43\xea\xb2\xb3\x48\x16\x21\xd2\x06\xce\xd4\x40\x6a\xf9\x05\xee\x29\xc2\x70\xbc\x98\x8a\xbd\x2a\x0c\x0d\xdd\x53\xff\x33\xf3\x30\xef\x1a\xce\xdf\x19\x71\xf9\x9e\x56\x1e\xa6\x01\x96\x28\xa3\x71\x4a\xf7\xb3\x0c\xa1\x17\xa8\x12\xcc\x06\xd0\xf7\x63\x5f\x9d\x7e\x51\x52\xa7\x57\x14\xe7\xfa\xe6\x9e\x06\x99\x9e\xb5\x23\x8a\xcf\x28\xb9\xa0\xad\x72\xfc\xca\x99\xb6\xdb\x5d\x51\x72\xa4\x5e\x7a\x41\x3a\x57\xfa\xcd\x65\xd9\x18\xd7\x3f\x3c\x7a\x37\x3a\x39\x0f\x10\xfe\x9d\x3e\x13\x02\xa0\xed\xd7\xc6\xaf\x52\x46\x77\x84\x6a\x67\x6f\xb5\xe0\x97\x74\x48\xb6\xbb\x9b\x52\x3f\x6e\x74\x3b\x2b\x59\xac\xe5\x17\x58\xac\x21\x66\x40\xb5\x7b\x4c\x49\x70\x4b\x5f\xfd\xe7\x7f\xfe\xe7\xff\xfc\xcf\xdd\xdb\xdb\x5b\xba\xfb\xfd\x7f\xbc\xea\xee\xfe\xff\xa6\xe3\xdb\xdd\x57\x7b\xdf\xd1\xe9\xf7\xdf\x7d\x37\x1e\x47\xaf\x3c\xd8\x9d\x73\x5a\xb8\x14\xd4\x39\xf0\x6e\x30\x34\xb7\xdb\x54\x8d\x3b\xb3\x96\xdb\x3f\xa0\xb6\xf5\x3a\xf8\xf7\x3d\x7d\x0a\xb4\x75\xf7\x83\x7b\xc6\x26\x94\x4b\x26\x9f\x02\x6d\xbd\x3d\x69\x9c\x6d\x97\x33\xcc\x40\x6c\x98\x09\xbf\xa7\x4f\x6f\x12\x61\x53\x4f\x5a\x0a\x21\x1b\xe7\x9c\xa5\xfd\xf9\x42\x3e\x55\x67\x1d\x44\xb9\xce\x9c\xce\x93\x37\x49\xad\x69\x4e\x27\xb9\xa3\x9f\x65\x83\x2b\x8c\xee\x9b\xe5\xfb\xba\x6f\x4e\x6c\x31\x7d\x53\xac\x42\xfc\x98\xf3\x53\xa7\x33\x37\x07\x02\x2c\xf7\x9b\x44\x84\x02\x59\xf9\xd5\xf4\x48\x3d\x49\x88\x04\x71\x54\x14\x63\x9a\x6c\xe5\x3b\x3b\x18\xdc\x12\x12\xa3\x38\xe6\x58\x7d\xdb\x63\x26\x8a\x04\x9f\x6e\x72\xa4\x71\xd9\x69\xac\x40\xc1\x0a\x4e\x85\x3a\x19\xbd\x76\xda\x88\x00\x00\x5f\x62\xf6\xbc\x47\xca\x54\x24\xf3\xda\x3c\x63\x96\xc5\xdb\x81\x40\x5e\xb3\x83\x8f\x14\x28\x44\x35\x03\x30\xa5\xda\xa5\x5c\x55\xf2\x46\x43\xe2\x29\x2e\x5c\x5b\xdf\x60\xe8\xe5\x7d\x6f\x06\xcc\x14\x2e\x60\xd8\xf0\x2e\x55\x77\x28\x2a\xbe\xeb\x76\x1d\x1a\x37\x1c\xcc\x01\xe0\xa2\xc8\x2c\x3c\xa1\x08\xbf\xf9\xbf\x74\x72\x5f\x34\x66\x38\xd1\x73\x30\xd8\x7c\x06\xac\x83\xaf\x9a\x81\x3f\x37\xcf\x80\x13\x12\xed\x1c\x24\x85\x39\x50\xef\xed\x1c\xdc\xd3\xa7\x94\x48\x9c\x98\xe3\x8c\x08\x9c\x34\xfa\x04\x99\x79\x38\xe1\x13\xfa\xb9\x91\x3a\xfc\xd4\x63\x90\x21\x51\x78\x4e\xd6\x90\x6a\xc3\x6e\xc8\x8f\xd4\xcb\xea\x3f\x18\xe2\x84\x74\xf7\x93\x1f\xf8\x7e\xa2\xee\x87\x0e\xe0\xdb\xf9\x74\x8a\x41\x32\xf4\x52\x8b\xda\xe9\x15\x98\x61\xfe\x05\xd4\xeb\x94\x82\x98\xab\x46\x6d\xcb\x38\x22\xdb\x7b\x9b\xe8\x5a\xd5\x10\x46\x24\x5a\xaf\xed\x80\x7e\x24\xaf\x50\xbb\x6d\xe2\xe2\x25\xc2\xcc\x12\x3c\x4e\x76\x76\x32\x2d\x03\x24\x8a\x14\xa2\x03\xd7\x5b\x0d\xd7\x66\x42\x39\x4e\xc1\xf9\x4e\xf5\xfd\x59\x87\xe9\x4d\xfb\x43\xaf\x1c\x6c\x10\xbe\x89\xa9\x5a\x5e\x99\xfa\x7b\xe9\xdd\x86\x83\x00\x0b\x7b\xf4\x9a\x70\x7f\x7b\x18\x08\x9a\x2e\x63\x69\x0f\x03\x73\x34\x88\xca\xd1\x40\x37\x6c\x9b\xc1\x35\x88\x00\xba\x6a\x99\x88\x61\xa8\x69\x45\x31\x7d\xf0\xe4\x37\x03\xcf\xe7\x61\x92\x70\xaa\x66\xb3\x98\xa0\x83\xa1\x76\xfb\x15\x21\x84\x59\x61\xcb\x23\x0c\x6e\x27\xfa\x35\x35\xbf\xb2\xd6\xd7\x1f\x57\x1b\x8e\x23\x3b\x3f\xf6\x40\xd2\xf3\x53\x3e\x90\xec\x4d\x44\xcf\x17\x48\xb2\x30\xa8\xca\x01\xc5\x4a\x07\x94\x5a\x08\xab\x54\xb1\x47\x14\x3c\x8b\x08\x07\x0a\x6a\x3e\xa4\xfc\xe5\xa2\x76\x72\xe1\xe4\x8a\xcc\xc9\xc5\xf4\xc9\x95\xd8\x93\xeb\xf5\x5f\x75\x9d\xfc\xea\xa0\x80\x26\x59\xa0\xe3\x82\x02\xaa\xc4\xed\xeb\x54\x81\xa6\xdf\x51\x84\xdf\xff\x3f\x74\x08\x83\xbd\xe7\xb6\xa8\x2d\xd8\x1d\xba\xc1\x7c\xa4\x64\x65\x28\xb3\x06\x75\xba\x9b\x61\xb5\xa8\x4d\x10\xa6\x19\xfe\xe3\x79\x41\x4f\xd0\xa9\x27\xe5\x5d\x46\x72\x66\x77\x36\x74\xe6\xe5\x31\x0d\x4e\x32\x2f\xb9\x4e\xe7\x82\xba\xab\x71\xb8\x31\x4f\xbb\x66\x0a\x55\x3f\xe8\x7c\x7f\x4d\xed\xe6\xb2\x15\x82\xe7\x73\x1e\x07\x54\xf0\xea\x77\x89\xf7\x8a\xc1\x07\x1c\xe9\xcc\xd6\x5d\x1c\x75\x46\x90\x0e\x8c\x4b\x53\x1e\xc1\xfa\x7b\x51\x02\x4c\xa7\xad\x24\x84\x84\x94\x28\x09\xc2\xca\xe3\xdb\x9e\x3c\x9e\x3b\x79\xe6\x4f\xab\x1c\x4b\x7d\x6d\x3a\x02\xc9\x79\x4c\xdc\x30\x47\x07\x7f\xd2\xe2\xf9\x1a\x72\x9f\xc1\x86\xdb\x5d\x84\x7a\x69\xe7\xdd\xe1\xf5\xe8\xfc\xf0\xe6\xe4\x43\x7f\x74\xfd\xe9\xec\xf5\xc5\x69\xbb\xfd\x96\xaa\xcf\xdf\xeb\xcf\x4b\x5f\x21\xd4\xfb\x44\xbd\xda\xbd\xf3\xb1\x5a\xf2\x05\x3d\x50\xac\x10\xe6\xd9\x39\x86\x36\xd0\x32\x30\x62\x6a\x03\x18\xe1\x3b\x3d\x99\x1f\x0a\x5f\x97\x36\x33\xb5\x33\x2e\xbd\xef\xd4\x8e\x79\x71\x73\xaa\xb0\xd7\xda\x99\xff\x6d\x73\x63\xee\x2b\x73\x9a\x55\x18\x7d\xc5\xfb\xb6\x5b\xeb\x7d\xdb\x1d\xb6\xdb\xfe\x2f\xef\x8e\xa2\x76\x56\xcb\x80\x54\x49\x03\x46\x05\x77\x35\x8b\x11\x45\x0f\xbe\xa1\xbd\x9f\x68\xf8\x0b\x35\xa8\x53\xff\xd6\x26\x56\xfb\xfe\x67\x6a\x1f\xdb\xcb\x9c\x7d\xf3\x13\x0d\x7f\xa5\x15\xcc\xa9\x9f\x68\xf8\x1b\x0d\x25\x78\x42\x02\x6f\xff\xf0\xff\x26\x66\x90\xb3\x02\x59\x62\x05\xa5\x18\xa7\x97\xc4\xe3\x09\x1c\x0c\x86\x01\x72\xbb\x5c\xd4\xec\x70\xe1\x09\xae\xde\x3d\xd2\xee\x1e\x87\x8f\x5b\xd8\xed\x02\x1d\x9c\x52\x7b\xf5\xe1\xa8\x57\xb3\xf3\x05\x3a\x78\xe3\x17\x69\xda\xe2\x02\x1d\xbc\xf6\xcb\x7d\xa2\x5e\xed\xfe\xb6\x86\xb7\x1f\xe9\xff\x57\x77\x6a\xdd\x7e\xb3\xe0\x6f\x7f\xcb\x8e\xa2\x6e\x47\xe5\xba\x9c\x4f\xcf\x38\xfb\xdb\x1b\x45\xee\xdc\xff\xf6\x99\x2f\x2a\x12\x72\xfe\xe9\xcf\x4e\x3c\x37\xfd\x32\x38\xac\xc2\x03\xa8\xf8\x86\x96\xa4\x23\xf7\xe6\x97\xe2\x9b\x5f\xc1\xe8\xe8\xde\xfe\x4a\x3d\x2c\xbd\x1c\x37\x56\x43\xe7\xe9\x80\x5a\xc7\xaf\xf4\xe4\xf1\xa5\x22\x66\xf7\x34\xc7\x87\x2d\x4e\x1e\x50\xfe\xdd\x92\x4d\x4c\xa4\x5d\x96\xb7\xf9\x9b\x1f\x5c\xe1\xd6\x53\x96\x87\xe7\xb9\x78\x6b\xff\x6e\x57\xc1\x4f\x5e\xa0\xc4\x2a\xab\x18\x43\x0a\x76\x13\x6a\x7e\xe2\x88\xc8\x41\x52\x05\x33\x88\x0e\x42\xf5\x9c\x74\x71\x82\x7a\xfa\xcf\x9d\x9d\x08\x07\xc1\x4e\xb2\x73\x4c\x77\x22\x94\x01\xb7\xa2\xf2\x19\x7d\x65\x6a\x10\x81\x36\xf1\xb6\x0d\x4a\xdb\x60\xc7\xab\x05\xf2\xad\x03\x42\x6f\x93\x0a\xd3\xd6\x14\x22\x97\xd9\xd7\x87\x25\xd2\x96\x5e\x29\xb1\x90\x98\x4b\xb2\x0a\xda\x41\x2f\x68\x47\xf3\xc5\x7e\x80\x83\x1f\xd4\xdf\xb1\x54\x7f\xfe\xa8\xfe\xbc\x53\x7f\xfe\x2b\xf8\x57\x2f\x68\xff\xb1\x4c\xe0\xf9\xbf\xd4\xf3\xff\xf1\xf9\xd5\x7f\xaa\x1f\xff\xad\x7f\xfc\x47\x57\xfd\x20\xfa\xc7\x77\xc7\xfb\x41\x86\x99\x24\xdf\x0e\xda\x3f\xfc\x18\xfc\xeb\xbf\xc9\xf0\x5b\x9c\x14\x7e\xde\xe5\xbb\x25\x92\x3e\x3f\x90\xea\x42\xea\xde\xa5\xb2\xa4\x00\x25\x84\x1e\x50\x12\x04\xbd\x2a\x9e\x71\xbb\x1d\x7a\x20\xc4\x08\x03\xe0\x81\x2c\x00\xb5\x2c\xcb\xd5\x35\xeb\x53\x6b\xf7\xad\x9e\x76\x2f\x10\xc8\xaf\x4f\xc8\xf5\x3a\x14\xcd\x3e\x99\x91\x3a\x52\x84\xec\xcc\xf4\xb1\x2a\xcc\xcd\x61\x9c\xc4\x5e\x98\x90\xcc\x69\x17\xae\x80\x86\x00\x2a\x60\x71\x1a\x64\x43\x76\x16\x91\x48\x15\x99\xb9\xba\xdc\xa9\x25\x0f\x82\x5e\xd0\x93\x40\x71\x53\x59\x7f\x09\xe2\x21\xdf\xac\x1c\xf2\x02\xc6\xc0\x0e\xa9\x0d\x9a\x64\x7b\x0f\x27\x1d\xc0\x6d\x22\x7c\xc0\x3a\x17\x1f\xcf\xfb\x57\x43\x9c\x74\x58\xea\xe1\x65\x11\x53\xc4\x41\xd8\xd5\xa0\x54\x16\xbf\xc0\x89\x06\xe0\x4b\x9e\xe8\xc4\x19\x12\x52\x32\x28\xe6\x9b\xd4\xe1\x6d\x6c\x1a\xe6\x48\x90\xa1\x20\xb1\xd4\xfd\xa6\x38\x98\x26\xc9\x6d\x24\x7a\xb7\xd1\x9f\x6a\xc6\xed\x4f\x1d\xec\x4f\xdd\x44\xbd\x49\xc4\xfb\xab\x53\x12\x4b\xc8\x6e\xba\x55\x97\x7d\xf3\xfd\xd5\x29\x92\x92\xbc\xbf\x3a\xc5\x95\xef\xc6\xfa\x3b\xb0\x5f\x56\x45\x7d\xd9\x31\xae\xef\x08\xd0\x3c\xe0\x98\x83\x2c\x92\x61\x70\x94\x2c\xe3\xc9\x16\x4f\xe4\xd6\x94\xf1\xc9\x16\xf8\x3c\xab\x96\xb6\xd4\x52\x32\x7e\xb7\x35\xa7\xe3\x59\xc4\x59\x3a\xdf\x9a\x26\x02\xde\x5c\x47\x9c\x49\x03\xbe\x16\xa0\x96\x94\x3a\xdb\x96\x6d\x22\x0c\x96\x22\x06\xe0\xce\x4a\x1f\xb3\x2c\x84\xfb\x6b\x94\xa6\x54\xc8\x9b\x99\x9a\x6e\x26\x35\xbc\xe9\x04\x85\x09\xe0\x0e\xd4\xdd\x70\x39\xa6\x08\xf3\x0d\x91\x8d\xb9\x4a\xd3\x28\x52\x0c\xba\x44\x91\xab\x25\xe5\x2e\xd5\xeb\xf7\x6d\x12\xed\xdc\x7a\x54\x77\xab\x07\xef\x85\x52\x41\x14\x4a\x4d\x65\x58\x83\x72\x24\x1d\x99\xd4\x05\x6a\xd7\x35\x2c\xfc\x30\x36\x45\xbd\x1e\x90\x65\xad\x56\xe1\xdc\xc2\xad\x24\x0e\x05\xfc\x84\xa7\x32\x8a\x63\x0b\x41\x98\x7f\xe7\x29\xcc\x7c\x12\xd7\x4e\x10\x56\xf5\xdb\x50\x8b\x0f\x2a\x00\x71\xc1\x79\x7b\x3a\x8a\xe6\x2f\x36\x57\xac\xa4\xa6\xb5\x09\x9b\x98\x34\x5a\x25\x9c\x60\xb3\x3d\x21\x6b\x55\xe7\x96\xde\x31\x4e\xca\xae\x97\x25\x4e\xd1\xc5\x7e\x0f\xe0\x13\x2f\x1e\x55\x55\x33\x4e\xe6\x73\x56\xd1\xa6\x19\x39\xbe\x86\x1f\xb4\x9a\x5e\x90\x41\xee\x93\x24\x48\x77\x5f\xe4\x6e\x46\x62\x67\x07\xc9\x81\x18\xe6\x03\x00\xd7\x78\x5a\x8c\x30\x9e\x33\xe9\xf7\x6d\xca\x78\x14\xc7\x4f\xb5\xc3\xda\xcb\x32\xcc\xb3\x70\xe6\x43\xfc\xa9\x73\xd6\x47\xfc\x9b\xea\x83\x76\xd6\x24\x1c\x98\x09\x9b\xe4\x96\x51\x83\x97\xb9\x41\x48\x58\x08\xba\x88\x04\x3d\x14\x77\xf5\x70\x96\x26\x5b\x8d\x54\x4b\x78\xe4\x9f\x3f\xa4\xe8\x3c\x82\x56\xa6\x90\x8e\xf3\x3a\x05\xbf\xe5\x52\x8d\x85\x6a\x0a\x84\x90\xcb\xe9\xf5\x9f\x68\x02\xdb\x54\x69\x39\x1a\x0c\x2a\x2d\x4a\xd1\x13\xef\x70\x75\x19\x8e\x20\xb0\x6e\x27\xe8\x05\x3b\xb4\xa3\xd1\xdd\xb3\x6c\x03\xac\xe3\x4c\x2f\xc1\x42\x92\xd5\xe4\x89\x47\x73\x36\xd6\x9d\x82\xe8\x22\xfd\xe0\x26\xba\x53\xbf\xbc\x89\x55\x3f\x35\x63\xb0\xbf\x9c\x27\x34\xa0\xc1\x6e\xef\x61\xe3\xf8\x64\x7f\x9a\x28\xe5\x28\x8e\xa9\xe8\x6d\x77\x6d\xd5\xd7\xe3\x64\x01\x18\x97\x1e\x94\xac\x2b\x7d\x62\x22\xf8\x21\x41\xfc\xbc\xe1\x80\xfe\x47\xb5\x94\x35\x00\x58\xda\x64\xc6\xcd\xd4\x82\xaf\x0f\x51\x07\xcd\xd4\x01\x09\x8d\x13\x2e\x45\xa2\x06\x6a\x31\x78\x53\x1a\x4f\x7b\x4e\x62\x66\x07\xb5\xa8\x56\x3d\x1d\x62\xca\x10\x86\x5d\xc5\xfe\x04\x7f\xcd\x87\xce\x28\x4f\xcd\x03\x91\x15\xc8\xa2\x3e\x77\x2c\xb2\xff\x44\x2a\x96\x6b\x42\xc7\x6b\x49\xca\x1a\xdf\xac\xd7\x7f\x27\x4a\x75\x39\x77\x0f\x5f\x41\x2e\x6b\xda\x13\x16\x76\x32\x44\x58\xbb\x1d\xdc\x00\x0c\xa9\xe8\x78\xbf\x6c\x5b\x47\xb5\x30\xc6\x6e\x3d\x16\xd2\x94\xbb\xa6\xf1\xb4\x5e\x7f\xab\x66\xc6\x14\xba\x89\x6a\xe4\xfa\xad\xa2\x9e\x44\x15\x6d\xde\x91\x8a\xfd\xda\xb9\x73\xa1\xf4\xc7\x0e\xaf\xb8\xa6\x76\xc3\x0a\xb2\x70\x26\x11\x7e\x90\x10\xe5\x3b\x97\xf8\xa9\x0e\xd6\xed\x2b\x41\x99\x1f\x64\xcb\xdc\x4c\xa2\x1c\x90\xd1\x00\x14\x13\x99\xe5\x9b\xf9\x4e\x51\x32\x30\xb6\xdb\xc6\xbb\x52\xee\xd4\xa6\x9d\x0b\x7d\xf0\x54\x5d\xb3\x73\x54\xb1\x7a\x28\x03\x2b\xa1\x4d\xca\x66\x72\x04\x31\x8a\xca\x59\x94\x7e\x14\xd1\x62\x41\x27\x96\x07\x32\x53\x4d\x1c\xa5\xe9\x15\x9d\x1a\xb8\xc1\x86\x47\xaa\xee\x02\x52\x21\x58\x73\xbb\x3d\xc0\x4c\x70\x0e\x22\x1b\x78\xf5\xa4\x7c\x84\x16\x94\x12\x6e\x2c\x56\x65\xe5\x8d\xd7\x68\xaa\xfc\x93\x5c\xfb\xf0\xb1\xbb\x3b\x2a\xc2\xc0\xcb\x73\x69\x86\x06\xe2\x5f\xe1\xfd\x51\x4c\x23\xa1\x69\x29\xb0\x0e\x4e\xb5\x81\xcb\x14\xb5\x44\xbb\x1d\xc2\xbb\xb1\xfa\xc8\xbc\x51\x85\x50\x28\x20\x4a\xd6\xbc\x29\x7d\x87\x32\x59\x77\x0e\xe7\xe0\xe0\xd2\x2d\x8a\x3f\x09\x16\xb2\xc3\x2d\x18\xb2\xce\x9e\xf9\x12\xde\xc9\xf2\x71\x30\x92\xc5\x9c\x27\x83\x39\x1d\x6a\x94\x06\xef\x82\xf7\x58\x28\x04\x41\xd2\x90\x34\x5a\x82\x2e\x36\x74\x6e\x55\x78\xcf\xf3\xc9\x42\x07\xba\xee\x41\x77\x88\x7a\x4b\x1a\x42\xd5\xd8\xaf\xb6\x2f\x8d\x07\xad\xbd\x33\x3a\x04\xf6\x41\x77\x88\x05\xa1\x83\xbd\x21\x76\x44\x22\x0f\x76\xf7\x7a\x3a\xe4\xf4\xf3\xc5\x34\x34\xa9\xab\x41\xfd\xb8\xbb\xb7\x4d\x88\x75\x4a\x20\x62\xc0\xc1\xb7\x6e\xbb\x6c\xc6\x34\xca\x45\x23\x57\xb3\x41\x17\x8a\x25\x84\x90\x51\xe7\x62\x91\x76\xde\x52\xb9\x5e\xe7\x3f\xcf\xa2\xa7\x5b\x7a\x9a\x8c\xa3\xd8\xe6\xcc\x66\x03\x96\x7b\xb2\xe1\x94\x44\x83\xc8\xf7\x6c\x1b\xf0\x21\x19\xe8\x6f\x35\x76\x2a\x0e\x76\x75\x2f\xf1\x80\xe1\xd4\xc0\xe5\x66\x99\xd6\x6e\x7c\x96\x64\x05\xf7\xcc\x5a\x08\x7a\x37\xcc\x9e\x1d\x22\xc9\x3d\xda\x07\x14\x53\xbc\xdd\x1d\xb6\x2c\x8f\x4e\x97\xb7\xfa\x2e\xab\x88\x00\x01\x60\x5b\xfe\x48\xee\xec\x59\x8e\x3d\x50\x9c\x60\x7b\x6f\x98\x61\xa6\x65\xe3\x8a\xf3\x6b\x3e\x89\xdd\x21\x4e\x88\x00\x70\x8b\xc1\x2b\xed\xe6\xce\x26\x10\x1b\x6f\xa7\xc3\x57\x16\x31\xd4\x2a\xe8\x13\xa2\x76\x3b\x8c\x88\xb4\xbe\xcc\x27\x90\xe3\x76\x13\xe6\x45\x84\x30\x70\x46\xde\x49\xfd\xb8\x7b\xd5\x26\x8e\xf0\x76\x17\xeb\x4c\x0e\xaa\xe5\x94\xb0\x7c\x7e\x3a\x01\xfa\x71\x77\x0f\x2f\x49\x7a\xf0\x28\x55\x47\xac\x67\x7d\x27\x40\xa8\x37\x92\xba\x6f\x41\x2a\x9f\x62\x0a\xbd\x6f\xb7\xc3\x25\x30\xed\x0b\x19\x2e\x31\x14\x08\x58\xfa\x81\xa5\xec\x36\xa6\x01\x02\x7c\xc4\x42\x17\x12\xbc\xc4\xdb\x7b\xa6\xfd\x0c\x5f\x4b\x92\x6a\x27\xca\x45\x1c\x3d\xf5\xb6\x78\xc2\xe9\x7e\x80\xf0\x45\xa3\xb0\xf1\x72\xa0\x24\x6e\x70\x7d\x5c\x7f\x1a\xa1\x92\x0c\x8c\xd9\x8b\xb1\x92\x5e\x8e\x80\xe4\xf9\xe9\x39\x47\x73\x73\x05\x32\x9d\x72\x18\xac\x4e\x49\xc9\xa6\x1e\xed\xee\x04\x5b\xa5\xc9\xb1\xa4\x01\x8a\xa2\x83\x54\x31\x97\x9e\x85\xa3\xdd\xba\x76\x70\xa5\x91\xba\x48\x79\x70\x3c\x87\x92\xac\xea\xe9\x14\xad\x44\x89\x4c\xf4\xfa\x62\x98\xa6\x79\xb4\x40\x61\x65\x61\xed\x29\xba\xb8\x56\x45\x41\xef\x8e\xf2\x75\xc5\x85\x17\xb5\xc1\x46\x84\x10\x7a\x70\xad\xa3\x02\xb3\x0c\xdf\x97\x85\x7f\x6f\xf3\x58\x1a\xec\x05\x80\x3a\xa1\xf6\x92\xe2\x1e\xc0\x34\x98\xdd\x4d\x7a\x2f\x95\xe9\xdd\x30\x8c\x67\xb6\x8a\xdd\x0f\x5a\x5b\xa2\x5a\x5d\xe2\x98\x24\x95\x6d\x31\x26\xf1\x41\xe2\xed\x88\xde\x60\x88\xa7\x24\xd6\x5b\x65\x6c\xf6\x47\x82\x5a\x4b\xe2\x29\x67\xd5\xe6\xb8\x91\xe1\x14\xc7\x07\xe3\xc1\x38\xe7\x70\xbd\x44\xfb\x7a\x1c\xa9\x77\x11\x4e\x2b\x3b\xc5\x76\xbe\xb0\x5f\x6e\xfe\xc6\x7d\xb1\x88\xe4\xcc\x6d\x09\xbd\x07\x78\xdd\x6b\x97\x1c\x76\x02\xe6\x35\x90\x3e\xfe\xd1\x4d\xa2\x26\xae\x08\xe6\xab\xfa\x52\x70\x19\x29\xf6\x69\xbd\x0e\x6b\x9e\xaa\x6d\x7e\xeb\xa7\xb6\x95\x39\x2e\x1c\x5d\xaf\xbb\x86\x04\x8d\x32\xb6\xe7\x44\xd1\x9a\xcd\x73\xd4\x3c\xed\x46\xb6\xc7\xfc\x6b\xe5\x53\x98\x4f\x56\xfd\xfa\x55\xed\xd7\xaf\xfc\xaf\x5f\xe9\xaf\x5f\x8c\xa3\x05\x10\x83\x84\x63\xd1\x99\x46\x71\xfa\x44\x58\x09\x5c\xeb\xef\x5d\x53\x2b\x34\xea\x66\xad\x03\x04\xb4\xdc\x2a\xfa\x8f\x84\xe8\x40\xf6\x44\xc3\xe4\xe7\xe2\xd5\x99\xf4\x0f\x75\x80\xaf\xf1\x6d\xa7\xb8\x1e\x73\x9a\xd5\x3d\x6d\xf1\xc1\x82\x0e\x09\x73\xca\x18\xed\xcc\xe7\x94\x31\x89\x8d\x2e\xd0\x46\x17\x9c\x12\x80\x44\x53\xdc\x62\x49\xc4\x20\x1a\xb6\x6a\x94\xef\xcb\x76\x7b\x39\xf8\x79\x78\xa0\xde\x93\x65\x2f\x05\xb0\x9f\x10\x7e\xa9\x9d\x7e\x29\x43\x1d\x3b\xc3\xd4\x93\x14\x73\x28\xe6\x90\x0a\x3b\x20\x09\xaa\x1d\x07\xe7\xf2\x95\xac\x20\xf1\xbf\x09\x10\xbe\xdc\x70\x35\x31\xa8\x47\x8b\xce\xd9\xfb\x9b\xc3\xd7\xa7\xfd\xd1\x51\xff\xf4\x74\x48\xb6\xb5\x2c\x3b\xb8\x92\x43\x7b\x49\x31\x90\xa8\x75\x40\xeb\x35\x40\xa6\xf6\xeb\xc1\xa7\x61\xd1\x87\xfc\x77\xe8\x63\x21\x81\xd2\x79\x88\x10\x3e\x96\x64\x30\xdc\x0f\xbb\x78\xaa\x35\x47\x6f\x20\x18\x1d\x85\xc7\x52\x7f\x77\xfe\x8f\xaa\x12\x92\x3a\x55\x42\xd2\x78\x35\x2f\x5e\xbf\x69\x47\xff\x51\xb8\x7b\xd3\xd2\xdd\xdb\xcb\x7c\x59\xd1\xc3\x3a\x37\x5b\x68\x0b\xa4\x47\xfd\xe7\x79\x34\xa7\x38\xa9\xc9\x41\xc1\xa6\x61\x0e\x10\x85\x1a\x0d\xac\x16\x68\xee\xc0\x52\xb2\xcd\xdc\x10\x0a\x5c\xa9\x14\xf5\xc0\xfc\xc0\x2d\x11\x27\xce\xc2\xe1\x12\xc0\x05\x3b\x1c\xda\x8e\xac\xe4\xe1\x72\x69\xb8\xc2\xbf\x6b\x45\xb2\xba\xc4\xfb\x9a\xa9\x86\x11\xe7\xb7\x45\xe3\x69\xe0\x4d\x12\xf8\x51\x77\xdc\x65\xb7\x41\xf7\xc1\x1b\x74\x1f\xbc\x32\xff\x5a\x5d\xa1\xa6\xb4\x46\x51\xe0\x75\x25\x67\x34\x95\x9b\xf6\x81\x6c\xb7\xa5\x8d\xe6\x5a\xaf\x83\x09\x7b\x08\xcc\x21\x90\x34\xeb\x56\x7c\xdd\x89\x9f\x44\x4a\x7d\xd4\xac\xf8\x84\xbb\x32\xe0\x5c\xaa\x7e\x84\xc1\x68\x74\x78\xf5\xf6\x7a\x34\x0a\x1c\xca\xad\x7d\x0d\x99\xf5\xf3\xd7\x9e\x8b\x98\x17\xe6\xd2\x3b\x96\x90\xbe\x7e\x52\x89\xfc\xb6\xd5\x8c\xa3\x85\x5c\x0a\x1a\x42\x56\x7c\x2c\x90\xb3\x31\x33\x60\x2e\x09\x8e\xfc\xc4\x2e\x10\x47\xa3\xf5\x0b\x9d\x72\x30\x4d\x1e\x58\x15\xe9\x33\xd3\xc7\xef\xb4\xb7\x53\xdf\x23\xb4\x80\x64\x6d\x68\x37\xd2\xc3\x4c\xf7\xc3\x94\xac\x32\xa4\x18\x5f\xa1\x1a\xd7\x5d\x9c\x90\x14\x17\x06\x95\xd4\x8f\x49\x87\x12\xe9\x88\xd1\xe2\xd5\x34\x42\xed\x76\xe4\x9c\x9e\x50\xc5\x5b\x75\x49\xce\x22\x39\xeb\xcc\x19\x0f\x23\x17\x98\x51\x33\xa6\x56\x42\x56\xd9\xcb\xfa\xe2\x4e\x91\x98\x74\xf7\xe3\x1f\x96\xfb\xb1\x3d\x3e\xc6\x24\x1a\xc4\xc3\x56\x32\x18\x97\x46\x1c\xc9\x50\x09\x74\x86\xfe\xbd\xa5\x9d\x74\xfa\x67\x97\x37\x9f\x46\x87\x57\x57\x87\x9f\xcc\x2a\x27\x40\xf3\x0d\xba\x50\xcc\xb0\xbb\x44\xf2\xce\x03\xa3\x8f\x38\x25\xb2\xb4\xb8\xea\xd4\x2a\x77\x1d\xc7\xe4\x4c\x86\x4b\xb4\x1f\x96\x7d\x57\x3c\x4a\x65\x93\x00\x81\x56\xc2\xdd\x3d\x89\xec\xb0\x09\xca\x50\x28\x70\x8c\x70\x6c\x31\xe4\x19\x7d\x24\x11\x8e\x07\x4f\x74\x48\x12\x1c\xdb\x50\xf2\x1c\xa4\x17\x4b\xc7\x10\xda\xed\x30\x36\x5c\x91\xe4\x4f\x35\xf7\x1e\x93\xd4\xb9\x68\x21\x3c\x25\xcf\xa8\x60\xbd\x5c\x3a\x27\x4a\x08\x6f\xe9\x29\x20\x63\xac\xf5\x20\xea\xea\xdc\xc5\x8b\x4e\x34\x99\x38\xa0\x44\x14\x46\x78\x8c\xf0\x38\x57\x46\x95\xa2\x01\x8d\x32\x6a\x46\x82\x60\x9b\x90\xb1\x65\x12\x2d\x25\x68\xd2\xb2\xf5\x6a\x5c\xd4\x69\x59\x75\x16\x1e\x77\x46\x85\x18\x56\xc0\x8e\xf1\x34\x61\x9b\xab\x29\x80\x8a\x05\x26\xfc\x6f\x02\x72\xc4\xad\x0c\x29\x1e\xe3\x25\x9e\xe2\x59\x0e\xfd\xe9\x2f\x9a\xd1\xe6\xb4\xdb\xe1\x24\xd7\x1a\x0a\x9f\xc3\x98\x12\x35\xfd\x98\x35\x8f\x68\x62\x38\x63\xb3\x36\xd9\xad\xc6\x60\x4e\x87\xc6\x4a\xb7\xd9\xc4\xa3\x75\xff\xfe\xe1\x01\xf1\x2f\xa6\xd3\x38\x21\xd4\x57\x3a\xee\xc3\x5a\xa6\x25\xed\x20\xc7\xd2\x68\x00\x53\x2a\x0b\x9a\x41\x89\xb9\x9e\x39\xb5\x35\x2a\x58\x31\x78\x49\x78\x27\x47\x6a\xc2\xb1\xff\xd3\x16\x82\x23\x32\xe7\x28\x28\xac\xde\x53\x4b\x51\x21\x79\x80\xe6\x3e\xe8\xd2\x92\xfd\x82\x28\xb9\x24\x9f\xad\x4f\x44\xa4\xf6\xe0\x72\xb0\x37\xdc\x07\x8d\x54\xae\x88\x89\xd5\xda\x99\xf8\x8c\x18\xe1\xcf\xb2\x63\xae\xee\x10\x9d\xb3\xc4\x1c\x21\x9c\xec\xee\x66\x56\x97\xe5\xa9\x70\xd4\x86\xb5\xbc\x47\xe4\xbb\xf6\xc0\xfb\xbb\x57\x74\x6d\x12\x6a\xd3\x54\xf5\x44\x9b\x2e\xcd\x63\xef\xb2\x5f\xee\x80\x56\x1e\xa0\x76\xfb\xb0\xd8\x6b\xae\x78\x86\xc4\x11\xe6\x58\x78\x57\xed\x31\xe1\x5e\x2f\x79\x63\x2f\x39\x6a\x95\xd5\x14\x5f\xd0\x4b\xec\x75\x46\x42\x0f\xd4\xdc\x19\x1f\xab\x29\x31\x97\x74\x86\x99\x9f\xa2\xa0\xda\xa2\xb9\x92\x4f\xf3\xd1\x2b\x99\xdf\xac\xb7\xfa\xab\x36\xbe\xec\xcb\x95\x12\xbe\x32\x05\xe1\xb8\xdd\x8e\x5d\x1b\x71\x6d\x1b\xf7\x12\x86\x05\x10\xdd\x08\x7f\x45\x8b\x06\xaa\x41\xf1\xce\xc0\x9b\xb6\x20\x12\x2c\xba\x4a\x62\x1a\x30\xbe\xc5\xdb\xed\x72\xcd\x42\xbd\xc2\x23\x19\x72\xaf\xa8\xf7\x3d\xdf\xc8\x04\x93\x32\xf3\xe1\x1b\x99\xa0\x61\x28\x1b\xcc\xc1\x3e\x07\xba\xa3\x43\x22\x71\xd1\x20\x95\x54\xec\x5c\x9e\xd0\x68\xf0\xc9\x6b\xa4\x47\x79\x50\xaf\x31\x1c\x4c\xe8\x70\x88\x7a\xf0\x6f\x81\xdb\x3d\x23\x94\x16\x78\x5a\x79\x0e\x42\x59\x9e\x33\xc6\x8f\x2f\xce\x02\x38\x40\xbd\x03\xab\x34\x39\xa5\xb7\x96\x69\xc3\xa0\x6b\xee\x74\x95\x4e\xc1\xc8\x61\x0a\xb8\xf9\xc3\xe5\xa2\x62\x45\x26\x0c\x0a\x4a\xcf\x0e\xf2\xf2\x13\xfa\x54\x2a\x4e\x2d\xda\xed\x6d\x67\xa0\xd2\x09\xac\x38\xb2\xde\x8e\x67\x52\xf1\xa3\x62\x07\x48\xc1\x9c\x85\xa5\x06\x0f\xee\x62\xa9\x88\xd1\xf8\x44\x33\x9a\x86\x89\x7b\xb7\x57\x9a\x0d\x0f\x10\xb6\x66\xa6\xfc\x83\x3f\x63\x35\xeb\x51\x20\x4a\x5d\x57\xb1\x1a\xff\x98\xb4\x64\xda\xe0\x60\x50\xb6\x91\x26\x0d\xae\x06\x5f\x4e\x35\xd5\x01\x6f\xa6\x8a\x06\xdb\x6c\x31\xaa\x19\x2c\xb3\xb9\x0a\xe6\x44\x16\xce\xfb\x7c\xd1\x8f\xa9\x8c\x58\x9c\xea\x04\x80\x2c\x32\xb3\xd1\xdb\xee\x66\x9e\x8d\xea\xf4\x4b\xbf\xde\xcb\xb4\x91\xe2\x4d\xd5\x39\xa2\x5b\x70\x8e\xe8\x16\x9d\x23\xba\x05\xe7\x88\x6e\xd9\x39\xa2\x5b\x74\x8e\xe8\x7e\x91\x73\x44\xb7\xce\x39\xe2\x4f\x6d\xba\x3e\x97\xf8\x5d\x55\x93\xed\xcc\xc5\x4a\x00\xb3\x2a\x98\xa2\x7c\x6e\x8d\xc5\xfa\x22\x6c\xcd\xc5\xd6\x4a\xfd\xa7\xb4\xee\x6b\x8a\x45\xe6\xae\x03\x38\x22\xc9\x41\xe2\x5f\x8e\x2d\xfa\xb4\xb6\x78\xe7\xcf\x49\x84\x0b\x57\x72\x6b\x7f\x06\xe3\xb4\x31\x39\x6b\x03\xf9\x4a\x75\xb2\x47\x71\xb1\x7f\x3d\x89\xad\x7f\x02\x76\x1a\x04\x8e\xfd\x1b\x70\xef\x8d\x2c\x5c\xda\xa3\x2c\xc3\xaf\x9f\xd5\x9b\x6e\xd6\x5d\xfa\xc6\xf4\xaf\xc3\xfe\xdf\xec\x90\x51\x51\x53\x94\xcd\xde\xcf\xeb\x2c\x5e\xee\xaf\xd1\xe8\xcb\xe2\xc5\x50\xe6\xbb\x5d\x2f\xf8\x17\xdd\x7e\x98\xbb\xfd\x30\x23\xf4\xc2\xfd\x85\xb9\xfb\x8b\x55\xf4\xd4\x5d\x63\x58\x83\xd0\xcf\xbe\xec\x1a\xc3\x36\x5f\x63\xb0\xbb\xc0\x30\x8d\xdd\x99\xe0\x48\x87\x89\x9f\x4b\x84\xdf\x3f\xe7\x03\xd5\xfd\x22\x1f\xa8\xbf\x7f\x9b\x7f\x7c\xce\x89\x3e\x27\x58\x6a\x42\x77\x21\x9e\x57\xf1\xbd\x56\xd1\xf1\xc4\x98\x9b\x1f\x3b\x6f\x0e\x8f\x6e\x2e\xae\x3e\x8d\xde\x5c\x5c\x19\x94\x8e\x56\x65\x3b\x8a\xce\x74\x19\xc7\x6a\x0d\x0d\x70\xcc\x5e\x17\x15\x37\xdf\x7b\x59\xde\xb1\xc2\xee\x58\x6d\x62\xab\x51\xf5\xd6\xc8\x42\x35\x37\x39\x90\x6d\x20\x1c\xeb\x8f\x67\x75\xcf\x9a\xfa\x0c\x87\x2b\x38\x68\x6d\x72\x42\x81\x1c\x8c\x75\xce\x41\xf4\x71\xcb\xe4\x1b\x01\xb5\x46\xb9\xd6\x67\xa1\x4f\xbc\xb2\x99\x96\x16\x1a\x42\x71\x2b\xdd\xc5\xd2\x86\xa0\x3d\xeb\x0a\x04\x24\xac\xd5\x5b\xb0\x87\xf5\xea\xb1\x49\xc1\x93\xe5\x64\x82\x42\x8b\x89\x43\xf9\x83\x65\xf7\x22\x49\x64\x29\x48\x5d\x33\x70\xc3\x91\x67\xc9\x32\x9e\x5c\xd1\x69\xbc\x4c\x67\x36\x5d\x42\xee\xce\x42\x0c\x7c\x98\xc1\x04\x4b\x16\xaa\x6b\x29\x59\x45\xf1\x63\xf4\xa4\xa4\x27\x23\x5e\xa9\x73\xb4\x65\xda\x28\x23\xe6\xeb\x38\xd5\x98\x08\xff\x58\x19\x93\xd8\xe3\x6a\x53\x9d\x08\x40\x7f\x7b\x16\x31\x8e\x42\xf7\x5a\xa8\xf5\xbc\x13\xd1\x1c\xab\xeb\x47\x82\xa3\x50\xe2\x95\xd9\x75\x3d\x06\xb1\xbe\xd7\xec\x36\x66\xfc\xce\x60\x0a\xe3\x31\x6a\x4d\x92\x15\x25\x53\x13\xdd\x9d\x3d\xce\x54\x33\xdb\x54\xc7\x96\x1b\x3d\x87\x17\x04\xae\xc3\xea\xeb\xfa\x6e\x56\x6f\xd2\xb1\x09\x20\xc2\x25\x32\xfe\x20\x8d\x21\xf3\x9b\xb0\x06\x60\x35\x08\x01\x5a\xd9\xec\x18\x65\x02\xe6\x73\xaf\x28\x07\xf7\xe6\x2d\x4e\x37\x5f\x6e\x7f\x51\xa1\x95\xdc\x85\xab\x66\xd9\xcd\x48\xcd\x23\x1b\x4e\x40\x20\xab\xbd\xe7\xe1\xdb\x12\xed\xb6\xd4\xee\xca\xce\x57\x38\x77\x7e\xb6\x9e\xc1\x50\x48\x3b\x0e\x87\x6a\x76\x34\x59\x7f\x92\xe0\x89\xec\x62\xbb\x3c\xcb\xda\xa7\xdc\x2d\x88\xa2\xd6\x27\x0d\xae\x38\xa6\xa1\xc4\x7b\x9e\x28\xf7\xb3\x73\x96\xfb\xc6\x84\x81\xa8\xbf\x7f\x91\xa4\xdb\x5a\x76\x6e\xa3\xf1\xfd\xed\x52\x70\x2a\x3a\x09\x0f\x03\xe8\x62\x03\xc4\x57\x77\x9f\xfe\xf0\xc9\x99\xdd\xe8\xce\x0e\xfa\x24\x07\x74\xd8\x19\x59\x47\xf0\x9c\x8c\x43\x75\xb5\xad\x54\x4e\xf9\xe4\xc5\x55\xb3\x69\xb8\x6d\xaa\x67\xe9\x07\x55\x6d\x88\x40\x39\xff\x8b\xfc\xf1\xae\xd3\x3f\xff\xd0\x19\x5d\xf5\xaf\xfa\xe7\xc7\xfd\xab\xd1\xe9\xc5\xc5\xe5\xe8\xf4\xe4\xec\xe4\xc6\xc4\x47\xa8\xb1\x61\xfd\xb5\x9b\x65\xec\x05\x4d\x30\x3e\x55\xd2\x2b\xdd\xd2\xcb\xc7\xf8\xdd\x16\xe3\xa6\xef\xe0\x2b\x4c\x25\x1d\x4b\x3a\x09\x9c\xce\xee\x17\xb9\xb3\x53\x1c\xd0\xef\x09\xe3\xa0\x6d\xc7\x3f\x4b\x94\x41\x8b\xde\xd0\x72\xe7\xae\x6f\xa4\x25\xc7\x6f\xa4\xa2\xa0\x24\x7e\xa0\x2d\xb3\x10\x4d\x35\x52\x94\x65\x6a\x0a\x61\xa1\x7e\xdd\xc8\xd6\xac\x5a\xae\x62\x93\xfe\xae\xd6\x26\xfd\x5d\x21\x86\xf8\xbb\x61\x9d\x35\xfb\xfb\xda\x2f\xbf\xf7\xad\xd9\xdf\x0f\x7b\xb3\xce\x38\x66\x94\xcb\xd7\x4b\x16\x4f\xa8\xd0\x4c\x6b\xa4\x76\x90\x61\x92\x23\xe1\xa7\x2c\x97\x36\x75\x22\xa3\x8f\x57\xf4\x8e\xa5\x52\x3c\x59\xd9\x79\xa4\x16\x89\x71\x3a\x79\x93\x88\xe3\x8b\x33\x2b\xf0\x8e\x7c\xee\xe9\xd5\x09\x21\x3c\xfa\x67\x21\x47\xf2\xee\x9e\xc3\x78\xbc\xb2\xeb\x7a\x05\xe5\xf3\xcf\xe9\x3c\x79\xa0\x93\xab\x62\x2d\xb7\x7a\x08\x84\x6d\xe2\x47\x4a\xb0\xe4\x93\x0b\x38\x79\x40\x83\x5e\x15\x52\x59\x81\x5d\xb1\x69\x68\x08\xf5\xf0\xf2\xf2\xf4\xe4\xe8\xf0\xe6\xe4\xe2\x7c\x74\xd3\x3f\xbb\x3c\x3d\xbc\xe9\x8f\x3e\x5e\x1d\x5e\x5e\xf6\xaf\xbc\x24\x30\x05\xeb\xd0\x42\xe2\x55\x51\x9c\x2a\x0a\x48\x19\x00\x99\xd0\xc7\xb0\x21\x12\xeb\x2f\x58\x67\xb9\x95\xd3\x59\x5d\x0c\x0e\x6b\x32\xe8\x19\x6b\xe8\x84\x3d\x04\x99\x36\x71\xd6\x5c\xa8\xed\x04\x7b\xce\xd5\x9b\x65\x76\xd9\x20\xb3\xcb\x92\xcc\xce\x5e\xe0\x63\x2d\x55\xb1\x67\xd5\xdc\xb2\x5e\x23\x57\xd4\xba\x95\x0b\xb1\x09\xf8\x60\x15\xa2\x50\x11\xc4\x74\xcc\x65\x11\x59\xe8\x49\x86\x54\x0b\x8c\x98\x15\x72\x1f\xe6\x2f\x50\xe6\x24\xcb\x91\x26\xbb\x63\x0a\x0c\x4b\xf7\x12\x8e\xf8\xf1\x52\x88\x27\x14\x32\x64\xf0\x89\x74\xb9\x9b\xa4\xf6\xee\x04\x39\xe6\xe5\x8b\x2b\x15\xb6\xd2\x4a\xc1\x06\x9b\x80\xc9\xee\x25\x0d\x4d\x6e\xfd\x21\x35\x1f\xab\xf5\xdd\x87\x9c\x81\xf4\x71\xeb\x83\x0c\x2d\xa7\xa0\xfc\xa1\x86\x67\x60\x8e\x05\x66\xc5\x3d\x6a\x47\xa0\x19\xb7\xda\xc7\xa1\x8e\xd8\xb6\x72\x45\x25\x80\xa8\xfe\x74\x82\x2f\x14\x17\xa2\xcf\x65\x64\xd2\xe2\x60\xab\xca\xbd\x06\x72\xa8\xe5\x8f\x25\xaf\xad\x6a\x42\x63\x2a\xe9\x56\xcd\x87\xd5\xea\x87\xba\x43\x8a\x39\x95\xf4\x4f\xa5\x1b\x9d\x61\x89\x1a\x24\xde\xb8\x9a\xd3\x88\x2f\x17\x6a\x2a\xd4\xad\xd8\x4a\xae\x25\x9e\xda\x6e\xd3\x82\x76\xa9\xec\xee\xad\xda\x2f\xd6\x54\xe6\x65\xdb\x25\x9e\x8c\xec\xe9\x2d\x89\xc7\x9a\x1d\x40\x2a\xfc\x72\xf1\x52\xbb\xbb\xfb\x96\x56\xe4\x40\x0c\x5b\x5c\x8b\x77\x21\x05\x9c\x14\xef\x90\x76\x22\x8c\xc0\x7b\x10\x0a\x5f\x2b\xde\x95\xba\x62\x7d\xca\x46\x55\x89\x6e\x04\x8e\xe6\x87\x71\x0c\x2c\x3f\x44\xf6\x1e\xf2\x3a\x59\xf2\x49\x5a\xc7\x9a\x06\x77\x2e\x0b\xfd\x4a\xdb\x4b\x6d\xba\x20\xd9\x29\xfc\x56\xe2\x36\x13\xa9\x3c\x4f\x26\x8a\x1d\xb9\xbf\x43\x84\xd5\xb1\x64\x1e\xdb\x3f\x43\x3d\x98\x71\x03\xeb\x29\xc1\xb7\x53\xfe\x00\x69\xb8\xf4\x99\xb3\xa0\x02\xe4\x92\x34\x44\xa5\x28\x60\x7d\xaf\xf2\x76\x43\x75\x44\xc5\x15\x69\x39\xe8\x3c\xf0\x59\x17\xce\x56\x61\x92\xec\xe3\x4f\xd2\x82\x8e\x21\x5c\xde\x6a\xa9\x27\xd1\x86\xe5\x96\xd3\x46\x48\x9d\x12\x65\xa8\xcd\xee\x80\x73\xbd\xf3\x18\x33\x75\x49\x9a\x24\x2b\x51\x14\x94\x9d\x91\x4e\x17\x78\x99\x17\x18\x98\x02\x73\x09\x1f\x19\x28\xb5\xc8\xb3\x66\xa5\x24\x2a\xde\xda\x5a\xc9\x8f\x84\xb6\xdb\xdb\xe9\x7a\x1d\x46\xf6\x8a\xd6\x29\xdf\xd0\x48\x8a\x2b\x5f\x6a\x8f\x70\xb1\xe4\x27\xbe\xd0\x8f\xc2\x08\x1b\xed\x4f\xa0\x38\x23\x5b\xaf\x53\x94\x65\x35\x92\x4b\xdc\x39\x7a\x7f\x75\xd5\xd7\x71\x3b\x2e\x16\xc4\x5d\x0b\xbc\x3b\x81\xbe\x81\xb1\xf5\xda\x0e\xfc\x47\xaa\x5d\x1a\xf6\x6d\xc2\x71\xb3\xd1\x96\xea\xec\x4e\x16\x70\x27\xcc\x6f\x09\x4b\xd4\x72\x3b\x6c\xaa\x2e\x09\x0e\xab\xbc\xb0\x61\xdb\xed\xb7\xd2\x46\x54\xca\x26\x0a\x20\x45\x71\x77\xbb\x5e\xf6\xb2\x9b\xb5\x2a\x93\x75\x0d\xda\xf2\xf6\x9e\xce\x2b\x54\x26\xb6\x10\x61\x4a\xb6\xbb\x6e\x1a\xa8\xdb\xe6\xcf\xcf\x1d\xce\x41\xd8\x61\x2f\x15\x2e\x63\x16\xfc\x5f\xbd\xb0\x33\x8b\x9a\x45\xc7\x0c\x36\x6e\x91\x91\x90\xda\x5b\x8c\x4f\xed\x75\x10\xc8\x74\x20\xbd\x0b\x49\x56\xdd\x02\x16\x18\xb5\x5b\x96\x76\x69\xfd\xc2\x54\x8f\x36\xbf\x63\x85\xcb\x85\x2d\x7a\xc1\xc7\xd4\xea\x24\x03\x3f\x39\x89\x70\x75\xe8\xba\xcd\xad\xab\x09\x14\xc2\xe7\xbe\xf5\x44\xb4\x5e\x57\x96\x46\x9f\xbe\xd5\x45\xb4\x64\x56\x37\x0a\xbb\x2e\xe6\x0e\x68\xc0\x97\x37\x70\x25\x03\x51\xa1\xd7\x91\x0a\xf2\xab\xd6\xdf\xfd\xf6\x57\x1d\x19\x9f\xf5\xb8\x7d\x49\x74\x7b\x47\x71\x3f\xda\x29\x88\x39\xb4\x28\x1e\xe0\xed\x3d\x4c\x3b\x56\xde\xa9\xa4\xfa\xad\x3b\x3b\x2a\xa8\x00\x87\xe3\x31\x4d\x21\xfc\xff\xbf\xb5\x62\x43\x7f\xf4\xdf\x5b\x2c\x05\xac\x80\x28\x8e\x93\x47\x3a\xd9\x62\x7c\x8b\x27\x7c\x97\xe5\x6a\xe1\x2d\xcf\x70\x95\x6e\x85\xe9\x72\x3c\xdb\x8a\xd2\xad\x37\x51\x2a\x5f\x27\x89\x44\x9d\x40\xeb\x80\x7f\x85\xf8\xe4\x13\x4e\x85\x74\x33\xfd\x9b\x9e\xe9\x9f\xfe\xef\x99\xe9\xee\x97\xce\xb4\x07\x1d\x50\x0d\x7c\x2b\x4c\x8c\x9b\x51\x37\x3d\x3f\xe9\xe9\xa1\x82\xac\x0c\x58\xa4\xa8\x5e\x3e\x7c\xc5\x33\x2d\x18\x7b\x2a\x56\x1e\x93\x1d\x4a\x64\x19\x16\xe2\xaf\x19\x6f\x34\xf8\x86\xfc\x32\xbf\xf2\xcd\x37\x3c\xdd\xbb\xe6\xe0\xd9\x97\x5e\xec\x4c\xc0\x29\x17\x5f\x16\x73\xfd\x8c\x59\xf1\x0b\x63\xae\xf7\x9e\xb7\x37\x30\x51\xef\x48\xcd\x84\x71\x75\x16\x38\x6a\x5c\xa5\x7f\x30\x2c\xfb\xf9\x6b\x31\x17\x19\xe6\x1b\x3c\x62\x8b\x5e\xaf\x05\x77\xca\x56\xd5\x29\x92\x09\xe3\x09\xb9\xb2\xae\xb1\x26\x58\x5b\xdd\x2a\x9f\x16\x6a\x81\x3d\xe7\x36\x48\xb4\x08\xba\xce\x46\xa3\x9b\x97\x96\xa2\xec\x29\x19\x15\x3d\xe5\x74\x65\x38\x25\xd6\x01\x33\x5c\x8d\xf5\x82\x7a\x9e\x8d\xaa\x0b\x91\x93\xb1\x1c\x55\xea\xe7\xd8\x26\xc2\xef\xa5\x59\x53\x3c\x76\x1e\xa9\xa8\x8b\xfa\x97\xfb\x5f\x43\x89\xbe\x30\x44\x7b\x83\xc3\x07\xe4\xec\x15\x5e\x53\xfb\x79\xea\x50\x61\x93\x54\x3a\x68\xca\x4d\x41\xdc\x65\x53\xbe\xaa\x0c\xb6\x96\x10\x08\xa7\x46\x41\x40\xa3\xfb\xb3\x68\x81\x97\x0e\x68\xf9\x0e\x5c\x36\x34\x41\x5d\x4c\x73\x15\x74\x2c\x0a\x26\x99\x14\x3c\x8d\x0c\x7f\xf0\xc0\x87\x04\x10\xb9\xbb\x25\xd2\x7d\xad\x11\x95\xfb\x20\x2f\xa6\x02\x1c\x20\xa5\xf3\xfa\x4d\x4d\x96\x74\xd4\x92\x64\x29\xd4\x44\xfa\x81\xe7\xb1\x08\x57\x53\x93\x80\xb7\x81\xef\x47\x02\x78\xb0\xcd\xe1\xa7\xf6\xa9\xc9\x0f\xeb\x25\x24\x48\x04\x89\x3a\x66\x7c\x36\xcd\x1e\x4b\x6d\x7a\xd5\x4a\xd2\x0b\x3d\xc7\x95\x75\xcc\x53\xce\xba\x54\x23\x4f\x0b\x9a\xa1\x0c\x21\x9c\x88\x2f\xca\xbd\xa8\x73\x6b\xea\x03\x61\x2a\x48\x22\xf0\x4c\x90\x3f\xea\x50\xcf\x6f\x3b\x71\x32\x36\xfc\xc1\xaa\x89\x11\x9e\x88\x67\xec\x9c\x46\xe7\x2c\x36\xc3\x85\x6d\xf2\xa2\xf7\x6e\xf9\xb6\x32\xfb\x87\xba\x48\x2a\xde\x60\x8e\x2c\x80\x4a\x4d\xbd\x5c\x5b\x5b\xa2\x5c\x73\xc8\xed\x1d\xbc\xf1\xf0\xf8\xc2\x96\xd8\x34\xac\x6b\xa5\x53\x38\x2e\x6a\x90\x90\x45\xde\x09\x0b\x46\x6a\x1b\x75\x6c\xc1\x9c\x51\x35\x20\xb8\xcc\x38\x80\x64\x85\xd3\x8b\x95\x4f\x2f\x13\x9f\xa1\xe3\xa2\x37\x98\x34\xdd\x70\xfd\xf2\x06\x1f\xc8\x56\x52\xc5\xe9\x79\xae\x1a\xfb\x45\xa9\x22\xc7\x46\x1b\x34\x7b\x1b\xeb\x74\x1f\xbf\x83\xf1\x97\xaa\xbe\x8c\x84\x64\x51\xfc\xf2\xea\xcc\x07\xa6\x1a\xb0\x78\x2d\xbe\xf0\xac\xdf\xfb\x4b\x67\xfd\xde\x17\xfb\x16\xe4\x9c\x70\x2e\x1a\xa3\x4c\x3a\x51\xfa\xc4\xc7\xa7\x6c\x4a\x8f\x9e\xc6\x31\xb4\xa6\xae\x63\x69\xce\x20\x1f\x36\x7c\x3c\x71\x4c\x1c\x36\xed\x93\x68\xd6\xf5\xff\x3d\xd2\x03\xab\x93\x1e\x58\xfd\x99\x6c\x54\x79\x58\x7d\x33\xa1\x31\xbd\x53\xb2\x75\x42\x84\x17\xaf\x10\x29\x19\x97\x93\xc4\x05\x8b\xda\xf8\x75\x33\xf7\x96\x86\xc2\xf2\x99\xae\xbd\xba\x31\x2f\xe8\xcc\xef\x44\xc8\x70\x6a\x1c\x50\x58\xe3\x91\x09\x67\xa5\xeb\x50\xd5\x55\x3d\x12\x77\x69\xcb\x84\x4c\x28\x5a\x01\xb0\xe6\x96\x1f\xf7\x60\x91\x5c\xf3\xfe\x69\xfc\x7f\xf6\x8c\xbf\xa8\x6b\xb4\xe8\x93\x3a\x17\x90\x02\xd9\xc3\x3d\xca\x2b\x16\xb6\xda\x0d\x0e\x85\x2f\xa8\xf6\x7d\xa9\xbf\xba\x5a\xc5\x0d\x13\x2e\x0b\xb0\xf2\xcf\xd7\x2b\xbd\xef\xf2\x8a\x1a\x05\xa0\x86\x5a\xcc\xba\xfd\x6a\x65\xb0\x52\xad\xb6\xda\xcd\x62\x8a\xda\x1b\xae\x01\x74\x60\x3c\x63\x36\x59\x79\x6a\x3a\x96\x43\x73\x17\x4d\x6b\x02\xaf\xbc\x2d\x2e\x8b\x3b\x2f\x7f\x93\xd9\xae\x36\x7a\xde\x28\x82\xea\xc8\xe8\xce\xac\x64\xbd\xb7\x33\x5a\x35\x9b\xc3\xca\x01\x8d\x35\x98\x43\x0d\xd7\xa4\x72\x9c\xa3\xbe\x26\x21\x7c\xd7\x28\x0e\x58\x17\x36\xe3\xfb\xa0\xa7\xe8\x45\x50\x38\xc5\x0d\x43\x78\x9d\x83\xd2\x66\x27\x0c\x47\x2a\xb2\xe2\x3b\xa7\x8d\x00\xae\x02\x8f\x33\xd8\xe3\xe0\xb6\x7c\x4d\x76\xa3\x78\xde\x49\xd3\x8d\x53\xd4\x3b\x55\xda\xab\xf6\x93\x70\x16\x4f\x6f\xea\xbd\x29\xae\xba\x69\xbe\xcc\x15\xd3\xf3\xc0\x2c\xc8\x09\xd8\xf6\x0c\xee\xef\xa3\xbf\x74\xe2\x7d\x29\xa2\x58\xf9\xc4\xdb\x7b\x1e\x51\xec\xf1\x1f\x3f\x80\xbe\xc0\x29\xd4\x8b\x03\xf8\xab\xda\x85\x97\xdc\x8f\x47\xa2\xee\x76\x5a\xc2\xc5\xaa\xb9\x2b\xba\x12\xb3\xce\xf9\xfb\xd3\xd3\xdc\x02\xfa\x85\x37\xc4\x2f\x01\xe6\x42\xb8\x2f\x2a\x01\xe1\xf5\x78\x5a\x8f\x22\xc3\x9f\x9b\x64\xc9\x52\xfc\x63\x17\x79\x42\xcf\xb5\xf0\x97\x20\x2f\x08\xe2\x39\x14\x06\xe1\xdc\x19\x6d\x72\xc4\x08\x83\x28\xa2\x81\xdd\xf8\x8f\x7b\x07\x15\xd8\x07\xf5\xfd\x9e\x0b\xa5\xd5\x48\x0f\x3d\x80\x20\x51\x1f\xbc\xaa\xff\xe0\x55\xf9\x03\x96\x0b\x59\x17\x9e\x90\x55\xb8\xb5\xd1\xca\x10\x1d\xc0\x41\xb0\xeb\x0a\xf6\x82\x5d\x48\x8e\x3f\x65\x34\x9e\x04\x79\xb5\x87\xcf\xce\x81\xad\xcd\x03\x21\xc1\x9c\x88\x81\xf0\x90\x94\x18\x29\x0d\xb8\x38\x43\xe5\xc1\x72\xd4\x63\x5a\xdb\xce\x2c\x18\x06\x43\xbd\xc0\xeb\xd6\x7d\x41\xa4\xcc\x9f\xdf\x88\x8a\x36\x05\x47\xad\x02\xd8\x6c\x1e\xbc\x3e\x78\x3b\x44\x09\x11\x38\x22\xea\x4f\xdf\x60\x66\x4b\xb4\xf2\xa8\x61\x92\x1e\x84\x09\x91\x38\x52\x43\x81\x9a\x52\x25\x99\x98\x3f\x07\x62\x88\x7a\x7e\x1b\x24\x6d\xb7\xc3\x84\x50\x55\xb9\xbb\xe0\xd7\x1a\x53\xca\x6e\x49\x58\xfb\xe7\xea\xc0\x61\xb8\x0b\x76\xf7\xc5\x0f\xd4\x61\x71\x7a\xae\x4a\x62\x68\x98\xf9\xca\xe4\xb3\x4f\x14\x2f\xd2\x2a\xd3\x5b\x1a\xf7\x82\x7f\xdb\xec\xfe\xe3\x38\x49\x97\x82\xee\xea\xee\x06\x5f\x94\x86\x55\xfb\x83\x98\x2f\x31\xab\x2a\x09\xb6\x96\xe0\xd2\x65\x58\xa2\x71\x11\x1c\x24\x38\x1a\x76\xc6\x09\x1f\x47\x32\xe4\xa1\x44\x08\x65\x06\xf6\xfb\xa8\x56\x12\xaa\x53\x76\x68\xe4\xea\xf5\xba\x2e\x2b\x88\x53\x3e\x40\xf6\xbe\x20\xe8\x39\xd8\x14\x6f\x0b\x9f\x15\xaf\x1e\xde\x4e\xb0\x54\x3b\x8f\x16\xe1\x91\x40\xda\x29\x2d\x08\x3c\x77\xc2\x2b\x51\x0b\x2a\xbd\xa5\xfd\x86\x2f\x05\xb9\x12\x3e\xd0\xda\xef\xcf\xee\x94\x9a\x04\xb3\x9e\x4d\xcd\x83\x0c\x01\x78\x34\x25\xc8\x1b\xc7\x6a\x84\x93\x2a\x99\x44\x1e\x99\x24\x08\xa7\xa4\xbb\x9f\xfe\x90\xec\xa7\x3b\x3b\x28\x1a\xa4\x3e\x99\xa4\xd6\xce\xdf\xb0\x09\x0e\xd4\xff\xcc\xea\x09\xcc\xec\xa2\x45\x8a\xcb\x80\x0e\xdd\xea\x62\xf0\xe0\x52\xb8\x35\x65\x38\x2a\xe0\xc7\x1f\x8b\x0a\xa0\x2a\x21\x72\xbd\x06\x18\x24\x79\x50\x3e\x1b\x7a\x95\x80\x7c\xc0\x3e\x28\xe1\x1b\x1d\x2c\x41\xa0\x2b\x40\x7e\x51\x0b\x5f\x07\xb0\x1d\xcd\x06\x01\x77\x7f\xdb\x6f\x80\x1d\x4a\x93\xa5\x18\x7b\xb9\x19\x2c\xc2\x50\xfe\x44\x60\x0e\x8e\x0d\x1e\xc8\x90\xc6\x91\xc9\x8b\x94\xc7\xe5\xc4\x2b\x28\xf7\xe2\x5c\x1f\xb9\x20\xb0\x19\x0c\x0c\x33\x80\x03\xfb\x12\x9b\x51\x9e\xe3\x00\xaa\x65\xe9\x51\xc2\x53\x09\x39\x33\x60\xcd\x84\x77\xa8\xd0\xc7\x2d\x09\x5f\x6c\x4c\xa7\xb6\x19\x68\xc7\x4e\x98\x95\x81\x8b\x13\x66\xdd\x23\xec\xf4\x58\x17\x89\xc2\xc4\x97\x8e\x89\x2d\xae\x01\xe7\x43\x49\x8e\x4d\x3c\x4c\x69\xed\x30\xaf\xa4\x1b\x82\x49\x33\xe6\xee\xd2\x9a\x19\x99\x39\x5f\x59\x94\x6b\x97\x33\xcc\x07\x9f\x86\x05\xa2\xca\x95\xd1\x75\x4d\xe7\x1a\xf7\xc6\x61\xd8\xb4\x83\xbf\x68\x09\xf0\x64\x13\xcd\x6e\xce\xbd\xe8\x68\xf7\x56\x44\x7c\x3c\x7b\x79\x2a\x19\xd6\x4c\x57\x2c\xaf\x6c\x88\xf4\xf6\x9f\x10\xa9\xbe\xd0\xd8\x4c\x8a\x25\x68\x6c\x26\xfe\x92\x34\x8f\x35\xf4\xe7\x01\xa7\x79\xe1\xc4\xad\x3a\xa2\x64\xe8\xc0\x69\x29\x0e\x44\x8f\x1b\x92\x64\x3a\x58\xfb\x0b\xe0\x9e\xd4\x28\x72\x24\xa7\x1c\xf3\x49\x27\x0d\x2e\x20\x3e\xc1\x13\x37\x07\x45\x2a\xa2\x9a\x8a\xa8\x97\xd9\x16\xd6\xd1\x2d\xda\xa9\x28\xaa\x65\x72\xc6\xbf\x1f\x4a\x32\x4e\x78\x9a\xc4\x14\x75\xe2\xe4\xce\x5e\x19\xbc\x0d\xa7\x03\x09\x45\x09\x55\xe9\xec\xfd\x4d\x80\xf0\x9f\xe5\xc7\xd7\x17\xef\xaf\x8e\xfa\x81\xd7\xf6\x3b\xa1\x7d\xe7\xf2\x36\x5d\x6e\x3e\xb8\xca\xfa\xaa\xa5\xeb\x8e\x97\x91\x39\xac\x62\xb4\xd8\x2e\xe9\x3e\xbd\x16\x64\x10\x44\xb1\x0c\x70\x00\xd0\x9f\x01\x0e\xe6\x54\x46\x01\x0e\xc6\x52\xc4\xc1\x10\xbf\x17\xe4\xdb\xff\x35\x8e\xd9\xf8\x7e\x3d\x4f\x96\x29\x5d\xcb\x64\x39\x9e\x7d\xdb\x5a\x74\x0e\xa1\x6f\x06\x49\xda\x39\x1f\xd2\x89\x7e\x9e\x42\x0f\x3f\xd6\x39\x23\x52\x23\x4c\x9d\xb8\x7e\x3f\x5b\xd9\x40\xc3\x47\x65\xf8\x8f\x67\x2a\x34\x3e\x8a\x2f\xa9\x30\xc3\x1f\x9e\x51\x2d\xe8\xf8\x1a\x48\x3a\xbf\xf2\xbd\x0e\xec\xc5\xc3\xb6\xea\x54\x0c\xf0\x1b\xfc\x88\x85\xff\x04\x4c\x90\xbc\xa4\x7a\xb0\xd7\xed\x7c\x4d\x49\x62\x98\xd8\x7c\x11\xb3\x31\x93\x37\x1a\xc4\xc4\x44\x4f\x4e\x92\x39\x31\xae\x2d\xf4\x81\x72\x80\x74\xd2\x3b\xe0\x8e\xca\xbe\x7d\x12\x7a\xc9\xa4\x96\xcf\x98\x47\xdc\x47\x4d\x2e\x31\xae\xaf\xda\x1a\x99\xf0\x1c\x13\x68\xbd\x0e\x80\x28\x02\x63\xfa\x38\xcc\x07\x5a\x2b\xf5\xe4\x22\x4c\x69\x5e\x2c\xb4\x85\xf1\x2f\xaa\x7f\x0b\xde\x46\x54\x11\x41\xe9\xfd\x40\x0e\xcb\x47\x08\x35\x3d\x32\xb3\x57\xcf\x34\x8a\x53\x6c\x0f\x30\x37\xde\x7c\x9a\x00\xd2\x44\x0b\xdd\x01\x3a\x90\xc6\x2c\x6b\x7e\xdb\xa6\x7b\x3e\xd7\x30\x56\x94\x3a\x3a\x05\x25\x82\x20\x25\x5a\xb1\x07\xa3\x6b\x1d\x12\x7a\x42\x43\xb7\xcb\xdb\xdb\x98\xa6\x80\x3d\x69\x1e\x2d\x04\xac\xfe\xb1\x4e\x17\x14\x40\x5e\x4b\xfd\xc6\xb8\xc0\xfc\x4c\x9f\x52\xb0\x19\x5b\xda\xd0\x63\x04\xc8\x1d\x80\x00\x65\xe5\xbb\x59\xf1\xc2\xec\x20\x97\xf4\xdf\xef\x45\x47\xd2\x54\x86\xda\x78\x6b\x6d\x9b\xe0\x2f\xc2\xd2\x6b\x35\x8f\xf4\x48\x11\x82\xf6\x29\x26\x41\x90\x99\x2c\x62\x46\xbc\x8b\xf8\x53\x80\x7e\x24\x5d\x9b\x18\xbf\x5b\x4a\x41\xf0\x5a\xf8\x39\x08\xd8\x34\xa4\x83\xd7\x62\x20\x86\x3b\xc1\xcf\xf4\x29\x18\xb6\xdb\x1a\x2f\xd7\x55\x08\x2f\x91\x4b\xb3\xef\xee\x97\x59\x48\xb1\xb3\x82\xa3\xf5\x5a\xc3\x9d\x3a\x75\xbd\x4e\xf4\xe0\x4f\x9d\x9a\x90\xf5\x9a\x76\x52\x99\x2c\x2e\x45\xb2\x88\xee\x22\x4d\x27\x38\xec\x62\x7d\xd1\xf1\xf0\x56\x1c\xf5\x14\x89\x1d\xa4\xf8\x15\xdc\xc5\x28\x36\x77\xb3\x14\xdc\x05\xb4\x7e\xb7\x55\x73\xa1\x01\x49\xbc\xee\xf9\x41\xc8\xb5\x02\x50\xa8\xd3\x80\xf2\xc9\xc1\x57\x5c\xdb\xb8\x7f\x6d\xd3\xd5\x98\xf3\x28\xc5\x83\x5c\xa8\xa7\xea\x96\xd6\xfb\xcb\xf5\xab\x1a\x6d\xed\x14\x65\xe8\xaf\x57\x29\x0a\xf5\xfd\xf5\xea\xfc\x1b\x8f\xaa\x31\x43\x38\x46\x0d\x5e\xd8\x7f\x08\xeb\x8a\xa8\xe3\xd4\x9a\x8e\x07\x13\x7c\xd6\x14\x51\xfa\x8c\xd7\x07\x8e\xf0\x12\x82\x1e\x73\xe3\xd2\x98\xc4\x7a\xfb\xe3\x29\x89\xfd\x2b\xe5\x8c\xc4\x8a\x95\xb7\xd8\x34\x9c\x3a\x64\x4f\x04\x58\xd7\x53\xa3\x99\x0a\x97\xfa\xcf\x3d\x84\x06\x6f\x87\x28\x22\x4b\xad\xe0\x58\xfa\x68\x32\xad\x88\x2c\x73\x37\x5c\xb3\x01\x27\x64\x30\xc4\x0b\xf2\x6a\x7f\xf1\x83\xad\x7c\x7f\xb1\xb3\x83\x26\xda\xb5\x18\x6a\x5d\x18\xf4\xa7\xb9\x96\x51\x96\x4b\x36\x41\x61\xc1\x94\xf5\x41\x5d\x2d\xe6\x38\xc2\x13\x3c\xc6\x53\x9c\x60\x86\x67\x30\xc1\x06\xf2\xa6\xde\xa0\x91\xcc\x41\x88\x32\x07\xaa\x86\xfd\xb0\x67\xf8\x47\xed\xf4\x5f\x0c\x48\x11\x38\x50\xc2\xef\x6e\x71\xad\x83\x6a\xe4\x4a\x5d\xc1\xdd\x60\x87\x1b\xb1\x72\x83\x77\x4a\x51\x7d\xb6\x87\x5a\x72\xf0\x76\x08\xe1\xea\xde\xc1\x9e\x0b\x50\x98\x7a\x07\x31\x2d\x9d\xc2\xee\x10\x6a\x30\xb4\x80\x8d\x45\xbe\x08\x06\xc3\x21\x5e\xbe\x7d\x91\xd9\xc0\x5a\xc8\x37\x5a\x0d\x8c\x8e\xbf\x50\xb6\xa7\x71\xfd\x7a\xd4\xd7\xe4\x17\x35\xac\xfc\xe0\x57\xd1\xfb\x4d\x64\xf8\xe7\x97\x19\x65\x4a\xf2\x92\xeb\x85\xe9\xd5\xdc\x9a\xff\x85\x67\xa2\xf9\x1b\x8c\x31\xb6\x5e\x77\xd6\x6a\x33\xa9\xa9\xc4\xb9\x10\x14\x04\x74\xbd\xe5\xbf\xf9\x1b\xb7\xbc\x8d\x0f\xf1\x37\xba\x6f\x60\x36\x5f\xe5\xdd\x29\x2e\x1d\xe6\xae\x73\xfe\x76\xfb\x19\xb4\x2f\xf9\x90\x19\xe6\xcf\x12\x5b\x6e\xd5\xdb\xbc\x2b\xed\x6e\x2c\xa0\xf1\xe4\x2d\x11\xea\x66\xb6\xc5\x6d\x45\xae\xfb\x0c\x17\xe7\x73\xe3\x56\x73\x70\x47\x05\xe3\xb6\xab\xdd\xde\xca\x5c\xe5\xbc\xe0\x15\xf6\xf2\x7d\x83\x7f\xf9\x7b\x16\xb4\x92\x3e\xe8\xc5\xd6\x8e\x9a\x19\xaf\xcf\x0f\xa4\x9f\xbe\xcc\x34\x02\x43\xfb\x55\x7b\xb9\x7d\x23\xf0\x6f\xfa\xaf\x5f\x04\xfe\x49\x2b\x2b\x31\x2d\xe6\x9d\x12\x4f\x2e\x80\xa5\x29\xfb\xde\x84\x3d\x04\xa0\x83\xf6\x02\x44\x27\x13\xe0\x68\xa7\xea\xea\xc4\xa9\x08\x8d\xc8\x5f\xa3\x18\x16\x3b\x3b\x19\x5e\x25\xc6\xb8\x86\x70\x8d\x02\x12\xaa\x3a\xd0\x37\x01\xf8\xdb\x56\x87\x7a\x21\xad\x74\x4b\x17\x80\x7f\x02\x84\x3a\x8c\x33\x59\xf8\x08\x6f\x77\xf1\x76\x17\x41\xb2\xa4\x74\x11\xc9\xf1\x4c\xbf\xa6\xb5\x8f\x20\x32\x28\x1b\xab\x67\x21\xf7\x32\xd5\xab\x69\x94\xfc\x59\x60\x09\x1d\x1a\x63\xdc\x1a\x5c\x68\x7d\xe9\x2e\xa8\x78\x97\xcc\x2f\x5f\xa0\x72\xd9\x44\x62\x7a\xfd\xdf\x88\x64\x5e\xbe\x35\x15\x62\x8d\xcc\x4e\xb1\x3e\xa6\xb9\xee\x58\x74\xd4\x74\x83\x35\x6a\xa1\x2e\xf8\x0f\x05\x8f\x95\x16\xb7\x60\xff\xaa\x54\xbb\x1d\xba\xbf\xed\x45\xb4\x34\x28\x84\x99\xfd\xc2\x54\x67\x3f\x32\x3f\x9d\x79\xb8\xfc\x5d\x62\xbf\x33\x4d\xdb\xef\xcc\x4f\x7b\xab\xad\x7c\xc7\xd7\x6b\xb6\x5e\x27\x07\xb4\x84\x20\x01\x54\xc4\xb1\x69\xb6\xc7\xb0\xa9\xa8\x97\x64\xbd\x42\x49\x03\x37\x64\x62\xa4\x1a\xad\x5f\xad\xc8\x76\xd0\x1d\xd7\xb6\x8b\xf9\xf9\x1d\xd5\x77\xd2\x78\xf9\x94\x2b\xf7\xec\x5b\xa9\xad\x7c\x99\x52\x71\x29\x92\x07\x36\xa1\x13\xeb\x1b\x65\xdb\xa9\x7b\x67\x2f\xf3\xb5\x4d\x2e\x89\xce\x52\xc0\xdb\x6d\xbe\x5e\x6f\xef\x39\x88\x07\xbf\xb4\x92\x03\x97\xe8\x01\xa0\x5f\xcd\x8c\x9b\xaa\x1d\x31\x39\x35\xfd\x36\x54\xd5\x6e\xab\x67\x60\xca\xc6\x31\xa6\x08\xeb\x6f\xc2\x9f\x04\x96\x28\xd3\x89\x1e\x8b\x35\xa5\x0d\xa2\xb2\xa9\xc7\x1d\x19\xc5\xe9\xc4\x85\x4a\xb0\xbf\x6a\xf6\xa4\x15\x9c\x74\x31\xe7\xa4\x9b\x6b\xb9\x0a\x29\xb6\xf8\xce\x0e\xa6\xfc\x80\x9a\x20\xd2\x22\x23\xd2\x85\x7a\x2e\xa8\x1f\xa0\xa9\x0c\x99\x6c\xf8\x64\xbb\xab\xae\xea\x0d\x6f\x3d\x83\x50\xe4\x75\x44\xb8\x8e\x54\xd8\xe1\x33\xbd\xa8\x2d\xaf\xbb\x50\xf7\xca\x64\x44\x69\xe4\x46\x86\x17\x5d\xbf\xbf\xbc\xbc\xb8\xba\xb9\x1e\xf5\x3f\xf4\xcf\x6f\x46\x17\x97\x37\x27\x17\xe7\xd7\x84\x9a\x5d\x5d\xcc\x30\xba\xd1\x41\xb6\x41\x68\x71\x91\x6f\xc5\xf4\x4a\x65\x6f\xd3\x82\x5c\xe3\x0b\x28\x52\xd5\xf4\x9c\x4c\x62\x32\x01\xd1\x83\xe2\x71\xd9\xa3\x9b\xc4\x94\x3c\x21\x6d\x48\x4b\xec\x33\x44\x58\x2d\x9a\x23\x47\x4f\x34\xc7\x34\x27\x44\xea\xa8\x10\xd3\xd2\xc6\xdb\x6b\x12\x59\xea\xb2\x1a\x15\x24\xa5\xbc\x25\x6b\x7d\x82\xb6\x94\xb8\x64\x5a\x6b\xd5\x74\xb7\xd8\x7e\xbb\x1d\xea\x24\x95\x26\xdb\xf2\x5f\x1e\xcb\x4b\x85\x24\xd0\xef\x1b\x67\x1a\x25\x75\xa2\x90\xe2\xc1\xea\x9e\x3e\xf5\x82\x71\xb2\x54\xeb\x9f\x06\xf8\x8e\xca\xaa\xbf\xf0\x2a\x9a\x4c\xd2\x9e\xe0\x58\xef\xa7\xb4\xc7\x79\x96\x65\x43\x54\x4a\x4b\xb5\xac\x5d\x76\x70\x6a\x18\xd0\x41\x77\x08\x76\xd9\x6a\xdf\x82\x7f\x07\x3b\x34\x43\x98\x0e\xf6\x86\x5e\xbe\xe3\xb8\x70\x9d\xf6\x6a\xdd\x26\x44\xb4\xdb\x6e\xa5\x0e\x42\x66\xfd\x65\x8c\x22\x9c\x22\xcc\x3a\x8c\x3f\x24\xf7\xf4\x5a\x46\x92\x8d\x5f\xc7\xc9\xf8\x3e\x14\x2e\x12\x11\xa1\x5e\xb1\x40\x28\x10\xc2\xdb\x3a\xdb\xe4\x98\x3f\x83\x01\xf8\xbf\x31\x41\x62\x6d\xb0\xce\x94\xff\x9f\x73\x67\x7a\x09\x3e\x3f\xe5\x77\x8c\xd3\x6a\x22\x00\xd5\x1d\x36\x36\x99\x7b\xff\xf7\x24\x26\x1c\xf3\x86\xd8\x9c\xbc\xb7\x3a\x2f\x33\xc4\xd1\x01\x70\x77\x1f\x7a\x6f\x27\xdc\xc0\xe9\xa3\x96\xe8\xdc\x26\x89\x34\xb7\x73\xb0\x16\x10\xd1\x31\x31\x1d\x6f\x12\x25\x2f\xbb\x64\x90\xc5\x81\xae\xd7\x61\x17\x5f\x77\xee\x14\xef\x07\x67\x57\x5b\xec\x8d\xfe\x18\xa2\x61\x0a\x5f\x80\x3b\xca\x3c\x99\xd0\xf8\x8a\x4e\xf3\xac\x0d\x84\x90\x08\x31\xb2\xd2\xd3\xdb\x13\xd8\x6b\x91\xe7\x51\x43\x08\x43\x12\x4a\x1d\xd0\xc3\x11\x96\xd1\x5d\xaf\x74\x51\x29\x86\x91\x5b\x31\x73\x49\x22\x1f\xfe\xb4\xf5\x7c\x53\x2b\xe8\x64\x2f\xcd\xea\xda\x84\xca\xb0\x1d\x46\x2f\xb2\x7f\x3e\xf4\x96\x0e\x24\x8e\x7d\x75\xda\xc8\x8a\x7e\xe5\x45\xd1\x43\x7a\x3c\x1b\x73\x4b\xa2\x55\xf7\x99\xc0\xa6\x7c\x2e\xe0\x48\xb0\x23\xb4\xb7\x5a\x18\x23\xa4\x17\x6a\xc0\x9e\xf5\x7d\xca\xf2\x2f\xca\xd8\xb3\x10\x95\x14\xc0\xdb\x00\x33\xe4\x39\xc9\xce\xca\xe1\x0e\x05\xb5\xcd\x94\xd7\x79\x76\xba\x65\x90\x99\xe7\x48\x33\xa9\x60\x43\x96\x13\xe1\xcd\xd5\xb9\x10\x60\xb9\x5e\x0f\x86\x58\x0c\x73\x56\x60\x98\x56\xee\xf0\x6a\x60\x16\x07\x3a\x5f\x9e\x05\x66\x36\xe8\xcc\x86\xb3\x2e\x36\x5c\xbf\x5c\xfc\xa8\xba\x50\xc1\x9a\xe6\x36\xb4\x2b\x48\x12\x6f\xd5\x3d\x30\x10\xab\x46\xf2\x30\xee\x20\x28\x1b\x04\xfc\x1c\xf4\x0c\x9e\x1d\x9b\x54\x96\x9b\x04\x24\x9d\xa8\xa6\x5e\xe5\x04\x00\x2f\xc4\xef\x8d\x55\x36\x79\x6b\x2f\x4b\x96\x96\x8a\x27\x0c\x3f\x28\xf5\x92\x10\xff\xd1\x31\x9d\xf6\x2c\x33\x9a\x45\xa9\x89\xf2\xd5\x66\x8a\xc0\xec\xc3\x60\x87\xa3\x83\xb0\x3c\xd8\xd2\x48\x7d\x2c\x1c\xb5\x21\x67\x3c\xe4\x58\x38\x8c\x00\x53\xcc\xf8\x1a\x86\xd5\x59\xaa\x9d\x4c\x93\x6e\xad\x84\x82\xe8\xf9\x88\xd6\x40\xe5\x18\xe1\x7f\xfe\x9c\x94\xeb\xe3\x21\xd2\xfc\x52\x1d\x77\x8e\x99\x90\x4f\x25\x17\x88\x8d\x49\x46\x1b\x20\x1a\x01\x9f\xc8\xdc\x85\x34\x3e\x40\x65\xb5\x7d\x4b\x68\x09\xcc\xb1\x21\x4f\x91\x5f\xcc\xfc\xad\x36\x21\xe3\xde\x18\x8c\xd7\xc1\x44\x8d\xc3\x06\xf7\xe3\x87\xe7\x75\x10\x1a\xa9\x05\xaa\xf6\x48\x5f\x37\x72\x6e\xf6\x83\xa7\x7e\x28\x39\x80\x98\xcd\xa3\xb3\x0c\x7e\x2d\xcd\x17\xbb\x90\xb3\xa5\x3c\xe3\x1c\x3d\xd0\x7f\xf6\xdc\xf0\x6d\xcd\xae\x88\xb4\x45\xe4\xa0\x3a\x02\x5b\xe7\x70\x03\xb8\x66\x79\xe5\x60\x02\x9f\x5e\x3a\x81\x76\xe2\xee\xe9\x93\x3f\x5d\xf4\x39\x6d\x4d\xa1\x33\xb2\x06\x25\xd4\xc4\x8c\x3d\x3f\x7f\x15\x7b\x75\xbb\x4d\x07\xb6\x4f\xc3\x72\x56\xd7\xbb\x67\xd9\xb1\xcd\x03\xfd\x37\xf1\xe3\xdb\x97\x6d\x4d\x8f\x06\x27\x79\xc8\x5d\xce\x2b\x14\xab\xd0\xdb\x37\x7f\xf6\xa2\x89\x6e\x98\xc0\xba\x43\xd7\x4b\xdb\x97\x93\x57\xe5\xa2\x2a\x20\x41\xb7\x3a\xd6\x0b\x05\x45\xed\x8d\xd6\xca\xa5\x15\xb2\xe5\xfa\xca\xb2\x12\x8a\x25\x63\x83\x8b\xcb\x21\xab\x16\xcc\x47\xcf\x26\xe4\x2e\x20\x54\xe7\x12\x92\xf0\x44\x84\x2c\x0b\x8b\x33\x09\x43\x68\xb0\xc2\x93\xc2\xd5\x5b\x8d\x30\x4f\x8a\xe4\x46\xeb\xec\xe0\x5b\x79\xc4\x0d\x58\xcd\xf3\xa4\x37\xbe\x8c\x02\xaf\xbc\xfe\x58\xd8\x32\xb7\x68\x2e\x84\xb9\xb4\xc0\xad\xd2\xda\x3a\x9c\x61\xcf\x6b\xd6\xbb\xa5\xcb\xca\xc1\xf3\x04\x96\x67\x54\x21\x1c\xb9\x61\xc3\x6f\x38\x48\xbc\xec\xc7\x95\x7d\xc2\x73\x98\xd8\xa6\x78\xcf\x02\x5e\x1c\xef\x08\x3a\xa5\x42\xe4\xb1\xb2\x76\x28\x0c\x20\xbd\x5c\x84\x0f\x88\x51\x6c\x1c\x32\x3c\x70\x09\x8d\x07\xc3\x9e\xc4\x4b\x1e\x0a\x94\x6f\xa9\xa1\xda\x53\x7e\xee\xe5\xda\xac\x49\xc9\x17\x76\x33\x69\xec\x66\xd4\x6e\x87\x7d\xa9\xba\x90\x54\x3b\x1b\xe1\x81\xeb\x20\xb8\x96\xaa\xae\xa9\x1e\xf4\x79\x01\x8c\xf5\xb3\xb7\xc3\x20\xde\xdd\xed\xcc\x76\x1b\x30\x60\x75\x28\x7a\xbb\x1d\x58\x63\x4d\xa0\x09\xed\x69\x41\x0f\xa4\xbd\xfc\x18\x9d\x58\x3e\xf6\x6b\x3f\x38\x2c\x81\x60\x75\x2f\x8a\xbd\xa7\xee\xfa\x5e\x84\x43\x31\x39\x9e\x76\xc3\xcc\xd5\x6c\xf4\xc0\xcf\x23\x67\x5f\xc0\x9e\x4c\x17\xd1\x98\x2a\x79\x96\x76\x46\xf4\xf3\x82\x0a\xa6\xee\xb7\x51\x7c\x16\x8d\x45\x92\x92\xbe\xce\x18\x7d\xc8\xc9\x8a\x4d\x7b\x75\x57\x3f\x5f\xd1\x6b\x47\x7e\x62\x15\x24\xa1\x30\x26\x77\xa1\x75\xc0\xfa\xdf\x57\x08\x65\x58\x1b\x88\xeb\xaa\x04\x31\x50\xdb\xf6\x59\x43\xde\x31\xbd\xa2\x94\x8f\x69\x5a\xcd\x31\x6b\x5c\xc3\x5f\xa9\xbb\x58\x18\xf9\x36\x7d\xcc\x4b\xde\x49\xbc\xe8\x9d\xd4\x4b\x00\x3e\x79\x46\x4c\x39\x60\x97\x01\x6a\xb7\x4d\x39\xf3\x1b\x4f\x48\x8a\x27\x2e\x67\x59\xbb\x1d\x2e\xea\x76\xe1\xa4\x41\x51\x93\xa7\xd1\xcc\x50\xee\x5c\x92\x21\x3c\x6b\xb7\xc3\x79\x0d\xdf\x9e\x95\x0f\x40\xa9\x98\x93\xd7\x3c\x1d\x74\x87\x5e\x46\x6a\xf0\x91\x57\x77\x1c\x9a\x21\xbc\x68\xb7\xe7\x07\x35\x9d\x98\x87\x0b\x70\x69\xe9\x2d\xd6\xeb\xf9\x7a\x7d\x6f\x20\x4a\x66\x78\x82\x17\x78\x9e\x43\xc5\xd4\xd8\xa5\xa2\xc1\xdb\xe1\xc1\x8d\x08\x23\x1c\x61\xf5\x37\x9e\x82\xd7\x89\xe7\xaa\xba\x44\x90\xc7\xcb\x7b\x12\x21\xf5\x45\x92\x5f\x93\xdd\x5f\xf9\xd5\x79\x8a\x2a\x29\xb9\x3d\x9d\x55\x55\xce\xd4\x11\x2d\x5e\xe0\xae\x33\xf5\xa0\x62\xc0\x45\xae\xb6\xc9\x32\xbf\x0f\x38\xc2\x53\x84\x06\x3f\x43\x7a\x12\x03\x60\x29\x14\x6d\x0a\x11\x3d\x95\x48\xb3\x2e\x2a\xca\xd1\x63\x86\xf5\x3a\xd6\x7f\xa3\x6a\x4e\x68\x78\x26\xb0\xcc\x3f\x41\x59\x51\x49\xe8\x7f\x70\x2e\xf2\xc0\xd9\xb2\x8d\x06\x57\x2d\x2b\x28\xc3\xb3\x28\x9d\x35\x75\xb8\x84\xd9\x92\xe1\x38\xb9\xdb\xd8\xd1\xd3\x72\x47\xe7\xcb\x72\x47\xf3\x8d\x5a\xee\x9f\x3a\x6b\x43\x41\x38\x6a\xb7\xc5\xe0\x8d\x18\xba\xb3\xd8\x78\xff\x97\xb2\xbb\x3a\x9a\x66\x83\x3f\xc5\x90\x70\xcc\x06\x6f\x87\x84\x0f\x3e\x0d\x31\x53\x9f\xab\x95\x61\x19\x0e\xfe\x58\x52\xf1\xb4\xbb\x00\xcd\x64\xb0\xb1\xf7\xef\xca\xbd\x17\x34\x9a\x24\x3c\x2e\x2f\xa8\x66\x5f\x75\xdb\x53\xf5\x64\xbd\xa6\x59\xcd\xec\x17\xf4\xf6\xa9\xa6\x96\x25\xbf\x4d\x96\x7c\x52\xdf\xa9\x88\x36\x2f\xa5\x67\x9f\x5f\xf2\x98\xa6\xe9\x5f\x65\xb0\xaf\x1c\xa3\x45\x99\xcb\xbf\xbf\x71\xb2\xae\xcb\x93\x15\xec\xd2\x68\x3c\xdb\x65\x7c\xc3\x77\xbf\xd7\x0d\x06\xbe\x05\x20\x93\x5d\x00\x4c\xd9\xd8\xec\x45\xb5\x59\x9e\x88\x79\x14\xb3\x3f\xe9\x4b\xba\x7d\x58\xfd\xfe\x8e\xca\x5d\x23\xbe\xef\x3e\x44\x22\xe8\xcd\x3c\x45\xeb\x87\x28\x57\xc3\xd4\x4e\xb2\x86\x0a\xab\xa3\x67\x38\x83\xbc\x64\x7d\x5a\x97\x84\x0e\x0a\x10\x46\xe6\xa1\x4d\xe7\xe2\x75\x76\x01\x7a\x03\xcc\xa0\x8f\xe6\xe2\xd1\xb0\x97\x68\xc7\xd7\x61\xe7\xdc\x5e\x90\x86\x3c\x9e\x90\xac\x3c\xee\x00\x87\x75\x81\x15\x61\xa0\xae\xcf\x01\xea\xd5\x0c\x05\xb2\x79\x70\x10\x2b\x1f\x78\xc8\xfd\xcb\x37\x16\x7a\x1a\xa3\x34\xa5\x42\xee\x5a\x6f\xdf\x5d\x27\x71\xec\xce\xe0\xfa\xb4\x6b\x79\x69\xd0\xfb\x2c\xf0\x94\x5b\xb9\xa5\x75\xc8\x3b\xd3\x06\x04\x11\xb3\x68\xbf\x97\x16\x0d\x18\xc2\xfd\x73\x97\x27\xad\xce\x4e\xc9\x40\x37\x64\xf0\xba\x93\xdb\xdf\x6f\x12\x0d\x3e\x52\x00\x2e\xd2\xf1\x0a\x4b\x16\xcb\x13\xae\xef\x7b\x29\x39\xe4\xc5\xb8\x6f\xc8\x58\x0d\x5f\xb9\x2f\xc6\x55\xc1\xb1\xae\xd4\x32\x95\xc9\xdc\x38\xc8\xd7\xbc\x2f\x34\xf0\x8e\xc9\xd4\x82\x38\x16\x5e\x9c\xb1\x34\xa5\xee\x55\x5d\xcb\x8a\x4c\xed\x7b\x3d\xeb\x95\x97\x5e\xb6\x92\xa4\xa3\x65\xb5\xfd\xb0\xee\xc6\xc7\x78\xcc\xb8\x49\xbc\x7d\x1b\x27\xe3\xfb\xb4\x05\x6e\x2a\x61\x60\x6f\xc1\x77\x10\xe2\x03\x8f\x8c\x9e\x72\x62\x9f\xa8\xae\x32\x7e\x17\x8e\x20\x84\x08\x8a\xc0\x27\xb1\xfd\x6d\x0b\x3c\xf2\x3c\xa9\x2a\x27\xdd\x7d\xfe\x43\xdf\x61\x91\xf2\x9d\x1d\x14\x76\x71\x9f\x0f\xf8\x10\x41\x62\xe1\x0c\x85\x12\xe5\xc3\x57\x92\xbc\x19\xc9\x69\xf4\x27\x44\xff\xab\x47\x40\xa6\x13\xe3\x5f\x6a\x50\x2a\x51\xad\xc9\xb6\xb0\xea\xd6\x01\x2a\x25\x2b\x23\x62\xae\x8c\x52\x17\x14\xeb\x9f\x04\x06\x9d\xae\x49\xb3\x52\xff\x69\x27\xe1\xa4\xf0\x55\xaa\xe6\xb4\xf0\xe1\x86\xfb\xf8\x4b\xf1\x75\x1e\xf2\x9c\x46\xcd\xa8\x3a\xad\xe2\x55\x56\xe8\x4b\x35\x7c\x64\x41\x91\x44\x1d\xaa\x8f\xd9\x1b\x8d\x2d\x9a\x6d\x65\x23\x26\xb9\xff\xd4\xaa\x33\x37\xdc\xa9\x3c\x40\x73\x75\x37\xb6\x78\xaa\x4d\xd4\xbc\xb3\x83\xb9\x86\xb7\x86\x2e\xd7\x9d\xba\x7e\xaf\x06\x74\xf8\x0c\x6c\xd2\xb3\x23\x19\x55\x30\x94\x5a\xb9\x59\xba\x98\xc4\xc9\x0c\x9a\x17\x46\xc4\xcc\x88\x6a\xf7\xdf\xce\x8e\x8b\xf6\x72\xee\x6d\x2f\x86\x67\xaa\x99\xe3\x02\x44\xd3\xb3\x40\x4a\xde\xd8\x47\x55\xfc\xa4\x56\x4d\x5b\x9a\x42\x8a\x69\xc8\xeb\x2a\x2d\x67\x02\x07\x7e\x65\x11\xd9\x7c\x55\x10\x3f\x08\xf9\x06\xde\x67\xb0\xe0\x38\x42\x3d\x61\x62\x2d\x28\xc2\x9e\x22\xc9\x80\xf9\x59\x68\x2d\xd1\x2b\x30\x83\x6c\x1f\x12\xa4\xa7\x2e\x41\x7a\x02\x79\x08\x89\x13\xa5\x12\x84\x21\x05\x2a\x84\x63\x36\xb2\xd8\x9d\x9d\x2c\x77\xcf\xa9\xf0\xe6\x9d\x1d\xb7\xdc\x79\x08\x4a\x9d\x1b\x43\x49\x9f\xd4\xf2\xf0\xc9\xbc\x53\xc8\xe6\x82\xaa\x28\x6f\x1d\xac\xb6\x23\x54\x03\xbe\x6d\x53\x55\xf8\x95\xe8\x31\x01\xee\x36\xc0\xe1\xbe\x6c\x07\x14\xcf\xbb\x01\x1d\xd6\xe6\xa8\xdf\x12\xad\x1c\xb2\x09\x2c\x24\x58\x07\xe1\x9b\x4b\x52\x4a\x2e\x78\x08\x16\xd3\x65\x4c\xc1\x75\x22\x52\x37\x68\x56\x30\xcf\xea\xed\xd0\x0b\x76\x12\x9c\xa2\xf5\xba\xe9\xa5\x33\xdf\x68\xc5\x85\xbb\x3a\x86\x9c\xa8\xab\xa1\xdd\x86\xe0\xfd\xa3\xa4\x3d\xf7\x47\x87\xa5\x7a\x18\xc6\xac\x7b\x50\x37\xe8\xa5\x33\x63\x54\xa6\x5b\x58\xcf\xab\x03\x4e\x73\x11\xd9\x84\x43\x16\xc4\x8f\x5e\x48\x3b\x9c\x3e\x1a\x10\xfc\xe8\x16\xb6\x09\x66\xf9\x57\x85\xd2\x28\xeb\xd9\x8d\x3e\x7a\x7e\x6f\x42\xac\x4f\xa1\x18\x82\x9b\x2a\xcc\x3a\xec\xa4\x5c\x97\x0a\xe7\x9e\x29\x55\x60\xb1\x90\xe7\xa0\x88\xe9\x4b\x77\x02\x87\xde\xbb\xb5\xd0\xdf\x68\xdc\xfe\xd1\x46\xf6\x53\xa5\x15\x77\xd4\x15\xa8\x25\xdf\x9b\xdc\xd1\x08\x23\xbc\xb0\xc8\x56\x89\xd5\x0b\x76\x28\x2a\x10\x9a\xc3\xe8\xfc\xcc\x43\xa6\x97\x13\x85\x45\x10\xaf\xb7\x02\x52\xc9\x25\x35\xc7\xb8\xcb\xae\xae\xf7\xe3\x08\x52\x2e\x2b\x32\x7c\x93\x88\x73\xab\xa8\xaa\x53\x6a\x63\x97\x7a\x89\x83\xbc\x63\xa2\xa8\x7a\x3d\x97\xb9\x07\xd2\x3a\x73\xd8\x88\x16\x37\x80\xef\xbc\xd2\x1c\x45\xff\xec\x42\x8a\x66\x6d\xe6\x95\x9e\x5e\x4c\x64\xde\xe4\xbe\xf8\x44\xf7\xf7\x90\x3f\x91\x14\x27\xb6\xab\x91\x4f\x23\xae\x62\x14\x72\xcc\xf0\x05\x0f\x05\x4e\x10\x02\x8c\x79\x0d\xa1\x0b\x5e\x05\x39\x90\x59\x9c\xdb\x8f\x96\x07\x69\x6f\x59\x58\xc1\xb8\xc2\xad\xc6\x64\xa3\x90\x0b\xac\x2b\x2e\xae\xe5\xd8\x56\x32\xd6\xa0\x94\xcf\x65\x36\x04\x78\xaf\x4a\xf5\x01\xbe\x06\xe7\x2c\x0d\x10\x50\x68\x20\xb5\x09\x86\xd4\x18\xda\x6d\x93\x25\xc7\x65\xc6\xb9\x38\x3f\xfd\x34\x7a\x7b\x7a\x72\x76\xd6\xbf\x1a\x1d\x5d\x9c\x5d\x5e\x9c\xf7\xcf\x6f\xae\xdb\xed\x70\xa6\xdd\xa1\x45\x98\x22\x7b\xa4\x6c\x43\x15\xf9\xdf\x86\xf6\x56\x3a\x62\x67\x2c\x42\xfb\x44\xf5\x60\xd2\x6e\x7b\x60\xa0\x84\x90\x89\x0e\xd3\x5b\xe9\x98\x9d\x89\x25\xf6\xd6\x8c\x4c\x9c\xf2\x16\x6e\x5a\x52\x84\xf3\x90\x23\x6c\x6a\xc3\xa9\x06\x05\xb8\x15\x21\xc3\x4b\x0c\xaf\xd2\xf5\x9a\x5b\x8f\x9d\xb0\x8b\x1f\x3b\x0b\xc1\x1e\x22\x09\xc8\x2d\xc7\x8a\x8d\xe4\x54\x6e\x04\xba\x99\x1b\xd2\x3b\xa9\xea\x51\x15\x78\xdb\xad\x5c\xc9\xef\xaa\x12\xad\x30\x57\xe3\x9f\x86\x68\xf3\x05\x06\x4e\x94\x18\xcf\x10\x9e\xd5\x51\xf2\x99\x75\x77\x28\x5b\x52\x1a\xee\x3b\x25\xb8\xd6\xa6\x52\x46\x62\xb0\x57\x6b\xeb\xc2\x94\xdf\x25\xad\x6c\x1d\xec\x94\x04\x96\x9a\xca\xb4\x2c\x21\x10\x16\xc6\x72\x79\xc3\xc9\x4a\x33\xe9\x5e\x6d\x48\x86\x97\xfa\xd8\x63\x3d\xf7\xea\x70\x2b\x72\x9c\x5c\xe0\xc8\xf0\x11\x27\x6f\xc2\x15\x9b\xf4\x82\xf1\x6c\xfa\xcb\xf8\xdd\x7f\x7d\x17\x60\xb8\x2f\xf5\xfe\xb5\x0a\xb4\xc7\x54\x1a\xf4\x06\x41\x7b\x62\xc2\x48\x87\x38\x80\xfb\x00\xe8\x15\x83\xde\x60\xb0\xf7\x3d\xde\x1b\x0e\x31\x24\xdc\x7c\x88\xe2\xa0\x37\x8d\xe2\x94\x66\xff\xc2\x73\x2a\xa3\xde\x2a\xe7\x09\xbd\x60\x11\x8d\xef\xa3\x3b\x9a\x7e\x6b\x90\x60\x77\x2d\x9d\xa5\xdf\x5a\x54\x9a\x98\xdd\x7e\x6b\x65\x96\x34\x87\x8a\xed\xcc\x6e\xd3\x20\xcb\x10\x3e\x73\xfd\x3d\xff\xf8\xdb\x9f\xa7\xd7\x27\x27\xf5\xfd\xb5\xa8\xb6\x01\x0e\x6e\xe8\x67\xf9\x06\x30\x8c\x70\xf0\x6f\x0b\xcc\x1c\xe0\xa0\x1d\x41\x2e\xe5\xca\x80\xbe\xc7\xfa\xb6\x37\x18\xbc\xfa\x2f\xec\xed\x19\x3c\xf0\xc0\x91\xb4\x61\x74\x88\x6b\xca\x78\xa0\x49\xa6\x94\xb1\xa2\xae\xaa\x0d\xb1\x29\xb4\xf3\x1d\xee\xe2\x41\x90\x63\xf1\x06\xc3\xa6\x6f\xfe\x03\xab\xd2\x7b\x78\x30\x1c\xe2\xc1\x60\xef\x3b\xfc\x3d\xfc\x11\xfc\xdb\xe8\xf2\xfd\x21\x0e\xf3\xaa\x35\x16\x74\xa0\xca\xbe\xfa\x0e\x7f\xa7\x3e\x57\xff\xe1\x00\x34\x8b\x14\x9c\x37\x7b\x83\x61\xd6\xd0\xde\xab\x7f\xaa\xbd\xca\xa3\x3d\xfc\x6a\x98\xd9\x59\xfb\x47\x68\x0a\x74\x75\x8e\x9e\xae\x1c\x3d\x4d\xa7\x87\xa7\xff\xf1\xee\x38\xae\xa5\xa7\x2a\xd5\xe3\xc1\xab\x57\xd8\x2a\x13\x86\x18\x3a\xf8\x4f\x75\x59\xb7\xe2\xfa\x7c\xc9\x49\xb0\x2b\x93\xc5\x6e\x4c\x1f\x68\x1c\xe0\xdf\x39\xd1\xca\x2f\x7c\xbc\xd1\x45\xca\x05\xdb\x8d\x3c\x5e\x91\xe7\xf5\x34\x50\xfd\xc6\xd7\x41\xc3\xe2\x57\xa0\x03\x5b\xde\x05\x52\xd0\x29\x70\xf0\x39\x0f\x57\xc6\x89\xa3\xb7\x52\x1d\xb1\xca\x31\xac\x2b\xed\xad\xa0\xb2\x9e\xc0\x8c\xcb\xc4\x5a\xe1\x8c\x35\xfc\x77\xae\x6d\xe4\x97\x05\x23\xb8\xcd\x33\xe9\x2c\xe4\x59\x56\xcc\x37\x2b\xe8\xb4\xc7\xdc\x97\x79\x5d\xf5\x36\x75\xd3\x9f\x8c\x1a\xdc\xeb\x3a\x07\x8d\x5a\x87\x58\xf6\xd7\xf3\x36\x30\x0c\x0e\xc5\x65\x2f\x52\x91\x47\x44\x1d\x58\xe1\x3b\x07\x75\xc1\x15\x34\x0e\x2c\x00\xe7\xa8\x52\x10\x20\x5a\x33\x40\xff\xa6\x1d\x41\x93\x05\xe5\x3a\x9e\xd3\x1f\x4f\xa1\xb6\xdc\x1f\xa6\xd2\x29\x4f\x96\xf3\x69\x04\xa4\x39\x4b\x20\x38\xf1\xbc\x05\x5a\x05\xef\x16\x81\x39\x96\x03\xd6\xb9\xf8\x78\xde\xbf\x1a\xe2\xc4\xe8\x3a\x37\x66\x15\x2c\xa4\x6d\x33\xa7\x59\x4b\x92\x0a\x9d\xaa\x23\x18\x92\x79\x55\x5c\xe3\xe8\x81\x0b\x09\x03\x6b\xc9\x35\x8d\xa9\x12\x24\x42\x8a\x7a\x54\x87\xe8\xdb\x0c\x30\xa8\x98\xfe\x25\x1f\x53\x50\x4e\x71\x68\xf3\xc3\x34\x26\x58\x33\x99\x7a\x2f\x3c\xf7\xb3\x8a\x93\x97\xa0\x53\x07\x1a\xd3\x14\x49\xee\x92\xb6\x78\xe9\x15\x8f\x79\x86\x30\x0d\x83\x2a\x7f\x50\xcc\xe4\x5b\x90\xf5\xd5\x51\x43\x3f\x2f\x12\x21\x53\xc5\x84\xeb\x4b\x2a\x36\x02\x20\x2d\x43\x5c\x14\x75\x82\x65\x4a\xb7\xd4\x44\x8e\x65\xd0\x32\xa6\x29\x70\xb2\xa0\x97\xc6\x6c\x1c\x52\xec\xf9\xf5\xaf\x28\x5f\xce\xa9\x00\x4f\xea\xed\x6e\xbd\x9b\xff\x96\xec\xd8\x0f\x14\x97\x6a\xac\x55\x03\xaf\x9c\x01\x76\xcc\x0b\xeb\xcd\x3f\xd9\x58\xf3\x17\xd5\xf9\x6c\x6d\xf3\x2f\xa9\x6d\xfe\x5c\x6d\x0b\x4a\xef\xbf\xa8\x7f\xf6\x83\x8d\xb5\xa6\x54\x7e\x51\xa5\xa6\xfc\xc6\x3a\x9d\x0f\xcd\x8b\x6b\x75\x5f\x64\x80\x9a\xd0\x4c\xb9\x8e\x1e\x0b\xc4\xab\xe3\xef\x6f\xa3\x5b\x75\x98\xd5\x7c\xba\x94\x2c\xf6\x88\x1c\x52\x8c\x94\x28\x5a\x1f\x6e\x05\xaa\xa6\x76\xb0\x64\x8a\xa9\x9b\x4d\x32\xc3\xd4\x23\xa7\xc2\x9e\xb5\xd6\x85\x59\x48\x51\xcb\xe8\x6a\x00\x81\x2e\xcf\x5b\xa5\x78\xa6\xa1\x71\x42\x61\xd1\x09\x05\x4a\x22\x34\x9f\x05\x3f\xdc\x90\xe1\xc4\x9a\x7e\x73\x16\xe8\x55\x62\x53\xe0\xc3\xc9\xe1\x70\x9d\x96\x5c\x2f\xcb\x24\x50\x9c\x21\xaf\x38\x32\x51\x86\x7b\x78\xf9\x8c\xf9\x68\x14\x9b\x80\xb1\xf4\x03\x15\x90\x2c\xcc\x65\x88\xd5\xc7\x13\x9d\xf4\xf9\x24\xcf\x1b\x3b\x8d\x23\xa9\xca\x4f\x6c\x71\x9b\x87\xcb\x38\x43\xfa\x89\x9f\x47\x13\x9a\x8e\x05\x5b\xc8\x44\xa4\xc5\x17\x8f\x91\x1c\xcf\x18\xbf\x2b\x3e\x9d\xb3\xcf\x8c\xa7\xe5\x2a\x16\xa5\x27\xe3\x59\xc4\xf8\x47\x55\x01\x2d\x57\x0b\xaf\x4a\xcf\x64\x74\x57\x79\x50\x2a\x32\x8d\xd5\x23\x9b\xa4\x1c\x7c\x83\xac\xb4\x03\x6b\xe1\x79\xa3\x76\xc6\x09\xb7\xce\xff\xb9\x67\xaa\xf7\x30\x5f\x3d\x5c\x9a\x5f\x53\x4b\x66\x6f\x7d\x95\x93\x0e\x52\x84\x9c\xa8\xcb\x69\x14\xb3\x3f\x4b\xa9\x31\xbc\x9e\xae\xc9\x7f\x65\x58\x74\x96\xfc\x65\xc5\xff\x97\x2e\xae\xae\x76\xf5\x65\xfd\xfb\xe5\x68\x16\xa5\x6f\xe2\xe8\x2e\xfc\x2f\xa4\x3f\x72\xc9\x4d\x2a\xbb\xc0\xff\x4c\x4f\x93\x09\x5b\xd5\x33\x68\xec\x03\x66\x3a\x21\x0d\xb9\xa8\x3b\xd7\xbc\xe0\x40\xd5\xc4\xb1\x4d\x99\x16\x22\x1b\x2a\xad\x77\xa7\xf7\xa2\xf5\xe0\xa7\x2e\x8f\x26\x8a\xed\x1c\xc1\xd2\xab\x77\xce\xa9\xcb\x43\xcc\x86\xcc\x92\x6a\x38\xd7\xd0\x9d\x63\x97\x21\xf4\xd9\x79\xd8\x83\x79\x48\xa9\xdc\xf4\x65\x61\x71\xf6\x6a\x5a\xa2\xcd\x39\xe2\x6c\x43\xaf\x6a\x1b\x2a\x7e\x58\x68\xe7\x95\x6e\xa7\x30\x37\xcf\xb6\xf2\xbd\x6d\xa5\xf1\xb3\x42\x1b\xdf\xab\xd2\xf6\xe3\x9a\xd5\x0f\xbd\xd2\x6d\x8a\xec\x32\x8f\xee\xa8\xbc\x10\x1a\xcd\xff\xe2\x91\x9f\x45\xb5\xfe\x5f\xea\xdb\x01\x1d\x9a\x94\x85\x03\x3a\x2c\xfb\xbe\x2c\xe3\x18\xfc\x53\xca\xf5\x5d\xd7\x7b\x75\x56\xeb\x03\xf0\x3a\x2a\x75\x1d\x53\xc6\x27\x27\x96\xa7\xed\x15\x61\x14\x0b\x69\x5a\xf7\x2d\x4b\xdf\x77\x52\xee\x06\x9b\x81\x24\x36\xe7\x69\x56\x6d\xe6\x55\x49\x73\x94\x03\x55\xf9\x0d\x09\x97\xf8\x55\x94\x1b\xca\x7d\x4f\x07\x72\x58\xd2\x26\xbb\xe8\x26\x01\x01\xfb\x0d\x5d\xf8\xae\x12\x8e\x9b\x1b\xa2\xfd\x4e\xf0\xfd\xbc\x29\x5a\x6e\xca\x28\xae\x59\xb9\x13\xb9\xcf\xe9\x40\x14\xdf\x44\xb6\x7b\x51\x96\x71\xc2\x9b\xfb\x57\x24\x8e\xbf\x38\x49\x15\x5b\xdc\xe6\x89\x9a\x45\xe9\x09\x77\x3d\x29\x92\xd5\xd7\xf5\xa4\xdd\xe6\x45\x1d\xe0\x76\xb7\xe5\xb5\xea\x60\x22\xb0\xe8\x3c\xaa\x46\x8f\xd5\xf1\x56\x5e\xa0\x7c\x71\x6a\x76\x52\x18\xc0\x99\x08\xd9\x52\x61\xa5\xdc\xe1\xc4\xda\xed\x50\x3f\xab\xdd\x48\x58\xad\x1e\x11\xaa\x69\x25\xe4\x54\x5a\x2e\x1a\x4e\x8b\x34\x64\x1b\xc5\xbe\x05\x35\xb7\x89\x1c\x74\x7b\x50\xaf\xba\x7a\x15\xab\xcd\x93\x55\xd8\x29\xaa\xa9\xfe\x55\x5e\x3d\x6c\xd5\x69\x22\xfa\xd1\x78\x76\xc2\x6b\xfa\xe8\x96\x04\x37\x92\xaf\x16\x1a\x9a\x28\x98\x96\x29\xd8\xd6\x18\x6d\x31\xbe\x25\x88\x37\x2a\xc3\x3e\x7a\x02\x27\x48\x67\xe2\x8a\xd0\x7a\x1d\x6a\x4f\x8f\x08\xe1\x64\x10\x0d\x7f\xec\xb6\xdb\x80\x77\x5c\xa6\x72\xb5\xbc\x26\xaa\xa8\x36\xcf\x7a\xe3\xea\x2a\xf9\x24\x80\x79\xb0\x67\xdb\xc6\x2a\x54\xf1\x52\x7b\x0d\x38\x81\x50\x76\x93\x01\x16\x64\x25\xea\x23\xd5\x6a\x43\x6b\xa1\x27\x9b\x3a\xe2\xf7\x03\x5c\x55\xe0\x50\x2e\x27\xca\xf6\x7b\x54\x37\x01\xb1\xfb\x32\xc8\x43\x5a\xd4\xe2\x48\xc5\xda\x15\x79\x0f\x86\x08\x4b\x70\x82\xc8\xbb\xf6\xb2\xf6\xf2\xba\x0b\x54\xe0\x62\x3c\x6c\xad\x76\x14\x47\x05\x61\xb3\xa9\xd6\x82\x48\xba\x71\x86\x8b\xc2\xeb\xc6\xb9\x6e\x68\xba\x34\xeb\x85\x0a\x2b\x3d\x7f\xa6\xcb\x69\x29\xd0\x65\x55\x10\xa3\x65\xa9\x7f\x2d\x8f\x3f\x68\x42\xf7\x5c\x46\x04\x2a\x37\x1d\x82\x01\x61\xf1\x74\x93\x78\x79\xea\xaa\x23\x6c\x1e\x5a\xf1\xc0\x0e\x03\xd3\x2f\xbd\x37\x80\x7b\x7e\xb4\xd7\x88\x22\x8f\x68\x26\x2d\x7b\xef\x08\x90\x22\x23\x69\x79\x61\x4d\x3d\xc5\xd9\xaa\xb0\x2b\x57\x11\xae\xf3\x69\x38\xe8\xf6\xa0\x6e\xf0\x00\xfb\xcc\x78\x55\xe3\x53\x95\x68\xc2\xc0\xdc\x7f\x02\x04\xfc\x45\xb3\xc2\x59\x94\x56\x6b\x28\x4b\x76\xc5\x33\x2c\xaf\xa8\xc8\x4e\xcf\xf4\xed\xaa\x56\xee\xc1\x8d\x27\x9c\xbd\x95\xb5\xfc\x33\x2e\xf4\x02\xf4\xa4\x63\x93\x12\x73\xdb\x56\xe8\xab\x2f\x35\xe4\xa9\x50\xac\x53\xfb\xd1\x09\x75\xf5\x17\x08\x32\x01\x96\x8e\x64\x73\x28\xe6\xd7\xc6\xe2\xca\x86\x95\x7b\xa5\x9f\xd7\xde\x7d\x64\x3c\x6f\x10\x72\x0e\x23\xf9\xa9\x57\x57\xf5\x86\xc5\xb6\x27\xae\xfb\xcc\x5f\x71\x49\x08\x89\x5c\xf4\xa1\x26\xed\x79\xf2\xd0\x30\x00\xb3\xf4\xe5\x21\x86\x14\x52\x76\xb9\x75\x6a\xfa\xf8\x45\x8b\xe5\x75\xf4\xab\x57\x0c\xd4\xff\xb0\x66\x3c\x5f\x33\x8e\xb0\xd0\x11\x41\x54\x07\xfa\xd6\x2c\x5e\x34\x99\xdc\x24\xa7\xee\xbe\x5b\x17\xab\xa0\x99\xc7\x32\x9d\x39\x9c\x1a\xf3\xf2\x60\xaf\xd7\x05\x2f\x60\x3b\x87\x6f\x44\x32\x6f\xaa\xab\xb9\x1e\x7d\x8b\xf2\x5f\xd4\x00\x1c\x6a\x39\xa1\x9c\x15\xe1\xc7\xef\x3d\x1b\x79\x9e\x01\xe1\xfb\x61\xbb\xed\xff\xc2\x09\x71\xcb\x08\xe7\x8e\xed\x23\x64\x74\x5b\x84\x09\xd6\x5d\x54\xbc\x11\x1c\x2b\xa2\x76\x3b\xfa\xa1\xaa\x52\x69\xb7\xc3\xc4\xa6\x99\x8f\xf0\x1e\xaa\xd1\xba\xec\xee\xe2\x88\xec\xee\x21\x0c\x80\xb5\x11\x4a\xb4\x6b\xd4\x0a\xc0\x5b\x72\x74\x58\x89\xe7\x54\xce\x92\x49\x4f\xe0\x7b\xc6\x27\x90\x45\x89\x8f\x7b\x2c\x2b\x24\xf2\x57\xc2\x4a\xeb\x95\xf6\x45\x7c\xb5\x4d\x48\xda\x51\x85\x0f\x0a\x7d\xe8\x85\xfa\x29\xe1\x00\x1e\xce\xc7\x84\xa1\x82\x30\x53\xb3\x20\x65\xa6\x5d\xd2\x0f\xa9\x96\x4c\x3e\x72\x7d\x8c\x38\x48\x30\x91\xc8\xa4\xdd\x86\x29\xaa\x0e\x7d\xbd\x4e\x77\x76\xf4\xb8\x6b\xa7\xae\x46\x45\xd5\xad\x28\x5c\x40\x4c\x28\x3e\x83\x7d\x66\xbb\x58\x3b\x1a\x6b\xdc\xaf\x8c\xe4\x87\xd4\x6a\xfe\x68\xc3\x19\xe8\x19\xd9\xab\x6d\x84\xa8\x24\x71\x14\x8e\xde\x62\x2f\x51\x79\x24\x32\x5f\x49\x51\x2e\xdc\xaa\xce\x05\x04\x3d\x09\xbb\xb2\xdd\x1a\xd2\xaa\x23\x37\xd2\x2d\x3b\x29\x4b\xdf\x47\xd9\xba\x84\x0e\xf8\x70\x1f\x16\x66\x01\x19\x3f\x80\x18\x21\x47\x00\xe0\x5e\xb3\x8e\x26\x46\x04\x3d\x58\x72\x80\x80\x0f\x59\x5d\x7b\x3b\x3b\x28\xcb\xb2\x06\xb5\x62\x9a\x15\xc8\xaa\xb0\x80\x73\x73\xf8\xd6\xb1\x87\x1c\x4f\x1f\x3e\x7c\x76\x1d\x04\x2a\x0e\x59\xd4\x0c\x59\x0c\xf8\xb0\x65\x46\xba\x0d\x49\x65\xe0\x4e\x01\x5b\xa5\xdd\xde\x73\x7f\xaf\xd7\x61\x49\xe8\x03\x0a\xd4\xbb\xb6\x32\x43\x00\x21\xa8\x3f\x44\x45\xf9\x28\xb9\x4d\xa9\x78\xa0\x02\x00\xbd\x9a\x71\xfc\x5e\x40\x63\x45\x60\x6c\xe9\xe3\x62\xdb\x5b\xa6\xba\xb8\xc3\x21\xe1\x0d\x87\x9b\xe1\xc0\x32\x73\x3d\x70\xcf\x73\x6c\x3c\x8b\xf8\x1d\x05\xcc\x99\x5c\x33\xda\x6e\x87\x14\xc6\x4b\xf5\x78\x79\x3e\x28\x0d\x0a\x25\x1b\x40\xa1\xf4\x36\xaa\x40\x42\x79\x1b\x6d\x94\xef\xb4\xbc\x3d\xbb\xd7\xe2\xa2\x8c\x5a\x50\x46\xeb\x50\x71\x02\xb9\x64\xd4\x59\x9d\x68\xef\xf0\x89\x27\x90\xd2\x1c\x60\xca\x28\xe8\x97\xb0\xc7\xe3\xfa\x04\xcf\x78\xec\x87\x53\xe4\x41\xae\x53\x2d\x9f\x8c\x73\x81\xc3\xbd\x9a\x79\xe1\xaf\xd6\x0b\xb6\xfe\xee\xe1\xe1\x98\xc7\x21\x45\xfe\x01\xef\x7f\x10\xda\x8a\x04\xca\x3d\x8d\x34\x3f\x35\x98\x55\xe6\x17\x11\x08\xcb\x96\xaa\x4c\x14\x13\x45\x6b\xc7\xaf\x9a\x40\x4a\xd3\x37\xdf\xa6\x91\x2b\x70\xf3\x7e\xea\x3e\xaa\x89\x58\x7a\x3e\xbd\x53\xed\x6e\x2c\x3c\xe8\x97\x45\x7e\xe8\xda\xb1\x31\x42\x5d\x76\xaf\x7d\xf6\x23\xe9\xee\xb3\xdd\x5d\x7b\x3d\xa7\x03\x06\xd7\xf3\x44\xd3\x9c\xde\x47\x89\xd9\x39\x04\x06\x97\x98\xed\xa3\x28\xd3\xd3\xec\x18\x47\xc6\xcc\x18\x5b\x26\x9b\xcc\x4b\xf1\x0b\xcc\x4a\x8b\x24\x7e\x9a\xb2\x38\x6e\x36\x9a\x96\x0d\x4d\x2f\xb0\x48\x89\x25\x8f\x93\x64\xa1\x1e\x58\x07\x0e\x17\xa8\x5b\xfb\xbd\x67\xd7\xce\xdf\x53\x21\x12\x61\xfb\xfd\xed\x83\x66\x98\x7e\x6f\x16\x82\x8e\x23\x49\x27\xbb\x53\x1a\xc9\xa5\xa0\xf5\x63\x00\x5f\x8b\x1a\xf3\x58\x9e\xa2\x02\xc7\x80\xbf\x3d\xab\x18\xcc\x6c\xf2\x6f\x92\x48\x4c\x21\x86\xd5\xfc\xae\xf5\xea\x7f\x9d\x24\x31\x8d\x78\x78\x6b\xdd\xf7\xa9\x86\xd4\x1a\xcf\xa8\xba\xaa\xcf\xbd\xdf\x93\x0f\x51\xbc\x84\xa7\x0f\xc6\x16\xe7\x8a\x3d\x61\xda\x89\x62\x16\xd5\x6a\x97\x5e\x53\x88\x86\x89\xc1\x8f\x7e\x09\x59\x31\x3b\x6e\x1e\xac\xcd\xb2\x46\x12\x2c\xf8\x6f\x64\x4d\x96\x4e\x89\x57\xe3\x84\x4f\xd9\xdd\xd2\x59\x38\x7d\x7b\xe7\x1e\x4e\x0b\x81\xaa\x68\xc5\x42\x84\xa5\xd4\x0e\x14\x80\x11\xdf\x60\x11\x55\xe5\x7e\x31\x60\x1f\x02\x65\x19\xf4\x5b\x5d\x0d\x21\xb5\xd0\xaf\x54\xcf\x0c\xf9\xc5\xfc\xf1\x91\xc9\x99\x49\x35\xd0\xa0\x33\xfc\x85\xba\x50\x8e\x3c\x16\x21\xd7\x55\x5b\x1e\xa0\x9a\x49\xa9\x24\x52\x2d\x9f\x14\x4f\x65\xcd\x67\x9e\xf6\x69\x4b\x4a\x33\x5b\xdb\x5d\xe8\x9d\x76\x58\x3f\x94\x64\x42\xc1\x8f\x64\x11\x17\xdd\x8e\xfd\xde\x54\x24\xec\xef\x6a\x25\xec\xef\x86\x07\xfe\x8f\xde\x8c\xb6\x20\xaf\x47\x87\xa5\x36\x93\xdd\xc1\x3c\x77\x4d\xea\xb9\x66\x0d\x5c\x66\x96\x77\xe4\x84\x9f\x47\x92\x3d\x50\xf8\x8e\x00\xba\x61\x34\x99\xc0\xaf\x0b\x73\xa8\x36\x0d\xf4\xc1\xb6\x70\x8c\x01\xb9\xd1\xa2\x7a\x7e\xd9\xc7\xe7\x76\x9e\x20\x44\x1a\x32\xfa\x72\xf9\x91\xc5\xf1\x11\x9c\x99\x64\x4c\x4b\xef\x8e\xd9\xc4\xbc\x9a\xaa\x57\x34\x1a\xcf\x20\x83\x2c\x90\x7c\xe1\x09\x74\xc4\xab\x6a\x59\x7d\x9b\x57\x16\x9b\xa1\xbb\x5b\xd0\x31\x06\xe7\xd4\xfa\x1b\x95\xe7\x97\xcf\x9d\x05\x1c\x79\x87\x81\x87\x6e\xb2\xbd\xe7\x52\xc3\x57\xe4\xb0\xb0\xac\x1c\xd6\x50\x17\xcc\xc5\xe2\x03\x05\x15\x7d\xcf\xfe\xc6\x64\x86\x3a\x3c\x75\xa1\x41\xd1\xf3\x14\x51\x89\xa2\x75\xd7\x47\xf0\x21\x47\x98\xe7\x2b\xec\xe6\xe8\x1c\xb6\x05\xd7\x40\xaa\xe4\x04\x58\xdb\x79\xc2\x6b\xc3\xb1\x4c\xe4\x4b\x06\x85\xfa\xf3\x85\x7c\x22\x33\xcd\x0c\x5f\xc7\x11\xbf\x27\x13\xd9\xa2\x60\x3e\xa5\xa9\xaa\xac\x5a\xc3\xf6\x44\x1a\x67\xac\x5b\x7a\xc7\xb8\x65\x37\x7a\xfd\x52\x22\x01\x99\x13\x7e\x98\x57\x8c\xa6\x84\xc3\x9a\xf3\x49\xb9\xb4\x50\xcf\x79\x22\xd9\xf4\xa9\xf8\x8a\xfc\xaa\x66\xfc\x81\x0a\xc1\x26\x56\xdf\x46\x29\x70\x47\x9f\xc9\x11\x46\xf5\x40\x34\x86\x64\xae\x82\x20\x27\x50\x33\x6c\x2a\xf5\xf4\x98\x8e\x13\x11\xa9\x17\x7f\xea\x5a\x6c\xc1\x37\x89\xc8\xdf\x8d\xca\xaf\x5c\x3b\xb7\xfa\xbc\x50\x22\x20\xf3\x2a\x7b\xd4\x0c\xa9\xf2\xbc\x8f\x69\x07\x54\x6d\x3f\xd3\x27\x92\xa8\x16\x97\xdc\xfd\x8e\xd4\xef\x29\xe3\x2c\x9d\x35\x2a\x3b\x69\xbd\x3a\xd5\xb7\x13\x83\x94\x23\xa8\x05\xd0\x3b\x8c\xe3\x82\x15\xb9\x62\x61\x6e\xb7\x69\x59\xd3\x79\x4d\x3d\x86\xe1\x37\x44\x0e\x0d\xeb\x86\x87\x37\xd1\x5d\xfa\x26\x11\xaa\xef\xbf\x51\x3b\x32\x60\xf5\x57\xde\xd0\xe0\xc1\xa5\x5e\x8f\x06\x05\xa7\xa1\xc1\x63\xcd\xed\xf5\xb6\x32\x5f\x93\x73\x57\x33\xf9\xdd\xfd\x49\x85\x8e\x8b\x3d\x36\xdd\xf1\x48\xaa\x8e\x0f\xac\x32\xec\x71\x6f\xcc\xc8\x1e\x68\x0e\xca\x3b\xb4\xdd\x2e\xf2\x69\x89\xc0\x02\xd5\xf5\x3f\x1e\xec\x0d\xf5\xad\x72\x9f\xfd\xe0\x42\x5e\xd9\xce\x0e\x12\x03\x3e\x60\xc3\xa1\x3e\xb2\xd4\x9f\xc8\x8b\x37\x03\x6a\x68\xec\xa4\x87\x56\xb4\x5e\xdb\x10\x2a\x97\xf4\xc6\x93\xa7\x9d\xd3\x61\x58\xc3\x71\x04\xe6\x56\xc6\xbf\xa7\x4f\x8a\x77\x61\xa6\xa4\xd1\x52\x37\x89\xea\x1b\x86\x63\x50\x60\xc5\x77\x50\x06\x8a\x7a\xda\xa1\x9f\x17\x91\xdb\x8a\xaa\x97\x54\x6a\xa6\xeb\x4e\x8b\x77\x58\x27\xfa\x78\x88\x24\x75\x0f\xdf\x3b\x4a\x71\x8f\x5e\xb7\x68\x67\x1a\x2f\xd3\xd9\x61\xfa\xc4\xc7\xf6\x71\x59\x2d\xf1\x91\x10\x92\x76\x8e\xde\x5f\x5d\xf5\x35\xc2\xa6\xc3\x47\xd0\xe3\x6c\x7d\xac\x7f\x8d\xff\xac\x2a\xf9\x9a\x99\xbe\x62\xe1\x70\x77\xaf\x3a\x4b\x84\x68\xbd\xae\xb8\x1c\x84\x08\x1d\xfc\x69\x3c\xa5\x42\xa9\x4e\xe7\x9a\xc6\x04\x5a\xd1\x22\x4c\x25\x05\xcc\xa7\x2b\xfa\xc0\x94\xf4\xaa\xe1\x4b\x23\xdf\xff\xd2\x64\xc7\x2d\xa4\x06\x90\xe2\x69\x75\x02\xa7\xfe\x40\x4d\xf5\x22\x92\xb3\x21\xca\xa6\x8c\x47\x71\xfc\xa4\x5b\x20\xbf\x29\xb1\x40\xbf\x53\x77\x51\xbf\x15\x42\x7d\xf0\x4b\xf0\x41\xd3\x22\xd7\xbc\xa2\x62\xcf\x3d\x02\x2a\xc7\x92\xf0\x33\x8f\xfd\xb8\x77\x20\x77\xf7\x7a\x90\xce\x79\x6f\x9f\xff\x20\x41\x6f\x20\x06\x7c\x77\xcf\x3f\xa0\xb8\xc3\x50\x3b\x35\x41\x99\x54\x0b\x53\x65\xb1\xe2\x6f\x3e\x10\x31\x53\x92\xbc\x3d\x16\x5b\x35\x58\x35\xe9\x41\xc8\x89\xda\xe2\x12\x47\x64\x7b\xa9\xc3\x8c\x8e\xfb\x6f\x0e\xdf\x9f\xde\x8c\x0e\xaf\x3f\x9d\x1f\x8d\x2e\x5e\x5f\xf7\xaf\x3e\xf4\xaf\xae\x51\x4f\x95\xed\x4c\x39\x66\x24\x55\xf2\x35\xe5\x13\xca\xe5\xcf\xf4\x29\xc5\x11\xd1\x1a\xc3\x5c\x85\x14\x93\xc1\x10\x8f\xeb\xce\xce\xd8\x86\x78\x66\x78\x4a\xba\xfb\xd3\x1f\xac\x80\xb0\xbf\xb3\x33\x45\x54\x86\x6c\x30\x1d\xe2\x31\x2a\x1d\xe1\x6e\x5f\xa8\x23\x7c\xa5\x16\x38\xed\xc5\x5a\xd7\x19\x65\xe6\x44\x07\xd7\x6b\x6d\x31\x39\x85\xe3\x98\xab\x0d\xfe\x0f\x2f\xad\xf1\xdf\xc3\x11\x39\x81\x20\xc9\x34\x37\x0a\x88\x41\x77\xd8\x8a\xd6\x6b\x31\xd8\x1b\x1a\x18\xfe\xaa\x13\x35\x40\x9a\xdd\xb9\x68\x5e\x99\x27\xeb\x04\x48\xb5\x88\x71\x2a\x72\x27\x31\x13\x2d\x44\x77\x82\x5e\xb0\x13\xa6\xeb\xb5\x44\xd8\x22\x5a\x31\x2f\x36\x2f\xc9\x50\xd6\xea\x1a\x65\x46\x22\xc3\x95\xba\x83\x2c\x4b\x77\x15\x60\xa7\xe6\x06\x42\x75\x24\x89\x54\x3b\xc3\x36\x17\x1d\xc4\xa1\x1a\x03\x56\x03\xc0\x62\xf0\x6a\x88\x7a\xb1\x9a\x68\x19\xdd\xf9\xe7\xfa\x91\x7b\x44\xce\xd4\x86\x8a\xc4\xbd\xe6\xad\x87\x29\xe0\x6b\x92\x2b\xac\xdd\xe4\x96\x73\x4a\xde\x52\xb8\x76\x44\xe3\x7b\x3a\x21\x1f\xdd\x0f\xf2\xc9\x08\xad\xf5\xe1\x8c\x77\xb2\xb3\xe4\x0b\x91\x8c\x69\x9a\xd2\xbc\x4c\x4a\xb6\xbb\x78\x24\x73\x92\xa2\x3a\xfc\xec\xc6\xa4\x78\x26\x17\x52\x8b\x09\x0d\xd5\x3e\xc9\xf5\xfa\x3a\x87\x87\xde\x7a\xd4\x26\xe0\xd2\x27\x29\xe9\x03\x57\xd1\xcd\xe7\x35\x7d\xf6\x9e\x1e\xc6\xb1\x57\xfe\x5a\x3a\x3e\xbf\x29\x3c\x13\x88\xfb\x4e\xc3\x55\x82\xc4\x6d\xd2\x4d\x3e\xca\x81\x1c\xaa\x71\x19\x25\xee\x28\x57\xc0\x51\x04\xe6\x82\x2d\xc6\xb7\x96\x40\x20\xf4\xb3\x0d\x88\x6f\xb7\x29\x81\x00\xbf\xc2\xd3\x81\x1c\xb6\xdb\x61\xcd\x53\x63\x13\x42\x5a\x8a\x75\xdd\xbc\xa6\x91\x18\xcf\x8e\x59\xaa\x44\x9c\x3a\x9f\xb2\x27\x69\x8e\xe8\x67\x3f\x81\x09\x26\x56\x03\xa0\x97\xe7\xfc\xf0\xac\x7f\x7d\x79\x78\xd4\xbf\x1e\xbd\xfe\x34\x3a\x39\x26\xfe\x23\x42\x3b\x37\x40\x19\x90\x31\x08\xc0\x56\xce\x13\xa9\x41\x94\xe9\x84\xd0\x1c\x52\x59\x89\x66\x4b\x7e\xc2\x6f\x44\xc4\x53\x7d\x5a\x10\x8b\x8a\x0f\x5e\xb6\x3f\x9f\x5f\x7c\x3c\x1f\x5d\x5e\x5d\x5c\xf6\xaf\x6e\x3e\xa9\x13\x91\xd0\xce\x71\xff\xf5\xfb\xb7\xa3\x93\xf3\x9f\xfa\x47\x37\x27\x17\xe7\xa3\x37\xef\xcf\x8f\x4c\xbe\x03\xad\x5e\x38\xd3\xda\x25\xda\xd1\x5c\x84\x76\x4e\xd9\xad\x88\x04\x9c\xef\x9d\xd8\xfb\x1b\x44\xba\xf3\x64\xa2\x1a\x73\x8d\x1c\x9f\x1c\x8f\x8e\xde\x1d\x9e\xbf\xed\xeb\xa7\xbf\x7e\x1a\x1d\x5d\x9c\xdf\xf4\xcf\x6f\xd4\x17\x46\x4d\xe2\x76\x8d\xba\xec\xc7\xc9\x6d\x14\xe7\x1a\x14\xcf\x25\x78\x82\x17\xf5\xca\xc6\x79\x4e\x3e\x8b\xcd\x71\xf5\x16\x82\x60\x51\x88\x9c\x77\x15\x3d\xf8\x72\xc0\xa2\x4e\x39\x99\x3b\xba\xd9\xcc\xd9\xee\xe3\x27\x8f\xa3\xdb\x6f\x41\xb3\x78\x57\xdf\xeb\x5b\x5f\x39\xc0\x7c\x3f\x9b\xca\xb5\xb3\x27\x3c\x2d\x64\xee\xbf\x55\xb6\xe0\x16\xba\x33\xf2\xba\x73\x67\xbb\xe3\xde\x3e\x96\xae\x6e\xdb\x84\xb6\xdb\x77\x60\xe4\xf4\x8b\xf5\xff\xff\xd4\xbd\x6b\x7b\xe3\xc6\x95\x27\xfe\x9e\x9f\x42\xc4\xe4\x41\x50\xcb\x12\x9b\x72\x66\x66\x77\xa9\x2e\x73\xe5\x76\x7b\xe2\xc4\x7d\x49\x77\xdb\x49\x86\xe1\x72\x20\xb2\x28\x56\x1a\x02\xe8\x42\x41\xdd\xb2\x88\xef\xfe\x7f\xea\xd4\x1d\x28\x52\x54\xc7\xd9\x79\xfe\x7e\xe1\x16\x81\x42\xdd\xeb\xd4\xb9\xfe\x8e\x9b\xd9\x61\xd6\x53\x5f\x5c\x44\xd5\x17\x17\x0b\xb4\xdf\xfb\x3f\x07\x37\x4e\x0b\x2c\xeb\xfa\xac\xc1\x5b\x40\x95\x95\x5d\xd0\xdf\xe1\xc8\x9d\x48\x83\xf4\xe5\xad\x87\x43\xf9\xde\x4b\x61\xd0\x0b\x69\xd1\x06\xb4\xcf\xfe\xfc\xbf\xc1\x57\xf8\xa3\x22\x2c\xd6\x51\x3c\x76\x1a\xfc\x74\xc0\x1f\xdc\xe1\xae\x0f\x20\x22\xdb\xb2\x2f\xc2\x85\x34\x5d\x91\x4b\xe6\xe7\xa0\x04\x7f\x34\xc7\x9d\x13\xb6\xdf\x5b\xfc\x51\x64\xdb\xf2\x11\xe3\xb5\x8b\x7b\x77\x67\xdc\x06\xbb\x02\xc6\x05\x7e\xc9\x9f\xef\xe5\x53\x53\xd5\x2b\xb0\xa3\xeb\x3b\x36\x0f\xdc\xaf\x20\x51\x69\x33\x17\x96\x09\x2b\xf6\xfb\x4c\xfe\x26\x1f\x32\xe4\x0d\xec\x95\x15\x2f\xba\xb8\x0c\x72\xa2\x43\x23\x1f\xf7\xed\xe9\x61\x37\x85\x86\x65\xef\x33\xca\xf6\x2c\x79\xbd\xcb\x3e\x58\xdd\x7c\x38\x1b\xae\x5f\xef\x8e\x9f\x1c\x37\x3f\x80\xee\xe8\xf9\x6a\xf9\x82\x6c\x9d\xa6\xbd\xb9\x9b\xe9\xf4\xe6\xe3\x0d\xe3\xb5\x08\x71\xa4\xa7\x75\xf8\xdb\x4c\x6d\xd0\x80\x9a\x5a\x17\x59\x3e\x93\xb3\x6a\x50\xbe\xec\xe3\x22\x4d\xdf\x64\x85\x07\x70\xe2\x07\xb7\x17\xfb\x7d\x3e\xbe\xce\x57\x1f\xaf\x1b\x2e\x9b\xa3\x65\xdd\x70\x97\x18\x01\xb5\x07\x48\xf9\x47\x6c\x89\xfd\x15\x7e\x13\xdc\x38\xb4\x83\x88\x0d\x3d\x7f\x4b\xac\xe1\xca\x6d\xfb\xbf\xfb\x27\x70\xf4\xd6\x4d\xf9\xb7\x5a\x9f\xe7\xc1\xaa\x46\x08\xc2\xbf\x45\x09\xc2\xbf\x85\x04\xe1\xdf\x16\x03\xb6\xdf\xc7\xb2\xb3\xee\xf7\x19\x23\x5c\x72\x9d\x00\x97\x1c\x2c\x66\xc7\x99\x22\x53\x9d\x19\xca\x19\xab\x70\xee\x6d\xda\xd7\xa6\xa7\x36\x17\xe8\xa0\xb7\x7b\xf9\x2c\xab\x08\xc7\x39\x61\x68\x9a\x55\x0a\x3f\x39\x27\xbc\xdb\x64\xc4\xf1\x22\x13\x38\x6c\xee\x7b\x7f\x62\x7c\x35\x33\x33\xf3\x64\x9f\x54\x11\xc2\x5e\x0d\x18\xe9\x75\x2f\xb7\x87\x2b\x9f\xe5\x51\xad\xa2\x09\xcc\x0c\x1a\xdc\xef\xe1\x1f\x93\x6c\xc5\xaa\x27\x0d\x83\x5f\xdb\x77\xe7\xbf\xbb\xac\xbf\x26\x93\xcb\xfa\x9c\xfc\x4e\x75\xb3\x21\x6c\x5e\x2f\x70\x21\xff\x19\x5d\x48\x39\x45\xfe\xf1\xd5\x62\x50\xa4\x69\xb6\x4a\x53\x35\xab\x0d\x2e\x10\x6e\x24\xb1\x20\x14\xe1\x1e\xf5\x95\x65\x25\x61\x29\x16\x08\x17\x3a\xea\xb3\x01\xdf\x18\xe3\xfb\x0b\xf4\xf8\x87\xc7\xe4\x2a\xfc\x9d\xbd\xa8\x7f\x31\x7f\x79\x99\xda\xbf\xd8\x71\x65\xe6\xff\x98\xfe\x80\x2b\xf2\x77\x29\xde\xcb\xbd\x5d\x81\xa5\x67\x78\x81\x19\xc2\x7f\xa7\x1d\x8b\xe5\x37\xae\xc5\x2f\x74\x92\xd1\x2a\x62\x68\xee\xb5\xaa\x1e\xbf\x06\x68\x13\x50\xd8\xdb\x96\x7e\x8c\x43\x4d\xba\x67\x43\x45\x60\xbf\x9b\xfe\xe2\x04\x20\x75\x69\xef\xf7\x5c\x5f\xb3\xc6\xdb\x0b\x73\x73\x0b\xca\xab\xa0\xdb\xf1\xaf\xa2\x1d\xff\x2a\xe8\xf8\x57\x0b\x05\x3e\x63\x5d\xb8\x35\xd3\xa3\xc2\xb0\x46\x23\xe7\x85\x51\x12\xc5\x99\x8b\x2c\x99\x26\x48\x0a\x48\x8c\xfc\x27\x68\xb2\xd0\x80\x6b\x48\x86\x07\xf8\x6a\x7a\x81\xa5\xa8\x3a\x2d\x21\x5d\x09\xc3\xbe\x42\x62\x6a\x13\x67\xe3\xba\xa9\x41\x9c\x5e\x4f\x87\x17\x2d\x52\xf8\x69\x7f\xd6\x38\x76\x3f\xe3\x9f\xf0\x5f\xf1\x7f\x1c\x88\xe4\xd2\xce\x50\xf9\x7a\x4d\xd7\x21\xe6\xd4\xcf\x0d\x6d\x28\x99\x2f\x8e\x81\xb1\xe5\xeb\xf5\x31\xff\x73\xa8\xd5\x30\x86\xce\xa4\x94\xa6\x1a\xdf\xea\x3d\x35\x89\xea\xa1\xa0\x5e\x10\x84\xb0\x71\x83\x37\xfe\x79\xd0\x17\x2d\xa4\x41\x2b\xb8\x04\xbf\x32\x8d\xe7\x05\xda\xaf\x03\x20\xf7\xf0\xe9\xc0\x6b\x65\x55\xd0\x9c\x1b\x64\x0f\x33\xc8\x81\x93\xeb\x27\x97\xe2\x39\x75\x79\xde\xcd\x99\xe7\x84\x4a\x99\xaa\x94\xff\xc8\x33\xcf\xe0\x8f\xaf\x16\x03\x79\x55\x3b\x2d\x97\xd2\x71\xd9\x6b\x7b\xbf\xff\x3e\x93\xe4\x6e\xce\x71\xb9\x40\xad\x0d\xc3\xed\xc9\x1e\x3f\x63\x5f\x38\xf9\x09\xc7\xc4\x97\xbf\xe2\xd8\x87\x71\xed\xae\xec\x6c\x86\xf0\xf0\x42\xdd\x5f\x7f\xec\x70\x74\x11\x91\x03\x82\x00\x63\xa2\xc8\x1f\xa1\x86\xdf\xc0\x8a\xfd\x07\xfe\x93\x9f\x21\xef\x2f\x5f\xc2\x95\x2b\xea\x3b\x64\x9d\xa0\xb2\x0c\xa5\x29\x3c\x0c\x82\xc6\x24\x8f\xa6\xcd\xfb\x4a\x04\x60\x1e\x57\x52\xa5\x69\x44\x29\x55\xc9\x89\x54\x06\x8c\x34\xf5\x7e\x28\x42\xe2\x30\xd4\x59\xe0\xbd\x9b\x09\x04\x8e\x4f\xdd\xed\x0c\x27\x3a\xae\xcd\x1c\xda\x98\x05\x17\xb1\xa1\x4d\x49\x7f\x18\xc8\x5d\xfe\x07\x32\xbc\x40\x97\x59\xcc\x95\x51\xdf\xb6\x2e\xe8\xc4\xe5\x4f\x4a\xd3\x2c\xb7\xc7\xa3\xd4\xe4\x20\x47\x08\xe7\xd6\x15\x96\x85\x51\x0e\x19\xc7\xbe\xcb\xac\xf3\xf5\x90\x93\xa6\xae\x77\x24\xa7\x62\x69\xe9\x84\xd2\x7e\x53\xfd\xb2\x45\x2d\xca\xfe\x02\xae\x87\xff\x09\x87\x2b\x4d\xb3\xff\xb4\x07\xe5\x0f\x64\x38\x01\xaa\x28\x27\x1f\xc7\x8f\xfb\x01\xc7\x73\x9f\x85\x84\xe8\x16\x65\x65\xca\x04\x1e\x4e\xf0\x5f\x50\x9b\x4d\xe2\x95\x1e\x9c\xf4\x70\x96\xe1\x86\xf8\xd3\xd7\x93\xd9\x6f\x94\xd3\x33\x16\xb8\x44\x53\xc9\x64\x94\x78\x4e\xb1\x58\xd8\x6e\xfb\xeb\xfe\xce\x0c\xe5\x8f\x67\x4c\xa7\xbb\xf8\xe3\x42\x4a\x83\x40\xe9\xfe\xd3\x52\x41\x39\x6e\xb7\xd5\x29\xfd\xb2\x11\x3b\xdb\x50\x20\x70\x4a\xa1\xe8\xe1\x4f\xa3\x91\x7b\xc2\xe5\x93\xf3\xf3\x3f\x3d\x27\x93\x34\xfd\x8d\xa2\x69\xbe\xe0\x54\xaa\xb0\x5b\x9a\xa1\x81\xe0\xf7\x0f\x20\x54\x69\xdd\x35\x00\x4f\xbb\x92\x8c\x06\xfc\xa7\xe5\xa8\xd2\x34\xab\x48\xc0\xb4\x21\x2d\x34\x55\xfd\xa3\x80\x6b\x7d\xe0\x2a\x84\x1b\xc7\xa4\xd7\x83\x26\x4d\xeb\xb1\xa0\x39\x5f\x57\x3a\x83\x40\xa5\xaa\x01\x7f\x0f\x39\x67\x6c\x93\x51\x42\x88\x32\xef\xd8\x5b\x43\x9e\x2d\x79\x1e\xf0\xa7\x8c\x23\xb4\x22\xca\xe9\xd6\xc0\x74\x1c\x8e\x14\x17\x78\x25\xc5\x04\xae\xb2\x81\x5a\x1a\xc2\xd1\x43\x41\x00\xd2\x09\x32\x93\x6e\x66\x5f\xe6\x7f\xb1\xc1\x46\x9a\x92\x2f\xe0\x3e\x9d\x16\x2d\x9a\x4a\xfa\x49\x98\x82\x38\x2c\x08\x3f\xd2\x3b\x8e\x06\x79\x9a\x52\xf0\x94\x94\xe3\x88\x50\x24\x20\xed\xdf\x06\x9f\x42\x78\x69\xf7\x21\xd4\x57\x78\x6b\x5e\xd1\x93\x85\xb7\x8a\xf4\xe8\x99\x5c\x08\x16\xc6\x3a\x48\x8e\x7c\x74\x81\x30\xec\x07\xc3\x73\xf7\x09\x6b\xee\xb3\x3b\xe3\x4f\xac\x28\xa0\x82\x34\xf5\x7e\x98\x53\x14\x1d\xaf\x2d\xe5\x8f\xb7\xf7\x10\x0e\x9d\x1d\x6c\xfe\xc8\x60\x0f\xeb\x78\xf4\xc5\xd1\x89\x7d\xcd\xec\xcd\x11\x9d\x99\x0b\x35\x05\xfd\x09\x9a\x98\x53\x61\xe6\x05\xd7\x6e\xff\xe7\x83\x3a\x98\x9b\x35\x5b\xff\xa8\x6c\xa7\x72\x72\xdc\xaf\xa3\xb3\xe3\x8a\x75\xb6\x43\xe7\xa9\x9c\x1f\xd8\x81\xd5\xd7\x17\xf2\xbe\xea\x2d\xe5\xf9\x85\xa6\x5a\x35\x8d\xab\xcd\x1a\xda\xe5\xff\x6b\x1a\x32\x64\xe6\x2e\xcc\x43\x07\x11\xfb\x99\x97\xeb\xf2\x69\x75\x7d\xeb\xdf\xbb\x9d\xaa\x56\x5e\x55\xfd\xf8\x97\x4c\x90\x89\x94\x6b\xc9\xf9\x05\x9a\x7a\xe0\x89\x69\x9a\x71\xf0\x68\xef\xb0\x92\xe7\x17\x08\x61\x6f\xa4\x58\xde\x00\xc9\xff\x51\x79\x06\xae\xe9\xa6\xe2\x34\x81\xfb\x00\x03\x17\x86\xa9\xeb\xc8\x86\x7a\x02\x70\xaf\x07\xec\xf1\x1e\xa8\xb0\x49\xd9\x83\x81\xda\x6b\xbd\xad\x7a\x99\xb1\xe7\x93\xfd\x9e\xcb\xff\xb1\x73\x3e\x24\x13\x94\xa6\x92\x71\x4a\x14\x8f\x99\x48\xa2\x01\xbf\xe7\x0b\xf8\xbb\x70\x7d\x0a\x46\xa2\xf5\x0f\x66\x24\x6c\x61\xf6\xe9\x7d\x57\xef\x9a\x23\xed\xb6\x0f\x2e\xb8\x10\x60\x89\x1b\xe7\x39\x99\x65\xf0\x9c\xcd\x26\x53\x86\xce\x6b\x49\x5d\xc5\xf3\xc9\xac\x19\x09\xa5\x7d\x52\x7c\x46\x02\x6a\x1d\x45\xf7\x12\x94\xa6\xa0\x6e\xd1\x3d\xf7\x5f\xc9\x2e\xeb\x2f\xa4\x74\x62\x3e\x40\xcd\xf9\xc5\xf3\x62\x54\x9b\xb1\xe6\xfe\x07\xce\x7f\x56\xf6\x73\x4b\x8d\x29\x7d\xc3\x29\xfd\x85\x66\xf3\x85\xa7\x5c\x5c\xd3\x80\xb1\xed\x39\x77\x49\x4a\x3d\x75\xae\x65\x99\xd6\x9b\xee\x28\xf9\x77\xfa\xaf\x9e\xda\xdb\xdb\x72\x6c\x93\xb9\x1d\x68\x34\x00\xf6\xaf\xe7\x64\x47\x11\xd5\xa6\x13\x2d\x98\x53\x3c\x17\x98\x2f\x4c\x42\x91\x12\xe9\xe8\x08\x53\x0c\x30\xf4\x06\xce\x4b\xb5\xe3\x09\x40\x0c\x04\x62\x45\x4a\x0d\x8a\xc9\x30\x1b\xed\xa8\xe4\xb9\x7b\x0d\x8d\x18\x9e\xd8\xa6\x2a\x24\x69\x64\xaf\xb7\x9e\x1a\x9e\xf6\xf8\x4a\xb9\x51\x39\x90\x5b\x75\x02\xf7\xfb\xa4\x73\xbc\x13\x9c\xab\x42\x96\x3b\x36\x65\xec\xb1\x4d\x70\xad\xdc\x2b\x92\x6d\x5e\x07\x7e\x6c\x5e\x64\x65\x19\x39\x69\x70\x0b\x96\x91\x8d\x2b\xb9\x58\x5c\xab\x43\xf3\x97\x03\x15\xfb\x87\xf3\x9e\x3a\x85\x7a\xfd\x08\x06\xb0\xa4\x7e\x92\xd4\x20\x5c\x87\x40\xbf\x60\x53\xa0\x8f\xe1\x98\xac\x94\x3f\x9d\x01\xee\x58\x7e\xa4\xf7\x16\xe6\xc3\xbb\x69\xc1\xb8\x7a\x54\x20\xee\xb8\xd9\x1d\x11\x8e\xa1\x0d\xb8\xc5\x6c\xa4\xc0\xd7\x93\x99\x18\xf1\xe9\x39\xa4\x57\x67\x5f\x4f\xac\x07\x7e\x25\x39\xd5\x12\x2d\x29\x28\x5f\x14\x66\x94\x4e\xb8\xd9\x21\xb6\x5d\x37\x55\xbb\x25\xc2\x36\xed\xdd\xcf\xa0\x4d\x36\x3d\xbf\xc0\x75\xcf\x99\x43\x8e\xd6\x6e\xea\x46\xf6\xa1\x42\xb9\x94\x92\xae\x65\x47\x1a\xd3\x91\x5c\xd2\x2f\xf8\xbb\xc1\xb5\xea\x54\xef\xaa\xef\x47\xb2\x81\xe3\x9a\x5a\x79\x56\xde\x68\x87\xc6\x3f\xd2\x7b\x03\x62\xd5\xbb\x0d\xfb\x55\xd4\xa2\xda\x1d\xae\xe1\x50\x03\x07\x43\xf7\xcc\xe4\x44\x63\x6f\x61\x47\x44\x23\xe3\xc5\x9c\x2e\x90\xfc\x9f\x51\xf1\x40\x94\xf1\x85\x1f\xf0\x6a\xf6\xd7\xe0\x9a\x66\x1c\xab\x4d\x86\x27\x98\xdb\xd3\x0c\x38\x5f\xf1\xd1\x9c\xd8\x5d\xed\x8b\x36\xa7\x10\x54\x7e\x7e\x2e\xff\x7a\x4e\x26\x61\x5c\xbe\xe9\xc6\xf2\x48\x37\x56\xb6\xe5\xf8\xa6\x42\x0f\x7f\x71\x98\x70\x61\xd2\xb3\xeb\x80\x14\x81\xdf\xd6\xf9\x39\xfb\xda\x86\xd7\x57\x04\x88\x39\x43\x83\x2a\x4d\x7f\x9f\x55\x50\x36\x89\x34\x98\xf8\x7c\xe1\xf2\x29\xb5\x7e\x73\x6a\xad\x9f\xa8\x67\x19\x3b\x62\xb0\x51\x49\xc9\x0e\x11\x10\xbd\x11\x75\xcc\x73\x64\x7b\x3c\x45\x7b\x16\xac\x95\xaa\x32\x80\x68\xe0\xb3\xf0\x0d\x91\x37\x9f\x8a\x57\xcc\x0c\x84\xdc\x6d\x75\x77\x24\x2f\x81\xab\xf4\xe4\x28\x26\x29\x8a\xcf\xcb\x85\x8a\xf0\xb6\x51\x61\x25\xbe\x40\x83\x6b\x4e\xf3\x8f\xad\xc2\x77\x3f\x82\x06\xf1\x0f\x36\xea\x90\x30\x2c\xfc\x45\xc7\xe3\x32\xea\x00\x05\x21\xff\xae\x79\x15\x14\xa7\xd5\x0f\x14\x4b\x59\xcf\x78\x2f\xf8\xb5\xf5\x69\xcc\x81\x4f\xd4\xe3\x63\xf4\x3d\x3e\xec\x32\x4d\x55\xbc\x94\x3e\x72\x81\xac\xe3\xd8\x68\x0e\x6c\xe5\x7c\xe1\xc8\x6f\x45\x26\x97\x95\xe3\x29\xaa\xd1\x08\x95\xf3\x6a\xe1\x34\x2a\xec\x50\x68\x5a\x4e\x26\x97\xb9\xf3\x92\xca\x47\xe4\x2b\xf4\xc0\x33\x36\xcf\x17\x98\xcd\xf3\xd1\xc5\x02\xb5\x6d\xf7\x28\x7f\xa6\x59\x90\x61\xe6\xa5\x77\x2f\xbf\xa7\x9d\xf4\xa7\xaf\xd4\x66\x57\x1e\x40\xbe\x45\xfc\x4d\x47\xa4\x0b\x84\xd6\x01\x8b\x03\x25\x64\x9f\x95\x01\x4b\xe1\x12\x6b\x11\x98\x79\xb5\x5e\x79\x4c\x3b\xdb\x64\x70\x92\x0d\x29\x70\x8c\x79\x44\x68\x64\x03\xad\x7f\xac\xf6\xfb\xea\x80\x52\xaf\xea\x5b\x5e\xf7\x7b\xa7\x43\x39\xa4\xf5\xd9\xef\xb3\x9e\x72\xe5\x50\x59\x7d\x4c\xd5\xf8\xb4\xd4\x0b\x6c\x9e\x1c\xc2\x47\x1a\xe4\x3f\xfc\x40\xb5\x4d\xd2\x7a\xf3\xa6\x69\x26\x27\x40\x33\xbc\x98\x8e\x3f\xd2\x7b\x4c\x51\xe8\xf1\x3b\xbc\xf0\x4d\xee\x34\x48\x0d\x1e\x03\xb0\xb0\x6e\xad\x70\x6c\x90\x7b\x33\xe7\x8b\x34\xfd\xa8\x75\xef\xca\x81\x55\x96\x7b\x75\x90\xa3\xb2\x0a\x3c\x1d\xe5\x2a\xb6\x21\x5e\x5a\xd0\x49\xec\x53\x4f\xbf\x94\x1a\x5c\xf0\x68\xe5\x27\xee\x39\x98\x3c\xd7\x30\x72\xbc\xd7\x5a\x68\x81\x2f\xbd\x7c\xad\x9f\x68\x56\x22\x13\x16\xac\x5b\x2e\xf1\x1b\x49\xe5\x54\xad\x66\x6d\x4e\x4d\x11\xdb\x0b\xce\xd5\xbd\xd2\xa8\x66\xae\x53\xc7\xd2\xf1\x06\xc3\xe9\xb9\x30\x0f\xd5\xae\xf7\xd4\xa1\x47\x02\x30\x14\x41\xe1\x16\x68\xcd\x04\xe3\x99\x3c\x12\xff\x87\xe6\xab\x2d\xe4\xcd\x9c\x01\xcf\x3d\x8d\x93\x35\xe3\x83\x63\x28\x71\x40\xd5\x86\x2a\xda\x73\x79\x57\x15\xb9\x60\x05\xd5\xaa\x57\x8e\x66\x3a\xac\x68\xaa\xfc\x85\x6c\x72\xd7\x8f\xf4\x1e\x05\x61\xba\x7a\xac\x07\x10\x4c\x8d\xcf\xb6\x9b\xa9\x59\xd7\x2f\x13\xf6\xf9\xe5\x47\x97\xbc\xf1\xd2\xec\x7a\xb9\x81\xc1\x87\xf5\x05\xcd\x04\xc2\x1f\x40\x17\xab\xb2\xde\xa2\xe9\x07\xaa\xf9\x7a\x60\x7e\x76\xf7\x31\xac\x58\x6c\x91\x4b\xc4\xb6\x8e\xd0\x59\xf0\xa7\xe3\x88\xcf\x05\xb0\x5f\x54\x5b\xa7\x5a\xdc\xbd\xe5\x03\x16\x0e\x6a\x33\x36\x2e\x75\x54\x1e\x5a\x34\x00\xfe\x11\xb0\x6a\xf6\xfb\x09\x1a\x5d\x58\xa8\x77\x6d\x33\x1c\x27\x66\x77\xc8\x83\x93\xf1\xb1\x0a\x93\x46\x98\xc7\x99\x80\x7e\x9b\x9d\xd3\xff\x60\xd8\x46\xf9\xef\xf9\xf9\xc1\xf6\x9a\x32\xd2\x22\x4c\x9b\x7c\xec\xf9\xa6\x46\xaf\xc2\xae\x05\xf0\x11\xce\x09\x69\x33\x30\x60\x97\xf5\x60\xaa\x84\xc2\x67\x33\xb9\xae\xcd\xd5\x0c\x18\xc8\x3a\x89\x10\xf7\x92\x78\xb2\x03\x73\xa5\x47\xf4\x18\xf3\x82\x35\x5a\x97\xf0\xaa\x2c\xed\x74\x08\x5b\xa9\x40\xb8\x54\xed\x9f\x9f\x9b\xbf\x40\x9f\x2f\xd9\x19\xc8\xa7\x6d\xb3\x69\x38\x70\xc1\x43\xfc\x04\x9c\x73\x7a\x80\x66\xf0\x78\x0a\x6f\x03\x87\xa0\xa8\x98\xba\x2a\xbc\x07\xf6\xe4\x29\xb2\x86\x3f\xd1\x8c\x9b\x6c\xfd\x9a\xf0\x71\x49\xf8\x78\xa7\x20\x9a\xf6\xa9\x32\x0a\x09\xae\x87\x4f\x09\x49\x70\xbc\x75\x0f\xb1\xb4\x02\x99\x96\xb9\xab\x26\x2b\x09\x9b\x57\x0b\xe4\x99\x89\x20\x1a\xd1\x17\x6f\x4c\x68\xb1\x1b\xba\x9e\x1e\x3d\x0f\xbb\x6a\xd7\x14\x92\x29\xdc\x6c\xe8\x4a\xd0\x75\x66\x87\x71\xa1\x41\x96\xbb\x25\xe2\xd8\x20\x1f\xe9\x3d\x44\xa4\x9b\x1f\xa3\x64\x9c\x8c\xa8\x35\x22\xf9\x44\xe8\x68\xf3\x14\x8b\xd1\x05\xe6\x68\x2a\xbe\xbe\x00\x02\x0c\xb7\xa8\xfc\xc2\x58\xee\x69\x4f\x88\x7a\xf7\x0f\xea\xfc\x8f\x28\xfc\x8d\x0e\x39\x0c\x3e\x32\xb4\xca\xf6\xe0\xed\x17\x2b\xe2\x0f\x2b\xdc\x2b\x30\xae\xc6\x55\xd8\x80\x65\x70\xa8\x73\x86\x57\x42\xbe\xf0\xf6\x77\xdb\xc3\xf7\x99\x40\x33\x3b\x65\x53\x6b\x30\xf1\x9c\xb1\xe8\xf1\x20\xc5\xc0\xaf\x53\xdf\x93\x61\xe7\xf7\x7b\x2f\x73\xf4\xeb\xb0\x69\x3b\x57\xd3\xbc\xdf\xf4\xf7\x3e\xe3\x05\x7e\xf0\x84\xce\x2f\x94\x13\xc1\x57\xd6\x9f\xf0\x77\x00\x0d\x6b\x82\xa2\xb2\x88\xc5\xc0\x0b\x54\x72\xcf\xdc\x69\x40\x11\xb8\x72\xee\xb9\x4f\xda\x87\xa5\x9f\x1c\x2a\x71\x56\xb0\x84\x95\xf2\x5d\xe2\xdb\xc9\xe0\x99\xc7\xf9\xfa\xea\xfb\x1f\x7a\x96\x00\x0a\xb0\x79\x2e\xa2\xc3\x6d\x0a\xef\xc0\x83\x04\xc3\x7c\x09\xc6\x28\xa1\xe6\xd5\x62\x50\x3a\x4c\xc3\x2c\x07\x55\xa7\x01\x1a\x94\x3f\x91\xdc\xc4\x7f\x97\x3c\x73\x8e\x4b\x7f\x2b\x7c\xf7\xdf\xd0\x17\xb9\x67\x5f\x47\xfa\xf2\x8b\xb7\xde\x7d\xbf\x77\xda\x9a\x15\x7f\x09\x19\x1a\x5b\xdf\x0b\xfc\x95\x4a\x5d\xff\xfb\x47\x14\x0d\x6e\xcd\xc8\xd0\xf2\xc5\x6e\xd1\xec\xc3\x70\x06\x3a\x40\xc9\x54\xe4\x3e\xb9\x3e\xc0\xd5\xd6\x54\x34\xbb\x48\xd4\x7b\xd9\xc7\xa0\xd2\x5c\xb2\xa4\xaf\xc6\x30\xdc\x8f\x75\xee\xa3\x5b\x65\x7d\x0d\xd2\x37\x34\xea\xd3\xa5\x8d\xd9\xd8\x1a\x36\x7e\x17\x09\x28\xf4\xc9\xa3\x40\xd3\x4a\x61\x73\x37\x3b\xfd\x75\xad\x7d\x50\x71\x81\x57\xc4\x87\x1c\xa7\xde\xac\xe2\xc0\x54\x4c\x83\xc9\x85\x30\xfc\xac\x21\x1c\x17\x84\xe2\xfe\xfa\x16\xca\x95\x03\xf4\xa0\xa8\x45\x76\xb5\x57\xde\xba\x73\x29\xa9\x69\x66\xa7\x0e\xb0\x41\x20\x25\x9a\x5d\x06\x84\x39\xac\xcd\x8f\x8f\xec\x07\x80\xa3\x0e\x5c\xa9\x8a\xbc\x16\xc4\xe2\x74\x1c\x80\x8a\xee\xf2\xa4\xb6\x2e\x0d\x1e\xe7\x55\x05\x90\xbc\xab\xea\xf6\x9a\x95\x5d\x19\xc7\x8a\x37\xf0\x65\xcd\x7e\xa1\x07\x3c\xb3\xb5\xb5\x35\x5e\xd6\x36\xa5\xd1\x91\xe6\x8b\x20\x67\x11\x94\xef\x05\x05\x7a\x8e\x4e\x56\xff\x05\x0e\xa9\xb5\xe9\x2b\x02\x2d\xf0\x11\xe4\x18\xd9\x87\x1e\x6e\x4c\xaf\x65\x59\xca\x81\xbc\xd8\x05\xf8\x33\xfd\x15\x83\xed\xa4\x38\xf7\x3d\x5c\x71\x16\x56\x07\x5c\x02\xcb\x59\x39\x66\xc6\x43\xca\xa5\x2b\xa9\xe0\x85\x72\x55\xd0\x8f\xf2\x3e\x5c\x5a\x6e\x07\xf3\x33\xcd\xc0\x64\xf8\xe0\xd7\xc5\xf6\xfb\xfe\xb0\x2b\x39\x52\x6f\xb7\xe6\x08\xe7\xad\xab\xc5\xe7\x11\x7e\x56\x7a\x89\xf9\x64\x61\x92\x6f\x40\x88\x17\x5c\x6c\x92\x5b\x9e\xf1\x58\xd7\x59\x90\x4e\x38\x8f\xa5\xbf\x37\x42\x69\x27\x29\x40\xd7\x85\x23\x86\xf7\x83\x39\x79\x61\x54\xd3\x66\x10\x3f\xd1\x34\xfd\x89\x1a\xe0\xc0\x1c\x3c\x05\xc0\xb7\x50\x12\xac\x59\x46\x49\xe9\xb2\x9c\x20\x95\x16\xd3\xa4\x2e\x41\x53\x4a\x98\x3d\xd3\x08\x67\x5d\xd3\x23\x84\x9d\x56\x10\xc1\x7f\x4d\x39\x3c\x05\xbd\x4f\x9a\x5e\x65\x1c\xbf\xd0\x26\x5d\x04\xe1\x9a\x5d\x90\x8f\x77\xa6\xa3\x61\x9b\x86\xc3\xfc\x23\x4d\xd3\x3f\x82\x57\x4f\xeb\x42\x9a\x7e\x54\x77\xc4\x4f\x0a\x98\xc8\x6d\xc6\xbf\x7a\xd7\xce\x4f\x54\xc7\x21\xfe\x48\x07\x3f\x51\xc2\x7b\xbe\x42\x3f\x51\x22\x6c\x2e\x40\x73\x58\x7c\x3f\xa3\xff\x80\xda\x74\x3f\xbc\xe9\xd3\xf1\x21\x7f\x54\xad\xe3\xdf\xd0\xbe\x4b\xa1\x8b\x57\xf2\xa3\x43\xfe\xe4\xd3\x74\x5c\x5a\x1d\x3b\xf6\x9d\xb9\x49\x29\xb9\x59\xdf\xd3\x5d\x3e\x93\x47\xe3\xbd\x97\x12\xad\x9a\xfd\xc5\x28\x13\x94\xc2\x54\x99\xb2\x26\xbe\xc3\x46\xd7\x14\x6e\x62\x11\x95\xfd\x10\xb6\x06\xb8\x72\x2a\xcf\x0a\xf5\x77\x0f\x77\x82\xef\xf7\x43\xb6\xdf\x83\x58\x4f\xa3\xfe\xf7\x74\xdc\x94\x1f\xcb\xea\x93\xc5\x5e\x98\xf1\x69\xef\x59\x70\x64\x74\xd7\x3d\x5c\x68\x8a\x4b\xd2\xe3\xdc\xc4\x4c\x78\x82\xf7\x54\xc4\xe2\xca\x5d\x10\x3b\xef\x38\x9c\x5a\xcd\x0e\xf9\x13\x64\xca\x99\xb3\x05\x72\xa9\x1f\x6d\x5f\xfe\xb3\xdb\x17\x79\xbd\x92\xf9\x02\xe7\x84\xe2\x86\xf8\x3d\xb8\x6c\x7c\x7d\x0a\xdb\x64\x4e\x5d\x94\x71\xd2\x18\xd9\x17\xa5\xa9\x2b\x88\x1e\xbc\x37\x3a\x88\x34\x1f\xdf\xe6\xbb\x2c\x12\xbc\xf4\x02\x62\x9a\x5b\x34\x50\x08\x85\xda\x10\x5e\xe1\xc2\x98\xc0\xe7\x2f\xb2\x5c\x1d\xa5\x05\x32\x56\x87\x3b\xc8\xbc\xf8\x02\xd8\x31\x85\xf9\x04\xd7\xc0\xca\x73\xcd\xc8\x18\xb9\x86\xf7\x08\xe5\x04\x14\x9b\x79\x74\x25\xf3\xde\x4a\xe6\x73\xbe\x98\xf6\x1e\x67\xdc\x83\x44\xdc\x90\xb5\x6d\x7b\xe5\x02\xd3\x37\x08\xf5\x16\x94\x8d\xf3\x42\xb2\x61\xb3\xbf\x06\x48\x02\xb9\x5c\xa1\x1c\x9b\xb7\xa8\x45\xd3\x9c\xdc\x67\x39\xd2\xe8\x5c\xd6\xdf\xcd\x9f\x56\x70\x97\x20\xf5\xf8\xc7\xdd\x3a\x17\x9d\x20\xab\xf0\xd2\x45\x97\x1e\x3b\x94\xa3\x38\xb2\x72\xc6\x91\x9a\xb7\x79\x33\xfe\x7b\xc5\x4a\x58\x70\xbc\x5d\x20\xac\xe7\x73\x6b\xad\x3c\xe0\x53\x61\xa7\xcc\xf3\xe5\xcd\x7d\x14\x05\xb2\xf3\x5d\x72\xe5\x6f\xa4\xbe\xb7\xc1\xd8\xde\x05\x5d\xa1\xb6\x1b\xe6\xf8\x1b\x45\xe2\xfe\x40\xc9\xb3\xbf\x8d\x61\x9f\xfd\xe6\x99\xe7\x83\x29\x7c\xee\xd0\x0b\x7a\x7b\x48\xd0\x80\x3f\x9f\xcc\x44\xe6\xe0\x7d\xfe\x40\x71\x32\x06\xfa\x3b\xf5\xf8\xa6\xae\x03\x2e\xae\x09\x77\xf5\xb4\x09\xc2\x0d\x31\x61\xcf\x7c\x5c\x37\xd7\x6a\x35\xb3\x72\x74\x81\x6b\x64\x8e\x05\x4e\x90\xce\xfd\xe9\x97\xa9\x47\x17\x68\x20\x46\xc1\xb3\x09\x2e\xd1\x20\x27\x85\x5e\x43\x05\x66\xd1\x3c\xcf\x2f\x51\x56\x91\x55\x30\x02\xf4\x7c\x32\x63\x59\x26\x46\xc5\xbc\x19\x8d\x16\xa3\x15\x8a\x8d\x85\xda\x02\x78\x85\x2b\xcc\x50\x9b\x25\x09\x06\x78\x09\xdf\xbd\x54\x04\x26\x92\x21\x0d\x68\xc4\x43\x87\xac\xf6\x99\x7c\x25\x49\xf9\x64\x40\x29\x1b\x40\x89\xaa\x88\xed\x5f\xb4\xd1\xd5\x4a\x57\x96\xd4\x0a\x91\xe5\xb8\xd2\x87\x63\x58\x22\x97\x68\xb7\x18\xeb\x04\x8f\xd9\x6f\xcd\xa9\x3a\xab\xa9\x38\xdb\xe4\xac\xa0\xeb\xe9\x99\xda\x47\xf2\xa8\xee\x72\xb1\x3d\x4b\x7e\x3b\x62\x6e\x5f\x8e\x7e\x9b\x9c\xad\xaa\xa6\x58\x43\x8a\xde\x6b\x7a\xb6\xa9\x9a\x72\x3d\xfe\xad\xd1\x34\x83\x07\xa3\x76\xab\xee\x89\xf9\xd6\x9d\x35\xef\x83\x0c\xd5\xb3\xac\x36\x3e\x23\x80\x41\x67\x7d\xbe\x94\x0f\xb5\xbc\x21\x50\x04\x2b\x84\x3e\x72\x41\xd4\x54\xfc\xd8\xa1\x2c\x19\xf8\x95\x72\xac\xb1\xf6\xfe\xa2\xbb\x84\xa6\xb1\xd2\x3a\x31\xa7\x2f\x61\x72\x91\xa1\x07\xa5\x64\xeb\xe0\x12\xd8\x12\x16\x19\xe0\x32\x83\xa4\xde\x96\xbb\x51\xa0\x00\xc8\xa9\xe8\xc9\xf0\x02\xf3\xf1\x92\xd3\x7c\xfd\xa6\x2c\xee\xf5\x4f\xe7\x23\xae\x99\x36\x95\xea\xe0\x05\x30\x60\xba\xcc\x0d\x15\x82\x72\xaf\x40\xed\x3f\x70\x99\xb0\xe7\xc2\xa2\xf5\x2d\xc2\x08\x4f\x47\x1d\x55\x60\xa7\x72\x1d\xec\x69\x2c\x98\x14\x1c\xfd\xe6\x27\xda\xcd\xce\x80\x52\xc4\x2b\xad\x90\xeb\x64\xe5\x88\x76\x4e\xaa\x81\x7b\x01\x1c\xc1\x7e\xcf\x85\x37\x80\x5c\x2e\x43\xdb\xfa\x7a\xde\xac\x24\x1c\x8d\x97\x3b\xbd\x28\xfa\x7a\x2a\x3d\x1e\x93\x83\x1f\x7b\x37\x23\x9f\x14\xf5\x2c\xd8\x55\x4f\x06\x63\x5d\xf9\xda\x12\x26\xb6\xc9\x3c\x99\x4d\x15\xf3\x33\xf1\xe9\x72\x78\xe8\xe0\x6d\xed\xfc\x38\x27\xb3\x1b\x2a\x20\xba\xa0\xa6\x22\x88\x97\xd0\xf0\xb4\x66\x6e\xbc\x24\xbf\xb9\x7d\xa9\xe7\x22\xa6\x13\xcf\x83\x9c\x80\xbd\x93\x54\x79\xa1\x99\x7c\x56\x79\x9b\x6f\xca\x5b\xd4\xb6\x98\x8d\xed\xe6\xf3\xae\x42\xd5\xac\xdb\x96\x13\x59\xd0\x6e\xcb\x5e\x41\xb7\x61\xa1\xe0\xae\xe7\x1f\x64\x0a\x76\xd6\x4c\x84\x39\x15\xe5\xb7\xcb\xd8\xc7\x56\x0e\x75\xe4\x54\x1e\x2a\x27\x69\x86\xc0\xa8\x5d\xe1\x0f\xa4\x3c\x79\x85\x3f\x9f\x78\x91\x9c\xd6\xb9\xd0\x66\x7e\xf2\x65\x40\x39\x99\x31\xc5\x0d\x95\x9d\x5c\x1f\xf0\xc3\xb1\xc9\x8f\xec\xd4\x69\x6d\xb8\x3b\xc3\x7e\xc8\xf1\xa3\xe6\x41\x0f\xac\x53\x5f\x00\xf7\x7d\xdf\x5e\x8b\xd5\x93\xa6\xdf\x59\xe8\x0f\x50\x7b\xc2\xf2\xde\xf4\xd2\xa0\x58\x48\x64\x6b\x19\xec\x26\xb1\x10\x94\xab\x9d\xa2\xf4\xfd\x8a\x1d\x25\xb7\xba\x87\xac\x93\x16\x99\x99\x88\x19\x4e\xe2\x35\x18\x89\x4a\x5e\x40\x9e\x4f\xae\xd1\x9b\xe3\xfc\xb0\x15\xbf\xb7\xa1\xf3\x34\xcd\xc3\x10\x0e\xfc\x83\x37\xea\x0a\xf2\x26\x43\x7b\x07\x21\x10\x83\x2d\x6b\x16\x08\xae\xc4\x77\xfa\xa1\x4e\x3f\x2f\xbb\xee\x1f\xc0\x59\x38\x6d\xea\xa7\xf9\xf5\xde\x5e\x57\xca\x34\x53\x2b\x80\xc7\xf7\x6a\xe1\x83\x57\xab\xa2\xba\xbe\xa6\xdc\x7d\x01\x1b\xbf\xdf\x83\x5e\x1e\x84\xc8\xad\xfd\x22\x2f\xe5\xe5\x2b\xef\x6c\x39\xa4\xf3\xaa\x2c\xee\xcf\xcc\x19\x92\xf7\xb5\x90\xb7\x74\x55\xea\x9b\x7c\x7a\xf6\xdb\x91\x92\x91\xcb\x7a\x47\x57\x02\xc4\x63\xd9\xbc\xeb\xd3\xa1\x79\xd3\x41\x2c\x20\x6b\xde\x19\x6f\x4e\x77\x45\xfb\xa4\xe4\x18\x00\xa5\x37\x9f\x76\x87\xe8\x29\x08\xa7\xec\xa8\xab\xa6\x3d\x4f\x83\xce\x6f\x42\x41\xc0\xee\xb6\x66\x2d\x01\x5a\xe8\xee\x7e\x55\xc2\x59\x59\xc6\xb6\xcd\x9d\x4e\xe7\x77\x6b\xb6\xaa\xda\xfd\xb8\x26\x95\x97\x9f\x88\x91\x03\x23\xc3\x35\x68\x39\xc0\xcb\xd6\x9e\x18\x1d\x7c\x1f\x7a\xdf\x18\xb9\x78\xbf\xf7\x77\x74\x83\x14\x5c\x12\x38\x14\x61\xc5\x9f\x34\x08\x33\xd9\xdf\xbe\x6e\xd7\xf9\x53\x77\x08\x91\x23\x20\xe2\x00\x01\xe1\x1e\x01\xd1\xe1\x01\xfe\xb5\x67\xda\xea\xde\x7c\xa8\xc5\xbc\xcd\x7e\x0f\x8e\xd3\x3d\x44\x94\x52\xe9\x10\xd9\x41\xd6\xe8\xc4\x34\xbb\x47\xaf\xf3\x32\x76\x9d\x97\xd1\xeb\x4a\xbf\x5c\xaa\x2b\xd0\x16\xd1\xc1\xa7\x2d\x2e\xa3\xb7\x61\xe7\x2b\x53\xc4\xfb\xea\xe0\xa5\x65\x30\xaf\x28\xd1\x5f\xa3\x71\xe7\x0e\xf4\x62\x9b\x5d\x7d\xb7\xdd\xec\x7c\x4a\x97\xa4\xeb\x30\x63\x9c\xc4\x74\xee\x42\xd9\x13\xf6\xfb\x87\x76\x9a\xe9\x1f\xda\x2d\x27\xaa\x7e\xe5\x46\xfd\xaa\xc9\xf6\x21\x0d\xac\x19\xbd\x2e\xd6\xb6\x58\x7d\xe6\x19\xad\x7a\x3a\x35\xf3\x8d\x67\x24\x51\xba\x5b\xde\x66\xd0\x93\x4f\x3c\xdf\x29\x88\xd7\xf7\xcd\x8e\x72\x94\x7d\xa7\xbf\x46\x9e\xba\xaa\x12\xbf\xa2\x6a\x57\x8f\x06\xb4\xbb\x33\x8d\x33\x5c\x8a\x6c\xbe\x40\x98\x09\x94\x81\xa2\x57\xcc\x2f\xe4\xff\xbe\x5a\xa0\xa9\x2b\x21\xa0\x00\x70\xfa\xb9\x20\x95\x18\x5f\xb3\x72\xad\x1c\x23\x06\x11\xe0\x9f\x5c\xed\xfc\x5a\x74\x22\x29\x1e\x5a\x6d\xf5\xf8\xff\xcf\x91\xa8\x4a\xfa\xe7\xfc\xd8\x37\xaa\x40\x76\xf2\xf6\xd5\x96\x8a\xee\x42\x3a\xf0\x73\xbb\x83\x07\x76\x03\xb7\xa7\xec\x19\x5c\x3c\x2a\x83\x99\x03\x19\x97\xc4\x94\xe6\x87\x80\x00\x12\xf2\x7d\x73\xb1\xc0\xbf\xae\x58\x71\x92\x4c\xd1\xb1\xdb\x73\x08\x89\x36\x56\xc6\xba\xb9\xb5\x01\xc3\xc7\x6e\x03\xe3\x2a\xe4\x7d\x51\x22\x7c\x22\x71\x67\x2e\x74\x20\xee\x9a\x61\xaa\x75\xf7\x78\x9f\xe5\xf4\xa7\xfe\x8c\x6b\x5c\x6b\x40\x00\x50\xaa\x36\xdc\xab\x29\x74\xdc\x54\xec\x85\x1d\xc2\x01\xd6\x40\x71\x25\x84\x90\x5a\x5c\x66\xe5\x7e\xdf\xf3\x1b\xf8\x7a\xd2\x63\x92\x71\x99\xa6\xf2\x66\x77\x6c\x34\x70\x43\x47\xdb\x01\x46\xd8\xc4\x89\x0f\x65\x73\x52\x28\xd5\x97\x74\xdd\xe1\x48\x39\x42\x8f\x31\xa4\x22\x9c\x0d\x3d\x8b\x07\xc5\x2d\x59\xd5\x4a\xc8\x22\xfd\x93\x69\x0b\x6c\x84\xbd\x97\xed\x29\x58\x89\xc3\x8c\x64\x72\x9c\x91\xfc\x6d\x32\x12\xa3\xe4\xb7\x3e\x23\x99\x44\x18\x49\xdb\xd4\x46\x1c\xe6\x1e\x3d\xb6\xd1\x4b\xab\x20\x1c\x9d\xd0\x60\xcc\x92\x4e\x78\xe8\xaf\x6c\x93\x25\x65\x73\x7b\x4d\xb9\x1f\xb9\xe9\x19\x2e\x87\xea\x97\x09\xf3\xf0\x71\xac\x9c\x55\x23\xc4\x56\x57\x36\x47\x14\xad\xdb\x00\xad\x0f\xcb\x36\xde\xb4\x71\x10\x09\xd4\xab\xdc\x75\x46\x2b\x18\xa3\xed\x33\xdd\xbe\x8e\x38\x8c\xf7\xc0\xf0\x8b\x43\xe6\x32\x4d\xda\x09\x03\xbc\x69\x33\xbb\x30\x7b\xfb\x7d\x0c\x50\x0c\xb4\x12\xcf\xfe\xf6\xfe\xd9\x58\xd0\xda\x82\x8a\xed\xc4\x71\x33\xf6\x92\xd3\x1b\x56\x0b\x7e\x4f\xe6\x0b\x93\x8d\xb9\xe2\xf4\x07\x76\xfd\x7d\xb9\xa6\x9f\xc9\x51\x47\x05\xc9\x22\x28\x98\xbd\xfb\x6f\xee\x5f\xe7\xb7\xf4\x00\x60\x67\xd8\x12\xe6\xc4\x68\x79\xb0\x8e\x40\x30\xa1\x07\x62\x5e\x2e\xc6\xa5\xac\xc8\xcf\x5b\x31\x2f\x17\xca\xbb\x52\x7e\x1f\x01\x73\xf7\xe5\x05\xd3\x88\x59\x14\x2b\xa8\x06\xfd\x54\x26\x44\xee\x9c\x21\x83\x41\x8f\x46\x46\x1c\xb4\xb5\xd9\xe0\x8b\x09\x7e\x90\xfd\x9b\x52\xac\x13\x38\x4c\x45\x8b\x90\xdf\xbd\x17\xaa\x26\xd9\x58\x2c\xbf\x9d\x29\x06\x9d\x1f\xaa\x90\x86\x35\x7d\xd7\x1f\x5b\xc7\xff\x35\x36\x06\x40\xfc\xed\x4e\xaf\xd5\x6c\xf3\x43\xa3\x10\xf8\x02\x21\x0b\x88\xe2\x70\x12\x77\x8a\x95\xb9\x55\x7c\xd6\x4e\x0c\x7c\xe0\xc4\x5b\x81\x6f\xa3\x83\xcc\x12\x30\xc2\x26\x78\x65\x68\x8c\xba\x25\xef\x44\x2f\x31\xba\x94\xa8\xde\x38\x2d\x2b\xbe\x17\x64\x78\x81\x6f\x04\x79\x90\xe2\xd4\x74\x82\x97\x51\xa4\xd0\xa9\x2c\x44\xc5\x59\xf4\x65\x37\x91\x55\xb4\x10\x58\x81\x0f\x7c\x6f\x23\x11\x6b\x2a\x46\x23\x7c\xa4\x16\xc9\xd3\xe2\x6b\xe8\xf3\x52\x90\xf9\x62\x10\x00\x60\x2e\xd5\xec\x7d\x12\x31\x97\x5a\x47\x9b\x5f\x0a\xe5\xc2\x71\x08\x16\xd5\x3a\x4a\x51\x2c\x7a\x88\xa0\x98\x77\xa1\xaf\x1f\xcb\x7e\xb4\xc9\x32\x4a\xc0\x07\x97\xbf\xa8\xd6\xf4\x4a\x64\x13\x84\xbe\x26\xff\xfe\x6f\x69\x4a\x9f\x93\xff\x3d\x31\xce\x57\x57\x4a\xee\x1c\xe4\x69\x6a\x70\x7b\x15\xb4\x69\x0e\xd1\x8e\x8e\x1c\x7d\x06\x72\x94\x75\x0d\x3b\xce\x70\xa1\x0f\x9e\xaa\x56\x38\x23\xc2\xe0\x93\x98\xe7\x0b\xc2\x2f\xc3\xfa\x39\xce\x5d\xa8\x4d\xad\x9c\xb9\xd9\x26\xbb\x13\x8a\x45\x91\x62\xb5\x81\xfe\xe2\xf3\x1a\x46\x24\xe6\x6c\x41\x6a\xdc\xa4\x69\x33\x16\x06\x2e\x96\x90\x37\xc2\xd3\x81\x86\xf8\xac\x0d\x42\x61\xab\x0d\xf6\x7a\xe6\x19\xfc\x64\x95\x1e\xa2\xaa\x32\xf7\x82\x22\xa0\x41\x48\xae\x05\x2b\x1b\x3a\x50\x10\x48\x0d\xc2\x72\xf0\x0d\x78\xa2\x99\x71\x13\xd6\xa2\x6c\x4e\x6d\xbf\x32\xb4\xc0\x0a\xea\x0a\x12\x5a\xbb\x48\x1e\x61\xd5\x9d\x87\x76\xc2\x40\x39\x21\x67\x72\xc7\xe0\xc3\x28\xba\x17\x08\xd3\xfd\xfe\x5a\xf8\x04\x77\x29\x70\x24\x75\xd4\x67\xa1\xe2\x48\x06\xb0\x87\xbd\x35\x7d\xe3\x3a\x13\xce\x5b\x20\x85\x3a\x6c\xfd\x19\x9d\x66\x11\x37\x77\x30\x3a\xdd\x2b\xc5\xa3\x1c\x1f\xf6\x53\x1f\x75\x01\x73\x51\x37\x2d\x11\x1d\xac\x2b\xf9\x65\xc6\xe3\x29\x9c\x32\x8e\x24\xcb\x67\x84\x00\x47\x55\xf6\x7b\x2e\x57\xbf\x43\x6b\x94\xf5\x73\xd0\x49\xc0\xd4\xef\xc5\x83\x20\x49\x56\x37\xd7\x00\x3e\x7c\x56\x6d\xce\x80\x01\x42\x89\xb1\xbe\x7e\xda\xb2\x82\xfa\xc9\x56\x6d\xe4\xc4\x7e\x9f\x64\xda\x50\x8d\x92\xd6\xb8\xaa\x04\xdb\xcc\xf8\x96\xf8\x91\x59\x57\x86\x39\xe3\xf7\x1e\xbc\x95\x11\x57\x9c\x56\xb8\x8f\x06\x18\xfa\x68\x98\xa7\x28\x4d\xb9\xbf\x67\xd3\x94\xb7\x2b\x00\xc2\x28\xd1\x43\xdb\x46\x70\x7b\x3f\xa9\x29\xff\x28\xba\x40\x31\xda\xec\x1f\xa6\x71\xf1\x22\xa2\x3c\x4e\x24\x86\xae\x21\x79\x10\x48\xbd\xc0\x34\x1a\x6f\x9a\xd2\x21\x31\x28\xc2\xea\xc7\x1b\xed\x1e\x2f\xff\x7e\x0d\x6c\x90\xfa\x1b\x9a\x52\x7f\x7e\x9b\x0b\xaa\xfe\x52\x47\xc8\x0b\xa7\x7a\xa4\x03\xca\xac\x14\x7d\x53\x53\x15\x90\xfe\x4a\xe0\x77\x82\x3c\x78\xb9\xae\xde\x8a\xae\xf1\x95\x43\xfc\x07\x24\xe9\xb6\x2c\x08\x5d\x40\xf8\x03\x9b\x7d\xd4\x84\x89\xa9\xe8\xe3\x29\xfc\x1f\x33\xcf\x43\x5a\xf8\x41\xb3\x81\x07\xfe\x5c\x2c\x5c\x52\x1f\x45\x20\xcb\x9e\x0f\x0c\xf1\x40\x60\x08\xd1\x9e\x35\x80\x4c\x05\xd6\xd0\x18\xae\x49\x3e\x83\x6d\x27\x05\x66\x45\x50\xa7\x9e\xc3\xc9\xb7\xaa\x3f\x1a\x53\x1e\xb0\x11\x1f\x3e\x65\x25\x9a\x65\xf9\x5c\x2c\x22\xd9\x3e\xad\xaf\x27\x6e\xc8\x32\xd3\xb6\xe4\xac\x39\x63\x1a\xdb\x53\xb2\xcc\xc2\x0f\xcd\x6b\x8c\xae\xc8\x0d\x2e\x48\x64\xa4\x70\xac\x6b\xb2\xcc\x60\x06\x10\xae\xf7\xfb\xac\x06\x17\x11\x81\xa5\xd0\xe7\x00\x46\xf7\xfb\x61\x56\x77\x5a\x0a\xa7\xac\xc0\x2b\xe2\x8d\xd6\xb6\x8d\xad\x3d\x02\x3a\x5c\x10\xa7\xcd\x6f\xec\x5f\xe1\x87\xb5\xfd\x50\xfd\x85\xa6\xf6\xcf\xa9\x7b\xbd\x1a\x7a\x23\xdc\xef\x0b\xf5\x53\x7f\xa1\x3d\x52\xc2\x1b\xbf\x71\xa9\xd5\xac\xbd\x6f\x85\x37\xd6\xbc\x57\xe0\x6f\x68\xb6\xc1\xa5\xf0\xfc\x83\xe4\x7e\xc2\x25\xae\x71\x2e\xe9\x45\xed\x81\x7c\x4f\xf5\xad\xa4\xb9\x3a\x81\xbe\x26\x93\xfd\x3e\x51\x47\x95\x96\xb9\x53\xc3\x32\x5a\x27\x3a\xb9\xc6\x2d\xe5\x37\xbd\xe7\xb3\xae\x6f\xb0\xdb\xf2\x72\x8d\xf6\x7b\xc0\xd9\xcb\xd5\xf4\xde\xe6\x1f\xa9\x76\xac\x63\xc8\xf8\x03\x75\xdf\x70\xe4\xb4\xd9\xad\xde\x66\x35\x9a\x16\x69\x5a\xf8\x1d\x3e\xbf\xe8\x36\x6d\x1d\x41\x72\x38\x15\xaa\x69\xd8\x68\xd6\x97\x41\xc5\xd6\x01\x34\x02\x1f\xe7\x75\xcd\x6e\x4a\x94\x3d\xb4\x38\x47\xb8\x21\x1e\x5c\x68\xa1\x10\x1a\xcc\x45\xed\xf1\x97\x59\xa1\x59\x87\x15\x29\xe7\xc5\x62\xf0\x41\x64\x2b\x34\xcb\x1a\x32\x9c\xe0\x7a\x5e\x2c\x08\x1c\xd5\x02\xaf\x70\x8e\x1f\x5a\x84\xa6\xf0\x70\x65\x16\xa5\x91\x9b\x76\xbc\xac\x9b\x1d\xe5\xa4\x1a\xbf\x7b\xf3\xe6\x03\xc2\xb5\x37\xcc\x0f\x42\x45\x2f\x96\xe4\xef\xe6\x8c\xd5\x0a\x2e\xce\x2d\x9f\x5a\x4a\xdf\x85\xff\x75\x8f\xde\x98\x4b\xc9\x4b\x94\xc0\x91\x59\x87\x9b\x20\x07\x12\x47\x07\x62\x7a\x6a\x52\xce\x7e\x3f\xfd\x06\x37\x64\x72\xd9\x3c\x67\x2a\xd8\xcc\x5c\xfe\xcd\x68\x84\xea\x8c\x62\xfd\x78\xde\x2c\x74\xca\x00\xcc\x74\xf2\x87\xd0\x71\xcf\xa5\x82\x28\x67\xdf\x4e\x5f\xe3\x15\x99\x5c\xae\x9e\xe7\xa6\xba\xd5\x68\x84\x8a\x8c\xe2\x7c\xbe\x5a\xd8\xdc\x03\x2e\xf4\xc2\x1b\x5f\xec\xbe\x4a\x53\x3b\x03\x92\x77\x89\x39\xa2\xda\x22\x25\x48\x48\x2e\xfa\xc1\xf7\x42\xd2\x39\x32\x1e\x5a\xdc\xc8\xff\x15\x1d\x5b\xe3\x4a\x31\xe8\xc1\xf2\xe1\xbe\x3b\x92\xe7\xda\xee\x12\xe7\xe1\x75\x90\x0a\x11\x3d\x68\x70\x7f\x79\x25\x60\xfd\x37\x9b\xd3\x85\x35\x47\xdf\x92\xc9\xe5\xad\x63\xb6\x6e\x95\x34\x5b\x13\x31\xbf\x5d\xe0\x2d\xe1\x38\x6b\x48\xb6\x26\x35\xf2\x28\xdb\x37\x62\xb6\xb5\x79\xc2\xb3\x35\x9a\xbd\x13\xd3\x6c\x6b\x73\x8f\x67\x6b\x84\xd7\xc6\x86\xc0\x68\x8d\xa6\x6b\x34\x24\xe4\x1d\x24\xa0\x6d\x14\xb3\x07\x5b\xbf\x02\xbd\xdd\x2b\x79\xe0\xe1\xc3\x34\xed\x3e\x91\x9c\xea\x8a\xbc\x15\xd9\x21\xa2\x81\x1b\x00\xac\xc3\x1b\x28\xd4\xa3\x1d\xe6\x75\x83\x9a\xfe\x09\x93\x37\x93\x32\xcf\x17\x08\x7f\x2b\xb2\x0a\x17\xb8\x99\x17\x0b\x3d\xbd\x2b\xbc\x41\x68\xd0\xfb\x2e\x31\xfc\x71\x82\x20\xa1\xb2\x65\xe3\x1d\x47\xaf\x01\xb8\x6a\x95\xe5\xa5\x4e\xd3\x8c\x66\xe6\x87\xb7\x76\x92\x7c\x7f\x62\x62\x5b\x35\x22\x4d\xdd\xdf\xd6\x71\x7d\x87\x50\x9b\x09\x5c\xc0\xd5\x47\xb1\x97\xe8\x64\x4b\x26\x97\xdb\xe7\x2b\xb3\x68\x5b\xb5\x68\x72\x8e\x6a\xc1\x9b\x95\xa8\x78\x32\x04\x4f\xcb\xd5\x7c\xbb\x00\x27\xcb\xce\x20\x38\x82\xfb\x3d\x27\xe0\x47\xc0\x48\x23\xff\xd9\x8c\xaf\x7e\xf8\xfe\xea\xfd\xf2\xd5\xcb\x0f\xbf\x7f\xf3\x2d\x52\x29\x94\xd2\x94\xf9\x97\xda\x77\x42\xc7\xc7\xae\xc9\x2b\x01\xf0\xba\x35\x6e\xd0\x20\x27\x6b\x48\xbf\x85\x19\x59\x2b\x2f\xf3\x36\xca\x12\x30\x9b\xc0\x75\xa8\xf8\x03\x8e\x66\xdf\xab\x44\x47\x70\x1a\x19\x9a\xea\x9f\x14\x3a\x86\x30\x28\xe5\x38\xce\x31\xc3\x85\x9f\xdf\x35\xec\x6c\x9a\x66\xaf\xba\xca\x4b\x4b\xa5\x70\x45\x84\x4e\xe1\x29\x59\x4d\x9c\x13\x3e\xaf\x16\xb8\x26\xe5\xbc\xea\x7b\xf1\xe6\x86\x3d\x50\x79\xa4\x3d\x1e\x9c\x41\x8f\x2b\x24\xf9\x0f\xc2\x2c\xc0\x1b\x9a\x66\xb9\x25\x99\x84\xce\x2b\xc9\x27\x3c\xc8\xd9\x98\xe6\x1a\x1c\xb0\x6e\xb5\x49\xe5\x3b\x81\x7f\x11\xf8\xf7\x02\x7f\x73\x48\xb9\xe5\xd4\x2d\xbb\x58\x32\xaa\x90\x2d\xeb\xe5\xf4\xf0\xd6\xd8\x8b\x99\x41\xca\xe6\x14\xca\xdf\x0a\x76\xb8\xae\x6e\x69\xd4\xbf\x56\x40\x2c\x31\x6a\x6d\x7c\xc1\x43\xeb\x42\x41\x62\x39\xf7\xb5\x10\x3d\xe7\x8b\xc1\x0b\x91\x31\x34\x2b\xe7\x7c\x41\x7e\xa1\x19\x43\x53\xf8\x53\xae\x28\x24\xcd\x71\x8b\x98\x19\xef\x05\x75\x36\xc8\x8f\xc2\xc6\x91\x40\xae\xd0\x17\x6e\x43\x87\xe1\x48\xfa\xa8\x98\x88\x24\xaa\xf9\x17\x7f\x4e\xa5\xa4\x38\x19\xfc\xca\x36\x39\xf9\x85\xec\x41\x26\x1c\xae\x07\x35\xbd\xef\x5b\x93\xfa\x1e\x85\xdc\x0b\x55\x31\xd1\xe9\x33\x3e\xcd\xec\xa9\x07\xb2\x57\x07\x4b\x42\xbd\xad\x00\x16\x03\x9d\x77\x06\xdc\xfc\x06\x47\x94\x9c\x9c\x56\x3b\x1a\xcd\x7d\xf8\x58\x26\x22\xa3\x9d\xb1\x19\x88\x3a\xf9\x87\xd8\x26\x03\x8f\x77\x8b\x48\x62\xb1\x1b\x1c\xd5\x37\xfc\x19\x44\x5c\xfb\xab\xe7\x95\x19\x74\x77\xba\x5f\x4e\x4f\xeb\x9c\x69\xb7\x7b\xef\xa1\x89\x7f\x37\x45\x5c\x2a\x37\xff\xb1\xf7\xb7\x61\x03\x7f\x84\x1c\xc6\xca\x0a\x08\x81\xf6\xbb\x5d\x71\x1f\xcb\x18\x05\x17\xf6\x5c\x96\x5b\x20\x5b\xf0\x6d\xce\x05\xcb\x8b\x53\xca\xaf\xa9\x08\xd2\x40\x85\x59\x1e\x86\x5e\x94\xa6\xd9\x06\x0e\x4e\x5e\x4e\xa6\x4f\x74\x69\xd7\xe7\x56\x31\x01\xe6\x64\x9e\x0c\x3c\x3e\xf3\x7f\x4c\xb5\x66\x67\x60\xf5\x44\x56\x5e\x19\x5e\x0c\x0c\x54\x36\xf4\xc5\xcf\xc5\x39\x19\x18\x6d\x99\x9a\x58\x70\x2c\x71\x6e\x56\x21\x3d\xf1\x22\xae\x4c\xe6\x54\xe4\x20\x79\x4c\x08\x60\x1c\x89\x42\x44\xa3\x6c\x2d\xd7\x61\x83\x07\x0d\x29\x88\xee\x72\xb5\xf9\xf4\xb2\x60\xde\xdf\xf5\xa5\xb7\xeb\xb9\x49\xc7\xc7\x21\x5e\xa2\x9c\x33\x7f\xd7\xb3\x85\x67\x3d\x30\x8d\x96\x18\xa0\x27\x00\xe7\xab\x6f\x7c\xf6\x97\xcb\x3a\x43\x9e\x9a\xe2\x65\xe6\xff\xb0\x8b\xf5\x4f\x5a\xf1\x70\xbd\xfd\x13\xea\xe0\x09\x83\xeb\xc3\x2f\x82\x23\x81\xb1\x10\x2e\x98\x41\x6c\xbe\x52\x51\x0a\xcb\x0c\x99\xbf\x8e\x06\xe8\x75\xb7\x8b\x94\x33\x5d\xbc\xa8\x61\xb9\x7a\x53\x6e\xd5\x5a\x67\xd0\x06\x4a\xba\xb1\xa2\x3f\x7a\x36\x3c\x9a\xa6\xc6\x02\xb6\xdf\x4f\xb0\xf5\x44\x96\x53\xa0\xc2\x51\x7c\x8a\x38\x08\xa1\xa7\x84\xaf\xb0\xa6\x90\x6e\x4f\x52\xc9\x80\x59\xfa\x46\xcc\x18\x4c\xfa\x37\xc2\x10\x40\x86\x5a\x27\x39\x9b\x8c\x4f\xdf\x48\x7e\xc0\x37\x75\x7b\x89\xc4\x7a\x7c\xce\x77\xa2\x1f\x85\xe9\x98\x1b\x42\x5b\x84\xc3\xbc\x52\xbf\x44\x2a\xe9\x96\x88\xe6\x9b\xa5\x9f\xce\xbe\x13\xea\xa2\x39\x96\xc5\xea\xf7\xe2\x50\xe6\x73\xb8\xc3\x9f\x81\x34\x1d\xe6\x3f\x3f\x94\xb6\x3c\x4c\x0d\xde\x4b\x02\x6e\x12\xd6\xc5\x7a\x0b\xdc\x85\x4a\x11\xd6\x2d\x23\x6b\x92\xaf\x09\xe4\x10\x7b\xf3\xe7\xd7\x2f\xdf\xf9\x4e\xe7\x40\x79\x84\x8b\x49\x83\x02\x00\x6c\xaf\x8a\xf2\x43\xc3\xe3\x55\x23\x58\x79\x73\xda\x00\x4d\xe1\x82\x5d\x3f\xa3\x9f\xc5\xb3\x55\x55\x0a\x5e\x15\x05\xe5\x8f\x16\x2f\xaa\x55\x2e\x47\xf2\x2c\xdf\xb1\xd3\x0b\x97\x55\x49\x97\xe6\xd7\xe9\x9f\x6d\xf3\x7a\xfb\x25\x9f\xb1\x5a\x54\xfc\xfe\x0b\xbe\xcc\x1b\x51\x9d\xfe\x59\x7d\x5f\x0b\x7a\xfb\xec\x86\x96\x94\xe7\x82\x2e\x9f\x30\x8d\xfa\x53\xf7\xc5\x72\x53\x9d\xfc\xd5\xba\x2e\x4e\x2d\x2a\x1f\x9d\xde\x1d\x28\x7d\x6a\xe1\x9f\x1b\xca\xef\x97\xbb\x9c\xe7\xb7\x8f\xef\x32\x00\x85\x5c\x51\xfb\xf0\x69\x1f\x3c\x61\x42\xf3\xd5\x96\x9e\x94\xd5\x1f\xaf\xf1\x0e\xdf\x76\x8e\xf5\x21\x90\xf4\xe4\x07\xbb\x27\x3a\x61\xbd\x71\xe7\x3f\x6e\x6c\xb8\x6d\x7b\x18\x17\x3e\x79\x5d\x95\xf4\x89\x15\x97\x27\x55\xfc\xfb\xbc\xde\x3e\xb1\x62\x76\x5a\xc5\xea\x64\x3d\xb1\xee\xea\xa4\xba\xaf\x1a\x51\x3d\xb1\xe2\xfc\xa4\x8a\xcd\xf9\x7c\xe1\x1d\xcf\x93\xaa\xaf\xbf\xb0\xfa\xef\x72\x29\x24\xde\x9f\xdc\xca\xc1\x1a\x8e\xb6\xeb\x68\xc7\x77\xd5\xa9\x23\x6a\x4e\x1a\xd1\x3b\x38\x72\xdf\xbe\xff\xe1\xc4\x5a\x8b\x27\xd4\x7a\x62\x95\xab\xd3\xab\x3c\xb1\xc6\xcd\x49\x35\xfe\x49\x12\xb5\xb7\x9a\xa6\x9d\x54\xef\xf6\xe4\x9e\xb2\xf2\xe6\xbd\xa2\x6a\x27\x56\xbd\x7e\xc2\xbc\x3e\xad\xe6\xdd\x49\x35\x7f\xd3\xac\x3e\x52\x01\x79\x1b\x4f\xac\xf7\xd6\xab\xf7\x31\x4e\x25\xc6\x7c\x1c\x67\x5b\x6e\xa9\xc8\xbd\x9b\xcf\x7d\x08\x75\x79\x77\x29\xf0\xdb\x8f\x5e\x19\x31\x36\x4f\xeb\xdb\x43\x56\x4f\x8f\xc9\x45\x0b\xea\x07\x5a\xa7\x91\x3d\xc4\xf5\xc1\xd3\x79\xf2\xb3\xb7\x9d\x16\xd8\xfb\x35\x05\x0d\xe3\xf2\xe7\xdd\xb7\xb4\xa0\x37\xb9\xa0\xf6\x81\x0a\x94\x5a\xfb\x08\x86\x5e\xca\x16\x97\x25\x73\xbe\x48\xa4\x88\x08\x40\xf8\xe5\x8c\x4f\xb9\x86\x65\x9f\xe0\x12\x22\xa7\xe9\xd8\xab\x1d\x65\x4c\xb9\xb2\xdf\x50\x81\x20\xea\x55\xca\x2e\x3c\x2f\x6b\x26\xdb\xf8\x50\xc1\x26\x9a\x46\xc4\x56\x4a\xdc\x77\x60\x86\x4f\x44\xce\x6f\xa8\x48\xa4\x04\x0b\x99\x8b\xc3\x3a\xf6\xfb\xf0\x21\xee\x27\x6c\xc3\x95\x27\xcb\x30\x84\x35\xbc\xeb\x65\x3e\x1a\xa1\x6a\x9e\xfb\x72\x6e\xbe\xf0\x20\x5f\xb4\xfb\xbf\x12\xcd\x39\xdd\xb0\xcf\xd0\xa2\x94\x34\xae\xf8\x8d\xee\x5e\x25\x47\xa6\xa3\x8e\xbf\x74\x50\xfe\xe7\x72\x3c\xfa\xf7\x9f\x99\xd8\xfe\x77\x0c\xa7\x75\xee\xd2\x7a\xe3\x79\x7b\x92\x9d\x72\xcc\x42\xa6\x3d\x72\xc8\xd6\xf4\xba\xb9\x79\x4c\xe2\x09\x8f\x81\x16\x57\x1e\x94\xb2\x73\xda\xd7\x37\x82\x44\xcb\x6e\x77\x05\x95\x83\x87\xf6\x8d\x13\x5e\xf8\xb4\xf6\x6c\xf7\x5c\x2b\x4f\xf5\xf4\xf0\x30\xda\x31\xfc\x6c\xfa\xd0\xb6\x5e\xb7\x1e\x15\x8d\x8e\x71\xfa\xfe\x9c\x40\x05\xe7\xd7\xf9\x35\x8d\xb3\xd9\xd7\xbc\xfa\x54\x53\x7e\x4e\xcb\x3b\xc6\xab\x52\x76\xe8\x14\x72\xd5\x95\x45\xe3\xf4\xa9\x29\x05\xbb\x8d\xf3\xe0\x8a\x5e\x75\xd6\xec\x64\xd1\x46\x7e\x7d\x94\x31\x8e\x49\xb8\x9a\xdf\x7b\x9b\x8b\x2d\xd9\x60\xf5\x28\xaf\xb7\xf0\x7b\x8b\xa3\x5b\xa2\x38\x1c\xa7\xa1\xbc\x9b\xb4\x87\x8e\x20\x47\xe3\x35\x50\x67\x93\x90\x44\xae\x58\x82\xc5\xf1\x98\x82\x2a\x16\x53\x50\xf5\x14\xa0\x01\x6c\x2d\xaf\x2a\xf1\xe3\xbb\x1f\xb0\x88\x28\xcd\xe9\xd8\x4c\x20\x50\x86\xa6\xa6\xfc\xea\x86\x96\x02\x97\x84\x8e\xb5\x9c\x89\x19\xa1\xe3\x75\xb5\x82\xfe\xbf\xaa\xd6\x14\x57\x84\x8e\x55\x80\x0b\xce\x25\x3d\xd1\x0d\xd4\x24\x91\x82\x70\x82\x0b\x32\xbc\x50\xfe\x17\x8d\x9c\xd2\xef\x9a\xa2\x90\x53\x8a\xb4\xce\x0b\x9e\xd7\xcd\x0e\x36\xa4\x5e\x02\x39\xc6\x12\x19\x73\xd7\x26\xcb\xb1\x40\x83\x15\x21\x64\x3d\xab\x49\xa2\x7b\x92\x4c\x93\x67\xff\x92\x10\x42\x56\x1a\xc0\x21\x9b\xe0\xaf\xd0\x2c\x2b\x0d\x09\x7b\x2f\x72\x41\xb3\x07\xc8\xc8\xb8\x6e\x71\x92\xe0\x35\xc2\xde\xf7\x68\x9a\x15\x64\x08\x19\x23\x1a\xf3\x8d\xee\x19\x5e\x23\x6d\x4a\xec\xf5\x30\xaf\xb7\xea\xd6\x92\xd7\x4c\xa5\x3b\xb9\x23\x5b\xd7\xc9\xdd\x7e\x9f\x3c\x83\x8e\xa5\x69\xf2\xec\x5f\xe0\xcf\x1d\x74\x3c\xaf\xb7\xc9\x91\x46\x77\x08\xb5\x6c\x93\x15\x4e\x19\x6c\xb8\xe6\x36\x7b\x30\x4b\xa3\xa2\x44\xed\x42\xe9\xc1\xa8\xa7\x66\x8d\xec\xca\xa9\xc7\x6e\x21\xf5\xe2\x4c\x29\xf6\x97\x50\x95\x0a\x16\x55\x2d\xa8\x7a\xa1\xfe\x6e\xd1\x40\xc5\xb0\xab\xdc\xc2\x10\xd1\x60\x2e\x94\x55\x5e\xae\x68\x61\x78\x33\xd1\xec\x12\x3c\x9c\x20\x2c\xf4\x16\xf0\xf4\xcc\xcc\xaa\x92\xb4\xa3\xa0\x76\x52\xcd\x12\x3b\xbe\x64\x24\x34\x1a\x0a\xb4\xc0\x71\xa2\x7b\x9d\x60\xaa\xb3\xd8\xfa\x4d\x57\xe5\x8a\x53\x41\xbf\x0f\x0e\x50\x02\x61\x12\xca\xa6\xfd\x6d\x1f\x9d\xd8\x3b\x0f\xf1\xef\x07\x40\xcf\x2d\xe6\x2b\x44\x4b\x54\x63\xc5\x3b\xfa\x31\x13\x9e\x1a\x2c\xaa\x05\x3f\xd2\xc4\xaf\xa4\x13\xcf\x26\x38\x1f\x0b\x7e\xff\x7d\x79\x57\x7d\xa4\x72\x17\xd1\x10\xe5\x70\x13\xc0\x39\x61\x66\x0f\xa2\x39\x84\xb8\xb2\x8f\xe4\xe6\x86\x47\xb9\x7d\x04\x32\x82\x3a\xab\x96\x1f\xb3\xe1\xa8\x89\xda\xdc\x55\x78\x00\x39\xc9\x4a\xf7\xec\xc2\xc2\xb0\xfc\x4b\x82\x90\xc5\xde\x55\x27\x44\x39\x19\x5f\x89\xcc\x66\xef\xbd\x40\x90\xb5\x89\xbb\xcf\x11\x66\x23\xc2\x47\xb9\xcd\xa6\x93\xa6\x19\x1b\x91\xe4\x5f\x92\x51\xa9\xfd\x71\x65\xcd\x68\xca\x46\x24\x1f\x55\xbe\x5b\xdd\x36\x00\xa0\xc1\x25\x51\x93\x61\xea\x36\x3a\x68\x3b\x9c\x44\x61\x6d\x66\xc9\x33\xf8\x6b\x3e\x59\x80\xa7\x4e\xf2\x2c\x19\x95\x08\x73\xdd\x28\xc2\xbc\x75\xb7\x41\x81\x0b\xcb\x1a\x9b\xe3\x95\x3c\x4b\x30\x2b\x99\x00\x0a\x34\x5d\x65\x89\xfd\x91\x20\x29\x4c\xc8\x32\xab\x2c\x51\x7f\x25\x08\xd7\xf6\x51\x6d\x1e\x69\xd2\xa0\x1f\xbb\x5f\x09\xc2\x55\x09\x78\x42\xe6\x9d\xf7\x33\x41\x78\x53\xf1\xdb\xdc\xd4\x66\x7f\x24\x08\xdb\xf3\xc5\xfb\xc4\x83\x5b\xca\xa1\xcf\x3d\x1f\x7f\x62\xe5\xba\xfa\xe4\x51\x12\xee\x91\x91\xde\x79\x57\x89\x6c\x9f\xc2\x92\x74\xb4\x9d\x4f\x61\x49\x0e\xb3\x1a\x3d\x86\x82\x37\x65\x51\x55\xbb\x5f\x85\x71\x38\x85\x45\xcc\xe3\xfc\x40\xf9\x0f\xf3\x03\x70\x75\x1c\xe0\x07\x4a\xc3\x0f\xe4\xa4\xec\xf3\x03\x39\x20\xfb\xf9\xd4\x0f\x9c\xe3\x3c\x12\xea\x56\x41\x99\xf8\xcd\xef\xfd\x5e\x6d\x02\xbb\x5f\x4c\x6c\x88\xec\x8c\xca\x12\xf5\xfb\xbc\x5c\x17\x16\x49\xa6\xc5\xb9\xa1\x22\x7d\x03\x91\x71\x94\xd0\x34\xc6\xbf\xc4\x90\xfe\xf0\xc7\x77\x3f\x1c\xa0\xd2\xfa\xbb\x0c\x39\xb2\x80\x05\x31\x63\x54\xc7\x55\xa8\xe3\x2a\xe4\x71\xc5\x54\xfe\xa5\xce\x2b\x85\xc4\x52\x18\xb0\x62\x82\x16\x8c\x0d\xc7\x74\x63\x2c\xc7\x45\x40\x48\x09\xe7\x27\xaf\xc5\x7b\x6a\x6e\x20\x59\x93\x3b\x8e\x47\x6a\x33\x68\x50\xaa\x0f\x27\xd4\xea\x1d\xe4\x7e\xb5\x4b\x85\xc7\xfa\xf2\x8e\x96\xd6\xb7\x2f\x3b\xbc\x20\x70\xd5\x5e\xb3\x72\xad\x9b\xeb\x4c\xab\xb0\xd3\xfa\xe3\xbb\x1f\x4c\xf6\x02\xd7\xa3\xa1\xbd\xe6\x0f\x76\x59\xc5\xea\x29\xa4\x67\x84\xf5\x46\xc9\xd7\xeb\xb0\x83\x89\xeb\x59\x72\xa8\xaf\x30\x76\x4b\xa9\x22\x16\x26\x98\x40\x59\xe8\xc0\x6d\x7e\x64\x7e\xe4\x57\xb1\x37\xfd\xcf\x7b\xdd\x4a\x53\x3d\xa8\x58\xc5\x27\x8e\xab\x6c\xb3\xd2\x72\x0d\x8e\x60\xe4\x4f\xa3\x94\x3d\x03\xcf\x3f\x89\x58\x7e\x31\x6d\x3c\x85\x32\x56\xe0\x7e\x6b\x08\x62\xee\xec\xc6\x9f\xf5\x7f\xe7\xf0\xbf\x7f\x95\xff\xbb\x37\x3f\xcd\x7f\x89\x3d\x4c\xcf\xe6\x9f\xef\x17\xcf\x6e\x70\x3f\x8e\xc4\xb8\x08\x90\x8b\x7f\xff\x1f\xaf\x72\xb1\x1d\xf3\xbc\x5c\x57\xb7\x19\xda\x4f\x70\x96\x7c\x96\xdc\x06\x9d\x89\xe9\xef\x52\xb1\xff\x5f\xc8\x85\xda\x5c\xfc\x3b\x6a\x55\xd4\x63\xfd\x4f\xa3\xdd\x5a\xde\xc0\xc2\x08\x47\x40\xa2\x1e\x21\xe6\x75\x8c\x98\xd7\x47\xe9\x2b\x3b\x4c\x5f\xeb\xde\x2d\x60\x40\x4e\x76\x94\xc7\x87\xa3\x01\x7e\x8d\x58\x30\x06\x85\xde\x7b\x5a\xd0\x95\xa8\x78\x96\x5c\xe7\xb5\xe4\x66\x04\x49\x92\x01\x50\x5b\x02\x12\xf3\x95\x10\x9c\x5d\x37\x82\x66\xc9\x96\xd3\x4d\x82\xfa\x94\x4f\x7e\x09\x34\x44\x44\xa8\x62\x78\x17\x3d\x7a\x15\xed\xaa\x5d\x2d\xf9\xaa\xee\x45\xa4\xc6\x0b\x2c\xd7\x81\x2b\x45\xaf\x8a\xad\x59\xff\xbe\xec\xf6\xc8\xae\x1e\x45\xf2\x56\x49\xa0\xb9\x44\xa5\xa2\x56\xd3\xdc\x11\x5e\xc9\x50\xa7\xa4\x75\x44\x56\x49\xa2\x08\xeb\xc0\x51\x4b\xec\xb2\x80\x0a\xa3\x81\x48\x53\x01\xee\xd6\xa0\xe6\xd4\x23\xe4\xf4\x8e\x55\x4d\x2d\xb7\x4d\x50\x7c\xaa\x43\x43\x3d\x59\x57\xad\xf4\xd1\x9b\xd4\xf2\x7e\x22\xd4\x07\x68\x65\x95\x5e\x1b\x90\xf8\x65\x47\xca\xfc\x96\x0e\x04\x11\xee\x00\xfe\xed\xd9\x6f\x9e\xe1\x04\x94\x87\xbc\xff\xd4\x64\x01\xb1\x6f\xa4\x40\xf3\x8e\xde\xbc\xfc\xbc\xcb\x92\xff\x9b\x8c\xf8\x28\xc9\x66\xe4\xd9\xfe\x37\x28\x41\xb2\xfc\xa1\x72\xe2\x50\xb9\x67\x7f\x7b\xf6\xb7\x67\xcf\x6e\xa4\xfc\x60\x3d\x54\xd8\x88\x64\x74\x5c\xd3\x9c\xaf\xb6\xfb\x7d\x92\xa0\x51\xc8\x34\xc8\x49\x89\x5c\xfe\xd1\x35\x1a\xd0\xee\x1a\x51\x84\xfd\x75\xa1\xea\x98\x83\x2f\xa0\xfa\x86\x42\x03\x07\x78\x82\x7f\xac\x91\x60\x75\xa9\x59\xdd\xde\xb6\xf6\x3d\xf0\x3a\xbb\x71\xe6\x6f\xf6\x31\x6c\xde\xa9\xbe\xb0\xd4\x33\xa8\x4c\x56\x6c\x07\x14\xe9\xbf\x52\xa2\x50\xdc\x34\x6c\x3d\xcd\x33\xd4\x0e\x82\x6a\xdd\x5c\x08\x93\x55\x0c\xf7\x1b\x31\x49\x9f\x0e\x6f\x69\x6f\x1e\xbf\xb0\x27\xc1\x84\xfd\xe3\x9d\x39\xc4\x92\xb9\x55\x1d\x3c\xce\x9d\x75\x69\x94\xcf\x8a\x57\xfb\x7d\x56\x41\x1e\x00\xdb\xae\x64\xbe\x82\x6e\x21\x94\xa6\x34\x73\x05\x50\x7b\x98\xdf\x32\x6d\x25\xf1\xb6\x61\x50\x71\x5e\xcb\xdb\xa8\x71\x9a\xe0\x0b\xc9\x74\x96\x3d\x81\x28\xa0\xa9\x92\xf6\x39\x70\xe8\xea\x6f\xcd\xad\xc7\xcb\x63\x3e\x12\x23\xd8\x94\x5f\xc2\xf2\xc5\xdf\x44\xf0\x06\xc3\xb9\x39\xce\xf0\x3d\x3e\xb1\x07\x98\xbd\xfa\x49\xcc\x5e\xc7\x77\xe8\x9f\xc4\xe9\xc5\x2c\x20\x4f\x61\xe5\xfe\x49\x8c\x92\xd2\x17\x3f\xc2\x17\xb1\x18\x5f\xc4\x22\x4a\x6f\x7f\x2b\x6b\xe0\x99\xc3\xd7\xa2\xa4\x2a\x9d\x2b\xd1\x71\x94\xb1\x8d\x4e\x4f\xbd\xb9\x34\xbe\x4b\xf7\xb8\x75\xd9\x0c\xd9\x01\x25\x08\xb2\xe3\x82\x60\x03\xaf\x5e\xe4\x45\x71\x9d\xaf\x3e\x2a\xc8\xc9\x2d\x6c\xc2\x53\x9b\xc0\x91\x7a\x32\xd5\xf2\xa9\xa4\x21\xa0\x05\x0a\x4f\x22\x76\x8c\xe1\x10\x1f\x38\x17\x15\xae\xac\xde\x0c\x68\x7a\x92\x60\x4f\x7f\xf6\x44\x75\x12\xc8\x26\xde\x71\x59\x04\x12\x42\xb0\xa7\xed\x86\xf5\x1d\x52\x1d\xb3\x73\x48\xa5\x30\x82\x24\x30\x9e\x89\xc7\xf3\x80\xd4\xbc\x47\xeb\x9d\x05\xda\x49\x95\x0f\x31\xce\x52\x46\x9c\xa9\x7f\xac\xca\x14\x4d\x93\xc4\x7d\xc8\xfc\x3e\x55\x9c\xdd\xb0\x72\xe0\x62\xc7\x33\x1b\x6e\xb0\xaa\x8a\x51\xf2\xec\x59\x32\xa2\xe3\x6d\x55\x0b\xd9\x73\x4c\xc7\x72\xec\x5a\xf1\x31\x95\xaf\xe4\x6f\xa4\x72\xd7\x68\x85\x2f\x11\xca\xb0\x05\x6a\x5d\xc2\x9d\x95\x8b\x94\xea\x6f\x63\x9e\x89\x79\x7a\xca\x09\x1b\xc9\x81\x8f\x4a\xd8\x2f\xca\x2f\x14\x3a\x49\x18\xa6\x11\x1b\x49\xc7\x17\xd4\xd4\x93\xa6\x49\x55\x7a\x22\x34\x83\x67\x2e\xfa\x97\xee\xf7\xf4\xeb\xff\x09\x2d\x74\x99\xeb\xb0\x42\xb6\xc9\xb2\x73\x1d\x3f\x6e\x9c\x05\xae\xca\x35\x97\x15\x7d\x35\x4e\xd0\x7e\x7f\xe8\xed\xbf\x8e\x27\x89\xbc\x58\xbb\xef\x5f\x55\xd7\xac\xa0\x67\xef\xf3\x4d\xce\x59\x02\x05\x48\x50\xe0\xc5\x96\x57\xb7\x34\xf6\xe6\xcf\x70\x7d\xd4\x67\x6f\xb7\x60\xf4\xe8\x59\x71\x74\x4c\x7b\x26\x87\x6f\x39\x26\x18\x3b\x8c\xd4\x33\x06\x75\x5d\x68\xed\xd9\x92\xdb\x63\x24\x50\x7b\xca\xd9\xe8\x39\x15\x3e\xe5\x32\x39\x70\x65\xd8\x9f\x2a\x9a\xe2\xd9\x4a\x23\xda\xb9\x17\xb5\x71\xcd\xf9\x42\x7f\x14\x13\x5d\x19\x3f\xb2\xb5\xbf\x8f\x34\x23\x31\xa3\x53\x6a\x4e\x93\xc5\x08\xb2\xaa\xfd\x36\x7a\x85\x35\xff\x0d\xf8\x7a\x5d\x01\xdc\xe3\x21\x7d\xb4\x35\x59\x2c\xde\xb6\x41\xe6\x81\xe5\x1c\x57\x65\x96\xc0\x9f\x2e\x7f\x7d\x12\x10\x3d\x31\x16\x9c\xdd\xdc\x48\xe6\xa5\x57\x0e\x5c\xcb\xe3\xd5\xb9\xfc\xdb\x47\x6b\xf3\x8a\xc9\xca\x5a\x5c\x06\x9e\x30\xd1\x24\xcf\xff\x78\xe2\x1d\xb0\x76\x71\x5a\xd3\xdb\xeb\x82\x02\x6f\x0c\xa0\x8c\x28\x04\x29\xd6\x43\x5a\xae\xab\x1f\xdf\xfd\xf0\xc1\xf6\x2a\x4b\xfc\x1e\x26\x18\xbe\xd4\x2b\x06\x15\xd3\xcf\x82\xe7\x2b\x01\x76\x8d\x2b\x7e\x53\x83\x29\x0c\x84\x59\xe3\xab\x82\x2b\x52\x8e\x6f\xab\x35\x2d\x6a\x5c\x93\x72\xec\x39\x39\xe1\x86\x74\x5b\xf7\x9a\x96\xbb\xba\xc6\xc3\x89\x95\x59\x9b\xf1\xf2\x23\xa5\xbb\x6f\xd5\xde\x74\x9e\x78\x3f\xe5\x45\x43\x6b\x29\x11\x34\x72\x4e\x3d\x6f\x9c\x43\x02\x9f\x3f\xa8\xf8\xc6\xd1\x51\x0a\xd6\x8c\x94\xc0\x72\x35\xbc\xf8\xae\xe2\x71\xf4\xad\x47\x8d\x93\x5f\x5f\xcc\xf8\xf9\xc5\x74\x22\xe7\xe7\xc2\x37\x52\x9e\x5f\xc4\xcd\x94\x22\x98\x1d\x64\xdd\x40\x4d\x8f\xf1\x9c\x2e\x4c\xa8\x58\x89\xa0\x83\xac\xbe\x5a\x09\x76\x47\xff\x19\x7b\xe9\x9f\xb6\xea\xea\xdf\x57\x6c\xc5\xab\x82\x5d\x9b\x90\xab\x61\x63\x47\xf3\x3d\x24\xe0\x04\xdf\x81\x34\xcd\x86\x99\x1f\xdc\x53\x23\x97\x3c\xc4\x04\xda\xd9\x9a\x77\x9c\xee\x72\x4e\x3d\xa7\x4d\xb7\xab\x30\x8c\xa4\xde\xe6\x45\x51\x7d\x7a\xf9\x73\x93\x17\x28\xab\x71\xa3\xe4\x7d\xbf\xbf\x48\x4d\x2d\xa7\xab\xea\xa6\x64\xbf\xc4\x24\xec\xda\x00\x0e\x6a\x6e\x2c\x0c\xf0\x3b\x30\x50\x57\x23\x80\x24\x7a\x2d\x5c\x95\xeb\x1f\xaa\x3c\x96\x54\xf7\x1f\x6c\x48\x57\x0c\xed\x81\x79\xde\x22\x89\x39\x92\xdf\x80\x93\x05\x30\x99\x7c\x0c\x12\x1d\x5d\xe3\x87\x55\xc3\x39\x2d\x85\xf5\x40\x9b\x82\xee\xd4\x40\x2a\xa2\x2c\x31\x6d\x77\x0b\x26\x08\xeb\x47\x92\x4b\x7d\xe4\xab\x8e\xd9\xf5\x50\x69\x2b\xec\x21\xcb\xfe\x1e\x2a\x6a\xfc\x20\x6c\x2f\x94\xcf\xdf\x29\xbd\x4f\xd0\x69\x0c\x75\x3f\x74\xe1\x51\xae\xe1\x20\x2b\xb0\xab\x8a\xfb\x0d\x2b\x7c\x37\x2e\xc3\x1d\xfc\xca\xa2\xe7\xaf\x73\x6f\x1f\x80\x68\xdd\xe6\x35\x4c\x61\x94\x23\x56\xdb\x17\xa6\xdb\x94\xd3\xa2\x54\xfc\x36\xec\xa6\x6c\xf1\xbe\x0f\x2f\x8c\x20\x77\xf7\x59\x99\xa6\xac\x4f\xc5\x15\xce\x77\x29\x65\xb6\x82\xfd\xe2\x53\x86\x38\x18\xeb\x11\x4a\xe2\xe3\xb3\x2a\xc2\x1c\x0a\x81\x7e\x82\x59\xaf\x2e\x85\xf8\xdf\x39\xa2\x26\xad\x85\x17\xb7\x6e\x7c\x86\x0c\x24\x4b\x85\x0d\xd0\x60\xac\xf7\x26\xc5\xbe\xd7\x1b\xbd\xaa\xcc\xbf\x26\x04\x9e\x3f\xf8\x5e\xc6\x55\xbb\x40\x2a\x6b\x85\xa1\xb5\xdf\x55\xbc\xbb\x74\x38\x4c\x29\x14\xae\xc0\x21\x52\xc3\xb5\x84\xcd\x75\x16\x26\x9c\x93\x6a\x5e\xb9\x64\x29\xe6\x35\xae\x3b\x9c\xbb\x97\x7a\xc2\xc4\x75\x3b\x27\x16\x3e\x22\x16\xbb\xd2\xdd\x62\xf2\x89\xae\x0e\x70\x06\x20\xda\xf1\xd2\xc5\x62\x72\x5c\xd9\x6d\x61\x73\xa7\xd7\xa0\x4a\xcb\x91\x77\x6b\xea\x7b\x86\x03\xce\xec\x90\x29\x22\xc9\x62\x44\xd2\x97\xc4\x95\x6b\xb0\xf2\x5b\x01\xfd\x81\x47\x57\xf4\x2c\x79\x45\x1c\x25\x3a\xfa\x85\x5f\xa6\x43\xbc\x0c\xf9\x3d\xf2\x59\x84\xfa\x4a\x19\xe9\x91\xaf\x64\x91\x93\x89\x9e\x1f\x4e\x75\x9a\x12\x21\x4a\x9d\x1e\x81\x4d\x85\xfa\x81\x49\x79\x95\xef\x8e\x41\xa4\x6e\xf3\xfa\x20\xb1\x81\x4a\x20\x84\x98\x42\x44\x6e\x2d\x02\x6b\x60\x1f\xdd\x54\x7d\x00\xd9\xf4\x50\x37\xa7\xbb\xee\x0b\xf6\x0a\xaa\x74\x08\x25\x42\xb8\xb4\x79\x39\x64\x3b\xca\x4d\xaf\xd7\x90\xcd\x25\xa0\x7a\x14\xc2\x6e\xc5\x7a\x60\xc5\x21\x15\x05\x3d\x33\x48\xc9\x53\x6e\xc1\x45\xcd\xcc\x1e\x8c\x6e\x3d\x21\xb6\xf0\x89\x8b\xd8\x1d\x96\x3b\x5f\xda\x3b\xd1\xd5\x3f\x4d\x46\x2a\x7f\xca\xe9\x9d\x83\x10\xc6\x83\x8e\xe8\x91\xfb\xb2\x7b\x3d\x9e\xb2\xf9\x4a\x32\x19\x84\x6a\xa4\xc3\x98\x77\x6d\xe7\x2e\xed\xec\xd6\x38\x83\xfd\xf5\x24\x1a\xea\x3e\xf1\x43\xdd\x27\x0b\x15\xda\xd1\x47\xb9\xf8\xfa\x22\x0c\xab\xd7\x3d\x87\x0d\x42\x3f\xef\x0a\xb6\x62\x42\xa1\x07\x0f\x2f\x34\x58\x05\x64\x69\xd7\xd9\x09\xc6\xb4\x84\x74\x78\x55\xbe\x66\xe5\xcd\x7b\x29\xed\xe7\x82\xd6\xc4\xd3\xa9\x88\x03\x65\x0c\xd0\x09\xa4\x8d\xa9\x2d\x64\x71\xb5\x93\xe3\xad\x89\x38\x76\x12\x79\x78\x7b\x78\x77\x77\x85\x1b\x95\x59\xb3\x20\xc9\xb3\x65\x53\x36\x35\x5d\x2f\xd7\xcd\xed\xed\xfd\x92\x72\x5e\xf1\xe5\x2e\x17\x5b\x75\xa1\x2c\x41\x29\xfc\x6c\x0a\xcf\x13\xb8\x32\x21\x8f\x7f\xa5\x70\xa8\x38\x9a\x32\x80\xd6\xab\x08\x97\x95\xa2\x69\x45\xf8\x7e\xff\xd0\x1e\x1b\x78\x9a\x66\xb5\x86\x62\x1f\x25\xcb\x42\xbd\x4d\xf0\x83\x94\x8d\x85\x85\x75\x9c\x56\xe3\xf0\x41\x8b\xb0\xf7\x99\xea\xd0\xa3\x1f\x61\x50\xcf\x16\x2d\x42\xb8\xb1\xd8\x68\x00\xef\x90\x1b\x34\xf8\xee\x27\x28\x98\x63\x34\xa8\xb3\x15\x4e\x4c\x2f\x65\x1f\x56\x38\x31\xad\x9b\xda\x71\xa3\x40\x12\x57\xae\x8f\xb8\xc2\x2b\xcb\x02\x64\xc6\x25\xdb\xbd\x05\xca\xb4\x6b\xba\x04\xd0\xbf\xde\xbd\x9c\x78\x03\x03\x95\xa2\xbb\x35\xa6\xe5\x0d\x2b\xe9\xf7\xe5\xa6\x32\xb8\x72\x42\xc7\x15\x1d\x28\x36\xde\x34\x45\x21\x07\xa9\x37\xf5\xe8\x02\xe1\x2e\xd8\x9c\xe4\xe7\x8b\xef\x74\xb9\x69\xde\xe2\x43\x4d\x0e\x18\x60\xc5\xd5\x94\xab\xb4\xbb\x1a\x12\x80\x85\x73\x37\xce\xd7\x6b\xb8\x01\xbf\xab\xf8\x4b\xf8\x38\x13\xb8\x76\xce\xe9\xcc\xcb\xd7\xa7\x32\x13\x25\xdf\xd2\x0d\x2b\x59\x79\x73\x96\x9f\xc1\xfe\x3b\xb3\x4d\xf0\x33\xc9\x2c\xc3\x33\x8b\xd9\xde\x88\x9a\xad\xe9\x59\x5e\x9e\xa9\xea\xcf\x58\x0d\x19\xfb\x40\x94\xa4\x6b\x39\x6f\x46\xcd\xaf\x94\xe2\xf2\x0f\x15\x78\x3f\x24\x21\x1b\x64\x44\xd6\xce\x79\x9e\x84\x27\x50\xa3\xe8\xc8\x75\x82\xf5\x33\xeb\x7b\xc0\x32\xa3\xbf\x0a\x64\xc3\xa0\x01\x63\x2a\x07\xde\x5b\xf7\x4c\xef\x2a\xb0\x23\x60\x1f\xe5\x22\xcc\x05\x46\x1d\xd2\x2d\xf9\x1d\x12\x19\x9d\xf3\x05\x1a\x8b\x4a\xfe\x31\xba\x58\x60\xf9\xcf\x57\x0b\x04\x78\x35\xb7\x55\x53\x86\xa8\x32\x8a\x1b\xfe\x42\x58\x91\x87\x16\x6b\xe6\xd3\x2c\x34\xa7\x75\x55\xdc\xa9\x40\xac\x57\xf9\x2e\x13\x08\x37\x44\x0c\xd8\x38\x97\xa7\xbd\x21\xf2\x0f\x64\xe1\x2c\xf5\xd1\x6b\x40\xf4\x0b\x8f\xde\x86\x28\xb8\x71\x81\x0d\x22\xc6\xf7\xeb\x69\x39\x1a\x61\x18\xc2\xdb\x8a\x95\x62\xba\xc2\x66\x2b\x4f\x57\x2d\xde\x12\x85\xf2\x37\x30\x18\xf1\x16\x25\x47\xf2\xa9\x5b\x30\x7f\x34\xaa\xed\xf5\x29\xe4\xae\x09\xc9\x5d\x65\x82\x24\x86\x17\xf8\x96\x1c\x38\x0f\x83\xdb\x34\xcd\x76\x36\x25\x7e\xbf\x00\xd9\x68\x8c\x70\x4d\x7c\x56\x38\x3c\x78\xae\xe4\x74\x13\x9e\x3a\x24\x09\xd0\x5d\x48\x80\xee\x3a\x04\x68\xdd\x22\x5c\x8d\x01\xd0\x57\x91\xa1\x3b\x84\x0b\x72\xe7\x51\x1f\xbc\x33\x0e\x3f\x91\xbe\xdd\x2a\x1f\xb2\xfb\xa3\xc4\x20\x91\x42\x0c\xd3\xe2\x7e\x8b\x37\x8e\x22\x1d\xb8\xb9\x60\xda\x6e\x48\xe3\x93\xf8\x6b\xe2\x57\xe3\x9e\x2f\x8f\x36\x7d\x0d\xcd\x69\xca\x79\xd3\x23\xf9\xdd\x4d\xd4\x3e\x4a\x84\x6e\xf0\x12\x61\xd5\x35\x3d\x8f\x9d\x8e\xe9\xa7\x27\x74\x0b\x9f\xdc\x2d\x6c\x97\xea\x84\xde\xb5\x8f\x94\x59\x61\x93\x5a\x44\xe5\xce\xc5\x2b\x5c\xa0\x2e\x6a\x4d\xde\xe1\x08\x23\xde\xa9\xfe\xa2\x82\x2d\x49\x31\x2e\x6d\x46\x51\x9a\x0e\x01\xac\x6b\x66\x1e\x8e\x92\x71\x32\x12\x53\xcf\x8e\x58\x07\xf9\x1a\xbf\x0c\x5d\xe8\xa1\xc5\x11\x64\xa2\xdf\x79\x85\x7e\xb7\x70\x39\xdd\xf5\x90\xba\x64\xa3\x7f\xf6\x39\xd0\x04\x29\x59\x2a\xb7\x24\x6d\x04\xd5\x89\x15\xd5\x43\xcc\x70\x09\x56\x66\x7d\xc3\xf8\xf6\x96\xea\x09\x2c\xb2\x3a\x4a\x75\x82\xe7\x0b\xdf\x57\xf9\x09\x35\x44\x81\x49\x9e\x14\x62\x1d\xf7\x8a\x38\x64\x8a\x2a\xc3\xe4\xc6\x1b\x05\x62\xf0\x9d\xbc\x80\x3d\x61\xe1\x3a\xaf\xd9\x2a\x41\x8a\xb0\x0c\x38\xe1\x63\xfa\x59\xd0\x72\x9d\x3d\x18\x0f\xd4\x7e\x60\x79\x92\x99\xb1\xac\x15\xb0\xf8\x99\xab\x10\x25\x26\x42\xb6\x24\x1d\xa1\xc4\x29\x05\x6c\xba\x88\x12\x73\xb9\x5e\x5e\xdf\x20\x6f\xdb\x41\x08\x06\x30\x02\xc7\x64\x22\xf4\x50\x7a\xe9\x1e\xbb\x2d\x43\x4c\xa0\x96\x94\x38\x1a\x4c\xac\xee\x4c\xf6\xf5\xd4\xf5\x0b\x11\x56\xbe\x4c\x08\x8f\x74\xfe\x57\x90\x66\x94\x90\xc2\x6a\x5f\xbf\x66\xae\xa9\x3b\x65\xae\xa1\x4f\x11\x07\xe1\x96\x3c\x67\xe5\xa6\xfa\x07\xb6\xbb\x46\xaf\x89\x6c\x70\x5f\xed\xfa\xe5\x3e\x43\x4f\x88\xda\xed\x88\xb1\x6b\xba\xe3\x74\x25\x77\xef\xf9\x86\xe6\xa2\xe1\xb4\x3e\x12\x90\xa3\x89\x0e\xd6\xea\x9b\xe5\xdf\x1f\x87\xd7\xe9\x84\x06\x3f\x9d\x2c\x9c\x82\x98\x73\x68\xab\xbd\x37\x94\x8e\xec\x30\xe8\x61\xbe\xed\x3e\x8f\x68\x6e\xa8\x23\x90\x84\x90\x5d\xeb\x9d\x32\x3a\x7e\xf7\xe6\xc7\x0f\x2f\xdf\x2d\x5f\xfe\xf4\xf2\xf5\x87\xe5\xb7\x2f\xdf\xbe\x7b\xf9\xe2\x4a\xe1\x7b\xe9\x77\xcb\x17\x6f\x5e\xbf\x7e\xa9\x31\xbf\x3c\x89\x7f\x0d\x8c\xd0\x9f\x69\xfe\xf1\x55\xbe\x0b\xc0\x87\x4d\xba\x59\x6b\x0f\x7f\x7e\x81\xd2\xd4\xa6\x96\x7d\x68\x25\xe3\x01\xc1\x9c\x16\x46\xd2\x80\x88\x4e\x16\x03\x06\x59\xb2\x67\x7c\xce\x16\x0a\x1a\xd0\xe2\x28\x4c\x9f\x2d\xd9\xfa\x37\x3a\x59\x10\x83\x48\xbd\x6e\xa1\x84\xad\x13\x23\xa8\x71\xfb\xc6\xe1\x44\x20\x45\x47\xac\x3e\xb3\x8d\x0d\x72\xad\x72\xca\xe0\xbb\xb8\xba\xbf\x7a\xb2\xa7\x99\xce\x88\x22\x05\x6e\x70\x2f\xe3\x5d\x23\x40\xe5\x62\xa8\xaa\x58\x0c\xd5\xb2\xa6\x4e\x11\xd9\x77\xca\xb2\xa6\x42\xa3\xae\x90\xdc\xb5\x2b\xbf\xcc\x62\xa1\xaf\x3a\xec\x67\x09\x2a\x3c\xb8\x88\x0f\x66\x0c\x06\x15\xb1\x59\x3e\xef\x11\xa1\xfa\x8f\x01\xb7\x78\x7a\x19\x27\x19\x25\x42\x2e\xb8\x7e\xb9\xdf\xcf\x17\x0e\x45\x8f\x79\xeb\xa5\x1c\xc3\x96\x3f\xef\xc6\x3f\xef\x6a\xc8\x1a\xef\xd9\x78\xcd\xde\xd0\x20\x0f\x36\x5f\xcc\x68\x94\x2b\xac\x07\x0a\xaa\x6b\xe0\x69\xf8\x3c\x5f\xb8\x8c\x2c\x64\x72\x59\x3b\x54\xc2\xd1\xa8\x36\xd9\x58\xd8\xbc\x5e\x0c\x12\x30\xa5\x26\x90\x04\xa0\x5e\x55\x3b\x2a\xc5\x1b\xc9\x20\x89\x9a\x54\x90\x98\x38\x1f\x2f\x73\x50\x62\xff\xe9\xad\x46\x08\x89\x65\x45\xb2\x16\xc2\x4e\xd9\x8c\xaa\x6a\x6d\xa6\x51\xb0\xe1\x0a\x35\xd9\xe0\xf6\xc6\xca\x9b\x58\xcd\xdd\x7a\x7b\x65\x33\x3a\x6e\x78\xf1\x47\x7a\x0f\x75\xa9\xbb\xaa\x6b\x43\x3f\x21\xd4\x19\xea\x9f\x26\x23\x95\x31\x79\x68\x10\x3e\x1f\x5a\x5f\x6b\x7a\xc8\xfe\xa9\x06\xeb\x2c\x45\x72\xcd\x66\xe5\x7c\x35\x7e\xff\xe1\xea\xc3\xcb\xe5\xfb\xbf\xbe\xfa\xe6\xcd\x0f\x8b\xe9\xd1\x3a\x40\xbc\xc0\x39\xe1\xe1\x3e\x55\xba\x0c\xe1\x03\xe7\x57\x7a\x94\xf3\x7c\x21\xc5\xd1\x9b\xc0\xfc\xe0\x9b\xae\x1b\x34\xe6\x74\xdd\xac\x7c\x4c\x63\xcf\xe5\x0b\x12\xe9\x37\x73\xb1\xc0\xb4\xc5\x35\x52\xe1\x78\x9a\x24\xba\x7b\xf5\x8f\x34\x8a\x08\x4b\x0f\x14\x7f\x24\x89\xb3\x1e\x7b\xe4\x43\x80\x99\x91\x95\xae\xe9\x17\x57\x1b\xfd\xd4\x56\xbc\xd4\x72\xc7\x77\x15\x8f\x56\xec\x45\xed\x04\x47\xd1\xb3\x67\x8d\x93\x91\xdd\x6e\xfb\xfd\x63\x05\x77\xbc\xda\xa1\xfd\xfe\xa1\x6d\xb5\x87\x8c\x70\xdc\xdd\xb1\x01\xb5\xe0\x01\x11\x09\x0d\x5a\x53\xd8\x69\x4a\xf4\xd5\x8e\x26\xda\x01\xc8\xbd\x4a\xcc\x2b\x9d\x22\xf2\x27\x46\x3f\xd5\x3a\xec\xce\x5c\xcb\xef\x68\x37\xbd\x61\x40\xc8\xdc\xbd\x3c\xe0\x3e\x8a\x4f\x94\x4a\x29\xb9\x78\xcc\x4a\x75\x0a\x4c\xf3\x9d\xf1\x2a\xa3\x17\xf4\x82\x96\x22\x74\xfd\x5e\x2b\xab\x86\xac\x71\xbe\xd0\x9f\x1f\x1c\xa8\x1b\xa6\xda\x2c\xe6\xb7\x5f\xa1\x7c\x73\xe8\xf9\xa3\x1e\x51\x11\x45\xf9\xd3\xe0\xa0\xf5\x2e\xa2\x1d\xef\x9a\x88\x4f\x10\xc4\xb5\x6e\x0e\x83\xef\x40\x2a\xca\x7c\x0c\xab\x76\x4b\xd7\x2c\x17\x1e\x91\xf9\x67\x75\xdf\xde\x47\x47\x3b\x86\x2b\xc2\xe6\x93\x05\xce\x09\xd3\xfa\xd9\x0b\x74\xd9\x1b\xf3\xa1\x9e\xdb\xf1\xcf\x2b\x6b\x3a\xce\x91\x8e\xe3\xdd\x70\x1a\x0b\xa6\x7b\xcc\x05\x05\x3e\x33\xb0\xb8\xf9\x21\x2f\xad\x7f\xfa\x32\x7b\xed\x3e\x6d\x95\x3b\x69\x67\xfd\x04\x19\xdd\x53\x29\xbf\xf7\x55\xac\xda\x21\xaa\x53\x4a\xca\x96\x0c\xfc\xdb\xd8\x26\xe3\xa4\xd2\x5f\xf4\x25\xcd\x8c\x21\x3c\xec\x7c\x6c\xb4\xef\x91\x13\x9f\x20\x8b\xf6\x2f\xe5\xb4\x99\x2b\x92\xe3\x64\xe7\xdd\xef\x75\x82\xa6\xf3\xc5\x65\xe7\xf6\x11\x51\xa8\x63\x3a\xce\xd7\x6b\x93\x38\x25\x13\x23\xc0\x17\xc3\x54\xa1\x88\xe9\xab\x1e\x4c\xc7\x90\x49\x0e\x77\x7a\x4b\x78\x7b\xe7\x12\xb4\xf7\xba\x5b\x10\xed\x76\x55\x2b\x9c\x7f\x9f\xa4\x15\x63\xd0\xaa\xbf\xb9\xa3\x9c\xb3\x35\xad\x65\x17\x61\xbd\x80\x05\x04\x6a\x0e\x63\x41\x81\xeb\x17\x16\xdd\xdb\x5d\xad\xc4\xf7\xe5\xa6\xd2\x1a\xe1\xad\xde\x18\xd7\x0e\xc4\x0e\xaf\x89\xfc\xee\xed\xd5\xbb\xab\x57\xef\xcd\x87\x83\x66\x1c\x4c\x5a\x7f\x7a\xac\x77\x56\x33\xbe\xcd\x77\x73\xba\x18\x08\x23\xe4\xae\xfd\xe3\xba\xca\x8b\x55\x53\x40\x04\xc1\x6a\x4b\xe5\x1d\x95\x69\x73\x59\x87\xa7\x10\x8a\xb3\xc3\xa6\x1a\x79\x9a\xb7\x86\x15\x62\x92\x50\x8f\x9b\x72\x4d\x57\x15\x28\x3c\xb4\x34\x05\x5e\x90\x21\x0a\x0c\xc5\x15\xd2\xaa\x8f\x1d\xb9\xd1\x26\xa0\xee\xc4\xb8\x4f\x7c\x89\x83\xe3\x9d\xd6\x06\xc2\xbe\xef\x5d\x14\xda\x13\xd6\x83\xb8\xb2\x6a\xc3\x7a\x5b\x35\xc5\xfa\x1d\x2d\xd7\x94\xeb\xdc\xca\x1c\x7e\x7c\xa0\xb7\x3b\x39\x7c\x70\x1f\x82\xfb\xce\x6e\x9d\x98\x91\xbc\x93\x71\xd4\x5f\xa7\xc3\x13\xca\xa3\x13\xca\xf5\x84\x72\x33\xa1\x83\x52\xed\x1f\x35\x9b\x08\x38\x80\x6b\xba\xa9\x38\x7d\x25\x19\xed\xde\x65\xb5\x91\xb4\x2c\xf6\x86\xd3\x35\xe3\x9d\x28\x1a\xf9\x5c\x4b\x4f\xd6\xe5\xb7\xc7\x2b\x68\x9f\x0b\x55\xa9\x3d\x2e\xf4\x33\xc0\x2e\xdc\x86\x4d\x59\x84\x3f\x2d\x72\x47\xef\xf9\xdb\x7c\x97\x38\x89\xa5\x01\x81\x14\x81\x44\x1b\xa0\x0c\x4a\x11\x62\xbf\xaf\xd3\x14\x4a\x98\xa4\x8f\x05\xec\x5d\xb1\xda\x66\xcf\xfe\x6f\x36\xfe\x1f\x08\x64\x56\x34\xd0\x60\xf6\x05\xe4\x64\x2b\xe6\x17\xf2\x3e\xa1\xf3\x66\x21\x37\xe4\x70\xd2\xca\xda\x55\xee\xb5\x0a\x59\xde\x2c\xe0\x85\xa9\xce\xdc\xa1\x0d\x35\x60\x7c\x7a\x7e\x61\x70\xdc\x8d\x44\x7b\xe4\xac\xce\xc3\x6f\xcf\x2f\x16\x76\x9e\xfc\x6b\x67\xc3\xca\x35\x4c\x65\xc6\x70\xde\x65\x53\x0f\x44\x54\x80\xa5\x0c\xbe\x51\x1b\xcc\xca\x26\x59\x87\x72\x53\xa4\x39\x23\xdb\x4a\x4f\x57\xe6\x6e\x9b\xee\xd2\xd4\xa2\xe2\x34\x41\x08\x3e\xb6\x37\x8e\x8f\x5a\x97\x77\x8f\x58\xef\x30\x50\x4f\xef\x26\x20\x71\xa8\x3e\xe2\x14\x6b\xc1\x50\x77\x30\xb8\x5c\xa2\xfc\x63\x54\xa8\x2e\x09\x8f\x09\x5a\xce\x91\xae\xec\x5c\x6e\x69\x9a\x51\xd2\x7d\x88\x30\x8f\xfb\x7e\x50\x0d\x56\xd2\xbd\xd7\xe2\x39\x48\x7a\xdd\x73\xa8\x4d\x16\x4a\x15\x30\x9b\x90\x3d\x29\x31\x79\x52\xe0\x83\x83\xf5\x2f\x0a\x4d\xa0\x0e\xb0\x2d\xb3\x27\x89\x95\xd6\x41\x83\x28\x2a\x94\x5f\x17\xfe\xca\x95\xb3\x25\x50\xbe\x29\xb5\x48\x74\xdd\x49\x57\xf0\x6e\xea\xd4\x95\xe6\x8a\xaf\xd2\xb4\x72\xbb\x71\xbf\xd7\x29\x11\xf4\xb1\x50\x1b\xb2\xee\xe6\x4c\xca\xad\x5f\x51\xb7\xe4\x3c\x5f\x98\xa3\x03\x35\xfb\x84\x48\x51\x34\x9f\x56\xc7\x53\x2b\xcb\x12\x19\x72\xa5\xa3\x6c\x51\x49\x20\xa1\x52\x87\x89\x1b\x94\xfb\x7d\x3f\xb3\x88\x1c\xd6\x8c\x13\x3a\xcd\xb4\x88\x23\x74\xfb\x51\x56\x4a\x10\x8a\x50\xcf\xb9\x15\x07\xae\x26\x9e\x66\xb2\xbb\x0f\x28\x1a\x94\x90\x28\xb1\x94\x0c\x70\x25\xb7\xb7\xfc\xd7\x8f\xc6\x7b\x76\x83\x93\x71\x22\xc5\xf7\x72\x5c\x35\xa2\xa0\x02\x17\xc1\x86\xc7\x2b\xe3\xdf\x8e\x06\x8d\xa4\xa8\xc9\x6d\xce\xca\x04\x8b\x59\x56\x01\xa2\x9f\xe9\x6b\x4e\x68\x67\x30\x15\x9a\x66\x55\x18\xc3\x6b\x9a\xcb\x49\x85\x06\xc5\x7e\x9f\x15\x44\xcc\x68\x8f\xa3\xdc\xc4\xcf\x57\x85\xa6\x07\xdf\xec\xf7\xfd\x6a\xbc\xee\xa9\x3c\xe9\xdd\x2c\xe7\x85\x9a\xc4\x2d\x29\x06\x05\x39\x50\xf5\x16\xb5\xab\x34\x2d\x40\x34\x34\x44\x68\xa5\xed\xdd\x78\xe7\x7d\x65\x06\x3f\x4d\x46\x39\x1a\xd4\x69\x9a\xad\xc9\x7d\x46\x11\x4a\xd3\x9a\x10\xb2\x76\x9d\x81\x35\xd1\x99\x8a\x94\x36\x93\x3c\x80\x4e\x7d\xba\xc1\x72\x81\xa6\x35\x56\x6b\x31\x6d\x30\x58\xeb\x2b\xec\x75\xa9\xc0\xb6\xa5\x9d\x1c\xe3\x52\x54\xbb\x1f\xe8\x1d\x2d\xa4\x80\x6d\xb6\xb3\x75\xaf\xbd\x55\x19\x3a\x70\x89\x39\x16\x68\xb0\x56\x2e\x75\xa0\x72\x02\x53\x5d\x85\x14\xdc\x60\x55\xae\x68\x87\xb5\x4c\x96\x35\x15\x6f\xa0\x23\xb5\x96\x72\x59\xbd\xaa\xca\x92\xae\xf4\xe3\x18\x31\x02\xc0\x8f\x7e\x3e\xf9\x99\x90\x9b\x1e\x22\x17\xd5\x36\xe3\xd6\x1a\x2a\xfb\x3d\xf3\x7f\x44\x76\x8c\x26\x39\x08\x61\xa1\xf2\x51\xaa\x4d\x08\xdd\xed\xf6\x0a\xfc\x12\xbd\xc4\x20\x47\x69\x9b\xef\x48\x0a\x17\xb1\x46\xd6\x33\x80\x72\x16\x60\x4f\xf3\x5b\xf1\xd6\x80\xc9\x3b\x32\x3b\xee\x5e\xba\x37\xb4\x3e\x4d\x21\x83\x4f\xb0\x2b\x84\xdd\x15\xae\xf7\xde\x8a\xc5\xba\xa6\x7d\x99\x64\x0f\x07\x95\x9e\x5b\x02\x8e\x38\x15\x1c\x76\x8d\xca\x08\x10\x81\x7a\x93\x55\x2a\x8d\x97\xda\x6a\xaa\x94\xd9\x6f\xa6\x06\xbd\xed\x40\x87\xeb\xef\x3d\x93\x08\xca\x6c\x40\x03\xa9\x72\xda\x16\x42\xad\xa7\x61\x51\xc8\x5e\xc7\x62\xf8\x23\x8a\xa3\xe0\x51\xdf\x90\xe7\xcd\xd5\xc0\x85\xd6\xba\x84\x32\x5f\x4f\xe4\xa9\x0c\xb5\x3c\xa7\x76\x5d\x32\xce\x0d\x2b\xd6\x76\xa7\xbc\xa2\x22\x5f\xe7\x22\x0f\x39\xe2\x2a\x0a\x06\x79\xef\x6e\xfe\xd8\xa6\xf8\x42\xdb\x3e\x24\xc5\x19\x9a\x14\x55\xdd\x54\x38\x7e\x0a\x77\x48\x72\x5e\xea\x3d\x2c\xb7\x87\x0d\x8a\x9b\x97\x23\x9b\x48\xad\xcd\x40\xce\x3d\xa6\x18\xf6\x38\x56\x7c\x7e\xe1\xa2\x72\xd2\x54\x4b\x78\xce\x7b\xe1\x46\xb1\xf3\xdc\x0f\x31\x92\x0c\x4c\xf7\xc1\x7e\xaf\x95\xdb\x8c\x74\xc4\x19\xc5\x52\x87\xa5\xe7\xcc\xa5\x3c\xee\xbf\xb2\x73\x50\x75\x84\x0a\xfb\x89\x6c\xc0\x33\xd6\xce\x7a\x4f\xa6\x59\xef\x11\x79\x68\x71\xc0\xf0\xf7\x4a\xe0\xa0\x2f\x48\xce\x62\x54\x07\x5c\x1b\xb9\x4d\xcd\x60\xaf\x1e\x14\x79\xd4\x66\x76\x4d\x30\x84\x17\x44\xc6\x2d\x7b\x58\x87\xb6\x36\x67\xb8\x51\x29\x5c\x6b\x67\x72\x69\x8c\x2c\x04\x99\x5b\x57\xa4\x00\xc1\x1f\x72\x7f\x0e\xf2\xb9\xfa\xb5\x20\xab\x59\x65\xfe\x9e\x5e\x67\x36\xb5\x81\x12\xbf\x0d\x67\x95\xbb\xf5\xbe\xf6\xb4\xf2\x41\xc2\xef\x8c\x22\x95\x28\xf9\x0a\x65\x54\x2b\xe9\x10\x9a\x7a\x5b\x65\x69\x6d\x5a\xd4\x32\x94\xce\x7d\xc2\xb9\xa6\x0d\x22\x6e\x35\x3a\x57\x1f\x57\xee\x33\x56\x58\x6a\xef\x74\xdc\xc2\x8b\x22\xaf\xeb\xec\x81\xa9\x00\x1c\xed\xcc\x30\x1d\x4e\x5a\x84\xef\xbc\xd0\xda\xda\xb3\xdd\x9a\x4f\xb3\x6a\x7c\x05\x1d\xd4\x40\x1e\xb8\x72\x71\x62\xdd\xa4\xa6\x47\x31\xee\x1f\x5a\xec\xb3\x46\x1a\xe2\x1e\xec\x6f\xea\xef\x90\x73\x51\xcf\x40\xa0\x9a\xc2\x9a\x9a\xf8\x29\x94\x3d\x74\xd2\x0d\xdc\x19\x10\xf7\xbe\x34\xd1\xe1\x25\x7b\xa2\xb4\x3e\xe6\xa5\xf1\xf2\xb1\x98\x49\x0f\x52\x82\x9b\xfa\x8e\xcd\x46\x41\x11\xba\xb2\x00\x33\xe4\x98\x79\x23\x19\x97\x92\x7f\x94\x93\xae\x44\xc1\x8c\x83\xd9\xae\xf6\xfb\x4d\xb5\x72\xab\xec\xe4\x5a\x30\x09\xee\x6d\x12\xe0\x16\xe1\xe5\xcf\xbb\xee\x24\x74\xc7\xaf\xc1\x68\x70\x7e\x92\x7e\xb2\x8e\x8b\x4b\x0d\xa9\xe3\x0c\x60\x8e\x4c\x2e\xe0\xb8\x89\x25\x41\x78\x15\xa4\x61\x2b\x5c\xa4\xe6\x40\xe5\xd6\x55\x16\x79\x57\x47\xd3\xa9\x00\x48\x20\x8d\xe8\x41\x4a\x79\xb0\x19\x79\xf0\xcf\xde\x74\x38\xc1\x72\xcb\xca\x7f\xc1\x96\x29\xff\xc8\x6b\xb9\xa5\x1d\xf9\xb3\x5a\x11\xda\x15\x98\x0c\x2c\x75\x4e\x1e\xda\xcb\x80\xaa\xe5\x98\xce\xab\x05\xe6\xf3\x6a\x81\x70\x39\xaf\x16\x24\xc7\x4c\xfe\x33\x9c\xd8\xc4\xc4\xb5\xac\x98\x23\x20\xcc\x9d\x8a\x6b\x94\xa6\x43\x36\xaf\x17\xc6\xa0\xdb\xad\xbf\xc1\x7c\x5e\x2f\x30\x95\x45\x70\x39\xaf\x17\xa4\x31\xc7\xb5\x6c\x33\x50\x74\xd9\x88\x2f\x27\x3c\xfb\xa4\x30\x5b\x23\x5c\x68\x07\x82\x15\x38\xbe\x86\xc2\x72\x8d\x73\x84\x29\x29\x8c\x2a\x70\xbe\xc0\xb7\x72\x06\xef\xc8\xdc\x5d\x0d\xf7\x87\xe7\xe6\x1e\xa5\x69\xa2\x73\xd5\x99\x87\xc9\x90\x90\xfb\x34\x4d\x14\x1c\x1e\xfc\x32\xbe\x97\x74\x7e\xbf\xc0\x4b\x72\xa3\x4c\xca\x92\x2b\x55\xe2\xc1\x27\xe3\x89\xe1\x6d\x24\x49\xa7\x96\x69\x9a\x7d\x82\xb4\x98\xf2\xfb\x97\xe4\x66\x9c\xd7\x7a\x7b\xc6\x0d\x9e\xd9\x3d\xc2\x9f\x83\x7d\x73\x8f\x06\x9f\xc9\x75\xf6\x59\x55\xf1\x9e\xdc\x8c\xe5\x56\x00\x13\x60\x05\x7f\xbe\xd9\xa0\xec\x33\xc2\x6f\xc8\xa1\x6a\xb3\xcf\xf8\x25\x7e\x8f\xf0\x15\xc9\x47\xc9\x34\x19\xdd\xe3\x8f\xe4\xe1\x80\x96\x75\x1a\x36\x8d\x83\x6d\xf8\x19\xdb\xda\xc3\x8f\xde\x78\x2f\xcc\x13\xd8\xb0\xef\xb1\x32\x59\x4e\x5f\x62\x79\xad\x4c\xef\x71\xdf\x16\x3f\xbd\xea\x12\xc3\x1c\x2b\xad\x01\x1c\x3c\x50\x6f\x4e\x3f\xa9\x0c\xbe\x9a\x78\xaa\x43\xb0\x6c\x07\xb7\xf3\xfb\x05\xb9\x9d\xbf\x94\xff\xbb\x5a\x90\x8f\x78\xa7\x64\x9c\x8f\x40\xea\xe5\x5f\xf7\xe6\xe2\x7a\xf8\x79\x57\x4f\x77\xf8\x36\xdf\x4d\x6f\x71\xa0\xf6\x9e\xde\x61\xa5\xa2\x9f\x3e\x18\x53\xe2\xb4\xcf\xb3\x95\xe4\x76\x4e\x17\xca\x2a\x69\x1d\x00\xb4\xdb\xfa\xa3\x1f\x19\x5e\xa4\xf7\x2d\x8e\x38\x2c\x94\x4a\xe5\x15\xd8\x06\xbe\xb4\xee\xbe\xd3\x42\x29\x89\x73\x8b\x70\x4d\x7d\x92\xff\xab\xe2\x32\x9c\xae\x85\xda\xef\x87\x10\xab\xce\xea\x0f\xb4\x96\xfd\x44\x99\x49\x74\x7c\x99\x95\x1d\xfb\x96\xec\xb1\x56\x33\xc2\x14\x49\xa2\x60\x3c\x95\x2c\x92\xb8\xb6\x45\xe5\x30\x2c\x80\x1c\xf0\x74\xb8\x67\x01\x24\x82\x52\x8e\xab\x82\x53\x3f\x76\xd4\xaa\xb6\xa7\x5d\x75\xe5\x51\xaf\x99\x04\x8d\x6f\xf3\x1d\xae\x82\xab\x81\x22\x63\x65\xf4\x9f\x72\x64\xfc\x68\x2a\xdf\x8f\x46\x65\x91\x27\x6c\x5e\xcd\xf3\x05\xf4\xbc\xd6\x3a\x51\xdb\x52\xdc\x97\x20\xab\x11\x4e\xb4\x21\x12\xd4\x5d\x09\xea\x4c\xbc\x1f\x75\x69\x95\x5d\xca\x70\x89\x06\xd7\x9c\xe6\x1f\x4d\x42\xcc\xe1\xa4\xc5\x1b\x56\x76\x88\xc8\x81\x09\x61\x9b\xac\xeb\xf2\xdc\xf7\x78\x72\x39\x6b\x9d\xed\x83\xe1\x8a\x1c\xd3\x8e\x9b\xab\xdd\xf0\xc1\x35\xc9\xc7\xcb\x90\x0b\xce\x2a\x79\x87\x83\xad\x45\x21\x64\xd5\x97\x71\xf3\x59\x8e\x2b\x27\x5f\x17\x64\x72\x59\x3c\xaf\x25\xa7\xec\xa6\xde\xaa\x85\xe0\xf9\xbc\x58\xe0\x35\xd9\xaa\xde\xe0\x1d\x59\xfb\xda\xb1\x5b\xb2\xd5\x7e\x18\x67\x0a\xf6\xd3\xfc\xc4\x77\x26\x4b\xd2\xbd\x97\xc1\x14\x52\xbe\x67\xa6\x0c\x9a\x65\x77\xde\xd6\xd9\xe1\xad\x72\xd5\xc0\xf7\x64\x1d\x25\xdd\x77\xd8\x56\xbf\x05\x6a\x8f\xd0\xf4\x76\xe6\x72\xa1\xdf\x13\x3a\xbf\x5d\xa0\x34\xcd\xee\x54\xea\xf7\x48\x1d\xf7\x91\x3a\xb2\x7b\xb2\x1d\xc7\xa9\x39\xbe\x23\xd7\xd9\x36\x64\xfe\x11\xde\x1d\xf0\xc6\x58\x1f\x72\xc5\xb8\x1f\x92\xa0\x09\x55\xd1\x43\x57\xc0\x7b\x53\x16\xf7\x69\x3a\xbc\x18\x12\xc2\xcc\x2d\xbb\x3e\xb0\xc9\xb7\x48\x05\x10\xe8\xa6\x6f\xb0\x0b\x7e\x1f\x2c\x67\x8c\x0c\x27\x53\x48\x4a\xb1\x04\xa3\xce\xf0\x02\xb5\xce\x9e\x60\xa6\x1a\xdf\xa1\xb6\xd7\x2d\x22\x67\x26\x3e\x1b\x04\x78\x81\x21\x3f\x0a\xd0\xb2\xdf\xab\xc0\xb3\xec\x41\xe5\x99\xbf\xc7\x77\xac\x66\x3a\x5d\xd8\x47\x7a\x3f\xbd\xdd\xef\xcd\x1a\xb4\xa8\x65\x69\xca\x23\xf1\xfb\x6a\x4f\x1e\xb6\xc1\x7a\xc2\x9e\xde\x9a\x8a\xea\x0c\xf4\x4f\x6f\x97\x1e\x72\x9d\xc1\x89\x5e\x28\xb3\x4c\x2d\xc2\xfe\x01\x1a\xaf\x0a\x9a\xf3\x4c\x5f\x11\xc7\xbc\x51\x6f\x71\x1d\xbc\x7d\x0f\xd9\x6c\x8f\x94\x27\x0f\x55\x39\xed\x7b\xd7\x1d\x81\x1c\x6e\x5b\x27\x97\xdd\xe2\x07\x67\xc5\x9a\x46\xad\x5e\xce\x8e\xf4\x14\xcb\x86\xb2\x83\x38\x03\x19\x45\x53\xd1\xb6\x0a\xa7\xb8\x92\x5b\xe7\x3b\x9e\xdf\xd2\x4f\x15\xff\x08\x62\x25\xca\xee\x14\x23\xf6\x89\xdc\x79\x0e\xe6\x9f\x9e\xea\xab\xfd\x44\x00\xae\xff\xe7\x9e\xd9\x3a\x5e\xe7\x08\x78\xc7\x93\x93\x29\x9c\x92\x35\xf7\x49\xce\xdc\x4f\xcd\x05\xfb\xb4\xc4\xb1\x4b\x0d\xf0\xe9\xb9\xa2\x7f\x71\x6e\x55\xab\xf6\xb8\x93\x1b\xff\x83\x96\x3f\xd5\x3e\x55\xd9\x33\xde\x17\xd5\x27\xcf\x4d\x89\xdd\x3a\xc4\xd8\xb2\x12\x6c\x73\x6f\x38\x66\x75\x0f\x67\x49\xc3\x0b\xe3\xef\x06\x76\x8a\x00\x55\x41\x3b\xae\x39\x68\x06\xd8\xce\x85\xa7\xf4\x0c\x5c\xdb\x70\xb2\x66\x6b\xd7\x7a\x82\x5a\x5f\x8d\xa9\x2e\xfa\xe3\xdf\x7f\x62\x45\xe1\x55\x80\x39\xf2\xb5\x82\xa1\x8b\x21\x35\x9f\x81\x66\x85\x5c\xc5\x73\x69\x5d\x13\xa5\x51\xf2\xf4\x35\x05\x5b\x51\xbc\xfc\xd5\x9c\xc0\x2d\x2e\x8f\x8a\xdc\x16\x3d\x84\x89\xce\x73\x80\xe2\x8b\x14\x35\xcf\x24\xff\x0d\x98\x0e\x9a\xd1\x53\xd9\xdc\x32\x95\x1a\x41\x78\x44\x96\xe8\xfc\xef\xf2\xa1\xc2\xf6\x58\x43\xac\x6e\xf0\xc2\x44\x13\xaa\x90\xcd\xfa\x50\xa5\x2e\xe8\xf0\x9b\x7b\xd5\x9b\x78\x41\x7f\x7b\x98\x0e\x7b\xfb\xc3\x8e\x01\x7c\x27\xff\xd4\xd0\x86\xae\xdd\x25\x47\x05\xe5\x6a\xdf\xd5\x72\x53\x46\x71\x73\x2a\x87\x54\x1f\x71\x99\xaf\xc7\x4b\x56\x32\x35\x5f\xfc\x0f\x11\x3d\x3e\x78\xe1\xdf\x44\x90\xdf\x91\xf6\x41\x53\x79\x89\xca\x9e\x12\x27\x3e\x33\x1e\xa2\x5f\xe9\xed\x92\xc6\xcf\x26\xfc\x54\x64\xa0\x06\x97\x6a\x84\x2b\xd2\xf4\x47\xb8\x92\x3d\xeb\x23\x03\x69\x34\x01\xcc\x49\x85\x4b\xc2\x22\x0b\x36\x17\x0b\xb0\xd9\x72\xf9\xf6\x86\x8a\x97\xc1\xc2\x67\x25\x92\xe2\xd7\x38\x08\x94\x34\xb1\x09\xce\xb8\x8e\x1b\x67\x72\xcf\x41\x39\x57\xcf\xa9\x55\x9b\x37\xe6\x01\x19\x4e\xf0\xd0\xea\x82\x79\xa0\xdb\x53\x75\x75\x22\xd4\x5c\xf0\x58\x8e\x0b\x13\xac\x86\x50\xd8\x5c\x0b\x6c\x6e\x10\x13\x01\x3e\x8c\x69\x2a\x85\xbb\x75\x2c\x2c\x06\x65\x0d\x3a\x1a\xaa\xbe\x6a\x6a\x51\xdd\xba\x58\xf5\x33\xc5\x2e\x9d\x55\xa5\x17\x9b\xae\x62\xd7\x75\x84\xba\x86\x06\x55\x31\xea\x66\xe0\x2d\x20\x06\xb8\x76\x63\x8e\x19\xd1\x45\xa1\x4a\x90\xb5\x46\x93\x6e\x60\xfe\x7e\xbf\xee\xc5\x00\xc9\xc6\x9a\x3e\x54\xaf\x08\x88\xa7\xb7\xf3\xa9\x46\x02\xce\x82\xcc\x07\x0c\x27\x1e\x64\x98\x14\x52\x91\xac\x38\xa0\xd0\xc1\x28\xf2\x2e\x1f\xc6\xc2\xc2\xb8\xf3\x1b\xa0\x62\x56\xe3\x90\x64\xf7\x1c\x73\x22\xb5\x86\x5f\xe0\xee\x03\x8b\x1a\xb5\x0a\x09\x7c\xdf\x8d\xc1\x98\x0c\x20\x25\x4d\xc6\x90\x7d\x23\xbf\x85\x45\x75\xe8\x94\xc1\x50\xd9\x71\x10\x4b\xf3\x75\xc4\x35\x0d\x3e\xf6\x2f\x4a\x9d\x3f\x99\x8e\x45\x15\x5c\x8e\xde\xfa\x74\x5b\xeb\x81\x5c\xae\x3c\xcf\xea\x6f\x99\x22\xe2\x71\x8f\x2c\x3a\xfe\x94\xd7\x57\xd7\xb0\x3f\xa5\xb0\xc0\xcc\x8f\x59\x36\xc1\xb7\xe3\xa2\xba\x81\xdf\x28\x13\x68\x9a\x39\x70\xcd\xe1\x85\x8d\x4b\xa7\x63\xf8\x03\x0b\xac\xb9\x7d\x84\xd9\x78\xc9\x6a\x68\x54\x59\x2b\xd6\x99\x2e\x84\x66\xe0\x7d\xa9\xb1\x9c\x8d\x57\x7c\x30\x84\x0c\x42\x77\x55\x69\xd9\x62\x2e\x9b\xcf\xdc\x33\x18\xdd\x52\xf7\xc3\x4d\xf3\x0b\x1d\x39\xd5\x77\x91\x66\xdd\x0f\x7e\xa0\xf9\x5d\x2c\x2d\x01\x14\x8c\xa5\x47\xb0\xe6\x20\xfb\xee\xf0\xc1\x71\x65\x1e\x3f\x3c\xa0\x3b\x86\x29\xb0\x87\x13\x50\x02\x9b\x36\xb3\x39\x9b\x11\x5e\x05\x62\x83\x11\x17\xe0\x46\x6e\xf0\xc6\x9a\x19\x6a\xc1\x1b\x49\x33\xc7\xeb\xba\x30\x68\xd9\xf5\x7e\x3f\xbf\x59\x60\xe7\x75\xcb\x8a\xf5\xb7\xef\x7f\xc8\xd0\x60\x6b\x70\x28\x7c\x15\x89\x43\xa3\xc0\x9d\x00\xf7\xe1\x04\x57\x5a\xe1\x07\x7e\xda\x75\x4d\x39\x78\x5f\x81\x4a\x26\xa6\xaa\x9b\x5c\xd2\xe7\x1b\xa3\xc6\xa0\xa3\x11\xda\x00\x22\x5a\x5e\x14\xda\x1d\x1d\xe1\xd5\xf8\x36\xdf\x65\xdb\x00\x38\x05\x7b\xdd\x3c\x00\xb4\xb1\xdc\xe6\xf5\xab\x6a\xdd\x14\xf4\x9b\xbc\xa6\xeb\x77\xca\xd1\x0a\x98\x52\x75\x1f\xf3\xf8\x7d\xcc\xc8\x43\x1c\xbe\x60\x4a\x71\x07\xd3\x62\x1a\x09\xee\x89\xdc\x49\xe7\xb7\xf9\xce\xb8\xda\x75\xc3\xf6\x3b\xa9\xa2\x63\x0c\xd1\x9c\x02\x12\x49\xfc\x0d\xe1\xa8\xb5\x8e\x33\x72\xad\xad\xde\x03\x18\x09\xcc\x4c\x02\x81\xe3\x5c\x51\x3f\x9b\xc0\xcf\xaa\xf0\x5b\x53\xe0\xa1\x85\x8a\xe2\x93\x1a\x65\x87\x7a\x53\x0b\xa6\x7f\xea\x70\xa4\xad\x52\x80\x5b\x0b\xb0\xb7\xcd\xc6\xcb\xa5\xba\xbb\xf9\xfd\x72\x69\xfc\xe4\xf8\xf8\xb6\xdf\xba\xbb\x2e\x2d\x7c\x92\xca\x91\x22\x72\x2e\x74\xf2\xf6\xc7\x19\x36\xc9\xde\xb1\xbc\x00\x40\x4a\xab\x03\x06\xef\x4f\xc5\xf4\x81\x5e\xd7\x22\x7a\x83\x97\xe5\x61\x9e\xcf\x4b\x82\x73\xe7\xd0\xe6\x2d\xae\x7d\xa6\x9c\xbb\x14\xca\x13\x90\x2b\xc5\x4a\xe8\x5f\xad\xce\xf0\x62\x9a\x8e\xef\x70\x9d\xaa\x03\xca\xfd\xa0\x5b\xce\x50\x6f\x56\xbb\x5d\x33\x18\xae\x5e\x89\x58\xc6\x53\x64\xd0\x41\x02\xbe\x57\x9e\x1e\x1f\xcf\xbf\x13\x87\xe0\x06\x28\x09\x17\x1e\x4e\xd4\xee\x73\x5e\x29\xfe\x48\x6c\x38\x28\xab\xb5\x3b\x0d\x2b\x6f\xd2\xb4\xf3\x8c\xae\x8d\xc5\x54\x98\x04\x1e\xa7\xf8\x43\x41\xa0\xbb\x52\xd6\x3a\xff\x8a\xc9\x65\xe5\xc2\x3e\xab\xd1\x08\x3d\x50\xc2\xe7\x95\xd6\xda\x5a\x05\x6b\x4e\xd6\xfd\x20\x5e\x0d\xf8\x66\xc3\x37\xb4\x8b\x42\x6e\xaa\x6b\x8c\x63\x53\x41\xde\x66\x0c\x0b\x9c\xcf\x9b\x05\x1a\x30\x52\x8c\x0b\xa6\x49\x46\x2d\xef\x82\x4f\xe5\x7b\xe5\x95\x02\xde\x99\x60\xcb\x06\x98\x0d\xcf\xa9\x4a\xb9\x8a\x0d\x09\xe9\x17\x57\xbe\x4e\xfb\x7d\x56\x7b\x2f\x51\x0b\xde\x9c\x0e\x8a\xb1\x26\x7f\x87\x3e\x40\xae\x40\x52\xb7\x00\xac\x64\xed\x1a\xa2\xda\x15\xc6\xf9\x0e\xf5\x1f\x8d\xed\x72\xa9\xb4\x33\x0c\x0d\xac\xa1\x62\x15\xa7\x99\x1b\xb2\x0a\xc8\xde\x1d\xa3\x9f\xa6\xe7\xaa\xaf\x89\x36\xeb\x07\x6d\x90\x8d\x11\x77\x8c\x16\xe1\x78\x0f\xf0\xca\x1a\xba\xcf\x3d\x1a\x71\x6e\x10\x81\xa6\x30\x63\x48\xf2\x89\x2f\xa0\xde\x77\x55\x05\x7e\x79\xb1\x21\xb7\x60\xdc\x3f\x90\x65\xc2\xa0\xa7\x29\x9c\xad\x67\xff\x92\x8d\x47\x68\xf6\x0c\xcd\x27\x8b\x10\xce\xb7\x07\xc6\x6d\xab\x53\x0e\xdf\xfd\x22\x87\x63\x06\x3b\x1b\x7a\x4e\x17\x99\x80\xa4\xcb\x96\xb0\xbd\xc8\x38\x56\x53\xcd\x65\xd5\xff\x6f\xa0\xc9\x37\x8f\x43\x93\x3f\x0d\x92\x7c\xf3\x44\x70\xea\x3c\x04\xa7\xee\x2e\x40\x07\x8f\x3c\xd7\x79\xe1\x1e\x0b\xf8\xfb\xe7\x00\x83\x5f\x76\x20\xc1\x2d\x7a\xec\x63\x81\x7c\x5d\xa8\x70\xfc\xc1\x04\xe2\xd5\xff\x3c\xb8\xf4\x3a\x02\x53\xf6\x4f\x02\x4c\x57\xa4\xf7\xe0\xec\x3c\x02\x9c\x1e\xac\xb9\xcd\x45\xea\x12\x8d\x55\x6a\xd1\x7b\xd0\xea\x34\x1a\xfa\x68\xaf\x0c\xf3\x81\x4e\x42\x16\x82\xcc\x1e\x0d\x98\xf6\xf5\x50\x5d\x70\x5a\x23\x3f\xd6\x60\xe9\xfd\xef\xdb\x71\x5a\x88\x39\x88\x45\x5f\x3f\x0e\x02\xdd\x9d\xb0\x00\x0d\x5a\x47\x28\x47\x32\x58\x05\x1f\x85\x06\x5c\x2f\xdc\x54\x8a\xb1\xe8\xd1\x74\x58\x3e\xcd\xb6\xcc\x48\x70\x4d\xd8\x84\xe6\x91\x3b\x84\x68\xc5\xe1\x63\x36\x1a\x2f\xe2\x3a\x33\x39\x22\x4d\xfc\x5c\xa0\xc0\xb4\xec\x81\x50\xce\x38\x16\x7a\x0f\x7e\xce\xc5\x02\x81\xac\xc7\x9b\x12\x65\xf2\xe7\x9c\x2f\x70\xa2\x7b\xa8\x8e\xdc\x49\x20\x10\x1d\xbe\x5b\xb2\xf8\x22\xae\xfb\x5e\x6e\x98\x0f\x7a\xed\x48\x8b\x6a\xec\x14\x64\x08\x67\x36\xcb\xd7\x6b\xbd\xb4\x07\xab\xed\x3b\x3b\x7b\xa4\x27\x0b\xa0\xab\xa3\x43\x71\x29\x3a\x1e\x55\xd1\x1a\xae\xd1\x31\xb6\x07\x84\xbc\x43\xe9\x1f\xd9\x41\x01\xa4\xef\xe6\x9f\xa6\x16\x5e\x93\xc5\xd2\xf7\x2b\x5e\xdd\x1a\xe7\x2a\xa4\x19\xff\x68\x9a\xcf\xca\x63\x96\x72\xf2\x10\xa6\x04\x9b\xd2\x76\x70\xec\xe3\x95\x91\xdd\x0c\x73\x94\x23\xd4\xb6\x3a\xd0\x4f\xf2\x85\x3a\x34\xc7\xef\x7b\xa6\x82\xce\xb8\x0d\x3a\x33\xa8\xfa\x58\x20\x1c\x03\xcb\xd5\xa9\xc5\xd2\xd4\xfc\x95\x1d\x28\x67\x33\x8e\xca\xa2\xf6\x87\x91\xbe\x63\x9e\xc2\x07\x39\x9c\xc1\x2b\xe3\x25\x29\x7c\x0b\x54\x89\x2b\x1d\xa1\xb8\xa6\x05\x15\xf4\x4c\xcc\xe9\x02\x8b\x79\xa5\x2d\xcd\x0b\xa2\x83\xab\xa2\x9e\x05\x25\x36\xe5\xb4\x1f\x99\x9e\x7a\xbb\x58\x84\x10\xe3\xe1\x39\x10\x20\x2b\xc7\xd1\x33\x4a\x0c\xde\x95\xc6\x15\x4d\x92\xc8\xf6\xe0\x20\xe3\xea\x31\xb9\x46\x84\xd0\x19\x9d\x26\xb9\x24\xe3\xca\xc5\xf7\x0f\xef\xdf\xbc\x1e\xab\xfd\xc6\x36\x92\xed\x9a\x26\x89\xca\x03\x78\xc0\xd5\xba\x53\x79\x7c\xd6\x40\x03\x59\xa6\x69\x16\x4e\x5a\xa9\x7d\xa0\x35\x2f\x75\xc0\x95\x82\xab\x4c\x29\x72\xd2\x4a\xed\x4a\xa1\xc7\xfa\x38\x76\x48\x6c\xb4\xd7\x4a\xe2\x56\xe3\x4d\x04\x6f\x28\x64\x26\x9e\x26\x65\x73\x7b\xad\x5c\x08\xc5\xec\x35\xfc\x9d\x51\xa4\x42\x7c\xdf\x6c\x32\x14\xcc\x13\x4c\xff\x15\xca\x60\xbe\x76\x39\xaf\xe5\x35\x83\xa6\x6a\xa6\x76\xbc\x29\xe9\xa1\xbc\x32\x87\x59\xea\x8e\xa7\x0d\xf5\xe2\x53\xce\x20\x47\x95\x76\xbc\xe2\x10\x17\x5e\x2e\x06\x2c\x4d\xd9\x61\x17\x0a\x31\x2f\x17\x69\x6a\x67\xbc\x5c\xb4\x9a\xc5\x3f\xa8\x81\xb6\x59\x11\x70\x45\x94\xb7\xe3\x06\x12\x0a\x2b\xf3\x3d\x58\xae\xc0\x14\x92\x45\xef\x70\x9c\x93\x07\x9d\x0b\x74\xb9\xe3\xd5\x8a\xd6\x9a\xd5\x70\xed\xf9\x2e\xfa\x95\x14\x38\x31\xd7\xa1\x21\xce\x3b\x96\x23\x97\x16\xb4\x9b\x23\x41\x7d\x63\x54\x26\x25\x32\xd6\xaf\x8c\x1d\x64\x2b\x7a\xac\x26\xf3\x51\x28\xba\x09\x0c\xf2\x76\x81\x3c\x09\xa6\xd6\x12\x4c\xad\x97\xf5\xb1\x41\x45\xe6\xb3\xe3\x9a\x77\xd0\x27\xc2\x2c\xae\x43\xa5\x75\x57\x5d\xc7\x2f\xeb\x60\x1d\xf3\xdb\xf1\x9f\x7e\x7c\xf9\xee\xaf\xcb\x0e\xe4\x40\xe0\x56\x9c\xa3\x0a\xdc\xa3\x6a\xb4\xdf\x67\x6c\x5e\x2f\x48\x3e\xaf\x17\x46\xe2\xdd\x34\x45\x71\xff\x7e\x55\xed\x7a\xd9\x20\x6c\xc2\xe7\xc3\x45\x58\x67\x31\x39\x66\xa8\xd5\x53\xd7\x5d\xcb\x83\x09\x39\x3e\x5a\x0a\x62\xfa\xb4\xbd\x5f\x43\x3a\x8c\xb2\x6e\xa4\x1c\xed\x5f\xc1\x75\xc6\x30\xf7\x37\x84\xe1\x9e\x62\x41\x21\x2c\x08\x0a\x41\xb8\xd4\x5e\xc1\x47\xcf\x6b\xf7\x2b\x18\xce\x0d\x15\x7f\x7a\xfb\x8a\xfa\x51\x49\x9e\x1c\xae\x54\x33\x2e\x66\x27\x50\x5b\x81\xf7\x10\x54\xd2\x09\xd8\x89\xd5\x64\x81\x4a\xe8\x5c\x9c\x5f\xa8\x3c\x15\x36\xe2\x58\x9b\xbe\xb5\xf0\xeb\xe2\x82\x6d\xa4\xae\xc3\x1b\x93\xa2\x26\x19\x4e\x30\xc4\xd8\x14\x64\xbe\xc0\x2b\x32\xb9\x5c\x3d\x17\x97\xa3\xd1\x0a\xb1\x8d\x3d\x3f\x76\x60\x19\x9d\xaf\x16\xc8\x09\x01\x1b\x32\xb9\xdc\x3c\x67\xbe\x07\xdf\x66\x34\x42\x92\xff\xf8\x79\x57\xcf\x37\x0b\x5c\x98\x48\xc7\xcb\x60\x0f\xd4\x98\x49\x72\xa5\x4d\x02\x39\xd1\x4a\xd4\x2d\x01\xdf\xe0\x02\x7c\x83\x6b\xab\x0e\xce\x2d\xd7\xec\x46\x47\xb6\x08\x6f\x15\x9b\x17\xdb\x79\x3d\xd1\xc7\x12\x4d\x1c\x6c\x26\x7f\x19\x2b\x32\x01\x28\x1b\xa3\x57\x7b\x9e\x5f\x8e\x46\x95\x9c\x88\xb2\x37\x11\x6c\x5e\x2d\x10\x72\xc0\x6a\x56\x97\xa6\xff\x28\xc8\x04\xa2\x77\xbd\x99\x29\x9e\xaf\xc0\xbf\x31\x6b\x08\x84\x05\x2b\xf7\x46\x64\xe3\x7f\x78\x9a\xd6\xf0\x63\xbf\xaf\x23\x40\x69\xb6\x48\xff\x95\xfc\xc0\x39\x42\x42\x21\xed\xe4\x98\xa6\xcd\x90\x90\xd8\x37\x80\x11\x18\x7b\xb1\x20\x7c\xde\x2c\xb0\xbe\x21\xe4\xdf\x6a\x63\x1e\x3b\x6f\xc7\x66\x1b\x76\x59\x10\xbb\x56\x47\xc0\x36\x3a\x4a\xc8\xd1\xa8\x89\xcf\x3b\x28\x23\x91\xe7\x41\x7a\x68\x96\x61\xfb\x9a\x49\xc6\x72\x47\x9a\x79\x16\xf2\x7e\x54\xf3\xcc\x0e\xcc\x33\x14\x89\xcd\x33\xf3\xe6\x19\x0a\xe9\x79\xae\x86\x84\xc4\xbe\x90\x1b\x77\x1e\x7b\xb1\x20\x62\x5e\xd9\x59\x96\x7f\x7b\xfc\xf6\xf6\x20\xf2\x08\x8b\x22\x8f\x30\x8d\x3c\x42\xb5\xf7\x1c\x1a\x1c\x6a\xd4\x86\xd9\x6c\xb1\x9a\x03\xcc\x3a\xb1\x65\x8a\x5d\x5c\x6d\xe9\xba\xb1\x96\xa3\xbe\xf5\xd8\xc8\x5d\x8f\xba\x4c\x2d\xeb\xfe\x3b\x02\x52\xa0\x69\xe3\x0d\x48\x83\xda\xb7\xcb\x95\xac\x95\xeb\x14\x4e\xb4\x63\x4e\xd8\x46\xa2\x81\xc4\xea\x71\xf4\x75\x1f\xaf\xf1\x09\xb7\xad\x02\x80\xda\x59\xf3\x93\x27\xa8\x86\xdf\x47\x1f\xc6\xae\xdf\x10\x0a\x67\xe0\x5c\xc5\xfc\x94\x3d\x0a\x12\xd8\xda\x9b\x27\x0e\x16\xdd\xa0\xc7\x1c\x9b\xef\xbe\xd6\x21\x32\xf1\x70\xe9\x14\x63\x55\x89\xe1\xd7\x22\xe5\x8e\xad\x9d\x64\x99\xa1\x2b\xb7\x39\xff\x08\x26\xef\xab\x5a\x1b\xbd\x23\x72\x79\xe0\x54\xe5\xcb\xe6\xa1\xb9\xfc\xb0\xf6\x26\xac\xc0\xa4\xd7\x91\x33\x51\xd0\xdc\x7c\xde\x35\xf7\xc7\x5b\x57\x67\xcd\x7c\xdf\xf3\xef\x89\x5e\xb5\x70\xb5\x72\x48\x26\x6b\x10\xfb\x01\x54\xd9\x85\x45\x5a\xbe\xac\xab\x65\xa9\xe6\x62\xb1\xdf\x67\xf2\x9f\x98\x63\x94\x45\x35\x55\x1a\x16\x30\x29\xda\xb0\x83\x98\xcc\x7f\x99\xe5\xa4\x56\x61\xd0\x2f\xb6\xac\x58\x77\xbc\x93\x04\x7e\x30\xd1\x9b\xd3\xe1\xc4\x4f\x29\xc0\x5a\x84\xc6\xd7\x55\x05\x31\x19\xaa\x35\x92\xbb\x18\x52\x5c\xb5\x19\xeb\x47\x4d\x7f\xea\x26\xca\xa2\x36\x9f\xc4\x25\xff\x9a\x4c\x2e\xcf\xcf\x5d\x68\xe2\x9c\x2f\x9c\xf2\x3b\xe0\x3b\x98\x86\x5a\x17\x19\xc3\xa5\xd1\xb9\xb7\xad\x8a\xc1\x7a\xf8\xc4\x8a\x42\x1b\x3f\x21\x56\xa2\x17\xd4\xa0\xf7\x61\x84\x1c\xe9\xd0\x7f\x30\x33\xf6\x3e\x73\xd8\x03\x72\xb5\xe6\xae\xeb\x8b\x81\x1c\x57\x68\xaa\x66\x9b\x8c\x3b\x9f\xf7\x8a\xbc\xcf\xa8\xf1\xf5\x40\x41\xc8\x4a\x19\xdb\xf4\xe0\x5f\x75\x50\x35\x2e\x65\x13\x84\x87\x17\xad\x5a\xec\xcf\x7e\xd5\xda\x7c\x99\xef\xf7\xd9\x97\xd4\x9c\xab\x9a\x91\x9f\x48\xc3\x07\x46\xc1\x8c\xcc\x17\x83\xf2\x90\xba\xa5\xff\x4c\x99\x6c\x3f\x6c\x79\xf5\xa9\x9c\x05\xbf\xa6\x74\xa0\x2e\x4d\xc9\xca\x09\x05\x6c\x52\x8e\x6f\x69\x5d\xe7\x37\xd4\xbe\xb0\x4f\x20\x45\x95\xc8\x57\x1f\xbd\x57\xf0\x1b\xe1\x9e\xd2\xaa\x74\x65\x10\xba\xcc\x38\x59\x55\x65\x5d\x15\x14\xa9\xf6\xb5\x74\x06\x22\x83\xe4\x93\x61\x86\xce\x3e\x6d\x59\x41\xcf\xb4\xe0\xc5\xca\x1b\xe5\x7e\x36\x3d\x4b\x46\x26\x0b\x1a\x08\xa4\x2d\xd6\x14\x34\x12\xb2\xa5\xa3\x56\xcb\xe3\xbb\x43\xe1\x4e\x31\xe0\x9f\xfd\xdd\x61\x13\x56\x04\xfb\x83\x1f\xd9\x06\xdd\x4d\xe0\x6a\x30\x07\x71\x96\x1d\xf9\x3e\x87\xa5\x9e\x8a\xf1\x8e\xdd\x55\xe2\xf7\x2e\x0d\x5d\x8b\xda\xd6\x1d\xda\xcf\x1d\x14\xa6\x32\x00\xa4\x01\xca\xe5\xdb\xa7\x3a\x7c\xc4\x28\x59\x7a\x70\xf5\x6f\x32\xee\x00\x09\x30\x53\x2f\x71\x85\x66\x55\x90\x18\xfd\xfd\x3f\xd4\x24\xce\x49\x37\xa0\xbc\x9a\x89\x69\xa5\x02\xca\xe3\x5d\xe9\x7e\xc0\x66\x62\xca\xd4\x07\x38\x47\xb3\x3c\xe8\xde\x9b\x5e\x66\x47\x67\x01\x28\x11\x74\x48\xfe\x56\xfe\x19\xb9\x36\xfd\x39\x30\x19\x0e\xd8\x36\xbd\x12\xc6\xdb\xd3\x25\x82\x64\x69\x5a\xb9\x56\xaf\x02\x49\x7f\xa8\x82\x6d\x2c\x56\x84\xf3\xb6\xac\x2d\x93\x91\xbc\xc8\xcb\xdf\x8a\x33\x7d\xfd\x9f\xa9\x58\xb8\xb3\xdf\x26\x23\x3e\x4a\x7e\x7b\x76\x4d\x57\x79\x53\xd3\xb3\xfb\xaa\xe1\x67\xf9\x6e\x77\xb6\xcd\x6b\x59\x7c\xc3\x4a\x56\x6f\xe9\xfa\xcc\x69\x34\xe4\x71\x60\xa5\xa8\xce\x98\xa8\xcf\x36\x8c\xd7\x42\x9d\x8e\xf1\xd9\x87\xca\x55\x5f\x9a\x16\xaa\xf2\x6c\x0d\xf1\x7e\x30\x32\x55\xb4\x3e\x5b\x37\x5c\x39\x7f\xba\x7a\xb1\x6c\xfc\x6c\x95\x97\x67\xab\xbc\x28\xce\xfe\x0b\x2c\x43\x19\xfa\x2f\x59\x83\xd8\xd2\xb3\xff\x72\xfb\xf5\xbf\xce\x14\x6d\x39\xdb\xe5\x75\x2d\x3b\x57\xa9\x12\x60\x0c\x7d\xe6\x21\xe0\x3d\x73\x90\x77\xff\x75\xb6\xad\xaa\x8f\xf5\x38\x41\x6d\x47\x3e\xbd\xc0\x8d\x7f\xf7\x34\xf2\xee\x69\xce\xcf\x25\x83\x5f\x91\x8c\x01\x54\x9c\xf6\xc3\x93\xb4\x44\x47\x11\x7a\x7f\xce\xf9\x42\x2d\x03\x28\xbd\xad\xbe\xc7\xde\x46\x10\xae\x92\x69\xb2\x4c\x08\xe1\xf2\x5b\x1b\xb4\x12\xa1\xcb\x25\x98\x8f\x07\x52\x76\x6e\x95\x14\xf2\x52\xdf\xe0\x05\x2a\x7c\xe3\x4c\xc7\x02\x68\x52\x43\x0d\xf3\x34\x1d\x0a\x14\xdd\x06\xaf\x2b\xb1\x95\x53\xaf\x59\x17\x98\xb8\x70\x33\x8c\xcf\xbe\xdf\xc0\x5a\xac\xd9\x5a\x17\xf3\x4a\x61\xe0\x9b\xce\x60\x30\xb0\x5a\xd7\xf4\x0c\xf6\xce\xfa\xec\xfa\xfe\x4c\x0d\x58\xd6\x2f\x78\x43\xcf\x36\xbc\xba\xf5\xf6\x82\xce\x6e\x09\xea\x20\x2f\xb5\x05\x86\x0a\xe0\x23\xd7\x19\x51\x9d\x5d\x37\xd7\xd7\x05\x1d\xfb\x31\x0a\x1f\x7b\xf2\x1f\xa1\x7d\x06\x59\x4e\x90\x36\x34\xca\xc2\x8e\x73\x30\x62\x78\xa9\xe5\x18\x1d\x98\xc9\xa2\x81\x99\xf9\x62\x50\x8f\x59\xad\xd9\x87\xf5\xac\x9a\xd7\xc0\xae\x49\x21\x67\xa7\x13\x8f\x7a\x8f\xac\xee\x27\xb3\x20\x88\xc8\x45\xc0\xdb\x11\x7c\xf0\xb9\xbf\x47\xfd\x73\xe4\x9a\x03\x77\xd3\x81\xeb\x5f\xea\x4f\xdf\xe6\x42\x5e\x98\x92\x47\x9c\x0b\x2f\x2d\x69\xa9\xb0\x10\x54\xf2\xc5\x98\xb7\xd5\x65\x60\x09\xf1\x53\x67\x6a\x75\x5a\xef\xa5\xcb\xc6\x89\xab\x78\x09\xb0\xa5\x68\x5c\xd2\xa6\x4f\xaa\x63\x00\x0c\x3e\xa5\x45\x83\x26\x4d\xf3\xf1\xd5\xdb\xb7\xcb\x17\x1f\xde\xfd\xb0\xd4\x4e\xc9\x6f\xdf\xbd\x79\xfb\x3e\x4d\xb3\xa0\x93\xac\x3c\x6b\xf6\x7b\xcd\xf5\x86\x30\x13\x59\xd3\x19\x4f\x17\x55\xc3\x02\xf1\x39\x67\xba\x30\x75\x68\xab\x87\x17\x8b\xc6\x41\xdd\xea\x51\x64\x82\x4e\xeb\x9d\x37\xa1\xa7\x77\xd1\xcb\x89\x7a\x72\x3f\xbd\x6f\x50\xeb\x76\xe2\x0b\xff\x62\xed\x48\xa4\x10\x1f\x12\xca\xa2\x34\x22\x67\x06\x36\xfe\xfd\x5e\xc4\xe2\x93\xa4\xb0\x77\x48\x18\xdd\xf1\xea\x96\xd5\x94\xd0\xf1\x0a\x60\x3b\x03\x1f\xee\x4d\x36\x14\x7d\xb7\x67\x13\x4b\x40\x07\x22\x22\xa3\x81\xf0\x95\xb8\x9b\x42\x85\x1b\xf8\x14\xe4\x55\xf7\xbe\xa6\x3d\x0b\x88\x40\x21\xd4\x86\x66\xe1\x23\x58\x1b\x65\x56\x01\xa2\x86\x52\x36\xce\xab\x85\x3f\xbf\xef\x1c\xee\x8d\x33\x81\x93\x39\x5d\x5c\x72\x0b\x21\x72\x69\x44\x09\x6e\xa2\xda\x0d\x2c\xa2\x75\x79\x23\x84\x08\xa7\x5b\x55\x7d\x36\x70\x7e\x75\xd8\x51\x86\xb8\x62\x75\x59\xa7\x2b\x6f\xb5\x2a\xdd\x9a\x59\x1e\x54\x03\xd3\x52\x63\x83\xd5\xd3\x58\x68\xcd\xa7\xbc\xfe\xb1\xa6\xeb\xe9\xf0\xc2\x68\x4a\x41\xe5\x25\x6f\xff\x99\x1c\x9d\xfa\x13\x4d\x05\x40\x00\x19\xbf\x6c\xd3\x37\x6c\x41\x07\x2b\x34\xa5\xa4\xc2\x0f\xce\xbd\x6f\x4a\xb1\x71\xc9\x9b\x56\x5e\x47\xff\x1e\x0a\x58\xb2\x11\xee\xe3\xfc\x99\x79\x00\x37\x5f\xdd\xce\xf8\x36\x67\xa5\x1d\x91\xca\x80\xc7\x7d\x9e\x50\xa1\x9f\x29\x57\xc1\xd6\x0e\xf8\xa1\x6d\xb1\x40\xed\x32\x44\x12\xba\x8d\xfb\x2a\x83\x98\x18\xfa\x81\x67\xbd\x67\x36\xc3\x68\x50\xa3\x5f\x62\xda\xfb\xa6\x35\xb6\x03\xff\xa1\x4e\x94\xa8\xde\xb4\xd8\x91\xfa\x69\x04\x92\x0f\x97\x80\x7f\x62\x66\x90\xf5\xf2\x4f\xfb\xe9\x0e\x47\x23\x80\x77\x91\xf2\xb4\xbc\x55\x24\xe7\x62\x9d\x8c\x2d\x24\x80\x73\x03\xbd\xb8\xac\xdc\xb7\xe0\x06\x2a\xdf\x09\x42\xe7\x95\xba\x63\xbc\x24\x9b\x98\x93\x6b\xe5\x8e\x5e\x22\xbb\xc3\xd3\x74\xc8\x32\x8e\x05\xba\x44\x6e\x87\x97\x30\x3e\x07\xef\xa0\x51\xa3\x6c\xda\x11\x77\x6d\x8e\xff\x5e\xb1\x12\x6a\x07\xb0\x20\x13\x21\xcc\x1c\x52\x53\x10\xee\x32\xbd\xc3\x61\x9c\xca\xf4\xde\xa6\xd6\x4f\x9e\x25\x2e\x25\x7f\xb2\xcd\xeb\x6d\x82\x1b\x5e\xa8\x64\xd2\x51\xf4\xa1\x2e\x11\x3e\xe8\xb9\xdc\xaa\xd0\xea\x4e\x10\x8d\xed\xed\xfa\x70\xa8\xb4\xba\x2b\xbf\x25\x4b\x2f\xbe\xf8\xdb\x27\xc7\x17\x9b\xf0\xd5\x47\x52\x42\x9d\x12\x8e\xfb\x65\xf9\x87\x7d\xbf\x4a\xb3\x0f\x69\xa0\x61\x81\xa6\xb5\x8b\x36\xf5\x82\x54\x38\x11\xfe\xaf\x3f\xd4\x2a\x44\x91\xb7\x36\x98\xc6\x05\x85\x1e\x76\x3d\x03\x23\x80\xcd\xe4\xda\xab\x6e\x60\xfd\xa7\x35\xcf\xdd\x73\x46\x2b\xb1\xb6\xaa\x58\xc0\xd9\xe1\x05\x48\xde\x69\xea\x43\x79\x30\x87\xfd\xe4\x29\xd2\x02\xa8\x68\x16\xfa\xe1\x79\xe3\x3e\x90\x7d\xbf\xc4\xb5\xe1\xa6\xb6\x80\x03\xf3\xf2\xe7\x26\x2f\x00\xed\x28\x40\x9d\xf3\x10\x3b\x3a\xd9\xb2\xcb\x27\x6c\x18\xe1\x29\xb8\x9f\x9e\x81\x4c\x87\x6c\x3f\x29\xb7\xde\xe1\xf8\xf5\x23\x71\xe7\x8f\xc5\x61\xf7\xb6\x65\xd7\x5b\x36\x0e\xa4\x2c\x19\x0d\x83\x50\x17\x68\x65\x84\x94\xc9\x7a\x17\x7c\x08\xe3\x35\xa3\xe3\x5d\xb5\xcb\xd0\x38\xc4\x7e\x33\xb0\x6a\xf6\xbe\x99\x52\x0b\x50\xa3\x9c\x73\xa7\x34\x80\x8b\x13\x6d\x8b\x69\xcc\xbf\x21\xaa\x1f\xee\x61\x18\xf4\x1f\xcd\xab\x83\xc8\x2a\xb2\x2f\x1d\x60\x47\xbb\x3d\x7b\xf2\x82\xec\x56\x07\x4f\x25\x62\xe6\xd0\x99\xa5\xde\xcb\x82\x74\xdd\x45\xa7\x94\xb7\x51\x44\x12\x61\x11\x59\x87\xd3\x55\x75\x53\xb2\x5f\x28\xd7\xfe\xe5\xbc\x56\x79\x0a\xb1\x0a\x3f\x10\xee\xce\x72\x67\x5b\xf2\x5a\x00\x9a\xa3\x2a\xae\x07\xb5\x73\xe5\xe7\x24\x07\x84\x0b\x95\x1f\xab\xd6\x62\x48\xae\x75\xc6\x8d\x9f\x6e\x0b\xfc\x3d\xda\xce\x58\x08\x9c\xad\xbe\x51\x2c\xea\x9d\x1a\x81\xf5\x3c\x2d\xfd\xef\x7c\x11\x4b\xd9\xf9\x55\x88\xfd\x69\x53\x76\x26\x09\xee\x04\x63\xd8\xd9\x68\x20\x20\x03\x17\x44\x52\x91\x06\xe1\x95\x87\x44\x53\xca\x4b\xbe\x48\xd3\x42\x72\x85\x9a\xed\xdb\x00\x90\x75\x33\x86\x3c\xc9\x6f\x36\x59\x81\x66\xcd\xb8\x6e\xae\x6b\xc1\xb3\xc2\xa5\xb5\x9e\x36\x83\x95\xa2\x6a\x70\xe9\x95\xf3\x62\x81\x37\x06\x95\xcd\x7f\x81\x1b\x34\x60\x23\x92\x4c\xa7\x90\xf6\x77\x9a\x8c\x56\x96\x6a\x8f\x98\x45\xf9\xcd\x71\x72\x9e\x20\x39\xb1\xc7\xe1\xdf\xe2\x3e\xc0\xe4\xa1\xc5\x11\x16\xa6\x01\x0e\xc6\x4b\x27\x27\x64\x03\xbe\x0f\x3e\x29\x40\xbc\xe8\x26\x43\x89\xb8\x41\xa9\xdc\x77\x2a\xe6\x9c\x87\xba\xc5\x9c\x54\x3e\x3e\xa5\xbc\x10\x3c\x48\xf4\x9e\xaa\x59\x29\x73\x8b\x8c\xf9\xf1\xce\xa5\x53\xbd\xbc\xe5\xd5\x0d\xcf\x6f\x6f\x73\xc1\x56\x9e\xe2\xab\x3e\xbb\xbe\x3f\xfb\xf1\xdd\x0f\x67\xab\xbc\x2c\x2b\x71\x76\x4d\xcf\x40\x9d\xf2\x89\x89\x2d\xf3\x62\xa0\xc7\x67\x6f\x0b\x9a\xd7\xf0\x16\x34\x25\x2a\x26\xba\x54\x26\xe5\x5a\xd0\x1c\xe2\xa1\x19\xc9\x41\x57\xc9\x20\xa6\x80\xb0\xd6\x9f\x22\xff\x8e\x39\x04\x77\x8e\x19\x99\xc0\x81\xe6\x87\xb1\xf4\x38\x52\x82\x4d\x8c\x8f\x2c\x47\xa3\xd6\x7e\x2e\x90\xe8\x7f\x9b\xa6\x6c\x34\xb2\xbc\x3c\x21\x84\xb5\xda\x58\xf5\xec\x6f\xe3\x67\x37\x8e\x99\xad\xfb\x36\x22\x8f\xe1\x2c\xe5\xf1\x50\xa8\xc9\x3c\x82\x9a\xcc\x35\xad\x9f\x60\x36\xba\x40\x8e\x95\x74\x3a\x15\x73\x14\x2a\x84\x00\x16\x6b\x50\x92\x2a\xa2\xb2\x69\xc2\x09\xa2\x81\xd0\x15\x33\x38\x64\x19\x27\x0f\x2d\x9a\x97\x0b\xf2\x90\x2b\x1c\xbb\x16\x97\x84\x23\xa3\xaf\x2d\x23\xb2\xa4\xa6\xa4\x6a\x1e\xca\x79\xb5\x18\xf4\xaa\xce\xd3\x34\xcb\xa1\xca\xbc\x95\xfc\xb6\x24\x87\xfb\xbd\x69\x42\x43\xe5\x69\x9c\xc2\x56\xb9\x6a\x3a\x9f\xa8\x1c\x61\x59\x9e\x70\x4f\xdc\x2a\xbc\x6c\xc6\x11\x6f\xdf\x2c\x01\x17\x45\x08\xb0\x91\x7f\xcc\x27\x0b\x74\x38\xdf\xa9\xc2\xa0\x79\xa6\xf3\xb0\x1f\x67\x12\x4c\x61\x8f\x35\xd1\xe6\xa2\xc7\x4a\xdf\xb2\xcf\xac\xac\x9f\xd9\x80\xc7\x1d\xaf\x3e\xdf\x9f\xfa\xd5\xaa\x2a\x45\xce\x4a\xca\x4f\xfc\x6c\x55\xed\x4e\x29\x74\x2b\xd9\xba\x47\xcb\xb1\xfa\x9c\xca\x73\x77\x6a\x67\x95\xdb\xe7\xc9\x23\x93\x9d\x90\x84\xe9\xd4\xf9\x76\xd0\xb0\x27\x7e\x00\xfd\x39\x71\xe2\x82\x35\x7d\xda\x37\xab\x8a\xd3\xe5\xd3\x36\x83\x52\x19\x6b\x6b\xfc\x51\x84\xa4\x70\xca\x76\xf7\x27\x4d\x98\x2e\x4f\xcb\xe6\x96\x9e\x36\xc5\xfa\x8b\xf3\x27\x6d\xce\x0a\xf2\x52\x3d\xa5\xfe\x5b\x75\x15\x2d\x9f\xde\x33\xa5\x8a\x5b\xea\x89\xd3\x78\x1a\x27\x4f\x84\x12\xbe\x4f\x2d\xae\x95\x7c\x27\xee\x02\xfa\x59\x3c\xe3\xf5\xdd\x01\xb0\x29\xaf\xa0\x24\x53\xe7\xd5\xe6\xa4\x0a\xad\xd3\xfe\xe9\xb0\x4e\xf8\x0e\xdf\xe3\x1b\x7c\x8d\x97\xf8\x13\x7e\x89\x3f\xe3\xf7\x1d\xa1\x23\xae\xde\xa5\x38\x79\xa3\xf7\xee\x83\x5b\x96\xe9\x70\x82\xa3\x2a\xde\x33\x61\xd8\x03\x49\x57\x0f\x56\x69\x81\xc9\x9e\x58\x77\xe7\xbb\xa3\x6d\x68\x03\xe4\xfd\x5b\xb9\x4c\xaf\xe4\xd2\x9d\xd8\x0c\x3f\x69\x08\x2f\x0c\xe9\x7d\x72\xfd\xe5\x49\xf5\x2b\x52\x7d\x52\x85\xec\xc4\x0a\x35\x59\x3f\xa9\xce\xea\xa4\x3a\x59\xfd\x52\xdd\x00\x27\xd5\x99\x9f\x54\xe7\x95\xba\x26\x4e\xaa\xb1\x3e\xa9\xc6\xd7\xb9\x14\x30\x9f\x56\xaf\xf7\xcd\xf1\xde\x9e\x5c\xe3\xd5\xd1\x7a\x5e\x29\xd2\xf7\xb4\x4e\xfa\x1f\x1d\xad\x9d\xd3\xdb\xea\x8e\x5e\x9d\x7a\xd0\xea\xb1\xf9\xe0\x68\xad\x4d\xc9\x7e\xfe\xe6\xf4\xde\xaa\xe2\x8f\xec\xa7\xa7\x4d\x80\x2e\xff\xc8\x41\x75\x9c\xc4\x49\xd5\x36\x27\x6e\x2a\xcb\x6e\x9c\x54\x6b\x71\xfa\xe6\x7f\xab\x2e\x96\x93\xaa\x5d\x9d\x54\xad\x7a\xf1\x94\x7a\x37\x27\x12\x41\x4e\x9f\x44\xc2\xb7\x27\x55\xdb\x83\xae\x3c\xb9\xf6\xde\x97\xc7\x67\x1b\xbe\xff\xbd\x61\xb3\x4e\x6a\x63\x7d\xe2\xc4\x18\x5e\xec\xa4\x4a\x77\x27\x55\xfa\xd2\x63\x8b\x4e\xaa\xf6\xf6\xa4\x6a\x97\x4f\xbe\xc1\xee\x4e\xab\x17\xbc\x06\x4a\xf1\x5d\x75\xea\xdc\xde\x8d\xdd\x27\x8f\xec\x67\xc7\x5a\x9e\x54\xf3\xfd\x49\x3d\xd6\xf4\xf4\xc9\xf3\x7c\x73\x52\xed\x4a\x33\xaa\xf6\xdc\x7b\xc3\xa1\x9e\x54\xff\xf5\x69\xdb\xc3\xb0\xb1\x27\xd5\xb9\x3c\xa9\xce\xb7\x8a\xd7\x7d\xf2\x0e\xf9\xe4\xd5\x7e\x98\xb3\x7c\xf7\xfe\xa7\xb7\x27\x56\xf8\xf2\xa4\xee\x56\x25\x28\xe1\x75\x0c\xd2\xc9\x55\x87\x9f\x1d\x6d\x41\x85\x8a\x9e\x58\xf3\x67\x1d\x59\xda\x82\x45\xed\xa8\x96\x21\x10\xbc\x4f\xd7\x35\x9c\x2a\x34\xf4\xa5\xea\x93\x2d\x63\x9e\x05\xac\xc2\xb9\x8a\xda\x25\x84\xe4\xc6\x86\x3f\x19\x78\x96\x23\x13\x49\x5b\x79\x5e\x33\xee\xa9\x82\x77\x4c\x8c\x6b\x78\x42\x08\xa9\xd3\xd4\xf2\xdb\x26\x2a\xb9\x42\x90\x01\xd1\x43\x2c\xd3\x33\xe3\xa0\xf0\x23\x2f\xa1\x77\xbd\xfa\x9b\x48\xfd\x39\x4a\xd3\xfc\x48\xfd\xe7\x17\xff\x23\xfa\x5a\x81\xb1\x2b\x07\x36\x96\x95\xf3\x7a\x81\x4b\x05\xf5\xa3\x14\x70\x85\xe9\x5f\x31\xa8\x3f\x31\xb1\xda\x66\x35\x7a\x58\xe5\x35\xb5\xb1\xb2\x53\xf8\xa5\x03\x64\xa7\x86\x7d\x57\x3d\x87\x57\x5a\x69\xe5\xbd\x52\xf0\x99\xf4\x85\xe9\x02\xc2\x13\x5d\x56\xe9\x53\xa6\x46\x79\xb7\x22\x06\x8f\x1f\x6f\x2c\x22\x10\xde\x92\x57\xb9\xd8\x8e\x6f\x59\x99\xad\xf0\x06\xe1\x35\x99\x5c\xae\x9f\x6f\x2f\xd7\x46\xaf\xb8\x23\x34\xab\xe6\xeb\x05\xce\xe7\x6b\x37\x94\x9d\x19\xca\xae\xb5\x5d\x91\xdf\xab\x96\xed\x04\x4f\xbb\x22\x93\x5b\xc2\x59\x15\x2c\xcc\x74\xa2\x3e\x5d\xe7\x82\x06\xc3\xbb\xa1\xe2\x03\xbb\xa5\x19\x82\x64\xa4\xfa\x6f\x34\xd0\xf5\x99\x92\x93\xb6\xd5\xb6\x59\xc8\xfe\x21\x4f\xe5\x7a\x3a\x81\xcc\x3b\xd3\x0b\xac\xa7\x77\xfa\x15\x56\x53\x3b\xfd\x1d\x56\x13\x39\xfd\x57\x0c\xb3\x34\xfd\x37\xac\x34\x30\xd3\x7f\xc7\x16\x38\xe8\x7f\xda\x13\x30\xfd\x5f\x18\x40\x43\xa7\xff\x1b\xcb\xfe\x4d\x2f\x26\x6d\xcf\x01\x41\xeb\x6b\xcf\x2d\x4a\x2f\xff\x7a\x82\xce\x33\xfe\x7c\xf2\xb8\x0a\xd1\xa9\xde\x22\x27\xbb\x03\x6d\xfd\x6b\x2a\x15\xad\x46\xa8\xaf\x26\x78\xf4\xb8\x5b\x0b\x59\x2c\x2b\xa8\x0a\x03\x77\x89\xd9\x94\x49\xba\x9b\x47\x2b\x4d\xcb\xee\xbe\xa0\xd6\x87\x94\x8e\x65\xef\x32\x67\xf2\xf0\xe8\x8c\xec\x21\xd3\x08\x01\xbd\xe6\x85\x6d\xde\x41\x9c\x2a\x2d\x33\x56\x89\xca\x01\x05\x8b\x59\x65\xb8\x40\xe8\x6b\x32\xb1\xa4\x63\x5e\x2f\x06\xdc\xf7\xcd\x67\x9b\x2c\xec\xb8\x50\xb6\x80\x9c\x18\x47\x0e\x84\x39\x38\x3c\x55\xea\x9b\x1c\x41\x46\x07\xad\xa0\x3f\x3f\xaf\xbf\x26\x93\x4b\x94\xcf\xeb\x05\xa1\x99\xfc\x47\xf7\xbe\x35\xee\xab\xbd\x59\x10\x08\xc9\xda\x61\x02\x54\x59\xcc\x25\xc9\xd3\xd5\x5b\xbf\x57\x71\x66\x36\x6b\xb5\x39\xfb\x36\x17\x14\xe5\xe0\xd8\x26\xff\xcc\x84\x77\x5c\xfa\x9f\x2b\x93\x1a\x68\xf6\x21\xa5\x74\x0e\x96\x27\xaf\x14\x16\x48\x5f\x72\xce\x23\x21\x54\xe2\x6b\x2c\x46\xdc\xa0\x34\x4d\x96\xcb\x64\x48\x88\x31\xb0\xb1\xf2\x26\x9b\xe0\xaf\x50\x9a\x42\x7c\x21\xe1\x33\x9a\x89\x79\x63\x46\x3e\x15\x10\x04\x69\x23\x66\x60\xd3\x89\xd9\x7c\xa1\xf4\xfa\xf6\xaf\xd3\x4e\x4e\xa0\xf0\xc2\xf3\x48\x69\x2f\xdf\xf9\x29\x26\xfc\x13\xc0\xe4\x1f\x3d\x30\xe5\xf8\xbb\x1f\x5f\x03\x3e\xdc\xf2\xed\xbb\x37\x1f\xde\x7c\xf8\xeb\xdb\x97\xcb\x97\x7f\xf9\xf0\xf2\xf5\xfb\xef\xdf\xbc\x7e\x9f\xa6\x74\xfc\xf2\xf5\x4f\x63\x78\xf2\xad\x2b\xf2\x7e\xfc\x9d\xae\xd7\x7a\x62\x04\x3c\x06\xa3\x75\x66\x4a\xb8\x85\xc1\x0f\x26\xe9\xcf\xf4\x61\x55\x95\x1b\x76\xd3\x58\xce\xc3\xe7\x43\x2e\xf0\x27\xce\x6c\x44\x93\xca\xe7\x10\x53\xa3\x19\xf7\x20\xed\xb2\xa4\xad\xb3\x51\xd0\x72\xb5\x09\x3c\x48\x29\xed\x9e\x3d\x17\x5b\x56\x2f\x10\x6a\x5b\xac\xf4\xbc\xb4\xfe\x75\xfa\xa6\x6b\xe3\xbf\x52\xdf\xca\x5f\xa9\x57\xe5\xaf\xd2\x9f\xd3\xf8\x40\xa7\x32\xf6\xaf\x8b\x50\x89\x7c\x2c\x85\x01\x30\xb3\xe7\x60\x3d\x80\x68\xc8\x70\xdf\xc7\x54\xc6\x87\x30\xff\xab\x58\x26\x50\x13\xa2\xa1\x0d\x7c\x60\x4e\xf5\x62\x9f\x50\x87\x9e\xfb\xde\x1f\x5e\xb1\xbe\x35\x50\x40\x4e\x59\x87\xa9\x2d\x1c\x84\x44\x9c\x1d\x17\x38\x59\x2e\x39\xcd\xeb\xaa\x5c\x7e\x62\x62\xbb\x84\xea\x97\x60\xab\x2e\x97\xcb\x04\xeb\x94\x26\x34\x5c\xf2\x16\x70\xe0\x75\x92\xe5\x1f\x4b\xeb\xb7\xb1\xfe\xf1\xdd\x0f\x2f\x4d\x4c\x83\x8a\x64\xf4\xc6\xe8\x39\xe1\x6a\xfc\xe3\x7e\x31\x73\xb5\x99\xda\x7b\x61\x3e\xdf\xb2\x7a\x97\x8b\xd5\xd6\xe4\xc6\x42\xca\x3f\x76\x68\x51\x40\x07\x72\xd8\x6d\x4b\x3b\x22\x09\xa9\x7a\x99\x06\xb0\x3c\xc6\x6a\x63\xd3\x2c\xc9\xeb\xfb\x72\x95\x74\xe2\xda\xf8\xf8\x3a\x5f\x7d\xbc\x6e\x78\x49\xb9\x8d\x1e\xce\x12\x1d\xe5\x91\xa8\xbc\x85\x10\x2a\x8b\x3a\xb5\x6d\x20\xcb\x47\xe0\x37\x1a\xad\x8b\x8f\x97\x72\x5b\xc2\xac\x01\xac\x93\xae\x53\xd5\x58\x95\x26\x48\xc4\xf0\xcd\x39\x11\x1e\xab\x91\x9f\x72\x18\x9c\x95\xd1\x1d\x86\x45\xd0\xb5\x53\x19\x19\x9a\xa6\x71\xb4\x23\xa5\xc4\x76\x8c\x89\x7e\xa0\x99\x03\xda\xbd\x84\xd3\xb4\x7f\x2f\xdb\x6f\xed\x9d\x2c\xf9\x13\xf7\xcb\x6e\x0d\xf9\xf8\xa4\x5b\xaf\x63\x72\x0b\x18\xc7\x9b\x82\xdd\xde\x4a\x22\x40\x37\x94\xd3\xf2\x80\xc9\x53\xde\x7a\x4f\xf4\x68\xeb\xe4\x30\x39\x4c\x30\x7a\x2e\x6b\xb0\xba\x3d\x47\x87\xbb\x4e\xbe\x31\x30\x43\x80\x86\x27\x41\xb8\x22\x0e\xad\x49\x28\x87\x6b\xd9\x33\x04\x79\x6c\xd0\x98\xd3\x7c\x2d\x4f\xec\x87\xfc\xc6\xcd\x9f\xc3\xe2\x52\x29\xa3\x61\x37\xd2\x55\x55\xae\xf5\x0f\x85\x93\x9d\x41\x93\x22\xbf\xf9\xae\xe2\x28\x63\x08\x61\xd6\x52\x4f\xb9\x44\xea\x78\xe6\x8e\x86\x94\x63\x50\x73\x18\xbf\xf1\x2c\xcb\xc9\x83\xfe\x4e\x31\x2f\xac\x64\x81\xa8\xff\x38\xcc\x1c\xf8\x2d\xd4\x54\xa9\x5f\x0d\x6e\xaa\x37\x5c\x78\x30\x36\xf7\x90\x1c\x6e\xcc\x69\x17\x6e\xed\x6b\x56\x52\x94\xcd\xc5\xf8\x5b\xc6\xc5\xbd\x2e\xee\xe1\xa9\x8e\x01\xe9\xa6\xf3\x5c\x8c\x5f\xbc\x79\xfd\xfe\xc3\xd5\xeb\x0f\xcb\x0f\x57\xff\x81\x16\x00\xfb\xe4\xe1\xef\xf5\x46\xa3\x82\x1e\xf4\x3a\xe1\x13\xd1\xf4\x5a\xcc\xea\x0f\xbc\x11\xdb\xfb\x6e\x02\x54\x57\x55\xff\x66\x35\x90\x33\xdd\x94\x74\x76\x97\x48\x4a\x22\xfb\xfa\x67\x49\x36\x0d\xe5\xef\xbb\x8d\x13\xf3\xc5\x38\x19\xd1\x4b\xa8\x2d\x5f\xaf\xdf\x68\x5e\xc2\x60\xe7\x29\xea\x64\x15\x93\xa6\x3a\x07\x8e\x8f\x5a\xbc\x66\xeb\x1f\xcb\x4f\x4f\x6e\x4d\x19\x4c\xbe\xa4\xc1\x83\x2f\xe3\x41\xb8\x5a\x26\xf9\x5f\x68\xa0\xfc\x91\xb6\xac\x06\x88\xa9\xf2\x40\xd8\x0c\x74\x84\x4b\x4e\x7b\x5e\x8e\x7f\x7c\xfd\xc7\xd7\x6f\xfe\x0c\x2c\xeb\xdb\x97\xef\x3e\xfc\x55\x6e\x88\x45\x04\x4b\xc0\x2c\xc7\x8b\x6d\xce\xca\x0f\xf9\x4d\xfd\x5d\xc5\x01\x4e\x23\x58\x9d\xb1\x46\x36\x1f\x77\x92\x90\x46\x1c\x3f\x6b\x07\xc3\x67\xa4\x36\x3f\xb5\x97\xaa\xa6\xa6\xe2\xc7\x83\x35\x05\xe4\x24\x38\x3a\xb2\x52\x36\x66\xf5\xf7\x0a\xc6\x9b\xfd\x22\xa5\x13\xb4\xdf\xcb\x67\x6f\x0d\x87\x06\x58\x28\x50\xdc\x6f\xfe\x78\x42\x5f\x2c\x34\x84\xa9\xea\xbd\xf3\x85\x76\xa9\xd9\x2a\x0d\xab\x91\x23\xdf\x83\xb9\x79\x02\x81\xef\xfa\x7a\x3c\xc9\x19\x39\x4e\xa0\x4f\x73\x72\x17\x21\xa5\x8b\xe5\x88\x36\x9c\xc2\xa2\x93\x71\xf3\xa8\xdf\xe8\x97\xa2\xc5\x1a\xcc\x11\x1b\x8f\xea\xff\x9a\xd3\x45\x9a\x0e\xb3\x21\xdc\x15\xe1\x73\x9f\x1c\x95\x28\xf0\x3b\xab\x3c\xff\x4e\xb5\x73\x95\x9f\x48\x82\x06\x70\x7f\x78\x59\x39\xab\x20\x79\xdb\x69\xee\xe8\x07\x5d\x9c\xbe\xd4\xa1\x3c\x7a\xfd\xfe\xfa\xde\x3c\xc7\x1c\xbc\x1e\x13\xa5\xff\xbb\xfc\x7c\x8c\xa2\xfb\xb8\xc3\x4b\x84\x29\x59\xe1\xcd\x80\x6a\xdb\x33\xd9\x81\x57\xad\x32\x6d\x93\x4f\x98\x1a\x9d\x0f\xf9\xec\xf1\x03\x34\xb0\xab\x13\xea\xfb\x02\x10\x3a\xbe\xf2\x8f\xd1\xd6\x20\x95\x6c\x38\xa5\xbf\xd0\x6c\xbe\x40\x38\x0a\xce\x42\x3d\x8d\xe2\x2e\xb3\xf9\xe2\xbf\xd0\xe9\x7a\x8d\x4b\xf2\x22\x83\x40\x60\x9d\x76\xab\x22\x11\xde\x96\xcf\x78\x24\xf8\xcb\x9d\x09\x2a\x2f\x06\xcb\x9a\x1e\x49\xdf\x58\x81\x40\x03\x68\x32\x02\xf0\xee\x00\x99\x06\xe0\x36\x74\x68\x97\xbc\xa7\x3d\x17\xd3\x5b\x85\x14\xa2\xab\xfe\x8a\x90\xde\x48\x67\xb6\x15\x97\x55\x87\x13\x12\x78\x64\x53\xd4\xba\xfe\xf3\x18\xd3\xa0\x8b\x72\x4c\x83\x50\xd0\x3b\x03\x96\xe9\x92\xde\x5a\x14\xb8\x8a\x94\x97\xd5\x73\xa6\xc2\xbf\xd8\x26\xe3\xaa\x1e\xa5\x66\xbc\x82\x59\xa9\x10\xae\xb0\x53\x55\x1a\x1f\xda\xf3\x8b\x30\xb9\x9c\x17\x74\x09\x0d\xaa\x9c\x40\x25\x68\xe8\xcd\x17\x00\xb7\xa0\x56\x74\xda\x6b\x87\x05\xa9\xe6\x02\xc8\xe9\xf3\x8b\x21\x81\x5a\x85\xaa\x95\xcb\x5a\x5d\xe9\xeb\x0e\x70\x8b\x29\xe4\xb7\x7b\x17\x42\x73\x78\x95\x0f\x5d\xc2\x23\xbf\xd2\xa5\xcf\x68\xf4\x5d\xfa\xa3\x3b\xf3\xab\x45\xe8\xe9\x3f\x89\x45\x03\xfc\xce\x2b\xf3\x3b\x2f\x1a\xc0\xac\x89\x4d\x04\xfd\x7c\x92\xa6\x19\x1f\x11\x86\xb0\xec\x7d\x99\xa6\x62\x48\xc4\x2c\x76\x9e\x86\x84\xb6\xb1\xc8\x46\x25\x61\x05\x59\xfc\x3e\xf9\x29\xea\xbf\x70\x5c\x17\x03\xef\xf0\xe8\x58\x00\xa4\xf6\x00\xde\x22\x4c\x5d\x6b\x2f\xcd\xce\x38\xf4\xc1\x04\xcf\xcb\x45\x70\x5a\x3e\x7b\x3a\x12\x15\xdc\xa5\x63\x8f\xbf\x97\xb4\xf0\xce\xca\xa6\x2a\x88\xab\xab\xad\xde\xef\xaf\x3c\xc5\xb2\x09\xab\x1a\x58\xcd\x43\x61\xed\x6f\x4a\xa0\x75\xf8\xab\x3c\x2c\x5d\xda\xb0\x7c\x3d\x58\x07\xe5\xea\x7c\xc1\x4b\x42\x4a\x1f\x0c\x87\x70\x1f\xda\xc4\x42\x34\x1f\xd0\x31\xba\x4b\xd6\x91\x1d\x77\x0b\x90\xe1\x85\x3f\x93\x6f\xba\x01\xab\xb7\xf9\x2e\xeb\xd3\x83\x90\x0c\xb4\x08\x20\x26\xae\xba\xfc\x8d\x75\x92\xc3\x59\xb6\x02\x6f\x76\x3e\x7e\xf9\xea\x9b\x97\xef\x96\x57\xef\xde\x5d\xfd\x15\xf2\xcb\xad\xf4\xe9\xac\xaf\x44\x8f\x87\xd5\x70\xc6\xb6\xd7\x41\x5f\x42\xda\xea\x8e\x38\x37\xd9\xb6\xe6\xc9\x7c\x91\x2c\xc8\xfb\x2c\x1e\x19\xaf\xb2\x4b\xe2\xda\x7f\xe7\xc3\xee\xea\x28\x5c\x15\x81\x32\x51\xc2\x98\xc9\xee\xa0\xa3\x6a\x21\x5d\x12\xc0\x97\xa8\x1b\x89\xbc\x3f\x20\x46\xba\xde\x01\x4b\x34\x41\xad\x92\xb5\xdf\x94\xc5\x7d\x06\xe9\x36\xf2\xa7\xd6\xe1\xf5\xe7\xfc\xa2\x57\x1f\x08\x2c\x7d\x14\xef\xde\x41\x9c\x44\x0f\xe2\xc4\x3f\x88\x13\x49\x60\x62\xb7\x66\x78\x3d\xea\xcd\x66\xee\x48\xaf\x7b\x60\x10\xa1\x40\x66\x28\x61\x23\x8a\xb0\x55\x41\xf0\xfd\x9e\x7f\xcd\x66\x9c\xb0\xa9\xa6\x43\x84\x8d\x38\xba\xa4\xcf\xf9\x25\x2a\xe7\xa5\xae\x61\x41\x62\x33\x40\x47\x23\x17\xcc\xdd\xe2\x95\xb1\x3e\xc5\x51\x94\x97\x0e\xdd\x79\x78\x01\xe9\xca\xe4\x9c\x7f\xdf\xff\x24\x40\xe6\x32\x16\xa7\x2c\xec\x32\x29\x11\x74\xb6\x3c\xbf\x40\xd8\x52\xd0\xd2\xc5\xfc\x33\xc2\x2f\xd9\xd7\x64\x72\xc9\x14\x08\x4c\xac\xff\x0c\xf9\xe6\x3c\x66\xaf\x11\xd9\xb7\x7c\xbd\x06\x52\x63\x84\xdb\x4e\x07\xbd\x6d\xd1\x2d\x69\x05\x2a\x95\x5a\x4f\x73\x5e\xa7\xd5\x15\x29\xdc\xa9\x6e\x9b\xd7\xc1\xeb\xfa\xe0\x76\xdd\xe6\xf5\x0f\xac\x16\xb4\xa4\xbc\x36\x92\xc0\xff\x51\x86\xe1\x95\x96\xc3\x41\x86\x3e\x5a\x52\xc1\xf0\x24\x2a\x2f\x19\x3c\x7a\xa1\xc4\xe0\x68\xc2\xbf\xde\x15\x10\xff\xc2\x0d\x49\xa7\x10\xf4\x8b\xc5\x72\x01\x1e\xad\xd7\x7e\xd0\xab\x56\xb3\x76\x07\x82\xd2\xbe\x90\x0b\x05\x31\x99\xfb\x7b\x13\x97\x64\x72\x59\x3e\xe7\x97\xa5\x71\x2f\xd0\xa7\xcf\x6c\xb7\xac\x94\xa2\x95\x36\x2c\x32\x5c\x2a\x60\xe8\x36\xa0\x82\x90\xf6\x12\x7a\xfb\x46\x52\x0f\xfd\x77\x6c\xa3\x28\xba\xd8\x63\x5b\xc3\x09\xaa\x35\x2f\x29\x77\x0d\xcc\xc5\x6d\xbe\x8b\x68\x28\xfe\xb1\x39\x78\x91\x85\x71\xd2\xfd\x3e\x29\x9d\xa9\x61\x74\xe6\x6c\x41\xec\x3c\xa8\x77\x2d\x64\xf8\x81\xee\x7d\x73\x0f\x43\xdf\xb0\x42\x44\xd3\x7e\xfe\xbf\xe9\x6b\xa7\x7f\x69\xca\x0d\xee\x9c\xe9\x2a\xa7\x70\x4b\xfc\xaa\x1d\x0c\xbb\x06\x33\xd0\x3f\xd5\x43\x97\x34\xc6\x13\xdb\xd5\x4e\x87\x4f\xbe\xb9\x3f\x94\x35\x47\x57\x79\x7b\x88\x2f\x41\x6e\x60\x87\x2b\x51\xef\x1f\xa9\x64\xc3\xca\xa8\x28\x78\x6f\x0e\xe7\x3f\x30\x4b\xb6\x81\x68\x1f\x75\x0b\xc7\xbb\x47\xef\x28\xbf\x8f\xf5\xef\xfa\xd7\xea\x1f\xab\x5f\x86\x6d\x74\x9b\x38\xde\xc1\xbc\x8c\x76\xef\xe6\xd7\xeb\xde\x55\x19\xeb\xdc\xcd\x29\x9d\xe3\x74\xdd\x04\x10\xa8\x9e\x8a\xf6\xf8\xe9\x02\xdc\x1a\x4e\x68\xc6\xb1\xb0\x04\xd0\xa5\xf8\x92\xac\xc3\x5d\xf5\xf1\x40\x76\xa6\xe3\xda\x36\xf1\xf5\xc5\x4c\xf8\xda\x36\xf1\x48\x6e\xa6\x47\x49\x81\xf0\x02\x42\xe0\xf0\x83\xf2\x55\xf0\xfb\xef\xa1\x93\xa0\xbb\xc5\x25\x48\xff\x15\x24\x95\xad\x94\x9a\xe4\xc0\xb9\x89\x33\xcd\x67\x54\x1d\x5d\xd0\x4b\xad\x62\x19\x5a\xa3\xc4\x80\x06\x59\x29\x86\x44\xd7\xc2\xca\x55\xd1\xac\x7b\xb1\xfe\x9e\x58\xed\xb3\x5f\x13\xf8\xa6\xae\x78\xe7\xb4\x77\x78\xd4\x60\x96\xf4\x20\x33\x04\xdf\x79\x12\x49\xa8\x71\x98\x5c\x32\x17\xe5\x6d\xe3\x78\x73\x42\xe7\x6c\x81\x6b\xe2\x8b\x2d\x39\xc2\x4d\xa0\xf9\xc8\x11\x2e\xe4\x03\x1b\x86\x83\xb2\x1a\x02\xd4\x37\x99\xf3\x32\x6c\xad\x73\x1c\x0c\xa2\x29\xd9\xcf\x91\xb9\xdb\x99\xa4\x62\x2b\xa3\x05\x8b\xcc\xe0\x4e\x4f\x89\x4e\xaf\x2c\xb6\x55\xd3\x37\xf9\xc3\xe0\xcd\xf4\x7a\xae\x5c\x20\x18\x69\xf1\x95\x10\x3a\x8b\xec\x1e\x01\xd0\x9b\x07\xe4\x75\xda\xc6\x88\xbe\x90\x7d\x41\x08\x7f\xec\x4a\x72\x57\xd8\x46\x68\xe0\x07\x40\xcc\x9a\xf6\x16\xce\x67\xf9\xcd\x2c\x49\x0e\x77\x26\x5f\x4c\xb3\x8e\x3c\x45\xa5\x08\xaf\x67\x89\x95\x35\xe5\xe2\xea\x80\x20\xf6\xd2\x01\xe1\x6b\x30\x23\xa3\x4e\x8c\x97\xff\xe4\xca\xb7\x58\x1e\x20\x25\x58\xc5\x26\xe2\x65\x4f\x96\x82\xe5\x70\x1f\xd5\x07\x81\x9c\xcc\x48\xfc\x6f\x27\xd8\xe2\x2d\xed\xaa\x5d\xb7\xd9\xd8\x3c\xb1\x4d\x36\xf1\xa5\x00\xb8\x8d\xad\x16\xa1\x2f\xf2\x9c\x5f\x84\xc4\xc3\xcc\x44\x46\xcf\x2f\xf0\x85\xca\x57\xb8\x65\x1b\xd1\x6f\x5b\xb7\xe4\x35\xde\x6b\x93\x46\xdb\x9c\x1c\x68\x71\x82\x30\x6d\x71\x53\x46\xdb\xeb\x4d\xf1\x04\x26\x36\x28\xfd\xf8\xdc\x4e\xfc\x19\xe5\xf2\xf2\xac\xe9\xff\xc7\xdd\xff\x77\xb7\x8d\x23\xf9\xc2\xf8\xff\x7a\x15\x32\xef\xac\x86\x18\xc1\x8c\xdd\xbd\xf7\x7b\xef\x2a\xcd\xf6\x75\x1c\xa7\xdb\xdb\x71\x9c\xb5\x9d\xee\xed\xaf\x5a\xab\xa5\x25\xc8\xc6\x84\x22\x35\x20\x64\xc7\x63\xf1\xbd\x3f\x07\x85\x1f\x04\x48\x50\xa2\x9d\xec\xdc\x7d\x9e\x73\x72\x62\x8a\x04\x0a\xbf\x81\xaa\x42\xd5\xa7\x1a\x79\xbb\x74\xab\xb5\x5a\x6a\xbb\x89\xa2\x1a\xd6\x1b\x59\x4d\x53\x33\xeb\x0a\xe2\xad\xb8\x2e\xab\xd6\xab\x40\x07\x56\x4a\xe8\x44\xa5\x75\x17\x48\x5d\xc9\x60\x37\x57\x5e\x6e\x36\xfa\xb5\xba\x05\xb2\xe8\x6d\x36\x80\x75\x0d\x56\x91\x4f\xbe\x51\x64\x48\xc6\xd1\x75\xc7\x90\xd5\xc4\x00\xbb\x50\xb7\x95\x40\xf3\x86\xdc\xd2\xcc\xbd\xec\x2c\x50\x58\x49\xbd\x4d\xfc\x6d\xb6\xbf\x8f\xac\x22\x25\x65\x80\x7c\x40\xb6\x72\x8f\x64\xf3\x26\x59\xd5\x11\x70\xa7\xdc\x36\xbb\xea\xdb\xa3\x0a\x8b\x52\x2d\xe0\x0a\x01\xcd\xd0\x29\x1a\x97\xcb\x8e\x9e\x69\x5b\x4b\xb1\x5f\x61\x6f\x2c\xb2\x4d\x19\x21\x98\xe3\xec\x6a\x1b\xdc\x79\x39\x17\x1f\x9f\x61\xaa\x5c\xd7\xb7\xdf\xcf\xb8\xa8\xb6\x5f\x3d\xb2\x6d\xfd\x31\x26\x13\x31\x92\x30\xa7\x46\x3e\xc5\xc6\x0b\xd5\xb1\x77\x1e\x75\xec\x59\x66\x5d\xd4\x38\x12\xb0\xd5\x42\xfb\x2e\xe7\x1a\x1a\x78\x82\xcf\xe3\x71\x20\x4b\x0f\x26\xbd\x6b\x09\x8d\x85\xbc\x9d\x5b\x33\xfb\x83\x5b\xc9\x73\x7d\x05\x52\x8a\x21\x71\xe8\xc7\xe1\x22\xbe\x46\xfa\x3c\x55\xfc\xe4\x02\x9f\x8b\x84\xc7\xf1\x09\x4e\x5a\x6c\x44\x21\xfb\x51\x78\xad\x72\xd4\x4a\x55\xb9\xbd\xb7\x4c\x9b\xcd\x78\x52\xa2\xd1\xb6\x04\x21\x89\xc7\x13\x84\x8f\x2b\x93\xec\x23\x32\xd2\x45\x11\x24\xed\xec\x2f\xe3\x63\xeb\x0a\xf4\xf2\x19\x57\xa0\x36\x70\x43\x97\x7b\xd0\x49\xcd\x68\x6d\xf7\xd5\x35\x6b\x5c\x5d\xab\x0b\x4d\x09\x4c\x62\xdf\xdd\xb2\x67\x55\xbc\x86\xa5\xe1\xa9\xfd\x36\xab\x4b\x5f\x73\xba\xde\xc5\x3f\x4d\xa7\x55\xf1\x53\x29\xa8\x03\xba\xd8\x59\x26\xd6\x17\xcd\xb3\x16\x9d\x71\xe4\x64\x8c\xdc\x3c\x21\x00\xba\xe7\x9f\xd7\xab\x2d\x5a\x65\x97\x80\x82\xb4\x95\xfc\xca\xbc\x69\x1f\x64\x1d\x6f\x4e\xc6\x1e\x81\x50\x19\x1c\x50\x69\x1c\xd4\x41\x62\xc5\xea\x94\xfa\x18\x65\x3c\x88\x42\x13\x23\x13\x13\x1c\x2c\x68\x96\xa4\xf4\xef\xe4\xad\x89\x9b\xe9\x18\x1d\x89\xb6\x54\x71\xa6\x3d\x26\x39\x2f\x94\x06\x9f\x5c\xde\xd3\xed\x0d\x2b\xb0\xb5\x8a\x28\x42\x63\xe6\xce\xbd\xcc\x9e\x6e\xf4\x59\xd3\x4d\x7b\x88\xfe\xe3\x56\xc9\xea\xf1\xeb\x96\x88\x7d\x5f\xff\x0f\xaa\xf5\x8b\xab\xaa\x9d\x21\xff\x51\xbd\x6b\x2f\x51\x8f\x96\x76\x3e\xd7\x7a\x65\xcf\xc9\x84\xf3\x8c\xbc\x20\xb7\x90\x5e\x15\x01\x85\x53\xff\x5f\x6b\xa2\xf3\x5a\xe9\x53\xb3\x39\xb8\x9a\x56\xe6\x52\xa8\xc4\xf9\x62\xb1\xad\x05\x92\xe5\xda\xd6\x05\x77\x89\x8f\x07\x6f\x53\xca\x93\x9a\x91\xce\x73\xa6\x86\xcf\xfa\xa4\xbb\xc7\x65\x37\x73\x9b\xaf\x39\x0c\x6a\x3b\x8c\x41\x54\x79\xa9\x51\x92\x6d\x9f\xf3\x7f\xcd\xba\xcc\xb9\xf6\xf4\x98\xa2\x18\xf5\xc3\x2d\xe1\x96\x0d\x9a\x75\x90\x6c\x89\x70\xcf\xdc\x08\xf7\xf2\x12\x82\xc0\x25\x04\x1b\x67\xf6\x24\xce\xaa\x58\xfe\x91\x53\x92\xab\xec\x93\x1e\x1b\xda\x7f\x83\x41\xe0\x5b\xf7\x6e\x96\x35\xef\x18\xac\xcb\xa9\xc2\xdf\x08\x52\xcf\x54\x25\xb2\x7a\xc0\xc7\xef\x7b\xc1\xd4\xdb\x45\x03\xb9\xa4\x9a\xdc\x7e\x0b\x99\x6d\x22\x8f\xcf\xaa\xb4\xad\x45\x5b\x2c\x50\x5d\xd1\x47\x5e\xd8\xed\xd8\xf2\x9a\xd7\x7e\xd5\x6e\xe1\x9a\xdb\xee\xde\x79\xb6\xd1\xba\x4b\x0a\xfd\xb9\xce\x5a\xec\xd8\x84\x86\x81\xb9\x3f\x84\x89\xfb\x1b\xe5\x77\xca\x63\xa3\x7d\xae\xb8\xe9\x9c\x69\x43\xb3\x19\x83\x98\xd1\xad\xa6\xc7\x2f\xb6\x18\x73\xec\x57\xec\xe9\x1a\x42\xd4\xdd\x77\x69\x9e\xf0\xb0\xb1\x1c\xd1\x66\x73\x80\x86\x0c\x78\xc1\xff\x0b\x55\x6b\xd4\x47\x54\x67\x5f\x54\x87\xe7\xb7\xb7\x29\xf1\xd6\xa5\x85\xd8\x5e\xb3\x71\x25\x9e\x25\xb3\x3b\xb2\x65\xd0\x6f\x55\xb4\xc5\x39\xc4\xfa\x03\x67\x02\xef\xf1\xf3\x9c\xed\xb8\x06\x1f\xf6\xac\x1d\x59\x7a\xd3\x7c\x9b\x1d\x59\x3a\x4e\x29\xa7\x86\xe2\x23\xc9\x20\xf0\x93\xf6\x34\xd0\xb6\xfb\xb4\xb8\x22\x9c\xa7\x82\x93\x6a\xde\xc2\xd5\xad\x6b\xab\xc4\x35\x23\x10\xf3\xc1\x43\xff\x12\xee\xd2\x00\x7e\x8d\x16\xef\xd6\xe9\x82\xa6\xfe\xe2\x9a\xa5\x99\xac\xfa\xfa\xde\xf9\x5a\xd1\x6a\xd4\x46\x67\x1c\xed\x1d\x62\x2b\xa1\xf8\xa9\x86\xa7\x5e\xd1\xba\xdd\x4e\x05\x88\xca\x1c\x40\x54\x83\x96\xf1\xe7\xa2\xaf\x48\xf5\x97\xeb\x02\x50\x50\x0b\xc2\x83\x2d\x27\x49\x7f\xdb\xf1\x62\x9f\x14\x04\x3f\xd5\x2a\xed\xb4\xa8\x44\x98\x45\xfc\x8e\x64\x1e\x5b\x29\xf0\x6e\x52\x22\x16\x99\x6f\x36\xd6\x4f\x9a\xdd\xaa\x5e\x6c\x16\xa7\x3d\x60\x98\xdb\x5b\x07\xf2\x22\xd8\x2e\x46\x05\xb3\x78\x51\x29\x6a\x46\x32\xa7\x39\xaa\x8c\xe0\x14\x1c\xfb\xfb\x76\x17\x07\xa8\xb4\xdc\x1b\xb0\x68\xf2\x88\x86\x81\xf8\x1b\x20\x0c\x11\x38\xc4\x6f\x78\x08\x10\x06\x09\x33\x7d\x14\xaf\xd4\xa3\x98\x18\x8e\xa3\x7f\x73\x28\x2c\x0f\x3e\x67\x7a\xa9\xb1\xad\xc2\x91\xb1\xca\x14\x9d\x39\xb6\xe4\x2f\xdb\x25\xea\x78\xa0\xcf\x02\x0e\xf8\x86\xdc\xe7\xd3\x74\x6a\xaa\xa2\x14\x13\x4c\x06\x10\xb2\x03\x7c\x6d\xd5\x2f\x54\xf9\x23\x95\x55\xe9\x17\xe4\x07\xc2\xc4\x88\xe8\xe7\x00\xe1\x75\x66\x7f\xa8\x7e\x05\x08\xd7\xe2\x8a\x89\xef\x77\x49\x11\x20\x43\x8a\xcc\x2f\x56\xfa\xcb\x2d\xe1\xf2\x87\xf5\x5d\xbe\x28\xc4\xe7\x5c\x3e\x7a\x32\x17\x4e\xee\xa2\x99\xfd\x5d\xce\xae\x1f\x57\xc4\xa2\xa2\xde\xf8\x88\x59\x89\x2b\x9a\x55\x7a\x0a\xda\x1a\xf1\x95\x6a\xbd\x4d\xe7\x69\x69\xb0\x28\x78\xdc\xe8\x6b\x64\xb9\x46\x7c\x83\xf9\xd8\x02\xb0\xb9\xfd\xf4\x7a\x91\x5f\xfe\x33\xb0\x2a\xac\x89\xdb\x50\xcc\x3c\xc9\x1a\xcb\x29\x2b\xab\x6d\x3f\x9f\xc8\x88\x56\x9e\x57\x4a\xc1\x5f\x8b\xa3\x11\x38\x69\x9c\xd3\xc9\x5c\x57\x39\x71\x35\xdc\xf4\xd2\xf0\xb6\x01\x49\xac\xb5\xe0\xb5\xcc\xa4\xe6\xef\x18\x83\xcd\x6d\xe8\xa4\xd3\x31\xb9\x94\xca\x4e\xf0\x33\x38\x2b\xab\x0b\x75\xad\x12\x38\x6e\xa8\x0f\xbf\xca\xfc\xf2\xa9\xc4\x99\x82\xf1\xcf\x33\x30\xe1\x96\xfd\x0c\x81\x01\x9d\x36\x03\x6e\x7b\x9c\xc1\x6e\xef\xe9\x19\x31\xf5\x63\xba\xd9\xd4\xd9\x48\xbb\x91\xc4\x72\xd8\x01\x14\xf8\x27\x5f\x2f\x66\x8e\x63\x98\xca\x98\x35\xbb\x90\x0e\x06\x21\xdd\xd6\x85\x19\xf8\x89\x1a\x2b\x4e\x70\x6c\x9f\xca\x0a\x54\x0e\xbe\xea\x45\xcf\xba\xb0\x2c\x95\x4f\xa7\x29\x29\x1f\x0c\xc2\x7c\xfb\x8c\x50\xa8\x79\xea\x92\x08\x61\x3a\x18\xa8\x76\x80\x2b\x8b\xf4\x69\x2b\x48\x36\x47\x49\x1c\x16\x31\x45\xb6\xb3\x52\x81\xc7\x99\x91\x4e\x73\x1d\x28\x2f\x89\xc3\x75\x4c\x91\xf8\x24\x93\xad\xf1\xd8\x49\x45\x17\xe1\xde\xe1\x5e\x05\xdd\xb4\x77\xa0\x83\x70\x1c\xba\xec\x6c\x27\x3d\xa6\x0f\x45\xd9\xde\x0e\x20\xf3\xfe\x4d\x72\x43\xfc\xce\x4e\xed\x6e\x50\x5f\x8d\x7b\x53\x43\x9a\x7e\x86\x1b\xb3\x77\x6f\x49\x70\x21\x23\xef\x2a\xe9\x37\x98\x8a\x02\xb2\x5b\x32\x57\x76\x97\xa0\x79\xa8\x8c\x3a\x03\x3c\x37\x3e\x9c\xfe\xb4\x95\x03\x68\x89\xd7\xae\xa5\x8f\xde\xf6\x2d\x45\x3f\xf1\x7b\xdc\xca\xa9\x53\x02\x67\x42\xb3\x3b\xc2\x28\x2f\xde\xe7\x79\x41\xa4\xeb\x8c\x09\xad\x65\x2e\x8e\x4c\xe8\xcd\x88\x66\xd4\x31\xb3\x71\xc2\xd2\x64\x94\xb7\x78\x32\xcb\x43\x46\xd9\xc8\x83\x0b\x32\xd8\x2c\xc7\x07\xee\x97\x58\xfa\x4f\xc2\x2b\xb9\xb9\x40\xda\x78\xef\xc0\x79\x69\xb2\xd5\x7a\xc8\xce\xae\x2c\x8a\xeb\xfd\x27\xe4\xf5\x7b\x79\x29\x40\x23\xcb\x95\xb9\x19\xd4\xbb\x32\x23\xde\x4a\x43\xdf\x63\xea\x2a\x78\xe5\x41\x66\x5d\x64\x37\x16\xb7\x5b\x42\x80\x40\x95\x63\xc2\x46\x34\xe2\xfd\xdb\x97\xed\x2a\x8f\xf1\xc9\xa1\xb5\x0f\x6e\xe6\x0c\x2e\xc0\x99\xd7\x5b\xda\x5c\xdf\xcb\x84\x76\xcb\xea\xd6\x3c\x1a\x43\xc9\x1e\xb8\xc1\x20\x74\x07\x72\x3c\x41\x18\x4c\xa6\x5a\x46\x7e\x30\x20\x3f\xb6\x7d\xd3\x17\x33\x3b\x7b\x4a\x3a\x05\x57\x01\x30\x1d\x7a\xea\x74\xb2\xa9\x60\x7d\x59\x6b\x6c\xfb\x9b\x85\xbf\xa6\x3f\x64\xa0\xc6\x76\xbe\x8f\xe9\xc4\x35\x47\xd6\x3d\x4f\xd5\x16\xea\x2d\xfa\xa0\xd7\x36\xef\xf7\x0f\x4b\x87\xd5\xd5\xc5\x90\x49\x89\xe9\x98\x45\xc6\xcd\xfa\xed\xd9\xdb\xe9\xc9\xcf\xc7\x1f\x7e\x3a\x75\xbd\xad\x1b\x9d\x61\x6c\x94\xa2\xa9\x44\x32\xf0\xcd\xdc\x10\x8d\xcc\x90\x5b\x96\x14\x53\x9a\xdd\x27\x29\x05\xfc\x03\x18\xfa\x2d\x24\x9a\xa6\x6e\xbe\xf9\x70\x74\x30\xf2\xf5\x08\xee\x30\xa8\x38\xd3\x98\x0e\xf5\x41\x1b\xe9\xfe\xec\xb0\x34\xe5\x2e\xe0\x37\x9d\x07\x83\x98\x4c\x6f\x4a\x76\xdb\x9b\xb9\xcc\x7e\xeb\x66\xea\xb2\xbb\xec\x48\xd4\xec\xc8\xdd\xf3\x9d\x0c\x06\x7b\x8e\x84\x3c\x18\xc8\xfd\xa4\xe9\x3f\x21\x63\x8b\x61\xb3\xf7\xd6\xb7\x4a\xb9\xc9\xec\xee\xca\xe6\xc6\x58\xa3\x04\xd7\xb7\xac\xdd\xeb\xa2\x91\x41\x57\x4c\xf6\xd1\xd6\xf3\xd0\x2e\xbc\x35\xb9\xd7\xd9\x81\x4b\x70\xa2\x6d\xb3\x40\x26\x51\xf6\xac\xbc\x97\x83\x03\x4c\x3e\xac\x0d\x43\xb3\xfa\x66\x3e\x0e\xb3\x7d\x8a\x5e\x87\xe0\x32\xd9\xb2\xd0\x95\x25\x4f\xf3\xc3\x8f\x39\xaa\xef\x99\xd6\xf6\x90\xa3\x2d\x87\xa0\x7f\x7a\xca\xd6\x40\x27\x55\x33\xba\x39\x78\xed\x47\xb0\x5b\x54\x29\xaf\xdc\xa5\x48\x04\x78\xc8\x82\x37\x18\x3f\x7d\x26\x8f\x23\xdd\x01\x75\xec\x52\xed\x87\x6f\x93\xea\x3e\xb7\x9d\x03\x9e\x1c\x39\xbc\x7c\xb5\x03\xf8\x2a\x5b\xdb\x4b\xe5\xb7\xba\xb6\x4c\x07\x3f\x73\x3c\xa2\xf6\x89\x86\xad\xcc\xd0\x53\x06\x13\x80\x5b\x37\x42\xfb\x19\x5c\x09\x69\x86\xa8\xf5\xf0\xec\x51\xbd\x0e\x8d\xbb\x26\x15\xbb\x85\xb6\xba\x73\x37\x19\x54\x96\x25\x78\x71\x56\xf0\x7e\x0e\x04\x04\x5e\x57\xd1\x1d\x6d\xb3\x2a\xfc\x54\xeb\x34\x29\x69\x26\x29\x4d\x0a\x0b\x2b\x05\xe1\x29\x23\xba\xb4\x51\xd2\x0d\x38\xcc\x17\x71\xe4\x39\x2c\xb9\xb1\x7d\xe8\x12\xee\x6e\x7b\x28\xc6\x1a\x94\xc1\x2e\xc3\x99\xaf\x90\x10\x76\xc4\x4c\xd9\xc6\xfc\x57\x71\x32\x1a\x62\x40\x03\x48\xdc\x39\xb7\xc9\xf8\x7e\xa2\xc2\xab\x79\xe4\x85\x45\xbc\x56\xba\x88\x8a\xab\x96\x73\x01\xdf\xc1\xbc\xa4\xd1\xf4\x37\x92\x7c\xbe\x22\x1c\xcf\xe1\x85\xf8\x75\x9e\xac\xf0\xca\xf9\xb5\xd4\x50\x5f\xf7\xd2\x14\xbc\x78\x5c\xde\xe4\x29\x0a\x83\x77\x97\xc7\xe7\xa7\xbf\x5d\x5c\xfe\x32\x3d\x79\x7f\x7c\x75\x15\x58\xda\xa2\x47\xdb\x13\x21\x3c\xc0\x85\xc1\x54\x12\x6b\xc4\x08\xf8\x36\xbf\x45\x94\x8c\x48\xb2\x84\xdb\x00\x20\x38\x89\x49\x54\x47\x05\xc1\x69\x6c\x88\x64\x83\x41\x66\xb4\x07\x26\x5e\x9b\x10\x30\x07\x83\xa4\xfa\xb0\x88\xed\x98\x93\x1c\xe1\xbb\xf8\xe0\xf5\xdd\x0f\x0b\x6d\x1a\x7f\xa7\x4d\xe3\xe7\xf1\x62\x7c\x37\xc1\xab\x98\x8f\xe7\x13\xbc\x14\xd5\x5f\x47\x73\x52\xcc\x18\x5d\xf1\x9c\xbd\xcb\x59\x85\xd4\x42\xf0\x1c\x33\x84\xef\xab\x42\x97\x20\xdf\xde\x4b\x52\x8f\x31\x19\xcf\x27\xbd\x54\xd4\x50\x03\x81\xce\xd1\x8f\xfb\x87\x83\x41\xb8\x8a\x1f\x8f\xa0\x3f\x97\xc9\x67\x6d\x2c\xf8\x68\xc0\xfa\x56\x68\x54\xff\xb8\x42\x08\xcf\x44\x93\x9a\x94\x9c\x98\x54\x4f\x25\x7e\xc4\x2b\x84\xca\xfb\xa3\x25\x80\x28\x89\x4a\xae\xd0\xa8\x42\x66\xa8\x30\x54\x3d\x60\x37\x9b\xcd\x1c\x02\x94\x1d\x89\xaa\xc7\xab\x91\x2f\x4d\x28\x08\x96\x52\x48\x13\x5d\xc9\xa2\x75\x06\x7e\xe2\x36\xf4\x0d\x86\x8e\x5b\xd0\x8c\x16\x77\x80\xe0\x53\xa0\x90\xa9\xb7\x96\xf5\x06\xc1\x81\x20\x13\xe8\x58\xa1\xee\x1f\x26\xfd\xa8\x6f\xdb\x82\xa1\x6a\xf6\x7e\x0e\x21\xd9\xa5\x85\x71\x05\x99\x8c\x7a\xd5\x54\x1b\x0c\xc2\x79\x34\x27\x29\xe1\xa4\x99\x0e\xb3\xe8\xdd\xf1\xc9\xf5\xc5\xe5\xef\xd3\x77\x17\x97\xd0\x6b\xb0\x2d\x73\x1d\x47\xd8\xc6\x61\x86\xe5\xa4\x4c\x98\xe5\x09\xf0\xda\x9a\xe2\x19\x8a\x1a\x5d\x51\x12\xb1\x6b\x53\xfe\x4e\x5a\x72\x39\x8b\x78\x5e\x95\xa6\xcd\x1e\xd3\x98\x34\xc5\xe5\x54\x2d\xde\xb8\x9b\x31\x02\x77\x8d\x11\x54\xb4\xbf\xd7\x4c\x08\x23\x63\x66\x1b\x23\xb0\x49\x75\xf3\xb9\x96\x22\x37\x6c\x1b\xda\xab\x5a\x5f\x50\xa7\x0d\x79\x5d\xbc\x9b\x37\x45\x5e\x73\x48\x17\xd1\x8a\x90\xcf\xe7\x2e\x46\x12\xf0\x9c\x57\xf9\x9a\xcd\x48\x75\x19\x13\x5a\x80\xbc\x05\xe1\xcd\xcf\x62\xda\x24\xb6\xd1\x9e\x81\x0f\xe4\xc6\x5d\xc1\x92\xc0\x9b\xe9\x8d\x91\x5f\x95\x7e\xaa\x3f\xcf\x55\xae\xca\x3c\x20\x6d\x13\xe7\xc5\xa7\x46\x3e\x77\x53\xae\x37\x8f\xcc\x43\xb4\xd9\x84\xd0\x1f\x72\xfe\x59\x3d\x82\x9b\xed\x15\xe9\x91\x28\x87\xe7\x57\xa0\x63\x6c\xf6\xad\x07\x64\x85\x4b\x23\x7e\x99\xe3\xf4\x0b\x27\x59\x41\xf3\xec\x28\x18\x05\x43\xff\x27\x21\xbe\x05\x1a\x61\xe1\x87\x60\x18\xc2\x7e\xa3\x82\xa6\xaa\xda\x6d\x36\xee\xba\xd0\x6b\x4c\x1b\x95\xdb\xab\x42\x17\x10\x22\x04\x61\x2b\x25\xb9\x35\x9d\x9b\xfb\x6a\x34\x24\xc3\xe0\xc7\x40\x1c\x57\x44\xd4\x62\xde\x6c\x98\x57\x07\xc5\xba\xea\xa0\xac\xbb\xca\x9a\x26\x8a\x89\xa1\x65\x4a\x43\x6a\xa0\x9e\xb5\xb5\x71\x54\xe1\x73\x89\x89\x6f\xeb\x9a\x20\x7c\xab\x64\x5c\xbd\x81\x1d\x65\x60\x64\x8d\x1a\x35\xbe\x9f\xa8\x08\xc6\x78\x6d\x6d\x49\xd6\x36\xb4\x3e\x2a\xe2\xb5\x34\x90\x1d\x99\x97\x04\xb0\xa2\x35\x12\x99\x09\x94\x69\xa9\x72\x0b\x48\xb1\x44\xca\xc6\x28\x09\x0b\x85\xeb\xac\x7e\xf7\x8c\xcb\x25\xc3\x16\x9a\x21\xf1\x5b\x2e\xe9\xb1\xf3\x9d\xb6\xea\x0e\xa7\x71\xe0\xb2\xd8\xae\x2e\xa9\xce\xd5\x2c\xb6\xf7\x58\x5e\x7d\x00\xac\xe7\x22\x3e\x78\x5d\xfc\x50\xdf\x9d\x5e\x17\xc3\xa1\x39\xfa\xd7\x71\xf1\xc3\xc1\x66\x53\x4f\xf3\x43\x5c\x68\xc4\x9a\x6a\xaf\x2a\x26\x38\x75\xce\x71\x88\xd0\x2a\x0e\x77\x1d\x6b\xf5\xf5\xec\x87\xc5\xeb\x99\x3e\xcb\xef\xe2\x74\x3c\x9b\xe0\x79\xbc\x1e\xdf\x4d\x14\x2c\x37\x31\x07\xe8\x9d\x38\x40\x35\xfe\x7c\x22\x52\xcc\xe3\x55\xe3\x50\x5e\x99\x43\x79\xde\x3c\x94\xe7\xa8\xa4\x8b\x30\x13\x0d\xf7\x50\x5d\x6a\xaa\xf5\x03\x7a\x89\xe7\xa8\x14\xdf\xe2\x79\x85\x4f\xed\x9f\xdb\x70\xef\x4c\x3c\x9b\xbf\x2d\xa7\x88\xdd\xea\x52\xf2\xf9\x08\x2f\x2c\x42\x5b\xa6\xb6\xb2\xce\xb2\xf2\x36\xd7\x23\x90\xa8\x8e\xa2\x3b\xc0\x5e\x22\x42\xda\xbc\xd3\x67\x29\x41\x78\x25\x21\x99\xc4\x4c\x1f\x0c\x56\xd5\x79\xb6\xae\x99\x10\x36\xeb\x83\x10\xaa\x1a\x57\x63\x70\x2d\x95\xa7\xe7\x58\xf2\x34\x44\x7a\x12\xd4\x35\x8c\x3e\xb6\xa7\x02\xb2\x11\x93\xf0\x35\x79\x2d\x91\x59\x95\xe8\x5d\xc1\xd1\x40\x64\xeb\xf5\x8a\x30\xc0\xe5\xaf\xae\x29\x4c\x61\x67\x0a\x80\xd5\xeb\xe4\x60\xc3\xb3\xea\x3a\x0a\x1e\xc1\xe2\x20\x3d\x4e\xeb\x55\x97\x87\x62\xb9\x6f\xe3\x3e\xb9\x75\x45\xc7\xa2\xa9\xa0\xbd\xd9\x3c\x41\x20\x6c\x92\xcc\xee\x4e\xd4\xb5\xe1\x96\xc2\x5e\x68\x2b\x05\x7b\x9e\x5d\x51\x65\x8d\xfc\x54\xda\x9c\x90\x3b\x79\x8c\x2b\xcb\x5b\xd3\x98\xc2\x71\xf6\x87\x31\xa0\x16\x0e\x8f\x8e\x38\x4b\x75\xd3\x58\xcf\x02\x03\xc8\x51\x59\xc2\xe4\x81\x12\x76\x4e\x5d\xc1\x79\xe8\xe9\x8b\x9e\xee\x00\x39\x8c\x38\x6e\x68\xd5\x40\xf7\x60\x23\xd3\x63\xe0\xcc\x6e\xcf\x1c\xae\x7c\x56\xcc\xb5\xa7\x47\xdf\x41\xb4\xbe\xc3\x52\xb8\x35\x94\x1e\x66\xc2\x37\x38\x27\x1f\x53\xd1\xd4\x4a\x94\x25\xae\x15\x02\xc8\xdb\x2f\x2e\x45\x32\xaf\x9e\x62\x26\xba\x35\x6e\x57\x34\x8a\x92\x43\xb1\xb2\x4e\xc2\xfa\x75\xa8\x38\xfb\x42\x12\xd7\xb6\x0a\x84\xe4\x19\x79\x52\x31\x18\x30\x48\x78\x65\x73\xcb\xe2\x78\xd6\x2d\xae\x46\xaf\xa5\x12\xea\xd4\x90\xe6\xb6\xb2\xce\x17\x0b\xb7\x52\x64\x2f\x8e\x9b\xb0\xf7\x47\x44\x9d\xd4\xa0\x69\x21\x65\x88\x7a\xb7\x15\x6f\xb6\x8e\xa0\xd0\x6b\xf5\x1b\x4b\x11\x59\x73\x51\xb7\xca\x62\x28\xb2\x42\x94\x21\x7c\x1b\xd1\x42\x6e\x76\x7b\x07\xf0\xe3\x9c\xf0\xbb\x7c\x1e\xef\x1d\xc2\x7c\xbc\x89\x6f\x2d\x15\xce\xcd\x33\x54\x2e\x56\xf0\xd9\x6f\x73\x07\x5a\xd3\x9f\x74\xba\x1d\xed\x80\xec\xee\xd5\x57\xe4\x7e\xee\x8f\x7e\xcd\x0d\x24\xd5\x37\x90\x62\x17\x69\x88\x54\x79\x43\xa2\xd1\xfa\x6f\x13\x56\x0f\x69\xb7\xf5\x7c\x0b\x3b\x5e\xd7\xe5\x89\x61\x50\xc6\x80\xce\xfb\x65\x2e\xa4\x86\x8f\x10\x3e\xbd\x32\xd9\x22\x52\x38\x60\x00\xa4\x61\x0a\x06\xdb\x67\xb3\x4a\x42\x62\xd8\x43\x8b\x3d\x47\x80\x1f\x25\x3f\x38\x8c\x36\xd6\xd0\xb0\x55\x62\xb9\x5c\xa0\x21\xa2\x7a\x30\xfd\x48\xd1\x68\xfb\x8a\xe5\x33\x52\x14\xbe\xf6\x7b\x24\x3d\x4b\x59\x5f\xcf\x81\xed\xcb\x5c\x95\x55\x6d\xde\xca\xc3\xbd\xac\xc0\xd0\x6c\x95\x65\x8e\x73\xfb\x1a\xb8\xaa\x8a\x58\x2c\x79\xf4\xe1\xf8\xfc\xf4\xea\xe3\xf1\xc9\xe9\x55\xcc\xac\x1f\xce\x97\xe9\x9b\xdf\xa7\x67\x6f\x9d\xef\xf2\x95\x24\x2d\x1a\x78\x9c\xa6\x31\xb3\x7e\x54\xfd\x8e\xf3\xe8\xe6\x51\xfc\x8c\x6b\x23\xf2\x8c\x75\xf8\x5f\xae\xf5\xec\xb4\x44\x9f\x65\xda\xf0\x82\xf8\xd0\x3e\xc4\xd5\xdd\x7a\xce\xc6\x56\x50\x8b\xa6\x1b\x7b\x37\x87\x14\xcf\x24\x13\x6d\xb4\x8f\x17\xbf\x9e\x5e\x5e\x9e\xbd\x3d\x9d\x5e\xfc\xf6\xe1\xf4\x32\x40\x78\xf1\x95\xfb\x47\xbb\xf4\x28\x76\x11\xcf\x91\x4e\xf5\x21\x38\x85\x56\x9b\x50\xbc\xbf\x90\xc7\x96\x33\xa8\x45\x9a\x6e\xc0\xca\x83\x84\xb5\x58\xcb\x69\xa9\x8f\xb8\x2c\x82\x96\xb6\x5c\x94\x8c\x67\x13\xdb\xcf\x7e\x3c\x9b\xf4\x5e\x50\x26\x4c\xb3\xe6\x81\xaf\x28\xc6\x04\x8e\x40\x5a\x86\x89\x6f\xe5\x2e\x0c\xc6\xbc\xdc\x76\x16\xfa\xf0\x33\x07\x9f\x71\xd9\xd6\x4e\xc8\xae\x3b\x71\x7d\x26\xa4\xbe\x77\x6d\xa3\xac\x7c\xb9\xa9\x31\x2f\x31\xc8\x56\x95\xc2\xc2\xec\x8b\x4a\xc6\x96\x3e\x1e\x45\x41\x18\xbf\xbe\xb3\xa0\xbb\xc9\x1c\x85\x14\x61\x56\x19\x62\xfd\x77\x9c\x16\xf5\xa1\x68\x74\x6f\x6a\x75\x6f\x89\x7a\xcf\xdb\xbd\x5e\x62\x4c\xf5\xd5\x26\x53\x2a\xce\xc4\x4b\x8d\x2f\xff\xab\xd5\x47\xcc\x37\xed\x29\xa6\x75\x89\x40\x5d\xb9\x55\x57\x72\x5d\xce\x0e\x13\x44\xb1\xbb\x17\xa0\x67\xef\xde\xe1\x44\x2a\xd9\xde\x16\x2b\x1c\x2d\x17\x07\xe2\x77\x50\xdd\xd4\xd8\x9f\x4c\xdc\xbb\x40\x1b\xbc\x8e\x33\xb9\xce\x08\x9a\x6c\x36\x1a\x91\xb5\x67\xab\x28\x63\x7a\xc4\x9b\x21\xd8\xc0\x0e\x32\x90\x2c\x3b\x1a\x59\x50\xae\x54\xb0\x35\xb6\xf0\x0c\x81\x5d\x8e\x68\xac\xc2\xb8\x8c\x5c\xc9\x5a\x53\x16\x09\xaa\x90\x80\x9e\x78\x29\xa2\x38\x08\xfc\x57\x45\xf4\xa1\xa5\x96\x5c\x83\xb1\xac\x80\x86\x75\x9e\x04\x23\x13\x2f\x11\x9b\x8f\x1f\x00\x89\x56\x7c\x53\x98\xb4\xd5\x27\xc9\x1c\x8a\x4f\xca\x32\xb4\xfa\xa4\x65\x0a\xf1\xd1\x74\x4b\xf5\x19\x54\x49\xe2\x9b\x36\x18\xd4\x1f\x44\xb5\xc5\x7b\xa8\x74\xf5\xfa\x92\xdc\x9e\x7e\x59\x89\x0f\x8c\xdc\x92\x2f\x2b\xeb\x93\xdc\x24\xc5\x27\xb3\xee\x4c\x25\x68\x0a\x9e\xaf\x50\x09\x9a\x92\x94\x16\x3c\x28\x71\x16\x37\xe2\xaf\x69\x46\xb7\x6d\xd2\x2a\x8e\xc3\x33\x4d\x3d\x97\xb1\x9d\xbc\x37\x2d\x73\x43\xa3\x9a\x78\x2a\x2b\x10\x15\x08\x31\x31\x26\x93\xf8\x10\x73\x44\x17\x21\xb3\x91\x6c\x58\x15\xf0\xc8\x6b\xad\x2e\x61\xb9\x40\xd0\xac\x26\x59\x15\x44\xd0\x17\x8c\x07\x95\x44\x31\x1a\xf1\x1d\xc0\xb3\x9f\xa9\xc6\x5f\xc9\x97\x4d\x6d\x0f\x98\xa7\x2d\x8c\x0e\x90\x80\x66\x62\x4e\x21\x55\xc2\x7c\xaa\x17\xd5\xed\x4a\xe0\xad\x14\x39\x3c\x9a\x8a\x7c\xd2\xfc\x50\xea\xd8\xf4\x3b\xcc\x05\xd5\xf5\x9a\xce\xe3\x04\x93\xe8\x96\x64\x84\x25\x9c\xfc\x24\x5e\x34\x0b\x08\x5f\xa8\xdc\x29\xd0\x30\x09\x51\x8f\xc2\x12\x5d\xab\x1b\xc4\x2a\x40\x22\xd4\x41\x89\x1b\xcd\x52\xc1\x62\x38\x24\x08\x55\xa2\x0b\x8f\xd7\x70\xa6\x11\x90\x57\x78\x5c\x08\xf2\xb8\x22\x5c\x05\x1a\xb4\xf3\xa4\x3a\x8f\xc1\xa3\x51\x63\xd3\xe3\x71\x65\x7b\x1d\xb3\xa3\xa0\xe0\x81\xa0\x38\xaa\x60\xa2\xc5\xdb\x6c\xad\xde\xca\x71\xd4\x69\x1f\xd5\xdb\x30\x18\x92\x61\x80\x02\x9c\x9a\x7a\x94\x76\x03\xe5\x6c\x8f\x33\x4c\xa2\x07\xe6\x20\x75\xaa\x30\x4e\x7b\x37\x76\x14\x49\x19\x78\x52\x21\xd3\x0f\x06\x37\x15\x04\x76\xff\x73\x48\xf0\xe7\x90\xe3\xdb\x6a\xd7\xf9\xac\x3c\x4f\x20\x4e\x53\x85\x1b\x7b\x2a\x5f\x18\xff\xce\xf8\x42\xde\x0e\x55\x29\x1e\xe4\x8b\x2a\xc5\x15\x54\xb5\x58\xf9\xf4\x9e\x75\xd4\x6c\x32\x18\xf8\x10\xf0\x1d\x40\x28\xf5\x7c\x16\x12\x7c\x00\x15\x94\x36\xe9\x95\xca\xce\x0b\x35\x48\x7a\xf3\x5c\x59\xcd\x57\x5a\x16\x2b\x84\x63\x95\x3d\x64\x98\xbb\x26\x00\x26\x50\x5b\xd6\x63\x2d\x3a\x1a\x86\xca\x87\x3b\x9a\x92\x50\xad\x64\x86\x1c\xb3\x77\x2c\xf8\xbc\x4c\x22\x01\xc6\xef\x30\xa9\x70\x01\x1b\xe6\xae\x74\x11\xbe\x93\x73\x4e\x55\x97\x8c\xb9\x71\xc5\x36\x8a\x3c\x70\xe4\xc2\xa4\x52\xf3\xfb\x8f\x4b\xbd\x01\x8d\x0d\x85\xbf\x4b\x14\x1b\x30\xbc\x24\x5a\x56\xf7\xa9\x86\x7f\x56\x93\xbb\x94\xe3\x59\x4b\x06\x33\x0c\x56\xdf\xcf\xd5\xe4\xc4\xa4\xa9\x80\xe8\x93\x90\xfb\x9d\x11\xac\x98\xa4\x96\x91\x6d\xfb\xf1\xce\x3d\xc7\xbb\x37\x22\x69\x85\xe6\x10\x04\xca\xc3\x5d\x5f\xf9\x80\xa3\x7b\xf6\xa3\x42\x7e\x0e\x70\x80\xf0\xa7\x90\x8f\xb3\x09\xda\x6c\xc4\x1b\x22\x7f\x54\x1a\xeb\xd2\xd1\xce\x57\x75\x37\x0d\x35\x8d\xb0\x2e\x17\x75\xee\x37\x8a\xb9\x87\x9e\x81\x08\x3b\x5f\x1a\xe3\x44\xad\x25\xfa\xab\xd2\xfd\xf6\x6c\x25\xbe\x0e\x87\xe5\x66\x84\xae\xff\x55\x69\x88\x25\x79\x90\x63\x9a\x73\x41\x2f\xff\xc1\x80\x8c\xff\x6d\xa2\x28\xfe\x46\xf9\xdd\x79\x92\xcd\x13\x9e\xb3\xc7\x2b\xc2\x39\x61\x31\x89\x38\x49\xd8\x3c\x7f\xc8\x9a\x5f\x0a\xc2\xd7\xab\xe6\x6b\x0b\x15\x3e\x26\x11\xf8\xff\xc6\x24\xfa\xf9\xf8\x6a\xfa\xe1\xf8\xfa\xec\xd7\xd3\xe9\xc7\xcb\x8b\x7f\xff\xdd\x7d\x75\xf5\xfb\xf9\x9b\x8b\xf7\x31\x89\x2e\x2f\x2e\xae\x85\xfc\x73\x47\x66\x9f\x7f\x4e\x8a\xab\xf5\x0a\x68\xfe\xf4\xe9\xec\xed\xf4\x97\x53\x91\xab\x6d\x85\x16\xae\x4a\xee\xa0\x3a\x9b\x13\xc3\x47\x0f\x87\x39\x58\x65\x14\xb1\x94\x08\x02\xbc\x76\x2c\x86\x52\xf8\x25\x9e\x66\x71\x16\x06\xd3\xa9\x4c\x35\x14\xfc\x4c\x94\xe5\x0f\x21\x84\x29\x32\x95\x99\x29\x73\xa5\xf1\xa4\x2a\xec\xae\x3a\xc7\x80\x82\xd8\xae\xc3\xd9\x10\xa2\x48\x2f\xd2\x3c\x67\x21\x3c\xb2\x24\x9b\xe7\xcb\x10\xfd\xc5\x22\x8d\x86\x22\xbd\x75\xcb\xab\x42\xec\x62\x5e\x4a\xf3\x1e\xb3\xf7\xec\xd8\xac\x8a\xa3\x5d\x09\x3c\x00\x40\x15\x92\x8f\x7d\x4d\x49\x3c\x40\x5e\x0c\x3d\x81\x25\xc6\xae\x2d\x53\x42\x46\x63\x5e\xf6\xb6\x8d\xda\xbc\x27\xaf\x31\x5f\xfd\x11\x85\x12\xab\x68\x23\x16\xc8\x1f\x20\xeb\x6c\x60\x67\x93\xcf\xe8\x15\x5e\x7a\xb4\xdc\x66\x89\xe1\xfb\x78\x29\xd7\x96\xff\xae\xb1\x44\x86\xcb\x09\xac\xd7\x01\xfa\x71\xff\xd0\x17\x22\x63\x15\x71\x52\xf0\x70\xa9\x85\x04\x3b\x98\x8a\x71\xe1\x3e\x10\x8d\x73\x67\xeb\x7d\x4f\x5a\x50\xd9\x13\xeb\xb6\x16\xe7\xc6\x36\xcc\xb0\xac\xcf\x6e\xaa\xe1\x78\x54\x3b\x6d\xe3\xde\x41\x86\xf9\xbc\x0f\x09\xc2\x8f\x15\x2b\x82\x79\xa9\x16\xcf\xad\x7a\x7d\x8b\xf7\x0e\xa5\x0a\x79\x6a\x57\xa5\x2a\xec\x41\x6e\xd8\xd3\x6a\xab\x36\x9f\x4e\xad\x6e\x98\xea\x2d\x5f\x90\xfa\xe2\x27\x75\x25\x49\xf1\xc1\xe0\x8b\x87\x9a\x1d\x87\xe2\x8b\x4d\xed\x18\xa8\x71\x63\xcd\x57\x11\x94\x8c\x86\x2b\x0a\x5b\x40\x89\x72\x9e\xf4\xac\xe7\x98\xf7\xb4\x35\x9e\x57\x52\x76\x51\xaa\x64\x16\x56\x39\xfc\x1d\xc3\xa6\xc9\x10\x7e\x08\x19\x3e\x05\x13\x86\xab\x90\xe1\x0b\x78\x62\xa5\x04\xf2\x6b\x95\x37\xf0\xc9\xd6\x79\x79\x1e\x3b\xc7\x11\xbe\xb4\x0d\x01\xf0\xc7\xf8\x5f\xaf\x2e\x3e\x44\xf2\x20\xa4\x8b\x47\xfc\xd7\xf8\xf0\xe0\x00\xbf\x8d\xff\x19\x7f\x88\x5f\xfd\xc7\xf8\x8f\x87\x3f\x4d\x86\x7f\x7a\x55\xf5\xcd\x99\x1b\x3a\x67\xef\x50\x47\xcb\xaf\xbc\x22\x21\x54\x7c\x75\x22\x8e\x9a\x67\x24\xa4\x50\x42\xc5\x68\x9b\x20\x7d\x0e\xd7\x8e\x34\xde\x3b\xe8\xdd\x30\x92\x7c\x96\x6e\x7d\xe6\x44\x8f\xe3\xeb\xcd\xa6\x12\xb6\xab\x13\x10\x12\x57\xe1\x3e\xac\x73\x10\x8a\x36\xa7\xe7\xa8\x91\x24\x8e\xe3\x93\x23\x19\x18\xf6\x28\x18\xeb\x8e\x1d\x05\x43\xf9\x6e\x18\x08\x41\x70\x6c\x89\xa6\x4d\xea\x8a\xab\xd0\xb4\x3f\x8a\x75\x24\x3f\x48\x9e\x7a\x04\x3f\xb4\x94\x2c\x7f\x29\xae\x73\x54\x8b\x9c\x6f\x13\x2f\x6d\xce\x23\x43\x59\x7d\xfa\x56\x01\xcb\xd5\x75\xad\xea\xcc\xf1\x09\x65\xb3\x75\x9a\xb0\x49\x60\xf1\x6c\x70\x4a\x63\x7a\xe4\xe1\xf5\xf8\x8f\x6f\x4d\x5e\x25\x64\xf7\x2a\x83\xd3\x60\x1c\x60\x1f\x3c\xb2\x28\x79\x18\x83\xab\xe6\x51\xd0\x0f\x46\x01\xee\x07\x98\xfe\x18\xff\x15\x3d\x65\xc3\x38\x88\xa2\xa8\x1f\x0c\x43\x03\xeb\xf9\x57\x34\x0c\xfa\xcb\x9c\x91\x3e\xe5\x64\x59\x04\x6a\x7c\xb3\x61\x7c\x16\x02\xc6\x32\x78\x53\xe9\xfa\x0e\xe3\xa0\x3f\x09\x4a\x31\xf7\x86\x87\x38\x43\xa3\x1d\xd5\xd6\x02\xbd\x5d\xef\x27\x51\xef\x4b\xd1\xea\x3c\x3e\x78\x9d\xff\x40\x75\xf5\x73\xb7\xfa\x79\x55\xfd\xbc\x5e\x7d\xda\xac\xbe\x58\x46\xba\xf6\x12\x22\x9a\x8e\xf3\x49\x2f\x1b\xc6\xef\xc3\x04\x0d\x83\x51\x3f\x18\x8a\x26\x25\x9e\x26\x95\x56\x93\xaa\x1d\xeb\xbd\xb5\x63\x7d\x90\xc7\x00\x30\xc8\x62\x22\x55\xa9\xde\x39\xde\xfa\x0a\x44\xdb\x1f\x24\x77\xcc\x27\x50\xb5\xbf\xbb\x5b\x01\xec\x59\x3f\x3b\x7b\xaa\x78\xf3\xa6\x7d\xab\xa9\xb6\x81\x4f\x35\x4d\x41\x1c\x13\x28\xe2\x37\x9f\x91\x9d\x14\xff\x07\x83\x4a\xe9\x03\x2f\x26\x42\xba\x6c\x2d\x4b\x1e\x7c\x32\xa5\xe4\x7c\x9a\x1c\xdb\x6f\x50\xe1\xbf\xf9\xca\x04\x06\xb5\xe7\xe1\xfc\xfe\x06\x79\x7e\xad\xaf\x1e\xf1\xf2\xf7\x36\x73\x59\xcb\xeb\x2f\xa5\x4b\xca\x63\xe9\xd9\x13\x89\x34\xb1\x74\xa6\x89\x0a\x9e\x33\x12\x33\xf5\x83\xfe\x9d\x68\xaf\x8e\x25\x85\x2b\x43\xf5\xeb\x8e\x72\xf3\xac\xb2\x6c\x36\x8a\xef\x2b\x15\x0c\x77\xf3\xca\x15\xf8\x1c\x1f\x0f\x5d\xd1\x51\xab\xfe\x28\x34\xc5\x0c\x87\x56\x31\x5a\x2f\xa0\xe0\xb3\x65\xa5\x4c\x0a\x79\x6a\xea\x26\x81\xfe\xa0\x94\x28\x1f\xfe\x18\x38\x55\x57\xfc\x68\xda\xab\x7d\x69\xc4\xb3\x5b\xb4\xcd\x27\x60\x1e\xad\xd6\xec\xb6\xe9\x16\x23\x93\x2a\x9c\xe3\x66\x2f\xda\xfd\xa6\x7b\xb4\x94\x66\x05\x9a\xcd\xff\x1d\x06\xf1\x27\xfc\x0b\xfe\x13\xfe\xb7\xf8\x2e\x0c\x2c\x59\x20\x10\xc9\x6c\xd9\xe0\xdf\x70\x8b\x08\xf1\x13\x6e\x97\x3a\x7e\x69\x17\x55\xfe\xd4\xa6\xf6\xbb\xa7\xe4\xa1\x78\x05\xbc\xdf\x2e\x1d\xb5\x4c\x6a\x69\xa8\xff\xfa\xb7\x35\x61\x8f\xdd\xd2\xb6\x5f\x68\x36\x92\x02\xbc\xe2\x74\xae\xc2\x99\xb7\x5c\x90\x56\xb9\x66\xf9\x72\x95\x67\x22\x8b\x54\x6b\xec\x48\xae\x31\x27\xc8\x17\x5e\x41\x4d\x6c\xcd\x21\x9f\x40\x1d\x2f\x1e\xbb\xd1\x07\x0d\xf8\x14\x4c\x37\x3a\x16\xa3\x33\xde\xd1\x74\x0e\x05\x3d\x33\xa3\x78\x31\x2d\x78\xc2\xc9\x4b\xf2\x3d\x27\x47\x1d\xa8\x63\xe7\xf0\x24\xfc\x55\xc2\x39\xeb\x38\xfe\x72\x18\xa7\xab\x84\x71\xda\x72\xd5\x5d\xe5\x81\x79\xa5\xb2\xec\x9b\xa9\xd0\xad\x20\xd5\x8e\x65\x92\x25\xb7\xa4\x09\x7d\x55\xf7\xe3\xc1\x0b\x7c\x87\xe7\x78\x85\x97\x35\x45\xb7\x3a\x24\xdc\x80\xbf\x21\xc1\xc1\x5f\xff\x4d\x2e\x90\xa7\xca\xfc\x6d\xb4\x77\xe0\xb7\xdc\xaa\xae\x3c\xca\x12\xe1\x1d\x24\xdf\xd2\x42\x10\x9b\x77\x26\xed\x66\xdb\x5a\x42\x32\x9f\x9f\x88\x39\xf8\x2b\xcc\xf5\x4e\xf4\xc1\xba\xc6\x64\xda\x4a\x9d\x16\x57\x74\xb9\x4a\xc9\x49\x4a\x67\x9f\x3b\x93\x77\x72\x6d\xa5\x7f\x4b\xb8\xa8\xc3\x9b\x7c\x9d\xcd\x8b\xce\xf4\x9d\x5c\x5d\xe8\x9f\xa4\x94\x64\xfc\x92\xcc\xf8\xb3\x0b\xb1\xb2\x76\x6e\x09\xcd\x6e\xab\x6c\x2f\x6a\x95\x43\x61\x57\xb9\x97\x79\x0e\x39\x9f\xd5\x36\x93\x69\x17\x75\x33\x51\x9e\x45\xbe\xca\xd5\xa5\xd7\xce\xba\x2e\x0d\xd3\x4b\x67\xdb\x57\xc5\x2d\xe1\xa7\x29\x80\x14\x3e\x6b\x5d\xb8\xd9\xba\xd4\x5c\x25\x7f\x6e\xf5\x55\xb6\xad\x25\x14\x2f\x6b\x43\xd1\xbd\x0d\xc5\xcb\xda\x50\x74\x6f\x03\x70\x60\x2f\x69\x45\x3d\xe3\xee\x52\x5e\xd2\x92\x7a\xc6\xed\xa5\x68\x3b\xd8\x2b\xfe\x98\x92\xb7\x64\xc5\xc8\x0c\xb0\xc7\xce\x49\x51\x24\xb7\xa4\x7b\xa9\x3b\x08\x6d\xad\x05\x78\xec\xbd\xb5\xb8\xad\x4e\x85\x66\x9d\x4e\xab\x13\x7d\x20\xbf\x57\xac\x59\x27\xda\xb4\x13\xed\x6b\xf2\x85\x5f\x69\x16\xa4\x13\xdd\xbc\x63\x9d\x19\x79\xc6\xcc\x4a\xba\x11\x15\xec\x20\x18\x1d\x3e\xaf\xca\x45\x37\xea\x66\x6f\x7c\x1e\xf5\x75\x27\xea\x82\xf0\x95\xe0\x2b\x9f\x47\x3c\xed\x4c\x5c\x59\x99\x77\xa2\x3a\xeb\x44\x55\x02\x93\x3d\xaf\xbe\x8b\x4e\x94\xcf\x3f\x5d\x1f\xbf\x79\x7f\x3a\x3d\x39\x7d\xff\xbe\x23\xe1\xbb\xc8\xce\xb4\x95\xba\xe4\x63\x3f\x6a\xce\xb7\x13\xf9\x79\xa7\x7a\xdf\x25\xc5\x73\xc9\x56\x59\x3a\xd4\xf9\xa4\x62\xbd\x3b\x91\x5f\x59\xb5\x6e\x67\xa0\xe5\x38\x9e\x2b\x06\xbd\x1b\xe5\xa5\x45\x79\xbb\xd4\xdb\x14\x4f\xb6\x0b\xc0\x52\x86\xdd\x61\x8b\x65\x8f\xb5\x8b\xea\x2f\x91\x49\xb5\xa5\xab\x33\x91\x50\x3d\x63\x2b\xe6\x7c\xa3\xe6\x8b\x24\x4d\x6f\x92\xd9\xe7\x7d\xf1\x65\x5f\x63\x34\x7e\x93\xa6\x78\x63\x13\x40\x2b\x2a\x1b\x18\x04\xda\xf1\x4e\x70\xf9\xdb\x44\xf6\x4e\xd6\x71\x2f\x8c\xa5\xa0\x66\x97\xf4\x4e\x95\x01\x5d\xa0\x70\x17\x9b\xd9\x0e\x79\x1f\x98\x34\xa3\x60\x68\x69\xb9\xac\x98\x1d\x19\xa0\x69\xa5\xc9\x63\xbe\xde\x46\x88\x93\xe5\x2a\x4d\x38\x19\x19\x8a\xc5\x2b\x87\xa4\x0a\x8a\x92\x49\x9c\xd9\xe7\x75\x63\x8b\x38\xde\x65\xe4\x3b\x23\x66\xbe\x44\xb8\x9f\x2b\x06\x84\xcc\xf7\x17\x24\xe1\x6b\x46\xea\x53\xed\x59\x08\x79\xf1\x53\x41\xb2\xb9\x37\xfc\xc4\xb7\x8e\x59\x29\xd1\x73\xa0\x98\x42\xb9\x85\xa9\x5f\x63\x02\x9e\xa6\xf9\x60\xb0\x17\xee\x81\x1e\xde\xbe\x4b\xcb\x90\xbe\xcf\x50\x55\xae\x3b\x89\x18\xa8\x49\x80\xaf\xb0\xe0\x16\x13\x07\x3f\x15\x8a\x88\xae\x4e\x3f\xbc\x9d\x1e\x9f\x5c\x9f\x5d\x7c\x50\x8e\xc7\x2d\x6a\xce\xc1\x80\x8f\xa9\xb3\x71\x4c\xe0\x02\x94\x47\xf7\x49\xba\x26\x70\xbd\x2c\x4b\x93\x1b\xa9\xdf\xb2\xcb\xf1\xda\x22\x71\x85\xa1\xe9\x81\xe2\x12\x03\x1d\x05\x43\xd2\xf4\x83\x31\xe1\xce\xf7\xc0\xd2\xab\x30\x50\x0b\xd5\x68\x35\x23\x72\x61\x6a\x8d\x56\xf6\xe3\xe1\x51\x26\x47\x2b\x8f\x0f\x5f\xe7\x3f\x64\x70\xf7\x41\xc7\xb9\x3b\x5a\xf9\xa4\xe7\x33\x30\x39\xe2\x6e\x9c\x05\x8a\x24\xc0\x98\x83\x55\x1a\x3e\x29\xb8\x56\x5e\xc3\x6a\xa5\x25\x2a\xcb\x52\x7a\x2e\xd7\xd0\x5e\x13\x07\x7b\xa7\xf3\xb2\xf4\x2a\xf2\x9e\x85\xc8\xbe\x5b\x9f\xfa\x6d\xd0\xda\x67\x86\x7d\x94\xc8\xe4\x19\xc4\x19\x7b\x4b\x8a\xd9\x5b\x32\xcb\x59\xc2\x73\x86\xc4\xbe\x99\x2d\xe8\xed\x5a\x9d\xbe\x87\xd8\x3e\x8b\x0f\x5b\xbd\x11\x6b\xb2\xbb\xf6\x3c\x2a\x11\x4e\x56\x2b\x92\x49\xad\x51\x3d\x02\x9f\xab\x4f\x7a\x2e\x2e\x7e\x37\x5d\xec\x3f\x2c\x5a\x89\x6b\xdc\x30\x9e\x00\xb2\x60\x23\x7c\x92\xcf\x6d\x7f\x34\x96\x86\xd4\x20\x37\x04\xb8\xfa\xf1\x86\x82\x42\x47\x8c\x3f\xcd\x68\x0d\x3b\xde\xdc\xe1\xfb\x2f\xfb\x4b\x5c\xd1\x1c\x65\xb8\x41\x73\x94\x75\x83\x6b\xdd\xa1\x51\x7f\xe9\x44\xd7\x47\x7d\xdb\x31\xd4\xf5\x6c\xe9\xe6\x9b\xf8\x74\xf8\xfd\x28\x90\x51\x59\x3f\x90\x87\x94\x66\x24\xc0\xdf\xfd\xaf\x51\x30\x4b\xb2\x19\x49\x83\x12\x27\xf5\xa1\x62\xd1\x35\x6c\xe5\x8e\x84\x81\x9f\x60\xbf\x1d\x05\x01\x16\x3b\x24\xbd\x59\xf3\xaa\x3f\xc7\x41\xb2\xe6\xf9\x2c\x59\x51\x0e\x5e\x28\x01\x96\x2f\x72\xc6\xa4\x2d\xb7\xf8\xb5\xc8\x67\x6b\xd1\x55\x73\xa3\xd8\x0d\x16\x39\x5b\x06\x38\x58\x26\x5f\x34\x98\x5a\xb0\xa4\x99\x79\x06\x14\xb1\xbb\x3c\x9d\xc3\x05\x09\x23\xc9\x3c\xcf\xd2\x47\x78\xfc\xdb\x9a\x32\x20\x51\x90\x54\xa2\x7e\xbf\xa5\x8c\x68\x03\xf5\x62\x45\xd2\x14\xac\x72\x02\x71\x2e\xdd\xa8\xbb\x9f\x80\x53\x9e\x0a\x16\xcb\x22\x2c\x11\xac\x75\x9d\xc4\x32\x37\xb5\x51\xb1\x1d\x9e\x3b\xfb\xe4\x0d\x59\x9e\x85\xc1\x2a\x29\x38\x71\x80\x5b\x88\x52\xce\x88\xae\x34\xa8\x75\x56\x8e\xd9\x9a\x3f\x2b\x3d\xcd\x56\x9d\x72\x94\xf8\x66\x7d\x73\x93\x92\x02\xa2\x1d\x88\x99\xb8\x62\x84\xff\x42\x1e\x41\x33\xe2\x33\x07\xcb\xc7\x24\xfa\x4c\x1e\x4f\xf2\xb9\xe4\x0a\xb6\x50\x0f\x11\xe6\x8e\x0b\x17\x9f\x80\xfd\xa1\x3f\xf5\xc8\x75\xc3\xb4\xa3\x8c\x04\x30\xc5\x64\x73\x22\x95\x59\x1d\xf3\x25\x9e\x35\x43\xe7\x6c\xab\x13\x31\xb1\x88\xd5\xac\x77\x72\x16\x61\x40\x44\x2f\xa8\xae\x23\x08\x17\xa1\x5a\x24\xfb\x99\x5e\x25\xdc\x84\x74\x86\xa5\xd2\x20\x50\xcc\x92\x15\xd9\x5f\x31\x52\x14\x56\x62\x98\xe6\x67\x59\x3d\x35\xbc\xde\xa7\x59\x3d\xe5\xc5\xba\xe9\xb1\xd6\xde\x26\x6c\x28\xe5\x66\xdc\x05\xa9\xcf\xe4\xf1\xa3\xa8\x47\xbd\xd4\xcf\xe4\xb1\x51\xc1\xcf\xe4\xf1\xd3\xaa\x59\x66\x73\x56\xa8\xf2\x04\x0d\x21\xbf\xd8\x04\xde\xe6\x0f\x8d\x16\x8a\x74\xf3\xfc\xc1\x6a\xa1\x6d\xda\x56\xd8\x56\x4b\xb9\x13\xbd\xbb\xce\x72\x99\x0f\x04\xe1\xc4\x4d\x29\x27\x08\x92\xf0\xde\x16\x0f\x39\x18\x34\x2c\x89\x73\xf4\xc4\x5a\x18\xa3\xbc\xc6\x18\x8d\x13\x9c\x4d\x4a\x09\x4c\xe3\x61\xbb\xf2\xc1\x20\x0f\x13\x9c\xa1\x1e\xb0\xc6\x76\x7d\xd4\xaa\x0a\xd0\x60\x90\x45\x05\xcf\x57\xe2\x64\x4b\x6e\x13\x39\xbf\xad\x58\x01\x49\xe7\x33\xc6\x77\xc7\xf9\x8f\x0a\xc2\x37\xe5\x2c\xc9\x0a\x2a\x88\x5c\xe7\x9e\x4d\x41\x4e\xce\xd9\x9a\x31\x92\x71\xd0\x97\x61\xe6\x79\xa9\x8d\xf4\xc4\x33\x48\x15\xd6\xef\x98\x60\x00\xa9\x20\x5f\xa8\xf9\xab\x1c\xaf\x59\x04\x6b\x72\x30\x50\x0f\x86\x8f\x7a\x91\xc8\xe8\xde\xf9\xfe\x97\x0b\x8c\x37\x2c\x7f\x28\x08\xdb\xdf\x15\xb3\xe1\x6b\xac\x06\xea\xc6\x08\xdd\x85\x50\x9c\xe0\xa2\xcd\x75\x69\x5d\x33\x93\xf5\xbb\x31\xc7\xed\x0c\x5c\x83\x1f\x08\x26\x38\x23\x09\x23\x05\xbf\x58\x40\xec\x0e\xbf\x5c\x2b\x81\x4e\x12\xa6\x6e\x2b\x70\x16\x3b\xbe\x6f\x4a\x44\xf1\x85\xc3\xd7\x28\x36\x21\xb7\x8d\x72\x7d\xdf\x1d\xb0\xbc\xf2\x35\x97\x80\x39\x99\xe5\xe6\xc2\x7b\x42\x98\xac\xaa\x51\x96\xba\xf2\xbf\x51\x7e\xe7\x0d\x91\xd5\xda\x04\x4d\x9f\x80\xdf\xd7\x96\x12\x18\x61\x24\x9b\x13\xd6\x1a\x96\xd6\x5e\x4e\x91\x4e\xad\x11\x08\xd4\xe9\x20\x91\x4f\xbf\x99\x24\xa3\x03\x98\x8b\x92\x88\x7d\xad\x57\x97\x67\x7c\x5b\x83\xd1\xf6\xc4\x34\xba\x4b\x8a\xb7\x17\xe7\x9e\x2d\x99\x1c\xcd\xf3\x19\x70\x49\x11\xcc\xe4\x2b\xe0\xdd\x72\x16\x12\x34\x52\xc6\x4f\xa6\x78\x5d\x54\x0d\xcb\x4f\xbe\x6e\xab\xbc\xc9\x64\xca\xb9\xc9\xe7\x8f\x55\x8f\x9d\xcd\x25\x4f\xf7\x40\xd3\xf4\x0c\x4e\x7b\xd5\xc4\xd1\x1a\xcf\xe9\xbc\xfe\x0a\x62\x16\xa4\x24\x61\x97\x72\xb0\xd6\xbe\x90\xbe\x1d\xf9\x41\x77\x44\x75\x4c\x5f\x35\xa0\x16\x66\x9f\x53\xa1\xc6\xbb\x6a\x12\x55\xfc\xd4\x1a\xf3\xe4\x56\x88\x37\x5f\xc5\xaf\x9a\x1e\xda\x6c\x82\x40\x43\x39\x2b\xc2\x9b\x4d\xe8\xa6\x51\x87\xb2\x03\xdd\x81\x4a\x2c\xc1\x63\x81\x79\xd8\x16\xd1\xc8\xe9\x09\x2b\x8f\x0e\x35\xc7\x51\x59\xf6\x8a\xe8\x5f\xff\xed\xd3\xe9\xe5\xef\xd3\xb3\x0f\xd7\xa7\x3f\x5d\x1e\xcb\x53\x3e\x4c\xa3\x3f\xd5\x9d\x65\xec\xaa\x19\xbf\xb6\x23\x80\x51\xd4\x5e\xcc\xda\xb4\x4e\xa7\x1a\xb9\x5f\x9d\x6f\xa5\x34\x9a\x9f\xd5\x55\x24\x8e\x02\x78\xb6\xfb\x18\xf2\x1b\xe0\x58\x07\x91\xbd\x53\xb7\xed\xcd\x3c\x44\x4f\xd6\x86\xcc\x21\x20\xa3\x0e\x90\x24\xb9\x9a\x22\x7e\x2a\x3b\xd7\xa6\x69\x77\xb6\xfd\x60\xdc\x8d\x59\xbc\x2b\x8a\x56\x27\x01\xb8\x5e\xe5\x6f\x6f\x9b\x57\x1f\x86\xee\xf4\xa7\xaa\xcf\xaa\x1b\xe7\x17\x9d\xeb\xcf\x3b\xab\xb5\x35\x56\x17\x36\xee\x2e\x7e\x5a\xe6\xeb\x82\x00\xcf\x34\x0a\xe0\x39\xbf\x17\x8d\x84\xc7\x94\x24\xf7\x44\xbf\x5e\xf3\xa0\xc4\xf3\x38\xaf\x5f\x18\x10\x29\x06\x3e\xf1\x7c\x3d\xbb\x2b\x78\xc2\xf8\x28\x80\xe7\x2b\xf1\x1c\x60\x78\x5e\xe6\x82\x10\x3c\x9e\xe7\xf7\x44\xbd\x15\xdb\xb1\x7c\x79\x9a\xcd\xd5\x3b\x25\x30\xc9\xd7\x27\x52\xd1\x20\xc4\x06\x21\x1e\x8c\x02\x25\x3f\xc0\x9b\xf5\x0a\x7e\x7f\x5a\xc1\x2f\x10\x55\xe0\xc5\x47\x29\xb4\x40\xad\x65\x2e\x78\x94\xf9\xe0\x51\xe4\x84\x07\x91\x57\x45\x22\x5a\x92\x6c\xad\x62\x3b\x7c\xe1\xe7\x24\x5b\x07\x78\x96\xd2\xd9\xe7\x51\x30\x93\xb6\x58\xf3\x9b\x54\xbd\x98\xe7\xeb\x1b\x63\xa2\x05\x74\x64\xf3\xe0\x51\x36\x0f\x04\x2d\x9a\x8d\x02\x25\xd2\xa9\x37\xf9\x9a\xab\x57\x17\x42\x06\x6b\xf4\xfd\xa9\x14\x2c\x1b\x9d\xff\x5e\x3c\x07\xb8\x58\xdf\x2c\x29\x1f\x05\xf2\x6f\x80\x41\x84\x1f\x69\x49\x5e\x49\xb9\xc1\x4c\x47\xc2\x61\xc9\xad\x1a\x0f\xf1\xa8\x86\x43\x3c\xca\x17\xf2\x59\x15\x2f\x1e\x55\xe9\xe2\x51\x15\x2e\x1e\x55\xd9\xe2\x51\x4c\x0d\xf9\xf2\xe2\x5e\xa6\xcc\x57\xe2\x77\xbe\xd2\xb4\xe6\x9a\xd2\x3c\x28\x31\xcb\x73\x73\x22\x06\xe2\x34\x0d\xb6\x9d\x30\xda\x6e\x58\x2e\x9a\x9f\x25\x98\x78\x51\x73\x19\x87\xdb\x34\xc0\x6a\x69\x44\xd6\xb7\x23\x98\x40\x90\x41\x29\x89\x4a\x25\xbd\x05\x43\x09\x78\x2d\x96\xd2\x5e\xce\x5f\x88\x1a\xd3\x93\x86\xf8\x32\x22\x03\xb5\xb5\x0b\x56\x53\x02\xcc\x15\xbc\x96\x94\x30\x1d\x62\x76\x3a\x89\xfc\xbb\xf0\x1c\x46\x9b\x4d\x51\x33\x39\x44\x61\x6e\x3c\xbc\x0d\x64\x63\x72\x94\x8c\x5a\xb8\x9e\x04\x21\x89\xc1\xf6\x9e\x16\x10\xb1\x37\x54\x38\x25\xe2\x98\xa6\x6a\xaf\xa9\x9c\xcc\x65\x48\xac\xa2\x3a\xb6\x44\xfe\x64\x3e\x07\xbb\x0b\x6f\x56\xbc\x97\x47\xb4\x08\x83\xc8\xf3\x0d\x55\x11\x38\x05\x8b\x0e\x48\x15\x61\xf0\x29\x13\x2d\xe9\xf3\xbc\x9f\xcc\xe7\xfd\x3f\x37\xf2\xfd\xb9\x0f\x15\x16\x09\x44\x2f\xf5\xd5\xa1\xd9\x0f\x83\x61\x98\x47\x85\x6a\xd9\x66\x93\x8f\x0f\x26\x9a\x7b\x40\xc3\x00\x45\xfd\xf3\xe4\x33\xe9\x17\x6b\x46\xfa\x8f\xf9\xba\x5f\x10\xde\xb7\xba\x59\xd0\xe3\x77\xa4\x2f\xe6\x57\x3f\x67\xfd\x24\x33\x94\x05\x23\xad\xbe\x44\x01\x32\xde\x24\x6b\xf1\x21\x43\xe0\x69\x63\x39\x16\x86\x6b\x0d\x75\x08\xb3\x4b\x4d\xc0\x30\xc7\x6b\x9c\x8d\xd7\x13\x3d\xeb\xd4\x7b\x9f\x0f\x8b\x71\xd5\x7e\xc6\xb8\xab\x69\xeb\x9b\xca\xc0\x68\xb8\x16\x72\x08\xdc\x7e\xe2\xbd\x03\xe3\x0b\x04\x08\x1f\x99\xc3\x0a\x31\x30\xd6\xa7\x25\xa6\x5e\xb2\xe0\x4c\x70\xac\xe5\xae\x30\x98\x27\x3c\xd9\x57\xa3\xa5\xaf\xb6\x68\x6c\x6c\x5f\x9a\x4c\xc3\x38\x03\xad\x1e\xb0\x7a\x46\x29\x43\x22\x23\xca\x15\x38\x89\x73\x75\x83\xd5\xa3\xe0\xe1\xaa\x7a\x5e\x01\xe3\x02\x12\xee\x93\x14\x0d\xf3\x88\x72\xb2\x0c\x0b\xd4\x3b\x88\xe3\x38\x05\x37\xad\xca\xd7\xb2\x51\xb7\xfd\x40\x42\xa8\x50\x0d\x4f\xbb\xad\x9e\xa9\x54\x00\x4e\x10\x2a\x4b\xba\x08\x69\x25\x7d\xcd\xe2\xbd\x03\xbc\x88\x0f\x5e\x2f\x2a\x47\xa2\x45\x85\x9f\x4b\xc7\x8b\x49\xef\x6e\x30\xb8\x8b\x60\x73\x00\x57\xf5\x38\x66\x83\x41\x38\x8b\xef\x54\x5f\x33\x00\x3d\x98\x19\x97\xa0\x99\xbc\x9e\x34\x97\x7c\x77\x63\x3e\xd1\x9d\x23\x9e\xf1\x3c\xe6\xb8\x8e\xa9\x20\x55\x29\x66\x8d\xcb\x4d\x4e\x8e\x62\x70\x0e\x07\xc2\xbd\xdc\x49\x2a\x53\xdf\x8c\xf2\xea\x4b\x48\xf0\xde\xa1\xf8\xc7\x23\xc1\x44\x60\x40\x9a\x49\x68\x8a\x79\x54\xcc\x18\x21\xd9\xbf\x9b\xa7\xdf\x31\x8f\x66\x60\xe2\xfa\xef\xe6\x09\xde\x71\x96\xfe\x42\x1e\x31\x8f\x92\x94\xcb\x87\xe2\x8e\x2e\xd4\xa3\x60\xc4\xe4\xd3\xcd\x9a\xf3\x3c\x03\x26\x32\x15\xac\x88\xd4\xf3\xb7\x19\xbe\x30\x73\xa7\xab\x95\xff\x5c\x47\x2b\x74\x8c\x54\x64\x84\xd9\x65\xec\xd9\xf9\xc7\xb9\x1b\xb0\xa9\x92\x9c\x4d\xe0\x43\x16\x13\xb7\x3a\xaf\xf9\x60\x00\xc1\x64\xa2\x2c\x9f\x13\xb1\x39\x0d\x06\xda\x3f\x91\x6d\x36\x4c\xe2\x35\xef\x85\x07\x78\x16\x29\xec\xb9\x02\x85\x62\xfd\xa2\xd7\xc8\xbb\xde\x38\x3a\xca\x42\x8e\x57\xe1\x1c\x13\x84\x46\x10\x8c\x7c\xfb\xe2\x19\x0c\x68\x95\x01\x57\xe2\xfb\x87\x7c\x4e\xca\x1e\x11\xdb\x2e\x8c\x9d\x06\xb4\x08\x73\xbc\x94\xfa\x43\x98\x0e\xf7\xde\xbe\xe0\x13\x0f\xd8\x89\xee\x87\xde\x3c\x17\xdb\x4f\x4b\xfd\x25\x72\x87\xe8\x95\x0c\xc0\x73\x65\xc8\x39\x20\xaf\x02\xa1\x87\x80\xc8\x5e\xd7\x40\x56\x3e\x9b\x7b\xd2\x3f\x53\x72\x66\x6f\x40\x6d\x29\x7d\x34\x4b\x7d\xbe\x78\x11\x0d\xec\x9e\x1a\x0c\x3a\xf5\x1c\x54\x93\xca\x6a\x4a\x2f\xd0\x5a\xff\x49\x4c\x8c\xc6\x28\x23\x6f\xc7\x72\x7c\x8f\x4a\x59\x47\x12\xe5\x59\xc8\x87\xea\x38\x0b\xb0\x3e\xd7\xa4\xc7\x4a\xb3\x6b\xfd\x7d\x09\xaa\xc6\xcc\xda\x7e\x39\x84\x06\xe5\xb5\xed\x37\x3c\xc0\xa9\x25\x3f\x22\x08\x0f\x2a\xfa\xb8\x56\x87\x71\xa3\x0f\x26\xbe\xba\x90\x48\x49\xbd\x72\x8e\xdb\x1b\x6d\x26\x76\x57\x40\xc3\x74\x0a\x34\x1b\xae\x74\xf5\xe4\x8e\xab\xa7\x32\xe5\x90\xfb\x2e\x05\x26\x05\x80\x7c\x24\x46\x66\x94\x26\x05\x3f\xdb\xb2\xff\xe2\x03\x05\x24\x92\x6c\x3d\x23\x72\xb5\xf7\x4a\x8b\x8e\xda\x36\x0a\x01\x9f\xaa\xe8\x20\x89\xd8\xd3\x13\xb3\xaf\x12\x84\x33\x89\x5f\x90\x40\xa8\x1f\x08\x81\xdf\xd0\x9d\x00\x8a\x9c\xb4\xc1\xd8\xce\x81\x11\x6b\x9e\x1c\xf1\x36\x86\x4a\xaf\x93\x8e\xc7\xb6\x8b\xd2\xd4\x5c\xb0\x88\x28\x88\x50\x77\x46\x32\x1f\x8b\x3b\x66\x13\xc9\xa9\xb9\x2c\x1a\x47\x51\xbe\x58\x84\xd5\x74\xf9\xcb\x5f\x2c\xfc\x54\x8b\xfb\x93\x05\xf9\xb9\xb8\xdd\xf7\xdd\x25\xd6\x3e\x9b\x4d\xcd\x58\x10\xd6\xac\x9f\x51\xe0\xaa\xd4\xe7\x9d\xb5\x07\x5a\xe0\xfe\xba\xa8\xc5\x5b\x35\xe5\xdd\xc4\xe4\x9a\x58\x2c\xe1\x13\xab\x16\x91\xda\x48\xbb\x17\xe2\x7b\x99\x77\x7a\xec\xc9\xdd\xe8\xf4\xc3\xaf\xd1\xb4\xf9\xbd\xd7\xa0\x99\x63\x1f\x9d\xc1\x80\x19\xfd\x67\x48\xe3\x2a\x46\x2e\x5d\x42\x8f\x29\x2a\x78\x2f\x1f\x0c\xe8\x11\x95\x8b\x4a\xec\x7a\x62\xdb\xae\xff\x96\x6b\xf7\x9a\x25\x59\xb1\x20\x2c\x40\xa3\x71\x60\xe4\xc1\x00\x2b\xf9\x2f\x30\x02\xa0\x7a\x4e\xa5\xac\x17\x68\x61\x0f\x1e\x21\x76\x94\x12\xef\x82\x49\x13\xd3\x83\xa0\x27\x5d\xf8\x82\x7e\xf9\x39\xcf\x3f\x17\x63\x32\x89\x9f\x56\x2c\x5f\x15\xa2\x5c\xbb\x22\x93\xb2\x44\xa3\x66\x87\xc4\x7b\x2a\x48\x58\x12\xe7\x3a\x02\x82\x3d\x2c\x1d\xee\xc0\x76\x6a\x5e\x9e\x15\xc7\x7d\xd7\x4c\x7c\xa1\x8a\xa6\x55\x29\xe3\xf1\x0e\x26\xdd\x75\x73\x75\x9f\xc0\xdd\x4d\x95\xa8\x82\x2f\x80\xa8\x23\x51\xb1\x4a\x29\x0f\x83\x57\x01\xc2\x2c\xe6\x63\x7d\xba\xec\x1f\x1a\x4c\x28\xe7\x65\x1c\x4c\x83\x21\xc3\x3c\xfa\x6b\x4e\x33\xc8\x56\xfa\x9a\xad\x20\xc6\x5c\x98\xa9\x06\xc4\xa5\x0c\xc2\x2a\x36\x6a\x8d\xa1\x25\xc3\xeb\x58\x22\xa9\xc1\xab\x0c\x03\x03\x43\xda\x7f\x48\x8a\x7e\x96\xf3\xfe\x22\x5f\x67\xf3\xfe\xc3\x1d\xc9\xfa\xa2\xcf\x68\x76\xdb\x5f\xaf\xfa\x49\x1f\x7a\xb4\xaf\xcd\x51\xa3\xfe\xf5\x1d\x2d\xfa\xb4\xe8\x2f\xf3\x82\xf7\x53\xfa\x99\xa4\x8f\xfd\xf9\x1a\xa4\xdb\x65\x92\xad\x93\x34\x7d\x54\xf7\x4d\x9c\x26\x5c\x90\x49\xb2\xbe\x04\x7e\x15\xbc\x42\xd4\xbf\x22\x64\xd4\xbf\xe3\x7c\x35\x7a\xf5\xea\x96\xf2\x88\xe6\xaf\x4e\x7f\xf9\xb8\xca\x8e\xed\x3d\x5c\x59\xb7\x56\x66\xb0\xc1\x90\xa3\xcd\xc6\xfb\x21\x43\x65\xc8\xb1\x18\x08\x2b\x00\x02\x2d\x31\xb1\x0c\xd1\x3d\x88\x6d\xfc\xff\x8d\x3d\x03\xbc\xe2\xa5\xb4\xd5\x96\xdc\xa8\xd3\x13\x82\xa5\xda\x6c\xb6\x27\x02\x13\x82\x8e\xab\xa7\x1d\xdb\xf1\x19\x60\xd4\xcf\x5a\x4a\xea\x78\x0d\xf6\x00\xf7\x44\xea\x3a\x06\x03\x52\xdd\x92\x1c\x59\xcf\xf2\xae\xce\xdc\x98\x00\x50\xa3\xe3\xf1\xe9\x15\x0d\xb4\x10\x27\xa6\x93\x92\xe2\xc4\xa3\x14\xf2\xc4\x93\x16\xfc\x84\x10\xf5\x70\x47\x67\x77\x3f\x1e\x6a\x9c\x30\x21\x23\x41\x00\x96\x5d\x9e\x53\x9e\x6d\xeb\xcf\xea\x26\xb7\x5f\x88\x2c\xfd\x8a\x59\xed\x2f\x13\x31\x33\x38\xcb\xe7\xeb\x19\xe9\xcf\x58\x5e\x14\xfb\x05\xe5\xa4\x2f\x01\x9d\x44\x9e\xfb\x75\x9a\x09\xd9\x90\xa6\x94\x53\x52\xbc\xee\xaf\x52\x92\x08\xf6\x3d\x03\xf5\x0f\xbf\x4b\x78\x1f\xf8\xca\xa2\x7f\x43\x44\x86\x1b\x98\xb5\x09\x23\xfd\x15\x88\x9e\xe9\x63\x5f\xda\xd6\xcc\xa3\xfe\xbb\x9c\x29\x8c\x92\x6c\x91\xb3\x25\xd4\x1b\xf7\x69\x36\x4b\xd7\x50\xc1\xbb\xfc\x41\xcc\x5a\x65\xbf\x05\x5c\x5c\xff\x21\x61\x19\xcd\x6e\x71\xbf\x20\x04\x26\x69\x31\x7a\xf5\x0a\x46\xfc\xaf\x45\x34\xcb\x97\xaf\xac\x13\xa5\x78\x75\x7f\x18\x7d\x79\xf5\x3f\x78\x3e\x9b\xde\xc8\x46\xef\x43\xa3\xf7\xab\x46\x47\xfd\x2b\xd9\x0d\x8b\x05\x99\x71\x32\x1f\xf5\x83\x3f\x0f\xc9\xf0\xcf\xc1\x9f\x15\x5a\x9e\x71\x0b\xf5\x0e\xa2\xde\x07\x5c\xef\x85\xd1\x32\xa1\x19\xec\xbe\x15\x0c\x9f\x1b\xe7\xcf\x7b\x48\x2b\x05\xe9\x98\x4c\x7a\x4a\x24\xce\xac\x9b\x65\xc1\x7d\x00\xd3\x9d\xa1\x52\x85\xdf\x31\xae\x9f\x00\x09\xe9\x4a\x43\xbe\x03\x8b\x2a\x98\x8a\xcd\x46\x63\x14\xba\xde\x97\xbe\x3c\x79\x23\x4f\xd1\x56\x0e\x6c\x69\x0e\x38\x60\xd1\x46\x5e\x24\xcd\x9d\xa4\x75\xff\x46\xf7\x26\xb0\x8a\xeb\x63\xd2\xb6\xd5\x3b\x77\xd3\x3a\xe6\xbb\x8d\x31\x64\xc6\x04\xc9\x04\xb8\xda\x3e\xa6\x7a\x38\xd7\x12\x01\x0d\xcb\x70\x83\x56\x09\x05\x26\x8e\xf5\xaf\x57\xa1\x94\x68\x00\x30\x63\xbb\xce\x06\x83\x90\xc5\x00\x2c\xd4\x03\xf3\x61\x69\xc7\x20\xd7\x78\x2a\x64\x20\xab\x8c\x75\x35\x72\xd2\xe5\x1b\x40\xc9\xd5\x9b\x4b\x08\x14\x3c\xab\x5e\x58\x0e\xdb\xbe\x01\x9e\x89\x36\x8b\x5e\xaa\x92\x85\xa8\xac\x95\xe0\xb8\x5f\x6f\xa3\xd2\x4c\x2d\x89\x2d\x41\x3e\x69\x71\x04\x58\x28\x18\x36\x3d\x15\x94\xe2\xa7\x79\x5a\x56\xa0\xe3\x95\x76\xa8\x12\xb8\xd4\x9b\x90\x4b\xf9\xfa\xb5\xab\x9a\x78\x8d\xe8\x22\xe4\x16\x0e\x96\xd1\x12\x48\xd8\x45\x92\x9e\xab\x3a\x3a\xe8\xdd\x36\xd2\x5b\xde\x40\xf3\x49\xfc\x98\x69\x85\x05\x14\x48\x1e\xfa\x57\xc4\xd8\x50\x24\x66\xd2\x63\x5e\x5a\x66\x3a\xd6\xe4\x18\x4f\x70\x56\xcd\x10\x07\x22\x4e\x07\x16\xdd\xb1\x7b\xec\x65\x9b\x4d\x16\xd9\xe1\x76\x9c\xdf\x64\xbe\xd9\xb8\x7b\x89\xa9\x48\x6a\xb3\xb7\x8e\xbd\x88\x9c\x68\x0e\x46\xd2\xac\x6a\x65\x2a\xc3\x39\xd6\x14\xa5\x97\xd2\x82\xb4\x67\x3b\x4a\xc3\x2d\xd7\x1b\xb2\xc8\x19\x09\x85\x3c\xc2\x0a\x18\x1d\x84\xa5\xa3\x76\x36\x3f\x5e\x80\x79\x18\xe8\x39\xd4\x97\x52\x42\x31\x5a\x18\x67\xe6\x0a\x46\xed\x00\x83\x41\xa8\x9e\x2c\xac\x23\x35\xe7\x36\x9b\xd6\x4f\x57\xe6\x52\xc3\x93\x24\xff\xfb\x79\x87\x54\x45\x87\x44\x79\x87\x34\x0f\xe4\xe6\x33\xe5\xb5\x84\x42\x94\xaf\xe6\xe5\x62\x37\xc3\xd4\x06\x27\xf2\x5c\xcb\x04\x23\x8b\xcb\x45\x20\x16\x57\xe5\x75\x16\x32\xe0\xf2\xd5\xb0\x3e\x49\x27\xb2\x11\x89\x8c\x37\x99\x4a\x80\x2b\x37\x34\x5a\xfa\x65\x0a\xa7\x0c\xbd\xf1\x9a\x6c\xfb\xf2\x8d\xde\x7a\x65\x4c\xbb\x30\x8b\x0a\x08\x07\x25\xe6\xb4\x89\x2d\x84\x8c\xde\x0c\x02\x53\x0b\xba\xd2\x19\xc9\x10\xdb\x6c\x72\x55\x43\xbd\x65\xe4\x06\x5c\x59\xe6\xe9\xc2\x91\x36\xc0\x74\xba\x79\xfe\x75\x41\xe8\x91\x26\x95\x2f\xf6\x89\xa9\xc5\xa4\xd0\xd7\xff\x3c\x02\x15\x11\x99\x63\x1e\x49\xdd\x9f\x52\x6b\xe1\x27\x5a\x88\xfd\x7d\xb4\x77\x80\x95\x39\xe7\xc8\x08\x20\x8d\x7b\x60\x63\x25\xbe\xdb\x18\x4a\x9a\x82\x06\x2b\x46\xa4\x69\x55\xe0\x31\x92\x72\xac\x48\x23\x93\x14\xef\x39\x86\x62\x96\x68\xa4\xee\x30\x4f\x92\x4c\xc8\x42\x95\xfc\x42\xfa\x49\xdf\x0c\x71\xff\x81\xf2\xbb\x7c\xcd\xfb\x49\xdf\x6c\x5d\xfd\x8f\x4d\x0e\xf5\x31\x5f\x03\x4b\x0a\xbb\x94\xe0\x34\x65\x38\xd2\x61\x00\x04\xfa\x89\xe2\x55\xfb\x26\xfa\xcd\x2b\xcd\x05\x44\x01\x2a\x2d\x43\x2d\x6d\x95\x25\x78\xf0\x25\xe8\xeb\x79\x42\x53\xd7\x52\xdb\xec\xa6\x12\x9d\x4d\x19\x5f\x19\xdc\xc1\xea\xbc\x83\x60\x1c\xaa\x63\x1a\x41\x3a\x30\x81\x0b\x24\x19\x6f\x8c\x94\x58\x19\x3f\x77\xf5\x2a\x64\x7e\xaf\xc2\x2c\x3e\x7c\x9d\xfd\xc0\x01\x24\x99\x8d\x33\xd7\x4f\x2d\x9b\xf4\x76\x0e\xb9\x3a\x24\xc1\x33\x40\xfa\x12\x78\x6e\x1a\x28\x32\xfc\xa7\x45\x84\x81\x51\x99\xaf\xaf\x5a\x02\xc9\x8e\xc9\x44\x45\x78\x55\xf6\x08\xd2\x0a\x3d\xb3\x03\x35\x86\x6a\x52\xab\x98\xc6\x70\x81\xa5\x0f\xf2\xe7\x79\x05\x39\x6b\xb2\x33\xb2\x98\x9d\xeb\xd5\x8a\x91\x29\x53\x4b\xa0\x7b\xae\xbb\xa4\xd0\x2e\x02\xcf\xc9\x46\xb3\xe9\x3c\x5f\x3e\x27\xc7\xbc\x0a\xc6\xf7\x72\x0f\x24\xd7\x3b\xec\xc9\xac\xe4\x11\xb7\xb6\x92\xb7\x17\xe7\x23\x03\xb8\x21\x06\x5d\x1b\x9d\x54\xfb\x4d\x55\x99\x51\x05\x9f\xe1\x44\xe0\x7a\xde\x90\xbd\x52\xf9\xbc\x43\xe7\xd3\xad\x75\x33\xaa\x7f\xf2\x7a\xfd\xa1\xa7\x6a\xa3\xe2\x95\x0e\xe7\xf7\x7c\xdd\x9f\x25\xd9\x9f\x79\x5f\x50\xb6\x72\xf6\xf3\x35\x2f\xe8\x9c\xf4\x61\x66\x13\xb5\x59\x89\x8d\x48\xc5\xfe\x0a\xda\x0c\x2e\x2d\x6c\x62\xaf\x9d\xb1\xf7\x26\xa6\xb4\x02\x6a\xa8\x81\x62\xcf\xf4\x44\x6c\x9b\x38\x1d\xe3\x6d\xc8\x0e\x7f\xd6\xdc\x94\xa3\xf7\xd2\x98\x3b\x3a\x86\x92\xb6\x29\xaa\x66\xdf\xee\x11\x64\xbe\x11\x14\x02\x8a\x3b\x84\x99\xd2\xbd\x29\x45\xc7\xdc\xc4\xcf\x44\xfe\xa1\xe9\x52\x80\xce\xb7\x95\x7a\x89\x70\x7d\xdd\xd1\xaf\x59\x29\xce\x86\xd3\x6d\x3c\x9f\xb1\xfc\x74\x16\xb6\xce\xd2\x3c\xb7\xd0\x0d\xab\x53\x53\xaa\xff\x5f\xbe\x07\xd5\x07\xbb\xda\x55\x9e\x9a\x03\x01\xc1\xd0\x0d\x77\x60\xac\xef\x89\xef\x12\xb3\x9e\x16\xae\xf1\xc8\x16\x63\x68\xc1\xad\xa9\x05\x4a\x54\xdc\x0d\xf0\x7a\xa2\xd1\x22\x4d\x6e\x6f\xc9\xfc\xcc\x34\x1a\x85\x01\x74\xa2\xbc\xb6\x8d\x82\x21\xc7\xd2\x52\x73\xc4\xb0\xe8\xc9\x11\x29\xb1\xcf\x21\x39\x03\x35\x3d\x0a\x09\xc4\x94\x00\x26\x40\x22\xdf\x4a\x23\xfe\xda\xc4\xc8\xd1\xf3\xee\x68\xbc\x47\xca\xb3\xfc\x6b\xbe\xc5\xea\xb7\x67\xe4\x57\x4d\x0b\xc7\xae\x90\x56\xd3\x42\xda\x54\xb6\x8e\xb3\xbc\x2b\x97\x0a\xa4\x2f\x94\xb7\x25\x5c\x67\x76\xd2\x6f\xdd\xfb\x36\xf7\xf0\x22\xf6\xa3\xb1\x04\xab\xa1\x79\x99\x8c\x51\xef\x50\x5e\x05\x79\xa3\xb5\x96\x67\xed\x3e\xd8\xd6\xfd\xf7\xab\xdb\x34\xbf\x49\xd2\x62\x9f\x91\x22\x4f\xef\xeb\x2d\x95\xf7\xe5\xed\x81\xdd\x5e\xea\xd9\x65\x42\x61\x75\x90\xd7\xec\xda\x42\x0f\x27\x29\x9d\x27\x9c\xec\x0b\xc6\xd4\x4b\xe2\x36\xa5\xcb\xe5\x0e\x38\xce\x2e\xfd\xdd\x1a\x53\xf0\x2b\x23\xcf\x62\xaa\xb4\x33\xb1\xd7\xb9\x4a\x7e\xab\x82\x14\x62\x8e\x4a\xa5\xea\xf2\x04\xab\x4d\x1a\xc1\x6a\x25\x83\xbe\x4a\x58\x01\xd1\x57\x25\x76\x30\xcc\x9c\x06\xe8\x4e\x89\x93\x28\xcb\xd9\x12\xdc\xca\xfd\x77\x24\xf2\x26\x73\xa4\x6e\x32\x0f\x26\x38\x8b\xf9\xd8\xdc\x63\x9a\xfb\xa4\x60\x2f\x8e\xd9\x11\x1b\x06\xa3\x60\x28\xe4\x01\xf0\x01\x0f\x5f\x85\x7f\x44\x9b\xe9\x66\x1f\x45\xaf\x6e\xb1\x57\x24\x9b\xdd\x25\xec\x98\x87\x87\x28\xe2\xf9\xa7\xd5\x8a\xb0\x93\xa4\x20\x21\x2a\x91\xd8\x7d\x93\x48\x4d\xcb\x66\xd5\xb4\x67\xa4\x69\x26\xd8\xc4\xc4\x4c\xe7\x90\xa1\x93\xc5\x07\x3b\x36\xc1\x38\x53\xf0\x26\xf2\x39\x64\x08\x61\xf1\x53\x49\x35\x2a\xef\x05\xbf\x23\x4c\x7c\x03\x23\x67\xdb\xde\x04\x33\x80\x78\x4e\xaa\x62\x5b\x31\xab\x6b\x03\x00\xa2\x53\xd8\xf2\x25\xae\xbd\x87\x70\x18\x38\xb1\xde\x74\x1c\x1b\x0a\x63\x83\x93\x98\xe2\xc2\x44\x06\xb6\xc3\x0f\xcb\x28\xd0\x08\xaf\xe3\xc4\x35\x63\x7a\x15\x20\x9c\xc6\x60\xe5\xb4\x3e\x4a\xa2\x22\xa5\x33\x12\x1e\xe0\x35\x02\x01\x1b\xc4\x4a\x67\xa8\x07\x03\x99\x56\xd6\x66\x16\x27\xd6\x9d\x77\x2f\x89\x67\xe3\x99\x75\xe7\x2d\x95\x87\x10\x02\xbb\x42\x31\x40\xe1\xcc\x14\xb3\x7f\x88\xd4\xdd\x77\x14\x20\xd4\x53\x75\x77\xc2\xec\xa2\x70\x21\xc3\x5a\xdc\xc5\x01\x68\xa3\x24\x10\xff\xb9\x78\x1c\x49\xd2\x42\xfc\xa4\x8b\x47\x24\x78\x6b\xba\x08\xf7\x92\xcd\x66\x8f\xf9\x2d\xb1\xcf\x32\xd8\x46\xfa\x3a\x6a\xe6\xa8\xff\x9f\x10\xf9\xeb\x3f\x71\x7f\xb9\x2e\x78\xff\xc6\x48\x06\x8b\x9c\x2d\xfb\xff\x29\x56\xdc\x48\x74\xe0\x7f\xf6\xcd\x0d\xc4\x93\xc9\x4c\x30\x7c\x67\x58\xbf\xf9\x4d\x6a\x41\xc0\x3b\x93\xe2\x39\x65\x22\xeb\x28\xc5\xf0\x27\x01\xab\xff\x51\x81\x1b\x53\x75\x14\xa8\x57\xc1\xf0\xae\x14\x13\xc0\x0d\xb3\xe5\xc5\xdf\xf1\x2d\x84\xc6\xe2\x8c\xe3\x98\x41\x8c\xc7\x23\xf3\xae\x9f\xf0\x7e\x30\x64\x91\xa7\xca\xd5\xf2\xfd\x43\xac\x5b\x31\xa4\xa3\x90\x8b\xb5\x95\xe7\x7c\x18\x44\xc1\xb0\xde\xdf\xa0\x05\x44\xf5\x7c\x01\x82\xd8\xd6\x24\x85\x19\x03\xe5\x8b\xd5\x37\x8c\x1b\xd9\x21\x14\x29\x82\xcb\x87\x04\xe2\x6b\x5d\x37\x82\x6a\xdb\x9b\x86\x15\x33\x02\x27\xd1\xba\x20\x97\xf9\x9a\x13\xf6\x21\x59\xd6\xb3\x04\x37\x49\x41\x67\x01\x18\x67\x42\xc8\x0b\xf9\x27\x0e\x82\x91\x7a\x92\x7f\xea\x55\x9f\x06\xc8\xda\x7e\xae\x55\x9f\x79\x57\x61\xb7\x0e\xec\x19\xf6\x11\xa2\xde\x69\x8a\x48\xf3\xa7\xb5\xb7\xd0\x43\x73\x32\x4b\x96\x44\xae\x15\x8e\xec\x0a\xb5\x5d\x2f\xc2\x4c\xa8\xf5\x47\xa8\x11\x2d\x9c\xdd\x8d\xd8\xe4\x4e\xf2\x8c\xb3\x3c\x4d\x09\xfb\x86\x44\x21\xf9\x37\xa4\x77\x2e\x66\x92\x2f\x9e\xa1\x3b\x99\xe4\x78\x5a\xfd\xad\xf6\x40\x02\xb3\x57\x4d\x31\x45\xf2\x67\x92\xae\xb6\xb4\xb9\xbd\x2e\xf0\xaa\x73\x5d\xea\xcb\x45\x86\x5b\xed\x56\x45\xb1\xbf\x75\x29\xa8\x03\xc5\xcf\x59\xfe\x90\xbd\xcb\x99\x98\xa1\x2d\x66\xe3\xdb\x8e\x0c\xda\x28\x54\xb0\xdb\x62\x5f\x95\x81\x47\x43\x3a\x0c\xfe\x14\x20\x5c\xb4\xf0\x1a\x78\x1d\xbb\x37\xf0\x38\x8d\x0f\x5e\xa7\x3f\xac\xb5\xe9\x6d\xaa\x4d\x6f\x67\xf1\x7a\x9c\x82\x2a\x33\x91\xd1\x41\x66\x08\x15\x63\x05\xc5\x95\x64\x85\x58\x22\xd7\xb9\xd1\xcd\xbe\x5b\xa7\x69\x06\x1b\x1f\x9e\xa1\x49\xbc\x77\xa0\x2f\x15\x0a\xd1\xea\x6d\x39\xbc\x37\xc3\xcd\x56\x66\x31\xb7\x4e\xaa\xbf\x30\x1d\x21\xd1\x58\x29\x01\xd7\x23\x97\x6c\x52\x08\x76\x4f\xac\xd8\x4c\x06\xb3\x4f\x94\x33\x20\xc2\xb3\x38\x6d\xf5\x71\xb5\x99\xdc\x4e\xa1\x14\x6a\xb6\x36\x75\x26\x39\x4d\xfe\xfe\x38\x4d\xf3\x64\xde\x9e\xc4\xb6\x82\xdd\xa9\xe4\xd9\x86\x39\x7d\x21\xab\xd2\x11\x47\x5e\x67\xd8\x85\x02\xfd\x3c\xaa\x45\x17\xaa\x79\xf6\x1e\x7a\xa4\x23\x26\xb2\x4c\xbe\x95\x22\x5b\x43\x1a\x30\xe8\xec\x4c\xd7\xce\xb4\x95\x3a\x0c\x60\x67\x88\x7e\x16\xa9\xf4\x5b\x69\x1a\x91\xf4\xd9\x18\xcd\x5b\xe6\xab\x0a\xae\xfc\x7c\xd5\x55\xbb\x13\xf3\xb3\x00\x3f\x2c\x45\x47\x76\x4b\x33\x62\x55\xe9\x05\xe2\x61\x17\xd1\xb0\x88\x0d\x14\xb4\xf1\xf2\xb5\xfa\x44\xde\x4a\xcd\xd6\x05\xcf\x97\x0a\x03\x0a\xde\xd8\xee\x9e\x5f\x03\x27\x60\x15\x15\x4d\x1f\x12\x3e\xbb\x3b\x53\x2d\x56\x1e\x18\xea\xfc\x52\xba\x91\xc0\x36\x79\xdf\xd7\x9d\x23\x2f\x75\x25\x9c\xd0\x93\x75\x9f\x37\xda\x3b\x2c\x51\x89\xa7\x37\x79\xce\xaf\x1e\xb3\x99\xef\x2e\x4d\xd6\x53\xa4\x20\xf3\x23\xf1\x63\x14\x12\x38\x0b\xd6\xe6\x24\x07\x57\x40\x65\x7c\xf8\x08\x36\x99\x91\xd5\xfc\x23\x59\xc3\xea\x45\xec\x7c\x1e\x35\x3e\x37\xda\x6d\x7d\x84\x80\xb4\xf2\x35\x88\x6c\xac\xf2\x4b\x8d\x18\x70\x19\x38\xd0\x09\x02\x2b\xb1\xa7\x37\xd9\x3a\xd3\x5d\x59\x85\xfd\x67\x85\xea\x56\x13\xf3\x39\x99\x71\x7a\x4f\x6c\x67\xc8\x9a\x1b\x80\x71\xd5\x95\x7d\x14\xef\xc9\xd0\x3e\xda\x45\x52\xf7\x4b\x13\x28\xca\x42\x54\xa9\x75\xa1\xa4\x37\xd5\x17\xa1\xd3\x29\xc0\x45\xc9\xf6\x49\x03\xc8\x59\xbe\x5c\xad\x39\x99\xa3\x96\x18\x8d\xe6\x7e\x5f\x65\x92\xb7\xfa\xa5\x60\xdc\x93\xf9\x45\x96\x3e\x86\x08\xcf\xe9\xfc\x44\x9a\x8e\x28\xb3\xbb\x9a\xee\xcd\x41\x0e\xb1\x07\x41\x34\x8d\x27\x8c\x0b\xb6\xae\xe6\x2a\x61\x0d\x44\x64\xa7\x31\x9d\x34\xa7\xf3\x2b\x68\x2b\xa4\x11\x47\xb8\xea\x26\x59\xcf\xc6\x02\x71\xd3\x1b\xc1\xba\x41\x06\x3b\x25\x57\x9f\xc2\x0a\x4f\xe3\xd3\xe5\xfb\xd6\x09\xee\xe4\x70\x68\x99\xbc\xc0\x17\xfa\x26\x40\xc3\x11\x27\x76\x46\xa0\x0e\x15\xa1\x0d\x16\xb3\x1a\x62\xaa\x3d\x39\x71\x60\xef\x28\x9a\x25\x73\xe0\x55\x6b\x09\x9a\x9a\xf9\x0c\x53\xcb\xba\x1a\x2a\x1e\xe6\xb8\x31\x96\x98\x94\xe2\x48\x70\x3a\xa7\xc6\x1c\xcb\x8e\x58\xb3\xb4\xc4\xf7\xb4\xa8\xe9\x68\x2b\xfc\x9e\x5e\xb3\x27\x7b\xb6\x1f\xfa\xd4\xdc\xbd\x4f\xa7\x95\xe1\x9f\xb5\xed\xeb\x9e\x91\x77\xdc\x7a\x3d\xe7\xb1\xef\xb4\xca\x41\x48\x2e\xa2\xe2\x2e\x5f\xa7\x73\x79\x0f\x2a\xb1\x4a\xa4\x1e\xf7\x8a\x70\x0e\xae\xe4\x28\xe2\x77\x24\xf3\x2d\x93\x12\x8d\x78\x89\x8b\x3a\x0c\x0a\x89\x40\x87\xae\xb4\x09\xea\x17\xa8\x45\xae\x0d\xa8\xd7\xf1\x4d\xce\x38\x99\x57\xd2\xe6\x60\x40\xa3\xa9\xac\xf0\x39\x9d\xb1\x3c\xa5\x37\x91\xdc\x39\xaa\x4c\xd5\xcd\xfc\xae\x94\xb2\xca\x39\x2e\x50\x0f\x6a\xb1\xad\xe4\xa3\xca\x62\x83\x44\x4b\x69\x89\x0c\x2a\xb5\xb5\x35\x65\xa8\xb5\x2b\x56\x66\x95\x62\xac\xe4\xc4\xc6\xd4\x9a\xe7\x20\xa0\x8a\x07\x84\xaa\x8a\x38\xd8\x3a\x5f\x7b\x8e\xad\x33\xcf\x49\x56\x96\xa8\x57\xb8\xf6\x05\xed\x1b\xa8\xdf\xf4\xa2\x63\x7c\xfb\xa7\xb2\xc7\x23\x9e\x9f\x56\x33\x4f\xec\x2b\xea\x50\xe3\x08\xce\xaf\xea\x40\x6d\x4c\x50\x5c\xcb\x1c\xa2\xe6\xa1\xea\x90\x28\x08\xbb\xa7\x33\x32\xda\xd7\x26\x7b\x82\x84\x7e\xf6\xe4\x75\xec\x2e\x00\xc5\x47\x2e\xa4\x75\x4b\x50\x3f\xbd\xed\x34\xba\xe3\xc0\xdb\x1d\x07\x76\x77\x1c\xc8\xee\x10\x25\x4a\x37\xa4\x98\x6a\xd7\x2a\x78\xe9\x9c\x82\xe0\x5b\x5f\xbc\xbd\x38\x57\x55\x94\x4b\x4d\x88\xeb\x31\xb1\x7f\x61\xcb\x76\x94\x16\x6f\x24\x83\x77\xa4\xe8\xa9\x9f\xf1\x1b\x19\x35\x34\xb4\x92\x28\x14\xe6\x2a\x8d\x5b\x9e\x79\xaf\x8f\x01\x55\x63\xe0\xaf\x3c\xb5\xdd\x3b\xc4\x6a\x27\x96\x13\x2f\x0e\xb2\x3c\x13\x02\xae\x55\x3d\x67\xff\x90\x1b\x98\xf5\xc6\xaa\xa4\xfd\x5a\xd5\xd3\x49\xa9\x8f\x20\xfb\x65\xe7\x7a\x8a\xf9\xa2\x27\x84\xac\x85\xfe\x15\x57\x1f\x46\xee\x07\x9f\x85\xa6\xa1\x61\xf2\x40\x99\x0e\xc3\xa5\x83\x1b\xb6\x72\x64\x4e\xff\x58\xdc\x96\xdb\x97\x36\x6f\x65\xa5\x97\x4d\xd5\xa9\x55\xc3\xf5\x6b\xe4\x4e\x0c\x87\xbf\x0a\x3d\x1d\x63\x4f\x11\xeb\x3d\x32\x38\x03\xc4\x89\xb6\x69\xad\xc9\xb8\x71\x26\x37\x8e\x47\xeb\x70\x94\x93\x2c\x76\x27\x59\x9d\x05\x8c\x9b\x15\xc4\xce\xac\x8f\xeb\x8b\x02\x13\x7d\x4c\x19\x53\x32\x52\x86\x08\xa7\x71\x61\xc9\x1a\x69\x89\x7a\x7e\x71\xab\x2e\xbb\xbf\x18\x7c\xf1\x2b\x3d\x49\x9d\x0b\xbd\x86\x6d\x41\xbb\x90\xd7\x41\x55\xf1\xd5\x60\x56\x4c\xf2\x97\xfe\x42\x9b\xc2\xa1\x94\x1a\xbd\x94\x0c\x77\xb2\x55\x94\xfc\x4a\x1c\xaa\x96\xa8\x80\x66\x33\xbf\x0f\xd1\x13\xc8\x05\xfd\xba\xca\x4a\x9e\x51\x44\xab\xa7\x90\x35\x7d\x59\xf2\x10\x73\x31\xb5\xc6\xc1\xfe\xcd\x7a\xf6\x99\xf0\xfd\x59\x32\xbb\x53\x62\xdf\xa4\xb2\x6b\xf7\x70\x52\x30\x27\xbd\x82\xef\xa3\xd8\x3f\x6f\xe3\xbb\x86\xf4\xeb\x41\x32\x22\x35\x8e\xb8\x45\x28\x4e\xd6\x3c\x17\x52\x12\x98\xc1\xaa\xfb\x68\xb1\x50\xe0\xb7\x35\x70\x9a\x31\x28\xbe\x4a\x74\xfe\x93\xde\x7e\xff\x14\xa7\x66\x03\x7a\xdc\x6c\xc2\x47\xb1\x59\x2f\xbd\x4e\xc7\x99\x71\x3a\xde\x4b\x6b\x7e\xb9\x83\x41\x12\xa5\xf4\x86\x25\x8c\x92\x4a\xe2\x3e\xc9\x19\x79\x0f\x6f\x1f\x43\x13\xc3\x11\x20\x08\x54\x89\x21\x8a\xa4\x17\x2e\x42\xe6\xd4\x4c\xe6\x34\x23\x45\xf1\x96\x2c\x08\x63\x49\x5a\xc4\x87\x35\x11\x52\xff\xf6\xf5\x89\xf6\x72\x50\x7c\x95\xea\x52\xb5\xf9\x58\x9d\x6a\x76\x4f\x27\x9d\xae\x84\x95\x50\xc9\xb6\xd3\x15\x23\xab\x84\x91\x77\x39\xfb\xa9\xfa\xa8\xa5\x21\x9d\x5f\x25\x7e\x48\x28\x7f\x97\xb3\xb7\x17\xe7\x97\x24\x99\x3f\x86\x00\x8c\x4d\xd3\xb9\xae\x65\x53\x26\x7a\x39\x73\x62\xe6\xf9\x4d\x52\x10\xb5\x93\xda\xfc\xa4\x7c\x65\x42\x32\x69\x74\x2c\x40\xce\x76\xf8\x4c\x0f\x3e\xb4\xaf\x83\x55\x44\xf1\x12\xd7\xf9\xd4\x76\xf5\x88\x97\x8c\xe5\x1a\xe5\xef\xdb\xc6\x9c\x56\xd2\x6c\x68\xfd\xd8\x6c\x66\xea\x09\xe9\x05\x68\xf4\x0d\xa2\xc3\xdf\x9a\x6d\xc8\x70\xd3\xa0\xd1\xf1\x7f\x6b\x11\x55\x9d\xa1\x0b\x91\x32\x45\x9e\xce\x1b\xf9\xa7\x53\x1d\x2f\xda\x91\xe6\x04\xf7\x67\xff\x2e\x71\x6d\x7e\xd8\xe5\xee\xe9\xc5\x29\xff\x46\xb4\x80\x24\x47\xa0\x55\x2f\x66\x77\x64\xbe\x4e\x09\x0a\x55\x68\x11\x0d\xb8\x1d\xcc\xf3\x25\xa4\x0b\x14\xf3\xf5\xa7\x50\x2a\x33\x1e\xe5\x0d\xda\x0d\xcd\xe6\x5a\x34\xae\x92\xa2\x12\xeb\x1f\x8d\xce\x76\x5c\x74\xaa\xe5\x77\xf5\x98\xcd\x42\x30\x50\x5b\x10\x76\xa9\x97\x6a\x73\xfb\x69\xae\xe2\xe1\xb0\xc4\xc9\xfc\x5e\xf4\xd3\xb3\xf2\xed\xef\xe3\x03\x0d\x14\xea\xf9\x0c\x7a\xae\x3c\xca\xb3\x19\x51\x0d\x94\x7c\x20\x9d\xbf\x21\xb3\x7c\x09\x65\x3d\x8a\xf5\x27\x36\x56\x9f\x17\x81\xf8\xf0\x91\xe5\x4b\x5a\x10\xd4\x50\xea\xa9\x0f\x3d\xce\x1e\x9f\x1a\x9d\x30\x13\xb3\x5f\x4c\xf6\xb2\x2d\x9f\x57\x79\xa8\x9c\xad\xad\x1d\xcd\x99\x6d\xf0\xee\x52\x59\x21\xc5\xeb\xe8\xf2\xea\xd7\x8f\x11\x74\xb7\x99\x7a\x56\x09\x32\x86\xb8\x5b\x47\x50\xdd\x59\x2a\x3b\x84\xc1\x7a\xc3\x56\xb7\x8b\x09\x64\xb3\x4e\x96\xb2\xb4\x3e\x46\xa6\xa1\x5c\x1b\x8e\x0a\xe1\xed\xaf\x12\x16\x19\xf3\x12\x60\x86\x0b\x57\x6b\x6e\x37\xc7\xbb\x4e\x7a\x9d\xf6\x7a\xdd\xc6\x4a\x32\x70\x3b\xa7\xf6\x5e\x1e\x0d\x30\x1d\xa4\x61\xa2\xdc\xf9\xaa\x6a\xc1\x27\xb6\x06\x93\xc5\x40\x99\x58\x06\x3b\xf7\x0b\xbc\x63\xe9\x99\x21\x0e\x10\xe0\xcf\x38\x33\xcf\x99\xe1\xec\x51\xf6\x4c\x4f\x22\x30\xd1\x88\x16\xd7\xa4\x10\x0c\x1a\x0a\xd1\x66\x23\x51\x99\x94\xdd\xf5\xb1\xbc\x4c\x87\x4b\xc7\x02\xc9\x5a\x80\xc7\x9e\x79\x7b\x45\x12\x36\xbb\xab\x50\x01\xf7\x0e\x50\xed\x34\x42\x21\x69\x1e\x7c\x47\x5b\x86\x65\xe4\xdb\xef\x90\x3d\xe9\xb5\x42\x1d\x4e\x35\x80\x82\xb2\xb5\x98\xbd\xe6\x20\xe9\xfb\x5b\x5b\x1f\x5f\xe9\x82\xeb\x53\xcb\x9b\xdf\x9a\x6b\x98\xd5\x3b\xd5\x86\x14\x7f\xb9\x12\x66\x77\xe7\x1e\xd6\xeb\xfe\xec\x89\x5a\xe8\x7b\x29\xe7\x74\x96\x3b\xdb\x60\x10\xfa\x3f\x4b\x1e\x00\x6d\x61\x78\x9c\x90\xfc\xfe\x14\x3e\x1f\x4d\x0b\xc2\x5c\x62\x44\xa3\x72\x6b\x29\x2a\x5e\x3f\x6a\x2a\x39\xab\x1b\x63\x50\x73\xda\x7b\xa1\xe8\x04\x8f\x8a\x51\xaa\x3d\x59\xe3\x60\x35\xea\x4b\xc8\xc7\x5b\x75\x93\x59\x04\x75\x10\xbc\x03\x8a\xe4\x0c\x72\x79\x17\x96\x3f\x54\x6b\x3d\xb3\xd7\x3a\x29\xa5\x79\x72\xef\xd6\xd5\xa5\x41\x55\x9a\xba\x34\x77\x2b\xdb\xe6\x7d\xa4\xfd\x87\x6b\xf6\xb9\x5a\xc9\x65\x5f\x34\x60\xcd\xb3\x18\x96\xa5\xa6\x53\xf3\x78\x7b\xe3\x27\xc9\xb7\x79\x23\x43\x79\xa2\x08\x96\x35\x25\x1b\x94\x3f\x92\x46\x40\xba\x7c\x37\x85\x5f\x11\x8f\xd3\xa8\x8e\xeb\x04\x8e\xe6\x7f\x95\x41\x70\x6a\x0d\xb3\xec\x24\xb0\x7d\xc0\x68\xd5\xb5\x5d\x9e\xd6\x8f\x8c\xc4\x6e\x25\xea\x74\xbc\xe6\xf9\x7b\xa3\x34\xf1\x26\xbd\x4b\x8a\x3b\x91\xf4\xe7\xa4\xb8\xdb\x95\x94\x16\x3c\x17\xd2\xc6\x2c\xfa\x59\x3e\xee\xc8\x00\xca\x2f\x3c\x8b\x3e\xe4\x19\xf1\x26\x0d\x0f\xf0\x3c\x5a\x31\x7a\x9f\x70\xb0\x6b\xb8\x17\xe3\xd6\x3a\x2c\x60\x68\x37\x8b\xde\x80\xc0\x09\xf6\x8d\xf5\x21\xd1\x7a\x4f\xd9\x83\xd5\xac\xb8\x92\xef\x6b\xfd\x5c\x4f\x1d\x4c\xcd\x93\x7b\x89\x15\x12\xd8\xce\x56\xf2\xaa\xe1\xb8\x1a\x04\x3d\xbb\xc1\x94\x83\x68\xad\xe9\x4d\x7c\x6b\x69\x5b\x6e\x5a\x2f\xb7\x6b\x1a\x8a\x6f\x8f\xcd\xb5\xd3\x10\x5c\x9a\x21\x78\x4d\x55\x28\x00\x55\x8c\xc9\x24\xce\xc0\xbe\x74\x3c\xc1\xe2\x41\x3a\x96\x73\x84\xd9\x60\xc0\x43\x89\x91\x60\x73\x41\x4d\xaf\x7e\x0a\x46\xa8\x98\x45\x0f\x34\x9b\xe7\x0f\x83\x81\xc7\x01\xf0\xa4\x12\xdc\xb5\xa7\xaf\x18\x6b\xeb\x75\x48\xf0\x93\x04\xd7\x1c\x71\x69\xea\x48\x4a\xd4\xd3\x44\x23\xbd\xc6\x64\xda\x1c\x95\xa2\xae\x83\x01\xd4\x78\xdb\x56\x1d\x72\x60\x30\x88\x3e\x28\xea\x6e\xb7\xa7\x1f\x7e\x8d\x4e\xcf\xdf\x9c\x5e\x4e\xdf\x5f\x1c\xbf\x9d\xfe\x7c\x71\xf1\xcb\xd5\x66\xf3\x54\x62\x1a\x3f\x95\x38\x8f\x69\xaf\xca\x9a\x6f\x1d\xe8\x9a\x69\x79\x2b\x44\x54\x47\xbf\xb5\xe6\x90\x65\x31\x1b\x73\xb0\xd5\x02\xf3\xa6\x0a\xa1\x29\x1b\x1f\x8a\xb1\xfb\x6e\x52\x6a\x37\x37\xb9\x73\x8d\x83\xa4\x28\x08\xe0\x91\xd1\x02\xd6\x89\xf2\xab\x0c\x70\x20\x11\x83\xe0\x65\x30\xb1\x3c\xbd\xc7\x81\xe1\x71\x20\x9b\x09\xac\x5b\xcf\x5a\x45\xdc\x9d\x48\x87\x97\x7a\x4e\xcb\x8f\xd3\x64\x82\xc0\xd6\x13\xac\xd7\x65\x3d\x8b\x5a\xc5\xf5\x5c\xea\x35\x60\x9b\x59\x03\x30\x4b\xc4\xde\x6d\x54\x65\xdd\x4c\x9f\xbc\xab\xec\x19\x9e\x15\xb4\x38\xcd\x24\xa6\x5a\x13\x8b\x04\x56\x94\x76\xf0\x93\x88\xa8\x80\x5c\xc7\x8e\xd8\x68\x6f\x4f\xcd\xb5\x0f\x10\x2c\xf3\xe2\xe3\xf5\xd9\xc5\x87\xe3\xf7\xd3\x77\xa7\xc7\xd7\x9f\x2e\x4f\xaf\xc4\x14\x95\xf3\xf0\xdd\xe5\xf1\xf9\xe9\x6f\x17\x97\xbf\x4c\x2f\xde\xfc\xeb\xe9\xc9\xf5\xf4\xe2\xb7\x0f\xa7\x97\xd3\xe3\xcb\x9f\x3e\x9d\x9f\x7e\xb8\x8e\x75\xba\x9f\xde\x9f\x9d\x9f\x9f\x5e\x4e\x2f\x3e\x4c\xcf\x2f\xde\x9e\xbd\x3b\x3b\xbd\x34\xdf\x4e\x3e\x5d\x5d\x5f\x9c\x4f\x4f\x2e\xce\x3f\x5e\x7c\x38\xfd\x70\x2d\x72\x4f\x3f\x5e\x5e\xfc\xfb\xef\x8d\xec\xef\x3e\x4c\x7f\x3e\x7d\xff\xd1\xca\xfc\xe1\xf8\xfa\xec\xd7\xd3\xe9\xdb\xd3\x93\x8b\xcb\xe3\xeb\x8b\xcb\xe9\xd5\xa7\x8f\x1f\x2f\x2e\x9b\x25\x1f\x7f\xf8\xe9\xfd\xe9\xf4\xcd\xe5\xf1\xc9\x2f\xa7\xd7\xd3\x37\x9f\xce\xde\x5f\x4f\xcf\x3e\x5c\x35\x8b\xb8\xb8\xfc\xed\xf8\xf2\xad\xa9\xe6\xd5\xf4\xb7\xb3\xeb\x9f\xa7\x57\x1f\xdf\x1f\x5f\x5f\x5f\x9e\xbd\xf9\x74\x7d\x5a\x65\x3a\x3f\xbd\x3e\x7e\x3f\xbd\x06\xa2\x6f\x45\x9d\x3f\x9e\x5e\x5e\x9f\xd9\x09\x2e\xde\x7e\x7a\x7f\x3a\xfd\xf4\xe1\xec\xdd\xd9\x09\xe8\xd8\xcc\xa7\xb3\xf3\x8f\x97\x17\xbf\x9e\xbe\x15\xb5\xb8\xbe\x84\xee\x72\x13\xbc\x3f\x7b\x73\x79\x7c\x79\x76\x7a\x35\x3d\xbb\xba\x3c\xfd\xe9\xec\xea\xfa\xf4\xf2\xf4\x6d\x4c\x22\x3d\x0c\x31\x89\xde\x9e\xbe\x3b\xfe\xf4\xfe\xda\x8c\x8c\xbb\x63\x3c\x6d\x23\x34\xda\x3b\xc4\xdb\x6b\x52\xa5\x68\x36\xc3\xfa\xd6\xd2\x07\x55\x8a\xe7\x74\xed\x68\xef\x00\x77\x1a\xb8\x2a\x61\xdb\x14\x68\x92\x32\xd3\xa7\xfa\xd4\x3e\xf9\x9a\xf5\xb7\x26\x6f\x45\x60\xc7\x0a\x18\xed\x1d\x94\x3d\xcf\x38\x65\x95\xf3\x68\xe5\xe7\x94\x61\xb9\xee\x74\x2a\x2b\xec\x59\x5e\x9d\x13\x7b\xe1\x8e\xe5\x29\xe1\x93\xf6\xe2\x98\xa0\xcd\x86\x94\xd6\x84\xa1\x1a\x56\x31\xa4\x5b\x27\x19\xea\xed\x98\x84\x89\xb6\x0d\x33\x84\xda\x26\x51\x45\xaa\x75\xc2\x17\xea\x76\xb7\x22\xd6\x9c\x6f\x15\x19\xcf\x92\x5a\x2b\x27\x26\x8b\x40\xcb\xa4\xb4\xc8\xb4\x2d\xdd\x54\x85\x6d\xa9\x88\x3d\x67\xfe\x56\x05\x3c\x6b\x43\x99\x29\xcf\x91\x66\xa1\x2d\xd3\xbf\x59\x4e\xdb\x06\xb7\x50\xc1\x3d\x2a\xd2\x6d\x0b\xa6\xa2\xd9\xba\xab\xde\x01\xb1\xb9\xaf\x73\xf4\xda\xf2\xf4\x80\xd9\xb5\xe7\x90\x7d\x65\x65\x6f\x5f\x7f\x15\x9d\x2d\x07\x84\x44\x46\x5a\x7a\xea\x63\x2d\xd6\x66\x8d\xec\x63\x68\xd9\x93\x48\xdb\x15\x89\x1d\x4b\xba\x22\xb7\xeb\xf4\xbb\x77\x59\x00\xe3\x7b\xd0\xed\xf4\xdf\x76\x21\x58\xbb\x69\xb4\x48\xcb\x50\xe3\xfa\xe7\x14\x82\xd8\x75\x71\x6d\x97\x92\x88\xe7\x86\x8c\xa9\x4f\x6e\xc4\xe8\x71\x50\x15\x12\x4c\x34\x00\x3f\x80\x7e\x58\x77\xd2\x70\x59\x27\xfd\xfb\x2a\x49\x5a\x22\x8d\x79\x5d\xe9\x5b\x91\x65\x8c\x79\x2e\x7a\xad\x63\x7d\x9a\x94\x20\xe0\xa3\x90\xaa\x40\x1c\x31\x6d\xf5\x4f\xdf\xd5\x4d\x5f\x1d\x89\xf7\x9b\xc4\x98\x66\x4d\xec\x9c\xca\x6d\x45\x1c\x3c\x12\xe8\x5d\xde\x0d\x0a\xc1\x57\x05\xec\x02\x07\x24\x78\xdc\x12\xfb\x19\xd8\xfa\x6e\xf3\x6f\xeb\xad\x78\xcd\xcf\x5a\x92\x15\x9d\x6a\x33\xc9\x8d\x8f\x5c\x2a\x43\x7d\x9f\x1e\x12\xe6\xf7\xcb\x6f\x44\xbe\x6f\xb7\x51\x57\x92\xb7\x05\x4d\xa9\xfa\xb0\xb3\x11\xb8\x26\xa1\xf2\x6d\x35\x30\x37\xba\xdd\x8e\xd4\x2d\x6d\xf0\x2e\x97\x80\xe7\x12\xae\xb2\x6c\x37\xe2\x57\xad\xfb\x2d\x61\xcf\xec\x99\xdc\xd7\x33\x24\x9a\x8a\x51\x3b\x5b\x7c\x2a\x68\x76\x7b\xc5\x19\x5d\xad\xc8\xfc\x9d\x14\x71\xde\xa5\xc9\x6d\x21\xe3\x8b\xbc\x15\x83\xfc\x4e\xd1\x8c\xc1\x16\xb3\xfe\xca\xcc\x1a\xf1\x2e\x26\xf2\x86\x03\x12\xc1\x47\x91\x18\x9c\xbd\xf5\xaf\x2b\x92\xa4\x76\x36\xfd\x3e\x26\x91\xa8\x52\x2c\xf6\xb3\x05\x04\x22\x01\xa1\xd2\x5e\x6f\x49\xec\x60\x98\x14\x71\xd2\x33\xc9\x34\x27\x92\xf4\x14\x01\xcd\x59\x88\x17\x40\x58\x73\x07\x49\x4f\x97\xa8\x8f\x6e\xf9\x46\xd7\x47\x9f\xba\x26\x1d\xd4\x58\x1f\x9f\xe6\xad\x6a\x95\x3e\x17\xc5\x7b\xab\xe9\xfa\x74\x13\xaf\x1b\x9d\xa6\xcf\x2d\xf1\xb1\xd1\xc9\xf7\xca\x84\xa1\x39\x92\xd5\xed\x72\xfd\x46\x7a\xff\x70\x52\xf6\xea\x43\xf1\xd8\x65\x94\x65\xef\x7a\xf6\x99\xda\x86\xf0\x02\x69\xd7\xd9\xaf\x9a\xc4\x55\x98\x80\x0e\xd8\xee\x24\x5a\xd2\x42\xb4\xe0\x42\x9a\x24\x7d\xca\x38\x4d\xad\x9d\x22\xae\x27\x38\x9b\x6f\xfb\xea\x7e\xab\x2d\x8e\xd8\x7f\xbc\x49\x53\x18\x67\xfa\xf5\x9a\x79\x0b\xbc\xad\x2c\xda\xf8\xea\xd6\x33\x6f\x7c\x6f\x34\x34\x69\x1a\x53\x96\x38\x8d\xd7\xae\x4d\x96\x77\x2c\x4d\x77\x77\x03\xf9\x13\x8b\xe8\x3e\xff\x4c\xbc\x3d\xf4\xf3\xf1\x87\xb7\xef\x4f\x2f\x1d\x91\x95\xc7\xd0\x25\xe6\x13\x57\x3a\xa2\x1d\x5d\xc6\x7a\xb5\xc0\x49\x32\x99\x2a\xdc\x77\x00\x3a\x87\x51\xd7\xb6\xe8\xdd\xdb\xb3\xaa\xb8\x42\xa0\x6d\xa4\x20\xe8\x89\x57\x76\x7c\x0a\xde\x80\xc7\xd2\x46\xd6\x53\x29\x38\x06\x5b\xf5\x71\x2f\x58\x08\x3b\x96\xc1\x73\x56\x40\xa7\x59\xde\x18\x85\x7a\xae\xac\x5a\x0c\xf5\xa4\x5f\x31\xed\x95\x3c\x9a\x58\x93\xb8\xa8\x75\x71\xc3\x5e\xad\xc9\x06\x6d\x1d\xff\x77\x9f\x3e\x40\x8c\x70\x21\x7a\x5c\x5f\x5c\xff\xfe\xf1\x74\x7a\xfa\xef\xd7\xa7\x1f\xae\xce\x2e\x40\x8f\x74\xfc\xf1\xe3\xf4\xe4\xfa\xf2\xfd\xf4\xf2\xe2\xd3\xf5\xe9\x25\xc8\x94\xf0\xfe\xfd\xd9\xf1\x95\x90\x37\x7f\xbe\x78\x1b\x13\x8f\xd9\x55\x4c\xa2\x4a\xb6\x39\x3f\xfe\x70\xfc\xd3\xe9\xe5\xf4\xea\xfa\xf2\xec\xc3\x4f\xd3\xf7\x17\x17\xbf\x7c\xfa\x18\x93\x48\x11\x3d\xfd\xf5\xf4\xc3\xb5\xa0\x7a\x7e\x7a\xf9\xd3\x69\x4c\xa2\xf7\x17\x3f\xfd\x64\xe9\xc3\xa0\x46\x6f\xab\x2a\x8a\xa4\x56\x7c\x73\x3d\x52\xee\xcb\xbd\x83\x5e\x7b\x7e\xf8\xa8\x4a\x81\x67\x59\x32\x3c\xba\x95\x82\x57\xbb\x5a\x02\x89\x3c\x7d\x00\xef\x9d\xae\x92\x6f\xbc\x9d\x0a\x9f\xb6\x8f\xc7\x9e\x7b\x1e\x19\x77\xb9\x36\xc6\x57\x25\x10\x6b\x49\x3e\xee\x4b\xe8\xc5\x2e\xa6\xa6\x96\x28\xf4\x5c\x41\xce\xb6\xba\x9c\x27\xb7\xfb\xcb\x64\xf5\x82\x98\xa8\xdb\x71\x6e\x9e\xe3\x32\xd8\xb0\x27\xb5\x0f\x68\x21\x8b\x15\x34\xcf\xf6\x4d\x38\xf4\x67\xd9\xaa\x76\x41\xab\xb1\xcd\x44\xdb\x8c\x44\x97\x96\x91\xe8\xe3\x2e\xa3\xcf\x65\x9b\xd1\xa7\xd7\xe6\x74\x27\xb9\x56\x1b\x52\x43\xee\xd1\x8d\x54\x5c\x37\x5b\xc5\x95\xbd\xea\x36\x57\xe3\x53\x18\xab\x8f\x6a\x0a\x76\xf7\x38\xb6\xf3\xed\x92\x32\x5e\x54\x46\xd1\x2c\xc3\x7b\x0e\xdc\xc6\x34\x32\xc6\x16\x5a\x8c\xa7\x91\xbe\xa3\xfc\xc8\xf2\x2f\x8f\x20\xf6\xe2\xa7\x17\xda\xb7\x3a\x37\xfa\x60\xf5\x47\x2d\xa3\xa8\xcb\x24\x93\xf1\xca\x8b\x35\x73\x1c\x1c\x9b\x25\xd5\xb2\x69\xb3\xd9\xa6\x95\x95\x37\x79\xbc\x77\xf0\x0f\xb0\xfe\x84\xa2\x9b\x8d\x01\x13\x9d\xca\x2e\x74\xe6\x33\x02\x6d\xb5\x7c\x70\x8c\xda\x2c\x6f\x4b\x69\x0c\x61\xbb\x67\xba\x5d\x2d\xdd\x95\xb0\xd5\x0f\xdb\x9d\x3b\xad\x84\x50\x21\xda\x74\x3b\xdd\x45\xa0\x91\x01\x08\xd5\x46\xc8\x6f\xd5\xa1\x2d\xd1\x9c\xb4\x61\x60\x8f\xa2\x15\x68\x4d\xc2\xea\x59\x55\x06\x1b\x14\x55\x54\xd3\x5b\xd6\x63\x52\xdb\x2c\xa8\x99\xad\x43\x81\x35\x3a\x35\x73\x1c\x13\x72\x4c\xba\x51\xae\x2d\x37\x4a\xab\xe3\x00\x81\xcb\x83\xa9\x61\x45\xe1\x84\x98\x65\x04\x71\x79\x93\xce\xaa\xa8\x2b\x65\x98\x21\x05\x42\x6f\x22\x9c\x63\x19\xb3\xd3\x44\xc9\x2c\x86\x43\xc4\xe2\x6c\x4c\xc7\xc5\x64\x82\x73\x30\x1c\x96\x08\x39\x98\x61\x16\xdd\x00\xf2\x3a\x66\x51\xb2\xe0\x84\xa1\x5e\x1e\xf1\x7c\x55\xe4\x8c\x87\xd2\xa7\xcb\x6c\x99\x37\x55\xd5\x9e\x8c\x81\xc9\x88\xe8\xc9\x1f\x56\x2d\x24\x38\xd0\x36\x57\x01\xda\x6c\xaa\x40\x77\x7a\xc2\x73\x0b\x33\x7e\xea\x02\xff\x9b\x1e\x77\xe1\xfd\xa5\xd7\x92\xd8\x6c\x00\x0a\x03\x6e\xea\x9b\xef\x94\x19\xd7\x98\x4c\xf4\x05\xaa\x58\x9b\xe2\x83\x1b\x93\x58\x27\xd2\x66\x74\x95\x05\x12\x43\xa5\xfa\x38\xe6\xd0\x47\x93\x98\x97\x65\xcd\x4a\xc9\x9e\x95\x23\x4f\xb4\x63\xdf\xda\x69\x4b\x58\xcd\x9d\x69\x7d\xba\xdb\x3f\x03\x2f\x51\x99\xc7\x37\x73\xcd\xeb\xbe\x4b\xa4\x65\x9b\x71\x82\x13\xe4\x66\xff\x0f\x9f\x34\x7f\x32\xba\x81\x19\xdf\xb3\x4f\x98\x18\x7c\x33\xad\x20\xf5\x61\xd3\xd8\x08\x13\x8f\xeb\xa0\x6b\x9d\xa5\xbc\x8f\x14\x12\x8c\x05\xf6\x1e\xe0\x27\x21\x4a\xa4\x84\xe7\x99\xf6\x57\xac\x27\x96\x90\xeb\xcd\x74\x55\x95\x2a\xb6\x4f\xdb\x5d\x59\xd0\xaf\x1e\x8f\x48\xcb\xd8\x47\x12\x0f\x00\xd7\x5d\x77\x49\x80\x5b\x42\xbb\xb8\xe6\x58\x0a\x11\xf2\x85\xb9\xc1\x86\x02\x07\x53\x9e\xaf\xde\x93\x7b\x92\xfe\x4a\xc9\x83\x06\x63\x0a\x70\x15\x34\x69\x3f\x5f\xf3\x94\xf0\x7a\x7e\x30\x9e\xd0\xdf\x3a\x58\x83\x59\x59\x1d\x26\x59\xc7\x83\x75\x4d\x9b\xb6\x64\x78\x4e\x49\x95\x05\xd5\x4d\x65\x9c\x15\x48\x2b\xdf\x9a\x79\x57\x5b\xf7\x6c\xcd\xb8\xdc\x92\xd1\x6f\xb3\xe5\x77\x87\x35\xbc\xf6\x22\x52\x06\xb6\xdb\x2d\xc3\xaa\x0c\x41\x87\x62\xf4\xfa\xda\x5f\xe4\x6c\x1f\x24\x89\x5b\x9a\xdd\xea\xb5\xa3\xad\x76\xd9\xae\x99\x6a\x04\x14\x49\x63\x3f\x99\x27\x2b\xcb\x1e\xd0\x92\x32\xb6\x15\x58\x23\x0a\xa1\x44\x6b\x94\x4c\x41\xa0\xc9\x3c\x96\x1f\xed\xf7\xbe\x0a\x34\x17\x64\x7b\x5d\xef\xa2\x13\x5f\x11\x75\x12\xbe\x78\x10\x78\x5e\x99\x10\xbd\x87\xf7\xa8\x0c\xb9\x6d\x86\x27\x79\xe2\xca\x02\x0f\xac\x99\xb1\xd9\xe3\xe0\x82\xe6\xd2\xfe\xa5\xac\xf3\x1e\x1c\xeb\xbc\x07\xbf\xcc\xba\x05\x75\xa6\x93\xff\x63\x43\x00\xf5\xc6\xff\xeb\xe8\x14\xd8\x2a\x28\x77\x44\x99\x31\xc7\x73\x61\xc9\x5d\x69\x38\x36\x7b\x0f\xc4\x12\xa1\xa9\x1e\xb7\x4a\xf6\x2a\x76\xca\x5e\xeb\x1a\xc9\xad\xa2\xdc\x7a\x27\xb9\xb4\xb3\x28\xe7\x15\x81\x66\x31\x8b\xdc\x6b\x4c\xe6\x93\x7f\x58\x35\x2f\x6d\xa9\x48\x70\xf5\x2f\xf5\xff\x93\x81\xa6\x74\x90\x38\xe0\xd7\x7b\xb6\xbf\x53\x52\x90\x1e\xd9\x6c\xb4\xf7\x80\x8d\xbc\x61\x12\xc4\x04\xf5\x2a\xab\x6f\x57\x40\xa8\x9f\xe5\x8b\x24\x4d\x6f\x92\xd9\xe7\x11\x71\xd2\x95\xc6\x95\xca\x76\x96\x62\x55\x10\x8a\xf0\x09\xd0\xbd\xc0\x2b\xa1\x6c\xd8\xdf\xd7\x7d\x7a\x5c\xb4\x8d\x36\x97\x9c\xa3\xc6\x9b\x51\xd3\x11\x28\x96\xd8\xe8\xe0\x7a\xa3\x5e\x55\x16\x99\xac\xba\xfb\x0e\xb9\xe5\x1b\x41\x10\x72\x2a\xa9\x9d\x8a\x9e\x8f\x20\x24\x19\xf5\x34\xd7\x52\xf4\x5b\xb2\x12\xc7\x7a\x36\xa3\xc4\xc8\x99\x0d\x54\x21\x33\x32\x3b\xa0\x7b\x6a\x1e\x18\x3b\xd0\x78\xbe\x52\x42\x6d\x8e\xef\x36\x68\x93\x5e\x43\xb4\xeb\x02\xfc\x53\x61\x5f\x7b\xc4\x2d\xa7\x68\xf0\x53\x32\x7d\xb5\x35\xd4\xb1\xe4\x57\x01\x5f\x5f\xee\xdd\x5e\x2f\xc7\xaf\xc4\xd9\xd0\x90\xa5\x06\x0b\x07\x4a\x82\x88\x94\x60\x15\x6b\x63\xb6\x52\x17\xa9\x3f\xe1\x62\x3f\xe4\x64\x0e\xc1\x34\xf3\x75\xc6\x01\xa4\x55\x52\xe8\xff\x19\x30\x5c\xff\x8c\xfb\x37\x6b\xde\xa7\xbc\x4f\x65\xdc\xce\x2a\xf4\xb6\x8c\x2e\x43\x79\xd1\x97\xbb\x73\x14\x68\x30\x9a\xba\x57\x06\xb7\xc0\x14\x93\xba\x7a\x07\x6c\xd2\x64\xa4\xf3\x12\xb7\x4c\x58\xbf\xd8\x8d\xad\xb8\xe9\x0e\x41\x20\xf7\x7a\xec\x3a\x2c\xf8\x78\x1c\xf3\x4a\xe9\x0d\x5d\x63\xf2\xa6\x21\x35\x73\xa2\x89\xa9\x03\x9d\x81\x10\x21\x61\x3a\xed\xf0\xa0\x4c\xac\x65\xbd\xbf\xed\x9e\xb2\x5b\xf1\x50\x3c\x3c\x94\xea\xeb\xb1\xeb\x3d\x51\x67\x24\xd7\x21\x42\x7e\xb6\x1d\x1b\x3e\x7f\xb4\x1f\x0c\x43\xe6\xe2\x2e\x1c\x05\xf3\x7c\x19\x8c\x02\x31\xeb\x05\x8b\xee\x43\x58\xa9\x97\x55\x84\x08\x4d\x7a\xac\x0e\x3b\xa1\x82\xab\xb7\xa3\x34\x3d\xa3\x9f\x55\x2f\x32\x0f\x1e\x8c\xde\x37\x25\x0f\x58\xc9\x3f\xee\x9d\xaf\x0f\x0c\xc9\xc9\x66\xd8\xec\x9d\xf9\xca\x12\xf5\x66\xdd\xd0\x74\x00\x5d\x60\x30\x08\xbd\x02\xda\xee\x0a\xfa\xe5\x80\x0e\x0d\xab\x8d\xa9\xb7\x7c\x4b\xda\xab\x26\x84\x18\xfc\x06\x97\x6e\x24\xdb\x2d\x79\xd0\xa8\x7b\x21\x7a\x6e\x3d\xaf\x18\x95\x0b\x19\xcc\x9e\x45\x3c\xb3\xfd\x04\x7c\xfc\xad\xe7\xca\xa5\x0b\xa3\xbb\xc3\x35\xa1\xb6\xef\x78\xe1\x95\xc7\x6c\xa2\x83\x8c\xfa\x93\x0a\xba\x22\x55\xcc\xb5\xb7\x82\xb4\x3e\x7b\x5c\xde\xe4\x29\x0a\x83\xd3\x0f\x3f\x9d\x7d\x38\x9d\x7e\x3c\xbe\x3c\xfd\x70\x1d\xb8\xc0\x91\xc0\x54\x3f\xf3\x8a\xd1\xc3\x44\xf2\x18\xc0\xad\xac\x8f\xdc\x29\xa6\x16\xda\xe4\xf9\x8e\x05\x3b\xfa\xb1\xa2\x0f\xa1\x40\xa7\xd5\x6f\x88\xae\x08\xc1\x3f\x8b\xf5\x4d\x31\x63\xf4\xa6\x8e\xd9\xa1\x95\x8c\x14\xe7\x15\x88\x7b\x14\x20\x9c\xc4\xe3\x89\x52\x26\xe6\xb6\x32\x31\xf8\x4b\x10\xc7\x71\x48\xe3\x7c\x5c\x4c\xd0\x51\xa2\x36\xa7\xf1\x7f\xfc\xf1\x47\x34\xf9\x4b\x80\x46\xea\x0d\xd5\x80\x50\x89\x02\x53\xff\xe3\x0f\x71\xc0\xad\x87\x71\x10\xfe\xf1\x47\x14\xfd\x05\x1d\x05\xca\x72\xe7\x69\x25\x4e\x52\x96\x8d\x08\x66\xe4\x96\x7c\x19\x59\x38\xbe\xc1\x7f\x04\xc3\xb5\xc4\xf2\x95\x01\xd3\x46\xbc\xac\x02\x48\x42\x49\x29\xc2\x59\xfc\x54\x62\x88\x46\xbb\xce\x7c\x2d\xb5\x61\x85\x0f\x30\x8d\x0f\x5e\xd3\x1f\x34\x72\xee\x6b\x0a\xd1\xce\xe8\x24\x8e\x63\xf0\xe1\x8c\x29\xea\x31\xe8\x0a\x71\xf4\xe2\x43\x49\xbe\x94\x02\x39\x71\xed\x2f\x15\x8d\xf8\xc0\xa4\x69\x44\x76\x89\xad\xce\x67\x85\x1b\x3f\x6a\x3c\xe9\xb9\x5f\xb5\x99\xc4\x53\xe9\xd8\xa3\x84\xd4\x8b\xa5\xa4\x1d\xa4\x94\x4f\xd3\x8a\x30\x08\x9c\x9c\xcd\x08\xb8\x1c\x85\x79\x4c\xa3\x2c\x7f\xd8\x6c\x68\xb4\xcc\xff\xfe\x41\x3e\xc9\xc8\x92\xea\xc7\xb2\x50\x0f\xf9\x87\xfc\x01\x1d\x49\x90\x82\x90\xa2\xd1\xdb\x84\x13\x91\xd7\x52\x01\xaf\x65\x38\x77\x4c\x95\xc7\x95\xa8\x19\xe0\x22\xd7\x58\xaf\x1f\xe2\xef\xbd\x3e\x5b\xfc\x28\x4c\x62\x8e\x8b\x38\x43\xa3\x30\x8f\x39\x4e\xe2\x0c\x17\x31\x45\x80\x2d\x60\x80\x8c\x4d\x28\x09\xb0\x49\x2d\xf4\x34\xca\xa1\x49\x8b\x78\x16\x92\x66\x20\x9c\xfe\xba\xd2\x4e\x2e\xe2\x38\x4e\x8f\x4c\xf6\x51\xd3\xe8\x88\xb3\x47\x2b\xe6\x83\x48\x96\x69\xff\x7a\xaa\x9d\xa0\x59\x44\xbe\xcc\xc8\x4a\x59\x36\xd0\x72\x41\xb3\x24\x4d\x1f\x9f\x78\x88\xca\x32\x4c\xf0\x02\xaf\x71\x81\x6c\x39\x14\x3d\x39\xa1\x50\xa5\x55\x24\x5d\x84\xbe\xc6\xa5\x3a\x5a\xac\x8a\x92\x97\x6c\x36\x61\xe2\x9f\xaf\x98\x8a\x85\x98\xc7\x07\xaf\xf3\x6a\xca\xe6\xc3\x21\x0a\x79\xcc\xc6\xf9\x04\x45\xb0\x66\x24\x36\x35\x41\x83\x01\x55\x1e\x77\x2a\xc0\x60\xe5\xd1\x3b\x26\x13\x68\x8a\x10\x92\xa0\xcb\x13\x6f\xad\xd6\x78\x16\xd3\x30\x47\x78\xa1\xdc\xd9\xae\xae\x2f\x3f\x9d\x5c\x7f\xba\x94\x36\xf8\xef\xce\xde\x9f\xf6\x16\x83\x41\xb8\x8e\xc9\x30\x18\xf5\x83\xe1\x4c\x95\x84\x85\xd0\x90\xa7\x24\xe2\x74\x49\xc2\x35\x42\xe6\x06\xe3\x4e\x34\x61\x1e\x0b\xb9\x69\x15\x1f\xbc\x5e\xfd\xa0\x4b\x7e\xbd\xd2\x30\xdb\xcb\x38\x19\xaf\x26\xbd\x3b\x59\xf9\xa5\xba\x98\x08\x09\x9e\xe3\x59\x05\xa6\x65\x83\xcb\x99\x05\x2d\xc8\xb2\xf8\xe0\x35\xab\xc8\x32\x4d\x36\x8b\x93\x31\x9b\xf4\x3c\xb3\x31\x93\x57\x1e\x82\xbd\x82\x07\x98\x1e\x33\x7c\x37\x66\x13\x54\x2e\x06\x03\xbb\x31\xa7\xd9\x3c\x5c\xa3\xb2\xf4\xad\xee\xc4\xbb\xe6\x93\xb8\x6e\xe2\x63\xc4\xd5\x5a\x58\xd1\x65\x3e\xa7\x0b\xda\xd5\xe0\xdc\x7f\x3f\xdf\xd5\xfa\xb6\x20\xfc\x5c\x15\x77\x9e\x64\xc9\xed\xf3\x30\xad\x6b\x59\xb7\x5e\x5d\xcf\x92\x55\x72\x43\x53\x4e\x49\x57\x28\x6a\x1e\xe9\x9e\x38\xa9\xf2\xd6\x91\x9e\xe5\x44\x7b\x25\x78\x9c\x64\x27\x0f\xe2\x8d\xfa\xd3\xc1\xfc\x5b\x8a\x4d\xfc\x17\xf2\x78\x02\xe5\x28\x97\x9c\xac\x25\x50\x2d\x60\xd4\x37\xe2\x32\x53\x88\x4c\x7b\x4b\x9a\x30\x6f\x58\xa1\x01\x29\x38\x54\x9e\xdc\xbe\xcb\x99\xee\x3b\xa4\x83\x61\xe2\x44\x7d\x66\xc9\xec\xb3\x03\xa1\x4b\x62\x6a\x36\x2d\x4b\x2e\xe4\xd1\x7a\x35\x87\x70\x0d\x39\x4e\x94\x7a\x49\xcc\xe1\xf5\x92\xa0\x30\x01\xa7\x7b\x9c\x95\xd5\x6e\x4e\xa1\x15\x54\x02\xa1\xc8\xe0\x40\x3a\x0e\xa3\x0e\xf1\x91\x33\x14\x8e\x21\xd5\x04\xa1\x27\x1a\x13\x65\xbd\x5f\xdb\x51\x41\x7f\xa8\x37\x19\x78\x47\x51\x69\x57\xac\x20\x1c\xf8\x7b\x3a\x7b\x4b\x66\x39\x4b\x80\x70\x8e\xb0\x09\xb8\x9b\xa9\xba\x94\xed\xc9\x69\xeb\x44\x58\x73\xe2\xf7\x85\x56\x69\xa4\x1b\x81\x4c\x67\x1e\xa6\xcb\x64\xc6\xf2\x1d\x89\x19\x99\xaf\x67\x64\x5a\xcf\xb3\x63\x0a\xb5\xae\x09\xb2\x5c\xf1\xc7\xce\xab\x01\x52\x6f\x5d\x63\x59\xce\x4f\x9f\x45\x52\x67\xd8\x41\x35\x23\xcf\xa0\x98\x91\x5d\x75\x7c\x4e\xf5\xb6\xd2\xba\xc9\xf3\xb4\x33\x31\x91\x78\x2b\x35\x08\xf9\xdd\x7d\x6f\x12\xa9\xb7\xd2\x23\x7f\x5b\x27\xdd\xab\x07\xa9\xb7\xd2\xbb\x7d\x86\x4d\xd1\xf6\x7e\xbb\xe5\xdd\x07\xf4\x96\x6f\x1f\xcf\xce\x60\xfd\x3c\x4a\xb7\xd7\x2a\x7d\x46\xad\xd2\x1d\xb5\xca\x33\xf2\x5b\xd2\x7d\x1d\xc8\xe4\x3b\xdc\x30\x24\x06\x79\x67\x9a\x3a\xc3\x8e\x78\x07\xca\x1c\x36\xbb\x3d\x4e\x69\xd2\xfd\x68\xac\x67\xdc\x5a\x4a\x92\x75\x8d\xd2\xc0\xa3\x24\xdb\x1e\xa1\x21\xef\xce\x21\xe4\x3b\xa2\x68\xac\x97\x9d\x63\x47\x14\xeb\xe5\xf6\xb5\x0b\x60\x2c\xdd\x68\x2d\x69\xb6\x63\x1f\xf8\xd2\x9d\x56\xf2\x65\x07\xad\xd5\x33\x68\xad\xb6\xf7\x17\x18\x6f\x76\xed\xb0\x9c\xed\x34\x25\x7c\x4b\x17\x8b\xee\x04\x65\xfa\x5d\xad\x7d\xd3\x75\x81\x40\x7b\xdf\x6c\x5f\x1d\x0b\x9a\xf2\xce\x1c\x29\x8b\x64\xf2\x0e\x14\x9f\x51\x49\x9d\x61\x2b\xd5\x75\x46\xff\xd6\x99\xa2\x48\xbc\x93\xda\x33\x6a\x28\x93\xef\xa2\x98\x77\x5f\x1f\x90\x7a\xbb\x13\x9d\xe0\xa8\x0b\x32\xeb\x3e\x1d\x4d\x8e\xed\x32\x42\x9e\xa6\xcf\xa1\xaa\xd2\xb7\xc8\x04\xed\xe2\x53\xed\x26\xbd\x4b\x10\x98\x9d\xae\x4a\xc0\xfa\xf7\x48\x24\x61\xe8\x94\x52\x07\x9b\xdf\xb4\x57\x61\xd2\xfc\x46\x92\xcf\xe7\xc9\x0a\xd7\x44\xc2\xcc\x35\x71\x23\xf6\x95\x9b\x57\x7d\xe2\xa4\x90\x0e\xbc\x83\x81\xe7\x65\x88\xb0\x8c\x36\x7c\xf1\x90\x99\xee\x36\x78\x79\x48\x8b\x2d\xba\xae\x85\x69\x45\x11\xd3\xa3\x46\x90\x5c\x34\x7a\x2a\x2b\x28\x6b\x95\x70\xcc\x27\x71\x86\x9f\x6e\x7d\x80\x83\xb9\x10\x7a\xf4\x7d\x36\xb4\x4e\xe9\xd5\xe4\x85\xae\xe8\x89\x5c\x6c\x2f\x52\xd0\x21\x08\xf5\x74\xec\x3a\x91\xaf\x82\xbc\x36\x79\x01\x0d\x3c\xce\xa4\x66\x8a\xab\xc8\x27\x82\x40\x86\x39\x92\xe0\x87\xd5\x40\xd0\x86\xdc\x2d\x47\x4a\x09\x39\x59\xab\x90\xc3\x31\xdb\x2a\xe4\x64\x38\xaf\xfc\xf3\x9a\x42\x4e\xb6\x5b\xc8\xa1\x31\x8b\xee\x93\x74\x4d\xb0\xc9\x8f\xdb\x73\xfa\xe5\x9d\xed\xb2\xcc\xb7\x17\x87\x8d\xb4\x08\x12\x5a\xd3\x4e\xb3\x52\xc3\x34\x6f\xa7\x71\x06\x03\x0e\xfe\xe6\x10\xbf\x01\xb4\xae\x04\xd4\xad\xd9\x98\x4e\xac\x5b\x59\x3a\x69\x76\x3a\xd3\x0a\x9c\xf1\xc4\x11\x5a\xd1\x93\xba\x0f\x23\xa8\xd4\x85\x7b\xb4\x63\x4f\x52\xc1\xc6\xc6\xf9\x44\xba\xa3\x93\x2f\xab\x24\x9b\xab\x05\x41\x49\x81\xc2\x44\x0c\x81\x96\x40\x85\xe8\x99\x59\x16\x8e\xba\x73\x5d\x97\xfa\x5c\x7b\xd1\x8f\xbd\x5d\x90\x1b\x37\x4d\x9c\xc5\x07\xaf\xb3\x1f\xc8\xeb\x4c\xd7\x45\x05\xa1\xaf\xc2\xa3\xe4\xe3\x6c\xa2\xae\x98\x43\x8a\x4c\xe4\x8d\xd2\x12\x9c\xed\xc4\x64\x82\xca\x09\x02\x25\x14\x88\x86\x9e\xdb\x12\x25\xf3\xeb\xb0\x3b\x64\x18\xa8\xfa\x04\xde\xd0\xe1\x20\xf1\x0b\x52\x10\xe1\xd1\x2e\x0d\xac\x28\x4a\x4c\x8c\xc4\xf8\x95\x85\xed\x75\x2d\x2d\xf3\xc5\x68\xac\x97\xd4\xda\x98\x0f\x79\x46\xb6\xb6\xe5\x45\xc4\xf7\x1a\x04\x25\x3d\x21\x61\xbe\x88\x60\x5f\xfb\x1a\xb6\xd5\x14\x84\xcd\xda\x5a\xd8\x4d\xfc\x5e\x07\xe5\x76\x69\x56\x97\x25\xa0\x21\xce\x54\x19\x20\x80\x3e\xbb\x0c\xef\xdc\x24\x28\x8e\x63\x26\xc9\xde\xf2\x6f\x45\xf3\x47\x43\x91\x7c\x33\x92\xba\x96\xe9\x37\xab\xe5\x0f\x86\xe2\x37\xab\xe5\x0f\xba\x96\x52\x4c\x6d\x9b\x62\x89\x90\x03\x51\x48\x90\x4a\x17\x4a\x64\x3d\x25\x86\xee\xce\x55\x45\xd9\x92\x50\x1f\xae\x80\xd9\xad\x31\x2e\x07\xc0\x5a\x9b\x04\x96\x4d\x56\x42\xc1\xfc\xb8\xfa\x41\x9d\x14\x67\x08\x0b\x6e\x14\xda\xcf\x04\x93\x92\xcd\x5d\xfc\x11\x91\xc5\x77\x51\x0c\x80\x1a\x22\xb5\xe1\xbd\xbc\x09\xf7\x64\xc2\x9c\xd5\x70\x47\x9e\xa1\xff\xeb\xc0\x63\x7e\x15\x22\x49\x83\xd9\x74\x74\xb6\xea\x06\xce\x74\x1f\xab\x6d\xc2\xe3\x49\x50\xdf\x15\x1a\x91\xb9\xaa\x5d\x21\x5b\xa7\x69\x1c\xc7\x74\xb3\x09\x64\x0f\x54\x97\x8b\xf4\x28\x1b\xd1\x48\xf6\x41\x28\x4a\x95\x46\x6a\xce\xcc\x31\x35\xcb\x15\x4b\x23\x6f\x06\x15\xf5\x57\xff\x87\x24\xb3\xbb\x57\xfa\x6a\xea\x28\x8f\x9d\x60\xc4\xf0\x35\xfa\xcb\x9f\x5e\xe1\x20\x80\x1b\x41\x82\xc9\x30\x86\x16\x20\xab\x59\x35\x50\x1b\x62\x90\x6c\x38\x1e\x37\xb8\xcf\x5a\x43\x73\x27\x0a\x2d\x2d\x80\x19\x11\xd3\xff\x08\x5e\x1c\xa3\x90\x5a\xa1\xed\x09\x42\x23\xfd\x1e\x0e\x5b\x6f\x53\x13\xa7\xa9\xb1\xd8\xae\x57\x5e\xa8\x48\x39\x18\xa5\xb5\x03\x3f\x83\xa9\xb0\xaa\x7d\x8c\x42\xee\xd6\xb2\xb5\x6e\x45\xed\xb6\xc9\x30\xd1\x7e\x91\x42\xb0\xd6\x2c\xe6\x98\xc7\xe3\x09\xc2\x72\x0c\x7d\x2d\x81\x26\x32\x3d\x01\xca\xda\x8d\xf0\xb7\x2f\x4e\x8a\xe1\xbe\x12\xd3\xed\x2c\x27\x6f\x67\x39\x79\x83\xe5\x34\xdc\xbc\x5b\x8b\xca\x7e\x55\x86\xb4\x93\xd3\x41\xf9\x59\x5d\x55\x57\x3d\xc4\x8b\x13\x2a\xd9\x4e\x6b\x1a\x62\x02\x78\x48\xd6\xec\x4b\xd0\x60\x90\x78\x33\xe7\x42\x6c\x0b\x09\xda\x6c\xc2\x5c\x85\x78\xc0\x54\x73\xbb\x08\xe4\x5e\x5a\xa2\x92\x44\xc5\x7a\xe9\xb3\x96\xa1\xf6\x01\x63\xdb\x45\x93\x21\x2f\xf1\x81\x54\xc2\x29\x16\xe3\xcb\xb3\x08\x9c\x27\xfc\x4e\x64\x92\xc1\xbe\xf0\xfe\xe1\xab\x03\xa9\x3a\x93\xd4\x6a\x61\xa1\xbb\x51\xa3\x99\xa2\x26\x89\x81\x49\x18\x54\x6d\x25\x01\x36\x92\xd5\x9b\xc7\xd8\x9b\xbf\x80\x9d\x4e\xee\x1f\xc1\xd0\x37\x89\xaa\x01\x80\x22\x80\xb0\x9c\x55\x60\x22\xa3\xf5\x3c\x0d\x91\x5c\x49\x8b\xf1\x77\x71\xdc\x98\x5d\x47\x3b\x8b\xf1\x98\x16\xbb\x29\xe2\x38\xce\x8c\xf9\xca\xba\xd6\x0a\x8a\xa4\x01\x0b\xfd\x5b\x9c\xaa\x87\x96\x0e\xf8\xda\x6d\xdf\x9d\x8f\x54\xed\x86\xb2\x40\x14\x52\xcc\xed\x7d\xb0\xce\x2a\x18\xe5\x4e\xdc\x4d\x0c\xfc\xe6\x6b\xb2\xb9\xe3\x36\x5a\xbb\xa5\xa9\x74\x34\x9e\x94\x62\x39\xd3\x68\x95\xaf\x42\xa4\x37\x9b\x16\x63\xa1\xd7\xbc\xf2\xa5\xe4\x42\x96\x33\x5e\x99\xf1\x9e\x90\xf2\xe8\x98\x6b\xeb\x8c\xcc\x96\x3f\xe9\x22\xcc\xc6\x39\xd8\x14\xa1\x27\x16\xef\x1d\xf4\x6e\x18\x49\x3e\x97\x42\xde\x03\x0c\x57\x25\xf0\xed\x1d\x2a\x81\x6f\xef\xa0\x74\xea\x7c\x8c\xc2\x1c\x95\xb6\xf6\x0d\x29\x43\xb8\xb7\x74\xb1\x78\xce\xb4\xe0\xfe\xe9\xa1\xec\x9e\x6f\xa5\x35\x36\xad\x7e\x71\x7f\xdf\x31\x35\x4d\xec\xce\x64\xbe\xde\x93\x99\xf7\x45\x2b\x69\x04\x6a\xb9\x8b\x05\xf8\x0f\x9a\x49\xc5\xb6\xcd\x2f\xa5\xe6\xfb\x47\xcd\x2e\xc7\x20\x9a\xc6\xdc\x9d\x5c\xdc\x92\xab\xac\x75\xdc\x50\x52\x65\x47\x82\x93\x1a\x65\x8d\x31\x14\x8b\xda\x68\x3a\xe5\x08\xe6\xcc\xb5\x5f\x04\x5e\xc2\xd8\x0d\x6c\x36\x12\xa1\x4f\x75\x73\xc8\xc5\x69\x40\xf5\xa9\xa9\xa8\x7b\x0e\x57\x7a\xd4\x62\x71\xd2\x3c\x67\x9b\x1e\x1a\xda\x63\x06\x41\xed\xac\xd1\xac\x38\x75\xc1\xbe\x00\x0f\x02\x4c\x3a\x20\xf8\xab\xca\x7b\xc2\x10\x50\x47\xf3\xe9\xe8\x41\x7b\xde\xb9\xda\x98\xa3\x89\x24\xa4\xc2\xd2\xad\xeb\x5b\x19\x04\xec\xa7\x96\xaa\x51\x1e\x9d\xf0\xbc\xd9\x58\x0a\x46\x6b\x9c\x81\x44\x96\x73\xba\x78\xd4\x7a\xd1\x93\xbb\x24\xbb\xd5\x31\x6b\x12\x6d\x6e\x3e\xf3\x28\x31\xf7\xe2\x38\x1d\x0c\xd2\x2d\xd8\xe0\x40\x9e\x91\x65\x7e\x4f\x2e\x6e\x0a\xc2\xee\x09\x43\xa1\x10\x69\x66\x9a\xee\x3c\x0e\xfe\x8f\xa0\x09\x91\x51\xf1\x2a\x5e\x84\x6b\x50\x00\x89\x09\xb4\xd2\xb6\x58\xca\x1a\x6a\x7e\x14\x8c\x27\xc1\x48\xad\xe1\xd7\x52\x2f\x3b\x9f\x57\x94\xa1\xca\x4b\x3c\x13\x1d\x31\x5e\x4e\x4a\x92\x16\xa4\x9f\xc6\xab\x96\xf9\xcb\xc7\x07\x13\x4c\x05\x59\x7d\xe0\x64\x23\xfb\xf8\xc9\xec\x71\x71\x0a\x2a\x30\x15\xa5\xd0\x12\xf5\x68\xd5\xaf\x29\x52\xd8\x66\xda\x5f\xa6\xd3\x51\x73\x8f\x8e\xec\xc6\x1a\x2e\xfc\x5e\xcf\x3f\x34\xba\x0b\xef\xf1\xaa\x75\x7f\x08\x49\x75\x4c\x1a\xbd\xbb\x1a\xb4\xb4\x12\x94\x16\x0d\xee\xb5\x39\xff\x8d\xb5\xeb\x48\x88\x1b\xb2\x83\x44\x3f\x1d\xea\x7d\x62\xcc\x70\x16\x67\x9b\x4d\x90\x14\xb3\x60\x62\x73\xa1\x77\xb5\x5d\x17\x6a\xda\xbe\x86\x68\xb5\x83\xc9\x93\x82\x7b\x34\x95\x7c\x9c\x4f\x70\x11\x27\xa2\x1a\xeb\x38\x19\x1f\x4e\x70\x2a\xd9\x4f\xb0\x76\x62\x52\xb3\x65\xf6\x20\xe9\x41\x66\x62\xe7\x16\x48\xce\x24\x31\x4d\xd5\xc9\x12\xcc\x49\x31\x13\x53\x6d\x7d\xb4\x7f\xf8\x97\x74\x94\x6a\x5d\xe7\x41\x89\x04\x0f\x29\x7b\x70\xe6\x48\xc1\xe6\x6e\x64\xeb\x75\x4a\x33\xaa\x60\xf3\x72\x05\x24\xe9\x25\x61\xb7\xa4\xed\xa3\xbc\x65\x68\xfb\xfa\x40\x92\xcf\xd3\x82\xf8\x5d\x16\xbb\x5a\xdc\xe8\x22\x3a\x22\x4b\x2a\xeb\xed\xed\x97\xeb\x40\xf2\xa3\xaa\x6b\x67\xd2\x32\xdb\x56\xca\x53\xb1\x41\x5e\x91\xae\xf7\x61\xd4\xae\x2e\x89\xa0\xab\xed\xf5\x90\xc7\x5c\xc2\x40\x1d\x31\x9d\x72\x64\x90\xa5\x64\xea\xbc\x65\xec\xed\xd1\xe9\x64\x15\x6f\x16\x06\x77\xb9\xa7\xc3\xd7\xfc\x87\xfa\x89\x2d\xb9\x28\xc9\x80\x54\x87\x33\x07\x33\x58\x86\x74\xde\x4c\x63\x36\x7c\x26\x8f\x45\xc8\xf4\xc1\x9e\xd9\x36\xdb\x3a\xee\x83\x38\xd9\x89\xe0\xb5\xd8\x38\x9f\x54\x97\x55\x25\x51\xbd\x1e\x73\x3f\xfc\x0d\xd3\x65\xc8\x64\x9b\x0d\xb7\x2c\xf8\xd9\x96\xbe\x51\xd3\xfa\xdb\x46\x64\x10\x0c\xa3\x54\xc6\x70\x8f\x32\x86\xeb\xfb\x01\xd2\xb3\x71\x45\xec\x4e\xe2\xde\x4e\x02\xec\x8f\x09\x96\x1e\x12\x63\x66\x78\x20\x52\x6e\x69\xa0\x59\x7c\x5f\xe5\x14\xe1\x61\x52\xd4\x14\x3f\x52\x7f\xed\x69\x6d\xe6\x10\x31\xee\xb3\x42\x12\xb4\x38\x87\x52\xef\xdb\x06\xbc\xb8\xba\xae\x49\xe6\x73\x9f\x04\x6a\xe8\xc0\xc1\x45\xf0\x9e\x8a\xe2\x54\x62\xae\x62\x1f\x6e\xcf\x65\xc5\x47\xe4\x82\xc1\xd8\x9e\x5a\x0a\xef\x32\x82\x6e\xab\x33\x88\x0a\x4e\xdb\xfd\xbe\xda\xf6\x09\x61\x2c\x67\xfb\x80\x23\xd8\x06\x00\xa6\xd5\x8d\x37\xc9\xec\xf3\xcd\x9a\x65\x2d\x58\x5e\x3e\x5f\x9c\x93\x35\x63\x24\xe3\x97\xeb\xec\x7d\x9e\xaf\x7c\xb8\xa4\x2a\x76\x0b\x38\x94\xfc\x35\xa7\x59\x7c\x87\x49\x74\x43\x6e\xa9\x83\x28\x98\xca\x57\x92\x9b\x27\xd9\xdc\xfd\x06\xb1\x96\x80\x0f\x56\xc1\xdc\x3c\x05\xa5\xe6\xa3\xd2\x94\xa5\x8e\x5b\x28\xdc\x6e\x5f\xa9\x14\xf3\x6b\xba\x24\xcc\xe7\x77\x9e\x8a\x64\xf2\xab\x92\x2c\x92\x6c\x46\xd2\x66\xfa\xd4\xf9\x22\xd3\xa6\x09\x27\xcc\x4b\x14\xbe\xb4\xd4\x2b\xcf\x66\xe4\x65\x82\x8b\x34\x60\x27\x60\xb9\x2e\xd6\xa9\xb5\x37\x56\x8b\x96\x47\xeb\xac\xb8\xa3\x0b\x6e\xdd\xe7\xe3\xaa\xb3\x2e\xb2\x59\xd5\x61\xdc\xe9\xe4\x8b\x5a\xc5\x1a\x1d\xed\xe4\x75\x1b\x95\x91\x2f\x2f\x94\xc6\x3a\x36\x0a\x14\x5c\x87\xa2\x25\x6e\xdf\x72\x6b\xd4\x7c\x2b\x4f\x8f\x9b\x5c\x74\xd1\x9c\xdc\xe4\xeb\xb6\x76\xea\x8f\x2d\x6d\xe4\x77\x2c\xe7\xbc\x65\x32\xea\x8f\x2d\x79\x6f\x68\x36\x8f\x89\x89\xef\x77\xb9\xce\x62\x12\x55\xeb\x2f\x26\xd1\xdf\xd6\x64\x4d\x0a\x08\x40\x5f\xdc\xaf\xc0\x59\xec\xdf\xc4\x2b\xe7\xbc\xc6\x09\x84\xa8\x53\x28\x99\x61\x10\x0c\x41\x4d\xc6\x92\x6c\x9e\x2f\x43\x34\xd4\x1e\x39\x21\xe8\x7e\xa5\x16\x3d\x88\x02\x1c\x04\x62\xb3\xa9\x53\xd6\x30\xc9\xe3\x2a\x52\xa2\x72\x74\xbd\x66\x49\x56\x50\xf3\x0e\xfc\x02\x03\x1c\x80\x13\xc4\xa5\xfe\xa5\x83\xb5\xe1\x62\xd2\x33\xf5\xd7\x48\xcb\xae\x2b\xf4\x1a\x3f\xa9\x47\x28\x79\x54\x15\x98\x67\x6f\xc4\x46\xe0\x68\xc5\x92\x98\x94\x38\xcf\x4e\xb3\x79\x4d\x6c\x4c\x62\x0e\x1f\x44\x13\xae\x25\x7a\x3a\x8b\x9c\xdf\xfa\xeb\x39\xe1\x77\xf9\x7c\x14\xe4\x99\x02\xc5\x58\xa4\xeb\xe2\x6e\x94\xdb\x70\x55\x33\x7b\xfc\xd8\x3a\xf3\x0d\x9d\x33\x48\xa9\x76\x85\x94\x76\x26\x00\xd0\xd4\xb3\x18\x7e\x8b\x9c\xd8\xf9\xfc\xf4\xec\x29\xb0\xe8\xa9\x99\xf1\x5f\xb7\x72\xba\x51\x66\x2e\x65\xdb\x30\x81\x8d\x33\x9b\x72\x66\x28\xdf\xb9\x37\x14\x5c\xdf\x50\x30\x84\x4a\x97\x71\x50\x6e\xcd\xdf\x2a\x5c\xc2\xee\x78\x49\xcf\x8d\x81\x50\xe8\x60\x4f\xdf\x26\x00\x42\xd6\x1e\x00\x01\xf5\xb2\x1a\x52\x58\x2d\x00\xd5\x08\x00\x4f\xdb\x82\x23\x64\x48\xdf\x70\x5a\xbc\x03\x75\x3b\x9b\x33\x9a\x6d\x0b\x0d\xa0\x12\x08\x1e\x4e\x3e\x1a\x9c\x86\x17\x85\x88\xf3\x79\xf1\x7a\x71\xbb\xd3\x7c\x16\x4f\x31\x89\x1e\xe2\x07\xe8\xb6\x59\xb2\x24\x29\xfd\x3b\x89\x4f\xc5\xcf\xa4\xb8\x23\x4c\xfc\xfa\x02\xdb\xb9\xfa\x74\x25\x7e\x80\xdd\xd3\xe2\x31\xbe\x00\x91\x7e\x4e\x58\x31\xcb\x19\x89\x8f\x21\xe1\x8a\xf2\x04\x92\x7e\xde\x22\x35\xdd\x12\x7e\x05\x4d\xed\x6e\x4d\x5d\x65\xd9\x2e\x90\x15\xcf\x27\x5d\xd8\xa4\xd5\x78\xbe\x1a\xf7\xa7\x93\x57\xb7\x4a\x0d\x96\x45\x00\x59\x15\x1e\x92\xef\x7d\x97\x5f\xa7\xf2\x6e\x5e\x6e\xef\x14\x07\xfb\xe0\xb2\x9c\xc4\xaf\xc2\x3f\xf6\x37\x7f\x4c\x37\x7f\x44\x9b\x3f\x0a\x34\x0c\x23\x74\xf4\xea\x16\x17\xf1\xab\xf0\x3f\x36\x7f\xbc\x42\xe1\xf8\x78\xff\xff\x3f\x41\xaf\x6e\xf1\xba\x4b\x29\xd5\x3d\x6c\xd2\x58\x70\x7a\x3d\x1d\xb1\x88\xe7\x9f\x56\x2b\xc2\x4e\x92\x82\x84\x68\x14\x04\x65\x55\xb5\xc2\x4f\x96\xe7\xef\xf3\x07\x9d\x03\x2e\xac\xd2\xf8\xd5\x7f\x88\xba\x4f\x55\xa5\xf1\x2c\x7e\x15\x46\xc8\xdb\x9c\x85\x6a\xce\xe6\x8f\x08\x85\xe3\x64\xff\xef\xd0\xa2\xbb\xad\x2d\xaa\xa4\xcd\xd6\x86\x04\xd3\x60\xe8\x69\x0c\x66\x0d\x23\xbf\x6a\x24\x87\x61\x76\x94\x35\xf2\xa0\x12\x67\x95\xe2\xe8\x55\xe0\x15\xb9\xc0\xb8\x4d\xfc\x67\x3a\x4b\xb0\x32\xe6\xc7\x0c\x33\x2b\xca\xaa\xf4\x8d\x7e\x15\x54\xdf\x17\x6d\x3d\x6b\x55\x05\x7a\x76\x1e\xbf\x82\x4e\xfa\x63\x3e\x51\xe3\x3f\x14\xdd\xb5\x8a\x5f\x89\xbe\x2d\x86\xaf\x6e\xf1\xf2\x79\x93\x61\x8e\x83\x3f\x1d\x4e\xff\xf4\x9d\x55\x9b\x15\x0e\xa6\x01\xaa\x8f\x2b\xbe\xaf\x26\x9e\xa8\xc1\xfa\xe0\xe0\xe4\x60\xff\x8f\xf5\xc1\x77\xff\xfc\x0e\xc6\xec\xf1\x79\x05\xdf\x77\x6d\xf3\x6d\xa3\xcd\xa2\xb4\x9b\xe7\x95\x76\x5b\x35\xb3\xd6\xae\xea\xc4\x9f\x3a\x86\x2f\x7b\xae\x4e\x9e\xa1\xcd\xa6\x01\x38\xf3\x1d\x82\xeb\xed\x2e\xc7\x0b\x3e\x44\x08\x37\xb5\xe6\x2c\x3e\xe8\x35\x2a\xfb\xea\x9f\xfe\x4f\x38\x3e\xd8\xff\x97\xc9\x50\x2e\x11\x47\x35\xaf\x0e\x8c\xa3\x55\xc2\x0a\x72\x96\xf1\x30\xc3\x87\x07\x68\xff\x70\xc4\x86\x43\x9c\xc7\xd4\x68\x1a\x8f\xf8\x98\x4e\xb4\xfe\x47\xe9\x07\xe5\x09\x51\x09\xe7\xf9\x51\x3e\x52\x2a\x88\xfc\x28\x90\x2c\x50\x30\x32\x57\x1c\xf9\x51\x10\x8c\xe4\xe6\x16\xe6\x52\xfd\x6f\xac\xcd\xe4\x6b\x04\x57\xd7\xa2\xdf\x2a\x55\xe9\x83\x33\x02\x72\xe1\xbc\x12\x93\xd3\x4a\x73\x6a\xa5\xb9\x51\x17\x52\xd5\xd7\x2f\xd6\xd7\xbc\xf1\xf5\xca\xfa\xba\x6e\x7c\xbd\xb0\xbe\xde\x35\xbe\x1e\x5b\x5f\x97\x8d\xaf\x9f\xad\xaf\x8f\xfa\x2b\x93\x51\xdd\xea\x08\xec\x91\xec\x80\xc1\xc0\x77\x98\x50\x52\x84\xf2\x7b\x35\x2d\xf0\xd3\xc3\xe8\x69\x96\x67\x0b\x7a\xbb\x36\x87\x8a\x7d\xc4\x1c\xe2\x07\x46\x39\xd1\x9f\xc0\x70\xd8\x73\xe2\x3c\x28\xa4\xdf\x12\xa7\xf9\xec\xeb\x28\x7e\x63\xe6\x74\xaa\x2f\x6a\xca\x12\xeb\x33\xff\x9b\x34\xf9\xca\x34\xb9\xe2\x33\xbe\x09\xe1\xd3\x8a\xb0\xe6\x58\xbe\x09\xdd\x2f\x86\x6e\xc5\xe1\x7c\x13\xc2\xc7\x86\xb0\xe6\xa3\xbe\x09\xd9\x8b\x8a\xac\x61\xc1\xbe\x09\xe1\xcf\x9a\xb0\xd8\xca\x7b\x0d\xb6\xd6\xcb\xb5\x76\x54\x40\x56\x7c\x57\x2d\xae\x07\x01\x1b\x52\xcf\xd7\xea\xa8\x77\x52\x78\x35\x7c\x63\x32\x29\x4d\xf0\x13\xc5\x91\x2b\x4f\xfc\x57\x24\x9b\xe5\x20\x33\x77\xac\xe9\x99\x72\xd7\xa0\x42\x08\x86\xac\xae\xd6\xd4\xaf\x12\xd5\x58\x6a\x37\xeb\xc5\x82\xb0\x98\x48\xcc\x25\xb1\x93\x7c\xcc\x8b\xf8\x40\xc1\xd1\x09\x5e\xf9\x60\x9b\x9a\x54\x56\xb6\xa9\x79\x26\x3f\x7e\xf7\x3f\xff\xa7\x05\x74\x06\x72\x76\x18\x5c\xac\x44\xf2\xbe\xa0\xd1\xcf\xef\x09\xeb\xff\xef\xfd\x1b\xca\x8b\xa8\xff\x53\xce\xfb\x00\x6f\x16\x69\xf4\x2d\x59\x31\x65\xab\xb4\xe1\x8d\xe3\x71\xff\xbb\x1f\x7e\xf8\xdf\xc8\xad\xb6\x9d\x51\x1b\xce\x57\xea\xed\xf8\xbb\xd7\xac\x79\x7b\x60\x23\x3b\xd8\xbb\x0e\x5d\x84\x41\xb6\x16\xd3\xc9\x82\x78\x18\x0c\xb2\x1f\xff\xf9\xbb\x7f\xf9\xe7\x7f\xf9\xff\xfd\xaf\xef\xfe\xc5\xdb\x3e\xc2\x92\x6c\x2e\xdb\xf6\xfd\x77\x4e\xe3\xb2\x96\xc6\x65\x12\x23\x5a\x76\x76\xb3\x05\x25\xe6\xd1\xaa\x6e\xbf\x2d\x3b\x79\xff\x50\x43\x59\xcb\x1c\x63\x32\x3c\x9c\x34\x2b\x75\xcd\x1e\x69\x76\xdb\xe7\x79\x1f\xe8\xf4\x73\x55\x49\x9a\xf5\x57\xf9\x6a\x9d\x26\x9c\xcc\xfb\x45\x9a\xf3\x3e\xcd\x0a\x4e\x92\x79\x3f\x5f\xf4\x93\x3e\x23\x70\x61\x2b\x3f\xd5\x6a\x0e\x25\xc5\xdc\xd4\xed\x37\xca\xef\x1a\xec\xf2\x7f\x87\x1a\x62\xf7\xd5\x77\x93\x98\x19\x75\xba\x67\xe1\xf0\xda\x5a\x4c\xf3\x87\xfd\x94\xdc\x93\xb4\xf3\x6a\xbc\xe2\xc9\xec\x73\x2c\xfe\xe6\x2c\x71\x2f\xd0\xda\x96\xa2\x5a\x89\x89\x38\x0d\xe3\xf1\x44\x56\x19\x74\xa4\x5b\x97\x5e\xfd\x86\xa2\x32\xc2\x80\xcc\x1a\x86\x10\xc8\x8a\xd9\xcc\x6d\xd8\x18\x93\x6c\x38\xec\x91\xb4\x20\x55\xfc\xee\x49\xaf\x2a\x3f\x2b\xed\x2b\x09\xa0\x34\xe6\x13\xb1\x59\xc8\xfb\x0e\x46\x16\xad\x17\x18\x32\x35\x99\x40\x4a\x66\xab\xff\x89\xdd\x60\x08\xcd\x6e\xea\x5c\x15\x4d\xcc\x30\xe9\x9e\xf4\xc4\x85\x72\x3a\xf1\xab\x20\x2d\xc7\xaa\xd9\xf7\x64\x16\x93\x6d\xbd\x0e\x78\x88\x9e\x4d\x5f\xcc\x66\x89\x04\x2f\x68\x18\xeb\x03\xd1\x7a\x78\x7e\xc7\x72\xcb\xc2\x92\x6f\xcf\xc7\xad\x8c\x56\x26\x4b\x06\xf5\x67\xc3\x4c\x66\x9c\xe5\xab\xba\x9d\x9f\x4e\x2a\xc6\xcf\x3c\xcb\xd1\x81\xa3\xf6\x32\x79\x68\xcb\x41\xd4\x4a\xbf\x25\xdc\x4d\xe5\x0e\x78\x45\xb0\x81\x6a\x65\xea\xa9\xc1\xad\x44\xaa\x94\x64\xbe\xc3\xd3\x4d\x6a\xcd\x02\xb1\xae\x58\x6d\x7d\x66\xf9\xbc\x76\x6f\x0a\x0c\xc0\xfe\x4d\x72\x43\xc0\x46\x5e\x27\xec\x1c\xac\xb3\x20\x4c\x42\xab\xbe\x59\xd3\x74\x4e\x98\xdf\x5e\x94\x46\x8b\x9c\x29\x18\x56\xa9\xe2\x56\x96\xa7\x24\xfa\x90\xcf\xc9\xdb\x8b\xf3\x6b\x46\xc8\x49\x5e\xed\x30\x2d\xe1\xb2\x88\x35\x89\x99\x35\x2d\x88\x65\x9f\xcd\xd1\x66\x03\x77\x8c\xd2\x2b\x29\x13\x9c\x24\x2f\xde\xe7\x79\x41\x50\xc8\x30\xa9\x40\x3e\x1b\xf3\x35\x93\x58\xab\x9f\x0a\x92\x92\x42\x3b\x2a\xba\x41\xe0\x74\x08\xd2\xc6\xc7\xda\xf0\x6a\x94\x49\x37\x39\xdc\x94\x40\x29\xc7\x9c\x33\x7a\xb3\x76\xdd\x56\xa0\x87\x89\xf3\x19\x66\x69\x89\x59\x19\xb2\xc8\xd3\x4f\x62\xac\xdb\xba\x50\xc7\xcf\xf6\xf6\x9e\x36\xbc\xd3\xe6\xd4\x00\xdb\xec\x85\x81\x95\xbd\x89\xac\xa1\x4e\xf3\xd9\xe7\xb7\x64\x05\xb0\x6b\xdc\xdb\xcd\x99\xee\x66\x1a\x67\xcd\x6e\xa6\xd1\x74\x9a\xaf\x48\x06\x84\xea\xf8\x3c\x6a\x4f\xf6\x94\x36\x1c\x6a\xa8\xe4\x64\xb5\x22\xd9\xfc\x24\x5f\x42\x9f\x06\xff\x34\xbc\x19\x05\x43\x3e\x0c\xfe\x09\xc0\x18\x2b\xd9\xdf\x2a\xa6\x9a\x20\xa8\xc4\xa2\x02\xb3\x34\x2f\x48\xa3\x06\x6e\xee\x2a\x8d\x95\x1d\xb7\x54\x62\x5f\x54\x62\x7f\xbf\xb5\xf6\xa2\x76\xb2\x68\x99\xf3\xe7\xeb\xf3\xf7\xb1\xc7\x50\xcc\x4f\xfd\x36\x5d\xb2\x7f\x0a\xc0\xc8\x28\xb8\x3e\x7e\xf3\xfe\x34\x50\xe1\x36\x22\x22\xa7\x56\xc4\x93\xdb\x0f\xc9\xd2\x58\xe3\x72\x63\xfa\x19\xfc\x20\xf3\xd1\x1f\xf7\x0f\x51\xc0\x19\xe4\x54\x7b\x20\x1d\x1e\x62\x3a\xfc\x1e\x81\x8f\x6f\xf0\x03\xbf\xc9\xe7\x8f\x3f\x42\x5f\xfe\xf0\x4a\xfd\x40\x65\x00\x39\x8e\x5a\x6a\xd6\xff\xa7\x00\x8d\xdc\x7e\xab\x1a\xe8\xac\x4b\x6d\x17\xb3\xbd\x85\xd6\x96\x0d\xb0\xdf\x33\x46\x38\x79\x93\xaf\xb3\xb9\xb4\x2f\xd4\x0d\x06\x97\x60\xbb\x43\xaf\x9d\x7b\x52\xad\xd3\x91\x10\xeb\x71\x98\xc5\xa1\x3c\xe2\x51\x45\x40\x2a\x5b\x42\x1a\x33\x38\x45\xaf\xe8\x4d\x4a\xb3\x5b\x74\x94\x45\x69\x52\x70\x00\x3e\x1e\xd1\x68\xc5\xc8\x3d\xcd\xd7\x85\xfe\xac\xf5\x37\xbb\x7b\x25\xcc\x07\x83\xef\xe3\x38\xce\x23\xb1\xf3\x5e\x3f\xae\x88\x8a\x9b\xd2\x4c\xbf\x69\xce\xdd\xaa\x55\x4e\x2f\x42\x9b\x61\x66\x7a\x36\x28\x6d\xcb\x5c\x9f\x1c\x19\x21\xf3\xe2\xf4\x0b\x67\xc9\x89\xc8\x29\x86\x7b\xcb\xe7\x78\xef\xd0\xa9\x8b\x5d\x9a\xb5\x12\x50\x97\x44\xa2\xb6\x62\x15\x36\x2a\x6b\x76\x6f\x3d\x25\x07\x83\xe0\xfa\xcd\xc5\xdb\xdf\x83\x3d\xff\xcc\xd6\x95\xb6\xa8\x85\x01\x4c\x52\x8d\x81\x6b\x7c\xf1\x69\x76\xdb\x6c\x93\x92\xd2\xe0\xb6\x52\xe7\x07\x25\x9b\xdb\x0e\x8b\xbc\xd3\xef\xa5\x72\x05\xb9\x24\xcb\xdc\xb3\xff\xf3\xca\x63\xba\xa9\x9a\xf4\x32\x55\xdf\xd9\x4c\xd5\x77\x13\x05\x64\x1f\xab\xe3\x63\x09\x26\xf2\xee\xe9\x11\x48\x97\xf9\x00\xf5\x72\xf7\x90\x08\xc4\xe2\x09\x30\x43\x98\x46\x34\x2b\x08\xe3\x6f\x24\x7e\x1f\xc7\x39\xce\xdc\xf6\x35\xda\x60\xb7\x12\x94\xf0\x25\xce\xc4\x71\xf3\x81\x3c\xa8\x14\xea\x70\x47\x35\x76\x22\x07\xf1\xd4\xc4\x22\xf0\xde\x88\xd9\x68\x0f\x2d\xcc\xc6\x9a\x53\xe7\xf7\xfd\xd2\xfe\xf5\x40\x19\xd9\x07\x58\x4d\x6e\xbf\x36\x62\x7f\xf5\x6a\xc5\xf2\x5b\x96\x2c\xb7\xc4\xce\x6b\xb0\x2f\xaa\xea\x70\x6b\xa6\x63\x2b\xa8\xcb\xc2\xa6\xb0\x80\x59\x4c\x22\x3a\x97\x1e\x10\x84\x27\x80\xd8\x7a\x23\x36\x78\x9c\xc4\x6c\xb3\x09\x66\x29\x25\x19\xdf\x0f\x86\x7f\x1d\x0e\xd5\x26\xf1\x44\xe7\xa3\x04\x8b\xd4\x23\x8a\xe5\x60\xda\xf7\xee\x4c\x5b\x59\x33\x69\x8a\x6b\x21\x3f\x30\x4c\xd1\x88\x1a\x4e\x1a\x02\x2b\xfc\xeb\xd5\xc5\x87\x08\x74\xcd\x61\x8e\x10\x16\x5b\xe4\xdb\x90\x60\x59\x08\xd4\x64\xc4\x31\x23\x0b\xc2\x18\x61\xa3\xa2\x44\x65\xa9\x0c\x33\xd6\xb7\x0d\x3e\xa3\x32\x89\x6d\xe8\x1b\x13\x4b\xdf\x98\xff\xf8\xfd\x51\xbe\xff\xfd\xe8\x00\xe1\x22\xfe\xfe\x75\xf1\x43\x0e\x30\xb4\xc9\xb8\xd8\xff\xde\xd6\x3c\x16\x42\x24\x60\xf9\x83\x72\x65\x61\x24\x99\xdd\x25\x37\x29\x41\x61\x70\x2e\xa3\x92\xf6\x95\x3a\xe3\x9c\xf0\x64\x9e\xf0\xa4\xbf\xc8\x59\x3f\x18\x32\x8d\x30\x0a\x39\xe7\x74\xc6\x51\xe8\xf8\x47\x46\xf9\xaa\xf0\x40\x6c\xe3\x5c\x77\x5e\x32\xce\x27\xbd\xe2\x81\xf2\xd9\x5d\xc8\x40\xbb\x81\x9e\x66\x49\x41\x02\x9e\x07\xa3\xf5\x98\xa9\x50\x52\x64\x58\x48\x27\x90\x1e\x7c\xa4\xdf\x7f\x17\x8c\xe0\x49\x62\x15\xab\x1f\xd0\x8d\x76\x36\x27\x93\x8c\x21\x6b\x7f\x36\xd8\xe9\x32\x78\x6b\x58\x20\x3b\x7d\xc1\x99\x9b\xd8\x28\xba\x6a\x09\x65\x68\xa5\xfd\x5a\xfa\xe2\xc8\xcd\x01\x7b\x44\x8d\xfe\x3e\x08\x86\x2d\xa5\xc8\x31\x74\x8b\xf2\xa7\xf7\xa5\x04\xc4\x37\x2b\xe1\xde\x9e\xd3\x19\x2b\x46\x97\x94\xd3\x7b\xa7\x3f\x7c\xd7\x2a\xe4\xc7\x1f\xbf\xd7\x03\xf4\xbf\x06\x6a\x74\xfa\x07\x23\x7d\x43\x08\xe4\xfa\x87\x23\xfb\x86\xf8\x03\x28\x93\x42\x86\xe4\xc7\xef\x46\xcd\xeb\x63\xf3\xf1\xfb\x91\x1e\xfd\x1a\xe9\xbd\x43\x97\xf4\xde\x41\x8d\x1a\xf4\xa7\xa2\x21\x5f\x95\xf0\xeb\x9f\x61\x32\xf4\xff\x67\x4b\x95\xb4\x41\x6f\xcb\x8c\x47\x65\x19\x02\xc3\x63\x75\x96\x86\x81\xb7\xfb\x4a\xc7\x7a\x24\x4c\x2c\x1f\x7b\x58\x15\xff\x28\xc8\x35\x47\xd6\xfa\x58\x1b\xb0\x34\xf9\xfb\xe3\x3e\x9c\x82\x49\xc6\x1b\x19\x2f\xf8\x1d\x61\x61\x01\x00\xa8\x63\x58\x59\x10\x87\x6e\x3d\x31\x9b\xc4\x95\x2b\x42\xab\x9d\x02\xec\xf1\xf2\x5b\xb9\x7c\xfd\x03\x0c\x1a\x13\x7d\xfe\xb9\x56\xb1\x2d\xfe\xb9\x81\x54\x60\xc6\xc1\x10\x8e\x46\xd0\xf1\x22\x75\x1d\x2b\xb8\xc0\xa1\x51\xa7\x04\x61\x30\x64\xc3\x00\x05\xa2\x1e\x1f\xdf\x1f\x9f\x9c\xfe\x7c\xf1\xfe\xed\xe9\xe5\x54\xc6\xc0\x8e\x49\xf4\x1b\x13\xbc\xd2\x5c\xcb\xa0\x24\xfa\x98\x30\x21\x6b\xbe\x25\x0b\x08\xc0\x06\xa1\x99\xaf\xf8\x5c\xb6\xa0\x4a\x56\xff\x7d\x9a\xdc\x12\x56\x7f\xf9\x3e\xf9\xfb\x63\xfd\xdd\x09\x9c\x1b\x62\x00\x3e\xca\x43\xc7\x79\x27\xa5\x0a\xd5\xa5\x27\xea\x74\x8c\x49\x74\x7c\x53\x70\x96\xcc\xb8\xf5\x4a\x10\xb7\x7e\x9e\x83\x87\xbb\x48\x7a\x7d\x7d\x79\x35\x7d\xf3\xfe\xe2\xe4\x17\x5b\x14\x5e\xe3\xb4\xe7\xed\x83\xfd\x43\x1c\xa6\xf1\x7a\xb3\x09\xd7\xf1\x53\x89\xd0\x38\x8d\x2e\x56\x24\x33\x11\x99\x34\xbb\x72\x30\x89\x03\xdf\x87\x00\xa7\xe3\x34\x7a\x4b\xe7\x27\x8e\x74\x7b\x38\x89\x83\xfa\x4b\x93\x54\x4a\xf2\xef\x93\xc7\x7c\xcd\xe3\xef\x64\x4a\xfb\x9d\x4a\x08\x51\xae\x08\x8b\xbf\x17\x29\xd4\x8f\xc0\xf8\xf9\x5c\xac\x0a\xbc\x88\x83\x41\xc2\x39\x2b\xc4\x91\x6c\xb7\x7c\x01\xc9\x20\xd0\xed\x7f\x8d\x1e\xeb\x40\x4a\x94\xf9\x62\x51\x10\xae\xb5\xfa\x10\x47\xcd\x39\x8d\x14\xe3\xb8\xce\x66\x45\x3c\x9e\x74\xd7\x32\x1a\xbd\x10\x64\x55\xb8\xd0\xc8\x2a\xc5\xa8\xf3\x64\x02\xad\x84\x2f\x15\xce\x03\x4d\x5b\x96\xdb\xd8\xaa\xf6\x44\x01\xda\x2a\x8a\x4c\xe2\xed\x18\xa2\xe3\x6c\x82\xb4\xb6\xa5\x0c\x91\x1d\x22\xd8\x42\x68\xca\x62\x32\x3e\x9c\x08\xd6\x66\xfc\xdd\x44\x30\x36\xe3\xef\x27\x3d\x16\x91\x2f\x2b\x16\x52\x84\xf3\x23\xe9\x2c\x06\x53\x46\xb0\x9d\x61\x86\x73\xcc\xd1\xa8\xf9\x1a\xb8\x58\x3b\xc4\xe4\xfd\x33\xcb\x99\x3f\x66\xc9\x92\xce\xdc\x52\xdc\x97\xba\x0c\xb3\x60\x6a\x3a\x04\xd2\x7c\xf1\xc2\x09\x22\xf8\xa0\x47\xfc\xe2\xf0\x36\x22\xfb\x6d\x65\x53\x90\xcc\xe7\x61\x40\x17\x81\xd7\x20\x9c\x2e\xc2\x3d\xb2\xd9\x1c\x02\x18\x99\xd1\x3b\xd7\x54\xff\x57\xbf\x7f\xb8\x3e\xfe\xf7\xfe\xe9\xe5\xe5\xc5\xe5\xa8\xff\x3f\xe8\xa2\xcf\xc8\xdf\xd6\x94\x91\xa2\x9f\xf4\x65\x1c\xc6\xbe\xae\x81\x90\xfa\xa5\x19\xc3\xa3\xd8\x95\xce\x16\xe1\x53\xc2\x6e\x0b\xaf\x2f\x0b\x0c\x00\x19\x1f\x4c\x84\x04\xc1\x73\x8d\x90\x83\xf0\x61\x89\xe9\xe2\x9a\xb9\xf7\x89\x42\xc8\xb8\xcf\x3f\x93\x2b\x9e\x70\x3a\x83\xed\x2e\x64\x42\x40\x5a\xbc\x4b\xd2\xc2\x49\x9a\x0d\x06\xbe\xd4\x19\x52\x30\x72\xb2\x4f\xd6\x59\x4a\x8a\xe2\xdb\xf5\x8b\xa4\xf7\x7f\xa5\x6f\xda\x1b\xec\xeb\x9e\x96\x9e\xb4\xfb\xe6\x81\x3a\x98\x4e\x5f\xd9\x33\x10\xf3\xe8\xbf\xa0\x5f\xe6\xeb\x55\x58\xef\x9f\xef\x3a\xcf\x1d\x7c\xf8\x35\xb3\x47\x30\x5e\x9e\x1e\xca\xd1\x53\x6e\xb5\xa5\xb5\x25\x7c\x30\x08\x3e\x93\x47\xd0\x41\x8c\x0f\x26\x62\x0f\xc8\x65\xe3\xf8\xf8\x50\xfc\x44\xa3\x1c\xf6\xee\x8f\x9a\xdf\xbd\x14\x22\x16\xc9\x66\x3a\x90\x6c\x6e\xf7\xc5\x77\x25\xbe\xc9\xe7\x4e\xf8\x30\x91\x9d\x9f\x71\x02\xd8\x72\xa1\x48\xff\xd7\xf5\x72\xf5\x09\x26\x69\x18\x9c\xbe\xbf\x3a\x0d\xc4\x4b\x51\x06\x58\xa5\x42\x12\xd1\xa3\x15\x83\x18\x2d\x56\xf8\x50\xbc\x96\x95\xbe\xce\xc3\xe0\xec\xfa\xf4\x12\xf2\x91\x8c\x13\xf6\x9e\x16\x3c\x0c\x40\x7f\x22\xde\xa5\x42\xca\xb6\xd2\x50\x28\x9d\x84\xc1\x9b\xcb\xd3\xe3\x5f\xec\x24\x26\x8b\x6f\x5c\xbe\x83\x7a\xe5\xab\xf0\x3b\x5d\xeb\x30\x78\x77\xf6\xe1\xf8\xfd\x7b\xa7\x98\x8a\x28\xf9\x42\x39\x54\x45\x65\xac\xda\xd3\x9a\x59\xb5\x3f\x1b\x0c\x7c\x75\xa8\x8d\x35\xcd\xf6\x89\xe6\x43\xbe\xd9\x2e\x6a\x68\x7e\xdd\xca\xa8\xae\xce\x2d\x67\x56\x5f\xe8\x08\x0b\x1c\x4f\x5e\x9c\x57\xca\xc7\x40\x9c\x27\x83\x41\x70\xbb\xa6\x73\x78\x7e\x4e\xed\xe7\x39\x91\x41\xce\x78\xf2\x99\xf4\x93\xfe\x7f\x06\x43\x36\x3e\x98\x0c\x83\xff\xec\x4b\xf9\x12\x1a\x01\x73\x35\x1b\xe7\x13\x83\xbe\xe7\x5d\xcb\xff\xec\x5f\xbd\x0d\xf5\x51\x28\x95\x4e\xcd\x5d\x0c\x03\xc2\x43\x2d\xad\x33\x98\xfb\x62\x37\xda\x57\x67\xfb\xfe\x7d\xc2\xda\x8f\x00\xae\xdd\x0d\xa1\x6b\x13\xe9\x27\x4c\x35\x97\xf4\x31\x61\xc9\xb2\x08\x13\x0d\xd7\xf2\x56\x92\xbc\x9a\xe5\x2b\x02\xf5\xbb\xa1\xd9\xdc\x79\x99\x6f\xaf\xb5\x4b\x40\x3a\x77\xb7\xec\xd5\xa6\x35\x56\xe4\xa7\x96\x46\x68\x93\x3f\xe3\x56\x28\x7a\x7c\xb3\xd9\xa3\x51\x01\x34\x0d\x57\xfe\x33\x49\x57\x44\x0e\x08\xf0\x4e\x06\xec\x48\x36\x5e\xbb\x3a\x1f\x8a\xe1\x54\xdd\x67\xf2\x86\xb9\xe4\x8f\x12\xcc\xf1\xde\x81\x54\xe8\x95\x08\xf3\x9d\x95\x34\x37\x07\x83\x81\xe8\xe4\x9e\x55\xe1\x0a\xe5\x60\x30\xc8\x5a\x2a\x4b\x05\x0d\x50\xa7\x1a\x59\xdb\x1d\xb1\xaa\xd2\x95\xc7\x6f\x6b\xdd\x99\xa8\x3b\x3c\xcb\x2d\x16\x4c\xf7\x9f\x40\x39\x53\x8c\x08\xa6\x59\x4a\x33\x52\x8c\x78\x59\x0a\xf6\x5c\x2b\xe2\x0a\xa9\xa3\x93\x1f\x95\x7d\x03\xbc\xd7\xa6\x0d\xea\x53\xcc\xa4\x3d\xd1\xe3\x76\x1b\x83\xff\x1e\x92\x40\x32\x9f\x2b\x0d\x5a\xd3\x28\x60\xa9\x3e\x90\x36\x91\x41\xab\x3f\x8d\x9b\xbb\x5d\x62\x05\x10\x9b\x1c\x69\xa1\x41\x51\x44\x4e\xe6\x91\x2b\x52\x24\x13\x14\x56\x1f\xa5\x60\x81\x6f\xff\x3f\xdf\x97\xee\x8d\x12\x81\x1d\x68\x51\xb7\x4d\xce\xf5\xfc\x07\x65\x38\x0b\xb0\xdc\xe3\xf3\xf1\xc1\x24\x8e\xe3\x59\x24\x57\x0b\x62\x71\x2e\x0e\x87\x2c\xce\x85\x20\x44\xe3\x5c\x08\x42\x60\x5a\xa2\x12\xef\x89\xc4\x9f\xb2\xcf\x59\xfe\x90\x35\x29\x9a\xec\x14\x9c\xd6\xca\xc6\xe0\x4a\x93\xac\x6a\x7c\xd5\xc5\x93\x1e\x5d\xa5\x39\x6d\x0c\xba\x6c\x9c\x01\x58\x01\xa8\x9c\xe2\xa8\x2a\x78\x54\x94\x36\x6a\xb2\x42\x09\x59\xc7\xcd\xf9\xe1\xa3\xb4\xb6\x29\xad\xcb\x7a\xab\x94\x84\x2a\x28\xde\xb4\xd9\xe1\x99\xc1\x9f\x19\xad\x89\x2c\x39\x95\x7a\x08\x8e\xed\xaf\x73\xd9\x3b\x46\x00\xb3\x6e\xab\xea\xe3\x6b\x3c\xc0\xf5\xed\x93\x26\x81\xec\x6b\x7d\xfd\xb2\xe7\x96\xb2\x7f\x68\xc7\x0e\x96\x55\x91\x3b\x0f\x6c\x96\x70\xf6\xb9\xe1\x78\x4d\x56\xa7\x31\x12\x74\xcc\x6e\x90\x04\x29\x66\xea\x22\x48\xb9\x2a\x11\x3c\x7e\xfa\x4c\x1e\x47\x4a\x73\x7d\x0d\x6a\xc2\x36\x9f\x98\x7a\x8d\xca\x72\x82\xb4\x99\x48\x53\x8f\x75\x03\x0d\x99\x3e\xbb\xfb\xe1\x56\x62\xfe\xdf\xa2\xfb\x65\x55\xaa\x43\xc1\x1a\x02\x38\x1e\x54\x34\x5c\x9a\xdd\x4a\x3d\x55\xd7\x71\x91\x96\x18\xdf\x60\x34\x64\x05\xeb\xa3\x61\x9b\xec\xd7\x6f\x68\xdc\x6e\x32\x01\xc3\xee\x54\xb3\xa5\x87\xce\xaa\x27\x19\x91\x59\x74\x4d\xbe\xf0\x9a\x7f\x03\x8f\x38\xf9\xc2\x43\xb1\x69\x55\x2c\xcb\x2c\x52\x17\xd0\x8d\xc4\x33\x75\x31\xdd\x48\x6f\x5d\xf2\x36\x33\x59\x1f\x43\x3b\xd7\x3b\xeb\xca\xb5\x91\xcb\xb9\x8f\xb5\x73\xe9\x78\x57\xff\x0f\x7b\x7f\xd6\xde\xb6\x6e\x2d\x8c\xe3\xf7\xfa\x14\xb6\xfe\x3d\x7a\xc8\x63\x58\x95\x3c\x64\x90\x83\xf8\x78\x27\xce\xae\xdb\xc4\xd9\x8d\x9d\xdd\xd3\xaa\x7a\x72\x68\x09\xb2\xb8\x23\x91\x2a\x08\x39\xf1\x8e\xf5\x7e\xf6\xff\x83\x85\x85\x89\x04\x29\x65\xe8\xfb\x9e\x8b\xdf\x45\x1c\x91\xc4\xb8\x00\x2c\xac\x79\x05\x3d\x35\x44\x57\xeb\xb9\x48\x48\xa6\x04\xf4\x86\x59\x3d\xd4\xd0\xe8\x06\xa3\x8c\x70\xb0\x88\x40\x03\x80\x00\x8d\x8d\x32\x59\xf5\xa8\xac\x51\x75\x02\xe1\x64\x47\x27\xca\x1a\xec\x28\x64\x5e\xec\x2c\x92\x7b\xf8\x76\xc3\x76\x56\x05\x03\x4b\x4c\xc8\x44\x8c\x74\xf9\x34\xe7\x0b\x30\xb8\x34\x39\xb6\xa2\x44\x5d\x9d\x76\xb6\x8a\xaa\x3c\x13\x22\x3c\x5f\xa6\xd0\x3d\x53\xb7\x05\x88\xcd\x04\x12\x62\x20\x14\xe3\x24\x85\xb0\x50\xa6\xbd\x97\x56\x62\x56\x6e\x30\x62\x64\xb7\x0f\x61\xf9\xdc\x7d\x60\xa5\x78\xa5\xf2\x8b\x40\xf9\x6b\xbe\x2a\x20\x58\x6d\x4d\xf3\xbd\x70\xf1\x8d\xdd\x94\xea\xbd\xb5\xba\xf8\x5a\xa8\xb4\x24\x4c\x1e\x1e\x84\xe4\xb1\x4d\xfb\x60\x59\x2c\x4b\x43\xae\x70\xd0\xe9\x1b\xee\x5d\xef\x35\x1e\x00\x97\x69\xa0\x7e\x11\xca\xfb\x8c\x0d\x8f\x46\xa4\xa0\xc2\x28\x90\x25\x1b\xb2\x52\xbe\xe4\xa9\x23\x6d\x8c\x56\x60\x93\x23\xe9\x4f\xc5\x3b\x7c\xb1\x78\x69\x90\x92\xa5\x64\x61\x98\x60\xbc\x18\x64\xdd\xf3\x37\xbf\x5c\xff\xfd\xc3\xd9\xbb\x77\x67\x7f\x5f\xc7\x72\x02\x15\x42\x99\x93\x95\x22\x8f\x73\xb9\x36\x85\xa2\x92\x43\x0b\xfa\x0d\x13\x31\x27\x6b\x15\x38\x44\x0a\x67\xbe\xca\xf9\x75\x72\x1b\x71\x52\xc4\x64\x4e\x57\x5d\xa5\x17\x25\x63\xba\xea\x62\xea\xb9\x54\xa4\xac\x20\x53\xf9\xc2\x5c\x32\xce\x99\x9b\x3f\x3c\xe0\xaf\xf1\x86\xd3\x37\xd8\x79\x91\x64\xf2\x70\x4d\xd3\x6c\xb2\x63\xf8\x17\xab\x39\x9e\x05\x60\x3d\xfb\x56\x58\x63\xa0\x30\x6f\x35\x5b\xd3\xd3\x48\x45\x49\x30\x50\xb5\x9a\xa5\x68\x0e\x79\x8a\x1d\xce\xd0\x2e\xd2\x98\x4c\xc9\xcc\x59\xa6\x49\xa7\x33\x89\xe3\xc1\x76\x8d\xb9\xcd\x54\x1b\x71\x96\x1a\x95\x5d\x5b\xa0\x0d\xbb\xb4\x2d\xb1\x9d\x94\x4f\x28\xc9\x00\x87\x3d\x08\x62\x81\xa0\x50\x4f\x8f\x19\x87\x12\xa5\x44\x74\xd9\x5d\x32\xbf\x82\x1b\x51\x9e\xc1\x4c\xb6\xb0\xcc\x97\x9a\x25\x17\x8e\x70\xc8\x95\x09\x8c\xbb\x7f\x4f\xd9\x7c\xb2\x69\x32\x2d\xd1\xbd\x97\xe5\x20\x96\xb5\x53\x59\xe2\x95\x2b\xb9\x6e\xf5\xe8\xc2\xd6\x1c\x7a\x57\x9b\xd6\x4d\x35\xd5\x9c\x60\x99\xa8\x3c\x3d\xee\x5f\x92\x29\xcb\xc4\x55\x3a\x81\x0d\x51\xc1\x5e\x1c\x2f\x58\xb9\xc5\xe1\xd1\x1d\x3f\xd8\x7c\x6d\x9c\xfd\xae\x24\xbe\x23\xd3\xca\x05\xec\x74\xf0\xfe\xe3\x71\xa7\x23\xba\xb7\xab\x84\x4f\xd8\x44\xb5\x56\x86\x11\x9c\x88\x2d\x2f\x19\xc0\x0e\x47\x0a\x3b\x1c\x97\xd0\x5c\x1e\x03\x82\x70\xd1\xde\x9c\x16\x9d\x4e\x21\xd1\x40\xa7\xb3\x6a\x99\xf1\x69\x69\xa2\xe4\x08\xe6\x36\x1e\x9f\x72\x6b\x5b\x3a\x12\x01\x25\xa4\x58\x05\x75\x97\x15\xc2\xe1\x6b\xf1\xbd\x9c\x56\x6c\x24\x21\xab\x8a\xb6\xb3\xd2\xc1\xa4\x54\xc0\x15\xc7\x16\x3d\xaf\xa9\xca\xde\x89\xbf\xf8\x3d\xb9\x8a\xd1\x50\x47\xee\xf7\x6a\x3f\xc0\x60\x27\xb4\x77\x92\x3c\xd3\x52\xcd\x93\x64\x6f\x2f\xce\xed\x3e\x1a\x26\x23\x27\x30\xa6\xa2\xe0\x52\x49\x50\x55\x35\xd3\x1f\x00\xfa\xe7\xf5\x34\x3e\x6c\x51\xe0\x0b\x93\x34\x33\xce\x4e\x78\x87\xff\xec\xee\x2d\x43\xf0\x27\x2b\x91\xe6\xab\xc2\xff\xc8\x2d\xe9\x5f\x21\xf8\x83\x36\xfd\x85\x98\x44\xb5\x21\xb0\x21\xa4\x11\xf2\xf9\x0d\x05\x0b\xa1\xf7\xfd\x6e\xef\x2b\xcb\xf7\xe3\xb5\x0a\x3c\x51\x88\xb2\xc0\x41\xbb\xd0\x75\x6f\x56\xe9\x7c\x62\xcc\xd7\x2d\x47\x73\xcb\x04\xce\x3a\xd4\xcb\x69\x3d\x08\x07\xf5\x00\x44\xc9\xca\xe7\xad\x56\x4a\x59\x0e\x20\x37\x86\xdc\x1c\xae\x0e\x5e\xdd\x9c\x72\x2d\x05\x03\x53\xfc\xf4\x77\x89\x7c\x1b\xe4\x2e\xb6\x5c\xc5\x3d\xa1\x10\x93\xd7\xe9\x0d\x3d\x37\x1b\x10\x8d\x3d\x4b\x38\x29\x0c\x45\x67\xc4\x5a\x22\xe7\x20\x44\xe1\x36\x53\xb2\xd0\xf6\x24\x5a\x6e\x33\x4a\xcc\xe7\xb6\xe2\xc8\xa7\x42\x12\x24\xe3\xc0\xcb\xb4\xd3\x13\x18\x77\xbc\xca\xb9\xf6\x27\x51\x27\xa8\x26\x5f\x3b\xba\x0b\x21\xa0\xbb\x33\x96\x2c\x49\x46\x79\x77\x91\xcc\xe7\xf9\x38\xd2\x81\x09\x44\x20\x60\x9e\x18\xa6\xc1\x8c\xc8\xf9\xa9\x72\x71\xfb\x65\x9e\x8c\xd9\x2c\x97\xa3\x89\xf2\x78\x80\x7e\x6f\xb9\x91\xd6\xf3\xae\x24\x17\x8a\xd9\x1b\xd5\x55\x46\x58\x4c\x32\x74\x24\x29\x53\x68\x41\xf3\x01\x6f\x4f\x74\xe7\x79\xfe\x71\xb5\x0c\x11\x23\x6e\xa4\x5d\x24\xd6\xf8\xe9\x17\x45\xea\x29\x6b\x55\x97\xd6\xc3\x37\x06\xd7\xc0\xf3\x7a\xe0\x76\x66\x46\x86\xb6\x72\x3c\x0e\x0d\x5b\x7d\xac\x73\xd6\xd2\xe3\x26\x5c\x19\x35\xbd\x70\x86\xa0\xe2\xeb\x00\x35\x68\x60\x85\x94\xb3\x6a\xfd\xe1\x21\xca\x54\x35\xc4\xb4\x2c\x8e\x89\x9e\x11\xf3\xa7\xc3\xbd\xb9\xac\x9d\x91\x6a\x3e\xb2\x61\x73\x97\xa0\x6b\x38\x4f\xbd\xbb\xb5\xcd\x20\xf0\x8f\xdb\xb7\xa3\xf5\x02\x64\x83\x5c\x48\x9b\x80\x15\xcd\x72\x08\xdc\xbc\xa6\xb4\x2b\x1a\xaa\x18\x2b\x7d\x26\x65\x8b\x26\xc7\x30\xe9\xea\x47\xca\xeb\x5a\x9a\xc5\x57\xc6\xb5\xf2\x58\x29\xd1\x4a\xa1\x1d\xc5\x48\x4a\x33\xe3\xdf\x30\x45\x4f\x46\x30\x21\x02\x7c\xa1\x0c\xf5\xa8\x0a\x81\x7d\x8a\xf9\xaa\xa6\xf1\x20\xdd\xeb\xe3\x75\x60\x25\x35\xf4\xcb\x2c\x29\xce\xef\x92\xf9\x80\x77\xf1\x17\xc1\xde\xe4\xaa\xff\x1b\x64\x57\x8e\xa8\x4a\x03\x85\x08\x57\x72\x08\x52\x2a\x0f\x1f\xb5\xb8\xe4\xf5\xb9\x78\x9d\xdc\x30\x45\x6f\x76\xa7\x0c\xf2\xe5\x3b\x94\x42\x3f\x56\xf1\x68\xcd\x51\xbe\x56\x76\xf3\x25\x72\x82\xf0\xee\xb2\xaa\xc8\x96\xaf\x15\x81\x2f\xf7\x5a\x32\xa9\xb6\xec\xaa\xac\x51\x67\x5c\x3b\x8a\x5a\xd2\x8c\x03\x69\x86\xcc\xb6\x55\x20\xf2\x4d\xb4\x16\xe1\x48\xb5\x07\x57\x5a\x52\xf2\x72\x30\x9e\x24\x49\x4e\xc4\xd3\x70\xf3\x80\xfe\x2e\x78\xf2\x24\x41\xf2\x21\x12\xa8\x6e\x1a\xb8\xbc\x63\x40\xa4\x58\xcb\x4c\x92\xb2\xa0\x71\xc0\xd6\xf1\x1a\x82\xe3\x37\x80\xce\xb3\x0c\xb8\x7c\xa9\x52\xb1\x78\x82\x35\x3b\x31\xfd\x3d\xbc\x60\x85\xc8\x97\x7a\xc3\xa0\x2a\x8e\x1b\xb2\x30\x2c\xf4\xcc\x8d\x03\x61\xc9\xa4\xf2\x0a\x1a\x78\xbb\xd1\x3b\x1e\x0d\x24\x43\xc7\x46\x09\xab\xc2\x17\x92\xa3\x2e\x4f\xa9\x50\x52\x09\x81\x62\x3c\xa7\xe1\x96\x3d\x67\xcc\x18\x7f\xd7\x4b\x28\xf0\x96\x61\x92\x4f\x29\x7c\xb9\xc4\x9c\x16\xae\x5c\x62\x7e\x1a\x25\xb5\x3c\x39\x8b\x49\x52\xc3\xe0\xaf\x88\xd2\x4f\x02\xad\xb1\xdb\x07\x72\x23\x1e\x6c\xd7\x96\xdb\x4a\xa5\x8d\x35\x92\x7e\x67\xcd\x4a\x35\xd8\x07\x21\xad\x9a\x80\x88\x7d\x9b\xf4\x6a\x50\x3d\xa4\x59\x53\xed\x1a\x57\x56\xd5\x5a\xa8\x20\xf6\xa3\x30\xec\x97\x44\x0c\x18\x51\xaf\x06\x62\x1d\x87\x7c\xf1\xdd\x80\x51\x6e\x0b\xda\xff\x5a\xf5\x8c\x51\xf2\x0c\xf5\xe4\x64\xf1\x13\xc3\x6c\x04\xae\x31\x89\x20\x09\xe5\xc3\x14\x5b\x18\xed\xe7\x2d\xa6\xba\x83\x0c\xfc\x1a\x82\x1f\xeb\xf7\xac\x1a\xc5\x37\x9a\xf6\xa1\xe9\xa8\x0a\x43\xa0\x80\x8e\x3e\x29\xc0\xd5\x26\x01\x7f\xf9\x48\xa2\x29\x67\x96\xca\x49\x57\x85\x4e\x82\xdf\xa4\x74\x53\xae\xf1\x1a\x08\x7a\x19\x21\xdb\x64\xd3\x1b\x45\x59\xac\xa2\x95\x2b\xbe\xaf\xd5\xb0\xf0\x72\xb9\xbc\x45\x41\xfb\xf9\x32\x2c\xd0\x9c\xde\x5a\xe6\x3b\xd3\xc4\xff\x23\x46\x7a\x15\x1b\xfd\x70\x31\xe2\x02\x30\xf6\xcd\xee\xb7\xaa\x43\x5c\x7f\x29\x6b\x85\xff\xad\x2d\x38\x0f\x87\xa3\x18\x28\x3c\x09\x98\x37\xc9\x78\x96\x96\x32\x21\x7e\x17\x7c\xfa\xbd\x83\xa3\xed\x40\x24\x4b\x7e\x03\x94\x2a\xd5\xbe\x05\x50\xcd\x8d\x04\x60\x55\xe6\x8f\x4a\xc4\xa5\x85\x64\x74\x70\x14\xfb\x5b\x5b\xef\x52\x73\x84\xbc\x03\x84\x01\x28\x34\xa1\xcc\xf8\x1d\xab\x6a\xeb\x03\x0b\xbd\xdf\x77\xab\xfc\x2d\x15\x33\x0c\x30\x12\xc2\x5c\xc1\xfa\x96\x3a\x97\x2d\x84\x36\x42\x03\xec\xb0\x7b\x90\x99\x94\xd9\x65\xc0\x8f\x8f\x9e\x90\x12\x55\x83\xdc\x38\x88\x4e\x39\x5b\x26\x9c\x4d\xec\xb5\xb0\xdb\x97\xd7\xc1\x6e\x4f\x31\xb0\x01\x9f\x61\xb7\xed\x83\x27\x4e\xb1\xab\x64\xca\x1a\x8a\x3e\x75\x8a\xbe\x44\x3f\xf5\x57\x3c\xb9\x2d\x3b\x93\xda\x2a\x87\xee\x20\x2e\x3d\x2f\x10\xaf\x58\xdf\x29\x76\x5d\x0a\x5b\xec\x14\x3b\x80\x62\x10\xa5\xda\x12\xab\x3c\xc9\x0a\xcc\x22\x1c\xac\xf5\xb4\xef\x70\xe5\x5f\x51\x4d\x75\x56\xb6\x0a\x0b\x17\x3e\x3a\x52\x85\x7d\x03\xb0\x9a\xb2\xc7\xa6\xe1\x1a\x97\x50\xaf\x74\x5f\xb7\xbc\x4d\x61\x3b\xe6\x77\x79\x2e\x4a\x83\xb0\x7b\x58\x2d\x67\x8f\x30\x22\x4e\xfb\x83\x9e\xa9\xf4\x6b\xca\xc5\x2a\x99\x87\xea\x7a\x35\xfb\x84\x99\x3a\xe0\xed\xdc\x30\xdd\x83\x03\x3d\x81\xa6\x42\x87\xaa\x90\xda\xcb\x67\xbc\x1c\x0e\xca\x14\x7c\xfc\x14\xbb\x46\xfe\x55\x2f\x67\x90\x3c\xec\x3d\x88\x96\xad\xfa\xa4\x4f\x38\x56\xd6\x3e\x55\x0e\xa5\xa5\x73\x71\xd7\xf4\xfb\xe4\xc0\x4c\x39\xc4\xa1\x84\x67\xf5\x44\xcd\xca\x65\xad\xae\xd8\x7c\x5a\xd7\xc5\x11\x76\x11\x60\xc5\xea\xaa\x1c\x07\xaa\xa0\x63\x4d\x4d\x8d\x47\x58\x03\x02\x56\xbc\xca\xb9\xe4\x5b\xeb\xca\x3e\xc6\xb2\x25\xba\xb3\xb1\x83\xa7\x3d\xac\x54\x66\xcc\xea\xca\x1f\xda\xf2\x9e\x63\x50\x4d\xf1\x23\x67\xeb\x81\x1a\x28\x08\x7a\x7d\x81\x1c\x3f\xd6\x9b\x6f\x8b\xb2\x4f\x4c\xc3\x57\x8b\x64\x3e\xdf\xa2\xc6\x53\xb3\xb5\xb7\xab\xf0\xa8\xe7\xc0\x13\x0f\x5b\x63\x85\xa3\xa7\x4e\x05\x50\x70\x85\x77\xda\xb1\xc2\x12\xc6\x88\xbe\xe6\x1e\x39\x74\x5a\xab\xdc\x1b\x15\xf7\xbd\x1a\xa7\xf4\xc3\x20\x99\x7b\xe8\x92\xb9\x87\xca\x29\x1d\x0d\x29\xeb\xd0\xb5\xe6\x39\x02\x86\xb7\xea\xd2\xf7\x8f\xb8\xcf\xd9\x83\xf0\xb2\xd3\x31\x8d\x34\x1c\xe9\xb2\x48\x00\xca\x97\x0f\x65\xb0\x50\x08\x27\x06\x0b\x16\x4c\xfc\x9a\xf0\x14\xdc\x05\x9c\x77\xe6\x84\x55\xa4\x12\x68\x56\x57\x30\x21\x8f\xf7\x44\x57\x2e\x2a\xad\xdb\x82\x20\x78\xa8\x16\x80\x71\xe6\xcb\xc8\x23\x0a\x4a\x67\x35\x58\xa9\x59\x79\x64\x1a\xd6\x86\xf8\xfa\xd9\x5b\xa2\x8a\xc5\xb3\x21\xd7\x6a\xee\xda\xa8\x51\xd4\xef\x53\x82\x2e\xd1\xe7\x6a\x2b\x49\x59\x65\x50\x27\xeb\x2f\x49\x10\x7d\xad\xa2\x95\xf4\x9b\xe6\xca\x6c\xad\xc7\xd4\xa2\xec\x84\xd9\xe0\x59\xbf\xe4\xaa\x9a\x23\x61\xab\x9c\x3b\x87\x61\xc3\x30\x74\xec\xd3\xce\x19\x56\xd3\x62\x96\xe6\x5a\x90\xec\x50\xf1\xa7\x2e\x11\x69\x2f\xe0\x15\xe7\x69\xf0\x1c\x7b\x17\xe7\x51\x99\x9c\x31\x15\x2e\x40\x8a\x3b\xae\xb9\x9a\x1f\x2b\xa4\x51\x15\xbf\xd5\xd0\x68\xaa\x1f\x57\xa4\x56\x53\x50\xa1\xdb\xba\x80\x24\x4e\xc1\xa7\xfa\xe2\xd5\x9e\x30\x35\xd8\xed\x11\x94\x33\x4e\x2d\xd5\x85\x44\xf2\x3c\x7a\x74\xe4\xb1\xd3\x28\x08\x88\x70\x47\x17\x78\xc3\x68\x8f\x94\x9a\xde\x14\x15\x87\xee\x31\x0d\x7d\x3d\xde\xa6\xaf\x0a\x1e\xa8\xa3\xbc\x6c\x79\x85\x0e\x6a\xca\x1d\xda\x72\xba\xc9\x9a\x92\x47\xa5\x16\x6b\x8a\x39\x84\xc6\x86\x06\x1f\xd9\x92\x4d\x0d\x3e\x21\x26\x39\x4f\x53\x31\x43\xee\x41\x0e\x80\x9a\x42\x7d\x4d\x8f\xce\xf3\x64\x52\x57\x46\x77\x08\xe2\xd3\xba\x42\xba\xbb\xc9\x6a\xf9\xc3\x5c\x41\x5d\xbc\xba\xfc\x76\x97\xd0\x5e\xab\xcc\x25\x47\xfd\x47\x44\xeb\x85\x96\xf9\x8f\x1b\x70\x3f\xd0\xd3\x63\x43\x39\x2b\x2f\xb2\xda\x0d\x6f\x58\xf7\xe3\x6d\xf6\x7d\x55\xa1\x10\x3e\x6d\xfd\x23\xec\x3d\x9d\xde\xbf\x3f\x3c\xa8\x29\x74\x6c\x11\x40\xdd\xe6\xec\x3b\x87\xbb\xe6\x60\x1f\x38\x13\x6d\x24\xce\x0e\xd4\xa0\x7e\x5b\x2d\x02\x51\x17\x4b\xe0\x38\x3e\xd8\x06\x1c\xb2\xa9\x8b\x00\x7f\xa0\x91\xc9\xf1\xe1\xb6\xad\x28\x4d\x40\x43\x4b\x5b\xa1\x40\xd9\xd2\xf9\xbf\x42\x1c\x64\x55\x56\x12\x1d\x4b\x1c\xd1\xd8\xa8\xda\xaa\x49\x51\x30\x2e\xae\xea\x68\xe5\xe8\xf8\x91\xb9\xa9\xce\x17\x4b\x71\xef\x73\x83\xde\xd5\xa4\xa8\x7b\x25\x63\xab\xd5\x58\x93\x8c\x0e\x47\x24\xa5\xbd\x96\x28\xa9\x6d\x50\xc1\xf7\x65\x21\x2f\x57\x50\xe3\xce\xe7\x37\x09\x04\xc3\x81\x19\x0c\xda\x2f\x5e\x9f\xbd\xbf\x3a\x6f\xef\xa5\x7b\x7b\x6b\x63\x13\x02\x1b\x2c\xd2\x0b\x6a\xa7\x63\x49\x51\xb5\x4b\x23\x63\x43\xe2\x6a\xe0\x32\xd4\x45\x82\xd8\xa9\x21\x2d\xe9\x0e\x47\xf0\x47\xac\x0b\x03\x84\xe4\x56\x37\x6c\x0e\xe1\xee\x8d\x85\x77\x66\xdc\x54\x4e\xf2\xe7\xb4\x77\x92\xef\xef\x6b\x97\x9d\x6c\x98\x63\xb8\x4d\x45\xba\x24\x58\xdf\xd2\x8c\x07\x31\x49\xba\x7a\xd6\x51\x4c\x24\x5e\xc8\x91\xe2\x54\x6e\x97\xa0\x29\x5a\x3b\x8d\xa0\xee\x08\x27\x66\x15\x45\x08\x9a\xcf\x20\x42\x06\xea\x66\x12\x30\x6b\xb1\xf2\x7b\x94\x82\x2b\xf1\x28\x92\x69\x99\x90\xc4\xe2\x3d\xd0\x91\xa6\x16\x8f\xbf\xf0\xa8\xef\x1a\x48\xb1\xd3\x48\x94\xc0\xee\x88\xb9\xa2\x38\x1e\xb8\xa2\x24\xb0\xfd\xe1\x51\xcf\x6d\x21\x4c\x38\x29\xeb\xc2\x06\x02\x29\xb2\x46\x96\x3f\x25\xdc\xe1\x4c\x54\x17\x87\x7e\x17\xc1\x11\x6a\x09\x1b\x56\x39\xda\xa2\x4a\x59\xd2\x86\x55\x8f\xb7\xa8\x7a\x99\x4f\x30\x01\x03\xde\x11\x10\xe3\xb7\x59\x40\xf0\xd4\x63\xfa\xbd\x79\x56\x6f\x18\xbb\x92\x55\xad\xa4\xe1\x33\x7c\x7f\xe4\x02\xfc\x91\xd5\x8e\x2a\xab\x1f\x5d\xbe\xcb\xe7\x3b\x5c\x64\x60\x5e\x5a\x69\x51\xb0\x95\x4d\xf2\x51\x6f\x4f\x05\x44\x28\xe5\x46\x59\x09\x82\x01\xb3\xbe\x9a\x59\x01\x3c\x8b\x0d\x14\xfa\xa3\xa7\x9a\xd2\xd1\xc7\xa0\x06\xeb\x59\x79\x1d\x50\x4e\x4d\xa2\xc6\xc7\xcd\xe6\x1e\xcb\xbc\xd9\xd0\x43\xcb\xab\x31\xf0\xf7\x7a\x4d\x54\x3d\xe4\x7e\xb6\xaa\x5b\xa4\xbf\x33\x53\x51\x5d\x0c\x1b\x5c\x8e\x2c\xef\x33\x56\x99\x0d\x5d\xf3\x92\x4a\x34\x9e\x8f\xa0\xaf\xba\xf6\x55\x85\x5a\x5d\x27\x22\x61\xfc\x53\x75\xc0\xd2\x94\x7a\x51\x5f\x49\x76\x9a\x69\xe5\x3c\x1a\x8b\x28\x8c\x3a\xe8\x99\x10\xa6\x65\x85\x3c\xcd\x48\x6a\x03\x98\x80\x46\xed\xad\xca\xf2\xab\x8e\xe1\xf5\x2c\x2d\x2e\x8c\x0d\xdc\x24\x8e\xd2\x38\x26\xca\x59\x9a\x15\x45\x9a\x67\xc6\x14\xc6\xb7\x05\x31\x86\x1f\xda\xd8\x63\x82\x0e\x3a\x5e\x24\x10\xe3\xde\x57\xe3\xe0\x62\x8c\x43\x32\xd7\x26\x3f\xa5\xa2\x32\x8f\x6e\x52\x68\x23\x70\xe5\x97\x48\x12\xca\x7d\x1b\xa3\x28\x27\x59\xdc\x42\xe5\x79\x72\x2a\xba\x33\xf5\x3a\x71\x9c\x6c\x07\xe9\xa9\xb5\x71\x4a\xee\x6f\xd8\xeb\x7c\x9c\xcc\xa3\x1c\x2c\xd6\x6f\x4b\xa2\x11\xf9\xc2\x64\x6b\xca\x63\xdf\xf7\x40\x12\xf9\xa4\xce\x70\x0e\xad\x8c\x7b\x27\x99\xf5\x8a\xcf\xf6\xf6\x62\x6d\x6b\x3e\xcc\x46\x71\xcb\xa6\x3c\xd3\xaa\x36\xa7\x03\x35\xa5\xaf\x04\x1b\x53\xce\xf8\x60\xdc\x9c\x28\x0f\x9a\x74\xea\x3a\x44\xef\x52\x9a\x9a\x78\x7c\x25\xe8\xa5\x12\x7a\xd6\x7b\xa1\xd8\xe8\xb3\x20\x69\x0d\xc7\x65\x48\x41\x1b\x5c\x80\x10\xf0\x05\x01\x2d\xb5\x89\x26\xbe\xa2\xf9\xb0\x37\x22\x73\x9a\x5b\x3f\x69\x01\x27\xe7\xde\xb7\x37\x48\x40\x25\xe4\x40\xe3\x67\xd6\xe0\xe4\x61\xcc\xe5\xdd\xf5\xe3\x96\xf2\x08\xe4\x4f\xf2\x97\x36\x1b\xa6\x9e\x99\xbc\xdd\x18\xf5\x86\xf2\xe9\x34\x6a\xda\xa4\xb1\x09\x9f\xde\x1b\xb5\x38\xe5\x66\xc2\x24\xb4\xfd\x32\x74\xbf\x2f\x6f\xc1\xd2\x14\x78\xfd\x14\x78\x69\x0a\xef\x33\x95\x1f\xa6\x6c\x67\xef\xa9\xc7\x03\xc1\x3e\x14\xcf\xe5\x6d\x44\xe4\x7a\x2b\x16\xdd\x9a\x1d\xae\x38\xd0\xe9\x1a\x2a\x62\x41\x6d\x3d\x0c\x68\x60\x6a\xaf\x21\x8a\x81\x31\xd4\x53\x38\x40\xfd\x26\xa9\x36\xc6\x15\xf8\x83\xa4\x6b\x40\x62\xa5\xa0\xcc\x42\x07\x65\xce\xa9\xa8\x1a\x05\xa8\x18\x26\x1e\xfa\xf5\x1d\x9b\x59\x7c\x8a\xb4\x61\x19\xfb\xb9\x56\xb7\x12\xcf\x0e\xcc\xcd\x15\x00\xa2\xa4\x4a\x54\xa8\x93\x92\x7a\xa8\x64\x9f\x6a\xe6\xd7\x2d\x9c\x48\x86\x2c\x76\x34\x41\x8f\x1f\x11\x0e\xcc\x88\x6a\x0f\xe4\xea\xd6\xca\x3d\x48\x17\x5d\x59\xc3\xbf\x88\x75\x3a\xcc\xb5\x04\x74\x68\x14\x7b\x21\x47\xe5\xb7\x38\x01\xff\x60\x56\x84\x96\xc6\xd6\x57\x53\xc4\xde\x49\xb0\x5e\x38\x41\x2a\x09\xc1\x09\x04\x91\xc0\xa8\x0a\xe0\x40\x63\xa9\xbb\x9e\x21\xd4\x97\x3c\x72\x47\x1e\x3d\xee\x93\x32\xfc\xdc\x78\x81\x79\x5c\x23\x12\xae\x10\x7e\x77\x3d\x03\x59\x07\x6a\x1e\x58\xd3\x69\xc9\x38\xb7\xa6\x53\x6f\xd5\x8e\x9e\x40\xe8\x2e\x38\xd2\x8a\xfc\xc3\x3d\xa2\x82\xe9\xac\x4d\x24\x9a\x7a\xe8\x02\xea\x44\x4c\x0d\xb7\xff\xaa\x2a\x23\x79\x14\x94\x91\x3c\x72\x65\x24\x8f\x30\xe6\xee\xbc\x5a\xfb\xb1\x53\xec\xb1\x49\xdc\xf5\x6f\xa5\x90\x31\x24\xde\xee\x6e\x94\x3c\x3c\xac\x1e\x1e\x44\x4c\xa6\x14\x22\x39\xb3\x87\x07\xe6\x52\xc9\x0f\x0f\xbb\xd1\x6e\xf6\xf0\x20\xbf\x65\xc3\xde\x48\xdf\x90\x64\x46\xbf\x2c\x92\x34\x1b\x24\x44\x82\x77\xb0\x22\x60\x28\x39\x10\xeb\x56\x65\x5f\x49\x28\xce\x48\xfe\x9d\x24\xb8\xa6\x27\xc8\x98\x4c\x5d\x32\x7c\x7e\x1a\x55\xcf\xdb\xdc\x3f\x6c\xaa\x00\x92\xe0\x73\xf9\xec\xd9\xef\x49\xfe\xaf\xd8\x82\x9a\x2f\xbe\x83\x9a\xcf\xc3\x66\x7d\xe5\xfd\x06\xb1\x83\xc9\x4a\xed\xb8\xd0\x66\x09\x6e\xb5\xc7\x23\x7f\x0f\x29\xf3\x78\x89\xa4\x2d\x14\xe4\x4d\x39\xd6\x66\xc7\xa5\x55\x8e\x43\x7a\xa0\x88\xd9\xf1\x90\x39\x11\xb1\x8a\x19\xf1\x23\x37\x26\xfa\x54\x8e\x35\x19\xdd\x62\xc8\x75\xc8\x41\xe9\x18\xdc\x8d\x38\x4b\x8e\x0f\x66\x5b\x68\x64\xd3\xa4\x3b\x64\xda\x44\x1f\xf0\x2d\x4a\x2d\x02\xba\x44\x3d\x0c\xcd\xc5\x63\xc9\x66\xed\x22\x6e\xd0\x95\xad\xae\x66\x11\x44\x81\x95\x49\x6d\xaf\x8c\x44\xb7\x51\x9d\x17\x65\x93\x56\x72\x82\x12\x2b\x05\xe2\x41\x8f\xa4\xea\xda\x1f\xec\xf6\x1d\xa9\xd0\x92\xf6\x4e\x96\xcf\x66\x9a\xb0\x59\x6a\x23\xc8\x05\x9d\x0d\x97\x26\xe2\xf1\xa2\x3b\x9e\x25\xfc\x4c\x44\xbd\x18\xc3\x1e\x77\xda\x03\x59\xec\x0e\xfd\x62\xa7\x51\xbb\x83\x16\x60\x6d\x4a\xe9\x22\xbe\xa3\xab\x96\x8a\x68\x24\x3f\xa5\xd9\x1d\xe3\x05\xd3\x9f\xe6\x26\x0a\xc9\x62\x97\xd2\x69\x5c\x17\xe2\xb6\x75\x47\xf9\xfa\xee\xd4\x6e\x07\xff\xfa\x8d\xee\x2a\xb3\x5c\xee\xf5\xed\x3c\x7b\x6b\x70\x84\xad\xa9\xac\x62\xfe\x6c\xaa\xef\x46\xbe\xfd\xaf\xf6\x20\x9d\x46\xbb\x49\xac\xde\xa9\xe0\x3e\x89\xa4\xa8\x6f\x69\x22\x09\xe1\x1b\xba\x68\xc9\xed\x7b\x43\x17\x86\xde\x8c\x31\xd8\xc5\xbd\xf1\x25\xb8\x89\x4f\x20\x09\xd3\x07\x13\x21\x5f\x5e\xb0\xb7\xc3\x0f\xa3\xe6\xe1\xf4\xd7\x71\xbc\x5e\x9b\xe9\x58\x2d\xb3\x5e\xbd\xbd\x3e\xd9\xdd\x8d\x56\x0f\x0f\xf3\x87\x07\x1e\xdb\x35\xfe\x44\x27\x56\xf2\xf7\xe9\x39\xed\x9d\x7c\xd2\x92\xbf\x73\x3a\x19\x7e\x1a\x91\xcf\xf4\x1c\x8f\x62\xeb\xbc\x8b\x1d\x2a\x4a\x4c\xeb\x7a\xa2\xcf\x48\x72\xb9\xea\xeb\xcf\x28\xee\x73\x31\x5c\x24\x6a\x8f\xd1\x77\x6a\x91\xc3\x87\xf8\xeb\xb5\xca\xf5\xc8\x5a\x62\xeb\xb2\x17\x7c\x8d\x5f\x98\x0d\x86\x43\x8a\xef\x21\x0c\x5a\x88\x04\x36\x46\x10\x4c\x0c\x1d\x96\x58\x2f\xe9\x72\x10\xc0\x24\x14\xf4\x2f\xd1\x97\x5e\x59\x56\x19\x25\xf5\x64\xa3\xac\xb6\x41\xbe\x59\x35\x32\xdf\xed\x39\xb1\xf0\x0b\x59\xc2\x0b\xbf\xb7\x5e\xc3\x7d\x78\xef\xdb\xa6\x54\xdc\x77\x90\x26\x35\x32\x03\xb2\xdb\xb7\x86\x18\x9a\x3e\xf6\x9c\x0e\xd5\x4b\x8f\x8e\x80\xc3\xde\x60\x8a\xa0\xdd\xc2\x49\xee\x3b\x32\xd7\x99\xc0\x79\x9b\xb2\x42\x11\x1b\xd5\x4d\xcf\xb8\x82\xbe\x4e\x6f\xac\xbf\x66\x24\xaa\x24\x71\x99\x34\xa8\x72\x14\xdf\x67\x3b\x0e\x1e\x3e\x0e\x1d\xd0\xb5\x4e\x24\xe0\xee\x84\x71\xf8\x73\xfa\x26\x11\xb3\xee\x22\xcd\x40\xfe\x05\x7c\x75\x79\xd2\xb9\x03\x08\x6b\xc3\x17\x59\x0c\xa3\xdc\x86\x73\xf0\x17\x0e\x51\x03\xd3\x25\x11\xfb\x49\xc0\x00\x86\x0f\x93\x51\xbc\xae\x70\x3f\x9b\x56\x17\x0d\x6d\xe4\xd0\x2c\x1e\x68\x58\xe2\xa2\x3e\xef\x63\x88\x0f\x44\xfe\x4b\x85\x13\x0b\xfb\x15\x0c\x47\x3a\x45\x6a\x20\x6b\x21\x1b\xf2\x51\x0b\xb2\xa6\x86\x9b\xcf\xe2\x75\xb8\x7b\x08\x9b\x1f\x29\x76\x13\x49\xa3\x2d\x06\x9d\x20\xdb\x0a\xac\x94\xe6\x74\xaa\x3b\x49\x0e\x58\x5f\xe8\x3a\x36\x20\xde\xe6\x98\x55\x71\xc0\xfe\xa3\x4f\x69\xef\x94\x3d\xdf\xef\x9f\x0a\xca\x06\x51\x85\xe7\x52\x25\x55\x86\xd8\xa3\x78\x43\x81\x7e\x39\x4f\x41\x9a\xdd\xb6\x07\x3a\xfb\x92\x06\x35\xe1\xf4\xa0\x9c\x11\x80\x25\x99\x2c\xd8\x7b\x60\x84\xd3\x43\x2f\x89\x01\x04\x7e\x97\x1f\x0f\xca\x9f\x56\x5a\xe6\x22\xbf\x1e\x3a\x5f\xbd\x50\xfa\xae\x40\xed\x22\xbb\x4b\xe6\xe9\x64\xc7\x40\x6d\x67\x99\x14\x05\x9b\x40\xde\x43\x57\xb6\xd0\x56\x3e\xcc\x18\x05\xbb\x48\x7f\x67\x17\x8b\x05\x9b\xa4\x89\x60\x91\x78\xf6\xec\xf0\x81\x4b\x3a\xd9\x32\xa0\xfd\x43\xc8\x71\x92\xfb\x45\xc3\x4e\x98\xec\x39\xb5\x09\x2c\x1f\x1e\xd8\xb3\xde\x69\x18\xa6\x22\x96\x3d\x1d\x0f\x98\xe6\x99\xab\xa2\x8f\x80\x44\xc2\xb0\xbe\x06\x61\x05\x3c\xf3\x74\x8b\x01\x7f\xa2\x3a\xeb\xda\x83\xb2\x0c\x60\xa6\x5d\xa1\xa0\xb5\x9a\x3b\xa7\xae\xb5\xe3\x46\x89\x02\xb6\x19\x0c\x0a\x59\x63\x8b\xe8\xde\x28\xe1\xc0\x32\x4c\x63\x19\x7d\xe3\xa5\x34\xd3\x41\x66\x72\x9a\xf9\xce\x5c\x09\xcd\x02\x41\x66\x76\x29\x4d\x3b\x1d\xfc\x95\x77\x3a\x09\xc6\x11\xd5\x78\xa2\xa0\xbd\x93\xc2\xba\x18\x15\x7b\xf4\x20\x16\xc3\x62\x34\xec\x8d\x68\xfb\xbf\xda\x7b\xf8\xbb\x62\x44\x11\x72\xeb\x4a\x3d\x0c\x58\xf6\x12\x33\xfc\x90\x8a\x5b\x4e\x76\xfb\x84\x77\x3a\x1c\x82\x5a\xea\xe8\x78\xf6\xc6\x41\x21\x69\x33\xe8\x6a\x56\x42\xa7\x0f\x0a\x0b\xcf\x44\x4c\xf2\xf2\xf7\x04\x13\xaa\x3b\xe7\xe3\xe9\xb1\x71\x9c\xcf\xab\xf2\xd8\x3a\x03\x9f\x47\xc4\xc7\x1c\x50\x5b\xc7\x4b\xa9\x35\x5e\x7f\xfa\xb8\xb2\xb7\x3c\x69\x5f\xf9\xab\x46\xc2\xd0\xba\xf0\x3c\x0c\x7c\x03\xab\x47\xe1\x76\xf5\xc0\x42\x01\x42\xea\x6c\xb0\x0e\x9b\x9b\x5a\x84\xbc\xc1\x4d\x5c\x86\xed\x84\x7b\xbb\xae\x3c\x28\x3a\xea\xd5\x1f\xdf\xd0\x0d\x8a\xc1\xda\xea\x3c\xe6\x03\x03\x77\x56\xfb\xe0\x31\x8a\x50\x9d\x10\xfb\x5b\xee\x3d\x73\x49\xa4\x3a\x0f\x5a\xe5\xa3\x88\xb5\xa3\x9c\x82\xe5\x23\x92\x11\x90\x69\xf1\xd3\xbe\x64\x7b\xf5\xf8\x6d\x54\xb0\x7f\x5f\xdf\x8f\x43\x7d\xdb\x10\x6a\x3f\xb6\xe3\xea\x49\x2b\x4c\xce\x1a\x67\x4c\xc7\x20\xcc\x54\x43\xf1\x65\xff\xd5\xdd\xb8\x15\x85\xad\x6e\x38\x25\xdc\x72\x74\x20\x75\xa8\x3d\x74\x68\x67\x61\xd4\xfd\xcd\xdb\xb9\x22\x90\xae\xdf\xcd\xcd\xa2\xe8\x72\x10\xe7\x3a\x53\xc8\x43\x27\x16\xac\xbd\xf2\x34\x17\x17\x38\x26\xac\x2b\x19\x3b\xe5\x76\x9f\x4f\xee\xd1\xa6\xc5\x33\xf7\xa9\x13\x10\xe9\x60\xec\xe7\x97\x2f\x2f\x2e\x2f\xae\x2f\xce\x5e\xb7\x75\x82\x51\x11\xe1\x52\x2b\x43\xa3\x2c\x26\x3c\x72\x0d\xab\xdc\x60\xe8\xc8\xba\xa4\xc2\x6f\xb9\x54\xde\xed\x24\x0c\x3a\xd7\x94\xc7\x9f\x76\xc9\x1e\xcd\xe2\x07\x98\x36\xcc\x3f\xa3\xac\xab\x62\x7b\x41\x8e\x33\x8c\xc7\x5f\xc3\x05\xf3\x0a\x83\x2b\x42\x0c\x2e\x4c\xa1\x12\xfb\x5d\x94\x62\xbf\xa7\x9d\x4e\x1a\x69\x1e\xd4\x89\xdb\x16\x22\xb0\xd1\x3b\xdf\x25\x21\xb4\xa7\x3e\xab\xba\xdc\xeb\xad\xe7\xbd\x55\xfd\x38\x11\xbc\xc2\x16\x31\x55\x0e\x1c\xba\xb1\x5a\x7c\x14\xdc\x9e\x6a\x5e\x4e\xc5\x40\xd1\x28\xcd\xc4\x25\x2f\xeb\x4c\x76\x99\xb6\x0f\xe8\xb5\x2c\xd7\xd2\x3b\x11\x96\x61\x11\x9a\x59\xc3\xc0\xec\x62\x14\xdb\x6e\x75\xae\xdf\xdc\x3d\x7d\x65\x59\x48\x1a\x7f\xe1\xae\xb4\xb6\x24\x61\xe3\xe0\xa7\xe8\xec\xeb\xca\x77\x36\x2f\x58\xd3\x77\xd0\x2d\xc4\x5e\x52\x4f\x3f\x1a\x3b\x8b\x9f\x3d\x3b\x6a\xa5\x9d\x4e\x94\x3f\xd0\x27\xe0\x2c\x21\x7f\x3d\x56\x55\x24\xd1\xe6\x44\x4b\xc0\x04\x52\x09\xc4\x02\x68\x59\x1a\x0d\x62\x02\xac\x68\xef\x64\xf5\xcc\xe4\xa0\x5f\x79\xc0\x29\x86\x2b\x97\x4d\x05\x4c\x94\x20\xf5\xa2\x63\x93\x85\xf6\x11\xc6\x64\x72\xa3\x04\xb2\x18\x17\xb0\x6a\x6b\x23\xb4\xad\x8d\x26\x49\x1b\x8d\x5f\xca\x1b\x47\xcb\xaa\xeb\x24\x3a\x60\x19\x23\xd6\xd1\xc7\xb8\x55\xce\x4a\x75\x0d\xd0\x7a\x51\x67\x17\xe3\x04\xb2\x6a\xc8\xde\xdb\xac\x0f\xce\x42\xfa\xe0\xcc\x32\xfd\x5e\xdf\x08\x36\xf9\x51\xe5\x13\x63\x5a\xdf\x5b\xd6\xe3\x65\xde\x05\x55\x63\xd9\xf4\x08\x0a\x5a\x4d\xd0\xf7\xf6\x55\x6e\x25\xd0\x99\x4b\xa4\x87\xaf\x10\xdd\x19\xf1\xea\x56\x45\x4a\xe0\xd6\x95\xd9\x2a\x75\xe6\xe8\xc8\x8e\xe5\xd8\x2c\x54\xca\x2b\x15\xc2\x02\x04\x5d\x69\x2d\xf7\xc7\xb5\xdc\x1f\xd5\x84\x64\x2f\x60\x19\xdf\xfc\xaf\xd9\x23\x78\xab\x9e\x9a\x58\x39\x51\xec\x08\x54\xed\xe2\x89\xc6\x5d\xb2\xc5\xc6\xb0\xfc\xb3\xed\xe9\x1b\xb6\x48\xe3\xae\xd0\x24\x82\xe9\xe0\x04\xe2\x0a\x89\xd3\x90\x84\xb1\x8a\x0f\x9c\x8a\x6b\xc7\x32\xc2\x95\x4a\x3a\x6b\x1b\xc8\x40\xf7\x06\xe0\xff\xae\xde\x30\xce\x49\xdd\x20\xef\xc6\x02\x93\xca\xe1\x06\x8a\xb8\xe4\xfa\xd4\x07\x0c\xf2\x1d\xa5\xce\x65\x62\x4d\xe8\x54\xb2\x2d\xdc\x0c\x48\x7f\xd4\x6c\x09\xe2\x6c\x06\x27\x52\x51\xdd\x75\xfd\x42\x75\x80\x9b\xf8\xb3\xde\xc4\xc6\x7a\xee\x1d\x4c\xf1\x17\x77\x49\xcc\x0c\xdd\x18\x52\x92\xa2\x33\xe1\x08\x35\x6a\x17\xa1\x60\x33\x92\xf4\x2d\xf3\xd1\xde\xd5\xae\xab\x5b\xab\x24\xcc\x23\x61\x56\x4b\x67\x70\x75\xc4\xb4\x03\x4f\x68\x4b\x30\x6e\x98\x58\x9b\xa8\x39\xd5\xbc\x83\xbf\xc0\xd4\x7e\xa3\x2a\x4c\xd6\xcb\x8d\x53\x0c\xc7\x55\x7f\xed\x05\xcb\xc2\xd0\x59\x4a\x9a\x80\x85\x60\xaa\xf6\xcd\x27\x15\xbe\xe7\xb5\x2d\xe9\x07\xd5\x42\x12\x17\xa9\x1f\x13\x5f\x4b\x55\x46\xb2\x86\xda\x80\x58\x9e\x30\xc6\x35\xab\x53\x57\xe8\x84\x8a\x6e\x3a\x29\x65\xc0\x5d\xa3\x41\x58\x15\x6d\xf0\x6e\x52\x54\x0f\x61\x35\x5e\xfd\xa9\xf3\x7b\xe0\xcd\x9c\x7d\xda\xb9\x29\x91\x80\x90\x86\xde\xc9\x9f\x5b\x81\x1e\xf9\x62\x96\x1a\xf5\x75\x60\xe7\x19\xd8\x26\xa5\x58\xed\xf2\xf3\xa9\xfb\xf0\x83\xc7\xd2\x33\x63\xf9\x9b\xb7\x6a\x35\x23\xf2\x96\xf6\xb4\xfa\x6a\x10\xda\x00\xec\xd3\xce\xd5\x0f\x00\x98\xdc\xe6\xa5\x24\xd0\x3a\xeb\xb2\x97\xfc\xb9\x29\xd3\x73\x39\x3d\x73\x25\x29\x33\xe6\x19\x65\x5d\x9b\x5b\xf3\xdd\x2a\x13\xe9\xc2\x49\xb6\xf9\x37\x9e\x0a\xf6\x36\x9b\xdf\xdb\x57\x7f\x62\xc9\xd2\x64\xd4\xd4\x76\x72\xac\xeb\xfe\xc6\x66\xdc\x57\xa6\x21\xef\xe5\xf9\xeb\xd7\x1f\xfe\x72\xf9\xf6\x6f\x97\x1f\x1c\x12\xf5\xc3\x2f\x6f\xaf\x2e\xae\x2f\xde\x5e\xba\x81\xef\x32\xfa\x65\xdd\xda\x5c\x43\x15\x4e\x75\x6a\xd4\x29\x67\xec\x77\x06\xf1\x80\xf2\x1a\x94\x60\xe2\x6c\x4a\xd6\xbc\xa0\xc3\x11\xba\xa9\x70\x9e\xdc\x17\x74\x98\xe2\xb3\x50\x6e\x86\xfa\xb3\x42\x49\xf6\x19\xaf\xbc\x89\x79\xa1\xc4\xd5\x9b\x02\x43\x05\x74\x32\x8e\x40\x09\xc7\x64\x94\xe6\xcc\x46\x13\x03\xe5\xc4\xc0\x2b\x05\x24\x10\x8b\x55\xfe\x15\x47\xba\x57\xa3\xbc\xb1\x99\xa7\x4d\xfe\xae\x90\x36\xc7\x6a\x70\xb4\xf0\x62\xc8\x47\x7e\x54\x33\xab\xb0\x11\xea\x77\x99\x0f\x03\xdb\x2a\xdd\x89\xe1\xc8\x9c\x89\x2a\x60\x6f\x98\x27\x16\xf2\xa6\x39\x6b\x0c\x61\x89\x8b\x54\xdf\x6e\xe4\xad\x1d\x3a\x1c\xc7\xde\x0a\xdb\xfe\xd0\xed\xd3\xca\x81\x03\xdd\x42\xe2\x70\x05\xa8\x74\x7a\xaf\xf4\x3a\xc1\xa5\x74\xc2\x49\xc9\xa1\xf0\xc0\x52\x0a\x9c\xa3\xda\x49\x75\x73\xc4\x7d\xb6\x01\x76\xba\x94\x07\x3c\x91\xff\x92\xe7\x01\x84\xfc\x05\x87\xe1\x8d\x89\x28\xf0\xbb\x4b\x81\xf7\x32\xbe\xc3\x07\x82\x5d\x79\xfd\xae\x9d\x70\x77\x15\x34\x90\x23\x9b\xba\xe9\xc6\x36\xc1\x75\x19\xf1\x4e\xac\x30\x43\x74\x0f\xae\xd0\x83\xf4\x8e\xab\x30\xc3\xf4\x4f\xad\xb7\xe2\x5e\x1e\x65\x4b\x5f\x69\x0b\x37\x7d\xb2\x85\x99\x5d\xc3\x01\x37\x39\xb4\x6b\x39\x10\x1c\xfc\x90\x8d\xd0\x0b\xf8\xb2\xba\xde\x6e\x79\xec\xd4\x96\xbf\xda\x78\xd4\xb5\x54\xd3\x08\xfb\xb9\x73\xfa\x85\x39\xfd\xcd\xb1\xe0\x5a\x7c\x98\x8d\x4c\x53\x98\x18\x3c\xb5\xc1\x72\x71\x34\xd5\x71\x54\x50\x85\x1e\xbb\x97\xcf\xbd\x6e\x7f\xeb\x25\x1a\x32\x65\xee\x4e\x29\xcd\x3c\xfb\x65\x5c\x35\xf9\xbd\x5a\xa5\x14\x82\x17\x7f\x44\xdc\xea\x9e\x35\x10\xeb\xce\x35\x96\x83\x83\x0d\x97\x76\x54\x5a\xb5\xd8\xec\xed\xca\xad\x97\xb4\x94\x6c\x25\xc8\x51\x70\x1b\x63\x2e\xec\x6a\x63\xbc\x69\xcc\xc6\x17\x20\xda\x49\xcd\xce\xe7\x66\xe7\xa7\x7a\xdb\x73\xbd\xed\x53\xb3\xe7\xb9\xd9\xf3\xa9\xdd\xf0\xe9\x16\xbb\x3d\x35\x5b\x9d\xeb\x5f\xb1\x32\x79\x17\x65\x5e\x85\x6b\xf6\x35\xa5\xbc\x7a\x0c\xd2\xaf\xdc\xd6\xe9\x57\x1e\x9b\xf4\x7f\xd5\x31\x48\xbf\xea\x18\xa4\xff\x5b\x8e\x41\xfa\xdd\xc7\x80\xaf\xa3\x5c\x25\xbb\xd2\x07\xa0\x50\xc9\xd4\xeb\x0e\x00\xce\x50\xef\x7e\xd0\x0f\xd4\xcb\x4d\x62\x25\xa2\x51\x34\x97\x77\x11\xab\x57\xcd\x1b\x33\x0b\x6d\xcc\x6c\xd3\x7d\xae\x26\xe9\x76\xb5\x89\x18\xf3\xca\x3a\xd7\x6d\xb6\x0d\x78\xab\x4d\xc0\x1e\x81\xba\x55\xc1\x97\x5b\x49\x81\x66\xc8\xf6\xfb\xa3\xcd\x42\x2f\x55\x58\x8f\x0e\x16\xae\xb0\xb2\x02\xbd\x78\xab\x96\x32\xc3\xae\xb9\x97\xf1\x56\x9e\x01\x37\x80\x72\x37\x95\xde\xbd\x67\x85\x1a\xa2\x2e\x83\x57\xfa\x7b\x6d\xea\xae\xfe\x5e\x14\x3d\x7e\xf4\xa4\x63\x9a\x97\xb3\xbf\xb9\x4f\x26\x13\x1e\x39\xdd\xc4\xf1\xf3\xe7\x4f\x62\xe3\x29\x99\x16\x28\xe9\xa9\x6d\xb6\x77\x70\xb4\xb1\x4d\xd3\x9c\xdc\x25\x75\x2d\x1d\x1c\x1f\x6f\xdf\x50\xbe\xec\x37\x4a\xb0\xeb\xdb\xd8\xeb\xbb\xad\x1c\x7c\x6b\x2b\x07\x6e\x2b\x87\xdf\xda\xca\x61\x1c\x48\xa0\x36\xf6\xdd\xb9\x1e\xd8\xb3\x67\x07\x6b\xc3\x57\x2a\x49\xc8\x94\xf6\x7b\x47\x4f\x8e\x1f\x3f\x22\xb3\xfa\x9d\x64\xec\xed\x6c\x44\x7e\xcb\x5a\xe9\x5d\xe5\x52\x72\xfa\x69\x9c\x2c\x93\x71\x2a\xee\xe9\x94\x38\x12\x44\x15\xd6\x12\xf4\x6d\xc0\xb6\x81\xc2\x4d\x55\x6c\xd9\x4d\x2b\x71\xff\xfb\x34\x13\x87\x07\xc6\x6a\xc3\x72\x7a\x3a\x83\x03\x76\x6e\xc1\x83\x16\x83\xee\x58\xb2\xd2\x58\x7a\x8e\xd3\x4d\xb0\xa7\xa9\xd7\x53\x33\x87\xb8\x2c\x47\x90\x55\x38\x22\xfd\x9d\xbd\x98\x31\xab\x8e\x96\xfd\x0c\xdd\x05\xdb\x1b\xa9\xfc\x9a\xa6\x64\xc9\x75\x56\xf2\x64\xde\xb0\xb5\xd4\xee\x2e\x32\x0d\x92\x9e\x0b\x84\xb8\x01\x76\x9a\xbb\xdb\x9b\x3a\xe3\xe9\x16\x4c\x40\xd4\xda\xf2\x5a\xad\xbd\xe7\xfd\x7d\xa4\xc1\xd4\xb6\xab\xc5\x5a\x30\x45\x45\x39\x16\x81\xc2\x86\x4f\xc0\x72\x2a\xa2\xb2\x4a\x13\x51\x51\x53\x08\x65\x0c\x0a\x6c\x96\x9d\x21\xe9\x11\xf4\x30\x60\xee\xa5\xea\x31\xbb\xea\xd5\x1e\x3d\x24\x00\x5e\x37\x43\x44\x68\x30\xd0\xd1\x90\xed\xf5\x47\x74\x1c\x09\xa2\x5c\xd1\x8b\x52\xa2\x0f\x0f\x37\xc3\x48\x10\x22\x8d\xf0\xc0\xa6\x35\x1b\x10\x60\x85\xcb\x53\x65\x64\x1c\xf5\xc8\x61\xac\x67\x29\xb6\x98\xa5\xd0\x03\xce\xa7\x81\x91\xa0\xb0\x61\x9c\x2f\x59\x6d\x99\x9d\x12\x20\x9e\x3f\x3f\x00\xc8\x71\x56\x7b\xe3\xda\xc2\xad\x32\x14\xc3\xd6\x83\x0f\xe2\xd9\xb3\xc3\xde\x3a\x12\xa4\x6f\x9c\xfd\x9d\xf4\x1e\x8d\x07\xc8\x05\x85\x3e\x3c\x2d\xe7\x50\x8d\xe8\x41\xff\xe8\xf1\xd1\x93\xc3\x47\x47\x68\xc6\xe1\xa2\x29\x05\xd9\xa1\x20\x40\x02\x61\x1c\xee\x5f\x5c\x3c\xe6\x62\x3d\xa4\x45\x75\x02\x4d\xa7\x18\x09\x28\xa6\x8d\xab\xaf\x18\x11\xe5\xc5\x4b\x52\xca\x87\x1a\x2a\xe6\x14\x44\x19\x49\xa3\x18\x83\x05\x27\x4b\xb1\xe2\xac\x2a\x8d\xff\xc6\xe0\x46\x0e\x58\x50\xab\x54\x9e\xa0\x81\xa0\x8f\x39\x58\x8c\x78\x58\xcb\xf7\xb5\x14\xdf\xee\x2f\x02\xeb\x3a\xb0\x4b\x4c\x54\x0d\x57\xd2\x0f\xd2\xc6\x19\xba\xfd\xd4\x49\xf0\xbe\x6b\x86\x12\x97\xe5\xdf\x1e\x67\x4a\x56\x9f\x69\xbf\x3f\x23\xda\xb4\x58\x50\x2b\x13\x3e\xe4\xea\x5a\x94\xe5\xe7\x16\x52\x71\x48\xab\x82\x45\xeb\xce\x12\x36\xa5\x2f\x27\xe6\x75\x50\x15\xb5\x68\xd1\xad\x0a\x92\xb0\xdc\x42\x35\xf2\x5d\xd3\x98\xdd\x4f\xfc\x10\x6f\x15\xcd\xd9\xcc\x11\x7f\xa9\xe8\xea\x10\xc9\x1d\xd2\x85\x82\x8d\xd6\x0f\x87\x45\x49\xae\xbd\x6c\x29\xf7\xae\x5a\xbe\x64\x2b\x3d\xae\x43\xe5\x06\xb8\x0e\x49\x55\x4f\x1c\x62\xe9\x4e\x4b\xe1\xdd\xbc\xce\x98\x60\x3e\x36\xfd\x29\x8f\x29\x59\xce\xd8\x66\x64\x95\xdb\x96\xc7\x27\xe2\x19\x07\x14\x91\x49\xfc\x24\x11\x84\x81\xe7\xda\xca\xf3\x17\x25\x15\x02\xd7\xb6\xce\x3f\x50\x89\x90\x16\xc0\x31\x04\x0d\x3f\xba\x22\xb9\xa5\x94\xce\xe5\x82\x62\x39\x3f\x55\x92\x2d\xaa\x8b\xdd\x78\xc1\xc1\xe2\x2f\xb3\xbd\x3d\xf9\x7a\x9c\x2f\x6e\xd2\x8c\x5d\x27\xb7\xb7\x6c\xd2\xe8\x8d\x00\xb4\x9e\x96\x5f\x3f\xcb\xac\x47\x42\x0a\x1e\x09\x72\x48\x92\x81\x4e\x21\x21\x26\xf6\x3e\x6e\xa5\xbb\x94\xce\x3b\x1d\x75\x71\x38\xec\xfc\x32\x52\xe9\xc7\xb0\xff\x2b\xb9\x3a\x81\x4b\x0b\xba\x66\xf2\x20\x4c\xd0\x21\xe4\x04\xed\xa1\xf9\x89\x09\xc2\xa0\xbb\xce\xfc\xae\x33\xaf\xeb\x2c\x86\x96\x32\xf6\x59\x40\x30\x22\x5e\x37\x94\xef\x01\xc2\x37\x00\x60\x91\x2c\xc3\x57\xaf\xb2\x12\xd3\x69\xda\xd2\x02\x33\x30\x85\xb3\xb3\xed\x52\x7a\x2e\x8b\x19\xa3\xfb\x17\xc9\x78\xc6\x28\xeb\xc2\xff\x13\x6b\xc1\xcf\xba\xef\x97\x93\x04\xee\x04\xb9\x63\x74\x01\xf5\xfb\x65\xca\xc5\xbd\xf3\xe9\xfd\xbb\x77\xe7\x97\xd7\x1f\xae\xcf\x7e\xa6\xac\xfb\xeb\xdb\xd7\x67\xd7\x17\xaf\xcf\xf1\xf1\xc5\xdb\xcb\xab\xeb\x33\xf3\xf5\x3a\xb9\x55\xba\x3f\x09\xe4\x77\xec\x2e\x2d\xd2\x3c\x53\xcd\xe8\x8a\x94\x75\xd1\xf6\xcf\xa9\x2e\x5f\x62\x30\xcd\xab\xfb\x6c\x3c\xe3\x79\x96\xfe\x8e\x8d\xe0\x98\x4d\xb0\x4d\x5d\x34\xcd\xb3\x33\x2e\xd2\x69\x32\x06\x5d\xd7\xeb\xb4\x10\x17\x82\x2d\xb4\xaa\xcc\x4e\x16\xb5\x5c\x4e\x6f\x5a\xe5\xd5\x6f\xd9\xc1\x64\x2d\x67\x8c\x97\xc9\x25\x8a\xdb\xea\xae\xc4\xd0\xb5\x02\x7e\x1e\x35\x56\x5a\x80\x36\xef\x92\xf9\x8a\x45\x31\xa5\xd4\x41\x9d\x0e\x94\x52\x92\x76\xd3\x09\x0e\x2f\x97\x9b\x2d\x91\x7f\x8a\x8d\x57\x8a\xec\x5e\xe3\xe6\x34\xcb\x18\xa7\xa2\x89\xe9\x81\x71\x54\x29\xe4\xa8\x47\xf2\xa1\x69\x6f\x14\x47\xb6\x3d\xa0\xbd\x1a\xe6\x17\xf5\x48\x52\x53\x15\xcc\x25\x7c\xc6\x76\x65\x8f\x76\x8e\xe7\xa8\xa5\x7c\x43\x42\x81\xe7\x98\x86\xdb\x5a\x3b\x0c\x86\xd3\x1d\xd9\x05\x88\x30\xf9\x72\x3a\xa1\x62\xed\xed\xca\x82\x94\xfb\x31\xd5\x7b\x1b\x9a\x07\x8e\x0e\x33\x7e\xce\x95\x21\x4a\xa4\x1c\xb3\xe3\x56\xe9\x20\xcc\xeb\x7b\xb9\x4c\x2e\x37\xf4\x73\x99\x5c\x3a\x3d\x8d\xb1\xa7\xbe\xe9\xc9\x3b\x81\xe3\xfa\x9e\x66\x1b\xfa\x11\x94\xd2\x19\xf6\x32\xc5\x5e\x0e\xec\x7c\x9c\x53\x3f\xd5\xe9\x89\xcb\x64\x62\x50\xdc\x48\xf8\xb7\x52\x8a\x33\x57\x52\x19\x92\xd3\xab\x93\x42\x79\x83\x30\xd2\xd8\x3b\xfe\x30\x0a\x7d\xe6\x92\x52\x05\x6e\xec\x09\x91\x4f\xca\x08\xae\x49\xfe\x59\x73\xd2\x74\x52\x3c\x35\xa1\x35\x64\x3d\xf2\xac\xdb\x8d\x4e\x0e\xa7\xbc\xb7\x37\x03\x39\x62\xea\x9c\xa2\xa5\x93\xd0\x85\xf9\x89\x5c\x7a\x3a\x45\xca\xbc\xe5\x27\x76\x61\xc3\xde\xa8\x94\xc1\xe5\x0e\x01\x16\xc9\x6f\x04\x22\xf5\x94\x13\xad\xdc\x9b\x22\xf1\x7a\x5d\xba\x20\x26\x64\x25\xe9\xb0\x0d\x04\xdf\xd7\x09\xa2\xe7\x49\x21\x80\x7b\xc4\x44\x7a\x60\x67\x5d\x88\x5f\x01\x98\xea\xc5\x37\x49\xa3\x1b\x57\xc3\xe9\x74\x97\xd2\x99\xb6\x39\x76\xc7\x32\x23\xe6\x95\x1a\x0b\xd2\xf3\x8b\xe5\x4a\xb0\x28\x8e\x4b\x9f\xd1\x1c\xaf\x82\x35\x4d\x54\x6d\x7f\x96\x7a\x81\xdd\xdb\x78\xd1\x52\x11\x10\x36\xa9\xb8\x32\x0d\xdb\x2c\x78\x74\xa6\x29\x2f\x04\x15\x24\xeb\x16\x6c\x9c\x67\x13\xca\x49\xb6\x91\xbe\xae\x1c\xa4\x32\x5d\x52\x39\x0c\x44\x28\x0b\x20\x3f\xc7\xe0\x4a\x84\x60\xae\x3c\x82\x93\xcf\xaa\x0d\x18\xa0\xc6\xf3\xda\x85\x57\x8e\x54\xbf\x53\x62\xf4\x45\xdc\x5a\x45\x77\x31\x86\x45\xa8\x03\x0a\x32\xf6\x1a\x24\x3c\x08\x12\x91\xdc\x16\x54\x10\xfe\x0d\x60\x68\x06\xc2\x16\x20\x28\xc9\x29\xe4\x50\x88\xa0\xfb\xfd\x0d\xee\xbe\x1a\x16\x2d\x41\x0d\xf4\x32\x49\x19\x5a\x2d\x93\x86\xd1\xbd\x82\xd1\xed\x77\xc3\x48\x82\x08\x76\x2a\x10\x8c\x72\xa7\xca\x3e\x7e\x24\xb0\x9a\xf4\x9a\xdb\x6e\x1f\x67\x80\x5a\xf4\x7b\xeb\xec\x9c\xb4\xbb\x5a\x56\x08\x17\xa6\xb3\x5c\x8a\xe4\x56\x1f\x76\x39\x61\x46\xca\x4d\xea\x73\x6f\xcf\xb2\xb3\x1f\x4b\xa4\xf4\x2d\x59\x45\xb7\x0a\xf8\x37\xcd\x16\x51\xb2\x03\x4d\xfc\x39\x16\x8f\x3e\xa2\xfb\x2a\x2a\xce\xdf\x52\x36\x17\xa7\xed\xc7\x66\xa7\xc3\x4e\xdc\xb4\xb8\x12\x1e\x9d\x8e\x47\x45\x3d\x3c\x44\xe5\x1a\x25\x9c\x47\xaa\x73\x31\xf4\x9a\xe4\xd1\x55\xe4\xd6\x26\x14\xe8\xc1\xc0\x90\xc5\x65\x8e\xe5\x06\x43\x9c\x7c\x27\x22\x84\x1d\x0d\xd0\xc9\xba\x86\x5d\x07\xc4\xb8\x50\x04\xe2\x56\x88\xb1\xf1\x70\x3b\xab\x60\x7a\x68\xd9\x26\x67\x90\xeb\x59\xf6\x15\x47\xcc\xc7\x6e\x37\x6a\xdf\x7c\xda\xa0\x12\x2c\x5f\x85\x0d\x9b\xc9\x26\xbe\x9e\xd0\xdd\x3e\xb1\x7b\x5c\x6d\x10\x6f\x8c\x94\x35\xea\x49\x18\xfb\x58\x77\x73\x3a\xbd\x9c\xfa\x23\x1c\x94\xbe\x47\x18\xcb\x3c\xb4\x21\xd2\x69\xb4\x5b\x6e\x2e\x0e\x77\x13\x79\x5a\x04\x33\x83\x9a\x1d\xcf\xb4\x64\x80\xbb\x5b\x5b\x37\x7d\xde\xaa\x02\x90\x1b\x4c\xeb\xf8\x4e\x9a\x49\x81\x53\x99\x2e\xa0\x51\x15\xa5\x34\x3b\x3d\x1f\x44\xa5\x15\x4a\x41\xde\x56\x97\x81\x7c\xd3\x24\x54\x1b\x95\xce\x42\x47\xce\x41\x78\x81\xa5\xef\x11\xe1\x30\x9c\x9e\x70\xe0\x13\x26\xd1\x6f\x27\x93\x9b\xc3\x9b\xc7\x4f\xd8\xfe\xe1\xe4\xe0\x60\xff\x88\x1d\xdd\xec\x3f\x79\xfc\x38\xd9\x7f\x74\xd8\x7f\x3c\x3e\x18\x1f\x8f\xfb\x47\xc7\x6d\x28\x5c\x9b\xc7\x1d\x37\xa8\xe2\x40\x99\xdd\x6e\xf3\x1a\x6e\xb9\x9e\x18\x83\x26\x2c\x32\xf0\x19\xfa\xcf\xe5\x54\xcd\x5f\x85\x0b\x08\x62\x4e\xd3\xde\xab\x9c\x47\x3c\x76\xd8\x0c\x91\xa4\x99\x3a\x30\x92\x5e\x62\x99\xfa\xf5\x91\xdd\x53\x2e\xff\x4a\xaa\x4e\x30\x0e\xca\x45\xc0\x1c\x6c\x91\x53\x01\xff\x95\xda\x24\xd9\x37\x91\xa9\x81\xcb\x0a\xf7\x88\x1e\x19\xe2\x11\x3d\x0c\xac\xf1\xab\x37\xad\xc8\x8a\x1c\x4c\x20\xfc\x52\x85\x37\xee\x90\x55\x79\x39\x0b\xe0\xd8\xb3\x6e\x31\xcb\x57\xf3\xc9\x3b\xb6\xc8\xef\x02\xeb\xb4\xeb\x0d\x09\xdd\x52\x58\xd5\x63\xc9\x05\x27\xd2\x75\x00\x51\xc0\x78\x1c\xc4\x36\x97\xf9\x84\x81\x7d\x84\x16\xe1\x6c\x97\xa5\x37\xd5\x12\x21\x8b\xef\x16\xc9\x92\x82\xaf\x87\x97\x44\x76\x9e\x16\xca\x1e\x57\x76\x97\x7d\x64\x13\xd9\x51\x10\x19\x9a\x75\x6d\xc4\x85\x69\x01\xb1\xbf\x03\x02\x14\x7f\x5c\x3e\xc8\x31\x35\x4b\x14\xc7\xba\x81\x28\x9c\xb2\x05\xf1\x82\x71\x6d\xa1\x18\xac\xd7\x6b\xfc\xb4\xa6\xf1\x81\x57\x8a\x04\x00\xc5\x30\xcd\x49\x80\x46\xdb\xdd\xd5\x50\xb4\x7a\xcf\x5a\x61\x96\x2d\xf5\x29\x29\xae\xe4\xa2\xd6\x68\x1b\x55\x41\x3d\x1d\xc3\x71\x8b\x4e\x47\xc0\x66\xb0\xa9\x16\x1b\x5a\x30\x94\x8b\x5c\xba\xcc\x07\x2d\xe4\x5a\x66\xf2\x68\x8e\xd0\x43\x20\x23\xd6\x7c\x88\x63\xe3\x51\x1a\x93\x54\xe1\xe2\x82\x71\xf1\x13\x9b\xe6\xbc\xcc\xdc\x38\x06\x5f\xb2\xcf\xcc\xe9\x33\x2d\xf5\x99\x53\xee\xf7\x99\x3a\x7d\xe6\xde\x59\xcd\xbc\x2e\xa3\x9c\x88\x98\xe4\xa0\x3d\xf7\x4e\x56\x79\x04\xb2\xdb\x16\xf3\x5a\xe2\x5d\x0e\xc7\x11\xac\xeb\xfc\x56\x6d\x46\xfe\x52\xab\x9a\x6a\x48\x0b\xe1\xd4\x9e\xb0\x39\x13\xcc\x59\x49\x98\x0a\xd8\x43\xa3\x6c\xbc\x76\xe1\xa1\x25\x23\x41\xc7\xb4\x39\x2c\x99\xd4\x32\xd6\xb2\xbc\x92\xdd\x1b\x8c\x1e\x10\xe1\xbe\x85\x43\x7f\xd6\x94\xe8\xb8\xba\x9b\x5b\xd6\xd8\xfe\xad\x89\x07\x91\x98\x36\x83\x3e\x55\x59\x29\xa1\xa7\x73\x0b\x9b\x9a\x44\xd0\xda\xc3\x2c\x72\xfe\xf0\xe0\x9d\xe7\x0c\xf2\x3a\xb8\xb4\x34\x38\xd6\xc9\x1f\x03\xa6\xb7\x9f\x88\xab\x57\xb0\x11\x6a\xbb\x91\x97\xe3\x2f\x6c\xc8\xba\x18\x2a\xac\x37\xa2\x6d\xf5\xb3\x4d\xe4\xeb\x5f\xf8\x2a\x63\xb4\x3f\xa2\x6d\xf8\xa5\x5e\xbe\xcc\x33\x46\x0f\x46\xb4\x2d\x7f\xb4\xd7\xd1\xd9\xc3\x43\x74\x46\xbf\xac\xd1\xab\xf9\xba\x1e\xa2\x1a\xcb\xa9\xd4\x28\xe8\x42\x8f\x30\xd0\xb6\x01\x90\x33\x5b\x90\x12\x68\xcb\xb8\x85\x5b\x80\xa0\x3d\x8a\x0a\x96\x4f\xb9\x5e\xfb\x26\x3f\x8d\xfb\x6c\x1c\x66\x90\xcf\x10\x10\x27\x27\xb1\x16\x75\xa1\x8c\x4b\x7f\x19\xe0\xda\xc9\x45\xc0\x48\x68\x6e\x48\xa8\x9d\x33\x05\x33\xb7\x18\xbc\x28\x97\x92\xb0\x1b\xb8\x48\xca\x14\x97\x5f\x22\xa5\xfe\x4f\x26\x77\x49\x36\x66\xd7\xf9\x5f\x58\xa3\x19\x2c\x4e\x5e\x63\x2d\xbb\xaf\x32\x2a\xb4\xee\x2a\xeb\x74\x80\xaa\xd8\xa5\x94\x9d\xc4\x9a\xd4\xe8\x41\xe0\x34\x73\xbc\x6c\xb0\xfb\x4c\x33\xa9\x16\xb0\x4e\xa9\x58\x1f\xdd\x72\x88\x39\x6f\x7f\xdb\x7b\x61\xe3\x30\x99\xde\xd5\x36\x5a\x7c\x16\xfb\x16\xc2\x09\x37\x90\x44\xe5\xb3\x9c\x4e\x95\xa5\x14\x40\x3b\x51\x9a\x9e\x1a\x90\xbe\x03\xa4\x16\x65\xf1\x00\x9c\xf3\xa2\x34\xb6\xdf\xde\x48\x14\x95\xe1\x4d\x26\x5f\x5c\x00\x9e\x8b\xb2\x98\xe8\x35\xd7\x93\x55\xcd\xd4\x5d\x1b\x76\x3a\xdc\x9b\xee\x49\xc4\x29\x8f\x91\x06\xb2\xc1\x79\x10\xac\xc2\xd5\x0e\x12\xe7\x0c\x20\x26\x8e\x00\x55\x12\xe4\x11\x08\x07\x92\xc9\x80\xff\x4d\x19\xf9\x6e\xb9\x29\x6c\x37\xc0\x5e\xc8\x1e\x72\xca\xe5\x05\xac\xfa\x8b\x5b\xb9\x33\x60\xae\xef\x5c\xfc\x78\x1a\x71\xb8\x4c\xd4\xdd\x92\xe1\x6f\xd5\x0a\x8e\x33\x57\xa4\x9d\x38\x85\xd5\x00\x37\x66\xed\x62\xec\x6e\xea\x28\x35\x53\x51\x60\xdf\x1a\xb8\x38\xfa\xcc\x9f\x6b\x4a\x45\xf9\x9e\xca\xe2\x96\xbe\xbb\xa2\x14\xc6\x98\xe2\x18\x53\x35\xc6\xec\x34\xb3\x63\x34\x19\x0d\x15\xe6\xab\xb9\x63\xcc\xe2\x79\x43\x43\xcc\x43\x10\x05\xe8\x89\x55\x5a\xaa\xb9\x01\xdc\x69\xf9\x3b\xc8\x39\x14\x5c\x1f\x0a\x85\x41\x34\x5d\xdf\x0a\x8d\x8e\xb9\x27\xb6\x44\x61\x47\xf1\x69\xc4\xf4\x05\x9d\xc5\x44\x74\xd5\x15\x1d\x01\x2c\xe2\x78\x80\x04\x76\x75\x3a\x80\xfd\xab\x16\x78\xb0\x65\x27\x0a\x75\xf9\xd7\x6e\x49\xc9\x7a\x5d\x36\x63\x50\xc6\x1c\xdb\x1b\x31\x90\xa0\x09\x84\x7d\x79\xb7\x70\x9f\xe6\xf9\xa7\xfd\x39\xbb\x63\x55\xe3\x07\x1d\xf7\xb4\x64\x02\xc1\x21\x9e\xeb\x1b\xff\xa0\x57\xe3\xa4\x2e\x0d\x97\xed\x7d\x75\xb5\x37\x0b\x11\x25\xa0\x47\x57\x4d\x36\xc5\x5f\xc5\xc0\xf7\x24\xa9\xaa\x8d\x8e\x83\x6a\xa3\x63\x57\x6d\x74\x3c\x1a\x7c\x59\x93\x42\x8e\x89\x01\xa5\xaf\xc3\xe9\x93\x15\x75\x83\x22\x68\x97\x01\x32\xa7\x97\xd1\x8a\xa4\x4a\xfd\x46\xc6\x74\xde\x5d\x24\x59\x72\xcb\x38\x99\xd2\x39\x04\x77\x82\x78\x70\xbb\x3f\x45\xaf\xa2\x31\x84\x65\x76\x02\xc7\x45\xd3\x38\x26\xe3\x38\x90\xcb\x23\xc9\xb2\x5c\xec\xa8\x90\x00\x3b\x26\x3c\x55\xb1\xf3\x29\x15\xb3\x1d\x0c\x94\xb5\xa3\x1c\x80\x8b\x9d\xa4\xd8\x49\x76\x78\x9e\x0b\x5b\xb2\xdb\x8e\x5b\x39\x85\x0e\x31\x9e\xee\x94\xac\x74\x64\x6d\xf4\x01\xfd\xc8\xee\x8b\x28\x89\x7d\x47\x17\x43\x32\x0e\x19\x49\x86\x6c\x34\x5a\xc7\x64\x42\x87\xed\x45\x92\x66\x72\x37\xcd\x0b\xb9\x43\x20\xf4\x4a\x7b\x44\x96\x74\x56\xa9\x8e\xd4\x82\x8d\x5c\x07\xb1\xec\xd6\x71\xcb\x0f\x36\xaf\xef\xdd\x05\xed\x9d\x2c\x9e\x1d\xfe\xa7\x8e\x42\x7c\xb2\xd8\xdb\x8b\xe1\x92\x32\x99\x4e\x41\xb3\x89\xbb\xa1\xfa\x85\xcc\x82\xc9\xcf\xf4\x30\xfa\xa3\x96\x57\x07\x34\xcc\x05\xc4\x1b\x52\x99\x75\x23\xfc\x4c\x96\x64\x42\x7a\x10\x4f\xd6\xab\xa0\xca\x96\x5e\xe6\xa5\xe7\x79\x4c\x70\x9f\x16\xb0\x4f\x0b\x26\x5e\x62\xe8\xb9\x17\x98\x16\xcd\xc3\xc7\x7f\x07\x43\x02\x85\x18\xea\x0b\xca\x72\xbf\xca\x72\xb7\x4c\x60\xdc\xa9\x5f\x93\xb2\x6d\xaf\xf6\x72\x9f\xf8\x91\x8e\x21\x5e\x46\x5e\x40\x10\x80\x64\xde\x4d\x44\xd4\xf3\x8e\xd4\x9d\x88\x38\x84\xa1\x04\x13\xa4\x52\x06\x33\x27\x7e\xc0\x0d\x61\x2a\xd7\x44\xe0\x3e\xf9\x56\xcb\x40\x49\xff\xd7\x98\xc9\xfc\x6d\x96\x0a\x56\x2c\x93\x71\x90\x8d\xc9\x59\x57\xb0\x42\x00\xef\xc2\xba\x59\xce\x17\x20\x28\x33\x41\xc6\x3e\x33\x39\x5a\x88\x01\xa0\xa3\x57\x04\x95\x60\xef\x99\xdc\x33\x98\x59\x49\x85\x9d\x36\x63\xe0\x4c\x19\xea\xa5\x79\xd6\xd8\xc6\x07\x51\xdf\x46\x5a\x18\x8f\x16\x59\xef\x55\xca\x95\xb0\x84\xde\x0a\x39\x40\x8d\x02\xee\x5f\xcd\x93\xdb\xe2\x15\xcf\x17\xf4\x15\x81\x68\x4e\x06\x3b\xdc\xd3\xdf\x09\xeb\xbe\x58\xf1\x02\x2c\x67\x5e\xe4\xd9\x98\x33\xc1\x7e\xca\x57\xd9\xa4\xa0\xac\x7b\x75\xfe\xee\xe2\xec\xf5\xc5\x3f\xce\xae\x2f\xde\x5e\x7e\x78\x75\xf1\xee\xea\xfa\xc3\xe5\xdb\x97\xe7\x1f\xae\xae\xdf\x5d\x5c\xfe\x0c\x06\x38\x68\x70\xa8\x67\xc1\xba\x97\xec\x13\x86\x1a\xb4\xef\x5e\xbe\x7d\x73\xcd\x99\x72\xce\xe3\x2b\x98\x26\x65\xdd\x8b\x97\x6f\xdf\xbc\x98\x25\xd9\x2d\x83\xce\x7e\xfd\xf9\xc3\xe5\xd9\x9b\xf3\xab\x5f\xce\x5e\x9c\xab\x3a\xf6\x63\xc3\xde\x61\xdd\x37\x17\x97\x17\x6f\xce\x5e\x7f\x78\x71\xf6\xcb\xd9\x4f\x17\xaf\x2f\xae\x2f\xce\xaf\x64\x03\xe7\xaf\xce\xde\xbf\xbe\xae\xbc\x56\xda\xeb\xf3\xec\x2e\xe5\x79\xb6\x50\x37\xaf\xff\xa4\xe2\xae\x31\x13\xb9\xe9\x67\xa8\x67\x23\x07\xa6\x37\x2b\x21\xbf\x5f\xa5\x8b\xe5\x9c\x05\x3e\xa8\x95\x7a\xc7\x8a\xd5\x5c\x68\x73\xaa\x34\xbb\xfd\xf5\x0d\x65\xdd\xd7\xf9\xa7\xd7\xf2\x82\x83\x87\x17\x79\x36\xc1\xd3\xe3\xda\x5f\x05\xc2\xaa\xb2\xee\xfb\xcb\x97\xe7\xaf\x2e\x2e\xcf\x5f\x7e\x78\x77\xfe\xea\xfc\xdd\xf9\x25\x80\xe9\xf2\xfd\xeb\xd7\xce\x0b\xc7\x69\x3f\x91\x8c\x6f\xd4\xa8\x65\x62\x92\xb2\x4a\x04\x43\xa7\x11\x10\x8e\x4d\xd3\xf9\xfc\x72\x35\x9f\x17\x71\xf4\xf4\x49\x8c\x36\x91\x8d\xfc\x59\x32\x29\x07\xad\x56\xe8\xa2\x72\x72\x0f\x82\x27\xf7\xc0\x3d\xb9\x07\xa3\x41\xbb\xb8\x2f\xc6\xc9\x7c\xde\x6e\x05\xc6\x38\x64\x23\xfa\x05\x0b\xd8\x92\x92\xd2\x22\xba\x20\x18\x30\x0b\x15\x95\x33\x20\xc7\x21\xdc\xba\x5a\x2f\x31\xe7\x09\x81\x3b\x14\x1f\x6c\xed\xb3\xa9\xa8\x84\x08\x24\x59\xfc\x25\xeb\x16\x4b\x49\xa0\xc9\x4a\x90\x9f\x15\x7b\xae\xf4\xe3\x28\x08\x4a\xd3\xe0\xa3\x56\xd6\xc5\xe1\x9f\x66\xe6\x2b\x80\x6f\xe0\x3e\xa3\x99\x94\x96\x0f\xc4\xa4\xd6\xa3\xf5\x6b\xed\x28\x40\xd2\x81\x06\x14\x4b\xce\xee\xb4\xed\xc4\x66\xcb\x5a\x67\x4f\x61\xec\x1c\xad\x4d\xf8\x79\x95\x4e\x94\x79\x97\xbc\x01\x6b\x7d\x0f\x5d\xb3\x2c\x47\xf4\xbe\xad\x6d\x6f\x83\x1e\x59\x2d\x21\xa5\x94\x9d\x4e\x07\x48\x84\xb3\xd3\xd9\x40\xa5\x98\x39\x9d\x0c\x76\xfb\xf0\x63\x39\xd0\x21\xa7\x29\xd5\xa1\xa8\x4f\xe5\x3d\x31\x86\xf8\x68\x60\x5f\xcd\x4a\xba\xfa\x1a\x79\xe7\x14\x84\xd5\x59\x49\x0f\x01\x81\x72\xaa\xc7\xb8\xe2\xd7\xf7\x9d\xb6\x30\x70\xb0\x6c\xf3\x5b\x2e\x61\xdd\xa4\x04\x28\xda\xda\xaa\x55\x79\xaa\x4a\x32\x47\xbf\xb7\x92\x48\x8b\x77\x3a\x51\xb8\x20\x55\x80\xb5\xba\x1b\x6d\x8f\x14\x1b\x0b\x8b\x72\x5c\x23\x6f\x5b\x00\x80\x57\x92\xf2\xfd\xf7\xec\x27\x68\x7c\x8a\xa3\xc4\xfc\x67\xad\x30\xc2\x35\xd6\x6e\x50\x56\xdb\xc3\x95\x90\xb0\xf6\x98\x50\x85\x76\x7b\x31\x59\xea\xdf\xfd\x98\x2c\xbe\x56\x41\x06\x2a\x88\x6f\xb0\xd8\x44\xdf\x9f\xfc\xa7\x3c\x9f\xbb\xc0\xb7\x6a\x65\x81\x5f\x83\xd2\x7e\xe6\x6a\xd8\xaa\xb7\xd4\x26\xe3\xa3\xad\x6c\x48\x96\x09\x17\x60\x68\x03\x13\x85\x04\x2c\x9e\xb5\x79\x1c\x89\x78\x1b\x2b\x9c\x2d\x0d\x6a\x8c\xc7\x39\x3a\xfc\x00\x50\x60\x0c\x01\xcf\x1f\xfb\x71\x28\xac\x75\x8d\x12\x5c\xc9\xbd\xce\x86\x62\x44\xef\x23\x1e\x3b\xee\x17\xda\x76\xf0\x94\x75\x7f\xcb\xd3\x2c\x6a\xb7\x75\xb0\x45\x85\x22\x7c\xbb\x05\xc7\x5c\xef\xde\x42\xbe\xad\x5f\xb6\x77\x0d\x6a\xea\x8a\x5c\x79\xbb\x9f\xb6\xdb\x83\x2b\x93\x22\x20\x81\x7c\x7b\xfd\x9a\x1c\x91\xf9\xb2\x0f\xa2\x3a\xc5\x79\xe4\x10\xf6\xab\xc4\x5b\x2a\xbf\xf7\x88\xc7\x11\x23\x19\x64\x59\x8e\xe5\x82\xcf\xf3\x64\x02\xfa\x42\x3f\x3e\x2d\xc9\x95\x95\xad\xec\xf4\xd1\x86\x4e\xb9\xa3\xec\x54\xf1\x47\x23\x2e\x9b\x76\x39\x2b\xdb\xda\xd1\x36\x53\x50\xe3\x93\x6d\x28\xf6\x03\x42\xe5\xea\xb6\x89\xd3\xda\xf1\xf6\xad\x81\x3c\xcd\x7d\xce\x4b\xcf\x09\xcd\x4f\x87\x20\x2c\x40\x9e\xc2\xef\x1e\xe3\x84\x92\xc4\xf6\xfe\x74\x13\x68\xec\x2a\xd8\x20\x06\x1c\x47\x82\x4d\xdb\xc8\x6e\x6f\x92\x65\x14\x0f\xb3\x51\xcb\xdc\x6c\x69\xa7\x03\xb1\x2a\xc0\xa5\x7d\x3e\x55\xa5\xa3\x2c\x8e\x89\x07\xdd\xd4\x8e\xe8\xa0\xd7\x38\x22\xf9\xff\x41\x8b\x95\x72\xfa\x70\xb2\xbb\xeb\xc0\xf4\xf1\x77\x4c\xca\x5f\x3c\x67\x88\x7a\xe4\xa6\x97\x27\x5b\x6d\xe5\x12\xa4\x70\x0d\xe2\x56\x7a\x1a\x61\x96\xf4\x74\x78\x30\x8a\x89\x79\xe8\xbb\x0f\xbd\x51\x1c\x0f\x74\x41\xc5\xdd\xd7\x3e\x38\xab\xda\x38\xb2\xdd\xdd\xf0\x88\xfc\xfd\x7e\x3a\x19\x2c\x6d\x8b\xfd\x9e\xaf\xd6\xf1\xb6\x9d\x0f\x35\x8d\xfb\xdd\x12\x5c\x09\xcf\x6d\x4e\x15\x6d\x2b\xef\xf5\xc9\x4b\x7d\x96\x71\x85\x4d\x58\xab\xa7\x62\xa3\x72\xc0\xf2\xf1\x93\xf4\x79\xef\x24\xdd\xdf\x8f\xbf\x64\xc3\x74\xbf\x3f\xf2\x87\xb1\xf6\x67\x28\x79\x7e\xb5\xa0\x68\x61\xd8\x7e\xf1\xfe\xdd\xbb\x8b\xf3\x97\x3b\x2f\xde\xbe\xf9\xe5\xed\xe5\xf9\xe5\xf5\x0e\x5c\xaa\x10\x30\x6c\x67\x98\x4e\xe8\xa3\x69\xaf\x37\x65\x37\x4f\xf7\x93\x1e\x9b\xee\x1f\x1d\x1f\x3d\xde\x7f\xfa\x94\x25\xfb\xc9\xf8\xf0\xe0\xc9\xf4\x49\x2f\x19\xb3\x64\xd4\xb6\x98\xf2\xc6\xb9\xa3\xa2\x5d\xf6\xf0\xb0\xcb\x86\xb7\x23\xc5\xa0\x7c\xd8\xe8\x0b\xe1\x5d\xae\x09\x07\x2b\x4f\xf9\x7b\x78\x3b\xa2\x26\x51\x81\x47\x8c\xac\xb2\x4f\xdc\xf3\xbf\x91\x4b\xc5\x19\x38\x1d\x7b\x51\x07\x5a\xbe\x96\xe7\xe4\xc4\x6c\x12\x50\xda\x40\xf0\xe9\x94\x72\x35\x04\x90\x11\xcb\x4b\xc4\x95\x9f\x2c\x39\x03\x0d\x55\xe6\xbc\x94\x5b\x21\x4b\x16\x6c\xd2\x5d\x30\x7e\xcb\xa2\x4c\x3d\xc5\x31\xd9\xbd\x89\x52\x63\xa8\x94\xb6\x04\x4d\xd7\x6b\xd2\x10\xf6\x41\x0d\xb3\x12\x83\xc0\x55\x00\x29\x56\x83\x1a\xe0\xc8\x4d\x76\xea\x89\x78\x74\xb6\x69\x4d\x7c\xc8\xd5\x38\xe5\x7b\xda\x05\x70\xc0\x03\x91\x0a\x3e\x39\xc4\xf2\xb9\x2c\xef\xdd\x61\xa6\xd8\xb9\x6b\x0e\x0a\x24\x25\x7b\x78\x68\xbc\x0c\x6d\xdd\xcf\xce\xf5\x89\xf9\x59\x2c\x5d\x6f\xf2\x63\xb0\x4e\xc7\xb6\x47\xdd\xf6\xfe\x74\xfd\xe6\xb5\x6d\xed\x6a\xeb\xd6\x2a\x3c\x44\x37\xcb\x27\xec\xfa\x7e\xc9\x6c\x6b\x6f\x9d\xd6\x30\x03\x8d\x2d\xbf\x6e\x94\x6d\x7c\x50\x5a\xef\x06\x5b\xa6\xe6\x84\xe1\x96\xd7\x93\xec\xbd\x80\x78\x37\x9a\x7e\xe3\x24\x75\x8d\x05\x49\xaa\xfc\x84\xda\x28\xe2\xdb\x17\xec\xb3\x68\xcb\xb7\xc9\xad\x72\x9f\xc3\xf2\xc6\xac\x2c\xf5\xcc\xca\x36\x84\x26\xaa\x31\x66\xaa\x72\xce\xcd\x76\x6f\x22\xb9\x6d\x09\xc7\x50\xaf\x6c\xeb\x16\x3f\x3c\x54\x5f\xd2\x92\xed\xb8\xd6\x94\x19\x42\x18\x0c\x9a\x02\x76\x55\xda\x63\xc5\x37\xb9\x6b\xb1\x5d\xc5\xec\x44\x82\xea\xed\x2c\xd7\xf8\x94\xd9\x5d\x1d\x63\x11\xa5\xa5\xcc\x27\x6a\x5f\x38\x26\xb2\x8e\xc5\x6c\xac\x83\xc0\x90\x8f\xff\x66\x9f\xd8\x0d\xf6\xd7\xbc\xc2\xf1\xd6\x72\x07\x70\xee\xd1\xc8\x99\x34\x58\x10\x34\x31\x34\xdb\x58\xfd\xc1\x5e\xd0\x8b\xef\x71\x2f\x7a\x0f\x05\xc6\x26\x17\xe3\xe1\xe1\x1c\xfe\x9a\x5c\x4e\xf6\xc8\x3d\x3c\x54\x8f\xed\x3a\x12\xf1\x69\x7f\x10\xc9\xe5\xe8\x74\xe4\x85\x72\xda\x1b\x7c\x96\x2f\x0f\x07\x81\x1e\x24\x82\xe8\x74\xfa\x20\x4a\xb0\x27\x5e\x16\x3f\x1a\x5c\xc9\xff\x8e\x07\x7d\xe4\x9e\x90\x02\x7b\x42\x02\x7a\x03\xf7\x22\x35\x5b\x94\xd3\x73\xd9\x82\xc5\x91\x42\x92\x11\x4c\x89\x54\x8b\x28\x46\x8b\x11\x94\x3a\x4a\xc4\x15\x71\x87\xd4\x7b\xba\x6d\x47\x88\xf5\xbc\x1e\xc5\x57\xf4\x74\x78\xb0\xa9\x27\x79\x72\x2c\x7e\xa0\xe7\x11\x77\xa7\xc5\x15\xad\x5d\xd7\xdd\x35\xfb\x2c\xa2\x34\x3e\x01\x9e\x10\xfd\x97\x63\x30\x3a\xd7\xf6\x89\x7f\x4b\x85\xa2\x38\xce\xa2\x9c\x08\x92\x3a\xc4\xda\x61\x6f\x5b\x28\x34\x4c\xf8\x15\x4f\x6e\xe5\x07\xa5\xcd\xc1\x86\xfb\x3f\xa0\x61\x50\xf1\x3a\x8d\x1e\xf8\x90\xb4\xe7\xa2\x94\xec\xce\x56\x38\xac\xa9\x60\x52\xd0\x59\xc6\xea\xa8\xbe\x6d\x3f\x6d\xa5\xad\x72\x5c\xdb\x7a\x4d\x8d\xfe\x41\x3d\x71\xec\x93\xa3\x25\x3e\x41\x85\xa0\xe7\xce\xca\xf5\x0f\xb7\xe4\x00\xf8\xf3\xe7\x87\x3a\x97\xdc\xe3\x0e\x37\xae\x6d\x9a\xcc\xf7\xec\x77\xfa\xfa\x75\xa9\x7f\x15\x16\x4f\x92\x51\x6e\xe9\x83\x9a\xd2\x26\xde\x9c\x57\xfa\x10\x4b\x9f\x67\xe3\x7c\xc2\x26\x36\x2b\x1b\xf7\x8a\x1d\x0d\xe0\xbf\xe3\x8d\x23\x59\x5b\x58\x1c\xd5\x6f\xb6\x16\x3a\x8b\xaf\xb4\xf3\x9d\x40\xee\xdd\x01\xe5\xf1\xe6\xea\xca\x74\xdf\xee\x5a\xa7\x76\x33\x17\x0b\x3c\x23\x30\x62\x90\xc7\x46\x09\x0b\x78\xbc\x9f\x99\xf5\x86\x04\x8c\x4e\x7b\x0d\x0c\x64\xcb\x3d\x41\x0e\x8a\xe9\x37\xb0\x83\x28\xa5\xf0\x8a\x37\xf0\x68\x2d\x1c\xa8\x5b\xfe\x68\xd3\x5e\xf3\x56\x48\xf3\x44\x2d\x56\x49\xd1\xe3\x4a\x32\x1e\x35\x48\x63\x24\x4e\x80\x2c\x39\xce\x20\x1e\x1d\x94\xb8\x40\x95\x1f\xc7\x0e\xb2\x19\x06\xf5\x67\xcb\x0d\x77\xe7\x1d\xb1\xa3\xc7\x61\xbe\x53\xb5\x81\x5c\xac\x53\xfc\x51\xfd\x36\x02\x0c\xaf\x58\x54\x7e\x8a\x5b\x8a\x7b\x49\x0a\xe0\xdd\xe5\x6a\x3e\x77\xa6\x74\xdc\x80\x44\x6d\x8b\xa8\x5c\x56\x32\x1a\x61\xa4\x33\xba\x3f\x6b\x63\x93\xc6\x1e\x56\xd3\x99\x82\x40\x5e\xa2\x5e\xe9\x45\xd2\x6a\x31\x52\xd0\xd4\x4d\x46\xba\xa2\x86\x79\x4e\xa7\xd1\xea\x79\x2f\xfe\x92\xd0\xa4\x3b\x96\xb8\xd7\xb1\x22\x98\xd3\xde\xc9\xfc\xd9\xea\x64\xbe\xb7\x17\x27\xae\xf0\xa9\x18\xce\x47\x24\xef\x26\x22\x9a\xc7\x92\x23\x76\x87\xe1\x8e\x20\x81\xc4\xc4\x92\x38\x77\x36\xc0\x71\xd3\x2e\x2c\x8b\x4f\xd2\x69\xe4\x5f\x88\x69\x1c\xa7\xfa\xf0\x76\x3a\xac\x7b\x9b\x8b\x1c\x36\xe9\xbc\x60\xca\x48\x05\x18\xfa\xac\xe4\xd8\x21\xf1\x63\x8e\x67\xdf\xa9\x46\x2a\x77\xeb\x8b\x28\x77\x51\xd2\x71\x93\xa0\xee\xab\x06\x2b\xef\xf1\x6f\x18\xac\x53\x6d\xf3\x60\x9b\xe5\x80\x5a\xec\x85\x43\x86\xe6\x29\x58\x52\x9a\x2e\x6c\x53\x0d\x87\x00\xab\x6e\xa2\x54\x5e\xb8\x2e\x4a\xc1\x69\x0a\x17\x7b\x3f\x3a\x0c\xf6\xc8\xb2\x3b\x95\x56\x17\xb0\x38\xd7\x58\x5c\xe4\x21\x19\x7d\xc4\xed\xa5\xd0\x94\x60\x67\x6b\x8f\x4f\x60\x10\x93\xa2\x60\x5c\xb4\x51\x66\xaf\xfc\xe5\x78\x77\x0c\xfe\x42\x5b\xb9\xcc\x86\xdc\x9d\xcc\x14\x35\x23\x62\x73\x77\x28\xf0\x12\xe1\xb3\x26\x01\x9d\xab\x6f\x4e\x29\xc7\xa3\xd7\x44\xc7\x45\x89\x23\xd7\xbf\x2c\x8a\x61\xef\xab\xdc\xef\x86\x09\xab\x49\x30\xf3\x35\x5e\x84\x60\x13\xcd\x49\x86\x00\xfb\x6d\xb5\x58\xee\xa7\xd3\xfd\x2c\x17\xfb\x98\x47\x71\xd2\x96\x5f\xc1\x81\x36\xab\xe3\x55\xbf\xcd\x3d\x68\x13\x5c\x60\xb5\x42\x36\x99\xee\x28\x5a\xbb\xac\x9b\xcc\x3f\x25\xf7\xc5\x3b\x03\xad\x4e\xc7\x61\xbc\x33\x17\x6b\xa8\x08\x05\x13\x00\x72\x35\x4a\x81\x3f\xbb\x99\xef\x7e\xab\x81\x5e\x93\xf8\x65\x7b\x57\x64\x34\x43\xe7\x5a\x88\x91\x4e\x14\xa8\xef\xf5\x3e\xcd\xbc\x20\x1c\x5f\xa7\x53\x0a\x49\x29\x3c\x3b\x4a\x3d\x79\x3b\xa1\xda\x34\x2f\xa6\x66\x65\x48\xea\x3d\x0c\x7f\xae\x2c\x29\x11\x7e\x37\xcc\x4d\x7a\xe2\xa8\xea\xb5\x09\xb4\x7a\xac\x57\xc5\xbb\x0d\x35\xfa\x2e\x85\x26\x8a\x4e\x31\x4b\x36\x6e\x48\x64\x72\xc3\xe6\x7b\xed\x9d\x61\x7b\x0f\x9e\x3f\xdc\xae\xd2\xc9\x5e\x7b\xd4\xf6\x79\xe0\x06\x8a\x32\xc4\x2d\x01\x07\x58\xa7\x58\x70\x98\xa1\x66\xc2\xb2\xd2\xec\x0b\x95\x47\x74\x8b\x96\x0f\x1b\x6e\x66\xbf\xe5\x7c\xc9\x32\x34\x7a\xda\xa6\xdd\x06\xba\xbe\x89\x89\x74\x7b\x71\xd8\xc7\xa3\x00\x39\x45\xf8\x16\x8a\xad\x70\x97\xa1\x5b\x5b\xd0\xd4\x0e\x49\x5f\xd6\x45\xed\x65\x2d\x68\xa1\xb1\x76\xe0\x8e\x2e\xe2\x78\x5d\xe9\x24\x8f\x63\x4e\xf3\x6a\x27\xab\x70\x27\x79\xdc\xe2\x74\xd5\xd0\xc9\x0a\x08\x31\x07\x78\xa0\xdc\x62\x8b\x5c\x30\x03\x42\x92\x10\x97\x1b\xa8\x10\xe2\x4e\xe5\x7c\xe9\xd7\x75\x16\x33\x2c\xd9\x71\xb8\x22\x47\x85\x2a\x7a\x10\xf7\x1c\x92\x84\x29\x6b\x89\xee\x74\xae\x02\x41\x93\x1a\xad\xab\xc0\x28\x42\xb2\x80\x33\x22\xa8\xa6\x47\xe3\x4a\x65\xc2\xf2\x1f\xa7\xe6\x78\x9e\x17\x76\x1e\x2d\x50\x22\x55\x6c\x5b\xed\x66\x1f\xf6\x46\xf2\x86\x18\xf6\x47\xc0\xbd\xdc\x75\x8b\xf1\x8c\x4d\x56\x73\x76\x21\x37\xf9\x7c\x8e\x57\x2b\x87\xf8\x81\x26\x5a\xc3\x2d\x13\x2f\x99\xb2\xf5\xcb\xb9\xa4\xbc\x53\x79\x5f\x64\xec\x13\xbc\xcd\x55\x8a\x4d\xc9\x1d\x5a\xf0\x37\xe9\x28\x9b\x75\xd7\x24\xa1\xb9\xb1\x88\x2e\xa8\x4a\x77\xcb\xc8\xaa\xb4\xe1\xe7\x1e\x1c\xc0\x8c\x7a\x6c\x0c\x12\xb3\x5b\xb0\xa5\x56\xfb\xe8\xed\x12\xfd\xcf\x0a\x32\xab\x1a\xbd\x4e\x24\x6b\xa0\x98\xee\x31\x29\xc8\x8a\xcc\xc8\x34\x6e\x35\x2c\xb9\x9c\x9f\x01\x53\x42\x30\x1e\xce\x92\x26\x12\x4c\xd7\xc9\x6d\x34\xf1\x89\xc7\xeb\xe4\x36\x8e\x96\x21\x49\xd7\x6f\xd1\x92\xc8\x06\x34\x3d\xf7\xdb\xf7\x6b\x06\x14\x11\x92\x6a\xf8\x81\x5a\xc0\x24\x7b\xb6\x5a\x01\x35\x10\x4d\xbe\xf0\x36\x2a\x03\x74\x0c\x0c\x47\xce\xf7\x7d\x17\x6b\xd9\xb5\x53\x2d\xaa\xf6\xba\xc4\xde\xad\x4b\xcc\xad\xf6\xbc\x74\x06\xd3\xca\x2c\x9d\x92\xc6\x0f\x0f\x91\xbf\x6f\x55\x29\xb3\x1e\x9c\x88\xb8\x1a\xd3\x23\xf3\x63\x2f\x14\xfa\x0e\x3b\xdc\x82\xa5\x00\x76\x35\x5f\x1e\x96\x76\xad\xa7\x16\x4f\x6a\x3e\x65\xb1\xe4\x4d\x4f\xeb\x04\x4f\xda\x02\xc1\x39\xce\x85\xfc\xac\xb3\x3b\x83\xfd\x29\x64\x62\x2f\x1c\x94\xd0\x24\xc9\x49\x71\xcc\x39\x8e\xb9\x6e\x60\x5c\x0e\xcc\x3f\x4f\x92\x6b\xd6\xab\x3e\xa7\x79\xcd\xa0\x73\x35\x68\x32\xa6\xe5\x61\x97\xed\x66\xa3\x84\xac\xc8\xee\x6e\x4a\xe6\x65\x5e\xaa\x08\x9d\x85\x97\x51\x41\xc6\xe6\x24\xbc\xfc\x5e\xaa\xdd\x8f\xf7\x91\x18\x63\x5e\x4b\xc6\x43\xec\xdd\x7d\x9c\x83\xa1\xdf\x31\x5c\x88\x1f\x62\xc3\xd3\x8c\x7d\x55\xc8\x90\x4d\x27\xc2\x0c\x4c\x9f\x09\xab\x22\xb3\x87\xc2\x3d\x01\x5b\xaa\xc8\x32\xab\x22\xd3\xfa\x31\xa3\x6a\x21\x70\x80\xec\x51\x30\xd0\xbd\xf4\xed\x69\x77\xe4\x15\x96\x7f\x5c\x2d\x03\xaa\x4c\x58\x07\x20\x3d\x2f\xea\x75\xf4\x0a\x69\x55\x75\x46\x4e\x0e\x16\x85\x07\x98\x48\xb4\x8b\x29\xe8\xf0\xb3\xa0\xbf\x7e\x5d\x28\x14\x47\xc1\xfa\x3d\x51\x74\x3c\x6d\xb9\x8d\xff\xc1\x9d\x90\x1c\xe9\x34\xe2\x60\x45\x59\x8e\xcd\x61\x87\x80\xbc\x1c\x1c\xec\x74\x1a\xdd\x48\x4a\x31\xa3\x1c\x28\xa0\x9d\x74\x1a\x55\x54\xc6\xbc\xd3\xe1\xf1\x97\x8c\x5e\x7a\xf9\xb3\x38\xe1\x16\x36\xc6\x20\xcd\x71\xb7\xbb\x37\xb9\xb5\x2c\x58\x78\x18\x26\x24\xab\x78\xf7\xbb\xc6\xae\xa2\xd6\x55\xc3\x2c\x48\x4b\x47\x81\xe8\x74\x6e\x94\x66\x54\x19\xd7\x7e\x40\xfb\x66\x13\xcb\x87\xbc\xde\x14\xce\x26\x2d\x84\xab\x3a\x0c\x99\x08\x32\x37\x92\x03\xdb\x4a\xaf\x68\x4d\x02\x87\x23\xb3\x84\x69\x21\x30\xc6\x96\x08\xc4\xd8\xfa\x14\x09\x27\xca\x56\xdc\x02\x39\x91\xb6\x63\xc3\x3e\xdd\x5c\x6b\xda\xc1\x5b\xd9\x01\xee\xb4\x2b\x71\x2e\x5f\x39\xda\x95\x9e\xbc\xa5\x90\xce\xc0\x9c\x87\xfd\x41\x2f\x76\xde\x5e\x27\xb7\xa7\x07\xf8\x6a\xc9\xd9\x32\xe1\x90\x10\xfb\xf4\x08\xdf\x29\x8a\x04\x5e\x3d\xc1\x57\x06\x57\xfc\x29\xcf\x3f\x9e\xf6\x1f\xe1\x6b\xc4\x60\xf0\xf2\xf0\xc0\xef\x05\x68\x9c\xd3\x47\x7e\xa3\x2f\x92\xf9\x9c\xf1\xd3\xfe\x81\x6e\x58\x21\x08\x68\xe0\xe0\xf8\x91\x57\x16\xa8\xc2\x6c\xcc\x4e\x8f\xfb\xb2\x69\x6b\x05\xf1\xbb\xeb\xd7\xb2\xbb\x1b\xb1\x8e\xd0\xf6\x8b\x8f\x1a\x74\x96\x8e\x84\x19\xe5\xcb\x1f\x35\xf1\xe5\xb2\x54\x8f\x1b\x14\x7e\xaa\x09\xe0\x14\x74\x1b\x72\x2f\x5e\xfb\x0d\x6c\x6b\x44\x99\x19\xf6\x49\xff\x2a\x2a\x57\xa6\x2f\x79\x07\x42\xb4\xea\xd5\xd7\x60\x66\x29\x87\x77\x11\xe5\x64\x45\x0a\x92\xb8\x83\x6c\xd0\xb3\x95\x14\x16\x15\x1a\x39\xa5\x99\x21\xa7\x72\xfa\x4a\xd9\xde\x79\x7e\x82\xe8\xd0\x10\xcb\xb9\x7d\x99\x18\x7c\x30\xc8\x08\xd6\x1b\xa4\x64\xec\x54\x18\xe4\xe8\x36\x01\xd8\x15\x03\xcc\x2b\x4c\x0b\x91\xe5\xe1\xa7\xba\x10\xd4\x89\xf7\xd5\x15\x8e\xc5\xe4\xe3\x10\x55\x95\x21\x4d\xd2\xb7\x9c\x2a\x29\x68\x52\xd2\x96\xaf\x1a\x81\x9f\x03\x0a\xae\xe3\xac\x30\x6a\x2a\xa9\xa0\xd8\x42\xe1\xd7\xd0\xaa\x49\x82\x3f\x86\x14\x23\x10\x92\xea\x46\x72\xb3\x4a\x80\xd8\x23\xbc\xbb\xca\x38\x4b\xc6\x33\xd9\x77\x1c\xc5\xad\x8c\x16\xeb\xa4\x62\xeb\xfa\x38\x20\xd9\x95\x37\x9f\xa3\xdc\xc4\xad\xd5\xba\x89\xd2\xf8\x94\x53\x25\xe0\x19\x08\xfa\x2a\x8a\x38\x35\xb4\x7a\x5c\x59\xc2\xd4\x2c\x21\x6a\x19\xdd\x75\x2c\xad\x9e\x30\xcb\xca\x37\xaf\xa3\xc3\xa8\x3d\xf6\x54\x00\x19\xb8\x80\x88\xae\x32\x93\xd2\x3c\xdf\x4a\xc2\x13\xa2\xd8\xc4\x5a\xed\x92\x5a\x01\x04\xf0\x6b\x15\xa1\xc3\xee\x4d\x94\x34\xc0\x32\xa5\x89\x8e\x66\xeb\x68\x15\x1f\x6f\xab\xa5\x0c\xd9\x40\xfb\x79\xcb\x14\x59\x9e\x3d\x7f\x7e\x44\x0a\xfa\xa4\x93\x91\x15\x1d\x8e\x5a\x47\x9d\xac\xd3\x59\xa9\x7e\x95\x7f\x6a\x4c\x0e\xdc\x77\xe0\xac\x1a\x93\xbe\xfb\x4e\x79\xae\x4a\xba\xc9\xf1\x00\x4d\x89\x3c\xd0\x09\xd9\xdd\x2d\x62\x92\x6a\x75\x1b\xb8\x7d\xda\xe9\x3c\xde\xac\xb2\xc5\x46\x95\xe7\xb0\x70\x6d\x67\x37\xe2\x40\x00\x39\xe6\xa8\xb0\xc8\xd0\x91\x1e\x3c\x6e\xb6\x72\x75\xed\x6f\x3d\xb5\xaf\x87\x17\xd3\xae\xdd\x74\x2d\xb9\xa8\x9d\x4e\x94\xd4\xb8\x46\x31\xa7\x2c\x15\x68\x6b\x59\x45\x57\x88\x9a\xac\x4e\x40\x73\xab\xa9\xeb\xe9\x98\xb2\x22\x88\xd8\xf2\x18\x84\xe9\x29\x49\x48\x8e\x41\x4f\x0a\x9a\x00\xff\xa2\xbb\x98\xd3\xc2\xf1\xa3\x96\xd7\xf8\xef\x51\xea\xb5\x4c\x8e\x62\x35\xe8\x31\xcd\x55\x76\x69\xe4\x7e\x0a\x32\xb5\x6f\xb2\x64\xc1\x0a\x32\xa3\x2b\xf7\x8e\x8e\xe6\x44\x21\xa2\x59\xfc\x25\xef\x8e\xe7\x2c\xe1\x8e\x56\x71\x42\x7b\x27\x93\x67\x63\x4d\x71\x4c\xf6\xf6\x62\x3c\xbc\xe3\xe1\x64\x64\xcb\x2d\xe9\xcc\x31\xc4\x24\x0b\x3a\x53\x96\xa0\xe4\x8e\x9a\xc4\x48\xf7\xb4\x77\x72\xff\xec\xee\xe4\xde\x36\xb2\x1c\xde\x3b\x8d\xdc\x7a\x7e\xd9\x8b\x98\x7c\xa0\xbd\x93\x0f\xcf\x6e\x75\xef\x1f\x6c\xc5\xc5\xf0\x76\xf8\x61\x34\x8a\x5b\x39\x6e\xe0\x8c\xdc\x92\x29\xb9\x23\xbb\xbd\x78\x9d\x69\x0f\x65\x95\x6d\xc9\x3e\x9a\xcd\xd8\x74\x9f\x5a\xa6\xd3\x97\x9a\x28\x49\x8e\xdd\x11\x20\xcc\xd1\x4b\xb4\xa2\x79\x79\xa9\x8b\xca\x52\x27\x06\x01\x2a\x91\x79\xeb\xf7\x68\x45\x1e\x1d\xc9\x2d\x38\xaf\x48\x72\x74\x0c\xed\x7e\x87\x93\xa9\x2d\xfe\x44\x96\x9e\x96\xb4\x7b\xda\xad\xdd\x94\xea\x1f\x40\xb9\x99\x6b\x88\x1f\xa3\xdf\x4f\x61\x22\x22\x83\xbe\x0e\x07\x45\xa6\x64\x4e\x66\x64\x77\x77\x0c\x30\x95\xaf\x4c\x56\x90\xc2\x8a\x82\xa0\xf5\x83\xe3\x47\x71\xa7\xb3\x1b\x90\x0a\x49\xaa\xb3\xc4\x09\xff\x2d\x5a\x92\x09\x29\x88\x6b\xae\xfe\x64\x13\xa9\xe0\x9f\xdf\xe0\x71\x83\xb3\xec\x4b\xf2\xf2\xb8\x95\x04\x24\x79\xae\xf7\x43\xbf\x24\x46\xbd\x61\xb7\x69\x06\x52\xdb\x9f\x79\xbe\x52\xb6\xed\x25\xb9\xac\xf2\xa3\x55\x46\xf3\xce\x14\x0e\x4b\x2d\xd5\xca\x47\xd9\xa7\x9d\x3f\x39\xf2\x8e\x66\x57\x85\xef\x90\x77\x6c\x90\x71\x34\xca\x00\x0b\x26\x5c\x49\x47\x41\x76\x77\x33\x49\x4a\xa8\x3d\xf3\xa7\xe6\x68\xb0\x86\x92\x2f\x02\x01\xec\xc6\xf3\xa4\x28\x9c\x6c\xd8\x5a\x4a\xb6\x31\xfd\xb5\x33\xa2\x80\x93\xab\x12\xe5\x7e\xb9\x53\x91\x3a\x09\x60\xb6\x65\x32\x66\x83\x8c\x08\xbe\x2a\x44\x9a\xdd\x0e\xf8\xba\xd5\x86\xee\xdb\x14\xec\xa1\xdd\xf1\xe8\x48\x08\xa4\x34\x83\x21\x1b\xd1\x54\x45\x4b\x32\x52\xd1\x92\xfb\xb0\x3f\x0d\x4c\xf2\xc4\x88\x50\x49\x9e\x40\xf4\x1d\x0e\xaf\xb4\x93\xea\x1c\x9f\xa6\x3b\xcf\x9b\xcb\x19\x85\x80\x74\x4e\x3a\xfc\x0d\xe5\x5d\x33\x41\x92\x50\xde\xd5\x53\x94\x68\xdb\x4e\x51\x80\xeb\x8d\xdc\x6f\xaf\x23\x77\xae\x71\x4c\x54\xd2\xc2\x5d\xe3\x32\x59\x6c\x96\x77\x09\x62\xb4\x2a\x70\x35\x9d\x94\xf5\x2e\x41\xa9\x57\x4a\x8a\x38\x5e\xaf\xe5\xb8\xa0\xcb\xba\x29\xaf\xca\x53\x06\x31\x16\x99\xd3\x28\xa5\x2b\x33\xef\x95\x37\xef\x95\x99\x37\xd9\x38\x7a\xcc\xd2\xe8\x4f\x61\xeb\x39\xcc\xad\xd7\x9c\xbf\xda\x65\x2e\xf9\x27\x8f\x6f\xec\xc3\xcd\xcc\x48\xdf\xe1\x2c\xdf\x57\xe2\xb2\x80\xbd\xfa\xcd\x9c\x75\x0b\xb0\xcf\x71\xd3\x86\x02\xdf\x76\xcb\x44\x24\xe2\x93\xfd\xfe\x2e\xa5\x79\xa7\x93\x06\x3c\xba\xf2\xbd\x3e\x49\x62\xc2\x51\xa2\xd5\xe9\x44\xfa\xa7\xdc\xbf\x89\x66\x5d\x9f\x6e\x32\x21\xab\x92\x49\xce\xf5\x96\x18\x4c\xeb\x5f\x74\x0d\x78\xa4\x55\x74\x27\xe9\xe4\x05\x5c\x2f\x5a\x89\x93\xf8\x8b\xc5\x3e\x2f\xd9\x58\xbc\x70\x54\x1b\x51\xfb\x65\xa9\x8e\xf2\x42\xff\xff\x69\x69\x63\x3b\x06\x54\xa4\x11\xef\x26\x6f\xbc\xea\xdd\xe1\x4c\xca\xbf\x3e\x70\x52\x25\xd6\xcf\x5c\x99\xb9\x7b\x65\x6d\x72\xdb\xfb\x21\xdd\x5e\x27\xb7\x97\xc9\x82\xf9\x3d\x87\xb8\x88\x0c\xc9\x94\x7e\x0d\x99\xe2\x2a\x9c\x9c\x71\x84\x99\x7d\x50\x3e\x29\xe2\x79\x6c\x14\x54\xd3\x12\x45\x43\x66\x2e\x15\xfa\x53\x34\x95\xcc\x7f\xa6\xd4\x44\x18\x60\x67\x46\x56\xa8\x1c\x95\x74\xaa\x3f\x68\x3c\x22\x3d\x7b\x44\xa2\x69\x23\x73\x9a\x38\x21\x5f\xb0\xfd\xb1\xdc\x07\x73\x64\x59\xf1\xf8\x5c\x43\x0d\x62\xde\x2a\x0e\xd1\xb1\x54\xda\xca\x69\xaf\xd6\xdd\xd2\x12\x1e\x09\x7d\x15\xe5\x0d\x62\x89\xa2\x46\x2c\x91\xfb\x8c\x6d\x12\x60\x67\x53\x3f\xe9\x5d\xea\x4e\xad\x2c\xa3\xb0\x64\x06\x77\xd5\x28\x4f\xb6\xe5\x8d\x32\x67\x6a\x56\xd5\xee\x6d\xde\x56\xa2\xd3\x97\xa6\x24\xc1\x4c\xa4\xb9\xb5\x68\xd8\x24\x8b\xf2\xda\xf2\x51\x5d\xc5\x8d\x33\xd3\xc9\x41\xfb\x40\xb8\x9b\xd9\x84\x88\xa4\xcc\x31\xe4\x73\xfa\xc8\x80\x79\x49\xb1\xa3\x59\x52\x9c\xdf\x25\x73\x8d\x6a\x53\x44\x8b\x1e\x61\x52\x72\x92\x95\xe5\xd5\x68\x72\xc7\x3c\xaf\x4c\xa1\x56\x5d\x11\xab\x47\xde\xb4\xeb\x9a\x33\x28\x23\x00\x79\x26\x95\xa3\x5c\x22\x2e\x81\x0d\x2b\x68\x82\x93\xdf\xef\x9f\x14\xcf\x69\xef\xa4\xd8\xdf\xd7\x97\x63\x32\x2c\x46\x92\x49\xa8\xb9\x29\xe4\xe7\x18\xce\xaa\x6a\x53\x5e\x19\x2b\xb2\xdb\xc7\x5b\x63\x2e\x6f\x0d\xc7\x02\x74\xbe\xd7\x27\xe3\x98\x64\xf6\xba\xd0\x3f\x87\xab\x11\x1d\x3b\xb3\xfe\xba\x0b\x23\x2d\xcd\x12\xf9\xcc\xd6\xfb\xa8\xdd\x51\x52\x06\x1d\x27\x0b\x02\x9a\xb1\x98\xc8\x2f\x69\x76\xc7\x38\xc4\xd0\x52\xa1\xb4\x9c\x4f\x98\xbb\xa5\x4d\x30\xd8\x96\xfa\x64\xa9\xf7\x66\x4f\xe1\xf2\x36\x46\x45\x5a\x15\x27\x3c\xfd\xfa\x2b\x24\xc4\x7e\x94\x8d\x30\x90\x45\x68\xa5\xf2\x12\x54\x41\x76\x10\x71\xe5\x24\x41\x3d\x95\xbd\x1f\xa3\x9c\xa4\x01\xe3\x90\x7f\x81\x28\xc6\x95\xab\x3e\x2d\x9b\x7e\x8c\xf3\xc5\x22\x15\x2e\xd3\x82\x74\xfa\xdf\x1a\x15\xee\x86\x00\xd1\xaa\xc6\xbc\x41\xe5\x9e\x77\x4d\x20\x35\xca\x89\xb9\x4f\x68\x46\x72\x8f\x4f\xa5\x29\xc9\x7d\x25\xbc\xa9\xd7\x26\xf9\x8f\xd4\x2d\x9a\x76\x8d\xbe\x1d\x97\x04\xd5\x48\xee\xa8\x5a\x5c\xab\x09\x05\x04\xf8\x52\x56\x6f\xff\x6a\x02\xcf\x76\xc0\xd1\x60\xa8\x02\xe8\x46\x85\xa5\xb2\xe0\x98\xa4\x93\x7d\x04\x89\x8a\x52\xd7\x96\x9f\xaa\x86\x75\x3f\x14\x48\x25\x93\x04\x0b\x33\x04\x92\x1a\x65\x0b\x8c\x02\x95\x35\x01\xee\x50\x08\xf0\x67\x76\xe8\x7b\xd4\xb1\xea\xe8\x26\xae\x5a\xf5\x57\x75\x64\x24\x15\x91\xcf\x59\x37\xcd\xa6\x79\xd4\x7e\x5f\xb0\x9d\xff\x19\xe7\x99\x60\x9f\xc5\xff\x90\x9d\x24\x9b\xec\xfc\x8f\x44\x4a\xcf\x96\x89\x98\x3d\x8f\xff\x67\x47\xe4\x3b\x10\xb4\x08\xe8\xe9\x1d\xc1\x16\xcb\x79\x22\x58\xb7\x1d\x13\x11\xb5\xe5\xbb\xb6\xd2\xbf\xfe\x9d\xfe\x0a\x5b\xf9\xe7\x06\x3d\xac\xd6\xc2\x16\x2a\x10\x16\xaa\xd7\xf2\x71\x32\xf7\x19\x50\x23\x57\x4a\x69\xef\x24\x7d\xa6\xef\x9a\x93\x54\xab\xcd\x72\x9a\x0d\xd3\x11\x49\xa8\x18\xe6\xfb\xfd\x11\xf0\xd4\x92\xf6\x53\x58\x33\xc7\x90\xcc\xaa\xe5\x61\x32\xa2\xc5\xba\x26\x1e\x4c\xbd\x5f\x26\x8c\xd1\x18\xb1\x42\x4b\x0a\x6d\x2e\xe7\xa9\x88\xda\x12\x00\xb9\xff\x98\xd0\x7c\xd8\x1b\x29\x4b\x21\x88\x6e\xd5\x97\xcc\x3d\x18\x2d\xd9\x9b\x4a\x1b\x20\x2b\xd0\x51\x4a\x93\x53\xa1\xca\x28\x59\xcf\x20\x1b\x26\xa3\x53\x41\xe5\x7f\x03\x49\x73\x25\xe6\xee\x68\xff\x57\x3b\xee\x74\x56\xea\xbb\xfc\x6f\x10\x09\x67\xac\xb6\x0d\x52\xd0\x34\x26\x92\x4a\x9c\xac\xc6\xac\x2e\x6f\x9d\xe2\x56\xd6\x26\x04\x14\x9a\xa2\x3c\xdd\x46\xcc\x91\x6e\x10\x78\x57\x04\xe2\xea\x4b\x06\x7c\x12\xfb\xb4\xf3\xb3\xf5\x08\x51\xf1\x32\xff\x1e\xb9\x81\x27\x34\xeb\x17\xf0\x17\x4b\x54\x74\xda\xd8\xa6\xe7\xb3\xe8\xf6\x9b\x8d\x68\x4a\xe2\x1a\xab\x94\xa9\xf1\xa5\x5c\xd1\x3c\xa4\x90\x9b\xe3\x6b\x07\x16\x99\xba\xec\x0d\x04\xd2\x98\x4c\x25\xf9\x00\x77\x38\x86\xe2\x88\x0a\xb2\x8a\xc9\x8c\x26\xba\xe3\x68\xea\x46\xea\x00\xd3\xb0\x99\x47\x59\x2e\xe9\x4c\x13\x9e\x0b\x3a\xd1\x44\x06\xb9\x73\xe8\x98\x7b\x5a\xa6\xd8\x16\x5a\x9a\xbb\xdb\x8f\xc9\x2d\xbd\x2b\xef\xcb\x7b\x20\x3c\x94\x52\x56\xbd\xbb\x53\x44\xb3\x7d\x11\xc7\xe4\xbe\x44\x79\xdd\xea\x57\xb0\x74\x77\xae\xd0\x52\x1f\xe2\x1b\x2d\x1c\x46\xe9\xe5\x5d\x39\x0c\x89\x16\x17\x8f\x5d\x71\x31\xac\xde\x27\x3a\x1e\x7e\x18\x91\x73\x3a\x1f\x7e\x92\xe7\xfc\xb3\x1a\x36\x9e\xf3\x4f\x71\xeb\x66\x78\x3e\xa2\x9f\xd7\xe9\x34\xba\x8d\x75\x7f\x57\xb4\x77\x72\xf5\x4c\x4f\xf7\xe4\x4a\x37\xf6\x96\x5e\xed\xf5\xc9\x19\xbd\x1d\x2e\x86\x57\x23\x1d\xf9\x64\x97\xd2\xb3\x4e\x47\xcd\x21\x7a\x4b\xce\xe2\xb5\xfa\xed\x0c\xf0\x46\xbb\xdb\x58\xe7\x1b\xb8\x60\x96\xfa\xfa\xfe\xcb\x16\x56\xd9\x8e\x01\x89\x8d\x67\xbe\x9d\x55\x81\x9b\xfb\xc2\x86\x19\x76\xf2\x39\x38\xc7\xf7\xd1\x56\x6e\x55\x9e\xeb\x93\xba\x3c\x74\x8e\x01\x48\x22\x62\xc5\x2f\xfa\xc4\x66\xd5\xf8\xf1\x80\x67\xb5\xd2\x95\x38\x2a\xf0\xbf\x44\x89\x1d\xa7\xeb\x7b\xd2\x40\xbd\x69\x1f\xb6\xd7\x69\xe1\x19\x9e\x3e\x3a\x0e\xf8\xb1\x41\x21\xa7\xcc\xa6\x20\x32\x1e\xa9\xeb\x44\x18\xd7\xd2\x48\x1b\x57\x3f\xc3\x60\xd0\x6a\xfa\xb1\x1e\xd5\x85\x60\x0b\x15\x13\x99\xa4\xa8\x9b\x70\x9c\x79\x60\x0f\xfc\x21\x24\x6c\x44\x32\x53\x5f\x75\xb2\xeb\xab\xf4\x66\x9e\x66\xb7\x54\x48\x9e\x10\x63\x64\xfe\x01\x5a\xf8\x6b\x93\x05\x13\x36\xb8\x4c\x38\xcb\x54\x38\x4e\x6c\x53\x67\xd9\x33\x26\x37\x94\x37\xa6\x54\x82\x06\x50\x5c\x53\x67\x78\x6f\x7b\x01\xc1\xa8\x89\x00\x5a\x53\x1c\x0a\xac\x31\x5f\x62\x53\x41\xf9\xdd\x8d\xfe\xe5\x86\x05\xfd\x2b\xc0\xe0\xbf\x37\x46\x5a\xa9\x42\x40\x05\xa1\xf8\xbf\x3d\xe9\x0c\x0b\x6e\x9a\x73\x66\x53\x96\x9b\xf9\xfc\xa3\xcc\x99\x32\x7f\x88\xe0\xa5\xc8\xec\x18\x50\xc0\xa1\xbb\x52\x42\x00\x1d\x08\x06\x18\x54\xbb\xb1\x54\xce\xa9\x40\xee\x0f\xd7\xa5\x31\x69\xe5\x34\x59\x5b\x59\xe7\x9f\xfd\x6c\x02\xd5\xe1\xf0\xd2\x70\x32\x7f\x38\x29\xe5\x7a\x38\x92\x75\x2f\x0d\x47\xa7\x00\x01\xa7\x73\xc8\x88\xe2\xc6\xf5\xcf\x5b\x29\xcd\x9d\xb1\x30\xb9\xda\xa0\x2a\x48\xa7\xd1\xae\x49\xa3\x0e\xa1\x6d\x76\x43\xe7\x5c\xdb\x08\xe1\x68\x2f\xaf\x22\x41\xda\xc5\xdd\x6d\x3b\x6e\x09\x7e\xff\x45\x03\xe3\x6c\xf2\x5b\x32\x66\x99\x80\x80\x03\xed\x1b\x00\x0d\x64\xb8\x68\x3f\x1b\xa7\x7c\x3c\x67\xcf\x9f\xfd\x11\x7f\xb4\xe3\xf5\x38\x11\xe3\x99\xc4\x10\xeb\x69\x9a\x25\xf3\xf9\xbd\x5e\x54\xc9\xa6\x73\xe5\xc3\x29\x27\xaf\x3d\x3c\x1f\x1e\xb8\x02\x10\x4c\xd2\x4a\xbf\xdf\xbf\xbb\x90\x15\xd8\x7a\x0d\x56\x0d\x76\x36\x1a\xf3\x78\x63\x8f\xda\x93\xf4\xae\x1d\x0c\x42\xe1\x70\x3d\x3f\x2a\x6c\x87\xbd\x72\x14\x84\x24\x64\xca\x91\x4d\x25\x87\x95\x9b\x38\x33\x92\x60\xcd\x4f\x59\x43\x4d\x37\x4e\x22\x54\x1d\x88\x32\x30\xb2\xaf\x6c\xa0\x46\x87\x04\x2a\x94\x57\x6f\xdf\x9d\x5f\xfc\x7c\xf9\xf6\xa7\x3f\x9f\xbf\xb8\x06\x6d\x91\xbc\x66\x2f\x93\x05\xeb\x8a\xfc\xfd\x72\xc9\xf8\x8b\xa4\x90\xd7\x18\xee\xcd\xf6\xb3\xe2\xee\xf6\xf9\x33\xd9\x51\x7a\x9b\x29\xba\xe4\x79\x7b\x8f\xef\xb5\x9f\xfd\xd1\x7f\xf9\xec\x8f\xb2\x64\xbb\x25\x94\x41\xa6\x1c\x20\xcd\xe1\xde\x74\x96\xd9\xfe\x5c\x1b\xd7\x92\x04\x3b\xc1\x56\xab\xad\x24\xa5\x56\xd6\x95\xd5\xf6\x4d\x19\x6c\x49\x92\x52\x90\x48\xab\x6c\xf4\x79\x0d\x02\x10\xe5\xd3\x0f\x92\x90\x9c\xc8\x23\xef\x84\x65\xf9\xab\x64\xb1\xe5\x75\x16\xa5\x44\x6e\xcd\x75\x24\x24\x2d\x4e\xb8\xe2\x1c\xb9\xa3\x0a\x81\x00\xb2\x8e\x3d\x6e\xa7\x13\xa2\x31\x82\x3b\x19\x8e\xbf\x9d\x7b\x1b\x26\xd3\x36\x09\x91\xea\x0f\xa5\xca\xc4\xda\x8e\xc9\x01\xa5\x54\x54\x0f\x5c\xac\x55\x37\xda\x28\xb4\xb7\x8e\x58\x7c\xfa\x2d\xfe\x7e\x26\xa2\x67\xdc\x5d\x15\x6c\xce\x8a\x02\x9d\xb9\xa8\x89\x79\x85\xce\x5d\xed\xf6\x57\x86\x8d\x6c\x3e\x58\x0a\xc7\xc1\xa9\xca\xe2\x00\x25\xb8\xe1\x6c\x68\x13\x28\xba\xdb\x27\x39\xe5\xa7\x1c\x9c\xf8\xd2\x7c\x55\xe0\x56\x18\x08\xcc\xf7\x9b\xce\x27\xad\xbc\xd3\xc9\x77\x52\xb4\xa3\xcc\xa7\x3b\xd7\xec\xb3\xd2\x3b\xee\xf6\x4a\xf9\xa9\x94\x0e\xd2\x07\x05\xe1\xb1\xf6\x73\xff\xba\x11\xea\x40\x62\x9d\x8e\x7f\x0d\x04\xfa\x88\x49\x82\x5b\x6f\xa0\x68\x18\xce\x68\x7b\x26\xc4\x72\xf0\xc7\x3f\x7e\xfa\xf4\xa9\xfb\xe9\xb0\x9b\xf3\xdb\x3f\x1e\xf4\x7a\x3d\x79\xac\xda\xad\x72\x74\x6f\x8e\x99\x30\x18\xfd\xe2\x1d\xe6\x41\x9f\x4c\x58\x31\x1e\xf4\x89\x48\xc5\x9c\x0d\xfa\x6b\x92\xb2\x12\x57\x02\x36\x7b\x27\xc3\xf6\x4d\x9b\xb4\x6f\xd2\x5b\xf9\x77\x9e\x8f\x3f\xfe\x6b\x95\x0b\x26\x1f\xf2\xc9\xbd\xfc\x8f\xb7\x49\x7b\x0c\x34\xa1\xfc\x91\x4f\xe4\xb7\x89\xdc\xaf\x72\xbb\x93\xf6\x64\x2e\xff\x08\xc8\x5d\x81\x09\x2c\xe4\xc7\x59\x5f\xfe\x39\x90\x7f\x0e\xe5\x9f\x23\xf9\xe7\x58\xfe\x79\x24\xff\xb0\x04\x0a\xc9\x26\x53\xf9\x6f\x21\xbb\x9f\xa7\xf0\x07\xd4\xa6\x46\xae\xda\x5e\x30\x91\xb4\x49\x3b\xcb\x61\x24\xb9\xec\x6e\x29\xff\x71\x39\x10\xbe\xba\x91\x83\x2c\xe4\xbf\x45\x32\x97\x1f\x8b\x65\x22\xab\x15\x82\xe7\xd0\x4c\x21\x78\xfa\x51\x96\x2d\x56\x37\xf0\x57\xd6\x06\x59\xb5\xfc\x5f\x0e\x7c\x25\xff\xc9\xaa\x77\x09\x6f\x8f\x82\xf9\x09\xf4\x9a\x42\xd8\xec\x3e\x12\xc0\x39\xa3\x7f\x1c\xfe\x53\xec\xff\x93\xef\xfc\xf3\xf3\x59\xef\x9f\xab\xfe\xa3\x27\xf2\xef\x93\xde\xf9\x3f\x57\x72\xcd\xf6\xe1\xbf\x33\xf9\xf7\xe0\x09\xfc\x7d\x0a\x7f\x5f\xc9\xbf\xc7\xaf\xfe\xb9\x3a\xec\xf5\x7a\xff\x5c\xbd\x3a\x7f\xf5\x6a\xf4\x47\x92\x30\xda\x5e\x65\xa0\x98\x61\x13\x6b\x43\x39\xc9\xc7\x70\xcb\x29\x33\x68\xfd\xa4\x8c\xaf\x18\x29\x59\x63\x57\x39\x31\x5d\x41\xd3\x8e\x60\x82\xf4\x5e\xed\x42\xeb\x84\xd7\x6c\xdd\x50\xae\x50\x71\xdf\x5d\xf9\x9f\xbd\x8e\x83\x58\x72\x4d\x4a\xef\x43\x71\xcf\x49\x06\xc8\xf4\x14\xdc\xfb\xdc\x2b\x95\x4a\xfa\xe2\xe1\x01\x48\x1e\x79\x03\x42\xb0\xc5\xa1\xd0\x17\xe1\x28\x1e\x44\x9c\xba\x5f\x77\xfb\x31\xe1\x9d\xce\xae\x42\x3f\xb0\x8a\xb5\x69\x3c\xd4\xb0\x76\x92\x9d\xf6\x1e\xdb\x6b\x4b\xfc\x91\x4e\xd8\x4e\x92\xed\x5c\xfd\xfa\xf3\x0e\xca\x0d\xdb\x7e\x92\xd0\xf0\x54\x2f\xaf\x22\xce\x08\xf3\xd5\xf3\x35\x50\x61\x71\x63\xca\x3c\x79\x15\xb1\x12\xc6\x82\x6b\x4b\x34\xe0\x5b\xac\xa7\xf1\xad\x1f\x45\xbd\x82\xe5\xad\x49\xa0\xd7\x4d\x06\x99\x8e\xe0\xf2\x64\x24\x93\x97\xa6\xb6\x41\x85\x78\x86\x25\xec\xcb\x1c\xec\x6b\xe3\x8a\x88\x98\x6d\xba\xfc\xb8\xa5\xf7\x55\x6d\xed\xb5\x21\x5c\x04\x2e\xab\x21\xc4\xe2\xa6\xfb\x14\x2c\xa5\xb0\xd1\xca\x20\x5b\x0e\xdd\x12\xd8\xbc\xad\x12\x00\x12\x09\x80\x64\xcb\xce\x92\x72\x67\x84\x79\x57\x40\xa2\xc0\x57\xd0\xfc\xd4\xa3\x60\x06\x2e\xcd\xd3\xf2\x48\x16\x46\x0a\x4c\x6e\xab\x96\xec\x7a\x53\xde\xc0\xd2\x0e\xbb\xf6\x33\x08\x7a\xeb\xbe\x6d\x1b\xc6\xd3\x1b\x25\x2f\x27\x95\xdc\x2d\xfc\x3b\x03\xee\x7d\x4b\x80\x86\xd2\x61\x0b\xe7\xfd\x68\x3e\x9f\x2a\x03\x48\xd6\x64\xc1\xa5\x4f\x4d\x25\x07\xc3\x61\x30\x07\xc3\xa1\x9b\x83\xe1\x10\x23\x1d\x4b\xfa\xdf\xed\xe2\xf2\x4a\x9e\x2b\xc2\xe3\x81\xff\x1e\x0f\x35\x5f\x47\x4a\x12\x53\x49\xf5\xc1\x4d\xde\xab\x8c\x0a\x16\x25\x92\x8a\x95\x9c\xa9\xfa\x49\x38\x78\x3f\x87\x72\x84\x64\xeb\x38\x2a\xd8\xc3\x43\x54\x30\x9b\xb0\x70\xce\xbe\x29\x58\x84\x43\x3c\x9a\xcb\x45\x10\xc7\xee\x4b\x79\x89\xd5\xe7\xaf\x6f\x5a\xd4\xc6\x95\x08\x42\x2b\xc3\x13\x16\xae\xa6\x62\xcc\x7a\xdf\x23\xb5\xe6\x78\xa2\x03\x99\x29\x8c\xe7\x9c\x9f\xf7\x93\x70\xf7\xc8\xba\xeb\xe4\xe6\x5f\x99\x2b\x8a\x6c\xcc\xe4\xaf\x31\xc3\x65\x1a\xe3\xac\xa7\x8c\x8e\x19\xae\xd7\x98\xc9\x05\x6b\x79\x09\x5a\xa6\xaa\xf6\x8c\xd1\x22\xb8\x90\xad\xf0\xf2\xce\x54\xb5\x09\xa3\xc3\xf6\x6f\xc9\x5d\x52\x8c\x79\xba\x14\x03\x49\xd2\xdc\xe8\xdf\x23\xb2\x94\x9f\xcf\xda\xa4\xfd\xd3\xdb\x97\x7f\x6f\x93\xf6\xeb\x8b\xcb\xbf\xb4\x49\xfb\xe2\xcd\xcf\xf2\xef\xab\x77\x67\x6f\xce\xe5\xc7\xb3\x2b\xf9\xdf\xab\xb7\xef\xde\xb4\x47\x64\x21\xeb\x9c\xbf\xf9\xe9\xfc\x65\x7b\x44\xee\xe4\xc3\x8c\xb3\xa9\xa4\xa3\xf8\x58\x52\x87\xc9\xf8\xe3\x2d\xcf\x57\xc0\xc0\x24\x30\x98\xf6\x88\xdc\xcb\x72\xb2\xc0\xc8\x4a\x80\x6e\x99\x7b\x2e\x41\xf7\xcf\x8c\xa2\x47\x38\xac\xd7\x8d\x57\x50\xdf\x21\xec\xe1\xe1\x96\x45\x4b\x79\x9f\xc6\x9d\xce\x2d\x8b\xee\xe0\xec\x9a\x5a\x1f\xbc\x5a\x3b\x36\xb2\x6c\x74\xcb\xa2\x85\xac\x06\xb5\xee\x65\x21\xa7\xda\x27\xbf\x1a\xf6\xfd\xf0\x80\xcd\x39\x31\x75\x59\xd9\xa0\x53\x3b\x1a\xaa\x01\x1a\x6e\x06\x68\x96\xcf\x91\x15\x7c\x64\x26\x3e\x64\x2b\x85\x4b\x33\xc8\xae\x0f\x4c\x9a\xd5\x9c\x7e\x42\x43\x91\x1b\x16\xa5\x92\x0b\xf9\xe2\x71\x21\xe3\x7c\xfe\x2a\xe7\xef\xdf\xbd\x46\xa7\x9c\x5b\x16\x4d\x18\x49\x74\x7f\xed\x55\x56\x24\x53\x36\x68\xef\x69\x6d\xad\x84\x8d\x6c\xe7\xd4\xf9\x34\xc8\x9d\x90\xbf\xcc\xa3\xb9\x80\x25\x4e\x5a\x78\xf7\xee\xb0\x38\x93\xa7\x9b\xb6\x97\x3c\x5f\xb6\xdd\xa0\x15\xa2\x2b\xf2\xd7\xf9\x27\x3d\x83\x56\x01\xc5\x25\xb5\xa6\xca\x92\x8c\x16\x8a\x12\x4b\x84\xe0\xf2\x51\x68\x5a\x48\x15\xc0\x54\x17\xed\x42\xdc\xcf\x19\xb0\x84\x7e\x8b\x0f\x0f\xe0\x6a\x8f\xf0\x22\x39\xcd\x48\x94\xd0\x2b\x36\x4c\x7d\xd8\x8d\xe2\x4e\x27\x19\xe6\x7e\xe5\x91\xdc\x27\xa6\xf3\x98\x7c\x31\xf9\xa7\x26\x83\x8c\x48\xa4\x33\xe0\x6b\xb8\x8d\xaf\x18\xfd\x72\x71\xf9\xcb\xfb\xeb\x81\xe4\xa1\x16\x83\xdd\x1e\x49\x56\x12\xce\x9c\x4b\x4e\x6a\xb7\x47\x24\x4f\x32\xd8\xed\xad\xc9\xd5\xf9\xeb\xf3\x17\xb6\xdc\x9a\xbc\xfd\xe5\xfa\xe2\xed\xa5\xf3\xe2\xfa\xfc\xbf\xaf\xcf\xde\x9d\x9f\x39\xaf\x5e\x9f\xfd\x74\xfe\xda\x79\x7e\x75\x71\xfe\xfa\xe5\xd5\xb9\xdb\xcc\xeb\xf3\x9f\xcf\x2f\x5f\xba\xed\x82\x78\xc7\x79\xf1\xd3\xfb\xeb\x6b\xb7\xa3\xb5\x3d\x59\x6f\x59\x59\x7e\xa2\x21\x96\xd2\x2f\x28\x8f\x1f\x30\xb0\x3b\xf6\xcc\x8f\xf9\x5a\xf9\x74\x55\x28\x6b\x93\x6a\x11\xc8\x3f\x92\x22\xb7\x43\x71\xa3\x80\x81\x10\x98\xc0\x16\x34\xb7\x69\xbd\x34\xdd\xa2\x00\x0e\x7a\x5e\x68\x40\x92\x2f\x83\x00\x51\x8a\x47\x2f\x76\xa8\x9d\x37\x0a\xa7\xcb\x61\x85\x2e\xf3\xa8\x0d\xcb\xd4\x56\xe8\xa0\xad\x41\x0d\xcf\x71\xa7\xd3\x06\x0d\x06\x58\x17\xaf\x2b\x4d\xff\xd2\xdc\x74\x5b\x2d\x24\x5a\x5f\xb7\x25\x45\x38\x16\xc0\x85\x85\x1a\xfb\x0d\x1b\x73\x5e\xbd\xc0\xeb\x08\x27\x6c\x4f\xd7\x19\x2b\xf9\x76\xe3\xbc\xc1\x8d\xf7\x1d\x93\xac\x3f\x38\x51\xca\x5f\xb0\x1d\x3f\x06\xb2\x4a\x5b\x2f\x7a\xb6\x6e\x05\x32\x68\x7d\x54\xf8\xff\xba\xf6\x42\xff\x37\x92\x61\x5e\x36\x7a\x6f\x23\xbe\x94\x57\xad\x46\x91\xbb\x12\x47\x22\xea\x2c\x39\xe0\x83\x00\x5d\xee\xd7\x04\x7f\xc0\x6e\x6c\xb1\xee\x87\x0f\xde\x7d\x9f\x93\x8c\x24\xf1\x3a\x18\x63\xda\x0a\xc7\x5f\x42\xea\xd6\xac\xdc\x49\x4a\x33\xad\x9c\x02\xcb\x28\xd9\x4f\x4b\x27\xdc\x39\x4d\x2b\x44\x42\x1e\x0f\xd2\x6e\xa9\x7b\x24\xce\x3e\xc2\xad\x5d\x93\xb3\xec\x5a\x2d\xc5\x8b\x7a\xda\xaa\x39\x8e\x02\xe1\x4e\xac\x71\x7d\xb4\xe4\x69\xa6\xe2\x1b\x03\x99\x85\x16\x48\xad\x88\xd0\x81\xb5\x95\x02\x56\x10\x04\xb9\xce\xd0\xa7\xa3\x6e\xbb\xc3\x80\xfb\xb3\x79\x05\x7c\xc8\x6b\xa8\xb7\x6c\x4f\x78\x33\xf3\x61\xa0\xfd\x11\x75\x46\xc4\x08\xc6\xaf\x47\x8f\x88\xf2\x22\xc5\xcd\xf4\x9f\x17\x65\xc0\x6e\x05\x27\x8e\x0f\xa8\x79\xec\x96\xe3\xa7\xa2\xdc\x9a\xe4\xe2\x49\x60\x9c\xf1\xa0\x52\x34\x04\x2e\xb3\x63\xc8\x9b\xff\xe7\x87\xd3\x23\x5f\x2a\x67\xf0\x5c\x22\xeb\xd4\x00\x06\x8f\x24\xd8\x26\x5a\xe9\x67\xe1\x27\x94\x22\x39\xd8\xac\x55\x77\x43\x39\x69\x9b\x7b\x0e\xcf\x59\xc4\x89\x3d\x8c\xea\x28\x12\xe1\x77\xa4\x1a\x74\xfa\x4a\xf5\xe9\x7b\xc1\x62\xf2\xee\xff\x83\xe5\x0f\x81\xe5\x35\x8b\xc9\x2f\xff\xcf\x61\x89\x6c\x9a\x8f\x7a\xf0\x36\x27\x9f\xa2\x3a\x84\x13\x0e\xe7\xe2\x9c\x6c\x8c\x3a\x42\x32\xfa\x09\xe2\x60\xea\xec\xee\x88\x5c\x32\xbb\x9f\x7e\xfb\xdf\x01\x03\x83\x95\x77\xfb\x2a\xa5\x7b\x05\x28\x86\x30\x01\x1b\xf4\xaf\x87\x4a\x4b\x74\x75\x13\x14\x12\x93\x29\x00\x58\x62\x12\x6e\x4f\xd7\x49\x88\x3d\x3c\x98\x1c\x22\x36\x27\xa0\x4d\xa3\x05\x52\x69\x4c\x0a\xd8\x6e\x0f\x42\x69\x41\x54\x19\x9b\xa8\x44\x0e\xf0\xb2\x56\x6e\xed\x45\xaf\x29\xe6\xb9\x28\xb4\xe8\x7a\x6c\x0d\xb3\xb4\xf9\x07\xd3\x66\x59\x3a\x04\xcb\xd2\x18\x31\xd1\x6c\xcd\xba\x3c\xcf\xfd\xac\x7c\xd6\x02\xe1\x1b\xd3\xe1\xf6\xfc\xcc\x3e\x7b\xfd\x98\x28\x9b\x4d\xca\xc1\x5a\x33\x1b\xa6\x23\x3a\x75\x49\x43\x89\x0b\x40\x22\x62\xfe\xc4\x10\x5d\x32\xfa\x52\xb0\xf9\x74\x20\xd6\x2a\x07\xb1\xbc\x31\x42\x91\x55\x02\x89\x7b\x7b\xc1\x91\xf6\xdc\x91\xf6\xe4\x48\xb9\x33\x52\x21\x47\x9a\xd1\xde\x49\xf6\x8c\x8a\x93\x6c\x6f\x2f\xe6\xc3\xac\x32\x52\x5e\x1e\xe9\xba\xd5\xa0\x1a\x90\xb3\x08\x6c\x3d\x89\xda\xe6\x53\x4f\x42\x0e\xeb\x38\xec\x8d\x70\xdd\x30\x2c\xce\x15\x9b\x4f\xeb\xac\x48\x6e\x99\x88\x7a\xb1\x2e\x08\xe6\x6f\xb5\xe2\x4a\x65\x20\x89\x65\xc1\xb4\xbd\xee\x40\xa8\x92\x66\x68\x94\xd2\xa9\xda\x9d\x02\x6b\x1b\x3b\xbf\xba\x71\x99\x1d\x87\x15\xac\xd5\x5c\x83\x99\x0d\x96\x90\x55\x6e\xd2\xac\x9c\xe4\x55\xeb\x65\x50\x1c\x29\x8c\x75\x61\x95\x11\x90\xa5\x7a\x84\xd9\x52\x65\xc0\xd4\xb6\x57\x06\x4b\x6d\xc1\x00\x04\x98\x93\xe5\x16\x53\xfa\xea\xd2\xa1\xe9\x33\x6b\xb8\xa4\xbf\x99\xf2\x8e\x71\x65\xb5\x82\x7b\xc0\x35\x7c\x83\x15\x7c\x00\x3b\xd5\x40\xc4\x3d\x4b\xe7\x93\x40\x59\xb5\xc3\xed\x76\xd4\x19\x79\x2b\xc8\xa5\x84\x5a\xca\x88\x25\xae\x04\x75\x62\xc0\xd0\xb2\xe7\xd4\x69\x1c\x75\xf6\x56\xcb\xf4\x2e\xc9\x6e\x19\xaa\x9a\x7e\x7a\xff\xf3\x60\x67\xac\xf4\x4d\xb7\x4c\xec\xfc\x41\xe9\x9a\xa6\x3c\x5f\xec\x80\x3d\xeb\xc9\x8e\xaa\x4f\x31\x10\xac\xd7\x66\xe0\x64\xb1\x91\x1c\x54\xf5\x46\xf9\xbf\x3a\x2c\x6f\x3c\xd4\xda\xbd\xa9\xc5\xbb\x54\x8c\xd1\x45\x1d\xe2\x37\x96\xf2\x2a\xba\xe0\x44\x87\xc5\x54\x6e\x02\xd6\x2b\xbb\x52\xc0\xf1\xd2\x2e\x95\xf0\x23\x14\xd6\xb7\xe4\x97\xb3\x05\x94\xba\xc0\x26\x94\xaa\x7c\xa9\x34\xa9\xae\xe3\x50\x0d\xfc\x52\xa9\x31\x31\x31\x01\x36\xb9\x99\x1b\x77\x9c\xd0\x29\xae\x0c\x15\x63\x9c\xc4\xc1\xf1\x9a\xe4\xfa\xc4\x71\xaf\x08\x35\x5b\x99\x8f\xdf\x6c\x69\x52\x6e\xb3\x35\xd1\x4d\x83\x18\xa8\x6e\x45\xfd\xce\xea\x76\x46\xa8\x57\x7f\x45\x1b\x3b\x2d\x2d\x7e\x4d\x9f\xe1\xad\x54\x82\x23\x46\x72\xa8\x22\x36\x67\x91\x75\xfb\x80\xa9\xc0\x3b\x2a\x1c\x4e\x2d\xbc\xaa\x3a\xc4\x5a\x69\x3d\x31\xda\x1a\x0b\x44\x5b\x83\x0c\xd9\x10\x70\xcd\xba\x73\x65\xf1\xda\xfa\x9b\x84\xd7\x99\xe4\x34\xb4\xc2\x24\xa1\xbd\x93\xe4\x59\xaa\x3b\x4a\x74\x47\x05\x4d\x87\xc9\xa8\x95\x0f\x93\x91\xe3\x95\x53\xd8\x8e\xd0\x8b\xde\x81\x04\xc1\x34\x10\xba\xad\xf9\xde\x5e\xbc\x1a\xce\x47\xaa\x4c\x7e\xef\x78\xc5\x8c\x69\xe3\x0e\x20\xd3\x9a\xef\x7a\x51\xc9\x8c\xf6\x4e\x66\xd6\xdc\x7e\xa6\x87\x3d\xa1\xd3\xe1\x6c\xd4\x1a\x0f\x67\xa3\x6e\xaa\x2a\x45\x13\x3b\xe8\x25\xdd\x66\x17\x90\x45\x63\xb1\x82\xdc\xd1\xde\xc9\xdd\x33\x1d\x5c\xe6\xe4\x4e\xf7\x7e\x4f\x17\xc3\xbb\x51\x6b\x39\xbc\x1b\x69\x27\xb0\xfb\x78\xad\x03\xfa\x35\x58\x76\x68\x2c\xa1\x02\x71\x3b\x51\x76\x39\x65\x95\xd0\xbb\x0a\x2f\x7f\x10\x3c\xc9\x8a\x04\xd5\x81\x26\x8c\x63\xb9\x05\x4d\x58\x97\x1b\x41\x1b\x6b\x1e\x42\x4d\xbc\x26\x6b\x42\x5d\x7a\xb4\x05\xa6\x47\xbb\x65\xe2\xac\xdc\x7d\xcd\x15\x5f\x1e\x26\x56\x7f\xf9\xf6\x4d\x5d\x8d\xf2\x04\x64\x0d\x50\xd5\x57\x8c\x57\x7c\xc8\xb0\x4f\x3b\x17\x92\x2f\x6a\x46\xb7\x4e\x15\xe7\x5c\x29\x32\x8a\x37\xa3\xd4\x52\x55\x3c\x29\xba\xea\x57\xa0\x4d\xb7\xa1\xba\x58\xd2\xe5\x66\x37\xe3\xc5\x50\xab\xa5\x48\xbf\xce\x34\x6b\x31\x5e\x69\x96\x58\x0e\x17\xbe\x8a\xf7\x1c\x9c\xe7\xd4\xac\xdb\xb9\xda\xaf\x14\xb2\x04\x58\x26\xf7\x55\x5e\xd5\xe4\xe2\x96\x40\x1d\xc9\x77\x28\xf1\xe3\xc6\x94\xa0\xce\x10\x2b\x79\x41\xdd\x5d\xe9\xce\xc5\x26\xf8\x64\xdd\xf3\xec\x2e\xe5\x79\x06\xba\xf4\xd7\x8a\x50\x7a\xd5\xa4\x9d\x4f\xa7\xd1\xae\x91\xb7\x7e\x4a\xb3\x49\xfe\xc9\x28\xe3\x5b\x82\x7e\x29\x9f\x17\xd0\x31\xcc\x54\x10\xc5\xd2\xc1\x50\x39\xfa\x41\xfd\x60\x7d\x73\xbe\x29\xf7\xfb\x6b\xa5\xcd\x56\x8e\xd1\xee\x8c\x5e\xa9\x19\xfd\xbe\x91\xe7\x57\x37\x52\x65\x95\x8e\x82\xab\x74\xe4\xae\xd2\xd1\x68\xb0\xdf\x27\x79\xb5\xee\x71\xb0\xee\xb1\x5b\xf7\x58\xd6\x45\xea\x55\x24\xe3\x8f\x5a\xde\x30\x63\xc9\x52\xe3\xc3\x25\xcf\x6f\x79\xb2\xd0\x62\x06\xf6\x59\x30\x9e\x99\x78\xb9\xcb\x31\x4d\x31\xc2\x6e\x42\x73\x24\xb9\x56\x9c\x43\x80\x90\xab\xf4\x77\x46\x7b\x8d\xde\x1a\xda\xd3\xaa\x82\x9b\x9c\xa0\x1b\xd8\xbc\x26\x4c\x4a\x1f\xd4\xf3\x74\xe9\x7d\x9e\xea\xfb\x0b\x9e\x8a\xe5\x7e\x5f\x52\x1d\xcb\x7c\xd9\xd4\x59\xe1\x55\x9a\x2e\xf7\xfb\x66\x66\xce\x7b\xc5\x9e\xd7\x77\x26\xbf\xf7\x81\xc8\x81\xb8\x54\x8b\x64\x3e\xdf\x7a\x86\x38\xc8\x86\x4a\xfe\x58\xa0\x6c\x1a\x29\xbe\x2c\x17\x79\x1d\xf3\xbf\x1c\xef\xb1\xfd\xea\xda\xb4\xf4\x12\x82\x0c\x40\xee\xfc\x2a\x3a\xd3\x1d\x2e\xc7\x66\xc1\xcd\x16\x91\x73\x4d\x26\x13\x8e\x44\x9d\x5a\xd5\xeb\x6f\x1b\x85\xec\xc7\x36\x52\x99\xb7\xee\x96\x27\xb2\x10\x58\xa3\x88\x44\x54\x6c\x32\x1d\x6c\x2a\x07\x4c\xdd\x1d\xdc\x4a\xa7\xd1\x3e\x08\xf6\x62\xc7\x56\xa2\xe5\x68\x6e\xb0\x60\x37\x87\xd0\x36\x11\x8b\x41\x36\x45\x9c\x10\xc8\x76\x5b\x73\x8f\x17\x5d\x8e\xf7\xe4\x89\xb0\x35\xe5\x28\xb5\x1f\xf8\xdb\x55\xd9\xd2\xc6\x91\x2a\xac\x20\xe2\x6d\x66\x2e\x17\xe1\xbf\xad\xc8\x8a\xd3\xe2\x4d\x32\x9e\xa5\x19\x3b\xf5\x9a\xc0\x97\x11\x8b\x07\xde\xfb\xab\xfb\x02\x30\x5a\xb9\x71\x2c\xef\x2d\x15\xa6\x42\x64\xa0\xe2\xc6\x6c\x88\xc7\x8f\x07\xde\x3c\xad\x67\xa4\xca\x49\x78\xfc\xc4\xff\x8e\x27\xcc\x7c\x7e\x5a\xa9\x6e\x37\xb7\x2e\xf4\xa8\x57\x6e\xa3\x5a\xe6\xd8\x2f\xa3\xe6\xd4\xcd\x97\x7d\xfc\x7e\xf4\xb4\xfa\x3d\x70\x50\x74\x6b\x07\x5e\x69\xf0\xee\x73\x5b\x3b\x38\xf2\xbe\xe3\x05\xa0\x3f\x1e\x07\x3e\x5e\xeb\x06\xd6\x2e\x94\x11\xfa\xa5\x45\x4c\xcc\xf7\x48\x10\x46\x10\xde\x48\xfc\xfe\x69\x93\x59\x33\xb8\xc0\x05\x9d\x49\xb7\xf4\x63\x83\x6e\x7e\xfa\xf6\x6e\xb6\xf7\x82\x23\xef\x9b\xee\x3d\x2d\xe9\x76\x33\x68\x38\xf4\x79\x6e\x49\x63\xfb\x72\x0c\x4e\x94\x57\x70\x57\x41\x9a\xaf\x2e\xfc\xf6\xa3\xd6\xd5\x7c\x06\x1b\xff\x9a\x6f\x4b\x27\x15\x8a\x1c\x19\xde\x75\xd9\x9d\xbe\x11\x27\xf9\x42\xc5\x1d\x28\xd3\xed\x7e\x46\x68\x87\x9e\x67\x48\xa6\x43\x82\xfb\x69\xce\x2f\x54\x5a\x25\x15\x72\x24\xa8\x3d\x96\xa3\x92\x6d\xc9\x77\x46\x99\x23\x3c\xd3\x3b\xcb\x78\x54\x82\x1e\x12\xbe\x06\x9b\xdb\x62\xb5\xa8\xb3\xe4\xf4\x3a\xa8\xb8\xfd\x59\xab\x8e\x40\xe3\xea\x1d\x3c\x5d\xf3\x64\xfc\x91\x49\x62\x8c\x64\xeb\x96\xb6\xbc\x09\xe5\x11\xab\x44\x11\xab\x95\x63\xbb\x7b\x60\x4d\x32\xb5\x56\x75\x1b\xcc\x2e\xa4\xc6\xc9\xb2\xca\x32\x5f\xd6\x19\xe9\x3b\xbb\x06\x3d\xa1\x2b\xaf\xdd\x86\xfc\xc9\xd7\x0a\xb7\xcb\xf0\x80\x38\x9a\x28\x66\xc5\xd5\x53\xfa\x3b\x59\x12\x18\x89\xe4\xe6\x5b\xda\xfc\xb5\xae\x4d\x28\xf9\x3a\x2d\xea\xad\x99\x83\xed\xfd\xdd\x6f\x8f\xb0\x52\x8b\x58\x36\x70\x8b\x6f\xad\x38\xea\x74\xdc\x27\x1d\x66\xa3\xba\x6e\x2d\xdf\x68\x91\x43\x8c\xbc\x52\x60\x50\x16\x13\xf1\xf0\x00\x3c\x97\x3a\x7b\xca\x89\x38\x62\x31\x2e\xe3\x87\x0f\xf9\x92\x65\x7a\xa3\x96\x7b\xd2\x42\x2d\x86\x7b\xa4\x11\xfe\x37\xaa\x91\x2e\xf8\x81\xa6\xbf\x33\x37\xf7\xd9\x87\x0f\x90\xf6\xa8\xb6\x1f\xb9\xaf\x64\x1f\xce\x70\xdc\x6e\xd4\x27\xdb\x44\xf9\x9b\x93\x99\xab\x8e\x7e\x52\x2d\x5b\xc7\x89\x56\xdd\x09\x92\xa4\xbb\x1d\x4a\xa8\x55\xdf\x46\x7c\x51\xf6\xc9\x20\xde\x86\x93\x4d\xb9\xc9\xa2\xea\xc6\xe7\xe8\x9f\xcb\x23\x42\x7e\xf6\x83\x97\x73\x4a\x62\x26\xf2\xd5\x57\x80\x5c\x50\x23\x60\x32\xe2\x4a\x17\x81\x73\x0c\xca\xae\x66\x97\x4a\x64\x9d\x39\x79\xae\x00\x30\x35\xf3\x31\xa4\x99\x04\x4a\xc5\x0c\x5a\x5d\x6f\x9e\x25\x74\xe6\x25\xc3\xaa\xdb\x57\x9f\xd2\xf9\xfc\x85\x97\x34\x8b\x68\x52\xa7\xfa\xc6\x4e\xce\x9c\x4b\x2f\x73\x58\xf0\xee\xa8\x1c\xcd\x83\xe0\xd1\x3c\x70\xb9\xbf\x03\x34\xd2\xc7\xb5\xa9\xa6\x37\x53\x97\x87\x02\x58\xf3\x30\x6c\xd0\x02\x67\x1d\x98\x4e\xe7\xa5\x6e\x9e\x7f\xc9\xb3\xdc\xaa\xc1\x4b\x5a\xab\x5f\x4e\x93\x56\x65\x04\x4c\x08\xaf\x2a\x08\x35\xb8\x1a\xd6\xd5\xbb\x0a\x74\x10\x8b\x3f\x44\xc6\xb8\xcb\xdb\x5d\x55\x6e\xc8\x23\x31\xac\x40\x3b\xf3\xd6\xad\x6e\x17\x94\x2a\x6b\x84\x21\x11\xdb\x64\xe2\xa0\xbc\x6a\xb7\x1a\x2f\x55\x50\xa3\xae\xef\x20\xc6\xda\x73\xae\x1b\xa9\x22\x52\x85\x1c\xcd\xfb\x46\x27\x9b\x4a\x2b\xe8\x62\x63\xda\x78\xbb\x05\xca\xd1\x8d\xf8\xf8\x4c\x35\x51\x3e\x2b\x95\x1d\xa0\x2b\xfb\x59\xe8\x64\x55\x9b\xf4\xb1\x1e\xd9\x79\xc3\xc6\x9d\xef\x26\x8b\x8c\x71\xbf\xd7\xb4\xe5\xa0\xbb\x49\xbe\xd0\xa8\xce\x58\x21\xd1\x32\x8a\x00\x3f\xac\x8a\x3f\x92\x6b\x48\xe0\xe0\x18\x4e\x52\x49\x7b\xa6\xee\x08\x36\x78\x3c\x2d\x02\xde\xbc\xe6\x62\xaf\x22\x2c\x05\x62\xdd\xf6\x2b\x9e\xdc\xd6\x20\x74\xcf\x2d\x2b\x9d\x46\x1e\x91\xfa\x57\xbf\x1f\x41\x1c\xff\xb5\xb2\x7f\xe0\xd7\x0e\x90\xbb\x7e\xeb\xff\x5d\xea\xc8\x5d\x2e\xc7\x83\xcf\x5b\x32\xf0\x3d\xdf\x0c\x30\xeb\x37\x18\xe8\xc3\x5d\x40\xe6\x6c\x2d\xb4\x79\xad\x74\xe1\xec\x0a\x88\x7e\xcc\x26\x2f\xf2\x4c\xe0\x2d\xed\xef\x3b\x3c\x74\xa2\xda\x6a\xd3\x5e\x5b\x65\xd5\x76\x1b\xb6\x75\xac\xee\x7f\xaf\xf9\x86\xc5\xf6\xe0\xaa\xcb\x7d\xcd\xd0\x2b\x9b\x34\xd0\xae\xc6\x13\x6a\x0b\x95\x57\xb6\xa6\x2f\x75\xfb\xf8\x73\xaf\x5d\x5c\x77\x07\x20\x6e\x2c\xc3\x6d\x63\x5d\x44\x02\x76\x86\x1b\x1d\x06\xeb\x11\x8a\x75\x1e\xf4\x36\x68\xa8\xc5\xef\x40\x2b\xb6\x97\xad\xb0\x4a\xa3\x9b\x99\x39\x23\xbe\xb7\x59\x99\x44\x23\x2e\x61\xe0\x58\xe9\x05\x2f\x5c\xa7\x1e\x1a\x47\x64\x81\x8c\x83\xe1\xa1\x94\xcc\xe0\x6d\xb7\x81\x68\xe2\xa5\x16\x4a\x36\xaa\xde\xf0\x51\xc3\xcb\xb2\x3b\x4f\x85\x02\xc1\x31\xdc\x40\x06\x90\xb6\x42\x1b\xa9\xea\x2a\x31\xc9\x1b\x15\x22\x26\xbb\x5f\x83\x32\x24\xc0\x79\xea\xc5\x5e\xaf\x89\x6a\xc7\x59\xed\xaf\x6e\xcb\xa9\xeb\xea\x5a\x2e\xd9\x27\xbc\x2f\x7f\x5a\xa5\xf3\x09\xe3\xf4\xbd\xd2\x4f\xfc\x6d\x93\x34\x48\x09\x0b\xfc\x38\x54\x7e\x46\x3c\xe7\x71\x62\x49\x94\xc2\x4b\x33\x0d\xf1\x0d\x9a\x15\x02\x93\xb2\x5a\xcd\x93\xe9\xba\x2d\x83\x0b\x4f\xa7\xa3\x35\xff\xb1\xb5\x1a\xec\x9d\x08\x6b\x10\x20\xf6\xf6\x62\x36\x14\x8e\x6e\x7d\x5d\x16\x7e\x34\x98\xaf\x81\x48\x60\xdb\xb0\x58\x6e\xd4\xa4\x6d\x43\x64\x39\x91\x95\xd6\x20\x3f\x0e\x13\x4f\x01\x54\xa3\x39\x1f\x04\xeb\xde\x1e\xc8\xf0\x9b\x08\x27\x2c\xb9\xbf\x8f\x46\x1b\x35\xd4\x5e\x8f\x52\xea\x96\xd7\xae\x12\x30\x3b\x9d\xf9\x11\xb7\x00\xfb\xb4\xf3\x27\x66\x59\x71\xb5\x11\xd8\xa7\x9d\x9f\x98\xc2\x7a\xa2\x91\x3a\xfd\x8a\x9e\x98\xdb\x83\x12\xaf\xfb\xc4\x70\x8d\xe9\x89\xde\x86\x95\x37\x0f\x0f\x9e\x1d\x12\xbe\x75\x6d\x54\xb4\x10\xc0\x6b\x59\x3b\xf6\x9b\x91\xc9\x1d\x58\x21\x48\x50\xfc\xf9\xaf\xef\x35\xae\xfe\x8a\xe8\x33\x81\x83\xc3\xaa\x9f\x9d\x68\xb9\xe4\xcf\xea\x7f\xb0\x84\xfe\x1b\x8b\xc9\xaf\xff\x17\x47\xcb\x59\x11\x0a\xc8\x1a\x3e\xe5\x90\x5f\xba\x74\xca\x03\x49\x16\x99\xab\x6e\x17\x43\x3e\xd2\xcc\x27\x4e\xb4\x55\x39\xb0\xdf\x8e\xc2\x48\x66\xc0\xf6\xf7\x06\x19\x77\x10\x7b\x42\x78\x5f\x10\xdb\x09\xd2\xfc\xf9\x2b\x11\xa5\x5f\x5d\x47\x73\x01\x64\x11\xa0\x5e\x98\x83\x11\xff\x2d\x38\xd1\x8e\x64\xc6\x92\x09\x48\xd5\xbe\x0a\x3d\xda\xfa\x22\x49\xe7\x51\xbc\x25\xaa\x6c\x42\x83\xcd\x88\x6f\x13\xba\xda\x80\x74\x6a\x71\x06\x9a\x83\xca\xc5\xfc\x99\xd1\x83\x47\x4f\x8e\x0e\x8f\x8f\x8e\x8f\xc9\x5f\xea\x0d\x42\xd5\x9d\xf7\x8d\xe6\xef\x12\x01\xe7\x5a\xbb\xf1\xad\xd6\xfe\xc3\x91\xa2\xc8\xbd\x2c\xba\xbf\x15\xb8\x29\x6b\x24\xfe\x60\x57\x6c\x27\xe5\xda\xa1\x28\x1b\xe4\x76\xb6\x5a\xdc\x30\x6e\x5d\x24\x44\xa7\x53\x79\xc7\x4f\x6d\xcf\x68\xaa\x0c\x21\x23\x42\x95\x8d\x63\x46\xb5\xd2\x2b\x9e\x2f\x22\x81\xfa\x50\xf5\x7e\x3c\xcf\x33\x63\xf7\xfc\x5b\xe1\x34\xae\xa8\x4a\xf9\x18\x52\xbb\x5a\xac\x33\x1c\x91\x8c\xb2\x93\xec\x19\x7a\x12\x38\xfa\xfb\x5b\x26\xa2\x2c\xb6\x2a\x1a\x10\x0e\xe6\xcb\x20\x55\x8c\xc3\xc9\x97\xf7\x26\x12\xc7\x27\x9e\x56\xcc\xa6\x3c\x9f\x5d\x83\x23\xd1\xb9\xc4\xba\xe0\x6b\x85\xf6\x6e\xaf\x85\x3a\x5c\xa1\xd4\xb7\xed\x9b\x3c\x9f\xb3\x24\x6b\x0f\xe0\xc9\xc6\x58\x1a\x98\x0a\xf0\x01\x01\x3b\x90\x24\xd5\x7f\xf4\x77\x69\xcf\x46\x5c\x53\xd3\x7e\x93\x88\x59\x37\xb9\x29\x2c\x97\xb1\x1b\xf1\xe7\x3f\xb3\xb8\x85\xd9\x00\x74\x83\xfd\xf5\x3a\x12\x71\xec\x4c\x12\xe6\xf5\x2e\xf9\x14\x31\x12\x50\x36\xeb\xc9\xe0\x78\xf5\x40\x10\x86\x6e\x05\x39\xb6\x67\x3d\x0d\x04\x77\x40\xf2\x8a\x90\x63\xa9\xc4\x35\xca\x72\xb1\x53\x2c\x52\x1b\xe2\xc7\xa9\xf5\xec\xd9\xe1\xc3\xd1\x1a\xac\xc4\xb7\xaa\xca\x64\x05\x88\x3b\xd7\xf2\x21\xab\xbf\x9f\xf6\xfb\x83\x43\xf5\x4d\x65\xb2\x34\x9f\xfa\x4f\x5b\x61\xf0\xef\x1c\x3c\x36\xf0\xab\x4b\xb2\xa2\xe0\x69\xa3\x0f\x20\x2f\xf8\x9b\x3e\xce\x2d\xfd\xe8\xe5\xca\xaa\x80\xfe\xff\x64\xca\x7d\x58\xbf\xaa\xdf\x94\x4e\x25\xb5\x31\x83\xa1\xd3\x9d\xfc\xd5\xb2\x00\x94\xb7\x37\xec\xb3\xde\x29\x0e\x6b\xf8\x7f\xc4\x68\x10\x32\x32\x40\xfb\x82\x43\xb3\x71\x94\x72\xbd\xdf\xf7\xb7\xe6\x4e\xdf\x28\xf6\x41\x56\xad\x34\xf0\xda\x28\xa1\xb4\xfb\x76\x02\x1d\x3d\xee\xe8\xae\x8c\x05\x01\x7b\xfe\xfc\x10\xad\x06\xf0\xd5\x7e\x24\xdf\xc5\xdb\x2c\x06\x53\x2b\xa2\xbc\x6f\x0b\x56\xa5\xb2\x15\x4c\xe0\x9b\x83\x69\xd0\x7b\xa0\xd7\xc8\x3a\xaa\x42\x8d\xdc\x9e\x6a\x7d\xce\x32\x39\x18\xe4\xec\xc8\x1f\x1a\xcd\xcb\x5c\x73\x23\xc3\xc1\x19\xf3\xae\x62\x49\xf9\x9a\xa9\x5c\xa0\x35\xae\x23\xb2\x9c\x0a\xf6\xcc\x48\x8f\xec\xf7\x63\x54\x34\x0b\x3f\xe8\x96\xeb\xb8\x85\xa5\x03\xc6\xd9\x42\x6d\x30\x49\x12\x02\x89\x56\xee\x47\x90\x1e\x61\x26\xe7\x4a\xb3\x17\xd6\xb2\x9c\xc5\xcd\x4e\x14\x7b\xd9\x43\x6f\x8d\x25\x7a\x0e\x81\x76\x20\x1b\xe7\x13\x36\xb9\x58\x2c\xd8\x24\x2d\xbb\x10\x96\x5b\x90\x1b\x3b\xd4\xc8\xe5\xca\x35\xeb\x68\xec\x19\x6d\x28\x45\x77\xb2\x5a\x56\xf9\xda\x6f\xbc\xe3\xb1\x71\xc7\x76\x4f\xdf\x26\xa6\x63\x34\xb4\x0f\x5f\x40\x5e\x15\xa1\x0d\xcf\x7e\xd8\xf0\xfa\xda\xf6\xca\xda\xc4\xe9\x51\xf9\x3e\x3c\xcb\x7d\xb9\x25\x8d\xdd\x5b\x5a\x47\x0c\x56\xda\xd9\xdf\x57\x83\x66\xec\xe3\x0f\x1b\x75\xaf\xd5\xdc\x25\x0b\x3a\x40\x7d\xa5\x6e\xdc\x27\xb3\xf0\x34\xd6\x75\xbc\xa7\xba\xac\xba\x37\x7d\x97\xd6\x4f\x77\x5a\xd9\xb4\x7c\x4f\xe0\x1e\x2f\x51\x72\x95\xc0\x62\x68\x31\x09\xf4\x93\xde\x40\xf0\x04\x3e\x97\xdb\x55\xf4\xcd\xde\x30\xa9\x70\xdd\x55\x53\x2c\xf7\xfa\x84\x53\xb1\xcf\x02\xb0\x72\x9a\xe3\xd8\x5c\x18\x39\xab\xe2\x88\x9c\x65\x31\x91\x97\x06\xbc\x61\xb4\x08\x3a\x62\xc6\x14\x3b\xd4\xfd\x5f\x37\x98\x3b\x61\xf8\xa4\x6e\x32\xff\x94\xdc\x17\xef\xd8\x5d\x32\x4f\x27\x09\xf8\xcd\x9b\x55\x4b\x3b\x9d\x54\x2d\xcc\x94\x27\x0b\x56\x63\xaf\xe4\x58\x26\x99\x5c\x16\x54\x38\x59\x2e\xb4\x24\xd7\x31\x43\x42\xb7\x87\x52\xdf\x34\x6f\x22\xe8\xd9\x67\x36\xae\x06\x16\x73\x4c\x26\xed\x20\xc1\x65\x05\x55\x20\x0a\xa9\x9c\xec\x72\x9b\xb9\xe0\xc4\xf3\xe4\x87\x6a\xbe\x19\x67\x14\xb7\x74\xb4\x94\xd3\xcc\xb1\x90\x93\xac\xfb\xa0\xd4\x17\x2a\x4f\x81\x3a\x29\x9b\xbd\x3a\xed\x2b\xbb\x3e\x54\x21\x04\xd1\xa0\xdb\xa4\xd6\x06\x0b\x61\xd5\xc1\x40\x08\x54\x76\x91\x6a\x5d\x65\xe5\x38\xff\x3c\x66\x4b\xf5\x91\x84\x47\xd9\x74\xe3\x43\xe1\xc6\x0b\xdf\x69\x4e\xdb\x28\x39\x12\x5d\x30\x2b\x4a\xb3\xdb\x5f\xdf\xd0\xbf\x2a\x51\xee\x7f\x37\x85\x5f\x51\x31\xae\x30\xac\x96\x0e\xc2\x92\x04\x93\x28\x15\x22\xe1\x82\x0a\x9d\x79\x98\x72\x92\x74\xf9\x2a\x13\xe9\x82\xd1\x8c\x24\x98\x3f\x09\x74\xb1\x6d\x92\xc0\x52\x2a\x41\x89\x8a\x04\xa9\x7f\x83\x4b\x2a\x67\x19\xcd\x49\x62\xd3\x2f\x25\xdf\x14\x36\x60\x2b\x01\x85\xea\xa3\x6c\xdd\x06\x26\x2c\x5b\x09\x2c\x0a\x5f\x4c\x91\x6d\x27\xa6\x28\x3c\xe1\x44\x16\x4e\x01\xc5\xe0\x64\xa8\x43\x8b\x60\xd1\xc4\x41\xd6\x2c\xcf\x29\x5c\xe9\x75\x16\x74\x3f\xd1\xe6\xda\x6a\x89\x74\x8e\x28\x23\x0e\xb3\x4d\x99\x4c\x5b\xff\xa8\xd9\x29\xa9\x4a\xb5\x05\x09\xce\x94\x87\x9b\xde\x29\x05\x2d\x07\x7d\x56\xa5\x4c\x56\x32\xd8\x13\x82\xdf\xb7\x89\x4a\x84\x52\x74\x3f\xa8\x64\x5a\xc6\xfc\xed\x3a\xb9\x35\x51\x98\xbd\x14\x5b\x31\x09\xc7\x92\x48\xf5\xa6\xc8\x69\x5a\xdd\x14\xb9\x9c\x24\x5a\x56\xa6\xbf\xab\x58\xa3\x72\xb7\x95\xc1\x22\x87\x81\xb4\x33\xba\x9b\x41\x92\xd9\x71\xbe\xb8\x49\x33\x76\x25\xf1\x7b\xec\xaf\x8c\x3c\xff\xf9\xf6\xeb\x88\xa2\xd4\xbc\x8c\x15\xc2\x8a\x0c\x87\x3a\x12\xcc\x4f\xfb\x45\xb4\xc2\x4a\xb7\x9c\x9b\xa2\x5c\x10\x6d\x8c\xcf\xd9\x1d\x29\xac\x56\x90\xa0\x8f\x21\xae\x7e\x2b\x35\x29\xe2\x21\xda\x25\x7d\xaf\x0d\x43\xa3\x15\xa4\x13\xcf\x34\xf7\xa2\x9e\xe3\x98\x8c\xe9\x52\xe8\x32\x82\xac\xc8\x3c\x26\x53\xbc\x76\x5e\xa7\xd9\x47\x06\x82\xb8\xd6\x58\x5f\x08\x51\x6e\x99\x79\x1e\x7f\xe1\xc8\x5d\xfc\xc1\xf0\x05\x91\x50\xaf\x62\x82\x10\x4f\xb3\x5b\x95\x31\xd6\xc1\xb6\x53\xf3\x55\xa5\xd6\x63\x8d\xa5\xd3\x78\xad\x6d\x7e\x24\x82\x49\xac\xaa\x9e\x16\x6b\x92\xae\xa3\xff\x66\x31\xf9\xf3\x66\x69\xac\xb2\xd1\xd7\xd7\xe7\x22\xe1\x1f\x21\x57\x9c\x40\x15\xcb\x05\xe8\x4e\xe9\x6e\xdf\xbc\x79\xc9\xe6\x4c\x30\xf3\x66\x91\x2c\x29\x93\x7f\x1d\xc3\xdf\x34\xbb\x95\x67\x03\xd7\xac\x49\x6e\xab\x54\xb3\xbe\xb2\xd2\x49\x3b\xac\x7b\xd0\x2b\xad\x06\xab\xd7\x5a\xf7\x45\x56\x0a\xbf\x62\x86\xfa\x15\x85\x58\xdf\xd9\xad\x15\x8d\xa5\xa7\xd1\x9c\xe6\xc3\x74\x14\x07\xd0\xda\xc0\x99\x39\x26\xb0\x4f\xba\x77\x8b\x57\x39\x57\x93\x97\xe3\x5a\xc5\x98\xd0\x1e\xb2\x55\xc1\xee\x73\x96\x7f\x66\x97\x3f\x8d\xbf\xe4\x43\x36\xa2\x53\x9a\xda\xd4\x3a\x44\xc4\x24\xad\x5f\xca\xf2\xc6\x32\x85\xd5\x3e\x98\x36\x56\x9e\xda\x33\xba\x8e\x49\x29\x5a\xe9\x94\x38\x86\x7f\x7a\x29\x7b\xe8\x58\x92\xb8\x3e\x90\xc8\x1b\xcb\x4f\x8b\xfc\x6e\x83\xfa\x58\xae\x48\x5e\x5a\x83\x84\xa6\x43\x36\x22\x05\x4d\x87\xd9\x48\xc5\x8a\x69\xfd\x23\x4a\x48\x65\x2d\xb2\xd3\x5a\xe8\xc7\x24\xc7\x58\x5a\x51\x22\x7f\x97\x02\x30\x17\x8a\x6f\x54\xfb\xaf\x86\x30\x96\x43\xe3\x54\x0c\xd9\xa8\xe5\x3a\x26\x46\x31\xf9\x73\xc4\x63\x7f\x8f\xea\xbe\x78\x4c\x54\xa3\x3b\xb2\x5e\x65\xa3\x03\xbc\x26\x79\x56\x75\x3f\x52\xdb\x31\x8c\x74\x23\x1f\xec\xea\x52\xb0\xcd\x6a\xa5\x58\x89\x7b\xf2\xae\x1d\xb8\x4e\x48\x41\x56\x6a\x86\xf3\x93\x68\x5e\xba\x72\xb0\x44\xe9\xca\x99\xa7\x85\xd8\x47\x5a\x64\x0e\x07\xd4\xcb\x71\x3f\x87\xdb\x59\xe5\xb2\x62\x13\x9a\x75\x2f\x2e\x2f\xae\x2f\xce\x5e\x93\xb9\x93\x9f\x6b\x85\x27\x61\xfe\x15\x77\x96\x3e\xd6\x73\xb8\xed\xdc\x2b\x25\x8e\x86\x2b\xc8\x02\x36\x1e\xc5\x64\xfe\xef\xb9\xd9\xd4\x7d\xb2\x1b\x6d\xcd\xed\xc6\x0f\x0f\xee\x63\xcb\x68\xbe\x0c\x68\x14\x8b\x60\xf2\x8e\xc9\x5b\x53\x27\xc2\xd3\x91\xe8\x7e\xdc\x55\x5a\x0a\x9b\xa7\x7b\xd5\x37\xa0\x3b\x30\x48\x08\xc4\xf5\x78\x80\x71\x89\xd2\xd8\x43\x9a\x78\x7d\x26\x54\x80\x09\x4d\x41\x93\x40\xa8\xf7\xc4\x0d\x7e\x1c\xe5\x15\x27\x88\x82\xe4\x0e\x25\xa7\x96\x67\x05\xf7\xe0\x9f\x15\x2b\x42\x8a\xb8\xa5\x72\xa4\xe9\xd4\x68\x57\xf7\xd9\x78\xc6\xf3\x2c\xfd\x9d\xf1\xe8\x8b\x48\xb8\x24\xe6\x57\xc4\x4c\x67\xc0\xd7\x71\xb7\xb8\xcf\xc6\xc6\x62\xd5\xef\xd3\x0b\x93\x5e\xc4\x6b\x16\xc8\x24\xea\x79\xa5\x4a\x60\xfa\xc8\xba\x0e\x35\x20\x48\x78\x80\xd8\x40\x4a\x81\xa4\x92\x36\x28\x7b\xa7\x44\x19\x50\x09\x26\x84\x6a\xd5\x59\xc4\x8b\xe0\xbe\x36\xe7\xc0\xd2\x10\x2a\x95\xad\xb9\x96\x85\xd8\xe2\x5a\x36\xe1\xae\x98\xa6\x9e\xfe\x04\xc4\x94\xb9\x9d\x91\x01\xa2\x0c\x35\x8a\x4d\xf7\x6c\x98\x2f\x34\x2d\x6c\xeb\x45\x88\x15\x34\xc1\x96\x2f\x0b\xa3\x10\xd0\xd6\x0a\xba\x4d\xd5\x20\xda\x66\x80\xa5\xa5\x68\xa2\x06\x83\x33\xc5\x33\x56\x7e\x5d\xe5\x35\x11\x99\xf2\x06\xb8\x3a\xc1\xc4\x1c\x71\x81\x76\xe7\x15\x25\xea\x85\x3b\xda\xe7\x82\x36\x92\x30\x9c\xf1\x92\x13\x93\x06\xd9\xf6\xa8\xc8\x17\xbc\x7d\x29\x4b\x25\x06\xbb\xfd\x75\x5c\x95\x93\x08\x2b\x27\x61\x9d\x0e\x33\x76\x72\x92\xa4\xf5\x5c\x38\x49\xea\x5f\xd6\x70\x66\xff\xaa\xb6\x65\xb5\x33\xb1\x8e\x0d\x65\x93\x6a\x52\x7e\x4b\x85\x78\x1d\xbf\xb9\xad\x82\xbc\xf8\x26\xb5\x78\x51\x52\x86\x37\xee\x33\x9e\x7f\x82\x14\xb4\x3b\xc5\x2c\x5f\xcd\x27\x3b\x19\xbb\x63\x7c\x67\x06\x56\x2b\x6d\x45\x60\x6c\xc7\x7b\xa2\xc9\x88\x65\x24\x51\x0a\xa1\xb0\xc6\x3b\x56\xac\xe6\x82\x72\x95\xa1\x25\xab\xdb\x99\x9e\x3a\xc2\x71\xeb\xc8\x0b\x8c\xa2\x01\xe8\x36\xd7\x96\xb8\xc9\x42\xde\xd8\xec\xd3\x4e\x21\x1c\x9f\x9b\x02\x5e\xcd\x45\x53\x68\x8e\x92\x4a\xc3\x0d\xd2\xb6\xdc\xeb\x7b\x52\x44\x95\xa0\x1d\x2a\xa8\x40\xcf\xa5\x21\x55\x3e\xa9\x41\x94\x5f\x43\xbc\x09\x26\x5c\x31\x3f\x9e\x43\x49\xe0\x3b\xd3\x66\x2d\xe7\xe2\x82\xce\xe1\xde\xc2\xa4\xad\x90\x8a\x76\xb9\x9f\xec\xf5\x5b\xb9\x6a\x0f\x72\x61\x24\x36\x22\xf5\x8a\x16\xfb\x18\x23\xc2\x19\xa4\x2e\xba\xd2\xd9\xa2\xe6\x8e\xdf\x55\x41\xc6\x94\xeb\x1e\xa6\x74\xb5\x7f\xf8\x9f\xe3\x96\xad\x33\x25\x63\x15\x1a\xb3\x9b\x34\xb8\x93\xd9\xbe\x12\x81\x11\x2d\x38\x4b\xe6\xf3\x7c\x5c\x2b\xb6\x05\xd1\x20\xa8\x59\x7b\x9d\x0e\x0a\xf8\xfc\x4c\xfd\x7e\xcb\xc6\xd8\x15\xa0\x92\x52\xde\xbd\x49\x0a\xb6\xc7\x48\x6e\x86\xbf\x97\xd9\x9c\xfc\xf9\x73\xda\x3b\xc9\xf7\xf7\x63\xa5\xea\x88\xf2\x3d\x55\x81\xe4\x7b\x69\xdc\xc2\xca\x94\x91\xcc\xfc\x12\x72\xf9\x29\x5b\x43\x38\x8e\xb2\xcc\x59\x23\x32\x63\x99\xe6\x4c\x59\xf5\x79\x3a\x13\x83\xf2\x17\x6c\x46\x5e\xf0\xb6\xa6\xda\x53\x58\x69\x8a\x95\xd4\x4b\x53\xde\xd5\x7e\xa5\xa8\x67\x90\x44\xa3\x71\x36\x42\xab\x27\x18\xab\xe4\xe8\x6b\x6e\xa9\x02\x6d\x3d\x9c\x3a\x2d\xe1\x00\x1c\xec\x24\x97\xf9\x12\x14\x97\x4d\xc1\x3c\x92\x3a\x5b\x53\x97\xc6\xbb\x4e\x6e\x6f\xd9\x24\x8e\x86\xe5\xa5\xb3\x53\x1c\xc5\xc6\x8e\x55\xc2\xbd\x51\xc2\x89\x67\x49\x96\x33\x95\xb6\xd0\x84\x56\x56\x66\xaf\x02\xf6\xbd\xc3\xff\x74\x7b\x50\x2f\xad\xda\x34\xdd\xee\xf2\x84\x8c\xbe\x15\x24\xe5\xe1\x27\xee\xae\x16\xcd\xbe\x22\xd3\xef\x17\x68\xc0\xdd\x1c\x9a\xde\xb6\x7d\x55\xf6\x9b\xce\x87\x8d\x44\x40\xbe\x01\xd5\x4a\xc8\xd2\x9e\x37\xc4\x1e\x09\x22\x61\xc5\xf9\xd8\x47\xae\x03\x1a\x29\x23\x38\x95\x01\x29\x84\x6d\xd3\x0a\xb6\xf5\x35\x8d\xc6\xb8\x4d\x0e\x45\x84\x86\xf2\x21\x90\x75\xbf\x32\x08\xde\x3d\x7f\xf3\xcb\xf5\xdf\x3f\x9c\xbd\x7b\x77\xf6\xf7\x35\x49\x43\xd8\x36\xdd\xb2\xdf\x94\xc8\xa3\x9a\x9e\x46\xdf\xd8\x7d\x3c\x88\xb6\x81\x99\xa4\x81\xcb\x38\xd5\x25\xd1\x25\xae\xe2\xee\xc1\xd5\x08\x50\x61\x4e\x63\x7d\xd2\x7b\x78\x60\xcf\x29\x3f\x9d\x0e\x32\x15\xcb\x13\x38\x81\x34\x84\xc2\x1c\xa4\x92\x38\x48\x45\xd1\xfd\x66\x74\x50\x7b\xc9\xd9\x92\x79\x61\x39\xed\x2d\x89\x78\x04\xac\x6b\x7a\x1e\xab\x06\x83\xce\xbc\x41\xa7\xee\xa0\x2d\xc8\xf9\x7e\x09\xea\xd9\x9e\x30\xb1\xcd\x72\x89\xba\x9f\x89\x93\x7c\x6f\x2f\x4e\x55\x34\x4e\x79\xaf\xe4\x31\x64\xa6\x6c\x6d\xb5\x23\xbf\x1a\x9d\x39\x58\x53\xb6\x6d\x00\xfc\xf0\x10\x39\xaf\x69\x08\xdf\x95\x01\x28\xd1\x88\x46\x58\xf6\x75\x63\x8f\xb6\x58\x4b\x65\xbc\xad\xdc\x95\xa4\x16\xc6\xad\x6a\x23\xd4\x55\xba\x46\x9c\xf0\xbd\xcc\x24\x5d\x63\x16\xd1\x25\x8d\xdc\xd7\xf7\xa9\x92\x3d\x33\x24\x07\x55\xba\x83\xf4\x76\xc0\x26\x6b\x93\xb2\x90\x85\x78\xa7\x8e\xf4\x9a\x4d\x42\x1a\xa8\x17\x3b\x22\x0c\x1a\x5a\x83\x92\xcb\xa5\xbb\x8b\x64\xe9\x24\x0b\x78\x3b\x6d\xb0\x02\x28\x55\xf5\x4f\x36\x64\xb1\xc5\x9b\xcd\x0d\x43\xb3\xd2\xd2\x25\xe3\x2e\xbb\x4c\x78\xc1\x2e\xc0\x85\xb6\xdf\xb3\x54\x82\x44\x02\x99\x42\x02\x62\x98\xd9\x39\xbc\x9d\x86\x26\xcd\xcc\x3d\xa1\x76\x41\xf1\xcd\xd7\x44\xf9\xd4\xe1\x5b\xc8\x1e\xe0\x23\x45\xfc\x92\x88\xcb\xea\xb7\x7f\xeb\xed\x51\x87\xa5\xbf\x71\xa8\xe1\xab\x05\xb5\xa7\x5b\x0d\x2c\x83\xeb\x25\xd3\xd7\xcb\x8f\x1d\x9f\xb9\x7b\xca\x0b\x93\xeb\xfe\x54\x83\x69\xa9\x11\xb8\x90\x06\x5e\x11\x67\x3d\x75\xa9\x34\x86\xbb\x61\x96\x84\x7c\x89\x21\x7f\x95\x21\x57\x0a\x93\xc8\x8a\x41\x9d\xf0\xa9\x08\x88\x28\xeb\xac\x63\x3c\x11\xa5\x13\x3a\xc2\xc1\x86\x0a\x4d\xa6\x34\x12\xa7\x76\x1c\x8a\x46\xc2\x19\xc4\xce\xa8\x5a\x7a\xd8\x70\xd9\xeb\xdb\x53\xe5\x01\xd8\x74\x7b\xae\xca\xb7\x27\x74\x15\xbc\x48\x17\x8c\xdf\x86\x44\xf4\x4d\xd7\xa8\x6a\xad\xfe\x1e\x25\xb9\x4e\xd1\xd1\xc2\xfc\xb5\x69\xf1\x8a\xe7\xbf\xb3\x2c\xe2\x71\xa7\x03\x56\xcf\x58\x0f\x12\x3e\x0d\x47\x36\x6e\xa8\x8a\x56\x2a\xdc\x30\xa5\xf9\x30\x19\x9d\x00\x1c\xb8\x81\x4f\x11\x77\x3a\x11\xa8\xdb\x57\xc5\x2c\x2a\x62\x49\x12\x80\x07\x8c\x8b\x2d\x93\x51\x1c\xaf\xfd\xbd\xbd\x05\x5a\x08\x6c\xbd\xb5\x84\x94\xc8\xaf\xee\x33\x31\x63\x22\x1d\x5f\x7a\x11\xce\x5c\xcc\xa5\x0c\x8b\xfa\xb1\xaa\x70\x26\x6a\x4a\xb6\xff\xab\xbd\xc7\x7e\x20\x47\x53\x59\x59\xe3\x8c\x27\xe7\xd0\x78\xb3\xab\x75\x0a\x50\x13\x0a\x1c\x1e\x30\xec\x8d\x52\x02\x86\x47\x52\x60\xe1\xc6\x5e\xb1\x4c\xa8\x5f\x0d\x78\x67\x14\x6e\xbf\x0a\xa6\x3f\x9c\x86\xd9\x44\xcf\x06\x68\x98\xcc\xa5\x61\x04\x11\x7b\x3c\x44\xc3\xac\x1a\x99\xb5\x2a\xab\x86\x60\xaf\x10\x23\x3e\xab\x66\x64\x2e\x6a\x54\x8b\x64\x69\x19\x9d\x1a\x93\xa8\xaf\x47\x8b\x8d\x26\xd4\x0a\x09\xf0\x0a\xe5\x90\x51\x51\x83\xc5\xb2\xd3\xe9\x80\xc3\xf5\x9f\x55\x49\x98\x52\x18\x65\x44\x58\x81\xd6\x3d\x05\x99\xca\xe3\x60\xec\x74\x53\x89\x34\xb2\x21\x1b\xa6\xa3\x11\x15\xc3\x74\x64\x28\x09\x0d\x85\xc6\x33\xb7\x48\x96\x8d\x1b\x68\x91\x2c\x03\x3b\xc7\xc3\x86\xce\x1e\x73\x6a\x79\x83\x6e\xd9\x40\xce\x72\xf0\xc2\x1b\x3c\x1b\x0a\x18\x7c\x36\x4c\x47\xeb\xc0\x6e\x9a\x6f\xa0\x85\xd2\x4c\x30\x9e\x25\xf3\x5f\xe5\xbc\x5d\xec\xa6\x3f\x5c\x7b\x6c\x49\xed\xf5\xed\x53\x29\x8a\xc2\xfa\x7e\x3a\xa8\xb6\xbb\x7a\x02\xc9\x1b\x77\x80\xcd\x2d\x4d\x78\x2b\x46\x3b\x4c\x0b\xa9\xc1\xe5\x5b\xf2\xdd\xdf\x33\x2e\x4d\xc9\x84\xd7\x24\xb0\x84\x3f\x98\xac\xa9\x20\x3c\x75\x6b\x67\xee\x7e\x4e\x69\xe6\x1e\x63\x1d\x82\xd2\x7d\x59\x89\x46\x99\x53\xf0\xa9\x88\x0e\xff\x33\x55\x49\x07\xcd\xe3\x5e\x5f\xbe\x28\x9c\x17\x07\x44\xc4\x6e\x14\x2d\x4a\x69\xa1\xf2\x7a\x0c\x0b\x92\x90\x7c\xb4\x99\xca\x19\x23\x95\xe3\x10\x37\x70\xdc\x8b\x66\x59\xa1\x2a\xd3\x74\xd0\xfd\x15\xf8\xf6\xcb\xa2\xbc\x92\xe5\xfb\xe2\xf0\x3f\x83\x37\xc6\x78\xb3\xce\x51\xed\x55\xe6\x4e\xba\xb4\x5b\x35\x4e\x6c\xd2\x87\x7d\xfd\x8e\x6a\x64\x1f\xcb\xc5\x5d\xdc\x8f\xb9\xf0\x87\xce\x80\x87\x87\xff\x29\xf6\x0e\x46\xa4\xfc\xaa\x5f\x79\x35\x1a\x21\x27\x38\x55\x0e\x1a\x2b\xd1\xcc\x6a\xfb\x87\x8d\xcc\x54\xad\xa4\xb9\x56\x4c\x26\xaa\x5c\x5a\x29\x37\x13\x64\x2a\x48\x0f\xa2\x3e\x63\x85\x9f\xaf\xe8\x44\xe9\x8b\x96\x4d\xf7\x7b\xc9\x40\x0a\x23\xc6\xa2\x35\xaa\x1f\xad\x4c\x19\x4c\x23\xe3\x33\x51\x31\x22\x20\x0d\x47\x8d\x25\x75\xd1\xf0\x2d\x60\x82\x54\x2d\x34\x4e\xc6\x33\xf6\x33\xcf\x57\xcb\xa2\xfa\x71\x9e\x16\x2a\x2d\x4f\x5d\xef\x3d\x07\x63\x15\x7d\xe7\x41\xb8\x5f\x84\xfb\xe5\xce\xfd\xa2\x22\x35\xcf\x9c\xe0\xb5\xf2\x4d\xc5\x32\xdc\x2d\x50\x32\x12\x0f\xc1\xcd\x02\xc5\x77\x2b\xab\xc0\x13\xcd\xb9\xb4\x6d\x39\xbf\x55\x30\xd0\x71\x74\x94\xf3\xa8\x7c\xf3\x3b\x8b\xfe\x80\x72\x1f\x6d\x07\x01\x03\x65\x46\x63\xfb\x65\xc2\x6e\x56\xb7\xca\xf4\x69\x10\x60\x0a\x92\xae\x53\x20\xca\xdd\xc0\xa9\xf0\x01\x4c\x3a\x06\xfe\xd5\x89\x75\xd0\xda\xc3\x54\x21\x22\x5e\xaf\x95\xf5\x40\x1e\x3a\xd2\x79\x77\xca\xc4\xb8\xd6\xb5\xc8\xb8\x7c\x0e\xd3\xee\x3b\x76\x9b\x16\x82\xf1\x21\x1b\x8d\xc0\x32\x63\x9e\x27\x93\x4a\xc5\x52\xc1\x52\x08\xe7\x08\x2a\x42\x97\xbf\xfa\xf4\x9c\x2f\xc1\x2a\xb5\xa2\x7b\x2b\xd7\xd1\xd8\xad\xd2\xa9\xac\x50\x1f\x70\x5b\x99\xf4\x38\x01\x7e\xa1\x78\x5d\xc4\x6c\x2c\x6d\xc2\xfd\xca\xc2\x61\x93\x0b\xf4\x11\xd4\xa6\xf8\x79\x4d\x9c\x69\xf4\x88\x85\xb8\xbe\x50\x4c\x4d\xfc\xba\xb6\x45\xfd\xdd\x2b\x5e\xeb\x8d\x07\x1c\x1f\x38\xae\xa5\xca\xd2\xc5\xf5\x52\xce\x8c\x59\xd9\x17\xa5\x5d\x15\x2a\xbc\x35\x1c\x83\x22\xfd\x9d\xe5\x92\x53\x26\x4a\x33\xcd\xa2\x2f\xb8\x65\x07\x82\xb0\xec\x6e\x90\xad\xc9\xa5\xca\xb7\x16\xa5\x64\x15\x83\x45\xb4\x35\x0c\x5b\x8e\xe9\xdc\x0f\x96\x2d\x5b\xfa\x1a\xd3\xc8\xb9\x1c\x75\x89\x30\x14\x9e\x25\x3f\xfd\x12\xd6\x93\x4d\xd7\xa4\xa8\xfb\x00\xc6\x59\x81\x4f\xc9\x7a\x4d\x8a\x8d\x13\x9d\x92\x5e\x4c\x12\x92\x9a\x89\x06\x91\x65\xdd\x8c\x20\x9c\x77\x29\x84\x78\x1e\x93\x22\x14\xc0\x16\x35\x71\x9e\x80\x98\x43\xbe\x1b\x48\x50\xe5\xa1\x24\x48\x23\x99\x07\x3d\x89\x50\xdb\xe6\x96\x1e\x54\x50\x5a\x14\x93\xc2\x7e\x29\xf4\x2b\x39\x95\x81\x73\x64\xb5\xfa\x96\xc5\x6b\xd9\x1d\xe4\xd6\x78\x61\x6e\x81\xca\x16\x74\x2e\x08\xc7\x5b\x5c\x83\x2b\x8a\x31\xbc\x81\x1a\x3a\x64\x77\x08\x37\xa6\x28\x2b\x48\xe9\x1c\xb5\xcf\x2f\x5f\xb6\x63\xcd\xd8\xd9\xb6\x8c\xf5\xb8\xdb\x27\x44\xbc\xcd\x69\x7a\xea\x58\x28\xa5\xf1\x40\xc7\x65\x00\xd3\x03\x35\x06\x52\xd0\x80\x31\x9f\x5e\xc0\x42\xc0\x8b\x48\x6e\xf0\x98\x28\xb3\xb8\x37\x51\x41\x58\xdc\x2a\x85\x9c\x5a\x91\x3c\x26\x02\xe3\xa2\x40\xfd\x77\xd1\x2a\x76\x5e\xa9\x33\xcb\x32\x11\x8c\x33\x5b\xde\x31\x26\x02\xbb\x01\xbc\x9e\x27\x5e\x5e\x45\x14\x07\xa2\xec\xc2\xac\x65\x5b\xff\xc0\x18\x56\x7a\xc3\x29\x6b\x19\xf5\x6e\x39\x8e\x09\xca\xb3\x8c\x4d\x9c\x1b\x8e\xec\x3c\x83\xbb\x03\xc6\x8b\xe6\xcd\x01\x6f\x28\x8f\x6c\xcd\xcc\xa5\x99\xe9\x78\x32\x2d\x37\x14\x15\xce\xe2\x20\x36\x81\xa8\x9a\x67\xe1\x5a\x09\x6c\x9a\x4a\xea\x4f\x25\x27\x95\xd3\x67\x00\x7f\x21\xd8\x22\xc4\x6a\x1a\x9a\x25\x8a\xbb\x8b\x64\x09\x41\xbb\x88\x0f\x0e\xa7\x95\x4a\xfc\xe1\xed\x96\xb0\x57\xb7\x84\x26\xa8\xb1\x84\x5f\xee\xdd\x94\x8c\xc9\x21\x59\x3b\x51\x93\x99\x20\x98\x56\x40\xdb\xcc\x97\x20\x95\xe8\x9d\xcb\x44\x54\x04\x56\x9e\xe4\xb8\xf6\x3e\xe9\xa6\x16\x72\x15\x97\x00\xb1\x02\x40\xe8\xc7\xea\x55\xe5\x3b\x37\xd4\x11\x95\x5a\xe6\x6a\xed\xda\x25\x74\x3f\xa7\x55\xff\x45\x17\x58\xa5\x40\xa8\xc1\x76\x6d\xb0\xeb\x0a\xbe\xa9\x31\xe2\x36\x7d\xfb\x0b\x6b\xec\x15\x53\xe3\xd5\x5e\x06\x90\x26\x64\xec\x9c\x6b\xe0\xa1\x46\xe1\x61\x02\xd3\x56\x9d\x3a\xae\xd4\x99\x09\xd7\x9d\x5b\x0b\xc6\x9a\x9a\x21\xb8\x38\xd5\x35\x44\xeb\xaa\xbb\xe4\xb1\x2c\x5f\x34\xe5\x63\x74\xe8\x66\xa7\x0b\xf7\x8a\xa9\xab\x59\xa5\xac\x9d\x06\xe4\xf6\x80\x05\xaa\x34\x11\xa6\xd6\x9d\xdb\x4b\xed\x29\xbc\x5d\xe4\xd7\x97\x35\x83\x71\xa3\xac\x79\x57\xa2\x6e\xa1\xd5\x3c\x5c\x27\xce\xb6\xea\xe8\x5d\x9e\x8b\x72\xb6\x4b\xab\x6e\xbe\xc4\xbc\xaf\x6e\xd4\x88\x4e\x87\x97\x33\x65\x7a\x73\x89\xc3\xcc\x09\x87\xd0\xf7\xaa\xd3\x9a\xf4\x9a\xe5\x2a\x4c\x13\xb7\x9b\x01\xaa\x77\xf5\x32\x5f\xd6\x81\xae\x0e\x22\xba\xea\xa6\x40\x65\xce\xa1\xae\xc4\x02\xc6\xa1\x6e\x48\x19\xab\x17\x1b\x8b\x45\x48\x11\xa3\x0c\xf5\x55\xce\x37\xa4\x91\x75\xeb\x43\x49\x7d\x41\xd7\xbb\xff\x5a\x77\xdf\x9a\x8c\x30\x44\x74\x3a\x4a\xb2\x14\x9f\xec\x46\xdc\x3a\xab\x45\x71\x0c\xce\x25\x27\xf1\x89\xb1\xd5\x04\x21\x85\x82\xd5\xe7\xaa\x29\xb6\xa6\x73\x58\x76\x47\xfc\x54\x2d\xfa\x5a\x09\x1c\xf2\xd2\xfd\x72\x85\x1a\x35\x87\x2b\x28\xbb\x1f\x3b\x62\xb4\x5d\x4a\x73\x23\xa1\x94\x65\xbd\x5c\x2e\x91\x92\x6e\xc6\x84\xd1\x2f\x72\x26\x83\xdd\x3e\x81\x19\x40\x3c\xed\xb5\x96\x4b\x7a\xce\xe6\xb6\x6c\x4f\x97\x95\x57\xa4\x50\x04\x2e\x62\xea\xd4\xc1\xea\xf1\x1a\x0f\x93\x3c\x12\xe1\xad\xe7\x85\xdc\x08\x51\xb3\x9c\xda\x50\x1a\x27\xfc\x39\xed\x9d\xf0\xfd\x7d\x8f\x62\x31\xc2\x00\x58\x7b\x4c\x54\x0d\x81\x39\x20\xea\x40\x94\x91\x32\xaf\x1a\x37\xdb\xdc\x40\xc9\x2d\x42\x98\x14\x0a\xa1\x7a\xfc\x89\xcf\xe0\xa1\x54\xd9\xa8\xa7\xbc\xdb\xbd\xdd\x54\xd3\xcf\xd4\xc3\xd6\x9b\x47\xe3\xd5\x30\x3d\x2e\xc7\x5b\x4c\x64\x39\x6e\x9c\xc5\x72\xec\x4c\x81\x27\x5b\x34\xc8\x93\xc6\x06\x79\xe2\x34\x38\xad\x6a\x5a\xaa\xe1\x0b\xa6\xcb\x9a\x06\x4d\xfa\x2a\xdb\x60\xb1\x4d\x83\x45\x73\x83\x85\xdb\x20\x1e\xd4\xc6\x56\xb5\xd3\x32\x96\x35\x75\x59\x76\xb7\x55\x3d\x96\xdd\xb9\x4e\xf1\xaf\xf3\x4f\xaf\xd9\x1d\x9b\xff\xfa\x86\x2e\x95\x70\x71\x51\x2b\x5c\xc4\x81\xdf\x2d\xc2\xb9\x6e\xca\xe8\xc8\xed\xfd\x6e\x81\xe8\xcc\x89\x00\x71\xb7\x59\xe6\xac\x08\x08\x47\x59\xf2\x8e\x4d\xa9\x70\xd3\x50\xdd\x25\xfc\x7a\x6b\x0f\x34\x25\x1f\xac\x7a\x9f\x09\xb0\x5a\xe0\xa3\x46\x27\x99\x46\x0b\xa8\x5b\x26\x7e\x4d\x78\x14\x5b\x33\xa2\xaa\xd8\x3a\x58\xde\x4b\x4a\xfe\x6b\xc8\x68\x19\x11\x8d\x0b\x02\xdd\x8b\x61\x6a\x01\x4e\xe5\xb4\xe5\x16\x3c\xbe\x0b\x1a\xcc\x16\xa2\x5e\xe3\x1e\x78\x79\xfe\xea\xec\xfd\xeb\xeb\x0f\x2f\xce\x7e\x39\xfb\xe9\xe2\xf5\xc5\xf5\xc5\xf9\x15\xd5\xec\xff\xeb\xe4\x3e\x5f\x09\x89\x89\xf1\xc5\x75\x72\x2b\x9f\x96\x9c\x2d\x13\xce\xce\xf8\x6d\x21\x1f\x15\xc4\xf5\x93\x89\x14\xfc\xa7\x3c\xff\x28\x31\x3e\x5e\x2c\xfa\xd1\x13\x2d\x98\xda\x8a\x96\x91\xdf\xd5\x48\x55\x69\xfd\x15\x92\x56\x66\x63\x59\x7e\xdd\x62\xdd\x37\x17\x97\x17\x6f\xce\x5e\x37\x0f\xba\xef\x0d\xba\xef\x0f\xba\xef\x0d\xba\xff\x95\x83\xee\x37\x0e\xba\x5f\x19\x74\x5f\x99\xe2\xdd\x0b\xda\xfe\x8f\xbd\x9b\x41\xef\x3f\xda\x2d\xb3\xe5\x6f\x85\x67\xd0\x91\xe5\x13\xa6\x04\x95\x94\xde\x8b\x35\xeb\x5e\x9d\xbf\xbb\x38\x7b\x7d\xf1\x8f\xb3\xeb\x8b\xb7\x97\x1f\x5e\x5d\xbc\xbb\xba\xfe\x70\xf9\xf6\xe5\xf9\x87\xab\xeb\x77\x17\x97\x3f\xd3\x7b\x75\x24\x6e\x6a\xbc\x45\x79\xe4\x3a\xe9\xea\x00\x05\x69\x39\x40\x81\x1f\xce\x22\xcd\x6e\xe1\x72\x7d\xc9\x96\x60\xc5\x92\x76\xc7\x49\x36\x51\x61\x50\x40\xa4\x9e\x76\xd3\xec\xb7\xff\x3f\x77\x7f\xda\xde\xb8\x71\x2d\x8a\xc2\xdf\xf9\x2b\x48\x9e\x04\x46\x1d\x96\xd8\xa4\xba\x93\x9d\x50\x5d\xe6\xe9\x41\x6d\xf7\x89\x7a\x48\x4b\x1d\x1f\x1f\x98\x5b\x81\xc8\xa2\x58\x16\x08\xd0\x85\x82\xd4\xb2\xc8\xf7\xb7\xbf\x4f\xad\x9a\x01\x90\x6a\x3b\xd9\xfb\xde\xe7\x7e\x21\x81\x42\xcd\xc3\xaa\x35\x2f\x3a\x17\x74\xf1\x61\xcd\x84\xa0\xca\x47\x64\x6f\x8c\xd9\xd0\x06\x75\xd1\x85\x8f\xc6\x98\x7d\x45\x64\xc8\x3f\x20\x7c\xf9\x75\x43\x60\xcb\xb8\xd9\x7f\x9c\xdb\x11\x54\xf9\x3a\x15\xf3\x15\x5d\x58\x8f\xd7\xa5\xe9\xf4\x95\xeb\xd7\x08\xe7\x4d\x67\x76\x9f\xe8\xea\x7e\xa1\x22\xa9\x74\xef\x98\x58\x75\x3d\xf3\xbd\x2e\x78\xba\xab\x36\x9b\x82\x0b\xba\xe8\x23\x4f\x3b\x97\x99\x6b\xf1\x15\xb8\x98\x36\x98\x94\x17\x19\xe0\xa4\xa7\x3d\x10\x92\x62\xbb\xbd\x13\x71\x81\xa2\xe8\x5a\xfe\xa1\x13\x54\x90\xc2\xf7\x43\xed\x64\xdc\x6e\xce\x0b\xcc\x7e\x9f\x23\x90\xbd\x31\x3e\x7c\x25\x65\x3b\x29\x58\xc5\x1f\xb9\x52\x01\x4d\x3c\x8f\x91\xa3\x09\x77\x1c\x33\x7f\xa8\x1d\x16\x45\x5e\x47\xa3\x28\xce\xbd\x6e\xfb\xb1\x11\x82\x3d\x44\xc3\x50\x06\xa6\xde\x5a\xc0\x11\x1d\x35\x86\xa6\xfc\x1d\x2b\x61\x4d\xdb\xf4\xc6\x6c\x14\x9d\xb0\x5f\xca\xe5\x63\x8f\x10\x1b\xd4\x8b\xd7\xb6\x26\xe4\xf9\x96\xf0\x96\x2d\x0f\xde\x73\x4f\x44\x14\xc5\xbd\x3b\x11\x0b\xb4\xdd\x9e\xca\xbf\x1e\x21\x39\x3a\x41\x56\x4b\x04\x4c\xc4\x85\xf2\x39\xd8\x85\x22\xc6\x6e\xa7\x25\x13\xf7\xc7\x4c\x04\x18\xd5\xf8\x67\x6a\x77\x20\x26\x52\xd3\xce\xb2\x31\xcc\x9a\xc0\xd8\x8d\xb2\xf6\x3e\x18\xa8\x1b\x14\xe7\x70\x84\x74\x0f\xbc\x8a\x72\x74\x27\xe2\x1c\x45\x51\x1c\x73\x92\x3b\x78\x34\x84\x15\x88\x9f\xfc\xe7\x1f\x7f\x1a\x5c\x4d\xe2\x9f\x16\x03\xf4\xc7\x3f\x3c\x41\x28\x8a\x78\x32\x9e\x4d\xdf\x83\x43\xca\x58\x3e\x23\x15\x0d\x17\xa4\xb0\xb1\xd7\x48\x30\x23\x39\xc2\xb4\x0e\x2b\x8c\x0f\xd2\x60\xcd\x63\xed\x90\x71\x5f\x4c\xa8\xdf\x32\x37\xf5\x16\xeb\x93\x73\x74\xd4\x31\x76\x72\x6e\x6a\xbc\x98\x5b\x77\x02\x14\x0a\x4f\xe5\xdf\xe1\xe1\xf1\xe6\xf0\x8e\x8e\x5a\x87\xc7\x51\xcb\x4c\x90\xfa\x32\x46\xd1\xde\xa6\x6a\x87\xa9\xa5\xd9\xdd\xfe\x38\x29\x21\x28\x70\x83\x36\x04\xe7\x76\xeb\x63\x79\x7e\x1d\x35\x53\xeb\x7d\x71\x45\xc2\x06\x94\x33\x07\x1d\xb3\x02\xb4\x3c\xbc\xe3\xe9\xd9\x77\x82\x3d\x9b\xb3\xdc\xd4\xec\xe9\x5a\x38\x95\x3c\x0c\xf4\x00\xde\x4e\x58\x51\x95\x76\x2a\xd2\xda\x8e\xeb\x84\x7a\xeb\x90\xca\x10\xd6\x0b\x9c\x46\xd1\x07\x11\xa7\xc8\x9a\x2b\xb7\xce\x76\x6a\xf3\x87\x99\xb4\x41\x72\xb8\xb6\x61\x16\x84\x70\xd1\x86\x3b\xfb\x13\xd7\x98\x55\xd5\x6c\xab\xc2\xac\x32\xa5\x95\x33\x04\xf4\x6b\xcb\x1d\x22\x02\x9b\x79\xb8\x68\x71\x1e\x2c\xc2\xbe\x93\xe4\x03\x06\x1a\x45\xe7\x10\x9c\xc3\x23\xa2\x01\xec\xfa\x4d\x9e\xf0\x28\xea\x9d\xcb\x83\x71\x82\x38\xe1\x6d\xbd\x69\x8d\x88\xe3\x34\x52\x00\x08\xee\x0d\x29\xb4\x6f\xa3\xaa\x2d\xc4\x96\xf1\x53\xd0\xd7\x95\xe0\xea\xe2\x7e\x63\x4d\x06\xb8\x03\x60\x72\xc9\x54\xdc\x3c\x8b\x62\x19\x71\xbd\x5b\xea\xa0\xe3\x18\x80\x88\x3c\xf8\x2d\xa8\xfc\x5f\x08\x21\xd4\xb6\x17\x45\xfd\x3f\x6e\xff\xd8\xb7\x69\x50\xff\x2e\x96\x78\xd5\x07\x39\x29\x56\x79\xe9\x60\x7b\x35\x08\x02\xaf\x41\xc0\x15\x01\x67\x46\xd5\xe8\x73\x27\x6c\x99\x4e\xad\xfe\xdc\x17\xa8\xb8\x00\x76\x36\xc4\x92\xf8\x2d\x61\x88\x74\x78\x94\x60\x24\x35\x58\x86\xdb\x36\xb6\x6c\x2d\xdc\xd8\x07\x4e\x41\x33\xf3\xa1\x90\x30\x8f\xc1\xaf\x28\x02\x98\x3d\x8d\xff\xc5\x8d\x80\x26\x31\x6f\x3d\xe2\x7b\x86\xac\x3b\x1a\x0c\x04\x1d\x08\x35\x78\x68\x7b\x47\xd1\x17\x75\xef\x84\x28\x9c\x3c\x99\x4a\x07\x6a\x93\xce\xe9\xe7\x4f\x6f\xe5\x01\xb0\x1b\x9f\x4a\x42\x0f\xb4\xc1\x09\xb1\xe1\x23\x83\xc4\xa1\x28\x3e\x6f\x36\x94\xbf\x4a\x4b\x49\xb4\x82\x43\xc8\x60\x97\xb6\x21\xd2\xc9\x4c\x29\x95\xa9\x81\x79\x91\xf5\x4b\xa4\x4f\x0b\x74\x4c\x77\xb8\x7f\xf1\xf2\xc3\xeb\x1f\xfb\x70\x32\x75\xcb\x41\x0b\x7b\x83\x11\x86\xf8\x74\x2b\xad\x61\x0c\x5a\x82\x58\x8f\x46\x1e\x59\x5f\xa3\xf6\x0d\xe7\x95\x6c\xd9\x71\xed\x01\x80\x9a\x2e\x8f\x5a\xa6\x49\x4e\x84\x55\xc4\x7a\x21\x62\x10\x94\xb2\x65\x5c\x20\xab\x38\x73\xab\x77\xa2\x84\x2e\xfa\x8d\x70\xa4\x90\x6e\x36\x2c\x37\x20\x40\x66\x56\xbb\xad\x40\x78\xbc\x67\x14\x7e\x3f\x1b\x44\xd1\x81\xd0\x43\x5e\xbc\xdb\x43\xe3\xb0\x83\x7d\x01\x4c\x4e\xa4\xc6\x66\x89\x14\x7f\x1c\xac\x36\x8e\xdc\x8c\xc3\x69\x71\xb2\x83\xe3\x30\x9d\xac\xd1\xa6\x87\x22\x51\x7e\xfd\x28\x42\x35\xe8\xdc\x57\x83\x76\x1c\x5e\x1d\xf9\x48\x03\x54\x17\x51\x29\x4f\xd8\x0c\x0e\x9b\xde\x60\xfb\x88\xcc\x1d\xd0\x02\xe1\xc0\xfc\x8e\xb7\x8c\xec\x50\x1c\x3f\x0f\xa5\xb7\x30\xa1\x9d\xe0\x31\x48\x49\x3b\x1e\x82\x30\x8f\xa2\xd6\x83\xa4\xf3\x07\x01\x36\xfd\xee\xd7\x7b\xe7\x79\xc0\xd4\x0a\xfb\xef\x94\x63\xb8\x36\xfa\x92\x0e\x7f\xa9\x28\xbf\x3f\xa7\x19\x9d\x8b\x82\xc7\xdf\x94\x73\xce\x36\x22\xb9\xce\xd6\x9c\xf4\xbf\x19\x88\xc1\x37\xfd\xd9\x37\x1a\x0f\x34\x20\xbb\xd3\x20\xcb\x5f\xa5\xb9\x24\xbe\x97\x2c\x5f\x74\x4b\xca\x95\x20\x76\xd1\x55\x14\xa3\x24\xbc\xba\xff\x64\xf9\x91\xbe\xa5\xfe\xd9\xff\xaa\x40\x9c\xff\x86\x78\xa0\x46\xa6\x62\xe7\x00\xea\x85\xdd\xe6\xe1\x66\xc4\xd2\x1f\x6d\x04\x34\x06\xee\x81\x05\xf7\x0d\xa8\x48\xb1\xa4\xbc\x03\x56\xc0\x01\xe4\x54\xbb\xb3\x48\x1f\x0d\x23\x9a\x42\x18\xd1\x83\x41\x31\xcd\x0d\xe3\x85\xc6\x09\xb3\x06\x20\xb3\xd6\x2b\x7b\x9b\x79\x48\x7c\x1d\x35\x81\x1d\xe9\x07\xe0\x32\x37\x43\x9b\xd8\x84\x1b\xb1\x49\x30\x7b\xbf\x35\xde\x97\x13\x91\x98\x5e\x3c\x56\x83\x6b\x6b\xda\x72\x31\xd9\x6a\x94\x3c\xab\x9d\xd7\xbf\xa7\x08\x51\x1a\xd8\x7c\x17\x7f\xa6\xc8\xb1\x03\xef\xc4\x5e\x1c\x73\x67\x33\x9d\x0a\x9f\x0e\x68\x23\xd1\x8f\x3c\x12\xdd\x93\x1b\x0b\x8f\x54\x17\x96\x54\x77\x15\x7f\xf1\x5b\x1f\xef\x69\xfd\x7c\x7f\x17\x25\x1a\x2c\x0f\x77\x03\x13\xb6\x85\x3f\x1c\x2e\xdc\xdd\x5f\xf2\x85\xa8\xc7\x18\x69\xf8\xcc\xd7\x17\x01\x4d\xf8\x4c\x1d\xc3\x5c\xe3\x3a\xd6\x74\x60\xb7\xa3\x43\xc3\xe5\xa3\x26\xb8\xdb\xa5\xd8\x21\x4c\xe3\xfe\xff\xba\xce\xd8\x7a\x4d\xf9\x93\x4a\xb0\xac\x8f\x93\x3e\xfd\xb2\x29\xb8\x28\xfb\xb8\x4f\xe5\x94\x1d\x5d\xa5\x57\x34\xeb\xcf\x70\x08\x48\xfa\x55\x49\xbb\xa5\xe0\x6c\x2e\xfa\x1d\x3a\x4c\xcb\x86\xe3\x4a\x38\x4a\xbd\x66\xf4\x0c\xb1\xdd\xf6\x55\x76\x39\xc0\x65\xca\xb2\x8a\x53\x88\x8a\x25\x6b\x61\xd7\xf9\x1e\x11\xe6\xf8\x44\x3c\xaf\x03\x2e\x08\xe0\xa6\x27\xc0\x81\x2a\x31\xf3\x59\x3b\x51\x64\x42\x6e\x38\x9f\x8b\xc8\xdd\x8b\x3c\xce\x25\xa9\x3d\x3a\x29\x9e\x33\x53\x6b\x61\x6a\x4d\x09\x4b\x8a\x59\x87\x26\xe9\x8c\xe4\x49\xea\x5b\x0b\x61\x3a\x5c\xb2\x2c\x7b\x5f\x65\x59\xb9\xa7\xc7\x72\xcc\xca\x10\x01\x22\x5b\xc2\xca\xa9\x30\x07\x09\x9f\x29\xe7\x9c\xee\xf8\xd3\x21\xcd\xcb\x8a\xd3\xef\x2a\xb6\x20\x85\x53\x45\x65\xbf\xaa\x24\x86\x29\x18\x37\x91\x14\xd3\x61\x95\xdf\xf1\x74\x13\x34\xeb\xc5\x7b\x69\xdc\x25\xa7\x10\x6b\x9f\x2e\xba\x80\xaa\x74\x45\xd1\xbd\xa2\xdd\x0d\xa7\x25\xcd\x85\x17\xc4\x04\x3a\x01\x59\x9b\x0b\xb9\xaf\x6e\x11\x16\xf7\x22\x62\x34\xa9\xec\xdf\xe9\xff\xab\xef\x55\xda\xf7\xe9\x6a\xd5\x03\xf0\x1d\xe9\x1b\x19\x10\xea\xd4\x11\xf5\x33\xdc\x49\xd4\xd3\x38\x23\xa6\xc4\xf9\xd9\xdb\x57\xa7\x84\x0e\x5f\xb3\xb9\x38\xa7\x32\x5d\xe9\xba\xab\x7e\x69\xce\x98\x36\xb0\xbd\xa1\xf7\xa5\xe6\x3c\x8f\x1c\xf0\x62\x81\x28\xe3\xf2\x5a\x2e\xd6\x60\x90\xbb\x33\x5c\x34\x33\x6c\xb7\xb2\x94\xcb\x92\x3a\x20\xac\xdb\x32\x02\x3d\x30\x4c\x52\x26\xba\x07\x6d\xd2\xd4\xd6\x38\xec\xf5\x2e\x5d\x2c\xda\xcc\x64\xeb\x1e\x49\xe9\xd4\xd6\x98\xd0\x19\x31\xaa\xb0\xf2\x55\x0e\x65\xa6\xc5\x93\x7b\x9c\x8f\xb6\x54\x67\xbc\x89\x7a\xb5\x4e\xf4\x44\x44\x51\xf3\xa3\xfa\x32\x73\xd2\x3a\xbd\x34\xa5\xf6\x6e\x75\x70\x1e\x94\x5e\x80\x89\xde\x67\xbc\xef\x59\xb3\xcd\x3d\xde\xc0\xda\x63\x85\x58\x7f\x80\x81\x9a\x83\x51\x11\xe2\xed\x31\x31\xea\x1a\x11\x61\xac\x0b\x6d\xef\xdd\x72\xe1\x2a\xdf\x50\xca\x82\xc7\x15\x48\xc4\xd1\x78\xe6\xa4\x12\x54\x7d\xa7\xb2\x75\xed\x3c\xbf\x45\x40\x6b\xbd\x4c\xf9\x6d\x1e\xd6\xcb\x00\xa5\x89\x47\x45\xfb\x35\x1f\x49\x1d\x73\x58\xaa\x8e\x77\xcc\x1a\xd3\xe8\xbc\xbf\x2b\xbc\xcc\x3a\x80\xd7\x02\x5b\x49\x3d\xd1\x9d\xf6\x49\x76\x70\x71\xb5\xdf\xea\x83\xe6\x56\xd4\xb7\xb0\xa8\x85\xf1\x95\x1f\x21\xae\x43\xca\xb2\xbd\x99\xe4\x47\x15\x26\xae\xe6\x52\xcb\xd5\x41\x5c\x4e\xb5\xb5\xda\x63\x45\xa8\x0d\x91\xcc\xc2\xd8\x82\x6d\x81\xf7\x84\x07\x20\xb4\x7a\xf0\x4e\x3b\x89\x34\x4a\xd9\xed\xa6\xf0\xf2\x2b\xb8\x13\x74\xb5\x1e\xd2\x00\x82\xde\x7b\x02\x1b\x15\x0d\x5a\x33\x35\x77\x38\x54\xd4\x6e\xe1\xbf\xfe\xce\x38\x26\xfe\x55\x67\x62\x64\x2a\x20\x63\xf5\x3c\x27\xb1\x80\x9d\x31\x55\x7f\x6a\xd3\x68\xd0\xa3\xe6\x9c\x02\x89\x46\x6f\x89\xca\x81\xb5\xfe\x85\xc0\xea\x5d\x7e\x07\xb5\x02\x55\xe5\x3e\xfb\x39\x58\x34\xbb\x20\xd3\x58\xe8\x96\x6c\xe5\xa6\x5e\xe5\x0d\x23\x68\xdf\x5b\x75\xaa\x9c\x46\x37\xd8\xd4\x1e\x91\x4f\x6f\xa7\xd4\x1f\x0b\xfc\x05\x15\x2a\xef\xec\xea\x6f\xaa\xfe\xf4\x50\xe0\x6f\xe2\xb7\xa7\xc7\x6c\x81\xa2\x77\x95\x65\xda\x37\xf1\x63\xba\x25\x2d\xc3\x38\x18\x44\xf2\x5f\xdc\x53\xe6\xe8\x6b\x96\x2b\x38\xa2\xfc\xb7\x1d\xce\xff\x47\x4e\x9b\x01\xab\xd0\x0b\x0d\x89\xf5\xc9\xb1\xab\x62\xf0\x8e\x39\x2c\x8a\xf2\x92\x3f\x8f\x15\xe5\x2c\x77\x54\x27\x44\x3c\x96\x90\x6d\x65\x30\x8c\x25\xa7\xf4\x57\x1a\x27\x33\xdf\x0c\x52\xa2\x34\xab\x1a\xb2\x7e\xbb\xf6\x51\xf5\x59\x10\x3c\x2f\x40\xcd\x61\xa1\xc0\x0b\xa7\x32\xf6\xd2\x88\x0d\xf6\x52\x44\x50\x9a\x26\x74\xb8\x99\x93\xd1\x8c\x80\x86\x9b\x7c\xe5\x29\x19\xcf\x08\xe8\xa7\xc9\xd7\xe5\x86\x1c\xcf\x08\x68\x97\xc9\xd7\x72\x43\x9e\xce\x08\xe8\x86\xc1\xeb\x88\x3c\x93\xaf\x23\xfd\x3a\x26\x7f\x92\xaf\x63\xf5\x2a\x46\xe4\xcf\x33\xd2\x17\xfa\xab\x18\x93\xff\x90\xaf\xfa\xeb\xed\x88\xfc\x65\x46\xfa\xb7\xa3\xfe\x4e\x92\x09\xb1\xdf\x49\xf2\xb0\x53\x5a\x8f\xde\x2c\xdc\x31\x4e\x8f\x96\x05\x5f\xa7\xe2\x37\x4d\x87\xa7\x65\xe1\x96\xb7\x65\x7b\xc0\x1e\x1b\xb2\x52\x5b\x13\x23\x49\x4b\x8e\x66\xf2\x1e\x96\x24\x15\x2b\x09\x97\x78\x7a\xd9\x16\x65\xdc\xed\x1a\x55\x42\x0c\x5d\x4c\xf3\xed\xd6\x26\x7a\x71\xca\xbd\xd4\x57\xc5\x7a\x53\xe4\x34\x17\xb5\xf4\x0b\x5e\x41\x88\xd9\x3d\xc9\xfb\x8a\xc9\xd7\xf3\x4d\x96\x0a\x2f\xed\x5d\xb1\x60\x4b\x46\xf9\x4e\x8d\x40\x43\xeb\xaf\x19\x00\xbf\x6e\xe9\x3f\xbf\x56\x15\xbd\x4b\xef\xaf\xe8\x59\x31\x4f\x25\xc8\x62\xe5\x77\x80\x51\xb3\xf2\x8d\xcf\xc6\xa4\xc3\x0f\x9b\xd2\xed\x43\xf9\xd2\xdc\x82\x20\x08\x93\x9b\x50\x3e\xa8\xdd\xa1\xf8\x30\xb0\x15\xd5\xa3\x4a\x36\xe2\x11\xb9\x27\xf5\xb3\xfa\x60\x86\x08\xdb\xd3\xbc\xa8\x4f\x4a\xa0\x2e\xf7\xe9\x4b\xe5\x17\x5e\x57\xa4\xa6\x0f\x76\xac\x7d\x53\x1f\xf5\x40\x5d\x1e\xb9\x8d\xeb\x89\x2a\xeb\x07\x4f\xd6\x21\x77\xb7\xf7\xae\x32\x04\xb3\x21\x37\xbc\x9f\xa0\xfb\xe2\xf3\x46\xff\x2a\xbb\xe3\x25\xa8\x2c\x6e\x3f\x91\xb1\x9c\x28\xf7\x1e\xf4\x58\x65\x18\xbb\xde\xba\x1c\xc1\x7e\x21\xe3\x63\x7f\xd4\x2e\x97\xdd\x3d\x64\x2c\x27\xd2\xbe\xaa\xaf\x3f\x32\x9a\x2d\xc8\x58\x4e\x25\x3c\xaa\xd4\x8f\x29\x07\x33\xca\xb1\x9c\x49\xfd\x12\xf6\x8a\x5f\x93\xb1\x37\x85\x2f\xf8\x75\x30\x2a\xf9\xf9\x3f\xdc\xa0\xcc\x57\xff\x00\x90\xb1\x9c\x3a\x3f\x25\xcc\x53\x1b\xdd\x5f\xbd\xcc\x2d\xa3\x7c\x4d\xaf\xaa\xeb\x6b\xca\xc9\xb1\x9c\x4b\xf3\x66\x16\x83\xd1\x5c\x9c\x33\xd0\x1d\xd7\x0e\xc1\x8f\xc7\xb0\x28\x8d\x0f\xaa\xc4\xe7\xfc\x26\x2f\xee\x72\x72\x2c\xe7\x54\xbf\xa8\x2f\xf2\x44\x1c\xcb\x79\xfc\x8e\x9a\x6d\xea\x8e\xcc\xb1\x9c\x46\xf7\xae\xbe\x7f\x9f\x96\x6a\xbb\x1e\xcb\xc9\x34\x6f\xe1\xb7\x8f\x29\x4f\xd7\x25\x39\xfe\xb3\x97\x43\xa5\x99\xfe\xe8\xe0\xa2\xe4\xf8\x3f\xa0\x47\x26\xd6\xa8\xaa\x85\x66\x1b\x39\x72\x39\x9f\xea\xd9\xec\x8f\x7c\x9e\x0a\x72\x0c\xfb\x0f\x9e\xfb\x9d\x70\x3e\x4e\xbf\x6c\x38\x2d\x4b\x56\xe4\xe4\xe9\x28\x98\x10\xf7\xc5\xc2\x72\x38\xe8\x00\xc6\x8d\xfa\x56\x2c\x82\xb3\x20\x2f\xbd\x1a\xac\x30\xa2\x5c\x99\xf5\x3b\xaa\x73\xc8\x39\x64\xc6\x19\x46\x2c\xbc\x19\x54\xdf\xbd\x19\x2d\xd4\x8d\x71\x95\xce\x6f\xae\x2a\x9e\xcb\x91\xfd\x4e\x0e\xd7\x55\xc5\xb2\xc5\xc7\x2c\x15\xf2\xbe\x01\x06\x8d\x8e\x07\x1a\xb2\x0a\x4a\x2a\x2e\xd8\x9a\x16\x95\xc0\x81\xbd\xf1\xae\xc6\x30\x60\xcb\xb8\x6f\x52\x1c\xad\xfc\x91\x17\x6b\x56\x5a\x8c\x55\xbf\x0e\x39\x2d\x8b\xec\xd6\x73\x09\xdc\x82\x1e\x0d\xc5\x8a\xe6\x60\x75\xda\x5e\xf5\xbb\x4a\x80\x8e\xdf\x87\xab\x92\xf2\x5b\x6a\x05\x48\x23\xcc\x94\xad\x66\xed\x7b\x4c\x11\x2e\xc8\xa2\x98\x57\x4a\x02\x12\x8a\xd0\xfb\x8e\x6d\xc4\x86\x85\x2a\x12\x17\xf8\x61\xbe\x4a\x79\x3a\x17\x94\xbf\x4e\x45\x3a\xe9\x8d\x76\x08\x37\xfb\x9a\x93\xc1\x20\xff\xe3\x31\x2e\x86\x8b\x54\xa4\xa4\xdf\x1f\xe4\x38\xb7\xac\xb5\x66\x7e\x1e\x53\x3c\x42\xbb\x1a\x47\x45\xf3\xd8\x74\x37\x1e\xdc\xc4\xd7\xcc\xfc\x8d\x0d\xb2\xfd\xae\xbd\xa3\x02\x7d\xd7\x2c\x62\x0b\xf8\xdf\x95\xa7\xa6\xe2\xae\x85\x3c\x7e\x9d\x0a\x3a\xcc\x8b\x3b\x08\xbe\x25\x31\x7c\xb9\xbc\xaa\xf2\xf7\x80\xf0\xef\x76\x8a\x93\xf8\xe4\xa7\xc5\xe0\x09\x2e\xc9\x9f\xdd\x4e\xa8\x5a\xe2\x36\x6b\xa6\x8c\x8d\x66\x4d\x44\x14\x51\x42\xe8\x76\xeb\x38\x2b\x32\x2d\x1d\x0a\x5a\x8a\x80\x8b\x94\x05\x14\x48\x91\x03\x7f\x6c\xbb\xb5\x8f\x17\x10\x7e\x22\x8a\x6a\x09\x89\x7d\x7f\x47\xc5\xaa\x58\xcc\x5c\x8d\x73\xe3\x40\xcb\xe0\xfc\x39\x39\x1a\x63\x46\x46\x9e\xc3\xed\x13\xf6\xbc\x38\x61\x03\xf2\x0c\xb1\x65\xcc\x13\x06\xf8\x51\x14\xf1\x84\x0d\xc6\x80\x24\xa0\x87\x9c\xb0\xce\x15\xa7\xe9\x8d\x73\x11\x65\x9b\x58\xee\x69\xe2\xb8\xa5\x89\x3f\x1f\x6c\xe2\xe8\x78\x6f\x23\xab\x3a\x17\xfd\x77\x4a\xc0\x46\x38\x27\xc9\xac\xe9\x11\x8b\x08\x23\xf8\xa6\x09\x1b\x3c\x1d\xf0\x19\x4e\x89\x09\xf7\x21\x93\x46\x32\x69\x0d\xd3\x0b\xef\x63\xc8\xc2\xaf\x4b\x78\x3b\x96\x6f\xca\x92\xdc\x76\xa2\x88\x22\x6d\x2e\xc3\xf2\x6e\x31\x2d\x14\x0b\x66\xd2\xef\xef\x8c\x09\x71\x8a\x5a\x46\xba\xa8\x8d\x14\xe7\x7a\xb9\x8c\x0b\xac\xa3\x12\x66\x13\xd1\x6f\x89\x48\x38\x61\x83\x38\x27\x71\x71\xc4\xd0\x93\x12\x1d\xe5\x7f\x2c\x67\x53\x46\xf8\xa0\x9c\x14\x84\x5b\xce\xee\xb7\xe0\xe7\x6b\xca\x06\xe5\x84\xc1\x6e\xde\xec\xb7\x98\xf8\x97\x18\x05\x0f\x3b\xfc\xbb\xd7\xe6\x61\xa7\x9d\x02\xff\x52\xd1\x8a\xbe\xa4\x2c\xbf\x86\xab\x84\x2e\x2c\x3b\x50\x2d\xc8\xdf\xe5\x77\xe5\xc5\xe0\x9d\xf1\x86\x02\xa2\x7a\xeb\x2f\x14\x6a\xb0\xa5\x40\x9e\xa2\xc9\xe6\x02\x22\x28\x58\x3f\x40\xd7\x59\x71\x95\x66\x1f\x74\x22\x3f\x44\x4d\xc3\xf2\xbd\x29\x78\x9d\x69\x4f\x9f\x7b\x6d\x1a\x97\xee\x01\xc7\x02\xbe\x24\x4f\xff\x27\x1d\x3c\x73\xc4\xed\x54\xd7\x38\xd1\x6a\xb4\x62\x08\x12\xf7\x26\xdb\x03\x73\x23\xb2\xd5\x7d\x07\xaf\x53\x57\xc0\xe1\xc1\x05\xc9\x87\xe9\x52\x50\xde\x69\xcc\x8f\x61\xb6\x61\xcb\x4d\x6c\x4e\xac\xf3\x2f\xb9\x6f\xe6\xbd\xf4\xda\xdc\x6a\x75\x09\x13\xd5\x34\x36\x52\xdc\x3d\x35\x75\xd8\x32\x4e\xad\xdc\xc0\x78\xad\xcc\xe2\xe6\x32\xa0\x0e\x27\xa5\x89\xf7\x7f\x5b\xdc\x80\xb1\xf1\x07\x05\xe0\x26\x5e\xb2\xd5\x65\xaf\x88\xdb\x02\x27\xd5\x73\xd3\xca\x49\xa5\x61\x9a\xfb\x3a\x20\xcf\x8c\x22\x64\x2c\x48\x9a\x54\x83\xf1\x0c\x45\x11\x8f\xd3\xa4\x9a\x61\x81\x65\xca\xf1\x0c\x97\xf0\xf0\x74\x86\xbc\xbd\xd5\x7b\x7c\x12\x9b\x43\x19\xae\xab\x52\x00\x5a\x7d\xf8\x6b\x6c\x75\x98\xc6\x3b\x1f\x80\x14\xc6\x1a\x7b\x6f\xab\xce\x03\x9c\xda\xff\xbd\xb1\x0a\x08\xd0\xdc\x93\xdf\x8e\x74\x2a\xec\xb3\xb8\x37\xd2\xa1\x45\xca\x1f\x0a\xbe\xd7\x30\x7b\x6f\xbb\xdf\x8e\x74\x04\xb0\x5a\x1b\x2a\xd6\x6f\x3e\xa7\x59\xab\xf6\xa7\xda\xa0\xa0\xf9\xa9\x80\xa9\xd9\xdb\x7a\x8b\x69\x6d\x83\x60\x1f\x43\xa8\x64\xd4\x09\x76\x9b\x16\x5c\x18\x9f\xca\x05\x99\x6b\x1d\x27\xeb\xe4\xe7\xdb\xa3\xf1\x34\xb6\xba\x3c\x05\x7e\x86\x70\x6f\x84\x26\xb1\xcd\xba\x6f\x39\x11\xfa\xf6\x68\x1c\x45\x71\x9e\x14\xf2\x72\x02\xce\x8f\x9e\xac\x9a\x94\x01\x87\xde\x4b\xfc\xe9\x50\x42\x06\x9d\x01\x3f\x40\xe2\x44\x69\x1d\xe8\x3b\xc5\x5c\x26\x62\x67\x6a\xfe\x9c\xb3\x5f\xaa\x47\x22\xd5\x35\x26\x86\x9a\x89\x21\x30\x31\x31\x0b\xc1\x62\x90\x1f\x7c\xb0\x63\x86\x5c\x5c\x32\x3d\xb5\x6c\x19\xdb\x4a\xac\xd7\x99\xbd\xc3\x39\x7a\xd6\x51\xfe\xdc\x05\x4e\x11\xa8\x0e\xe9\xc3\xec\x95\xe8\x94\x49\x31\x38\x9e\x11\x8e\xe5\xc3\xd3\x99\x8d\x9a\xf0\xf8\x54\x5c\x5e\x53\x01\xe4\xdb\xdb\x7c\x59\x34\x80\xad\x39\x27\x2b\x1f\x62\xe1\x67\x48\xf1\xbe\x25\x58\xa8\x4d\x20\x7a\xf0\x4c\x42\x84\x71\x41\x34\x01\x36\x73\x76\x0f\xaa\x2a\xae\xac\x07\x69\x1a\xeb\x00\xa1\x07\xf8\xfd\x57\x54\x37\x07\x85\x86\x02\x3d\xe4\x71\x81\x99\x0d\xe4\xb0\xde\x2b\x1b\xf9\x97\xa4\xab\xf2\x96\x6b\xb9\xae\xc3\x7b\x59\x93\x38\x30\x67\xbf\xa8\xeb\xf3\x61\x87\xdd\xeb\xfb\x74\x4d\xdf\xfa\x57\xa8\x4d\x2d\x81\xb5\xce\xe9\xa2\x9a\x7b\x1c\x58\x39\x4e\xc7\x5f\xe2\x33\xd8\x75\x9b\x98\x63\x91\xf0\x19\x16\x8a\x19\xeb\x1a\x3b\x28\xf1\x29\xe7\x2b\xba\xa8\xb2\xe6\xce\xf7\x7d\x20\x79\x95\x25\x74\x16\xec\xd8\xb4\x29\x2f\xff\xb1\xa8\xba\xa9\x10\x74\xbd\x11\x74\xd1\x15\x45\xd7\xb4\xd1\x4d\xf3\x6e\xaa\xa9\xb8\xbc\x9b\x76\xa1\xc6\x6e\xdc\x1f\xd0\x41\x1f\x75\xc5\x2a\x15\xdd\x45\x41\xcb\xfc\x1b\xd1\xa5\x5f\x58\x29\xfa\xa8\x63\x65\xe7\xfc\xdf\xd6\xce\xb2\xe0\xdd\xb4\xab\x76\x7d\x7b\xa3\x3e\x48\x69\x2c\x10\x9b\xa6\x1e\xc0\xd0\x91\x9f\x0b\x34\x49\x35\x33\x5c\xbf\xb7\xe0\x14\x9e\x07\x59\x39\xc5\x5f\xbf\xe5\xa2\xc8\x7f\x33\xc0\xd3\x6d\x12\xab\xce\xd1\xec\xf0\xf3\xfc\x04\x2e\xe1\x7a\x91\xa4\x25\xef\x0c\xf7\xc6\x84\x10\xe3\xe5\x58\xaf\xb7\x98\x21\x73\x4f\xc5\x08\xc0\x40\x4b\xd1\xc1\x00\x1b\x5d\xe7\x7a\xfb\xee\x6e\x05\x3d\x47\xb6\x8c\x95\x92\x90\xbe\x08\xc7\xde\xe5\xfb\x38\xfc\x71\xd2\x13\xb8\x44\x1e\x76\xe6\xce\x6a\x4c\x86\x51\x4a\x39\x41\xbc\x31\xf6\x62\x86\x45\x30\x46\x3e\xc3\xb9\x3c\x47\xb5\xf6\x81\x88\x1f\x0c\x3a\x4e\x13\x48\x49\x2a\x2c\xf8\xb8\x0d\x05\x3a\xca\x2d\x80\xd0\xa6\xcb\x27\x3d\xe5\x0f\x5c\xf9\x63\xe0\x36\xf8\x8c\xcb\x01\xe7\x32\x90\xc2\xec\xf0\x75\x8b\x30\xc3\xb6\x77\xe5\xbc\x36\xc0\xf8\xeb\x3b\x48\x1e\x17\x70\x8d\x8f\x4e\xfc\xc9\xce\x11\xd7\x22\xe3\x60\x5b\x75\xec\xed\xa1\xe8\xc5\x60\x93\xa5\x01\x9d\x81\x4b\x43\x62\xa7\x9d\x1a\x83\x84\x94\xd3\x98\x93\x42\xd6\xad\x54\xc3\x2c\xf5\x65\xc8\xed\x32\x8a\xd2\x2e\x90\x61\x82\xc8\xac\x28\x49\x67\x93\x16\x1e\x4b\x01\x37\xe8\x18\xdb\xce\x16\x08\xe7\xdf\x32\xe3\x38\x2e\x3f\x62\x1d\xea\x69\x05\x55\xce\x9e\x32\x23\xa3\x93\xec\x79\x75\x92\x0d\x06\x88\x26\xd9\xcc\xeb\x7b\x36\x70\x5e\x8a\x13\x8e\x05\xa6\x1e\x81\x7e\x19\xce\x27\x06\x4b\xd1\x63\x42\x1a\x13\x8b\xc2\x99\xc3\x2c\x9c\x1d\x65\x8e\xe7\xe6\xb3\x20\x57\xfa\x4a\xd2\x7c\x7a\x9b\x1b\x75\x28\x29\x64\x0d\x82\x14\x89\xaf\x9b\x10\xe7\xa4\x48\x8e\x67\x68\xca\xc8\x68\x52\x49\x4c\x42\xbb\x84\xd8\x6e\x63\x4e\x7a\x80\x61\x60\x97\x6a\x46\xa4\x3d\x78\xba\xa8\x16\x0c\x8f\x47\x08\xf3\x19\xec\xad\x3b\x32\xc2\xa7\x64\x84\x25\xdc\x3a\x27\x23\xfc\x81\x8c\xf0\x0b\x32\xc2\x37\x64\x84\x2f\xc8\x08\xbf\x22\x23\xfc\x8e\x8c\xf0\x27\x32\xc2\x1f\xc9\x08\xff\x4c\x46\xf8\x35\x19\xe1\xf7\x64\x84\xdf\x92\x11\x3e\x23\x23\xfc\x86\x8c\xf0\xaf\x64\x84\xbf\x27\x23\xfc\x92\x8c\xf0\xe7\x43\x92\x52\x67\x90\xa0\x6e\xbb\xd7\xa7\x2f\x3f\x7f\x67\xa3\x3b\x6b\x5d\x0d\x63\xe4\x1c\x38\x14\x56\x49\xe7\x81\xfe\xc9\x25\xbd\xa5\xb9\x78\x95\x66\xd9\x55\x3a\xbf\x29\xc9\x03\xcd\x17\xf2\xc6\x05\xaf\x70\x93\x64\xb6\x33\xc2\x58\xb6\xa6\x86\xd7\xf4\x76\x11\xc4\x5c\x92\x5f\x4a\x57\x61\x5a\x89\x82\x57\xb9\xed\x91\x49\x38\xaf\x05\x6b\x0a\x2e\xe0\x90\x74\xdd\x6e\x1f\x76\xcd\x38\xc4\x7e\x1e\xc3\xda\x04\xc4\x4f\x91\x52\x97\x7e\x12\xd9\x9b\x79\xb2\x2f\xb3\x07\xbc\x46\x66\x2c\x45\xfe\x52\xce\x43\x58\x9b\x4e\xdc\x6e\xef\x6d\xae\xd3\x7c\x51\xcf\x73\x9a\x2f\x5c\x0e\x88\x38\xf8\xa9\xca\x4f\xbf\x6c\x18\xa7\x8b\x0b\x35\x65\xea\x1b\xaf\x25\x83\xc3\x14\xa5\xca\xed\x97\x7e\xa1\x66\xf1\x34\x0f\xe4\xd3\xbf\x0e\x06\x8a\x22\xe2\x76\x9e\xc1\x86\xc6\x5f\x05\xde\xb6\x04\x7c\x78\x49\xf3\x85\x24\x92\x74\x40\x9a\xda\x20\x2f\x03\x6e\xf2\x76\x5b\x68\xd6\xc5\xc6\xf0\x97\x75\xbc\xe4\x7a\xe7\xd0\x21\x25\x26\xd8\x54\x7e\xf7\x4f\xb5\xdd\x2b\x75\x01\x4a\x15\x07\x20\x54\xa6\x37\xbb\x59\xd7\xd4\xb3\xae\x89\xcd\xc0\xa6\x31\xb5\x11\x1b\x14\x71\xa6\x7b\x14\x23\x34\x89\x3d\x53\xd1\x97\x83\x41\xcb\x69\x30\x8e\x98\x10\xfe\x7e\x30\xc0\xb4\xb5\x6d\x80\x8a\xeb\xda\xc5\x0c\x3a\xd6\xe7\xa6\xce\x4b\xc1\xd9\xf5\x35\xe5\x71\x1f\x06\xda\xc7\x12\x89\x44\xe1\x56\x52\xaa\xe3\xa0\x1e\x45\xc3\xa5\xfc\x62\xab\x81\x85\x19\x83\x02\x57\x91\x37\x15\x1d\x1d\x58\xef\xd9\xa3\xe1\x61\x6e\x17\xf7\x1b\x6a\x35\xf4\xd5\xb1\xee\x4a\x3a\xbc\x7b\x45\xbb\xa9\xe5\x5d\xf7\x91\xef\xb2\xa3\x06\x05\xea\x08\x28\xdf\x57\x3d\x18\x00\xc8\xde\x77\xa1\x82\x2e\xa0\x7f\xdd\x2b\x3a\x4f\x2b\x79\x35\x2a\xb4\x0f\x4c\xf4\x2d\xde\x67\xf5\x19\xe4\xe8\x96\xcb\xfd\x06\xf0\xed\x7d\xea\xd1\xed\xf6\x6b\xfb\xb5\x5c\xfe\x86\x8e\xa9\x33\xd0\x1b\x43\xa4\x13\x14\x5a\xa5\x70\xdf\x2a\x45\x73\x77\x05\x44\x1e\xe9\x8d\x30\xb7\x66\x41\x78\x8c\x30\x3b\x3a\x02\x8c\xba\x97\x7f\x45\xdf\xe6\x66\x7d\x2c\x8a\xec\x77\x09\xc2\x53\x56\xc1\x79\xf9\x60\xce\xcb\xfe\xcb\x0f\x0b\x42\x25\x00\xe3\x84\xca\xcb\x2f\x27\x34\x39\x0e\x35\x4e\x24\xc4\x89\x8d\x1d\x12\x1f\xfe\x5c\x84\x67\xf2\xc5\xbf\xa5\x0d\x59\xab\xd7\xc8\x82\x2e\x69\x9d\xe2\x44\x0f\x37\x83\x41\xc7\x31\xd5\xeb\x08\x81\x16\xfb\x28\x4c\x24\xff\xf6\xe9\x34\x3f\x7a\x3a\x19\x21\x5c\x90\xa7\x27\xc5\xf3\x5c\xc5\x5d\x4b\x8a\xa3\xa7\x3e\x2e\x52\x84\xfd\x30\xe4\x8a\x1e\x09\x50\xe5\x70\xa1\xf3\xd9\x70\x0e\x02\xc3\x18\xc2\x05\xf1\x36\x22\x0d\x3d\x5c\x78\x1d\x6c\xd2\xa0\x98\x7b\x1d\x14\xdf\x8e\xa7\xe2\x68\x2c\x3b\x98\x93\xf1\x49\xfe\x5c\x9c\xe4\xb0\x5b\xf2\xa3\xb1\xdf\xc1\x7c\xa6\x05\x86\xb5\xd9\xe5\xe0\xe3\x54\xa1\x85\x4c\xa1\x83\x2c\x39\x9e\x61\xcd\xfb\x83\x5b\x7e\x6a\x29\x33\x43\xef\x06\x73\xae\xd4\xb3\x0d\xc0\x8a\x91\x1d\x53\x4c\x75\x60\xfa\xde\x18\x57\xc1\x68\x21\x0a\xf8\x55\x56\x77\x91\xf6\xca\xf8\x23\xf8\xf7\x34\x0e\x37\xce\x2d\x4e\x84\x24\x7f\x74\x9c\x56\xd8\x11\x1f\x24\x60\xad\xef\x8a\x77\xff\x6d\xbb\x42\x36\xff\xf5\x3b\xa3\xd6\x59\xf4\xf0\xe9\xff\x6b\xbb\x63\x64\x76\x87\x95\x44\xb6\xb0\x4d\x3f\x9a\x7b\x2a\x4b\x05\xe5\xfe\xf4\x39\x00\x21\x2b\x81\xcf\x7e\xf9\x9f\x2d\x60\x69\xe8\xc4\xfd\x36\x48\xa3\xe5\x45\x96\x8e\xcf\xa7\xc6\x6c\x70\x32\x72\xec\xd1\x51\x14\x55\x71\x9e\x14\x47\xc0\x01\x8f\x3d\xfc\xdd\xb8\xab\x1b\x8f\x10\xc2\x89\x26\x4b\x66\xbb\xdf\xda\x07\x9a\x3c\xad\x01\x3d\x18\x72\x6c\x98\x69\x72\x12\xe4\x1d\x20\x44\x68\x6a\xf0\xda\x43\x7a\x2e\xf7\x36\xca\x89\xd0\x8c\x08\xd9\x28\x23\x42\x36\x5a\x10\x91\x3c\x95\x7b\x40\x24\xcf\xe4\x1e\x70\x2c\xa2\xed\x36\xc5\x15\x59\x42\x84\x70\x1f\x2f\x77\x31\x3b\x2a\x64\x42\xd1\xa8\x6e\xca\x9c\xe5\xf4\x7a\xc2\x70\x81\x70\x69\x18\xea\x00\xb7\x55\xff\x15\xad\x65\xa3\x4a\x42\x75\x20\x50\xd0\x8a\xd0\xd5\xe0\x59\x27\xf8\x96\xcd\x7a\x84\x5c\x5b\x59\x8b\x4d\x25\xcc\x8b\x6f\x01\x47\x5f\x22\x8d\xf3\x60\x52\xde\xff\xbb\x26\xa5\x72\xfb\x22\x8d\xa2\x14\x67\x41\xff\xf1\x5c\xcf\x51\xe6\x26\x66\xde\x32\x31\x95\x99\x98\x6a\xef\xc4\x28\xb5\xc8\x10\x2b\x56\x62\xf6\x41\x81\x37\x64\x3e\x78\xd6\xc9\x92\x8d\x44\x15\xae\x61\xfb\x5d\x23\x4c\x49\x96\xcc\xcd\x04\xae\xc9\x22\x5e\xe9\x7e\xcc\x07\x25\x21\x64\x8d\xb2\x64\x3e\x23\x2b\x0c\xe5\x98\x6b\xe6\x36\x5c\x83\xf9\xe0\x4f\xb3\x60\xe6\x0d\x06\xb2\xc6\x23\xbc\x92\x58\x27\xb0\x16\x6f\x11\x6e\xcb\x34\xc7\x25\xda\xc9\x3d\x33\x37\x43\xe3\x14\xb0\xe1\x2c\xbb\xf0\x88\xbc\x38\x5c\x33\x85\x55\x6b\xc2\xc5\x5b\xb7\xb7\x16\x6b\xb5\xda\x08\xae\x86\x3d\x14\x62\x0d\x43\x97\xd5\xaf\xd2\xb2\x59\x77\xa8\x57\xab\x06\x51\x17\xce\x68\x02\xc0\x75\xb1\xce\xd0\x3a\x1b\x0c\xb0\x31\x0d\x32\xe4\x43\xe7\x51\x8d\x86\xa9\xdf\xd3\x33\xb9\x2d\xa0\x7b\x31\x45\x93\x5e\x6c\xac\xb5\x24\x15\xb2\xdd\xf6\xa8\xa2\x07\xe0\x49\xb1\x3c\x51\x14\xe9\x44\xdd\x29\x6d\x8e\x11\x82\xe0\xa6\xe6\x7e\x1d\x44\xcb\x32\xed\xcc\x3a\xdf\x96\xa3\x63\xf8\x85\x70\x0b\xe8\x41\x3e\xe8\x89\x99\x34\x69\x70\x3c\x2f\xaa\x5c\x50\xae\x83\x0e\x9a\x37\xac\x66\x78\xb2\x0a\x8e\x2f\x2e\xf1\x31\xc2\x01\xb5\xa4\xc3\xb7\xd4\xe8\x23\x7b\x6b\x36\xc9\x2b\xf0\xc3\xdd\xa6\xdc\x2c\xa2\xa8\xc1\x0e\xd4\xa3\xd8\x21\x88\x70\x7e\x79\x40\x51\xbe\xd6\x01\xcd\xd3\x72\xec\x6c\x22\x9a\xfc\x6c\x9a\x2f\x00\xeb\xa6\x0b\xf0\x24\x56\x54\x92\x2c\x92\xb4\x9a\x26\x00\x30\x93\x24\x80\xe0\xf7\x0f\x39\xd1\xcc\x65\x50\x60\x61\x79\x9a\x65\xf7\x60\x2f\xc8\x10\x5b\xc6\x4c\x62\xfe\x8a\xef\xe7\x05\x76\x09\x98\xbf\x75\xce\xaf\x3e\xb1\xe6\xd6\x35\xdb\xbf\x50\x12\xa6\xee\x6f\xe1\xde\x78\xcc\x6c\xe3\x99\xb6\x46\xcf\x3a\xc7\xd9\xf5\x2a\xad\x03\x13\x4b\xac\x82\x9e\xaa\xc4\xbc\x7c\x76\x06\x58\xf0\xab\x25\x08\x09\x04\x8d\xa4\xd5\x6c\x25\x5a\x5a\x9a\x3a\x62\x43\x95\x99\x38\x23\x21\xc3\x84\x57\x42\xa6\xb8\x2e\xad\xe2\x50\xac\x29\xe7\x02\x84\x50\x4b\xd4\x0b\x23\x4b\x37\xbb\x1f\xd6\x31\x46\x38\x47\x72\xf9\x9c\x49\x59\x5d\x6c\xc5\xd0\x43\x1e\x33\xb7\xa6\x50\x58\x92\xdc\x66\x21\xf6\x94\x6e\xc9\x0f\x3d\x0d\xa0\x59\xf3\x4c\x3b\xae\x4c\xed\xaa\xb0\x0a\x58\x16\x4e\x3e\xce\x39\x53\x73\x53\xc3\xac\xda\xc4\xa8\xed\x08\xa1\xf1\x1f\x5c\xbf\xaf\x72\x9c\x92\xbb\xc1\xc0\xb0\xb6\x5b\x00\x2e\x0a\xd2\x80\x84\x97\x38\xa3\x6a\x9a\x99\x01\xb4\x5e\x23\x1d\x4f\x80\xba\xd0\xae\x87\x1d\x76\xd2\x76\x43\x95\x78\x84\x5b\x6a\x7f\xe4\x9a\x4a\xbd\xd5\x70\x10\xfb\x80\xa9\x6e\xcb\x30\x4f\xc4\x80\x94\x56\xa3\xc2\xdc\xb7\x62\xe6\x87\x3b\x6e\xeb\xb1\x38\x1a\xe3\x12\x01\x40\x10\x8f\xdc\xaa\xb8\x37\xb2\x6c\x2c\xe8\xb1\x3e\x87\x7b\x76\xfb\xa3\xec\x19\xf0\x0d\x77\xc0\x89\x46\x9e\xb0\x99\x3a\xcc\xfa\x58\x85\x3c\xc8\xc6\x7e\x7d\x8c\xd1\xeb\xc3\x9e\xe0\xdc\x85\xe0\x2d\x68\xc5\x7c\x85\x53\xa3\x3a\xd2\x9a\xaf\x55\x8e\x17\xe2\x6f\x82\x8c\x3c\xb7\xd0\x56\xc9\xc1\x67\xe7\x1a\x79\x55\x6d\x97\x9f\x88\xe7\x5c\xad\x2f\xc8\xb9\x12\x31\xfb\x96\x21\x50\xc7\xeb\x18\xc5\x38\x31\x78\x06\x33\x5b\x48\x3c\xd6\x08\x66\x65\x32\x50\x5a\xf2\xe1\xe9\x0c\x67\xf0\x60\x30\xb0\x1a\xd0\x73\x44\x55\x8e\x53\x5c\xe1\x42\x12\xbc\x19\xda\xed\xa8\xd9\x2a\x23\xeb\x96\xa1\xfd\xb8\xa8\x65\x6a\xdb\x3b\xcd\xb5\xda\x8f\x72\xed\xaf\xba\x51\xc6\xaf\xd6\xf7\xa1\x56\xdb\x09\x7b\x00\x98\xa9\xbc\xad\x08\xda\x2f\x3b\x50\x7d\x79\x64\x90\x12\x1c\xf5\xda\xc1\xd1\x43\x73\x6b\x28\x89\x4f\xdb\xca\x63\x4e\xde\xa5\x62\x35\x5c\xa7\x5f\xe2\x11\xa6\x47\x22\x00\x3b\xae\x63\xb5\xb2\x9e\x3e\xee\x01\x2e\xbe\xbd\x26\xf7\x23\x77\xb7\x0d\x5f\x88\x35\x86\xb6\xb9\x46\xa9\x9d\xe4\x00\xf2\x1f\x82\xe8\xba\xde\xf6\x43\x68\x70\x8c\xa6\x7c\x03\x69\x1e\x74\x3d\x6b\x00\x2e\xdf\x68\x9a\xac\x39\xab\xf4\x8b\x30\x2c\x7a\x23\x30\x00\x5c\xa9\xc3\xa7\xca\xdd\xca\xa4\xe5\x56\x1b\x1d\x34\xf0\x35\x68\xe8\x1e\x23\xdf\x07\x25\x90\x3a\xc5\x34\x5f\x4c\xbe\x60\x00\x88\xe5\x44\xa7\x9e\x43\xea\x68\x87\x75\x5b\xe5\xe4\x41\x35\xb2\x98\xbc\xc1\xf3\x62\xbd\xc9\xa8\x7c\xfe\x75\x87\x25\x46\xfc\x01\x4b\x8c\x66\xf2\x02\x03\x0b\x6a\x72\x83\xcd\x1c\x4c\x2e\x70\x9d\x2f\x36\x79\x85\x2d\xa3\x6a\xf2\x0e\xfb\xac\xa0\xc9\x27\xec\x69\x74\x7f\xc4\x70\x2b\x4f\x7e\xc6\x86\xe4\x9f\xbc\xc6\x86\xd0\x9d\xbc\xc7\x3e\xfd\x34\x79\xab\x5f\x27\x67\x38\x2b\x8a\x4d\x39\x79\x10\x85\x48\xb3\xc9\xf7\x38\xa7\xa5\xec\xe9\xcb\xdd\xce\x3a\x45\xf1\x41\xdb\x41\x0b\xe8\x00\x08\x3a\x13\xe8\xcf\x43\x25\xe4\xda\xe0\xcf\x0d\x13\x01\x9d\x22\xb1\x10\x6d\xaf\xf0\x03\xf9\xdc\x71\x86\x03\x3f\x28\xe3\x84\x45\x7a\x7d\x04\x51\x71\xbf\xca\x82\xad\xd5\xee\xe0\x91\x80\xb5\x97\xb7\x94\x0b\x36\xd7\x4a\xaf\xbc\xcd\x15\x55\xe8\x1b\xc0\xe0\x3c\xed\x1e\x3c\xfa\x86\x67\xd0\xfd\xe7\x0d\xbd\xff\x67\x97\x95\x5d\x4e\x7f\xa9\xe4\xa9\xed\x07\xc1\x8c\x6c\xbb\xe0\xf1\x27\x5d\x2c\x74\x94\x53\xf0\xfd\x45\xe4\xb5\xc9\x96\x71\x43\x12\xc9\x11\xe4\x3d\x5d\x5c\xd3\xb8\xc0\xaa\x1c\x47\x9e\xc7\xd9\x5b\x1b\xc2\xdc\x8a\x0e\xd2\xc1\xa0\xad\x14\x44\x27\x57\xae\xb0\xda\x5a\xca\xbd\x32\xaa\x44\x8e\x70\xe1\xb5\xa4\x5a\xc9\xdb\x5b\xd1\x25\x64\x1b\xa0\x2e\x53\x9b\x4e\x99\xa7\x6c\x99\x53\x98\x19\x98\x0b\xeb\xae\xcc\x2f\x49\xd3\xb6\xd8\x82\x76\x26\x87\x77\x69\x76\xa3\x7d\x5e\xb8\x42\xa2\xd8\x94\x05\x17\x2d\xd1\x43\xd2\xb9\xf2\x56\xa0\x0d\x54\xcd\xde\x31\x2e\xe5\x0f\x6e\x9b\x50\x45\xb4\xb4\x41\x2a\x35\x0f\x6c\x93\x8a\x95\xff\xce\x69\x29\xab\x86\x94\xc7\xb7\xd8\xde\xcd\xb5\x66\x65\xc9\xf2\xeb\xee\x0d\xbd\xf7\x1c\x4e\x4b\x88\x38\xda\x7a\xdd\xc2\x39\x19\x9d\xe4\xcf\x39\x70\x7a\xd9\x32\xd6\x1a\x42\x49\x3e\x43\xc3\x1b\x7a\x1f\xe0\x94\x01\x1f\x51\x8f\x8a\x0f\x14\x1d\x90\xf0\x19\x79\x60\x8b\x2f\x13\x8e\x25\x40\xa0\xf8\x36\xcd\x2c\x42\xaf\x5c\xaa\x2f\x33\xe5\x4c\xdd\x70\x41\x77\xad\x6b\x5d\x63\xf2\xab\x0b\x69\x45\xe7\x37\xf2\x5d\x76\xc9\x0d\x06\x86\xb2\x67\x1c\x22\xc9\x01\x21\x1e\xb2\xc5\x17\x3d\x80\x8e\x08\x3a\x2d\x7b\x0c\x9f\x31\x1d\xca\x3b\x5d\x82\xfe\xc0\x7b\x59\x9a\xdd\x34\x77\x82\x8e\x34\xe2\xb1\xd4\x47\x06\x4b\xaf\xfb\xd2\x51\x77\x4f\x22\x66\x1d\x2e\x1b\xd0\xcc\xa0\x5b\x56\x32\x11\x73\xdc\xef\xeb\x78\xff\xb0\xb7\xbc\x95\xc7\xf5\x5d\x09\xa3\x6f\x4a\x58\xa9\x5e\x9f\x16\x06\xc2\xfc\x7e\x9e\xd1\xee\x82\x0a\x70\x57\x33\xe9\xf6\x07\x62\xd0\xef\x3e\x3f\x92\x0f\x70\x8e\x25\xc6\xe2\xb4\xe4\x0f\x79\x45\xd2\x64\x46\x42\x13\x3e\x9b\xfd\xae\x16\xa1\x9f\xae\xf9\x9d\x21\x5c\x4c\xcc\x16\x6f\x56\xa8\x45\x3b\xe5\xa1\xa8\xa9\xa9\xe7\xa4\xad\x15\xed\xf1\xad\x36\x93\xb2\x78\x00\xfb\xf3\x01\x31\xdd\xd9\x21\xec\x3a\x9e\xa3\x5d\x6d\x1b\x42\xb7\x1a\x58\xac\xef\xb8\xc3\x9c\x64\xaf\x8f\x26\x49\xad\xa0\x4d\xec\x38\xfa\x60\x64\xd0\x3e\x3d\xb9\xf4\xb9\x38\xa1\xda\x7d\x60\x42\x67\x43\x79\x38\x88\x24\xb6\xfc\xbe\xc0\xac\xec\x17\x3e\x07\xa1\xb0\x61\xc8\x8c\x78\xdd\x80\xd6\xb9\x89\x7b\x26\xcf\xc1\x89\x05\xf4\x86\x21\x34\xda\x72\xc5\x87\x81\xfb\xe4\x5b\x32\xf2\x35\x3d\x93\x62\xa6\xec\x05\x64\xe7\xd0\xbc\xc8\x05\xcb\x2b\xea\x92\x48\x6f\x64\xa2\xef\x15\x08\x0b\x42\x48\x0a\x07\x54\xd1\x2b\xba\xe5\xff\x5f\x61\x96\xb4\x2a\x57\x6f\xf3\x79\xb1\x66\xf9\x75\xac\x55\x96\xbb\x5e\x50\x1e\x9d\xb9\xb6\x1c\x7e\xa9\x43\xee\x13\xd4\x5c\x1c\x8c\xc5\x03\xae\xbd\x34\x70\x83\xfe\x6f\xb7\xc2\xba\x8b\x3f\x78\x7b\xd4\x5c\x87\x81\xff\x73\x73\x48\x9e\xe7\xce\x7d\x98\x9a\x7e\x75\x56\x3a\x22\x66\x72\x36\x30\x78\xb6\xb4\xea\xc7\xf9\xd7\xdd\x15\x6d\x80\xbf\xd5\xbb\x4e\xe2\x15\x1b\x0c\x66\x64\xb4\xa5\xb5\x09\x0c\xbd\xeb\x18\xdf\x36\x00\x8c\x92\xa3\x23\xaf\xb8\x76\x15\xa4\xb0\x29\xdf\xa4\xf3\x6b\x31\xaa\x3b\x9e\x6e\xde\xa7\x82\xdd\xd2\xf3\x6a\x43\x1b\x26\x3a\xc0\x40\xf7\x62\xb1\x73\xa3\x3a\x6f\xa7\x01\x34\x1f\x0d\xb5\xe1\xc6\x40\x42\x67\x4e\xde\xe8\xf0\x83\xf5\xbc\x59\xf0\xc9\x83\x8e\xf9\x84\x69\x5e\xad\x35\x6a\xdc\x1b\xe3\x3b\xce\x84\x7a\x1e\xe1\x79\x91\x2f\xd9\x75\xa5\xbf\x8d\x76\x3b\xa4\x24\x89\x31\xc5\x39\xc2\x22\xce\x35\xf4\x9d\x4b\xc4\xff\x55\x9a\x65\xaf\x5a\x80\xef\x48\x85\xb8\xf5\xc2\x29\x90\x50\x25\x7b\xd4\xa1\x7b\x7b\xaf\xa9\x28\xae\x1c\x5f\xf0\x47\xc6\x42\x1f\xeb\xbd\x53\x1b\x12\x9a\x2f\x09\x8e\x7a\xaf\xe9\xe2\x82\xae\x25\x2d\x44\xcf\x20\xa2\x66\xd6\xe8\xa7\xbc\x5c\xb7\xdb\x58\x10\xaa\xdc\xf2\xc6\x23\xe4\x9c\x90\x0d\x79\x7a\x47\x04\x38\x4a\xf1\x49\xa1\x06\xff\x47\x35\x2f\xa2\x28\x0f\x96\x45\x20\xed\x54\x94\xc3\x17\xcc\x43\xf7\x66\xca\x6f\xdd\xc5\x8a\x95\x2e\x38\xa2\x72\xcd\xb6\x29\xca\x92\x5d\x65\xf4\x95\x9b\x8a\x4f\x50\xb0\x45\xc3\xa8\xee\x8e\x4e\xf6\x42\xb3\x06\xb6\xdb\x16\xb5\x52\xd1\x40\x64\x98\xc6\x00\x55\x4d\x10\x11\xae\x9a\x8b\x4a\x62\xb7\x35\xa7\x50\x54\xae\xba\xa6\x11\xf4\x7a\x2a\x9f\xb3\x6a\xc0\x1f\x96\x5a\x90\xfe\x2e\xdd\xf8\xdb\xb9\xc5\xe9\xa0\x68\x71\x3a\x28\x71\x91\x4e\x3e\x74\xdb\x96\xf8\x2f\xdb\x6d\x6f\x0c\x61\x87\xdc\xe2\x4b\xc8\xdb\x87\x1d\xd2\x67\x79\x37\x87\xd8\x19\x66\xa3\x90\xde\x08\x61\xdd\x47\x65\x9f\x6e\x5c\xe3\xca\x4d\x0e\x20\x29\xf7\xad\x80\x03\xc7\x6b\x3b\xef\xf4\x3f\x01\x6b\xa6\xd0\xd2\x5b\x13\x28\x7d\xdc\xff\x5f\x2a\xcf\x11\x93\x04\x71\x9e\x66\xe5\x13\x9a\xdf\x32\x5e\xe4\xca\x7c\xbf\x9f\x17\x0b\x7a\xb4\x2e\x24\x21\xda\x9a\xbb\x12\x2c\x2b\x5b\xbf\xc8\x8b\x26\x65\x60\x64\x6e\xbe\x32\xd8\x0d\xb2\x66\x30\xae\x6e\x2d\xb6\xa6\x22\xdd\xfb\x21\x73\x5f\xe6\x69\x9e\xf2\xfb\xa3\x25\x4d\x45\xc5\xa9\xd7\x05\x08\x63\xde\xc7\x81\x95\x7b\x7b\xf7\xca\xc2\x1f\x94\xec\x2f\x2f\xb2\xcc\xcf\xef\xd2\x9e\x64\xec\xca\x7b\xbd\x5c\xb3\x2f\xcc\x1b\x80\xa6\xa5\xdc\x3b\xe5\xb7\x6c\xee\xd5\xae\x77\x79\xed\xfd\xc9\xbc\x58\x6f\xd2\xf6\xe4\x4a\xd0\x45\x6b\xcf\x75\x28\xaf\xd6\x6f\xda\x17\x8c\x31\xe6\x7f\x72\x4b\x79\xb9\x6f\xa6\x6f\x19\xbd\x6b\x5f\x3a\x5e\x54\x22\x18\x8e\xbf\x3d\xbe\x08\x9a\xcb\x3a\x8f\x74\x24\x1c\x97\x8b\x4a\x5c\xcc\xbd\xf2\x2a\xcf\x8a\x62\xd3\x5e\x8b\xcc\x7a\x04\x71\x66\xf7\x35\x54\xdc\x05\x4b\x97\x6e\x36\x19\x9b\xd7\xf6\x8d\x97\xf8\x44\x59\x03\x96\x47\xda\x3d\x40\x7b\xd1\x27\x46\x76\xe5\xf5\x3a\xbf\x66\x79\xe3\xbd\x25\xe3\xa6\xc8\xee\x97\x2c\xcb\x82\xbd\xb6\xe1\x74\x9e\x0a\xba\x70\x1b\x31\xf4\x9c\x60\x4c\x6f\x40\xe9\xa5\xc2\x19\x9e\xe3\x25\x5e\xe1\x05\xde\xe0\x35\xbe\xc5\xf7\xf8\x1a\x5f\xe1\x4b\x7c\x87\x4f\xf1\x17\x7c\x8e\x3f\xe0\x17\xf8\x06\x5f\xe0\x57\xf8\x1d\xfe\x84\x3f\xe2\x9f\xf1\x6b\xfc\x1e\xbf\xfd\x1a\xae\xc7\x19\x69\x80\x52\x2e\xa1\x8d\xa0\x5f\xc4\x90\xad\xe1\xe8\x0f\x4f\x65\xb7\xa3\x68\xcf\x87\xed\xf6\x61\xd7\x39\x1b\xb2\xf2\xbd\xf1\x29\x2f\x21\xd4\xd9\x50\x14\x2a\x0a\x59\x13\x03\xe9\x43\xb9\xfe\x6e\x0f\xa4\x3a\xc3\xfd\xd3\xf7\xff\xe8\x63\x08\xba\x0e\x88\xc2\xe9\xfb\x7f\x84\xf7\xfa\x6e\x1f\x94\x3b\xc3\xfd\xac\x28\x6e\xaa\x8d\x5f\xfc\x0c\x52\xc0\xcb\x2e\x5c\xf8\xfa\xbd\x5e\xe3\xdb\xe1\xe9\xbb\x97\xa7\x9f\x2e\x4f\xff\xcf\xc5\xe9\xfb\xd7\x97\x1f\x3f\x7d\xb8\xf8\x70\xf1\xe3\xc7\xd3\xf3\x28\xda\xdf\xd1\x7a\xde\x3e\x7e\x08\x31\x90\x76\x7e\x18\x1f\x9e\xbe\xff\xc7\xb0\x51\x5a\x82\xe0\x33\xd9\xe5\x0f\x72\x1f\x93\x57\xf6\x11\x9f\xc9\x8e\x9b\xd4\xd2\xa5\xbe\x70\xdb\x94\xbc\x33\x2b\x8c\xcf\x86\xaf\xd5\xd3\x27\xbd\xaf\xc9\xd9\xd0\x3e\x7e\xf2\xb2\x79\xc5\x2d\x63\xf8\xa3\xf7\xfd\x14\xf6\x35\xf9\xb9\x91\x64\x73\xbf\xf6\x3e\x69\xe7\xb3\xef\xf5\x03\x3e\x1b\xae\x29\xbf\xa6\xe4\xbd\xfa\x87\xa1\xe5\x10\xe2\x5b\xf9\x63\x0d\x5e\xf1\xd9\xf0\xbb\xcf\x6f\x5f\x5f\xfe\xed\xf4\x47\xc2\xec\xa3\x2c\x53\xb1\xc5\x9b\x82\xcb\xec\xea\x09\x9f\x0d\x59\x5e\x82\x93\x55\x66\x9e\x64\x5b\xe9\x0d\x55\x2e\xcd\x98\x7b\xc6\x67\xc3\x79\x9a\xbf\x55\x76\x89\xcc\x3d\xcb\x0d\xca\xef\x6d\xba\x7d\xc6\x67\x80\xca\x12\x06\x7f\xf8\x6c\x58\xa9\x9e\x56\xaa\x87\xaf\xcc\xfd\x44\x0a\xf7\x8c\xcf\xb4\x93\x2d\x7e\x4f\x0a\xfb\xa8\xe6\x83\x72\x41\xe6\xfa\x41\xd6\x9d\xf2\x9c\xcc\xe1\x0f\x9f\x0d\xe1\xd6\x21\x73\xf5\x0f\xef\x1a\x32\x40\x9a\x7e\xf6\xd3\xdf\x54\xf9\xdc\xff\x26\xdf\x3b\x67\x43\x5e\xe5\x6f\xf3\xd7\xba\x32\xf7\x22\x17\x0b\x0c\x29\x5f\x04\x1b\x43\x66\x7b\xe0\xda\x2b\xd8\x6b\x5d\x15\x2b\xf2\xef\x21\x80\x37\x9f\xcc\x87\xfb\x3f\x62\xf3\xe9\x87\x94\xb7\x14\xf0\x52\x31\x2b\x5f\xe9\x0b\x69\x52\x0d\xdd\xcb\x4e\xad\x9e\xbe\xd2\x49\xea\xbd\xc8\x4d\x5e\x5d\x95\x73\xce\xae\x28\x49\xdd\x33\x3e\x1b\xbe\x0d\x91\x00\xf2\xe0\x4a\x4d\x82\x2a\x6c\xa1\x89\x5f\x41\x95\xfb\xe9\xde\x1b\x06\x92\x7f\x92\x2a\xd2\x5f\xf6\x8d\x57\x39\xb9\x19\x5e\xea\x8b\xe1\x53\x95\xab\xb4\xa1\xc3\x0c\xc8\x8d\xf7\x62\xbe\x82\xe1\xc0\x8d\xfa\x37\x69\x2c\x5f\xc8\x24\x96\x2f\x74\x8a\x56\x00\xba\xd1\x0f\x3a\xd5\x6a\x9b\xdd\xd8\x47\xfd\x85\x42\x05\xd4\x96\x5f\xa5\xe5\xb9\x66\xf0\x1b\x81\xe4\x4d\x4b\xa2\xce\x0d\x6a\x11\x37\xf0\xa7\x53\x94\x5c\xfe\x46\xfd\xeb\x34\xf0\xac\x78\xa3\x24\x26\x2a\xa5\x50\x7d\x29\x5c\x3f\xac\xea\xf1\x8d\x7d\xac\x7d\xf9\xa0\xca\xf8\xaf\x3a\x87\x55\x30\xbc\xb1\x8f\xc1\x6c\xd8\x71\xf8\xaf\xfb\xa0\xbb\x2c\x87\x8d\x2f\xf7\x4f\x55\x7e\x06\xa8\x02\x40\xfa\x1b\x09\x2b\x5f\x05\x5f\xea\x10\x1e\x6e\xbc\x37\xa4\xb2\xab\x6b\xf6\x64\x87\x2d\xe3\xb3\xa1\xc1\x9f\xc8\x1b\x7c\x36\xbc\x5c\x50\x15\x74\xa0\xe0\xa4\x1a\xe6\x40\xd9\xbe\xa6\xe5\xfc\x35\x9d\x17\x3c\x15\x00\x84\x2e\x05\xb8\xc5\x5f\x90\x6a\xa8\x9f\xf0\x9b\x61\x9a\xb1\xb4\x24\x95\xfa\x07\xe8\x33\x5f\xd1\x37\x50\x8b\xec\xa0\x7c\x5b\x80\x87\x72\x05\xc8\x4c\x17\x6c\x9c\x8d\xaa\x91\xb4\xff\xaa\xbb\x2c\xa9\x30\xb9\x6d\xc7\xf4\x7c\x34\xef\x9c\x4a\xde\x1b\x40\xca\x31\x37\x0c\x75\xe3\x5c\xb6\x7c\x21\xad\xf9\x01\xa6\x8b\x94\x94\xf0\xa7\x2e\x2b\x35\x34\xf5\xfc\x03\x13\x2b\x7d\xf7\xa8\x64\x2f\x41\x36\x74\x4d\xc5\xc7\x54\xac\x60\x11\xd4\xa3\xba\xda\x54\x6b\x0a\x2a\x9f\xc3\xab\x7a\xc0\x67\xc3\x37\xa7\x2f\x2e\x3e\x7f\x3a\x3d\x27\xf1\x08\x9b\xab\x05\xc5\x0f\xac\x3c\xcd\xe5\xd2\x2e\x26\xd9\xd0\x3e\xef\x70\x66\xf3\xc3\xc0\x60\xc2\x09\x1b\xc2\x3f\x3e\x1b\x16\x39\xa9\x86\x85\x3c\x10\xe9\x02\x7c\x7f\xca\x1b\x48\x2e\x97\x7b\x93\xdb\x13\xdc\x92\x7a\x9f\xc3\x04\xe8\x72\xbe\x38\xbd\x95\x10\xac\x72\xcf\xf8\x4c\x9e\x46\x93\x4b\xee\x02\xff\x15\x03\x92\x54\xe4\x94\x54\xfa\x01\x52\x14\xb5\x59\x99\x27\x48\x7b\x99\xa5\xf9\x0d\xa4\xc1\x13\xa4\x7d\x54\xce\xc6\x21\x55\x3f\xe3\xb3\x61\x5e\x08\xb6\xbc\x37\x9b\xe2\xd5\x2a\xcd\xaf\x65\xfd\x6d\xc9\x72\xf4\xb7\x94\x73\xb6\xa0\xaf\x56\x29\xcb\x65\xff\xc2\x04\x7c\xa6\x00\x58\x58\x4e\xe6\x6b\x4b\xc6\x67\x12\x34\x35\xf3\x36\x13\xe5\x31\x80\x27\x9d\xce\x20\x5f\x3d\x09\x9f\x0d\xad\xf1\xd6\x43\xb8\xd9\x27\xbd\x11\x5e\xa5\xa5\x79\x7d\x31\x9f\xd3\xb2\x2c\x78\x39\xe9\x8d\x76\x70\x3f\xfa\x99\x49\x55\x4b\x80\x7b\x57\xcc\x57\x7f\xa3\xf2\x9b\x79\x94\x77\x7b\xee\xa5\xbb\x17\xbb\x01\x60\x56\x7e\x80\x80\x2d\x6e\x13\xf8\x89\xb0\xc3\xe4\x3b\x38\x3c\xad\x86\xf6\x19\x9f\x0d\x97\x2c\x67\xe5\xca\xce\xb4\xff\x6a\x3a\xa4\x4f\x82\x7d\x76\x5d\xd2\x5f\xbc\x37\x53\xc6\xe4\x87\x3d\x01\xdd\x90\x38\x76\xe5\xbd\xb8\x5a\x5c\x0d\x30\x49\x10\xf4\x9e\x94\xda\x73\xc7\x3b\x75\x7e\x33\x76\xc5\x53\xae\x56\xc4\x3e\xab\xb3\x1c\xac\x56\xf0\xae\xce\x6c\xf0\xbd\xac\x7d\xa7\x5f\x36\xa9\xdd\x08\x2a\x4b\x3d\x49\x1d\x42\xe3\x2d\x4d\x1d\x42\xf3\x66\xd7\xc0\xfb\x1c\x26\xc8\xd2\x12\xc6\x2a\x8f\x5b\x06\xe2\xaa\x37\xb9\xd5\x5d\xb9\xc2\x95\x00\x0a\x9c\x54\xea\x1f\x9f\x0d\xdf\xe9\x77\xf8\xdf\x0f\x68\x8b\x5c\x93\xa9\x00\x5a\x2f\x00\x2d\x57\x49\x40\x55\x5c\x00\x46\xae\x13\xbe\x9a\x50\x11\xb4\x54\x04\x33\x54\x3a\x1f\xb2\xf2\x42\xa5\x40\x9d\x73\x50\xef\xd0\x09\xf5\x3a\xcf\x86\x97\x2f\x1d\x3e\xb2\xb4\xe8\xdd\xdb\xe1\xd9\x87\xef\xbe\x3b\xfd\x14\x45\xf1\xd9\xf0\xac\x00\xb5\xad\x95\xf9\x2a\x8b\xbd\x20\x97\xc3\x17\xf8\x6c\xa8\x49\xb3\x87\xac\x98\x4f\xd6\xc3\xac\x98\xe3\xbb\xc9\x7a\x78\x87\x17\x69\xb9\xa2\x9c\xfd\x4a\x27\xeb\xa1\x7d\xc6\x0b\x3a\x4f\xd7\x34\xd3\xc9\xf6\x05\x7b\xa9\x2e\x0d\x2e\x8c\xe5\xbd\x4c\xd3\x8f\xb8\xca\x17\x94\x97\xf3\x82\xcb\x9c\xee\x05\xcf\xd3\x0d\x13\xa9\xad\xc1\xbc\xc8\x23\xad\x66\x8d\x5c\xea\x07\x39\x62\x83\x58\x7f\xe4\xc5\x97\x7b\xb5\x70\x97\xc3\x66\x22\x9c\x49\x83\x9a\x07\x79\x5b\x52\xb1\xba\xf6\x53\x4e\xc9\xa5\x79\x82\xb4\xcd\x3d\x24\x6c\x14\x3c\x3e\xfd\xa5\x4a\x33\x72\x69\x9e\xf4\x8d\xf9\x86\xa7\x6b\x7a\x57\xf0\x1b\xc5\x1f\xbd\x1c\x36\xd2\x00\xd7\xfd\x39\x88\x06\x81\x1e\x76\x36\x75\xa8\x39\x3e\xe4\x56\x27\xb8\x2f\x8e\x6b\x44\x16\xee\xa3\x22\x6f\x2e\x87\x86\xb4\x79\x05\x3d\x06\xce\xdf\xa5\xf7\x02\x54\x9a\xe5\x27\x5e\x7a\x2f\xa6\x0e\x98\x01\x53\x11\xbc\xd8\x39\x37\x9f\xbc\x37\x59\x6a\xee\x51\x01\xb2\xa0\xff\x0e\x3d\xe1\xd4\xae\x99\x7b\xc1\x67\x43\x25\x15\x30\x3d\xf7\xde\xa0\xd4\xe6\xde\xf6\x5e\x3d\xca\x43\x59\x01\x33\x33\x18\x42\x23\xcd\xe5\x33\x55\xfb\xaf\xf8\x6c\xa8\x3c\xf3\xa9\x7e\x9e\x2b\xae\x13\xb9\x6c\x4b\x95\xb3\x25\x6f\x6f\xba\x90\x53\xa5\x9e\xf0\xd9\x50\x7b\x8e\x0c\x76\x50\x23\x0d\x66\x4d\xae\xa2\xee\xa6\x7b\x91\xa8\x0c\x70\x87\xc9\xa5\x7e\x80\x9d\x64\x3a\xab\x9f\x5a\x77\x7a\x91\x9f\x15\xe9\x82\xbc\xd3\x0f\x0a\x5d\x96\x4f\xdf\x17\xc5\x4d\x49\xde\x05\xaf\x9a\x28\xb5\x7b\xc5\x51\x7a\x2e\x59\x75\x7f\xe3\x7d\x3b\xb7\x1b\xcf\xa5\x5d\x06\x43\xbd\x0c\x06\xf9\xe9\xfc\x1f\x1f\xe5\x69\x3b\xff\xc7\x47\x58\x52\xc3\xe9\xb9\x74\xcf\xb2\x06\xe5\x70\x85\xdc\x0f\xd5\x83\xc2\xa3\x37\x34\x5f\xd0\x5c\xfc\x8d\xde\xc3\x0e\x15\xe4\x7a\xd8\x4c\xc4\x6f\x86\x14\x10\xa1\x2b\xf5\x8f\xdf\x48\x1c\xe6\x54\x27\x99\x47\x48\xcd\x29\xa4\xe4\x54\xe5\x51\x9f\xf1\x9b\xe1\x55\x51\x64\xe4\x0a\xfe\xf0\x1b\x15\xd3\x88\x5c\xa9\x7f\x59\x3b\x1c\xe1\x2b\xf5\x8f\xdf\x0c\xaf\x65\xc1\x6b\x01\x4f\x14\x1e\x65\x7d\x99\x4c\xcd\x04\x3c\x51\x78\x94\xa9\x45\x4e\x7f\x48\x65\x3f\xd4\x03\x7e\x33\xe4\x34\x5d\x94\xf5\x84\x0f\x79\x26\x33\x99\x47\xfc\xc6\x12\xea\x2c\xbf\x7e\x01\x74\xc1\x55\x23\x49\x92\x0c\xf9\x82\x5c\xc9\x5f\xd9\x14\x97\xb5\x72\xfc\x66\x58\x56\x6b\x72\x25\x7f\xe5\x60\x58\x2e\x87\xc2\x72\x18\xd8\x17\x18\xd6\x17\x78\xde\xc0\xf3\x46\xe6\x97\x1b\xfc\x0a\xfe\xe4\x1b\x15\xaf\xd9\x72\x29\x13\xd4\x93\xca\xfd\xf2\x5e\xe5\x7f\x29\x7b\xb7\x64\x99\xa4\x07\xaf\xf4\x83\x4d\x81\x4c\xe6\x11\xbf\x19\x56\x39\xfb\x85\x5c\xc1\x9f\x7e\x83\x1c\xea\x41\xa5\x14\xb9\x4a\x28\x64\x0f\x81\x1d\x5b\xca\x4d\x7d\xe5\x9e\xf1\x9b\xe1\x5c\x6e\x46\x48\xd5\x4f\xfb\xef\x46\x15\xa4\xfe\xbc\x0f\x82\x31\x4f\xee\xa5\xf8\x69\x6b\x20\x1e\xd4\x1d\x56\xc2\x6d\xb9\x06\x80\xac\x53\x0e\x5d\xba\x2f\x3f\x7c\xb8\x38\x7d\xdd\x52\x6f\x93\x6b\x57\xf9\x3c\xcd\x73\x9a\xf2\xf9\xea\x35\x2b\x81\xcc\x80\x36\x01\xe7\xd9\x93\x01\xee\x68\xe7\xe9\xfa\xce\x3d\xe3\x3b\xed\x2c\x78\xb8\x52\x3e\x83\xef\xf4\x03\x3e\x33\x5e\x84\x4d\x0e\x59\xc5\x8a\xce\x6f\xae\x8a\x2f\xb2\x06\xfd\x28\x41\x1b\xfd\x22\xde\x80\xd7\xe8\x3b\xf7\xac\xd3\x5f\x70\x9a\xea\x64\xf9\x88\xcf\x20\xce\x81\xdf\x95\xe0\xdd\x10\x7f\xe6\xfd\x5d\x9a\xa7\xd7\xd0\x87\x96\x54\x99\x79\x5e\x4b\x7b\x95\x6e\xd2\x2b\x96\x31\xc0\xf1\xee\xe4\x2d\x6e\x5f\x75\xdd\xc6\x6f\x78\x50\x75\x2d\x51\x66\x5d\x87\x49\xba\x62\x5d\xaf\xf9\xe8\xa5\xca\x09\x83\xfb\xe7\x2a\xe5\x25\x79\x10\x5a\xe6\x39\xb9\x1b\x9a\x47\xfc\x59\xb0\xac\x9c\x3c\xd0\x72\x9e\x6e\x3c\x7f\xca\x93\xbb\x61\x3d\x69\x27\x6f\xe5\xef\x2f\xde\x9d\xbd\xdc\x57\xd9\x0e\xef\x61\xda\x6a\x64\x2a\x8a\x62\xf5\xe0\x09\xe0\x57\x62\x9d\x9d\xa7\x4b\xda\xe4\x81\xc7\x23\x7c\x67\x3f\x23\x1d\x18\x11\x59\xcc\xcc\x95\x74\xb9\xdc\x47\x56\xca\x9e\xea\xcf\xee\x65\xff\xae\xbf\x38\x7d\xf7\xf1\xec\xc5\x05\xb0\xa7\xe5\xd6\xbe\x93\x18\xac\x11\x12\xab\x13\x74\xa7\xf0\x4d\x93\x74\xf0\x78\x40\x47\xff\x71\xfa\xe9\xfc\xed\x87\xf7\xe4\xd4\xc3\x3e\xff\xf7\xdf\x3f\x9f\x7e\xfa\xf1\xf2\xed\xfb\x8b\xd3\xef\x3e\xbd\xb8\x78\xfb\xe1\x7d\x14\xf5\xbe\x0c\x7f\xfe\x7b\x45\xf9\xbd\x39\x1b\x07\xd8\xe9\x7f\xd8\xcb\xbc\x30\x95\xec\xea\x82\xf0\xa0\x67\x23\xd5\x33\x46\xef\x60\xe5\xc9\x03\x2b\xcf\xd9\x7a\x93\xd1\x57\x19\x9b\xdf\x4c\xbe\x0c\x83\x77\x79\xca\xb5\x97\x6c\x59\x64\xf2\x65\x18\x26\xc8\xef\xf2\x5f\x27\xa9\xef\x5e\x82\xf9\xae\xe2\x1a\xba\xcf\xea\xdd\x7c\x55\x0e\xbd\x3f\xd1\xb9\xf0\xb2\x78\x89\x41\x2d\x2c\xbf\x76\x9f\x6a\x35\x06\xdf\x64\xa9\x4f\x45\x01\x5f\x75\xbd\xf6\x55\x7e\x83\xd0\xdd\xde\x47\xf7\x8e\x59\x79\xae\x83\x61\x02\x2f\xf5\x8d\x09\x9f\x3e\x91\x7b\xa9\xfd\xd3\x4e\x03\x17\x83\x47\x7d\xf1\xdf\x7c\x48\xa7\x44\x2b\xe4\x4b\x3d\xc5\xe0\x58\xaf\x59\xb9\xd1\xf4\xf4\x97\x7a\x8a\x04\x55\x85\x16\x65\x9c\xdb\x47\x89\x7b\x56\xa2\xf0\xbe\xf8\xaf\x00\x03\xca\x95\xf7\xd5\x7f\x95\x5f\x59\x29\x0a\x7e\xef\x67\x08\x53\x24\x3a\x53\xe4\xd4\xcb\xe0\xbf\x02\x2d\x60\xd0\xa8\x37\x05\x27\xe7\xe1\xbb\x27\xd2\x70\xe8\xd6\x9b\x74\x2e\x5b\x20\xe7\xfb\xbf\xb5\x96\x6b\x2d\x20\x91\xaf\xa2\x12\x94\xbf\x3e\x3f\x23\xe7\xee\xd9\xa6\xdb\x44\x93\x62\x12\x70\x3c\xc2\x21\xae\x88\x62\x25\x7a\xf3\xc5\x3e\x7d\xfc\xce\x27\x10\x5f\xa7\x22\x7d\xb1\x48\x37\xb2\xe2\x0f\xfe\x9b\x2f\xfc\x00\x19\x82\xcb\xd5\x9a\xae\x54\xe9\x57\xa9\x6c\x54\x29\x14\x19\x40\x7a\x24\xaf\x10\x96\x51\xde\x47\x51\x04\xb9\x4c\xfb\x07\x72\xb6\x55\xa7\xc8\x67\x1d\xd1\xfc\x57\xb2\xa7\x2a\x9d\xab\x23\x77\x70\x29\xc8\xaf\xf0\x87\xd5\xdb\xd0\x0c\xe2\xd7\xa1\x1b\x26\x7c\xf8\xfb\xe7\x9c\x09\xf7\xd5\x7f\x55\xcc\x8f\x6a\xf3\xa6\xe0\x9a\x3e\x27\xbf\xd6\x53\x76\x7b\xe7\x5e\xab\x77\x7f\x4f\xce\x3c\x89\xec\xf7\x38\x1f\xbe\x3d\xbf\x7c\xff\xe1\xf5\xe9\x34\x1f\x2a\xcd\x89\xa1\xd6\xbc\x20\x67\x13\x27\x79\xd5\x69\x4a\xf2\x4a\xda\xd2\xc9\x99\xaf\xc6\x61\x45\xf9\xbf\x4f\x31\xde\x25\xf4\x9f\x0e\xc7\xc7\xc3\x51\x5f\x55\x1e\x28\x78\xec\xab\x5a\x69\xcc\x34\xe4\xcb\xaa\x58\x14\xb5\x68\xe9\xe8\x81\x6b\x45\x93\x8e\x98\xc6\xf6\x85\x84\xdf\x30\xd5\xb3\xa4\xd3\x31\x35\xf3\x47\x04\x9a\x78\xc5\xc0\x3c\xcc\x66\xd6\x6f\x2e\xab\x1a\x0e\x97\xc7\xe5\x88\xd3\x79\x71\x9d\xb3\x5f\xc3\x08\x07\xbf\xdd\x8e\x20\xd0\xf9\xf2\x03\xe5\x58\x43\x1b\x15\x93\xd0\x29\x5c\x5d\x5e\x9a\x58\x2e\x3a\x94\x9f\x4c\xc2\x74\xa7\x34\x84\xea\x7a\x57\x4e\x73\x5c\xbb\x25\x5b\x6b\x88\xaa\x3d\x6a\xcb\x3a\xae\x21\x52\x2e\xf8\x39\xf7\x34\xdc\xf7\xab\x93\x9a\x32\x3a\x70\x3c\x87\xf8\xcd\x2f\x16\x0b\x00\x24\x51\x14\x53\x12\x26\xc5\x7e\xc3\xc6\xa7\x30\x35\xbe\xa4\x4c\x7a\xba\x58\x78\x3a\xb9\x14\x69\xed\x2d\x30\xe1\x74\x76\x9b\x2d\x1e\x3d\xc1\x1d\xd4\x2a\xbd\x55\x5e\x3c\x8d\xa9\x04\xcb\xbb\x62\x45\xad\x87\xa8\xee\x26\x2d\x4b\xe5\xf4\xf3\x9f\xa2\xf8\x67\x5f\x1b\x4d\x79\x8d\xc3\xa5\xe7\xf7\x00\xd7\xa6\x08\xed\x76\xda\xd8\xa2\xa9\xec\x5d\x40\x70\x6e\x6e\xcd\x94\x65\x5d\x9c\xe6\x2e\x45\x8d\x9a\x50\x2f\x2e\x45\x51\xb3\x3e\xb6\xb5\x32\x9c\x1a\x87\xdb\x74\x00\x1e\x06\x7b\x29\xf2\xe2\x70\xe6\xb1\x0a\xec\xdd\x49\xe3\x42\x3f\xfa\x7a\x5a\x69\xd3\xc3\xff\xa8\xe9\x42\x7f\x80\xf2\x01\xa1\x09\x9b\xf9\xea\xc9\xda\x76\xf0\x41\x26\x4d\x04\x11\x20\x15\x15\x10\xb2\x75\xa5\xe5\xb7\x7c\xd7\xa1\x46\x95\x77\xc7\x0e\x58\xb4\x04\x53\x93\xd0\x19\x11\x3b\x5c\xcb\x0f\x53\xbe\xc7\xf4\x57\xc5\x97\x66\x2e\xda\xbe\x9e\x52\x59\x53\xda\x51\xb3\x23\x67\x30\xc5\x39\xea\xe4\x51\x94\x1b\xf0\x76\x2a\x89\x48\x89\x38\xd6\x53\x62\x81\x4b\x84\x79\x5c\x22\x6f\x11\xca\x20\x86\x43\xb9\xc9\x98\x88\xfb\x4f\xfa\xca\xc8\x3f\x43\x20\x10\x85\x84\x9d\xf2\x29\xf9\xe4\x8f\xdb\x9f\x9e\x3c\xb9\xee\xec\x09\x02\xa1\xa6\xf1\xf9\xd3\xed\xf6\x48\x39\x2d\x35\x31\xe9\xfb\x7f\xec\xa3\x29\x9d\x2c\xe8\xbc\x58\xd0\xcf\x9f\xde\x5a\x94\x27\xa6\x68\xc8\xe9\x26\x4b\xe7\x34\xae\x30\xcd\xeb\xdf\x55\xc3\x73\xf2\xe4\x8f\xf1\x74\x72\x1c\x4f\x27\xcf\xb6\x7f\xde\xbe\xdc\xbe\x42\xdb\xa7\xf1\x74\xf2\x72\xfb\x7a\xfb\x02\x6d\x9f\x8d\x90\xdf\xa7\xa5\xdf\xa7\x46\x8d\x7e\x8b\x73\xdc\xec\x91\x6a\x71\x45\x9e\xc4\x3f\x3d\xd9\xfe\x34\xdc\xfe\xf4\x3f\xb7\x3f\x0d\xb6\x3f\x4d\xb7\x3f\x6d\xb7\x3f\xc5\xdb\x9f\xd0\xf6\xa7\x64\xfb\xd3\x6c\xfb\xd3\xc3\xf6\xa7\xdd\xf6\xa7\x9f\xd0\x93\x6b\xbc\x20\x41\xec\x2e\xbc\x31\x80\xcd\x23\x6f\xd2\xf2\xc3\x9d\x15\x0b\xb9\xce\xae\x1b\x8a\x9a\xd6\x11\x1c\xdd\x6e\x8d\x2d\xe1\x81\xa3\x2f\x4f\xb6\x3c\xfa\xaa\x74\x37\x2d\xe1\xe0\x97\x74\x5e\xe4\x0b\x07\x0f\xe4\xc1\x37\x08\xd3\x3f\x87\xca\x51\x70\x6f\xa3\x3d\x42\x63\x81\x0e\x35\xc0\x8b\x5b\xb6\xa0\xdd\x4d\xca\xd3\x75\xf7\x9f\x60\xb2\xf0\xcf\x66\x85\xda\x55\x60\x22\x66\x38\x27\x4d\x2b\xab\x29\x9f\xf4\xfb\x03\x6e\x3d\xae\x3e\x0e\xd3\x4c\xbb\x69\xd8\xf2\xd0\x39\x1c\xce\x77\xca\xa1\x4a\x32\xeb\xdc\x26\xa3\xd9\x5e\x4d\x74\x01\x9a\xe8\xa0\x07\x8a\x5b\xac\xaa\xb5\x8e\x7f\x3e\x9c\xaf\x52\xfe\xaa\x58\xd0\x17\x22\x66\xa8\x23\x71\x86\x4d\x25\x62\x30\xfb\xed\x8d\xad\x6d\x3a\xdf\xe1\xdb\x64\x5c\x6f\xcd\x7a\x19\x90\x45\x9e\xfd\x07\xee\x8d\x94\x1f\xf6\xdb\xe4\xf8\x60\xd6\xa3\x31\x54\xaf\xb2\x3e\xdb\x97\x55\x81\xde\x7b\x39\xd2\xfb\x70\xa4\xde\xe9\x83\x01\xda\xbd\xbd\xc2\xfd\x9f\x7e\xfa\xc3\xb8\x8f\x76\xf8\x3e\xe8\xae\x55\x2d\x8b\x93\xff\x7c\x32\x1b\xa0\xbe\xcc\x70\xdc\x9a\x61\xa8\xbf\x3e\x6b\xfb\xda\x57\x9d\xba\x96\x9d\xba\x3e\xdc\xa9\x1d\xbe\x6e\xce\x98\x5a\x9b\x75\x2c\xb0\xce\x65\xd7\xf5\x62\x78\xfa\xfe\xd5\x87\xd7\xa7\x97\x2f\xde\xbf\xbe\x7c\x7d\x0a\x8f\x1f\x5f\x5c\x7c\x7f\x79\x7e\xfa\xdd\xbb\xd3\xf7\x17\xe7\xd3\x65\xcc\xd1\x84\xcb\x6a\xf7\xcd\xae\x5f\xaf\xcc\x77\x68\x08\x57\x35\x1f\xc2\x0f\x3b\x84\x2f\x0f\xf9\x15\xbe\xb3\xf8\x85\x67\x41\xff\xec\x3f\xe0\xae\xf6\x36\xd1\x48\x22\xed\xde\x3d\x32\x46\xc8\x73\x86\x26\x3c\x78\x8b\x19\xb1\x5e\x1d\x8c\xa7\xa4\xa6\x31\xa0\xba\x15\x71\x05\xc1\xc1\xf1\x9c\x8c\x3a\xe3\xe3\x28\x2e\xc9\xf1\xf3\xe7\xf1\x9c\xf4\xfb\x84\x90\x6a\xfa\x6c\xf2\xa7\xbf\xc8\x87\xb0\x23\xd3\xf1\xe4\xd9\x71\x4b\xf2\xf1\x64\x84\x64\x2f\x2b\x52\x69\xf5\xf6\x31\xc2\x31\x23\x6c\xbb\x4d\x66\x48\xdd\x74\x15\xc2\x71\x41\x0a\x2f\x65\xd4\x23\xf1\xb3\xa8\x44\x08\xe1\xf1\xb3\xa8\x8c\x22\x9e\xcc\x67\x83\x01\xd6\x57\xe3\x83\x3c\xf4\x93\x39\x56\xba\xf9\x59\x5c\xa1\x9d\x39\x3d\x0f\x79\xba\xa6\xe5\x84\x6d\xb7\x97\xb8\x5c\x15\x55\x06\xca\x18\x0b\x5a\x4e\x8a\xed\xf6\xd2\xbb\xc6\x4f\x6b\xe8\x01\x85\x8e\xeb\x00\x45\xc3\x5c\x61\x6d\x44\x07\x41\xf9\xd2\xee\xff\x5e\x1b\xbc\x08\xe7\x95\x96\x2d\x0c\xe6\x07\xb5\x69\x37\xa3\xba\xb6\xdc\xbc\x7d\x11\xe7\xaa\x14\x9b\x8a\x89\x17\x4a\x38\x15\x82\xf2\x9c\xf4\xfb\xd6\x89\xc5\x35\xfd\x62\xd6\x0b\x92\x34\x9a\x50\x06\x89\x72\x36\x4c\x8a\x77\xf7\x9e\x07\xfb\xd5\x8c\x69\xaa\x06\xda\x83\x81\x1e\x41\x7c\x0c\x48\x98\xb8\x09\xb0\xb7\xab\x4c\xf0\xc2\xfe\xd7\xc1\x5e\x22\x21\xb1\xc4\x7d\x2c\xde\x93\x3f\x67\x60\xf8\x67\xa3\x07\xe5\xb3\x8e\x26\x8d\xe6\xa9\x88\x0b\x85\x10\xc6\x02\x79\xc0\xee\x4b\x60\xf4\x25\x07\xbc\xcf\x64\x19\xbe\x6e\xb7\xb1\x3f\x39\x12\xb0\x7f\xa2\xd7\xa7\x5f\x36\xb1\x3f\x87\x08\xf9\x53\xb8\xc3\x7e\x23\xd7\xf4\x80\x2d\x97\x5b\x1c\x2f\xe8\x3e\x18\xf6\x82\xd5\xae\x87\xf3\x9d\xe4\xce\x5e\x37\x0f\x2d\x8f\xf4\xa6\x48\x78\x92\xcf\xc0\x74\xeb\x34\x66\x18\x6e\x41\x63\xf0\xb0\xf3\x5c\x53\x07\x25\x74\xf6\x22\xc8\x5e\xec\xc2\x11\x6c\x2a\xd1\xee\x01\x04\xfa\xac\x2a\x04\x9b\x1e\xaf\x8e\xbc\xd3\xe8\x9f\xbd\xe6\x60\x16\xbf\xc4\x0c\x33\x63\xc5\xa9\x2a\xc5\x2c\x31\x29\x33\x92\x6b\xcf\x58\xb5\x69\x9a\xd6\xf7\x74\x3e\x64\x8b\x89\xc6\xf4\x5d\x32\xaa\xe7\xd3\x16\x5f\x43\xb6\xd0\x61\x89\xbd\x2a\x92\x5a\x02\x96\xd9\x66\x38\x0f\x67\x41\x49\x95\xf6\xf8\x7b\x0a\xd7\xb1\x67\x6c\x4e\x92\x59\xc7\xec\xdd\x0e\xac\xa9\xa8\xaf\xa9\x78\x64\x4d\x05\xac\xe9\xb9\x5c\x50\x24\x89\x33\x18\x06\x43\xfb\x16\x54\xc8\xbc\x85\x9f\xb7\xf0\xf6\x3e\x74\xe6\x45\x93\xe0\x09\xad\x19\x7f\xa9\x28\xbf\xd7\x31\x11\xe9\x76\xfb\xb0\xf3\x0e\xf9\x8d\x1d\x77\x87\x12\x77\x39\x3f\xf9\x69\xf0\xe4\x7a\x8d\xfb\x7f\x3c\x1e\x49\x5a\x8c\xdf\x3f\x08\xd2\x8a\x1c\x6b\x3f\x47\xf2\xaa\x21\xfd\xfe\xce\xe2\x03\x2f\xbc\x89\x56\xce\x48\x34\x0a\x5a\x4f\xc6\x41\xce\xf6\x8c\x8d\x7c\x60\x42\x57\xcf\x26\x13\x61\x42\x2e\x1a\x66\x9f\x00\xd4\x25\xb5\xa7\x7d\x42\x42\x94\x0f\xb5\x69\x29\x1e\x61\x89\xe3\x8c\x24\x0a\xd5\x81\x48\xae\x02\xb7\x40\x66\x5e\x14\x6a\x43\x10\xb1\xeb\x5c\x1c\x24\xac\xbc\x68\x63\x24\x2c\x8b\x19\xe9\xff\x67\x1f\x17\x24\x19\xe1\x11\x06\x07\x9b\xce\x6d\xa7\x35\xe4\xc5\xe0\xbe\xae\x22\xbd\x11\xce\xc8\x48\xde\xa3\x27\x73\x47\x1b\xce\xe5\xbe\x32\x4d\x2c\x09\x4d\xe6\x33\xbc\x22\x77\x71\x89\x97\x8a\x32\x2e\x10\x5e\x90\x95\x1a\x33\xde\x90\xd5\x30\xb8\xc7\x4e\xb2\xe7\xd6\x78\x35\x33\x5b\x74\x4d\xca\x24\x9b\x75\x9e\xf5\x08\x59\xc3\x75\x00\x37\x6e\x6f\x8c\x73\x92\x5b\x84\x11\x90\x4c\xcc\x06\xa4\xff\xa4\x8f\x73\x72\x9b\xa8\xac\xb3\x78\x8d\x73\x48\xbf\x77\x29\x08\xed\xd2\x64\x3e\x23\x0f\x86\x2e\x5d\x9a\xab\x07\xab\x0b\x76\x51\xbb\x5d\x37\xbb\x5d\x05\x4e\x8e\xdb\xdb\x43\x38\x77\x77\x57\x8a\x73\x7b\xd7\xb1\x41\xff\x0f\x7d\x9c\xeb\x3b\xac\xc0\x87\xac\xc9\xa2\x48\x0c\xd3\x52\xb9\x31\x1b\xa6\x92\xd8\x34\x2e\x50\xa0\x4f\x60\xfa\x5e\xd2\x6b\x70\xff\x38\x29\x0d\x49\x5d\x4e\xd2\x1d\xda\xe1\x8b\x80\x56\x52\x5f\xea\xf1\xcb\x7c\xf8\x01\x35\x6a\x37\xd2\x2d\x86\xd6\x17\x2b\xca\x69\x97\x95\xdd\xbc\xe8\x02\x0d\xde\x95\x25\x16\xdd\xfe\x80\xfa\x86\xf1\x9e\x53\x57\xdb\xaa\xdd\x26\x06\xe0\xd4\x3e\x04\x90\xc7\x7e\x84\xab\x34\xc9\x67\x84\x79\x74\x42\x38\xa8\x52\xb1\x9c\x9b\x68\x72\xaf\x17\x8c\x29\x2c\x67\x88\xac\x03\x77\xa2\x2e\x27\xe9\xae\x3e\x4c\x48\x4b\xf0\x97\xaf\x9a\x10\x46\xf8\xd0\xac\x90\x09\x08\x62\x46\x5d\x98\x51\xa7\x84\x25\x85\xda\xcc\xa9\xd9\xcc\xb9\xde\xb5\x03\x72\x9d\xa4\x7a\x93\xa6\xd8\xe1\x11\xfd\x27\xfd\x1e\xd1\x14\x96\x41\x8c\x73\x59\x64\x90\x23\x0c\x1b\xc7\x03\xa2\xaa\x3e\x7d\x4b\xaa\xc1\x83\x3c\x4b\x49\xf4\xe2\x20\x2f\x42\xf2\xda\x69\x9b\x2f\xaf\x48\xcb\x26\x4a\x66\x98\x1b\x0c\xff\x86\xde\x97\xb1\xa4\x3e\x40\x21\x20\xf6\x71\xf4\x7d\x58\x84\x5c\x69\x0c\xe1\x17\x67\x0e\x0f\xb1\xe1\x7f\x5a\x98\x0e\x0c\xa9\xfb\xac\x70\xf7\x59\x49\x46\x27\xe5\xf3\xc2\xd4\x5e\x9a\xda\x2b\x79\xe8\x92\x19\xe9\x0f\x5a\xea\x29\x92\x72\x86\x3a\xc2\x20\xe6\xca\x3a\x3c\x1d\x90\xfe\x9e\xec\x48\x87\xeb\x8a\x53\x64\x43\x9e\xfa\x3c\xc5\x69\xbf\x3f\xe9\x4f\xfb\x03\xa1\x59\x3d\x51\xbf\x76\x16\xc1\xd1\xee\xbe\xb9\xf4\x42\xb9\x18\x62\x26\xea\x23\xcc\xc9\xc3\x0e\x1f\xb8\xae\x93\x7c\x66\xb2\x93\x3e\xc2\x05\xb9\x89\x59\x32\x9a\x21\x9c\x12\x33\x1d\xb8\x94\xe0\xd1\xf8\x7f\xed\x48\x7c\xd7\xec\xc4\x69\x45\xfa\x82\x57\xb4\x3f\x89\xd3\x6f\x8f\xa3\xa8\x9f\xcc\x24\xe5\x53\x68\xfa\x25\x3d\x3a\x96\xbb\xab\x04\x77\xee\x49\x61\xd3\x47\x58\x7e\x99\x6d\xb7\x31\x4f\x8a\x19\x49\x66\x08\xe1\x0a\xfc\x2f\x4f\x65\xf3\xe3\x19\x9a\xf4\xfb\x08\x97\x53\xf9\xd9\xcc\xef\x04\xf2\x56\x7b\x8e\xb4\xe5\x82\xb7\xc5\x41\xd4\x58\x92\xbd\x9b\x66\x26\xfe\x4e\x6f\x2c\x77\x8e\x63\x8d\xfd\x8f\x3e\x3a\x01\x44\xbf\x00\xe6\x31\x35\xd4\xe2\x08\x17\xc8\x84\x29\xf4\xb2\x4f\xfb\xda\xdb\xad\x3c\x7f\x66\xc7\xd8\x42\xe9\x60\x8c\xed\x45\xd7\x09\x6a\x4b\x91\xf3\x81\x10\xae\xa9\xdc\x48\xea\x84\xd2\xe0\x84\x52\x38\xa1\x14\x69\x1f\xc1\xb4\xf3\x38\x61\x4e\x89\x3c\x4a\x93\x98\x3a\x74\x26\xa6\x08\x67\xde\x6b\xa6\x47\x35\xb7\x74\x49\x67\xfe\xed\x38\x8a\xfa\x4f\xfa\xc4\xeb\xc1\xfc\x68\x8c\xea\x13\x22\xd3\x70\x46\x32\x97\x92\x59\x3f\x06\x92\x86\xee\x8d\xdc\xe1\x5d\x92\xd1\xc9\xd2\x5e\xeb\x70\x2b\x7d\x88\x39\xa6\x3e\x01\xbc\x44\x08\x99\x0d\xba\x1c\x0c\xd0\x89\x29\xbc\x92\x00\x62\x41\x46\x27\x0b\x77\xfc\x17\xe0\xe3\x7b\x31\xb3\x20\x3f\x8a\x56\x3a\xd8\x44\xb2\x98\xa1\x0e\x6f\x67\x80\x00\x4c\x69\x83\xdd\x54\x5d\xaa\xdb\xad\x41\x56\x72\xc2\x55\xac\x1c\x9e\x8c\x25\x74\xe1\xc9\x31\x78\x42\xae\xe7\x2b\x49\x2a\xf3\x55\x24\x95\xf9\x32\x92\x26\xc7\xd6\xd3\x5d\x66\x69\x92\x23\xf0\x9e\x5a\x00\x6b\x31\xef\x11\x52\x9a\x2f\xe5\x11\xd0\x21\xac\x47\x48\x65\xd2\xaa\x23\x7b\x6d\x41\xfa\x94\x1d\x55\x13\x28\x35\x2d\x8f\xf2\xc9\x68\x87\x76\xf1\x4a\x2d\xdb\x86\xac\x92\x91\xf5\x95\xbd\x89\xa2\x8d\x37\x21\x31\x93\xef\x1a\x79\x88\x22\xe0\x20\xfd\x41\x2e\xab\x4d\xd4\xa7\xf1\xe8\x4f\x72\x71\x33\x8d\x7c\xec\x21\x97\x88\x43\x05\x80\x8a\x05\x62\x51\xf9\xe0\xe8\xb1\xed\x36\x08\xcb\xa0\xaf\x39\x40\x2a\x21\xf0\x02\x73\x26\xf3\x7d\x13\x43\x50\x68\x02\x97\x49\x50\x33\xc6\xca\x41\xd5\x8b\x98\xa3\x8e\xc5\xe9\x0d\xc3\xc5\x8b\xd7\x39\x3a\xa9\x1c\x1f\xa6\x32\x70\x2c\x23\x79\x52\xcd\xf0\x9c\x64\x1a\x15\x5c\xca\x7d\xe9\x23\x5d\x78\x45\xae\xf0\x42\x87\xa1\x98\xf7\x08\xb9\x8c\xa2\xa5\xfc\xb3\x57\xc0\x86\x8c\x4e\x36\xcf\xe7\xa6\xee\x8d\xac\x7b\x41\x7a\x23\xed\x53\x7a\x9e\x6c\x66\xf8\x16\x42\x6b\x26\xe9\x60\x30\xeb\xac\x08\x21\x57\x51\x14\xaf\xc8\xc3\x0e\xe1\x47\x4f\x63\x14\x2d\x93\xcd\x6c\xba\x4a\xd6\x33\x72\x1b\x45\x2d\x04\xc6\x2d\x9a\xa8\xaf\xbb\x32\xa9\x3c\x74\x32\xb3\xe8\x24\xf0\x5e\xcb\xc9\x0a\xb3\x52\x07\xcf\x9f\x2c\xec\x4d\x52\xee\xe2\x0d\xce\x30\x90\xf3\x12\x34\x1a\x3d\x97\xfe\x68\xf8\x74\xf8\xac\xff\x78\x0f\x25\x90\xbe\x18\xbe\x2f\xf8\x1a\x56\x8a\x93\x87\xdc\x3c\x9f\x2b\x3c\x64\x92\x61\x9b\xf4\x31\x15\xab\x49\xa9\xa5\x04\xf2\xc5\xe4\x59\x86\x70\x79\x9d\x6e\x5a\xb1\x25\x10\xa9\x74\x68\x5c\xc4\xfd\x3e\xe6\x35\xf1\x96\x0b\x1d\xde\xa5\xd6\xed\xbb\xbd\xe1\x0a\xc2\xb5\x2c\x07\x97\x01\xde\x50\xc8\x5b\x44\xee\x90\xb2\x65\x87\x94\x6a\x87\x08\xbd\xe9\x51\x27\x8d\xe7\x38\xc3\x45\x92\xcd\xd4\x96\x5c\x12\xee\x44\x3b\xd9\xac\xb3\x9c\xd2\x78\x8e\x97\xd0\xf6\x24\x57\xec\x79\x86\xe7\x68\xb7\x8b\x25\xc6\x12\xc8\x57\xc5\x54\xf9\x32\xc4\x54\x53\xe8\xca\xe3\x99\x0a\xf2\xa4\x03\x01\xbd\x22\x17\x9e\xe8\xf5\x95\x27\xc2\xe5\x97\x3f\x97\xa1\xcf\x82\x16\x2b\xec\xc0\xbb\x49\x9f\x97\xb7\x1b\xf9\x57\x97\x00\xb7\x19\x64\x37\xc4\xbf\x59\x71\xfd\xe2\xaa\xe0\x82\xdc\x61\x3a\x7c\xab\x8d\xd0\x01\x21\x06\x67\xd8\x74\x78\xc1\xd3\xbc\x64\xb2\x16\x65\x88\xe9\xa7\x28\xc2\x90\x0e\x95\xca\xd4\xc7\x17\x9f\x5e\xbc\x3b\xbf\x3c\xff\xf1\xdd\xcb\x0f\x67\x84\x0e\xeb\xef\xe7\x17\x2f\x2e\x4e\xdd\xab\x69\xcc\x55\x47\x5a\xa5\xd1\xc5\x1e\x97\x33\x76\xfb\x40\xbf\xd4\x9a\xc0\xbc\x1b\xd9\x1c\x44\x6c\xee\xbb\xea\x61\x9c\x74\xa1\xb9\x84\x6b\x5a\x96\xe9\x35\x05\x67\x1b\x2d\x79\x4c\xa5\x1b\x51\x71\xe5\xf0\xf9\x82\xa7\x73\x3a\xdd\x93\x1e\xae\xb8\x72\x92\xc6\xd5\x7f\x8b\x2f\x9c\x9a\x4f\x15\x55\xa7\xfd\x8a\x42\xf7\x59\xce\x95\x08\xa1\xca\x09\x4f\xba\x87\x55\x50\x7e\xbd\x78\xab\xaa\x91\xec\x20\x98\x46\xa5\x9e\x45\xcc\xe1\x8a\x87\x50\x82\x09\x9f\xd5\x83\xcb\x1b\x4c\x8a\x46\x11\xf5\x22\xf6\xf1\x28\xe2\xce\xdb\x15\x4d\xf8\xd1\x18\xee\xbf\xb6\xeb\x37\x8a\x4a\x23\xe4\xea\x7b\x64\x43\x1f\xed\xe2\xdc\xf2\xde\x04\xc9\x7d\x9a\x02\x27\xa9\x29\x33\xc2\x5c\x62\x16\x62\xe6\xe2\xc7\x49\x5c\x3f\x8c\x59\xef\xe1\xc1\x72\x78\xd4\x5e\xf0\x89\x80\x7e\x39\x5f\xf4\xd6\xe5\xa0\xfc\x44\x40\x1e\x66\xe2\x0e\x06\x02\xc4\x1a\x2b\x53\xa2\x04\x75\x16\x2e\xd0\x9a\xb2\x86\x24\x9f\xed\x76\xa1\xec\x13\xbc\x9e\x65\xc5\xb5\x8f\xa0\xff\xbb\x22\x9a\xe8\x80\x7f\x3c\x70\xde\xca\x14\xe6\x52\x00\xe6\xa2\x0e\x7b\xec\x6d\xf6\xee\xff\xe8\x0f\xd8\xa0\x3f\xe9\xf6\x07\x85\xc7\x89\x4b\xa1\x94\xce\x2e\xe9\x93\x20\x82\xbe\x15\xd2\xd4\x45\x89\x74\xbb\xa5\x5d\xe3\x3d\xa2\x58\x76\x15\x0e\xbb\xdd\x36\xa6\xb9\x9e\xf1\x3d\x7c\xdf\x1f\xbc\xbe\xe1\xb1\x2a\x8a\x54\x74\x32\xd8\xa1\x08\x3c\xd1\x9c\xb8\xe2\x1b\xef\x6a\x91\xb8\x7d\x9a\x65\x93\x87\x1d\x56\xa6\x7a\x0b\x08\x2e\x0f\x46\x58\xf2\x71\xd7\xa9\xe2\x7c\x98\x66\x99\x04\x1a\x6a\xc6\x7a\x63\xe5\x78\x4c\x6e\x19\xb9\x89\xf0\x3c\x16\x08\x53\x64\xf7\x2b\x9c\x0d\xef\xa4\x6c\xb7\xca\x53\x7d\xae\x8d\xbb\x16\xe0\x99\x4f\xf6\x0c\xb9\x9a\x04\x62\x4b\xbf\x90\x63\xf5\x73\x15\x55\x43\x71\xb0\xd7\x71\x81\xa2\x68\x1d\xa7\x08\x81\x83\x4c\x35\x66\xa0\xe8\xf5\xba\xe6\xda\xe6\x70\x61\x0e\x27\xa0\xd7\xa1\x57\xcc\x8c\x8c\xf0\xd2\x92\x6c\x27\xd9\xf3\x25\xb0\xbc\x0a\x15\x3c\x24\x4d\xb2\x19\x78\xdc\x69\xab\x48\x7b\xbd\x94\xdd\x92\x33\x9c\xf0\x03\x59\x2d\x66\x3a\xcd\xb5\xab\xc4\x9d\x2f\x3e\xb7\x87\x3d\x3c\x42\xd4\x83\x26\xb7\xde\x76\x52\x0a\x80\x13\x70\x71\xa7\x84\xaa\xfd\xcb\x4b\x75\x65\x5c\x1e\x1d\xff\x79\xfc\xd7\xbf\xfc\x79\x34\x1a\x8d\x9f\x3e\xfb\xd3\x5f\x8f\x47\x47\x4f\x9f\x1e\x1f\xdf\x3d\x95\x17\x58\x70\xab\xdc\x6b\xd1\x67\xff\xd2\xdc\x46\xa6\xec\xf1\xd3\xe3\xbf\xfe\xf5\xf8\x2f\x4f\x47\xc7\xa3\xa7\x47\xc7\x4f\x9f\x1e\x43\xe1\xf0\x8a\xba\xd6\x52\xc7\xfe\xe5\xe5\xdf\x3f\xba\xa2\x4f\xff\x7a\xfc\xd7\xbf\x1c\x3f\xfb\xcb\xb3\x67\x47\x4f\x8f\x75\xc1\xb6\x1b\xef\x0a\x8a\x5f\xee\x8f\x2b\x69\x10\x68\xc5\x19\xf7\x23\x95\x1a\x71\xe5\xd3\xd6\xc8\xb9\x4f\xfd\x60\xcd\x4f\x4d\x1c\x66\x3f\xb4\xa9\x29\xff\xac\xb5\xfc\x33\xbf\xfc\x33\x1b\xc7\xd9\x78\x32\x5c\xf2\x62\xed\xf9\x20\x17\x45\x20\x25\x63\xa5\xbe\x13\xad\xcb\x7c\x56\xbe\x98\x0b\x76\x0b\x3e\x52\x20\xa1\xe2\x99\xb6\x60\xec\x57\x9b\x45\x2a\x68\xdf\xba\x13\x2c\xb2\xdb\x46\x48\x68\x03\xcf\xc1\xd6\xc4\x55\xea\xe1\x01\x3d\xdb\xf6\xab\xb4\x2a\xe9\xe2\xe5\x3d\xf4\x81\xe5\xd7\x7e\xa6\x71\x3d\x93\xf6\xc6\x75\x30\x8f\xa9\xe8\x93\xe2\xf8\xb7\xe4\xbd\xbc\x65\xe0\xc3\xeb\xef\x9e\xf8\x40\x87\xb9\x4e\xee\x67\x84\x6f\xb7\x54\xf1\xc8\x4d\xd0\x08\x41\x73\x61\x98\xe7\x0a\x87\x33\xcc\xf3\x45\x2a\x52\xc5\x7f\x95\x4f\x10\x71\xd3\x9f\x98\xc5\xbb\x62\x41\x33\x57\xfb\xd5\xcc\xc6\xd3\xde\x28\x2b\xad\x60\x25\xc0\x36\xd3\x4f\x49\xae\x5d\x01\x6e\x50\x36\x17\x03\x46\x29\x77\xbd\x97\x58\x90\x5f\xcd\x86\xdd\x16\xc2\x58\xc1\xf9\x1f\x4a\xfa\x4b\x45\xf3\x39\x25\x47\x63\x5c\x04\x9e\xf8\x4d\x6f\x72\x63\x3d\x36\xe4\x54\x22\x1a\x12\xcb\x96\x35\xc4\x5e\xff\x0a\x17\x2d\xe2\xf0\xf2\xf5\xd2\xaf\x58\xbf\x5e\x1a\x45\x71\x7a\x28\xcf\x76\x0b\xb1\x99\x6c\xef\xd1\x6f\x58\x71\x59\x7b\x5f\xcb\x7e\xfa\x50\x8b\xdd\xca\x51\x14\xf7\xd2\x83\x23\xd8\x6e\xdb\xbe\x37\x5a\x41\x46\xdf\x51\xae\x16\x1f\x2a\xba\xcd\xae\x37\x0f\x10\x9c\xfa\x4a\x72\xef\x45\x2b\x97\xf9\x49\x06\xf7\x2a\x0d\x3f\xdf\x5b\x71\x3f\x5f\x52\x1e\x8d\x67\x80\x0e\xa3\x1a\xf9\x5c\x9e\x0c\x06\x95\xa1\x8a\x82\x22\x95\x62\xe1\x67\x43\x56\x6a\xaf\x3b\x0b\xed\x18\xb3\xb9\x89\x32\x55\x70\x17\xee\x22\x6a\x1c\xb1\x9f\xeb\x14\x13\xc5\xc8\xec\x26\x6e\xce\x41\xdc\x94\x5c\x33\x07\x77\xa6\x8d\x5d\xd7\x1b\xe3\xdb\x00\x8f\x49\x55\xce\xee\x51\x57\xe5\xe8\x23\x49\xa5\xb9\x52\xaa\x15\x50\xe6\x01\x22\x6c\xa8\xa4\x77\x2d\x88\x69\xa3\x2d\xa6\x8f\xf4\x50\xd8\xe6\x5e\xb3\x85\xe2\x6a\x50\x0c\xd1\xeb\x6e\xe3\xbe\x9a\x89\x2e\xf4\xb8\x8f\xfc\x68\x33\x6d\x47\x47\x75\x47\x03\x14\xe4\x1d\xe5\x43\x01\xee\xc5\x8a\xee\x8d\x10\xe3\xb7\x04\x19\xf5\xf7\x1d\x16\x6a\xa8\x7b\xd4\x97\xfc\x62\x6a\x4a\xe4\x67\x08\xf9\xae\x02\xb1\x7c\x45\x39\x9d\xd3\x96\x84\xb5\x68\x48\x22\x79\xa1\xe2\x6a\x68\x51\xa4\x92\x42\x6a\x15\x5c\x35\xc1\x3a\x84\x74\xf8\x87\xbc\xf1\x6b\x01\xb1\xbc\xad\x64\x07\xe5\xa5\xe5\x27\x78\xf7\xd4\xc8\x87\xc5\xea\xef\x07\x96\x65\xca\x93\x43\x6c\x7c\xf4\xfa\x9f\x5f\xb3\x45\xf8\x55\x8e\xc4\xf4\xb9\x31\x18\xdb\xd4\x76\x1b\x2f\x83\x31\x04\x27\xa0\x0e\x85\x25\xa6\xed\x76\x51\xf7\x2e\x2d\xcd\xc6\xed\x23\x6c\xaf\x6d\xef\x52\x71\x22\x3c\x3f\x2d\xf6\xde\x86\x1b\x4e\xeb\xe4\xb8\x3f\x38\xb8\xa7\x50\xe3\x22\x1f\xd5\x2f\xf2\x71\x30\x25\x29\xa4\x7a\x80\x52\x2f\x06\x4c\x0a\x5d\x30\x1e\x58\x83\xd3\xc6\x12\x1f\x9c\x7e\xaa\xab\x11\xfc\xbe\x31\xb1\x30\x1d\x56\x5a\xed\xd7\xe2\xe6\x4d\x5e\x01\x72\xe8\xfe\x34\x80\x0c\xdb\x0b\xf3\x60\xa6\xcc\x83\xe6\x26\x6c\x58\x1c\x7e\x80\x10\x0d\x42\x7f\x6b\x63\x14\xd7\x10\x1c\x6a\x77\x47\x59\x0b\x2d\xac\xfa\xdc\xc0\xc8\x46\xad\x18\xd9\x68\x16\x45\x41\x20\xf6\x26\x21\xf8\xed\x78\xea\xc7\x66\x37\x48\x1f\x6f\x66\x3c\xf6\x32\x1e\xdb\x8c\xcd\xa8\x9e\xdf\x3e\x6d\x45\x23\x59\x0b\x1a\xd9\x8a\x2f\xaa\xed\xac\x23\x5a\x39\x8e\x92\x9c\x8c\x46\x7c\x9d\xff\xae\xf9\xe8\x34\xc9\x50\xd0\xed\xa3\x58\xee\x6a\x5f\xa4\xdc\x20\xb4\x73\x8f\xd0\xe6\xdf\x1e\x4f\xf9\xd1\xb1\x24\xb4\x19\x39\x3e\x61\xcf\xb9\x89\xeb\x73\x74\xec\x13\xda\x4c\x47\xa4\xb1\xbb\x12\x86\x0d\x46\x60\x06\x9e\xfb\xf7\xb3\x91\x70\x35\xb0\xe1\xc1\x18\x81\xae\x50\xae\x80\x6d\x91\x65\xc5\xdd\x27\x7d\xb2\xca\x3d\x61\x4d\x54\x9b\x9d\xfd\xb0\xdb\x16\xf3\xb5\xd7\xea\x67\x79\xda\x4c\xaa\xb7\x1f\x87\x97\x27\x5c\x83\x02\xed\xd4\x42\xef\xf7\x88\xe8\xdd\xc7\xb1\x01\x81\xdd\xfe\x20\x00\x89\x83\x3e\xea\xcb\x6a\xb2\xa2\x26\xb0\x3c\x00\x45\x6d\xdc\x02\x5f\xcd\xd3\x99\x27\xc4\xd4\x14\xa3\xae\x4c\xdf\x38\x59\x57\x10\x76\xd8\x57\x4e\xd3\x8b\x40\x8f\xd1\xf6\xbc\xae\x3b\x41\xa3\x28\x60\x50\x5c\x4a\xf0\xe1\x13\x28\xbb\x56\xee\xe5\x65\x47\xe9\x3c\xca\x96\x7e\xa0\xe9\x4d\xe0\x4c\xf7\x3c\xb6\xfc\xa7\xe6\xce\x6e\x3d\x13\xe3\x59\xb8\xe1\x41\x76\xdb\x3c\xfc\xad\x65\x8f\x83\xf3\xe4\xe2\x46\xd3\x30\x4a\x20\xc3\x56\x36\xce\x00\x3f\xc4\x25\x61\x06\x45\xad\xcc\xa3\x0a\xc2\x9e\x11\x66\x2c\x17\xf0\x9c\x68\xb4\x48\xe2\x88\x5f\xc0\x2f\x36\x43\x51\xa4\x6d\x24\x96\x04\xcc\x35\x63\x86\xf0\x8a\x7c\x88\x97\x35\xef\xd2\x8a\x79\xf6\x70\x4d\x45\x77\x4d\x45\x2a\x29\x23\x87\xf7\xbd\x88\xc1\xa0\x85\x2d\x63\xcd\xca\x64\xe5\x1b\x5e\xfc\x4a\xf3\x98\xa3\xed\x96\xd7\xf8\x99\x71\xdf\xd4\xd0\xb7\x4c\xc3\x50\x3d\x18\x0c\xea\xac\xbf\xad\x1d\x18\x72\x98\xab\x22\xf8\x06\x21\x38\xe2\x39\x5e\x22\xec\xcc\x9a\xbe\x80\x6f\x6d\x86\x57\x08\xaf\x00\x37\x5b\x90\x87\x25\xcb\x17\xce\xb8\xd7\x09\xc5\x30\x23\xc9\xac\xf3\xd4\x93\xe1\x43\x44\xd2\xda\x8c\x53\xcf\x1a\x58\xb9\x0f\xdf\x79\xca\xc7\x05\x19\x9d\x18\x46\xd7\xb7\x85\x0a\xb3\xbc\x8c\x73\x3d\x9f\x34\x29\x24\xb6\xa8\x98\x48\x12\xf6\x16\x12\xff\xb4\x3a\xf7\x58\xce\xa8\x5c\x44\x37\x9b\xa9\x4a\x74\xab\xe8\x79\x52\x53\x9f\xda\x56\x40\xaf\x2d\xb2\x85\x25\x74\x33\x0a\x1a\x14\x82\xfd\x9a\x09\xb2\x11\x06\x85\xf2\x07\xae\x3a\x2a\x74\x51\x90\xa0\xf8\x25\x07\x5f\x5b\x32\x2b\xe6\x69\xf6\x5e\x8d\xc5\x03\x81\x72\x74\x46\x43\xc1\xb3\x37\xa0\x89\x73\x9b\x3f\xf3\x86\xec\x0d\xb7\x54\xc9\x1e\xb1\xe5\x39\x32\xdd\xed\x2c\xf2\x10\x45\xf1\x82\x7c\x88\x17\x38\x43\x08\x9b\xe5\x5f\x20\xbc\xd8\xa1\x50\xa3\x37\xdc\xc8\xa9\x10\x9c\x5d\x55\x82\xb6\x57\x5b\xdf\xcb\x14\x6d\xb7\x75\xde\x7c\xdc\x77\x95\xf4\xd1\xf4\xf0\x36\xa6\x72\x1b\x4f\x82\x54\x99\xe4\xba\xf8\xc2\xa7\x69\x00\x23\xa2\x1e\xa0\xa0\x2a\x24\x91\x15\xf3\xbc\xd3\xbb\x60\xba\xef\x83\xbc\x12\xaa\x2c\x83\x33\x70\x73\x88\xc1\x65\x43\xdb\x5c\xc2\x1e\xfa\xd8\xc2\xc6\x50\x5f\x88\xaf\xbf\xed\xf3\x58\x3c\x82\xd3\xe2\xa5\x20\xc9\x11\x5e\xee\xf7\x4a\xb1\xb1\xc6\x73\xc9\x4d\x58\xc0\x0d\x2f\xe6\xb4\x54\x7a\x5d\x71\x8e\x0e\x91\x55\xd7\xe0\xc7\xa1\x16\xd2\xb6\x85\x18\x74\x34\x9b\x81\x82\x48\x61\x81\xca\xd6\xbc\x4d\x7d\xac\xeb\x8d\x0e\xd4\x4f\x01\xef\x85\x8a\xf6\x2a\x8d\x75\x0e\x37\xed\x4f\x2a\x52\x94\x5e\xcb\xad\xcf\x55\xcc\x95\x37\x05\x07\x8c\x5f\x91\x66\xf5\xec\x5e\x6e\x5e\xe5\x2f\xe9\xb2\xe0\x14\x66\xe2\xfb\xa2\xb8\x89\x0f\x17\xa8\x57\xaf\xa2\xcd\x1d\x28\x60\x66\xb9\xad\xde\xdf\xd8\x6f\x1a\x76\xfc\xc5\x52\x50\xee\xf5\x5b\xa2\x0b\x87\x8a\x5c\xd1\x79\xb1\xa6\x66\x87\xe9\xfc\x72\x65\xc2\x0f\x6d\x0b\x64\xd4\x74\xec\x9a\xc7\x02\x75\x6c\x38\xb9\x52\xa4\xe5\xea\x93\xcf\xd8\x53\xf1\x60\xa8\x24\xed\xe5\x0f\xb0\xff\xe4\x43\x62\xf7\xf4\x8c\xe4\x36\x52\x96\x8d\xf0\xaa\x76\xd7\x49\xdc\xd7\x4f\x7d\xa6\x76\xd2\x76\xdb\x93\x97\x6c\xcc\x89\x30\x7a\x13\x1a\x68\xae\x58\x89\xb4\x4a\xed\x45\x13\x91\x82\x7b\xbd\x76\x74\x4c\x00\x73\xc8\xe7\x85\x37\xb0\x10\xa2\x88\x22\x05\xfd\x52\x5c\x20\x9c\xc2\x56\x07\x1d\x0a\x08\x8d\x31\xa7\x0b\xda\x12\xc4\x49\x6b\x4d\x1a\x23\x62\x6a\xc6\x52\x1b\x9a\x43\x46\x64\xd7\x0c\xad\x26\x9f\xb7\xdb\xfa\xa0\xa3\xa8\x67\x22\x0f\xd5\xc1\xe5\x46\x4b\x0c\xa3\xa8\xd7\x08\xae\xd0\xa3\x3d\x62\x95\xd7\x95\xa2\x87\xdf\xbf\x40\xec\x49\x11\xc8\xe5\x6a\xd5\x73\x14\x45\x9e\x14\xc4\x55\x65\x2a\xd9\xc5\xde\xf1\xc6\x54\x3f\xa0\x26\x76\x2b\xbb\x04\xb2\x34\x90\x96\x16\xd7\x4e\xf5\x56\x89\xde\x14\x20\x51\x8c\xf3\x7d\x9a\xa8\x5d\x3a\xbc\x34\x1e\xe2\x81\xbd\x57\x5b\x59\x05\x52\x81\x94\x6d\x1e\xe6\xa6\x16\x9c\x5b\x01\x4d\xc1\xc8\xae\x19\xca\xae\x37\xc2\xfd\x3b\x96\x65\x7a\x2f\x43\x35\x7d\xec\x37\xe4\x13\xf8\xde\xad\xe2\x12\x87\x57\xae\x07\xca\xd4\xaa\xf5\x53\x4c\x11\xc2\xa7\xb1\x50\xe6\x58\x00\x44\x70\x0b\xe0\x43\x7a\x58\xe1\x51\x6f\x3d\xa1\xcc\x44\xdf\x95\x53\x13\x90\x4a\xfb\x8e\x67\x4b\xef\xdb\x87\x94\xda\xd6\x5d\x40\xe8\xfa\x97\x58\x19\x90\x73\x72\x1a\x33\xc2\x91\xc2\x6c\x58\xcb\x98\xf8\x5e\x58\x49\x6b\xc2\x81\xa4\x98\x29\xf8\x14\x80\xc6\x76\xbe\x5c\xb3\x1d\x1a\xa3\xbd\x2d\x89\x9d\x86\xdb\xf2\x6c\x37\x66\xa7\xb1\x81\x6b\x32\x8b\x7a\x82\x82\x6e\xf5\xce\x7b\x90\x4e\x00\xa5\x4b\xc5\x7c\x55\xdb\xe4\x2d\x44\xae\x72\x05\x63\x6d\xf4\x15\xe7\x3a\xb0\x69\x0a\x6e\x78\xc5\x52\x0a\xd2\x5a\x35\x3f\xfd\x0b\xb6\x71\x9d\xb6\x70\x68\xa9\x8d\x4f\x13\x0b\x42\x51\x14\xb5\x69\xd9\xb7\x45\x6a\x81\x29\x9f\x36\xaf\x6c\xd2\x48\x39\x70\x53\x79\x10\x01\xc8\x04\xff\xa4\x6b\x86\xdc\x44\x07\x00\x0f\xb3\x1a\x61\x2c\x8e\x47\x98\xef\x89\x04\x0a\xd5\xec\x8b\x74\x19\x44\xa8\x85\x9c\x53\xef\x59\xa9\xb8\xb8\x95\x8c\xd1\x0e\xbc\x2f\x35\x18\x82\x97\x06\x2a\x99\x28\x9b\xfe\xc0\x0f\x47\xd9\xf4\x73\x4e\x9b\x49\x93\xb8\xd1\x07\xdc\xcc\x75\xb8\x5f\x66\x49\xbc\x28\x9e\x6d\x0a\x50\x37\x75\xd3\x1a\xea\x21\xbd\x22\xf6\xe2\x5c\x68\x33\x50\x43\x5c\xca\x23\xe2\xe9\x24\x41\xbe\x02\xa9\xbb\x0c\x19\x9c\x97\xe1\x10\xdf\x1d\x61\x7b\x4b\x92\x14\x97\x3b\x4b\xa8\xf2\x30\x60\x13\x02\x48\x83\x45\x18\xf8\xad\x05\xb3\x34\xb3\x1a\x45\xa2\x76\x36\x25\xcc\x3d\x74\x5c\x7d\x4c\xb7\x0d\x2a\x83\x32\x1b\x16\xbb\xf8\x06\xe1\x57\x8f\x4e\x8f\x66\x33\x98\xc9\x49\xbf\x66\x72\x1e\x76\x38\x75\x13\x95\xfe\x96\xc9\x68\xc5\xea\x3d\x33\x15\x55\xab\x44\xde\x68\x72\x35\x8b\xa2\xb8\x8a\x85\x93\xbd\xaa\x9b\x1c\x8b\xd0\x82\x2c\xb9\x9a\x19\x6b\x7a\x0f\x77\x32\x06\xc2\x1d\x7b\x6e\x17\xd4\x22\x88\x53\x46\x82\x77\xe8\xe8\x84\x0f\xd7\xfa\x1a\x91\x9f\xd7\xde\xc5\xc1\xa2\xe8\x14\x38\x29\xb1\xa9\xb6\x6d\xea\x99\x9d\xf7\x77\x8f\xcc\xbb\xd6\x32\x31\xb3\x5e\x34\x67\xdd\xce\xb9\xd9\x75\x0c\x17\x0e\xc1\xe5\xa4\xf0\x20\xf2\xb9\x4d\x8e\x39\xc2\xc5\x6e\xdf\x4a\x74\x8c\x1d\x75\x83\xdc\xca\x5b\x16\xc6\x6d\xd2\x96\x5b\x97\x2b\xbc\xa9\x96\x10\x62\x50\x6a\x5a\x58\x7e\x6d\x3c\x13\x2c\xba\x30\xa7\xfd\x50\x8f\xce\xb4\x1c\x28\x0a\xee\x70\xbe\x87\x84\xab\x6f\x16\x85\x36\xf3\x10\x91\xa5\xdb\x6d\x4c\x09\x37\x23\x7e\x00\xc6\xd5\xca\x8b\x11\x97\x27\x22\x19\xcd\x66\x92\x36\xb5\x52\x71\x37\xbb\x81\x8c\xdd\x25\xab\x1e\x2a\x3f\x3f\x58\x05\xbc\x6c\xc5\x52\x3c\x14\xc4\x16\x46\x8d\xeb\xcd\x23\x57\x4c\x6d\x63\xdf\x79\x8d\x35\xfe\xb0\xca\xe3\x4f\x2e\xd9\xe2\x0f\x4f\x86\x82\x96\x22\x66\x68\x9a\x27\x4c\x45\x1a\x9d\xa8\x27\x9c\xef\xf4\xfe\x83\x61\x7f\x6a\x99\xb6\xdf\xcd\xe1\xec\x88\x7d\x4a\x14\x3b\xfc\xf1\x70\xe8\xc1\x16\x05\x88\x5f\x9a\x1a\x1c\x0e\xb6\x1c\x62\x0a\x68\xbe\xfa\x59\x7a\xd5\x0a\x42\xfa\x7d\x93\x75\x11\xd7\xda\xc6\xcd\xab\xbc\xdf\x57\x46\x78\xb1\x18\x90\xfe\xb0\x8f\xb0\x18\x10\x45\xfa\x60\x70\xf6\x77\x1b\xf7\xbf\x01\x17\x1a\xdf\x80\xf2\x13\xfa\x1a\x36\x81\x01\x60\x5f\xd3\x7e\x97\x27\x54\x03\x75\xea\x71\x23\x54\xe3\xa2\xa6\xa4\xd3\x09\xf4\x93\x2c\xb9\xd3\x82\x5a\x7a\xfc\x1b\x6f\xb6\xe2\xfe\xb9\x48\xb9\xf0\xe4\x9c\x7d\x83\x81\x56\x78\x5f\x11\x7d\xff\x29\xfb\x37\x99\xbf\x29\x9e\x57\x43\x67\xfe\x48\x53\x12\x76\xfe\x5b\xab\xfc\x38\xe5\x96\x1d\x38\x09\xf3\xb4\x0d\x07\xe4\x1b\x92\x76\xfe\x39\xa6\xd8\x6f\x21\x49\xb5\x30\x47\x31\x5a\x77\x6d\x5d\xd7\x82\x7f\xe5\x5a\x1d\x79\x32\x0a\x8f\xa3\xda\x8a\x96\x2b\xa7\x43\x5e\x4d\xe0\x1b\xb5\xcb\x96\x5d\x45\x67\x77\x4d\xbc\xd2\xf6\xf9\x30\xd6\x24\x4a\xf1\xb0\x36\x18\xb9\x87\xea\xd5\xeb\x8e\xa6\x46\x43\xc1\x76\xb4\x6c\x9f\xde\x24\x9c\xb8\x99\x87\xa6\x80\x95\xca\xfe\xac\x83\x81\x04\x12\x3d\xcf\x58\x44\x89\x0a\x2c\x00\x00\xb7\x48\x46\x8e\xec\x3f\xc7\x96\x63\x20\x41\xb3\xe1\x61\xc7\xe1\xfe\xa9\x0f\xac\xbe\x79\x76\x9e\x8e\xb3\xe7\xd3\x25\xd8\xe6\x24\x18\xaa\xd9\x35\x6c\x72\x70\x02\xcc\xe2\xa5\x58\xe8\x1e\x95\xed\x3d\xfa\x28\xe9\x10\xba\x90\x7d\xb1\x11\xb7\xeb\x42\xfa\x8f\x70\xd0\x7e\xde\x17\x18\x5c\xa9\x52\x05\xc4\xbd\x66\x7f\xde\xa5\x56\x8c\xcf\x3d\x7b\x6d\x92\xef\x3a\x4d\x5d\xfd\x9f\xa1\x95\xd7\x07\xb1\x04\x7d\x01\xfc\x7e\x6d\xc4\x64\xf6\xfb\x35\x11\x1f\x76\xb8\x6c\x96\xfd\x93\x97\xe9\x4f\x56\xd2\xab\x91\x18\x56\x43\x62\x4a\x87\x36\x36\x75\x21\x8c\x88\x5b\x71\x90\xb9\x5c\x2a\x5f\x71\x29\xc7\x56\xa6\x55\x92\x02\xb3\xe0\xc6\x48\x31\xfb\x5d\x28\x4e\xba\xd9\x64\xf7\x17\x85\xea\x40\x1b\x00\xcf\x62\x0f\xd1\x36\x3e\x3e\x7c\xbc\xa2\x44\x28\x01\xbb\xb3\x40\x8f\xc2\x1a\x76\xf8\x76\xd8\x31\x07\x03\x4d\x46\xf2\x24\x77\x32\x10\x93\x23\x20\x76\x75\xbf\xf4\xd8\xcb\x98\x02\x66\x0e\xba\x13\x12\x0d\xaa\x7d\x6e\xf5\xdc\x02\xd8\x24\x4e\xb5\x81\xd6\x47\x9c\x05\xe8\x90\x95\x77\x23\xb0\xad\x71\x86\x01\x0a\x6e\x7a\x13\x0f\x4a\xf4\x05\x19\x01\x0c\x37\x76\xcc\xcf\xd3\x93\xc1\xa0\x50\xc1\xcf\x0b\x3b\x04\xc3\x3b\xf4\x8b\x87\xbc\x30\xf4\x30\x27\x45\x07\x74\xd3\x76\xaa\x5e\xe1\x82\x28\x17\xdf\x92\xd1\xc9\xd1\x51\x61\x24\x93\xb2\x6a\xbc\x22\xce\x2c\x7f\x61\xe0\x93\x3a\xf4\xc5\x0c\x6f\x80\x13\x25\xfb\xbd\x21\x4b\x65\x43\x66\x95\x17\xa6\xc5\xb7\x64\xae\x08\x52\x45\x57\xc3\x5e\xd1\xdd\x92\x35\xc4\x2b\xac\xcb\xe0\x0c\x1b\x17\x1d\xd7\x54\x78\x59\xde\x14\x5c\x5b\x6c\x69\x33\xa9\xb0\x0c\xe6\xb8\xd0\xe5\xbe\xaa\x09\xb9\x2e\x1b\xb2\xa9\x33\xb6\x01\x32\x6d\x2c\x05\xa7\x2d\xd7\x16\x51\xb4\xb0\xd8\x6b\x7d\x70\xde\x89\xb5\x99\xa2\x68\xe3\x71\x71\xd7\x51\x14\x6f\x0c\x0a\x05\x75\x19\x5a\xc9\xe5\x5a\x6b\xe7\x5f\x8b\x93\x58\x4e\xd6\x76\xbb\xa9\x73\x8e\xe3\x05\xb8\x36\x9a\x93\x77\xa9\x58\x0d\xd7\x2c\x8f\x0b\x3c\x47\xf8\x96\x6c\x10\xce\xa3\xa8\xc7\xa2\x28\xbe\x25\xb7\xad\x23\xba\xb5\x23\x42\xd8\xc7\x7b\x86\x55\x5e\xae\xd8\x52\xc4\xb7\x10\xa1\x3d\x73\xc1\xd7\x1b\xa6\x88\xef\x0a\x4e\xbb\xba\x16\xed\x9d\xad\xec\xde\x51\x4e\xad\x33\xc6\x55\x0a\x5e\x1a\x39\xed\xa6\x9c\x76\x17\x6a\xb1\xba\xc6\x00\xbf\xbb\x2c\x38\xf8\x72\x53\xdc\x90\x6e\x7f\xe0\xf8\xe7\xb9\xe6\x55\xb3\xfc\x36\xcd\xd8\x22\x15\xf4\x95\xb6\x22\x8b\x03\x2c\x6d\x8e\x70\x15\x97\x4d\xdd\x4f\x2f\x41\xe2\x68\x08\x97\xf2\x68\x36\x6b\x7b\xc4\xa5\x9a\x17\xdc\x7b\x30\xe0\xca\xf0\x24\xe1\xfe\x1d\x6e\xd0\x7e\xb0\x3f\x28\x8c\xf4\x3f\x75\xd2\xff\xd2\x5c\x91\x35\x3d\x80\x0e\x58\x05\xc9\xe9\x7c\x15\x88\x1a\x0a\x5c\x49\xc0\x00\xf1\xe8\xf3\xc7\x76\x7c\x0b\x70\x71\x2c\x02\x08\xb5\xed\x62\xe7\x03\x45\x95\x12\x9e\x38\xa4\x6e\x86\x02\x32\x67\xcf\x31\x31\x37\x6a\x47\x87\x88\x57\x06\x2e\x6c\x19\x03\xfe\x01\x17\x02\x21\xd4\xf9\xf9\x01\x8f\x15\x0a\xc3\xab\xdf\x23\xa1\x33\xa0\x92\xec\xc9\x16\x02\x92\x4e\x4a\x4a\x30\x73\x52\x5b\xcd\x06\x06\xa7\x77\xdd\x77\xc1\xd4\xc9\x8e\xa6\x00\x83\xdb\x47\xd2\x82\x24\x38\xc7\x10\x0f\x3b\xec\x00\x1e\x4e\x49\x32\x3b\x29\x8e\x8e\x4e\x8c\xa7\xce\x3c\x8a\x28\xb8\xf5\x93\xe3\x95\xe3\xf6\x08\x80\x2a\x9c\x54\x09\xcd\x65\xb7\x57\x71\x85\xa6\x2c\xc9\x94\x19\x93\x9a\xbb\x49\x43\xfc\x92\xe9\x3c\x65\x92\xcd\x26\xa9\xb2\xb7\xce\xe0\xec\xa5\x07\xce\xde\x8f\x45\xd5\x5d\xb0\x45\xfe\x8d\x73\x23\x48\xf3\xa2\xba\x5e\x75\x95\x1a\xd7\x13\x70\x84\xce\xe6\x4a\x7e\x4f\x05\xe5\x65\x57\x14\xdd\x32\x15\xac\x5c\xde\x77\xd3\x2c\xeb\x16\x4b\x38\x7c\xad\xa7\x52\x39\xd0\xe8\x0f\xe8\xa0\x3f\xec\xbe\x63\x65\x09\x5c\x01\x65\x29\xdb\xed\x0f\x52\x77\x4e\x1b\xfb\x57\x4e\xad\x66\xac\x7c\x42\xf8\xfd\xbf\x66\x73\xf8\x39\xb7\xb7\xf5\xe2\xf3\xa7\xb3\x53\x15\x78\x09\x32\xf8\x66\x87\xb5\x6c\xff\xef\x36\x3a\x7c\xfb\x35\x58\xe4\x3e\x24\xcd\xf1\x99\x2a\x9e\x29\x3c\x6c\x3f\xb2\xf6\x5b\x18\x7d\x7b\x90\x2d\xcb\xf3\xd7\x5a\x7e\x1f\x31\xdb\x87\x4c\xd9\x47\xab\x19\xaa\x0d\xd9\xbd\xdd\xfb\xde\xfb\xa6\x24\xaf\xbd\xb1\xc4\x5d\x74\x62\xcd\x6f\xab\x84\xb6\xa0\x31\x96\xa7\x10\xe4\x8d\x5d\x65\xf4\xe5\xfd\xe7\x4f\x67\x41\x8d\xa9\x17\x53\x5e\x1e\x67\x41\x46\x98\x5b\x67\x1a\x27\xe2\x39\x3f\x19\x0c\x84\xd1\xcd\x67\x89\x50\x36\xed\x06\x6f\x59\x92\x24\xd4\x45\x0c\xf0\x43\x2d\x18\x99\xcb\x7b\x76\xf9\x35\x68\xe4\x1c\x25\x42\x99\x08\x94\x6a\x88\xab\x16\x18\x3f\xc7\x4b\x9c\xd9\x2b\x7f\x41\x56\x9a\xb2\x5b\x4c\xcb\x78\x81\x26\xab\x50\xd6\xb1\x6a\x11\x74\x94\xc6\x57\x41\x00\x2b\xc5\xac\x53\x6c\xb7\xab\x06\x9e\xb0\x41\xd3\x58\x53\xb8\x41\x6e\xb2\x42\x93\x7a\xd2\xc6\xec\xf8\x2a\x0e\x8d\x46\x03\xa4\x1e\xbc\xd2\xc0\x11\x77\x6b\x76\x66\xa5\xc6\xd4\xd9\xdb\x59\xf6\x98\x95\xfb\xee\x37\x47\x84\x3b\x56\x5f\xb1\xfb\xc5\xc5\xb6\xbd\x37\x9e\x94\x3a\x8a\x9c\x94\x7a\xd4\xd1\x49\x62\xbb\x0d\x3e\x8c\x35\xd7\x39\x74\x8b\x83\xf3\x20\x41\x71\xf6\xb8\x1b\x41\xbe\x77\x04\x8c\x8c\x70\xe1\x2c\x57\xd9\xf3\xe2\x64\x30\x60\xc8\xda\x7e\x2a\xdf\x39\x34\x49\xd5\x68\x52\x37\x9a\x9d\x1d\xcd\x2d\xb8\xab\xdf\xa3\x08\x64\xe4\x2c\x59\x5a\x8a\x16\x2b\x2a\x4d\xb1\xfa\x3a\x41\x45\xb6\x38\x6f\x24\xee\x51\x43\xd7\x7e\x22\x75\x98\x54\xc7\xf5\x0b\x74\x8c\xb4\xc1\xa2\xdf\x7a\x4b\x69\x63\x99\x62\x8c\xd3\xb2\xe2\xda\x12\xdd\xf6\x9c\x28\xf7\x04\x36\x42\x88\xfe\x5a\x52\x11\x2b\xc5\x22\xde\xc6\x43\xe4\x35\x67\x07\x86\x49\xe9\x4e\xdf\x3a\xdd\xc4\x14\xef\xc5\xe3\xec\xbd\x8c\x73\xd2\x1b\x9d\xf0\x6f\xc9\x28\x8a\xf2\x93\xa3\x23\x67\x43\x68\x50\x37\x43\xec\x51\xe5\xac\x1c\x3f\xa4\xe5\xa4\xd8\xc9\x0d\xa2\x5c\xb7\x30\xf0\x8f\xb6\xdd\xf6\x83\x17\xe5\xb9\xc6\xf7\xd0\x73\xf4\x67\xb4\xdb\xa1\x1d\xe6\x87\x7c\x62\x75\xeb\xe3\xb0\xc0\x86\x42\x51\xef\xb0\x79\x2b\xd7\xc4\x60\x1c\x9f\xd1\xd9\x21\x32\xee\x19\xdd\x39\x93\x8c\x5c\x02\xfd\x9e\xd0\x0c\xef\xfa\xae\x08\x50\xc1\xfa\x47\x0d\xad\xe5\x0a\x5e\xaa\xbb\xa8\xdd\xbc\xa4\x68\xda\x25\x8e\xc2\xc1\x68\x5b\x13\x96\x03\x2b\xdd\x75\xd3\xf4\xd1\xc7\xee\x43\x00\x54\x20\x5c\x24\x57\xb3\x9a\x2d\x3b\x54\x27\x8a\x4f\x3a\xd0\x16\x14\x8c\x0b\x9c\xfb\x62\x5e\xcf\x6a\x42\x56\x62\x6d\x89\x8a\xd0\xd6\xa7\x65\x91\xd8\xf0\x52\xc9\x84\x3f\x7f\x3a\x8b\x0b\x70\x49\x39\x5c\xb0\x85\x9b\x98\x98\x35\x4f\x90\xcc\x24\x0a\xdb\x13\x7f\x44\xbd\x11\x32\xac\x51\xb7\x2e\x05\x18\x4f\x28\xb2\x2c\x30\xc7\x9a\x17\xeb\x4d\x46\x81\x1b\x87\x0b\xb9\x29\x9a\xd6\x1b\x75\x9f\xec\xfc\x3e\xd8\x5f\xd7\x54\x5c\x34\x2d\x3e\x40\x1f\xcc\x3a\x5e\xf4\x50\x39\xbd\xb6\xd4\xac\xae\x31\x26\x42\x3b\xd9\xfa\x01\x77\x50\xb0\x33\xde\x1a\x3c\xca\x88\x77\x8c\xab\xb2\xf7\xf4\x0e\xa0\x92\x06\xae\xda\xe9\xb7\x15\xdb\x70\xcd\x05\x3a\x8f\x7d\xcb\xb9\x70\xdb\x38\x8c\xd3\xe7\xcf\x04\xbd\x7a\x91\x2f\x20\x56\xde\xbf\xb7\x73\x0d\xa6\x70\xff\xf3\xa7\x33\x85\x1a\x83\xe5\x51\x5e\x88\xae\xc3\x3e\xfb\x46\x0d\xcd\x9b\x4d\xe1\xa6\xb1\x63\xb7\x55\x5d\x97\x44\xa9\x6e\xd4\x66\x80\x25\x57\x33\xb9\x65\xda\xf5\x73\x01\x4c\xd4\x47\x11\x82\x4a\xb7\x1b\x42\x0c\x2f\x76\xd7\x07\xb0\xad\xe6\xda\x2d\xae\xaf\xb8\xb0\x53\xd5\xb7\xec\x9f\x03\x3a\x7d\x98\x11\xed\xec\xaf\x0e\x41\x24\x84\x9d\xb6\x7e\x49\xee\x67\x13\xaf\x3f\x29\xa9\xf5\xb5\xc0\x02\xe1\x92\x6c\xe2\x00\xb8\xe0\x34\xdc\x1e\x6c\x19\x9f\xc5\xa9\x3f\x7b\x85\xf7\x82\x00\x4f\x28\x8d\x3b\xb1\x3a\x8f\xc0\x3b\xcf\xa5\x56\x42\x30\x73\x5e\xb5\x41\x34\xeb\x30\xad\x75\x40\xdb\xed\x5e\x38\x29\xe9\x3a\x8b\x8b\x3e\x0a\x4d\x5b\x61\x5b\x86\x53\x64\x2c\x3b\x44\xb5\x79\xa5\x79\x86\x71\xba\x07\xe2\x65\xa8\x1d\x0b\xb0\x3e\xdf\x48\x70\xf2\x53\x7c\x08\x75\x40\xb8\xa1\x22\xf8\xaf\x20\x7b\x96\xa1\x62\x14\x18\xcd\x73\xa8\x71\xf8\x46\x65\x32\x26\xbf\xee\x19\xb5\x60\x54\x07\x36\x41\x14\xc5\xbc\x65\x39\x51\xfb\x25\xc2\xed\x44\xd7\x67\x61\xcf\x0d\xea\xe4\x2f\x7c\x4f\x41\xc2\x31\xf7\xcc\x76\x1f\xbb\x7d\x72\x7b\x4f\x7a\x1b\x94\x83\x21\x8f\xb9\x2d\xce\xa9\x10\x19\xf5\xcd\x21\x75\xa5\xdd\xbb\x15\xcd\xfd\x74\x56\x76\x4d\x6d\x0b\x79\xa1\x30\xcd\x62\x53\xe1\xc1\x4f\xbf\x30\x08\x56\x64\xb9\xda\x29\x36\x83\xd8\x87\x4e\xa4\x10\x6f\x43\x42\x89\x45\xd1\x8a\xa2\x38\x85\xb1\xdf\x29\xc7\x06\x07\xdf\xbf\xd3\x52\x07\xdc\xcc\xf9\x5c\x99\x42\xab\x15\xd8\xb2\x2c\x8a\x58\x43\x19\x36\xf0\xa1\x13\x45\xb1\xc4\xef\x81\x73\x13\x52\x3f\xd6\xea\xc2\xda\x5c\xe1\xfe\x67\x89\x28\xb0\xfc\x5a\x19\x47\x74\x8d\x5a\xad\xf6\x70\xe8\x20\x9c\x6f\x8b\xae\xee\xa6\xd7\xaa\x86\x34\x49\x3d\xd1\x03\x30\x12\xf5\x59\x4c\x66\x58\x3b\x96\xa9\x39\x11\x1c\xa1\x69\x6c\xda\x7f\x21\x04\x5d\x6f\xa0\x07\xf2\x8a\xf2\x96\x5e\x14\x20\x10\xc7\xb5\x9b\x10\x4d\xda\xca\xee\x2d\xf7\xba\x81\x1c\x14\xa8\x06\xaa\x5a\x8c\x4b\xc1\x34\x8f\xb7\x6c\xe4\x16\xcc\x65\x8f\x0d\x9a\xe1\xb5\x02\xdb\x0a\x54\x52\xca\x6e\x91\x77\x17\x10\x5e\x0b\x02\x97\x29\x86\xd5\x89\xd9\xe0\xe1\x30\x5c\xf0\x0e\xe1\x4f\x7d\xa8\x33\xe2\x43\x52\x60\x8e\x50\xcf\x70\x3e\x6e\x5d\x3c\xd2\x4e\x3f\x35\xc5\xc8\x77\x31\x45\x72\xb2\x15\x45\xe5\xf0\x49\xa5\xd6\xde\xb4\x1e\x3e\x48\xaf\x35\x4c\x25\x5b\x7a\xd0\x1b\xe1\x7e\x80\xa5\xf6\x71\xa2\xed\xe3\x6b\xd8\x6b\x7b\x05\x16\x20\x2a\x40\x48\xb1\xa8\xe3\xb0\xee\xa6\x71\xf0\x80\x22\xac\xb7\x93\xbf\x78\x17\x9f\x5e\xbc\x3f\x7f\x7b\xf1\xf6\xc3\xfb\xee\xab\x0f\xef\x3e\x9e\x9d\x5e\x9c\x0e\xfb\x08\x07\x67\xd3\xd8\x49\x29\x34\x24\x55\x34\x7d\x9c\xfa\xa6\x83\x05\x72\x9c\xf6\xc0\x36\xb4\x13\x2a\x5c\xeb\xd8\xec\x29\xa6\x9e\xf3\x78\xd7\x04\xa6\xc6\x36\x7a\xa7\x78\x48\x29\xa0\x39\xc1\xfa\xb7\xa3\x37\x4e\x25\x7a\x93\x72\x01\xb3\x07\x13\x56\xfa\xb8\x94\xf6\x0b\xa1\x6e\xbb\x62\x48\xbf\x30\x41\x17\xfe\xa5\xc7\x07\x03\xa4\xe2\x7a\xc5\xcc\x66\x90\xf7\x99\xea\x9e\x15\xdb\xfb\x40\xca\x83\x58\x4e\x60\xf7\x49\x12\xce\x12\x80\x85\x29\x72\x0e\x7c\x65\x6c\x06\x4d\xc8\x7c\xf2\x3f\x16\x28\x00\x47\x96\x5b\xe0\x86\xd0\xf1\x18\x0b\xd4\xe7\xd2\x37\xf9\x04\xc5\xb0\xca\x35\x7b\xc0\xfa\xff\x83\x53\xec\xcd\x00\xd0\xf7\xf5\x09\xb0\xbd\x83\x39\x80\x2c\x6e\x0a\x3c\xe0\xfe\x35\xc3\x1d\x63\x11\xce\xb9\x3a\x5e\x0b\xbd\x98\xf5\xa6\xdd\xbe\xd5\x51\xa3\x3e\xf0\xcf\xaa\x40\x2c\x71\x85\xb0\x70\xc2\x67\xb8\xd9\x00\x55\x05\x7f\x63\xcd\xba\x14\x54\x39\x72\xe4\x57\x85\x1e\xd4\x3e\xf4\xa6\x3d\xdd\xc7\x98\x09\x10\x9b\x6a\xe7\x01\xa5\xaf\xa7\xaf\xe5\xe1\x0c\xc8\x67\x0d\x9d\x5b\xaf\xf8\x3a\x88\x36\x26\x3a\x6d\x5c\x21\xa1\xbc\x7f\x35\x40\x14\x0d\x41\x47\xe0\xa5\xce\x36\xd4\xc7\x89\x30\xbe\xb1\xb0\xae\xc9\x78\x01\x33\x80\x6b\x3f\x2b\x0a\x86\xd0\x3a\xf5\xfb\xf9\x25\x5a\x26\x97\x12\xe1\xc4\xb8\x8e\xf9\xcc\x00\x04\xf1\x60\x2f\xc2\x0a\xc2\x49\x92\x0f\x71\x0e\x32\xd6\xdc\xdd\x12\x1e\x53\xba\x50\x9a\x3d\x4e\x01\xd9\xab\x46\x27\xda\xa1\xcb\x1a\xeb\x69\x71\x70\x82\x01\x38\xc9\x6c\xf0\x10\xa7\xf8\x70\xd3\x4e\x60\x51\x95\x92\xa6\xb3\x72\x00\x67\x2a\xca\xa6\xa2\xa6\x4e\xdf\xca\x62\x9e\xc8\x89\xc0\xbd\x91\x9c\xde\x1a\xd0\x3b\x00\x23\x69\x43\xb7\xcc\xbd\x96\xe4\x21\x3c\x62\x12\xc5\x53\x40\x10\x9e\xd4\xf2\xc9\x47\x0b\x5a\xe4\x0b\x80\x88\x49\x32\xdb\xe1\xca\xb8\x95\x53\x5e\x03\xd3\xd6\xc0\x2f\x19\x29\x92\x7c\x86\xe7\x24\x4d\xf2\x59\x27\x8b\x22\xed\x57\x87\x10\x32\x57\x4f\xdb\x6d\xcc\x01\xf1\xe7\xd3\xb8\xb4\x27\x1a\x26\x6c\x8e\x70\x16\x45\xa5\x81\xdd\x46\x1c\x9e\x21\x34\xa9\xb6\xdb\xcc\xac\x55\x4f\xd6\xa5\x9f\xa7\x71\xa5\x34\xce\x6b\xb0\x47\xd7\x87\x26\xa5\x07\x29\x8d\x80\x4f\x0d\xc2\x0c\x00\x33\xe7\x66\xce\x8c\xa5\xd1\x07\x39\x2a\x8b\x70\x69\xde\x29\x69\xb4\xaa\x41\x31\xd6\x19\x86\x9c\xde\x52\x5e\x42\x8a\x5c\x48\x87\x7f\xb4\xea\xd4\x50\xe7\xa3\x03\xf8\xe0\x7e\x98\xc1\x60\x29\xeb\x9a\x32\x80\xae\x16\xa0\x6b\x4e\x5c\xfa\x49\xaa\xf4\x46\x6c\xc4\xc3\x3c\x49\x67\x9d\x2a\x2e\xb0\x53\x0f\x37\xfa\xb5\x0d\x31\x0f\xd8\x07\x29\xd3\x1a\xd5\x95\x22\x54\x24\x6f\xf3\x30\xb6\xdd\x06\xda\xe6\xda\xb3\x77\x9d\xd7\x6a\xb8\x26\x60\xb8\x8f\xe7\x84\x1e\x72\x8c\x85\x97\xc4\xf7\x6d\xc5\xa3\xa8\x47\x0f\x3a\xb4\xc2\x2b\x42\xeb\x64\x66\xe8\x1f\x8b\xe3\x45\xbd\xce\xb6\x2a\x1b\x3e\xb0\x3a\xf3\xed\x76\xb9\xdd\xae\xb6\xdb\xc5\x54\x8f\x09\x72\x48\x6c\x32\xd3\xe2\x4b\x87\x5f\x66\xa0\x44\xc0\xf7\x5e\x06\x0d\x2f\x48\x76\xa9\x95\xa7\x45\x51\xa7\x8e\x72\xa4\x3c\xe9\x10\x02\x3e\xee\xa3\x48\x87\x28\x95\x2f\x9a\xef\x65\x84\x69\xe1\x1d\x00\x80\x7f\x5f\x37\x24\xf0\xc7\x0c\xf3\x99\x0a\xa8\xc1\xf7\x38\x8e\xf3\xad\xfb\x61\x97\x8d\x40\xb7\xc2\x84\x0f\x03\x17\x5c\xd6\x5f\x3c\x93\xdb\xac\x48\xaa\xe1\x0d\xbd\x9f\x91\x4a\xc7\xc6\xe3\xda\xe1\x65\x35\xd4\x2d\xec\x6b\xae\x56\xd0\xea\x50\x2a\x26\x6c\xc8\x27\xd8\xaf\x5b\xdc\xa4\xf6\x56\xda\xcd\x92\xc1\xab\xf9\x41\x4c\xdb\x5c\x7c\x75\xf1\x4f\xb0\xc3\x61\x81\x4d\x95\x35\x0f\x11\x3e\xb5\x4b\xa3\xc8\xd7\x06\xb1\x1c\x57\x5c\x37\x89\x6f\x6d\x13\x01\x1b\x92\x6a\x17\x87\xfe\xc1\x57\x31\x1c\x77\x6a\x62\xda\x3a\xa1\x5a\xfa\xbd\xfe\x36\x1e\x19\x02\x6b\x1d\x02\x98\x98\xe0\x5c\x76\x58\x14\x24\xa0\x03\xbc\xee\xb6\x33\x3e\xf6\xdf\x6c\x78\x1f\x11\x5f\x03\xe5\x9c\x8c\x94\x73\xd5\x98\x91\x54\x22\x7c\x71\x78\x29\x26\x7c\x86\xe4\x75\xae\x35\x67\x0a\xc5\xf0\x02\x24\xb2\xf0\xb5\x83\x9b\xe7\x28\xc5\xc6\xa6\x34\x20\xed\xc4\x6c\x0f\xeb\xcf\x78\xe8\x0a\x4b\xc4\x29\x0e\xee\x68\x85\x02\xaa\xdb\xa4\xee\x48\x0a\xc6\x1a\x45\x8b\x76\x0a\xd8\xdc\x35\xde\x1d\xd3\x64\xbe\x1b\xb5\xe5\x86\x71\x8a\x6f\x1e\xaa\xc9\x14\xf5\x1f\x23\xad\x53\xbf\x57\xa2\xa9\x55\x75\x41\x21\xe1\xa0\x14\x53\x09\xe1\xe4\xca\x86\x17\x9e\xb5\x29\x38\x10\x15\x42\xd3\xcb\x1e\x6f\x2b\xa6\xc8\x78\xbf\xd2\x16\x9f\xbe\x48\xe6\xa2\xd8\x13\x3b\xe4\xdf\xe5\x9a\x78\x9f\x97\x9d\x69\xac\x43\x7b\xb5\xf6\xd9\x72\x6b\x7a\x63\xa4\xaf\x88\x70\x4c\xe0\xdf\x8e\x83\x07\x30\xbe\xa6\x0b\x96\x0a\xef\xc6\xf9\x6f\x1a\x54\xb7\xb5\x5f\x2a\x6c\xa8\xdc\x9b\x4b\x4e\xcb\xbd\xb1\xd6\x1a\xa2\x06\x4e\xc4\x54\xd4\xc4\x0a\x79\xcd\x09\xa4\x65\xe0\xc1\x8a\xe7\xc9\xc8\xb2\x08\x0c\x4f\x0c\x0c\x30\x58\x7e\xdd\x4d\xbb\xba\x03\x81\x35\x86\x11\xf4\xb4\x61\x41\x1e\xbb\x8c\x61\x8a\x8d\x1d\x4d\x0b\x09\xb3\xdd\x86\x62\x2e\x03\x64\x5a\x58\x69\x85\xef\x9d\x4d\x84\x08\x85\xf0\x5d\xb4\xa5\xd6\x45\x9b\xef\x9f\x2d\x55\x33\x09\x45\x7e\x60\x62\xb5\x57\x26\xbd\x67\xc7\xdb\xe6\x02\xb9\xd3\x7f\xf1\xee\x70\xaa\x16\x19\xd8\xca\x11\x96\x40\xd4\x33\x96\x8c\x67\x5a\x7b\xba\xce\x96\x2c\xd0\x21\x51\x17\x9e\x4b\xe4\x61\x49\x46\x78\x45\xca\xa6\xed\xc2\xc9\xf2\xf9\xea\x64\x30\x58\xa2\x87\x2a\x9e\x07\x8a\xb1\xc9\x72\xe6\x59\x80\xb9\x00\x92\xf3\x9a\xae\xfb\x5e\x54\x93\xe2\x39\xcc\x1c\x74\x6e\xbf\x20\xad\x75\x4c\xc2\x86\xb6\xf9\x4a\x51\x44\x72\x3f\xd3\xec\x7d\xc5\xd5\xb1\xda\x14\xc1\xd4\xe4\x4a\x67\x9d\x5b\x16\x64\x4b\xb7\x42\xd3\x86\xdc\xaf\x15\xc2\x19\x79\x67\x0a\x22\x99\x37\x44\x40\x0a\xef\x6f\xe1\x6d\x37\xd1\x72\x5f\x91\xaa\x44\x10\x00\x56\x6e\x00\x46\x32\x1b\xbc\xee\x39\x8b\xa2\x34\x99\x5b\x89\x11\x3d\x19\x0c\xe6\xe8\x84\x2d\xe3\x39\x21\x36\x5f\xd8\xfa\x52\xdd\x14\x9d\xa5\xcf\xbc\x4d\xad\x53\xb9\xf9\xc0\x04\xdd\xf1\x12\xb4\xee\xd6\x59\xec\x2d\x47\xe9\x96\xa3\x61\x04\xb0\xc4\x19\x2e\x75\x50\xe4\xc0\x8c\xcc\xc7\xe7\x54\xec\xb2\xed\xb6\x67\x3a\xd8\x55\x01\x07\x17\xe4\x61\xd7\xa9\xe2\x05\xe6\x46\xbf\x3c\xa0\x74\xec\x29\xb8\x95\x78\xf9\x1a\xad\xeb\x78\xf9\x2d\x8a\xa2\x45\x5b\x62\xbc\x48\x6e\x67\x64\x9d\xdc\x3a\xba\x71\x15\x45\xbd\x0d\x34\xe5\x2f\xfc\x7f\xf1\x31\x76\x47\x38\x80\xf7\xe1\xb6\x8b\x29\x86\xd3\x0d\xb1\xaa\xd4\xd5\x5a\x73\x86\xf8\x5f\xd2\xb7\xaf\xe7\xaa\x8f\xb1\xba\x2b\xb5\x29\x92\x09\xb1\xf1\xab\x8e\x3a\x02\xd1\x43\xfc\x80\x23\x79\xb1\xa0\x47\xeb\x62\x51\x65\xb4\x16\x6b\xa4\x1e\x51\xa4\x16\x4d\xc4\x72\xa2\x02\x34\xea\x52\x4b\xf6\x5e\xa5\xca\x3f\xa8\x13\x61\x6c\xb7\x71\x6b\x06\x88\xa2\x23\x76\x74\x98\x96\xe9\x86\xfc\x1d\xd3\x61\x9a\x65\xe4\x93\xfa\x57\x92\xc3\x05\xf9\x59\x62\x83\xe9\x9c\x92\xd7\x18\x9c\xb7\xac\xc8\x5b\xfd\x60\x72\xbc\x01\x7f\x14\xc0\x63\x22\xbf\x62\x18\x38\xe5\xe4\x7b\x78\x92\x63\x64\xcb\x7b\xf2\x0a\x83\xb2\xeb\x92\x5d\x57\x9c\x12\x89\x61\x16\x39\xd9\x50\xf9\xbf\x5c\x92\x35\x75\x2e\x2d\xc8\x0f\xd8\x48\x46\xc8\x2f\x58\x05\xb3\xf9\x8c\xe9\x70\xc9\x32\x41\x39\xf9\x4e\xf6\xae\xbc\xcf\x25\x51\x0e\xcb\x71\x01\x7e\x5f\x09\x1d\x5a\x47\x03\xc3\x79\x5a\x8a\xf6\x18\x27\x8c\x3c\xac\xd9\x17\x96\x4f\x5a\x5d\xbf\x14\x1a\x88\x16\xb9\xee\x97\x7a\x5b\x2e\xb1\x15\x22\x10\x7f\x3b\xe0\xb6\x39\xd5\x30\x80\xee\x70\xe1\x37\x63\x82\xdc\x5b\x2f\x16\x36\xcc\xbd\x1f\xbd\xf1\xe2\x7e\x43\xb5\x0a\xb7\xa9\x51\x05\x83\xbf\xa2\xdd\xb4\x6b\xcb\x1a\x81\x55\xae\x7d\x12\x31\xc2\x21\x16\x24\x84\x48\x90\x8f\x24\x99\x21\x7c\xa4\xa2\xc6\x99\xc8\x69\x02\xa8\x0a\xcd\xf5\xdb\xe1\x62\xb9\x9c\xb4\xde\x2f\xaa\xce\x8e\xd3\x44\x50\x55\x82\x0a\x9c\xab\xcb\x86\x6c\x63\x3a\xd0\x6a\x5c\xe0\xb1\x76\xc8\xac\x7b\xb0\xc3\x7a\x9e\x26\xf5\xdd\xac\x51\x23\xd5\x92\x8e\x62\xc9\x90\xef\x9d\xaf\x16\x78\x31\x1e\x61\x96\x14\x33\x04\x7e\x00\x77\xbb\x4e\xb8\xf6\x4c\xab\x9f\x3d\x30\xd0\xa6\x86\x90\x48\xbd\xf1\xce\x37\x12\x35\xf3\x7f\xec\x93\x93\xe1\x6d\xd0\x2d\x64\x4f\xe4\x0f\x11\x3b\x36\x84\x7d\x12\x17\x48\x5f\x50\xc9\xac\x16\xd4\x45\x8e\x43\x4e\xb0\x8e\x14\x0c\x81\xbd\x27\x14\x6f\xd2\xfb\xac\x48\x17\x13\xf0\xc4\x21\x86\x97\xd7\x15\x5b\xfc\x8d\xde\x63\xb6\x90\x6f\x6c\x81\xa9\xec\xf8\x7b\x95\x79\x41\x45\xca\x32\xf9\x81\xd3\xb2\xca\x04\x06\x4f\x7e\x6f\x17\x13\x2e\x49\x59\x99\x3b\x93\xf0\x40\x66\x80\x07\x2c\xd8\x9a\x9e\x8b\x74\xbd\x99\xbc\x96\xa4\x56\x5e\xdc\xc5\x08\x83\x4c\x6b\x52\x24\x7d\x37\xfc\xa3\x3b\x26\x56\x47\xa0\xa1\xde\x9f\x4d\x9d\x61\x80\xa9\x48\xbb\x99\xdb\xa1\x28\x2a\xa9\xb8\x60\x6b\x5a\x54\xc2\xd7\x37\x32\x6b\x41\xc9\xe8\x84\xba\xd8\x4e\xd4\xf0\x50\x05\x81\x88\x9b\x9c\x88\xa1\x1e\x71\x87\x0f\xe5\x58\x09\x1f\xde\xd0\xfb\x01\x1f\xb2\x05\xd6\xb1\x9d\xbe\xf3\x93\xf5\x08\x31\x57\xb6\x97\xc0\x61\x31\x1a\xf5\x90\xa2\xde\x10\x2e\xac\xdc\x4e\x68\x07\x4c\xa6\x25\xb4\x73\x11\x88\x77\xf8\x4f\xa3\x30\x6c\x8e\x51\x3b\x69\xf1\x22\x03\xda\xe2\xbe\xca\xbd\xb2\x79\x33\xeb\x4f\x3b\x0e\xc3\x92\xe9\xf1\x1c\x0b\x7b\x21\xad\x41\xb1\x02\x73\x3f\xf2\x0d\x7a\xd8\x29\xfc\x41\x9f\xf9\x15\x19\xe3\x05\x39\x76\x1b\x65\xe3\xe2\xe4\x87\xcd\x06\xdd\x88\x22\x99\x74\x5a\xeb\x9c\x85\x87\x84\x64\xd3\x9a\xa0\x65\x78\xa9\x28\x5c\x42\x56\x53\xf0\x08\x6e\x36\x10\x9a\x78\xdf\x16\x53\xb9\xde\xc6\x46\x15\x34\x42\xae\x83\xcc\x68\x72\x15\x1b\x59\xa2\xbb\x71\x20\xd6\x32\x21\x1c\x6a\xe6\x68\xb2\xd6\x24\x60\x8b\x27\x89\x6b\xed\x3a\x6e\x07\xff\x93\x16\x17\x3d\x7c\x5a\x3f\xfb\x85\x02\xdf\x0d\xab\x73\x08\x0c\xc1\xda\x0c\x75\xf9\xfd\x03\xb5\x11\x5d\x70\x6e\x64\x63\xcc\x69\x61\xee\x76\x31\xc7\x22\x18\x42\xbe\xdd\xc6\x2a\xc0\x45\x73\x2c\xb5\xc1\xd8\xac\x6a\x38\xf2\x06\x37\xc7\xa4\xd3\xcb\xa3\x88\x41\xb0\x56\xfd\x1d\x0c\xd4\xa9\x1a\xb1\xac\x51\x3b\x64\xb7\x4b\xbe\x76\x3b\x50\x6e\x2f\xa4\xbe\xdb\x30\x47\x4c\x4f\x4c\x9c\x13\x81\x74\xc4\x72\x89\x35\x9b\xbd\xaa\x44\xba\xfe\x2d\x41\x98\x5f\x87\x02\xd2\x20\x47\x95\x67\x4f\xac\x68\xae\xa7\xa3\x08\xfd\x7b\xc8\xbe\x16\x68\x67\x76\x20\x6c\xd4\x1c\xb3\x5a\x4c\x18\x6a\xf7\x87\xdc\x7d\xe6\x39\xa6\x76\x8b\xe0\xcb\x20\x90\xcc\xbd\xf1\x52\x65\x37\xd9\x52\xd2\xc7\x26\x3b\x11\xd8\x7e\x5a\x61\x20\x9f\x87\x97\x65\x75\x55\xce\x39\xbb\x72\x11\x84\xa7\xc5\xd0\x81\xaa\x28\xaa\xe4\xad\x98\x2d\x59\x96\xd1\x45\x1f\x53\x34\x31\x5b\xe4\x12\x53\xdf\xce\xfc\x7a\x5f\xe3\xea\x75\x81\xfd\x7e\x98\x3a\x6e\xc3\x3a\xae\xea\x92\xbe\xb0\x83\x60\x99\xa7\x0d\x6a\x69\xed\xec\xb0\x24\x9d\x11\x21\xff\x06\xab\x19\xe1\xf0\xb0\x98\x91\x1c\xc6\x99\xc2\xfc\x69\x76\x98\xdf\x7f\xd7\xf4\x65\x80\xac\xf9\x8d\x72\x62\xca\x42\xc8\xca\xda\xe4\x70\x38\xe6\xde\x14\x4d\xfa\x0a\x3d\x52\xb3\x85\x47\xbe\x66\x9d\xe3\xd1\x63\x06\xaa\x92\xe6\x66\x51\xd1\x76\x85\x8b\xb6\x4b\x9e\xa2\x9c\x88\xa4\x9c\x61\x26\xff\x06\x7c\x86\xf3\xe9\x5d\xac\x98\x99\x29\x9a\xb0\x38\x95\x58\x6c\xcb\xf2\x91\x91\x17\xa9\xea\xae\x41\x04\xe2\x94\xb4\x01\x02\x5c\x12\x65\x7a\x91\x22\xb9\x7b\x19\xe1\x71\xee\x89\xb9\x4b\x15\x17\xb6\x52\x18\x04\x23\x79\xc7\x40\xb2\x1e\x21\x4b\x40\x6c\x08\x11\xd3\xeb\x58\xe0\x1a\xa2\xf4\xc2\xa8\xb4\x95\xdd\xb9\xc1\x99\xe6\x69\xae\x14\x6f\x35\x31\x91\x8a\x6e\x99\xae\xa9\xc9\x39\xec\x23\x34\xe9\xc1\xed\x0d\x35\x16\x68\x92\x4e\xd7\xb1\xc0\x0c\x4d\x0c\x54\xb5\x2f\x8b\x28\xba\x86\x37\x14\x78\xb5\xf6\xe3\x74\x2a\xee\x8d\x5d\xc1\x5c\x56\x11\x45\x3d\xba\xdd\xe6\xaa\x02\x6b\x64\xd2\x6d\x6c\xfd\xf9\x2a\x65\xb9\x89\x96\xa7\xc2\x66\xc0\xaf\x22\x3c\x82\x2d\xe8\xe9\x0e\x2b\x1a\xc4\xdd\x16\xf1\x1c\x73\xcb\x1c\xd2\x6b\xde\xb6\x99\x6a\xcd\x31\x49\xff\x10\xb2\x44\x57\x8e\x1b\xe5\x43\x9a\x92\xc0\x58\xa6\x74\x22\x3a\x0d\xc0\x6d\x01\xce\x5d\x2c\xf7\x4c\x89\x53\x79\x15\x58\x98\x7c\x0b\x4e\xba\xf7\x98\xae\x84\x3e\x6c\x8d\x22\xcf\xab\xc0\x1c\x4e\x69\xd3\x18\xaf\x71\x10\xc7\x62\x6e\x15\xf7\x2f\x41\x4f\xe7\x43\xfe\x49\x51\x0a\xda\x47\xc3\x25\x2b\x3f\x97\x2c\xbf\x56\x84\xae\x22\x07\x08\x21\x37\x8d\xaf\x9a\x8b\xee\xdc\xeb\xc9\x6b\xd6\xe4\xca\x99\x50\x04\xbc\xd6\xbb\x33\xf8\xe2\x41\x07\xb7\x50\xac\x5d\xd8\xa3\xcf\xcd\x76\xab\x7d\xfb\xeb\x63\x64\xfa\xcc\xe9\x3a\x65\x39\xcb\xaf\xbd\x14\x80\x62\x9e\xdf\x7c\x33\x6a\x0a\x86\x9b\x4a\x1d\x1d\x9c\xf1\xd9\x84\x3d\x64\xb0\xd7\xa0\xd1\x6c\xd7\x53\x0a\x11\xaa\x79\x00\x4c\x0d\x1d\xac\xdb\x4a\xe7\xab\xd3\x5c\xf0\xfb\x98\x26\xf9\x0c\xe7\x20\xe3\x31\x8c\x4a\x3a\xbf\x79\x53\x65\x00\x92\xc0\xb6\x5e\xf5\xa6\x91\xee\xaf\x3f\x5b\xc6\x23\x62\xdd\xdd\x99\x41\x07\x6e\x09\xcd\xce\xbd\x8f\x83\x9e\x52\x54\x9b\x18\x25\xa3\x91\x10\x02\x68\xd0\x77\xe9\xfd\x15\xbd\x58\xd1\x3c\xbd\xca\x9a\x62\x4b\xff\x8c\xb6\xec\x34\x6b\x17\xd3\xdc\x1e\x3e\x4c\xeb\x8d\x3a\x0a\x6e\x51\xff\xd6\xad\xd0\x43\x6a\x20\x17\x5c\xef\x1a\x91\x73\xa0\x0b\xd5\xef\x11\x0d\x2c\x14\xf1\xfc\x42\xd8\x0b\x0c\x0b\x77\x81\x61\xee\x50\x86\x16\x92\x91\xa1\x7a\x25\x2b\x59\xda\x2f\xb5\xe7\x38\x58\x39\x3b\xbd\xeb\xe6\xf1\x1c\x75\x00\x0a\xa6\xd3\xeb\xb8\x94\x50\x30\xde\xc4\x25\x96\x48\x8e\xee\xe5\x1d\x33\x8c\x80\x17\x22\x06\x53\x85\x20\xe8\x4e\xf8\x5d\xd5\xd9\x82\x26\x0a\xed\x57\x51\xe2\x21\x7b\x0b\xfb\xde\x20\x4d\x4c\x1d\xb7\x05\x1b\x8b\xaa\x7d\x27\xb6\xa2\xf9\x53\x7f\x76\x82\xbd\x61\xb0\x36\x9b\xe1\x13\x4c\xb7\x37\x81\xde\xae\x5a\xbc\xd8\xcb\xea\x0c\x0e\x52\x87\x85\x18\x49\x0b\x7c\x52\xd6\xe1\x8b\xe9\x75\xcc\x64\xf3\x71\xb3\x7d\x53\x3f\xde\x7b\xc0\x90\xed\x9b\x29\xb4\xcf\xab\x8d\x3b\x5c\x47\x47\xc1\xc1\x49\xc4\x8c\x70\xa8\xc5\x9f\xfb\x03\x07\xa6\x23\xf1\xa5\x3a\x81\xe0\x2b\xa0\xb7\x6c\xc1\xdd\xa3\x39\x17\x26\x67\x23\xe2\xc4\xb9\x25\x98\x1e\x1d\x87\xba\xa7\x1f\x60\xe2\x27\x3e\x02\x09\x22\xf9\x09\xdf\x4d\xcc\x37\x87\x2d\x71\x9a\x96\x45\x3e\xe1\xca\x29\xd9\x07\x02\x4c\xb9\xcb\xfe\xc0\x11\xd3\x83\xfe\x51\x1f\xbf\xd0\xfe\xb9\xf6\x79\x60\xf7\x7a\xc8\x16\xe4\x85\x89\xb7\xa5\x68\x06\x0b\xc4\x9b\xd6\x97\x06\x7c\x05\x69\x1e\x7e\x45\x92\x19\x6e\x5e\xd8\x60\x46\xae\x2f\x6c\x84\xe7\xda\xc9\x59\x1b\x23\x29\x8a\x02\xf9\x6c\x0b\x53\xe9\xc7\xa2\x52\xfc\xa4\x4d\x5a\x96\x20\xb8\x82\x33\xc7\xbb\x8e\x55\x52\x82\xd9\xff\x92\xf1\x52\x74\xcd\xcd\xd7\x15\x05\xa4\x1a\xdb\x01\x0f\xf1\xe8\xa3\x9d\x76\x0a\xea\xab\xe3\xd2\x69\xdb\x45\xd8\x1b\x03\x08\x15\x21\x8c\xd0\xca\x56\x78\x6d\xa8\xaf\xd6\xaf\x86\x36\x33\x28\x63\x8e\x1e\xae\x95\x2f\xfe\x9d\xf1\x0c\x30\x79\x6c\xf4\x6f\x52\x96\xd1\x85\x1c\x8c\x1d\x40\xf7\x1b\x0d\x18\xbf\x99\x74\x3f\x66\x34\x2d\x69\xb7\x02\x00\x45\xbb\xdf\xe4\xf4\xee\x9b\x6e\xb1\x91\xb7\x6b\xc1\x31\x00\x2d\xed\xc7\xc4\x9f\x00\x83\x6b\x5e\x51\x40\x3f\xe9\x42\x4e\xa1\xe3\xd5\x0d\x61\x82\x0e\x63\x0e\xe6\x7a\x68\x97\x5f\x4a\xc4\x6b\x29\x28\xf7\x11\x2f\xe1\xd1\x6d\x8e\x51\x62\xb4\x9b\x81\xc6\x57\x04\xec\xee\xab\x62\x93\x81\x42\x9f\x61\x5c\x1e\x8c\x4c\xe6\xa9\xaf\x78\x73\x60\x44\xcf\x4d\xb4\x5f\xc3\xe2\xfd\x9e\xe8\xbf\xce\x83\x72\x3b\xfb\xe1\x91\xd2\x5a\x73\x76\x87\x76\x1a\xe0\xeb\x88\x6d\xcd\x40\x37\x17\xfe\x94\x3c\xc8\x6c\x6e\x2f\x01\x58\xb5\x2c\x62\x9f\x0d\xe1\x51\x41\xaf\xfc\xd9\x69\x61\xa3\x3d\x16\x16\x69\x30\x46\x98\x29\x3c\x62\x74\x52\x80\x4b\x02\x1b\x31\xc6\x49\x23\x8a\x99\xf6\x98\xf0\xa0\x0d\x11\x7b\x40\x78\x36\x2e\xc0\x14\x81\x7b\x90\x90\xe5\x74\x83\x5c\x00\x5b\x85\xc8\xa4\x3e\x22\x93\xf9\x98\xc1\x8d\xc4\x0c\x2c\x8f\xa7\xc4\x19\xc2\xa5\x21\xcc\x7a\xe3\x0e\x8b\xa2\x9e\x51\x3e\x4f\xc9\x45\x2c\xe9\x45\xb4\xcb\x93\x62\x46\xd2\x9d\x52\xb0\xaa\xd7\x92\x27\x7c\x56\x53\xfc\xa1\xd3\xeb\xb8\xc2\xd6\x8d\x32\x90\x77\xeb\xb8\x92\xf7\x63\xcf\xbd\xb5\x63\xb5\xb4\x55\xa8\x73\x34\x6e\x15\xe7\x50\x4f\x8f\x80\xef\x62\x87\xce\xa3\x49\x18\x32\x57\xa0\x5a\x93\xa1\xad\x38\x04\x06\xa2\x4e\x23\xd3\xb5\x9c\x23\xbd\x70\xb9\x8a\x25\x23\x67\x82\xca\xe5\x32\x85\x53\x32\x3a\x49\x1d\xf5\x9d\x42\xe7\x44\x92\xce\x66\x84\x25\xa9\x17\xae\xc5\xef\x9f\x84\x77\x13\x35\x23\x3b\xcc\xa6\xcd\xcb\x5e\x97\xb9\x19\xc2\xa6\xdc\x1f\xef\xe1\x9d\x2d\xb2\x43\xbb\xb8\xc2\xb9\xf6\x32\x8f\x26\xef\xfc\xb7\x9d\x13\x03\x5f\x5e\x02\x9c\xba\xbc\x24\xd4\x67\x79\xbe\x0b\xb9\x72\x5a\x5c\x1c\xe7\x4e\x61\x9d\x29\xb0\xcc\x2c\x1d\x48\x5d\xe9\x4f\x01\xe0\x51\xbd\x06\x68\xe3\x64\x37\x37\xf8\x46\x49\x6f\x32\x0c\xdf\xdb\x61\x56\x3d\xd0\x31\x30\xb8\xbf\x18\x99\x38\xe8\xcf\x1b\xdc\x6c\xa2\x65\xc8\xd6\xf9\xa4\x77\x1d\x18\x75\x66\x30\x1b\xd2\x42\x16\x0d\xc2\xef\x98\x58\x75\xd3\xbc\x9b\xca\x16\xfa\x08\x40\xe2\x8d\x12\x83\xed\x93\xc9\x3b\x8e\xb1\x3c\xa3\xf5\x2e\x22\x7b\x9a\x78\x9d\x7f\x61\xad\x81\xd2\x39\x7d\xa4\x1f\x08\xf3\x8e\x17\x17\xbd\x41\xbd\x59\x03\x4a\xb9\xfb\xaf\xb4\x4f\x11\x03\x22\x93\x7c\x86\x0e\xe0\x72\x6b\x6d\x39\xd8\xf2\xe9\x5a\x7d\x42\x6e\x93\xca\xc9\xd0\x74\x73\x06\xcf\x3f\x87\xa1\x0a\xf7\x4d\x4d\x50\x21\x86\x7a\x9c\x8f\x19\x23\x2b\x21\x1f\x82\x64\x08\xc8\x79\x0a\x08\xd9\xc7\x47\x7c\xe3\xd4\xc0\xb4\xb1\xae\xee\x8d\xad\x63\x9c\x47\x7d\xde\xec\xe2\x2f\xde\xc5\xf0\xf3\xe3\xfb\xee\x63\x7c\x03\x77\xa6\xdd\x71\x37\x8f\x6f\x37\x2d\x39\xfd\x8a\x5d\x67\x7b\xf2\xba\x76\x78\xc0\x2f\x11\x9c\x9e\x8f\xfe\x14\xfa\xd4\xc1\x39\xcc\xd9\xfb\x03\x73\x66\x39\xef\xf1\x57\xeb\x5f\xa2\xed\xb6\x66\x46\xf9\x75\xe1\x0f\x3b\x7b\xd6\x26\xc7\xcc\x2c\xcd\xef\x71\x02\xd9\xc6\x75\x09\x70\x6d\xab\xb1\x1a\x72\x4e\xf2\x7d\x9c\x13\xe7\xcf\xa8\xe6\x06\x86\x59\xb5\x75\x6b\xe8\xa5\xc9\xbf\x3a\x17\x87\x05\x60\xbf\x08\xce\x68\xfa\x9c\x29\xe8\x4f\x68\x22\x40\xdb\xdd\xe8\x7e\x39\x6e\x0b\xc7\xe2\x51\x56\x4b\xb8\x4d\xdf\xd6\x37\x87\x39\xf3\xb8\x71\x2b\x50\x8b\x3c\x10\x42\xa8\x2f\x78\x30\x18\x5b\xbb\x38\xda\xec\xde\x55\x5a\xae\xf6\xed\x5b\x5d\x55\xe0\xfd\xeb\x7d\xed\x78\xec\x14\x2a\x7c\xf6\xdf\x71\x92\xdf\x7b\x53\xf4\xe6\xbf\x7e\x8a\x3c\x9d\x88\xdf\x32\x43\x67\x30\x43\x60\x48\xe6\x4d\x92\xed\xf8\xaf\xca\xa9\x8d\x6c\xaf\x5d\x54\xab\xbe\xd1\x1d\xc2\xde\x5d\xfb\xbd\xa3\x21\x1e\xf4\x50\x6d\x64\x53\x80\x4e\x26\x78\x45\xc3\x19\xb7\x46\xdd\x42\x5c\xcd\x79\xca\x06\x15\x74\xcd\x73\xdd\xa9\x79\x3e\x3b\x0c\x80\x5e\x3e\xea\x3c\x7f\xdf\x62\x8f\x30\x73\xcb\xfd\xef\x81\x0e\x81\x87\xd5\xbd\x9c\xd9\xa2\xc1\x99\x2d\xf6\x71\x66\x0b\xc3\xb1\x59\xa7\x9b\x37\x39\x61\xfb\xa0\xcd\x61\xb6\x8d\xdc\x6f\x20\x16\xa9\xc3\x02\xaf\x6e\x09\x17\x90\xf6\x23\x6b\x91\xad\x3a\x1f\x70\x81\x05\x66\x90\xc5\x63\xb4\x3d\xc6\x0e\x0a\x81\xc9\xe7\x30\xe8\x75\x1b\xa3\x61\xba\xef\x8e\x5b\xa7\x9b\x2e\xfd\xb2\x01\x57\x9f\x69\xc0\x54\x48\xbb\x25\x9d\x17\xf9\xc2\xf2\x14\xfa\x48\x62\xfa\xfe\x41\x6c\x04\xeb\xd1\x01\xaf\x1a\xb8\x54\xeb\xe9\x93\x4d\x1f\xbe\x4f\xfd\x43\xf7\x52\x81\x25\xd9\x66\xcb\x99\xfb\xe1\x00\xb0\x70\xb9\x7e\x69\xe4\x52\x5e\xc1\x65\x26\xb9\xbf\xfe\x21\x2f\x9f\x1f\xf7\xed\x7e\x54\x73\xbd\x52\x97\x35\xfc\x2b\xdb\xfe\x77\xb0\xe1\xc3\x18\xd8\x46\xfc\xdb\xc2\x9b\xd7\x8a\x58\x6d\xfe\x28\x68\x8f\x90\x7f\xec\xd0\x57\x72\xef\xbf\xee\x50\x3c\x34\x36\x6c\xc7\x28\x9b\x5a\x8e\x7c\xfd\x90\x38\x43\xf1\xc2\x1a\xcd\xd7\xce\x48\x0a\x67\xa4\x30\x81\x0c\xdd\x81\x33\x9e\x9a\xf7\x1c\x1f\xbe\xdd\xc6\xf5\x1e\xfd\x43\x5d\xc8\x2f\xbd\x33\xf4\xdd\xbf\x70\x86\xd4\xfc\xda\x63\xf4\xdf\x7a\x88\x74\xdb\x5f\x7f\x8e\x7e\x6c\x3b\x47\x72\x81\xfe\x86\xff\x40\x46\x6e\x42\xfe\xae\xce\xca\x9c\x26\x7f\x98\x11\x8a\xe5\xff\x60\x3c\x23\x02\x1f\x13\x42\xe2\x3f\x0c\xc8\x31\x8a\xa2\x9c\x6a\x57\x6f\xff\x87\xf4\xab\x7c\x41\x97\x20\xa9\xb4\x53\x76\xc7\xf2\x45\x71\x37\x55\x7f\xe6\x36\xfb\xbf\xe4\xff\x80\x93\xd5\xff\x4d\xfe\xef\xf0\x5d\x25\xc0\xdd\xc3\x87\xab\x92\xf2\x5b\xca\xb7\xdb\xff\x3b\xfc\x81\x5e\xfd\x8d\x89\xfa\x17\x4c\xa9\xdf\x84\xe5\x9c\x94\x34\x5b\x46\x51\x5b\xe3\x3a\xe8\x55\x14\xf5\x13\xcd\x03\xd4\x29\xb3\x3e\x21\xe4\x61\x67\x23\x36\xab\x4b\x4c\x7f\x44\x58\xd0\xd6\xb1\x7c\x66\xb9\xf8\xcb\xab\x2c\x5d\x6f\xe8\x02\x96\xa4\xbd\x55\xb6\xde\x14\x5c\x9c\xcf\x39\xdb\x88\xb2\x3d\xcb\x3b\xe5\xe8\xf4\xd5\x2a\xcd\x73\xea\xb9\xc8\xe4\x5e\x7c\xda\x26\x4b\xcd\x47\x25\x28\x1e\x23\xc5\x11\xcf\x29\x66\x14\x17\x14\xa7\x14\x97\x14\x57\xf4\xff\xcf\xde\xbb\xad\xb9\x6d\x63\x0b\x83\xf7\x7a\x0a\x89\xd3\xcd\x26\x22\x48\x96\xec\x4e\xef\x6e\x56\xa1\xf4\xf9\x98\x38\xf1\x29\x76\xa5\x93\xb4\xac\xed\xcd\x92\xa0\x12\x63\x0a\x50\x83\x50\x95\x2b\x45\xcd\x37\x77\x73\x31\x6f\x30\x57\xf3\x2c\xf3\x28\xff\x93\xcc\x87\x85\x03\x01\x92\x2a\x3b\x7b\xf7\x1c\xbe\xf9\x7f\x5f\xb8\x44\x9c\x8f\x0b\xeb\xbc\x70\xa1\xf6\xca\x7b\xee\xa6\xf4\x81\x77\xcc\xd7\xb4\xa5\x2a\xf6\x87\x13\xaa\x36\xf3\x36\x99\xa8\x4d\xa6\x0b\x94\xa8\x3f\xc3\xe9\x02\xe9\x6f\xcb\xfc\x36\xa9\xd6\x0e\xe7\x0f\x64\x72\xa0\x74\x96\xec\x29\x31\x4b\x37\x66\xf4\x93\x3c\xcf\x97\x1f\x71\x51\xa7\x5d\x51\x51\xe6\x9c\x95\x63\xc6\x57\x74\xbc\x85\x6b\x7e\xef\xdf\x93\x59\x9a\xbc\x5f\x0d\xd1\xfb\x31\x9a\x05\xbf\xdf\x7f\x55\xa9\xdf\x7f\xb8\x87\x70\x78\xfe\x0b\x88\x32\x36\x51\x5b\x57\xd0\xf9\x74\x11\xc7\xd1\xd4\x7e\xdd\x87\x38\x45\x94\x94\x54\x3e\xdf\x1a\x83\x17\x84\x19\x6d\x87\xe2\xee\xef\x69\xb2\x56\x84\x71\xfa\xdd\x2c\xe1\x94\x4c\x70\xa6\xd7\xea\x3b\x95\x8c\x4b\x4a\x56\x7c\x09\xf7\xd4\x38\x83\x3d\xa7\x9f\xe4\x2b\xbe\xa2\x49\x14\x21\x9c\xd1\x31\xd7\xc7\x31\x29\x29\xbe\x5d\x6e\x32\x91\x2d\x25\x15\x4f\x32\x99\xa5\x60\xe0\xd4\xd9\x67\x49\x75\xa4\x16\x4e\xc9\x70\xc8\xe9\x1f\xef\x1f\x50\x2a\xe9\x2c\x49\x72\xdd\x77\x78\x1e\xd0\x58\x1d\xa0\xe9\x98\x33\xeb\x10\x77\x4d\xbb\xdb\xcd\x29\x14\xbd\x3f\xde\xf1\x52\x9a\x46\x92\x89\x9a\x1c\xb3\x52\x0c\x42\xc8\xcf\x47\x02\xb1\x09\xfa\xcf\x7d\x2e\x3c\xb6\xbf\xe6\x10\xe9\x73\xf1\xcc\x26\x46\x1e\xd3\x39\x42\x60\x18\x06\xd5\x92\xe8\x8a\x0a\xf9\x29\x6a\xc7\xc7\x4c\xbe\x27\x74\x2c\xf6\xec\x35\x7b\xc1\xf9\xae\xaa\xcc\x87\x31\x66\x46\x7e\x7f\xdf\xc3\x5e\xa4\xea\xdc\xb7\x1c\x96\x41\xe2\x21\x41\x90\x6b\x75\x83\xc8\x0f\xd8\xb0\xd6\xbb\x6c\x5d\xbc\x1b\x42\xf1\x04\x1d\xb4\xc6\x3f\x25\x3f\xf5\x8c\x82\xf1\x46\xeb\x0b\xae\x8e\x84\x02\xb3\xea\x12\x80\x0e\x78\x2a\x81\xea\xca\xf0\x31\x37\x81\x00\x12\xee\xab\x17\xd4\x5a\x64\xa6\xd4\x7a\xdd\x55\x0c\xbc\x6a\xe9\x29\xac\x28\x3e\x0e\x2a\x3b\x58\xc3\x3a\x63\xfc\xe1\xc3\x9b\xb7\xaf\x5f\x3e\x7f\xf7\xf4\xc3\xf3\x57\xef\xce\xdf\xfe\xf8\xf2\xe9\xab\xf3\x87\xe7\xcf\x5f\xbf\xfa\xf0\x41\xbf\xf9\x57\x94\x7c\xbe\xa8\xa3\x73\x6f\x68\x3f\x67\xfd\x2c\xf1\x34\x50\x23\xf0\x03\x73\x45\xd1\x55\x2b\xe4\xe7\x8d\xba\x7c\x3b\x9a\xdc\x50\x7c\x45\xe7\x37\x74\xa1\x81\xfe\x25\x25\xb7\x59\x99\xed\xd2\x1f\xb0\x5a\xdf\x74\x43\xb1\x0d\x43\xf7\x11\x7b\xea\xbe\x69\x8e\xb3\xa2\x48\xdf\xe2\x9a\x91\x92\xfe\x8a\x45\xb6\xa4\xe9\x13\xac\x68\xb0\xf4\x39\xf6\x48\xb1\xf4\x19\x36\xca\xe9\xe9\x6f\x18\x54\xd3\xd3\x6f\xb1\x53\x4c\x4f\x1f\x63\xa7\x96\x9e\x66\x98\xb3\x74\x47\x41\x35\x7a\x4b\xb1\xa5\x9b\x7e\xb2\x24\xd3\x3f\xf1\x36\xdb\xa5\x3f\x62\x58\xfa\x74\x45\xb1\x7e\x2e\xd3\x6f\x0e\x9e\xba\xff\xa5\xa2\xc4\x64\xa2\xf5\xf9\xb5\x74\xcc\x3b\xa4\x7a\xa7\x92\xe8\x57\xb0\xdf\x88\xf0\x7c\xe1\xe7\x06\x5a\xfe\x46\x1a\x61\xda\x4d\xd5\xd3\x34\xfe\x15\x4c\xc3\xf0\x87\x0f\xb4\x7c\x09\x86\x03\x0a\x50\x1c\xa0\x93\xa7\xaa\xbf\xf1\x63\xbe\xdd\x71\xa6\x20\x8e\xa0\x7c\x47\x59\x72\xfb\x87\xb4\x81\x0a\x00\xfa\x42\x0b\xaa\x76\xc9\xa9\xbe\xce\x74\xcb\x89\xd1\xba\xb1\xd9\xa9\x49\x0e\x12\x0f\x07\x84\xbb\x1e\xcf\x67\x59\x29\x1f\x71\xee\x8b\x21\xe1\x42\xb4\x05\xf4\xda\x04\xa2\xe3\x78\x6a\x6b\x88\x99\xfe\x33\x36\xe5\x88\x4c\x3a\x75\x4b\xf5\x00\xe2\x58\xff\x1d\x67\xdb\xd5\xcc\x2c\xef\x7c\x01\xea\xa8\x47\xfa\x9d\x99\xbf\xe3\xc7\x45\xbe\xbb\xe0\x99\x58\x7d\xf7\x0e\xfa\xa0\xcd\x14\x23\x5a\x6c\x03\xcb\xb6\xa4\xee\xd6\xbb\xe3\x22\xd1\xd8\xab\x9c\xb3\x85\x73\x9b\x3a\x67\x0b\x3b\x21\x1b\xfc\x69\xce\x16\xe4\x36\x4f\x19\x2e\xd2\xc1\x14\x9b\xcc\xf4\xb6\x8e\x67\x4e\x55\x25\xc0\x27\x72\x5b\x17\xe7\xb8\xfe\x0d\xfe\x46\x0b\xa2\x08\x65\x9b\x76\xa8\x1d\xe3\x12\x8a\xc5\x78\x49\x24\x16\xe3\x86\xa7\x13\x86\x6e\xc5\x18\x3c\xf7\xa3\xaa\x32\x7c\x2e\xbd\x74\xee\x92\xaa\x62\xb7\x86\x8a\xbd\x80\x73\x06\x81\x24\x99\x76\x2b\x19\x42\xcc\x2e\x08\xf4\xee\x66\x7b\xc1\x8b\x38\xd6\x7f\x1d\x76\x74\x9e\x5d\xc6\xf1\xb1\x1e\xdb\x65\xf1\xad\x96\xe6\x47\xfa\xb4\x47\x07\x84\x8f\x55\x8e\xea\x4b\x11\xd9\x6a\xea\x15\x05\x4b\xa1\x06\x88\xce\xd7\xc9\x34\x96\x60\xd9\x29\x20\x38\xee\x5f\xe3\xfa\x2a\xf4\xf2\x75\xf2\x67\x95\xdb\xa9\x3f\x0e\xca\x3d\xae\xa7\x50\x75\x9c\x35\x5c\xbf\x83\x11\xb0\x76\x17\x0d\x0e\x61\xba\x87\xce\x70\x64\xee\x78\xd4\x5c\x71\x3d\x0b\x05\x50\xee\xc3\x80\xb4\xf3\x7e\x9f\x11\xe5\x0c\x20\x75\x84\x65\x31\x5e\x81\x2e\x5e\x87\x10\x88\xce\xe5\xe2\x30\xbe\xc8\x99\x89\xf0\x91\xd7\xce\xd9\x18\x98\xbb\x77\x88\x9f\x1b\xb3\x9d\xb5\x2f\x82\x83\x7b\x87\x8e\x18\xa3\xd4\x93\x28\xad\x12\x89\xa3\x2c\x02\x16\x86\xea\x8e\x77\xbf\x9a\x66\x89\x6a\x86\x52\xf8\x76\xe8\xcb\x40\x8d\x4d\xfa\x8e\x44\x11\x16\x89\x18\x97\x64\x82\x0e\xc9\xbc\xa9\xc7\x12\x80\x53\xbd\x41\x1d\x60\xc4\x9e\xd4\xa8\x84\x1f\xcd\x8c\x71\x2e\xb5\x06\xc0\xac\x03\x49\xb0\xfb\x70\xe8\x34\x28\xea\xc4\x95\x6c\x77\x4d\x4b\x04\x97\x3e\xb0\xbf\xeb\x55\x98\xd9\xb1\xa5\xae\x43\x5f\x55\xbe\xa9\x5a\xe9\x0b\x2d\x27\x27\xa2\x96\x3b\x0a\x6b\xbe\xc1\xc0\x95\x66\x8f\x8d\xeb\xf3\x46\xfc\x8f\xaa\x1a\x4c\x31\x73\x16\x5b\x90\x3f\x98\xe0\x08\x0e\x64\x94\xb3\x3e\x8b\xe3\x84\x8d\xaf\x45\x2e\x4d\xde\xf1\x8b\xc9\xc6\x1f\xe9\x0d\xc8\xcb\x9b\xc0\x33\xe4\xf5\x8a\x38\xa6\x89\xb7\xf5\x0a\xba\x31\x48\x03\xb5\x28\x85\xbe\x61\x4e\xf6\x89\x48\xa6\x08\xe1\x0c\x7e\x3d\x40\x08\x97\xf0\xeb\xcf\x7e\x50\xb8\x7d\xb8\x0b\xc1\x19\xa6\xa9\x7b\x52\xa9\xa6\x7a\x8a\x63\x2c\x1a\x60\x7d\x26\x2d\xd0\x31\x48\xa8\xaf\xeb\x22\x8f\xd0\xd2\x8f\xb5\x5e\x88\x3a\xb1\xfd\xac\xbf\x2c\x40\xe3\xa6\x0c\xcc\xb8\x0e\xc8\x45\xb5\xd0\xbb\xd2\xee\xcb\xe7\x35\xbf\x55\xd8\x0b\x65\x4b\xdb\x03\x68\xa4\x6c\xb2\x92\xfd\x49\x51\xeb\x94\xf5\x73\xed\x9b\x26\x2f\xe9\xaa\x3f\xea\x97\xfb\x1d\x15\x09\x0a\x4a\x68\x8a\xde\x21\xda\x03\xd9\xc1\xde\x96\xa1\x01\x82\x63\x58\xd0\x54\x9a\x07\x31\x91\xb5\x84\xd8\x3d\x20\x97\x54\xbe\xb1\x7b\x07\x26\x62\xa8\xe6\xe7\x7a\xb0\xc6\xf2\x2a\x5e\xef\x54\xfb\x65\xa2\x76\x79\x5c\xe4\xa5\xa4\xec\x71\x91\x2f\x3f\x82\xcb\xfd\xd6\x51\xb9\xcb\x7e\xae\x66\x5d\x75\x6f\x04\x04\x3a\x50\x8f\xbf\xa0\x65\x09\xd8\xf5\xbe\x94\x7d\x9a\xcb\x0d\x15\xfd\x0b\x0a\xde\x8c\xfb\x5c\x78\x3b\x83\xc1\x6d\x73\x34\x74\x16\x7a\xbd\xe3\xf1\x3d\xc0\x2d\x45\x7d\x68\x6f\xbd\x5b\x9d\x9a\x67\x88\x62\x1f\xac\x4f\xb1\xbd\x36\x0a\xc4\xfb\x57\x4c\x23\x73\x58\x3d\x4c\xa6\x8f\x32\x58\xd3\x59\x67\xaa\xb6\xbd\xa1\x9e\xcc\x5e\x2a\xc4\x05\x67\x16\x34\x23\x9c\x27\xd2\x05\xa4\x0e\x56\xdf\x6a\xcb\x79\xa0\x44\x93\x6c\x2d\xa1\xde\xa4\x53\x1e\x38\xf1\x3d\xb2\x4e\xea\xc8\xa2\x19\xb4\xd6\x05\x6d\xa9\xc9\x9b\xd9\x1f\xc6\xe5\x84\x1e\xea\x43\xbd\xfc\x5a\x5b\x47\x1b\xf7\x75\xb6\xa1\xf3\x66\xf6\x47\xd0\x86\xa6\x12\x4c\x1b\xf4\xd3\xb1\x16\xe8\x27\xa8\x4f\x3f\x35\x6a\x43\x54\x44\xa3\xdf\x24\xb3\x9c\x51\x41\x6a\x44\x80\x30\x13\x3b\x11\x32\xd0\xcc\xfb\x48\x1d\xad\x7f\xc1\x57\x37\x2e\x16\xb7\x77\xb2\x5b\x8b\x1d\xaa\x79\x69\x01\x04\x14\xa7\x82\x24\x13\xec\xc6\x84\x14\x7a\xb3\xd4\x4d\x74\x3d\x42\x63\xee\xae\xce\x01\xb9\x9e\xf9\xe7\x7a\x55\x6f\x77\x41\x2f\x33\x49\xf5\x92\x29\xea\xda\x98\x35\xeb\x04\x3d\xa4\xa5\xc5\x89\xf5\xe6\x58\x05\xd7\x46\xb2\x76\xc4\x85\xbb\xb3\xe8\x75\x9f\xdb\xc9\x24\xb7\xfe\xbe\x67\x16\x4d\xc1\xfe\x4e\xea\xdf\x90\xea\xf6\x47\xfd\x52\x29\xf5\x82\x87\xbb\xe4\x8c\x4d\x25\xa6\xdb\x5c\x4a\x53\xc0\x5b\x90\xe0\x8c\x75\x2d\x8b\x75\xd9\x90\x44\x99\x29\x43\x5b\xb5\xf5\xca\x1c\x5f\xd4\x65\x12\x49\x53\x84\x1a\x23\x5a\xd3\xac\x3b\x1f\x40\xfa\xbd\xa3\x05\x05\xc3\x0d\xd9\xee\x82\x7e\xea\xec\xa0\x1e\x9e\x84\x12\xc1\xe0\x4a\x29\xf8\x4d\xc7\x75\x0e\x4e\xd5\xd8\x94\x4b\xba\x37\xea\xc8\xd6\x7e\xa6\x96\x71\xc1\x76\x58\x58\x10\x93\x97\xef\xf6\xbb\x1d\x78\x1e\xfc\x57\xc3\x97\x79\xb4\xe4\xbb\x9b\x08\x47\xcb\xbd\x8c\x16\x58\x12\x8b\x12\x7b\x0a\x87\x73\xba\x48\x29\x16\x64\x30\x08\x57\xfc\x31\xdf\x6e\x33\xb6\x72\x63\xab\x25\x9f\x6b\x2e\x9e\x66\xcd\xc0\xaf\xe0\xc8\xed\x33\x4d\x68\xbd\x76\x01\x91\xed\x65\xa0\x51\xb8\xf4\x75\x60\xa2\x55\x26\xb3\x91\x5b\xb6\x51\x34\x04\x22\x03\xfc\xa7\x3d\x94\x52\xe4\x17\x7b\x49\x13\x51\x47\x5b\x53\x6f\xa9\x9f\x71\xa8\x69\xe1\xe2\x70\xb7\x6f\x00\x63\xfb\xf5\xff\x23\x44\x97\xff\xf7\x88\xe8\x66\x44\x24\xf7\x15\x6e\x9b\x30\x92\xa1\x38\x66\x3e\x0a\xcb\x6a\x14\x96\x69\xbe\xe4\xfe\x78\x1c\xb5\xff\x27\xf0\x57\x2b\xe1\x6b\xa0\x76\xd6\xbf\x98\x42\x4b\x35\xbc\x83\x01\x3a\x6f\x79\x09\xfd\x7f\x05\x2b\xb1\x98\x47\xf3\x99\xa7\xfe\x63\x02\x0c\x2f\xfd\x8e\x10\x6a\x7f\x05\x88\x89\x45\x3e\x3c\x4c\x43\xe3\x13\x81\x97\x5b\xe2\x5c\x47\xd8\xa0\x0c\x05\x18\x23\x9c\x03\x66\x12\x39\x08\x1e\xac\xd1\x31\x38\x0e\x48\x8b\xd7\xcc\xb3\xec\x23\x4d\x90\xff\x66\x1a\x81\xa6\xce\xd6\x6f\x55\x52\x3f\x13\x75\xad\xa3\x4b\xac\xe9\x11\x12\x09\xa9\x00\x84\x03\x7f\xf6\xc7\x53\xcd\x03\x0c\x01\x54\xb4\xca\x45\x64\xf4\x95\xb4\x57\x5e\x3d\x30\x13\x1f\x20\xfb\x48\x8d\x1f\x1c\xeb\xd3\xa2\x43\xfc\x40\x83\x9a\x87\x56\x55\x12\x6e\xd6\x38\x5b\xad\x80\x27\xfc\xc2\x3c\x6d\x89\x45\x90\x8e\xf5\x89\xaa\x6a\x30\xa9\x73\xd5\x44\x9a\xe2\x19\x33\x39\xfd\xbe\x66\x82\x66\x11\x0a\x2b\x8c\x4b\x79\x53\xd0\xf1\x9a\x33\xf9\x2e\xff\x8d\x92\x68\x7a\x7f\x27\xa3\xce\x32\x17\x5c\xac\x14\xea\x38\xe9\xce\xde\x65\xab\x55\xce\x2e\x8f\xe6\x6f\x33\x71\x99\xb3\xe3\xd5\xb9\x71\xfd\x1e\x65\x17\x25\x2f\xf6\x92\x76\x96\x9b\xcb\x59\x24\xf2\xcb\x8d\x8c\xd2\xa8\xa0\x6b\x19\x2d\x48\x34\xfa\xdb\xdf\xfe\xf6\xb7\xdd\xa7\xc8\x38\x3b\x30\x5c\xfe\x5d\x76\x49\x7f\x79\xbd\x5e\x97\x0a\x0d\x3c\xba\xeb\xe5\x52\xf0\xa2\x38\xe7\xbb\x5e\xd7\xa0\x24\xdf\x11\x31\x8c\x76\x9f\x5a\x63\x09\x0e\x8b\xa0\xd9\x8a\xb3\x42\xbd\xe2\xad\xf5\x85\x43\x49\xdc\x59\xc7\xcd\x4d\xdf\xed\x28\x5b\x41\x70\xd6\x24\xa8\x88\x3a\x2e\x57\x88\x41\x77\x15\x57\xb8\x84\x2a\xea\xdd\x90\xfa\x10\x1e\xbb\x83\xde\xd1\x72\xf8\x92\x1b\xa0\xae\xfe\x3b\x0f\x66\xfb\xac\xd7\x76\x82\x5d\x97\xc7\xc3\xb4\xed\x84\x8e\x8d\xe4\xf8\x52\xb9\x3b\x60\xb0\xb7\x00\x42\x1c\x41\x72\xad\xd3\xc7\xcf\xac\xb2\x86\x44\xc7\xd7\xd8\x26\x1d\x85\x41\x46\x63\x14\x1c\x3f\xd4\x77\x94\x7e\xa2\x4b\x83\x80\x25\x1e\x38\xf7\x84\x7d\x94\x0c\xa6\xda\xed\xb9\xf6\x14\xa6\x75\x4b\x12\x0f\x4f\xf6\xd3\xbb\x50\x6c\x1f\xec\xc3\xdf\x44\xa1\x24\x7b\xf0\x3b\x1c\xa5\xd6\xbe\xa6\x83\x82\xf1\x08\x15\x7f\x79\x6a\xa2\xc4\x7b\x12\xf0\xb2\xa0\x99\x70\xc0\xde\xd0\x31\x41\x9a\xe6\xd3\x6a\xad\x7c\x6f\xe1\x82\x32\x47\x1f\x09\xdd\x8b\x79\x09\xcc\xd7\x78\xcd\x97\xfb\x32\x41\xd8\xdc\xf7\x4b\xea\xbf\xc8\xe6\xb4\x3c\x2c\x8a\xb7\x19\xbb\xa4\x65\xf2\xc5\x94\x45\x00\xb4\x6d\x1d\x4b\x3d\x95\x54\xfe\xcb\xde\x70\x8d\xf8\xd7\xb6\xba\xf6\x2d\xc7\x3a\xc3\x29\x2e\x65\x86\x92\x01\x0a\xa1\x91\xda\x8a\x93\xfb\xa7\xe7\x3a\xe2\x73\xdf\x0e\xb9\xaf\x1d\x01\x83\x0d\x98\x61\x10\xe9\xf6\xfb\x5c\xfd\xda\xcb\xe8\x4f\xe8\x00\x82\x90\xf6\x0b\xe6\xf7\xe4\x96\xc2\xd2\x82\xc1\x52\xd0\x86\xeb\x5d\xc3\xe9\x0b\xbc\x80\x24\xb5\x07\xca\x99\x27\x5f\x49\xf3\x84\x22\x54\x55\x53\x70\x4b\xca\xf8\x8a\x2a\x8c\xed\x8e\x89\x99\x01\xf8\x13\xcb\xfa\x3a\xcf\x40\xf5\x3f\x01\x99\xaa\xa7\x69\xf5\xc2\xec\x2a\xd2\x90\x44\x89\x56\x79\xa9\xd0\xe0\x55\x84\xbe\xa0\xcb\xcc\xd6\x1b\xfb\xa6\x75\x35\xfc\x07\x24\x94\x66\xab\x3e\x5f\xf7\xeb\x96\xeb\x6a\x76\x60\x7b\xd9\x1a\x57\xd2\x1c\x98\x6b\x14\x55\xd5\x1d\x83\xfe\x7d\xa3\xfe\x85\xef\xfb\xcb\x8c\xbd\xff\x93\xec\x2f\xf7\xb2\x0f\x81\xcc\xd7\x82\x6f\xfb\x46\x12\x5a\x6a\xcd\x28\x6f\x46\xea\x94\x74\xcc\xa4\xfc\x93\xd5\xe6\xb6\xb8\xe3\xe1\xee\x53\xa4\x8b\x01\x5d\x69\xbc\xc9\x59\xfa\x6f\x7f\x68\xd8\x27\xd5\x59\x2d\x66\x04\x2c\xdf\xbb\xa7\x2f\x9e\x3e\x3e\xd7\x51\x81\xd4\x79\x81\x50\xfe\xd4\xc1\x03\x85\xb4\xc2\xd9\xa8\xed\xcd\x9f\xbf\x7a\xf3\x63\xa3\x42\x55\x45\xe7\x4f\x7f\x3e\x7f\xf8\xf6\xe9\xc3\x46\x4b\xce\x2f\xfc\xb1\xfd\xe8\x09\xb5\x23\x77\xa1\x00\xd4\x80\xcc\x44\xff\xac\x01\x13\x00\xa3\x64\x82\xcd\x08\xad\x8f\x13\x0c\x2d\x1a\x90\xd5\xd5\x65\x3d\x29\x1d\x8b\xbc\x39\x38\xf0\xcb\xcf\x24\x5d\x69\xa2\x2e\x42\xea\xa0\x9b\x05\x31\x8c\xf8\x4e\x30\x89\xf3\x26\xc6\xa8\x47\x88\x7a\xb9\x99\xc2\x2b\xbe\xa2\x8f\x75\xeb\x3a\x76\x6c\x1b\xb2\x62\xa6\x70\x57\x5d\x31\x87\xd8\x49\x4e\xe0\x59\x93\x46\xf2\xd0\xdc\x66\x4f\xb8\x8c\x6e\x0f\x5e\x40\x69\x72\xdb\xf0\x33\xd7\x70\x79\x40\xad\xc6\x22\x05\x27\xe9\x46\x6b\x9e\xcd\xe9\xa2\xaa\xe0\x0f\x99\x2f\x10\x32\x4e\xcc\xd6\x2c\x95\x78\x29\x3f\xa5\xc2\xf8\x57\x3e\x60\xce\x96\xf4\x8e\xf6\x6b\x96\x47\x9e\xa0\x5b\x36\xe6\xeb\x75\xa2\x1d\x08\x18\xcd\x15\xe1\x6b\xae\x58\x5d\xa3\xf1\x07\x62\x90\x3b\x68\x33\xd7\x7e\x13\xb7\x79\x08\x24\x6b\x7b\xbf\xf9\x42\x7b\xdf\xd4\x12\x85\xda\x42\x6e\x8a\xb0\x20\x49\xd2\x31\x51\x04\x13\x9c\x2f\x90\x0b\x78\xa0\x43\x42\x88\x66\x18\x05\x31\x67\x8b\xf1\xda\xaa\xe3\xc0\xd7\x52\x7e\xf2\x8c\x95\xcc\x32\x1c\x71\x97\xd7\xd1\x35\x66\xda\x61\x1e\x78\xbb\xd7\x71\xf0\xa5\xef\xdc\xce\x8b\x80\x70\xc2\x4f\x33\x30\x19\x64\x73\xae\x46\xa1\x8d\xbb\xcd\xc7\xf8\x83\xfe\x34\x4e\xfb\x54\xaa\x17\x21\xd2\xb8\x52\x02\x5f\x7b\x79\x6a\x3c\xed\x43\xbf\x30\xe0\x03\xae\x01\x83\x68\xf3\x8c\xf4\x06\x8a\xe4\x6b\x70\x1e\x98\xfc\xc5\x07\x31\xcd\xb2\x2e\x82\x72\x1c\x0f\x44\x3b\xd6\xbc\x8d\xff\x6e\x74\xb9\x6a\xe5\xd4\x32\xd2\xb6\x70\x6c\xac\x99\x74\xc9\x31\x4e\xc3\xbb\x50\xa9\xd5\xf3\x78\xa8\xef\x85\x6b\x67\xcd\x12\x71\xa4\x8d\xf3\x4d\x2e\x3a\x9b\x78\xe6\xb8\x15\xb0\x17\x00\xb9\x3c\x83\xbc\xe6\x64\x6b\xa5\xec\x26\x81\xa9\xb2\xf1\xad\xc1\x87\x7c\xc8\x4d\x3b\xd1\x7e\xed\xa9\xd0\xfa\x09\xab\xfb\x56\x05\x3e\xdf\xbf\x56\x57\xac\xc5\xe0\x86\x45\x69\xe5\xdf\xfe\x2d\x39\x32\xd4\x43\xf7\x60\x7f\x57\xc3\x47\xe7\xd5\x9a\x99\xd9\xe1\xcf\xce\x2b\x4f\x02\x31\x89\xd1\x1d\x76\x6d\x75\x9b\xed\x87\xbe\x08\x9a\xa7\x03\xf7\xbf\x3d\x7f\xf9\xc2\x20\x33\xfa\xe3\x31\x2f\x0c\xd0\xc6\xea\x49\x7e\x65\x96\x3d\x42\x2d\xb0\x2a\x61\x4f\xba\xf4\xff\xfc\xb0\x02\x01\xbf\xcc\xeb\x2d\x8e\xa7\xc4\xc7\xc3\x0e\x58\xba\x3d\x6e\x3d\xc7\x2e\xb0\xb8\x67\xda\x18\xe8\x0c\xd3\xb6\xfa\x23\x8d\xe3\xc4\x29\x1c\xdb\x69\x80\xc6\xb1\xa8\x2a\x97\x11\x4e\x59\x67\xa3\x38\x8e\x34\x88\x88\x72\xe0\xd0\x26\xda\x1d\x9b\x35\x78\x91\xe6\x22\xcc\x27\x0b\xed\x58\x44\xef\x60\x97\x0f\xfc\x16\x8b\xbd\xaa\x82\x05\xd1\x73\x00\x9f\x01\xac\xab\xbe\x1d\xa6\xbd\x89\x30\xc0\xcf\xae\xc5\xe1\x38\xd0\xfa\x37\xe4\xbf\x3a\xda\x5e\x20\xc7\xce\x60\xbe\x61\x49\x90\xb7\xb5\xb6\xd4\x79\x6c\x08\xbf\x08\x4b\x84\x63\xe8\x21\xdc\xcc\x86\x30\x4c\xfa\x8a\xa8\x6b\xdd\x6d\xb2\xd1\x3b\x0e\x3c\x04\xce\x30\xff\x3d\xe0\x43\x57\x38\x1c\x0e\xc7\xe0\x32\x66\x98\xb7\xed\x0b\x7c\x39\x6b\x63\x0c\xb3\xdc\x9a\x6b\xef\x8b\xc2\x1b\x75\xb7\xdb\xc6\xdc\x53\x15\xb2\x57\x16\x1d\x69\x20\x69\x1f\x11\xd0\xad\xea\x96\x78\x3d\x84\xed\xb5\x1a\xd9\xf5\x01\xd8\x66\xbb\x2e\x28\xe4\x00\x47\x3d\xeb\x03\x6a\x5f\x64\x7d\xc3\xfe\x06\x28\x6f\x87\x3a\x9a\xbb\xb0\x03\xcb\xcb\xf2\x3b\x96\xcb\x0d\x2d\xed\xf9\x6a\x15\xe8\x31\x5b\x84\xb8\x5f\x76\x32\x55\xc5\xc6\x5b\xfe\xdb\xcb\x8e\xd4\xb2\x23\x91\x77\xa4\x5d\xd3\x8b\x8f\xb9\x6c\x64\x1c\xd9\x76\x8d\x13\x9d\x80\x4e\x8b\x05\x3a\x03\x42\xc4\x49\x43\x39\xc2\x3b\x06\x66\xc0\xaa\x86\xf9\xa9\xde\x61\xa7\xb7\x46\x09\x1d\xef\x32\x41\x19\xe0\xae\x07\x45\x72\x1c\x50\xe3\x19\x78\x42\x2f\xf6\x97\xc4\xfc\x05\x6b\x0b\xf3\x7b\x2c\xe8\xa5\x3a\x5d\xe2\x09\xdd\x09\xba\x04\x13\x0b\xcb\xc3\xf2\x4e\x78\xbb\xfc\x4f\x99\xe8\x2c\x78\x48\x0c\xe2\x0d\xda\xac\x81\xe6\x2c\x70\x0f\x4e\x92\x6e\x73\x0a\x28\x3e\x83\xff\x53\xa7\x53\x6e\x34\x70\x1d\x77\x6a\xfc\x13\xcd\x3e\xbe\xcc\x76\x55\x95\x50\xfb\x9b\x98\xbf\xa0\x42\x7b\x97\x52\xab\x1e\xc0\x4e\xd0\x35\x15\xaf\x32\x1b\x8f\xf3\xc3\xa5\x17\x14\x45\x7b\x06\xc2\x4c\x3b\xa7\x22\xda\x4f\x8f\x74\xda\xef\xf5\x81\xb2\xb1\x21\x6a\xc5\x19\x4f\xc5\xed\x09\x2d\xc1\xdc\x83\xeb\xa7\xb6\x8e\x70\x43\x08\x71\x86\x8b\xc7\x54\x6e\x9c\x96\x8d\x1e\x00\x9f\xe9\xaa\x29\x4d\xb8\xf6\xff\xa0\x4e\x89\x93\x6d\xe5\xc8\x61\x93\x9a\x04\xd4\xf0\x33\x57\xed\xb6\x9e\xa2\x6c\x96\xe9\xeb\xc9\xac\xc7\x8e\x03\xfe\xa0\xa9\xa0\xc7\x45\x56\x96\xff\x1d\x4a\xe9\xea\x57\xe8\xc3\x8e\xeb\xc0\x64\x9e\x5f\xb9\xb7\x9a\xd2\xfa\xff\xaa\x26\x57\x3d\x76\x6b\x5d\xf8\x3f\x94\xac\x7e\xa7\x92\x55\xbd\x84\x20\x1d\x7d\x9c\x15\xc5\xe3\x0d\x5d\x7e\xfc\xbf\x43\xd2\x1a\x28\x27\x58\x2b\x82\x35\x95\xcb\x8d\x1f\x54\x60\x11\x68\xfe\xb6\x14\x03\x04\xa1\x1a\xb2\x8e\xdf\xbe\xfb\xfb\x1b\xeb\x75\x05\x33\x32\x8f\x9e\x71\xb1\x7d\x92\xc9\x2c\xc2\xd1\xb3\xbc\xa0\x6f\x69\xb6\xa2\x22\xc2\xd1\xa3\x82\x5f\x44\x38\xfa\xf1\xed\x8b\x77\x34\x13\xcb\x8d\x89\x7d\x8d\x23\x2d\xba\x8f\x70\x04\xef\xf8\xa3\xfd\x7a\x4d\x45\xa4\x88\x5e\xd6\xf3\xa1\x24\x84\xb9\x82\xab\xbb\xcc\x64\x32\xb7\x43\x8e\xbe\x85\x0e\x54\x43\x6f\xe9\x3f\xf7\xb4\x94\xf0\xab\xdc\x71\x56\x52\xd5\xe8\x05\x17\xf2\x31\x67\x52\x28\xbc\x56\x44\x0b\x84\x70\xde\x56\xd4\x10\xe8\x96\xce\xc5\xe2\x98\x4a\xb9\xba\xd1\xb7\x8d\xcd\x3f\xc2\x77\x53\xcd\x1c\x42\x36\xad\xd4\x8d\x13\x79\x38\x04\x6f\x62\x97\x9f\xa7\x1a\xe0\xa1\xdb\xe6\x69\xb0\x22\xf2\x23\x63\x84\x60\x42\x56\x43\xa7\x74\xba\xeb\xb7\x87\x3b\x8f\xb0\xe3\xa5\xf8\x30\xb8\x16\xa8\x37\x91\xbf\xb6\xb0\x03\x78\x87\x10\xc8\xcf\xd7\x10\x2a\x2d\x27\xc3\x25\xd8\x68\x02\xad\x54\x17\x4a\x20\x94\x9d\x7d\x41\xb7\xf9\x3a\xe9\xe8\x19\xd5\xaf\x44\xab\xaf\x63\xcc\x9b\x7c\x0d\x1c\x1b\xf0\xb4\xed\x3f\x58\xc2\x06\x25\x60\x60\xdb\x68\x65\x19\x79\xb9\x53\x28\x10\x0c\xf1\x33\xda\x78\x60\x63\xa5\xee\x7e\xc7\x40\xbd\xf7\xcc\x3f\x89\xdd\xee\x19\x9c\x06\xbc\x71\x1d\x06\x3a\x7a\x36\x5c\x8f\x37\x47\xe8\x4c\xdd\x9f\x09\xe6\x35\x7f\x28\x3f\xe5\x27\xf9\x70\x88\x44\xc2\xe6\xb9\x63\xff\x0c\x9c\xda\xfd\x1b\x01\xf1\x04\xe8\xea\xe0\x98\xc5\x98\x1d\x37\x39\xef\x3c\x9a\x46\xfb\x98\x92\x3b\x5e\xb1\xff\xaa\xda\x2f\xf5\x4f\x98\xb0\x34\xde\x71\x63\x8e\xec\xc2\xe8\x8f\x59\x4b\x8e\xbb\x01\xfa\x1d\x2d\x71\x06\x6d\xb9\x96\x80\x78\xb9\xbb\x2d\xea\xee\x96\x7b\x1a\x81\xf9\x13\x5c\x35\xa7\x51\x6b\x09\xd7\x0e\x11\x59\x83\x00\x06\xa0\xf6\x2e\xbf\x64\x59\xb1\x88\xbe\xfc\x54\xea\xc5\xd0\x7c\x77\xb5\xca\x56\xd8\x6b\xd6\x08\x30\xa1\x36\xe6\x6f\xb8\xab\x50\xc8\xc8\x02\xcd\x97\xe7\x66\x43\xd1\x61\x1f\x40\xd5\xd2\xf7\xe1\xf1\xd9\x3d\xf6\x50\x59\xdc\x1c\x3f\xec\x7b\xd0\x85\x53\x8f\x3b\x6a\xb3\xf0\x9f\x83\x99\x25\xac\x64\xbd\xb1\xf4\xba\xcf\xfe\x4b\x30\x53\x9f\x93\x2f\x11\x4a\x03\xfb\x13\x82\x01\x99\x5a\x9e\x14\xba\x8b\x3e\xb1\x94\xf0\xac\xa9\x71\xa2\xda\x98\x25\x2d\x43\x61\xd3\xb6\x5e\x52\x84\x40\x83\x2a\xe8\x0f\x0f\xa6\x78\x30\x45\xe9\x91\xaa\x7a\xd9\xc0\x29\xa2\x42\xa6\x4c\xa5\x94\x92\x5b\xf5\xed\xa6\x7a\xb1\xbf\xb8\x28\x68\xa9\x6e\xd7\x52\xe1\x28\x85\x41\x9e\x0e\x26\x78\x38\x2c\xf0\x38\xd8\x60\x5f\x9a\xfe\x3b\x4f\x7e\xfd\x9c\xab\xd3\x6f\x45\x5b\xbf\xd7\x78\x2c\xc9\xeb\xd3\x37\x6f\x17\x58\x90\x16\xee\x80\xd9\x17\xd5\xd0\x17\x33\x0a\x89\xdf\x4e\x37\x17\xe3\x0f\x1f\x9e\xbd\x7e\xfb\x58\x5b\xc4\x3e\x7c\xf1\xe2\xc3\xc3\x47\xaf\xdf\x9e\x3f\x7e\xfd\xea\xfc\xed\xeb\x17\x2f\x9e\xbe\xfd\xf0\xe6\xf5\x8b\x5f\x9e\x3d\x7f\xf1\x62\x96\x28\x44\x95\x17\x74\x5c\xf0\xcb\x24\xfa\xd2\x6a\x44\x8a\x3d\xed\xe7\x65\xbf\xa4\x12\xf7\xaf\xf3\xa2\xe8\xaf\xb9\x58\x1a\x5c\xb2\x28\xfa\x3b\x5e\xdc\xac\xf3\x42\x0d\x76\x30\xe9\x64\xe0\xd0\xb1\x41\xab\x20\x1a\xb1\xf9\x7d\xd4\xac\x2a\xb1\x77\x09\x55\xd5\x80\x8e\x1b\x0b\x78\x40\x09\x85\xc0\x97\xcd\x0c\x92\x63\x93\xa6\xd7\x8e\x30\x74\xa8\xc5\xda\x72\x26\x53\xaa\xe8\xea\x93\x8e\x58\x1f\xb7\xa5\x87\x4d\xa6\x2d\xf4\x52\xbd\xb9\x18\xf4\x51\xd5\x81\xb4\xb8\x66\xae\xe3\x1a\x5a\x3d\x55\xf5\xad\x73\xf0\x45\xc1\x2f\x52\x1f\x71\x35\x45\x01\x7b\xd5\xbf\x7d\xcd\x05\x71\x73\xeb\xfb\x82\x29\xf8\x05\x1e\x4c\xcc\x0d\x76\xfb\xac\xae\x41\x82\xf0\xda\x20\xc6\x69\x8d\x22\xc3\xe8\xb2\x1a\xed\x4d\x03\x1c\x58\xe5\x1e\x34\x57\xdc\x2b\x83\x34\xc9\x3f\x77\x57\xe2\x39\x93\x7f\x85\x6a\x8b\x08\xbb\x44\x70\x0b\xd1\x9d\xea\x3b\x8b\xf0\x33\x9f\x33\x39\xfd\x4b\x67\x95\x8e\xe4\xe7\x4c\x3e\xb8\xdf\x59\xb8\x23\xf9\x59\xc1\xb3\xa3\xe9\x7f\xf9\xb3\x49\x5f\x60\x4e\xbc\xe9\x8f\xf3\xf2\xef\x39\xbd\xae\xaa\x6e\x3d\xe1\x3a\x84\xd4\x67\x19\xc0\xe8\x6c\xd4\x88\xe1\xa4\x89\xd3\x96\x11\x24\xf0\x1a\xdf\x39\x01\x04\xbe\x37\xff\xf7\x6c\xf4\xdb\x64\xf4\xb7\xf7\xa3\xff\xe9\x0f\x7f\x8c\xff\xf4\xd5\x70\xfc\xef\x1f\xfe\xa3\xfa\x9f\x17\xf7\xf2\xb1\xa4\x5a\xfa\xd2\x49\x87\x59\x5d\x00\xe7\x8a\x41\xe1\x7e\x1b\x38\x50\xfd\x75\x4e\x8b\x55\x9f\x65\x5b\x1a\x79\x48\x8d\xe4\x2f\xf8\x35\x15\x8f\xb3\x92\x26\x1e\x3d\x58\xb6\xb9\xe7\xc7\x87\xeb\x79\xed\xda\x7b\xf6\xc4\x8c\x7e\x6a\x69\xcf\x48\x42\xc7\x3a\xd6\x3b\x72\xe6\xe1\x9c\x51\xcf\x83\xaa\x81\xc4\xf2\x50\x1b\x11\xb3\xb1\xbd\x48\x0a\x71\x98\x37\x94\xbd\x17\x1d\xba\x98\x12\xc2\xc2\xb9\x51\x15\x4e\x33\x6a\x9b\xed\xc8\xed\x01\x07\x44\x6d\x31\xa3\x1d\x0a\xf4\xce\x0f\x9f\x56\xd9\xd3\x78\xaf\x71\x3a\xda\x72\xa3\xd8\xd5\x40\x58\x9d\xce\x27\x0b\x4c\x75\xe0\x3f\xdd\x08\x75\x34\x5f\xc8\x3e\x7b\x95\x6d\xa9\x5a\xfe\x76\x93\xed\x11\xcd\xa5\x6b\xcf\x0f\xeb\xa4\xcf\x19\x05\x01\xd5\x8f\x25\x5d\x21\x87\xc2\x77\x3b\xec\x79\x58\x08\x9a\xad\x6e\xfa\xea\xff\x08\xa1\x5e\x5d\x93\x0c\x26\x75\xc3\x6b\xdf\x1d\x3a\xbd\xee\x7b\x2e\x94\x40\xba\x41\xc7\x9c\x15\x3c\x5b\x05\x41\x96\x13\x08\x50\xb1\x2f\x24\x44\x25\xe2\x8c\x86\x8e\xa2\xd1\xad\x48\xa8\x8e\x9b\x85\x0e\xbe\x07\xab\x4d\x7d\x92\x54\x5f\x35\x64\xc4\x82\xf8\x8c\x42\x39\x56\xa3\x7e\x58\x7a\x37\x38\x09\xc3\x5c\xad\xdc\x7a\x80\x20\xdd\x71\x8e\x6d\x38\x4c\x4d\x3c\xe8\x6e\x6a\xf0\xa5\x96\xef\x46\xd2\x17\x5a\x63\xa3\xee\xad\xa4\x7a\xf9\xfc\x92\x08\x61\x39\xbe\x80\xbe\xeb\x6e\x77\x0d\x95\x98\x7a\x49\xa7\x5e\x98\x8e\x47\x7c\x75\xd3\xa1\xf7\xa2\x0b\xa8\x2a\xcf\x59\x2e\x09\xc5\x74\xd6\x61\x28\x52\x97\x02\x4d\x46\x9a\xb2\xb1\x7a\x47\xe2\x58\x3d\x08\x1e\x60\xca\xcb\x80\x11\x84\xbc\x8a\xaa\x24\x54\xb4\xaf\x44\x1c\xdb\x57\xe2\xcb\x1a\xb0\xa5\xa1\x11\xff\x4d\x8c\xe3\xc6\x9b\xf8\x65\xed\x9d\x1b\x35\x74\xa7\x51\x92\x06\xaf\x50\x1c\xdb\x39\x26\x89\x24\xea\x55\x57\x9d\x2b\x80\x7d\xb4\x79\x89\xd0\x2c\xa9\x3b\xf0\x0e\x0a\x59\xa9\x5d\xd6\xaf\x1b\x6e\x2c\xb9\x7d\x57\x93\x79\x67\xd5\x05\x6a\x0d\x2c\xf1\x1f\x91\xe3\x73\xad\x2a\xae\x4e\xcc\xec\xe8\x88\x6c\x70\x87\x7a\x35\x3e\x2f\x6b\x6c\x56\x89\x8c\xb6\xae\x86\xfd\xa5\x02\x31\x4e\x6b\x68\xa4\x5a\x50\x88\x52\x87\xd4\x6b\x16\xd4\x2a\x5b\xb5\x30\x68\x96\xdf\xdb\x15\x59\xce\x4e\xd4\x2b\x53\x52\x49\x7e\x3c\x7f\x36\xfa\x6b\xe4\x8f\xe1\x11\xec\x50\xf8\x0d\x88\xfc\x67\xdb\xef\xa8\x83\xfe\x0b\x07\xcb\x0c\xe2\xae\x09\x65\xbb\x5d\x91\x6b\xc9\xcf\xbd\x4f\xa3\xeb\xeb\xeb\x91\xba\x0a\xa3\xbd\x28\x28\x5b\xf2\x15\x5d\x35\xe7\x09\xee\x10\xcd\x19\xd4\x37\x5b\xdd\xa1\x16\xb9\xb5\xac\xc3\x50\xd2\xc0\x35\x43\x38\x45\x1f\x36\x6b\x17\x68\x8d\xfc\xb0\x8a\x77\x56\xda\x35\x3f\x7f\x66\xc3\xc6\xec\xdd\x6d\xab\xc4\x2c\xf9\x5e\x21\x0b\x10\x81\x2a\x5b\xf5\x6d\xc1\xbe\xaa\xd5\xcf\xca\xbe\x9a\x72\x8d\x46\xdc\x3d\x02\x75\x20\xb5\x88\x1e\x1e\x2f\xef\xb0\x1f\x53\x1e\x6c\x8c\x7b\x66\x96\xb2\xaa\xba\x16\xc9\x5f\x91\xd4\xed\x47\x62\xbc\xc8\x6d\x90\x8d\xb3\x0f\xf6\x2d\xcd\x5d\xc2\x12\x33\x9c\xfb\x7b\x55\x8b\x94\x8e\xef\x95\xf5\x27\x68\xd3\x71\xeb\x8d\x62\xf0\x46\x61\xfb\x38\x81\xfe\x38\x45\x98\xfd\x8e\xcd\xec\xd6\x23\x6b\x3d\x3d\xa1\x03\x79\xa7\x61\xc8\xc8\xe4\x84\xd5\x82\x2a\xab\x27\x66\xd0\xb6\xf1\x5a\xf0\xed\xe3\x4d\x26\x1e\xf3\x15\xd5\x5e\x5e\xea\xbd\xfc\x95\xe7\x2c\x89\x22\xe3\x3b\xa6\x3d\xd2\x7f\xd9\x21\x02\x23\xd0\x8e\x43\x14\x1e\x1d\xb8\x6e\xf5\xeb\x64\x6c\x01\xec\xab\x73\xe4\x08\x81\xad\xad\x39\x02\x37\xee\x08\xfc\x5a\x72\xf6\x25\x35\xbe\x7b\xf7\xfa\xd5\x78\xa7\x2e\xbd\x39\xb5\x07\xcf\xc2\xcf\xa0\x5f\x0d\xa9\x36\x25\x19\xc4\xfd\x21\x65\x22\x6d\x70\x5b\x8b\x71\xce\xa9\x09\xc2\xac\x7f\x13\x31\x13\xc3\x08\xf7\xa3\xa1\x4c\xe5\x01\xfb\x4d\x6b\x25\x38\x12\x4a\x4a\x40\x2f\xce\xd5\x57\xdd\x2c\xc2\x5a\xbe\x08\xd7\x27\x56\xcc\x90\xb4\x39\x41\xe9\x9e\x59\x3d\x0a\x1d\x3f\x35\x68\x67\x93\x95\x47\x63\xe6\x6f\xb3\x5d\x93\xe4\x56\xad\xa3\xb0\x85\x92\x76\xba\xb2\x76\xe3\x86\xd5\x09\xab\x18\x2c\xb7\x43\x49\x00\x16\xd1\x31\xaf\xb7\xd9\x0e\x1d\x1b\x89\x00\xfd\x57\xc3\x9e\x76\x3d\x8a\x05\x16\x06\x37\x0e\x7a\xfc\x48\x6f\xca\x36\xb8\x9e\x2f\x82\xc8\xdd\x6d\xe4\x5b\x63\xb8\x20\x32\x00\xdd\x34\x45\xea\x84\x0d\x03\xe5\xf2\x9f\x69\xda\x35\x2c\xbb\x1b\xa6\x4c\x8a\xfc\x3f\xd5\xb2\x37\xe8\xb9\xc0\x72\x51\xb7\x1f\x10\x55\x45\x9b\xbf\x54\x93\x57\x1d\x23\xb1\x51\xdc\xe7\xd1\x93\xa7\x2f\x9e\x9e\x3f\x8d\x70\xf4\xcd\xd3\xf3\x08\x47\xdf\x3e\x7d\xf8\x24\xc2\xd1\xeb\x37\xe7\xcf\x5f\xbf\x7a\x17\xe1\xe8\xcd\xeb\x77\x2a\xfd\xcd\x8f\xe7\x91\x17\x7f\xf8\xca\x53\x79\x01\x00\x9c\x48\x22\xab\xea\xf6\x80\x00\x4d\xee\x19\xf9\x8a\x23\xd1\xae\x9a\x04\x4d\x27\xf5\x1b\x92\x31\xfa\xca\xed\x45\x41\xa8\xfa\xdf\x18\xf3\x08\xba\xa2\x4c\xe6\x59\x51\x12\xea\x7f\x61\x69\x91\x04\x2b\x3f\x32\x9f\x00\x5d\x8b\x84\xda\x6f\x64\x6e\xd4\x96\xca\x0d\x5f\x11\x6a\x7e\x98\x44\xbe\xa2\x2a\x89\xaf\x8c\x1b\x32\xcd\x95\x52\x44\x2f\xfc\xc0\x79\x55\x69\xcd\x06\x5a\xa3\x9a\x10\x1a\xd2\xfb\xc6\x01\xf9\xe5\x3b\x72\x55\x93\x71\x74\xb7\x83\xc2\xfe\x9c\xa4\xff\xa5\x1d\xf0\x86\x29\x51\x99\x6d\xe9\x88\x8b\xfc\x32\x67\x11\x1e\xb8\x59\x87\x88\x52\xf7\x1a\xc8\x23\x6b\x90\x08\x22\xcd\x6f\xd3\xa5\xfd\xd0\xa7\x82\x11\x31\x96\xfc\xc7\xdd\xce\xf2\x19\xf0\xd6\x31\x51\x18\x3a\x1b\x4d\x67\x2c\xb5\x08\x38\xac\xa0\x84\x3f\xb6\x2d\xf8\x59\x1b\x94\x99\x25\x95\xe6\x87\x29\x65\xd6\xd7\x98\xf4\xac\xa9\x10\xd6\x0a\x2d\x81\x41\x58\xfb\x0b\x37\x32\x38\xa9\x61\x2a\x8a\xe3\xbc\xfb\x64\x29\x2a\x0d\x1e\xb2\xac\x28\xf8\x35\x5d\xf5\xd7\x5c\xf4\xbf\x79\x7a\xde\xe7\xa2\xaf\x1a\x02\xd5\x61\x5a\x82\xc2\x70\x48\xdb\x25\x79\x18\x7c\x36\xa0\x69\xcd\x23\xe6\x71\x63\x44\xbe\x4d\x10\x88\xfe\x64\x12\xc5\x51\x07\x13\xc0\xd0\xb2\xb5\xd9\x82\x29\x4c\x22\x50\xdb\xb6\xdc\x95\xb1\xa0\xbb\x22\x5b\xd2\xe4\xde\xfb\xe1\xbd\x4b\x1c\xf5\x23\xd0\x93\x36\x8f\x3b\x89\xba\x0a\xf4\xa4\x65\x2d\xac\xa8\xc2\x7c\x7f\x7c\xfb\xdc\x79\xe3\x4b\x18\xc2\x1d\xa9\x39\x02\x67\x7a\xb2\x15\xe3\x56\x87\xec\xbf\x75\xc8\x17\x30\xf1\x9d\x97\x30\xbd\x65\x32\x93\xfb\xb2\xf6\xcc\x29\x4d\xca\xec\xfe\x64\x92\xda\x0f\xa3\x63\xff\x91\x78\x55\xce\xc8\xfd\xc9\xc4\xda\x09\x43\xca\xe9\x83\xc9\xc4\x6f\x54\xd3\x40\xf5\x6f\x60\x69\xce\xa4\x97\x9b\x46\xaf\xbf\x0f\x69\xa4\xd6\x21\xc7\xee\xce\x49\xf5\x7f\x55\x59\xa2\xaa\xde\x5c\x8a\x0e\x57\x1e\x74\x5c\x16\xbc\xd3\x33\xa9\x6a\xf9\x4a\xcb\x7c\x6e\xd5\xd5\x4e\x43\x5a\xf3\x80\x0e\xd8\x68\x0e\x5e\xf9\x82\x29\x93\x76\xe9\xa7\x5d\x7e\x61\x77\x97\x49\xd8\x07\xbe\xd5\x73\x4f\xbd\x55\xc2\xde\x72\x34\x16\x0f\x9b\x45\x48\xcd\xa2\x78\xeb\x84\xf0\x5e\x14\xa9\x5d\x1b\x35\xf6\xcb\x71\x8b\xa9\xa3\x9f\x27\x3d\x10\xb8\x85\xb6\xfb\x89\xdf\x69\x14\x1d\x7c\x56\x24\x9c\x11\x1b\x01\x4c\xbb\x05\xb8\x20\xf3\x07\x93\x29\x7e\x30\xb9\x8f\x1f\x4c\x1e\xe0\x07\x93\x7f\xc3\x0f\x26\x7f\x5d\xf4\x2e\xc7\x82\xae\x72\xd1\x8e\xd9\x92\xaf\x93\xd1\x94\x10\x72\xe1\x45\xfa\xf7\xd5\x96\x32\x76\xd9\x64\x96\xea\x01\xf5\xd5\xd9\x0e\x5d\x43\x37\x86\x5e\x2f\xca\x6d\xc1\x35\xc1\x98\xd2\x03\x84\x00\x1c\x3f\x79\xfd\xf2\xe9\xa7\x25\x05\xeb\x7f\x22\x83\x4f\x10\xb8\x41\xf0\xd7\x20\xd9\x30\xeb\xaf\x41\x3d\xd1\xaf\xdd\x85\x3f\x19\xcf\xb7\xe6\x51\x61\xd9\x96\x12\x69\x90\x4c\x13\xef\xda\xc0\x1d\x1b\x88\x1e\xfe\x36\x07\x76\x54\x39\x09\xda\xf0\x4f\xd9\xb1\x7a\x81\x23\x8c\xc6\x7c\x6a\x5d\x22\x88\x35\x7c\x84\x51\x28\x6a\x2d\x67\x73\x2b\x70\x0e\x4f\x59\x66\x40\x78\x1c\xdb\x5f\x56\x3c\xec\x02\x0f\x27\xed\x55\x4c\xb4\xe4\x8b\xae\xac\xc6\x0d\x4c\x25\x42\x1a\x41\xd1\x77\xfa\xe7\x97\x2f\xbe\x95\x72\x67\x44\x48\xbe\x8f\x35\x74\x6b\x64\xd0\x09\x3a\x94\x1d\xcc\x4b\x47\x22\x12\x7b\x06\xba\xae\x4e\xe7\xbd\x49\x28\x01\xae\xcb\xc3\xa2\xb0\x4a\x41\x46\x61\x28\x41\x1a\x92\x68\x78\x83\xa9\x07\x88\xc5\xec\x3d\x9b\xbf\x97\xfd\x85\x85\xc8\x06\xb8\xeb\x9c\x7b\xdd\xaf\x41\xe3\x1d\x48\x1b\xef\x80\x7e\x52\x7a\xda\x15\xbd\x16\xe1\xd8\x57\x20\x8d\x5c\xb6\x83\xfc\x0c\xe7\x1a\xa2\xa3\x43\x8f\x01\xf0\x8b\x84\x19\xff\x8f\x6f\x5f\x28\x38\x5a\xce\xc0\x4d\x86\x4d\x4a\x59\xc8\x64\xfa\x79\x64\x16\x7a\xa4\xca\x5b\x45\x51\xd7\x48\xb3\x85\xb4\xfe\xa9\xd6\xaf\x27\x12\x7d\xf3\x72\xcc\x14\x71\x51\x76\x71\x8c\x79\x93\x7f\xfd\x8a\xca\x6b\x2e\x3e\xda\x57\xb8\xbf\x86\x30\x89\x91\x6d\x40\x6a\x9d\x96\xff\x4a\x13\x70\x4a\xda\x0d\x7c\xe1\x61\x84\x36\x76\x94\x25\x99\xc5\x16\x33\x40\x49\x07\x13\x84\xa3\x9c\x2d\x8b\xfd\x8a\x2a\x5c\x24\xf3\x71\xb5\x59\x39\xbe\xce\xe5\xe6\xb1\x87\xdd\x0d\x26\x69\xc4\xb7\xb9\x6c\x95\x8d\xe3\xa4\xa3\xf4\x14\x61\xb7\xee\x6a\xaa\xb0\xf6\x1e\x03\xd5\x5b\x7a\x00\xbd\x9a\xa9\x83\x33\xb7\xa1\xdd\x52\x11\x60\xa3\x99\x4d\xd6\x67\xda\x28\x05\xe1\xfa\x0e\x27\xf5\x25\x6e\xb9\xb9\x30\xa2\xfb\x3d\x82\x95\x05\x94\x1d\xe2\x0b\x2d\x37\x0a\x38\xfb\x8b\xfc\x67\x42\x48\x09\x2c\x94\x9b\x77\x3a\x30\xbd\x6b\xb6\xd3\x4f\x81\x6b\xf9\xa0\xda\x2e\xd5\x79\x76\xd8\x45\x56\xbf\x85\x33\x05\xd6\x53\x2f\x01\x1d\xd0\xe1\xc3\xd8\xca\xa4\xc9\x60\x82\xe5\x18\xd4\xfc\x14\x12\xa3\x7f\x91\x0f\x58\x8e\xcd\x0d\x26\x05\x96\x56\x22\x4d\xae\xe0\xb7\x5e\x46\x72\xa9\x40\x67\x5d\x8a\x7a\xa5\xa8\x57\x0a\x53\xdb\xe8\x01\x25\xb7\x07\x6d\x1c\x66\x3a\x6a\xb3\x51\x20\xb9\x9f\x97\x80\x80\x1a\x4d\x83\xfe\xa8\xbf\xcd\x6e\x2e\x68\xff\x86\xef\x45\xff\x42\xf0\xeb\x92\x8a\xbe\xb6\xfe\x28\xfb\x99\xa0\x50\x78\xc9\xaf\xa8\xa2\x16\xfa\xf4\x8a\x8a\x1b\xb9\x51\x3f\x6f\xf8\xbe\xcf\x28\x5d\xcd\xcc\xdd\xe4\x7e\x90\x83\xcc\x23\xfb\xf9\x68\x84\xe9\xc1\xaa\x5b\x9e\xd3\x52\xce\x12\xff\xcb\x53\x85\xcf\x1b\xc1\x3d\x4d\x0b\x6a\xd9\xb9\x82\x25\xce\xb5\x74\xbb\x0c\x1f\x0e\xed\x62\x1b\xdb\x0c\xea\x19\x66\xb4\x23\x41\x38\x6c\x01\x90\x9f\x04\x05\xcc\xbe\x0c\x67\x08\xd3\x30\x02\x9c\x5e\x4e\xe0\x84\x50\x1d\x48\xd3\x8d\xc6\xf4\xab\xd9\x4b\x2d\xb8\x6a\x19\x2f\x73\xba\x00\xed\xc9\x40\x65\xf5\x5e\xf6\x6b\xf6\xe9\x88\xde\xaa\x1f\xbb\xd5\x8b\x5a\x6b\xee\xf9\xaa\xff\x1f\x75\x0b\xff\xd1\xbf\xd8\xcb\x7e\x2e\xfb\xd7\x59\xd9\x17\x54\x3d\xec\x10\xdd\xf5\x3f\x40\xf3\x7f\xe4\x15\x8c\xd4\x19\x45\x9d\x96\x21\x61\x54\x89\xae\x12\x97\x05\xbf\xc8\x8a\x99\xfe\xd3\x59\xa2\xa4\xc5\x7a\xa6\xfe\x4b\x35\xc3\xc4\xdf\xcd\x40\x09\x57\xef\xff\x87\x2d\x5f\xe5\xeb\x9c\x8a\x97\x19\xcb\x2e\x15\x59\xb7\xcb\x2e\xf2\x42\xe6\xb4\x24\x77\x96\xc8\x65\xc0\xc7\xf0\x36\xb4\xaa\x12\x4a\xa2\x07\xe3\xe9\x83\x08\xe1\xdb\xc3\xe1\x80\x92\x50\x91\x25\x5f\x27\xbf\xdb\x0f\x37\x6a\xf8\xe1\xa6\x89\x8e\x2f\x7e\xc4\xd6\xa4\xed\x8f\xdb\xb9\xbe\x73\x6e\xb9\x29\x3a\x01\x74\xb8\xaa\xf4\x82\xa3\xf1\x63\xbe\xa2\x2f\x73\x78\xa4\xb4\x93\xfe\x63\x6b\x67\x90\xe2\xec\x2a\xbf\xcc\x24\x17\xe3\x7d\x49\xc5\xc3\x4b\xca\xa4\x42\x06\x5c\xea\xae\xc8\xe4\x9a\x8b\x2d\x16\xe4\xde\x25\x5d\x7e\xe4\xef\xef\xbd\x5f\xd5\x82\x7f\xcc\xc8\xbd\x97\xef\x9e\x3f\xed\xbf\x5f\xdd\x73\x69\x39\xb9\x77\x2e\x72\x05\xf9\xdf\xdf\x4b\x66\xe9\xfc\xdf\x46\x7f\x5b\x54\xef\x57\xb7\xf7\xf1\x01\xbd\x1f\x8f\xbf\x12\x57\x3a\xa6\xc4\x3d\xf0\x41\xa2\x6a\x70\xc2\xaa\x2a\xc7\x19\xe1\x71\x9c\xb0\x59\xcb\x61\xce\x4b\xa0\xba\xff\x92\xe6\xf3\xe9\x02\xe1\x92\xdc\xd3\x61\x48\xde\xdf\xab\x3b\xdd\x93\x32\x8e\xef\xfd\x20\xd5\xf8\x86\xef\xc7\xef\x57\xc3\x3a\xaf\x20\xf7\x1e\x6f\x04\xdf\x52\xbf\xc2\x92\xdc\x7b\xbd\xa3\x22\xf3\xd3\xd6\xe4\xde\xc3\xdd\xae\xa0\x7d\x45\x53\xee\x25\x15\x26\xab\x5e\x8f\x2b\xca\x56\x5c\x20\xbc\x21\xf7\x5e\x66\xcb\xfe\xeb\x77\xfd\x9f\xfb\xd3\xf7\xab\xf7\x4f\x92\xf9\x5f\xf5\x34\xdf\xaf\xd0\xfb\x27\x75\x93\x2b\x72\xef\xcd\x26\x63\x92\x6f\xbf\x7b\x57\xa7\xee\x4c\x47\x7a\x1e\x2e\x3d\x8e\xef\xbd\xe4\x17\x79\x41\xdf\xdf\x7b\x7f\xed\x4d\x60\x4b\x76\x55\x75\xef\x21\x5b\x09\x9e\xaf\xaa\x6b\x7a\xf1\xfa\x5d\xf5\xa8\xc8\x96\x1f\x1f\x51\x21\x6e\x2a\x98\x47\xff\x65\xce\x72\xfb\x93\x5f\xe4\xd5\xf3\xa7\xba\x2d\x6f\xb7\xae\xa0\x9d\x97\xd9\xd2\x34\x2d\x11\xbe\x21\xf7\xde\x5f\x3c\x16\xaf\xdf\xbd\xbf\xa8\xfb\xbb\x24\xf7\xae\x73\x66\x2b\x4a\x84\x2f\xc8\xd2\x59\x3c\x25\xf7\xfe\xae\xc3\x86\xbc\xbf\x97\xbc\x5f\x7d\xa5\xd6\xfa\x2b\x74\x0f\xf5\xd4\x23\x7e\x41\x5e\xed\xd5\x8d\x4b\x2e\xd4\x4e\x21\x7c\x11\xc7\x17\x67\x64\xfa\x75\x1c\x27\x4b\x32\x98\x62\x85\x35\x68\x48\xff\x81\x5c\xc5\x71\xb2\xaf\xaa\xa5\xda\x72\xe0\x42\x5d\x54\xd5\xc5\xe9\xf4\xfe\x78\x3a\x45\x08\x5f\x13\x51\x55\x3c\x8e\xb3\x33\xf2\x37\xfc\x54\xd5\xfd\x44\x06\xd3\x46\x68\x73\x63\x15\x20\x1b\xe1\xb2\xdf\x39\x83\x2c\x05\xf5\x74\x49\x4d\x91\x70\xed\x11\x8d\x48\x22\x67\xd7\x3c\x91\x08\xf4\xc2\x79\xf2\xb3\xd0\x71\x8a\xf0\x73\x8f\x61\x6e\xac\x78\x5a\x72\x49\x11\xc7\x89\x96\x73\x5c\xe5\x89\xc0\x9a\x3f\x84\x35\x4f\x68\x5c\xe4\x8c\xbe\xa3\xbb\x0c\xd8\x95\x96\x35\xb5\xe2\x4b\x13\x68\x49\x7b\xef\x7c\x37\xce\xd9\x6e\x2f\xdf\xc9\x9b\x82\x96\x73\xe9\x7d\x2d\xb4\xec\x07\x9b\x28\x4c\xab\xbc\xdc\x15\xd9\x0d\x54\x7a\x9d\x50\xb0\xa8\xe9\xe5\xe3\x6b\xa1\x10\x64\xe1\x5f\x76\xa0\xe7\xdf\x98\xda\x2f\xcd\x5f\x3d\x9c\x9f\x54\x69\x88\x49\x95\xf8\x8d\xba\x56\x40\x57\xf4\x55\xb6\xa5\x43\x12\xf5\xeb\x26\x47\x2a\x3f\x02\xcf\x03\x7b\xc9\xc1\x9f\x43\x1c\x0f\xb6\x5a\xe9\x68\xb7\x97\xce\xe7\xc5\xb7\xb6\x37\x4b\xb5\x53\x72\xfb\x91\xde\xbc\xcc\x76\x65\x3a\x5f\x60\xf5\xec\x17\xd9\x0d\xfc\x56\x2b\xf5\x0d\x65\xe9\x04\x52\xaf\x45\x2e\x41\x17\x79\x45\x8b\xec\x26\x67\x97\x8f\x8a\xbd\x00\x2c\x4a\x25\x42\xf3\x74\xa5\x7e\x96\xfb\x1d\x18\xc2\x3c\x5d\xe5\x12\xd4\x2b\x77\x59\x29\xe9\x73\xb6\xe4\xdb\x9c\x5d\x82\xbe\xe5\x5e\xfa\x9f\xda\x7d\x44\xce\x2e\x81\x26\x52\x3d\x88\xec\xf2\xd2\xfb\xde\xe4\x97\x9b\x22\xbf\xdc\x48\xcd\x53\xe0\xf8\x23\xbd\x79\x47\xff\xa9\xd5\x99\xcb\x1d\x5d\xe6\x59\xf1\x78\x93\x89\x52\x4b\x26\x8c\x57\x40\x09\x1e\x1a\x8c\x34\xa0\xe8\xe7\xac\xaf\x4e\xe8\xe9\x74\x1a\xc7\xdd\xda\xea\x7b\xb7\xd8\x7a\xc9\x04\x2d\xa9\x4c\x06\x13\x74\xc0\xf7\x27\xe1\x8b\xe2\x9c\xc8\xea\x0a\xbd\x5f\xf2\xc4\x7a\x08\xa3\x02\x47\x5b\xae\x16\x83\x5f\xb3\x08\x7f\x2f\x13\x8a\xf7\xea\x70\x35\xca\xac\x2e\x0a\xe3\x1c\xcb\x0c\x6b\x06\x45\x7d\xd6\x3e\x58\x4e\xe9\x50\x05\x96\x58\x2b\x85\xbe\x20\xf9\x3a\x11\x71\x3c\x58\xea\xcf\x38\x1e\x64\x22\x71\xc3\x81\xf2\xdf\xe6\x89\x73\xad\x4d\xc7\xeb\x9c\xad\x7e\xe2\x62\xf5\x50\x26\x02\xf5\x1e\x51\x55\x98\x2f\x31\x1b\x67\x6c\xb9\xe1\x02\x6b\x52\x0c\xa9\xc7\x33\x34\x02\xb1\x91\x12\xa0\xb9\x03\xea\x5d\x57\x55\x63\x22\x4b\x1d\x8f\x66\x4b\xd9\x3e\x0a\x86\xff\x52\x0f\xee\x60\xee\xa8\xa2\x85\x29\x5b\xa5\x93\x43\xe8\x37\x43\x82\x67\x9b\x2b\x7a\xce\xf7\xcb\x0d\xdc\xd6\x23\xb1\x1e\xfd\x72\x3a\x90\x1a\x9e\xd2\x07\x08\x27\x8c\x04\x79\x68\x4c\xd9\x8a\x0c\xd5\x59\x79\x92\x49\x1a\xea\xa6\x19\x38\xa4\x81\x98\x1c\x17\x74\x6d\xad\x27\x06\x13\x07\x4b\x54\xea\x88\xc2\x1f\xac\x1a\x97\x7c\x37\x02\x1f\x6f\x4e\xe2\xf8\x95\x18\xb2\xaf\xd8\xd9\x9f\x27\x93\x43\x63\x39\xa4\x1a\x42\x29\x33\x45\x4e\xb8\xd1\xe7\xde\x66\xe6\x6a\xbb\x1a\xe8\xc9\x74\x00\x8a\x2b\xfb\xe5\x86\x5a\xdf\x50\x76\x54\xd3\x9e\x3d\x6c\x26\x7f\x3e\x59\x78\x1a\x4c\xd9\x2a\xdf\x97\x3f\x9f\x92\x69\x1c\xdb\xaf\x5f\x4e\xc9\xf4\x90\xe4\x08\xdd\x82\xd3\x2c\xbb\x94\xc2\x62\xed\x6e\x65\x7a\xe1\x92\xde\xc2\xa8\x53\x8e\x15\x7d\x04\x57\x79\x27\xe8\x55\xca\x47\x4c\x2d\xe8\x29\x79\x30\x99\xcc\x98\x11\xfe\x4d\x09\xc9\x1b\x03\x56\x10\xcb\x6f\x0f\x96\xaf\x2e\x35\x9f\x2c\xc0\xd3\xde\xcf\x38\x2c\x25\xf9\xae\x5d\xe8\x17\xe0\x24\x74\xad\xac\x1a\x5b\x84\x8f\x1d\x8b\xd6\x18\x60\x2a\x20\x0b\xe9\x6e\x8e\xb2\x95\xd7\x5a\xed\xdd\xc5\x6f\xc4\xf8\x31\x51\x57\x4c\x62\x81\xac\x35\x20\x83\x09\xc6\xf1\x80\xe9\x5e\xe2\xd8\xae\xeb\x88\x8d\x61\x29\x4f\x1f\x4c\x26\xc6\x6a\x15\x67\xe0\x62\x93\x8b\x55\xa9\x20\x55\x38\x4a\x1c\xa9\x39\x47\xa8\xc7\xc9\x80\x8d\xd5\xa2\x57\x55\x99\x30\xac\x7f\xeb\x50\xcb\xbf\x52\xa0\x51\x52\x53\xa0\x55\xca\x14\x0d\x6e\x7a\x86\x52\x53\x75\x45\x93\x0c\x9e\x17\x3c\x41\xf8\x85\xbd\xfd\x2e\x75\x38\xc5\x13\x84\x9a\x2e\x88\x12\x6e\xa1\x03\xd7\xd0\x01\xd7\xae\x93\xbe\xcd\x13\x81\x0e\x79\x72\x6c\x5d\xb5\x4a\x7d\x84\xf3\x56\xb6\xfe\xd5\xd8\x42\x9b\x3d\x5e\x16\x39\x65\xf2\x5b\xaa\xa0\x7d\x1c\x27\x3b\x00\x21\x75\xb6\x73\xc2\x88\xf0\xb6\x33\xeb\x85\xba\xb2\x83\x09\xc2\x3f\xe4\x09\xad\x3b\xa3\xa8\x63\xa0\x00\xa5\xaf\x37\x94\x16\x21\xdc\xba\xb0\x70\xab\x59\xe1\xc9\xeb\x97\x2f\x55\x9d\x77\xcd\x29\xb4\x2b\x99\xe7\xfa\xc8\x74\xed\x63\xee\xa6\x43\x9a\x69\x6a\x1e\x64\xa2\x29\x60\x91\x5d\x5a\x3b\xea\x52\x81\x50\x49\x45\x37\x8c\xfe\x09\x60\x34\xbc\xd6\xdd\x05\x1a\xec\x98\xd6\x93\x32\xb0\xca\x24\xe6\xdd\x68\x98\x57\x3c\x31\x9f\xcf\x44\x76\xa9\xa3\x31\xf7\x84\x34\x88\x0e\x76\xaf\x0f\x0c\xf8\xf1\x5e\x94\x5c\x80\xb5\x79\x3b\x99\xbc\xe4\x49\xb4\xca\xaf\x22\x8d\x87\x45\x1e\x1a\xb3\x84\x02\xa5\x8f\xd9\xa8\x7a\x26\x39\xf2\xbb\x01\xe4\x6d\x97\x2d\xe9\x38\x67\x25\x15\xf2\x11\x5d\x73\x41\x3b\x3b\xf4\x6a\xe9\x96\x9e\xe4\x57\x08\xf5\xde\xf0\xee\xd2\x4c\x3b\x65\x41\x18\x16\x14\x1d\xb0\x06\x8c\xfe\x92\xb6\x3d\x0b\x2b\x6a\x68\x40\x35\x4a\x35\xf6\x31\x98\xaa\x72\x00\x77\xb4\x16\xa7\xd3\xc9\x04\x05\xf6\x7a\xd0\x09\xc8\xad\xed\x36\x35\xdf\x72\xb3\x27\xe0\x36\x7b\x95\xc9\xec\x5c\x64\xac\x5c\xab\xb3\x42\xe5\x93\x4c\x66\x49\xa4\x5d\x4a\xd2\x86\xcf\x2e\x38\x3d\x7e\x79\xba\x5e\xd3\xa5\x7c\xa8\x25\x91\x04\xdc\xde\xbd\x04\x78\xda\xd1\xae\xc8\x2e\x9f\x6f\xb3\x4b\xaa\x1e\x2b\x7b\x54\xd4\xbe\xe5\xdb\x4b\xb3\x6f\x7a\xf3\xac\x3b\xd6\xb4\xbf\xce\x3f\xd1\xd5\x49\x5f\x41\xc5\xb4\x3f\x39\xe9\x4b\xbe\x53\x7f\x23\xd4\x13\xe3\x52\x2c\xb5\x2b\xf0\x34\x57\x8d\xde\xbb\xcc\xd7\x27\x17\x59\x49\xff\xf2\x67\xfc\x76\x52\x7c\xf3\xfa\x49\xb1\x79\xf8\xc3\xc3\x47\x0f\xd5\xbf\xc7\xdf\x7e\xfd\xe8\xe1\xd3\xef\x1f\x3e\x7c\xfa\xf0\x05\x24\xa8\xf4\xa7\x0f\x1f\x3e\x7c\xfe\xf8\xfc\xe1\xd3\x87\xaf\xaf\x09\x89\xb0\xa2\x44\xc4\xf8\x3a\x5f\xc9\x0d\x11\xe3\x0d\x00\x0c\x32\xf5\x36\xda\xde\x27\xdf\x6f\xaa\x40\x58\x8c\x3f\x80\xaf\xd6\x31\x07\x87\xaf\x00\x4a\xee\x98\x7d\x22\xf0\x44\xc1\xcc\x65\x1c\x0b\xcf\x57\x44\xe0\x62\x14\xd4\x8f\x4d\x60\x9e\x95\xe0\xbb\x14\x10\xb9\x8d\x40\xb8\xa0\xd9\x15\xed\xbe\x8a\x2b\x01\xd6\x44\x16\x57\x35\x28\xe7\x25\x95\xcf\x72\x5a\xac\x12\xa4\x50\xca\x3d\x8e\x3e\xd2\x9b\xfd\x2e\x84\x34\x0f\x85\x17\x09\x08\xc0\x8d\x2e\xe7\xe1\x9b\xaf\x0d\xbe\xa9\x33\x00\x1b\x37\x39\x1f\xeb\x1c\x00\xe5\x11\x7e\xca\x93\x73\x01\xc6\x70\x3a\xf9\xa2\xd8\x0b\x48\x7d\x0c\xa9\x07\x43\x2f\x78\xf0\x2b\x5f\x27\xdf\x72\x7b\x28\x7f\xc9\x8d\xdb\x0a\x60\x18\xe7\xbf\x85\x8f\xb3\xd1\x58\x00\xb5\xff\x6e\xac\x8e\x6a\x51\xfb\x6f\x3c\xe1\x02\x1d\x30\xdc\x0e\x3d\x2b\xdb\xac\x1e\x90\x57\xe5\x37\x35\x36\x55\xe8\x5b\x88\x83\x0b\xbc\x91\x43\x82\xf0\x23\xe9\xd3\x36\xcb\xbd\x78\xbd\x1b\x83\xed\xd0\x8f\xbb\x95\xa2\x73\x06\x13\xfc\x21\xd7\xb2\x54\xd1\xa2\x94\xaa\x6a\x3f\xde\x64\xe5\x33\xfd\xbe\xcd\xbc\xc1\xea\x05\xd2\x2d\xdf\x9f\xa0\xf4\xb1\x30\xdd\xfc\x43\xa0\x7f\x88\xa6\x42\x51\x81\xe2\xf8\x1f\x62\x5e\x2c\x8c\x7d\xe9\xbc\x58\x60\xca\x50\xef\xef\x8e\xca\x5b\xe7\x2c\x2f\x37\xcf\x59\x0e\x86\xfd\xf5\x97\x51\x24\xb4\x14\xcb\x86\x4c\x4e\x36\xa7\xdc\x59\xc3\x0e\x87\x1b\xc4\xd9\x7c\x63\x88\xce\xde\x8f\x76\xb6\xa5\x6a\x26\x24\x1d\x23\x45\x3a\x6f\xf3\xdf\x68\x41\x2f\x73\xe0\x9d\xdd\x44\x84\x5c\x52\x69\x58\x25\x2b\x20\x5f\x93\x1c\xaa\x29\x58\x08\x3a\x6c\x6f\x29\x5b\x01\xd3\x17\x0c\xcd\x4c\x96\xf5\x6f\xec\xe7\x93\x48\x2d\x5d\xe4\x21\xd6\xaf\x6d\x68\x35\x13\xdd\xcd\xc5\xf4\x80\x63\x4d\x18\xce\xcd\xbb\x76\x91\x89\x67\x39\xd8\x4f\x1d\x7f\x03\x5c\xc9\xd1\x1a\x8a\x46\xa8\x5d\xbd\xe1\x54\x71\xb9\x1d\x31\x2e\x47\x46\x3f\x37\xc2\x91\x14\x7b\x0a\xf5\x2e\xf7\x52\xd2\xcf\xf7\xa9\x8b\xf9\x1d\xfa\x15\xbf\xb8\x37\xb3\x68\x77\x3d\x70\x20\x2b\xc6\xd6\x69\x62\xce\x59\xbb\x7c\x13\xb0\x0a\x5a\x80\x3f\x81\x93\xfe\x6f\x23\x90\x4d\xa7\xfd\x29\xb4\xe1\x1e\xb3\xcf\xbf\xa8\x50\x7e\x4b\xb3\x72\x2f\xe8\x1d\xa5\x4d\x09\x37\x99\x97\xbf\xbb\x06\x3c\xc9\x75\xf9\xb9\xeb\x35\x6c\xb1\xb1\x02\xfe\x64\xea\x75\x5c\xdc\xb1\x14\x7c\x2f\x55\xa9\xb4\xcf\x38\xd3\xbd\x2b\x88\xec\xed\xf1\xdc\x1f\x83\x1b\xd9\x22\x18\xbc\x4a\x2e\x23\x74\xbc\x1f\xbd\x55\xf9\x6f\x41\xc3\xa6\xab\xb0\x29\x28\x54\x17\xff\x09\x5e\x26\x1d\x6d\xce\x3c\x4f\xcf\x14\x2c\x6a\x1e\xc2\x66\xc7\xd6\xa7\xf9\x49\x5f\x57\x4a\xfb\xd1\x30\xe7\xc3\x68\xf7\xe9\xa4\x0f\xaf\x5d\xda\x9f\xee\x3e\x9d\x78\x47\xb4\xfc\xec\xb1\x2e\xdd\xe6\x7c\x03\xdf\x76\x58\x16\xb3\x0d\xa6\x06\xa3\x6f\x8c\xb9\xee\x6b\xd1\x71\x53\xbd\xfb\xd9\xba\x2a\x32\xbb\x78\xae\x4e\x6c\x84\xa3\x91\x3e\xb3\xe6\x5d\x0e\xfb\x0c\x2f\x77\xe3\xf6\x79\xad\x07\xdd\x47\x48\xb3\x4e\xfe\x0a\xf0\xca\x0c\xd0\xc0\xab\xdf\xa0\x57\x32\x9a\x06\x43\xf3\xdd\xcf\xbf\x05\x8c\x61\x82\x70\x59\x55\x22\x8e\xb7\x55\x95\x78\x45\x01\x81\x73\xfe\x74\xe0\x01\xf3\x31\x89\x59\xf0\x95\xb8\x59\xa1\x94\x7a\x1f\x6a\xba\x57\x39\xbd\x7e\x26\xf8\x96\xe8\x9f\xe7\x9c\x28\x98\x2f\x4a\x89\xf3\xb1\xa0\x3a\x94\xca\xdf\xeb\x32\x7e\x52\x50\x56\x55\x26\xf3\x05\xd4\x52\x60\x58\x17\xb1\x3b\x49\x3f\x49\x2a\x58\x56\x98\xcb\xb5\xb2\xe9\xaa\x96\xf6\x6c\x4f\x26\xea\x08\x64\xa5\x54\xaf\x84\xa6\xaf\x48\x9d\xa0\x4f\xeb\xa4\x97\x8f\xf7\xf0\x56\xbe\xc8\x19\xd5\xcc\xe1\xd2\x36\xc5\xe0\x3e\x3c\xca\xcc\xc9\xce\xc7\x17\x99\x70\xed\x5c\xd8\xe4\x89\x0f\xaa\xcb\xc7\x45\xbe\xdb\x69\xbb\x25\x7d\xfe\x5e\xed\xb7\xb6\xba\xf9\x7c\xce\x18\x15\x8d\x34\xe0\xe5\xd9\x7e\xb3\x22\xbf\x64\x3f\xe5\xab\x4b\x2a\x4b\xdd\xd0\x32\x5b\x6e\xe8\x4a\x15\xb2\xf5\x74\x8a\x42\x82\xdd\x88\x74\xd2\x1b\xbd\xd7\xdf\xda\xc6\xb6\xd9\x27\x35\xb5\xc6\xa7\xb6\xd4\x82\xb1\x9b\x94\xc7\x20\x50\x36\x03\x07\x12\xf1\xc9\xcf\xc4\xfe\xfa\xc5\xfe\x7a\xa7\xc8\x82\x9f\x83\xaf\x5f\xdc\xdd\xda\xe4\x6b\xa9\xeb\x97\xb4\x78\xc6\x85\x09\xdb\xfc\x92\xb2\xbd\x9b\x5a\x83\x9f\x85\x19\x18\xbb\x07\x8a\x7f\x0f\xb5\x1b\xb2\x15\x5f\x6a\x05\xc7\x77\x0a\x47\x7c\x09\xee\x0b\x2d\x83\x1c\xd7\xd9\x3a\x88\x08\xc2\x10\x0e\xcb\xb5\xf1\xb1\x6e\x23\x94\xb7\x42\x32\x50\x2c\x0f\xd7\x12\x0c\x91\xfc\x4f\xe3\x6c\x9f\xea\x7b\x53\x9a\x5c\xf5\xd3\x38\xce\x47\xa6\xe7\xb5\xe0\x4c\xe6\x10\xef\x03\x3e\xe1\xc8\x72\x85\x6e\x2a\x74\x0e\x5b\xa2\xc8\xf0\x93\x87\x43\x4c\x35\x76\x16\xc7\xdf\xc9\x60\xa0\xe7\x35\x6f\xf5\x95\xac\x69\x20\x84\x55\xd3\x66\xb6\x01\xaa\x83\x19\x11\x71\xfc\x32\x93\x1b\xb5\x73\xc9\xd7\x1e\xfe\xdf\x60\x29\xc0\x51\xb9\xf7\xdc\x6f\x75\xf4\xc0\xe9\x6c\x35\x18\x75\x8f\x98\xe1\x90\xe4\x8e\x54\x9b\x38\x91\x77\xbe\x56\x57\x5c\x1f\x48\xe7\xb7\x25\x23\x93\x93\xec\xd4\xa5\x5b\xa4\x2d\x1b\x0e\x91\x4b\x9c\x67\x0b\x03\x55\xe3\x38\xe1\x43\xd2\x91\x51\x9b\x34\xcc\xf8\x30\x81\x79\x2d\x69\x5e\x24\x39\x20\x60\xa6\xd5\x7b\x0c\x55\xd5\x14\x7d\x25\x53\x3e\x94\x87\x7a\xf5\x1e\x07\x9c\x69\xbe\xc4\x82\x9c\x83\x7a\x57\x7b\xd7\x75\x29\xad\xfc\x35\x20\xd4\x0d\xeb\x5d\x6e\xc8\x8a\xba\xd5\x97\xe6\xf0\x1c\x93\x43\x90\x3b\xf2\x3c\x05\xa5\xf2\xab\xe5\x76\x54\x8e\xde\xbf\x03\x05\xa5\x08\x0d\xeb\x0d\x95\x1b\xea\x17\x4d\xfe\xbd\x7a\x5f\xa2\xf7\xe5\x57\xa0\xc9\x04\xb5\x22\x84\xdf\x85\x27\xe5\xad\x1a\xd5\x9b\x84\x22\x0c\x47\x08\x77\x13\x17\xff\x04\x7d\xf5\xfb\x13\xaf\xe2\x9b\x0e\xf6\xbd\x7d\x3b\x82\x63\x66\xd2\x7a\x6f\xb9\x22\xcf\xed\x3e\x6b\xe3\x18\x51\x23\xe5\xb5\x6a\xd4\x9c\x2d\xb0\x82\xd8\xfe\xc3\xf0\xb9\x97\x59\x3d\xee\x08\xf5\x9a\x28\x09\xd3\xa0\x37\x22\x24\x87\x5b\xe7\xb3\x3c\xcc\x13\xce\x31\x37\xef\x99\xa6\x81\x1b\xa5\x2c\xa0\x55\x07\x05\xc2\x92\xa0\x83\x34\xe5\x9d\x98\x6a\x16\x45\x69\x04\xd8\x13\xfe\x35\x58\xdc\x5f\xef\x58\x23\x43\x37\x43\xe3\x3d\xef\xb6\x29\xac\x21\x88\xdf\x02\x1c\x2c\x09\x7d\xd7\x2d\x3f\x31\xfc\xee\x09\x71\x87\xae\xbe\x60\xce\x54\x09\xf6\xc1\x3b\xf0\x98\x11\x7a\x22\xc9\x2b\x96\x30\x74\x82\x6e\x19\x49\x72\x78\x19\xd9\x2a\x99\xe0\xc1\x04\x21\x30\x4a\xd2\xfc\x4d\xa1\xee\x15\x7c\x2e\x37\xa3\x7c\x2c\xf9\x78\xb9\x39\xa8\x96\x75\x1b\xcf\x4d\x1b\x86\x4e\xf1\x1a\xe9\x89\x11\x61\x7e\xaf\x23\xd7\x8e\x6a\x34\x61\xc0\xa5\x86\x4e\x50\xa3\x98\xee\xc4\xde\xdc\x7a\xb6\xaf\x3a\xd6\x11\x1b\x28\xd9\x93\xee\x31\xba\xce\x13\x81\x85\x06\x9b\x8a\x40\x0c\x5f\xa5\x27\x89\x4b\xf1\x32\xdd\x03\x35\xc1\xa2\xfb\x7a\x0b\xf2\x04\xbc\xea\x9e\x35\x1a\x04\x16\x79\xd8\x85\xa8\xdb\x25\x34\xb8\xfc\xcf\xeb\x19\xdc\xf0\x84\xba\x8b\x72\xec\xc0\xa2\x93\xd1\x14\x7c\x3f\x52\x7b\x0a\x55\xf2\xcc\x55\x24\xee\x57\xed\x15\xed\x48\x53\x0b\x94\xca\xb3\xd1\x14\x7c\x78\x78\x6d\xc1\x7d\x68\xb7\x66\x0d\xb2\xb1\x97\xa4\xbd\x60\x49\x3c\x45\xde\x8c\x5e\x74\xef\x89\xec\x3a\xdf\x98\x11\x00\xc1\x82\xef\xd9\x4a\xbf\x08\xe6\xd0\x0e\x0b\xff\x21\x71\x0e\x09\x7c\xee\x75\x7a\x84\xab\x8d\x15\x4e\xe6\x8a\xd4\x20\xd3\x2b\xa1\xeb\xc1\x10\xd2\x16\x87\x5b\x8f\xcc\x7b\xd4\xda\x1d\xe9\x22\xaa\x1f\x5b\x20\xec\x46\xe7\x5f\x64\x42\xdd\xd1\xb4\x06\x79\xc0\xc0\xd3\xf0\x65\x26\xd2\x09\x5e\xf1\xa5\x19\x28\x33\x63\xb2\x9f\xc3\xb5\x82\xba\x43\x59\x23\x81\x38\xc4\x0f\x53\xd9\x40\x18\xb1\x5e\x5f\x9d\x29\xbc\x57\xeb\x99\xf5\x70\xac\xb9\x36\x5b\x27\x7b\x87\xef\x2b\x2a\x64\x17\x49\xe7\xd1\x4e\xdb\x9c\x8d\x6a\xca\x48\x11\x73\xfe\x91\xba\x72\xd8\x68\xe4\x04\xf5\x1b\x2e\xf2\xdf\x3e\xd3\xaa\xa5\xbe\xa6\x93\xc9\x1f\x4f\xfa\xaa\x0f\x97\xd2\xee\x64\xe3\x75\xd2\xa3\x09\x43\x18\xe2\x1b\xfc\x92\x27\xac\x53\x02\xc0\x1a\x72\x0e\x99\xb0\x5a\x16\x80\x23\x35\xe9\x7c\x99\x15\x91\xe1\x84\xe5\x9d\x8d\xe4\xfe\x6e\xaa\x36\x72\x5f\x06\x12\xc1\x24\x39\x93\xa6\x19\xbd\xba\x1b\xba\xfc\x48\x57\xff\xa0\x82\x6b\xd4\x79\x30\xad\x49\xa8\x7a\x69\x2c\x1c\xcf\x99\x41\xa7\xdd\x56\xd4\x39\xba\x7e\x34\xfd\x2b\xbc\x2d\x6e\x37\x7f\x4b\xd0\x6d\xfd\xf5\x6d\x88\x3b\xd4\x84\x41\xf0\xaa\xd5\xc9\x3a\x12\x50\x82\x5a\x68\x1c\x64\x66\xab\x15\x78\xad\x8a\xe3\xe7\x3e\xe3\xde\x8a\x5a\xee\xac\x83\xba\xdb\x34\x0a\x1e\x2e\x41\x21\xd6\xc5\xbc\xbe\x11\x2e\xc3\xe8\x7b\x84\x86\x77\x4d\xbc\x27\x90\x43\xc8\xae\x0e\x35\x41\xab\x65\x44\x81\x9a\x80\xcf\x11\x35\xe8\xb2\x51\xa9\x38\xa6\xad\x40\x1b\xda\x0a\x46\x32\x77\xc0\x20\xeb\x94\x5f\xc6\xb2\xf2\x14\x1e\x75\x38\x4d\xef\xd4\x10\x22\x66\x5a\xc8\x86\xd2\x9d\x91\x6e\x61\xfa\xd9\xbd\x79\xf1\xfb\xf7\xa6\x3e\x30\x8f\x7c\x13\x20\x05\xaa\x91\xf3\xdd\x69\x1b\xb0\xa4\xa6\x42\x0a\xfc\x44\x7d\x54\x7b\x3f\x6a\x61\x96\xc5\x25\x72\x32\x39\xc9\x4f\xff\x1c\xc7\x62\xd0\xd1\x46\x55\xb1\x41\x57\x2b\xda\xed\x60\x57\x0d\xf5\xb2\x75\x11\x22\x71\xfc\x9d\x42\x43\x55\xef\x30\x6c\xfc\xe5\x43\xae\x67\xff\xa3\x2f\x96\xab\x5f\x27\xd0\xc9\xaf\x97\x4d\x53\xe8\xe0\xc7\x24\x40\xbb\x02\xbe\x46\x22\x6a\x9a\x9c\x8d\x21\x0e\x9e\xc6\x03\x71\x67\xa5\x47\x5c\x4a\xbe\x35\xb5\xcc\xa5\x67\xe3\x0b\x48\x75\xf5\x7c\x8e\x50\x10\xe9\xcf\xd4\xb6\x15\x54\xf9\x7e\xc9\x8b\x7c\xd5\x97\x22\x63\xa5\x16\x9b\x44\xd8\x8c\x03\xd4\xc8\xa1\xe0\x2c\x11\x6d\xbe\x6e\x80\xa3\x46\x17\x05\x5f\x7e\x84\x41\x77\x96\xdb\x84\x43\x75\x33\xec\x2c\x7c\xed\xaf\x86\x46\x8a\xd3\xcf\x0e\x40\x0d\x5b\x37\xee\x6f\x3d\xa8\x47\xeb\x97\xf2\x15\xfd\x24\xcf\xf9\x3b\xdb\x8a\x5f\xca\x7f\x4f\x13\xd1\xe0\x28\x1f\x99\x67\x47\xa1\x23\x93\xec\x28\xa9\x67\x68\x71\x19\xd8\x7d\x37\xcf\xbb\x7a\xf7\x30\xf4\x9f\x1a\x01\x07\xac\xb6\x83\x18\x4b\xbe\x9b\x39\x4a\x5b\xa1\x9d\x92\xef\x50\x4a\x3b\x84\xf3\x3d\x83\x37\xad\x0b\xae\x10\xef\xd1\x5e\xba\x9b\x9c\xfb\x2d\x9a\x53\x60\x7f\xa4\x6c\x48\xbb\x11\x22\x4e\x1e\xe6\xda\xf7\x74\xa6\x7f\xe5\x56\x03\x4a\x8c\x29\x2b\xf7\xc2\xe0\x74\x25\xb1\xdf\x1e\x45\xb0\xaf\x13\x0d\xfe\xde\x2b\x4f\xf9\x2c\xe1\xa4\xb4\xcd\x7d\xcc\x93\x6b\xf5\xb7\x44\xe8\xc8\x10\x10\x4a\xf5\xdc\x73\x96\xec\xb1\x04\xc6\x99\xc2\x97\x13\x84\xce\x48\xa6\xe8\xf9\xb0\xa5\x3d\x42\xa3\x23\x2d\xe1\x8c\xec\xad\x37\xc6\x5b\x35\xcc\x94\x63\xc9\x53\xb7\xb4\x19\xe6\xc3\x29\xf2\x30\xa4\x7f\x1e\x43\x59\x15\x86\xa7\xa5\xc2\x3e\x93\xac\xaa\x6a\x64\x16\x68\x0a\x20\x45\x8f\x9c\xcb\xda\x5e\x9e\x91\x6f\x12\x89\x46\x9d\x1a\x15\x43\x8d\xfb\x7a\xe8\x45\x7e\x04\x63\xe6\x84\xe9\xf3\xa9\x19\x22\x22\x60\x84\xac\x93\x81\x00\x5e\x47\xbe\x5a\x51\x06\x5e\x9f\xda\x23\x8a\x63\x28\x73\x69\x3e\x12\xef\xcb\x1c\x5b\xd0\x2b\xe2\xd6\x4e\x0b\xf2\x61\xfe\xd9\x45\x01\x5e\x52\x6a\xae\xcc\x9e\x4c\x4e\xf6\xa7\x8e\x1b\xb3\x1f\x0e\x51\x39\xdf\x2f\x82\x76\x0e\x47\x46\x91\xc8\x06\x4b\x19\x8a\xb3\x61\x6e\xc8\xe9\x7a\x7f\xfe\x9e\xd8\x28\x76\xc1\xd3\x60\x08\x96\xb6\x1e\x97\x66\xcd\xfc\xe2\x31\xf0\x0c\x9b\x77\x28\x01\x36\x8f\xa6\xc8\x7f\x29\xe0\xa4\x9b\x29\x80\xd6\x91\xc7\x24\xb5\x84\x2c\xb3\x42\x96\x6e\xee\x43\x8d\xe1\x0a\xd4\x16\x80\x68\x8a\xab\xdf\x96\x86\xd1\x42\x46\x08\x61\xae\x28\x6a\x77\x90\x82\xed\xce\x48\xee\x7f\x8f\x78\xed\x78\xad\xe6\x55\x04\xc0\x09\x00\x6a\x9b\xf7\xeb\x4e\x3f\xc7\x41\x55\xbf\xf1\x0c\x0d\xa7\x75\x65\xfb\xb6\xb5\xda\x1a\x66\x98\x35\x38\xc9\xed\x42\x33\xbb\xa2\xe9\x68\x8a\x8f\x0e\x36\xec\x4c\x1f\xec\x5f\xd5\x3b\x3f\x98\x1c\x9c\xa3\x44\x77\x0e\x7e\xd1\xcf\xb7\x59\x01\x6b\x6d\xef\x9d\x85\x67\x5c\x6c\x33\xd5\x49\xa2\x6e\x14\x2c\x69\xcd\x68\xf7\x89\xd4\x6f\x02\x7b\x15\x77\x21\x2f\xa9\x7c\xa4\x48\xd1\x9c\x5d\x3e\x06\x88\xf2\x16\x1c\x9d\x5a\x75\x45\xfd\xae\xdf\x55\xa8\xee\xe1\xfb\x10\xcc\xd7\x87\x4d\xa3\xfa\x39\xbd\xde\x71\x21\x6d\xa0\xb2\xab\x1c\x5c\x23\x93\x9f\x12\xa6\x59\xbe\xd8\x86\x38\xa5\xab\x5c\x72\xf1\xbc\xfc\x16\xae\x34\x19\x30\x07\xf3\xfc\x63\x02\x45\x4d\x86\xc3\x2e\x3a\x21\xbd\x5f\xd2\xee\x70\x17\xf1\xaa\x15\xc4\x8b\xd5\x13\x3d\x6c\x5d\x74\x23\x9d\xd7\x12\x90\xfb\x13\x13\x77\x7a\x95\x6f\x4b\x22\xa9\xcb\x04\xb7\xd1\x25\x99\x2f\xea\xf5\xf8\xc3\x31\xd4\x4b\x33\x6b\x00\xc8\x86\x73\x75\x01\xeb\xc1\x69\xdc\x60\x6a\x2d\xb1\x54\xc7\x71\x2c\xed\x9a\xc1\x43\x74\x46\x84\x13\x04\xf9\x79\x92\x9f\x9a\x9c\x73\xee\x34\xeb\x45\x5b\x06\x53\x55\x1d\x89\x67\xae\x2a\x52\xef\x60\x20\x16\x32\x59\x71\x3c\x21\x24\x17\x75\x68\xaa\xc1\xb4\xf7\x77\xed\xd0\x54\x0f\x5b\x7a\x6b\x63\x1f\x68\x66\x80\x11\x83\x03\x85\x79\x7d\x37\xc3\x49\x8d\x6a\x70\x67\xcf\xcb\x4b\xe0\xfc\x61\x66\x79\x59\x19\x71\x8f\x66\x8e\xfd\x69\x0f\x8f\xd5\x55\x48\xad\x5d\xa9\x53\x1e\xc7\x7c\xe4\x7d\xdf\x9f\xc0\x43\xeb\xc6\x63\xfa\xc1\x75\x11\x85\x78\x9b\x45\x39\xcb\xd4\xaa\xe8\xdf\xa3\x4c\xd7\x0d\xc6\xe3\x56\x0f\xe1\x4f\xd0\xee\x6f\x96\xeb\xcf\xd5\xc8\xbf\xb5\x5f\x99\x59\x99\x3d\xe1\x03\x6f\x1f\xab\x2a\x1b\xb8\x1d\x50\x1b\x14\x0a\xd7\x06\xb5\x4a\x9f\x4e\xf0\x8b\xc0\x71\xf5\x4a\xc0\xf7\x49\xa0\x53\xd6\x75\x37\x27\x84\x30\xe8\xb0\x8e\x64\x75\x66\x52\x60\x08\xa7\xe6\x43\x0d\x6f\x96\xe8\xdf\xe4\x1f\xd2\x34\x87\xeb\x4c\x22\x51\x9a\xd4\x9f\x67\x72\x16\x16\xae\xb3\x90\xe5\xd3\xe9\x24\x94\xd6\x59\xa7\x12\x02\x8f\x40\x3d\x33\x2c\xcd\x85\x13\x9a\x58\x44\x61\x8f\xd8\x0e\xf4\x54\xcc\xc2\x5a\xa6\x07\xe8\xdb\x16\xc2\x02\xd9\xbe\xce\xf9\x99\x38\xd2\xd3\x04\x43\x5f\x02\x21\x84\x7a\xb6\x34\x01\xa7\xbd\x98\xe3\xcc\x1e\x06\x23\x01\xd5\xb8\x99\x79\x7f\xfd\x23\x53\x13\x65\x20\xd7\xf7\x43\x7a\x7b\xf5\x01\xfc\xc3\x49\x28\xf4\x9d\x82\x1b\xbf\x87\x3b\x56\xc4\x71\x7d\xf7\x8f\xdd\xc5\xff\xfc\xfd\x0e\x71\x88\x25\x79\xc2\x9d\x13\xd4\x7e\x71\xf6\x67\x50\x85\x0b\xf5\x75\x1c\x6a\x6f\xb4\x23\x3e\x73\xb4\x70\x4e\x3a\x91\x17\xed\x8e\x5f\xb7\x8c\x33\xc2\x3d\x3c\xc0\xb7\x86\xaf\x23\x42\x8e\x19\xfd\x24\xdf\xe5\x17\x45\xce\x2e\xed\x08\xcb\x38\xbe\x52\xe8\xa7\xa7\x82\xa9\x08\xc2\x9f\x36\x94\x16\x26\x00\x19\xd1\x2e\x36\xda\x23\x4f\xe5\x31\xad\x3b\x09\x9e\x3a\xad\x79\x87\x39\x17\x78\xe9\x5d\x01\xbc\x26\x93\x93\xf5\x69\x61\xd1\xbf\xb5\x0d\xb9\xb3\x21\xc5\x7c\x0d\xe1\x29\x37\x16\x17\x3d\xb1\x11\x60\x37\x10\x5b\x2a\x8e\xf5\x5f\xaf\x73\x42\xb8\x89\x40\x95\x0d\x88\xce\x3d\x41\x19\xd9\x27\x99\x06\x0f\x2b\x92\x5b\xca\x46\xc6\xb1\x3c\x25\x4b\xd5\x48\xbd\x96\xbd\xcd\x58\x9b\x29\x97\x71\x9c\xdc\xf0\xc4\x7d\xe2\x48\xa3\x5b\x11\x02\x76\x77\xb2\x02\xf3\x6b\x41\x13\x8a\x37\x78\xa9\x0e\x37\x5e\xc5\x71\xf2\x56\x55\xa9\x9b\x43\xd8\xff\x0a\xd0\xbe\x86\xd6\xee\x39\xfd\x04\x13\x48\x7c\x8c\x73\xa9\xae\x0c\xce\xcc\x44\xfc\x5d\xd3\x61\x63\x21\xe0\x13\x29\xea\x41\xf4\x78\xc8\xde\xda\xe1\x0c\x1d\x96\x43\xb2\x81\x57\xe2\xa0\x17\xc6\x2e\xc8\x41\x5d\xca\xf6\x89\x36\xcf\x0d\xc2\x9f\x39\xb3\x91\xba\xb8\xc1\x1d\x12\x66\x77\xe3\x58\x1d\xfd\x81\x5a\xdb\xa5\xc1\x30\x2c\x0f\x75\xe9\x74\xd3\xdf\xf2\x44\x78\x7a\xbe\xfa\xdb\x57\x36\x42\x8e\x7a\x2e\x43\x12\x3b\xe4\x8d\xd4\xfc\xcf\x09\xde\xeb\xf1\x86\xfa\x13\x0d\x08\x8f\x1b\x00\xbe\x01\xdf\xb5\x44\xfc\xcf\x93\x09\x3c\x52\x47\xf4\x2c\x7c\xa7\xb9\x3f\x34\x03\x48\x49\xf7\x58\x62\x46\x06\x93\x93\x84\x1d\x67\x47\xc9\x26\x76\x34\xd0\xe8\x51\x55\x25\x21\x4d\x0f\x16\x37\xb7\x92\xef\x6a\x02\xf7\xb8\xa4\x63\xb4\x02\x14\x4b\xd3\xfe\xc0\x66\xac\x51\xc3\x1a\x98\x18\x10\x8b\xf0\x20\x69\xe2\x41\x35\x14\x38\x86\x0f\x85\x25\x14\xf0\x43\x71\xac\xd1\xb3\x13\xa6\xae\xc6\xed\x77\x89\x8b\x22\xf6\x42\xfd\xa4\x30\xa6\x47\x3a\xf4\xee\x3f\xe0\xcf\xc1\xfa\x78\x4a\x28\x8e\xf4\x52\x47\x21\xef\xd2\x3d\x4c\x5e\x87\x4d\x7d\x1c\x1f\x68\x99\xb7\xe5\x48\x69\xf5\xfc\x26\x7e\x9f\x76\xa3\xb4\x9c\x2e\xc2\xb4\xa3\x6b\xdc\x9a\x2a\x3e\x3e\x96\x8e\x95\x3b\x52\xfa\x9c\xb7\xd7\xb0\x3e\x54\x3f\xfb\x88\x2e\xa3\xd7\x9a\x12\x80\xb7\xec\x0f\xfa\x29\x85\xf5\xc5\x3f\xc0\x87\x11\xc5\x34\x96\x99\xe9\x65\x66\x08\xa4\x96\x2c\x2f\x37\x89\x4f\x0f\xff\xc3\x06\xe7\xee\x14\x0e\xd7\x42\x85\xb1\x93\x2f\x69\xca\xaa\xae\xd0\xc1\x69\x94\x60\x24\x71\xb4\x46\xe7\x75\xf6\xcb\x77\x30\x5e\x8d\x10\x2b\x94\x50\x7f\x17\x3a\xcd\x0c\x19\x2e\x16\x5e\x39\xdd\x71\xe7\x2c\xd3\xc3\xca\xc0\x63\xa6\xa6\xcb\x71\x69\xee\xec\x9c\xc1\x73\x33\x28\x1d\xef\x43\x5b\x0c\x64\xa7\x7f\xd5\x45\xf7\xa4\xd4\x90\xd8\x35\x3d\x0c\x12\x0c\x77\x3b\x27\xfb\x91\xc0\x82\xec\x6b\x28\x5d\xd8\x9a\x47\x08\xbf\x5e\x4e\x0a\xc3\x60\x1b\x15\x6a\x19\x0f\x1a\x87\xd0\x00\xc3\x2c\xd5\x08\x5c\x96\xe6\xa7\xf7\x21\x64\xd5\x2b\x99\x48\x84\x70\xb2\x3c\x1b\x4f\x26\xd3\xaa\x5a\x9e\x8e\xd4\x0f\x45\x36\xbc\xcb\x13\x5d\x51\xdd\x35\x4a\xcd\x07\xc2\xe0\x10\x44\x22\xc7\x79\xd1\x4f\xaf\x4e\xf5\xdf\x5f\xa8\xa2\x12\xe7\xeb\x05\x3a\x78\x87\x86\x52\xe7\x6b\xbb\xa9\x5b\x23\xc9\xe4\x44\x9e\xd2\xa6\x6e\xcd\x70\x28\x91\x4b\x9c\x4b\xab\x42\x43\x82\xb4\xc6\x23\x1e\xac\x66\xdd\x39\xd0\x3f\x47\x76\xfd\xf6\x80\x99\xfa\xcf\xe7\x78\x69\x4a\x14\x18\x61\x9c\x74\x71\xdb\x80\xfd\xc5\x4f\x38\xe1\xfe\xd3\x8a\x87\xc3\x0c\x89\x79\x4b\xc7\x64\x9e\x2d\x16\x84\x9b\xb1\x01\xbf\x8d\x7b\x5d\x0c\x73\xcc\x8e\xd6\xf1\x68\x62\x2b\x84\x06\x2e\xd6\x1b\x5e\xa6\xdf\x28\x1c\x49\x17\x3f\xe7\x32\x73\x02\xe5\x2e\xbe\x9d\x4e\x03\x79\xb0\x08\x44\xb5\x0c\xfb\x6f\x58\xb7\x28\xd9\xdb\x46\x40\x5b\x4c\x30\xc1\x50\x06\x23\x2d\xbe\xe3\xc2\x3b\xd9\x6b\xa2\x96\xd0\xe4\xcd\xf3\x45\x0f\xfc\x44\x47\x84\xf0\x19\xd7\x21\x14\x53\x8b\x20\xa9\xb4\xb2\xee\x20\x8d\x40\xd1\x08\x92\x33\x9a\xa8\x82\x7a\xe7\x55\x4a\x1c\xef\xa9\x51\x4a\x3f\xb8\xe6\xb5\xd5\xa8\x1b\x2c\xa3\x01\x9f\x05\xa2\x21\x1b\xcd\x13\x10\x50\x42\xc2\x97\xa9\x66\x83\x65\x12\x68\x85\xd4\x87\x4d\x3d\x1f\x8d\x24\xab\xe5\xa4\x11\x35\xdd\x83\xa9\xa8\x1a\x80\xd3\xea\xa3\x72\x36\xcb\x09\x69\x4d\x99\x40\xc9\xf5\x3e\xb2\x75\xeb\xa9\xe5\xb4\x93\xa1\xd1\x52\x14\xed\xd5\x11\x1f\x35\x3a\x46\x0c\x98\x9b\x25\xc7\x2b\x11\x63\x3e\x6f\xd5\xc9\x85\x53\xf1\x16\xe3\x8b\x7d\x5e\x48\x94\x72\xa3\x48\xe6\x06\xc4\x83\x01\x49\xbd\x30\x4e\x51\x0c\x33\x62\x46\xdc\xd3\x59\x6a\x18\x1a\x11\x4f\x4c\x98\x6a\x30\x73\x54\x18\xc7\x9d\x4b\x0a\xa5\x4c\x21\x5b\x58\x57\xc5\x6c\x7c\x71\x09\xf2\x46\x45\x78\x9b\x9f\x55\xa5\x55\x7e\x5c\xba\xfb\x98\x25\xae\x10\x71\x35\xb1\x57\x80\x78\x35\x31\x1c\x3f\x94\x6a\xb6\x71\x38\x35\x22\xbc\x55\xc8\x68\x2b\xb0\x8e\x85\x38\xa6\x8b\x99\xfb\x35\x8c\xfa\xd1\xd0\xf0\x0f\xeb\xf1\x46\x11\x4a\xc3\x34\x60\x4e\xa9\x8e\x1b\x1e\x01\x54\x99\x8b\x6c\xf9\xf1\x12\xd4\x57\xe0\x80\xd6\x9f\x48\xce\xfc\x4f\x6f\xb8\x32\x4d\x82\x9c\x23\xe4\x57\xd0\x58\xd0\xb4\x56\x0e\xed\x59\x82\xca\x43\x36\x00\x8b\xf0\x4b\x36\x44\xe6\xe1\x55\x93\xc8\x2a\x45\x41\x8f\xda\xc8\x4a\x75\x05\x93\x57\x60\x48\x2f\x18\xb4\x1b\xe8\x23\x86\x05\x52\x7d\x37\x06\xcd\x9b\xed\x55\x89\x22\x54\x5b\x59\xbb\x13\xe0\xfd\x0e\xf6\xc2\xa5\x06\xbb\xe1\x52\x7b\xb4\x79\x02\xa4\x2a\xe8\x59\xa1\x7b\x30\x12\x18\x8b\x97\xb5\xc8\x81\xb5\xc8\x5c\x93\xab\x0e\xf3\x65\xad\xbd\x5f\x7f\x3e\x72\xcb\x79\x77\x03\x8f\xbc\xed\x6a\xa7\xb9\x46\x61\x2e\x3a\x57\x0b\xe7\xad\x84\x01\x24\xce\x1d\x15\x3f\x6b\x53\x53\xef\x77\x3f\x1a\xb6\x3b\xc0\x91\x36\x18\x84\xf5\xed\x92\x9c\xb2\xb1\x7b\xd1\x46\x6c\xdc\x7c\xcf\x50\x60\x1a\x11\x0d\xdb\x25\xb4\xbc\x06\xe7\x0d\xf5\x8c\xd6\x4c\x2c\xd4\x38\xd8\x37\xc9\x1b\xe9\xcb\x4c\x7c\xa4\xc2\x44\x46\xec\xe0\x93\x54\x15\x47\xb7\x76\x91\xb4\x3e\xb0\xdb\xae\xcf\x2e\x90\x79\x51\xa3\x7f\xc5\x4a\x44\xda\x92\xb4\xa1\x1b\x52\x52\xf9\x23\xa3\x2b\x1d\x1d\x2e\xc9\x5a\x8b\x91\x79\x10\xb3\xb9\x3f\xe0\x91\x2d\xf0\x3a\xd2\xb5\x8b\x08\x77\x4b\xbf\xc0\x2d\x0c\x3f\xae\xe4\x07\x64\x53\x5d\x9e\x64\xdd\x02\x2c\x9f\x75\x21\xd0\xef\x93\x60\xd5\xcb\x6a\xd7\x4c\xa1\x39\xc7\x87\xd4\x38\x50\x2d\xbd\x5a\x4f\xd2\x04\x0b\x8e\x10\xe6\x0e\x57\x2d\xc9\xe4\xa4\x3c\x6d\x61\x6b\x35\xce\x5a\x5a\x7c\xbf\x8d\xd1\x95\x0b\x5c\x10\xde\x34\x28\xdc\x23\xb5\x80\xfb\x45\x0f\xfc\x5b\x76\x8b\xf7\x8a\x45\xd7\xb9\xba\x63\xf2\xfb\xe6\x2c\x99\xaf\x33\x60\xb2\x23\x14\x60\xe8\x06\x9f\x12\xe0\x72\xc1\xca\x5b\xb5\xc3\x05\xfb\x65\x40\x7f\x2d\x52\x36\xf0\xa8\x86\xe2\x27\xec\x84\xd9\x50\xde\x39\x61\x01\xbb\xb0\xb9\x23\x0e\x99\x63\xf5\xf9\x8b\xe3\x0e\x10\xc7\xd0\x61\x69\x07\xe7\x85\x6e\xf2\xc0\xac\xee\xce\xa2\x18\xce\x7b\x06\x60\x07\x06\xbf\xc8\x01\x49\xc8\xed\xab\x0a\x13\xb3\x08\x80\x4b\x55\x37\xc7\x01\x7a\xf7\xd8\xdb\x42\xee\x37\xd2\x08\x01\xf6\x20\x3d\x5e\x5a\x74\x14\xcb\x06\xae\xe6\xc6\xae\x5e\x83\x35\x7c\x68\x12\x4b\xd5\x1c\x4c\x74\x2c\x88\x52\xa2\x50\x07\x5d\x06\xb4\x95\xa2\x39\x4d\x55\xa0\xae\xd8\x42\xd7\x9e\x7a\x0b\xb2\x76\xa3\xc1\xb9\x79\x79\x9a\xa4\x16\x57\x20\x4c\x20\x45\xbe\x00\xed\x6a\xf2\x4f\xb2\x53\xef\x08\x67\x8e\x64\x9d\x67\xea\xc8\xd6\xe7\x70\x0f\x33\x6b\x4b\x98\xcd\x4e\xa2\xde\x7e\xbc\x81\xc8\xf7\xe0\x46\x01\x9c\x07\x95\x55\x55\xb4\x75\xd5\xf2\x4b\xc6\x05\x1d\x69\x41\x5d\x6d\x60\xb9\xa1\xc9\x1e\x17\x4d\x7f\x03\x5d\x30\xae\x40\x38\x8f\xe3\xfd\x38\xbb\xe0\x57\x74\xd6\xe0\x5d\x16\x8e\xff\x57\x55\x42\x03\xbe\x94\x07\x57\xab\x40\xf8\x1f\x60\x0d\x2d\xe8\x4a\x64\xd7\x81\xb8\x7f\x13\x3e\xdf\x0a\x99\xf8\x56\xab\xff\xa0\xdb\x44\xd4\x97\xa1\xaa\xfc\x2f\x32\x5f\x20\x64\x5d\xf5\x3b\x49\x9b\x4f\x5b\xf5\x64\xa0\x68\xe0\x60\xbd\x65\x75\x78\x3a\x47\x55\x95\xe4\x23\xd2\x7e\x02\xb0\x0c\xd5\xba\x5e\xe8\x96\x8e\xbc\x88\x32\x90\x75\x6b\xbd\x86\x43\xd0\x0f\x9c\xf0\x80\xd6\xf8\xba\xee\xc2\xd0\x40\x24\x72\x34\x10\xf6\xd6\x42\xf3\xc3\x9a\xf6\x00\x1d\xcf\x96\x85\x34\xcf\x3c\x1f\xc3\xd7\x3c\xb9\xd5\x5c\xbb\x8e\x10\xc5\xd4\x57\x84\x3e\xa3\x3e\x21\x3a\x9c\x82\xde\x9d\xaf\xab\xec\x0a\x18\x9e\xcf\x14\x64\xba\xa1\x6e\x32\x68\x58\x18\x05\x64\x4f\xcb\xb5\xa9\x9c\xd5\xcc\xd7\x4c\x15\x22\x67\x5a\xe5\x25\x8d\x26\x91\xd9\x58\x3a\xae\x95\xbc\x47\x89\x9c\xb1\x74\x62\x7c\x9a\x41\x75\x4f\x99\x22\xe0\x57\x79\xda\x55\xe1\x24\x46\x8d\x49\xe4\x86\x6b\x55\xfb\xf7\xef\x1a\xb6\x3f\xe2\x63\x5d\xaa\x31\x6b\x24\xbd\xa5\xfe\xdb\x39\x7d\xbf\x80\xd0\x3c\x73\x6f\xfa\xed\x32\x70\x96\x15\xce\x0f\xef\x4e\x2d\x42\xe3\x66\x8d\xb4\x66\x87\x2b\x30\x4a\x84\xb7\x58\xba\xa1\xd6\xd0\xf5\x79\x0d\x8e\xc1\x28\x3c\x06\xbc\xb9\x3c\x9d\xf3\x0a\x86\x7b\xa4\x17\xb5\x3e\x46\xf8\xd6\xa9\x41\x0d\xd1\x43\xbc\xad\x39\x9b\xc4\x71\x32\x21\x84\x19\x27\xf3\xbf\xd9\x82\xdf\x66\xcb\x8f\xc9\x51\x35\xec\x09\xc2\xb7\xb0\x9c\x29\xcc\x1f\x1b\x85\x38\x38\x39\x07\x08\xcd\xfe\xce\xe9\x5e\xa5\xa1\x8f\xd2\x7a\x76\xae\xc4\x80\xd0\x86\x3e\x77\xed\x53\xc6\xea\x40\xac\xf2\x52\x81\xa5\x6f\x55\xbe\x19\x2b\x05\x40\xe5\x46\xf5\x28\x13\x5e\x1b\xed\x5a\xc8\x1b\xd7\x39\xdf\xb5\x87\xa5\xcf\xa4\xcd\xf7\x06\x15\x66\x34\x87\xf4\x77\xea\x82\x36\x1f\x1b\x91\x6a\xa0\x55\x07\x1d\x70\xb0\xda\x1d\x61\x8c\xe3\x78\xb0\x99\x45\xd3\xfb\x70\x5c\x41\x75\xbd\xd7\x3a\x1e\x9b\x6e\x95\x77\x73\xe8\xda\x27\x7c\xc7\x73\x26\xa9\xf6\x84\x57\xb6\xaa\x85\xb9\xc6\xda\xaa\xb5\x94\xc4\xf8\xb5\x6b\x4e\xc9\xa4\x1f\x70\x7b\x21\x9a\xd1\xec\xbb\xfb\x03\x3f\x0d\x5a\x19\x3c\x99\xd2\x07\xb8\xe6\xd3\x25\xb5\x0c\xf8\x18\xe3\xd8\xc9\x11\x69\x41\xb5\xdb\x1f\xbe\x7d\xa3\xda\x4f\xb4\xeb\x2b\xd0\xc6\x32\x9c\xe5\x29\x1a\x10\x3a\x3b\x32\x0a\x2b\xc9\xb5\xa3\x10\x10\x06\x1e\x74\xfd\xdb\x9b\xe4\x2d\x70\xcd\x7a\xe8\x35\x68\x5a\x57\x06\xe1\x8e\x9c\x2b\x38\x0d\x07\xfc\xcc\x77\x4c\xff\xdb\x67\xde\x17\xcb\x08\xbc\x35\x77\x6f\x82\xf5\x85\xbc\xe3\xfe\xa1\xdb\x63\x57\x40\xe5\xb4\xe6\x77\x38\xf8\x83\x40\xb8\x69\x77\x40\x6e\xf5\xb3\x94\x3e\x03\x52\x31\xfd\xed\x80\xbf\xf7\x23\x24\xe9\xe8\x25\xe1\xbe\x0b\x6e\x1c\x00\x7a\x8a\x4d\x1a\xcb\xa8\x5d\x21\x87\xcd\x68\x81\x4d\x10\x8c\xdc\x20\x7f\x94\x4c\x4e\xe8\xa9\xdf\x90\x41\xf9\xe8\x70\x88\x7e\xc8\x8d\x93\xe5\x3a\x9c\x8a\x2e\x34\xa7\x0b\xa4\xdd\xd8\x80\x75\xf2\x1b\x5e\xb6\xe3\x2a\xb4\xbd\x7e\xae\x68\xe0\xf6\x73\x45\x3d\xbf\x9f\xc0\x86\xa4\x16\x54\x12\x79\xc0\x3b\xd5\xf2\x72\xbb\x6b\x37\xee\x85\xd8\x67\x74\xa4\xf1\xe6\xaa\xa2\xe3\xe5\x66\x24\xc7\xcb\x8d\xe7\x6a\x70\xeb\x33\x7b\xc1\x7c\x1a\x70\x6c\x55\xd4\xc3\x91\xaf\x68\xd0\xee\x4e\x7f\x9e\x4e\x66\x32\xf5\x30\xf6\x9b\x63\xa5\x68\xea\xc7\x33\xa1\x9e\x81\xb5\x35\xe7\x08\x5c\x62\x85\xae\x39\xcf\x41\x51\x0b\xd8\x0f\x17\x9a\x94\xaa\x47\xff\x21\xc0\xdd\xed\x0b\xba\xe2\x4b\xdf\x06\xd3\x9a\x9c\xb3\xaa\x4a\x18\xe1\xe3\x92\x16\x96\x1b\x61\x47\x11\xf8\xe2\xac\xaa\x08\xbe\x23\x42\x72\x5c\xaa\x0a\xbb\x22\x07\x95\xc4\x52\x51\x2f\xda\x4e\x1d\x22\x2c\xc4\x31\x1b\x0b\x9f\x7b\x7f\x36\x45\xf9\x3a\xb9\xa0\x71\x7c\x61\xd8\x5d\x3a\x30\xc0\x7b\x16\x21\x42\x8c\x8f\xc5\xb0\xca\x1f\x2f\x02\xa3\x4e\x42\x26\xe8\x76\x4f\xe6\x8b\xda\x47\x27\x99\x9c\x14\xa7\x61\xa9\x93\x62\x38\x44\x7b\x7d\xa2\x83\xf1\x99\x62\xf3\x62\xa1\xa8\x54\x78\xe9\x4b\xd7\x72\xa3\xe7\x38\x4e\xf6\xe4\x92\x27\x25\x6e\xbb\x8f\x06\x1f\xdd\x9a\x64\x2d\x9a\xf5\x46\xd3\x93\xe2\x4c\x0d\x6a\x34\xd2\x6b\xbe\x74\x25\x14\xc9\xbd\x26\x60\xfa\xbe\x4d\x10\xde\x90\xe5\x58\xf2\x04\xf5\x96\x63\xba\xdd\xc9\x9b\x04\xc5\x31\xa8\xa7\x9f\x4d\x66\x6b\xb2\xa2\xc9\x5a\x9f\xb6\xb5\x3a\x98\x02\xb4\xe6\x61\x3b\x9c\x63\xd5\x38\x1e\x64\xb3\x8d\x2a\xa9\xd5\x3a\xb0\x13\xc6\x5f\xe7\x09\x37\xba\x1e\x81\xdd\x29\xde\x8c\x97\x9b\xe1\x96\x27\x25\xb2\x1e\x23\x51\x6a\x36\x04\x54\x01\xf2\xf2\xd8\xee\xc4\x71\xb2\x26\x1b\x6f\x58\x13\x84\xac\x12\x8b\x31\xcd\x37\xfa\x09\xcf\xd5\x01\xc5\x3b\xa2\xf5\xd4\xd7\x58\xf2\x74\x83\x55\x83\xe9\x7e\xb6\x9f\x17\x7f\xdc\x9b\xae\x17\x69\x89\x75\x64\xa8\x34\xaf\xaa\x24\x9b\x99\x83\xe5\x26\xea\xb9\x7c\x9d\x45\xcb\xbd\x8c\xd2\x68\x08\xa7\x3f\x42\x87\xde\x73\x61\xb4\xb2\x76\x40\x76\x51\x1c\x41\xd6\x5b\x9a\xad\x22\x4c\xf1\x0e\x1d\xa4\x5a\x9f\x38\x7e\xaa\x2f\x1a\xfe\xa7\xd0\x9c\xe0\xd6\x50\xc9\xca\xa5\xca\x9b\x5d\xce\x2e\xc9\x60\x82\x3b\xcf\x3e\xe9\x18\x19\xf1\xb5\x79\xaf\x1b\x12\x94\x65\x91\xef\x2e\x78\x26\x56\x3a\x98\x60\x23\x41\x3d\xa2\xda\x15\x5b\x1d\xe5\x54\xf3\xe2\x44\x1d\x35\x78\x27\x00\x64\x3e\xd1\x4e\xe4\x15\x36\x38\xce\x4b\x35\xcb\xd7\xac\xb8\x49\x50\x55\x49\xc7\x13\x32\x48\x00\x4c\xaa\xaa\xbe\x91\x89\xf4\x4d\xc4\x3e\xd0\x44\xc1\x82\x89\x15\x47\xc1\x5a\xa3\x03\x0a\xd4\x47\xcc\x62\xdd\x06\x3c\x4b\xd0\x82\x11\xf9\x12\x14\xa3\x7d\xed\x91\x72\x9b\x09\xa9\x68\x3c\x56\x33\x1a\xac\x43\x87\x92\x16\x60\x84\xd4\xbc\x1c\x4c\x5d\x0e\x66\x2f\x47\xee\x4a\x58\x69\x77\x92\x83\xdf\xc8\xf1\x72\x73\x36\x9d\x4c\xaa\x8a\x81\x6e\x9c\x29\x32\x9a\x2e\x74\xae\x96\x3a\xe5\xf5\x07\xaa\x01\x9c\xf1\x75\xf1\x50\x9a\xa6\x10\xce\x88\x56\xb5\xe5\xe1\x54\xea\x57\x4c\x73\xe0\x1a\xd9\x16\x9a\x94\xda\x0c\x41\xba\x10\x3f\xcd\x72\xcb\x4d\x26\x1e\xca\xa4\x84\x08\xec\xe8\x36\x23\xbf\x88\x84\x62\x6f\x70\x38\x82\x95\x8a\x50\xef\x42\xd0\xec\xa3\x01\x3d\x75\x33\xb0\x63\x71\xdc\x48\xd0\xbe\xb9\x9d\xf6\xa1\x3f\x59\x7d\x3f\xad\x3e\xa3\x5b\x31\x84\x40\x5f\xf5\x68\xf7\xa8\x97\xc5\xb1\xbe\x2c\x41\x4f\xea\xc2\xf8\xcd\xfb\x1c\xbc\x4f\x0d\x31\xf7\x7c\x81\x85\xfa\x4f\x33\x94\xdc\x5e\x87\xfb\xec\xa9\x33\x90\x66\x91\x39\xf3\xf6\x10\x73\x72\xab\xfd\x85\xa6\x2b\x9a\xe4\x78\x82\x20\xa4\x0d\x7c\x80\x83\xd1\x43\x4f\x18\x40\xae\x4e\x3e\xfc\x82\x1d\x86\xc8\x4a\x2d\x67\xa3\xce\x44\x06\xc0\x8d\xc4\xba\xc7\xc0\x74\xf8\x9d\x7d\x60\x03\xf6\x91\xc2\x79\x97\x5c\x08\xba\x94\x11\x8e\xf8\x7a\x1d\x19\xc7\xa6\xcd\x32\xd9\x2e\x97\x59\x01\x2e\xeb\x8e\x14\x2b\x77\xb4\x28\x80\x5a\x8b\x70\xb4\xce\x8a\x92\x06\x4e\xcf\xa8\x23\x75\x96\x5b\x8b\xb0\xa8\x3b\xae\x41\x91\xa5\x2f\x77\xbc\x28\x72\x76\xf9\x2c\x2b\xa5\x0b\xe0\x6d\xd2\x02\xbc\x3f\x67\xd9\x72\xb9\x17\x99\xa4\xce\x85\xa3\x2b\xbf\xc9\xca\x76\xe2\x92\x6f\x77\xbc\x84\x66\x02\xb1\xf6\x43\xea\x90\xe9\x97\x5c\x03\xa4\x4c\xd0\xec\xb3\x0e\xa7\x0c\xd3\x08\x7c\x37\x7a\xae\xa6\x9c\x23\xaa\x29\xdd\xb6\xdd\x6e\xf9\xd6\xd9\xd4\xfa\xd1\x52\xcf\xda\xba\xe0\xd7\x69\x5f\xab\xbb\x9c\xf4\xbb\x3c\x78\x99\x3e\x1e\xf8\x7d\x4c\xc0\xb7\x95\xd3\x1c\x75\x14\x85\xa1\xc6\xa7\x93\xc9\x44\x11\x6f\xcd\x8d\x02\xef\xe7\x76\x17\x77\xb5\xa7\x1a\x63\xa0\x48\xa2\xa9\x33\x49\xbc\x28\xb2\xe5\xc7\x08\xe1\x77\xda\x1e\xc0\xf3\x92\xd3\xb5\x9d\x45\x56\xca\x87\x70\x2e\x41\x07\xb4\x91\x66\x14\x8b\x5d\x2a\x78\x0f\x0c\x0b\x42\x92\x29\x57\xa3\xce\x5d\xfb\x7f\x29\xb2\x25\x7d\x43\x45\xce\x57\xc1\x43\x74\x1e\x3c\x44\x57\xd2\xf1\x87\x8d\xcb\xd6\xaa\x12\x56\xab\xc8\x62\xd4\x0a\x6d\xd3\xd4\x9d\x03\x39\xa6\x0a\xce\xc9\x4e\x26\x0a\x8d\xb4\x09\x9c\x9c\xe7\x09\x58\xd6\x81\xa8\x20\xea\x71\x00\x3c\x59\x96\x70\xac\x50\x68\xf4\xc7\xfb\xb3\x08\x48\xa1\x28\xd5\x25\xac\xe5\xd5\xb5\x82\xca\xdb\x6c\x07\xc5\x70\x56\xef\x9a\xd1\x2c\x21\xa6\x1a\x21\xea\xac\x16\x45\xb6\x2b\xe9\x4c\x11\xf5\x2b\x1d\xf8\x4a\x48\x5c\x7a\xde\x6b\x42\x9c\x5a\xcb\x69\x2f\xb2\x95\x76\xc0\xe5\xf9\xa3\xa1\x81\x0e\x33\x70\xaf\x7c\xb5\x3c\xeb\xd2\x50\xd3\x1d\xac\x9d\x33\x5e\x2a\x4a\x51\xed\x52\x39\x17\x0b\x47\x86\xa8\xfe\xe1\x4d\x7f\xc3\xcb\x64\xe5\xfb\x91\x35\x36\x04\x53\x84\xc0\x4f\x88\xd9\x47\x41\x26\x1a\xf6\x6b\xe7\x22\xf2\xe4\x84\x11\xe6\x91\xac\x7a\x00\xac\xaa\x58\xd7\xe8\xfc\x9d\x02\x54\xd9\x57\x1b\x61\x81\xda\x71\xbb\xb2\x7e\x79\x42\xf5\x9a\x70\xb8\x1d\x3a\x36\x61\x81\x79\xbe\xd0\xaf\xa8\x56\x7a\x71\x47\xe7\x2d\x55\xdb\xae\x28\x74\xcf\xd7\x0e\x6d\x6a\x8d\xc3\x93\xe5\x69\x3b\xe5\xc4\xda\xbf\x54\xd5\xe0\x57\x9e\xb0\xda\x6b\xad\x5a\xd7\x15\x4d\x5e\xe7\x86\xe0\x42\xea\x5d\x50\xcb\xa8\xf7\x8d\x81\xc2\xd9\x60\x82\x25\x61\xe1\xc6\xa8\x05\xc6\x03\xe9\x21\x03\x82\x96\x72\xb6\xe5\x89\xfe\x65\x05\xef\xbd\x66\x3f\x1c\x61\xee\x23\xca\x08\xe7\x9a\xa8\xca\xc8\x03\xab\x56\x72\x0e\x01\xe5\x4d\x00\x01\x22\x01\xfd\xcf\xaa\x6a\x3a\x00\x55\x24\x3b\x0a\x67\x66\xf1\x60\x40\x02\x16\xaa\x6d\x42\xa1\xba\x41\x0e\xd6\xe1\x26\x32\x28\xf1\xf7\xac\xd8\x53\x87\x9b\x9f\x94\xde\xae\x0e\x08\x3b\x41\x25\xf1\x93\x7a\x56\x2c\x68\x75\x69\x0a\xb2\x57\xb7\xab\xac\x89\xc0\x65\xd2\xd2\xac\x1a\x4d\x4f\xf2\xd3\xa4\x98\x59\x25\xf7\x74\x82\x60\xd3\x6b\x81\x4e\x7e\x3a\x99\x41\x43\x69\x31\xcf\x17\xc6\x2e\x93\xd7\x76\x99\xe4\x81\xb5\x9d\xe5\xf3\x6c\x78\x1f\x8e\x45\x49\x88\xac\xaa\x92\x10\x61\xe9\x9e\xd7\x79\xa2\x1a\xd2\x4b\x9e\xea\x1d\x98\xe7\x0b\x84\xd7\xaa\xda\x62\xc8\xcc\x36\x24\xec\x74\x52\x55\xe5\x80\x48\x04\x54\x86\x6a\x33\x61\xb3\x69\x3a\x41\x0b\x84\x57\x34\x59\xe2\xb5\xc2\x49\xb4\x8e\xe0\x32\xc9\x70\x89\x05\x1c\x86\xb5\x77\x60\xd6\x38\xf7\x1d\xa1\x96\x81\x12\xdd\x8a\x64\xb3\xf6\x02\x8f\x44\x3a\x39\xd9\x9c\x6c\xc8\xc6\x2f\xac\x45\x6a\x64\x99\x28\x72\xc9\xdb\xa6\x49\xe3\x78\xfa\xe4\xd9\x4a\x1d\x98\xde\x6a\x48\x36\x5a\xa0\xa7\x5d\x26\x98\x6e\x0e\x5a\x31\x5e\xbf\xf3\x39\xdf\x97\x56\x78\xa9\x46\xbb\x22\xe2\x64\x77\xb2\x23\xbb\x66\xae\x1b\xc6\x0e\xef\xfc\x61\x28\x98\x72\x6c\x1c\xc3\xbb\xc7\xe1\x79\xb4\xa2\x5e\xbc\x47\x8d\x25\xd5\xc8\x48\xbe\xd5\x72\x1b\xef\x9d\xfb\xd5\x2f\xaf\x71\x2e\xc7\xd7\xa4\xd9\xca\x2f\xfa\x24\xa4\x81\xe6\x72\xd1\xa3\xe3\x92\x0b\x99\x74\x72\x61\x76\x0a\x6a\x1a\x8a\x58\x9a\x1f\xa0\x25\x0e\xce\x83\xd4\x3e\xd7\x22\xcc\x29\x60\x9c\x1d\x28\xa6\x76\xa3\x45\x81\x40\x50\xe7\x62\xa7\x50\x43\x45\x5b\xe3\xdc\x36\x79\x46\x26\x36\x12\xe4\x8d\xca\x35\x5d\xba\x7c\x5c\x92\x2b\xaf\x96\xfa\x83\xf0\x9e\x70\x4b\x9b\xcf\x6c\x49\x4b\x76\xa4\xdc\x25\x68\xec\xb3\xc7\x4e\x15\x99\x3c\x1a\x49\x4c\xad\x23\xa1\xd1\x88\xe1\xfb\xd8\x38\xd4\xdf\xcf\xca\x34\xc3\xfb\x59\x96\x96\x08\x1d\x0e\x1e\x2b\xcb\x6c\x87\xe7\x05\x2a\x7c\xd8\x4c\x99\xb9\x69\x88\x62\x59\x55\x14\x2d\xb0\xef\xa4\xec\x79\x58\xc5\xc9\x85\x8c\x24\xbd\x66\x0e\xa8\xe1\x69\x6b\x3d\x6a\x4d\x87\x7d\x5f\x47\x35\x05\xa8\x5f\xfb\x53\x53\x1a\xf9\x6c\x30\xdd\xe4\xa4\xf6\xb4\x11\x36\x58\x4b\xcb\x55\x0b\x67\x62\xb6\xa2\x89\xc0\x0a\xaf\xc0\x22\x60\x48\xa0\xb4\xcb\xbb\x3c\x1d\x2f\x37\x3d\xef\xb5\x23\x44\x21\x2c\x67\x72\x56\xb3\xe0\x24\x4a\xc5\xe9\xc4\x4b\x98\xa0\x94\x1e\x12\xa9\x3b\x91\x6d\xd6\x87\x37\xc5\x67\x0d\xac\xe1\xcc\x8e\x3f\x8e\xe5\x69\x38\x15\xcf\x49\x0d\x6d\x5a\x56\x38\x22\x28\x10\xa8\x8b\x39\x5b\x10\xbd\x88\x73\xb6\xa8\x7d\xf3\x79\x0e\x6e\x9a\xb2\xe0\x25\x18\x0d\x2c\xb7\x21\x53\xae\xaa\x28\x28\x51\xb2\x55\xed\x79\x4c\xdf\x3c\x2f\xba\x26\x27\x3b\xb5\xb2\x39\x3a\x9d\xf4\xf8\x40\x7d\x30\xf8\x98\x25\x39\x11\x58\x10\x86\x52\x9d\xac\x7a\x3b\x9d\xe8\xb8\x46\xc8\x3f\x7a\xbf\x2a\xb2\x4b\x34\x93\x58\x55\x89\x40\x31\xe2\x91\x37\xe8\x5f\xd4\x6f\x7b\x24\x61\x36\x14\xe8\x3b\x05\x39\x32\x71\xa3\x2e\x32\xd8\x8c\x4f\x10\x66\x5e\x13\x3f\x3a\x94\xa0\xbe\xd1\xf3\x05\xb6\xa8\x48\x9b\x88\x54\x6f\x12\x9b\xe7\x0b\xe2\xf5\x21\xac\xca\x2f\x56\x4f\x09\xd6\xba\x23\x30\xa0\x27\x14\x0c\x8d\xed\x40\x00\x84\xa1\x60\x0e\x3f\xb5\x94\x3b\x82\x5e\xad\x3b\xb0\x5e\x3e\x97\x0b\x22\xb0\x6d\x35\x6f\xb7\xea\x4f\xeb\x9f\xcd\x95\x79\x05\x8c\x96\xb0\xd0\xdf\x5b\xe8\xd0\x26\x2f\x25\x17\x37\xe3\x15\x67\x14\xe7\x64\xcb\x13\x86\x7a\x79\x1c\xe7\x66\x38\xb3\x84\xcd\x99\x63\x9b\x2c\x88\xc4\xdf\xd8\x36\x50\xfa\x4b\x5b\x73\xc5\x25\xdd\xba\x72\x0d\x03\x3e\x7f\xda\xa6\x77\xcc\x15\x32\xc5\xc6\x9a\x0d\xd7\x13\xc4\xb8\x77\x7d\x47\x8b\xd7\x3b\x50\xc3\xaa\xbf\xa1\x08\x28\x49\x27\x3a\xf1\x25\x5f\x9d\xe7\x5b\xea\xd5\x51\x9f\xb6\x8a\x2b\x5f\x55\xc7\x86\x21\x2d\xe7\x64\x62\xaf\x49\xf4\x55\x44\x48\x5e\x55\xd1\x50\xbb\x31\x6c\xb0\x8f\x3a\x98\xb4\x62\x5c\xf2\x2d\x85\x58\x93\x9a\xd8\xa5\x2b\x05\x91\x59\x57\xb2\x17\x6c\xa5\x5e\x7f\x6f\xe8\xa7\x04\x2e\xe3\x0c\xee\xa2\xe5\x71\x99\x72\x4f\x35\x13\xae\xc8\x6e\xd2\xaf\x27\x13\x30\x56\xe3\x78\xcb\x93\x1c\x36\x10\x29\xdc\x75\xa6\x7f\xcf\xf5\x1f\x7f\xeb\xd2\x5f\xc1\xff\x88\x2e\xda\x0b\x96\xab\x0e\xac\x83\x9b\x4b\xcd\xbd\x94\x1d\x11\x98\xc5\xf1\x60\x3a\xd0\x9a\x4d\x34\x13\x6f\xe9\x8a\xc7\xf1\xdb\x3c\xc9\xc7\x7b\x06\x2d\x1f\xec\x2d\xc1\xf5\x34\x34\x5f\x33\x5f\xa5\xaf\xb2\x57\xc1\x79\x71\xa7\xe4\x36\x01\x79\x50\x74\x01\x7a\x2e\x8e\x63\x60\x8c\x90\x10\x08\x46\xb6\x71\xac\x0a\x8d\x97\xdb\xa3\xe5\xc0\x3e\x9c\x74\x9b\x8c\xde\x1a\x3e\x8c\x34\xbb\x87\x9b\x72\xb4\x06\x26\xe2\xf1\xf7\x05\x99\x9c\x88\x1a\xc2\x8a\xe1\x10\x79\x25\xe7\x62\x41\x0c\xc4\x32\x20\x57\x2c\x0c\x90\xd4\x21\x6b\x74\x8a\xe1\x0d\x59\x6e\x33\xe8\xad\xeb\xdf\x07\x0b\x9f\x75\xe8\x97\xee\xb9\x61\xaa\x75\x87\xd4\x32\xa8\x72\x77\x2c\x03\x94\x52\xa5\xed\x41\x55\x44\x80\xb9\xd0\x0a\x40\xd9\x05\x68\x09\x0d\x50\x2a\x0f\xf6\x7a\xf7\x9c\x1b\x1d\x31\xbe\xc8\xb3\xb2\xaa\x14\x42\x23\x6b\xf8\x0a\x13\x6a\x02\x5d\x3d\xcb\xd3\xc9\x6c\x34\x4d\xa7\xa8\xf7\xbd\x9a\xfd\x0f\x46\x7f\x0c\x1c\x5e\x2a\x3a\x63\x30\x25\xc4\x79\x86\xaa\xaa\x81\x1a\x6e\x55\xfd\x53\xc0\xa4\xbc\xd3\xf1\xbd\xc5\xf7\xc6\xf4\x9f\xfb\xac\x28\x13\xe8\x0c\x81\x20\xaa\xa4\x05\x91\x66\x39\x12\xef\x90\xf9\x2c\x75\x2f\xb9\x0c\x97\x08\xdc\x4f\x4a\x7d\x98\x90\x65\xdd\x6b\xc3\xcb\x87\x4b\x99\x5f\xe5\xf2\x46\x87\xde\xa9\xdd\x2c\x00\x8f\xa5\x9e\x8f\x3e\xe2\xda\xf2\x31\x40\x5d\x7e\xe8\xb2\x23\xc1\x9c\x4c\x4e\xf8\xa9\x6c\xbc\x2d\xdc\x62\x8f\x99\xdb\xa0\x39\x5f\x80\xfe\x5a\x03\xe4\x74\xbc\x4c\xea\xb9\xf6\x1e\x23\xbe\xc0\x7b\xf2\x0f\xd5\x79\x66\xf9\x91\x65\x1c\x5b\x3c\x59\x6b\x9e\x15\xb6\x00\x6c\x1d\x64\xc3\x2f\x95\x79\x92\xe4\x55\xb5\x1f\x10\x5b\xbb\xaa\x0a\xf5\x01\xfb\xa9\xa0\x6d\x55\x81\xef\xd2\xf0\x99\xc2\x1c\x21\x9c\xcf\xb9\xbb\x00\x7b\x5c\x38\xfe\x67\x3f\x9f\xc1\xc3\x25\xbd\x47\xcb\x97\x32\xfe\xdc\x21\x19\xf4\x11\x27\x4d\xe6\x6f\x33\xf1\x91\xae\xde\xed\x32\xd6\xf4\x59\x1c\xe4\xb5\x94\xfc\x4a\x12\xe4\xcf\x33\xb5\x3e\xa5\x4e\x02\xe4\xc5\x18\xb5\x97\x80\x40\x57\x55\xb2\x1f\x43\xb4\xda\x32\xbf\xa2\x2f\xe8\x5a\xce\x74\xc6\x29\x3c\x10\xa9\xf9\x90\x96\xbf\x6d\xeb\x4a\x1e\xd6\x04\x1f\x66\x33\x95\x7e\x66\x2b\x4a\x7e\xa6\xab\x01\xa2\x95\xc7\x71\xf2\x83\x0e\x57\x02\x77\x57\x07\xee\x79\xca\xc0\x8c\x1a\xef\xc7\xf4\x93\xc2\xd9\x73\x59\xdc\x3c\x56\xf0\x95\xae\x74\xb5\x70\x1d\x6e\x47\xa3\xac\xb7\xe4\x4c\xe6\x6c\x4f\x0f\x9a\xa9\x02\x26\xfd\xe3\x4c\xf2\x6d\xbe\x44\x36\xcf\xe8\x87\x81\x8c\x12\x2f\xc9\x5e\x7b\x8d\x65\xa7\x93\xd9\x34\x1d\x4d\x91\x5e\x06\x20\xb3\xc3\x19\xa4\x8d\xc5\x40\x10\x59\xf3\x3b\xb5\x61\x4b\x3c\x62\x18\xac\x98\x03\xa3\x1b\x0e\x2c\x09\x84\xda\x59\x71\x9c\x14\x0a\xf9\x03\x83\x70\xb5\x74\xa7\x93\x59\x71\x3a\x49\x8b\xb3\x9a\x96\xfd\x59\xb7\x2c\xe1\x28\x18\x12\xdb\x1b\xac\x06\x26\x35\x9d\x3e\x6b\x0c\x2f\x6d\x8e\x5f\x93\xf0\x30\xde\x35\x66\x78\x7d\x64\xac\xeb\xd9\xcf\xba\x88\xee\x58\x47\x88\xb3\xa7\xd7\x3b\xa9\xff\xe8\x38\xa9\xac\xaa\xa6\x38\x23\xee\x10\x73\x9c\xa3\xaa\x1a\xe4\x71\xec\x25\x0d\x26\xa8\xaa\xdc\xf7\xa8\xa3\xcc\x88\x6b\x17\xbe\xba\xcf\x0c\x60\xdb\x32\x63\xf2\xe9\x2a\x97\x0a\x48\x05\x84\x8e\x07\x66\xbe\xf3\xc0\x8c\xc5\xee\x15\x6a\x3d\x21\x70\xee\x66\x86\xe8\x31\x75\x67\xf0\x0c\xad\xa8\xa1\xa6\x14\xb1\x05\x93\x4d\xc5\xd9\x24\x8e\x55\x05\x42\x14\xba\xed\x5f\xbf\x80\x70\x99\x85\x64\x98\xa3\xb1\x66\xae\x4d\x10\x94\xe8\x46\x8d\x5e\x84\xd5\x05\x1e\x2f\x37\x43\xff\xd1\x07\x73\xdc\x96\x17\xc8\x72\xc3\xaf\xeb\x08\x50\xcd\xdc\x9d\xa0\xbb\xcc\x7b\xe9\x12\x7f\x2d\xa4\x6c\x52\x45\x26\x46\xa4\xb6\x7e\x64\xc6\xa4\xbe\xfc\x7c\x54\x30\xf0\x1a\xe1\xde\x8a\x2f\x28\x6f\x9d\x85\xb5\xe9\x06\xeb\x37\x4c\x21\x4b\xd2\xb8\x5c\x09\x11\x78\xe7\xf8\xcd\x83\xe2\x99\x91\x3f\x96\x86\xac\xd7\xbb\xd8\x32\x8b\xae\xaa\x12\x98\x03\x76\x53\x9a\x06\xd6\xa8\xb6\xcd\x35\x9c\x83\x93\x64\xaf\x90\x28\x27\x34\xdd\xf0\x6b\x0d\x7a\x7e\xda\x50\xf6\xce\xc6\x31\x45\x71\x0c\x71\xd1\xcc\xbb\x90\x23\xbc\xaf\x2a\x06\x29\x98\x7b\xdc\x02\xcf\x6c\x52\x86\x58\xd6\x4b\xfd\xdd\x34\x3c\xf4\x6c\x2c\xca\x9c\x5d\x16\x06\xee\x69\xd5\xc3\x37\x54\xbc\x30\x2c\x7e\xd1\x6d\x27\x10\xfd\x9f\xff\x47\xd4\x11\x1b\x26\x42\x48\x3b\xb5\x0f\xd4\x8f\x0b\xab\xaf\x89\x73\xcf\x04\x9b\xa9\xff\xc3\xe4\xb6\xf2\xaa\xd3\x0a\x83\xd2\xe8\x2b\xcf\x6f\xa2\x37\x5e\xdd\x0a\x1b\x73\xb9\xa1\xc2\xc2\x83\xdf\x37\x72\xdf\xe2\xa3\xa4\x4b\xce\x56\x99\xb8\xa9\x27\xc5\xdb\x1a\x9f\x3c\x9c\x24\xf4\xed\x4d\x95\x07\x53\xd5\xb9\x6e\xc2\x3c\x9c\xf0\xf8\xaf\x5f\x7f\x95\xd8\x42\x6e\xc2\xae\x8e\x51\xd1\xf5\xac\x4d\xe5\x5d\xce\x57\xc0\xef\xd0\x17\x5d\x95\x65\x10\x19\xa1\x24\x99\x8e\x53\xba\xf7\xfd\x22\xd5\x21\x68\x30\x78\x7d\x18\x99\x24\xcf\xc6\x18\x8d\x32\xad\xc1\x5b\xf3\x97\x8b\x1a\x18\x4a\x60\x30\x40\x7c\x14\xe9\x3b\xc1\x96\x28\x74\x8a\xcd\x10\xe6\x5f\xe8\xf1\xbe\x34\xc4\x5b\xd4\x2d\x7d\xb4\x76\x2a\x54\x5b\xa6\x40\xf0\xb8\x68\x28\x1b\x76\x2a\xd6\x87\xce\x6c\x3f\xa2\xa9\x30\xc6\x5f\x75\xa4\x9c\x84\x8d\x8c\x9f\x53\x1f\xb2\x39\xbe\xf9\x95\x0e\xc5\x89\x97\x0a\x43\xca\xb1\x44\xa0\xc3\xe3\x01\xe8\x7a\x2d\x36\x89\xff\x28\x3c\x96\x06\xf0\x83\xf5\x11\xcc\x6f\x89\x6b\xe6\x4b\x9b\x2a\x06\x77\x80\x4e\xca\x03\xfd\x47\x85\x14\x91\xef\x99\x76\x30\x35\x08\x2d\xad\xd1\x2e\x6e\x31\x59\x3a\xe7\x8b\x93\x24\xd3\x08\x93\x88\xe3\x0c\x30\xa0\xaa\x92\x84\x98\x2f\xa2\x79\xec\x2c\xa9\x3d\x47\x42\x69\x35\x2d\xc7\x20\x54\x05\xd5\x98\xa7\x04\xce\xc9\x15\x2d\x66\x91\x90\x45\x94\xea\xd1\xe0\x1c\x62\xa3\xe6\x55\xe5\x8f\xf1\x90\x9c\xe7\xc9\x12\x61\x51\x55\x5a\xc5\x84\x10\x36\x5b\xa7\x2c\x64\x42\x98\x37\x7c\x89\x57\x78\x87\xb7\x64\xa3\x90\x7f\x23\x1f\xcc\xd7\x89\xc2\x13\xd0\x92\x6c\xf1\x8a\xec\xc8\x16\x8e\xa8\x8b\x9f\xbf\x24\x9b\x44\x8e\xa6\xd8\xc8\x07\x11\x86\x21\x11\x6b\x17\x74\x45\xb6\xbd\x2d\x59\xe2\x25\xb9\x3a\xac\x4c\x5d\xbc\x23\x4b\x7d\x5c\x0f\xe6\x04\xc0\x23\x4d\xc1\x5f\x4e\x89\xf0\x12\x62\xf4\x6e\xd5\xff\x67\x0f\x14\xae\x94\xac\x30\x7c\xe9\x73\xb8\xb5\xbe\x6c\xf1\x8a\x94\xee\xeb\x74\xa9\x1d\xa0\xe8\xc2\x3a\x4d\x97\x87\x0c\x84\xec\xe4\xe3\x58\x12\xb2\x8e\xe3\x64\x47\xf6\x08\x27\x03\x5e\x55\xd0\xf8\x29\x57\xff\x9b\x0f\x42\xb8\x6e\x4e\x8f\x18\x64\x2c\x1a\xe7\xe3\x64\xab\x6a\x65\x55\xb5\x34\xbd\x9c\x65\xe6\x47\x9d\xa4\x36\xc8\x3a\x9a\x35\x53\x3d\x33\x37\x54\xab\x82\x2c\x11\x5e\x9d\x96\xc3\xa9\x9d\xb2\x1a\x35\x8c\x13\xef\x46\xea\x97\x99\xe1\x01\x61\x17\xc8\x97\xb2\x55\x9a\x59\x61\x8b\xac\x95\xd5\xa4\x56\x56\xcb\xd7\x89\xc5\xe9\x8c\x82\xd9\xd2\x97\x40\x80\x86\x99\x36\xe4\xbd\xd5\xca\x61\x70\x6b\xd6\x46\x8e\xb7\xd3\x9f\xa6\x26\xde\x92\x67\x2c\x59\x21\xa2\xfe\xec\x10\xbe\x22\x61\x5b\xdb\xd9\xca\xbf\x68\xc3\xa9\xc6\x1e\xc7\x94\xad\xf0\x0d\x59\x5a\xb5\xb7\xed\x6c\xa2\xa5\x72\xd0\xb7\x96\x12\xf7\x14\x71\x7a\x05\xeb\x7d\x03\xdb\x7c\x7f\x96\x14\xc9\x95\x5e\x1b\x7c\x55\xef\xf2\x95\xdb\xe5\x22\x29\x31\x94\xc5\x37\xfa\xf8\xdc\xd8\x2c\x94\x36\xab\xea\x12\xa3\x3a\xd1\x96\x74\x3f\x75\xb7\xea\x9c\x94\x2e\x4d\xf7\x78\xa3\x1d\xe1\x84\xaf\x96\xef\x6e\x25\x97\xce\xad\x45\xa0\x06\xda\x0e\x21\x0e\x8c\xa0\xe7\x8a\x82\xb9\xca\x8a\x44\x8e\x2f\x8a\x9c\x7d\xa4\xc2\xb2\xe5\x07\x93\x9e\xac\x9d\x1a\x99\x97\x08\xfc\xe6\x40\x78\x3f\xf5\xb6\x35\x9f\xd9\x47\xaa\x85\xb7\x99\xa4\x67\x93\x99\x6b\x8f\x94\x54\xba\x5e\x3c\x95\xb2\x3b\x1b\x4f\x04\x19\x08\x04\xf1\x42\xb4\xa6\x41\x74\x38\xde\x1b\x4a\x8f\x66\xe9\x47\xe5\xce\x69\x98\xf6\x7d\xf9\x33\x97\xce\xa1\x8c\x09\x73\xa4\xcf\xc5\x3b\xb5\xa0\xe0\xa3\xc7\x8b\x41\x74\xda\x44\xf2\x80\xc0\x87\xa5\x77\x61\xe4\x41\x11\x5d\xe2\xa7\x3c\xc9\x64\xc8\x9f\xc8\x64\x23\x86\x8e\xf6\xfc\xe8\x1a\x97\x56\xb8\xe0\x25\x5a\x01\xb0\x76\x77\x64\x53\xdb\xd8\xa6\x8b\xe1\xee\xd8\x84\x9e\x17\xc4\x6b\x2e\x3e\x9e\xe7\xe0\x08\xa1\x64\x89\x84\x59\xe2\x52\xeb\x7a\xd8\x26\x91\x02\xd7\xf3\x85\x8d\xe7\x53\x67\x78\xf2\xa0\xc0\x91\x6c\xcb\xc1\xd0\xf0\xeb\x89\x1f\xc8\x9e\x1b\xd1\xd0\xb1\x31\x03\x0e\x6c\xde\x23\x83\xfc\x94\xa0\x27\xec\x5d\xe4\xb3\x7a\x0e\xdb\xec\xd3\xb7\x76\x89\x75\x64\x11\xbc\x27\xdf\x31\x60\xaf\x96\xb3\x7a\x5a\x0c\xa5\xc0\xc5\xb2\xf8\x59\x49\xf6\xe6\x87\xf1\xae\x67\xd2\xc1\x94\x92\x96\x40\x71\x2f\xf5\xef\xde\x72\x16\x66\x92\x65\x5a\x28\x08\x1b\x26\x86\x66\xa8\x6b\xa2\x40\x6f\xe6\x5c\xe8\xda\x6e\x9d\x78\xbf\x00\x87\x62\xc9\xa0\xa8\xaa\xc1\xb2\xaa\x8a\xda\x51\xc4\xb2\x76\xbc\x50\xf8\x8e\x22\x96\xbe\xad\xe7\x86\x4c\x4e\x06\xeb\x38\xde\x9c\x66\x7e\xb0\xce\x35\xc9\xe6\x9b\x45\xdd\xdd\x7c\xb3\xe8\xad\xe3\x38\x37\x46\x80\xf5\xb6\x02\x62\xe9\x82\x6e\x95\x33\x96\xfa\x6b\x65\x15\x0c\xbd\x35\x3f\x25\x77\x2d\x7a\x1c\x4b\x45\x7f\xea\x1a\x98\x35\x9a\xaf\xfb\xfd\xe3\xd7\x84\x4c\x1a\xdb\x62\xd4\x51\x86\x43\xef\x70\xb9\xe3\x7a\xe6\x54\x59\xe1\x46\x86\x87\x17\xf8\xe9\xa0\x80\x0a\xb1\x06\xcd\x48\xbe\x51\x05\x3b\x4c\x0d\xb4\x4b\x1f\x5b\xee\x44\x0e\x87\x88\x82\xa6\xe3\x5c\x2e\xb0\x76\x00\x83\x0e\x3e\x0c\x28\xdb\xc8\x33\x5f\x6a\xc4\xb9\xf6\x92\x0c\x91\xd8\x03\xe8\x10\x86\xf6\xe7\x2d\x9e\xb6\x93\x5e\xe1\x1c\x1b\x85\x7a\x9c\x11\x31\x1b\x4d\x53\x39\x4a\x3c\x80\x93\x33\x46\xc1\x4a\x63\x36\xa5\x0f\x52\x08\x6b\x56\x12\x79\x52\x9e\x65\x27\xa3\x51\x09\xf7\xa8\x3c\xb5\xfe\x11\xdd\x32\xe9\x4f\xa3\xd9\x01\x8a\xdc\xa5\xe1\x17\xed\xc3\xb0\x6b\x03\x51\x55\xba\xbe\xbb\xeb\x56\x99\xca\xdc\x89\x25\x4f\xf6\x66\x47\xd5\xc3\xe3\x45\xcf\xca\x2e\xde\xe5\xbf\x51\x74\x62\x50\x63\x85\xcb\x9d\x15\xc0\x6c\x24\xe5\x68\x8a\x19\x29\x6a\x56\xa2\xe5\x4b\xe3\x8c\xf0\x33\x66\x81\xd9\x75\x9e\x30\xcc\x47\x53\xe4\x0d\xca\xf1\x52\x48\xa6\xce\x88\x5e\x59\x9c\xa1\x74\x6f\x3f\x10\x66\x1a\x10\x71\x2c\x83\x10\xfa\x70\xfc\xb4\x5d\x2d\xce\xac\xb2\x98\x42\x57\x47\xd3\xaa\xe2\x70\xec\xaa\x8a\x9f\x91\xdc\xf3\x01\xc7\x4f\x6d\x7c\xc4\x9e\x08\x6f\x43\xd0\x39\xcc\x7d\x38\xe4\x07\xe0\x80\x27\xac\x06\xc2\x1c\xe1\xcc\xb3\x55\x97\x81\x67\x1f\x17\xfd\xb3\x76\xaf\xe5\xd9\x89\x87\x65\xb5\x0b\x50\xdf\x4f\xd4\xa8\xdd\x40\xd3\x81\xd4\xb2\x7e\xe6\xc3\xc0\x83\xb5\xf2\x77\x98\x6e\xdc\x8d\x40\x04\x72\xab\xf0\xa3\x48\xa7\x9d\xa0\x11\x8e\x14\xf9\x82\x05\xd1\x11\x90\xc7\xcd\xb8\xbd\xb3\x23\xe9\x89\x44\xa9\xb4\xde\x35\x21\x05\x33\x72\x0b\x74\xd5\x2e\x13\x25\x7d\xce\x64\x22\x7c\xd3\x60\x64\x4c\x9c\xda\xb9\x9a\xfd\xe7\x24\x2a\x79\xf9\x2a\x7b\x65\xac\xbe\x50\x55\xd9\x4f\x8d\x9c\x1a\x66\x5b\x18\x6e\x11\x61\x8f\xbb\xb1\xf6\x57\x38\xe7\xa3\xfa\x95\x09\xed\x70\x3d\x1b\xeb\x70\x4f\xee\x8a\xe9\x37\x82\xd6\x47\xed\x68\x1b\x75\x6b\xab\x2f\x6a\xcd\x6c\x76\x47\x73\xcd\xdd\xde\x49\xcf\x60\x9f\x5a\xae\xa8\xd9\xea\xdb\x6d\xb6\x4b\xdd\xa6\x82\x7e\x24\x2c\x8e\x97\x06\xdf\x87\x46\x4c\x39\xda\xb2\xe7\x87\xc6\x8d\x35\xff\x5d\xed\x97\x73\xb6\xe8\xee\x43\xe5\xe8\x7e\xee\xe8\x03\x54\xf3\x4c\x37\xc8\xc1\xf8\xdf\xdb\x0d\xd6\x8c\xf8\x74\x30\xf1\xa0\xf6\x56\xb6\xd8\xab\x97\x2a\xe9\x46\x63\x74\x90\xe1\xd9\x5e\xc9\x5a\x5d\xe5\x88\xa7\xc8\x16\x76\x87\x5a\xbb\x0a\xda\x8d\xc6\x05\xf1\xa2\x15\x3d\xe6\x0e\xff\x57\xf2\x8c\x68\x17\x58\xaf\x54\x47\xe6\xe7\x50\xbb\x04\x9d\x89\x14\x62\xf5\x7b\xe6\x15\x66\x0e\x06\xa7\x7b\x9d\x6b\xd6\x08\xcc\x41\xa0\x1e\x8b\xe3\x81\x76\x10\x35\x63\x44\xb3\x73\xe3\x98\x79\x1e\x60\xc1\x51\x1a\xc3\x02\x6b\xdf\xdb\xce\x6c\x25\x0c\x58\x8e\x8c\x2d\x57\x97\x66\x8d\xea\x52\x11\x5b\x12\x05\xe1\x02\x3a\xbc\x75\xd1\xeb\xfe\xcf\xd2\xea\x01\xc3\xe8\xf4\xe4\x4c\xa8\xad\x9c\x30\xed\xb6\x8b\x80\xd7\x2e\x86\x6a\x27\xfe\xe0\x20\x43\x7b\xc6\x78\xc3\x1b\x21\x06\xeb\x40\xce\xe0\x98\x8b\x1d\xb4\xd7\x67\xd3\xe4\x4e\x26\x4c\x77\x66\xce\x13\x28\x0e\xea\xe8\x67\x29\xc3\x82\x2e\x8d\xfa\xa5\x3a\x67\xb9\x77\x4d\x4c\xe8\x56\x7b\x9e\xf2\xb1\xfe\x81\x37\x59\xa9\xef\x61\x99\x0e\xa6\xde\x19\xbb\x94\xbe\x54\x41\x9a\xe2\xa0\x1d\xa3\xde\x5a\x78\x7d\xf0\x9e\x88\x61\xc2\xc0\x5f\x53\xad\xcf\x04\xfd\xb4\xdd\xad\xcc\x4a\x62\xf2\xe6\xfb\x45\x9a\xc8\xb1\x1a\x2b\xb8\x33\x50\x3f\x8c\x43\x47\x8d\x8e\x1d\xb1\x9c\x45\x58\x8e\xeb\xe1\x56\xd5\x51\xc7\xde\x9d\x21\x4d\x73\xc2\xe2\x18\x00\xa0\x71\x29\x6f\xef\xda\xc6\xb6\xc7\xe2\xb8\x4e\xbd\xd6\xce\x5d\xf3\xda\x97\x5e\xa3\xbc\x22\x19\xb4\x96\x51\xa3\x12\xc9\x7b\xb5\x28\x50\x36\x95\x7a\xe1\x79\x71\x93\x2a\x13\x85\xf0\x4c\x4e\x4a\x87\xe3\x8e\xa6\x60\x4d\x63\x38\xe4\x99\xf6\x5e\x93\xcd\xcb\xe1\x74\xd1\x03\x7a\x24\xbb\x28\x93\x7d\xed\x79\xd2\x50\xd5\x67\xf7\xe3\x98\x6b\x14\xd8\xe5\x0e\xc1\x2f\x25\xba\x77\x7f\x64\x1c\xcb\x1e\x4c\x09\xc7\x57\xb5\xe9\x40\x0f\x81\x2b\x60\xbd\x1b\xe1\x4a\xc3\x85\x49\x4a\x72\x44\x49\x05\x83\xca\xba\x84\xb3\x06\x82\x5c\xeb\x74\x13\x17\xc4\x2a\xa4\x2f\x09\x28\xa8\xe3\xb5\xa7\xb3\xae\x56\xef\x01\x21\x7b\xa7\xf6\x5b\xe3\x8d\x3a\x48\xff\x9f\x4f\x36\x6a\x25\xc0\x07\x72\x11\xc7\x8f\xb9\x11\xda\x18\x3f\x60\xc6\xa4\x48\x3b\xd6\x80\x28\xc1\xc3\x02\xa1\x13\x34\x1a\x15\xb0\x01\x27\x41\xd6\xf2\xd4\x7c\x3e\x65\xab\x2f\x6a\x6b\xa9\xda\x1a\x0e\x81\x54\x05\x3f\x81\x7f\xb3\x2e\xc9\x97\x5a\xf3\x5e\xb7\x35\xf2\x2b\xa1\x9c\xec\x7d\xcf\x6e\xc7\x4c\xc0\xad\x13\x37\x7e\xcc\xd1\x30\x32\x9c\xa1\x8f\x1c\x3c\xb3\x2c\x51\xeb\xd8\xf4\x72\xb2\xb2\xe2\xaf\xd5\xdc\x99\x04\xb0\xd9\xca\x1d\xa4\x74\xb2\x48\x3f\x48\x4d\xe8\xe4\x61\x53\x5d\xa3\xaa\xaa\x0f\x52\x0b\x2c\x14\x3e\x52\x55\xb9\x46\x44\xaa\x4a\xcd\x5a\x2b\xc7\xf7\x96\xa4\xc0\xc5\x88\x4c\xf1\xda\x5a\x21\x1c\x60\x6d\xa6\x53\x40\x8c\xdb\x16\xca\x06\xa7\x2a\x97\x82\x52\x56\x55\x46\x32\x0d\x5f\xe3\x82\x5f\xe6\xcb\xac\xf8\xf9\xc9\x9b\xe7\x55\xd5\x4e\x73\xe5\x56\xf4\x2a\x5f\x52\x5d\x6c\xe0\x9b\x9a\xaa\xeb\x07\x1e\x97\x7f\x70\x0f\xd6\x0f\xdc\x43\x01\x01\xf5\x2b\x77\x19\xab\x71\xbf\xa3\xc0\x05\x33\xb5\x42\x12\x4f\xf0\xf4\xe8\x0a\x39\x4d\x18\x13\x2c\x41\x5d\x45\x2d\xe6\x18\x19\x24\xee\x6c\x7a\xa8\xa3\x42\xf4\xa5\x79\x27\xdb\x73\xbb\xd7\x9a\x1a\x66\x8d\x62\xbf\xb4\x8a\xa9\x14\x07\xf6\x15\xfa\x29\xa1\xd3\xaf\x84\xc1\x37\xa5\xde\xb0\xaf\x04\x96\x7c\x97\x4a\x75\xb7\xbf\x62\xce\xe7\x85\xb9\xf3\x5f\x31\x75\xdd\x6b\xcf\xfc\xf6\xb5\x41\x9a\x22\xbe\x2d\xc0\xd5\xc6\x9a\x30\xe2\xd8\xc8\x4d\x27\xf6\xb5\x37\xec\x64\x45\xf6\xad\x93\x89\x9c\x2d\xf3\x5d\x07\x73\x7f\x6c\x91\x0f\xde\x7d\x1b\x14\x8a\x88\xcb\xab\x6a\xa0\x0f\x65\x1c\x0f\xcc\xa9\x34\x5c\x9f\x5d\xeb\xbe\x05\x43\x99\x4f\x16\xbd\x9c\xec\x66\x06\x5b\xd7\x3c\x4b\x83\x9c\x6b\xf1\x54\x10\xb9\x1a\xd6\x6d\x07\xdc\x4b\xb3\x6a\x3b\xb3\x6a\x07\x75\x91\x2c\x74\xda\x42\xc8\xda\xdd\x48\xc3\x4a\x28\x7e\x45\x72\x0b\x53\xbd\xd4\x1b\x92\x6c\x87\x57\xe8\xde\x7d\x7c\x69\xdf\xb7\xc6\x23\x82\x35\xa4\xbb\x74\x4b\x13\xc7\x83\xe4\xe6\xf4\x72\xbe\x59\x20\x80\x7e\x27\x60\xb6\x4e\x36\xb3\xcb\xf9\x66\x34\x5d\xa4\x13\xfc\x81\xa8\x5c\x7c\x6d\x48\x90\xc4\xad\xf0\x7a\x66\xd6\x26\xd5\x8b\x85\xec\x50\xbc\x59\x27\x5a\x94\xa0\x0b\x43\x7d\xbb\x9e\x41\x61\xb5\x0e\x17\x76\x0d\x3e\x1c\x7a\x2d\x90\x90\x5c\x8f\x2f\xf8\xe5\x1e\x9e\x86\xde\x17\x48\x4f\xa1\x86\x90\x7c\x47\xb6\xf8\x7a\x2c\x0c\x6b\xfe\xca\xdd\xa8\xeb\x83\x7b\x54\x90\x6e\x19\x30\x03\x8b\x2e\x90\x12\x21\xac\xe7\x5b\xfa\xd3\x29\x0d\x73\x59\x8d\x37\x9f\x95\xd0\x03\x28\xb5\xb8\x0d\x84\x54\xf3\xbb\xb4\x9b\x79\x78\x4d\x1b\x5e\x2b\x72\x96\xcb\x0e\x9f\x48\x72\x93\x97\x0a\x68\x68\xe3\x35\x6c\x82\xa7\x1a\xef\x52\xe4\x21\x4d\x5c\xec\x53\x6b\x0d\x68\xc3\xbc\x34\x62\x39\x94\x2e\x96\x15\x4f\x04\xa6\x5a\x6d\xa6\x53\x31\x13\x5d\x50\x72\x6b\x0d\xcd\xd3\xc1\x54\x9b\x85\x43\xfc\x21\xa7\x5f\x00\xf1\x28\x65\x97\x65\x23\x70\x50\x43\x5b\xc9\x63\x06\x90\xf9\xf8\x2a\x2b\xf6\x94\xb4\x4d\xd9\xf1\x15\x4f\x72\x84\x9c\x5c\x69\x20\xc2\xeb\x9f\x97\xf4\x31\xdf\xdd\x3c\xde\x5b\xda\xc9\x68\xe3\x7d\xa2\x89\x40\xbd\x70\xfc\x13\x3d\x7e\x8d\xf2\x1e\x30\xd8\xa8\x83\x33\xe0\x9b\x1d\x9d\x89\x71\x19\xcc\xaa\xd6\xfd\x53\x18\x6c\xc6\x51\xda\x9c\x8d\x1d\x34\x3b\x32\xe6\x43\xd0\x01\x04\x17\xe8\x30\x47\x9f\xa0\xc3\x81\x76\x87\x17\x65\xb8\xce\xf0\x9c\xa4\x82\xf1\x63\xde\x70\x61\x04\xde\xbe\x74\x1c\x59\x6d\x73\xef\xb3\xe4\x14\x08\x3b\x23\x7f\x53\x28\xa5\x6f\x65\x0a\x1b\x14\x98\x9d\x5a\x0f\xa1\x3b\x5e\x14\x49\x1d\x99\x56\x1b\x9f\x07\x9e\x15\xcc\xd9\xa9\x2a\xb0\xa1\x17\x10\x73\xa0\xd3\x06\x5f\xad\xfa\x78\x9d\x95\xf2\x0d\xb4\x59\x37\xaa\x16\x07\x97\xee\x8b\xef\x6e\xec\x67\x1d\x0e\xab\xdd\x35\x43\xb7\x99\x00\x0a\xa6\xaa\x60\x0c\xec\x73\x5d\x6b\xcf\x1b\xa6\x5f\x8f\xcd\x83\x23\x2d\xad\x06\xa4\xd0\xeb\x41\x9a\x1e\x24\xaa\xaa\x6f\x15\xc9\x57\x8f\x58\x1b\xe3\xc2\xf9\x68\x54\xb2\xc6\xb8\x70\x37\x34\xcc\x49\xa2\xb5\xe0\xdb\x08\xf5\x64\x6d\xc5\x0b\x1a\x44\xf6\x43\x1f\x30\x17\x0f\xd7\xcb\x21\x46\xba\x47\xb5\x45\x74\x2a\x40\xa7\xed\x9c\x7e\x02\xca\xd3\xef\x42\xf2\x08\xe1\x5b\xe7\x3a\x31\x0d\xf4\x27\x6c\x73\xd1\x01\x1d\xba\x26\x41\xd9\x2a\x98\x42\x30\xd0\xc4\x9e\x02\xfc\x65\x43\x86\xa3\x73\x40\x07\xdc\x54\x40\x3a\xe2\xfe\x67\xb9\xc5\x1d\x21\xd3\x15\x58\xb3\x64\x91\xc7\x00\xe7\x57\x5a\x51\xf5\xa7\x5c\x6e\xf4\xd4\xad\x52\xfa\x4b\xbd\x24\x6d\xd5\x5a\x2d\xc2\x47\xe0\xbc\xdd\x5e\xa2\x63\xe8\x56\xe6\xf9\xfd\x3f\x86\x6e\xa9\x5b\x7e\xce\x77\xbe\x0e\x8c\x27\x92\xe9\x0a\x74\x36\x9a\x4e\xc0\x32\x69\x37\xcc\xe0\x89\xe6\x56\xe0\x3c\x96\xa0\x8b\xf7\x45\x4d\x69\xfe\x17\xb4\x04\x38\x82\xd6\x04\x19\x19\xc1\x73\x6d\x07\x72\xc0\x81\x5a\xd8\x91\xf7\xc3\xb3\x5a\xe9\xbd\xe1\xbe\x98\x4e\x33\x27\x4a\x2e\x4a\x84\x21\xc7\x0f\xa6\xa2\x75\x78\xf5\xa7\x16\x98\x6b\x4f\xcb\xe7\x10\x5a\xc4\x7f\x87\x3c\xdd\x1a\x53\x40\xeb\xd5\x74\x94\x31\x6e\xe3\xf4\x5a\x98\x80\x8b\x58\xd0\x92\x86\x8f\x1f\xd0\xc7\xda\x14\x9e\x29\x38\xfb\x92\xb2\xfd\x1b\x0a\xfb\x63\x66\xa6\x5e\x6a\x77\xa6\x72\xc2\xac\x4c\xaf\xd3\xa8\xc0\x68\xae\xfb\x80\xdc\x70\xaf\xf3\x86\x51\xcc\x9e\x24\x92\xfc\x81\xc7\x71\xe2\x69\x90\x8d\x42\x75\x33\x70\x79\x91\x08\xc2\x82\x27\xd1\x47\x3b\xe9\x03\x84\x66\xd1\x28\x4a\x45\x55\x35\x4b\xf5\x82\xd7\xda\xbc\x26\x7b\xcc\x9a\xc1\xa1\xaf\x78\x12\x94\xd4\xbe\xe2\x01\xa0\x27\x6d\xd7\x01\x7b\x23\x4e\x52\x78\x4e\x63\xae\x5d\xfd\x45\xd1\x9d\xad\x69\xfd\xcf\xde\x51\xef\x05\xf2\x70\xc0\x97\x54\x3e\xcb\x69\xb1\x6a\x3b\xda\xea\x07\x3d\x1e\x70\xb9\xdf\xed\xb8\x90\xe5\x39\xdf\x2f\x37\xed\xe2\x83\xe9\x01\xc3\xac\xfd\xac\x7c\x9d\x44\x8c\x1b\x8d\xaf\x81\x3b\xc6\x16\x36\x08\xe3\x5b\x45\x21\xe7\xdb\xaa\xd2\xb1\x83\xc2\xe5\x42\x52\xdc\xdc\x86\x73\xb7\x91\xb4\x97\x99\x5c\x6e\x92\x5f\x38\x78\xee\xba\x28\xf6\x81\x33\xaf\xb0\x8a\xca\x4d\xec\x11\x7d\x63\xb5\x9b\x9a\xc5\xdb\xf7\xe0\xd8\xd1\x9f\xa8\xa6\x96\x34\xbf\xa2\xab\x67\xcd\x39\x43\x9d\xb2\xe0\xd7\xfa\xd1\x3c\x60\xfb\xbb\x1b\x98\xf6\xa8\xef\x81\xa2\xaa\xdc\xa7\x96\x82\x37\x56\x4c\xe5\x59\xf5\x80\x30\x28\xb9\x01\xf8\x60\x0d\xd0\x38\x83\xd4\x1f\x0e\x3a\x60\xfb\xa2\xb7\x07\xa4\xd0\x44\x3d\x2a\x19\xfa\xc5\x98\x60\x19\x8c\xeb\xfe\x24\xf4\x55\x67\x1f\x9c\xaa\xa2\xb3\x44\xb6\x7c\x6a\x78\x03\x40\x69\x42\xdb\xed\xfd\x65\x82\x05\xd2\x4f\xd0\xd1\x95\xd2\xcf\x4e\xb0\xb1\x16\xa7\x76\xd7\x04\xf4\x01\xba\x21\x0e\x98\x60\x34\x7c\x7d\x7d\xcf\x13\x89\xe2\x78\x20\xe2\x78\x10\xfa\xec\x50\x1b\x11\x3a\xff\xa1\x47\x9c\xff\xd8\x46\x3f\xd2\x9b\x77\xf4\x9f\x61\x28\x38\xa6\xc8\x35\x75\x55\x01\xa6\x81\x56\x94\x1a\x44\x07\x68\x73\xd5\x0c\xd5\xaa\x51\xbe\xd6\x95\x26\x84\x55\xd5\x55\x1c\xdf\x9b\xbf\xdf\xaf\xff\x6d\x32\x19\xa9\x3f\xeb\xf5\xe2\x9e\xf6\x60\xc3\x50\x9b\xe1\xae\x55\x8b\xe1\xe4\x27\x36\x10\xa6\x73\x14\xe3\xbb\x2f\x28\x69\xf1\x8c\x8b\xc7\xf5\xc2\xd5\x6e\xa0\x97\x9b\x4c\x3c\xd6\x8e\x7e\xb4\x6b\x80\xbf\xde\x9f\x3c\x18\x90\xbc\xaa\x04\xc0\xd0\xe8\xbf\xfd\x2f\xff\x5b\x84\xf0\x5f\xff\xf2\x97\xbf\x10\x92\x23\x1f\x80\xd8\x8e\xed\x49\xa6\x9f\xe8\xf2\x31\xdf\x6e\x33\xb6\x4a\xa2\x3d\x5b\xf1\x08\x1d\x3c\xdf\x40\x4e\x4f\x32\x67\x2e\xaa\x2e\xb6\xc6\x79\xe8\xa4\x3c\xdd\xc7\xb1\xf0\xc7\x53\x82\x09\x5a\x90\x70\x82\x86\x43\x2b\x97\x85\xc3\x6c\xc6\xd3\x94\x76\x83\xd3\x36\x66\xac\x3c\x4a\x84\x6d\x7f\x23\x43\x38\x14\xf5\x71\x98\x45\x5f\xe9\xdf\x34\xd2\x8a\x51\x6e\x4c\xea\x99\x50\xcf\x83\xf5\x58\x04\x54\xc4\xd9\x68\x3a\x33\x3b\x4f\x8a\xe0\xc1\x4a\xfd\x4f\xe6\x77\x11\xc7\x49\x71\x14\x5b\x6b\xe5\x10\x5a\xe3\x95\x7e\xa6\x66\x93\xd2\xff\x0c\x9e\x69\x1c\x54\x61\x1d\x8c\x5b\xdd\x56\xba\x6a\x01\x36\xef\x66\x9b\xf3\xa9\x2f\xbe\x7d\x80\xc2\x9b\x8f\x0e\x98\xb3\xef\xe9\xcd\x1b\x41\xcb\x00\x48\x7e\xf6\xd9\x32\x61\x62\x1d\xed\xa1\x1a\xf2\x8e\xe6\x1d\x34\xb6\x26\xb0\x85\xa7\xbd\x2b\x6b\x78\xb1\x27\xa5\x00\xe2\x07\x17\x84\x75\x85\x46\xcf\xd7\xc9\x3e\x8e\x07\x4b\x74\x2b\xbc\x67\xca\x27\x2f\x5f\xfb\xe3\x88\xe3\xd1\x94\xa8\xce\x8c\xdf\x25\x05\x76\xb2\x9c\x95\xe0\x16\xfe\x7b\x99\x08\xfc\x0b\x45\x09\xe4\xe3\x57\x34\xd9\x23\x45\x8d\xf6\xb4\xd6\x8b\x25\x03\x97\x65\xa9\xb6\x11\x7b\x01\xe9\xc2\x9c\xde\x91\x74\xd2\xa1\xa8\x1b\x19\x3f\x71\x9f\x45\x9c\x7d\x95\xf2\x3b\xda\xab\xdd\x00\x4d\x7c\x55\x5e\xfd\x65\x94\x80\x13\xeb\x63\xf7\x97\xd1\x0a\xb0\xe5\xaf\x8d\xe2\xaf\x17\x2f\x41\x17\xf8\x79\xb4\xd2\x38\xb0\x2d\xf1\xdb\x08\xee\x4d\xda\x9f\x4e\x26\x93\x93\x7e\x1d\x8b\x02\xaa\xf1\x59\x24\x2e\x2f\xb2\xe4\xfe\xd7\x5f\xe3\x7e\xfd\xdf\x78\xf2\x35\x8a\xd2\x48\x8a\x8c\x95\x9a\x69\x17\xa1\x61\xd4\xf0\x7d\x74\xd2\xd7\xbe\x85\x46\x66\xfc\x93\x56\x7e\xdb\x0b\x12\xdf\x65\xcb\x5c\xde\xa4\xaa\x87\x93\xfe\x3a\x2f\x24\x15\x69\x3f\x2b\x76\x9b\x2c\x31\x79\xe4\x6b\x74\xa2\x68\x5d\xcd\x34\xac\xb9\xd2\xbc\x28\x7e\xd1\x88\x6b\xe8\x34\xb2\x8c\xe3\xa0\xd0\x39\xd7\x1e\x3a\x77\xa0\x9e\x11\x80\xe6\x4e\x36\x4e\x55\x25\x96\x57\x11\xb0\x30\xfa\x91\x26\xe1\x9a\xaf\x9c\x7a\x5a\x59\x1b\x94\xd7\x47\x54\xfb\x3d\x3d\xcf\xb7\x94\xef\x65\xc2\xc6\x2b\x2a\xb5\x55\x84\xee\xf3\xa1\xba\x7b\xee\x76\x5e\x25\x08\x5f\xa3\xdb\x9f\x72\x1b\xd2\x6f\xeb\x3b\x26\xfd\x43\x9e\xe8\xb9\xe1\x68\xcb\xf7\x25\xdd\xef\x22\xbc\x45\xb8\xa4\xd2\x36\x7f\x83\xef\x4f\xd0\xa1\xf7\x4b\x67\x41\xe3\x15\xd2\x2f\xfd\xb5\xef\x65\xe1\x2a\xf1\x38\xf3\x79\x4d\xc5\x68\x09\x89\x23\xda\x3b\x16\x0d\x73\xfd\x22\x0d\x13\x3a\x33\xab\x97\x46\x11\xea\xd9\x95\x8c\xfe\xdb\xff\xfa\xbf\xd7\x3c\x20\x8e\xfd\x95\xa5\xa0\x46\xa9\x6a\xe3\x66\x9f\x64\xea\x27\x3d\x65\x2b\xc2\xeb\x17\xea\x8e\x25\xf7\xa4\xa1\x37\x89\xd1\xe9\xeb\xda\x39\x85\x28\x75\x5f\xf4\x0d\x6e\x5e\xd5\x35\xb6\xbc\x6d\x56\xbb\xa9\x2d\xc7\xbe\xbb\xdb\xa4\x0b\xc0\x91\xc2\x12\x81\xed\x15\x05\xc5\x69\xdd\x2c\x82\xbd\xef\x19\xb7\xb3\xb8\xf4\xb7\xbd\x6b\xae\xf5\x64\x75\x4c\xeb\x46\xdb\x71\x1c\x2e\xdc\xd9\x24\x8e\x61\x8d\x89\x7f\xaa\x67\x00\x30\x0b\x6b\x9b\xa4\x8e\x62\x22\x50\x4a\x87\xc3\xd3\xe9\x64\xd6\x75\x54\x89\x77\x7a\x4a\xfc\xf5\x64\x82\xd2\xc6\xad\x3a\xf4\x3e\x5f\xef\xfe\x64\x82\x0e\x07\x85\xd2\x6b\x6c\xcf\x58\xcf\x06\x6f\x0c\xad\x2a\x1f\x9d\x01\xc7\xc2\x75\x3c\x83\xf4\x82\x63\x46\xe9\xaa\x34\x5e\x60\x9c\xeb\xb3\x54\x91\x45\x3e\x97\x18\xe1\x8f\xbf\x93\x67\x6c\x18\xc6\xe3\x55\x7e\x65\x62\x27\x3d\xc9\xaf\x6a\x8e\x70\xfe\xaf\xe7\x08\x37\x78\x9f\xc2\x86\xf0\xaa\xc9\xdf\xc8\xda\x8f\xa8\x92\xbf\x97\xc1\x2b\xef\x62\xf0\xca\x2e\x06\x2f\x18\x91\xef\xa8\xc8\xa0\x73\x9f\xf4\x6c\x30\x7e\x9d\xd5\xfb\x44\xbd\xb3\xf8\xb3\x23\x3f\x80\x94\xa8\xe5\x3c\x74\xb0\x43\x1d\xde\x40\x9b\x2e\x45\x01\x90\x82\x53\xd1\x76\x5e\xd9\xe1\x6e\x14\xb7\x39\xe4\x9e\xf6\x3e\xb3\x62\x80\x80\xf1\x2f\x02\x95\x0e\xad\xe2\xd6\xe0\x33\x77\x15\xf1\x39\xce\xc7\xf9\xf3\x46\xe9\xd2\x19\x35\x65\x4b\x99\x5f\xd1\xa7\xda\x9b\x78\x0f\x18\xe1\x3e\x30\x0f\xd6\xbd\xdd\x67\x18\xf1\x05\x73\x47\xa7\x03\x54\x3f\x1c\xde\x51\x95\xfc\x4b\x9e\xb0\x2f\x62\x4a\x1f\x6c\xd9\x3b\x38\xb7\xd4\x53\x37\xcd\x64\xd6\x33\x90\xb5\xe6\xc4\xd2\x22\xad\x1f\x3e\x55\x24\x65\x18\x1a\x79\x02\xbf\x0f\xb5\x83\x8c\x1a\x85\xab\xb9\x48\x5c\xb3\x84\x5f\xe4\x8c\x26\x81\x4b\x50\x8b\xeb\x33\xec\xb1\x01\x9d\x6b\xd0\x91\x23\x57\x50\x8f\x43\xcc\x68\x7e\x4a\x5c\xae\xd6\xb0\xaf\xf1\x75\x5a\x90\x57\xe0\x5b\xca\xf7\x22\xca\xc1\x17\x57\x90\x32\xac\x5b\xb5\x1c\xe1\x70\x71\x6c\x18\x5d\x7f\x75\xfc\x9e\xd4\xf4\xcd\x42\x75\x55\x0f\x19\xca\xb4\x8e\x04\xe8\x5a\xe8\x09\x70\x42\x00\xed\x10\x31\x76\xeb\x58\x55\xf7\xde\xef\xef\x4f\x26\x17\x86\x08\xd5\x45\x34\x6b\xdf\xeb\xf4\xf8\x59\xd2\x31\x67\x56\x55\x25\xb5\x0f\xf3\xc7\xf5\xa8\x12\x11\x72\xaa\x89\x08\xd7\xcf\xb0\xae\xd5\x11\xab\x4f\x8c\xe4\xfb\xe5\xa6\xcd\xe5\x37\x01\xe0\xbd\xd6\x9f\xb2\x55\x52\x57\x6b\xcb\x5e\xa4\xcf\x0f\x18\x88\x80\x21\x10\xc7\x9a\x83\x61\x20\xbe\xc2\xd4\xbe\x91\x09\x40\x6b\xaf\x85\xef\x64\x02\xde\xf4\xeb\x05\xdf\xdd\x44\x38\x77\x9f\xaa\xc3\xfc\xcb\x18\xef\x8e\x19\x84\x07\xce\x4c\xbc\x6f\x78\x19\x8e\xb3\x16\xf0\x37\x30\x3d\xce\x59\x06\x83\x0d\x43\xc1\x79\xee\x90\x3c\xe7\x84\x71\x9c\x24\xa6\xa9\xaa\x72\x2e\xec\x55\x7b\x6f\xf4\x0d\xf1\xb8\xa1\xd8\xe5\xbd\xdc\x17\x32\xdf\x15\xd4\x03\xca\x14\x21\x3d\x8e\x66\xbd\xf6\x24\x6b\xcd\xd9\xa0\xf1\x9a\xff\xdd\xba\xa3\x8c\xbc\xa4\x6e\x61\xa8\xf1\xea\xf0\x4a\x87\xed\xcc\x3c\x27\xa0\x0a\xb2\x06\x25\xd7\xd6\x17\xa8\xfd\x6d\xca\xf5\xac\x5b\xc8\xf1\x45\xb6\xaa\xaa\x41\x5e\x55\xb9\xfe\x39\x01\xef\x4e\x37\xda\xef\x53\xed\x40\xcd\x66\x5c\xb9\x0c\x70\x68\x66\xf5\xbd\xce\xeb\x4e\x5d\x15\x9c\x85\xc9\x50\x01\x38\x3f\x55\xe5\x1c\x3b\x74\x6d\x0d\xde\x13\xaa\x9f\xb8\xc7\x7c\xcf\x64\x1c\xd7\x0e\x7a\x1d\x6b\x46\x5b\x8d\x0c\x4c\x3b\x05\x29\xe7\xff\x17\x6d\xef\xba\xdd\xb6\x91\xec\x8b\x7f\xe7\x53\x88\x58\x39\x38\xe8\xb0\x49\x93\xce\xe4\x9c\xd9\x90\x5a\x5c\x4e\x6c\xc7\x9e\xf8\xb6\x23\x27\x8e\x43\x73\xbc\x20\xb2\x29\x22\x06\x01\x4e\xa3\x29\x59\x11\xf9\x32\xff\x27\xfd\xaf\xae\xea\x2b\x00\xca\x9e\xd9\xeb\xf8\x83\x05\xf6\xfd\x5a\x5d\x5d\x5d\xf5\x2b\x07\x7d\x32\xb7\x7a\x1a\x0b\x56\x80\xd2\xe8\x14\xff\xcc\xf0\x8f\x4b\x98\x42\x40\x2f\x63\x77\x65\xb5\xe4\xe9\x62\xb6\x70\x71\x14\x95\xac\xfd\xc0\x87\xf3\xa1\xf7\xeb\xbb\xf9\xc1\x00\x2f\xeb\xfc\xf5\x6c\x3c\xf7\x95\x55\x67\x0f\x6d\x29\xe3\x43\x4f\x8a\xdb\x3b\xbc\x13\x7f\xaa\x34\xe6\x25\x35\xfe\x76\x69\xe6\x3e\x54\x44\x20\xf7\x5d\x81\x6e\xbe\x5b\xc6\xc1\xf2\x9f\xaa\x83\x5d\xeb\x88\x35\x4b\x25\x74\x65\xe3\x96\xfb\x3d\x1f\x65\xcb\x25\xe2\x1c\xaf\x40\x42\xa9\x4f\xb3\x47\x45\x01\xa1\x35\x1c\xf1\x7e\x1a\xba\x43\x2f\xed\x8a\x45\x71\x8b\x6e\xea\x25\xda\x81\xbf\x51\xdc\x18\x8a\x16\xfd\xe4\xf0\x63\x41\x05\x11\xb9\xc9\x0d\xdf\x5c\x72\xe1\xad\x76\xc5\x88\x36\xd3\x1f\x91\x1c\x07\x37\xb9\x26\x46\x2d\x69\xa3\xd6\x76\xd3\x5f\xde\x40\xb6\xf5\x1f\x8c\x34\x27\xac\xa8\x9d\x46\x6a\xea\x60\xc2\xee\x07\xa0\x39\x90\x03\x5c\x02\x69\x37\x75\x08\x18\xdf\x37\x55\xd2\x5c\xf5\x47\x1f\xb9\x1a\xe9\x8e\x3e\x79\x29\xb6\xbe\x31\xc8\x5f\x49\x77\x7a\x5d\x08\xc3\x01\x89\xe9\x86\x1b\x0e\x09\x0f\xed\x40\x1f\xf6\xa9\x4f\x27\x12\x71\x40\x92\xd4\x5d\x43\x37\xea\x79\xf9\x64\x99\xcb\xaa\xc3\x2d\x4b\x77\x0f\xe0\x5e\xe0\x11\x8c\x50\x3a\x2d\x59\x83\x7c\xa8\xe3\x6e\x53\x95\x8f\xca\x05\xaf\x25\x5e\xf0\xb2\xbc\x74\xc6\x26\x7f\xea\x71\x5f\xe6\xd7\x54\x92\x8e\xf7\x9e\xaf\x7b\xec\x31\x65\x38\x0e\xb1\xf3\xf5\x46\xa5\x30\x0f\x37\x5f\x7a\xa6\x5a\xe6\xd7\x5f\x7e\xa1\xba\xef\xd5\xc6\xdb\x56\xb8\x65\x9b\x43\x9e\x90\xa9\x15\x70\x7a\x43\x9c\xfe\xe4\xce\xe5\x7f\x63\x4f\x04\x30\xd3\x5f\xff\xd2\x73\x22\x4d\xd9\x8d\x27\x9e\x84\x37\x1b\x46\xc3\x87\x24\x7e\xb4\x6c\x89\xef\x2e\xcd\x66\x7e\xed\x12\xb3\x8c\x88\xdb\x17\xfd\x26\x0e\xb7\x0a\x04\x22\xeb\xed\x8b\x56\x22\x0c\x56\xc9\xec\xe6\xe8\x77\x40\x77\xdb\x04\xad\x62\x9e\xfa\x5b\x26\x18\x8d\xc6\x93\x64\xe3\xa9\xc7\xbc\xfd\x78\x64\xd0\xd0\xed\x16\x1d\xfc\x4a\x46\xa5\x77\x8c\xba\x6b\x45\x4e\xc5\x89\xdc\xcf\xad\x94\x26\xcd\x51\x3e\x45\xc4\x71\x09\x16\x7c\x81\xeb\x89\xf7\x3c\x91\x46\xda\x0c\x4a\xd4\xea\x1e\x9c\x08\xe4\x60\x80\xa7\x21\xc6\xc6\xb7\x7b\x6d\x82\x5d\x1f\xf5\x38\xdb\xd6\x42\x70\xdd\x04\xf1\x84\x91\xb3\x83\x8c\xa2\xc5\x9f\xc1\x7d\x16\xed\xda\x2b\x40\x27\x31\x92\x67\xc0\x74\x11\xd6\x78\x64\xbf\xaf\x34\x80\xa9\xc3\xf3\xf6\xdf\xc4\x72\x6d\xc6\xe3\xe7\x18\x33\x96\x70\x26\x04\x00\xfe\x21\x9a\x0f\x41\x6d\xf9\xd7\x79\x82\x09\x15\xdb\x81\xf6\xef\x35\x73\x21\x25\xb8\xac\x52\xfc\x89\x9f\x94\xb7\x92\x72\xc5\x31\x81\x3b\x53\xdf\x0f\x2a\x6a\xd4\x43\xb5\x95\xc3\xf0\xda\x99\xb6\x39\x9c\x39\xe4\xbf\x5c\x87\xe8\x42\x5b\xb0\x3c\xce\xaf\x61\xc5\xe2\x1d\x1f\x1a\x52\x78\x0d\xd9\x0d\x26\xba\x29\x3a\x8f\x0b\x85\xc6\x74\x61\x1b\x1b\x0c\x01\x98\x01\xe7\x86\xa7\xa9\x6a\xef\x90\x9d\xa2\x08\x7c\x75\xd0\x5a\x7b\x8d\x80\x8b\xbc\xba\x84\x64\x40\xec\x9c\x80\x69\x97\xa0\x0a\xf6\xc4\x07\xe7\x76\xd7\xc3\xab\xa6\x6f\x50\xb4\x0e\xed\x59\xc9\xad\xb1\x58\x8a\x22\xbc\xbd\x19\xef\xf2\x06\x30\x59\x8b\x68\x12\x73\x89\xbc\xa2\x51\x44\x08\xbd\xae\xf2\x65\x52\x0d\x98\xb6\xb0\x2f\xe8\xa2\xab\x32\x04\x3a\xc3\xea\x16\x44\x33\x91\xe0\x44\x6b\xf9\x32\x13\x9f\x00\x29\xbe\xa4\x63\xbc\x4e\x03\x78\x13\x4d\xb6\x6c\xb0\xe8\xf0\x34\x74\xc2\x47\xf9\x92\xb1\xed\x81\x58\xa2\x06\x6d\x58\xb9\xfb\x50\xc1\x56\x6a\xf9\x00\x62\x17\xa0\x7c\x55\x03\xf6\xc4\x20\xf8\x17\x88\xee\x51\x8c\x64\x45\x50\xc8\x52\xab\xab\x7a\xbe\x4a\xb4\x6b\x0a\xd6\xee\x00\x0e\x81\x91\x22\x46\xe6\xf5\xb6\x17\xda\x2f\x74\x60\x9e\x83\x4e\xef\x2e\xf1\x63\x40\xd5\xf7\xc1\x3f\x93\xad\xe0\xfb\x65\x7e\xbd\xdf\x92\x6f\x1e\xe4\x78\x23\xc7\x79\x7b\x95\x6d\x38\x42\x55\xa8\x5d\x6e\x4c\x07\xbe\x6b\x4f\xeb\x52\x87\xfc\x66\x5e\xae\xfb\x4b\xd3\xb0\x0c\x3b\x5d\xc3\xda\x21\xb4\x1a\xb0\x25\x42\x6e\xc3\x1b\xee\xa9\x5a\x2b\x54\xf6\x99\x38\x25\xe0\xb8\xd7\xdb\x35\xc6\xe6\xf6\x90\x48\x5a\xd3\x05\xcd\x68\x41\x08\x5d\xab\xf1\x43\x82\xb5\xe4\x49\xa6\x67\xaa\xa0\x37\x26\xb4\x08\x91\x85\xc9\xe9\xca\xbe\xbb\xc6\xf1\xda\x7e\x9f\x92\x7c\x95\x6c\xaa\x64\x45\x18\xdb\x54\xc9\x9a\x90\xd5\x68\x5b\x6d\x13\x42\xd7\xfa\x6f\x31\x1c\x5a\x39\xa5\x9a\xc5\x3e\x5b\xcf\xc6\x73\x6d\x8e\xb0\x42\x1c\x60\x48\x6e\xbe\xb2\xc1\xc0\x3e\x4c\x2f\xd9\x98\x6e\xd9\x98\x6e\x60\x01\xd0\x6b\xc8\x4b\x6f\xdd\x53\xf5\xc6\x3c\x04\x5c\xdb\xa7\xea\xe5\xd9\x6d\x1c\x6f\xfc\x97\xe9\x25\x61\xec\x3a\x0c\x38\x25\x83\xc1\xd2\x4e\xf7\x15\x83\x2e\xd0\x4b\xec\x03\xfd\xe8\x2a\xb0\x9a\xdd\x6a\x1f\xae\xac\xc1\x46\x3a\x26\xf4\xd2\x8f\x5a\xfb\x51\xe4\x74\x7b\xf6\x31\x8e\xaf\xfc\x3a\x6d\x41\xdb\xe1\x84\x30\x76\xe9\xc7\x5d\xfa\x71\xaa\x69\xdb\xde\x6a\xb6\xf2\xe0\x55\xaf\x2c\x24\xa2\x2b\x86\x50\x35\x26\xb8\x33\x30\x76\x89\x5b\xf6\x86\xc1\x94\x2e\x09\x7d\xc2\x60\x52\x6d\xdb\xa0\x77\xb6\x80\xd4\x21\xc3\xb9\xc9\xdd\xef\x55\x81\xfb\xfd\x96\x27\x37\xf4\x09\x99\x26\x3f\x08\xbd\x22\x56\xf4\x86\x3e\xa1\xd6\x3d\x15\xed\x8f\x89\x31\xfe\xbb\xff\xe9\xba\x5b\xfa\xd3\x54\x5b\xbb\x3f\x71\x47\x70\x2b\x6b\x8b\xb1\x70\x32\x38\x2d\xe9\x32\xcf\xde\x2d\x69\x57\x98\x9c\xd0\xee\xec\xa0\x3e\x13\x72\xc8\xb4\xc9\x53\x93\x03\x6d\x96\xde\xf6\x00\xba\xd8\x04\x22\xad\xe9\xcf\x8e\x97\xfd\x87\x24\xe6\x9b\xa4\x28\xc0\x03\x28\x8f\x4c\x66\x7d\xc6\x9d\xf0\x0f\x5e\xb9\x4d\xa6\x8f\x9c\x78\x12\x16\x95\x96\x8e\xf1\x32\xd6\x7a\x30\x09\x44\xbf\x23\x4d\x08\x9f\xe8\x58\xa6\x29\x66\xb7\xf6\x00\xe4\x68\xfb\xea\xea\xe8\xd0\x7e\x7f\xa4\x71\x17\x52\xa8\xf1\x54\x04\xfb\x47\xbd\xfc\x13\x73\x9b\x37\xfb\x61\x0a\x2a\x3d\xea\x2b\x75\x81\x84\x8e\xc9\xfd\x0f\x45\x76\x22\x9a\x7d\xc2\x3a\x03\x7d\x38\xde\x52\x6b\xb8\xac\x1a\x3a\x6a\xc7\x1f\x96\xc6\x87\xe0\x29\x89\xd0\x0b\x7c\xf9\xba\x40\xcc\x8e\x3b\xa3\xf3\x90\xbe\xe6\xb4\x71\xd0\xa4\x9f\xf8\x81\xbe\xf1\xdf\xa1\xee\x34\xc7\x76\xec\x7e\xa5\x81\xfb\x42\xaf\x05\xf3\x03\x45\xc8\xda\xa6\xd2\x27\x67\xc0\x21\x3a\x74\x07\x78\x64\xb1\xf9\xfa\x2c\x2c\x47\xb1\xf4\x01\xac\xa0\x4e\x10\x84\x39\x6e\x30\x04\xa9\x68\xa7\x04\xb8\x0a\xc3\x9f\xf8\x8d\x9f\x83\x1d\xae\xfd\xa5\x5a\x85\xa2\x3b\x61\xf0\x63\x4b\x83\x68\x6c\x84\x7a\x02\xf5\x91\x4b\x8d\x6b\x6c\x55\x1d\xdd\x8d\x72\xc9\xf9\xf6\xc7\x6a\x1b\x8c\x9c\xf3\xd8\x39\x9b\xd3\x7b\x9b\xc9\x67\xd2\xa2\xca\x6e\xb4\x48\xd0\x36\xd0\xc2\x2b\xb7\x63\xb0\x39\xbd\x96\x5f\x83\x60\x5c\xd5\xa6\x6b\x3e\x03\x76\x37\xd3\x3a\x16\x0d\x5b\xc8\x35\xba\xa3\x5f\x39\x9f\x1b\xb0\x45\x37\xbd\x4e\x03\xd4\xe8\xbf\x34\x24\xcd\x60\x9f\xcb\x38\x69\x62\x4d\xb7\xab\x14\x66\xee\x4a\x16\x82\x4f\x6b\x5f\x13\x92\x96\x9e\x9b\x89\x38\xde\xa2\x0e\x17\x48\x50\xcf\xd8\x98\x58\x1f\x00\xf8\x31\x9c\x1c\x0e\xf4\xcf\x60\xa5\xa3\xab\xc4\xd6\x32\xbf\xd5\x63\xac\x57\x82\xf5\xb7\x41\x0e\x54\x56\x1d\xe9\xaf\x8f\xa7\x87\xf1\x39\xb6\x93\x3c\x9f\x7a\x5e\x7e\x8d\x21\xeb\x52\x2c\xd6\x61\xfc\x62\x7d\x40\x2f\xae\x97\x92\x7e\x94\xda\x66\xcb\xfa\xc0\x05\xc3\x25\xeb\x96\x7a\xec\xb9\x55\xbd\x91\x9d\x58\x2a\x34\xd3\xe6\xc2\xdc\xb9\xde\x33\x9e\x66\x76\x8c\xa3\xb5\x30\x47\x6b\xe1\x7c\x95\xc8\xb3\xdd\x34\xc9\xd9\x98\x56\x6c\x62\x3d\x51\x91\x54\x9e\x15\xd3\x8a\x25\x39\x93\xc3\x1d\x19\x4c\xd2\xa4\x56\x04\xd4\x08\x81\x01\x0c\xaf\x88\x63\x55\xcc\x77\xf3\x73\x89\x98\x27\x49\xc5\x8a\xe1\x4e\xdd\x6c\xe4\xb9\x8a\x4d\x32\x6b\x20\x68\x35\x13\x50\xef\x03\xea\x7f\x38\xa7\x3b\x28\x45\x30\x06\xca\x35\x35\x17\x80\x8f\x38\xc5\x46\xa4\x26\x33\x94\x24\x08\x35\x86\x69\x08\x40\x97\x13\xb4\xe0\x85\x56\x0c\x1f\xce\x99\x2a\x74\xf8\xdd\x1c\x7f\x4f\xe6\x5e\x81\xa7\x44\xd5\xf8\x70\x90\xd4\x43\xf6\x1d\x99\x3b\x87\x5b\x8a\x83\x37\xb6\x71\x22\x8e\x73\x06\x1d\xc0\x72\xcf\x5c\x77\x4d\x47\xa1\x8a\xc1\xdf\xe6\x71\xdc\x57\x1f\xdf\xb7\xeb\x48\x60\xac\x55\xd7\x6c\xdf\x8d\xb7\x42\x6d\x95\x09\x32\x73\xfd\x54\x99\xe6\x80\x13\x57\x51\x23\xaf\x4e\x33\xea\x2c\x85\xd3\x1d\x35\x16\xc4\xa9\xaf\x68\xf2\xc4\x21\x9e\x68\xb1\x3b\x08\x89\x02\x5c\x08\x76\x77\xa0\xbc\x65\x8e\xae\xf1\x6b\xc0\x87\x13\x09\x69\x6d\x88\x4f\x01\xf4\xab\x89\x34\x21\xe7\xec\xce\x77\x69\xd8\x40\xc1\x6d\x80\x1f\x60\x65\xbf\x1c\x81\x2e\x20\xbd\x66\xf5\x5d\x3e\xb4\x54\x33\x9e\xc8\x86\x3f\xb0\x99\x9c\x7b\x9a\x44\x17\xd0\x0a\x68\x8b\x87\xb9\x85\x98\x28\xea\xfc\x7f\xa7\x3d\xd6\x87\x31\x6f\xf9\x67\x6d\x0d\xd2\x8a\x72\x40\x2a\x21\xd8\x8f\x6f\xd5\x1a\x78\x12\xde\x64\x9f\xd5\x85\xdc\x13\xb3\xd0\xb0\xcb\xaf\x76\xc0\x89\xd4\x0d\x5f\x81\xaf\xa5\x23\x1f\x5a\xe6\xb4\xcd\xae\xf8\xef\x46\x58\x96\xd8\xc7\x7b\xf3\xa1\x9f\xef\xf7\x7b\x1b\x73\x59\x2d\x6f\x89\xe7\x63\xde\xf3\x44\xd8\x5d\xfa\xfb\xff\xb4\xf4\x00\xb7\xe7\x93\x0c\xe0\x36\xe5\xe8\x26\x5f\x5e\x71\xe9\xf0\xcd\xd1\x1b\x89\x0d\x77\xd8\x5c\x39\xf1\xd3\xcf\xf2\xf9\x28\xbb\xac\xae\xb9\x91\x5c\xfc\x56\x06\x91\xa4\x87\x18\xb0\xac\xa2\x06\x8f\x60\xc0\x2a\xb8\x77\xab\x81\x8d\x3c\xef\x69\xa2\x87\x70\x1d\x51\x51\x2d\xb2\x22\x32\xce\x97\x3f\xe5\x09\xbe\xfb\xe9\x70\xc6\xca\x69\x36\x60\x3b\xdf\xa4\x37\xcd\x86\x0d\xc8\x13\x2d\xde\x8f\xd4\x88\x45\xa0\x97\x1d\xe1\x18\x42\x8d\xfa\x11\x8f\x77\x28\x4a\x1c\x53\xc8\xcc\x06\x00\xb5\xbe\x1d\x24\x5e\x41\xd3\x71\xaa\x66\x89\xf4\x0c\xd2\x31\x58\x12\x35\x52\xbc\x86\x14\x1a\x28\x97\xed\xa8\x40\x73\xd6\x01\xdb\x19\x1b\x23\x3d\x44\x99\x37\x44\x19\xf5\x1c\xe5\xbc\xf5\x21\x73\xc0\xfa\x8a\x59\xc1\x8d\x36\x3f\x2f\x99\x36\xea\x05\x85\x5a\x54\x95\x35\x9d\x17\xa4\x1c\x32\xd5\x0a\x9a\x0f\xd9\x23\x1f\x99\xc0\x0e\xa9\xd8\xef\xfb\xa2\xed\xec\x0e\x61\x6f\x8f\x1a\x6e\x0d\x58\xa5\x2b\x1d\x20\x7c\xa7\xf6\x14\xf7\xef\x8c\xab\x6f\xe9\x5e\x0e\x33\x67\x99\x9c\x0f\xc1\xb8\xcb\x23\x57\x3f\x06\x60\x25\x86\xbb\x82\x35\xd3\xf4\xd4\x48\x28\x2c\xf0\x92\x6e\xf0\x0f\x38\x59\xcc\x43\x2f\x38\x2f\xbd\xe2\x68\x45\xee\x1c\x8e\x61\x22\xa9\x7d\xe8\x05\x84\x94\x9c\x4a\x9a\x35\x1c\x39\xd2\xca\x41\xa6\x4f\x71\xe6\x99\xb6\x54\x36\x16\xcb\x7a\x41\x98\xb6\xd4\x41\xf5\xb5\x0f\x47\xb3\x43\xfe\x57\x20\xca\xec\xff\x7a\x68\x05\xf7\x8c\xfd\xa3\x4a\x04\x89\x63\x19\xc7\x3a\xf6\x6c\x37\x93\xea\x70\x44\x40\xda\x84\x33\x9e\x25\xaa\x84\xe1\x50\xce\xc9\x30\xb1\x65\x4c\xc7\xe9\x84\xd0\x52\x91\xb3\x94\x33\x48\xa5\xca\x39\xdb\x79\x66\xe8\x5e\x91\x03\x53\xa4\x3a\x8a\xa0\x56\xb6\x9b\x0d\x06\xaa\x4c\x5b\xa4\x2a\x4d\x95\x19\xc7\x20\xec\x95\x55\x1c\xf3\x73\x01\x2c\xdf\x34\x4b\xf8\x70\x42\xd2\x0c\x4c\x48\x0f\x25\xd3\x50\xee\xa1\xff\x4c\xf0\xe0\x00\xe0\x3f\xa5\xdd\x35\xe8\x41\xb3\x00\xcc\x78\x90\x67\xed\xcc\xd2\xce\x12\xed\x82\x7d\xc1\xea\xa4\xa0\x59\x86\xbe\x1d\x7c\x8f\x58\x7d\xf6\x7b\x15\xc7\xc9\x02\xa1\xa3\x21\xd9\xef\x15\x21\x74\xe1\x79\x60\x0c\xb0\x86\xc6\x3d\x09\x5e\xa9\xb0\x5d\xbe\x59\x7b\xe3\x78\x10\x2c\x40\x0d\xf8\x16\x1c\x28\x1c\x77\x0c\xfa\x49\xf5\x62\x10\x50\xa5\x60\x6d\x1b\xf8\x06\x84\x6d\xc8\xad\xe5\xfa\xa0\xd4\x67\xbb\xef\x94\x4e\x36\x3d\x04\x19\x17\xff\x06\x06\x6c\xf4\xf9\x17\x5e\xb0\x12\x70\xdc\xf2\x51\xb5\x93\x75\xbe\x44\xc8\xa3\xdc\xf3\x55\xd7\x05\xfb\x07\xfe\x16\xc4\xa0\x93\x5c\x92\x33\xcb\xa2\xbf\x91\x49\x69\x30\xff\x69\x7f\x4c\x0d\x1a\x50\xce\x1e\xe5\x49\x49\x05\x3e\x18\x20\x5e\x66\x69\x9c\x9d\xe5\xab\x24\x3f\xaf\xda\x45\xd8\x14\x14\xc1\xf2\x42\x57\xec\xfd\x31\x9d\x90\x9e\xc3\xcc\xf6\x70\x75\x20\x79\x4e\x4e\x4f\xcd\x6e\x7c\xac\xba\x94\xc1\x7e\x14\x84\xee\xd8\xf3\x32\xc9\xd4\xda\xd9\xc5\xb1\xf6\xd5\x30\x36\xfe\x31\xfb\xbb\xfd\xbe\x9f\xd4\xa3\xc5\xfa\x1c\x85\xbf\xa3\xc5\x7a\xbf\xaf\x81\x77\xb7\x01\x71\x5c\xc3\x50\x7a\x7e\x20\xea\x5e\xce\x5e\xe7\x49\xc6\x8a\x91\xac\x8c\x1b\x68\x3b\xa6\x8f\x65\x5b\x58\x9f\x0f\xe1\x8c\x32\x12\xfb\x87\xdf\xba\xb1\xed\x30\x39\xa5\x3b\xa6\xd1\xaf\x7c\xec\xf0\x32\x30\xbb\x5d\xea\xe7\x21\x3c\x23\xa9\xa4\x3b\x47\x6b\x58\x7f\x4c\xab\x73\x03\x44\xa1\x01\x1e\x86\x75\x5a\x9d\x81\x49\xac\x0e\x18\xd4\x69\x92\x21\x00\x00\xd8\xb3\x1e\x70\x1b\xbd\x85\x86\xae\x0c\x60\x91\x71\x86\xcf\x64\xa6\xc2\x97\x4c\xc0\xdf\x2d\x2b\x92\x35\xa1\x1b\x96\xd1\x6b\x56\x24\x4b\x42\x6f\x19\xe8\xef\x95\xe7\xd7\xde\xec\x0a\xba\xa4\xb7\x6a\xee\x80\xdb\x3e\x85\xd3\x69\x31\x5d\x32\xb6\xde\xef\x97\x8c\xed\x14\x1d\x5d\xd3\x09\x49\x97\xc3\xf5\x19\x9b\xb8\x4b\xce\x15\x2b\xcf\xb6\xfb\x7d\x39\xdc\x9e\xb1\xeb\x61\x39\x5d\xa7\x4b\x7a\xc9\xca\x61\x72\xc5\xd8\x7a\xba\x4d\xaf\xc9\x29\x40\xf7\xf8\xa8\x3d\x57\x08\xd4\x63\x45\xd5\x50\xff\x15\x85\x1c\x9b\xf4\x96\x5e\x9e\x0d\x27\xd3\xe1\x24\xbd\x3c\x9f\x80\xc3\x4c\xe8\xb0\x16\xd1\x2e\x78\x5e\x24\xab\x07\x0f\x09\xbd\x61\xeb\xc1\x47\xfd\x1c\x71\xc3\xd6\x76\xa9\x3d\x61\xe3\xd3\x27\x67\x1f\x4f\x07\x83\x27\xe4\x06\x5b\x7e\x43\x27\x58\xc8\x67\x56\x24\x37\xa4\xf7\xf9\xbc\x9c\x26\x4b\x76\x43\xaf\xd9\x67\x9a\xdc\xb2\x4c\x5d\x6a\xae\x07\x6c\xc2\xbf\x53\x23\xfa\x91\xa4\xc9\x9a\xdd\xd0\x2d\xfb\x0c\x03\xb7\x1a\xb2\x8f\xfe\xc2\x79\x25\x03\x2c\x1b\xde\x62\x63\x9b\x60\x87\x2e\xc6\xbc\xd6\x30\x76\x29\xc9\xdd\x25\x3a\x8d\xde\x0a\x1e\x35\x59\xf0\xbf\xfd\xd7\xe9\x60\x20\xc9\xa5\x0c\x10\x95\x1b\xb0\xf8\xaa\xdc\x57\xd5\x92\x27\x08\x96\xd3\x48\xac\x8a\xbe\x04\xfc\xff\x7f\xa7\x94\x43\x00\xc5\x78\x29\xcd\x4b\xea\xa5\x0c\x20\x1f\x1f\x7c\x3f\xb6\x90\x71\x00\x34\xde\xee\xab\xba\x24\xfe\xe2\x15\x06\x38\xea\x9e\x3f\xe7\xe7\xdd\xc3\x68\xef\x09\xcd\x51\xb4\x11\x5a\xa7\xc2\xc7\x0a\xb2\xff\x22\x42\x85\x1d\x54\xaa\x6e\x27\xbd\xa0\x43\x82\x58\x1e\xeb\x98\xa1\x7b\xce\x0c\xa4\xa3\x01\x09\x7a\x30\xb1\x9d\xcd\xcf\x1f\x7a\x9d\x75\x77\x9a\x1c\x4e\xc4\xc9\x18\x96\xd9\x0b\x49\x9f\x4a\xfa\x97\x76\x90\xfc\x4c\xb2\xb1\xa3\x0f\x3f\xe8\x8b\x1a\xbc\x0b\xb3\xbb\xc5\x26\xe5\x80\x05\x67\x44\x9c\x8a\xee\xa8\xfb\x26\x8e\x61\x8a\x6f\x86\x78\xac\x50\x0f\x13\x4f\xa5\xf3\x9c\x53\x21\x84\x9c\xbc\x55\x07\x9e\x8a\x42\x7c\xbd\xd7\x97\x7f\xd6\x18\x13\x3a\xa3\x7a\x06\xe2\x6d\xd1\x19\xf7\x63\x06\x32\xfd\x71\x5b\x4f\xc1\xd6\xf8\x12\xef\x58\xd0\x54\x7b\xd9\xd1\x3e\x84\xcd\xf5\x24\xfc\xf9\xa6\xd2\x75\xa1\x22\x8b\xa2\x65\xcb\x74\x30\x78\x26\x0f\xf4\x2f\x39\xfd\x4b\x8e\xaa\x6d\x6d\x1c\xe1\xc3\xc0\x90\xd4\xe0\x00\x56\x37\x65\xfd\x93\xa8\x76\x5b\xf6\x97\x64\x77\xd5\xb6\x4e\x67\x3a\x6a\x4e\x97\xbc\xc8\x6e\xf9\x52\x35\xf9\x32\x5b\x7c\xaa\xd3\xd9\xdc\xdb\xa6\xbf\x06\x18\xd6\x8d\xd2\x40\xd8\x02\x36\xcf\x49\xdb\x22\x80\x8f\x9a\x25\x53\xc5\x6d\x2c\x2b\x84\x36\x6b\xfa\x6e\x9b\x89\xf9\x68\x91\x15\x45\x12\xc2\x2d\x1b\xa8\xc9\xca\xaa\xfb\x05\xfe\x5d\x55\xf8\xac\x9c\xe3\x9b\x7b\xf7\xfc\xa0\xec\xa3\x19\x8b\x33\x74\x76\x2c\x93\xa9\x8b\x1c\x4b\x30\xeb\x2e\x70\x30\xf0\x7a\x41\x73\xf0\x9d\x76\xb8\x59\xe7\x05\x4f\x5c\x87\xc9\x81\x24\x92\x1c\x56\x79\x99\x15\xc5\xed\x9d\x5e\xe2\x2d\xcf\x76\x5e\x97\x61\x84\xa0\xaf\x6a\x94\xb4\xae\x0e\xe4\x3a\x0d\x46\xde\x91\x3f\x18\x19\xda\xe1\x24\xef\x9d\x4c\xd4\x58\xb7\x84\x9b\x7e\x9a\x92\xa9\x24\xb4\xd4\x9e\xdb\x96\x8f\xb5\xcb\x93\x72\xb4\xd9\xd5\x12\xf7\x4e\x1c\x7f\x93\x94\x60\xed\xa1\x53\x69\x9a\x70\x5f\xb9\xff\xfa\x8a\xba\x7f\xfb\x8a\x34\xef\x75\x1a\x1c\x47\xcf\x8f\x67\xb8\x58\x03\x8d\x8f\xd3\xee\x25\xaa\x21\x2a\xfa\xd2\xb3\x4b\xfa\xb1\xc8\xb7\x5b\xbe\x8c\x63\xe9\x4c\x92\x90\x6c\x03\x99\x02\x8d\x94\x10\x6b\x96\x75\xa7\x1c\xca\x4e\x90\x59\x2a\x35\x2d\x7a\xaa\x48\x91\x08\x1d\xc1\x00\x62\xac\x86\xb2\xd0\xf7\x4d\x8c\xdf\x64\xe2\x2a\x2f\x7f\x40\x0c\xa9\x61\xb3\x05\x5d\x39\xd0\xa4\x10\xd0\x77\xb1\x95\x61\xd9\xcd\xfe\xa2\x3a\x8d\xe2\x77\xf8\x28\xa0\x51\x71\xfc\x0a\x43\xdd\xec\x33\x3e\xf2\xe8\x2d\x6a\x39\x59\xb2\x8a\x80\x77\xf0\xf0\x66\x28\x19\x18\x9e\x3b\x3a\x06\xd4\xdf\xfb\x8d\xec\x67\x4b\xc9\x26\x4c\xa3\xb9\xcf\x73\xab\xa3\x42\xf6\x7b\xd1\x90\x55\xa9\x39\xeb\xc4\xc1\x34\x5d\x62\x3c\x58\xc3\x25\xbf\x39\xf9\x19\x34\x97\xfc\xd0\x3b\x75\x25\xf1\x5a\xaf\x5f\x6a\xd3\xa0\x3d\x07\x1a\x74\xda\x77\xfc\x7a\xcf\x32\xec\xf1\xc6\xa6\x8a\xe3\x7f\xe0\xe0\x5e\x66\xc2\xc8\x19\x5f\xa8\x90\x76\xd7\xfa\xdd\x7d\x83\xc1\xcc\x96\x7f\xee\x6a\x9c\xe6\xb7\x15\xdb\xc8\x44\xba\x02\xdc\x57\xa0\x9d\x80\x7c\xf1\x77\x54\x86\xe2\x0d\x23\x5e\x0c\x4a\x0c\xda\xa7\x47\x01\x13\x5a\x9b\x12\xd1\xbd\xd6\x45\xcb\x57\xd0\xa0\x51\xf6\x60\x25\x13\x49\x06\xb2\x85\xb9\x0c\x4b\x2e\xfb\x7c\x61\x8f\x47\x1f\xc7\xe6\xcb\xe5\x0e\xd7\xaa\x5c\x42\x68\xd2\x1c\x73\x58\x59\x8d\x93\x99\xa0\x5a\x22\x5a\x36\x2c\x9d\x7d\xb7\x38\xe6\xed\x4c\x2b\xb8\xf9\x0e\x1f\x7e\x6b\x4c\x7c\xcf\xec\x83\xa0\x5d\x40\x3f\x42\x89\x92\xde\xe1\x79\xd9\x39\xf8\xb8\x63\x1b\x63\x71\xa6\xb5\xa7\x6c\x40\x1c\x6f\x44\xe2\x7b\xf3\x6e\x43\x53\xbb\xc4\xcd\xd2\x40\x31\xc1\x5b\x09\x4d\x09\xf0\xc4\x73\xe8\xad\x7a\x1d\xc7\xc6\x96\x83\x3d\xae\xc0\x9e\xbe\x6f\x19\xe2\x75\x56\x3f\x45\x3b\x8c\x56\x50\x42\x48\xaf\x63\x90\xd5\xae\xbd\xdf\xf3\x5c\x2b\x8b\xba\xee\x76\xcf\xab\xe3\xfb\xfa\x5a\xc3\x0c\x29\x2b\x89\xe3\x1f\x60\xa7\xbb\x85\xec\x28\x9d\xdb\x8d\x7f\x74\xa4\x69\xae\x95\x38\xce\x25\xe8\x0e\xb5\xb1\x4b\x3c\x76\xb2\xdd\x2b\x34\xc7\x04\x2b\x41\x50\x98\x10\x71\x7c\xc5\x9b\x1e\x56\xdf\xdf\x43\x3d\x8c\xda\x22\x3e\x51\x37\x9b\xfe\xdf\xd0\x74\x7d\x1a\x6b\x6f\x43\x62\x74\xb3\xe6\xbc\x80\xd7\x97\xdf\x0d\x12\xa9\x47\xda\x9c\x5d\x80\xbf\x92\xfa\x01\xa5\x03\xdb\x28\xaf\x98\xa0\xd0\xf7\x1a\x01\xa1\x55\xb2\x22\xce\x1d\x16\xbd\x61\xe5\x7d\x4d\x43\x2f\xb4\xdf\x59\x6b\x05\x7c\x0c\x00\xab\x55\xa6\x46\xc0\x6a\x51\x1f\x0c\xa7\x5e\x6d\x04\x8c\xd6\xbf\x60\x7d\xac\xd2\xd1\xce\x86\x07\x29\xda\x83\xd6\xd1\x5d\x20\x59\xed\x91\xed\xee\xf0\x51\x9c\xae\x56\xb1\xc8\x5a\x1c\x21\xb7\x7e\x6d\x47\x3b\xac\x22\x83\x8a\x3b\xba\xfc\x02\x7d\xda\x79\x24\xe3\x5f\x00\x0e\x1e\xac\x0c\xc3\x87\xb7\x31\x92\xad\xaf\xab\xa4\xf4\x45\x58\xf8\x8a\xf2\x3d\x78\x70\xd7\xd2\xa2\xfe\x84\x66\xda\x45\x21\x28\xb3\xc6\xb1\xe8\x33\x39\x45\xb8\x35\x92\x66\x74\xc7\x7e\x15\x09\xf7\xbd\x90\x81\x10\x19\x65\xc9\x0d\xef\x64\x5b\x0a\x8f\x12\x64\xe8\x19\x3b\x76\xa6\x87\x70\xed\x7c\xc9\x20\x64\x92\x01\xc8\x5d\xb9\x47\x58\xd5\xe1\xbf\x08\x42\xd4\x50\x38\x75\xd1\x9d\xbf\x98\x93\xad\x6a\xe7\xce\x5f\x27\x16\x30\xb7\x51\xe8\xb0\x20\xe7\x13\x70\xe6\x05\x0e\x98\xc3\xc2\x70\xa5\x24\x1b\xbf\xb4\x17\xae\xed\xcd\xe2\x54\xd4\x70\x11\x94\xd7\xaf\x50\x55\xd0\x3c\xa8\x64\x87\x44\xd2\x17\xda\x0f\x7e\x83\xed\x22\x5d\x11\xb2\x6a\xcc\xb4\x66\x3f\x15\xf9\xf6\x43\xf3\x1a\x71\x5b\x80\x57\x0e\x69\x61\x0b\x15\x99\x83\x37\x71\xcc\x8d\xb9\x9e\x97\xb2\xfa\x2d\xe7\x37\x4e\x95\xf4\x3a\x44\xd8\x87\x27\x80\x7b\x1f\x5d\x68\x8e\x97\x27\x78\xe4\x19\x80\x8b\xc8\xb3\xf1\x34\x67\xfd\xb1\xc5\xfe\xc5\xd0\x73\x0d\xea\x80\xce\x57\x90\x3a\x78\x27\x54\xe3\xc9\x30\x20\x22\xa8\x0a\xd0\x9f\x78\x6a\xc2\x79\x1c\xf7\x97\x66\x05\x3b\xc7\x92\x00\xc4\x80\x16\xdb\x5d\xe0\x24\x06\x81\x04\x1a\x3b\x14\x9e\xa4\x79\x18\x08\xca\xdb\x9e\x08\xa5\xc3\xd9\x55\xfd\x44\x46\x5e\x38\x77\x12\x0d\x08\x13\x69\xbd\x50\x5a\x44\x94\x87\xdb\xcf\xa7\x91\x9a\xbe\xf6\x53\x54\xe8\x6e\x8c\x56\x7a\x86\xcd\xec\x24\x79\xf3\xf9\xb7\x6d\x42\x5d\x91\x83\x5a\x62\xda\x51\x70\x05\x78\x3f\xb7\x97\xfc\x19\x40\x95\xbc\x04\xb5\xe7\x9a\x66\x26\xf8\xd7\x72\xed\x47\xa0\x1d\xa0\x07\xab\x74\x5a\x9f\x55\xee\x81\xb5\x26\xd5\xac\x46\x15\x73\xe7\x65\xe9\xbf\xf3\x44\x85\xd2\x68\x9d\x2f\x39\x6a\x54\x67\x50\x44\x88\x2b\x0f\xd9\xb3\x66\x76\xf0\xd6\x0e\x20\xf3\xd1\xae\xd4\x05\x08\x2b\x9b\xf6\x25\x74\xe0\x16\xc6\x9d\x01\x47\x79\x2a\xd8\xec\x7c\xe4\x24\x46\x50\x85\xa4\x91\xf6\xd1\x10\x51\x19\x44\x3b\xce\xc3\x31\x0d\xa3\x55\x5e\xe6\xf5\x3a\xf1\x7d\xf1\x3b\x27\x16\x46\xa6\x63\x5e\x39\x13\xd2\x03\x29\x18\x98\x23\xba\x40\x2b\x55\x00\xc1\x8d\x77\x37\xfe\x59\x17\xd5\x74\x32\xd9\x59\x38\xea\x7a\x26\x9c\x66\xe2\x0a\xb6\x45\xdd\x55\x5b\x47\xaa\x66\xf5\x9e\xb3\x76\xdf\x6d\x4a\x58\x3b\xea\x39\xfa\x0d\xe0\xba\x68\x40\x95\x08\xdb\x00\xaa\x7a\x7e\x33\x8e\xa4\xf5\x5b\x02\x79\xfc\xc6\xfc\xf7\x91\xc6\x04\xf8\x95\xe8\x30\x61\xbf\x97\x5f\xdf\xb6\x7f\xbb\x61\x41\xab\x7e\xb7\xef\x53\x68\x25\x94\x97\x9c\x49\x63\x7a\x59\x4b\xd6\x12\x60\x50\x81\x4f\x0d\x92\x3d\x57\x81\xa7\x84\x83\xfb\xb8\x72\x99\x4c\x14\x3f\x8f\xb6\xf8\x09\x82\x9e\xcd\xe6\x84\x68\xe9\xa0\x7d\x3b\x11\x07\xe0\x62\xc1\x78\x28\xff\x4b\xe3\xd6\xa9\xaa\xa6\xaf\xf3\x64\xa3\xcd\xe7\x50\xb5\x66\x28\x06\x93\x74\x82\x69\xcb\x6a\xc9\x1d\xb2\x1d\xca\x67\x51\x17\x0c\x76\x35\xfb\x01\x69\xbe\xe7\xab\xbb\x4b\xad\x8b\xcd\xe6\xb4\x62\xf2\xb4\x3a\x13\xa7\x95\xd1\x41\xc8\x42\xff\x22\xf6\x5d\x51\x91\x25\xd2\x2b\x59\x35\xc8\xd0\x19\x9d\x76\x7c\x96\x79\xde\xa8\x6c\x75\xff\x90\x4d\x3e\x04\x7c\xec\xe9\x63\x5c\xbb\xd7\xb3\x8e\x3f\x13\xe1\x47\x0c\xf4\xc9\x9a\xff\xc5\x8d\xbb\x94\xb1\x79\xe9\x0b\xdc\x83\x95\x71\x2c\xac\x9b\x29\xeb\x7d\x3e\xd7\x7b\xf9\x05\x2a\xc9\x5c\x72\x51\xef\xf7\x1d\x81\x5a\xbf\xac\x1d\xc1\xa4\xf3\xde\xe2\x49\x58\x40\x89\xda\x38\xb9\x7a\x5b\x91\xcf\x71\xfc\x57\x69\x1f\x6d\xbd\x76\x48\xa1\xe6\xd7\xe8\x33\x88\x33\xcf\x2f\x96\xca\xf4\xcc\x64\x12\x83\x92\x9c\xbb\xb8\x29\xe4\x4b\x13\x17\x32\x60\x25\x35\xc5\x0e\x58\xe9\xca\x94\x67\x81\xaf\x2d\xe1\xb5\x2a\xac\x3c\x48\x48\xee\x92\x8a\x95\x8a\xa3\x11\xaa\x6e\x3a\x21\x64\xaa\x6b\xd3\xa9\xb4\x3a\x7e\x85\x78\x15\x84\xba\xbc\x0c\x05\x3f\xaf\x82\xf6\xa4\x50\x99\x35\x0c\xf1\x9b\x81\xc7\xf2\xa9\xa9\x50\x52\x49\x87\x47\xeb\x1b\xd3\x46\x8d\x6f\x2b\x53\x9f\x5f\x87\x59\x9d\x5e\x81\xb4\x0e\x3b\xd4\xcb\xe2\xb8\x3e\x56\x49\xa6\x2b\x19\x2d\xaa\x72\x91\xc9\x04\xb6\x44\xa6\xfb\x55\xeb\xfa\x6c\x6c\x90\xb9\xd6\x59\x49\x57\xff\x51\x65\x20\x6f\xbb\x22\xda\xa9\x95\x7d\xb6\xc3\x92\xa7\xfa\xef\x80\x95\xa9\x34\x81\x83\x1d\x2c\x73\x58\x87\x6d\x37\x3f\x80\xc6\xea\x39\x88\x17\x66\x0b\x77\xaf\xce\xde\x75\x97\x1b\xea\x63\x7e\x92\xf2\x55\x92\x83\x8f\xa4\xdc\xf9\x48\xd2\x9f\x83\xdc\xb4\xaa\x3c\xd2\x2a\xda\x4f\xe4\x59\xe9\x89\x09\xe5\x39\x2b\x43\xb7\x98\x95\x0e\x70\xae\x9b\x2c\xe7\x86\xa6\xf5\xce\x11\xa5\x3e\xa0\xf7\xfb\xc4\x7e\x2b\x5a\x79\x3a\x9c\x30\x76\x5b\x25\x19\x15\x24\x8e\x33\xed\x41\x26\x20\xd7\x30\x01\x77\x6d\xcf\x52\x2d\x5f\x9d\x3e\x7d\x69\x78\xd1\x54\x44\xb0\x4b\xf3\x80\x79\xbe\xa1\x74\x1f\x3a\x3d\x59\x39\x9f\x55\xc6\xdb\x62\x22\x9b\xaa\x5f\xb0\xfd\x9c\x26\x43\xe3\xad\x21\x4c\x4b\xf1\xbd\x45\x34\xbc\x7a\xa9\x42\xc5\xac\x9c\x23\x5d\xf4\xca\xf2\x1c\x92\x8b\xa6\x83\x9c\x8a\xe9\x96\xd3\xac\x51\x0b\x9c\xac\x9f\xf7\x7b\xc1\x8e\x91\x5e\xad\x29\x82\x70\x7b\x15\x85\x95\x91\x0a\xe7\xe5\x0c\xb1\x37\xdb\xfd\x54\x9c\x23\x78\x12\xda\x0d\xc0\x8b\x10\x94\x06\x06\x8f\x7d\x86\x43\x58\x9e\x8f\xe1\x6f\x85\x3e\xac\xb5\xf1\x63\x30\x88\x6c\x37\xc8\x66\x15\xe6\x1d\x4a\x5a\x0d\x06\xc6\x9b\xcc\x6e\x28\x7b\x72\xc0\x72\x2a\x06\x2c\x47\x23\x32\x4b\x86\x05\x01\x4b\x32\x5d\x76\x52\x9e\x8d\xa7\xe3\xd4\xab\x22\xa8\x43\x0c\x58\xf9\x6d\x36\xab\x86\x90\x6e\x92\x8e\x09\x56\x47\xd5\xde\x3e\x1c\xe9\xbd\xe7\x08\x58\x34\x5f\x7b\x82\x49\x14\x6c\xac\x27\x52\x76\x3c\x9a\x49\x78\x30\xd3\x87\xb5\x3a\x9d\xd4\x86\x00\x1f\x23\x76\x2f\x0c\x06\xc2\xea\xe2\x79\xae\x73\x45\xd7\xd3\x89\x04\xe3\xd0\x77\x22\xdb\xea\x17\x6b\xd6\x0d\x52\xae\xae\x88\x26\x25\x8a\x39\x5b\x09\x21\xd8\xb9\xc0\xf0\x5e\x86\x65\xfb\x61\x5c\x76\x6a\xb7\x76\xbe\x6b\x20\x4a\x84\xbc\xc8\xff\xe2\x49\xe0\xa0\x57\xef\x2c\xb7\x1b\xfe\x95\x27\x92\x9c\x8a\x3e\xb3\xfe\x10\x4e\x05\x13\x9e\xb3\x15\xb0\x30\x10\xfb\x3d\xe0\x68\x1a\x43\xc4\x38\x8e\xa4\xd8\x81\x6a\x61\xdb\xe8\x33\xbf\x2a\x2b\xc1\x87\x60\x00\x54\x47\xf0\x66\xe1\x8a\x03\xf1\x90\xba\xdf\x82\xd4\x43\xfb\x8b\xb4\xa6\x0a\x9e\x72\x5c\x73\x77\x35\x7c\x95\x0a\xd7\x04\xe8\x42\xbb\x19\x65\x25\x87\xda\xb0\x26\x0a\xd7\xe2\xb5\xf6\x63\x5f\x6b\x6a\x7c\xbf\x7e\xa2\x62\x70\x2b\x26\x2d\x44\xa6\x56\xe9\xcb\x6c\xd0\xfb\x21\x88\x60\x34\xf0\x89\xbb\x71\x80\xaa\x30\x1c\x57\xb4\x60\xa0\x8a\x55\xd1\x8c\x68\x56\x6a\xc2\x58\x01\x8a\x47\x71\x9c\xec\x9c\x3a\x59\xa1\x21\xac\x14\x9f\x69\x4c\xf0\x54\xca\xc5\x5a\xbb\x8b\x07\x4f\xa6\xd4\x68\xf0\x75\x38\x32\x1d\x9a\xb8\x5e\x01\x66\x7d\xc8\x13\x37\xe5\x6c\x00\xe2\x99\x24\xd5\x70\xe1\x5f\xc3\xb5\xde\x42\xa0\xf6\x46\x86\x0b\x87\x85\xef\xa9\x3e\xef\x44\x07\x16\x9e\x3f\x43\x09\xaf\x12\x09\x90\x61\x42\x43\x97\x01\xf0\x43\x1c\x9b\x07\x86\x00\x0f\x22\x21\x84\x20\x32\xde\x3a\x07\xf0\x7a\xf8\xfb\x33\xbf\xa5\x19\x22\xc2\x12\x94\xca\xda\x6b\xe8\x52\x64\x57\x57\x60\xb9\xd5\x9f\x1c\x85\xae\xea\x4a\x3d\x3e\xd0\xc9\x78\x4c\x1c\xdb\xd6\x5f\x08\x68\xa8\xd1\x92\xab\xf1\x67\xaf\xbe\xc9\xd5\x84\x6a\x29\x8a\x41\x0c\xfd\x2d\x4f\x54\xd2\x45\x56\xf3\x93\x49\x6a\x84\x40\x5a\x60\x5e\x5e\xa9\xfd\x3a\xed\x0c\x55\xec\x66\x39\x0d\x05\x87\xe4\xae\x9a\x7a\x6d\x7f\x52\x25\x57\x9c\x82\x15\x5b\xea\x3c\x1a\x2e\x76\x35\xbc\x39\xf4\xcc\x3d\xc2\xba\x14\xee\x3d\x95\x71\xfc\x54\x8e\x64\xbe\xe1\xe7\xf9\xf0\x6f\xe3\x31\x58\x55\x6c\x79\xf2\x54\x8e\xb6\x55\x4d\x05\x99\x96\x2c\x92\x22\xdf\x16\x3c\x4a\x5f\xc8\x38\x7e\xd1\x95\xfa\x85\x4d\x9d\x94\x2c\x5a\x56\xbb\xcb\x82\x47\xf4\xa9\x64\x77\x2a\x6d\x9a\xd3\x6d\x55\xa7\xe2\x40\x52\x15\x8d\xce\x7f\x22\xfa\xa2\x15\xdd\x33\x8b\x9d\x3b\x34\x53\x76\x3d\x95\xa3\x0d\x97\xd9\xcf\xfc\x36\x95\xa3\x85\x14\xc5\xcf\xfc\xd6\x53\xba\x54\x33\xf3\x58\x54\xdb\x38\x7e\x57\x81\xb4\x38\x44\xf1\x32\xd5\xa1\x68\x75\xc7\x3c\x0c\x5f\x41\x08\xc0\xb7\x25\x5b\x9e\x40\x8c\x36\x46\xda\xcd\x89\xc1\x34\x10\xe4\x6c\xac\xd6\x9f\xd6\xf0\xc3\xb4\x3b\x30\x47\xa2\x82\x9c\xdb\xb8\xb3\x31\x99\xb6\x45\xba\x0d\xba\x43\x77\x6e\xe4\x69\xc1\x7e\x0e\xe0\xaa\x17\xe4\xae\x46\xdf\x31\x5d\x0b\x14\x64\x8b\xb0\x24\x20\x54\xaf\x08\xb5\x72\xbf\xc9\xad\x62\x95\x87\xbe\x5a\x10\x15\x91\x7b\xce\x5a\x96\xa2\xc2\x70\x2b\x11\x75\x14\x69\x61\xbe\xc8\xa0\x15\xfb\xde\xc6\xbe\x27\x67\x93\x71\x1c\x27\xcf\xf2\x64\x41\x68\xbf\x8c\x63\xdb\x9b\xe1\xc3\xf1\xf8\x6c\x17\xc7\x3f\x70\x7b\xb4\xd3\x1a\xb0\x46\xff\x8b\xb1\x6c\xda\xbd\xbb\x02\x13\x03\xbb\x3d\xf2\x10\x60\x17\xc0\x85\xd2\x46\x20\x39\x90\xde\xf1\xc1\x02\x4f\x53\x1d\x83\x55\xd0\x46\x7a\x5c\x35\x1d\x81\x09\xe9\xbd\x3f\x36\xac\xef\xbb\x87\xd5\xf8\xa5\x5a\x90\xf4\x38\x26\x83\x5b\x09\x99\x56\xa5\x05\x27\x36\xc6\x49\x26\x2d\x58\xa6\x17\xbd\x59\x8b\xbd\x1c\x1e\xb1\x0d\x2d\x9b\x26\x3b\x4c\xe2\x2f\x62\x5a\xb3\xdd\xf9\x70\x32\x5d\xcc\x76\xf3\x54\xdb\x1a\x0a\x2a\x08\x49\x93\x5a\xa7\xf6\x3d\x67\xb8\x10\x34\x22\x54\xb4\xf6\x76\xea\xea\x40\xe7\x96\x66\xbf\x65\x85\x0a\x23\x25\x8b\x04\x5f\xc8\x08\xf4\xaf\x6b\xe6\xd7\x42\x05\xd3\x67\x6d\x1f\x34\x67\xe9\x8e\x0d\x27\xce\x3e\x40\x13\x03\x6b\x33\x61\xe0\x1b\xde\x55\x62\xf9\x48\x26\x82\xf4\x7c\x2b\x0a\x68\xc4\x7e\x9f\xc1\x45\xa6\x5c\x4e\x9f\xf1\x24\xa3\x35\x5d\x19\x33\xbc\x15\xda\xe0\xa5\x2b\x7b\x8d\x35\xc4\xc9\x56\xb0\x36\xad\x5b\xf2\x04\xed\xee\xe8\x18\x24\xf6\x19\xb5\x21\x80\x14\x41\xbe\xaa\xea\xb5\xa9\x7a\xad\xab\x5e\x6b\x5c\x63\xa6\x13\x08\xd2\xcb\xa7\xea\xee\xb3\x53\xb3\x63\x30\xd2\xe8\x7b\x15\xfb\x98\x27\x0b\x73\x43\x9d\xd5\x73\x42\x77\x84\xde\xe1\xe2\x49\xfb\x13\x5a\x89\xfc\x2a\x2f\xd3\xe8\x5b\x58\x60\xd1\x81\x90\x74\xe1\xc1\x1f\xa8\x09\x35\xc6\x98\x0d\x42\x16\xac\x09\x57\x95\xb9\x3b\xef\xec\xbd\xd8\x84\xed\x06\x13\xa2\x8e\x85\x7b\xab\x37\x0b\x90\xa4\xef\x54\x91\x3b\x5a\xd3\xba\x22\x69\xb2\x63\x63\xec\x8f\x36\x44\x9d\xd5\x73\x55\x54\x5d\xb9\x1c\x1a\x96\x1c\x3d\xda\x6e\x59\xf5\x45\xbf\x3e\x1b\x5f\x3b\xf1\x3a\x91\x86\x5a\x0e\x06\x1b\xba\xf0\x56\x14\xae\x3b\x35\xbb\xa8\x74\x6b\x8d\x7a\x17\x74\x49\xdc\xdd\xda\x9d\x72\x81\xb7\x28\x95\x1a\x4e\xa8\x25\x95\xf6\xc9\x24\x5f\x25\x4b\x26\xbd\x92\xef\xdc\x63\x1b\x88\xd8\x5a\x4c\x11\x05\xb6\xe9\x26\x57\x97\x5b\x8f\xc1\xa2\x62\xb4\x58\xd3\x8a\xd0\x95\x8d\x96\x7e\xb4\xd4\xd1\x6b\x87\xf3\xb0\xa0\x2b\x42\xbd\x87\x5a\xf8\xbd\x09\x7c\x22\xa8\x15\x6b\xac\x02\xae\x5d\x0c\x87\xbb\x00\x80\x95\x7a\x4f\x72\x61\x7a\x72\xba\x39\x63\xd7\xa7\x1b\x73\x75\xb9\x65\xd0\xa8\x8d\x6e\xcf\x15\x5b\x55\xc9\x2d\x55\x6d\xea\xad\x19\xdb\x4e\xb5\x4c\xd0\x6d\x98\x0d\xbd\x02\x84\x0e\xf5\x97\x90\xf4\xd6\xac\xc6\x2b\x45\x27\x8f\xa6\x85\x52\xb7\xb4\x22\x00\x88\x62\x5f\x1c\xc2\x1c\x48\x2c\xcc\x5a\x35\x04\xae\x63\xc9\xe6\xb8\x4d\x1a\xab\x93\xda\x75\x7b\x70\x0f\x6d\xf6\xc1\x45\x7a\x32\xa7\x4b\x56\xd3\x8f\xec\xd2\xec\xdb\x1b\x06\xaf\x8f\x66\xfb\xf4\x59\xa9\x8d\xa0\x1c\x61\x42\xfd\xed\x80\x2e\x49\xcd\xde\x61\x94\xeb\xb4\x6c\x51\x14\x19\x50\x94\x2d\x4f\x9e\x98\x9a\x3f\x92\xf3\xf1\x34\xb9\x61\x4f\xd0\xc8\xfc\x23\xbb\xe5\xc9\xa5\xe1\x2c\x4c\x2a\x45\xa6\x55\x12\x93\x87\x5d\xab\x44\xc0\x60\x3c\xd1\x66\xe0\x07\x5c\x9a\xcd\x21\x23\xbd\x7c\xb6\xb3\xd6\xe5\xd0\x9c\x8f\x84\xde\xb8\x31\xce\xd5\x38\xd6\xf0\xd0\xb4\x30\x4e\x09\xde\x25\xea\x0e\x71\x9a\x2c\xb4\x66\xd8\x6a\x24\xab\xfd\x1e\x7f\x9d\xad\xf0\x79\x33\x8e\xbd\x03\xfb\xe7\x86\x53\x8d\x0d\x63\x79\x1c\x5f\xa3\xef\xb5\xc9\xf7\x63\x6f\xe0\xd7\xee\x46\x73\x06\xde\x31\xa7\xc3\x87\xe3\xd4\x86\x9d\x1b\x27\x99\xd3\x87\xe3\x74\xdc\x5b\x7f\x45\x35\x49\xd5\xf1\x6c\x34\x60\x6b\xaa\xea\x57\x0d\x00\xe8\x61\x4b\x46\xae\xd4\x96\xe7\x5d\xbc\xb3\xe2\x94\x36\x6c\xf2\x60\x4c\xe1\xc4\x05\x09\xa6\x0f\xe3\xdf\xe6\xa2\xd4\xbd\x32\xa2\x97\x5d\x51\x8a\x13\xf8\x48\x68\x36\x5a\xe7\xb5\xac\xc4\x2d\x6c\xcc\x0b\x5e\xbc\x86\x15\xcb\xec\xb5\xed\xb2\xc1\xe2\x71\x72\x07\xcc\xff\xf4\x5a\xb1\xf2\x57\x09\x57\x3d\xf8\x88\x89\xae\x1c\xd3\x12\x36\xfc\x23\x6d\xb3\x22\xb6\x6d\xdd\x5c\xca\x47\xcb\x8d\x94\x74\x41\x0e\xea\x32\x42\x4b\x92\xfe\x4b\xd5\x0d\xc8\xbe\x7a\x48\xe3\xf8\x19\x00\xff\x6b\x97\xbd\xea\x42\xf2\x30\xad\x41\xd9\x0a\x5b\xa2\xfa\xf5\x32\x5f\x2e\x0b\xfe\xb8\xba\x29\x1d\xf3\x0a\xf6\x5b\x3f\x18\x24\xb2\xf2\x38\xf2\x6f\x9b\x95\xa3\xad\x2a\xbf\x4b\x6f\xa6\x2f\xf1\xc6\xd4\xc0\x00\xd1\x3c\x1c\x2f\xb2\xdb\xbc\xbc\xfa\xa1\xd8\x89\x27\xd7\xbc\x04\x6f\x45\xc7\xa0\x2e\x8f\x64\x41\xed\xc9\x63\xc5\x4d\xe8\x8f\x02\x51\x6c\xd5\xbd\xee\xd0\x78\x63\x2a\x3c\x41\x82\x01\x32\xcd\xdd\x75\x9e\xba\xab\xfd\xfb\xe6\x0d\xbe\x3f\x39\x80\x41\x13\x12\xf1\x55\x51\x55\xc2\xb3\x19\xbe\xda\x49\xc9\x45\x7d\xec\x84\x34\xfe\x6b\x2d\x2e\x46\x09\xf3\x25\x8d\x55\xab\x63\x26\x15\x97\xf7\x25\x17\x79\xf9\x2a\xa9\xce\x8d\xda\xc6\x7e\xdf\x17\x15\x28\x8b\x18\xb1\xc6\xaf\x50\x70\x35\x44\x0b\xd5\x61\xe6\x09\x56\xad\x04\x71\xc7\xc6\xa7\xbb\x33\x77\x36\x9a\xf6\xdb\x77\xe3\x9d\x81\xa4\xcd\x6c\x9c\x07\x5f\xb5\x03\x91\x72\x11\xc7\xc5\xfd\x3d\x3e\x37\xbe\xd4\x17\xec\x91\xf7\x98\xb5\x62\xad\x9a\x55\x91\xc6\xd3\x72\x0e\xcf\x0a\x9c\x2e\xe8\x8a\x4a\x42\xa1\x3f\xfe\x2c\x2e\x44\xf0\x98\xab\x27\x35\xc2\x92\x7e\x2c\xf2\xc5\xa7\x48\x31\xaf\xb0\x6f\x57\xc2\xe7\x4d\xd6\x0d\x39\x05\xb0\x0f\x42\x11\x91\xbe\x16\x50\xc4\x71\x3f\x13\x4e\x7b\x10\x24\x01\xb0\xcc\x69\x15\xc7\xc9\x4a\x78\x1b\xc7\x38\x7a\x86\xf5\x0e\xdc\xb2\x01\x37\x7f\x2b\xb2\xb2\x5e\x81\x37\xd1\x82\x43\x25\xe0\xb4\x2a\xb8\xcd\x12\x14\xfd\x94\xf6\x51\x5e\x8b\x16\x9e\xe6\x05\x57\xa9\xd4\x96\xf6\x82\x3c\x4b\x6c\x93\x85\x66\xec\x91\x10\xd9\x2d\x40\xbf\x83\x44\xd8\xbb\xad\x94\x1a\x3d\xd1\x8e\x73\x56\x14\xd5\x8d\xba\x10\xa9\xd2\xde\xde\x6e\x79\xbd\xdf\x0f\x27\x7d\x76\x5b\x25\xf7\x25\xa2\x88\xea\xef\x5e\x16\xf8\xcd\x89\x6b\x62\xaf\x1a\x55\x65\x51\x65\x4b\x45\xf8\x64\xdb\x4d\x67\x35\x12\xbc\xde\x15\x70\x68\x3f\x98\x7d\xf8\x3c\x1e\x0f\x3f\x7c\x1e\xff\xfd\xc3\xe7\x31\x1f\x7e\xf8\x3c\x59\xcd\xef\x1e\x1e\x0c\x12\x39\xa8\xa0\xb2\x28\x22\x34\x9b\x95\x73\xc6\xe9\x60\x50\x33\xb3\x7e\x76\x1a\x0b\x44\xb0\x17\x86\x54\x09\x42\x65\x95\x0a\xe3\x8a\xa0\x01\xa6\x97\x21\xac\x9b\xec\xc2\xcb\x23\xc4\xb2\xcb\x08\x6e\x7f\xe8\x3d\x37\x88\x55\x3b\x42\x7f\x0b\x60\x19\x7f\x11\xc9\x4e\xc3\xb8\x57\x80\x8b\xfa\xa8\xd6\x02\x9c\xc3\x81\x16\x6c\x7c\x5a\x9c\xe5\xa7\x83\x41\x41\x76\x49\x39\x2b\xe6\xb4\x70\x2e\x16\x64\xc7\xcd\x15\xd4\x22\x9b\x0e\x88\x04\x39\x77\x52\xf8\xae\x5c\x6a\xfd\x01\x6e\x56\x37\xad\x6c\x6a\x5a\xfa\x44\x1a\x44\x96\xf9\x2a\xc9\x9a\x6b\xf3\xca\xb8\x3d\x78\x0b\x20\x80\xe4\x78\x8b\xfb\xc9\xf5\x94\xeb\xdb\x63\xca\x8d\xd8\x06\xf1\x1b\x17\xe0\xd2\xb3\x0e\xbc\x52\xa8\xd9\xfe\x29\x18\x44\xc5\x2d\x2e\x60\x09\xe3\x88\x2d\x1c\xa1\x29\x88\x45\x0b\x8b\x22\xba\x98\x15\x06\x4a\x07\xbf\xb5\x8b\x51\x91\x5d\x81\x87\xd7\x96\x8f\x88\x8c\x46\x19\xc8\x2f\x23\xe3\xa9\xc0\x57\xe4\x0d\x87\x43\x93\x74\x4e\xee\x0e\x3e\x39\x59\x36\x5e\xb2\x54\x65\x46\xaf\x2b\xf9\x92\xea\x4f\x57\x36\x5f\x61\xc8\x85\x6a\xf8\x7b\x5b\xed\x56\x53\xb1\xa3\x4a\x72\x92\x9c\x3d\x44\x60\x0a\x3f\x98\x49\x2a\xf6\xfb\xdf\x13\x4e\x41\x4f\x5f\x1e\xfc\xda\xda\x0c\x56\x9f\xc9\xa0\x17\x1d\xaa\x9d\xb2\x5d\x42\x5b\x43\x54\x82\xbe\xee\xef\x40\x08\x15\x8f\x03\x52\x53\xd7\x99\x8d\x7d\x20\x4d\xc4\x54\xb2\x96\xce\x60\x7a\x5c\x77\x4f\x75\x93\x00\xe6\x90\x53\xde\x3e\xde\x25\x54\xff\xec\x88\xf6\xde\x50\xa0\x3f\x41\x25\x4c\xd2\x7f\x85\x80\x22\x1d\xfa\x9e\x5f\x18\x2a\x2c\xe7\x4b\x63\x05\xca\xa5\x52\xf3\xf9\xd7\x82\x8d\xe9\x2d\xce\x7c\xaf\x9a\xde\x0a\x36\x1c\x7d\xff\x5d\x2a\xd4\xd7\xe4\xfb\xb4\xc0\x90\xff\x9b\xae\xe2\x38\x51\x9f\x93\x07\xdf\xe1\xa9\x72\x25\xda\xea\x2e\x8c\xa3\xde\xf1\x63\x5e\xc8\xec\x77\x70\xe4\xeb\x7e\xbf\xf7\xad\xe0\x41\xe3\x43\x71\x47\x32\xcb\x0b\xf5\x95\x7d\xce\x01\xed\xe7\xd9\xeb\x5f\x9e\xff\xf1\xfa\xd5\xdb\x47\x2f\x3e\x3e\xfa\xfd\xf9\x85\x51\x0b\x81\x74\x9e\x4e\x48\x57\xd6\xdf\x9e\xfc\xf2\xf6\xf9\x8f\x3a\xe3\x54\xd8\x6c\x69\xa8\x49\xe2\x5a\x44\xe8\xdd\xe7\x54\xd2\xdb\x54\x1c\x3c\x88\xa3\x4b\xe1\xac\xef\x4b\x76\x05\x47\xaf\x3a\xd1\x3e\x83\x01\xf9\xad\xff\x56\x8a\xe2\x2d\x23\x9c\x2b\xac\x7e\x28\x4c\xf1\xf9\x2e\xd0\xfb\x5d\xd9\x58\x7c\x1e\xb3\xd1\xce\x64\x36\x8f\xe3\x02\xa4\x98\x2b\x7c\xa4\x8c\xe3\xeb\x38\xae\x09\x4f\x1d\x7e\xa7\x1c\xc9\x4c\x5c\x71\x49\x97\x0c\x99\xa6\xd3\x75\x9f\xed\x4e\xd7\x6c\xed\x3f\x81\x99\xf4\x5b\x36\x3e\xdd\x9e\x2d\x0d\x25\xdb\xe2\x5b\xf1\x72\xb6\x45\xe4\x57\xc6\xd6\x3e\x51\x59\xec\x84\x2a\xe1\x9d\x1a\x9f\xb7\x50\x0b\x5b\x23\xe7\x7c\xc2\x0f\xd8\x3c\xf0\x6c\xb9\x40\x95\xf4\x3e\xbb\xb5\x90\x1e\xaa\xcd\x71\xbc\x75\x5a\xc0\xa1\x86\xb4\xa7\x71\x3b\xa8\xbe\xbd\x15\x34\x1c\x8a\x61\x38\x14\xea\xf0\xdb\x7c\xa9\x28\xb0\x27\xc9\xfd\xb2\x70\xdb\x05\x83\x0e\xb6\x25\xda\x0b\xd5\x8a\x68\x7e\x16\xa1\x60\xb3\x40\x5f\x1e\x4d\x1a\x71\xcc\x6d\xdf\x60\x05\x6c\x18\x34\xf8\xb6\xa5\x74\x7c\xc5\x6e\x07\x59\xe7\x3b\x6a\x6f\x73\x36\x9e\xde\xfa\xaa\xe2\xb7\x83\xcd\xf0\xfb\x31\x49\xaf\x7c\xf1\x8a\x67\xf1\x7a\x35\xd8\x0c\xbe\x1f\x13\x6a\x49\xe6\xad\x41\x5b\xb8\x3a\x90\xc3\xb5\x38\x7b\x38\xb6\x0a\x4c\x41\xc3\xa7\x8d\x7e\xf8\xa3\x43\xb3\xc0\x08\xc0\x9b\x03\x13\xf3\xf8\x77\x96\xdb\xef\xf7\xac\x3a\x72\xcd\xb1\x9a\x19\x41\x5d\x86\x7f\xf2\xab\x1c\x06\x29\xa8\xf4\x2b\x0d\xe2\xde\x53\xa1\x08\x80\xad\x3b\x8e\xe5\x03\xfb\x63\xbf\xe7\x2e\xea\xf7\x38\xe6\x36\xea\xf7\x5e\xd8\xdd\xac\x65\xe6\x00\xf8\x12\xb7\x82\x25\xb7\xe2\xdb\x6b\x31\x10\xe4\x41\x72\x2d\x06\x13\x42\x07\x83\x6b\xa1\xd8\xa1\x87\xea\x50\x48\x13\x5b\xe2\xc0\x1f\x82\x01\xab\x88\x7f\xc1\xff\x28\x7c\x18\x9b\x1a\x10\x17\x23\xc6\x14\xb7\x59\xad\x4e\x80\xed\x90\xac\x28\x67\x72\xee\xdd\x9b\x9a\xae\x52\x7d\x10\x51\xf3\x28\xd6\x94\x03\xd3\x9c\xf5\x27\xc0\x06\x35\xdf\x93\xec\x45\xb2\xde\x6d\xb7\x82\xd7\xf5\x93\x65\x2e\x6b\x00\xce\x08\xcf\x7e\x7c\x87\xec\x4f\x14\xb1\x52\xcc\x58\x9f\x55\x95\xd5\x64\x6c\x26\x2b\xe9\x91\x62\x27\x4e\x5b\xef\x02\x47\x05\x2e\xad\x6f\xf2\xcf\xbc\xa8\x3b\x08\xfe\x95\xf0\xb4\x15\xe5\xe8\xf3\xb7\xec\x56\x50\x39\xba\xc5\xbf\x08\x31\x77\x23\x80\x25\x2f\x2a\x47\x63\x9f\x74\xbc\x96\xfb\x6e\x6f\x81\x1a\xc2\xa8\x2f\xcb\xc4\x5e\x4a\x23\x0d\x58\x1a\xf5\x6e\xc0\x53\x57\xf2\xfd\x98\x76\x5c\xc7\xb1\x08\x14\xe8\x34\xc2\x34\xbe\x56\xa7\x2f\x5b\x72\x20\x54\xb2\x7c\x10\x9d\x44\x03\xa9\xb5\xa4\x9b\xaf\x9f\x4d\xa3\x67\x5b\xf8\xcb\xac\xd3\xfc\x79\x8d\x8c\x42\x90\x6c\x56\xce\xd5\xd5\x11\x71\xcb\x89\x1d\x6e\xab\x93\x6a\x2e\x3a\xfc\xb3\x14\xd9\xcf\xfc\xb6\x8e\x63\x5d\x4c\x2b\x86\xa2\x8b\xab\x46\x34\xd6\x03\x71\x28\x98\x29\xcd\x0c\x45\x9b\x5d\x21\xf3\x88\xb1\xaa\x3d\x34\x92\x50\x3b\xbe\x90\xe0\x0f\x75\xc7\x8d\x3e\x71\x6d\x51\xbd\x8c\x28\x0e\x82\x4b\xd6\x57\xc9\x74\x99\x7d\x56\xed\xf7\xc9\xb3\x3c\x11\x84\xe6\x6a\xfd\x11\xaa\xce\x8b\x2a\x8e\x1f\x7c\xf8\xdf\xdf\xe8\x0b\x94\x24\x53\x9d\xa4\x3f\x26\x69\xbf\x5f\x79\xc8\x6e\xc2\xc7\xbc\xd9\xaa\x1e\xf5\x2d\x90\x6f\xbf\x8f\x7e\x9a\xdc\x9b\x51\x3f\x6c\xfd\x14\x16\x54\x74\xa1\xe2\x87\xd1\x40\x50\x19\x88\xe5\xf5\xd8\x7e\x34\x52\x7e\x72\x20\xfb\xfd\x13\x54\x0d\x94\x4d\x01\x7e\x7b\x9f\x4f\x1f\xfc\xf3\xaa\x9a\x3d\x1a\xfe\x31\xb7\xfd\x48\xe5\x68\x53\xa9\x4c\x24\x28\x9b\x1c\x48\xda\x59\x6e\x33\x15\x32\x5f\x17\x9a\xef\x72\xf8\x6c\x1d\x97\x7f\xd9\x7e\x72\x30\x92\x00\x74\x7c\x7b\x36\x99\xc4\xf1\xc3\xff\xab\x58\x20\x8d\x30\x0b\xb3\x8b\x55\x02\xe8\x76\x60\x1e\xa8\xd3\xf4\x64\x83\x26\x4c\xfe\x0f\xa0\x6a\x39\x4d\x06\x4d\xaa\x3e\x6b\xf5\x82\x45\x1c\x27\xaa\xc1\x53\x81\x20\x07\xfd\x32\x8e\xff\xfe\x77\x74\x42\x0d\xbe\xf1\xd5\x0d\xcc\xbc\xe4\xb9\x2b\x98\xba\x4d\x7e\xc1\x6d\x1e\xa1\x93\xbf\xf7\x55\xdd\x0f\x3e\x5c\xfa\xce\x84\x45\x55\xd7\xeb\x2c\x17\x1f\x8c\x2b\x30\x19\xdc\x74\x1e\xe7\xd7\x23\xeb\x86\x98\xec\xf7\xf7\x98\x8f\xb7\xfd\x1c\xc2\x40\xab\x6a\xbd\x41\x33\x17\xc8\xfd\x3e\x79\xae\x06\x38\xea\x6a\x4c\xd4\x10\xd1\x7e\xe2\xb7\xbb\x6d\xa4\xf6\x45\x5b\x72\x5b\x5d\x73\x11\x81\x27\xf2\x17\xf7\x95\xf7\xbe\xbb\xbc\xb6\xb4\xd5\x94\x77\x08\xad\xea\x1f\x61\x67\xfe\x4f\xb8\x02\x10\x39\x58\xdf\xe3\xdd\xe9\xc0\x51\x6b\x9c\xfa\xf6\xd0\x9f\x3a\x96\x5d\x3f\x69\x08\x99\xf6\x7b\xab\x20\x63\x67\x17\x36\xa2\x19\xb4\x6b\x35\x82\x7a\x01\x10\xb3\x93\x6d\x8b\x40\xf2\x64\x70\x8f\xe1\x6d\x0d\x40\x38\x2f\x2c\x0f\xa9\x37\x03\x0a\x11\x50\x6c\x0b\xca\x2e\xaa\xba\x9b\x75\xbe\x58\xab\xe3\x56\x7f\x9e\x4d\xc6\x64\xbf\xef\xeb\xa5\x49\x92\x26\x9d\xd6\x45\x22\x55\xf8\xdf\xd1\x40\x0c\xa2\xff\x1d\x7d\x99\x28\x1c\x08\xc8\xc9\x8e\xc3\x39\xc3\xe2\x27\x64\xbf\x6f\xde\xdf\x1d\xb0\x74\x68\xd4\xf1\x56\xdc\x2b\x5b\xfe\x82\xa0\x98\xd0\x00\xde\xb9\xc3\xf7\x4d\xd2\xf2\x41\x9f\x80\x6c\x32\x82\xdf\x11\xe5\x4e\x93\x43\xa7\x60\xfd\x31\x7d\xe1\x23\x64\x6a\x16\x36\x58\x9d\x3a\x6d\x64\x55\xdd\xd5\x24\x1c\x75\xec\xce\x9c\x02\x4d\x80\x52\x19\xfa\x23\xae\x83\x07\x98\xe0\xdc\xee\xca\xa0\x26\x84\x3e\x1c\x13\xd2\x71\x5e\x7b\x4e\x77\x12\x62\xce\x1b\x0f\x76\xef\xfe\x41\x87\x36\x36\x1d\xde\xe0\xa8\x5d\x16\x3b\xd1\x3d\x68\x13\xfa\xfc\xab\x07\x8d\xa0\x53\x64\xe3\x12\xc7\xcb\x76\x59\xe4\xe5\x27\x2e\x8e\xbd\x60\xb4\x27\xb3\x83\xbf\x3b\xc0\x33\x98\x0f\x0b\xa8\x8f\xce\xcc\x93\xf6\x53\x19\x10\x44\x27\x8a\xee\xa3\x28\xde\x48\xa2\xdd\x24\x46\x24\x8e\x1b\x62\x6a\x2f\x92\xaa\x8a\xa1\x1c\x20\x03\x90\x4a\xfb\x1c\xde\x40\x66\x7f\x81\x98\x2d\xe1\x15\x90\x68\x40\xaf\x5f\x04\xbb\xd0\x5a\xac\x4f\xca\x25\xeb\x74\x9b\xa1\xf2\x4c\x97\x3c\xe1\x0e\x74\x62\x10\x00\x23\x0c\x27\x74\xa3\x26\xc3\x57\x3a\x1c\x24\x13\x70\xef\xea\x52\x4d\xb9\xc1\x4c\x4b\x15\xcb\xcf\x47\xb2\xf2\x6e\xf9\x6f\x9c\xce\x36\x60\x3e\xa3\x33\x3d\x4f\x73\x9a\xf7\x5c\x94\xac\x7c\x30\xe8\x5f\x44\x22\xdd\x71\x0a\xcd\x0b\xd0\xc9\x86\x60\x3e\x08\x11\x43\xe9\xfa\x40\x86\x13\x4d\x03\x9d\x93\x23\x0d\xdc\x6c\x92\xab\x4b\xde\x80\x41\xf9\xa3\xc5\x1a\x4c\x09\x47\x8b\x35\x31\xe8\x6a\x1e\x50\x5e\x4b\x2f\x76\x36\xa7\x96\x29\xe5\x45\x03\x05\x3b\x00\xe4\x71\xd1\xb3\x72\xde\x13\xc1\xa3\xf9\x1b\x91\xe4\x16\x82\x9a\x50\xf8\x09\xe2\x4d\x75\x29\x37\x2c\xea\x63\xd5\x1a\xde\x50\xeb\xf1\x00\xe7\x44\x83\x0a\xbb\x6e\xaa\xbf\x53\xa7\x27\xc3\xb1\x93\x8b\xf5\x40\xa8\x6e\xa6\x4e\x5f\x26\xe1\x66\xf8\x50\x2f\x41\xa5\xf4\xaa\x78\x25\x42\x9c\xc0\xbb\x45\x56\x2e\x78\x81\xe8\x4d\x20\x84\xc7\x71\xa7\xb2\x4a\xd5\x20\xfa\xbe\x80\x8d\x5c\x5d\x8e\xf0\x83\x62\xde\xb6\xdb\x05\x5d\x24\xeb\x8f\x0f\x07\x6b\x8f\x05\x56\x0f\x1a\xa8\xc4\x1d\x26\x46\xed\x4a\x9a\x63\x57\x55\x0e\xa0\x8d\x14\x6c\xbc\x4d\xb0\xac\x30\x50\x10\x78\xd2\x4c\x3c\x13\x2d\x2d\x3c\x1f\xf7\xf1\xde\x02\x31\xd8\x40\x96\xab\x9b\x89\xa6\x4f\xe0\xa5\x17\x8d\x3a\x22\x78\x66\x55\x43\xb3\x01\x5b\x46\x80\x22\x68\xa6\x00\xfc\x1f\x42\x4b\xdb\x9d\xa9\x3a\xc8\x52\x7c\xa9\x28\xed\x20\x95\x76\x90\xca\x60\x90\x4a\xdd\x06\xef\x44\x7b\xee\xdf\x89\x01\x19\x01\xdd\x45\x5b\xd4\x23\xb3\x4d\x7e\x46\x2f\x61\xf4\xb9\x20\x3a\x47\x4f\xe7\xe8\xba\x7a\xea\x5c\x07\xe0\x3c\x90\x44\x05\x5d\x41\xae\x63\x13\xc7\x2a\xae\xdd\x53\x82\xe2\xd9\x57\xf6\x30\xb7\xda\xb1\x4f\x50\x6a\xd5\xe4\x10\x30\xd2\xd8\x64\xf0\x51\x2e\xb9\x30\xda\x16\x56\x69\xab\xe9\x87\x60\x04\xfe\x81\x96\x17\xdb\xac\xac\x5b\x58\xd6\x5e\x9c\x7b\x3a\x90\x8e\x0f\xf2\xe2\x67\x72\x8e\x3f\x45\xaf\x2f\xec\x69\xbe\xdf\x97\x71\xac\xdf\xbb\x4a\x2a\x54\x8f\xd0\xbe\xcd\x59\x06\x0a\x78\xe4\xe9\x97\x9d\xa6\x22\x39\x9b\xe1\xbc\x4a\x78\x75\x3a\xcc\x69\xc5\xc6\xa7\xd5\x59\xe9\x9a\xe3\x8c\x78\x33\x56\xce\xaa\x39\xbc\xe5\x22\x0a\x25\xa1\xf8\xe0\x9a\x77\x3c\xb0\xe6\xfa\x35\xb5\xaf\x08\x62\xa1\xd6\x4a\x6d\xc8\x25\xb8\x54\xd1\xbe\x8a\xc0\x2a\xfd\x7c\x4c\xcc\x7b\xea\x6c\x47\x27\x73\xba\x62\x7e\x0a\x34\x68\x5f\x33\x57\x90\xac\xc8\x69\xb2\x52\x25\xf5\xb3\x51\x5e\x2e\x8a\x5d\x9d\x5f\x73\x0d\xc6\xb0\x22\x71\xbc\xc0\xbe\x63\xdf\x0a\xbb\x66\xb1\xac\x03\xa1\xc9\xfa\xbc\x91\xf9\x17\x34\x67\xe8\xaf\x9b\xb9\x6b\x58\xe7\x55\xaa\xaa\x3e\x10\x9a\xc3\x73\xdc\xc2\xd8\x81\xe6\x74\x41\xe8\x6e\xc0\x9c\x6f\xd2\x83\x13\x87\xd8\x33\x02\xcf\x03\x50\x8b\xef\x78\xf1\x1c\x4e\x4e\xf3\x73\x36\x3e\x1d\x0e\x73\xf2\x42\xad\x46\xbd\xd5\x66\xf9\xdc\xed\x36\xf5\xc3\x6c\xb8\x7c\x3a\x8b\xa2\xb9\x71\x54\xae\xd5\x80\x5e\xe8\x7b\xa2\xdb\x76\x2f\xdc\x79\x35\xe9\x87\x68\x98\xfb\x7d\x14\x99\x20\x70\x72\x83\x0a\x6b\x7e\x6b\xcd\x2a\xd4\xe7\x46\xef\x4d\xae\xe5\x2f\x6a\x2b\x4d\x3d\xef\x82\xf9\x32\x7d\x95\xbd\x22\xf4\x99\x11\xd0\x3c\x42\xee\xc1\xc8\xad\x66\xf3\xde\x65\x1e\x28\x99\x00\xa1\xb7\xef\xb4\x25\xe5\x46\x4d\x45\xad\xdf\xbf\x14\x59\xd2\xbf\xd5\x81\x52\x1a\xf8\x3b\x93\xc6\xd6\x04\xac\xbf\xa9\xec\xe0\xf7\xfc\xa9\x4f\x70\x80\xce\xec\xf7\xfd\xa3\x64\x24\x30\x60\x75\x75\x57\x78\xf0\xd1\x8c\x45\xbb\x72\x59\xa9\xcb\xfd\x34\x1f\x2d\xab\x92\xa7\xf9\x48\x85\x94\x9c\xd6\x41\x1c\x06\xa6\x98\x48\xef\x8d\xcc\xf9\xee\x2a\x59\x36\xdb\xcd\xa9\x98\xf6\x4b\x7d\x9a\xee\xf7\xe5\x08\xfd\x97\x24\xe8\xa3\x26\x35\x31\xe4\x74\x37\x18\x90\x53\x34\x72\x32\x65\x60\x4b\x73\x50\x7a\xd1\x9a\x3c\x79\x87\x66\xcf\xa9\xaa\x09\x7d\x4e\x11\x5d\x1c\x9a\x30\xfd\x99\x27\x25\xad\xe1\x70\xe9\x37\x2a\x26\x9e\xbf\xb1\x93\xf7\xe0\xd1\x82\xde\x01\x4b\xfa\x0b\x5f\x56\xa0\xd2\xd6\xab\x58\x79\xc0\xcd\x3d\x9b\xf7\xfe\xcc\x93\x4a\x95\xa5\xd1\x09\xef\xb4\x99\x51\x5a\xd0\x2b\x5e\x6a\x17\xad\x69\x3e\x72\x3f\x60\xef\xb8\x9f\xac\xf4\x7e\xec\xf7\x83\x41\x3e\xda\x64\x9f\x7f\xb2\x41\x1a\x12\xf9\x3f\x20\xeb\x40\xdc\x76\xac\x34\x96\x4f\x6e\x97\xed\x70\x97\xed\x8c\x9a\xaf\x4d\xa2\x69\xd5\xca\x1c\x9f\x92\x2e\xe2\xb8\x0f\x27\xc3\x4a\xb1\xb1\xfe\xe8\x24\x66\x36\xd8\x98\xf4\x0a\xec\xfd\x4b\x58\xdf\x7a\xc5\xaf\xd9\x6e\x0a\x9b\x66\x45\xd2\x4d\x95\x64\xa4\xf7\x0c\x0b\x5a\xd3\xb7\x25\xa6\xa3\xfd\x1d\xba\xb3\xd5\x4e\x6d\x1b\xaa\x82\xda\x41\x88\xdd\xfc\xbf\x88\x64\x45\x0e\x46\x81\xb5\x63\x3f\xa1\x7f\x13\xbd\x9f\x96\xf7\xec\xa7\x15\xa1\xcb\x23\xfb\x69\x85\xfb\xc9\x34\x51\xed\x27\x6f\x47\xfd\xe5\x68\xc9\xd8\xbc\x28\xa2\x81\x1f\x93\xc8\xd8\x31\xad\x79\x7b\x55\x25\x3e\xc3\xd8\xe5\xe6\xce\xe9\x2a\x72\xdf\xf9\xc8\xc0\x39\xa4\x34\x2c\x2c\x77\xce\x4a\x20\x56\x3b\x26\x01\xc1\x6b\x93\x9d\x04\xc2\x44\xc0\xe1\x39\xd7\x0e\xb6\xb5\x71\x26\xfc\x1d\x4a\x40\x23\xf6\x6c\x24\x9d\xef\x5e\x80\x24\xb1\xe6\x86\xe5\x99\x01\xa3\x03\x2e\x98\x0b\x2c\xaf\x34\x97\x9c\xc8\x27\x35\xcf\x44\xe0\x63\x00\x27\xf5\x1e\xd6\xe6\x99\x61\x6d\x28\xaa\x0b\x5b\x46\xfe\x4c\xb7\x93\xe0\x50\x87\x97\x97\x63\xf7\x03\xcf\xc2\x27\xf1\xc2\xcf\x7d\x4d\x5c\xa3\x03\xe1\xe0\xf8\x4c\x4d\x56\x51\xac\x51\x97\x1d\x31\xaf\xa6\x1e\x34\x2b\x27\x54\x6a\x9d\x15\xbc\x6d\x21\x78\x36\xe8\xac\x80\xa2\xa9\x6e\xe4\x20\xa7\xf6\x26\x02\x47\xd6\x6c\x63\xb0\x8e\xc9\xbc\xc9\x4e\x1f\x2c\xbe\x88\x6b\x74\xcf\x16\x75\x0e\xd8\x6a\xba\x52\xc7\xa3\x2f\x79\x52\x01\x94\x40\x03\x69\xdb\xd4\x67\xcf\xb6\x76\x75\x84\x4a\xad\xec\xb0\x04\xdf\x89\xc1\x21\x4d\x11\x59\x41\x9f\x7a\xb8\xa8\x5a\x16\x4d\xd7\x0e\x6a\xdc\xb7\x89\x06\x45\x3b\x28\x2a\x83\x0b\x1a\xad\x59\x7f\x42\x77\xda\xf4\xfc\x38\x0a\xfb\x8e\xbd\xce\x93\xa7\x65\x82\xc0\xe1\xc6\x8f\x28\x2d\x91\xc3\xdc\x69\x93\xf2\x0e\xe6\x92\xb1\xdc\xa0\xba\x59\x64\x6f\x06\x36\x0e\x07\x42\x7a\x65\xa8\x8e\xe3\xf7\x12\x8c\x8a\x64\x95\x70\xd2\x5b\xab\x4a\xd5\x7a\x7c\x0b\x12\xf8\xa3\x8d\xb4\xad\xa9\x3a\xee\xaf\xb4\x2d\x48\x7d\x0c\xc8\x22\xe7\xb6\x81\x2f\xcc\x31\x68\x43\x18\xa7\x8d\x58\x26\x5d\x88\x07\x92\x50\x83\x0c\x03\xc4\x41\x06\xd5\x24\x04\xb3\x04\x80\xa4\x1e\xdc\x4d\x4a\x99\x73\xe1\xde\x4c\x5d\x98\x19\x58\x54\xf4\xf8\xdb\x58\x23\x40\x14\x8d\xe5\x9f\xe0\x60\x0f\x2b\x73\x01\xef\xc9\xd1\x6a\x57\x14\xd3\x7f\x80\x75\x1b\x06\xf7\xb5\x3a\xe3\x7e\xdf\x66\xac\x56\x16\x36\x9f\x40\x1e\x5d\xaf\x9b\xc4\x82\xa4\x60\x78\xaf\xc3\x23\xed\xad\xd4\x3f\xef\x0c\xc0\x0c\xa1\xab\x20\x04\x31\x71\x56\xfb\xfd\xc2\x18\x92\xe0\xb6\x00\x06\x35\x0b\xae\xac\x7a\x81\xa7\x76\xa9\xb7\xb6\x41\x6f\x65\x1e\x6c\x16\xf6\x72\xb8\x26\xea\xe4\xb3\x83\xec\xb0\x6d\x40\xae\xd4\x0c\xf4\x6e\x19\x6b\x72\xb8\x4f\xda\x07\x0a\xc7\x48\x00\x25\x2d\x49\xba\xce\xf5\x2b\x13\xfd\x09\x2e\xb7\x34\xab\x7c\xa2\xfa\x83\xf0\x2d\x93\x14\xdb\x0c\x97\x1a\x41\xe8\x96\xc3\x3d\xe7\x6c\x6c\x35\xf7\x7a\x25\x13\x54\xb0\xea\xd0\xf5\xd8\x0a\x9a\x20\x9e\xfe\x9c\xda\xd1\xcf\x1d\x8b\x2d\x80\xb5\xd6\xe3\x66\x06\x28\x3f\x78\x62\x83\x5f\xc5\xfd\x36\x52\xaf\x42\x5f\x08\x80\xef\x2f\x0c\xba\x48\x6d\xd0\x95\x8d\x86\x80\x19\x42\xfb\xc2\x3d\x6d\x85\xa4\x5d\xfa\xe4\x74\xc7\x96\xa0\x2d\x57\xb0\xbb\x43\x2f\x1f\x8a\xf3\x1d\xc0\x57\x89\xc1\xce\x2c\x1c\x5f\x39\x60\x50\xc8\x04\xf4\x51\xc5\x59\x46\xd7\x2c\x3f\x5f\x0c\x01\xd9\x5e\x9c\xd5\xa4\xf0\x54\xa4\x56\xd3\x71\x2a\xec\x09\x92\x9f\xd7\xe6\xfa\xb6\xf4\xac\x3d\x68\xb2\x9e\x2e\xd2\x9c\x0c\x77\xa4\xb7\xec\x33\xb5\x07\xfd\x32\x96\x28\xa4\xdb\xde\xdf\x55\x70\x97\xd5\x0e\x6a\x77\x16\xb4\x10\x36\x6c\xad\x7a\xab\x0e\x22\x43\x8c\x56\xf9\x67\xbe\xfc\x09\x8e\xdf\x69\x65\x75\x77\x3d\x58\xde\x74\x4c\xe8\x35\x2b\x87\xf2\x7c\x63\x7d\xe7\x02\xcf\x2d\x07\x1b\x42\xe5\xd9\x64\x3c\x2d\x7c\x95\xa7\x71\x2a\xcf\xb6\x61\x90\xa7\x7d\x21\x87\xc9\xf5\x74\x9c\x4e\xc6\x84\xa4\xe5\xf9\x66\xb0\x1d\x7e\xe7\xf5\x1b\x61\xf4\x06\x26\xc9\x70\x43\xa8\x67\x35\xfc\xce\x5e\x3e\xac\xd6\x92\xd6\x26\xda\xef\x7f\x13\x09\x37\xc8\x70\xd2\xdb\x68\x5e\xb9\xce\x0b\x64\x7b\xfc\x1a\xda\x67\xed\x34\x64\x20\x4d\xf1\xa2\x55\xbc\x9a\xae\xce\xd2\x71\x21\x06\xba\x2a\x69\x2b\x05\x19\xf8\x8e\x5d\xfe\x05\xf2\x72\xe8\x8e\xef\xc8\x1f\x75\x02\x13\x42\x05\x93\xb4\x64\xf2\x3e\xcf\x23\x72\xb4\x58\x4f\x9d\xbd\x8a\xfa\x39\x9c\x90\x54\xe5\x0b\x43\xc1\x2e\xac\xd9\x9e\x37\x55\xcd\x82\x4d\x8c\x58\x76\xa9\xab\x10\x1f\x41\x50\x7f\xed\x25\x44\x52\x83\x6c\x97\xf6\xc7\x1e\xb5\xf9\x4d\xb4\xe1\xd0\xbd\x6a\x10\x10\xfd\xae\xab\x01\xd6\xd4\x5e\x30\x74\xc0\xa2\x65\x15\xa5\xf9\xa9\x18\x8a\xbc\x01\x75\x88\x4e\x92\x68\xd9\x84\x3a\x04\x07\x49\xe0\x48\x70\x4b\x86\x52\x63\xf3\xf9\x66\x54\xa0\x7b\x4e\x35\x02\x7f\x60\x60\xa5\x31\x0f\x4b\x8b\x79\x28\x3b\xa0\xfd\xac\x51\x28\xec\xb1\xdc\x9b\x59\x6f\x2c\xde\x77\x20\x7e\xa0\x1d\xa8\xaf\x11\x17\x65\xcb\x65\x44\x68\x54\x6f\x32\xa1\x7d\xd2\x25\xd5\x68\x53\x2d\x39\xc0\xda\x94\x72\x9a\xb3\x1a\xb1\xc9\x52\xc1\xa2\xad\xe0\xd7\x91\x33\x0a\x68\x5a\xae\xd5\xec\x46\x5d\x26\x25\xa1\x3b\xb6\xa8\x12\x14\x6f\xe2\x6d\x24\x23\xbd\x1a\xef\xec\x8f\x56\x92\xab\x6a\xfc\x9f\x5a\x07\xeb\x5a\x3b\xe7\xc6\x8c\xa3\x0d\xa8\xc3\x3e\xf8\xe7\x87\xfa\xdb\x07\x64\x36\x46\x98\x98\xfd\xfe\xc1\x87\x0b\xfd\x24\x8c\xe9\x88\x7e\xb9\xf7\xba\x90\x14\x2c\xe8\x45\x92\x53\x5d\x26\xda\x33\x2d\x2c\x8f\x69\x8a\x60\xac\xaa\xf6\xfb\xe2\x1c\x9e\x57\x40\xd8\x60\xe4\x6c\x3d\xd3\xef\xc3\x41\x7b\x57\x1f\x53\xc1\xa2\xb2\x92\x51\x0f\x23\x18\x13\xd3\x82\xc9\xf3\x0a\xb9\xe8\x29\xda\xe7\x55\x54\x0e\x27\x24\x18\x82\x74\x9c\xc2\x80\x63\x86\xdd\xc0\x8d\x20\x36\xf3\xd7\x32\x97\x69\x54\xef\x2e\xa5\xc8\xc0\x5c\x10\x92\x0d\xbb\x93\x95\x00\x49\xe5\x0e\x49\x01\x4e\xc5\x77\x03\xa1\x0e\x17\x8f\x02\x16\xc6\x1c\x2b\x8a\xe8\x9a\x69\xff\xa9\x61\x81\xef\x72\xb9\x7e\x9b\x5d\x3a\xb1\xe6\xd2\xb7\x22\x29\x1e\x64\xe4\x74\x79\x3a\x1c\x2e\xc9\x7a\xc0\x32\xba\x1a\xb0\xe8\x03\xfa\x32\x5c\x9f\x15\x71\x9c\xac\x06\x6c\x5b\x25\xc5\x70\x4d\x08\x5d\xf5\xd9\xc2\x70\xb0\x3f\x88\xa4\xa2\x2b\xb0\x5b\xd3\xce\xb8\x25\x75\x23\xef\xbc\x2e\xb7\x56\x02\xed\x8f\xe1\x7e\xb7\x64\xe3\xd3\xe5\x59\xd5\xf1\xa8\xb1\x34\x8f\x1a\x5b\xe6\x47\xcf\x96\xe8\xdb\x33\xf0\x8c\x19\xc7\x5b\x73\xdd\xb4\x8a\xdd\xe4\xee\x9d\xba\x76\x2c\xa9\xbe\xc1\xae\x59\xa3\x75\x6b\x42\x8c\x1f\x45\x0f\xf0\xaf\xa5\xb9\x24\xd5\x4d\xc1\x28\xd8\x34\x67\x44\x4e\x2b\x00\xcb\xa0\xcf\xf5\x63\x40\x0a\xbe\x7a\x2c\xbc\x59\x8e\xf2\xf8\xa4\x4c\x2a\x9a\x13\x2b\x47\xd0\xb7\xd4\x1c\xdc\x16\x79\x94\xfa\xe7\xd6\xbb\x8f\x7d\x79\x35\x57\xf4\x92\xcd\xe6\x14\x51\x5c\x2d\x48\x10\x80\xb9\x9a\x3c\x15\x93\x89\x98\xe5\x73\x72\xea\x0c\x3b\xb6\x3c\xa9\xf0\x46\xb1\xa9\x92\x92\xe8\x07\xaf\x53\x0b\xf9\x86\x02\x28\xfd\x22\x96\x61\xca\xca\xbe\x98\xdd\xe1\x27\xc3\x08\x33\x66\x5a\xd6\x57\x91\xc3\x4f\x0d\x63\x3b\x27\x39\xf7\xa4\xa6\xf2\x9c\x8d\x4f\xe5\x70\x48\x7e\x10\x9a\xe7\x8e\x22\x5a\xce\xa4\x16\x9b\xc2\x97\xac\x68\x34\x58\xf2\x82\x4b\xc5\x3d\xc3\xb1\xe5\xf3\x77\xdf\x74\xf0\x77\xfa\xe8\x01\xf4\x93\x35\xad\x99\xa0\x88\x5e\x42\xab\xc0\x9b\x91\xd1\xf7\xa5\x35\x4b\xf2\xe9\x2e\x4b\x8b\x8c\xa8\xcb\x1a\x15\xc6\x3b\x13\xce\x57\x8d\xf7\x6f\xe0\x60\xab\x81\x20\xe6\xfa\xbd\xdf\x97\xe7\x8c\x5b\x98\xa4\x3a\xff\x8b\xef\xf7\x49\xc5\x4a\xda\xd7\x70\x29\xb4\x24\xc4\xd3\x12\xcc\x58\x3e\x4d\xc4\xd9\x78\x2a\xb2\x54\xaa\xba\x48\xaa\x7e\xed\xfc\xfb\x47\x3a\x46\x72\x93\xb1\xba\x67\x11\x67\x14\x9d\x5b\xac\x33\x01\x96\xa4\x85\xef\x1a\x6f\x51\x15\xbb\x4d\xa9\xc3\x01\x96\xc0\xc4\xdc\x54\x62\xa9\x7d\x0a\x5e\x89\x6a\xb7\x85\x34\x66\x16\x16\xb8\xdf\x56\xcc\xc5\xd1\x35\xf3\x04\x5a\x57\x5c\x3e\xe3\xc5\x96\x8b\x44\x52\x28\x0a\x3c\x4b\x46\x84\xaa\xfb\xdc\x69\x5f\xf5\x82\xec\xf7\x45\xd2\x5f\x92\x53\x40\x22\xd7\xbb\x72\x17\xb8\x43\xca\xc8\x7e\x1f\x7d\x28\x23\xba\x61\xaf\xab\x64\x4b\xd7\x64\x1a\xdd\x44\xe9\x2a\x8e\x55\x28\x63\xdb\x69\x54\x46\x69\x7f\xa5\x88\x7b\xad\x89\xfb\x96\xe0\xf6\x88\xb6\x40\x6a\x54\xe4\x72\xbf\xdf\xec\xf7\xc9\x86\x45\xaa\x05\x8b\x38\x5e\xf4\xd9\x86\xdc\x19\x66\x7d\x42\x8b\xc4\x6e\xdb\x7c\x95\x6c\xe2\x38\x59\xb0\x0d\xa1\xe2\x7c\x1c\xc7\x7d\x68\xa4\x46\xde\x05\xed\x77\xf6\x07\x47\xef\x55\x15\xcd\x08\x95\xb4\xf6\xb4\xce\x4e\xc0\x3f\xf0\x35\xd9\xef\x93\xeb\xd1\x3a\x97\x17\xc6\x63\xd9\xb5\x87\x53\x79\xec\x88\x85\x15\x57\x68\x28\x62\xeb\xd4\xd1\x78\x05\xf3\xd5\x80\x3b\x1d\x6f\x69\x70\xec\xff\x1c\x11\xb7\xa7\xdd\x2a\x0e\xc4\xb7\x49\x3d\x84\x95\x36\x19\x7d\x9f\x8e\xbe\x27\xdf\x06\xd7\x1c\xb4\xa7\xb5\xae\x2d\xf1\x26\x72\x3e\x9e\x5a\x6c\xde\xef\x52\x04\xc3\xfd\xce\x79\xcd\x42\x6b\xa7\x3f\xb5\x67\x33\xed\xbb\xcc\xf8\x74\xc3\xd1\xc5\x1b\xca\x78\x9a\x9f\xb1\x71\x9a\x9f\xb3\xca\x60\xbc\xdf\xed\xbc\xa1\x34\xf3\x34\x60\xdf\x7f\x6b\xf1\xac\x76\x87\x0b\xdf\xbf\xf2\xa2\x2a\x6b\x29\x76\x0b\x59\x89\xf4\x42\x7b\xd6\xf1\x68\x49\x03\xed\x46\xbb\x4b\xef\xb4\x34\xaa\xb9\x7c\x0d\x67\x5e\xc3\x9b\xf4\xb5\x73\xed\xad\xcf\x44\x5a\x32\x31\xe3\xf3\x9e\xfa\x0f\x4e\x8f\x48\x31\x12\x51\x9f\xa9\x4d\x0d\x81\x92\xfe\x21\x46\xeb\xac\x7e\x7d\x53\xbe\x11\xd5\x96\x0b\x79\x0b\xe6\x61\xda\x41\x3c\xfd\x43\xa5\x42\x07\xf1\x70\x35\x26\x07\x7a\xd5\x51\x7d\xe8\xcb\x59\xd7\x3e\xe3\x73\x48\xfd\xb8\x5a\x1c\xf3\xfa\xbc\xac\x16\x07\x9a\x2d\x97\x3f\x83\xaa\x67\xd3\x3b\x36\xc0\x85\x06\x2a\xa7\x72\x1a\x29\x62\x1c\xa5\xd1\xae\x04\x45\x92\x68\x9e\x6c\x4a\x34\x42\x45\x91\x42\xab\x24\x9f\x4c\xb7\x4b\x6c\x3a\xae\x19\x0c\x04\x78\x59\x9d\x89\x39\x53\xa3\x04\xde\x82\xca\x6c\xc3\x19\xe3\x9e\xd5\x18\xbc\xb6\x25\x82\x4e\x08\xed\x8f\xa1\x07\xaf\xaf\xb9\x28\xb2\xdb\xf4\x1b\x99\x74\xcd\x0a\x1f\xc9\xea\x13\x2f\xa7\x3c\xbd\x50\x74\xe8\x65\xb5\xd4\x7e\xb2\xcd\x4c\xa1\x96\x98\x40\xaf\x02\x17\xaa\x89\x44\xae\x45\x75\x03\x72\xe9\x27\x42\x54\x22\x89\x74\x1d\xf5\xc9\x26\xbb\x3d\x29\x2b\x79\x72\xc9\x4f\xa0\x37\xab\x5d\x31\x8a\x48\xcf\xeb\x5e\xa5\x93\xea\x87\x10\x35\xed\xa9\xa0\xea\xcf\xc5\x96\x2f\x52\x4e\xab\x6d\xf6\xaf\x1d\x4f\x25\xfa\x31\x51\xdf\x07\x03\xd0\x0a\x05\xa8\xa4\x3f\xf1\x72\x30\xa0\xff\x30\xb0\xb6\x44\x0f\x71\x67\x57\x8f\x0c\xb3\x69\x47\xd7\x38\x1b\x7f\xe6\x6a\x88\x4d\xcb\xe0\x84\x82\x91\x6f\x49\x4e\x78\x1c\x97\xf7\x4f\x45\x67\xf3\xe1\xf1\xc8\xf6\xe1\x40\x28\xf2\x89\xe0\x12\xab\x31\x59\xea\x7a\x6c\xaa\xed\x7b\x02\x1b\xc3\x0d\xf5\x43\x21\x8e\xbe\x49\x4f\xfd\x79\x1c\x01\xeb\xfe\x1c\xef\x1b\x9a\x8f\x4f\x91\xb5\x4e\xe5\x14\x38\x66\x8f\x2b\x26\xf4\x29\xb7\xfa\x8d\x60\x11\xfb\x5e\x68\xad\x46\x68\x8d\x6d\xad\xd5\x38\xfd\xc2\xa0\x37\x78\x28\xc1\x40\x57\xe7\x7e\x7c\xbe\x55\x92\x5b\xd7\xf5\xb9\xe3\x36\xcf\x15\x13\x6e\x9a\xe3\x85\x6b\xfb\x5b\xc1\xfc\xb0\x92\x85\xf5\xdb\x07\x90\x38\xfe\x17\x16\xa1\x5f\x05\x8c\xe3\x46\x03\xe7\x90\xb1\x1c\x41\x1b\x6a\xcf\xbf\x8b\x91\x8a\xf6\x3c\x99\x29\x02\x15\x3b\x24\x0f\x2d\x11\x4d\x32\x75\x61\x1f\xa7\x13\x42\x06\x13\xcf\xe4\xba\x3e\xdd\x9d\x09\x78\xfa\x37\x5d\xd8\x51\x6e\x85\xab\xed\xa1\xea\x8d\x19\x40\x74\x02\x76\xa0\x45\x7f\x33\x6c\x65\x31\x2b\xe7\xba\xc5\xa3\xc5\x5a\x9d\xc0\xef\xbc\x79\x2b\x0d\xe7\x5d\x51\x48\x08\x4e\xf7\x51\x78\x78\x20\x8a\x00\xbe\x55\x5b\xff\x91\x4c\xbb\xf4\xd8\x4e\x7e\x2f\xed\x8c\x23\x71\x55\x1d\x84\x1c\xf5\xfd\x19\x96\x3c\xe1\x44\x6b\x7c\xda\x5a\xde\xde\x6e\x79\x50\x13\xb9\xe3\x60\xc7\xeb\x16\x19\x8a\x46\xa8\x60\x3c\xc7\x82\x6e\x72\x2f\xda\x78\xf1\x2d\xd9\x98\xe6\x2c\x11\x0e\x56\xf2\xc1\x43\xe0\x09\xd0\x55\xac\x1a\x2e\x22\x99\x98\x3d\x9c\x23\x7b\xe6\x9f\xa9\x19\x2b\x07\xf9\xf9\x39\xb8\x25\x4d\xb2\xa9\x98\x3d\xfc\x36\x1b\x4e\xe6\xe9\x98\x9c\xb3\x8a\xe4\x2c\xb3\x66\xbb\xfd\x04\x22\x07\x93\xf9\x59\x45\xc8\x1d\x14\xf8\x6d\x36\x78\x38\xd7\x27\x6a\xc9\xb2\xc1\x04\x9f\x62\x6a\xb5\xd3\x10\xa0\xf6\xf5\x0a\x80\x06\x35\x6d\x39\x89\x48\x3a\x9c\x18\x5e\xa7\x3e\x1b\x4f\x65\x3a\x66\xac\x46\x96\x4b\x5a\xa4\x94\x7a\x38\xc1\x81\x52\xc4\xb7\x31\x46\x8d\x2d\xa4\xa8\x87\x33\x06\x01\xae\x45\x65\x9a\x5e\xb8\xef\x44\xe3\x65\xbb\xe9\x4d\x38\x41\xe2\x43\x20\x7f\x2a\xa1\x32\xe4\x38\xbb\x67\xd2\x14\x80\x69\xd0\x2d\xf1\x6c\x3c\xf7\xf2\x35\x97\x80\xd1\x91\x03\x56\x25\x2b\x9b\x27\xb7\xb5\x30\x39\x11\x5a\xcf\x21\x53\xf7\x0d\x9a\x33\x53\x15\xf6\x5d\xeb\x24\xb7\x48\x6c\x3e\x93\x73\x52\xce\xd4\x9f\x79\x1c\x1b\x95\x3a\xfc\xed\xd8\x70\x48\xe5\x6e\x61\xe3\xd3\xea\x4c\x05\x19\x02\x53\x19\x02\x93\x31\xcc\x3a\xab\xe6\xf3\x5e\x66\xcb\xcb\x0c\x96\xf2\x68\x0d\x7d\x44\x5c\xcb\x72\xe6\xff\x9e\x4f\x5d\xe5\x7e\x30\x49\x55\x80\x3a\x04\x82\xf6\x61\x08\x32\x76\x46\x57\xe8\xe3\x55\x51\x5d\x66\x45\xab\x55\x35\xb3\x71\xb3\x6a\xde\xab\x47\x5b\xc1\x97\x49\x0e\xb3\x49\xe2\x58\xa3\xf1\x0a\x5a\x8f\xae\xb3\x82\xd8\x5a\xf0\xa7\xc3\x2a\x55\x73\x74\x61\xaf\xfa\xc7\x39\xb1\x65\xb5\xb0\x4b\x53\xf3\x54\x09\x67\xcf\x41\x11\x12\xa5\x9e\x53\xa1\xaf\x5b\x42\xfb\xea\x4d\xb9\x22\x66\x40\x0e\x50\x5c\xf8\x63\x55\x89\x65\xf7\x52\x68\x51\x5d\x80\x2b\x33\x35\xbe\xd4\x35\xba\x9a\x14\xc9\x4e\xa3\xea\xf2\x4f\xc4\x70\x32\x47\xeb\x34\x24\x11\x29\x34\x0a\xe8\x5d\x2a\x90\x3e\xcb\xfd\x1e\xb9\x7f\xd5\x2a\x50\x26\xef\x68\x93\xae\xf6\x47\x5d\x6d\x58\x68\x58\x04\x64\x57\x17\xb0\xee\x22\xfe\x74\x63\xf5\x56\x5a\x02\x69\x0b\x40\xc4\x4c\xca\x41\x2e\x79\x00\xdc\xda\x47\xc6\x07\x67\x67\x79\xae\x18\x74\xb9\x46\xc1\x81\xc5\xf8\xe0\x95\x09\x92\xce\x47\x3e\x2d\x1c\x04\x5c\xb8\xe7\xad\xf9\x40\xf1\x16\xf0\x08\xd9\x88\x8e\x89\x01\x7f\xdd\xb0\xc7\x9a\x92\x14\x6e\x4f\x5f\x33\x75\x38\xfb\x6e\x26\xd1\xa5\x33\x3f\x0b\x13\x4c\x79\x23\x47\xca\xcf\xc1\x32\x8c\xe5\xe8\x6a\x9c\x0a\x16\x50\x72\xbd\xcd\x04\xb3\xa4\xec\x93\x1e\x02\x81\x83\x30\x3e\x32\x08\x83\xa4\x9c\xda\xaa\xb0\xa3\xc3\x4f\x79\x22\x48\xaa\x4e\x9a\x25\x5f\x65\xbb\x42\x3a\x7c\xdc\x0e\xde\xfe\x95\x4c\xfc\xa1\x73\xb9\x2c\xce\x6e\x47\xa6\xe7\xad\x4c\x35\x97\xf8\xba\x82\xee\x3b\xba\xd8\x35\x9d\xf7\x27\xe1\x75\xdc\xaa\x44\xb4\x1e\x80\x4b\xc6\xf5\x33\x8d\x76\x08\x02\x2f\x88\x41\x08\xbb\x3b\x38\x37\xe7\x33\x39\x67\x82\xf6\x45\x1c\x3f\xaa\x92\x12\xad\x18\xc3\xd4\x1a\x27\x7c\x7c\x50\xbc\x1a\xa8\x26\x61\x8b\x9b\x7c\xda\x75\x03\xaf\x55\xb1\x0d\x4c\x6f\xfc\x9e\xc0\x57\x6c\x9b\x5e\xf5\x2b\xac\x47\x91\xa1\x20\x60\xa6\x08\x60\xd2\x0e\xd4\x96\x81\x22\x91\xbe\x6a\x08\x7d\x54\x35\xd3\x92\x76\x76\x0d\xc5\x4e\x07\x83\x12\xba\xa3\x76\xd5\xf3\x72\x55\xa5\x8d\x17\xfe\xae\x25\xad\xce\xa3\x90\x97\x6d\x21\xff\x4a\xc6\x35\x3e\x6d\x63\x9d\x06\x49\x0f\x86\x35\x40\x9a\x95\x48\xf6\x1a\x80\x5f\x83\x34\xc6\xbd\xbb\xda\x7c\x92\xa2\x19\x5f\xca\xf1\xc9\x94\x6b\xcc\x36\xbf\x67\x69\x63\xda\x20\xe5\x8f\x45\x56\xd7\x3a\x39\x7c\xd3\xcb\x2b\x13\xa6\xbf\xe8\x8d\xc8\xb6\x26\xcc\x7e\xd3\x9b\x7c\x79\xc5\x25\x84\xe1\xd7\x01\x8e\x83\xdf\x72\x7e\xb3\xad\x44\xc7\x86\xd0\x7a\x22\x4d\x6a\xf2\xd4\xa8\x76\x37\x23\xde\x56\x07\xb8\x54\xbe\x83\xe2\x8f\x23\x63\xd2\x8c\x02\xfe\x25\x5d\xd0\x15\xf3\x4b\xa1\x6b\x96\x70\xf6\xb2\x93\x0e\x13\x62\x9e\x66\x96\x8c\x5b\xd1\x8e\xd4\xae\x01\x8d\x37\x21\x16\x19\x6f\x42\xe0\xc2\xf3\x7e\xac\x69\x8a\x90\xd0\x9d\x62\x8b\x9a\xcb\x5f\x4b\xbe\xcc\x65\x76\x59\x70\xf0\x81\xae\xfd\x2c\xf9\xce\x80\x24\xa1\x11\x18\x85\x31\x56\x92\x35\xdc\x96\xb7\x4e\xec\x97\x5d\x56\xd7\x5c\xcb\xfd\x4a\xae\x45\x86\x5a\x38\x67\x6f\x0d\xab\x6e\xc9\x53\x83\x90\x39\xd0\x40\xc8\x82\x2d\x09\xe0\x0d\x3c\xf0\x11\xdf\x02\xff\x34\x68\x06\x37\x52\xa5\xd0\xcd\xf6\xf9\x16\x44\xdf\xb2\xda\x9e\x87\x11\x53\xdd\xa7\x61\x18\x9c\x1e\x29\xe7\x8c\x6d\xe3\x38\x51\x79\xf4\xdb\x19\x5d\xda\x14\x88\xc9\xb0\x89\xe3\x64\xc9\x36\xc3\x20\x94\x1c\xcc\x2c\xca\x6a\xcb\x9c\xa7\x56\x08\x2a\x00\x53\x43\xff\x80\xd7\x3a\x16\x45\x34\x82\xaf\x88\xb1\x7c\x9a\x2c\x59\xc7\x80\x84\x35\xd0\x46\x01\xe3\xed\xe7\x88\xa4\x49\xa4\x0a\x87\x42\x96\x6c\x9c\x46\x1b\xc0\x3e\x8b\xd0\x02\x60\xc9\xba\xc6\xb9\xd1\xf0\x07\x0f\x49\xd8\xd0\x25\x34\x1e\x4d\x0e\x2a\xa4\x9b\x19\x5b\xd2\x9a\xad\xe9\x8e\x35\x06\x83\x16\x6c\xdd\x18\x40\xfd\xdc\x9c\x2c\xd8\xaf\x22\xb1\xdb\x84\x10\xdf\x89\xda\x56\xc5\x2c\x9a\xbe\xf6\xfa\xac\xe5\xea\xd2\xa5\x42\x5f\x77\x07\x2a\x45\x7e\x75\xc5\xc5\xeb\xf2\x67\x7e\xfb\xb8\xba\x81\x5b\xf9\x6b\x41\x82\x70\x30\xa2\x53\x11\x9f\x1a\x11\xbf\x6e\xd3\x47\x82\xf2\xcf\x7c\xf1\x63\xb5\xd9\x64\xe5\xb2\x49\x5f\x8b\x16\x5f\xef\xa8\x69\x51\xce\xb8\xef\xf8\x19\xa5\x1a\xa6\xfc\x27\x05\x5f\x48\x91\x2f\x9a\xa7\xcf\x13\x6e\x6d\x25\x09\x5d\xe5\xe5\xf2\x4d\x55\x3f\x6b\x91\x15\xc3\x98\x4c\x7a\x12\xa4\xd0\x39\x1b\x4e\xa8\x64\x43\x4f\x43\xb1\x62\x63\x9a\x35\xee\x93\xa7\xd5\x19\x20\x08\x64\xec\x1b\xef\x14\xce\x68\x0e\x65\x12\x23\x26\x05\xad\xfd\x53\xeb\x26\x8e\x6e\xaa\x6b\xfe\xec\x98\xb8\x0c\x8c\x37\x85\x86\x94\x75\x78\x47\x3f\xdc\xba\xd4\xa5\x3d\xfc\x45\x13\x8b\x56\xc0\x86\xc7\xcc\xa0\xcd\x8c\xd2\x8d\xe9\x37\x22\x11\x78\xf4\xa2\x31\x10\xf4\xdb\x19\x23\xca\xe2\x65\x75\xcd\x7f\xcb\xeb\x5d\x56\x14\xb7\x24\xe5\x67\xe3\x69\x69\xd8\xe0\x12\xd8\xe0\x03\xdd\x55\x6a\x0c\xf1\xed\xe6\xde\xe6\x5b\x28\xee\xd2\xbb\x08\x8c\xea\x6a\xc3\xe5\x3a\x2f\xaf\xb0\x53\x7c\x99\x90\x69\x79\x8f\x5d\xb1\x7d\x25\x4a\x7f\xd6\x72\x0c\x9f\x4b\xc0\xf9\xfa\x46\x24\x25\x15\xae\x4b\xfd\x89\xe5\x60\x54\x17\xf0\xf0\xc9\xc1\x96\x02\x12\x1d\xb4\xd9\x8c\xce\x22\xab\x34\x3f\x1c\xbc\x95\xf1\xdb\xf1\x95\x41\x2b\x56\x1e\x5f\x1d\x19\x1b\xd3\xba\xb9\x3a\xb2\x33\x79\x3a\x18\x64\x46\xda\x6e\xce\xa4\x9a\x82\x27\x3b\xef\x49\xaa\x9a\x56\x6c\x07\xbb\x3f\xc5\x3f\xac\xa2\x49\xcd\xfe\xdb\xca\x6f\x72\x2a\xdc\x72\x0a\xdd\x0e\xd6\xb8\x9e\x7e\xbb\x6f\x42\xbc\x89\x30\x3e\xa1\xfa\x8d\xa5\x83\x2a\xe8\xb0\x6e\xe2\x18\x35\x15\x3b\x26\x0c\x9a\x7c\xef\xda\xcc\x10\xf7\x86\x78\xb3\x90\x99\x85\x94\xc1\x42\xd2\xaa\x58\x2f\x65\x22\x68\x66\x90\xb7\x60\x3c\x0c\x44\xc9\x55\x95\x15\x3f\xc2\x4b\x18\x28\x18\xc0\x80\xf8\xa1\xc4\x78\xa6\xd2\xee\x26\x11\x04\x5e\x0d\x97\xa0\x28\x4d\x32\x6f\xb9\xfa\xd1\x46\xc6\x71\xc6\x58\x19\xde\x14\xe3\xf8\x9d\xd0\x57\x51\xfa\xa3\x6a\xcc\x4e\xb7\x03\x4e\x2b\x74\x71\x49\x77\xb0\xec\xa9\xb1\xa8\xf1\x6c\x6f\xc6\xa7\xd9\x59\xd9\xf1\xa6\x9d\x0d\x06\xc4\x0f\x9f\x65\x73\xaf\xe9\x2c\x9f\x65\x73\xbd\xde\x10\x37\xb6\x43\x18\xd3\x21\x95\xd2\x4a\x84\x20\x84\x32\x26\x88\xa8\x07\xe3\xdd\xa8\xdc\x2b\x1f\x0f\x5e\xf9\x4e\x13\xae\x21\xe7\xf7\xfb\x12\x8c\xf8\xb0\x33\x71\x2c\xa6\xc3\xa1\x48\x07\x83\xd2\x23\x73\xf6\xb9\x4f\x10\x9a\xb1\xd7\x15\x3c\x6b\x4f\x3b\x1e\x3c\x5e\x57\xa0\x81\x7c\x48\xdd\x6b\x5f\xd5\x95\xd0\x45\x73\x72\xe8\x78\x39\xe9\xfb\x09\xe2\xb8\xaf\xca\x25\x87\x53\x78\xee\xcb\x12\xd7\x9c\xe1\x84\x90\x53\x32\x1c\x6a\x87\x6c\x4e\xb0\x1b\x24\x2b\x55\x22\xc5\xc7\x77\x28\xb7\xa3\x69\x98\xd6\x64\x47\xe9\x2d\x9c\x69\xd5\xd5\x55\x01\xb2\xfd\x1b\x91\x4b\x1e\x34\x51\x6b\xcf\xc5\x31\x67\x4d\xe1\x3e\x24\xde\xef\x93\xa4\x2b\x9c\xf5\xbb\x42\xc9\xf4\x45\x15\x5c\xf5\xb4\x56\xd4\xe3\xfc\x3a\xb0\x43\xb6\x19\x22\x92\x3e\xff\x77\x73\xd0\xff\xd6\xd2\xcd\xc8\x06\xbe\x85\x1e\x46\x14\x1f\xb3\xba\x1a\xa6\x2e\xf6\xda\x81\xf4\xd1\x17\xab\x80\xb9\xbd\xe2\xf2\x69\xce\x8b\x65\x42\xd0\x3d\xf5\x81\x3a\xd4\x9b\x76\x09\xfd\xa4\x1f\xbc\x15\x38\xf3\xf7\xbe\x3d\x31\x16\x59\x29\x9f\x2c\x73\xa9\xae\xbf\x9a\x33\x69\x13\x35\x2d\xcf\x31\x3a\x7c\x12\x74\xf8\x80\x15\xa0\x76\xaa\x3c\x67\x87\xbe\x26\x5f\xa0\xe9\xd7\x4a\x82\x18\x75\x28\xb5\xbe\xd0\xf6\x1f\xfe\x05\xd0\x80\x25\x05\x43\x61\xb4\x25\x7b\xe6\x5a\x86\x6a\x80\x9e\x5e\x57\xd3\xcb\xfd\xda\x70\xbf\x01\x7a\xd6\x4a\x3f\xd2\x0c\x83\xd2\xad\xe7\x51\x8a\xfe\x45\x03\xa7\xf0\xc7\xf3\x20\x67\xe8\x5f\x05\xd2\xa5\x4e\x4b\x3d\x3e\x34\x5d\xdb\x97\x21\x1a\x1a\xbc\xb4\x47\xdd\x9e\x54\x7c\x9a\x70\xe6\xdf\xe9\x9a\xf2\x37\x7b\xb0\xc2\x6d\x95\xfa\xae\x01\x83\x05\xd0\xd6\x06\x24\xa4\xad\x0d\xc5\xa7\xdc\x33\x6f\xd0\x86\x0d\x50\x72\x6a\x14\x27\x57\xe0\x21\xcf\xb6\x8a\xdb\x14\x04\x64\x64\x20\xe6\x90\x95\x4e\x88\xde\xee\x05\xd8\x14\xed\xf7\x63\xb3\x64\x3c\xbb\x0a\xbb\x9a\x3a\x16\xc8\x9b\xaa\x66\xdc\xbd\xe5\x08\xc5\x61\xc3\x8e\xf2\x74\x01\xb0\x24\x23\xa1\x6b\xea\x14\xea\x78\x59\x6d\x31\x1a\x74\x0b\x79\x4b\xb7\x50\x27\x13\xda\xbb\xb6\xac\x5a\x3a\x86\x3a\x85\xbe\xcd\x42\x12\xa3\x6b\xc8\xad\xae\x21\x6e\x74\xa3\x6e\x18\xa8\xf4\x8a\x40\xdd\x10\xc0\x0c\x2e\xf2\xbf\x5a\xcf\x82\x01\x53\x6a\x35\x26\x3c\xda\xdd\x9e\xb1\xfd\xfe\xc1\x3f\x3f\x2c\x07\x06\x2f\x08\x81\x38\x14\x1b\x3f\xe5\x70\xb1\x49\xf9\xc1\x6d\x54\xd1\xd2\x9d\xc0\x8b\x10\xac\x77\x06\xaf\xdb\xde\x9e\x3d\x96\x1a\xf7\x14\x03\x98\x29\x8f\xab\xf5\x35\x5c\xe3\xf8\xb3\x71\x6b\x8a\x07\xa6\x68\x89\x23\x7a\xc8\x3b\x83\x3c\x2a\xa7\xa2\x21\x95\x68\x1b\x12\x6b\x01\x48\xcb\x88\x58\x87\x1b\x7e\x40\x22\x62\x9f\x0d\x9f\xc9\xf9\xa8\xac\x9e\xe1\xca\x27\x77\x5c\xf1\x20\x39\x8d\x30\x36\x32\x7a\x2f\x83\x41\x7e\x50\x7d\x31\xb8\x41\x62\xc1\x7f\x45\x93\xf5\xfe\x58\xd1\x77\x41\x23\xc1\x57\x82\xd7\xeb\x88\x9a\x27\x6a\x75\x63\xca\x8e\x69\x27\xfc\x24\xed\x3d\x88\xea\x9c\xc1\x64\x77\x92\xb7\xa6\x3f\xb0\x9e\x79\x4c\xf6\x77\x47\xa3\x71\x17\x41\x12\xbb\xfa\x1c\xb5\xf0\x68\x63\x18\x06\x17\xd1\x3f\x75\x6e\x43\x6f\xf6\x7b\x87\xe9\x39\x6c\x0a\x57\xc9\xf9\xe8\x7b\x12\xc7\x3f\xea\x3c\xf6\xdc\x6b\x0d\x4d\x7d\x93\x6d\x1f\x57\xad\xcb\x61\xf8\xf6\xe5\x9e\xbd\x16\x1b\x14\x26\x7e\xcc\xcd\xa0\x35\xba\xd5\x0d\x8f\x12\xf6\x38\x38\x06\x7c\x17\xf9\xad\xc1\xc3\xb5\xa0\x06\xef\x0f\xd3\x03\xdd\x60\x73\x62\x13\x2a\xf1\x64\x7a\xae\x2a\x84\x73\xf7\xdf\x3d\xa5\x41\x4e\xf7\x0e\xf7\x8d\x56\x37\xfa\x52\x11\x7a\x97\x1d\xdc\x91\xf8\xd5\x59\xcd\xc1\x08\x79\x51\x2e\xfc\x95\x39\xb5\x2d\xc1\xe1\x40\xcb\x2a\xb9\xc0\xed\xfa\xbb\x60\x17\x23\x2d\x47\xaf\xd9\xdd\x81\xfe\xa1\x02\x70\x9f\x23\xb4\x19\x48\xaf\x1d\x85\xfa\x87\xa7\xd3\xe5\x72\xa2\xd6\x8f\x88\xe3\x04\x74\x7b\x58\xc3\x35\x56\x49\xee\xca\x3e\xe3\x65\x1c\x6b\x7b\x66\x72\x48\x05\x9a\x53\xf0\x92\x5d\x8c\x9e\x97\xb9\x64\x77\xb2\x42\x92\xd6\xee\x87\xc7\x8e\x41\xda\xe8\x70\xe8\xfd\x43\x24\xd1\x75\x56\xec\x78\x44\xa3\xa8\x61\x22\x0a\xfe\xf2\x00\xdc\x2b\x51\x3c\x4f\x7f\x4c\xa8\x4a\x0e\x7a\x4a\x78\x2d\x69\xa6\x37\x0f\xb4\xa8\x84\xc4\x24\x7d\xa4\x38\x65\x9b\xd3\xe9\x15\x47\xf4\x21\x7d\xd4\x08\x37\xea\xc1\x00\x04\x03\xe1\x9e\xc2\x46\x64\x13\x6b\x2d\xf0\x88\xfe\x2d\x20\x79\x9f\x12\xdc\x04\x9c\x50\xb0\xbc\x72\xb5\x06\xb0\xd7\x9d\x0d\x07\xf2\xe7\x21\x64\x33\xe9\x3f\xe8\xd2\xd2\x77\x50\xd9\xe3\x8e\x0a\x77\x69\x7b\xe4\x6c\x6c\xde\xda\x2b\x03\x16\x63\x5e\xc6\xa5\xd6\x64\x1b\x4e\x18\xab\x8c\x12\x1b\xab\x06\xd6\x2a\x4e\x3f\x68\x2e\x79\x52\xd2\x8a\x90\x43\x39\x18\x1c\x88\x07\xbe\x20\x1a\x08\x00\xb9\xaf\xcb\x2a\xa9\x98\xe5\x73\x00\x72\x99\xe5\x73\x7d\x97\x50\x5f\x8b\xb5\xad\x01\x11\xbc\x61\x6c\xb7\x7c\x91\x67\x05\xde\xc0\xe8\x83\xd9\x87\xdd\x78\x3c\x1e\x0f\xd5\x9f\xc9\x4a\xfd\xff\x7f\xe1\xff\x6c\xf9\x61\xf7\x70\x3c\xbe\x1c\xc2\x9f\x95\xfa\xff\xe1\xdf\xe1\xff\xff\xfa\xb0\x5b\xf1\xd5\x6a\xfe\xe0\x8a\x36\x5f\x7e\x2c\xf0\xa3\x57\x07\x98\xfb\xfe\xc2\xaf\x9e\x7c\xde\x26\x72\x54\x57\x3b\xb1\xe0\xe0\x04\x5f\x1d\xc2\xd1\x07\x19\x91\x69\x14\xa5\xd1\x5e\x7d\xd1\xe8\x2a\x22\x54\xf4\xf5\x9a\x8e\x63\x3e\xd2\x14\x33\x21\xed\xe6\xbf\x29\xb2\x05\x5f\x57\xc5\xb2\xeb\x59\x49\x82\x63\xfe\x7a\x9b\x95\xe0\x99\xff\xff\x8b\x28\x88\xc8\xcb\xeb\xac\xc8\x97\xa0\xe3\xea\x41\x4b\xca\x5c\x16\x9c\x45\x1f\x3e\xec\xa2\x81\x03\x12\x7b\x24\x93\xb1\xba\x73\x6b\x4e\x61\xf2\x7f\x48\x4b\xea\x9e\x89\x3c\x1b\x16\xd9\x25\x2f\x22\xaa\x8b\x51\x14\x31\x68\x8d\xdf\x07\xbb\x36\xb9\x96\x0a\xea\x69\x70\x1b\x62\xbb\x93\x17\x8a\x77\x88\xe8\x66\x1a\x69\x97\x8d\x46\x52\x1f\xa5\x60\x03\x98\x09\x9e\x45\x34\xc0\x94\x69\x28\xa5\xb9\x62\x4e\x16\x59\x09\x6a\x69\xc9\x2d\x97\xe4\xe4\x92\x9f\xa0\x55\xde\xf2\x24\x2f\x4f\xb2\x13\xb1\x2b\xcb\xbc\xbc\x3a\x51\x35\x54\x22\xf2\x1a\xd8\x90\xbc\x45\xb4\x7f\x85\x11\x37\xeb\xaa\x00\x9f\xd5\x78\xb2\xfe\x00\x26\xf5\xde\x2e\x5d\xf3\x8d\xa2\x29\x9a\xb4\x85\x13\xf3\x52\xed\xd2\x5f\x82\x4d\x8a\x3a\x7f\xdd\x19\x7c\x1b\xda\x4d\x89\x58\xc9\xde\xe2\xd8\x94\x89\x20\xbd\x3c\x8e\x73\x00\x63\x5e\xac\xdd\x17\xa8\x44\xd3\x72\x94\x49\x0c\x37\x5f\x09\xa7\xf9\x7e\x8f\x48\xe4\x7a\x22\x0c\xde\x25\x12\x08\x47\x39\x0c\x83\xa6\xa8\x52\x63\x3e\xbb\xf8\xb8\x69\xf2\x45\xe0\x33\x15\x16\x05\x00\xda\x20\x81\x47\x56\x71\x93\x97\xe8\xec\x34\x8a\x9a\x29\x30\x1c\x5a\x97\x26\x5f\x44\x0a\xd3\xb5\xbc\x02\x16\xf5\x47\x4b\x16\x35\x89\xec\xc6\x06\xfb\x01\xa6\x04\x3c\x86\xd8\x89\xd1\xc7\x5d\x44\x67\xf3\xa0\xfb\xcf\x9d\x79\x47\x73\x2e\x3d\xdb\x3b\xb5\x20\xda\xa7\x44\xc3\x5b\x88\xff\x08\x32\xfd\xc9\x53\x1c\x46\x7e\x3c\x1a\xab\xa1\xe8\xd8\x3c\x8b\xea\x9a\xeb\x37\xdd\x57\xfc\xb3\x7c\x5b\x5d\x18\x24\xf2\xd6\x64\xfd\x10\x34\xd0\x22\x96\xeb\x2d\x16\x95\x99\xcc\xaf\x79\xb8\x48\x9f\xa9\x71\xfa\xa1\x0b\x2e\xbd\x0d\x0b\xcf\x9b\x5c\xe2\x57\xa0\xa3\x37\xad\xf3\x1a\x27\x96\x76\x05\xdf\xea\xc9\xbd\xe3\x2e\x50\x07\x0f\xf3\x46\x74\x42\x7f\xe9\x28\xf3\x69\x25\x36\x59\xfb\x11\xde\x08\x44\x0f\x5e\xa6\x7a\x5d\xdd\xa0\x05\xdc\xbb\x35\x2f\x2f\x8c\x17\x1f\x68\x14\x97\x8e\x48\x28\xfe\xd2\x8a\x5b\x5f\x97\x21\xaa\x9b\xd7\x80\x77\x79\xcd\x7f\xac\xb6\xb7\x3f\xee\xbc\x03\xdd\x88\x5a\x1a\x5d\x55\x6b\xc5\x41\x13\x32\x26\xa7\x09\x80\xee\xb5\xb0\xfa\x2e\x8b\x9d\x48\x02\x67\x03\x79\xad\xc8\xe4\x92\xf5\xc1\x67\x68\x3b\x78\xd2\x81\xf7\x87\x6d\xd0\x46\xe4\xe8\x0a\x4a\x35\x4e\x67\x02\xb6\xb6\xa3\x81\xb2\x8d\x49\xa7\x99\x6d\x37\x2d\xc6\x05\x63\x6b\x2f\x18\xbc\x19\xd9\x67\xfd\x04\x9d\xff\x22\x4d\x23\x1e\x62\x80\xe7\x40\xe1\xa9\xce\x5b\xd3\x9c\xc9\xe9\xfb\x3c\xfd\x26\xef\xe5\x1d\x48\xfd\xe8\x28\x02\xb4\x95\x23\x5a\xa2\xda\x32\xa1\xc7\x53\xaa\xa3\x45\x31\x46\x23\xf8\xb8\x2f\x25\x82\x83\x96\x20\x96\xbb\x2f\x5d\xc1\x33\xb5\x9d\xca\x11\x7c\x1c\x4f\xa9\x06\xa5\x1c\xa9\xbf\x8a\x2f\x01\x66\xb4\xed\x7b\xc5\xa7\xc8\xb8\x1a\x7e\x28\xf2\xf2\xd3\x2f\x99\xe4\x11\xfd\xfe\xbb\xb1\x1f\xe3\xcb\x6b\x22\x1a\x44\xe1\x0d\x51\x6d\x0a\x6f\xe5\xa2\x07\xb5\x1f\xbd\x04\x6f\xb8\x50\x5b\x08\x26\xcb\x4b\x78\x53\x89\x4f\x8a\x62\x46\x40\x1e\x6d\xd0\x63\x5e\x64\xb7\x5e\xd8\xaa\x50\x3b\xab\x04\x04\x2e\x28\xe2\x93\x2d\x21\x5b\x2e\x5f\x56\x4b\x0e\x6a\x0a\xb0\x92\x5c\xd4\x16\x65\x5b\x80\xe4\xe8\x15\xb6\x2b\x97\xd5\x63\xbe\x95\xeb\x88\x3e\x1c\x77\x90\xd1\x6a\x61\xdd\x75\xd9\xa4\x4c\xea\x85\xab\x63\x00\x8d\xd2\xb4\xf2\xe1\xf7\xba\xe4\x6b\xad\x0e\x61\x06\x6a\x32\xfe\x32\xab\xb2\xc9\x3e\x3f\xcb\xaf\xd6\x85\x1a\x24\x44\x5f\x88\xe8\x84\xff\xcd\xeb\xc6\xa6\xba\xc6\x8d\xa2\x38\x79\x1c\xd3\x0e\xfa\x7f\x6c\xcb\xbc\xd1\xda\x0d\x96\xc5\x93\xd9\x25\x30\xce\xc7\xee\x1a\x47\xee\x91\x23\x99\x5d\x82\x7e\x33\x93\xfb\x7d\x14\xe9\xc2\xb2\x9d\xac\x34\x5e\xa9\x33\x02\x95\xea\xd6\xa4\xee\x2b\x70\x67\x13\xf0\x2b\xdf\xf0\x97\x3a\xa4\x07\x37\xb3\xbc\x84\x00\x16\xd6\xef\x2e\x6d\x50\xc0\x7e\x1f\xa9\x62\x23\x10\x08\x24\x8d\x48\xc6\x09\xcd\xc4\x15\x18\xd2\x18\xb1\xcb\xf9\x43\x40\x9b\x5e\xf2\x2d\x57\xf7\x9b\x45\xce\x6b\x74\x63\xe4\xec\x52\x50\x3b\x16\x1f\x94\x6d\x76\xfa\x90\x10\x2a\x4b\xb8\x29\x1e\xa8\x6d\xe0\xf3\x97\x4f\x1a\x0d\x14\x2e\x8d\xe0\x75\x55\x5c\x37\x7b\xd1\x0d\x44\xcd\xe3\x58\x74\xbd\x71\x73\x06\x05\x5a\xc5\x0f\x1e\xc7\xed\xbc\xa0\xeb\xd9\x59\x00\xc4\x10\xc3\x92\xab\xa2\x50\x2f\xb4\x77\x04\x84\xe1\x4e\xc5\x82\x57\x97\x84\xb3\x8f\x1a\x89\x1a\x2d\x0c\x24\xfc\x71\xce\x52\x3b\x7a\xf0\xe0\x9f\xb3\x0f\x37\x1f\x86\xf3\xc1\x87\x07\xe6\x63\xf0\x79\x53\x7c\x63\x1f\x71\x2c\x1e\xb0\x3f\x36\x49\x94\x6d\xb7\x45\xbe\x00\x11\xd5\x83\xcf\x9b\xc2\x5e\x0d\xda\x75\x4c\xb1\x81\xfc\x90\xf2\xfd\x1e\xbf\x71\x01\x1c\xd4\x80\x6b\x65\xde\xc6\x8c\x48\x16\x56\x67\x01\x3e\x65\x39\x93\x7a\x38\xc0\x8d\xbb\x6b\x9d\x31\x47\xd1\xa8\x1f\x0f\xb6\x45\x96\x97\x91\x01\x4a\xd3\x40\x6b\xf9\x2a\x29\xdb\xea\xc6\xfe\x88\xe7\xac\x74\x55\xd8\x87\x34\xc5\xfa\xe7\x24\x6f\xe6\xac\x08\x00\x50\x76\x86\xce\xa2\x8f\xd1\xa0\x9a\x03\xae\x1f\xa1\xea\x7f\x96\xab\xcf\x03\x3c\xbb\x7a\xd3\x43\x65\xa0\x41\xac\xca\xb3\x3f\x99\x1f\xa7\xee\x52\x6a\x8f\xa8\x8a\x9c\xa8\x12\xda\xe6\x47\x40\x55\x5e\xc0\xac\xb2\x7e\xd2\x4a\x6f\x1b\xc0\x2c\xc2\x3c\xd0\xb6\xa2\x17\x58\xf9\x34\xfd\xf1\x7d\xca\xb7\x6f\xab\x27\xe5\x32\x41\x8b\x00\x7f\x43\x25\xfe\x98\x53\x2c\x56\x0f\xbd\xa1\x1b\x4f\x3e\x4b\x5e\xd6\xea\x48\x46\x72\x81\x0f\xcf\x1d\x73\x7f\xa3\x96\x70\x7b\x96\x38\x99\x96\x6a\x5b\xa5\xf0\x3f\xbb\x3b\x10\xd7\x19\x5b\x76\x8b\xf2\x58\x0a\xd1\xa0\x02\x8f\xab\xc5\xb1\x4c\xd7\xf9\xd1\x5c\x5a\x56\xf3\x0f\x54\x4b\xaf\x00\x7f\xcf\xc4\x29\x66\xe4\x59\x55\x7d\x0a\xc8\x46\x65\x10\xf6\x08\xfa\x5e\xc8\xd4\x68\xe0\x8c\xea\x61\x10\xfc\x2a\xaf\x25\x17\xf8\xd8\xdb\xf2\x70\xd0\x56\x8e\xe7\x64\xbf\x4f\x32\x18\x83\x0b\x18\x08\xad\x05\x9e\xce\xe6\x07\x42\x21\x02\xf4\x3d\x91\x9a\x61\xe1\x3f\x41\x8a\xce\x2a\x50\xaa\x16\xb6\xc2\xe0\xc7\x40\x61\x56\x03\x1d\x4d\xb0\xb6\x82\x2f\x53\x41\xaf\xb3\x22\x2d\x0f\xba\x57\xb5\xea\xd5\xa2\xda\xde\x82\x26\x39\x6b\x09\x8c\xfa\x63\xc6\x98\xb4\xc6\x4e\x1a\x77\xd4\xa4\xb7\xea\x05\x2e\xc8\xed\xf7\xbb\x83\xdd\x84\x25\x2c\xf4\xd0\xe8\xe7\x24\x2f\x6b\x99\x95\x0b\x45\x68\xe0\x48\x00\x8d\x8e\xdc\x3a\x5d\x9e\x13\x42\xc5\xac\x9c\xb3\xdc\x53\x79\xdf\xa9\xe6\x3a\x03\xb5\xd6\x98\xeb\x57\x4e\xee\xa5\x01\x1c\x7e\xfb\x2b\x01\xa3\xa6\x9e\x67\x46\xd1\xe8\x33\xbc\x69\x73\x17\x7d\xea\xec\xe7\x3c\xcb\x0b\xb4\xd4\x14\xfb\xbd\xc0\xa3\x8f\x19\x63\x4d\xc9\x04\x4a\x85\x28\x67\x18\x67\x5b\xbf\xdf\xa3\x11\x1c\xa7\x90\x20\x95\x07\x9c\x82\x02\xa7\x00\x14\xb1\x6a\x76\x87\x4e\x44\x1f\x15\x45\x73\x0f\x7b\x77\x8f\xc4\xa1\x8c\x69\x63\xa4\xb1\x79\x4d\x77\xf8\x66\x60\xff\x43\x91\xf5\x73\xd6\x5b\xf7\x14\xea\x43\x95\x44\x08\x38\x07\x17\x78\x2f\x74\xcd\xb3\x65\xa4\x4b\xfe\x94\x17\x45\x43\xf9\x9c\xdc\x81\x59\xbd\x0d\x90\x1a\x63\xcd\x18\x77\xe9\xa1\xbc\xb1\x58\x50\xce\x80\x2b\x40\x2b\x73\xb2\x2a\x0d\x35\x00\x40\x14\x5e\xea\x33\xbf\xa7\x53\x03\x82\x66\xde\x3c\x01\x27\xc5\x21\xe4\x4d\xe8\x98\x18\x8d\xa3\x63\x89\xd4\xaa\x38\x04\xaa\xb2\xc6\x3e\x4c\x03\x1f\x2b\xca\x09\x5a\xe4\x05\x97\xfc\xcb\xdd\xf6\x8b\x5a\x1a\x04\xd1\x84\x58\x1f\xc4\xb2\x4a\x5f\x18\x97\xfb\x1a\x21\x4e\xc7\xa2\x3f\x62\x53\x19\x82\x80\xad\xe4\x3d\xb5\xf1\x56\x6d\xbc\xa3\x36\x13\x66\x0a\xc6\x27\x88\xe5\x57\x94\xef\x59\x90\x3a\xb3\x0b\x3d\x76\x9e\xaa\xce\xe0\xfb\x9e\xdf\x0c\x45\x12\x8c\x81\x45\x82\x0f\xf2\x63\x78\x85\x17\x07\x9d\x09\x47\xf6\x68\xab\x7e\x69\x98\x52\xfc\xc7\xcd\x42\x3d\x9d\x66\x63\x5a\x0e\x2d\x7c\x7d\xce\xc1\x64\xdc\x68\x6c\xef\xd8\xda\x28\xa1\xe9\xea\x62\xd2\xd8\x5a\x2a\x28\x81\x57\xbe\x56\x94\x0a\x4a\x74\xae\x63\x3b\x33\x88\x33\xe5\x1c\x4b\x1c\xc4\xc1\x1b\x53\xf5\xb8\x5a\x80\x33\xa7\x46\xca\x86\xce\x58\x17\x21\x31\xd9\x9f\x34\xf4\x42\x8f\x64\xf6\x11\x15\x55\x4e\xf5\xfd\x15\x35\x07\xda\x6a\xce\x4a\xa6\xcc\x12\x1e\x90\x85\x83\xf3\x27\x3e\xd0\xde\x93\xf3\xac\x4e\x27\x87\xb0\xb2\x8b\xcd\x7f\x5a\x63\xee\x6a\xfc\x8a\xca\xbe\x38\x28\x47\x6a\xe9\x36\xd0\x71\x84\x50\x43\x02\x08\xf6\xbc\x4c\x4a\x72\x4a\xd0\x34\xa3\x5c\x26\x13\x75\xef\xd4\xa0\x4f\x0e\x58\x29\x67\x6f\xf3\xa4\x24\xb4\x62\xf9\x34\x9f\x8d\xe7\xa3\x82\x5f\xf3\xe2\x7f\x3d\x9c\xca\x2c\x29\x49\x2a\xe0\xff\xb2\x8b\xa4\x5a\x07\x1c\x72\xfa\x5a\x15\x91\x4a\x5a\xa1\x3f\x82\x2f\x0f\xfa\xd0\x1b\x88\xf6\xf6\xfc\xe2\x50\xfc\x5b\x54\xe4\xe4\x7f\xbe\x67\x51\x55\x56\xb7\xb7\x45\xe4\xfe\xdf\x37\xf7\x4b\xcd\xf9\x0f\xd6\xec\xff\x84\xe2\x75\x53\xb4\x93\x72\xb4\x58\x9f\xc1\x21\x0f\xbb\xb8\xd4\xa7\x71\xcd\x33\xb1\x58\x27\x0f\x3e\x5c\x3c\x20\x53\x7f\x8f\xa4\x65\xd0\x91\x5f\xb7\x8d\x1e\x80\x16\x6c\x32\x9c\x50\x44\xc2\xb0\x09\x41\x4b\xbd\x2b\x69\x90\xf2\x4d\x76\x75\x5f\x91\xc6\x78\x0f\x13\xde\x57\xa4\x4b\xa9\x86\xa0\x63\xf6\x41\xfb\x1b\x0a\xc5\xf7\x31\x93\xb4\x6b\x61\x63\xda\x30\x29\xe8\x91\xde\x5f\x2e\xa2\xc8\x78\xc9\xef\x2f\xdb\x4b\xfe\xae\x12\xcb\x7b\xcb\x06\x1c\x1a\x48\xfa\x93\xa8\x76\xdb\x7b\x0b\x46\x30\x1a\x97\xf8\xde\x82\xbd\xc4\xaa\x11\xf7\x16\x6c\x1a\xb1\xe4\xf0\x42\x89\x8f\x63\x8d\xc4\x5a\x4f\x3d\x18\x68\x9d\xbe\x69\xb7\xea\x27\x0f\x53\xab\x96\x7c\xb1\x74\xaf\x35\xa0\xd2\x7b\x7f\xe9\x5e\x6a\x18\x94\x2f\x16\x6f\x07\xc6\xe4\xf8\x42\x05\x36\x3d\x3e\xfb\x3f\xda\xc9\x26\x1b\xd0\x00\x56\x30\xa0\x6b\x36\xcb\xcb\x76\x83\x5a\x59\x00\x71\xce\x64\x78\xc1\xeb\xfa\x8b\x75\x58\xe4\x07\x95\xab\xe6\x42\xbe\xcd\x2e\x5b\xec\x44\xd3\x18\xe0\x83\x97\xfe\xa2\x5a\xb5\xf2\x38\xe5\xab\xd9\x9c\xa2\x2f\x97\xd0\x4b\x34\x90\xa4\x26\xc2\x5d\x17\xb6\x16\x6a\x14\x08\x03\xf2\x0f\x00\x0d\x8b\x2a\x71\x04\xca\xe2\xd5\x82\x0a\x36\xe9\x49\xbc\xdd\x6e\xab\xa4\x1c\x66\xff\xab\x24\xe4\xd0\xee\x40\x0d\x9a\x1d\xc6\x6e\xb4\xd5\xdf\x2e\x93\x88\x63\x63\x9d\x2a\x1a\x6d\x0d\x67\x92\xc8\x8e\x61\x04\x46\x30\x59\x59\x6f\xab\x9a\xc3\x43\x77\x50\xcb\x71\xe4\xae\x8e\xc1\xf2\x9c\xd0\x1c\x43\xcd\x40\xaa\x5f\x39\x16\x22\xf7\xae\x51\xe0\x7f\x95\x00\xae\x86\xba\x3b\x55\x0e\x6c\x3f\x07\x05\x85\x25\x4f\x30\x39\xcd\x11\x5e\x92\xc0\xc7\xf9\x98\x74\xc5\x0f\x26\x84\xda\x31\xfd\x25\x2b\xaf\xd4\x24\x68\x35\x6f\x9d\x7f\x10\x06\x3c\x84\xdb\xa8\x5f\xc5\x43\x42\x73\x1a\x0d\xec\x00\x45\x9e\x31\xbf\xc1\xe6\xb6\xca\x27\xc6\x78\xbf\xd1\x37\x03\x00\xd8\xcb\x50\x55\xa2\xab\x3d\x63\x32\xe0\x5d\x5e\xe0\x07\x99\x45\xcf\x72\x78\x12\xae\x91\xc3\x09\xed\x0c\xa7\x13\x12\xb6\xfa\x10\x7a\xf9\xc9\x69\x0e\x0b\xce\xbf\x47\xd7\x89\x20\x8a\x4f\x2a\xf9\x0d\x58\x85\x97\x4b\xd4\xed\xf9\x8f\x97\x83\x55\x9b\x41\x00\x9b\x53\x61\x56\x42\xd9\x91\x78\x26\xe6\xbd\xc6\xe0\x74\x0e\x08\x2d\x8d\x77\x22\x6d\x8a\xe4\x10\x04\xcd\xd2\xd7\xfc\x80\x77\x97\x1c\x4c\xa8\x46\x14\x24\x07\x83\x19\x47\xab\x2d\x2f\x5b\x17\xe2\x4e\x22\x52\x46\x34\xc2\xf7\xba\x2f\x68\xfb\xf3\x51\x23\x56\xdd\x10\xe9\xa2\x64\x17\x1a\x35\x29\xd0\x32\x5b\x85\x24\x08\xed\x53\xd1\x4f\xc5\xb6\xc8\x65\xf2\x60\x98\x4c\xfb\xdf\x90\x07\x8a\x94\x24\x9c\x55\xb3\xca\x4e\xf5\x9c\x8e\xc9\x69\x76\xe6\x02\xc0\x6e\x44\xa3\x34\x54\xb3\x0c\x44\xd5\x0f\xfe\x99\x2c\x36\xcb\xfd\x86\xcb\x6c\xbf\x21\xdf\x3c\xc8\x35\x5e\x26\x21\x39\xeb\x8f\xed\x3a\x7e\xf0\xcf\x2c\x29\x24\x99\xfa\x09\x64\x98\x20\x59\xec\x17\x52\x14\xfb\x45\x55\x4a\x51\x15\x41\x59\xc2\x24\x05\xb1\xdb\x83\x7f\xd6\xc9\x3a\x5f\xc9\x20\x49\x4b\xf3\xe5\xd7\x52\xf0\x45\x75\x55\xe6\x7f\xf1\xe5\xc9\xa6\x5a\xe6\xab\x9c\x8b\x13\x90\xd3\x9f\x44\x83\x9a\xf4\x4a\xf0\xb9\x64\xa4\x29\xa0\x9f\x1d\x3d\x2a\xe4\x30\x1a\x70\xed\xf5\x96\x45\x3f\x4a\x51\x60\x40\xae\x03\x36\x4b\xfc\x5d\xe2\x6f\xe3\x0b\x94\x13\xca\x0f\x8b\x72\x74\x99\xd5\xf9\x82\xdd\x01\x1b\x11\x39\xfe\x2a\xa2\xc8\x2c\x44\x1e\x1f\x15\xd1\x5f\xb7\x2a\x00\x39\xc5\x88\x02\xc7\x16\x39\x86\x30\xa2\xea\x42\x15\xd9\xbb\x55\x44\x9f\x55\x1b\x6e\x02\xdc\xcd\x2e\xa2\x9a\x31\x8c\x0c\x8b\x88\x21\xa6\x3c\xf3\x1d\xd1\xc7\x70\x02\xa7\x91\xcf\x63\x44\xf4\x87\x6c\xf1\xa9\xde\x66\x0b\x17\x61\x34\x79\x74\xef\x6c\x82\xa8\x95\x42\x9d\x17\x91\x3b\x3b\x6c\x16\xf5\x9d\x46\xee\x74\x57\x7d\x51\x1c\x41\xd4\xdc\xf8\x11\x7d\x0e\x87\x44\x1a\x35\x56\x75\x44\x9f\xd4\x8b\x34\x6a\x88\xe8\x22\xb5\xd2\x47\xdb\xc5\x63\xac\x92\xdd\xe1\x0c\x3d\x8a\xd2\xc8\xca\x06\x23\x8a\x81\x8f\xb1\xb9\x5a\x24\x65\x42\xff\x00\x74\xb2\x65\x65\x9b\x6a\x43\x05\x87\x50\xf8\xfd\xbe\xf1\x5b\x8d\x7c\xa4\x06\xd3\x88\x0e\x4c\x84\x9a\x17\x1d\x0e\x53\x84\xa1\xbf\x6e\x23\x7f\x66\x75\x7b\xd4\x1c\x84\x13\x8c\x11\xb0\x40\x54\x84\xe5\x40\x4d\x0c\xae\x13\x1b\xa5\x97\x0d\xac\x52\x9b\xc9\x2e\x06\x1d\xe1\xf2\xd8\x75\x83\x85\x35\xa6\xd1\xe3\xec\x6c\x0b\xd1\x9a\xd1\x45\xeb\x15\x82\xb1\x17\x6a\x90\xe1\x51\x1f\x7f\x3f\x8d\xd2\x48\x5d\xc3\xcd\xef\x9f\xf4\xef\x57\xfc\xb3\x0c\x47\xd7\xc4\xbc\x11\xfc\x3a\x8c\x79\x0a\xe3\x0c\xc4\x30\x8c\xf8\xc5\x45\x78\x53\x3a\xb3\x8b\x4a\xb1\x73\x26\x74\x6e\x43\x5f\x7a\x9d\xf9\x55\x4f\xb4\x5b\x3b\x41\x05\xbf\xea\x19\xf6\xa3\xd5\xf0\x75\x84\xaf\xb2\xa2\x50\xe4\x65\x77\xb5\x4e\x23\xd8\xe0\xb8\x0c\xf9\x26\x5b\xd4\xb7\x66\x0d\x3e\x8d\x1a\xbb\x5b\x8f\x7a\x14\xd2\x01\x0c\x7d\xd3\xb1\x3e\x5e\x35\x17\x87\x6a\x0e\x96\x6a\x6f\x1b\x3a\xf4\x07\x1b\xea\x17\xfa\xa8\xb5\x1e\x70\x89\x76\x2d\x86\xdf\xa2\x90\x34\xf8\x43\xe3\xe2\xbc\xc5\x1b\x35\xc9\x86\xde\x18\x6d\x9a\x00\x2d\xd4\xe9\xed\x65\xc3\x34\x3c\x5c\x83\xee\xee\x62\xca\xfb\x39\x4a\x23\x23\x3c\x37\x61\x6f\xa3\x34\x0a\xb9\x47\x13\xf3\x3a\x4a\x23\x73\xc4\xe2\x9c\x6c\x32\x9f\x36\x6c\x96\x6d\xd2\xb0\x59\x76\x50\x86\xcd\xb2\x83\x30\xe8\x40\x43\x07\x36\xcb\x80\x2c\x6c\x96\xdd\x54\x61\xb3\x34\xdb\xbf\x11\xda\x26\x15\xaa\x29\x86\x28\xd8\xd0\x60\x73\xfb\x14\x21\xdc\xdc\x01\x41\x50\x25\x05\x04\xc1\x2c\x8b\xcd\xb2\x41\x0f\x82\x55\xf4\x45\x82\x70\x2c\x95\x3f\xa5\xc7\x89\xc6\x66\x19\xd0\x8c\xcd\x32\x20\x19\x9b\xe5\x11\x8a\xe1\x45\x68\x82\x01\xf3\xa8\x37\x43\x8b\x5a\xb4\xe3\xdc\x44\xb7\xe9\xc5\x66\xd9\x41\x2e\x36\xcb\xd6\xc2\x0c\x5f\x00\xcc\x64\x79\x5d\x6d\x4a\xe3\xcd\xd4\x1f\xa7\x3a\x3a\xb6\x49\x74\xfc\x03\xa3\x79\xba\xb4\x56\x87\x4f\x8a\x66\x9a\x16\xd1\x08\x09\x51\x34\x87\x1d\xa0\x4f\x63\x76\x3d\x0d\xb6\x43\xea\x9f\x9b\xf4\x62\x54\x56\x62\x93\x15\xf9\x5f\x1a\x92\xb3\xc3\xe9\xbe\xf7\x46\x29\x4e\xf2\xf2\x84\xa3\x8d\x50\xe3\xdd\x56\x38\x4d\x35\xc5\x5e\x23\x2b\xa7\xb8\xac\xbd\xd7\xd6\x7d\xb2\xe4\xfb\x4c\x12\x99\x2d\xd6\xc4\xe8\x60\x08\x42\x14\xaf\x97\x97\x3b\x40\x9e\x89\x46\xa3\x11\x42\x87\xe0\xd6\x3c\x81\xf2\x4c\x8a\x83\xd3\x80\xbf\x02\x3b\x31\xe0\x5e\xa3\x93\x88\xd0\x15\xc8\x7a\x01\xe7\xac\x0d\x72\x46\xeb\x5e\xc5\x58\x6e\x79\xd8\x69\x52\xb3\x7c\xf4\x67\x95\x97\x98\x39\x63\x25\x49\x21\xcc\x00\xd1\x55\x83\x09\x09\x12\x40\xc3\x8c\x01\xb7\x9c\xd5\xd0\xc9\x1d\xbc\xde\xed\xfa\x2c\x6b\x73\x9e\xcf\xcb\x45\x55\xd6\x79\x2d\x79\x29\x4f\x2e\xf3\x72\x99\x97\x57\xf5\xc9\xaa\x12\xc0\x77\xa2\xda\x8a\x2a\x87\x65\x07\xaf\xab\xb6\x87\x05\x3e\x08\xf3\x59\x31\x67\x72\x56\x58\x2d\x07\x8e\x4f\xa2\x6b\xc5\xe9\x17\x55\xf5\x69\xb7\xfd\x99\xdf\x76\x3c\x7b\xe3\x28\x25\x12\x15\xa5\x09\x68\x0f\x4d\x25\x2a\x11\x71\x5a\x92\x54\xce\xb4\x9a\xc9\x84\x31\x96\x13\x63\x25\x57\xc1\x35\x3f\xf2\xe6\xc2\x45\xa2\xf7\x7d\x83\x06\xd0\x67\x79\x1c\x8b\x24\x37\x4a\x34\xd6\x55\x3f\x42\xd5\x78\x13\x8f\x1a\x46\x33\x44\x34\xc3\xa7\xec\x79\xd4\x67\xaf\xe1\xb7\xa7\xe7\x64\x54\xeb\xb1\x95\x61\x11\xe6\x21\x7d\x5d\xa2\xbb\x04\x17\x85\x1e\xb1\x42\xac\xbb\x20\x41\x07\xe8\x5d\xbb\x94\x59\x35\xb7\xae\xb5\x32\x62\x21\x30\x0e\x07\xba\x54\x43\x9d\xd7\x2f\xf5\xe5\x21\x1c\x6e\xb3\x4d\x3a\x34\x83\x78\xfa\x47\x35\xb3\x2e\xc9\xcd\x04\xc2\x96\x8e\xc0\x1e\x58\x11\x4e\xfd\x05\xc4\x41\x7f\xbf\xac\x96\xea\xeb\x40\xb7\xfa\x36\xf7\x2a\xdb\x74\xe8\x1d\x2c\xe2\xf8\xbb\xbf\xb1\xd0\xa5\xbc\xba\xc0\x3b\xd8\x6f\x14\x85\x07\x8d\xa0\x25\x13\x3d\x0f\xa5\xa9\xcf\x4a\xe3\x56\xfd\x27\x91\x6d\xd7\xe0\x66\x3d\x31\x6e\xd6\xe3\x18\x9a\x88\x2e\x41\x4a\x73\x2f\x2a\x09\x4d\x3e\x1e\x71\xbf\x8f\xbd\xb3\x19\xf4\xc5\xc9\xe4\xd0\xe9\x52\xe7\xb9\x5d\xe5\xd8\x2c\xbd\x0c\x70\xb1\x2a\x09\xed\x83\xb1\x07\x00\x3e\x60\x43\x70\x84\x6c\x42\x73\xe3\x2a\x09\x2d\x89\x77\xd3\xdd\xf8\x26\x9f\xed\x39\x59\x80\x92\x0d\x3f\x5c\xc0\x9d\xfd\x2d\xff\x2c\x1f\x09\x9e\xb5\x07\x37\x91\x4c\x4e\x6f\xaa\x44\x92\xf4\xee\x40\x46\x60\x18\xc5\x38\xfe\xa5\x7d\x39\x32\x2a\x89\x80\x24\xa4\xd5\x0c\x41\x8f\xcf\x44\x30\x17\xae\x3a\x33\xda\x3a\xdb\x14\x95\x27\xf8\x99\x04\xd1\x2c\x88\x35\xd8\xfd\x72\x64\x15\x17\xcd\x1b\xc7\xe3\x0a\xbc\x9d\xd9\x70\x26\x40\xe9\xd0\x58\x0a\x5f\x85\x86\x29\x56\xed\x91\x80\x2b\x7c\x0b\xec\x7d\x59\x2d\x6f\x0f\x9e\xc1\x2c\xb9\xd3\xdd\x64\x00\xd3\x80\x56\x5f\xa0\xd7\xc5\x47\xab\x4a\x6c\xe2\x38\x79\x9f\xeb\x6f\x1a\xd5\xbb\xcb\x4d\x2e\x23\x0a\x33\x86\x4a\xbe\x17\x10\xf4\x92\xcb\x75\xb5\x7c\x54\x54\xa5\xd3\x3d\xd3\x99\x2a\x45\x66\x21\x51\x4f\x8a\x5b\xbd\x21\x4d\x10\xf3\x24\x3e\x65\x02\x5e\x53\x31\xbc\xb2\x9f\x7e\x68\x76\x38\x2c\xc0\x6b\xc7\xfb\x8a\xdc\x1d\x0e\x72\xb4\xca\xcb\xbc\x5e\x83\x01\x9c\xff\x2a\x24\x47\x8a\xff\x60\x25\x05\x05\xd1\xf6\xbc\xfb\x5a\xef\x72\x24\xab\xae\x14\x41\x78\x5e\xbf\xca\x5e\xd1\x12\xd4\xcd\xb7\x99\xe0\xa5\x7c\x55\x2d\xb9\x76\x99\xa5\xf1\xb2\x46\x2d\x3b\xc6\x84\xa0\xb7\xf7\xdb\xc2\x3e\xd4\xa1\x7d\x87\x1e\xd9\x6f\x3a\x47\x36\x32\x8d\xf0\x35\x2c\x55\x2a\x3d\x0a\xe8\x53\xd1\xfd\x66\x15\x21\x87\x43\xbb\xa2\xb2\x2a\x79\xa4\x41\x4d\x2e\x82\x47\xb3\xa0\x0f\x28\xaf\x45\x16\x30\x91\x94\x8f\x4a\xfe\x59\x5e\xe4\x97\x45\x5e\x5e\x91\x83\xc3\x2c\x39\xa9\xf1\x28\xba\x56\x64\x0a\x09\xf7\x85\x14\x3c\xdb\x34\xd5\x1d\xd7\x79\x3d\xda\x56\xb5\x45\xa5\x10\x92\x8d\x0d\xb6\x83\xca\xc5\x38\xfe\xd2\x42\x6f\x45\x04\xff\x4e\x2d\x96\x30\xbe\x0b\xbd\x31\xf9\x5d\x10\x2c\x4d\x53\x52\x61\xee\x3b\x6c\x7c\xe8\x5d\x97\x3e\xa8\x3b\xaf\x8a\x63\xa6\x9c\xdb\xaa\x3e\x67\x5e\x4b\xf4\x49\x71\xa0\xf5\xbd\x79\x34\xc0\x86\xad\xf3\x40\xb7\x9c\x7f\x3a\x96\x41\x17\xad\x85\xab\xa6\x0c\xb2\xdf\xa3\x13\xee\x03\x55\xe3\xeb\x67\x56\xc7\xa7\x4e\x75\xd6\x6e\x1c\xf9\x72\xd9\x83\x01\x39\x50\x9e\x1d\x85\xcf\x3d\xd2\xa2\x4e\xb8\x59\x4e\xb4\x6e\x2a\xd3\x88\x02\xea\x1b\x56\x9c\x62\xdf\xa6\xf8\x47\xd1\x49\xae\xd8\x0c\xc0\x47\xd7\x2d\x1c\x0c\x4c\xc9\x54\x42\x73\xde\xad\xf3\x82\xdf\x87\xfa\xbe\xad\xea\x53\xf8\xe0\x99\x4c\x38\x39\xb5\x50\x54\x76\xb2\xb0\x20\x40\x7e\x4b\x3b\x64\xc3\xdc\x95\xf3\x60\xf6\xa1\x06\xbb\xc5\xf1\x5c\x73\x9a\xf7\x75\x1d\x90\x58\xcc\xaf\x5e\xb3\x56\x7e\xa0\x56\x3f\xb4\xe5\xbb\xdd\x5b\xd9\xe1\x12\x82\x1c\x5f\x98\x02\x63\x10\xaa\x77\x80\x99\x05\x79\x3e\x9c\x90\xe6\xa2\x93\x00\x63\x7f\x99\x2d\x3e\x35\x9e\x7f\x4d\x8a\x21\xe3\x07\x8a\x6f\xa4\xc7\xd6\x62\xb0\xa1\xce\xdc\x86\x34\x38\x23\xcd\xdd\xb5\xa8\xfc\x61\xa3\x2e\x43\xb0\x63\x3b\x36\x6b\x33\x08\x8a\x23\x47\x77\xb5\x36\x4d\xe9\xca\x34\x4c\xc2\xcd\x36\xed\x6a\x93\x8d\x0d\xda\x85\x60\xa8\x78\xcb\x6b\xe0\x0d\xd8\x61\x69\x94\x66\x01\xdb\x6c\x19\xff\xe3\xfa\xc1\xad\x54\xda\x61\xef\xd3\x82\xb1\xb7\x08\xa8\xfe\x12\xc1\x1b\x89\x5d\x1e\xda\x4b\x15\x77\xda\x09\x71\x5c\xe2\x3a\x3a\x1f\x1b\x07\x3f\x71\xdc\x9f\xf4\x99\x83\x8f\x51\x34\x81\x95\xa8\x05\x83\xfe\x86\x4a\x34\x17\xcf\x59\x87\xe5\x97\x50\xbb\xba\x7a\x51\xdd\x70\xf1\x63\x56\xf3\x84\xa4\xfc\x00\x10\xf4\xc1\x16\xaa\x77\x97\xb5\x14\xb6\x7c\xca\xad\x65\x31\x63\xb9\x53\xad\xef\x68\x88\x4d\x09\x0b\x7a\xb1\x13\xe2\x1e\x6b\xfb\xf6\x28\x78\xeb\x4f\x0d\xc8\x81\xae\xf3\x25\x7f\x9a\x8b\x5a\x36\xdf\x14\xed\xe9\x63\xa7\x67\xc0\x38\x30\x1d\xa6\x86\x84\x1c\x56\x79\x99\x15\xc5\x6d\x23\xa1\xda\x4b\x5a\xfb\xf4\xb6\x64\x63\x7a\xa5\x0e\x39\x75\xfa\x23\x3a\x69\xd7\x11\xa7\xf2\xd6\x6c\x36\xd7\x4b\x00\x14\xdc\x2d\x72\x84\x39\xe3\xf2\x25\x1b\x0c\x6e\xcb\x43\xaf\xac\x92\xab\x92\xd0\x2b\xef\xa8\x1a\x01\x36\x2d\x0b\x4f\x02\x44\x1d\xe2\x9f\xb7\x45\xbe\xc8\x65\x71\xfb\xa3\x4a\xc3\x97\x21\x0a\x46\xb5\x00\x07\x99\x8c\xa3\x07\xe1\x9d\x78\xbd\x05\x32\x12\xc7\x3f\x80\x95\xa7\xa8\x34\x5a\x03\xd4\x10\x91\x00\x03\x0f\x94\xa8\x48\x4f\x80\x53\x4f\x3f\x19\x45\x7c\x69\x2a\x46\xb2\x22\xf6\x62\x8a\xae\xc2\x69\x8e\x7f\xf4\x75\xcb\xf6\xdf\x77\xff\xaf\x59\x3b\x17\xa9\xee\x58\x35\xbb\x28\x93\x6c\xb4\x51\xc3\xb8\x04\xf3\x28\xc4\xbe\xe8\x71\x83\xb0\xb4\xa8\x8a\x22\xdb\xd6\x7c\x39\x05\x65\xed\xd7\x79\x92\x11\xe3\xec\x34\x05\x1b\x02\xe0\x70\xeb\x91\xac\xe0\xb9\x16\x12\x18\xf4\x95\xda\xc0\xec\x94\x3a\x9c\xd0\xa0\x32\xf6\xba\x59\x7b\x6d\x58\x6c\x93\x35\x6c\x44\x1c\xf7\x7f\x28\x3d\xc8\x44\x12\xc7\x3c\x8e\x2f\xf2\x24\xa3\x0d\xdf\x36\x68\x0c\xd3\xca\xdd\x6d\x1e\x4c\x1c\x0c\xfa\x3d\x83\xb7\x63\x4f\xcb\x24\x18\x3f\x42\x0b\xf6\x38\xd9\x91\x5e\x71\xee\x74\xbd\x9a\x8e\x72\x5b\x31\x6c\x47\x8f\xa4\x66\x45\x3b\xc6\x39\xd0\x25\x07\x7b\x49\xec\xe8\x1a\x38\xa9\x2d\x69\x3e\x30\x6e\x3d\xfc\x4e\x18\xc6\xac\xb5\x72\x59\x5f\xc7\x64\xb2\xda\xe4\x0b\x5d\xac\x0f\xab\x65\x88\x85\x1f\x06\xb6\x9a\x71\xfc\x8d\x7e\xab\x55\x7c\xb4\x71\x42\x0b\x93\x29\x74\xe9\x11\xc5\x8d\x46\xa8\x8c\xe3\x5f\x61\xf1\x23\xa5\x00\xfe\x56\x57\x86\x3f\x70\xbb\xc1\xbb\x69\xb0\x0b\xd5\x7e\x68\x5a\x4d\xa0\x36\x62\xcf\x62\x7a\x45\x97\x55\xf5\x49\x55\x1c\x69\x5e\x50\xa2\x79\x0b\x67\x13\x1f\xa6\x61\x7c\x9a\x77\x4e\xaf\xf3\x18\xe6\xe6\x36\x9f\xd3\x4c\xed\x8d\xaa\x63\x6f\x58\x89\x4b\x66\x96\xb7\x00\x07\x72\xd3\x2a\x7d\x9d\x27\x95\x5a\xe3\x08\x1a\x35\x9c\x30\xc6\x3d\x07\x03\x5e\x46\xd8\x2d\x65\x33\x9b\xac\x08\x0d\xf2\x58\x38\x3a\x11\xc7\xbe\x9b\xcc\xe6\x28\x69\xd8\x00\x9f\x5a\x79\x14\x09\x68\xca\x10\x34\x33\xa9\x83\xd4\x76\xb4\x4a\xed\x76\x11\xc7\x3f\xc9\x44\xd0\x46\x09\xf8\x64\x5f\x72\x0a\x3b\x9b\x1b\x5d\x16\x76\xad\xd2\x22\x6c\x86\xea\xc9\x13\xf0\x54\x6b\x70\x87\x6a\x23\x4a\x35\x6b\xb7\x1b\x90\xc8\x65\x68\x7a\x81\xa6\xb0\xcb\x11\x78\x94\x18\x57\xb4\xd2\x3a\x92\xd2\x94\x4c\xff\xee\x49\x8b\xe4\x64\xd4\x4d\x6b\xf6\x9b\xba\x49\x0d\xb3\x5e\x0d\xd4\xa1\x04\xa5\x01\xf0\xa9\x5b\xa3\xee\x76\x30\x7a\x88\x3e\x00\x75\x37\x0c\xf1\xfa\xad\xf5\xe2\xef\x90\x4d\xcb\x0d\x86\x71\x17\xdf\x93\xa3\x4d\x76\x7b\xc9\x9f\xe5\xcb\x25\x2f\x2d\x24\xb9\x76\xed\xdf\x15\x89\x6b\x6b\xbf\x37\x91\xbf\x96\x6b\x3f\xfa\x68\x84\xe7\xbc\x19\x51\x8b\xbc\x16\x1b\x7b\xa0\xb0\xb7\x88\xc1\xd0\xd5\x5b\x2f\xab\x76\x12\x74\x5b\x79\x81\x94\x13\x70\xdf\xf4\x1f\x8e\xc9\x69\x67\xbf\x5d\xc7\x9e\xdd\xdb\xad\x43\x4f\x9d\xfc\x4e\xb4\x74\x59\x36\x7d\x4b\x03\xfe\xe8\x1a\x8e\xe3\x0e\x25\x66\x93\x32\x29\xd9\x4d\x95\x94\x84\xe8\xb4\x4c\x8b\xe6\x2a\x36\x0b\x8a\x54\xfb\xbf\x9a\x8d\xd5\x11\x59\x6a\x0c\xae\x57\x9e\x8f\x93\xcb\xbc\x61\xd2\x50\x83\x39\x9d\x4b\xc8\xea\xd1\xa2\xa8\x4a\xae\xbe\x93\xfe\x98\x10\x5a\x61\x77\xa0\x96\x17\xe8\x13\x12\xff\x0a\x02\x35\x12\xcf\x19\xcf\xf8\x74\x77\x06\x9b\xed\x13\x5f\x3a\x42\xb5\x43\x69\x3f\x06\xcf\x76\xf3\x51\x5e\xbf\x01\xe2\x69\x9c\x95\x66\x6c\x53\x25\x00\xb7\x5b\xf2\x9b\x93\x8f\x25\xf8\xb6\x3b\x78\xbd\xd2\xf6\x50\x1b\xe4\x4c\xf4\xc4\x98\xe1\xfa\x59\xa2\xef\xc9\xcb\x92\xf8\x59\x70\x74\x54\x81\x57\x25\x20\x77\xd2\x8c\x6d\xd1\x30\xa9\x87\xe3\xae\x06\x94\x56\x80\x0f\x94\x9d\x8f\xf7\xfb\x31\x63\x99\x66\x7a\x2b\xa4\xeb\xef\xd6\xbc\x7c\xb2\xd9\xca\x5b\x53\x57\x05\x94\xc3\x28\xdd\x2c\xdf\xe5\x70\x54\x56\xee\x40\x53\x54\xa0\xf2\xc7\xd3\x01\xc6\xcc\xc2\x7c\xf3\x10\x60\x43\x03\xa2\xa9\x1d\x0f\x12\xf0\x97\xd5\xae\xe6\x60\x6f\x5d\xef\xf7\x7e\x89\x5f\x0d\xd1\x5e\x6a\x21\x0c\xc2\x5b\x27\x41\x19\x2e\x86\xe9\x49\xb6\x3d\x80\x55\xf9\x02\x45\xdb\xa8\x0f\x4f\x05\xad\xc8\x7e\x2f\xb5\xf3\x79\x01\x7f\xe3\x18\xd2\x08\x3f\x4d\xd7\xfb\x85\xaa\x27\x2f\xaf\x4e\x6c\xf9\x27\x78\xd4\x9e\x6c\x33\x21\x73\xc5\x34\x9f\xa0\x7b\x1f\xe0\x68\x4e\xb2\xf2\x84\x7f\xce\x6b\xc8\x52\x95\x3c\x22\xbd\xcf\xac\x3f\x3e\x54\xa3\x6c\xb9\x7c\x5b\x3d\x43\x33\xf4\x38\x7e\x93\x5b\x2f\xea\x12\xf0\x8e\x8d\xfb\x74\x38\xc8\x15\x8b\x1d\x81\xec\x8a\x17\xf4\x55\xf6\x4a\x83\xf0\xd2\x9d\x71\xae\x59\x80\xb7\x48\x5c\x55\x80\xbd\xb4\xd3\x1d\x19\x84\xf0\x18\x45\x1c\x57\x01\x1f\x56\x1c\x81\xdb\x7b\xaa\x92\x33\x56\x34\xb9\xa0\x38\x4e\x6a\x38\x32\x82\x62\x76\x7d\xdd\x10\xa0\xf2\x60\x3a\xd4\xb4\x47\xf7\xb9\xcd\xe0\xd7\x34\xf8\x65\xcd\xf8\xe4\x9c\xa4\x33\x39\xa7\x12\x63\x85\x77\x38\x28\x52\xaa\x78\x2c\x7e\x73\xf2\x59\x6d\xad\x1d\xd3\xb5\x4f\xe5\x68\xb1\x06\xf4\x48\x15\x86\x03\x30\x15\x26\x0c\xfc\x43\xec\x0e\x8d\xa6\xeb\xf1\xd2\xe3\xd8\x1e\x34\x49\xee\x7e\xc0\x4e\x40\xdf\x24\x1d\x13\x2c\x42\x6d\xa7\xd7\x25\xa8\xee\xc4\xf1\xfb\x3c\xa9\x68\x74\x09\xd2\x41\xb4\x79\x7b\x52\x86\x10\x22\xe4\xae\xb2\xac\x95\xca\xef\x10\x54\x93\x27\x6a\x8f\x25\xdc\xa2\x15\x2c\xab\xd2\x5c\x06\xf7\x7b\x1e\x80\x18\xd8\x08\x74\x54\xab\xca\xd3\x4b\x28\x21\x8d\x8e\x25\x95\xb9\x56\xd1\x4a\x73\x95\x30\x71\x05\xec\x07\xf4\x3b\xdf\x7d\xea\x87\xbb\xe7\x1f\x32\x29\x68\x63\x78\x9c\x12\xa6\xea\x54\x56\xd7\xaf\xb2\x0d\x57\xbb\x1a\xb0\x9d\xd4\x87\xb6\x9c\xbc\xc5\x5f\xbc\x5c\xda\xef\x45\x5d\x7b\x8e\x4f\xb1\xe0\xd3\xc5\x99\x9e\xae\xd3\xc5\x60\x40\xb8\x48\x0a\xba\x30\xb7\x9b\x5e\x65\x99\xe2\x6f\x78\x52\x00\xa3\x4b\xff\xc8\x93\xc2\x30\xb9\x8f\x96\x4b\xc5\xe2\x16\xb4\xb2\x5e\x8e\x2a\xb8\xc7\x7f\x04\x19\x2c\x1c\x2f\xf7\x5f\x52\x37\xfa\xb0\x33\x02\x27\x44\x43\x65\xd2\x3d\xf2\x82\x0a\x25\xf7\x7d\x00\xf2\x99\x98\x6b\x9e\x19\xce\x58\xef\xb9\xe5\x26\x40\x8c\x01\xb6\x4f\xd5\x5d\x7b\x56\x53\x6a\x8b\x80\x9b\x86\xed\x9b\xaa\x6e\x1b\x44\x75\x42\xcf\xe8\xda\x7c\x7f\xbb\x4f\x1a\x02\x43\x84\xb0\xf4\xa0\x2b\x8d\xe5\x87\xda\x4a\x25\x9b\x09\xd3\x37\x35\x8a\xf3\xde\x65\x9e\x04\x21\x41\xb5\xce\x8e\xb9\xc9\xbc\x0b\x33\x60\x5d\x1a\xd8\x26\x6e\x96\xcf\x4f\xb5\x4b\x2a\xb5\x02\xd5\xac\xc1\xa2\xd4\x43\x06\xbb\xd4\x15\xa4\xf9\x9c\x7c\x38\xa4\x13\x42\x7c\x77\xcf\x9f\xad\x70\xc8\x9b\x2a\x33\x53\xe0\xf4\xd8\x88\x97\x2a\x26\x5c\xb6\x0b\x0f\xbc\x8e\xdc\x33\x8d\x8d\x07\xfa\xd2\x54\xe0\x8c\x97\x4b\xaf\x31\xaf\xcb\x86\xf7\x67\xad\x6d\xed\x15\x59\x12\x3e\x2b\xe7\x1a\xf1\x14\x3c\xf3\x3b\x16\x4a\xc5\x58\x11\x95\xd7\xd8\x47\xae\xb1\x72\xb4\x52\xb4\xaa\xe9\x82\x46\xb0\xa7\xdc\x7a\xc4\x47\xee\x3f\x8e\xc1\xa9\xb1\x1f\x14\x5c\x92\x4a\x93\x45\x56\x8d\x0c\x26\xc0\x4f\x8e\x86\xc9\x71\x6c\x3d\xae\x9f\x78\x46\x63\xba\x8e\xc5\x9a\x56\xe0\xd3\x56\x7d\x65\x6c\xcc\x80\xff\x40\x71\x08\x3a\xe7\xaf\x5b\x96\xd5\xc1\xf8\x97\x5a\x75\x9f\x77\x5c\xfa\x38\xde\xf5\xf4\x45\x4f\x78\xe8\xfa\x50\xc1\x7e\x9f\x64\xa3\xbc\x5c\x14\xbb\x3a\xbf\x06\xc5\x93\x29\x46\x9c\x31\x99\xea\x2f\x49\x14\x81\x81\x35\x01\x2e\x63\xbd\xeb\x68\x66\xee\xa2\x7d\xb1\xdf\xf7\x4d\x25\x1e\xdb\x40\xac\x8f\x35\x5d\x29\x60\x0f\x7b\x55\x82\x26\xcb\x54\x85\x9f\x43\x8d\xb2\x3a\x97\xe4\x34\x29\xc1\x11\xb5\x9b\x62\x7d\x2a\x65\xda\x39\x37\xd5\xce\xfc\x54\x7a\x62\x4d\x85\x4f\xca\x03\xc0\xc6\x66\x84\xee\xfe\x9f\x8c\xd8\x57\x35\xfe\xeb\x06\xeb\x6b\xc6\xea\xeb\x27\xe8\x9e\x01\xb3\x23\xa5\x92\x0e\x25\x75\x7d\x71\x43\x38\x94\xe1\x20\x2a\x76\x37\x23\xb4\x60\x13\xc5\x03\x78\x66\x8b\x74\xa1\x58\x70\x0c\x32\x8a\xf0\x83\xa4\x98\xe6\x29\xfa\x12\x77\x67\xd0\x8a\x8d\x4f\x57\x67\x9e\x18\x62\xe5\xe1\x65\x27\x6b\x56\xcf\x56\x73\x70\xc7\x9e\x2c\xd9\x45\x99\xec\xe8\x5a\x0f\x08\x21\xd3\x22\x8e\x93\xb5\x22\x3c\x98\x7a\x69\xdb\xaa\xbe\x06\x0b\x92\x42\x64\x7e\x00\xa5\x18\x55\x21\x56\xb6\x0b\x2a\x03\xc5\x15\xba\x74\x52\x89\x64\xcd\x76\xba\x52\x5d\xfe\x80\x2d\x8c\x3c\x6e\x8d\x32\x0d\x6c\x4c\xed\x35\x66\xbf\x4f\x30\x8e\x2d\xa8\x6a\x97\xba\xd1\xf9\xd7\xb7\xb5\xf6\x63\x7a\x82\xa9\x06\x47\x93\x1d\x6a\x60\xf2\x3e\x95\x49\x4d\x08\xdd\x01\x77\xa7\x82\x76\x2a\x68\x47\x90\xf7\xdc\x32\xad\xec\xd3\x2f\xb0\x07\x1b\x7a\x1d\xce\xc0\xf0\xa1\x8a\xbe\x3e\x1f\xc7\x71\xed\xf5\x3d\x18\x68\x2d\x62\x9c\xad\xe6\xd8\x57\xf4\x2b\xde\x5a\x1b\x90\x00\xfb\x89\x4f\x11\xc8\xce\xf5\x5c\xa9\xd7\x50\xdc\x16\x73\x6d\x48\x4f\x7f\xed\x2c\x43\xb0\x75\xc4\xf6\xd3\x7d\x67\xe6\x60\x20\xfd\x33\x53\xfb\xb4\x10\x5a\xc0\x24\xf4\x7e\x11\xd0\x5c\xb8\x58\x99\x23\xac\x71\xbf\x02\x3d\x0d\x3c\xd3\x24\x9c\x69\x07\x7b\x8a\x63\x4d\x53\x8e\x30\xe7\xb6\x59\x6f\x03\xc4\xee\x0e\x49\x1b\x93\x33\xb8\x78\xd5\x1f\xa3\x01\x1f\xe5\xcb\x06\x1c\x0e\x90\x6b\x27\x8e\x1e\x83\xa7\x10\x30\x04\xf2\x26\x05\xce\x27\xed\x7d\xe3\x55\x9e\x08\x75\x1e\xd9\x03\x29\x3f\xe0\x65\xb8\x64\xfa\x3c\x6a\x54\x00\x3f\x4b\x27\x46\x6b\x32\x05\x6d\x0a\x25\x90\x42\x95\xb3\x7c\xae\x25\x54\x19\xe1\xa9\xc9\x57\xb3\xf1\x69\x7d\x96\xb9\x7c\xb5\x9b\x96\x1d\xcb\x66\xf5\x9c\x16\x6c\x7c\x5a\x58\x33\x8b\xd3\xc1\xa0\x50\x57\xef\x6a\x56\xcc\xed\x39\xbd\x33\x3b\xc0\xa8\xc3\x9d\xf0\x5e\x65\xa7\x1f\xbd\xf7\xab\xa3\x78\x96\xcf\x59\xe6\xb9\xc1\xb4\x03\xff\xa3\xf7\x0a\xc9\x9b\x47\xa2\x7f\xd6\xb7\xfd\x40\xa3\x03\x68\x9c\x7f\x27\xce\x49\x38\xe9\x85\x17\x1e\x98\x69\x57\xe3\x4b\xef\xb8\xff\xea\xf2\x83\xfb\x4f\xa3\x7c\xe9\x15\xfe\x4b\xc8\x33\x86\x14\x79\x38\x49\xc7\x2e\xe9\x9b\x23\x49\xf1\xb4\x08\x92\xfe\xd9\xf0\x09\xee\x8b\x9d\x86\x32\xf8\x09\x4e\x76\xfb\x4c\x34\x1d\xba\x72\xfd\xa6\x42\x81\x9f\xc0\xcf\x4a\x71\x10\x68\x2a\x44\xd1\xb3\x32\xd9\xef\xa1\x07\xc3\x5f\x4a\x0d\x97\x62\x9c\xd1\x0c\x2b\xc4\xd3\xc1\x2c\xb2\xa2\xb9\xa2\xca\xfb\x3d\xf4\x62\xf8\x06\x92\x1b\x0d\x35\x75\xb9\xcf\x97\x43\xb5\x4d\x5c\x1f\x1e\x37\xac\xe8\x41\x4f\xa9\x31\xdf\xa5\x3d\x17\x72\x6a\xfc\xb1\x7a\xef\x0f\x49\x8e\xe0\x4e\x76\xd3\xbb\xfb\x96\xf1\xfa\x37\xc5\x7e\xa4\xd0\x3a\x7d\x86\xfe\x59\xaa\xe3\xde\x2c\xd4\xb3\x31\xb8\x30\x64\x36\xa0\x83\x23\x7c\xe5\x4f\x0d\x34\xbc\x3f\xf6\xf8\xfe\xe7\xed\xe8\x89\x17\xfd\xa2\xed\x70\x8f\x21\xef\x47\x68\xa6\xfa\x5d\x35\xfb\x9d\x91\xfb\x76\xa5\xdb\x91\xa0\xdf\xd9\xea\x3d\xa6\x28\xec\x5e\xc4\xe9\x1d\x13\xba\x50\x93\x55\xe8\x07\x33\x9c\x5a\xbb\x5f\xd5\x0c\xe7\x84\xae\x30\x89\xac\x68\x89\x93\xe9\x12\xbc\x51\x09\xd0\xf3\xe2\xe2\x9c\x8d\xe3\x78\x75\xc6\xc6\xfb\xfd\xe2\x0c\xbe\xcf\x19\x8c\x23\xfe\x72\x8d\x0a\x57\x71\x1c\xe7\x8d\x2d\x60\x6a\x13\xe4\x9c\x8d\x53\xef\xd7\x98\xec\xf7\x58\xcd\xbf\x59\x18\xf4\xae\x24\x67\xa6\x38\xf3\x7b\x6c\x7d\x3f\xf6\xc7\xfe\x8d\xe6\x69\x78\x00\x9d\x4a\x06\xb3\x7d\x4a\xb8\xd9\x18\x43\x87\xde\xe0\x34\x5c\x6d\xfe\xbf\x82\xbd\x68\xe6\xb5\x64\x4f\x01\xe9\xd7\xac\x25\xc6\xca\xa9\x4c\x01\xab\xc1\x65\x7d\xe6\x51\x9e\xf3\xe0\xca\x69\x91\x9a\x7c\x8c\x09\x73\x06\x80\x04\xa4\xf4\x12\x7d\x11\x74\xc2\x34\x03\xea\x1f\x4c\x5c\x0b\x7e\x08\x1a\xff\x39\x8e\x65\x73\x29\x8a\x16\xf3\x1b\x1c\x2d\xf9\x2a\x49\x4a\x38\x59\xda\xbb\xd0\xe3\xdc\x90\xa8\xd8\xf1\xc7\xb3\xcb\x64\x70\x82\xc3\x38\x1e\x9b\xb4\x71\x5c\xb6\xa6\x1d\x45\x8d\xbf\x1a\x80\x79\x6f\x3a\x6d\x87\x7e\xf5\x19\x77\xac\x1b\x9e\x86\xf5\xc5\x52\x04\x5b\x02\x06\xc8\x8c\x0d\xe4\x44\xdc\x04\x7a\x51\x6a\x04\x85\xe0\x0a\x27\x2c\x77\xa7\x58\x48\x71\x6c\x55\xaa\xfa\x1a\xfc\xaf\xeb\x78\x93\x9e\x05\xe3\xed\xd3\x36\x35\xb0\x8a\x34\x7b\xd1\x47\x48\x5d\x3f\xef\x1a\xc8\x3c\x60\x8e\xf4\x50\xe4\x70\x15\x51\xff\x1b\x2e\x4a\xed\xd9\xbc\x73\xa0\x01\x15\xab\xab\x87\xc4\x4e\x41\xee\x4d\x41\x59\x25\x1f\x4b\x42\x3f\xfe\xc7\xba\x02\x47\x5f\x62\x7b\x4e\x73\x6a\x7c\xaa\xbd\x19\x37\x24\x1e\x83\x01\x27\x7e\x38\xf8\x36\x44\xf1\x5e\xaf\xa1\x30\x40\x0e\x87\xb0\x91\x1d\x4f\xa9\x81\x56\x93\x96\xc7\xc0\x82\x01\xdf\xfa\xb0\x27\xdf\x95\xec\x62\xf4\x02\x50\x82\xd5\x98\x77\x5d\x1b\xbd\x9d\x73\x92\x97\x27\x82\x88\xa6\x45\x02\x78\x02\x56\xb5\xcc\xca\x39\x03\xee\xaf\xd7\xd4\xc5\x28\xab\x25\x67\xd2\x93\x66\xfd\xcb\x56\xf1\x29\x4f\x24\x39\x4b\xb4\x2e\x05\x48\x20\x43\x0f\x4c\x80\x5d\x1a\x40\x3d\x83\x97\x36\x8e\x5c\xbb\xf0\x08\xd1\x6f\xe6\xad\xcb\x28\xe6\xea\x37\x45\xcb\x8c\xe8\x37\x45\xc3\x96\xe9\x07\x52\x98\x4e\x93\x08\x37\xf5\x9f\x55\x12\xa8\xed\x52\x0e\x5d\xb0\xda\x1c\x91\xf1\x0b\x9b\x9e\x08\x5e\x00\x92\xf5\x69\xd4\xe3\x23\x0f\x1e\x5b\x9d\xc6\x03\x16\xa1\xdf\x9d\x21\x80\x9e\x9c\x0c\xa3\x81\x6c\x41\x71\xfb\xb0\x31\xd1\xf6\xf3\x29\x18\x3d\x5b\x6f\x30\xba\x18\x74\xf6\x74\xe2\xe7\x0f\xfd\xbb\x06\xf9\xdf\xa8\x5b\xaa\x15\xb2\xf3\xac\xde\x09\x4e\x5f\x56\x09\x80\xad\xd0\x19\x76\x66\x6e\x06\xd0\xbb\x46\xe8\xb7\x56\x4c\xe0\x6b\xaa\xfa\xde\x44\xd5\x26\x79\x57\x12\xfa\xee\xde\x4d\xf2\xff\x73\xf7\x6e\xeb\x6d\x1b\x59\xa3\xe0\xbd\x9e\x42\xac\x49\xd0\xa8\xb0\x48\x91\x92\x6d\x59\xa0\xca\xdc\x3e\x26\x4e\x27\xb6\x13\x3b\xdd\x9d\xa6\xd8\x6e\x10\x28\x8a\x15\x83\x28\x06\x00\x25\xab\x05\xcc\xb7\xef\xe7\x9b\xef\xdb\x8f\xb0\x2f\xe6\x7a\x1e\x62\x3f\xc5\x5c\xff\x4f\x32\x5f\xad\x3a\x02\xa4\x6c\xa7\xf7\x3f\x17\xb3\x79\x01\x02\x75\x5c\x75\x5a\xb5\x6a\xd5\x3a\xec\x13\x9a\xb1\x97\x8b\xc6\xf1\x8d\xb9\xaa\x56\x7e\xd7\xe8\x6b\x1e\x16\xde\x15\x7c\x1e\x04\x55\xdb\xcb\x03\xf7\x49\x59\x8e\x2b\x49\x7f\x43\x09\x12\xe5\xb7\xd8\x7d\x07\x95\xe5\x76\x87\x06\xa5\x68\x97\xce\xfa\xd2\xeb\x2f\xb9\x76\xfe\xf3\x96\x87\x85\xf3\xa2\x34\x02\xdf\x91\xe0\x81\x4b\x28\xd9\x87\xae\x7a\x3c\xcc\xdd\x82\x0c\x04\x26\x20\x36\x93\x3b\x4f\x3d\x8d\x5c\x97\x7f\xfd\xf2\xcb\xfb\x95\xf6\xca\xdb\xea\x27\xaf\x4f\x0e\xbc\x54\xee\x06\x3c\xb7\xb0\x0f\xd8\x41\x1e\x04\x21\xb4\xc0\x80\xdd\xcf\x41\x22\xe3\xdb\x2a\xac\x5a\x9e\x0a\xf6\xbb\xe6\xf9\x3d\x0f\x95\x1a\x4b\x83\x35\x4e\xf8\xd5\xe0\x84\x1d\x6c\xa0\x38\xa2\xec\x63\x45\x19\xf9\x51\x41\x40\x8c\x28\xa1\x86\xb1\x98\x6a\x5f\x59\xd1\xd8\x5b\xed\xdf\x6a\x45\x7a\x9f\x4d\x0b\x27\x24\xb7\x76\xff\xdc\x65\xad\x4e\x3c\x63\x87\x4a\x10\xef\x28\x9c\x46\xff\xa8\x2f\xca\x3e\x06\x2b\x09\xe1\x22\x4e\x3e\x5c\x16\x62\x9b\xa7\x03\x3c\x0d\x2f\xde\xf6\xf1\x91\x39\x5d\x2a\xfb\x87\x8c\x32\xab\x65\x54\x28\xc1\x3d\xdc\x37\x41\x3a\xa0\x5f\x78\xb2\x7a\xc6\xc8\xeb\x6c\x3c\x9f\x22\xed\xf4\x5a\x7b\x7e\x50\xef\x5a\x2c\xa5\x9a\xe5\xf3\x69\xa5\xd0\xdd\xf1\x3c\xf2\xdc\x6c\x20\x80\xb1\xc4\xa8\x2f\x63\xfa\xf2\xf3\x2b\xf9\x89\xb5\x60\xac\xc4\x8e\x75\x0d\xff\x7d\x8a\x0e\x55\x32\xb7\x00\x5d\x7f\x7c\xe5\xfb\x49\x59\x64\x71\xfe\x41\x0e\x89\x43\x65\x36\x48\x1f\x68\x3c\x8b\x90\xa6\xdf\x3c\xbb\x92\xa1\xe7\x00\xf3\x50\x99\x82\x74\x25\x4c\xbb\x01\xa1\x36\x1b\x89\x23\x2d\x37\xed\xc0\xfa\xc9\xd3\x7b\x6a\x2f\xcc\xf1\x48\x71\xec\x73\x30\x5a\x3b\x9a\x77\xaa\x2f\x30\x54\x62\x16\x1f\x1b\x82\x69\x58\x7b\xd1\x5c\x29\x99\x63\x2d\x9d\x6a\x2f\x5c\x76\xae\x4a\x65\x69\x87\xa8\xaf\x4c\x19\xf7\xd1\xe1\x32\xe6\x19\x4b\x0f\x2b\x71\x18\xa7\x57\x71\x9e\xb0\xc3\x12\x04\xe3\x87\xc8\x9b\x5b\x7f\xf3\x81\x36\x81\xdc\xb3\x55\x58\x2a\x13\x71\x5a\xde\x91\xe5\x69\xb4\x04\x41\xcb\x52\x7b\xf5\x19\x6a\xc9\xc9\x10\x13\xb9\xa8\x23\xa1\x74\x3f\xb4\xed\x4c\x36\x2d\x41\xd2\x4d\xa4\x8c\x24\x38\x4a\x1a\xb8\x27\x12\x24\x56\x5b\x0c\x29\xa9\x8a\x3c\xa8\xe8\x0f\x2c\x8c\x89\x71\x4e\x4a\x32\x49\x0f\xc7\xfa\x1e\x4c\x9e\x6b\xca\xca\x5d\x28\x17\xf2\x14\x23\x5b\x7e\x95\xcb\xd3\x04\xfb\x58\x91\x1d\xa3\x35\x8a\x5b\x95\x03\x1f\x6d\x36\x57\x7c\xd0\xa5\x12\x66\x1f\x26\x2b\x1c\x04\xbd\xe5\x90\x89\x2c\xc4\x13\xac\x1b\x47\x55\xc3\x04\xfd\x29\x0f\x4b\xb2\x24\x09\x18\x56\xd8\x2a\xd6\x06\x07\x59\x06\x2b\xed\x3a\xdd\x46\x3c\xf4\xba\xf1\xef\xde\x01\x10\x58\xa4\x9a\x61\x5b\x0c\x7d\x13\xec\x7a\x89\x28\x7e\x9f\x83\xd8\x4f\xe2\xda\x3f\x22\x89\xc2\x06\xb6\xa9\xfb\x5a\x49\x56\x5e\x41\xbe\x4d\xf7\x20\x98\xc9\xdc\xca\xc0\x32\x52\x4e\x5d\xff\x9c\x87\x5f\xc9\x93\x71\x8e\x89\xc0\x13\xd7\x01\x72\x25\x2d\x95\x8c\xb9\x2d\x6b\xd7\xbe\xfa\x34\x2c\x69\x6f\x4c\xe2\x20\xa8\xb8\xa2\xcf\x09\x64\xc2\xea\xcf\xfa\x49\x25\x5b\xed\x15\x64\x4b\xff\x9c\x87\x3f\xc9\x0a\x97\x24\x27\x2b\x59\x29\x59\xa9\x9e\x49\xe9\x4a\xe2\x16\x39\x53\x0f\x52\x18\x23\xb4\x1e\xa0\x7e\xb8\x9d\xa6\x7d\xb9\xf4\xb7\x51\xaa\x68\xf0\x5e\x59\xd7\x49\x8f\x6e\xb5\xc1\xd7\xec\x5c\x0f\xd6\x04\xf3\x30\xa3\xd6\x51\xa0\x99\x9f\x59\xff\x3e\xbb\x87\x49\x82\x0f\x12\xba\x6d\x5a\x03\xdb\xd8\x02\x36\xa2\x9c\xb4\x9d\xc2\x43\x09\x72\xf0\x55\xfe\x03\x1e\x6e\xe4\xf0\x67\x74\xe3\xad\xef\xef\x77\xf4\x1a\x67\xc6\xb3\x90\x9c\xc2\xdf\xb2\x7c\x4e\x04\xbd\x6d\x0e\xd4\x64\x30\xf3\xd2\x38\xa1\x22\x45\xd7\xcd\x93\xbe\xa3\x92\x14\x27\x11\xbe\xf6\xa0\xf2\x96\xcb\x3c\xa7\xa3\x59\x7c\xe3\x91\xc2\x76\x7a\x75\x93\xcc\xe2\x39\xd9\xd2\xb1\x9c\x3d\x2d\x28\x94\xe1\xf7\x5d\xe3\xf7\x8e\x15\xb6\x9d\x64\xe7\xc6\x86\x6e\x4e\xf9\x6c\x3b\x3f\xc8\x1f\xc1\x21\x43\x93\x0e\x5b\x32\x26\x8c\xf0\xd9\xb6\x3f\x9e\xcb\x09\xb4\xed\xd3\x63\xe2\x8d\x80\x3c\xaf\x36\xc0\x60\xe3\xcb\xb0\x1c\x8a\x4d\xfc\xfb\x96\x61\x9b\xbd\x20\xdb\x41\x41\x18\xb8\x3b\xd2\xd0\x4a\x8a\x0d\x93\x2d\x2d\xfa\xc7\x8a\x51\xae\x0e\xb9\xe7\xdb\x49\xd1\xa7\xc7\x86\x8d\xc2\x67\x45\x7f\x3c\x3f\x50\x7f\x34\x14\x53\x21\x27\x48\x84\x10\xee\x77\xca\x6a\x1a\x77\x21\x7d\x0b\x4a\x47\x65\xc4\x09\x5c\x97\xb3\x32\x12\x43\xbd\x69\xc1\xb5\xb9\xd9\xb5\xa6\xda\xf9\xa5\x1b\x65\xc6\x5b\xbe\x30\x94\xf6\x52\x59\xd7\xe6\x6d\x36\x9a\xf7\x68\x67\xdc\x4d\xb7\x01\x8e\x7a\xcd\xc1\xaf\x22\xa7\x7a\xbe\xb4\x8e\x89\x9f\x5e\x60\x65\x1e\x7a\xf3\x25\xc7\x11\x98\xcd\x82\xaa\x40\x91\x1d\x34\xc7\x14\x18\x94\xeb\x17\xc2\x87\xba\x89\x53\x1d\xf7\x54\x7d\x52\x1b\x11\xb5\x23\x40\xd5\xaf\x95\x52\x39\xb4\x28\x28\x35\x9e\xc5\x0a\x91\x57\x5c\xe9\x08\xfa\xdf\xfd\xbe\x35\x51\xa3\x6b\x77\xfd\xa6\x71\x82\xb7\x3a\xbc\xa6\x88\x4f\xa1\x30\x98\xf6\x5a\x82\x81\x0a\x40\x25\x79\x5d\x8f\x88\x46\x5a\x5f\xe5\x21\x27\x05\x9e\xf4\x84\x41\x57\x3f\xc9\x10\x21\x77\x81\x56\x2e\x49\x7b\xff\x9a\x63\xf2\xab\x4f\x63\x82\x9f\x19\xb1\x47\xc5\xee\x35\xd7\x02\x76\x8a\x01\xc3\xe9\x6d\x43\x72\xde\xb2\x57\xc4\xb9\x33\xaf\xad\xfc\x74\x96\xdf\xec\x1a\xed\xf7\xae\x8c\xab\x16\x06\x9e\xe6\x3c\x2a\xb8\xa5\x2c\x66\x6c\x2e\xe9\xed\x19\x9b\x53\x6b\x74\x29\x3c\xba\x78\xdb\x3f\xba\x84\x55\xf1\x55\x80\xb0\xb7\xa3\x08\xee\xf3\x6d\x9c\x10\x98\xbd\x8f\x21\xe5\x14\x6d\xe2\x34\xe5\xf9\xe5\x00\xdc\x9d\x46\x87\xc3\xf1\xe6\x23\x52\xb2\x37\x24\xa7\xb7\x9b\x82\x45\x32\xe3\xa6\x60\x88\xcc\x8a\xb6\xbc\x98\x32\xe5\x48\xb4\x2f\xaf\xa8\x20\x89\xc8\xa2\x11\xd9\x88\x32\x1a\x91\x64\x1d\x31\x02\x6a\xed\xa0\xe4\x54\x46\xa1\xa8\xeb\x12\x64\x60\x2e\x59\xa5\x4c\xb4\x77\xfc\x51\xe1\xe6\xa0\x32\xe7\x29\x5f\x5d\x5f\x51\x40\x34\x04\xb7\x1a\xd5\x54\xfd\xe9\xd5\x10\x8d\xb0\x13\x65\x88\xc9\x96\x72\x1d\x3f\xe3\x83\xf1\x3c\x52\xbb\xfd\x41\x0e\x53\x62\x44\x72\x25\xc2\xf5\x81\xe5\x34\xe6\xe4\x2f\xbe\xc7\x29\x5d\xaf\x3c\x6c\xc7\xf4\x1d\x0f\xb7\x58\x79\x0d\xb0\x19\xb6\xdc\xfb\x22\x20\xa8\x3f\x5c\xc7\x1b\x3a\x9b\x93\x84\x87\x5b\x92\x13\x58\xf7\x5b\x52\xf5\x3c\x2f\x37\xec\x63\xc5\x8a\x3c\xce\x7e\x54\xc5\xa7\x41\xf0\x1a\xca\xc6\x64\xdb\x5d\x51\xed\x00\x83\x6b\x00\x08\xfd\x4e\x5f\x88\x3b\x52\x91\xdc\xe1\x26\x84\x76\x4a\x77\xd8\x0a\x8a\xb3\x5f\x7b\x0a\xb4\x71\xc4\x4b\xa7\x0a\xc5\x04\x18\x6f\xeb\x78\x63\x85\x57\xd5\x17\x6c\x42\x23\x22\xfb\x57\x4f\x86\xa1\x3c\x3c\xe7\xa9\xd2\x1f\xfd\x7d\x5f\x3f\xab\xd2\xf8\x34\xb4\x43\x0e\xbd\x09\x05\x12\x17\x06\xfe\x50\xe9\x6d\x83\xa3\xb0\x9d\x52\x4b\xbf\x7a\x01\xfe\x25\xa4\x0c\xc0\x24\xec\x94\xd3\xce\xa3\x82\xbc\x5c\xb7\x8d\x22\x18\x4a\xc3\x1b\x77\xcd\x01\x55\x2e\xd9\x98\x49\x78\x74\xb1\x48\xd6\x83\x2a\x5e\x5c\x2c\xf4\x42\xce\x9c\x40\x15\xae\xeb\x6c\xf8\xfb\x96\x15\x37\xca\x26\x86\x28\x82\xa0\x13\x10\xa2\xa1\xca\x8f\xf4\x0c\x33\x75\xd8\x42\x28\x52\x09\xc0\xe3\xd9\x60\x15\x27\x1f\x90\x3d\xc3\xfc\x04\x9a\x02\x05\xcb\x53\xe3\xd5\xc7\x92\xb4\x12\x67\x31\xac\xfe\x5c\x61\xbb\x03\xde\x49\xb0\x3b\xce\x24\x77\x38\x24\xe6\x1e\x55\x5a\x92\xad\xb9\x01\x53\x1d\xa4\xcd\xae\xa9\x15\x0e\x0b\x4f\xe3\xa4\xc3\xdb\x13\xd2\x1c\x5d\x92\x92\xe3\xa8\x22\x09\x88\x3a\xee\x71\xa1\x48\x96\xb4\x37\x96\x07\x94\xc4\x68\x5f\xe2\xdb\x4b\xa7\xd2\x9d\x14\x2c\xae\xd8\x33\xfd\xf9\xa2\x88\x2f\x95\xee\xb1\xc5\x0c\x2b\xe5\x9a\x32\x81\xf1\x51\x2e\x72\x56\x07\x8a\x38\x4c\xc0\x76\x63\x58\x61\xb2\xa1\xe9\x34\x55\xc7\xd1\xc1\x2a\xb2\x77\xdd\x70\xe9\xb5\xd1\x37\xe1\xdd\x3a\xdf\xb1\x8f\xc0\x99\x09\x33\x7d\x9e\x5d\x91\x55\x7f\x83\xf1\x81\x08\x82\xf8\xfc\x6c\x7a\xd9\x9a\xe0\x9e\x7c\xed\x7a\x8e\x71\xd4\x8e\xd5\x2e\xb0\xf5\x32\x61\x5a\xc7\x6c\x23\xca\xfe\x86\x40\x5c\x22\xb2\x3e\xdd\xe8\x30\xba\x01\x9a\x35\x35\xce\x34\x97\xe1\xaa\x4f\x37\xfd\x31\x41\x17\x15\xa2\x34\x9d\x8d\xe6\x0a\xe6\x2b\xd5\xa9\x5d\x43\x9b\x37\xf4\x6a\x00\x45\x7e\x7d\x35\x09\xd7\xf4\x2e\x40\x37\x22\xbc\xc1\x04\xd9\x99\x88\x3b\x22\xbd\x85\x00\x37\x72\x9b\x82\x95\x46\xe7\x10\x61\xb2\xde\x15\xfc\xad\x94\xb1\x9b\x0b\x65\x4d\x10\x9a\x72\xe3\x5c\xd9\x5c\x14\x1a\xe6\xba\x46\x17\xb9\x85\xff\x13\x80\xb9\x2c\x53\xf4\x1f\xff\xed\xff\x44\x11\xfa\x8f\xff\xf6\x7f\xed\xf1\x71\xb9\x03\xb1\x85\x05\xaa\x30\xb0\x8c\x01\x16\x59\x61\xab\xb7\xf6\x3b\xdb\x0c\x21\xeb\x67\x0a\xfe\x77\x67\x80\x01\x67\xff\x54\x18\xab\xa9\x00\x3a\xcf\x8d\x82\x59\x67\xb1\x56\xbd\xe5\xa0\xef\x2c\x0e\x37\x51\xd5\x05\xf3\x9e\xa2\xed\xa1\xea\xd2\x00\x1f\x04\xe1\x12\x84\x46\xf5\x94\x33\x29\xe0\xc6\xa2\xae\xf3\xba\xe6\x75\xbd\xac\xeb\xad\x9a\x69\x0b\x5a\x48\xc4\x00\xbc\xb0\x45\x9f\xe6\xca\x7a\xe0\xa2\x4f\xb5\x84\xfb\x7b\x5f\xc0\xfc\x72\x4e\x16\x64\xeb\x54\xeb\x83\x20\x7c\xaf\xdd\x90\x96\xaa\x1b\x76\x37\x88\xf7\xb8\xd9\x1f\x71\x89\x3d\xb2\xba\xe4\x6d\x21\x10\x74\x88\x48\x5b\x3a\x70\x70\xac\xae\xe0\xfb\xb4\xf8\xfa\x78\x0a\x34\xfe\xff\xf8\xef\xc8\x6a\x41\x03\x4b\xc8\x95\xb7\xe5\x2d\x46\xbe\xa5\xef\xec\x09\x5c\xe3\x3b\xca\xa7\xbc\x8f\x0e\x93\xf5\x00\x98\x7b\x83\x85\x28\x52\x56\xa0\x08\x75\x43\x2c\x5a\xca\x68\x01\xfd\x9f\xd0\xac\x6f\xef\xa2\x27\x0e\x76\x25\x00\x63\x79\xad\x4b\x43\xbf\xac\x68\x35\x5b\xc2\x7d\xed\x6a\x58\x89\x47\x59\x10\xac\xb4\x38\x56\xa6\xd0\x41\x63\xa2\x68\x62\x79\x55\x1d\x78\x0f\x20\xc0\x32\xe6\x64\xea\x41\x86\x21\x81\x22\xf9\xc8\x16\x13\x25\xfd\x44\x72\x6a\x12\x9a\x64\x19\x95\x6f\xfe\xcd\x67\xb6\x43\x94\xf7\xf2\x20\xf0\xaf\x91\x0e\xb8\xba\x94\xdf\x37\xf5\x08\xc7\x44\xa6\x87\xc5\xd7\xf6\x6f\x96\x33\x96\x96\x4f\xd5\xa0\xdb\xd5\x16\x04\x21\xaf\xeb\x90\xd3\xfd\xf3\xa1\x33\xf9\x8d\x31\x0a\x35\xf7\x30\x98\xb6\xdd\x59\xbb\xea\xb6\x07\x91\x62\xc8\x53\xac\x0d\x5f\xee\x42\x53\xb2\xea\x97\xdc\xb8\xa3\x0d\xf9\x5d\x33\x95\x63\xb7\x68\x5c\x1f\x25\xbc\xed\xd2\xb5\x7d\x23\xc8\xb5\xd3\x64\x22\xe8\xa8\x2d\xaf\x00\x23\x46\x32\x92\x90\x25\x59\x91\xd4\xda\x75\x22\x1b\x3a\x22\x6b\x1a\xbe\xa6\x63\x82\x10\x26\x57\x6a\x9b\xe3\xcb\xf0\x8a\xd2\x0d\xbe\xdd\xd2\x8c\x26\x74\x49\x4b\x8a\x10\x51\x0e\x54\xc9\x15\x1d\x1f\xb9\x5b\xb0\x1b\x72\x29\x09\xd3\x05\x1d\x4d\x16\xbe\x38\xc4\x42\x81\xf8\x9e\xe6\xb3\xc5\x9c\x5c\xd3\xf7\x46\x10\xd1\x97\x25\xbc\xd6\xb2\x84\xef\xf5\xed\xe0\x26\x08\xae\xbd\xf1\x9e\x5e\xaa\x81\xbe\xc6\xd1\x7b\x3d\x3d\x37\xf6\xf2\xf0\x3d\x5c\x1e\xca\xe7\xa3\x4d\x5d\x5f\xfb\x57\x90\xef\xe1\xca\x73\xe3\x95\x8b\xa7\xfa\x2a\xe2\x3d\xdc\x3f\xbe\x87\x2b\xc7\x4d\x10\x5c\x3d\x52\x01\xe1\x15\xc4\x90\x8c\xca\x5e\xb8\x6e\x11\x35\x5b\xc5\xe0\xf5\x02\x21\x45\xa9\x38\x63\x61\x39\x2d\xfb\x68\xa2\x0e\xf9\x10\x2c\x63\x9d\x84\x7b\xab\x71\x61\x62\xca\x72\x09\x64\x72\x23\x02\x6f\x40\xbf\x0a\x82\xf0\xa6\xae\xc3\x1b\x8f\x66\x74\xa9\xc8\x7b\x10\xa7\xbd\x56\xc8\x2e\x08\x7a\x4b\x40\xb3\xd7\xc6\x79\x72\xab\x2f\xc2\xde\x0a\x44\x4c\x8c\x2c\x20\xb9\xd6\x22\x26\x2b\xfa\x1e\x9b\x7e\x7d\xa4\xbb\x42\x6b\x4a\xca\xce\x80\xdb\x58\x89\x05\x6e\x60\x12\xa9\xf1\xbd\x31\xe3\xbb\xe8\xd3\x63\x7c\x33\x5b\xf4\xc7\x73\x05\x6d\xa6\x1a\x76\x33\x5b\xcc\x15\xef\x7e\x55\xd7\x2b\xdb\xfb\xae\x84\x4b\x7f\x86\x64\xa0\x32\x41\x2e\x4d\xa6\x15\x48\x34\x2a\x79\xd1\x11\x86\x09\xc8\x97\x21\xa4\x0a\x8d\x80\x63\x25\xa6\x69\x7f\x0c\xb2\x93\x78\xb0\xb1\x22\x8e\x6d\x01\x48\xe2\x52\x1b\xad\xab\x95\x99\x13\xe1\x8a\xf6\xc6\xb8\x91\x4d\xdb\x3c\xa2\x86\xfa\x31\xd3\xf9\xb9\x63\x12\xa5\xe4\x0a\xeb\xc5\xa0\xf5\xe5\x3e\xd2\x4d\x7f\xed\x09\x32\xf5\x34\x83\xf0\x2d\xfd\xf8\xe8\xf9\x74\x6d\x51\xe1\xf3\xc1\x06\x47\xeb\x83\xca\x1e\xe2\xc2\x8a\xbc\x25\xf1\x34\xee\x6f\xa3\x2d\x49\xc8\xa6\xff\xd6\xa8\xfc\xd2\xab\x69\x16\x21\x44\x96\xa4\x84\xde\xfe\xf8\x88\x3e\xc7\xb7\x6b\x6a\x0a\x93\x45\x91\x0d\x7d\x7e\xa0\xb0\xf2\x86\x7e\x24\x09\x45\xa8\x59\x5b\xc3\x6b\x82\x08\x5a\xcc\x5e\xf7\xfb\x73\x4c\x62\xca\x79\xa8\x3e\x48\xe5\x51\x21\x58\x6d\xf4\x87\xa6\x95\xaf\xe9\x78\xf2\xda\x49\x4e\xbc\x96\xa3\xd9\x82\xb6\x53\xf8\x1c\x13\x5d\xf0\xb8\x53\xb0\xc7\x04\x58\xb6\x77\xb9\x11\x75\x92\xe1\x20\x48\xa1\x65\xc3\x83\x00\x21\xea\xc9\xdf\xca\x29\x2a\xd1\x64\x5d\xb7\xe8\xa6\xbd\x3e\xb2\xbd\xda\x56\xfc\xd3\x77\x01\x87\xc5\xb4\x00\xef\x70\x2d\x39\x4a\x01\x37\x7e\x1c\xdf\x86\xbb\xe6\xdf\x14\xee\xa4\x15\x61\x1e\x17\x0b\x70\xb8\xcf\xd4\x02\x7e\x85\xb6\x13\x54\xea\x58\xe0\x71\x69\x4e\x86\xbe\xb1\x86\x7d\x1a\xa2\xe1\x4d\xc7\xc2\x5d\x19\x01\x09\xbf\x02\x6b\xf1\xf9\x7c\x2a\x03\xa3\xf1\x01\x77\x37\xdd\x5a\x53\x8a\xe3\x06\x2b\x80\x49\x0e\x5a\x2d\x0c\x1c\x18\xe4\x97\xea\x30\xe6\xf5\x46\xdc\x65\x91\x32\x22\xe8\x6c\x0e\x96\xbd\x25\xa1\x22\x9c\xc8\xec\xaf\x79\x98\xcd\x8a\x39\xe1\x61\x81\x49\xee\xae\x09\x94\x56\x4c\xa9\x07\x0d\xb4\xc7\x00\x21\x6a\xae\x6c\xa2\x64\x7e\x4a\x7d\xc7\xb1\x54\x9f\x5b\xfd\xb9\x92\x03\x9a\x61\xb9\xb3\x84\x99\x67\xf3\x7c\x43\x55\x8a\x81\xbe\x06\x75\x3a\x0c\x46\x2b\x2f\x1c\x91\x38\x1c\x91\xcc\x9a\xc2\x20\xc6\x24\x94\x2d\x48\x76\x37\xff\x17\x1b\xd8\x34\x56\xc1\x48\x4f\x39\x73\xb4\xf2\x0b\x1a\x8c\xf1\x81\x08\x97\x64\xa9\xc0\x4f\x31\xd9\x28\x03\xef\x50\xb4\xbe\xa9\xde\xc8\x83\x86\xe1\x30\x58\x88\x74\xe4\x1a\xdb\xd3\x45\x42\xa9\x12\xfc\x1e\x53\x6a\xa1\x10\x61\x42\x12\xc5\x2f\x35\x0b\xbf\x1c\x26\x2b\xdc\x5f\xf5\x5b\xc1\x5b\x19\x48\x52\x05\x75\x28\xa1\x1c\xfb\x50\xe2\xd6\xd0\xec\xcf\x2b\xc7\x89\xdc\x59\x5f\x36\x1b\xc9\xe1\x1c\x61\x65\x65\xdd\x6b\x03\x10\xfb\xb6\x15\x5f\x04\xbc\x2c\xac\xbf\xdc\x85\xc1\x94\xdf\xea\xc0\xfe\x98\x6c\x54\xbb\x6e\xbf\x04\x3a\x39\x1e\xab\x7d\x85\xa7\xf8\x60\xa7\x5f\x0e\x36\x8f\xc6\x3b\x23\x26\x2b\x1c\x8c\xef\x68\xe7\xa7\x16\x48\xca\xad\xd9\x1f\x65\x74\x84\xf9\x46\x0e\x68\x4b\x3e\xba\xa2\x23\x20\xf7\x3b\x92\xdf\x6c\x56\xb5\x74\xba\x48\xd1\x07\x31\x70\xab\xe1\xee\x5f\x9f\xbb\x9a\x37\xae\xe6\x44\x52\x76\x05\xcb\x29\xeb\xd6\xb5\x4f\x53\xc8\x70\xa6\x67\xf9\xfc\xa0\xea\x53\x3e\x4c\x56\xdb\xfc\x83\x3c\x7a\x87\x58\xd6\xcd\x8d\xd4\x01\x6f\x69\x9a\x29\x83\x2f\x60\x14\xac\x7d\xa3\xbf\xd3\xe0\x26\xe5\xbe\xd1\x2f\x5b\xfc\x9d\x96\x90\x3c\x39\xde\x86\xa8\x71\x79\x99\xe7\x2d\x7f\x25\x5d\x2c\x94\x53\xd6\xaf\x26\xc5\x79\xee\xf4\xa9\xb8\x6f\xc2\xa1\x98\xfb\xfd\x36\x70\x8d\xfa\x16\xe4\x3f\xff\xce\x43\x4e\xb4\xc9\x61\xd4\x52\x9b\xd7\x57\x35\xea\x42\xca\xd0\x3b\x1d\x7b\xff\x72\x61\x49\xa2\x3a\xbb\x31\xd6\xa2\x20\xaf\x75\x3a\xb2\x0b\xbc\x95\x8e\xd0\x22\x18\xa6\xd7\xd4\x9c\xf1\xab\xd7\x73\x9c\x61\xa3\x94\x5a\xb9\xb7\x6e\x32\xe6\xa9\x8d\x77\x1c\x70\xc8\x81\x06\xcf\x1b\xfe\x10\x12\x5e\xb1\xe2\xd5\x0e\x60\xae\x08\xd9\xa7\x0c\xfa\x14\x6c\xcb\x16\xbe\xc1\x13\x36\xf7\x25\x11\xc9\xe6\x8f\x8d\xb1\x9c\x38\x9f\x1a\x5b\x9b\x68\xb0\xa3\x00\xd9\x9a\xe2\x7b\xb4\xe8\x5a\xf1\xb0\x03\xd1\xdc\x9f\xd3\x20\xfd\x70\x6e\x45\x92\x2d\x1d\x56\x11\x3e\x60\x60\x70\xd6\xac\x34\x50\xc5\xf3\x60\x0c\x19\x11\x2d\xf1\x95\x01\x8d\x07\xb9\x5d\x1e\x94\x0a\x63\x1f\xc5\x82\x67\x6e\xfa\x40\xc6\x88\xe4\xfe\xb2\x00\x76\x71\x58\x0d\xa8\xc0\x56\xfe\x64\xa4\x90\x28\x1b\x28\x7d\x1d\xd7\x0b\xd5\xf9\xf1\xfd\x9d\xc2\xf5\xf5\xd9\xb8\xae\x7b\xed\x98\xd9\x68\xee\x39\x28\x4d\x39\xb6\xca\x52\x33\xbd\x0e\xcc\x4c\x0e\x4b\xdd\x20\x8b\x33\x66\xe0\x43\x85\x87\x25\x9e\x93\x6e\xa1\xad\xd9\x73\xc7\x72\x68\xeb\xb4\xdc\x31\x58\x15\x6e\x17\x5d\xcd\x1d\x44\xec\x4b\xd6\x8d\xec\x14\xc7\xe6\x21\xed\xb5\xd4\x5d\x04\xfb\x61\xc8\x5b\x68\xc2\x82\x02\x17\xd6\x7c\x77\xc2\x50\x01\x3b\x33\x1f\x7a\xb0\x69\x90\xb4\x8b\x97\x32\x08\x78\x0b\x79\x3d\xba\x3f\x72\xfd\x11\xd3\x76\xe4\xd7\xc7\xf7\xfb\xc7\xf7\x49\x49\xe3\x49\x79\xde\x8e\x9a\x18\x61\x77\x3d\x14\xbc\xb5\xca\x4b\x52\xf6\xe9\xf1\x7d\x8c\x0f\xb8\x9d\x86\x5b\x2b\x19\xb6\x6f\xf6\xf5\xfb\x39\x19\x91\x2d\x26\xdb\xd6\x00\xea\x62\x29\xef\xe0\x9a\x58\x4f\x09\x30\xc4\xf1\x76\xc3\xb3\x2c\xc4\x8d\x3a\x17\xb0\x01\x15\x4d\x43\x5c\x4c\xc7\x38\x62\x6f\xef\x0c\x3d\xa7\xe3\x11\xf6\xe5\xd8\x0e\x52\xa1\x75\x5d\x64\x0b\xe5\xce\xb5\x03\x33\xeb\x16\x32\xb8\x4f\xee\x63\x2d\xba\xa4\x5a\x01\xde\x8f\x14\x8a\x80\x7f\xc2\x6c\x7f\x54\xbe\xe8\x66\x41\x6f\x84\xcd\x64\x8b\x25\xa0\xc0\xd2\x09\xb4\xeb\xb5\x3f\x26\x23\x89\xf2\x81\xe6\x50\x53\x69\x07\x54\x7c\x60\xd7\xb3\xac\xdb\x5b\x41\xa4\x9a\x13\x46\xf3\xa6\xb2\xf1\x46\x6d\xfa\x7a\xc5\xb3\x3d\x8d\x7b\x34\x1e\x79\xd0\xb4\x3a\xfe\xf3\x58\xfa\x3f\x6f\x8e\x5b\xc3\x60\x1e\x52\x14\x03\x06\xb1\x1c\x6c\x14\xbc\x0a\x19\x89\x49\x81\x5b\x32\xed\x1a\x8f\xc5\xfb\xf0\x98\x30\xb6\xda\xd6\x9c\x8e\xc8\x15\xa7\x6f\x87\xcf\x44\xb2\xc7\x2a\xb6\x9d\x3d\xbe\x6f\xe5\x2b\xee\xae\x94\xd9\xf5\xe1\x95\x3b\x8c\x69\xb1\x21\x10\x9b\xa5\x23\x2c\xf7\x1f\x65\x9a\x5a\x52\x4c\x06\x87\xcd\x34\xb5\x8b\xd4\x15\x31\x9e\xe3\xb9\x9e\xdb\xa0\xff\x6e\x76\x5d\x2b\x29\x4c\xbd\x4f\x30\xe3\xa1\xed\x61\xf9\xa6\xae\x54\x40\xc6\xe2\xfc\x5b\x96\xb3\x02\x2e\x12\xe8\xd8\x6a\x82\x83\x4c\x00\x2d\xf4\xa1\x2b\x65\x61\x41\x46\x5a\xbe\xb9\x64\x19\x7d\x05\xac\x38\x85\xae\x94\xcd\x04\x98\x57\x4f\x79\xa8\xb6\x84\xca\x5a\xa2\x5b\x73\xbd\x0a\x45\x6a\xfc\x7f\x57\x9e\x45\x43\xb6\xa1\xb9\x31\xe3\x55\xb1\x3c\x95\xa0\xed\xf3\xb3\x1f\x6a\xc9\x51\xb8\xd6\x92\xe7\xdc\x52\x92\x09\x64\xa5\xc5\xc3\x95\xb5\x0f\x4e\x2a\x21\x1f\xec\x63\x15\xb1\x06\x93\x5f\x95\x3d\x3f\xa2\xa0\x8d\x05\x6e\x0e\x7c\xef\xe4\xf4\xbd\x08\xfd\xfd\x9e\xdc\x26\x22\x2f\xab\x62\x9b\x54\xa2\x88\xae\x38\xcc\xd8\x9d\x09\x5b\x4c\x55\xe3\xd4\x2c\x1a\xb8\x61\x20\xd5\x40\x9e\x53\x23\x2f\xda\x8f\xb4\xaf\x7d\x8b\xf9\x89\xdb\x23\xee\xa4\x09\x47\x5d\x1f\x64\x72\x35\x14\x7d\xe3\x7f\xcc\x91\xd2\x2d\x7c\xde\x02\x8b\x14\xd8\xd0\x28\xfb\xc8\x93\x16\x65\xd0\xca\x88\x1b\x62\x0c\x34\xef\xb1\x32\xfa\x51\xf7\xfd\x67\x1a\x69\x4e\xcc\x60\x05\x9e\x4d\xab\xa8\x52\x56\xef\x59\x5d\xfb\xd3\xc0\xf8\xc4\xc2\x0d\x29\x4d\x9d\x3f\x55\xe1\x6e\xb5\x29\xf3\xbb\x75\x84\x89\x35\x32\xd8\xaa\x76\x30\x3e\x78\x59\xf8\x93\xa3\xd2\x0e\xa7\x0b\x72\xad\x01\x2f\x5a\xfe\xae\xb1\x9a\x37\xbb\xb3\xcc\x5a\x8f\x31\x70\x21\x22\x8f\xe4\x51\x6f\xd4\x80\xf5\x31\x6f\x96\x55\x18\x37\x98\xf8\x8e\xbf\xa2\x5d\x0c\xf1\x44\x83\xc5\x08\x08\x46\x1a\x71\xe2\x82\x16\x53\xf3\x29\x67\x11\xc9\x55\xf7\xef\x2b\xc6\xd0\x88\xcf\x75\x4b\x4c\x3e\x86\x89\x2b\xb1\xd5\xf1\xc5\x34\x8f\x72\xd5\xf1\xc5\x9d\x1d\xaf\xdd\xfb\xdd\x65\x51\x56\x47\x7f\x07\x26\x88\x3c\xfb\xa0\x55\x10\x28\xae\x87\x2d\x41\x25\x89\x3a\xa6\xb8\x5e\x58\x28\x0d\x32\x34\x23\xc1\x5c\xe5\xaf\xb6\xeb\x45\xc7\xa5\xa3\x93\xea\xf1\xd2\xa9\x2a\xfe\xc2\xcb\x6d\x9c\xed\xba\x3a\x36\xbe\x06\xa0\xb0\x2e\x22\x71\xb5\x62\x02\xfa\x63\x0d\x91\x7d\xf1\x54\x6c\x3f\x61\x24\x14\x08\x7d\xeb\xa4\xf9\xae\x64\x90\xa0\x21\x46\x17\xec\x93\xc9\xfc\xb9\xda\x10\x6d\xbe\x64\x5f\xc3\xdd\xe8\x42\xeb\x95\x4d\x9c\x3b\xcd\xfe\xb2\xcc\x68\xbd\x84\xd8\x37\xc4\x0f\xa6\xdb\x95\xf3\x78\x58\x87\xe0\x71\x2e\x32\x3e\xe6\x55\x90\xfa\x88\x10\xcb\x21\x51\x5d\xa3\x4a\xa8\x17\xb3\x7a\xc1\x47\xba\x73\x19\x4e\xda\xae\xef\xee\xec\x3d\x96\x0d\x0b\x39\x8f\xcb\x86\xec\x38\x7a\xfc\x54\xa6\x3d\x5e\x21\x01\x3f\xe8\x3e\x68\x21\x08\xb5\x30\x7e\x67\xed\x25\xb1\x3b\x07\xa6\x4a\x2e\xbc\xae\x47\x38\x62\xd8\xaa\xd3\x60\xe2\x3b\x10\xfc\x92\xa2\xfd\xd5\x56\xd7\x0c\xab\x52\x3a\xde\x83\xf7\x15\xf4\x64\xb7\xa0\x2a\x08\x7c\x5c\xb0\xa7\xa0\xb2\x5b\x12\xbe\xfd\x45\xe7\xf8\x97\x57\xce\xbe\x9c\x4f\x6e\x3e\x9f\xf7\xd2\xd8\x1c\xb6\x43\x05\xeb\xa3\xea\x76\xcc\x0e\x18\xc6\xcc\x86\x41\xa3\xb7\x7b\xf4\xe6\x99\xef\x40\x93\xcf\xf2\x39\xd5\xbe\x1b\x6d\x0f\xc8\xdd\x4c\xcd\x3e\xd7\xa9\xcc\xb8\xd8\xc4\x86\x4c\x02\xc3\x9d\x9e\x5c\xaa\x65\x7f\x91\xd6\xdc\x57\x4e\x11\x1c\x66\x7e\xc6\x42\xae\xbb\xb5\xc1\x24\x4e\x3f\x3d\x3a\xde\xf1\xdb\x75\x86\x39\x55\x00\xb1\xec\x39\x9f\xbc\x6b\x2e\xb4\x6b\xcf\x49\xee\x71\x79\x61\x74\x2f\xfd\xc9\xb6\xf7\xe0\x69\x36\x36\x6f\x44\x14\x29\x50\xec\x71\x47\x6a\x76\x82\x42\xf6\x99\x76\xda\x0a\xef\x72\xbd\xe2\x83\x8a\x56\xd3\xca\x30\x5c\x38\x8e\x78\xf3\x47\x37\xe5\x4b\xb6\x77\x9d\xef\xfa\x9d\xfd\x4f\x83\x19\x4c\x42\xc0\xc5\xb3\xf1\xa4\x73\x17\x74\x98\x80\x52\x0a\xb7\x12\xac\x0d\xe9\x7a\xbe\xfc\xc4\xb9\x63\x36\x27\x9e\x1d\x55\x6f\xc8\x3d\x83\x4c\xf9\x8c\xcf\xa9\x56\x4b\xda\x75\x6c\x9b\xcb\x22\xeb\xda\x7a\xef\xdc\xad\x7e\xef\xaa\xe9\x80\x60\xaa\xb7\x4e\x86\xda\x60\x78\xbe\x65\x4c\xd4\x4c\xcc\x0f\xf2\x99\x98\x53\x45\xe1\xc4\xa6\x13\x2b\x11\xc5\xd0\x89\x77\x90\x34\x60\xe5\x57\x53\x35\x45\x63\x2e\x32\x82\x00\xf0\x3e\x58\x5b\xfa\x0c\xa8\x6d\xdb\x5b\x82\x72\xa2\xc4\xda\x2d\x91\xea\x79\xf0\xac\x94\xe0\xfa\xb3\x22\x2c\xb5\x6d\x02\x22\xc0\xc6\x70\x11\xfe\x5c\x84\x25\x48\x40\xa8\x93\x19\x18\x5c\x26\x82\x66\x04\xc5\xa0\xdf\x84\x28\xd5\xeb\x31\xa1\xcc\x1b\x19\x59\x22\xa8\xba\x27\xca\x6d\x6a\x62\x50\xc7\xf9\xe8\x20\x9f\xc5\x16\xbb\x2c\xa7\x59\xb4\x25\xcb\xe9\x36\xca\x34\x5b\xdf\x8f\xdd\x12\x67\xd2\x44\x06\xbd\x91\xeb\x94\x75\x90\x48\xa3\xa6\x68\x4e\x2a\x2d\xcb\x4c\xdd\x4a\x9e\x88\x47\x72\xa4\x06\x03\x6c\x28\x4d\xb0\x67\x70\x50\x4e\xff\xa2\x97\x7e\xa9\x4f\x03\xc9\x3a\x08\x7e\xd7\x6c\xc7\x64\x2d\x97\xff\x36\x4f\x45\x6b\x4e\xe0\xdb\x17\xba\x10\xe5\x1d\x4e\x11\x92\x77\x27\x02\xf7\x70\xa6\xa4\xfd\xf8\xac\x5b\x24\x98\x3d\x50\xa5\x7e\x36\x83\xf2\x3e\xa7\x32\x94\xac\x7a\x0e\x3b\x0a\x28\x05\x79\x2b\xdf\x3f\xb7\x31\x40\x11\x7b\xd2\xb5\x37\x75\x95\xba\x21\xfa\xd4\xd8\xe5\xad\x76\xdc\x2c\xe8\x54\xa4\xcb\xf6\xf7\x8c\xf7\x01\x42\x51\x21\x12\x75\xa8\x09\x52\xd7\xfd\xbe\xe2\xb7\x9a\x1c\x2d\x83\x7f\x3a\x8f\x0a\x6b\xe7\x32\xbe\x8b\x6e\x61\x80\x2a\x35\x04\x45\x23\xe9\x33\x67\x1f\x70\xc7\x43\x43\xe7\x0c\xec\x87\x0d\xd7\xf1\x47\x77\xc2\x06\x63\xfd\xc5\x87\xa7\xf2\xdc\xbd\x53\x4a\xf7\x34\xae\x99\x1d\x12\x36\x17\x1a\xca\x31\x21\xdd\xd0\x7d\x64\x23\x33\x8c\x56\x03\x89\xa4\x4a\x5f\x6f\xe8\x4e\xd8\x5b\x96\xed\x0b\x7e\x0d\x08\x82\x7a\x07\x7a\x13\x7b\x69\xeb\x6d\x08\x2f\x3b\x8d\x61\xed\x01\xdf\xcd\x43\xa9\x45\xe4\x9d\x16\xab\x6d\x66\x4f\x27\xeb\x31\x91\xc3\x15\xbd\xec\xf4\xaf\x0c\x54\xab\x60\x4f\xa4\x0a\xc6\x0d\x10\x8d\x3b\x05\xb7\x29\xe7\x2f\x1f\xc4\x83\x0a\x6a\xa5\x2f\x95\x6f\xec\xdc\xaa\x5b\x62\xeb\x9a\x99\x54\xba\x6e\x95\x48\x4f\xbf\x9d\x64\x8d\xa4\x46\xc0\x22\x7a\x16\x97\x7b\x37\x09\xdd\x97\xdf\xda\x43\x23\x52\x0a\xd4\x92\xa0\x9d\x9a\xf7\x08\x81\xb0\x0d\x22\xdd\xa6\xe5\x54\x19\x7e\x84\xc4\x4e\x9f\x33\x42\x4e\x89\x54\xc5\x39\xad\xcf\xdd\xe2\x4d\xcc\x75\x11\x6f\xb4\x3e\xa8\x24\xf8\x66\xf9\x1c\x28\xbf\x57\x22\x2c\xb4\x9e\x27\x84\x39\xf7\x60\xcc\xa9\x7b\x6a\x46\x1a\xe8\x8e\x1e\xd8\xfb\x16\x85\x8e\xd6\xe2\x8a\xfd\xff\xaf\x0f\x88\xbe\x6b\xe4\xcb\xb0\xc7\x5d\x9b\x9d\xe1\x0a\xb0\x5d\xa8\xae\x4a\x2d\xfb\x55\x80\xa1\x9a\x2a\x59\xa9\x5e\x53\xb2\x3f\xa2\xed\x50\x2d\xa6\x42\xeb\xe8\x0a\xa7\xa3\x0b\x7d\xe9\x7b\x0f\x34\x7a\xbd\xa1\x7e\x0b\x82\xb8\x67\xe5\xd4\xa6\x46\x8d\xca\x64\x88\xb1\x52\xdd\x6c\x5a\x5d\xaf\xe7\x9e\x32\x82\xf0\x89\x8e\xdf\xe5\x61\x68\x59\x0c\x76\x7d\xf8\x57\xa5\x15\x0e\xbe\x11\xc1\x6e\xae\x91\x8f\x08\x02\xde\x52\xe7\x17\x56\xb0\x2f\xce\xf8\x65\xfe\x57\xad\x9a\x2e\xd7\xca\xb7\xea\x06\xc2\xa8\x93\xb7\x0c\xc6\x1a\xed\x1b\xad\xca\x0e\x8a\x02\x46\xad\x7d\x36\xc7\xae\xbf\xcd\x8d\xc6\xe3\x6a\xaa\xfd\xc3\x73\x1c\x15\x86\x13\x6e\xcf\x0c\x85\x3b\x33\x78\xba\xef\x2e\x33\xc6\x64\x44\xb8\xb9\x0b\xa1\x15\x11\xca\x3f\x83\x13\x9c\xc8\xa9\xb2\xdd\xc0\x1c\xc3\xf5\x00\xac\xd9\x1a\x6e\x7d\xff\x2f\x39\xc8\x23\xe6\x60\xb0\x41\x8b\x77\x9a\x4b\x0e\x30\x08\xbb\x47\x23\xdd\x1b\x19\xc2\x1b\xcb\x21\x52\x87\x05\xb7\x46\xf4\x58\xb5\x2f\x6e\x8d\x2d\x5c\x62\xec\x1b\xef\x32\x2d\xb5\x85\xef\xfc\x13\xfc\x22\x52\x90\x02\xec\x9f\xdc\x6c\xe4\xc9\x1f\xf6\x44\xa4\x8e\xdb\x4f\xb4\x0c\x62\xb4\xcf\x94\xda\xad\x6f\xb8\x3a\xaa\xac\xc4\x61\x05\xd6\x14\xde\xdd\x6c\xd8\xd4\x0c\x59\x54\x61\xe2\x4c\x1f\x46\xc0\x38\x72\xdf\xa4\x6d\xf6\x2d\xea\x8d\x89\xb2\x67\xae\x12\xaa\x77\xb2\x63\x01\x5b\xc5\xee\x04\x37\x07\x9d\x46\x33\xea\x35\x5b\xce\x59\x27\x5a\x89\x1b\x62\x0d\xcb\x3e\xde\xe7\xd4\x0a\x4e\x36\x86\x6f\x14\xfa\x25\xe1\xfd\xe6\x3f\x3d\xf3\x21\xed\xf3\x8f\x77\x99\x21\xcf\x3a\x13\x3b\x7b\x95\x1c\x1f\xd7\x82\x9b\x4c\x29\x32\xef\x58\x7e\x79\x64\x62\x2a\x3d\xc7\x8d\x95\x17\x75\xe7\x22\x13\x69\x33\x37\xde\x61\xc8\xb6\x6d\x67\x5e\xb4\xfa\xc4\x67\x47\x1e\x78\xd4\x3e\x6b\x59\x21\xb2\xec\x6d\xed\x39\x41\x6b\xb9\xf8\x76\x9e\xed\xfd\xcb\x97\x9b\xc6\x2a\xcd\x81\x41\x9b\xc6\x52\x82\x61\x5b\x90\x36\xe5\x54\x83\xa0\x1c\x50\x3e\x82\x60\x85\xcf\x28\xdd\x6a\x29\x4c\x10\x07\x93\x89\x8c\x7f\x42\x1b\x41\xad\x3d\x6d\x15\xf4\x88\x56\xc3\x64\x55\xd7\x45\x10\xf4\x0a\x67\x21\xab\xae\xf5\xc9\x7e\xdb\xed\x52\x9b\xa4\xe9\xf7\x79\x83\x49\x0e\x64\xca\xe3\x2c\xeb\xf4\xa9\xb9\x1a\x9c\xcd\x77\xfb\x6a\x1f\x4a\xfb\x23\x53\x46\xdb\x4e\x34\x27\x65\xf0\xf0\x28\x81\x85\x10\x03\x1e\x26\xac\x21\x1b\x51\xbe\x28\x84\x3a\xbe\xec\xce\xe4\x16\xb7\x9c\xe4\x74\xdf\x79\xda\x6c\x39\x77\x37\xc2\x4a\x1d\x70\x9f\x83\xde\x07\xab\x86\xe2\x91\x35\xd7\x50\x51\x46\x7a\xa3\x03\x36\xa0\x82\xf4\xfb\x45\xe3\xb0\x0d\xf0\xe1\x2b\xac\x7d\x67\x7d\x94\x00\x77\x99\x9f\x6a\xe1\x75\xd6\x5a\xb2\x3a\x30\xee\x02\xb4\x2d\x21\x68\x08\x08\x43\xae\xce\x47\xce\x9a\xcd\x95\xf3\x3e\xf4\xa5\xad\xf3\xfa\x45\xcf\xec\xd6\x59\xa7\xaf\xa5\xc5\x4d\x63\x65\x73\xaa\x86\x24\x62\xb3\x8f\xa2\xd4\xd7\x7c\x5f\x7a\x47\xd2\xbd\x23\xdb\xc9\xa0\x1b\xe1\x78\xee\xfb\x6f\xfb\xde\x89\x0d\xa9\xfc\x9b\xbf\xaa\x7d\x13\x28\x23\x59\xe6\x58\x0d\x95\x77\xed\x06\xe7\x85\x16\xe5\xfc\x8c\x6d\xaa\x15\xdd\x21\xa8\x21\x18\x4a\x32\x24\x75\x68\xee\x07\x9c\x01\x75\xe8\x1c\xe5\xd5\xe1\x99\x48\xda\x1b\x56\x5d\x87\xa0\x3a\x78\xe0\x51\xdf\xaa\xad\xfb\xef\x72\x0e\x8c\x98\xa8\x99\xfa\xb0\x8c\x15\x33\x90\x79\x22\xcc\x3d\xb0\xaf\x01\x1e\x53\xc5\xb9\xba\x52\x95\xaf\x06\x99\x75\xc7\x84\x14\xa0\x00\x26\x52\x73\x1c\xf1\xfb\x7f\x7f\xb7\x33\xbd\x0b\xc9\x76\x82\x02\x9f\x39\x34\xf8\x9d\x84\x89\x15\x30\xfa\xc0\x52\x49\xb1\xb8\x2f\x5f\xab\x31\x15\x49\x94\x13\x57\x60\xe4\x97\x2e\xf1\x8c\xcd\x03\x49\x01\x68\xe3\x1d\x23\xea\x8d\xee\xcc\x39\xbf\xd3\x12\x40\xcb\x28\x66\x61\x50\x6e\x4e\x2b\x23\x5f\x64\x4d\x49\x3a\x7b\xea\xda\x94\x24\x98\xf5\x70\x61\x95\xe2\xd9\x6c\x18\xb8\xe3\x30\xbc\x1e\xf0\x03\x22\x48\x0c\xba\x8e\x70\x07\xe1\xde\x80\xae\xc0\x07\xb9\xb5\xfe\x05\x9d\x50\x62\xe2\x84\xec\x9a\xa6\x09\x73\x72\xad\x8d\xfc\x00\xa2\xdd\xe6\xb2\x0f\xba\x33\x48\xe2\x00\xff\x7e\xfd\x2d\xdc\xeb\x28\xbf\x4d\xc4\xeb\x6d\xbc\x47\x8a\xa7\xeb\x80\xa4\x6a\xb9\x89\xf9\xc0\xd2\x59\x35\x07\x1b\x5e\xd4\x93\x80\x94\x39\x8c\x09\x5a\x02\x02\x95\x16\x30\x05\x2c\x79\x9e\x87\x16\x70\x2d\x7d\xae\x5c\xda\x9a\x19\xd2\x9e\x22\x7a\x13\x98\x29\xe3\xb3\x3b\x9e\x57\x0a\xa3\xb2\xc3\x53\xac\x6e\x19\xd9\xfe\x8b\xf6\xb6\xa7\x03\xba\xef\x70\xac\xa6\x79\xfb\x44\xbc\x93\x50\x05\x03\x87\x1c\xae\xbd\x7f\x30\x2b\xb7\x8d\x94\x17\xed\x0b\xbb\x1f\x45\x7a\xe7\x1d\x97\x5c\x4c\x8a\x27\x94\xf2\xca\xbf\xaf\x6a\x27\x4b\xd6\x0d\x71\xbc\xc9\x3b\xd9\x08\x7a\x21\x4e\xb5\x62\x6b\xd8\x5a\x9d\xd1\xb7\xc2\xde\xe2\x59\x4c\xff\x29\xb1\xcc\xb7\x6c\xa3\xf4\x1e\x9b\x06\x13\x5f\x24\x60\xc8\x8c\x1b\xa1\x56\xa8\xec\x11\xe5\xa9\x8f\x53\x24\x3f\x0e\x15\xd5\x7a\xa8\x08\xf3\x43\xb9\x09\x1c\xda\xa6\x1e\x7a\x62\x04\xc8\xf3\x20\x6f\xe5\xb9\x2e\xf9\x21\xcf\x0f\xfd\x1a\x70\xab\xba\x8e\xa1\xb9\x4b\x8e\x83\xe0\x46\x84\x37\x9c\x5c\x72\x7c\x3e\x0a\x82\xf0\xad\x4b\x3d\xbb\xe4\xf3\x7d\x3e\x16\x77\x9b\xcf\xb4\x70\x27\x74\x03\xb8\x9a\x2b\x2e\x41\x6b\xab\xc4\x4d\x13\xfa\x10\xc8\x32\x31\xf6\x1c\x13\x59\x3d\xaa\xd0\x19\xd3\x08\x41\xbb\x4d\x19\x9e\xeb\xae\x37\xc5\x0e\xce\x77\x16\x9b\xb5\x6e\x62\xa2\x66\x31\x9c\xa0\x01\x9e\x1e\xe5\x86\x06\x14\x41\x50\x7a\x28\xed\x40\xd2\x6a\x5b\x89\x49\x55\x4a\xb2\xc5\x84\xe9\xd7\x9c\x6c\xc1\xc9\x01\x36\xa6\xf1\x5a\xc6\x5d\xdf\x73\xcf\x1b\x40\xb2\xde\x75\x42\xf3\x6e\xc5\xcb\x43\xa3\xbe\x76\xc8\xcb\xc3\x38\x2b\x58\x9c\xde\xc8\x11\xda\x96\x6c\x88\xf0\x01\xe0\x15\x5a\x81\x26\x07\x65\xe4\x69\xc8\x30\x79\x2c\x1f\xfb\x1d\xef\xd5\xf5\xab\x76\xe4\x1a\xac\x00\xfa\xbb\xcb\xf7\x55\xcb\x08\xd8\x35\xf7\xdc\x82\x0f\xa8\x66\xad\xe3\xf3\x51\x5d\x57\x92\xe0\x07\x12\x61\x0f\xe4\xac\x60\x12\xe2\x5c\x1c\xca\xfa\x0f\x51\x3f\xac\xfa\x26\x73\x1f\x81\x7b\xff\x15\xb3\x8d\x1b\x7a\x33\xb0\xa0\x6c\xd2\x53\x5e\x42\xca\x49\x8b\xee\x6c\x1d\x50\x3e\x27\x6a\x55\x9d\x0b\x7c\x5b\x50\xae\x11\x5e\x35\xa0\xc2\x1a\x85\xd6\xf2\xb5\xd5\xdc\xf3\xb0\xd1\x51\xc7\x53\xd7\x1e\x6d\xd3\xac\x9f\x71\x21\xc3\xac\xc1\x7e\x20\xc6\x0e\x38\xb5\x2e\x87\x42\x41\x85\x67\xf7\x2c\x59\x81\xa5\x16\x4b\xfc\x7b\xd1\x95\x8a\xd4\xf4\xbe\xc0\xc4\xd0\xf5\x16\xd2\x8f\x3b\x90\x76\x01\x6c\x99\xfc\x71\x0e\x3e\x94\x92\x4e\xbb\xb0\xb7\x2d\x73\x1f\xd5\x80\x79\x82\xb9\x3e\xd1\xcf\x26\xf9\x24\xa7\x46\x18\x0f\xe7\x4e\x12\xd4\x73\x9a\xc1\x3d\x5b\x8f\xd4\x0a\xe4\xed\x35\x5c\xee\xe4\xf5\x48\xa1\x5c\xb4\x59\x97\x67\x39\x35\x32\x7d\x93\x7c\x52\xd1\x9c\x78\xf5\xfa\xd6\x3d\x72\x37\x03\xf8\xbc\x47\x2b\x30\x3f\x58\xf4\x69\x2b\xbc\x35\x2b\xcc\xf0\xf7\x2b\x2d\x0c\x61\x41\x7f\xcc\xdb\x66\xaf\x21\xfa\x80\x45\xa9\xe8\x08\x01\xee\x88\x15\xb6\xe4\xfb\x77\xe6\xa4\xeb\x4c\x98\x8e\x8c\xf2\x03\x67\xbe\x1c\xe6\xa4\x12\xff\xf7\xa0\x74\x96\xcb\x95\x20\x63\x4f\x1b\xe1\xc6\xad\x3b\x83\x8e\x4b\xc5\xdc\x9c\x6a\x75\x8c\x27\x80\x05\x75\xc7\x5a\x6c\xb0\x1a\xd0\xd8\x56\xd0\xf7\xe6\xc1\x87\x8e\x9e\xf4\x88\x14\xf2\x7c\x03\x22\x28\xd8\x8c\x94\x3d\xfb\xed\xad\x9c\xd3\xc2\x56\xae\xee\xcc\x28\x33\xd5\x3a\x15\x07\xeb\x49\x55\x50\x73\x8a\x9d\x88\x89\xa0\x61\x41\x05\xf6\x87\x59\x55\x26\xee\xee\x6f\x79\x84\xf7\xfa\x1b\x8e\xf0\x94\x16\xae\xca\xd8\x54\x69\xb9\x0d\xb6\xb9\xef\xb8\x6f\x0b\x1e\xf4\xba\xda\xf2\x28\x86\x80\x57\x2a\x5f\x49\x6c\x56\x8f\x3c\x3a\xd8\x52\x9e\x3a\x7d\x10\x20\x5c\x8c\xf7\x5b\x4d\xc7\xf8\x9f\xea\xb8\x32\x3e\x1a\x39\x2f\xcf\x3f\x8a\xf4\x1d\x5f\x33\xe7\xd8\xfd\x2d\xcb\x20\xc0\x4b\x63\xee\x3e\xdc\x55\x88\x73\xd1\xec\xdd\x83\xb4\xd2\xb8\xab\x11\xa2\x8f\x3e\xed\x5b\x9b\xd6\x7d\x01\x65\x75\xed\x59\x6d\xfe\xb1\xb5\x0e\xd4\xd5\xed\xda\xf8\x7e\x81\xcb\xdb\x9f\x8b\xb0\xd2\x77\xb7\xcf\x9d\x5b\x1a\xe5\x16\xc6\xb2\xb5\x9e\x71\x60\xbc\x7a\x2e\x6b\x9c\x37\x9a\xfe\x18\x93\x1d\x9a\xf2\x33\x19\x14\x99\xe9\xa1\x9a\x9f\xed\x74\x9d\x30\x27\xd1\xcd\x97\x61\x6f\x2d\xc9\x2d\x7d\x69\x66\x64\x65\x87\x1b\xb1\x09\x7d\xab\x00\x6f\xf6\x18\x8d\xd2\xd4\xe6\x01\x6f\xdf\xc7\x51\x75\x5e\x17\x24\xa6\x7d\xb9\xc1\x3d\x8b\x2b\xd0\x7d\x0b\xb9\x19\x20\x9a\xd7\x35\xf7\x47\x83\x56\x43\x75\x81\x1d\x04\xee\x2d\x44\x7d\xe4\x62\x8c\x0b\xf6\x91\xf2\xef\xb5\x06\xb1\x76\x37\x27\x1e\xc5\x83\x96\x06\xa5\x86\x0d\x98\x87\xcf\x58\x16\xdf\xd4\x35\xfa\x66\x6f\x71\x60\x1e\x46\xdc\x61\x75\x78\x1a\xfe\x6c\x6e\x85\x30\x59\x0b\xf3\x8a\xa3\xd6\xad\x65\x10\xf4\x5c\x9c\xee\xc9\xa9\x0b\x69\x27\x7e\x34\x06\xd7\x86\x70\x59\xd9\x8a\x18\x1c\x9b\xab\xcb\xa9\xb9\x88\x82\x51\x68\xd5\xab\x6d\x59\x86\x9c\x78\xbd\xe9\x34\x29\xd6\x22\x14\xfa\x92\xb1\xc4\x07\xbb\x6e\x88\x40\x17\xd5\x85\x95\x32\x6c\x0a\x0e\xa2\x60\x96\x46\x36\xb3\xda\x00\xf5\xe4\xf6\x24\xce\xb7\xb2\x0a\xae\xa0\x01\xf4\xba\x0d\x82\xad\xbd\x71\xfd\x4d\x76\x56\xc9\x32\xa2\x53\x10\x41\x6f\x75\x81\xd1\x4c\x17\x36\x27\x6e\x79\x45\xbc\x7d\xfb\xa8\x5b\xad\xf6\xf1\x09\x6f\x75\x1b\x77\x58\x61\x82\x75\x54\xb9\xe2\xcb\x2a\xc4\x3a\xe3\x6c\xe4\xee\x7e\xdb\x09\x1a\xbf\x64\x50\x8d\xf0\x96\x78\xbf\xcf\xdb\x2b\x9c\xb4\x66\x16\xe5\x2d\x54\x13\xbb\x8e\xe7\x3e\x92\x21\xad\x09\xcd\x3b\xb8\xc5\x4c\x3b\x52\xd6\xb5\xb2\x2d\xa4\x27\xa8\xf2\xd0\xe6\x51\x8f\xbf\xb5\xf0\xc9\x5a\x80\xef\x86\x20\x28\x74\xcb\xe4\x1b\xfb\x7d\x1b\x67\x65\xc8\xc0\x51\xa3\xf1\x44\x66\x0b\x78\xb6\xb3\x52\xbb\xde\x51\xc0\x42\x82\xa6\x7c\xec\xad\x89\x91\x00\x29\x30\xf1\x24\xb2\x14\xeb\x46\xd1\xac\x24\xf7\x9c\xaf\x15\xf2\x54\xeb\xb1\x3c\x83\x20\xd4\x26\x25\xba\xb5\xd1\xdb\x06\xe3\x99\x98\xd3\x56\x7a\x49\xa5\x09\xdf\x5f\xdb\x2b\x43\x0a\xf5\xd8\x7e\xf2\x87\xdc\xe5\x69\x4e\xf3\x77\x77\xcc\x95\x4f\x2b\x79\xc4\xf0\xad\xe7\x62\xac\x6e\x17\xb4\xc7\xb1\xc2\x79\x1c\xab\xa6\x86\x91\x32\xad\x40\x6b\x3a\xf2\xac\xd8\xbe\xe4\x7b\xd4\x1b\x76\x84\xe1\xec\x2e\x2b\xec\x4d\xa2\x30\x58\x55\x1b\x90\x2c\xa6\x6f\x58\xcb\xcd\x2d\xdb\x3c\x15\x9b\x1b\xa5\x23\x20\x70\x24\xb0\xbb\x5b\x54\x7b\xb5\x12\xba\x02\x0d\x29\x5d\x86\x5d\x4f\x65\xd3\x75\xc7\x1a\xfb\x7e\x58\x95\xe9\x28\x92\xd0\x78\xb6\xd5\x87\x32\x95\x1f\x76\xa8\x44\xe3\x04\x11\x25\xc3\x4a\xa8\xcd\x49\x29\xb0\x36\x98\x38\xa2\x71\x29\x4f\x1d\x09\x0e\x33\xba\x34\xe6\x8b\xff\xa1\x06\x37\xbc\x48\xfb\xf8\xab\x23\xac\xce\xb2\x15\x51\x82\xbe\x61\x36\x1b\xcf\x31\x7e\x34\x18\x07\x41\xb8\x16\x61\x89\x67\xcb\x39\x4d\x66\xcb\x39\x51\x6a\x8c\x87\xf2\x5d\x9e\xef\xac\x63\x1d\xdb\xcb\x3f\x78\xf3\xb6\xd0\xf4\xda\x54\xfd\xf5\x69\x1e\x55\xe7\xe6\xd6\x40\x33\x8c\x41\x57\x3d\x59\x51\xff\x7c\xf8\x82\xdf\x65\xd8\xf7\x13\x5e\xc2\x94\xba\x88\x1d\xab\x5b\x31\x4c\xc4\x86\x03\xab\x2f\x54\x89\xa8\xb0\x63\x15\x62\xac\xa3\x69\x6f\xe4\x06\x40\xdd\x7f\x88\x8e\x90\x57\xd9\xef\xe3\x1f\xb8\x2d\x7a\x56\x1a\xa9\x48\x0d\x23\xe9\x44\x82\xf8\x93\x36\x64\x0d\x13\x41\x16\x6f\x8a\x36\x88\x79\xd7\xfb\x88\x8d\xd3\x5e\x48\x8a\xf3\xad\xe7\xf9\x4e\xbd\xd3\x94\x85\x5e\x68\x3f\x27\x5b\x63\x9f\x00\x93\xad\xdc\x00\x20\x81\x21\x20\x72\x08\x93\x91\x56\xdd\xbc\x3a\xa7\x36\x1e\xdf\xc6\xb4\x37\x36\x8c\xb1\xb8\xae\x43\xeb\xd3\x69\xa4\xfc\xbb\x73\x39\x2e\x1e\xfd\xf0\xaf\xf6\xa9\xc9\xa3\x5a\x72\x6a\xe9\x16\x38\x3f\xfa\x8e\xb2\xc2\x7c\x50\xe0\xc1\xf8\xe0\x85\xd9\x84\xb5\xe3\x16\xf2\xc2\x89\x61\xe8\xa0\x26\x17\xe1\x95\xb6\x94\xf4\x1d\xa7\x6f\x87\xec\xfd\xa6\x60\x6a\xfb\x5f\xc6\xdb\xac\xa2\x1d\xf5\xd8\x56\xe4\xb4\x1b\x10\xca\x5d\x5b\x4d\x52\xd0\x12\xa0\xbd\x71\x43\x9e\xa8\x72\xcb\x4a\x6c\xde\x14\x62\x13\x5f\xaa\x0d\xa4\x5d\x70\x27\x76\xba\x13\x02\x45\x27\x71\x9e\xb0\xec\xc9\x76\xb1\xc8\xe0\xbe\xd8\x71\x67\x7e\xf1\xed\x38\x18\x3e\x78\xaa\xa0\x7a\xa3\x60\x64\xe9\x74\x37\x28\x1a\x51\xda\x02\x19\x24\x01\xff\xea\x40\x6e\xc1\xf9\x9d\xac\x85\x3c\x01\x21\x7c\xcf\xa1\x01\x6f\xb9\x3d\xaa\xe2\xe2\x92\xc1\x75\x4c\x59\x24\xda\x0a\x90\xe7\xa8\xa0\x75\x22\xb8\x5e\xf1\x64\xb5\x7b\x22\x18\x07\x6c\xb8\xd8\x56\x95\xc8\xa7\x15\x1d\x47\xc7\xfe\xe7\x49\x74\xcf\x7e\xc2\xe1\xe1\x18\x63\x72\x05\xe4\x5d\x55\x64\x7f\x66\x37\x41\x30\x36\xe7\x8a\x13\x79\x8c\x90\x75\xfd\x2a\x1b\xd4\xea\x74\x4f\x68\x39\x4e\x53\xa0\xf8\x7e\xe0\x65\x25\xb7\x73\xbc\x1b\x04\x67\xfd\x9e\xe7\xa7\xd5\x38\x57\x87\x54\xb8\xf5\x15\x22\x91\xa3\x3e\x58\xf7\xf6\x54\xee\xd8\xf0\xbd\xba\x9e\x06\xd7\xe0\xde\x97\xdc\xe9\x26\x61\x3e\xab\xe6\x75\x0d\x7f\xde\xf5\x00\xb0\x62\xbf\x95\x7b\x86\xeb\xed\x3f\xef\xd8\x33\xb2\x45\xc9\x4e\xb0\x1f\xb3\xca\xf2\x2b\x8a\x29\x38\x11\xd7\x24\xd1\x68\x6a\x0c\x4b\xe1\xe8\x5b\x1e\xe5\x75\xfd\x2d\x87\x4e\xfa\x0a\x3a\x69\xb9\xdc\xdf\x4b\x8a\xcd\xd9\xed\xa8\x3d\xa1\x7b\xfa\x4a\xf9\xf2\x32\x7d\xe5\x7d\x75\xfa\xea\xd0\x6d\x95\xba\x99\x3d\x85\x15\x26\xdc\x37\x94\x04\x4e\x6b\x40\x1c\x97\x16\xf8\xd6\x6a\x3a\x72\x32\xb6\x6c\x77\xf2\x93\x6c\x4c\xc9\x2f\xf3\x38\xdb\xeb\xfc\xcd\x94\xaf\xdc\x17\x9a\x7b\x56\x8f\x13\xf3\xb8\x28\xe2\x1b\x6f\xdf\x85\x2e\x53\x9b\xae\xe5\x99\x92\x63\xbc\xcf\xa5\x4e\x31\xe3\x73\xcd\x67\x55\xa6\xbc\x70\x43\xfe\xc6\xb5\xc5\x04\x33\x8e\x7f\xe7\xfb\xc0\x19\xb7\xc1\x51\x63\x4c\xf8\x97\x42\x73\xf0\xaf\x6a\x9a\xd3\x7f\x55\xc3\x54\x9e\x5e\x58\xfa\x34\xce\xb2\x45\x9c\x7c\x28\xa3\xbf\xf1\x69\x4e\xff\xc6\xa3\x50\x3e\xe5\x91\xb9\x64\x95\x24\x4d\xc5\xb6\x0a\xbf\xe7\x64\xe4\xe9\xdb\x2b\xd9\xe3\xc2\xf7\x65\xa3\x59\x5b\x71\x58\xcc\xc4\x1c\xb7\xad\xa8\xec\xe3\x36\x33\xbf\xf9\xbc\x85\xd3\xbf\xe7\xf6\x92\xfc\x6f\xfc\xc0\x76\xcb\xdd\xee\x03\xd9\xac\x9a\xfb\xb6\xd8\x99\x68\x4b\xb4\xec\xa8\x0a\xaa\xb5\x7f\x0b\xe6\xea\x2b\xd2\xc6\xd0\x3b\x02\x97\x5d\x84\x28\xd1\x6a\x83\x09\x90\xdb\x85\x24\x95\x41\x2b\x10\x3c\x42\xfd\xc2\xc3\x0a\xa8\xe7\x44\xa4\x6c\x0d\x66\x76\x5f\x82\x67\x75\xcf\x4a\xb2\xf0\xb1\xdb\xfe\x85\x39\x4c\x40\x71\xe5\x71\x52\xf1\x2b\x5e\xdd\x28\xaf\x78\x1e\x53\x56\x8b\x06\xb5\x53\x7d\xe7\xe3\x8e\x4f\x25\x90\xd8\x63\x9f\xba\xa0\x76\x1d\x5c\x80\x98\x3c\x96\x07\x02\x18\x51\xf8\x72\xf0\x17\xa2\x75\x92\x55\xb3\x12\x5b\xcc\xe1\x12\xe6\xc2\x6c\x88\x66\x46\x76\xb0\x2b\xbe\xfd\x95\x5b\x09\x26\xdc\x90\x56\xd2\x0e\x8e\xc1\xb7\x5f\xf9\x69\x01\x19\x71\x41\x4f\x46\x44\x08\xfa\x76\xf8\x26\x2e\x4b\x7a\x5b\x89\xb7\xda\x25\x41\xf7\x52\xc3\x33\x7b\x0c\x69\x51\xd3\x90\x58\xd0\x5b\x75\xe5\x1d\xc9\x3d\xb8\x14\xf4\xd6\xa8\xf0\x7d\xb3\x16\xdb\x92\xa1\x86\x6c\xbd\xc0\xbe\x44\x63\xc8\xdb\xd4\x32\x61\x66\x08\x4f\x95\xe9\x8f\x4c\xf8\xeb\xaf\xe3\x31\x08\xdf\x82\xe0\x92\x59\x51\x3a\xa3\x53\x82\xf5\x56\x5b\x45\x98\xb6\x4a\x9d\xc8\xd6\x25\x62\x9b\x57\x4f\x45\xb6\x5d\x77\xb7\x27\xe5\x6d\xce\xee\x8a\x72\x04\xd5\xc9\x84\xc5\x85\x24\xaa\x67\xff\xb8\x28\x2f\xb6\xa3\x51\x3c\x9a\x03\x49\x0d\x91\xc6\xde\x8f\x5b\xcc\x60\x6c\x3b\xa6\xbc\xae\x47\xc6\xb1\x48\x49\x99\x92\x18\x7c\xbd\x0c\xd1\x45\x85\xb4\xf4\x7d\x79\x3e\xaa\xeb\xf2\x91\x73\xd5\x1c\xf7\xc3\x6a\x20\xf0\x41\xdc\xa7\xe5\x40\x90\xb8\x4f\x8b\x41\xfc\x75\x41\x04\x2d\xfb\xe3\xa6\x21\x4b\xd9\x80\x25\xcf\xd3\xbd\xf0\x77\x4f\x3e\xb6\x7a\xd1\xad\x3e\xc7\xe0\xda\x5a\x00\x4f\x85\xb5\x5c\x92\xc4\x54\x0c\x94\x4c\x09\xa5\xce\x8b\x3b\xef\xc7\x1e\x98\x79\xdf\x1e\x3e\x63\x52\x0d\x94\x8f\x3b\xde\x97\x39\x49\x4e\x45\x7f\x4c\xe4\x57\x31\xe0\x5f\x17\xf8\x51\xcb\x11\x35\x59\x09\x3a\x43\xc8\xdb\x5e\x37\xc2\x72\xbc\x56\xc2\x2a\xfd\xb3\x09\x5e\x69\x83\x50\x6b\x11\xae\x04\xee\xc3\x65\x9e\x2e\x68\x25\x66\xcc\xbb\xe2\x00\xd6\x98\xa5\x87\x66\x4e\x43\x69\x0e\x33\xfb\x4a\x74\x69\x3f\x10\xc4\x0f\x7d\x92\xea\x46\xec\xbb\xb6\x6f\x9d\x62\x41\xfc\xb6\x98\x7b\x8e\xb5\x0d\x6b\x75\xe0\x31\x1a\x2f\x77\x0a\x9a\xcd\xbb\x96\x73\xf2\x7e\x1f\x17\xb3\x7c\x4e\x95\xf0\x2e\xc9\xf7\x39\x50\x5c\xc8\xf5\xe0\xdd\xa9\x09\x6f\xf7\xb2\xce\xe9\x16\xbf\xb1\xc4\xd8\x7f\x9c\x16\xb4\xf5\x1d\x32\x1c\x85\x0b\x6f\x0d\x51\x46\x0a\xb8\xc8\x5e\x08\xd0\x7d\xbb\x16\xe0\x12\xc5\x67\x3f\x5e\x8b\x9d\x99\x04\x37\x5a\x70\x44\xbf\x6d\x30\x61\xb8\xb7\x73\x55\x9a\x63\xad\xaa\x58\x28\x99\xc0\x9d\x48\x40\x7a\xb4\xe5\x3b\xdc\x23\x50\x9f\x7b\x28\xfc\x8b\x76\xdd\xb1\x2d\xe5\xee\xeb\x56\xc5\x25\xc6\x4d\xb3\x99\xde\x31\xfc\x5c\xe4\xa0\xc2\x4a\x47\xc4\x0b\x7a\x9e\xa7\x94\x0d\xaf\x24\x61\x6e\xac\x08\x45\x60\x7b\xb1\x5d\x48\x55\xdc\xf8\xf3\x28\x81\x43\x77\x85\x6f\x1b\x2d\x5f\xf3\x51\xd0\xa3\x99\x44\x15\xe9\xf2\x62\x3b\xba\xff\xf0\x54\x3e\xcf\x46\x03\xf9\xb7\xbc\x77\xb1\x1d\x3d\x18\xc1\xc7\x83\xe5\xf2\x62\x7b\x32\xba\x27\x3f\x4e\x46\x67\xf0\x11\xab\x0f\x88\xb9\x07\xc9\xee\xa5\x8b\xfb\x17\xdb\x7b\x0c\x3e\xce\x96\x49\x72\xb1\x8d\x13\xf8\x48\x4f\xe3\xe5\xfc\x88\xbc\x95\x68\x81\x97\x7f\x15\x45\xfa\x74\xe5\xbb\xc6\xb2\xcb\xe2\xe8\xe2\xda\x1a\xda\xaf\x6b\xf6\x08\xfd\x8f\xff\x8a\xe0\x8c\x5e\x89\x5f\x36\x1b\x56\x3c\x8d\x4b\x16\x62\x25\xcb\xf3\x83\xb8\x36\x01\x75\xfd\x51\x58\xfb\xfc\xde\x72\x79\x2d\x3a\x0c\xd8\x5e\x2f\xac\x86\xa5\xd8\x16\x89\x8f\x69\x2e\xae\x91\xe2\x32\xbc\x95\x63\x0c\x5b\xb9\x2e\x2c\x82\x10\xef\x9e\x4a\xb4\xae\x69\xe4\xa4\x03\xb3\x41\x3b\x93\xad\xc2\x41\x20\x09\x14\x27\xbe\x6d\x65\x78\x65\xce\x0f\x82\xbc\xd3\x7d\x7f\xa2\xba\xf8\xe4\x81\x1c\x82\x7b\x0f\x4f\x06\xf0\x77\x06\x23\x31\x86\x91\x58\xa4\xf0\x84\x21\x4a\xc6\xf0\x3c\x86\xe7\x3d\x78\xde\x87\xa7\x1c\xba\x07\x63\x35\x5a\xe3\x58\x3e\xef\x2d\xe0\xe3\x3e\x93\xcf\xd3\x91\x7c\xa6\x0f\x20\x28\x4d\xe0\xc9\xe0\x83\xc1\x38\x33\xc8\xcf\x1e\xc2\x33\x56\x11\xb2\xda\xd3\xb1\xac\xf0\xf4\x04\x0a\x3e\xbd\x27\x0b\x3e\x8d\xa1\x94\xd3\x85\x2c\xf2\x94\x41\x2d\xa7\xcb\x93\x8b\xed\xe8\xe1\x18\x62\x1e\x8e\xcf\xe0\x09\x31\x0f\x8f\x21\xe6\xf8\xbe\xfa\x38\x85\xe7\x99\xfa\x90\x15\x9c\xa9\xe6\x9f\x8d\x64\x93\xce\x4e\x24\x64\x67\xf7\xa0\xdd\x67\xf7\x1e\xc2\x13\x52\xdd\x57\x41\xf7\x65\x63\xcf\x1e\x40\xda\x07\xb2\xe0\xb3\x87\x12\xbe\xb3\x05\xe4\x5b\xc8\xa6\x9e\x25\x2a\x29\xf4\xce\x59\x02\xb9\x53\x59\xed\x19\x83\x6c\x4c\x66\x8b\x47\x63\x78\xca\x90\x18\x2a\x8d\xef\x41\xc8\x3d\x08\xb9\x77\x0a\xcf\x87\xf0\x84\x66\xc4\x00\x46\x7c\x1f\x12\x41\x67\xc6\xa7\xea\x5d\x42\x14\x03\x14\xf1\x43\xc8\x0c\xb0\xc4\x0a\x8a\x18\x46\x27\x86\xd1\x89\x13\x28\x0f\x20\x8a\x01\x96\x18\x60\x59\x00\x2c\x0b\x80\x62\x71\xc2\xe0\x29\xc7\x7a\xa1\xba\x61\x71\xef\x1e\x3c\x65\xb6\xc5\xfd\x07\xf0\x94\xc5\x2d\xa0\x17\x16\xd0\x0b\x0b\xa8\x79\x01\xed\x5f\x24\x23\x78\x42\x7a\x68\x78\x72\x02\x23\x9d\xdc\x1b\xc1\xf3\x81\xfa\x78\x08\xcf\x58\x7d\xc8\xc4\x09\x74\x6e\x02\x55\x24\x50\x78\x02\x85\x27\xd0\xa0\x04\xe6\x5f\x02\x33\x2f\x49\x20\x4d\x02\xe1\x50\x51\x92\x42\xde\x14\xc2\xa1\x6d\x09\xb4\x2d\x85\xf6\xa4\xaa\x25\x29\xb4\x24\x85\xca\x52\x68\x43\x0a\xd5\xa4\x50\x4d\x9a\xc4\xf0\x94\xd5\xa4\xe9\x31\x64\x48\x21\x03\x94\x9a\x02\x8a\x62\x27\x63\x78\xde\x1b\xc0\x9f\xcc\xc1\xee\x9d\xc2\xc7\x3d\x59\x13\x5b\x40\xfc\x42\xc5\x2f\xce\xe0\xb9\x80\xa7\x04\x96\x25\x0f\x21\x02\x60\x5e\x8e\x1f\xc2\x53\x26\x5a\x9e\xdc\x87\xe7\x29\x3c\x21\xe4\x14\x60\x5e\x9e\xca\x62\x97\x0f\x61\x92\x2e\x1f\xde\x83\xe7\x03\x78\x42\x5a\x85\x2c\x97\x67\xea\x03\xe6\xf5\x12\xaa\x5a\xca\x3e\x1a\x8f\x8e\xd3\x81\xfc\x3b\x19\xc1\xf3\x58\x7d\x9c\xc2\xf3\x0c\x9e\x31\x3c\x53\x78\x32\xf9\xbc\xff\x10\x9e\x10\x7b\x9f\x41\x86\x07\x90\x1b\x00\x1a\x8f\x4e\xef\xc9\xa7\x1c\xf0\xf1\xe8\xe1\x7d\x78\x42\x4d\x0f\xa1\x8c\x33\xf9\x3c\xb9\xbf\xbc\xd8\x8e\x4f\xc7\x50\xdd\xe9\x58\x66\x38\x55\x75\x9f\x9e\xc0\xc7\xfd\x63\x78\x9e\xc8\xe7\x29\xbc\x9f\xc2\xfb\xe2\x14\x12\x49\x84\x33\x3e\x85\x06\x9c\x26\x67\x10\x94\x42\x7c\x2a\x23\x1e\x8e\xe4\x8a\x18\x3f\x1c\xc1\x47\x2c\x01\x3d\x3b\x96\xdd\x30\x3e\x3b\x3e\x86\xe7\x29\x3c\x65\x3b\xce\x4e\x20\xe4\x04\x0a\x39\x3b\x59\x5c\x6c\xc7\xf1\xf8\x14\x9e\x32\x3a\x96\x93\x6d\x1c\xdf\x97\xa3\x32\x8e\x25\xa6\x1a\xc7\xd0\xd8\x58\x4e\x8c\x71\xfc\xe0\x3e\x44\x3c\x48\xe4\xf3\xf4\x04\x3e\x4e\xd5\x87\x6c\xe1\x02\x70\xc7\x78\x31\x92\xc0\x2d\xa0\x69\x8b\x93\x07\x10\x04\xfd\x0a\x6b\x6a\xbc\x90\x6b\x7a\xbc\x78\x00\x50\x2f\xa0\xa1\x8b\x87\x23\x78\x8e\xe5\x33\x86\x9e\x59\xc4\xf7\xe1\xf9\x10\x9e\xb2\x51\xc9\x71\x22\x23\x92\x93\x13\x78\x3e\x80\xa7\x84\x3d\x49\xa1\xda\x24\x3d\x86\xe7\x3d\xf8\x60\x23\x78\x1e\xab\x8f\x87\xf0\x94\x1d\x94\x26\x90\x38\x65\x32\x7f\xba\x84\xe9\x90\xca\x4d\xf3\x78\x34\x4a\xe0\x99\xca\x27\x14\x79\x3c\x5a\x8e\x2e\xb6\xc7\x09\x5b\xca\x8f\x64\x39\xbe\xd8\x1e\xa7\x0c\x62\x52\xb5\x03\x1f\xc7\xb0\xe9\x1e\xc3\xc7\xd9\x19\x3c\xe3\x8b\x6d\xfc\xe0\x81\xcc\x12\x3f\x90\x83\x19\x3f\x90\x5d\x14\x3f\x38\x4d\xe5\x53\x96\x18\x3f\x90\x45\xc5\x0f\x25\xba\x8b\x1f\x8e\x1e\xc0\x73\x21\x9f\xc7\xf7\xe1\x09\x21\x12\x61\xc6\x0f\xa1\xba\xf8\x21\x64\x38\x3b\x96\x9d\x19\x9f\x49\x44\x1d\x9f\xc1\x3a\x8b\xcf\xee\x43\x0c\x2c\x88\xf8\x4c\x4e\xc3\xf8\x6c\x71\x02\x4f\x95\x58\x2e\xba\x18\x10\x72\x1c\x03\xa2\x8f\xe3\x63\x26\x9f\x72\xe9\xc6\xb1\x9c\x10\x71\x2c\x97\x5b\x1c\xcb\x3e\x8d\xe3\x7b\x27\xf0\x84\x0c\x72\x4f\x89\xe3\xc5\x31\x64\x5b\xdc\x83\xe7\x29\x3c\x1f\xc2\x13\x0a\x92\x98\x28\x8e\xe5\x4e\x18\x2f\xd8\x7d\x78\x3e\x84\x67\x7a\xb1\x4d\x35\xc1\xb1\x94\xfd\xb5\x5c\x8c\xd9\xc5\x76\xa9\x08\x92\x25\x1b\xc9\x20\x76\xac\x3e\x64\x9b\x97\xcb\x33\x06\xcf\xe5\xfc\xc8\x11\x0d\x4f\x5b\x64\x3a\x5c\xed\xca\x83\x24\x5c\xef\x3e\xa2\xa7\x0f\x1e\x06\xc1\x3b\x4b\x6d\x78\x57\xf7\xa2\x7b\x53\x76\x87\xe1\x73\x65\x6b\xaa\x00\xf7\xbc\xce\x7d\x48\x01\x3a\x41\xa1\x76\xef\x34\x4c\xca\xf2\x1d\xfb\x58\xd1\x1c\xef\x9a\x3c\xaa\x30\xff\x94\x81\x75\xeb\x5d\xa0\xc2\x1e\xbf\x1d\xb7\xb9\x38\x55\xcb\x23\x71\xab\xb8\x0a\x14\x95\x77\xaf\x54\x7e\x6e\xd3\x3e\x46\xda\x46\x56\x65\xef\x11\xaa\x47\xa3\xc9\x60\x50\x59\x06\xa0\x2a\x51\xdf\xfc\xc1\x07\xde\xe3\x68\xfb\x4d\x9b\x4c\x83\x8a\xda\x20\xe1\xe6\x83\xe8\xf6\x27\x18\xbf\x99\xde\xa5\x7f\xb6\x2f\xb1\x13\x41\x02\x93\xf3\xcf\xf3\x34\xcc\xeb\x9a\x29\xf3\x76\x25\xab\x80\xd0\x56\x5e\xbe\x79\x73\x87\x59\x9d\x96\x0f\x5c\xaf\xc7\x4d\x05\x92\xe4\xce\x87\xb2\xed\xef\x84\x1e\x71\x19\x1d\xfa\xae\x63\x0d\x25\xfe\xab\x70\xac\x79\xab\x6d\xee\xac\x04\xf6\x46\xe0\xae\x48\x5c\x31\x09\x29\x92\x13\x31\x4e\x2a\x30\x8b\x6f\x22\x14\xc4\x7e\x54\x85\x49\xae\xb8\x08\xbf\x29\x2e\x42\x5e\xc5\x3c\x2f\x3b\x4c\x09\xbe\x0c\x4f\x7c\x2d\x2c\x60\x12\x54\x3e\x88\xda\x96\xbe\xcc\xeb\x3c\x6c\x9a\x90\xb0\xc2\x07\xa9\x00\x2b\xbe\xe3\x3d\xc5\xac\x44\x59\x61\x52\x51\xca\x9c\xf9\x4c\x25\x4c\xd5\xa9\xc4\x23\xd5\x9f\x89\x96\x8a\xb7\xed\xe6\x38\xa9\xf8\x95\x59\x3b\x13\x50\xf3\x29\x84\xa8\xcc\x7f\x27\x1e\x33\xba\x2f\x7c\xcf\x9c\x7b\xe5\xaf\xf2\x96\xb7\xd2\x7f\xd4\x17\x17\x25\x46\x7d\xa6\x5d\x95\xca\xaf\x8b\x8b\xf2\x1b\x84\x1b\xf0\xc4\x31\x1e\x07\x41\xf8\xac\xe5\x5b\x4c\x0e\xba\x2e\x6a\x3f\xe0\xbb\x03\xde\x9a\x47\xe6\x3c\xf6\x52\x0e\x59\xb1\x56\x5e\x7f\xf6\x71\xa7\x5b\x2e\x80\xe8\x2b\x11\x56\x58\xb9\xcc\xd1\x3e\x82\x9d\x24\x98\xe2\xe4\xe7\x5a\x5b\x34\xf7\x3d\xba\x32\x1f\xed\xd8\xfb\xec\xdc\x6a\x8d\xf2\x69\x3e\x1b\xcf\xfb\x3c\x42\xe0\x53\xfb\x07\x09\x54\x9c\xa6\x5f\x04\xd5\x81\x82\x09\xb0\x63\x81\x15\x57\xd2\xc4\xf5\x69\x58\x58\xed\xd3\xca\x1f\xfc\x17\x3b\xdc\x08\xe6\xc9\x46\xef\x33\x13\x52\xcc\xf2\x79\x10\xf4\x5e\x09\xd0\x72\x32\xae\x64\x81\xd9\x65\x9c\xc8\xee\x3f\xc6\xff\x4b\x68\xc9\x80\xf6\x42\xbe\x64\x95\x1e\xaa\xf2\xc9\xcd\x53\xeb\x9d\xc0\x61\xbb\x2f\x49\x1e\x7a\x1c\x47\x84\xc9\xa7\x75\x2a\x86\x2e\xed\x41\x1e\x04\x2c\xcc\x35\x87\xf3\x3b\x41\xb5\xb6\xef\x13\x41\x7e\x11\xe4\xaf\xa2\xe3\x68\x5d\xf9\x83\x69\x2b\x06\x33\x6a\x7c\x59\x9b\x46\xa3\xb4\x88\x2f\x2f\xe3\x45\xc6\x90\x3c\xa5\xd6\x35\x04\x3c\x2b\xc4\x06\xbe\x9b\xd0\x93\xe1\xfe\x5d\xb4\x24\x47\x9f\x08\xc3\xe8\xf0\x5c\xfc\xfc\xc7\x7f\xfd\x3f\x10\x3e\x00\x54\xed\x79\x8e\xa9\xc8\x5d\xbb\x0f\xfa\x88\xf0\x1c\x63\x32\xea\x51\x1f\xff\xb7\xdc\x66\x07\x41\xf8\x44\xd0\xca\xf7\xf7\x7d\x4e\xc7\x20\xb6\xe5\xa5\x7a\x74\x1c\x04\x3d\xd5\xea\x87\x18\x37\x6a\x82\x3c\x11\xd3\x2e\x70\x91\x17\xf0\x3f\xfe\xbb\x76\x99\x87\xb4\x66\x71\x74\xc8\x73\x30\x9f\xbe\xc8\x44\xf2\x61\x72\xa8\xbd\x87\x8f\x37\x1f\x27\x87\xda\x21\xb9\xf6\xa6\x37\x18\x6f\x3e\x22\xcf\x33\xf0\x5d\xde\x93\x50\x8b\x25\xf5\x17\xd1\x72\xb4\xfe\x8b\x51\xdc\x3e\xfc\x45\x68\x55\x26\xe8\xba\x3b\x7b\xeb\xf1\xff\xf3\x7f\x3f\x46\x58\x4e\x9a\x0f\x02\x5c\x39\x8c\xb1\x9c\x65\x4f\xc4\x16\x6c\x66\x3c\x05\x8f\xe6\x3f\x03\x1f\x47\x39\x74\xae\x6b\xb9\x20\x96\x15\xa5\xc5\xb0\xf0\x7c\xba\xeb\x09\x91\xab\x72\xc6\xe4\xf8\xee\x72\x2c\x84\x34\x57\x45\x0c\x74\x51\xe7\x27\xea\x76\x54\x90\x6f\xe5\xe2\x77\x3a\x18\xf4\xa4\x47\xd1\x45\x7e\x91\x2f\x8c\xf2\xc2\xd1\x45\x7e\x64\x2e\x02\xa6\x3e\x43\xa7\x2d\xcb\x0a\xdc\x45\xcb\x59\xac\xce\x69\x3e\x71\xa2\x7f\x8e\x13\x93\xcb\x0d\x0c\x78\xbe\x1c\x8c\xfb\xb4\x79\xbe\xc2\x8a\xdf\x54\xda\xe5\x14\x33\x92\x77\x7c\x30\xc6\x53\x3e\x18\x47\x1c\x13\xab\x24\xff\x5a\x39\xb3\x92\x05\xf6\x68\x3c\x0d\xf5\xdd\x86\xf0\xcc\xc0\x62\x52\xf5\x69\xdc\x1f\xe3\xc8\xc6\xca\x9d\x8b\xf7\xc7\x9e\x20\xf0\x5e\x0b\x1a\xb6\xfd\xc5\x45\x3e\xad\x65\x2f\x34\xe4\xcf\x82\x5e\xf3\x3c\x15\xd7\x43\xdf\x24\xd2\xb4\xcb\x92\x73\x45\xb4\x58\x7c\x3d\xda\xe6\xf0\xed\x6c\x1a\xbd\x71\xd3\x86\x45\x16\x66\x85\x68\xaf\x73\x56\x18\xb7\x6b\xae\x9c\x36\xfd\xe3\x15\x69\x94\xca\xc3\x5e\x05\x92\x5f\xb0\x2b\x1b\x1a\x15\xf7\x28\xc3\x41\x30\xea\xd1\x6a\x98\x88\xb5\x8c\x7c\x9e\xa7\x6f\x04\xcf\xab\x32\x44\x00\xed\x3b\xf1\x3c\x4f\x11\xdc\xe1\x7c\x25\x28\x12\x79\x22\x36\x37\x88\xe7\xe1\xaf\xc2\xe1\x22\xb9\x03\xfc\x2a\x3a\x4b\x48\x27\x25\x48\x41\x30\x41\x98\x20\xd3\x2a\x47\xe5\xfe\x2a\x86\x2a\x21\x26\x3f\x09\xe7\xe8\xfd\x6f\x82\xfc\x5d\xce\xc9\x0f\xec\x46\xa2\xdc\x92\xde\x9e\x44\xe8\x79\x0e\xb4\xcf\xc3\x08\x3d\x89\x93\x0f\xe5\x26\x4e\x18\x22\x67\x11\x7a\x17\x2f\x10\x19\xbb\x04\xe3\x07\x11\x7a\xbb\xe2\xcb\x0a\x91\xf1\x69\x84\x9e\x56\x45\x86\xc8\xf8\x61\x84\x1e\x67\x32\xe8\x2c\x42\x6f\xe2\x6d\xc9\x10\x39\x1e\x45\xe8\x69\xbc\x29\x7f\x10\xc9\x07\x44\x8e\x4f\x23\xf4\xbc\x4c\x10\x39\x39\x8e\xd0\x5b\x55\xfa\xc9\x89\x4c\x7c\xc9\x7e\xd9\x20\x72\x72\x4f\xbd\x3f\x13\xd7\x39\x22\x27\xf7\x65\x7d\x29\x22\x27\x0f\x22\xf4\x9d\x58\xcb\xc4\xa7\x11\xfa\x81\xc9\x6a\x4f\x1e\x46\x08\xb2\x9c\x45\xe8\x67\xb9\xd4\x10\xb9\x37\x8a\x90\xca\x79\x4f\x96\x53\xf0\xbc\x7a\x9b\x14\xf2\xf3\x7e\x84\x5e\x82\x2e\x11\x22\xf7\x1e\x44\xe8\x99\xb2\xdd\x4e\xee\x9f\x45\x68\x82\xc8\x83\x71\x84\x28\x22\x67\xe3\x08\xfd\x28\x52\x44\xce\x8e\xcd\xcb\x89\x7e\x19\x8f\x1e\x44\xe8\x1b\xf9\x7f\x0a\x49\xc7\xa3\xb3\x08\x0d\x10\x19\x8f\x47\x11\x1a\xca\xff\x71\x84\x8e\x10\x19\xcb\x06\x9a\xd2\xc7\xa7\x27\x2a\xd1\xc3\x07\x50\xcd\xf8\xa1\xce\xfc\xf0\x61\x84\x88\xfc\xd7\x85\x9c\xe9\x42\xce\x74\x21\xb2\xfe\x7f\x22\x72\x2c\xbb\x71\x86\xc8\xb1\xec\xc3\x8b\x0b\xf9\x32\x8e\xd0\x5c\xfe\x1f\x47\xe8\x4f\x88\x3c\x38\x39\x96\xfd\x28\x7b\x41\xbe\x9e\x98\xd6\xcb\x8f\x7b\xa6\x9f\xe4\xc7\x7d\xdb\x45\x0f\x4e\x8e\x4f\x8f\x1d\x88\xf2\xf3\xc4\xf4\xad\xfc\x30\x3d\x2e\xdf\x1f\xb8\x71\x91\x9f\xa7\xfe\xd0\x3c\x38\x39\x19\x1d\xdb\x4e\xf5\x08\x90\xef\xdb\x67\xbe\x8c\x5d\xb1\xec\xeb\xe3\x29\x1b\x56\x22\x52\x5a\xa4\xde\x3d\x73\x7c\x47\x5a\x90\x85\x93\x59\xbc\x7b\xdf\xd8\x5d\x1a\x80\xcc\xbb\x13\x11\xfc\x5e\x84\xd5\x6c\x34\xc7\x91\x77\x7b\x5a\xdc\x9d\x9c\xc5\x21\x88\x6f\xe2\xa8\xa5\x6a\xec\xdd\xbc\xc6\x3e\x49\x76\xad\x64\x9c\x12\x38\x0f\xd0\x17\xb9\x24\x10\xf3\x1e\xd8\x12\xae\xe8\x6b\x1e\xe6\xd8\x38\x4d\x79\x27\x3f\x88\xa0\x7c\xca\x15\x91\xa8\x9a\x53\xc4\x61\x8e\xa3\x0a\x9e\x23\x03\x86\x3c\x54\x12\xe1\x1d\x7a\x79\xab\x52\x05\x82\xf6\x63\x92\x3b\x18\x0a\x1d\xa4\x2b\x53\x66\x51\xea\x7a\x44\xa9\xab\xb2\x6d\xab\x1e\x0c\x6f\xe4\xda\xbb\x85\xbe\xd6\xbc\x78\x7b\x84\x25\x72\x57\x15\x38\xdd\x9e\x6a\x98\xac\xce\xa9\x50\x2f\x1e\xa4\x2a\x9e\xc4\xd3\x51\x24\x3c\x64\x6e\x61\x17\x71\x47\x60\xc6\xc2\x62\x7b\x1d\x64\xcb\x8b\x1e\xcd\x83\xa0\x3a\xf7\xb2\xc6\xba\xd9\x7f\x13\x6d\x29\x85\xe2\x73\xce\x27\xc0\xc8\x34\x58\x71\xa8\x82\x00\x6c\x36\xb8\x5b\x47\x17\x49\x69\xa5\x2c\x3a\x50\x5a\x79\x34\x45\x61\x92\x02\xe4\x5c\xc1\x4a\x40\x6a\x55\x75\xe1\x54\xe7\xef\x81\x51\x88\x20\x08\xff\x26\x80\xaf\x80\xa3\x3d\x11\x39\x26\x05\x3e\x28\x68\xde\xec\xe9\x9b\x32\x6e\x5b\xad\xce\xad\xda\x7e\xbf\x90\x27\x3f\x50\x3c\xd2\x47\xba\x47\xa3\x20\x78\x2a\xb4\x82\x86\xd9\x8f\x2b\x8c\xf7\x51\xdf\xdb\xb8\x7b\x4e\x57\xd3\xdc\x37\x94\x73\x98\xb9\x44\xde\x75\x75\x1c\x2b\x43\x8d\x31\xe5\x33\x31\x27\x25\xd5\x30\xc6\x76\xca\x0e\x8a\x48\xe6\xd1\x8e\xa6\xca\x47\xb1\xd6\x09\x2f\xcf\x63\xe7\xbd\xea\x10\xec\x29\x94\x94\xc6\xda\xaa\x06\xbc\xba\x68\xa8\xa6\xc4\x94\x8a\x69\x19\x15\x8f\x46\x94\x86\x50\x63\x9f\x16\x73\x6c\xab\x92\x39\xb4\x4d\x3d\x80\xdd\x4b\xd3\x92\x37\x2e\x29\x14\xe1\x60\x04\xa0\x65\x6e\x32\x18\xcb\x81\xd1\xdf\x20\x3f\x2b\x03\x7c\x27\x7e\x3b\x7d\x25\x3b\xdf\xfa\xa2\x9b\xf0\xbd\x1d\xcf\x31\x9e\x60\xde\xb7\x96\x94\x0e\xf9\xf9\xa8\xae\xf9\xa3\x16\xd6\x98\x82\x50\x32\x6f\x7c\xf3\x6e\xee\xec\x3d\x9a\xb0\xf3\xf1\x68\xc2\xfa\x7d\xfc\x77\x31\x63\xfd\x7b\x0f\xe7\x14\x5e\xce\x1e\xcc\xa9\x12\xb6\x08\xb5\xbc\x3e\xa3\x0f\xee\x4f\xd8\x39\x3d\x73\xc9\x4d\x12\x68\xd3\x53\xcd\x3c\x73\xe9\xc7\x32\xf9\xf8\xd8\x95\x3e\x1e\x8f\x75\xf1\x80\xf3\xe7\x14\xbd\x40\x7d\xd6\xe0\x50\x21\xa8\x24\xa6\x3b\x46\x34\xd0\xc2\xfc\xaa\xb2\xba\x2e\x17\xad\x5f\x59\x96\xd5\xf5\xab\x57\x5f\x7f\xfd\xf5\x2b\xf8\x91\x57\xe4\xd5\xd8\xfe\x54\xd8\xab\x1f\xee\xfc\x7d\x49\xbc\xae\x68\x71\xe7\x8f\xc8\xea\xa1\x7e\x55\xde\xd7\x5f\x8f\xc7\xf0\x3a\xfe\xe1\x53\xc5\x7f\xa2\x5a\x15\x8f\x48\x45\x51\xe1\xfd\x48\xf1\xea\xd5\x1a\x7e\xc5\xbf\xf3\x5b\xb7\x7e\x3a\x30\xb7\xbf\xaf\xf3\x5c\x26\xfa\xb7\x8a\xfe\x9f\x03\x05\x7e\xd0\x32\xa4\xcd\x75\xc0\x5d\xe9\x9d\x77\xd3\xa3\x53\xf5\xf1\x30\x4e\xe6\x47\x24\xa7\x47\x33\x39\x09\xe6\x47\x84\xd3\xa3\xd9\x0f\x3f\x17\xf3\x23\x22\xe4\xdb\x62\x9c\xcf\x8f\x48\x4c\x8f\x66\xf2\xc5\xed\xff\x65\xcb\xf3\x06\x2c\x56\xe3\xd6\x08\x10\xb2\x36\xf9\x50\x09\x5a\x34\xdd\x4b\x7d\xe5\x5e\xb9\x57\x28\x1e\xc4\xd6\xb3\x71\x66\x5d\x8b\x92\x84\x6e\x8d\x1f\x8f\xa5\x3c\x0b\xad\xe8\x68\xb2\x3a\x4f\x26\xfd\xfe\x0a\x2f\xd5\xb9\xe3\x92\x86\x19\xdd\xfa\xec\xe6\x15\xc6\xe7\xf4\xf8\xde\xe9\xd4\x9e\x72\x32\x1c\x8d\xef\x1d\xdf\x3b\xa7\x59\x10\x64\xe7\x74\x7c\xff\xf8\xde\x14\xfd\x8c\xa2\xf1\xfd\x93\x07\x36\xf0\xf4\xf4\x64\x6a\xd1\x41\x36\x90\x71\x38\x1a\x9f\x9e\xda\x6c\xc7\xc7\xc7\xa3\x29\x2a\x50\xf4\x70\x7c\x76\x6c\x02\x1f\x1e\x8f\x4e\xa6\xe8\x1a\x45\x0f\x8f\x47\xf7\x28\xcd\xa6\x68\x81\x22\xf4\x03\xc2\x07\x2b\xea\x5c\x54\xa6\x14\xfd\x80\x2c\xe4\xb7\x68\x8d\x28\x0d\x2f\xe9\x72\xb6\x9a\xe3\xa9\x7c\xd2\x34\x4a\xe9\x65\xe3\xe7\xd9\x74\xf2\x8c\xbd\x3c\x41\x80\xe4\x31\x6e\xa3\xf2\xa2\x1c\x45\x5c\x75\xe3\x25\x0e\x82\x70\x43\x2f\x09\xc4\x5f\x06\x41\xa8\x52\xfc\x0c\xce\xf2\x45\x11\xae\xe8\x98\xa4\x74\x39\x1b\xcd\x65\xd1\x83\xb1\x2e\xbc\xdf\x2e\x5c\xd6\x95\xea\xff\xe5\x6c\xd5\x1f\xcf\x75\x4d\x63\x24\x89\xd9\x1e\xbd\xac\xeb\xb4\xa7\xa3\xea\x1a\x8d\x51\x0f\xd2\xe7\xf2\xbf\xae\x55\xa5\x29\x26\xb2\x4d\xaa\x56\x37\x6e\x72\xd4\x11\xf1\xea\xc3\xaa\xe8\x57\xc8\x72\xdd\xd1\xd7\x12\x78\x87\x5b\xd7\x74\xd5\x1f\x4f\xd6\xe7\x49\x10\x40\xd4\x72\xb6\x9e\x4f\xfa\xfd\x35\x9e\x98\x14\x57\x74\x15\x04\xa8\xa7\xc0\x1d\x48\x98\x54\xea\xb1\x4e\x3d\x05\xc8\x5f\x21\x72\x43\x57\x93\x9b\xf3\xf5\xa4\xdf\xbf\xc1\xcb\xd9\xcd\x9c\x5e\x1d\xac\xe8\x7a\x30\x6e\x0c\x9c\xa4\xd3\xef\x60\x5c\x00\x00\x3d\x40\x3f\x20\xf0\xdf\x08\xa5\x5e\xea\x1e\xf9\x61\xa7\xef\xf1\x4e\x93\x41\x9d\x1f\xd2\xa8\x06\x43\xc3\xbc\x46\xd9\xc8\xf5\x1c\xab\x76\x5d\x81\x2b\x62\xa8\x30\x5c\x4d\x55\x9b\x60\x5a\x91\xf7\x3a\x74\x7d\x9e\x4c\x65\x06\x35\xd9\xa0\x1f\xe8\xa2\xae\xdf\x4f\x25\x44\xe8\xe7\x4f\xb4\x54\x96\x7d\x4d\x9e\x83\x14\xb4\x07\x28\x06\xfd\x0b\x1f\x4a\x10\x75\xa1\x2b\x48\xd5\xef\xaf\x64\xaa\x20\xf0\x93\x40\xe3\x26\xcf\x9d\xf5\xe6\x32\x1c\x91\x8f\x64\xe5\xeb\xaa\xbd\xa5\x2b\xf2\x9a\x3e\x37\x26\x82\x5a\x65\xa1\x1f\x10\x4c\xa2\xb9\x2a\x48\xc6\xdd\xd0\xb7\x93\x9b\xf3\x15\x40\x13\x9b\xaa\x6e\x24\x34\x6f\xcf\x6f\x82\xe0\xb9\x11\x4e\x7e\x4d\x46\x44\xd5\x38\x26\x6f\xc9\x8d\x26\xcb\x1f\xd3\x1b\x5d\xc3\x8d\x2c\x25\x08\xfc\x22\xa0\x27\x26\x7b\x4a\x38\x26\x8f\x65\x09\xe4\xad\xf6\xe6\xdd\xef\xdf\x1c\xbc\x95\xb9\xef\xa8\x4d\xb6\x4f\x63\xb3\x31\xa5\xcf\x2d\xfd\x1b\x04\xe1\x35\xdd\x5a\x1d\x9d\x8b\xb2\xaf\xe4\x08\x21\x05\xe0\xc3\x6b\xc7\x4f\x26\xcf\x87\xdb\x5c\x69\xc6\x99\x9e\x1b\x11\x2f\x1e\x63\x4c\xc6\xe0\xa5\xf2\x39\xde\x57\xfc\x45\xd9\x57\x9a\x3f\xa1\x4a\x52\x89\x41\xa7\xf8\xd6\xa8\x24\x03\x3f\x32\x91\xa5\x1f\xb7\x61\xef\xc2\x33\x26\x10\x5b\x09\xf3\x8f\x31\x71\xe9\x7b\x6d\xc8\x5a\xb5\xb9\x54\x24\x91\x55\x91\xe7\x4d\xe3\xd8\x66\x6f\x87\x57\xac\x28\xb9\xc8\x29\xba\x3f\x1c\xdf\x1f\x1e\x23\xf2\xb6\xc1\x2d\xb5\x5a\x24\x40\xd2\xcd\x33\x30\xff\x71\x23\x8a\xaa\x0c\x82\x9d\x98\xb5\x48\xb7\x19\x9b\xb2\xb0\x60\xbf\x6f\x79\xc1\x42\x34\x1c\x1e\x0d\x87\x47\x19\x5f\x1c\x39\xb9\x62\x84\x71\xb4\x87\x57\x92\xb2\x25\x1c\x85\xd4\xff\x30\x5e\xa7\x53\xf5\x1a\xce\xf6\x17\x33\x27\x0c\x47\x2c\x74\x2c\x68\xdc\xb4\xdc\x69\xa0\x6d\xc9\x0e\xcb\xaa\xe0\x49\x85\xdc\x2e\x59\xd9\xcb\xa3\x5d\xe9\xba\x0a\xef\x5a\xa1\xf8\x25\x57\x50\xa4\x87\xe0\xf6\xf3\x10\xf5\x2b\x65\x7a\xa2\xe4\xeb\x4d\xc6\x64\x9b\x99\xaf\xad\x58\x78\xe5\xeb\x5d\xf4\x28\x9c\x46\xf8\x48\xd3\x00\xc8\xba\x05\x6f\x59\xf8\x51\x37\x37\xd3\x90\x0d\x39\x88\x5d\x3f\x8d\x4b\x06\x06\x9e\x10\x47\x98\x30\xca\xb4\xc4\x17\x8e\x98\x23\x5f\x89\x77\xe7\x13\x82\x58\x60\x35\x45\x28\x42\xff\x40\x18\xee\x7d\xe0\xfe\x07\x23\x52\x78\xf0\xe5\x21\x93\xc4\x78\xc8\x86\x39\xfb\x08\x9a\x2c\x72\xb2\xe0\x20\xa8\xc0\x3a\x74\x2b\x90\x68\x7b\xe0\x97\xec\x23\x2d\x40\x4d\xe2\x92\x7d\xc4\x86\x8c\xf8\xc0\xda\x8a\x3e\xbb\x9a\x8a\x72\xf7\xd8\xf1\x75\xe3\x6e\xe2\xb4\x5d\xc5\xf0\xe8\x62\x78\x74\x49\x5a\x16\x64\xb4\x45\xc2\x96\x60\x68\xd1\xef\x63\x4f\x53\x31\x08\xe0\xd4\xb8\x5b\x88\x77\x66\x03\xa1\xbb\x0f\x2c\xd7\x30\xa7\x71\x15\x53\xef\xfe\xec\x6e\x3f\xec\xda\xea\xcb\x46\x19\x7b\xb6\xf6\x40\x4d\x80\xd1\xa2\x35\x35\x8d\xa8\x17\x67\x34\xa0\x5d\x7e\x6d\x63\xb8\x50\xfe\xbb\x5b\x36\xe5\x08\x57\x10\x36\xca\xca\x8c\x48\xe2\xcc\x58\x9c\x91\xef\x43\x96\xa7\x41\x50\x68\x3c\xe3\x05\x62\xc3\x6b\xf0\xc2\xc0\x5b\xaf\x32\x0f\x68\xd5\x8e\x54\xac\x49\xf5\x56\x4e\x61\xa5\xd6\xaf\xfd\xbb\x1e\xb8\x12\xe4\x4c\x56\xc0\x80\x23\x77\x97\x01\x77\x4a\x03\xcf\xd3\x49\x9c\x83\xc3\xeb\x4e\x98\xbe\xc9\x1b\x26\xdb\xa2\x00\x26\x2c\x60\x45\x68\x39\x2d\x94\x9b\xeb\x7e\xa9\x6f\xe9\x88\x68\x9c\xba\x26\x9b\xe5\xca\xb1\xee\x9c\x64\x74\x34\xc9\xce\x0d\xb1\x39\xc9\xcc\x9d\x53\x42\xb7\xb3\x6c\x4e\x96\x34\xec\x25\x30\x96\xc3\x52\x64\x75\x5d\xc8\xbf\x10\x63\xd7\x4f\x89\x9e\xa9\x72\x02\x2a\x47\xad\x3a\xbd\x9c\xdd\x53\x5d\x0f\xf5\xc2\x22\xfd\x2e\x27\xd7\x34\x0c\x21\x45\xf2\xa1\xae\xcd\x9b\xa7\xb6\xa4\x73\x63\xd2\x29\x06\x16\x8c\x2d\x47\x6c\x24\x21\x01\x79\xed\x8b\x3f\x31\x54\x56\x13\x01\x4a\xed\x98\xe8\xcc\x72\x1c\x82\x20\x0e\x2b\x92\xfb\x41\x24\x31\x73\x59\x07\xca\x4e\xcc\x2b\x59\xbc\x7a\xd3\x6a\x55\xfa\x4b\x2b\xd6\xf5\x2b\xfd\xfd\x4b\xce\x2b\x9b\x35\x65\xdd\xac\xa0\x56\xbf\x34\xca\x10\xc7\x60\xf0\x45\x4f\x5e\x4d\x9a\xc8\x11\x58\xd1\xe3\xc9\xea\xdc\x24\x9b\xac\xfa\x7d\xa0\x17\x65\x41\x66\xf6\x2b\x95\x5a\x50\x9f\x95\x51\x04\x60\x8e\x34\xec\x40\x3a\x35\xde\xbd\xd4\x22\x4e\x3e\xfc\xb2\x09\x97\x6e\x3b\x1c\x84\xcb\x19\x50\xb8\x63\x13\x12\x8d\xa0\x6f\x54\x01\xa3\xb9\xd9\xed\x75\x48\x10\xe8\x17\x70\xa1\x30\x75\xe9\x4c\x9d\x8e\x35\x04\x43\x1d\x2a\x53\x7a\x4d\xdb\x09\xb4\xc2\xd8\x8c\x3a\x89\x73\xa5\x03\xdb\x63\x75\x6d\xb6\xb9\x9e\x45\x61\x75\xdd\xab\xf6\x84\x77\x6e\xaf\x0a\xef\xfc\x90\xdf\x2d\x65\x9b\x63\x85\x3a\xf7\x8a\x73\xf7\x84\x12\x5b\xaf\xda\x86\xa7\x8b\x7e\xbf\x69\x4b\x8d\xe3\x3d\xd9\x83\xa0\x18\x0c\x3c\x14\xe5\x33\xff\x60\x76\x71\x62\xec\x55\x29\xbe\xdd\x46\xd2\x02\x65\xe5\x1b\xc9\xd9\x02\x62\x33\xc1\x80\x0e\xca\xc9\x36\x08\x7a\xe5\x64\x4b\xb7\xd0\xa3\x38\xe4\xc3\x72\xc3\x92\xa9\xd0\x2f\x64\x0b\x7f\x38\xe2\xca\x34\x94\xa4\x93\x44\xca\x30\xe0\x8b\xad\x22\x0e\x33\x5a\x4e\x95\xe5\x28\x9d\x4a\x6e\x3a\xda\xe2\x9a\x72\x38\x2e\x4b\x20\x09\x24\x83\xd5\x12\x31\xe3\x25\x3f\xae\x58\x98\xe1\x03\x1f\x5e\x09\x90\xc6\xb8\x6d\x58\xe9\x2d\xd4\x91\x11\x59\x5e\xa4\xe1\x53\xe5\x25\x04\x96\xfe\x6e\x1e\x65\x9a\xd0\xe1\xcb\xc4\x7c\xda\xc2\x58\x9e\x46\x5c\xe3\xe6\x10\x5e\x30\xd1\x08\xd0\x84\x83\x77\x0f\xae\x8c\x20\x3f\xf7\x12\x82\xd6\x9f\x41\xd6\x51\x2c\xa9\x62\x98\xb8\xf1\x2c\x76\xba\x14\x51\xec\xcd\xcf\x32\xdc\x6b\xab\xba\x65\x9d\x4c\x42\x07\x6a\x90\x0e\x93\xab\x95\x8d\x3b\xa8\xdb\x8b\x0a\xfd\x46\x5a\x2f\x15\xea\xf6\xdc\x20\x86\xba\xd6\x89\x24\x9a\x4d\x45\x5e\xbd\x84\x60\xd5\x4f\x6d\x37\x1a\x9f\xb4\xc3\xc8\x97\x61\x05\x0a\x1d\xbe\x38\x8d\xc1\x83\x64\xb7\x68\xfc\x68\x30\x76\x84\xc2\x9b\xb8\x2c\xb5\xc2\x8c\xc5\x58\xd6\xca\x75\x49\x2b\xbb\x75\x1c\xb0\x08\xd8\x8a\x13\x07\x8c\x32\x04\x60\x85\xbb\xb6\x66\x33\xc9\x68\xa9\xcd\x00\x64\x6d\x9c\x08\x03\xd7\x0a\x7b\xb9\xfc\x81\xe7\x4a\x4c\xc9\x6c\x44\x99\xda\x61\xd4\x6e\xa7\x74\x72\x92\x20\x48\x66\xa3\x39\xbe\x8d\x07\x03\x12\x66\x9a\x92\xca\x0c\x79\x15\x4a\x38\xdb\xa1\x73\x4c\xb8\x35\x79\x9e\xf8\xd2\x2d\x9e\x7d\xa7\x46\xbb\xf4\x34\xac\xdd\xf3\xd1\x74\x14\x99\x5e\x98\xc5\xf3\xa6\x01\xc5\x67\x09\x20\x10\xa4\x72\x01\x39\xb2\x4c\x19\x41\xd6\x09\xf4\xda\x72\x91\xfe\x45\xb0\xcd\x1c\x2a\x9b\xdc\x0d\xf1\x03\xa9\x47\x1c\x09\x7c\x5b\x85\x82\x20\x58\x8d\xc8\x68\x32\xdd\x36\x64\x4b\xc5\x70\xcd\xaa\xb8\xae\x6f\x1b\x92\x51\x8f\x79\x94\x48\x1c\x25\xe4\x2c\x48\x7a\x74\x2b\xcf\xad\x1d\x64\x95\x60\x67\x61\x81\xc6\xb3\x64\xae\x18\x4c\x62\x96\xcc\x49\x4a\x47\x93\xf4\x7c\x65\x46\x30\x35\x23\xb8\xa1\xab\x59\x3a\x3f\x58\xba\xd3\x4e\x1e\x6e\x88\x3c\x19\x85\x1b\x3b\x7d\x37\x7a\x0c\xe5\x08\x64\xb4\x37\x52\xa2\x17\x6b\x7a\xeb\x70\xc9\x1e\x47\x0c\x0a\x41\xe8\x16\x12\xbd\xb5\x81\x15\x0c\x02\xab\xc1\x7b\x55\x45\x28\x5d\x50\xa8\x33\xca\xa6\xb3\x79\xa4\xf6\x18\xb0\x9e\xdb\xa9\xc4\x59\x46\x52\xb5\x54\x7a\x11\x98\x5a\x2a\xb3\x95\xea\xaa\x2a\xb5\x00\xef\xaa\xad\xb2\x74\x80\x79\xb3\x5e\x18\x9a\x83\xca\x5b\xe1\x40\x86\x79\x58\x8d\x0d\x2d\x70\x61\xe5\x61\x07\xe2\x67\xc2\x98\x54\x86\x8c\x09\x0b\x4d\x0c\xe9\x10\x5b\x8f\xef\xcd\xba\xda\xdd\x2d\x94\xd1\x37\xd8\x29\x8a\xbb\xf0\x73\xae\xaa\x06\x24\x9d\xfb\x48\xda\x90\x4a\xd4\x87\x6a\xea\x37\x24\xf2\x1b\xa2\xcb\x71\x44\x9a\xc4\xf0\xbb\xb5\x36\x4e\x09\x4c\x13\x28\x3c\x8c\x41\x84\x32\xcf\x59\xd1\xb6\xfa\xd9\xba\x27\x55\x78\x56\xc1\xcc\xfc\x4e\x33\x5b\x94\x83\xab\x69\xcc\x10\x95\x61\x4c\xb6\xb8\x91\x48\x62\x6b\xa7\xf9\x15\x18\x60\xc4\xdb\xee\x4a\xb8\x02\x2e\xc2\xec\x6a\x4e\xb7\xb3\x2b\x27\xfd\xb5\x6e\xfe\x97\x3c\x96\xb3\xe1\x7a\x9b\x55\x7c\x93\xb1\x8f\x3c\xbf\xec\xe0\x2e\xb3\x50\xbe\x54\x53\xad\x75\xc6\x75\x17\x7f\x7b\x64\x8f\x77\xa4\x76\x40\x4b\xdf\x6c\x95\x41\xc0\x1f\x0d\xc6\x53\xde\x37\xbb\x4c\xa4\x6c\x08\x08\x5a\xe9\xe3\xcd\xd4\xc8\xf0\x14\x38\x72\xc7\x23\x31\x35\x8e\x2d\x8a\x7e\x98\x4f\x3d\xef\x16\xd1\x08\x47\x83\x71\xe3\xb0\xcb\xdd\xa8\x47\x6c\x2b\x56\xb4\x69\x9d\x4a\xcf\x4b\x50\x87\xb6\xab\x3f\x67\xc5\x27\xb0\x4c\xb1\x53\xa0\xb7\xda\x49\x31\x84\xd0\x76\xb9\xf2\xe4\x60\xbf\x74\x05\xad\x30\xb0\x43\x61\x4b\x69\x45\xa9\x45\xa0\x83\x70\x63\x56\x95\x05\xc7\x90\x2a\xc2\xcf\xe4\x4c\xf0\x79\x81\x07\x99\xdc\x12\x61\xc4\x80\x00\x8f\x87\x49\x26\x4a\x16\x04\x5c\x1f\xf3\x4c\x67\xfb\x99\x4c\x11\x9e\xc5\x3a\x75\x90\x35\x54\x4d\xb8\xa4\xba\xa0\x69\x1e\x66\x44\xbf\x13\x2e\xcf\xa5\x24\x1e\x6e\xe2\xa2\x64\xcf\x58\xc6\xd7\xbc\x62\x45\x29\x07\x0b\x4b\xea\x6d\x23\xca\x20\xe8\xed\xc6\x5b\x09\x6c\x75\xde\xd4\xc5\x61\xf2\x09\xa0\x24\x31\x91\xf1\xf5\xdb\xea\x26\x93\xa7\x3b\xef\xab\x8f\x0e\x51\xbf\x1d\x30\x80\xf2\xd0\xc1\x52\xd9\x0d\x32\x1d\x42\x33\x2b\xf5\xb5\xd4\x4c\xd6\x92\xc6\xfe\xc1\x9d\x1b\x10\x9c\xde\x66\xb7\x08\x4c\x96\xb6\x69\x3b\x2d\x03\x3f\x26\x77\xb5\x01\x93\x58\x7d\xe9\x46\x84\xa5\xa4\xce\x35\xf8\x2e\x22\xf2\x3f\x30\x29\xbd\x43\xfe\xf8\x68\x44\xdc\xf8\x92\x84\x8e\x26\x89\x6f\x8c\x21\x51\x53\x62\x49\x56\xb4\x98\x25\x73\x3d\x72\x72\xc4\x56\x43\xb1\x61\xb9\x1a\x30\x6c\xc6\xc6\x8c\xc3\xaa\xdb\x0c\xe5\x26\x42\x0e\x8d\xca\xd7\x1d\x99\x95\xf9\xa6\xad\x85\xb6\x32\x1b\xa0\x42\xdc\x53\xf3\x12\x0a\xb5\x5e\x08\x42\x38\x1a\x61\xb2\x6a\x8d\xe5\xaa\x3b\x96\xed\x80\x81\x04\x00\x81\xf8\xde\x32\x08\x96\xe7\xdb\x20\x08\xb7\x74\x89\x9b\x6d\x4f\xf6\xc7\xfe\xe1\xdd\xea\xe1\x4d\xc1\x14\x90\x19\x59\xb5\x68\xcd\xc8\xee\xc9\x8f\x49\x6a\x77\x9d\x36\x3b\xcb\x88\x54\x7b\xbd\x30\xdd\x5d\xc1\x51\xe5\x94\x0b\x74\x1f\x98\x97\x70\x6f\xde\x48\x63\x12\x92\xe3\x48\xd1\xe9\x0d\x59\x64\x71\xfe\xa1\xed\x1d\xd6\x79\xd4\x69\x15\x92\xef\x03\x00\x4e\xa2\xb6\x0c\xb9\xee\xed\x47\xb8\x37\x7b\x94\x1b\x6c\xd6\x8a\xc6\xe8\x42\x6e\x63\xed\x2a\x0d\x32\x69\x97\x64\xd2\xa8\x59\xde\xb6\xd6\xb2\xc7\x60\x88\x46\x5b\xc5\x4c\xcc\x0f\x74\x25\x31\x4c\xb3\x9d\x72\x63\x03\x52\x7b\x9e\x69\x86\xce\x6e\x1f\xe7\xad\x79\x26\xf1\x28\x88\x40\x16\x3c\x79\xba\x8a\x8b\x32\xaa\x86\xad\xef\xcf\x91\x2b\x10\x3d\xbd\x35\xb4\x09\x7c\x12\x4d\xbb\x74\x7b\xbe\x89\x6c\x3a\x05\x83\x1a\x8e\x46\xfe\xfe\x13\x29\x8f\x85\xb8\x66\xc5\xfb\x44\xac\x37\x22\x97\xfb\xb6\x47\x39\xec\xd0\x23\xe4\x8b\x72\xc5\x69\x2a\xf2\x23\x09\xed\x91\x3a\xaf\xfc\x1b\x84\xcc\x1f\x80\x8a\xfc\x41\x60\xfe\x20\x39\xe4\x9d\xd4\xd0\xaa\x5a\x67\xca\xb0\xca\x22\x2e\x4a\xb4\xff\xe0\xd6\xa5\x9f\x42\x9f\x8d\x02\xee\xc0\x8e\x64\x39\x08\x93\x5b\x39\x45\x23\x74\x7b\x8b\x08\xac\x82\x08\x35\x0d\x32\xd3\xc1\xcb\xe3\x55\x89\x49\x07\xb1\x46\xda\xb3\x96\x05\xf4\xe5\x8f\xcf\x43\x55\xcb\xc7\x81\xcb\x38\xa8\xd8\x7a\x93\xc5\x15\x43\xa4\xdb\x0a\xfc\xbf\x24\x1d\xdb\xbe\x5e\x72\xec\x9a\xa3\x7f\x84\xd3\x48\x52\xf6\x71\x25\x8a\xba\x14\xcb\xfa\x03\xbb\xb9\x16\x45\x7a\x98\xd4\x49\x5c\xb2\x3a\x67\xd7\xf5\xec\x62\x76\xdb\x5c\x84\x64\x12\xcd\x6b\xfa\x08\x7f\xa5\xad\x07\x54\x60\x31\xf3\xdd\xcd\x86\xe1\xba\x46\xbf\x6f\xe3\x92\x83\xb9\x56\x13\x1a\x04\x47\x17\xb7\x17\xe5\x37\x26\x3d\xd3\xdb\x80\xdd\x44\x98\xdc\x23\x07\x61\x51\xd7\x23\x8c\x71\xd3\x9e\x5c\xbf\xc5\x57\x71\x99\x14\x7c\xe3\xfb\x23\x73\x5b\x05\x11\x24\xa6\x85\xc7\x3b\x26\x25\xd5\xa7\x2a\x49\x6f\x2b\x5e\x0d\xd9\xd2\x7c\xf8\x5b\x29\xf2\x2c\x25\x99\x7e\xad\xeb\x2d\x49\x68\x0e\xa6\x85\x54\xf9\x64\x49\xf3\xe1\xb5\xb6\x97\x00\x1a\x5e\x65\x5d\x1f\xcd\x2e\xae\xbf\xba\xf8\x18\x8f\x07\x17\xdb\xe5\x72\xb9\x9c\x1f\x91\x95\x2f\x24\xe5\x24\x55\x1d\x46\x53\x56\x8f\xe4\x59\x4b\x52\x19\x48\xf7\x24\x52\x1a\x27\x15\x65\xa1\x09\x3a\x8c\x41\x73\xc5\x0b\x58\x80\x06\x8e\x17\x90\x20\x4c\xb8\x0c\x30\x83\x83\xc0\x34\x2b\xd4\x80\xe2\x4a\xac\x91\xa9\x06\x3e\x1a\x12\xd3\x5b\xbe\x8c\x58\x88\xf8\x12\x61\x02\x62\x83\x51\x45\xae\xc1\x25\x18\x91\x3b\x46\x54\x90\x54\x44\x05\xa9\x8a\x9b\xa8\x20\x4b\x9e\xc7\x59\x26\xdf\x14\xec\x51\x4e\x80\x8f\x13\xe5\xc4\x30\x77\xa2\x9c\xe4\xec\x5a\x16\x99\xb3\x6b\x84\xb5\x3d\xc8\x28\x27\x70\x07\x19\xe5\x24\x65\x8b\xed\xe5\xa5\xdc\xe0\xc8\x55\x5c\xc8\x84\x57\xb1\x84\x13\xdc\x2f\xb8\xcf\x8c\x79\x1f\xa6\xdf\x64\x88\x5d\x04\x98\x80\xc8\xbc\x0c\x83\x17\x99\x4e\x40\x81\x4b\x68\x78\x79\xcd\x75\xb4\x7a\x83\x0c\x25\x53\xe9\x4b\x06\xb0\x29\x0b\x53\x2c\x44\xfa\x55\xf6\x5f\x1e\x71\xa2\x96\x57\xc4\x89\xbb\xcc\x94\xa1\xc5\x96\x45\x82\x2c\x63\xd9\x31\xca\x43\x5c\x24\xc8\xd6\xdc\xa5\x46\x82\xbc\x8a\x5f\x45\x82\xbc\xcc\x97\x3c\xe7\xd5\x4d\x24\x80\x6a\x97\xe5\xcb\x7f\x09\x00\x38\x4b\x94\x10\x80\x37\x42\x4c\xca\xed\x86\x01\xcc\x30\x20\x98\xdc\x70\x96\xa5\x51\x4e\x14\xbe\x90\x11\xea\x4d\x02\xb6\x36\x41\xea\x0d\x19\x97\xe1\x65\x94\x93\xf8\x3a\xe6\x95\xfc\x2f\x6f\xf2\x04\xca\x93\x2f\x48\x9d\xcf\x13\x63\x43\x48\xcf\x84\xab\xb8\xe0\xa0\x7e\x64\x66\x83\x09\x18\x9c\xa0\x86\x6c\xe9\x2d\xcf\x2b\x56\x2c\xe3\x84\xf9\xa0\x02\xe6\x87\x63\xa9\x1c\xe3\x78\xcd\x40\x9a\x3f\xca\x89\xc2\x60\x32\xa9\x7a\x93\x80\xe5\xdb\x75\x2b\x60\xb3\x5d\x64\x3c\xd1\x41\x7c\xc9\x99\x1c\xa1\x4d\xc1\xaf\x60\x73\xee\x84\x8a\x4a\xb9\x98\x6f\x87\xc7\x8b\xb2\x92\x2b\xad\x1b\x5c\x46\x9c\x28\x1c\x11\x95\x44\xf9\x8d\x8f\x4a\xb2\x10\x02\x3c\x9c\x96\x24\xce\x6f\xa2\xb2\x71\x22\x5f\x8a\x45\x11\xcf\xb2\x39\xdc\xbc\x59\x1e\x64\x13\x62\x92\xd2\xa3\x59\xff\x62\xf0\x4d\xf0\x35\x3d\x7f\xd4\x9b\xd6\xff\xfb\x3f\xe6\x47\x64\x43\x8f\xfe\xf1\x5f\x42\x39\xc1\xd9\xc7\xaa\xe6\x69\x0d\xd6\x5d\xea\x2c\xce\x2f\xb7\xf1\x25\xab\xc1\xf5\x9e\x56\xc0\x64\x45\x9d\xf1\xb2\xaa\x4b\x56\xd5\x05\xbb\x62\x45\xc9\x6a\x38\x3d\xd7\x0b\x89\x18\xaf\x44\x12\x2f\xea\xcb\x22\xde\xac\x30\xf2\xa4\xdc\xd6\x1d\x97\x7f\x9c\x32\x22\x68\xe1\x9b\x54\xbf\x0a\x99\x95\x88\x06\xf7\x6e\xea\xde\x47\x8e\xef\x9f\xd0\x9f\x28\xe5\x75\x8d\xfe\x84\x28\xb5\xc2\xba\x85\xa2\xb1\xf9\xbf\x18\x0d\x73\xca\xc9\x1e\xfd\x40\xc2\xa9\x72\x7e\xb9\x0d\x02\xf4\x5f\x40\x6b\x67\xc3\xd8\x87\x10\x6c\x6f\xab\xa3\xc6\xc6\x9e\x4d\x2b\x57\xde\x15\x59\x87\x48\xa1\xc8\x81\x41\x58\x04\xad\x59\x15\xeb\xdb\xee\x89\x92\x8b\x06\x57\x4e\x0a\x4e\xb8\x30\xed\x81\x45\x70\x3c\xc1\x9c\xf6\x78\x10\xa0\x8b\x0b\x44\x3d\x79\x58\x70\x13\xe9\x2a\xc1\xb2\x16\xcd\xe6\xb0\xba\xd6\xe0\x58\xd1\x26\x82\x3e\x81\x1b\xf9\x21\x02\xcd\x24\xe6\x64\x63\xd2\x7e\x38\x8d\x66\xec\xf9\x5c\x8e\xe8\x7c\x7a\x91\xf6\xf1\xf4\xc8\xb6\x66\x1d\x22\x35\x57\x10\x31\x2f\x7b\x0b\x42\xc3\x21\xf2\x33\x95\x9b\x82\xc5\x5e\x6b\xf9\x32\x3c\x9a\x5d\xcc\x2e\xe6\x72\xb3\xbb\xc0\x64\x72\x11\x5d\x0c\xe7\x7a\xf3\xe2\x5e\x4e\xc5\x4f\x47\xd4\x14\xcf\xe2\x2a\x44\x8f\x5a\x65\xd3\x47\x88\x78\xa8\x1b\xd2\x8f\xfc\xf4\x47\x1f\x8f\x5c\x91\x10\xf4\x57\x90\xf4\x3e\x9a\x5d\xa4\xf1\x60\x39\x3f\xe2\xd0\x67\xfb\x1b\xd6\x2e\x49\xdc\x55\xd2\x68\x70\xfa\x47\xca\x59\xdc\x59\xce\xf8\x93\xc5\x1c\x5d\xa4\x3b\x9d\xe4\x0f\xde\x37\xe1\x34\xba\x18\x5e\xa4\xdf\xe0\xe9\xbe\x61\xbc\x1b\xbc\x23\x7f\x0d\xe8\x6e\xfe\x06\xe1\x69\xe8\xad\x87\x1b\x72\x03\x33\x47\x1e\xef\x20\xc1\x91\x4c\xc0\x86\xe5\x07\xbe\x01\xed\xa9\x10\x2a\x48\xc4\x5a\xe2\x3b\x44\xec\x1b\xc6\x51\x05\xf6\xf8\xc7\x78\x1a\xee\xd5\xa9\x23\x05\xed\x8d\x49\x4e\x7b\x63\xb3\x06\x2a\xb7\x06\xb4\x25\x7e\x65\xa0\x13\x20\xad\x82\xc0\x8a\xf0\x1f\xa0\x19\x38\xaf\xcd\x69\x6f\x14\xe5\x41\x80\xe6\x2a\x41\x28\x4b\xc3\x4d\x41\x7b\x85\x59\x33\x55\xd3\x28\x6f\x35\xb6\xc3\x16\x61\x38\xbb\xe4\xeb\x9b\xed\x1c\x87\xd3\x9e\x7e\xfd\xe6\xe2\x18\xe3\xfe\xc5\x42\xf5\x17\x5c\xee\x6c\xec\x52\x1a\x1c\xcb\xe6\x84\xde\xa0\xa5\x90\xcc\x4e\x40\x6f\x2e\x12\xe6\xcb\x3e\x40\x3f\xff\xf3\x0e\x5c\x73\x49\x2e\xdd\xaa\xfc\xdf\xda\x83\xd1\xe9\x5f\xa6\xcf\x1e\xea\x1f\x72\xa4\xbb\x73\xe2\x8f\x82\x07\xf2\x11\xb6\x98\x5b\xaf\x80\xa5\x53\x56\xb4\xc9\x49\x4c\x57\xc3\x8d\xe6\x53\xbf\x2c\x9f\xe7\xdb\x35\x2b\xe4\x5e\x18\x0a\x1c\x04\x2b\x79\x1a\x36\x1b\x44\x10\xa0\x21\xea\xd1\xc2\xd2\xaa\xd3\x75\x18\x2b\x6b\x93\xb1\x32\x0e\x41\x04\x8e\xd6\xa1\xb7\xbf\x7a\xaf\xc2\xd7\x20\xb8\xe9\xdc\x2d\xaa\x09\xe3\xb0\xe5\xc4\xcd\x90\x22\x08\x72\x7c\xeb\xe3\x45\x6d\x31\x35\xa7\xe0\xe9\xc0\x8a\x3d\xef\x9f\xb0\x9e\x61\xb9\xbd\x75\xee\x22\x6a\x3d\x49\xc1\x33\x83\x1c\xe4\xa2\xae\xd1\x57\x0a\x10\xbd\x5a\x6e\x11\xc6\x77\x80\x24\xb3\x69\xb4\xee\xc1\xa5\xc8\x7c\x6f\xe2\xb5\x06\xac\xd1\xa2\xa8\xe1\xec\xb6\x99\x63\xef\xd8\xf1\x5e\x41\x5c\x0d\x97\x71\xf5\xb8\x28\xc4\xf5\x63\x30\x14\xea\x7d\x6a\xde\x86\xd5\x4c\x57\x47\x05\xab\x62\x2a\x11\xaa\xe6\x51\x28\x4d\x96\xb0\x38\x1f\xe1\xae\x95\xc3\xde\x58\xee\xb5\x83\xf1\x44\x3c\xa2\xa3\xc9\x60\x20\x9c\xcb\x18\x5d\xa0\x16\xd9\x16\x98\x94\x74\x61\x8b\x8f\x95\x09\xc6\x47\x74\x14\x04\xe5\xf9\x89\xd1\xc7\xb9\xed\xf7\x85\xee\x0f\xbe\x0c\x47\x94\x0e\x06\xb9\xf2\xb7\xd1\x18\xe9\xe3\xf2\x11\x3d\x91\x79\x1e\xe0\x7e\x3f\xb7\x32\xc9\x7a\xd2\xc6\x58\x6e\x8f\x23\x65\x8a\x18\xb6\x17\xf4\xa7\x8b\x23\xb3\xa5\xc4\x66\x65\x00\x4b\x09\xb0\x87\x57\x61\xd3\x40\x50\xb7\x97\x84\x56\x60\xbf\xa6\xb7\x92\xce\x8c\x7a\x23\x43\x28\xf5\x46\xc4\x4c\x51\x70\x4e\xa8\xe8\xa8\xde\x88\x28\x64\x21\xdf\x80\x84\xed\x8d\x48\x77\xc3\x8f\x5a\xe6\xac\x9f\x3b\x0b\x98\x70\x97\x0a\x56\x34\xe1\x3c\xc5\x52\x23\xb0\x9f\x28\x9b\x93\x46\x64\xff\x66\xc3\x24\x89\x23\xdf\x37\x05\xbb\xa2\x5c\xdb\xde\xcc\x97\x82\x0a\xed\x1a\x32\x37\xee\xf0\xc1\xfd\x34\xcd\xbd\xf9\xfc\x71\xd7\x32\x01\xdc\x53\xfd\x25\x2e\xca\x49\x31\x29\xa8\x12\x8d\xc1\x60\x9d\x57\xd2\xab\x2d\x31\x18\xcf\x81\xd3\x50\x93\x76\xc6\x91\x53\xc1\xae\xe0\x42\xab\xa0\xf9\xf0\xea\x4b\x0a\x6b\x94\x14\xb2\x66\x35\x01\x63\x5c\x35\x55\xbd\x2b\x77\x08\x3a\x3c\x51\xd7\x1b\x9e\x25\xbc\x96\x86\x8f\xbd\xfa\xb1\xa2\x00\x13\x26\x67\x25\x1b\x0c\xf0\xdb\x61\x92\x68\xab\xbe\x26\xd5\x8c\xf9\xb6\x60\x1f\x3b\x33\x86\xaf\x7d\x33\x86\xce\x63\x1c\xe9\x79\x3a\x8d\x1f\x60\xe3\x72\x67\xfc\x56\x67\x56\x77\xb4\xda\x49\x3a\x1c\x58\xd5\x67\x95\xe3\xad\x3a\x48\xcb\x79\xf9\x56\xbb\x80\xa0\xf2\x5c\x85\x48\x61\x7a\x58\x79\x74\x33\x37\xb6\x72\xa0\xec\x6c\xf6\xc2\xe8\xad\xac\x2a\x62\xe6\x9e\xd3\x46\x34\x8d\x59\x13\xb2\x8c\xcb\x4c\x2c\x3a\x85\xe4\x5e\x20\x5c\xed\xba\xcf\x6e\xa1\x2e\xa6\xd1\x8b\xe3\x9d\x4e\xa2\xce\x6a\x2a\x9d\x0e\xb1\x1d\x88\x1a\x6f\xe4\x9e\x86\xf8\x56\x37\xda\x34\x90\xde\xca\xd9\x13\x75\x42\xe5\x12\x2b\x6d\xa0\x6b\x0e\xd9\x09\xa2\xef\x3c\xb3\x45\x5e\xf1\x2e\x41\xa7\x68\x98\xa0\xa4\x0b\x45\x37\x91\x04\xca\x33\x17\xe4\x6b\x86\x76\x54\xb8\xec\x30\x92\xdc\x32\x4a\x58\xaa\x65\x5e\xe3\x0a\x81\x72\x27\xfb\xc8\x93\x38\x53\xae\x41\x73\x2f\xc0\x26\x6f\xf1\x9a\xb9\x4b\x31\x91\x44\x3f\x46\xe0\x1a\x1b\x78\x3d\x5c\xad\xeb\x09\xa7\x5c\xad\xbb\x9c\x72\x57\x8c\xcd\x07\x46\x47\x9f\x87\x39\x34\xb4\x60\xf1\x5a\xa3\x92\x10\x13\xed\x3e\xd0\x26\x25\x95\x73\xb6\x04\x81\x54\x22\x33\xcf\xa2\x91\xd5\x55\x33\xf3\x95\x59\xf8\x25\x04\x72\xd7\xc3\x48\x59\xae\x75\xcd\x04\x4b\x97\x0e\x9d\xed\xb4\x58\x92\x62\x06\xd6\x76\x79\xbe\xcb\x97\x3d\x96\xb7\x0f\x2b\x77\xa9\x79\x58\x50\xca\xa6\x8f\x43\x1c\xa1\x89\x84\x60\xfa\x3a\xc4\xd1\xe3\xb0\xf2\x09\x87\x67\xbe\x70\x2f\x70\x47\x54\x9e\x9f\x81\xea\x80\xd5\x66\xee\x77\x31\x89\x19\xf9\x2d\x44\x13\x84\xc9\x1b\x1c\x79\x6c\x24\x9b\x65\x29\x8a\x35\xc2\xe4\x15\x79\xd6\x4a\xb1\xd8\x49\xa1\xe2\x6f\x5d\x78\x83\x30\xa9\x18\x84\x4e\x90\x05\x9b\x2f\xe1\x3d\x44\x72\x02\x20\x6a\xe7\xa1\xeb\xae\xa5\x08\x02\x3b\x3b\x93\x99\x7b\x75\x62\x62\x94\xbe\xf1\xd3\x28\x29\xce\x10\x93\x1d\x88\xc9\x92\x75\xb8\xa2\x12\x8c\x1b\x26\xc3\x44\xb1\xd3\x86\x15\xd3\xcd\xb0\x34\x99\x4d\x01\x53\x1b\x93\x3f\xe3\xc8\xf0\x8a\x76\xbb\x08\x1a\x4d\x1c\x2f\xe9\x37\xa0\x83\xa0\x13\xa0\x54\xe0\x29\xa9\x6c\xaf\x64\x64\x04\x2c\x5b\xc3\x57\x52\x11\x36\x58\x31\xac\xba\x95\x3c\x95\xf9\x42\x84\xc9\x25\x0c\x1c\x56\x1d\x4f\x7e\x94\x19\x80\x09\xd3\xcd\xb0\x50\x23\xa0\x59\x44\xdd\xe6\x7c\x54\xb1\x9a\x5b\xd4\x8d\x7d\xab\x62\x35\x87\xa6\x5b\x72\xc9\x88\x1e\xe5\x6e\x3b\x15\x63\x49\xa5\x7f\x86\xa3\xd7\x5e\x91\xaf\xdc\x74\xf3\xcc\x39\x79\xb3\xfe\x87\x90\x11\x79\x94\xb1\x91\x2f\xbb\x91\xbe\x97\x97\x1f\xac\x08\xab\x99\x0d\x1e\x49\x43\x2d\x2a\x28\x9d\x08\x5b\x41\xab\xe9\x5f\xa2\xdf\x01\x5d\x85\xc8\x6d\x56\x87\x8f\xc3\xa7\xb2\x3d\xb2\x47\xbf\x0f\x4b\x46\xe0\xed\x8d\x04\x97\x3e\x42\x98\x14\xe4\x47\x75\x5e\xf1\xa7\x86\xc9\xfb\x3a\x7c\x2a\xbb\xc3\x4f\xdb\x68\xb1\xa0\xe9\x93\xe8\x3b\x83\x6c\xae\xbb\x32\x2f\x0c\x4f\x1f\x87\xf9\xbe\x09\x4a\x72\x6f\xb1\x99\xbe\xac\xa6\xff\x8a\x5e\xe0\x48\xc1\xad\xc6\x42\x02\xf9\x82\xfc\x68\x27\xc3\x1b\xc8\x68\x4f\x3d\x94\xb2\xba\x36\x0c\x09\x53\xc8\xcb\xe8\x15\x8e\xe0\x20\xa9\x0b\x99\x23\x4c\xde\x31\x9d\x57\xad\x60\xc6\xc2\x9f\x88\x9c\xcd\xda\xd7\x41\x64\xf9\xf0\x12\xe7\xfc\x02\x21\x39\xbb\xd6\x65\xec\xb9\x84\xdb\xbd\xb3\x01\xb6\x49\x35\x7d\x1c\xb2\xe9\xb7\xd1\xaf\x72\x5a\x30\x00\xa5\x69\xc0\x32\xc2\x63\xdf\x1d\xc0\x8b\xd6\x75\x9e\x3e\xc1\xce\x26\x17\xcd\x05\xbe\x98\x93\xf9\x11\x06\xc4\xf7\x3a\x7c\xe5\xe5\xf9\xd7\x17\xe6\x79\xe9\xe5\xf9\xae\x85\x2b\x89\x59\x9c\x38\x7a\x62\x3c\x37\xb8\xb4\x4f\xda\x16\x07\x46\x94\x16\xd3\xef\xa2\x27\x84\xab\xd7\x57\xd1\x4b\x63\xbc\x89\x3e\xd2\x05\x3d\x25\x85\x9c\x6c\xb0\x3c\xfd\x31\x99\x1e\x5d\xf4\x2f\xfa\xf5\x60\x60\x6e\x3c\xcc\x3c\x98\xea\x2e\x32\xe8\x81\x70\xd9\x31\x7c\x6f\xf7\x4f\x50\x8f\xb2\xa9\x9e\x0c\x8c\x85\x2f\xe5\x94\x25\x28\x89\xb3\x0c\x41\x82\xa1\x86\xe2\x2b\xf8\xea\x8c\xf7\x0b\x59\xc3\xdc\xcc\x18\xe5\x4b\xce\xb8\x94\xb3\x4d\xfe\xa5\xd5\x3d\x0a\x84\x9e\xde\x75\xd0\x57\xb7\xa8\x47\x2b\xeb\x79\xd5\x78\xae\x93\x4d\xf9\x45\x42\xfd\x8a\xfc\xd5\xeb\xbd\xbf\x6a\x4d\x19\xd4\xf8\x0b\xc7\x51\x81\xee\xdc\x67\x56\xb2\xc7\x2e\x90\x25\xba\xa2\x7e\xf7\x06\xfa\x7d\x68\x16\xb9\xc9\x87\xc9\xeb\x50\x4f\xe2\x67\x91\x3f\x3f\xfe\xf2\xe5\xd9\xfc\x29\xf2\xab\x45\x31\x48\x39\xc1\x41\x9e\x75\x76\x07\xbf\xe5\x71\x3e\x0e\xbf\xf3\x72\x7f\xfb\x87\x73\x3f\xf1\x72\xff\xd9\x81\x8c\x22\x3d\x7e\x6f\x08\xa0\xd4\xef\xf6\x21\xd2\xaf\x4c\x27\xef\x43\x52\xae\x36\xc3\xcb\x90\xd5\x79\xb9\x7f\xea\x12\x0e\xb6\x88\xba\xb6\x10\x2a\xac\x7a\x93\xb1\x69\xb8\xbf\x40\xa4\x1b\x29\xf1\x8e\x7a\x9b\xfe\x2d\xfa\xbb\xdc\xd1\x34\x0f\x4e\xe3\x24\x23\x9b\xe6\x17\xb4\x9d\xba\xa2\x22\x5d\x4f\x1f\x1d\xfa\xc5\x43\x49\x9d\x63\xa6\xea\x98\xbf\xab\xad\x4a\x31\xfd\x55\xd0\x4f\xde\xbc\x7f\x65\x26\xbc\x4c\xd7\xc2\x88\xaf\xf0\xce\xc4\xff\x9b\xd7\xf1\xb6\x23\xd4\xcc\xff\x3b\x8e\xee\x68\xf9\x0d\xf3\x9d\xa8\xfc\x7d\xcf\xd8\xbd\xb4\xc8\xfb\x35\x10\x21\xdd\x6a\xbf\xd7\xe7\x55\xa7\x53\x07\xde\x22\x8c\xae\xb2\xf5\x2a\xd7\x21\x9a\x0c\xde\x81\xa5\x4f\x41\x74\x69\x09\x6e\x17\x40\xfb\x48\xfd\xd5\xf5\x08\xf7\xc7\xe0\xdf\x9a\x14\x56\x73\x34\x57\xd6\x4a\x14\xd2\x91\x8b\xf6\x37\x89\x8b\x77\xb4\xe4\x01\x8a\xfd\x59\x5e\xab\xf2\x3c\x0b\x3b\x6c\xd7\x51\xc4\xc9\x24\x3f\xef\x1e\x5b\xc1\x12\xe0\xbe\xf3\xaa\x67\xfa\x4f\x62\x2b\x70\x1f\xa0\x3a\xa6\x35\xd7\x2b\xef\x82\x54\x21\x15\x0d\xcf\x33\x52\xf9\xa6\x5d\x0b\xa6\x17\x45\x12\x04\x6a\x20\xdc\x8e\xcf\xfd\x84\x39\x73\x6b\x95\xfa\xcb\xf4\x71\x6b\xcb\xe0\xec\xcb\x16\x99\x77\x61\x46\x1e\x87\xc2\xaf\x49\xb0\xd6\x4a\x3b\xd7\x48\xff\xfb\x90\x33\x82\x24\x01\x21\x98\x37\x71\xf5\xb4\x15\x7b\xe6\x4b\xcc\xbc\xe3\xbc\x24\x5a\x0a\x46\x32\x46\x12\xbf\xb2\xb2\x5d\x59\x67\x85\x94\xac\x4b\xed\x86\x1f\xc2\x4a\x4e\x13\xdc\x5d\x26\xa5\x03\x8a\x31\xa0\x90\xe6\xc8\xa7\x17\xb6\x4c\x12\x0c\xbb\x40\x6e\xd9\x7e\xbc\xd2\x93\x78\xc0\x92\x68\x4e\x5f\xf9\x9b\xe8\x48\x6e\xbc\xd3\x76\x07\x83\x6f\xfc\x9d\x55\x87\xc9\x1e\x18\x1b\xef\x64\xa4\xb7\xd1\x52\xf6\x0b\xc6\x91\x69\x5c\xd6\x5a\xaa\xd9\x97\x8d\x7c\x62\x47\x9e\xb4\xa7\x51\xec\xf7\xf7\xd2\x2b\xac\x75\x5a\x0a\x02\x73\xe6\xf1\xca\x37\xe4\x34\x51\x71\xea\x18\xe5\x0a\x5b\xd9\x2a\x3b\xb4\xaa\x26\xfd\x52\x47\xf8\x79\xb9\x52\xd6\x46\x5f\xba\x73\xdc\x59\x6f\xcd\xbc\x43\xd9\x7a\x67\x0a\x3c\x0e\x37\x0c\xa8\x2b\x2f\xbd\x2b\x7d\xd3\x1e\x4f\x9e\x6b\x6c\x2f\x96\x30\x8f\xc3\xbd\xbb\xda\x2b\xa0\xf0\xbe\x6b\x97\xb4\x6e\x97\x64\x00\xba\x92\x00\x7d\x79\xb1\x1e\x9c\x57\x7e\xe9\x57\xd0\x0b\x08\xcb\x89\x16\x04\x8f\x5b\xb4\xe2\x4d\xbb\xe6\x6f\x3e\x51\xc5\x0d\x9c\x20\xf7\x2e\x11\x15\x15\x5a\x62\xcf\x1e\x1f\x2e\xed\xf1\xa1\x90\x27\xca\x1f\x77\x17\xc5\xa5\x3f\x44\xad\x29\x7c\x09\x5d\xaf\xd6\x72\xee\xb7\x67\xe1\x4d\xac\x7d\xa8\x47\x03\xf5\xde\xcf\xf3\xbe\xdd\x4e\x2d\x0c\x60\x89\xcc\xf7\x6c\xf7\xc8\x7e\x0d\x87\xbe\x2e\xbc\xd7\x77\x2c\xe2\xbb\x88\x03\x38\xef\xf1\xe4\x13\xfd\x7a\x0d\xeb\x71\xdf\x4e\xba\x87\x82\x78\x1c\x3e\x67\xe4\x86\x91\x6b\x26\xa7\x91\x7a\xc1\xd1\x27\xc7\x4d\xa5\x30\x73\xea\xda\x21\x06\xb9\x4b\x74\x9b\xf7\x9c\xdd\xbd\xe1\xdf\xb9\xdf\xfb\x28\xe4\xe3\x97\x4f\xa8\x0f\x66\x19\xb6\x0f\xff\x77\x4e\x71\x97\xfa\x75\xf8\xcc\xab\xf2\x6d\x6b\x0a\x39\x72\x4a\xed\x82\xaf\x19\xf9\xe0\xcf\x84\xd7\x6d\x00\x2d\xd6\x7e\xad\xb1\x76\x17\xdb\xc2\x6c\x52\xed\x68\xa1\x5e\x03\x99\x9c\x6a\x8f\x5b\x58\xf4\xb1\x37\x3f\xe3\xf2\xb3\x74\xee\x6b\x1f\xba\x0f\x5e\xde\x65\x21\xd6\x9f\xcd\xed\x2f\xe6\x77\x7e\x47\xcc\xbd\x3e\x78\x49\x9e\xfa\x95\x3c\xf5\xd3\x19\xf6\xcf\xeb\x50\x1d\x9e\xe7\xc0\x74\x31\x27\xc0\xef\xc3\x7f\x11\x15\xf4\x3a\xfc\x5e\x9e\xac\xe6\xc8\x6f\xea\x8f\xfb\x4a\x7a\x1c\xae\x18\xf9\x91\x39\x1e\x97\x1c\xbb\x1f\xdd\xae\xad\x9b\xf3\xc6\x70\x1c\xf7\xaa\x43\x58\x0b\x82\xb7\xe6\xf8\x13\x5d\x11\x73\x99\x18\xa1\x52\x2c\x11\x49\x92\x68\x36\x27\x9a\xf6\x8b\x14\xdf\x33\x64\x92\xc0\x1b\xc4\x64\x44\x10\x18\xc9\x45\xa0\x6f\x69\x99\xc2\x51\xee\x18\xc4\x44\xf3\x7c\xfd\xb0\x20\xb8\xbd\xea\x24\x33\x02\xd5\x2c\x8d\x64\xe1\x8d\x53\x86\xf7\x39\xe8\x3b\xc2\x8a\x1d\x06\x7b\xe5\x33\xd8\xfd\x38\x4c\xaa\x1d\x6d\x09\xab\x8f\xac\x54\x1e\x20\xbb\x61\x0c\x76\x58\x27\x08\xb8\xc2\x08\x3c\x3f\xd9\x34\xea\x06\x48\x36\xbc\xf2\x59\xb1\x2d\xc5\x70\xa2\xae\x0c\x31\x71\x97\x93\x3d\x7a\xa3\x2f\x2e\xc1\x3e\x68\xd8\x36\x03\xa7\xb9\x46\xbe\x40\x49\x65\xed\x34\x9b\x4b\x54\x4a\xf9\xb4\x88\x3c\xd1\x45\xea\x0e\xfc\x3d\x10\xbc\xe9\xf7\x51\x8f\x8a\x20\x40\x83\x81\x7c\x99\x72\xb9\xc7\x25\x29\x4b\x50\x4b\xec\xc6\x78\x88\xb3\xb7\xd0\x09\xdc\x43\x69\x8a\x9f\x32\xcb\xdf\xa6\x9c\xd8\x95\x01\x4c\x1a\x49\x4b\x53\x41\x34\x06\x06\x9f\xc8\x9f\xef\x3b\xd6\xed\xbb\x11\x9e\x80\xd9\x9b\xd0\xf8\x49\x9b\x0a\xc5\x5e\x8d\xb2\xe9\xab\xe8\x19\x06\x51\x49\xed\x4b\x4d\x58\xcd\x7e\x31\x13\x8e\x3b\x2b\x8b\x9c\x60\x61\xb8\xb2\x07\x9d\x75\x3c\x35\x2f\xad\x5d\xb5\x08\x82\x8f\x60\xa1\x63\xea\x28\xe7\x63\x14\x55\x4d\x03\xae\x47\x39\x11\x44\x62\x9b\x1d\x21\x7f\xe3\xcb\xd4\xbb\x6a\xa6\x37\x1d\x0d\xda\x56\x74\x8f\x5e\x99\xe8\x91\xb6\xa2\x09\x4e\xd5\xf5\x05\xee\x08\x13\x41\xed\x8c\x82\x1b\x61\x20\x4a\x25\x79\x76\xb1\x38\x32\xc6\xd1\x3d\x3d\xf1\xca\x67\x4d\x4f\xb6\xea\x82\xd8\x78\xdd\x86\x58\xa3\x6f\x4b\xe9\x1b\x2c\xa8\x00\xa6\xbf\xbd\xd2\xcd\x7a\x74\xc9\xf4\xe5\xaf\xb9\x40\x11\xfa\x46\x01\x76\x2c\x0e\x0e\xf4\x54\x2e\x4c\x4a\x7d\x3d\x62\x93\xd8\x2c\x32\xde\xdc\x44\xd8\xf4\xca\x0c\x9f\x4e\x4d\x96\x94\x53\x9a\x1c\xb8\x7d\x2e\x65\x12\x55\x25\x5a\x7f\x4b\x2e\x97\x7e\xe8\x73\xaa\xdc\x7c\xae\x6b\x40\x8e\x2e\x60\xaa\x8e\x99\xfd\x71\x34\x52\xdc\x74\x89\xb4\xe5\x19\xeb\x16\x16\x83\x2b\xd1\x45\xfa\xd5\xc4\x91\x81\xbc\x5d\x7b\x1b\x17\x68\x48\x7d\xde\x59\x17\x22\x3f\x20\x35\x02\xc4\x76\x30\x71\x5d\x1f\xcd\x88\x95\xb6\xf2\x63\x60\x62\xe1\x69\x59\xd7\x31\x34\x41\xb3\xed\x7b\xfa\xfc\x5c\xd7\x4b\xb0\x72\x9a\x0f\x53\xb1\x5d\x64\x4c\x6b\x69\x43\xa2\xa9\x50\xcb\x65\x2a\xf4\x2d\x53\x3f\x5c\x4e\x47\xd1\x18\x47\xad\xa6\x4c\x47\x51\xdc\x0e\x02\xb1\x68\x90\x7f\xd6\x1b\x3f\xf6\xe6\xd4\x34\x8e\x8e\xbf\x89\xb1\xd3\x7d\x78\x99\x6f\xb6\x55\x04\xd3\x4f\x67\x3b\x1c\x7e\x33\x8d\x4c\xde\xa8\xbe\xb8\xad\x2f\x1a\xfc\xd5\x11\x01\x94\xff\x54\xe1\x22\xd0\xd7\x8e\x32\x65\x26\x12\x1d\x7d\x83\x5a\xb1\xcf\xf3\xd4\xc6\x7d\x73\x84\x48\xc6\x73\xa6\xa3\x5c\x9e\x23\x44\x96\x22\x4b\x23\xb4\x28\xc0\x5e\x32\x88\xcd\x3f\x29\xe2\xe4\x03\xab\xca\x08\x85\x78\x36\xbf\x6d\xfe\xf4\xa7\x0b\x74\x81\xfe\xf9\x4f\x44\x56\x2c\xdb\xb0\x02\x76\xa8\x6c\x0a\xcc\x19\x14\xb5\xe4\xac\x15\xbf\x06\xf4\x35\xb6\xf0\xf1\xa3\x36\x27\xf0\x71\x53\xb0\xb2\xe4\x22\x7f\x9c\x65\xe2\x9a\xa5\x51\x45\xca\x0f\x7c\xf3\xdc\x86\xef\xd9\x19\xe1\x56\xa8\x7d\x1f\x74\x50\xf5\xe8\xab\x20\xa8\x7a\xf4\x65\x5d\xbb\x1b\x21\xd0\xe0\x00\xeb\x3d\xbc\xac\x58\xf1\x1d\x80\x19\x22\x23\x92\x5d\x22\xd2\x82\x12\x44\xb3\xe7\x47\x7b\x85\xfc\xfd\x74\x7e\xa6\xbd\x89\x59\xb2\xfe\xa2\xc4\xf1\x66\x93\xf1\x04\xf6\xa5\x2f\xae\xc0\xcf\xf3\x71\xf0\xef\xe4\xfa\xb7\xa0\x93\x63\x4a\xf4\x55\x77\x77\x64\x41\x37\xe2\xd3\x60\xfe\xcf\x64\xcf\xd2\xfe\x27\xf3\x67\xe9\xbe\x12\x60\x20\x9c\x2c\xfe\xde\xdc\x2e\xfa\x73\x30\xfc\xb1\x82\x1a\x90\x1b\xe7\x39\x0b\x91\xaf\x40\x33\x9b\x13\xef\x2a\xbd\xa5\x46\xa1\xe5\xfc\xcd\xc2\x76\xba\x17\x8d\x57\xd6\x7f\x61\xeb\x05\x2b\x06\x69\x5c\xc5\x47\x71\x1a\x6f\x2a\x56\x1c\x0d\xb4\x80\x34\x22\x33\x7d\xc7\x57\x82\x6d\x76\xd0\x13\x41\x04\xa9\x2c\x3c\x5f\x4a\x94\x02\xca\x1d\x6d\x62\xa3\x03\x87\x62\xd7\xd9\x53\x09\xcf\x0f\xab\x69\x65\xdc\x29\x47\x15\xe1\xf4\xe8\xa2\x98\x5e\xe4\x47\x5a\x4a\xee\xe8\x62\x76\x31\xff\xca\x93\x52\x76\x66\x99\x81\xe8\xed\xc1\xc6\xae\x6d\x6b\xc0\x6b\x41\xc1\xf7\x02\xdd\xa3\xa9\x52\x4c\x8b\x10\x47\x05\x71\xde\x55\xe7\x94\xe5\xb2\x07\x7f\xf9\xf9\xe5\x53\xa3\x76\x14\x56\xb8\x8f\x28\xea\xef\x89\x29\xb4\xa0\x58\xe9\x2c\xce\x6f\xe9\x73\xd9\x03\xc3\x1f\xf9\x47\x6e\xcc\xe9\x87\xb7\x8b\x2d\xcf\xd2\x5f\x7e\xfe\x21\xda\x47\x79\xa9\x7d\x20\xcc\xf1\x2d\xdc\xd7\x2e\x79\x9e\xfe\xcc\x12\x10\x67\x32\x62\xce\x2b\x5e\x0e\xb7\x45\xf6\x42\x14\x2f\x6c\x6c\x58\x11\x90\x69\xb4\x99\x1e\x67\xd9\x5d\x39\x1e\x67\x59\xe8\x12\xff\xbe\x65\xc5\xcd\xbe\xa4\x3f\xc9\x88\x90\x13\xe6\x27\xbc\x1b\x96\x9f\x5c\xb4\x97\x49\x82\xf2\x63\x9c\xef\xad\xe0\x85\x8e\xdb\x81\xfd\xbb\xb8\xfc\x54\x1e\x1d\xbd\x93\xed\x09\xcb\x44\x7e\x59\xbe\x13\x77\x65\xb4\x09\x5a\x59\xb5\x97\x83\x3b\x1b\xf6\xd4\x8b\xf7\xfa\x6d\xbb\x49\x3f\x99\xed\x17\x2f\xbe\x55\x9f\x52\x38\xb9\x3b\xe3\x33\x2f\xde\x64\x34\x6b\xc0\x4f\xfd\xde\xcc\xa3\x50\xb9\xb8\x26\xef\xf7\x4e\x2c\x23\x49\x9f\xd3\xd9\x9c\x70\x3d\x21\x2f\x99\x72\x28\x4d\xd0\x4a\x94\x15\x28\xe1\x18\x08\xde\x14\x6c\xc9\x3f\x3a\xc2\x59\xd9\xc3\x53\x42\x70\x71\xb5\x7a\x21\x60\xab\x0d\x19\xc6\x60\x7f\x0a\x8c\x5f\x81\xb3\x5d\xfd\xb1\x77\xcd\x60\x22\x64\x02\x63\x5d\x51\x60\x92\x53\x65\x3a\x0a\x44\x9b\x49\x8f\x07\x41\x1e\x04\xe8\x08\xf5\x24\xcd\x63\xc9\x24\x90\x2d\x46\x47\xa8\x9f\x63\x92\x37\xa4\x3b\xeb\x77\x1c\x6d\xed\xef\x1f\x70\x8f\x4d\x5a\x0b\x20\xda\x47\xe9\xed\xf4\xab\xcd\x05\x93\xfb\x8b\xf2\x54\xed\x3c\x7b\xe0\xfc\x7c\x4e\xb3\x30\xbe\xb4\x79\xad\x8c\x7a\x75\xfc\x9b\x5d\x63\x97\xc8\xbf\x91\xdf\x5f\x28\x7f\xb0\x7f\xfd\xc5\xf2\x6f\xd4\xec\x2f\x99\x3f\x9a\x5d\xcd\xf7\x7d\x4b\xe6\xae\xb5\x92\xef\x44\x58\x65\x23\x64\x1c\xf4\xa9\x99\x5c\xd4\xb5\xde\x72\xac\x51\xca\x7f\x5c\x1c\x5d\x1c\x79\x8e\x8a\x8f\x56\x55\xb5\x09\x4b\x3c\x8d\x5a\x11\x53\x16\x81\x70\xb5\x73\x53\x33\xc2\x53\x84\xfa\x45\x9f\x45\x55\x5f\xae\x08\xa6\x8f\x8f\x33\x2b\xff\x5d\x04\x01\xb7\x0b\x32\xb7\x1f\x39\x26\xdc\x2d\xb5\x86\x78\xab\x78\x0f\x7d\xab\x9a\xa6\xed\xb0\x27\xf1\x9a\x65\xc0\x74\xf0\x8c\xc7\x6d\xb2\x6d\x11\x43\xa8\xc4\x3a\xf8\x80\x0d\x9f\xe8\x4e\x85\x6d\x8e\x6e\x81\x92\xa9\x58\xb1\xe6\x39\x7b\x22\xd2\x9b\x37\x85\x58\xf3\x92\xd1\xbd\x53\x42\x19\x97\x0f\xf1\xb0\x5a\xb1\x3c\xf4\x0d\x69\x28\x6a\xa0\x50\x6e\xf1\xe8\xf7\x6f\x5f\xbf\x52\xf6\x06\xc2\xc2\xf8\xa2\x51\xc6\x2d\x7a\xa1\xf0\x4d\x7a\xbe\xbd\xc9\xab\xf8\x23\x98\x11\x35\x76\x45\xc5\x81\x31\x3c\x22\x0f\x7d\xdb\xf2\xa0\xc7\x86\xe2\x43\x5d\x1f\x8f\xee\xf5\xe0\x84\x7b\x3c\xba\xaf\x5e\xd0\x77\xcf\x1f\x3f\x93\x23\x57\x0d\xd7\xac\x5a\x89\x74\x9a\x88\xbc\x14\x19\x1b\x5e\xc7\x45\x1e\xa2\x77\x2b\x5e\x1e\x16\xac\xdc\x88\xbc\x64\x87\xd7\x71\x79\xb8\xcd\xe3\x45\xc6\x0e\x2b\x71\xb8\x60\x87\x00\x5f\x7a\x18\x97\x87\x92\x34\x1c\x22\x52\xe0\x28\xa7\x6d\x0e\x5c\xae\x8c\x3c\x2d\x59\x95\xac\x3a\xde\xb9\x94\x44\x31\xb5\x06\x16\x4a\xa5\x3d\x05\x36\xe6\x42\x04\x39\x10\x36\xd2\x81\xb9\x0d\x31\x14\xd2\x41\x49\x77\x0c\x9b\x1c\x32\x27\x93\xea\x88\x1e\x6b\x3b\x0f\x4a\xd8\xb5\xbe\x9a\xc4\x79\x2e\xaa\x43\xb9\xa9\x1e\x56\x2b\x76\xf8\x4f\x48\xf7\x4f\xad\x0a\x7c\x28\x8a\x56\xa8\xe2\xaa\x0d\x0f\x9f\xf1\xf4\xf0\x46\x6c\x0f\xd7\x2c\xce\x65\x87\xc0\xa0\x64\x99\x4a\xab\x48\x41\x9d\x03\xf4\xb5\xa7\x08\xef\x85\x18\xd2\x58\xf3\x81\x65\x08\xdd\x05\x3d\xfb\xb3\xee\xf8\xef\x58\x9c\xb2\xa2\xa4\xbb\xb3\xb7\xed\x1e\x5e\xc9\xde\xb7\x0c\xa4\x56\x07\xbb\x8e\xe2\xf8\x5e\x37\x71\xb7\xce\x14\x41\x31\xcb\xe7\x24\xa6\x23\x52\xd2\xde\x78\x12\x9f\x1b\x6e\xd3\x24\x56\x36\xd6\xee\x3f\xa4\x94\x0a\xdf\xfe\x7a\x8c\xf1\x6d\x49\x7b\x23\x27\x66\x0f\xf6\xcd\x4a\x05\xe7\x96\x8a\x61\xb9\x5d\x28\xae\x39\xf8\x92\x1a\x56\x05\x5f\x87\x98\x64\xad\x98\xb8\x3f\x26\xa6\x2e\x93\xe4\x20\x0b\x82\xb0\x9a\x6d\xdb\x5e\xcc\xe7\x34\x23\xd5\x6c\x3b\xa7\x19\xb6\x3d\x57\x81\x2d\x31\x56\x70\x58\xac\x2f\xf3\x4a\x7c\x17\x97\x2b\xda\x25\x3a\x0d\xb1\x4c\x29\xc8\xb2\xe7\xf4\x96\xe7\x49\xb6\x4d\xd9\x4b\x75\xb2\x71\x6b\xc7\x14\x55\xbc\x10\x45\x58\x81\xf9\x82\x0c\x5c\xdd\x1d\xb4\x26\x97\xa5\xa8\xf9\x6e\xed\x86\xb3\x78\xdb\xf8\xee\x34\x3b\x89\x42\xa1\x21\x23\xa2\xd9\x4d\x05\x2c\xc0\x56\xd3\x60\xa3\x7d\x13\x17\xf1\x7a\xdf\x94\x70\xf8\xd1\x53\x6e\xf6\x34\xae\x4b\xb2\x05\x9c\x2d\x07\x52\x99\x3c\xe2\x25\xfc\x87\xb9\xe2\xb3\x71\x18\xf8\xdc\x8c\x39\x3f\x2f\x27\xbc\xdf\xc7\xc2\x31\x4e\x80\x47\x98\xcf\xf8\x1c\x47\x2c\x2c\xfa\x68\x86\xfa\xe1\x2e\x67\x7a\xc6\xe7\x53\x70\x8c\xd8\x47\x73\xa4\x92\x3b\xcd\x8a\x1d\x11\x36\x34\x53\x05\x1c\xaa\x29\x3d\x97\x7b\x81\x9e\xdd\xce\x24\x53\x25\x2c\xa2\x96\x34\x3d\x6e\x0c\xcc\xdb\x43\x9e\x1f\xe6\xd8\x40\xb3\xd5\x55\x6e\x4d\x95\x1a\x64\x07\xc0\x1f\x69\x39\x58\xb1\x9c\xf1\x39\x08\xdc\xab\x37\x50\x38\xf5\x4c\x78\xd8\xfa\xb7\xba\x56\x3b\x27\x43\x84\x08\xc3\x7a\x3f\x0a\x10\x76\x96\x84\xbf\x3e\x1e\x1d\x5d\x12\xd4\x97\x7b\x94\x6e\xa9\x3a\x7b\x3a\x81\x45\x82\xde\xbf\x67\xe5\x8f\x4a\x22\x94\xdc\x42\xad\xdd\x33\xef\xbe\x73\xaa\xfe\xf7\x8f\xa9\x73\x72\xa7\x55\x81\x3f\x5a\xb9\x3a\xb9\x4b\x0c\xac\x51\xfd\x81\xbf\x95\xea\xd2\xd4\xe5\x67\x68\x0e\xd9\x6f\xed\x62\x8a\xd0\xc0\x1c\x78\x89\x3b\xed\x29\x65\x0c\x7d\x90\x53\x1f\x70\xfe\xf2\x5e\xfd\x84\x97\x2c\x67\x45\x5c\xb1\x97\xe9\x0b\x51\xf8\x11\x76\x91\xec\x27\xc8\xbc\x55\x04\x64\xa4\x7f\x16\x52\x05\xf8\xc7\x1c\x15\xe2\x9f\x5f\x8c\x2e\x49\x9c\xb1\x32\x61\x8a\x30\xff\x7d\xcb\xca\x0a\x14\x72\xcc\xe1\x4f\xc3\x58\x88\xed\x46\x65\x2b\xef\x22\x72\x0d\x60\xb3\x6a\xde\x90\x72\x25\xb6\x59\xfa\x33\xcb\x44\xbc\x8f\xde\xf7\x5c\xdb\xb5\x92\xde\x45\xdd\xf7\xac\xe3\x2b\x9d\xfc\x49\x9c\x7c\x90\x40\xe5\x5f\x50\xc7\xe8\xae\x4c\x77\xd6\x36\x52\xb4\x91\x99\x19\xd5\x67\xa6\xa8\x56\x35\xf4\xf9\x28\x7e\xb2\xb2\x12\x05\x73\xfc\x96\x79\x47\x59\x7a\xbf\x55\x0c\x6d\x14\xdd\xe2\x77\x50\x4e\xa3\xe8\xb1\xaa\xf2\x50\xf1\xb5\x41\x6a\x24\xe6\x19\x4b\x91\xb6\xd7\xcd\x4b\x9d\x02\xa8\x01\xb9\x8b\xf9\xe4\x30\x04\x2a\x84\x03\xc4\x6f\x85\x0f\x0a\xa3\x03\xa5\x0c\x15\x6a\x83\x85\xda\xf8\xb7\x66\x4d\x71\x91\xd3\xc2\xff\xd2\x2e\x52\x78\xc6\xb4\x37\x59\xf3\xaa\x22\x32\x9e\xb3\x57\x20\xb2\xa7\xbd\x75\xa9\x0f\x15\xb9\x66\x65\x19\x5f\xca\x4c\xfa\x4d\x05\xe7\xaa\xa0\xdc\x16\x92\x9b\x02\x72\x2f\xb3\x3c\x9e\xd2\x02\xfe\x74\x83\xa1\xef\x4b\xca\xea\x7a\x76\x5b\xf1\x2a\x63\x91\xed\xa3\xe7\x6a\x58\x52\x56\xc5\x3c\x8b\xaa\x66\xde\xfc\x61\xec\x70\x67\x06\x55\xad\xdc\xf1\xde\x09\xc0\xbb\x88\xdc\x32\xab\xde\x29\x17\xd0\x25\xab\x76\x6d\xd5\x1d\x56\xc3\x9d\x9c\xcd\xe7\xeb\x81\x74\xef\x60\x83\xfd\x83\xf5\x78\x39\x15\x4b\xfb\x2d\x2b\xae\xcc\xec\x60\xc3\xa7\x22\x5f\x66\x3c\xa9\xcc\xf7\x2b\x51\xbd\x90\xeb\xc3\x7c\xbf\x10\xc5\x82\xa7\x29\xcb\x4d\xc0\x2f\x79\xbc\xad\x56\xa2\xe0\xff\x62\x36\xd1\xe3\x85\x28\x6c\x09\xef\xf8\x9a\x89\xad\xfd\x7c\x99\x5f\xc5\x19\xb7\x49\xf7\xe0\x5a\x79\x4c\x70\x22\x72\x77\xc8\x81\xab\x49\x1c\xba\xd5\x30\xbd\x6d\xa2\x0a\x9b\x29\x64\xcd\x09\x76\x45\x0a\xc5\x5e\x6d\x24\xa0\x20\x98\xb7\x0e\x0a\x92\xd7\x75\x4b\xb7\xc7\xee\xd3\x1d\xb2\x94\xb9\x18\x4c\x0a\xbd\x33\x50\x2e\x4f\x6d\x45\xe3\xda\x97\x93\xbb\x8b\xf0\x97\xe2\x5d\x85\x69\x0b\xb1\x22\x2c\x08\x7a\xb7\x62\x87\x1a\xd3\x1c\x16\xec\x37\xb0\x5e\x01\x74\x79\x22\xd6\x6b\x5e\x1d\x2e\x58\x12\x4b\x14\xc2\x2b\x38\xd4\x70\xd5\xe3\x48\x22\xb0\x56\xef\xc7\xda\xfa\xdd\x4e\xa1\x0e\x97\x54\x7c\xcd\xd2\x43\xb1\xad\x20\x77\x6b\x28\x4b\xcd\x14\xfd\x44\x6e\x59\x7b\x2c\xe7\x02\x53\xb5\x7b\xf3\x62\xab\x2d\x58\x7f\x22\x37\x87\xf3\x98\x9d\x5c\x50\xc2\xee\x6c\xcb\xcc\xb5\xe4\x27\x0b\x5a\x9a\x69\x0b\xa5\x74\x26\x71\x72\xa0\x6c\xe6\xee\x14\x91\xc8\x3d\xe2\xb0\x75\x78\x2a\x98\xf2\x21\x01\xe5\xb4\x17\xc7\xf2\x40\x99\x77\xff\x04\x24\x0a\x35\x1f\xa6\x5b\x38\x63\xc6\x87\x89\x5e\x6d\x50\x5a\x7b\xe9\xad\xb4\xed\xba\x3f\x50\x5a\x09\x2b\xf9\xd0\xe8\xb7\xb7\x97\x76\xfa\x99\x2d\x0b\xd4\x8c\xef\xde\xb2\x76\x2f\x09\x3e\x49\x9b\x7d\xe6\x6e\xe0\x3f\x0f\xed\xb6\xb8\x15\x5f\x8c\x0a\x5b\xb9\x3e\x89\x6e\x2d\x35\xf7\x45\x25\x17\x66\xbd\x37\x9f\xa5\x62\x7f\x2b\x45\x3e\x88\x37\xfc\xf3\x5d\x5e\xb0\xb2\xda\x73\xfd\xf2\x99\xf1\xe9\x8e\x80\xc4\x70\xff\x1f\x10\xc6\x9c\xda\x3b\x9d\x4f\x52\xc5\xae\xb9\xf1\x6f\xf1\xc7\xd7\x40\x34\x94\x3b\xdc\x3d\x8b\xce\xd5\xf5\xce\x2d\x58\x5f\x01\x11\xa3\x5c\x49\xc2\xb4\xbe\xea\xba\x75\xb1\x76\x95\xa7\xc3\x78\xc3\xd5\x0d\x9f\xde\x49\x14\x9f\x10\xcc\x1e\xe9\x3a\x9c\xe8\xd1\x4a\x31\x1e\x86\x8f\x93\x84\x6d\x2a\xda\x0d\xf8\x54\xe9\x24\x6f\xee\xa0\x93\xc7\x8e\x4e\xde\x73\x36\x57\x1d\x26\x61\x72\xac\x4b\x77\xf4\x86\x5b\x23\x77\xc9\xe2\xce\x59\xa0\x91\xfe\x5b\xfc\x31\xe4\x04\x7d\xfb\xfc\x1d\x22\xb7\x72\xcc\xa3\xdb\x25\xcf\x2a\x56\x44\xb7\x3c\x8d\x0a\x7d\x08\x23\x08\xae\xaa\xff\x10\x63\x30\x8d\xcb\x15\x2b\x5a\x9c\xc1\x70\x44\x3c\xde\x20\x56\x5c\xe9\x4f\xb1\x75\x55\xd3\xc0\x59\xeb\x2e\x9f\x40\x27\x32\xf7\x12\xfb\xdb\x3e\xe4\x29\x29\x48\xfb\x26\x66\x4f\x17\x08\x82\xde\x3c\x7e\xf7\xf4\x3b\xd3\x09\xbc\xc1\x6d\xda\x9c\x7f\x66\xe1\xa9\xe5\xf4\x99\x45\xf7\xef\x61\x3f\xa6\x8d\xde\xfd\xe7\xaf\x3c\x60\xa3\xe9\x55\x43\x57\x77\x2d\x45\x35\xaa\x3f\xbf\xfd\xcb\x9b\xa1\x66\xd3\x12\x41\x91\xb5\x18\xe6\x38\x85\xbf\x01\x97\x85\xc4\x7b\x23\x73\xd9\xcf\x3b\x2e\x11\xcd\xfc\x15\xc0\xc2\x15\x94\x0d\x95\x41\x42\xc3\xc6\xd3\x8e\x08\xb6\x25\xb1\x0b\x09\x06\x5d\x73\x77\x63\x67\x6c\x6a\xa8\x68\x96\x30\xb6\xca\x21\x22\x08\x44\xe7\xa0\x32\xb5\xc9\x04\x8e\x3c\x47\xca\x5b\x0d\x8d\x11\x6b\x53\xa6\x4e\xa1\xe3\xdf\xad\x0a\x71\x9d\xfb\xdc\x63\xc5\x37\x16\xb4\x95\xc0\x39\xe5\xab\x14\x39\x83\x28\xd5\xfe\x84\xde\x42\x03\xb0\x00\x05\xf0\xbc\x45\xee\xb8\x5c\x40\xd0\x74\xf3\x80\x78\x0f\x18\xe5\xd5\x25\xec\xbb\x81\x60\x9a\x0d\x0d\xf6\xb4\xb6\x45\x46\x64\x2f\x7a\x90\x81\x4f\x63\xdd\x89\x25\xfd\xcc\xe9\x25\x44\x1a\xe9\x68\x32\x20\x3a\x44\xfd\x02\x4c\xe7\x72\x78\x86\xa2\xae\x11\xc2\x96\x19\xa9\xca\x8d\xe2\xc6\x72\xd0\x54\x23\x1d\x4d\x16\x96\xb8\x09\x65\xcf\xaa\xb6\xde\x31\xcc\xa6\x8d\x84\xbb\x61\xae\xeb\x56\x0f\xb7\x46\x5d\xd0\xd8\x0e\xb3\xa7\x26\xe1\x59\x24\xd4\x90\x19\x7e\x3e\x71\xbd\xaa\x5d\x5c\xab\x0f\xa2\xab\x8b\xc0\xff\x8b\x7a\xf7\x29\xfb\xe4\x4b\x8b\x54\x61\xef\xd8\xc7\xca\x16\xa9\xd0\xdd\x1e\xae\x34\x56\xa6\x40\x1f\x67\x59\x27\x22\xc4\x7e\xdd\x4b\x4f\xd8\xb6\xf1\xee\x5a\xd9\x70\x29\x8a\xe7\x71\xb2\xf2\x65\xd1\xbc\x5b\xac\x59\x31\xa7\xac\xc1\xbe\xe1\xb5\x95\x27\xb9\x9a\x14\xe0\x77\x81\xc7\x59\x49\x51\x19\xaf\xd9\x40\x14\xfc\x52\xd2\x39\x0c\x7c\x6b\x60\x39\x1f\xe5\x86\x00\x57\x4b\x6a\x72\xd5\xb5\xba\xf6\xf0\x82\xa0\x34\x8d\x74\x3e\xb0\x9b\x32\xd4\xb9\x0d\x33\xda\xf8\xbd\x96\x73\xd2\x59\xb3\x99\x22\xfc\x68\x30\x9e\xa2\x00\x45\x68\x8a\x0e\x20\xb6\x4f\x11\xea\xe7\x7d\xe8\xae\x7d\x1c\x5b\x6c\x8a\x56\xf7\x14\x87\x6c\xb8\x10\xe9\x8d\xba\xee\x51\x6c\x70\xbe\xbc\x31\x69\x6c\x3f\x35\xc6\x4a\x73\x87\x90\xe8\xd0\x69\x64\x2f\x61\xa1\xd0\xf9\xf2\xff\xe5\xee\xdd\xbb\xdc\xb6\x91\x44\xf1\xff\xf5\x29\x24\xee\x5c\x2d\x71\x1b\x56\xd4\x33\xb3\xe7\xdc\x9f\x6c\xa6\x4f\xc7\x8f\x89\x67\x62\x3b\x6b\x3b\xc9\xce\x6a\x75\x7b\x69\x11\x6d\x61\xac\x26\x7b\x40\xc8\x9d\x9e\x16\xbf\xfb\xef\xa0\xf0\x06\x01\x4a\xed\xd8\x99\xec\xfd\xc7\x56\x93\x20\x1e\x85\x42\xa1\xde\x55\xb6\xfc\x5d\xd3\xf0\x85\x24\x81\xeb\xe6\xea\x7a\xc7\x49\x95\xf7\x59\x34\x63\xed\x7b\x75\x53\x13\x06\xd2\x1e\x9a\x6d\x9b\xe6\xc3\xee\x3a\xcf\x04\x07\x4d\xd7\x64\xa1\xbb\x83\xfc\x6f\xbb\x96\x3c\x13\xe4\x77\xa0\x6f\x69\xc4\x89\x76\x2d\x04\x86\xed\x47\xf2\x1a\x1c\xc7\x24\xe3\x9e\x67\x82\xef\xa7\xef\x17\xa4\xfe\x48\x59\x53\xcb\xd4\x49\x3a\xc1\xc9\x24\x07\xc4\x81\xce\x9e\xbe\xfc\x71\x3a\x85\xa2\x74\xf6\xc1\xec\xe2\xcf\xff\xfe\xc3\xd3\xd7\x7f\xbd\x78\xfe\xf2\xed\xd3\x3f\xbd\x3e\x7f\xfb\xfc\xd5\x4b\xb4\xdf\x4f\xca\xe9\x74\xd2\x74\x08\xb7\x0d\xe3\xce\x96\x44\x2e\x7f\x0f\x15\x10\x66\x85\xd6\xa5\x81\xea\xfc\xd1\xef\x8d\xcb\xab\x93\xb6\xe6\xae\xc3\x82\xd5\x13\x9d\xe7\xe2\x22\x87\x84\xce\x0f\x9b\x93\x13\x54\x2f\xe9\xb2\x59\xad\x0a\x22\xff\x37\xd4\x65\x98\x43\x8a\xb2\x11\xf7\xe2\x91\x34\x8b\xe0\x71\x15\xd2\xcd\xa5\x3e\xc8\x3a\x35\x82\x45\xba\x8c\x78\x0f\xc4\x27\xa1\xbb\x1d\xe4\x60\x64\x78\x3b\x36\x0e\x3b\xc8\x31\xe5\x0a\xb2\x49\xeb\x35\x29\x98\xd2\x52\x69\x5e\xc6\x99\x93\xe0\x64\x94\x5e\x38\xc6\x5d\xd5\x07\x87\x16\xff\x28\x0f\x20\x87\xd1\x95\xba\x3c\x1f\x29\xac\x17\x48\xf0\x22\x67\xc8\x9d\x60\xed\x4d\x90\x99\x09\x0e\x30\x81\xf7\x99\xa6\xda\xc2\x2f\x37\xd9\x5f\x91\x17\xa7\x55\xbb\x60\x9d\x1e\x34\xee\xb7\xe1\x8c\x2b\xb8\xdd\xa6\x70\x06\x34\xc8\x12\xfa\xee\x28\x45\xa7\x99\x64\x83\x29\xe6\xd8\x73\xad\xf2\xc0\xc0\xe4\xbc\xd4\x44\x52\x2e\x20\x9f\x7b\x2a\xd6\x5d\x2b\x31\x99\x75\xca\x9f\xe4\x98\xcd\xd0\x47\xcb\xf3\xee\x12\xa7\xd1\xbf\x89\x7c\x81\x23\x41\x05\xbe\x7f\xf5\xc6\x27\x03\x69\xb9\xa6\x76\xe4\x9a\xf4\x30\x58\x88\xa9\x4d\x51\x0b\x38\x96\x03\x8b\x68\xc4\x0a\x0e\x89\x37\x25\xce\xbe\xff\xc1\x27\x09\xd5\x90\x3f\x8c\x52\x98\xce\x68\xd5\xef\x6b\x00\x9e\x42\xd2\xf2\x5c\xd7\x10\xce\x9e\x3c\xfd\xee\xe9\xdb\xa7\x62\xaf\x2e\xc4\x5d\x7d\xfd\xfc\xc9\x33\xd6\x5c\x25\x3d\xd0\xf0\xd0\x86\x01\x52\x71\xa4\x6c\xf2\xe0\x15\xd6\x14\x74\x49\xad\x9f\x35\x30\xbb\x76\xd6\x15\xe9\x39\x9a\x35\xa8\x28\x8a\xf2\xcc\xfb\xaa\xc8\xb2\x45\xce\x8a\x06\xd7\x45\x76\x46\xab\x22\x3b\x29\x71\xcc\x15\x42\x49\xb6\xd6\xb8\x4a\xea\xaa\xfd\x89\xf2\xcd\xd9\x83\xd3\x49\xa1\x72\x4d\x09\x36\xa7\xc6\xda\x4f\xe0\x81\x36\x8d\xa2\x05\x33\xcd\xf3\x1a\x52\xc9\xfa\x73\xf0\xed\xfd\x26\x5a\xc5\xd6\x9e\x43\x28\xf0\xd2\xb9\x2a\x7f\xfe\xe1\xf5\x77\xdf\xc9\x3a\x36\xbf\x9f\xff\xf1\xff\x1c\x69\x3f\x93\x72\x83\x60\xd4\x5f\x94\xd7\x58\x92\x56\x0d\x77\xb7\xcf\x11\xef\x33\x9a\xdc\xd6\x8b\x08\xf6\x53\x45\x1d\x81\x23\x0a\x45\x50\xfc\x93\xf0\x9c\xe2\xe5\x0a\x61\xe9\x08\x45\x55\xa1\x4e\x8e\x3a\x9d\xc4\xd2\xf1\x4c\x8a\x8c\x25\x50\xd1\xfb\xd3\xc6\x1d\xcd\x71\x19\x9f\xc2\x72\xbe\x42\x42\xce\x59\x5a\xa6\x21\xb2\x0c\xeb\xab\xdf\x77\x45\x24\x33\x5a\x69\x2e\xf6\x84\x8e\xf4\x06\x9c\x34\x27\xfc\x6b\x50\x21\x89\xd1\x5b\xb9\x94\xe5\x0a\x21\xdc\x9c\x14\x5c\x69\x86\x6c\xca\xbb\x51\xbb\xac\x57\xca\xdd\x51\xf0\x7b\x6d\x87\x72\x8e\x29\xce\xa6\xb4\x6a\xff\xd7\xbf\x7d\xf3\xbf\xfe\xed\x49\x91\x19\xc7\x8d\xd8\x04\xb5\x7c\x63\x3b\x11\x14\xa1\xc3\xbe\xe8\x14\x52\x60\x99\x8d\x41\x19\xe9\xde\xec\xd6\x6b\xd2\x2a\x59\xdb\x04\x8d\xb1\x91\x6d\xa1\x54\xf7\x41\x0b\x29\xc4\xb9\x6a\xfd\x9c\x29\x4b\x8f\xde\x39\x69\x3c\x6b\xd8\x15\x10\x2f\x68\x63\xa4\x39\xa5\x98\x51\x64\x4b\x1b\x9e\xab\x27\x20\x63\x92\xea\x85\xb4\xa6\x98\x09\x8f\x94\x43\x33\x91\x0e\xcd\xe3\x3f\xce\x4f\x17\xde\x44\x7a\xfa\xf9\xbc\xc1\xa5\x74\x95\x1d\xff\x71\xfe\x07\xbf\xb1\xaf\x86\xf7\x5a\xfe\xd1\x6f\xe9\x29\xda\xbd\x86\xff\x9f\xdf\xd0\xd3\xa1\xcb\x86\xda\xdb\x56\x48\x54\x5f\x17\xff\x36\x9f\xfb\xa0\x73\x74\xe4\xd0\xbe\xf3\xde\xaa\x8f\xe5\x1b\x6c\xb6\x29\xe5\x96\x48\xbe\x2e\x7e\x3f\x9f\x4f\xa7\xe4\xd1\x1f\xe6\xf3\xfd\xfe\x0f\xf3\x3f\x0a\xd6\x5d\x7c\xa8\x76\x28\xf5\xe1\x1f\x7f\xff\x7b\xd9\x52\x10\xee\xe8\x25\x24\xf7\x11\x97\x3d\x77\x45\x2d\x9e\x64\x08\x5f\x16\x77\x3b\xb6\x5d\x10\x2c\xe5\xbe\x05\xef\xf0\xa6\x68\x66\x8e\xc6\x35\xb8\x18\xcb\x33\xa9\x20\x05\xf5\x92\x62\xd1\xf3\x4d\xe8\xbe\x47\x02\xe1\x09\x14\x4c\x9b\xb2\xdd\xe4\x77\xda\x7b\x6e\x41\xf0\x75\x79\xbb\x6d\xca\x4a\xca\xd2\x31\x97\x41\x71\x5d\x5e\xc2\xd9\xe8\xf7\xaf\xc3\x71\x74\x7f\x98\x15\x64\xa6\x7a\x94\x5e\x73\xcd\x07\x14\x9a\x01\x03\x46\x66\x9b\x5b\x3e\x52\x2d\x14\x53\xd4\xe5\x0d\x66\x98\xe3\x4b\x34\x92\x9e\x71\xe9\x08\x49\xb7\x83\xc6\x55\x68\x14\x35\x96\x7a\x27\x8a\x1b\xd3\xa1\xf4\xe9\x40\x1d\x82\xb0\x59\x1a\x44\x9b\x6d\x66\xad\x44\x15\xaf\x8e\xa4\x9d\x6c\x6a\x11\xeb\xe4\x22\xc4\xaf\x4b\x34\x92\x5b\xc0\x76\xca\xe1\x1a\x66\x41\x44\x13\xbc\x91\x53\x76\xbb\x3e\x6a\x40\x8e\x46\x9e\xfa\xa6\x60\x26\x6f\x31\xa8\x44\x7c\x8a\xc1\xcd\x1e\xbd\x25\x3f\x73\x5b\x48\x29\x97\x0c\x8e\x9c\x2b\x49\xcf\x95\xc3\x5c\x9b\xd9\x05\xb0\x28\x1b\xd4\xe1\xec\xc9\x9b\xc5\xf8\xf5\xd3\x37\x6f\x95\xa2\xeb\x5f\xc4\x1b\x55\x23\x9e\x37\xe3\xec\x84\x08\x96\x44\x3c\x54\x18\xea\x89\xb4\x52\x95\x29\x19\x1e\x68\x58\xa7\x5a\x42\x25\xb4\xbe\x7b\x24\xb4\x1f\x57\x0d\x69\xc1\xd2\xd7\x12\x72\xa5\x1c\x40\x75\xd1\x7a\x5a\x8f\x6f\x9b\x1d\x1b\x97\xd7\xd7\xd6\x2f\xb2\xf9\x48\x18\xa3\x15\x58\x59\x3f\xd2\x72\xfc\xdf\x65\x55\xbd\x62\xaf\xd4\xd3\x37\x65\x5d\xbd\x6b\x7e\xfe\x13\x38\x53\xb6\xff\x0d\xe5\x85\x37\x64\xac\xf5\x0a\xca\x54\x77\x96\xa1\x51\x6d\x67\xee\x9e\xc2\x88\xd8\x0e\x07\x4b\xfa\x78\x2a\x57\x52\xe3\x07\x99\x4b\x7d\x22\xd1\x38\xfe\x4f\xf0\xfe\x54\x5b\xe4\xcd\x3b\x4d\xaa\x62\x74\x87\xa0\x45\xf8\x81\x86\xd7\x8c\xb6\xcf\xca\x96\x7f\x03\x2a\x19\xf5\xad\xbb\xcf\xe2\x5b\xf9\xd4\x7f\xd8\x0d\x5a\x9b\xb4\x13\x4c\xd9\xb6\xf4\x7d\x9d\x07\xb4\x13\x22\xb1\x04\x09\x55\xc6\xf7\xbe\xa3\xb8\xd2\x1e\x4a\x37\x71\x13\xa4\x54\x9f\x31\xad\x9e\x0c\xfa\xef\xb0\x79\x83\x6b\xc1\x65\xaa\x3f\xf6\xfb\xdc\x7e\x22\x6d\x5e\x82\xfb\x9f\x4e\x41\x76\x02\x76\x15\x3c\x02\x4c\x01\xb2\xb4\x0d\xec\x6f\x6d\x53\x3f\x1c\xaf\x37\xe2\xdc\xf2\x62\xc7\x2f\x1f\xfc\x9f\x6c\x64\x3a\x5f\x66\xea\xcb\x07\xa2\xbf\x6c\x55\x50\x75\xdb\xe5\x7d\xf7\x78\x67\xaf\x36\x4a\xf0\x43\x01\x77\x2a\xf5\x78\x32\x42\x5d\x9a\xc5\x6c\x4e\x58\xae\x54\x94\x76\x11\xc4\xa6\x36\x15\x2f\x12\x4a\x41\xdd\x85\xb2\xf7\x1d\x5c\x9c\xd5\x22\xce\xde\x91\xcb\x86\x91\x37\xa4\xae\xbc\xfa\x97\xbe\xe2\x53\x2b\x8e\xfb\x7c\x9c\xa3\x96\x15\xfc\xb0\x42\x22\xa9\xee\xcd\x19\x36\x9f\x2e\xd9\x4a\x96\xf6\xed\x34\x58\x90\x38\x7c\x85\xc5\x3f\xc1\xdf\x32\xf1\x0c\x61\xa6\x8e\x85\x2f\x45\x01\x2d\x3a\x0a\xd7\x7d\x7b\x5d\xa4\x31\x93\xd3\x94\x92\xce\xba\xd9\x42\x40\xdc\xc1\xd6\x32\xf6\x01\x0a\x23\xf8\x21\x0c\x8a\xa2\x64\x82\xfa\x12\x15\xb1\xbe\xe1\xfc\xba\x0d\x22\x1a\x10\x67\xb7\x06\x5c\x27\xd9\x57\x5f\x41\x30\x83\xd2\xfa\xd7\xe8\xae\x47\x86\xfe\xda\xec\xc6\x25\x23\xe3\x5d\x4b\xeb\xf7\x92\x8f\x18\x3f\x29\x79\x39\xbe\xa1\x7c\x33\xae\x9b\xb1\x98\x52\x9f\xe2\xca\x1b\x61\x36\x06\x57\xfd\x1b\xba\xdd\x8e\x4b\xce\xc9\xd5\x35\x17\x44\x69\xd7\x12\x20\x48\xf0\x69\x73\x09\xbf\x35\xe8\xc6\x6a\xa9\x78\x7c\xb3\xa1\xeb\xcd\x98\x4a\xea\x2e\x15\xaf\x3b\x46\xaa\xf1\xa5\x22\x7d\x2a\x33\xbc\xd3\x0b\x44\x05\x48\x40\x8d\xbf\xdf\x12\xc1\x68\xb6\x84\x9b\xa1\x7e\xda\x50\x4e\xb6\xb4\xe5\x26\x99\x1c\xf4\xa5\xe7\xec\x28\x75\x67\x7f\x6b\x67\x76\x46\x00\x89\xc5\x38\x3b\xa9\xb5\x97\x92\x75\xef\x26\x1d\xee\xdf\xb5\xb1\x80\x65\xb0\xbe\x71\x37\x80\x82\x68\x63\x0b\x43\x77\x8e\xb7\x78\x9c\xe1\x4f\xf1\x9f\x2c\x92\x7d\x03\x52\x19\x48\x51\xe2\x4c\xff\x58\x2c\xb5\x6d\x25\xcb\x4e\x08\x56\x16\xaa\xb7\x1b\x32\x7e\x57\xae\x3f\x90\xba\x52\xf1\x14\x15\xa9\xe4\xce\x96\xb5\xf2\x47\xd1\x76\xab\x2c\x3b\x61\xdd\xaa\xc3\x29\x59\x23\xa5\xa7\xc2\x4d\xc1\x43\xfa\xb5\xdf\x67\x4f\xaf\xae\xf9\xed\xf8\xb1\x7a\x2c\x68\x46\x66\x9c\xd1\x0b\xa7\x74\x5b\x51\x14\x8d\x58\x8f\x14\xe3\xbe\xfe\xfd\xbf\xcd\xcf\xb2\xe5\xab\x2b\xca\x39\xa9\xc6\x52\x88\xbe\x1d\x7f\xfb\xf6\xc5\x77\xab\x6c\xc1\xf0\x32\x73\x30\x54\xdb\xd9\xb2\x93\xbc\x56\x16\x15\xb0\xb0\xd5\x70\xc4\x4f\xb2\xb1\x1c\x8f\x54\xe3\x52\x30\x2b\x38\xfb\x5e\xf2\xad\xe3\x3c\x3b\x69\x4e\x32\x94\x61\xba\x52\xca\x80\xff\xaa\xc5\x45\x69\x55\xca\xb1\x64\x2d\x50\x43\x89\x58\x9b\xa1\x72\xe0\x97\x7e\x99\xfa\xaf\xc2\xe6\xdd\xe3\xbe\xf9\xfb\x90\x9f\xcf\x47\xc2\x5a\x2a\x68\xf5\xaf\xe4\x3d\x6d\x1f\x64\x7f\x98\x9d\xfe\x7e\xf6\xc7\x2c\x31\xc1\x75\x59\x97\xec\xf6\xc1\x25\x29\xf9\x8e\x91\xf6\x2b\xf5\x99\x79\xf0\x4f\x98\xf1\xdd\x9b\xf3\x17\xdf\x7f\xf7\xf4\xe2\xd9\xd3\xf3\xb7\x3f\xbc\x7e\x7a\xf1\xec\xbb\xf3\x3f\x49\xf7\xe7\xd7\x4f\x1f\xbf\x7a\xfd\xe4\xe2\xc9\xf9\xdb\xf3\x8b\xa7\xaf\x5f\xbf\x7a\xfd\xa6\xff\xfc\xcd\xdb\xf3\xb7\x4f\x55\x79\xe1\xe3\x96\x7c\xc0\x07\xeb\x20\x84\x8e\x76\x24\xd6\xe7\x3e\x8f\x06\x4f\xbf\xb9\xbd\x7a\xd7\x6c\xa7\xd3\xac\x85\x1f\xe1\x8b\x19\xe5\x32\x85\xc6\x59\x44\x42\xd4\x05\x08\xbb\x68\x35\xcd\xe9\x74\x60\x38\xb8\xf9\x5b\xce\x76\x6b\xde\xb0\xa2\x28\xcc\xf3\x89\xfe\x6d\xf5\x79\x67\x7a\x6e\x0b\x33\x20\x12\x94\xf0\x13\x76\xbf\xb7\x65\x85\xff\x4c\x6e\x6f\x41\x66\x11\x64\x28\xc8\x4c\xfd\xf9\xc6\xf7\x60\xb5\xc4\xb4\xc8\x1d\x1f\x0b\xb3\x66\x20\x2f\x82\xba\x3c\x7d\xf9\xe3\x99\xd3\x60\xc1\x72\xf7\x15\x84\xe5\xca\x38\x32\xef\x0b\xf7\x8f\xc5\x5d\x17\x75\x97\x9d\xe4\x93\x7a\xf6\xf4\xe5\xf9\x37\xdf\x3d\xbd\x78\xf5\xfd\xdb\xe7\xaf\x5e\x9e\x7f\xa7\x27\xff\x66\xbf\x57\xdd\x12\xb4\xdf\x13\x55\x99\x3b\xe4\x56\x8d\x41\x16\xd7\x66\x99\xe0\x3e\xa9\x97\xdc\x28\xaf\x54\x9a\x37\x31\xe8\x80\x0b\x62\x04\x68\xda\xef\x54\x7c\xd6\x87\xb4\xf8\x2a\x02\x7f\xed\x6e\x1a\x7e\x04\x5b\x16\x7e\x23\xf7\x71\x97\x38\x76\xa0\xa6\x4e\xa4\x3b\x18\x70\xd3\x1f\x3c\x8c\xb1\x4f\x0f\x7b\x02\x91\x59\xc9\xb9\x27\xb1\xd7\xb1\x6a\x9e\x67\x79\x5d\x10\x4c\x14\x8a\xa1\x45\x5d\xd4\xfb\xfd\x5d\xa7\xbc\x7e\x74\x49\x47\xda\x9e\x73\xce\xe8\xbb\x1d\x07\x0f\xc5\x0f\xb4\xae\x16\x59\xa9\x1f\x65\xb8\x51\x62\x50\x6d\x3c\x14\x02\x83\xf6\x9d\xe7\xd4\x68\xae\x20\xc9\xd8\x42\x91\xbe\xba\xdc\xbe\x10\xc0\x0b\x83\xb0\x7c\xaf\x86\x19\x03\xbd\xb6\xc0\xcf\x67\x8d\xa0\x36\xb3\x4d\x09\x73\xcb\x19\x78\x98\x10\x74\x06\xdc\xa9\x99\xee\x8f\xe2\x3c\x0a\x19\x2e\xce\x9d\x44\x68\x86\x41\x4d\xf8\xf4\xcc\xff\x33\x5e\x8c\x64\xe1\x37\xea\x24\x6f\x5c\x43\xe4\x70\xeb\x2d\x5c\xf9\x5f\xb0\x08\x1a\x4e\xa7\x11\x68\xcc\x2e\xec\x82\xf5\xba\x72\x82\x26\x45\xc1\x3d\x9b\xa8\x60\xc8\x95\xff\xbe\x10\xfc\xe1\x6f\x02\x81\xf7\x8c\x5c\x35\x90\x63\x52\x9a\xce\x2e\xae\x4a\xf6\x41\x69\x0c\x15\xf7\x71\xde\x3e\xde\x92\xb2\xce\xed\xb5\x1f\x99\x47\x4b\xf8\x13\xca\xf8\xad\x01\xac\x4a\x26\x80\x04\xdb\x52\xe6\x14\x22\xed\xde\x69\x4b\x5d\xcc\x47\x09\xd3\x51\x0c\xfd\x58\x41\x30\x35\xe8\x97\xb3\x82\x63\x5a\x10\x84\x6d\xae\x40\x1d\x25\x38\x9d\xe6\xb4\xa8\xad\xba\xf9\x85\x36\x09\xe5\x14\x69\x85\xb4\x44\x58\x8a\x69\xfb\x9a\x6c\x41\xb4\x6b\x37\x14\x8a\xff\x68\x14\x65\x05\x13\x08\xae\x70\xd8\xcc\x38\xc3\x32\x5f\x8a\x32\x36\x8e\xc5\x93\x0f\xe4\x56\xd5\xb8\x39\x12\xa9\x07\xe0\xf7\x9e\x70\x9b\x55\x22\x8e\x17\x47\x40\xdf\xe9\x02\x73\xbd\xa3\xc3\x03\xe9\x1d\x6a\x60\x87\x36\xd2\xac\x1b\xec\x4f\x7f\x5f\x20\x00\xc8\xa1\x0b\x98\x17\x1c\xc0\xd6\xdb\x16\x10\xbb\xe3\xdb\x42\x90\x2e\x68\xa5\xe9\x88\xde\x04\x1e\xd9\x20\xb9\x21\x6a\x82\x7a\x3b\xbe\x2d\xdb\xb1\xfc\xfb\x33\x6f\x86\xce\x0d\x12\xdf\x8a\x83\xd4\x89\x99\x2d\x31\x1d\x89\x0d\x61\x41\xd7\x1a\xf8\xec\xf3\x85\x2a\xca\x1b\xe6\x00\x3b\x17\x5e\x43\xc7\x87\x88\x7d\x41\x7f\x7a\x71\x5f\x1c\xed\x46\x2f\x1a\x0f\x7a\xcf\x3b\x27\xf7\xc8\x2e\xcd\x17\x83\xfd\x1a\x04\x3c\xb2\x57\xd5\xfe\xb3\x7a\xfa\x03\xaa\xa5\xfd\xfc\xe5\xee\xfe\x66\xa5\x2d\x1b\xff\x1d\x65\x84\x06\x26\xe9\x2a\xa4\xfc\x54\x48\x86\xba\x0c\x39\x06\x45\x9d\xf1\xe5\x1b\xf2\x33\x54\xdc\x15\x5d\x57\x15\x51\x0e\x5e\xad\x0a\x4c\x94\x11\x89\x0d\x23\x98\x40\xc8\xf8\x07\x72\x0b\xd1\xb1\x0e\x7d\x4a\x70\x0f\x66\xa9\x99\x0c\x2c\x80\xae\x36\x65\x6b\xdc\x08\xd5\x40\x52\x4d\x0c\x79\x3c\xb2\x8a\xa4\xbe\x7a\x62\xdf\x84\xdf\x49\xc5\xb4\x9c\x98\x7b\x05\x33\xad\x9c\x76\x97\x2e\xd8\x6e\x1b\xd0\x9b\xce\xd4\xa2\x1d\x3c\x3e\x90\x5b\x63\x0c\xae\x1b\x33\x77\x39\xf8\x9b\x6b\xb2\xa6\x97\x94\x54\x79\x8d\x50\x04\xcc\x90\x34\xc2\x71\xb2\x71\x57\xff\xdc\xac\xc0\xfa\xb7\xa5\xa1\x53\x23\x5c\x16\x0e\x13\x91\xd7\xa0\x46\xa4\xba\xe6\xb3\x1c\xfc\x3d\xe1\x2f\xca\xeb\x6b\x52\xfd\x85\xdc\xe6\x30\x77\x2c\xd5\xbf\x68\xd4\x0a\x70\x8a\x27\x0a\xa4\xfd\x7d\x9c\x4e\x73\xd5\x4f\xff\x9d\xea\x8c\xcd\xc4\x45\x84\x9d\xad\x45\x08\x97\x67\x39\x5f\xb6\xab\xa2\x84\x48\x82\x99\xba\xc6\x66\xd7\xcd\xf6\xf6\xaa\x61\xd7\x1b\xba\x56\x43\x9a\xaf\xbe\xb7\xaf\x64\x1a\x24\x69\x5a\x5f\x40\x37\x70\x8f\x81\x17\x6b\xa3\xb9\x3e\xf3\xa1\x46\x51\xef\xaa\x87\x40\x43\x3c\xd0\x28\xb1\xb7\x2e\x34\x61\x79\x48\xbb\x78\x0c\xc1\x91\x1e\x03\x47\xfa\x29\x70\xac\x05\x1c\xe9\xaa\x70\x22\x39\xf2\x20\x8d\x84\x3c\x8e\x92\x6b\xd5\xcb\x7c\xd6\x30\x42\xdf\xd7\x62\xa6\xd2\xc1\x48\x74\x82\x7e\xe9\x46\x50\xb5\x11\xf6\xa8\xa4\x52\x22\x7d\xb6\x83\x32\xd6\x5f\xa7\x4e\x89\xe7\xaf\xf6\xcf\xd9\x23\x00\x8c\xe1\x14\xf3\x1a\x83\xff\x21\x70\x24\xd2\x79\xff\xd0\x29\x3e\x4b\x60\xb4\xc3\x29\x19\xba\x15\xc0\xe1\xbc\xae\xc4\x26\xd9\xbe\x7a\xc7\x43\x75\x72\xde\x3a\xad\xf5\x09\xc1\xc3\xcd\x86\xae\x8e\x90\xb2\x4a\xf8\xb8\x80\x81\xc8\x0a\x0d\x14\x79\x96\x46\x7c\x59\xaf\xd4\x75\x75\x9e\x53\x34\xbb\x2a\xaf\x23\xae\x0d\x77\xb4\x5a\x10\x70\x5a\x03\x26\xd8\xba\xb2\x81\x4b\x67\x12\x4e\x83\x37\xdd\x00\x66\xd4\xc7\x60\x46\xfd\x69\x98\x51\xaf\xcc\xf8\x52\xc5\x6e\x36\xcf\xd9\x5d\xd8\x89\x64\x83\x80\xd3\x76\xb3\xec\x68\xe8\x72\x49\xa9\x6a\x03\x5a\x26\xa0\x5f\x93\x9b\xb1\xca\x3a\x62\xea\x02\x4a\x67\x71\x93\x78\xa4\x39\x39\xd1\x15\x6f\xeb\x65\xb3\xc2\x6d\x51\xa6\x09\xcd\xe8\x10\xa1\x29\x31\xc7\x2d\xc2\x74\xd9\xac\x8a\xd6\x24\x98\xe9\x70\xea\x93\x88\x79\x81\x5e\xe6\x0e\xa3\x2a\x37\x86\xd6\x95\x3e\xe5\x72\xcb\x66\xb4\x86\xf2\xfa\xcf\xc0\xc1\x4a\x40\xdf\x72\x24\xee\x0d\xd8\x14\x54\xa6\x2c\x50\x2e\x55\xd0\x60\x20\xdb\x4e\x6c\x77\x1b\x4c\xd5\xce\xba\x6c\x08\x1a\x95\xd3\xa9\xf4\xd9\x1c\xd7\xcb\x72\xd5\x75\x1d\xde\x94\xad\x5e\xe2\xf9\xf6\xa6\xbc\x55\x67\x32\x62\x56\x90\x5e\xa1\x9c\x33\xcb\xae\x18\xe6\x6b\x3a\xcd\x4a\xf8\x5a\x2c\x9e\xcf\x88\xea\x11\xba\x8f\x13\x90\xd4\x00\x89\xf9\xa8\x28\x83\x81\x29\xec\xf7\x6c\x3a\xcd\xa4\x1a\xa5\x95\x7b\x60\x56\xee\xcf\xe3\xf9\xa1\x39\x24\x17\x99\x67\xb4\x52\x4b\x34\x7d\xef\xf7\x19\xad\x82\x67\xa8\x37\xa0\x4f\xf1\x3e\x6d\xe0\x07\x65\x5d\x81\xd9\x2a\x3a\x05\xf3\xb6\x3f\x97\xf4\x1d\x76\xaf\x89\x4c\x72\x59\xcd\xda\x19\xd7\x6e\x35\x92\x6b\x4e\xf1\xb6\xbf\xc6\x76\x3b\xa8\xde\x61\xe7\xb3\xd4\xd8\xa0\x4c\x83\x76\x99\x07\x6b\xbe\x4c\x25\xbd\x5b\xed\xf7\x1c\x2a\x18\xe3\x84\xa4\x31\x18\x25\x60\x95\x0a\xa4\x5c\x6f\xbc\xf3\xea\xa4\x91\x68\xd0\x1d\x19\x94\x12\x18\x12\xf8\xa0\xe5\x57\xc8\x34\x26\x8e\xfa\x74\x4a\x7b\xf2\x8f\xcd\x8c\xca\x70\x8d\x1b\x84\x7d\x2a\x95\xfe\xd0\xcd\x8c\x2a\x3f\x15\x42\x6a\xdd\x5f\xf7\xa1\x28\x05\xeb\x47\xc0\x70\x26\xc4\xc6\x19\x73\xd6\xdd\xce\xc0\x47\x0b\xfc\x36\x32\x4d\x03\x6d\x9e\x35\x7b\x15\x50\x5b\x22\xb6\x98\x3f\x2c\x1f\x51\x37\xe3\x9a\x94\x1b\xf0\xae\xa0\xcb\x72\x85\xb5\x1b\x85\xb5\x5e\x9b\x2d\x72\x00\x2e\xf8\xcb\x1d\xc2\xeb\x62\x0b\x83\xe3\xcb\x62\xab\x0d\xa3\xe0\x2d\xc8\xcc\x5f\x85\xfd\xb9\xdf\x2f\x57\xd8\xfe\x29\x7d\x75\xd7\x08\x5f\xa2\xbc\x75\x9a\x49\xcf\x67\xa5\x42\x6e\xf1\x25\x1a\x35\xcb\x72\x55\x08\xfe\x60\x6d\xf8\x83\x35\xdc\x09\xb2\x90\xf3\xa6\xd0\xb1\x04\xca\xdf\xad\x1d\x82\x17\xde\x80\x90\x90\xda\xb1\xcf\xb9\x15\xb0\x0d\xfa\x1e\x3a\x02\xa2\x14\xc1\x5d\x0c\x10\xdd\x09\x29\xea\x93\x20\xda\x22\xbc\x43\x79\x93\x82\x68\x83\x77\x48\xa5\xfe\x30\x81\x33\x8b\xd6\x00\xb6\x55\x80\x3d\x0a\x94\x5b\x00\xe5\xe0\xc2\x52\xfc\x19\x0c\x33\xe2\x71\xd9\x24\xaf\xb5\xc7\x95\x49\x97\x07\x17\xb6\xb8\xbb\x6b\xc7\xe1\xc8\xbf\xd5\x6b\x64\xd5\xab\x39\x15\x7b\xb7\xdb\x6e\xc1\x69\x38\x20\x33\xa0\x34\xb1\xd9\xf8\x58\x3c\xb5\x98\xcd\xf5\xa5\xf2\x74\xf9\x0f\xc4\x81\x2e\x98\x93\x72\x21\x95\x1b\xcc\x78\x1a\xd1\xf6\x65\x53\x13\x30\x38\x4c\x20\x63\xce\xac\xdc\x6e\x9b\x9b\x97\x62\x96\xda\xe7\xd9\xa9\x51\xa2\x14\xc7\xba\xc0\xc3\xbb\xa6\xd9\x92\xb2\x06\x5a\x7d\x46\x16\x56\xc3\x5c\xb0\xb3\xaf\xfe\x6f\xce\xd9\x8e\xec\xf9\xfe\x14\xfd\xee\x2b\xaa\x7d\x84\x9c\x2a\x8d\x05\x9b\x4e\x4f\xa5\x83\xf3\x81\x1c\x66\x07\xe7\x2a\xeb\x0a\x7c\x23\xa7\x23\xd5\xb7\x98\x1e\x84\x84\xb9\x3a\xf4\xb2\x64\x89\x71\xbd\x06\xee\xba\x5b\xa8\xf8\xd7\x13\x73\xaf\xc8\x90\x91\xe9\x54\xa7\x12\x7f\xf0\x6f\xb0\xec\x9c\x9d\x14\x7f\xc0\x82\xcc\x3d\x91\x89\x80\x64\xf9\xd2\x39\x66\xe8\x24\x5b\x64\x27\xfa\x01\x43\x48\xfa\x08\xcb\x66\xda\x82\xe3\x40\x87\x9f\x39\xaf\x17\x32\xc3\x39\x39\x53\x1b\x1d\x85\x98\x35\xa9\xbb\xf1\xee\xa2\x87\xe9\x74\x42\xdb\x97\xe5\x4b\x48\x3b\x3b\xe3\xcd\xf3\x37\xaf\xe4\x55\x98\x23\xed\x8b\x30\x72\xb3\x21\xd9\x9e\xa0\x56\x13\x99\x14\xc5\xe9\x57\x73\xf9\xe3\xc1\xe9\x57\xf3\x4e\xb2\xea\x47\x02\x58\xa3\x0b\x84\x1f\x4b\x23\xb3\x58\x0a\xec\x59\x93\xf3\x42\xe6\xfd\xca\x09\x42\x67\x7c\x70\x79\x9f\xd8\x5b\x27\x68\xd8\xe1\xb9\xc6\x91\x4d\x76\xac\xa0\x25\x6d\x0e\x9f\xfe\xb1\xcc\xa5\x2b\xd1\xf4\x2d\x2b\xeb\xf6\xb2\x61\x57\x45\x8d\xc9\x4c\xec\x92\x7d\x42\xb1\x0c\xed\x0d\x09\x04\x78\x50\xca\x05\xda\xc6\x25\x26\x8a\xb1\xb1\xcf\x5a\x4c\x66\xf6\x2f\x86\x15\xb1\xfa\xb6\xb4\xe6\xe0\x57\x9e\x7c\x21\xe4\x0e\xe0\x67\x8b\xe4\xaa\xc0\x32\x89\xad\xf1\xb8\xcd\x90\x4c\x5b\x0b\x2c\x2a\xda\xef\xbd\x66\x1e\x65\xfe\xe6\x56\xf4\xef\xb7\xff\x6c\x76\x15\x47\x6b\x7d\xc0\xb8\xe2\xb4\xb4\x3f\x87\x1d\x64\x3e\x9f\x11\xe5\x7e\xa6\x04\x7e\x38\x69\x90\xb3\x9a\x78\xde\xa0\xe1\xe4\x40\xc1\xe7\x9f\xe6\xab\xf0\xb9\xf2\x05\xb1\x5e\xbe\x20\x7b\x85\x3f\x69\xd6\x60\xad\x97\xe5\x55\x42\x8f\x59\xc7\xa9\x46\xe2\x9f\xc0\xae\x57\x97\xda\x75\x18\x29\xc7\xe2\x80\xdf\x79\xad\x32\x76\xa9\x92\x2d\x3a\xf9\x40\x3c\x57\xaa\xee\xca\xf0\xb1\xdc\xe1\x63\xe5\x4b\xc3\xcc\xb2\x62\xfe\x90\x3d\xf2\x1e\x3e\x64\x9a\xa3\xad\x0b\xf9\x62\xc9\x56\x23\x48\xf3\x30\x3c\xab\x1a\x75\x7a\xf6\x5d\x64\x52\x86\x95\xb2\x13\x73\x74\x2d\x4a\xc3\x62\x9b\x45\x54\x2d\xf6\xa5\xd4\xb9\x0c\x4f\xa7\x44\x23\x9d\xbe\xda\x64\x1e\x6f\xc5\x14\x0d\x17\x48\x1d\xcf\x55\xb7\x1b\x4b\x09\x9e\x94\xbc\x8c\xec\xa3\xe1\x9e\x20\x11\x9e\x8c\x64\xd4\xda\x90\x67\xac\xb9\x52\xce\x93\xa0\xdd\x91\x4c\x18\x0e\x86\x70\x67\x1a\xb9\x33\xe8\x65\xce\x8f\xeb\x37\x4b\x34\xc8\xf0\xc4\xd1\xdd\x5c\x08\x61\x4d\xb3\x7f\x3c\x5a\xcf\xcd\x36\xbe\xb2\x0d\xfd\x90\xf6\x98\x1a\xc8\x65\x18\x19\x26\x08\x10\xa0\xc3\x02\xda\x6a\x32\x03\x16\xef\xc4\x99\x11\x03\x13\x9d\x37\x3e\x80\x5b\x34\x0a\xb1\x86\xa0\x26\xdf\x10\x9f\xea\x9b\x21\xc7\xaf\xd8\xa9\x88\xd0\xef\x5b\xa7\xc4\x70\x54\xec\x4a\x00\x90\x51\x6c\xc6\x2b\xc7\x26\x01\xc1\x4a\x26\x32\xb7\x56\x9b\x5c\x3d\xae\x9d\x34\x2b\xd2\x0c\x2d\xbf\x90\xa5\xf7\xd6\x1b\xab\x23\x0e\xf1\x83\x4a\xb5\x6b\x60\xa1\x0b\x14\x6d\x26\x96\xc3\xed\x7b\x49\x57\x42\x34\x58\x92\x55\xf8\x58\x49\xd7\x6a\xfe\x09\xf1\xe3\x18\x0a\x66\x83\x23\x7a\xc7\x33\x76\xae\x0c\xb5\xc2\xff\x34\x22\x16\x9d\x96\x4b\xcc\x7a\xdb\xeb\x7e\x73\xf4\x0e\x7b\x1c\x86\xde\xe4\xb8\x0e\x86\xd8\x78\x3e\x16\x53\xae\x92\x84\x72\xd5\x0d\xe1\x09\x06\x5c\x36\x2b\x4d\x46\xfb\x6f\x46\x80\x11\xc0\x72\x86\xcb\xcb\x4b\x90\x4e\x1c\xc5\x4b\x90\x8d\x2d\x74\x28\x4a\x11\x2c\x29\xae\xa2\x0e\x27\x1a\x44\x08\x6c\x3e\xc7\x7c\xd6\xd2\xfa\xfd\x6e\x5b\x32\x48\xe1\x06\xb9\xd9\xfa\x0e\x40\x28\x87\x5a\x88\xd7\xa6\x33\xd1\xb5\x79\x9b\xea\xd9\x49\x0d\x47\x5c\xa2\x10\x2c\xce\x3f\x9b\x7e\x20\xf2\x0f\x62\x76\x4f\xc8\x7a\x5b\x32\x52\xbd\x28\xaf\xaf\x81\x71\xc6\xee\x27\x08\xf7\xb6\xfe\xc8\x3e\xbc\xaf\x8c\x83\x13\xad\xa4\x41\x4b\xed\xc6\xf3\x4a\x79\x68\x41\xa0\x97\xeb\x82\xa0\x8d\x90\x08\xdb\xc9\x78\x9f\x5a\x22\xa5\x7c\x8a\x3c\xac\x76\x5b\x7a\xf8\x2e\xfd\xf1\xfc\x4c\x0d\x82\x2a\x1a\xfe\x5d\xb4\x60\x1e\x04\x74\x36\x13\xed\xf1\x60\x7d\x3c\x07\xe4\xe7\x48\x62\xbf\x7b\x78\x4c\x0c\x75\x92\x12\xdf\xdd\xab\xe9\x08\x72\xcf\x9c\xeb\x3f\x81\x7a\xb9\x63\x84\x73\xc1\x60\x66\x10\x87\x84\xab\x34\xab\xa5\x9a\x47\xdb\x73\x2f\xd6\x65\xfd\xc6\x56\x1e\x40\x3e\x7e\x7a\x54\xdd\xb8\xd7\x36\x85\xf4\xd1\xcd\x99\x52\xab\x29\x0f\x09\xae\x77\x4c\xdc\xe4\x14\x39\x16\xac\x06\xd7\x5a\xad\xa4\xb3\xf6\xc6\xcc\x81\xc6\x14\x58\xaa\x74\x97\x65\xc2\xc8\x19\xda\xf7\xdc\xbb\xa7\x5c\x15\x4d\xf7\xc9\x6e\x24\x3e\x3c\xac\x5d\xdb\x77\xef\xc0\x4d\x41\x05\x13\x28\xb5\xf5\xd3\xe9\x44\xff\x94\x2a\x78\xda\xbe\x24\x37\x92\x7e\xaa\xd2\x6c\x74\xbf\x6f\x04\x68\xbd\x33\x11\x52\x4e\x03\xe0\x28\x74\x6a\x0f\x3a\x75\x08\x1d\x8f\xc8\xd6\x9e\x9b\x99\x07\x2c\xe5\x67\x0e\xac\x1a\x6c\x5e\xab\x9c\x1c\x07\xf1\x8e\xba\x78\x47\xab\x05\x9d\xd1\xaa\x1b\x85\x94\xbf\x5c\x29\x05\x66\xdb\x75\xdd\x27\xba\x27\xc8\x24\xf4\x6f\x82\x4f\xa5\xfb\x84\xb3\x1b\xc6\xca\xef\xdf\x52\xf4\x78\x20\x37\xc3\x40\x6e\x24\x90\xd3\x96\xe8\x66\x08\xfa\xc6\x19\xcf\x87\xbd\x66\x3e\xca\x82\xce\x64\xa2\xd2\x58\x46\x01\x62\xf1\x8a\xc4\xf0\x0a\x14\x3a\x96\x7b\xb1\x8c\xcb\xae\x98\x3f\xdc\x3d\x32\x3c\xcb\x4e\xf3\x2c\xdb\x82\x2e\x77\x2b\xbc\x1e\xa6\x2d\x5b\xb7\xe0\x49\xbb\xdc\xad\x14\x62\xac\xc5\x86\x6f\xc5\x86\x77\xfd\xab\xde\xdd\x70\x93\x17\x85\x3a\x3e\x77\xcd\x71\xe2\xfb\x31\x5a\x8b\xc1\x0c\xa3\x49\xe9\x7e\xc8\x99\xf4\x7e\x0e\xa6\x5a\x2e\xf8\x02\x2a\x80\xd2\x0b\x34\xd1\xba\xa4\x2b\xc2\xde\x13\x21\x98\xf6\xd4\x03\xd7\x8c\x5e\x95\xec\x56\xf0\x39\x19\xad\x32\x0c\x2d\x2b\x35\x3c\x25\xed\x62\xa9\xec\x80\x2b\x1c\x5c\xa6\x43\xec\x65\x52\xd1\x65\xf5\xfb\x82\xc9\x34\x9d\x91\x2a\x26\x54\xa8\x24\x2e\x96\x73\x5c\x92\x95\x65\x3f\x83\x4b\x02\x12\xe1\x48\xa7\xff\x91\x68\x58\x34\xae\xd5\x33\x17\x8f\x70\x69\xee\x8e\x0e\xf2\x42\xe2\x63\x04\x38\x53\x68\x92\x1e\x28\x34\x69\x3a\xb3\x55\xf7\x74\xb7\x89\xfb\x7a\xb8\x58\xe4\x90\x30\x38\xd4\x61\xb4\xa6\xa5\x37\x39\x27\xe3\xe6\xa1\x8e\x12\x95\x22\xbd\xee\x4c\x9b\x63\x3b\x8d\x56\xad\xf4\xba\x54\x2d\x8e\xed\xf0\x40\x6f\xc7\x76\x15\x29\xf0\x19\x6e\xc2\xe1\x4e\xd2\x45\x32\x4d\x5f\x6e\xf9\xbf\x63\xba\x4c\xd7\xc1\xb4\xca\x04\xa7\xc9\x31\x5d\xa6\x6b\x72\x5a\xfe\xdf\x69\x32\xdc\x65\xe7\x9c\xa4\x3e\xf2\x47\xcf\x54\x74\xc4\x37\xb4\x7e\x6f\x53\x3a\x25\xc6\x3a\x52\x49\xf2\x99\xc7\x0a\x8e\xcd\xf1\xe3\xc0\xd5\x7a\xaf\x61\x7a\xc7\xe9\x8b\x2e\x2a\x38\x69\x5f\x72\x61\xbf\xc6\x38\xde\x31\xfd\x52\x83\xc4\xce\xef\x3d\x36\xa9\xfc\x78\xfc\x16\xc5\xce\xf5\x17\x1a\x2a\x76\xde\xbf\xd0\x50\x6e\xe3\x2f\x86\xdd\x7e\xf3\x83\xc3\xf4\xb5\xb9\x0e\xb3\x36\x99\xbb\x3d\x7b\xd8\xf2\x0b\x3b\x3e\xbd\x8f\x22\x59\x72\x78\x92\x53\x06\xcf\x05\x6d\x32\x58\x2c\x57\x9d\x36\x3c\x28\xdd\xc8\x0b\xc2\x75\x91\x6f\x21\xd9\xb4\x42\xce\x83\x58\xac\xa2\x45\xba\xaf\x5d\x90\xbf\x0e\x72\x0d\xe2\x6d\xb1\x93\x8e\x2a\xeb\x62\x67\x1d\x55\xa4\xf3\x4a\xb1\xc5\x6b\xe8\xc9\x18\x2b\xd6\xd2\x2b\xda\xe8\x43\x2f\x1d\x89\x82\x19\x89\x62\x53\xcc\x71\x55\x98\xb2\x91\x9b\x47\xd5\xc3\x8d\x96\x2a\xae\xf1\x55\xc1\x96\x9b\x15\xfe\xd8\x9f\xce\x15\xc2\xb7\xc5\x47\x39\x9d\xf7\xc5\x47\xcf\x6f\xe6\x3d\xca\xaf\x1d\x57\x1a\xcf\x15\xe6\x1a\xbf\x47\xa3\xcb\xe5\x66\x55\xdc\x76\x6a\xe6\x97\x5a\x5f\x5a\xa6\x75\x6a\x2a\x27\xa4\x90\x69\x5d\xb7\xb7\xa3\xf4\x62\x08\xa7\x34\xd0\x7c\xb6\xa5\xf5\x87\x16\x1d\xad\x61\x93\xcd\xf1\x01\xad\x9a\xa3\xc3\xf9\x22\xaa\x34\x7c\x8c\x0e\xcd\xd5\x1e\x99\x49\xc6\x65\x83\x65\x98\x3a\xc7\x0a\x1f\x19\x5a\xd9\xe2\x18\xcd\x6c\xdd\x10\xb6\x26\xcf\x2b\x04\x56\x91\xa3\x6c\x17\x36\x81\xa7\x93\x24\x7e\xc0\x5e\xc1\x8a\xfa\xa0\xad\x02\x3b\xa2\x07\x5b\x41\xaa\x52\xb2\x82\xdf\x42\x74\xa6\x87\xac\x12\x31\x0f\xa1\xc0\xc6\x35\x60\xb6\xe0\xa0\x42\xa3\x95\xcc\x4c\x52\x15\x01\x60\xc4\x33\x13\x5d\x1a\x33\x92\x39\x1e\xa1\x2a\x39\xd4\x04\xb4\xd4\xc7\x3a\x30\x20\xe9\x4e\xc9\x8f\xb0\x25\x2a\x15\xba\x10\xa9\xac\xc3\x7f\x38\x5f\x8d\xb4\x16\x4f\x9c\xc0\x94\x63\x14\xa7\x29\x6c\x55\xc8\xfa\xe9\x26\x90\x23\x2d\x1e\x32\xe4\xfd\x17\x18\x3e\x96\xe5\x4a\x47\x72\xc9\x82\x91\xf0\x68\xd4\x73\x91\x97\x5d\xa1\xb6\xa0\x31\x17\xba\x33\x63\x0e\x49\xc0\x2f\xa7\xb0\x1d\x78\x87\xef\x3e\x90\xdb\x05\xc1\xba\xac\xd6\xb7\x65\xbb\x59\x70\x8f\x06\x88\x4b\x62\x41\x3b\xc8\xca\x1b\x81\xac\xee\xc9\x5a\xf4\x5d\xef\x5a\xaa\x9c\x64\x27\x1e\x86\xef\x10\x12\xd7\x8d\x73\x0b\xec\xcc\x2d\x10\x5d\x10\xd2\x37\xc7\xb6\x98\xc3\x95\xa3\xee\x88\xed\xa3\xf5\xc3\xad\xbe\x23\x2e\x8b\xdd\x72\xbb\x1a\xb5\xcb\xad\x63\x0f\x3a\x00\x80\xcb\x7b\x00\xa0\x33\x05\x59\xa5\xdb\xa9\xb8\xad\x76\xf1\xdb\xaa\xd8\x2d\x37\x62\x26\x9b\x94\x65\x4a\x0d\x7f\x8d\xba\xc6\x6a\xb5\xc4\xa7\x57\x06\x79\xbe\xa3\xf5\x07\x83\x34\xaa\x74\x35\x10\xfd\xe9\xd4\x31\x94\xc1\x93\xe5\x95\xc2\x9a\x8f\xce\x93\x87\x79\x53\x34\xfb\xfd\x5d\x87\xe4\xa3\xe2\x0e\x16\x45\xaa\xc5\xc7\xae\x6b\xb4\x29\xb5\x51\xc6\xd3\x7b\x59\xb6\x68\xc2\x8e\xe5\x69\x4b\x0e\x9c\x31\x45\x8c\x47\x49\xa5\xe7\xc1\x23\x47\x26\x45\x91\x5b\x1a\x7d\xcc\x61\x43\x2e\xec\x24\xbd\xe6\x9a\x5e\xab\x3c\xdf\x63\xae\x13\xcc\x0d\xde\xc1\xc9\x9c\xdc\xe1\x05\xa6\x5d\xe4\x41\xff\x6d\xbc\xb3\xc7\xb4\x1e\x53\xc4\x8a\x68\xa8\x52\x83\x89\x77\xaf\xd4\x62\x9e\xc3\x8e\x61\x0d\xb2\x59\xfa\xc3\x2b\xab\x41\x08\x1f\xe9\x2f\xd6\xef\xc6\x0f\x8c\x41\x08\xd7\xd2\x17\x33\x97\xf6\xe8\x65\xed\xc0\xad\x5e\x21\x19\xd5\x64\xd7\x92\xd8\xf9\x14\x90\xf4\xbd\x37\x9d\x0a\xe4\x9c\x4e\x73\xb1\xbf\x4b\xb2\x42\x32\x54\x2b\x67\x85\x0a\xd0\xec\x65\x58\x60\x90\x61\x81\x21\xe9\xad\xe2\x1a\x56\x92\xd5\xb7\x52\xc3\x4f\xf8\x7e\x3f\x11\x68\xb1\xdf\x43\x9d\x71\xf1\xd3\x8d\x86\xb9\xb8\xda\xb5\xfc\xd3\xbb\x17\xec\x22\x87\xd5\x49\xd7\xda\xa0\xf7\xb8\x4d\x22\x19\xba\x0a\xb1\x51\x26\xdb\xaf\xbb\x5b\x60\x43\x65\x5e\x98\x94\x5a\x9f\xf4\xae\xf1\x97\x91\x73\xb4\xdf\x47\xac\x52\x1c\xe2\x25\xae\xca\xfa\xf6\x6d\x23\x68\xb7\x20\xea\xf5\x7e\xaf\x9e\x68\x32\x5f\x1f\x65\x99\x94\x37\xaa\x20\x64\xd3\xa9\xc9\xa4\xf6\xdc\x09\xf4\xa2\xd5\x88\x02\x61\x1a\xe4\x02\x0b\x6a\x92\xb0\x24\xb9\x37\x0e\x12\xd6\xac\x6f\xab\x04\xe3\x0e\xe4\xc0\x45\x78\x88\xc2\x40\x07\xb1\x3b\xf7\xcc\xe9\xd5\x0d\x3f\x16\x32\xdd\x22\x76\xf5\x39\xed\x5d\x03\x13\x55\x84\xb7\x57\xd5\x20\x62\x4d\x05\x21\xcd\x0b\xd8\x85\x8a\xa9\xe8\x48\x63\x6c\xda\xfe\xea\x9a\x69\xf1\xaf\x66\x6a\x8d\x51\xa9\x7b\x18\x60\x7f\x0d\xab\x2b\x16\xec\x29\x98\x50\xbe\xa8\xe9\x2e\x65\x38\xc5\x1e\xbb\x44\xd1\x19\x5f\x36\x32\x10\x7b\x01\xbf\xe8\x2f\x09\xeb\xfe\xb5\xac\xa5\x36\x26\x3a\x34\x9b\xfe\x93\x4c\xa2\x58\xc2\xce\x33\x17\x07\x20\x72\x3d\xe8\x8c\xbc\x00\x0c\x60\x08\x21\x7a\x99\x33\x87\x9b\x60\xa0\x37\xb1\x80\x13\x7f\xd9\xda\x1a\x70\x41\xca\x87\xb8\xb6\xd2\xcd\x53\x99\xd3\xd3\xeb\xda\xc9\x87\xce\x9d\xb0\xb7\x3a\x92\x20\x54\x5c\x93\x2a\x2f\x28\x04\xcd\x40\x82\xea\x5e\x95\x69\x94\xeb\x46\x2a\x6d\xc0\xb0\x6e\x81\xe3\x1a\x61\x7e\xc0\x8b\x8f\x17\xcd\x61\x2f\x3e\x3e\x81\x88\x06\x9b\x98\x79\xc9\x8d\x07\x9f\xf8\x8d\x4d\x30\x2d\x07\x61\x99\x0f\x31\x7c\xe1\xb8\x01\xb7\xf7\xcb\x86\x06\x42\x7c\x94\x7b\x0f\xb9\x8f\x1b\x8f\x69\x2c\x58\xf9\x64\x7f\x2e\x79\x8d\x5e\x9d\x83\x15\xd3\xcc\xd7\x8b\xec\xc4\x8a\xf3\xcc\xcf\x49\xda\x1e\xb6\x8b\xf7\xab\x72\xfe\x62\x97\xf6\xa4\x35\xfc\x48\x7b\xf9\x97\x31\x89\x27\x3f\x88\x05\x81\x1c\x19\x41\x40\xa3\x11\x24\x5d\xda\x00\xdf\xf7\xc1\x97\x88\x92\xa4\x46\x11\x35\x47\xec\x1c\xa0\x93\x0c\x52\xf0\xba\xfa\x62\x20\x05\x83\xa1\xb5\x58\xcb\xa0\xcb\x95\xaf\x2d\x2e\x0b\xcf\xa3\x1a\xb7\x45\xdf\x87\xda\xcf\x34\x76\x55\x7e\x20\x4a\xaf\x1b\x49\xf1\x6d\x24\x80\x5d\x41\x1d\x9d\xb7\x27\xa3\x0b\xf8\x29\x42\x58\xe2\x36\xa1\x69\x7e\x98\x37\xd2\x63\x16\x1c\xad\xb7\x08\xaf\xa5\xe0\xd2\xc4\x35\xbd\x0c\xaf\x55\x45\x98\x81\x41\xfb\xfa\x74\xa3\x4d\x6f\x70\x5b\xd4\x90\x8d\x1b\x84\xdf\xe3\xd5\x63\x90\x9b\xc3\x49\x1e\xbf\x3b\x4a\x49\x36\x0a\x9c\xde\x77\x08\xb8\xa3\x10\xf6\x3b\xb9\x21\x57\xb6\x99\xe1\x8b\x4b\x47\x41\xde\xea\xbc\x1f\x07\x2d\x08\x14\x37\xb8\xd4\xea\xa7\x94\x05\x61\x97\xb4\x20\xec\xa6\xd3\xbc\x95\xe6\x83\x9d\x75\x3f\xda\x7a\xe5\x0e\x19\xc2\xeb\x62\x0e\x01\xc3\x4a\x71\xb2\x7e\x74\xf9\x70\xad\x15\x27\x9b\x62\xbb\x5c\xaf\x70\x55\x6c\xf0\x75\x31\x39\x1d\x65\x17\x82\x93\xde\xcc\xd6\x9b\x92\x9d\xf3\x7c\x2e\x00\x71\x5d\x4c\xe6\xa2\x85\x2a\x02\x95\x9f\x2a\x15\xe7\xd5\x30\x6c\xa5\x0a\x25\x80\xec\x15\xd2\x7a\x93\xc9\xb5\x62\x36\x68\xfb\xbd\x14\x36\x14\xc7\x74\x85\x39\xc2\xb7\x60\x7c\xd0\x3e\x76\x93\xa2\xb8\x45\x02\x1b\x3e\xee\xf7\xbe\xe7\xf7\xad\xea\xef\x3d\x7e\x87\x2f\x42\x6f\x6d\xe5\xff\x8d\xaf\xf0\x2d\xde\x20\x7c\x53\x5c\x48\xc4\x7e\x5a\x5c\x78\x36\x8b\xa7\x28\x7f\x5f\xb4\x71\x4c\x7e\x8f\x9f\xc2\x3a\x4a\x74\x33\x50\xaa\xe9\xe3\x74\x0a\x7a\x5c\xab\x5a\x85\x4a\x4d\x42\x28\x19\x7d\x9c\x4e\x27\x74\x3a\x9d\xb4\x30\xf8\x7e\xcf\xcf\xe4\xaf\x82\x2c\xda\x20\x94\x98\xa0\xce\x6a\xf5\x3e\x22\xd5\xee\xc6\x3c\xba\x41\xf9\xbb\xd4\x44\xdf\xe1\x1b\x65\xf4\x11\x53\xfa\x19\xbf\x09\xa1\x11\x3b\xf4\xb7\x78\x83\xb9\xcc\xe9\x8f\x5f\x15\x6f\x24\x78\xce\x8b\x37\x16\x3c\x6a\x0e\xaf\xf0\xf9\x74\x9a\xff\x9c\x1a\xfc\x67\x7c\x8e\x3a\x93\xdb\xbd\xed\xb0\xb7\xa9\xc9\xeb\xda\xa5\x75\x42\x52\x39\x1c\x0a\x12\x25\x9b\xb6\x6a\x27\x94\x1d\xf1\xb2\x15\xa5\xb0\xb3\x8e\x61\x27\x45\x9a\x13\x74\xa6\x46\x65\x02\x30\x9f\x14\x34\xae\x3b\x5d\x48\x89\x41\x31\x93\xc6\x16\x4c\x0b\x97\x5c\x40\xf1\x18\x41\x59\xa8\x8e\x44\xa7\x0e\xd9\x65\x0e\xd9\x85\x48\x73\xc8\x81\x99\x88\x35\xe7\x78\x87\x3a\xd4\x75\x4e\x3c\xcc\x2f\x74\xa0\x6f\xd2\x0e\xf4\x07\xe2\x9a\x0f\x7a\x46\x1f\x27\x89\x93\xe5\xa0\x5b\xa3\x9b\x59\x46\x45\x6b\xf8\x22\xfb\x7d\x1c\xfd\xc7\xa9\x44\x1a\xc7\x88\x2f\x7d\x39\x0e\x7b\x89\xae\x42\xd1\xb0\xc6\xd2\xaa\xe4\xa7\x73\x6a\xc2\x54\x73\x9e\x5c\xda\x08\xb9\x94\x1a\xb9\x94\xae\x8a\xf8\x8c\x5d\xec\xbc\xb7\x65\xc7\x5f\x01\x9b\xb9\x8a\x7a\xdc\xc0\x03\x5f\x55\x1f\x13\x8c\x71\x39\xbc\xf6\x9e\x00\xa1\x76\xa0\x71\x64\x08\xba\x2c\x57\x56\x08\x33\x95\x0e\xf9\x19\x18\x60\x9d\x20\x86\xd4\x19\x17\x1d\xa0\x6e\x71\x18\x13\x3b\xed\x38\x5d\xde\x8f\x87\x77\xbd\x57\x7f\xa5\x7c\x97\xae\xc2\x33\x48\xa0\xd0\x67\x37\x80\x99\x08\xf2\x2a\xa4\xac\xec\xf1\xe2\x0a\xfc\x30\x10\x8c\x40\x74\x54\x6c\x72\xc2\xff\xf6\x8b\xc0\x89\x15\xdc\x06\x8a\x3b\x8b\x62\x87\x17\xf5\xdb\x4d\x63\x1a\x08\x7a\xc7\x08\x90\x5f\x35\xac\x22\x8c\x54\x0f\x5a\xc2\xef\x95\xd4\xdd\x77\xc2\x8e\x89\x87\x01\x20\x58\x01\x35\x54\x36\x65\xfb\xea\xa6\x36\x80\x30\xe1\xe1\xe8\xcc\xc8\x61\x0b\x5d\x73\x4d\xa2\xf2\xd3\x8f\xa4\xe6\xa4\x32\xd5\xfe\xe0\x22\xfd\x9e\x35\x3f\xdf\x6a\xf4\x96\xcf\x55\x65\x3d\x78\xa3\x6a\xa4\x0b\xfe\x37\xa8\x54\x3e\x63\xa4\xac\xda\x5c\x17\x4f\x01\x16\x59\x79\xd6\xbb\x27\xe7\x98\xfe\x9d\xdc\x11\x3b\xef\xa0\xb4\x26\x0b\xec\xb5\xfc\x66\xe1\xd4\x0a\x54\xdd\xe8\x5a\xe8\xd2\x1a\x8e\x6c\xcd\xfb\xad\xd7\x55\xf9\x09\x5d\x09\xe0\xad\x8b\xd6\x1c\xfe\x08\x14\xdc\x7a\xed\x1d\xb8\x99\xf8\x5c\x95\x9b\x5d\x4a\xa7\xaf\xba\x30\x97\xcf\x1b\x5e\x72\x82\xdd\x8b\x40\x26\xa3\x15\x37\x80\x2c\xca\x5f\x72\x5a\xbf\x7f\x1e\xcb\x43\x4d\x67\x72\x30\x27\x2f\x13\x48\xbd\x90\x7c\x3e\xa8\x85\xe8\x50\x1e\xe4\xa5\xea\xb8\x74\x2e\xe6\x20\xcc\x56\xe7\xc9\xc8\xfb\xa6\x1f\xb5\xe5\x19\x42\x4b\xb2\x32\x6c\x91\x4b\xeb\xa5\xd8\x53\x1a\xc8\x45\xe0\xe2\x05\x32\x13\x9e\x67\x6a\x5f\x32\xa9\xcf\x83\x70\x0d\x33\x90\x5a\x6b\x4e\x54\x1d\xe8\xb0\xf2\x73\xde\x2b\xe2\x5c\x8b\x87\x4d\x0d\x3f\x89\xfc\x2d\xee\x7e\xce\xe8\xfb\xf7\x84\x89\x07\xea\xa7\x68\x71\x79\x09\x2d\x2e\x2f\x33\x84\x37\x65\xbb\x90\xe6\x7e\xc0\xe6\xaa\xf8\xea\xff\xfe\xd7\x57\x67\xe2\xa8\xfe\xd7\x57\xb9\x13\xcb\xe5\x07\x03\xfe\xd7\x57\xf9\xec\x7f\xa3\xaf\xf0\xb5\x6d\xfe\x15\xbe\x2a\xb2\x77\x65\x4b\x9c\x2a\x29\x1f\x2d\x46\xd8\xd2\xb7\x9a\xfd\xf8\x9e\x91\x16\x0a\xd0\xa2\xe9\xd4\xaf\xa6\x1f\xad\x2b\x66\xcb\xe8\x87\xbc\x31\x59\xb2\x15\xc2\xb4\x98\x3f\xa4\x36\x43\x22\xd5\xe2\x68\x53\x64\xaa\x0a\xc0\xf8\xdc\xd6\x71\x28\x8b\xec\x2b\x49\x8f\xcc\x12\xbf\xca\x4e\xd8\x88\x15\x45\x71\x05\x9a\x69\xf3\x95\x8e\xdf\xb6\x1f\x09\xc0\x4a\x76\xf8\x4e\x16\x6f\x6a\x74\x61\xa6\x7a\x49\x57\x58\xf2\x36\x8b\xbb\xeb\x06\x32\xaa\x2f\xca\xae\x53\x81\x08\x06\x30\xb7\x5e\xad\xa2\x01\xc0\x90\x28\xcf\x0f\x62\x86\x1c\x46\x34\x91\xbf\x66\x6a\x3c\x9b\x86\xc7\x7f\x3e\xbb\x82\x0a\x57\x15\x1a\xb1\x33\x56\xb0\xe5\xef\x57\x0b\x48\xca\xd3\x6b\xd7\x92\x92\xad\x37\xf9\xb5\x54\xc7\x5c\x21\xec\x98\x8a\xd9\x0a\x12\x56\x89\x1f\x4a\xbe\x9c\xc9\xa5\xef\xf7\x64\x06\xc0\x40\x6a\xad\x20\x42\x27\x49\x6f\x83\xef\x2e\x18\x79\x4f\x5b\x4e\xd8\xb7\x50\xe1\x97\x85\x1e\x06\x92\x78\xe8\x46\xa4\xd2\xcd\x8a\xbb\x77\x44\xb0\xa5\xba\x1a\x2c\xc1\xf2\xef\x1f\xe1\x2f\xde\x75\x58\x6a\xca\xbf\xb1\x25\x1c\x80\x39\x4f\x53\x32\xad\x9e\x97\x25\xa2\xc5\x5d\x0a\x1d\xf8\xba\xdc\x94\x61\x38\x3a\x98\x63\x28\x06\x9b\x3c\x41\xfb\x3d\x54\xc4\xcb\x09\xd6\xb9\x3e\x21\x0e\x51\x46\xb2\x74\x58\x15\x33\x6b\xc3\x5b\xe7\xaa\xbc\xfe\xe6\xd6\x52\x06\x9c\xa9\x86\x19\xc2\xea\xd9\xe1\x75\x99\x01\x3b\x84\x77\xf5\x87\xba\xb1\xf7\x68\x2a\x31\xa0\x01\x40\x2e\x13\x73\x2a\x3f\x15\xe9\xde\x63\x88\x2b\xa4\xe5\xba\xe6\xb7\xe1\xa4\xeb\x86\xe7\x99\x6c\x0c\xb4\xac\xac\x5e\xd5\xdb\xdb\x1c\xe1\xb2\x8a\x8b\xe0\x21\x4c\x55\xbf\x99\x4a\x5d\x7a\x51\x56\xca\x1f\x92\x19\x2f\xa4\x48\x63\x9d\x42\xb7\x8f\x32\xe9\x37\x33\x0f\x97\x72\xa8\xc0\xd9\x9b\xa4\x02\xca\xc5\x25\xad\xab\x57\x4c\x7a\x85\xab\x4a\x6b\xad\x53\x9f\xa2\xac\x2a\x49\xc7\xda\x5c\x3f\x72\xe1\x18\x7b\x5f\x37\x9c\x5e\xde\xea\xdd\x78\xbc\x29\xeb\xf7\x44\xd5\x31\x8d\x8c\x95\xcc\x28\xdb\x1b\x0b\xf7\xa9\x24\xff\xe4\xd4\xb2\x6c\x06\x11\x42\xb7\xb9\x41\x3e\x5c\xa2\x91\xcc\x16\xbb\xdf\xdf\x19\x0a\x0a\x75\x3f\x65\xfd\xb9\xb2\xeb\xa5\x91\xf5\x50\x2d\xb9\x87\xfb\x7d\xae\xb7\x4a\x57\x73\xf9\x12\xfb\xfd\xa3\xdc\x6d\x01\xe8\xc8\xec\xe8\x65\x9e\xc6\x32\xef\x9c\x30\x22\xf6\x53\x80\xc6\xa9\x11\x64\xd4\x37\x11\x16\x42\xd0\x00\x07\x09\x8e\x24\x26\x33\x69\xea\x32\xb5\x6d\x12\x68\x33\xf0\xd2\x1c\xc7\xae\xc3\xeb\x2d\x29\x99\x6b\x01\x39\xbc\x1b\xf0\x49\xae\xeb\xb0\xfc\x32\x80\xf7\x86\xb7\x59\x4e\x46\x47\x41\xfe\x48\xa0\x61\x26\x98\x8e\x58\x35\x7c\xe0\x93\x6d\x71\x7e\xcc\x67\x7a\x7d\xb1\xb2\xfc\xe8\x8e\xc4\x61\x0a\xdf\xf6\x2e\x38\x53\x5e\x4d\x76\x3a\x5b\x97\xdb\xad\xb4\xf7\xc9\x5c\xc3\x49\xae\xd0\xa3\x15\xaa\xc4\xe2\xdc\x63\x5f\xdf\xa5\xf4\x4a\x5e\x7a\x01\x01\xa4\x0b\xaf\x62\xda\xc4\xaf\x12\x77\x26\xff\x8b\x4c\x24\xbb\xb8\xc8\x4e\xc8\xc9\x8b\x92\x6f\x66\x97\xdb\xa6\x61\x39\xfc\x64\x65\x5d\x35\x57\x39\xfa\xdf\x4f\x4a\x2e\x60\x71\x93\x23\x74\x22\xda\x76\x28\xcf\x9e\x3c\xfd\xe6\x87\x3f\x3d\xe0\xed\x83\x77\xa2\x59\xe6\x4c\xf7\x26\x24\x53\xf3\x87\xec\x11\x8f\x24\x48\x11\xdc\xc4\xa8\x9e\x59\x2b\x5d\xe1\xfe\xb1\xdf\x4f\x4e\x41\x0f\x2e\xab\x8e\xc2\xfb\xc9\x1c\x67\x20\xfb\x66\x14\xcc\xea\x79\x3d\xbb\x61\x94\xab\x77\x69\x03\x21\xf8\x19\xe2\x1a\x75\x96\x15\x7b\x6a\x8a\x74\x19\xc3\x6b\xf1\x2e\x67\xca\x2d\x4b\xb0\x35\xd2\x59\xcd\xf1\x0a\x22\xca\x2b\x28\x67\x85\xa7\xde\xcc\x19\x42\x98\xc1\x06\xfc\x5c\x38\x08\x6e\xc6\x12\xfb\x23\xf9\x1a\xb0\xb0\x48\x87\xa0\xe5\xc5\x4a\x89\xec\xea\x78\x81\x23\x76\xa6\x04\x83\x8b\x0b\x95\x34\xfb\x2f\xe4\xb6\xff\xf0\x79\x7b\xde\xde\xd6\x6b\x01\x0f\xf5\x62\x53\xb6\x8f\xcb\xed\x7a\x07\x5e\xa2\xcf\x65\xab\x62\x72\x8a\x95\xca\x93\x91\x9a\x1b\x7d\xa5\x37\x6c\xf8\x8e\x84\x4f\x3a\xa9\x69\x96\x1e\x92\xc4\xe2\xb9\x95\xd0\xdc\xa9\xc6\x34\x41\x93\xd3\xa2\x28\x06\xe6\xa9\xa9\xc8\x5a\xbf\x50\xcf\xdd\x1a\x50\xce\x18\x1d\xb6\x43\x6a\x40\x7c\xe9\x61\xd5\x38\x30\x74\xd8\x3e\x5a\x0b\xac\x1e\x0d\x6e\x8c\x4a\xe8\x86\x1b\x5c\xe2\x16\xef\x54\x9a\x85\xc2\xe0\x08\xce\x1b\xeb\x1e\xae\x0a\x19\x42\xde\x62\x35\x9f\xfd\x3e\xdf\x15\xdc\x4d\xac\xae\x75\xa4\x58\x08\x8f\xbb\xb3\x9c\x15\x3b\x99\x4c\xbd\x56\xdb\x5d\x14\x45\xde\x16\x79\x59\xec\x90\xee\x78\x3a\xb5\x1a\xd7\x52\xac\x0f\xed\xf7\x2d\xd4\x28\x93\xfa\xbd\x62\x72\x1a\x81\x7f\xc1\x12\xd8\x58\x77\x98\x17\x04\xe7\xac\x58\x82\x67\x76\xf6\x81\xdc\x66\xa9\xc4\x7d\x7a\xa5\x62\xce\x5d\x87\xd5\x07\xb4\xae\x8e\xf8\x82\xd6\x95\xf9\x04\xb2\x24\x0e\x7d\x02\xe7\xea\xcc\xfe\x5c\xe4\xce\x71\x7b\x9a\x9b\x6e\x91\x73\x0c\x91\xe9\x5e\x81\xe7\xf0\xa4\x54\x43\xf3\xa1\x80\xfd\xe1\xaf\x6a\xa8\x92\xb0\x42\xd3\xe9\x4d\xce\xed\xd9\xc2\x0c\xe1\x1a\x9e\xe1\x1a\x61\xd2\xe5\x52\xab\xfc\xa6\x48\x33\xfd\xf2\x36\x55\xb2\xcc\xa8\x97\x91\x52\x5e\x99\x71\xef\xe1\xa4\xad\x5f\xe7\xfa\x05\xc7\xb0\x1c\xea\xee\xa8\xb4\xc2\xcb\x15\xc2\x44\xa6\x54\x46\xce\x8d\x4a\x3a\x8f\xef\x7f\x35\x30\x5f\x5f\xdd\x3e\x92\xd3\x37\x22\x8b\x97\xe6\x87\x94\xeb\xcd\x63\xd5\x85\x21\xea\x8e\xb7\xa7\xf2\xe8\x9a\xf9\x25\xd7\xc4\x5d\xff\x81\xdc\x16\x5c\x57\xa0\xcf\x19\x1a\x99\x2c\x7c\x6d\x5e\xc3\x72\x60\xee\x35\xc8\xae\xc1\xe4\xcf\x0f\x02\x5b\xdd\x36\x4a\xe3\x06\x29\x8b\x71\x98\x3e\xef\x1e\x0b\x01\x23\x55\x1d\xac\x02\xee\xb8\x0f\x70\xe8\x6a\xc0\x16\xf8\x11\x12\x6d\x8e\x89\x90\xd3\x23\x2c\x86\x40\x88\x9f\x05\x7b\x90\xd7\x48\xed\x10\xfe\x30\xb0\x32\x7d\x6b\x1b\x54\xc2\x7d\xc6\xcb\xc3\x22\x09\x04\x60\xbb\x5c\x6d\x0e\x17\xb2\xc8\xfc\x61\xfd\xc8\xc4\x04\xd6\xfa\xe2\xa7\xe2\xe2\x5f\xd6\xab\xd5\x48\x62\x13\x95\x6a\x41\xeb\x18\xec\xed\x83\xe5\x2b\xde\x3a\x06\x46\x12\x94\xad\x13\x5b\x19\x3e\x40\x6e\x6d\x49\x99\x01\xd7\x5e\xff\x8f\x9d\xce\xde\x82\x9c\x2e\xdb\x3b\x2b\xb3\x8d\x5f\x78\x3a\x56\xf1\xa9\x84\x86\xa3\x86\x7d\xad\x93\x76\xd1\x16\xaa\xe6\x9d\x89\xb5\xd5\x55\x9e\xbd\x23\xeb\xe6\x8a\xc0\xb3\x0c\x2d\xf4\x53\x5d\xfd\xfc\xa7\xb2\x7d\x4d\x5a\x22\xe0\x47\x66\x6e\xd0\x3e\x70\x96\x6d\x2e\xd9\xba\xef\x8b\x3b\x5a\x53\x4e\xcb\x2d\xa8\x52\x17\xd9\xae\x5e\x37\x57\xb2\x00\x77\x86\xd5\x88\x8b\xc9\x1c\x3b\xcf\x17\x77\x15\xad\xde\x10\x6e\x44\xfe\xd7\x78\xdb\x94\x15\xad\xdf\x0b\x70\xf8\xbe\x92\xe1\x6c\x02\x81\x13\x8e\xbf\x64\x7e\x2b\x27\xe2\x50\x91\x03\xb1\x1c\xd6\x6c\xb7\xa4\xfa\xa6\x5c\x7f\xc8\x90\xb4\xbc\x93\xca\x1f\x86\x0c\x77\x03\x96\x1f\x2a\x5a\xbe\x6d\xf2\x4c\x4c\x94\x54\xb3\xb6\xfc\x48\x2a\x28\xfa\x6d\x61\xe8\x4f\xfc\x86\x6e\xb7\x8f\x61\xc5\xc1\x48\x7e\x7f\xb4\x7e\xb6\xa5\xef\x37\x5c\xf4\x25\x55\xac\x11\xb7\x21\x4b\xf3\x94\x7e\x1c\xd7\x85\x49\x72\x3e\x62\x39\xd1\x39\x2d\xdd\x1e\xa0\xea\xac\xe8\xd5\x00\x60\x70\x22\xfe\xc2\xb0\x78\x0d\xda\xd9\xef\x4a\x4e\x58\x08\x46\x5f\xdd\x35\xbc\x3e\x68\x93\xa9\x89\xbc\xeb\x4f\x43\x3f\x76\xe1\xde\x1f\x9e\x94\xd5\x2d\x88\x8a\x1a\x60\x8b\x3b\xda\xbe\x29\x3f\xd2\xfa\xbd\xc0\xae\x1e\x42\x25\xf7\x25\x86\x01\xe2\xf9\xae\x76\x80\xff\x2c\xba\x7d\xa2\x59\x45\xab\x23\x76\xd5\x42\x51\x22\x21\xad\x3f\x36\x1f\xc8\x77\xf4\x92\xac\x6f\xd7\x5b\xf2\xb8\x94\x4b\x6e\x15\xf3\x5c\x89\x69\xbe\x95\xb9\x00\x07\xb6\xeb\xb3\xee\xc7\xe1\xb9\x99\x7e\xc1\x9f\x78\xb0\x57\xf7\xd0\xf7\x37\xcf\xe9\x25\xc3\x44\x6e\xa2\x9c\xe9\x1d\x6d\xa5\x8e\x74\x72\x8a\xdd\x54\x23\x83\x83\xc9\x86\xd5\xcc\x1b\xb4\x0b\x51\x20\xa4\x13\xaa\x72\x90\x98\x84\x52\x5e\x3d\x63\xcd\x95\xf5\x33\xe6\x70\x85\x21\x2c\xa9\xa5\x2c\xd7\x2a\x1d\xa9\x73\x1d\xc2\xe2\xea\x0d\x48\x1a\xea\x02\x4d\xee\x8d\x7e\x49\x72\x01\x22\xbb\x3b\x6d\x7d\x3c\x92\x54\x24\x85\x40\x47\xf5\x74\x88\x0c\xa8\x73\xe8\x29\xb8\x8f\xc6\x0c\xd8\xf8\x28\xb2\x0d\xe2\xba\x07\x67\x89\x41\x4e\x6d\xf4\xbf\x05\x32\xbd\xf4\x8e\x22\xda\x38\x60\x33\xd1\x9a\x2f\x9e\x38\x4c\xc8\xdf\x72\x47\x14\x76\x42\xc9\xee\xac\xbf\x15\x95\x3d\xb2\x82\x2f\xe9\x0a\xd7\x4b\xba\x2a\x58\xc4\x6d\x9e\x9d\x09\x69\x7b\x61\x64\xf6\xba\xcb\xbf\x47\x58\x69\x3f\x5e\x16\x4f\xf2\x3b\x73\xcc\x17\xca\x58\x06\x37\xe4\x4b\x72\x23\xa3\x19\x5e\xce\xd4\xb1\x98\xd9\x2d\x2c\x8e\x39\x08\xc7\xd1\xec\x97\xee\x81\xf9\x22\x43\x00\x37\xfb\x3c\x58\xa9\xe4\x1c\xaa\xcc\xd5\x1a\x7d\x77\xdc\x50\x07\xe9\x93\xe9\xf0\x99\xe8\xb0\xf3\x57\xe8\xd2\x93\xe2\x3b\x6c\xa1\xdb\x7b\x11\xc2\xe5\x5d\x08\x95\xef\xa3\x4d\xe2\x6e\x36\xbd\x13\x15\xac\x2b\xdc\x08\x4b\x10\x06\x37\x42\x9d\x4b\x05\xcd\xd9\x30\xc1\xad\x68\xf5\x5d\x53\xc6\x06\x0b\xb8\xa9\xc2\xa3\x41\xcf\x0d\x88\x9c\xd3\x7d\xcc\xac\xcc\xd2\x44\x0f\x92\x12\xcd\xdc\xfb\xb4\x78\x86\x9f\xa7\xf7\xe6\x13\x68\xfd\xf3\xc3\x47\xe5\xb3\x50\xbb\x1e\x76\xff\xa3\x70\xc9\x85\x74\xde\x73\xe9\x44\xce\x8b\xbf\xe5\xec\xcc\x17\xbf\x18\x5a\xdc\x75\x98\x23\xa4\x84\x23\xe0\x94\x0b\x86\xf9\xac\x15\xbf\x40\x4c\xaa\x31\x47\x3c\x74\x29\xa1\x68\x3a\xcd\x9c\x6f\xb2\x49\x51\xd0\xe9\x34\x33\x9f\xe9\x07\x21\x2d\xe2\x32\xab\xb5\x2c\x27\x09\xff\x61\x8e\xeb\x93\x6c\x96\x9d\x50\x64\x25\xd8\x2e\xbf\xd3\xf6\xb2\xc9\x29\xa6\xed\x77\x92\x0b\xb7\x7f\x90\x4a\xfe\x56\x5c\xbc\xf8\xa9\x79\x2e\x78\x2c\x77\x47\xfe\x01\x74\x4c\xfc\x50\x37\xfa\x3c\x7a\x13\xf5\x58\x2d\x77\xd7\x86\xd8\x7d\x08\x9c\x82\xa9\xda\x39\xcf\xe3\x72\x83\xba\xf1\x2f\xae\x1d\x37\x17\xa8\xbb\xd1\xdf\x7c\x5a\xbf\x17\xf8\x24\xf1\x20\x22\x16\x44\xd1\x45\x11\xef\x03\x87\xd0\x5c\x95\x49\x99\xe3\x5e\xb8\x68\xce\xf4\x00\x6f\xac\x56\x24\x20\x64\xb6\x72\x8e\xc9\xcf\x3d\xa6\xc2\x07\x8d\x2c\xd8\xf2\x2b\x4d\x13\x93\x99\xe0\xa1\xb7\xa4\xac\xe1\x74\xe6\x07\xd8\xcc\x21\x46\x12\xd7\x0d\x7f\xd6\xec\xea\x61\x16\x84\x48\x5b\x4d\xa7\xb7\x79\x11\x48\xac\x72\x29\x0e\xc6\x27\xd0\x4a\x60\x20\xb4\x5d\xdc\xb5\x84\xef\xae\x8f\x92\x20\xa7\x53\x32\x53\x0e\x66\x4f\x68\x05\xe7\x28\xef\x33\xab\xaf\x93\x7c\x61\x94\x91\x8c\xf1\x59\xb1\x8b\xe1\x68\x29\x54\x7f\xfd\xe5\xa5\xd1\x5f\xca\xe5\x0f\xd0\x8e\x88\x68\x26\x1e\xf7\x71\x04\xdd\x75\xda\x7d\xa9\x5a\xbc\xc4\x6a\xf1\x8b\xe7\x7a\x76\x3d\x0c\xf1\x74\x1a\x0e\x6f\xa3\x9a\x67\x2e\x29\x9c\x7b\x88\xe4\x28\x40\x62\x38\x13\x55\xab\xf8\xaa\x92\x4f\xd1\x23\x7c\x06\x41\xfb\x7e\x08\x09\xe0\x8f\xee\xac\x78\xf3\x99\x34\x10\x86\x7e\x0c\x5c\xd2\x29\xfd\xc0\x3f\x47\xba\xff\x62\x12\xf4\x27\x0a\xfc\x07\xc5\x2a\x4d\xdf\x9c\x1b\x3f\x86\xb6\x52\x96\x16\xf2\xb3\xb2\x1a\xf9\x29\xbc\x3e\x55\xce\xab\x68\x25\x8f\x91\x98\x4c\xec\x66\x91\x7b\x23\x21\x70\x8f\x2d\x1c\x90\xbb\x13\xaa\x88\xff\x11\xaa\x84\xf4\x81\x4b\xc1\xe6\xb7\xac\x1a\xe8\x8e\x42\x1a\xf0\xa1\xd7\xc2\x33\x94\xd8\x8b\xa1\x09\xbc\x17\x68\xb2\x88\xbc\x95\xc9\x26\x8f\x40\xb1\x0e\x4a\x3d\xe2\x8c\x35\x0d\x77\x9d\x08\xbe\xfd\x2d\x3b\x11\x88\x91\xbf\x49\x59\xfa\xe1\xee\xd6\x16\x57\x48\x2f\x58\xdc\x75\xc6\x8c\xea\xd4\x4c\x80\x85\x07\xae\xd2\xde\x19\x8f\x1b\x98\xfc\x0f\x9e\x57\x43\xcd\x36\x3a\xfb\xeb\x71\xbd\xaa\xe6\xc3\x7d\x7a\x66\x96\x82\xc8\x93\xf7\x5a\x25\xa2\x57\x7e\x7b\x66\x91\xf2\x1b\x5a\x15\xb2\x3e\xbc\x74\x97\x03\x46\x4d\xd6\xf4\x85\xca\x11\xde\x03\xf5\x85\xb4\xd2\x15\x26\xd5\x0c\xf6\xcd\x6a\x85\x9b\x1c\x51\x99\xf1\x43\xbe\xb0\x20\xb3\xde\x33\x65\x50\x19\x74\x67\x10\xb3\x2f\x42\xb7\x5b\x50\x4f\x05\x8b\x43\x9e\x99\xd9\x29\x2d\x41\x56\x23\xbe\x61\xcd\x0d\x58\xdf\x54\x54\x02\xb0\xe1\x19\x00\x6d\xfc\xaf\xd9\x89\x72\xfa\xad\xdb\x6b\xb2\x96\x76\x35\x95\xc1\x1f\x9d\x64\xff\x3a\xde\x94\xed\xb8\x6e\xc6\xa6\xcb\xb1\xa0\x75\x95\xf8\x8e\x88\xd7\xca\xc1\x67\x06\xca\x3e\xb7\x0c\x47\xca\x09\x54\xa6\x8b\xcf\xef\x54\xce\x47\x77\x0d\xa2\x87\x3e\xe8\xa2\x16\xc1\xb8\xbd\xd3\xb3\xfa\xc5\x77\x02\x4a\x25\x01\x03\xab\xcf\xef\xa3\xda\x9e\x61\x2a\xcf\x30\x11\x72\x74\xa2\x83\x25\x5d\xa9\x82\xa0\x8e\x95\x10\x53\x1b\xdf\x16\xf7\xc1\xc0\xb4\x90\xe9\x8a\x2a\x93\x0a\xc6\xc3\x5e\xc9\x43\x43\xc2\x9c\xe9\xd4\xd9\x62\xf7\x74\xf9\x9b\xec\xbe\x11\xdb\x4c\x2f\xf3\x49\xe2\x5b\xef\xd0\x25\x7a\xf1\xda\x88\xfe\x54\xcc\xba\x6f\x89\x7c\x41\x78\x69\x5c\x3c\x2c\xda\x03\xfd\x90\x7e\xba\x93\x72\xbf\x77\x12\xd2\x4c\x8a\x42\x7a\x49\xa0\xcf\x82\x86\xa6\xe3\xb1\x3b\xab\x24\x4e\xaa\x00\xb8\x17\x52\x69\x27\x6d\xa5\x82\x27\xc8\x11\xde\x15\xed\x74\x2a\xe3\x80\xad\xd7\xd5\x6e\x3a\x6d\x82\x8d\x81\xe4\x08\xd2\x3d\x1d\x42\xe5\x9d\x50\x3e\xf9\xb5\x2c\x34\x3c\x9d\x4e\xd8\xcc\x88\x05\x39\x3a\xa3\x67\x5e\xad\x67\xc1\x91\x2d\x98\x42\xd8\x37\x75\x79\xdd\x6e\x1a\xae\x6a\xb9\x22\x4c\xcf\xa2\x7b\x5a\xd4\x8b\x03\xbb\x54\xd4\xb8\x16\xd8\xa7\xc8\x65\x1c\xf7\x34\xe6\x81\x73\x63\xed\xa1\x88\x25\xb3\x3e\x5a\xd8\xe7\x1a\xb5\xa2\xdf\x0d\x20\x56\xac\x85\x46\x2b\x9a\x3e\x01\xb8\x29\xe8\xbd\x51\xae\xd9\xef\x8d\x73\xdc\x44\x97\x54\xff\x3c\x08\xa7\xba\xbd\x07\xba\x95\x31\x74\x1b\x99\xa0\x28\x85\x32\xac\x58\xae\xb0\xfc\x6b\x20\x02\x9f\x0e\x20\x23\x41\x23\xee\x62\xdc\x7e\x9f\xd7\x67\x4c\x87\x44\xd0\x4a\xa0\x9b\x74\x87\xe9\x61\x1d\x92\xc9\x6a\xce\x22\x7b\x5d\xb0\xc5\xe0\xfe\x15\x0c\x33\x81\x70\x5e\x62\x9f\x00\xed\x1c\x50\x06\x09\x80\x64\xfe\x54\xda\xcb\xd0\x73\xa0\x83\x48\x0e\x56\x6a\x23\xa2\x63\xbe\x26\x6e\x0f\xd1\xa2\x8d\x1e\x32\xb9\xc9\xc8\xd4\xd6\x85\xfe\x63\xb2\xaf\x61\xef\x2e\x1f\x9d\xdf\x13\xae\x54\x21\xd6\x85\xcb\xb9\xed\x7a\x5d\x7d\x74\x2a\x2d\x3a\xed\x9c\x8a\x4c\x24\x70\xfc\x16\x9d\x8f\x22\x9f\xc4\x6f\xc7\x54\x2e\x26\x27\x73\xc1\x92\xad\x5c\x0f\x1b\xcc\x50\xe7\x5c\x72\xc7\xbb\xb9\xf9\x80\x00\x30\x3f\xde\x96\x6d\x2b\xdd\xcb\xbe\x8d\xb8\x97\x7d\x1b\xb8\x97\xfd\x50\xf4\x0e\x03\x66\x96\x25\x77\x46\x4c\x64\x67\x97\x72\x57\x67\x28\x3b\xc1\x39\x2f\x6a\x64\x07\x0e\x80\xc4\xec\x1b\x08\xad\xb2\x2e\xd4\x4d\xdd\x72\xb6\x5b\xf3\x86\x15\x1c\xf3\xd9\xc5\x05\xbc\xbb\xb8\x00\xef\x27\xf9\x75\x84\xd9\x11\x64\x47\xc6\xcd\xd5\x4e\x67\x65\x55\xfd\x44\xf9\xe6\x79\x5d\x91\x9f\x63\xb4\x5a\x43\x7f\x47\x2b\x13\x45\x21\x5d\x63\x21\x20\x6b\x4d\xde\x10\xae\x03\xf0\xb7\xb4\x85\x2a\xa9\x13\x99\x99\x8a\xad\x4c\xba\x67\xb1\x8d\x93\x39\x96\x58\xc3\xcf\xa8\x4e\xc3\xb1\xa0\xb3\xf6\x1a\x58\x17\x8e\xe7\x58\x3b\xeb\xb7\xf4\x1f\xe4\xa4\x38\x55\x51\x7e\x75\x97\x33\x47\xf6\xf9\x49\x80\xdf\xd6\x9f\x34\xf0\x55\xdc\x13\x66\x4e\x3c\x07\xff\xfa\xf4\x8c\x3f\x38\x5d\xcc\xc5\xac\x4f\x1f\xd6\x8f\x38\x38\x5a\xb1\x65\xfd\xe0\x74\x65\x3f\x5d\xd6\xc6\x46\xdb\x07\x9b\xde\x4d\xe5\x16\xcc\x5c\x37\xe9\xbf\xbb\x80\x22\xb3\x4b\x5a\x97\xdb\xed\xad\xe7\xc8\x07\x54\x90\xcd\x2e\xda\xdd\xbb\x76\xcd\xe8\x3b\xc2\xf4\x4c\x8b\x39\xea\x9c\xbc\x56\xa6\xd3\x1f\x2d\xd1\x98\xf8\xc9\x51\x05\x69\x6d\x39\x6b\x6e\x85\xb8\x1a\x94\xca\x36\xef\xc0\x9e\xe0\x18\x26\xff\x1a\x24\x03\xf9\x7b\xee\x04\xbd\xda\x60\x57\x16\xc6\x8b\xba\xa9\xbc\x10\xee\xc3\xe5\xc7\xdc\x0f\xb5\xfd\x53\x28\x93\xea\xa2\xf6\x0e\x6b\x8b\x69\x01\xbe\xf3\x57\x54\x3a\xf4\x61\x93\x58\x7a\xfe\xb0\x7c\x44\x1f\x96\x27\x27\x48\xc8\x13\xcb\x72\x65\x72\x46\x37\x45\x39\x7a\xc7\x48\xf9\xa1\xd3\x6e\xbe\xd3\xa9\x4e\xd5\xda\x14\x54\x33\x54\x73\xbc\x2b\xe6\x4e\x1e\x9b\xc6\x4e\x65\x5b\xd0\x07\x0d\x5e\x17\xa7\x0f\xd7\x8f\x0a\x0a\x39\x79\x60\x10\xf6\x60\x2d\x87\xa9\x1f\xac\x57\xe8\x6e\x5b\xac\x1f\x9c\xaa\xa1\xda\xa2\x7e\xb0\x7d\xd0\xe0\x5d\xc1\xc4\xff\x3a\xb3\xf7\x25\x65\x2d\x97\x2a\x76\x38\x30\x8b\x06\x97\x55\x45\xaa\xc7\xcd\xae\xe6\x8b\x56\x05\xf5\xa8\x3f\x77\x52\x14\xfe\x4b\x34\x89\x80\x7c\xf6\x62\x07\x82\xb5\xaa\xb5\x8c\xef\x02\x9f\xe1\x9e\x15\xac\xf6\xd5\x29\xfc\x50\xc2\x05\x25\x2e\xaa\x2e\x0a\xef\x2f\x10\xfe\xe5\xb1\x55\xe8\xa8\x5c\xde\xa5\x5d\xc6\x11\xc0\xc1\x2d\xdf\xfc\x92\xbe\x82\xba\x67\x27\xe3\x44\xd1\x7f\x64\xc7\x58\xef\x98\xb5\x3b\x2e\x57\xf2\xe1\xe5\x76\xd7\x6e\x1e\x97\x75\x53\xd3\x75\x29\xe3\x41\x66\xae\xda\x5b\x16\x88\x28\xeb\xdb\x1f\x6a\x65\x37\xe9\xa1\xa1\x4a\xf9\xea\x76\x3f\x58\x13\xee\x42\x9c\x93\xab\x92\xab\xcb\x95\xd6\xef\xf7\xfb\x09\x31\x40\xc9\x51\x87\x96\xf3\x95\x0e\xcf\xd2\xe3\x7a\xc1\xd7\x8b\xa8\xf8\x37\x7f\x48\x1e\xf5\xa7\xa2\x24\xba\x93\x13\xff\xa2\x74\xdb\x28\x6e\x96\xc7\xa7\xc6\x9d\xa9\x79\xdc\x6c\x29\x70\xe6\xb1\x8c\xa0\xfa\x89\x6e\xb7\x3a\xde\x09\x9f\xe2\x39\xea\xc3\x5c\x93\x59\x82\xb5\xd3\x3a\xc4\x5b\xab\x00\xa8\x48\x7b\x1d\x08\xd7\x1b\xec\x09\xad\xfc\xb1\x26\xf3\x4e\x87\x14\x74\x58\x9a\x81\xcf\x79\x2a\x86\x32\xb2\x72\x9b\x0f\xda\x2c\xd0\xe3\x54\xb0\x8f\x26\x81\x2a\xce\x74\x60\xf4\x49\x93\x39\xc2\x3f\xca\xe0\x22\x4d\x9a\xff\x94\xf7\x06\x17\x8c\xba\x22\x15\x6c\x16\x9e\x6b\x5d\xf6\x22\x01\xe4\xfe\x07\x98\xcd\xdc\xb3\x8f\xd9\xcc\xd2\x85\x18\xbc\x03\xf8\x7a\xa7\x83\x68\x61\x7e\x08\xf6\xf7\x9e\xc2\x74\xea\x3e\xf8\x7a\xae\x93\x82\xf9\x7c\x51\x59\xdf\xaa\xfa\x2e\x60\x0f\x12\xed\x25\x24\x20\x14\xff\x03\xb9\xcd\x04\xa7\x2e\x8e\xc7\xf5\xb6\x5c\x27\xb2\xf2\x8c\xa0\xfb\xbc\xee\xef\xb8\x5a\x19\xc1\xe4\x44\x83\x05\x3a\xb6\x9e\xc8\x10\x1a\xab\x55\xfb\x3a\x11\x6b\x30\x03\x5c\xcf\xae\xca\xeb\xd8\xf9\x7e\x0b\x99\xbd\x10\x84\xc4\x26\x7a\x2f\xab\x0a\xb2\x87\x46\x3b\x66\xc3\x1d\x1b\x06\x85\x11\xce\x28\xf9\x48\xbe\x2b\x39\x69\x79\x0e\xa6\x4a\xf7\x49\x82\x89\xee\xcf\xe6\x3d\xe1\x89\xb9\x18\x67\x79\x65\xc9\xb4\x2d\xbf\xb9\xfd\x73\xdb\xd4\xe7\xd7\xd4\x95\xbb\x08\xd0\x66\x93\x26\x97\xe7\x19\xe4\xe2\xc0\xc4\x8d\xde\x08\xe9\xad\xac\xec\x73\x20\x2f\x03\x4c\x49\xe6\xad\xd4\x29\x18\x5e\x68\x34\x91\xf7\x8d\x6d\xe6\x61\x53\xe6\xee\xb0\x84\x2f\x64\x78\x2a\x3f\x26\xca\xb9\x63\x5e\x64\x4f\xde\x2c\xc6\xa6\xfb\x7f\x11\x6d\xc7\x5a\x2c\xb6\x2e\xf6\xc0\xee\x23\xac\x79\x53\xe0\x64\x74\x40\xe1\x4c\xaa\xf0\xa5\x89\x4c\x4c\x21\x99\x07\x83\x68\xed\x7a\x64\x4c\xd5\xc4\x3c\xcd\x1c\x71\x39\xcc\x21\xc2\x3a\x14\xa6\xa2\xe8\xd1\xbe\x70\x05\x0a\x9e\xb8\x1f\xe5\xad\xd6\x26\x78\x26\xb7\xcf\x9c\x39\x8a\x06\xe2\x47\x80\x08\x5e\x5a\x72\x17\x79\x8d\x70\xed\x45\x47\xfe\xce\xbd\xfd\xa6\x53\xa2\x0b\x2d\xa8\x1f\x33\x55\x39\x01\x38\x95\x7f\x1f\x52\xda\x5b\x5c\x54\x11\x7a\x3e\xe9\x28\x38\x76\x44\x40\xf0\x25\x73\xe3\xe8\x9c\xc7\x6f\x55\xdc\xa7\x04\x4c\x44\xc7\xcc\x67\x17\x3a\x15\x96\xef\x1c\xc6\x81\x34\x70\xf2\x56\xc8\x4a\xfd\xfd\xfc\x9d\x09\x92\x56\xc7\x02\xa1\xb3\x4c\xac\x32\x83\xea\x9e\x9d\x2a\x2d\x54\xf4\x70\x4f\xf2\x33\x45\xf8\xf5\xc8\xf6\x0b\xc9\x2e\x15\xe4\x72\xa2\x4b\x51\x68\xe0\x41\x66\x7e\x99\xfc\xe6\xde\x9d\x83\x1e\x4c\x1e\xdd\xbe\x0b\x95\x7a\x01\x23\xca\x63\x4c\x3a\x29\x90\x9a\xdd\xf9\x8f\xdf\xba\x25\xe8\x3f\x0f\x8b\xcd\x46\x98\xc3\xac\x2f\xce\xd5\x6e\x45\x2d\x9d\xd0\x84\x41\x26\x13\xf0\x83\xb5\x42\x1c\x5d\xd9\x6c\x35\x04\x22\x8c\x15\x53\x4c\x30\xe4\xb6\x5b\x89\xe5\xad\x4b\x71\x48\x94\x2c\x8e\x54\x79\x9f\xf0\x16\xb4\xb6\x93\xee\xcb\x88\xe9\x6e\x7c\x63\x51\xf7\x8f\x00\x18\x85\x92\xaa\x8c\xaa\xc3\xed\xe0\x51\xc8\x68\x45\x6a\x4e\xf9\x6d\x26\x5a\x0a\xf2\xd0\xdf\x04\x2f\x07\x77\x4c\x22\x0c\xe9\xa6\x73\x2d\xa8\x3b\xc9\xa4\xd2\x14\xa3\x00\xa6\xa4\xe6\xec\xc3\xd7\x58\xc4\xce\x22\x2f\x1d\xce\x6f\x21\xbd\xc2\xda\x99\xb8\x73\xdc\xae\xad\x94\xa7\x21\xe2\xb1\xc6\x72\x76\xb6\x52\xad\xa4\x0b\xa0\xda\x31\xed\x5d\x13\x94\x54\xc2\xfe\x50\x0b\xcc\x1e\xf3\x66\x7c\x49\xf8\x7a\x33\x96\x24\x6b\x2c\xce\xe1\xed\xb5\xb8\x85\x4c\x2f\x27\xd9\xf8\x86\xf2\x4d\xb3\xe3\xe3\xb2\x1e\xcb\xc8\x92\x56\x5d\x8d\x7d\x02\x00\x9f\x01\x74\xec\xa9\x27\x67\x44\x67\x33\x42\x52\xb9\x29\x7f\x77\x98\x16\x35\xce\x1b\xad\xe2\xbb\xa0\xc3\xfa\x3d\x1f\x74\xb4\x92\xda\xac\xff\xc8\xa9\xa3\xcd\x6a\x10\x2e\xe1\x19\x2e\xc5\xe5\x90\xff\xbb\x94\x98\xff\x7c\xe8\x5c\x9a\xc4\x63\x90\x2f\x48\x1f\xad\x46\x1d\x2d\x75\xf3\x63\x66\x8e\xd2\x07\x72\x5b\x50\xdc\xcc\xa2\x86\x81\xa2\xc6\x8d\x3c\x6c\x75\x3f\xad\xa1\x9c\xa6\xf2\x4c\x85\xbc\x87\xb2\x0a\xe3\x25\x61\xa4\x5e\xdb\x57\x9e\x14\x56\x30\xdc\x7c\xd1\xd3\x19\x3b\x97\x34\x38\x97\xc7\x93\x78\xa9\x63\x97\xff\xcb\xba\x66\x82\xee\xa8\xbf\x80\xae\xd3\xf8\xb5\xd7\xd7\x1e\x8b\x5b\x54\x1c\x13\x3f\xe9\x17\x04\xe4\x8b\x5e\x3e\xdf\x71\x0f\xe2\xff\xc9\x98\xd6\x2d\x2f\xeb\xb5\xb8\x9b\x5e\x91\x33\xb2\x08\x08\x01\xe6\xf1\xcd\x17\xfc\xa8\xe1\x3a\x5f\x9b\x35\xe4\x6f\x55\x6a\x00\x98\x76\x8f\x7e\x38\xa7\x27\xb2\xfd\xca\x34\x13\x81\xba\xae\xc2\x22\x60\x6b\x55\x73\x69\xa3\x85\x6a\x39\x92\x65\x0f\x58\x44\xde\x66\x9e\x38\xea\x54\xb0\x13\xf3\xf6\x0f\x7d\xc0\x3b\xc7\x26\x1e\xdd\x39\xe0\x8c\x69\x8f\x86\x44\x77\x2f\xd9\x73\x2c\x17\x9c\xea\x7c\x80\x96\x2b\xd2\x04\x75\xa1\x0c\x75\x20\xe4\x4b\x91\x87\x88\x11\xe7\xff\x19\xe2\x70\xcf\x03\xec\x49\x7e\xfa\xf8\xc6\xef\x75\xd7\x12\xd3\xa7\x30\x03\x8c\xbd\xc3\x01\xb7\x99\xe8\x9f\x56\xed\xe1\x8e\xb1\x9b\x9a\x8e\x68\x03\xa1\x60\xab\x80\x62\x25\x84\x64\x22\x6e\x20\x28\x84\xf8\xf9\xc9\x50\x41\x46\x3d\xfe\x18\x96\x6d\x8c\x97\x44\x9d\x63\x9d\x56\x37\x29\xc9\x07\x54\xcb\x51\xc2\xf3\x18\x76\xea\x40\x70\xa9\x6a\x69\x73\x28\x22\xd2\xe3\x59\xcc\x5e\x46\xbb\x80\xcd\x45\x32\x35\x87\x56\xc6\x46\x37\xc1\x14\xb2\xf2\xc5\xc2\x58\xa7\x90\x7c\xe5\xdc\x7f\x26\xb5\x0a\x4a\x0b\x10\x9b\xc8\x15\x24\x1d\x6d\x67\xbc\x91\x1c\x35\x9a\x91\x8f\x84\xdd\x46\xb4\xfe\x50\xc2\x8b\xa4\x49\xef\x20\x45\x05\x7a\x29\xff\x7a\x0e\xac\xe8\x25\x25\x2c\x47\xc8\xd3\xb3\x46\xa9\xbe\xcf\xe9\x9a\xd6\x09\x4e\xd1\x57\x44\x00\x98\x17\x47\x11\xe6\xf4\xfe\x1d\x24\xc8\xe9\x6e\x64\xe3\x68\x4f\x92\xb2\x1a\xf2\x09\x59\xab\xee\x9c\x9b\xa4\x28\xc8\x7e\x9f\x41\x1a\x9d\x33\x48\x3a\xdd\x2b\x03\x27\xee\xdb\xac\x85\x1c\x45\xde\xc3\x19\x6f\x64\xbe\xa3\x1c\x2d\xb2\xec\xc4\x89\x31\x64\xe4\xb7\x2e\x1b\xd6\xe4\x50\x42\x20\xeb\xd1\x66\x58\xf7\xb7\x8d\x24\xf1\x69\x1f\x3c\xf8\xaa\x35\x56\x86\x0b\x21\x3a\x43\x72\x7d\x40\x8d\x83\x1e\x6e\xef\xdd\xa0\x34\xd2\x13\xbe\xd4\xf8\x50\x45\x4f\xe3\xda\xa6\x6c\x23\x9f\xe8\x72\x74\xee\x37\xd2\x4d\x80\xc7\xbc\x0b\xbc\x76\x05\x10\xd1\xb2\xaa\xc2\x96\x5a\x35\xed\xb4\xe6\xab\x82\xf8\x6b\x37\xa2\x99\xba\x50\x3e\x86\xfe\x10\xba\xb2\x61\xaf\x27\xb7\xa6\xae\xee\x8c\xd6\x15\xf9\xf9\xd5\x65\x4e\xd0\x43\xc8\x8d\xa9\x95\xab\xfa\xbd\x32\x2d\x30\x7c\x2a\xfd\xe5\x9a\x9a\x97\xb4\x8e\x41\x04\x3e\x4f\xf4\x0d\x9f\x6e\x49\xc9\x52\xd7\x93\xfc\x62\x14\xec\xf1\xc8\x9a\x82\xe7\x0f\xf9\x23\x63\x72\xe1\x02\xbd\xc9\x92\xaf\xbc\x30\xc0\x1c\x75\x31\x9c\x08\x3c\x2b\xb4\x96\x7e\xc8\xa1\x40\xcd\x5f\x36\x35\x8e\x08\xf2\xe9\x31\x5f\xda\x4f\xd4\x4c\x0e\x7c\xa4\x5a\x99\xe4\x73\x66\x01\x91\x73\x80\xa4\x1c\xc8\x48\xc4\xad\x41\x3c\xd4\x7e\x0d\x98\xa6\x0e\xa0\x46\xc9\xab\xf2\x3a\x36\xc0\x90\xf2\x4e\x6b\xc2\x13\x97\x3f\xf4\xb9\x24\x86\xbb\x08\x8c\x37\x6e\x13\xd0\xfc\xd4\x44\x26\xfc\xed\x74\x42\xba\xb8\xf7\xa5\xf9\x2e\xf0\xb9\x24\xe0\x5d\xd9\xa3\x7b\x64\x29\x68\xde\x4a\xa7\xb8\xeb\xa4\x5a\x0d\x37\x32\xb1\xcb\x4f\xa4\xfc\xf0\xa2\xbc\xc6\x25\x29\x4e\x2d\xd1\x6e\x89\x53\xac\x8b\xa8\x24\xa5\x89\x65\x88\x5e\x76\x90\x7d\xb0\x21\x2a\xc3\x29\x47\x3a\x01\xec\xee\x10\xd9\xf3\xd4\xac\x17\x5a\x99\xf3\xa2\xbc\xf6\x53\xa2\xd5\xe4\x66\x7b\x2b\x3d\xcd\x2b\xff\x8d\xfb\x89\x98\x0a\x25\xb1\x4f\xe4\x9b\xa1\xbd\x94\xb5\xb8\x8a\xa8\x95\xa7\x50\xe6\x78\x2e\x2f\x2c\x4e\x64\x32\x4d\x29\x9d\x10\xf2\x01\xaa\xb5\xd7\x98\x19\x10\xd1\xb3\x1c\x28\xe5\x9b\xf5\x86\x54\xbb\x2d\xa9\x94\xc3\x42\x8e\xa6\x53\x3a\x5b\x0b\xc1\x72\x6b\x1e\x61\xaa\x14\x23\xef\x76\x74\x2b\x7b\x02\x31\x9b\x21\x81\x08\xb2\xff\x81\x79\x19\xa9\xd5\xda\xa1\xbc\xb5\x03\xb9\xd3\x69\x05\x65\xa2\x26\x84\x27\xf5\x74\xca\xed\x07\x70\x4e\x5f\x94\xd7\x4e\x2b\x2e\x0b\xaa\x01\x83\xf3\xcd\xed\xeb\x1e\xb7\x6f\xf0\xc3\x9d\x03\x99\xad\xb7\x54\x30\x51\x95\x83\xe1\x89\xc9\xc8\x32\x49\x12\xb7\xcc\x67\x62\x50\x05\x6b\xdb\x83\x2a\x93\x26\xbf\xc0\xe0\x40\xee\x7d\x01\x07\xa6\xd5\x72\x6b\x12\x58\xfe\x76\x41\xb5\x23\xeb\xdd\x55\xa3\x9e\x96\xec\x71\x59\xd7\x0d\x1f\xb7\x84\x8f\xf9\x86\x8c\x69\x35\xce\x4e\xf8\x49\x36\x16\x4c\xcd\x86\x68\xa5\x19\xb8\x21\x2e\xb2\x13\x76\x92\x8d\xcb\x56\xbc\x61\x64\x4c\xc1\x7b\xb1\xdd\x59\xdd\x1a\x95\x1f\xad\xcb\xf5\x86\x68\x5f\x45\x21\x5a\x81\x47\x72\xed\xa4\x89\xb2\x53\xa2\xf2\xd2\x05\x6b\xf1\x9d\x33\x79\x48\x87\xd4\x60\xae\x92\xe3\xba\x7b\x57\xfb\x5e\x75\x5c\x15\x02\x1c\xd8\x06\xef\x0b\x95\x73\xb5\x06\xfa\x29\xbe\x7f\x5e\xe5\x5c\x50\x0c\xee\x0c\x1d\xf5\x9c\x4a\x63\x91\x83\x9e\x2c\x75\x24\x72\x36\xab\xe4\x5f\x6f\x6e\xeb\x75\x2e\xe8\x98\x64\x72\x98\x18\x1a\x8e\x45\xb0\xa7\xba\x22\x2a\x0a\xe1\x22\xe6\xa4\x8d\xdd\x7c\xbf\xaf\xf7\xfb\xbc\x2e\x32\x89\x2c\x0f\x68\xb5\x50\xba\xcd\x9a\xdc\x3c\x56\x08\x94\x23\xb3\x1b\xe4\x66\x7c\x25\x0b\x6c\x5a\xda\x84\x6b\xb7\xa2\xf1\x81\xe3\x55\x56\x55\x4e\x0d\xc8\x03\x78\xc8\x97\x82\x72\x88\x55\x39\x33\x88\x08\x05\x25\x39\x39\xd1\x56\xa0\xf4\xfd\xe2\x0d\xe0\x6c\x24\x66\x32\xcc\xa2\x2e\xec\x39\x19\x09\x56\x46\xef\xb0\xbe\x21\x87\x0f\x68\x1f\x33\x08\x54\xbf\xe1\xee\xc0\x43\xfc\xa3\xa1\xcc\xe6\xa6\x04\xe6\x87\x27\x86\x4c\x77\xe5\x36\x0f\xfb\x0a\x6e\x4a\xe2\x04\xdd\xe8\x6c\x7f\xee\x4c\xd4\x35\xb8\x88\xed\x90\xbe\x22\x03\xc3\xd3\xf6\x37\x2f\x5d\xac\xe3\x31\x19\x97\xf1\xc7\x9b\xe8\x63\xbb\xde\xca\x15\xd9\x36\x04\xd8\xff\x1c\xfe\x2f\xa4\x73\x0d\xcf\xb3\x59\x86\x24\x6b\x74\x4d\x8a\x53\x7c\x95\xbc\xe6\xf5\x61\x8d\xcb\x38\xb4\x2a\xdc\xb3\xa6\x13\x4a\x6a\x9c\x2d\x6a\x1d\x2d\x95\xb0\xb5\x5e\x38\x6e\x82\xde\x0b\x2a\x43\x00\xfd\xc6\xd7\xa4\xae\x68\xfd\xde\x09\x00\x7e\x51\xd6\xe5\x7b\xc2\x9e\x6d\x77\xed\xa6\xdf\xb1\xe7\xa0\x14\x74\xff\x9a\xa8\xa8\x75\xff\xb3\xaa\x79\xd9\x70\x35\xa5\xe0\x0b\xeb\xb3\x18\xcc\xca\x4d\x0e\xe0\xbd\x91\x8b\xf6\x9f\xb5\x01\xf9\xf4\xdf\x5a\x67\x5f\xff\xf9\x45\x45\x2e\x09\x63\xa4\x7a\x2b\x23\xf0\xc2\xd7\xcc\x89\x89\x0e\xe7\xa0\xb4\x8f\xbd\xe7\x9e\x6e\x32\x98\x86\xd6\x55\x3c\x16\xd7\xdd\x80\xf8\xca\x88\x10\x9f\x88\xf5\xb2\x38\xfc\x81\xd5\xf0\xa8\x2a\x26\xed\x3d\xbf\xf9\xf9\xd0\x20\x9e\x87\x92\xbb\x2e\xd2\x47\x29\x17\x31\x8d\xaf\xa0\xaa\x7c\xfe\xa7\x1f\x9e\x3f\xb9\xf8\xcb\xd3\xbf\xae\x8a\x6b\x72\x72\x72\x62\x3c\x46\x1e\xc0\x2e\x65\xb1\xed\x77\x22\x01\xd5\xe6\x03\x77\xd5\xc7\x75\xed\x6b\xa8\xf1\x5c\xff\x7d\x08\xc7\x4d\xbb\x3e\x7e\x9b\x57\x3d\x14\xb3\xb3\x62\xa4\xb5\xe6\x81\x3e\xce\x39\xd3\xef\x63\x9c\xfb\xd2\xc3\x37\x6f\xd1\x06\xdb\x7a\xa0\xb0\xb8\xe6\xe9\x36\x28\xd4\x37\xeb\x31\xf4\xcd\x8c\xb6\xdf\xd2\xaa\x22\xf5\x33\xd6\x5c\xb9\x31\xff\xfd\xdb\x56\x29\x2f\x54\xa2\x13\xf0\x62\x9e\xd4\xb3\xd7\x4f\x1f\xbf\x7a\xfd\xe4\xe2\xc9\xf9\xdb\xf3\x8b\x37\x6f\xcf\xdf\x3e\xdd\xef\x75\x3b\x95\xee\x23\x47\x08\x8c\x5b\x91\xb6\xfa\xe2\x51\xd6\xdf\x67\xbb\xed\xf6\xd6\xc4\x8a\x2c\x20\xc8\x75\xe6\xa7\x2a\xd2\x29\x8a\x7d\x1f\x32\x9d\x7a\x26\xb5\x6b\x2a\xc0\x39\xca\x57\xa9\x77\x0e\xda\xec\xf7\x44\xd9\x3c\x3a\xdc\xc4\x67\x17\x83\x4e\x64\x7d\xd3\x69\x3e\xc9\x27\xee\xf6\x80\xa6\x5f\x05\xc4\xd0\xa6\x7e\xac\x83\x8d\x35\xd4\x0e\x34\xcb\x11\x80\x7d\x92\x47\x1a\xbf\x24\x37\x36\xbf\x7c\xd8\x09\xa9\xa2\xef\x5e\x92\x9b\x1c\x0d\x7d\x05\x03\xde\x7f\x23\x10\x12\xa0\xd3\x90\x7b\x5e\xff\xd0\x0e\x18\x2f\x20\x44\xc4\x1a\x2e\x26\x39\x51\xbe\x63\xbe\x73\x7b\xf8\x54\xb9\xb5\xc3\x38\x80\x92\x29\xad\xb1\x37\x45\xd5\x56\x7e\xa6\x30\xf4\xc8\x0f\x55\x6b\xfb\x69\x0c\x0f\x92\x5f\x92\xaa\x93\xc6\x2e\x88\x9a\x8f\xc7\x8e\x26\xbb\xe8\x7f\x26\x67\x21\x93\x49\x1c\x39\x0b\xd9\x58\x7e\x98\xc4\xe3\x71\x14\x8d\xd3\x08\x72\x36\x84\x3b\x8b\xd8\x34\xd4\x5b\x39\x8f\x97\xe4\xe6\x17\xcc\xe1\x25\xb9\x89\x8d\x0f\x58\x1d\x1d\xfb\x25\xb9\x91\xe3\x06\x69\xc4\x64\x31\x0b\x7f\xd8\xa7\xaf\x5f\xbf\x7a\xfd\x06\x0d\x00\x14\x3a\x11\xfd\x99\xf4\x2b\x47\xed\x84\x69\x2d\x3e\x35\x86\xe4\x30\x84\xda\xa3\x07\xd3\xe9\x24\x41\xda\x3c\x49\x47\x8a\x62\xac\xb8\x83\x1f\x0b\x8e\x7d\x93\x0c\x80\x04\xbb\x73\xe9\x03\x09\xab\xbb\x72\xe1\x5e\x9c\x58\xc5\x9c\x3b\x6f\xe0\x96\xef\x3c\x6f\x6d\x39\xef\x8c\x56\x82\x49\x27\x86\xd9\x27\x32\xd2\x4f\x8b\x9b\xb5\x75\x49\x7d\x5e\xe5\xb5\x64\x8f\x69\xc1\x83\x6c\xc2\x4f\x04\x2b\x0f\x69\x19\x22\xa1\x70\x4e\x54\x07\x45\x5a\xde\x68\x70\x19\x2a\xfa\xda\x62\xfe\xb0\x7d\x54\x6a\x11\xa4\xd5\x22\xc8\xae\x28\x97\xed\x0a\x6f\x0b\xba\xdc\xad\x46\x66\x01\x5b\x59\xd1\xca\x29\x61\xb0\x85\x28\xcd\xb3\x5b\x92\x93\xe5\x6e\x85\x16\xef\xd5\x0f\x2c\xfe\x2d\x1a\x2d\x57\x14\x3d\x24\xbc\x10\x93\x97\x1b\x2b\x05\x32\x15\xae\x9f\x9b\xaa\x27\x2a\xc6\x9c\xe1\xb5\xae\x8e\xd1\xea\xb2\xf7\x0c\x87\x75\xf0\x11\xf2\xf9\x1d\xae\x18\x8a\x67\xe5\x9a\x37\xec\x36\x16\x2d\x68\xf2\xbc\xe9\x3c\xed\x92\xc3\x78\x12\x30\x1c\xd6\x7f\xc1\x1d\x40\x60\xa6\xc3\xc5\x14\xbd\x10\x13\x87\xef\xea\xf3\xfa\x9a\x47\x92\x9c\xa0\x6d\xe3\xb1\x8c\xff\x98\x11\x4d\x88\x2b\x07\xa5\x7b\x09\xf8\x3c\x63\x68\x92\x2b\x8b\x4a\x16\x86\x57\xd3\x87\xc8\xbb\x36\xb5\x32\x25\x37\xe2\xa3\x13\x93\x1f\xe7\x86\xe3\xb9\xdf\x49\xaa\xf9\x92\xaf\xf4\x20\xd3\xe9\x31\xad\x72\xa4\x12\xa8\x8c\x87\x5a\x77\xb1\x09\xfb\xc2\xc4\x50\x92\x7a\x92\x12\x28\xc0\x6c\x14\xf6\xb4\xe4\xab\x91\x9d\x53\xef\x1d\x96\x41\xe5\x41\x98\xd2\x74\xca\x8c\x96\x20\x40\x5d\x38\x1d\xbe\x01\x26\xc9\x34\xc7\x33\x51\x35\x89\x4c\x8d\xe8\xee\xb8\x6b\x43\x10\x9e\x01\xa6\xc8\x7d\x9d\x4f\xe6\x26\x56\xa3\xae\x74\xfe\x2f\x5d\x4e\x50\x4c\x45\x30\x43\x11\xbd\x93\xf4\x20\x17\x87\x51\x7b\xac\x73\x59\xea\xd1\xf1\x70\x00\xd6\xdf\x51\xfd\x59\x0a\x3e\xd3\xb2\xc5\x9b\xf2\xa3\x0a\xf6\x65\x98\x20\xcc\x74\x28\x16\x8c\xcc\x4b\xc6\x49\x65\x4f\x5d\x78\x46\xbd\x13\xa9\xce\x87\x93\x7a\xc4\xd0\x1c\xef\x50\xe0\xcc\xf9\x2c\x93\xe1\x00\x0d\x38\x90\xfc\x54\x2a\x36\x06\x0c\xfb\xc9\xb0\x68\x89\x63\x77\xdd\x88\x81\xcd\xb2\xbf\xf7\xd7\xbb\x76\x03\xce\x5e\x50\x4b\x58\xaa\x37\x62\x15\x85\xb1\x77\x1d\x48\x9f\xfa\x66\x26\x2e\x85\x76\x73\xf4\xb2\x4f\x3f\x71\xd9\xa7\x48\x52\xc0\x9e\xad\x5f\x6d\x92\x0f\x7a\x15\x0f\x6c\xea\x79\x3a\xbb\x2f\xbb\x18\x37\x97\x0a\x05\x46\x4e\xe8\x6d\xbf\xd4\xa8\x17\xf0\xcc\x75\xb2\x78\x27\x63\x5d\x86\xef\x94\x63\xcc\x82\x61\x95\xdd\x6e\x41\x04\x68\x7a\xd1\x9a\x8e\x43\x57\x90\xdb\x10\xf3\x0e\xfb\x6b\x62\xcd\x8d\x6c\x26\x5b\x10\x70\x3f\xec\xaf\x62\xdd\x5c\x5d\x8b\x03\x80\xc7\xf2\x64\x8e\x2f\xb7\xe5\xfb\x36\x43\xd1\x30\xd7\xfe\x56\x89\x91\xe3\x67\x1a\xa0\xed\x25\x67\xed\xef\xaa\x23\x9e\xe5\xce\x91\x74\xbf\xd2\xf1\x25\x91\xfb\x24\xb7\x16\x93\xa8\xf4\x6e\xee\x86\x9e\x58\x2f\x77\x89\xed\xea\xd9\xbb\x72\xfd\xe1\xdd\x8e\xd5\x02\x7f\x54\x2b\x41\x12\xa0\x99\xd4\x53\xe0\xec\x62\xbd\x21\xeb\x0f\xcf\x1a\xf6\x8a\x5d\x6f\xca\x3a\x08\x14\x6c\x21\x58\x4a\x8a\x01\xa1\x24\x9a\x14\xb8\x7b\x53\x12\x1d\x78\xc6\xb1\xfe\xf5\xec\x5f\x83\x69\x6d\xdd\xe4\x14\xdb\xf5\xc9\x3e\x13\x70\x40\x43\x6a\x0f\x49\x94\x8d\x69\xa2\x3f\x9f\xde\xc8\x8a\xf0\x86\x36\x3e\xd9\x7a\x18\x86\x39\xc2\x7d\x94\xe8\x69\x0f\xd5\x23\x73\xb1\x82\x28\x3f\xdc\xf1\x11\xd3\x3e\x4a\xfd\xe3\x4c\x4c\x8c\x7a\x20\x8f\x84\x4b\xfd\xad\x92\x28\x95\x52\xa2\x91\xe5\x15\xbf\x89\x26\xf2\x91\x3a\x64\x9b\xbc\x24\x72\xb3\xf8\x5f\xf7\x03\xc7\x24\xc1\x86\x8e\x02\x7a\x62\xe3\xc5\x3f\x92\x9c\x62\x82\x03\x8e\x5d\x7c\x03\x9e\x00\xf8\xf8\x4f\xb4\x01\x17\x29\x49\x28\xbe\x2c\xcf\x7a\x76\x91\x72\x79\xb6\x79\x08\x6c\xa6\xcf\x23\xf3\xb3\x68\x23\xb5\x4e\xee\x52\xfb\x55\x9e\x70\x69\x4b\x42\x35\xfb\x7d\x83\xdb\x02\x1c\x35\x08\x96\x62\x16\xc5\xa9\xaa\xcc\x52\xe0\x32\xe3\x2d\x6a\xb0\xcd\x82\xd4\x54\x6a\x49\x04\x2c\x7e\x55\xc9\xcb\xb3\xa1\x44\x2a\xb2\x89\xf4\x65\x03\xc7\x64\x7f\x7d\x82\xa0\x3c\x2b\xe9\x96\x40\xa2\xdb\x73\xce\x05\x6f\x8d\x02\xc6\x3e\xca\x4e\xaa\x6c\x37\x5b\xa7\x76\xa7\x03\x53\xf0\x8a\x0a\x58\x94\x0b\x49\xc2\xdd\x7a\xdd\x02\xb4\x4e\x3e\x25\x4c\xb0\x89\x85\xdb\x9a\x02\xac\xbb\xb3\x5d\x2f\x96\x03\x07\x55\xaf\x17\xad\x4d\xe6\x71\x2f\xc0\x44\xa2\x44\x1a\xcf\x1f\x30\xc4\xa8\x20\x42\xf8\x14\xb9\x7e\x4e\xf7\xc7\xa0\x3a\x8a\x9d\xda\xf3\xcf\xa2\x58\xc8\x41\xeb\x9c\x58\xba\x08\xb3\x3b\xfc\x50\x80\x67\x8d\x70\x59\x4c\x26\xb5\x3f\xc9\xe9\x34\x78\x10\x32\xe6\x39\x1a\xd1\xe2\x2f\x26\x60\x51\xa9\x09\x2c\xee\x5b\x3e\x4c\xce\xe1\x4a\x81\x3b\x67\xd2\x0f\x01\xdb\xf5\x2d\xc2\x05\x63\x28\x84\x5e\xcb\x7a\x6c\xf2\x7c\x78\xa1\xff\x0b\x66\x8e\xd5\xb5\x7d\x8a\xbd\xac\xb6\x8d\x89\x74\x0e\x13\x1f\x94\x38\xa2\xca\xb0\xa9\x10\xb8\x49\x19\xd8\x03\x70\x41\x43\x09\x37\x2a\xfc\x90\x95\x23\x1f\x26\x5a\xf4\xe5\xb4\x03\x1f\x80\x15\xbb\x99\x41\xfc\x10\xac\xe3\xdb\x48\x0e\x2c\xcf\x6f\x5e\xf2\x90\x65\x11\x3d\xb4\xd6\x90\xe3\xf8\x4b\x95\xfb\x7d\x5e\x16\x21\x8d\x4f\x62\x8e\x34\x1e\x62\x8e\x69\x3a\x06\xa0\xee\xc5\x33\x4b\x47\x87\x3c\xd3\x10\x07\xd1\x00\xd7\x5d\x3a\x47\xc8\x47\x92\x37\x98\xe0\x80\x50\x61\xde\xbb\x25\x0e\x7e\x22\x6f\x56\xd4\x1d\xb4\x6e\x89\xcd\x2e\x71\xa9\x6f\x93\x18\xac\x87\xee\x12\xe7\xb4\xfe\x82\x9b\x24\xbc\x3c\x1a\x7b\x79\xd0\xfd\x9e\xea\xad\xf5\x7c\x95\x09\x6e\x40\xa7\xd5\xa8\xca\x6c\x9f\x97\xb6\xb7\x72\xc4\x1e\x12\x4a\x6f\x2c\x5c\x1e\x4b\xe0\xb5\x5e\xcc\x25\xef\xad\x21\xef\xa5\xa5\xdc\x25\xf0\x29\xd1\x5e\x86\x9c\x8e\xd2\x1a\x0f\xd0\xf7\x21\xa3\xa7\x63\x33\x35\xa8\xa0\x77\x80\x96\xa6\xf0\xb7\x79\x65\x30\x56\xcd\x34\xb3\xd2\x33\x1a\x91\x6d\x4b\x14\x9f\xe4\x15\x2c\x3d\xdb\x2c\xd6\xa3\x03\x73\x29\xa8\x55\xad\x85\x84\x25\xa5\xb0\x31\xb2\xe4\x31\x28\x39\x70\xe2\x05\x72\x98\x18\xa4\x91\x0f\xba\x38\x26\x8f\x7a\x37\x44\x1e\x5e\x11\x2d\xb4\xef\x61\x58\x3e\x39\x15\x30\xec\xb5\x7d\xb3\x69\x76\xdb\xea\x59\xc3\xd6\x44\x4a\x76\xf9\x64\x6e\x7c\x83\x3e\xf1\xd4\x34\xb1\x33\x81\xf4\x51\x89\x21\x2e\xc5\x35\x6e\x7a\x88\x9b\x3c\x07\x67\xf7\x46\xec\xb2\x43\x8b\xd2\x6e\xdc\x71\x9c\xe9\x67\xd8\x3a\x97\xa1\xfd\x1f\xb5\x79\x3d\xd6\xb1\xc6\xf4\x73\x6d\x50\x9c\xb5\x6c\x3a\xb4\x68\x1c\xd1\xd3\x9a\xb0\xfd\xca\x35\x31\xa1\xf8\x2c\xaa\x2e\x5e\xf4\x65\xc6\xaa\x2f\x62\x87\xfa\x68\xcf\x69\x65\x32\x8f\x6a\x93\x63\xfc\xc1\x80\x36\x39\xa1\x9e\x4d\xe8\x89\x13\xad\x3b\x84\x5b\x92\xdb\x5d\x35\xfe\x69\xe2\x11\x8a\xb8\x06\x4d\xe6\x5a\x5e\x4d\x65\x4d\x1c\x10\x56\xc3\x04\x8a\x8d\x53\x6d\x37\xe9\xb2\xe6\xf4\xe1\xd4\xe6\x25\x52\xb5\x4a\xf8\xee\xba\x57\x83\xc8\xf5\x1b\x8f\x69\x15\x49\xa0\xf1\x53\xee\x9f\xbd\x9c\xcb\xca\x06\x70\xe1\x95\x2c\xa7\x04\x2a\x71\x42\x0b\x9b\x9c\x3d\xd7\x0c\x85\x59\xe2\x8f\x7e\x90\x52\xe8\x87\xe7\x9f\x68\xf1\x95\x5d\x12\x98\x71\xe3\xd7\x40\xaa\x8f\xe0\xab\x9c\xe0\x5b\x92\x73\xe4\xf5\x98\xa2\x4f\x87\xfa\x74\x0f\xec\xfb\x5e\xaf\x29\x34\xa0\x97\xb9\xc1\x7c\xed\x26\x90\xc8\x64\xaa\x08\x12\xa9\xc6\xbc\x01\x27\x61\x9d\x91\x94\x37\xe2\x27\x17\x3f\x95\xab\xb0\x72\x30\xb0\x2e\xc3\x80\xa7\x23\x3d\x58\x6f\x03\x72\x82\x1c\xaf\xdf\xd8\xea\x7c\x9c\x1c\x25\x58\x3f\xda\x8a\x76\xb2\x0c\x0a\x51\xf8\xa2\xf4\xfd\x5e\xce\xfd\x0c\xdf\xd5\x42\x8a\x27\xa6\x82\x06\xb3\x3c\x0f\x07\xad\x9c\x97\xc3\x34\x55\x5f\xf6\x1b\x9b\xbf\xb3\x99\x39\x55\x5d\x22\x8a\x66\x98\x85\xd3\x24\x73\xbe\x0a\x0b\x74\xf5\xbe\x21\x2a\xa7\x90\xf8\x40\x17\x1c\x49\x34\xd7\xaf\x65\xe3\x58\xf9\x2f\xaf\xb9\x6d\x90\x69\x75\x66\xaf\xcc\x4c\x44\x9f\xa9\x91\xc6\x38\x06\x69\xb3\xb6\xa3\x7c\x8f\x79\xa3\xc4\xab\xd8\x00\xc0\x0f\x8f\x3a\x3e\x62\xd0\xb3\xbb\xae\x27\xce\x46\x93\xa1\xe3\x46\xa7\x5f\xff\xc9\x94\x33\x48\x19\x47\xa1\x13\x5b\xf5\x20\xf7\x2c\x49\xf6\x79\xe6\xf6\xaa\xcb\xf1\x24\xe0\xee\x15\xc7\x1d\xb6\x91\x89\x0f\xd2\xbc\x8a\x6b\x89\x35\xae\xe7\xe0\xc1\xaa\xee\xe1\x7a\x53\xd6\xd5\x96\x54\x4f\x3f\x92\x9a\xe7\x0c\x43\xd1\x08\xd1\x42\xc5\x71\xc3\x18\xb1\xe4\x60\x7d\x24\x4e\x91\x5e\x49\x79\x15\x51\x93\x89\xc5\x88\xc6\x55\xfb\x42\x6e\x7c\xe8\x1c\x11\xd0\xf8\x20\x9a\x28\xd4\xb0\x70\xe9\xd3\x1d\x48\xb4\x69\xf0\xd9\x49\x18\xf2\x18\x99\x46\xb8\xb8\x3c\xb2\xba\xe0\x7b\x7d\x3b\xa9\x46\x03\x73\x70\x00\xa1\xc9\xcf\x27\x4e\xc1\xff\x3c\x27\x43\x83\x8e\x06\xe1\xa8\x91\x23\xa9\xed\x00\x52\xed\x56\x62\x4a\x66\x4c\xcc\xd1\x28\x31\xc8\x74\xca\x0e\xeb\x61\x52\x33\xf4\xb5\x32\xbd\xd7\xee\xce\x02\xea\x1f\x03\x52\x32\x9d\x66\xe0\x38\x94\x4d\x20\x26\x57\xdf\x45\x5a\xdb\x18\x07\xb3\xfa\x04\x61\xf9\xb9\xba\x26\xef\xdb\x85\xfe\x0c\x79\xfd\xb8\x0e\x81\x6e\x8f\x49\x73\xb9\xae\x3e\x32\xec\xcc\x21\x89\x1e\xf8\x94\x3f\xd1\x5f\xc8\x0e\xfa\x45\x9a\x86\x9d\xf9\xa0\xa7\x58\x65\xa7\x51\x98\xdb\x4c\xf9\x17\x99\x08\xf5\x9e\xa5\xd2\xd2\x3e\xb7\xa4\x52\xe0\xd6\x21\xb3\x1d\x80\x8f\x8f\x49\x63\x98\x66\xf0\x24\x91\x71\xcb\xbe\xc4\x32\x5b\x80\xf8\xd2\xc4\xae\xf0\x4b\xe5\xea\x0f\xff\x17\x10\x05\xb0\x9c\xaf\x50\xe7\x48\xac\x9e\x43\x55\x5b\x94\xd6\x31\xf2\x24\x7b\xf0\x75\x76\x42\x46\x55\x73\x57\xce\xc8\xcf\x94\x4f\xa7\xf2\x7f\xc5\x94\x97\x45\xe9\x16\x64\xec\x6e\x36\x74\x4b\xf2\x49\xb9\x6c\x56\xf2\x74\xee\x8a\x35\x59\xb6\x70\xd4\x76\x88\x17\x3b\xc9\x26\xb7\x98\x15\xbb\x19\x11\x47\xac\xc5\xa5\x78\x0a\x94\x1d\xf4\x1c\xbc\x58\xae\x30\x2b\x96\x5a\xd1\x0f\x33\x86\x20\xd9\xba\x98\x63\x5a\x6c\x4d\xc5\xf9\x47\x14\x92\x21\xe7\x65\x51\x2e\xb7\xcb\x7a\xb5\x42\xb2\xcb\xe9\x54\x65\x69\x2f\x11\x2e\xe5\x80\x82\xa2\xaa\x47\x23\x98\x50\x21\xeb\xcf\xb5\x0b\x8e\xe5\x34\x16\x0c\xc3\x24\x16\x65\xd7\xd9\xc1\x58\x38\x18\x5b\xd6\x2b\x39\x8a\x84\x00\x4c\xac\x07\xc4\xa2\x3c\xda\x90\xef\x7e\x96\x41\x86\x23\x18\x98\x87\x03\x73\x31\x30\xcc\x59\x0d\x3c\x78\x86\x82\x1b\x31\xa1\xc6\xf2\xb9\x5d\xf9\xc1\x98\x88\x0f\xc6\xff\x0d\xbc\xee\x7f\x8f\x33\x9d\x67\xea\xa4\xc8\x9a\x7a\x9c\x9d\xa8\x58\x7d\x98\xc3\x49\x36\x86\x0d\x1f\xd3\x7a\x0c\xc0\x1b\x67\xb8\x3e\x29\x88\x8b\x3f\xb3\x71\x86\xad\x26\x6c\x3a\xcd\x45\x4f\x8f\x4b\x71\x38\x20\x09\xd5\x38\x2c\x1a\xc0\xd0\x49\x36\xcb\x10\x0e\x59\xf3\x5a\x9d\x03\x5b\x6c\x28\x1e\x48\xdb\x4b\xc0\xc6\x9d\x04\x6c\x26\x9a\x96\x40\x80\x0f\x5f\x32\x37\x01\x1b\x5b\x8d\x4e\x8d\xc9\x3d\x74\x75\x57\x89\xff\xf5\xd1\x57\x8a\x07\xb9\x01\xfe\x65\x01\xb0\x81\x5d\x48\x38\xb1\x05\x8e\x9c\x21\x77\x10\x06\x05\x87\x33\xc1\xbe\x40\x89\xc5\xe5\xa5\x46\x52\xd8\x43\x42\xec\x51\xca\x7a\x02\x89\xc2\x75\xaa\x65\xdc\xa0\x8e\x98\xe4\xc9\x9d\xd4\x1e\x0d\x55\x25\x4b\xc4\x63\x81\xbb\xfc\xe4\x34\xe2\x38\x75\xa0\xc8\x99\x24\x6d\xd7\x52\x65\x35\x20\x3a\x63\xf0\xd0\xf1\x9d\x25\xfb\xca\x08\x63\x4b\x76\xd3\x8a\xd7\x68\xc4\x5d\xb1\xfd\x4a\x2a\x87\x4c\xcc\x55\x8d\x24\x63\x6d\x66\x75\x96\x33\x2f\x87\x4f\x0b\xd9\xcf\xbd\x27\x50\xf0\x29\x78\xb6\xac\x57\x05\x9f\x5d\x5c\x6b\xef\x17\xc7\x12\x5e\x63\x8a\xd0\x22\x67\x4e\x25\x1f\xe8\xd3\x29\x2e\x20\x3b\x74\x4a\x0c\xd5\xab\x82\xba\x16\x84\xbe\xe2\x80\x49\x0c\x8b\x0c\x98\x64\xa3\xb1\x1b\x17\x1c\x07\x87\x32\x09\x38\x31\x17\x77\x55\xc9\xcb\x85\xab\x76\xae\xa5\x93\x29\x4f\x25\xa8\x61\xb3\x8b\x75\x23\xb6\x9b\x7f\xdf\x9f\xdc\xdb\xe6\xcf\x6f\x5e\xbd\xcc\x09\x16\xcb\x53\x42\xcc\xc1\xd6\x5c\xb4\x96\x1e\x11\x07\x9a\x46\xd5\x09\xfd\x54\x24\xfb\x7d\x56\xef\x04\x96\xb8\x99\x48\xee\xa4\x35\x11\xd3\x6a\x41\xba\x85\xfc\x2b\xef\xa7\xde\x3a\x0b\x1f\x2c\x08\x72\xd4\x8c\xb4\x5a\xb0\x19\xad\x64\xa9\x63\x06\x8e\x42\x3d\x1a\xdd\x17\x97\x80\x98\xb0\x5e\x78\x8f\xce\xb7\x64\xb2\x26\x1b\xd2\x02\xee\xc8\x91\xe3\x42\x74\x7e\x0a\x5a\x29\x6d\x5f\x55\x10\xcc\xa7\x53\xe5\x7f\x4c\x3c\xf2\xe5\x84\x57\x87\xea\x52\xe2\x07\xed\x41\x02\xe6\x23\xe4\xa3\x1e\x53\xa8\x64\x74\xed\xac\xd5\x67\x5e\xa5\xd7\x2d\x09\x22\x9f\xfa\x0e\x80\xde\x60\xad\x51\x73\x08\x16\xe9\x4e\x3b\x81\x4f\xe6\xbe\xeb\x37\xe9\x0c\x47\x69\xd8\xb4\x1e\xf0\x43\xb7\xdf\x30\xfa\xea\xbe\x73\x38\xf5\xe7\x00\xd6\xfd\x40\x68\x0e\x25\x71\x0d\x8b\x80\x9f\x1c\x25\xb4\x87\xa6\xc6\x5e\x5f\xff\xa3\x85\xf4\xb4\xd4\x84\xc9\x11\x3a\x45\x39\xdd\xca\x2d\x67\xf8\xb6\x49\xa9\xd7\x82\x54\x4f\x8e\xa4\x80\x33\x00\x6e\x9b\xa1\xd9\x45\x59\x55\x46\xd5\x7a\xa0\xfa\xa3\x07\x98\xe3\x7a\xd7\xa1\xcc\x52\xcd\xd2\x2b\xc5\xe8\x6e\xfa\x71\x1d\x9a\xa8\xe1\xc6\x96\x9e\x3c\x18\xfa\x21\x63\x30\x22\x2a\xa1\xf7\x84\xcb\x2e\xfa\xf1\x1f\xe6\x55\x7e\xd7\x21\x23\x16\x2c\x8e\x9a\xe5\x7b\x27\x25\x3b\xfa\x7a\xee\x23\x99\xaa\x84\x59\xc6\xd4\xa1\xd1\xd0\x11\x95\x2f\x51\xe6\x1f\x8c\x44\x75\xf8\xd3\x85\x40\x06\x36\x86\xd8\x09\x12\x56\x5d\x67\x9a\x4d\x4a\x23\x51\xce\x30\x59\xb2\x95\xb6\xe6\x7c\x0c\x70\xd9\xaf\xac\x8a\x30\x18\xa4\x15\x78\xa6\xd3\x9c\x16\xcb\x3b\x4e\xf9\x96\x2c\x32\xd5\x66\xac\x4a\xbb\x56\x42\x0a\xdf\x2e\xb2\x0c\x4b\x0f\x82\xc5\xdd\x75\x03\xf4\x7a\x91\x7d\x05\x69\x6a\xba\x6e\x15\xb9\x58\x65\x1d\x4d\xa8\x99\x2e\xd8\x0c\x52\xe5\x77\x9d\xb8\x76\x84\x4c\x32\xee\xcd\x4b\x89\x81\xc7\x75\x23\x3b\x51\x79\x06\x05\xd4\x9a\x04\xd4\x9a\x23\xa0\xd6\x60\x02\xc2\xd5\x00\xa8\x8e\x98\x94\xab\x5a\x90\xdb\x19\xea\x16\x94\xa0\x3c\x4a\x23\x80\x4c\x01\x3a\x88\xce\xfb\xbd\xce\x61\x25\x87\x52\x73\x74\x47\xcc\x89\xab\x3c\x8a\x34\xe8\x53\x49\x57\x15\x41\xfb\x1f\x68\xbd\x9c\x3d\x09\x89\x9b\x27\xb9\xa1\xae\x67\xf1\x51\xc0\x14\x82\x89\xca\x62\x16\x49\x66\xfc\x48\xa5\xa7\x30\x97\x2b\xa4\x16\x51\xb7\xf3\x49\xf6\x75\x26\x49\xa2\x0a\x84\x0d\xbd\x0e\x3c\x45\xa8\x0d\xa5\x55\x6e\x06\x13\x23\xcc\xbd\xd0\xaa\xce\x91\x63\x7f\x04\x2f\x01\x59\x50\xe8\xcf\x8e\x69\x4d\xfa\xd4\xd4\x98\x23\x8f\xb3\x23\x90\x87\x50\x34\x26\x24\xda\xda\xc4\x3e\x38\xb3\x28\x98\xf1\x80\x0b\xd3\x50\x59\x46\xf3\x88\x84\x52\xd0\xce\x66\x87\xb2\xf1\xc7\x0e\xbf\x62\xfc\xbb\x7c\x78\x22\x74\x7c\x21\x2d\xb7\x72\x16\x76\xeb\x90\x99\x48\xe4\xd4\xe7\x9e\x43\x76\xf0\x4d\xa0\xcb\x74\xa2\x9a\xc9\xcd\xf8\x3f\x43\x58\x06\x31\x26\xa6\xb5\xad\x69\xe6\xd4\x58\x08\x67\x63\x53\xc9\xc8\x3e\x9c\xb6\x9e\x72\x4b\x09\xa8\x6e\x0e\x7e\x10\x1c\x02\x3e\x4f\xa1\x61\xc0\xed\x85\x66\x70\x63\xa5\x26\x98\xf8\x5e\x24\xce\xcb\x0e\xb7\xc4\xaf\x9b\xd2\x6b\x52\xf4\xd6\x28\xd9\x92\xa3\x60\xee\x7d\x61\x20\x1e\x84\x9d\x93\x9b\xf1\x0f\x28\x16\x91\xee\x6c\xb7\xc6\xde\x23\x77\x5a\x37\x77\x36\xd9\x04\xb4\xc7\x92\x97\xf5\xc2\xde\xed\x9a\x43\x51\xfe\xb8\x75\x87\x5f\xd9\xb5\xf7\xe2\xf1\x97\xe6\x6e\xeb\xbd\x33\xb3\x70\x03\x95\x87\x6b\xce\x39\x9e\xe1\xfa\x63\xc3\x0d\x27\x3e\x9d\x78\x2c\x83\xcc\xe3\xb6\xed\xe5\x71\xa3\xf2\x21\xa6\x28\xc8\xca\xf2\x91\xb8\x2e\x86\xf4\x32\x4f\x06\x98\x39\xfe\x2a\x7c\x85\x59\xc2\x5d\xe4\x14\x89\x7e\x58\xda\xf1\x64\x2e\x19\x90\xa6\x18\x0a\x61\x53\x4a\xb0\x66\x3a\xf5\x69\x2b\x03\x51\x78\x3a\xcd\x1b\xed\xc7\xe5\x79\x57\x4c\xa7\x4d\xe0\xef\x25\x13\x52\x34\x81\xab\x57\x24\x8f\xac\xc4\x24\x84\x8d\x33\xe8\xc0\x12\x4e\x91\x5c\xbe\x2b\x0e\x3f\x6f\xdf\xf0\x72\x4b\xa4\x63\x8d\x4d\xa9\x79\x4b\xbc\x74\xb7\x42\x82\x7f\x4f\x9c\x1a\x68\x70\x1f\x03\xe3\x47\x90\x83\x8a\xe2\xa6\x21\xe0\x3a\x69\xe4\x4c\x71\x0b\x4f\xa7\x2a\xc8\x5d\xaf\xcf\xd2\x8d\xb3\xb7\x39\x57\x9e\xcd\x26\x6f\x2d\x91\xc1\xb3\xef\x88\xd2\xd0\x48\x8b\xa5\x95\x3b\x60\x23\x2e\x08\xbe\x21\xf8\xa9\x69\x23\x73\xd7\x56\x79\xa0\x28\x8d\xe8\x1d\x02\x8e\x39\xa8\x98\x18\x94\x4e\xea\xd0\x8c\x91\x52\x66\x97\x42\xf8\xe7\xfe\x70\x92\xc7\x9e\xe9\x4c\x8a\xfd\xf1\x26\x4e\xc1\x1b\xbf\x31\xfa\x7a\x1e\xf4\xff\x26\x4c\x27\x21\x39\xee\xb3\x9f\xc9\xe2\x29\x19\x5d\xc4\x93\x4d\x1c\x09\x00\x4d\xf4\x55\x59\x12\x9b\xb4\xcd\xc6\xbc\x13\x2f\xc8\xfd\x1e\x70\x72\x6d\x3a\xde\x8a\x16\x4f\xc5\x36\x7d\xa1\x69\xbf\x24\x37\x67\xc4\xc4\xc5\xdf\x6f\xba\x60\xc5\x0a\xa7\x0a\x88\xf5\x8a\x44\xeb\xd8\x35\xf8\xee\xfe\x55\xe9\xe2\x52\x9f\x99\x20\xb0\xa4\xaf\xc9\xdf\x77\xa4\xe5\x40\x92\x3b\xac\x84\xec\x97\x84\xdf\x34\xec\x83\x4a\xc5\xdc\x1b\x34\x65\x58\xfb\x51\x72\xf6\x1d\x56\xe9\x20\x04\xf8\x8d\x8b\x80\xfd\x83\x54\xe2\x77\x3f\xf9\xc2\x62\x68\x4f\x66\xca\x3b\x24\x8b\x94\x48\xb4\x18\x1e\xfd\x02\x75\x08\xeb\x3c\x0d\x72\x16\x0a\x5b\x16\x17\xe2\x8f\x97\xe4\x66\x71\x23\x7e\xc0\xf4\x17\x6f\x08\xbe\xb8\x2a\xd9\x87\xe7\x1e\x7c\xce\x5b\xd0\x78\x2c\x92\x71\xb1\x07\xa1\xab\x33\xe1\x45\x00\x0c\x86\x69\x93\xbf\x40\x4e\xd1\x68\x69\x1c\x87\x0a\xf1\xa7\x97\x67\x40\x45\x7b\x87\x09\x09\x40\x49\x24\xa3\x10\xa4\x3b\x21\x9c\xfb\x10\xbc\x51\x63\x23\xe6\xc5\x7b\xcd\x26\x20\x55\x2f\x8f\x91\xf7\xb4\xe5\x84\x7d\x0b\x96\x17\xd6\xba\x5f\x92\xb8\x70\xd7\xe1\x64\x1b\x8d\x24\x71\xf4\xd4\x95\xab\xa9\x39\x71\xf4\x32\xa7\x9e\x34\xc7\x0a\xe7\xef\x1c\x21\x9b\xaa\xa0\x80\xd2\x35\x7e\xbe\x82\x26\x9a\xaf\x80\x4b\x45\x0f\xe4\x2b\x68\x96\xe2\xbf\x95\xe3\x73\xe4\x11\xc5\x98\xe8\xb6\x08\x1c\x27\xe2\x2b\x51\x6a\xe3\x9e\x96\x27\x47\x4e\x32\x5d\x65\xec\xf1\xbc\x1b\x4d\xf9\x1d\x3d\x65\x2a\xa6\x0c\xbd\x0d\x29\x2a\x96\x74\x85\xf9\x52\xfc\x07\x36\xf9\x81\xb6\x41\x6d\xbf\xf0\x86\xf0\xf5\x60\x91\x15\xf4\x28\x42\xf0\xb1\xd1\x4a\xf5\x54\x8c\xd8\x94\x5b\x4e\x16\x42\x0b\x49\x67\x50\xc1\xda\x29\xd8\x0c\x39\xf8\x40\xa1\x9e\x2a\x83\x18\xab\x33\x1e\xd4\x83\xce\x1e\x54\xe4\xb2\xdc\x6d\x39\x94\x09\x3b\x66\x06\x36\x6f\xab\x9d\x0a\x03\x17\x32\x81\x36\xb7\x72\x9d\x15\x05\xee\xc7\xfc\xf1\x03\xe8\x38\xcd\x9f\xd2\x11\xc0\xfc\x29\x09\x92\xfc\xd3\x3b\x4a\xee\x23\x07\x8a\xd6\x6c\xaf\xa1\x5a\x57\x8b\x01\x1f\xc5\x00\x0c\xe2\x38\xca\xcd\x75\x0d\xf6\xc7\xee\x88\xfb\x0d\xec\x81\x1b\xc0\xdf\xbf\xa1\xfc\x8f\xdd\xb6\x39\x7c\x0b\x6c\x68\xa4\xa2\x9b\x3b\x03\xff\x2b\xe5\xc0\x50\x2a\x4d\xaa\x1b\xac\xdc\x1b\xbe\x1f\xcf\x1a\x4c\x28\x48\x5b\x8d\x7b\x7a\xe6\x04\x6e\x8d\xde\x91\x3c\x62\xd9\x4d\xda\x36\x19\x98\x35\x31\x8f\xdf\x9e\x32\x5c\xb3\xe7\x1c\x77\x64\x9d\xed\xa8\x53\x5d\xdf\x55\xe4\xd0\xde\xc4\x9c\x4b\x12\x4c\x84\x52\x7f\xa4\xee\x49\x00\xa4\x7f\x6e\x8e\x5d\x4a\x70\xd8\xc4\x09\x97\x2a\xab\xa7\x82\x13\x6a\x69\x53\x1f\xd7\x93\x9e\x63\xaf\x76\x53\x50\x19\x31\x5a\x32\xa3\xed\x55\x1f\x8c\x9e\xa3\x32\x56\x4a\xc3\x4e\xaa\x83\x4d\x8d\xd4\x7d\xd4\x55\xd8\x9c\x21\x63\x55\x37\xac\x31\x8c\x68\x35\xa1\x4a\x78\x03\xe1\x95\x77\xfe\xb3\x45\xd8\xa8\x43\xf8\xb8\x75\xa8\x12\x59\xe9\x12\x8e\x4c\xae\x44\x59\xef\x13\xb0\x53\xae\x6a\x99\x7e\xeb\x14\xd8\x73\xd3\x97\x0e\x57\x9e\x7b\x20\x24\xe1\xe2\xd4\xad\x3d\xe7\x97\x10\xa7\xab\x11\x77\xd9\xdd\x5a\x65\x9a\xdf\x94\x6d\x4e\x8c\x9b\xeb\x00\x57\xdc\xe1\x92\x73\xe6\xe2\x50\x87\x8d\xb4\x7c\x2c\x09\x74\xd5\xa0\x7e\x20\x05\xea\xb0\x52\x55\x7e\x5a\x5f\x36\x6a\x46\x1c\xa1\x8a\xbc\xdb\xbd\x7f\x5e\x5f\x36\xfd\x4a\x9e\xcb\x8c\x56\xd9\x0a\xf3\xe2\xae\x93\x7e\x48\xd2\x4a\x18\xaf\xf4\xef\x16\x26\x27\xda\x45\xa4\xd3\x45\x5c\x96\xd2\x03\x3b\xb3\xe7\x3e\xc3\xd7\x96\xfe\x11\x4c\x7e\xbe\x2e\xeb\x6a\x31\x99\x77\x2b\x4f\xe5\xd6\x0b\xa7\x77\xae\x20\x1b\x7a\xb9\xa4\xa0\x7f\xd0\x29\xa1\x64\x69\xf1\xdc\x79\x21\xb8\xe3\x5a\xce\x4a\xce\x84\xce\xc4\x7f\xee\x1c\x1a\x67\x0e\x08\x29\x6f\xea\x5c\x66\x6f\xd1\xe5\xf1\xfc\x3e\xb2\x67\x90\x46\xc3\xed\x64\xe9\x04\x5a\x66\x7d\xf9\x23\x13\x92\x99\x14\x13\x32\x57\xa6\xb4\x0e\x75\x5a\x74\xc3\x46\xd8\x59\x75\x08\x42\x67\x80\x96\xc3\x46\xdd\xd1\x7a\xbd\xdd\x55\xe4\x15\xdf\x10\xe6\xdc\x22\x93\x39\x7e\xcf\x9a\xdd\x75\xbb\xa8\xc5\x5a\x04\x29\xfb\xe8\x68\x15\x16\xac\xeb\x3a\x1c\xf5\x6f\xed\xeb\x2a\x13\x3e\xa8\x1d\x0e\x37\x24\xc6\xe8\x39\x45\x97\x52\xf9\x10\x5c\x0d\xd3\xb3\x86\xc5\x30\x39\x90\x77\x9d\x4e\x71\xe6\xb9\x9c\x7c\x73\xfb\xb2\xbc\x22\xca\x0a\x08\xe5\x27\x4c\x48\x4a\xf2\x84\xb8\x53\x74\x23\x58\x70\x92\xa9\x43\x1a\x76\xae\xe7\xf3\x3d\x01\x37\xc8\x1e\x87\x50\x0b\x02\x73\x3a\x34\x8a\x67\x4b\x7e\xe5\xe4\x07\xc5\x99\x2c\x40\x71\xe7\x66\x61\x16\x42\x5d\x5c\xbb\xa9\x24\xa0\xd9\x85\xf8\xaa\x53\xa7\xf5\x9c\x14\xbd\xcf\x43\x7d\xb6\xa2\xc9\xe0\x91\xa8\xd3\x91\xc7\xaf\x43\x93\x66\x7d\x58\xc1\x7a\xd4\xbd\xda\x59\xf5\xe8\x07\x4f\x7f\xd7\x1d\x03\x19\x5a\x65\xf8\x9c\x20\xfc\x8a\xcc\x18\x69\xae\x49\x0d\xc6\x8f\xfc\x8e\xb6\x52\xa6\x9d\xcc\xdd\x8c\x0f\xe0\x05\x71\x7b\x4d\x82\xac\x49\x8b\x98\x45\x2a\xf4\x8e\x1d\xc2\x4e\x27\x61\x3c\xef\x85\xe9\x1b\xd4\x7d\x51\x5e\x0f\x08\xd3\xaa\x8b\x58\x39\x0f\x14\x47\xfe\xf4\x5c\xed\x80\x99\xac\x9c\xb7\x24\x2b\xe4\x44\x16\x78\x21\x8f\x97\xb4\xae\x9e\x7b\xa7\x05\xb9\x51\x08\x45\x8d\xeb\x0e\x07\xad\xa2\xb3\x80\xee\x22\xe0\x95\x5d\x4a\x73\x9e\xab\x76\x85\x49\x60\x5d\x67\x55\x5a\x6e\xfa\x1e\x5b\xbb\xa2\xd5\x41\xdc\x4e\xa1\x81\x9d\x3e\xe0\xa1\x22\xd7\xbe\xa8\x6d\x23\x4c\x8b\xbc\x71\xa0\x34\x48\x6c\x6a\x84\xe0\x7e\xc1\x65\xd1\x98\x91\xc1\xc6\xad\xaa\x94\xea\xf2\x7e\x2f\x4c\x01\x04\xe9\xcb\x6b\xf0\x98\x04\xe5\xf7\x0a\x0a\xa6\xe2\x72\x60\x06\x72\x9f\x26\xa5\x5e\x4e\xa3\x82\xc5\x4b\xb9\xab\x6e\xa2\xfc\x5d\x01\x4c\xcf\x8c\xb6\x92\xf9\x69\xd1\x59\x3b\xbb\xa4\x5b\x4e\x58\xaf\x30\x1b\x2f\x58\x1f\xa6\x70\x4b\x22\xb3\x34\xa5\xf0\xe5\x1a\x58\x86\x81\x34\x4f\xf6\xfb\xba\x70\xfe\xec\x54\xe6\x13\x35\xd5\xdd\x74\x2a\xef\x55\xc5\x38\x35\x78\x87\x30\x9f\x01\x2f\xb5\x16\xa7\x71\x3a\x25\xb9\xfb\x37\xc0\xa6\x41\xb8\xe9\x6c\x3a\x35\xb1\xfa\x39\xe4\x78\x54\x95\xf7\x43\x44\x59\x17\xdb\xde\x22\xb9\xb6\x0e\xf7\x17\xc9\xa3\x8b\x1c\x13\xf0\xf0\x33\xeb\x00\x87\xd8\xb5\xf5\xbb\xd8\x16\x6b\x84\xeb\x62\xbb\x9c\xaf\x24\x2b\x41\xe5\x6f\x85\x0e\xf0\x5b\xf5\xa8\xd4\x3e\xd2\x91\x8e\x61\xe0\x1d\x6a\x2c\x1a\x2e\xa8\x49\x06\x56\x76\x5d\x90\x39\xed\x8d\xf7\xb7\xd8\xd0\xc3\x0a\xb6\x3b\xcd\x19\x2e\x57\x0e\xcb\xb9\x5c\x75\x3d\xa6\xea\xb1\xea\xc3\x80\x21\xe0\xe4\x02\x6f\xd0\xe9\x94\x2c\xa5\x91\x67\x65\x99\x3b\x4c\x3a\x84\x55\x79\xc2\xb7\xb7\xd7\xa4\x5d\xbc\xc2\x91\xc3\xb2\xf8\xe0\x3f\x95\x74\x6b\x71\x8e\x2f\x29\xd9\x56\x87\x17\x25\x98\xf7\x17\xe5\xf5\x2f\x5d\xc2\x19\x51\x35\x43\xe4\x3a\xd0\x82\xa9\x08\x42\xb8\x64\x85\x04\x24\x5f\x67\xc6\xfd\x34\x53\x6b\x74\x95\x75\x07\xf8\x9f\xe3\xae\x82\x9e\xcb\x2e\x24\x80\xd2\x05\x37\xa1\xd6\x4e\xe7\xf2\x5a\x12\xbc\xc1\x50\x56\xe0\x89\x0e\xaa\xb6\x04\x2a\xd0\xcf\x1f\xd6\x56\xd5\x67\xdc\xa0\x69\xc1\x96\xf5\x6a\x64\x86\x05\xdf\xd2\x8a\x70\xc2\xae\x68\xed\x79\x28\x47\x46\xd7\x39\x29\xa1\x4e\x83\xf8\x5f\xe0\xbd\x8a\x45\x77\x18\x2a\xe6\x5c\x11\xf4\xcc\x37\x1a\x4a\xde\x3c\x78\x58\x9f\x65\x4d\x4d\xde\x36\xaf\x6a\x92\x2d\xb2\xab\xb2\xbe\xd5\xbf\xa3\xcd\x40\x92\xd1\xed\xd4\x1f\xd1\x86\x2f\x1b\xa7\x43\xf8\x43\x8a\x69\x71\xc3\xc0\xe7\xc4\x41\x07\xc5\x72\x06\xb4\xa2\xe0\xd8\xe0\x22\x8a\xe0\x18\xa8\xbf\x2e\x1b\x76\xe5\x29\x6a\x3e\x75\x8a\x49\x61\x0d\xae\x28\x8b\xf7\x9a\x07\x89\xa2\x7c\x8a\x73\x0d\x51\xcf\x82\xf4\x7e\x68\xfe\x36\xb2\xe4\x03\x43\x45\xa1\x74\xfc\xa8\x5a\xe9\xd3\xe7\x49\xa5\xbb\xce\x42\xc7\x63\xd8\x11\xcd\xcd\x9a\x21\xcd\x2c\xbf\x25\x45\xf6\x94\x0a\x41\x4c\x56\x10\x1f\x37\x6c\x5c\x8e\xb5\xfb\xc8\x98\xb6\x63\x46\xfe\xbe\xa3\x8c\x54\xe3\xb2\x15\x4d\xb4\x9a\x60\x96\xe1\xc7\x07\xaa\x87\x2d\x2f\x56\x41\x75\x0c\xa8\x22\xe2\x3d\xba\xa1\xdb\xad\x54\xfc\x9a\x60\xbb\x36\x5a\x16\xc4\xbc\x96\xad\xdb\x58\xcf\x64\xa8\xd3\xb0\x06\x43\xaf\xc3\xe5\x6a\xa8\x00\xd9\x85\xb8\x99\x14\xbb\x9b\x8e\xc0\x57\xbe\x3a\x4e\x5b\x5d\x52\x47\xe7\xed\x0b\x86\x1d\xce\xa3\x47\x2f\xf3\x7c\x78\xd2\x83\x6f\x05\x2b\x86\x94\xf4\xaf\x7a\xc7\x93\xb9\x29\x7c\x18\x03\x93\x56\x7b\xc6\x41\x38\x1f\x39\xd9\xc2\xf4\x62\x6d\x7a\xca\x51\x33\xfb\x5b\x43\x3d\xf5\x58\xe3\xa4\xac\x6c\x6f\xeb\xb5\x17\x37\x92\x61\x8a\xe9\xec\xe2\x72\xbb\x6b\x37\xdf\xc7\x97\x20\x50\xbd\x33\x2a\xe1\x84\x3b\xa1\x1b\x0a\xa5\x33\x4f\x5c\xa8\xd4\x13\x7e\x45\xb1\x7a\x3a\xad\x23\x7d\xe5\x72\x8f\x86\x26\x12\xe6\x6c\x3f\x3d\x00\x46\x37\xee\x27\xb1\x3d\xa3\x43\xf8\x38\x8c\xce\x8e\x89\x2c\x58\xb4\x0e\x8d\xb2\x25\x90\x8a\x3f\x6a\xf8\x90\x25\x5b\x61\x2a\xfe\x3b\x39\x55\x75\x43\x71\x03\x7f\xfe\x5e\xb0\xed\xe2\xc7\x1f\x56\x42\x46\xd1\x90\x03\xb1\x05\x8d\xda\xe9\xb4\x8d\x45\x48\xe7\x25\xea\x60\x87\x2c\xe5\xf4\x52\xa8\x1f\x3c\x2b\x89\xef\xd4\xb9\x49\xe7\x66\x3f\xd8\xf1\x40\x5a\x77\xd9\xb7\xbd\xe6\x8f\x8a\xba\xd1\x1d\x5f\xd9\x93\xad\xc9\xc3\x07\x05\xff\xc1\x21\x97\x7c\x85\x4c\x5e\xbc\xbf\x90\x5b\x77\xcb\x54\x35\x41\x3f\xf7\xdc\x3f\x65\x62\x3a\x61\x5f\x7f\x72\x07\xa2\xc2\x9d\xba\x6f\x93\x17\x44\xb2\x06\x61\xd1\xbe\xb7\x44\x7b\x89\x0f\x1f\x53\x3a\x9d\xd2\xb8\x26\xaa\x76\xa6\x92\x8a\xd4\x3f\x76\x26\x6a\x02\x71\xc2\x6c\xba\xb1\xe3\xa5\x83\xf2\xbf\xd0\xda\xc3\x28\x7e\x77\x32\xf1\x38\x72\xff\x0e\x39\x7a\x20\xa7\x33\x35\x88\xf5\xf4\x8c\x25\x4f\x3b\xb4\xce\xc8\x71\xf4\x3a\x54\xfd\x1c\x2a\x0c\xe9\x7e\xef\x46\x38\xd9\xaf\x13\x95\x5e\x8e\x9c\xe6\x31\x37\x86\xa9\xb2\x23\x6e\x0e\x6f\x38\x79\x69\x54\xb4\x5d\x37\x75\x4d\xd6\xfd\x72\x1a\x9f\x6f\x12\x30\x78\x34\xdb\x54\xbf\x1c\xde\x0b\xe2\x5a\xb7\x27\xf9\x84\x4c\xa7\x13\xee\xb8\x06\xbe\x76\x3c\x33\x71\xe3\x18\x3d\xea\x86\x5d\x95\x32\x75\x75\x7b\xdd\xd4\xad\xd1\xed\xe0\xc6\xf9\xfc\x7b\x12\xa4\xd0\x73\xbc\x05\x7a\x35\x68\xa1\x64\x5e\x11\x3a\x14\x30\x53\x47\x54\xbe\xbf\x23\x3f\x73\x56\xae\xf9\x22\x84\x9d\x31\xae\x75\x9e\xf3\xe3\xdf\x82\x15\x88\x89\x68\x8d\xd3\x79\x4e\x53\xf1\x8c\x24\x34\x9d\x36\x4a\xa7\x09\xc5\x02\xc4\x95\x67\xf5\x99\x08\xef\x0a\x32\xbb\xa4\x75\x25\x4b\xa8\xe3\x16\xd7\xb8\x44\x78\x2b\x93\xac\x4b\x47\x9f\xf1\xb9\xb4\x26\xfe\x8b\x6e\x37\x6e\x2e\xc7\xff\x0a\xc5\x46\xff\x35\xb3\x25\x4a\x8a\xa2\xd8\xf5\xeb\x97\x2a\x4b\xa4\x19\x63\x2c\x67\x49\xaa\xf1\xae\x96\x7a\xe0\x0a\xc3\x09\x1a\xdf\x94\xed\xf8\x23\x61\xb7\xe3\x2d\xfd\x40\xb6\xb7\xe3\x72\x7c\x45\x5b\x5e\x7e\x20\xc6\x4d\x33\xdf\x15\x7f\xcd\x77\x98\xe3\x2d\x0a\x2d\x94\x86\x18\xbc\x26\xf9\xf7\x62\x47\xc1\x6d\x57\xae\x07\x2e\xff\x4c\x4f\xc0\x71\xfa\x9c\x5d\x00\xd3\x48\x51\xa7\xda\x88\x35\x3f\x95\x9b\x34\xbe\x2e\x6f\x6d\x6e\x79\xe6\x60\xc6\x13\x12\x10\x20\xa5\xee\xcc\x9b\x82\x43\xb6\x5c\xec\xc4\x05\x73\xc7\xfc\x35\xa3\x15\x2e\x0b\xee\x46\xab\x8e\x43\x9a\x26\x9a\x93\x19\xad\x8c\x93\x2f\x34\x26\xbd\x10\x5f\xd2\x0f\xf1\x1d\x49\xfc\x08\xde\xe0\x36\x42\x37\x13\x83\x6b\x18\x12\x69\x4a\xf9\x89\x95\xd7\xd7\x84\xe1\xa6\x90\xf2\x30\x4c\xde\x7a\xe2\xb7\x05\x4d\xf0\x16\x79\xa9\x12\x6e\xb6\x3a\x0b\x33\x1d\xba\x9a\x6b\xb4\x6c\x57\xa0\xef\x03\x4d\x83\x0e\xe4\xb5\x2c\xc4\xa2\x95\x6a\xb8\x5d\xd7\x75\xf6\xc2\xca\x19\xe6\xa0\x76\xf4\x46\x32\x6a\x8d\xbf\x90\x5b\xbc\x2d\x5a\xa9\xf1\x58\x17\xe5\x72\xb7\x9a\x4e\xc5\xbf\xb0\x47\x23\xaf\x0c\xcd\x74\x6a\x50\x78\xbd\xdf\xe7\xa2\x15\x7c\xb0\xdf\xdf\x75\xd8\x7c\x13\x67\xc5\x21\xeb\x02\x14\xd0\x65\x0e\x70\xca\xe2\x8e\x56\x0b\x2a\x33\xfe\x36\x9d\x37\x1c\x3f\x13\xc4\xc2\x91\x5a\x4a\xb4\x90\x4f\xee\x3a\xec\x55\xaf\x11\x67\xd1\x16\x7e\xed\xf2\x35\xde\x62\x8e\x50\xd7\x01\xc9\x22\x42\xd0\x11\xc3\x34\x72\x98\xb2\xeb\xb0\xaf\x48\x6e\xd0\x59\x03\x64\xa2\x44\x8b\x32\x6f\x10\x1a\x29\x9b\xaf\x8c\x92\xbe\x53\xc1\xbf\xf2\x73\x96\x2c\x0e\x91\xd3\xe2\xae\xc3\x74\x09\xe5\x3e\x57\x85\xfc\xb8\x85\x70\xb3\xce\x39\x18\x2f\xc3\x83\x11\x90\x9a\x46\x71\xdb\xe7\xdb\xad\x74\xcf\x6b\x66\x81\x6b\x48\x5e\x0b\x02\xd5\x2f\xdc\x60\xdc\xcc\x93\x8e\x09\x92\x88\x9d\x4b\x05\x99\x3c\xcd\x25\xea\x0c\xe1\x68\x8b\xbf\xe6\x2d\xe6\x38\x45\xd5\xce\xb7\x5b\x79\xd0\x69\x8a\xb2\x94\x21\x65\xa1\x1e\x65\x39\xdf\x6e\xfb\x84\xa5\x44\x42\xdc\x32\x3e\x5f\x6a\xdd\xcd\x01\x6a\xa3\xe7\xf3\xbb\x3b\xb3\x1f\x5d\xe6\x80\xf9\xb9\x53\x16\x3d\x5a\x41\x55\x2b\x1c\x65\xd4\x1e\xe4\x8c\x10\xe2\x90\x99\x9d\xed\xea\xbb\xdf\x7c\x4d\xd9\x67\x83\x35\x5d\x9d\xac\x0e\x0c\x1c\x42\xef\x4c\x0e\x82\x56\xa1\x54\xa4\x86\xa3\x4c\x58\xae\xb4\x28\x2a\x9d\x04\xf1\x63\x53\x75\x51\xa7\xdb\x6b\xe2\x7c\x2f\x48\x94\xae\xb9\xe2\x7b\xd8\x14\x2c\x78\xa0\xe2\x94\xa4\x07\x80\x20\x10\xf2\x97\x29\x18\x59\x5b\x07\x72\xa3\x85\x99\xd9\x39\xc7\x23\x6c\x8c\x2c\x6e\x1a\x9e\x05\x7f\x2f\xf2\x70\xf5\xbd\x85\xcf\x2e\xc4\x9d\x6a\xfd\xaa\x42\x78\xa1\x30\x2a\xee\x60\x88\x1a\x80\xc9\x44\xc2\x01\xcc\xfa\xa3\x02\x78\xa1\x2b\x41\xbf\x56\x68\x3a\xfd\xae\x17\x65\x53\xcb\x87\x82\xac\x09\x66\x0f\xff\x43\xbb\xc0\x43\x17\x10\xe1\xf2\x8b\xdc\xe0\xa5\xb7\xa0\x17\xe0\xa2\x4d\xfa\xe2\x2f\xa9\x26\x30\xe5\x2f\x54\x09\x42\xef\x2f\x40\x74\xf5\x04\x0e\xb5\x5b\xb4\x42\x6a\xe7\xec\x4f\xa5\x76\x90\xf3\xda\xa9\xd6\x8a\xa2\xa9\xba\x1e\x8c\x5c\x6f\xcb\x35\xf1\x97\x11\x70\x50\x6f\xa1\xcc\x7b\xbb\xdb\x72\x41\x1d\xca\x71\x4b\xd8\x47\xc2\xc6\x7f\xdf\x09\x5e\x29\xbf\x6c\xd8\xb8\xdc\x6e\xc7\xfd\x98\xcd\xb1\x00\x6b\x8b\xc6\xb4\x1d\xd3\xab\xab\x1d\x9c\xbc\xd9\xf8\x6d\x33\xbe\x6a\x2a\x7a\x79\x3b\x56\xab\x6e\xf1\x78\xd7\x92\x31\x6f\xe4\x95\x81\x32\x81\x00\xe0\x7d\x1e\x38\xe1\x5b\xb5\x6a\xca\xf3\xde\xb4\x38\xb3\x40\x48\xc6\x40\xaa\x44\x03\xae\x06\x5b\x7a\xbe\x9d\xf3\xc7\x2a\xe7\x75\xdf\xf6\x19\xaa\x7a\x4d\x20\xcf\x4c\x7f\xeb\x68\x05\x20\x2f\x9d\x13\x7c\xdb\x61\x99\x5f\xa0\xef\x42\xa5\xb5\x90\xfd\xfc\x59\x7a\x93\x33\x84\xfa\x39\xbc\xed\x76\x8e\x2c\x6a\x39\xdf\x60\x1d\xad\xa5\x9d\x90\xe5\xf8\x79\xb4\xa2\x0f\x89\xe3\x08\x8e\xd6\xe5\xec\x97\xeb\xd4\x45\x3c\xfb\x73\x38\xb5\xf7\x60\x7c\xf2\x82\xa4\x75\xf8\xa2\x0f\x9c\x7e\x7d\x13\x73\xc9\x7a\x7b\x89\xef\x94\x6b\xe3\x64\xde\xa1\x0e\xc3\xe5\xe7\xd7\x7e\xf1\xb6\x32\xbd\x89\xe2\x43\x79\x2f\xc8\x64\x3b\x2a\x4d\xc2\x27\xf5\x25\x3f\x75\x7b\xf3\xdd\x3d\x83\x60\x07\xb8\x8d\x9d\xcc\x13\x6e\x61\x31\x97\x31\x8a\x71\x27\xa5\x86\x08\xad\x3f\x36\x1f\x48\x9e\x89\x6f\xc5\x25\x92\x66\x57\x5c\x1e\xa0\x37\xaa\x6a\xe4\x3c\xb7\xbc\x45\xd9\x73\xe4\x84\xd2\x5d\x17\x15\x6d\xdb\x66\x4d\x4b\x0e\xa9\x29\x5e\xdd\xd4\xf2\xeb\x36\x81\xec\xdc\x46\xca\x18\x88\xa5\x6b\xda\xf1\x20\x36\x75\x24\x8b\x87\x80\x5b\x1c\x78\xdc\x09\xf4\xa9\x75\x78\x88\x98\x80\x4a\x08\xd3\xa3\xcf\x57\x2a\x51\x8c\x6d\xed\xac\x52\xa7\x8b\xb9\xa1\x5b\x5d\xb4\xa8\x4f\xe0\xa3\xe3\x98\x6b\x2c\x05\x86\xdc\xa9\x02\x19\xa0\x8a\x0a\x72\x0c\x5f\xeb\x48\xba\xb9\xb9\x21\x87\x5c\x49\x93\x3e\xce\x7e\x6e\xda\x67\xaa\xde\x9c\x05\xbf\xe0\x29\x32\x24\x9d\x3c\xdd\x8b\x39\x72\x0e\xd3\xb8\x7e\xac\x26\x00\xcc\x0c\x08\x7f\x4b\x8a\x7f\x10\x7d\x93\xc6\xef\xd1\xc8\x2d\xe9\x63\xcb\x7e\xaf\x15\x11\xe8\x08\x00\xc9\x16\x70\x65\x15\xf6\xa7\x7b\x41\x6e\x69\xfd\x41\x71\x2b\xf0\x53\xbe\xfb\x1c\x37\x24\xa4\x81\x0b\x2f\xc7\xe0\x5a\xcc\x50\x94\x00\xca\x03\x13\xc2\x1d\x48\xa1\x38\xde\xbd\x37\x30\x62\xe6\x04\x07\x5e\xc0\x93\x5e\x0c\x3b\x56\x88\x7e\xd1\x12\x9e\x24\x6e\x7e\x40\x8e\xdd\xec\x96\x70\x4b\xd5\x0c\x4f\xe3\xa7\xf6\xd1\x75\x5b\xe6\xd8\x5e\x05\x8b\xc9\xa9\xac\x21\xf3\x5c\x30\x5e\xe2\x17\xc2\x00\x6a\xf9\x00\x7e\x9a\x1c\x5e\xfa\x9c\x5e\x94\xfa\x3c\xfd\x44\xf9\xc6\x3d\xab\x2a\x35\x80\xc9\x39\x04\xe9\x7c\xc4\xb8\x19\xd2\xd9\x03\xd9\xae\x9e\x35\xf5\x9a\x18\x4b\x30\x78\x8d\x67\xd8\xb6\x14\xd8\xf8\x0d\x89\x16\x81\xc3\x3f\x1c\xb0\xbb\x2a\x7e\x8b\x38\x89\x0a\x82\x5c\xf1\xa7\xbd\x82\x61\xd6\x3c\xba\xa5\x1f\xfd\x1c\x57\xe9\xd2\xfd\xca\x72\x35\xd0\x42\xf1\xfe\xdf\x37\xd7\x3b\x70\xe9\xf0\x3a\x1e\x36\xb8\x06\x19\xb3\xfa\x59\x3f\x3c\xf7\x4a\x9b\x59\x8b\x38\xfa\x6b\x53\x3b\xf2\x9e\x5f\xc7\x5f\xc6\xb2\x74\x59\xe4\x05\xa7\x36\x72\xa8\xc4\x3f\xb0\x33\xc3\x4d\xb4\x99\x95\xf9\xd6\x43\x70\xe0\xca\x19\x24\xea\x58\xf2\x95\x6b\xdb\x45\xd3\xe9\x37\xc4\x31\xb4\x96\x30\xcb\x56\xd5\x06\x94\xbd\x80\x6d\x53\xda\x52\x3d\x3b\xa7\x7f\xca\x9e\x35\xcc\xb8\xfa\x15\x29\x77\x9d\xe5\x4a\xb9\xe4\xf0\x88\x4b\x0e\x5f\xd6\xab\x11\x3d\xbc\xc6\x53\x4c\x67\xb4\xfd\x96\x56\x15\xa9\xad\x4a\x5b\xe7\xb6\x32\x99\x3f\xa9\x0c\x35\xd7\x26\xe7\x10\x39\x97\x64\x35\x6a\x94\xbf\xad\xa4\x52\xdf\xf9\x2d\xf2\x06\x12\x48\x3b\x59\x5a\xdd\x4d\xb4\x16\xd4\xf9\x43\x6e\xed\xa5\x5c\x2c\xc7\xae\x17\xf2\x12\xd4\x05\xf3\xe4\x36\x41\x8d\x5b\xae\xc2\x10\x6b\x37\x0c\xb1\x5e\xd2\xd5\x2c\xca\xa0\xe5\x90\x26\x29\xec\x47\x87\x02\x76\x39\x73\xcc\xd0\xa9\x4c\xb7\x1a\x1b\xcc\xd4\xc7\x54\x73\xaf\x43\xc7\x91\x20\x07\x0d\x0e\x6e\x7d\xce\xb1\x58\x34\x4c\x27\x0a\xd6\x78\xb6\xff\x41\x84\x59\xae\x14\xb0\xb8\x0b\x2c\x1b\x01\xb1\x02\xbd\x57\x1a\x25\x70\x5b\x34\x3e\xe4\x46\xe5\x7e\x6f\x8a\xf0\xe7\x68\xbf\xd7\x31\x2e\x90\x95\x11\xd0\xa7\x41\x18\x92\x30\xe5\x04\x21\x5c\x82\xae\xc5\x3e\x37\x6c\x1a\xea\x5c\x04\x21\xb3\x08\x9f\x9e\x33\x34\xaa\xfd\x46\xd1\x1d\xae\x8d\x66\x4d\x77\xb9\xdf\xeb\xef\xd0\xd7\xf3\x4e\x07\x15\xce\x2e\xda\xdb\x7a\x3d\x0c\xd5\x08\x11\x90\x98\xe8\xeb\x32\x19\xc2\xb4\x98\xd4\xfb\x3d\x68\x7b\x74\xcc\x50\x53\x04\x35\x38\x80\x50\xbd\x28\xaf\x41\xe2\x44\x9e\x87\x6e\x63\x98\x3a\x54\x14\x5e\xd6\x4d\xf3\x5c\x56\x8b\xdb\xef\x27\x25\xba\xab\x4d\x0c\xf7\xd1\xd8\xc4\x82\xc2\x65\x76\x39\x56\x2d\xa7\x55\x32\x1f\x69\x4b\xdf\x6d\x03\xc0\x7e\x03\x81\xdf\x62\xe2\x3b\x81\x49\xdb\x62\xfe\x70\xfb\x48\x2b\xa9\x1e\x6e\x35\x26\xad\x8b\x76\xb9\x5d\xe1\xcb\x62\x1d\xa0\xca\x44\x50\xcf\x4b\x13\x03\x95\x5f\x2a\xac\xc0\x3b\x89\x10\x6b\x84\xba\x9d\xf1\x8e\x8d\xa3\xc0\x4e\x91\x4f\x57\x6f\x99\xac\x11\x12\xa3\x54\xdc\xcb\x1e\x8c\x7b\xd2\x28\x16\xcc\x86\xf7\x59\xe8\xe7\x70\x68\x04\x48\x84\xae\x98\xce\x3e\x7e\x89\x63\xed\x14\xa1\x62\x47\x00\x9c\xa0\x91\x1a\xcf\xcd\x3f\xa4\x19\x1d\x53\xe4\x3d\x32\x97\x82\x3b\x25\x2a\xf8\xe0\x28\x45\x9c\x26\x0f\x20\x30\x41\x2a\xb3\x54\x8b\x8f\xb9\x8f\x60\xf7\x8f\xbd\x6f\x9c\x24\x58\xfd\x45\x47\x8f\xe8\x3f\x88\x91\x3d\x6d\x04\x06\x31\x15\xca\xb4\x3c\xc0\xe1\xce\xc6\xbd\xe2\x87\x2e\x57\xaa\xd8\x4b\x78\x6d\xb5\x13\xfe\x81\xe7\x68\x3a\xfd\xbb\x3a\x55\xce\x2c\xcf\xd3\xbc\x56\xca\x43\x20\xde\x3f\x43\x67\x7f\x27\x39\xc3\xb4\xf8\x36\xbe\x30\xe0\xdd\x17\xbc\xb7\x40\x16\x59\x9c\xbb\x20\x7c\x98\xff\xae\x43\xfe\xbb\x36\xfc\x37\x5a\xdc\x7b\x42\x07\xe6\xd3\x1d\xc3\xa6\x6a\xbc\xc0\x14\x6e\xc3\x98\x78\x7e\x04\x63\x18\x77\x3e\xa6\x75\x45\x7e\x7e\x25\xce\xac\x68\xf4\xe0\x74\x52\x14\x26\x6e\x84\xcc\xda\x6b\xa8\x49\xc9\xf0\x29\xc2\x93\xb9\xf6\x44\x38\xed\xf2\xc3\x93\xc6\x04\xf9\xf7\x47\xef\x80\xf2\xd5\x88\x4d\xa7\x44\x1a\x08\x3c\xda\x1c\x69\x2a\xe9\x5e\x4a\xe2\x09\xce\xc4\xdf\x89\xb9\xe4\x1c\x7d\x45\xa2\x90\x55\xbf\x66\x55\x38\x7c\x5c\xfd\x62\x05\xc9\xc8\x74\x9d\x4a\x5a\x47\xed\xb0\x1e\xe0\x27\xd2\x2f\xf1\x0c\xc5\xa9\x78\xac\x1c\x57\x44\xae\x9a\xe3\x43\x7c\xb8\x03\x91\x9e\xe7\xc6\x4f\x20\xc1\x11\x67\xf6\xe6\xd5\xdf\xfb\xf6\x28\xf0\x5a\xd7\xf6\xa8\x47\xb5\xb4\x49\x91\x25\x5b\x05\xec\xa5\xb8\xe7\x38\xea\x6c\x5f\x3f\xfe\xe6\x6d\x5b\x7f\x1d\xb4\x6d\x49\x5f\x00\xad\x56\x74\x7c\xd6\x3c\x97\xe0\x0f\xb4\xae\xbc\x07\x4e\xee\x3a\xf7\xf1\x15\x11\xb4\xc2\x77\x27\x5e\x97\x75\x53\xd3\x75\xb9\x7d\x11\x79\xd9\x77\x62\xfe\x40\x6e\xbd\xbf\xad\x9d\xdd\x7f\x1c\x99\xa5\x57\xa8\x36\x98\xae\x5f\x08\x2f\x31\xc2\xb3\x86\x3d\xbf\x12\x74\x82\xf2\x60\x59\xc1\x27\x17\xda\xc1\xaf\xd7\xd9\x05\x27\x57\xd7\x56\xea\xf3\xd6\x1a\xe6\x61\x33\x6a\x02\xd6\x4f\x51\xe6\x7d\xb9\x29\xbd\x12\xe6\x44\x07\xd4\x85\x8d\xce\xeb\x5b\xd7\x41\xa2\xb7\x3d\xfe\x38\xc0\xe9\x87\x5d\xf4\x12\xa9\x99\x49\x8a\x9b\xc3\x6b\x2d\x4e\xdf\x9b\xde\x1e\xf8\x48\x44\x1d\xfc\x91\x91\x36\xca\xe5\x84\xf5\xaa\x73\x47\x0b\x0b\x8f\x42\x6c\xab\x7d\x44\x83\xc4\x86\x09\x3c\x73\xde\x79\x1e\xed\x02\xc3\x98\xf8\xd7\x55\x0c\x3a\x68\xc6\x63\x18\xa6\xab\x86\x27\x11\x6d\x52\x14\xe5\x74\x5a\x26\xf0\x8d\x0d\xa1\x5a\x04\x71\x4e\xf4\x4c\x1d\x04\x74\xcc\x7c\x49\xf4\x8b\x61\x92\x93\xb1\x3b\x8e\x45\x4e\x83\x18\x06\xc5\xb1\x54\x62\xcf\x64\x6e\x6d\xcd\x90\x85\xa4\xa7\x7b\xa2\xa1\x33\x6c\xa4\xa4\xd8\x24\x82\x3a\x1d\x76\xbf\x7c\x13\xff\x30\x9f\x04\x60\x55\x39\x57\xfc\xae\x10\xf4\xb5\x29\xdb\x37\xbb\xeb\xeb\x86\x71\x07\xf6\xe9\x42\x0e\x9e\xf3\xdd\xa4\x80\x84\xf7\xb1\x8f\x6c\xda\x8c\x44\x83\xfe\xe0\xf7\x1a\x94\xa5\x06\x63\xe1\x20\xf6\x94\x3c\xa1\x95\xb7\xd3\x71\x76\x41\x17\xcc\xb0\xd0\x1b\xe9\xb0\xed\xcb\x86\x9d\x6f\xf5\x41\x72\x62\x67\xc0\x01\x93\x0c\x2d\x27\x67\xc8\xa6\xde\x65\x18\x72\x4b\x31\xbf\x24\x2a\x47\xfe\xe4\xa5\xef\x2c\xd5\xa5\x30\xf4\x22\x84\xe0\x68\x97\x34\x29\x8a\x48\x9b\xfd\xde\x04\x65\x86\x6b\xce\xdd\xaf\xc1\x83\x08\x53\x7f\x5d\x09\x41\x29\xa6\xf0\x51\xb7\xba\x43\x79\x40\x61\x15\xbb\xe5\xc3\x36\x32\x42\x40\xa9\x01\x76\xb4\x92\xae\x68\x23\xbe\xa4\xab\xfd\x3e\x17\xff\x89\x7b\x9e\xe4\x35\x42\x9d\xcd\x2c\x36\x7f\xd8\x3c\x8a\x52\x35\x6f\xdc\x46\x8f\xab\x2b\x16\xc5\x1a\x2f\x9b\x95\xf1\x76\xd2\x13\x28\xc5\x04\x5a\x39\x81\x56\x4d\xa0\x84\x7c\xc1\x34\x05\x4f\x0f\x5a\x13\x97\x42\xee\xf7\x10\x37\xa6\x32\x13\x9e\x69\x1f\xf9\xab\xe6\xa3\xb3\x53\xca\x4e\x66\x6c\x09\xf2\xfd\x63\x3d\xe1\x74\xc3\x5e\x06\x4f\xa9\xa0\x9a\xcc\x91\x2a\x94\x21\x13\x80\x46\x29\x9b\x68\x25\x96\x24\xb5\x6e\x40\x2c\x7b\xaa\x6b\x20\xad\x44\xb4\x02\xd5\x61\xbc\x7a\x4e\x6f\x57\x1f\xda\x52\x55\x0f\x8d\x94\xb2\x9c\xaf\x46\xd1\xc5\x0b\x96\xd1\x32\x88\xe9\xad\x7a\xc8\xc2\x5e\xeb\x82\x05\xbd\x46\x40\x96\xd7\x72\xe7\x64\x83\xf3\xad\xf3\xaa\x55\xe0\x8c\x94\x22\x8c\x27\x46\xd5\x76\x48\xbd\x58\x93\x5a\xcd\xe9\x3e\x32\x85\xe4\x38\xbd\x75\xaa\x0e\xe5\x28\xa0\xf2\x32\xdd\x41\xf9\x22\x77\x2c\xa7\xff\x84\xe2\x66\x44\xfa\x02\x8d\x13\xc1\xd2\xdf\x09\x69\x46\xa6\x82\x91\x8f\xf7\xee\xeb\x0a\x53\xfd\xfb\xdf\xc3\x57\xb6\x9e\x93\xa0\xa2\x27\x27\x66\x9c\x18\xb8\x92\xe6\x80\x20\xd4\xe8\xc4\xd6\x4b\xe7\xd2\xdd\x25\xde\x61\x0e\x91\x48\xec\x84\xab\x43\x31\xd0\x6a\x60\x5a\x45\xc4\x2c\xd8\xdb\x40\xa3\x15\x8e\xbf\x56\x9a\x40\x8d\x64\xbb\xeb\x48\x8d\x23\x50\x20\xa7\x11\x00\x3b\xe7\x3a\xc2\x90\xe8\x53\x9d\xea\xbd\x70\x45\x5b\x53\xe4\xd6\x5c\x72\x6e\x05\x87\x81\x7b\x8c\x6b\x57\x9c\xd1\x8b\x9c\x87\xdc\x1b\x4a\x01\x38\x60\x57\x55\x8d\x83\xc4\x80\x51\x26\xc4\x19\xd8\x78\x45\x44\xf9\x0a\x2c\x68\x43\x9a\xab\x5c\x8d\xea\xfd\x3e\x3f\xd0\x46\x66\xb5\x0f\x13\xb1\x03\xdf\x79\xa7\x73\x11\xdc\x01\x83\xbe\x70\x29\x7e\xd7\x41\xd6\xfb\xfa\x68\x28\xd8\x23\xfd\x79\x0f\x43\x9a\x24\x06\xe7\x61\xb8\x21\x1a\x9c\xdf\x3d\x4e\x85\xd6\xe5\x1f\x7d\xbb\xd9\x6d\x39\xb0\x20\xa7\x5a\x58\x4e\x74\x89\xa8\x23\xb0\x49\xcc\x29\xc5\x99\x0e\x61\xc6\xa7\x7d\x35\x00\xe7\x10\x27\x0e\xdd\x00\x1e\x81\x2d\xfc\x60\x75\xef\x86\x12\x90\xe7\x86\x1e\x5d\x59\x32\xf4\x13\xe5\x9b\xe7\x75\x45\x7e\x96\xca\x5d\x78\x2d\x23\xb4\x5e\xab\x02\x03\x76\x55\xb2\x72\xad\x6d\x37\x4c\x19\x14\x97\xec\x6c\x5e\x8a\x46\x0c\x00\xe0\xf8\x3d\xe4\x80\x57\x9f\xb0\x1d\x02\x28\x9f\xf0\xd9\x2f\xa0\x0a\x9e\xe8\x8c\xc0\x31\xfd\xfe\x48\x34\x0c\x37\x74\xec\xfd\x10\xde\xfd\x31\xde\x2f\x7d\x78\xef\x7b\x66\xff\x87\x1e\xd5\x21\x40\xc7\x80\xe8\x2c\x2e\x5a\xce\x79\xe8\xe0\x68\x35\x3a\x2f\x5e\xe8\xdc\x6a\xce\x71\xd1\x05\x9e\xe3\xc0\x1f\xb8\x52\x7a\x8d\x63\x04\x5b\x6f\xb5\xf5\x26\x1c\x22\xf9\xbf\xce\x2a\x07\xee\x87\xfb\xdd\xa0\x03\xeb\xee\x5d\x54\x06\x00\x47\x71\xe0\x8f\x9b\xab\x6b\xd1\x7e\x7b\x1b\x05\x49\xe8\xd9\xdc\x63\xb5\x86\x44\xea\x60\x8d\xd8\x99\x7f\x58\xb4\xd2\xca\xcd\xc3\xca\x87\x1a\x39\x31\x56\x42\xb6\x9e\x4e\xf3\x17\x79\x8d\x89\x47\x97\x63\x4b\x13\x40\x17\xc4\x5f\xca\xe3\xa8\x1b\x79\x58\xa3\x65\x80\x1a\xc5\x75\x8d\xbd\x06\x46\x34\x96\xcd\xb5\x53\x4a\x02\xae\xfe\xde\x1d\xb9\x73\x51\x8c\xf6\xb7\x33\xe1\xf6\xe2\x0a\xb2\x23\x5f\x95\xeb\x25\x42\x80\x8a\xc3\x3d\x1e\x0c\xac\x22\x4a\xd8\x37\x05\x84\x65\xcd\x32\x4f\x35\x9b\x10\xff\x9a\xeb\x5b\x27\x21\x79\xc4\xd4\x1c\x5e\xe3\x39\x5f\xd6\xab\xc8\xe2\x7a\xc5\x6e\xbd\x95\x68\x7e\xc0\xae\xcc\xb5\x38\x68\x1f\x79\x17\x7b\x20\x6c\x5b\xfa\x06\x3b\x4a\x83\xef\x68\xfd\xa1\xbf\x37\xa0\x0b\x27\xb6\x55\x20\x08\x2b\xe3\x71\xac\xb6\xd6\xc0\x9d\xa5\xa3\x44\x20\x12\x42\xa7\xea\x97\xdb\xea\x3f\xf4\xfa\x15\xaf\x07\xb9\x9a\x80\x2a\x28\xc9\x29\x3e\x8d\x68\x11\xf5\x58\x3b\x62\xbb\x89\xeb\x94\x63\x1d\xc5\x5b\xea\xae\x22\xea\x88\x7e\x2f\x31\xfd\x76\xbc\x03\xa9\x9f\x3e\xd0\x81\x6c\xa4\x3b\xe8\x15\xca\x89\x6c\x60\xaf\x89\x03\x89\xbe\xed\x24\x06\x85\x7e\x2b\xe8\xe2\xda\x73\x53\x73\xd4\x10\x93\x53\x5c\x8b\x73\x09\x9a\xd7\x2b\xc2\x4b\xcf\x43\xef\x05\x11\x32\x8c\xb2\xf3\x3b\x7a\xe3\x4a\xdc\x1a\xb6\x62\xa8\x6c\x2c\x05\x1e\x19\x3d\xcc\xa5\xef\xca\x18\xd2\xaf\xe8\xa2\x4a\x8a\x6c\x4d\xa7\x93\x81\xcd\x47\x77\x4c\x7b\x55\xd2\xc2\x8b\x38\xdd\x28\x53\xcf\xd9\x72\x25\x33\xfd\x85\x63\x53\xcc\x51\x07\x0b\x01\x3f\x04\xa8\xf8\x2e\x7e\xcc\x54\x92\x32\xed\xc1\xe6\xc2\xad\xbd\xa1\x7c\xbd\xc9\x75\x9a\x6a\x74\xb7\x2e\x5b\xa2\xd3\x57\x2f\xb4\xe9\x7a\x04\x4f\x55\x49\x5b\xf5\xf4\x6e\xc3\xc8\xe5\x82\x74\x9d\x13\xdc\xd6\xe5\xe1\x90\xa3\x66\x3a\x6d\x66\xa2\xa9\xfe\x5f\x07\xc0\x89\x76\x10\x52\xef\x43\x51\x90\x84\x5c\xb6\x44\xb0\x1a\xe7\x68\x27\xea\x10\x69\x2d\xad\x4a\x42\x29\xb7\x60\xbf\xf7\x3d\x45\xd4\xa6\x4d\xa7\x73\xd3\x44\xd1\xc5\xd1\xb1\xc4\x63\xa0\xdc\xd1\x61\x5d\xe9\xe9\xb0\xc6\x55\x29\x33\x04\xc2\x18\x9f\xb5\x01\x2d\xe2\x84\x2b\x3e\xa8\x0d\x2f\xfa\xd0\xa6\xe7\x85\x81\xc7\x13\x95\xb8\x6e\xed\x50\x97\xcd\x16\x65\x33\xb2\x89\xbc\x5e\xb7\xcd\xba\xdc\x02\x29\xef\x91\x00\x49\xfb\x2c\x36\x46\x08\x63\xc4\x31\x21\x8c\x53\x54\x19\x99\x07\x02\x15\x9d\x95\xa9\x6b\xd2\x56\x3a\x73\xec\x76\xb1\x12\x76\x96\x77\xd9\x84\x66\x3e\x93\xd8\x4d\xe5\x2b\x4d\xb0\x5a\x3d\x22\x27\xbe\x95\xe9\x47\x59\xbc\x66\x20\x1a\x91\x63\x33\x9c\x86\x63\x76\xfd\x69\x16\x61\x21\x3c\xe7\x9d\x0c\xc8\xfc\x31\x16\x90\xf9\xa3\x13\x90\x69\x7d\x38\xfe\xf4\x9b\x77\xae\xf8\x4b\xc4\x8f\x1d\x33\xbb\x82\x3a\x0f\x33\x6b\x68\x8f\xd6\xb2\xd0\x49\xe8\xc0\x14\x67\x5a\x49\x96\x11\x59\xce\x09\x90\x59\x1b\x79\x4b\xaf\xb4\x93\x7d\x1a\x4b\x6b\xe5\xbc\x3d\x90\xf6\xad\x74\xbd\x2e\xca\x70\xe8\xe5\x2a\x1c\x16\x9e\x44\x87\x9c\x9c\x0e\x0d\x27\x03\xe6\x61\x30\x09\xc6\xb2\x63\xe2\x70\xf1\xa2\x46\x16\x25\x02\x71\x81\xd9\x37\x08\x3b\x98\xe3\xa6\xc8\x2e\x38\xe6\xb3\x8b\x0b\x78\x77\x71\x51\xb0\x91\x9b\x31\xa3\xee\x1b\xa5\x53\x0a\xf2\x98\x9e\x29\xaa\xea\x03\x85\x93\xb9\x6e\xd9\x99\xdf\x52\xd6\x83\x32\x1e\x67\x73\xac\xd5\x90\x41\x0b\x95\x3b\x15\xbb\xd1\xd9\xf1\x89\xf9\xa8\x22\x18\xd4\xf6\xb0\xa1\x8e\xa3\x3b\xb7\xe7\x44\x7b\xb7\x6b\x5f\x7a\x51\x8c\x86\xa4\xc8\x66\x33\x35\x91\x87\x39\xdc\x5f\x4b\x17\xac\x35\xb9\x44\x1c\xc4\xdc\x4b\xf8\xb9\xf5\xb6\x94\x1f\x38\xee\xbf\xf1\x20\xef\x2a\xfe\xfc\x64\x6b\x12\x8c\xc7\x4b\xd5\x4e\x9e\x1e\x36\x1a\xc2\x8d\xe9\x34\x0f\x92\xf6\xc4\x76\xdf\xfa\x2b\x22\x5c\x7f\xfd\xe0\x54\x81\x3b\x8e\x45\x35\x3e\xf5\xf1\xe4\xd0\xb4\x63\x18\x73\x5f\x0b\x5e\x7f\xbc\xe1\x6f\xed\x98\x29\x39\xd9\xb3\xfe\xc5\x57\x1a\xba\x8d\xf9\x9b\xfd\x0b\xa6\xe4\x6c\x76\x5a\xfa\xe6\xb1\x55\xf7\xda\x7b\x67\x66\x14\x33\xeb\x86\x5b\xfc\x50\xfa\xa3\x0e\xee\x31\xf8\xa6\x0e\xaa\x20\x39\x2c\x62\x58\xc8\xe7\xb1\x99\xe0\xd8\x01\x8a\xe4\xfe\xf6\xeb\x0d\x0a\x01\xff\xc1\xa9\x4a\xe1\x2d\x57\x42\x50\x07\x4e\xec\x82\xfa\xae\x4b\x9e\xb3\xc8\xf9\x83\x8c\xb6\x16\x86\xfe\x74\x7b\x38\x12\x3d\x99\x76\xaf\x0e\x9d\xc7\xfe\x6e\x1d\x3a\x0a\x2a\x49\x18\xd3\xca\x19\xaf\x86\x5f\xb0\x61\x86\xd3\x8d\xd1\x97\xda\xec\x57\x9a\xba\x1c\x29\x9a\x7b\xf5\x22\x22\xb0\x18\x50\x00\x18\x4a\x43\xa0\xf4\xf8\x72\xe5\x25\x03\x08\x4f\xa0\xf6\xf0\xef\x9b\xd3\xc1\x5d\x0e\xa4\x4c\x74\xc0\x31\x96\x4b\x23\xaf\x8c\xbf\xd2\x51\x09\x10\xdc\x10\x35\x96\xd7\xc6\x64\xec\x16\x4f\xe1\x83\xe6\x2e\x08\x11\xd2\xd3\xa0\xc5\x1c\x37\x76\x1a\xf4\x51\x63\xa3\x9d\xca\x82\x40\x8d\x9e\x61\x23\x5f\x89\x74\x3a\x95\xa8\xbd\xb2\x94\xd9\xae\x41\x9e\x79\x5e\x53\x4e\x53\xe6\x49\x9b\xad\x34\x10\xdd\xd0\x74\x4a\xa6\x53\x29\x7a\x2b\x52\x35\x18\x0f\x67\x63\xe1\x06\x2e\x12\x36\x6c\x65\x67\x81\x22\xd0\x7d\x96\xb4\xbc\x8b\x9b\x20\x42\x1f\x12\xda\x3a\x93\xae\xa3\xb3\xb8\x1c\x32\x02\x09\x25\xa3\x23\xef\x91\x23\x24\x3c\xc7\xc5\x1f\x13\x21\xe1\x91\x98\x84\x87\xa3\x47\xe4\x13\x67\xe0\x1f\xb3\xa3\x27\xf0\x9e\x70\x9f\xd9\x31\xe9\xf6\xfd\xbc\xfa\x71\xe5\x89\x38\xa3\x32\xcd\x57\x9f\xac\x24\xe3\xeb\x21\xbb\x48\xdb\xec\xd8\x9a\x3c\xaf\x48\xcd\xe9\x25\x05\x35\xbd\x36\x85\x29\x45\x85\xd2\x6c\x14\x77\x4a\xb5\xb1\x30\x2f\x4d\xbc\x35\x51\x33\x90\x39\x86\xf4\x23\x71\xad\x7a\x2e\x79\xd2\x3f\x90\x88\xe5\x26\xe5\x65\x40\x61\x9b\xce\x84\xb6\x2f\x9b\x1a\xe2\xff\x98\x92\x24\x64\x6c\x14\x73\xca\x6d\x99\xb3\x11\xe8\x7f\x89\xab\xff\x65\xcb\x7a\x15\x6e\xa0\xbf\x7d\x41\xf6\xcb\x65\xbd\x92\x02\x2e\xfc\xa2\x15\xea\x94\x77\x40\xf4\x34\xe7\x4c\xf1\xe2\x43\x9a\x5b\x08\x1e\xa5\x45\x8d\xf3\x46\xcb\xfd\xe5\x76\xfb\xdc\x75\x3f\x6c\xcf\x19\xd1\xc5\x9d\x02\x41\xde\xc1\x41\x6f\x7f\x19\xa9\x76\x6b\x92\x47\xa3\x3d\xc9\x7e\xcf\x6d\xf4\x65\x87\x27\xa7\x26\x5b\x26\x51\x4c\x83\x56\x65\x03\x99\x8f\xb1\x11\x07\xfa\x9f\x84\x03\x20\x3c\x21\x52\x26\xff\x13\xc9\xa9\x23\x93\x37\x10\xde\x29\x1e\xe2\x12\xe1\xba\xcb\xff\x4a\x1c\xa9\xfc\x77\xbf\x79\xa9\xfc\xdf\xbf\x98\x54\xde\xf3\x40\x4d\x4a\xcd\x71\xd1\xda\x11\x7d\x23\x7d\x29\xf9\x38\xe8\xe9\x37\x24\x35\x9b\xbc\xb1\x3d\x63\x01\x31\xde\x69\x9e\xb3\xdd\xc2\x55\x19\xb9\xbe\xbd\x51\x36\x37\x8f\xb7\x3e\xc6\xe0\x7f\xb4\xfe\x33\xea\x4c\x7a\x8a\xd4\xed\x3f\xec\xfe\xe3\x2e\x33\xea\x4b\x14\x15\xf3\xbd\xc5\x26\x5d\x63\xfc\x6f\x86\xad\xb3\x2e\x69\x3b\x38\x63\xc3\xc1\x0e\x79\xea\x5d\x45\x9e\xf5\xf1\x33\xc6\x38\x90\xc3\xae\x7e\x4a\x51\x30\xac\x6f\x39\xa8\x6d\xf9\xbc\x90\x0d\xd9\x9f\x7b\xea\x60\x7e\x01\x4a\x1a\x94\x3b\x4e\x89\x73\x6f\x1d\xce\xd0\x11\x8a\x67\xc2\xfe\x62\x92\x71\x14\xd4\xe0\x1f\x1b\xdb\x99\xc2\xcd\x8b\xd7\xc3\x3d\xe7\xb3\x04\xe1\x1c\x5a\x61\x72\x89\x11\x97\x86\x43\xab\x54\x9f\xf4\x04\xd9\xf8\xb4\x86\x05\xf6\x41\xf2\xd8\x7b\x6e\xa5\xf2\x49\x04\x7e\x67\x3c\x30\xe5\x2f\x12\xe0\xd2\xf6\xad\xf0\x30\xa5\xa0\x1b\xd3\x27\x0c\x02\xfb\x38\xf1\x7f\x50\x81\x38\xe8\xe4\xf7\x79\xee\x93\xc8\x42\x43\x2a\x30\x78\xf8\x0f\xa3\xda\x90\xee\x22\xba\xc0\x03\x18\x7e\x4f\x5d\xc7\xd1\xf3\x3c\x18\x32\x10\xd5\xba\x1d\xa1\xff\xfb\x84\x93\x6a\x65\xbc\x64\x85\x80\x94\x94\x37\x28\x34\xc4\x87\x3b\x5a\xea\xbb\x87\x96\x78\xf8\x26\x1b\xa0\x7d\xbf\xf8\x4e\x99\x7f\xba\x8a\xf8\x9f\xad\x20\xb6\x50\x18\x92\xb1\xa1\xfc\xb0\x27\x65\x47\x48\x81\x96\x8e\xfa\xe4\x33\x21\x47\xeb\xfc\xf9\x89\xcf\x14\x71\x49\xcb\xf3\xee\xc5\xa5\x44\x71\x3e\x24\x8a\x5b\x37\x0d\x68\x09\xda\x00\xe2\x4b\xe8\xbc\x27\xa1\xf3\x98\x84\xce\x8f\x90\xd0\x03\xf1\x1c\x8c\x29\x72\xc2\x2a\x96\xd0\xb1\xaf\x1c\x29\x71\x2b\x71\x5b\xc8\xda\x08\xf7\x84\xed\x18\x23\xc6\x6c\xb0\x56\xfc\xf5\xe7\x11\xb7\x7b\x7b\xa7\x65\xe8\xdc\xad\x6d\x6e\xa4\x60\x95\x22\xf8\x77\x31\xe9\xf7\x77\xbe\xf4\x2b\x06\xf9\x8f\x43\xa9\xe2\x9c\x38\x65\x5d\x3d\x2b\x52\xa5\xcb\x85\x6c\x10\x3b\x0d\xf0\xa3\xff\x20\x95\x1f\x22\x7a\x54\xa3\x74\xde\x38\x6f\xc0\x0f\x82\xe8\xb9\x4f\xbc\x56\x45\xff\x0b\xf5\xd7\x50\x76\xb9\x4d\x19\x0b\x63\x35\x61\xbd\xf1\x09\x2f\xc9\xaa\xc3\x46\x63\x9c\x4a\xcc\x93\xfa\xda\xcf\x75\x11\xab\xf3\x86\xee\x48\xce\x30\x87\xf0\x0e\xc8\x9f\xf1\x9e\xf0\xfb\x8e\x82\x59\xc1\x55\x26\xa0\x09\xf3\x42\x3c\x1d\xbf\x55\x7a\xe8\xec\x24\x4b\x12\x84\xdf\xd9\xb4\xc5\x30\xa8\x3c\x97\x4b\xb2\x4a\xd6\xa4\x61\xfe\x50\x89\x3a\x09\x6e\xca\xfd\x1a\x41\x09\x81\xd8\x67\xf1\x42\x49\xc1\xd7\x6a\xd3\x5d\xb7\x2f\x59\xee\xf1\xac\x26\x37\xe3\xbf\x10\x48\x8c\x4f\x30\xc3\x0d\x5a\x88\x27\xff\xee\x3e\xe9\x72\xea\x22\x1b\xae\x31\xa4\x0b\x33\x29\x82\x7c\xef\x8f\xff\xfc\xcd\xeb\x99\xfe\x4c\x8a\x53\xec\x62\x55\x2c\xbf\x86\x66\xf4\x4c\x4e\x08\xed\x14\x5e\xe9\x4c\x03\x9a\xe3\xd0\x59\x02\xbc\xf3\xaa\x12\x1e\x5c\x10\xa8\xb0\x16\x64\xa1\x60\x49\x32\x71\x11\x8f\x08\x08\xf2\x65\xd8\xc4\x2c\xde\xb7\x20\x66\xf8\x8f\xde\x5d\xb6\xcf\x83\x56\x4e\xb1\xb1\x5e\x72\x8c\x67\x5b\xfa\x7e\xc3\xcf\x53\x0d\xaa\x30\x33\x85\x29\x1c\x55\xe9\x0c\x37\xc1\x84\x54\x71\xfc\xe8\x63\xda\xd4\x8f\x9b\xab\x2b\xda\x7b\x1f\xc0\xc7\x4b\xa0\x10\x85\x8e\xc3\x85\x45\xf6\x20\x9a\xe1\x53\xc2\xca\xfc\x29\xe1\x64\xb2\x31\xb4\x84\xe7\xc8\xa4\x48\xa0\x60\xc6\xea\x11\xd0\x26\xce\x98\xf4\xf3\x1d\xdc\x51\xc5\x48\xe8\x62\x1a\x3e\x66\x61\x8d\x48\x0b\x0f\xad\xba\x0e\xcb\x3a\xcb\x49\x16\xc1\xaf\xbe\x2e\x16\x64\x92\xd2\xf9\xcb\xeb\x17\xb8\x12\x0c\x80\xe5\x1f\x2e\xd6\xf0\xb4\xfa\x8b\xa0\xca\xc4\xa9\x62\x87\x90\x5f\x72\x44\xb6\x06\x47\x54\xaf\x59\x1f\xb5\x74\xfd\x77\xc9\xe5\xc8\x51\x9d\x12\x9f\xb9\x60\x79\x83\x1c\x09\x0a\xa3\x08\xdf\x5d\x87\xa1\x19\xc0\xb4\x18\x29\xab\x82\xa2\xf5\x92\x8d\x61\x02\x4a\x42\x78\x96\xa8\xd4\x13\xd2\x63\x48\x2d\x5f\xd8\xb9\xe2\xf0\x81\x62\x68\x1b\x71\x43\xf6\xa6\x7e\xa8\xfc\x82\x07\x84\x7e\x6a\x27\xe7\x35\x32\x61\xe3\x62\xac\x0b\x70\xb2\x90\x15\x19\xdd\x31\xea\xd9\xeb\xa7\x8f\x5f\xbd\x7e\x72\xf1\xe4\xfc\xed\xf9\xc5\xd3\xd7\xaf\x5f\xbd\x7e\xa3\x81\x25\xa9\x8b\xd9\xf5\x08\xb1\x89\x08\x53\x5e\xd1\xc7\x00\x15\x0d\x9a\xba\x98\x28\x84\x0c\x40\xf6\xfe\xe4\x34\x00\x0e\xce\x71\xbf\x5f\xae\x44\x2f\xb4\xef\xde\xe9\x00\xb1\x88\x02\xd1\x7f\xd3\xdf\xd0\xb0\x85\xc0\x4f\x31\x96\x0c\xb1\x90\x5c\x65\x04\x31\x0c\x71\xd2\x7e\xc2\x91\x63\x22\xa7\xac\x1b\x26\x3c\x47\x6d\x57\xa2\xb9\xe0\xa8\xfb\x5f\x90\xfe\xb0\x04\x7b\x27\x57\x9d\x2d\x43\x19\xeb\x4b\xca\xae\x48\x95\xa3\x63\x26\x67\x68\xe9\x11\xd3\x74\xe8\xae\xe8\x01\xa8\x5d\x1f\x3c\xe1\x71\x18\xb8\x24\xdc\xd7\x95\xaf\x2d\xf0\x51\x12\xd0\xbc\x7f\xc0\x13\x19\x3d\xfa\xf8\x7b\x88\x27\x73\xaa\xe6\xb3\xc2\xe7\x34\x0f\x15\xd0\x06\xef\x76\xaf\xff\x25\x5d\x69\xbf\xf6\xfe\x1b\x55\x37\xd1\x7b\x0c\xbe\xb6\x14\xe9\xe4\xaa\x1d\x10\xf0\x14\x01\x1c\x48\x58\xb1\x8e\x10\x4b\xee\x2d\x87\x98\x38\x2c\x97\x8a\xd5\xc5\x5c\x30\xb5\x66\x85\x8f\xa8\x5d\x65\x03\x39\x20\xa1\xb6\x69\xb3\x1a\x95\xcb\xf9\xaa\x28\x8a\x72\x79\xba\x32\x79\xef\xd8\xb2\x59\xc1\x8c\x7b\xc3\x0f\x4c\x55\x5e\x05\xbc\x3f\x17\x3d\xbd\x3e\xb6\xe0\xba\xf0\xae\x94\xbb\x0e\xab\x7c\x33\x31\x49\xa8\xf1\xd6\x5d\x23\x5c\x16\x73\x48\x82\xab\x16\x59\x3e\x6a\x1f\x96\x7a\x91\xbb\xa2\x59\x96\xab\x11\x5d\xee\x56\xc5\x92\x2c\x77\x2b\x5c\x2f\x77\xab\x95\xe6\x54\xa9\x3c\x2f\xe2\x62\x4c\x9f\x90\x97\xe4\x06\x0e\x45\xb3\xdd\xbe\x2b\xd7\x1f\xe2\x50\x00\x08\x84\xd7\xaf\xa1\x26\x36\x2d\x53\xe4\xda\x03\xc5\x43\xff\x56\xe8\xdf\xa5\xc1\xf1\x33\x2e\x9e\x4a\x93\xec\xc6\xbc\x3a\xda\x6d\xff\xe2\x34\x9a\xa7\x08\xb1\x33\x2c\x82\x69\x32\x78\xb0\x9d\xcb\x69\x80\x22\x61\x02\x38\xdf\x23\x62\x3d\xf2\x72\x60\xe2\x40\xda\x2a\x5a\x85\x97\x7a\x9f\x8a\x9a\xbb\x2f\x49\x38\x63\xec\xa6\x0b\x18\x09\x05\xe5\x7c\x05\x6e\xfa\xe0\x91\xf5\xa9\xdc\x89\x47\xb0\xdc\x82\x9d\xc1\x4d\x4b\xfa\xd7\x2c\xee\xb3\x37\x42\x72\xb7\x98\xa0\x6a\x10\x79\x99\xd1\x5d\xd6\xcd\x96\xe9\x4f\x71\x6d\x49\x22\x6e\xd4\xce\x07\xf0\x20\xcd\xcf\xdd\x0b\x4f\x80\x6d\x1b\x28\xe2\x1a\xb2\x3d\x6f\xde\x9e\xbf\x7d\xaa\x36\x21\xc2\xd2\xb8\x9d\x1f\xc5\xd1\x28\x86\x46\xf9\x12\xc5\x92\x79\xa5\x08\x3c\x41\x5a\xcd\x29\xb1\xb4\x25\xfc\x09\x65\xfc\xb6\xdf\x55\x98\xbe\x3a\xd6\xd7\x88\x19\xdf\xda\x20\x39\x4d\x0b\x5e\xa3\x8d\x78\xf8\xb6\x89\x75\x6e\x8b\xc3\x46\x27\x19\x76\x06\xc5\x62\x1b\xe7\xe0\xc5\x27\xfc\xff\xb3\xf7\xee\xed\x6d\xdb\x68\xa2\xf8\xff\xfa\x14\x12\xcf\x73\x54\x62\x0d\x29\x72\xd2\xbd\x8c\x1c\x46\xe3\x26\xe9\x34\xb3\x4d\x93\x5f\x92\x4e\xa7\x47\xd5\x7a\x69\x09\x92\xd0\xd0\x80\x06\x84\xec\x78\x2c\x7d\xf7\xdf\x83\x2b\x01\x12\x94\x28\xc7\x49\xd3\x8e\xf7\xd9\x69\x2c\x02\x78\x71\x7f\x6f\x78\x2f\x3b\x20\x56\x82\xfb\xe8\x11\x4e\xe5\xad\xfa\x29\xcd\xdf\x20\x81\xd6\x2a\xae\x8b\x6a\x0d\xaa\x38\xaf\x7a\xd0\x64\x04\xd8\x22\x98\x12\x28\x2c\x09\x2b\x04\x46\xc5\xda\x62\x6e\x48\x2d\x6b\x51\x89\xc7\x82\x98\x4d\xba\xdd\x58\xff\x55\x4b\x8c\x54\xb1\xc9\x82\x5c\x77\xf2\xc3\xdc\x6d\xcc\xcb\x7c\xb7\x7d\x5e\xbe\x4b\x9e\xdb\x3e\x7d\xdc\xc5\x21\x0d\x01\xdb\xb3\xeb\x9e\xed\x88\xde\x71\x03\xce\x2e\x54\x10\x5c\xb1\x5b\x32\x12\x36\xe4\x49\x92\xc4\xa8\x08\xd5\x5f\x5d\xee\x51\xed\x3e\xa1\xc9\xb0\xc0\x62\x63\x34\x01\xa5\x78\xbd\x5e\x5f\x7a\xe5\x44\xf3\xd0\xa2\x39\x43\x48\xcb\x5d\x7b\x70\x86\x77\x34\x58\x2d\x49\x1e\x34\x9e\xcd\x66\x67\xe7\x5e\xb1\x91\x77\xd6\x24\xa3\xe9\xac\x46\xde\x71\xb4\x20\x36\x1b\x9f\xf6\x9b\x2b\xd1\x5e\x4f\x09\x52\xa3\xe7\xb1\x20\x2a\x0a\xa0\x50\xb6\x16\x27\x1c\xb0\xee\x52\x87\x03\x8e\x24\xbd\x20\xeb\xd5\x2b\xb6\x5a\xa6\x04\xb9\x28\x2b\x02\xea\x0e\xec\xa8\x52\x97\x1f\x22\xcd\xb2\x37\xc8\x09\x71\xac\xb0\x95\xc4\x2e\x61\x51\xc3\xb3\xf4\x3d\x3a\xe2\x40\x88\x03\x63\x3e\x29\x27\xbb\x06\x26\xfe\xb4\x79\xa0\x18\x6c\x63\x04\xc0\x0e\x40\xae\xc9\x30\xf3\x37\x81\x39\x41\x8e\x6b\x16\xd3\xe8\x21\xea\x22\x2f\x97\xae\x6c\xd5\x8c\xdb\x31\x25\xe4\xd5\x88\xd0\x7e\x88\xe7\x00\xf2\x2a\x27\xf6\x6e\x4e\x5c\x6b\x92\x92\x07\xd2\xc6\x59\x75\xb6\xb7\xd4\x8d\x3b\x3a\x9b\x61\x86\xa6\x3c\xbb\xae\xee\x78\xf5\x78\x8c\x27\xad\x1d\x98\xb3\x1a\x63\xdb\xf1\x1c\xf2\xc2\x2f\xc8\xe8\x98\xc1\x58\x80\x2d\x94\x20\xe3\x64\x41\x20\x16\x4b\xad\x78\xe2\xe0\x99\xac\x3a\x81\xc8\xe0\x0d\xd2\xd4\xff\xaf\xe8\xe8\x48\x1a\xdc\x6a\xf3\x7b\x5e\x3c\xbf\x6a\x75\x25\xa9\x06\x1e\x94\x6f\x0b\x4b\x3c\xe7\x31\x68\x71\x13\xb5\xbd\x55\x04\xa8\xc4\xbb\xd6\x2b\x96\xe2\xd5\x49\xfa\x98\x16\x27\x38\x35\xde\xc0\x52\xb4\xca\xdb\x98\xe4\x3c\x25\x53\xe9\xd3\xdd\xed\x9a\xa1\x3c\x26\xdd\xae\x19\x67\x0e\x60\x31\x42\xb0\x75\x12\x20\x88\x53\x21\x50\x98\xa4\x1d\x3b\x03\xa8\x06\x90\xb1\x75\xce\xb2\xc5\x41\xcc\x7b\x00\x09\x09\xf7\x23\x37\x0b\x13\xac\x4f\xfc\x53\x29\x8d\x9a\x44\xae\xd5\x77\xa8\x9b\x6d\x91\xe3\xbc\x93\x24\xae\x13\x46\xe9\x08\x93\xaa\x42\x03\xe2\x84\x38\xec\xbd\xaf\xd1\x90\x39\x91\xc9\x2e\x9d\x87\x4c\x93\x1c\x38\xc8\x30\x2f\x6b\x0b\xd6\xc9\xe0\x64\x5d\xa4\x0a\x59\x1b\x89\x39\x4b\x72\x21\x26\x4f\x13\x34\xce\xa4\x0e\x24\xc2\xb3\xa8\x93\x24\x99\x2a\x9e\x27\x74\x9c\x4d\x36\x1b\x3c\xce\x26\x70\x69\xec\xc3\xb5\x67\xbf\x9d\xf3\x7c\x34\x97\x4f\x49\x32\x76\x80\xf6\xf3\xb7\x93\x8a\xec\x03\xb2\xcf\x31\xc4\x19\x9c\x82\xd6\x39\x43\xe9\x7b\x15\x03\xe0\xdc\xb0\x26\xa5\x16\x45\x00\x5a\xd1\x02\xc6\xcb\x44\x1a\x04\xc4\x19\x00\x7b\x6c\x2e\x96\x3b\x8c\xf8\xdc\x9e\xcd\x9b\x98\xdf\xaf\x66\x8f\x3f\x45\xaf\x33\x34\x4f\xd7\x19\x1f\xf2\x71\x36\x49\xa6\x5b\xe5\x9f\x6f\x64\xbf\xa9\x77\x61\x76\xcb\xc9\xbb\x1c\x8a\x0a\xc1\xbe\x09\x92\x63\xbb\x4c\xe6\x62\x00\x3b\x1a\xb0\x15\x57\xb6\x7e\xee\xd2\xe0\xbb\x4c\xcb\x48\x9b\xf5\x8f\x36\x0d\x9e\x83\xbd\xb7\xc2\x66\xa3\x24\xc5\x28\xb5\x3e\xa2\xca\xe7\x7c\x1c\x2d\xe5\x82\x13\x56\x4b\x80\xee\x70\x09\x50\x38\xd1\x03\xe7\xb1\x4a\x45\xa5\xe4\x2d\x49\xfe\x9e\x61\x8d\x9b\x42\x9a\x6d\xa9\xd3\xd0\xaf\x0a\x85\x7e\x20\x80\xbe\xc6\x4a\xf3\xa9\xd9\x14\x65\x35\x2f\xed\xc8\x2b\x08\xc4\x20\x0f\x98\x25\x3b\xd4\x5b\x92\xd4\x64\xdd\x6e\x9c\x56\x70\x2b\xb0\xe9\x51\xb5\x5a\xa2\xde\xf2\x61\xb7\xaa\xc2\xe8\x72\xd7\x52\xbd\x89\x13\x34\xa6\x49\x3e\x26\x93\x89\xda\x7f\x9b\xaf\xbf\x93\x24\xe9\x98\x4e\x4c\x2e\x4a\x9c\x3f\xff\xc7\x3a\xcd\x62\x21\xf2\x41\x0c\x36\x1b\x6e\x35\xb5\xee\x8d\xe3\xf4\xad\x8c\x46\x52\xe5\x59\xa2\xc7\xd5\x4c\x91\x43\xfd\x09\xcf\x8e\xa2\x27\x51\x39\xe8\x84\x33\xfb\xba\xd0\x13\xf5\xaf\x1e\xd5\xf7\xa2\x90\x86\x34\xf0\xf4\xb6\x85\x39\xf2\x73\x8c\x56\x21\xa1\x22\xb6\x85\x77\xec\x9b\x0d\xb3\xa4\x1a\x8b\x43\x9f\xa5\xff\xd0\xdf\x4d\x64\xa6\xe0\xcb\x6e\x31\x06\xb1\xe1\xcd\xba\x9e\x29\xe3\x2d\xf7\xb5\x61\xd7\xaa\x28\xd1\xa8\x66\x3d\x94\x05\x97\x13\xe5\x23\x74\x49\x43\xf1\x3e\x4a\x0f\x52\xa1\x66\x86\xe3\x0c\xe5\xe0\x2f\x45\xda\x08\xa2\x06\x04\x2b\x11\x39\x82\x51\xea\x9d\x10\x25\xe5\x7b\xd2\x6c\x41\x43\xcf\x69\x71\x6d\xd9\xce\xc5\xae\x56\xaf\x5d\xfa\x00\x64\xed\xd3\xf4\xff\x2a\x71\x46\xb0\xfa\x08\x71\x39\xce\x88\x40\x8b\xe0\x06\xed\x88\xa0\x2f\x9f\x99\xfd\x74\x04\x4a\x05\xbf\xcb\x1c\x56\xbf\x4d\xef\x37\x8b\x8c\x81\xb2\x11\x60\xca\x0b\x57\xa1\x99\xb3\x6f\xac\xd8\x1b\x8f\x23\x42\xd9\x85\x1c\x49\xe9\x4c\x45\xf9\x35\x99\x96\xbf\x09\xde\x2e\x5f\xa2\x59\x34\x71\x26\x49\xb8\x47\x79\xd6\x31\x2a\xa5\x8d\xae\x78\x1c\x4e\x55\x3e\x73\x00\xb9\x1a\x1e\xe6\xe1\x14\xaa\x94\x27\xda\x09\xf0\xf9\x0f\x7f\x83\xc7\x00\xa6\xa6\xe2\x5b\xc4\x2e\xf1\x74\x4f\x12\xe0\xfd\x19\x7d\xcf\x8a\xce\x12\xc6\x8d\x5a\x61\x5a\xca\x85\xa9\x3c\x98\x51\x7c\x53\xa4\xa9\xda\x96\x92\xab\xbe\x4d\x2f\x65\xf4\x12\xf5\x51\xc5\xc0\x49\xa7\x9c\xb2\xeb\xa7\xe9\x74\x19\xbc\x64\x21\xde\xe7\x19\x9a\xef\xab\xef\x31\xe3\xfb\x2a\x07\x47\xa7\x14\xe4\x25\x23\x3f\x5b\x2a\x28\x0e\x9a\xf9\xf9\xdf\x2a\x6d\xeb\x8a\x75\x7f\xdf\x22\x3e\x5d\xca\x55\x7b\x99\xae\xcc\xb8\x95\x03\xe4\xbe\x11\xe7\xe6\x62\xec\xab\xe9\xdb\xd1\xa0\xab\xf6\x53\x64\xa2\x31\x38\xbb\x3a\x54\x3e\x6e\xaa\xef\x61\xd4\xfb\x35\xa7\xa4\x97\xae\x70\x04\x35\x8b\xab\xfd\x32\x75\x2e\x32\xed\x0d\x3f\x8b\x23\xdd\x24\x82\x15\x09\xbd\x9c\x34\xd9\xd4\xf4\xb1\xa6\xfe\xaa\xb2\xe0\x6d\x01\x74\x53\xd4\x0d\xeb\x34\xf0\x36\xb5\x09\xef\xff\x4a\x71\x28\xf1\x3a\x73\x8f\x6c\xa5\x92\x62\x44\xcf\x05\x3b\x84\x2b\x6f\x98\x1c\xf8\x16\xbb\xb8\x8f\x67\x02\xd3\x88\x7f\x13\xd6\x3f\x5b\x20\x82\x58\xca\xd1\x8b\x99\x54\x0b\x00\x88\xf5\x43\x8f\xac\xa8\xb3\xeb\xe4\x28\x66\xa0\x7f\xbe\xc6\x99\xac\x25\x4b\xac\xb1\x51\x26\xcd\x68\x95\x4e\x57\xbf\x8e\x39\xb3\x96\xdf\x8a\xeb\x8f\x05\xaf\x28\x36\xab\xe8\xb7\x76\x5d\xfc\xd5\x34\x1d\xca\x24\xee\x45\x6b\x69\x5e\x28\x40\x8f\x82\x5f\xd5\x6e\x09\xc0\x43\xa5\xb3\x72\x6d\x2f\x3c\x02\x80\x3c\xb3\x8c\x18\x6c\xa1\xab\xb6\x2c\x55\x75\x8b\x44\xd5\xb9\x10\x33\xcb\x8f\x20\xee\xc1\x10\x15\x74\x75\x95\x7f\xad\xf8\x50\x69\xe7\xed\x27\x97\x79\x35\x6d\xc2\x50\xd0\xcf\x28\x7d\xbf\x5e\x89\x6d\x80\x1e\xd5\x66\x09\xdb\x6c\xc4\x86\x6b\x26\x58\x01\xff\x96\x32\xbd\xb3\x23\xc2\x4d\x62\xd0\x62\x2c\x54\xd0\x31\x99\xce\xff\xad\xb8\x58\xff\xa7\x28\x6a\x47\x47\xe4\x28\x6a\x5f\x61\xbe\x6c\xe3\xd9\xb0\x1d\xd9\xd8\xe7\xb2\xfd\x37\xd7\x1e\x32\x90\x80\xb6\xf0\xac\x66\x56\x2a\xd2\x6d\x9f\xc9\x10\x87\xc0\x63\x1f\x8c\x6a\x51\x22\x0f\x59\xb7\x65\x12\xf0\x95\xd2\xc0\x4b\x5b\x89\xca\xb9\x70\x6c\x2b\x5a\xd6\xe8\x47\x85\x55\x54\x11\x15\xdd\x73\xc0\xc0\xa8\xae\xd7\xa1\x8a\x5a\x28\xe9\xd0\x82\xd1\x35\xd1\xcd\x47\xea\xf6\xbc\x79\xfb\xb7\xd7\xfd\xd7\x8c\x5e\xe0\x5c\xd0\xe0\x9c\x66\x97\x32\x1a\x73\x1c\x57\x9b\x6c\x36\x66\x04\xdf\x94\x4a\xfc\xb1\x00\xfb\x78\x5b\x19\x0d\xdc\xd9\xab\x59\xe9\xd2\x26\x0c\x83\x22\x61\x11\x03\x4e\xf0\x4f\xc9\xcd\x56\xf9\xef\xca\xf1\x74\xbb\xc8\xfc\xa9\x5e\x51\xcc\x2f\x00\xbd\xd3\x22\x15\x05\xfe\x86\xcb\x51\xd6\x9d\x1c\xe4\x8a\x22\xee\x19\x92\xaf\xc7\x7a\xf4\x55\xa0\xe1\x09\x38\x06\xf6\xf5\xbb\x27\x2a\x7d\x4f\x53\x41\x86\x62\x30\x42\xfd\xb3\x95\x5a\xb5\xd7\x8c\x7e\xb8\x1e\xee\x5c\x4d\x75\x17\xbf\xb9\x7e\x31\x2b\xe7\xb1\x2f\x54\x66\x45\xcc\x01\x6e\x43\x07\xd9\x2b\x5a\xc9\x9b\xcc\xc6\x58\x3f\xed\x39\x57\x8d\xc8\x60\xc0\xf6\x90\x66\xb1\x33\xa8\x34\xcb\x04\x82\x95\xfc\x93\x4e\x8f\x29\x2f\x77\x79\x81\xe5\x20\xdb\x74\xae\x2f\xe7\x54\xab\x1b\x22\x75\x22\xc4\x6a\xec\x20\x35\x6e\xd6\xcb\x40\x4e\xe8\x92\x07\x7b\x82\xcb\xf7\x8f\x02\x98\x27\xd8\x51\x1c\xae\x93\x1d\xeb\x0a\x4a\xdc\xa0\xb3\x9d\xce\xa2\xa8\x5e\x53\x60\xb3\xa9\xc6\xeb\xe4\xe7\x78\x0d\xb9\x9a\xf9\x77\x29\x99\x65\xa8\xad\xa9\xb5\x7b\xc6\xe8\xbc\xfd\x55\x74\x94\x1f\x45\x5f\x15\xc7\xeb\x2b\xb9\x2a\x5f\x45\xa0\xdc\x37\x36\xb6\x46\x6f\x50\xfc\x5a\xe6\xcf\x86\x82\x15\x94\x16\xb4\x44\xb2\xb7\x1a\xac\x43\xcd\x15\x4b\x24\x84\x70\xe8\x8b\x09\x8c\x5e\xb5\x65\x88\xdc\x6f\xc5\xbd\x8e\x25\xc1\x34\xe7\xb3\xdb\xc5\x25\xd2\x00\xd1\x56\x4d\xe5\xf9\x07\xce\xd2\x29\x6f\xaf\xd2\x6b\x51\xee\x4c\x20\x02\x3a\x69\xa8\x83\xd6\xb4\x17\x05\x74\x5c\x63\xa0\xa2\x1b\xfe\xe1\x7f\x99\x92\xeb\x06\x87\x16\x39\x87\x76\x47\x80\x8c\xf2\xc5\x1a\x93\x09\x2c\x9b\x6e\x78\x9b\xad\xce\x6d\x79\x50\x55\xd4\x5f\xba\x8f\x45\x16\x55\xef\xb3\x45\xfc\x78\x26\xc3\x04\x15\x27\x0d\xbb\x27\x6d\x86\xe6\x88\xc5\x91\xec\x0a\x93\x85\xba\x0b\x5f\xb9\x58\x46\x6a\xa8\x6f\xb0\x87\x5a\x10\xd4\x27\x93\x0d\x31\x34\x59\x07\xf8\x16\x8a\x83\xae\x07\xd1\x42\x92\x97\xc1\x64\x61\x82\xfc\x14\xa1\x33\x5d\x16\xb7\x9f\xe3\x7f\xa2\x6e\x17\xf3\xdd\xd9\x44\xa5\xa3\xea\x69\x96\xbd\x76\x9a\xa2\x5c\x91\xb7\x3c\x00\xb6\x08\x8b\xb0\x4c\xf3\x98\xc8\x94\xe9\x39\xe2\x31\x81\x32\x31\xb1\xe4\x3d\x89\xb5\xe2\x83\xe9\x16\x86\x7b\xa8\x08\x44\xde\xe3\x9e\xff\x05\x93\x85\x7d\x31\xf5\xa6\x68\xb4\x7d\x9a\x06\x38\xa9\xc4\x65\xf9\xb7\x94\xbd\x13\x07\xd3\x7d\xfb\xf1\xda\x6b\x3d\xa7\xc4\x4b\x35\x8d\x6b\xcf\xad\x5c\x42\x92\x30\xf7\x42\x48\x43\xbc\x4e\x87\x48\xe4\x21\x4e\xbd\x54\xa6\xd2\x34\x43\xf9\x14\x7d\x2b\x2f\xf0\x3f\xd6\x28\xe7\xb9\x13\xd9\x09\xa6\xce\x15\x90\xd8\x2b\x24\x56\xac\x65\xa5\x9f\x50\xfa\x5e\x48\x2d\x2a\x77\x39\x75\x93\x96\x23\x93\xb4\xdc\x3b\x50\xad\x74\x9c\x4d\x92\x39\x5c\xcb\x3d\x9a\xc3\xa9\x49\x37\x09\x60\x3e\x9e\xf7\xf1\x6c\x92\x4c\x8b\xb4\xae\xcb\x42\xb3\xc9\xfa\x2e\xa6\x8e\x91\x0f\x16\x22\x0b\xa7\x65\x91\x29\xb3\x58\x95\x3b\x69\x67\x67\xe5\x75\x0b\xcd\x4e\xd9\x5e\xa2\x1a\xdb\x4b\xa4\x6c\x2f\xf3\x31\x15\x03\x96\x46\x2e\xea\xcf\x84\xc2\x14\xa4\xd5\xfe\x69\x91\x78\xcc\xa4\x7a\x87\xd3\xc2\xb4\x33\x7b\x3c\x2d\x56\x6e\x9e\xf0\x71\x36\x69\x31\xb5\x1a\x9b\x8d\x4e\xe6\x3e\x77\x73\xb9\xaf\xe2\xb5\x33\xa3\x55\xb3\x3c\xba\xea\x3d\x51\x66\xe4\xa1\x49\x3e\xc6\x72\xec\x32\xea\xb2\x33\x5e\xb1\x14\x31\xdf\x6c\xa4\x02\x84\x31\xca\xe2\xe8\xf9\x87\x95\x34\x03\x92\x94\x02\x0b\x9c\xc1\x69\xfb\x1c\xb5\x57\x0c\xe5\x88\x70\x65\xb7\x80\xda\xfa\xd4\xb5\x57\x8c\x5e\xe2\x19\x9a\x19\x94\x0d\xdb\xe7\x6b\xde\xc6\xbc\x7d\x95\xe6\x6d\x42\x79\x7b\x2e\x08\x40\x5f\x10\xdf\x2d\x9e\x0b\x22\x63\x06\x7e\xe1\x9f\xbb\xcb\x64\x70\x72\xf9\x98\x9e\x5c\x1e\x1d\x81\x8b\xf1\xe5\x24\x49\xc7\x97\x93\x32\x75\x5d\xcb\xfb\xfd\x0a\x14\x8f\xa2\xd7\x09\xe9\x0b\xe6\x71\xa5\x3d\x16\xbf\xa5\xec\x5b\x7d\xf8\x15\x07\x79\x01\xe0\x22\x19\xc0\xf3\xe4\xda\x2c\xd1\xe2\xf1\xf9\xc9\x42\x2c\x91\x81\x71\x96\x5c\x8f\x17\x13\x78\x25\xff\x31\xd7\xe2\xb9\x33\xbc\x2b\x00\x3f\xf8\x3f\xdf\x26\x83\x93\xb7\x8f\xaf\x4e\xde\x9a\xa5\x7e\x95\x9c\x8d\xdf\x4e\xfa\x67\xfe\xf1\xff\x30\x7e\x3b\x49\x5e\xc1\xe7\xf2\x9f\x3e\x9e\x89\x25\xb8\x7a\x72\x0c\x3c\xfd\xcf\xaf\x28\x26\x90\x41\x0e\x9f\x43\x04\xd7\x65\xb2\xcc\xc1\xcd\x4c\x66\xbd\xdf\x82\xfe\x34\xe5\xa5\xb7\x05\x75\x18\x84\xb4\x18\x7f\x28\x62\x8b\x0b\x26\xfd\xb9\x0d\x89\xb6\x8c\xf3\xf1\x87\xf1\x60\x22\x4e\x00\xd8\xea\x07\x2b\x33\xf7\xd3\x64\x70\x72\xfa\x98\x9e\x9c\x1e\x1d\x01\x41\xcc\x4e\x27\x60\x0b\xa5\x24\x3a\x47\x0c\x91\x69\x19\x01\xa9\x23\x27\x79\x3a\xa2\xc4\x2e\x8b\x91\x4b\xb2\x97\xe0\x59\xe4\xf5\xd2\x5a\x23\x0b\x71\x0b\x57\x08\xbd\xdf\xc1\x83\x85\xa0\x87\x04\x36\x06\x09\x18\xd5\x77\xeb\xa8\xd3\xb4\x58\x7b\xc6\x50\x50\x58\x85\x32\xcc\x06\x9e\xb5\xaa\x3c\x60\x95\xe7\x68\xed\x91\xcc\xb6\xd0\x1f\xe6\xde\x29\x42\x5c\xc8\xad\x62\x65\xd4\xcc\x3c\xb9\xb5\xd3\x51\xe9\x3a\x75\xf2\x79\x21\x4c\xb3\xda\x1e\x6a\xf6\x03\x41\xd5\x5b\x65\x71\x14\x6b\x7f\xc7\x4c\x52\x9d\x40\xd4\x98\x5b\x12\x00\xf4\x2b\xee\xb0\xea\x89\xd9\x80\x35\x67\x41\xd6\x9c\x17\x41\xb8\x71\x5f\x05\x6a\x5a\x27\x8a\xdb\x36\x6f\xc6\x1c\xa6\x32\x41\x37\xcc\x92\x3a\xfe\x5a\x57\xd5\xfc\x29\x73\x05\xb9\xaf\xda\x0a\x73\x4a\xe0\x82\x71\x2d\x78\xf6\x7f\x58\xbe\x3d\x03\xf0\xa7\xf8\x6f\x42\xba\x2d\x5f\x77\x52\xe5\xc2\xcd\x38\x39\xcc\xf5\xb1\x50\xdc\xb8\x1e\x44\x04\x5a\xcf\x44\x45\x2a\x38\x75\xc5\x38\xa5\x49\xc1\x99\x9b\xa5\x4e\x95\x73\x3b\x95\xff\x08\xbe\xa8\x10\x9d\xc2\x5c\x77\x65\x56\xfa\xa5\xdd\x9f\x5d\x80\x2d\x77\xb5\x0d\xd0\x68\x96\xe4\xb6\x69\x99\x56\x0f\xfc\x9b\xeb\xbf\xe6\x94\x9c\xae\xb0\xf1\xc2\x0b\xec\x73\x61\x3f\x2a\xdd\x81\x11\xa8\x1e\x1c\x43\x75\x4d\x0c\x4e\x5a\xce\xd3\x0b\xc5\xac\x03\x39\x2c\xa4\x27\x42\xbd\xcb\x3b\x5c\x27\xb4\x36\x81\x06\xcc\x54\x61\xc0\x8e\x00\x4e\x2b\xdd\xc9\x8b\x00\xe7\x09\xad\xa6\xb2\x68\xed\x48\xcc\xd0\xed\xc6\xf3\xcd\x66\xbd\xd9\xa4\x9b\x4d\x27\xef\x76\x3b\x53\x00\xca\xea\xb2\xe2\xd0\x96\x1a\xcb\xf5\xab\x3e\x36\x28\xb5\xd9\xcd\x2c\xe5\xe9\xb0\x36\xf8\xe1\x3b\x6d\x82\x1a\x8e\x7f\x68\x63\x41\x38\x99\x2f\x74\x04\x05\xa2\x33\xbb\xda\xf0\x09\x62\x48\x3f\xa5\x1a\x6d\x55\x9d\x9c\x95\x5f\x2f\x44\xfa\x31\x7e\x99\x64\x62\x96\x70\x96\xac\x37\x9b\x69\xb7\x5b\x93\xaa\xc1\x4b\xd3\xf0\x64\x20\x4f\xc6\xbc\xdb\xed\x88\x11\x2c\x37\x9b\x99\xce\x81\xb0\x32\xf9\x1c\x6a\x66\x89\x4b\xd4\x5a\x0e\x4f\x4d\x58\x45\xdc\x2d\xaf\xb5\x5c\xe8\x95\x38\xc7\x78\x1e\xcb\x91\x8a\xce\x6e\x14\x33\x73\x87\x7d\x55\xa5\xd7\xf8\x42\xf4\xba\xf3\xec\x4b\x6d\x31\x6f\x70\xb5\x5c\x1f\x7c\x69\xad\x66\xfa\x46\x66\x65\xa5\x6b\xe9\xee\xf9\xf0\x3d\xf3\x91\x3e\x02\x52\x19\x63\x0c\x80\x3e\x13\x12\x77\x32\x5e\xef\x47\xe3\xb6\xb2\xd2\x16\x79\x18\xaf\x2d\x64\x64\x05\xfd\x93\x61\x70\xdb\x7f\xe4\xbc\x14\x88\x65\x1f\xc5\x0e\x4a\x87\x05\x32\x37\x8c\xcc\x4e\xdc\x5d\x3f\x91\x83\x91\xb5\x38\x7f\x76\x90\xdf\x63\xf2\xfe\x5b\x46\x2f\x76\xa0\x6b\xf7\x24\x85\x71\xda\xc8\xde\x26\x77\xa7\x0e\xc1\x5d\xa8\xdb\xdd\x85\x9f\x0a\xdd\x54\x03\xdc\xa3\xf0\x20\xd9\xda\x60\x34\x68\x24\xfe\x18\x96\xde\x62\x87\x81\x2b\x27\xd9\x28\xa3\x62\x36\x53\x69\x42\xd2\xf6\xd1\xb1\xc2\x49\x08\xeb\x4b\x68\xad\x22\xeb\x2e\x9c\x42\x8c\xea\x3d\xef\xf7\x45\xfe\xe0\x32\x39\x80\xfa\x09\x4c\xef\x30\xc2\x52\x8d\x0d\x0a\x0c\xeb\xaa\xc9\xea\x14\xab\xd8\xdf\x59\x01\x71\xe9\xbf\xb5\xec\x3e\xf4\x76\x1f\xe5\x0e\xcd\x04\xc1\x92\x63\x83\x2b\x4d\xb3\x74\xa6\xa7\x8b\xa4\xb0\xe8\xd3\x89\x87\xbc\x3c\x44\x56\xb9\xac\xe6\x37\xeb\x76\x3b\xab\x51\xe7\xc2\x3a\x43\x6b\xf4\x8b\xbd\xa7\x15\x73\x44\xbc\x49\x80\xe1\x45\xa8\x8e\x3c\x46\xc3\x90\x90\x82\xab\x97\xab\x6e\x79\xf6\x83\x0e\x3d\x73\x61\x89\x3d\xfe\xb1\x46\xac\xcc\xba\x5b\xfe\x63\xdb\x92\x2f\x94\x1a\x11\x69\x03\x5d\xc9\x40\xf8\x9f\x92\x72\x1d\x73\x33\xce\x9d\xc7\x4e\x35\x12\xd9\x5f\x8c\x21\x57\xd8\x51\x22\xb0\xd0\x18\x1c\x3c\x95\xc5\xbb\x68\x8f\x43\x65\x18\x68\xe1\x04\x6f\x36\x3c\x60\x01\xa1\x29\x94\xa6\x2b\xaf\xe9\x6a\xed\x58\x66\x2b\xce\xc5\x9e\x97\xfc\x96\x8f\x01\x6a\x6e\x9a\xa2\x41\xea\xbc\x04\xe4\xc9\xcf\x71\x5e\xf3\x12\x20\x5b\x69\x8a\x50\x21\x53\xd4\x98\x86\x17\x64\x8a\x09\x0a\x95\x42\xaa\xc9\x8b\x6c\x1e\x09\xd2\x6a\x08\x50\x6e\x97\x1c\x8f\xb0\x74\xa7\xf4\x8d\x1d\xe2\x35\xcc\xc1\x10\x27\xb7\x5f\x26\x28\x20\x40\xbc\x87\xc2\xa9\x89\x89\x59\x05\x08\x5a\x89\x8c\x99\x93\xd8\xe8\x19\xb9\x04\x4b\xc6\xed\x29\x62\x9f\x85\x8f\x2c\xdd\x7b\x64\xe1\x3a\x70\xce\xac\x67\xb7\x7b\xca\x60\xfa\x31\x07\xc4\x3e\x17\x51\xa8\x9c\x17\x8a\x00\xcb\x3f\xc7\xe9\xae\x43\x52\xbc\x17\x85\x8e\x8a\x95\xc3\x4a\x47\x85\x5a\x66\xc6\x01\x52\x7d\x1d\xc2\xa0\xc9\x76\xda\x67\x51\x66\x23\x16\x41\x22\x3a\x09\x30\x02\x66\xda\x23\x54\x55\xf2\x00\xad\x3b\x38\xcd\xca\x2f\xa5\x85\xe6\xa5\x55\x45\xf8\xa7\x59\x16\xeb\x48\x40\x2b\x84\xde\xcb\x9f\x40\xbd\x25\x99\xf2\xea\xd9\xf1\x93\xe5\xdc\x6c\x4d\x96\x8b\x80\x5d\x86\x74\x8d\xf4\x9f\xf6\xd5\x4e\xe7\x88\xc7\x1c\x46\x38\x97\xf9\x9a\x30\x59\x44\xb0\x33\x00\x30\x8b\x7f\x40\x31\x31\x47\x99\x01\x83\xf7\x78\xff\xac\xc4\x11\xb3\x9a\x27\xfd\x53\x13\x66\x10\x83\x51\x7c\x58\x5f\xfa\x9d\x9f\x55\xdf\xf9\xbd\x07\xd9\xf2\xf9\xe4\x00\x0c\xe3\xb8\xda\xaa\xfe\xa9\xdf\x19\x23\xe8\x76\x77\x8f\xb2\x34\x46\xb8\x6f\x28\x62\xeb\x66\x78\xa6\xd2\x60\xf9\xdb\xe7\x45\x8e\xf3\x90\x94\xd7\x42\x3e\x7b\xeb\xd3\x10\x10\xa0\x2a\x27\x29\x00\x2f\xc3\xc6\xe7\x56\x7e\x56\x8f\x34\xc6\x68\x26\x0c\xd6\xe8\xed\x5a\x6e\x6a\x3a\x04\xb8\x79\x2d\x52\x11\xfe\x9d\xc3\x6c\x4a\x18\xd8\x8a\xa3\x9f\x71\xc4\xdc\xd7\xad\x2d\x34\xe4\xff\x6d\x7a\x59\x66\x48\x2d\x53\x5d\x96\xb3\x18\x50\x9a\x89\x33\xe3\xd8\xf5\xed\x3a\xcb\xae\xb5\xdb\x7e\xc1\x75\xf1\x02\x39\xa9\x80\xe7\xfa\x89\x50\x1f\xfe\x9f\x6c\x68\x9f\x38\x60\x76\xa7\x9e\x3a\x6e\x72\xdd\xe7\x90\x14\xaf\x8f\x7c\x0b\xa0\xf3\x74\xf8\x8a\x4c\x77\x3c\x1f\xbe\x2e\x40\x02\xfd\xde\xe7\x7c\xaa\x89\x5a\xe8\x0d\x24\x97\xa9\x65\x8c\x27\xb1\x6f\x19\xe8\xe4\xe6\x1d\x40\x56\xbc\xb4\xf0\xc7\xac\x48\x2b\x82\xa5\x8f\x20\xa4\x09\xee\x9b\xe9\xc8\x47\x53\x33\x21\xc9\x6c\xfb\x1c\xbc\xa0\xab\x25\x3c\xe1\xc5\x40\xc9\x8c\xc7\x0e\x9e\xc7\x01\x77\x7a\x90\x25\x36\xa0\xc4\x28\x72\x4d\xe8\xa2\x61\x5e\x44\xbd\x11\x85\xae\xc9\x56\x34\x8c\xdc\x1c\x0c\x91\x3a\x4d\x78\x1e\x47\x8c\x52\xae\xad\xbb\x66\xfd\x3c\xbd\x44\xb3\x28\x49\x92\x72\x12\x1e\xf1\x5f\x39\xbe\x9b\xb4\xd8\xfa\xd6\x94\x12\x8e\xc9\x1a\x6d\xef\x66\x50\xdb\x02\x76\xce\x85\xb8\x2d\xf6\x3b\x83\x14\x88\x13\x3e\xc3\x33\xb1\x33\xf5\xef\x07\x2d\x1d\x1b\x4b\x49\x45\xd0\x1e\xc6\x67\x26\x22\x85\xd4\x2f\xab\xcb\xfa\x53\x9a\xbf\x20\x97\x69\x86\xab\x9c\x41\xc8\x6f\x7c\xe4\x02\xd3\x0d\x65\x02\x63\xc8\xc0\xb0\xae\xcc\xed\x4c\x3e\xb2\x55\x5e\x1e\x8a\x76\xea\x11\x4e\x66\x9c\x2a\x82\x4f\x54\x86\x66\x55\xfb\x6e\x84\x0a\x55\xb6\x85\x67\x02\xb5\x84\xd1\x95\x56\x43\x30\x1b\xa2\x02\x92\x8a\xc9\x9c\x4c\x03\x87\x13\x49\x00\x48\x29\x4f\x93\x92\xe4\x1c\x72\x83\xf8\x7a\xa5\x83\xf0\x43\x3c\xaa\x43\x82\xda\xc2\x1b\xcf\xb4\x07\x3d\xd1\xc2\x43\x6d\x55\x2b\xb5\x0b\x0e\x8c\x6c\xa1\xe1\x90\x6a\xb4\x58\xbe\x51\xb1\x6f\x08\x29\x90\x63\x9a\xe7\x23\xfd\xef\x90\x6f\x61\xb9\x76\x0d\x6a\x87\x2c\x59\x73\x27\xbc\x7b\xd5\x72\x19\x72\x89\x24\xb5\xc4\xc6\x80\x32\x7b\x29\x8c\xc9\xf5\x8b\xea\x0f\xb4\x2d\x9b\xca\x27\x51\xf9\x1c\xda\x9e\x53\xd6\xfe\x2a\x3a\xe2\x52\x83\xde\x2a\x62\x31\x9e\x2d\xd3\xfc\x65\xfd\x64\x5d\x8a\xa3\xa3\x96\xed\x1f\xe2\x16\x0a\x34\x5b\xbb\x74\x3a\x39\x94\x01\xeb\xab\x5c\x39\x18\xf1\x3d\x19\x72\xac\xa8\x68\x1c\x13\x94\x06\x85\xfb\x2f\x4c\x67\x3b\xc6\xe0\x73\x63\x7b\x4c\x78\x25\xef\x9c\xa0\x3e\x26\xd3\x6c\x3d\x43\x52\x7f\x8e\xa5\xdb\xa6\x7a\x08\xc7\xd5\xbc\x59\xb2\xef\x92\x84\x2a\xd3\x68\xe1\x79\x1c\xd4\x30\x83\x1b\x52\x4a\x05\xac\x58\xf5\xe2\x15\x8c\xa8\x07\x68\x15\x1c\x53\xf5\x43\xc7\x6c\x92\x04\x3b\x53\xa0\xdc\xc4\x5d\x74\xeb\x3b\x73\x68\x35\x8f\x5e\xb8\x5a\x10\xca\x26\xb8\x52\x5a\xb2\xba\xf5\xa2\xc4\xca\x25\x15\x08\x41\xf1\x32\x82\x32\x2a\xbe\x3b\x84\x38\x21\x91\x39\x6e\xc5\xf4\xb9\x27\x66\x6b\xdf\x57\x6b\x7e\x2e\x15\xaf\x3a\x33\x31\x49\x8a\x24\xb7\x5e\x85\x28\x5d\xad\x32\x3c\x95\x7a\x20\x71\xc8\xfb\x4e\xef\xea\xcc\x12\x89\x19\xc5\x6f\x9b\xde\xaa\x5e\x56\x37\x86\xb1\xe6\xc1\x83\x39\xcd\x1b\x28\x99\x4d\xf3\x42\xeb\xa8\x75\x9c\xe5\xb4\xbd\xdf\x96\xf0\x33\xf4\x43\xd0\x5a\x61\x0d\x95\x1e\x31\xa5\xe1\xd1\xae\x3c\xbe\x12\x37\xd7\xb8\x0b\xd7\xde\xce\xaa\x47\x83\x8e\x8c\x5b\x18\xac\x7a\xc6\xe0\xce\xf0\x6c\xa8\x2e\x9d\x61\xd8\xf1\x66\x03\x2d\x1e\xb6\x83\x09\xf9\x4d\x3a\x36\xda\xe2\x88\xa3\x6d\xbd\xb7\x85\x8c\x14\xe2\xf8\xe3\x55\x1c\x38\x1a\xcc\x38\xe8\xf3\xd1\x78\xd2\x2d\xbe\x23\xad\xb2\x9a\x72\x04\x94\x2a\x6e\x97\x8f\x49\x65\x22\x75\xba\xd7\x61\x00\x31\x5a\x8a\xba\x40\xfc\x9b\x6b\xf7\x59\xa4\x0a\x27\x40\xdc\xeb\x9f\xef\x15\x79\x77\xb9\x2a\x41\x7b\x77\x5a\xd4\x97\x2b\xcb\x55\x92\x57\xa3\xe2\x28\x02\xb6\x30\x50\xbb\xfe\x46\x09\x6c\x88\x78\x5c\x3c\x17\xb0\x1d\xed\x9c\xa7\xc5\xf0\xc4\xc0\x16\x5a\x6f\xab\x9d\x16\x13\x55\x44\xc3\xac\xea\xc6\xd5\xd7\x59\x26\xc5\x82\x55\x89\xf0\x21\x41\x57\x4f\x4d\xc8\xd6\xaa\x2a\x85\xf2\xa3\x23\x87\x5f\x53\x6c\x48\x23\xd1\xb1\xcc\xba\x54\xf7\x3b\x2f\x9f\xfb\xf2\x56\xcb\xf1\xbf\x4c\x57\xda\x33\x06\x16\xa2\x41\x3d\x8f\x52\xf5\x20\x82\x24\x61\x63\x2e\x2f\x0c\x31\x72\x1a\xd1\xf8\xdc\x5e\x8e\x57\x57\x04\xb1\xb2\xa0\xd9\x49\x92\x58\x92\x50\xb5\x33\x91\xf5\x0d\x3a\x12\xf2\x74\x45\x6d\x41\x60\x24\x0f\x50\xa4\x2d\x1c\x45\xaf\x09\x51\x54\xc4\x05\xa8\xdc\xcc\x34\x29\xd8\x6c\xaa\xf0\x3d\x4a\xd1\xbc\x23\x0f\xae\xec\x58\xab\xd4\xc4\x92\x08\x04\x50\xf5\x3f\x72\x87\x45\x47\x4c\x3a\x18\x87\xe6\x4b\xc1\x50\x55\xf5\x74\x27\x75\xe3\x18\x53\x39\x6f\x30\x14\x93\x1d\x3b\x9e\x54\x41\xe8\x45\xb1\xf1\x60\xd8\x09\xdb\x05\x27\x7b\x11\xb2\x81\x73\xfe\xf7\x1d\x8d\x92\xd7\xd8\xdd\x9d\x8e\x02\xf0\x27\x3b\x20\x4e\x17\x9f\xe2\x8c\xf8\x6a\xe3\xd4\x21\x1d\x14\x46\xda\x09\xee\xad\x1d\x42\xf8\x14\xa5\x23\x36\x4e\x27\x35\x83\x8e\x8e\xd2\xc3\x0e\x52\xea\x1f\x24\x3d\x86\xa8\x0e\xbe\xad\xd0\xf0\x24\x59\x78\xfa\x20\x5d\xe1\x2c\xd3\x46\xce\xb7\xf1\x10\x0d\xfa\x43\x16\xb4\x35\x80\x24\x6d\x10\xa3\x90\xe7\xa3\x43\x95\xcb\xae\x8e\x45\x91\x55\x9d\x49\xb1\xc2\xa8\x0d\x0a\x1a\x2e\x45\xd5\x3a\x49\xe3\xd8\x9a\xaa\x87\x1c\x3d\x4d\xa2\x5c\xe3\x71\xb4\x43\x14\xe1\x5e\x69\x61\xe1\x1e\x70\x0c\x96\xf9\xfe\xa4\x52\xea\xc7\x40\x9f\x8a\xa7\xaf\x2d\x76\x77\xa5\x1c\xbd\x35\x34\x05\x58\xa3\xa4\x92\xe1\xb0\xfc\xa4\x50\x31\x68\x99\x6a\xc9\xc0\x2e\x65\xbd\x64\x51\x59\x3b\x7f\xdf\x8b\xc5\xdb\x67\xf2\xef\xcd\xd6\x07\x52\x5e\x0b\xbf\xb4\xc1\x62\xf8\x0d\x76\xae\xc6\x19\x67\x78\xb1\x40\xec\x19\x9a\x23\xc6\xd0\xec\x9d\xfa\x99\xfb\xeb\xb2\x75\x9c\xb9\x73\xee\x1b\xa6\xd1\x84\x94\x75\x7a\x69\x42\x1c\x8f\x0c\xcf\x52\x25\x05\xb7\xf5\x05\x1a\xb3\x49\x2c\x4d\x47\xc0\x16\xc0\x2c\xd1\x4f\x30\x29\x80\xd3\xc4\x7b\x52\x49\xc9\xac\xad\x02\x16\xb6\xd3\x73\xba\xe6\xed\xe8\x88\x15\x0e\x50\x62\x06\xf2\x81\x87\x86\xec\x59\xa6\xca\x9e\x85\x56\xed\x59\x3c\xa3\x9f\x3d\xd2\x39\x86\x29\x5c\xcb\x08\xac\xb1\x7c\x2d\xca\xa4\xc9\x0b\x82\xa4\x8f\x67\x82\xc9\xb3\x62\x7b\xb7\x1b\xaf\x13\x6c\x7f\x02\xa9\x2c\x55\xfa\x3a\xde\xf7\x34\x7c\x31\xd5\x56\x1a\xe9\x16\xc0\x75\xb7\x6b\x5e\x95\xb4\xe9\x86\xc0\x0b\x06\xca\x70\xbd\x15\x2b\x44\x7d\x67\x24\xa5\x13\x44\x6e\xec\x2b\xdc\xd7\xfa\x39\xa9\xa1\x19\xc5\x2c\x89\x4c\x8b\x28\x49\x84\x00\x4d\xe7\xed\xac\x8f\xd4\xba\xaa\xe8\x8f\xa3\xd2\xef\xb8\x98\x19\x18\xaa\x10\x92\x12\xd3\xc9\x70\x9f\xcb\x18\xf5\xd5\x37\x31\x9f\xb2\xaa\x31\xa6\x90\x41\x04\xc0\xd0\x29\x52\xba\x22\x0a\x85\x08\x23\xd5\x48\x68\x0b\xa7\x8e\xd5\xff\x9a\x97\x84\xd1\x31\x53\x19\x52\x94\x45\x49\x4c\x92\x8c\x4b\x61\x0d\x6c\x36\x31\x09\xc6\xf0\x2c\x51\x77\xc9\x4e\xb3\xfe\xbc\xd0\x9a\x45\x17\xf8\x03\x26\x92\x98\x43\x9c\x10\x15\x89\x27\xcd\x73\xa5\x63\xd1\x47\xfe\x95\x0d\x2c\x80\x41\x8b\xf6\x19\xa2\x2b\x44\x9e\x8a\x6a\xf1\xcd\xd9\x19\xce\x5f\x4a\x18\x9d\x01\x3c\x3b\x53\xe0\xf0\x16\x40\xc1\x1d\x2f\x70\xce\x91\xe8\x44\x62\x96\xe8\x88\xc3\x22\x76\x4b\xa6\xc2\x24\x6c\xd5\x0c\x60\xa7\xe0\x4c\xd6\x59\xa6\x99\x13\x3b\x98\xe2\x82\x75\xbb\xb8\xbf\x4c\xf3\x57\x57\xc4\x66\x0b\x89\x6c\xa1\x90\xf3\x62\xa7\x72\xc2\x80\x4c\x4c\x93\x10\xab\x7d\x29\x96\x37\xf3\xe3\x34\x54\x96\xca\x5f\x26\x33\x03\xb0\x45\xfd\x1d\x0f\xda\xc9\x77\x08\xa2\xbe\x0e\xbb\xbf\x80\xa8\xef\x61\xa7\x44\x86\x11\xb6\x9a\x8f\xe4\xbf\xc5\x2f\x59\xf0\x4a\x14\xbc\x62\x33\xc4\xd0\xec\x2d\xe2\xc9\x8f\x10\x19\x6c\xa1\xaa\xa6\xc5\x87\xa2\xfd\xb2\xf8\xa8\x04\xdd\x24\x87\xa8\xef\x0e\xe7\x9f\xc8\xff\x60\x42\x38\xfc\x58\x7c\x57\x69\x94\xb8\xfc\xed\xe4\xbd\xfa\x59\xd6\xa0\x54\x29\x82\x93\x7f\x42\xd4\x37\x2f\x45\xc9\x37\xce\x0f\xb7\xb7\x6f\x45\x1b\xe9\x95\x99\xa4\x02\xe0\xd9\x39\x26\xb3\xe4\x27\xf1\xd7\x62\x9d\xb2\x59\xf2\x0f\xf1\x27\x95\x43\x7d\x91\x9f\x66\xf8\x12\x25\x7f\x83\xa8\x3f\xa5\x48\x9a\x74\x25\x5c\x00\x98\xe1\xf9\x5c\xc1\xfb\x0b\x34\x77\xca\xb9\x67\xc9\xb5\xfd\x2a\x7e\xbe\x53\xa9\xd3\x93\x4b\x88\xfa\xb2\x13\xeb\xd3\xa5\x06\xf2\x33\x44\x85\x3c\xf8\xd2\x9e\x8c\x73\x88\xfc\x6c\x5b\xc9\xbb\x52\x82\x0b\x39\x6f\x51\xf0\xb2\x9c\xf9\x42\x7c\x7c\x5a\x9b\xba\x26\x3a\x3b\x43\xf9\x4b\x2a\x68\x61\x04\x6f\x64\xf2\x9b\x61\x67\x20\xd1\x94\xaa\x1b\x47\x7f\x96\xf1\x07\x7b\x02\x9d\x3d\x90\x7c\xdb\x03\x4c\x66\xe8\x43\x04\xc7\x11\xfa\xb0\xa2\x8c\xe7\x11\x0c\x54\xea\xad\x18\xbe\x4c\x39\x8a\x26\xd0\xbf\xec\xd1\x3a\x47\xed\x9c\x33\x3c\xe5\x51\xeb\xd0\x71\xd5\x4f\xc4\xb0\x8e\xf0\xa6\x48\xf2\x23\xae\x79\x38\x4a\x0d\x57\x3b\xbf\xdd\x05\xb1\xba\x11\x8d\x81\x57\x9b\x6e\xf7\xac\xe9\x25\x62\xb9\x40\xef\xce\xaa\x4e\x3c\x32\xf1\x71\xcb\x86\xfa\x7a\x7d\x6c\x1a\x76\xfb\x21\x7a\xd4\x3f\x7e\xd8\xff\x3a\xda\x82\x56\x79\x78\xe2\xc8\xa5\x9c\xb2\xfc\x81\xa0\xd1\x94\x20\xc2\x77\x6d\x7e\x51\x7d\xcd\x71\x26\x1a\x65\x59\xba\xca\x51\x4f\x06\xdc\xd9\x51\xd1\x7e\x28\x1d\x16\x41\x4e\xbc\x79\x17\x71\x6b\x3c\x74\xe8\xae\x53\x55\x69\x6e\x85\x31\xb4\x8d\x11\xd8\x6c\x2a\x8e\xad\x9d\xf8\xed\xf5\xc5\x39\xcd\xfa\x98\x23\x39\x8c\x36\x26\x6d\xb5\xc4\xb2\x41\x34\x56\x58\xa0\x7d\x6a\x04\x8c\x49\x94\x24\x46\x43\x59\x24\x3b\x34\xc1\xbd\x54\x42\x43\x64\xa5\x40\xed\xb6\x23\xe3\x6e\x76\x06\xf2\xf1\x0a\x52\xb3\x11\x9c\x5d\x5b\x66\x31\x85\x79\x82\xc6\xa5\xc1\x4c\x62\x70\xd2\x89\x49\x12\xa7\x49\xde\x27\xe8\x03\x8f\x01\xe8\xcf\x28\x51\x59\xfb\x14\x5b\x9b\xf6\xe5\x5e\x03\xd8\xe1\x9b\x8d\x09\xdb\xd9\x49\x12\x0e\x4e\x44\x97\xe0\x64\xab\x5c\xb3\xd6\xe0\x06\x8b\x21\xd0\x64\xbd\x9d\x63\x92\x66\xd9\xf5\x8d\x18\x00\x31\xd6\x7f\x42\x28\x12\x43\xde\x6c\xcc\x5f\x31\xb0\x35\x25\x99\x55\xd4\x9f\x6e\x8b\x0c\x5d\x72\x1d\x9d\x65\x35\xfe\xd5\x04\x5d\xb5\xdf\x5d\xaf\x90\x7e\x66\xd2\xcc\x45\x3b\xe5\x1c\x5d\xac\x78\x9b\xd3\xb6\x94\xb6\xd6\x53\xbe\x66\xa8\x4d\x28\xe9\xc9\x29\x9f\x67\x05\x2f\x14\x81\x6d\xec\x30\x19\xd8\x61\xf6\xf6\xed\xf9\x8d\xff\x2c\x1e\xf0\x10\x72\x83\xe9\x72\xe9\x1d\xc4\x27\x3a\x94\xae\x99\x5a\xf9\xc0\xc8\xae\x3e\xd1\x61\xf1\x1e\xb8\xe6\x8c\x5e\xc4\x08\x94\xfa\x6f\xbe\xb2\xf9\x8a\xa1\x74\xb6\x6b\x51\x6f\x81\x42\xb2\xf4\x9a\xae\x79\x82\xfa\x3c\x5d\xa8\xa4\x65\x45\x78\xd1\x6f\xb0\xb4\x49\xc8\x13\xa4\xd8\x20\x51\x1e\xfa\xe6\xfd\x70\x01\x98\xfb\xa0\xb8\xb8\x78\x00\x85\x30\xae\xd1\xc2\x4f\x98\x2f\x5f\xa7\x2c\xbd\xc8\x81\xa7\xf9\x2f\x3c\x70\xac\xe8\x6f\xbc\x2e\x1e\xb9\x71\xfa\x4c\xe1\xf8\xd1\x64\xe4\xfe\x18\xaa\x00\x85\xf1\x00\x72\x83\x0e\x81\xe0\x3b\x3b\xa8\xc2\xb6\x55\x26\x1a\x81\x22\x7f\x4b\xa5\xb0\x15\x5a\x19\xff\x88\x52\x30\xa2\xc6\xae\x63\x38\x9e\x6c\x75\xbc\x86\xf1\x60\x32\x8a\x22\x13\xe3\x97\xc1\x68\x18\x01\xf3\x4b\x14\x82\xa1\xcd\xcc\x15\xe8\x43\x63\x03\x00\x55\xf6\xba\x52\x76\x3b\x00\xc9\x16\xb8\x43\x4b\xa8\x76\xc7\xfa\xe2\x96\xbb\x72\x86\xdc\xe5\xae\x14\xb6\x42\x87\xae\xd1\x72\x5b\x27\x9d\xfa\x45\x57\x82\xa4\xf8\xe4\xad\x7d\xa5\xc3\x26\x6b\x5f\x88\xea\x05\x26\xab\xae\xfd\x1b\xf4\x8f\x35\x66\x68\x56\xd9\x03\x63\x9f\xef\xaf\x20\x2b\xb0\x0a\x80\x32\x70\xbb\xfb\x45\xaf\x9a\xf3\x69\x8c\x26\x2d\xd2\x5f\x13\x19\xc9\x59\xeb\xcf\x08\xc4\x31\x75\xd2\x2e\x7a\xb5\x13\x02\xd9\x16\x22\x21\x4d\x14\x57\x37\x6d\x29\xff\xf1\xdc\xd9\xac\x3c\x02\x2d\xef\xae\xaf\x5b\x3a\x0e\x70\x70\x47\x83\xdb\xa6\xc4\xa9\xa9\x68\x12\xb8\x73\xc1\x8b\x35\x6d\x29\x4f\xf5\x03\x56\xd2\x11\x3b\x49\xcc\xe1\x31\x18\x0f\x0a\x3f\x23\x17\x4b\x6b\x4c\xc7\x64\x08\x10\xfd\x4b\x0e\xc3\x94\xcc\x5b\x16\x31\x06\xd5\x3f\xe5\xab\x02\xb9\x4b\x8b\x00\x54\x6f\xf4\x48\xd9\x02\x08\xf1\xaf\xb8\x31\x6c\x52\x0d\xf1\x62\x1f\x16\x6b\x06\xac\x87\x22\xc6\xbb\x0d\x30\x9c\x65\xce\xcb\x70\xe9\x0f\xe4\x46\xf4\xe6\x18\x65\xb3\xde\x0c\xe5\x53\x86\x57\x82\x1f\x6b\xc6\x8e\xda\x63\xcd\x9d\x63\xcd\x43\x4a\x0b\x45\x3b\xbb\xdd\x28\x97\x7f\x94\x0b\x2c\x51\x1d\x85\xd4\x3b\xaa\x26\xda\x86\xde\xa8\x50\xb7\xbb\xa3\x3b\x19\x34\x5d\xf1\x1a\x94\x25\x49\x62\xbf\x77\xcc\xdf\xc5\x12\x8e\xcc\xd8\x86\xb6\x43\x81\xa5\x0a\x2e\x84\xdd\xf3\x9e\xff\x82\xbc\xa7\xe3\xe1\x25\x0e\xc0\x23\xa9\x82\x1a\x0f\x26\x90\x26\x64\x7c\x3c\x81\x69\x42\xc6\x0f\xed\x95\x7c\x24\xad\x66\x4c\x80\x8c\x48\xed\xa1\xd8\x38\x1e\x63\xa0\x9c\x68\x3a\x49\x82\xc5\x45\x90\xdb\x56\x1c\x59\xda\xed\xc6\x5e\xfd\xb4\xa8\x9f\x76\xbb\x51\x21\x80\x46\x98\xb4\xc5\x17\x97\xd2\xc8\x6f\x9b\x8d\x35\x44\x48\x6f\xc5\xe8\xe1\xfc\x5b\x81\x08\x9e\x59\x3c\x90\x10\xf9\xd5\xf9\x10\xb8\x82\xa4\xc2\x2c\xeb\x58\x29\x31\xf2\x11\xec\xb1\xbf\x38\xd5\x6b\xcb\xbb\xdd\xc8\x1e\x6d\x31\x25\xde\xed\x76\x78\xff\xec\x0c\xe7\x4f\x75\x94\xc7\x67\x06\x93\x89\x7b\xd5\x04\xd3\x95\x85\xd1\x4f\x2d\x67\x7b\x30\xab\x53\xf4\x30\x92\xba\xc7\x25\x34\xa5\x3e\xc6\x8d\x26\x57\x08\xd0\x8d\x04\xf3\x7d\x58\xff\x6e\x55\x36\x28\xc4\x59\x86\x0e\x50\x80\x7e\xb2\x2a\xfd\x24\x0e\xfd\x64\x26\x72\x1b\x93\x21\xdb\xc8\x18\xbb\xf4\x13\x9b\x13\x27\xf9\x25\xf7\xf8\x82\x98\x80\x11\xd2\xbc\x8f\x4e\x68\x4a\x40\xe8\xfd\x86\x57\x07\xe0\x05\x92\xb3\xa1\xe3\x8a\x98\x71\x81\x01\xb4\x4b\x7d\x31\xc3\x5d\x8e\xc9\x04\xc8\x5c\x8e\x68\x17\xe3\x92\x04\x03\x68\xdc\x6a\xb4\x2a\x2a\x06\x2f\xc2\x61\x14\xa3\x25\x55\x76\x63\x27\x64\x52\xbf\x0e\x75\x1b\x51\x5e\x07\x62\xd7\x81\xa9\x75\xa8\x9c\xf5\x07\x54\xe9\x99\x7b\x39\x0a\xe8\x9e\xee\xf0\xea\xea\x84\x03\x86\x32\xd6\xa4\xef\x06\x37\x71\x80\x84\x7b\x8f\x37\x1c\x80\x20\x0d\x7a\x9a\x12\x42\x79\x5b\xd0\xe7\x76\xda\x96\x37\xaf\x9d\xe6\xed\xd4\xae\x76\x04\xb6\x40\x47\x3a\x05\x26\x15\x8d\xca\x33\x50\x08\x1d\x95\x98\xfc\x8e\xb1\x93\x68\x22\x0e\x52\xc1\x14\xc8\xf6\x95\x08\xfe\x2a\x52\xd2\x14\xbd\x45\x61\x2b\x3b\x59\x29\xc3\x39\xb7\xb1\x81\x73\xfc\x4f\x94\x0c\x7c\xd8\xe9\x2c\x9c\x89\x8d\x9b\x88\xf8\x8b\x35\x9e\x59\x4b\xbf\x72\xc7\xc6\x22\x4a\x26\xb5\xd1\x31\x64\x84\xec\x48\xc6\x6c\x22\xc4\x27\xc1\x08\xdb\x9c\x41\xa2\x77\x6c\xde\x6f\xd5\xf8\xfc\xb1\x28\x5b\xfd\xbb\x1a\x8e\xd8\x52\x41\x3b\xc5\x20\xc0\x8d\x4e\x04\x26\x7e\x68\xdd\x04\xee\xcb\x73\xf8\x6a\xee\xd8\x58\xd2\x27\xbd\xe3\x6e\x17\xf7\xf3\x95\x14\x31\x29\x34\xf9\x31\xf4\xe0\xf5\x95\xe9\x0c\xf4\x5e\x76\x8e\xfd\x19\xd4\x27\x2e\xb6\xd1\xeb\x04\x24\xbf\xd1\x32\xf5\xd1\x28\x9e\xc7\x5e\xed\x22\x9f\x94\x3a\xdb\xe5\x85\xb0\x0b\x6f\x1a\x39\x2b\x32\xe6\x13\xbf\x33\x6d\x79\x59\xe9\xb0\xe3\x76\xe8\x5a\x4a\x9a\xb5\x7c\x98\x24\x15\xdc\x01\x76\xa4\xef\x47\x8a\x85\x2d\xb0\xc7\xf1\x44\xbe\x8b\xe9\xf0\x51\xa6\xa5\x46\x64\x6e\x78\x1f\x14\x73\x81\x4f\xb7\xfe\xc0\xb9\x7e\x73\x09\xe8\xe9\xcd\x30\x8d\x62\xa0\x74\x7b\xe8\xea\xba\x9a\xe4\x89\xa0\xab\x58\x1f\x4c\x87\x58\x17\x01\xbf\x64\x04\x32\xd4\xec\x92\x39\x95\x00\x2a\xad\x7e\x68\x47\x0a\x2c\x2a\xaf\xa7\xac\xa1\xa7\x27\xc3\xca\xcb\xc3\x66\x77\x43\x88\xac\x68\x1b\xbb\x4c\x09\xaf\xe2\x57\x86\xc8\x0c\xb1\xde\x05\x9d\xc9\x00\x05\xf9\x83\xe2\xaf\x19\x9e\xf5\x30\xc9\x11\xe3\x1f\x21\x07\xde\x5a\x40\xfa\xdd\xe8\x5a\x1b\x4a\x12\x1f\xff\x66\xe3\x3e\x93\x9f\xe5\x88\xbf\xd4\x3b\xa5\xdf\x49\xab\xa6\x19\x37\xd3\x74\x95\x9e\xe3\x0c\x73\x8c\x72\x1d\x24\xe2\xec\xc2\x6f\xf5\xd4\xa9\x12\x47\x8f\xfa\xc7\x8f\x22\x13\xf1\xdc\xc0\xf7\xbd\xf5\xe4\xac\xb2\xac\x5a\xe8\x69\x08\x79\x4c\xfa\x2b\x9a\x4b\x73\xea\x34\x03\x27\xf1\x00\x4a\xf5\x65\xcc\x20\xd6\xd7\xed\x18\x40\xd2\x27\xe9\x05\x9a\x81\x2d\x54\xf6\x31\xe1\x1e\xb5\x51\x56\xb0\x70\x5b\x18\x53\x7c\x46\xf2\x2c\xd5\xa8\x66\x77\xd8\xc1\x97\x4a\x4d\xf6\xfe\x52\xdd\x5f\x2a\x0f\x30\xca\x90\x58\x6f\xe5\x27\xbe\xf3\xa2\x49\xaf\x3c\x5d\x3d\xe1\xf5\xb7\x07\xb9\x1e\xb4\xba\xbe\xe0\x75\x62\x16\xbe\x9c\xc4\xbd\x9c\xcc\x5e\xce\x3f\xd4\x05\xbc\xc2\x59\xd6\xb3\x89\x42\xef\xaf\xe0\xfd\x15\xfc\xa4\x57\x70\x27\x01\xbb\x9b\xfb\xf9\x85\x5d\x41\xa5\x74\x4a\x7f\x4d\x3f\x14\x8a\x26\xed\x79\x7f\xff\x9e\x50\xff\x9e\xb0\x43\x24\xf2\xb3\x14\x16\x1a\xe0\xc4\xfd\xb1\xd9\x74\x8e\x61\xe5\xdd\x11\x46\xf2\xe6\x45\x98\xb4\xd5\xbb\xe4\x15\xc3\xdc\xbe\x49\xd6\xdd\x5d\xa2\x23\x1f\x6e\x3d\xfd\x77\xe1\x26\xd5\x61\x9b\x8d\x51\x52\x0b\x01\x30\x66\xc0\x5d\xaf\x8e\x59\x2f\x7f\xdd\x4b\x01\x23\xec\x09\xb4\x91\x77\xf5\x31\x14\x07\xac\xbd\x4c\x73\xf2\x15\x6f\x9f\x23\x44\xda\xd2\x2d\x2f\xcd\x70\x8e\x66\xed\x5e\x5b\xda\xfd\xc7\xc0\xab\x21\x8e\x2c\x72\x62\xbb\x48\xac\x3b\x64\x9e\xe9\x88\xeb\xe7\x15\xe3\x24\x5a\x13\x35\xef\x59\x31\xde\x37\x68\x9e\xa1\x29\xef\x76\xf5\x1f\xfd\x05\xe2\x23\xe7\xef\x1a\xcf\x4b\xff\xbe\x89\x8d\x3c\xe9\x54\x90\xb5\xff\xc4\xad\x51\x36\xe4\x85\x76\x3f\x46\x09\x15\x48\xfc\x04\x9c\x38\xb3\x30\x4e\xdc\x86\xb1\xd6\x70\x95\xed\xa7\x81\x56\x68\x36\x63\xe2\x84\xaf\x95\xd1\xb2\x46\xf2\xbf\xaa\x3f\x06\x86\x58\x3d\xd7\x6c\xc5\x21\x14\x73\xd8\x6c\xdc\xb3\x48\x9d\x0b\x47\x4d\x5f\x39\xe2\xaf\xcd\x34\x5e\xcd\x47\xc5\x08\x9c\xaf\xc1\x3b\xd4\x3f\x3b\x93\xf3\x3f\x3b\xdb\x6c\x82\xad\x64\x2c\x46\xef\x32\xa4\xae\x8a\x33\x4e\xc3\x43\x28\xbf\xa3\x55\xfb\x4b\x38\x44\x6a\x86\x77\x45\xa0\x7c\x55\x8b\x8b\xa1\x1c\xef\xc1\x4f\x89\x78\xb5\x1f\x3d\x80\x44\xfd\x45\x63\x0e\xd4\xae\x16\x41\x67\xa4\x59\x43\x0e\xd7\x30\x0b\x25\x07\x91\x23\x0a\xdc\x52\x6e\x8f\x20\x0f\x0f\xef\xad\xb8\x71\x6d\xf4\x61\xc5\x50\x9e\x8b\x59\x5f\xac\x73\xde\x46\x98\x2f\x11\x6b\x9f\x23\x69\x05\xdd\xa6\xcc\x1b\x6f\xcb\x51\xa5\x94\x34\x20\xbc\xdb\x75\x93\xf0\xdd\x38\xb8\x74\xa8\xf7\x01\x41\x83\xa7\x86\x9d\x01\x74\x71\x9a\xd8\xa2\x2d\x80\xbc\xdb\x4d\xb5\x4d\x36\x0f\xe4\xd9\x91\x51\x38\x61\xbc\x36\xb9\x32\xf9\x12\x91\x08\x2a\xd8\x21\x81\x35\x4d\x70\x4c\xdd\xd4\x80\x00\xea\x36\xca\xf3\xd1\x5b\x67\x48\x9c\xa8\xc5\x1f\x96\xda\x91\xed\xc3\x92\xc1\x54\x65\x19\x64\x71\xee\xcc\x6f\x0d\x60\x26\xbf\xc1\x0c\x40\xbe\x8d\x5d\xba\x99\xef\xa1\x9b\x02\x40\x1e\xc1\xf1\xc4\xcd\x65\xb6\xa7\x8d\x7a\xe3\x59\x20\xde\x5b\xa2\x74\x86\x9a\x3e\xe2\xdf\xc9\x5b\x97\x3e\x64\x5e\xb2\x32\xc1\x7e\x7a\x1f\x78\xe9\x71\x5a\x27\xcb\x89\xfd\xac\xb0\x40\x46\xe1\x0c\x47\x76\xe0\xf4\x7b\x7a\x25\x78\xbc\x1c\xc5\x40\x66\x7c\xf2\xbe\x14\xf1\x6a\xd9\x08\x8d\xd9\x44\xbb\xb8\x6d\x1b\x2d\x1c\xce\x7b\xfa\x4d\xf6\xb3\xbe\x11\xaa\x01\x57\x9e\x83\x51\xb3\x41\xaf\x52\x96\xa3\x1e\x43\xf9\x8a\x92\x1c\xe9\x8d\xcf\x3f\xef\x0c\xd4\x66\xaa\x94\xe5\x45\x04\x51\xc7\x64\x2a\x5f\x65\x98\x0b\xac\xc5\xd0\x6c\x3d\x45\x21\x6b\x1c\x48\x12\xae\xeb\x45\xc3\x08\x40\x5c\xd6\x37\xef\x10\xb3\x58\x42\x7e\x63\x41\x8b\x7d\x4a\x41\x0b\x52\x69\x1d\x28\x3d\x91\x8c\x0c\xd0\xa2\x09\xed\x73\x86\x2f\x62\x13\xbf\x31\x2d\xcc\xd5\x4c\x81\xf1\xe2\xee\x76\x63\x34\xa6\x93\x24\x97\xf9\x8c\x98\xd4\x76\x3f\x7d\xf3\xfd\xb7\x2e\x95\xe3\x49\xf4\x0b\xfb\x85\x44\x2d\x5d\xc4\x1b\x9d\xbe\x35\xcb\x7a\x4b\x94\xad\x3e\xe9\x91\x93\x47\xfc\xc7\x37\xdf\x27\x4c\x59\x28\xac\xb3\x4c\xfc\xaa\xde\xa1\x4e\x07\xf5\x2f\xa4\xc9\x09\x97\x73\x5c\xa6\x97\xe8\x6d\x7a\x81\xbe\xa3\x79\x19\x55\x59\x7b\x0e\x71\xd2\x98\x93\xce\x81\xa8\xcd\x9f\xd2\x2c\x49\x54\x6e\x21\xf9\xa3\xdb\x25\xfd\x25\xcd\xb9\x10\xbc\x64\x81\xf9\x21\x0a\xc4\xa4\x55\x6d\xca\xf8\x56\x2f\xe7\x83\xff\x89\x97\x9c\xaf\x36\xe2\x3f\x39\x78\xd0\x72\xb9\x7e\xfd\x5c\x22\x33\xe3\x17\xcc\xa8\xbd\xfa\xdf\xa6\x39\xff\x86\x52\xfb\x94\x35\xa3\x53\x79\x46\x35\x19\x7d\xae\xc4\xc5\x38\x4a\x65\xf4\x92\x25\x43\xf3\x04\x41\x21\x8a\xa9\x8c\xef\x89\x69\xdf\x67\xea\x31\x39\x8e\xd6\x2c\x8b\x80\x5a\xc8\xe2\xf9\xe7\x46\xb4\x1c\x72\x09\x00\x9a\x89\x0e\xb9\x9d\x33\x34\x73\x14\x75\xf4\x9f\x50\x4c\x51\xd4\xa1\x8c\xc3\x55\xca\x97\xba\xdc\xfc\x09\x73\x94\xb2\xe9\x72\x28\x18\x37\xf1\x07\x5c\xa6\xb9\xf8\x25\xfe\xd9\xd6\x60\x34\xf1\x9f\x1e\x53\x09\x80\x7c\x33\x06\xa7\x92\x74\xd9\xca\xfd\xba\x77\x6f\xad\x50\xab\x9d\xd0\xd0\xb4\x83\x59\x61\x83\xb9\x5f\x12\x56\x3e\x40\xf7\xf2\x6f\xbd\xfc\x7b\xb7\xdc\xf2\x1f\x4a\x6e\xfd\x83\x31\xee\xb9\x62\xdc\x7d\xa1\x53\x53\x9f\xea\x99\x7b\x99\xae\x46\x3a\x1d\xb1\xe6\xe3\x5a\x56\x40\x2d\xed\x92\x09\x57\xb5\xd9\xc4\x2c\x41\xb0\x77\x9c\x24\xc9\xb7\xba\x4a\x89\x86\x33\x60\x5f\xf1\xa3\x31\x49\x39\xbe\x44\xed\x29\x9d\xa1\x89\x13\xbc\x01\xa9\xbb\xdf\x0a\x2f\x3e\xba\xc3\x25\x77\xe3\x4d\x98\x3c\xab\xcb\x34\x77\x38\x0d\x29\x39\xab\x68\x9a\xb9\x8c\x6a\x43\xbc\x33\x6e\xef\xad\x10\x8a\xec\xd3\x39\x5c\xeb\xc0\x2d\xee\x4b\xf5\xd6\x27\x71\x81\x6d\x46\x7b\xf6\x98\x40\xd7\x0b\xee\x78\xdf\x8e\xe7\x31\x81\x61\x39\xdf\xd1\xc7\xa4\xee\x4b\x7b\x0d\x41\xd4\x8a\x98\xcd\xa6\x63\x54\x32\x76\x70\x85\xa9\x03\x9e\xc7\x95\xd2\x7e\xbe\x4c\x2f\xbc\x2a\x81\x73\xe6\x26\x35\xec\x28\xdb\x58\xbd\x52\xcf\x52\x8e\x6a\x99\xc1\x4a\x67\xb1\xa8\x5e\x91\xd8\x00\xec\x0c\xb4\x21\x6c\xc1\xa8\x1c\x6f\xb7\x31\x18\x55\x20\xd4\x68\x99\xc6\xe2\xe8\x4c\x5a\x44\x5a\xc2\x58\xbb\x7d\x6e\x22\xef\x12\x74\x15\xdb\xc3\x7e\x8e\xc9\x4c\x57\x11\x47\xc5\xcd\xbb\x9c\xc7\x18\x7a\x2e\x03\x78\x0b\x0c\x34\x99\x70\xdb\x46\xd1\x28\x76\x2b\xf7\xb4\x32\xf9\x5d\x68\x65\x2c\xec\xb5\x43\xe3\xd6\x9f\x51\xe5\x74\x2b\xbb\xd8\xd3\x5f\xd3\x0f\xf2\xa2\x27\x67\xf2\xf7\x8f\x24\x5d\xf3\x25\x65\xf8\x9f\x48\x39\xeb\x87\xec\x1a\xcf\x62\x04\x46\x1e\x65\x9b\x0f\xbf\x1e\x48\x2b\xd8\xad\xe2\x65\x29\x3b\xc7\xb3\x19\x22\x07\x80\x58\x0e\xbf\x1e\x3c\x2a\x40\xb8\x01\x03\x9a\x01\x98\x0e\xbf\x7e\xf8\xb0\x00\xf0\x4d\x6a\xb2\x2f\x1e\x00\x63\x36\xfc\x7a\x30\x28\x60\xfc\xa0\xf3\xa9\x1e\x00\x61\x35\xfc\x7a\xf0\x75\x01\xe1\x2f\x94\xa0\x03\x5a\x5f\x0c\xbf\x3e\x76\xfa\x7f\x87\x2f\x10\x5d\xd7\x4f\xc0\x6b\x7b\xa9\xda\x9c\x9e\x53\x76\xc8\x94\xaf\x87\x4e\x87\x4f\x29\x99\x67\x78\x7a\x48\xfb\xc5\xf0\xeb\xc1\x9f\x0a\x08\x6f\x11\xbb\x44\xec\x80\xf6\xe7\x43\xf4\x24\xf9\xf7\xc1\xa0\xdb\x45\x8f\xff\x63\x30\xd0\x50\xd6\xd3\x29\xca\xf3\x8a\x38\xce\x13\xd4\xaa\xaa\x14\x64\x0a\x69\x29\x05\xbc\x20\x82\x94\x1c\x0f\x0a\x04\xc1\x9f\x24\x0f\x05\x70\xfe\xf8\xd1\x60\xb0\xd9\x3c\x92\x9b\xc3\x45\x2f\xee\x48\x51\xdf\x9f\x39\xea\x3b\xcb\x88\xfa\xde\x3e\xa0\x7e\xb1\xa9\xa8\xef\x1f\x11\xd4\x2f\x1f\x3b\xd4\x2f\x5d\x06\xd4\xaf\xde\x31\xe4\xc5\xc7\x10\xbd\xdb\x6b\xe9\x30\xed\x59\xad\xc6\xd6\x04\x03\xa1\x55\x47\xb6\xe3\xa0\x23\xdb\xb1\xeb\xc8\x76\x3c\x19\x46\xa2\xc3\xb6\x40\x19\xd2\xd1\xbe\x3d\x4f\xb1\x60\xe3\x60\x5a\x05\xf8\xd0\x69\xf9\x70\xe2\x73\x30\x6d\x66\x95\xba\x31\x4e\xb4\x5e\x77\xed\xeb\x75\x65\xc4\x13\x1d\x8c\x3e\x41\x10\xcb\x10\xc7\xeb\x3c\x49\x21\x36\x94\x1c\xc7\x1c\xd2\x58\xce\x1f\x58\x0d\x63\xb1\x24\xc6\xa3\xaa\x7e\x35\x2a\xa3\x09\x0f\x05\xc1\x48\xef\x95\x0c\x15\xab\xd2\x73\xa2\x59\xfb\x1c\x4d\x53\x21\xbe\xe8\xac\x9a\x58\xed\x4d\x04\xbf\x7e\xf8\xb0\x70\x29\x13\x83\x2c\xf4\x9f\xde\xfe\x19\xff\xad\xbb\x18\xa0\xdc\x18\x73\x5e\xfc\xcd\xf9\x7a\x70\x5c\x37\x9c\x00\x1a\xd7\x09\xbf\x3e\xf9\xa2\xad\x73\xc4\xda\x58\xe5\x22\x5d\x21\x76\x81\xb9\x28\xe5\x54\xfc\x98\x53\x76\x21\xad\x14\x8b\xa3\xd6\x17\xf3\x78\x54\x37\x8f\xd2\xdd\x59\xea\x24\x30\x77\x3d\x09\x31\xae\x54\x8e\x13\x93\x29\x65\x0c\x4d\x79\x76\x2d\x47\x36\xa8\x1b\x59\xf9\x9e\xab\x5c\x96\xab\x3b\x1a\x9a\x0a\x61\x59\xce\xe9\x0a\xbf\x1e\x7c\x5d\x37\x1e\x1f\x0f\xad\xe4\x68\x2e\xee\x76\x34\x72\x53\xdb\x19\x25\x0b\xc4\xda\xe9\x65\x8a\x33\xc1\x14\x8b\x61\x1d\xd7\x2e\x53\x81\x2a\x2f\xe4\x90\x2e\xeb\x86\xd4\x78\x44\x2a\xb3\xc5\xbb\x25\x6a\xa7\x3e\xce\xe2\xf8\x02\xcd\xda\x74\xcd\x23\xd8\xab\xbd\x18\x1e\x26\xbf\x94\x43\xba\xfe\x74\x43\x12\xfb\x97\x0a\x42\x22\xae\x6b\xed\x1a\x39\xa4\x46\x65\x1b\x5f\xdc\xc9\xbe\x05\xc6\xa3\x30\x47\x7b\xb6\x46\xe2\x42\xa6\xed\xa9\x26\x7a\xe2\x64\xfd\xa9\x6e\x78\x3e\x65\x5c\xc8\x11\x9e\xd7\x3f\x1e\xe2\x8f\xc6\x24\x7a\x78\xb9\xa4\xcf\x6d\xa9\x68\x8a\x20\x0e\x0f\xcf\x76\x7d\x56\xc7\x16\x65\x5b\x9f\xd4\x9f\x87\xf5\x59\x81\x30\x20\x4e\xe9\xa7\x51\xcd\xdd\x59\xec\x17\x5d\xdf\x8f\xc9\xb2\x47\xcb\x58\x37\x55\xa3\xd8\x73\xbf\x29\xad\xb8\xf8\xd3\xff\xde\xf0\xd1\xa6\xe1\xab\x5e\x53\x85\x7c\xb3\xb7\xae\x9d\x66\x3b\xe5\xb0\x2c\x2a\xcd\x13\x4c\x61\x5e\xa7\xb9\xf4\xa5\xba\x3f\x96\xe6\xf2\x6e\x74\xca\x99\xd6\x29\xbf\x43\x39\x87\xd3\xe4\xc1\xff\x38\x81\x40\x7f\x79\x10\x8f\x86\x97\x64\xf6\x4b\x3f\x5d\xe1\x5f\x8e\xc0\xe8\xd7\x9c\x92\x07\xb8\x58\xde\xb9\xfb\xdc\x11\x0f\x60\xea\x06\x54\xe8\x76\x8b\x27\x10\x37\x46\x9b\xa3\x7a\x88\x1e\x44\xd2\x09\x73\xba\x4c\xd9\x29\x8f\x07\x7e\x46\xfa\x9a\x5a\xc6\x67\xb3\x77\xec\xa7\x7b\x77\xa4\xef\x7c\x7d\xae\x0e\x54\xec\xd6\xb9\xf0\xeb\xc8\xc7\xab\x01\xf4\xc0\x5c\x3a\x55\x54\x98\xc6\x18\x25\x2b\xe9\xef\x33\x33\x3f\x2f\xe4\x4f\xb4\x55\x54\x68\xd0\x52\xeb\xc7\x51\xce\x31\x59\x74\xbb\x99\x0d\xe2\xf6\x53\x2a\x4e\x4f\x20\x54\xa1\x10\xdd\xae\xb5\xaf\xd7\x42\xaf\xbf\x0c\x08\x67\x54\x5f\x37\x53\x4a\x38\x22\xfc\xdd\xf5\x0a\x0d\xdd\x08\xf1\x0f\x3e\xf4\xae\xae\xae\x7a\x82\xf3\xe9\xad\x59\x86\xc8\x94\xce\xd0\xec\xa4\x2d\x96\x26\x47\x3c\xf9\xf1\xdd\xb7\xbd\xff\x8a\xa0\xbe\xc3\x9a\xcd\x97\x4f\x27\xe6\x6f\x92\x5e\xa0\x7c\x95\x4e\x91\xf9\xc0\xd9\x3a\xe7\x68\xf6\x1d\xcd\xb9\x6d\xa0\xb1\x4d\x30\xc2\xb4\xb4\x32\xa0\x2a\x67\x97\xfc\x6e\x1c\x99\xce\x2e\xd2\xf7\x48\x93\x06\xe5\x12\x49\xd0\x55\x3b\x37\x47\xa2\xf4\xce\x4a\xaa\x09\xdc\x35\xfc\xbe\x41\x45\x2d\x14\xb3\x40\x3e\x77\xfb\xc6\x8b\x8a\x9a\x32\x6e\x3c\xd8\xba\xe8\x63\xd8\x2e\x42\x69\xc8\x68\xff\x30\x6a\x17\xf1\x34\x58\x7f\xcd\x32\x18\xb5\x0d\x84\x08\x38\xe6\x4a\x1f\x96\x2c\x21\xd2\x92\x02\x6f\x21\x4b\xaf\x9a\xad\x83\x9f\x4d\xc0\x5f\x8c\x2d\x74\x3f\x54\xe2\xae\xaa\x40\xbb\x50\xa7\x04\x5e\xd2\xd9\x66\xa3\x32\x14\x6c\x36\xd1\x5f\x9e\xbf\x8b\x60\x96\xdc\xa8\x82\x61\x0a\xc5\xf7\x61\x0a\xd7\x2c\x1b\x22\x31\x8b\xed\x49\x30\xa0\x84\xd4\xe4\x99\x43\x24\x1f\xb4\x65\xc6\x45\x9a\xf0\xbe\x3e\x1e\x7a\xc0\xb2\x87\x4e\x92\xa0\x6e\xb7\x13\x77\xe6\xf2\x31\xa2\x23\xa3\x7b\xe0\xe2\x3a\x53\x18\x3d\x55\xe0\x7a\x02\x5e\x04\x00\xf0\x1c\xca\xd7\x31\x01\x5b\x10\xa7\x50\x5d\x12\xd9\x57\xf2\xd7\xb7\xaf\x7e\xe8\xab\x8b\x88\xe7\x45\xde\x08\x78\x7d\x94\x1c\x6b\x69\x50\x07\xcb\x30\x48\x43\xee\x0a\x02\x70\x59\x7f\x76\x18\xb8\x99\x4a\xe7\xff\xe2\x23\x56\x24\x40\x45\x02\xa1\xfd\xa5\x4c\xdd\xf6\x46\xef\x6c\x9c\x6b\x59\x15\xc6\x03\x48\x8a\xbe\x64\xec\xeb\xd3\x2c\x33\xf5\xbe\x53\x8b\x12\x03\x00\x31\xcc\x80\x0d\x11\xe3\x68\xdb\x40\xbc\xd6\xf1\x5f\xa6\xc9\x8d\x16\x86\x87\x18\x72\xf4\x41\x46\xfc\x5b\xe7\xc3\x14\xfe\xfa\x8f\xbf\x7f\xf7\x66\x98\x43\x73\xb0\x86\xeb\xad\xc6\x10\x6c\x4d\xd4\xab\xb8\x64\x3c\x19\x9c\xaa\xd4\x10\x37\x4a\xea\xfc\x58\x78\x08\xce\xc1\x76\x0b\xfa\x82\x59\x74\x97\x0b\xc3\x14\xdc\xd8\x06\x2f\xc8\x33\x74\xbe\x5e\xb8\x38\x49\x72\x9c\x9a\x6b\x53\x07\x02\xcd\xda\x29\x69\xa3\x8b\x15\xbf\x6e\xab\xdd\x93\x99\x58\xec\x75\xca\xaa\xd7\x29\x53\xd7\x09\xb6\xaf\x96\x78\xba\x6c\x4f\xd5\xd3\xd8\x39\x6a\x4b\xe6\x42\x08\x68\x92\x73\x55\x36\x07\xf2\x58\xb4\xdf\x68\x44\xac\x9e\x24\xcc\x7b\xc4\xcd\xb6\x1f\x01\x18\xc9\x66\x4c\x31\x91\x89\x8c\x50\x50\x5c\xf6\x77\xe8\x03\xd7\xc8\x33\x97\xe9\x57\x65\x65\xb9\x41\x76\xcf\xfd\xda\x60\xb3\x49\x5b\x79\x12\x71\x25\x46\x48\x88\xf2\x31\x87\x7b\x92\xc5\x30\x92\x5c\xbf\x5b\x5c\x30\xf9\xc3\xca\xb9\x42\xe1\x73\x85\xea\xcf\xd5\x1a\xea\x94\xb5\xce\xf1\x59\xbb\xdb\x8d\xf5\x76\x23\x28\xa7\xfe\x6e\xc9\xe8\x15\x19\xa6\xc5\xe6\xe7\x3b\x0e\x13\xe8\xa7\xd9\x55\x7a\x9d\xbb\x9b\x7b\xdd\x4b\x8e\xeb\xf1\x22\xaa\x6e\xa4\xbc\x81\x05\x2e\x5c\x4a\x5c\x38\x85\xcb\x2d\x5c\xd1\x0a\x41\x70\x11\x9e\x26\x19\xa2\x40\x87\xac\x9e\x09\x44\xf1\x8e\xea\xf4\x8e\x32\xa7\x1b\x8c\x5e\xbf\x7a\xfb\x2e\x02\x32\xc9\xca\x5d\x40\xfb\x51\x03\x13\x14\xe2\x0e\xc0\x9d\xbe\x7b\xfa\x9d\x04\xe8\x47\x75\xbe\x25\xb8\x67\xcf\xbf\x7f\xfe\xee\xb9\x81\x87\x78\x39\x63\x83\x0b\x52\xa6\xaf\x91\x89\x17\x7c\xfb\x5e\xf9\x0a\x55\x55\x0f\x6e\x36\xbd\x63\x99\x51\xde\xbe\x1e\x3e\x88\x40\x5d\x66\xa5\x17\xbc\x9d\x23\x74\x91\xb7\xaf\xe9\xba\xcd\x19\x56\x8a\x1d\xc1\x2f\xff\xaf\x38\xab\xff\x2b\x7e\x09\xea\xd4\x4e\xdb\x7a\x66\x9d\xf6\x8f\x39\x6a\xf3\xa5\xa8\xa1\x3f\xfd\x6f\x5b\x11\x20\x29\xa4\xa1\x74\xd6\x8f\xca\xd9\xd8\xeb\xe3\xa0\x6f\x61\x68\x89\x82\xab\x11\xa3\x04\x6d\x36\x37\x5b\x20\x8f\xa6\x7c\xa9\x91\x19\xdb\xbf\x5d\x67\x99\xbe\x49\xdf\xa5\xc1\x1c\x49\x45\x54\x7a\xd9\x7b\x64\xe4\x98\x52\x02\x9a\x34\xcf\xf1\x82\xc4\x37\x5b\xc8\x21\x02\x5b\xa8\x29\x78\x00\xe0\x2d\x95\xb2\x36\x11\x6a\x6c\xc6\xe4\x74\x09\x80\xb8\x5f\x9a\x5f\x3a\x5f\xe3\x6c\xf6\xe3\x9b\xef\x15\x17\xc5\xf5\x8c\x3d\xba\xaf\x88\xf6\x3b\x55\x60\xfe\xdc\x6c\x22\xc1\x88\x8b\x52\x87\xc4\x27\xc6\xb8\x51\xba\x70\xc7\x5e\x19\x18\x95\x57\xc7\x29\x8c\xc0\xd0\xe7\x15\xf4\x7e\xca\x54\x94\x6f\x11\x99\x19\x0c\x26\xd3\x5c\xe9\x65\xd5\x53\xa8\xee\x4c\x6c\xab\x08\xb0\xb6\xb6\xf9\x4b\xec\x2d\xe4\x5b\x68\x27\x7f\xa7\x0b\xaf\x68\x36\x2d\xec\xb2\x80\x6b\x9b\xe7\x06\x21\x52\x46\x44\xd6\x2b\xbf\x38\x35\x34\xe7\x11\x68\x49\x27\x85\x64\x16\x13\x30\xba\x88\x09\x18\x12\xa8\xc3\x0c\x11\x27\xc5\xa8\x65\xa5\xab\x60\x6c\x51\x04\x5a\x58\xc0\x1a\xe1\xe4\x32\xc6\x60\x38\x93\x81\x77\x62\x9c\x5c\xc4\x18\x00\xa8\xec\x37\x16\xcf\x3f\xac\xe2\xe8\x7f\xe2\x07\x60\x64\x71\xb3\xa8\x0d\xe5\xad\x96\xa2\x85\xb4\x13\xd4\x63\xc0\x0e\x7e\x96\x42\x89\x58\x17\x66\x23\xd9\x58\x89\x85\x99\x60\x05\x50\x87\x21\x17\xe0\xb6\xd0\x27\x63\x3b\x72\x41\x89\x1d\xb6\x8f\x3a\xfa\x11\x78\xc4\x86\xb1\xe6\x7d\x6d\x74\xd9\x12\xe9\x95\xf5\xf4\x21\x52\xf2\xcc\x53\xa5\x9c\x55\xe8\xc8\xc9\x38\x1c\x28\x2e\x99\x45\xdb\x04\xc0\x32\xe5\x96\x1a\x50\x45\x4b\xae\x2d\xa8\x81\x4a\x3d\xc6\xab\x6a\xf4\x98\x68\xaf\xfd\x02\x88\xaf\xa2\x2e\x43\x28\x95\x56\x9b\xbb\x0f\x07\xe5\xc6\x5e\x59\xb5\x69\x49\x05\x5d\x6e\x5d\x2e\xae\x02\xf0\x74\xc6\xe5\xe6\x7e\x61\xb5\xb1\xd5\xec\x96\x1b\x16\x05\xd5\x46\x05\x17\x54\x6e\x55\x94\x94\xdb\x78\xfa\xc7\x72\x33\xbf\xb0\xda\xa1\xa3\xf9\x2b\x37\x75\x8b\x08\x44\x4e\x9e\xd7\xd4\x64\xb4\x21\x88\xa5\x1c\x3d\x43\x5c\xea\x4d\x5f\xa2\x3c\x4f\x17\xc8\x9e\xa7\x96\x1d\xbb\x61\xeb\x63\x02\x85\xdc\x62\x14\x95\x54\x0a\x6b\x7c\xba\x54\x22\x71\x88\x4a\x85\x94\x1d\x31\x77\xf5\x97\xea\x52\x8f\xb8\xb9\xbc\xc3\xca\xfb\x27\x1f\xf1\x24\x49\xd0\x30\x9e\x52\x92\xd3\x0c\xf5\xaf\x52\x46\xe2\xc8\x15\xc7\xdb\x94\x64\xd7\x6d\x75\x5f\x73\xcd\x8a\xe7\x82\x4b\x66\x68\x81\x3e\xa0\xbc\xdf\x8e\x20\x87\x91\x54\xf1\x2b\x3e\x5a\x30\xcf\x9d\x63\x79\xb7\x2a\xf8\xbb\x26\xdb\x87\xcc\xfc\x20\xb8\x77\x92\x20\x89\x14\x5b\x2c\x61\x9b\x4d\x14\x41\x92\x90\x3a\x04\x29\xca\xcb\xd9\x70\x74\x05\x77\x02\x91\xb5\xb9\x3f\x8d\x01\x94\x01\x3e\xa9\xb5\xa0\x05\x31\x03\xd6\x94\xd3\x04\x01\x29\xa3\x6f\x06\x36\x9b\xb8\xd3\xc1\xb5\x56\xf8\xbc\xef\x6c\x96\x94\x3f\xb7\xa2\x89\x00\xe3\x5a\xdc\x82\x58\xe3\x9c\x9a\xe3\x11\x40\x83\x12\xef\xa8\x41\x3b\x82\x30\x2f\x0b\xc2\x9b\x4d\x24\x29\x6e\xdb\xfb\xdc\xa2\x49\x24\x18\xfb\x07\x4b\x7e\x91\x09\x89\x22\xf5\x7d\x03\xba\x5d\x66\x9f\x66\xff\x7d\x30\x8a\xc6\xaf\xf4\x93\xdb\xf7\xf2\xe3\x75\xfb\xbb\x77\x2f\xbf\x9f\x44\xc3\x92\x08\xcd\x8c\x81\x75\x11\x27\x94\x54\x99\x78\x22\x99\x78\xb8\x4e\x22\x9d\x48\xb0\x1d\xdb\xea\x29\x8c\x80\xe5\x89\xc6\x91\xdc\x9d\xf6\xe9\x5f\x4f\xff\xde\x36\x5a\x7d\x5b\x35\x97\xfa\x11\x23\x11\xba\x42\x82\x10\x65\xe8\x44\x13\x95\x5f\x88\xa0\x2a\x01\xbc\x5c\x71\x71\xd1\x7c\x91\x92\xaa\x2b\xd5\xa5\x52\x13\x96\x51\xf3\x6e\x20\x7e\x5d\x03\xc1\xc5\xc0\xbb\xdb\xbb\x35\x4d\xeb\x12\x06\xde\x0d\xa0\x54\xd9\xc0\xf0\xd0\xf0\x6e\x08\x5e\x55\xd3\xde\x62\xe3\xdd\x6d\x6d\x35\xd3\xce\x91\x57\x77\x36\x2c\xea\x99\x96\x1e\x4a\xde\xdd\xd8\xab\x6a\xda\x3b\x78\x79\x77\x6b\xa7\xa2\x6d\xab\x58\x8c\x3d\xed\x54\x25\xd5\xa6\x2a\xf2\xfb\xc9\xe7\x0a\xab\x39\x79\x81\x8c\xad\xb9\x36\x7d\x73\xac\xc2\xb6\x4e\x42\xbd\x3a\x78\x5e\x66\x3e\xb6\xf5\x3c\x8e\x17\xfb\x9f\x6e\xf2\xf5\x6a\x45\x1b\x07\xaf\xb9\x1b\xad\x3e\x0f\x6a\x95\xc5\x70\xc4\xf2\xe3\x29\xd2\xee\xea\x98\x68\x3b\x37\xf9\x31\x8e\xe4\x63\x11\x50\x0a\x63\x55\x63\xaa\x23\x1d\xf6\xd3\x0c\xa7\xb9\xaa\xa1\x61\xf4\x15\x2d\x70\x54\xca\xfb\x9b\x38\x8c\xb1\xd5\x52\x37\xe8\xc8\xc8\x72\x50\x6a\x30\xc2\x86\x89\x2a\x57\xd9\xaf\xe9\x07\x2d\x62\x86\x65\xd1\x6a\x3a\x52\x45\xb6\x9c\xee\x22\xe0\x48\xf8\x04\xf8\x1b\x5e\xe3\x8a\xa2\x37\x3c\x43\x8b\x74\x7a\xfd\xc0\x1e\xa9\x9e\xd4\xe3\xd8\xc7\xb5\xda\xe7\xbb\xda\x07\xb1\x9d\x4f\x97\xbe\x17\x87\xbe\x2d\xc1\x2c\x3d\xbf\xe3\x67\x2e\xd7\x84\xde\xbe\x08\x15\x8a\x67\x76\x77\x4f\x61\x38\x78\x69\xf6\xa3\x07\xe6\xbc\x9e\x97\x34\x37\x1d\x52\x08\xa0\x36\x00\x9a\x65\x76\x3a\x5c\x27\x65\xe9\x76\x8d\xf0\xae\xe3\x18\x9a\xb4\x48\xdb\x18\x27\x9e\xd3\x22\x06\xa3\x9b\xed\x10\x83\x11\xd6\x55\xfc\xbc\xd3\xca\x6a\x5b\xfc\xeb\xa7\x33\x72\x55\x10\xd6\xea\xcb\xd8\x70\x15\xbc\x04\xd7\x9f\x00\x64\x9a\x1b\xbe\x51\x1f\x86\x45\x1d\x04\x20\xc7\x3c\x43\x43\xbe\xdd\x82\x61\x4c\x13\x0c\xfd\xc1\x53\x31\xb8\xf2\xa8\x8c\xb5\x77\xcc\xc1\x68\x17\xcc\xbe\xfc\x77\xb3\x91\x5a\xe9\xf3\x74\xfa\x1e\x91\x99\x7e\xa4\x99\xa1\x59\xfb\x0a\xf3\xa5\x54\x4e\x2b\xf3\x82\x99\x64\xe2\x86\x7c\x3b\xdc\x01\xd3\x99\x1e\x90\x43\xf6\xc2\x96\x63\x30\x1a\xef\x68\x8c\xb7\x93\xe1\xce\xf2\x5b\x0d\x18\x6f\x27\x8a\x91\xa3\x3e\x72\xc1\x61\xe4\xc2\xd2\xab\x5a\xcc\xf1\x59\x7c\x90\xfc\xe7\x97\xb2\x01\x83\xb9\x2a\xa0\xcf\xd2\x2b\x59\xa5\xc6\xb7\x6a\x9f\x11\xc3\x97\x35\x17\x4b\x02\x6a\xe7\xa3\xc9\xa6\xb1\xb1\xb8\x2b\x67\xb1\x7f\x39\xb4\xee\x08\xd6\xdc\xf3\x8c\x62\x31\x0f\x7b\x46\xf1\xdf\xd6\x33\x8a\x07\x93\xc1\xc4\xf8\xb7\x08\x55\x41\x3d\xf5\x79\x4d\xb4\x8c\x4f\x1e\xaa\xe2\xb4\x60\x9f\x64\x96\xbb\x24\x48\x61\x4d\xee\x58\xc3\xd7\x55\x3c\x18\x61\x9e\xa4\x6e\x5c\x02\x9d\xdd\x61\x9f\xa9\x9f\x3f\xb9\x4f\x1b\xf0\x02\xc7\x1c\x84\x59\x4b\xab\x41\xaa\x0c\xe7\x8f\xe3\x34\x47\x6d\xb4\x8b\xd4\xb3\xf1\xf6\xf6\x7e\x1d\x46\x97\xae\x3d\x9a\x8b\x2b\x7f\xfd\xc7\x1a\xb1\xeb\xcf\xe3\x40\xbb\xcb\xc3\x79\x54\x50\x01\x29\x66\x54\x3d\x97\x89\x92\x8f\x76\xfa\xd9\x9e\xa7\x39\x9e\xf6\x66\x8c\xae\x66\xf4\x8a\x14\x29\xcb\xf2\x07\x7e\x49\x4f\x3f\xb9\xec\x8b\x95\x6e\x01\x58\xaa\x52\xea\x81\xa3\x8b\x55\x96\x72\x94\x37\xe9\x2b\x0c\x42\xc7\xa6\x4f\xb3\xa9\xcc\xce\xd8\x33\x51\xbf\x76\xd7\xcf\xa7\x8c\x66\x85\x85\x5f\xc8\x3a\xaf\xb4\x8b\x5a\xa5\x06\x65\x6c\x18\x38\x0d\x1a\x92\xc5\xf3\x3f\x2a\xa5\x5b\xde\xe7\x0d\xbb\xb3\xbc\x61\xae\x9d\xe0\xef\x20\x6c\xd9\x6a\x07\x93\x33\xff\xf2\x99\x9c\x8b\x92\x9b\xec\xc5\x17\x19\xb6\xec\xf2\xb7\x0e\x5b\xe6\x58\x8f\xc6\x97\xbf\x05\x2f\x78\xed\xf1\x82\xd7\x77\xea\x20\xbb\x70\xb1\xba\x32\x5a\xb4\xa6\x0e\x6d\x37\x66\x12\x01\x26\x4a\xbb\xf7\x5e\x43\x65\x0a\xaf\x31\x9a\x6c\x01\xa4\xee\x35\xec\x74\xdc\x9f\x90\x96\x2e\x61\xc7\xff\x00\xe3\xe2\x4e\xd2\xcd\x86\xf6\xcd\xf1\xfe\x27\x62\xa0\xdb\x8d\xa9\x7f\x47\x69\xc2\x4c\x58\xf5\x3e\x43\x97\x88\xe5\xea\x2f\x3f\xf2\x8f\xfb\xec\x6d\x4e\xe7\x66\xc3\xb6\x90\x02\x88\x1d\xe3\x03\xaf\x37\xd9\x99\x1c\x8b\xff\x7d\xe4\xfd\x52\x47\x07\x03\x63\x5a\xeb\x15\x6a\xde\x04\x40\x7b\xb3\xcb\x3d\xd4\xe1\x18\x2e\x86\x46\x13\x15\xc5\x9d\x16\xbb\x74\x2e\x59\x64\x71\x87\x50\xb7\x1b\x77\x74\x6a\xb3\xef\x71\xce\x37\x1b\xf7\x97\x34\xf8\x48\x31\xc9\xc3\x6c\x8b\x65\x18\xc4\x85\x42\x89\x0c\x7b\x83\x08\xd7\xc1\x5e\x0a\x3c\xe1\x3a\x72\x88\xb3\x74\x85\xc9\x8c\x5e\x19\xd9\xf9\x94\xe0\x0b\x69\xb6\xfc\x2d\x4b\x2f\x50\x39\x0b\x3a\x4b\x74\xed\x05\xe2\x26\x9f\xce\x5b\x7e\x9d\xc9\xa0\x30\x82\x69\x26\x94\x20\x29\x05\xf6\x53\x03\x48\xa5\xb3\x8e\xd8\x9a\x10\xf5\x98\xea\x16\xbe\xce\xd2\x6b\x99\x81\x18\xdc\xc8\xc4\x10\xcf\x2f\x11\xe1\x62\xb2\x88\x20\x16\x47\xb6\x1e\x22\xb3\x08\x3a\x42\xb6\xa8\xce\xd0\x05\xbd\x44\x3b\x5b\x30\x00\x79\x0c\xb6\x40\x07\xb6\x91\x7f\xde\x0d\x5b\x7a\x95\xc4\x32\xd7\x24\xd7\x79\xd3\x40\x5c\xd8\xc4\xaa\x07\x48\x6e\x12\xbd\x81\x38\x8a\x84\x94\xe4\xeb\xcc\xe3\x68\x26\xcd\xcf\x53\x25\x06\xd8\x0c\xfa\x45\x39\xa7\xab\x08\x46\x19\x9a\x0b\x1e\x90\xe1\xc5\x52\xfc\x7b\x85\x67\x7c\x19\xc1\x68\x89\xf4\x07\x2a\x84\x0b\xb9\x07\x79\x04\x20\x8d\xb3\x24\x8d\xe3\x45\x1c\xd7\x7a\x6d\xea\x74\x04\x90\x95\x6d\x90\x3f\x49\xb4\x57\x5e\xe4\x37\x20\xd5\x44\x30\xd8\xe1\x92\x88\xb8\x1c\x83\x13\xfa\x98\x9c\xd0\xa3\x23\x80\xc7\xd4\x4d\x04\x43\x6d\x46\x1e\x96\xac\x14\x68\x49\x3e\x38\x50\x8e\x4e\x36\x64\xc1\x58\x94\x4d\x6c\x0e\x46\x00\x00\xe8\xe3\xfc\x1d\x5d\x4f\x97\xcf\x90\x90\x77\x92\x6f\x28\xcd\x50\x4a\xe2\x4e\x47\x1d\xe6\x6e\x37\xa2\x84\x8b\x0a\x39\x4f\x19\x17\x58\x4a\x15\x00\xc8\x04\x11\x7b\x49\x2f\xd1\x2c\xe9\x1c\x43\xe7\xdc\x2a\xa1\x29\x8a\x20\xeb\x73\x96\x12\xc5\x7a\x63\xb2\x78\x61\x4a\x82\x37\xb4\xe7\xd5\xed\x61\xe2\xb7\x47\xb3\xc6\xcd\xd1\xac\xd2\x1a\x93\xc5\xab\x35\x3f\xa0\x7b\xe9\xc0\xc7\xfa\x4a\x24\x10\xd8\xf7\x94\x4c\x51\x2e\x04\x98\x64\x3c\x81\x6c\xab\xc2\xaa\x51\x98\xfe\x0b\x44\x84\xbc\x2e\x45\x84\x7c\x6a\xc4\x32\x00\x59\xc2\x61\x4c\x4d\x38\x48\x81\xea\x2b\xe1\x20\xc1\xcd\x45\x7c\x59\x8a\x01\xa9\x2a\xaa\x20\x2a\x41\xd5\x83\x32\xb7\x32\x9b\xf3\x62\x56\xb3\x69\x1a\xab\xf7\x0a\x8d\xb8\xdb\xac\xbf\x26\xf8\x1f\x6b\xf4\x62\xa6\xc1\xd9\x03\xfa\x9c\x88\x09\xce\xba\x5d\x95\xd4\x03\x71\x07\x35\xca\x33\xa2\xc6\x16\x3c\xbd\x60\xbb\x85\x6a\xb6\x39\xe2\xeb\x55\x35\xfa\x65\xc9\x16\xc5\x86\x17\x93\x4a\x81\xb7\x48\x30\x8f\x62\xab\xc7\xb3\x94\xa7\x3d\x74\x3e\xeb\xe1\x59\xb2\x67\xfc\x30\xea\x71\x86\x17\x0b\xc4\x26\x11\x00\x2d\x59\x49\x5b\xbd\x51\xca\x5f\xd2\x75\x8e\x9e\xd1\x2b\x87\xf3\x24\xe0\x86\xdb\xdb\xb9\xd9\xa0\x82\x3a\x92\x3e\x4f\xd9\x02\x71\xc1\x0e\x74\xbb\x2c\x50\x30\x52\xa1\x70\x22\xd3\x3c\x82\x9d\x63\x30\xec\x58\x24\x89\x62\x87\xd7\x3d\x8f\x4b\x0c\xe9\x79\x5c\x3b\xe1\x94\xe1\xb4\x47\xaf\x48\x9e\x38\xb6\x1e\x36\xed\x68\xde\xc7\x33\xc5\x7d\xc0\x48\x46\x0b\xb2\x6c\x6b\xb7\x8b\x43\xd5\x04\xad\xdc\x6c\x50\x8c\xa1\x0d\xbe\xd3\x39\xde\xda\x79\x40\xee\x1c\x1f\x31\x29\xbb\xaa\xe9\x54\x3d\xa7\x4e\x33\x9a\xa3\x98\xc0\xce\x00\x0c\x43\x73\xde\x42\x3b\x95\x0a\xf1\x55\x66\xd3\x94\x72\xf9\xb9\xb0\x32\x0d\xec\x8a\x80\x0f\x35\x67\x50\x25\xe2\x0c\xe5\xf8\x9f\x48\x9f\x37\xb6\x26\x19\xa5\xab\xd3\xab\x94\xa1\x37\xc8\x28\x2d\x76\xb4\xa6\x0c\x23\xc2\xe5\xb9\x9d\x2e\x53\xb2\xd8\x07\x48\x9b\xa3\x39\x08\xbf\xdb\x8d\xeb\x67\x19\x39\x88\x5f\xdf\x08\xf1\xe1\xad\xf8\xf0\x9d\x9c\x29\x93\xb3\xdb\x07\x41\xb2\x1b\xbb\xd6\xc7\x64\x75\x12\x7b\x10\x40\xb9\xba\xf1\x02\xf1\xb7\xd5\xc2\x98\x99\xe6\xe9\x6c\xa6\xca\xe5\xd8\x30\x59\xc8\x1c\x86\xfa\xb6\x72\x94\x32\xb1\xfd\x01\xfc\xa4\x6d\xe0\x05\xc3\xf4\x97\x8c\x9e\xa7\x99\x9c\x43\x1e\x6b\xb0\xaa\xa4\x04\xd9\x8c\x38\x4c\x1f\xec\x82\x84\xd8\xb0\x43\xcf\xce\xee\x4d\x0b\x32\x7a\x87\xee\x5b\x3d\x90\xfd\x5b\x67\x57\x58\xa1\x50\xf4\x22\x10\x11\xd8\xc5\x89\xad\x1a\x5c\x2c\x38\x6e\x77\x53\x6a\xf0\x72\x88\x25\x10\x9c\x6b\x69\x14\xaf\xd6\x55\x4a\x64\x86\x01\x99\xb5\xbe\x2d\x0f\xc3\xb3\xbd\x50\xd9\x2e\x5e\x08\x3e\x7c\x8a\x46\x25\x99\xc1\xff\x35\x2c\x95\x42\x2c\x13\x6a\x53\x82\x7e\xa0\x33\x14\x77\x06\xa0\x85\xfb\x02\xd1\x47\x45\x02\x6c\x2c\xf0\x7a\x4f\x56\x8a\x00\x8c\x79\x82\x0b\x71\x06\xe8\x2d\x31\xd4\x11\x2e\xe3\x5a\x8a\x64\x02\xbb\xb6\x05\xd6\x84\x31\xf3\xe1\xa4\x33\x13\xb1\x8a\x05\x81\x18\xb6\xc8\x87\x42\x44\x1b\x44\x66\x4f\x97\x38\x9b\xc5\xd8\xbd\x9f\xcd\x29\x25\x3c\x8b\xb1\xbb\xa5\x44\x4f\xca\x00\xdd\xca\x1c\x0b\x0e\x31\x7d\xb9\x56\xb8\xec\xd5\xb9\xf2\xdf\x6a\x72\x90\x2e\x4a\x6d\x24\xd3\x5c\x06\xe4\x09\xee\x31\x1a\x0f\x26\x62\x5d\xd0\x4c\x6c\x8e\xe1\xb7\x37\x1b\xf9\x5d\x0d\xd1\x2b\x01\x82\x8d\x0a\xa3\x54\x21\x34\xc1\xe0\x38\xfa\x54\xfd\x11\x0b\xbe\x4b\x4c\x58\x6c\x87\xe0\xb1\xf2\xf5\x39\x67\x48\x89\x4f\x15\xec\xb4\x77\x05\x34\xb6\xaa\xf4\x36\xc3\xf9\x94\x12\x82\xa6\x3c\xae\x19\x50\xa2\x93\x6f\xe8\x0e\xcb\x08\x21\xd0\xd3\x3e\xb4\x2e\x16\xca\xc5\x2f\x82\x74\x3a\xe8\xc5\xef\xcb\x29\xac\x9b\x54\x21\x4e\x0c\x9a\xa0\xa6\xa6\xdd\x87\x77\x2e\x30\x88\x92\x27\x9a\xcf\x8b\x19\xae\x81\x15\xe4\xb4\xe8\xa1\x42\x3b\x02\xd0\xad\x2a\x21\x30\x9f\x43\xb8\x80\x20\x80\x03\x19\x01\x3b\xf2\x30\x49\xad\xbf\x77\xe3\x89\x40\x9d\xc8\x49\x34\x28\x9d\x05\x2d\x98\xd7\x12\x09\x82\xd8\xa0\x43\x71\x8d\xc0\x09\xeb\x76\xa3\x6f\x5e\x3d\xfb\x59\x29\x3f\xb4\xe4\xdf\xe7\xf4\xc7\xd5\xaa\xb0\x1f\x8e\xbe\x7b\xf7\xf2\xfb\x1d\x35\x4e\x00\x57\xfe\x1f\x4c\x88\x1d\xe1\x6e\x99\xdb\xad\x75\xe7\x2a\x68\x43\x99\x41\x08\x4d\xd4\xe4\xa9\xe4\x3a\x51\xa0\x58\x68\xd5\xca\x2c\x42\xc9\x3a\xc9\xe1\xae\x79\xc1\x5d\x23\x15\x3f\x5d\xfd\xbc\xb1\x6b\x25\xd5\xaf\xa7\x26\x6a\x8d\x86\x6b\xdb\x41\x99\x46\xd3\x54\x53\xa5\xcf\x50\xc6\xd3\x1c\xc4\x5c\xea\xc7\xfa\x33\xf1\xf3\xef\x30\x35\x7f\xfe\xdc\xa2\x8f\x99\xfe\xfa\x03\x5a\xc8\x90\x9b\xa3\x98\x26\xe5\x6f\x90\x9b\xc9\x3c\xd3\x3e\xc8\x00\x0c\xe9\x13\x53\xed\xb5\x3c\x1a\x7e\x53\xf3\x2d\xd8\x34\x35\xbd\xfe\x5c\xf4\x9a\x26\xe5\x6f\xe1\xa6\xa6\xd7\x9f\x4d\x0f\xdd\xae\xd3\x76\x57\xb7\x85\xa5\xd3\x6b\x55\x24\x38\x87\x98\x6e\x36\x29\xe8\x76\x95\x61\x3b\xce\xb5\xa8\x60\x16\x97\xc2\x14\x3a\x0b\xac\xd5\x5d\x15\xd8\xdb\xd6\x0e\x7c\x77\xb5\x44\x28\x8b\x20\x87\x37\xd3\x74\xc5\xd7\x4c\x4a\xcb\xab\x34\xcf\xf1\x25\x1a\x76\x8e\xb7\x3b\x58\xc5\x24\x84\x51\x83\x97\x78\x6f\x27\x5b\x3d\x76\x8f\xd9\xdd\xcf\xac\x26\x95\x12\xd5\xa6\x84\xbf\xf6\x5c\x0d\x70\x53\xbd\x47\xb5\xc8\x4e\x25\xf5\x94\x54\xba\x56\x78\x51\xbc\x73\x13\x89\x25\xc0\x65\x57\x55\xf2\x5c\xf0\x8c\xf5\xbd\xa0\x5a\x5c\x58\xc6\xe3\x07\x4f\x2d\xb8\x99\x9f\x62\x76\x3b\x3b\x6a\x32\xc1\x32\xbb\x1b\x85\x63\xf9\x44\x1c\xe5\xf2\x29\xcf\x1a\x15\xbf\xba\x32\x92\x8b\xe0\x4c\x73\x9a\x5d\xa2\x37\x32\x2a\x88\x0a\xe9\x14\xeb\x6c\xf9\x43\x44\x2e\x31\xa3\xe4\x42\xaa\xda\xfb\xce\x2f\x3b\x04\x47\xb1\xab\x79\xe5\x9a\x41\xb4\xed\x65\x59\x20\xc3\x56\x7f\x73\xfd\x62\xa6\xe9\x72\x01\xc6\xd1\xc8\xf0\xeb\x0c\x55\xc0\xa9\x0d\x8b\x22\x68\x53\xbb\xae\xa0\x76\xf9\xcb\xd0\x9c\x9b\x70\x1f\x52\x89\x6c\x32\x16\x4b\x4d\x32\x54\x61\x2c\xfa\x4a\x9d\x0c\xb5\x3f\x96\xa3\x53\xb6\xe9\x4a\xba\x5d\xf7\xc1\x28\x0d\x3c\x18\x71\x70\x83\x8e\x5c\xcb\x54\x18\x0d\x1d\x0f\x94\x74\xcc\x27\x30\x3a\x89\x80\xd2\xb8\xc5\xa2\x2e\xa7\x2b\xc7\xb7\x9d\xcb\x62\x00\x99\x2e\x15\x43\x77\x43\x82\xe8\x62\xa2\x8b\xe5\x6c\x9c\x72\xa2\xcb\xb1\x2e\x97\x13\x74\xca\xb1\x2e\xa7\xba\x5c\xcd\xd9\xa9\x40\x01\xd0\xea\x3f\xfd\x50\xbe\xe4\x17\xd9\xdb\x74\x2e\xdd\x10\x64\x7a\x96\x59\xec\xc4\xbf\x85\x14\xc0\x54\x7e\x33\x86\x35\xc0\x29\x0c\x1c\xc4\xb1\xaf\xe1\x9f\xc0\x7d\x4f\x9b\xd3\x9d\xf0\x00\x9c\xba\x1a\xc7\x85\x5f\x3d\x74\x08\xc7\xf9\x81\x7d\x06\x80\xec\xee\x55\x1f\xcf\xf1\xfa\xc0\x8e\x54\xbb\x3d\xb0\x95\x32\x52\xaf\xe2\x99\xe2\x56\x0f\xed\x47\xc2\xd8\xdd\x4f\xa1\x46\xf9\xa8\xae\x2c\x98\xdd\xbd\x39\x2a\x85\x8f\xea\xae\x80\xd3\xa8\x3f\xa9\x3c\xb8\x8b\x0e\x05\xa0\x06\xfb\x56\x95\xfa\x3e\x7e\x1f\x2b\x30\x9b\xed\xeb\x1d\x0f\xa5\x16\xec\x9e\xd1\x54\xa5\xd3\x8f\x1b\x46\x05\x5e\x83\xfe\x3d\x89\xf5\xe3\xbb\x77\xc1\xed\xee\xbd\x4e\x60\xfd\xa8\x31\xd4\x00\x2d\x8d\x24\x4b\xa6\x00\x6c\x36\x99\xfc\x9f\x63\x16\x78\x75\x7b\xb3\x40\xfd\x72\xf1\x59\xcc\x02\x4d\x5f\x65\xd3\xbd\x80\xd9\x1e\x81\x4e\xdc\x37\x3f\x3f\xdf\x1f\xd4\x5c\x2f\xfd\x5d\x58\x96\xe5\x3b\x2c\xcb\xe8\x97\x6f\x59\xf6\x5b\x85\xdd\xb7\x03\xc8\x3c\x93\xa9\xec\x4e\x4d\xa6\xa6\xf7\x26\x53\x5f\xae\xc9\xd4\xdd\x98\xee\xcc\xeb\xec\x76\x62\x52\xb5\xdb\x89\xe3\x69\x1c\xe3\x3f\xae\x2d\x4d\x6e\x6d\x69\xd6\xcd\x6c\x69\x90\x79\xd1\x4b\xa2\x69\x86\xa7\xef\xa5\x09\x09\xa7\x2b\xb1\x1d\xe9\x42\x72\x40\xd2\x56\x46\x9b\x8f\x08\x1a\xf4\xc7\x37\x1f\xc9\xf6\x98\x8f\x10\x63\x3e\xa2\x5e\x18\xed\xeb\x62\x48\x39\xeb\xeb\xe4\x67\x38\x97\xd2\xde\x66\x13\x5d\x88\x56\x52\xa2\x30\xaa\x5b\xbb\x17\xdd\xae\x24\x04\xfd\xf3\x35\xe7\x54\x10\x27\xa5\x75\xf1\xb7\x45\xd0\xda\xd2\x27\xa3\x52\x3b\x13\xdf\xdf\xa1\x0f\x5c\xd9\x32\x60\x4a\x7e\x24\x1c\x67\x72\x9c\xeb\x95\xa9\xc5\xe9\x62\x91\xa1\x17\xf9\x37\x08\x93\x85\xe2\xf3\x66\xdf\x5c\xcb\x47\x5b\xa5\x4a\x1a\x35\xab\x96\x74\x8e\x87\xe1\x97\x07\xd5\x34\x46\xce\x93\xab\x5a\xb1\xa7\xea\xa8\x55\x57\x2b\x64\xd4\x6c\xb4\x2a\x66\x1d\x70\xfe\x4c\xa5\x51\x17\xcb\xd8\xf1\x7a\xde\x6c\x6a\x97\x5b\x9d\xee\x3b\x5f\xea\xcf\xb9\x88\xe5\x55\xfc\x6f\x74\x7d\xe8\xa9\x8b\x8f\x65\xaa\x18\x41\xf3\x9e\xd2\x19\x1a\xed\xe9\x72\xf8\xe8\xa1\x57\x5d\x66\x84\xf2\x95\xd0\x70\xdf\xa8\x87\x0f\xff\xd3\x85\xa1\x4d\x98\x6a\x6c\x5b\xaa\x47\xe5\x9d\x15\x84\x3e\xee\xbd\xef\xac\x2c\xd2\x04\x3b\x7a\x4e\x66\xb5\xcb\xd9\x60\x0f\x07\x10\x89\xb3\x52\x56\xf8\xd7\x1f\xcb\xd8\x7b\x46\x2c\xd7\xab\x2c\x26\x2c\xbd\x3a\x1e\x1f\xf8\xea\x58\x5d\x04\x88\xf4\x3b\x43\x7f\x4e\xa7\xeb\x3c\x06\x30\x47\x5c\x87\xe4\x2c\x9b\x0b\xcb\x04\x95\xa6\x3e\xe0\xec\xfa\x26\xe6\x95\x64\x94\x97\x32\x15\xa5\x44\x35\x5a\x21\x0d\x80\x64\x0f\x8a\x4f\xb1\x21\x35\x9d\x81\xf8\x7f\x6d\x9d\x59\x24\xc5\xe2\x92\xf4\x79\x55\xc1\x76\x8e\x49\x9a\x65\xd7\x37\x76\xbc\x33\x9c\xcb\xa0\x93\xaa\x1e\x17\xdb\x39\x90\xe9\x41\xcb\x2f\x30\xc1\x47\x4f\x3d\xff\x90\xba\x7c\x0f\x0e\xfa\xe8\x15\xdf\x0d\xe0\x42\x21\x69\xd3\x5c\xff\x74\x5e\x89\x8b\xf9\x94\x0a\x77\xdd\x8f\xdb\x75\x55\x0c\xf5\x9c\xce\xae\x1d\xd3\x75\x05\xae\xc6\x70\x9d\xa3\x0f\xbc\x97\x4b\xca\xd3\x33\x27\x3d\x72\x46\xfd\xe9\x1f\xd7\x77\xdc\xf5\xdd\xa4\xf1\x30\x14\x73\xfb\xf5\x4b\x67\xb3\x03\x17\x6f\x02\xba\xdd\xd4\x53\x57\x13\xc9\xe5\xa7\x31\x83\x38\xa0\xae\xae\x70\x26\x87\xaa\x62\xf0\x2e\x68\x00\x62\x57\x07\x33\x0d\xd5\xd6\x34\xfe\x0e\xfa\x55\x90\x9a\xf4\x69\x29\xe2\x1d\xf4\x6a\x60\x35\xe9\xd7\x25\x52\x77\xd0\xb5\x03\xae\x71\xef\x92\x72\xdd\x55\xdf\x02\xd8\xee\x9e\xc3\xb8\xf4\xa3\xfa\x0f\x82\xdc\x3d\x8a\x0a\x06\xfc\xa8\x01\x94\xa1\xed\xe9\xfb\xe3\x55\xae\x7b\xe0\x95\xfa\x27\x09\x06\x60\xb3\x21\xe2\x7f\x8e\xa2\x73\x7e\x6b\x45\xe7\xe7\x50\x70\xde\xc2\xdf\x59\xfb\x7a\x1f\xe0\xcd\xdc\x72\x75\x71\x4e\x76\xca\x3f\xa8\x5a\x74\xfd\xbb\x50\x8b\x66\x3b\xd4\xa2\xf9\x97\xaf\x16\x9d\x96\x1c\x6e\xa7\x5f\xa4\xc3\xed\xfc\xb7\x76\xb8\xf5\xc3\x06\xfc\x06\xda\xe3\xa5\xa7\x3d\x5e\xfe\x46\xc1\x57\x02\x7a\xc9\x19\x5c\xc1\x0b\x78\x09\xaf\xe1\x02\x9e\x27\xe3\x46\xfe\x7f\x13\x78\x56\xab\xcd\xa4\x21\x6d\xe6\x2c\x71\x13\x26\xff\xd1\xb4\x99\x99\xd5\x66\xce\x9b\x69\x33\x39\x5d\x25\x2a\x1d\x83\x34\x94\x31\x7f\xcb\xd5\x36\x3f\xe4\x92\x9b\x1f\x6a\xdd\xcd\x2f\xc7\x50\x26\xb9\xd9\xca\xe8\xdd\xe7\x19\x9e\x9e\xbe\x7e\xa1\x7e\x7a\xe6\xf5\xca\x85\xf0\x12\x31\x8e\xa7\x69\xf6\x5a\xd3\xaf\x24\x4a\xd7\x9c\x46\x02\x34\x65\xf8\x9f\x94\xf0\x50\x99\x8c\x97\xfb\x4e\x3d\xfd\xfd\x24\xc7\xe3\xe8\x58\x31\xa4\xff\x02\x3a\xd6\xe5\x1e\x1d\x2b\xde\xe3\xa2\x37\x8d\xe7\x87\xba\xe8\xb5\x0a\x43\xb8\xfe\x7a\x35\x4b\x39\x92\xbe\xca\xf1\x8d\xf1\x5a\xd3\x71\x30\x17\x6b\x3c\x93\x09\x24\x04\x28\x88\xf3\x57\x2b\x44\x94\x72\x4e\xd3\x95\xec\x5a\x7c\x92\xea\xc7\x63\x68\xa4\x34\xad\xbe\xb3\xaa\x9d\xce\x31\xd4\xfa\x9b\xe1\x0d\xb5\x10\xc4\x5f\x32\x29\xb7\x86\x2e\xd5\x5e\xaa\x48\xfe\xe9\x96\x29\xb5\xcf\xd0\x51\x3e\xb9\xa5\x85\x59\xf7\x50\x5b\x4b\x9a\xdf\x4e\xad\xed\x56\x3b\xdf\x39\x8e\x89\xa5\xdf\x9b\x4d\x43\x4f\x45\x54\xf6\x4e\xa4\xe4\x05\xc1\x5c\x2b\xf4\xd4\x0f\xd7\x7f\x69\x86\x67\x6f\xd0\x14\xe1\x4b\x74\xca\x79\x50\xd3\x52\xdd\xc3\x4a\x9b\xfd\xdb\xd9\x51\x2a\xe0\x33\x9a\xcd\x9e\xe9\xc5\x87\xcc\x7c\x35\xdb\xd1\xaa\xd4\x49\x18\x64\xdd\x6e\x07\x8d\x02\x36\xf4\xd0\x6d\x0b\x86\x1d\xd6\xed\x22\x13\x20\x32\x50\x11\x49\x0b\xae\x62\xe2\x57\x38\xcb\xb4\x8a\xba\xd1\xa4\xbd\xfa\x3b\x26\x6c\xec\x65\x55\x6e\xb3\xd3\xd7\x2f\xf4\xd2\x3b\x5f\x64\x32\x9a\x62\x24\xe2\xb4\xd5\xea\x33\x3d\x3d\xba\xb2\x1d\x37\xe8\xce\x39\xc6\xa5\x02\x75\x1b\xf4\x67\x4a\xc4\x8f\x6e\xb7\x73\x6c\xf4\xea\xea\x4b\xec\x37\x82\x08\xe8\x06\xde\xad\xd3\x17\xcb\xf3\x2a\x91\x77\xa0\x3a\x62\x43\xb5\xca\xe3\xee\x76\x3b\x35\x03\xd7\x4b\x53\x1e\x78\xb7\xdb\x89\xf5\x40\x9f\x8a\xae\xfc\xb1\xcb\x4f\xb5\x83\xf7\xd6\x2b\x36\xee\x45\x9a\x3f\xc0\x28\x8f\x6f\x96\x06\xd3\x0f\x25\x41\xb9\xf4\x7f\x72\xba\x52\x7f\x48\x43\x48\x45\x72\xa4\xc9\xa2\xfc\x53\x99\x37\xca\x3f\xb5\x25\xa3\xf4\x7e\xd1\x9b\xbe\x62\xe8\x12\xd3\x75\xfe\xb7\x32\xb9\xf1\x4a\xbf\xab\x92\x1c\xd5\x73\xed\xda\x4b\x3b\x70\x60\x43\x95\xde\xc2\xf5\xb7\x58\xe1\x1a\xdf\x5f\xe9\xb4\xcb\xd3\xf3\x17\x64\x86\x3e\x3c\xe9\x1d\x8b\x9f\x5a\xd7\xbc\x75\x1c\x6e\x04\x7a\xab\x3d\xaa\xe5\x6d\x1c\x15\x08\x53\xb2\xed\x06\xb3\xba\xe8\x87\xed\x72\x9c\x31\xde\x74\x65\xc0\xc6\xf6\x76\xb7\x25\x6f\xe1\xa5\x0b\xf9\x27\x59\x33\x3c\x8f\x51\xb7\xcb\xcd\x3b\x4e\xc5\x6c\x33\xa9\xf9\xbe\xd9\x34\x36\x41\x6e\x39\x39\xf4\x16\xde\x31\x8e\xaa\x9c\x4b\x04\xa3\x32\xa3\x13\xc1\xa8\xc2\xc5\x44\x30\xaa\x3f\x8a\x4e\x61\xf9\x14\x4b\xa1\xdf\x61\xad\x84\x58\x66\x57\x59\x19\xae\x2b\x59\x46\x4d\xc3\x6a\x0d\x4c\xfb\xcd\x86\xb8\xe9\x01\xb4\x77\x6a\x75\x79\x20\xf3\x33\x26\x49\x2c\xeb\xb8\xc6\x89\xa6\x58\x9c\x4a\x6b\x7d\xee\x57\x08\x21\xa6\x42\xa8\x73\xae\x7f\x88\xfb\x73\xd0\x41\x95\x6d\x84\x0e\xeb\x39\x2c\x1b\x6d\xcb\xac\x3a\xac\x2f\x8d\x6a\xbb\xdd\xd8\x1a\x76\xe8\x4f\x82\xeb\x95\x92\xba\xe0\x7e\x23\x27\xe5\xa2\x2d\x85\xd1\xea\x43\x04\x8c\xc1\x86\xd3\x52\x60\xa2\x51\x4c\x14\xb3\x5c\x6d\x2a\x8d\xcd\x65\x5b\x48\x5c\x26\xba\x02\x47\x96\x75\xbb\xb1\xf7\xdb\xd8\x89\x18\x2b\x92\x40\x7d\x03\xb5\xda\xb5\xb2\x6d\x37\x7d\x5b\x66\x3e\x30\x07\x89\x38\x95\xa6\x42\x72\xd2\x55\x58\xca\x34\xbe\x6e\x0d\x14\xb6\x95\x00\xb4\x34\x50\x85\xa0\xed\xe9\x35\x08\xd7\x6e\x48\xd7\x08\x5b\x0f\xf5\x04\x6d\x39\xb7\x19\xc2\x90\x10\xdd\xc7\x68\x52\x74\x3e\x46\x13\xd9\xb1\xb3\xd9\x63\x34\x71\x4a\xc1\x16\xc8\x2c\xd9\x86\x46\x71\xba\x02\x46\xb0\x1f\x4f\xac\xc4\x45\xdb\x58\x45\x93\x16\x43\x29\xcf\x70\x4c\x45\x27\x11\x59\x0b\xfe\xa5\x50\x4d\x15\xa5\x23\xac\xdc\xd4\x8a\x79\x53\xdf\xd6\xbf\xa8\xaa\x97\x60\xd8\xbc\x05\x00\xa0\x25\xc5\xf1\x53\x13\x10\x21\x36\x66\xe5\x58\xa7\xaf\x38\x89\x8a\xc0\x9d\x01\xb2\x4a\x4a\x34\x30\x40\xe5\x82\xf7\x6d\x37\xe1\x0c\xdc\x41\xe2\xb0\xae\x92\x8b\xa8\x7b\x99\xaa\x72\x15\xa5\xcf\xfe\xa3\x36\x08\x10\x60\x2b\x35\x78\xec\x8f\xe2\x24\xeb\xba\xad\x01\x70\xec\x00\x70\xaa\xd4\xbb\x44\x2a\x46\x36\xb7\x81\xf7\xed\xb8\x23\x58\x89\x55\x5e\xe6\x85\x7c\x04\xba\x9b\x17\xe5\x00\x16\x5e\x34\x67\x0b\xc4\x9f\x15\x18\xf9\x45\xf5\x9d\xdd\xd0\xde\x8f\x73\xe1\x91\x71\xab\xa4\x37\x90\xb4\x3a\x70\xca\xba\xdd\x5d\xa1\x47\x0b\x1d\xda\x38\x28\x0f\x45\x93\x6e\xb7\xb6\xc8\xa5\x35\x75\xf2\xd4\x15\x65\x17\x4b\x9a\xa1\x28\xe4\x58\x54\xe7\x51\xa4\xc4\x96\xf2\xd2\xc5\x60\x0b\xf3\x52\x92\x42\xdd\xa0\xd0\x97\x8e\xea\xda\x0e\x91\x7a\x4e\x5c\x7b\xcf\x89\x58\x7a\xd2\xac\x63\x06\x69\xf5\x39\x71\x95\xf8\x83\xbd\x48\x2a\xce\x2f\x97\x7b\x15\x8d\x69\x8d\x2b\x4a\x04\xe0\x75\xe2\x16\x2e\x92\x9b\xad\x87\x64\x2f\xc3\xe8\x75\x21\x70\xe5\xa5\x32\xce\x5c\xf8\xc6\x99\xee\x4f\xb8\x28\x1b\x67\x2e\x6a\x8d\x33\x17\x9b\xcd\xa2\x6c\x9c\xb9\xf0\x55\xe0\x8b\xe4\xa2\x81\x71\xa6\x97\x5e\x32\x9e\xc1\x95\x94\x23\xd0\x16\x2e\x00\xbc\x76\x8c\x33\x17\x25\xd3\xc9\x85\x36\xce\xf4\xbe\x8f\x16\x55\xe3\xcc\x6b\x6b\x9c\xb9\xd8\x6d\x9c\x59\xee\x21\xac\xdd\x14\x23\x5c\x88\xc9\x69\xe3\xcc\x24\x05\x60\xb3\xa1\xe2\x7f\xce\x5b\xd3\xd9\xbe\xb7\xa6\x83\x22\xe1\xfe\x06\xd9\x58\xbe\x7b\xf7\xf2\xfb\x6f\x52\x96\xf7\xcd\x40\xe3\x1b\x3c\x1b\x46\xcb\x3f\xe5\xc7\xe9\x5f\x7f\xc5\x11\x3c\xcf\xe8\xf4\xfd\xf0\xab\x1b\xfd\x06\x93\x47\xc3\x71\x64\x1d\xae\x9c\xbf\xfe\xac\x3b\xd1\x21\x25\xa2\x3f\xfb\x0c\x2c\x8c\xfe\x7c\xe9\x70\xb7\x7f\x5e\xba\x3f\x66\x98\x45\x30\xea\xa6\x4a\xc3\x11\xfd\xd9\x79\x2b\xeb\x6a\xb0\xb2\x0d\xbf\xc8\xde\xa5\x8b\x68\x02\xa3\x5c\x20\x74\xa9\x04\x88\x86\xe3\xf1\xd7\x30\xc2\xf3\x08\x8e\xc7\x0f\x1f\xc1\x3f\xc1\x71\xa4\x88\x50\x34\x99\x4c\x24\xaf\x00\x6f\x4a\xf5\x07\x30\x6a\xb7\xa3\x09\x1c\xff\x27\x8c\x66\xf8\x32\x82\x9c\xad\xd1\x04\x8e\x8f\x07\x30\x9a\xea\xf1\xef\x54\x01\x19\xd4\xd5\xa3\x0c\x2f\x30\x11\xa0\xfe\x6b\x02\x05\xdc\x5f\x7e\x91\xbf\xdc\x11\x7d\x0d\xc7\xb5\x23\x29\xea\x7d\x0d\xc7\x11\xbd\x44\x2c\x4b\xaf\xf7\x0c\x5c\xfd\xdf\x6d\x86\x6f\xe1\xab\xe1\xfe\xc9\x19\xf2\x44\x26\x38\x4e\x2f\x10\x47\x4c\x74\x35\xd9\xca\x11\xa8\xa9\x64\x88\xcb\x31\xfe\x17\x8c\x9c\x27\x50\xf5\xa1\x87\xac\xf7\x9d\xfc\x4d\x99\x9e\xf6\xf1\xb1\x98\xb7\x1a\xa1\x9a\xce\xc4\xfe\x33\x1e\x47\x5a\x6d\x2f\xc6\xb2\xbf\x5d\xd3\x05\xf9\x0f\x28\x20\x3c\x94\x00\xc6\xe3\xe3\x87\x30\xc2\xb3\x48\x7e\x1b\xc0\x71\x54\x88\xa9\x72\x85\x65\xb9\x5e\xaf\xf1\x43\x71\x6e\x76\xed\x79\x7b\xe7\x81\xe8\xa9\x5e\xfe\x43\x0d\xbd\x51\xdd\x7f\xd7\x75\x8b\xf1\x95\xc2\xb2\x88\x21\x8a\x95\xf1\x0f\xd2\x5e\xe8\x98\xf4\x56\xf2\xca\xe9\xc5\xb3\x5d\x3c\x92\xe7\xd0\x4c\xdc\x78\x32\xea\xbe\xd5\x4f\x5b\x2a\x6f\xa4\x28\xfb\x4f\x75\x78\xc7\xc7\x8f\xa0\x38\x32\x8f\xa4\x46\xb2\x87\x49\x8e\x18\xd7\xc3\x92\xcd\xa5\xdf\xa1\x82\x1e\xaa\x23\x56\x57\xf3\x80\x52\xb6\xb5\x02\x64\x7d\x13\x0b\xb6\xe2\x78\xb6\xbb\x4d\xe1\x28\x68\xeb\x5d\xe1\x2c\xeb\xcd\x8c\x42\xd1\xd6\xac\xf5\x6c\xdb\xd7\xd0\x71\x0d\x6c\xda\x47\xa4\x97\x7e\x3c\x91\x9b\x18\x38\xc7\xbf\xfc\x42\xda\x6d\xf7\x30\x1f\x7f\x0d\x8f\x07\xf6\x8a\x16\x25\xd5\xab\xba\xe3\x1e\x3f\x34\x17\x39\x70\xc1\x43\xc8\x88\x78\xf7\x59\xdf\x9b\xaa\x97\xac\x9a\x4b\xb4\x58\x8b\xfb\x15\x11\xf4\x81\xbf\xc5\xe7\x99\xca\x0e\x35\x8e\xfe\xef\x74\xcd\x72\xca\x86\x83\xff\x1b\x99\xce\xef\x11\xdf\x67\x40\x7c\xc7\xf7\x88\xef\x1e\xf1\xdd\x23\x3e\x59\x78\xbc\x03\xf1\xd5\x7c\x57\xd0\xd4\x18\xf6\xa0\x88\xc6\x1c\xe5\xb1\xb9\x89\xe2\x6c\xb9\xd7\xf0\x00\x6e\x53\x9e\xea\x25\xcd\x66\xd2\x2d\x56\xb6\xd3\x87\x38\x9a\xe1\x7c\x95\xa5\xd7\xc3\x36\xa1\x04\x9d\x34\xc3\x6f\xe2\xd3\x32\xcd\x9f\x5f\xa6\x59\x34\x9c\xa7\x59\x8e\xb6\x5f\xc1\x0b\xc4\xd3\xe1\xcd\x85\x14\x1f\x04\x7a\x1a\x7e\xb4\x38\xd3\x5f\x9e\xe7\xd1\xbe\x44\x85\x1f\xe1\x20\xfc\x05\x49\x4b\x57\x6f\x5f\xfd\x29\xfb\x79\x45\xf6\x49\x4b\x15\x19\xa9\x5e\x24\xaa\x48\x4f\xae\x4c\x64\x04\xa5\xa6\xc2\xd1\xad\xc8\xd8\x9f\x6e\x47\xc5\x02\xcd\xf6\xcb\x61\x55\xf2\xb5\x9f\x3c\x15\xe7\xc0\xa3\x15\xff\xbe\x8b\x56\xe8\x36\x01\x5a\x11\x22\x38\x7a\xc1\xc8\x34\x95\xb2\xf9\x1e\x90\x8a\x6c\x38\xc2\xde\x24\x0c\xfb\xd1\xad\x61\x3f\x0a\xc0\x36\x34\xee\xa1\x47\xe3\x18\x95\xd8\x41\xf9\x70\x45\xfa\x23\x4f\xcf\xa5\xe2\x5d\xaf\xd8\x9a\x64\x48\x2e\xb1\xa6\xdf\x91\xb5\xae\x17\xeb\x37\x28\x36\x5d\xd1\xc5\xe2\xed\x4e\xef\x8a\x69\x66\x5e\xec\x64\xb3\xc2\x7d\xdf\x34\xb4\x21\x83\x9b\xf0\x1a\x05\x37\xe1\x82\xf5\x61\xa1\x0f\xab\x94\xcc\x64\xbc\x19\x6f\x5d\xff\xc3\x15\xfc\x65\xce\x6f\x54\x9a\x83\x6c\x6e\x67\x19\x68\xee\xad\x40\x19\xc0\x23\xf8\x9f\x3b\x09\x5e\xd0\x5a\xdb\x52\x49\x19\xfc\xc1\x71\x71\xb4\xfc\x47\xd9\x93\xa0\xd4\x42\x3b\x06\xf9\xb5\x95\xfd\x7f\xa9\xe6\x7b\x74\x1d\x82\x6c\xac\xf6\x4b\xb5\xdd\xf0\xb2\x7e\x03\xc7\xd6\x3e\xd4\x46\x46\x93\x0d\xb4\x78\x4e\x66\x8d\x49\xbd\x26\xf2\xff\xe5\xd0\xf8\x8f\xa0\xee\x9f\x92\x96\xe9\xe3\xfc\x89\x68\xd9\x97\x44\xc3\xfe\xdf\xb3\xff\x9e\xce\x1e\x5c\xd4\xd0\xb0\x74\x85\x7d\x7a\x53\x28\xeb\xbc\x30\xc8\xe2\x83\x17\x70\x51\x7c\xd0\x97\xfb\xa9\x63\x3d\xff\x67\xbd\xb0\xc5\xb7\x10\xdd\xba\xc2\x7c\x69\xe8\xd2\x32\xcd\x97\x4a\x9a\x14\xe4\xc7\x62\x07\x68\xee\x3c\x2c\x6e\x2f\x74\x38\xee\x77\x86\x4a\x98\x14\xf9\x8a\x62\xa9\xe3\xeb\xbc\xf3\x78\x68\x2c\x54\x5e\xa0\x96\x50\xa9\x8b\x39\x42\xe5\x66\x40\x05\xe6\x2f\x91\x61\x4b\x3f\xff\x53\xd1\xaf\xda\xa8\x28\x05\x09\x76\x38\x82\x65\xad\xe1\x00\x8c\x0a\x1e\xc3\xd0\x6a\x86\xd2\x19\x25\x99\x8b\xbc\x8a\xb1\x4e\x7c\xb2\x15\xa8\x5b\x74\xb6\xbf\xae\x3f\x98\xfd\xf5\x2f\xab\xb0\x27\xfb\xd7\xec\x3f\x82\x6b\x36\xb5\x1b\x7e\xf0\x9a\x95\x8f\x70\xf9\x8c\xbb\x7c\x9b\xf7\x0e\x74\x8b\xa4\x26\x5f\xf8\xae\xfc\xbb\xc3\x74\x40\x7f\xd9\xb5\x58\xae\x48\xd4\x2d\x76\xb6\xb6\xae\xbb\xa4\xfb\x6b\x8b\x25\xdf\x5f\x4b\x6e\x49\x83\xa5\x51\x66\xe7\x7b\xeb\xa9\x2d\x6d\xb0\x2d\xa8\x21\x40\xef\x48\x38\x67\xbf\x9e\x7b\x76\xdf\x18\xea\x77\xb5\x4e\x73\xe4\x0a\xab\x92\x70\xfa\x7a\xa1\x9a\x77\x5d\xc9\x07\x3d\xd2\x62\xe6\xf1\xd7\x82\xed\xb4\x9c\xfb\xe4\x96\x62\xb3\xe5\x07\xca\xc0\x76\x8b\xb0\xbf\x05\x3f\x10\xe6\x03\x5a\x3b\xf9\x80\x7a\xc7\xae\x46\xc4\xdf\xf1\x5f\xd0\x4e\x5f\x85\xa3\x13\x4e\x48\xc8\xce\x83\x26\xa4\x6a\xcb\x91\x26\xa4\x6a\x65\x0f\xf3\x84\xec\x30\x23\x81\x6b\xa7\xb8\x6c\x30\x02\x33\x93\x2c\x6b\x95\x2e\xd0\xdf\x5f\xcd\xe7\x39\xe2\x70\xea\x7e\xfc\x59\x7f\x9c\x27\xa8\xbf\x40\xfc\x1b\xba\x26\x33\x4c\x16\x4f\x33\x8c\x08\x7f\xa3\x02\x9d\x2f\x93\xb9\x32\xab\x9a\x25\x73\x69\x9a\xb5\x4a\xe6\xda\x40\xe9\x22\x99\x1b\x43\xa3\xcb\x84\xd7\x42\xb8\x4e\x2e\x4d\xb5\x45\x72\xa9\xdb\x9e\x27\x65\x57\x63\xd1\x42\x4e\x7a\xb3\xd1\x43\xc4\x84\x98\x75\x38\x4b\x6e\xb6\xf0\x2a\x71\x83\x4f\xc3\xe7\xb5\xc9\xc0\xae\x40\xdf\xec\xe2\x49\xc4\x50\x26\xe3\x24\xcb\x60\xab\xdd\x6e\x94\x9e\xe7\x34\x5b\x73\xfb\xdb\x44\xcd\xbe\xaa\x8b\x89\x7d\x95\x5c\x1d\xdc\xad\x34\xea\xb0\x3d\x27\x49\xf2\x7c\xb3\x29\x7a\x16\xbf\x95\xf1\xc8\x87\xe4\xaa\x6e\xdd\x5a\xcb\x5e\xf2\x41\x2f\xbd\xf8\x4b\xac\xfd\x55\x9f\xca\x1d\x53\xc1\xb8\xbb\xdd\x78\xd9\x4b\xfc\x6f\x3a\xd4\xed\xf7\xba\x59\xb0\xf0\x1d\x5d\x81\xed\x22\x49\x47\xab\xe1\x02\xa6\xdd\x6e\x7c\xa6\x2d\xd1\x16\xca\xc8\xf2\x6d\xb2\x3c\xca\xe4\x0c\xa4\xfb\x47\x92\x24\x58\x8c\x7e\xcd\x69\x4f\x62\x69\xf1\x41\x0d\xff\x55\xf2\x32\xe5\xcb\xfe\x05\x26\xf1\x39\x5c\x1e\x2d\x40\x4f\xfd\x4e\x3f\xc4\x03\xb8\x04\xf0\xd4\x2f\x5f\xf9\xe5\x47\xab\xde\x02\xb4\x70\xb2\x78\xf2\xaa\xdb\x3d\x7d\xf2\x6a\xa4\xb1\xfb\x70\xf1\xe4\xb4\xdb\x7d\xf5\xe4\x74\xa4\xa8\xc2\x30\xdf\x6c\xd4\x5f\x2a\x38\xb3\x19\x59\x4f\x55\x2f\x86\xf3\x7e\xcf\x70\xde\x35\x1c\xce\xbb\x6e\xf7\xfd\x93\x77\xa6\xf7\xc5\x93\xf7\xdd\xee\xbb\x27\xef\xed\xf0\xc4\x70\xd4\x9f\xdb\xa8\x18\xc2\xe8\x4c\xdb\x06\x9e\xf7\xe2\xb7\x47\x2b\x30\x3c\xd3\x56\x8a\x53\x44\xb8\xb4\x63\x4b\xf0\xe8\xed\x51\x2c\x7a\x79\xf0\x70\xf8\x56\x2e\xf5\xd3\x64\x56\x39\x2a\x75\xc7\xcb\xbb\x30\xc0\xb1\x81\xbd\xfe\x9b\x10\x2d\xe2\xa8\x88\x38\xb8\xd9\xc4\x4f\x8f\x92\x29\x80\x51\x7a\x4e\x15\x54\x0a\xce\xa4\xbd\xe5\xd3\xde\x75\xcb\xae\xe2\x39\xca\xe8\x95\x57\x7a\x74\x21\x4b\xe5\x72\xbe\x14\x3f\x8f\xae\x1f\x4f\x8f\xdc\x0b\xf9\x9d\xba\xca\x6f\x92\xd9\x93\xeb\x16\x4d\x0a\x18\xeb\x6e\xb7\xf3\xb2\xdb\x7d\x33\xd2\x9d\x0e\x8b\xce\x45\xd1\x9b\x6e\xf7\xe5\x48\xd7\x1e\xae\x37\x9b\xb8\xf8\xa5\x2b\x02\x68\x06\xe1\x8e\x6c\x74\x31\xec\x5d\x1b\x73\xbb\x9b\x2a\x3a\x1d\x62\x58\x46\xa6\x43\x0a\xa5\x02\x76\x78\xe6\xb8\x77\xb2\x02\x3f\x4b\xdc\x2c\xd1\x70\x00\x3b\xa7\x21\xec\x9c\x27\x37\x5b\xef\x46\x50\x05\x65\x5d\x8f\x39\x5b\xb8\x1e\x27\xca\xbd\x0f\xe1\xe7\xa3\x0a\xea\x6b\xe5\x21\xc7\xac\xb5\x3c\x5b\x47\x58\x5d\xdc\x27\x99\x3d\x9b\xe5\x7b\x52\x1c\x3e\x3d\xe2\x69\xfd\x88\x35\x6a\x9e\xd7\x8f\x5b\xd5\x68\xe5\xca\x58\x32\xb9\x91\x8e\x01\xf1\xb4\x37\x07\x0f\x1e\x6e\xeb\x2e\xa7\xee\x78\xb9\x83\xc8\xcc\x76\x2c\x55\x70\xfe\x4b\x75\xd7\x9e\xcc\xd4\x88\x42\xd3\x2f\xae\x26\xed\x76\xe3\x20\x14\x5d\xc5\x98\x08\x16\xe7\x35\x1d\xc5\x79\xd5\x53\x2e\x85\x58\x60\xc2\x7a\x4a\x67\xd7\x85\xd3\xd5\xb0\x87\x35\xd5\xdb\x82\x61\x00\x98\x3e\xe1\x30\xff\x18\xef\x4d\xc7\x7a\x8b\x40\x0c\xa9\xb5\xe0\xa2\xa5\xcc\x3a\x4c\x3b\xe8\x68\x0b\xac\xc2\x45\x67\xc8\xeb\x4a\xb6\x10\x15\x86\xeb\x3f\x69\x83\x9a\x59\xe1\xc7\xe1\x16\xeb\x6e\x0a\x5b\x55\x88\xca\x99\x23\x92\xaa\x59\x67\x7d\x2e\x4f\xc8\x12\x8f\x5a\x72\x4b\x58\x21\x49\x1e\xc4\xe2\x7c\x6d\x14\x2d\x03\x0f\xe4\xb5\x9c\xe3\x0f\xd2\x46\xd2\xa9\x09\xca\x31\xce\x05\xda\x6c\x15\xac\x19\x3a\xc1\x09\xf6\x53\x0a\x9d\x00\x3c\x8f\xeb\xc7\x85\x01\x8c\x3b\x6c\xb3\x91\x4c\x32\x9e\x0a\xa6\xc1\xe9\xae\xdb\x25\x7d\x8e\x72\x1e\xf3\x3e\xbd\x44\x6c\x9e\xd1\xab\xa3\xe2\xcf\x9f\x9d\xbf\xff\x6e\x53\x5f\xdb\xd8\x74\xde\x20\xb7\xfb\x54\x57\xc1\x5c\xea\x9f\x4c\x57\x55\x4a\x93\x51\xd9\x48\x9c\xa0\x22\x65\x86\xb5\xe2\xc3\xa3\xc1\x10\xc3\xdc\x94\xfd\x0c\xd7\x45\x59\x3e\x1a\x0c\x73\x98\x99\xb2\x97\x82\xad\x9a\x16\xc5\xd9\x88\x0f\x25\xff\x31\x95\x3e\xa2\x37\xd3\x24\x49\x58\xb7\x1b\xa7\xff\x96\x10\xb8\xfe\xb7\x44\xfb\x82\xcc\x13\x1a\x83\x56\xfa\x6f\xc9\x5c\x7c\x9c\x1b\x0a\xa1\x86\x32\x4c\xa1\xea\x77\xb8\xde\x6e\xdd\x49\x7c\x8f\x09\x52\x24\x2c\xa1\xea\x7b\x29\x55\x48\xc9\xd7\xdd\x86\x11\x4c\x6e\xfc\x6c\x1f\xc3\x01\xf4\x73\x78\x98\x0f\x3f\x97\x6b\xfc\x5c\xd4\xd8\xca\x03\x78\xe2\xe4\xd2\x95\xde\x5a\x49\x92\xa0\x13\xc0\x12\xa4\x39\x34\x89\xf9\x7b\xc8\xe5\x8a\x21\xb1\xa5\x6a\xf8\xb6\x58\x13\x64\x5c\xca\x46\x72\x94\xf4\x90\xcb\x0d\xe2\x52\xca\x91\xa3\x84\x05\x2b\xfc\x1c\x00\xf0\x8e\xae\x6c\x71\xd1\x9e\x78\xe5\x45\xca\x5f\xc1\x26\x5b\x07\x7d\xb1\xf8\xe5\x84\x21\x49\x39\x4e\x86\x23\x32\x41\x9a\xf8\x79\x10\xdd\x50\xa8\x65\x37\xed\x27\x5f\x3b\x96\xa9\x85\x4b\xf6\xd7\x93\x91\xfb\x63\x38\x9e\xc8\x03\x93\x26\x37\xfa\x31\x6d\x48\x60\x31\xf1\xe1\x00\xda\x59\x88\x1d\x12\x55\x85\xdc\xe5\x6e\x05\x71\xb7\xa2\xa5\x28\x3f\xf1\xb7\x83\x78\xdb\xa1\x29\x7c\xf9\xcc\xf4\x88\xc7\xa0\xfb\xe7\x27\x0f\x94\xfe\x5c\x6d\x2a\x16\xbb\x74\xae\xd6\x6e\xa1\x9a\xc1\xb4\x16\x8d\x11\xd0\x8a\x96\x78\x36\x43\x44\x60\xb0\x69\x81\x96\xc4\x15\x73\x06\x90\xb8\xa3\x39\xe2\x90\x3f\xc9\xca\x99\x6c\x78\x2f\x29\x7f\x1b\xf2\xc7\x59\x39\x57\x8e\x53\xcd\x4e\x87\x27\x83\x9a\x71\xfc\xec\x8c\xe3\x1d\x5d\x25\xce\xd4\x8e\x18\x64\x66\x14\x76\xf6\x23\x66\xc1\x17\x2b\xc2\xcc\x28\x8a\xdc\x39\x4e\x35\x3b\x0a\x26\x46\x81\xe7\x31\xe9\x24\x09\xee\x76\x63\xbe\xd9\x30\x8b\x9d\xf5\xf1\x73\x85\x3f\xac\x02\xe7\x4e\x53\x1e\x8f\xd3\x49\xe1\x5c\xe0\x7d\xdd\xda\x63\x0d\xd3\x64\x70\x92\x3e\xa6\x26\xd4\x49\x7a\x74\x04\x62\x9c\x50\x51\xab\xaf\xcf\xa2\xbb\xe2\xd8\xbf\x8f\x7e\x0d\xb1\x16\xd8\xd9\x66\x88\xfa\xdf\xbf\xf8\xe1\xf9\xdb\xb3\xd7\xcf\xdf\x9c\xbd\x3e\xfd\xcb\xf3\x04\xf5\x9f\xbd\x7a\x79\xf6\xec\xf9\xf7\xef\x4e\xab\x1f\x44\x5d\xbf\xc6\x8b\xbf\x3f\xff\xde\x7f\x81\x18\xb4\xaa\x15\x78\xab\x02\xe5\x58\xfb\xe2\x3d\x6c\x55\x7a\x64\x2a\xf2\x77\xf2\xa8\x55\x19\x1d\xd1\x3e\x71\x64\x9d\x65\x6e\x5c\x70\xe5\x29\x8b\x2b\x9e\x8c\x3a\x3e\x9f\x5a\x83\x38\xc2\x73\x96\x5e\x20\xe9\xe9\x9f\xb3\x69\x12\xfd\x9f\x08\x22\xed\xed\xb4\x2a\xe2\x15\x18\xa6\xc1\x96\x5d\xe2\x1c\x9f\xe3\x0c\xf3\xeb\xc4\x9c\x36\x5b\xa6\xfd\xaf\x06\xab\x0f\xc5\x37\xe3\x52\xe5\x7d\x3c\xa7\x6c\x86\x58\xa2\xd2\x8b\x97\x82\xa4\xb9\x59\xfc\x10\xd0\x0b\xa9\x12\x56\x49\x84\x21\x2f\xa1\x69\xd2\xe2\xca\xed\x13\x40\x2e\x8d\xf4\x51\x1c\x3d\xee\xcc\xe8\x94\x5f\xaf\x50\x7b\xc9\x2f\xb2\x27\x8f\xf5\x7f\x51\x3a\x7b\xf2\xf8\x81\xfa\x47\xf4\xf3\xe4\x71\xbe\x4a\xc9\x93\xbf\x3f\x7e\x20\xff\x7d\xfc\x40\x7d\x7c\x20\xab\x47\x02\x9e\xf1\xdd\x11\x72\x87\x1c\xd9\x1c\xb3\xdc\xb0\x36\x72\x7c\x5a\x19\xa0\x09\x86\x3f\x0d\x37\x6f\x20\xb2\xde\x4d\xb8\xca\x8b\x4c\x33\x2c\xfe\xb7\x3a\xa7\x29\x9b\xb9\xaa\xb8\x29\x5d\x5d\xf7\xf4\x93\xb6\x17\xa8\x29\xd4\x2e\xa8\xcc\x73\x21\xf8\xc1\x94\xea\x94\x6e\xcc\xf1\x24\x29\x05\xe2\x91\xb1\x3b\xfa\x38\x57\x31\x3c\x10\x28\x68\x0c\x4f\x06\x90\x39\xf1\x3d\x90\x49\x42\x78\xc2\x1f\x9b\xbf\x4f\xf8\xd1\x11\x60\x63\x3e\x49\xd0\x98\x9b\x08\x1f\x6d\xb6\xdd\x4a\x82\x5d\xea\xaa\x14\x8a\xa9\x8d\x4d\xa8\x6e\x59\x39\x1a\xab\x38\x42\xed\x53\x43\x93\x26\x82\x53\xad\x84\xcf\xe1\x54\xa7\x7d\x51\x81\x73\x2c\x1a\x52\x13\x99\x33\x7a\x21\x36\xc6\xef\x1f\xdc\x04\x23\x68\xbc\x20\x97\x69\x86\x67\xed\x94\x8b\x75\xe6\x6d\x4e\xdb\xf9\x8a\xa1\x74\xd6\x26\x94\xf4\xe4\x38\xcf\xb3\x22\xa0\x4a\x04\xb6\xf1\x5d\x45\x91\x21\xc9\x38\xca\xd7\xd3\x29\x52\x5a\x6a\x31\x9e\x68\x02\x71\x52\x0a\x9a\xd1\x47\x1f\x38\x22\xb3\xf8\x46\x05\x8e\x19\xda\xa4\x63\x50\x6b\xe1\x86\xc6\x3a\x02\x4a\x8d\xb7\xf8\x94\x0f\xc7\x91\x3a\x22\x5c\x9c\x0f\x9b\xb0\xf8\x1b\x2c\x45\x31\x59\x6c\x0e\xd8\x3b\xf4\x81\x0f\xa5\x51\x84\xfd\x24\x43\x15\x46\xd0\xa9\x23\xe3\x72\x56\x6a\xc9\xaf\x6e\xbd\x53\xb9\xd6\xe5\x7a\xea\xc9\xd0\x5a\x71\x88\xd5\x97\xf1\xaf\x4a\x2f\x9d\x0c\xa7\xbd\x2c\x3d\x47\x59\x04\x23\x8e\x79\x86\xa2\x09\x74\x5a\xd8\x59\x3a\xee\x71\x82\xba\x0b\x02\xa5\xec\x08\xe4\xbb\xd6\xb0\x33\x80\x67\x0a\x21\x3e\x35\x23\x08\x67\xcc\xea\x7b\x4b\x00\xad\xe7\x75\x19\xe2\x28\xfa\x3f\xbe\x8f\xb7\x26\x36\x2f\x66\xda\x3d\x5d\xff\x36\x47\x5f\x9c\x30\xcd\x51\xd8\x11\xfc\xf5\x6d\xcc\xe1\x8d\x58\xd6\x61\x20\x94\x18\x1a\x21\xed\xf1\xb3\x05\x5b\x78\x66\x1d\xed\x74\x8c\x91\x9a\x74\xde\xb8\xe0\xe3\x5a\xa4\xea\x45\x45\xc0\x0d\xea\x8b\x7f\xa1\xef\x1c\xdf\xe1\x36\x92\x82\x5d\x8d\x31\x99\x78\x57\x65\xdb\x8a\x72\x79\xc3\xdc\x31\xf2\x7e\x8e\x88\xde\x62\x9b\x0a\x76\x8c\x6c\x9c\x1e\x26\x23\xf5\x0c\x91\x2f\x26\xcb\xaf\xdb\x2d\xf0\x66\x16\xdc\x19\x7f\x4f\xb4\xd3\xa1\xfd\xdd\xd7\x76\x2a\xb1\x17\xeb\xa5\xbc\xd3\xb1\x8e\x89\x52\x5e\x43\x21\x29\x97\x7d\x23\x2d\xe8\x08\x22\xb0\x85\x33\x3c\x7b\x21\x0d\x51\x4d\x16\xdd\xf2\xd0\xce\x64\xb0\xb1\x5d\xf1\x3b\xaa\xf3\x8b\x15\xe0\x1f\xa5\xef\xa6\x8c\x7b\x72\x67\x60\x9d\xd0\x22\x75\x23\x6e\xb0\x98\xfe\x13\x10\xde\x43\xc3\xb4\x04\xfd\x00\xe7\xce\xf5\xce\xd7\x2b\x41\xbf\xa4\x21\xd2\x27\x36\x02\x41\x7d\x9c\xdb\x45\x78\x6b\xfa\xf5\x39\x33\x75\xf5\xba\xdd\xea\x15\x1c\x55\x3f\xf5\x71\x6e\xc1\x54\x7d\x34\x3b\xc7\xdb\x56\x4d\x97\x5c\x33\x76\xda\x12\x45\xae\x4b\x5f\x2d\x4f\xcc\xdd\x25\x65\x7b\x96\x74\x2f\x79\xff\x82\x2c\x6b\x4e\x7f\xbc\x3e\xbe\x7c\xf5\xf3\x69\xd8\xb2\xc6\xda\xd4\x54\x0c\x60\x8e\xbf\x86\xc7\xfe\x2b\x68\xe3\x97\xcd\xc3\x16\xab\x91\x75\x93\x00\x29\xb8\x45\x17\x86\xf8\xdd\x53\x04\xb6\x8e\x23\x93\x4d\x82\x03\x70\x1b\xef\x64\xc6\x3e\x62\x93\xea\x98\x02\xcb\x03\x44\xb0\xc2\x1f\xe4\x4b\xba\xce\x66\xef\x50\xca\x9e\xd1\x2b\xf2\x4a\x46\x71\x12\xe4\x51\x8c\xd7\xa0\x0c\xdf\xd7\x37\xae\xba\x29\x07\x5d\xb6\x33\x4a\xdf\xaf\x57\x71\x94\x23\x76\x89\xa7\x68\xd8\x33\x1c\x72\x04\xfa\x02\xfa\x16\x40\x2c\x3a\x3b\x08\xd7\xd9\x9e\x34\x7e\x0e\x0d\x3f\x02\x1a\x95\x9d\x71\xfd\xfd\x3b\x94\x4a\x74\xe8\x7d\x18\x96\x49\x9e\x6c\x82\xf3\x6f\xd3\x9c\x9f\x53\xca\x63\x50\x91\xa1\xfc\x10\x2f\x5f\x89\xf3\x38\x26\xe9\x05\x4a\x4a\x47\xa0\xa7\x4c\x0d\x27\x5f\xed\x08\x10\xb3\xa3\x35\x22\x33\xd1\xb6\x08\x03\x53\x84\xfa\x44\x7d\xc7\xfb\xe8\x84\x75\xbb\xac\x93\x24\xfc\x04\xd8\x4e\x04\x00\x4f\xfa\x90\xc9\x87\xbd\x66\xad\xfa\xca\xc8\x89\x59\x5d\x29\xe4\x32\x60\x8f\xb3\x42\x81\x3c\x9c\x81\x18\x99\xc6\xc3\x5e\xd2\xf7\xba\x6b\xa6\x0f\x89\xbe\x27\x82\x37\xfc\xf4\x38\x4d\x27\x87\x54\x3d\xdb\xcb\xb2\x6b\x94\x7b\x6f\xf6\x17\x84\x87\x8f\xe8\x11\xbd\x7a\x77\x31\x0f\xe2\xe1\xa0\x4f\xb1\xef\x0c\xf7\xb5\x34\xe7\xb1\x48\xe0\xe3\x7d\xe0\x5c\xa7\x11\x71\xf6\x3d\x7f\x36\x71\x0f\x2a\x98\xd4\x5c\x23\xed\x3c\x62\xfc\xc6\x23\xd7\xf1\xe3\x58\x39\x9b\xc8\xea\x85\x09\x9c\x31\xf1\x69\xde\x95\xbc\x73\xbb\x3a\xda\xe7\x41\x77\x28\xc1\x6a\x74\xa0\x1a\xd3\x2a\xc5\x89\x9b\xd7\x8b\x07\xbd\x15\xc3\x97\x29\x47\x0f\x14\xeb\xeb\x17\x7f\xfa\x53\x1a\x08\x4c\x51\xa4\xad\xb2\xd1\x89\x63\x06\x8f\xc1\x78\x60\xd5\x01\x5e\xb2\x56\x9c\x8b\x73\x2d\xd3\xb5\x12\xd0\xed\xc6\x24\x21\x7d\x35\x0b\x00\x91\xf8\xb5\xd9\x44\x11\xd8\x6e\x5b\xa5\x0c\xe7\x01\xfd\x85\x8e\x1e\x57\xd1\x60\x18\xbd\x64\x6b\x8f\xce\x01\x04\x21\x2a\x7c\x3c\x9e\x40\x92\x74\x06\x10\x27\x9d\x63\x48\xcd\xf5\xe4\xec\xda\xe2\xec\x14\xe6\x09\x1a\x97\xe0\x4f\x62\x70\xd2\x89\x49\x12\xa7\x49\x2e\x51\x73\x0c\x40\x7f\x46\x09\x02\x32\x8a\x92\x0c\xae\x93\xaa\x50\x10\x00\x76\xf8\x66\xc3\xb4\x22\x45\x3e\xe1\x9c\x88\x2e\xc1\x89\xce\x98\xb1\x06\x37\x58\x0c\x81\x26\x6b\x9b\x25\x43\x0c\xa0\x43\xba\xdd\xbc\xaf\xc6\x5e\xfc\x15\x17\xa9\x34\xf0\x3c\xc6\x3a\x64\x28\xdd\x6e\xad\x4e\x46\x85\x10\x6e\xaa\x08\x91\x42\xc2\x7a\xca\xd7\x0c\xd5\x6a\x43\xb6\x71\x18\xa7\x96\x0e\xad\xf9\x77\x9a\x5e\xa0\x0c\xff\x13\xd5\x31\x59\x07\x9d\xf5\xbb\xe6\xb5\xcc\xe0\x5c\x4c\x2c\xe8\xab\xfd\x2e\xa3\xf4\xda\x68\x64\xde\x99\x36\x75\xdc\xeb\x1c\x92\x0d\xd8\x81\xcb\xb5\xc2\x3c\xfd\x82\x17\xcc\x0c\xaf\xba\x64\xb6\x64\xe7\xa2\x99\x5a\x77\xbc\x6c\x59\x9a\xe7\x78\x7e\xfd\x65\x2e\x9a\x1e\x5c\x65\xc9\xcc\xf7\x5d\x0b\xa6\xeb\xdc\xed\x72\xcd\xd2\x7c\x89\xd8\x97\x7a\xc8\xec\xe8\xca\x0b\x56\x14\xec\x58\x31\x5b\xe9\x6e\x97\x6c\xc9\x2f\xb2\x5e\x9e\xce\xbf\xcc\x25\x33\xd9\xd0\xcb\x2b\x66\xbf\xef\x58\x30\x53\xe7\x8e\xd7\x6b\x7d\x91\x92\xd2\x09\xbb\x5b\xfe\xc4\xf4\x90\xe0\x7b\xb6\xe1\x77\xc1\x36\x40\x96\x3c\x38\x3b\xda\xf4\x8e\x1e\x2c\x20\x49\xa2\xb6\xf3\x56\x85\x0b\x83\x19\x1e\x23\xcd\x49\xe2\x79\x5c\xc7\x45\x62\xb1\x46\x38\xc1\x96\x8b\x54\x71\x15\xb1\xde\xa6\x48\x67\x13\x49\x70\x9f\xd3\xef\xe9\x95\x31\x58\xee\x33\x24\x5d\x67\x65\xba\x55\xe7\x7d\x7a\x99\xb2\x53\x1e\x0f\x80\x6f\xde\x7c\x44\x75\x6c\xb0\x63\xb0\xdd\x7d\x35\xf0\x41\x57\x23\x13\x03\x9a\xa6\x79\x53\x54\xa2\x4c\x9a\x9c\x56\x77\x83\x75\x2a\x79\xa9\x6f\x71\x07\xed\xa0\xfc\x67\x2e\xb7\x20\x1e\x40\x27\xf1\x41\x81\x84\xf6\x60\x1b\x72\xd0\x92\xca\xd7\xa3\xe6\xf4\x4c\xad\x68\xd1\xe8\xcb\x59\x50\x33\xa6\xf2\x7a\xda\xef\x9f\x67\x39\x19\xbe\x38\x6c\x29\x65\x83\x2f\x68\x19\x19\xbe\xa8\x2c\xa1\xf8\xf6\x99\x96\x6f\x4d\xa6\x32\x6a\xe7\xa7\xa2\x7d\xa6\x07\x6d\x53\x72\x4f\xfb\xbe\x74\xda\x57\x32\xcb\xd0\xf1\xba\x63\x04\x1f\x01\x48\x12\x36\x1e\x4c\x20\x4e\xd8\xf8\x78\x62\x17\x51\xda\x89\x1e\x7f\x3d\x18\x62\x98\x26\x6c\xfc\x70\x02\xf3\xa2\x24\xdd\x6c\x52\xb8\x4e\xf2\x11\xed\x3d\x1a\xd2\x83\x75\x2e\xa4\xdb\x25\xc6\x4c\x70\x3d\xca\x47\xa4\x9f\xaf\xcf\x55\x61\x3c\x80\x6b\x70\x14\xf5\xfb\xfd\x68\x58\xfe\x3c\x24\x7b\xe8\xe0\x61\x2c\xe2\x9a\xcc\x10\xcb\xa7\x94\x7d\x99\x3c\x75\x31\xbc\x32\x57\xed\x94\xec\xe0\xab\x8b\x5a\x77\xcb\x59\xaf\x05\x87\x72\x30\xfb\xe0\xb4\xfa\x72\xd0\xb4\x1d\x54\x19\x57\x17\x05\x9f\x05\x61\x5f\xdd\xc2\xa1\xd1\xa4\xd1\xd5\x68\x85\x27\x08\xfa\x18\x96\x83\x11\x1f\x3a\x06\x4a\x1c\x00\xcd\x4f\x0e\x40\xff\x22\x5d\xf9\xa7\xe5\x6a\x77\xd8\x59\x64\xed\x51\xc0\x16\x8e\x27\xb7\xb2\x48\xba\x92\x8e\x09\xbb\x56\x8d\x37\x5a\xb5\x0a\x3f\xfa\xd9\x34\xd0\xe6\x0d\xaf\x62\xeb\x3c\x08\xda\x3a\x0f\x5c\x5b\xe7\xc1\x64\x18\x45\xd2\x21\x42\x1b\xba\xd8\x37\x2d\x14\x4e\xb5\xf4\xfc\xc3\x0a\x4d\x39\x9a\xb5\xd3\xb6\x6a\x01\xdb\x0b\xca\xdb\x69\x3b\x3a\x72\x32\xd9\x8d\x9c\x57\xb2\xa1\xa4\x96\x45\x1a\x3a\x5f\xf8\x30\xda\xed\x3f\x4c\x22\xc3\xe6\x67\x25\xc4\x9e\xdf\x1f\x95\xfa\xa3\x62\xe5\xd4\x07\xf1\x68\xf8\x3f\x9b\x5f\xf2\x4d\x6f\xf3\xcb\x03\xf0\xcb\xdb\x07\x0b\x18\x4c\xb5\xe7\xc9\xad\xdb\x7f\xe9\xa3\x56\x12\x5d\xee\x8f\x99\x7f\xcc\x18\xbe\xf8\x97\x46\x45\x41\xee\xe9\xfe\x90\x94\x70\x91\x8b\x4d\xfe\xf8\x67\x85\x5e\xac\xa8\xb4\x8f\x0d\x30\xc2\x19\xcd\xd7\x0c\x59\x8b\xe6\xdf\xc0\x24\xe4\xec\x2c\xa3\xe9\x0c\x31\xc8\x92\x9b\xd3\xa7\xef\x5e\xbc\xfa\x41\x65\x13\x6b\xe9\xe1\x2f\xf9\x45\x76\x9e\xb2\xfc\xc1\x7b\x74\x7d\x45\xd9\x2c\x2f\x0f\x1a\x93\x36\xd7\xb9\x3c\xd8\xf5\x88\x25\xe2\x87\xcc\xca\x1c\x37\x85\x00\x8c\xad\x03\xa3\x6b\x2e\xef\xd4\x41\x7d\x0a\x99\xbe\xda\x6b\x63\x58\x00\x68\xb9\x80\xf5\xd5\xfc\x1d\xde\x9f\x1c\xb6\x9b\x4a\xac\xb9\x58\x67\x1c\xf7\x52\xc1\x9a\x1f\x66\x45\xe1\xf3\xff\x9f\xd9\xbb\xe1\x6e\x4d\x38\x3c\xf6\xdf\x98\x4b\x69\xab\xc0\x8a\xfd\x39\x83\x24\xd9\xe7\x42\x52\x64\x2d\x66\x89\x74\xdc\x8c\xd9\xed\xbc\x31\x9a\x68\x54\xa4\x2b\x0f\xb1\xe2\x94\xaf\x00\x29\x0c\xbe\xe5\x16\xe7\x11\xc4\x52\xde\xaa\x5d\x85\x62\x16\x3a\x81\xe4\x69\x8c\xc0\x10\x6d\x41\xd5\x44\xd1\x98\x13\x81\xad\xca\x78\x93\x3f\xc3\xb3\xa7\xcb\x94\x2c\x90\x36\xac\xa4\x3a\x1e\x71\xac\x3b\xef\x8f\x27\x11\xac\x58\x45\x32\xa4\x97\x5a\x76\xfc\xdf\xe8\x3a\xd7\x56\xee\x62\xa5\xcb\x7d\xea\x59\x00\xeb\x29\x52\x2a\x12\xcd\x23\xd0\x32\x73\x79\x7e\xb1\xe2\xd7\x31\x31\x73\x29\x9d\x17\x7f\x1a\x42\x94\x1c\x36\xa9\x57\xb2\xf1\xff\x4c\xfe\x44\x2c\xc1\x1f\x73\x92\xf6\xfa\xf5\x00\x21\xef\xea\x39\xd6\x6f\xa4\x09\x0a\x1c\xda\x49\xbb\x91\xd2\x2a\x26\xb0\xaf\x61\x4f\x14\xc8\xeb\x77\xb9\xe6\x00\xa8\x5d\xde\x6c\xc6\x13\xe9\xc5\x26\x0e\x34\x03\x32\x50\xc7\x1c\x67\x1c\xb1\xc0\xf1\x96\x29\xcb\xb0\x93\xb2\x6c\x0b\x5a\xb4\xea\x37\xc2\x4b\xd7\x41\xdc\x1f\x04\x39\x54\xe9\x47\x01\xe4\x4d\x9b\x30\x99\x25\x4a\x34\x09\x5e\x44\x39\x03\x99\x93\x4f\x33\x15\x2c\x80\x98\xa2\xb3\x33\x85\x98\xad\x07\x8e\x9f\xc7\x17\x49\xdf\x92\xc3\x71\x3e\x41\x68\x26\x8a\xd3\xeb\x9c\xa7\xd3\xf7\x9f\xdf\x7a\xee\x23\x99\x40\xde\xda\x8d\xb8\xe5\x11\x2d\x1b\x77\x47\x6a\xd6\xf2\xe4\x46\x66\xea\xea\x17\x5d\x29\x86\xa6\x34\xbe\xea\xb9\x54\x20\x22\x00\x59\xa5\xc8\x40\x0c\x1e\x5a\xdd\x41\xc1\x56\x2a\x8f\x61\xb0\x15\xd2\x6d\x3a\x7b\x45\xb2\xeb\x58\x5c\xbe\x30\xc5\x91\x75\x93\x98\x25\x8f\xf6\xe2\x9a\x82\xf0\xf0\xc4\x77\x40\xd4\x0f\x1f\x9f\x88\x48\x7f\xf9\x2f\x20\x64\xb3\x51\xef\xe2\xe6\xf1\x63\xb3\x69\xfe\x0c\xb2\x15\xfb\xf5\x29\x29\xb8\x24\xe1\xe3\xc1\x44\xe0\xb0\xf1\xf1\x04\xa6\x09\x19\x3f\x2c\xd9\x8f\x1a\x6a\x96\x8a\x55\x49\x13\x2a\xea\xca\x9c\x56\x65\x04\xa3\x4f\x29\xc4\xd5\x22\x7b\x4a\x61\x5a\x2d\x34\xd7\x80\xee\x24\xf5\x4d\x49\xc4\x1e\xfa\x50\x28\x66\x5c\xcf\xbb\x26\xd8\xcc\xfc\xab\x1c\xaa\x83\x8a\xff\x5b\xb1\xbd\xf7\x9e\xc4\x9f\xdb\x93\xd8\x2e\xaa\x00\x6b\xd6\xaa\x4a\x15\x20\x77\x97\x4e\xe0\xd7\xc1\x09\x79\x8c\x4e\xc8\xd1\x11\xe0\x63\x32\x71\x28\x05\x99\xd8\x84\xba\x09\x17\xfc\x01\xa8\xe1\x76\x8b\x04\x9f\x08\x46\x82\x0a\x08\x7e\xc0\xbb\x6e\x86\x70\x54\x1d\x3a\x6d\x0c\x87\x32\x3d\x83\xc4\xf8\xa6\xf2\x4a\xb7\x65\x82\x42\x20\x02\xe5\xfb\x5d\xbc\x95\xf4\x39\x55\x3f\xc0\x70\xcc\x27\x76\x68\x31\x4a\xc4\x94\x54\xff\x7a\x60\x48\x3b\x99\x4e\xc0\xad\xc4\x22\x75\x8b\x12\x12\x96\xbb\x71\xe9\x51\x8f\x94\xfc\x25\x5b\xcd\x6f\xab\x98\xce\xe1\xa2\xe5\x47\x72\x0a\xe3\x12\x0e\x3d\x8d\x91\xc9\x71\x78\xbb\xd5\x12\xb3\xf0\x9e\x8e\xbc\xe7\xd0\xdb\xf8\x43\xd6\x2f\xd9\x74\xb9\x26\xef\x6f\x15\x5e\xb4\x31\x86\x2a\xf8\x85\x20\xb7\xd0\xf9\x54\x88\x46\x77\xdc\xfa\x63\xb3\x0d\x72\x1d\x3f\x21\xd7\x70\x9b\x13\x2c\x0f\x55\x82\xeb\x4e\xb0\x09\x74\x09\x89\xfa\x73\x8a\x70\xe6\x99\x26\x1a\x73\x17\x9c\xac\x52\x96\xa3\x17\x44\xda\x28\x0e\x84\xf4\xc5\x62\x0c\x07\x32\x96\x4d\x61\xae\x58\x20\x35\xc9\xb4\x38\x7c\x05\x8c\xd4\x66\x44\x00\xc0\x4e\xba\xd9\xd0\xc7\xc7\xfa\x54\x38\xf9\x9f\xf3\x64\x00\xd7\x49\xef\x18\x66\x0e\x09\x20\x71\xfa\x80\x02\x70\x92\x3f\x4e\x4f\x40\x36\x3e\x3a\x5a\x4f\x12\xae\xaf\x75\x0e\xf3\xa3\x84\x5a\xcc\x9a\x6d\x95\xed\xe3\x61\x82\xc2\xfa\x22\xd2\x62\x5a\x59\xce\x2d\x25\xf2\x75\x25\xba\x82\xbb\xc7\x71\x45\x6e\x58\x5f\x44\x00\x22\x25\x61\xd7\xa8\x95\xa4\x05\xcc\xc3\x92\x05\xcc\x4e\x65\x4e\x90\xc3\x93\x83\x27\x9f\x87\x83\x73\x10\x1b\x3d\x08\xb1\xd1\x8b\x55\x3a\x6d\xea\x54\x78\x8f\xda\xee\x51\xdb\x6d\xdf\x0d\x58\xdd\xcd\xdf\x75\x09\x03\xbe\x7b\xe6\x5c\x31\x30\x8a\x6b\xee\x22\xdb\x71\xe7\x8c\x5e\xf1\x34\x1e\xb3\x49\x71\x03\x4b\x98\xc7\x28\xaf\x0c\x44\xd3\xf5\x6b\x86\x72\x44\x78\x73\xed\xdc\x21\x17\xf7\x30\x8e\x44\x01\xb9\xd5\x0b\xc1\xe7\x97\x99\xc8\x67\x90\x5c\x0e\x11\x07\x7d\x8c\x74\xeb\xd1\x35\xbc\x40\x8e\x70\xf5\xf9\x65\xc6\xaa\x33\x03\x49\xc4\x52\x39\x6a\x0e\xeb\x4f\x60\xc9\xa6\x2f\x69\xf1\x98\xde\x8e\x47\xd7\x87\xb4\x8e\xc7\xa1\x35\x5e\x0b\xb7\x27\x66\x2a\x42\xe7\x2d\x15\x11\x75\xba\xd8\x7a\x08\xea\xed\x1e\x93\x69\xb6\x9e\xa1\x7c\x9f\x25\xa2\x7b\x0c\x0a\xea\xe9\x5b\x12\x1a\xe4\xc4\x25\x8f\x52\xe6\xf6\x74\x34\x98\x4e\x80\xa1\x2b\x3f\x19\x75\xbb\x05\x0a\x44\x05\x83\x37\x42\x01\x7b\x3e\xe6\xbe\x70\x93\x98\x41\x0e\xb6\xb0\x33\x00\x43\x35\xd0\x5b\x6e\xbd\xda\x8b\xfa\xbd\xf7\xc5\xd9\xdb\xef\xfa\x0c\x4d\xef\xd9\x97\x7b\xf6\xa5\x21\x81\xd8\xc1\xe0\x3b\x92\x92\x52\xef\x6a\x77\x2e\x02\x89\x5e\x6e\x81\x34\x7f\x58\x8b\x3a\x31\x06\xb0\x83\xf3\x1f\xd2\x1f\x62\x6c\x4f\x88\xb5\x63\x21\xd2\xb0\xfd\x18\x40\xdc\x23\xb7\x63\x9f\xa6\x32\x20\x77\x30\x58\x5f\xd8\x54\xfb\x50\xe3\x03\x7b\x7b\x18\x5d\xdd\x5f\x9f\xfb\xeb\xf3\x25\x72\xff\x87\x8b\xe0\x58\xb3\x32\x04\x6c\xa1\xfc\xfa\x74\x1f\x9f\x1e\xd4\x2d\xdc\x25\xa3\xae\x24\x89\xde\x79\x38\x08\x40\x2d\x4f\x91\xf7\xd0\x3f\xd6\x69\xd6\xfc\x29\xe4\xfe\x46\xde\xdf\xc8\xc3\xa2\xbe\x1e\x74\x23\xb9\x10\x1a\x94\x5b\x18\x57\x37\x92\x2b\xb7\x30\x5e\xbc\x8e\x96\xf8\x52\x6a\x99\x50\xf3\x45\x12\x54\x9a\x60\x88\x2d\x41\xad\xb9\xcb\xb4\x5a\x72\x7e\xfd\x3a\xe5\x4b\x47\xa3\x56\x14\xc9\xb9\x3a\x3a\xb8\xa0\xae\x4d\xb5\xaf\xc7\x04\x06\xbe\x81\xb6\x57\xd7\xa8\x1b\x84\x4c\x10\x14\x08\x50\x65\x29\x10\x00\x0d\xed\x9f\x8a\xa4\x3e\xa4\x65\xf6\xca\x2a\x20\x62\x06\x46\x01\x53\x54\xc7\xa4\xb5\xc0\x06\xcc\xd5\x81\x42\x04\x80\x63\xdb\x4a\x1c\x29\xa4\xe2\x30\x66\xde\xc6\x20\x73\x9b\x54\xc4\x10\x03\x77\xab\x9f\xa9\x76\x69\x52\xfa\x7f\x46\xe9\x74\xd9\x2f\x5e\xfc\x00\x24\xc6\x44\x6c\xf7\x8a\x48\xfb\x9c\x4f\xa2\x76\x39\x88\x5d\x52\xb3\xb9\x67\x98\xee\xd1\xf3\x1f\x83\x61\xaa\xc4\x22\x4e\xb3\xec\x5c\x5a\xa5\xec\x79\xb8\xd0\xf5\x76\xdc\x44\x0b\x69\x2f\x22\xb5\x55\xef\x08\x61\xf2\x9d\x38\x28\x82\xa8\x19\xca\xe1\x9f\x0c\xe5\x1c\xc8\x40\x92\x59\x89\x7d\xbc\xc7\x39\xf7\x38\xe7\x4b\xc1\x39\x81\x48\x01\xac\x62\x30\xf7\x25\xf1\x77\x8d\xf9\xba\x56\x19\x13\xdd\xa9\xe9\x7a\xf9\xa9\xbb\x8e\x3f\xaa\x61\x47\x6b\x2c\xb5\x77\x72\xa3\x25\xfb\x1b\x0e\xfa\x02\xb7\x7c\x23\x0d\x97\xc0\xf6\x20\xab\xf3\x4f\x87\xed\x32\x71\xfa\x6f\x97\xca\xf7\x1e\xdb\xfd\x6b\x60\xbb\xe0\x93\x5f\xc5\x67\x26\xf4\xd2\x11\x88\x5c\xc0\x62\x0e\x54\xf0\x82\x21\xba\x0d\x1e\xd5\x07\xb6\xa1\xbe\x76\x1f\x4e\x25\x75\xcf\xde\x15\x0c\x4a\x00\x64\x9f\x58\xcf\x75\x90\x64\xb4\x60\x74\xbd\xba\xe7\x53\xee\x6f\xee\xe7\xe0\x53\x9a\xda\x81\x05\x1c\x9a\x2a\x5a\x1b\x3d\x26\xf5\x08\x1c\x3b\xfe\xc6\x15\xf7\x22\x7b\x47\xdd\xa7\x55\xee\x3b\xc0\xb1\x42\xa1\x51\x68\xbd\x36\x9b\xd8\xd4\x39\x8d\x01\x64\xe3\xc2\xe6\x99\x80\x49\x22\x15\xd7\x72\xf7\xa5\x5d\x1a\xdb\xc2\x03\xb1\xc6\x5d\x49\x7f\x15\x16\xec\x33\x31\x5a\xa8\x11\x67\xd5\x94\x63\x62\xa0\x19\x07\x66\x1c\xc9\x7e\x73\xa5\xd2\x32\xcd\x7b\x44\x66\xba\x6a\xf4\x42\x60\xfe\x55\x4d\x3e\x83\x7d\x43\xf8\x2d\x42\x65\x01\x0d\x23\x75\xac\xac\x0a\x94\x42\xb0\x62\x30\xfe\x30\x68\x30\xfe\x70\xd2\xed\xba\xbf\xa0\x36\x11\x10\xd3\x04\x02\x1e\xc4\xe6\x72\x76\xe2\x01\x24\x85\xba\x92\x42\x04\xb1\xa3\x6c\x36\x4a\x52\x7a\x2b\x84\xb3\x4c\xf3\x1f\xd0\x07\xbe\xd3\x70\x81\xdd\x85\xe1\x82\xd8\xf6\x15\x43\x97\x98\xae\x9b\x9a\xac\x98\x7f\x8b\x66\x7f\xf8\xed\x37\x53\xfd\xcc\x47\xe0\xb5\xee\xf6\xd3\x1f\x03\x4c\xee\xed\x57\xee\x79\xa6\x2f\xd4\x7e\xe5\xe8\x56\xf6\x2b\x98\x7c\x36\xfb\x15\x4c\x38\x62\x39\x9a\x36\x25\x9e\x1f\xeb\x7d\x78\x57\x1c\x6c\xe8\xc1\xcd\xea\xab\xed\xa4\x6e\xad\x46\xc1\xe4\x92\xbe\xff\xa4\xd6\xc1\x75\x58\xe5\x77\xe3\x14\xf9\xe9\x44\x16\xb5\xf8\x75\x8e\x7c\x46\xee\x78\xf3\xf6\x6f\xaf\xfb\xa9\x9b\x58\xd9\xd7\x02\x04\x2d\x74\x61\x9a\xd0\xfe\x8a\xae\xe2\x1a\x8f\xc5\x14\x8c\xaa\xae\xfd\xbb\xc3\x8c\x70\x76\xfd\x42\x0e\x38\x96\xc9\xb2\x1d\xef\x4b\x81\x70\xb6\xd5\x04\x5c\x95\x76\xa9\x6a\xb7\x75\xdf\x7f\xcb\x71\x2f\x77\x27\x77\xac\x3f\xc8\xbf\x52\x7c\xaf\x0c\xbc\x27\x8f\x5f\xe4\xd3\xc7\x6e\x81\xdb\x1c\x31\x52\x50\xe1\x08\x46\xb5\x16\x2f\x52\x09\x20\x4e\xfb\x97\x64\xbc\x76\x91\xde\xab\xf4\xee\xef\xdf\xef\xf3\xfe\x7d\xc9\x0a\xaf\xcf\xf8\xb2\x28\x88\xff\x37\xd7\x8e\xed\xc3\x17\xf1\xcc\x77\x91\xde\x5b\x9d\xdf\x63\x95\x3f\x28\x56\x69\x6a\x44\xb5\x0f\xaf\xdc\xce\x84\xea\x33\xe3\x96\x2f\x0d\xb3\x1c\xa0\x48\x57\xfa\xcd\x05\xe2\x3d\x19\x8b\xee\x0e\x94\xa9\x87\x78\x00\xda\x24\xa5\xb7\x55\x90\x96\x23\xc2\x30\x88\xc4\x81\xa3\xde\x6b\x94\xf5\xfc\xeb\x1d\xb7\x04\xde\x2b\x6b\x88\x0c\xa2\xc4\x49\x92\xd0\x11\xb2\xde\xd1\x0c\xf4\x15\x06\x3c\xe5\x31\x3e\x3a\xbe\xd5\x8d\x14\x5b\xb1\x33\x9c\x0d\xab\x0f\x67\xd3\x7c\xc3\xd5\x30\x7b\xe9\x7d\x10\x83\x7b\x82\xd2\x4c\x8b\xaa\xb7\xac\xec\x45\x6b\xb7\xb8\x1c\x4f\xc5\x31\x98\xb2\x77\xe2\x76\x91\x6f\x4d\xf3\x83\xad\x45\xc2\xe1\x51\x0c\xda\x0a\xca\x81\x21\xf3\x7f\x89\xcc\x55\xab\x2a\x65\xd2\x6f\xe6\x77\x17\x1a\x45\x0f\x2f\x60\xd0\x57\xa6\x9d\x9f\x2d\x38\xca\x41\xba\x65\x15\x85\x2f\xcd\xee\x11\xcb\x3d\x62\x39\xf8\x79\xc6\xb5\xe1\x0a\xba\xea\xb0\x60\x88\xf9\xed\xad\xd0\x8a\x3e\xa8\x9f\xeb\xd1\x65\x85\x57\xa1\xd8\xf3\x4d\x1e\xae\xf1\x0a\x35\xe3\xb3\xfc\x60\xeb\x77\x9f\xe4\x29\xb8\x4c\xbc\x2f\x06\xd8\xb2\x7c\x49\xb7\x1b\x93\xb1\xfd\x35\x11\xa7\xb5\xf5\x29\xb4\xdc\x6a\x59\x0e\xf3\x0f\x5d\x31\x7a\x81\x73\x74\x80\x87\x28\x0b\x7b\x7b\x49\x5b\x49\xbe\x44\x24\x66\x60\xc8\xbc\x98\x21\x1f\x1d\x1f\xb8\x88\xfa\xe7\xdc\xc0\x22\xae\x4c\x25\xbe\x24\x71\xc2\xcc\x48\xcb\xaa\xc1\x09\x7e\xcc\x4f\xf0\xd1\x11\x20\x63\xec\xc6\x97\xc4\x93\xc2\x52\x2b\x60\xe8\x09\xb1\xbd\x53\x2a\x67\x1d\xf7\x63\x9a\x10\x39\x55\x19\xe9\x42\xbf\x8d\xde\xea\xe6\xa9\xa7\x9e\x6f\x75\xc7\xf2\xfe\x89\xbd\xac\xe7\x7a\xef\xf8\xdc\x1c\x66\x3e\xf2\x87\x14\x78\x76\x8a\x35\x6a\xef\x6b\xc4\x9a\xde\xed\xc4\x1a\xb3\xe8\x9f\x5e\xb4\xf9\xc7\x1a\xad\x3f\x39\x5e\xf8\x94\x37\x9c\xed\xbe\xe1\xcc\xdc\x70\x76\xf8\x0d\x67\x95\x1b\xce\x2a\x37\xdc\xad\xbe\x0f\xf7\x05\x38\xe7\x32\xbc\x2d\x18\x56\xbf\x29\xe7\x89\x8f\x42\x22\x72\x9b\x3f\x17\xed\x66\x82\x95\x3e\xe8\x4c\xc9\x18\x81\x0c\xe7\x15\x32\x7c\x1f\x8d\xe0\x9e\xff\xdd\x86\xac\x17\x74\xa8\x80\x60\x20\xf5\x34\x89\xce\x29\xcd\x50\x2a\x98\x61\x7d\xb6\xc5\x06\xbd\x9a\xcb\x70\xea\x69\x4b\x05\x1b\x1d\x4b\x7b\x26\xfc\x98\x02\xb3\xfe\xeb\x24\x1d\xf1\x7e\xc6\xd1\x50\xfc\x17\x66\x09\x3e\x59\xc7\x19\xa4\xe0\x24\x3b\x3a\x02\xb9\x5a\xeb\x4c\x92\x03\xfc\xa4\x68\x36\x95\xcd\x16\xb2\xd9\x82\xc3\x79\x82\x4f\xa6\xf1\x5c\x34\x9b\xf7\x7a\xa6\xd9\xbc\x08\x7d\x96\x24\x09\xed\x76\xd3\x6e\x57\x17\x51\x00\xf3\xdb\x5c\x6a\x79\xcf\x3e\x17\x1f\xa0\xd0\xe3\xbd\x9c\x7a\x7f\x4f\xbf\xc4\x17\x95\x03\x5d\x44\x03\xcf\x27\x4d\xfc\x47\x31\xc1\x1c\xa7\xd9\xdf\x9a\xf8\x8a\x1e\xe2\xbe\x5e\x02\x5c\x79\x8a\xa9\x49\x9c\x53\xbc\xc8\x04\x3c\x32\x3d\x90\x01\xaf\x77\x7e\x9b\x30\x21\x49\xd8\x41\x22\xac\x16\x74\x5d\x58\x8c\xe6\xcf\x70\x59\x5c\xba\x83\x36\xf2\x91\x27\x5f\x86\x8f\x3c\x43\xf2\x0d\xe0\x3e\xc8\xd2\x3d\xba\xfc\xa2\xd0\xe5\x7d\x90\xa5\x1a\x53\x99\x3f\x58\x90\xa5\x4e\xa3\x20\x4b\x9d\xdb\x44\x59\xf2\xe1\xfe\x8e\x83\x2c\x35\x4f\x50\xc2\xd0\x0a\xdd\x3f\xe7\xde\xa3\xe7\xbb\x70\x8a\xd1\x0f\x30\x44\x7a\xbd\x44\x9d\x92\xc4\x49\xc0\x68\x8c\x27\x43\x75\x3a\x94\x66\x47\x4c\x1a\xde\xa8\xe5\x1a\x92\x6d\x29\x6b\x91\x3d\x5f\x78\x7b\x2b\x1a\xa1\x8e\xf6\x67\xd3\xf5\xa0\x4b\xc4\x1a\xe7\x94\xbe\xbf\x49\xff\x8a\x37\xe9\xf7\x9b\xdd\x41\x6a\xf3\x4d\xae\xdd\xbe\x3e\xeb\x31\x00\xc3\x31\x9b\x7c\x31\x16\xf4\xf9\x72\x3d\x9f\x67\xf7\x57\xf0\xfe\x0a\x36\xb7\x4d\x42\x09\x2a\x72\x48\x5f\xaa\xf4\xcb\x5e\x90\x09\x27\xa0\xbf\xcc\xcf\xe4\xa7\xc1\xf7\x49\x1c\x07\xdd\x2e\xdf\x6c\x64\x0a\x29\x96\x92\x19\xbd\x38\xc1\x4f\x8e\x4f\x80\x4e\x30\x35\xcf\xa8\x00\x10\x83\x7f\xc3\xbd\x9e\x20\x9e\x68\x8c\x27\x50\xfc\x27\x41\x63\x26\xfe\x62\x93\x84\xd8\x87\x98\xdb\xa0\x0b\x7d\x05\xee\x34\x42\xce\xc3\x92\x76\xb9\x55\x76\x61\xa5\x35\x42\x50\x21\x37\xd5\x22\x18\x0a\x20\x8b\x29\xc4\x6e\xae\x18\x3a\xf9\x72\x22\xed\xc8\xa3\x71\x8f\x50\xee\x11\xca\x97\x48\xd3\x6f\x1d\x0e\x90\x9a\xd0\xed\x42\x0a\xfd\x62\xa8\x37\x65\x65\xad\xe2\xfd\x65\xbb\xbf\x6c\x5f\xc2\x65\xb3\xd9\x53\xc5\x7d\x53\x2e\xe1\x10\x27\x3c\x66\x1e\x5b\x1d\xd7\x33\x06\x18\x6c\x36\x65\xcd\xa1\xdc\xb4\x24\xe0\xd2\x52\x04\x9d\x2b\x97\x88\x2b\x22\x66\x9d\xef\xce\xbb\xb6\x85\xb6\x62\xfd\x7d\x76\x60\xed\x55\x0c\x16\x75\xab\x2e\x2f\x46\x25\xba\x57\xff\x07\x03\xfa\xbd\xdb\x04\xa3\xea\x8b\xd1\xb8\x9e\x30\xb7\x71\xa6\xf1\x60\xb8\xf3\xfb\x22\xfc\x6a\x78\x7a\xab\x78\x12\xf7\x78\xf0\x1e\x0f\x7e\x81\x2e\x7b\x26\x51\x8c\x34\xe1\xfa\x52\xb8\x0d\x4e\x17\x8b\xec\x96\x86\xd5\xaa\xed\x17\x6d\x5a\xad\x86\xf8\xf9\x8d\xab\xcd\xd2\xdc\xc7\xc2\xf9\x44\x5a\xf7\x00\xcb\xaf\xaf\xd7\x43\x10\x30\x0e\x2d\xd3\x73\xac\x8d\x78\xab\xb1\xdb\xcc\xab\x28\xed\x4b\x7b\xe5\x57\x73\x19\xde\x31\xf1\x49\x83\xea\xa0\x77\x9c\x24\x09\xdf\x6c\xf8\x91\xf8\x03\x8d\x06\x43\x7e\x74\xbc\x75\xde\xd8\x68\xa1\x33\x81\x1c\x54\x31\x04\x86\x04\x52\x99\x13\x36\x58\xd4\x41\xb7\xb3\xed\x54\x87\xef\x73\x29\xfc\xd7\xa4\x39\xe6\xf8\x5d\x44\xc2\x92\x13\xba\x35\x42\xbd\xc2\x7c\x49\xd7\xb7\x0d\x0d\xf6\xdb\xe4\x03\xfd\xa8\xec\x9e\xbc\x62\x28\xcd\x21\x09\xa0\xb1\x66\xe9\x47\xe5\xbb\xf4\x88\x0f\x79\x11\xac\x76\xeb\x78\x8a\x4b\x87\x48\xbd\xc4\x02\x23\xdd\xe6\x7a\xe8\xe6\x3b\x4d\xe9\xf9\xc7\x98\xd2\x6b\x47\x87\x83\x68\x69\xba\x5a\x21\x32\x6b\x54\x53\x33\xeb\xfb\x53\xd3\x2e\xd7\xe4\x7d\xa3\x8a\x26\x21\xfb\x01\x29\xa0\x0f\xc9\x8c\xdb\x30\x9f\x6a\xd3\xc4\x91\x07\xe5\xbf\x6b\x9e\x5e\xe9\x80\xac\x28\x07\xa4\x14\x38\x24\x88\xf9\x21\x51\x7b\x0f\x0d\xf5\xda\x30\x26\xe8\x41\xc1\x0f\x9b\x87\x04\x6c\x1a\x73\xad\x79\x74\xa8\x86\xe1\x5e\x3e\x3e\xa2\x71\xc0\xe5\xff\x10\x2f\xde\x03\x1d\x1b\x3f\xde\x9b\xb1\xea\xa6\xd5\xd8\xe7\xa7\xb1\x23\x47\x73\xe3\xf0\x83\xcc\x28\x9b\x5b\xe9\x1c\x60\x86\x70\xc0\x73\x69\xe3\x67\x90\x03\x94\xb8\x4d\x95\x1c\x07\x4b\x6a\x77\x21\x9e\x95\x58\xb8\xe6\xcc\x4d\x35\x2c\x33\xc4\x90\xc2\x14\xe6\x70\x0d\x33\x38\x85\x73\xb8\x84\x33\xb8\x82\x17\xf0\x12\x5e\xc3\x05\x3c\x87\x67\xf0\x0a\x3e\x87\x1f\xe0\x5b\xf8\x0a\x9e\xc2\xf7\xf0\x1d\x7c\x0a\x5f\xc2\x37\xf0\x35\xfc\x15\x3e\x83\x3f\xc0\x17\xf0\x7b\xf8\x2d\xfc\x27\xfc\x0e\x7e\xf3\xb1\x4c\x5f\x6d\x83\x53\x49\x64\xbf\xd3\x3c\xd5\x0d\x22\xeb\x0b\x25\x73\x0c\x3b\x03\xb8\x40\x3c\x10\x77\xd2\x32\x02\xdb\x9d\x80\x05\x4d\x3e\x08\x2e\x6b\x04\xf7\xa9\x20\xe1\x07\xc1\x25\xcd\xe0\x2a\x8a\x7f\x10\x64\xdc\x18\xf2\x9a\xa3\x83\x20\xd3\x86\x90\x15\x3f\x71\x10\xe8\xb4\x11\xe8\x67\x68\x7a\x10\xd4\xbc\x19\x54\x46\x57\x07\x81\x5d\x37\x02\xfb\xad\xe4\x57\xbe\x39\xec\xb8\x65\x07\x80\x3e\x08\xf0\xb4\x21\x60\x32\x3b\x70\xc4\xf3\x66\x80\x15\x9f\x75\x10\xe4\x65\x23\xc8\x7f\x11\x6c\xd9\x81\x63\x9e\x35\x82\xfc\x9d\x0a\xf6\x7f\x10\xe4\x55\x53\xc8\x26\x86\xfc\x41\xd0\x2f\x1a\x41\x7f\x41\x0e\xbb\x25\x97\x0d\xa1\x6a\x7e\xf2\x20\xd8\xd7\x0d\x61\x0b\xf6\xf3\x20\xc0\x8b\x46\x80\xff\x4a\xf1\x61\x67\xee\xbc\x11\xd8\x97\xe9\xa1\x27\xee\xac\x29\xdc\x83\xa0\x5e\x35\x82\x7a\xf0\x21\x7e\xde\x08\xec\x2b\xed\x2b\x7f\x10\xe8\x0f\xcd\x40\x6b\xb6\xfc\x20\xd0\x6f\x1b\x81\x7e\x8d\x57\xe8\x54\xb6\x3c\x08\xf8\xab\xc6\xc0\x0f\x02\x7b\xda\x0c\xec\x6d\x70\xc5\xfb\x46\xa0\xff\x3f\x21\x51\x1c\x04\xf7\x5d\x23\xb8\x6f\x84\x00\x72\x10\xdc\xa7\x0e\xdc\x7a\x56\xf2\x8d\x94\x57\x0e\x02\xfc\xb2\xd9\x80\xa5\x78\x73\xe0\xad\x7e\xd3\x10\xb4\x10\x86\x0e\x02\xfc\xba\x21\x60\x29\x3b\x1d\x04\xf9\xd7\x46\x90\xdf\x2a\x51\xeb\x20\xc8\xcf\x9a\x41\x16\x92\xd9\x41\x70\x7f\x68\x06\x97\xb2\x43\x77\xef\x45\x23\xc0\xef\xd2\x03\x29\xd3\xf7\xcd\xc0\x4a\xa1\xef\x16\x98\xe8\xdb\x03\xc0\x1f\x04\xf8\x9f\x8d\x00\xff\x48\x0e\x1d\xf0\x77\x8d\xe0\xfe\xa4\x24\xd6\x83\x20\x7f\xe3\x40\x6e\xa2\xef\xad\x84\xac\x68\xf6\xec\x77\x0b\xd5\x75\xc6\x51\xf0\x25\xaa\x8d\x1e\x27\x7c\x2b\x2b\xd4\x95\xcb\xe2\x45\x6d\xfb\x27\x89\xae\x50\x57\x2e\x97\xb9\xe1\x52\x38\xd1\x7e\xee\xdc\x35\xf6\x23\x9e\x80\x1c\xa8\x32\x91\x94\xd2\xf6\xb3\x16\x91\xc1\xf2\xcd\x03\x03\x52\x29\x6a\x03\xc9\x2b\x4a\x61\x5c\x24\x90\x2d\x00\x3a\x37\x93\xd3\xde\xbc\x1c\xda\xcc\x51\x6d\xfa\x24\x19\x8c\xe8\x90\xac\xb3\xec\x80\x75\xb4\xaf\x3a\x9f\xec\x40\x55\x97\xc6\x0d\x95\x25\xb3\xea\xc8\x11\x6c\x36\x32\x79\xa9\x14\xc0\xe1\xbe\x08\x3b\x4f\x8e\xff\x7f\xf6\xde\xb5\xbd\x6d\x1b\x6b\x14\xfd\xae\x5f\x21\xf3\xe9\x51\x89\x57\x30\x2d\xa7\xb3\xcf\xb3\x37\x1d\x56\x6f\x9a\xcb\x4c\xf6\xb4\x49\x77\x92\xce\x9c\xd9\xaa\xc6\xa5\x25\xc8\xc6\x84\x02\x34\x20\x68\xc7\xb5\xf8\xdf\xcf\x83\x2b\x01\x12\x94\xe4\xdc\x7a\x99\x7e\x49\x2c\x10\x77\x2c\x2c\xac\xfb\x9a\xb2\xe3\xd3\x54\xa6\xfe\x39\x75\x23\xed\x1c\x9f\x86\x63\xed\x98\x38\x59\x48\xfb\x76\x1f\xba\x3d\x06\x60\x3e\xe3\xf6\x38\x77\xe2\x3d\x43\x4a\x4d\xff\xf7\xeb\x97\x2f\x92\x52\x6a\xd6\xf1\xea\x36\x46\x20\xcb\xb2\x56\x19\x37\xfa\x2e\x5c\x3e\x15\x2b\xd4\x86\x34\x7e\x99\xf4\xcd\xbc\xd7\x6e\x29\x19\xf6\xe7\x85\x26\xed\x0c\xa7\x87\x6e\x1b\x04\x4a\x73\x04\xab\xf0\xef\x7e\xbd\xdf\xfa\x4c\x18\xaa\x7b\x62\x1d\x3d\xb7\x4f\x8f\x76\xfa\xe2\x41\x8d\x46\x1d\x53\x85\xf7\x8c\x8c\x75\x57\x07\xc2\x3f\xb6\x36\x55\xc6\x9e\x02\xa3\xd1\xae\x2a\xd2\x28\x4c\xda\x76\x84\x4e\x80\x2c\x2a\xc6\x10\x59\xdc\x9e\x1c\x5f\x54\xab\x15\x62\xc7\x1b\x5a\xe0\xc5\xa1\x36\xcb\xf7\xdd\xcb\x81\xc2\x46\x6d\x1c\x75\x86\x92\x7c\xc1\xf1\x35\x7a\x93\x97\x6f\x9f\x6b\x18\x32\xfb\xf5\x10\x25\xeb\xfc\xdd\xe3\x66\xaa\x67\xc6\xb0\x43\xc7\xbe\x5a\xfa\xad\xca\x2b\xbc\xe2\xb1\x0a\xec\xc6\xc1\x05\x43\xf9\xdb\x41\xb8\x7f\x69\x56\xc7\x41\x5d\x0f\x7c\xd3\x14\xf3\x52\xb6\xc6\x3d\x0e\x8f\xa7\x66\x79\xbc\x6b\x09\x35\x4a\x10\x91\x6d\xc5\xd7\xf2\x7b\xb9\xc5\xd9\x1d\x43\xff\xae\x30\x43\xe5\x0f\xe4\x82\x56\x64\x89\x96\xce\x60\x82\xa6\x29\x17\x57\x48\x6c\xa1\x67\xb7\x26\x83\x07\x0b\x72\x47\x30\xed\xdf\x23\xb6\xa2\x6c\xfd\x9a\xe7\xbc\x2a\x43\x11\x41\xc5\x7a\xbe\x9e\x4c\xa3\xb2\x5a\x2c\x10\x5a\x46\x69\xa4\x27\x12\xd5\x82\x48\x58\x32\xba\xf9\x3f\x76\x4d\x76\x62\x0b\x31\xf9\xe2\x15\xca\x4b\x4a\xd2\x08\xf3\xe1\x05\x2a\x28\xb9\x2c\x87\x9c\x0e\xf3\xe1\x97\xa2\xd5\x97\x43\xd1\x62\xc8\xaf\x72\x3e\xbc\xc9\xcb\x61\x5e\x30\x94\x2f\x6f\x87\xac\x22\x04\x93\xcb\xa8\x7f\xf2\x10\x25\xe5\x46\xd0\xf8\xde\x4e\x49\x1b\xbb\xc4\x1d\x18\x06\xb7\x1b\x4e\xc2\xe5\x7a\xa7\x3f\x68\x6b\xa4\x52\x5a\xee\x8b\x9a\xc7\x4b\x72\x49\x31\xb9\xbc\xcf\xd6\x30\x54\xf2\x9c\x71\x81\x9d\xda\x3b\x94\x6c\xd4\x8c\x62\x80\x96\xc3\xfc\x32\xc7\xa4\x67\x93\x0c\x70\x07\xe0\x09\xb2\x30\xd0\x0f\xb8\x04\x66\xfd\xf8\x72\xb8\xcf\xe4\xcc\xa1\x0c\x26\x90\x65\xba\xdc\xec\xe1\x19\x7f\x68\xfe\x3e\xe3\xe3\x31\x60\x33\x3e\xcf\xd0\x8c\xdb\x57\x9e\xd5\x61\xfb\x31\x06\x00\x34\x96\xa9\x99\xb1\x51\x92\x8e\x62\xeb\xfc\x9d\x44\x95\xf6\xb2\xf8\x57\x0b\x0c\x0e\x05\x0a\x0e\x95\xd1\xe5\xfb\x9f\xb2\xea\xee\xdc\x6a\x55\xed\x45\xf8\xa6\xe2\x7f\x45\x68\xf3\x6d\xce\x51\xc9\x0f\x3c\xef\xb7\xb6\xc1\xaf\xf4\x42\x1c\x9f\x82\x7a\x0f\xe2\x57\x63\xc8\x07\x55\x3f\xbb\xe6\x61\x0d\x3f\xbf\x4e\x53\x9e\x97\x6f\x8f\xed\xa3\x1f\xaa\x22\x9f\xe6\x4f\x60\x25\x7a\x95\x97\x57\x19\x4a\x58\xbe\x40\xe2\xaa\x14\xc5\x6b\xc4\x79\x81\x96\xea\x87\x6f\x25\xc7\xd0\x25\x22\xca\x7e\xf2\x55\x45\x38\x5e\x0b\xf0\x63\x6f\x63\x2a\xc8\xda\x52\x9b\x2d\xc9\x84\x7a\xdf\xab\xf5\xc3\x28\x2f\x8a\x08\xe6\xa0\x79\x18\xa8\x0b\x53\xdd\xfe\x6e\x98\xeb\xe7\xcf\xf5\xb3\x76\x06\xca\x1b\xcc\x17\x57\xb1\x4a\x44\x9b\xe9\x74\xc4\x77\x8b\xbc\x44\xc3\x49\xda\xd0\xcc\x17\xac\xda\xf0\x38\xd2\x0f\x3e\x44\x60\x20\xab\x9c\xa6\xe2\xbf\x08\x91\x65\xd4\x54\x2e\x39\xdd\xc4\xa0\xae\x21\x81\x02\x44\x40\xad\x56\xdc\xba\xf2\x93\x2c\xcb\xec\x85\x36\x0f\xda\xc0\x5c\x7b\x92\x4d\xce\x48\x73\xc9\xc7\x63\xcd\x43\xe5\x19\x9a\x11\x19\x3b\xef\x28\xdf\x6e\x8f\xf2\x19\x4b\x6e\x31\x2a\x96\x02\x38\x94\x25\xea\xdc\xa6\x7c\x10\x37\x5e\x45\xdb\x3b\x3a\x85\x55\x86\x3a\x79\x02\xb5\x85\xa7\x21\x8f\x4c\x8e\xf4\xbb\x15\x49\x29\xcc\xd9\x65\x99\xce\xd0\xbc\x06\xc9\xb9\x44\x99\x4d\x4e\xc2\xd3\xa3\x2c\x63\xc9\xb9\xa0\xf3\x0a\x24\x3a\x13\xb7\x1b\x8d\x46\x71\x99\x1d\x4d\x00\x64\x4d\x8a\xc1\x72\x8a\xe3\x0a\xa4\x55\x5f\x8a\x42\xa4\x4c\xe6\x6b\x20\xae\xb8\x03\x23\xee\x99\xcb\xb3\xd6\x1f\xc4\x91\x43\x0d\x54\x61\xb8\x10\x9f\x74\x2d\x09\x81\x7e\x4f\xa2\x28\x82\x81\x89\x68\x00\x7f\x8b\x6e\x4b\xc1\x55\xae\x5b\xc0\x62\xa6\x3b\xe3\x73\x69\x01\x6e\xa1\x2e\xf7\x82\x7b\xdb\xe2\xd2\xf0\xbd\x6d\xd3\x3c\xac\x76\x9d\x66\xe2\x4f\x98\xbb\xb9\x22\x97\x68\x85\x58\x0c\x06\x68\xc6\xe6\x31\x06\x2a\x6c\x69\x9e\x30\x54\xd2\xe2\x1a\x41\xf1\xd7\xbf\x64\xce\x50\xe7\x4c\x1d\x5a\xb6\xdc\x6e\xe5\xfe\x43\x1a\xcc\x6c\x2f\x8e\xa7\xb1\xf7\xa5\xab\x46\xdb\x3e\x35\xaf\x69\x0c\xd2\x90\xbf\x4c\x72\x7e\x8e\x16\xe7\x1a\x29\x9f\x8f\x46\xad\x82\x18\x08\xc6\xbc\x86\x45\x96\x27\x1a\x3b\x25\xda\x57\x21\xae\x2c\x20\x14\x7e\xa3\xac\x82\xc5\x3e\xac\x87\xc8\x22\xdf\x94\x55\x91\x73\xb4\x94\x78\xec\x9e\xc8\xee\x53\xf1\x18\xcd\x7d\x31\xde\x0b\xe7\xeb\xfc\x2d\x7a\xae\x0d\xc0\xd3\x0e\x7f\x21\xdf\x89\x4b\xc4\xe3\x48\x13\x18\x11\x68\x22\xdf\x6a\x82\x40\x06\x99\x13\xf5\xc4\xb5\x03\x35\xd4\x35\x95\x14\x23\x24\x19\x73\x96\x1d\x78\x0b\x3e\x2e\xaf\x29\xf6\x55\x49\xf5\x1e\x2b\xdf\x82\xac\x6d\x92\x62\x05\x3c\xca\x65\x9b\xd9\x84\xa6\xbe\x21\x36\xab\x48\x72\x81\xc9\x52\x45\x61\x71\x36\x0a\xaf\x62\xec\x73\x49\x1a\xfa\xf0\x8c\xcf\x1b\x62\xa8\xcb\xab\x35\xb4\x91\xb8\x4d\x93\xb3\xfc\x21\x3a\xcb\x25\x45\x94\xbb\xf2\x8f\x5c\xa2\x4c\x32\x1a\x11\xed\xa3\x73\xa7\x2e\x11\x33\xc9\x56\x15\xab\xd1\x58\xdd\x96\xd0\xd4\xb4\x06\xe3\x62\x2a\xfa\xb8\xf0\x2f\x45\xbf\x51\x60\x6c\x75\x19\x10\xec\xe2\x9e\x2b\xb4\xd1\xc7\x7b\xbc\xa6\x4b\xbc\xc2\x88\x95\xc7\x6b\xfc\x0e\xf7\x98\x90\x3b\x0d\x0d\x29\xc4\xc2\x9f\x7d\x4e\xf4\xe3\xd3\x0e\x66\xde\xdf\x99\x69\x6b\x72\x41\x46\xd8\x91\xe8\xf0\xb5\x99\x60\x47\xd2\x88\x05\x4f\x7d\x2e\x40\x56\x9a\x15\x7c\x9f\xf3\x2b\x0b\x9d\xca\xa0\xba\xfd\xd5\xc6\x86\x4d\xce\xed\xba\xeb\xb6\x4d\x92\x7d\x1c\xd5\xda\x15\xf5\x99\xa2\xe4\xdc\xfd\x0d\x7d\xa2\x59\x7c\xf6\x4b\x6a\x50\x0f\x42\xcb\xbb\xf3\xba\x49\x59\x80\x1b\x85\xad\xae\xd2\xd3\x93\x09\xf4\x57\x22\xb1\x05\x3c\xbf\xca\xcb\x1f\x4a\xb4\x34\xbd\xa7\x47\xa7\xb2\xec\x35\xe2\xdf\xb8\x83\xe8\xe2\xa7\x44\xd0\x0e\xcb\xa7\xd7\xe2\xa2\x88\x42\x87\x43\x0a\x19\x3d\x29\x5c\xc5\x7a\x39\x30\xf1\x94\xab\xc9\xef\x6a\xdd\x5d\x1f\xa8\xa1\xa0\xf1\x77\x35\x0a\x32\xc3\xa0\x86\x0d\x8d\xbf\xaf\x75\x80\x83\x00\x75\xfb\xd4\x02\xe4\x81\x44\xcd\xed\x8d\x15\x8f\xad\xfa\xe0\x77\x90\x21\x88\xe5\xa0\x40\x7e\xae\xa1\x34\x3b\xee\xef\xd6\x3b\xc3\x4e\x63\x24\x0e\x06\x2d\x43\xf6\x72\x66\x52\xde\x11\x9a\x59\xd5\x70\x89\x2e\xaa\xcb\xde\x76\xf2\xab\xad\x5c\xf7\xb8\x2b\x88\xe7\xbf\x0b\x3b\xa2\x19\x0a\xee\x47\xeb\x42\x64\x1c\x62\xc5\x40\xb5\xf7\x28\xcb\x4e\x4f\x26\x82\x26\xe9\x7c\x39\x05\xd0\xa1\xa4\x44\xf3\xbb\x3d\x68\xce\xc1\x56\x9f\x52\x28\x36\xb1\x41\x0a\x75\x07\xe6\xfd\x2f\xf2\xd2\xf0\xb9\x68\xa9\x2e\xa1\x28\x7a\x2d\xae\x91\x5b\xf0\x4a\x71\x9a\x4e\x0d\xc1\xf3\x96\xe5\xaa\x2a\x9a\xb2\xc7\x8a\xaa\x46\x4d\x89\xf4\xeb\x72\xfb\x79\x2c\xaf\x9e\x5b\xf2\x9c\x2c\xbc\x66\x9a\x7c\x78\x4c\x2b\xc2\xd3\x09\x94\xd2\xab\xbf\xe4\x64\x59\xa0\x67\x55\xb1\xc2\x85\x1e\xcf\x29\x57\xca\x73\x55\x8c\x09\xf6\x6e\x92\x02\x98\xb2\xda\x20\xe6\xd2\x2b\xf6\x79\x05\x9a\x74\xe9\x8a\x43\xb2\xd9\x5c\x7d\x0b\xf0\xbf\xd9\x6c\x5e\x43\x85\x45\x1e\x15\x45\x40\xc0\x32\x9b\x0f\x64\xdb\x10\xef\x8d\x7a\x87\x84\x93\xde\x4f\x86\x66\xe0\x7a\xc2\x3b\x3a\x0e\xf3\xf1\x7d\x9f\x9c\x8e\x05\xbb\x50\xc3\x40\xcf\x69\xd7\x8c\xb7\xa1\x12\x68\xc6\xce\xe8\x43\x36\x26\x67\xe3\x31\x35\x9c\x1e\x9f\xd1\xf9\x20\x17\x6c\x8c\x86\xa4\xed\x36\x97\xb4\x58\xb2\x44\x0b\x86\xc4\xd6\x5b\xe0\x8d\x48\xb5\x56\xa8\x31\x02\x30\x37\x04\x3d\x02\x10\x8f\x46\xd8\xb8\x27\x8b\xb6\xa0\xe6\x7a\xdd\xb1\xd4\xa9\x85\xa5\x1e\x6d\xcf\x5a\x0f\xc2\x05\xfb\xab\xb6\x02\x93\xce\x3c\x5c\xc8\x8b\x0c\xf1\x18\xaa\xe8\x4e\xb8\x77\x5f\xe5\xc4\xcd\x68\xe7\xab\xa2\x2a\xaf\x64\xa3\x32\x06\x35\x74\x7f\xbb\xe0\xda\x50\x8b\x02\xfa\xb2\xc9\x19\x7f\xb8\x07\x22\xce\xc6\x63\x0e\x90\x16\x37\xf7\x54\x15\xd4\x9f\xdc\xc0\x41\x2f\xb0\x87\x35\x7b\xb3\x39\x64\xd9\x04\x12\xcb\xed\x9f\xb1\x87\xe2\x9c\x99\x21\x4b\x04\xc3\x37\x38\x3a\xb5\x9a\x01\xe5\x34\x19\xe1\xf2\x19\x26\xb8\xbc\x12\x3b\x34\x1a\x29\xf9\x61\x8c\x2d\x39\xca\xeb\xde\xa9\xea\xfd\x72\x11\x71\x62\x8e\x59\xbd\x2d\x83\x26\x83\x87\xba\xf1\x2a\x11\xcf\xde\x5d\xb2\xec\x6b\xef\x2e\xe1\xf9\x80\x7a\x20\x1b\x6b\xec\x21\x7e\xbb\x55\x63\x0a\x20\xcb\xa8\x24\xf7\x64\x20\x7e\x0d\x9e\xcc\x38\xbf\xf9\xd0\xa7\xfb\x73\xa2\x50\xf8\xdf\x5f\x19\x29\x1e\x6b\x16\xa7\x18\x82\x3d\x97\xf6\x6c\x3c\xce\xbd\xb3\x0f\x54\x9d\xe5\xe6\xec\xc5\xd9\x76\x13\xc2\x36\x8f\x51\xb4\x0f\xf9\x08\xb8\xed\xec\x45\x00\xf9\x29\xa2\x25\x53\xf7\x47\x3a\x55\xef\xbc\x41\xac\xe7\x8a\x99\x6d\x91\x4f\xb0\x16\xe3\x24\xe7\x94\x3c\x13\x1c\x3a\xfe\x19\x79\xa1\x2f\x7b\x06\xb1\x7d\x68\x69\x1d\xea\x88\x7e\x06\xce\x8e\xa8\xe3\x30\xaf\x98\xc4\x15\x02\xb4\xc9\xb4\x53\xa7\x79\xfd\x44\xad\x34\x7e\x10\xae\xa6\x9f\x3f\x59\xe7\x2b\x51\xc5\x03\x10\x3d\x9c\x7e\x11\xe5\x70\x9d\xaf\xcd\xeb\x28\x83\x77\xc0\x86\x19\xa5\x44\xc6\x43\xe7\x1e\x6e\x01\x92\xaf\xf2\x08\x22\x70\xc7\xc7\x63\xe7\xd2\xf4\x5f\x67\xaa\xae\x33\x4d\xce\x4b\x84\xc8\x73\xb2\x44\xef\x1e\xf2\xd1\x28\x76\x0b\x24\x55\x44\x05\x03\xe7\x93\x39\xae\x35\x40\xb3\xef\x12\x0a\xec\x59\xcb\x81\xa5\x30\x41\x52\x95\x11\x38\x23\x67\xa0\x59\x31\x81\xee\x89\x89\x07\xa9\xfd\x4d\x83\x8c\xb8\x47\x24\x23\x5e\x57\xf5\x6e\x3f\xdc\xb6\xa4\x45\xb5\xda\xc3\x4a\x2a\xf1\x72\xbf\xb8\xa6\xe4\xd2\x39\x59\x71\xa5\xf7\xe2\x61\xbb\x8e\x31\x7d\x0e\xb8\xd8\x09\x32\xe2\xcb\xc0\x00\x08\xba\xd0\x3f\xce\x09\xa1\x7c\xb8\xc8\x8b\x62\x98\x0f\x17\x45\x5e\x96\xc3\xbc\x1c\xe6\x56\x8e\x17\xbd\x97\x37\xec\x1b\x4b\xe8\xeb\xea\x99\x53\x66\x24\xe2\x6e\x51\x88\xda\xb4\xde\x2c\xf0\x0e\x97\xb6\x6a\x2a\x08\x79\x1d\x43\xa0\x4b\xf2\x47\x0f\x9b\x8a\xd1\x58\x21\x64\xb3\xaf\x2f\xf2\x35\x1a\x47\x5f\x47\x35\x3c\x6f\x20\xe7\x25\x7b\x61\x20\xa5\x95\x95\x34\x11\xfb\xe3\x82\x98\x87\x86\x70\x69\x68\xdc\x56\xab\x0b\x4a\x8b\x38\x0a\x8f\x20\xdb\xe9\xc1\x8e\x4e\x6b\x63\xe4\x13\xda\xaf\xee\x1e\xd9\x4f\xd4\x3e\xbf\x43\x14\x83\x3b\xc5\x44\x41\x04\x6a\x28\xf5\x5a\x3a\x2d\x58\x59\xe2\x4b\x02\x62\xda\x84\x5e\x80\xa4\xcb\x8f\xef\x11\xb8\xb5\x94\x2a\x87\x5c\x80\x8f\x2d\x8c\xfc\xfe\xe9\xab\x67\x2f\x5f\x7d\x77\xfe\xe6\x1f\xdf\x3f\x3d\xff\xf6\xf9\x8b\xbf\x3e\x7d\x92\xb5\x4a\x7f\x78\x11\x2e\x7f\xf2\xf4\xd9\xa3\x1f\xbe\x7d\xd3\x88\x54\x2e\x91\x79\x3d\xcd\x7b\x94\x05\xbc\x7b\x66\xb9\x55\x58\xcd\xa5\x42\x0e\x2f\x15\xd6\xcd\x4a\xd1\x07\xcd\x56\x50\x69\x59\xb2\xee\x63\xd6\xb1\xb0\x38\x0d\x5a\x58\x9c\xba\x16\x16\xa7\x8e\x85\xc5\xc1\xb9\xc7\xee\x97\x77\x6c\xa5\xa2\x6d\x48\x40\x21\x50\x66\x0b\xac\x75\xd4\x82\x48\x00\x98\x5a\x5f\x2e\x2f\xbc\xc4\xbb\xc1\x7d\x8c\x42\xa5\x11\xc4\xbd\xe7\x11\x05\x8b\x23\x48\xdb\x2d\x82\xf5\x4d\xed\x5c\xf0\x47\xae\xc2\xa1\x61\xd9\x47\x23\x94\x90\x7c\x8d\xb2\x2c\x63\xcd\x13\x53\x85\x22\x9e\xe8\x13\x1a\xb4\x45\x0a\xaf\xab\x8b\x72\xc1\xf0\x05\x5a\x0a\xae\x3e\xe6\x8e\x10\xfb\xdc\x98\xfe\x00\x30\x43\x73\xab\xd1\x6e\xb8\xc1\x5a\x6a\x9d\x8a\xec\xce\xc4\x44\xd1\x72\xa9\x25\x2e\x37\xb4\x44\xe6\x67\x8b\x86\x48\x27\x50\xdc\x2b\xf5\x51\x29\x9f\xe6\xd0\x9f\x8a\x14\x59\xb1\x8a\x7c\x4b\xa9\x44\x78\x4a\x86\xd1\x2b\xc8\xf2\x34\xc3\x6a\x4c\xcd\x9d\x08\x54\x9f\x12\x78\x8e\xde\x6d\xd0\x82\x97\xdf\x62\xf2\x16\x2d\xff\x81\x51\x21\x87\x50\x17\x4d\x36\x40\xe2\x3d\xd0\x4c\x71\xe9\x70\xeb\x47\xa7\x10\x97\xf2\xb1\x50\x7f\x5a\x8e\xbc\x85\xf6\x72\xb2\x8c\x23\xf3\x59\xa1\x4b\x97\xac\x87\xce\x27\xd1\x51\x43\x37\xab\x6e\x4d\x4d\xf5\xab\x07\xb5\x12\xca\x63\xbf\x57\xf9\xa6\x76\xb3\x49\x97\x4f\x18\xdd\x6c\xc4\xdb\xdf\x9a\x52\x33\xac\x3f\xbf\x9d\x79\x65\x74\xa6\x1b\xdb\x29\x98\x4a\xf3\x0c\xf1\x67\xda\xad\xd5\x0c\x07\xa6\x5a\xc1\x1f\xae\xd8\x2c\x63\x1a\xad\xcc\xdf\x9d\x7a\xce\x8c\xc1\x34\x32\x1a\xfc\x34\xba\xc9\x31\x17\x7f\xd5\x62\x6b\xf5\xcc\x02\x1b\xd1\xb7\xf8\x43\xd6\xeb\xac\x64\x34\x3a\xda\x35\xb1\x1a\xc0\x73\x69\x9e\x9a\x9e\x6a\x9a\xbf\x4f\x18\xe7\xf2\x4b\x8a\xb1\x6e\x86\x99\x8a\x82\xb4\x13\xcc\xd6\x9d\xf6\xd1\xc4\x70\xc8\x86\xcb\xfb\x9e\xd1\x05\x42\xcb\x98\x27\xff\x78\xfe\xf4\xdb\x27\x8f\xbe\xf9\xf6\xe9\xf9\xe3\x97\x2f\xde\x3c\x7f\xf1\xc3\x53\x93\xcb\x50\x37\xe1\x0c\x5f\x5e\x22\x26\xaf\x4d\x1c\x95\xa6\xcf\x46\x04\x09\xea\x20\x65\x21\x39\x6c\x23\xc9\xc8\x22\x4d\x56\x28\x6e\x45\x2b\x31\x24\x99\x1c\x35\x66\x35\x11\x8c\x51\x86\x6d\x50\x6f\xc8\xb3\xe3\x53\x30\x8e\xc9\x76\x1b\x45\x60\x6c\x22\x1e\xf2\x31\x03\x46\x30\xd4\x55\xa6\xbd\xa7\xb1\x5e\x64\x75\x9c\xd2\xf6\x03\xbd\xdb\x14\x78\x81\x79\x71\x2b\x89\x3c\xb4\x8c\x94\x35\x5a\x6b\xef\x03\x07\xec\x42\x68\x57\x4e\xe2\x81\x96\x09\x78\xd5\x4d\x6d\x22\x65\x22\x1e\x05\x16\x81\xed\x36\x7a\x58\x91\xb7\x84\xde\x90\xaf\xa3\x41\x37\x69\x56\x83\xcb\x22\x18\xb9\xcc\xe3\xf0\xcb\x68\xcc\xc6\xd1\x97\x72\x61\xe6\x6a\x0d\x2f\xd0\x22\x17\x34\x46\x34\x46\xe3\x28\x19\x3e\xa3\x6c\xb8\xa6\x4c\x50\xbf\xe2\x2c\xe4\x9b\x06\x87\x25\x42\xe9\xf0\x8a\xf3\x4d\x7a\x72\xd2\xa1\x5c\xc4\x8d\x39\x59\xd2\x45\x79\x22\xe9\x9d\x45\xf3\x18\x4a\x8d\xa3\x11\xdb\x34\x80\x38\xb5\x84\xa5\x80\xbd\xd7\x94\x12\x1f\xfe\x1e\xbd\x78\xfc\xf4\x5b\x28\x90\x29\x48\xb5\x40\xc7\x70\xa1\x12\xc3\x7e\x05\xea\x5a\xe0\xf4\x95\x7d\x22\xf4\x4b\xd3\xbe\xc1\xfd\x22\xed\x15\x62\x01\x95\xba\x95\xd2\xdf\x5e\xa0\x57\x4a\x7f\xf4\xc4\xfb\x22\xeb\x19\xed\xb5\xb8\xb6\x9d\xaa\x5d\x71\xa8\x6c\x33\x1a\xa9\x1f\x5d\x53\x08\x19\xaf\x2a\xf4\x6d\xea\x0e\xa9\xb5\x59\x4a\xf0\xa0\xf4\x8d\xa9\xff\x5d\x46\x12\x93\x45\xf2\x2d\x02\xe2\x36\x5e\x21\x92\x56\x71\x24\xfe\x8f\x00\x94\xf6\xa3\xe2\xb7\xfc\x23\x02\x50\x6b\xdf\x45\x91\xfe\x33\x02\xd0\xee\x75\xea\x13\xa2\x3a\x7a\x9b\x20\x57\x94\x60\x4b\xa1\xac\xf1\x18\x76\x2f\x43\x4c\xb2\xaf\x20\x96\xe6\xe7\x8a\x51\xea\x58\x40\x01\x18\x3b\xda\x05\x63\x45\xfd\xf4\xc5\xdf\x92\x27\x4f\xbf\xf9\xe1\xcf\xe7\x6f\x1e\xbd\xfe\xeb\x6b\x30\x1a\x2d\x28\x29\x69\x81\x92\x82\x5e\x86\x3a\xc1\x8a\x7c\x61\x10\x4b\x84\x62\xc9\x52\x85\x94\xda\x77\xa3\xbd\xc3\xc1\x38\xa6\xe7\x0c\x95\x55\x21\x93\xe0\x68\x79\x44\x07\xa5\xba\x2f\xbc\x42\xaa\xbd\x39\x92\x40\xfa\xa0\xaf\x0f\xb9\x33\xe1\xe6\x48\x7d\x12\xcd\xbb\x82\x0c\xbf\x46\x37\xfd\x9d\xf3\x2c\x37\xf8\x5e\x93\x54\x16\x90\x59\x65\x25\x3b\x8f\x75\x82\xba\x32\x76\x2b\x0b\x10\x31\x35\x14\xa5\xa4\x24\xa9\xed\x46\xfa\x02\x36\x82\x22\xdf\x28\xce\xbb\xbd\xb6\x91\x15\xf6\x75\xbe\x64\xb3\xb9\x15\xe2\xb6\xbf\xb5\x84\xbc\x9d\xab\xb4\x6b\x65\x35\x0c\x7e\x48\x7d\xd3\x82\x7d\xd7\xbf\x33\x25\x57\x86\x2c\x9e\xa9\xbe\x99\x6b\x01\x10\x7a\xc8\xcf\xc6\x63\x04\x7a\xaa\xcd\xd0\x3c\xd6\x52\xe3\xc0\xce\x48\x0b\x0f\x67\x86\x6f\xae\x18\xbd\xf9\x81\x5c\x49\xad\x8c\x14\x43\x4a\x88\xfa\x36\xe7\x62\xc6\x35\xdc\x5f\x2b\x6c\x81\x32\x08\xd0\xf6\xdb\xed\x83\xa3\x1e\x34\x65\xee\x2e\xab\x48\x23\x3b\x76\xac\x38\xf2\xc5\xdb\x8b\x8a\x11\xc4\x94\xbc\x54\xbc\x61\xe5\x6c\xcf\xf7\x86\x81\x74\x29\x2d\xd4\x99\x54\x19\x23\x8d\xed\xcc\x2c\x24\x36\xd7\xc8\xd0\x7c\xab\xc5\x66\x84\x61\xda\xdd\x01\x63\xe0\x17\x5a\xa4\x36\xf4\x3b\x4d\x83\xa4\x90\x32\x48\xb5\xc4\xd0\x40\x59\xaa\xcb\x16\x0f\x82\x2d\x90\x91\x54\xca\x2b\xdb\x7e\xf4\xd5\xdd\x06\x5e\x3f\x5f\x05\xfb\xb1\xf4\x71\xb8\x23\x8f\x16\x00\xea\xd1\x54\x78\x20\x08\xf7\x86\xed\xf2\xcc\x91\x6c\xe9\xc0\xff\xa9\xd4\x01\x48\x9a\x2f\x9e\xe3\xf2\xcf\xc6\x8c\xf2\x09\x25\xa8\xc7\xb2\xe9\xdc\xda\x5a\x2a\x59\xb0\x16\x39\x3d\x79\xf9\xe2\x69\x94\x65\x19\xda\x6e\xa3\xa7\xaf\x5e\xbd\x7c\xf5\xf4\x89\xfc\x29\xae\x2c\x2a\xab\x35\xb2\x7d\xb7\x5e\x24\xce\x6e\xef\xf2\x46\x1e\x6f\x68\x28\x33\x16\x37\x86\x56\x31\x98\xf1\x79\x8c\xcc\xcd\xb2\xb3\x90\x59\x37\x33\xa6\x9e\x53\xc8\x64\x94\xde\x69\x68\xa6\x99\x9a\x63\x1a\xfe\xf6\x97\x47\xaf\xcf\xbf\x7b\xf9\xea\xe9\xf9\xdf\x1e\x7d\xfb\xc3\xd3\xd7\x91\x0e\xde\x4b\x0c\xf6\x6b\x8d\x47\x60\xb8\x1b\xb3\xf4\x26\xd2\xaf\xac\xd6\xe5\x3c\x47\xa3\x38\xd4\xb1\xc1\x7f\x7e\x69\xe2\x72\xb2\x59\x96\xd1\xed\xd6\x3c\xa9\x37\x39\x23\x71\xf4\x0f\x5a\x0d\x37\x46\x61\x37\xcc\x87\x49\x21\x47\x8a\xc1\x50\x3c\xa8\x43\x1d\x5c\x68\x88\xd7\x6b\xb4\xc4\x39\x47\xc5\xed\x50\xda\x91\x62\x72\x79\xa2\x0e\x10\x93\xcb\x21\xe6\xc9\xf0\xcd\x15\x2e\x87\xb8\x1c\x2a\xb2\x50\x50\xcc\x15\x29\xab\xcd\x86\x0a\x92\x6f\x18\x5f\x54\x7c\xb8\xc6\x97\x57\x7c\x78\x81\x86\x4d\x39\x26\xc3\x55\x25\xe3\x8d\x5e\x23\x56\x4a\xfb\xdc\xd5\xb0\x43\x62\x82\xc4\x50\x91\x81\x0d\xc9\x8e\x4e\x01\xcc\x95\x81\x96\x80\x46\xe7\xe8\xfb\xf8\x28\x23\x70\x30\x0f\x91\xf9\x9d\x19\xfc\xda\x98\xe9\xc5\xc0\xe8\x30\x75\x81\xc4\xac\x61\x33\x3e\x77\x88\x15\x71\x54\xe0\xd2\x4f\x0f\xbd\xe3\x9e\xe9\xde\x79\xbe\xbc\x16\x37\x54\x8a\xfa\xd3\x96\xa1\x98\x43\x62\x89\xcb\xa0\x6d\x75\xc7\x63\xa7\xbc\x86\x2e\x09\x1d\x20\xd7\x98\x8b\xcf\xdd\xc1\xdc\xde\x1d\x8a\xe0\x5b\x4a\x37\xd3\x06\x35\xff\x8b\x62\x2f\x1d\x7e\x00\xcf\x47\x2a\xf2\x55\x19\x41\x06\x99\xa5\xe8\x95\x84\x0c\xa4\x25\xe2\x6f\xf0\x1a\xd1\x8a\x07\xb3\xea\x9b\xea\x72\xc2\x35\x3c\x05\x35\xd4\x25\x69\xdb\x4e\xac\xe7\xe5\x09\xac\x0c\x01\x73\x11\x3c\xf6\x42\xe6\xe6\x6f\x73\xbd\xfb\xb6\xac\x33\x9e\x66\xfc\xcc\x5e\xb9\x4f\x9f\x86\xfa\x57\x7a\x17\x5b\xf5\x8e\xf6\x54\x74\x77\xe2\xde\xdb\x96\xda\xce\x1d\xf3\x50\xef\x2c\x40\x03\x2a\x6d\x1c\xda\xb3\x50\x8b\x95\x43\xc8\x6a\x6a\x28\x04\x65\x0f\x22\x09\xa5\xe5\x2b\x39\x3f\xb4\x94\x68\x47\x2d\x24\x54\xed\x31\x25\x1c\x93\x0a\x35\xd5\xc4\xe4\x76\x74\xe5\x4e\x98\xd9\x57\xda\xbc\xc8\x21\xb9\x45\xda\xf9\xf2\xea\xe9\x9b\x1f\x5e\xbd\x68\xf3\x92\x0c\x9e\x7a\x6f\xac\xdb\xe2\xcd\x5f\x5e\xbd\xfc\x7b\xb7\xc1\x83\xde\x06\x8a\x69\x4d\xf7\xf1\xf9\xb0\x9f\x9f\xf5\xf7\x38\x8d\xbe\x79\xfa\x4c\xbc\x2a\x8f\x5f\x3d\x7d\xf4\xe6\x69\x04\x5b\x88\xdd\x9a\xf0\xf5\x6e\x6e\x6b\xe3\xb4\x4a\x76\x40\xc4\xa1\x76\x26\x6e\x63\xcb\xee\x98\x3a\xc9\xba\x7b\xda\xe1\x2f\x74\xb8\x56\x07\xc1\xe8\xcb\xd4\x7a\xcb\xa5\x51\x09\x0c\x5c\x60\x99\xb6\xd6\xbe\x86\x47\x07\x40\xa0\x7c\x04\x0c\xe0\x75\x24\x06\xa1\x57\x11\x3e\x70\xa0\xce\x6d\xde\x95\x5b\x29\xa9\x55\xa8\x93\x01\x9e\x62\xdf\x4e\xfe\x55\x7e\x23\xbf\xf8\x97\xfa\xef\x98\x5f\xbd\xc6\xe2\x82\xa9\x19\x62\xc3\xbf\xc7\x66\xf5\xcb\x27\x9a\xa8\x8a\xb1\x6f\xfd\x0e\x20\x9e\xf1\x8e\xdf\xc6\xd4\x6c\xee\x35\x7d\xab\x66\x2f\x3e\xc6\x38\x68\x95\x8f\xa5\x7b\xc0\x34\x46\x19\x86\x0a\xb9\x89\x73\x6c\x4e\x07\x2a\xd7\x53\xdf\xe7\x22\x31\x28\x86\xc0\xa0\x60\x10\x81\x1a\x1e\xd2\x40\xde\x22\x51\x1b\x98\x63\xe9\xdb\x93\xfd\x15\x1a\x14\xd6\xfa\xd6\x65\x38\xcd\x64\xdc\x65\xf6\xae\xc3\xdd\xff\xf6\x23\x1c\xf2\x72\x70\xed\x2e\xfa\xa9\x63\x3e\x75\xe5\x40\x31\x90\x94\x72\x8a\x24\xb1\xec\x9f\x9b\x3f\x7d\x76\x6b\xd2\xba\x04\x0e\xde\x45\xef\xea\xed\x1e\x74\x41\x88\x81\x86\x00\x15\xc3\xb9\x1c\x43\x98\xc8\x68\xab\x44\xcc\x0a\x83\xc2\x48\x4d\xc8\x04\x13\x31\x87\xa4\x95\x03\x31\xcc\x68\xc4\x13\x3d\x8f\xd1\x88\x35\x4c\x33\xe9\xaa\xe6\xb0\x56\xcd\x91\xaf\x4f\xa7\x44\x05\x2c\xa0\xd9\xe9\x19\x7d\x48\xce\xe8\x78\x0c\xf0\x8c\xfa\x01\x0b\xe8\x7c\x60\xfb\xb6\x2a\xa6\x19\x1b\x47\x69\x34\x46\x73\x63\x04\xff\x0b\x59\xe1\x63\x20\xb8\xae\xba\x1e\x14\x81\xd3\xcc\xba\xf8\x59\x99\x4b\xd9\xf8\x14\x01\x05\x1b\xed\xb3\xc9\x51\xdb\x49\xbb\x16\x37\x4a\x86\x85\xec\xa5\x60\xe1\xab\x40\x0d\x56\x7a\xb0\xb3\xbe\xba\xd1\x54\x73\xd6\x46\x3a\xd5\xdb\xbb\x23\xc9\xad\x41\xcb\x8f\x83\x7a\xbc\xc9\x51\x96\xe1\x40\xb1\xe8\xbf\x0b\x8f\x68\x27\x30\xd2\xf6\x57\x0d\x83\x6c\x34\xe2\x47\x59\x26\xfe\x4b\x70\xf9\x04\x95\x9c\xd1\x5b\x29\xaf\xf4\xda\x5a\xfd\x59\x04\x8c\x81\x65\xf4\x53\x34\xd6\x06\x8a\x2d\x73\x88\x9f\x22\x58\xca\xcf\xb4\xe7\xf3\xc0\x63\xb7\xbe\xec\x70\x36\xc3\x25\xe2\x68\xc1\x25\xef\xb5\xa1\x1c\x11\x8e\x05\xf7\x37\xbc\xca\x7f\xce\xd9\x92\x56\xe5\x30\x2a\x51\xb1\xd2\x52\xf5\x61\x41\xe9\x26\x1a\x5e\x20\x7e\x83\x10\x19\x6e\x72\x41\x4a\x2a\x4e\xed\xcb\x71\x3e\x8e\x86\x39\x59\x0e\x17\x57\xb8\x58\xaa\xc2\x68\x5c\x8e\xa3\x64\xf8\x7c\x35\xbc\xa5\xd5\xf0\x26\x27\xbc\xf3\x75\xc8\xa9\xe0\xc8\xac\x3e\xe0\xe6\xaa\xd5\x71\x24\x3b\xc6\x8d\xca\x00\x0e\x37\x05\x12\xf4\xcf\x42\xe6\x47\x19\xfe\xd4\x28\x6e\x7e\x12\xbd\xfd\x64\x79\x48\xe7\xc3\xfe\x49\xbc\x45\x68\x63\x7c\x6c\x87\xf9\x8a\x23\xb6\x6f\x1a\x7a\x7c\xcc\xd5\xa8\x15\x09\x8c\x1b\x81\xba\xa6\x56\xa7\x53\x6b\xbd\xfd\x22\x68\x31\x53\x38\xb6\x5c\x2b\x97\x27\x38\x38\xaa\xc8\xd4\xfd\xe1\x98\x25\x2c\x8c\x57\x88\x1e\x30\x97\xe6\x25\xf1\x9d\x54\x5f\x23\xb8\x22\x29\x87\x1a\x5c\xe5\x3b\x58\x43\x06\x1a\x77\x4a\xc7\xdc\x6a\x71\x80\xc1\x89\x01\xc1\x8f\xe0\xf3\xfb\xa1\xa6\x57\xf7\x34\xf4\xea\x7a\xf2\x85\x83\x1a\x7f\xb8\x59\xcc\x9b\xbc\x7c\xdb\x32\xae\xd2\x76\x2e\x67\x2e\x56\x75\x2c\x85\x24\x38\x38\x86\x7d\x67\xec\x21\xb7\x86\x7d\xe3\xb1\x55\x90\xcc\xd8\x7c\x40\x92\x26\xa4\x55\xe6\xfe\xd8\x6e\x8f\x4e\x21\x11\x98\x69\x85\x2f\x2b\xf5\xfd\x68\x62\xf4\x05\x98\x0c\xc9\x68\x14\x93\xe4\x86\x61\xae\xbf\xf5\x87\xd1\x22\xc9\x5b\x74\x2b\x83\xf3\xd4\x20\xf6\x3d\x4d\x3f\xbe\x11\x9b\x6f\x3f\xf2\xf9\x9e\x50\xd1\xa1\x8e\x5e\x9d\x05\xa8\x31\xf5\x94\x8e\x46\x51\x29\xff\x68\x7f\xb0\x32\x9b\x69\xc8\xa7\x46\x13\x74\x75\xc8\xe1\x06\x05\x9d\x0c\xcd\x70\x32\xee\x92\xca\x94\x43\x59\x96\x65\xb6\xfc\xc8\xfc\xdd\x98\x8d\x4d\xcd\xdc\x52\x3b\x20\xbc\x0a\xbb\x87\x9c\x37\x76\x2d\xbe\x01\x8a\x2c\x51\xc8\x4d\x35\xf1\x9c\x37\xc2\x26\xed\x1d\xca\x8a\x37\x0e\x90\x0a\x7c\x91\x84\x5b\x01\xb0\x0e\x0e\x63\xf3\x41\xc7\xe7\xc8\xbe\xc8\xaf\xaf\x72\x26\xe8\x6a\x23\x62\x68\xe6\xa8\x4b\xdc\x39\x2a\x9f\x43\x73\xb9\x76\x5b\x28\xc6\x55\x76\xb7\xd2\xb6\x37\x06\x0f\x6a\xc5\x92\x4a\xbb\x65\xf4\x4c\x02\x57\xdc\x3e\x12\x58\xb3\xbb\x29\x65\xd8\x29\xc5\xd2\xb9\xbb\xfc\x52\x9c\x58\x48\xba\xfa\x8a\x80\x4e\x8a\xa2\x97\x37\x04\x31\x4f\xa0\x07\x20\xcf\xd0\x14\x25\x54\x7c\x79\x4e\x44\x1f\x72\x54\x81\xfb\x9b\x0d\x34\x7a\xc9\x67\xb9\x00\x98\xdb\x8c\xb6\x3d\x83\xf5\x8e\xae\x08\xa8\xe3\x09\xc4\xc9\xf9\xa2\x40\x39\xa9\x36\x2f\x89\x26\x53\x40\x57\x8c\x68\xe4\xfb\x8f\x8a\x22\x82\x77\x4c\xc7\xb5\xe0\x57\x68\xa8\x33\x49\x61\x3e\x2c\xf0\x35\x2a\x87\x94\x48\x95\xff\x52\x75\x85\x96\x43\xca\x86\x15\x61\x88\x2c\x11\x43\xcb\x48\xea\x47\xe4\xc6\x86\x21\x49\xcb\x88\x0a\x4a\xa4\xfe\xb0\xdf\xb5\x96\x03\xa8\xc2\x11\xf0\x33\x22\xef\x38\x71\x21\x8b\xcc\x1b\x67\xe6\xe6\x1c\xb3\x99\x25\xd2\x4b\xa3\x7b\x31\xdf\xb6\xdb\xd9\x1c\xc0\x52\x06\x23\x41\x35\x54\x67\xdd\x55\x2e\x48\xb3\xcd\xae\x6d\x22\xd0\x91\x83\x90\x83\xf5\x34\xc6\xfb\x07\xad\x04\x19\x31\xa4\x44\xdb\x75\x38\x62\x6f\x81\x79\xa4\xd8\x1b\x93\x61\x2e\x49\x8f\xa4\x71\xc3\xbe\xb2\xde\x9d\xea\xae\xca\x73\xf0\xee\x2a\x0f\x59\xe6\xb5\x2e\xaf\x0c\x63\x60\xa8\x95\x60\x30\xec\x7b\x8e\x62\x4c\x03\xd5\x49\x16\x2d\x15\x8c\x0d\x84\xed\x84\x6d\xd0\xe0\xe6\x11\x1d\x16\xba\xce\x29\xc3\x97\x58\x57\xd2\x3f\xda\x1e\xa4\x0d\x70\xdb\xb2\x46\xbe\xca\xf4\x67\xfb\x1b\x7a\x74\x71\xc3\xea\xdb\xa2\xba\xc7\x78\xc8\x35\x4b\xde\x65\x91\x1c\xb8\x65\xa9\x75\xc9\xbd\x27\xa2\x74\x3c\xc5\x75\x74\x8d\xdd\xe0\xec\x21\x43\x8d\x22\x05\x1f\x14\x32\xf7\xd4\xbc\x10\xf4\xab\xa7\x6d\xdf\x64\x57\x88\x66\xaf\xc3\x74\xc7\x55\x11\xd7\x04\x01\x90\x22\xa8\x5d\x6e\x42\x3b\x12\x02\x00\x49\x81\xe2\x30\x1c\x48\xa4\xe6\x17\x39\xf0\xa8\x6c\x2a\x79\x63\xc5\x11\x30\xae\x0c\x0b\x18\x3c\x00\xf3\x01\xdb\x09\x09\xc2\xa4\xa0\x32\x70\x9b\x24\x89\x14\xd4\x03\x19\xf9\xaa\x9e\x6d\x8b\xcb\x6b\xd8\x80\x96\x11\x1c\x6b\x14\x1a\x14\x40\x5a\xd7\xb0\xc8\x70\xf2\xfc\xc5\xdf\x5e\xfe\xf5\x29\x5c\x04\x6c\x9c\x95\x94\x49\x4d\x3b\xfc\xa0\xd4\xb0\x18\x62\x32\xac\xa6\x61\xea\x4d\x90\x34\x9a\x20\x5d\x40\x3f\xfc\xa9\x4b\x1b\x8a\xdf\x86\x16\x94\x94\x6b\x5a\xcd\x8a\x79\xb6\x80\x15\x00\x70\x93\xb5\xc8\x58\x6d\xf3\x6e\x49\xb5\xb5\x4f\x32\xe3\x55\xcc\x80\xef\xf1\xc4\x5c\xd7\x26\x13\xe9\x60\x96\xcf\x61\x95\x09\xda\x59\x3c\x7b\xe7\x0e\x81\xae\x05\xa6\xec\x3c\x1a\xdf\x8e\xc7\x03\x3e\xab\xe6\xd9\x75\xac\xba\x87\x28\xe6\xb0\x94\xe0\x0d\x2b\xd7\x61\xe5\xda\xe8\x70\xc2\x16\xc5\xa4\x31\x18\x46\x60\xc0\xa6\x5d\x25\xd3\x4b\xb2\x30\xd1\x2f\xb4\x25\xfa\xac\x51\x3b\x11\xc8\xed\xa5\x50\x94\x63\x93\x2a\x51\x5a\x09\x2a\xcb\xed\xe6\x60\x00\x48\x49\x13\x9f\x81\x78\xd6\xc8\xad\xfd\xdc\xf8\x8e\x02\xb9\xe7\x28\x80\x5b\x8e\x02\x1b\xc7\x51\xe0\xae\x44\xdc\xf3\xe3\xb6\x9a\x16\x31\x99\xd7\x82\x0c\x79\x2d\x6a\x68\x4d\x95\x5f\xb8\xcb\x71\x36\xe8\x1b\x6d\xd4\x60\x5d\xef\xeb\xb6\xae\xf7\xcd\x15\x1a\x0a\xbe\x89\xae\x86\x7e\x47\x31\xb0\x8a\xde\x7c\x58\x6e\xd0\x42\x30\x71\x9a\x3f\x37\x2c\x9d\x60\xbd\x97\x68\xc3\xd0\x22\x97\xd2\x0a\xb2\x1c\xde\x50\xf2\xe5\x3e\x75\x6e\x19\xd4\xe7\x26\xc3\xef\x95\x08\x41\x0d\x76\xab\x5f\x5a\x67\x30\x52\x72\x94\x2f\xe1\x10\x25\x97\xc9\xf0\xa7\x68\xcc\xc7\x51\x2a\xeb\xc4\x49\x92\x00\x13\x16\x20\x06\xad\xf0\x63\xb1\x79\x23\xfc\xe2\x71\x04\x7e\x8a\x00\x5c\x6b\x25\x47\xbe\x5c\x7e\x8b\x4b\x8e\x08\x62\x50\x93\xae\xd2\x7b\x5e\x1a\x9f\x40\x0e\x6d\xfc\x15\x78\x74\xba\xb3\x95\x42\x28\x4f\xbd\xb6\x0e\x55\xd6\x6a\xfd\x52\xa7\x90\x35\xad\x2d\x71\xeb\x0f\x39\x01\x35\x74\xf5\xb9\x3e\xda\x69\x26\x9a\xb5\x7e\x0b\x72\xa9\xbd\x18\x2f\x98\x5c\x6b\x9d\x2d\xe8\x32\xa6\xb4\x2f\x7b\x87\x6e\xaf\x36\x0b\x96\x36\xd3\x68\x7f\xe9\x4c\xa6\xb3\x7d\x9d\x29\x59\xf2\xff\x53\xf2\x38\x66\x90\x8c\xeb\x51\x03\xf4\x42\x87\x86\x7c\x44\xba\x60\xad\x80\xd8\x90\x27\x92\xe8\x16\x9c\x75\x89\xb8\xa0\xc1\x31\x2f\x0d\x69\x7e\x8d\xf3\xe1\x97\xfe\x9b\xf0\x65\x32\x7c\x8d\x90\xbd\x62\x58\x12\xed\xca\xba\x62\x45\xd9\x70\x89\x78\x8e\x8b\x32\x89\x24\x5b\xb5\x07\x01\x85\x3c\x95\xa4\xdc\xeb\x36\x9b\x1c\x20\x40\xf2\xe4\x3d\x9f\x32\x50\x42\xdb\x09\xa2\xc0\x79\xe9\x24\x76\x54\x9f\xbf\x13\xf3\xb0\xa4\x4b\xaf\x77\xc3\x25\xf7\xdd\xcd\x26\x8e\xb3\x58\xb8\xaa\x71\x70\x94\x35\x9f\x2f\x8b\x90\x27\x44\xe3\xbd\x66\x3a\x0b\x18\xff\x1f\xd9\x27\xcc\x15\x1e\x8f\x46\x5e\xb9\x71\x61\xab\xfb\xdd\x2e\x0e\x1a\x6c\x18\x1c\xcc\xf1\x6d\x08\x0d\x3a\x8d\x94\xb3\x72\x94\x46\x78\x59\xa0\xa8\x06\x2d\x8a\x5c\x33\xdb\x8a\x2c\x93\x3f\x88\x24\xd4\x95\x17\x8f\xa3\xcf\x81\x0e\xb8\xa4\xbc\xe5\x3a\x5c\xe4\x25\x97\x6d\x1a\xca\xca\x75\xc9\x06\x5e\x70\x8b\x6e\x3d\xbf\xa3\x26\x50\x46\xb7\x66\x13\x62\x00\xb4\xe3\x63\x04\x86\x6f\x8c\x75\x81\x1f\x39\xa3\x5b\xd7\xba\x23\x03\x2f\xa2\x46\xb7\xa2\x71\x36\x06\x7e\xa0\x8d\x40\x8f\xc6\x46\x0f\xb4\x03\x70\x74\xeb\x3a\xfe\xc7\xc0\x0f\xcd\xe1\xd7\x6d\xc5\x4e\x68\xce\x20\x9d\x40\x0b\xd8\xe9\x04\x36\x9e\xc4\xe9\x64\x67\x04\x0d\xb4\xdd\xde\xd5\x90\x65\x3c\x51\x72\x04\xa9\xeb\x67\xa8\x44\x5c\x9b\xea\x65\x6c\xbb\x35\xae\x11\x8f\x8a\x5e\xef\x08\x81\xe6\xf8\x15\x92\x01\x34\xa3\x0e\x95\xdd\x34\x67\x00\x12\x6b\xb0\x6b\x87\x89\x81\x09\x81\x73\xa0\x1d\xbf\xc7\x7e\x1a\x6a\x4a\xd3\xfe\x46\x2d\xd9\x0e\xe2\x24\x40\xbf\xe1\x53\x15\xdc\x37\x53\xe8\x98\xef\x97\xc8\xf8\xb8\x63\x54\xaa\x08\x2e\xbb\xe2\xb4\xb4\x23\xb9\x84\xa2\xbd\x7c\x9e\x58\x2e\xd2\x37\x7d\x37\xb2\xbf\xc9\x31\x3f\x5e\x51\xf6\x11\x3c\x53\x2d\xa5\xcc\x1a\xe9\xb3\x2b\x78\x79\x85\x56\x48\x74\x66\x64\xce\x62\x6f\x87\x57\x79\xa9\x08\x48\x44\x86\x98\x60\x8e\xf3\x02\x97\x68\x39\x3c\x1e\x4a\x51\x5d\x0c\xbc\x1a\xda\xff\xc6\xf0\x87\x47\x7c\xbb\x35\x52\xbb\x23\x23\xa0\xe5\xae\xd8\xb6\x29\x9d\xa2\x94\xd7\xed\xb8\x45\x9e\x7e\xdf\xed\x41\x6c\xe6\x51\x96\xf1\xb0\xb4\x5c\x52\xea\x02\xf2\x19\x2a\xa5\xbd\xe2\xba\x2a\xf9\x10\x61\x7e\x85\x98\xa0\x85\x45\xeb\x21\x65\x8e\xf8\x1c\x4a\x22\x20\x1a\x9b\x11\x80\x8a\xec\xa5\xde\x6a\x93\xe1\x5d\xbf\x6f\x52\x55\xee\x70\x12\x8e\x9c\x39\xd5\xef\x27\xf2\x18\xc6\x53\x97\x41\x6c\x33\x8f\x82\x54\xe0\xa3\x91\xd1\x3a\x29\x58\x56\x5d\xbf\x5c\x4d\x83\xa5\xca\x72\x0b\x25\xe7\xe7\x72\x16\xe7\xe7\x19\x07\xf5\xaf\xce\x41\x5e\x40\xee\x33\xca\x24\xa2\x0b\xc4\x72\x97\xb3\x28\x65\x78\x6d\x5b\x57\x52\x99\xe1\xa4\x01\xa2\x76\xa5\xcd\xe9\x6c\x7d\xcb\x06\xb6\x6d\x11\x9d\x46\x85\x2e\xab\xb5\x27\xfa\x6f\x4e\x73\xd4\xe6\xc9\xb9\x17\x8c\x94\x8d\x46\x28\x76\xc1\x51\xa1\x6d\x24\x93\x89\x43\x5e\xd7\x31\x80\x79\xcf\xa2\x5d\xc7\x7a\x63\xcf\x10\x23\x38\xbb\x7b\x8b\x6e\x53\xe5\x91\xa4\xfd\x67\xdb\xf2\x5c\x7d\xbf\x63\x2d\xd8\xb5\x66\x13\x6f\xa8\x8e\xdd\xaa\x64\xe1\x40\x05\x3e\xb5\x59\x2a\x5c\x46\x7e\x0e\x20\x12\x93\x6b\x45\xda\xf1\x75\x58\x6a\x7a\xa5\xa1\x45\x95\x5c\x1f\xc6\x65\x03\xfa\xdb\xad\xde\xc1\x4b\xff\x8a\x88\xb1\xad\x43\x38\x00\x4d\xc6\x0c\xeb\xc1\x90\x21\xc8\x6b\x1b\x57\xae\x84\x39\x80\x34\x2e\xf5\xea\x3b\xa6\x20\xed\x8d\x90\xf6\x20\x01\x6b\x5b\xf9\x20\xd9\x31\x7c\xd7\x88\x3d\xe6\x1d\xda\x04\x43\x6e\x4d\x29\xb6\xa6\xea\xdd\x1a\x79\xc1\xbd\xcd\x21\x1f\x61\x73\x88\x66\x57\x32\x01\x7e\x96\x09\xcd\x38\x24\x1f\xb8\x4f\x8d\x10\x09\x62\x17\x16\x6b\x48\xb3\xa3\x53\x17\x3e\x09\xb8\xa3\xe2\xce\xe0\x58\x87\x8e\xdc\xb9\x61\x20\x94\xb5\xc1\xa0\x70\x71\x10\x54\xab\xf2\x97\x4a\xaa\x69\x44\x03\xd3\x78\xd7\xd7\x16\x13\x2e\x16\xec\xcd\xda\x6c\x53\xc2\xd0\x9a\x5e\x23\xbf\x2d\xf1\x1a\xd6\xc6\x82\x50\xb7\xa0\x04\x05\x7a\x77\xfa\xa6\xdb\xad\xed\x9e\xae\x56\x9d\xee\x1a\xe0\x28\x76\x02\x47\xd8\x72\xeb\x40\x9b\x88\x6f\x28\x2d\x50\x4e\x06\x3e\x84\xd1\x8f\x00\x61\xb4\x81\x30\x2a\x10\x5c\xc6\x21\x4d\x36\x0c\x2d\xf1\x22\xe7\xd6\x8f\x2a\xa4\x45\x26\x53\x12\xd4\x01\x67\x59\x46\x6a\x48\x3f\x11\x80\x2a\x19\x7f\x63\x7a\x64\xce\x46\xa1\x67\xa9\xbb\x22\xdd\xf9\xc7\x18\xd8\x20\xe0\xfb\x60\x18\x03\x78\x34\xa9\xa5\x12\x0c\xc7\xb6\x59\x0b\x3c\x8d\x50\x4a\xc1\x8e\x7c\x18\xa4\x16\xd5\x03\x9d\x16\x58\xda\x36\xc4\x6d\x50\x5b\x00\xda\x49\x76\x9a\x54\x2f\x8a\x1b\x38\x96\xf1\xd9\xf7\x18\xaa\x98\xc0\xc5\x1f\x3b\x38\x8a\x9a\x82\x8a\x58\x9c\x11\x13\xd1\x43\x30\x30\x5f\x36\xb3\xfb\x72\xc8\xd1\x7a\x53\xe4\x1c\x0d\xd5\x3c\x24\xeb\xa3\xac\x38\x97\x51\x2b\xfa\x93\xb6\xb2\x9e\x4d\x8c\x88\xe9\x88\x88\x5b\x67\x39\x1f\x15\x63\xa6\x13\x27\x19\x18\x5f\x2e\xb5\x1d\xae\x0c\x71\x46\xac\x72\x97\xd5\x73\xd7\x16\x48\x81\x8e\xea\x27\x51\x53\x8b\xc9\x61\x7b\x6f\x85\x8d\x1f\x63\xe3\x3d\xda\x9f\x79\xf9\x74\x42\x0b\xb5\x63\x37\x7f\x89\x66\xef\x43\x06\xea\x0e\xf4\x01\x32\xb8\x7b\x6f\x18\xa8\xc1\x60\xff\xde\xb4\x23\x88\x7f\x9a\x74\x4c\xa1\x09\x76\xf8\x72\xc8\xb2\x58\xe0\x33\xdf\xd8\x86\x83\x29\x4f\x1d\x33\x19\x0e\x00\x24\x2a\xa2\x36\x0e\x44\xd4\x26\x5a\x4d\x68\x55\x1e\xbf\x9c\x31\xec\x1e\x86\x74\x47\x7a\xba\xc3\xe3\x84\x35\xd6\x6f\x1f\x62\xf2\xa6\x43\x96\xdd\x37\xc9\xc6\x6e\x2e\xfb\x03\xa3\x96\x99\x74\xfe\x1f\x0e\x84\x2b\xca\xd0\x35\x62\x59\x97\xd9\x69\xb1\x4b\x2d\x4e\x0b\x25\x5c\x39\x26\x35\xf9\x3a\x74\xf6\x8e\x26\xc8\x53\x6f\x0a\x0f\x1d\xe2\x33\x10\xf5\xa9\x08\x65\x7c\x50\xc8\xe3\x19\x49\x96\xb8\xdc\x14\xf9\xad\x22\xab\xc7\xd1\x30\x96\x01\x16\x23\xc8\xa4\xb6\xce\xd3\x69\xeb\x26\x9e\x36\xbb\xa5\x6c\x6e\x59\x31\xec\x30\x61\x88\x27\xb0\xec\x44\x11\x07\xda\x54\x07\xe2\x26\xb2\x58\x5b\x96\x8a\xac\x6e\x7c\x87\x62\xbc\xab\x15\x97\xf9\x22\x5a\x8b\xcf\x10\x0c\x73\xe9\x5c\x2f\xdf\x1c\x5c\xc3\xa4\x09\xc6\x4c\x6f\xb5\x8a\x0d\x77\xe0\x7e\x3b\x0b\xfa\x35\xee\xe9\x3d\x77\x07\x77\x03\xbf\xf9\x5b\x24\x1f\xfb\x4a\xa3\xe1\xf3\x12\xf1\xc7\x45\x5e\x96\x78\xf1\x04\x2d\xa8\x76\x0d\x75\xbe\x69\x41\xa4\xfd\xd8\xbc\x79\x45\xb3\xad\xb6\x8c\xc7\x2e\x17\x6d\x89\x62\x39\x4d\xa9\xf5\x55\x7f\x28\x17\xa8\x96\xa8\x13\x01\x5f\xd7\xed\xb0\xb5\x66\xf9\x55\xcc\xc5\x0a\xd4\xdd\xa2\xe2\x5f\x3f\x27\x0a\x75\x7e\x78\xf1\xd7\x48\xf3\xb7\xc9\x7a\x22\x43\xb0\x5e\x99\x4c\x29\x54\xfe\x07\x9b\x6b\xce\xcd\x5f\x6d\x99\x4b\xee\xfd\x6c\x4b\x59\x72\xef\x67\x40\xa6\x92\xb7\x4b\x1c\xa4\xc4\xcd\x5f\x7b\xde\x0a\x25\x2f\xfc\x59\x3c\xd9\x9d\xcf\x7b\x1e\x91\x4f\xf4\xa6\xdf\x49\x9d\x49\x60\x38\xd8\xcc\xd6\x15\x77\xec\x49\x6c\xa2\x5f\xba\x83\x28\x11\x07\xf6\x7c\x31\x15\x1f\x62\x32\x44\x3d\x66\x28\xa2\xaa\x5e\x0a\xbb\x97\x19\x8a\x78\xef\x05\xbd\x55\xb7\xe5\xbe\xdc\xf8\x37\x67\x5a\xc7\xad\x42\xed\xf0\xf7\xa1\xee\x70\xf9\x54\x85\xb4\x57\x6d\x43\x72\x3e\x34\x1a\x05\x9d\xb4\x04\x33\x1c\xb4\xe0\x45\x82\xf3\xdd\x6e\x83\x5f\xda\xbc\x7a\x4f\x07\x01\xce\x5c\xca\x0d\x1f\x99\x9b\x2a\x09\xd1\x8e\x05\x67\x47\x8e\x78\x90\x13\xd4\x57\x53\x72\xfc\x95\x72\x82\xfa\xca\x73\x82\xfa\xaa\xe5\x04\x25\x05\xee\xc9\x0d\x2e\x0a\x63\x31\xaa\xb6\xa8\xfb\x21\x31\x96\x3d\x92\x7b\x2c\x4b\x54\x9e\x1b\xcb\x50\x56\x9e\x9f\xdb\xf4\x51\x6e\x1b\x58\x66\xb3\xf9\xc0\x2b\xca\x02\x1a\x79\x45\x30\xda\x70\x27\xfc\x21\x93\x24\x62\x39\xe3\xf3\x18\x0c\xf2\x90\xac\x0e\xde\x67\x6e\x59\x59\xdf\xa7\xba\x8a\x0d\xe1\x6a\x74\x66\xac\x89\x43\x88\x81\xca\x26\x65\x70\x5d\xf7\x9d\xd4\x28\x98\xa9\x40\x46\xeb\x76\x0e\xa9\xa6\x67\x06\xee\x0c\x45\xcf\x2a\x92\x14\x32\x04\x0b\x93\x8e\x8f\x83\xc6\x6f\xdb\xcb\x6b\x14\xf4\xab\xd7\xf6\x69\x1c\xd4\x90\x89\xa9\x19\x87\xd2\xac\x92\x18\xfa\xa6\x4f\xd4\x5d\x69\x51\x37\xcb\x6f\xde\x04\x56\x63\x50\x41\x7c\x57\x43\x0a\x5d\x61\x6f\x4b\x3a\x11\xf6\x3c\xe7\x8e\x9c\x21\x87\x24\xd1\x11\x92\xc4\x88\x20\x10\x77\xf3\x06\x93\x25\xbd\x49\x04\xfc\xb3\xe7\x84\x23\x76\x9d\x17\x31\x96\xda\x28\x88\x02\xe2\xdc\xc0\xc6\x07\x92\x5d\xd9\xa7\xdf\xa4\x8e\xf2\xb7\x13\xcd\xe8\x3c\xbe\x0b\xf8\xb8\xab\x97\x38\xcb\xf2\xed\x96\x65\x59\x39\xe5\x36\x94\x16\x01\x29\x37\xa1\x62\x08\xa8\x6b\x38\x01\xd0\x76\x5f\x43\xe6\x58\x92\xe9\x26\x59\xc7\xd3\xd4\x8d\xed\xe5\x07\xea\x42\x32\x81\x8b\x6b\xa2\x91\x79\xbe\x3f\xdb\x6d\x8b\x0d\x23\x55\x51\x64\x19\xda\xad\x46\xa1\xe4\x1a\x31\x3e\xac\x88\xc2\xa3\xd2\x92\x5b\x2a\x9c\x38\xd5\xa6\x25\x11\x18\x18\x9d\x52\x8c\x9a\x08\xe7\x3c\x3b\x3d\xe3\x0f\xdb\x88\x46\xde\xce\xb6\x8f\x93\x60\xe5\xf4\x7c\x8e\xb2\xc6\x62\x90\x88\x87\x84\x01\xbd\x88\x66\x6f\xae\xf2\xf2\xe5\x0d\xb1\x44\x96\x14\xcc\x89\x4d\x1f\x8d\x62\x34\x23\xf3\x8c\xcd\xc8\xdc\xaa\x00\x90\xd8\x14\x65\x58\x99\x45\xe7\xda\x15\xf6\x5c\x39\x48\x9c\x9f\x47\x4e\x56\xbb\x99\x7e\x10\x2f\x0b\xbc\x5e\x23\x66\xb9\x73\x65\xf9\x67\x1f\x75\x46\x2b\x8e\xc9\xe5\xf1\x15\x5f\x17\x17\x39\x2b\x4f\xde\xa2\xdb\x1b\xca\x96\xe5\xc9\x42\x09\x1c\x8e\xc3\x0d\x7a\xeb\xcd\x75\x44\x58\x62\xb6\x08\x0b\x84\xbb\x8a\xc9\x0c\xcf\xb1\x09\xf3\x78\x7e\x5e\xd0\x7c\x29\x4f\xfb\x12\x97\x9c\xdd\x82\x3b\xbb\xac\x4e\x0d\x99\x19\x56\xb6\x07\xba\x8e\x8a\x21\x50\x9b\xe8\xc5\x2d\x21\xa2\x34\xbd\x5c\x9c\xdb\xd2\xf3\xf3\x08\x0a\x74\xdc\x15\xf0\x65\x11\x41\xef\x78\x04\xcb\x2c\x46\x6d\x1f\xcd\x2c\x92\x80\x14\x41\xd4\xf1\xd9\xcf\x4c\x76\x42\x30\x40\x1d\x67\xcd\x4c\xcb\x9e\x44\xc3\x73\x43\xf7\x5a\xba\x4d\x2d\xae\x5d\x3c\x70\x88\xb7\x16\x8e\x01\x77\x6e\x80\xf4\xca\x5e\x1c\xf9\xd0\x67\x28\x44\x00\x6d\x6e\x4f\xc4\x3f\x61\x12\x4e\x7f\x14\xfb\xf2\x39\x52\xd2\xab\x34\x51\x8d\x9a\x39\xd3\x64\x79\x96\x65\x68\x1a\xd9\x6b\x18\xa5\x2c\x46\x00\x6c\xb7\xea\x12\xdb\x70\x2d\x43\x24\x9f\xdf\xb6\x84\x45\x70\x00\xc6\x01\x44\xb9\x7f\x8a\xd6\x56\xaa\x2b\x16\x18\x93\x0e\x6a\x1d\xa2\x58\x8b\x00\xfa\x27\x45\x5a\x93\x22\xce\xa4\x88\x19\x81\xe8\xc4\x80\xfa\x79\xab\x8c\xe1\xb0\xca\xad\x16\x57\x19\xb5\xc9\xf2\x09\x00\x5f\x67\x13\x60\x43\x3b\x57\x12\x35\xf8\xeb\x21\x40\xce\xa7\xcc\x88\x16\x3d\x01\x88\x25\xd6\xa8\x1a\x4a\xe0\xf8\xb8\xfa\x3a\x9b\x9c\x81\x72\x56\xcd\x33\x14\x8b\xff\xf4\x52\x6a\x54\x94\x68\x88\x57\x71\x67\x4b\x08\x00\xa2\x4f\xb9\x1b\xaa\xee\xc0\xd4\x25\xae\xea\xf9\x49\xce\x91\xa8\x89\x6e\xe4\x9f\xb1\x0c\x55\x2f\x9e\xb1\x18\xa8\x16\x77\x65\x76\xa7\xf8\x3d\x9b\x4d\x54\x4c\x4f\x1a\x68\x93\xc3\x10\x1a\x81\x05\x18\x8d\xa2\xf3\x73\xb1\xdd\x45\x52\x56\x17\x2a\x2f\x7c\x3c\x81\x0f\x04\xa6\x2b\x67\xc5\x3c\xc3\x53\x71\xcd\x0b\xb3\xb2\x54\xfc\x0d\x6a\x2c\x63\xfa\x4b\x4a\x84\xc8\x30\x45\xe2\x2f\x47\x6d\x51\xd6\x02\xce\x20\x99\xce\xe6\xda\xf0\xca\xfc\x05\x6c\x8c\xe9\xdf\x8b\xe3\x5b\xff\x6d\x97\x17\xfa\x33\x09\x5d\x7d\x83\x42\x31\x7a\x7f\xf6\xc4\xcd\x4e\xa9\xa4\x45\x55\x07\xe0\xa7\x0f\x4f\x77\xd7\xdb\x40\xcd\xe1\xce\x67\xe0\x2e\x51\x30\x8a\xb0\xd9\x8b\x7a\x57\x87\x8f\xed\x89\x1c\xd4\x29\x73\x3a\xed\xec\xe1\x32\xe7\xf9\xf1\x9a\x2e\x51\x71\xbc\x62\xf9\xa5\x24\x31\x4e\x72\x81\x39\x4e\xcc\xef\xd0\xe6\xee\x68\x26\xcd\x27\x65\xe8\xcd\x5d\x75\x9b\xce\x77\xd5\x12\x3c\xf6\x89\x41\x26\xc7\x74\x75\x2c\x60\xf5\xbe\x19\x23\x54\x8a\x26\xf5\x9c\x7b\x41\x0a\xa4\x03\x4d\xd4\xa4\x6f\xd5\x11\x06\x4a\x4e\x19\x8a\x00\x2c\x5b\x21\x0d\xc4\xd0\x00\x56\xad\x3e\x36\xca\xd5\x01\xc0\xc2\xff\x40\xb4\x3d\xa6\xc1\x69\x56\xdc\xef\xe5\xa4\x25\x70\x65\x38\x0c\x6f\x18\x81\xc7\xe3\x09\x64\x09\x2e\x9f\xe9\xdd\x00\x12\x95\x2f\xb4\x22\xec\x2a\x53\x9f\x05\x05\x4f\xf2\xe2\x3b\xb1\x71\xcf\x28\x03\xf1\x02\x08\x0e\x60\x41\xd9\xf2\x49\xce\xf3\xc6\x2d\x12\x0c\xae\xb6\x5b\xd9\xa6\x44\xdc\xf4\x29\x3f\x81\x78\x01\x29\x2c\x14\xae\x8f\x17\x19\x9f\xad\xe6\x60\x8a\xa7\xed\xca\xa2\x3f\x51\x97\x80\x26\x8e\x92\x63\x7c\x27\x3f\x2c\xd4\xb4\xd4\xed\x6d\x66\x9e\xc3\x52\x0c\x01\x2b\xd8\x3c\x9c\x8b\xfa\xfe\x4a\x25\xad\x8d\xee\xa6\x6e\xe5\xd6\x11\x57\x1f\x88\x36\x1d\x24\x94\xad\xa5\x60\x47\x4c\x3e\x84\x50\xb5\xa2\xbb\x13\x9b\x91\x12\x8e\x54\xe6\x2b\x65\xf1\x7f\xae\x96\xf4\x9a\xe4\x9b\xf2\x8a\xf6\x46\x00\xef\xcd\x8f\xdc\x6a\x1f\xab\xb0\x97\x32\x5b\xcd\x63\x19\x27\x61\xf9\x88\x73\x86\x2f\x2a\xee\x5b\xd3\x07\x7b\x45\x49\x4f\x4b\xdd\x6d\xbe\xcc\x37\x1c\xb1\x27\x78\xf9\x98\xae\xd7\x98\x07\x82\xbe\xee\xcd\x02\xd7\x49\x3e\xac\x22\xbd\x25\x9d\xce\x63\x34\x1a\xa1\x19\x9b\xb7\x87\x56\x61\xf5\x3f\xca\xc8\xad\x71\x15\xd7\x85\xe4\x80\x57\x79\xf9\x04\x33\x7e\xeb\xec\x5e\xdb\x72\xfb\xbf\x51\xbe\xb8\x4a\xba\x15\x23\x18\x69\x41\x79\x5e\xe8\x80\xc3\x7d\x96\xac\x3b\xe6\x6c\x23\xbd\x3f\x22\xb7\x71\x14\x18\x45\xe0\x5c\x46\x95\x79\xc0\x8e\x33\xde\xbf\x2f\x8a\x1d\x8b\xa3\x6e\x67\x11\xa8\x61\x89\x58\x57\x84\xe9\x05\x55\xd4\xcd\x6d\x45\xd1\x8a\xa1\x4d\x91\x2f\xd0\x63\x05\xee\x9d\xc0\x7e\x8a\xd9\xeb\xbf\x1c\x34\xd3\xf7\xc7\x10\x97\x08\xa2\x31\x07\x90\x39\xea\x4d\x3d\x84\xec\x92\x82\x1a\xe6\xcb\xa5\x41\x0c\xbd\xb9\x34\xa5\xe1\x83\x66\x92\xc5\x24\xd7\xf4\x1a\xed\x6d\x64\x8c\x1f\x6c\x3b\x1f\x0b\x05\xec\xaa\xdb\x0b\x33\x0f\x82\x17\x3b\xa9\x79\x10\xba\x3b\xa1\xdf\x04\x9c\xb5\x51\x5e\x4c\x1c\xe9\x8b\xf2\x47\xac\xca\x2b\x3d\x37\x0c\x6a\xe8\x88\xc9\xde\x03\x14\x82\x99\xc1\x13\x2d\x5c\x93\x06\x1e\xae\x73\xb0\x06\xef\xfd\xad\xea\x1a\x38\xfe\x1d\xf4\x3e\xc4\x42\xf3\xea\x87\x29\xb1\xdd\xef\xbc\x6c\xdd\xb6\x63\xf8\x60\x92\x6c\xe0\x82\xaf\xe4\x86\xbe\x67\xf4\xdd\xad\xf5\xea\x4f\x0c\x21\x05\xef\x94\x2f\x6d\xe3\x59\xf1\x21\xf9\x33\xcf\x37\x88\x2c\x31\xb9\x14\x4f\x8e\xe1\xe2\x3a\x61\xcc\x5b\x88\x67\x36\x17\xf0\xaa\x6f\xe1\x5e\xf3\x7a\xbd\x22\x79\xd0\x92\x40\xde\xf1\x1a\x71\xc9\xa2\x49\x04\xc1\xab\x4d\xe7\x19\xb4\xe1\x17\x9c\x49\x1f\x09\x16\xf9\xae\xbb\x16\x34\x70\x63\xab\x79\x4f\xab\xf6\xa2\x5b\xe7\x6f\x91\x35\x54\x08\x84\x20\xb3\x98\xa3\x93\x18\xa1\xbd\x21\x02\x89\x58\xd4\x31\x71\xde\x67\x06\x23\xc5\xb5\x46\xc0\x26\x00\x0d\xec\x78\x5d\x1f\xf0\xf8\xa3\x83\xdf\x75\x4e\xd5\xb2\x0e\x7b\xb4\xf7\x3d\xc1\x3a\x04\xa1\x3d\x91\x18\x81\x4e\x68\xca\xce\x86\x78\xd3\xd8\xf9\xd4\x8a\x09\x1c\xf0\x2e\xce\xe6\x07\xbd\x80\x93\xa3\xcc\xf1\x04\xcb\x99\x36\x63\xb4\x53\xe9\xd0\x4e\xad\x2e\xc1\x81\x0f\x60\x89\xb8\x0e\x14\x12\xef\xef\x71\xff\x73\xe7\x9c\x98\xc4\x50\xfa\x89\x13\x07\x22\x8f\xee\x5e\x17\x7b\xd0\x8a\x34\xd2\x7a\x2f\xba\x2f\x89\xa2\xfe\x07\x81\xb4\x32\x1d\xf2\x40\xd1\xd9\x06\x17\x3e\xc1\x4b\x59\x03\x48\x0c\x28\x4d\x28\xd3\x76\x85\x57\xa8\x44\x1c\x68\x8b\x78\x13\x96\xe1\xa9\x40\x6a\x25\x0e\x79\xa6\xaa\x79\xc6\xd1\x38\x38\xff\x04\x2f\x23\x30\x8e\x40\xe4\x63\x7f\x72\x20\xf6\x77\xc8\xa9\xf7\xc1\xfc\xf7\xe1\x19\xdb\x6c\xe9\x01\x2f\xca\x67\xe4\x41\x8d\xf0\xef\x83\xad\x7f\x5c\xde\x2c\x43\x89\x5c\x75\xd6\x94\x3f\x6a\xfd\x36\x0c\xa6\x92\x1a\xfe\x6e\x84\x51\x9e\x58\xda\xa5\x46\xa3\xe3\xf5\xea\x38\x1a\xa3\xb3\x98\x8f\x46\x31\x19\x67\xd1\x17\x91\xa4\x39\x47\x23\x96\x6c\x68\x71\xbb\xa6\x6c\x73\x85\x17\xa0\xf9\x1a\xb3\x44\xf4\xfb\x57\x74\xbb\xdd\x6a\x9a\xad\x21\x50\x6b\xd7\x58\xc4\x88\x13\x94\xf5\xaf\x62\x2b\x11\xc4\xa5\xbd\xb0\xe9\xd1\x04\x36\x3c\xb9\xf8\x65\x18\x4e\x9e\xf1\xed\xf6\xae\xb6\x76\x20\x2d\x74\x7b\xe7\x09\x67\x2c\x09\x1a\x4f\x20\x0d\x70\xf1\xf2\xe2\x43\x63\xd9\x9f\x48\x0a\x14\x6a\x87\x8d\x46\xd9\xe6\x32\xfa\x0e\xa3\x2e\x25\xe3\xf2\xc1\x0f\x84\xd0\xc6\xbb\x87\xcc\x77\x0e\x99\x67\x3a\x88\x35\x82\xb9\x78\x7d\xf1\x8e\x29\xe4\x82\x9c\x4c\xd6\x88\xe7\x82\xe0\xb5\x9b\xbc\x50\x22\x19\x0b\x44\x6a\xd3\x9d\x79\x62\x68\x83\x5d\xf4\xcc\x14\x4b\xff\x88\xb8\x14\x73\x80\x91\xbc\x1f\x52\xfe\x52\xb6\x25\x1f\x76\x36\xb9\x96\xb3\x5b\x1b\x1d\x57\x42\x6d\xe5\x63\xa3\xd1\x51\x31\x2d\xb2\x2a\xad\x46\xa3\xea\x28\xcb\x8a\x69\x5c\x6c\xb7\x71\x91\x91\x58\x4c\x0a\x40\x7f\x80\x73\x81\x2e\x66\xf9\x3c\x2b\x60\xe1\xbc\xe5\x15\x00\x69\x91\x55\xb0\xa8\xdb\x28\x62\xdf\xba\x9a\x7d\x56\xb0\x63\x44\xf8\x39\x98\xc6\x6c\xbb\x8d\x59\xa6\xce\x11\x28\xb9\x8c\x79\x2d\x73\x00\x52\xad\x44\xc8\x47\xa3\x58\xe5\x7e\x08\x4f\x96\xcf\x8f\xb2\x8c\x6d\xb7\xcc\x0d\xaa\xc9\xfa\xdf\x25\xdc\xf3\x2e\x31\xf9\x28\xe1\x9e\x47\x09\xb2\xda\x39\xf0\x55\x8c\x4c\x9a\x74\x23\x90\x94\x46\x2f\xdd\xe9\x4d\x03\x65\x33\x36\xef\x09\xbf\xd3\xa8\x45\x02\x48\xc8\x9e\xa9\x54\xd0\x03\xc1\xa0\xb9\x05\x71\xa3\xac\x88\xdc\xf2\x48\x2a\x51\xdb\xb5\x95\x9a\x42\xd4\x55\xb0\x76\xe4\x6a\x6b\x04\x54\xe1\x6c\x36\xaf\x7b\xdd\x51\xfc\xce\xa6\x38\x95\xb6\xd7\x92\x2a\x8f\xb1\x94\x2e\xc5\x13\xb9\x3f\xb5\x83\xd4\xfd\x8b\x6b\xef\x4a\x15\x47\xcd\xab\x85\xa0\xc6\x39\xc0\xbd\x41\xac\x91\x77\xe6\x7d\x90\x46\xa4\xf3\x55\x9c\x43\x2c\x6e\x90\x51\x4d\xc3\x2a\xcb\x7b\xaf\x10\xb6\x9e\x9d\xd5\x68\xa4\xba\x75\x44\x93\x25\x98\x56\x59\x99\x96\xa3\x51\x79\x94\x65\xd5\xb4\x9a\xc6\x79\xe0\x30\xf1\x3c\xab\xa0\x6c\xdc\x91\x2b\x56\xb0\x04\x20\x8d\x2b\x35\xe5\xb6\x00\x91\x41\x24\x5f\x58\x0e\x05\x8e\xea\xe9\x19\xa4\x55\x56\xc2\xaa\xf6\xf7\x42\x9a\xe4\x2a\x73\x42\xa6\xb1\x5a\xd1\xb7\x2f\x4c\x0a\x5e\x4b\xa0\xa4\xaf\xed\x25\x02\xbd\x9f\x5d\x01\x6a\x29\x01\xd3\xc2\x49\x0e\xbc\x7b\xec\xcb\x49\x73\xb9\x84\x41\x1e\x5e\x68\x05\xd5\x6d\x11\x0b\x55\xca\xb7\x3c\x73\x31\x57\x11\x58\x3b\x11\xb7\x3a\xef\xbb\xaf\x72\x0f\x7a\xef\xab\x34\x72\xcc\x95\xf1\x87\x4f\x61\x04\x21\x90\x6f\xb7\x31\xcf\x04\xc4\x2d\x5c\x58\x3c\x56\x17\x43\x66\x33\xf0\x61\xb1\xb9\xf5\xc4\x0a\x6d\x8d\x6e\x47\xbf\xae\xf6\x01\x55\xac\x37\xd6\x81\xad\x04\x12\x91\xd3\xca\x7b\xa7\xe3\x84\x05\xec\xd3\xfc\xca\xb8\x5b\x53\x69\xa6\x8f\x34\xca\x00\x69\x6b\x15\x66\xf2\xc0\x7f\x88\x48\x57\x83\x62\xa7\xde\x9a\x33\xd1\x73\x46\x66\xce\x3e\x11\xd7\xc7\xc1\xf7\xb3\xf8\xbb\xde\xe8\x1e\xf9\xbe\x79\x6c\xef\x1a\xa0\x95\x5f\x24\x5d\x99\x30\x94\x2f\x5f\x92\x42\xf0\x43\x87\x11\xf6\xd2\x74\x21\xac\xf8\x39\x51\x02\x31\xaf\x48\x36\xf7\x8b\x8e\x37\x0c\x5f\x4b\xa6\xd2\x6b\x6b\x18\x37\x56\x9e\xfc\xab\x74\x4c\x3f\x3e\x31\x19\xdf\x62\x1e\x3e\xa5\xfd\xfe\xff\x7e\xfd\xf2\xc5\x6b\xbb\xcc\x0c\x25\xf2\x00\x33\x94\xbc\x16\xfb\xe6\xd2\xeb\x55\x46\x92\xe7\xee\x29\x3b\xde\xbc\x45\x46\x92\x57\xcd\x41\xdb\x0f\x83\x16\x29\xd5\x24\x8f\x98\xf1\xf9\x40\x9a\x7e\xb6\xdc\xd8\x50\x46\x7a\xd8\x5a\x0b\xdf\x4d\x02\x65\xdf\x55\xd7\x7b\xc5\xf7\x8d\x65\x7b\x0b\x0b\xc7\x7a\x26\x51\xd7\x7e\xd4\xe5\x02\xde\xa1\x7c\x71\x65\x60\xf8\xaf\xe8\x36\x94\xb3\xce\x9c\x6b\xd6\xfa\x6d\xbd\x12\xcd\x4d\x6d\x14\xa9\x6f\xd1\xad\x09\xcc\x67\xab\x03\x2b\x14\x95\x26\x7a\xfe\xb8\xdd\xfc\x05\x8d\xfc\x4b\x85\x0f\x6d\x35\xf0\x4c\x0e\xb5\xe9\x9e\xf7\x88\x32\x30\x90\x1e\xda\x02\xeb\x0a\x44\x61\x6e\x6f\x9f\x10\xe3\x5c\xa2\x15\x49\xca\xb7\xea\xd9\x9d\xa0\x8a\x4d\x94\x75\xa4\x2d\x7e\xb7\x8a\x4c\xc2\x88\xe4\x68\x7e\x8d\xd6\x60\xa2\x9e\xac\xb5\x57\xd4\x7e\xbf\xfd\x6f\x55\x99\xa1\xb9\x9c\x6d\x60\x14\xf7\xa5\xf9\x18\xe3\x64\x3c\x38\xf8\x72\x87\x62\x0c\x97\x2f\xd0\x4d\x76\x74\x0a\xd1\x34\x46\x09\xd3\xa9\x52\xcb\x2b\xbc\x29\x4d\x48\x14\x49\xeb\xbf\x72\xbf\xc4\x48\x5a\x44\xdb\xe4\x5f\x12\x41\xfe\x9d\xe5\x9b\x8d\x7a\xfe\xd5\x3d\x7e\xae\x73\x5e\x48\xd4\x24\xfd\x7a\x45\x1b\x1d\x8c\xab\xc0\x88\xf0\xe7\x4b\xa3\xeb\x59\x0a\xf2\x80\x24\x0b\x8a\xd8\x02\x3d\x5f\x82\x58\x54\x05\x00\xa2\x0c\x25\x8d\xcc\x05\x86\xa0\x50\x51\xb8\xbe\xde\xae\x31\x73\xed\xaa\xef\x66\x7c\xde\xa4\x00\xd9\xdd\x97\x77\x40\x81\xbe\x80\x8d\x1d\xa5\x76\x4a\x85\x80\x5f\xfe\x55\xdc\xbc\x86\xbb\xf1\xef\xbb\xaa\x29\x70\xb6\x3e\xab\x73\x4c\x9e\x15\xf8\xf2\x8a\x3f\x6a\xad\xf3\xdc\x59\xb8\xcd\x33\xd9\x94\xa9\x9c\x77\xfa\x14\x3b\x5d\xb8\x5f\xab\xcd\x32\xe7\x28\xa0\x3d\x85\xd2\xf0\xa2\x51\x2f\x33\x44\x37\x88\xc4\x77\xbd\x9a\xa4\x26\x08\x3d\x41\x37\xc3\x16\x32\x17\x34\x84\x19\x14\x06\xa2\x14\x03\x19\x0d\x27\xc7\x82\x84\x1c\x30\x93\x7a\x4a\x25\x9c\x73\x62\x10\xaf\x37\xfc\x16\x32\x9f\xee\x93\x57\x5a\x76\xce\xda\x2c\xb8\xea\x5f\xf1\x80\x2c\x91\x76\x8e\xf2\x9b\x4d\xfe\x23\x67\xa1\x20\xd2\xb1\xdc\x1d\x8d\x70\x8b\x50\x95\xfc\xbd\xce\xdd\x11\x47\x82\x80\x10\x6c\x36\x16\x57\xc4\xec\x84\xf4\xd7\xaf\x5d\x81\x48\x4b\xb7\x10\x09\x94\x8f\x55\xc0\x34\x93\x45\xf0\x58\xaf\x2c\x72\x4c\xf1\x8e\x4e\x5d\xb8\x59\x6b\x82\xc7\x81\x99\xbc\x6d\x7f\xc6\x5d\x21\x30\x7b\xd6\x52\x35\xb7\xf4\x7b\xce\x9e\x43\xa6\x6e\x96\x55\x0e\x7c\x67\x6e\xa3\xcb\x80\x6b\x9d\xae\x83\xb8\xa7\xa1\x43\x47\x49\x41\xe9\xdb\x6a\xe3\x68\x55\x59\x1a\x8d\xb9\xed\xc7\x7a\x17\xb1\x29\x4b\xed\x8f\xb8\xa7\xa5\x25\x57\x22\x00\xa6\x2c\xed\xab\x65\xf6\x0f\xd4\xf2\x72\xa7\x7b\xc5\xd7\x02\xa8\x59\x07\xa8\xdf\x57\x05\x39\xb0\x71\x9d\xf3\x5e\x31\x92\x63\x9d\xef\xd8\xf4\xf1\x00\xe3\xdf\x3c\xc5\x72\x57\xc2\xdf\x04\x8a\x1a\x8d\x64\x44\x72\xad\xac\x84\x4b\x54\x20\x8e\x7a\x7b\x13\x2d\x7a\xc7\x5c\x4a\x8e\xb3\x3b\x9e\x96\x91\x00\x47\x38\x64\xe1\x6e\xbb\x65\xae\xd0\xa8\x34\xe5\x87\xcd\xcb\xf4\x1c\x3a\x09\xe9\xda\x16\xdf\xad\x30\x2a\x96\x1d\x2d\x4d\x97\x94\x43\x37\xc3\xef\xf2\x8d\x07\xa8\x02\x69\xb7\xad\x7e\xdb\x0f\x80\x03\xcd\x53\xa4\xf4\x4c\xb0\x91\x25\x80\x54\x54\x70\xdf\x34\x5b\x89\x25\x6f\x31\x59\xaa\x0a\x16\x57\x8e\x46\xb6\x0f\x8b\x80\xa5\xa5\x03\xf2\x79\x0d\xc9\x61\xc1\xc8\x57\xb2\x45\xb0\x7b\x55\x91\x8b\xc9\x5b\x0f\x85\x22\xdc\x40\x50\x7f\xad\xb3\x02\xce\xd0\x7c\x10\xf6\x08\x62\x6d\xd3\x1b\xf1\x46\x0b\xd2\xa0\xf3\x21\x06\x7a\x01\x6a\xce\x2d\xf5\x5a\x04\x43\x08\x80\xcf\x26\xf3\x36\x29\x22\x51\xaf\x4d\xab\x66\x61\xe0\x80\x97\x35\x60\xe5\xc2\x94\x57\xb6\x9c\x51\xc0\xf0\x03\x76\x2e\xee\x7d\x47\xec\x76\x1a\x9b\x21\x0b\x18\x2d\xda\x6f\x64\xe8\xec\xb8\x93\x15\x69\x2f\x59\x2c\x85\x7f\xdc\x3d\x6d\xe9\x8a\xc0\xe6\xd9\x4c\xfc\x3b\x9b\xcc\xa1\xfc\xff\x74\x3e\xd5\xff\x9b\x35\xa5\xfa\xf7\xdc\x1c\xd3\x4a\xcc\x50\x60\x31\x45\x7d\x74\x37\xe3\x5e\xc4\xcc\x0e\x8b\x2a\x3d\xd4\x42\x0e\xf3\xf7\xbc\x7c\x25\xdd\x52\x5a\xf1\x1f\x3f\x84\x7c\x52\x67\xad\x86\xc2\x1d\x44\xcd\x59\x4e\xca\x15\x65\xeb\xf6\x2b\x87\x57\xb1\x78\x4e\x90\x35\x08\x57\xba\x11\x3f\x96\xc8\x5e\x54\xde\xfb\x4e\x46\x76\xe0\x34\x1a\x2b\x5b\x79\x9e\x5c\x89\xe5\x4b\xb7\x8a\x5c\x1f\xa9\xe5\x09\x93\xb5\xcc\x6c\x76\xf2\x4f\x31\x8b\xd8\xe0\x96\xad\x2f\x24\xda\xca\x7f\x41\x3c\x4d\x7f\xfc\x22\x9e\xfd\xf3\x8b\xf9\x18\x80\xa9\xfa\x95\x88\x3f\xbf\x38\x01\x10\x67\x64\x76\x3a\x87\x34\x23\xb3\x07\x73\x98\x67\x64\xf6\xd5\x1c\x96\x19\x4f\x56\x2a\x52\xfa\x33\x19\xa3\xce\x99\x1c\x06\x83\x32\x8b\xcb\xac\x1c\x8d\x04\x29\x9d\x97\x25\xf0\x4d\x03\x29\x74\x34\x43\x6f\x6e\x37\x92\x93\x4f\x73\x28\x09\xf5\xb4\xa1\xd9\x25\xf5\xa7\xdc\x46\xa4\x8f\x58\x69\x7d\x63\xb8\x79\x8a\x99\x44\xe2\x86\x99\x6f\xa2\xd8\x1b\x36\x9f\x39\x25\x2d\x49\x80\x3d\xda\xc3\x44\x30\xbb\x0c\x70\xf7\x6b\x56\xd1\xbb\xae\x94\xe3\xc3\x65\x1b\x97\x88\x3f\x5a\xf0\x2a\x2f\x0c\x94\xcb\x34\x60\x58\x70\x32\x2d\x52\x20\xa3\x10\x75\x44\xa5\x59\xee\x17\x4a\x8b\x8d\x12\xa2\x96\x1c\x34\xeb\x08\x67\x28\xac\x14\x9c\x15\x19\x8e\xb9\xfc\x09\x17\x59\xbb\x5d\x5c\x34\x04\x63\xbc\x90\x42\x59\x58\xc6\x0b\x59\xb9\x96\x3e\xab\x81\x11\x5c\x7d\x26\x72\xa9\xdb\xda\x84\xd7\x52\x27\x6b\x20\xaa\xf1\xb2\xc9\xa5\xe5\x35\x74\x0d\x89\xb4\x8d\x44\x98\xa7\x45\x59\x96\xf1\xe9\x24\x3d\xad\x3b\x66\x3b\x4d\x2e\x0f\x9d\x07\xd2\xd5\x9e\x42\x92\x85\x9e\x18\x26\xd1\x8d\xc5\x55\x1e\x9a\x25\x02\xa3\x3a\x8a\x06\xd7\xc6\x98\x01\xc3\xa7\x09\x66\xc0\x72\xa3\x26\x52\xb9\x77\x90\xcd\x67\x0f\xc3\xcb\xcb\xd2\xde\x7c\x2c\xd5\x8e\x07\xd8\xc7\xd0\x80\x20\xb3\xc1\xe3\xf1\x5e\x13\x56\xd3\xbe\xc3\x7f\xde\x35\xaf\x4a\x8a\x82\xef\xf2\x6e\x23\xd5\xf0\xd4\x3a\x78\x3f\xde\x67\x77\xa1\x4e\x93\x5a\x62\x58\x41\x56\xd8\x2c\xdb\x6c\xeb\x34\x64\xa6\x01\x23\x63\x9d\x91\x46\x51\x2d\x69\x2b\x97\x64\x74\xaf\x56\xc3\xb9\xed\xa5\x21\x67\xf3\x0f\x21\x1f\xe5\x68\x32\xab\xa0\xcc\xed\x1e\xa2\xfa\xda\x16\xf8\x8e\xc3\xbb\xab\xa2\x97\x49\xff\xd8\x8c\xb7\xb5\xf3\xf3\xed\xd6\xf1\x5d\xa7\xbe\x21\xb5\x07\x9e\x4d\xad\xdc\x17\x50\x52\x87\x99\x23\x61\x16\x99\x03\xd8\xf9\x22\x00\x3d\x66\xae\x4d\x93\x67\xc6\xd0\x50\xcc\xad\x2d\x8f\x02\xd4\x29\x07\x77\x28\x21\x94\xe3\xd5\xad\xd9\x55\x75\x2b\xcc\x9e\xd9\xb9\xeb\xc8\x6d\x62\xce\x8e\x22\xd9\x05\x66\x5e\xbb\xa1\xa5\x0e\xb4\xcd\xe9\x75\x8d\x09\xd6\xd6\x19\x01\x3e\x81\xac\x7d\x67\x5d\xfb\x8c\x1f\xda\x79\xa0\x81\x51\x3f\x1d\xd8\xec\x80\xda\x8e\x59\xd3\x27\xd3\x14\x78\x31\x4e\x64\x80\xfd\x4d\xbe\x40\x56\xa0\xf9\xb7\xa7\xaf\x5e\x3f\x7f\xf9\xc2\xc9\x93\x63\x85\x2c\xac\x53\x24\x55\x76\x29\xe9\x94\xbf\xb1\x44\x12\x0e\xb7\x69\x2a\x58\x89\x13\x6c\x7d\xb0\x2c\x30\x34\xfb\x93\x96\x56\xc1\x05\x3d\xa5\xa1\xf3\x41\xfe\x56\xa6\x77\x69\xa9\x74\x78\xd0\xbb\x3c\x4e\x5d\xf9\xbb\x36\xe6\x72\x05\xbe\x60\x39\xc3\x82\x31\x68\x15\x34\x94\x59\x24\x6f\xff\xd0\x2c\xa5\x8c\x60\x95\xe8\x0d\x73\x3d\xca\xaa\xc3\x2e\x8a\xd1\x32\xf5\xa8\xbb\xac\x22\xeb\x63\xbb\xb4\xb6\x95\xb5\x92\x64\x6a\xeb\x68\xb3\xfc\xf7\xe6\x67\x18\x08\xca\xc7\xb3\xbe\xf7\x11\xb6\xa5\x34\x5a\x8b\x11\x83\x01\x1f\x8d\xa8\x8c\x89\xab\x33\x11\xe2\xec\x0e\x97\x4f\xd7\x1b\x7e\x9b\x1e\x9d\x42\x5c\x7e\x4b\xf3\x25\x26\x97\xcd\x0f\xb4\x54\x7f\xcb\xcd\x56\x7f\xbe\xce\xaf\x6d\x95\x27\x52\x74\xa3\xeb\xbc\x40\x37\xea\x8f\xbf\xe5\x05\x5e\xa6\x47\x13\xb8\xc4\xcb\xd7\x56\x40\x7a\x9b\xf2\xe4\x15\xa5\x4a\x5a\xab\xa5\xac\x49\x99\x5f\xa3\x65\xe2\xd7\x83\x26\x50\x92\xa4\x1f\x4a\xdf\x43\xaf\x86\x17\x68\x41\xd7\x48\x4d\xc8\xfb\x20\xf8\x72\xb4\xfc\x26\x5f\xbc\xf5\xcb\xa5\x38\x38\x6d\x16\x3a\x81\x8d\x88\xd7\x37\x32\x4e\x24\xca\xc3\xe2\xf7\x1b\x1a\x47\x7a\x8e\x0a\xbd\x2c\x23\x50\x43\xf1\x7e\x1f\xde\x50\x2e\x2e\x02\x75\xad\x07\x4c\xef\x0e\x6c\x6f\x1a\x42\xf9\x47\xda\x49\xbf\xf3\x21\x10\xd0\xa6\x56\xfb\xac\x57\x18\xb0\x29\xf4\x15\x5d\xc5\xc6\x51\xc8\x25\x08\x6c\xb7\xb9\xa4\x78\x7a\xb6\x47\x9c\x40\x40\x7b\xd4\x7b\x92\x81\xed\x50\xca\x07\xb5\x93\xfa\x30\xc4\x71\x6a\x98\x9c\x18\xd0\x9b\x28\x83\xfd\x94\xf4\x68\xab\xfa\x76\xb9\x86\x7a\x00\xaf\x53\xd3\x57\x07\x18\x03\x50\xac\xdb\x27\x15\x51\x84\xaf\xf8\xbb\xdd\xee\x9e\x93\x0a\x42\xf3\xae\x45\xd4\x0e\x92\xa0\x86\xb2\x43\x9e\x8a\x24\xb1\x17\x76\xbb\x8d\xdb\x74\x61\x9b\xae\xf3\xcf\x59\x9e\xb0\x64\x44\xc9\x32\x8e\x9c\x83\x8b\x00\x68\x51\x94\xe0\xae\x11\xe8\xf6\x8f\xe0\x48\xb3\x66\x7c\x0e\x3b\x13\x7d\x81\x6e\xb6\x5b\x33\x5e\x7b\x2f\x23\xc8\x41\x8d\xdd\x6c\x56\xda\x65\xd5\x84\xdb\xa0\x43\x4c\xe2\xb6\x49\x98\x8d\x58\x2e\xe5\x69\x40\x4a\xd0\xb8\x93\x3b\x07\xd5\x31\x99\xb6\x18\x20\x90\xde\xd5\x90\x03\x90\xa8\xcc\xcd\x4a\xd3\x44\x20\x4f\xe4\x03\x28\x43\xf8\x61\xc8\x01\x6f\x39\xd9\xc7\x14\x8c\x46\x91\xd3\x26\x3a\xca\x32\x2a\x5e\x1d\xd3\xcc\x14\x34\xf6\x38\x2c\xe6\x33\x2a\x85\xf6\xe2\xff\x0c\xc9\xff\x20\x87\x78\x1c\x25\xd1\x98\x3a\x61\xb9\x6b\xc1\x37\x56\x45\x01\x23\x46\xa9\xf4\xb8\xb4\xcf\x37\x3e\xec\xf9\xee\x92\x76\x3d\x0f\xb9\xad\xf8\x71\x5f\x72\xfd\x3e\x77\xbd\x52\x95\x74\x49\xe9\x00\xad\x83\xea\x12\x05\x7c\x17\xfc\x20\x33\xae\x6d\x61\x4f\xb2\x7f\xbb\x12\xbb\x91\xc6\x3d\xc1\xf5\xc1\x81\x7c\x8a\xb4\x17\x90\x33\xac\x4c\x21\x10\x74\xa1\xf8\x28\xd3\x40\xc6\xf7\x62\x8a\x1a\x2f\x8c\x14\x39\x73\x69\xcf\xa4\x11\xe5\xb5\x7d\x54\x24\x3b\x08\x83\x72\x12\x95\x44\xa7\x71\x97\x3e\xda\x39\x61\x57\xeb\x6a\x74\x6a\x9e\x78\xd3\x01\x48\xe0\x39\x42\x74\x03\xdd\xdd\x97\x2d\x39\x90\x01\x0b\x71\x42\x9f\x07\x4e\xfb\x40\xb2\x2b\xde\xd7\xa0\x31\x15\xff\xa7\xa8\xcf\xdd\xd9\x83\xb6\xd7\x98\x5c\x16\x32\xe2\x92\x72\x67\xd9\x01\x78\xc1\x23\x6c\xe4\x4d\x4d\x82\xda\xde\x71\x3d\x8d\x70\x8c\x1a\xe9\x15\x68\x3e\x29\xcf\xe1\x8f\x74\xc6\x07\xe0\x9a\x9d\xe6\x6f\xc7\xf9\x06\x7f\x22\xbf\xc7\x03\xf1\x51\x48\x30\xbe\x13\x51\x85\x40\x81\xab\x10\x5b\xa1\x43\xdf\xd9\x89\xf1\x84\x93\xe2\xc4\x03\x0f\x4f\x85\x03\x81\xf6\xeb\x1e\xdd\xbf\xef\xaa\xdb\xf5\x49\x0c\xac\xdf\xc1\x66\x52\x44\x25\x1e\x57\xf1\x92\x65\xd2\xcf\x1d\xf2\x1a\x76\x96\xda\x73\x6f\xb4\xc1\x31\xcb\x7c\xc3\x1f\x65\xdb\x20\xd3\x38\xf9\x8b\x66\x00\xe2\x8c\x37\x06\x10\x0c\x40\x9a\x39\xc6\x0a\x31\x86\x6d\x2f\x01\x1d\xb5\x42\x40\x97\x63\x19\x14\x81\xf7\x72\xe7\x0a\x3b\x3b\x7d\xf2\xc8\x2f\x61\x0d\x99\xab\x6f\x0f\x44\xa7\xd9\x2d\xc5\xfa\xd4\x53\x8e\xfe\x94\x4c\x92\x49\x14\x9c\x95\x63\xfa\xea\x62\x87\xff\x6e\x9b\xd0\xba\x26\xb2\x9d\x8f\x3e\xde\x68\xa4\x73\xff\xdd\xb1\xba\x0d\x49\xa8\x5a\x0b\x65\x99\x74\x8f\x6a\xd1\x75\x91\xb5\x24\x99\x5a\x91\x52\xca\x20\xc9\xc8\x68\x44\x76\x54\xb6\x72\xa6\x94\x40\x9c\xe1\xd1\x08\xef\xa8\x6c\x05\x4f\x29\x1e\xb8\x41\x58\xfa\x25\x5e\x44\x19\x55\x47\x4f\x5e\x47\xf7\x11\x0a\x3d\xa6\x0c\x7d\x2b\x4b\x6f\xe3\x48\x56\x1a\x0a\xe2\x3c\x82\xd4\x8a\x86\x06\xca\x2b\x42\xf5\x20\x3e\x3e\x52\x9a\x00\x8b\x21\x05\xcf\x88\x0b\x8e\x58\xd9\xb5\x92\x9c\xe9\x00\xb2\x92\x9c\x8f\x04\x0a\x58\xa4\x91\xf8\xb3\x86\xf6\x8b\x4e\xe8\xb8\x34\x9f\xed\x6f\xa7\xce\xe3\x02\xe5\xc4\x54\x50\x3f\xea\xb9\x40\x29\x1c\x2d\x82\x26\x97\xe8\x28\x53\x9b\x6c\xa3\x91\xd5\x70\x41\x8b\x6a\x4d\xc4\x1e\xbe\xa1\x4f\x44\x4f\x81\x76\x6a\x99\x4a\x4d\x91\x2c\xf2\x0d\xe6\x0a\x87\x78\xe5\x15\x59\x22\x56\x2e\x28\x13\xa8\xd5\x7a\x5c\x9f\x9c\x9f\x5c\xc2\x68\x18\x81\x84\x33\xbc\x96\xfe\xc6\x6a\xc4\xf2\x19\x65\x32\x15\x74\x18\xdf\x41\x96\xd9\x6d\xb2\x9b\xf0\x7c\x19\xd5\x73\x48\xb2\x09\xc4\x1e\x31\xe1\xc5\xbd\x71\x51\x57\xc0\xd2\x43\xa7\x48\x26\xe3\xf1\xd7\xb8\x41\x73\xdf\xe2\x35\xe6\xbe\x09\x59\x9e\xf1\xa4\xbd\x39\x31\x05\x03\xa6\xd4\x15\x6a\x72\x54\xcd\x2c\x97\x0a\x77\x26\x6d\x5e\x95\x41\x5c\xd9\x52\xdc\xe1\x55\xdc\x8e\xca\xf8\xf0\x41\x63\xfd\xa5\x02\x88\x3f\x36\x56\x7c\x7f\x45\xb7\x03\x99\xc7\xf9\xce\x28\x0e\xb5\x46\x5c\xde\xd3\x34\x4e\xfe\x0b\x9c\x80\x81\x4e\x60\x46\xe4\x8b\x42\x66\xa7\xf3\x26\xd3\x53\x43\xd7\xea\x98\x13\xc9\x06\xa1\xb7\x8f\x0a\x15\x74\xd4\xce\xf2\xb1\x5c\x9f\x34\x2e\x28\xfb\x0f\x62\x02\x49\x76\x87\x4d\x7a\x4d\xbd\xcd\x58\xb0\xd7\x0d\x21\xd5\xa3\x40\xc4\x2a\x1f\xf5\x78\xfc\x35\xef\xdd\x6c\x32\xc3\x73\x2f\xe4\x11\x16\x9b\x49\x9c\x69\xfe\x55\x07\x71\x0c\x4c\x71\x36\xb7\x2f\xf1\xa3\x78\x26\x66\x35\x07\x7b\x67\x85\x1c\x3b\x56\x79\x98\x48\x1e\x5f\x17\x5a\x3c\x75\x93\xa8\xd8\xd1\x7e\x8a\x37\xdc\xce\x53\xdd\xf8\xc0\x76\xaa\x4e\xee\x94\x44\x06\x99\xac\x9d\xe2\xca\x03\xd8\xdc\x75\xf3\x25\x24\x4e\x1a\x8d\x8e\x3a\xed\xe4\x95\x4f\x8f\x76\xb4\xaa\xfd\xb3\x0e\xd2\x37\xd1\x45\x91\x2f\xde\x46\xcd\xa6\xb9\xa3\x4c\x79\x16\x5d\x32\x84\x48\xb4\x7b\x72\xb1\xec\xa7\x12\x84\x11\xb7\xd9\x7c\xd5\xb8\x41\x23\x57\x1b\x78\xc2\xc6\x42\xd1\xa7\x07\x0d\x56\x0c\x0d\x34\x17\x84\xc8\xde\x33\x25\xcd\x99\x0e\x9a\x04\xfb\x03\xd2\x3d\x5e\x62\xa2\x79\xb9\xd6\x37\x31\x4e\x6e\x58\xbe\xd1\x76\xad\x08\x80\x7a\xd0\xc9\xec\x2c\x43\xf9\x51\x01\x32\xed\xd0\xc3\x3a\xc8\xaf\x9f\x3e\x47\xd5\x76\x43\xdb\xbb\x6f\x42\xd0\x1c\xcd\x9c\x86\x8a\xa6\x52\x83\x7e\x0a\x43\xbf\x3c\xdf\xd3\x4d\x55\xe4\x1c\x2d\xd5\xc4\x1f\x29\x8e\xf1\xc0\x60\x71\x3b\xfa\xd8\x19\x40\x4e\x6a\xbd\xcb\x83\x87\x51\xd5\x77\xf6\xe8\xd9\x3d\x1f\xdc\xb1\xd7\x6a\x67\xff\xdf\xe5\xe4\xf6\x7e\x7b\x63\x5b\xec\xec\x57\x07\x39\xbe\x5f\xd7\x6e\xa3\x43\x7a\xbf\xff\xe4\xdb\x0d\x0f\x19\x45\x7d\xbf\xef\x10\xaa\xd5\xce\xfe\xdf\x07\x32\x0f\x85\x44\xa7\xde\x77\x39\xc9\x2f\x11\x7b\x9f\x21\x74\xd3\x03\x46\x52\x04\xe1\xbd\x46\x10\x4d\xf6\xf4\xdc\x58\xcd\xde\xa3\xef\xa6\xd1\xee\xde\x8d\x78\xfe\xf0\xae\x4d\x8b\x9d\xfd\x36\xc6\xb8\x07\x76\x6b\x1a\x1c\xd4\xeb\xfb\xc0\x4c\xa0\xed\xce\xb1\x8c\x6f\xcc\xc1\x03\x98\x06\x3b\x7b\xed\xfa\x05\x1c\xdc\x7f\xb7\xe9\xce\x91\x1a\xfd\xc1\x33\x7a\x38\xd8\x7b\xad\xf6\xf4\xdf\x80\x98\x84\x87\xfb\x0d\xd3\x6d\x7c\xf0\x68\xe5\xfb\x8e\x54\xea\x51\x8c\x75\x25\x83\x28\x79\xf2\x5a\xaa\xc5\x9f\x08\x4a\x5b\x3f\x78\xd2\x8a\x10\x9b\xfc\x3c\xbd\xee\xb5\xcf\x9e\x3e\x7a\xf3\xc3\xab\xa7\xaf\x9b\xaa\xbd\xc9\x5b\xfa\xd7\xd5\x23\x09\x08\xf3\xfd\xda\xb0\xac\x9f\xed\x37\x15\x3e\xae\x25\x41\x6f\x03\xc3\x85\xdf\x3f\xfa\xec\xce\xf5\x95\x27\x48\x53\x10\x7b\xd6\xa9\xea\x7d\xae\xd5\x3e\xba\xa0\x8c\x6b\x63\xfd\x43\x29\x28\xdb\x64\x27\x70\x6b\xb8\xbb\x67\xdf\x4e\xa3\x3d\xf1\x7c\xc9\xaa\xc0\x8b\x7b\x4e\xdd\x6b\xb5\xb3\xff\x67\x94\x5d\xe0\xe5\x12\x91\xfb\x0d\xe0\x37\xdb\x43\xfe\x5d\xe7\x85\x75\x94\x38\x98\xfa\x6b\x1a\xed\xec\xfd\x05\xe5\xcf\x68\x45\xee\xd9\xbd\xd7\x6a\xf7\xa3\x25\xc9\xfd\xfb\xf5\xee\xb4\xd9\xd9\xb7\x4e\xd8\x71\xbf\xce\xdd\x46\x3b\x7b\xff\x81\xe4\x15\xbf\xa2\x0c\xff\x8c\xee\xb9\x3b\x9d\x96\x3b\xc7\x51\xd7\x5d\xd9\x85\xd1\xbf\xe4\xe5\xd5\xc1\xe3\x74\x5a\x1e\x30\x8e\xa8\xf6\x86\xde\x8f\x78\xe8\xb4\xdc\x8f\xc3\xac\xfa\x65\x2f\x16\xeb\x51\xd4\xfc\xf6\xd0\x36\x43\x25\xdf\xbf\x5c\x59\xeb\xb7\xba\x54\xce\x77\x3c\xbf\x21\x79\xf9\xaf\x66\x69\x62\xea\xbd\xeb\x0a\xd8\xf2\xee\xd1\x18\x74\xc2\x6f\x60\xb2\x2a\xd0\x82\x3b\xa9\x2e\xb5\x46\x92\x57\x9b\x63\xeb\x89\xec\x7f\x6c\x32\xa3\x1d\xcb\x21\x8e\x4b\xc4\xae\xf1\xa2\xa3\xb0\xb0\x4a\x2c\x4f\xef\xd9\x53\xa5\x47\xeb\x61\x89\xa7\xdd\x77\x70\x07\xcc\xee\xa2\x41\xfa\x66\xd3\x3f\xcd\x9e\x11\x5b\x35\xfa\xbf\x06\xa6\xd4\xaf\xaf\x51\x16\xc5\xb0\x82\x05\x5c\xc0\x15\xbc\x82\x4b\xb8\x81\x6b\x78\xdd\x82\x4e\xbc\x8a\x3f\x40\x67\xe5\x05\xa3\xd5\x3a\x11\xeb\xb4\x75\xfa\x63\x12\xcf\x26\xc7\xff\x6b\xbe\x3d\x9d\x4d\x8e\x1f\xcc\xc1\x8f\xc9\x09\x70\xf2\x1d\xa9\x56\x3a\xe3\x51\xa3\x5e\x19\xea\x14\x3a\xe5\x30\xe7\xc3\x02\xe5\x25\x57\x35\x87\xa7\xc9\xe9\x57\xc9\x04\x0e\x2f\x2a\x3e\xbc\xa5\xd5\xf0\x2a\xbf\x46\x43\xe3\xdc\xa0\x07\x1f\x47\xc9\xf0\x7b\xd1\x08\x0d\xab\xcd\x25\xcb\x97\x48\x54\x65\x43\xad\xed\x1a\xd2\x95\xea\x0c\x0e\xf9\x15\x22\xb6\x4e\x33\x7a\x12\x81\x01\x4b\x9e\xbc\xee\x78\x63\xc9\x42\x57\x50\x93\x31\xef\xa7\x57\x41\x67\xb0\x63\xfe\x6f\xaf\x8a\x15\xc5\x34\xb5\x6c\x91\xaa\xa8\xbc\xbf\xae\xfd\x19\x58\x5e\x3c\x63\xcd\xdf\xea\x93\xb8\xee\xd9\xb5\xfc\x4f\x15\x28\x31\x5b\xa6\xf7\xb8\x54\x85\x9e\x88\x2c\x63\xfe\x6f\x55\xc5\xf0\xcd\x19\xb3\x7f\xaa\x0f\x86\x5b\xaa\xfc\x39\xb9\x74\x69\xb6\xf2\xbf\xb9\x34\x59\xb6\xf2\x7e\xaa\x0a\x2e\x69\x92\xad\xbc\x9f\xba\x77\x4b\x51\x67\x2b\xe7\x87\xfa\xd8\xa1\x3a\xb2\x55\xb7\x4c\x55\xf5\xa9\xcf\x6c\xd5\x2a\x50\x95\x3c\x1a\x2f\x5b\xf9\xbf\x55\x15\x8f\x4c\xce\x56\xfe\x6f\xbd\x81\x0d\x2d\x97\xad\xdc\x5f\xea\x73\x87\xb4\xc8\x56\xdd\x32\xb7\xaa\x43\xed\xd8\xaa\x4e\x99\x1d\xd4\xb8\x05\x5e\xf9\x67\xe0\x71\xba\xcc\xfb\xa9\x81\xaa\x11\x90\x08\xb0\x6a\x7e\x79\xe7\x1b\x92\x0a\x67\x6c\xd7\x57\x0d\xc7\x0e\xa4\xb7\x40\xbc\x2b\x72\xf3\xc7\xd7\x85\xba\xf2\xd3\xd7\x6f\xcc\x2a\x16\xfe\x0a\xbf\xa9\x70\xb1\xfc\xe1\xd5\xb7\x32\xd5\x4b\x56\xf9\xbf\x07\xb6\xb5\xb3\x45\x6b\xbf\x83\x96\x5f\xe5\xa6\xfb\xf5\xd1\xf7\xcf\xcd\xe0\x45\xf0\xab\xd3\x7c\xe9\x57\xb0\x9e\x0f\x59\xde\x3a\x98\x9c\xa3\xe6\x63\xe9\xff\xd6\xa7\x2a\x95\xaa\x6e\xa5\x56\x89\x86\xdb\x4a\x60\x30\xb7\x5a\xab\x44\xef\x13\xa5\x05\xca\x89\x5b\xaf\x5d\xa4\x51\xc7\xfa\x02\x2d\x97\xe6\x30\x4b\xb5\xaf\xeb\x60\xb1\x6a\x70\x81\x0a\x4a\x2e\xcb\x37\x34\xbb\x6e\xfe\x56\x9f\xae\xf2\x52\x1c\x7b\x76\x6d\xfe\x32\x67\xdf\x88\x69\xe4\xa9\x37\x3f\x55\x05\x15\x16\xc7\xea\x42\x1b\x67\x57\xfd\xb9\x21\x25\x24\xae\x7e\xad\x08\x89\x26\xd0\x49\x0f\x21\x25\x1a\x1f\x24\x95\x6b\x52\xa0\x9e\xb6\xd2\xa3\x9e\x42\xf5\x1a\x06\x25\x74\x4a\xd9\x24\x80\xfd\xc9\x6b\xc7\x5e\xe6\xb6\x8f\x0c\xeb\xa3\x87\x3e\x9f\x89\x0c\xb8\x8b\x4d\x5c\x90\x29\x4a\x91\x13\x44\xc6\x8d\x16\x22\x66\x95\x6a\x2d\x72\xd8\x76\xc6\xc4\x6c\xfb\x4d\x12\xcb\xfb\xf8\x00\x4f\xaa\xf8\x2b\x59\xa3\xbd\x68\x07\xaf\xd2\xb6\xd8\xc9\x35\xeb\x7b\x7a\x70\xaf\xba\x7e\xef\xde\xb9\xc4\x71\x2f\xc3\xd1\xd4\xf9\x0d\x40\xc8\x60\xe7\x2a\x55\x86\x6a\x81\x28\x8f\x95\x74\xdd\x24\xf9\x3f\x60\xf5\xbf\x6a\x66\x39\x84\xff\x0f\x38\xf5\x43\x44\x23\x21\x3e\xe9\x57\xba\x0b\xfb\x50\x45\x37\x22\xe5\x81\x8b\xfe\x3d\x2c\x78\xb7\x44\xe8\x37\x02\xe7\xfb\x17\xdc\x12\x71\xec\x73\xf4\x0c\x0b\x57\x3e\x9f\x9c\xe0\xfd\x85\x1e\x21\x31\xcb\x2e\x79\xc3\xa7\x21\x50\x8a\x0c\xc1\xc2\xf1\xd6\x95\xa6\xba\x7a\xd6\xe9\x3a\x17\xa8\x95\x7b\x8c\x0d\x80\xbe\x5b\x58\xd3\xb4\x71\xd2\xb8\x50\xa4\x6f\x04\xab\x0e\x15\x2c\xe6\x11\x6a\xb2\x94\x87\x59\xf9\x94\x7a\x5f\x65\x22\x49\x70\x51\xbd\x45\x8c\xf7\x35\x50\x49\x46\x45\x83\x16\x91\x0f\xea\x18\x81\x60\x90\x2b\x4c\xc4\xfe\x6e\xb7\xe6\x2f\x4c\xc9\x80\xab\xe8\xab\x48\xa5\xc7\x91\x9e\x72\x2c\x32\x59\xa7\x60\x9b\x96\x83\x4d\x75\x46\x2b\x09\xab\xfb\x6b\xba\xfb\xdf\xdf\xa0\x77\xd6\x66\xf1\x2f\x55\xd4\x63\x6d\x02\x2a\x56\x41\xbd\x12\x67\x29\x2e\x0d\x71\x57\x4a\x13\x79\x4e\x49\x7a\x74\x5a\xbb\xf3\xb2\x53\x6a\x57\x71\x37\x3c\x14\xfa\xae\x89\x92\xd4\x5f\x57\xdd\x0e\x1a\xae\x68\x80\x51\xd7\x2a\xf7\xd4\x6a\x2e\x62\xbe\x7f\xe0\xa6\x32\x69\x2a\x57\xe2\x4a\x64\xad\x2d\x87\x71\x25\xa8\xb1\xa9\xfc\x37\x2e\x40\x5a\x75\xe2\x2b\x15\x00\x88\x8d\xf6\x46\x72\x7b\xb0\x86\xdb\x3a\x9e\x00\x2c\xc4\x31\xaa\x7c\xba\x3d\x74\xbf\x6e\xb9\x5b\x96\xfc\x1b\x45\xf5\x8e\xf8\xf9\x80\x47\xed\x13\x39\x04\x7e\xbe\xe5\x7e\x36\x77\x07\x1d\xc5\xd1\xf1\x7f\xf8\x2a\x39\x7d\x90\xfc\xa9\xeb\x00\x81\x0a\x24\x9d\xdf\x54\x4a\x78\x9b\x19\xde\x94\x7f\xa2\xa9\x6a\x67\xb1\xee\x1e\x76\xec\xb9\xdb\xe9\xbe\xbd\x64\xe0\xad\xb8\x09\x43\x6c\x82\x10\x3a\x15\x43\x86\xb1\xb3\x39\x24\x32\x18\x6a\x76\x74\x0a\xa9\xd9\x2d\xce\x6e\xad\x9f\x6e\x0e\xcb\x0c\xcd\x5a\xfd\xcf\x63\x70\x76\x14\x93\x2c\xce\xb3\x32\x21\xe8\x1d\x8f\x01\x48\x96\x94\x20\x15\x55\x52\x5a\xa9\xe6\x2a\x1b\x3b\x80\x47\x7c\xbb\x65\xda\x08\xfd\x28\xcb\x38\x38\x13\x43\x82\xb3\x7a\x21\x25\xf8\x15\xb8\xc3\x62\x0a\x34\xab\xea\x15\x26\x79\x51\xdc\xde\x89\x09\x1c\x91\xd1\xa8\x4c\xd4\xdc\x9b\xbf\x62\x60\x2b\xe1\x55\x8c\xb5\x9c\x9f\x5a\x4b\x74\x56\xcb\xe5\x0d\x1a\xf9\xbf\x40\xf0\x5a\xfa\xaf\xc5\xc2\xc3\x9c\x73\xb4\xde\xf0\x21\xa7\x43\x19\x00\xb3\x5a\xf0\x8a\xa1\x21\xa1\xe4\x58\xae\xf0\xa2\x40\xd6\x87\x27\x02\x75\x1d\x3b\x81\x81\x58\x0c\xee\xea\x76\xee\xe7\xbf\x48\x60\xb1\xde\x18\xef\x99\x80\x8f\xe7\x97\xd2\x97\x99\xe9\xd0\xca\x74\xbd\xa1\x04\x11\xae\x0a\x6b\xa8\xdd\x4b\x3b\x46\xd5\x2c\xe3\x31\x82\xa7\x60\x36\x91\x79\xd4\x59\x96\x65\x6e\x7f\x5e\x54\x3d\xaf\x53\x99\x84\x44\x53\x03\x47\x36\xf0\xa4\x4d\x58\xc4\xaf\xd0\xd0\xcc\x71\xb8\xc9\xcb\x12\x2d\xc5\x96\x89\xe2\x9f\xf4\xad\xf8\x69\xa8\xee\xc9\x70\x5d\x95\x7c\x78\x81\x86\xf9\x50\xf7\x27\x81\x88\x8c\xb3\x68\x18\xdf\xd2\xca\x34\xff\x29\x1a\xb3\x71\xf4\x13\x88\xf4\xe1\x63\x70\x57\x3b\xaa\x1a\x79\x4c\x04\x78\x6e\x05\xcd\xae\x44\xc7\xcb\x5b\x92\xaf\xf1\xc2\xde\x49\xb3\x52\x6f\x55\xd3\xc0\xee\x75\x9a\x1e\xe7\x05\x8f\xd2\x43\x6a\x46\x21\x24\xb6\x42\x7c\x71\x75\x92\xff\x2b\x6f\xe9\x36\x65\xf9\x47\x8f\xb7\x12\x70\x37\x63\x4e\xc6\x05\x8b\x6e\x81\xfc\x90\xf0\x2b\x44\xe2\x96\x8b\x2a\x4a\xe8\x5b\x8b\x31\x12\xf1\xd2\xc7\xe6\x92\xa0\x3a\x20\x68\x53\x0b\xec\x9a\x4b\x7d\x5c\x2c\x8d\x4b\x57\x8b\xf2\x0a\x95\x1b\x4a\x4a\x14\x8a\x71\xf7\xa7\xc9\x69\x96\x65\x48\x7a\xfc\x57\xa5\x8e\x89\x67\x34\x2b\xbb\x1b\x7e\xd5\x69\xa8\xf1\xc0\xce\x66\x0f\x1e\x74\x9a\x7d\x93\x2f\x5f\xa1\x7f\x57\xa8\xe4\xbb\x07\x9c\x74\x5a\x1a\xfd\xce\xee\x76\x7f\xea\xb4\xfb\x33\x25\x68\x67\x9b\xd3\xee\x58\xae\x22\xab\xd3\xc2\xb5\x35\x13\x0d\x55\xe8\x7c\xd1\xcc\xe8\x97\x76\x4f\xf1\x7f\x75\x86\x73\xd4\x4e\xbb\x9a\x9a\x46\x5f\x67\xff\x63\x32\x91\x51\x78\xe5\xcf\x87\xff\xef\x64\xd2\x07\x7c\x52\x96\x55\x1a\xa6\x51\x15\x86\x6e\x1b\xf4\x5a\x55\x1c\x17\xe5\xc9\xba\x22\x97\xc7\x9a\xc8\x3f\x5e\x51\xdb\x3a\x50\x75\x89\x38\x62\x6b\x4c\xd0\xf1\x05\x5d\xde\x1e\x6f\x94\x92\xf4\x7e\xc9\xda\x0d\xcb\x71\x57\x0f\xdc\x98\x8c\x01\x77\x30\xc7\xc5\x67\xc6\xe6\x99\x0c\xdc\x79\xef\x74\xe2\x10\x25\x57\x28\x5f\x22\x56\xbe\xa1\x5a\x07\x8c\x61\xfb\x4d\x92\x52\x33\xeb\xa3\xa8\xeb\xeb\x58\xde\xf7\x4f\x11\x5b\x43\x81\xec\x34\x23\xe5\xe7\x5b\xb6\x99\xad\xc8\x76\x7b\x57\x0f\x70\x52\x31\xc1\x47\x63\x19\x1d\x2f\xe3\x83\x76\x06\x7b\x9d\x52\x52\x4d\x28\x02\x03\x3a\x1a\xc5\xd8\x2c\x48\xd7\xd3\x31\xf6\x6d\xb1\xe8\x19\x52\x60\x1c\x21\x65\x66\x49\x8b\xf4\x6c\x8a\xa7\xe8\xcf\x4f\xdf\x88\x37\x21\x4f\xd6\x88\x5f\xd1\xe5\x76\x7b\x94\x27\xe2\x54\xb7\x5b\x1b\xc3\x3c\x37\x5d\x8e\x46\xb1\xfd\x7b\x16\xe9\x34\x9b\xc7\x6f\x74\x1c\x3f\xe7\x93\x4e\xfe\xaa\xf3\x27\x82\xed\xb6\x69\xd7\xf4\x26\x27\xd8\xdb\x5f\xe6\xc6\x93\x97\xd2\x91\xb3\xe1\xe2\x2a\x67\x25\xe2\x59\xc5\x57\xc7\xff\x33\x02\x30\x57\x5b\x1c\xcc\x65\xad\x7c\x8a\x20\xcd\xee\x2a\x56\xa4\x08\xaa\xe5\xa5\xbc\x86\xb9\x7a\x00\x9d\xc3\xd1\xed\xbc\x48\x89\xe7\xe2\xbb\xc6\x5d\x71\x0e\x12\xf5\xf8\xb6\x47\x52\xcf\x01\x96\x9d\xa9\xa7\x18\x8b\xe3\x95\xd1\xfa\x21\x02\x75\xe0\x65\xf1\xec\x96\x5f\xbd\xfe\xdb\xf7\x82\x0f\xbc\x8a\xef\x98\x46\x05\x29\x82\x9b\xfc\xb6\xa0\xf9\x32\x95\xd1\xeb\x9d\x87\x4a\x79\x28\x75\xbb\x6c\x98\x77\xd5\x85\x0c\xa3\xa4\x3b\x11\x04\x0b\x77\x5e\x32\x35\xd7\xd7\xd5\x62\x81\xca\x52\xce\x96\x41\x6a\xde\xb5\xf6\x42\x98\x1a\x12\xba\x9b\xb1\x23\x53\x88\x40\x11\x66\xcb\x90\x80\x69\xb1\x05\xd0\x2b\x4f\x0f\x7b\x90\xd5\xc1\xea\x59\xa6\x5d\xb4\xa2\x2e\x08\x4a\xae\x72\xb2\x2c\x2c\xbe\x8f\xb9\xc6\x91\x10\xc7\xdc\x00\x16\x50\x09\xbb\xf4\x4c\xe9\x68\x44\x05\xc6\x77\x0c\x23\xa6\xce\x51\x30\x19\xf6\x33\xa6\x20\xa5\x35\xdc\x08\x68\x7b\xa6\x26\xaf\x06\x78\x46\x59\x3b\xd7\xbd\x9f\x31\xcb\x20\xe9\x37\xe8\x1d\x57\x6b\xe8\xd6\x57\x41\x6e\x25\x89\x41\xcd\xa9\x50\x7d\x4b\xc5\xb1\xf5\x0d\x1a\xbb\x30\x7a\xe0\xd2\x75\x7f\xde\x5b\x23\x53\x24\xca\xb4\x34\xbd\x54\x9a\xb8\xb7\x9f\x94\x86\xf9\xbe\xc8\x31\xd1\x78\x38\xf0\xe4\xce\x54\x74\x21\xcd\x90\xcd\x05\x82\xd2\xc3\xd8\x60\x73\x89\x89\xca\xaa\x25\x4c\xbd\x04\xd9\xce\x27\xeb\x97\x09\x77\x80\x12\x2e\x19\xc0\xd6\x4d\x6e\x9c\x89\x15\x27\x90\xfd\xef\xd7\x2f\x5f\xa8\x03\x8c\x19\xd0\xe4\xbf\x02\x9c\xa3\x98\xba\x21\x13\x5e\xdf\x12\xae\x41\xcd\xd8\x71\x51\xed\x59\x69\x20\x72\x70\x24\xe8\xd9\xed\xf6\xc1\xe4\x4f\xca\xc7\xfc\xc1\xe4\x7f\xa8\x3f\xa2\xbf\x3c\x7d\xf4\x24\x12\x6c\xa6\x7e\x03\xa6\x0b\x4a\x4a\x5a\xa0\xe4\x26\x67\x24\x8e\xde\x5c\xe1\x72\x68\x50\xcb\xf0\x26\x2f\x87\x95\x74\xb1\x10\x8c\xcd\x05\x1a\xca\xf9\x2d\x87\x79\x39\x14\x48\x3a\x89\x20\x03\x29\x31\xa9\xb9\x8d\xc3\x67\x3f\xbd\xbc\x9b\xf8\xe8\x4a\xef\xdd\x56\x56\xbc\x73\xfc\xef\x0a\xb1\xdb\xe3\x4d\xce\xf2\x75\xbb\xaa\x82\xe5\x8f\x1f\x1e\x3b\x24\x0c\x77\xb3\xd0\xeb\xf7\xf8\x6e\xc1\xd0\x12\x11\x8e\xf3\xa2\x4c\xa3\x32\x5f\xa3\x63\x95\xe2\x3a\xaa\x21\x92\xd1\x8c\x88\xde\xf6\xcc\xfe\xb5\xdd\x12\x49\x09\x6c\xb7\xf2\x79\x06\x09\xa7\x3f\x6c\x36\x88\x3d\xce\x4b\x14\x03\xf1\x26\xe4\x3c\x07\x82\x13\xd5\xaf\x77\xd3\x50\x1d\xa6\x53\x24\xc1\xc5\xcd\xae\xa0\x5b\x6b\xe9\x82\x25\x44\x04\xba\x6e\x82\xcb\x4f\x23\xf0\xf5\xf1\xe9\x34\x1a\x45\x69\x34\x8d\x06\xf2\xeb\x38\x8b\xa2\x31\x1e\x4b\x64\x6d\x77\xfe\xff\x88\x8d\xff\x5e\xee\x3b\x30\x5d\xd7\x32\x9b\xa1\x24\x38\xbc\x9b\x6e\x2b\x4c\x89\x24\x31\x14\x7c\x2b\xe6\x17\xaf\x6e\xcd\xd7\x54\x7f\x55\x3f\x9b\xe4\xbd\x3b\x01\xa8\x0f\x14\xfa\x00\x28\x04\x15\x1f\x0e\x13\xa1\x6d\xc9\xf0\xef\x2d\xa8\x27\x24\xd9\xc9\x8f\xb3\x1f\xe7\x5f\x9c\x04\x28\x7a\xec\x84\x9c\xb6\x5f\x51\xdc\xa4\xe6\x84\x05\x5c\x0c\x64\xe6\xcc\x8e\x84\xae\x04\x60\x45\x59\x5c\x65\x13\x99\xe2\x57\x41\xe8\x59\xf5\xb0\x38\xab\xc6\x63\x40\x12\xae\x68\xb1\x29\x8d\x31\xcc\x61\x39\xab\xe6\x20\x45\x71\x3e\x8e\x66\xd1\x38\xf6\x22\xd2\xc9\x6f\xd3\x2a\x8d\x22\x30\x8e\xe6\x91\xaa\x6b\x13\xc1\x4a\x10\x6e\x81\xa6\x1e\x7b\x31\xc4\x64\x58\x02\xd3\xeb\x42\xb7\x5e\x98\xd6\x7a\xe8\xa6\xaf\xfb\xac\x40\x34\x16\x33\x91\x3c\xa4\xfa\x4b\x09\xfc\x54\x6f\xde\xf8\x0b\x3d\xaa\x21\xdb\xea\x38\x8a\x20\x02\xc9\xbf\x28\x26\x71\x34\x8a\x9c\x00\x1e\xff\xcf\x83\xc9\xc9\x25\x8c\xc6\x11\xf0\x22\x69\x6b\x5a\xd8\xa6\x25\x1a\x8d\x74\xb8\x37\xf9\x27\xcb\x22\x19\x23\x29\x94\x47\x65\xca\x62\x90\x32\x88\x66\x48\xaf\x60\x9e\x21\xb2\xa0\x4b\xf4\xc3\xab\xe7\x8f\x8d\xe8\x27\xe6\x60\x1c\x65\xd1\x38\xf0\x85\x01\x37\x84\x75\x37\xb4\x9f\x35\x4f\xef\x8f\x5b\xdd\x54\x29\xf0\xc5\x49\x79\x5b\x72\xb4\xee\xf9\x88\xde\xf1\x13\x2d\x41\xfb\x44\x52\xa4\x57\x55\x81\x4a\xf1\x92\x62\x72\x59\x15\x39\xc3\x3f\x23\x41\xa9\x15\x15\x93\x97\xdd\x18\x5b\xf3\xe4\xb9\x99\x98\xdf\x92\x7b\x3f\x7b\x54\x06\xca\xfa\x39\x7a\xde\x98\xee\xdf\x85\x55\x05\xea\x79\x59\xa2\x0d\x43\x0b\xc1\xa8\x2a\x0b\xed\x66\xec\x21\x2e\x87\xf6\xeb\xd2\x5a\x5d\xa3\x77\x82\x9d\xc2\xbc\xb8\x4d\x87\x78\x2d\x76\x7b\xd8\x34\x59\x31\xba\x1e\x7e\xd9\xda\xdd\x2f\xcf\x22\x78\x74\x0a\xef\xf0\x32\x6d\x6f\x7c\x72\x59\xd0\x8b\xbc\x28\x23\x58\x11\x8e\x8b\x34\xfa\xca\x84\x48\x72\x36\xa1\xdf\x92\xc9\x0d\x4b\x03\x23\x67\x5b\xef\xbb\x68\x4d\x02\x3a\x3d\xc4\xe0\xf0\xf5\xdf\x0d\x9d\x86\xc3\xfa\xa3\xee\x82\xd3\xf3\xa1\xfb\x60\x01\xea\x3d\x77\xc1\xb6\xbf\xdf\x1e\xd8\x66\x1f\x79\x07\x6c\xbf\xb5\x47\x2f\x39\x00\x02\xdd\x4b\xe4\x34\x80\xfe\x55\xf3\x36\xb3\x7d\x2b\xfd\xbb\xb5\x03\xd5\xb4\x50\x85\xc0\x39\xbd\x98\x26\x84\x4f\x7c\x6c\x72\x16\x1f\x4d\xb2\x4c\x93\x7a\x4f\x5f\xfc\x2d\x79\xfa\xff\xbd\x79\xfa\xe2\xc9\xf9\xf7\xaf\x5e\xbe\x79\xf9\xe6\x1f\xdf\x3f\x7d\xbd\xdd\xee\xf8\xa8\x8f\x0c\x8c\x46\x3d\x4e\x1e\xe6\x48\x6d\x8e\xd8\xf7\x81\x8e\x76\x27\xbf\x2e\x08\xe9\x2c\x20\x9e\xb8\x00\xa1\xf3\xcb\xd5\xfd\xb7\xa7\xbb\x47\xef\x85\x49\x3a\xbb\xf4\xab\xc3\x26\xe1\x9d\x72\x46\x73\xf6\xaa\xcb\xd2\xfb\x00\x6e\x94\xb4\x0e\x38\xed\x78\x7d\x7b\x9e\x5c\xcd\xb4\xe5\x6f\x91\xd6\xfd\xee\xe3\xaf\x2c\x5d\x62\x94\x2b\x1d\xd5\xac\xd5\x9e\xf2\x6c\x02\x59\xa6\xcb\x0d\x97\x72\xc6\x1f\x9a\xbf\xcf\xf8\x78\x0c\xd8\x8c\xcf\x55\x66\x62\xab\xc4\xd4\x7f\xa8\x8e\xc5\xde\xc7\x08\xbc\x8f\x98\xd8\xe0\x29\x5f\x60\xea\x8b\xad\x34\xcf\x84\x6e\xe2\x67\xba\xdc\x01\x9f\x0b\x4c\x4c\xf4\x01\xe5\x50\x31\x13\x64\xd7\x5c\xd0\xdc\x8b\x9c\xc7\x62\x07\x40\x13\x14\xf9\x41\x96\x65\x58\x2f\x6d\x34\xc2\x3a\x74\xd9\x0d\xe6\x57\xb4\xe2\x8f\x69\x45\x78\xca\x66\x91\xfe\x7d\xbc\x10\x05\xd1\xdc\xc7\xaf\x7e\xa8\x03\x12\x63\x00\x02\x92\x9d\x30\x18\x78\x37\xe6\x33\x00\xc2\x27\x38\x10\x4f\x8a\xe8\x5d\x0a\x34\x9b\xcc\xf7\x6f\x85\x21\x2e\x0f\x23\x42\x4f\xf6\x6d\x89\xff\x82\x1c\xd2\x15\xa6\x24\x94\x7b\xe4\xa3\x93\xaf\xcd\x5b\xdb\x26\x65\xed\x8b\xdc\x90\xb2\x26\xa0\xac\x9d\xb8\x4c\x47\x69\xcb\x63\xe2\x1a\x47\x35\xed\xdd\x24\x69\xee\x18\xac\xf5\x86\x37\x73\x61\xde\xbb\xef\x4d\xd9\x8e\x71\xd0\x09\x7a\xdb\xf9\xc9\x05\x7b\x77\x6a\xd6\x65\x3a\x9b\x9d\x7c\x71\x02\x23\x31\xce\xec\xa4\xfc\xe2\x04\x9b\xbf\xff\x19\xe7\xef\xb6\x82\x65\x05\x58\x15\x7f\x71\x8a\xd4\x97\x98\x2e\x38\xdd\x6c\xaf\x31\x03\x95\xf9\x84\xdb\x5f\xb0\xff\x21\x2f\x70\x5e\x6e\x95\x2c\x6f\x7b\x41\x49\x55\x82\x56\xa7\x17\x15\x30\x9d\x95\x4d\xd9\x6a\x95\x17\x5b\x4e\xd7\x39\x07\x54\x7f\xa5\xe6\xeb\x8c\xe3\x39\xa8\xd6\xba\x38\x77\x0a\x73\xaf\xac\xd4\x0b\xb0\xdd\x4e\xd3\x78\xf6\xcf\xd5\x1c\xac\xd0\x36\x9e\x15\x6c\x0e\x56\x66\x32\x5f\x3c\xb8\x36\x95\xae\xf0\x35\x32\xc5\x66\xc0\x7f\xe6\x08\xd3\xea\x76\xbe\xfd\x77\x05\x6e\xcd\x02\x4d\x83\x77\xdb\xc5\xd5\xb6\x2c\xb7\xe5\x55\x7b\x69\xeb\x9c\xb3\xed\x35\x62\x7c\x8b\xc9\x12\xc4\xd3\x14\xbf\xdb\xa2\x77\xa6\x16\x5e\x20\xb3\xe3\xeb\x6d\x01\x68\x55\xa2\xe6\x8b\xf3\x01\x2f\xba\xe5\xd4\xf6\x82\x88\x2d\x42\xc4\x14\xaa\xe1\xff\x5d\xe1\x9f\x4d\xc9\xcf\x62\xac\x39\x34\xd0\x2c\x8e\x5f\x6d\x8e\xaa\x5a\x96\x7e\x53\x02\xd0\x8d\x3d\xfd\x9b\x32\xb0\xc5\xd5\x5a\x15\xc6\x39\x20\x79\x71\xbb\x8d\x2f\x40\xbe\x8d\x97\x00\xe7\x97\x84\x6e\xe3\x0d\x90\xc1\xf8\xaf\x90\xf8\x93\x51\x59\x56\x82\x5b\x42\x37\xdb\x98\x83\x2b\x04\xe2\x12\x97\xdb\x12\xd9\x71\x4b\xac\x47\xf9\x67\x2e\xfa\xeb\xff\x2e\x4f\xf0\x1a\x99\xd9\xad\x90\x73\x6c\xa5\xb7\x08\xde\x2d\x92\xa7\xee\x34\x0e\x9c\x2f\xb6\x5f\x6f\xf5\xde\x00\xc4\x9a\x42\xf9\xb7\x3e\x5e\x40\xaf\x9b\x0f\xe2\xef\x0e\x40\x20\x6f\xf8\xf6\x79\x8a\x23\x37\x00\x5f\x82\x18\x95\x60\xea\xcd\x96\xb6\xda\xc7\xe5\x15\x6d\xaf\x68\xc1\x70\xa9\xae\x6b\x8c\xcb\x6d\xb3\x5f\xd8\xde\x66\xf0\x6e\x86\xd1\xdc\xb4\x7a\x87\x3b\x97\x39\xae\xca\x2d\x36\xed\xaa\xb2\xf7\xe2\x76\x26\x28\xe1\x10\x11\x77\x3a\x16\xda\x05\x74\x9b\x2d\x7b\xd7\x5c\x07\xb7\x1c\xbf\x73\xe0\xf4\xe7\xd6\x52\x97\x39\xcf\x2f\xf2\xd2\x5d\xee\x1c\x62\xc6\x90\x84\xdf\xef\x73\xcc\x04\x0e\x8b\x04\x35\x20\x4d\xd7\x37\x88\x6e\x0a\xb9\x9b\xd1\x3a\x17\x05\x6b\x75\x33\xa2\xc5\x15\x2e\x96\x11\x54\xff\x33\x5d\x58\xa2\x77\xd2\xba\xf8\x9d\x3a\xcb\x68\x4d\xaf\x91\x68\x43\x35\x1a\x88\x16\xf4\x26\x82\xd1\x5b\x4c\x54\x97\x3f\xd3\xf5\x05\x16\x35\xd4\x1f\xf2\x2e\x55\x44\x92\x35\xd2\x40\x72\x16\xa1\x7f\x57\x78\xa3\x73\x83\x61\xb2\xa2\x6c\xad\x52\x8a\xc3\x88\xa9\x68\x04\x6b\x4a\xd0\xad\x18\x74\x83\x16\xa2\x07\x65\x81\x2c\xff\x58\xe1\xf2\x4a\xfc\xbe\x42\x68\x13\xc1\xe8\x5f\x28\x17\x4f\x41\xb4\xa1\x85\xbc\xf1\x5d\x11\xf2\xbe\x17\xfe\x53\x1a\x30\x9e\xfc\xf3\xc7\xf2\xbf\xbe\x38\x81\x2c\x3b\x89\x67\x3f\xde\xfc\x78\x72\x3c\x1f\xcf\xce\x7f\x3c\xf9\xb1\x3c\x9e\x83\x78\x96\x1f\xff\xfc\xe3\x72\x3e\xfe\x02\x9c\x40\x62\x6a\x88\x4f\x63\x10\xcf\x1e\x1d\xff\xdf\xb9\xae\xf0\x5f\xa2\x02\xce\x4e\xfc\xb2\x93\x56\x4e\x15\x27\x89\x88\x0c\x16\xcb\x0d\x31\xcd\x1e\x92\x33\x36\x1e\x03\x94\x38\xa7\x30\xe3\x33\x36\x4f\x38\xfd\x96\xde\x18\xa5\xc3\x3c\x3b\x9a\x74\xf2\xa5\x34\x7d\x1a\xda\x53\x05\xfe\x35\x9d\x93\x87\xf8\x8c\x08\x6a\x3d\xe3\x33\x32\x87\x28\xb1\x60\x37\x63\xb3\x49\x67\x04\x36\x3b\x6d\x57\x3a\xdd\x5b\xe9\x39\xb9\x46\xac\x44\x3d\x75\x27\x3d\x75\x43\x83\x4f\xe6\x5e\x9a\x3e\x70\x17\xa3\x0c\x6d\xb7\x77\x35\x70\xf7\x26\xf3\x76\x6a\xbb\xad\x62\xe0\x0e\x21\xef\x53\xd6\x2e\x90\xd5\xdc\x24\x07\x4c\xd2\x37\x96\x86\x30\xf4\x50\xb9\xdd\xce\x9c\xb7\xa5\x21\xa1\x64\xb9\xed\x33\x15\x83\xb6\x57\x25\x0b\xdd\xab\x54\xc5\xa0\x1e\xd0\x58\x50\x62\x4e\x31\x80\xb9\x2c\xf2\x27\xa8\xcd\x29\x91\x54\xec\x3d\xce\x17\x57\x28\x06\x35\x5e\xc5\x47\x5e\x5a\x99\xd1\xe8\xe8\x65\x37\xcf\x66\x2b\x20\x38\x68\x1b\x27\x2a\x05\xe2\x05\xa3\x37\x25\x62\xc3\x25\x45\xe5\x90\x50\x3e\x2c\xab\x8d\x64\x9b\x03\x3d\xc2\xe1\x46\x71\xd9\x1b\x5a\xdc\xae\x70\x31\x14\xec\xcf\x10\x95\xff\xe3\xb8\xbc\xca\xd7\xe9\xf0\x8a\xf3\x4d\x7a\x72\x72\x89\x79\x82\xe9\xc9\xed\x37\x3f\x3c\x60\x97\x91\x63\x70\x5a\xd9\xec\x21\x81\xce\x1b\x0d\xfa\xf9\x12\x2f\x78\xa6\x13\x20\x98\xcc\x3f\xa2\x0c\xa2\xba\x6c\x18\xba\xec\xce\xd9\x96\x8e\x05\xd0\xa6\x62\x97\x66\xc7\xd4\x26\xba\x64\x6f\xaf\xad\xc4\x42\xb4\xf8\xa1\x44\xcb\xec\x68\x02\xb5\x29\x91\xec\x65\x86\xe6\xdb\x6d\xdc\x2a\xc9\xf4\x6f\x47\x30\x81\x80\xce\xb2\xe1\x90\xd2\x21\x73\xe5\x76\x4c\xeb\xaf\x1f\x8c\x46\x8d\x65\x8f\xf9\x38\x7b\x30\x9f\xba\x3f\xd2\xbb\x7a\xd0\x9d\xa8\xce\x36\x31\x93\x0c\x4a\xe2\xf2\xa8\x7e\x96\xd1\xf3\x8d\x9a\x38\x69\x96\x62\x4b\xf4\x52\x1a\x49\x94\xe2\x12\x41\x5d\xc3\x66\x2b\xbb\x76\x56\xce\x34\x4e\xbd\xfd\xca\x2a\xb3\xef\x7a\x0c\x51\x50\xc3\x25\x2e\xfb\xcf\xcc\x34\x55\xe9\x31\xdc\xb6\x4d\xc9\x41\xa7\xe8\x1f\x48\xff\x79\xb4\x9a\xb5\x39\xf7\xb6\xe1\x58\x0d\x55\x8d\x96\x99\x49\x6b\x27\x46\xa3\x1e\x00\x94\xc8\xc5\x60\x14\x25\x50\x10\x47\xd6\xc2\x78\xa0\x6e\x10\xcd\x87\x8c\x63\x3a\xd9\x35\x90\x8b\x96\xdc\xcd\x3c\x60\x24\x95\x59\x57\x8d\x05\x67\xa8\xdb\x77\x83\x15\xef\xbd\x8a\xdc\xeb\x5b\x4c\x7d\x2e\x7a\xb4\xc7\x13\xf2\xd3\x38\xe8\x00\xe1\x79\xa0\x8f\x8f\x72\x29\xf5\x34\x54\x65\x99\x63\x5a\xce\x48\x93\x2c\x62\x8c\x0e\x04\xb8\x45\x76\xb3\x40\x1a\x9f\x1e\x65\x99\xb2\x36\x2a\x68\xce\x63\xa4\x82\x84\x7b\xdd\xf1\x83\xbb\x03\x2d\x84\x30\xe5\x29\x1a\x47\xc3\x68\xcc\x1d\x38\xeb\xc9\x0c\x13\xbe\x4b\xe7\x87\xb4\x0a\xae\xdb\x34\x0c\xce\x54\xbf\x96\x02\x70\x54\x5b\xf7\x80\x28\xcc\xd5\x11\xc9\xf0\x4c\x86\xaa\x59\x98\x3f\x56\xe6\x8f\x2b\xf3\xc7\xd2\xfc\xb1\x31\x8e\x20\x78\x15\x97\xd9\x11\xda\x6e\xb9\x52\x57\x23\x00\xab\x0c\xdb\xbf\x4b\xcf\x07\x65\x95\xb5\x00\x1a\xc6\x57\x19\x4b\xd0\x3b\xb4\x88\x11\xd8\x6e\x89\xf9\x53\x9c\xcd\x32\xbb\x9a\x3d\x68\xd1\x2d\xde\x4d\x74\x29\xb8\xd5\x5c\xe7\xf8\xee\x7e\x5a\xce\x9b\x39\x08\x0a\x6e\x33\xc4\x64\x28\xb5\xf1\x2b\x1d\x21\x6a\x33\x8e\xbe\x88\xac\x13\xcc\x22\xcb\x67\x9b\x39\xac\x46\xa3\x7c\xb6\x9c\x8f\x46\xf1\x22\xeb\x4b\x37\xb1\x00\x70\xd3\xfb\x71\x03\x94\x1f\x9d\xd2\x5a\x0b\xfa\xe0\x15\xba\x7c\xfa\x6e\x13\x6f\x60\x84\x23\x00\x17\x60\x60\x08\xca\x75\x46\x0d\x0d\xb9\xfe\x7a\x32\x1a\x1d\xc5\x9b\x2c\x2e\x32\x3a\x5b\x1f\x9f\xce\xc1\x6c\x32\x07\x66\x43\xcf\xd6\xc7\xc7\xe0\x4c\xcf\x54\x56\x2a\x04\xad\x24\xea\xc0\x45\x56\x28\x62\xd1\x8c\xb9\x81\x0b\x81\x5c\x1b\x21\xce\x3e\x7d\x51\x4b\x96\x77\x6f\x09\xe1\x47\xb7\x2f\xd9\xad\x80\x46\xe1\xb7\x47\x92\x42\x1a\x73\xc4\x4e\xe4\xac\x46\xb6\x07\x3a\xc2\x64\xe4\xa1\x33\xb4\xf7\x39\xec\xf6\x99\xb4\x2e\xf4\x9e\xad\xee\x4a\x92\x3f\x6b\x9c\x15\xbc\x8a\x5d\xbf\x24\xe0\x29\x8b\xb4\xaf\x92\x9a\x57\xac\xac\xb6\xf4\x97\x37\xdf\x7d\xfb\x4d\xce\xca\x56\x7d\x5d\x2a\x13\xf4\x7d\x43\x2b\xb2\xfc\x8b\x6d\xea\x57\x94\x36\x9c\x17\xe1\xaa\xa1\x1d\x2b\x30\x41\xc7\xe5\xf5\xa5\x95\xdf\x37\x45\x61\xf0\xb4\x0d\xd4\xfe\x5e\x22\x82\x58\xfe\xb1\xc3\xa0\xa0\x44\x0d\xf4\xfa\xfa\xd2\x73\xb8\x69\xec\xdc\x95\x85\x2f\xe5\x1c\xaf\x6e\x81\x4a\x75\xe5\xe7\x13\x19\xd8\x17\x8d\x8e\x46\x27\x3f\x26\xe5\xf5\xe5\x17\x27\xea\x92\xcb\x84\xae\xad\xfa\x49\x29\x38\xfa\x78\x02\x8f\xff\xe4\xe8\x52\xa8\x1a\x47\x42\xb0\xcc\x9b\x0f\x62\x0a\x49\xb2\x90\x7f\x42\xf7\xeb\x1b\xcc\x0b\xa4\xbe\x72\xf9\x27\xf4\xb0\xd6\x15\x5f\x17\xaf\xf3\x15\x8a\xe9\xee\x53\xf0\x37\xf5\xd3\x01\xac\xda\xb8\xc0\xc5\x8b\xd1\x76\x1b\xb9\xb6\x40\xff\xfc\xf1\xe4\xe4\x12\x7a\x45\xaa\x24\x89\xe4\x3d\x6e\xf6\x26\xeb\xb8\x4b\x1e\xf1\xe6\x61\xb0\x4c\x92\xe9\x26\x7a\x28\x61\xec\x4b\xf1\xdf\x50\xee\x68\x16\x7d\x39\xe6\xe3\x2f\xa3\x2f\x9b\x8e\xe5\xb6\x1e\xd2\xf1\xb1\x20\x3e\x50\x63\x6f\xf8\x50\x9e\xc2\xd7\x11\x98\x36\x23\x9e\xe8\xc2\x38\xf9\xaf\x29\x78\xf8\xe3\x89\xfa\x75\x72\xb9\x86\xb6\xfa\x98\x8f\xa3\x87\x27\xa6\x6d\xea\xce\xf6\xa4\xbc\xbe\xfc\x3a\x0a\x57\xd5\x1f\x03\x67\x5b\xd0\x7c\x79\xdc\x44\x7e\x62\xc1\xcc\xfa\x3a\x0c\xe2\xee\x4b\xe4\x78\x3f\x5a\x9f\xc3\xb6\x9d\xbb\xe4\x36\xe4\x3f\x47\x13\x95\xd8\x92\x75\xb8\x67\x41\x45\x49\x4f\x41\x35\xfe\x30\x27\x43\x67\x7e\x49\x64\x52\x00\x5a\xd5\x98\x35\x98\x94\x56\x66\xdb\x6d\xac\xfe\xc8\x90\xbe\x33\x28\x29\xf2\x92\x3f\x37\x3b\x7f\x12\x81\xf1\x29\x00\x90\xd4\xae\x8e\xb6\x31\x56\x6e\x9d\x14\x87\x46\x0f\x7b\x6c\xc4\x3c\x1f\xa4\x65\xf5\x77\xd0\xbc\xff\x38\xe3\xe3\xe8\xc4\x3b\x87\x08\x52\x5d\xa8\x33\xd6\xb5\xbe\xe6\xd9\x6c\x0e\x4b\xf1\x4f\x95\xb9\xe6\xae\x25\x2a\x56\x89\x3e\xb1\x7f\x95\xc9\x39\xca\xdf\x9e\x97\x08\x11\x00\x8b\x6c\x72\x56\x3c\xac\x0c\xa1\x51\x8c\xc7\xea\x9c\x16\x59\x35\x2b\xe6\x03\x81\x8b\x16\xde\x5e\x61\x38\x01\x53\x12\x2f\x60\x74\x2c\x10\x93\xcc\x20\xad\xb8\x9e\x05\x48\xbb\xd5\x29\x9c\x08\xcc\xe5\x37\x28\x4d\x03\x50\xc7\xe1\xb5\x93\x6c\x72\x46\x1e\x36\x32\x34\x29\x9c\x73\x16\x1b\xb3\x98\xcf\xc8\x1c\x80\x5a\x80\x50\x0e\xe0\xbd\xba\x51\x9b\xf7\x3c\xd4\x5d\x8c\x60\x19\xb8\x12\xeb\x7c\xc1\xe8\xb1\xf5\xed\xbe\xa8\x70\xb1\x3c\x36\x69\x5b\x0f\xc4\x79\x16\xb4\xf8\x6f\x46\xfd\xdf\xf5\x18\x46\xc9\x82\x16\x45\xbe\x29\xd1\x5f\xd1\x6d\x09\x49\x26\xf3\x2d\xc9\x5c\x52\x10\x67\x28\x59\x15\x39\xe7\x88\xc8\x8f\x54\x5c\x99\xf2\xdb\xfc\xe7\xdb\x40\x3e\x21\xb3\x54\xd4\xe1\x03\x61\x9e\xd9\x7c\xbe\x65\x36\x39\x2b\x1f\xa2\xb3\x72\x3c\x06\xf9\xac\x9c\x3b\x7c\x61\x39\x57\x01\x20\x02\x0f\xc2\x9d\x00\xfa\x14\x35\xef\xe3\x29\x80\x8b\xbc\x28\x2e\xf2\xc5\xdb\xb4\x31\xe8\x3c\x3e\x9d\xd7\x75\x9c\x8b\x4b\x50\xc9\x7b\x02\x17\x59\x95\x98\x8a\x70\x95\xb1\xb8\x50\x98\xe5\x2a\xb8\x13\x98\x2c\xe8\x1a\x93\xcb\xc7\xa6\x85\xd8\x0d\x25\x65\x7b\xc4\x2e\x4b\x88\x0d\x3b\x14\x34\x2f\xc5\x21\x12\xd2\xf3\xa2\x23\xea\x3f\x04\x40\x9d\xc6\x38\xbb\xab\xa1\x7c\xfa\xa5\xdb\xdb\x25\x0a\xf9\x8c\x0c\x65\x85\x9e\x3e\x04\x77\x5a\xea\xe6\xa5\xd7\x1c\x62\xed\x4c\x64\xe8\x63\x9a\xc9\xaa\x40\x6e\x86\xee\x8e\xc2\x99\xec\x0a\x5b\x23\x0e\x1e\x37\xbd\x8b\xfe\x5d\x3b\xdd\xbb\xf6\xe6\xa4\x0b\xd8\x6c\x4d\x50\x1e\xb0\xf2\xd3\xdc\x5a\xc7\xa8\x3b\xe9\x48\xf7\x8e\xa7\x08\xca\x6b\x98\x32\xf8\x16\xdd\xa6\x32\x31\x8b\xdd\x62\x43\xfc\x4c\x63\x2c\xe6\x2e\x0f\x1e\x80\xa4\xdc\x68\x10\x98\x40\x02\x52\x2c\x33\xd4\x6d\x62\x02\x20\xae\xeb\x16\x19\x6a\x6e\xb3\x6f\x48\xc2\x63\x1c\x17\x00\x98\x25\xcf\xae\xe6\x40\x71\x4f\x12\x05\x3c\xae\x18\xc3\x68\xf9\x58\x37\x0d\x9d\x88\x2d\xe2\xdd\x22\xc7\x17\xc6\x1b\x54\xdd\x5f\xc7\x16\x4b\x2c\x42\xb9\xf8\x34\x0c\x89\x9d\x12\x97\x53\xda\x8b\xb3\xa4\xb5\x7b\x4e\xf8\xa7\x32\x0b\x18\xa0\xe4\xd1\xab\x57\x8f\xfe\x71\xfe\xf4\xd1\xe3\xbf\x64\xd1\x7f\xa3\x7c\x71\x95\x44\xd0\x94\x7e\xfb\xf4\xc5\x9f\xdf\xfc\x25\x8b\x66\xf3\xa8\x13\x9f\xce\x9f\xa9\x41\x30\xc7\x6f\x51\x30\x99\xb4\x5f\x1b\xbd\xdb\xe4\x64\x79\x6c\x92\xcc\xf7\xd4\x72\x56\x7f\x5f\x23\xad\x4e\xa0\x03\x13\x18\x61\x86\xe6\x03\x97\xb0\xb7\x24\x8d\xa4\x62\x8c\x39\xd3\xd7\xa7\xdd\x38\x1a\xce\xb9\x2b\x70\x4c\x18\x5a\x56\x0b\x14\x87\xae\x05\x4f\x56\x32\x5f\x5f\xdc\x85\xa4\x63\xe5\xdb\x6e\xc9\x12\x27\x73\x1b\x32\xe0\xc1\x40\x0d\x67\x73\x50\xc7\x18\x0c\x8c\xc3\xa0\x69\xc0\x9c\x13\x03\x03\xa7\x4f\x2a\x99\x8d\x6e\x45\x75\x88\x00\x40\xc9\xa3\x4c\x67\x51\x34\x4f\xe9\xd7\x93\xe9\xac\xc1\xb5\xf4\xf8\x14\xcc\xd3\xf6\x8e\x7c\xc8\x23\xd4\x4d\xe5\xdb\x0f\x2f\x41\x67\x97\x1d\xe0\x75\x6f\xea\x55\x06\x3e\x69\x9c\x3b\x42\xbe\xda\x3e\xbb\xe7\x40\x05\xcb\x98\x39\x15\x7b\x18\x1a\x7d\xd1\x8c\x68\x78\x99\x92\x19\x69\xde\xa7\xf1\x69\x3a\x81\x24\x23\xb6\x9d\x8f\x23\x2d\x20\x51\x65\xf3\x78\x67\x16\xb7\x14\x0f\xb0\x42\x94\xdf\xe5\x9b\x94\xd4\xef\x73\x00\xee\x4b\xff\x77\xcc\xaf\xbe\xcb\x37\x32\x43\x51\x88\x3a\x30\xef\x4f\x8c\x40\xe2\x4d\x62\x1f\x5e\x32\x68\xf7\xb8\x22\x65\xbe\x0a\xda\xdf\xed\x21\xbe\x82\xb5\x2e\x11\x3f\x96\x8b\xb1\xfd\x06\xab\x69\x72\x45\x82\x8e\xa9\xf9\xd1\x8d\xd0\x06\x9e\xf9\x9e\x03\x13\x77\xee\x0e\x07\x3d\x98\x64\x62\x4c\x49\x5d\xa5\x96\xb7\x81\x0e\x8d\x95\x3a\xd6\x61\x07\x6e\xf4\xc7\xda\xe1\xd6\xb5\xdb\x7d\x0a\x07\x6c\xff\x21\x69\x9d\x3f\xcc\x70\xb2\x77\xe7\x9b\xad\xb5\xbb\x4d\x82\xbb\x8d\x0f\xdf\x6d\x49\xeb\x1c\x4b\x19\x41\x90\x51\x78\xbf\x0d\x3b\x64\xd3\xbd\x4d\xbd\xf7\x73\xf8\x71\x77\xdd\xe9\xbb\x0a\xd1\x3f\x86\x0b\x28\xba\x5c\xc0\x42\x73\x01\x05\x80\xab\x6c\x72\xb6\x7a\x58\x9c\xad\xc6\x63\xb0\x98\xad\x5c\x2e\x60\x35\xd7\x04\xba\x34\x8c\x0d\x60\x2c\x10\x2f\x00\x5c\x66\x57\x3e\x56\x82\x9b\xec\x2a\x51\xc8\x71\xa0\x64\xed\xb3\x79\x83\xef\xaf\x63\x47\x6a\xa7\x23\x28\xac\x5b\xd4\x29\xa4\xcd\x2d\x9d\xd1\xb9\x74\x26\xeb\xc0\x98\xa2\x5b\xb1\x47\xb7\x92\x1a\x00\xc8\x6a\x00\xf3\xac\x72\x29\x75\x6a\x52\x7f\xb7\xf6\x59\x85\xbd\x68\x40\x28\x07\xb5\x8a\xe0\x7d\x57\x0f\x96\xdd\xe7\xc7\xc6\x7e\x20\x32\x7b\xff\x80\x6c\xb7\x71\x5b\xc2\xe0\x50\x35\x59\x43\xd5\xe8\x17\x6e\x31\xdb\xcc\xf8\x5c\x46\x84\x92\x62\x0f\x66\xa9\x00\xec\x92\x0b\xdb\x6d\xcf\x57\x43\x23\xb4\x99\x52\x54\xcb\xb9\x99\x87\x2f\xe4\x13\xde\x9d\xd4\x34\xd2\x9b\x98\x44\x63\x94\x46\x84\x12\x25\x9c\x2c\x93\x68\xcc\x55\x87\x83\xb5\x92\x26\x50\x00\xc9\x68\x14\xdf\xce\x22\xf1\xb0\x8f\xd9\x38\x7a\x82\x97\x8f\xaf\x72\x72\x89\x22\x93\xb8\x99\x9a\x54\xb7\x14\x5e\x03\x93\x78\xf7\x32\x2b\x4d\x04\xae\x5b\x78\x47\xc9\x73\x82\xb9\x4e\x22\x4d\x49\x1c\x61\x82\x79\xe4\x7a\x1f\x5c\x2b\x4a\x5c\x39\x1b\x08\x3c\x70\x91\xed\xe2\x20\x5a\x02\xf6\xcf\xc4\xf4\xc7\x7e\xd8\x8c\x85\xc3\xc2\x74\x59\x59\xc5\x29\x66\xe1\x08\x13\x38\xcb\x95\xc0\x19\x0c\xf0\x76\x1b\x4b\x8b\xff\x21\x85\xb9\x60\x10\x25\xeb\xa8\x76\xb1\xcc\x24\x53\x1a\x13\x49\xfd\x5a\x5d\x40\x39\x28\x33\x6b\x7a\x22\xf8\xf2\x94\xc1\x86\x9f\x6b\xce\x53\x6f\xb8\x6f\xaa\x22\x36\x57\xf2\xaa\x31\x81\x25\x80\xc8\xf5\xf6\x57\xf5\xad\xbb\xe5\x68\x84\x12\x2a\x90\xf1\x0d\x2e\x8a\x27\xa8\xe4\x8c\xde\x3e\x35\x11\xf8\x9c\xc3\x2b\x93\xa5\xfa\x18\x3b\xc4\x72\x59\xab\x5b\x76\x09\x11\xbc\x10\x4c\xe5\xb2\x43\x90\xcb\x10\xb2\x6d\x38\xb5\x2c\x01\x1e\x8d\x62\x32\xa3\x36\x1c\x43\x0c\xe6\x7d\xc8\x80\x69\x64\x80\x25\x32\x40\xb5\x94\x3a\xc2\xbb\x36\x37\xaa\x16\x1d\x6d\x18\xba\x46\x84\x3f\xa1\xd5\x45\x81\x5e\x21\xb2\x44\x2c\x82\x47\x13\x23\xa9\x2f\x11\xd7\x78\x02\xa3\x32\x26\x49\xb3\x9f\x10\x3b\x75\xfa\x7b\x3a\x35\xb5\x2e\x55\x2d\x8b\x66\x40\x3d\x07\x82\x2d\xc9\x97\x2f\x49\x71\x1b\xdb\xd9\x5d\xd4\xb5\x17\x98\xe7\xef\x28\x7f\xfb\x5d\xbe\x81\xb9\x02\x0b\x0d\x0a\xde\x61\x9a\xe8\x76\xa6\x6f\x7b\x2d\xd3\xd6\xa5\x74\x90\x5c\x5b\x71\x67\xc2\xb5\xc9\x3d\x84\x5a\x41\xff\x16\xdd\x42\x05\xbc\x49\x60\x75\x03\x94\xe0\x52\x43\x02\x26\x97\xca\x44\xc0\x1e\x7e\xca\xb6\x5b\x94\x10\xca\xf1\xea\xd6\xa0\x5a\x35\x2b\xc9\x46\xed\x7f\xdf\x15\xe7\x7f\x8f\xa7\xfd\x50\xaa\x4a\x7f\xfe\xa4\x2e\x24\x3c\x28\xbe\x00\x71\xe3\x5a\xb2\x67\xf9\x2d\xae\xfb\xb8\xc0\xed\xb0\xda\x87\xf0\xea\x9f\x3e\xde\x9d\xc3\x69\x77\x59\x6c\xe6\x7c\xd5\xc8\xd1\xbf\xb4\x0c\x68\xe6\xf9\x7e\xbb\xf1\x79\x95\xb6\xea\xe9\x68\x58\x52\x75\xa9\xd4\x94\x1c\xe4\x80\xbc\x89\x70\x81\x94\xd5\x92\x11\x90\xb1\xc4\xf6\x2c\x31\xc4\x28\xed\x3d\xef\x1d\xe4\xfd\xa7\x3c\xec\x36\xe3\x1d\x96\xae\x38\x9a\x1d\xde\xe8\xe0\x86\x91\x0c\x3f\x2c\x29\x0a\x0e\x20\x3a\xe8\xfc\x7d\x8a\x7b\xdf\xae\x60\x87\x21\x38\x58\xfe\x20\x80\xd5\x04\x6d\x70\x96\x66\x9e\x68\x94\x9c\x2f\xd1\x46\xe0\x3d\xc2\x05\x7d\x2b\xde\x60\xab\x4c\xc6\xfa\x31\xb6\x4a\xb1\x18\x43\x26\x2d\x5b\x7b\x65\x5b\x43\x34\xd0\xb6\x6c\x08\x74\x74\x62\x61\xa1\x07\x93\x1f\xeb\x8f\xaa\x6f\x90\x70\x4d\x62\x5f\x92\xaf\x23\x3f\xe3\xcc\x93\xe4\x4b\x99\x9b\x89\x89\x25\x03\x77\xa9\x08\x71\x54\x89\xcc\x99\xfa\x03\x72\x00\xa9\x92\x82\x8b\x92\x52\x96\x34\x71\x43\xf7\x1d\x74\x57\xaa\x70\x38\x43\xf7\xc9\xe1\xdf\x3c\x95\x1d\xbb\xba\x49\xd0\xae\x6e\xe2\xda\xd5\x4d\xe6\xe9\x5d\x0d\x3b\xca\x59\xe0\x9b\xda\x09\x7a\x7f\xca\x52\x94\xc8\x35\x1e\xbc\x59\x1f\xf1\x4a\xfc\x5a\xf6\x09\x59\x5a\x84\x64\x7a\x3b\xa4\xfa\xeb\x2d\x32\xba\x2e\x7f\x27\x09\x98\x92\xe4\xfc\x12\x71\x2e\xf8\x04\xc1\x3e\x30\x88\x41\xda\xb9\x7f\x64\x4a\x34\x55\x84\xcb\x6f\x8a\x9c\xbc\x15\x2d\x59\xda\xd0\x68\x3a\x64\xd9\xce\x8d\xef\x8d\x27\xd2\x27\x10\xba\x8f\x04\xe3\x40\x6a\x28\x58\xad\xc8\x7f\xbe\x3d\xac\xce\x81\xfd\xc9\xd0\x40\x45\xcf\x57\x96\xdf\xf4\x7d\x41\xf9\xb2\x6f\x57\x4c\x5a\xad\x3d\x59\x2b\x3f\x59\xc4\xf4\x66\xc9\xf7\x0e\x99\xbe\xa3\x53\x79\x96\xd2\xe2\xe5\xf1\xfd\xfa\x67\x87\xf5\xef\x13\x92\x07\xf6\x4d\x0e\xea\x5b\x00\xc4\x3d\x3b\xc6\x87\x77\xfc\x5e\x13\xa7\x87\xf5\x6f\xa0\xf3\xa0\x3e\xf3\x83\xfa\x94\x30\x7d\x50\x7f\xe5\x61\xfd\xa9\x9b\x70\x50\x8f\xd5\x41\x3d\xda\xfb\x73\x58\xa7\xc5\xae\x90\xff\xfd\x8f\xc4\x67\xa5\xb0\x0d\x49\x14\x16\x3f\x88\xf9\x98\xbe\xf7\x61\xe6\x16\x02\xfc\x43\x10\xff\xc1\x82\x78\xa8\x0c\x4c\xe4\x20\x07\x6d\xfe\x27\xe2\xdb\xfd\x93\xfd\x75\x33\xef\x16\x31\xed\x5b\xba\xc0\x36\xbf\xbd\x44\x21\xfe\x1a\x6c\x0a\xcc\xe3\x9c\xb1\xfc\xf6\x30\xa3\x82\x5e\xfd\xc8\xa7\x63\xe1\x03\xfe\x30\xa7\x41\x7a\xf4\xd4\xa5\x47\x4f\xe7\xe9\x6c\x1e\x4c\xc7\xe0\x70\x72\x4a\x1b\x60\x22\x78\xbb\x06\x03\x9e\xfe\xdf\x08\xfc\x71\x13\x59\xb8\xdc\x14\x98\xc7\x51\x12\x01\x98\x67\x74\x46\x1d\x76\x8b\x64\x13\x19\x31\xdb\x72\xce\x77\x11\x98\xe6\x49\x59\x5d\xa8\x99\xc4\xa7\x30\xb7\xd5\x81\xe9\x09\x46\x20\x9d\xe5\xf3\x5a\x05\x0e\x0c\x4c\x45\x6b\x0f\x94\x92\x5d\x32\xaf\x53\x94\x45\x51\x8a\x05\x75\x1e\x37\x06\x9c\x13\x88\x8f\x4f\xa5\xc3\x4d\x50\x01\x6f\xb6\x0d\x8d\x46\xd2\xa0\x81\xd8\x81\x10\x18\x8d\x88\x65\x6d\x8d\xec\xda\xb7\x22\x9a\xc8\x16\x5a\x1f\x5f\x66\xfe\xdc\xd2\xb8\x29\x11\x1b\x07\x4f\xbd\xda\xe3\x8c\x08\x2e\xa1\x1c\x67\xd1\x5d\x34\x26\x3a\x54\x21\x8c\xc0\x38\xaa\x23\x23\x6d\x35\xc4\x3d\x02\xd3\x32\x45\xe3\x28\x89\xc6\x7b\x15\xe5\xf2\xe9\xff\x05\x9e\x3d\x5f\xb7\x11\xb0\x3d\x40\xb5\x2b\x28\xde\xbb\x0c\x45\x71\xec\xbb\x81\x3d\x64\xf8\x6f\x0f\xff\x34\xf4\xd0\xc1\xfc\xd8\x67\x48\x03\x62\x75\x3b\x7e\x7c\x30\xd7\xf2\xc0\xba\xd9\x91\xd1\xc8\x8d\x2b\xda\xc8\x95\xc8\x34\xaa\x88\x9a\xc8\x32\x4a\x59\x4c\x80\xbc\x5b\x25\xe2\x53\x65\x61\x28\xff\x4e\x5b\xd6\x86\x0e\xf9\x1f\xf6\x1b\x04\xb0\x6d\x22\x8e\x41\xfd\x7b\x0b\x1f\xdb\x85\x1a\x2a\x96\x6f\x81\x40\xd0\x1d\x79\x79\x0f\xa8\x09\x5b\xaf\x7c\x52\xcc\x10\xd0\xe3\x77\x5f\x31\x48\xb4\x4a\x93\x01\x88\xb3\xc9\x19\x7e\xc8\xce\xf0\x78\x0c\xc8\x0c\xbb\x7a\x7c\xdc\x38\x4f\x5b\x2f\x2a\x3f\xa2\x57\x57\x7f\xe9\xaa\x4e\x3b\xc3\x1a\x4d\x2a\x17\x6f\x89\xb4\x02\x57\x51\x18\x66\xc4\x1d\x96\x38\x96\x5c\x56\xab\x0b\x99\xd4\x7e\x85\x4c\x2a\xdb\x87\xb4\xc8\x0b\x44\x96\x79\x2b\xc5\xa6\xaa\xd6\x1c\x58\xf8\x68\x3f\x32\x91\xa8\x9f\xf9\xee\x3d\xeb\xe8\xfe\xff\xc8\x08\xc6\x7f\xc1\x8c\x60\x87\xc4\x72\xfb\x20\x82\xf0\xae\x96\x5e\x34\x68\xbb\x95\xc9\x64\x74\xdb\xaf\x40\x70\x21\x2e\x84\xa6\x43\xb3\x2c\x95\x10\x74\x48\x57\x36\x8f\x57\x09\x87\x39\x1f\xae\x69\xc9\x87\x5f\x45\x46\x00\x2f\x00\xe0\x2b\x00\x69\x86\x67\x93\x39\xcc\x33\x3c\x3b\x9d\xc3\x32\xc3\xb3\x07\x8e\x03\x8a\xd6\xe5\x33\x00\x0b\xad\x17\x5e\x23\x76\x89\xe2\x0a\x96\x20\x28\x2b\xa5\xd2\xec\x5c\x5e\xab\x38\x87\x45\x50\x17\xdb\xbe\x51\xcb\x8a\xe9\x00\x39\xbf\xf8\x3d\xbc\x47\xb0\x3e\x07\xd7\x99\x05\x98\x37\xb1\xe1\x7a\x7f\x19\xf3\x11\x14\x0c\x9f\xd8\xd9\x41\x15\x99\xe8\x57\xb0\xeb\x7f\x60\xbf\xdf\x1b\xf6\x13\xfb\xfb\x40\xd0\x0c\x32\x80\x11\x95\x31\x8f\x24\x62\xa3\xaa\x46\xde\x38\xc3\xbe\xbc\x21\x88\x29\x83\x2c\x19\x54\x7f\x34\xca\xdb\x79\x65\x03\x45\x71\xb4\xa0\x64\x85\x2f\x53\x44\xae\x31\xa3\x44\x42\xad\xd6\xa8\x96\x59\x9e\x30\x54\xd2\xe2\x1a\xed\x6f\x32\x28\x5b\xbe\xb9\xa5\xb9\x04\x09\xad\xf8\xa6\xe2\xcf\xd4\x2d\x11\x24\x45\x08\xe1\x61\x90\xa8\x7b\x14\xd3\xc3\x2e\x1d\xa3\xeb\x63\x42\x6f\x7e\x05\xd7\xee\x20\x64\xe7\x46\xc7\x6a\xc8\xad\xe6\x4d\x8b\x65\xa6\x26\xba\x91\x91\x1c\xc2\xd4\xdf\x2f\x87\x05\xe5\x8f\x17\xf4\x26\x66\x07\x9d\xcd\x55\xb5\xce\x49\x27\x8e\xec\x1f\x28\xf1\x0f\x94\xf8\xa9\x50\x62\x37\xf8\x44\xf9\x44\x13\x13\x31\x06\xd2\x62\xb3\x4b\x66\xc4\x18\x00\x88\x13\x03\xad\x07\x22\x9e\x82\x0a\xc2\xec\x0f\xd0\xfe\x03\xb4\x7f\x35\xa0\xdd\x7e\x49\x05\x54\x2b\x30\x3d\x10\xa6\x0d\xfc\xfe\xe2\x30\xfd\x7e\x7c\xc3\xaf\xe4\x95\x3c\x64\xa7\x39\xfd\x83\x68\xf9\x5c\x44\x0b\xa7\x0d\xc9\xd2\x76\xb6\xed\x9c\xcb\xcf\xbf\x82\x33\xf9\x03\xa3\xff\x07\x61\xf4\x0e\xfb\xc3\x7f\x3e\x10\x5b\x57\x7c\xf1\x2b\x00\xd6\xf7\x43\xd5\x15\x5f\xfc\x26\xa4\x3b\x8d\xe1\x43\xfe\x39\x92\x83\x7a\xd1\xc5\x8c\xaf\x88\x16\x48\x6a\x6d\x29\x91\x9d\x97\x88\x5d\xcb\xb0\x0e\x26\xae\xe9\x73\xc2\x11\xbb\xce\x8b\xf4\xe8\x14\xaa\xb4\x31\x8f\x8a\x82\xde\x3c\x5d\x6f\xf8\x6d\xda\x72\xc9\xba\xa0\xb4\x88\x0d\x57\x7e\x7e\xae\xd8\xf8\xf3\xf3\x24\xb7\x2d\x22\x00\x75\x34\xde\xf2\xcf\xed\xce\x8e\x26\x50\x11\x15\x2f\xd9\x1b\xbc\x46\xff\x97\x12\xa4\x9c\x45\x96\x1d\x1f\x16\x3d\x84\x21\x95\xcd\x6f\xae\x9b\x79\xae\x2d\x2a\x36\x21\xd2\x93\x94\xee\x4e\xfa\xef\x60\x80\x0c\xed\xa6\xc5\x13\xac\x17\x3e\x68\x27\xc7\x6e\x6d\x4c\x04\x4c\xe8\xd9\x45\x81\x72\x39\x75\x16\x2b\x37\x39\x1d\x38\x52\xd5\x93\x1f\xb2\x12\x71\xf1\x07\xad\xb8\xab\xe4\x55\x43\xb0\x8a\x04\x34\xbf\xcc\x9f\xbc\x4e\x16\xfc\x9c\xf0\x98\xc0\xd3\x89\x0c\x0a\x02\xd7\x94\x6d\xae\xbe\x53\xc7\x19\x0e\x6f\xa0\xb6\x4a\x2e\xcc\xec\x12\xc4\x9d\xbc\xdf\xfa\xa2\x5b\x8b\x64\x96\x31\x93\x5c\x4a\x54\xc2\x30\xd2\x5b\x0e\x20\xc9\x48\xeb\x93\xdd\x7d\x00\x99\x94\x89\xcb\xaa\xda\xa0\x40\x93\x8b\x0c\xc8\x9d\x41\x09\xff\x59\x7f\xe0\x3f\xc7\x04\x48\x1f\x80\x66\xfb\x5c\x65\xb0\x2d\x15\x5b\xd6\xdd\x50\x50\x43\xed\x6e\xd4\x89\xbd\xeb\x1d\xc7\xfe\x1c\xea\xfb\xef\x2a\x2e\x8f\xf3\x15\x47\x2c\xa8\x2f\x0c\x5e\x6b\xff\xa3\x8a\xe1\xa6\xaa\x18\x33\xa6\x4f\x88\x35\x1b\xa4\xd8\x72\x0e\x4b\x7b\x13\x0e\x19\x80\x91\x70\xb2\x61\x68\x81\x4b\x4c\x89\x0a\xb4\xae\x00\x88\x3a\x00\x34\xd8\xbb\xa9\x83\x96\x0c\xb1\x05\x66\xe2\xb5\x37\xaa\xc4\x4a\x90\x07\x85\xe3\x62\x73\x9a\x65\x59\x39\x2d\xb4\x15\xc9\x6c\x32\x07\xe9\x03\x51\x34\x1a\xc5\x95\x53\x08\x6d\x8d\xd3\x39\x00\x30\xd6\xbe\x6a\xce\x8d\x88\xf3\x44\xe3\x07\x35\xc7\x1c\x56\x00\xde\xa9\xf5\xa4\x18\x9a\xd5\xa4\xb4\x06\x40\x3c\x0b\xe2\x88\x75\x55\x06\x0b\xab\x11\x55\x81\xb0\x0e\x82\x92\x0b\xb4\xa2\x2c\xac\x56\xde\x01\x09\x3b\x41\xe9\xd3\x81\x09\xdb\x05\x26\xfc\x0f\x30\xe9\x01\x93\x6f\xe4\x19\x7f\x28\x9c\xf0\x1b\x84\xc8\x7f\x24\xa0\x60\xb2\x28\xaa\x12\x5f\x63\x7e\x2b\xa1\x45\x03\x4e\x7e\x7f\xc0\x29\xfb\x01\x47\x40\x4b\xe3\x82\x07\x0b\x0b\x47\x82\x8d\x29\x1e\x3e\xd8\x6e\x8b\x8f\xa0\xb3\x45\xef\x36\x68\xc1\xd1\x72\xf8\x60\x48\x99\xd5\xdc\x2e\x1c\x20\x2d\xbe\x7e\x30\x1a\x2d\x14\x04\x56\x49\x79\x85\x57\x82\x89\x09\x42\x61\xe9\x43\x61\x09\x17\x0d\x14\xd2\x06\x0a\x73\x03\x85\x12\x82\x2c\x18\xfe\x42\xa4\x6e\xd5\x38\xbe\x13\x88\x0f\xbf\x00\x3a\x49\xf9\xde\x67\xf5\xf7\x7b\x0d\xfe\x63\xf0\xe5\xeb\x7c\x8d\x5e\xb2\x8f\xf0\xb8\x1a\x98\xf9\xe3\x91\xfd\x4f\x01\x9a\x8f\xf1\xd4\x0a\xa8\xf9\x03\x56\x7e\xef\xb0\xf2\x01\x30\xa2\x7e\x1e\xe7\xcb\xb0\xb7\xca\x27\x02\x13\xd7\xeb\xfb\x37\x12\xae\xf6\x43\xc0\x13\x7b\xe0\xf9\x09\xc9\x3e\x0b\x9e\x02\x32\xe1\xa2\x05\x9e\xd5\x74\xd1\x06\xcf\x6a\x34\x8a\x88\x24\xee\x22\x9b\x6c\x9b\xdf\x6e\xd0\xcb\x95\xaa\x34\x1a\x35\x71\x93\xda\x9f\x4f\xe7\x40\x77\xa8\xa7\xbb\x80\x32\xf5\x6e\x1a\xbb\xb7\x00\x76\xab\x68\x37\x8b\x53\x00\x0e\x25\x06\x8b\x7e\x62\x30\x5f\x2e\x2d\xf8\x2f\x2c\xf8\x1f\x4a\x8c\x69\xf0\x0f\x9b\xda\xfe\xba\x50\xe5\x1f\x5a\x8c\xdf\x9a\x16\xe3\xfe\x28\xc3\x44\xa6\xf8\x20\xeb\xdc\xbd\x78\x04\x7e\x7a\xfb\x5d\xd6\x8f\xa5\x7a\x5e\x67\x98\x1b\x93\xdf\x32\xcb\x67\x93\x39\xac\xb2\x7c\x76\x2a\xde\xd8\x7c\xf6\x40\xe0\x32\xdf\xe4\x97\x83\x81\x4e\x29\xb7\x30\xbd\xd9\xdf\x16\xa3\x8a\x99\xac\xf4\x4c\xf2\xb2\xc4\x97\x24\x5e\xc0\x26\x41\x5d\x07\xef\x30\x8d\x77\xe2\xb2\xef\xc5\x6d\xac\x87\x2b\xb8\xba\x0f\x86\x59\xe2\xd5\xea\x0f\xec\xf2\x07\x76\xf9\x25\xb1\x8b\xab\x18\xf1\xa9\xe5\x55\x41\x73\xde\x4b\x98\xdc\x07\xa7\x3c\x90\xc9\x2c\x34\x99\xf6\xa1\x58\x45\xa6\xe5\xb8\x40\xc3\x07\xd1\x01\xb4\x8f\xd6\x09\x17\x59\xa5\x52\x53\x55\xae\x95\x4f\x1f\x85\x11\xf7\x8a\x99\x12\x71\x63\xe3\x02\x32\x88\xef\x75\xcf\xef\xe1\x2c\xf0\xcb\x73\x56\x7e\xc0\x32\x93\xe7\x44\xc3\x00\xce\xd8\x7d\x89\x53\xda\xaf\x5a\x0b\xb8\x8d\x3c\xf8\x68\xcf\x8e\x01\x90\x3c\xa3\xe6\x60\x7f\xd5\xee\x0f\xfd\x4f\x50\x9e\x9c\x63\x0b\x91\xa4\x81\x48\x5c\x83\xc6\xa2\xf2\x10\xad\x9d\x86\xc7\x90\x13\xc5\xaf\xeb\xe5\xd9\x09\xa8\xfa\xb7\x32\x72\xef\x0f\xee\xa8\xd9\x05\xaf\xf6\xa1\xda\xf0\xc3\xa4\x0b\xf6\x4e\xdc\x9b\x61\xeb\xbf\x13\x30\xf7\x04\xf3\xf9\xfd\xe8\x30\xb2\x53\x26\xdf\x26\xc8\x74\xe2\x1e\x29\xb4\x08\xcf\xa7\xb5\x7b\x4d\x00\x53\x97\x99\x3b\x15\xf4\xa7\x51\x80\xe3\x52\x5a\x30\xc4\x05\x98\x0a\x5e\x32\x9f\x56\x8e\x6c\x23\xcd\xbf\x7e\x30\x1a\xc5\xb6\xf5\x83\x39\x80\xee\x77\x90\xea\x5f\x45\x98\x07\xa4\x3e\x0f\x48\xa1\x43\x93\xf9\xf7\xc2\x78\x38\x58\x36\xb0\xba\x0f\xc2\x0e\x3b\x3c\xfc\x86\xae\xc8\x7d\x5e\xfd\x2b\xbc\x44\xaf\xab\xd5\x0a\xbf\x93\x40\x2d\x7e\x3e\x92\xbf\xfa\x44\x66\x26\x6a\xb4\x20\x17\x04\xd9\x1d\x35\x3d\x0c\x71\x39\xb4\x1f\x96\x82\xd2\x5b\xe5\xd7\xb4\x92\x10\x69\x3b\x8e\xa0\xf5\xe8\x66\xf0\x0e\x2f\x53\x6f\xd7\x04\xf3\x4e\x89\x4e\xfb\x67\x9e\x64\xe7\x44\x2a\xc2\x71\x91\x46\xff\x33\x99\x24\x93\xa8\x3e\xc0\x9a\x61\xbf\x00\x8f\x6d\xb7\x64\x07\xf2\x6d\x49\xde\x7e\xb9\x17\xa2\x8f\xff\x30\x1e\x23\xe5\x7d\x61\xfc\xf7\x0f\xdf\x50\xd0\xb2\x31\xc9\x10\xf4\xcf\x89\x80\x29\x49\x9d\x1d\x26\xc0\x75\x2b\xb5\xc2\x28\x58\x7a\x37\xa2\x6a\x6e\x44\x71\x7f\xa4\xbf\xd8\x67\x63\x14\x42\x79\x0b\x43\xbb\xd0\xe6\xf8\xab\xe6\xf8\x8b\x5a\x7b\x0c\xfd\xd2\x6a\xcf\xbc\x51\x7b\x96\xf7\x93\xb3\x95\xd5\x05\x67\xf9\xe2\xb3\xd2\x23\x7f\xc8\x9a\xff\x90\x35\x7f\x24\x59\xb3\x01\xdf\x0f\x17\x38\x73\x7a\xbc\xcc\xf9\x7f\x8a\x6a\x4e\x60\xd5\xef\x19\xda\x45\x68\x7c\xe8\xd3\xbe\x03\xad\x9a\x57\x3d\xee\x57\xa3\x71\xfa\x4b\xe3\x54\x04\xde\x57\x75\x17\x72\x7d\xf9\x3d\x42\x92\x0f\x47\x1f\x40\xbe\xaa\x1e\x3e\x19\xf9\x6a\xce\xe3\x0f\xe2\xb5\x43\xbc\x2a\xcf\xa1\x7b\x91\xae\x9c\xfe\xfe\x21\xfb\x3f\x82\x70\xfd\xe5\x51\xec\x7b\x93\xad\x07\x1b\xbe\x7f\xaa\xf8\x58\xfd\x26\xed\x07\x7b\x3d\x1c\x78\xfc\xfb\x7d\x23\x3a\x87\x8f\x7d\xbc\x83\x7f\x0d\x78\x87\x35\xc0\x47\xea\x43\xa4\xa5\x07\x3a\x8f\xfe\xf2\xc8\x24\x10\x2f\x70\xaf\x6a\xa6\xef\x48\xbb\xa2\x72\x42\x6f\x62\x70\xc8\x7e\x55\x04\xbf\xfb\xc5\x37\xec\x0f\x9d\xe5\xef\x47\x67\x19\xf6\xf1\x3c\x05\xb3\x89\xaf\xc4\xfb\x48\x80\x2e\xe0\x57\xa6\xe0\x39\x00\xd4\x0f\x73\x0b\xfd\x03\xd2\xff\x80\xf4\x0f\x80\xf4\xde\xf8\x14\xef\x0f\xf4\x15\x5f\xc4\x9e\x87\x70\x8c\x21\xdd\x09\xf2\xda\x0b\x76\x67\xe0\x8a\x4f\x45\xe3\xa8\x65\xbc\x56\x33\x30\x9b\xa6\x0a\x9f\x5e\x23\xc2\xd1\x12\xde\x9d\x37\xaf\x7a\x55\x14\xd0\x68\x83\x9a\xbf\x5f\x6e\xc4\xc4\x4a\x55\xe4\xe9\xb3\x54\x51\xe3\x9c\x9b\xf6\x87\x1e\x56\x19\x5c\x42\x01\xc0\x92\x55\xbe\xe0\x94\xdd\x3e\xa3\x2c\x1c\xad\x2b\x91\x19\x4d\xb6\xdb\xbb\xda\xcf\x98\x25\x73\x1c\x36\x47\x23\x2a\x78\x81\x8d\x1b\x72\xa5\x35\xad\xe8\xbc\x71\xee\xbd\x0b\xc7\x0b\x6e\x9f\x7f\xd3\x02\xd4\xb0\xf4\x22\xf0\xea\x44\x4f\x0d\x50\xf0\x9f\x81\xd7\x4b\x19\xe8\x05\x32\x00\xd9\x60\x41\x49\x49\x0b\x94\xdc\xe4\x8c\xc4\xd1\xcc\x05\x9b\xb9\xb9\x29\x68\x29\xee\x4a\x89\xf8\x50\x34\xfe\x99\x12\x04\x87\x17\x15\x1f\x1a\x56\x4e\x17\x0a\xce\x9b\x50\x2e\x2a\x56\x9b\x24\x92\x51\x9d\x4b\xc4\xbf\x55\xa7\xe9\x5e\x0f\xe5\xcf\x2a\x55\xbe\xea\xab\x20\xf4\x60\xb5\x59\xe6\x1c\x05\xaa\x7f\xa8\xed\x5c\x60\x38\xc8\x41\x0d\xdd\xa2\xc0\xf5\x7d\xff\x01\x43\x89\x16\xe5\xf6\x1b\x3a\x16\xb5\xe0\x9a\xd5\x6e\x40\x10\x77\x23\xe4\xe1\x2a\x19\x03\x67\xf8\xf2\x12\xb1\x58\x3b\x2d\x6b\x67\xf2\x08\x22\x05\x0f\xc6\xc9\xbc\x6f\xa7\xcd\x77\xb9\xd7\x7e\x91\xd7\xa4\x0d\x31\x0d\xc0\xa0\xf6\x44\xb8\xef\xd7\xae\xa6\x82\xcb\x8e\xe7\x76\x20\xb0\x81\xa9\x25\x67\xb3\x6e\x35\xb0\x09\x1c\xc3\x31\x52\x1c\x24\xe9\xd8\x23\xb6\xf7\x3a\xb2\xee\xf4\x8e\x27\x77\x9f\x19\x4c\x13\xb6\x3a\xec\xe8\x2d\x58\x74\xdc\x76\xf4\xc6\xca\xd1\xbb\xe2\x8b\x5d\x53\x0f\x85\x70\xb8\xdf\x0a\x80\x9e\x85\xe5\x94\x76\xb9\xa3\xa3\x1d\xef\x40\x58\xae\xf2\x0b\xc4\x87\xb7\x45\x5c\xa3\x2e\x41\x25\xf0\xd1\x68\x92\x65\x82\xcd\xfd\x38\x56\x66\xae\xcd\x44\x81\xf2\x92\x0f\x4f\x23\x43\x71\x71\xf1\x22\x0b\x08\x68\x62\x39\x6c\xb7\x6c\x16\xc9\x9f\xc7\x48\xc6\x76\x90\x91\x23\xc5\xf3\x92\x65\x78\x34\x8a\xbb\x2c\x74\x3b\x7e\x44\x04\xda\xb1\xfa\x09\x00\x8a\x50\x51\xeb\xf6\xb1\xed\x97\xfe\x5a\x72\x32\x94\xe3\x0e\xe5\x26\x0e\xe5\xc8\x70\x68\x83\xa5\xc3\x21\x65\xc3\x28\x02\xc3\x9b\xbc\x1c\x6e\xf2\xb2\x54\x58\xd9\xed\x63\xa8\x4e\xf6\x4b\x9b\x9b\x0e\xf5\xc5\x06\xe8\x00\x08\xbd\x46\x8c\xe1\xa5\xa0\x7d\x6c\x46\x92\x6e\x4e\xb0\x8f\x0b\x1f\x66\x1c\x97\xfc\xfd\xff\xd9\x7b\xb3\xf6\x36\x8e\x63\x61\xf8\x9e\xbf\x02\x98\x37\x07\x99\x0e\x1b\x20\x40\x52\x1b\xa8\x31\x2d\x6b\xb1\x75\x62\x59\x8a\x44\xdb\x71\x60\x1c\xbe\x43\xa0\x41\x4c\x34\x98\x81\x67\x1a\x94\x68\x02\xcf\x93\xc4\x4b\x9c\x38\x9b\xcd\x24\xce\x62\x29\x89\x97\xc4\x8e\xb3\x58\x49\x9c\x68\x89\xed\x0b\xed\xef\x85\xcf\x6f\x20\x2f\x75\xf3\xfd\x85\xef\xe9\xbd\x67\x03\x40\x91\xb2\x9d\x44\xc9\x63\xb1\xd0\xdd\xd3\x55\xbd\x55\x57\x55\x57\x57\x0b\xb9\x13\xd1\xa7\x61\xc5\x43\xb1\xa9\xa1\xba\x49\x81\x31\xc3\x75\x33\x0b\x88\xba\x3b\x1b\x50\x7b\x1b\x8b\xc4\x14\xdd\xd0\xd3\x9f\x63\x36\x6d\x6b\xcb\xe6\x0f\x45\xde\x56\x4c\x20\x03\xd3\x06\xfd\x7e\x0c\xd5\x30\xf1\xbe\xdf\x37\x6a\x2c\xce\x7e\xee\x80\x68\x72\xdd\xb0\x2c\xe1\x56\x2d\xe3\xc9\xcb\x77\x86\x59\xcc\x72\xa5\x18\x24\xac\x69\x1a\x7e\xb2\x81\x8c\x27\x49\x87\x5d\x22\xf5\x64\x0a\xd1\xa6\xf6\x96\x74\x5c\xde\x71\x5a\x26\x2a\xb5\x6d\xc6\xf4\x94\x62\x23\x17\x1a\x98\x18\x1a\xb2\x7d\x0b\xf3\x80\x57\xed\xeb\xcb\x22\x88\x4b\x53\x38\xf2\xc6\xab\xdc\x07\x89\xb4\x34\x18\xd4\xf9\xcb\xd5\x76\x72\x09\x75\xed\x65\x54\xc4\x0e\x76\x91\xd4\x19\x55\xd2\x98\xab\x48\x9e\x69\xe3\xf4\x9d\x98\xd6\x84\xb4\x27\xa3\xb7\x75\x1c\xcd\xf5\x3d\xdd\xaf\x3f\x16\x52\x87\x34\x60\x81\x60\x7d\xd4\x09\x33\x23\xeb\xb4\x91\xdd\x3c\x64\x63\x3b\x2b\xdf\xf1\x1c\x9c\x88\x66\xc2\x54\x1f\x33\xa9\xe6\x44\x50\x1a\x80\x69\x93\x6b\x8e\x08\x9a\xb3\xdc\x73\x9a\x44\x4c\x17\x2f\xa9\xa7\x05\xbf\x91\x2e\xaf\x23\xea\x96\x11\x63\xf8\x1d\x82\xb5\x01\x0c\x24\x3f\x70\x4a\x4e\xd3\x4a\xc1\x09\x9d\x12\x1d\x07\x0b\xf1\x67\x5a\x88\x54\xc1\xa8\x94\xcf\x67\x07\x3d\xaf\x14\x36\xda\x88\x74\xfe\x71\xaf\x81\x4c\x83\xde\x08\x17\x2f\x68\xc7\xc9\x12\x1d\x68\x00\x88\xa1\x07\xa0\x61\xa4\x46\x81\x89\xe9\x2f\x19\x6d\x0a\xd2\x88\x9e\x40\xa5\x00\x75\xfc\x15\x22\x22\x4c\xc4\xfa\x46\xd7\x83\x5c\xdf\x3f\xdd\xeb\x9a\x46\xe0\xf7\x30\x0a\xaa\x1d\xdb\xf1\x68\x37\x99\x5e\x69\x91\xa5\x1d\x73\x1a\x81\xef\x3a\x4b\xfd\xbe\x57\x62\x29\x44\xe9\x01\x25\xbb\x81\x9d\x15\xb4\x10\xd8\x5e\xe8\x60\xe6\xa1\x90\xdd\xcc\x09\x67\xde\x21\x9c\xa9\xe3\x84\xa8\xc4\x15\x7a\x5d\x53\xf3\xd5\x2b\xdc\xa8\x29\xbc\x12\x47\x74\xaa\x0f\x31\x11\x3f\x41\x75\x2b\xa5\x07\x11\xd5\x7e\xd8\x92\x96\x2a\xb4\x4a\xcb\x7c\xc0\xba\xe1\x77\xef\xdd\x3b\xd5\x29\x8b\x36\xa6\x5c\xaf\x8d\xb3\xe0\x34\xae\xe2\x9f\x46\x5e\x28\x66\xe5\x01\x13\x24\x8b\x30\x5e\x6b\xc0\xb2\x38\xed\x64\x93\xe9\xf0\x59\x27\xc4\x8e\xb7\x4c\xa7\xdf\x82\xbd\x6c\xd2\xe8\x45\x94\xcc\x53\xa8\x6b\xd3\xcd\xaa\x6a\xe4\xfa\x39\x43\x24\x9f\x08\xe8\x83\xc3\xd5\x7c\x59\xa4\x9c\x44\x5d\xd7\x6e\x70\x65\x9f\x91\xc2\x60\xca\xa2\x17\x48\xc2\x21\x56\x32\x4c\xd1\x09\x13\xb1\xac\x62\xd8\x8d\x88\x7c\x1d\x2d\xc4\x69\xa1\x4a\x41\x46\x11\x4e\x9c\x01\x26\x98\x18\x48\xb6\x03\x5e\x33\x11\xbc\xd5\x2f\x8b\x6c\x3d\xbc\x48\x97\xd5\x5b\x28\x90\x84\xbc\xc5\x4a\xf2\x44\x2b\x50\xe5\x02\x56\xb9\x28\xe7\xd1\x72\x3c\xd1\xf2\x88\x22\xe5\xb5\x51\xe0\xe0\x23\x81\xdf\x39\x11\xa0\x15\xc7\xef\xa5\x75\x01\xad\x9b\x66\x4e\xe0\x42\xc1\x1c\x49\xa8\x82\x53\x48\xd6\x28\xc5\x02\x02\x60\x00\x09\x7b\x4b\xd1\x90\x99\x36\x48\x07\x8d\x2c\xe3\xe6\x43\xab\xa6\xe1\x10\x35\xb0\xe4\x34\xe9\xcd\x00\xc9\x89\xf5\x92\xe2\x55\x2d\xfa\xb8\x0b\x3d\x44\x25\x0b\x06\x98\x5a\x19\x22\x9f\x05\xaa\x61\x72\x37\x16\x29\x96\x0f\x11\xb5\x3c\x5a\x01\xfd\x03\x79\x24\xad\x44\x87\x99\x42\x67\x4d\x4e\x27\x92\xe5\xd0\x37\xc6\x1a\xc8\xf4\x60\x85\xa8\xb7\x74\x71\x8d\x5a\x20\x0e\x00\x03\x76\xa4\xaf\xb7\x8a\x9d\xda\x16\x99\x65\xdb\x16\x5d\xc9\xa8\xb5\xa1\xcd\xa8\x45\xc3\x08\x1d\x46\x29\x77\xdb\xca\xe8\xad\x09\xe1\x8d\x3d\x7a\x75\x87\x43\x96\x77\x7c\x15\xf0\x74\x30\x59\x01\x03\xc8\x96\xfc\x56\x26\x01\xd3\xb6\xe9\xf0\x38\xfa\x68\x92\x99\xee\xa9\xce\x71\xa8\x66\x6d\x3a\xac\x87\x3c\x00\x55\x51\xfe\xb9\x45\xe6\x69\xc4\xe7\xfe\x80\x99\xd1\x13\x60\xc2\xe7\x3b\x1d\x97\x90\x83\xd1\x5d\xe2\xdf\x45\x97\x14\x49\x97\xac\x38\xa1\xb3\xe4\xa2\x05\xc6\xb5\xe2\x16\x3e\x81\x26\x2e\xee\x2a\x15\x27\x5e\x39\xff\x02\x40\x6c\xa1\x79\xa1\x29\x54\x89\x32\x51\xab\xcf\xe1\x62\x71\x4e\xac\x26\xaa\x33\x10\xe5\x54\xf0\x0b\xb0\x16\x94\x7a\x1e\x0b\xc4\xe3\x81\x89\xa5\x00\xd9\xa7\x07\x7a\x92\x32\x90\x0f\x00\x0c\xfd\x00\xa3\x66\x06\xd9\x91\x46\x25\xa9\x4f\xa7\x3c\xfa\x11\x61\xba\xf9\x32\x7d\x8e\x4f\x8a\x58\x07\xa8\xff\x93\x5a\xc9\x69\x2f\xf0\x51\x45\x40\x70\x9d\xb5\x80\xc6\xcb\xcd\x57\x78\x3d\x6c\x86\x7b\x40\x5c\xbe\xf0\xc8\x3a\xf3\x0b\x05\xd3\x44\xfa\xb2\x40\x00\x68\xdc\xce\x8f\x70\x3b\xd9\x1f\x08\xb0\xc7\x04\x83\x7e\xdf\xd4\x48\x95\x28\xa0\xf6\xd8\x1f\x74\x4a\x01\x6a\xf6\x1a\x28\xe6\xe1\x21\x5b\xc2\xd5\x1a\x0c\xe4\xb3\xff\x42\x3c\x1f\x6f\xd4\xf5\xd1\xa0\x63\x5f\xab\xc3\xc0\x2a\xd3\x47\xc2\xb9\xb2\x18\xec\xf7\xe6\x82\xc9\x49\xf9\x70\x7f\x2d\xa8\x4f\x70\x31\xb4\x50\x30\x31\x97\x3e\x59\x02\x80\xc1\x64\x65\xbf\x57\x28\xc8\x64\xd5\x05\xea\xd1\x7a\x29\xbb\x0e\x60\xc6\x66\x1e\xd3\xd0\xf2\x6c\xe3\x6f\xdb\xe1\x11\x3b\xc4\x4b\xbe\x8f\x4d\x00\x54\xa3\x9a\x7e\x83\xaa\x59\xa4\x5d\x87\x5d\x44\x35\xae\x87\x56\x17\xec\xe5\xc7\xec\x0e\x32\xb9\xe6\x42\x1a\x57\x8e\x2b\xc1\x9c\x8b\x30\x35\xb8\xd4\xb5\x03\xe4\xe1\xc7\xfc\xa6\x10\x58\x0f\xb6\x1d\xb7\x69\x06\x60\x30\x80\x3a\xf2\xa4\xbd\x3c\x9f\x1f\x2a\xd1\x72\xf9\xad\xda\xe2\x15\x18\xa3\x85\x3f\xff\x0c\x0a\x8a\x21\x72\x51\x83\x05\x87\xf5\x3d\xd2\xaa\x29\x3d\xbd\xd8\xe9\xb9\xd8\xe9\xc6\xe3\xdb\x3f\xc8\x6a\x68\xa2\x86\x4f\x3b\x3e\x54\xdf\x4b\x21\x31\x52\x3d\x51\xa3\x5d\x1b\xa3\x70\x0c\x44\x69\xdf\x33\xc3\x9e\x7c\xd6\xad\x65\xbb\xee\x92\xdd\x38\x5d\x74\x5a\x45\xf5\xda\x5e\xf2\x89\xde\x98\x54\x4a\x67\x97\x7a\xae\x1c\x36\x60\x0b\xb6\x61\x13\x76\x61\x47\x69\xa6\x2b\xca\x8c\x67\xae\xfc\xfb\xbc\xad\x47\x38\xc7\x40\x36\x72\x55\xf5\x50\x50\x28\x64\x49\xeb\x38\xf2\xf0\x63\x50\x52\x3f\x20\x3b\x44\xea\x89\x1c\xfd\x27\x14\xaf\x3b\x56\x83\x92\x00\x21\x13\xf5\x89\xf2\xec\x60\xc7\x76\x9d\x67\x51\x30\x1f\xf9\xc5\xac\x36\x1e\xa8\x32\xf9\x7f\xa0\x11\xbb\xcc\x18\x92\x7a\x4e\xaf\x3c\x17\xec\xc7\x92\x77\x88\x35\xe6\x59\x98\xf0\x0d\x4f\x23\xd3\xd2\x7f\xf4\xfb\x84\xd7\x46\x48\x25\xac\xd1\x60\x4f\x40\x3b\xec\x4d\x47\x4f\x92\x6c\xe5\xcb\xd9\x4f\x63\x7a\xa5\xd3\x68\x15\x7a\x60\xa0\xa8\x5c\xd2\xe6\xcd\x92\xb0\x4e\xb1\x23\x12\x36\x28\xc7\x5b\xf3\x3c\x75\x39\x92\x9a\x3a\x15\x4a\x8b\x8b\x74\x34\x17\x17\xfb\xfd\xd4\xaf\x28\xef\x8e\x8c\xe9\x22\xdf\x62\xa4\xe7\x27\xd2\x2c\xcc\x27\x51\x0b\x05\xc8\x6b\x08\x0b\x17\x61\x1e\xb9\xb6\x1d\x7a\x5f\xc4\xb9\x25\x84\xbc\x9c\x18\x8a\x10\x35\x73\xc5\x1c\xd7\xa5\x22\x25\xc8\x00\xa1\xa6\x72\xa8\x42\x0a\xf5\x19\x7d\xcb\x30\xcf\xa4\xb7\x5e\x37\xfb\x45\x36\x18\xd9\x54\x0b\x43\x3a\x51\x21\xd6\x9a\x75\x58\x7f\x6f\x9b\x6d\x8d\xea\x94\x92\x23\x3a\x8d\x56\x43\xd3\x03\xa9\x9b\xae\x5f\x43\x75\xcb\xab\xa1\xfa\x00\x40\x5f\x9f\x1b\xf9\xbc\xfe\x13\xfa\xb1\x99\x91\x8f\x26\x40\x53\x4d\x14\xbf\xdf\xf7\xf5\xb9\x0b\x0a\x05\xd3\x8f\x4e\x1c\x22\xde\x33\x89\x19\x94\x02\xb4\x82\x82\x90\x41\xd1\x8d\x96\x2d\x40\x7e\x34\xc3\x1d\x2e\xfa\xfd\x60\x00\x7d\x2a\x33\xca\xc3\xb8\x08\x36\x8a\x8c\xd2\x12\x4d\x9f\xf7\x93\xeb\xc9\x11\xeb\x09\x46\x32\xb9\x92\x0d\x94\x97\x70\x1c\x43\x36\x4b\xf0\x49\xe3\x88\xc0\x0a\xa0\xbf\x43\xc6\xb9\xb3\x96\x78\xb4\x02\xb3\x0d\x15\x50\xab\x93\xcf\xd2\x5c\x7b\xd5\xef\x61\xfd\x29\x6f\x68\x93\x1c\x4f\xf9\xa6\x1a\xa9\x5b\xc9\x14\x3f\xc7\xa3\x2e\xc8\xd1\x0f\x18\xfd\x3d\x2b\x21\xd3\xb2\x2f\x0e\xba\x76\x48\x64\x15\x37\x59\xc0\x5e\xe2\xa7\x06\x46\x88\xec\xa0\xd1\x3e\xec\x91\x31\x6f\x1a\x50\x7e\x2b\x77\x42\x00\x1b\x31\xb4\xd1\x05\xa0\x18\x9a\x49\xd6\x8a\x4b\x0f\x73\xfa\xfd\x5a\x1d\x88\xf7\x9c\x89\x86\x51\xac\x88\x27\x42\x05\xc7\x73\x26\x27\x81\xd3\x32\xe5\x5d\xd6\x67\x7a\xb6\x6b\x06\x35\xa7\x0e\x11\x00\x6b\x9e\xe5\x08\xf9\x98\x4f\xac\x07\x8a\x95\xf9\x40\x53\x04\x41\x35\x90\xea\x14\x11\x0b\x1c\xb3\x65\xf9\xa6\xd9\xb4\x0e\x9b\x66\x3b\x72\x9a\xa5\x99\x6b\xb9\x64\xcc\x16\xe2\x9c\x99\xf0\xdf\xc9\x9b\xca\x1e\xee\xb7\x72\x18\xa4\x1f\x6f\x1d\xb4\x3d\xcf\xc7\x94\x97\xe4\xec\x1c\xf5\x3a\xc8\xd9\x61\xce\x96\x27\x66\x06\x61\x6b\x54\x70\xc4\xca\x2e\xee\x27\xed\xe2\xb6\x66\x17\xf7\xc9\x00\x97\xe7\xc2\xfd\xfe\x5c\x38\x39\x09\xec\x5a\xa8\xdb\xc5\x43\x69\x17\x67\x6a\x3a\x5c\x25\x32\x31\x99\x71\xc8\x5a\x32\x31\xa0\xb1\x51\x5c\x6e\x32\x47\xb0\x46\xca\xc8\x93\x14\x1b\x00\xd0\xef\x8b\x97\x7e\xf3\x96\xb5\x62\x3a\x40\xdf\xa7\xe5\xdb\xe2\xce\xfc\x22\xd9\xbe\x9c\x94\x89\x00\x9b\x70\x91\x9e\x5d\xae\x9a\x01\x34\x58\x20\x44\x7e\x32\xae\x15\xea\x46\x0a\xf5\x1c\xb7\x79\x8a\xce\x09\x1a\x94\xa1\xc3\x33\x83\x81\xf4\xbc\x9e\xc8\x72\xa5\x4a\x21\x0e\x0b\x2b\x8c\x85\xd3\xc7\xe5\x14\x61\xf8\x39\x74\xb6\x1b\xa0\x30\x24\x23\x4e\x43\x58\x20\x07\xb7\x51\x90\x5b\x42\x39\xf2\x75\xce\x0f\x22\x03\x35\x81\x94\xc4\x11\x8f\x72\x43\xc5\x73\x91\x09\xd7\x34\xd1\xa5\xca\xd9\x81\x26\x27\xe4\xcb\x51\x79\x22\x5f\xa6\x5a\x46\xa1\xc0\xf6\x95\x81\x89\xb9\x9e\x2a\x7b\x8b\x68\x60\x18\x9a\x9e\x55\x5b\x3b\x8d\x56\xab\x46\xdb\xf6\x9a\x2e\x3a\xde\x45\x9e\xc1\x45\x8d\x44\xaf\x50\xf9\xde\xf7\x48\x99\x42\x21\x5f\xb1\x2c\x4b\x4b\xa1\xa5\xf8\xc9\x4c\xbe\xc2\x1c\x2a\x5a\x7e\xa3\x17\x1e\xf5\xba\x3d\xaa\x4f\x0d\xa0\x8e\xe9\x08\xc9\x4b\x47\xc5\x6b\xa5\x25\x0a\x05\xfd\x17\xcd\x87\x23\xeb\xfe\x32\x5a\x6d\xfa\x67\x32\x1a\xa2\x7b\x57\xf9\x1e\x2f\x1a\x6d\x0f\x4f\xa4\xe5\xe7\x09\x67\xc1\x7e\x97\xb0\x66\x7b\x99\x3d\x12\x04\x60\xbe\x02\xaa\x95\x19\x7a\x14\x7d\x1a\xad\x1e\xf4\x9b\x34\xb8\x85\x13\x92\x9e\x48\xff\x42\xbd\x1d\x5f\x6a\x3b\xcb\x6d\xd7\x59\x6e\x63\xd4\x9c\x47\x92\x6d\x15\x0a\xf4\x99\x7c\x95\xa0\xde\x96\xd7\xbf\x00\xf3\x26\xa2\xa6\x74\xdf\x0b\x4b\x0d\xd7\x0f\x91\x89\x19\x3d\x7a\x7a\xdb\x27\x19\x91\x0f\x61\x4a\x31\xed\x73\x29\x36\x8a\xae\x54\x1d\x9c\xec\x47\xa6\x88\x0b\xfb\xa2\xd4\xec\x9e\xe9\xa1\x60\x95\x2d\x39\xb2\x22\xfe\x4f\x52\x0d\x29\xf2\x95\x2d\x77\x98\xa2\x43\x30\x14\x0d\x19\xb3\xb8\xd4\xf3\x9c\x67\x7a\xe8\x68\x13\x80\x09\xba\x06\x28\x1d\x26\x18\x48\xc2\x58\x49\xe4\xd9\x44\x27\xd6\x77\x9b\xf8\xab\xea\x4c\xef\xac\xa5\x68\x43\x0a\xbd\xd8\xe0\xa2\x5e\x77\xfa\x26\x46\x06\x96\xf2\xfa\x44\x0e\xd9\x8b\x99\x92\x9c\x33\xd4\x14\x14\xc3\x97\x20\x87\x21\xa8\xd5\xe3\xae\x59\x4a\x7e\x61\xb6\xd6\xf9\x5a\xbd\x8a\xb4\xd6\xb2\x8d\x73\xc1\x5e\x3a\xca\xb6\xcd\xd4\x6a\x47\xec\xdf\x62\x6e\xc7\x19\x2b\x5f\x5e\x91\x8d\x78\xde\x28\x56\x8c\x2a\x2b\xce\xf7\xea\x7e\xdf\x28\x1b\x83\x41\x1d\x14\x0a\xcb\x66\xa0\xb1\x25\x8f\x4a\x59\xcb\x66\x00\x1d\x00\x31\x3d\xc3\x55\x99\x29\x6c\xbc\x66\xd7\x29\x2b\xd3\x39\x15\x8c\x3e\x8d\xaf\xf3\x34\x4d\xa2\xa2\x26\xff\x01\x80\x5d\xeb\xb0\xd9\xd6\x91\x64\x6d\x06\xb5\x70\xbb\xa8\x62\x88\xb2\xe7\x5d\xad\x57\x87\x4a\xc5\x38\x7e\xc6\x13\x72\xdc\x21\x14\x36\x02\xa7\x4b\x56\xc3\x78\x55\x01\xa8\x95\x4b\x50\xa0\xa6\x56\x2d\x2a\x55\x6d\x11\xbd\xac\x67\x38\xba\xe4\xd4\xab\xb9\x5b\x6e\x68\xac\x8a\xe1\x18\xf5\x4d\x88\x37\x71\x91\x31\xab\x2d\xe2\xd5\x2a\x1a\x07\x23\xdf\x8c\x76\x00\x25\xab\x69\x1c\x9c\x72\x93\xda\x01\xac\xa2\xae\x18\xde\x4e\x62\xad\xc4\x64\xa2\x5a\x63\xbb\x6b\xa4\x65\xb5\x89\x78\xd7\xa2\xff\x69\xc6\xb2\xb3\x89\x07\xc2\xb6\x64\x2c\x93\x8c\xeb\xd3\x32\x9a\x49\x84\x23\xdc\xf7\xa9\x99\x04\x6a\x26\x30\x65\xf6\x6a\x68\xe6\x8b\xc6\xbf\xab\xd9\xab\xf5\x2f\x61\x49\x6a\x6b\x43\xd1\xfe\x2c\x2c\x49\xcd\xcf\xce\x92\xd4\x8d\x58\x92\xba\x3b\x6a\x49\xea\xdc\xb7\x24\xfd\xbb\x5b\x92\x56\xac\x33\x8e\xd7\xf4\xcf\x14\x0a\xec\x6f\xc9\xb3\x57\x9c\x65\xca\x96\xe2\x09\xa5\x5e\x88\x82\x03\xcb\xc8\xc3\x55\xc3\x80\xab\xd6\x8a\xd4\x58\x8c\x63\xa7\x8e\x1e\xce\x19\xe0\x81\x62\xa5\xdf\xd7\x92\x17\x02\xa7\x89\x3c\x3c\x45\x73\xe0\xb2\x65\x7a\x29\x46\x2b\x27\xd3\x68\xe5\x27\x8c\x49\x8c\x8b\x97\xd6\x98\x00\xbb\x80\xce\x0a\x56\x04\xa5\x16\xc5\x7e\x0f\x68\xcc\xb5\xf8\xe7\xf4\x64\xb4\xed\xbb\xd4\xe1\x47\x54\x16\xfb\xd2\x00\xd0\x33\x43\xcb\x31\x4d\xd7\xea\x98\x66\x6f\x2c\xf3\x8e\xd8\x1f\x3e\x6d\x33\x4f\x2b\x69\xe6\xe9\x6a\x66\x9e\x16\x91\x09\xca\x73\x9d\xfd\xad\xb9\xce\xe4\x24\xe8\xd6\x3a\xba\x99\xa7\x13\x37\xf3\x48\x23\x4f\x7b\x94\x91\xa7\x1b\x37\xf2\x34\xb2\x8d\x3c\x4d\x66\xe4\xf1\xad\x00\xda\x96\x81\xd1\x59\x7c\x0c\xd9\x61\x2f\x20\x63\x10\x5a\x2e\xec\x59\x4d\x33\x00\x30\xcc\x3a\x55\x21\x5d\xab\x9f\xaa\x84\x99\xa7\x2a\x61\xc6\xa9\x4a\x18\x3f\x55\x09\x23\x6b\x37\x4c\xae\xdd\x9e\x3a\x55\x81\x41\x69\xd1\xb5\x43\x7c\x94\x2a\xfb\x56\xbe\xf2\x1f\x66\x51\xea\x8e\x6b\x51\x6a\x3a\xcd\x93\xa8\x81\x9c\x15\x74\x00\xe3\x20\x69\xeb\x91\xf7\x20\xa8\xd1\x45\xc8\xa5\xf4\x06\x15\x57\x4a\xb1\x69\xc8\x74\x03\xf2\x44\xf2\x83\xf0\x2e\x66\x6c\x29\x14\xf2\x5a\xba\x4c\xcc\xf4\xf0\x63\x96\x0f\x03\x32\x67\x32\xed\x4b\x61\x13\x61\x9c\x04\x1a\xba\x46\x8f\xfd\x00\x51\x4b\xc8\x29\xbc\xea\xa2\x14\xab\x95\xb0\x84\x70\x0e\xb9\x8c\xf0\x41\xce\x63\xe8\x17\xd4\x4c\x6c\xe1\x52\xcb\xf7\x58\x15\xf4\x7e\x3e\xf9\xf5\x84\x1d\x38\xb6\x87\x59\x24\x5e\xdf\xc3\x4f\x22\x67\xb9\xcd\xc2\xf1\xd2\xc2\xce\xb3\x2c\x7a\x93\xeb\x78\xe8\x11\x96\x17\xf2\xbc\x23\x76\xc7\x71\x57\x27\xb8\xb7\x50\xb7\x87\x8f\xf8\x1e\xb6\x0c\x69\x49\x09\xa0\x91\x33\xa4\x4b\xb5\x17\xf9\xe5\x44\x7e\xf9\xd0\x98\x52\xbf\xec\x48\x5e\xa8\xba\x81\x19\x95\x98\xa2\x9d\xdd\x05\xa8\x84\xed\x60\x19\x51\x11\x89\x8c\xbb\xb3\xd4\xc3\xc8\x34\x9a\x36\xb6\x8b\x82\xb3\x16\xd9\x01\x00\xf5\xff\xc2\x60\x0d\xa5\x98\xcb\x98\x6b\x14\xf2\x30\xf7\x70\x32\x45\x70\x71\x6d\xcc\x50\x93\x7b\xf0\xe8\xe3\x28\xb2\xd8\x1d\xcf\xe4\xf8\x72\xd3\x58\xa0\x19\x94\x98\x0e\x95\x69\xea\xe2\x46\x41\x9a\x1f\xb5\x13\x0a\xf3\x63\xbf\x9f\x86\xc9\xa7\x56\xd1\xb1\x6d\x93\xba\x89\x75\xb8\x55\x52\x73\x80\x4f\xb3\x4c\x92\x5e\xdd\x4b\x44\x4e\x61\x9a\xe4\x6e\x33\xc9\xb2\xd1\x9b\x28\x72\xe4\xd8\xb5\x5c\x31\xa0\x69\x9d\x5b\x4b\x4b\xe4\x1b\x4e\xb1\x52\xa7\x6e\x86\xe9\x8b\xcb\x95\xe3\x15\xd5\x45\x4d\x1c\x5b\xdf\x00\xaa\x90\x60\x82\x61\xce\x67\x2f\x58\x13\x83\xea\x90\x5c\xcd\xa3\x06\x6a\x16\xaf\x23\x0e\x72\x9b\xc2\xab\x2e\x7d\xf8\xc0\x80\x3a\x02\x99\xb2\x37\x1f\xb0\x66\xf7\x12\xa5\x8a\xff\xdc\x6f\xed\x2b\xf7\xfb\x33\xd3\x91\x0e\x27\xf9\x89\xee\x4e\x58\x08\xd9\xec\x1d\x6a\xa5\x46\x25\xb6\xa5\x1e\xc0\xf3\x0a\x24\x6d\xd5\x2f\x97\x62\x55\x35\xd7\x62\x8f\x71\xad\x56\x31\xad\x84\xd9\x50\x1e\x7f\x0d\x61\x92\x69\xdd\x12\xa0\xae\xcf\xfc\xb7\xa3\xdd\xa6\xcc\xd8\x44\x48\x8e\x7a\x30\x25\xd6\xa6\x74\x92\x13\x7b\x40\x39\x62\x7e\x95\xec\x8c\xde\x5d\x63\x96\x48\x4d\x4c\x28\x9d\x71\x9a\xb8\x1d\xab\x59\xc8\x7f\x30\x5a\x83\x74\xdc\xe3\x37\x5b\xda\xb8\xe3\x9e\xb2\x5b\xc8\x34\x68\x25\xd5\x9c\xb2\x3c\x4f\x4e\xef\x82\x46\xf7\xac\xa1\x7c\xa0\x86\x7f\x59\x29\x97\xff\x6b\x4e\xdb\x26\x3a\xf6\xea\x12\x3a\xa1\x4b\x94\xc9\x2e\xcf\xaf\x02\xbd\xa1\xdb\xea\xbb\x79\x83\x5b\x69\x35\x29\xb6\xdf\x37\xb8\x9d\xb6\x95\x62\xa7\x6d\x65\xd9\x69\x23\x32\x58\x2d\xed\x92\xc6\x76\xed\x44\x1d\xb3\x97\x62\x19\x4e\x9b\xa7\x35\x7f\xb4\x09\x6c\xcc\xba\x68\xd8\x61\xcd\x1c\x16\xfd\x2e\x39\x5e\x35\x7b\x8b\xa8\x13\x55\x0c\xc7\x98\x14\x24\xb6\x6a\xfb\x1b\x5e\xdd\x70\xec\xd1\xfd\x7b\x5b\x98\x23\x55\x0d\xc7\x1a\xd9\x5c\xb7\x85\x54\xaf\x69\x1c\x9c\x77\x6d\x60\x1d\x52\x57\x0c\x6f\x68\xf5\x88\xde\x13\xd2\xff\x34\xeb\xe7\xf2\x5d\xb9\x0a\xde\x6b\x63\xe7\x36\x1c\x03\xc7\xf9\xd2\x67\x47\x30\xc5\x8e\x8d\x1b\x6d\xaa\x50\x67\x7e\xb3\x1c\xf8\xbd\x6e\x91\xc2\xda\x95\x18\xaf\xd1\x0b\x02\xe4\x35\xe2\x37\x63\x94\x4a\x9d\x62\x8c\x4d\xf8\x21\xc2\x15\xb8\x0a\x97\xe1\x12\x5c\x84\x67\xe0\x61\x78\x16\x9e\x82\xc7\xe1\x01\x78\x1a\x2e\xc0\x83\xf0\x18\x3c\x09\x4f\xc0\xaf\xc3\x43\xf0\x31\x78\x14\x3e\x0a\x8f\xc0\x67\xe1\x23\xf0\x21\xf8\x38\x7c\x12\x3e\x03\x9f\x80\x4f\xc1\x87\xe1\x97\xe1\x17\xe0\x57\xe0\x57\xe1\xd7\xe0\x7f\x43\x84\x20\x46\x30\x40\xd0\x43\xd0\x41\xd0\x47\xd0\x46\x30\x44\xb0\x87\x20\x51\x36\x91\xb2\xfe\xb6\x90\x66\x73\x6c\xa1\x7f\x57\xfb\x6f\x1b\xfd\x2b\xf9\x3d\x36\xd1\xbf\x84\xb9\xba\x8b\x3e\x3b\x73\x71\x07\x89\x73\x0e\x3e\x77\x3b\xc8\x32\xd4\xc2\x97\xd6\x8a\x93\xa8\x45\x16\x70\xa1\xc0\x01\xc2\x3e\xe7\x35\xb8\x1a\x3f\x36\x89\xc5\x2d\x92\xe3\x30\x97\x4f\xdc\x3b\x6e\xdb\xa1\xc6\x89\xf9\xed\x63\x88\x81\x34\x90\x98\xc8\x5a\x21\x7d\x04\xe6\xc0\x9c\x6c\x02\x8b\xe3\xe3\xb4\x4c\x4f\x78\xbd\x8f\x62\xec\x1e\xf9\x40\x5e\xde\x24\x0d\xa0\xff\x32\x84\x01\xa8\x3a\x4c\xf5\x19\x30\xbb\x37\x0c\xfa\x7d\x7d\xea\xaf\xe8\x2b\x7c\x05\x7d\x16\xc7\x0a\xab\x28\x62\xdc\x5f\xcd\x20\xe2\x2e\xad\xfb\xcb\xe8\xbe\x79\xff\xf3\x6b\xde\x57\x6e\xd2\x28\xea\xc8\xa4\x1c\x54\xa2\x0e\x29\xca\xad\x19\x45\xa6\x1d\xf6\xa9\x31\x78\x5e\x42\x26\xa8\xa2\x1d\x3a\x3d\x38\x83\xac\x35\x2e\x07\x54\x6b\x75\x18\xa0\x90\x5e\xcb\x54\xe0\x41\xbf\xe7\xe1\x6a\x59\x9a\xe7\x45\x9f\x69\x8e\x4a\x22\x49\xe9\x74\x55\xc3\x80\xae\x1d\xe2\x53\x34\x05\x35\x65\x9a\x6f\x37\x1d\x6f\xb9\x9a\xaf\x40\x27\x3c\x40\xaf\x17\x13\x78\x11\x9d\xed\x3a\x74\x26\x9d\x8a\x54\xb1\x18\xa0\x2e\xb2\xb1\xe3\x2d\x1f\x6c\xdb\x41\xd5\x30\x06\xf0\x30\xb2\xcc\x30\xe5\x0c\xa2\x97\x79\x06\xe1\xc6\x1c\x52\xc9\x0c\x8c\x3b\xa9\xe6\x2b\x00\xb6\x62\x69\xbe\x00\x8f\x31\xf1\x08\xc0\x76\xdc\x05\xf7\x51\xd6\x9c\x1c\xef\xc0\x52\xa9\x64\x00\xd8\x8c\x97\x7a\xcc\xcf\xf1\xbe\xcc\xb5\xfc\x1e\xbd\x9d\xda\x8d\x97\x59\x58\xed\x22\x16\x90\x89\xb4\xdf\x00\xb0\x93\x42\xf5\x4a\x16\x85\x8f\x68\xde\x66\x70\x35\xab\x14\xc1\x71\xa0\x8d\xec\xa6\x6c\xd0\x72\x0a\x92\xa5\x54\xb7\xe1\xc5\x61\xde\xc7\x53\xcc\xa3\x47\xc8\x93\x06\x80\x67\x86\x16\x57\xe5\x0e\x0f\x2d\x17\x39\xf7\xa7\x12\xa8\x01\xe0\xd9\xa1\x9f\x28\xf7\xe7\x53\x43\xcb\xb1\x7e\x2e\x76\x50\x18\xda\xcb\x44\xef\x3c\x3e\x9c\x92\x88\xc6\x78\x20\xd3\xc5\x59\x2d\xda\x01\x80\xa7\xe3\x55\x2e\xf5\x30\xa6\xea\xd7\x02\xc9\x71\xb4\x1c\x29\x81\x27\x27\xdd\xc1\x78\x59\x1c\x1b\x46\xed\xa3\xe4\x08\x1f\x1b\xee\xee\x0d\x8d\x6e\x6f\xc9\x75\x1a\x07\x4e\x1c\x2d\x89\x05\x69\x00\x78\x32\xf1\x55\x33\xf0\xbb\x44\x9f\x1a\xfa\xd9\x89\xe4\x71\x9d\x2c\xb6\xc6\x97\xbe\xc6\x24\x22\x1c\x66\x20\xbd\xcb\x25\x70\x4c\x0e\xce\xd7\x53\x8e\x11\x79\x51\x1d\x43\x8c\xe1\x44\xea\x17\xac\x67\x60\x00\x78\x88\x74\xa9\x5d\xc2\x76\x78\x1a\x98\x01\x5a\x46\x1e\x13\xe3\x4f\xf6\x3c\xec\x74\x50\xa9\x63\x07\xa7\xe5\xa0\xe6\x90\xa9\xc7\x7e\xe6\x3e\x24\xe2\xea\x65\xf2\xe3\x33\x81\xdd\x8d\xcc\x08\x2a\x42\xcd\x81\xf0\x8c\x83\x1b\x6d\x7e\x83\xd8\x62\x37\x9d\xc1\x5a\xc3\x0e\x51\xae\x5c\x15\xd5\x59\x15\xc8\xef\x55\xab\x76\x45\x99\x20\x3d\x78\xe0\x56\x4b\x7e\x71\xdf\x09\x1f\xeb\x75\xba\x76\xf3\xcb\x68\x95\x46\xdf\x33\x89\x1c\x66\x3a\x45\x6b\x76\x2f\xe1\x8b\xdc\x1a\xd6\x0a\xfc\x0e\xa9\x80\x7c\x68\x3a\x00\x9a\xa1\xd5\x13\xa6\xea\x2c\x64\xf3\xbd\x6a\x3c\x3f\x85\x53\x4f\xf6\x80\x8c\xa6\x36\x6f\xb2\x6b\x8e\x86\x01\xaa\x9e\xd5\x83\xb1\xcf\xc5\x69\x4f\x2c\x59\xf7\xaf\x0d\x26\xc9\xe8\xf8\xe2\x08\x9a\x99\x2c\xf8\x85\x60\xf5\x05\x67\x21\xf1\xfa\x75\xb7\xdb\x6a\x7e\x3c\xe4\x62\x63\xdb\x1e\x66\x51\x0b\xa8\x92\x0e\xa0\x99\x2c\xe4\xdb\x29\x6c\x63\x64\xae\xa5\x6e\x71\x63\x75\x6e\x7c\x17\xf4\x06\x9a\x6f\xb2\xe9\xb2\x11\x6c\x39\x5e\xf3\x49\x07\xb7\x8f\xb7\x5a\xe2\xc2\x73\x0a\xcd\x21\x0c\x60\xbe\x0c\x80\x30\xf6\xc7\xfb\x66\x3e\x9e\x2c\x6c\xc8\xb2\x5f\x4d\x57\xfa\x73\x27\x4b\x85\x8d\xc0\x77\xdd\x05\x9f\x16\x02\xf1\xd6\xc5\x8e\x14\x68\x19\x71\xe3\xbf\x32\x03\xd9\x92\x74\x3a\x88\xee\xdf\x15\x34\x03\x26\xe8\xe2\xa8\xcc\x54\xc7\xec\xcd\x54\x81\x41\xd4\x32\x5b\x25\x7f\x0d\xe4\x35\x8d\x6a\xe4\x30\x86\x9a\xf9\xd9\x52\x02\x03\x40\xc4\xd0\x10\xdb\x01\x15\x56\x4d\x00\x1f\xbb\x4b\x56\x71\x8f\x18\x04\xef\xae\x69\x88\x59\xb3\xa6\xab\x01\xf5\x3f\xf7\x70\x64\xca\xc9\x33\x9a\x80\x37\xff\x2e\x5b\x7f\xf4\xf3\xd5\x7a\xac\xbb\x61\xf0\x2b\xe8\x44\x1c\x3e\x11\xf8\x67\x57\xf9\xba\x66\x3d\xc0\x9d\x8b\x4d\xaa\xa0\xd1\xf0\x9f\x98\xde\x4e\x02\x29\x2b\x53\xca\xa4\x4c\x46\xa6\xf8\xa7\xc5\xc4\xdc\x25\x7a\x7a\x57\x6a\x4f\x0b\x3c\xa2\x9f\xf7\x54\x23\x61\x2d\xac\x3d\xc3\xf0\x55\x28\xbe\x96\xe3\x39\x61\xdb\xdc\x23\x26\x6a\x79\x8c\xa1\x82\xb5\xda\x34\x84\x7b\x60\xa5\x5c\xaf\xa7\x0c\xdb\xa3\x5b\x1d\x36\xa9\xfd\x2b\x7f\x88\x1d\x9f\xb8\x34\x33\x8d\x33\xc6\xfa\x9f\x76\xfb\x2c\x0c\xc4\xc4\xf5\x44\xb7\x3b\xd6\x22\x32\xbd\xb4\x11\x14\x4a\x8b\x03\x17\x03\xfb\x0c\xe3\x08\x27\x79\x9a\x97\xd4\x43\xa2\x82\x41\x95\xf2\xfc\x06\x01\xf9\x68\x02\x82\x25\x32\x4a\x22\x40\x4e\x88\x74\x51\xdb\xd4\xd8\x17\xbb\x7e\x26\x87\x90\x37\xb7\x52\x86\xa8\x84\xcb\x16\x2a\xb1\xc0\xc8\xe5\xd4\xf9\x97\xa4\x4f\x47\x2e\xb9\x60\xb4\x27\x2b\x33\x30\xc5\x82\x48\x34\x5b\xaf\x81\xdc\x42\x41\x40\xa6\x36\xc7\x2a\x92\xa7\xee\x1e\x6f\x92\x95\x61\xa5\x0c\x2b\x33\xb0\xb2\x3b\x75\x9e\x85\xe6\x11\xab\x67\x9a\x8f\x58\xcb\xc8\x34\x9f\xfd\x0f\xb8\x45\xd7\x46\xea\x1a\xdd\x0a\xda\xf2\x3d\xba\x16\xca\xf6\xb1\xea\x22\x7e\x93\x8e\xaa\x02\xfc\x8a\xc1\x93\x4e\x13\xb7\x0d\xf8\x08\xec\xb2\x38\xa0\x04\x3f\x34\xb8\x9f\xc5\x29\xba\xdb\x1a\xf0\xa1\x68\xae\x54\x25\x1e\x8f\xa6\xf3\x39\x25\x84\x6a\xf8\x64\x34\xdb\xf3\x99\xce\x10\xca\x02\xcf\x44\x0b\x44\x65\x72\xf8\x44\x34\x97\x5e\x4c\x3a\xee\x09\xcf\x9f\xa7\xa2\xb9\x49\x35\xd5\x80\x0f\x47\x8b\x24\xb5\x9a\x2f\x47\x0b\x48\x11\xe4\xb8\xf7\x88\xbf\x42\x0a\x7c\x21\x5a\x80\xc6\x02\x4b\xde\x2a\xf9\x4a\xb4\x54\xd6\xe5\x93\xaf\x46\x8b\xf9\x89\x02\x5f\x8b\x16\xa0\xea\xa8\x96\xfd\xdf\xb1\xe6\x24\x2e\xd2\x20\x34\xa4\x3f\xb5\x72\x38\x56\x4e\x53\x3d\xb5\x52\x41\xac\x54\xfc\x9e\x80\x87\x52\xe9\x39\xe9\xbb\xc8\x80\x8e\xcc\x0c\x94\x7c\x66\x9d\x41\x91\xb6\x2b\xed\x32\x5e\x95\x18\xa9\xe3\xd1\x72\x76\x3a\xca\x85\xd5\xae\xe3\x2d\x2f\xd8\xe1\x69\x03\x86\xb1\x22\x8b\xba\xbc\x82\x9a\xac\x50\x2f\xbd\x10\x1f\x32\x56\xc6\x8d\x95\x61\x67\x7e\x07\xc2\x55\xaf\xc1\x05\x42\x5a\xac\xa1\x1a\xfa\x1f\xe5\xf1\xc7\xad\xce\x63\xb8\xfc\x39\x9e\x93\xf4\x67\x01\x6b\x1d\x64\x12\xfe\xa6\x9f\x9c\xf2\xa2\x2c\x02\x4b\x7a\x74\x7b\xb6\x4d\xca\x19\x75\x80\x09\xfc\x16\xf7\xf5\xad\xf2\x90\x75\xcc\x5d\x4f\x2e\x67\x9e\x2c\x7f\x73\x43\xa3\x2c\x4d\x7e\x40\x76\x7c\xcd\xd3\xd8\x0f\x28\xb4\x0d\x51\x92\xff\x54\x5e\x62\x67\x1c\xd7\xe5\x11\x07\xc7\x6c\x62\xe4\x8b\xd1\x2d\x15\x41\xa9\xd8\xcb\xd6\xe1\x51\x4f\x88\x83\x99\x05\xc4\x4c\x17\x25\x02\xb4\xec\x84\x18\x05\x07\x4e\x1c\xe5\xf2\xab\x96\xc2\x4c\x6f\xb2\x39\x8b\x5a\xd6\xa8\x0b\x9e\xf1\x10\x98\x51\x55\x0c\x22\x30\x21\xfd\x83\x12\x65\xe5\x6d\xd3\x8c\xf1\x94\x5e\x44\x7a\x6c\xeb\x35\x59\xaa\x8a\x21\x67\x9e\x47\xe5\x13\x6c\x11\x43\x9e\x38\x75\x96\x7e\x3c\x58\xdd\x20\x1d\x8c\xd5\x2f\x38\xe1\x0a\xb8\x8d\x5b\xd0\xb1\xae\x89\x5c\x89\x56\x4e\x71\xd8\x34\xfc\x2e\xf2\x1c\x6f\x99\x9a\x58\x0c\xa2\x05\x1b\xa7\xb9\x8f\x01\x61\x0f\xf4\xf9\xcb\x7e\x7f\x66\x6f\x3e\x72\xc5\x78\xb6\xac\xff\xee\xf7\x71\xc2\x4b\x32\x5b\xba\x8c\xb5\xf1\x20\xd9\x62\x47\x35\x92\x16\x8a\xb6\xf2\x20\xbb\x33\x3c\xb4\x99\x59\xad\x64\xc6\xdf\xa4\xcc\x9a\x34\xfe\x0f\xe2\xe4\x66\x7a\x67\xd2\x19\x0a\x03\x2b\xea\xbd\x38\x91\xe2\xb4\x69\xe2\xa8\xdf\x66\x90\x9c\xc7\xc2\x93\x33\xcd\xcc\x40\xfd\x08\xd3\x7c\x12\xab\x81\xb6\xaa\x64\x53\xd2\x68\x45\xc2\x31\x99\x3f\x0a\xd1\x74\x42\x16\xfa\x42\xe0\xcd\xec\x15\xa4\x75\xc8\xa2\xf0\xe6\x48\x1b\xbb\x68\x48\x8b\x0c\xab\x12\x94\x2e\xab\xbe\xc7\x02\xf3\x9b\x28\xde\x19\x38\x82\x90\x99\x47\x33\x7c\x63\x65\x24\x56\xc7\x5b\xee\xf7\xcd\x98\x57\x29\x98\xd7\x66\x24\xdb\x4e\x4d\xe9\xab\x49\x7e\xf1\xfc\x2e\x0a\x5a\x7e\xd0\xe1\x25\x10\x2f\x22\x92\x8f\x38\x2e\x46\x01\xf3\xc7\x14\x64\x31\xce\x9d\x39\x87\xf3\x3c\x22\x99\xe3\x2d\x20\x1a\xb7\xac\x50\xa0\x1b\x62\xc3\x75\x90\x87\x9f\x12\x91\x05\xb4\x19\x9a\x92\xa4\x4a\x1f\xb3\x71\xbb\x64\x2f\x85\x66\x66\x99\xa2\x84\xc0\xfe\x69\x10\x71\xf4\xcb\xb4\x5b\xa5\xb9\xc2\xc6\xc7\x02\x48\x23\x59\x44\x2e\xce\x34\xaf\x45\xa2\x02\xc4\x6e\xf5\xb3\xd5\xc4\x15\x82\xed\xfb\x22\x27\x57\x10\x53\xfc\x8e\x76\x3a\xa8\xe9\xd8\x18\x45\x3c\x60\x27\x68\x48\x3d\xea\x8c\xdc\xc0\x81\xfb\x65\xb4\xda\xef\xa3\x52\x07\x61\xfb\xcb\x68\x75\xdc\x2f\x87\xb9\xe1\x66\x58\xb0\x11\x51\x02\xd5\xed\x77\x25\x43\x96\xf8\xec\x32\x11\xc3\x40\x9a\x3d\x33\x9d\xd7\x5d\x79\x23\x8f\xf1\xd0\x70\xc6\xca\x0f\x9b\xbf\xac\x27\x5d\xc4\x4e\x75\xed\x06\x7d\x3c\x63\x7c\x9f\x6f\x7e\x92\x9f\x8f\xf6\x6b\xbf\x9f\xaf\xe4\xc7\xe8\x6c\x3e\x61\xe3\x74\x69\x2b\x97\x8b\x31\x19\x43\x2c\x22\x37\x14\x0a\xda\x90\x8b\x6f\xf4\x70\xf5\xc3\x83\xaa\x3f\x50\x99\xc7\xc5\x4a\x95\x06\xdb\xa9\xe8\xc1\xd5\x8b\x95\xf4\xf0\xea\x11\x3c\xba\x50\x54\x8b\xcf\x7d\x2d\x20\x3f\x0b\xa9\xea\xa4\x05\x12\x7c\x68\xf5\x68\x33\xcd\xd3\x2e\x45\x3a\x88\x2e\x19\x2d\xd8\x04\x7d\x84\x61\x8d\x45\x6d\x1d\xc3\x70\xcf\x8d\x3e\x44\xf8\x71\x5a\x26\x0d\xdd\x61\xb3\xcf\x43\xcb\x89\x46\xc2\x38\xe0\xba\xa6\x51\xa3\x37\x20\x18\x3d\xec\xfe\x43\xdd\x00\x25\x07\xa3\x8e\x69\xd3\x2a\x42\xf6\x75\xcf\x0a\x4b\x3e\x35\xbb\x2f\xf8\xdd\xa2\xa3\x60\xe8\x5a\xbd\x49\x91\xc7\xee\x82\x4c\xb8\x0f\x38\x91\x84\x49\x47\xf6\x6a\x77\x5e\x83\x2d\xb7\x18\x2d\x58\xed\xed\xd7\xb2\x69\x6c\x55\x55\xb8\x47\x26\x70\x7c\x0e\x73\x96\x91\x11\xb6\x25\x75\x27\x60\x73\x93\x86\xfd\x26\x1b\x1a\xe7\x61\xe9\x81\x5d\x12\x73\x3b\x1d\xfd\x43\x6e\x2f\xd8\x12\xf6\x26\x4a\xe2\x27\x95\x48\xf4\xe4\xc7\x48\xec\xc3\x5b\xbd\x43\x4d\xfc\xd4\xdb\x26\xe9\x4e\xd1\x67\xc6\xba\x1b\x00\x8d\x10\xe1\xa3\xe2\xc4\x16\xe6\xcb\x5a\xdd\x8a\xb8\x9d\xaa\xbd\xa2\xdf\xa0\xd0\x32\x32\x7a\x2c\x22\x4b\x49\xf7\x10\x5d\x90\x6a\x51\x99\x22\x5d\x7e\xc8\x78\xdf\x69\x3a\xf5\x7d\xa7\xe9\x7a\xa1\xa0\xff\x12\xef\xe5\x12\x2e\xc2\x90\x48\x5b\x30\xea\xf7\x6b\x75\xc8\xad\xfe\x11\xd3\x08\x0c\x74\xca\xf4\xf3\xb7\x34\x0a\x95\x87\x5d\x82\xc6\x99\x54\x1a\x67\x22\x34\xce\xc4\x68\xf4\xb8\xf9\x45\x21\x8d\x91\x9a\x6e\xa6\xa1\x7e\xa0\x92\xea\x88\x65\x25\x7b\xb5\x0c\xd1\x73\xe9\x63\x45\x64\x57\xb7\x9b\x4d\x51\x80\xc6\xc9\xd6\x7e\x9b\x46\xad\xce\x27\x08\xab\x2f\x82\xf6\x80\xd7\xe4\xb6\x7a\xa1\x09\xf9\xec\x3b\x4e\x78\x68\x89\x70\xdf\x59\xdf\x45\x64\xcc\xd8\x09\xd8\x16\x1a\xa5\xe9\xe6\x42\x20\x16\xef\xc0\xcc\xdf\x6d\x1b\x45\x9d\xb4\xa2\x78\xfb\x44\x66\xbc\x81\x91\x8f\x48\xe3\xaa\x28\x9f\x38\xa8\x57\x37\x50\x92\x6b\x47\xba\x6a\x21\x98\xa9\x92\xc4\xd5\xcd\xac\xcb\x9e\x13\xa9\x8e\xd1\x14\x67\xd2\xaa\x3b\x9f\x91\x1e\x63\x69\x5c\x53\x48\x96\x1b\xa1\x69\x46\x1a\x90\x31\x19\x32\xe4\xa6\x7c\x3c\x42\xb3\xce\x9e\xc5\xad\x26\xa2\x95\x52\xd7\xbb\x09\x29\x59\x51\xdd\x06\x70\x3d\x34\x42\x98\x70\x9a\x0b\xa4\xcf\x5c\x30\xf2\x5c\x29\x88\x9e\x2b\x31\x09\x16\xc7\x86\x36\xf2\x96\x87\x50\xca\xf4\x0b\x53\x60\x3e\x60\x1d\xc8\x38\x15\x51\x8b\xf5\xdc\x89\x34\x6a\x03\x79\x1c\x96\xa0\x7b\xdc\x53\xb0\x01\x8e\x7a\x50\xa4\x5a\x2c\x62\xc3\x13\x99\xca\x69\x43\x93\x39\x2c\x59\x3a\xb6\x9c\xdb\x74\xa0\x12\x33\xfa\x54\xba\xe2\x1b\xb9\xb9\x9c\xf0\x8b\x60\x5a\x41\xaa\x0d\x99\x9f\xa2\x11\x81\x70\xd8\xc9\x23\x1a\xc3\xf7\x71\x54\x77\xa3\x58\x77\xcb\x86\x45\x14\xea\xec\x7b\xbc\xfa\x94\x48\x6f\x27\x14\x0a\x50\x6a\x1b\xb0\xde\x06\x94\x6c\x02\x1a\xd9\x02\x0c\x86\x9c\x95\x26\xda\x93\x31\x54\x28\x76\x8d\x95\x5a\x8b\x83\x94\x29\xad\x53\x3b\x20\x8a\x0c\xa6\xcf\x04\x31\xff\x72\x79\x59\x92\x4c\x2d\x0f\x1a\xb8\x8d\x3c\x83\x2b\x95\xe9\x03\x2d\x15\x4b\xe8\xf1\x85\xc9\x94\x17\x7a\xe8\x3c\xa4\xdb\x9c\xbb\xe9\x29\x67\x68\x4f\xb1\x38\xf6\x29\x4d\x4e\x62\x8a\x2c\x00\x4d\xa7\xcc\xd6\x5c\x73\x33\x91\xab\xc6\xfd\xfe\x6c\x59\xff\x3d\x1f\xd3\x90\x1f\xef\x1e\x62\x2a\x2a\x8b\x9e\x98\x59\xee\xb0\xc7\xac\x3d\xd5\x7d\xc3\x4a\x2d\xd8\x4b\xa4\xcc\xf4\x9e\xa1\x55\x9d\x3a\x48\x0a\xc5\xec\x20\x71\x92\x86\xd9\x40\xe2\x7e\x4d\x60\x2d\x79\x3b\x1d\xa6\x5c\xf8\x9d\x60\x33\x2f\xd6\x23\x95\x6a\xb1\x02\x03\xa6\x62\xda\xcd\x15\xc2\x10\x18\x5f\xb3\x97\xc4\x6b\x9f\x99\xca\x66\x2c\x39\x1a\xdd\x71\x22\xc3\x1c\xa4\xbc\xad\x02\xf9\x3e\xe7\x10\x6f\xab\x80\xcf\x98\x8c\x72\xf1\x5b\xed\xb1\x31\xdb\x4a\x3f\x6a\x72\x6a\x76\xc3\x46\x98\xd1\xf8\x75\xfe\x21\x1d\x83\xc4\xd8\xa4\x5b\x96\x60\xbe\x92\xd2\x16\x6a\xc9\x49\x6b\x4b\xcd\x58\x38\xfc\xd5\x85\x03\x27\x0f\x1f\x30\xa0\x71\xf4\xb1\x13\x8f\x2f\x18\xf5\x92\xe3\x35\xdc\x5e\x13\x85\xea\x0a\xbd\xe7\x37\x11\xf5\x26\x9f\x1f\x86\x3b\xee\xd3\xb6\x85\x6e\x61\x6f\xf6\x64\xb7\x2a\x65\x86\x6e\xa3\x07\xd3\x86\x7b\xc1\x5e\xca\x14\x87\xb3\x6c\x92\xe9\xf3\xe6\xd4\xc1\x6d\x55\x94\xa5\x4f\xa4\x6c\xdb\xa9\x1a\x81\x38\x96\x89\xa7\x97\xa2\x15\x6f\x57\xef\xe0\xf7\x40\x86\xd0\x7d\x4a\x86\x77\x1c\x41\xf8\x29\x29\xad\x9b\xe9\x19\xe3\x91\x3e\x9e\x3a\x91\xa0\x3b\x6e\x5e\x1d\xb2\x39\x68\xd6\xda\x7d\xbb\x23\xd6\xda\x4a\x79\x57\x5c\xc9\xc2\x69\xb6\x82\xd8\x19\xa4\x7a\x7e\x47\xce\x0c\xf1\x02\xcf\x90\xe3\x49\x10\xb1\x3b\x8e\x3a\x0d\x84\x58\x52\x26\x8f\x0e\xb2\xa2\xae\x62\x14\x62\xc3\xb2\xd2\x9f\xca\x0b\x50\xe8\xbb\x2b\xe8\x24\xad\x3d\x60\x2b\x33\xfd\xed\x70\xed\xd7\xb8\x71\x64\xa9\x2f\x40\x56\x28\xd9\x3c\xea\xf7\x51\xd2\xbd\x91\x79\x07\x50\xff\xc6\x7e\x3f\x1f\x39\x8a\x62\x12\xcd\xfc\x78\x86\x19\x5d\x94\x10\xaa\x31\x94\x27\x36\x49\x2f\x0c\xcd\xcc\x0e\x55\x64\x5b\x71\x6f\x63\xfc\x38\xb9\x9a\x24\xe7\xbb\x62\x61\x45\xc6\x56\x25\x5b\x08\x22\xcb\xb2\xf0\x3c\xaa\x9a\xf1\x73\x37\xde\xd8\x94\x65\x1c\xa3\x36\xfb\xa5\xc0\xac\xfe\x38\x2e\x65\x63\xdd\xd2\x96\x15\xef\x15\x6d\x29\x68\x71\x7a\xac\xe2\xe4\xdd\x09\x79\x21\x6c\x48\x25\xc5\xa2\x2d\xee\x59\x2c\xc9\xd3\xbf\x48\x70\xe3\x54\xe2\x0f\xe9\x17\x37\xb6\x46\xbd\xb8\xf3\xb1\x3d\xf2\x45\x2d\xa9\xf4\x47\xae\x95\x68\x81\x39\x7a\x21\x3e\xd5\xf6\xb9\x2b\xa7\xf4\x39\x4b\x9d\x76\x71\x2f\x7f\xae\x43\xf1\x77\xa7\xe3\x46\x93\x58\xd0\xb9\x42\x21\x9f\xd7\xf4\x8c\xd8\x4f\x8e\x38\xb5\xaa\xc8\xdd\x95\x38\xdd\x8f\xf9\xfc\xd3\xac\xb5\xb2\x15\xa2\x75\x4c\x85\x82\xa9\x13\x98\x38\xfc\x8e\x2b\x08\xc2\xc2\x48\x76\x83\x3a\x28\x14\x9a\x28\x25\xc8\x08\x49\x4c\x8d\x32\x92\xe2\x8a\x58\x73\xb7\x1b\x57\xe4\x21\x6b\x19\x99\xcf\xea\x68\x62\xfe\x8c\xdb\x0f\x71\xfb\x78\x02\x85\x74\x8a\xac\xb5\xb6\x5b\xf9\x93\x89\xca\xe3\x9e\x95\xb5\xf6\x76\x71\x3c\x93\xc0\x91\x74\xcf\xac\x35\xb7\x8b\xe5\x89\x04\x96\x98\x8f\x67\xad\xbb\x5d\x14\x4f\x25\x50\xc4\x1c\x45\x6b\x9d\xed\xa2\x78\x38\x81\x22\xcd\xdb\xb4\xb6\xb2\x5d\x3c\x5f\x4e\xe0\x49\xba\xac\xd6\x56\xb7\x8b\xe5\x0b\x09\x2c\x49\xbf\xd7\xda\xf2\x76\xb1\x7c\x25\x81\x25\xc3\x79\xb6\xb6\xb4\x5d\x54\x5f\x4d\xa0\xca\x0c\xff\xbe\xb8\x5d\x5c\x5f\x4b\xe0\x4a\xba\xf1\xd6\xce\x6c\x17\xcb\x7f\x27\xb0\xc4\x7d\x81\x6b\x87\xb7\x8b\x03\xa1\xe4\x6c\x4b\x86\xe6\x3f\xbb\x5d\x34\x38\x89\x26\xcb\x2d\xb9\x76\x6a\xbb\xc8\x82\x24\xb2\x74\xdf\xe6\xda\xf1\xed\xa2\xf2\x92\xa8\x12\x81\xd4\x0f\x6c\x17\x89\x93\x39\x46\xcc\xcb\xba\x76\x7a\xbb\x18\xe2\xd5\x6b\xca\xcd\x96\x9f\x13\xc8\xa8\x08\xc0\x67\x75\x0f\xd8\xe4\x6c\xb8\xeb\xf7\x0b\xd2\xeb\x19\x81\x4f\x6a\x18\xdb\x43\xa7\x2e\x98\x47\xb0\xf9\xc9\x11\x8b\xf9\xba\xd7\x16\xb6\x3b\x66\x76\xca\xac\xc8\x70\x98\xaf\x1d\xdc\xe9\x09\x32\x4c\x6b\xa9\x1d\xdb\x62\x27\x0e\xa9\x6c\xc4\x28\x0e\xd5\x3f\x6a\x27\xb7\x41\x47\xbc\xb6\x11\x84\x64\xe8\x11\xb5\x13\x5b\x24\x21\xbd\x9e\x31\x91\xeb\xca\x40\xed\xeb\x77\x89\x59\xab\x64\x04\xda\xa8\x9b\xf8\x56\x23\xa9\x65\x57\x35\x02\xed\x76\x1e\x02\xc9\xaa\x68\x2c\x94\xdc\x2d\x7a\x07\x70\xb2\x9a\xc6\x42\x7a\x97\xd1\xf1\x32\x6b\x1a\x35\xa6\x9a\x93\xf2\xf6\x46\x54\x55\x34\x0a\xa5\x8c\x70\xb7\x2d\x7c\xbc\x96\xd1\xc8\xd8\x59\xe0\x76\x91\xf1\xe0\x29\xc3\x91\x09\x2f\xe4\xed\x21\xe3\xb5\x8c\x35\x5d\xe2\xde\xbb\x3b\x30\x6f\x62\x55\x8e\x45\xc6\x4e\xe2\x1f\x13\xb1\xe6\xcf\xba\xcd\xb1\x15\xf5\x6c\xa5\xc3\xef\xf2\x95\xa0\x51\x15\x6e\x85\x04\xe6\x23\xb8\x73\x14\xd0\xfa\xc6\x22\x60\xe7\x1a\xbf\x85\x56\xef\x58\x73\xd3\xda\x19\x66\x4a\xdc\xfa\x25\xc3\xda\xa1\xed\x8a\x55\xbd\x24\x9e\xd4\x9b\x8a\xb5\xc7\xb6\x8b\xc9\xcd\xc4\x14\xb9\xee\x58\x3b\xba\x5d\x44\x8d\x24\xa2\x8c\x3b\x93\xb5\x47\xb7\x8b\xeb\x88\xf5\x2c\x00\xfd\xfe\x11\xfa\x9f\x16\x63\xf5\x30\xba\xab\x20\xab\xf1\xe8\x52\xf7\x38\xe6\x6a\x1c\xdd\x78\xcf\x4b\xa9\xb0\xa2\xbe\x76\x49\xc0\xff\x77\x0d\x2a\x6a\xff\x4b\x44\xe9\x0c\xf5\xb0\x7b\x79\x1c\xb9\x8b\xef\xd3\x28\x49\x69\x57\x7e\xe7\x63\x9e\x10\x9f\x5e\x88\x4f\x7a\x87\x4a\x91\xdf\xd3\x66\x52\xef\xb3\x08\x5e\xe9\x46\x62\x57\xba\x3b\x1a\xba\xb2\x71\x3f\x72\xe5\xe7\x37\x72\xe5\xce\x84\x96\x6c\x25\xc3\x34\x8a\xe7\xa3\x92\x61\x1a\x4d\xb3\x61\x9a\xce\xc8\x18\x22\x9f\x76\xfc\x90\xa4\xb7\x3e\x74\xb4\x8b\x54\x1e\xe9\xb5\xf2\x9c\xbf\xdf\x9b\xf3\x27\x27\x81\x53\xf3\xf5\xeb\x53\xbe\xf4\xd9\x0f\x2c\x76\x9b\x04\x9a\xc8\xea\x8d\x8a\x1b\xe2\x00\x00\x40\xc9\xee\x61\x9f\xbe\xa4\x4b\x38\xe2\x7f\x56\xf8\x02\x77\xdc\xe8\x05\xda\x7d\x7d\x7e\xaf\x2c\xd3\x13\x87\x72\xe0\x61\xb7\xf9\x23\x2f\xea\x8e\xf1\x1e\x91\xf2\x23\x18\xfd\x1e\xd1\x38\x0f\xc9\x0c\x7d\x38\x26\x5f\x99\x88\xba\x5f\xca\x2b\xdb\xd1\xa7\x72\xe2\xae\x56\xc3\x9f\x84\x56\xde\x19\x13\xaa\xb9\x44\x38\x0a\x4c\xbd\xff\xd4\x54\x24\x52\x84\x78\xdd\x19\x8a\x33\x65\x3b\xe5\x48\xd9\xce\x38\x51\xde\xa6\x1e\xea\x0c\xd3\x43\x1d\x5d\x55\x68\x44\xcb\xea\xfd\xb0\x2d\xa4\x5a\x45\x31\x8c\x9e\xe5\x10\xa9\xd7\x23\xff\x69\x42\x6f\xeb\xee\x64\xde\x4f\x4b\xd8\xbd\x2f\xe5\xde\x97\x72\xef\x4b\xb9\x3b\x2d\xe5\xee\x8c\xfc\xd4\x80\x2d\x2b\x9f\x17\x8f\x7b\x1a\xbe\x87\xfd\x5e\xa3\x4d\x03\xb0\x91\x59\xc3\x32\x26\xb4\xd0\xff\x72\x35\x1c\xb1\x43\xfc\x90\xef\xe3\x42\x21\x45\x2a\x30\x1b\xe2\xd5\x3b\xbe\x67\x6a\x5c\xac\xc4\x1c\x65\xc2\x42\xc1\x6c\x08\xd8\x6a\x94\x3a\x21\xf7\x3e\x11\x17\xa4\xfb\xfd\x46\xa9\xe3\x3f\x9b\x92\x7a\x06\x2d\x9d\x76\x70\x2c\x03\xc0\x94\x29\xd8\x60\xdb\x55\x88\x29\x32\x0e\x5b\xf1\xf8\x82\x6a\x8f\x9a\xc3\x85\x02\xdd\x23\xa9\xaf\x36\x11\x62\xe6\x98\xa7\xba\x20\x54\x7b\x67\x0d\x4f\x60\x0b\x97\xba\x76\x80\x3c\xfc\x98\xdf\x44\x03\xdd\x05\x13\x30\x3f\xff\xc8\xeb\x23\x5b\x13\x55\xdb\xd6\x7d\x51\x55\x13\x55\x9d\x70\x81\xcc\xcc\x43\x68\xc5\x69\x20\xab\x75\x5f\x5a\x4d\x97\x56\xed\x66\xf3\x11\x2a\xb3\xa4\x3c\xad\x19\x91\xc6\x68\x70\x9c\xe8\x6b\x8c\x81\xef\x22\xf6\xfc\x22\xf3\x36\x21\xcc\x3d\xed\xc9\x0e\x99\x16\x88\x8b\x0d\x7c\x61\x65\xc4\x33\xa0\xb7\xa5\x0a\x85\xbc\xa7\x95\xb3\x03\xc7\x2e\x8a\x48\x37\x16\x0e\x7a\xa8\x2e\x6e\x48\x3a\x96\x97\xf6\x4c\xa4\x5e\x29\xe9\x72\x13\x97\x16\x59\xda\x91\xc0\xef\x1c\x25\xc9\xa6\x03\xe8\x7d\xe9\x09\x1a\x12\xc4\x6e\x36\xa9\x27\xfa\xa3\x4e\x88\x91\x87\x02\xd3\xe8\xf8\xbd\x10\xf5\xba\x06\x4c\xe1\xea\x9e\x89\xd3\x1f\x85\x84\x48\xde\xa3\x8a\xbb\x49\xf1\xfb\xba\x69\x58\x98\x17\xd5\x78\x78\x54\x58\x32\x85\x2a\x32\xdd\x45\xbf\x48\x0e\x10\x50\x91\xb9\x6d\x87\xc7\xfc\x15\xd4\x24\x1b\x3d\xf5\x8f\x65\xfe\xfd\x31\x72\x28\x43\x27\xe9\x06\xe9\x9b\x89\x34\x8a\x35\x9e\x0f\x35\xa1\x3c\xb3\x28\xab\x8d\xde\x2f\xcb\x2c\x83\xbc\x66\xb4\xfd\x4c\xba\x41\xe3\x4f\x99\x00\xd0\x61\x4c\xde\x58\x91\x0d\x07\x7a\x1f\x54\x64\x34\x98\x7c\x30\xde\x44\x23\x13\x78\xf4\x44\xcb\x98\x16\x69\xd3\xcf\x63\xee\xdd\x60\xa0\xad\x9f\x74\x25\x4a\xde\xab\xd2\x33\xf5\xfb\x4d\xda\x2d\xd7\x18\x96\xb4\x65\xad\x36\x31\x54\x0a\xbb\xae\x83\x4d\xa3\x64\x00\x71\xa3\x91\xcb\xdf\xb5\xae\x1d\x84\xe8\xa8\x87\x4d\x5c\x2b\xd7\x61\xa5\x0c\xea\x22\x32\x8b\x10\x37\x69\x80\x16\x2b\x48\xfb\xc2\x63\x5f\xc8\xd0\xbd\x5b\xd6\xcb\x9a\x56\x94\x39\x75\xad\xb8\x92\xd4\x19\xf9\x54\x4f\x44\x4d\xd2\x6b\x03\x70\xc5\xd2\x33\x57\xad\xb5\x01\xd4\x2d\x7c\x9d\x74\x0b\xdf\x6a\x0d\xd5\xad\x0e\xb3\xf0\xad\x46\x2d\x7c\xfa\x4f\xb8\x1a\xb7\xf0\xad\x66\x5a\xf8\x56\xfb\xfd\xd5\xb8\x85\x6f\x35\x2a\x78\xaf\x5a\xdd\x31\x2c\x7c\x91\xe7\x5c\x4c\x22\x49\x20\xd0\xef\xa3\x01\x5c\x05\x70\x45\xb3\xf0\xad\xc6\xec\x6f\xab\xdc\xc2\x17\x49\x9f\x5f\x4d\x5a\xf8\x56\xa4\x85\x6f\x75\xb8\x85\x2f\x8e\x21\x5d\xf4\x24\x14\xae\x92\xc6\x31\x0b\x5f\x86\xae\x7a\x77\x8f\xe0\x45\x1e\xc7\xb8\xd7\xfa\xaa\x8e\x6b\x1c\x9d\x55\x69\xac\x8e\xa6\x67\x38\xff\xae\x1a\xab\x3f\x44\x17\x74\x3e\xff\xba\xa0\xad\x8d\x91\xfd\x59\xe8\x82\x11\x5d\xda\x0c\x3f\x3f\xba\x60\x6f\x4b\x0a\x8a\x97\xad\x9c\x64\xc9\xe3\x3b\xa8\x9a\x08\xcd\x04\xfa\xdc\xd2\x6a\xe2\x8c\x38\xaa\xf2\xdd\xde\x7f\x63\xf5\x20\xcc\x56\x0f\xe8\x36\x9c\x64\xc3\xbd\xbb\x64\xc3\xc9\xd7\x92\xee\x39\x37\x4e\xa2\xbc\xcf\x94\xef\x33\xe5\xfb\x4c\xf9\x3e\x53\xbe\xcf\x94\xd3\xde\x99\xbb\xd7\x0c\x39\x86\xee\x3e\x33\xbe\xcf\x8c\xef\x33\xe3\xfb\xcc\xf8\x3e\x33\x8e\x3c\x0e\x7a\xaf\xb9\xb0\x0c\xfb\x70\xff\x50\xfd\xfe\xa1\xfa\xfd\x43\xf5\xcf\xdb\xa1\x3a\x94\x27\xbf\x5b\x74\x50\x1c\x7a\xea\xfb\x69\x6e\x1b\xfc\x84\xb6\x37\x64\xdb\xb8\x7f\x02\x9b\x72\x02\xdb\x70\x91\x9d\x15\xf0\x2e\x25\x1c\x60\x86\x7b\x1f\x7d\x06\x82\x19\xd2\xf5\xe3\x39\xea\x9e\x47\xbd\x28\x84\xcf\xde\x96\xcf\x61\x5a\x96\x20\xb1\x9d\x38\x81\x69\x6e\xed\x04\x86\xd5\x03\x60\x37\x72\xf6\xd2\x89\x9f\xbd\x34\xd3\xcf\x5e\x3a\x35\x54\xb7\x9a\xec\xec\xa5\x13\x3d\x7b\xd1\x7f\xc2\x4e\xfc\xec\xa5\x93\x79\xf6\xd2\xe9\xf7\x3b\xf1\xb3\x97\x4e\x94\x3f\x77\xac\xf6\x96\xcf\x5e\xc8\x7a\xe6\x67\x2f\x1d\x00\xbb\xda\xd9\x4b\x27\x76\x32\xd2\xe1\x67\x2f\x91\xf4\xf9\x4e\xf2\xec\xa5\x2b\xcf\x5e\x3a\xc3\xcf\x5e\xe2\x18\xd2\x39\x14\xa1\xb0\x43\x1a\x37\xf4\xec\x65\x65\xb8\x48\xd3\x46\x6e\x17\x05\xe1\x54\x4a\x80\x25\x27\x4c\xb3\xf6\xa5\xd4\xd1\xc3\x8e\x1b\x4e\xd1\xb2\x45\x0a\xc7\x04\x94\x98\x78\xa2\x9d\x68\xeb\x5d\x1e\x5b\x36\xd4\xb9\x44\x0b\x95\x0d\xf4\x2d\x29\xce\xe0\x29\x3b\x8c\xc9\x2a\x39\x47\xf8\xfb\xd3\x0f\x8c\x1a\xdb\x68\x73\x07\x04\x33\xab\x93\x95\xc5\xbb\x56\xce\xe4\x12\xf6\xf9\xbb\xd6\x74\xc8\x10\x10\x88\x27\x98\x50\x51\xab\x43\x8f\xc8\x03\x8e\x95\xaf\x40\x5f\x6c\x00\x38\x58\x95\x82\x87\x0d\x43\x0b\xd5\x62\xc4\xd4\x4d\x30\x97\x27\x7b\x80\x6d\x85\xf4\x69\x4f\xb2\x3e\x9b\xbe\x87\xc8\x6c\x0d\x58\x90\x2b\x9b\xcd\x23\x00\x89\x58\x10\x70\xc1\x85\xb2\xcc\x39\x82\x12\xcc\x0d\xd8\x63\x9f\x3d\xb0\xe6\x10\x12\x7c\xab\x37\x68\x39\x9e\xed\xba\xab\x6b\x84\x00\xaf\xdf\x27\x33\xc1\xb2\xc2\x12\x23\xb9\xdf\x17\x90\x09\x64\x49\xfa\xb8\x05\xe3\xc1\xfe\x60\x20\x4f\x76\x69\x3f\x6a\xdd\x0a\xd6\x52\xf9\xf4\x51\x6f\xc5\x76\x9d\x66\xce\xc6\x44\x5a\xc5\x39\xec\xe7\x9a\x88\xb1\xd6\x5e\x80\x72\x9e\xef\x15\x69\x93\x97\x5c\xb5\x39\x91\x0d\x46\xdb\xc1\xa5\x63\x80\x67\x91\x09\x50\x01\xb5\xb2\x16\x82\x1e\x97\x9c\xf0\x61\x32\x93\x80\xe9\xdd\xd5\xd6\x4c\xe7\xe7\x09\x32\x3d\x99\x93\xd8\x51\x56\x9d\xe5\xa5\x6f\xdb\x0e\x0f\xd8\xf7\x08\x5d\x07\x25\xb6\x1c\x4c\x4f\xbf\x5e\xe6\x6c\x67\x05\x69\x81\x2e\xe4\x22\xaa\x47\x7c\x24\xd2\xd7\x06\xbe\xbf\x36\xfe\x03\xd7\x46\xa0\x9c\x66\xc8\x04\x98\x26\x5c\x3d\xa8\x95\xeb\xd0\xb1\x82\x5a\xa5\x4e\x9d\xaa\x68\x33\x1c\xe5\xbf\x2f\x23\x52\x8b\xf9\xe0\x00\xa5\x05\x31\xcf\x3c\x47\x68\x41\xd4\x41\x4f\x95\x67\x4f\x83\x39\x35\xbf\x0e\x3d\x79\x23\xa0\x3c\x21\xc5\x0c\xde\x03\xd1\xe2\x1e\x74\x76\x68\x61\xca\xc0\xa2\x41\xfa\xda\xf4\x52\xd7\x66\xa0\xaf\x4d\x6f\xf8\xda\x1c\xa9\x52\x17\x3b\x3d\x17\x3b\x5d\x17\x8d\xb9\x3e\x77\x46\x57\x10\x31\x4c\x1f\x59\x38\xf6\xe8\x43\x76\x10\x96\x04\x9d\xe6\x9a\xd3\xac\x1a\x2b\x5f\x79\x1c\x1f\x99\xc5\x1d\x03\x2e\xb9\x7e\xe3\x74\xf5\x8b\x6b\x5c\xf7\x0d\x8d\x6a\x8d\x47\x96\x31\x44\xec\x1b\x03\x1a\x0f\x46\xc2\x03\x19\x0f\xda\x81\x63\x33\xf1\x6d\x09\x35\x1f\x5a\x15\x49\x7c\x7e\x8a\x9f\x8f\xda\x4b\xc8\x8d\xfc\x70\x65\xe9\xf4\xa0\x5d\xc6\x83\xb6\xeb\xfa\x67\x0e\x32\x49\xd2\x78\xb0\x61\xbb\x8d\x1e\x21\xfb\x84\x1f\x3a\x9c\xa8\x07\x63\x71\xd8\x8c\x07\xd3\xa2\xa6\x19\x0f\xca\x07\xef\x08\xac\x07\x5f\xa1\x96\x93\xb3\x38\xb0\x09\x10\x0f\x80\x65\x3c\xd8\xf6\x03\xe7\x59\xdf\xc3\xb6\xab\x23\xe5\xe2\x92\xbb\x7a\xbc\x8b\x3c\x56\x69\x3c\x78\x9e\xf1\xa0\x8c\xd5\xc7\xc1\x68\x00\x42\xe3\xc1\x64\x28\x3c\xe3\x41\xf6\x72\x0e\x83\xd8\xfb\x78\x1c\x66\xc1\x41\x08\xc8\x6f\x7f\x18\x0f\xca\xab\x15\x12\x8c\x50\x1e\xf1\x66\x89\xfc\x8c\x16\x8b\x06\x2d\x34\x1e\x8c\x84\x5d\x21\x3f\xbd\x26\x0a\x8e\x7a\x27\x5c\x1a\x97\xda\x78\x50\x05\x42\x30\x1e\x14\xe1\x2e\x04\xc4\x6f\x1d\xa9\x84\x23\x0e\x72\xb5\x9f\x5a\x4b\x59\xc2\x89\x28\x91\x6a\xf7\x52\xf0\x51\x8c\x3a\x11\x8a\x29\xbd\x84\x0f\xd2\xa9\xe8\x60\x36\x09\xb1\xbd\xc4\xbc\xe9\xd4\xfc\x3c\x4a\xeb\x59\x41\x01\x76\x1a\x91\xf1\x2b\xd8\x18\x07\xa4\xe3\x0a\x7c\xb2\x18\x75\x68\x84\xd8\xc6\xd4\x8d\x9c\xcc\xfa\xda\x2e\x68\xe8\xeb\xd6\x80\xb5\x5a\x65\x06\xce\xee\xa9\xd7\x61\xad\xf6\x99\xad\x80\xac\x90\x73\xc6\x83\xf1\xb0\x60\xdb\x5c\x2d\x34\xaa\x96\x2d\xbe\xfa\xf7\x59\x3c\x3c\x96\x44\x74\x1d\x79\xf2\x1e\x17\xf9\xc1\x42\xff\x7c\x66\xcb\x2b\x40\xcf\xf4\x9c\x80\x2f\x81\xcf\xe9\x52\xd3\x82\x68\xe9\xbf\xf5\x2f\x47\x2d\x41\xb5\x5e\xc9\x82\x9a\x9e\x81\x33\xb0\x46\xd6\xd6\xf4\x0c\x9c\x95\xd0\x2e\x09\xed\x96\xd0\x1e\x09\xed\x95\xd0\x3e\x09\x95\x61\x2d\x2b\x2e\xa3\x5e\x22\xba\x58\x78\x4e\xa5\x2c\xab\xa9\x54\x14\x38\xcd\xc1\x69\x68\xe8\xcb\x82\xe7\x2a\xb2\x2b\x8a\xee\x8a\x22\xbc\xa2\x28\xaf\x28\xd2\x2b\x8a\xf6\x8a\x22\x7e\x5a\x11\x30\xad\x08\x98\x9e\x56\xa0\xc2\x36\xad\xb0\x4d\xef\x8a\x34\x5f\x0f\x75\x22\x4a\xec\x4e\x29\x21\x26\x7d\x22\x83\x2e\x00\xf1\xa5\xa2\x79\x5a\xd1\x3c\xad\x68\x9e\x51\x34\xcf\x28\x9a\x67\x14\xcd\x33\x33\xaa\xff\xe4\xdc\xe6\x59\xaa\x0d\x33\xaa\x0d\x33\x8a\xd8\x19\x85\x7d\x46\x61\x9f\x51\xd8\x67\x15\xf6\x59\x85\x7d\x56\x61\x9f\x9d\x89\xb4\x3c\x2b\x14\x1c\x6b\xee\x5e\x68\x68\x47\x26\x35\xf1\x51\x62\x7a\xd7\xd9\x26\x10\x9f\xc1\xb3\xb4\x39\x75\x81\x59\xb5\x68\x76\x77\x8c\x08\x16\x0b\x70\xc1\x5e\x62\xce\xd6\xf4\x9b\xb5\xd8\x06\x54\x86\xc6\xd3\x4f\x7b\xb9\x1c\xa9\xbd\x32\x0b\x67\xf7\x32\x24\xda\xbc\x60\xd8\x20\x2f\x49\x9a\x60\x74\xed\xc0\xee\x20\x8c\x02\x52\x45\x05\x4e\xd7\x07\xd1\xfc\xb6\x1d\x1e\x5e\xb1\x5d\xa3\xda\xb2\xdd\x10\x0d\xbe\x08\x3b\x08\xdb\xd5\xb5\x0e\x15\x24\x1f\xb3\x3b\x28\xed\xa1\xeb\x2d\x48\xb5\xa5\xf6\x52\x68\x0c\x06\xba\xc4\x8c\x77\x4a\x62\x4e\x3b\xf5\xfa\xac\x25\xe7\xc6\x8c\xd7\x7b\xe4\xe8\xf2\x4c\xa6\xe4\x6c\x40\xc3\x69\x9e\x55\x3c\x96\x6e\x76\x4e\x88\x97\xfc\xb3\x8c\x35\xea\x62\x4b\x64\x7b\xe2\x5b\x99\x94\x50\x34\xa9\x25\xb6\x03\x24\x64\x97\x3d\xd0\xe8\xb9\x06\xa4\x63\x4c\x66\xcf\x34\x21\xc2\x80\x35\xb2\x6c\xd3\x22\x9b\x8b\x1e\x56\x6f\x96\x42\xce\x91\x0d\xf1\x4a\xa9\xc1\x27\x36\xa9\xab\xc1\xf9\xfe\x18\x35\xd1\xc9\x3b\x03\xf7\xd5\x61\x6d\x06\x1a\x34\x5c\x69\xe4\x22\x88\x5c\x12\xf4\xba\x03\x63\xd9\x6c\x39\xa8\xf2\xf4\xaa\x0b\xbf\x66\x9d\x5d\x7c\xaf\x36\xd1\x61\x6d\x16\x1a\xc8\xa6\x71\xd8\x44\x43\xe4\x76\x47\x4a\x13\x9d\x36\x6d\xc1\xe5\x72\x6c\xbd\xed\x81\x86\xeb\x18\x90\x5e\xe4\x80\xb5\x4a\x45\xb6\x79\xdc\x2e\xcc\x19\x8c\x9d\x38\x2d\x43\x2e\x5b\xf5\xe6\x36\x59\x89\xa3\xeb\x28\x16\xd5\x07\x94\xe2\x8c\x86\xf6\x3c\x17\x51\xda\x44\x53\x35\x3c\xc3\x9b\xaa\x35\x37\xec\xda\x9e\x6a\x70\x19\xb2\x7b\x5a\xd0\x58\xea\x61\xcc\x36\x3b\x92\x48\xef\xb9\xb8\x5c\x8a\x65\x17\x81\x72\x88\xc7\x2b\xe0\x45\xc6\x99\x1c\xec\xcb\xe2\x12\x66\x15\x57\x20\xbb\x13\x23\x86\x88\xdf\x8a\xd1\x98\x9c\xde\xea\x9c\xfc\xdf\xd5\xd7\xb4\x9f\xa4\xa6\x7d\x43\x98\x61\x7d\xc0\xfa\x90\x76\x19\x1f\x96\x59\x6d\x5e\x44\x45\x9f\x71\x7b\xae\x92\xb6\x6b\x0c\xaf\xb6\x46\xb8\x17\x93\x98\xe3\x9a\x35\xdd\x47\xf6\x92\x9e\xb5\x9b\xbe\xe7\xae\xca\xda\xd8\x07\x82\x28\xbe\x55\x45\x4a\xf1\x8d\x21\xbb\x80\x22\x4a\xd5\x43\x00\xc1\x24\x86\xf4\xdb\xa8\x3e\x98\x85\xb1\xbd\x29\x8a\x6b\x68\xe5\x2c\x73\x9c\x01\xa4\xbb\x59\x82\x16\x35\x98\x7b\xa1\x61\x7b\x4d\xd9\xd6\xc8\xfd\x0a\xde\x21\x9e\xaf\x0f\x50\x84\x85\xca\x2e\xd1\xff\x64\xb7\x3c\x6b\xd5\x0c\x99\xfd\xd1\x0b\x1f\x74\x42\x57\x98\x54\x14\xbb\x0a\xc2\x07\x64\x9c\xc9\x9c\xda\x9f\xb3\x3a\xdb\x29\xab\x59\x31\x82\xe1\x39\x4c\x1d\xd2\x37\x8d\x21\xad\x11\x6f\x79\xc8\x35\xcd\x3e\xe7\x1f\xda\x3d\xec\x93\x35\xe1\x22\x4c\x98\x88\xdf\x6a\x45\x73\x82\x80\x6d\x85\xf1\x0c\xbb\xeb\x60\x7a\x08\x15\xcd\x0b\xbb\xc8\x75\x1b\x6d\xd4\x38\x6d\x40\x83\x12\x68\x8c\xb3\xad\xa5\xd3\x38\x62\x73\x63\xc7\x7c\x50\x6d\x1b\xe2\xa1\x0d\x43\x16\xa1\x5c\xb0\xe1\x7b\x38\x20\xfb\xbc\x52\x59\x04\xb5\x78\xd5\x45\x6a\xaf\xe2\x54\x1c\xe3\x44\x50\xad\xf3\x14\x2d\x22\xbf\x88\xde\x3b\xe2\xdf\x75\xec\xd5\x25\x74\x22\x32\x8b\x79\x71\xa5\x8d\xa7\x72\x7c\x5a\x46\x89\x15\x52\x8f\x12\x39\x4c\x9b\xe3\xea\xa4\xbe\xd1\xb6\x78\x9c\x45\xa1\x6e\x45\x76\xe1\x25\x16\x0f\x51\x28\x60\x91\x3c\x3e\x75\xa2\x5a\x04\x53\xaf\x63\x25\x4f\xcb\x80\x29\x19\xaa\x08\x2f\xdd\x74\xc8\x2e\x10\xa2\x40\x97\xc3\x43\xec\x07\x5a\xff\x85\xda\xce\x3f\x1e\xe7\xdf\x17\xd9\x3a\xb7\xb8\x7e\xc9\xda\xe9\x85\x45\xa7\xc1\xb6\xc3\x14\xac\xf7\x5a\xb8\x16\x02\xf0\x3d\x10\xb2\x3f\x4f\x32\xf5\xde\xdd\x5f\x6b\x3f\xf6\x14\x3a\x99\x2e\x53\xcb\xb7\x7c\xa0\x71\x40\xb3\x99\x19\xd0\x50\x90\xdc\x57\x31\x0a\x3a\x06\x34\x62\x51\xb3\x8d\x87\x74\x03\x81\x01\x8d\x05\xa1\x58\x70\x89\x9d\x7f\x26\x2d\x5b\xba\x0c\xee\x78\xf4\x38\x9f\x9a\xe6\x3c\xa7\x43\x6d\x01\x09\x53\x4c\x22\x21\xc3\xf6\x92\xb0\xb7\xc4\xac\x7d\x09\x9b\x5e\x37\x5e\x4f\xc4\xf0\x93\x6e\x6e\x8b\xd9\xf2\x52\xac\x6f\x09\x1b\x54\x9a\xbd\x46\xb3\x01\x2a\x45\x24\x6a\x1f\xd2\x4d\x3e\xdb\xb6\x88\xea\x76\xb0\xa4\x91\x37\xcd\x5e\xbb\x64\x87\x4e\x43\x3d\xf6\xc4\x2c\xb6\xd3\x7b\xb9\xc5\xf6\x6e\x3b\x27\xd5\xfa\x98\xb0\xea\x45\x8c\x8c\xc2\x82\x38\xca\xd4\x37\xa2\x9b\x53\x2c\xb8\xdc\xd2\x30\xd2\x24\xc4\x36\x90\x38\xe1\x5a\x66\xb4\x01\x09\x13\x10\x6b\xcc\x50\xcb\x10\x49\x8d\xc4\x55\x4f\x5a\xa3\x34\xb3\x93\x66\x47\xa2\x0a\x5c\xb2\x65\xa3\x6c\x20\xbb\xa1\xd0\xa3\xc4\x72\xa5\x03\xab\xc9\x29\xa3\x8c\x3c\x6c\xc7\xd0\x05\x07\x61\xbe\xe2\x89\x4c\xe7\x89\x6d\xdc\xd4\xc4\x1f\xdd\xfb\x9b\x62\x5e\x2f\xad\x1a\x9a\xe5\x4b\x2f\xe2\x88\x79\xae\xac\x61\x7a\x36\xd7\xa1\x94\x7d\x2c\x91\xe9\x6a\xb5\xcf\xc6\x4b\xa8\xb5\xa1\x6c\x67\x62\x7b\x67\x4b\x45\x19\xd2\x52\x04\x02\x4d\x54\xd6\xa4\x62\x31\x48\x11\x1d\xc2\x0f\x84\x62\xc9\x06\xd0\x28\x1b\x71\x49\x79\xe4\xee\x1e\x8b\xf0\x1d\x13\x09\x34\xa9\x23\xf1\x89\x30\x62\x66\x48\x22\x89\xf2\xd4\x66\xc2\x85\xb9\x9a\xce\x9d\x84\x66\x25\x9b\xc3\x2d\x98\x9a\x71\x41\xea\x44\x19\xb3\x90\x6b\xdb\x2e\xc2\xa2\xe3\xc6\xb6\x15\x8e\xad\x52\xec\xd6\xed\xda\x9c\x6d\xe1\x8e\xbb\x60\x2f\x8f\xb3\x39\xc8\x83\x98\x88\x81\x29\x79\xb4\x92\x66\x66\xd2\xcf\x43\xc6\x3c\xd9\x88\x1c\x9b\x8c\x3e\x93\x10\xd6\xaf\x0c\xcd\x58\x75\xe1\xa2\x08\x85\xcd\xbc\x59\x8d\xa1\x26\x73\xcd\x50\x4f\xbe\xe5\x66\x27\x2a\xd2\xcb\xc4\x58\x0f\x0c\x37\x95\xab\x64\x3e\x99\x32\xc4\xda\xb8\xc1\xbe\x1c\xd5\x39\x53\x8f\x1d\x52\xed\xee\xda\x59\xc1\x74\xb4\x31\xea\x9d\xd1\xc8\x01\xc2\x10\x3e\x19\x51\xca\x2b\xd3\xac\x4f\xb5\xce\x2a\x47\x4d\xc6\xa2\x78\x5c\x62\xde\x07\x2b\xe5\xb8\xe5\x38\x52\x60\xaf\x92\xa9\xe9\xfc\xcd\xd6\xec\x53\xd8\xf7\x41\xdf\xc3\xa2\x63\x46\xb1\xef\xf8\x33\x29\x72\x69\x8b\x65\xa1\xcf\x9b\x06\xab\x58\xcd\x9b\x6d\xae\xe5\xcc\x73\xa4\x2d\xaf\xe8\x3d\xfa\x8a\x4e\x17\x1b\xd5\xf2\x18\x47\x80\x8c\xac\xf0\xec\xa3\xcc\x94\x75\x2e\x99\xc4\x98\xab\x7c\xe8\x72\xad\xcc\x8e\x98\xb0\xa9\xe7\x60\x99\x0b\x35\x65\x85\x8d\x71\x5c\x35\xc6\xf2\x95\x5c\x22\x61\x6d\x19\x67\xe9\x8a\x65\x37\x64\x41\xec\x49\x33\x2f\x72\x31\x2c\xf5\xc9\x9d\x4c\xa3\xcc\xe8\x69\x99\xf1\xb0\xd9\xd8\xd3\x52\x9f\x98\xbb\xf5\x89\x99\x72\x6e\xac\xcc\x92\x29\xb8\x8d\x8c\xa1\x1f\xda\x53\xbb\xb3\x6d\x57\x43\x8c\x7b\xb3\x5a\x47\x6a\x2f\x08\x0d\xeb\x45\xfe\xe5\x2e\x58\x99\x19\xd7\x98\x3b\x4b\xca\x6e\xc9\x14\x1a\xa5\x30\xe1\x93\xb0\x05\x03\x7c\xcf\x1d\xd7\x10\xa1\x1f\xad\x28\x43\x3d\xe7\x08\x46\x86\xad\x3c\xe5\x54\x63\x1c\x2c\xb9\xcc\x9c\x62\xd1\xf3\x8b\x3c\x5e\xa1\x76\x4d\x57\x27\x89\xab\xe1\x19\x14\x29\x03\x3a\x9b\x41\x29\x9d\x17\x33\x4e\x47\xbf\xdc\x97\x48\x4f\x4b\xdd\x92\xed\x74\xbc\x01\x1f\xb1\x3c\x13\xbe\x22\x77\xb5\x30\xb9\x56\x17\xd1\x55\xe2\x7c\x73\xb4\x95\x56\x4e\x15\xb6\xc0\x93\xa2\x20\x75\xd9\x39\x2a\xce\x1f\xe5\xde\xa0\xb6\xa3\x11\x4e\x30\xc9\x37\x3d\x13\x6e\x40\x1a\xf7\x48\x0a\x62\x86\x91\x26\xc5\x25\xf6\x91\x68\x22\x34\xf8\x4b\xc2\x22\x3b\x7a\xc6\x9f\xa0\x49\xcb\x8b\xd3\x36\x5a\x98\x4a\x88\x53\x31\xef\x94\xb8\x34\x95\x36\xe5\x66\xe1\xae\xa1\xe2\xd4\x4c\x4c\x9c\xca\x10\xa8\xb2\xac\xfd\x23\x26\x64\xba\x6b\xd9\x5d\x48\x31\xd3\xd1\xcd\x42\x4c\x11\x7e\x38\xa5\x10\x26\xc5\x80\xca\xc8\x0d\x74\x7a\x2b\x12\x65\xca\xe1\x10\xeb\x9e\x7b\x64\x81\xbd\x07\x06\xd7\x21\x6f\xc1\x7c\xd6\xf6\xd7\x43\x27\x4e\x3f\x7c\xda\xc1\x8f\xa4\xdb\x5f\xb3\xfc\x18\x52\xc5\xd4\x88\x64\x9a\x22\x8c\x8e\xf0\x63\xd0\x45\xa9\x3d\xa3\x0e\xb2\xf8\x0e\xd7\x74\x56\xc6\xb6\xe8\xcb\x23\x90\xe8\xfe\x94\x7d\x20\xf6\xa9\x9d\x6b\xf1\x1d\xb4\xe1\x77\x96\x7c\xbe\xab\x8f\x60\xf5\x3c\x60\x46\xe4\x18\x4e\x3b\xcb\xaa\x8c\x7f\x96\xa5\x1b\xab\x12\x27\x53\x33\x63\x9d\x24\x69\x07\x42\xb3\x89\xd3\x22\xcd\xe0\xb3\x6b\xc8\x31\x53\xf2\x08\x6a\x5b\x87\x47\x5a\xbc\xfb\xb4\x63\xa3\xf1\x1d\x08\xee\x1d\x9b\x89\xf1\x84\x7b\xc1\x75\x3e\x87\xec\xe6\xf1\x85\xaf\x3c\x75\xa6\xfd\xe4\xa1\x74\x76\xf3\x30\xbb\x10\x18\x3d\xdc\x31\xc8\xe2\x64\x32\x8b\x3c\xea\xd1\xf8\x52\x44\xa8\xd1\xce\x6e\x94\x7c\x93\x26\xca\x24\xbd\x97\x35\xd9\x27\x21\x39\xf1\x23\x90\x71\x5c\xaf\x92\x02\x7a\xea\xc2\x1b\x71\x88\x2d\x17\x45\xf2\xd4\x9a\xe8\xe1\x43\x66\xbe\x1e\xc2\x34\xc3\x85\x48\x72\xd9\xdd\x4a\x4a\x1b\x47\xb9\x12\xfe\xaf\x63\xba\x4b\xec\xa4\xf6\xc1\xa9\x1c\x4b\xf5\x60\x4a\x06\x77\xd5\xdd\x9e\x7f\x85\xa6\xe5\x0f\x11\xbb\x2a\x49\x67\x9c\x44\x11\xcd\x33\x63\x48\x47\x6b\x5e\x6c\x95\xe9\x21\x5d\x1d\xf1\x83\x19\x7e\xb7\x56\x63\xe3\x5b\x56\x4b\x2a\xba\x08\xc8\x2b\xcc\x94\x05\x67\x52\xbc\xb7\xf7\x8d\x65\xc1\x4c\x91\x3a\xf5\xa5\x24\x02\xf4\x6d\x51\xfd\xd1\xd6\x73\x06\xb3\x18\x93\x31\xc4\x5b\x69\xe8\x88\xb4\xe6\xee\xd3\x44\x17\xb5\x19\x42\xa3\x34\xdc\xe3\x7c\xdc\x3e\x8a\xbb\x5f\xc5\xbc\xe5\x93\x9a\x49\x9a\x58\xbd\x2b\x62\xa9\xcd\x56\x9a\xb7\xe5\x22\x76\x17\x6b\x5f\x78\x06\x52\x3e\xa9\x5d\x6a\x65\x9d\x9a\x39\xc9\xb5\x92\x89\x29\x98\xf4\x01\xe5\x0c\x54\xa0\xd1\x1d\x6b\x74\xe7\xcd\x99\xb8\xf3\x26\x69\x88\x3a\x07\x53\x15\x34\x7a\x41\xc0\x96\xb8\x22\xf3\x99\x54\x52\xb4\x30\xdc\x29\xd4\x24\x43\x84\x67\xce\x26\xf6\xcd\xb8\x46\x97\xe8\x84\x99\x19\x35\x61\x46\xcb\x44\x49\x5d\x16\xce\x66\x71\x4f\xe6\xc1\x27\x7d\x71\xee\xa1\x20\x75\x0f\x25\xa8\x8c\x18\xd1\x9f\xb5\x14\xb5\x72\xf2\xf8\x57\xbf\xfa\xb0\xbf\x2f\x5d\x8a\x52\x0e\x1b\x51\xeb\xf7\x90\x8d\x7d\xd8\x66\xa3\xeb\x5b\xcc\x85\x6a\x4c\xaf\xc1\x98\xed\x9d\x48\x2e\x91\x2d\x7a\xfa\x6e\x76\xe8\x7b\x35\x89\x34\x62\xef\xc9\x44\x1a\x1a\xe5\xf6\xb3\x9e\x4f\xde\x81\xd6\xc2\xae\xc3\xd3\x47\x32\x8c\x00\x62\xeb\xcf\xbe\x3f\xb9\x25\x96\xaf\x36\xf4\x51\xac\x38\xe1\x47\x1f\x67\xc5\xa3\x38\xe1\x5d\x78\xfe\xb1\x40\x23\x1e\x3d\x53\x8c\x08\x94\xc2\xa0\x28\x8e\xa9\x93\x13\x57\x72\xdc\xe9\x88\xc8\x7d\x4f\x99\x5f\x92\xf6\x7b\x31\x7d\xb3\xe3\x81\x7e\xd6\x53\xf7\xcc\x91\x63\x7b\x0e\xac\x1c\x7d\x2a\xd3\x7e\x15\x39\xc2\xca\x50\xe0\xee\xc1\x51\xcc\x3d\x50\x82\x12\x51\x52\xc7\x91\x04\x0c\x7d\x02\xa7\x1c\xb2\xc4\x37\xfd\x7b\x3c\x5d\xa3\x6d\xb8\x17\x53\xf5\x73\x78\x6f\xec\xe0\x1e\x7b\x5f\xe3\x50\xbb\x97\x31\x47\xb7\x74\x36\x9f\x65\xe4\x18\xc7\xc9\x74\xa8\x08\x30\xde\xb5\xa9\x98\xf9\x60\x9c\xdb\x06\xa9\xb7\x66\xe4\xd7\x5b\xbd\x20\x23\xdd\xdb\xb3\xef\xc6\xa4\xb6\x24\xb3\xe8\x0e\xdd\x8f\xb9\x1b\x1f\x73\x79\x03\x0a\xa3\x8e\xdc\x6c\x66\x89\xa4\x9f\xd2\x8c\xb4\x9b\x36\x23\xa4\x75\x98\x7e\x61\x46\x69\x15\x11\x7f\xc0\xd4\xcb\x64\xe3\x99\x0d\xee\x46\x3a\xa4\x91\xde\xc4\xad\xb0\xa1\xd7\xff\xd8\xdc\x8d\x5a\x87\x53\xaf\x15\x6a\x05\x39\x13\xbc\xfa\xda\x16\x0c\xbd\x63\x8d\xf4\x90\x19\x3d\x2d\x67\x74\x4c\xf2\x95\xdc\x77\xbc\x29\xf6\x2f\x74\x5b\xe1\xee\x2f\x29\xb0\xa8\x6e\xe2\x72\x74\xb1\x65\xbb\xee\x92\xdd\x38\x5d\x74\x5a\x45\xf5\x32\xe4\x3d\xe7\xe1\x29\x61\x43\x19\x27\x17\x84\x99\x6b\xcb\x08\xeb\xcf\x32\xcb\x58\x58\x30\xd4\x33\x68\x98\x5c\x9e\x27\x03\xed\x05\xf3\xa8\x1a\x0c\x06\x60\xb0\xa5\xae\x10\xd7\x72\x65\x4c\x8c\x4f\xaf\x13\xb4\x98\x60\xb1\x6e\x30\x22\x1e\x9e\x48\x7f\xd3\x8d\x07\x94\x6a\x3b\x21\x0f\xaf\x4a\x50\x3b\x28\x24\xc8\xf5\xaf\x58\xb4\x29\x44\xa3\x4d\x95\xb4\x0c\x11\xe9\xd3\x29\x14\x3c\xcb\xb2\xf4\x68\xb4\x1a\x3d\x1e\x0f\x2b\xb5\x8c\xb0\x89\x68\x10\x4a\xa0\x87\x04\x8e\x94\xa4\x61\x35\xc7\xec\x76\x3d\xae\xe0\xd6\x83\xa8\xc9\x50\xbb\x79\x54\x28\xe4\xf3\x3a\x89\x9a\xb2\x00\x12\x79\x42\x94\x4c\x0f\xce\x55\x8e\x07\x3f\xcd\x21\xd3\x63\xa1\xd6\x3c\xa0\x3d\x09\x2a\xdf\xd0\x74\xac\xf2\x9c\xb3\x5f\x61\xf0\xa0\xc1\x42\x72\x19\x60\xce\x11\xa1\x89\x7d\xcb\x2b\xb1\x40\x6c\x07\xf0\xbc\x02\x4d\x07\x54\xbd\x9a\x53\x9f\xc0\xa6\x0f\xe6\x91\xd6\xcd\xbe\x46\x27\xa8\x06\x93\x93\x83\x81\x89\x00\x0c\x22\xc1\xf6\xd4\xd3\x8d\x69\x54\x3b\x8c\x6a\x27\x95\x6a\x16\x3d\x4c\xe1\x73\x34\xaa\x7d\x41\xb5\x6d\x39\x8a\x6a\x05\x9a\x3e\xa8\x3a\x35\x9f\xc6\x2c\xc3\xa6\xcd\x9f\xdf\x0b\x2d\x9d\x7e\x5b\xa7\x9f\x14\x0c\x1f\x28\x56\x04\x25\xe1\x00\xb9\x21\x22\xd4\xd9\x64\xa5\x4a\x02\x27\x3c\xd2\x4e\xf6\xab\x58\x19\x44\xa2\x03\x3b\x23\x9b\x0b\x7d\xde\xe0\x7e\x3f\xd8\x5f\xe6\x95\xae\x89\x5d\xb5\x9a\xaf\x40\x46\x11\x8f\xd4\x39\x90\x7d\x61\x5b\x65\x18\x5a\xe9\x7d\xe1\xed\xb7\x82\x42\xc1\xde\x1f\xce\x31\xdc\xbd\x8c\x2e\xb1\x49\x97\xd8\xbc\x4b\x7a\xbc\x4b\xdc\x48\x97\xf4\xb4\x2e\x81\x7e\xbf\xaf\x4f\xcb\x9e\x76\xd7\x90\xf5\x97\x2b\x7a\xc5\x95\x9d\xe5\x69\x9d\xa5\xda\x35\xac\x26\xd1\xe2\xde\x80\x76\xad\xcd\xa6\x11\xcc\x57\x40\xbf\x3f\xa4\x67\x12\x4f\x1f\xb0\xa5\xb1\x26\x57\x55\x15\x95\x24\xcc\xbf\x0d\xab\x78\x20\x63\x4b\x97\xda\x76\xa8\x05\x9c\x35\x35\x92\x68\xe0\x3f\xf9\x80\x23\x92\x60\x64\x6e\xd3\x80\xdf\x64\x3c\xd5\x10\x91\x25\x0a\x43\xeb\x98\x8d\xdb\xa5\x8e\xe3\x99\x0c\xb0\xcf\x9a\x8c\xe5\x4c\xfa\xb0\x0c\xa0\x5d\xac\x00\xd8\xb3\xc8\x5c\x09\x01\x74\xad\x9e\xac\x1e\x36\xac\x1e\x7f\x07\x71\xae\x51\x28\xb8\x7c\x38\x5b\xac\xec\xa4\xe5\x83\x09\xd7\x6a\xe9\xc5\x5b\xbc\xb8\x08\x95\xd7\xb8\x9b\xc8\x78\x3c\xe2\xa5\x85\x21\x2a\x35\xfc\x9e\x87\xf9\xe9\x2a\x8d\x8b\x47\xed\xcd\xc7\x5b\x2c\x89\x46\xb1\x64\x18\x0f\x60\x7a\x4a\x62\x39\x10\x95\x5a\x8e\xd7\x64\x05\x9e\x74\x70\xfb\x78\xab\x15\xa2\xc8\xa6\x41\xe3\x35\x73\x1e\x03\x6d\x18\x26\x1e\xf4\x7d\x60\x56\x8b\x6f\xab\x1e\xef\x9d\xad\x17\x0a\xfa\x2f\xd8\xb3\xca\xd0\xb5\x12\x9b\x6d\x3e\x6f\x0f\x52\x16\x5b\x03\xb6\xd4\xe0\xb4\xb5\xb5\xd3\x50\x6b\x07\x36\xad\xf2\x5c\x73\x7f\x7b\xae\x29\xf8\x49\xd7\x6a\xa8\xc5\xa3\x40\xb3\x09\xaa\x8d\x5a\xb3\x0e\x3b\x96\x3e\x93\xbb\xfa\x4c\x26\x4b\x22\x1f\xf6\xfb\xf9\x0e\x7b\xc0\xd9\xec\x02\x16\x82\xd9\x8c\x7c\xa0\x16\x58\xab\xdf\xef\x00\xe8\x9a\x22\xf8\x21\x5d\x45\x39\xcf\xec\xc2\x00\x3c\x60\x95\xe7\xcd\xde\x7e\x67\xde\xef\xf7\x4d\xdf\xea\x82\xaa\x6d\x75\x61\x6f\x72\x12\x54\x7b\x93\x93\x74\xf5\xa9\xef\xc4\x8a\x81\x76\xbf\xef\x0f\xe8\x90\xb8\xca\xcd\xcb\xd2\x3a\x45\x1b\x0b\x3b\x39\x0e\x33\xa9\xe3\x30\x13\x19\x87\x99\xfa\x04\x63\xa5\xac\x51\x07\x4c\xc0\xdf\xa9\x50\x8d\x0c\x54\x07\x4b\x06\xe6\x5a\xe5\x39\x77\x7f\x6f\xce\x15\x1d\xdd\xb0\x02\xd5\xd1\x0a\x34\x5d\x50\x0d\x6a\x2e\xe5\x52\x79\xbb\xdf\xcf\x47\xc6\x4d\x63\x40\xb4\x87\x1b\x40\xac\x11\xbd\x93\x1b\x7a\x27\x7b\xd0\x81\x36\x98\x50\xb9\x2d\x45\xdd\x03\xe5\x42\x21\x64\x21\x3e\x7d\x3a\x5f\x00\x1b\x02\xc7\x6c\x40\x8f\x0c\x81\xcc\x6e\xc8\x17\x2b\xc2\x81\x12\x8d\xb4\x38\x69\x11\x51\x51\x3c\x8c\xca\x3d\x13\xe9\xc3\xc7\xda\x19\x0f\x74\x2c\x54\x12\xaa\x1b\xf4\xad\xa0\xdf\x77\x26\xf4\xb8\xfa\x7e\xbf\x5f\xac\x58\x96\x45\xe4\x46\x5f\xc6\x57\xb5\xc9\x2f\x58\x91\xe1\xf1\xe9\x48\xdb\xcd\x15\xdb\x6b\x20\x76\xf5\x87\xf4\x0d\x5f\xaa\x36\x44\x25\x22\x91\x74\x0f\x39\x76\x23\x70\xb0\xd3\x08\xad\x9e\xa2\x9c\x79\xd7\x06\xe9\xb2\x5d\xcf\x44\xa0\x84\xfd\xc7\xbb\x5d\x14\x1c\xb4\x69\xb4\x6a\xce\x07\x4c\x1a\x9b\x3d\x92\x05\xb4\xfe\x58\x58\xed\xa2\x03\x6d\x64\x37\xb7\x5a\x3d\xd5\xd4\x42\xc2\x3e\xd2\x30\xcc\x57\xaa\xc5\xca\x80\x4f\xbb\x35\x63\xf3\xd5\xbf\x1b\x55\xe3\x80\x01\x8d\xff\xef\x9f\xbf\xe1\xd0\xd5\x6f\x08\xe0\x9b\x02\xf8\x16\x07\x36\x2e\xff\x56\x42\x6f\x49\xe8\xf7\x12\x7a\x47\x7c\xf0\x1c\x07\xae\x89\xba\xae\xa9\x2a\xde\x97\xd0\x9f\x24\xf4\x37\x09\xfd\x85\x43\xb7\x04\xa6\x9b\xbf\x16\x95\x3e\x2f\x52\xce\xcb\xd2\x6f\x88\xbc\x17\x44\xde\x65\x01\x7c\x5f\x54\x24\x48\xb8\xa5\x48\xf8\xb5\x84\xfe\x20\x21\xd1\x11\x1b\x17\x25\xcd\x02\xe1\x2d\x51\xe9\xe6\x85\x3f\x73\xe8\xce\xeb\x94\x50\x8a\xfb\x45\x02\x1d\x26\x38\xff\x29\xa1\x37\x04\x74\xe7\x75\xda\xb6\xe3\x14\xa4\x38\x1e\xa7\xe0\x45\x02\x3e\x41\xc1\xcb\x0a\xa4\x15\x3c\x45\x30\xbd\xfa\x0f\xa3\x6a\x3c\x44\x07\xe6\x0d\x0e\x6d\x5c\xfc\x96\x84\x9e\x97\xd0\x8b\x1c\xba\xfd\x1c\x07\x6e\x88\x52\x37\xbe\xc9\x81\xcd\x57\x09\xb6\x83\xb4\xb2\x37\x39\x74\xed\x45\x01\xbc\x24\x80\xef\x0a\xe0\x7b\x1c\xb8\xfa\x6d\x0e\x6c\x5c\x14\x85\x6e\x88\xa4\x5b\x57\x38\x70\xe7\xf5\x8f\x38\xb4\xf9\xea\x25\xa3\x6a\x1c\xa2\x68\xde\xe2\xd0\xc6\xc5\xef\x72\xe8\xda\x0f\x64\xd2\xf7\x24\xf4\x23\x09\xbd\x2a\x21\x51\xee\x9a\xc8\xbc\xf1\xb2\x00\x44\x5d\x37\xbe\xc3\x81\x3b\xe7\x04\xca\x9b\x17\x08\xf0\x35\x02\x3d\x2f\x21\x32\x46\x87\x9e\x25\xd0\x0b\x02\xda\x7c\x95\x74\xf7\x61\x4a\xe4\xdb\x1c\xba\xfa\x92\x00\xbe\x23\x80\xef\x72\x60\xe3\xca\x37\x04\x74\xf9\x23\x99\xf6\xbc\x84\xbe\x25\x73\xff\xc9\xa1\x6b\xaf\x8a\xa4\x8b\x3f\x96\xd0\x4f\x45\xa6\x48\xba\x26\x52\xae\xbe\x2c\x6b\x10\x84\x5d\xfb\x05\x07\x6e\x09\x3c\xb7\x5e\x94\x85\x2e\x4a\xd4\x22\xed\xd6\x3b\x12\xcd\xeb\xa2\x86\x9f\xc9\x24\x05\x89\x5a\x6f\xfc\x48\x00\x3f\xe0\xc0\xe6\xab\x64\x30\x8f\xd0\x3e\xf9\x2d\x87\x36\x2e\x9e\xe7\xd0\x8d\x57\x38\x70\xe7\x9c\x28\xb6\xf9\x2a\x69\xed\xc3\xf4\x83\xdf\x71\xe8\xe6\xdf\x38\x70\xed\x75\x0e\x6c\x5c\xfc\xb5\x48\x3a\x2f\x00\x91\x72\xf3\xb7\x22\xe5\x0d\x91\xf2\x16\x07\x6e\xac\x73\xe0\xce\x79\x51\xfa\xce\xb9\x0f\x25\xf4\x11\x87\x36\x5f\x25\x69\x8f\x50\x1a\xde\xe1\xd0\xb5\xb7\x38\xb0\x71\xf1\x0d\x09\xfd\x96\x43\xb7\xce\xcb\x24\x55\xec\x1d\x09\xfd\x5e\xd4\x21\xca\x6f\x5e\xf8\x9d\x84\x3e\xe0\xd0\x9d\xf3\xdf\x17\x69\xaf\x12\x42\x8e\x52\xf4\xef\x72\xe8\xea\xf7\x04\xf0\x7d\x01\xfc\x80\x03\xd7\xde\x11\xc0\xef\x05\xf0\x07\x01\xbc\x2f\x0a\xff\x90\x03\x1b\x17\xff\x24\xa0\x2b\x2f\x71\xe8\xa6\xc8\xbc\x25\x52\x6e\x7d\x57\x16\x12\xd0\x35\xf9\xdd\x45\x51\xfb\x8d\xd7\x38\xb0\xf9\xea\xc7\x46\xd5\xf8\x6f\x4a\xf0\xef\x39\x74\xed\x6f\x1c\xb8\xfd\x12\x07\x36\xd7\xc9\x7c\xff\x32\x2d\xf5\x1e\x87\x36\x2e\xbe\xcf\xa1\x9b\xef\xc8\xa4\xbf\x70\xe8\xda\xdf\x65\xd2\xdf\x38\x74\xe3\x67\x1c\xd8\xbc\xf0\x2e\x87\xee\x9c\xfb\x86\x84\xbe\x25\xa1\xe7\x05\x74\xfe\x0d\xf1\xc5\x3a\xe1\x59\x8f\x52\xf4\x7f\xe0\xd0\xb5\x8f\x05\x70\x49\x00\x1f\x72\x60\xe3\xe2\xdf\x25\x74\x51\x64\x5e\x91\x49\xff\x94\xd0\x65\x0e\x5d\x17\xd5\xdf\x12\x55\x6c\x5e\x78\x43\x42\xbf\xe6\xd0\x9d\x73\x2f\x49\xe8\x45\x01\x9d\xff\x06\x87\x6e\x12\x16\xf8\x28\xe9\xac\x9b\xb4\xd8\xd7\x29\xdd\xa4\x55\xc7\x28\xdd\x7f\xe4\xd0\xc6\xc5\x8f\x04\x74\xe9\x1b\x12\x12\xe5\x36\x2f\xfc\x89\x43\x37\x5e\x17\x49\xeb\x84\x85\x3f\x46\x2b\xf9\x13\x87\x6e\x5e\xe4\xc0\x75\x91\x77\xf5\x15\x0e\x6c\x5c\x7a\x5e\xe4\x7d\x5b\x26\xbd\x28\x92\x5e\x90\x49\xdf\x95\xd0\x4b\x1c\xba\xf5\x6b\x0e\xdc\x38\xc7\x81\x3b\xe7\x7f\x24\xa1\xb7\x04\x6a\xfa\x21\x6d\x27\xe1\x51\x8f\xb1\x76\x12\x9c\xc7\x29\x89\x7f\xe6\xd0\xd5\x57\x05\xb0\x2e\x80\x1f\x73\x60\xe3\xca\xab\x12\xfa\x91\x84\x7e\x2a\x21\x51\xee\xea\x4f\x44\xd2\xa5\xef\x71\xe8\xd6\x1f\x64\xd2\x0f\x38\x74\xfd\x7b\x32\x49\x56\x76\x49\x20\xb8\x2e\x4a\xdd\xfa\x93\x00\xde\x17\xb5\x0b\x84\xb7\x7e\x2f\x31\xcb\x3a\x45\x4d\x37\x5f\x11\x85\x24\x05\xa2\xcc\x8d\x5f\xcb\xcf\x5e\x97\xd0\x2f\x24\xa4\x72\xcf\x4b\xe8\x0d\x09\x49\x9a\xaf\xfc\x4c\x60\x12\x54\xdc\x14\x4d\xbc\x2a\xb3\x3e\x12\x28\x5f\x14\xc0\xaf\x38\x70\xe7\xdc\x77\x25\x24\xea\xbc\x41\xd1\x1c\xa5\x69\x94\x58\x4a\x36\x4d\x7c\x9c\x0e\x16\x99\x04\x27\xe8\x60\xbd\xcf\xa1\x8d\x4b\x3f\x96\xd0\x4f\x39\x74\xe3\x2d\x0e\x6c\x5e\x78\x93\x43\x77\xce\xfd\x48\x42\xaf\x4a\x48\x7c\xba\xb9\x4e\xc8\xfb\x0a\xad\xf8\x02\x87\xee\x9c\xfb\xa9\x84\x7e\xc6\xa1\xdb\xdf\xe5\xc0\xe6\x3a\x99\xa1\x27\xe9\x07\x7f\xe1\xd0\xf5\x1f\x73\x60\xe3\xd2\xcf\x44\x92\x00\x6e\xfd\x48\x00\xaf\xca\x42\xbf\x90\xd0\xeb\xa2\xf8\x4f\x65\xd2\x79\x0e\xdd\xfe\x1e\x07\x36\x2f\xbc\xc5\xa1\x3b\xe7\xc4\x97\x77\xce\xff\x56\x42\xdf\x12\xe5\xd6\xc9\xa2\x38\x45\x29\xfb\x2b\x87\x36\x2e\x9f\xe7\xd0\xf5\x5f\x88\xa4\x4b\x6f\x89\xa4\xd7\x65\xd2\xaf\x45\xd2\xaf\x65\xd2\x6f\x25\xf4\x86\x84\xde\xe1\xd0\xad\x9f\x89\xf2\xa2\xfa\xcd\x0b\x1f\x71\xe8\xce\xf9\x77\x24\xf4\xbc\xc8\x5d\x27\xd2\xc8\x02\x25\xed\x6f\x1c\xda\xb8\xf4\x7b\x0e\x5d\x7f\x4b\x26\xfd\x81\x43\xb7\x7e\x21\xf2\xde\x90\x79\xef\x4b\xe8\x4f\x22\xf3\xb7\x1c\xb8\x21\xbe\xbb\x21\xb2\x6e\x7d\xc4\x81\x3b\xe7\x5f\x14\xd0\xeb\x84\xb0\x85\xaf\x51\x7a\xc8\x70\x3e\x4e\xe9\xf9\x80\x43\x57\x7f\x2e\x80\x5f\x08\xe0\x97\x1c\xb8\xfe\x0e\x07\x36\x2e\x5d\x14\x49\xbf\x97\x49\x97\x45\xd2\x1f\xc4\x77\xaf\x73\xe0\xa6\xa8\xe0\xe6\x6b\x02\xf8\x89\x00\x04\xb6\x8d\x2b\xbf\x15\xdf\xff\x49\x00\xef\x8b\x42\xeb\x1c\xb8\xf5\x63\x01\xfc\x94\x03\x37\xfe\x2c\xbf\x97\x94\x5c\x91\x64\x5e\xf9\x93\x84\xfe\x20\xa1\xf7\x25\xf4\x96\xa4\xfd\x2f\x02\xe5\x5f\x64\xd2\xdf\x25\xf4\x37\x0e\xdd\x7e\x9e\x03\x9b\xeb\x84\x7b\x3e\x41\xbb\xed\xef\x1c\xda\xb8\xf4\x4f\x09\x7d\xc4\xa1\x1b\x7f\xe1\xc0\x9d\x73\xe7\x39\x74\xfb\x05\x99\x44\xa6\xd8\x13\x54\x31\x58\x27\x53\xfc\x49\x5a\xdd\x3f\x38\xb4\x71\xf9\x1b\x12\xfa\x16\x87\xae\xff\x4d\x26\xbd\x28\xa1\xe7\x25\xf4\x12\x87\x36\x2f\xfc\x45\x40\xeb\x44\x68\xf9\x2a\xad\xf8\x22\x87\x36\x2e\x7f\x57\x42\xdf\xe3\xd0\xe6\x3a\x61\x35\x4f\xd1\x72\x97\x38\xb4\x71\xe5\x2f\x1c\xba\x7a\x8e\x03\xd7\xff\x2e\xf3\x2e\x72\xe8\x96\x28\xb4\x71\x59\x54\x71\xfd\xa2\x2c\xa5\xca\xff\x8d\x43\x37\xfe\xca\x81\xdb\x3f\x90\x79\x1f\x71\x68\x73\x9d\xc8\x43\x5f\xa3\x54\x5c\xe6\xd0\xf5\x4b\x1c\xd8\xb8\xfc\x23\x91\x74\x45\x00\x1f\xca\xbc\x57\x25\xf4\x63\x0e\xdd\xf8\x80\x03\xb7\xde\xe2\xc0\xe6\x85\x8f\x25\xf4\x1e\x87\xee\x9c\x7b\x43\xa4\xad\x93\xfa\x6d\x82\xfc\xc3\x6f\x72\x68\xe3\xf2\x2f\x38\x74\xf5\xd7\x02\xf8\x8d\x00\xde\x90\x85\x7e\x27\xa1\xb7\x25\xf4\x9e\x84\xde\x15\x1f\xbc\xc9\x81\x6b\xa2\xfa\x6b\xcf\xc9\x42\x17\x24\xf4\x67\x09\x7d\x20\xa1\xbf\x72\xe8\x96\xc0\x74\x53\x52\xf1\x96\x48\xf9\x95\x2c\x2d\xf0\x5c\x15\xd4\xdc\xbc\x22\x80\x1f\x88\x8a\x04\x09\xb7\x14\x09\xbf\x91\xd0\x1f\x25\xf4\x0f\x01\x5d\x94\x34\xbf\xc0\x81\xcd\x0b\xa2\xfa\xdb\xa2\xe3\xee\xbc\x4e\x09\xa5\xb8\xc9\x5a\xb6\x11\xc1\xf9\xa1\x84\xde\x14\xd0\x9d\xd7\x69\xdb\x7c\x0a\x52\x1c\x3d\x0a\x92\xb1\xb6\x57\x28\x78\x45\x81\xb4\x82\x55\x3a\x44\x64\x3f\x5f\xa2\x43\xf4\x2d\x0e\x6d\x5c\x7c\x4e\x42\x2f\x48\xe8\xdb\x1c\xba\xf1\x0d\x01\x88\x52\xb7\xd7\x39\xb0\xb9\x4e\xe6\x4c\x83\x56\xf6\x1c\x87\xae\x7d\x5b\x00\xdf\x11\xc0\xcb\x02\xf8\x3e\x07\xae\xfe\x8e\x03\x1b\x17\x45\xa1\x1b\x2f\x71\xe0\xd6\x3f\x39\x70\xe7\xf5\x8f\x39\xb4\xf9\xe2\xf3\x02\x5a\x27\xa8\x9b\x14\xe1\xf3\x1c\xda\xb8\xf8\x32\x87\xae\xfd\x50\x26\x7d\x5f\x42\xaf\x48\x68\x5d\x42\xa2\xdc\x35\x91\x79\xe3\x7b\x1c\xb8\xfd\x53\x01\xbc\xc6\x81\x3b\xe7\x2e\x73\xe8\x26\x19\x99\x26\xd5\x9a\x5f\x14\xd0\xe6\x3a\x59\x2b\x88\x12\xf4\x02\x87\xae\xbe\x23\x80\x77\x05\xf0\x7b\x0e\x6c\x5c\xf9\xa6\x80\x2e\x7f\x2c\xd3\x5e\x90\xd0\x73\x32\xf7\x43\x0e\x5d\x5b\x17\x49\x17\x7f\x22\xa1\xd7\x44\xa6\x48\xba\x26\x52\xae\xbe\x27\x6b\xb8\x22\xf2\x7e\xc9\x81\x5b\x02\xcf\xad\x6f\xcb\x42\x97\x24\x6a\x91\x76\xeb\x5d\x89\xe6\x9c\xa8\xe1\xe7\x32\x49\x41\xa2\xd6\xdb\xe2\xc3\xdb\x22\xe5\xa6\xf8\x6e\x73\x9d\xd0\xd7\xa2\x9d\xf3\x22\x87\x36\x2e\xfe\x8a\x43\x37\x5e\xe5\xc0\x9d\x73\xff\xe4\xd0\xe6\x3a\xe9\xfe\x65\xfa\xc1\xb7\x39\x74\xf3\x03\x0e\x5c\x3b\xc7\x81\x8d\x8b\xbf\x11\x49\xbf\x12\x80\x48\xb9\xf9\x3b\x91\xf2\xa6\x48\x79\x9b\x03\xb7\x7f\xcd\x81\x3b\xe7\x45\xe9\x8d\x0f\x2e\x89\xb4\x73\x1f\x73\x68\x73\x9d\xf4\x65\x9b\xd2\xf0\x12\x87\xae\xbd\xcd\x81\x8d\x8b\x6f\x4a\xe8\x77\x1c\xba\xf5\x2b\x99\xa4\x8a\xbd\x2b\xa1\xf7\x04\x74\xf9\xa7\xa2\x36\xf1\xe5\xe6\x85\x77\x24\xf4\x77\x0e\xdd\x16\x75\xdc\x20\x7d\xd7\x5e\xa1\x14\x11\x01\xc9\xa1\x14\x7d\x87\x43\x57\xff\x20\x80\x3f\x0a\xe0\x4f\x1c\xb8\xf6\xae\x00\xde\x13\x80\x2c\xf3\x67\x0e\x6c\x5c\x94\xd0\x15\x51\xe5\xcd\x1f\x71\xe0\x96\x48\xb9\xf5\xb2\x2c\x24\xa0\x6b\xaa\x06\x51\xe9\xed\x77\x44\xde\x05\x0e\x6c\xae\x93\x69\xf2\x75\x4a\xf0\x77\x39\x74\xed\x03\x0e\xdc\x7c\x9f\x03\xb7\xbf\xc3\x81\xcd\x75\xb2\x43\x9c\xa6\xc5\x5f\xe6\xd0\xc6\xc5\x0b\x1c\xba\xf9\xae\x4c\xfa\x2b\x87\xae\xfd\x43\x26\x7d\xc0\xa1\x1b\x3f\xe7\xc0\xe6\x85\xdf\x73\xe8\xce\xb9\x6f\x4a\xe8\x39\x09\xbd\x20\xa0\xf3\x6f\x8a\x2f\xd6\xc9\xc4\x75\x29\xfa\xef\x71\xe8\xfa\x37\x38\x70\xed\xb2\x00\x3e\xe2\xc0\xc6\xc5\x7f\x48\xe8\x92\xc8\xfc\xa7\x4c\xfa\x50\x42\x57\x44\x5d\x1f\x0b\xe0\x5b\x1c\xb8\xf1\x0b\x0e\xdc\x7e\x8f\x03\x9b\x17\x7e\xc3\xa1\x3b\xe7\xbe\x23\xa0\xf3\xdf\x94\x69\xdf\xe6\xd0\x4d\x9a\xc9\x3a\x8d\xc8\x85\x1d\x4a\xf5\xf7\x39\xb4\x71\xf1\x63\x01\x5d\xfa\xa6\x84\x9e\xe3\xd0\xed\x0b\x02\xf8\x33\x07\x36\xd7\xc9\x92\xf2\x68\x1d\x3f\xe0\xd0\xcd\x4b\x1c\xb8\xfe\x3c\x07\xae\x5e\xe0\xc0\xc6\xa5\x17\x44\xde\x4b\x32\xe9\xdb\x22\xe9\x45\x99\xf4\xb2\x84\xbe\xc3\xa1\x1b\xe7\x39\x70\xfb\x2f\xa2\xb8\xc8\xba\x73\xfe\x15\x09\xbd\x2d\x68\x20\xc3\xe0\xb1\x56\x92\x2f\x7d\x4a\xe1\x0f\x39\x74\xf5\x2f\x02\xf8\xab\x00\xfe\xc6\x81\x8d\x2b\xeb\x12\x7a\x45\x42\xaf\x49\xe8\x27\xe2\x83\x0f\x44\xd2\xa5\xef\x73\xe8\xd6\x1f\x65\x92\x40\x74\xfd\xfb\x32\x49\x56\x76\x49\x20\xb8\x2e\x4a\xdd\xfa\xb3\x00\x2e\x88\xda\xff\x2e\x52\xde\x93\x98\x65\x9d\xa2\xa6\x9b\xaf\x8a\x42\x92\x02\x51\xe6\xc6\x6f\xe4\x67\xe7\x24\xf4\x4b\x09\xa9\xdc\x5f\x49\xe8\x4d\x09\x49\x9a\xaf\xfc\x5c\x60\x12\x54\xdc\x14\x4d\xbc\x7a\x51\xa4\x7c\xcc\x81\xdb\x3f\xe6\xc0\x9d\x73\x2f\x4b\x48\x54\x75\x5b\xf4\xd6\x0d\x8a\x86\x72\x06\x0a\x51\x81\xe3\x1c\x25\xdb\xa7\x83\x45\x08\xea\xd2\xc1\xfa\x11\x87\x36\x2e\xfd\x44\x42\xaf\x71\xe8\xc6\xdb\x22\xe9\x83\x0f\x39\x74\xe7\xdc\x2b\x12\x5a\x97\x90\xf8\x74\x73\x9d\xb0\xee\x67\x68\xc5\xaf\x70\xe8\xf6\xcb\x1c\xb8\x73\xee\x35\x09\xfd\x9c\x43\x9b\xeb\xa4\x93\x02\xfa\xc1\xab\x1c\xba\xfe\x13\x0e\x6c\x5c\xfa\xb9\x48\x12\xc0\xad\x57\x04\xb0\x2e\x0b\xfd\x52\x42\xe7\x44\xf1\xd7\x64\xd2\xaf\x38\x74\xfb\xfb\x02\xf8\x90\x03\x77\xce\x89\x0f\xef\x9c\xff\x9d\x84\x9e\xe3\xd0\xe6\x3a\x91\x78\x43\x4a\xd8\x3a\x87\xae\xfe\x8a\x03\xd7\x7f\xc9\x81\x8d\x4b\x6f\x8b\xa4\x73\x32\xe9\x37\x22\xe9\x37\x32\xe9\x77\x12\x7a\x53\x42\xef\x72\xe8\xd6\xcf\x45\x79\x51\xfd\xad\x8f\x39\x70\xe7\xfc\xbb\x12\x7a\x41\x7c\x78\x59\x20\xdf\x5c\x27\x95\x61\x4a\xe2\x8f\x39\xb4\x71\xe9\x3d\x01\x5d\x7e\x8d\x43\xd7\xdf\x96\x99\x7f\xe4\xd0\xad\x5f\x8a\xbc\x37\x65\xde\x05\x09\xfd\x59\x64\xfe\x8e\x03\x37\xc4\x77\xff\xef\x25\x0e\x6c\x5e\xf8\x2d\x87\xee\x9c\xff\xb6\x80\x5e\x27\xd4\x62\x26\x6c\x11\x49\xbd\x47\x49\xfb\x09\x87\xae\x5e\x12\xc0\x65\x01\x5c\xe1\xc0\xf5\x77\x39\xb0\x71\x49\x14\xba\xfe\x9e\x4c\x92\xa5\xfe\x28\xbe\xfb\x27\x07\x6e\xbe\x2e\x80\x9f\x09\xe0\xa7\x02\xf8\x85\xf8\xfe\xca\xef\xc4\xf7\x7f\x16\xc0\x05\x51\xe8\xc7\x1c\xb8\x25\x88\xbc\xf5\x1a\x07\x6e\xbc\x2f\xbf\x97\x94\x5c\x91\x64\x5e\xf9\xb3\x84\xfe\x28\xa1\x0b\x12\x7a\x5b\xd2\xfe\x57\x81\xf2\xaf\x32\xe9\x1f\x12\xfa\x80\x43\xff\xef\x3b\x1c\xd8\x5c\x27\x5f\xae\xd0\x6e\xfb\x29\x87\x36\x2e\x7d\x28\xa1\x8f\x39\xf4\xff\x5e\xe6\xc0\x9d\x73\xbf\x12\x49\xdf\x93\x49\x64\xda\xad\x30\x0d\x82\x0c\xd2\x19\x5a\xdd\x6b\x1c\xda\xb8\xfc\x4d\x09\x3d\xc7\xa1\xeb\x1f\xc8\xa4\x6f\x4b\xe8\x05\x09\xfd\x4c\x42\xdf\xe1\xd0\xe6\x85\xbf\x0a\x68\x9d\xf4\xee\x59\x8a\xe2\x67\x1c\xda\xb8\xfc\xb2\x84\xbe\xcf\xa1\xcd\x75\x22\x7b\xac\xd2\x72\x3f\xe7\xd0\xc6\x95\xbf\x72\xe8\xea\x87\x1c\xb8\xfe\x0f\x99\x77\x89\x43\xb7\x44\xa1\x8d\xcb\x3f\x14\xc5\x3f\x96\xa5\x64\xf9\xcb\xaa\xd6\x0f\x38\x74\xe3\x6f\x1c\xb8\xfd\x43\x99\x27\xbe\xdc\x5c\x27\x63\xf9\x2c\xa5\xe7\x17\x1c\xba\x7e\x99\x03\x1b\x97\x5f\x11\x49\xff\x14\xc0\x47\x32\x6f\x5d\x42\x3f\xe1\xd0\x8d\xbf\x73\xe0\xd6\xdb\x1c\xb8\xfd\x0d\x0e\x6c\x5e\xf8\x03\x87\xee\x9c\x7b\x93\x43\x9f\x90\x0d\xf8\x93\x57\x08\x44\x96\xd3\x27\x3f\x21\x10\xe9\xda\x4f\x5e\x23\x10\x91\xc3\x3e\xf9\x39\x81\x7e\x2f\x21\x32\xb8\x9f\xfc\x8a\x40\x64\xf7\xff\xe4\x6d\x02\xbd\x27\x21\xd2\xbc\x4f\xde\x25\x10\x41\xf6\xc9\x05\x02\x91\x69\xf9\xc9\x07\x04\x22\xd2\xe6\x27\xff\x20\x10\x99\xb4\x9f\x5c\x32\xa0\xf1\xbf\xdf\x15\xd0\x27\x3f\x92\x69\x14\xc7\xc7\x04\x22\x83\xf6\xbf\x2f\x10\xe8\x65\x01\x7d\xf2\xbe\x4c\x23\x94\xfe\xef\x77\x08\x44\xa4\xa4\xff\x7d\xce\x18\x4c\xa4\x3d\xc9\x6f\x18\x25\x16\xad\xd1\x44\xa0\x14\x20\xea\xe4\x6c\x4e\xd5\xfe\xe7\xe9\x5e\xb9\x5c\x2e\x17\xc9\x9f\x3d\x87\xeb\x53\xcb\x30\xc5\xab\x36\xac\xa1\x7a\xbf\x8f\xd2\x9c\x32\x03\x14\xfa\xee\x0a\x0a\xa6\x5a\xc8\xc6\xbd\x00\x85\x06\xac\xd5\x75\x07\xd3\xec\x2f\xc4\x6d\xd9\xc4\x03\xd2\xb2\x84\x00\xc2\x29\xea\x3e\xed\x34\x86\x3f\x1e\xbd\x65\xf7\xaa\xcc\x0f\xe4\x1d\x8d\x35\xf5\xee\x78\x35\x5f\x86\xe9\xee\xc4\x58\x78\x58\x0c\x06\x20\xbb\xb9\x02\xf8\xcf\x6b\xb1\x6c\xcc\x54\xc3\xf7\xb0\xed\x78\x28\x28\x36\xd1\x52\x6f\xb9\x68\x37\xed\x2e\xde\x6a\x97\x4c\x89\xb0\xe2\x63\xbf\x23\xae\xfc\x3e\x71\x89\x3a\x66\x9b\x1e\x3a\x93\x3b\x89\x96\x0f\x9f\xed\x9a\xc6\xff\x4c\xcd\x1b\x93\xc1\xa4\x31\x65\x96\x26\xc1\x94\x31\x89\x26\x8d\x2f\x70\x1f\x4a\xaf\xe7\xba\x79\xcb\x52\x7e\xbb\xb5\x4a\xfd\x6e\xbc\xf8\x84\xb3\x36\xf3\x73\x3a\x28\x7a\xe1\x10\xe9\x84\x03\xac\x0f\x4a\xe8\x2c\x46\x5e\xd3\x5c\x5b\x64\x6e\xfd\x27\x69\xb8\xee\x60\xb5\x4a\xaf\x6e\x38\x9e\x13\x19\x07\xea\xb0\xbd\x18\xf6\xba\x28\x28\xd9\xdd\xae\xbb\x6a\x92\x14\x28\x1d\xc1\x00\x64\x25\xa2\x75\xf5\xfb\x66\x5a\xb2\x45\x7a\x03\x97\x8e\x45\x12\xc1\x00\x36\x6c\xef\xa0\x8d\x6d\xd7\x5f\x3e\xec\xe1\xc0\x41\xe1\x43\xab\x0b\xab\x5d\x54\x4d\x72\x08\xa3\xe3\x37\x91\x6b\x58\x96\x85\xfa\xfd\x91\xb4\x91\x9a\x47\x54\x2b\x1c\xd3\xb0\x95\x46\x70\x49\xdd\x7c\x08\x4d\x00\x3d\xe5\xed\x06\x1d\xf6\x81\x47\xb2\xba\x76\x03\xf1\xa2\x27\x02\xd4\x72\xce\x42\xdf\x2a\x43\xdb\xc2\xf2\xc9\xe3\xfd\xb6\xf2\x55\x0e\x2d\xcc\x5d\x92\x8b\x95\xbc\x65\x85\xd2\xab\x0a\x01\xe1\xb9\x4b\x26\x53\x08\x63\x08\xba\x7e\xf3\x98\x86\xa3\xdf\x77\xc0\x44\xaf\xdf\x37\x7b\x56\x58\x0a\xbb\xae\x83\x4d\x34\x69\x84\x53\x06\x28\x75\xfd\xae\x09\x00\xf4\x4a\x76\xb3\xc9\x5f\xd8\xee\x01\xf9\x96\xb4\xb7\xc5\xb5\x34\x9a\x7d\xf2\xab\x09\xa4\x7c\xb1\x65\x37\xb0\x1f\xac\x66\x15\xea\xd8\xa7\x51\xb1\xe9\xd0\xfe\xb7\x83\xd5\xd8\xe2\x22\xeb\x67\xbb\xf7\x15\xa2\xb3\x8b\xdf\xbf\x83\xea\xb6\x05\x0b\x93\xfe\xf5\xb0\x84\xd8\xa4\x28\x14\xcc\x44\x9a\x56\x6a\x11\xd9\xa7\x17\x43\x84\x3c\xc0\x9f\x83\x4e\x60\xd0\x56\x8b\xe6\x62\x89\xc1\x9a\x99\xf2\x06\xba\x7a\x75\xdb\x6f\xe5\x30\x00\xa9\x8f\x78\x1f\xb4\x3d\xcf\xc7\xb9\x86\xed\xba\x39\x3b\x47\xfb\x35\x67\x87\x39\x5b\xfa\xb5\x1a\x60\x00\xd8\x64\x47\x62\x01\x0a\xca\x71\xbf\x9f\x68\xce\x40\x7a\x3b\xab\x67\xd4\xb5\x99\x9d\xf4\xa5\xe5\xef\xb2\x97\x4e\xa3\xd5\xd0\x8c\xd4\x4f\xfd\xfc\x54\x2d\x6d\x3b\x4c\xbb\x1d\x43\x5a\x99\x8b\x7c\x17\xfd\x6c\x19\xa5\x5e\xaa\xe1\x84\x9b\x88\x60\x19\x70\x97\x52\xf1\x38\x3e\x27\x49\x70\x2f\x3e\xaf\x8e\xe3\x36\x0a\xaa\x71\xaf\x4b\x7e\xd1\xa4\xe5\x78\x7c\xc9\x90\x76\x9a\x88\xb2\x5a\xc5\xa2\x19\x7d\x67\x71\x60\x37\xf0\x21\xc6\x38\x0f\xd3\x29\x6e\x06\x90\x95\x95\xb3\xc6\xd3\x06\x8a\x0f\x52\xee\xf0\xd9\x2e\x75\xdd\xcc\x61\x3f\x47\x30\x55\x73\x5f\x34\x26\x51\xa9\xd5\x73\x5d\x82\x6e\xd2\xf8\x62\xee\x8c\x83\xdb\x8e\x47\xd2\x03\xf2\x73\xa9\x87\x73\xcb\x3e\xce\x7d\x51\xde\x5d\xfa\x62\x29\x77\xc8\x69\xe6\x56\xfd\x5e\xae\xe5\x07\xcb\x88\x3e\xd8\xfe\x45\xb6\xd0\x72\x9c\x99\xc7\xab\x99\x37\xa4\xef\x27\x6d\x42\xd8\xf6\x7b\x6e\xf3\xc9\xc0\xee\x1e\x65\x31\xb1\x8f\xb0\x25\x68\x7a\x90\xbe\x5e\xef\x59\x66\x19\xca\x8d\x14\x98\x1e\x61\x0d\x83\x01\xec\xda\x41\xc8\x2e\x75\xc5\x5e\xf6\xcf\x93\x16\xa3\x12\xcd\x6f\x92\x02\xf2\x69\x7f\x7e\x8d\x95\xaf\xa9\x40\x00\x9e\x00\xa8\x47\x2b\x65\x45\xc6\x83\xcc\x13\x7a\xda\xb2\x2c\xf1\xf2\xbb\xb8\x60\xe2\xd4\xca\x75\x51\xac\xaa\x8a\xf9\xa2\x18\xf5\x7d\xad\x55\xea\xfc\xf7\xbc\x19\x58\x7e\xad\x5c\x87\x9e\x65\x3c\x68\x4c\x3a\xb5\x4a\x1d\x54\x4d\x4c\x8b\x40\x99\x45\x93\x27\xe8\x05\x04\x7e\x21\x84\xd4\xa0\x61\xc1\x14\x2f\x0c\x2c\x9b\x7d\x60\x93\x2d\xd6\x10\x77\xd7\xc8\x96\x12\x14\x0a\x04\x35\x2e\xb9\x76\xc8\x1c\xdb\x8f\xb7\x4c\x43\xbb\xd3\x66\xc0\x32\xeb\xd0\x48\xe2\xa4\x07\xb1\x85\x4b\xa1\xeb\x34\x90\x59\xa9\x08\xef\xe1\xc0\x32\xb5\xee\xa8\x1a\x00\x28\x42\xb9\x13\xab\x07\x75\x7f\x69\xba\x9e\x0d\xc9\xef\xe5\x28\xaf\xa9\x81\x20\x82\x92\x98\x5f\x55\x04\xbb\x74\x23\xa8\x62\xbe\x15\xb2\x9f\xe6\x1a\x59\x62\xd5\x60\x00\x20\x03\xe4\x17\x4f\x3a\xb8\xed\xf7\xa8\x7b\x6e\x35\x84\x04\x51\xd5\x83\x81\xef\xe3\x6a\x0f\xf2\xe5\x74\x0c\xe1\xb6\xcf\x50\x19\x3c\xc9\x98\x64\x24\x9e\xc2\x81\xe3\x2d\x97\xd8\xae\xd0\x5a\x35\x03\x40\xe6\x90\xdb\x0b\x68\x10\xc3\x26\xa9\x35\x64\x32\x44\x9a\x5c\x41\xf8\xfe\x82\xcf\xea\x48\xbf\x90\x35\x64\x3b\x9d\x24\xe3\x8e\x27\x8d\xaa\x31\x80\x59\xb3\x3d\x29\x3c\xe6\x2b\x83\x61\xe2\x8c\xc9\x39\x27\x43\xf4\x90\x1d\xa2\xe6\x49\xbe\x57\x59\xf9\xf2\x96\xc5\x1a\x4f\x30\x62\xcf\x0f\x3a\xb4\x4b\x0e\xda\x8d\x36\x22\x6b\x2f\x50\x6b\x8f\x17\x8a\x75\x9b\x95\x96\xd8\xef\x8f\xf3\x29\xd1\xb5\x5a\xce\xb2\xa0\x2c\x3d\x97\xcc\x57\xf2\xd7\x10\x34\x36\x51\x37\x40\x0d\x1b\xa3\xe6\x89\xa8\x50\x61\x91\x4e\x93\x2d\x48\x11\xc0\x72\x69\x8d\xa4\x5a\x9b\x99\x91\x63\xc5\xd2\x89\x98\x33\x10\xf3\x2d\xc1\xb9\xb9\x1c\x26\x79\x13\xbd\x4a\x66\xe1\x52\x62\x7e\x4a\xa6\xc3\x57\x89\x21\xf7\x46\xcb\x22\xf3\x9e\x6c\xaf\x6d\x27\xac\x05\x75\xba\x62\x39\x6c\x62\xc2\xfc\x7a\xae\x6b\x59\x9e\x4c\x2f\xe9\x7b\x09\x2b\x31\x80\x8b\xe9\xbd\x20\x7c\xfa\x35\xc6\x22\x55\x15\x7e\x7d\xa2\x32\x6f\xb4\x91\xdb\x45\x01\xe1\x29\xb8\x56\xae\xcf\x93\x7f\xc8\xec\x9d\xc4\x84\x27\x49\x9d\x78\x71\x6a\x19\x1a\x45\x03\x54\x65\x7e\x64\xa5\x35\xed\xb0\x8d\x02\xd2\x63\xd1\xcf\x9e\x2e\x91\xef\xa6\x0c\x00\xaa\x48\x5b\x81\x99\x83\x15\x9b\x13\xda\x60\x25\x73\x2c\x22\x42\x1a\x60\x00\xbb\x7e\x93\x2e\x89\x47\x7d\xff\x74\xaf\x4b\x38\x07\x9b\x20\xb1\xb5\xcb\x37\xdb\x52\x0a\x8b\x11\xe3\xa2\x73\x58\x5c\x22\x43\x43\x24\x2e\x2b\x50\x0d\xfa\x1f\xc5\x4d\x9f\x9e\x9a\x82\x86\x01\x00\x44\x93\xc6\x14\x53\x96\x8c\x49\xf6\x95\xa2\x49\x6d\xe9\x59\xd3\x67\x88\xd0\x3c\x84\xcd\x44\x76\xd5\xac\x0e\x30\x31\x44\x5a\xff\xc8\x20\x0a\xe1\x51\xef\x54\x6f\xa9\xe9\x24\x85\x91\xed\xd1\xe4\xb4\x4c\x3c\x69\x19\xda\xd5\x6a\x43\xbf\x53\x4e\x77\x6a\xd2\x3d\xfd\xbe\xde\x8f\x53\x25\x8c\x42\x6c\xa2\xb4\x81\x91\x37\x49\xc6\x69\x27\x5f\x1a\x87\xbd\x65\xc7\x4b\x5f\x09\x29\x18\x26\x8d\x29\x44\x3f\x30\x28\xf9\x69\x8a\x55\xdb\x0e\xc9\x4a\x8b\x30\x95\x54\x51\x0c\x2b\x22\x4e\xfa\x3d\x8c\x8e\xd9\xdd\x71\xc9\x20\x8c\x63\xd2\x98\x0a\xc8\x67\xe1\x70\x52\x02\x30\x8e\x54\x28\xd7\x3a\x11\x9f\x38\x51\x0b\x7c\x7a\x67\x0d\x7b\x84\xb7\x20\x55\x03\xe5\x41\xb8\x50\x30\x85\xb2\xbe\x70\xf8\xd8\x89\x47\x0f\x2c\x1c\x3e\x55\x4b\x6d\x4c\x1d\x40\x3c\x80\x1d\xdb\xf1\x32\xa6\xbf\xd3\x32\x0d\x92\xcd\xa6\x44\xda\xb8\x6b\x5a\x00\xdb\x55\xa7\x88\xbc\xca\xd6\x96\xb8\x10\x94\x5e\x77\xda\x97\x51\x0e\x62\xb2\x8a\x00\xaf\x34\x05\xfd\x40\x88\x2b\x23\xd7\x47\xe6\x9a\x94\x45\x6a\x0c\xdb\xa4\xc1\x0a\x19\x75\xda\x8f\x23\xca\xb0\x0e\x94\x0d\x64\x13\xfe\x84\x8d\x31\x0a\xbc\xb0\x1a\xbb\xc9\x9e\x90\x26\x6a\x91\xd5\xa2\xfa\x09\x46\xd2\x93\xec\x80\x0b\x19\x91\x71\x63\x69\x89\x2e\xaf\x0f\x40\x29\x40\x76\xf3\xb8\xe7\xae\x9a\x00\x46\xb5\x97\x18\xe3\x15\x76\x0b\x75\xa5\xde\x34\xb2\xda\x46\xef\xd4\x4b\x09\xbd\x0c\x7d\x2b\x10\x86\x09\x67\xbf\xaf\xae\x7e\xdb\x56\x50\x73\xea\x25\xa2\x76\x0a\xe5\x92\x2c\x1a\xbb\x50\x30\x6d\x86\x86\xbd\xb1\xad\xa9\x54\x36\x44\x00\x40\xbb\x50\xc8\x5c\x59\x36\x93\x98\x6d\x00\x85\x98\xba\xe8\xfa\xcb\x8c\x40\xa2\xa1\x40\x1b\x40\x65\xf6\x1a\x0c\x60\x1c\x47\xea\x8e\x13\xd9\x28\x89\x36\x15\x84\x0d\x3f\x10\x2a\x1e\xca\x53\x61\x3e\x93\x26\xa2\x16\x0d\x63\x05\xa9\x4a\xf9\x81\xce\x92\xb3\xdc\xf3\x7b\x61\x8e\x7d\x94\xa3\x33\x8d\x29\x7d\x44\xb9\xb3\xbd\xa6\xd0\xd0\x98\x4e\x33\x04\xbd\x52\xa8\x46\x30\x25\xa1\x18\x4b\xdb\x83\x92\x02\xa6\x8a\x66\xed\x7f\x9e\x9e\xaa\x7f\x09\x7c\x61\x0a\x1a\x53\x8b\x5f\xa8\xc4\xf4\xc2\xb4\x2a\x3d\x30\x2f\xef\x4e\x43\x97\x0e\x02\x7b\x90\x91\xdd\xaa\x1e\x43\x1a\x8b\xa0\x88\x29\xd8\x18\xe6\xcb\x60\x00\xd5\x00\x57\xe3\xc6\x1d\xa7\xc5\x2f\x68\x1e\x7e\xec\x89\xd2\xa3\xc7\x1f\x5e\x3c\x76\xfc\xd0\xe3\x8f\x1e\x5e\x3c\x79\xf8\xd4\xf1\x47\x9f\x38\x7c\xb2\xdf\xc7\x25\xa2\x91\xd0\x3c\x91\x28\x58\xb3\x52\x32\xe7\x8d\xda\xe6\xeb\xeb\x75\xa3\x6a\xd4\x72\x75\x63\xc2\xd3\x24\x10\x21\x85\xed\x2e\xcf\x1b\x25\xa3\x4a\x06\xf1\x40\x10\xd8\xab\xe6\xee\x72\x31\x51\x0a\x94\xbe\xee\x3b\x9e\x69\x94\x0c\x00\x83\x7e\xdf\xe4\xab\x29\xd1\x31\x54\x28\x6c\xf8\x5e\xe8\xbb\xa8\x50\xe0\x40\xc9\xf1\x5a\x7e\xf4\x97\xe9\x40\x85\x03\x7a\x90\xea\x48\xa7\x3d\xff\x8c\x77\xc4\x0f\xb6\x6b\x7b\x8c\xab\x03\x6c\x29\xe3\x8c\xa5\x8c\x6b\x4e\x1d\x72\xcd\x02\x07\xb6\x17\x92\x4d\x6a\xc1\x97\x26\xe1\x23\x3d\xd7\xf5\xe8\x90\x42\x1b\x4c\x84\x64\x91\xd6\xc2\xba\x45\x06\x50\x2e\x46\x38\xec\xc3\x74\x49\x30\xa1\x87\xa2\x01\x8d\xe8\x41\xf6\x05\xe8\x58\x74\x77\xa0\x54\x0b\xa3\xa7\x07\xa8\xa1\x54\xfc\x74\xe8\xd2\xa1\x16\x80\x42\xc1\x66\xda\x38\x6d\x5f\x51\x58\x11\x0a\x05\x29\x69\x7b\x1c\x98\x94\x16\x06\xb1\xae\x98\xb4\xcd\x75\x72\x7f\x52\x14\x24\x4d\x65\xaa\x77\x90\xba\x87\xd1\xed\x4b\xcc\x70\x66\x0b\x10\x84\x85\x40\x43\x2c\xae\x4a\xcf\x47\x11\x89\x64\x20\x97\x58\xaa\x20\x91\xb2\xcc\xa4\xe5\x8b\x05\x50\xa2\xff\xe4\xcb\x6a\xb1\x11\xdc\x7c\xe8\xd9\x56\x27\x27\x02\xc4\x83\x01\x98\x70\x4a\x01\xf2\xbb\x88\x69\xc4\xe6\x5a\x8a\x4e\x1b\x3f\x21\x70\xb2\x4d\xc0\xa9\xe6\xdc\x4f\x3f\xc6\xce\x5a\x23\x40\x11\xc1\x4a\xda\x0a\x52\x74\x3d\xc4\x0d\x83\xf3\x02\x30\x31\x51\x8f\x06\x43\x0e\x12\xd3\x0d\xd2\x9f\x5e\x43\xd9\xd8\x23\x8b\xd7\xc5\x5a\x4b\x4f\x82\x80\x0a\x4f\xb1\x48\x48\xb3\xe8\x7c\x68\x22\x17\x61\x24\xd2\x20\x4a\x6d\x5a\xd7\xf7\x42\x67\x05\x4d\x31\x0d\x34\x9c\xea\xa0\xa6\x63\xdf\xa3\x46\x71\x6b\x60\xd2\x7a\x9c\xb0\x7b\x53\x0e\x5c\x72\x42\xc6\x89\x63\xfb\xdf\x29\x1a\xe4\xae\xe4\x60\x14\xd8\xd8\x0f\x72\x8e\x30\x3f\x6b\x05\xd3\x78\x4d\xad\x0e\x3d\x2b\x4f\xf6\x83\x7c\x05\xfa\xc2\x1a\x80\x83\x55\x15\x8b\x03\x86\x16\xaa\xc5\xea\xaf\x9b\x60\x2e\x6f\x7a\x96\x69\x5b\x61\xc9\x43\x67\xb1\x09\x40\xa9\xe9\x7b\x88\x05\xfc\xa0\xf7\xfc\xed\x12\x6d\x25\x80\x79\xdc\xef\x0b\x61\x29\x6f\x59\x18\xcc\x11\x94\x60\x6e\xd0\xa0\xa7\x7b\x3d\xb0\xe6\x10\x12\x7c\xab\x37\x68\x39\x9e\xed\xba\xab\x6b\x84\x80\xbc\x57\x28\x10\xd1\x9f\xd0\xae\x20\x13\xc8\x42\x0e\xe1\x74\x4c\xcc\xf0\xe5\xc1\x4c\x30\xa0\xcd\x9b\x48\x15\x3f\xf8\x23\xc9\x39\x22\xd3\x75\xba\xd4\x4e\xdc\x44\x21\x0e\x7a\x0d\xdc\x0b\x50\xce\xf3\xbd\x22\x6d\xe1\x92\xab\x8e\x18\x0c\x30\x18\x98\x7a\xb4\x2d\x1e\x7f\x90\xce\x0d\x69\x49\x8f\xdb\xc8\xd8\xac\x24\xac\x71\x62\xcc\xd3\x3f\x26\x7d\xd2\x99\x06\x4a\xbe\xc7\xe1\x83\x6d\xdb\x5b\x46\x4d\x43\x3f\xa4\x27\x02\x0c\x97\xb1\x4d\x30\x00\x03\x48\x4b\x72\xe1\xdb\xf1\xe8\xfc\x0b\x51\xb0\x42\xb8\x29\xd9\x71\x69\xc9\x34\xf3\xbe\x89\x60\x05\xd4\xca\xf5\x89\x48\x20\x2a\x65\x46\xa5\xf5\x96\x8c\xc9\x80\x86\x78\x02\x13\x99\x0b\x85\xbf\xee\xec\x3c\x4b\x56\x8b\x4a\xbf\xab\x28\x4f\xa4\x75\xec\xed\x63\x1e\x73\x83\xef\xfa\xa6\xb1\x14\x20\xfb\x74\xd7\x77\xa8\xfa\xbe\xc6\xc6\x07\x3b\x84\xbb\xe5\x2b\x03\x70\x57\xf1\x5a\x24\xdd\x34\x64\x8b\x18\xe1\x35\x4f\x8b\xd2\xa6\x9a\x53\x8c\x10\xa0\xbe\xad\xe2\xa1\x5c\x84\xf0\x1d\x16\x61\xac\x78\x2f\x19\x49\x3a\x77\xe4\xbb\x00\x7f\x4f\x8e\x74\xd4\x50\x5a\xf9\xb4\x49\x61\x79\x70\x8c\x86\xed\xa8\xf7\xc3\x04\x9b\xa4\x29\xdb\x14\xe3\x45\x85\x02\x8f\xec\x19\xcf\x90\x4c\x6a\x3e\xcd\x98\xc7\x77\xba\x41\xaa\x6a\x5e\x28\x0c\x41\x87\x4a\x44\x4a\xa5\xcc\xc2\x0f\x2c\xcb\x92\xe9\x79\x01\xab\xc3\xb9\x79\x41\x5b\x55\x22\x4c\x70\x90\x53\xac\xaf\x05\x0b\xe1\x22\xfd\x0a\xf2\x30\x6a\xc2\xb5\xc5\x8e\xdf\x38\x8d\x9a\x7c\x55\x63\xfa\x9a\xfa\x32\xe4\xa9\x0f\xc9\x89\x58\x35\x9a\x28\x3c\x8d\xfd\xae\x01\xc5\x18\x8f\x52\xc2\x73\xe2\xfc\x5d\xb1\x1d\x5e\xad\x01\xe6\x6b\x89\x44\x85\xcb\x00\xf5\x6a\xad\x0e\x06\x00\xba\x64\x7d\x7a\x28\x08\xab\x6b\x03\x8e\x97\xc3\xcf\xb8\x3a\x17\x74\x5a\xa6\xc1\xa2\xd1\x18\x96\x65\x99\x86\x0a\x37\x28\x7b\xf7\x8c\xe3\x35\xfd\x33\xf3\x5a\x56\x35\x30\x59\x22\x00\x85\x02\x83\x98\x1f\xc8\x31\x32\xc9\xc4\x66\x96\xc8\x98\x48\x78\xbb\x10\xf1\x7e\x1b\x6c\x59\xc5\xb9\x39\x7e\xc6\x43\x01\xcd\x06\x91\x18\xb4\xd1\x2c\xae\xf1\x44\xf8\x54\x95\x1a\x93\xc0\x04\x2e\x14\x22\xa7\xc1\xa0\xd4\xf2\x83\xc3\x76\xa3\xad\x86\x47\x1e\xa9\x1a\x4e\x98\x7d\x5c\xc4\x89\x4a\xac\x22\x0f\xc6\xa3\x08\xf2\xe9\x50\xaa\xd5\x23\x9b\x87\xae\x79\xb2\x2d\x87\x95\x33\x54\x60\x9a\x00\x3c\x50\xac\x0c\x00\x80\x19\xb8\x82\x38\x2e\x6f\x18\x02\x0f\x90\xaa\x10\x77\xe5\x09\x20\xae\x05\x75\xba\x6b\xd1\x56\x51\xcd\x2c\x3e\x65\xef\x82\xf6\x8e\xdd\x35\xd3\x3c\x5d\xc8\xcc\x28\x66\x9e\x09\x20\x30\x10\xda\x6b\xce\x20\x13\x5b\x3c\x91\x7d\x4c\xdb\x7b\x13\x47\x5f\xbc\x4c\x7c\x87\x5e\x23\x8d\x12\x15\xd0\x75\xac\x7f\xc9\x28\x08\x7a\x5e\xc9\xf7\x1a\x88\xcd\x35\x36\x05\x53\x50\x02\xbe\xaa\x32\xd5\x43\x1a\xd2\x29\x65\xfd\x46\x0c\xb0\xac\x8b\x9e\x71\x0d\x60\x62\xa2\xe9\x46\x74\x00\x96\xeb\x84\x87\x88\xfc\xe3\xaf\x92\x8f\x89\xee\x5e\x0a\x55\xbf\x06\x61\x89\x28\x9a\x44\x3d\x2a\xf1\x9e\x9e\x0f\xe2\x1d\xaf\xbc\x63\x10\xa8\x26\x72\x03\xd4\xf1\x57\x90\x2c\x00\x83\x52\xa4\x83\x4c\x00\x06\x13\x8a\x56\xc9\x56\x0c\x50\x43\x75\xcb\x61\xce\x37\x8f\xf2\xd4\x42\x21\xf2\x33\x32\xdc\xb2\x77\x4d\xe6\x80\x05\xc9\xc8\x42\x87\x4c\xbe\x34\x47\x1d\xc2\x4e\x8b\x67\x6c\xb2\x51\x84\x53\xf4\xbd\x77\xfe\x2b\x6d\xc7\xd3\x0b\xa7\x26\x4e\x79\xbe\xdf\xd5\x53\xee\x81\x43\x4e\x9a\x86\x27\xc3\x22\x12\x29\x57\x5a\x35\xc8\xa4\x1e\xde\xe0\x4c\x5f\xa4\x48\x29\xf6\xb7\xd8\xb1\x3d\x9b\xc6\xf8\x4e\x2b\xa3\xb7\x39\xb5\x40\xb4\x6f\xb3\xd0\x14\x5b\x7e\x50\xec\x06\x7e\xc7\xa1\x0f\xf5\x45\xfb\x8e\x45\x59\xbb\x47\x8e\x94\x42\xd4\x1c\xdb\x93\x52\x7c\x30\x18\x56\x6b\xcf\xdb\x72\xbd\xea\x93\xa1\x35\x2f\x23\xfc\xa4\x98\x89\x63\xd6\xac\x3e\x19\x5a\xf3\x62\x80\x42\x34\xbe\x47\x29\x2b\x3e\x8a\xd6\x13\xc8\x6b\x3a\xde\x32\xc3\x7f\x0a\xdb\x18\x6d\x85\xec\xe4\xd7\x43\xf1\xb5\xed\x30\xf2\xc5\xf8\x5d\x94\xf8\x72\x28\x9e\x05\x14\xf2\x1e\x1d\x13\x41\xa0\xf9\xdf\x66\x57\x4b\x97\xca\x96\xea\xf5\xc6\xaa\x97\x2c\xb0\x23\x7e\x70\x82\x2f\xaf\xf1\xaa\x76\x86\xb9\x0c\x0f\xe7\x7d\x5b\xd7\xf9\xa2\x47\x31\xe5\xb9\x60\xbf\xb4\xc7\x06\xc2\x16\xeb\x59\x44\x6e\x98\xf0\x4a\x8a\x7a\x4b\xff\xd1\xef\xe7\x2b\xd0\xe3\xae\x1a\x3d\x96\x9f\x2f\x8b\x97\x3a\x1d\x2f\x47\x3d\x15\x4a\x67\x02\x07\xf3\xbc\xec\x2e\xf3\x88\x90\x06\xc9\xd6\xb1\x33\x4f\x16\x04\x9f\x0f\xef\x46\xa2\xd4\x5a\x78\x40\x29\x22\x4c\x55\xec\x1e\x81\x85\xa0\xe9\x59\xb5\xb5\xd3\x68\xb5\x6a\x2c\xa1\x65\xc7\x3b\x10\xae\x7a\x0d\x03\xb2\x86\xa5\x0b\x60\x83\x01\x64\x1f\x20\xaf\x99\x55\x5c\x96\x21\x53\xe3\x71\x0f\x3b\x6e\x66\x9d\xf9\xb2\x2c\x4c\x9d\xcd\x8f\x7a\x2d\x3f\xb3\x70\xad\x3e\x18\xd4\x41\xa1\x80\xcd\x40\xa9\x5c\xd0\x03\xd0\xa1\x69\xd0\x01\xcc\xf3\x51\x8d\x46\x30\x7c\x12\x67\xcc\xdf\x71\xf6\xc5\xb1\x1d\xdb\x53\x0c\x7b\xe9\x66\x3d\xed\x48\xa3\x0c\x03\x4b\x1d\xbe\xc8\x03\x97\x39\xbc\x5f\xc0\x73\x78\x72\x12\x04\x35\x5c\xb7\x50\x0d\x4b\x43\x4e\x40\xc3\x47\xf7\xfb\x31\x54\xc3\x8c\x84\xfd\xbe\x51\x63\xaa\x5a\xee\x80\x50\x81\xea\x44\x6b\xe3\x6b\x40\xf9\x9d\x62\x5f\xa8\x25\xb6\xeb\x6a\xe6\x45\xd6\x90\x56\xe0\x77\x88\x08\x12\xc5\x4f\x24\xe7\xf1\xec\x71\x61\x37\x40\x76\x33\xd3\x14\x67\x82\x68\x48\xec\x7f\x73\xd6\xe1\x58\xe5\x09\x2d\x3a\xb3\xe2\xcf\x93\x93\x03\x76\x44\x95\xc1\x5a\x88\xcc\xf9\x69\x32\x17\x27\x3c\xc9\xe5\x17\xd4\xb4\xf2\x15\x9e\x88\x51\x27\xa4\x13\xf8\x98\xdd\xd5\x99\x10\x87\xd1\x59\xbc\xe0\x9f\x46\x9e\x15\xf4\xfb\x3e\x6d\x8f\x03\x6d\x18\xca\x28\xf5\x84\x31\xd9\x82\x31\x29\x91\x2a\xc1\x15\x12\x14\xf4\xfb\x26\x75\xd7\x15\xdf\x30\x62\x53\x49\x2d\x03\xc9\x78\x86\xb2\x3e\x66\x39\x48\x84\xf9\x2d\xa7\x86\xf9\x2d\xd7\xe7\xf5\x1f\xd5\x68\x73\x4d\x00\x71\xb2\xa6\x8a\xf6\x49\xa5\xce\x0f\xbf\xe4\xd1\xb6\x68\x89\xf0\x60\xa4\x5d\x2b\x0e\xc2\x13\x6e\xd5\xaa\x25\x74\x10\x51\x33\xd7\xf2\x83\x9c\xba\x53\x06\x0d\xea\x46\xed\xe0\x9c\x13\xe6\x6c\x97\xac\xb8\xd5\x5c\x97\x89\x40\x25\x03\x08\xdb\x9b\xac\x31\x72\x5e\xcd\x50\x87\x34\xba\xfe\xda\x32\xc2\xb9\x10\xdb\x8d\xd3\xba\xb8\x43\x13\x06\xd0\xb5\x97\x90\x5b\xc5\x64\x6e\x8f\xde\x2d\xb8\xd7\xf4\x18\x8d\x13\x55\x8c\xd1\x34\x3a\x8b\xd9\xd3\x91\x6e\xb4\x81\x1a\x1e\x76\x24\x44\xd5\xa6\xb1\xb7\x2b\x76\xae\xa9\xf5\x86\xf3\x2c\xda\xc2\x06\x96\x63\x26\x23\xfe\x31\x2d\x14\x12\x5d\x98\xee\x6a\x9e\xe9\x68\xbb\x9a\x0d\x60\x48\xd3\x60\x98\xd8\xd5\xec\x11\xbb\xda\x6a\x17\x29\x6d\x6f\xf8\x3d\xbf\xe1\x3a\xd9\xa8\x3d\x31\x5b\xf7\xbd\x57\x4f\x67\xb0\x09\x8a\x26\xca\x6a\xcb\x9b\x60\x17\xa3\x84\x1a\x6c\x70\xe2\x05\x5d\x23\xe4\xd8\xb8\xba\x7b\xaf\x6c\xf4\x62\x21\x47\x34\x79\xcc\x96\x13\xe5\x8e\xd4\x63\x10\x69\x0a\x61\xac\xa4\x98\xae\xb4\x30\x2d\xaa\x34\xbc\x94\x63\x44\x64\x61\x39\xc1\xe0\x7d\xd1\x63\x5b\xa2\x07\x65\x8b\x88\x74\x39\x53\x7f\xf5\xee\xc6\x25\xfa\x26\x92\x29\x46\x24\xa9\xbc\xd2\x47\x00\x12\xaa\xa6\xe5\x71\x93\x32\xdf\x26\x75\x99\x51\xec\x3a\x6b\x9c\x73\x55\xcb\x90\x4f\xd7\xea\xda\x60\xa0\x0c\xde\x09\x5b\x32\xdf\xed\x71\x49\x72\x32\x13\x80\x35\x54\xe2\xf5\x4c\x4e\x4e\x08\x9f\x63\xc9\xab\x28\x63\xe1\xb5\xd7\x30\x9d\x5c\x75\xb2\x2f\x13\xc1\x9c\x30\x1e\x4d\xea\xd2\xb8\x18\x10\x55\x3e\x50\x1e\x70\x0f\x4c\x14\xe2\x42\x41\xc1\x72\xc2\xb3\xf6\x26\x8f\x23\xf2\x1e\x3d\xc4\x4c\x2e\xce\xb3\xb8\xd8\x41\x76\xd8\x0b\x50\xa0\xce\xa5\x22\xc9\x9f\xc9\xc3\x73\xb1\x63\x9b\xc4\xc9\xef\x98\xc7\xbd\x0d\xdb\x5b\xb1\x43\xab\xe9\x37\x68\x32\xf7\x5c\x38\xec\xd2\x37\xb0\x4c\x83\x65\x8b\xbb\x06\x0d\x7c\xd6\xd2\xbe\x22\xf3\xeb\xa0\xef\x91\xbe\x30\x8d\xe9\xa6\x01\x06\xf0\x8c\xd3\xc4\xed\x14\x9f\x98\xa4\x98\x91\x2a\xb0\x54\xea\x51\xe9\x83\x3e\x1e\xa3\xfc\x66\x4c\x41\x45\xa9\xe5\x7b\xd8\xc2\x8a\xac\x12\x1f\x8b\x05\x42\x0b\x02\x25\x4a\xc7\x00\xba\x8e\x87\xc2\x54\xeb\x75\x82\xa0\xe9\x54\x82\xa6\x75\x82\xa6\x05\x41\x09\x4a\x02\xf5\x2a\x82\x27\x2f\x14\x4c\x3d\xed\x4d\x01\xe8\x58\xd2\x61\x89\xbd\x7e\xe3\xc9\x8b\xa4\xca\xc1\xcb\xe3\x97\x48\x0d\x83\x60\x57\xfc\x2f\xb4\x6c\x71\x3b\x21\x67\x00\xfe\x5a\x46\x79\xce\xdd\x2f\xc8\x2e\x56\xf4\xe7\x17\x52\x7b\x23\xac\xb9\xf5\x49\xf2\x39\xeb\x94\x39\xb3\x37\x69\x35\xc0\x03\xa4\x3b\x9d\xc9\x49\xd8\xb3\x1a\x60\xc0\x1e\x5c\xc8\xfc\x5c\xff\xb4\xa5\x7f\xda\x52\x37\x51\x9d\x01\x6c\x39\x98\x7c\x72\x2a\x7a\x81\x61\x47\xfa\x1c\xf2\xb3\x04\x4a\x07\x7d\x93\x47\x5c\xda\x15\x63\xc0\x0f\x76\xa6\x9e\x6e\x4e\x4e\xe9\xce\x04\xf4\xc5\x96\x96\xeb\xfb\x81\x49\x5d\x1f\x8f\xb8\xbe\x8d\x4d\x07\x7c\x09\x4f\x11\xfd\x68\xf8\xfb\x65\x38\xe8\xe1\x76\x51\xf8\xdf\x88\xbf\xec\x55\xbd\xa4\x28\x12\x29\xcc\x3c\x92\x58\x5a\xc3\xf7\x56\x50\x80\xb7\xa2\xa4\x6b\xda\x24\x24\x53\x4a\x68\x93\xfb\x3d\xaa\x51\x12\xb6\x5a\xb1\xac\xd8\x6d\x40\x54\x0b\xea\xca\x1f\x87\x68\x9b\x12\x46\x72\xc2\xdc\xd5\x5d\x74\xdb\x6b\xd2\x7d\x23\xd5\xf9\x84\x35\xd9\x0c\x52\xb8\x67\x6a\xff\xa1\x67\x7a\xb6\xbb\x8d\xa7\xb7\x72\xa8\x56\xae\x5b\x96\x85\xee\xf2\x62\x3d\xc5\x1f\xf1\xb4\x48\x6b\x0e\x1e\xb7\x39\xcb\xf8\xde\x6d\x00\xcb\xd8\x0a\xee\xbb\x66\xfd\x6b\xb8\x66\xe9\x0b\x58\x0b\x1e\x61\x22\x38\x4d\xb7\x81\x5a\xb9\x0e\x7d\xcb\xab\x55\x94\x90\x4a\x44\xa6\x06\x7a\xac\x47\x66\x57\xa1\x60\x1a\x1e\x85\x8c\xbc\xf0\x4a\x70\x08\xa7\xb5\x58\xbe\xe9\x00\x00\x13\x25\xfc\x42\xc1\xf4\x45\x09\x1f\x00\x00\x9d\x07\xfc\xc1\x0e\x2d\xd4\x65\x7c\x0f\x1f\x7e\x5e\x26\xa2\xe8\xfd\xb9\x7d\x7f\x6e\x6f\x69\x6e\x5b\x3b\x36\xb9\x9d\xb0\x68\x93\xb9\x74\x57\x1b\x51\x54\x41\x55\xaa\xe8\xfe\x80\xaa\xa3\x62\x7b\xe6\xbe\x90\x62\xd2\xd6\xb0\xdc\x9e\xf3\x95\x09\x79\xe2\x70\x57\x2f\xbc\xd1\x2a\x77\x6e\x13\x73\xc2\x22\x99\x13\xf7\xca\x67\xfa\xfe\x3a\xff\xd7\x58\xe7\xc3\x67\xd3\xd8\xbe\xbb\x4e\x78\x98\x4c\x26\xba\x18\xb7\x30\x01\xb7\x20\x17\xde\xd5\x9a\x39\x4c\x05\xbf\xfb\x9b\xce\xbf\xc8\x64\x8c\x6a\x44\x6a\xc2\x4d\xb3\x77\x85\xcb\xf4\x5d\x61\x6d\xcb\x91\x73\x8f\x0c\xb3\xe9\x41\x07\xec\xd4\x5e\xe1\xde\x43\x11\xdf\xbd\x2f\xe2\xff\x4b\xce\xc8\xcf\x52\x0c\xda\xbf\x63\x52\x90\x7b\x2f\x45\x7c\xf7\xbe\x88\x7f\x7f\x6e\x6f\x79\x6e\xef\x9c\x88\xef\xf9\x78\x4b\x42\x45\xa6\xb1\x29\x7f\xf7\xc6\x26\xcf\xc7\x74\x3f\x62\x4d\xd8\x39\x81\xdd\xf3\xf1\xe7\xc1\x08\x59\x1e\x6a\x84\xdc\xa6\x96\xe3\xf9\x78\xe7\xac\x8e\x7e\xba\x4f\xd5\xe7\xaa\xbf\x76\xd6\x68\xeb\x07\x3b\xd7\x7b\x67\x3f\x85\xee\xe3\xfc\x2f\xd6\x3b\xe5\x3a\xc8\x27\xfb\xac\x52\xbf\xab\x9b\x76\x67\x77\xa2\x4f\xd2\x9a\xf9\xa9\xde\xa9\xe6\x71\x72\xc4\xf9\xe6\x32\xf5\x81\x31\x9c\x70\x81\x90\xb4\xca\x22\x56\x18\x4b\xbe\xef\x22\x5b\x0f\xa1\x25\x23\xf4\xc4\x05\x66\xb1\xe1\xce\x97\xf3\x96\x15\xa9\x53\x3c\xab\x5d\xcd\xe7\x23\x77\x94\x9d\x95\xd5\x62\xc3\x6f\xa2\x8e\x43\xf6\x1d\x2d\xa0\xd1\x54\x34\xe7\xde\xf7\x8b\x88\x8e\xcb\x09\x90\xe7\xa1\xd8\x5e\x66\xa1\xef\x30\x3a\x8b\xed\x00\xd9\x06\x24\x64\x1d\xa3\x64\x65\x5d\x52\x6d\x3a\xcd\xa3\x5e\x88\x02\xcc\x0f\x40\xef\x26\x7a\xae\xc2\xa2\x5d\x7f\x51\x89\x06\xa0\x0e\x02\x0b\xe8\x2c\x3e\x10\x20\x5b\xbb\xfd\x86\x18\xce\xa3\x4d\x43\xbf\x8a\xcb\x53\x0d\xc0\x13\x43\x84\x7b\xdd\x83\xb2\x3a\x7a\x7f\xe5\x11\xdb\x6b\xba\x28\x30\x8d\x06\xbd\xb7\x63\x40\x75\xad\x27\x6c\xb4\x11\xe9\xbe\x27\x48\xdf\x3d\xde\x6d\xda\x18\x35\x0f\xd0\x26\x81\x01\x69\xee\x49\xe4\x35\xf5\xa0\x9b\x63\xb7\xb3\x47\xeb\x52\x84\xf0\x5b\xb2\x66\x46\x36\xc5\x6f\x82\x01\x74\xc2\x27\x9c\xd0\x59\x72\xd1\x21\xa7\xc9\xae\x19\xf1\xc1\xf0\x97\xc8\x38\x90\x56\xc8\x22\x91\x5b\x57\x8c\xae\x33\xb6\xc8\xcc\x5b\x5a\xff\xaa\x4f\x80\x58\x15\x41\xcf\x93\xad\x3f\xee\x35\x90\x69\x04\xb4\xad\x7a\xef\x60\x7f\x79\xd9\x45\xf4\x53\xc7\x75\xf0\x2a\x59\xf9\xd9\x3d\x16\x3b\xd4\xcc\xbc\x4a\x15\x22\xaf\x99\xfc\x9a\xf9\x63\xf0\x7e\x80\xa4\x86\x01\x1c\x32\x98\x89\x70\x2b\x4c\x1e\x53\x48\x97\x1c\xaf\x49\x1d\x2c\x27\xe2\xf3\xae\x44\x3f\x12\x41\x0c\x7d\xb2\x5e\xcf\x38\xae\xcb\xaf\x58\xf1\xa9\xcd\xbb\x21\xd1\xc1\x7a\x35\xad\x16\xad\x67\x40\x29\x4d\x6b\x93\x3e\x6f\xc4\xe6\x97\xf4\x4e\x84\xd8\x12\x1c\x06\x32\xef\x58\x44\xf7\x43\x5c\x0b\xea\xda\xb9\x6f\x50\x9f\x90\xdd\xc7\xaa\xd7\xe7\x5f\x8d\x39\xc2\x72\xf4\x46\x5d\x78\xda\x6d\xd1\x97\x68\xeb\x7e\x44\xe9\xbe\x3d\x18\x00\x30\x80\xf1\xf9\x93\x7e\xc7\x33\x31\x45\x27\x52\xe6\x32\x12\x4e\x05\x5a\xb2\x85\x20\x12\xd1\x8d\xb4\x71\x09\x50\x2b\x40\x61\x9b\x3e\xd4\x9f\xbe\x0c\x63\x33\x35\x51\xc3\x32\xc2\xac\xa0\x89\xc8\xe6\x8a\x53\x90\x84\xaa\x08\x9d\xaa\x19\xeb\x7d\x58\x8b\x7d\x56\xc4\x00\x13\x28\x7a\xef\x14\xa5\xdc\x3b\x15\x64\xa6\xe3\x31\x31\xa4\xd6\xf3\x01\x9d\xb5\x29\xe4\x3c\x91\xee\x28\xab\x88\x61\x6e\xd4\x60\x42\xf2\x8d\x58\x7f\xf0\x85\x99\xde\x13\x2c\x13\xf5\xfb\x06\x73\x72\x89\x2f\xa6\xed\xed\x13\x25\xec\xcb\xed\x40\x67\xfd\x91\x4d\x43\x39\xe2\x1d\xe5\x7a\x5b\xfa\xd6\x01\x44\x6c\x91\x38\x96\xe8\x15\x9a\xd8\x06\x2e\x1d\x9b\x48\x5a\x31\xb9\x77\x43\x43\xdb\xd3\xef\x95\x6b\xe5\x8e\x3a\x36\x2d\x0a\xf5\x36\x4c\x0b\xca\x32\x80\xfa\x26\xac\x2f\x97\x20\x7a\xbf\x37\xd1\xe9\x48\xc9\xa1\xd1\x8d\x3c\x20\xcb\x51\x20\x3d\xe2\x07\xd9\x01\x57\x25\x65\x35\x54\x1f\xc0\x38\x86\x21\x11\x75\x23\x5f\x5a\x18\xe2\x01\x0c\x9d\x65\xcf\x76\x63\x0d\x50\xbe\x48\x09\x56\xec\x70\x0e\xe8\x3d\x30\x3d\xef\x15\xa7\xab\x65\x00\x7d\x6b\x7a\xce\xdf\xef\x51\x7f\x24\xa7\xe6\x17\xa7\x75\xa6\xec\xd7\x27\x54\x7b\x19\x32\xd1\xeb\x22\x19\xd6\x10\x0c\x3e\x6b\x7e\xec\x50\x7e\x9c\x5c\x24\x91\x51\x88\xac\x8c\xc8\x28\x44\xd6\x46\xc7\x27\x6d\x4f\xbb\x9f\xca\x73\x5c\x67\x69\x0b\x2f\x49\xb0\x50\x69\xaa\x17\x9d\xf0\x18\xad\x86\x85\xae\x4b\x26\xab\x50\x71\xa8\xe4\x84\x0f\xa1\x96\x1f\x20\x33\x00\xf3\xc5\x4a\x95\x24\x9c\xb2\x3b\xf4\x67\xb9\x5a\x99\x48\x38\xa5\x4b\xc7\xd5\x5c\x37\xf0\x57\x9c\x26\x8b\x68\xfe\x7f\x89\x7c\x6e\x07\xe8\xff\xe6\x6c\x6a\x04\xc2\x39\xd6\x90\x1c\x73\x77\x0d\x8d\xbb\xd0\xa5\x14\xe1\xca\x2f\x96\xa3\xb1\x02\x2d\x37\x2d\x4d\xfb\xc2\xf5\x3d\x94\xb4\x0d\x46\xb5\x3d\xce\xf2\x35\x47\x2d\x79\x2d\x30\x31\x68\x64\x68\xee\xb9\xce\x11\x22\xb7\x55\x62\x08\x07\x00\xf2\x30\x11\xa5\x33\x68\xa9\x6b\x37\x4e\xff\x77\xe8\x7b\xdd\x45\xaa\x37\x2e\xda\x3d\xec\x2f\x3a\x1d\x42\xcb\xa2\x35\x5e\xb1\x7e\xbf\x56\x07\xcc\xbe\x58\xab\x4d\xd7\x61\x2d\x2e\x07\x46\x1a\xc1\x56\x39\x99\x00\x87\x6c\x8c\xa0\x23\x41\xfd\xba\x0e\xbb\xbf\x6c\x6b\x37\x73\x42\x15\x7f\x2b\x87\x4c\x2c\xbf\x32\x27\x31\xd1\x33\xc4\x1a\x0b\x99\xe3\x9c\x15\xc2\xb0\xd4\x40\x8e\xab\x06\x2a\xd0\x3e\x0f\xd4\xe7\x41\xb1\x42\xbe\x37\x03\x58\x01\x90\xcc\x52\x18\x0c\x60\x58\x0a\xfc\x9e\xd7\x4c\xd1\x60\x43\x26\x11\xb2\xca\xb5\x78\x84\xa8\x88\xf7\x07\x45\x34\x8f\xab\xf4\x73\xbf\xd5\x8a\x78\x39\x47\x98\xb4\x89\x34\xea\x91\x08\x08\x1d\xcc\x57\xaa\x9a\xe7\x5f\x00\x00\x44\x94\x12\xa2\x70\x68\xcd\x60\xb7\xba\x69\x28\x7b\x68\x5b\x35\xea\x84\x29\x09\xa2\x4e\x86\xac\x3e\x27\x5a\x9f\x03\x60\xde\x0c\xf6\x7b\x85\x82\xf3\x40\x59\x2e\x57\x7b\xa2\xe9\xaf\xd9\x6c\xec\x7c\x8d\xaa\x80\xf7\x89\xc3\xfa\x64\x70\xa6\xed\xb8\xc8\xf4\xf7\x07\x85\x42\xb0\xdf\x93\xad\xb6\x09\x81\x2d\xc7\x8d\xf8\xda\xab\x96\xfa\x71\xbf\x6a\xfc\x80\x85\x01\xe1\xa6\x73\xc8\xc4\x00\xe6\x03\x13\x83\x39\x40\x7d\xf8\x17\x9c\x0e\x32\x71\xb1\x42\xf6\x39\xd5\x6b\x1e\xfd\x0c\x3d\x60\x21\xe0\xb4\x4c\x6f\x7f\x99\x7d\x3d\x39\xe9\xed\xb7\xca\x73\xec\x07\xd1\xfa\x8b\x15\x5a\x1b\x02\x73\x60\x8e\x86\xbf\xa7\x39\xc5\xa2\xf7\x40\xa4\x98\x56\x8a\x68\x08\x41\xa1\x60\x86\xa5\x86\xdf\xf3\xb4\xa1\xc2\xd0\xd7\xee\x09\x0b\xca\x26\x31\x80\x8e\xfa\xe5\x93\x7e\xf1\xc8\x3f\x0e\x80\xfa\xa8\xd1\x33\x3c\xa2\x7c\x94\xd0\x0a\xd2\x5f\xe7\xd0\xac\xb3\x96\xf6\x01\x02\xd0\x09\x8f\x10\x81\x01\x51\xe6\x8a\x1e\x28\xcf\xa3\x07\x2a\xf3\xa2\x5b\x4d\x7b\x5e\xef\x43\xd1\xef\x26\x06\xff\x85\x2c\xab\x3c\x48\x09\x4f\x97\xe3\x4d\x22\x1c\x89\x97\x02\x55\x16\x1b\x9f\xe8\x8a\xfc\xf6\x9b\xaf\xfb\x93\x0f\x62\x3b\x03\x52\x2d\x45\x93\x18\xc4\xb3\xc5\x44\x2e\xa2\x01\x98\xb0\xb7\xd9\xd2\xe8\x24\x51\x73\x41\xfb\x14\x4f\x21\xf0\x25\xa4\x93\x41\xd9\x0a\xd6\x46\x67\x32\x48\x29\xc0\x39\x73\x50\xc4\x60\x0a\x0d\x40\xd5\x66\x9d\xc0\x63\x30\xda\xb0\x67\x99\x36\x5b\x5f\x70\x37\x9a\x05\xd0\xb5\x76\x97\x67\xf7\xa2\x5d\xb0\xa1\x77\x0f\xd2\xfb\x03\x15\xa9\x4e\x7c\xcc\x71\x5d\x27\x44\x0d\xdf\x6b\xd2\xeb\x47\xc3\xfa\xaf\x82\x66\xbe\x94\xd5\x87\x26\x2e\x22\x30\x55\x41\x33\x83\xb4\xf7\xc8\x28\xaa\xc7\x17\x0e\x9e\x12\x88\x06\x00\xb6\xac\x06\x6c\x5b\x66\x83\xd3\xbd\x25\x3a\x8b\x84\x14\x9a\x7e\x6a\x3c\xd2\xf1\x97\x7a\x43\x09\xef\x65\x93\x7d\xcc\xf1\x7a\x18\x51\x9a\x01\x6c\x5a\x6d\xd8\xb5\xcc\xf6\x0e\x11\x5d\x8c\x62\x48\x21\x32\xd2\x8a\x99\xdd\x68\xd7\x88\x11\x20\x45\xb2\xdb\xf2\x88\xdf\x0b\x78\x4b\x3a\x56\x17\xae\x58\x66\x37\xbb\x25\xac\x70\x19\xd2\xff\xa7\x13\x46\x79\x2c\xad\x99\x42\x20\x73\x89\x11\xe2\x8a\x26\x0d\xe9\x40\x1a\xf3\xac\xef\xa1\xe3\x74\x67\x11\x7d\x10\x4f\x25\x7d\x31\xb5\x77\xf7\xec\xb0\xd6\x30\x9c\x2c\x4e\xd1\xaa\xb5\xa2\xb6\xdd\x65\xad\x64\xca\xaa\xa4\xdf\x61\xad\x06\xf1\x63\xd5\x04\x93\x7b\x8a\x08\xfc\xd7\x1e\x22\x63\xdd\x65\x17\xec\x19\x3a\x42\x5b\xef\x04\x77\x00\x06\x2b\x6c\x94\xe8\x7a\x5f\xb2\x96\xcd\x32\x80\x8b\xd6\xb2\x59\x01\xf0\x8c\xb5\x6c\x4e\x03\x78\xd8\x5a\x36\x67\x00\x3c\x6b\x2d\x9b\xb3\x00\x9e\xb2\x96\xcd\x5d\x00\x1e\xb7\x96\xcd\xdd\x00\x1e\xb0\xcc\x25\x3e\xca\x8b\xfc\xef\x19\xfe\xf7\x30\xff\x7b\x96\xff\x3d\xc5\xff\x1e\xcf\x9e\x15\xb4\x95\x44\xc2\x18\xb3\x7f\x8e\xf9\x1e\x6e\xb3\x0e\x62\x60\xf6\x24\x61\x21\x3f\x78\xa9\x62\xe4\x93\xca\xf4\x97\x58\xc7\x1d\xe9\xb9\xee\x53\xf4\x92\x15\x2b\xa0\x7e\x83\x21\x4b\x98\xd5\x42\xe6\xc9\x69\xeb\x00\x5c\xb0\xcc\x03\xd9\x0d\x64\x85\xcb\x70\x0b\x6d\x94\x44\xc4\x48\x1a\xd1\xd2\xec\xb6\x64\x37\x45\x2b\x03\xc0\xc4\x42\xf6\x96\xa5\xb6\xa8\xe8\xde\xc5\x37\xac\x94\x65\x21\xab\xd6\x37\xac\x28\x4e\xb6\x7d\xb1\xb5\xa1\xf5\xd3\xf0\xb5\xa2\xb6\x38\x59\x51\xac\x5a\xb6\xe7\x01\x6d\x53\x3b\x68\x2d\xc0\x63\x96\xb9\x90\x3d\x4c\xda\x6e\x92\x39\x2e\x3b\xc0\xfd\x1f\x5f\x38\x18\xd9\x00\x4e\x5a\xc7\xe0\x09\xcb\x3c\x36\x94\x30\xf1\xc5\x90\x29\xb3\x63\x2c\xfd\xf1\x85\x83\x1a\x57\xff\xba\x75\x02\x1e\xb2\xcc\x13\x43\xc9\x1b\x63\x46\x3f\xbe\x70\x50\x31\x36\xf1\x63\x38\x7b\x1f\xc9\xae\x65\x35\x8c\x63\x3f\x66\x1d\x52\x1c\xfb\xe8\x70\x8e\x2d\x3e\xc5\xd1\x7a\xb4\xdf\x09\xd6\xbd\xad\x76\x0e\xe7\xe1\x8c\x27\x1f\xd2\x78\xf2\xa3\xd6\x51\xc2\x93\x8f\x58\x47\x09\x6b\x7c\xd6\x3a\x4a\x78\xf2\x23\xd6\x51\xc2\x93\x1f\xb2\x8e\x12\x9e\xfc\xb8\x75\x94\xf0\xe4\x27\xad\xa3\x84\x27\x3f\x63\x99\x8f\xf2\x31\x3a\xc2\xff\x3e\xcb\xff\x3e\xc2\xff\x3e\xc4\xff\x3e\xce\xff\x3e\x39\x74\x4c\x23\x6c\x79\xec\xb6\x6b\xcc\x59\xfe\x1a\xc5\xb5\x54\xc1\x62\xfc\x43\xc9\xa5\x1f\x5f\x38\x18\x67\x6e\x91\xa4\x21\x0c\x4e\x55\x47\x26\xc9\x13\xd6\x33\xf0\x29\xcb\x7c\x66\xf8\x72\x8b\x71\xec\xb1\x9b\x1f\xe5\xdb\x11\x0a\x47\x77\xc2\xd0\x06\x0e\x6d\x5f\x94\x87\x3f\xb5\x93\x3c\x5c\xaf\x3d\xce\xc6\x23\x98\x75\x4e\x1e\xed\xc2\x91\xab\x47\xf1\x73\xbd\xc6\x24\x8a\x24\x57\x7f\xd8\x7a\x6a\xe2\x29\x3e\x94\x41\xa9\x69\x62\x68\x34\xd2\xa2\x3b\x86\x03\x20\xf2\xbd\x11\xf9\xcb\x69\xf9\x2d\x95\x1f\x8c\xc8\x6f\xa6\xe5\x37\x55\xfe\x52\x5a\x7e\x47\xe5\xdb\x69\xf9\xab\x2a\xff\xeb\x69\xf9\x4b\x2a\xbf\x3d\x22\x1f\xa5\xe5\x2f\xaa\x7c\x27\x2d\xff\xac\xca\x6f\xa5\xe5\x9f\x56\xf9\xa7\xd3\xf2\x0f\xaa\x7c\x3f\x2d\xff\xa4\xca\xef\xa4\xe5\x7f\x5d\xe5\xbb\x69\xf9\x8f\xa9\xfc\x5e\x5a\xfe\xa3\x2a\x3f\x1c\x91\xdf\x4d\xcb\x3f\xa2\xf2\x71\x5a\xfe\x43\x2a\xff\x99\xb4\xfc\x27\x54\xfe\x4a\x5a\xfe\xc3\x83\x18\x73\xc8\xb0\x0d\xc6\x8b\x68\x4f\x77\x5a\x9a\x25\xd6\x0a\x60\x10\x09\x2c\x8c\xb4\x17\xc1\x1d\xdd\xa1\x32\x7a\x9a\xa2\x55\xa7\xdd\x81\xa6\x4f\x86\x82\xa0\xe6\xd5\x2d\x5c\xf3\x34\xe3\xbd\x66\x95\x04\x6b\xdc\x78\x62\x3c\xfd\x74\xf8\x25\xb3\x36\x59\xac\xcf\x3f\xfd\x74\x73\x12\x90\x9f\x06\x0c\x63\xe9\x5f\x7a\xfa\xe9\x12\xcd\x37\xe7\xab\x35\x74\xb8\xae\xca\xcf\xf3\x2f\x7a\x5b\xf8\xe2\xbf\xd8\x27\xae\x35\xf5\x3f\xff\xc7\xac\x95\x8b\xfb\xec\x62\xab\xbe\x36\x33\x00\x5f\x98\x82\x8d\x68\xe2\x6e\x9a\xd8\xb2\x22\xaf\x3f\x07\xcb\x4b\x4f\x3f\x6d\x1a\x93\x35\x1b\xda\xd0\xae\x4f\x1a\x4f\x3f\x0d\xbe\x60\x00\xd8\xce\x28\xd6\x83\x3d\xd8\x53\xc5\x9a\x89\x62\xb6\x56\x1d\x0c\x55\xc9\x6e\x56\x49\x5a\xa3\x5e\xb2\x13\x2d\xd9\x0e\x5d\x56\x30\x8c\xa2\x5e\x49\x14\xb3\xb5\x72\x7a\x85\xab\xd6\x9a\xed\x3a\x0d\xb4\xe4\xf6\x50\xb5\xb2\x6b\xcf\xbe\xe9\x99\xbd\x33\xd0\xf6\xb0\xf3\x4c\x0f\x9d\x69\x3b\x18\x55\x2b\xbb\x67\x67\x67\x67\xf6\xec\x82\xf6\x33\x3d\xbb\xba\x7b\xd7\xae\x19\x06\x76\xec\xc0\xf1\x50\x75\xef\xcc\xde\xbd\xbb\x76\xcf\x42\xfb\xd9\x5e\xc0\xaa\x98\xad\xec\xd9\x05\x97\x90\xb3\x4c\xbe\xad\x54\xf6\x4d\xef\x2e\xc3\x25\x27\x7c\x86\x60\xd8\xbd\x67\x4f\x79\x7a\x76\x16\x2e\xb9\x76\xe3\x74\xb5\x4c\xfe\x7a\x8d\x36\x6a\xda\x6e\xc7\xf7\x9a\x34\x7f\xba\x3c\xbb\x0b\x52\x7a\xa6\x77\x31\x60\xc5\xf1\x5d\x84\xab\xfb\xca\xbb\x76\x4d\x97\xa7\xe1\x52\xe0\x9f\xf1\xaa\x95\xf2\xde\xe9\xd9\xe9\x99\x59\xb8\xd4\x0b\xdc\xd5\x33\xbe\xdf\xac\x56\x66\x77\xed\xdb\x3d\x3d\x53\x81\x0d\xbb\x89\x30\xad\x62\xf7\xf4\xee\xdd\xbb\xa6\xf7\xc2\x46\xdb\x0e\x70\x80\x7a\x21\x23\x78\x66\xd7\x34\x6c\xb4\xfd\x86\x4f\x5f\x02\xab\xcc\xec\xd9\xbb\x6f\x76\x4f\x19\x36\xfc\xc0\x76\x09\x11\xb3\xb3\xd3\x7b\xa6\xc9\x4f\xaf\xe5\xfa\x67\x50\xc0\xea\xda\xb5\xaf\xb2\x6f\x6f\x85\x26\x87\x8e\x7b\x9a\x52\xbb\x6b\x66\xef\x5e\xd8\x08\x9c\x4e\xe8\x7b\xd5\xca\xec\xec\xf4\x4c\xa5\x5c\x86\x8d\x55\xdb\xe3\x5d\xd5\xb4\x83\xd3\xac\x77\x67\xf6\xd1\x1f\x34\x6f\x66\xd7\x9e\xe9\x19\xfa\x73\xd9\x77\x9b\xc8\x0b\x08\xf9\xd3\xe5\x7d\xd3\xfb\x78\xa9\xe5\xc0\x5e\xad\x56\x2a\x95\xca\xbe\x72\x65\x0f\x4f\x41\xff\x3f\x79\xef\xbe\xde\xb6\xad\x3c\x8a\xfe\xef\xa7\xb0\xf9\x6b\x54\x40\x1c\xd1\xa4\xee\xa6\x0d\xeb\x64\x25\xe9\x4a\xda\xdc\x1a\x3b\xbd\x29\xaa\x3f\x5a\x82\x24\xc6\x14\xa9\x92\xa0\x2f\xb5\xb4\xdf\xea\xbc\xc0\x79\xb2\xf3\xe1\x42\x12\x94\x28\xdb\x59\x6b\xfd\xf6\xd9\x67\xef\x7e\x8d\x45\x82\x83\xc1\x60\x30\x00\x06\xc0\x60\x86\x86\x6e\xb3\xd3\xb5\xed\xec\x7d\x03\xe2\x6a\xee\x5d\xf9\xae\xd3\x6c\xb7\x5a\xcd\x8e\x44\xb3\xf0\x66\x34\x64\x9e\x7b\xe4\xd8\x47\xdd\xb6\x2c\x31\x0a\xfc\x6b\x2a\xb1\x75\x3a\x47\xbd\xa3\x23\x09\x1a\x89\xf9\x52\xd4\xbe\xd7\x69\xda\x2a\x6d\x3c\xf7\x27\xae\x63\xdb\x6d\xdb\x76\x9a\x22\x2d\xa6\x13\x81\xae\x63\xb7\xc5\x7b\x22\xda\xce\x75\x3a\x2d\xbb\xdf\x76\x64\xbe\x84\x7a\xb2\x80\xa3\xb6\x73\x74\xe4\xc8\x02\x44\x60\x1a\xc1\x8a\x76\xaf\xd5\x6e\xb5\x7b\x45\xaa\xa8\x2d\xe7\x5c\xfb\xa8\xa3\xa7\xd2\x72\x2a\x4b\xe3\xbf\xd2\xc8\x4f\xa8\xdb\x69\x1e\xb5\x65\x5a\x26\x1c\xdd\xa3\xa3\x0e\xe7\x1d\xa5\xcb\xa5\x1f\x8a\xc6\x71\xba\x47\xbc\x10\x4a\x97\xc9\xd5\x9d\x2c\xf8\xc8\xe9\x38\x30\xf1\x17\xa2\xc0\xee\x91\xdd\x6f\x76\x3b\xf2\x9d\x6a\xef\xd1\x64\xa6\xda\xbc\x69\xdb\x2d\xe7\xe8\x08\xa6\x7e\x4c\x2f\x63\x7f\x7c\xe5\x3a\x9c\x41\x4e\xbb\x0b\xd3\x80\x4b\x4b\xd6\x47\x7a\xbd\xce\x51\xd3\x86\x69\x14\xd3\x84\xa9\xa6\x6a\x76\x5b\xfd\x76\x13\xa6\xe9\x78\x9e\xf8\x9e\xa0\xc8\x39\x6a\x75\x60\xe6\xf9\x61\x72\x19\xc5\x11\x17\x98\x5e\xbb\xdd\xb5\x61\x36\x8f\x12\x96\xe1\x6a\x39\xdd\x6e\xcf\x01\x2e\x19\x3c\x53\xb7\xdb\x6b\xda\xa0\xc9\x49\xbb\xd5\x3c\x72\x78\x12\xaf\x44\xbf\xdd\x74\x78\x53\xc8\x32\x5b\xcd\x5e\xb7\x2f\x9f\xef\x68\x10\x44\x37\xae\xe3\xb4\xed\x96\xdd\xe9\x80\xa8\x62\x06\x3d\x8f\x42\x7a\x37\xa1\x37\xaa\xc3\x76\x6d\x98\x47\x2c\xe3\x5b\xab\xdf\x6b\xdb\xe0\x87\x13\xdf\x0b\x79\x6b\x3b\xad\x76\xa7\xdf\x69\xb6\x45\xd2\x2c\x12\x5c\x6c\xb5\x6c\xf0\xaf\xa3\xf8\x4e\xd4\xbd\xd7\xb4\x6d\x50\xe2\xd7\xe9\xf5\x7b\xdd\xae\x0d\x81\x77\x2d\xed\xce\x9c\x8e\xd3\x6a\x72\xc9\xc8\x52\x2e\x83\x34\x99\x8b\x7c\xad\x56\xb7\x03\x81\x77\x13\x4a\xea\xfb\xce\x91\x7d\xd4\xeb\x42\x40\x17\x51\x38\x9e\xfb\xd3\x29\x17\x2c\xce\xdb\x7e\xbf\x03\x81\x3f\x9b\xcb\x5e\xed\x38\xad\xa3\x56\xb3\xd3\x96\x49\xaa\xd7\x76\x7a\x5d\xa7\xd3\xea\xaa\x34\xde\xc9\x9c\x76\xaf\xdd\xe9\x1c\x1d\xc9\xa4\x9c\x81\x19\x63\xba\xed\x76\xbf\xc9\xc9\x12\x5f\x45\x7f\x6b\xf5\xfb\xcd\x56\xb3\x95\x25\x49\x09\x3e\xea\x37\x3b\xdd\x3c\x69\x13\x2a\x63\x5a\xa7\xdf\xee\x2a\x1a\xb3\x1e\xd1\xed\x75\x9a\xbd\x6e\x53\x25\x66\x5d\xa2\xe9\xb4\x9b\xfd\x23\x55\x6c\x26\x98\xfd\x23\xdb\x6e\xb5\x55\x29\x45\x97\xe8\xf5\x5b\xad\x5e\xa7\x55\x4a\xa6\x9b\xc9\x8c\xd2\x40\xb1\xa5\xd3\xe7\x5d\x4b\xa6\xe7\xd5\xec\xf5\x7a\x4e\x9f\x27\x2e\xf8\x18\xd6\xec\xdb\xe2\x51\xc9\x4b\xab\x79\xc4\x9b\x32\xf0\x43\x1a\x0a\x96\x74\xba\x3d\x1b\xb2\x61\x23\x17\xd9\x85\x17\x47\x51\x28\xc6\xce\xae\xdd\x17\x51\x40\xd2\x85\x36\x0b\x74\x7b\xad\x5e\xab\xd9\x54\x1f\x54\xd7\xe9\xa8\xd7\x6c\x14\x69\x36\x1d\x2e\xd9\x2a\x75\x99\xc6\xcb\x80\xba\x47\xdd\x6e\xb3\xdb\x6f\xa9\xc4\x9c\x4b\xad\xa3\x5e\xdf\x3e\xca\x60\x8b\xa1\xa3\x6f\xf7\x7b\xbd\x23\x3b\x4b\x5f\xc6\x7e\x38\x93\x39\xba\x6d\xa7\xd3\x56\xe9\xc5\x40\xd1\xee\xf5\x9a\x2d\x3b\x83\x97\x83\x85\x94\x69\xbb\xdd\x73\x7a\x2d\x58\xf8\x93\xb0\x10\xac\x6e\xbb\x7d\xe4\x34\x61\xe1\x87\x8c\x2b\x3f\x0b\x3e\x83\x35\x9d\x7e\xc7\x86\x85\x9f\xb0\xbb\x38\x4a\xb2\x49\x8c\x67\x8d\xc6\x63\x2f\xf1\x43\x95\xd2\x3c\x82\xd0\xbb\xf6\xbe\x46\xf9\x98\xd0\xed\x77\xfb\x1d\x9e\x78\xe7\x3a\xcd\x3e\x44\xc1\x24\xf0\xc6\xfc\x4b\xb7\xdd\xea\x74\x78\x82\x7f\x4d\x45\x9f\x6c\xf5\xba\xf2\x6d\x12\x7b\x97\x6e\xcf\x6e\xf7\x7b\xad\x23\x28\x86\xe4\x4e\x8b\x8f\x2e\xf2\x5d\x90\xdf\xed\x35\x8f\x5a\xed\x36\x64\xbc\x6d\xb7\x9c\x0e\x6f\xfa\xa5\x17\x50\x6d\xa8\xe8\x74\x3b\x3d\xa7\x65\xcb\x64\xc1\x26\xc7\xb6\x9b\x9d\x7e\x5f\x26\x15\x7c\x72\x9c\x4e\xf3\xe8\xa8\xdb\x15\xc9\x1a\x9b\xda\xad\xbe\xd3\xb4\x5b\xb0\xf4\x96\xde\x9d\x77\x33\xf7\x97\xb2\xe3\xda\xbd\x1e\x2c\xa9\x37\x9e\x2f\xd3\xe9\x54\xd4\xb5\xd7\xed\xb5\x60\x49\xe3\x94\x8f\x17\xdd\xfe\xd1\x91\x03\x59\xdf\xe8\x3a\x76\xab\x03\xcb\x20\x5d\xf0\x39\xba\xd9\xee\xb6\x7a\xb0\x8c\x6e\x26\x6a\x90\x75\x1c\x3e\xb3\x3a\x36\x28\x91\xe0\x52\xd6\x6b\x75\x21\xa6\x97\x74\x3c\xf6\x54\x6a\xb7\x7b\xd4\xeb\xf7\x1d\x50\xd5\x77\x9c\x6e\xdf\x86\x38\x4a\xee\x94\x3e\xd0\x6c\x75\x7a\x1d\xe7\x08\xe2\xe8\xce\x93\xfd\xa1\xdd\xec\x77\xf9\x34\x91\x78\x93\x49\x40\x25\xd8\x91\xd3\xec\x39\xfd\x1e\xe4\x7d\xb4\xed\x74\xfb\xfd\x26\x24\x5e\x38\xc9\x30\x75\xed\x56\xb3\xdf\x6d\x43\x21\x8c\x76\xc7\x6e\x35\x7b\x3c\x21\x99\xd3\x40\xa8\x08\xbd\x76\xb7\xd5\x87\xc4\xa7\x61\xe8\xb9\x8e\xdd\xb1\xbb\xbd\xa3\x1e\x24\xbe\x88\xdd\xe5\x34\xbb\xad\x26\x1f\x35\x4a\xfd\xbb\xe5\x40\x21\xc8\xdd\xa3\x9e\x6d\x77\x55\x8a\xec\xec\xad\x5e\xf3\xa8\xdd\x06\xad\x9f\x67\x29\xa1\xea\xc8\x9d\xa3\x96\x0d\x25\xa1\xef\xb4\xed\x1e\x14\x43\x40\xbb\xdb\xb4\x8f\xfa\x36\x30\x3e\xfc\xb5\x78\x67\xe1\x2f\xd4\x0b\xdc\x56\xb3\x7f\xd4\x15\x66\x53\x2c\xa0\xae\xd3\x6e\xda\xed\x7e\xbf\x0f\x2c\x5a\x78\x2c\x12\xa3\x7e\xcf\x3e\xea\x80\xd6\x73\x9a\x1d\xa7\xdf\xe9\x82\x9a\x60\x9d\x4e\xb7\xe5\xd8\xfd\x2e\xdc\xcc\xa9\xc7\x84\x66\xd7\xe2\x35\x2a\x26\xc0\x5e\xd3\xe9\xc8\xd7\x64\x11\x5d\x65\xca\x5f\xbf\x03\xda\x48\xd4\x3d\xea\xda\xea\x3d\x13\x47\xa7\xdd\xb1\x7b\xed\xf5\xc6\xa9\x8a\x30\x1e\xc8\x6d\x05\x08\xa2\xa6\x61\x60\x8b\xc5\xfe\x02\x61\x8b\x45\x6f\xb9\x56\xf6\xc2\x4b\x28\xc2\x80\x18\x09\x2c\x7a\x4b\xc7\x88\x62\x3c\xe0\x9a\xef\x2d\x42\x8c\x08\x4f\x40\x6f\x42\x26\xa2\x31\x83\xd3\xc5\xf8\xf4\xb4\x5f\x73\x3a\x2b\x76\x7a\xda\xae\x35\xdb\x36\x88\x07\xa7\xb3\x6a\xb6\xed\x1a\x03\xe4\x74\x6a\x0c\x9f\x9c\xb4\x57\xfc\x01\x1c\x11\xb3\x7e\x5c\x20\xbe\x44\xdb\x18\x39\xc8\x74\xb3\x6c\xf1\x95\x0d\x9b\xfc\x4f\x6b\xa4\x10\xcd\x37\xa1\x9a\x9d\x4e\x9d\x43\x1e\x72\x7d\x51\xbe\x34\xf5\x97\x96\x7c\x91\xb9\x27\x45\xee\x8b\x4d\xfc\x6c\xd8\x96\xf1\xf5\x97\x3a\xd0\x13\xd1\xe7\x99\x17\x45\xe6\x0f\x45\x09\x0a\xa6\x44\xcb\xf5\x13\x20\x25\x5a\x11\xc2\xf2\xc3\x4d\x58\x18\xde\x70\x2e\xde\x0d\xe9\x08\xbb\x86\x08\x55\xb8\xf4\xe2\x2c\x28\xb2\x62\xcb\x7b\xef\x3d\x64\xff\x6c\xb5\xa7\x93\x4b\xc6\xa5\xb6\x67\x25\xc1\xe9\xe9\xa9\xd3\xad\xf1\x85\x02\xe5\xad\xcb\x1f\x9a\x9d\x4e\x8d\x82\xa3\x39\xef\xbd\xc8\xbc\xfb\x17\x99\x4f\x88\x5d\xab\x21\x4a\x18\x89\xc9\x7b\xef\x3d\x06\x85\x4e\xc1\x15\x79\x6f\xf4\x7d\x35\xdd\xa1\x6d\xb4\x5a\x21\x4a\xb8\xac\x62\xc8\x88\x47\x94\x50\x2b\x9e\x5d\x22\x8c\xad\x18\xa8\x35\x03\x6a\x5d\x02\xb5\xa2\xa5\x37\xf6\xd9\x1d\x16\xd1\x2d\x6f\x0b\xe4\xaf\xb6\x08\x73\x08\xd9\xb2\xe7\x1b\x70\x1a\xdc\x12\x81\x32\x20\xfa\xc0\x71\x75\x52\x0b\xf2\xa5\xfd\x64\x4c\x4c\x15\xb9\x76\x46\x4c\xe5\x07\xf7\x92\x98\x2a\xc2\xad\xa2\x89\x98\x61\x81\xe1\x4c\xbb\xa1\x93\xed\x05\x2e\xbc\x5b\x64\x4b\x8b\x8d\x85\x1f\x72\xb9\x92\x2f\xc2\xde\x47\xb8\x3f\xb4\x31\xc6\x27\x4e\x77\x60\xd8\x86\x6b\x18\xd8\x2c\x7c\x27\x22\xa7\xab\xd1\xf7\xa1\xb2\x19\x06\x79\x23\xb8\xf1\x09\xb1\x57\xab\xf8\x94\x38\x22\x91\x27\xb1\xac\xa1\xf2\x46\xba\xaa\x68\xa4\xe7\x4f\xe3\xe3\x86\xd9\x62\xa9\x39\xaf\xb0\x26\x57\x57\x88\x5a\x73\xa0\x56\x02\xd4\x0a\xb4\xf6\xdb\xdb\xcc\xa5\x0b\xc1\x01\x2d\xa1\xd8\x82\xbd\x2a\xae\xba\x4a\xcb\xa8\x92\xb4\x1c\x72\xc6\xc6\x84\x5a\x33\xf1\x14\x12\x6a\x5d\x8a\x27\x9f\xe4\xbc\x97\x55\x04\xaf\x68\x18\x95\x92\x70\xf6\x40\x4a\xbc\x86\x0f\x01\x41\x9e\xe9\xe3\xc3\x66\x36\x78\xa6\x03\x94\x10\xc6\xf9\x31\x40\x71\x23\xc4\x87\xa9\xd9\xad\xa3\xf8\x24\xc4\x6e\x2c\x53\xc3\x06\xe3\xa9\x4d\x17\xb1\x46\xcc\x9f\xda\x90\x1e\x92\xe0\xc4\xea\x0c\x3c\xd3\x77\x9b\x0d\x8e\x37\xa9\x93\xae\x8d\xdd\x94\x04\xa7\x76\xad\x16\x9c\x38\x03\xdb\x4d\x54\x8b\x24\x90\x82\xce\xa7\x75\x26\xb0\x57\x0f\x0a\xec\xd5\x86\xc0\xce\x73\x81\x4d\x72\x81\x0d\x1e\x14\xd8\xf3\x6c\xc7\x4b\xd5\x95\x8f\x6d\x88\x9e\x74\xed\x01\x33\x85\x15\x4b\x9d\x1e\x76\x6d\x97\x9e\x38\x7d\x7b\x10\xbb\xf4\xa4\xd9\x2e\x3e\xa1\x66\xdb\x6e\x50\xcc\x01\x18\x5e\x87\x28\x82\x19\xdc\x4f\xfc\x64\x19\x78\x77\x22\x64\xc1\xf6\x86\x9c\xec\x57\xbc\xc9\x2c\x0d\x10\xe1\x35\xcc\xe9\xed\xc3\xf0\x73\x7a\x8b\xc4\x6d\x02\xd9\x35\x1e\x04\x36\x0d\x63\xbd\xc6\x10\xa2\x5b\x78\x05\x3e\x8a\xe0\xfe\x32\xe6\x3a\x2a\xad\x34\x38\xa6\xca\x7e\x8d\x0e\x9c\x43\xab\x27\x4d\xd8\x96\xd1\x0d\xe2\x6f\x40\xb3\xa1\x4d\x62\xaf\x67\x23\x42\xf6\x70\x99\x3d\xe4\x6d\x27\x56\xd5\x8f\x95\xa4\x97\xf3\xaf\x95\x12\xcf\x2e\x77\xb9\xfb\x87\x87\x1b\xc1\x3e\x51\x91\xda\x95\x1d\x7f\x7c\x42\xf8\x98\x5f\xcb\xd2\x67\x2a\x7d\xb6\x91\x7e\xa9\xd2\x2f\x37\xd2\x15\x4d\xea\xab\x7a\x3b\x21\xce\x8e\x46\x35\xfe\xcb\x30\xcf\x54\x45\x71\xf6\x34\xcb\x9f\x2e\x77\x34\xb2\x76\x57\x41\x15\xa1\x3a\x28\x12\x3e\xfe\x28\xf1\x93\xf7\xde\x7b\x3e\x45\x2a\x2b\xc4\x8d\x81\xd7\x01\x8a\x31\x1e\x18\x5c\x40\x0c\x97\xff\x78\xc8\xc0\xe6\x13\xc6\x68\x45\xaa\x18\xa8\x4d\x03\xf6\x8d\x27\x67\x9a\xfd\x2b\x99\x2e\x55\x26\x51\x2f\x3a\x30\xb0\xe1\x8a\xfc\xd4\x34\xb0\x81\xd7\x6b\xcc\x05\xfb\x0a\x9e\xff\x67\x04\xfb\x4a\x16\x3a\x57\xe3\x86\x1a\x34\xfe\x93\x42\xfd\xd4\x12\x36\x04\x5a\x6b\xef\xf9\xb3\x56\xd7\x36\x5b\x5d\xbb\xae\x50\x9d\xd8\x18\x58\xde\xe0\xab\x95\x7c\x92\xf8\xf1\xc0\x76\x55\x49\x59\x74\x6b\x11\x8f\x19\xc5\x7c\x3c\x8e\x5d\xa7\x11\xe3\x3a\x03\x9f\x34\xeb\x71\x23\xdc\x2b\x69\x43\xe7\x88\x9e\x12\x3e\xc4\xd1\x46\xb3\x6d\xbb\xd4\x74\x9a\x36\xf8\x7c\x86\xe0\x03\x65\xf6\x70\xe2\x34\xed\x01\x35\x05\x44\x23\x87\xd8\xe4\xd7\x43\x5d\x10\x65\x5d\x27\x51\x9d\x26\x39\x21\xce\x46\x35\x70\xd1\xc1\x02\x05\x15\x9c\x10\xe7\x09\xdd\x6e\xad\x9c\xc2\xbf\x90\xf3\xdc\xc7\x37\x87\x4e\xdf\x86\x77\xc4\xe9\xdb\x87\x2a\x05\x3e\x11\xeb\xa8\xdb\x6e\x36\xe1\x23\x71\xe0\x2b\xb1\xfa\xcd\x4e\xd3\x81\x97\xa4\x7d\xd8\x3c\x82\xf7\xa4\xcb\x7f\xde\x90\x56\xfd\x7d\xfd\x3d\xbc\x25\xef\xf9\x6f\xb1\xc0\xf8\xa1\x4a\x01\x78\xad\xcf\xde\xaf\x91\x9c\xf8\xbd\x0d\x05\x6e\x6b\x52\xff\x5d\x20\x52\x2d\x69\xcd\xf1\x36\x12\x1b\x6c\x1d\x81\xba\xd6\x6b\xcd\xeb\x2f\xf6\xb6\x60\x45\xed\xc6\x51\x82\xf8\xc4\x65\x8d\xe5\x7b\xc2\x67\x7e\xf9\xae\xcd\xb0\x25\x2a\x6e\x85\x1a\xc2\xd5\x44\xe5\x4e\x1f\x42\xf0\xc9\x5f\x88\x5a\x31\x86\x48\x3c\xcc\xb8\xde\xc0\x1f\x2e\xb9\xba\xf0\x0f\x84\xac\x66\xb3\xd9\xb1\xdb\x9d\xba\x6f\x5a\x3d\xa7\xdb\xef\xf5\xbb\xf5\xc8\xb4\xec\xae\xdd\x75\xba\x47\x75\x0f\x1f\x7e\xc4\x45\x74\x04\x11\xde\x3b\x12\xea\x42\x4c\x42\x92\xb8\x28\x16\x48\xda\xad\xae\xdd\x6b\xf7\x38\x92\x56\xbf\x63\x77\xdb\x47\x1c\x89\xd3\x6e\xd9\x7d\xbb\xcd\x91\x7c\xc2\x10\x0a\x48\x5b\xec\xd9\x35\x39\xa4\x7d\xd4\x73\x78\xc9\x11\x2f\xb9\xed\xf4\x5a\x2d\x0e\xf9\x15\xcb\xfe\xf6\x1a\x39\x4e\xb7\x9e\x34\x9c\x2e\x74\x6c\xbb\x8e\xe2\x46\x82\xa1\xc9\x9f\x92\x46\x88\x75\x1e\xe4\x0d\xfa\xf7\xd3\xf4\xbf\x1f\x32\xb5\xe4\xf5\x83\x6a\xc9\xeb\x0d\xb5\x24\xc8\xd5\x12\xef\x89\x7a\xf4\x3f\xf4\xe1\xe5\xf4\xed\x20\x1f\x55\x28\x38\x87\x2d\xec\xd2\xc3\x37\xe6\xcb\x02\xfc\x73\x09\xfc\xfd\x80\xd6\x69\x9d\xba\x6f\xea\x88\x36\x5e\x6a\x74\xfd\xaa\x81\x29\x45\x87\x58\xb6\xdd\x72\x5a\x76\x7f\xe0\x34\xad\xa3\x66\x9d\xba\x8e\x65\x77\x3a\xf5\x52\x81\x4d\xab\x8d\x1b\x3c\x59\xc3\xf5\x97\xa6\xe9\xd3\x43\x3e\x1f\x62\x8e\xac\x6d\xb7\x3b\x03\x7a\x28\x90\x15\x63\x21\xa2\xa6\xc8\x7e\x28\x90\x03\xc7\x57\x60\xfa\xe5\xdf\xd7\xbd\x7f\xd7\x7b\xcd\xef\x4a\xf7\x1e\x3f\xa6\x7b\xbf\x16\x42\xff\x83\xd0\xbd\x6d\x3e\xd5\x58\x5e\xad\x26\x1f\x2e\xcb\x08\xc5\x5a\x72\x13\x9d\xec\x88\xa2\x8e\x1e\xf3\xc2\x26\x92\x3d\xdd\xc3\xf5\x77\x7b\xa5\xdc\xec\x84\xab\x8c\x2d\xae\x25\xaa\x0e\xf9\x57\xcc\x10\xb5\xbc\x3a\xb5\x3c\x93\x72\xdd\x86\x77\xaa\x32\xfa\x5c\x03\xfe\xfd\x41\x51\xfb\x7d\xa7\x06\x3c\x7e\x58\x03\x0e\xd1\x6b\xf8\xfb\xf1\x19\x54\x0a\xbb\x44\x63\x3a\xfd\x3a\xca\x27\x54\x37\x8b\xa6\xe2\x29\x81\x7e\xfa\x84\xa9\x23\x6d\x7c\x1b\xd2\xca\x39\x32\xa7\xaf\x8b\x0f\x1d\xa7\x9b\xcf\x8c\x12\x13\x1e\x50\x97\xca\xc0\xff\xde\x61\xc7\xb6\x21\xd6\x3f\x5f\x8a\xcf\x0d\xf9\x7c\xd8\xb4\xed\xf2\x84\xf8\x2b\x6a\x59\x4e\xab\xd5\xef\x74\x9d\x3a\x62\xe4\x53\xfd\x33\x62\x18\x37\x1c\xab\xeb\x74\xfb\xdd\x6e\xaf\x8e\x28\xf9\x58\xe7\xfd\x0f\x37\xac\xf6\x91\xdd\x75\xda\x7c\x6d\x44\xbe\xd6\x3f\xa3\x18\x63\x0c\xbf\xa2\x86\x75\xd4\xeb\xf7\xba\xfd\x76\x9d\x99\x8e\x75\xe4\x74\x9d\xb6\xd3\xa9\xf3\x1e\xd1\x6a\xb5\x3b\xed\x7a\xcc\x81\x2c\xbb\xe7\x1c\xb5\x3b\xad\x3a\x6b\x58\xcd\x66\xff\xe8\xc8\x69\xd7\xa9\xe9\x58\x6d\xbb\xd3\x6c\x37\x7b\x1c\xa8\xcc\x09\xa9\x05\xfd\x0e\xbf\x3c\xad\x0d\x7f\x2f\xe9\x20\x63\x78\xb0\x45\x9f\xda\x86\xd5\x48\x77\xb4\xe8\x63\x8a\xfb\x0f\x2a\x30\xad\x58\xbf\xe4\x53\xf8\x3f\x49\xc3\x72\xda\xfd\xae\x03\x3f\x11\xc7\xea\xf5\x9b\xbd\x1e\x7c\x47\x1a\x56\xf3\xa8\xd9\xec\xc1\xcf\xa4\x61\x1d\xf1\x39\x03\x7e\x23\x8e\x75\xd4\x6b\x1e\xb5\xe1\x0f\xf2\x5b\xfd\x67\xf8\x91\xfc\x56\xff\x09\x28\x25\x3f\xd5\xbf\x6b\xfc\x5c\xff\xa7\xe6\xb5\x87\xfe\xfb\xe3\x4d\x5c\x5a\xa9\xc7\x74\xd7\x6a\xff\xc1\x39\x96\x4f\xe2\x0f\xad\xda\x11\xa5\xf5\xd0\xfc\xa3\xce\x1a\x3f\xd6\x63\x7c\x88\x28\x35\xff\x68\xfc\xc8\xa7\xe3\xb0\xe1\x83\x47\xd0\x6f\x7c\x6a\xf3\x71\xe3\xbb\x7a\x84\x0f\x7f\x86\x84\x14\x83\x8b\x57\xf7\xcc\x88\x27\xa3\xdf\xea\x7e\x1d\x39\x0d\x1f\x63\x48\x49\x32\xd0\x86\x2b\x0f\x22\x5c\x7f\xc7\xf5\x37\xf7\xbd\xf7\x7e\xaf\x5c\xa1\xf4\xc4\x1e\xa4\x62\xcc\x4a\x21\x01\xbf\x6a\x60\x8a\xe9\x83\x23\x53\x4c\xff\xd5\xc5\x79\x88\x62\x0a\x8c\xfe\x67\xd4\xfb\x98\xfe\xb7\xeb\xf7\x4f\x2e\xa2\x72\xf0\xd2\xc6\xa2\x39\x57\xdd\xd5\x23\xd7\xbc\x71\xfd\x05\x30\x62\x2a\x1d\xbe\x34\x6c\x69\x5a\x7e\x9d\xf1\x06\x66\x5c\x4d\xca\xd5\x3f\x8a\xb3\x6d\x1f\xae\xfc\x15\x77\xe6\x8a\x9d\x63\xc4\xcc\xb8\x8e\xfe\x59\x0f\xcd\x9f\xea\x5c\x38\x8a\xb4\xef\xea\xa1\xf9\xf3\x46\xda\x6f\xf5\x10\x57\x8d\x40\x0f\xd9\x96\xcd\x1e\xb1\xed\x7a\xf5\x88\x6d\xdb\xf3\x47\x6c\xcb\xfe\x2e\xbe\x57\xda\xe6\xfd\xf2\x88\x6d\x1c\xa3\x8f\x1a\x47\xc5\x56\x8c\x18\xae\xb0\x91\x2a\x64\xe3\x84\x89\x2b\xb7\xa7\x8c\x0f\x75\xa7\x84\x0d\x44\x6f\x5a\xeb\x11\x8c\x37\x0f\x23\xc4\xb2\x56\x0d\x33\xb5\x1a\x62\x84\x02\xad\xbe\xb7\x18\x22\x19\x88\x18\xaf\x31\xdc\x07\x74\xaa\x5d\x71\xcf\x83\xcd\x4e\xa3\x58\x8d\xb6\x22\xf4\x1b\xb1\xb3\xdb\x8d\xd2\xaf\x1a\xcb\x2f\x4d\x87\x27\xfe\xb1\xba\xc5\x48\x42\xd3\x3f\x3d\x3d\x75\xf6\x28\x62\xc3\x68\x04\x31\x3e\xb1\x07\x21\x89\x4c\xc7\xf5\x49\x94\x5d\xec\x0c\xd7\x20\x3a\xdf\x7f\x5b\xa1\xa7\xf6\xc0\x27\x91\x2b\x0a\x2e\x0a\x5d\xaf\x21\x22\x3e\x12\xfb\x94\x91\x25\x28\x80\x84\x44\x16\xaf\x3f\xa4\xc4\x83\x60\xa3\x29\x64\xc9\x22\xf2\x07\x19\x17\xf6\x65\x65\xff\x5a\x0d\x07\x7c\x42\x95\x7b\xba\x3c\x54\x50\x78\x62\x0f\x6c\x37\xc4\xc2\xfb\x16\x8e\x86\xf1\x88\x30\xe4\x0b\x48\xd3\x8c\x47\x79\xbf\x89\xb4\xd3\xa5\xb1\x2e\x00\x43\x0a\x6c\xa4\x22\x63\x6c\x8a\x92\x10\x1b\xf0\x21\x02\xe1\x3c\x30\xbb\x5c\x9f\xe6\xec\x81\x40\x23\x25\xa9\xa7\x92\x76\x75\x37\xb5\x56\x43\x31\x19\xf3\x5e\x1d\x11\xfb\x38\x3c\x49\x8e\x4d\x33\x14\xf7\x2a\x3d\x42\x87\xe1\x08\x7c\x62\x1f\xfb\x27\xe9\xb1\x69\xfa\x60\x9a\x11\x0e\x86\xd1\x88\xc4\xc8\x03\x36\xf4\x0b\xca\x83\x35\xcc\xab\x45\x97\x9d\x50\x2e\xba\xec\x94\xcf\xd2\xec\x94\xd0\x4c\x74\x27\x55\x16\xbe\x92\x2a\x42\x07\xef\xbd\xf7\xae\x49\xd7\xb0\xac\x0a\x72\x25\x96\x8d\x54\x0b\x65\x02\x1e\x69\x38\x90\x10\x1b\x52\x22\x02\xc4\xa9\xc6\xca\x2e\x95\x7a\x5c\x3e\xe4\xb8\x16\x93\x09\xa2\x43\x6f\x84\xf1\x6a\x85\x52\x93\xa0\x90\xf0\x95\x1b\x9f\xe4\x50\x62\x92\xf0\x90\x57\x12\xe3\xbd\xe2\xb2\xe9\x56\x76\x26\x10\x80\x27\x76\xba\x1e\xc6\xe2\x4f\x51\x74\xea\x64\xd3\x78\x7a\x88\x22\x71\x11\x76\x51\x19\xba\x6b\x29\x9d\x29\x66\x06\x8a\x83\x62\xa2\x8d\xb1\x1b\xaf\xe1\x7a\x17\x2f\x20\x2a\xb8\xc1\x39\xa1\x73\xe0\x3e\xaf\x43\x74\x8c\x55\xfa\x01\x41\x31\x11\x4c\xa8\xd5\xe2\x53\x12\x0b\x36\x85\xc4\x27\x71\x06\xb8\x09\x85\xc2\xd3\x58\x74\xc1\x18\x83\x7f\x12\x8b\xee\x17\x63\xbc\x2e\x73\x69\xa3\x04\x9d\x4f\x8f\x16\x54\x06\xde\x51\x9e\xe2\xcd\x30\x04\x7f\xb4\x86\x3b\xe9\xb1\x41\x8b\x0c\x37\x23\x77\x56\x12\xf8\x63\x0a\x97\xe4\xce\x5a\x78\x4b\xb8\xa8\x92\xb2\xed\x51\x9a\xae\xd7\x70\x53\x79\xd3\x75\x0d\xaf\xb6\xed\x56\x85\x8e\xc1\xd5\x8b\x98\x20\x7f\x4b\xa9\xc3\x27\xcd\x81\x1a\x6f\xc5\x61\xa4\x7f\xd2\x1a\x38\xae\x19\x6b\x71\x79\xc4\x38\x61\xaf\x36\xf7\x2a\xc5\x55\x6f\x79\xa5\x22\xc6\xb8\x34\x86\xf8\x58\x5c\x8e\xf6\xf9\xf8\x11\x8e\x08\x35\xc3\x7a\x5c\x8c\x1b\x70\xab\xa9\x65\x1d\x1b\xc3\x99\xf6\xee\xd8\x18\x3e\x68\xef\x4d\x0c\xcf\x1f\x19\x46\xa4\x0c\xc5\x5c\x6f\x42\xbc\xb6\x98\x10\xc4\x2b\x2c\xda\xd1\xc6\xd9\xa8\x24\xee\xa8\xa3\x90\xb0\x13\xe1\x8b\xd4\x17\x75\x66\x7c\x65\x24\xd7\xba\xc8\x23\xea\xf0\x84\x77\x94\x83\xdc\x7e\xdf\xcb\x36\xa0\xe4\x2d\x77\xef\x54\x5e\xff\x56\x47\x79\xf2\x06\xfe\xa1\x87\x81\x91\xd2\x65\x61\x6f\x83\x25\x1a\x38\x6b\x50\xd3\xc1\x9c\x47\x89\xe4\x51\x32\x22\x88\x9a\x09\xae\x7b\x45\x57\x2e\x5f\x1b\xa8\x17\x05\x48\x14\xf5\x07\xf0\xd3\x06\xab\xc0\xdf\x48\xf0\xa1\x97\x6b\x3d\xb5\x5a\x64\xc5\xf4\x9a\xc6\xe2\xb8\x5f\x1f\xcc\xaf\xca\x8e\xb3\x64\x0b\x6b\x8d\x1f\xe7\x8a\x94\xa4\x4d\x3c\x06\xd1\x0c\x85\x0a\xec\xed\x7b\x47\x78\x47\x09\x0f\x0b\xf5\xd3\x06\xbf\xd8\xf9\x3a\x25\xf6\x00\x45\xa7\xe4\x76\xe0\xd8\x6e\x74\x4a\xce\x06\x1d\xfe\xf3\x61\xd0\x74\x1d\x5c\x2f\x67\x72\x1b\xfa\x7b\xc3\xc7\x87\x3b\x73\x56\x1c\x61\xc9\x2a\x48\x0d\xff\x32\x79\xa0\x2a\x0a\xff\xa3\xd5\x92\xf5\xca\x63\x2f\x0b\x52\xfc\x3a\xc9\xa8\xf1\xeb\x44\x12\xc4\x05\xac\x4e\x9a\x18\xc4\x94\xe2\xbb\xfe\x5a\xee\xbe\x56\xf4\xda\xa2\xdd\xf2\x22\x73\xb7\x2e\x59\xc9\x4d\x6c\x3a\x6b\x78\x47\xb6\x54\xe5\x1b\x60\xe4\x1a\x62\xf2\xa2\x68\xbf\x10\x85\xf2\xab\xe8\x1f\x45\x14\xad\x44\x93\x16\x4f\xce\xab\x72\xbe\xf4\xf8\x7c\x89\x93\xa1\x3f\x22\x14\x85\x43\x7f\x24\x36\xaf\x85\x8a\x17\x10\x86\x12\x0c\x63\x12\x70\x35\x61\x4a\x82\xa1\x33\x82\x39\x89\x51\x02\x63\x98\xe2\xbd\xb2\x97\x9a\x39\x9f\x60\xe6\xe4\x1c\x8d\x61\x0a\x73\x0c\x73\xf2\x0a\x15\xb5\x1b\x1f\xce\x71\x7d\x2e\xbe\x14\x1a\xc9\x84\xcc\x33\xb7\x35\xf3\xa1\x3d\x3a\x21\xe3\x63\x3c\xb7\x92\xb9\x3f\x65\x08\x43\xa3\x31\x11\x90\xc7\xf3\xe1\xa4\xe1\x8c\x4e\xa7\xfc\xe3\x32\x5a\xaa\x4f\x1c\xc1\x52\xd9\x6f\x4b\x0a\x26\xa6\xa3\xd7\x8c\x4c\x44\xd5\xd0\x92\x2c\x78\xed\x86\x23\x6c\xdd\xda\xc4\x3f\xb5\x07\xf3\xa1\xdf\x70\x46\xee\x18\x96\xd6\xad\x43\xfc\x93\x09\x4f\x19\xb9\xd3\x2d\xb6\x8c\x4f\x08\x8a\x08\x67\x0e\xae\xd5\xa2\x13\x32\xad\xd5\x16\xc3\x14\xcd\x21\x02\x1b\x26\x78\x24\xbd\x56\x84\xba\x7e\xb1\xc8\x15\x37\xe9\xe7\x98\xe8\x37\x7d\xd4\xa7\xad\xb5\x35\xa2\xc4\xc8\xe0\x34\xd7\x93\x03\xe6\x5e\x20\xbe\x90\xc1\x2e\x5d\x43\x68\x4d\xa2\x85\xe7\x87\x55\x62\xb4\x8d\x91\x55\x61\xa4\x03\xea\x5e\xa0\xa1\x50\xfb\xe8\xd0\x19\x8d\x04\x6e\xc6\x71\xb3\x79\x4c\x93\x79\x14\x4c\x92\xa7\xe1\x8f\x77\xe1\xdf\xf4\x5d\x34\xb8\x40\x45\xc8\x47\xf7\x82\xeb\xef\xa1\x50\x12\xc2\x35\x7c\xda\x1a\xdc\x73\x7d\x40\xea\x7b\x13\xac\xa9\xac\xe2\xab\x1c\xdc\x85\x5d\x43\x78\xd2\x54\x83\xb3\x19\x0b\x97\xa7\x60\x03\x15\x9a\x0c\x3b\x25\x8e\xfe\x29\x6c\x38\x23\x08\x1b\x0e\xff\xac\xa6\x0f\x82\xc2\x86\x83\xeb\x0c\x22\x52\x76\x51\xe2\x11\x91\x25\x1a\x41\x04\xc5\x42\xd1\x33\x91\x4c\x36\x9d\x11\x44\x26\xc7\xd4\xf0\x70\x1d\xf9\x8d\x08\xaf\xd7\xf0\x71\xab\x22\xf9\x5a\xf9\x52\x55\x1e\x26\xd8\x4a\xa2\x98\x71\x45\x5e\x9b\x42\x85\x67\x08\xd4\xac\xa3\x4f\x88\x82\xd5\xeb\xe0\x86\x78\x68\x76\xb0\x36\x18\xe6\x3a\x53\xc3\x39\x6c\x09\x9f\x4d\x5f\x77\x15\xb8\x85\xba\x65\x75\xea\x0b\x44\x1f\xc4\xf6\xf2\x29\xba\x6b\xb5\xb6\x16\x09\x8d\xb3\xa4\xad\x45\x1b\xda\x5a\x9c\x81\x6d\xc3\x84\x4a\x75\x2a\xa9\x67\x5b\x28\x59\xd1\x1e\x8f\x61\xde\x04\xcd\x0a\xd8\x2b\xd6\x70\xef\xab\x2b\x5b\x54\xd5\x27\xa1\xa8\x2e\x78\x95\x2a\x7a\xc4\x97\x46\xba\x8a\x1e\x8d\x30\x1e\x34\x1a\xbe\xeb\x99\x24\xde\x2b\xd7\x24\xdc\x54\xc7\x33\xe2\xb4\x1c\xc2\x61\x79\x26\x67\x87\xfe\x1a\xde\x54\x52\xb8\xd1\x18\xb9\xe7\x9d\x2d\xf2\xfc\x6d\xf2\x56\x2b\xe5\x61\x27\xc6\x7b\xdb\xac\xae\x26\x50\xcf\x93\x5d\x1f\x43\x5e\x2e\xc3\x56\x07\xaf\xe1\x6d\x69\xb0\xc8\x9d\x94\x41\x85\xf0\x70\x6e\x66\x25\x7a\xa6\x10\x01\xf5\x59\x0c\xbb\x71\x69\x82\x3a\x6e\x34\xfc\xdc\x6f\x0e\xe3\x8b\x16\xca\x07\xd9\x6c\xb6\x68\x34\x98\xf8\x1a\x0f\x1b\x0d\x6f\x44\xc2\x92\xab\x33\xf8\xe1\xff\x1b\x69\x2e\x16\x02\xff\x4d\xd2\x5c\x14\xa0\x49\xf3\xdf\x1b\x95\x2d\x56\xfb\xf9\xaa\x3a\xd4\x58\x1b\xe3\xe3\xb8\xd1\x38\xc6\x21\x5f\xda\xd3\x21\x1b\xc6\xa3\x91\x86\xed\xf5\x06\x36\xa1\x5a\x17\xe3\xaf\x12\x44\xb5\x90\xb5\x45\x08\x00\x6f\xa4\xad\xd2\xe5\xa6\x43\x88\x45\x4d\xe2\x63\x8c\x18\x57\xb5\x79\x1d\x12\x7c\x62\xaf\x56\xf6\x01\xe1\x4a\x05\x88\xd3\x6c\x94\x10\x1f\x3c\x12\xe5\xd5\x11\x71\xb9\xc5\xd7\x81\xa7\x62\xa8\xaf\xd7\xf0\x8f\xad\xa1\x2e\x5f\x9d\x08\x52\xb2\x09\x63\x90\xd1\xe9\xc6\xb8\xc1\xa9\x90\x14\x0d\x6c\xd7\x64\xf8\x98\xaf\xf8\xe4\x48\x1f\x7b\xe1\x24\x5a\x20\x5c\x8f\x1a\x8d\x95\xd8\x12\x19\x46\x26\xe3\x13\x22\xff\xe1\x82\x26\xdf\xf8\x0f\xc9\xed\x01\xe8\x1a\x3e\x3f\x3e\x70\x34\x1c\xce\x9b\x8a\x5e\xe9\xf3\x91\x80\x2f\x53\xa8\x54\x26\x50\x64\x92\x8d\xbe\x98\x83\xf0\x56\x17\x7a\x98\x5c\x60\x4a\xc8\x62\x01\xf5\x2b\xd9\xd8\x8a\x3f\x40\x85\x64\x6b\xcb\x95\xc2\x65\x60\xc3\x81\x98\xfc\x80\x28\xfc\x85\x37\x85\xc1\x34\x19\x6f\xa7\x0c\xd6\xcf\xba\x2a\xef\x52\x9b\x6b\x3a\xd9\x75\x87\xd1\x48\xb4\xa8\xd6\xe7\x42\x6d\x01\xf1\x57\xe9\xda\xb4\x24\x4a\xa8\xbf\xbf\x54\x04\xb3\xf8\x15\x15\x0e\x28\xd7\x7b\xd9\xe6\xa4\x9f\xd0\x71\xe5\xed\xcf\x54\xdb\xc1\x14\x40\x9f\xfc\xd9\xbc\x12\xd2\xdb\x84\x7c\x4b\xa7\x95\x80\xda\x85\x64\x2f\x19\xcb\x70\xc8\x55\x70\xe1\x26\xc2\xa8\xf2\x7e\xb2\xaf\xed\xc1\xc6\x51\x52\x79\x07\x56\xbf\xc3\x4c\x1f\x2a\x73\xae\x03\x5e\xfb\x9e\xd0\xb5\x1e\xbe\xd4\x2c\xdc\x7f\x56\x56\xf4\x5a\xbb\xb9\xec\x27\x2c\x9a\xc5\x5e\xe5\x0d\xe0\x77\xda\x0d\xdc\x4c\x25\xfc\x21\xa6\x74\xb2\xf0\xc2\x97\xbe\x37\x8e\x42\xbf\xb2\x56\x1f\x2b\xf2\x9d\x8d\x23\x56\x49\xcc\xd7\x2a\x60\x96\xc6\x33\x5a\x89\x5b\xbb\xd5\xbc\xf0\x6e\xab\x20\x5e\x6a\x10\xd4\xab\xe4\xd2\x7b\x1d\x64\xe2\x57\x03\xbd\xd1\x81\xe2\x59\xe5\x3e\xbb\x76\x87\x79\xe1\x57\x62\xd1\x6e\x31\x2f\x3d\x3f\xae\xac\x53\xa0\xc1\xd0\x78\x91\xb2\xc7\xf6\xf4\xff\x4a\xbd\x90\xf9\x41\x25\x98\x76\xad\x3b\x96\xbe\xcc\x1f\x3c\x5e\x48\xc6\xd5\xb5\x7f\xad\x81\xcc\xd3\xe9\xb4\xba\x30\xed\x0e\x76\x92\x56\xca\xd0\x67\xad\x79\xfd\xf1\x55\x65\xfd\x9f\x97\x61\xde\x84\xe3\x58\x79\xd8\xde\x86\xbd\x2a\xc3\x9e\x31\x5a\x79\x79\xfc\x5c\x03\x13\xb6\xf0\x51\x52\x59\x81\x5f\xb5\x4b\xe2\x5e\xec\x8b\x68\x2e\x15\x60\xcb\x02\xec\x6f\xbf\xb2\xc0\x5f\xbe\xed\xc0\xc4\x98\x33\xb6\x74\x0f\x0f\x6f\x6e\x6e\xac\x9b\x96\x15\xc5\xb3\x43\xe7\xe8\xe8\xe8\xf0\x76\xce\x16\x81\x01\x3e\xb9\x4f\xae\x67\x6e\x05\x54\xd3\xb6\xed\xc3\xe4\x7a\x66\x80\x00\x75\x43\xb8\x0d\xfc\xf0\xaa\x0a\x54\x22\xe4\x5f\x0d\xb8\x5d\x04\x55\x20\xbf\xbd\x7b\xcb\xc1\xfa\x87\xa1\xb7\xa0\xc9\xd2\xe3\xb5\xbf\x5d\x04\x61\xb2\xb3\x68\xf1\xf5\xd0\x58\x43\x54\x15\x50\xc1\x24\x86\x01\x5c\xdd\x10\xae\x5f\x3f\x4c\x91\xe1\x1a\xc5\xde\xf0\x29\xb1\x6b\x35\x43\x60\x30\x0e\xc4\xde\x1c\x95\x1b\x9f\x62\x07\x06\x0b\x53\xf4\x2c\x25\x36\x1d\x8c\xc1\xdf\xbc\xe4\xc0\xf0\xe0\x5e\xd0\xe9\xfa\x43\x36\x82\x20\x1a\x7b\x81\x4b\xd7\x7c\x4d\xec\x55\x10\x14\x15\xe7\x7b\x88\x59\x02\x7a\xf0\xa4\xad\x55\x79\x9c\x77\x13\xd2\xf8\x65\x65\x60\xf7\xf7\x67\x88\x5a\x82\x10\xa0\x12\x2f\x5e\xaf\xab\x0e\x48\x37\x36\x6a\x18\xd9\xc6\x9c\x99\x22\xe6\x6d\xf0\xf9\xd3\x9b\x9c\x67\x44\x1c\x23\x31\x2b\x8b\x2f\xaf\xca\x2f\x01\x73\x98\xc1\x66\xe4\x79\x8a\xdd\x6d\x9a\x63\xa0\x78\xbd\xc6\x88\x61\x6d\x9a\x4e\x32\x4f\x02\xe9\xee\xc3\x0d\x3a\x48\x76\x19\x55\xff\x95\xd2\xf8\xee\x8c\x06\x62\x22\x44\x1c\x7f\x81\x3a\xc8\x61\x87\xf2\x24\x68\xfc\x50\x11\xc1\x93\x8a\x78\x2e\xb6\x0f\xd6\x6b\x98\x3e\x6d\x97\x5c\x60\x10\xb1\xcd\x69\x22\x33\xce\x2b\x89\xc8\x15\x9c\x5c\x7f\xd2\x2a\x32\xd1\xfc\xc0\x97\x1a\x8f\xd0\x8d\xc6\xdc\x6a\x4a\x42\x4b\xaf\xca\xb9\x76\x48\x6f\xa5\x5a\xaa\xde\xe5\x65\x1d\xa2\xce\xc5\x2f\x2e\x26\x1e\xf3\x2e\x2e\x08\x5b\x4f\x34\x17\x13\xf7\x9a\x7f\x09\x77\x02\xde\x72\x49\xc3\xc9\x8b\xb9\x1f\x4c\x76\xfb\xca\x96\x88\x2d\x5f\x44\xe5\x50\xbe\x90\xa9\x46\x84\xf4\xb9\x9d\x7f\x7b\xc8\x79\xf6\x0e\x54\x78\x0d\xa5\x06\x7a\x94\x96\x2d\x89\x81\xcd\x06\xfe\x36\x14\x99\x44\xc8\x7d\x40\x62\x7c\xa7\xf9\x8f\x5e\x64\x96\x16\x7c\x7d\x80\x4b\x21\xcb\xec\xf2\x71\x63\x94\xad\x28\x93\x93\xe0\xd8\x34\x13\x8c\x3c\xc2\x86\xc9\x08\x0f\x90\x57\x34\x48\x34\x4c\x46\x10\x0e\x93\x11\xf1\xb0\x1b\xf3\x5f\x2e\x38\x5c\x3c\xf8\x17\xb9\xe7\x78\x9c\x88\xa3\xc7\x02\x43\xad\x86\x7c\x99\xa5\xd8\x9a\xbe\xd6\x09\x03\x4f\x0e\x0f\xf2\xae\xc7\x98\xdc\x73\xe9\xce\x69\x9b\xe7\xb4\x95\xf6\x38\xa7\xb2\xb4\x84\xd8\xc7\xc9\xc9\x54\x16\x98\xe6\x05\x2e\x78\x81\x01\x59\x9a\x9e\xdc\x74\x4a\x21\xcd\x6b\x01\x09\x30\x0c\xc1\xbe\x1f\xee\x8f\x07\x82\xb2\xd4\x1d\x0f\x83\x11\x49\x75\x94\xf3\x0c\xe5\x78\xa8\xe1\x91\x15\x85\x04\x22\xcc\x59\x23\x58\xa1\xe3\x96\x1c\x12\xd8\x84\xa3\xf8\x5d\x4c\xaa\x26\x7b\x3c\xe4\x74\x8f\x08\x21\x69\xc6\xb4\x54\x63\xda\xdd\x93\x0c\x0c\x38\x27\x67\x95\xe7\x62\xe5\xbe\x5a\xab\x6d\x24\x64\xfe\xa9\x7f\xf1\xe9\xcd\x6a\x45\xf3\x41\xb7\x56\xa3\xe2\xb5\xf8\xaa\x0d\x0d\x97\x65\x9a\xac\x84\xdd\x05\xc2\x49\x54\x36\x69\xc9\xd8\x07\x0c\xaf\x56\x33\x44\x31\xff\xf2\x22\x5a\x2c\x53\x46\x27\x67\x1c\x14\x51\x61\x1f\x80\xab\xb2\x94\xae\xd9\x69\x65\xa8\xab\x9a\xc9\x32\xf0\x19\x3a\xfc\x73\xf5\x25\x31\x0f\x77\xdd\xab\xb3\xc6\x81\x97\x24\x6f\xfd\x84\xad\x56\xc2\xd1\x39\xef\x2b\x39\x28\x7f\x53\x11\x01\xc2\x68\x42\xf3\x01\x48\x0c\x59\xe4\x42\x3a\xd5\x7a\xce\x58\xec\x5f\xa6\x8c\x22\x43\x20\x33\xb0\x0c\xe4\x90\x63\xb9\xdd\xdc\x70\xb8\x11\x7b\xbb\xf2\xc4\x30\x93\xe3\xec\x28\x30\xb6\xbc\xc9\x04\xb1\x61\x38\xc2\xa5\xdb\x71\xdf\x82\x21\xa6\x8b\xe8\x9a\x6e\x22\xf9\x90\x45\x37\x60\xf4\x96\xbd\x88\x42\xbe\x00\x22\x86\xa1\xdf\x65\x53\x00\x7e\x18\xd2\xf8\xf5\xf9\xbb\xb7\xa5\xcf\x57\xd9\x67\x3e\x30\x9e\xf9\x97\x81\x1f\x66\xf7\x5d\xe4\xb8\xf3\x3e\x9a\x50\x4b\x1b\x76\x95\x67\x75\xed\xbc\x49\x21\x58\xc6\xf4\xda\x8f\xd2\x64\x27\x92\xd2\x20\xca\xf2\xc8\x37\x1a\xc4\xd4\x8f\x13\x26\x4a\xd1\x0a\x78\x81\x4a\xb3\x66\xf1\xe1\x5d\xf9\x56\x44\x81\x67\x8f\x72\x31\x97\xfc\xaa\xa4\xf9\xd3\xc6\x54\xf9\x10\x91\xd2\xdd\x3c\xff\x86\x0e\x1c\x65\xf4\xa4\xf1\x4a\xc3\xfa\xf1\x5f\xc4\x6a\x57\x61\x7d\xa5\xcf\x81\xde\xa4\x3c\xdb\x69\xf2\x9a\xab\x9d\x14\x9f\xd8\x79\x38\x18\xf9\x49\x6c\x5f\x66\x06\x97\x42\xd6\xad\xa4\x42\xb2\x75\xf1\xb7\xbe\x46\x7e\x88\x8c\x7d\x43\x6c\x8c\x4b\x16\xba\xdb\x4a\x66\x35\x01\x7b\x4c\xa8\xbb\x25\x1a\x78\x7f\x1d\x53\xc4\xc0\xf9\x37\xe8\x18\x47\x21\xf3\x7c\x3d\x70\xcc\xe6\x1c\xb9\x49\xca\x29\xb1\xd5\xe4\xf8\x95\xcf\x2c\x2f\xc5\xc0\x5c\x0c\x60\xef\xb7\xce\x29\xde\xa8\x14\xd0\x0f\xac\xb2\x9d\xc4\x98\x06\x1e\xa3\x93\x73\x2f\x9e\x51\xb6\x27\xcf\x66\x64\x44\x98\xd5\xaa\x5f\x8b\xb3\x78\x05\xd9\x98\xfa\x31\x4a\x7c\x89\x82\x8b\x1d\xe6\xe3\xa8\x98\x47\xa4\xcc\xe3\x75\x21\x32\x6f\x36\xe8\xc8\x0b\xcf\x8e\x31\xc9\xcb\xbd\x97\x24\x14\xa1\x47\x4b\x48\x74\x8d\x49\x60\xc8\xe3\x7f\xbe\x24\xfe\x5a\x2b\xe1\xed\xa3\x8a\xf9\xc5\x45\x14\x8a\x53\x23\x6d\x28\x82\x90\xd8\xd9\x7e\x5e\x3e\x12\x85\x27\x91\x30\x3a\x8a\x85\x7f\x2e\xa0\x16\x17\xce\x5a\x2d\x16\xbf\x07\x84\xc8\x84\xd5\x2a\x16\xca\x9f\x48\xe0\x0f\x03\x36\x34\x4d\x7f\x44\x62\x69\xa0\x28\x65\x4a\x44\xad\xe2\x03\x34\x0d\x69\x8c\x24\x0a\x88\xad\x40\xa5\x40\x6c\x8d\xbd\x25\x4b\x63\x8a\x8f\x4d\xd3\x1f\x64\x34\x10\xdf\x2d\xc5\xe3\xb8\x88\x42\xbd\xb2\x3f\x94\xcf\xbe\xbf\x6e\xdd\x17\x17\xe5\xe0\xc1\x7b\x37\x5f\x6d\xe4\x3c\x29\xab\x24\x05\x6b\x20\x20\xc2\x25\x3d\x78\xe2\x6c\x2d\xcd\x37\x0b\xc7\xc4\x86\x29\x49\x33\xee\x8c\xc5\xc4\x3e\xc6\xfe\x14\xa1\x84\xa4\xc3\xf1\x08\x8b\xd2\x48\xc6\x98\x5a\x4d\x2a\xc9\x24\x63\x0c\xd6\x25\xb8\x8a\x2d\x89\x64\x4b\x52\xb0\x25\xc9\xd9\xa2\xec\xe2\x27\x93\x47\xb2\x90\xa0\xc8\x44\x62\x0c\xd7\x91\x3f\x41\x89\x3a\x9c\x65\x2a\xaa\xd4\x16\x1a\x49\x31\x04\xbc\x43\x24\xe4\x9e\xbf\xb8\x2a\x8d\x53\xee\xca\x0a\x80\x0c\x74\xc1\x20\x2b\xcc\x0d\x40\x15\xe5\xc6\x6b\x48\x07\xa9\x1c\x82\x12\xec\xe6\xec\x24\xc3\x64\xb4\xae\xbc\x69\x93\xc9\x3b\xb5\x92\x28\x8d\xc7\x92\x17\xe4\x25\xbc\x24\x54\xc8\x7f\xc6\x2d\x15\x4a\x46\xde\xd8\xd6\x85\x3e\x47\xfa\xba\x2c\x06\x33\x69\xff\x1a\x5a\x2f\xd2\x84\x45\x0b\x81\x77\xaf\xe2\xf8\xd6\x1f\xc8\x50\x18\xbe\xf0\x14\xe9\x22\x9e\x65\xb2\xb1\x14\xe6\x79\x91\x21\x7e\x0c\x0c\xf1\x00\xf9\x96\x1f\xfa\x4c\xa6\x33\x88\xad\xcb\xf4\xf2\x32\xa0\x89\x10\xe0\x70\x4c\x03\xef\x32\xe0\xa5\x5b\x13\xca\x3c\x3f\x20\xb1\x7a\xc0\x6e\x39\xe3\x81\x03\x07\x7c\xf5\x4f\xc5\x3d\x60\xbe\x72\x93\x5f\x7c\xbc\x36\xd2\x50\xc6\x1b\x99\x14\x21\x70\x0b\x2d\x0d\x19\x51\xb8\x88\xd2\x84\xd2\x90\xd1\xd8\xf0\xc3\xfc\xdb\xe6\xfa\x79\xb5\x42\x5f\xc9\x7d\x01\xeb\x1a\xe2\x39\xba\xa6\xb1\x01\xe2\x31\xa0\xde\x35\xcd\x92\x53\x66\x64\x56\xf7\xff\x20\x43\x3e\x7c\x8e\x8a\xf1\xf3\xb3\x1e\x23\x6c\x16\x47\xe9\x32\xc9\xd5\x28\x39\xed\x25\x84\xe9\x37\x8d\x4a\x6b\xce\xcf\x68\x38\xdc\x45\xe5\x68\x04\xff\xc0\xeb\xcf\xda\xec\xf7\xeb\xae\xd5\xe0\x67\x48\xc4\x6a\xa8\x34\x2b\x14\xed\x9a\x33\x8b\x8a\x5d\x96\x54\x58\xda\x17\xa7\x02\x3a\xed\xb0\xf3\xb8\x48\x99\x55\xc6\xc2\x1e\x22\xcb\x2c\x4d\xaf\xd8\xd0\x1f\x41\x40\xf2\x28\x49\x63\x12\x0e\x7d\xfd\xd4\x20\xc0\x30\x25\xf6\xf1\x54\xac\xad\xa6\x58\x98\x52\x4c\xc5\x42\xc5\x23\x6a\x30\x8f\x20\x2a\x86\xf1\xa9\x3a\x17\x32\xb2\x14\xde\x9a\x11\x07\xd7\x56\x1a\xf9\x23\x86\xf1\x70\xca\xd7\x57\x7b\x25\xce\x86\xe5\x56\x10\x51\xf8\x38\x93\x36\x57\x98\x3b\xf9\x34\x7e\x32\x9f\x86\x23\xf0\xf9\x9f\x88\xd8\xc7\x91\x60\x51\x84\xf5\xc5\xa6\x30\xeb\x4d\x0b\x06\x05\xc4\x3e\x0e\xc4\x32\x31\xe0\xcb\xc4\x64\x18\x48\x8b\x45\xa5\xa7\x48\x8e\x78\x50\xd4\x16\x02\xce\x11\xf0\x55\xe4\x6c\xbc\x55\x55\x1f\xaf\x41\x46\xe9\x78\x5a\xdd\xa6\xff\x51\x19\x90\x12\x90\x10\xaf\x30\xe5\x0d\xa5\xa9\x8d\xaa\x6a\x22\xab\x1a\x11\x4f\x56\xb5\xaa\xd1\x03\xf0\x70\xad\xa6\x06\xca\xe8\xd1\xc6\xe4\xb9\xdc\xad\x43\xca\xc2\x55\xc4\x52\xa3\x5c\xde\x07\xf0\xff\xa6\x08\x63\x18\xf3\xc9\x5c\xa4\xd0\x52\x08\x3d\x8a\xef\x97\x43\xd3\x1c\x8f\x08\x5d\x63\x58\x66\xd7\x3d\x09\x1b\x5c\xbb\x0b\xbe\x0e\xd1\x09\xe0\xda\x80\xc6\xb2\xbd\x1d\x8c\x8e\xcb\x26\xec\x79\xdf\x8f\xd7\x05\xf3\xbd\x62\x81\x5f\x36\xce\xe2\x5c\xd4\x5f\x83\xf2\xeb\x98\xd8\xc7\x63\x61\x9f\x34\x96\xe3\xfb\x94\xf8\xc3\xf1\x08\xe6\x24\xe2\x3f\x85\x4d\x15\x2c\xb3\x4e\x36\x85\x69\xad\x36\x2d\x58\x3e\x06\x1f\xc3\x1d\x59\x66\x80\x33\x31\x5b\x6b\xc5\xdc\x61\xb8\x24\xc9\x66\xda\x5e\x88\xa6\x30\x87\x19\x5c\x42\x50\xfe\x36\xc1\xb0\x04\x56\xd4\xed\x02\x6e\xe0\x15\xb1\xe1\x96\xd8\xc7\xaf\x4e\xee\x8e\x4d\xf3\x15\x57\x0b\x2e\xc8\x6c\xf8\x6a\x24\xb5\xac\x57\xa7\xe4\xb6\x56\x43\xb7\xe4\x95\xe9\xe0\xe3\x03\x74\x43\x2e\x87\xb7\x5c\x46\x4c\xf3\xf6\xe4\xee\x18\x1f\x5f\xa8\xfd\xb2\x9b\xd5\x4a\xac\x7a\x94\x5d\x15\x92\xcc\xfa\x8c\x12\xf0\x31\xb6\x2e\xc4\x48\x4e\x52\x48\xac\x0b\x7a\xeb\x33\x3e\xdb\xaf\x41\x0e\xef\x15\xa7\x78\x22\xa7\x6c\x41\x01\xb3\x5a\xe9\xcd\x69\x2d\xbc\x25\x9a\xe3\x2d\x99\xe3\x88\x1f\xc3\x76\xeb\xb3\xa7\x21\xe3\x7a\xfd\x8e\x30\xa5\x52\x3a\x39\x5d\x08\x2b\xc9\xcb\x04\x8e\xe3\x47\x45\xe7\xd8\x61\x7c\x85\x42\xec\x86\x6a\xad\x2a\x1d\x3c\x81\xb4\x25\x60\xf2\x1a\x82\x08\x27\x9f\x1d\x97\x47\xd9\x82\x1a\xbb\x31\x8a\x30\x84\xb5\x9a\x3f\x08\x2d\x71\xee\x85\x7c\x6c\x45\xf1\x84\x13\xe2\xfa\x6b\x10\x69\x6e\xa5\xa9\xc7\xe6\x10\x42\xf3\xe7\xb0\x18\x4e\x7c\x12\x17\x96\x17\xb9\xaf\x03\x3e\x7c\x81\xa7\xdf\x3e\xe0\xba\x96\x7d\x9c\x08\x35\x3b\xc9\x47\x9a\x14\x02\xb1\x55\x04\x63\x12\xf3\x9f\x29\x09\x8a\x5d\x32\x2f\xdb\x69\xca\xf6\xc7\x60\x42\xec\xe3\x89\xd0\x45\x27\x18\xa5\x24\x18\x4e\x46\xab\xd5\x78\x38\x11\x63\xed\x7c\x38\xc9\x77\xbc\x8e\x93\x93\x50\x14\x24\x70\xf0\x12\xca\x83\x8f\xb7\xd5\x76\x82\x25\xd5\xe1\x5b\x4b\x6c\x50\x47\xee\xb4\xd8\xc2\x28\x9d\xb2\x0b\x53\x94\x21\xe3\x13\x87\x5f\x5c\xc7\xf0\x88\x3f\x8c\x46\xc7\x8d\x46\x24\x6c\x5b\x50\x28\xde\xc5\x6c\x59\xab\xb5\xff\x0c\x77\x2e\xb2\xf8\xf8\xe9\xed\x5c\x6c\x87\xe0\x09\x2e\xe7\xc2\xc3\x84\x47\x90\x24\x8a\xcb\x7a\x43\xae\xab\x30\x3d\x72\xd1\x3e\xab\xd5\xe2\x01\x45\xac\x18\x3d\xe2\x62\x06\x76\x0f\x58\xe3\x20\x5e\x53\x71\x93\xef\x4e\xbf\x6a\x52\x62\x47\x58\x34\xbf\x5f\x6e\x6e\x39\x73\x86\x62\xe6\x2c\xed\xd3\xc6\x5b\x53\x27\x67\x86\x96\x39\xcd\x46\xc2\x54\x8c\x84\x62\x3a\x1d\x0b\x6e\x89\xb1\xc9\xc3\x7b\x81\x34\x55\x62\x78\x5d\x6a\x55\x7f\xa3\x55\x33\x39\x5f\x03\x1f\x2b\xb7\xef\xa3\x15\x51\x1d\xed\x5c\x3e\xf4\x34\xd9\x4d\xa9\x52\xca\xc5\xee\xfe\x46\x54\xcd\x35\xf0\x15\x7f\x45\xd0\xd7\x1d\x33\x15\x97\x1e\xbd\xb1\x36\x26\x2c\x7c\x4f\x87\xa6\xc9\x64\xc1\x6b\x11\xa2\x8d\xe3\x7f\x92\x58\xda\xba\x54\x32\x31\xa3\xb3\x42\x2c\xa5\x50\xfa\xc4\x86\x28\xb7\x1c\x3e\xf6\x45\x6f\x54\xf1\xde\x3c\x31\xc1\x0b\x4b\xf8\xdc\x62\x6d\xad\xef\x4d\x01\xaf\xc4\x76\x4d\xed\x07\xeb\x63\x9a\x54\xd6\x83\x2e\x96\xe5\x70\xc0\x32\xd7\x81\xdc\x1d\x8a\x26\xc2\x31\x10\xcf\xfd\xb4\xb1\xc8\xd6\xc6\x20\x71\xa3\xc9\x34\xe3\x92\xa9\x0b\x1b\xc6\x23\x65\xc8\x94\x9f\x04\x78\x42\x6b\xf1\x30\xf2\x49\x24\xaf\x94\xa8\x59\xd4\x07\xbf\xe8\x04\x1e\x44\x1b\x1d\xca\x63\x2c\x76\x2b\x0c\x84\xe4\x79\x24\xe7\xd8\x86\x0d\xed\x49\xb3\x34\xee\xcb\xea\xe5\x67\x80\xea\xe0\x32\x2c\x6d\xc5\xbe\x3f\x43\xb1\x3a\x81\x54\x00\x7c\xbc\x2f\x6d\xd6\xc6\xb9\xb8\x17\xac\xce\x8c\x91\x06\xf1\x93\x8e\x43\xb5\xe5\xb8\x5e\xf2\x37\x9f\x7d\x56\xe1\x11\x67\x36\x6e\xa5\xb1\xf3\x36\x71\xda\x16\xfb\x86\x44\x71\x55\xb5\x32\x8c\xed\x5e\x36\xbb\x3d\xb1\x12\xea\xce\x68\x99\xc7\x1b\x40\x10\x97\xeb\xfa\x9f\x26\x4b\x1c\xdb\x6e\x92\x21\xee\x3d\xae\xd7\xee\x53\xb9\xf2\x94\x7a\xb0\xa7\xd4\xa3\x8a\x12\x26\x0e\x90\x63\x60\x22\xae\x20\xbb\x0b\xe8\x96\x06\xb3\xc3\x50\xfc\xd4\x19\x54\xc8\xe1\x13\xe4\x46\x9e\xa8\x48\x4e\x69\xee\x0e\x77\x09\xcf\x0e\x72\x36\xda\x27\x7c\xa4\x7d\xc2\xc1\x43\x65\xbb\xda\xc7\xa4\x38\xb7\x41\x14\xc2\x6d\x11\xa9\x26\x62\x27\x06\xb1\x83\xb9\xc6\xe2\x29\x93\x15\xc3\x70\x63\x8c\xdd\x4b\xa4\x8d\x0f\x40\xf1\x1a\x96\x2a\x5f\x75\x5b\xfe\x27\x9a\x40\xdb\x63\x14\x81\x7e\x1f\x67\xfa\xbf\xde\x25\xca\x65\xb9\xea\x97\xc4\x4f\x94\x55\x11\xd4\x59\xb1\x0e\xab\x36\x92\xbc\x12\x81\xa2\xc5\xce\x3a\x9d\x54\x8e\xcc\x17\x52\x47\xde\x35\x38\x17\xf3\xe2\x8d\xde\x04\x38\xdb\x17\x8e\x0b\xf5\xce\x57\x37\x0a\x0f\xb8\x96\x26\xb7\xea\x51\x3c\xf4\x47\x99\x39\xe6\x41\x36\xa1\x1f\xd8\x15\xc3\xf3\xbf\xc4\x5c\xb4\x83\xaf\x83\x5b\xf7\x4c\x46\xff\x15\x76\x1f\xee\x63\x4d\x7d\xab\xc1\x3e\x0c\x79\x56\x40\xe6\x83\x01\xa3\xb7\xac\x2a\xdb\xd6\x85\x91\xa2\xba\x99\xe5\xc7\x07\xb7\xaa\xe2\xf4\x11\x72\x33\x4f\x11\xd5\x32\xb5\x75\x10\x98\x89\xbb\x61\xb8\xec\x69\x13\x96\x9e\x9b\x0a\xb9\x2a\x4b\x95\x0e\xb0\x06\x61\x8f\xf5\xaf\xd5\xff\xf9\x7f\x57\xfd\x8b\x73\xce\x6f\xaf\x7d\x91\xb7\xb2\xee\xf9\xe7\x35\xc4\x9e\x9f\xec\xf4\xe8\x28\x2a\x7a\x85\xd7\x20\x82\x3d\x3c\x08\x75\x8e\xd7\xca\xa8\xa5\xe2\x98\x6d\xc7\x1d\x23\x4f\x73\xe1\xa0\xe6\xab\x80\x8e\x19\xda\x51\x4e\xe9\xf0\xb6\x9a\x73\x78\x9d\xdb\xc4\x54\x0e\x15\x0f\x10\x02\x61\xce\xe7\x17\xd5\xe3\x24\x73\x53\xc4\xbe\x85\xe0\xd2\x02\x6e\x57\xc0\xfe\xb0\x3a\x5d\x6e\x97\x88\xfa\x6c\x9e\x5e\x56\x70\xff\x1d\x5f\xf7\x04\x51\x48\x77\x9e\x2c\x2a\x4a\xe9\xe0\xa3\xfb\x49\xee\xbf\xa5\x8b\xa7\x4b\x7c\x36\x55\x69\x7b\xba\x40\xcb\x32\x95\x7d\x58\x43\xb4\x63\x63\x44\x98\xf9\x57\x9a\x76\x54\xda\x44\x88\x9d\x97\x0a\x59\x32\xc4\xe2\x27\xb7\x52\xb4\x36\xad\x14\x35\xdb\xc4\xd8\x74\x30\xd0\xb2\xa9\x22\xa8\x53\x20\x79\x00\xc4\xa7\x9c\xb5\xda\x63\x29\xb6\xf2\xf6\x84\x39\x7e\xc5\x64\x22\x67\x93\x84\xb0\xc1\x0f\xee\x5b\xd0\xaf\xb8\x1d\x38\x5c\x82\xec\xe3\x50\xec\xe9\x85\xb8\x68\x9b\x04\x45\xc3\x70\x24\xef\x24\x97\xd6\x1a\x32\x78\x70\x99\x87\xf2\x08\xb3\xbc\x69\x62\xc3\x38\x5f\x41\x1f\x07\x27\x63\xb1\x1b\x2b\xef\x9a\xd8\x7c\x71\x3d\x0c\x46\x79\xb1\xfe\x14\x89\x15\x4f\x58\x9c\xda\xa5\xea\xd4\xce\xcf\x4e\xed\xd2\xd2\xa9\x5d\x2a\xcf\xd0\xa4\x67\x43\x8f\x95\x16\x65\x9b\x66\x64\xff\xc6\x3c\x97\xd9\x26\xab\xc9\x07\x76\x76\xe0\xc7\xd5\x85\x2d\x54\x38\xd7\x1b\xd4\x59\xf9\x5f\xe4\x57\xf8\xa5\x42\xd4\x8c\x44\xb8\x1f\xd5\x3b\xff\xd6\x39\xce\xa6\x85\xdb\x68\x04\xbb\x0f\x79\xa4\xcb\x20\x9e\x9f\xca\x03\x1f\xf8\xbd\x4a\xc2\x7f\x41\x7c\x84\x91\xeb\xcf\x5d\xb8\xf8\x34\xfc\x4f\x62\x17\x67\x53\x3f\x95\xb7\x28\xbf\x2b\x8e\xa1\xbe\xcb\x86\xf9\x0b\x62\xfc\x5f\x86\x89\x4c\xf3\x9f\xb8\xf0\x2d\xdd\xea\xe2\xf5\x77\xda\x59\xd3\x4f\xbb\xce\x9d\xbe\x83\x19\x65\x0f\x2e\xc1\x8f\x0f\x10\xdb\xf7\xc3\x7d\x8a\xa5\x5a\x24\x8c\x7c\x8b\x1d\xaa\x4c\x2d\xca\x2f\xd7\x0c\xd9\x68\x0d\x09\xdd\x1c\x7b\x8b\xcf\x02\x2b\x57\xf4\xaa\x4c\x32\x4a\x86\x10\xa2\xd8\x5a\x4d\x69\x95\x79\xd6\xc7\x1d\x05\x5f\x28\x19\xf8\x99\x54\xed\xa4\x00\x23\x2f\x8f\x29\x61\xfa\xd9\xec\x31\x66\x84\xe6\x3d\x73\x0d\xbf\x55\x3a\xcb\x50\xf6\x66\x67\xbf\xfc\x33\x3f\x87\xa4\xc2\x67\x81\x3a\x52\x3d\xfb\xe5\x9f\x1f\x23\x3f\x64\xd9\x12\x65\x33\x5d\xdb\xf6\xb5\x6e\x09\xb3\xc6\x81\x4f\x43\xf6\x1b\x84\xd6\x5d\xfe\xf6\x3b\x0c\x51\x48\x42\x6b\xe1\xb1\xd8\xbf\x3d\x8f\xbd\x30\x99\x46\xf1\x42\x5a\x72\x9d\x8d\x63\x4a\xc3\x17\xe7\xef\xc4\x04\xae\x6e\xfd\x63\x6c\xdd\x72\x14\xd2\x44\xd7\x27\x02\xf2\x1f\x51\x2a\x6e\xa3\xbc\x10\x48\x3f\xf1\x71\x3f\xf7\x64\x91\x17\xdc\xf0\x85\xeb\x99\x06\x55\x09\x6f\xe9\x94\x41\x4e\x48\xc3\xb7\x58\xb4\xcc\x3f\x9e\x47\xcb\xd1\x1a\xfe\xa8\x30\xd3\xfe\xb9\xa8\x17\xb3\xc6\x73\x2f\x9c\xd1\xc9\x79\x94\x8e\xe7\x34\x11\x43\xf1\x66\xe2\xd0\x1e\x61\xf8\x4d\xd9\x9e\xfe\xf8\x4d\x7d\xb4\xba\x8b\x4a\x0b\xd2\x27\x75\xd2\x4c\x65\x1b\x8e\x5c\x2a\x7b\x2b\xa5\x5b\xb7\xd2\xb6\x46\xfd\x96\x18\xdf\x19\x88\xba\x6e\xd4\x46\x0b\xfb\xa6\x36\xdc\x58\x6e\xe3\xe1\xda\xf9\xa6\x9b\x72\x5a\x21\xee\x3e\xfa\x13\x1a\x32\x7f\xea\xd3\x98\x10\x12\x67\xa3\x30\xe7\x48\xb1\xb7\x2b\xf7\xe0\x18\x7d\xc0\x23\xd0\xcf\x22\xdc\xc3\x06\x11\x6a\xaf\x4c\x23\x61\x63\xa7\x36\xdf\x3e\xf3\x87\xf1\x88\x88\x66\x18\x6a\xfe\x80\xfc\xfc\xf6\x96\x94\xdd\xaa\xdb\x12\xbf\xeb\x77\xa3\xa8\xb7\xe3\x06\x95\x76\x73\x4b\x6c\x5a\x54\xc1\xfc\xa4\xdf\x07\x62\xe3\x39\x7d\x2c\x56\xa4\x38\xd0\xaf\x82\xf9\x43\x8b\x57\x59\xdc\x86\xd8\x86\x8b\x2a\xe0\x2a\xaf\xb5\xe8\x17\xc0\x44\x07\x10\x5d\xb8\x0a\xf2\x37\xed\x1a\x8d\x90\xc8\x47\x7c\x76\xe5\xa7\xd8\x55\x70\x3f\x6e\xc2\xed\xb8\x2a\xf6\xd7\x26\x5c\x75\x23\xa4\xdb\x60\x3b\x0a\x1e\x6b\x90\xec\xae\xfa\xc2\x90\x16\x14\x53\x08\x5e\x15\x0c\xa5\x1b\x40\xd5\xec\x65\x1a\xd8\x8d\x1f\x4e\xa2\x9b\x47\x3c\xad\xd1\xeb\x1d\x77\x8a\xb4\x1b\x63\xe3\xc2\x2a\x66\xc7\x1d\xac\x27\xc5\x8c\x8c\x91\x83\x37\xa2\x3f\x66\xee\xc1\xa4\xbf\x2f\x5a\xa7\x5c\x55\xac\x67\x53\x06\x42\x4e\xa3\x55\xa7\x66\xab\x1e\x35\x3c\x5c\x67\x26\x6a\x37\xba\xf5\xc8\x6c\xd5\x3d\x5c\x8f\x4d\xe4\x98\xd9\x57\x91\x12\x9a\x5e\xdd\xc7\x87\xdd\xb5\xc4\xf6\xf0\x62\x2e\x63\xab\x7e\x31\xc3\xab\xd6\x8b\x34\x23\x40\x33\xae\x33\xcd\x8c\x28\xd1\xa7\x31\xd6\xa0\x85\xc3\x27\x8e\x2a\x3e\x75\xfa\xf6\x6a\x15\x9f\x34\x44\x2c\x80\x46\xab\x6b\xd7\x35\xd7\xe5\xf1\x61\xab\x6b\x63\x37\xc6\x6e\x84\x72\x4f\xec\xcc\xd5\xed\x90\xd3\x87\xf1\x6f\xe7\x94\x5e\x49\xf2\xfc\xb4\x30\x51\xac\xe0\x86\x23\x9c\xc0\x9b\x14\x0f\xd2\x92\xc7\xb6\xe2\x34\xbe\xb1\x73\xdf\x90\x12\xcd\xe1\x6f\x9c\x7b\xdf\xe1\xef\x1c\xac\x41\x21\x26\xce\x61\x5c\x88\x45\xe1\x3c\xb3\xc8\x68\x86\x75\xb9\xad\x27\xfc\xc4\xd1\xa2\x3a\x0c\x0f\x62\x97\x89\x0f\x9b\x12\x93\x59\x81\xc5\x08\x51\x15\x34\x14\x85\xd6\x54\xac\xc4\xad\x18\x10\x2b\x25\x32\x9e\x88\x21\x22\x22\x10\x32\x30\xe9\x94\x3a\x16\x9e\x77\x99\x74\x4c\x9d\xa2\xdc\x55\x25\xb0\xc2\x13\xe7\xa6\x10\xe8\xc6\xec\x31\xf1\x11\xc3\x40\xad\x19\x89\xe4\xc3\x25\xf1\xe4\x43\xe6\x95\x32\x11\xaf\x22\xaa\x42\x36\xf0\x59\x33\x6f\xb1\xf0\x08\x05\x7f\x5d\xea\x08\xe3\x2a\x01\x65\xfa\x5d\x72\x56\x78\x04\x2b\xa6\x9c\x08\x97\xcc\x22\xa2\xb2\x59\x44\x84\x95\xd3\x00\xfb\x38\x16\x53\x65\x8c\xfd\x32\x67\xf8\xec\x04\x1e\x9f\xac\x7c\x2b\x5e\xad\x6c\x48\xe4\xf3\x8c\x3f\xa7\xf2\xf9\x72\xb5\xca\x0f\xa6\x3c\x42\x91\xc7\xcb\xa4\x28\xe1\x65\x51\x94\x62\xf0\xf3\x0a\x3b\x55\x61\xa1\x7d\x2b\x26\x62\x07\xc0\xb7\x66\x44\x3a\x99\xb4\x2e\x85\x9d\x15\xf8\x82\x37\xeb\x71\xc5\x3a\xb4\xf0\xc0\xb7\xd5\x0a\xb9\x25\x40\x7c\x42\xec\x41\x4c\x6c\x57\xc4\x6e\x41\x31\x71\x80\x35\x1c\xec\x6a\xae\x4a\xe2\x3a\xe3\x2d\x2f\x5c\xdf\x09\x0f\x78\xa6\x33\xe2\x2c\x3b\xb5\x07\xd2\xe1\x89\xdb\xe4\xe3\x0a\x67\xdb\x09\x6b\x38\x3c\xd1\x6c\xf2\x44\xaf\x11\xe5\xd3\x36\x42\x71\x23\x3c\x64\xb8\xce\x20\x11\x0e\xb5\x52\xbe\x24\x82\x87\xc8\xde\x4d\xb4\x46\x1c\x42\xf1\x33\xe2\xe0\x13\x7b\x60\x9a\xb1\x1b\xe3\x8c\x56\x14\x9a\xbc\x1e\xcf\x98\xa2\x99\x3f\x24\x32\x5d\xa6\xa6\xf2\xa5\xc9\x5f\xaa\xa8\x14\x96\x67\x92\xca\xbd\x6d\x2f\x83\xc5\x3c\xd1\x20\xc2\xf5\x59\xe5\x20\xc7\xea\xb1\x3e\x2c\xce\x35\xcf\xdd\xf3\xaa\x8d\x9e\xb3\xbb\xc5\x65\x14\xd4\x6a\x46\x22\x1e\x36\x3f\x58\x3e\xa3\x31\x57\x67\xaa\x76\xee\x32\x55\xb4\x72\xf3\x8d\xd6\x6a\x0f\x14\x47\x4b\x91\x85\x09\xc9\xd3\x0f\xb2\xe7\x62\x7d\x36\xc8\x68\x73\xf3\x02\xf9\x90\xb1\x96\x5e\x96\x0e\x87\x0d\x73\x34\x40\x03\xf7\xcb\xc4\xfc\x62\x0d\xbe\x4c\xea\x2b\xf1\x63\xe2\x2c\xc8\x2f\xff\x2e\x62\xfc\x1e\xce\xca\xc1\x73\x27\x6a\xbd\x03\xc6\x4c\x44\xcb\xad\x58\xe0\x28\xbf\x7e\x13\x2b\xf0\x12\xf6\x26\x9c\xd0\x5b\xb2\xd4\x9e\x73\x97\x87\x43\xde\xba\xca\x2f\x81\xbc\x34\xca\xf8\xdf\x63\x14\x6b\xd1\xb8\x84\x83\x0b\x15\x77\x8b\x61\x7c\x8c\x85\x11\xaa\xd8\xb3\xc1\xa7\x91\x72\xa6\x29\x37\x65\x22\xf0\x31\x24\x43\x6f\x34\xe0\x7f\x4c\xe2\xbb\xc9\xd0\x34\xbd\x11\xf1\x31\xa0\x98\xc4\x7c\xc1\x40\x08\xe1\xeb\x22\xfe\x38\xd0\x40\xc3\x0c\x34\x74\x51\xf6\x94\x06\x01\x28\x2b\xb4\x7b\xdf\xf5\xe0\xd6\x9d\x4a\x13\x5b\xe1\xf6\x4b\xab\x51\xee\x8a\xe1\x84\x15\x4e\x4b\x35\xb2\x76\x12\x55\x6c\x07\x0d\xd2\xa1\x3d\x7a\x70\xa3\x57\x1b\x8f\x11\x93\xe1\x6b\x10\xcf\x64\xdd\xe2\x47\xb6\x71\x8b\x99\x1f\x31\x11\x5e\x2c\x33\xd0\x86\xaa\x05\x7b\xac\xf6\x9e\x98\xd8\x04\x4a\x86\x28\x26\xa9\xd8\x03\xf2\x47\x24\xb6\x6e\xb5\x7d\xd6\xec\x46\x82\x81\xd7\xfa\x25\xc9\x6b\xad\xf7\x5c\xff\x6f\xd8\x7b\xee\x84\xbd\xdb\x45\xc9\xe7\xa2\xee\x93\xe7\x5a\xdb\xd9\x55\xcb\xac\xd5\xca\xb8\x8c\xa2\x80\x7a\x9c\x2c\xe2\x0f\x22\xd1\x10\x46\x98\x2e\x2e\x69\x2c\x93\xa6\x6e\xb1\x5a\x25\x3e\x1f\xe0\xf3\xc9\xcb\x13\xd3\xfa\x00\x31\x12\x43\x80\xdd\x85\xcb\x74\xa7\xd9\xa1\xe5\x0d\x82\x72\xd2\x4b\x8f\xd1\x41\xd5\xc6\x03\xef\xc6\xfc\xe3\xde\xae\x41\xb1\x50\x5a\x62\x2b\xa1\xec\xdc\x5f\x50\xc4\x87\xc7\x10\x43\xbc\x5e\x6f\x78\xf2\x62\xb8\xaa\x90\xed\x55\x23\x1d\x68\x06\x5e\xf9\xb5\x5a\xd7\xde\xf0\x11\xb9\x61\xf8\xa5\x4d\xe7\xbe\x98\xce\x85\xef\xd9\x1b\x44\x87\xf1\x48\x2d\x35\x85\xc9\x56\xb6\x0c\x15\x33\x3b\x4f\xdf\x9a\x8e\x94\x70\xeb\xb8\x04\x30\x47\xa8\x89\xb3\x57\x3a\xd4\xcc\xad\x37\x99\xdc\xd4\xfc\x30\xd5\x85\x4b\xfb\x9a\x6d\x22\xe5\xb1\x59\x76\x71\xe5\x7e\x0d\x3e\xb9\x5f\xcb\x7a\xed\xfb\x52\x38\x0e\x08\xe1\x52\x1b\x89\xb6\xe6\x4d\x3f\x17\xd1\x6a\x10\x25\xf7\xeb\xcc\x54\x8f\x2f\xd3\x4b\x10\x8c\x43\x30\x01\xc1\xb0\x40\x45\x07\xe1\x26\x77\x5c\xff\x51\x86\x08\x22\xe4\xfa\x3d\x2c\xf3\xc2\x5f\xaf\xdd\x29\x56\x5b\x2b\xaf\xbe\x79\x46\xd5\xa3\xd7\xf1\xc9\x15\xaf\xd7\x70\x5b\x0a\x2e\x73\x46\xee\x85\x47\x86\xc0\x63\xf4\x37\xd7\x86\xfc\xe5\x77\xd7\x86\x38\x62\x1e\xa3\xae\x0d\xc9\x15\xbd\xe1\x5f\x93\xb1\x17\xd0\xdf\x5c\x47\x3e\xfc\xee\x3a\x6b\xf8\xb0\xb1\xdb\x92\x5d\xed\x55\xe6\x62\x90\x66\x4b\x2a\x4f\xf3\x1e\x4a\xeb\x9c\x1c\x26\x9d\x0c\x1c\x12\x0f\xd8\x21\xf1\x30\xa0\x94\xd0\x7a\x2c\xc4\xbc\x56\x43\x71\x83\xd0\x7a\x0a\x61\x83\xb0\x7a\x8a\x01\xe9\x5e\xe3\xe3\x7a\x6c\x86\xf5\x50\x20\x88\x0f\x49\x02\x21\xff\x93\x1e\x92\x04\x03\xad\x87\x27\xac\x1e\x0b\xab\xea\x06\x05\x46\x1a\x0c\x52\xd2\x48\xf9\x6c\xe7\x61\xd0\xeb\xeb\xeb\xf5\x8d\xb2\xfa\x6a\x9e\xe7\x19\x50\x5c\xbf\x55\xf5\xcf\xd3\x51\x2a\x12\x25\x33\xbc\x8c\x19\x89\xae\xba\x68\x61\xfa\xf4\x65\x84\xa6\xcb\xab\xb3\x18\x2a\x1d\x27\x9a\xc6\xbe\xe1\x1a\xc6\x7a\x53\x44\x8a\x8b\x3f\xf9\x2c\x9d\x4d\x72\x44\xcc\x68\x4a\x3b\xd6\x1a\x21\xf7\xc0\x2a\xa3\x01\x1c\x10\xe2\xaf\x56\xe1\x01\x21\xaa\x55\x52\xa2\xbc\x87\x19\x79\xe5\x91\x01\xf2\xf2\xbb\xfc\x89\xf1\x5e\x92\xcf\xb7\x69\xa3\x2d\x66\x5c\x2a\x4c\xda\x45\x42\x53\x24\x84\x10\xf1\x09\x87\x06\x09\x45\xfe\x6a\x15\x49\x5b\xc7\x4d\xc4\xa6\x6f\x32\x33\x32\x63\xbc\x46\x91\x55\xb0\x1e\xb4\x97\xdf\xc1\xd3\xbf\x78\xfa\x17\xae\x51\x6e\x2c\xf1\xb9\x74\xf1\x5a\xb1\x01\xa2\x0d\xc6\x97\xba\x03\x66\x12\x11\xb4\xa4\x41\xf9\x2b\x6f\x79\x91\x80\x35\xb5\x21\x96\x4f\x3e\x8a\xb1\x69\xc8\x86\xce\x6a\x1d\x62\x55\x23\xd1\xcd\x30\x76\x59\xad\x56\x09\x6e\x32\x33\x14\xf5\x90\x09\xe0\x65\x0f\xc9\x6e\x1a\x77\x50\x20\x24\x6a\x07\x01\x5b\xe5\x2b\xe0\xbc\x78\xf1\x0e\x9e\xfa\xdd\x2e\x3c\x94\xf7\xc5\x54\xeb\xc7\xab\x15\x3b\x20\x24\xcc\xe4\x28\xca\x50\x47\x1c\x35\x97\xdd\x8c\x0e\x03\xb2\x07\x6c\xe0\x3d\x2f\xa7\x3c\xc9\x45\x20\x96\x22\x90\x28\x7a\x99\xd0\xc2\xa4\x53\x35\x87\x88\x73\x33\xfe\x13\xae\x56\x55\x85\x98\xb1\x69\x80\x61\x86\x32\x38\x1a\xaf\x87\xe8\x41\xa0\x1e\xb8\x18\xa8\x14\x2f\x4b\x11\xcd\x1f\x11\x4f\x2a\x81\x95\xe7\x1a\x10\x73\x25\x36\x2c\x6e\xbb\x99\xa6\x70\x91\x9e\x0c\xb9\x86\xc5\x47\x60\xae\x31\xb1\x5d\x1a\xd3\x5a\xe8\x12\x57\xe4\x39\xaa\xd8\xb7\x0e\xa3\x90\xca\x88\xad\x67\x2e\xba\x5b\xad\xd0\x1d\xd9\xbc\x75\xa5\xfc\x7b\x18\x2f\xdf\xfc\x62\x60\x98\x91\x5d\x5b\xd6\x70\xa9\x7d\x2a\x6e\xae\x63\xb8\x53\x56\x47\x2c\x3b\x1a\x10\x37\x14\x2e\xb7\x2f\xa6\xcf\x4a\xa7\xe5\x77\x78\xd7\x3d\x75\x23\xc7\xc4\x09\x2a\xdd\x35\xbe\xd3\x8f\x4e\x7b\xd0\x70\xb2\x03\x5a\x03\x0c\x0c\x1f\x90\x29\x7c\x75\x9a\x74\xe8\x88\xbf\x4d\xf1\xb7\x25\xfe\xb6\xc5\xdf\xce\x08\xe3\x35\x18\xcb\x5b\xd8\x37\xf8\x0f\x36\xc0\x98\xd0\x19\x36\x30\x9c\x57\xb2\x30\xf7\x26\x72\xe6\xa2\x8b\xd5\x0a\x5d\xec\x60\xe0\xfb\x33\xf4\xa0\x7b\x1d\xbe\xc8\xc1\x70\xb1\x71\x39\xb7\xa8\x29\x50\x0c\x88\x92\x8b\x82\x8d\xd6\xa5\x97\xd0\x5f\xbc\x40\x68\x9b\x51\xe0\x4f\x78\x17\xe6\xea\x1b\xe7\x80\x3c\x8d\x81\x0f\xa8\x88\x7b\x36\x06\x6a\x4d\x80\x5a\x14\xa8\x35\xc5\xd8\x3d\xe3\x15\x15\xd5\xc4\x86\xec\x10\xf9\x40\xfe\xa2\x72\x5d\x90\x1d\x8a\xfb\x84\x22\x7d\x37\x68\x22\x77\x83\xe6\xa0\xeb\x92\x13\x8c\x62\x9e\xc8\xa5\x3b\x45\xcc\x4a\x20\xb6\x12\x3e\x9a\xf3\x97\x00\x62\x2b\x90\x5b\x44\xf9\xc6\x10\xc4\xbb\xb7\x88\x34\xb5\xdc\x9a\x13\x5f\xdc\xab\xb6\x12\x61\xde\x0a\xcc\x0a\xe4\x4e\x08\xd3\xb6\x88\xf8\xab\xdc\x06\xc9\xeb\xf4\xee\x9b\xea\x34\xae\xaa\xd3\x78\xa3\x4e\x63\x88\xad\xf1\x7f\xb4\x4e\xe3\x6f\xab\xd3\xa7\x8a\x3a\xed\x33\xae\x1f\x69\x73\x32\xd3\xb6\x81\x4b\x75\xbc\xcc\xeb\xe8\x97\x12\x7d\x59\x47\x4f\xb5\x9b\xcf\xdb\x2d\x51\x75\xf4\x79\x1d\x83\x52\x1d\xfd\xa7\xd6\x31\xca\xda\xcd\xcb\xea\x98\xa0\xd2\x5e\xa7\x5e\xdf\xa0\xa8\x6f\xb6\x50\x20\x66\x0c\xd9\x5e\x1f\x93\x7b\x7d\x6b\x91\xff\xec\xe7\x4f\xe7\x4d\x78\x81\x12\x0c\x2f\x50\x8a\xe1\x1d\x7f\x7a\xc7\x9f\x3e\xa1\x44\x6e\xd6\x7c\x24\x9f\x50\x8a\xf7\x1e\x0a\x92\x72\xf3\x48\x10\x93\xe9\x23\x41\x50\x5e\x3d\x12\x64\x45\xf3\x95\x57\xe9\x73\x4f\x73\x35\x56\x79\x4e\x71\xfe\x48\x90\x96\xe0\x91\x20\x2b\x1f\xff\x9d\x18\x2b\xfe\x14\xa1\x98\x20\x4a\xd8\x80\x5a\x2c\x7a\x75\xbb\x8c\x42\x1a\x32\xdf\x0b\x90\xd8\x1d\xdc\x4c\xc4\xb8\xb0\x76\xa1\x06\xc6\x27\x36\xd6\xc6\xcb\xbd\xc2\x7f\x65\x61\xe5\x92\xc7\x2d\x28\x8c\x47\xc3\xa1\x3d\x32\x43\x05\xd3\xc4\x6e\x08\xa6\x6e\x26\x33\xda\x8c\xed\xa2\x34\x71\x4a\x42\x94\xfb\x5e\x17\x0e\x6f\xf9\x80\x2f\x23\x6a\x44\xe4\xf0\x4f\x34\x70\x91\x85\x07\x68\x78\x72\x4a\xfe\x1c\xf1\x21\x73\x68\x7e\x69\xa0\xfd\x11\x7f\xfa\xee\xbf\xf8\x8f\x8d\x07\x48\xec\x4a\x21\xe0\x4f\x96\x7c\xfe\x1f\x1c\xc0\x6b\xfc\xfd\x6c\x84\x07\xdf\x1d\xfa\xa5\xf3\x8d\x92\xe1\x43\x52\x72\x7a\x92\xe4\xde\x32\x19\x89\xf2\xfd\x26\xcc\xe6\x71\x74\x23\xc0\x5f\xc5\x71\x14\x23\xc3\x0f\xaf\xbd\xc0\x9f\xec\xf3\xd1\xdd\x63\xee\xbe\x61\x2a\xa7\xd1\x4c\x5a\xd7\x4d\xfd\x20\x20\x6c\xe8\x8c\x56\x2b\x63\x5f\xb9\x6c\xf0\x02\x7f\x16\x12\x36\x6c\xf2\xc4\x53\x95\x98\xc8\xb4\x16\x4f\x6b\x64\x69\x62\x9f\x81\xb0\x61\x9b\xa7\xaa\xc4\xbf\x69\x1c\x91\x83\x03\x36\xec\x8c\x64\xc2\x8d\x3f\x61\x73\xc2\x86\xdd\x51\xad\x66\xf2\x1f\x15\x50\x2c\xe2\x9d\x8e\x03\xf6\x54\xca\x32\xa6\x63\x3f\xf1\x23\x5e\x4e\x5f\x02\xf7\x47\xaa\x6d\x32\x77\x13\x2c\xf6\x17\x22\xd3\x91\xca\x24\xec\x39\xd8\xd0\xb1\x05\x09\x6b\x4f\xb3\xf2\x48\xb4\x08\x15\xda\x73\xbe\xea\xad\xb8\xd2\x98\xf3\xc4\x2c\x38\x61\xe6\xf5\x37\xb5\x5a\x9b\x28\xaf\x6d\x1e\xd9\x3c\x33\x47\xce\x6b\x3d\x30\x8c\x22\x58\xaf\x03\xf6\xaa\xf8\x84\xb1\xc2\x20\xf8\x30\x30\x60\x1b\x45\xce\x0f\x8e\xc6\xb0\x4a\x21\x76\x15\xaa\x1c\x24\x47\xc7\x19\x34\x30\xfe\x87\xc4\x96\x73\x48\xda\x82\x08\xcf\x4c\x30\xdd\xf0\x1e\x46\x5d\x5d\x2f\xa4\xc5\xa5\x59\x47\x98\x06\x1f\x87\xe2\x62\x4d\x88\x93\x1b\x9f\x8d\xe7\x88\x0e\xc3\x11\xbe\x1f\x7b\x09\x35\x2c\xc3\xf5\x09\x23\xe1\xde\x65\x4c\xbd\xab\x3d\x91\x66\x1b\xae\x4d\xb2\x48\x41\x21\x86\xe2\xb3\xd2\xe0\x5c\x7f\x8a\xfc\x53\x5b\x4a\xaf\x29\xb0\x89\xef\xfb\x74\xcf\x27\x76\x71\x02\x73\x6a\x0f\x8a\xae\xec\xe3\xbc\x97\x32\xd3\x11\x0e\xe4\x27\x95\xe6\x29\xf2\x45\x18\xae\xe5\x46\x05\xd4\x34\xe4\xa9\xa6\x2f\xb6\x51\x21\x22\xf1\xd0\x29\xd6\x84\x27\xf6\xc0\xb0\x2d\xc3\x2c\x36\x70\x1a\x11\x56\xca\xae\x6d\x60\xd3\x77\xb3\x6b\x6d\xa7\x91\xe9\x0c\xfc\x9c\xa8\xc8\x74\xb0\xc9\xdb\x25\x4b\xe2\x09\xae\xaf\x21\x8a\x1a\x59\x56\xb3\xa9\xa1\x5c\xc3\x92\xdc\x1b\xcf\x8c\x4a\xfb\x20\xe4\xd8\x76\x9d\x62\x8b\x45\x3f\xf8\xb7\x74\x82\x18\x5e\xc3\x65\xd5\x8e\x61\x29\xcc\x7e\x61\xf7\xd4\xc4\x6b\x18\x57\xee\x30\xf2\x99\x0f\x2a\xfd\xac\xed\x40\xe5\xd8\x78\x0d\x3b\xfc\xa9\x6d\x0d\xd9\x7c\x26\xd8\x0d\x5a\xd4\x65\xb6\x1b\xe8\x63\x26\xcd\x02\x30\xfa\x06\x4a\xfb\x9c\xa7\xd5\x88\x27\x92\xa1\x62\x37\x28\x76\x27\x90\x54\x5a\xc4\x3e\x5d\x6e\xc0\x23\x51\x03\xa5\xa4\x55\xcf\xbb\x63\xa3\x5f\x84\xbc\xee\xeb\x81\x37\x22\xe1\x91\x1e\x9b\x0e\x24\xf9\xdd\xc8\xe2\x88\x8e\x90\x64\xe0\xbb\xde\x69\x32\xd0\x65\xc6\x6b\x24\xa6\xa3\x09\x8b\xeb\x9d\xda\x9a\xd0\x79\x65\x91\xf3\xb0\xbb\x21\xbc\x4e\xc3\xd3\xa5\x97\x57\x4c\x1b\x37\x98\xe9\x35\x1c\x8c\x87\xf6\x68\x0d\xbf\x7d\x8b\x28\x74\xf9\xcb\xe7\xe5\x92\xc6\x2f\xbc\x44\xdc\x5c\xbb\xfd\xb6\xec\xeb\x72\xf8\x25\x6d\x6b\x1f\xae\xc9\xd0\xb8\x33\xc0\xf8\xdb\x10\x7a\x14\xd7\x75\x8c\xa5\x01\x46\x68\x80\xf1\xff\xfc\xdf\x06\x18\x0b\x03\x0c\x03\x8c\x2b\x03\x8c\x77\x06\x18\xff\x34\xc0\x38\x37\xc0\xf8\x68\x80\xf1\xca\x00\xe3\x0f\x03\x8c\xdf\x8d\x11\xdc\x6d\x1b\x66\x81\x54\x09\xc4\x25\x3a\xe1\xc5\x8a\x5a\x6c\x1e\xa5\x89\x17\x4e\x12\x11\x2c\x28\xff\x24\xc6\xbe\xfc\x5b\x69\x73\xa8\x58\x39\x97\x9c\xae\x0f\xb3\xdb\x76\x8c\x4b\x47\x4a\xec\x63\xff\xd4\xae\xd5\x12\xfe\x07\xa5\x66\x62\x3a\xc2\x61\xbf\xda\x83\x93\x53\x40\xd8\x48\x31\x86\x28\xf3\x91\x90\xa4\x97\x72\xe7\x1c\xf9\x0d\x92\x80\x6f\x26\x18\xc3\x01\x42\xa9\x49\xb8\x14\x9c\x86\x18\x1f\x63\x5e\x80\x47\x90\x27\x0e\x15\x55\xf1\xc5\xf0\x55\x84\xbe\x91\xad\x1e\xe3\x35\x76\x17\x22\x34\xd5\x38\x8d\x63\x1a\x8e\xef\x44\x7c\xb2\x09\x1d\xfb\x0b\x2f\x80\x80\x50\x2b\x4c\x17\x34\xf6\x82\xe4\x89\x87\x36\xcc\x8a\xe9\x32\xf0\xc6\x14\x1d\x0e\xed\xc6\xd1\xe8\x70\x06\x55\x47\x3b\x43\x93\x8d\xd6\x78\xbd\x46\x45\x01\x9c\x92\x31\xa1\xd6\x92\xc6\x63\x61\x2b\x68\x3c\xd3\x3c\x1b\x4e\x8b\xf3\x58\x44\x85\x0a\x8f\xc5\xe4\x2b\x9a\x42\xcc\xbd\xc2\xcb\x3d\x9f\x7a\x61\xca\x1f\xc4\xcc\x0b\x13\x42\xc5\xbc\x0b\x0b\x42\xe5\x64\x0a\x77\xbc\xb6\x7c\x22\x85\x19\x2f\x2d\x1b\x47\xe0\x92\x48\xab\x6a\xb8\x50\x5e\x7b\xf6\x0c\x71\x8c\x71\x31\x40\x77\xe4\xc0\x86\x0b\xc2\x17\xc9\xee\x72\x78\x31\x5a\xad\xd4\xdc\x3b\xab\xd5\xd0\x8c\x38\x4d\x0c\x97\x05\x08\xa0\xc9\x6a\x65\xd8\x3c\x2f\xab\xd5\x0c\x62\x08\xab\xb5\x5a\x0d\x4d\x38\x0c\x23\x86\x6d\x40\x4c\x0c\x62\x48\xed\xea\x86\x18\xdf\x71\x90\xe9\x20\x1a\xda\x23\xd7\xf8\x2f\xf1\x52\xab\x1d\x0e\x2f\xa3\xdb\xdf\x46\x87\x16\xa3\x09\x43\x17\x98\xab\x0e\xe6\x85\xc5\xa2\xb7\xd1\x4d\xd6\xb3\x5c\xc3\x80\x57\x5a\x7e\x67\xe4\x1e\x0e\x9f\x2d\xb5\x4c\x63\x0e\x72\x4b\x38\xd5\x70\x46\x0e\x87\x13\x3a\x9d\x2d\xe3\xe4\x59\x01\x52\xf0\xf8\x43\xc6\xe3\x08\x3c\x3e\xf9\x93\x1b\x58\x92\x57\x7c\xa0\x33\xc6\x82\x13\x78\x49\x6e\x11\xc5\xe6\x12\x28\x31\x0c\xe1\xc3\x5d\xc0\x7f\x50\xf6\x26\x27\xc2\x01\x3c\x25\xb7\xba\xfe\x0b\x33\x0c\x97\x62\xb7\x78\x2e\x02\x2c\x7f\x10\xa1\x95\x4d\x5a\xab\xa1\x0f\xc2\x06\x7c\x4a\xd0\x87\x81\x81\xe4\x81\x90\xef\x1a\x0d\x83\xff\x23\x62\x5f\x35\x4b\x36\x0c\xd7\xc7\xe6\x14\x96\x04\x19\x89\x6c\x95\xeb\x61\xdf\x4c\x0f\x5b\x23\xa1\xbd\x2c\x4d\xf4\xa1\x56\xcb\xa1\xb1\xd0\x69\xe0\x4c\xd8\x7c\x2b\xc7\xee\xda\x9d\xf4\xe8\xc4\x13\xd6\xb9\xed\xfe\x29\xe2\x22\x37\x9e\x7b\xf1\x8b\x68\x42\x9f\x33\x14\x61\xbc\x5a\x8d\x4f\x3b\x3d\x7c\xbf\x24\xa8\xdd\x25\x84\x8c\x07\x49\xae\x51\x88\x69\x3b\x7f\xc1\x92\x15\x85\xee\x11\x61\xa9\xc0\xac\xd7\x77\xb5\xda\xc1\x44\xd4\x3a\x14\x91\xb3\x6d\xe5\x50\xe7\x39\x99\x66\xd3\x7c\x46\x90\x99\xbb\xa3\xb8\x22\xcf\x4f\x16\x83\x62\x7c\x5e\x34\x9e\xe7\xe3\x3b\xe3\x8d\xbd\xa7\x14\xab\xbb\x5a\x2d\x43\x7e\x65\x52\xb8\xca\x76\xbb\x17\x8d\x0c\x97\xcb\x8b\x84\x2b\xc2\xd9\x10\x2b\x1d\xec\xc4\x70\x29\x99\x9a\xd4\x5c\x9a\x57\xba\x1e\x46\x64\xfa\x15\xff\xa2\xa7\xff\xc9\xd3\xaf\xf2\xca\x3d\x27\x59\x39\xa7\xa7\x0e\x36\x15\x22\xf5\xf9\x39\xde\x50\xdd\x28\xb9\x92\x20\x99\x96\x26\xbc\x96\x66\x76\x6a\xea\xe2\xc8\x6c\xd0\x75\x0f\x87\x5c\x20\x35\x91\xd5\x86\xc0\x7c\xaa\x6c\x3a\x30\xc3\xd8\xdd\x0c\xc6\x26\x3e\xd9\xfc\x13\x7c\x78\x48\x57\x97\xfa\xcc\x07\x55\xfc\xbd\x5a\xe1\x4c\x41\x3e\x7c\x8c\xe9\xd4\xbf\xad\x9c\xeb\xa7\x08\xe5\xc3\x8d\x58\x28\xf0\x09\x87\x4b\x71\xf8\xa4\x49\xdd\x47\x0c\x8b\x79\x3d\xf3\xfe\x90\x05\xf4\x12\x0e\x1f\xb8\x04\x87\x87\xad\xca\x83\xab\x6c\xd7\x01\x45\x75\x8a\xcd\x64\xbd\xd6\x4f\x3f\x66\x1a\x44\x40\xee\x78\x27\x1b\x93\xc0\x92\xb5\x11\x5e\x22\xf4\x8a\x41\xb0\x9e\xa1\x7b\x35\xa6\xf3\xc5\x01\xe4\x53\x97\x6b\x80\x01\xd9\xac\xe6\x0e\x5b\x23\xc8\xe6\x01\x77\x68\x7c\xc7\x67\xd2\x91\x32\x37\xb9\xdc\x19\xc3\x4b\x36\x47\xc3\x2f\xaf\x79\xd7\xa5\xb0\x7e\x9a\x8e\xa5\xe5\xf9\x26\x0e\x6e\x17\xb0\x79\x30\x5d\xb6\x60\x53\x83\x0f\xd3\xc2\xa0\xe1\x46\x49\xbf\xe1\xa8\x1b\x3e\x47\x66\x3a\xb9\x15\xaf\x64\xdc\x4b\x29\xc4\x6f\xa3\xb1\x57\x6d\xd9\xa9\x87\xb4\x15\x39\x1e\x31\x11\xd5\xdb\xe3\x91\xdd\x1d\x09\xba\xbb\xe8\xbb\x4d\xd0\xb3\x25\x1d\x0b\xeb\xe8\x47\xac\x8a\xf3\xa9\x4e\x28\xd8\x8f\xd8\xab\xe6\xc0\xbb\x69\xbe\xa8\x80\xfe\xc4\xd5\xb9\x1d\xdb\x5b\xdf\xb2\xfd\x13\x23\xbb\x6c\x20\x28\xd6\x80\xf6\x09\xa1\xd6\x1d\x57\xcc\xee\x4e\x1c\xdb\xce\x14\x82\xec\xb8\x1f\x35\x1c\xa0\xd6\x42\x6d\x34\xbf\x06\x6a\xbd\x03\x6a\x9d\x01\xb5\xde\x6a\x16\xf7\x09\x65\x3f\xa4\x41\xf0\x3b\xf5\x62\x44\xad\x3b\x0c\x4c\x77\x93\x21\xf0\x50\xeb\x6e\x27\xa2\x62\x5f\x25\x7a\x22\x55\xfc\x8f\xf5\xf9\xfc\xc5\x43\xe4\x95\xe9\xfb\x7c\xfe\xe2\x31\x12\x73\xa4\x0f\xd1\xaa\x11\xab\x6d\x11\xdd\xdf\xb9\x14\x16\xae\x0d\x13\xd7\x81\xd7\xae\x0d\xef\x5c\x1b\xce\x5c\x1b\xde\xba\xf6\x7a\x63\xdb\x28\xb3\x80\x9b\x78\x8c\x9e\xfb\x0b\x2a\xd4\xad\x89\x38\x93\xe3\x5a\x12\x4f\x49\xa5\xce\xe6\x47\x93\x44\x28\x8c\x13\xef\x2e\x11\x8a\x5c\x32\x8f\x62\xf6\x92\xbf\x71\x85\x6c\x11\x85\x6c\x9e\xc0\x3c\xfb\xf0\x4e\xbe\x2f\xc9\x25\x4a\x31\x2c\xc8\x05\xff\xb9\x26\x97\x28\xc0\x70\x47\x2e\xf8\xcf\x8c\x5c\xa2\x31\x86\x5b\x4a\x2e\xf8\xef\x19\x25\x97\x68\x8a\xe1\x03\x7f\x9f\x62\x78\xce\xdf\xe7\x18\xae\xf8\xfb\x1c\xc3\x39\x25\xf7\x5e\xd5\x42\x63\x3c\x14\x77\x3c\x5e\x7a\x77\x08\x8f\xd6\xf0\xbc\x0a\x26\x28\xc3\x54\xae\xa2\xe7\x12\x46\x50\x2e\xa0\xfe\x51\x69\x91\xb4\x09\x35\x76\xc5\xe9\xda\xc4\x7d\x0d\xd4\x7d\x0d\x53\xf7\x17\x78\xed\xfe\x03\xde\xb8\x9f\xe1\xab\xfb\x2b\xbc\x75\xff\x82\x85\xfb\x3b\xbc\x73\xff\x59\x5a\x97\x16\x36\xe9\x43\x53\x5e\x67\x79\x1d\xa5\x71\x82\xf0\x29\x57\x38\x47\x6b\xf8\xd9\xbd\xa1\x90\xb8\xaf\x28\x9c\xb9\x3f\x41\xea\x7e\x07\x9f\xdd\x9f\xe1\x17\xf7\x37\xb8\x71\xff\x80\x5f\xdd\x1f\xe1\x56\x96\xfc\x9b\xfc\xb9\x73\x29\x85\xdf\x5d\x46\xe1\x0f\x37\xa6\x60\x3c\x33\xdc\x0b\xba\x86\x17\x8f\xb0\xed\xf3\xf9\x8b\xa7\x70\x4e\x03\x7b\x88\x79\x9f\xcf\x5f\x3c\x8d\x7f\x25\xc0\x9c\x85\x21\x05\xca\xff\x4c\xdd\x94\xc2\x6b\xd7\xa7\xf0\xc6\x8d\x28\x7c\x75\x3d\x0a\x6f\xdd\x84\xcb\x75\x40\xe1\x9d\x3b\xa6\x8f\xf0\xf2\xf3\xf9\x8b\x07\xd8\x39\xa5\x90\xba\x73\x0a\x9f\xdd\x09\x85\x5f\xdc\x25\x85\x1b\x77\x41\xe1\x57\xf7\x9a\x6e\x31\xf5\x8e\x33\x75\xc6\x99\x7a\x59\x30\xf5\xdd\x06\x53\x4b\x4e\x29\x95\x91\x5f\xb6\x95\xac\x39\xb7\x1b\x20\x6a\xdd\x90\x5b\x3a\x0c\x87\xf6\xa8\xac\xea\x8f\x20\x36\x45\x6a\x66\x57\xd4\x70\xca\x0d\xa2\x17\x71\xfd\x58\x11\x77\x4f\x2d\xe1\x72\x47\x09\xcf\xe9\xc3\x45\x2c\xc8\xd5\x93\x6b\xf1\x8f\x1d\x65\x9c\x3d\x5a\xc6\x87\x27\x97\xa1\x6f\x73\x49\xbb\x11\x85\xe9\x2b\xcd\x4d\x49\xd6\x30\x71\xdf\x01\x75\xdf\xc1\xd4\x7d\x03\xaf\xdd\x8f\xf0\xc6\xfd\x08\x5f\xdd\x4f\xf0\xd6\x7d\x0f\x0b\xf7\x05\xbc\x73\xbf\x6e\xec\x1d\x15\xd4\x2e\x1f\x26\x76\x49\x16\x4f\xa5\xf5\x67\xf7\x07\x48\xdc\xbf\xe1\xcc\x7d\x09\xa9\xfb\x0a\x3e\xbb\xb7\xf0\x8b\x7b\x06\x37\xee\x0d\xfc\xea\x7e\x80\xb2\xaa\xba\x59\x97\x58\x24\x95\xb7\x6c\x4a\x26\xfe\x02\x2a\x91\x8e\x37\xe0\xce\xbd\x82\xdf\xdd\xe7\xf0\x87\x7b\x2e\x84\xf7\xad\xa6\x66\x7e\xa2\x3b\xef\x4d\x5c\x17\xa1\x88\xc9\x70\x24\xa2\x11\x43\x4a\x6c\x31\x01\xe8\xb1\xed\x36\xcd\xf5\x56\x2b\x54\x98\xe7\x21\x33\x56\xe1\x7a\x83\x63\xdc\xea\x09\xef\xb8\xda\x52\x2c\x11\x1e\xc0\xf2\xed\x0f\xc1\xd5\x54\xb8\x85\x54\x61\xe2\x7c\x32\x19\x86\x2a\xcf\x73\x86\x4c\x33\xc1\x23\x3c\xd8\x48\x71\x7d\x62\x08\x23\x83\x70\x20\x6c\x80\x6c\x03\x50\x24\xdc\x18\x4b\x93\xdb\x08\xc5\xe0\x63\x0c\xaa\xa0\x10\x43\x2a\xf6\x53\xf2\xbd\xb7\x2a\x02\x3c\xcd\xc0\x21\x67\xd7\xc7\x87\xd9\xe5\x43\x02\x29\xf1\x90\x73\x64\xdb\x62\xf7\xf0\x2b\xc7\x46\x21\x16\x16\xc1\x36\x3e\xc8\xdd\x6a\x94\xce\xaa\xf8\xea\xfb\x67\xc3\x0f\xf7\x53\xbc\xa9\x03\xa4\xd6\xcf\x02\x91\xb1\x14\xdf\x6b\x35\x94\x5a\xaf\x49\x6a\xbd\x7e\xe6\x34\x4d\xa7\x59\x4f\xad\x25\x06\xe3\x17\x99\x99\x6b\x2a\xa9\xf5\xcb\x89\xb3\x5a\xa5\xd6\x2f\xa7\x9d\x56\xa9\x14\xe3\x46\x40\xad\x56\x28\xb5\x6e\x88\x83\xc1\xf8\x43\x24\x0c\x50\xc2\xf9\x1c\x21\x0f\xa5\xd6\x1d\xc6\x58\x1f\xea\xc1\x27\xc9\x69\x7b\xb5\xb2\xc5\xf6\x64\x68\x2d\x65\xf8\x4d\x1f\xbb\xf9\x79\xee\x12\x23\x5f\x7a\xe0\x0d\xac\x68\x3a\x4d\x28\x43\x3e\xf4\xea\x9c\x92\x86\x83\x31\xa4\xd6\x1d\xf1\x15\xce\x5c\xe5\xe1\xc9\x8b\x3c\x59\xcd\x02\x90\x5a\x93\x3c\x4d\x54\x1f\x9b\x9c\x58\xb3\x8b\x9f\xf5\xb0\x2b\xe9\x64\x25\x3a\x2b\x89\xa4\xdb\x44\xd2\x9c\x48\xef\x61\x22\xab\x28\xdc\x22\x6f\x8b\x36\x69\xc2\x65\xfc\xaa\x38\x6c\x7c\x96\x0d\x52\xab\xa1\x32\xd7\x8d\x54\xb2\x3c\xb5\xd2\x67\x3d\x57\xc1\x0f\x1c\xd7\xe6\x6b\xc5\xac\x3d\xf2\x96\xd0\x1b\xc2\x65\x7a\xaa\xac\x36\x27\xd0\x16\x54\x65\x98\x72\x8a\xcc\x5e\x3d\xb5\x7e\x6d\xa0\xc4\xec\xe0\x67\x3d\x97\x27\xf3\x94\xcf\x3c\x45\x50\xac\x64\x3f\x97\x81\xd4\x7a\x6d\x92\xd4\xfa\xe3\xd0\xb1\xed\x15\x47\xfa\x4e\xbc\x3e\x73\x6c\x1b\x22\x94\x62\x4e\x40\xaa\x77\x05\x6d\x50\xbd\xd7\xdc\x8e\x65\x7b\xa0\x85\xd7\xd4\x58\x77\x3e\x26\x83\xe0\x9e\x92\x4c\xd2\x65\xa4\x4a\x31\x30\x08\x33\x73\x6d\x6c\xf0\x4c\x13\x63\x01\x9f\x7d\x50\x89\x70\x80\x22\xf2\x8e\x0e\xfd\x7d\x3f\xdc\x9f\x0c\x4a\xdf\x5c\x7f\x84\x57\x2b\xd1\xe7\xe5\x1c\x50\x9c\x0b\x37\x1c\x69\x65\xc5\x11\xf2\x8e\xa8\x15\x15\xf2\xa2\x72\xa8\xac\xd3\x64\x0f\xe7\xd4\xba\x25\x9f\x28\x8a\xe1\x9c\x72\x15\xd4\xfa\x8d\xbf\x25\xd9\xdb\x98\xbf\x31\xf1\xf6\x22\x87\x7c\x21\xdf\x14\xa4\x7a\x53\x90\xfc\x2d\xdf\x9f\xd8\xdc\xa1\xe6\x20\xf2\x02\xc1\xb9\xe6\x06\xe4\xc1\x8d\x8f\x35\xb0\x35\x2c\xbd\x38\xa9\xf2\xe5\xff\x31\x43\xe7\x7f\x0b\xb6\x94\x8d\x7f\x78\x94\xc0\x17\xdf\x44\x60\xca\xc6\x1f\x1f\xa0\x51\x77\x39\xf7\x28\x32\x69\x71\x96\x9f\x5f\xc2\x84\xdc\x8b\x2d\x45\x03\x2e\x5c\x63\xdf\x00\x9b\xcf\x01\x6b\x58\x92\xc3\x3f\xbf\x24\xf5\x2f\x13\xf3\x10\x16\xe4\xf0\xcf\x67\x87\x70\x4d\x0e\x87\x5f\xbe\xfc\xf9\x5d\xdd\x1c\xac\x86\x5f\x46\x08\x5b\xf7\xeb\xd1\xe1\xac\x98\x10\xef\xca\x33\x3e\x3d\xb1\x07\x0a\xb5\x4f\x50\x38\x68\x50\x97\x62\xd3\x30\x34\xef\x96\xb9\x0a\x60\xa2\xe8\x24\xd6\xb6\xf6\xe2\x46\xa4\x6d\xed\x99\xbe\xeb\x6b\x8b\xb5\x59\xc9\x92\x35\xdb\x50\xbf\x06\xe3\xcb\x97\xef\x6a\x7a\x24\x92\xcb\x8d\x83\x7f\x75\x77\xc5\xf8\x13\x0d\x5c\xc3\xa4\xc2\x1f\xc8\x2c\x3b\xe2\x59\x19\xd8\x14\xc6\x56\xbe\xb1\x19\x6a\xa5\xf0\x62\x70\xbf\xce\x0c\xfe\xe8\x86\xc1\x1f\x1b\xd2\x61\xbc\xa9\xbe\x90\xb8\xf0\x02\x90\xa3\xbc\x79\x58\x31\x02\x11\xed\x6c\x43\x21\x15\x5a\x50\x85\x32\x94\x23\x7d\xf5\xcd\x48\xd3\xc7\x91\xde\x3e\x8a\xb4\xb9\x81\xf4\xf3\xe3\x48\xcf\xbe\x19\xe9\x2f\x8f\x23\xfd\xf0\xcd\x48\x7f\x7d\x1c\xe9\xf3\x47\x91\xb6\x37\x90\xde\x3d\x8e\xf4\xea\x9b\x29\x55\x48\x4d\x24\x7e\x4e\xbb\xfd\x01\xd7\x91\xdc\x26\x6d\xe1\x87\x0a\x3a\x2f\x17\x74\xf8\x27\xfa\x03\xaf\xd0\xd0\x6c\x8c\xbe\x4c\xbe\x4c\x30\x1a\xb8\xee\x00\x89\x47\x3c\x38\xdc\xa6\xa2\xbb\x41\xc5\x1f\x24\x1c\x3a\xa3\x81\xed\x36\x50\x38\x6c\x8e\x4c\x14\x4a\x0b\x16\xdb\x36\xf0\x83\x74\xbc\xf8\xe6\x0a\x2f\xc4\xc5\xac\x86\xf3\x10\xd6\x77\xdf\x8c\x75\xf2\x78\xdb\x7c\x7a\x14\x69\x6b\x8b\x54\x1b\x9e\x84\xfa\xe3\x37\xd3\xfb\xfa\x71\xa4\x5f\xbf\x19\xe9\xbb\xc7\x91\xbe\xfc\x66\xa4\x67\x8f\x23\x7d\xff\xcd\x9c\x7d\xfb\x38\xd2\x37\x8f\x22\xdd\x14\xe2\xb7\xfa\x5d\x54\x8e\xf7\xd0\x79\xa4\x17\xbd\x2d\x97\xb1\x78\x64\x5c\x2d\x61\x2a\x21\xfa\xe1\x9b\x96\xc3\x3f\x3f\x5e\xfb\xbf\xbf\x11\xa1\x43\x5b\xf5\x47\x91\xbe\x2e\xad\xd1\xee\x10\x2d\x54\x76\x60\xd0\xd4\x26\xc6\x7f\x54\x41\xaa\x3d\xa3\x0d\xd0\xcf\x0f\x80\x3e\x73\x9a\xab\x95\xd3\xdc\xc8\xf1\xeb\x46\x0e\xc7\xe4\x8b\x8f\x71\x94\x86\x0c\xe5\xeb\x92\x2b\x8c\x28\x06\xca\x4b\x6b\x69\x79\xff\xaa\x2a\xed\x9d\x1f\x04\x7e\x42\xc7\x51\x38\x91\xf4\xe9\x39\x7e\x29\xe5\x90\xf9\x4d\xc3\xb6\x6d\x2d\x1a\xd8\xef\x95\x58\xe5\xe2\xc6\x74\x36\xc8\xff\x67\x35\x09\x61\xca\xe8\x36\x77\x7e\xaa\x02\x3e\xd3\x48\xd5\x81\xbf\xd3\x77\x9d\xb3\xc5\x4c\x29\x4c\xfa\xa0\xe7\x6a\xba\xc6\xcf\x1b\xc8\x43\x6b\xfe\x00\x1b\xf5\x92\x7e\x2b\xbb\x2a\xda\x2c\x8b\x92\xf8\x94\xa8\x75\x63\x3c\xc8\x91\xf9\x1c\x99\x1b\x5a\xbe\x5c\x46\x52\x0c\xbc\x4c\x7f\x57\x99\x26\x6a\x13\x42\xca\xc9\x79\x51\x9b\x14\xfd\x51\x52\xfb\x32\xa8\xe2\xfb\x8f\x5b\x75\xa5\x4f\xac\x2b\xa5\x55\x6d\x50\x2c\x67\xc5\x4a\xae\x9c\x85\x3d\x9a\x85\xb6\x81\x41\x5b\xcb\x12\xd3\x8d\xc6\x3b\xf7\x17\xf4\xef\x28\xa4\x1f\xe4\xa2\xba\x08\x4e\x7b\x2a\x15\x67\xc4\xea\x5c\xd7\x34\x4c\x03\x63\xf3\x0e\xb1\xc3\x2e\x5f\x5e\x1a\xb6\x01\x4d\xf1\xfe\xac\x9b\xbd\x15\x85\x84\x95\x74\xe5\x7b\x02\x1b\xb5\xf0\x77\x41\x57\x77\xe4\xe8\x11\xf0\xea\xce\xec\x6d\xe6\xe2\xbd\x39\xd8\x6c\x9a\xeb\xea\xde\x9c\xec\x2a\xf2\xc1\x1e\x9d\x96\x73\x29\x24\x9b\x7d\x3a\xd8\x89\x7b\x47\xbf\x1e\xef\x26\xa6\xba\x6f\x4f\x77\x65\xd8\xd5\xbf\xe7\x9b\x32\x92\xed\x61\x3c\xd0\xc7\x27\x9b\x85\x84\x56\xf2\x00\x77\xf5\xe2\x96\x74\xab\x97\x6f\x16\xb8\xa3\xa3\x33\xd5\xd1\x59\xa9\xa3\xb3\x5d\xe5\x6e\x74\xf4\xeb\xac\xa3\x67\xa5\x6d\x12\xb6\xa0\x9b\x9d\x3d\x83\xd4\x82\xa6\x6e\xd7\x7b\xf9\xc4\x7a\xdf\xed\x6a\x97\x07\xfb\xfc\xec\x29\xb9\xb6\xba\xfd\x25\xcd\x57\xe0\x86\x69\x97\x25\xf0\x42\xfb\xf6\x4c\x4b\xbf\xd1\xaa\x6f\x52\x6d\x95\x47\x37\xcd\x0b\xa4\x2a\x63\x52\xa1\xc8\x68\x2b\x37\x1d\x30\x95\xf7\x53\x02\x92\x66\x36\x10\x63\x92\x5a\x62\xd7\x43\xc4\x69\xcb\x77\x2c\x60\x2e\xdf\xc4\x66\x03\xa4\xeb\x5b\x8a\xee\xb3\xa3\x4d\xd7\x78\x76\x0b\xfb\xcf\x7e\x33\x80\xa7\xb8\xc6\xb3\xc6\xe2\xf0\x59\x63\x72\xf8\xec\x77\x03\x98\xfc\xde\x78\xe3\x3e\x7b\xe7\x3e\x3b\xdb\x7f\xb6\x34\x40\x9d\x79\xba\x43\xe3\xf9\x3b\x03\x8c\x8f\xef\x8c\x11\x4c\xbc\x3b\x9e\x70\x96\x86\x13\xef\xce\x00\xe3\x5d\xa4\x1e\xce\x53\x9a\xc8\xa7\x5f\xe9\x24\xcc\x9e\xcf\xe7\x69\xac\x1e\x7f\x88\x7d\xf9\x70\xe6\xb1\x34\xe6\x8f\x23\xc8\x0f\x50\x25\x4a\x89\x4f\x22\x93\x88\x24\x0a\x99\x5b\x66\x35\x46\x20\x0f\x5a\xdd\xa1\xf1\xa3\x17\xa6\x5e\x2c\x90\xd3\xcb\x58\x3d\xbe\xf3\xe2\xf1\xdc\x00\xe3\xf9\x32\xf6\x03\xf1\xce\x53\x7f\x4c\x43\x2a\x7e\x02\xfe\xf6\x3c\x9d\xa5\x09\xe3\x08\xe9\x92\x51\x71\x77\x1f\x8c\x0f\x63\x16\xc9\xa7\xf7\xd1\x75\x96\xf8\x92\x8e\xe5\xa3\x22\xf6\x9d\x56\xb6\x2c\x57\x16\x29\x0b\xd4\x8b\x93\xa5\xc9\xc2\x64\x49\xb2\x0c\x89\x5f\xa2\xce\x8d\x4f\xce\x28\x11\xe7\xdd\xba\x5d\xfe\x9b\xb3\x0f\x72\x1f\xa8\xca\x30\xb1\x04\x80\xf0\xda\x9d\x22\xe3\xd9\xef\x8d\x67\x8b\xc6\xb3\xc9\xf9\xb3\xd7\xb2\x15\xad\x67\x6f\xff\x30\xc4\x71\xb2\x99\x6f\xa9\x1b\x4d\xdb\xb6\x1b\xb6\xd3\xb0\x9d\x73\xdb\x76\xc5\xff\x96\x6d\xdb\x7f\x18\x78\xb0\xbd\x37\x55\x18\x0c\x14\x37\xca\xb3\xcb\xf1\x61\x1a\x04\x2e\x5b\xbb\xf3\x9d\x25\xef\xe5\x91\xfd\x17\xf4\x87\xa7\x99\x9d\xdc\xea\xce\xc2\xf2\x6c\x8f\x5c\xc7\xe1\x80\x42\xe0\x1f\xb1\x51\xc9\x7b\xc9\x23\x06\x2a\x59\xff\xa9\x02\x9b\x57\xd1\xb7\xbb\x3e\x49\x01\xee\x27\xd1\xee\xd2\xcf\x68\x09\x70\x67\xf1\x1f\xe8\x1a\xaf\x01\xe0\x29\x5e\xcb\xb4\xdc\x85\x9e\x84\x36\xe2\xf2\xda\xc7\xf1\x49\x11\x48\xc3\x34\x73\x6f\xfa\xc3\x78\xb4\x17\x5a\x54\x1a\xaf\x5e\x06\x94\xe8\x2f\xab\xd5\x81\x03\xc2\x21\xfa\xd4\x9f\xa5\xf2\xfb\x81\x0d\x86\xf0\xb0\x60\xf8\xe1\x7e\x28\x82\x9f\xdd\xc4\x3e\x53\xdf\x30\xc8\x11\xdd\x92\xf1\xfe\x74\x0f\xfb\xd6\x15\xbd\x83\x10\xaf\xb7\xee\xae\xb3\xd2\x39\x66\x5c\xab\x51\xc4\xb4\x6b\x2c\xb1\x08\x6c\x44\xc5\x25\x62\x60\xeb\xb5\x38\x0a\x19\x0e\xef\xc7\x51\x10\xc5\xae\x61\xc3\x3e\xff\xdf\x90\x7e\xe2\x5d\xc3\x0b\x13\xbf\x71\x19\x78\xe3\x2b\x63\x0d\x19\x90\xd3\xef\x55\x81\xc5\x74\xa2\x01\xd9\xb0\x2f\xe1\xca\x40\xb3\x98\xd2\x70\x13\x57\x15\xe0\x1d\x0d\x82\xe8\xa6\x8c\x50\xe2\xdc\x24\x2e\xa5\x15\xb4\x6d\xc1\x2d\xbc\x19\x0d\x99\x57\x41\xe1\x16\xe8\xf8\xce\xd3\x49\x6c\x76\x3a\xa0\xfe\x95\xe1\x6e\xe6\x3e\xa3\xc6\x7a\x04\x39\xfb\xfa\x1d\xd8\x97\xff\x36\x88\x8c\xfd\xd9\x9c\x6d\x31\x92\x63\x7d\x08\x7e\x8b\xa3\x22\xc3\x66\xeb\x48\xd8\x4d\xc6\x0a\x50\x55\x40\x65\x86\x2d\x06\x67\xc4\x6f\xd5\x33\xa7\xbe\xc4\xe9\x9c\xf8\x5d\xf0\xdb\x1c\xef\x67\x24\xed\xca\x52\xc1\xf9\x87\x33\x64\x4d\x30\xd2\x3d\x62\x97\xba\x2e\xbe\x3f\x28\x1b\x04\x4a\xff\xbb\xfa\x11\x34\xd3\xaf\xbd\x9d\xdf\x2d\xa9\xba\xfa\xf6\xc2\x0b\xc3\x88\xed\x8f\xbd\x20\xd8\xf7\xf6\x45\xe9\xfb\x5e\xb2\xef\xe5\x9d\xcd\xc0\xeb\x2c\x06\x80\xbc\x4b\x36\x9d\xc9\x8b\x57\x97\xea\x77\x3a\xbb\x60\x71\x4a\x45\x75\xb2\x2f\x5a\x8a\x74\xff\x20\x92\x45\x75\x48\x1e\x0d\x21\x54\x11\xd1\x61\x78\x7f\x45\xef\x5c\x83\x26\x63\x6f\xc9\x07\xce\xd7\x6c\x11\x18\x2a\xce\x6a\xd1\xe7\xf3\xab\x3f\xbc\x06\x14\x5b\x25\x70\xc4\xf0\x7a\x0d\x12\x4f\xe0\x87\x57\xfe\xf4\xee\x71\x0c\x0a\x50\xcf\xcb\xf9\x7e\x1e\x55\x13\x50\x18\x12\x64\x08\x0a\x68\x24\xbd\xfe\x95\xb0\xfc\x98\x70\x9d\xe5\xa9\x58\x38\x74\x15\x96\x73\x7a\xcb\x1e\xaf\x4a\x01\x2b\x6a\x33\xc2\xc0\xb9\xab\x18\x9b\x50\x96\x2e\x3f\x7a\x01\x65\x8c\x6e\xa1\x52\xde\xa1\x3f\x3e\x7f\xfb\xea\xfc\xfc\xd5\xc5\x8b\x0f\x6f\x3f\x7c\x3a\xcb\x7c\x76\xa9\x48\x4e\xc7\xf4\xa4\x79\x6c\x9a\x14\x17\xa7\x25\xf6\x31\x3b\xe9\x8b\x50\x52\x15\xd9\x95\x8b\x86\x21\x1d\x0d\xd9\xc8\x12\x72\xa0\xfb\x9d\x1d\xda\x70\xd4\x01\xa7\xd5\x01\xa7\xd7\x81\xa6\x23\x86\x9d\x11\x94\xaf\xbe\xea\x03\xfc\x90\x8e\x4c\x03\xf6\x0d\x33\x1e\xb2\xfc\x29\x1c\xad\x55\x2c\xb1\x6e\x39\x0a\x27\xb1\x8f\x3d\x91\xe6\xe5\x69\x32\xc4\x5c\x57\x44\x7e\xdb\x49\xaf\xf0\x89\x02\x89\x16\x2c\x33\x25\x7d\x15\xd5\xb2\xd9\x3e\x36\xcd\x00\x52\x93\x38\xf6\x43\x18\x52\x48\x21\xc5\x45\x1b\x3e\x2c\xd3\x55\x67\x5d\x87\xc3\xda\xc9\xe9\xe8\x70\xb6\xa8\xf0\x3e\x68\xd4\x0c\x42\xe8\xc0\xa8\x79\x8b\xe5\xb1\xe1\x1a\x27\xea\x35\x60\xfc\xed\x54\xbd\xcd\xc4\x9b\xb1\x7e\xbc\x47\x54\x96\x8f\xe6\x8c\x2d\x93\x81\xfb\xe5\xf0\xcb\xe1\xf0\xcf\x2f\xc9\xc8\xc4\xd5\xd4\x7c\x7f\xe2\xed\xcf\x63\x3a\x25\xc6\xf7\x26\x35\xbf\x37\x4e\xf9\x8f\x71\x72\xe8\x9d\xea\x65\x3f\xd0\xa3\xb6\x5c\xc6\x2f\xe3\x68\x4c\x13\xe1\x82\x14\x0e\xec\x27\xf5\x27\xfd\x4e\x20\x23\x6c\xb5\xba\x5f\x63\xeb\x6b\x12\x85\xe2\xc6\x89\x35\x0e\xa8\x17\xbf\xf5\x43\x4a\x0e\x1c\x78\x42\x19\x95\xbd\x8d\xee\xa2\xf2\x7e\x0d\x07\x4e\x81\x42\x7d\xa8\xa2\xb1\x1c\xf0\x51\x5e\xd8\x91\x01\x0c\xbe\xd8\xad\xd6\x97\xe1\x21\x16\x47\xa7\xc9\xdc\x9f\x32\x94\xc5\xc9\x91\xce\x9b\x85\x13\x28\xad\x22\x87\x5f\x62\x75\x63\x40\x5d\x52\xf6\x88\xbf\x15\xfe\x20\x1b\x62\x33\x62\x5f\xcc\xd3\x30\x3b\x9e\x5a\x0b\xd3\x19\x56\xab\x31\xc1\xa8\xcc\x7b\x8b\x5e\x37\x01\x2e\x46\x24\xc3\xd0\x7c\x9b\x8c\x55\x8c\x94\x08\x12\x8d\x20\x8d\x38\xf0\xac\x34\x94\x95\x48\x38\xd5\xd2\x45\xc8\x85\x88\xf1\x26\x42\x00\x7b\x96\x0c\x5d\x5b\x41\xec\x01\xb5\xfc\xe4\x15\x87\x44\xc2\x01\x5f\x1e\x64\xae\xc0\x19\x95\xed\x8f\xca\x6c\xcf\x69\x7e\x98\xff\x88\x91\xeb\xc8\x9f\xa8\xdd\x96\xfb\xb5\xcb\xb0\x95\x26\xf4\x42\x06\x0d\x4a\xd4\xc7\x03\x42\x98\x9e\xcc\x99\xa5\xbd\x0a\x0f\xa6\x57\xf4\x8e\x84\x03\x15\xc7\xdf\x35\xc4\x30\x67\x80\x27\xfc\xe6\x73\x36\xb9\x14\xa6\x33\x69\x2b\x79\xa9\x7e\xf5\xb9\x32\xfb\xb2\x99\x92\x33\xd3\xd5\x19\x3b\xa1\xe3\x28\xf6\x78\x75\x24\xd4\x8d\x97\x5c\xa8\x8a\xd3\x89\x7b\xe0\x80\xe2\x5d\x45\x24\x3d\x2f\x6b\xb7\xf5\x5a\xd8\x2e\x0b\xff\xd9\xe8\xf0\x4f\x34\x3c\xf8\x72\xdb\x1a\x37\xbe\xdc\xb6\xa6\xa3\x3a\x46\xc3\x2f\x93\x63\xf9\x7b\xdb\xb4\x1b\x5f\x6e\x9b\xe3\x51\x7d\xf8\xe5\xb6\xcd\x9f\x7b\x74\xc4\x3f\x24\x5f\xce\x46\x75\x7c\xb8\x90\x77\x40\x93\x3c\x1e\xe0\x5e\x5e\x06\x49\x86\xed\x91\xbc\x47\x4d\x92\x61\x73\x94\xb9\x81\x39\x96\x31\x97\x0c\xe3\x80\x90\x44\xde\xa4\x5f\xc8\xe7\xd6\xa8\x40\x53\xba\x59\xea\x89\x71\x58\x88\x65\x51\x7b\xa1\x4f\x1c\x67\x2e\x79\x4e\xed\x63\xd9\xae\x01\x49\xb3\xce\x03\x63\x22\xf6\x3f\xde\x84\x0c\x05\xa2\x50\xb9\x32\x1d\x63\xb9\xd3\x35\xc6\x95\x6a\xcc\x46\x11\x7b\x99\x51\x8c\x53\x64\xd1\x40\x8c\xcb\x28\x98\x18\x39\x50\xb3\x1a\x68\xe2\x2f\x0a\x98\x56\x25\x88\xcf\xbc\xc0\x1f\x17\x50\xed\x4a\xa8\x34\x9c\xd0\x38\xf0\x43\x5a\x00\x76\xaa\xc9\xe2\x43\x7d\x01\xd4\xab\xa6\x4b\x5d\x86\x2c\xe0\xfa\xd5\x70\x73\x7f\x32\xa1\x61\x01\x76\x54\x0d\xc6\x57\x97\x57\x94\xab\x97\xe9\x6c\xae\x55\xf8\x48\x67\x76\x89\xa9\xed\xe2\xd3\xe5\xc6\xa7\xf1\x29\x69\xd9\xb5\xda\xf8\xa4\xd5\xcf\xf3\xfa\x43\x7b\x34\x1c\x3f\x73\xec\xd1\x30\x1a\xe9\x90\x47\x02\xf2\x48\x87\x74\xaa\x21\xdb\x02\xb2\xdd\xcf\x0b\xdd\x89\xd3\xb1\x05\xa8\x63\xeb\xb0\x55\x58\x5b\x82\x6b\xab\x55\x5b\x72\x4f\x05\x66\x96\xa9\x7b\xc2\xe6\x50\x09\x29\x71\xe4\xc7\x79\x21\xa4\xa2\x2f\x74\x84\xb3\xbf\x5a\x6d\x0b\x70\x52\x48\x70\x9e\x43\x64\x99\x88\xa0\x35\x93\x13\xd2\xec\x74\xb0\x3f\x45\x6a\xf0\x5e\x92\xc9\x29\x71\xba\x03\xb9\x6c\x58\x4a\x4d\xaf\x61\x98\x13\xd7\x1f\x4e\x4e\x7b\x03\xc7\xb5\x47\xc3\xc9\xb3\xfe\xc8\x12\x83\xd5\xde\x74\x90\xf1\x6b\xe9\x66\x75\x5c\x4a\x33\xb0\x0a\xdd\x46\xc5\x38\xd6\xb5\x48\x84\xa1\xc0\x51\x91\x65\x38\x19\xb9\xa5\xde\xb5\xf5\x39\x37\x3a\x33\x9a\x5b\x5c\x68\xc9\x5a\x2d\xaa\xb8\x00\xd7\x95\xa9\x77\xbb\x38\xb6\x10\x1c\x5b\x08\x8e\xd5\x6a\xd7\xe2\xed\x5a\xbd\xdd\x89\xb7\x3b\xc9\x4d\x51\xe4\x8c\x2c\xa4\x7a\x79\x2d\x7f\xee\xf6\xc2\xc1\x74\x80\xb2\x9a\x4a\xfe\xe6\xe3\xb5\x01\xdb\x0b\xa0\x19\x76\x51\x56\xf3\x6a\xf0\xcb\x0d\xf0\x82\x91\xb3\x9c\x67\xb3\x35\xff\x4f\x33\x53\x25\x24\x5b\x6c\xd5\x6a\xfa\xfb\xe5\xc6\x7b\xd1\x2d\x07\x9e\x8b\xbc\xbc\x79\xa6\x33\xf0\xf2\xc6\xb8\xe4\x2f\xdb\xcb\x36\x3d\x45\x40\x3f\xb4\xae\x03\x4f\x1f\x02\x36\xca\x06\xcf\x2a\xcd\x4f\x5c\x17\xf3\xaa\x27\xec\xc7\x95\xa5\x3d\xa5\xd6\x29\x27\x03\xd5\x6a\x8a\xcc\x25\xf4\x1a\xa9\xd4\x64\x9b\x92\x62\xfc\x2f\x14\x0b\x95\x6e\x18\x62\xaa\xf1\xcb\x64\xe6\x99\xb2\xc9\x6c\x4f\x7a\x6f\x2a\x4f\xfd\xca\xec\x5b\x38\x4d\xbc\x5f\x43\x50\x11\xe7\x64\x38\x82\x58\x29\x12\x85\x33\x50\x8a\xa9\x35\xf7\x92\x0f\x37\x61\xbe\xc7\x15\x63\xae\x57\x48\xcf\x86\x13\x8f\x79\x0d\xc3\x8c\xcd\xef\xb9\x3e\x1d\x6e\x2c\x6f\xe9\x30\x1e\x61\xf3\x7b\xe3\x7b\xcd\x1c\x30\x9b\x02\x07\xc6\xbe\x61\x32\xa5\x17\xed\x1b\x98\xeb\xfe\xf9\xa6\xac\x90\x18\x14\x0d\x90\xf2\xbb\xc8\x13\x4c\xa3\x31\x9d\xe5\x71\xc2\x89\x5f\x6a\xf9\x5a\x0d\xa5\xc3\x0d\xc9\xe5\xe0\xa3\x0d\x38\x28\xbf\x8a\x41\x1c\x63\x37\x73\xd4\x28\x15\x9a\x78\x76\x89\x0c\x53\x96\x89\x0d\x2c\x9c\xa5\x6f\xd2\x73\xc9\xe9\xb9\x2c\xd1\x73\xf9\x18\x3d\x97\x92\x9e\xcb\x32\x3d\x5b\xfb\x0e\x1a\x3d\x97\xde\xf8\x6a\x26\x5c\x2e\x34\xca\xa4\x5d\x16\xa4\x15\x02\x2c\x48\x54\x14\xca\xb2\x39\x68\xf1\x1d\xbb\x52\x01\x20\x9c\x5a\xbd\xcf\xa9\x2c\xd3\x28\x64\x8d\x1b\xea\xcf\xe6\xcc\x15\x80\xd8\x15\xca\xc0\x2e\x78\xe5\x7c\xcb\xb5\xad\x0e\x07\x55\x4a\xc1\x83\xd8\x65\x48\x56\x05\x89\xdd\x7c\x4e\xdf\x99\x49\xe8\xdd\xae\x08\x06\xc4\x90\x63\xdb\xcf\x30\xcf\xa6\xa6\xf8\x5d\xb9\xae\xfd\xc4\xbf\xf4\x03\x4e\x9b\x82\xc4\xee\xc6\x7c\xbf\x2b\x2b\xa3\xb7\xac\xa1\xa9\xad\x5c\x7d\x69\x64\x99\x8a\x86\xd9\x04\xdb\x60\x34\x86\x68\xf0\xfd\x49\xb2\xf4\x42\xb9\x39\xc5\x3b\x47\x52\xc8\x3a\xef\x12\x66\x80\x52\x6c\x1a\xa7\x3c\xa7\xea\xb8\x7c\x19\xca\xf3\x9c\x1a\xae\xca\x2c\xd8\xc5\x33\x67\x0b\x88\xe3\x27\x64\x16\x1b\x29\x74\x8d\xf0\x1e\xb5\xe8\xed\x32\x8a\x59\x42\xa2\xed\xcb\x9c\x79\x2c\x90\x66\x75\x68\x87\x98\x14\x4b\xd3\x09\x0d\xfc\x85\xcf\x68\xbc\x5a\x19\x96\x01\x3e\x61\xd6\xc2\xbb\x7d\x49\x97\xc2\x59\xc6\xfd\x7a\xf3\x46\xf4\x3e\x45\xd2\xfb\xfd\x7d\x4a\xd2\xd5\xca\xc9\x76\xcb\xaf\xe8\x5d\x82\x3c\x6c\x4d\xa3\xf8\x55\x29\xb4\x76\x20\xcb\x1c\x13\x6f\x18\x8c\x60\x4a\x98\x95\x78\x53\x5a\xab\x95\x3d\x3b\x8f\x31\xcc\xd5\x99\x6d\x85\xcf\x27\x19\x7c\x6c\x8c\x61\x42\x42\xfe\xb3\x24\xc9\x20\x31\x63\x33\x70\xc5\xad\x8c\x83\xa9\xba\xe2\x6f\x0c\xa5\xd3\xe2\x7d\x89\x69\x24\x66\xf2\xd5\x2a\x4f\x16\x65\xc9\x54\x5c\xab\xe9\x94\x8f\x71\xe1\x47\xfd\xa0\x60\xc1\x6a\x95\x9e\xf8\x38\x77\x2d\x83\xc6\xb0\x84\xd4\x74\xf0\x5e\x34\x5c\x8e\xc8\x58\x84\xdf\xc3\x10\xad\x8b\xe6\xf0\xf9\x38\x14\x78\x8c\xd1\x50\x3c\xa7\x61\xf6\xa6\x71\x50\xf3\x36\x88\x62\x12\x57\xb6\x44\x44\x62\x2b\xba\xa6\xf1\x4d\xec\x33\x79\x8c\xe1\xf1\xe6\xe0\x4a\x96\x70\xc7\xbc\x55\xd7\x03\xf2\x18\x03\x59\x5e\x13\x56\xc8\x85\x76\xb9\xf4\xbd\xf0\x0e\x5e\x71\x84\xb6\x5a\x35\x9c\x03\xb2\x11\xb8\x70\xb5\x8a\x2d\x49\xc2\x80\xba\xf9\xb5\x58\x9d\xa9\x0c\xcb\xf0\xf7\x95\x1b\x2c\x79\x08\x8a\x6c\xe2\x58\x57\x08\x8f\x76\x69\x21\x25\xa1\x5a\xbb\xf9\x18\x02\x92\xe8\xda\xd6\x98\xbf\x8a\xe0\x5c\x53\xe2\x1d\xe7\x2b\xe6\xf1\x71\xa6\xe7\x3e\xc2\x98\xe9\x30\x18\x71\xe1\xfa\x06\xf9\x11\x72\x17\x49\xb9\xcb\x0b\x14\x78\x64\xfd\x8e\x91\xf8\xb8\x5a\x71\x20\xa9\x11\x89\xaf\xb5\x9a\x28\x8d\x64\xae\xd8\x73\xbf\xde\x63\x8d\x9f\xf7\x6b\x77\x28\x2a\xc3\x41\xa1\x58\x5c\xd6\x6a\x68\x57\xcd\xf1\x5a\xa0\xa5\x88\x0d\xc3\x91\xd8\x54\x01\x6f\x5d\x1e\x1a\xf0\x7d\x21\xa6\x55\x7b\x33\x62\xb6\xa3\x92\xda\x03\x52\x72\x5e\x5f\xe9\xe6\xbe\x04\x61\xf9\xc9\x3f\xd2\xe9\x94\xc6\x1b\x6e\xef\xf3\x74\x11\x38\x7b\x6b\xa8\xda\x0a\xf2\xa1\xdc\x6a\x57\x7a\xd4\x43\xde\xff\x66\xce\xfd\xa3\x8a\x9b\x13\xdb\xda\xdb\xbd\x76\x11\x30\xe6\x5d\x82\x6b\x95\xc3\x30\xdf\xa6\xe0\xcf\x59\xc3\x66\x4a\xe9\x30\x1c\x91\x7b\xdf\x0d\x21\x70\x0f\x1c\x50\x1f\xdd\xfb\xf5\xba\x08\x77\x18\x8e\xa4\xf0\xfb\x59\x5e\xe0\xe3\x55\xf6\x1c\x73\x05\x24\xe0\x8a\x72\x9e\x96\xfb\xdf\xb4\x16\x84\x42\x6c\x8d\x09\x83\xd8\x9a\x6c\xef\x92\x5b\x91\x10\xb7\xd5\x6a\xd7\x49\x2a\x83\xfb\xe2\x88\xd6\x3d\xb0\x45\x2c\xc7\x50\x84\x8b\xb5\xca\x71\x94\xc4\x4e\x03\xcf\x3d\x29\x7a\x4a\xc6\x69\xc5\xe5\xac\x2b\x9f\x7b\xb3\x7c\x4c\xdf\x2a\x71\x1b\x16\xee\xa5\xa2\x6f\xbc\x8b\x26\x69\x40\x8d\xf5\xee\x83\x5f\xe3\xe2\x82\x26\x0a\x2c\xcb\x76\x60\x4b\x72\xd9\xb6\x7f\x4c\xa7\xc6\x84\x47\x98\x58\x38\xd9\xe9\xd7\x58\x3e\x7f\xf0\x41\xa3\x5d\x2b\x39\xd7\xe7\xe2\x5d\xab\x51\x2e\x4f\x45\x29\x45\x06\x39\x95\x2b\xc2\xa4\x1f\x61\xe1\xf0\x08\xcb\xe8\x8d\x5c\x1c\x76\x90\x1d\x82\xa1\x1c\xc0\x18\x9b\xdc\x96\x35\xa0\x6b\x0c\x4d\x41\x8c\x0a\x03\x91\x33\xb8\x38\x57\xf1\xe5\x42\x21\xb6\x26\x88\x77\xcb\xed\xf3\x1e\x19\x36\xd3\xba\xf4\xc3\x89\xa0\x0b\x7c\xcd\x18\x98\xf3\x27\xac\x58\x8e\x6c\xd4\x76\x50\x71\x7d\x28\xf3\x1c\xbd\xae\x88\x94\x49\x73\x21\x2e\xbc\xb8\x32\x0c\x8c\x17\x17\x55\x7b\x22\xd9\x1a\xff\xcb\x0b\x1f\xd9\x11\x94\xb7\x39\x6b\x29\xc2\xf4\xa2\xd8\x4a\x88\x83\xd7\x68\xf8\x0d\x63\x68\x49\xa9\x19\x94\x55\x1c\x8a\xdd\x8a\x89\xe4\x91\x99\xa9\x72\xd0\x2c\x2c\x30\xb5\xb1\x31\x7c\xda\xd8\xe8\xa1\x8d\x61\x11\x57\x8d\x8b\x5c\x2a\xff\xa7\x8d\x89\xa2\xb0\x3c\xd8\x89\x4f\x62\xd4\x94\xf1\xc4\xfa\x18\x12\xe1\x7f\x04\xd2\x1d\x07\xcd\xba\xba\x6b\x05\xd1\x58\xae\xf6\xfd\x62\x47\x3d\x1c\xd8\x6e\x08\x1e\x89\xad\x89\x2f\xcf\x9e\x21\x29\xbe\x7a\x03\xc7\xb6\x5d\x4f\xdc\x7e\x64\xf3\x98\x26\xf3\x28\x98\x40\x50\x00\xa4\x03\xab\xeb\xa6\x30\x26\x31\x57\x09\x3f\x72\x45\x2e\x0e\xdf\xaa\x50\x36\x05\xd8\x78\xd0\x6a\xba\x63\x98\x93\xd8\x1a\x7b\x09\x3d\xa3\x61\xe2\x33\xff\x9a\xc2\xa4\xd8\xbe\x9f\xd7\x6a\x73\x58\xf2\x82\xa2\x2b\x1a\x9e\xd1\xa5\x27\xd8\x0f\x8b\x02\xcd\x72\x70\xb8\x6f\x1e\xce\xdc\x25\x5c\x93\xd8\x9a\xfa\xe1\xe4\x79\x10\xbc\x13\xd1\x25\x13\xb8\x2b\x50\x5d\xd7\x6a\xd7\x30\xe3\x34\xf9\xa1\xf8\xfc\x62\xee\xc5\x8a\xaa\xcb\x02\xdd\x6c\xe0\xb8\x33\xb8\x20\xb1\xe5\x4f\xe0\xa6\x48\xbf\x90\x16\x51\x17\xf0\x8a\xc4\x42\x51\x83\xdb\xe2\xe3\xab\xc1\x70\xe4\xbe\x82\x33\x12\x5b\xc9\x3c\x4a\x83\xc9\x59\x14\x33\xf8\x50\x00\x9c\xad\x56\x67\xf0\x9c\xc4\xc2\x06\x39\x84\xab\xe2\xcb\xf3\x41\xe4\x3e\x87\x73\x9e\x33\x8a\xf9\xb7\x17\xc5\xb7\xf3\xea\x18\xcb\xd4\x4a\xc6\x51\x4c\x1b\x4c\xfe\xae\xdd\x73\x78\x97\xb1\xc8\xff\x9b\xc2\xa7\xa2\xd2\xef\x6a\xb5\x77\xf0\x51\x34\x04\x1b\xcf\x9f\x07\xc1\x39\x07\x4a\xe0\x6b\x01\xf2\xb1\x56\xfb\x08\x2f\x79\x7d\xc3\x71\x90\x4e\x68\xc6\xba\xf7\x05\xc8\xcb\x5a\xed\x25\xbc\x29\x40\xce\x78\xb1\xf0\xb6\x00\x78\x53\xab\xbd\x81\x1f\x48\x6c\x5d\xd3\xf8\x32\x4a\x28\xfc\x5d\x7c\xfb\xa1\x56\xfb\x61\xef\x7f\xa2\x65\x43\xb4\xe4\xc9\x09\xb9\xcf\x24\xdb\xf5\x21\x13\x63\x37\x81\x5c\x62\xdd\x00\x36\xa5\xd3\x9d\x82\x9f\xbc\xd0\x65\xd1\x9d\x40\x59\xf2\xdc\x05\x94\x45\xcc\xbd\x83\x6d\x81\x72\x2f\xc1\x9f\xb8\x37\xc0\xe5\xc4\xbd\x85\x32\x67\xdd\xf7\xa0\xf3\xd1\x7d\x0b\x85\xcc\xb8\x1f\x40\x48\x88\x7b\x05\x52\x1c\xdc\x17\xa0\x78\xea\xfe\x0d\x59\x0b\xbb\x9f\xa0\xdc\x9e\xee\xd7\x35\x64\xdb\xbb\x2f\xa2\x40\xc5\x11\x45\x4c\x0e\x0e\x2c\xb7\x5b\x27\x85\x2d\x41\x01\xf6\xd8\x49\x69\xe0\x27\x8c\x50\xa0\xf9\xce\x5f\x42\xa5\x11\xe6\x76\x36\x39\x53\x6d\xc6\xd3\x3d\x75\x34\x6d\x3f\xff\x38\x74\x46\x03\xfd\xc5\xbd\x17\x2b\x39\xf7\xc0\x59\x4b\x7f\xcd\x17\x41\x34\x43\xdf\x37\xb2\xff\xbe\x84\x67\xa2\xdc\xfd\xa5\x6c\x32\x77\xdf\xf8\x9e\x8f\x9c\x63\x8f\x21\x0a\xdf\x1b\xdf\x2b\x0f\x75\x6a\x9b\xf3\x62\x19\xf3\x36\xa3\x32\x13\x8d\x13\x19\xf0\x3f\x1f\x49\x54\x2a\xf8\x7c\xd0\x48\x83\x20\x4b\x81\x48\xe5\x97\xb5\xe4\x33\xb8\x8c\x13\x2f\x37\x82\x12\x48\x48\x64\xc5\x34\x49\x03\x96\xe8\xb1\xdd\xad\x8b\xb1\x0c\xc7\x20\x1a\x95\x2f\xf7\xcb\xf2\xa8\x0d\x0c\xb5\x9a\x2a\x81\x2f\xf3\xc4\x09\xab\xa8\x79\xad\x56\x44\x9a\xca\xc3\x16\xa9\x2f\x28\x21\x49\xee\xc8\x4e\xa5\x62\x55\xc0\x85\xb4\x19\x46\x49\xb1\x37\xbb\x55\xf9\x0a\x83\x11\x69\x15\xb2\xd5\x56\x76\x65\x5b\xd9\x7a\x5b\xd9\x23\xd7\x30\x80\x91\xe1\x48\x6c\xd5\xea\x95\xcc\x24\x14\x17\x76\x22\xd9\x19\xf9\x36\x5c\xde\xa9\x44\x1c\x7d\xb1\x76\x57\x96\x8a\xe1\x49\x74\x1c\x9a\xc4\xc1\x6a\x5f\x95\x0f\x0a\x3e\x8a\x45\x50\x7d\x0d\x4d\xae\x35\xdd\x97\x1b\xd5\x65\xa0\x37\xa9\x2b\xb3\xd3\x72\xde\x75\xc1\xad\x1d\x02\xfd\x6f\xf2\x68\x38\x82\xaa\xbe\x50\x16\x7a\x89\x07\x94\xd0\xf2\xae\x96\x85\xa0\x92\xdc\xdd\x8a\x8d\x2d\xa2\xe3\xe5\xeb\xfb\x48\x44\xe9\xcb\xf9\x16\x9d\x78\xc7\x91\xe0\x9b\x10\x0c\x2f\xf4\x82\xbb\xbf\x29\x92\xd5\xcc\xea\x17\x0f\xa3\x11\xc4\x74\x1c\xc5\x13\x37\x02\xb1\x39\xe1\x46\x6b\xb8\x97\x42\xfd\xce\x5b\xba\x21\x28\x01\x77\x7d\xd8\xe0\x2c\x2d\x73\x96\xad\xf3\x26\x50\xfd\x43\x1e\x6c\xe7\xf9\xd7\xeb\xc2\x7a\xe7\x7e\xad\x7c\xac\xe4\xf4\xa6\x27\xc1\x71\xca\xe9\xcd\x80\xc6\x24\x1e\xa6\x23\x98\x12\x1b\xe6\xa4\x24\x31\x7c\x28\xcd\xb2\x4d\x4f\xe6\xc7\x53\xb3\x38\x67\xdb\x02\x1c\x4e\x4b\xcc\xcb\x75\xf4\x89\x98\x7a\x92\xe1\xc4\x0a\xbd\x05\x1d\x11\x45\xb4\xeb\x34\x26\xaa\x7f\xaf\x56\xce\x1a\xb2\x97\x13\x62\xaf\x56\xd9\xcb\xa9\xb3\xed\x72\xfe\x27\x7a\xb7\x2f\xbf\xee\xcf\xbd\x64\x9f\x45\xfb\x97\x74\xff\x74\xdf\xde\xf7\xc2\xc9\xfe\x09\xd9\x77\x0c\xbc\x37\x21\xb2\x34\x79\x56\x96\x0c\x27\x5a\xb1\xd9\x48\x57\x6a\xa8\x89\x6a\xa7\x52\xad\xc4\xac\x80\xc6\x30\xc1\x59\xd3\x8d\x55\xd3\xa5\xff\x7a\xd3\xad\x37\x9a\x2e\xd1\xdb\x2d\xef\x1d\x8a\xb8\x6a\xa3\x9d\xac\x8f\x0b\x23\x5f\x42\x2d\x8f\xeb\xe8\x22\xda\x62\x59\xa1\x6c\x38\x6e\x28\x1c\xf5\x0a\x24\xc2\x9d\xa9\xac\x87\xf0\xbf\x26\x6a\x02\x01\x61\x9b\xa3\xf3\xb8\xc0\x11\x70\x1d\x2b\x10\x7b\xa1\xa5\xf1\x7a\x5e\x80\x4c\x39\xc8\x14\x26\x84\x59\x39\x47\x60\x59\x7c\x9f\x0c\xee\xd7\xee\x04\x16\xf9\xf7\x04\xae\x8b\xaf\x0b\x9e\x7b\x21\xf6\x0a\xc5\x5e\x8e\x8a\x87\x75\x47\x0e\x1c\x98\x91\x86\x03\x97\xc4\xae\xec\x92\x91\xb2\xbe\x13\x13\x96\xf1\x25\xfc\x89\xde\xb9\xfb\x46\x36\x37\x19\xc2\x7f\xae\xb8\x2f\x16\xab\x29\xea\x82\xcc\x2d\x35\xbd\x44\x38\x1f\x43\xe5\x7c\xf7\x43\x1a\x04\xfb\x8c\xde\x32\x7d\x7e\x8b\xe0\x7b\x03\xf6\x85\xb6\xe7\xee\x7f\x8f\xb3\xe4\x0b\xa9\x00\xe2\x8d\x99\x26\x1f\x84\xf3\x61\xe2\x86\x44\x4f\x19\x85\x5f\x91\xe1\x08\x6e\x89\x7d\x7c\x7b\x32\xce\xfa\xda\x6d\xde\xcf\xce\xc8\x78\x78\x3b\xd2\xe7\xe6\x2f\xe1\xc7\xed\xb9\xf8\xcc\x52\x13\xb4\x9a\x93\x33\x1a\x3e\x70\x3e\x3e\x27\xf6\xf1\xf3\x93\x9b\x0c\xf9\xf3\x1c\xf9\x15\xb9\x19\x3e\x1f\xc1\x39\x39\xcb\x38\x73\x85\xe1\x05\xb9\x5f\xef\x9d\x5b\x7e\x22\x34\xa7\x01\x7a\x31\xbc\x1a\x91\x73\x59\x69\x10\x4e\x8d\x3f\xf0\x3f\xaf\xe4\x24\x71\x9e\x71\xc3\x95\x80\x4e\x99\x2b\x65\x8d\x69\xb5\x52\xb9\x9c\x7c\x1a\x15\x55\x12\x5f\xf5\xea\x5c\x55\xb3\x9e\x97\x80\xf1\xfa\x43\xad\x86\x2e\x79\x25\xd6\x33\xf2\x6a\x68\x17\xf6\x96\xef\xc8\xab\xcc\x4b\xcc\x27\xe2\x1c\x7f\x3a\x79\x77\xfc\x89\xc3\xcd\x4c\xf2\x6a\xf8\x69\xb4\x37\x3b\x24\xef\xb4\x72\x0d\x51\xae\x2c\x66\xdf\xbb\xa6\xb1\x37\xa3\xae\x01\x33\xa9\xc0\x7d\x24\xaa\xa5\xf7\x66\xa7\x0d\xa7\x56\x43\x1f\x09\xfa\x68\xce\xf0\x61\x53\xa7\xdd\x38\xdb\xc8\xfd\x51\x4a\xdb\x57\x72\x50\x29\x1e\xab\xd5\xc1\x83\x0c\xba\x3c\x25\x99\x14\x94\x65\xd4\xf8\x12\xbe\x98\xd3\xf1\xd5\x7e\xa6\xd0\x16\xc2\xfe\x15\x63\x40\x77\xab\xd5\x45\xd6\x68\xb8\x56\xfb\x2a\x5b\xf8\x25\x59\x0e\xd3\xd1\xde\xcb\xc1\x4b\x2b\x4a\xd9\x32\x55\x53\xbb\x18\x64\x62\x28\xc6\x0d\xd7\x57\x03\x4d\x04\x92\xeb\x1f\xa5\xb2\x4b\x27\x6f\xc2\x89\x3f\xa6\x89\x7b\x61\x95\x13\xd6\xd8\x45\x1c\x37\xb9\xf7\x19\x5d\xb8\x1e\x48\xfc\xee\xf0\x3f\x81\x7b\xb4\x86\x6b\x49\x29\x2f\x02\xe3\x75\x6e\xf3\x90\xa0\x08\xe7\x13\xd7\x7b\x62\xc3\x1b\x12\x65\x82\xfd\xfe\xe4\xcd\xf1\xfb\x1d\x13\x71\x89\xa0\xf7\x19\x41\xc3\xf7\xf9\xa4\xec\x55\x8e\xec\xcb\x7c\x70\xbe\xde\x1c\xd9\xc7\xe5\x91\x7d\xbe\xd6\x95\x1b\x5d\x2d\xad\x1e\xc3\x4b\x2d\xfb\x25\x94\x61\xc5\xfc\x70\xa6\xa4\xfe\x4b\x68\xe8\x76\xbf\x36\x84\xa4\xb8\x52\x72\x12\x1e\xc7\xa2\x13\x17\x6e\xe3\xd9\x30\x1e\xa9\x26\xd6\x3c\xc9\x80\x47\x1c\x48\x88\x70\xb3\x76\x9c\x9e\x44\x72\xde\x57\x66\x5f\x74\x40\x87\xfe\x30\x1d\xf1\x69\x64\x64\x65\xb3\x23\x8c\x89\x30\xdc\x0a\x06\xe2\x9b\xa4\xa6\x78\x5c\xad\x2c\xdb\x76\x70\x3d\xd8\x73\x0e\x38\x50\xe6\x7c\xde\x0f\x51\x02\x63\xec\x22\x01\x1a\x8a\x8a\x93\x31\x78\x75\x32\xc6\x6b\x41\x9c\xc8\x4e\x1c\xe1\x51\xcb\x13\x6b\xc2\x8c\x01\x22\x24\xa7\xae\x19\x46\x71\xa5\x25\xe9\x06\xcb\xb8\x56\xef\x87\x33\xcb\xb2\x2c\x03\x03\x95\x07\x38\x65\xed\x5f\xac\xe6\x34\x0d\x3d\x73\xbb\xbb\x6b\x11\x55\xa1\x5c\xab\x85\x60\x36\xe9\x0e\xf5\xb1\x58\x90\xf1\x41\xca\x3d\x7f\x34\xe0\xc7\xb3\x0f\xef\x2d\x39\x55\xf9\xd3\x3b\x44\x61\x6b\x09\xae\x05\x2b\xe5\x6b\xc5\xec\x0c\x83\xc8\xaf\xe2\xf0\x2a\xce\x0f\xaf\xf2\x63\xb0\x3d\x15\x7b\x90\xe5\xde\xb0\xd9\x1a\x63\x90\x67\xf5\x6a\x33\x2a\x23\x2d\xa3\xbc\xbc\x00\xae\xd5\x7c\x89\xa2\x5a\x95\x90\xa2\xb3\xc7\x54\x4f\x4c\x74\x33\x76\xbe\x4e\xf0\xf5\x75\x82\x2f\xd7\x09\x2a\x42\x17\x5f\x21\x70\xb6\x71\xc5\x3c\xda\xe8\xc9\x99\x3b\x05\x19\x7a\x94\xdc\xfb\xaa\xc7\x6f\xc2\x65\x1d\x52\x6a\x2a\xeb\xbd\x88\x0b\xa5\xf0\xe4\x77\x45\xef\x88\x78\xc3\x10\x6d\x1a\x81\x18\x45\x9f\x36\x70\xad\x16\x69\x8a\x90\x1c\xb2\x3d\x2d\x85\xe8\x9f\xf9\xfa\x4f\xd5\x54\x72\xc5\xe3\x02\xb8\x31\xa5\xeb\x1b\x06\x3b\xd8\xa7\x76\x83\x88\xda\x1d\x5a\x17\x7d\x56\x2e\x12\xe8\xd6\x22\x41\x99\x0c\xd3\x61\xb4\x2d\x6b\xfe\x84\x2f\x3a\x2d\x3e\xa0\x92\x0a\x45\x54\x7e\xd9\xa0\x71\x82\xc5\x69\xa2\x9f\x73\xba\x38\x85\x94\x23\xb3\xcc\xb5\x86\x80\xd8\x30\xce\x47\x86\xe3\xe0\x64\x7c\x1c\x70\x82\xfc\x61\x30\x42\x09\xa4\x78\x4f\x4d\x0e\xa9\x0a\x1e\xa9\x5e\x65\x7e\x4d\xee\xf2\xde\x14\x44\xb3\x5d\xcb\xb7\xbd\xaa\x3e\x24\x8e\x1a\x64\xe4\x3f\x8a\xad\x20\x12\xc1\x13\x03\xde\x4b\xf2\xd5\x99\xb8\x80\x51\xab\x95\x99\xfc\xbf\xe6\xcd\x3a\xa4\x5d\x2d\x05\xb6\x65\xec\x90\xee\x36\x76\x68\x61\xde\x9d\x50\x5b\x6e\x1d\xf7\x30\x78\xff\xbf\xd9\x33\xde\xd8\xa9\xfb\x5f\x60\xd7\xf8\xff\xbc\x5d\x4e\xb5\xeb\xa8\x14\xfe\xf2\x40\xb1\x51\xc6\x80\xb9\xac\xec\x7c\xad\x94\x37\x8b\xb0\x4f\xa6\xb5\x1a\xd2\x3f\x3c\x0f\x96\x73\xef\x92\x32\x12\x95\x92\xf1\xee\xad\xcd\xff\x97\xbd\x37\xdd\x6e\x1b\x57\x1e\xc4\xbf\xfb\x29\x6c\xfd\xd3\xfa\x03\x62\x51\x22\x95\xa5\x6f\xd3\x46\x74\x9c\xad\x3b\xdd\xd9\x3a\x4b\x6f\x34\xaf\x2f\x2d\x41\x16\x13\x99\x54\x40\xc8\xb1\x62\xf1\xd1\xe6\xcc\x23\xcd\x2b\xcc\xc1\x46\x82\x14\x65\x3b\xbd\xdc\x6d\x7e\xf9\x10\x8b\x24\x50\x28\x00\x85\x42\x55\xa1\x50\xb5\xcd\x38\xb9\xc1\xe2\xea\x08\xca\x6c\xde\xb4\x8e\x62\x1d\x47\x42\x88\x39\x64\xbc\xd4\xe2\x6d\xb0\xe7\x69\x49\xd2\x6b\x4a\x92\x61\xe8\x95\x59\xd4\x5d\x3f\x8a\x94\xeb\x23\xaf\x0d\x12\x30\xe5\x39\x54\xa7\xf7\xac\xd2\x83\xf5\x7c\x94\xec\xb9\x3e\x5a\xf7\x4b\x2f\xfb\xd4\x58\xb7\x8c\xee\x95\x99\x5b\x25\xb5\xe6\x72\x12\x57\x8b\x77\x49\xe2\x6a\xad\xce\x49\x6c\x2d\xcc\xb1\xbc\xe2\x51\x5b\x13\x53\x12\xb7\xac\x81\xd2\xe7\xa5\xd9\x7e\xdb\x14\x42\x45\xac\x79\x45\xac\xcb\x1a\xb1\x36\xc8\x6e\xdc\x46\x76\xd3\xe2\xbf\x87\x37\xc7\x4d\x6f\x13\xd5\x83\x41\x78\xe4\x1e\x85\x47\xd1\xd1\xe0\xe8\xf2\xa8\x38\x42\x47\xf8\xa8\x77\xe4\x1c\x8d\x8e\xfa\x47\x47\x47\x7f\x3f\xba\x75\xb4\x8e\x06\xa7\x3b\x6d\xa7\xaa\x06\x46\xba\x69\x7a\x1c\xb6\x9a\x2d\x87\xb6\xd9\x72\x18\x05\x92\x2f\x42\x42\xac\x78\x8c\x55\x52\x24\x66\x62\x38\x96\x6f\x52\xe8\xac\x3b\x32\x41\x88\xb9\x93\x22\xed\xe5\x7b\x7b\x99\x74\xaf\x15\x94\x5b\xdd\xe0\x53\xe6\xbf\x6c\xc3\xfc\xa7\x9d\xdd\x32\xa1\x20\x6a\x29\x28\xac\xfc\xa6\xc6\x18\xc6\xd5\x42\x2a\xad\x56\x6a\xdd\xc5\xa3\xfe\xdd\xc0\x07\xb3\x1e\xe3\xe6\x32\xcc\x8b\x96\xb3\x60\xb3\xfd\xdd\x55\xdb\xdf\x3d\xbc\x65\x28\x55\xa6\xee\xea\x4e\x62\x56\xad\x9e\xda\xe6\xa6\xb6\xb6\xcc\x5e\x4e\xd6\xce\x26\xb6\x3e\xb1\xb5\x65\xd6\x0a\xab\xed\x69\xfd\x7b\x72\x4f\xcb\x9a\x6b\x6e\x73\x4b\xcb\xda\xf6\xa1\xda\xb6\xe6\xcb\x2d\x2d\x97\x69\xa2\xb4\xe6\x75\x4a\xa6\x32\x3b\x54\x29\xca\xc3\x39\x86\xe3\x2a\x8c\xed\x27\x12\x46\xf0\x98\x78\xfb\x8f\x0f\x56\xfb\x8f\xc5\x7c\x7c\x0a\x1f\x47\xca\xd8\x25\xb5\x80\x13\x35\x62\x17\x42\x4d\x80\x4b\x2a\xf6\xac\x3c\xf0\x74\xae\x15\x19\x1e\x41\x2e\xea\x13\xa0\x17\x0b\x3a\xe6\x74\x52\xbe\x3a\xaf\xd6\xf9\x5c\xdd\x58\x3b\xad\xb4\xb4\x0b\x38\xc5\x20\x1b\x40\x02\xbd\x79\x9c\xf3\xa7\x15\x8a\xce\x31\xc6\xc6\xf0\xf4\x47\xdb\xb5\x1a\x7d\x03\xa7\xb8\x28\x4e\x88\xeb\x5b\x96\xa9\x30\x82\x43\xe2\xc3\x07\x72\xec\xac\xe0\x2d\xf1\x0f\x0e\x8e\x5d\x1f\x1e\x12\x6f\xff\xe1\xc1\xf1\xfe\xc3\x9a\x82\xfb\x9c\x78\xf0\x9a\x7c\xd8\x7f\x7e\xf0\x7a\x1f\xdb\x88\x3d\xdc\x40\xec\xdc\x79\x7d\x1d\x6a\x07\xe4\x74\xf4\x9c\xbc\x0e\x3e\x90\xd7\xf0\xda\x0e\x7e\x87\x3e\xb8\xcf\xf1\x60\xe8\x3c\xc7\x3b\x1f\xc8\x6b\x9d\x85\xd7\x4a\x2d\x74\xee\xbe\x76\x7c\x0c\xef\xc9\x64\xb4\x0a\xca\xde\x89\x16\x57\xd8\x39\x86\x47\x44\xf9\x4f\xbc\x77\x86\x78\xe7\x51\xf8\xde\xf1\x23\x82\xfc\x83\x83\x87\xd8\xea\xf8\x0b\xf2\x7e\xff\xc5\x7d\xf2\x6a\xff\x85\x6b\x16\xe1\x53\xf2\xc2\xf5\xe1\x19\x61\x61\x19\x85\xfc\x29\x96\xab\xf8\x59\xb7\x8b\x3e\x85\x4f\x23\xe2\x63\x78\x14\xbe\x88\x08\x7a\x14\xbe\x70\xfc\xe8\xe0\xc0\x5f\xfb\xb8\xfb\x0c\x04\x99\x3e\xec\x76\xc5\xeb\x68\x4d\xd0\x4b\xf9\x75\xfd\x32\x7c\x11\x61\x59\x66\xad\xde\xa8\xda\xdd\xb7\xdd\x2e\x3a\x24\x57\x8f\xdf\xd3\xeb\x46\x4f\x0c\x9f\xdc\xd8\x4f\xc9\x21\xa0\x13\xf2\x14\x1f\x90\x73\x95\x63\x73\xa7\x36\x5a\xc3\xde\xb9\x7b\x82\x8b\x42\x39\x82\x56\x4d\x3a\xfe\xe6\xa4\x5d\xd7\xe8\xfd\x53\xdd\xc2\x4b\xf2\xa8\x68\x88\x03\x27\xf7\x49\x29\x10\xc8\xc3\xfd\xbe\xe7\xf9\xc1\x61\x93\x29\x25\xe8\x13\x9c\xe1\x26\x67\x6a\x77\x93\xa9\x36\x05\xde\x57\x68\x43\x5a\x2d\x78\x36\xf2\x02\x26\x1d\x90\x1b\xfd\x80\xac\x2a\x94\x8c\xbc\x20\x81\x58\x00\x68\x74\xad\x8d\x8d\xf1\x6b\xd8\x58\x3a\x28\x39\xcb\xb4\xca\x4e\x94\xbb\x55\x90\xe3\xf9\x68\xec\x4c\x07\xf3\x60\x3a\xf2\x83\xf1\x4d\x3a\x59\xad\xae\x3f\xfb\xb4\xed\x46\x27\xcf\x3e\x30\xc1\x02\x52\xe2\xaa\x3c\xb0\x70\x13\x8d\x39\xef\x76\x5d\x5f\x2a\x3e\x29\xc9\x82\x7c\xbd\x56\x4f\xeb\x35\x42\x09\xc9\x5c\x1f\xbb\xa9\xe3\xdf\x27\xbc\xdb\xd5\x06\x93\x30\x85\x24\xc2\xb2\x95\x52\x85\xa5\x61\xe6\xfa\x51\xb7\x9b\xb9\x69\xa3\xa8\x78\x8f\x81\xdd\xd0\x1b\xb5\x11\x00\xd9\xca\x6c\xeb\xc9\xa4\xb6\xea\x30\xb5\x5a\xd3\x29\x16\xfc\xbd\xb2\xd9\x79\xfb\xc9\x01\xdb\x4f\x1a\xa5\x12\x1c\xad\x05\x33\x64\x6e\xe2\xfa\x3b\x96\xd6\xbd\x6d\x3f\xf5\xb6\x6d\xa4\x1b\x8e\x9a\x4a\xa5\x84\x44\xae\x5e\x56\xda\x6f\x6a\xbe\xd2\x42\x9b\x84\x5c\xdd\x15\x95\xdb\x44\x26\x6f\x1f\x33\x2b\x5d\x1d\xe4\xe5\x63\x26\x03\x7d\x2a\x29\x83\x87\x71\x54\x1d\xe4\x2c\x71\x32\x45\xf9\x7a\xbd\x71\x1c\xb8\xac\x8e\xdc\xab\x77\xf2\x46\x1e\x5a\x56\xa6\x5d\x65\xad\x58\x6e\x58\x2b\x28\x5a\x86\xf3\x08\x72\x48\xb0\xba\x4d\x98\x77\xbb\x32\xc1\x42\xf9\x42\xdb\x69\x96\x55\x72\x50\xac\x0d\x1a\x89\xb1\xa1\x95\x02\x74\x21\xc7\x32\x8c\xa4\x68\x5b\x80\xed\xeb\xc8\x71\xd3\xf7\x71\x64\xdd\x64\x40\x38\x40\xa9\x20\xdf\x72\xa9\xa2\xa4\xc5\xab\x0d\x31\x92\xe1\x11\xd3\x76\x0e\x0e\x29\x0e\x18\x16\x3a\x4f\xe5\x84\x8f\x71\x81\xb5\xcf\xbb\x50\x35\x19\xf2\xef\x60\x44\x31\xfe\x22\x87\x68\xda\xff\x44\x4f\x16\xf1\xf8\xc3\xab\x6c\xbe\x9a\x26\xf3\xb9\x6c\x63\x42\x17\x8c\x8e\x63\x4e\xed\x35\x5f\x00\x15\x2a\xc2\x4c\x5e\xc3\x12\x44\x97\xcc\x27\x8c\xa6\xb2\x82\x79\x20\x61\x74\x85\x8b\xe9\x3c\x8b\x27\x74\xb2\xe1\xaa\x79\x4a\x79\x9b\x07\x64\x7f\x5e\x5c\xe5\xaf\x9a\xdc\x1c\x50\x22\x00\x6d\xf4\x54\xec\x8c\xb4\x65\x75\xb4\x04\x6f\x62\xc8\xbf\x87\x5b\xd3\xaf\xef\xa6\xe8\x92\x5e\xc4\x63\x2e\x9d\x65\x4d\x88\x80\x62\x27\xe9\x9f\xdf\x69\x2d\xde\x3f\xbf\xd3\x5a\x03\x92\xfe\xf9\xbd\x2d\x35\xee\x6d\xad\x41\x99\xcc\x4a\xde\x52\x2d\x11\x74\x27\xb0\x10\x7f\xef\x04\xf7\xb4\xeb\x82\x98\xc4\x92\x82\x6e\xd4\xf7\x76\x07\x49\x6a\x6c\x9c\x0f\xb2\x65\x3a\x89\x59\x42\xf3\x51\x07\x8d\x02\x34\x3a\x20\x47\x47\xf9\xfa\xef\x18\x8d\x48\x75\xa8\x1a\xc6\xee\xf4\xd0\x7d\x72\x74\x34\x09\xa2\x0e\x74\xf0\x5a\x94\xeb\xe0\xad\xdf\xd1\x48\x42\xb9\x85\xb1\xba\x5a\x07\x09\x11\xd0\x87\x77\x43\xcf\xbd\x1b\xad\x87\xa1\xe7\xde\x89\x8e\x8e\x26\x6b\xff\xe8\x68\x22\xfe\x86\xbe\xfb\x8d\x7c\x71\xa4\x62\x71\x1f\x1d\xf5\x6f\x5e\x1e\x5f\xde\x2e\x3a\x90\x11\x0b\x8d\xe8\xd2\x87\x3b\x45\x07\x62\xd2\x39\x4a\xd1\x51\x8a\x46\x41\xa7\x3a\xde\xed\x04\xf8\xf2\xeb\x42\xbc\xc3\xd6\xcb\x75\x80\xd7\xbb\xd7\xfc\x1b\x0c\x76\xfd\x60\x18\xdc\x0e\xee\x04\x77\x83\x7b\xc1\xd7\x41\xb0\xdb\x78\xf1\x37\xd5\x18\xae\xb7\x76\xaf\xde\x5a\x22\x5a\xbb\x79\xe3\x8d\x56\x03\xf1\xae\xf6\xe2\x6f\x2d\x2f\x6a\xcf\x7e\x7f\xd8\xbf\xdd\xbf\xd3\x8a\xdb\x5d\x81\x5b\x03\x39\x54\x2f\x85\x2f\x7d\x18\x16\xad\x38\xd6\x70\x0b\xd4\x3b\xeb\xc5\xd7\x0d\xdc\xe4\x63\xbd\xc0\x55\xb8\xdd\x11\xb8\x6d\x20\xe3\x81\x5f\x5c\x8f\xf0\x6d\x85\xb0\x85\x60\x60\x90\x2e\x5f\xdc\x6b\x20\xa8\xd0\x6b\x14\xb8\x0a\xc1\xdb\x5b\x10\x1c\xde\x00\xc1\x3b\x0d\x04\x83\x6a\x54\xf5\x8b\xbb\x0d\x04\x0d\x7a\x8d\x02\x57\x21\x38\xdc\x82\xe0\xed\x1b\x20\x78\xb7\x86\x60\x60\x4f\xbb\x7c\x71\xa7\x81\x60\x85\x5e\xa3\xc0\x55\x08\xfa\x5b\x10\xbc\x73\x03\x04\xef\x59\x08\x06\x75\xba\xf4\x03\x7b\x51\xaa\x17\x7f\xdb\x5a\xc0\x46\x30\x40\xf5\xf5\xa0\xf1\xb9\xbb\x81\xcf\x66\x29\x1f\xbe\x16\x18\xe1\xfa\xfa\x08\xea\x0c\x62\xb7\xed\x45\x0d\xb5\x5d\x6b\xc1\x62\xf4\x55\xe8\xb9\xdf\xc4\xee\xe7\x43\xf7\x37\xc1\xd6\x0a\x3c\xda\xca\x28\x36\xff\x0d\x06\xbb\x5f\x51\x3e\xf3\xec\x77\x5f\xf9\x47\xa9\x65\x53\x1a\x1c\xe5\xbd\xa3\xc1\xd1\xa0\xdf\xbb\x35\x38\x3d\x83\x4e\xed\x53\x3a\x38\x95\x6f\x38\x4b\xce\x90\x10\x00\xb7\xed\x27\x72\x87\x1b\xd9\x69\x45\xd0\x28\xf8\x7b\xc7\x1a\xb0\x5b\x62\xdb\x08\xfe\x5e\x0d\x59\x2c\xde\x75\x30\x0e\x1a\xb5\xca\x4a\xa9\xcc\xa4\x6b\x20\x60\xfb\xb5\xda\x84\xac\xf1\xaf\x95\x8d\x9b\x65\x3b\x18\x3a\xa7\x1d\x5c\xec\xe4\x5b\x36\xf6\x2d\x7d\xa8\x77\xa0\x89\xeb\x4d\x10\xd5\x0d\x43\xbe\x45\x3e\xb8\xb6\xe1\xf8\xc6\x0d\xc7\xad\x0d\x57\x02\x43\xde\x14\x2d\xad\x2b\x5b\xd5\x25\x0d\xf6\x5f\x76\x81\x4d\x89\x41\x9d\xe3\xe3\x79\x36\x89\xf3\xd9\xf1\x4c\xfc\x57\x5e\xd9\x3a\x3e\xee\x40\x42\xbe\xf1\xbc\xaf\xfd\x6f\xbe\x19\xde\xbd\xf3\xf5\x1d\xef\x9b\x6f\x7c\x29\x4c\xe8\x7b\x30\x4f\x34\x76\x91\x94\x26\xcc\xdb\x6f\x69\xaa\x7a\x6c\x7d\xce\xc9\xe0\xef\x47\xa6\x40\xdf\x19\x3d\xac\x70\x3f\x8a\x6e\x0d\x60\x49\x2a\xbd\x02\x59\xb7\xc6\xca\x6e\x9f\xce\xb3\x93\x78\x3e\xb2\x3e\x05\x0c\xa9\x97\x18\x77\xbb\xea\x97\xf9\xdb\x57\xa2\x75\x79\x3f\xc7\xbc\x87\xf9\x75\xcd\xe4\x74\x3e\x6d\x34\x22\x5e\x89\x26\xc4\x5f\xf5\xff\x26\x78\xf1\x56\xa8\x66\xeb\xf5\x7c\xbd\x36\xdd\x46\x1d\xcb\x2b\xbb\x83\x11\xae\x25\xe1\xaf\x54\xd1\x3d\xb4\x47\xd7\xeb\x3d\xa3\x2a\x37\x8e\x13\x84\xec\x9a\x4c\x11\xdf\x23\xe5\x45\xb4\x86\x61\xd8\x4e\x0d\x56\x29\xdc\x19\x71\x7d\x99\xa1\x3d\x91\x19\xda\x39\xa2\x61\x16\x41\x06\xb4\xbc\x45\x9c\x69\x95\xcf\xf5\x85\xca\x37\xc1\x96\x6f\x83\x34\x3f\x58\x79\x8b\x52\x0d\x85\x86\x69\x44\x48\x85\x49\x5a\x03\xc1\xf1\x7d\x3b\x43\xc4\xac\x79\x1a\xa2\xb2\x21\x8d\x0c\xdc\xc0\x83\x44\x1b\x07\x53\x6c\x92\x23\x25\x21\x8b\x08\x97\x01\x2a\x80\x81\x75\x97\xd9\x8a\x62\x6e\xaf\x91\x3d\x62\x05\xbd\x5e\x34\x6e\xa7\xcc\xe2\xdc\x5c\x3d\x38\x83\x73\xd5\x96\x75\x08\xb2\x22\x66\xaa\xac\x97\xa7\x1b\x77\xba\xe0\x84\x8c\xc3\xce\xf1\xb1\xbc\xea\xf2\x3e\x3f\xce\x67\x31\x93\xab\x23\x82\x63\x82\xce\xc8\x20\xfc\x7b\x3f\x72\x6e\xe9\xcc\x38\x27\xdd\xee\x89\x74\xfd\x35\x7f\xfb\x4f\x1f\x1f\xbf\x7a\xfd\xf2\xed\xcb\xf5\xba\xd3\xc1\x78\xd4\x51\xab\x13\xe5\x6c\x8c\x8f\xfd\x7e\xc7\x39\x0b\x3a\x1d\xf8\x44\x56\xa5\x72\x0e\x8f\xc9\x69\xc3\xad\x03\x2e\xc8\x69\xf5\xfd\x0d\xa9\x78\xa1\xf3\x49\x69\xca\x8f\xad\xad\x49\x26\xdf\xea\xf7\x9c\x11\xc2\xe1\x51\x74\x59\xac\x23\xb1\x55\x35\xce\x4b\x06\xf5\x16\xd6\xa5\x17\x07\xee\xf7\x46\x52\x4b\x39\x42\x78\xbd\x3b\xcd\x98\x58\xb0\xea\x45\x84\x05\xa0\x5b\x7e\xbf\x37\xea\x60\x47\x30\x5f\x78\x49\xce\xa5\x47\xe7\x98\xc2\x61\x69\xe8\x84\x0f\xa5\x9d\x1b\xde\x92\x67\x68\x0c\x9d\xe7\xf1\xa2\x83\xe1\x21\x79\xa6\x43\xae\x43\x47\xdd\x87\xec\x58\xcb\xe2\x79\xe5\x75\xe4\xfa\xc0\x6a\xb4\x52\x45\xef\x92\x51\xcc\x90\xa0\x18\x7e\xc0\xf6\xcb\x1c\x62\x21\xd7\xbe\x3e\x39\xe5\x32\x63\x0b\xa4\xa1\x1f\xd9\xc9\xf4\x5e\xff\xb5\xe0\x5f\xfd\xb5\xe0\xdf\xdf\x08\xfc\xf1\xf1\x24\xe6\xf1\xf1\xb1\x3c\x35\x7b\x65\x5a\x91\x9f\xe2\xc9\x04\x89\x76\x70\x23\x83\x8f\xb5\x44\x21\xb5\xd7\x7d\xe2\xba\x72\xd5\x23\x46\x68\x98\x44\xa1\x17\x61\x42\x08\x4a\x09\xc7\xeb\x35\xdb\x23\xac\xdb\x4d\xf7\x88\x15\x1c\xa7\x64\x06\x65\x03\x2f\xec\x7c\xc4\x9b\x5b\x5c\x4b\xd8\xbe\x3d\x6a\xdb\x98\xe4\xbd\x73\x79\xc7\xf6\xaa\x2b\xef\x2d\xa1\x2d\x9b\x17\x58\x84\x2c\x21\xfd\x9f\xe8\x57\x3e\x21\x5e\xb7\x4b\x0f\x48\x52\x20\x8b\xe9\xee\x3d\xd0\x6d\x15\xd2\xae\x15\x84\x51\x23\x7f\x90\x95\xac\x95\xd0\x72\xa0\xcd\xb9\x7f\xe5\x8c\x8d\x12\xc2\xe4\x20\xe1\xf5\xba\xc2\x23\x59\xaf\x2b\x09\x41\x3c\x9c\x64\xd9\x9c\xc6\x62\x67\x4f\x46\x9d\xe3\x63\xc9\x6e\x8e\x8f\x3b\x7b\x84\xa8\x98\x7c\x84\x90\x14\x8f\xb2\x70\xc3\xcb\x9b\x8f\xcc\xab\xa0\x23\x76\xec\x4e\x24\x5d\xc7\x16\x8d\x54\x44\xc6\x58\xdf\x6a\xfd\x54\x0d\xd0\x91\x32\x9d\x04\xf2\x1a\xb0\x2c\xd0\x0c\x18\x62\xcd\x0c\xda\x7b\x87\x28\x5e\xaf\x11\x27\x14\x8e\xbb\xdd\xe3\xdd\x24\xdd\xe5\x62\x6b\x44\x0f\xe4\x87\x4d\xdf\xc1\x3d\xbf\x32\x7e\xd6\xc4\x99\xea\xb2\x72\xc9\xd5\x30\x67\xab\x4b\x4e\xf6\xf6\x10\x75\x3a\x1d\x5c\x8c\xe5\x19\x2e\xc5\x97\x95\x97\x95\x98\x98\x37\x41\xae\x0d\x45\x0d\x97\x0a\xdd\x0a\xbe\x14\x70\x74\x95\x4f\xe5\x35\xdc\x0a\x9a\xf5\x59\x34\x64\x7d\x29\x4c\x34\x27\xd1\x90\xb2\xe0\xf2\x02\x31\x3c\x62\xc6\xc4\xf4\xdc\xba\xe9\x2b\x17\xb2\x6d\x45\xac\xaf\xbf\x87\xa3\x87\xea\xaa\x77\x70\x59\x14\x60\x57\x9c\xd0\x39\xb5\xed\x8f\x8d\x5b\x6e\x62\xd3\x12\x04\xaf\x8a\xed\xd6\xa0\x86\x34\xaa\xc3\x3a\xa5\xbc\xe5\x86\x76\xad\x8e\x98\x81\x87\xe5\xc9\x4d\x48\xa3\xf2\xfa\xb5\x3c\x33\xd0\x14\xc0\xcc\x28\x3f\xd6\x86\x57\xa0\x78\x24\x4a\x97\xd6\xb5\xe7\xf5\xfb\xd7\xd7\x36\xab\xe1\x3d\x1c\x55\x21\x30\x05\x38\x0b\x7e\x1d\x66\x4e\x9b\x97\xf1\x6b\x97\xda\xaa\x11\x20\x0f\xcd\x59\x8a\x8c\xb9\x99\x06\x5c\x3a\x79\x14\xf0\xfa\xe6\xb3\x13\x46\xf5\xe2\x2d\x73\xd2\xd2\x27\x60\xe4\x91\xc4\x7c\xc7\x2c\x09\x76\xe0\xc9\x4c\xcc\xe5\x19\xb6\xeb\x8f\x78\x7f\x91\x2d\x10\x0e\x5e\x9a\x9e\x32\xf0\x31\x78\x18\xd7\x9b\xbc\xc1\xd4\x35\xdb\xdb\x65\x07\x9e\x99\x30\x1e\xb2\x28\xf4\x1b\xdd\x68\xce\x8b\xae\xf6\xa8\xbe\x37\x00\x95\x82\x5a\xad\xe6\xe6\xe8\xdb\x57\x18\x4d\xc5\x94\x3c\x42\xb6\x54\x96\x1e\x78\x23\x73\x52\x44\x81\x47\x38\x60\x61\x2a\xd0\x22\x66\x4e\x5e\xdd\x7c\x4e\x2e\x05\x33\x93\xba\xdc\x73\x38\x8b\x17\xe2\x17\x7a\xbb\x5e\xbf\xc6\xa0\xd8\x9d\xfa\x54\xd4\x61\x6e\x5f\x4c\x4f\x8d\x9f\x9a\x2e\x23\x0d\xcb\xaf\xae\x98\x80\x8d\x7a\xa7\x94\x6f\x54\xda\x32\xc2\x55\x25\xb5\x7c\xeb\x95\xb6\x92\x76\x55\x4d\x6c\xfb\xd2\x2d\x47\x0d\xdb\x7b\xab\x76\x3c\x99\x10\xfb\x59\x0c\xf7\x56\xee\x61\x46\x53\x03\x4c\xdb\x00\x6e\xe9\x43\xbd\xbe\xee\x87\xe4\x82\x4f\xe0\x33\x7c\x47\xd0\x93\x16\x7a\x15\x42\xfe\x8b\x8d\x28\x72\xdd\x2e\x0f\x3d\xa1\x29\xd0\xd0\x8b\x46\x1b\x01\x10\x4a\x3d\x63\x2a\xc4\x8d\x2a\xc3\x9c\xdc\x58\x4b\x2f\xfd\x0c\x72\xad\x1e\x64\x18\x96\xc4\x1f\x78\x30\x27\x61\xb4\x1f\x0b\xb1\x44\x3b\xea\xd0\x30\x8e\x76\x96\xe4\x03\x1a\x97\xa9\x90\x31\xe4\x61\x1c\x91\xe4\x3e\xf1\x87\x5e\xb7\x3b\xae\xa2\x61\x0e\x3d\x69\x47\x78\x8f\xe2\x6e\x77\x8c\x0d\x63\x1b\x4b\x0c\x76\x54\xa4\x21\xd7\x87\x09\xc9\xc5\x33\x0d\x04\x9a\xfb\x8e\x33\x3b\x48\xba\xdd\xb9\x71\x0b\x5c\xee\x9b\x68\x92\xe3\x70\x16\xc1\x39\x91\xf7\xb4\xce\x88\xe0\x6f\x67\xa3\xb3\xc0\x83\x3d\x34\x19\x2d\xd0\x04\xce\x71\x90\xa2\x39\x9c\x03\xc3\x58\xf5\x39\x26\xd9\xbe\xeb\xc6\xfb\xe6\x3a\x57\xae\x0f\x07\xf7\xd0\x6a\xb4\x40\x2b\x55\x43\xf4\x48\x57\x1a\x67\x29\x4f\xd2\x25\xdd\xa5\xc5\xa4\xdb\x9d\xa8\x75\x76\x8e\x61\xae\x7e\x9d\x55\xa9\x2c\xe6\x05\xe2\x58\x48\x2c\xf0\x99\x1c\xa2\x92\x39\x7e\x1e\x3d\x29\xd9\x52\xf0\x19\x3c\x0c\x57\x1f\x74\x83\x16\x2d\x0f\x4b\xb9\xc8\x95\xb5\x52\x3d\x0f\xac\x14\x5b\xd3\x90\x47\x84\x86\x9f\x1d\x21\xb6\xda\x2e\x2c\x46\xa3\xfb\xec\xf8\xaa\xf0\x67\xa1\xd3\xc9\xc2\xbc\xdc\x79\x92\xf0\x73\x44\xd2\x8d\x23\x9a\xfc\x53\x22\xb6\xe2\x32\x7b\xfb\xe5\x38\xce\xa9\xd8\x9b\x8c\x3e\xa7\xc3\x60\xed\xc8\xf7\x7e\xf3\x3d\xc8\x1b\xa9\xea\xe3\xb0\xf5\x23\x30\x21\x53\xab\x12\xb7\xb7\x97\x00\x16\x0e\xa3\xea\x64\xbc\x3c\xa9\x64\xb8\x40\x4f\xe4\x7a\x82\x04\x17\x96\xde\xf2\xa0\x5a\x0f\x42\x44\x1a\x5d\x18\xb1\x23\xe8\x74\xca\xa5\x41\x48\xb6\x5e\x73\x42\xe2\x5a\xba\x43\x53\xcf\x8a\xdb\x25\x45\x60\xeb\x4e\x04\x5f\xaf\x6b\x76\x20\x6c\xc5\x2b\xfb\x6e\xcb\x11\xf8\xff\x3b\x41\x98\x36\x42\x50\x71\x5d\x15\x75\x52\xfa\x89\xb2\x0e\x06\x56\xbe\xc9\xe6\x13\xf1\x66\xc7\x0e\xc1\x22\xd8\xf1\xc6\xe1\x3b\x95\xb1\xd2\x29\x50\xe2\x69\xd7\xdb\x3c\xf9\x4c\x89\x07\xfa\x76\xf4\x59\x22\xbe\x2a\x97\xd6\xf9\x84\xe6\x7a\xe3\x16\x2d\xe6\x26\x22\xb8\xbe\xcd\xf3\x81\xae\xce\xe2\x85\xd4\xc7\x9e\xc7\x0b\xe0\xc6\xad\x38\xce\xf3\xe4\x34\x45\x1c\x03\x3d\xf0\xcd\x4b\x05\xb9\x6c\x10\xdb\x19\xf8\x24\x3b\x57\x7b\xe6\x07\xba\x32\xcd\x4b\xa7\x50\xa2\xfc\x5c\xc5\x3a\xb3\xda\x0e\x99\x79\xb4\x12\xf3\x95\x97\x86\x68\xca\xd9\xca\xb6\x9e\xe4\xdb\x3f\x2d\x37\x3e\xd1\xfe\xb3\xd7\xef\x9e\x8b\x7e\x81\x65\x3d\xe9\x1f\x9f\xc5\xec\xc3\x63\x51\xe6\x30\x7f\x97\xd3\x49\x6d\xc7\x10\xd3\x6a\x0d\x53\xb7\x2b\xd5\x51\x79\x03\x42\x7f\x50\x63\x69\x06\x43\x8f\xac\xd4\x59\x41\xfc\x2f\x3a\x24\x43\x97\x82\xf8\x5f\xd6\x67\x91\x61\x2e\xaa\x88\xe9\x3f\x95\x76\xa4\xaa\x31\xa8\x37\x6c\x3d\xc9\xfa\xd8\xfe\x4e\xc4\xfe\x6d\xf7\x4a\x4d\xd5\xc6\xee\x97\x9a\x10\x0d\x72\xd6\xd6\x6b\x15\x80\xaf\xff\xfc\xf0\x97\xe3\x9f\x0e\x9f\xbd\x7b\xbc\x63\x13\x80\x51\xfc\x77\x2a\x27\x4e\x1a\x36\x96\x57\x24\x8f\x11\xe2\x7e\x4a\x2f\x38\xc2\xfb\x7b\x79\x7f\x92\xa5\x74\xbf\x7a\xa5\xda\x5d\x12\x15\x47\x40\x4f\xbe\x60\x5b\xe6\xa7\x60\x6f\xe5\x15\x49\xdd\xb0\x90\x04\x96\xd2\x0d\x78\x89\x21\x1d\x21\xc9\xbb\x97\xb0\x14\x23\x94\xe2\xc0\x1e\xea\x25\xa4\x64\x09\x1e\x21\x99\xeb\x6e\x5e\x32\xcf\xce\x29\x9b\xce\xb3\x4f\x1d\x5c\xd8\xa3\x95\x5a\x0b\xa4\xde\x70\xf2\x99\xd6\x07\xf2\x2a\x99\x57\x57\x52\x42\x97\xec\x04\xae\x09\x26\x0d\xca\x12\x0b\x87\xeb\xab\x51\xb5\x36\x1a\xc2\x56\x6a\x5c\x7a\xda\x5a\x31\x96\xd0\x11\xca\x6a\x0b\x69\xb3\xb5\x4c\x51\x88\x09\xc7\x6c\x8f\x2d\x85\x8c\x98\xc0\x0e\x29\xae\x51\xd2\xa8\x49\x68\x19\x64\x0d\xc2\xac\x4f\x40\x56\xa3\xc3\x0c\x1c\xa7\x1c\xdb\x6a\x94\xef\x57\x44\xa7\x23\x78\x98\x58\xf5\x12\xc5\xc6\x70\x88\x4f\x64\x23\x94\x84\xd5\xa8\x18\x6b\x5a\x1b\x6b\xf5\x3e\xe4\xd1\x08\x6d\xb0\xb8\xf2\x9b\xcd\xfd\x2a\x4e\x63\x06\x48\x57\xb1\x39\x61\x8d\x39\xea\xd5\x4a\xab\x9a\x35\x76\x59\xca\xec\xea\x96\x9b\xeb\x56\xc3\x10\xaa\x3b\xfe\xfa\x02\x7f\x54\xef\xed\x34\x49\x27\x37\xa4\x30\xd3\xe1\x91\xa6\xa2\x52\xd1\x4d\x6f\x2a\x2a\x6b\x78\x46\xe2\x4f\xaf\xd7\x27\xd3\x6d\xb4\x9e\xe2\x36\xc8\x7a\x10\x52\x35\x08\xa9\x64\x96\x69\xc8\x22\xb1\x86\x15\xe3\x13\xef\xe4\x07\xb9\x98\x05\x6b\x0c\x52\x39\x6f\xe6\x9d\x3d\xb6\x7a\x4e\xc4\x27\x51\xcc\x86\xd3\x32\x4f\x0a\xda\x4d\xb6\x38\x31\x2d\xae\x0b\x69\xdb\x6a\x6c\xd7\xf9\x6e\x00\x90\x34\x08\x42\xb3\xcf\x02\xb2\x0a\xfa\x06\xff\x6c\x09\xc8\xa8\xd4\x1f\xab\x92\x64\xa5\x5b\x16\x84\xdc\xdd\xca\x18\x8b\x9a\xfa\xf5\x96\x27\x46\xfa\x52\xf0\xe3\x60\xcf\xd7\x97\x7a\x9a\xa4\x88\x03\x5d\xc0\x04\xe9\xd3\x24\x55\x40\xfe\x7b\x90\xce\xff\x12\xa4\x25\xce\x57\xa0\xba\xfc\x3d\xa8\x2e\xff\x22\x54\x15\x45\x6d\x47\xd6\x26\xb5\x0f\x74\x95\xb7\x20\x28\x58\x73\x6e\x33\xa5\xc6\x52\x95\x10\xb7\x55\x5c\x5e\x51\x51\xe0\x9d\xb4\xd6\x54\x63\x92\x7e\xd9\x40\x8a\xe6\xb2\x2b\x9a\xd3\xd1\x75\xed\xbd\x8d\xe1\x4b\xa3\x26\xec\x11\x12\xcb\x00\xf0\x48\xd9\x6c\xec\xd3\x3c\x0b\xe6\x7e\xba\x8f\xb5\xc2\xc3\xcc\x82\xd5\x77\x84\x64\x2d\x48\x25\x7b\xa8\xb7\xcc\xb3\xef\xdf\xbc\x7c\xd1\xee\x24\x2d\xb0\x56\x1a\x5f\x25\xb4\x82\xbe\x9b\xdf\x68\x36\x64\x8e\x13\x11\x79\x39\x4e\xb5\xa8\xe6\xb2\x62\x1b\xb2\xe9\x92\x3a\x9a\x38\x28\x2b\x71\x3b\x16\x9d\x8e\x09\x5c\xa4\xdb\x63\xfb\x98\x3a\x44\xfb\xba\xca\x30\x79\xd8\xe9\x04\x1d\x87\xe9\x2e\x23\x46\x98\x60\x83\x42\x86\x74\x48\x67\xf7\x60\xb7\x4a\x4c\x44\x8b\x02\xa3\x8c\xd4\x1d\x5f\x47\x3c\xa8\xbd\x10\x83\x25\x33\x2d\x04\x97\x05\xbe\xce\xe3\x35\x25\x19\x1e\xa5\x95\x39\x90\x03\xc5\x41\xda\x74\x7a\xbd\xc6\x67\xd1\xd6\x59\xbe\x34\x6c\xe4\x7f\x8c\x36\x57\x86\x90\xf4\xd4\x45\xe0\xa1\x2f\x9d\xaf\xd1\xd0\x8e\x85\x9e\xd7\xcd\xc3\x7d\x9a\x8e\xb3\x09\x1d\xf1\xbe\x1a\xaa\x51\x22\x34\x6f\xf5\xf2\xdd\xeb\xa7\x0f\xb3\xb3\x45\x96\xd2\x94\xcb\xb7\x0d\x9d\x46\x47\x34\xad\xbc\xbd\x47\x25\x1d\x48\x2f\x7a\x3e\xea\x74\x02\xaa\x1d\xbb\xb9\xe3\x5b\xfa\xd8\xbc\xfd\x90\x45\xc3\xdc\xd1\xc6\x0c\x1d\x88\x48\x65\x64\x55\x16\x8d\x8e\x6c\xac\x13\x6c\x9e\xe6\xcb\xb3\x7c\x4e\x06\x47\x21\x3a\x9a\xf4\xf0\x51\x64\x0e\x95\x29\x06\x4a\xac\xa4\x6a\x47\xe1\xd1\xa4\x27\x1d\x27\x3a\x1d\x0c\x7c\x54\x99\x7c\xd2\x90\x0a\xc5\x48\xfc\x91\xa9\xbe\x52\x99\x35\x2f\xf4\xa3\x88\x30\xb1\xe9\xd3\x88\xb0\x42\x5a\x40\x3a\x27\x2c\x1e\x7f\xa0\xfc\x2a\x44\xd0\x51\x78\x14\xe1\x2b\xb0\xa8\x50\x28\xad\xfc\xa2\x8d\x91\x6c\x28\x8c\x4a\xa7\x9b\x90\x46\x60\xda\x0f\x59\x54\x22\xa2\xe3\xc4\xb6\xa0\xa0\x6c\x19\x06\x28\x13\x40\x59\x1d\xa8\x78\x04\x8e\x03\xf9\x9a\x17\x45\x81\x38\xc9\xd0\xa5\x35\xde\x41\x27\xcd\x52\xda\x29\x80\x63\x0c\x49\x6b\x1c\x5e\x7d\xe4\xb3\x11\x43\x77\x94\x04\xea\x16\xae\x74\xee\xaa\xfa\xfc\xf7\x70\xf4\xff\x75\x23\xd9\x69\x3c\x42\x26\xa4\x5c\xa7\xdb\x69\x09\x7f\x6e\xd1\x57\x35\x66\xce\xe0\x14\x3a\xbb\x1d\x6c\x6a\x92\x0e\x96\x71\x4c\x8c\x08\x9f\x11\x2b\x15\x87\x49\xc3\x41\x3a\xc6\x5c\xb9\x63\xdd\xa6\xc9\x54\x24\xd0\x58\x28\x27\x0c\xc5\x28\xc5\x90\x49\xcb\x54\x2d\xaa\x7f\xa2\xc3\xb8\x8b\x4e\x4c\x96\x63\xda\x1a\xec\x22\xb1\x38\xef\x03\x75\x30\x29\x77\x93\x5a\x64\x0e\xf1\x62\xaf\x1e\x15\x97\xe1\x91\x94\xe3\xed\xdb\x14\xed\xe1\x74\x25\x0f\xd5\x98\x04\x8d\x80\x1f\x23\x8a\xea\x81\xe7\xaf\x8a\x3c\x5f\x86\xb9\x77\xf5\x2f\x8e\x0b\xbc\x2d\x63\x1d\x0f\xa5\x58\x26\x8f\xf1\xe4\x29\x27\x61\x40\x0b\x68\xa1\x04\x8c\x83\xa4\xe0\x7d\x7a\xc1\x59\x3c\x16\x9a\x30\x57\x79\xcf\xc9\x1c\x78\x15\xbd\xa4\x61\xc6\xdf\x13\x3c\x42\x91\x9d\xe2\x37\xf2\x1a\xb6\xe4\x42\xe2\xd7\x16\x52\x94\x9d\xeb\x76\x91\x1a\x8e\xda\x45\x04\x13\x39\xd2\xee\xca\x97\x73\x92\x7a\x42\x63\x7d\x98\xcc\x46\x61\x2e\x0f\x93\xa0\x13\x76\x20\x85\x4e\xd4\x89\xca\xec\x77\x81\xfd\x2d\x47\xa9\xfc\x19\x11\xf1\x9b\x01\xc5\x55\xc1\xeb\x78\x87\x95\x90\xb4\x6a\x58\xc1\xb6\xda\x68\x87\xbc\x8d\x19\xdc\x08\x66\x1b\x44\xc1\x12\xaa\x6d\x7d\x64\xd3\x18\xd5\x24\xa6\xe6\xa0\x41\x3f\xa9\x49\xef\x40\x75\x18\x97\xea\x02\x5b\x2d\xe3\x8f\x46\xc6\xbc\xdc\x15\x03\xc7\xa5\x3e\x57\x27\xfd\x04\x1b\x23\x44\x58\xd9\xc0\xf5\xa6\xb2\x85\x6f\x18\xc6\x47\xbb\xdd\x4c\x99\xfb\x99\x98\x15\x30\x57\x96\xb1\x58\xe6\x99\xee\x6a\xb7\x53\x5a\xab\x15\x0a\x4e\x87\x74\x9c\x1c\x25\x20\xd7\xc6\xd6\x1c\x89\x65\x16\x87\xfb\x5e\x81\x2b\x58\xf2\x5a\x82\x26\xff\x77\x6c\xde\x7a\x74\x75\xb9\x64\xf3\xa0\x64\x7f\xa3\x0e\x0e\xbd\x68\xbd\xee\x74\xe0\xe3\x92\xb2\x55\x30\x47\x62\x7b\x15\xcd\x5f\x77\x0d\xe5\xea\x3b\x3c\x6d\x9b\xb8\xe5\xe7\xb4\xf7\xff\x23\xdc\x8b\x06\xa7\x6d\xc9\x4d\xbf\xea\x38\xea\xfe\xd8\xc3\x6c\x42\x0f\x39\xf2\x70\x75\xfb\xc9\xbf\x27\x1e\xde\x2d\x16\x26\xbe\x42\xd1\x16\xa8\xbb\xe5\xca\x88\x26\xa1\x53\xca\x2d\xd7\x29\x25\xdc\xe4\xd5\x0e\xb3\x2d\x50\x39\x64\x9b\x25\x16\xfa\xdb\xd3\xfc\x71\x79\xe3\xa7\x6d\x50\x94\x5f\x43\x32\x45\x7b\x1a\x84\x32\x4a\x6a\xd2\xdb\xf3\x77\x2a\x79\x5c\x77\xb2\x13\x9f\x8c\x55\x9a\x44\x1a\xde\x8d\x48\x67\x42\x3b\xa0\x92\xc4\xb5\xf6\xe2\x45\x7c\x46\xc5\xba\x08\xbd\xa8\x02\xda\xb8\xce\xe7\xed\xb3\x03\xdf\x93\x91\x0c\x78\xd8\x39\xee\x38\x3a\xd8\xf9\x94\x65\x67\x0f\xf5\x50\x23\x86\x23\x22\x03\x45\x74\x3c\x7f\x78\xfb\xce\xdd\x7b\x5f\xff\xed\x1b\x2b\xbd\x49\x5b\xab\xcd\x05\xd8\x64\xe0\xe5\x92\xae\x77\x37\xad\x32\xdc\x88\xce\x4e\xe8\xf4\x74\x96\xbc\xff\x30\x3f\x4b\xb3\xc5\x47\x96\xf3\x8e\xa1\xcf\x2d\xbb\xb3\x94\x42\x68\x81\xa1\xbd\x76\x35\x52\x92\x65\xd4\xc6\x1d\x5d\x16\x90\xe2\x0a\xb1\xca\x8d\xc4\x60\x58\x14\x08\x8f\x6a\x75\x1a\xd1\xce\x2a\xaf\xab\xb8\xe1\x3c\x5e\xb2\x16\xda\x1e\xa5\xa5\x06\x75\x77\xac\x62\xb6\x9c\x50\x19\xb6\x85\x4e\x76\x3f\x25\x7c\x26\x19\xe5\x6e\xc6\x76\x2b\x5f\xd6\x92\x13\xaa\xea\xda\xd3\x09\x96\xc4\xdf\x5f\x1e\x34\x2f\xac\xee\x2f\x1d\xa7\x42\x71\xbe\x9b\xa4\xbb\x4c\x8f\x06\xaa\xae\xac\x2e\x23\x8c\x13\xa3\x4e\xce\x85\x36\x95\x87\xf3\x88\xb0\x70\x1e\x69\xb3\xd6\x65\x2c\x05\x87\x9d\x2a\xae\xaa\xb7\x3f\x3e\x88\x4d\x2b\x63\xc7\xc1\x99\x01\x10\x87\xe3\x48\xc1\x10\xbf\x04\x18\xf9\xb7\x3a\xe6\xcc\xaf\x5b\xa4\xff\x0f\xe9\x48\xb6\xcf\xfb\x57\x61\xec\x4e\x3d\xf7\x9b\xe8\x72\x58\x74\xa0\x73\x9a\x74\xb0\xb6\x49\x97\x57\x07\xec\x22\xd8\xd1\x85\x6a\x27\x84\x32\x74\x57\xe5\x1b\x35\xa1\x9b\xac\xb7\x5a\x86\x96\xd7\x94\x4e\x6a\x5a\x7a\xd2\x99\x71\x50\x89\xf6\xfc\x1d\x13\x4d\xad\x0c\x1a\x8d\x65\x7c\x56\xad\x52\x95\x44\xd9\x70\xce\xd5\x42\xbe\x22\x8d\x30\x82\x18\x31\x0c\x42\xc4\xc5\xcd\x03\xab\xab\x51\x36\x98\xa6\xf6\xd5\x64\x2b\x40\x08\x23\x7e\x33\x46\x0b\x27\x88\x0a\x15\x1f\x98\xc5\x77\xca\x1a\x96\x95\xa0\x7d\xeb\x6a\x0b\xf7\xbb\x65\x1d\x3f\xd6\x97\xe0\x77\xff\xa1\x36\xba\xc9\xbb\xd7\x4f\xff\xa1\x83\xf7\x66\x53\x49\x67\xbb\xff\x50\xb0\xfe\x01\xbb\xa7\x19\xdf\xfd\x47\xc7\x11\x8d\x38\x9d\x7f\x74\xf0\x8e\xed\xc9\xd6\xaa\x63\xc0\x55\x23\xb2\x79\x15\xba\x71\x7f\xbb\xf3\xd5\x93\xc7\x5f\x3d\x79\xd2\x09\x3a\xff\xe7\x7f\xff\xaf\xff\xf3\xbf\xff\x57\x07\x3a\x5f\x3d\x79\xf2\xd5\x93\xc7\xd5\x1b\xb1\x27\x64\x46\x39\xdc\x67\xfb\x6a\x3a\x78\xc8\x42\x2f\x8a\x48\x4b\xeb\xf2\x88\xbe\x22\x1e\xc5\xc4\x73\xf5\x7a\x27\x95\x8a\x9e\x27\xf4\x57\x03\x22\xc5\x85\xd5\x42\xc1\xc3\xce\x57\x0f\x87\x42\x30\x15\xad\x5b\x4e\x07\x75\xf5\x01\x54\xd2\xf6\x32\xae\x5b\x6c\x22\xef\x2c\x49\x12\xc6\xd1\x8e\x3d\x5a\xd6\x2a\x59\xca\x6b\x21\xc0\x05\x5b\x2b\x4f\xff\xa5\x47\x68\x51\x00\x5c\xcd\x79\x58\x5f\x28\x22\x7a\x57\x92\xbe\xcf\xaf\x9e\x42\x42\x86\xbd\x14\x32\x92\xb8\x3e\x75\xef\xd9\xab\xcd\xf8\x3e\x5d\x78\xfa\x44\x60\x65\x7e\x5c\xf8\xe6\x8d\x2f\x2f\x9c\x6b\x2b\x38\xe9\x74\x6c\xc2\xaf\x59\x0d\xe3\x22\xae\x16\x0e\xb1\xac\xc6\x32\x77\xb4\xe1\x36\x41\x0c\x67\xd9\x39\x7d\x9b\xb5\x06\xdd\x74\x48\xe7\x79\xc7\x41\x0d\xac\x2e\x7c\xe2\x50\xc9\x2e\xcc\xa7\x12\xcf\x95\x4f\x1c\x8e\x0b\x18\xcf\xb3\x9c\xbe\x8a\xf9\xcc\xbe\x9f\x6c\xe2\x37\x6a\x20\xe6\xc0\xb5\xea\xdc\x85\xb1\xee\xaf\xca\xee\x9a\x37\x0e\xe9\xfc\xd6\xc1\x05\xcc\x93\xf4\x0a\x64\x9f\x55\xc8\x6e\xe2\xa8\x51\xfb\xb8\x8c\x27\x2c\xe6\xc9\xf8\xe1\x92\x6d\x74\x5c\xdb\x38\x0c\xbc\x1f\x3b\xce\xae\x43\x25\x94\x5d\x87\xdb\xd0\x04\x7c\xb6\x01\x3f\xc5\x05\x9c\xd0\xcf\x09\x65\xdb\x80\x43\x02\x99\xd5\xc0\xc3\xcd\x06\x76\x1d\xa6\xff\xa6\xcd\x06\x93\x8d\x06\x33\x5c\x40\xcc\xc6\x9b\x0d\xc9\x66\x28\x71\x28\x70\xe2\x70\x60\xc4\x61\x90\x10\x27\x81\x8c\x38\x99\x1d\x7b\xeb\xf8\xc2\x87\xbc\x9c\x3d\x58\x12\xe6\x52\x98\x93\xc4\xe5\x30\x26\xb1\x4b\x61\x4a\x72\x97\xc3\x8c\x8c\x7b\x63\x67\xda\x9b\x8a\x0d\x3c\x3b\xf0\x36\xcf\x81\x53\x7a\x1a\xf3\xe4\x9c\xee\xb2\x78\x92\x2c\xf3\x60\xb7\xe3\xa8\xe8\xd1\x76\xea\xd8\xe3\x0b\x13\x73\xb6\x4e\x5a\x3e\xd9\x98\x2c\x8e\xcb\x24\xc8\xb3\xfb\x62\xa5\xe0\x64\x8a\xca\x78\x1e\xd3\xde\xd2\x9d\xf7\xc6\x58\x7e\xe9\x76\x33\x13\x6b\x9d\xb9\x31\x2c\x48\xe2\xe6\x70\x46\x96\xbd\xa5\x33\xef\xcd\xe1\x9c\x4c\x7a\x13\x67\xd1\x5b\xc0\x4a\x2d\xc2\xfc\x23\xe3\xe8\x0c\xc3\xa9\xf5\x38\xc3\x70\x42\xb2\x9e\x7c\xc1\xe3\x14\xa1\xd4\x55\x8d\x8d\xb3\x1c\xa1\x33\x67\xe6\x9e\xe3\x01\x1a\xf6\x56\xbd\x53\x8c\x65\x68\xe3\x63\x72\x32\x38\x85\x4f\xe4\x64\xb0\xda\x29\xf1\x3a\x76\x7d\x83\x13\xaa\x91\x25\x75\x8e\x7b\x63\xd3\x47\xe7\xb8\x37\x2d\x03\x3b\x3b\xa4\x73\xd8\x71\x32\xf9\x49\xfc\xef\x81\x27\xa7\x1f\x4d\x7b\x93\xfb\xe3\xde\x02\x37\xc8\x80\x3a\x9f\x7a\xcb\x8d\xd1\x72\x3e\xf5\xe6\xd8\x4a\xaf\xbc\xb1\x1c\x5a\x06\x58\xd2\x4e\x93\x72\x74\x26\xc8\x92\x76\x76\x54\x90\x09\x24\x48\x08\xab\xf1\x11\x43\x12\x63\x18\x13\xa6\x9e\xf3\x24\x15\xcf\x53\x42\x9d\x39\xcc\x08\x77\xc6\x30\x21\xfe\xdf\x97\xb0\x20\xcb\x51\xec\xe6\x41\xee\xca\xb4\xeb\xec\x86\x74\xc3\xf0\x4e\x83\x68\x46\x36\xd1\x4c\x65\x47\x66\x41\x45\x0d\xa6\x98\x3b\x55\x83\xbf\x5e\x37\x3e\xad\x7c\x77\xa6\x3e\xe1\xc6\xc4\x68\x60\x18\x58\xb7\x8b\x16\x07\x9e\xf8\x9f\x2c\xbe\x4a\x9c\x04\xc3\xe2\x7e\x36\xb2\xe7\x48\x2d\x4c\x26\xe7\xc8\x87\x8e\x33\x51\x23\x4a\xdd\xb9\x19\x5b\x57\x4c\xf1\xf6\x92\xe5\x64\x4c\x9b\x93\x31\xc3\xc1\x62\x83\x6e\x1a\x80\x24\x51\x2c\xee\x93\x54\x55\x6e\xc2\xa4\x0e\xab\xa6\x27\xc7\x9b\x14\x62\xcd\x56\x8e\x31\xc6\x05\x30\x3a\xe6\x57\xf1\xbf\xdf\xc3\xfc\x9d\xce\x4c\x33\xb1\x73\xcd\xc4\x66\x1d\xc7\x65\x4e\xe7\xb7\x4e\x01\x46\xd7\x6e\x09\x5b\xa1\x60\x14\x85\xc9\xeb\xdf\x48\x7a\xdc\x94\x4a\xac\xcc\x61\x05\x8c\xcb\x40\x3f\x65\xcc\x1f\x1e\xa7\x43\x98\x11\x33\x20\x30\xa9\xae\x21\x2d\xaa\x6b\x48\x67\xc4\x0c\x09\x9c\x57\xcc\x00\x56\xc4\xa7\xae\x3f\x34\x0c\xe2\xd5\x53\x38\x21\xa7\x83\x21\x1c\x93\x61\xef\xb4\xda\xb1\x3f\xd9\x12\xfe\x7d\xe2\x8f\x4e\x02\x7a\x40\x5c\x7f\xe4\x9e\xa8\x98\x57\xb1\x18\x6b\x6a\x09\xa7\x8f\x6b\x66\x96\x24\x4d\x29\x7b\x2d\xc9\xbe\x2a\x72\x51\x2b\x92\x2d\xf9\x66\x91\x37\xb5\x22\x39\x8f\x19\x3f\x4c\x4f\xe7\xd6\x31\xc6\xcb\x5a\x09\x9a\x4e\x1a\xdf\x0f\x9b\x17\x6a\x17\x71\xb3\xc8\x07\x7b\xcb\x82\xb8\x0c\x2e\xe4\x32\x58\x12\xee\xa6\x30\x27\x28\x1e\x65\x81\x9b\xe1\xc1\x39\xca\x7b\xb9\xb3\xec\x2d\x05\x53\x98\xf7\x96\x30\x25\xee\xbc\x97\xc3\x8c\x50\x67\x0c\x0b\xc2\x9d\x29\x9c\x11\xe6\x8c\x61\x45\x52\x67\x0a\xa7\x04\xcd\x9c\x33\x3c\x18\xc2\x09\x41\x0b\x67\x85\xe5\xd8\x9e\xb9\x33\xf8\x44\x56\xee\x02\x1e\x93\xe3\xde\xb1\xf3\xa9\xf7\x09\x2e\x48\xe2\x66\xf0\x86\xcc\x7a\x2b\xf7\xac\xb7\x80\x97\x04\x7d\x3a\xf0\x46\xae\x1f\xf8\xb8\x77\x8e\x26\xc8\x83\x8b\xde\x45\xef\xb1\xfb\xa6\xf7\x06\x63\x38\x24\xe8\x4d\xef\x93\x7b\xdc\x7b\x89\x07\x8f\xe1\x03\x41\xee\x9b\xde\xb1\xfb\x49\x3d\xbe\x95\x1f\x1d\xfd\xf1\xa1\xfa\xe8\xe8\x8f\xcf\xc9\xa1\x7b\x0a\xaf\xc9\x07\xf7\x04\x5e\x91\xb7\xee\x29\xbc\x27\x0f\xdd\x13\x23\xd8\x3f\xef\x3d\x77\x5e\xf7\x5e\xdf\x7f\xd5\x7b\xe5\xbc\xef\xbd\x97\xd1\xc1\xde\xc2\x07\xf2\x10\xc3\xe5\xf8\x22\x38\x84\xf1\x2a\xf8\x00\x17\x9e\x1f\xb8\x63\x58\x89\x3f\x53\xb8\xf0\xfd\xe0\xb0\x87\x92\xc1\x85\xeb\x63\x58\xf9\x7e\xf0\xc1\x3c\x15\x52\x5f\x7b\xbb\x79\x20\xfe\x18\x38\xb9\x00\x46\xe6\x48\x7a\xd8\xaa\xf4\x7b\xe4\x0d\x64\xe4\x25\xc4\xe4\x50\xc7\x1b\xaa\x48\x70\xa2\x6b\xce\x61\x02\x8f\xe1\x82\x38\xa5\x63\xea\x2c\xc9\xad\x68\xc1\xf0\x86\x38\x7c\xcb\xa7\x97\x24\x69\xff\xe2\x9e\xc0\x21\xc9\xb6\x7e\x7b\x4b\xc6\xe8\xd0\x7d\x89\xe1\x21\x39\xbc\xff\x72\x47\x45\x31\x42\x39\x99\x93\x25\xc2\x18\xde\x1c\x5c\x74\xbb\x68\x42\xde\xc0\x1b\x72\x01\x17\x64\x82\xe1\xcd\xfd\x95\xd8\xc5\xdf\xde\x3f\x76\x57\x38\xef\x2b\xc9\x13\xbd\xe9\xcd\xd0\x4b\x0c\x6f\x7a\x67\xe8\x25\xc6\x90\xf7\x63\x36\x46\x62\x17\x7c\x03\x2f\xe1\x10\xf6\x1e\x62\xb8\xb8\xbf\x92\x01\x9f\x75\x8d\x8b\xde\x0c\x1d\x62\xb8\xe8\x9d\xa1\xc3\x5a\x8d\x0b\x38\x84\x97\xf0\x10\x2b\xd9\x41\x8e\xcc\x73\x78\x0d\xaf\xc8\x4b\x78\x4f\x0e\xe1\x11\x79\x09\x2f\xc8\x21\x3c\x25\x6f\xe1\x19\x79\x0b\x4f\x48\xdc\xde\xbb\xc1\x10\x3e\x93\x27\xb2\xd1\x74\xe4\xa4\xed\x85\x82\x73\x74\xd1\xbb\x70\x14\xe5\x7d\x47\x16\x68\x8c\xde\xb8\x17\xa2\xae\xc3\xda\x6b\x60\x78\x40\xbe\x83\x77\xe4\x3b\x31\x58\x9f\xef\xaf\xd4\xdc\xfd\x4c\x3e\xa1\xcf\x03\xd1\x99\x27\x18\xc3\x47\xf9\xf4\x46\x3d\xed\xa3\xa7\x2e\x19\xf6\x7e\xc6\xf7\x57\x23\xf4\xc8\x21\x3f\xf7\xc8\xc3\x91\x1f\xb8\x3e\xbc\x70\xc9\xcf\x38\x40\x4f\x89\x07\x8f\xc8\x0b\x82\x5e\x3a\x87\x52\x2a\x41\xcf\x44\x85\x8f\xb2\xc2\x2b\x87\x7c\x2c\x2b\xbc\x77\xc9\x47\x1c\xa0\x67\xc4\x83\x57\xe4\x7d\x59\x41\x12\xe2\x4f\x44\xcc\xc1\x2b\x0c\xbf\x12\xd1\xf0\x2b\x0c\xdf\x12\x31\xc6\x2f\x30\xfc\x40\x04\x62\x2f\xa4\x24\xf7\x9d\xc1\xf8\x16\xfc\x28\x6b\xbc\xc7\xf0\x8b\xac\xf1\x1e\xc3\x6f\xb2\xc6\x23\x0c\xdf\xcb\x1a\x8f\x64\x8d\xb7\x07\xa7\xdd\x2e\xba\xd5\x8c\x5a\xa9\x79\x0a\xe4\x46\x01\xfb\xcd\xfd\x09\xe6\xe4\x7b\xf7\x57\x18\x93\x6f\xdd\x1f\x61\x4a\x7e\x70\x7f\x81\x19\x11\x62\xde\xb8\xa7\x12\x42\xa3\x59\x6f\x76\xb0\x32\xc6\xbe\xf0\x27\x07\xcd\x08\x1a\xf7\xd0\xaf\xee\x2f\xd8\x9d\xf6\xd0\x4f\xee\x8f\x18\x0f\x66\xb8\xb7\x84\x5f\x9d\x59\x6f\x1e\x15\xc8\x84\x68\xa4\x94\xfc\xe4\xde\x0a\xbd\x08\x38\x25\xbf\xba\xb7\xa4\x3b\x37\x25\x3f\xaa\x77\x29\x25\xbf\xa8\x77\x09\x25\xfe\xe0\x0c\x21\xf4\x98\x20\x4a\x7b\x8c\x3a\x9c\xf6\x52\x8a\x07\xe8\x5c\x3c\x53\xf9\xcc\xa9\xe0\x3c\x4c\x7e\x4e\xe5\x67\x8c\xef\xfb\x23\x2f\x78\x7c\xe0\xfa\xa3\xd3\xa0\x12\x1b\x1f\x2b\x41\x31\xa3\xe4\x1c\x89\x96\x7a\xe2\x3f\x47\xb4\xd4\xbb\x25\x9d\x32\x1f\x90\x05\xfa\x0e\xd0\x85\x9b\x89\x36\x12\xea\xfa\x18\xc3\x3b\xf5\xf2\x8d\x79\xe9\xf8\x18\x17\xc5\xb3\xfb\xab\xd1\x3b\x31\xa9\xcf\xc9\x07\xf4\x1b\x7c\x0f\x3f\xc1\xaf\xf0\x06\xde\xc1\x43\x2c\xb8\x16\xfa\x11\x7e\x81\x6f\xe1\x07\xf3\xaa\x5c\x2a\xcf\xfb\xe3\x0b\xe7\x79\xff\xc2\xf3\xe1\x79\x7f\xbc\x72\x9e\xf7\x57\x9e\x8f\xe1\xdd\xc1\x77\x23\xb5\x6c\x44\x01\xf9\x09\xde\xc1\x14\xc9\xcf\x20\xcb\x63\x98\xa2\xd7\xf2\xf1\xb5\x7a\xdc\x7b\x88\x03\x74\x83\x4a\xcf\xfb\x2b\x5f\x3e\xfa\xaa\x52\x6d\x45\x8b\xcf\x0a\x0d\x59\x46\x21\xe7\xeb\xc6\xc6\x2b\xe7\xb5\xfc\xf0\x5a\x7c\x78\xdd\x84\x20\xde\x8a\x4f\xaa\x55\x53\xb2\xac\x5d\x47\x15\x4b\x64\xf5\x28\xfc\x04\xbf\xd6\xd1\x78\x05\xef\x65\xa1\xa0\x5e\x44\xf2\x99\xa7\xf7\x57\xa3\x07\x66\xa8\xc5\x98\x8a\xb1\xbd\x00\xf7\x81\x19\x6b\x31\xf4\x62\x0a\xcc\xbb\xbc\xaf\xd4\xd2\x6d\x83\xfd\xa0\x65\xb0\x1f\xfc\x9e\xc1\x6e\xa9\x74\xc5\x60\x5f\xfc\x8e\xc1\x6e\x19\xeb\x07\x37\x1a\x6b\xbb\xd9\x17\xf0\x08\x1e\x8a\x57\x7a\x58\xbe\x85\x1f\xb4\x6a\x52\x8e\xb6\x07\x9e\x64\x10\x79\xbf\x34\x15\x20\x0c\xf3\xf2\xcc\x4c\xed\x7c\x73\xa7\xd3\x59\xaf\x65\xe6\x06\x63\xcd\xeb\x8f\x69\xca\x59\x96\x4c\x9a\x7b\x27\x23\x68\xdb\xe6\x27\x74\xeb\x2d\x0c\x79\x30\x84\x94\x20\x67\xcb\x06\xe8\xec\x3a\x5b\xb6\x3f\x3c\x18\xba\xa7\x83\xa1\x16\x0f\xc2\x19\x4a\x71\x8f\xc1\x99\xfc\x13\x15\x30\xb1\x65\xbb\x0a\xd3\xca\xba\xd6\xb4\xac\x8f\x10\x6d\x33\x48\xf3\x11\x0f\xe6\xc8\xe1\x18\x26\x38\xa0\x02\xae\x25\x10\xb6\xc9\xc7\x9b\x70\x79\x1b\x5c\x3a\xa2\x02\x2e\x95\x70\xb9\x80\x3b\xce\x58\x0b\xc2\x57\x01\x6e\x8d\x7b\x52\x03\xcc\x04\xe0\x45\x3c\xf9\x12\xa8\x4a\xe6\x21\x84\x2a\x37\x86\xeb\x9a\x48\x45\x13\x95\x04\x7c\xb3\x36\xda\xdc\xb1\xea\x60\x13\x01\xd6\x88\xcd\x37\x03\x9a\x5d\x0b\x34\xd3\xc3\xf1\x05\x40\x5b\xef\xe5\xd4\x80\xc6\x6a\xf2\x52\x5e\xf3\xaf\xbc\x0a\x66\x5e\x1f\x61\x2a\xa0\xe4\x05\x4c\xac\x8c\xe4\x0f\xab\x24\x32\x06\x34\x2d\x1e\xda\x26\xc4\x98\xd1\xf8\x8d\x18\xf6\xa0\xe9\xc5\x7b\x2c\x16\x3d\xf1\x0a\x10\x45\x1e\xa7\x93\x2d\x05\x5e\xc4\x2f\x94\x35\x6f\x0b\x94\x45\x96\xa4\x5c\x80\x11\x65\x1a\x60\x50\x05\x67\xbd\xf6\x4a\x93\xa2\x78\xee\x76\xfd\xd2\x6c\x20\x41\x60\x93\xce\x52\x77\xa4\xc6\x6f\x2c\x7c\x7c\xb7\x7a\x28\x40\x56\x6d\x58\x19\x8d\xc7\x45\x69\x54\xb3\x5b\x31\xb7\xd2\x6c\xe4\x7d\x0b\xfe\xa8\x8e\x84\x66\x8c\x02\x6e\x50\xff\xa2\xf9\xa3\xbc\x75\xaf\xe2\xf8\xea\x7b\x6d\x36\xe4\x61\xe9\x15\xb1\x15\x6c\xa1\x35\xe9\xe7\xad\x31\x16\xe9\x27\x39\xc7\xd6\x94\xbf\xb6\x35\xc2\xd0\x8b\x1a\x11\x2c\xca\x2f\x7e\x24\x25\xc6\xf7\x9b\xaa\xcb\x6b\xe0\xe4\x95\x54\x5d\xf6\x6c\xdd\xe5\x39\x64\x0d\x9d\x25\x46\x46\x9b\x84\x39\x8c\x65\xe8\x7e\x7d\x4d\x73\x46\xf4\xe9\xb2\xa2\xd0\xb4\xdb\x45\x19\x49\xd0\x58\x2a\x14\x18\x72\xe2\xed\xe7\x07\x64\xba\xef\x38\x39\xde\x43\xf9\xc1\xb4\xdb\x65\x68\x4e\xe2\x30\x8f\x20\x87\x18\x63\x22\x43\x91\x23\x34\x23\x7b\x33\x3c\xca\xfa\x25\x81\x21\x1c\xa8\xa7\xc7\xe9\x44\x28\x27\x33\xe9\x41\x21\x06\x13\x39\x14\xcd\x65\x6d\x70\xb8\xfe\x25\xb7\xa6\x71\x19\x12\x47\x75\x65\xbc\xb1\x19\xc5\xfd\x8b\x3f\x85\xb7\xc7\x92\xb7\xc7\xfd\xd5\x9f\xc2\xd1\x63\xc9\xd1\x63\x1d\x42\x74\xf2\x87\x99\xf9\xde\x9e\x02\xca\x04\xd0\xf1\x92\x9d\xdf\x98\xcb\x52\x50\x26\x7f\x33\x8f\x29\x96\x80\x12\x09\xe8\x4b\x58\x56\xc9\xb0\x88\x9a\x8b\x40\x42\x23\x0a\xaf\xb4\x80\xb8\x80\x47\xed\x04\xa9\xd2\x7d\x1a\x75\xfa\x15\x24\x9a\x3c\xf5\x9c\xc6\xe4\xf9\x86\x4a\x3d\x46\x73\x7d\x91\x18\xa6\x30\x83\x09\x2c\xe0\x8c\x98\xab\xbe\x70\x4e\xf6\x7c\x58\x59\x1e\xce\xd2\x8e\x6c\x3f\x5a\x04\x9c\xc9\xd4\xb8\x31\x5a\x68\x02\x56\xe7\xdc\xe4\x6c\xdf\x71\xc6\x3a\x01\xcb\xf8\xe0\xac\xdb\x4d\xd0\x84\xcc\xc3\x71\x04\x63\x98\x4b\x22\x3e\x17\x6a\xf2\x39\xd9\x3b\xc7\x53\x32\x96\x12\x99\x66\xb7\xc8\x48\x9b\xfa\x49\xe9\xb9\xa2\xc5\xbc\x22\xef\x7a\x11\x98\x91\xb1\xeb\xef\xcf\xee\x93\xe9\xbe\xeb\xce\x70\xae\xe9\x7e\x15\xce\x22\x38\x0d\x67\x11\xde\xa9\xd7\xd5\x8c\x1b\xe1\xe2\xbc\xdb\x45\xab\x70\x1c\x11\x87\xa2\x89\x44\x0e\x4e\xe5\x23\x33\x8f\x06\x18\x1f\x39\x5c\xbf\x0b\x44\x0d\x10\x6a\xb3\x79\x21\xea\x60\x5c\x24\x53\xb4\x68\x08\x78\x8b\x6a\x4d\x95\xe3\x3f\xad\x6c\x7b\xef\x11\x36\x64\x2c\xa3\xc4\x09\xe2\xd3\x51\xdb\x04\xf1\xa0\xac\x3c\x91\x1b\xdb\x4b\x91\x7d\xe9\x52\x64\x23\x26\x16\x0f\xc3\x86\x62\xc6\x72\x45\x8e\xfb\x17\xde\x9f\xb2\xc0\x4b\x70\xfe\x4d\x57\xf8\xcd\x85\xa0\xb1\x5c\xee\xe3\x9b\x32\x8f\x6b\xa4\xb6\xb4\xec\x3f\x93\x40\xbd\x3f\x05\x6a\x09\xee\x86\xfd\xff\x12\x21\x70\x2c\x39\xc0\x58\x52\xf0\x2f\x1e\x51\x3f\x7e\xf5\x5a\xee\x52\x4c\x11\xee\x5f\x20\x8a\xfb\x2b\xc4\xb0\xa9\xf2\xab\x7f\x75\xc9\xb4\x2c\xf9\xcb\xf6\x92\xbc\x82\xf9\x45\x5c\xf7\x0a\x41\x54\x72\xdd\xb1\x64\x96\xe3\x2f\xe1\xba\x71\xc9\x75\x0d\xf3\xc9\xb0\x04\x14\x4b\x40\xbf\x87\xeb\x66\x44\xad\xd6\x40\x42\x23\x0a\xaf\xac\x80\x71\x01\x2f\xb6\x04\x67\x39\xa0\x23\xd7\x0f\xf8\x7d\x3a\x12\xff\x13\x3a\xf2\x02\x29\xf0\x3d\x6d\xf5\xe7\x2b\xe0\xd9\x26\xf7\x7e\x0a\x9c\xbc\xd0\x79\xfb\x20\x55\x1c\x5c\x70\xef\x63\xc1\xbc\xc5\x53\xab\x40\xb1\x54\x22\x05\xcc\x2a\xa1\x62\x42\x3c\x58\x58\x1c\x7a\x86\xe1\xac\xfe\x78\x4e\xb6\x99\xf8\xcc\x89\xe1\x59\x92\xa2\x63\x28\x33\x36\xb8\xc7\xb0\xcd\x64\x7a\x8e\xcb\x73\x45\x51\xa9\x3c\x87\x5a\xe1\xc1\x0c\xb6\x29\x93\x70\x42\x4e\x7b\x68\x65\x0c\xdb\x72\x07\x51\xc2\xce\x4c\xca\x3a\x68\x4a\xce\xc2\x45\x98\x47\x24\x97\xbc\xb8\x12\x78\xee\x7b\xdd\x2e\x9a\x38\x64\x5a\x6d\x3b\x7b\x84\x8f\x16\x1b\xae\xd2\x15\x4f\xe4\xe8\x2c\xa4\x11\x9c\xc9\x5c\x92\x38\x50\x55\x58\xb7\xbb\x59\xa7\x9a\x50\x86\x62\x51\x27\x96\x81\xc2\xa4\x20\x06\x73\x32\x19\xa1\x95\x3b\xeb\x9d\xe0\xc1\x24\x28\x71\x85\x73\x32\xc6\x4b\x22\x90\x85\x31\x39\x77\x90\xc4\x7d\x19\xe1\xfb\xde\x68\xda\x9b\x07\x1e\x76\x4e\xe0\x4c\xa6\x43\x9d\xc4\x3c\x0e\xe2\x70\x19\xe9\x84\xa2\x26\xb7\xe1\x14\x2a\x85\x2e\x38\x07\xa3\x86\x05\x63\x30\xca\x53\x70\x6a\x3c\xfc\x76\xcf\x2a\x61\x4c\xdd\xd5\xfd\x33\x05\x32\x31\x20\x3f\x35\x6e\x82\x5d\xcd\xb7\xa9\xa1\x58\x23\x85\xd5\x9d\xb9\xaf\xe6\xa1\xd4\x6c\x3f\x46\xda\xfa\x52\xc5\xb6\xd5\xa9\xad\x26\x19\x0a\x61\xe9\x0b\x15\xdb\x6b\xb4\x65\x23\xd0\x7d\x99\x62\x7b\x8d\xb6\x1c\x4b\x06\x13\x17\xf0\x84\x7c\x87\x9e\x5b\x4b\xfd\xb3\xa5\x99\x4a\xa6\x68\x9d\x58\x7d\x27\x5d\x95\xcc\x13\xb7\x08\x40\xac\xf6\xcf\x88\x22\x8e\xab\xec\x8c\x25\x00\xe0\x15\x88\x07\xf6\xf5\x0c\xf9\xbd\xf4\xec\xea\xc7\xb2\x77\xb4\x7f\x01\x3a\x08\x97\xf8\x49\xfb\xea\xd8\x9a\xd0\xfe\xaa\x7a\xbf\x02\xfa\x05\x3c\x9b\x23\x81\x39\x0e\x38\xc2\x1a\xa9\x02\x68\xf1\xf9\x86\xea\xb6\xac\x60\x0b\x88\x57\x68\xde\x55\x59\x25\xdf\x5d\xa5\x80\xab\xb2\x96\x1c\xd9\xaa\x8a\x37\xcb\x6a\xb8\x6d\xfa\xb3\x5d\x54\x0b\x8d\xd5\x81\x34\xc5\xc0\x7b\x6e\x79\x7c\x4d\x31\xd6\xfa\xeb\xbb\x96\x4d\xf7\x01\x12\x82\xa1\x92\x06\x9f\x60\x5c\xc0\xcf\x9b\xdb\xc7\x23\xab\x04\x94\xb3\xa9\x92\x8f\x48\x49\x41\xfa\x1b\xaa\x7d\x5d\x85\x37\x94\x62\x83\x0a\x36\x24\xe5\x82\x6b\x67\xde\x5a\x9d\xb4\x7f\xe1\x59\x1f\x3d\xa8\x0e\x5d\xc5\x37\xdf\xfa\xe6\x5f\x41\x33\xb6\xd1\x90\xf6\x57\x16\xc8\x95\x00\x69\xdb\xfe\x68\x7f\x65\x41\x5d\x09\xa8\xe5\x5c\x35\xd6\xa1\x35\x6e\x0c\x89\xe1\x2a\xab\xe9\x91\x28\xa7\x6e\x7b\xc5\xb4\xa5\xa2\x69\xf3\x69\x9b\xa9\xd3\xaa\x9b\x6c\xd6\xfd\xd5\x34\xfa\xb2\xcd\x9c\x69\xd5\xcd\x5a\xea\xfa\x7f\xc2\xea\x82\x8f\xad\x92\x4b\x88\x38\x71\xb8\xe5\xe6\x42\x5d\xe3\x02\x20\xb3\x99\xdb\x04\x1b\x15\xf0\x53\x33\x7a\xac\x72\x60\xad\xd8\xd5\xaf\xf5\x93\xfa\x6c\xc9\xc6\x16\xc3\xfa\xb6\xf6\x95\xc7\xec\x94\x5a\xbc\xe8\x87\x8a\x17\xfd\x0a\x8c\x7c\x0b\x29\x79\x0d\x09\x79\xd5\x62\x4f\xd1\x59\x83\x21\x27\x3f\x29\xdf\x58\x4b\x82\x99\x93\x9a\xed\x3b\x97\x7e\x3b\xf5\x37\xd2\xa7\x6b\xbd\x46\x19\x89\xd5\xd1\x2d\x45\x19\xd4\x45\x22\x94\x87\x5e\x44\xe6\x20\x84\x95\xba\xb5\x3c\xc7\xad\x45\xc7\xad\x45\x05\x67\xaf\x5b\x55\xe2\x16\xab\x8a\x1a\xa7\x9b\x6f\xb9\x66\xaf\x55\x23\x78\xf3\xdd\xd6\x6c\xb3\x17\x7f\xea\xee\x7a\x43\x45\xec\x86\xdb\xea\x17\x49\xec\x59\xd3\xb4\x6b\xf6\xd1\x92\x56\x6e\x55\x27\xb0\xf8\x92\x1a\x6b\x23\x07\x86\x81\xf6\x6b\xae\x8b\x88\x13\xc4\x9d\x14\x0f\x86\xf2\x6e\x72\x22\xab\x54\x80\x7e\xfc\x02\x40\xc0\x08\x62\x4e\x22\x0f\x5b\x74\x95\x0a\xd0\x2f\x36\x20\x75\x1f\xea\xa3\x82\x13\xab\x1f\xa6\xae\x10\x3b\x3f\xa2\x54\x7c\x59\xca\x1f\x09\xde\x29\x1b\xce\x42\x2f\x82\x2c\xf4\xa3\xcd\xe6\x63\xf1\x29\x0e\xfd\x08\x72\x19\x14\x47\xfc\x5a\x8a\x5f\x4b\x19\x4b\xb7\x44\xe4\xb7\x8a\xef\xfc\x80\x6e\x59\x1f\xbe\xb7\x3f\xfc\x68\x7d\xa0\xb4\xdc\x6e\x7e\x40\xbf\xe0\xdf\x2b\x2a\xa8\x54\xb1\x94\x5c\x4e\x58\xfc\xa9\xb1\x69\xaa\x93\xad\xca\x4d\x91\x0f\x4e\xad\x5e\x33\xf0\x44\x7f\xcd\xc9\x1b\x03\x0f\x8e\x71\x51\x00\xbb\x29\xb0\xbb\x78\x30\xac\xc0\xb9\xb7\x7b\x0c\x5c\x39\x83\xda\x92\xec\xb6\x3c\xdf\xee\xd9\x6f\xda\x5e\xd8\x8f\x1b\x20\xc5\x8b\x7a\xf9\xfa\x53\x1d\x9a\xdb\xf2\xa2\xf6\x58\x82\xb3\xec\xfa\x45\x01\x29\xb5\xfa\xe9\x0f\x6e\x63\x48\x28\x19\xf6\x52\x0a\xd9\x4d\xc7\x26\x91\xe6\x10\xd6\x4b\x69\x35\x42\x5e\xbd\x2f\xa9\x1a\x7f\xfd\xe4\xd5\x31\xd3\x1f\xeb\x78\xc5\xb4\xf4\x38\x43\xa7\x03\xdf\xc3\x83\xf2\xf1\xeb\x9e\x7c\x01\xb9\x55\xe4\x58\xbc\xe9\xc5\x14\x96\x94\x54\xd2\x51\xf9\x76\x7e\xb3\xbe\xf4\xff\xf6\x8d\xf7\x37\xff\xb6\xf7\x8d\x7f\x77\xf8\xcd\xf0\x6f\x77\x87\x3d\x79\xdd\x22\xa7\x3d\x06\x09\x59\xd2\x1e\xbb\xa2\x87\x89\x9d\xa9\xdd\xdf\xcf\x0e\xee\xee\x3b\x4e\x66\xf2\xd4\x1f\xf7\xb2\xc1\x5d\xc8\x89\xed\x17\xba\x24\x96\x57\xe8\x4e\x09\x6a\x29\x28\x21\xaf\x4d\x66\xde\x4b\xdd\x65\x2f\x81\x65\x2f\x75\xf2\x5e\x82\x8b\xe6\x70\x8d\x6f\x38\x59\x32\x6f\x1d\x93\xb4\xcc\xe8\x98\xa3\x54\x32\x1a\x26\xef\xef\xd9\x94\x70\x1b\xc3\xec\x2a\x90\xae\x4d\x00\xe8\x76\x6f\x4a\x31\xb6\xc7\x66\x58\xa7\xc5\x29\x6d\x52\xb7\xf5\xa6\xde\x93\x49\x1d\x8d\xc1\x10\x16\x94\xf8\x03\x8b\x48\x87\x18\xce\x28\xb9\xdd\x43\x0b\x3a\x18\x3a\x3e\x86\xf3\x9b\x52\xea\x99\xa2\xd4\xc1\x10\x12\xc2\x7a\x0b\x19\x7a\x0a\x62\xf9\xd3\x61\x90\x13\x37\x83\x25\x89\xab\x7e\x88\x49\xad\x50\xce\x20\xb6\xa7\x04\x96\x76\x0f\xfb\x77\x7b\xa9\x3b\xa1\xbd\x04\x26\xb4\x97\x3a\xe2\x39\x69\x7c\xcf\xc4\xf7\x58\x7c\xcf\xe4\xf7\xb8\xf1\x3d\x17\xdf\x97\xe2\x7b\x2e\xbf\x6f\xc0\x77\x24\x7c\x09\x5a\x14\x4d\x9b\xf0\x1d\x09\x5f\x82\x16\xdf\xb3\x26\x7c\x47\xc2\x97\xa0\xc5\xf7\x7c\x73\xf0\x57\x94\x84\x9c\x02\x13\xab\x1f\xc6\x62\xdd\xc0\x8c\xc2\x39\x8d\xe0\x94\x6e\xaa\x0e\x73\xc4\x85\x3a\x42\xe6\xe8\xde\x1d\xac\xf5\x79\xfb\x12\x99\xbe\xa1\x22\x3d\x9a\x65\x9c\xdf\x54\x4b\x4d\xed\xd6\x9d\xbe\x98\x43\xc4\x60\xab\x0f\x02\x94\x71\x9e\x8c\xb5\x6b\x43\x26\x4a\xfb\x52\x0f\xfc\xa3\xb6\x0d\xb1\x4e\xa4\x69\x23\x55\xd1\x94\xfe\x8c\xe3\xa6\x54\x0a\x5f\xe9\x97\x09\x2a\xac\x29\xa8\xa4\x52\x14\x4b\x0b\x38\xa9\xe7\xe0\xab\xc6\xfd\x98\x9a\x2b\x36\xb4\x3a\xf0\xac\xef\xf4\x68\xd8\xa3\xfd\xe3\x0b\xcf\xa1\xf2\xa2\xc1\xe0\x36\xa8\x37\x2b\xf9\x66\xa5\xde\xa8\x12\xaa\x64\xf9\x66\xa5\xdf\xd4\xca\xdc\x51\x65\x1c\x8e\x07\xf7\x4c\xa9\x3b\xaa\x94\xc3\xf0\xe0\x9e\x25\x09\x7c\xa2\x6d\x27\xe6\x9f\xe8\x3f\xf5\xc8\xfc\x62\xf3\xb6\x90\xe5\x9a\xfd\x22\x7e\x01\xd7\x1f\xad\xeb\x43\xee\xcd\xa3\xed\xdb\xc1\x31\x55\x94\x5b\x5e\x1b\x31\xa0\xcb\xe8\xaa\xad\x87\xd1\x9b\xc5\x8b\xff\x39\xbf\xb7\x3f\x0d\x6b\x9f\x6e\x43\x6b\x4b\xe8\x6e\xcf\x4c\xb2\x53\xde\xa4\x11\x64\x69\xde\xaf\xcc\x7b\x41\xc2\xf7\x70\xe9\x20\x60\x66\x4d\xfa\x04\x6c\xd0\x09\x54\xb7\x07\x60\x83\x64\xac\xcb\x58\xda\x18\xf3\xb8\x95\x65\xa4\xf4\x93\x5a\x00\xd6\x6a\xbd\x68\x5d\x10\x17\x5b\x16\xc4\x09\x2d\x49\xff\x84\x7e\x19\x89\x5f\x0c\xcd\x8f\xdb\xe6\xc7\x9d\x16\xea\xd7\x3f\x4c\xe1\x95\x29\xbc\xba\xf3\x47\x17\x86\xdf\x4e\x00\x06\x3b\x33\x88\x43\x0c\x5b\xe9\xb8\x8d\x1a\x1a\xe0\x4a\x78\xce\xd0\x10\xc2\x6d\xc9\xaa\x0c\xf8\xf2\xfd\x4a\xbc\x6f\x36\x66\xa8\xc8\x54\xad\xa0\x0c\x6d\x28\xd5\xfb\xd5\xb0\x05\xca\x16\x94\x6f\x2b\x94\xb5\x4d\x6f\x4b\xbf\x6b\x5f\x0d\x91\xaf\x6e\xb7\x7d\xbd\x63\xbe\xde\x11\x7b\xf7\x9f\xba\x94\x2f\x86\x15\xa1\x0f\x09\xbf\x62\x85\x42\x49\x55\x65\x85\xdb\xf5\x0a\xed\xeb\xf6\xe2\x4e\x55\xe1\x0e\xe1\x70\xe5\x6c\x8a\xfd\xc4\xd0\xb3\x43\xe5\x7a\x2e\x57\xb3\xf9\xb2\x52\x1b\x90\x19\xf1\xbf\x64\x5d\xbf\xd9\xba\xae\x2f\x1a\xeb\xfa\x65\xeb\xba\x7e\xf9\x9f\xb7\xd1\x5d\xb9\x07\xdd\xfe\xf7\xd9\x83\x7e\xdf\x26\xa2\xef\xd7\x6f\xa7\xb3\x94\x6c\xa5\xb4\x9d\xeb\x76\x3d\x06\xe9\x96\x5d\x4f\x7c\x69\xe1\x0c\x1a\xab\x3b\x7f\x0d\xf1\x1e\x6e\x25\xde\x97\x0d\xe2\xfd\x40\xed\x93\x88\x93\x38\x4f\x72\x52\x6e\x5e\x1a\xf0\x09\xe5\x31\xe1\xc5\x87\x1a\x45\x5f\x45\x8b\x24\x8c\x0c\x4e\xd5\x4f\x09\xfb\xda\xc3\x13\x2b\x06\xe6\xf1\x05\x98\x80\xb4\x2b\x2b\x43\xba\x2b\x53\xe5\xb0\xfb\x5e\x99\xee\x3b\xd5\xc9\x11\x20\x23\x5c\x1a\xb6\x64\xb4\x5c\x37\x81\x9c\x70\xf1\x43\xa8\x7a\x32\xc7\xdb\xf2\x80\xb0\x7d\x9c\x92\xe5\x80\xd5\x90\xb2\x59\xad\xe8\x6c\x8f\x86\xcb\xc8\x41\x86\x76\xc5\x2b\xdc\x43\x89\x93\x0a\x45\xce\x2a\xc6\xdb\x8a\x65\x4e\xda\xcb\x31\xde\x31\x63\x61\x06\xc2\xba\xa3\x5e\x0d\xc5\xb5\x67\x43\x17\x2a\xa6\x91\x53\x4e\xc6\x4a\xbf\xe0\xe6\x34\xe8\x2d\x6d\x04\x15\x2b\x9f\xac\x8c\x8c\xbb\x2a\x46\x5f\x39\xb3\x32\x45\x88\x9e\x7b\xa3\x50\xb1\xbe\x9c\xe8\x16\x85\x8a\xca\xe6\x80\x15\xa8\xff\xb7\xbb\xd6\xc9\xe3\xc3\xeb\xf5\x0f\xa5\x2e\xd0\xfe\xf1\x87\x9e\xfc\x3d\x74\xa5\x22\x21\x34\x43\xb1\xb8\xca\x0f\x2b\xf9\x61\xa5\x3e\x5c\x0c\xad\x1a\xbe\xcb\x55\x69\xeb\xe5\xca\x57\xf6\x04\xb1\xa9\xca\x4f\x96\xde\xf1\xbc\x46\xd1\x25\x43\x36\x41\x72\x89\x98\x2f\x3c\xb8\x57\x3c\xff\x57\x33\xe8\x52\x4c\x6b\x15\xca\xfe\xa0\x08\x76\xb5\xe6\x61\x89\x22\x75\xde\xf4\x70\xab\x42\xf3\x3f\x1a\xca\xb0\x85\x09\xfb\x57\xca\x3f\x25\x73\x7f\x78\x43\xe6\xde\x98\x1e\x5b\x34\x6b\x65\xf7\x7a\x12\x2d\xf1\x4d\x33\x85\xd7\x37\x62\x0a\x32\xd5\x42\x93\x09\x70\x9a\xd6\x13\xca\xb7\xf1\x01\xdb\xd5\xe8\xd5\x0d\x17\xdc\xab\x7f\xaa\xa6\x73\x71\xf7\xcb\x54\x1e\xfd\xe3\xee\x5f\xab\xfb\x6c\x48\xf9\x5f\xaa\xfb\xd4\xd7\xf1\x17\x83\x6b\xd3\x4b\x6e\xac\x79\xb4\x7c\xbd\x6b\xbe\xde\xfd\xf3\xf5\x92\xed\x6a\x46\xfb\xba\x6c\x1f\xf1\xba\xee\xd1\x3a\xb6\x0d\x6d\xe5\x6e\x55\xe3\x6e\xd9\xee\xbf\x6c\x25\xbf\xbf\xf1\x4a\x7e\xf5\x87\x57\xf2\xa3\x1b\xae\xe4\x47\xff\x0d\x5b\xe7\x7f\xb7\xb6\x73\xed\x2e\xb8\x29\x09\xdc\xd4\x68\x73\x13\x6d\xe6\x9f\xbe\x4c\x5e\xdc\x78\x99\x3c\xfa\xc3\xcb\xe4\x29\xad\xa5\x90\x22\x52\x4a\x95\x0e\x53\x02\x59\x99\xf3\xf4\x62\x28\xb4\x10\x81\xa1\x0c\x2b\xd9\x3f\x9e\x7b\xfe\x71\x6c\xee\x8a\xe7\x44\x5a\xd6\xc5\xbb\x61\xec\xdc\x36\xbf\x63\xf9\xc3\x1f\x1e\xc7\x8e\xfe\x31\x8c\x61\x49\xac\xef\x25\x24\x53\x20\xc6\x3b\x29\x41\x69\x2f\x57\x62\x75\xaf\xac\x27\xed\xfd\x56\x2b\x78\xb0\x84\x84\xa0\x44\x95\x5c\x35\x4a\xae\xea\x25\x0b\x8d\xf3\xf0\x76\x85\xf3\x5c\xe3\x3c\xbc\x5d\xe1\x2c\xbe\xb7\xe1\x3c\x26\xd6\xf7\x12\x92\x85\x73\x46\x50\xd6\x9b\xab\x33\x89\x0a\xaa\xcb\x2b\xac\xf0\x60\x0c\x31\x41\xb1\x2a\xb5\xb2\x4b\xb1\x5a\xa9\x62\xab\xea\x61\x6e\xd4\xb7\xab\x09\xcf\xae\xe4\x75\xf1\x7c\x31\x13\x3a\xef\xb3\xff\x14\x4e\x27\xa9\xc2\xb0\x30\x31\xc8\xe6\xb7\x18\x79\x52\x95\x19\xda\x85\x86\x76\xa9\xf2\xe1\x9f\xa9\x6f\x6c\x4a\x14\x56\xd1\x7f\x91\xca\x21\x88\xbf\x9d\x3d\xdb\x99\x3e\x85\x26\x6b\x72\x37\x08\xed\x95\xef\xd8\x03\x6e\x1d\x45\xdb\x03\x2c\x5f\x2f\xb2\x4f\x88\xf5\x98\x93\xf6\x52\x9b\xda\x30\x2e\xb6\x8e\xee\xbf\xc3\x21\x4c\xc9\xdb\x9f\x6e\xf2\xf6\x0d\xea\x83\x2d\x94\x08\x5b\x29\x11\xb6\x92\x25\xfc\x33\xf6\x8f\x27\x37\xda\x3f\x94\x05\x45\xb3\x8e\xa0\x54\x9f\x3c\x6b\x37\x51\x9c\xe3\x6a\x23\x8a\x6d\x43\xf9\x7c\x23\x3e\xf4\xf9\x3f\x4d\x77\xfa\x57\xf3\xa3\xff\x51\xc3\xfe\x43\x99\xda\xbf\xa7\xda\xf7\x5f\xc9\xf3\xbe\xfb\x02\x9e\xf7\xd9\xe2\x79\xaf\xfe\x28\xcf\x7b\x70\x23\x9e\xf7\xe0\x7f\x64\xaf\x7f\x03\x85\xf5\xdf\x9f\x71\xfc\x47\x2a\xc8\xff\x95\x0c\xe5\xdd\x17\x30\x94\x07\x16\x43\x79\xf4\x47\x19\xca\xcf\xad\x47\xf0\x3f\xff\x51\xa1\xe9\xaa\xd5\x68\x95\xb8\x62\xad\xb5\xaf\xa9\xd6\x05\x75\x85\x24\x8f\xda\x36\xca\x16\xc1\xde\x1c\x09\x7e\xdc\x7a\xfc\xfb\x73\xe3\xf8\xf7\x27\x6a\xdf\xb7\xd1\x97\x6d\x2b\x25\xf9\xd7\x36\x4b\x87\x32\x35\x40\x42\xb8\xab\x2c\x1f\x19\xd1\x67\x72\xea\x04\x6f\x80\xd2\xf5\x3a\x39\xf0\xba\x5d\xd7\xc3\x42\x89\x67\xae\x76\x23\x44\xc9\x7a\x9d\x9a\x0f\x39\x41\x59\x2f\x71\xe2\x5e\x2a\x6a\x38\x65\xc0\x78\xf4\x13\x45\x19\x76\x7e\xa2\x28\xc6\xfa\xd6\x51\xed\xd6\x70\x86\xa1\xfc\x1d\x63\xe8\xdf\xed\x95\x8f\x39\xc6\xeb\xb5\x95\xc3\xf9\x5b\x6a\xbb\x07\x5b\xc8\x9b\x6b\x09\x6c\x84\x6e\xf7\xea\xc8\x33\x97\xe3\xc1\x30\xb0\x2f\x1d\xb5\x0c\x82\xa7\xcd\x3d\x9e\x36\xf7\xf8\xda\xdc\xe3\xcb\x6e\xb9\x29\x1e\xdc\xde\xd9\x6e\x98\x70\x72\x48\x9c\xbc\xc7\x21\x73\x73\x88\xdd\xbc\xc7\x64\x38\x51\xeb\x4a\x4a\x2b\x3d\x57\x17\x4d\x5a\x3e\x8b\xd9\xfd\x85\xd6\x22\xab\xfe\x72\x35\x94\xdf\x68\x83\x38\x6e\xd5\xab\x7f\xdf\xfc\xfe\x63\xfd\xbb\xcc\xc9\xba\x1d\x3c\xe7\xe5\x65\x2d\x60\xea\x66\xa1\x3e\xbf\x87\xc4\xba\x6b\x9e\x9a\x0c\x0c\xe5\x63\x5c\x7b\x94\x9e\xf6\x49\xe8\x45\xc4\x83\x4c\xfc\x19\x42\x2c\xfe\xd0\xd0\x8b\x9c\x61\x8f\x86\x7e\x04\x9c\xf8\xfb\xfc\x20\x95\x67\xfc\x5c\x65\xd1\xf7\x21\x13\x7f\xee\xc8\xfb\xd9\xe4\x4e\x8f\x86\x5c\x15\xe7\x8e\x1f\x69\x98\xa9\xeb\x0b\x70\x99\xfa\xf1\x35\xc4\xea\xc7\xdf\x7a\x54\xfe\x70\x68\x98\x96\xb0\x25\x64\x95\xfe\x6b\x90\x85\xdc\xf5\x23\xd9\x80\x4b\x98\x6c\xc1\x25\xac\x17\xcb\xd7\x36\x6c\x05\x70\xa0\x1a\x00\x4e\x52\x77\xb8\xcf\xef\x13\x6f\xdf\x75\x35\x9a\x48\x56\x4e\x24\x56\x58\x00\x56\xf5\x35\x4a\x48\x60\xe0\x28\x60\x78\x30\x04\x4e\x3c\xab\x9f\xb2\x83\xa6\x4b\x1a\x86\x09\xbe\x96\x40\x16\x15\xb7\xfe\xd5\x02\xd4\xa6\xdc\xc4\xbd\xbf\xf6\x60\xdb\xf6\xc0\xad\xed\xc2\x3f\xd4\x0e\xb6\xb9\x07\xdf\x36\x5e\xe0\x7f\x95\xb9\x49\x31\xa7\x17\xf1\x0b\x99\xca\x5b\x6c\x0a\x52\xe0\xc2\x56\x5a\x80\xf5\x9a\x97\x4f\x2b\xff\x8a\xc1\xf9\x77\xb0\x13\x81\x19\x6a\x33\xc2\x8c\xfc\x6a\x09\x3b\x18\x58\xd3\x6f\x6f\x63\x6e\x1a\x35\x7e\xbf\x3b\x54\x09\x92\xb0\xa2\x28\x00\xfd\x68\xaf\x88\x7a\x6e\x3b\x7b\xb1\x60\xac\xd4\xeb\xc6\x7d\x58\xbb\x88\x2a\xa0\x33\x95\x4a\xe4\x81\xe2\x02\x7e\xa9\x2d\xb9\x2b\xd2\x48\x34\x85\x48\x59\xbb\x35\x45\xc4\x15\xb2\xc5\x7c\x7b\xe6\x87\xe6\xf2\x90\xf0\x6f\x9e\x87\xa1\x7d\xe3\xe2\x40\xe5\x25\x22\x99\x3c\xb1\x00\xca\xff\xb9\xfc\xa5\xee\x56\xf6\x3b\xdd\xc7\xa4\xf3\x18\x2e\x53\xff\x5f\xb1\x36\x64\x6c\xdc\xd0\x8b\xb6\xad\x90\xf2\x3b\x0c\x09\x21\x0c\x6f\x81\x22\x38\xbf\x8c\x6c\x2b\xa3\x7d\x5a\xc9\x86\xc5\xfe\x28\xa4\x28\x79\x57\x2b\x23\x1e\xc4\xc4\xdf\x8f\x0f\xd8\xbe\xe3\x64\xe0\x38\x31\xbe\x6a\x2a\xd2\xd0\x8b\xc2\x2c\x82\x44\xff\x4d\x43\x5f\x3f\xab\xbf\x34\x8c\x45\xbb\x71\x84\xf7\xaf\x65\x6b\xec\xf7\x30\x33\xb3\x04\x6b\xfe\x6d\x7f\xcc\x93\xad\x3d\x2a\x88\x10\x06\xa4\xa8\x61\x89\xad\x29\xbf\xca\x80\xc0\x09\x2f\xd2\x7f\x36\x6d\x9a\x61\xb8\xd9\xf6\xe6\x1d\x68\x54\xcd\xc8\xf3\x03\xbf\xdb\x1d\xd6\xf7\x98\xe6\xac\xd4\xb7\x3a\x33\x8a\x18\xfe\x82\x7d\xeb\x3e\xf1\xca\xac\x0b\xbc\x9c\x77\xbe\x8d\x18\xb6\xe8\x39\xff\x4e\xce\x5b\xe5\x6e\x53\x2e\x7d\x7e\x40\xbc\xf6\x45\x5b\x8e\xf0\x96\x3b\x03\xb2\xa9\x32\x9a\x7a\x69\x03\xe9\x95\xae\xa0\x1c\x3b\x54\x7b\x10\x1b\x4b\xc8\x86\xc3\x70\x39\x7d\xdb\xbe\xe3\xc2\x6c\x7c\xd5\x2e\x57\xaa\xda\xc9\xd6\xb5\x22\xd7\x46\xff\xae\xbd\x5c\x32\xde\x56\xc6\xb3\x64\xf9\xb8\xb5\x84\xaf\x42\xa1\xe7\xcd\x8d\x30\x99\x22\x94\x54\x89\xcc\xee\xfb\xb8\x4a\xd1\x27\xb7\x11\x22\xf5\xa1\x50\x70\xc7\x08\xf2\x32\xee\xd4\x7e\x76\x90\xc8\x9b\xb2\x32\x2e\x13\x89\x75\xa1\x2c\x8a\x74\xca\xc4\x7c\xdf\x71\x18\x8e\x43\x16\x85\x7e\xe4\x10\xf9\xc3\x8b\x48\x92\xbf\x88\x5f\xa0\x54\xbd\xc6\xa3\x54\xbd\x0e\xf4\x8b\x02\x96\xf5\xc1\xb0\xf3\x97\xe9\x80\x57\xcc\xce\xbf\x8e\x85\xfc\x2d\xc4\x70\xcc\x84\x08\xcd\x4b\x6d\xd0\x1a\xb2\x39\xaf\x05\x7b\x12\xea\x83\x1c\x8b\x71\x4b\xc6\xfe\x39\x0a\x23\x0c\x9c\x2c\x39\x30\x92\x73\x48\xc9\x9c\x57\x90\x12\x64\x2e\xf1\xcb\xf4\x85\xdb\x92\x11\x2c\x89\xc9\xc2\x05\x73\x62\x6e\x05\xc2\xd8\xc2\x7b\xae\x74\xa1\x8c\x78\xfb\xd9\xc1\x5c\xdd\x38\x36\x5d\x9d\xc2\x8c\xe4\x82\xef\x4f\xc8\x38\xcc\x22\xab\xd6\x12\xc3\x82\x78\xfb\x8b\x83\xe5\xbe\xe3\x2c\xf0\x24\x5c\x44\x64\x4a\x42\x0f\x9c\x14\x25\xe1\x22\x82\x19\x2c\x20\xc1\x11\x4c\xfb\x93\x98\xc7\x44\xbc\xdb\x99\xf4\x3f\xd0\x15\x99\x15\xba\x3d\x88\x09\x47\x63\x5c\x36\x3b\x0e\x63\x31\x69\x2a\x19\x38\xc9\xca\xf1\x43\x63\x88\x31\x8c\x8d\x1d\x27\x91\x69\xc6\xfe\xf0\x0d\x4d\x1d\xbf\x43\xa6\xa6\x96\x37\x35\x93\x66\x58\xab\x3f\x10\xa1\x22\x91\x11\x2a\x92\x7e\xc6\x26\x94\x7d\x69\x24\xc2\x25\xdf\x1e\x87\x4f\x63\x4d\x15\xd6\x5c\xb6\x31\x9d\xe6\x37\x8f\xc5\x61\x1a\xc9\x79\x40\x05\x08\x56\x40\x52\xc0\xb4\x6d\x2d\xa6\xd6\x5a\xf4\xec\x7c\x99\x6a\x31\x7a\x72\x9d\x79\x51\xb5\x0a\xe3\x8a\x7a\x12\xa2\x96\x5e\x2a\x97\x5e\xe2\x48\xdf\xf9\x30\x13\x0b\x6b\xbd\xf6\x84\xb4\x94\xc8\xe5\x6a\x97\xaa\x8a\x0c\x48\x52\xe4\x5c\x47\xd7\x85\x59\x1b\x72\x79\x0d\xb9\x06\x6e\x2a\xb5\x92\x0c\x9d\xa6\xd9\x45\x99\x56\x53\xd2\xda\x12\x2b\x12\x8c\x89\x57\x63\x11\x28\x21\xa2\xd7\x21\x0f\x59\x14\x85\xcb\x08\x87\x7e\xe4\x0a\x99\x08\xdf\x27\xde\x48\x4a\x47\x24\x93\x42\x11\xc9\x1c\x92\xe0\x20\x39\x90\xaf\x85\x52\x0e\xf2\x6b\x2c\x5f\xab\x82\x05\x4c\xda\x30\x67\x5b\x87\x95\x48\xfb\x8f\xe6\x6f\x59\xb9\x72\xf7\xd3\x83\x6c\xdf\x71\xac\x14\x8a\x02\xef\x5c\xe6\xd8\x13\x62\x5d\x8c\x73\x31\xbe\x71\x14\xa6\xe5\xf8\xaa\x9f\x0e\x91\x3f\xbc\x88\xb8\xf9\x60\x68\x0d\xe9\xe2\x3a\xde\x2b\xf6\xe9\x94\x08\x5c\x15\x3a\xf8\x3a\x4a\x10\x32\x66\x2a\x91\x29\x3f\xe7\xc4\xd3\x93\xe0\xed\xe7\x92\x45\xe7\xd5\xc7\xb1\x84\x9c\x47\x11\x4c\xc9\x58\xe0\x2e\x11\x87\x19\x41\x53\x17\x8d\xc3\xd8\xf5\xf5\x2b\x19\x39\x7e\x42\xbc\xfd\x89\x9c\xa4\x89\xe2\x7a\x0b\x59\x7d\x12\x45\x3b\x33\x87\xa0\x45\x09\x00\xbb\xe2\xa1\xaa\x5c\x2c\x1d\x32\x85\xb9\x43\x66\xbd\x69\xc1\xcc\x17\x87\xe8\x9f\x72\x3e\x97\xdd\x2e\xca\x5c\x32\x1f\x2c\xf1\xb6\x22\xd5\xc8\x9d\xd5\x57\x5a\x95\xd0\x72\x81\xce\xab\x6c\x9a\x4b\x5e\x66\xb8\xb6\xc6\x99\xd5\xd2\xea\xba\x82\xca\x0a\x7b\x43\x3d\xe7\xb5\x7d\x06\x18\x71\x7d\x43\x15\x86\x75\x67\xc4\xf5\x07\x9e\xa0\xd6\x83\x64\x1f\x0b\xcd\x9e\xea\x0d\xec\x7e\x26\x83\xff\x8a\x8d\x82\x95\x88\xa4\x72\x7b\x59\x6d\x47\xfa\xf4\x8f\x22\x7d\xba\x81\xb4\x07\x29\x71\x7d\x0b\x69\x41\xbc\x15\xb6\x92\x32\x71\xb7\x8b\x98\x43\xaa\xc6\x99\x44\xf4\xa4\x95\x8f\xad\x74\xda\xe9\x73\xca\x64\xb2\x68\x38\x6e\xe9\x4f\xcd\x1a\x28\x1b\xd7\xdd\x83\x8c\x9c\x49\xa5\x48\xaf\x1a\x58\x0a\x8d\x6f\x4e\x42\x65\x14\xd3\xd6\x2f\x6d\x89\xcb\x42\x1e\x41\x7c\x90\x8f\x90\x58\xc9\x21\x8b\x60\xa9\xd3\x7f\xcb\x2c\x17\xfa\xdd\xbc\x7c\x67\xd0\x9f\x57\xe8\xe9\xd4\xa9\x68\x89\x0b\xf8\xd4\xda\x9f\x65\xa3\x3f\x3b\xac\x3f\x41\x1c\x3a\x31\x1b\x77\xc0\x92\x03\x74\xf1\xb7\x05\x86\xb2\x04\x8d\xdb\x8a\x3c\xaa\x8a\x08\x49\xaf\xad\xc8\xfb\xaa\xc8\x22\x69\x2d\xf1\xac\xde\xce\xeb\x78\x92\xc4\xf3\xb6\x82\x3f\x57\x05\x99\x2c\x74\xb8\x05\xad\x9f\xeb\x68\x6d\x87\xf8\xae\x09\xf1\xd9\x96\x5e\x58\x05\xa5\x04\xbe\x1d\xe4\xc7\x5a\xdb\x1f\xbe\xcb\x58\xf2\x39\x4b\x79\x7b\xe1\xdf\xea\x85\x7f\xa2\x8c\x27\xe3\xf6\xa2\xdf\xd7\x8b\x6e\x47\x80\xd2\xaa\xa4\xce\x24\xdc\x52\xea\x74\xa3\x54\xde\x56\x6c\xb5\x51\xec\x61\xc2\xc6\xf3\xd6\x31\xe2\x9b\x65\x59\x96\xb7\x82\x65\x1b\x45\x1f\x25\xf1\x59\x96\x4e\xda\x0a\x67\x1b\x85\xdf\x7c\x5c\xc6\xac\x15\x87\xf1\x66\x59\x1e\xb3\xb6\x92\xf3\x8d\x92\x6f\x59\x22\xc3\x3a\xb5\x95\x9e\x6d\x94\xfe\x79\xd5\x5a\xf0\xdc\x2a\x28\x63\xd1\x3d\x88\xf3\x24\x7f\x28\xd4\xd2\xd6\xce\xbd\x69\x2d\xff\x72\x41\xd3\xb6\xd2\x87\xad\xa5\xdb\x4a\x3e\xde\x28\xb9\x4c\x27\xed\x7d\x7b\xdb\x2c\xfa\x30\x66\x93\x24\x8d\xe7\xdb\xb1\x7e\xbf\xad\xca\x36\xc4\x5f\x6c\xab\xd0\x56\xf8\xf5\x66\x61\x7e\xb6\x9c\xcf\x5f\x67\x67\xdb\x51\xfa\x6e\x7b\xa5\x6d\x48\xbd\xdb\x5e\xa5\xad\xf8\x93\x66\x71\xc1\x2c\x62\xb6\x1d\xa5\x8f\xed\x15\xda\x8a\x3e\x6f\x94\x7c\x9e\xa5\x19\xcf\x52\xfa\x4b\x2b\xd7\x68\xc2\x35\xa5\x7f\x6d\x65\x1c\xcd\xd2\x2f\x62\xbe\x64\xed\x23\xcf\x78\xa3\xec\x1b\x4e\x17\x6d\x05\x93\xb6\x82\x87\x53\x4e\x5b\x7b\x17\xb7\x95\x7e\x40\xa7\x59\xfb\x22\xce\xac\xe2\x39\x8f\xc7\x1f\x5a\x57\x7a\xb3\xd0\x4b\xa9\x8f\x3c\xbe\x58\xc4\xed\x6c\x64\xda\x5e\xe1\x51\x72\x4e\xd9\x69\x92\x9e\xb6\x2e\xfb\xf6\x3a\x2f\xb2\xf6\x5d\x22\x6f\x2f\xfe\x26\x99\xcf\xb2\x25\xe5\xbc\xb5\xd2\xa4\xbd\xd2\xcf\xc9\xe9\x16\x5e\xb4\xd8\xa8\x20\xb4\xbd\xc3\xc5\x82\xc6\x2c\x4e\xc7\xad\x75\xce\xda\xeb\xe4\x63\x9a\x4e\xb6\xf4\x7d\xd5\x5a\xe5\x11\xbd\xaa\xce\x49\x6b\x9d\xa7\x69\x9e\x4c\xe8\xcb\x25\x6f\xab\x72\xdc\x5a\x65\xdb\x08\x2f\x5b\x4b\xbf\x56\x22\x4d\x5b\x85\x4f\xbc\xc0\xc5\x17\xe4\xf0\x66\xe8\x36\x86\x84\x5c\xea\x40\xd5\x15\xbc\xc2\xb6\x40\xa1\x4a\xf2\xa4\xc0\xa5\x36\xd7\x54\x7a\x21\x25\x97\xc5\x3e\x97\x9a\x12\xd7\xa9\x20\x68\x55\x2a\xe4\x91\xd3\xe9\xe0\xf5\x9a\xee\x26\xe9\x6e\xba\x99\x35\x37\x99\xcf\xe9\x69\x3c\x97\xd9\xe0\x83\xdd\x8e\x43\xf1\x4e\x1a\xd2\x88\x84\x51\x61\x19\xb6\x62\x94\xda\x76\xaf\xea\x08\xdb\x3e\xbb\xce\x95\xae\xb5\xa1\xf1\x55\x7a\x5e\x22\xf5\x3c\xad\x25\x86\x69\x84\xfb\x69\x7c\x46\x09\x21\xbc\x0c\x5c\xa5\xac\x14\x15\xd0\xa5\x19\xcb\xea\x0c\x40\xc7\xd6\xad\x2b\x8f\xc9\x54\x9e\xfb\x56\x00\x2f\xc5\x23\x49\x80\x12\x1d\x4c\x15\x79\x90\x96\xd2\xab\x79\x97\x3a\x3e\xd6\x06\xd0\xb2\xbf\x26\x8e\x39\x55\x62\xf0\xa5\x00\x19\x70\x1d\x53\x9c\x15\x18\x68\x2d\x23\x7a\xb6\x3d\x23\x7a\x96\xb6\x1d\x5b\x96\x2e\x5f\x90\xb4\x47\xbd\xa7\x7d\xce\x92\x33\x84\xfb\xf9\x62\x9e\x70\x34\xf8\xfb\xfa\x28\x77\x06\x58\x4a\xfc\x4d\xc5\x80\x91\x4e\x47\x6a\x06\xd2\xac\xf4\x72\x8a\x3a\xfd\x8e\xca\x96\xad\xac\xd1\x8c\xd8\x5d\x6d\x8c\x06\x06\xda\xed\xee\xf1\xfe\x2c\xce\x5f\x7e\x4a\x5f\xb1\x6c\x41\x19\x5f\x21\x8a\x37\xe9\x64\x99\x7e\x48\xb3\x4f\xa9\x4d\x27\x0a\xdb\x4b\xf9\x86\x82\x1c\x25\x56\x14\xb8\x40\xd4\x11\x38\x61\xa9\xcc\x41\x5c\x2a\xfa\x2a\xf9\x62\x93\x80\x0f\x86\x58\x92\xad\x8e\x38\xdf\xed\x56\xc6\xa1\xbd\xd2\xa4\xd5\x42\xb7\xe9\x79\x3c\x4f\x26\xbb\xe3\x78\x3e\x3f\x89\xc7\x1f\x04\x4e\x5c\xd9\xfa\xf6\x1d\x27\x3b\x88\xf7\x05\x49\x30\x82\x28\x49\xc2\x2c\xc2\x32\xee\x19\x4e\x43\x16\x91\xa5\x34\x8a\x02\x95\xb4\x02\x56\x7a\x70\x65\x3c\xe2\xca\x72\xa3\xd6\x4b\x4b\x05\x51\xaa\x54\x8c\xc4\x44\x16\x8d\x46\x37\x5a\x95\xd3\x90\xdb\x40\x30\x2e\x09\xbe\x80\x71\xb6\x58\x6d\x1e\xc7\x5d\x16\xe5\x49\x5c\x19\x37\x51\x22\xc5\xa5\x25\x49\x06\x69\xd0\x53\x59\xa9\xc3\x72\xa9\xca\x43\xd1\x78\x3e\xdf\xf4\x49\x44\x9b\xfc\xc3\x1d\x6e\x18\x98\x2c\x3b\x28\x93\x67\x6c\xfb\x99\x3a\x5f\xc3\xa2\x4f\x16\x6f\xc9\x9c\x61\x24\x27\x55\xa1\xf9\x3b\xc9\xc8\x98\x4b\x19\x41\x66\x61\x84\xb4\xb4\xc8\x94\x6d\xa7\x61\x16\x29\xe6\x60\x6c\xc1\x90\xe0\x02\xe4\xef\xa0\xc9\x78\xff\x14\xa4\xf4\x89\xa3\xc1\x08\x12\xc9\x79\x52\x83\x58\x22\x39\x4f\x82\xd3\x30\x69\x22\xc6\xcc\xe1\xdc\x9c\x64\x76\x3e\xa0\x52\x47\x46\xe3\x36\x03\xeb\x1b\x29\xf1\x77\xbb\x46\x9f\x6a\x7c\xe8\x27\x9c\xb2\x98\x67\x6c\xd4\xa2\x74\x1b\x33\x6a\x11\xb4\x7c\xa4\xf6\xaa\xda\x68\x8e\xf6\x2d\xae\x45\x08\x29\xdf\xef\x99\xdf\x15\x87\x1b\x19\xdc\x82\xb2\x41\x2c\x08\x4e\x9b\xd3\x75\x8e\x0c\x0f\xce\x88\x07\xe7\xc4\xa7\xb7\x61\x45\x3c\x38\x25\x1e\x9c\x10\x0f\x8e\x49\x27\x93\xfe\x03\x1d\x42\x88\x18\x77\x9d\xe4\xa4\xc2\x69\x41\xd9\x34\x63\x67\x42\xbe\x18\x59\xdf\x83\x31\xb2\xbe\x60\xdc\xed\x5a\x8f\xfd\x34\xfb\x34\xb2\x9e\x83\x47\x31\xa7\xf0\xe9\xda\xb6\x3e\x25\xe9\x24\xfb\xd4\x68\x46\xbd\x14\x2d\xa8\x5f\x7d\x46\x3f\x2e\x69\xce\x0f\xd3\xe4\x2c\x16\xe3\xf7\x84\xc5\x67\x74\x74\xd5\xc7\xfe\x49\x92\x4e\x0c\xa0\xda\x74\xe4\x94\xbf\x4d\xce\x68\xb6\x94\xe7\x44\x5f\xdb\x76\xa6\xc7\x96\xce\xbc\x5e\xa3\x4f\xe8\x02\xc3\x29\x39\x16\x7d\x43\xd8\x39\xc1\x76\x5e\x6f\x7c\x79\x4a\x3c\x3b\x8b\x77\x79\xa6\x1b\xcf\xe7\xc6\x67\x28\x39\x33\x47\xfa\xa9\xf4\x74\xab\xa5\x46\x7a\x59\x77\xce\x13\x6b\xe1\x4d\xc9\x44\xfa\x8c\xca\x88\xf4\xba\x0c\xa4\x76\xba\x6f\xd1\x36\x5a\x19\xc4\xb0\x73\x02\x13\xb2\x20\xde\x0e\x67\xab\xcb\x3d\x8b\x89\x3d\x46\x18\x1c\x67\xb2\x63\xcb\x2f\xd3\x7d\xbe\x8f\x11\x25\xa7\x2e\x57\x08\x62\xb9\x47\x71\x85\xb8\x32\xfd\xcb\x80\x2f\x32\x6a\x26\x57\x98\xef\xbb\xee\xa4\x40\xb8\x98\x0a\x35\x6e\xbe\xba\x14\x14\x66\xb5\x63\xc1\x07\x46\xa6\x90\x12\x7f\xe0\xed\xb3\x7d\xcc\x14\xd4\x11\x4a\xef\x33\xd5\x9a\xb4\xf9\xea\xdf\x62\x27\x64\xc0\xc4\xa3\x68\x04\x07\x88\x9b\xdf\xc0\xac\x21\x03\x46\xe8\x88\xea\x17\x3c\x98\x12\x8e\x77\x66\x84\xc2\x5b\x21\x10\x21\x31\x45\x5e\x61\xa7\x3a\x37\xdc\x5b\x8f\x0f\x70\x42\xdd\xd5\x0e\xbf\x7f\xde\xed\xa2\x13\x97\x70\x58\x11\xdb\x1b\xf0\xad\xa0\x8a\xc9\x7a\x8d\x16\xdd\x2e\x5a\x90\xf1\x9c\xc6\xcc\x50\xc8\x42\x6c\xcf\xee\xe9\xfd\xe1\x9d\x11\xa2\x07\xfe\xc0\x93\x45\x2c\x12\x3a\x04\xea\xea\x76\xdc\x13\x8c\xe1\xac\xdb\x45\x67\x0a\xc6\xd3\x94\x53\x76\x1e\xcf\xd1\x99\x4c\x5f\x7b\xb6\x5e\x57\x73\x06\x67\x02\x48\x59\xe2\x03\x9c\x63\x0c\x13\xe2\xc3\x27\x74\x88\x31\x2e\xde\xd8\xde\x3e\xdb\x64\x9b\x37\xa0\x89\xa4\x8d\xf5\xb6\xec\xe0\xd4\xe2\xba\x6f\x57\x0b\xaa\x39\xaf\xd9\xbd\x77\x93\x7c\x37\xcd\xf8\x6e\x5c\xe6\xe5\xef\xe0\x1d\xb1\x21\xc8\x1d\x99\x8d\x1e\x23\x1c\x38\x0c\x3b\x66\x8b\x1e\x79\x81\x53\x9e\x33\x8b\xb9\x59\xaf\x67\xfa\xc8\x7e\xbd\x46\xb3\xd1\xcc\xcc\xd8\x2c\xc9\xc5\xa4\xcd\x92\x1c\x66\xf2\x4f\x79\x72\x2c\x96\x4a\xe9\xfb\x20\x16\x0b\x83\xb7\x08\x17\x90\xf3\x6c\xd1\xe2\x49\x14\xcf\xe7\xe5\xd9\xbe\xac\x6b\x45\x26\x92\xd5\xfd\x81\x27\x00\x18\xce\xff\x90\x34\x07\xa6\x65\xa9\x99\x43\x31\xd5\x1f\xa8\x56\x5e\x59\x97\xe1\xcb\xb4\x2f\x50\x42\x18\x28\x62\xd2\x8f\x5b\x2f\x4a\x78\x4e\xe6\xa8\x23\xcb\x77\xa0\x43\x85\x36\xda\x19\x0b\xfe\x37\xef\x40\x27\x11\xd3\xcb\x96\x0b\xde\xc1\xf0\x9a\x84\x11\xbc\x22\x1e\xbc\x27\x3e\x3c\x22\x43\x78\x41\x6e\xc3\x53\x72\x07\x9e\x91\xbb\xf0\x84\xdc\x83\xcf\xad\x69\xb5\x4d\x64\x66\xda\x3f\x3e\xe6\x2c\x4e\xf3\x44\x94\x10\xfb\x7d\x2c\x67\x59\x0a\x23\x26\x0a\xbf\xca\xca\x5b\x2f\x4a\x2e\x8b\x9d\xbd\xd6\x51\x50\x7e\xc0\x36\x54\x4b\xe7\x59\x9a\x44\xf4\x32\xfd\x92\xf4\x3c\xea\xe7\x3c\xe6\x62\x3b\x7a\x5f\xa6\x7d\x43\x6a\x8f\x9e\x0b\x24\x12\x29\x75\xcd\x48\x12\xce\x2b\x95\x82\x29\x41\x4b\x60\x3a\x53\xf5\x09\x21\x2f\x4c\xfd\x87\x28\xc3\x3b\xd5\xfb\xa7\xa3\xb2\xd0\x13\x98\xf5\xc5\x84\x32\x33\xec\xb3\x7e\x96\x2a\xde\x64\x8d\x2a\x50\x10\x3d\x98\xc4\x3c\x3e\x3e\x86\x99\x92\xbe\x61\xd6\x3f\x65\xd9\x72\x81\x4d\x54\x76\x89\x50\xe0\xcc\x0f\x78\xb7\x7b\xa3\x06\xcc\xfc\xdd\x1c\x7a\x91\x4c\xd1\x43\x64\x2b\xa4\x55\x67\x85\xdc\xa9\x9f\x9e\x02\xd3\x8d\x1a\x12\x8b\x85\x7e\x4b\xe7\xf1\x4a\x7f\xc1\x10\xa3\x25\xc6\x52\xef\x55\x75\x1e\x01\xab\x30\xd3\x74\x56\x43\x8c\x69\xc4\x98\x41\xac\x6a\xfb\x91\xe2\xcc\xe6\xc5\x0b\x48\x2d\xa9\x72\x4a\x58\x9f\x7f\xa2\xd4\x88\x52\x18\xe6\xc4\x83\x31\x71\xfd\xfd\xf9\xc1\x74\xdf\x71\xe6\x18\xcd\x4c\x99\x70\x6e\xa4\x2b\x75\x34\x7c\x15\x02\x42\xd2\x4e\x43\xc7\x19\x47\x64\x86\x77\x0c\x78\x32\x76\xfc\xc2\xd6\x5e\x2d\x25\x35\x21\xfc\x80\xf5\x27\x4b\x26\xb7\xef\x11\xeb\xd3\x38\xa7\xd6\x4e\xc4\x07\xd5\x57\x1c\xa0\xe6\x20\xe6\x55\x9f\x9f\x81\x5f\x6a\x3c\x69\x75\x32\x24\x95\x02\x29\xbb\x6a\xf4\x13\xbc\x53\x0d\xd3\x33\x39\x45\xe5\x20\xcb\x45\x7c\xf5\x10\xe7\x82\xc5\x58\x2a\xb7\xa5\x18\x8b\xa5\xc0\x4a\x22\x63\x75\x22\x2b\x69\x86\x47\x90\xe8\x55\xb0\x53\x26\x0f\xb0\xd7\x62\x21\x7d\xac\x99\x01\x40\x5e\xd6\x74\x4e\xd3\xc0\xfb\x0d\x82\xca\x36\x08\x4a\x3f\x1f\x10\xda\xed\x66\x88\xba\xfa\x19\x17\xe0\x99\x32\x05\xa2\xc0\xc0\xa8\xd8\x2a\x7d\x57\x0a\xb2\xaf\x41\x22\xf4\xe7\xe7\x20\xa9\x20\x78\x0d\xa2\x7c\x90\xc9\x6a\x20\xe1\x04\x99\x6e\xcf\x4c\x90\x78\xa1\x7f\x82\x98\xc7\x20\x93\xd3\x29\x6b\x32\x99\x9f\x0c\x24\xf2\xc1\xab\xda\x11\xdf\x77\xb6\x4b\xf1\x3b\xe5\xa7\x54\x71\x9d\xfb\xaf\x36\x15\x06\x9e\x65\xbb\xf3\x98\xd3\xfd\xdd\x78\xce\x68\x3c\x59\xed\xe6\xe3\x19\x9d\x2c\xe7\x74\xd2\xb1\x8e\xfc\xca\x16\x1e\x5c\xdd\xc2\x8b\x9b\xb4\xc0\x96\x69\x9a\xa4\xa7\xad\xf0\xdf\x35\x6e\x6c\x34\xf8\xf5\x1e\x5b\xaf\xf7\x10\x23\x2c\xe4\x51\x8b\xfa\x53\x15\x96\x7b\xf0\x34\x5b\xa6\xb5\x6e\x08\xb0\x3f\x93\x56\x43\x86\x3c\x1f\xaf\x37\x08\x31\xd9\x93\x1e\x10\xc6\x55\x42\xea\xac\xe5\x46\x27\xc3\x74\x73\xa7\xd3\x81\x0c\x23\x46\xb2\x30\xb1\xac\x40\x23\x29\xa0\xa9\x41\x79\xd4\xed\xea\x9f\x07\xcf\x60\x2b\x59\x57\x8b\x27\x1d\x59\xec\x39\x68\xe7\xa4\x1b\xab\x49\x2f\x00\x89\x45\x10\x93\x3d\x7f\x27\xee\x76\xdb\x57\x45\x01\x1f\x09\x43\x77\xac\xfb\x53\x3f\x6d\xdc\x70\x49\x26\x55\xea\x0e\x1a\x8f\x67\x68\x43\xab\x7f\xa0\x5c\x98\x52\xbc\x8f\xa8\x62\x6b\xeb\xb5\xf9\x45\x2e\x0b\x8c\xe5\xda\x6b\xf7\x76\x2a\x30\xb4\xe8\x76\x62\xee\x53\xac\x20\x84\x3c\x2a\xe4\x74\xfd\x4a\x18\xf2\x31\x7c\xdb\x36\x6b\xe6\xc6\x50\x27\x5d\x9e\x9d\x50\x66\x3b\x0e\x7d\xec\x8f\x03\xbe\x9b\xa4\x39\x17\xa3\x97\x4d\x77\x7f\xed\xc7\xa3\x8f\xfd\x49\x80\x98\x76\xfc\x46\xbf\xf6\x63\x8c\x38\xc6\x23\x21\x30\xc3\xc7\xfe\x04\x07\x1f\xfb\x53\xac\xfc\x07\xa4\xe4\xf3\x03\x49\xfb\x39\x9d\x53\xd9\xae\xe5\xfb\x6d\x89\x8f\xd5\x18\xde\xb2\x7a\xd2\x14\xba\x72\xbe\x9a\xd3\x3e\xa3\x67\xd9\x39\xb5\xf4\x77\xd5\xc3\x1f\x89\x57\x41\x29\x53\xbf\x18\x71\x4d\x4e\x6f\x5e\xca\x77\x8b\x98\x89\x11\x2c\x5d\xdb\x25\xbd\x19\x67\xc2\x64\x42\x52\x3b\x79\x4b\x85\x90\xee\xb2\xd5\x1d\x8c\x70\xbf\xa2\x89\xfa\xc5\x9f\x52\x81\x73\x9c\x1f\x25\x8a\x94\xb6\x8f\xc4\xce\x2f\x96\x54\xfd\xdb\x36\x09\xfb\x17\x50\x55\x83\x4d\xd7\x86\xaa\x13\x60\xdc\x28\x93\xc9\x4e\x9b\xd4\xdd\xed\x22\xe3\xb2\x5f\x76\x23\x63\x42\x63\xaf\x4c\x1c\x09\xb1\xc7\xcc\x72\xcc\xa9\xdd\x29\xca\x4c\xd6\xec\x4c\x3a\xba\x98\xca\x32\x4d\x26\x49\xc2\x5c\x3a\xba\x54\xe9\xb7\xe3\x30\xb7\xfd\xe9\xa6\x58\xfb\xb8\x4c\xa5\x8f\x0b\x5a\x92\x71\x38\x91\x5e\x12\x73\xa2\xb7\xdb\x25\x2c\xab\x85\x3a\x81\xb1\xdc\xcc\x3b\xe6\x4d\x27\x49\x77\x97\xa2\x78\x59\x86\x54\xc5\x31\xcc\xc2\x49\x44\xe6\xf0\x19\x89\x1f\x92\x14\x26\x30\x83\x77\x68\x09\x0c\xe3\x9a\x79\xec\x17\x14\xd7\x89\x42\x2e\xe1\x42\x0f\xf6\x61\xcd\x6a\xf6\x67\x8d\xf7\xe1\x7c\x7e\xf3\x21\x0f\x23\xc8\xc5\x7f\x4b\xe2\xed\x2f\xe5\x68\x2f\xcb\xd1\x56\x63\xbd\x6c\x8c\xb5\xb7\x3f\x93\xe3\x3a\x13\x62\xf0\x9c\x8c\xc3\x59\x54\x49\x05\x13\x58\x98\x11\x9e\xc3\xdc\x12\x2a\x61\x2c\x34\xc1\x77\x68\x2e\xb4\x89\x73\xe2\xc1\x8a\x2c\x8c\xd8\x72\x7e\xb0\xda\x77\x9c\x73\x8c\x26\x64\x11\x9e\x8b\x79\xfa\x8c\x26\x72\x58\xcf\x61\x01\x67\x78\x27\x56\xa6\xf1\x85\xcc\xdb\x2c\x7e\xcd\x71\xd1\x18\x64\x33\xb0\xd3\x64\xce\x29\xab\x8d\xea\xf5\x23\x77\x16\xf3\xf1\x8c\x36\x08\x95\xd7\x47\x8d\x11\x5e\xb9\xc3\x6c\x35\x59\x96\x3e\x65\x32\xae\x6d\x26\xc6\x35\xaf\x5c\x46\xa5\x41\x33\x8c\x74\x3e\xed\xa5\x4c\xa7\x8d\x62\x92\x87\x63\xd1\x69\x3d\x6e\x31\xc4\xd5\xb8\x8d\x21\xc7\xdd\xae\xf6\x90\x89\x1b\xa4\x95\x34\x49\xab\x22\x1c\x43\x36\xb8\x80\x33\xca\x4e\x69\x6d\x40\x54\xe4\xa8\x64\x52\x7a\xa1\x27\x93\xe6\x36\xbd\x7d\x14\x68\xf9\x3b\xb5\x47\x84\x55\x2e\x55\xe5\x75\x50\x99\xaf\xa5\x7e\x53\x70\xdb\xaa\x26\x5c\x25\x5e\x65\x6a\x69\xcf\xbf\x60\x69\xcf\xc3\x49\xb4\x5e\x9b\x05\x2e\x97\xe6\x52\x5b\xe6\x73\xe9\x89\x94\x63\x09\x43\xb4\x70\xcd\xd2\x6c\x1d\xbf\x92\xa5\x06\x9b\xe7\x70\x02\xce\x0f\xa8\x36\x42\x35\x90\x42\x7d\x2e\xf9\x77\xd0\x66\x47\xb2\x57\x3b\x2f\xa7\x03\x18\xf9\x1e\xe1\xf2\xe4\x46\x83\x4e\x4a\x49\x5f\xd3\x5c\xb2\x41\x73\xe9\x06\xcd\x79\xfb\x73\x49\x69\x73\xb1\x5c\x05\xad\xcd\x23\x9d\x26\x9e\xbc\x13\x23\x80\x77\x3e\xa3\x18\x84\x58\x3c\x87\x1c\x2e\xa5\xd8\x3b\x96\x52\x8f\x33\x56\x02\xaf\xf8\x6b\xe4\x5c\x25\x09\x7b\x95\x0c\x3c\x6e\xc8\xc0\x63\x29\x03\x17\x8d\xf5\x99\x36\x46\x9a\xca\xb5\x2a\x4f\x0d\xa8\x22\x7b\x48\xb3\x09\xcd\xc5\x93\xfc\x21\x1f\xcd\x13\xe4\xc9\x67\xf9\x20\xfe\x02\x3d\x5b\xf0\x95\x78\x92\x3f\x40\x08\x3e\xf2\x29\x1e\xcf\xb6\x9c\x80\x55\x4c\x74\x8b\x2b\xef\xc1\x70\xf4\x4e\xcd\xa2\x68\x4e\xc8\x79\x58\x08\x7a\x72\xb5\xa8\x1b\x0a\x75\xf1\xaa\x6e\x5c\x80\x8c\x20\x21\x62\xe2\x2d\xe7\x68\xf4\x9c\xb2\xd5\xc6\x49\x1a\x6f\x1e\xa2\x19\x23\x8d\x3a\x48\xb3\x4f\xce\x38\xc6\xb0\x47\xd7\x6b\xad\x15\x13\x42\x68\x81\x47\xdf\x05\x0f\x76\x36\x45\x19\x65\x44\xc9\xf4\xcd\x3c\x2c\x1d\xfb\xb3\x74\x27\xdf\x23\x24\xed\x76\x95\x4b\x6e\x8e\xfb\xe3\x6c\xb1\x42\x58\xf4\x52\xe7\xac\xeb\x67\x29\x49\x8a\x02\x31\x7d\x9d\x0f\x62\xce\x59\xeb\x60\x96\x5c\x53\xd0\x6c\xbe\x88\xc7\x14\xab\x4b\x52\x4a\xb2\x9f\x66\xec\x4c\xa0\xc8\x46\x1f\xfb\xb3\xe0\x5b\xfb\xe4\xaa\x2f\x60\xbe\x15\xfa\x15\xa2\xd0\xea\x4a\x8e\x58\x7f\x9e\x8d\xe3\xf9\x68\xeb\x50\x6f\xeb\xb2\x74\x51\x66\xb2\xdb\xea\x3c\x52\x9e\xef\x2d\xb5\xea\x89\x74\xa0\x85\x53\xca\x0f\x39\x67\xc9\xc9\x92\xd3\x17\x6f\x10\xed\x4b\xfc\x81\xaa\x56\x31\x26\x84\xa0\x9c\x2c\xc5\x64\x2a\xd5\x21\x26\x72\xdc\x72\x42\x48\x32\xca\x02\x94\x10\xb1\x7f\x72\x79\x31\x62\x69\x02\x88\x2b\x99\xf1\x2a\xc0\x45\xb1\x61\xb8\xfc\x0b\x7a\x24\xb6\xaf\x3f\xa5\x07\x52\xec\xc5\x88\x41\x02\x3f\x29\x4a\xea\x88\xa9\xeb\x77\x1c\x49\x1c\x81\xd1\xae\x5a\xa6\x6b\xab\x78\xfd\x85\x83\x74\x53\x38\x06\x55\x69\x2d\xb9\x86\x76\x08\x73\x3a\x9d\xad\x6b\xe6\x26\x04\x52\x32\x10\x42\x48\x66\x8d\xef\x28\x09\x12\x3d\xa6\xec\xca\xc9\xfe\x42\x14\x10\xbd\x69\x93\x6a\xb6\xca\x95\x2b\x57\x59\xeb\xf2\x2d\x67\x52\x9a\x56\x37\x4f\xc7\x35\x79\x69\xa6\x29\xad\x21\x88\x09\xe9\x98\xf5\x8f\xa5\xd6\xb7\x63\x1d\x5d\xdb\x8b\x5b\x17\xd5\x07\xd6\xed\x76\xf9\x8d\x93\x75\x75\x4f\x6a\x0b\x4f\xd9\x69\x03\x8f\x92\x96\x69\x2e\x2d\x04\xf6\x95\x1e\xf5\x32\x21\x5b\xf2\x97\x19\xe8\x89\x66\x8d\xf2\x40\x38\xc1\xdd\x6e\xab\x93\x84\x6d\x22\x57\xea\xe2\x95\x94\x02\x5c\x0c\x5a\x51\x48\x0b\x1c\x06\x56\x5d\xb7\x51\x83\x48\x38\x24\x45\xbb\xb7\xc6\xbf\xa6\x0b\xa2\xe4\x0d\x50\xc6\x48\x13\x99\xd4\x96\x5b\xe9\xbc\xb1\x11\x20\xea\x10\xc1\x8c\x3e\xf6\x4f\xab\xdd\xc0\x30\x90\x4a\xf1\x36\xdb\x42\xdb\x90\x5c\xc1\x24\x2d\xed\x47\x40\xc1\xd6\xbe\x87\xae\xd2\xea\x61\x4b\xbd\xda\x72\xcb\xab\xe5\xc6\x2a\x0e\x2a\x98\x27\x23\x31\x24\x24\x2f\x47\x4b\xec\xa3\x1d\x9a\x4e\x74\x73\x82\x4f\xde\x92\xd9\x9b\xdb\x2f\x4c\x5d\xd9\xeb\x72\x1c\x21\x83\x78\x4b\xbf\xf3\xad\xfd\x2e\xb7\x0c\x98\xcb\x5d\xa0\x3e\xe2\x4b\x73\xa8\xb4\x6d\x58\xe6\x64\xb9\x0d\xb4\x18\x53\x42\xe6\x6a\x4c\xe4\x60\x74\xbb\x73\xc9\x94\xe2\x00\x65\x64\x2e\x2f\xa0\x89\xdd\x65\x69\xa8\xa8\xdc\x3c\xaa\x51\xe1\x18\xe3\x4d\x61\xaa\x66\xe0\x83\x98\x94\x15\x38\xe4\x44\x8e\x6b\xc7\xd9\x36\x14\x4b\x63\xe4\x52\xd8\xf7\xb3\x14\xc6\xda\xfc\xb7\xd4\x66\xaa\x38\x1a\xa9\x34\xd1\xb7\x90\xd8\xbd\xce\xb3\x64\xb2\xeb\xed\xcc\xd5\xb4\x26\x84\x90\xf1\x7a\xad\xee\xe7\xcc\x6b\x92\x91\x90\xb8\xc7\x18\x04\x4c\x92\x16\x26\xf4\x44\x32\x01\x99\x97\xfb\xe6\x93\x78\x15\xd3\xdf\x3a\x93\xa6\xbc\x18\xe9\xd8\x1a\x74\x4d\x81\x62\xa0\x99\x19\x67\xae\x25\xd6\x26\x0d\x4a\x56\xac\xd7\xea\xe6\x8e\x50\xd9\x12\xcb\xf1\xd6\x8b\xf5\xea\xad\x21\xb5\xb7\x86\x54\x6c\x0d\xe9\x8d\xb6\x86\xf4\x0b\xb7\x86\x36\x08\x5b\x36\xd6\xba\x13\xa3\xbc\xc8\x79\x1d\xcf\xcc\xf6\x24\x05\x8b\x79\x4f\x48\xd6\xe0\x99\xd6\x3d\x9d\xf2\x75\x5a\xb3\x13\xe6\x94\x57\xeb\x06\xb8\x50\x6d\xf5\x74\x64\xc0\x30\x86\xd4\xb0\xcf\xac\x62\x9f\x59\x21\x61\x9b\x53\xe6\x4e\x27\x10\x0c\x17\x38\xbd\xe0\x6d\x92\x8f\xd5\xf1\x8e\x28\xd3\x69\x93\x99\xe9\x35\xb2\x97\x56\x35\xb4\x18\xa9\x40\xd2\x0b\xfe\x30\x4b\x39\x4d\x2b\x3b\x79\xa7\x13\xf0\xa2\x40\x66\xc1\xaa\xe6\x04\x99\xdf\x40\x22\xb3\xe1\xd1\xa2\x40\xe6\x52\x64\xa7\x13\x50\x21\x87\xe2\x02\x14\xa3\x69\x51\xa0\x25\x00\x43\xb8\xaa\x54\x07\x10\xad\x14\xe1\x8d\xae\xc8\x2f\x4a\x8f\x7c\x91\x4d\x68\xc3\x59\x4d\x56\xb3\xec\xe8\x42\xe9\x75\xd8\x1e\x21\xd4\x1c\x42\xf1\x6e\x97\xeb\x96\x1e\xce\x92\xf9\x44\x8d\x4c\x81\x95\xab\x2c\x2d\xf4\x01\xd0\x95\x6a\x64\x32\x55\x0b\x05\x5a\x16\xc9\xa5\x9d\xf1\x68\x43\xab\x94\xc0\xf5\x25\xbf\xa4\x79\xd7\x53\x5d\x13\x55\x9e\x7c\xfa\x8c\xc2\xa0\xbd\x9b\x2a\x5e\x66\xb3\xf3\xc2\x1e\x43\xc9\x53\x4b\x7f\x85\x76\xc1\xa2\x9d\x3a\x12\x8b\x81\x66\x24\x51\x28\xca\x13\x95\x3d\x42\x18\xae\xdf\x92\x44\x29\x61\x24\x2b\xbd\xe5\x62\x79\x8b\x30\x16\x98\xa7\x61\x6c\xbb\xc3\xa2\x94\xa4\xc6\x5f\x50\x69\xc4\x63\x8a\x62\x30\x21\x7f\x0a\xdd\x8e\xe0\xab\xdb\xa4\xe5\x2d\x8c\x82\x6d\x63\x14\x8d\x7e\x65\x56\xbf\x62\x92\x55\xfd\x8a\x85\xb4\x84\x2f\xa5\x2a\x1c\xe3\xd2\xa9\xb1\xba\x68\xd9\x74\xc1\xd5\xf7\x2e\x93\xe6\xb5\xd7\x64\x8a\x92\x70\x69\xf7\x5a\x3c\x92\x5c\x77\x71\x29\xb6\xcb\x6e\x37\x51\xc6\xbb\x1c\x17\x1a\x07\xa1\x67\xe3\x4a\xd1\x56\x26\x95\x6d\x66\xe0\xed\x46\x8b\x91\x35\xef\xd7\x30\x86\x36\x21\x10\x5f\x7e\x67\x86\x47\x99\x79\xc8\xb6\x44\xbf\x45\x53\x50\x2d\xdd\x49\x1c\x0e\x57\xc0\xe3\xa2\x9b\x5c\x72\x91\xfa\x3a\xe0\xba\x44\x51\x99\x91\xfe\x05\xdd\x7f\x50\xa1\xab\xb1\xf8\xc3\x23\xd0\x02\xf2\xca\x41\xd0\x85\x0a\x65\x3a\xfb\x43\x63\xb0\xe1\x7c\xfb\x25\x5b\x6c\x6b\x17\x04\x4e\x02\xfd\x6d\xd8\x4b\x3b\x1f\xd0\x96\xd8\x3e\xd2\x37\x4e\x1d\x3c\x12\x26\xb9\x78\x42\x98\x34\xde\xd5\x7d\x87\x5f\xb1\xec\x2c\xc9\x69\x85\x7b\x06\xb1\x91\x8a\xf4\x55\x85\x58\x2c\xbe\xcd\x6b\x0b\x1e\x21\xae\x9b\x74\xbb\x19\xc2\x45\xb1\xc3\x5a\x4f\x3f\x59\x75\xfa\x29\xdb\xcf\xd2\x1d\xa1\x27\xd1\x6e\x17\x21\x2e\x5d\xa6\x2b\x61\xef\xb8\xaf\x0e\x70\xcd\x52\x05\xde\x3f\xee\x97\xe7\xbb\xb5\xb7\x62\xa3\x92\xcf\x4b\xac\xce\x83\x09\x2f\x70\x21\x33\xb6\x1b\x19\x64\x7b\x58\xcd\x32\x9a\xaa\x9d\xdd\x42\x52\x11\xeb\xd3\x8b\x45\x96\xca\x3d\x14\x58\x81\x6e\xe3\x9b\xc0\xf3\xdd\x12\xa2\xef\xfe\x39\x30\x11\xa2\x3d\x32\xc4\x07\xc4\x1f\xd5\xb0\x0d\x86\x55\x5b\x43\xd9\x16\x1e\x0c\xaf\x6b\x4e\xd6\x78\xf5\xf4\x26\x5d\xa1\x3d\xda\x43\x88\x3b\x3e\xee\x51\x77\xa3\x23\xd9\x39\x65\xf9\x2c\xcb\x34\x68\xbf\xff\xb5\xe7\xdf\xfd\xdb\x4d\xfa\xe3\xba\x36\x64\x87\x63\xc7\xff\xd3\x60\x9b\xb1\xf2\x47\x0d\xec\x03\x44\x5d\x32\xc4\x8d\x86\x87\x9b\x23\xb6\xa5\x6d\x29\x8b\x70\x4a\x86\x3d\x33\x82\x8c\x12\x64\x23\x54\x09\xef\x2a\xb2\x66\x9e\xa4\xc8\x1f\x20\xae\x4f\x5f\xe2\x0b\xe4\x4b\x65\xab\x87\xd8\x80\x70\x8a\x6d\xab\x82\x25\x62\xf6\xaa\x39\x05\xdf\xeb\xb9\x2e\xd5\xe1\x3c\x05\x3c\x94\xba\x14\x0f\x18\xae\x2c\x01\xf1\xd9\x62\x9e\xf0\xe5\xa4\x35\xa5\xbb\xc4\xaa\xc7\x29\x2e\x20\xe9\x2f\x28\x4b\xb2\x09\xb1\x6d\x0e\x76\x31\x51\xa6\x40\x3e\xf4\x1b\x34\xf9\xe7\x74\xcb\x77\x6b\x1d\x73\x7d\xaf\xa7\xe2\xf5\xd9\x9d\xa3\x4e\xfa\x9f\xd8\x39\x84\x04\x59\x50\xd7\xc7\x07\xde\xa8\x39\x7f\x6d\xb3\x17\x0c\x37\x47\xa3\x5e\xce\x91\xe5\x2c\xe2\xfc\x8b\xc6\x42\x1d\x2e\x49\xc7\xa8\x8d\x73\xa4\xe1\x5d\x6f\x73\x17\xdc\xe0\x48\x62\x99\xd1\x6a\x71\x51\xb5\xa4\x0a\x6b\xa4\x52\xda\xb8\x16\xb6\xbf\x87\x9a\x4e\x4a\xd8\xf2\x4f\x92\x57\x68\xf6\xe4\x71\x4b\xa5\x54\x54\xd7\x65\xa8\x3c\x09\x23\x8f\x85\xf4\x4e\x2b\x1f\xa5\x76\x97\x93\x72\xc3\x68\x0b\x53\xd0\xb2\x55\xe3\xcb\x9f\xcd\x6e\x5b\xe0\x02\xda\x81\x5a\x0e\xae\x1b\x02\x02\xb0\x1d\x6a\xfb\xcf\xfc\x32\x42\x5c\x39\x06\xc9\x9b\x57\xf2\x54\x51\xfa\x9a\x7f\x8f\x30\x88\x1e\x53\x5c\xf5\x87\x96\xd1\x6b\xa4\x71\x41\xaa\x6a\x1b\x17\x51\xfe\x9c\x93\x47\x73\xee\xd8\xed\xaa\xb3\x46\x2e\xcf\x1a\xd9\x7a\x9d\x52\x79\x04\xd9\x38\xd7\xde\x3c\x2d\x34\xce\x3e\x09\x25\xa1\xc0\x36\x82\x8c\x6e\x73\x11\x6b\xf1\x48\x53\xd1\x71\xd2\x6d\xae\x61\x89\xbe\x46\x95\xc8\x3b\x82\xca\x1f\xec\x7d\xb7\xcb\x36\xae\x0b\x2a\xf4\xc2\x90\x46\x11\x24\xa2\x1b\x4e\x8a\x6b\x1a\x99\x89\x3d\x51\x35\x7f\x4d\x7c\x84\x78\xcc\x93\xf3\xf6\xeb\xc2\xd6\x05\x67\xcb\x11\x78\xb3\xe0\xcf\x5f\x7a\x15\x74\x88\xeb\x26\xe6\xc2\x32\x9e\x58\xda\xae\xe8\xac\xd4\xc1\x6a\x24\x96\xe0\xa6\xaf\x99\x12\x88\xfb\x39\xe5\x2a\x82\x65\x75\xc1\x4d\x9e\xd8\xf7\x93\x5c\x9d\xdc\x53\x6c\x34\x3b\xed\xb6\x6a\x47\x7b\xb4\xef\xc2\x19\x37\x56\x05\x33\x03\x2a\x14\xe2\x2a\x32\x63\xfd\x33\x97\x21\x86\xb2\x08\x32\xa1\xe7\xa5\xb8\x30\x8d\xd3\x92\x3a\x73\x31\xef\x54\x97\xcf\x81\x86\x79\x64\xb9\x1b\x26\x37\xb9\x5b\x99\xc0\x2c\xce\x5b\x58\x53\xe7\x56\xc7\xa1\xc6\xf0\x50\xc0\x29\xdd\x6a\xc8\x09\x65\xd1\xa8\x80\x9c\x36\x23\xf0\x6d\x96\xd2\x9e\x63\x9b\x76\x93\x52\x33\x90\xe5\x4a\x0b\x99\xc1\xa0\x74\x26\x94\xb0\x78\x54\x80\xbc\x9e\xd1\xea\x78\x60\xea\xe0\xce\x2d\x79\xa2\x1c\x7a\x51\xbd\xba\x40\xf6\x03\x5d\xe5\x9b\x77\x05\x75\xac\x17\x89\x49\x03\x0c\x97\x60\xf4\x55\x56\xae\x75\x6b\xbf\x5a\xe0\xb4\x50\x5a\xf5\x1f\x81\xaa\xfa\x66\x83\xa4\x29\x67\xc9\x1f\x81\x79\xf9\x81\xae\x82\x0a\x5d\xad\xf9\x9b\x51\xb4\x9b\x92\xae\x08\x1b\xed\x78\xd7\x34\xe3\x54\x93\x25\xd0\x95\x1e\x0c\x57\x4e\x8a\x50\xe0\xca\x79\xd1\xec\x67\xcf\xd7\x30\xf6\xbc\x42\xb9\x3d\xd8\x74\x71\x4d\x3f\xcd\xb0\x81\xd5\x4b\x65\xf9\x52\x9c\x35\xb6\xaf\x0e\xe6\x82\x2b\x28\xe3\xba\x75\xf5\x78\x27\xb7\x96\x47\x9b\x7d\x4c\x70\x8c\x7c\x83\x63\xe4\x9b\x1c\x43\xf0\x8b\x78\x32\x41\x35\x6e\x41\x8d\x70\x54\x8b\x76\xd4\xc2\x1c\x64\xf4\x23\x0d\x40\x70\xec\x1a\x6b\xb0\x3e\x72\xf9\x19\x52\xa1\xbe\x96\x69\x0b\x8a\x6d\x4b\x3c\x97\x4b\x7c\xd9\x9f\xc5\x39\xc4\x93\xc9\x95\xeb\x58\x9b\xc9\x23\xed\xf1\x59\xae\xd3\xa5\x36\x2c\xea\x65\xb7\xec\xcb\xbf\x86\xe2\x97\x32\xd4\x9e\xa2\xa0\xa5\xed\xcb\xb2\xb4\x5d\x59\x96\x72\xb0\xcc\x7d\x4e\xc5\x42\x4b\x94\x61\x4c\xe6\xfd\xb3\x78\x21\x5d\xa4\xe4\x3c\xc2\x4c\x9b\xab\x3a\x89\x10\xd9\xc6\x09\xef\x58\xbe\xe6\x93\x8a\x63\xc4\x42\x84\x21\x61\x04\x29\x99\xb5\x05\x3e\x24\x89\xd8\x0a\x63\xc2\xfb\xa7\x82\xeb\x4a\x33\xfd\x9e\xba\x7a\x93\xee\x11\x32\x2b\xf7\xc0\x1d\xae\xf9\x72\x4c\x98\x5a\x3d\x49\x35\xbe\x34\x44\xb1\xeb\xe3\xaf\xcc\xf4\x95\xd7\xfa\x2b\x69\x23\x8c\x82\xa9\x89\xbb\x07\x49\x7f\x92\x9d\xc5\x49\x5d\xb6\x91\x2d\x37\x4c\x1d\xd5\x8d\xfd\xf2\x12\xb2\x0c\x35\x2c\xfa\x55\x49\x2d\x90\x41\x2e\xe8\x67\x69\x47\xcb\xca\x0f\x96\xfb\x58\xde\x3a\x47\x99\x8a\x48\x97\x47\x58\x85\x29\x30\x5d\xd1\x1d\x49\x2b\x46\x95\x08\xd9\x96\xc5\xe9\x69\xab\x04\xdc\x16\x1b\x71\x6a\x42\x20\xca\x08\x88\x06\x4d\x01\x46\x5f\xf8\xbd\x69\x2c\x44\x5a\x06\x3c\x1c\x67\x8b\x15\xd9\xdc\xf1\x27\x08\xeb\x61\x43\x0c\x2b\x24\x11\xc5\xa6\x19\x94\x4a\x99\xbb\x9c\xe2\x45\xcd\x2c\x23\xea\x9a\x82\xea\x20\x4c\x59\x47\x14\x3c\xc8\x08\x53\x00\x21\x26\xa1\x07\x7e\x04\x39\xd9\xf3\x4d\xe0\x39\x18\x93\xfe\xdd\x8a\x78\xa6\xa5\xa5\x25\x41\xc6\x24\x0c\x53\x12\x87\x7e\x74\x10\x87\x5e\x24\xbd\xf7\xa6\xae\x17\xc1\x44\xbc\x74\xa7\xd1\x0e\x25\x68\xe2\xce\xf0\xc0\xd2\x78\x98\xbb\x74\x86\xbd\x39\x86\x5c\xba\x3d\xc9\x2f\xd3\x79\x96\x31\x19\x97\x71\xe6\xc8\x1a\x2e\xed\x21\xe6\x2e\x31\xee\x8d\x81\x13\xda\x43\xbe\xbb\x54\x35\x66\xaa\x06\xcb\x96\xe9\x04\xcd\x30\x70\xfb\x99\x6b\xb3\xfe\xa2\x3a\x65\x93\xbd\xc3\x62\xe0\x6a\xf1\x0d\xaa\xb9\x9d\x39\xb4\xc7\x2b\x9e\x9f\xa1\xe9\x68\x51\x85\x17\x0b\x16\x25\xad\xeb\xcd\x92\x99\xf1\x04\xd6\x46\xcc\x5b\x27\x5a\xe8\x74\x30\x45\x18\x07\x89\x20\x13\xd6\xa4\xb6\xab\xea\xc6\x24\x74\x64\x6c\x6b\x87\x86\x7e\x14\x29\x30\x71\x45\x73\x1a\xd8\x6b\x31\x08\xad\x10\x1b\xf5\x73\xb2\xe7\x09\x20\xa2\xe6\x49\x9c\x4e\x3e\x25\x13\x3e\x6b\xa1\x3c\x5e\xc8\xbb\x11\x74\xd1\xf2\x8d\xca\x66\xb7\xb6\xb8\xd1\x87\x9c\xec\xed\x51\x85\xb9\xe0\xa0\xfd\x45\x3c\x99\x24\xe9\xe9\xcd\x2a\x2f\xc9\xbc\xd2\x9a\x3d\x28\x5d\x4e\x7d\x79\x50\x2d\x81\x2e\x2d\xa0\x4f\xd3\xf4\xa6\x91\x43\x97\x5f\x02\xf7\xe5\x92\xdf\x14\xee\xb5\xf8\xce\x05\xdc\x78\x9e\x9c\xde\x90\x7e\xc6\xd7\x01\x1c\x0b\x80\x5b\x58\xc8\xa2\x62\x21\x09\xc2\x86\x89\xc4\x58\xaf\x9b\x1c\xd7\x46\x0e\x2d\x71\xad\xc7\x68\x8e\x15\xa6\x68\x2c\x74\x0f\x64\xdd\x4b\x38\x43\x1b\xb6\x76\x65\x3f\xd3\x47\x68\x12\xa1\x52\x70\x2d\x27\x9d\xd7\xe0\x9b\x8b\x32\xbc\x86\xc5\xc6\x5b\x55\x96\x6f\xeb\x23\x45\x0c\xc9\xf3\xd5\x02\x89\xee\xd6\x3a\xe4\x63\x15\x44\xe0\x5c\x5e\xb2\x81\x55\xdb\x90\xb7\x91\x78\x01\x6d\x04\xea\xd0\x02\x4e\x14\xbf\xac\xb8\xe3\xb1\x2d\xdd\x23\xee\x12\x69\x81\x1a\x6d\x1a\x4a\x10\x73\x29\x1e\xf0\x22\x58\x21\x6e\x8d\xe4\xa7\xea\x96\x89\x3a\xa6\x93\x0b\x36\x23\x32\x5a\x7d\x2c\xe5\x3a\xe9\x64\x5e\x26\x14\xd9\xcd\x0e\x92\x11\x4a\x08\x43\x99\x76\xbc\x46\x39\xc4\x18\x07\xf2\x5d\x02\x99\x7a\x17\x43\x8e\x5b\xaf\xf6\xc4\x92\x25\x61\xeb\xee\xe2\x63\x8d\x42\x29\x23\x94\x64\x56\x86\x86\x34\x2e\xe0\x58\xdd\x44\xac\x5f\xe0\xa8\x3d\x2e\x89\xeb\xcb\x9d\x5a\xa8\x6b\x07\x4a\xdf\xb0\xdc\x5c\xad\x10\x8e\xf2\x36\xfe\xc6\x5b\xbc\xef\x38\xcb\x83\x6c\x1f\xc7\xe1\x32\x22\x02\xcc\x32\x02\x1a\x2e\x1d\x3f\xc2\x90\x8b\x77\x09\xe2\xe2\x1d\x57\xef\x36\x0e\x37\x36\x3d\x58\x4f\x92\x9c\x8e\xb9\xbc\x4d\x04\x3e\x64\xd8\xf5\x4b\xaf\x8b\x90\x45\x28\x16\xff\xf1\xda\x88\x5c\xd4\x55\x36\xb3\x86\xa8\xf9\x51\x2e\x25\xaa\xff\x62\xac\xcc\x42\x8b\x6c\x1e\x73\xf1\xda\x7e\xc2\xb8\x3f\x9e\xc7\x67\x0b\x44\xf5\x5f\xfb\xb2\xe5\x9b\xcd\xab\x6f\x27\x10\x93\x13\xc8\xc9\x79\x3f\x86\x25\xd9\xf3\xad\x50\xd8\x56\xb4\xb3\x6a\x96\xb2\xf2\x9e\x47\x19\x70\x76\x38\x7a\x1c\x7c\x82\x94\x24\xea\x46\xf9\xac\x6a\x6f\x56\xed\x81\x28\x95\x0e\x31\x82\x90\x62\x58\x5e\xe9\x61\x60\xdf\x48\x53\x99\x51\x18\x71\xd8\xe6\xe0\xdb\x19\xac\xe4\x05\x74\x7a\x9f\xb0\x91\x1f\xc8\x5b\x4d\x45\x81\x28\x0e\xa8\x20\x4c\x2c\x73\x0d\x98\xad\xb8\x9f\xa4\xe7\xb4\x35\xe5\x00\x4a\xd6\x6b\x49\xd7\x31\x64\x70\xfc\x57\x20\xe9\x8d\xb8\x40\xd2\x1f\xb1\x12\x49\x8e\x03\x2e\x51\xa4\xb8\x80\xd9\x17\xed\xf6\x19\x19\x9b\x2b\xb9\xa7\x18\xe6\x82\x3f\x67\xd5\x7e\x3d\xfb\xb2\xcd\xbf\x92\x9f\xe7\x8d\x8d\x7f\x76\xed\xc6\x5f\xd5\x15\x74\x44\x05\x04\x51\x4d\xd2\xdf\x4d\x77\x48\xb1\x71\xcf\xf5\x5e\x38\xb3\x29\xfa\xa6\x3b\xbf\xae\x9e\x17\xb2\x79\x31\x33\x2f\x09\x43\x77\x31\x1c\xb6\xc6\x31\x90\xd7\x3e\x05\xbf\x8b\x09\x0d\xab\x1c\x55\x82\xff\x95\x6b\x99\x27\xe3\x0f\x6f\x38\x5d\x60\x49\xb4\xc6\xc8\xe7\x7b\x01\xc7\x3b\x3a\xc7\x41\x75\xad\xf0\x65\x5f\x46\x6f\xe1\x6f\x16\x74\x9c\x4c\x13\xca\x70\x19\xfb\xa1\x03\x53\xe9\x97\xa3\x62\x29\xc9\x04\x08\x9d\xbc\x13\x28\x6d\xb8\xdc\x71\xb7\x64\x3a\xab\x59\x03\xf7\x84\x7e\xc4\xe8\x38\xc9\x93\x2c\x5d\xaf\x55\x80\xfc\xa4\x42\xa1\xfc\xf6\x8a\xd1\x69\x72\x81\x91\x74\x9d\x5b\xaf\x91\x55\x8d\x24\xa5\xab\xa2\xc1\xd9\x94\x66\xb0\xc4\x32\x8b\x42\xa7\x13\xc8\x3f\x54\xff\x3d\xd5\x7f\x17\xfa\x2f\xeb\x04\x5f\x84\x8e\x24\x1e\x81\xcd\xb5\xbd\xdd\xc4\xd6\x45\x1d\x2a\xbd\xff\xd5\xf0\xd9\xc9\x1e\x3a\x53\x8d\xcf\x57\x5f\x88\xcf\x93\xe4\x82\x0a\x7c\x5a\x5a\x1b\xf6\x50\xe7\x2b\xbb\x3d\xc3\x39\x1a\x63\x26\xe4\x7d\x4b\x2d\xfe\x60\x5f\xc2\x50\xab\xb8\xba\x49\x2b\x08\x29\xdf\xb0\xb5\x33\xc2\xab\xc3\xeb\x1a\xd1\xe5\x18\x31\x41\x9b\x2c\x64\x16\x65\x1a\x6d\xd7\xf7\x02\xc1\x2c\x14\xd8\x27\x12\x19\x9b\xc4\xab\xd3\x92\x43\xc4\x11\xd6\x17\x63\x68\x3f\x4d\xc6\xb4\x76\xa6\xa2\xc9\x53\x3a\xf9\xfa\x9e\xd2\x6a\x12\xe9\xc8\x6f\x42\x31\x67\x55\xee\xb6\x25\xc9\xc2\x38\x82\x39\xc9\xac\x3b\x4f\xf3\x83\xa5\xbc\x00\xb2\x84\x25\x99\xc3\x9c\x24\x90\xc8\xec\x0e\x39\xe4\x82\xca\x50\x52\x5f\x4b\x4f\xd3\x31\xa3\x62\xdd\x62\xb4\x84\x39\x30\x8c\xef\x7b\xa5\x74\xac\xf4\xb3\xe5\x20\xc1\xbd\x04\xb4\x64\x3b\xa6\xc9\x1c\xcd\xd5\xab\x6b\x61\x05\x32\xf7\xa0\x01\x27\xab\x2e\x7b\x09\x1e\x94\xd0\x54\x0b\x73\xf5\xee\x5a\x70\x90\x08\xe4\x44\xa7\x5b\xf0\x13\x83\xb0\x89\x22\x47\x59\x89\x46\x55\xd1\xc6\xa4\xaa\x57\x43\x46\x56\x04\x5a\x00\xb5\x03\xeb\x18\x4b\xe0\x1b\x74\x0c\xe7\xfd\x71\x65\x32\xdc\x26\x9d\x0a\x49\x42\x06\x70\x81\x0f\xb5\x8b\xbd\x0f\x2b\xe3\x65\x5d\x9e\xe4\x35\x79\xb3\x94\x40\xf4\x0e\xc9\xc1\x08\x23\x84\x37\x37\x13\x76\xa5\xdd\x42\xef\x4b\x4c\xec\x4b\xbc\x66\xb9\xd8\x2a\x59\x3f\xac\xb4\x07\x2a\x3b\xc0\x15\x13\x7f\xde\x7e\x26\x23\xe3\x32\xda\xa2\x1e\xae\x48\x35\x93\x91\x19\x25\x63\x4f\x4a\x52\x8d\x0f\x32\x49\xe8\xa9\x10\x54\x20\x91\xa1\x93\x32\xc8\x24\xb9\x32\x0c\x32\xd4\x22\xd7\xb3\x92\x89\xe7\x44\x3c\xcb\xb9\x8b\xc5\xd4\x54\x83\xf6\xba\x2e\x84\xab\xe9\x9c\x67\xa7\x88\x0f\x28\x6e\x13\xc6\x77\xcb\x12\x6c\xd0\x26\x95\xbf\xaa\x87\x4e\x3c\xf0\x5a\x60\x54\x8e\x12\xae\xd8\xc2\xaa\xc3\x57\x97\x82\xef\x32\x6c\x79\x13\xb1\x4d\xd7\x90\x7a\x15\x5d\xa3\x42\xe0\xbd\xb5\xb5\x26\xf9\x93\x24\x4d\xe4\x35\x91\x91\x83\x3a\x3e\xed\x38\x42\x8e\x3a\xf0\x84\x7c\x55\x55\x79\x64\x1f\x8d\x7b\x44\xb0\xa5\xf7\x01\x25\x44\x8d\xc6\x63\xe5\xe7\x41\x2f\xac\x38\x44\x7c\x8b\xc7\x4a\x05\xf3\x85\x2d\x2c\x35\x40\xcd\xb3\xd3\x40\xb5\xd3\xed\x9a\x17\xbe\xb7\x5e\x0f\xeb\xaf\x86\xeb\xb5\xb1\xf7\x88\xf1\xa6\x96\x52\xc2\x37\xa7\x83\xe3\x01\x2d\xac\x89\x78\xda\x2a\xe8\x95\x53\x40\x91\x5b\xc3\xf7\x99\xb5\x42\x5f\xc3\xab\x92\x7e\x43\x1f\x7c\x4f\x66\x86\x31\x3b\x01\x08\x06\x0b\x09\x79\x81\x7c\x0f\x43\x46\x1e\x89\xbf\x15\x45\xc5\x56\xb8\x60\xf2\x42\xdd\xff\x7d\x24\xfe\x70\x84\x43\x2f\x92\xfc\x24\x21\x4f\x51\x22\x3e\x3c\xd5\xbc\xa2\x64\x06\x27\x71\x7e\x43\x21\x89\x11\x87\x42\x2c\xa4\x24\x26\x36\x84\x2f\x91\x35\x55\x7c\x7e\x51\x95\xa3\x72\xef\xd9\xdc\xd2\xe4\x1d\x65\x24\x14\xb3\x5c\xec\x5f\x73\x92\x87\x79\xb5\x83\xed\xa3\x98\xcc\x0f\x96\xb8\xdb\x45\x93\x72\xcf\x98\xa8\x8d\x47\x86\x4a\x82\x09\x49\x54\xe6\x9a\x04\xcd\x31\x9c\x11\x6b\xcb\x73\x28\x9c\x93\x50\x45\x6b\x44\xec\x2b\x1f\x77\xbb\x0b\x77\x72\x70\x26\x6d\xbb\x13\xdb\x42\x37\x11\x8a\xe3\xc2\x7e\xb3\xc0\x8e\x0f\x4b\x93\x19\x63\x7f\x72\xb0\x90\x37\x7d\xc5\xc3\x94\xf8\x30\x26\x19\x9a\xe0\xfd\xa9\xbc\x70\x3d\x55\xa7\xf7\x68\x46\xc6\xbd\x29\x3e\x58\xaa\xd8\x9e\xb3\xfb\x73\xac\xe4\x8e\x73\x65\xd7\x9d\xe1\xa2\xa8\x0e\x09\xea\x10\x99\x5b\xc1\xbc\x4f\xfc\x7d\xd7\xfd\x52\xa0\xe7\xa4\x29\x0f\x4c\x60\x51\x59\x64\x16\xee\x04\xce\xb0\x32\x37\x66\xd5\xfd\x92\xd1\xb9\x65\x54\x3c\xdf\x26\x21\x70\xa1\xfe\x97\x47\x20\xa9\xf4\x57\x97\x4b\x8b\x8d\x3a\x7d\x8f\x76\x82\x0e\x74\x30\xb4\xf8\xfa\xa9\xa2\x1b\x62\x50\x8a\x05\xa9\x13\xe2\x0f\xbc\xca\xa0\xaf\x85\xe5\x6e\x17\xf1\x52\xb6\x88\x6d\xa7\x14\xd6\xe3\x03\x4d\x45\xa5\xa1\xb7\x55\x7b\xd2\x32\xd5\x20\x43\xd6\x84\x4a\xab\x42\x75\x99\xab\xc7\x0e\x98\xdb\xbf\x2b\x5a\xeb\x09\x6e\xce\x0f\x48\x3c\x92\x37\x6d\x3b\x9d\x62\x53\xf6\xa9\x94\x6d\xf4\x5c\x8a\x48\x97\x92\xef\xb7\x9d\xcf\xe8\x56\xd5\xbe\xa0\x5a\x2d\x40\xec\x0a\x57\x14\x96\x9b\x86\x2e\x5b\x60\xb9\x5a\xae\xd8\xb0\x9f\x21\x2c\x97\xb0\xbc\x29\x65\x0b\x00\x4f\x36\xb6\x05\xd7\xe6\xfa\x1c\x07\x75\x46\x5a\x56\xfc\x5c\xf2\x25\x1f\x38\x79\x83\xea\x3a\xab\x31\x10\x91\x27\x88\x01\xc5\x2e\xe2\xe4\x89\xf2\xc7\xb4\xf6\xae\xb4\x2c\xf7\x04\xa5\xa2\x14\xc7\x03\x26\xf6\x2d\x66\x3b\x06\xd8\x77\x1a\x5a\xe0\xc1\x26\xb8\xdd\x27\x88\x3b\xac\x97\x82\x3f\x90\x97\x2c\x65\x08\x84\xba\xb4\xcc\x2b\x97\xbf\x1b\x9e\x92\x08\xdd\x5b\xda\xe5\x64\x96\xa8\xad\x12\xc6\x05\xe2\xf0\x19\xe1\x12\xbc\x34\x4c\x29\x41\xa3\x1c\xba\xef\xaa\xe2\xb5\xa2\xfd\xbb\xd8\x8e\x85\x54\x9d\x05\x03\x17\xff\x31\x79\x2a\x6c\x3b\x40\x28\xf3\x9a\x07\x35\x9a\x2f\x0d\x5b\x3b\x2a\xb3\x52\x65\xcb\x8a\x5d\x1f\xef\x3b\x4e\x22\x9d\x10\xc2\xc4\xf5\xa3\x8a\x01\x7c\x5c\xc6\x29\x4f\xe6\x14\x23\x0a\xc9\xa0\x0a\xd8\x90\xd5\x9c\x2c\xd4\x11\x97\xd2\x78\x94\x5f\x9a\x19\xcf\x70\xc3\x36\x25\xe6\x29\xaa\x2e\x93\x28\x71\xef\xf1\x05\xaf\x8d\x79\x5a\x5d\x14\x34\x77\xca\x2b\xcf\x94\xe4\xc0\x1b\x85\x2f\xe2\x17\xf0\x22\x7e\x11\x05\xa1\x10\x95\x15\xda\x81\xd4\xa9\x93\x03\xa3\xb7\x88\xd7\xe2\xa5\xa5\x61\x47\x05\x64\x1b\x7b\x0f\xbf\xfa\x88\xae\x14\xf3\x76\x6a\x07\xf0\x4c\x5f\x7b\xe0\xcd\x6b\x0f\x8a\xfd\x20\x26\x03\x66\x60\xa3\x09\x4a\x0b\xcd\x7a\x4d\x4d\x72\x98\x4a\xa0\x96\x39\x75\xd2\x7e\x6c\x42\xb6\x63\x90\x07\x28\xd9\x97\xd8\x50\xb8\x65\x07\x49\xe4\x4e\x59\x89\xbd\x59\x39\x8b\x79\x0b\x65\x32\xbb\xe0\x16\xea\x7d\x60\xcb\xc7\xda\x10\xc8\x45\x05\x3b\x86\x56\xe9\x3b\x00\x9c\xf8\x42\xe8\x80\x84\x84\xfd\xbb\x11\x64\x4d\xc9\x3f\x36\x41\x3b\x0e\xaa\xfb\x20\xd9\x26\xa5\x24\x40\xc1\x03\x86\xa3\x7a\xc0\x36\x73\xa8\xae\x92\x5e\xd7\x42\x97\xc8\xf3\x72\xb6\x8f\x13\x21\x50\x23\x19\xb2\xbb\xc7\x5d\x94\xba\x0c\xf7\x28\x1e\x20\xe6\xf8\xd5\x86\x65\x68\x30\xde\xa0\x87\xab\xf5\x0b\x47\x6a\xc7\x5c\xfc\xf5\x23\x19\x50\x2e\x08\x29\xf0\xa8\x80\xf8\x4b\x66\x8c\x11\x94\x55\x93\x66\x69\x10\x79\xc3\x96\x16\x5f\xbd\x46\x62\x92\xb5\xac\x91\xb8\xb6\x46\xe2\x03\x7f\x14\x52\x99\xb7\x35\x0a\xe2\xfb\x84\x8d\xc2\x24\x64\x32\x3f\xb8\x58\x40\x32\x95\x15\x24\x61\x1c\xc9\x4e\x6c\x21\x82\x77\x15\x11\xc8\xfe\x1a\x42\xc8\x24\x23\xb3\x33\xc9\xff\x5c\xf1\x28\x31\xff\x5c\x9f\xbc\x32\xe2\x37\x0e\xea\x93\x29\x4a\x0e\x48\x72\x05\xb7\xa0\x90\x68\x1a\x30\x8b\x7f\x63\xb6\xd2\x9b\x9c\x62\xa7\x82\xdb\x6f\xb7\xf6\xbb\xfe\xe6\x29\x77\x63\x2e\xaf\x6a\x86\x7f\x59\x33\xdc\x6e\xa6\x7d\x72\x4b\xfb\x6e\xc5\x00\x4b\x96\x11\xaa\x54\xf1\x52\x6d\x8c\xae\x38\x56\xff\x79\xcb\xaa\x4d\xa4\x6e\xfb\x91\x30\xe4\x61\xf8\x89\x30\x74\x0f\xc3\xaf\x32\xd8\xf4\xb7\xe4\x9e\xd7\xfb\x15\x7e\x10\x7f\xbe\x85\x5b\x64\x78\xa7\xf7\x03\xfc\x48\xbe\xee\xdd\x82\x5f\xc8\x6d\xaf\x77\x0b\x7e\x23\xb7\xef\xdd\xed\xdd\xaa\xe6\xf1\xfb\x46\x0e\xcf\x47\x31\x6f\x64\xec\xb7\x33\xfa\xd7\x1c\x69\x44\xd1\x91\x43\x03\xa7\xac\xe7\xd8\x15\xd5\x1d\x6e\x60\x55\xca\x3e\x98\xab\x51\x99\x96\x56\x09\x98\x91\xa9\x1e\x41\x98\x90\xa9\xd1\x78\x16\x64\x8e\x3a\xfd\xaf\x9e\x75\x84\x18\x3f\x47\x9d\xe0\xab\x37\x1d\x0c\x2b\xf1\xf3\xab\xa7\xc1\x57\xcf\x3b\x18\x4e\xd5\xc3\xee\x57\x8b\x0e\x86\x13\xf9\x10\xef\x7e\x35\xe9\x60\xf8\x24\x1f\x4e\xd4\xc3\x63\xf9\xf0\xa0\x83\xe1\xa5\xfc\xf5\x6b\x07\xc3\x21\x09\xc3\x1c\x7c\xf8\x35\x82\x30\x87\xbb\x70\xb7\xa7\x7e\xf9\x77\xc1\x37\xbf\x6f\x7b\x70\xdb\x93\xbf\x63\xf0\xe1\x5b\xf9\x57\x94\x54\xbf\x54\x49\xf5\x5b\x95\x14\xbf\x33\xf0\xe1\x07\xf9\xf7\x36\xdc\xee\xa9\x5f\xf7\xe0\x9e\xfe\xe5\x0f\xc1\x1f\xca\xdf\x09\xf8\x70\x4b\xfe\x1d\xc2\xb0\x27\x7e\x31\xf0\xe1\xc7\x08\x42\x0e\x3e\xfc\x22\xff\x0a\x08\xe2\x17\x05\x1f\x7e\x8b\x22\xdb\x54\x58\x89\x57\x39\x4a\xf1\x41\x3a\x5a\x04\xb1\xfa\x71\x16\x64\xea\xc7\x2a\x48\xd4\x8f\xd3\x80\xab\x1f\x4c\xfd\x39\x09\x3e\x05\x54\xfd\x7c\x1c\xbc\xc4\xb5\xb4\x16\x6f\x91\x9e\x2c\x4b\xc0\x2f\x65\x70\xd8\x0c\x97\x67\xd8\x57\x69\x80\x4d\x5c\x86\x07\xdc\xb6\x81\x2b\x2e\x90\x31\x8c\xda\x8e\x34\xc2\x61\x54\xe0\x3e\x4b\x4e\x67\x1c\x1d\x42\x8c\x77\x72\x42\xc8\xa1\x75\x42\xd1\x62\x4b\x67\x83\xdf\x20\x19\xfc\x26\xb3\xec\x12\x8a\x83\x5c\x94\x43\x39\x39\x0c\xe3\xc1\x61\x98\xbb\x7e\x14\x0e\xa3\x83\xc3\x30\x17\x7f\x07\xf1\x28\x77\xfd\x20\x97\x99\x1e\x81\x4b\xb5\x12\x07\x28\xab\xc4\xaa\xb6\x16\xd4\xfd\x65\x5f\x26\x67\xc5\x76\x56\x0c\x42\xb2\x11\x0f\xb8\x8e\x9f\x93\x95\xdf\xa6\xdb\x4f\x85\xaa\x25\x35\x53\x12\xe3\xf4\x4b\x14\xe7\x09\x2a\xcf\x68\x28\xc5\x38\x98\x20\xa5\xb5\x7d\x2f\x01\x35\x95\x68\xdb\xc0\x35\x41\x18\x12\x92\xaa\x03\xda\x34\x4c\x2d\x43\x70\x4c\xb2\x83\xa4\xdc\x66\xa4\x59\x2b\x81\x44\x9a\xb3\x98\xe0\x7e\x88\x91\xb7\x92\x6d\x67\xc0\x31\x1e\x69\xcf\x0d\x94\x40\xe6\xf8\x38\x08\xff\x2f\x65\xef\xda\xdc\xd6\x8d\x2c\x6a\x7f\xcf\xbf\x08\xdf\xb7\x54\x64\xbc\xcc\x74\x03\x8d\x46\x43\xd9\x3c\xae\x4c\xf6\x54\xcd\x9c\x9a\xd4\xe4\x4c\x32\xd9\x1f\xbc\x7d\x5c\xb8\x74\xdb\xdc\x91\x28\x9b\xa2\xe2\x78\x12\xfd\xf7\x53\x00\x75\xa1\x64\xda\xc9\x44\xa9\xc7\x22\x56\xe3\xba\xd6\x6a\x74\x53\x40\xe3\xc5\x94\x7b\xda\x9d\xa7\xb8\xbd\x6d\xca\x87\xdf\x25\xdf\x1b\xde\xb7\x7f\xfd\xf8\xe9\xf4\x6c\x68\x30\x7b\xe4\x53\x1d\xac\xd9\x6b\x77\xdf\x6a\xcf\x75\x34\xe4\xc8\x77\xd9\xbd\x5d\x6d\xfe\xed\x30\x45\x17\xa7\xd6\xcb\xfb\xa8\xd9\x6e\xd3\x51\x3d\xd4\x1b\x31\xd4\xe8\xf6\xa8\x6b\xa7\xf3\xb7\xcb\x9f\xa6\xb7\x4b\x9b\xde\x2e\xff\x67\x7a\xbb\xcc\xd3\xdb\x65\x99\xde\x2e\xdb\xf4\x76\xf9\x6a\x7a\xbb\xac\xd3\x8f\x63\xe1\xfa\xbe\xd3\xf7\xf3\xea\xdd\xed\x76\xea\x27\xe8\x0f\xd1\xa3\x14\xb7\x78\xb1\xb8\x9e\x36\x1f\xad\xf4\xe7\xe9\xed\xf2\xed\xf4\x76\x79\x35\xbd\x5d\x9e\x4d\x6f\x97\xe7\xd3\xdb\xe5\xc5\xf4\x76\xb9\x9d\xde\x2e\x37\xd3\x8f\xcb\xab\x5d\x7d\x5c\x67\x2f\x7d\xf9\xcf\x1f\xbe\xb9\xaf\xf3\x51\xca\xbe\xce\xf5\x51\xbb\x46\xf7\xb1\xe6\xe6\x5f\x2e\x7f\xe5\xeb\x2f\x5f\x7d\x78\xc8\xca\x5e\x6e\xf6\xff\xcd\x9e\xe8\x75\xb7\x18\x75\xb5\xd6\xf9\x0c\x2d\xc6\x42\x66\xd1\x40\x5d\xcd\xe0\x6a\x63\x17\x9d\x24\xe2\x58\x9a\xd4\xc0\x54\xd4\xc7\x58\x5d\xb4\xfe\x53\x6a\x69\xce\x61\x2c\x5a\x6d\xb6\x98\xf2\xbe\x14\x9f\x7c\x89\x29\xb8\x40\xd9\x73\x61\xad\x96\x6a\xd2\xa6\xec\x63\xf2\x49\x6a\x76\xc1\x95\x50\x8d\x4b\xd5\x56\x52\x95\xca\xcd\x63\x69\x49\x7d\xd2\x58\x72\x70\x1a\x6b\x49\x24\xe4\xab\x4f\xb9\x51\xa2\xdc\x98\x91\x8b\xc6\xc4\xa9\xc6\x42\x18\x7d\x0e\x01\x13\x55\xe5\x56\x5a\xd3\xa4\x8d\x67\x8b\xe9\xf2\xa6\x05\x28\xae\x34\x2e\x59\x1b\x27\xad\x59\xb1\x72\x2b\x6a\xca\x21\x40\xb3\x26\xcd\x57\x6b\x59\xb9\x58\x6b\x90\x9d\xc7\xec\x03\x45\xaa\x14\x39\x63\x4b\xa9\xd4\xa8\xa9\x42\x0c\x5c\x0a\x26\x4d\xb9\x4a\xef\x6b\xab\x2d\xb7\xac\x85\x7d\xff\x49\xdc\x7f\x4a\xeb\x3f\x2d\xf5\x9f\xd9\x62\xba\x3a\x1c\xc9\xac\x35\xaa\xec\xc7\xd3\xac\x94\x28\xfb\x51\x4d\xd2\x4c\xf2\x7e\x6c\xcd\x92\x24\xde\x8f\x70\x0d\x05\x5a\xd8\x8f\x73\xa5\x54\x13\xed\x47\xdb\x62\xe1\x76\x33\xe6\x35\xf6\x9f\xfd\xc8\xf7\xaa\xa5\xed\xc7\x3f\x69\xcb\x1a\x66\x8b\xe9\x4c\xf7\x61\x52\xeb\x5d\xe4\xc1\x9f\x97\x65\x71\xab\x13\xcf\xb4\x7f\xf0\x00\xd3\x32\x4c\x70\xf7\x57\xbf\x7d\xf2\x53\x47\x23\x1d\xbb\xa3\xfe\x89\xec\x4f\xb1\xe7\x8f\x61\x5a\xfa\xf0\xa8\x08\x81\x09\x97\x61\x5a\xca\x62\x31\xbd\xfe\x44\x11\x8e\xff\x48\x09\xed\xae\x84\xfd\xb5\xc5\xf4\xe6\xe1\xf3\x3e\xd7\xff\x80\xdf\x7e\xd3\xff\x85\x8b\x93\x93\xb9\x3e\x7d\xb4\xac\x6f\xbf\xbf\xed\x7e\x2a\xd3\xa7\xcb\x70\x67\x8b\x37\x5d\xbe\x5e\x79\x86\x2f\x74\x74\xa7\xe9\xf2\x72\x85\xcb\xf0\x14\x97\xe1\x8b\x5d\xff\x78\xb6\x5a\xca\xd3\x65\x1a\x1f\x9e\xcc\x0e\xd7\xbb\x9e\xeb\xe1\x5f\xf6\x6e\x56\x10\x3f\xfe\x9e\xea\x60\x87\xd2\xf3\x63\x4b\xa8\x76\x4f\x71\x3a\x68\xee\xf6\x8b\xdd\x62\xb1\xb8\x89\x74\xfb\xb3\xae\xce\x75\xde\x1f\x24\x22\xc0\x40\x44\xe0\x02\x53\x00\x0a\x91\x02\x84\x90\x88\x21\x86\x4c\x0c\x12\x2a\x31\xe4\xd0\x88\xa1\x04\xa5\x08\x8d\x81\x22\x28\x23\x45\x04\xf6\x14\x11\x99\x28\xa2\xe7\x40\x82\xc4\x91\x04\x99\x85\x04\x23\x27\x12\x14\xce\x24\x98\xb9\x92\x60\xe1\x46\x82\x95\x95\x04\x1b\x1b\x09\x5a\x04\x12\x07\x11\x49\x1c\x46\x4f\xe2\x7c\x24\x12\x47\x31\x90\xb8\x10\x99\xc4\x71\x8c\x24\x4e\xa2\x90\xb8\x14\x13\x45\x97\x63\xa6\xe8\xea\x60\x8b\x85\x62\x7f\xa7\x29\x3a\x8b\x8d\xd8\x43\x54\x62\xef\x06\x7d\x34\x62\x4f\x02\x14\x7c\x10\xa4\xe0\xe3\xa0\x88\x23\xf2\x49\x3c\x91\xcf\x83\x45\x88\xbc\x6f\x83\x2a\x81\x9c\xb7\x4e\x02\x61\x72\x84\xc2\x84\xe4\x24\x12\x12\x49\x24\xa0\x20\x42\x40\x2c\xe2\x8d\xe2\xa0\x48\xf2\x4a\x69\x30\x0f\x56\xc9\xbe\x51\x1b\x54\xc9\xbe\x92\x75\x06\x90\xe2\x4b\xc0\x41\x27\xc5\xe7\xe0\x07\x49\xaa\x4f\x21\x0c\xb2\x54\x2f\x41\x06\x93\x54\x1f\x43\x1e\x2c\xd2\x3c\x87\x3a\xd8\x55\x4d\x08\x3a\x68\xd2\x7c\xbf\x61\x9d\x28\xcd\x7b\x76\x83\x5e\x9a\x77\x4c\xa2\xde\x71\x10\xf5\xfd\xe6\x74\xc6\x41\x11\xf5\xc0\x69\x30\x8b\x3a\xe3\x32\x58\x45\x9d\x72\x1b\xd4\x41\x13\x75\x2d\xc2\x20\x8a\xba\x7a\x43\x37\xe8\x45\x5d\x89\x34\x18\x44\x5d\x8e\x3c\x18\x07\x45\xb4\xdf\xb9\xc1\x3c\xd8\x6b\x91\x58\x07\x7b\x2d\x31\xea\x60\xaf\x25\x4a\xaf\x85\x05\x07\xdd\x1d\x83\xf8\x41\x1a\xec\xb5\x90\xf0\x60\xaf\xc5\x8b\x0c\xa6\xc1\x2c\xcd\x39\x29\x83\x75\xb0\x49\x73\x28\x3a\x68\x9d\x09\x06\x51\xaa\x83\xe4\x0e\xe8\xa5\xa2\x25\x1a\x0c\x52\xd0\x12\x0f\xc6\x41\x19\x4c\x92\xd1\x52\x96\x8c\x9a\xca\x60\x95\x84\x9a\x9a\x24\xb4\xa4\x83\x26\x82\x96\x61\x10\x6f\x18\xd1\xb2\x93\xe8\x20\x7b\x61\x07\x99\x84\x1d\xe6\x20\xc1\x61\x66\x09\xae\x0f\x56\xa7\x08\x39\x9f\x93\x78\x47\x39\x8b\x77\x21\x17\x71\x2e\xe4\x2a\xce\x71\x6e\x82\x2e\x0e\x4a\x56\x01\x97\xb2\x45\x73\xb9\x40\x34\x57\x0b\x46\x75\xad\xb8\xd8\x9c\x16\xdf\xf5\x7b\xa1\x58\x3d\x96\x10\x8b\x77\x85\x63\xf6\x54\x38\x26\x1f\x4a\x8c\xc9\xc7\x22\x51\xbc\x94\x14\xa3\xcf\x25\x47\xf6\xa5\x94\x18\x7c\x2b\x35\x92\xb7\x52\xa3\x27\x28\x2d\x3a\x72\x45\x23\x12\x95\xfe\xce\x72\x85\xfe\xfe\x56\x64\xa5\x5c\x91\x1b\xd5\xea\xb8\x92\x56\xcf\x25\x40\x25\xce\xc1\xd5\xc0\x29\x50\x0d\x2c\x81\x2b\x73\x0c\x52\x23\x87\xde\x09\xa6\x50\xab\xb0\x0f\x5a\x13\x3b\x86\x9a\x19\xd8\xd7\x12\x8c\x43\x2d\x41\x39\xd6\x1a\x2a\xa7\xda\x42\xe1\x5a\x5b\xc8\xac\x55\x83\x44\xa8\x16\x62\xf4\x0d\x02\xc7\xd0\x20\x50\x8c\x0d\x83\x8f\xb9\x61\xc0\x58\x9b\x0b\x10\xad\x79\x52\xc1\xe6\xa9\x09\x35\xa2\x22\xdc\x42\x7f\x2f\x5b\x20\x91\xd2\x98\x58\xb4\x31\x85\x04\x2d\x92\x4f\xbe\x45\xc2\x14\x9a\x10\x24\x69\xe2\x35\x95\x96\x7c\x4d\xad\x25\x5f\x32\xb4\xec\x53\x76\x2d\xfb\x98\x43\x2b\x9e\xb3\xb4\xe2\x29\xe7\x56\xbd\xcb\xad\x55\x0f\x05\x5a\x73\x56\x5c\x6b\xae\x95\xd0\xd4\x95\x22\x4d\x5d\x2a\xb9\xa9\x93\xd2\x9a\x39\xae\xd0\xcc\x85\xea\x9a\x39\x5f\x83\x82\xc3\x2a\x0a\x0e\xba\xf9\x80\x56\x9b\x22\xb6\x06\x8a\x58\x9b\x53\x87\xa5\x05\x75\x98\xfb\xab\x81\xa9\x65\xf5\x98\x5a\x53\x8f\xd2\xac\x53\x9d\x12\x8a\x06\x25\x4c\x1a\x07\xb3\x06\xcc\x7d\x90\xb0\x9b\x22\x01\xab\xa1\x06\x6c\x46\xca\xa8\xc6\xca\x0e\x4c\x94\x1d\x5a\xd1\xe8\xbc\x35\x8d\x2e\xcc\x16\x8b\xe9\xfd\xdd\x6c\x00\xfd\x3f\x02\x04\x80\x00\x08\x08\x3c\x28\xe0\x00\x21\x81\x03\x07\x65\xb0\x81\x07\x0f\xd6\x89\x0e\x08\x08\x09\x02\x10\x32\x30\x04\x94\xc1\x0c\x11\x18\x2b\x08\x44\x54\x48\x10\x1d\x40\x06\x71\xbd\x8c\xe4\x08\x2a\x24\xc7\xd0\xed\xa3\x04\x0a\xc5\x15\x04\x28\xae\x21\x42\x75\x86\x0e\x9a\x47\xf4\xd0\x7c\x2f\x5b\x3d\x63\x00\xf5\x82\x0c\xe6\x0b\x0a\x98\x6f\x98\x10\xbc\x61\x46\x20\x87\x15\x81\x08\x1b\xf6\x59\x49\x11\x29\x39\x40\xa4\xe2\x10\x91\xd4\x39\xc4\x00\x8e\xd0\x05\xef\x02\xba\x10\x5c\x44\x17\xc4\x25\xc4\x90\x5d\x46\x0c\xd5\x55\xc4\x60\xbd\x7e\x46\x67\x88\xec\x3d\x22\x72\xf0\x1e\x81\xa3\x27\x04\x4e\x9e\x11\xb8\x78\x41\xe0\xea\x13\x18\xab\x2f\x60\x11\x7c\x03\x8b\xe8\x0d\x2c\x3a\x02\xb0\x48\xe4\xc0\x62\x20\x02\x8b\x4c\x01\x21\xc6\x3e\x5b\x46\xa1\x34\x98\x11\x62\xa2\x8a\x18\x33\x29\x62\xb7\x8a\xd1\xc5\x12\x10\x5d\xac\xc1\xa1\x8f\x35\x10\xfa\xd8\x42\x9f\x66\x5b\x88\x18\xa2\x86\x34\x98\x91\xa3\x86\x8a\x1c\x2d\x34\x8c\xd1\x82\xa1\x44\x63\x40\x11\x60\x87\x49\x80\x09\xb3\x00\x87\xc1\x88\x45\x80\x05\xab\x20\xe7\xc1\x82\x4d\x90\xdb\xa0\xa2\x0a\x46\x40\x13\x8c\x6e\xd0\x3b\x10\x8c\xc1\x61\x9f\xc0\x07\xc5\x39\xc1\x98\x9c\x13\x17\x8b\xf3\xe2\x62\x1d\xec\x9a\xd7\x09\xf4\x81\x94\x3e\x9c\x28\x7e\x68\x6d\x1a\x64\x17\x05\x45\x06\x93\x13\x41\x29\x2e\x49\xd7\xb6\x69\x68\xf6\x2c\x98\x60\x10\x5d\x11\x4c\xde\x15\x81\x44\xae\x0a\x24\x1e\x14\xd7\x04\x52\x1a\x2c\x4e\xa3\xa5\x3a\xa8\xce\xa2\x65\x18\xc4\x3e\xdb\x67\x3f\x18\x3c\x46\xcd\xec\x31\xb6\xae\x32\x63\xcb\xd9\xfb\xd8\x72\xf1\x3e\xd6\xdc\x3c\xc5\x9a\xd5\x53\x2c\x05\x7c\x88\xa5\xb8\x41\xef\x39\xe6\x12\x06\xa3\x8f\x31\x15\x19\xcc\x5e\xa2\x94\xea\xbb\xda\x6f\x3e\xc5\x58\xcc\xe7\x18\x2b\xf8\x1c\xb9\x3a\x5f\x62\xa8\xe4\x6b\x0c\x35\xf8\x1a\xa9\x46\xdf\xa2\xaf\xe2\x35\xfa\x9a\xbd\x46\x57\xab\xb7\x88\xb5\x11\x44\xac\x46\x10\xa1\xf5\x57\xc4\x9a\x23\xc7\x5d\x47\x79\xd6\x16\x88\xb8\x75\x5d\xc4\xb5\xc9\x60\x22\xee\x56\x7f\xf7\x15\x5a\x25\xe1\xd4\x94\x12\x4b\x33\xca\x2c\x0a\x54\xb9\x0f\x7c\x63\x56\x4f\xca\x41\x89\x8c\x49\x43\x00\x26\x8d\xc1\x71\x37\x5e\x3c\x3b\x4d\x81\xd8\x69\x0e\xcc\xa8\x25\x44\x06\xad\x41\x18\xb4\x85\x1c\x4c\x35\x94\xa0\x6a\xa1\x05\x35\x08\x16\xd4\x90\x21\x74\x45\xe5\x06\x29\x54\xf3\x1c\x42\x35\xe2\x38\x98\x42\xb5\xc0\xc3\xb3\xe2\x3a\xa8\xa1\x5a\x8c\x30\xe8\x42\x35\x89\x34\xc8\xa1\xf6\xc9\x32\x34\x4b\x31\x0d\x96\xd0\x2c\xc7\x5e\x57\x8e\xbd\xae\x2c\x18\xcc\x8a\xf8\xc1\xc0\x60\x45\x22\xa3\x55\x49\x83\x99\x9d\x75\xc7\xcd\x5b\x15\x65\xb2\x9a\x80\x83\xb5\xe4\x98\xad\x0f\x50\xb4\x96\x98\xc5\x5a\x12\x4e\xd6\x52\xe6\x6c\x2d\x15\x2e\xa6\xa9\x71\x35\x4d\xc6\xcd\x34\x23\xab\x69\xf6\x6c\xa6\x39\x44\x34\xcd\x31\x3a\xd3\x9c\xa2\x37\xcd\x39\x92\x69\xae\x91\x4d\xb3\xc6\x68\x5a\x20\x8a\x69\x71\x31\x9b\x16\x8a\xc5\xb4\x70\xac\xa6\x25\x46\x35\x2d\x29\x9a\x69\x29\x82\xa6\xa5\x89\x33\x2d\x26\x64\x5a\x51\x82\x69\x75\x12\x4d\x2b\x89\x98\x56\x96\x6c\x5a\x45\xaa\x69\xcd\x5d\x65\xd7\x2a\x66\x5a\x5b\x02\xeb\xce\x94\x33\x6d\x98\xc8\xb4\xf9\x14\x4c\x5b\x48\xd1\xb4\xc5\x94\x4c\x9b\xa4\x6c\xad\xe5\x54\xad\xb5\x9a\xd4\x5a\xd3\x0c\xd6\x14\x32\x5a\x53\x97\xbb\xe6\xf6\x39\x58\xd3\x90\x63\xd7\xe2\x39\x59\xd3\x94\xb3\x35\x2d\xb9\x5a\xed\x1e\xa9\x55\xd5\x02\x56\x0d\x8a\xb3\x6a\xae\x90\x55\xa3\xc2\xd6\xfd\x62\xb1\x6a\xb1\x24\xab\x96\x4a\xb1\x6a\xa5\x34\xab\xd6\x8a\xf5\xd9\xe0\xd5\x1f\x9b\x0d\xf2\x98\x07\xea\xa0\x82\x07\x87\x5d\x76\x3f\x1b\xf8\x9b\xd9\x20\x02\x03\x61\x82\x08\x01\x0b\x08\x04\x6c\x90\x80\xd1\x20\x43\x1c\xf3\x40\x1c\xf3\x80\x8c\x79\x40\xc6\x3c\x90\xc6\x3c\x90\xc6\x3c\x90\x3d\x60\x37\x94\x1c\x12\x14\x4f\x18\xa0\xf8\x88\x0c\xc5\x27\x14\xa8\xbe\x62\x82\xea\x15\x0b\x54\x42\xac\x50\xc9\xa3\x42\xa5\x80\x06\xb5\xfb\x13\x50\x29\x3b\x0f\x95\x6a\xaf\x87\xac\x1b\x1a\x01\x9d\x40\x09\xde\x25\x28\x21\xb8\x02\x25\x44\xd7\xa0\x84\xe4\x0c\x72\x28\x1e\x21\x87\xea\x1d\xe4\xa0\x9e\x20\x07\xf3\x0c\x89\xd1\x0f\xb5\xe4\x13\x24\xf6\xbe\x40\x62\xf2\x0d\x12\x07\xaf\x90\x98\x09\x20\x73\x24\x07\x99\x85\x68\x30\x40\xe6\x44\x11\x0a\x67\x4a\x83\x19\x2a\x17\xaa\x83\x0d\x1a\x57\xb2\xce\x80\xa0\x5c\x83\x03\xed\x66\x0a\x18\xb7\x10\x06\xbb\x7f\xd5\xb5\x7e\x67\x46\xec\xef\x1b\x3a\xd6\xd0\x06\x0d\x3d\x2b\xe3\xa0\x43\x62\x65\xc2\xc0\xca\x61\x30\x22\xb3\x72\x1a\xcc\x18\x59\xb9\xa2\xb0\x72\x1b\x34\x4c\xac\x11\x07\xbb\xe1\xa9\x91\x06\x03\x16\xd6\x18\xb1\x72\x8b\x32\x98\xb1\x71\x8b\x75\xb0\xa1\x72\x8b\x86\xca\x55\x00\xbb\x8f\xe0\x1c\x70\x15\x72\xc0\xa5\x5b\xb0\x5c\x24\x0e\x0e\x23\x55\xf2\x60\x75\x9e\x93\xb4\x41\x73\xc4\x29\x75\x67\x53\x92\x1b\xf4\x8e\x39\xa6\x30\x18\x5d\x64\x4e\x32\x98\x9d\x70\x48\xc5\x25\xa6\xd4\x06\xcd\x65\xf6\x19\x06\x9d\x2b\xec\xb2\x77\x95\xb1\x9b\x99\x0c\x99\x5d\x63\xc8\xe2\x34\x58\x4e\x4e\x83\xe6\xe2\x2c\x68\x6e\x1e\x42\x37\x9f\x20\xd4\x02\x1e\x43\x29\x38\x8c\x69\x3f\x48\xde\x87\x54\xd8\x53\x90\x12\x7d\x08\xb1\x24\x1f\x02\x97\xdc\x55\x5f\xe9\xde\x16\x95\xe6\x25\xf8\x62\x3e\x05\xd7\x75\x7f\xc0\x8a\x3e\x07\xa8\xde\xf7\x97\x8a\x7c\xb7\x79\xb9\x7b\x79\x35\x76\x8f\xaf\x76\x4f\xb0\xd4\x4c\x40\xb9\x16\x42\x4a\xb5\x92\x23\xa9\x4a\x7d\x02\x32\xea\x0a\x1f\x28\x50\x68\x8e\x98\xa8\x4f\x4b\xe4\x1b\x91\x90\x6b\x81\x32\x61\x8b\x54\xbc\x35\xa1\xea\xb5\x25\x6a\xbe\xb5\x4c\xea\x6b\x2b\x01\x7c\x69\x2d\xa0\xcf\x4d\x83\xf3\xd2\x2c\x78\x1f\x15\x42\xf0\xac\x18\xba\x39\xed\x42\xf4\xa4\x3e\x24\xef\x95\x42\xf6\xa8\x21\x54\x0f\xca\xa1\x39\xd3\x18\xd4\xa9\x0a\x83\x6b\x9a\x18\x5d\xe9\xd3\xa5\xcb\x5a\x98\x5c\xd2\xc2\xec\x44\x2b\x47\xc7\xda\x38\xb9\xa0\xca\xd9\x91\x5a\x9f\xee\xba\x09\xe9\xd0\x80\xcd\x81\x61\x44\x34\xc3\xe8\xb1\x99\x8b\x84\xd5\x7c\x64\x2c\xd6\x9d\xeb\x64\x14\x13\x8a\x85\x58\x30\x5a\xe8\xe6\xb9\x71\x54\x24\x63\x01\xf4\x16\xc5\xa1\xb3\x28\x84\x60\x22\x01\xcc\x44\x22\xa8\x89\x24\xa8\x96\xa4\x40\xb1\x24\x15\xb2\x25\x51\x48\x96\x13\x80\xf4\x9b\x0a\xd1\x72\x22\x88\x56\x12\x03\x5b\x49\x71\x30\x0d\x96\xc1\x06\xd1\x6a\xb2\xce\x8c\x20\x56\xb3\x87\x64\x35\x07\xc8\xd6\x5d\x8c\x6a\x35\x0b\x34\xab\x39\x83\x59\xcd\xb5\x9b\xde\x59\xd1\x59\x2d\x80\x64\xb5\x38\x64\xeb\xb7\x4d\xac\x14\xc6\x6c\x5d\xdd\x37\x2b\x25\xa3\x59\x29\xb5\x5b\xcf\x45\x9d\xb7\x5c\xc1\xb1\xe5\xea\x9c\x58\xae\xe4\xb2\xe5\xca\xae\x59\xaa\xd1\x99\xa5\x9a\xbc\xb3\x54\x8b\x0f\x26\xb5\xf9\x68\x52\xcd\x67\x8b\x0d\x7d\xb3\xd8\xfc\xfe\x35\x27\x6f\xdc\x22\xb1\x85\x96\x28\x59\x68\x85\xaa\x51\x6b\x64\x46\xfd\xde\x1a\xf5\xbb\x6a\x5e\x7d\xc8\xe6\x35\xf4\x99\x59\x99\xd1\x9c\x0a\x07\x73\x9a\x39\x19\x6a\xe5\x66\xa8\x2d\xa2\xa1\x5a\x0c\x86\x86\x31\x99\x33\x17\x9b\x39\x23\x71\xe6\x2d\x08\x9b\xb7\x3e\x2f\x91\x89\xa8\x05\x4b\xc9\x19\x5b\x4e\x6c\x62\x25\x65\x4b\x56\x53\xb3\x6c\x2d\xa3\x55\xb3\x4c\x7d\x36\x28\xf7\xb3\x41\x03\x91\x88\x00\x51\xa4\x1b\x5d\x92\x90\x21\x4a\xc6\x04\x2c\x15\x0b\xb0\x34\x6c\xd0\xfd\x71\x00\x16\xeb\xaa\x21\x81\x23\xe0\x84\x8e\x21\xa4\xae\x77\x43\x72\x2e\x43\x48\xde\x55\x08\x89\x9c\x42\x48\xc1\x19\x84\xc4\x1e\x21\xa4\xe8\xfd\x60\x00\x4a\xe2\x23\x50\x4a\x5e\x80\x52\xf6\x79\xb0\x02\xa5\xe2\x15\x28\x55\x6f\x9d\x84\x40\xa9\x91\x07\x9f\x94\x68\x90\xc1\x27\x23\x19\x4c\xd0\x33\x16\xf0\x19\xa9\x82\xcb\x48\x0a\x2e\xbb\x00\x83\x08\x2e\xfb\xe0\x07\x03\xb8\x4c\x81\x01\x33\x05\x19\x4c\x80\x39\x84\x32\x58\x01\x33\x07\xed\x64\x18\x44\x80\xee\x2a\x0f\xd2\x20\x0f\x46\x80\x2c\x9c\x06\xf3\x60\x1d\xd4\x41\xeb\xec\x83\x98\x25\x3a\xc0\x2c\x91\x06\xc3\x60\x1c\x94\xc1\xae\xe8\x24\x96\xc1\x06\x3e\x4b\xd4\x4e\x01\xa0\x2c\x82\x40\x39\x8a\x87\x90\xa3\xd0\x20\x03\x67\x96\x08\x31\xb3\x08\x48\x66\xc9\x90\x72\x90\x02\x39\x07\x69\x50\x72\x10\x85\x9a\x49\x0c\x5a\xee\x6e\x88\x66\x9f\x1c\x58\xf6\x89\xb0\x3b\x61\x01\x31\x63\x9f\xe8\x32\x26\x41\xca\x90\x12\x86\x64\x29\x23\x27\x4b\x15\x63\xd2\xd4\x50\x52\x4b\x8a\x29\xb5\x0c\x98\x53\xcd\x88\x25\x95\xec\xb0\xa5\xdc\x95\x4d\xca\x39\xa0\xa5\x94\xd9\x41\x92\x1c\x1d\xa6\x98\xc5\xb9\xc4\x39\x3b\x9f\x42\x2e\x8e\x12\xe5\xea\x38\x51\x6e\x2e\x26\x9f\xd5\x49\x72\x05\x5c\x4a\x58\xd0\xe5\x04\xc5\xb9\x22\x56\xbc\xab\xa2\x85\x9c\x4a\x2b\xc1\x99\xd4\xc2\x1e\xa4\x94\xe8\x51\x72\x11\xef\xa4\xdb\xe8\x5e\xa4\x14\xdf\xdd\xfa\xea\x83\xc4\xd2\x7c\x14\x2e\xea\x45\x42\xd7\xd9\x42\x5d\x67\x8b\xaf\xe8\x8b\xb8\xea\x7c\x15\xac\xde\x37\xe9\xc6\x82\x46\xab\x81\x20\x6a\x65\xc2\xd8\x6a\x24\x17\x6b\x15\xf2\xb1\xd4\x44\x14\x73\xcd\x14\x62\xd7\xe2\x1c\xbb\x16\x8f\x51\x6a\xa5\x14\x63\x6d\xd4\x7d\x00\xa5\x32\x4c\xe3\x1a\xa9\x01\xb5\xe8\x1b\x92\x46\xd7\x1c\x59\xc4\xe6\x03\x46\x6c\x14\x5c\x84\xd6\x15\xb4\xb5\x10\xa8\x2b\xd6\x10\xb8\xb5\x18\xb8\x5b\xfc\x21\x72\x69\x29\x08\xe7\x96\x43\x1e\x2c\x9c\x5a\x09\x95\xa5\xd5\xd0\x38\xb6\x16\x94\xb9\x69\x30\x0e\x4d\x19\x99\x9a\x71\xb7\xf2\x81\x3d\x7b\x45\xee\x56\xbe\xe3\xc0\xa8\x8e\x99\xbb\xab\xdc\xcd\xd1\x6e\xaf\xab\x06\xce\xa1\x69\xb7\xda\x9b\x0e\xab\x5d\x23\x6b\x28\x1a\xd9\x42\x56\x89\x10\x92\xa6\x88\x41\x34\x45\x17\xa2\xe6\x48\x21\x6a\x89\x21\xb0\x96\xc8\x21\x68\x8d\x31\x50\x37\x4d\x83\xd7\x16\x73\x70\xaa\xdd\x4f\x55\x8b\x75\x50\x03\x74\x75\x4b\x66\x20\x40\x6a\x28\x48\xcd\x50\x3c\x55\x73\x42\x54\xcc\x4b\x18\x8c\x94\x8d\x44\xa8\xbf\x9c\x89\xc4\x82\x14\x8a\x16\xa4\x12\x1b\x4b\xa3\x60\x2c\x46\x64\x31\xc1\x20\x92\xb7\x98\x3c\x39\x93\x44\x84\x26\xa9\x1b\x47\xa9\x9b\xee\x96\x92\x78\xed\x8f\x99\x57\xcb\xa9\xf8\x66\x39\x55\x5f\x2d\x27\xf5\xc5\x4a\xea\xba\xb6\x64\xf4\xc9\x4a\x76\x7e\xcc\x03\x83\xc1\xf7\x99\x81\x3d\xf7\x79\xc0\x07\xab\x39\x79\xb2\xe1\x21\x5a\xcb\x75\x50\xbd\xb3\x96\xcd\xa3\xb5\x82\x1e\xac\x15\xe7\xcc\x5a\xa1\xc1\xe0\xba\x27\x10\x5d\x33\xed\x0f\x94\x69\xc9\x83\xc5\x75\x6f\xa1\xb9\xee\x39\x68\x67\x05\x97\xac\x55\x37\xe8\x9d\x58\xab\xc1\x45\x6b\x95\x07\x65\x30\x77\x47\xb0\x16\xc7\x56\x6b\x73\xc1\x6a\xd5\xce\x06\x83\xce\x05\x2b\xcd\x3b\xb2\xd2\xc2\x60\x74\x64\xb9\xc9\x60\x76\x64\xa9\xd5\xc1\x9e\x57\x9a\x75\x2a\xba\x60\x51\xdd\x20\xb9\x30\xbe\xf9\x61\x63\x15\xc7\x16\x34\x0d\x16\x17\x8d\xb4\xb9\x68\x5e\xb5\xd3\xc0\xc5\x3e\x63\xb8\x68\x68\xdd\x3d\x45\x0b\x2e\xec\xbf\xd0\x30\xb0\xe4\x70\xb6\x38\x58\x3e\xfe\xf2\xe0\x2f\x14\x30\x56\x7d\x6d\x1e\x6c\xe4\x3c\x08\xc8\x31\x5f\x3f\xdd\x2d\xbe\x9c\x6f\x9f\xee\xee\x17\xbf\xcd\x37\xcf\x8e\xef\xfa\xbe\x58\x2c\x4e\x2f\x16\x1f\x5f\xf5\xf3\xe9\xc5\x70\xfb\x60\x00\xdb\xd5\x08\x07\x30\xad\x17\xa7\xcf\x77\xd3\x76\xbf\x56\xe6\x8f\xef\x0b\xdc\x8c\x7d\x81\xb7\xb1\x2b\xee\x77\x05\x5e\x6c\xff\xe8\xe2\xd0\xdd\x58\x54\xf4\x89\x25\x3a\x63\xf4\xee\xfe\x12\xdb\xdb\x78\xbb\x83\x76\x33\x56\x55\xad\x17\xd7\x37\x21\xb3\x2e\x6b\x3e\xd3\x3f\xe5\x4d\x3b\x16\x32\xeb\xcd\x7d\x68\xad\x21\xf7\xdd\xc5\x7a\x73\x34\xb6\xd6\xf9\x23\xc1\xbf\x36\xdd\xec\xd6\xbb\xf7\xc7\x64\xbf\x79\x24\xfb\xb7\xf5\x46\xf3\xf6\x98\xe4\x0f\x8f\x25\x2f\x5e\x1d\x13\xfb\xdb\x23\xb1\xbf\x6f\xdb\x7a\x93\xcf\x8e\x89\xb6\xc7\xed\xbc\x8d\x05\x73\x44\xf6\xf5\x07\x9d\x7f\x77\x4c\xec\x5f\x8f\xc4\xbe\x7f\xbb\x3d\x5a\xdc\x5f\x1e\xc9\xfd\x9f\x9b\xb5\x93\xc7\x64\xff\x74\x54\xf6\x5f\x47\x65\xff\xf9\x48\xf6\x87\xd7\x5b\xbd\x7c\x7d\x71\x76\xf4\x86\xfe\xd7\x63\xe1\xf5\xf9\xd1\x42\xb7\xfa\x48\xf0\x9f\xbb\x7a\x4c\x6e\xf3\x40\xee\xb5\x9e\xeb\x37\x79\xa7\xaf\x2e\xb6\xef\x11\x7e\x2f\x58\xdb\x43\x79\x07\xe5\x58\x86\xfc\x89\x0c\x47\x5b\x74\xf9\x89\x0c\xc7\xe4\xaf\x1e\x87\x8f\xdb\x6f\xd0\xfd\xe6\xaa\xe8\x6b\x3d\x5b\xff\xf2\x9f\x6a\xf9\xea\xec\xe8\x1d\xad\xc7\xb3\xfe\x23\xaf\x37\xe5\xf8\xb3\xf2\xe6\x78\x8e\xff\xca\xdb\xf3\x63\xe2\xf6\x91\xb6\x5d\x5c\x1c\x7d\xb8\x5f\x1f\x17\xff\x71\xbd\x5d\xb7\xf5\xe5\xb1\x1c\x3f\x1f\xcf\xf1\x6d\x7e\x75\x9e\x8f\xc9\xbf\x3f\x2e\xff\xd7\x8d\xe9\x76\x73\x71\x2c\xc7\xab\xe3\x39\xbe\x3b\xcb\x97\xc7\xab\x28\x8f\x9f\xbc\xef\xf5\xed\x55\x57\x26\xc7\x5f\xe8\x97\xfa\xef\x45\xf5\x7b\x14\x27\xea\x26\x36\xd4\xfa\xe8\x12\x94\xeb\xe9\x62\x85\x53\x5e\xb9\xe9\x72\xe5\xa7\xab\x15\x4d\x67\x2b\xd4\xa7\x7c\x3f\x09\xd5\x83\x95\x28\x23\x94\xe1\x88\x56\x30\xe2\x5e\x2d\xc3\xe2\xc9\x6c\x82\xc5\xec\x7e\x21\x9b\x1d\x95\x86\xe9\x5e\xfe\x50\xfa\xf5\x5d\x27\x3f\xbf\x89\xd6\x9f\x7f\x59\x5f\xde\x5f\x6f\x87\xab\x93\x9e\xbf\x98\xda\x3e\x50\xc1\x9b\xfd\x3f\xe7\x2b\x9e\x7e\x5e\xf1\xf4\x7e\xe5\xa7\x57\x2b\x5d\xad\x56\x17\xbf\xfd\xd6\xff\xb9\x7a\xf6\x14\x4f\x71\x2a\x23\xed\x6a\x9f\x96\x9f\xcd\x7e\x99\x9d\xce\xde\xcf\xa6\x97\x87\xa2\x97\xcf\xea\xa9\xdd\x77\xf6\xdd\xed\xca\xe0\xdb\x63\x43\xda\xb3\xdd\x7e\xb1\xd7\xed\xbf\xb7\x41\xc1\xa7\xed\xe2\xf4\x2e\xe4\xc3\xe2\xb4\x4d\x76\x93\xe3\xcd\x8d\xe4\x7e\xa9\xd0\x83\x0f\x87\x79\xd7\xa7\x6f\xa6\x77\xf7\x8b\xe1\xce\x27\x58\x3c\x79\x3f\xfd\xf9\x76\xc3\xe6\x7c\x31\xfd\xb2\x7a\xf2\xe7\xe7\xf0\xe2\xc9\x32\x4c\xdf\xf7\x5f\xff\x7c\xbf\x0a\xab\xa7\xfd\x7d\x35\xdf\xdd\xc7\xe7\x79\xf6\xe1\xce\x9b\x03\xdb\x40\xef\x05\xe7\x8b\xa7\xb8\xf8\xd2\xdd\xaf\xa0\xdf\xef\xcb\x59\x8c\xc5\x86\x0f\xa3\x25\x4d\x1f\xae\x92\x78\xa2\xf3\xed\xe2\xc9\xee\x77\x4e\xe7\xda\x1d\x88\xef\xc6\x79\x54\xbb\xdb\xe8\xda\xd3\xd7\x87\x07\xd3\x3e\x3b\xf8\x7d\xbe\x38\xdd\x4c\x3f\xad\xbe\x5e\xde\x1d\x87\x3a\x9f\xdd\x8c\xef\x6c\xb1\x6c\x79\x97\xe7\xfb\x70\x9f\x8b\xe9\x87\x47\x52\x7d\x84\x6f\x65\xea\xb4\x5b\x2c\x2f\xb6\x4d\xb7\xf3\xc5\xf4\xcd\xea\x87\xa5\xfe\xb2\xde\xcd\x17\xd3\xb7\xfd\xd7\xfe\x72\xce\x17\xfd\x36\xe8\xa6\xcd\x67\xaf\x66\x8b\x71\x0c\xdd\x7c\x56\xcf\xf2\xe5\xe5\x6c\x9a\xed\x4b\x9a\xfe\xb1\xfa\xe1\xa6\x82\xf9\xec\x6c\xbd\xd1\xd9\x62\xfa\xee\x20\x69\x9c\x88\xb1\xf8\xec\xa7\xd5\x4f\xcb\x71\xa0\xe6\xfc\xa7\xbb\xa2\xd7\x9b\x4b\xdd\xee\xe6\xb3\x37\x79\xf7\x7a\x36\xdd\x35\xed\x61\x2d\x77\xbd\xda\x27\x5f\xee\xb6\x17\x3f\xe9\x6c\x9a\xd5\xab\xed\x56\x37\xbb\x6f\x2e\xce\x2e\xb6\xb3\x45\xef\xe7\x0f\x37\x15\x7c\xdb\xdb\xf4\x8f\xdb\x0f\x77\x1d\xd8\xb7\xed\xd3\xc5\xec\xaf\x96\x27\x33\x37\x9b\x5e\x7d\x71\xbe\xe8\x5d\xf9\xee\x83\x92\xf6\x5d\xba\x29\xc9\xd6\x67\x67\x1f\x2b\x67\x7a\xf5\xc5\xbb\x5b\xb9\xf6\x7e\x36\x8d\x77\xe9\xd9\x0c\xf4\x7c\x76\xba\x7f\xa1\x66\xb0\x8c\xd8\x3f\xce\x60\xe9\x9d\x9e\xf7\x9e\x6c\x3e\x5f\xad\xbe\x3e\x39\x99\xf7\x21\x3b\x38\xc4\x78\xb3\xef\xe3\xc3\x94\xde\xd1\x87\x29\xbd\xc1\x0f\x53\xbe\x59\x7d\xf3\x30\xe5\xa6\x45\x17\x6f\x72\x1d\x26\xd9\xd9\x6d\xca\xfd\xf1\x53\xc7\xc2\xdc\xdc\x6f\x9a\x5d\xfd\x7d\xae\x8b\xc5\xb3\x97\x77\xa7\x3c\x3e\x38\x7a\xed\xa0\x98\xc5\xf5\x62\xfa\xf6\xdf\xad\xee\xe8\x71\x25\x37\xea\xee\xf6\x55\x7c\x39\xdf\x9d\x9c\xdc\x35\x68\xb7\x1a\xfb\x9c\x9e\xed\x4e\x47\xc3\xae\x17\x8b\xe9\x9b\x9b\x88\x82\xf3\xc5\xf4\xd3\xed\x1d\xd8\xdf\x80\xbd\x8e\xcb\xcf\x7e\x7e\x36\xfb\x76\xf6\xe4\xd5\x17\x3f\x3f\x99\x4d\xb3\x27\xbf\x3c\x99\xfd\x05\x96\xe1\xc7\xd9\x93\xef\x9f\xcc\xfe\x32\xd2\x4f\x67\xdf\xc2\x32\xec\xaf\xf5\xf4\xd3\x7d\x8e\x5f\x86\xfc\xc8\xf7\x23\x2c\xc3\x5f\x46\x8e\x1f\x6f\x73\xec\xaf\xdf\xa4\x2f\xa6\x1f\x1e\x77\x1e\xff\xd8\x58\xbf\x9c\xdf\xf4\x64\xfa\xc7\xe3\x67\x72\xfa\xee\xc1\xd3\xd5\x1f\xc6\xb9\x2d\xa6\xaf\x97\xfb\x13\x7c\xe7\xaf\x1f\x3d\x99\x9b\x8b\x83\xe7\xde\x2e\x36\xbb\xa7\x97\xc3\x72\x44\x78\x90\x68\xf9\x7c\x7d\xf6\x7e\x36\xcd\x2e\xf3\xe6\xf2\xe9\xa5\x6e\xd7\x76\x97\xab\xd7\xf1\x34\x6f\xea\xeb\x8b\xed\x7e\x0c\xf3\xb3\x9b\x23\x35\x4f\xf7\x53\xc8\x4c\x37\x6d\x76\x3a\x3b\x5f\xb7\x76\xd6\x15\xc0\xd7\x1f\x04\x6c\x3e\x98\xb2\x56\x7f\xbf\x3f\xe5\xf4\xdd\x72\xcc\xe9\x7f\xd4\xdd\xd2\xe9\xdd\xe2\x74\x77\x3d\xbd\x7b\xbc\xa8\xf8\x60\x87\xde\xcd\x39\xf3\xf7\x87\x50\x4c\xef\x6e\x33\x7c\x7d\x9b\xf6\x47\x77\xce\x1c\x84\x5e\xdc\xdc\x6d\x7b\x7a\xb7\x38\x3d\xd8\xcb\xb4\x2f\xf9\xc7\x11\xa9\xf2\x8f\x15\xdb\x1e\xc6\x8f\x7e\x50\x70\x3b\x39\x69\x8f\xcb\xfe\x60\xc1\xf2\x27\xca\x7e\xb3\x1f\xa2\x37\xb7\x79\xbf\x5f\xff\xeb\x0f\x0e\xee\xf9\xea\xe7\xd5\x93\x91\xf9\xfc\x30\xf3\xbf\x11\x00\xee\xfc\x58\xfe\x7f\x23\xd0\xdb\x6d\xfd\x3f\xdf\xe6\xff\xee\xdf\x09\x6c\xf7\xfe\x26\xf7\xfb\xeb\xe9\xdd\x61\x0c\xc7\xfb\x3c\x6d\x7e\x31\xe9\x83\x88\x6b\x87\xd7\xf2\x83\x6b\x3f\x3f\xb8\x76\xf9\xe0\xda\xfb\x07\xd7\xae\xfa\xb5\xdb\xa0\xd4\xbf\xac\x2f\x7f\xb8\x78\xf3\x3b\x9e\x73\x97\xfa\xc7\xfa\xd5\xeb\xdf\x73\x9c\xbb\xdc\x9f\x2e\x76\xbb\x8b\xa3\xbe\xc0\xcf\x0f\x05\xff\xa6\x76\xb4\xbc\xf7\xd7\x8b\xeb\x17\x2f\xf6\xd6\xee\xcb\x97\x7a\x5e\x74\xfb\x32\x5f\xed\x2e\x5e\xae\xcf\xdf\x5c\x6c\x77\x2f\x5f\x3e\x18\xdd\xfb\x3d\x31\xf3\xdd\xe1\x81\x4c\xfb\x53\xb9\xe1\xc5\x74\x35\xe2\xa6\x8d\x63\xa7\xdd\x8b\xc9\x56\x30\xbd\x5e\x3d\x7f\xf1\x95\xfd\xc7\xed\x8d\xf8\xca\x9e\x3c\x59\xe4\xd5\xe5\x73\xdb\x6f\xf4\x3a\x39\x79\x7d\x13\xeb\xf4\x79\x7e\xf1\x1c\x5e\x2c\x46\xea\x4d\xdc\xdf\x11\x58\xfc\x6a\xb1\x5f\x10\x7b\x60\x84\xbf\xce\x97\x7f\x7f\xb7\xb9\x3d\x26\xec\xf6\xdc\xf9\xcd\x58\x11\xfb\x7c\xf3\x62\x75\x35\xa2\xd7\xf6\x12\xea\xc9\x49\x9d\xef\x16\x5f\xbd\xbe\xad\x7e\xf1\x7a\x79\xf9\x7a\x6d\xbb\xf9\xe2\x3e\xea\xcc\xc5\x68\xc1\x8d\x41\x79\x31\x9d\xfd\xf6\xdb\xf3\x17\x8b\x69\x7b\x18\x7d\x6f\x7b\x18\x4c\x78\xda\xad\xe0\xab\xdd\x7f\xdc\xc6\x85\xf9\x6a\xf7\xe4\xc9\x41\x5c\xfc\xd5\xc5\xf3\xdd\x8b\x69\xb3\xfa\x1c\xa6\xcb\x15\x7e\x75\x79\xb7\x0b\xf4\xab\xcb\x2e\xb7\x8f\x77\xb4\x7d\x7e\xf9\xe2\x33\xf8\x7c\x35\x8e\x81\x1f\x3b\xca\x3f\xc7\xc5\xf5\xe6\xe4\x64\x7e\x71\x7b\xa6\xd3\xee\xe9\xd3\x09\x17\x93\xae\xf2\x3c\x2f\x2f\x57\xdb\x3e\x38\xf7\xe1\x60\xaf\xf7\xee\xc9\xaf\xd7\xd3\x7a\xf5\x2b\x9c\x42\xf7\x3d\x9e\x3f\xd8\xda\xb8\xdf\x4c\xba\x79\xbe\x7b\x71\xb7\x21\xfd\xf9\xee\xc5\xd8\xcd\xbb\xdd\x5d\x7e\x76\x13\x59\xf8\xf9\xee\xc5\xea\xd7\xf5\xe9\x6e\x3a\x3b\xfd\x1c\xa7\x9b\x8b\xa7\xbf\x5e\x5f\xdf\x19\xb5\x3d\xd3\x3e\x90\xc9\x6d\xde\x69\x3b\xdd\xff\x9e\xfb\x63\x76\xd6\x7b\x7b\x97\x76\x9d\x97\xe7\x2b\x9d\xf2\xb2\xae\x36\x53\x5e\xb6\x0f\x42\x4f\xe5\xe5\x3e\x20\xfa\x6f\xbf\xdd\xdc\xda\xa6\xb6\xde\xe8\xe1\xb9\x6f\xd3\xaf\xba\xb9\x3a\xd7\x6d\x2e\x67\x7a\xfa\x39\x8c\x08\xe0\xdb\xeb\xb1\x0b\xf1\xa1\xba\x98\x5d\x6d\xf6\xb9\xdb\xfd\x1e\xfd\xef\xdf\x9f\x97\x8b\xb3\x93\x93\xfd\xbf\xcb\xdd\xc5\xf7\xbb\xed\x7a\xf3\xea\x87\xfc\xea\xe4\xe4\x63\x35\x7e\x28\x3b\xdd\x1c\x8f\x33\xfb\xf6\xa2\x5d\x9d\xe9\xec\xfa\x76\xd9\xf6\x87\x99\x67\x2f\x5f\xea\xe5\x8d\xd8\x6d\xb6\xcf\x61\xdf\xdc\xc7\x5b\x49\xd6\x36\xc7\x93\xdd\x08\xd1\x97\x47\x24\x56\x39\xb9\x8b\x83\x3f\x0e\xfa\xa3\x7e\x75\x76\x31\xaa\x3a\x38\x77\xe9\xe4\xa4\xff\xbf\xbc\xaf\xe9\x3e\xd3\x61\xf4\xbd\x65\xdd\x6a\x77\x13\xef\x8e\x04\xcc\xcb\xed\x7c\xfb\xb1\xa6\x6f\xa7\x59\xbb\xfd\xc2\xe2\xd1\x88\xef\x7b\xd1\xbd\x6b\x37\x1a\x74\x39\xc6\xe5\xe0\xa8\xff\xbb\x38\xf0\x9b\x7d\x1c\xf8\xbc\x6c\xf3\xed\xb4\x39\x16\x6c\xa4\x3f\x44\xd7\xcb\xb2\xde\xb4\xd1\xae\xe9\x20\x1e\xf0\xb6\x8f\xd1\x91\x23\x18\x56\x8f\x7a\xfb\xec\x43\xdd\xa5\xcb\x9b\xb6\x5f\x1f\x39\x00\x4f\xef\x9e\xe0\x7c\xa3\x05\x67\x63\xb3\x55\xaf\xee\xe2\xf8\xee\x9e\x3f\xa4\x67\x46\x94\x81\x29\x2f\xdf\xac\x66\xb3\xcf\xf6\x47\x2a\xbd\x5b\x6f\xda\xc5\xbb\xe5\x3b\x2d\x6f\x72\xfd\xe9\x7f\x5f\x5e\x6c\xde\x1c\xd1\xa4\x7f\x50\xac\x2b\x9f\x71\xdc\xc3\xd0\x49\x63\xc8\x2e\x17\x9f\xed\x3f\xae\x76\xd3\xe5\xea\xf2\x83\x83\xd5\xf6\x27\x42\xdc\x69\xd8\xb3\x27\x4f\x16\xbb\xf9\x38\x17\x62\x1f\x54\x64\x75\xf5\x50\xd3\xcd\x9f\xcb\xe4\x6e\x34\xdc\xfc\xd7\xf8\x28\x6a\xfe\x4d\x33\x5f\x6a\x5e\xbf\xdc\xae\xb6\xfa\xf6\x6a\xbd\xd5\xe9\x30\xb5\xad\xf6\x4f\xd1\xf5\x24\x1f\x1c\x31\xb7\x9d\xc7\xc5\xa4\xb7\x9a\x60\xb5\x9d\xa7\xc5\xf5\x94\x3e\x71\x48\xf7\xb1\xf7\xb7\x5d\xd4\x31\x7b\x9f\x9c\xcc\xb7\xcb\x37\xab\xf9\x66\x75\x9b\xb2\x7c\x7b\xa5\xdb\xf7\xdf\x0f\xdf\xf1\x62\x3b\x3c\xd6\xcb\xba\x5d\xbf\xd9\xcd\x16\x8b\xc3\xdd\x61\xcb\xcb\x6d\x5d\x6e\xf5\xcd\x59\xae\x3a\xff\xf2\xbf\xbf\x7c\xfe\x7f\xff\xfb\xcb\x17\x5f\xfc\xff\x5f\x4e\xb3\x2f\xbb\x0b\x75\xdf\xc0\xf9\x7a\xb5\xef\xd3\x74\xb1\xff\x65\x7b\xdb\xd5\x71\x6b\xbe\xbe\xda\x5d\xfc\x75\xdc\x98\xff\x7c\xbf\xc9\xe7\xeb\x7a\xcc\xd8\xb8\x98\xcf\xf6\x65\xbc\xdf\xbc\x9c\x8d\x10\x86\xeb\xf9\x2c\x77\xe7\x75\x36\x3d\x7f\x71\xec\xdb\xd2\x39\x42\xb7\xdd\xd7\xf3\x59\xf3\x4f\xf3\x76\x9b\xdf\x7f\x54\xd2\x1d\x08\xfe\xb2\xbe\xfc\xb8\x9c\xdc\x0b\xee\x83\x92\x7c\x54\x34\xdc\x4b\x0e\xeb\xfa\xe3\x65\xc6\x03\xc9\xdb\xef\x16\x3e\x2a\xed\x0f\x84\x5f\xe7\x37\x9f\x28\xf6\xa0\x01\xbb\xf5\xb9\xfe\x5e\x7b\xf9\x40\xfc\xe0\xfc\x8f\x8f\x95\x7e\x2b\x6e\x67\x9f\x28\x13\xf1\x56\xea\xea\x52\x97\xff\xf3\xf1\x71\xc5\xdb\x6e\xad\x2f\x9f\xae\xdf\x7c\x5c\xec\xb6\x4f\x67\x17\x2d\x5f\xde\xc4\x6e\xbc\xfc\x9d\x11\xc3\xdb\xf1\x3d\xdb\x5e\xbd\x3c\xcf\x9f\x28\x7d\xdc\xdc\x11\x56\x7c\x3d\x9f\x8d\x77\xe0\xe9\x8d\x3e\xfe\x68\x96\xd4\xfd\xdc\xeb\xeb\xc5\x67\xff\x2f\x00\x00\xff\xff\x81\xab\xd6\x34\x21\xcf\x17\x00") +var _distAssetsVendor44114fe8d7aaeb1fcb23a1020f2623c2Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\xfb\x76\xdb\x38\xb2\x28\x0e\xff\xef\xa7\x90\xf9\x75\x34\x40\x04\xc9\x24\x75\xb3\xd9\x46\xeb\x4b\xc7\xb9\xf5\x44\x49\xba\xed\x8c\x27\x91\x35\xda\xb4\x04\xd9\xec\x48\xa4\x1b\x84\xe2\x38\xa6\xf6\xb3\xff\x16\x0a\x00\x09\x4a\x94\x93\xcc\xec\xb3\xcf\x49\xd6\xb2\x88\x5b\xa1\x70\x2b\x14\x0a\x55\x85\xdb\x28\x9e\x25\xb7\xad\x67\xcb\x4b\xc6\x9f\xbd\xf9\x07\xbd\x7f\xfe\xec\xc9\xd9\xfb\x3f\x9e\x9d\x06\xf7\x6b\xf2\xec\x9f\x67\xcf\xde\x9c\x4c\xde\xfd\xf1\xf6\xec\xed\xd9\x87\x77\x32\xf2\x24\x14\x2c\xd8\xf7\xd6\x64\xf2\xdb\xef\xef\x9f\xfd\xf1\x61\xf2\xea\xcd\xd9\xb3\x17\x7f\x3c\x39\x7b\xf5\xf6\x4d\xb0\xef\xae\xf7\x3e\x87\xbc\xb6\x48\xc2\x19\xe3\x64\xc6\xe6\x51\xcc\x08\x67\x7f\xad\x22\xce\x86\xc9\x6c\xb5\xc8\x43\xe6\xf7\xcf\x94\xf0\x55\x1c\x47\xf1\xd5\x19\x4b\x45\x4a\xf7\xbd\xbd\x68\x8e\xe6\xab\x78\x2a\xa2\x24\x46\x0c\xdf\x3b\xab\x94\xd5\x52\xc1\xa3\xa9\x70\xf6\x4c\x42\x4d\x20\x7c\x2f\xab\x62\xf4\xed\xe5\x9f\x6c\x2a\x5a\x53\xce\x42\xc1\x50\xbc\x5a\x2c\xf0\x1e\x67\x62\xc5\xe3\x1a\x6b\x4d\x26\xf4\x73\x12\xcd\x6a\x2e\x99\xb1\x05\x13\x0c\xa2\x08\x5b\xcb\xa2\x9c\xde\x2b\x44\x83\x12\xbe\x41\x15\xda\x41\x65\x23\x82\xad\xc6\x04\xf9\xd7\x7a\x2f\xff\xa4\xfa\x8b\x96\x80\x50\xbb\x91\xf3\x84\x23\x89\x93\xa0\xa3\x31\xe1\x74\x81\x18\x71\x90\xce\x8e\x1d\x22\x30\x89\xa9\x68\x2d\x58\x7c\x25\xae\x9b\xde\xcf\xf1\x2f\xd4\xfd\x39\x6e\x36\xb1\x18\xc5\xe3\x16\xfb\x72\x93\x70\x91\xa2\xbc\xdd\xbc\xb5\x84\x2a\x4c\xca\x9a\xa8\x16\xd2\xfb\x38\x79\x9a\xc4\xf3\x45\x34\x15\x41\x5e\xbd\x50\x3d\x19\x93\x68\x4f\xa2\x11\xd7\xa2\xb8\x26\xb0\x68\x5d\x87\xe9\xdb\xdb\xf8\x1d\x4f\x6e\x18\x17\x77\x28\xc6\xf5\x3a\xaf\x8a\x44\x11\x95\x68\x10\x36\x8a\xc6\x94\xa9\xaf\x78\x4c\xf9\x28\x1e\xe3\x35\x59\x86\x9f\xd8\x09\x9b\x87\xab\x85\x78\x06\xd8\xe4\xb3\x24\xa6\x02\x61\x12\x51\x24\x7f\x5c\x0c\x71\x09\x1d\x39\xba\xd9\x0e\x71\x34\xfa\x0e\x71\x54\x7b\x9c\x71\x31\x01\x42\xc4\x88\x20\x9c\xc4\xf8\x5e\x5c\x47\x69\x6b\xb5\x8a\x66\x34\x6a\x34\x08\x84\xa2\x19\x65\xea\x6b\xc6\x6e\x52\xba\x6f\xfa\x4e\x36\x41\x7d\x0d\x92\x40\xa8\x1c\x0a\x36\xbd\xd7\xb5\x05\xf7\xeb\xb5\x4a\x98\x86\x8b\xc5\x65\x38\xfd\x44\xb9\x0a\x5f\x87\xa9\x6a\x42\xfa\x24\x3d\x61\x37\x74\xdf\xd3\x95\xa5\x4f\x16\x51\x98\xd2\x58\x05\x39\x8b\xe6\x11\x9b\xd1\x98\xdd\xd6\x9e\x70\x1e\xde\x21\x53\x3b\x56\x19\x52\x11\x0a\x46\x9d\x98\xdd\x3a\xeb\xbc\x3d\x29\xc2\xf7\x45\x68\x25\x27\x45\xde\x92\x22\x7e\xa1\x5a\x5d\x4c\x98\x88\xc6\x23\x36\xce\xb2\x78\xc4\x1a\xce\x41\x14\xcf\xd8\x17\x67\xfc\x73\x54\xaf\x47\x06\xad\x9f\xb1\xcc\x13\xb5\xa2\x19\x64\x93\x1f\x45\x4e\x33\x63\xa2\x2c\x2b\xa6\x23\x11\xb2\x6e\x9e\xdc\xd6\x64\x13\x9e\x71\x9e\x70\xe4\x3c\x4d\x56\x8b\x59\x2d\x4e\x44\x6d\x1e\xc5\xb3\x9a\xea\xb4\xda\x7f\x39\x0d\xd6\x70\xfe\xab\x16\x2d\x65\xbf\xb0\x59\x6d\xce\x93\xa5\x8c\x15\x0d\xe7\xbf\x1c\xbc\x06\x60\x84\xd7\xeb\xce\x0d\x8b\x67\x51\x7c\xe5\xec\x53\x1a\xa9\x1e\xa8\xd7\x9d\x79\x14\x87\x8b\xe8\x2b\x9b\x95\xa2\x51\xd4\x92\x75\x9c\xb0\x9b\x14\x71\x4c\x78\xeb\x66\x95\x5e\xa3\x08\x63\x12\x15\x3d\x31\x55\x78\x46\x73\xe4\xb4\x64\x69\xd6\x9a\x5e\x87\xfc\x89\x40\x2e\xc6\x66\xf9\xef\x99\x5e\xe2\x94\xb5\xd2\x9b\x45\x24\x90\x73\xe0\xa8\xb5\x54\x04\x5b\xe9\x22\x9a\x32\xe4\x92\xa6\x27\xa7\xa3\x4b\x12\x6a\x26\xc9\xcf\xd1\x71\xf2\x73\xd4\x68\xa8\x15\x12\x52\x3e\x8a\xc6\x7b\x50\x65\xcb\xa1\x94\x86\x50\xbf\x4b\x29\x8d\xcd\x08\x6f\xf7\x5b\x18\xcb\x4e\x0b\xa7\x53\x96\xa6\xb5\x9b\x90\xb3\x58\x98\xde\x4b\xe6\x35\x9e\x24\xc2\xc1\x7b\x71\xeb\x26\xb9\x41\x78\xcd\x16\x29\xd3\x6d\x02\xf8\xd3\x24\x16\x51\xbc\x62\x32\x83\xec\x84\x10\xaf\xd7\xba\x75\x71\xeb\xcf\x24\x8a\xa1\x05\x45\xaf\xcc\xe5\xbc\x51\x19\xf6\xd1\xbe\x9c\x1a\xf5\xfa\x7e\x69\x6e\xe0\x75\xd8\xba\xe1\x89\x48\xc4\xdd\x0d\x6b\x6d\xad\xce\x82\x2a\x19\xfa\x6a\xad\x11\x43\x4f\xf6\x24\x95\xa5\x94\xb2\x2c\x73\x12\x20\xbf\xce\x3e\x95\xf0\x92\x79\x0d\x86\x55\xc3\xb0\x62\xb3\x4c\xd1\x61\x18\xa9\x99\xaa\x31\xcb\xf6\x35\xf1\x8e\xd2\x67\x5f\x04\x8b\xd3\xe8\x72\xc1\x10\xc3\x59\x86\xf2\x4c\x94\xe1\x35\xb1\x51\xd6\x38\xd8\x88\xca\x0e\x2b\xa6\x12\xa5\xb4\x58\x66\x59\xe6\xc8\xf5\x78\x27\xa7\x5e\x29\xc1\x4c\x92\xaa\xe6\x29\x6a\xd9\xba\xe5\xe1\x8d\xa2\xd5\x69\xbd\x8e\xca\x24\x61\x3b\x0b\xd2\xcb\xb5\x4c\x3b\x30\x2e\x88\xc2\x1d\x52\x44\x4e\xf7\xa9\xc9\xd2\x0a\x6f\x6e\x16\x77\x50\xbc\x44\x40\x72\x72\x6e\x47\xea\x79\x46\xdd\x12\x29\x29\x1a\x5f\x49\xa9\xea\x75\xd5\xf9\x6a\xc8\x50\x45\x93\x29\xc3\x7a\x8f\xd8\x9e\x12\xf5\xba\x2a\xb0\x19\x8f\x30\xa9\x80\x54\x1e\xac\x55\x9c\x32\x66\x0f\xd5\x26\x01\xdc\x49\x82\xcb\x70\xa0\xfb\x36\x87\x5c\x77\x89\x5c\xfd\xd6\xb8\x96\xaa\xc8\xc7\x7e\x4f\xf0\xbb\xfb\x12\x79\x86\xc0\x44\x8f\x0b\xd9\x2c\x24\xe1\xae\xa1\x5b\x17\x77\xf7\x3b\xa6\x90\x99\x14\xba\x18\x93\x0b\x9e\xcd\x1c\xbc\x89\xfc\x64\x0b\x7b\x43\x97\xf4\x4c\x30\x63\xab\x08\x11\x26\x82\xba\x3f\x8b\x63\x66\x88\x90\x30\x04\x88\x53\x36\x12\xe3\x3d\xf9\x87\x72\xd3\xe1\x83\xfc\x2b\xd8\xdc\xf7\x11\x36\xc4\x82\x95\x31\x32\xe4\xb5\xc4\x83\xc8\x2e\x95\x43\x42\x77\x77\xa7\x21\xe2\x7b\x05\xbf\x92\x6f\xb2\x84\x53\xf7\x67\x7e\x6c\xf6\xba\x9f\xb9\xc1\x3a\xa6\x62\xc4\xc7\x24\x2a\xb5\x75\xc4\xc7\xc5\x70\x6b\x16\x4d\x21\xaf\x43\xeb\xbd\x7c\xfb\x97\xf4\x75\x80\xaa\xb7\x60\x97\x44\xf9\x1c\xae\x98\x8d\x38\xc8\xd9\x09\x80\xb2\x99\x39\xfc\xc4\xfe\x50\xe9\x08\x07\x86\xcb\xa8\xcc\xa9\x70\x8b\xcc\x54\x5d\xa0\x29\x8a\x0d\xaf\x81\xcd\x07\x61\x5b\x83\x6f\x55\xb1\x83\xb6\x4a\x92\x41\x6d\x6e\xcc\x70\x71\x1a\xb1\x29\x12\x84\x61\xbc\xce\xc9\x41\x4e\x1a\x05\x11\x1a\x9f\x57\xc0\xef\xc8\xee\xa9\x82\x34\xcf\x61\x10\xb1\x26\x48\x31\xb8\xd4\xde\xf0\x25\x4b\x51\xb0\x13\x7b\x51\xbd\x0e\x53\xa1\xd8\x95\xb3\x0c\x85\xfc\x6a\xb5\x64\xb1\x48\xf5\x08\x1f\xfb\xf5\xba\x3d\x7f\xb6\xb6\xbe\x30\xae\xad\xe2\x74\x75\xa3\x59\x03\xbd\xe9\xdd\x86\x69\x4d\x61\x30\x23\x35\xf6\xe5\x86\x4d\x65\xe2\x7f\xa9\x28\x14\xcd\x48\x0d\x66\x93\xce\x8e\xff\xab\x16\xc5\xa9\x60\xe1\xac\x76\x95\x88\x20\x67\x38\x72\x64\x6a\x22\xd1\xe0\x80\xdf\xd8\x44\x12\x13\x60\xc1\x24\x33\xa4\x58\x31\xb9\xb9\x70\xd9\x73\x74\x34\xc6\x44\xb6\x96\x72\xa8\x22\x8c\xa7\x72\xa7\x5a\x0d\x64\x0b\x42\xc4\x61\x5c\x08\x27\xfb\x2e\x0e\x54\x94\x62\x38\xf7\x3d\x8c\xd7\x78\x7b\x1b\x02\x76\x44\xad\x52\xd5\x87\x73\xb4\xcf\xb3\xcc\x2c\x29\x5e\xda\x76\x10\xa7\x06\xe6\x68\x4c\x52\x02\xc7\x16\xbc\x49\x94\x05\xe1\x15\x14\x5e\xe1\x4c\xf8\x5a\x1f\x58\x5a\x21\x70\x9f\x65\x44\xf4\xc8\xfb\x92\x8b\xd8\xe8\x92\x81\xee\x6a\x41\x24\x0a\x92\xd3\x54\x0d\x94\x5f\xeb\xe2\x28\xd3\x62\xb1\xe0\x11\xcb\x4f\x2f\x7f\xa6\xad\x09\x0b\x3f\x4d\x52\xc6\x62\x1a\x5b\xf9\x60\xd2\x59\xe1\x0d\x9a\xcf\xf0\xbd\x3a\xce\x40\x3c\x76\x64\x07\xaa\x3c\xa8\x54\xdd\x74\xc1\x42\x6e\x2f\x91\xef\xc4\x04\x4e\x11\x42\xc2\xd2\xed\x72\xe6\x49\xe2\x10\x0b\xd0\x1a\xdb\x49\x07\x97\x21\x77\x64\xaf\xef\xce\x11\xa6\xb3\xb9\x43\x46\x86\x1e\xd8\x07\x11\x43\x4d\xac\xe2\x7a\xf9\xc0\xd9\xa8\xa8\x41\x9e\x96\xac\xd0\x16\x0e\x5f\x01\x07\x7b\x04\x15\xe2\xb8\x9c\xf1\xaf\xd5\x57\xe7\xa1\x5c\x76\x24\xd1\x25\xbe\x38\x55\x0d\xd6\x59\x5a\x0a\xa4\xd3\x52\x38\x38\x2d\xdd\x5a\x88\xe0\xf2\xb7\x75\x20\x73\x3e\xd4\x3f\xcb\x30\x8a\x35\x44\x28\x54\x9d\x37\xdf\x85\x20\x5f\xde\x85\x32\x83\x21\x6d\xa5\x94\x8d\x68\xa8\x24\x8f\xd3\x33\xa6\xe8\xd0\xcd\x99\x83\x30\x31\xbc\x28\xcd\xb9\x4e\x05\xb9\x5e\xdf\x4a\x51\x23\x5b\xaf\x97\x17\x5c\xbd\x8e\x36\x56\xe0\xfd\xe6\x49\xbf\x24\x23\x58\xe3\x35\x6c\x4b\x98\x38\xab\x58\xd3\xb4\xa2\x8e\xe7\x61\x2a\x7e\x4d\x12\x61\x53\x49\xb9\x34\x1f\x40\xb3\x80\xb2\x5f\xc6\x74\xb0\x49\x19\xe4\x76\x95\xb3\xd9\x39\x24\x55\xba\x5e\x37\x73\x63\x39\xcb\x17\x3b\x0e\x58\x6b\x99\x48\x3a\x20\x0b\x2b\xbc\xed\x61\x2b\x89\x59\x60\x77\x22\xa2\x38\x6d\x73\x94\x93\x14\xa6\xf9\x55\x49\xb2\x48\x4e\x5b\xac\x33\x48\x5c\x9c\x41\x6a\xcc\x26\xad\x40\x81\xb3\xcc\x19\xa9\x0e\x50\xe1\xb1\x24\x8e\xfa\x18\x50\xec\x9a\x22\x39\x15\x3c\x8a\xaf\x80\x49\x96\x74\x29\x87\x1e\x59\xd0\x25\x0a\xfb\x54\x9e\x38\x0c\x48\x05\xe8\x47\x61\x26\x16\xcc\x82\x53\x5e\xdb\xb2\x06\x93\xee\xc4\xab\xe5\x25\xe3\xd6\xe0\x59\x0d\x7a\x03\x69\x3f\x5a\x7b\xba\xab\xbf\x4e\xd4\xf9\xc5\x40\x97\xc1\x1f\x85\xbd\xb2\xb6\x25\x12\xd3\xd1\x18\x38\x37\xc5\xa9\xe5\xfc\x65\xa3\xc1\xb1\x3e\x5f\x0a\xc4\x24\xaf\xc6\x71\x7e\xf8\x88\x37\x84\x0f\x39\xaa\x5b\x58\x94\x45\x43\x1a\x17\x22\xf0\xd6\x99\x3d\x3f\x95\x2b\x49\xd3\x02\x49\xfa\x59\xaf\x43\xd5\xc0\x2b\xe6\x95\xcb\x24\xc7\xb4\xce\x81\x3c\x79\x63\xa9\xc8\x3f\x31\x81\x8c\x9f\xc3\xc5\x8a\xbd\x9d\xeb\x7c\x3a\x44\x85\xf9\xc2\x84\x95\x0e\xca\x46\x7c\xa4\xeb\xfa\x24\x4c\x94\xdc\xf2\x5b\x2b\x31\x45\x16\xea\xd7\x1b\xd3\x4e\x1e\x63\x27\x37\x73\xa8\x69\x72\x33\xa7\xf7\x6c\x79\x23\xee\x82\x7d\x8f\xac\xe2\x55\xca\x66\x67\xc9\x27\x16\xa7\xc1\x68\xac\xc3\xaf\xe2\x9b\x95\x90\xc1\xe4\x33\xe3\xf3\x45\x72\x1b\x34\x7d\x32\xbd\x0e\x79\xfa\x9a\xcd\xc5\xdb\xcf\x8c\x07\x2e\x70\x01\x2a\xe3\xbe\x47\xa2\xf8\x73\xb8\x88\x66\xc3\x24\x16\xd7\x01\x2c\x36\x1d\xf3\x3c\xe1\xcb\x10\xb2\xac\x52\xc6\x5f\xa9\xc8\x50\xb0\x19\x94\x4a\x13\xf9\x73\x13\xf2\x94\xcd\xe4\x8c\x79\x17\x4a\x0e\x7b\x34\x26\x4b\xc6\xa3\x59\xc4\x96\x0a\x16\x9f\x4f\xfd\x43\xdf\x97\x79\x6f\x19\xfb\x34\x0b\xef\x86\x51\xba\x0c\xc5\xf4\x3a\xd8\xf7\xd6\x98\x40\xab\x8a\xe6\xcf\xf4\x01\x21\x6f\x7a\x94\xfe\x43\x56\x6b\x38\x1e\xd9\x3d\x20\x56\x81\x51\xe7\xad\x8d\xfa\x89\xcd\x0d\x94\x17\xef\x1a\x93\x88\xee\x47\xe9\x9b\xf0\x8d\xec\xca\x59\xeb\x8a\x89\xb3\x68\xc9\x10\x06\x79\xa3\xe9\xae\x63\xb7\x5e\xdf\xe7\x2d\xe8\x65\xf8\xb2\xbb\xc7\x8e\x38\x57\xad\x81\xa8\x8d\x96\x41\x5c\xde\xc7\x76\x21\xd5\xa5\x10\xb3\xd1\xa7\xf5\x3a\xda\xe7\x2d\xd3\x77\x59\x56\x7c\xd7\xeb\x31\x96\x4c\x1e\x6b\x4d\x14\xd9\x04\x49\x68\x54\xaf\xbb\xc0\xed\x95\xc6\xd6\x44\xda\x73\x23\x97\x48\xe6\x14\x87\xb7\x2e\xa3\xab\x97\xc9\x8a\x63\xa2\x3a\x27\x97\x8e\x3c\xe7\xc9\x57\x16\xd7\xeb\x1b\x11\x92\x75\x33\x02\xbc\xbd\x62\x50\x68\xb4\x2e\x04\xe0\x3a\xae\x18\xca\x1b\x39\x06\xea\xec\x36\x47\x6f\xc2\x37\xc5\x4a\x57\x03\x32\x98\xa2\x6b\x24\x30\x61\x38\x90\xbf\x9b\x1d\x22\x8f\x5c\x62\x2d\xa8\x62\xab\x8b\xd5\x9f\x26\x4b\x36\xa8\x8a\x0c\xaa\xe5\xdc\xaa\x29\x7a\xfb\xe4\xb9\x70\xfb\x97\x5f\x7e\x71\x49\x4c\xdd\x9f\xe3\x63\xfe\x73\xdc\x68\x60\x39\xe9\x80\x4e\xd4\xeb\x4c\xcd\x2e\x25\x28\x19\xc5\x63\x12\x13\x61\x3a\x60\xdf\xd5\xcd\xd8\xf7\x94\x74\x79\x49\xb9\xde\xef\x34\x45\x92\x0c\xe4\xc8\x12\x20\x7f\x2e\x91\x46\x12\xc9\xb1\x4c\x90\x90\x3d\xf6\x64\x08\x05\x15\x8a\x4a\x1a\xb5\x19\x4b\x2b\x32\x12\x55\xdc\x14\x80\x2c\x3a\x72\xae\x23\x25\x39\x9a\xcc\x75\xe4\x42\x47\x2e\x28\x04\x54\xa4\x9a\x4b\x3a\x45\x05\x68\x11\xad\xf2\x88\xaf\x4b\x9d\x41\x7c\x5d\x52\x1d\xa1\x6b\x4f\xdf\x9f\x3d\xcd\x51\x7e\x7f\xf6\x94\xe6\x91\x2a\x43\x32\x9f\xa7\xcc\xc0\x57\x01\x5a\x44\xab\x3c\x37\x06\xdd\x9b\x39\x95\x73\xc0\xe0\x9b\x4c\xc3\x05\x33\x48\x43\x80\x16\xd1\xc4\x3d\x5e\x9a\x43\x57\xb1\xc9\x2c\x6d\x71\x40\xa2\xae\x0a\xe8\x72\xc4\xc7\x63\x80\x33\x8a\xc7\x34\x2a\xee\x6b\xe0\x5e\xe6\x8e\xee\x7b\xc5\x30\x5d\xc1\x74\x55\x83\xce\xf4\x41\x7b\xa2\x84\xeb\x27\xe6\xc2\x67\x5f\x52\xa4\xd9\xa0\x4c\x3e\x02\x39\xb7\x8d\x80\x1e\xd6\x00\xc2\x46\xf8\x65\x03\x90\xd9\x30\xd9\xf7\x28\xa5\x77\xf5\x3a\xba\x93\x13\x9c\xb7\x56\x37\x72\xb6\xbf\x85\x5e\xd1\x93\x54\xe2\x65\xed\x08\x97\xbb\xb6\xed\xab\x2c\xcb\x19\x93\x1c\xbb\x8d\xb9\x52\x80\x99\xd8\x60\x8e\xdd\xc1\x30\x14\xd7\xad\x29\x8b\x16\x20\x07\x75\x03\x08\xcf\x17\x49\xc2\x4b\x1b\xfb\x6d\xb1\x8a\x1b\x8c\x70\x6a\xa6\x3f\x48\x58\x45\xbd\x1e\xa5\xcf\xa3\x38\x12\x92\xf1\xab\xd7\x11\xa7\x13\x18\x46\x5e\x00\x78\x66\x1f\xfb\x63\x12\x51\xa8\x68\x19\xc5\xc8\xf0\x05\xa4\xb8\xb6\x48\x54\x6a\x78\x99\xe6\xa9\xcd\x22\x35\xa4\xae\xba\x39\x82\x65\x1b\xc1\xb2\x45\xbc\x5e\x97\xa3\x2b\xb1\x19\xc5\xe3\x2c\xdb\xe7\xf5\xfa\x2d\x0c\x38\xde\xa7\xf4\x16\xc9\x58\x49\xe2\xc3\x46\xc3\xa0\x1e\x36\x92\x02\xbf\x2f\xb2\x81\x30\x2a\xbc\x95\xae\x6e\x6e\x38\x4b\xd3\x13\x76\xc3\xd9\x34\x94\xe9\xe7\x21\x8f\xa3\xf8\x6a\x07\xd3\x3c\x4d\xe2\x34\x91\xfc\xbd\xfe\x68\xdd\x86\x3c\x2e\x87\x90\x63\x41\xab\xdd\x2a\x70\x41\xcd\x69\xd8\xbd\x7c\x5a\xd0\x88\x98\xe6\x24\xa6\x36\x45\x65\x49\xa4\x1a\x65\xde\x9a\x15\x10\x5f\x86\xf1\x6c\x21\x09\x7f\x55\xac\xe2\x9d\xe5\x8e\x69\x5d\xe4\x90\x84\x8e\xc6\xb2\x2f\x7f\x0e\x8f\x37\x8f\xec\x3f\x87\x8d\x06\xd4\x14\x51\xc7\xd9\x3e\xe7\xe4\xd9\x47\xe1\xb8\x80\x98\x4a\xb2\x19\x35\xa8\x73\x11\x8f\x9c\x46\xd8\x70\xc6\x35\xa7\x60\xd8\x47\xee\x18\x47\x0d\x9a\x36\x1c\xd9\x68\x3b\x7a\x94\x8e\x1b\x0e\xa9\x39\x7b\x11\x8d\x8a\xbb\x11\x5f\x5d\x4e\xd4\x22\x6a\xd7\xb6\x97\x98\xcb\x99\xf5\x17\xc4\x1a\xce\x45\xfc\xc4\xa4\x4a\xb0\x5b\xfb\x81\x84\xa6\xa8\x78\x82\xf5\xfd\x85\x83\x65\x31\xa7\x81\x72\xc9\x11\x6e\xa5\x22\x9c\x7e\x92\x0c\xc5\xbe\xb7\xce\xa5\x5e\x96\x98\xdc\x3a\x76\x48\x06\x53\xb6\xf6\x2d\xf9\x44\xef\xd7\x05\xdd\x78\xa2\x86\xee\x87\x87\x06\x2e\xac\x3e\xc1\x9d\x1a\xfa\x82\xf4\x37\xdd\x77\xad\x59\x71\xb6\x6b\xe5\x3f\xd7\x39\x2c\xa6\xdd\x44\xfd\x28\xe3\xfe\xb4\xcc\xb8\x4f\xd1\xfd\x9a\x30\xac\xb8\xf7\x0d\xb6\x39\x02\xc6\x19\xd7\xeb\x11\x02\xe6\x79\x80\x62\x90\xae\xae\xc9\x14\xbe\x08\x24\x9b\x00\x64\xc1\x81\xea\x17\x19\x18\xc4\x86\xed\x0e\xf4\x1d\x79\x0c\x2c\x78\x5e\x15\xc3\x92\x8f\x97\x55\xed\x9b\x3a\xf3\x2a\x55\x55\x80\x1d\x94\xaa\x3a\x36\x0c\x65\x77\xe5\x14\x51\x89\x93\x99\x90\xad\x7d\x70\x65\xd3\x7d\x8f\x54\x8d\x10\x85\xc5\xf3\xd6\x74\xe6\x27\x76\x97\x0e\xac\xef\x12\xbb\x01\x04\x92\x70\x73\xee\x11\x45\x73\x04\x70\x97\xea\xcc\x53\xdc\x9b\x2b\xd6\xe1\x8f\xd2\x44\x7a\x67\x4b\xf6\xe4\x90\xbd\x4e\x6e\x19\x7f\x1a\xa6\x0c\xe1\xbd\x3f\x64\xf3\xff\x18\xf1\x86\x93\x3a\xf2\x43\x8c\xed\x73\xe3\x9f\xd6\xb9\x31\x55\x67\x98\xe2\xdc\x38\xf8\x03\x26\xd9\x1f\xa3\x0d\x98\x63\x23\x00\xcf\xc1\x9c\x58\x4d\x21\x31\x20\xb7\x3d\x36\x48\xd0\x3f\x11\xc7\x6a\x4c\x24\x1a\xf6\x39\x2a\x86\x25\xf2\xa6\xd4\xae\x57\xaa\x5d\x6f\xe4\xf4\xb6\xf6\xa3\xd7\xa5\x7d\x81\x3a\x4e\xa3\x20\xfd\x92\x55\x17\x4d\x73\xd7\xa9\x81\x23\xf7\x98\xb2\x01\x1f\x38\x0d\x27\x70\x9c\xc0\x69\x3a\x58\x15\xb9\x49\x6e\x91\xe7\x12\xb5\xaf\x84\x5f\x90\x4b\x22\x8c\xf3\x29\x8f\x70\x2b\x5d\x5d\xa6\x82\x23\x0f\x37\x14\x7e\xcf\xe9\x01\xba\x18\x8d\xfe\x75\x31\x1a\x3f\xbe\x18\xe3\x0c\x5d\x5c\xe0\x01\x1a\xbd\xbc\x1e\x2f\x97\x28\x4d\xf1\x20\x1b\x26\xd9\x70\x38\x90\xff\xb3\x93\x24\x3b\x39\x81\x3f\x03\xf9\x3f\x9b\xcd\x66\x83\xd9\x20\x9b\x25\x83\xec\x76\x94\x64\xb7\xe3\x41\x76\x3e\x4a\xb2\xf3\xf1\x20\xfb\x3d\x19\x64\x1f\xe0\x5f\x56\xfc\xcd\x3e\x7c\xc8\xae\xae\xd0\xd5\xd5\xd5\x00\x0f\xb2\x17\x2f\xd0\x8b\x17\x2f\xe4\x17\xcb\x9e\x65\x61\xf6\x24\xbb\xbe\x1e\x64\x2f\x5f\x0e\xb2\x4f\x9f\x06\xd9\x72\x39\xc8\xd2\x74\x90\x9d\xde\x7b\xe4\x68\x9d\x7d\xc9\xfe\x99\x7d\xfd\x3a\xc8\x3e\x7e\x1c\x64\x2d\x7c\x70\x45\xbe\x56\x22\xfe\xfa\xec\x34\x7b\x7d\x96\xbd\x7e\x3d\x90\xff\xb3\xc5\xbd\x47\x3a\x6b\x99\xfd\xa5\x5c\x9b\xbf\x96\x06\xe3\x7d\x71\x1c\xd5\x62\xf8\xbd\xad\x19\x13\xc3\x01\xa3\x24\x20\xcd\xaf\x07\x47\xf1\x18\x61\x79\x6c\xab\xd7\xd1\xaf\x72\x44\x23\x4c\x04\x7c\x8b\x91\x3b\x1e\x57\x94\x7a\x8d\xa2\x6a\x8a\x4a\xc4\xc8\x93\x64\xc2\x1f\x4b\x80\x1c\x80\xf0\x2a\x08\xb0\x92\x15\xf3\x77\x12\x8a\x10\xe1\x56\xc2\x67\x51\x1c\x2e\x76\x42\x66\x78\x6d\x91\xb8\xf3\x92\x38\x81\x15\x5c\xda\x00\x09\xfa\x17\x12\x84\x95\xa0\x63\xf2\x52\xce\x6b\xf9\xc7\x56\x56\xb0\x56\x06\x89\x28\x6b\xc1\x49\x0f\x3d\x57\xf4\x4b\x50\x97\x70\x1a\xe5\x17\x69\xc7\x1c\x2e\xd3\x7e\x1d\x45\x23\x31\x1e\x0f\xe4\x5f\xaa\x03\x01\x04\x50\x4c\xe5\x2f\xd6\x60\x0e\x2e\x46\xa3\x8b\xf4\xe2\x74\x7c\x80\x07\x71\x8b\xb3\x9b\x45\x38\x65\xe8\xe0\x5f\x17\xa3\xec\x62\xfc\xd3\xc1\x15\x71\x1c\x1c\x58\x09\x17\x17\x2a\xce\xac\xbb\x6d\x1d\x9b\x84\x3a\x8e\xc5\x2c\xa9\x33\x4e\xd2\xa0\x67\x28\x92\x0c\xd1\x40\xfe\xd5\xc7\x1c\x79\x02\x93\x41\x03\x2c\x59\xaf\xe5\x7e\x24\x3b\x00\x64\xf6\xe5\xee\x31\x47\x59\xe0\x69\xad\x5e\xfe\xcb\x26\x5f\xdd\xbd\x4a\x29\x9d\x68\x2d\x92\xf8\x4a\x96\x54\x07\x61\x60\x3d\xd9\x5a\xa2\xf9\xb5\xb5\x08\x53\xf1\x2a\x9e\xb1\x2f\xd4\xfd\xd9\x3d\xa6\xbc\x5e\xff\xda\x12\x2c\x95\x99\x7e\xc6\x8c\xb2\xbc\xf5\x5f\x49\x8c\x49\x29\x3f\xe1\x4d\xea\x95\x99\xfb\x7f\xd0\x83\x8b\xd9\x01\xf9\x20\x7f\xe4\xc7\x0b\xf9\x71\xdf\x5e\x1f\x90\xbf\xc3\x57\x67\x7d\x40\x7e\xa2\x07\xa3\x46\x73\x3c\xb8\x98\xdd\xf7\xd6\x07\xe4\x77\x95\x77\x70\x40\xfe\xa9\xbe\x74\xe8\x63\x11\xd2\x31\xbf\x01\x08\x8f\x48\x70\x8c\xe9\x80\x84\x28\x58\x01\xd2\x23\x12\x28\x87\xe4\xc6\x01\x89\x8b\xa4\xc6\x01\x89\x18\x3d\xf8\x98\xc9\xb0\x04\x19\x0c\x00\xc9\xab\x88\x24\xa5\x78\x34\x08\x54\x12\x1e\xc8\xc4\x50\x82\x70\x9b\x47\xe3\x7b\x97\xf8\xdd\xde\x7a\xf4\xb7\xb0\xf9\xf5\x62\xe5\xba\x4f\xdc\xe6\xc5\xca\xed\x3e\x7f\x7e\xb1\x72\xfb\xae\x0c\x9c\xf4\x65\xe0\xf9\x11\x04\x9e\x9f\x3c\x95\x81\x93\xe7\x10\x78\xee\xf6\xe5\x5f\x4f\x05\x9e\x3d\x1f\xdf\x7b\x00\x2d\x1b\x5d\xac\xdc\x1e\x14\x70\x7b\xcf\x9f\x5f\x1c\x98\x04\x74\x91\x3e\x1e\x94\x13\x4d\x12\x96\xbf\xeb\x83\x88\xa4\xac\x44\x66\x56\xcc\x50\xf7\x94\x49\x2a\x71\x86\x04\x1e\x58\xaa\x60\xcc\x92\x87\xb1\x7a\x9d\x0f\x78\x20\xd6\x96\x00\x90\x95\x96\xec\x02\xa5\x8c\x30\x3c\x00\x58\xc5\xd9\x95\x14\x67\x42\xb8\x57\xfa\x83\x5d\x3d\xfb\x72\x83\xa6\x0c\x15\x73\xc5\xb9\xb8\x70\xe4\x42\xb1\x97\x0e\xba\x18\xe1\x4c\xfe\x8c\x71\x76\x31\x42\xa3\x7f\x5d\x8c\x25\x41\xc5\x17\x63\x19\x0b\x84\xb6\x7c\xe7\x22\x57\x7c\x31\x87\xb3\x8c\x67\x59\x9c\x65\xd1\x1a\x63\x5b\xe6\xc8\x6c\x6e\xad\xa8\x6f\xd4\xbc\x38\xb8\xb8\xf8\xd7\x4f\x8f\x1b\x83\x16\xc2\xd9\xe8\x62\x7c\xbf\x1e\xcb\xd5\x7b\x71\xf1\x53\xdd\x51\x3c\xe5\xbc\xdc\x7b\xd7\xac\xcc\x94\x09\x58\xc8\xdb\x3b\x7b\xbd\x8e\x18\x1d\xb1\x31\x26\xa1\x3a\x7e\xc5\xf6\xe5\x1c\xc7\xf7\x5c\x92\x1a\x79\x82\x93\x04\xb6\x2c\x8b\x95\xc7\xe4\x39\x1b\xc9\xdd\x7b\x4c\x2d\x26\x6a\xa6\xeb\x06\x1c\x6c\x68\xaa\x13\xe2\xd6\xe4\x96\xca\x3f\x59\x76\xbf\x26\x42\x0e\x64\x6b\x72\x0b\x69\x6b\xd5\x96\x1b\x46\x5d\xb2\x64\xd4\x23\x9f\x19\xf5\xc9\x1d\xa3\x6d\x72\xc5\x68\x87\x5c\x32\xda\x25\x13\x46\x7b\xe4\x96\xd1\x3e\x79\xc6\xe8\x61\xd1\xe4\x2f\x76\xef\x9d\xca\xc0\xa0\xdd\xeb\x05\xed\x5e\xd7\x3a\x24\x95\x7a\xf8\x51\x87\x52\xb7\x5e\x67\x8f\x3c\xd7\xdd\xa7\x6e\x96\xb1\x47\x1d\xd7\xa5\xd4\x5d\xbf\x47\xce\x07\x87\xb8\xc4\x25\xd5\xf7\xe0\x77\x70\x8b\x93\x93\x8b\x63\x7a\x74\x74\x74\x34\x70\x9c\x06\x0b\x9c\x86\xd3\x60\x6b\x4c\xde\x23\x97\x8c\x9c\x0f\x1f\x1c\xe2\x8f\xcb\x70\xec\x3d\x49\x01\x92\x08\x58\x45\x64\xa1\x8e\x2c\xe4\xc8\x64\xc7\x4e\xf8\xe0\x90\xee\x8e\x94\x0f\x0e\xe9\x91\x7d\xd7\x4e\x7d\x87\xd4\x17\x71\xee\x1c\x4c\x5e\x99\x90\x87\xc9\x8a\x41\x0b\x63\xa6\x3f\x3f\x38\xe4\x77\xf2\xc1\x04\x64\x90\x31\xf2\xf7\x22\xfc\xc1\x21\x82\x91\x9f\xac\x88\x3c\xe6\x9a\xa1\x1c\x37\x93\x34\x26\x37\x0c\x52\x34\xb0\x0d\x85\xbd\xd1\x0d\x1b\x53\x9f\x52\x6a\xe6\xd2\x40\x8b\x61\xcf\x6e\x93\x93\xe8\x2a\x12\x1f\x64\xb7\x30\x1c\xe8\x89\x77\xad\x51\xac\x02\x53\x5d\xd2\x14\xaa\x2e\x03\x25\x5e\xc5\x72\xee\x79\x2e\xcc\xec\x6d\x20\xb4\x42\x0e\x2c\xd1\x69\xa0\xde\xe1\xb1\xfc\x18\x78\x47\xae\x1b\xf8\xac\x8d\x15\x2b\xfe\x96\x91\x4f\x8c\x3e\x61\xc8\x79\xbe\x5a\x2c\x3e\x40\x4f\xef\xbb\xd8\x3a\xe6\x95\x49\x52\x0e\x3f\xde\x90\x33\xc7\x03\xf4\x94\x69\x29\x92\xdc\xa7\x2a\x24\x3c\xf2\xe0\x07\x92\x9e\xe0\xcc\xe4\xc4\x16\xf1\x3b\x63\x3b\xf9\x15\xd6\x9a\xcc\x46\xce\x15\x13\x4e\x23\x97\xbb\x0d\x9c\xf7\x67\x4f\x25\x47\x8c\x1b\x62\xac\xa4\x51\xd6\xe9\x2e\xa7\xc3\x16\x98\x7a\x5d\x8b\xc1\x81\x9d\x2f\x1a\x4c\x41\xa0\x23\x57\x99\x9e\xd9\xb8\x5e\xf7\x60\x9c\x97\x49\x2c\xae\x65\x41\xff\x08\xc2\x33\xd8\xfb\x35\x3a\xe9\x03\xe8\x70\x92\x17\x26\x43\x66\x07\x81\xaf\xf8\x66\x71\x9b\xc0\x0e\x59\xae\x89\xa9\xa5\xf8\x38\xcb\xd4\x57\x2e\x9d\xad\xbd\x09\xdf\xec\x29\x16\x04\x89\x47\x9e\xdf\xf0\x7c\xfc\xc8\xf3\xf3\xb5\xde\xa0\x48\x34\x39\x3e\xf0\x7c\x02\x12\x9f\x81\x22\x35\xfe\x51\xe0\x1f\x06\x6d\xaf\xc9\x1f\xf5\x1f\xf9\xeb\xb7\x6c\x4b\xea\x0c\x4a\x8d\x6f\xe7\x5b\x82\x67\x1d\xbf\x7d\x18\x34\x6c\xe1\xcf\xe2\x58\xf1\xaf\xe6\x0a\x4c\xe0\x68\x0e\xa3\x2e\x69\x33\xa5\x85\x7e\xa0\x46\xb2\xe9\xad\xc9\x7b\xe4\x0c\x1d\x32\x72\x86\x43\x20\x40\xce\xb0\xac\x67\x50\xd6\x28\x84\xee\x6c\x78\x40\x82\x9c\xa1\x2c\x52\x22\x7d\xec\x01\x3e\x1a\x0a\xa7\xa7\xd7\x09\x17\xf9\x44\x34\x60\x7e\x1c\x8e\x05\xe2\x1d\x72\x20\xce\x21\xce\x50\x11\x2f\x1d\x3c\x54\x44\x68\xe8\x90\xdf\xf5\xd7\xd0\x22\x5e\x50\x6b\xa5\x7e\x89\xb0\x71\xfd\x83\x5d\xb1\x2f\x8a\x4e\xe8\x52\xdf\x2a\x66\x95\x00\x8a\x37\x94\x88\x0d\x37\x94\x2b\x24\x81\x59\x32\xb5\x61\x36\xbd\x3c\xeb\x50\x65\xde\xca\x6e\x9f\xa2\xb8\xe1\x44\x74\x7d\xef\x24\x41\x92\x9b\x23\xe1\xb9\x48\x7d\x4f\x11\x88\x68\xa0\x6a\x89\x82\x6b\xc4\x71\xe9\x7a\x89\xb2\xb5\x52\xdc\xfc\x83\xd1\x83\x93\x51\x72\x32\x1e\xe8\xe3\xde\xc5\x58\x1e\xf8\xb2\x8b\x14\x37\x24\x26\x83\x03\xf2\x8e\x51\xe7\xb7\x30\x5e\x85\xfc\x6e\xf2\x9c\x5d\x72\xf8\x18\x86\x7c\x7a\x3d\x79\x72\xc3\xa3\xc5\x64\x18\xde\x4d\x7e\x5b\xc5\x6c\xf2\xdb\x6a\x71\x37\x79\xb2\xba\x5a\xa5\x62\x72\xca\x6e\x04\x5b\x5e\x32\x3e\x79\x3b\x15\x89\xfc\x7d\x93\x7c\x56\x11\x27\x6c\x0a\x1f\x8e\xd1\x58\x9e\x38\x98\xfc\xa9\x6a\x91\x35\x48\xe0\x12\xb4\x01\x2c\xe1\x4a\xb0\x12\xa6\x84\x26\x21\x49\x20\x76\xf9\x82\x7c\x9e\xd8\x2c\x0d\xa8\x2c\x59\x04\xa9\xd0\xa3\x8e\xe6\xdb\x6c\x0e\x2c\x98\x83\x7f\x5d\xcc\x1a\x3f\x1d\xa8\x03\x81\xc0\x58\xd0\x5b\x24\xf0\x9e\x92\x14\xce\xd1\x7e\x88\x04\x65\x55\x93\x52\x8d\x84\xc0\x56\x25\x46\x08\x63\x4b\xa2\x15\x45\x93\x34\xca\x10\x3f\x22\x30\xdc\x4e\x3e\x44\xa2\x1c\x18\x36\x67\x0c\xd2\x2a\xfb\xd6\xf7\x0d\xdb\xbe\x80\x1c\xa0\x93\x9c\xdc\x57\x6e\x0b\xfb\xee\xe6\xbe\xa0\xe1\x2b\xc6\xea\x15\xa3\x21\x23\xaf\xe5\xdf\xa2\x5f\x9f\x33\x84\xef\xf3\x10\xdb\x98\xfc\x5a\x82\x6e\x36\xea\x75\x21\xdb\x19\x8d\x49\x24\xff\x24\xb9\xc8\x0a\x48\x95\xe7\xc3\xb9\x95\xd3\x39\x1a\xf9\xac\x4d\xc4\x18\x13\x73\x63\x9f\x53\x1b\x4d\x30\xb8\xe4\xab\x31\x89\xb6\x92\x4d\x4a\xf2\x03\x29\x36\x48\x75\x6c\x6d\xa5\x32\x86\xc9\x0a\xcc\x57\x92\x7f\x95\xb0\x05\x31\xd4\x94\x81\x38\x0a\x93\x48\x87\xe0\x78\x6d\x35\xcd\xef\x40\xe6\x44\x27\x27\x90\xac\x2e\x69\x2c\x1a\x41\xad\x83\x84\xf3\x2f\xe4\x34\x12\x2d\x3d\xce\xe4\x70\x63\x87\x38\x91\x63\x2e\x87\x36\x29\x12\xdd\x82\x56\xce\x08\x64\xa0\xba\x96\xe8\xbb\x6a\x79\x08\x42\x5c\x01\xa1\x98\x8f\x5f\x59\xb1\x31\x45\x73\xc4\x8e\x3d\xd7\xad\xd7\xdd\x63\xca\xcc\x89\xfd\x01\x09\x7a\x21\x58\xd9\xe3\x23\x77\x4c\x59\xa3\xe3\xba\x44\x14\x37\x5b\xf2\x4f\xeb\xfd\xd9\x53\x5b\x61\x87\xcb\xa9\x91\xdf\x0d\xb5\xae\x98\x78\x7f\xf6\xd4\xb0\x1a\xc0\x5a\x88\x56\x5a\x8e\x64\x5a\xf2\xff\x0d\xc8\x05\x3a\x85\xe2\x7a\xd1\xd2\x97\xac\x2c\x57\xec\x37\x44\x93\x9b\xad\x15\xf5\x1b\xb2\x27\x88\x4b\x62\xac\x51\x3a\x09\xef\x10\x6e\x0a\xfc\xa8\xdf\x90\x5b\x6f\x0e\xe7\x57\x66\x9f\xfd\xc0\x64\x88\x84\x24\xa5\x5e\xa3\xff\x18\x89\xa6\x87\x1b\xa8\xdf\xe0\xcd\x58\x16\x7c\xa9\x48\x7d\x71\xbf\x18\xd2\xf4\x98\xba\x83\x2f\x0c\x25\x94\xc9\xbc\x69\x90\xfe\x02\x47\x9c\x81\x8c\x69\x78\x24\x6d\x42\x10\x07\x32\x4c\x52\x4c\xee\x25\xd5\x09\x12\x32\x0b\xef\xde\xce\x65\x77\x04\xa1\xc5\x13\xbe\x67\x1b\xb7\x68\x24\xa1\x2f\x6d\x5a\x25\xe9\x4f\x48\xad\x3b\x3c\xa0\x69\x1a\x14\xc2\xcd\xa4\xe9\xe1\x83\x3e\x6e\xe4\x52\x92\xf0\xd8\x1b\xc4\x34\x6c\x9c\x33\x14\x51\x03\xa7\xe9\x01\xa4\x20\xfc\xe5\x7c\x03\xf8\x00\xc5\x34\x6c\x6e\xc6\x92\xa2\x68\xc3\xc3\x81\x05\x89\xc4\x34\xc4\xe4\xfe\x96\xb1\x4f\x41\x4c\xa0\x6d\x91\xd5\x9e\xf3\x8d\x51\xca\x47\x8d\x44\xf0\xdd\x50\x88\x18\xc9\x2f\xf4\x55\x33\x6e\x44\xf8\xa0\x6f\x49\x9c\x36\x19\x65\x75\x87\x24\x48\x1f\xb7\xa6\x49\x3c\x0d\x05\x62\xf9\xbd\x92\xc0\x58\x1e\x0c\x6f\x25\x5b\x75\x7b\xab\xd8\xaa\xdb\xc4\x21\x8e\x44\x11\xce\x62\xce\xb9\x4c\x3b\x3f\x57\x69\xe7\x32\x2d\x4a\x93\x73\x95\xfc\x0e\xa9\x8c\xc4\xb9\x55\x21\x93\x44\x9c\x73\xc5\xe0\xa8\xe4\x2e\x7c\xe7\x89\x5d\xc5\xa1\xdc\xe6\xec\x8e\xac\x3a\x67\x77\xce\xf3\x68\x59\x2b\x44\xcf\x24\xcb\x71\x2b\xab\xb9\x05\xd0\x44\x26\x55\xf1\x1d\x62\x14\x1b\xb9\xb6\x4b\x3c\x9c\x1f\xf3\xdf\x23\x67\x26\x39\x37\x67\x26\x1b\x30\x0b\xef\x54\xdb\x66\xb3\x1f\x60\xe7\xb4\x3a\x4b\x3a\x8c\xe2\x32\x5b\x38\xfb\xb7\xc0\x54\xf0\x97\xb3\x7f\x0f\x52\x19\x08\x53\x10\x1c\x9d\xaa\x1a\xfa\x4c\x47\xea\x21\x50\xf1\xef\x10\xf4\x04\x71\x66\xc5\x50\xaa\x08\x56\x1a\x4d\x15\xf7\x4c\x0d\x28\x04\x3c\x2f\x1f\x5c\x3b\x6c\xe7\xf7\xf4\x89\x7c\x96\x8f\x26\xcb\xbf\x9e\xe5\x5f\xb2\xbd\x3b\x58\x54\xab\xbb\x37\x38\xdb\xd9\x77\x94\xaa\xe2\x88\x67\xdf\x53\xd0\x2a\x03\xb3\x4e\x16\x51\x35\xaa\xf2\xdf\xc3\xed\x1a\x58\x0f\xf3\xbb\xad\xd9\x06\xb7\xab\xfb\x0e\x94\xb2\x54\xdd\x30\x14\xb2\xeb\x77\xcc\x75\x33\xbf\x81\x3d\xfe\x07\xa3\xce\xe9\x2a\x9e\x85\x77\x93\x61\x02\x3f\x67\x2b\x96\xca\xdf\x73\x36\x8b\xd5\xd7\xd9\xf5\x8a\xc3\xc7\x73\x1e\xc9\x9f\xd3\x50\xac\xb8\x1c\x2f\x9b\xbd\xfd\xa0\x00\x49\x28\x12\x84\x2c\x2e\x0b\xca\x32\xb2\x40\x29\xef\x0b\xc8\x3b\x19\x26\x93\xb3\xd5\xe4\x9c\x4d\xce\xae\x27\xcf\xf9\xe4\x34\x2c\x65\xfa\x3b\xf0\x68\x3f\xc1\xdf\xdf\xcb\x9c\xda\x3f\xff\x3d\x4e\x4d\x92\x7a\x12\x4a\x56\x2d\x95\x7f\x56\xf2\xcf\xa2\xcc\xb4\xf5\xcb\x3c\x9b\x37\xc6\x92\xf4\x23\x65\xcb\x2b\xd7\x92\xbd\x9e\x81\xc5\x32\x36\x32\xe5\x15\xaa\x92\x92\x72\x92\x8e\x0d\x15\xc7\x16\x63\x92\x9a\x8b\x78\xb2\x52\x5f\x09\x26\x8b\x3c\x75\x91\xa7\x2e\x4c\x2a\x60\x1a\xe6\xac\x5b\x9a\x7f\xad\xf2\xaf\xc5\x06\x63\xa7\x5a\x94\x6a\x56\x2d\x05\xbe\x6e\xa5\x43\x2b\x08\x2d\x74\x68\x61\xb1\x71\xa5\x89\xbd\xc5\x20\x2d\x76\xb3\x58\xdb\x4b\x89\x56\x40\xdc\xc8\x6c\x56\xeb\x77\x64\x7d\x88\x6f\x5b\x7d\x27\x5a\x0f\xc1\x48\xbf\x0d\x63\x18\xc5\x0f\x41\x08\x1f\xe4\x1e\x3f\xb2\x0d\xa1\xc3\x75\xb2\xe2\x29\xc2\x8f\x3c\x3f\xcb\x3c\xbf\xc8\xf8\x9b\x9e\xd6\xef\x81\xc7\xda\x29\x37\x2d\x1f\xd3\xb4\x9a\x23\xb2\x21\x6b\x6b\xbd\x28\x5e\x09\x06\xc1\xd2\x85\x1e\x13\x1b\xab\x67\x62\x80\x00\x1d\x92\xfb\xfc\x4b\xb9\x97\xbf\x7c\xa9\xe5\xb7\x8e\x04\xab\xf6\x87\x6b\x99\x70\x7d\xad\x13\x3e\x32\x88\xfc\x24\x23\x3f\x7d\x7a\x58\xda\xab\x51\xcb\x32\xbf\xa3\xf6\x9f\xeb\xe5\x72\x4b\xcc\xac\x2f\xe1\x9d\xc6\x47\x66\xdd\x4d\xe2\xc6\x6b\xb4\xd1\x22\x1f\xe7\x40\xd2\xf4\x3f\x01\x63\xe2\x52\x36\x4d\xe2\x99\x0d\xfa\xe5\x43\xf8\xd9\x4d\xda\x8d\xdd\xcb\x87\xb1\xfb\x16\x90\x1d\xb8\xfd\xc6\x90\x13\x82\x7c\x15\x3e\x9f\x80\xa9\x8e\xdc\x86\x61\x98\x88\x73\xad\x36\x60\x15\xf2\xda\x6a\x4f\x0b\x1d\xc2\x84\xfa\x7c\x52\x7c\xbe\xcc\x37\xd8\xeb\xfc\xeb\x53\xfe\x25\x27\x40\xce\x6d\xc9\x41\xcf\x03\x72\xb0\x8b\x14\xd9\x51\xff\xcc\xbf\x65\x8b\x3f\x6a\x00\x56\xca\xcb\x3c\x05\xe4\x42\x2f\x1d\x22\xe1\x8f\xc9\x1d\xd3\x31\x92\x19\xfc\xf4\xa9\xc2\x62\x47\xf1\xb8\x72\x03\xdb\x13\xa3\x3b\x36\xa6\x7e\x07\x4c\xff\xdc\x20\x36\x52\xa6\xd0\x21\xce\x93\x4a\x63\x9f\x49\x94\xbe\x5b\x5a\x5b\x6e\x94\xbe\x1b\x22\x90\x20\xe4\xb3\x1e\xf6\x51\x00\x73\x2d\x7b\xef\xba\x02\x8e\xaa\x57\xa2\x40\x60\x23\xd6\x0a\xc0\x74\xdf\xd5\xc2\x76\xe8\x83\x6a\xc4\x73\x4d\x3c\x7f\x2f\x07\x53\xf0\x9e\x31\xc6\x44\x8c\xae\xca\xd1\x32\x72\x67\x3d\xb2\x17\xbf\x51\x53\x07\x4e\x16\x3f\x5e\x2d\xf1\x21\xfa\xb2\x1c\x1d\xed\xc4\xe6\xe5\xff\x74\xab\x0b\xb8\xff\x37\x5a\xa9\xf9\x23\x21\x08\x17\x70\x99\x21\x5b\x9b\xaa\x95\x16\x0b\x7a\x2f\x27\x50\x3c\x0b\x79\x70\x9f\x86\x4b\x76\x12\xde\x05\xce\xe8\x2c\x99\x85\x77\xb5\x50\x8c\x6b\xaf\xcf\x1c\x12\xb3\x2f\xc2\xc4\x2f\x13\xce\x93\xdb\x52\x92\x64\xdc\x02\x60\x0f\x6b\x23\x13\xbf\x08\x53\x5d\xe4\x03\x4b\x05\xe3\x36\x38\x99\xa6\xca\x8c\x5e\x87\xa9\x18\xd7\xca\x45\x25\x16\xcf\x16\x29\x0b\x9c\xd7\xce\x9a\x94\x75\x03\x82\xfb\xd7\x67\xa7\x81\x73\x1d\x2c\x97\x41\x9a\xd6\x9e\x38\xe4\xf5\x99\x0a\xc2\x77\xe0\x0c\x87\x07\x27\x27\x07\xea\x8a\xea\x35\x84\x87\xc3\xda\x09\xa9\x99\x98\x8d\xa8\x5a\x5e\x14\x92\x24\x22\xa4\x56\x95\x61\x4d\x2c\x0d\x87\xc0\xd1\x2a\xe9\xb5\x59\x28\x98\x43\xb4\xe6\x49\xe0\x3c\x9a\x39\xea\xac\x0e\x22\xba\xb7\x2a\x1a\xb6\x9f\x40\xa9\x03\xf8\x70\xf9\xbf\x08\x45\xf4\x99\x9d\x45\x4b\x16\xdc\xcf\x57\x62\xc5\x59\xe0\x44\x71\xed\x51\xea\x90\x9b\x30\x15\x81\xf3\x28\xad\x85\x57\x89\x43\xd2\xc0\x09\x6b\x73\x76\x5b\xd3\xb4\xd2\x21\x69\x2a\x6b\x29\xc2\x4b\x99\x43\x51\x57\x87\x2c\x97\x90\xa8\x89\xad\x43\xae\x03\x27\x8c\x6b\x8a\x62\x5e\x5f\x43\xda\xb5\x1a\xfb\x99\x2c\x06\x07\x95\xd9\x0c\xe2\x25\x3b\xe0\x90\x21\x40\x53\x42\xf9\xe1\x50\x01\x03\x49\x93\x43\xee\x64\x92\xba\x6c\xbc\xbb\x83\x14\x19\x48\x9d\x35\x51\x39\x82\x77\x8c\x58\x52\xa9\xe0\x4f\x06\xa6\x1d\xc1\xfd\x2c\xb9\x0d\x5c\x32\x4b\xee\x82\xde\xda\x58\x7b\xa4\xc1\x3f\x18\xb1\xb8\x90\xe0\x45\x11\x54\xc5\x3f\x30\x52\xda\xbe\x83\x83\x51\x78\x33\xbe\x68\x0d\x96\x83\x8b\xd6\xe0\x20\x5a\x93\x48\xd0\xfb\x35\x49\x44\xe9\x92\x1c\xb4\x47\xf2\xb3\xff\x60\x43\xb9\xad\x50\x00\x98\x38\xc4\x69\x3a\x38\xb0\xa4\xb3\xa0\x53\xa2\x95\x9a\xe5\x21\x05\xe4\xd1\x91\x00\x27\x16\xbb\x4d\xe3\x8c\x11\xdf\xa6\x31\x1f\x06\x8b\x7f\x2a\x44\x6b\x12\x5e\x5e\xf2\xc2\xb8\xb0\x75\xa0\x48\xf6\x81\xd3\x90\xdc\xae\x40\x02\xaf\xa7\xa0\xee\xc3\xf0\xbd\x51\x37\x85\x6a\x2d\x3b\x2a\x61\xcb\xc9\x0b\x0d\x09\x84\x38\x4d\x90\xc0\x83\xa9\xc4\x3d\x58\xa8\x6c\x78\x20\x04\xe5\xc1\xbf\xad\x99\xfc\x1a\xf0\xab\x81\xa9\xb3\x72\xb9\x92\xac\xe2\x59\xab\x76\x12\xcd\x6a\x77\xc9\xaa\x36\x4f\xf8\x15\x13\x35\x91\x80\xa7\xa5\x5a\x24\x06\x8e\xa4\x3c\xba\xa5\x96\xbe\x86\xc8\xaf\xe6\xb4\xc7\x0e\x61\xc4\xed\x5a\xd5\x13\x9a\x09\xd6\x26\x7b\x46\xab\x21\x06\x51\xa4\x68\x49\x50\x94\x69\x4b\x14\xc8\x87\x9f\x20\x47\x35\x48\x21\xf8\xf6\x33\xe3\x3c\x9a\xc9\x03\xe2\x2a\x65\x35\x65\x6d\xa1\x05\xe8\x2a\x07\x52\x3d\xfd\x26\x5c\x32\x22\x9b\x3e\x8f\xae\xb0\x44\x7b\x7a\x1d\xc6\x57\xac\x16\xc6\x35\xf6\x25\x4a\x45\x14\x5f\xd5\xf4\x36\x6a\xa0\xd8\xf5\x54\x42\x49\xaf\xc1\x21\x4d\x12\x2f\xee\x6a\x97\xac\xb6\x4a\xd9\x4c\xf6\x4b\x0d\xfc\x40\x49\x80\x21\x98\xa2\xab\xa2\xb5\x53\xc6\x6a\xd7\x42\xdc\x04\x07\x07\xaa\x82\x3f\xd3\xd6\x34\x59\x1e\x5c\xad\xa2\x19\x4b\x0f\xfe\x7f\x07\x5a\x01\x3c\x3d\x50\x15\x37\xf5\x14\x01\x90\xcb\x84\xb3\x5a\x14\xcf\x93\x16\xf8\x8e\x81\xbe\x68\x4d\x14\x22\xf9\x55\x87\x56\xa8\x6d\x29\x0f\x2f\x0a\x71\x9c\xc7\x47\x62\x54\x4e\x1a\xe3\xb8\x22\xb2\x04\xb5\x18\x36\xc4\x69\x2a\xd0\x06\xec\xfc\xe6\x24\xd9\x02\x93\x65\x68\x3b\x12\xec\xdd\xb7\xa3\xd5\x71\xf0\x3e\x0e\x97\x2c\x60\x44\x55\x1f\x88\xb5\x32\x41\xda\x8b\x25\x87\xa3\x22\x4b\x2b\x03\x4e\x2a\x43\xf4\x14\x81\x09\x8e\x04\x2b\x17\x29\xfc\xb4\xe6\x09\x7f\x16\x4e\xaf\x4b\x4e\xbc\xe4\x4c\x6c\xc9\x3a\x08\x6b\xe9\x11\x5c\xc3\xda\x63\x98\x6c\x2c\xb5\xa9\x28\xcb\xc4\xeb\xf5\xdc\xda\xc4\xfa\x54\x53\x1d\x34\x6d\x36\xe2\x30\xd9\x2f\x2e\x6f\x01\xc4\x3e\x18\x4a\xc9\xee\x14\x14\x68\x4c\x71\xb7\x0b\x7a\x3a\xeb\x4d\xe5\x01\xdb\x50\xc9\x1c\xf6\xa9\xfb\x73\x52\xa8\xe9\xa8\x0c\x82\xa2\x88\x4a\x82\x37\x4a\xc6\xd8\xc8\x1b\x9a\x0e\xc6\xc6\x82\x82\xcb\xa1\x53\x19\x1a\xde\x18\xe3\x01\xb7\x72\x81\x0e\xf6\xcf\xee\xb1\xf8\x59\xad\x50\x89\x5b\x64\x09\x46\xf5\xd9\x4f\xc2\x33\x08\xc7\xb2\x39\xbc\x70\x62\xf5\x0b\x15\xf5\xfa\x33\x14\x29\x37\x05\xbf\x50\xd1\xf4\xf0\x25\x67\xe1\xa7\x3d\xd1\x6c\xae\x93\x46\x23\xd7\x9e\x17\xeb\x92\x7a\xf9\x5c\xd8\xea\xd1\xb2\xe7\xf2\xeb\xb7\x7a\xbd\xe9\x53\x0a\x16\x7d\xb9\xf5\x1d\xa8\x17\xf3\xd1\x92\x8d\x8f\xdd\x2c\xf3\xbc\x63\xf8\x1e\x2c\x59\xc0\x47\x9f\xd9\xf8\xd8\xcb\x32\xf8\xf8\x65\xc8\x10\x1f\xdd\xb0\x31\x81\x0c\x78\xf0\x59\xe6\xb8\x53\xc5\xfc\xce\x31\x7c\xcb\x2f\x4a\x29\x7c\xd7\xeb\xc8\xdd\x97\xdf\x57\x32\x5e\x7d\x5e\x16\x9f\x13\x09\xe3\x4e\xc2\xb8\x52\x30\xba\x47\xc7\xf0\x3d\xb8\x92\x91\x97\x56\xe4\x25\x1b\x0f\x2e\x65\xe4\x44\x45\x1e\x1d\xc9\xd8\x09\x1b\x0f\x26\x2c\x68\x7a\x04\xda\x33\x31\x0d\x3a\x31\x32\x78\xd9\xb2\xe3\x1b\x96\x65\x9f\xd9\xb1\x50\x6a\xd4\x9f\x81\x19\xb7\x73\x4b\x56\x29\xad\xd7\x9b\x9e\x52\xc5\x40\x82\xde\x56\xe6\x01\xbb\x43\x2b\xd7\x33\x93\xcb\x64\xa2\xa2\x74\x1d\x79\x2d\xf2\xf3\x44\xf9\x4a\x92\x19\xfd\xfc\x81\x08\x2c\x7a\x3e\xb3\x46\x4d\x4b\xa0\x40\xfc\xa4\x2f\x6e\x27\xda\x1c\x73\x45\x16\x20\xdc\x59\x51\x46\x16\xc5\xa5\x0d\x6f\xc5\xc9\x2d\xc2\x98\x44\x74\xd5\x9a\xac\x52\xf6\xfe\xec\xe9\x60\xb4\xd8\xba\x03\x22\x26\x6a\xa8\x35\x44\x16\xf9\x9d\x8c\x00\xfd\x74\x55\x66\xb3\x40\x29\xb7\xce\x4a\x58\x6b\x72\xab\xac\xa0\xc0\x6a\x34\x94\x93\xa4\x14\x5e\xca\xf0\x0e\x6d\x5e\xd5\x3e\xb2\xda\xcb\xc9\x28\xdc\x26\x4f\x6e\x71\xeb\xc5\x0b\x63\x64\x25\x5a\xe7\xc5\xe7\x33\x9c\x50\x8f\x84\xb4\x43\x38\xbd\x96\x14\xf3\xc5\x0b\x02\xd5\xc8\x29\xf9\x9e\xa1\x27\x02\x61\xe2\x91\x0e\x86\xeb\x10\x49\xcc\x21\xd7\x39\xf1\x30\x41\x28\x52\xa1\x67\xc4\xc3\x58\x4e\xe9\xfe\x71\x24\x67\xc4\x8a\xee\xbb\xea\x4a\xfb\x3e\xb1\x89\x8d\x64\x97\x5a\xb3\xe4\x96\x84\x15\xb1\x77\xca\x11\x22\x35\x95\x26\x24\xc4\x7b\x1a\xa9\xab\xab\x02\xa9\x45\x19\x93\x5b\xb2\x00\x11\x9f\xb1\x00\x15\xad\xd9\x40\x22\x26\x5a\x33\x2c\x67\x75\xcf\x42\xc9\xcc\x91\x16\x1b\x40\x0e\xd6\x48\x08\x12\x2d\xa6\xf2\x89\x16\xcb\x73\xe2\x20\xa2\xc9\x3a\x96\x6d\x8a\x7f\x39\x67\x88\x03\x3a\x83\x8a\x49\x4e\xf7\x5d\x0d\x76\x55\x91\x3c\x0b\xef\x64\x06\x94\xd2\x5f\x25\x10\x3d\x44\x38\x6f\x0d\x55\xba\x77\x70\x3d\x6f\x16\x18\x4d\x8b\x0b\x2f\xbc\x06\x33\xe1\xdc\x62\xcf\x5a\x84\xa1\x6c\x7f\xde\x2b\x91\xfc\x8b\x09\xb2\x33\xfd\xf2\x85\xa1\x10\x67\x19\xd8\xe6\x5b\xf1\xb2\x95\x3b\x16\x37\x85\x03\x16\xfd\xca\x50\x48\xdc\x12\x56\x1a\xe7\xa5\xdc\xc9\x36\x66\xbb\x99\xa6\x79\x82\x9a\xcb\x46\x06\xda\x2e\x4d\x5f\x31\x06\xd5\x21\xfd\x4d\x41\x34\x1a\x8d\x84\x12\x03\xe7\x12\xd3\x52\x72\xa9\xf4\x40\x92\x5a\x31\xf0\x02\x37\xd0\x31\x7b\x40\x1c\x21\x00\xf4\xd1\x35\xa1\xab\x52\xe8\xb2\x14\x9a\x00\x25\x65\xad\x89\x3e\x27\xd2\x7d\x97\x18\x10\xd4\x55\xfa\x12\x54\xa6\xeb\x55\xff\xd5\xb6\xca\x25\xd6\x72\x53\xeb\x2f\x2d\x94\x30\xf3\x0b\xe9\x01\x4a\x0b\x52\xa2\xaf\x9a\xad\x72\xc5\xa5\x72\x5a\x26\x0e\xb8\x5e\x07\x7b\x1f\xeb\x3a\x19\x07\x36\xa8\x32\x98\x74\x8d\xed\x4b\xe5\x14\x13\x58\x73\x1a\x6f\x63\xe1\x69\x2e\x88\x03\x13\x01\xa1\x62\x66\x89\xaf\x4b\xe0\x15\x66\xfa\x2e\x7b\xa8\x85\x5f\x56\x79\x13\x85\x9b\x4c\xdb\xcf\x16\xdd\xa7\xfa\x32\xd4\x32\x21\xac\xa9\x98\xe5\xc0\x6e\x72\xdb\x9a\x41\x05\xb7\xad\xd9\x3e\xa5\x89\x99\x82\x1b\x06\xe7\x60\x36\xa6\xb4\x6f\x05\x3d\xf8\xd7\x45\xfa\x18\xa1\x41\xa0\xb4\xc8\xef\x7b\xeb\x0c\xf4\xdd\x71\x13\x0d\x82\x8b\xd9\xc5\xac\x29\xff\x64\xe7\xfa\x53\x7d\x64\x4a\xb7\x1d\x7e\x30\x46\x83\x00\x9d\x65\x35\x8c\x8c\x12\xfa\xc6\xef\xa8\x45\xc6\x17\xb3\x06\x1e\xc0\x7f\x34\xba\x68\x5c\x6c\x29\xac\x67\x17\xe9\xe3\x8f\x32\xfd\xa7\x03\xb2\x7c\x00\x2b\x8d\x54\x81\xd3\xf7\xa1\x54\xfe\xf9\x51\x84\x3e\x8b\x5d\x6a\xf6\xe4\x4e\xd0\x91\x51\xca\x6d\x0e\x87\xcd\x93\x13\x87\x1c\xe4\x48\x37\xf3\x0e\x3c\x18\x6b\xdd\xdd\x3c\x13\xb4\x67\x23\xc3\x8b\x17\x2f\x5e\x34\x47\xe7\xe3\xf3\xf3\xe6\xb3\x3c\x8b\xe9\xfa\x8d\x1c\xe5\xf4\x03\xb2\xef\xe5\x55\x9c\x94\x2a\xb8\x6f\xaf\xed\xda\x4b\x55\xdb\xc5\x3e\x7c\x18\x0e\x6d\xf4\x3d\xb7\x28\xa7\x53\x2e\x66\xf7\x87\xeb\x1c\x0f\x40\x23\xc7\xf3\xbc\xa8\x29\x4f\xb4\xd3\xfc\xb5\x5d\x59\x8e\x62\x7f\x7d\x30\x1e\x93\x2b\xe8\xc6\x97\x2f\x95\xf8\xa6\x75\x7a\x7a\x7a\x0a\xc9\x17\xb3\x20\xff\x73\xd1\xba\x98\x35\x00\xbe\xc9\x47\x2a\xf3\x91\xcd\x6c\x5b\x39\x8a\x54\x3b\x49\xc7\x2e\x97\x65\x04\xf2\xff\x56\xf5\x32\x0f\xa9\xc8\x43\xca\x59\x36\x52\xf3\x14\x2b\x5e\xc7\xe9\x18\xd9\x15\x97\x30\xfb\x0f\x06\x92\x0c\x5d\x20\x74\xd1\x1c\xc8\xa9\x7a\x10\x15\xb2\x8c\x89\xa8\xe4\x48\xc0\x9e\x9b\xac\xe8\x8d\x68\xb1\x2f\x6c\x8a\x52\x9c\x65\xcb\xfc\x5b\x72\x2b\x2b\x75\x3e\x00\x9a\x10\xa5\x09\xf8\x4c\x00\x53\xa4\x3b\xb1\x69\x8b\x14\xcd\xd1\x9d\x18\x89\xf1\xc8\x1b\x2b\x08\xab\x91\x3c\x29\xdc\x47\x54\x45\xbb\x63\x30\x83\xdd\xa7\x3a\xec\x8f\xf7\x80\xc3\x5f\xe7\xa7\xc3\x08\x5b\xae\x6b\x90\xe5\x06\x62\xdf\x53\xc8\x8c\xda\x63\x73\x5e\x91\x38\x5c\x55\xe1\x70\xb5\x81\x43\x5b\xe2\x90\x50\xb4\x1a\xf9\xe3\x2c\x73\x6a\x0e\x6e\x5c\x69\x7c\x36\xeb\x4f\x1e\xa8\x7f\x0d\xc7\x2f\x63\x07\xff\x50\x4e\x85\x69\x67\x0c\x67\xa1\xfd\xcf\xc2\x20\xd2\x19\xe3\x87\x4a\x85\xd4\xf9\xe8\xac\xc1\xb3\x42\xd4\x40\x49\x96\x39\x0e\x6e\xa0\x10\x7e\xc9\xa9\xc8\x95\x97\x4a\xc5\x80\x24\xdf\xca\xe1\x97\xe4\x6b\x98\xc4\xd9\xd9\x8a\x65\xe7\x6c\x96\x9d\x5d\xaf\xb2\xe7\x3c\xca\x4e\x43\x91\x9d\xae\x62\x4c\x06\x17\x29\x1e\x20\x2d\x39\xc4\x17\x29\xfa\x2d\x8c\xb3\xe7\xec\x32\x1b\x86\x3c\x7b\x72\xc3\xb3\x61\x78\x97\xfd\xb6\x8a\xb3\xdf\x56\x8b\xec\xc9\xea\x2a\x3b\x65\x37\xd9\xdb\xa9\xc8\xde\x24\x9f\xb3\x13\x36\x95\x45\xe4\x9a\x24\x9d\xb5\xfa\xbc\x98\xe1\x40\xfd\x48\xf2\xa6\xbe\xf0\xe0\x22\x95\x98\xbc\x3f\xcb\x5e\x0c\xcf\xb2\xd1\xb3\xa7\xc3\x77\xe3\xd1\xe9\xc9\xf8\x0c\x67\x68\xf4\xf1\xeb\x58\xfe\x28\x5a\xd1\x59\x63\xfc\xd3\x01\x30\x97\xcf\x04\xbd\x7f\x7f\x16\xb8\xe4\xc5\x50\xfe\x7d\x76\x72\x16\x34\xfd\x8e\x4b\x9e\x9d\x9e\x05\xcd\xb6\xeb\x92\xa7\x27\xe6\x03\x62\x7a\x2e\x19\x9e\x98\x0f\x19\xd3\xf1\x5d\xf2\xee\xc4\x7c\x40\xcc\xa1\x6b\x89\xf2\xbe\x6c\x4e\x7f\x7a\xab\x87\x45\xf6\xa6\x65\xba\x83\x46\xff\xc2\xe3\xc7\x17\x38\x1b\x5d\xc4\x17\x02\xac\x68\x6a\xb6\x6d\x0f\xba\x48\x2f\xd2\x06\xde\x8a\xff\x97\x8c\x7f\x7c\xb0\x61\x08\x24\xe3\x7e\x3a\x50\x2a\x87\xd1\x1c\x19\x35\x2f\x5a\xc5\xb1\x18\xc7\xbc\xa3\xad\x23\xc4\x86\x3d\x42\xae\x92\x76\x4c\x3b\x47\x03\x9f\xb5\x1b\x22\x10\x60\x62\x02\x26\x07\x32\x04\xcc\xe9\x9f\xb9\xee\x38\x12\x98\xe4\x30\xb8\x84\x51\x04\xe3\x72\x30\x92\xc1\xc2\x4e\xaf\x5e\xd7\xd7\xf2\x79\x86\x44\x66\xc0\x24\x5c\xa3\x68\xd4\x91\xec\x6d\x5b\xfe\xf1\xe5\x9f\xae\xfc\xd3\x93\x7f\xfa\x63\x68\x2f\xa7\x09\x89\x29\x23\x48\xd0\x48\x92\x82\x7a\xfd\x83\x8d\xd3\x3e\xb5\x4e\x74\x92\x3a\xf0\x91\x27\xff\xf8\x63\x9c\x33\x42\xc0\x8e\xc4\x55\xec\x08\xd9\x47\x71\x69\x01\x99\xc5\xb5\x27\x19\x1e\x9a\x10\xed\x53\x64\xf3\x86\x24\x9a\xa3\x5c\xa8\xf2\x4c\x68\xf7\x86\xb9\x30\xd1\xd5\xfe\xbc\x37\xba\x2b\xa2\xf1\x23\xcf\x35\x5e\x13\x50\xdc\x8c\xf0\x81\xe7\xba\x8f\x7b\x6e\x23\x92\x3d\x71\x28\x5b\x7d\x24\xff\x78\xee\x58\x33\xa9\x5f\x4b\xee\xc5\x24\x52\x2a\xe1\x47\x18\x39\x20\xbb\xda\xc1\x11\xdd\x77\xab\x08\x40\x61\xbc\x24\xb4\x67\x23\x49\x42\xf6\x29\xe5\xad\x57\xa7\x6f\x27\x87\x3d\xd7\xc3\x76\xe4\x1f\xcf\x9f\x4e\x24\x38\x7c\x0f\xfd\x34\x1a\xab\x4a\xc0\x1d\x11\xdd\x57\xed\x17\xf6\x99\x95\x4c\xc9\x9c\x3a\x4e\x03\xb6\x8a\x19\x9d\x1b\x89\xd0\x8d\xf6\x95\x11\xd1\xbf\x00\x3a\xc9\x8f\x8e\x38\x37\x5d\xcd\xb2\xd1\x58\x9f\x36\x22\xdb\x07\x6c\x02\x47\x0b\x82\x62\x8a\xe6\x3a\xf3\x82\xa1\x84\x30\x0c\x45\xf0\xc8\x05\x93\x7c\xf7\x18\x85\x74\x5e\x5c\x56\xcd\xf3\xd9\x13\xe3\x5c\x34\x55\xaf\x43\x03\x2c\xe7\x54\xc6\xc1\x34\x99\xcb\xc2\x20\x85\xb2\x4b\x36\x72\x17\xd7\xe4\xa6\x51\xf8\xbb\x26\xbf\x8e\x92\xf1\x00\xc5\x03\xbb\x3f\xbc\xc0\x02\xae\xbd\x1d\x19\x9d\x94\x94\x26\x64\x9a\xcb\x95\xd1\x8a\xc6\xb8\x5e\x5f\xa0\x39\x23\x29\xae\xd7\xe7\x6c\x94\x8e\xd1\x8a\x4c\x5b\x93\x90\x4c\x49\xaa\xcc\x51\x8c\x7f\x25\xb9\x93\xec\x84\xbc\x07\x29\x25\xb7\x4b\x74\xd6\xbc\x21\xee\xf1\xfc\x1b\x6d\x9e\xe3\xfc\xb0\x74\x4c\x3d\xbf\x5e\xdf\x77\x8d\x00\x4c\xdf\x4c\xca\x23\x50\x71\x24\x43\x76\x92\x7e\x5f\x40\xcf\xba\x0d\xbf\x57\x70\x3a\x33\x22\x3d\x9d\xa5\xb8\x1d\x2e\x6e\x8a\x8b\xc3\x5a\xe5\xd5\xe4\x5e\xc9\xf1\x18\x1f\x88\xc0\x9c\x74\x0c\x00\x89\xc9\xa0\x1c\x04\xe5\xf7\x20\xf7\x8f\x13\xa5\xef\x86\xf5\x3a\x42\xb1\xfe\x56\xbe\x02\xc4\xb1\x6c\x2f\x12\x0d\xea\xf9\x98\xc4\x59\xe6\xf9\xfb\x94\x8a\x2c\x93\xbc\x02\x06\x05\x8f\xc2\xd9\x4f\x8e\x25\xb1\x50\xc7\x04\xa4\x52\x64\x5e\xec\xb5\xb0\x6f\x28\xc1\x38\x70\x50\xc5\x6a\x7b\x6b\xed\x28\x0b\x32\x27\x4b\x72\xa7\x98\xa9\x89\xfc\x99\x5b\xef\x36\x68\xf7\x42\xf9\x57\x96\x4d\x41\x3e\xb0\x50\xa7\x3c\x4a\xe9\x9d\x71\x29\x4e\x29\x9d\xd4\xeb\x8e\x23\xe3\x06\x37\xe8\xde\xf2\xa2\xe6\xae\x71\xb0\x6d\xb9\xa0\xcf\x77\x11\xbd\xb3\x04\x37\x37\x9c\xc1\xe0\xa1\x3b\x8c\xc9\x25\xba\xc3\xe0\x07\xf6\x0a\xcd\x85\x8c\x09\x50\x2a\xa3\x80\x44\xdd\x05\x31\x9a\xe0\xc1\x4e\xa1\xd5\x9e\xf6\x09\x2f\x5b\x64\x96\x89\x6e\x98\x62\x08\x6d\x9f\x63\xfa\xa4\xbe\xe1\x8f\x48\x93\x08\xf7\xe7\xe8\xd8\x82\x02\x9e\xe8\x13\x2a\x79\xc9\xcf\xca\x1f\x48\x71\xe2\x55\x07\x64\x39\x94\xe6\xbb\x88\xc5\x44\x48\xfe\x48\x42\x1a\x45\x63\xc9\x15\x09\x4c\x66\xca\x34\x35\x69\x80\x87\xa7\xf2\xba\x21\x49\x83\x7a\xee\x63\xe5\xfe\x6b\xdb\x65\x19\x81\x84\x74\x9a\x70\x46\x13\xa2\xb9\xc0\x38\xcb\x92\xe3\x58\x59\xbb\x26\x84\x53\x81\xf1\xde\x14\x31\xc2\xb3\x0c\x26\x11\x0e\x26\x03\x20\xb6\x41\x82\x16\x20\xc8\xc3\xad\x49\x84\x07\xa2\xd4\x78\x23\xa3\x0c\x52\xb4\xd8\x4c\x5b\x18\x47\x7e\x32\x7d\x6b\x50\x17\x03\x34\xa7\xc2\x4c\x0e\xb4\xa4\x97\x9a\x57\x99\xcb\x6a\xf0\x00\x4d\x84\x5c\xe8\xe0\x51\x68\x9e\xef\x05\xf5\x3a\xd2\x37\x61\x45\x1c\xf9\xf2\xdd\x39\xb9\x7e\x76\xe4\x39\x4f\x96\x30\xe5\x9e\x6b\x9f\xee\x68\x8e\x31\xc6\xc1\xbc\xd4\x80\xc6\x12\x58\xfb\x20\x96\x6d\x93\x03\x15\xd2\x15\x5a\x14\xe4\xa1\x42\xe7\x76\xcb\xa8\x72\x06\x66\x36\x41\x24\x41\xd8\xf9\xcb\x12\x60\x41\x4f\x60\x86\x63\xb5\xad\xaf\xd0\x48\x28\xc9\x9c\x36\xbc\x22\xa2\x35\x0b\xef\xb2\x4c\x80\x81\x0d\x11\xa0\x2c\x24\x13\x61\x2f\x25\x42\x6b\x06\x41\xcc\x62\x11\xa9\xd0\xb8\x0a\x41\x56\xaf\x57\xe1\xc8\x30\x38\x2b\x08\xc2\x8a\x61\xc4\xc1\xee\x6e\x83\x89\x69\x5c\x8c\xcd\x40\x56\x86\xc1\x71\x75\x4e\x42\x72\x37\x8d\x85\xb4\x8a\xac\xe8\xbd\xf1\x8e\xbd\x0f\x17\x07\xf5\x3a\x9c\x98\x78\x96\xa1\x84\x72\x52\x10\x69\x14\x21\x86\xcb\x02\xe7\x68\x8e\xb4\xfb\x98\x2b\x26\x2c\x07\x96\x6f\xc2\x25\x4b\x73\x0e\xa7\xf0\xde\x53\x91\x4b\xae\x6a\xed\x13\xc5\x32\x32\x54\xfe\x59\x80\x8b\xd8\x78\x35\xa5\xf0\x5a\xe7\xe5\x68\xaf\xa1\xd9\x31\xa0\xe7\x5a\x56\xbc\xe0\xcc\x32\xc7\x7f\xb5\xed\x88\x6e\xdf\x25\xb9\x38\x9f\xae\x8c\xd7\xb7\x50\x46\x2e\x28\x87\x12\x94\xc9\x1f\xb9\x3c\x56\xb9\x4f\xb9\x84\x68\x81\x1e\x90\xb8\xb7\x02\xad\xe4\x8c\xb5\x45\x60\x69\x2b\x9c\xcd\x90\xa7\xb4\xb3\xd3\x42\xb6\x68\x70\x49\x8b\x41\x79\x22\x1e\x74\xa7\xe9\xe1\xf5\xce\x21\xa7\xa7\x48\x39\xee\xac\xdd\xf0\xe4\x73\x34\x63\xb3\x5a\x94\xc2\xa5\x77\x14\xd7\xc2\x1a\x67\xd3\xe4\x2a\x8e\xbe\xb2\x59\xed\x8f\xe7\x4f\x25\x0b\x56\x4b\x78\xed\xd5\xe9\xdb\xda\x1c\xe8\xa7\xb9\x30\x86\x8b\x75\xc1\x57\xfa\x7a\x2b\x5c\x2c\xd2\x9a\x04\x5f\x13\x49\xed\xcf\x54\xcd\x3c\x4c\x6a\xb7\xd7\xd1\xf4\xda\x54\xc0\xd9\x22\x0a\x2f\x17\xac\x16\x4e\x79\x92\xa6\xb5\x70\xb1\xa8\x5d\xf2\xe4\x36\x65\x3c\xad\x85\xf1\xac\xf6\x99\xf1\x34\x4a\xe2\xb4\x55\x7b\x93\xc4\xa6\xfe\x03\x59\xb9\x5c\x36\x1a\x83\xb4\x16\x72\x56\x9b\x45\xe9\x34\x59\xf1\xf0\x8a\xcd\xa0\xe8\x6d\x24\x81\xb1\x1a\x67\xcb\xe4\xb3\x6c\x53\x5c\x0b\xe3\xda\xea\x66\x9a\x2c\xa3\xf8\xaa\xb6\x0c\xff\x4c\xb8\x44\x80\x85\x29\x6b\xd5\xde\xc1\x6f\x8d\xb3\x39\xe3\x12\xe3\xef\xbb\xaa\xfe\x33\x6d\x4a\x3c\xb6\x2e\xa9\x4b\xeb\xb4\xbc\xb9\x48\xa2\xd0\xb0\x04\xc1\x4e\xcd\x18\xcd\x29\x8b\x6d\xc3\xfc\xda\xee\x5e\xd6\xa4\xe0\x7f\x4b\xf1\x30\xd9\xcf\x84\x1c\x41\x85\x29\xc2\x92\x82\xc8\xee\x35\x6e\x9b\xd8\x8c\xd4\x2c\xdd\x80\x65\xf8\xc5\xb8\x73\x6f\x7d\x67\x23\x97\x51\xdc\x5c\x86\x5f\x0e\x9c\x6d\xaf\x01\x4f\x44\xb5\xfd\x51\xe9\xdd\x0c\xcb\xbc\xba\x64\xb2\x0d\xe6\xbf\x03\xf9\x27\x60\xc1\x0d\x38\xcf\x79\xba\xd1\x14\x89\xec\xee\xa6\xc8\x86\xfe\x3f\xd1\x14\x99\x76\xcc\x4a\x4d\x29\xce\xf0\x43\x5b\x71\x45\x39\xb9\x84\xfb\xc9\x9c\x25\x8e\x91\xd0\xe7\x06\x41\xe1\x8b\xe4\x8f\x25\x19\xe2\xf7\x44\x20\xed\x0e\x0c\x72\x90\x88\x7a\x3f\x47\xc5\x43\x0f\x8d\x46\x84\xc5\x28\x1a\x97\x2c\xd9\x65\xc4\x88\x8d\x11\xd7\xfe\xf6\x47\xd1\xd8\x72\xb3\x05\xc6\xb4\x82\x8e\x8c\x27\x85\xbf\x56\x21\x17\x8c\xc3\x43\x4f\xca\x3c\x59\x5b\xf5\x28\xcb\x0f\xad\x7f\x6a\x94\xac\x1c\xb5\x1f\x41\x4c\xbe\x3b\xd9\x6f\x43\xbd\xb3\x14\x89\x4e\x40\x29\x93\xaa\xfd\x2f\xcb\x5c\xf0\x52\xab\xeb\x93\xc1\x88\xea\x3d\x51\x06\x12\xaa\xec\x30\xe4\xce\xa8\x6d\x49\x64\x74\x48\xf5\x7e\xe9\x92\x94\xaa\xcd\x52\x7e\xaf\xa8\xd9\x31\x65\x68\x41\xcd\xb6\x29\x43\x53\x5a\xda\x3b\xb3\xcc\xd5\xda\xf0\xe6\x10\x5a\xa9\x6c\x90\x6f\x19\x70\x89\xfc\x56\x1b\xfa\xfd\x21\x88\xc0\xb9\x53\xc9\x91\x18\xd7\xeb\xda\xd2\x7e\x24\xc6\xd6\x56\x52\xbc\x76\xb4\xef\x69\x1f\xaa\x7f\x58\xa3\x14\xc3\x5e\x34\xfa\x43\x8c\xe2\xb1\x12\xb3\xf1\xa2\x2c\x6c\xe2\xcf\x17\x09\x28\x2b\xe8\x2c\xe0\xa7\x31\x0f\x81\x1b\xc9\x7d\xd7\x3c\x29\x22\x77\x2c\x91\x1b\x43\x16\x2d\x4d\x69\x63\xda\xf0\x58\xfb\xf1\xa2\xd1\x63\x9d\xc7\x2b\xf8\x4e\x1f\xf7\xe4\xb1\xdf\x78\xef\x0c\xef\x52\xda\x08\x1b\xfd\xc7\x49\xc9\x98\x92\x36\xa2\x46\xfb\x71\xdc\xf0\xfc\xc7\x3c\xcf\x2a\x42\x7a\xaf\xdf\xe3\x32\x87\x82\x69\xfe\xf4\xcc\xe4\x72\x75\x79\xb9\x28\xf9\x3b\xfa\x53\xec\xf2\xce\xf7\xce\x32\x47\x3c\x11\x1b\x6e\x37\x9b\xde\x63\xb0\xd2\xe3\xc9\x2a\x9e\xa1\xa6\xf7\x98\xe1\xc0\x8a\xb0\x0f\x31\x6f\xc4\x4e\x6d\x7a\xcb\x9b\xc9\x4a\x4c\xb5\x11\xb1\x9c\x7e\x4e\xc3\x29\xee\xd4\x5c\xd8\xd2\x9b\x4c\xc6\x37\x1d\x4c\x78\xe3\x35\xfa\xef\xff\x46\xec\xa0\xe7\x82\x76\xb6\x80\x30\x7b\xd4\x73\x41\x2f\x7b\xfd\x46\x20\xe7\xa3\x43\x9c\xc0\xc1\x04\xbe\x3f\x82\xef\x1c\xd0\x7e\xfe\xe8\x90\x44\xfb\x1b\xf9\xa8\xbf\x41\xe3\x58\x66\xf9\xf8\xb1\x5a\x73\x59\xf3\x0a\xe0\xe7\x14\xa4\x3d\xaf\x05\x4a\x18\xc9\xed\x78\x5e\x09\x7a\xa0\xef\x6a\xd4\x2d\xcf\xc1\x95\x25\x14\x7f\x6d\x53\x14\x8a\x04\x88\x5a\xb5\x38\x82\xe1\xbd\x42\xd7\x8c\x63\xeb\xd8\xaa\x25\x44\x08\xf1\x11\xcf\xdf\xb1\x1b\x83\xd8\xa2\x51\x94\x7f\x25\xe7\xf9\xc8\x69\x82\x6a\xbb\x24\x34\x3d\xf7\x71\x3c\xf2\xc6\x8d\x5b\x14\x8f\xfc\x82\x82\x48\x06\x29\x1a\xb8\x81\xd3\x80\xc7\x5a\x46\xee\x78\x10\x05\x4d\xeb\x75\xb0\xe7\x16\x92\x31\x89\x8a\xa7\x53\xb4\xad\x38\x02\x5f\xd5\x8b\x24\x66\xea\x09\xba\x4b\xe0\xbe\x24\x23\x37\x60\xc5\x31\x23\x90\x7c\x0d\xb6\x8e\x1d\xcd\xb8\x08\x90\x58\x8b\xa5\xc0\xdd\x2c\x04\xf2\xb4\x46\xb4\x65\x4a\x0e\x6c\x10\x89\x0d\x4c\x98\xca\xf6\xbc\xfd\x6a\xcf\x48\xaf\xfb\xb8\x69\xcf\x3e\xcb\xb1\xed\xd7\x24\x36\x20\xf1\x81\xd7\xb5\x20\xbc\x14\xb9\x0d\xc0\xfe\xfe\xe6\x86\x61\x88\x0f\x1c\x12\x5d\xf3\xc4\x8f\x76\xfb\xbb\x2e\xe3\xba\xbd\xc9\xff\x0a\xb2\xf2\x8b\x66\x76\xd1\xc0\x03\x34\x08\xd0\xc5\xec\x31\x1e\xb5\x6a\x63\x90\x8d\x37\xf0\x45\x00\x3f\x68\x10\x98\xaf\x8b\x96\xcc\xa2\x6e\xf5\xde\x43\x69\x55\xf8\x9d\x2c\x3d\x6a\x36\xc6\x83\x91\xdb\x3c\x22\xad\xf1\x63\xfc\x41\x81\x2c\x47\x0e\xab\x22\xcf\xab\x22\x4f\x20\xf2\x6c\x3b\xe1\xe5\x77\xc3\x3d\x55\x88\x16\x73\xfc\x5c\x6c\x38\x87\x26\x60\x0e\xac\xb4\x52\xf5\x18\x01\xa1\x19\x24\xf4\x7e\x99\x06\xac\x4c\x02\xc9\x2c\x50\xca\x06\x29\x19\x42\x1a\x90\xb7\x75\x10\x6a\x4b\x63\x49\xd0\x06\x60\xf1\xce\x82\xa4\x55\x22\x9e\x0c\x83\x7a\x85\x91\xb3\xcb\x83\x2b\x50\x09\x4a\x69\x3a\xf2\xc6\x83\xa6\x17\x78\x24\xa1\xf7\x77\x81\x4b\x66\xc1\x2d\x4a\x47\x9f\xd9\x18\x3f\xe6\xe4\x1a\x02\x77\x2a\xb0\x84\xc0\x95\x0a\xa4\x10\xb8\xd4\x29\x32\x74\x22\x10\x50\x65\xd0\xaf\xc2\x8f\xf9\x1a\x2a\x7d\xff\x1d\x95\xfe\x25\x50\x3a\xf2\xc7\x84\x63\x32\x54\x81\x36\x04\x6e\x55\xa0\x03\x81\x99\x0a\x74\x21\x70\xad\x02\x3d\x08\x2c\x55\xa0\x0f\x81\x54\x05\x0e\x65\x60\xad\xb4\x59\x28\x4d\x64\x8f\xae\x83\x2d\x17\xb7\x49\xbd\x8e\x9c\x39\x4f\x96\x4e\x14\xd7\x92\x2c\x73\x44\x02\x5f\xb8\xec\x14\xb1\x42\x49\xb7\xb4\x0a\xca\x4e\x06\x9f\x0b\xf0\xb2\x47\x64\x9e\x5f\xd9\x3c\xe1\x0c\x09\x3c\xe0\xf4\x1f\x6a\xf8\x03\x84\xe0\x1b\x9e\x4e\x2a\x0f\x53\x93\x97\xc2\x84\x6b\x7f\x09\x90\x00\x5f\x98\x70\x1c\xdc\xdb\x99\x02\xd7\x28\x6a\xbb\xeb\x35\x7a\x22\x50\xd2\x92\x0d\xc2\x04\x3e\x45\x82\x31\x81\xb9\x81\x5b\xcb\x94\x46\x65\xf8\x49\x6b\x28\xa3\x34\xe4\x18\x18\xfa\x77\x02\x25\x98\xc0\x34\xac\xd7\xe1\x89\x1d\xbd\x41\xc2\x03\x08\xf1\xb6\x0c\x0d\x13\xcb\xa1\xd8\x5f\x25\x32\x6e\x8e\xf1\x9a\x03\x28\xd4\xb4\x89\x43\x9c\x96\x93\x9b\xf4\x23\xe3\xa1\x68\xe0\x06\x1c\x3f\xb6\x76\xd4\x7f\x94\xe0\xe5\xe7\xf1\x5a\xde\x33\xc2\xf8\xc4\x69\xb2\xc2\x3b\x8e\xff\x18\x09\x63\xe4\x9e\xbb\x37\x22\xcc\x90\x66\x38\x81\x1a\x08\xe0\xb3\xa6\x15\xa5\x4f\xe6\x82\x71\x90\x5e\x35\xf3\xde\x26\xe5\xf1\xa0\x0d\xd1\x6c\x3c\x00\xc5\x76\x84\xfd\x41\x54\x7b\x90\x2a\x0c\x6b\xcb\xe2\x57\x1a\x1b\xf7\x46\x8d\x58\x32\xb7\x4f\x90\x20\xc5\xa1\x01\x5e\xbe\x44\x37\x8c\x47\xc9\x8c\xd4\xd4\x63\x21\xb8\x7c\x8c\xc8\x8f\x7b\xc5\x69\x22\x2f\xa8\x0a\x90\x9a\x02\x80\x5b\x3f\xa0\xb8\x1c\xce\x66\xcd\x28\xfe\xcc\xb8\x60\xb3\xe6\x4d\xc8\xc3\x65\x85\xf6\x72\x04\xd2\x90\x98\xc4\x34\xc2\xe4\x85\xb6\xfe\x3e\x17\x72\xb9\x6f\x0a\xd4\xf8\xa0\xc1\x03\xd9\x09\xc6\xed\xba\xe5\x27\xe0\x85\x3a\xdc\x17\x3e\x18\xa8\xd8\xa0\x80\x21\x3d\x11\x48\x28\x22\x88\x49\xaa\x43\x7a\x02\xef\x95\x16\x25\x8a\xb4\x4e\x54\x94\x65\x11\x49\xeb\x75\x70\x4a\x03\xee\xb6\x8c\xa3\x95\x46\xfa\x38\xc6\x24\xac\xd7\xc1\x71\x96\x73\x02\x36\x1f\x67\xc5\x37\x6e\x84\x32\x43\x52\x28\xfd\xc0\xa6\xcc\xca\x9b\x72\x22\xf3\x44\xf5\xfa\xc6\xce\xcc\x48\x98\x65\x29\xc6\xeb\x73\xd1\x9a\xc7\xf4\x9d\xe5\xa0\x99\x9c\x0b\x23\xae\xad\x70\x80\x7a\x2e\x40\x58\xab\xb6\xc8\xbf\x0b\xfa\x41\x20\x8f\x38\xe1\x6c\xe6\x60\xf2\x13\x04\x9b\x1e\x71\xd2\xd5\xa5\xe0\xe1\x54\xd8\x6e\x77\x7e\x2f\x2d\x96\xea\x55\xd0\x40\x15\x2b\x46\xae\xfd\x8d\x79\xad\xcf\x4c\x69\xee\x75\xb4\x89\x78\x03\x89\x66\x7c\xec\x0e\xe4\x0f\x3e\x40\x71\x73\xa3\x8c\xc4\xcb\x94\xc2\x81\xce\xb5\x91\xa7\x61\xe5\x69\xc6\x18\xe3\x2c\xb3\x7c\x12\xff\xd3\xd2\xd2\xb6\xae\xe7\xd5\xcb\x39\x03\x9b\x5d\x57\x5a\xd9\x41\xa1\xc1\x09\x0a\xde\xd8\x3c\x9e\x98\x3f\x24\xa0\x9d\xec\xac\xb9\x79\xde\x4e\x0b\xc8\x2d\x65\x9e\x33\xa3\x68\xf2\xd1\x21\x1b\xd9\xde\x8b\x69\x65\xce\xd1\xc7\xb1\x7a\xce\xe8\x63\xf9\x70\xbf\x08\xe3\x2b\xb4\xb5\x30\x5f\xa9\x03\x3d\x29\x2f\x4d\xdb\x2e\xb6\x26\x92\x1a\xd8\x5e\x5c\xb3\x9a\x84\xb1\x0a\xaf\x98\xb6\x49\x58\x71\x70\x53\xdd\xaa\xbd\xdf\x2e\x8c\x6c\xb3\x07\x53\x2e\xdd\x10\xd5\xec\xe8\x47\xbb\xfa\xc0\x8a\x51\x86\xf7\x85\x91\xaf\xd8\x30\x8c\xd5\x3d\x0b\x87\x6d\x26\x67\x59\xcf\xf7\xfb\x87\xee\x21\xb3\xbc\xc0\x0a\x6e\x13\x3f\xc4\x1e\x89\x86\xc0\x8f\x2c\xb2\xce\xf9\x86\x8a\xb2\xad\x12\xb8\xad\x0f\x88\x9b\x8c\x07\x65\xdd\x3e\x8b\x7f\xb6\xde\x88\x7a\x08\xac\xf1\x2e\xb3\x01\xb6\x88\x86\x28\xeb\x49\x28\x6e\x0e\x64\x2e\x19\x31\x62\x24\xa7\x63\xe2\x96\x5e\x1f\x4a\xf8\x96\xeb\x98\x32\x65\x67\x83\xf7\xda\xc1\x93\xcc\x01\xeb\x30\x40\x28\xa1\xe7\xc6\x8f\x0c\x3e\x56\x7a\xdd\x09\xae\xf4\x44\xaa\x28\x61\xc9\x43\x0d\x09\xe9\x57\x86\x12\x25\x7c\x77\x49\x62\xe9\xc2\xee\x6d\xb9\xac\x0c\xb7\xdd\xf1\x10\xcb\x99\x5c\x58\x56\x54\xd5\x69\xe0\x21\x2b\xdc\x54\x55\x95\xe4\xda\x7a\x2d\xa5\x40\x08\xaf\x95\x77\xcb\xab\xab\x87\xad\xaa\x6f\x19\xfb\xf4\x61\xdb\x8f\xe6\x8b\x17\x0f\x17\xd3\x42\x93\x52\xc9\x88\x23\xe7\xea\x4a\x56\xe8\x18\xa8\x4e\x11\x5b\x11\xfd\xe2\x85\xac\xc6\xb1\x60\x59\x09\xdb\x29\xda\x71\x88\x72\x0e\x29\x1b\x66\xbb\x0e\xd1\xb1\x2f\x5e\x14\xde\x60\x3e\x18\x7f\x9d\xaf\x36\x72\x69\x87\x21\x2f\x0a\x17\x9e\x57\xc5\xa7\xac\x38\xb7\x4c\x96\x58\xe7\x01\x85\x54\xe1\xda\x53\x35\xaa\x08\x6b\xac\x0b\x57\x9f\xba\xd9\x2a\x02\xfc\x6c\xe8\x7e\x30\xfd\xa1\x9b\xa9\x0a\x7e\xd3\xcb\x8c\x5f\x78\x99\xd1\xc0\x54\x83\x37\x0a\xc2\x14\x15\xa3\xe8\x01\xef\x9e\xef\x91\xf3\x3b\x38\xa9\xf9\x3d\xb1\x84\x72\xd0\x9d\x85\x84\xee\x77\xd5\x93\x79\x44\x5f\x35\xea\x77\x87\xfc\x43\x19\xd9\xfe\xbe\xed\x1f\x74\xc9\xc6\xb4\xfd\x18\x29\x0f\x7e\xba\xa6\x13\x87\x8c\x9c\x93\x13\xe5\xd6\xe7\x44\x79\xc5\x11\xcc\x78\x85\x01\x39\xdf\x89\xf1\xf8\x22\x43\x47\xaa\x9e\x93\xdc\x8a\x5c\x96\xcd\x07\xe1\x24\xd9\xe1\x58\x85\x0d\x84\xd6\xfb\xde\xb2\x08\xcd\x32\xd1\x9a\x24\xb6\x89\xe8\xce\xac\xaf\x59\x1c\xb1\x58\x18\x7b\xee\x13\x89\xdc\x89\x33\x26\x9f\xb5\x47\xd6\xed\xea\x05\xe8\x90\xdf\x22\xe3\x91\xfc\x77\x50\xcf\xd0\x12\x96\x90\x83\x19\xb0\xe2\x63\xf6\x5d\xbc\x27\xfb\xe3\x44\xf7\x88\xfc\x6d\xcb\x3e\x39\xd1\xbd\xa2\x29\x46\xee\x30\x47\x07\x21\x47\xee\x13\xc7\x44\x76\x4c\xe7\x9c\x38\xe4\xb7\xfc\xfb\xc4\x21\x2f\x0c\xee\x27\x0a\x7b\xc0\xbf\x42\x3a\x54\x68\xee\x17\xae\x8b\x96\xf0\x1a\xe6\xd2\xb8\x6d\xd0\x82\x58\xe5\x4f\xd2\x08\x65\x97\xda\xa1\xa4\x0e\x7b\x1a\x91\x65\x3e\x5e\xb2\x3c\x8c\x17\xa0\xb1\x94\x45\x96\xce\x98\x5c\x31\xd5\x27\xa9\xea\x93\xa1\x31\x9d\xdd\xf7\xa0\x5b\x52\x59\x75\x9a\x9a\xaa\xb5\xb0\x17\xaa\xce\xc5\xc0\xa9\xaa\xda\x84\x3d\xed\xde\x29\xcd\xab\x96\xe5\x8b\xaa\x53\x59\x24\x75\xc6\xe4\x52\x57\xbd\xe2\x64\xa1\x6a\x3f\x35\x56\xbd\xb2\xf6\x79\xc2\xd1\x7b\xe4\x9c\xee\x70\xb4\xf0\xdf\xff\x6d\x3c\x2b\xe4\x7c\x2f\x02\x05\x27\x9c\x93\xcb\xd3\xd3\x5d\xe4\x72\x57\x61\xbb\xec\x29\xcc\x03\xb7\x2c\xe6\xb6\x92\x4f\xb5\x47\xe3\x6d\x5a\xec\xb9\x8f\xb7\xa1\xdb\x90\x65\xd9\xee\xae\xb2\xdf\x2e\x7c\xea\x90\xde\x8e\xd2\xac\xfd\xed\xd2\xa7\x0e\xe9\xef\x2a\xde\xf9\x8e\xe2\xa7\x0e\x39\xdc\x55\xbe\xfb\x3d\xe5\x4f\x1d\x72\xb4\x0b\x40\xaf\x1a\x00\x4c\xf5\x62\x18\x88\xb3\x4c\xcd\x84\xb7\x62\xbd\x9e\x9a\x70\xa7\x0e\xf9\x4d\xd2\x43\xf8\x86\xc0\x07\x13\x80\xd0\x0b\x4c\x56\x9c\xaa\x41\xfc\x79\x65\x24\xa2\xc7\xf4\xe8\xe7\x15\x6f\x50\xe7\xd4\xc1\x2b\x86\x56\x9c\x70\x66\x71\x78\x53\x6e\x48\xcb\x04\x48\x8b\xec\x6b\xe4\xb8\x2d\xa7\x01\x37\xe4\x09\x47\x00\x73\x07\xc0\x6b\x00\x38\xe5\x6a\xca\xcf\xcd\x6a\x2b\xce\x6c\xf9\x92\xfb\xaa\x7d\x75\x7d\x4d\x62\xf6\xe4\xf2\x52\x7b\x68\xf9\x6a\x47\xbf\x09\x97\xcc\x51\x90\xae\x39\xbd\x2a\x4e\x4c\x05\xb6\x33\x6e\x8b\xd8\xd7\xd7\x5c\x1e\x2b\xe8\xdf\x05\xb9\xe6\x2d\xe3\xf0\xa0\x42\x70\x13\x53\x96\x65\x60\x32\x15\xd1\xe7\x42\xbf\xb1\x0d\x2f\x02\x71\xf1\x76\x8e\xb4\xeb\xb4\x84\x16\x40\xf4\x9b\x05\xc0\xe8\x44\x38\xcb\x1c\xe3\xbe\xc0\x21\x21\x18\xe2\x9d\x21\x31\x4a\xc6\x78\x20\xff\x5a\x4c\x51\x8c\x03\x88\x2f\x31\x62\xea\x4e\x17\x85\x59\xb6\xed\x12\xc7\x54\x88\xd4\xb5\x05\x79\x22\x40\xa3\x6e\x0d\x2d\x92\x47\xa7\x8a\x33\xa2\xba\x61\x57\x27\x1b\x99\x6f\x16\xcd\xe7\xd5\x4a\x5e\x46\x75\x68\x43\x74\x6b\x7b\x50\x96\xa9\x28\xa6\x4a\xb8\x2d\x41\xe2\xea\x7c\xe9\x6d\x24\xb7\x9c\x88\xf6\x58\xe7\x31\x8a\xed\xbb\x88\xe6\xe6\xe5\x04\x26\x82\xfe\x89\x04\xc6\xf7\xd3\x30\x65\xea\x42\x2e\x48\xe8\xef\xc2\x74\xd2\x81\xe7\x2b\x8d\xef\x3d\xc8\xa0\x2e\xe8\x4a\x39\xec\x64\xc3\x16\x94\x41\xb4\xed\x2c\x7a\xad\x04\x09\x85\x74\x79\xf6\xf4\x58\x29\x87\xde\x43\xec\x1c\x3d\xd6\xb1\x73\xc0\x8d\xa0\x9d\xde\xee\xb1\xae\x9d\x41\x4e\x93\x22\xbd\x19\xe1\x83\xc3\x5e\xa7\x9c\x05\xae\x18\xcb\x79\x7a\x6e\xe7\x30\xcf\xa4\xcf\x97\x81\xf2\xbc\xd5\x8c\x8d\x2d\x2d\x1f\x24\xc1\x04\x25\x6a\x3c\x59\x3c\x7b\x3b\xa7\x5b\xba\x60\x72\xa8\xf2\x73\x1c\x62\xf4\x4f\x04\x4a\x9a\x25\x62\x21\x4f\x78\x59\xb6\x63\xb8\x65\xac\xbe\x33\xb1\x44\xf7\x83\x98\x07\x9c\x9b\xf1\x65\xa5\x31\x13\x54\x79\x05\xcc\x1d\x3f\x12\x97\x78\xb8\xe9\x55\x8e\xce\x46\x66\xfb\x98\xa1\xa7\x88\x0e\x3c\x6a\x37\xda\x5b\x60\xf4\x1c\x78\x08\x48\xc3\xdb\x2a\xa5\xfa\xfb\xa1\x42\xd6\x89\x46\x63\xa1\x35\x98\x11\x6e\xf4\x37\xa0\x19\x5f\x8e\xdf\x0f\x10\xd9\x27\x14\x00\xda\xf4\xb6\xe1\xc2\xc4\xd1\x5f\x72\x0e\x7e\x2f\xf8\xc6\x66\x73\xd5\x14\x15\x7a\xf8\x2c\x39\x14\x11\x0d\x2a\xa7\x6b\x53\x70\x24\x1a\xc8\x1e\x5e\x37\xe8\x99\x0d\xb0\xb4\x44\x65\xf6\xcd\x31\xd0\x6b\x64\x47\x05\x3d\xd6\x01\xf8\xa4\xc7\x3a\x1b\x25\xcd\xfa\xdb\x51\xd2\x63\x6d\x55\xd2\x63\x6d\xdc\x2c\xde\x5f\xd3\x79\x8d\x6c\x4d\x3c\xec\x2c\x19\x16\x87\x22\xa6\xa5\xd5\xc1\xb2\x0c\xe9\x1b\xd2\x28\x7d\x2f\xa6\x08\x0f\xb6\x25\x39\xc1\x46\x94\x76\x9f\x43\xcf\x8d\xa3\xc9\xbd\x9d\x6e\xcb\x6e\x92\x54\x68\x1a\x2e\xd4\x0a\x9d\xf3\x64\x59\xfd\x38\xfe\xe6\x1d\x19\xdc\x02\x96\x74\x2b\x60\x27\x62\x36\x95\x1d\x9c\x0b\x74\x2f\x12\x90\xc3\x10\x09\x3a\x60\xeb\x5c\xc8\x63\x0b\x67\x30\x6e\x5d\xaf\x96\x61\x1c\x7d\x65\x68\x5f\x94\x04\x37\x95\x0f\xf6\x18\x54\xdf\x24\xb7\x55\xaf\x24\xa8\xcd\x89\x27\x4b\x65\x4e\xcc\x54\x01\x91\xfc\x0f\xb7\x0c\x5a\x04\x6d\x13\xc9\xff\x64\xcb\x44\xf2\x50\xbb\x44\x52\x6a\xd5\x15\x13\x55\x59\xcf\x94\x7b\x7e\x45\x4c\xc7\x4a\xef\x65\xc4\xc6\x5a\x28\x06\x25\x75\xc5\x4f\x44\xc5\x4e\xac\xfc\x5a\x17\xb6\xf8\xaa\x80\xba\x4d\xa8\xba\x40\xa2\x97\x70\x1b\xac\xee\x6b\x8d\x9a\xde\xe6\xee\x9c\x65\xfb\xdc\xea\xc3\x7a\x1d\x6d\x92\x78\xa4\xb6\xd7\x0d\xda\xaf\xb0\x2f\x16\xde\x2f\xdc\xba\x75\xb6\xbe\xd5\x23\x05\x46\x2e\x6b\x98\x20\x61\xdf\x49\xeb\x76\xa8\xfb\xab\xff\xeb\x0d\x39\xb6\x1b\x52\x42\x1e\x76\xca\x12\xea\x76\xde\xa2\x19\xe2\x96\xb1\x78\xcb\xd8\xc7\xf8\x38\xb5\xdb\x42\x12\x7a\xa9\x1e\x30\x7a\x22\x8a\x57\xfc\xf6\xf7\xd1\xe6\xf4\x8f\xec\x40\xb2\xd1\x4c\x04\x8d\x8b\x69\x9c\x65\x0e\xc2\x8e\x3c\xa6\x0f\x34\x00\x75\xd3\x14\x11\x8e\x03\xd3\x5d\xfa\x9a\x50\xc6\x41\x69\xac\x14\x10\xbc\xbc\x8c\xce\x90\xd8\x85\x14\x1c\x19\x65\x9a\x79\x1a\x2e\x2b\xc7\x8a\xc4\xdf\x3b\x5a\xf1\xff\xc4\x68\x49\xdc\xad\xf1\x42\xdc\x0e\x92\x6f\xce\x3d\x78\x0d\x8c\x1f\xd3\x6f\x8c\x73\xa9\xd5\x6f\x79\xd5\x8a\x2b\xd3\x2d\x99\x0f\xe2\x35\x17\x6e\x7a\x10\x5e\x93\xb7\x41\x55\x4e\xfa\x6f\xc1\xd2\x23\x64\x01\xfb\xc7\x8e\x0b\x9e\x99\xc5\xb8\x2f\xc2\xf8\x8a\x7e\x84\xd3\x8b\xbe\xb1\xf8\xa7\x15\x90\x84\x8f\xfe\x06\x11\xcb\xf0\x0b\x7d\xaa\xbe\xa2\x98\x9e\xc1\xd7\x4d\xc8\xd3\x28\xbe\x7a\xbe\x08\xaf\xd2\x8a\x7a\xe0\xfd\x4c\x4d\x9f\x54\x6d\x25\x2d\x0c\xe3\xc3\x69\xeb\x52\x9c\xe1\x42\xe5\x6b\xdb\x00\x4e\x3b\xa3\xcd\x5f\xda\x67\x58\xdb\xbb\xdc\xaf\xe2\x48\x04\x9c\xdc\xf0\x28\xe1\x91\xb8\x0b\xde\x8c\xf8\x78\x5d\x6c\xaa\xca\xeb\x6b\xb5\x34\xad\x65\x0a\x35\x45\xfe\xb9\xc6\x44\xac\x11\x03\x55\x3b\x6c\x1e\xef\x36\x7a\x67\x71\xa3\x81\x81\x52\xf3\x51\x3c\x6e\xc9\x9a\xc7\x88\x59\x81\xe2\xb1\x88\x0d\xfa\x6e\x73\xc2\xf0\xbe\x58\x69\xd7\x57\xbd\xa4\xe6\xe4\xff\x8b\xec\x37\x30\xdf\xff\x29\xeb\xbd\x01\xe2\x3b\xd8\xee\x8d\x12\xff\x11\xcb\x8d\xff\x0f\xb0\xdb\xf8\x7f\x82\xd5\xc6\xdf\xc9\x66\x37\xe9\x0f\x72\xd8\xdf\xcd\x5f\x2b\xc8\xc0\x5b\x7f\x37\x67\xad\xcb\x48\xae\xfa\x3f\xe1\xa9\xcd\x75\x32\xfd\x49\x28\xc6\x0a\x5e\x88\xa0\x95\x4a\x88\x7a\xc1\x8c\x72\xef\xff\xc5\xab\x4f\xf9\xd3\x2a\x0c\xd4\x59\x55\x1a\x34\x19\x3e\x8d\xe0\x0b\x62\x2d\x41\xd8\x58\x73\x73\xda\xf6\xe0\xa1\x5a\xe1\xe5\x84\x34\xc8\xeb\xd6\xba\x2f\x05\x0a\x12\x81\x20\xc7\x03\xdc\x22\x06\x2c\xf7\x34\xac\x5d\x28\x06\xcc\xf2\x5c\x6b\x14\x69\x98\xe5\xb9\xb6\xa4\x61\x53\xc2\x36\x45\x78\xad\xd1\x95\x9c\xe8\x0e\xe1\x0c\x30\xa9\xe5\x5d\xd1\xb0\xac\xaf\x4e\xdf\xaa\xb7\x6a\xe9\xa6\xa5\x4d\x35\xd1\xc8\xf5\x1c\x05\x05\x33\x14\x46\x38\x15\x83\xd2\xe6\xb8\x92\x27\x9e\xc0\xea\xa5\x1a\xd7\xfd\xa3\x7d\x56\x1d\x1d\x9b\x88\xc1\x39\xe2\x44\x0c\x4a\x2e\x2f\x46\x67\x63\xdb\x75\xc3\xe8\xe3\xd8\x09\x1e\xca\xf0\xd1\xc1\xc1\x99\x7a\xad\xc3\x7e\x74\x3a\x6f\x18\x1e\x68\xfc\x54\x17\x21\x6c\x27\x22\x1c\xec\xe8\xa0\x46\xcf\xdd\x5a\x42\x8f\xe5\xc4\x2e\x17\x2f\xb4\x88\x3e\x3a\x44\xb6\xc6\xf9\xe8\x60\x1c\x58\xed\xfa\x46\xab\x76\xb5\x49\xf3\xfa\xe9\xcd\xc6\x1c\xdc\x39\x34\xfa\xde\xdf\x9c\x0f\xd0\xc1\xe3\x9a\xf6\x92\x3c\x89\x1a\x4e\xed\xf1\x01\x56\x4a\x02\x8c\xea\x9c\x0e\x11\xd4\x71\xf6\x34\xb0\xd7\x4a\x59\x13\x8e\xae\xb9\xee\xa4\xd5\xf6\x81\x81\xbf\x12\x53\x27\x30\x01\xb8\x64\xfb\x98\xc4\x0c\x80\x7d\xd4\xe2\x52\x4e\x9d\x91\xd3\x60\x8d\xbf\x21\x67\xfc\x37\xb9\x59\x1e\xdb\xaf\x1f\x6a\x45\x4d\x3d\x25\xf4\x0b\x88\xe0\x39\x35\xc8\x5f\x08\x8c\xa8\x68\xfc\x6d\xe4\xe0\xf1\xdf\xaa\x24\x97\xbc\x11\x37\x9c\xca\x8e\x73\x1a\x91\x99\xd9\xbf\x9d\xbe\x7d\xb3\xeb\x45\xdf\xb2\x61\xc1\xe6\x84\x58\x2d\x16\x1a\xc6\xe6\xd2\x28\x43\x31\x13\x5e\x9f\x19\x1d\x16\x3b\xd8\xa0\xe8\xcc\x66\xb3\x1a\x78\x78\x3d\x51\x1e\x5e\x0d\x96\xb5\xd1\x8b\xe1\xd9\xf8\xa3\x19\xe1\x55\x1c\x7d\xa9\x80\x6f\xbd\xa6\x52\x9e\x96\x07\x40\x5b\x65\x49\x1d\xb5\x0b\x39\x9b\x30\x37\x41\x46\x2a\x2c\x6d\xd8\x2c\x73\xb5\x4c\x17\x5c\x49\x26\x31\x30\x77\x5b\xa0\xee\x23\xb0\x31\xd5\xb3\x88\xa8\xb6\xe9\xe0\x9c\xa8\x76\xeb\xa0\x36\x9f\x85\x1d\x28\xb0\x76\x23\xa2\x6c\xb1\x74\x94\x0a\x28\x92\x25\x27\x00\xfd\xc4\x14\x7b\xfa\x9a\x85\x37\xe5\xd7\x13\xed\x27\x39\xad\x09\xa3\xd0\x36\x77\xdc\x55\x67\xe8\x84\x97\xb5\x02\xcc\x86\x6f\x36\xd8\x7c\xf3\x27\xdb\xa7\xfa\xc2\xe1\xd9\xee\xb4\x3b\xc3\x52\xe7\xd7\xea\xdf\x8b\x85\x2e\x62\x6a\xb6\xf9\x06\xf0\xd8\x06\x70\x35\x13\x45\x8b\xcf\xb4\x0a\xbe\x51\xe7\x80\x99\x32\x65\xd1\x02\xa1\xb2\x6c\x12\x1f\xb4\xf5\xe9\x54\x45\xb5\x1f\x23\x78\x0f\xa8\xcc\x7e\xa9\x3a\x21\x48\xdf\xc0\x58\xcc\xc2\xbb\xf4\x55\xac\x1e\x85\xab\x98\x98\x6c\x27\xfb\x52\x8c\x0c\xd5\xbf\x69\x05\xc7\xbe\xdd\xaf\x30\x36\x70\x2e\xd8\x54\x55\xd1\xb3\x26\x9c\xcd\x50\x5f\x62\x2f\x30\x18\xea\xd9\xdd\x4f\x8b\xcf\xaa\xda\x8c\xb2\x0b\xf8\xc3\x93\x15\xfd\x48\x15\xd0\x84\x57\xf1\xe6\xb4\xb4\x0c\x20\xb6\xe7\x87\x81\x7f\x5e\xee\x27\x06\x73\x8a\x6d\xcd\x9e\x0a\xf0\xd5\x00\xf2\xe9\x21\x59\x09\x1a\x72\x3d\x52\x54\x0f\xd8\x0f\xec\xde\xfb\x5a\xe7\x2a\x30\xef\x55\xaa\x57\xd9\x6c\x06\xd2\x10\x10\xdb\x0b\x99\x15\x07\x11\x7b\x1b\x20\x91\x50\xbc\xc0\x66\xb7\x10\x96\xab\x5d\xe6\x0e\x82\xc5\x40\x04\xe6\xf5\xcc\x81\xa3\xf4\x41\xf3\x13\x1f\x12\x94\x6f\x3c\xee\x02\xde\x86\x81\x2e\x07\xb9\x21\xae\x00\xf7\x1b\xf9\xe0\xb1\x66\x0c\x03\x87\x83\x38\x1f\xbb\x99\xcd\x33\xfe\x1b\xfd\xa2\x6e\x4d\x5a\x5a\x36\xdf\x7c\x80\x5a\xe0\x47\xfd\x07\x26\x16\x6b\x8a\xad\x79\xfb\x1f\xe0\x96\x5b\x9f\x30\xfb\x24\xa7\xd0\xcc\xb2\xbe\x35\xa6\x3b\xc7\x64\xfb\xa1\xc3\xc1\x76\x9f\x3f\xea\x67\x59\xbf\x18\x27\xe8\xfe\xf2\x01\x55\xbd\xf5\x92\x57\xfe\xa8\x3f\x88\x83\xb8\xd9\x37\x13\xd5\xe8\x58\x6c\x2f\x4b\xcb\xee\x03\x55\x4a\x60\xd4\x15\x68\xb3\x3a\x4d\x3d\x52\xac\x6f\xbb\xac\x77\xc5\xbe\xd5\xf5\x92\xed\xa6\xfa\x37\xa5\xdc\xc8\x2f\x56\x82\xd1\xfc\x2b\xa5\x29\x57\xc2\x09\xc9\x5e\xd3\xfc\x2b\xa5\x0b\xae\xf2\xe7\xbc\x37\xbd\xde\x50\xc8\x9e\x43\x8e\x9c\x67\x2a\xcb\xf7\x8c\x74\xcf\x3c\x72\x53\x6c\xc4\x0f\x5c\x88\x7e\xef\xd8\xeb\x75\x9b\x04\x5f\x85\xa6\xa4\x55\xaf\x59\x32\xdb\x4b\x36\x62\xb9\x49\x54\x49\x22\xa0\xdc\x5b\xc0\x00\x85\x97\x29\x62\xf8\xd8\xeb\x29\xaf\x24\x88\x3d\xa6\xbd\xdc\xcb\xd0\xbe\x55\x71\xbd\x2e\x40\xc5\xd9\xd4\x6e\x2c\xd7\x54\x13\xa9\xde\xfd\xb4\xd5\xf6\xbe\x6b\xfc\x6d\x6b\x46\x50\x8e\x53\xa4\x74\x6b\x12\x79\xa2\xa8\xd7\xd1\xbe\xd0\x92\xac\x89\x52\x27\x7d\x15\xbf\xe3\xc9\x15\x67\x69\x3a\xb0\x14\xba\x59\x33\x51\xc5\x3c\xb2\xef\x19\x0a\xb5\x59\x20\xcb\x50\x75\x82\xb2\x0d\xdb\x7d\x12\xad\x28\x01\xa6\xfa\xd6\x39\x75\x25\xa6\x3b\xe5\xfd\x05\xeb\xec\x1a\x99\x3f\x2c\xc1\x9d\x05\x4c\x57\xa2\x8a\xe2\xe5\x0e\xf4\x08\xd3\x5d\x67\x0e\xca\xc8\xf4\x3c\xf4\x87\x85\x61\xce\x9f\x6f\x1c\x21\xb4\x5b\x55\x80\x2a\xbe\x2e\xf1\x46\x9d\x79\x02\xd9\xf7\x88\xf1\x0c\x5b\xab\x7c\x21\x55\x21\x66\x76\xc5\xd7\x02\x45\xf9\x70\x9b\x67\xb8\xb4\x8e\x6f\x01\x9e\xe9\xc1\xb2\x1b\x59\x58\x5d\x16\xb2\xaf\xeb\x30\x7d\xb2\x88\xae\x62\x36\x7b\x99\xac\xf8\xd6\xaa\xda\x6d\x09\x86\x18\x65\x03\x75\xf9\x63\x1d\x61\x02\x97\x6c\x76\x2e\x6e\x32\xfc\xa8\xe7\x52\xea\x1a\xea\x7c\x72\x7a\xb6\x8b\xa5\xb6\x8a\xfd\x52\xa2\x4c\x8a\x01\x72\x4b\x95\xe9\x09\xfc\x8d\x32\xdd\x52\x19\x8d\xc2\xeb\xf2\x3c\xd9\xdd\x4c\x7b\x0d\xea\xb2\xef\xb7\xa9\xcf\x77\x19\xcc\x15\xc5\xe9\x4b\xa1\xbf\xcf\x9e\xea\x6f\xa3\x24\xb3\xf3\xac\x51\x7e\x9c\x76\x6d\xca\xbc\x29\xdd\x00\x54\x97\x79\x9a\x28\xed\x44\xc1\x66\xb5\xf7\x71\xf4\x99\xf1\x34\x5c\xd4\xce\xa2\x25\xcb\x41\xc9\x15\x9a\xd2\x53\xa5\x24\x99\xd6\xc2\xe9\x94\xa5\x69\xc2\x37\x15\xdb\xdf\xa7\x4c\xf9\x2c\x30\x26\xeb\x0e\x09\x39\xce\xd9\xdb\x54\xe9\xc6\xcb\xaf\x07\x41\x40\x16\x03\xc3\x21\x6f\x18\x36\x87\x15\x80\x00\x1f\x0f\x02\x90\x39\x8a\xf2\x9f\x54\x79\xd9\x1d\x25\xe5\x7c\x19\xb1\xdb\xf4\x1e\x59\xf3\xe2\x47\x4d\xf0\x25\xe4\x83\x1d\x9a\xa2\x39\xb7\xb6\xc5\x93\x31\x6d\xb0\xab\x69\x8d\xb5\x58\x8b\x37\xe3\xb7\x14\x6b\xd6\x38\x5f\x34\xa7\xd7\xd1\x5c\xb0\x99\x6c\xa3\x1d\xde\xec\xa0\x1f\x78\xa4\x20\x15\xcd\x54\x01\xd9\x30\xf2\x91\x87\xd0\x28\x89\x4b\x2e\x06\xe4\x1e\x9a\xe4\x52\xd0\xa2\x7e\xbc\xb9\x4f\x16\x49\x5a\x1a\x72\xbf\x06\x49\xba\x51\x37\x22\x88\x51\x70\xe1\x84\x5b\x93\xd0\xf0\x2b\xf9\xfb\xcb\xe0\x2e\x2d\x54\x06\xae\xf2\x63\x6f\x1b\x2c\xdd\x5c\x65\xee\xf1\x33\xc8\x4c\x84\x91\x64\xca\xb3\x92\x7a\x6e\x76\xbb\x74\xee\x2e\xa5\x22\x51\x6b\xd6\xde\x70\x3a\xac\xd2\x46\x5b\xf2\xcd\x9b\x44\xb0\x22\x4f\xe8\x5c\x72\x4f\x60\x9f\x5b\xf0\x6f\xd1\x88\x8f\xc1\xaf\x5a\x61\x3c\xf0\x99\x5b\xae\xf0\x42\xb8\x4d\x07\x0e\xb2\x70\xcd\xc2\x28\xcb\x32\xc7\x31\x8e\xbb\x4d\xdf\xe6\x15\x6b\xf1\xbd\x42\x33\x86\x67\x9e\xd5\x8b\xca\x70\x5f\xe2\xf9\x70\x53\x12\x8d\xe2\x31\x85\x22\xb1\x5d\xc4\xe0\x55\xe0\x73\x67\xb5\xc7\xb9\x4c\x92\x05\x0b\x63\x8b\x9b\x19\x84\xca\xbd\x13\xa7\x82\x08\x83\x62\xa0\x31\xde\xf7\x48\x28\x53\xb6\x32\x60\x22\x28\xd8\x73\xef\x19\x76\x0c\x3a\x29\xa5\x6c\x90\x14\x0c\x7d\xe0\x16\x0e\xd9\xb9\xd5\x4c\x41\x10\x6f\xa4\xf8\x51\x9f\xc4\xfa\x85\x53\xa5\x5c\x6b\x1a\xaa\xfc\x59\xf5\xc1\x8b\xd5\x6a\x14\x41\x3b\x05\x41\xd1\x46\x19\x0d\x70\xb5\xbe\xd9\xa1\x27\x58\xbc\xd8\xa4\x59\x11\x9d\x69\xc4\xc6\x39\x67\xa4\xa3\x5a\x46\x15\x70\x2f\xd7\x21\x88\xf1\x20\xd6\xd2\x07\xc2\xe1\x44\x74\x23\xb9\x0f\xfb\x89\xa3\x5d\x27\xf3\x49\x39\xdb\x88\x8d\xcd\x01\x62\x2b\xa5\x25\x92\xf7\x37\x37\xe6\xd5\x9b\xdc\x35\xa4\xc8\xb2\x7d\x3e\x10\x01\xda\x01\x8f\xf2\xc2\x0f\xe6\x70\x38\x1c\x66\xc3\x61\x76\x72\x92\xcd\x66\xb3\xd9\xc1\x55\xa5\xfb\x25\xed\x3d\x0a\x94\xea\x77\x00\xc5\xd0\x44\x4b\x27\x63\xf7\xb6\x53\xe4\x81\x32\x5a\x37\x7e\x37\x5b\xa6\x33\x14\x82\xde\x47\x33\x07\x38\xba\x1b\x9e\x3b\x54\xa3\x33\x0e\xc1\x5c\x31\x47\x47\xd8\x8f\x30\xed\xbc\xee\x57\xd5\xd8\x59\x47\x7c\x5c\x0c\x66\x84\x07\x51\x5e\x24\xb0\x5c\x92\x3e\x9a\x1d\x44\x39\x22\x61\x2a\x9e\xc3\x1b\x4f\x95\xda\x11\x15\x55\xb8\xc7\x6c\xe0\xa8\x67\xa1\x9c\xc0\x91\xe5\x1d\xab\x52\x8e\x07\x1c\x09\x1c\x58\x63\xf5\x28\x3d\x88\xe0\x3a\xf9\x66\xf3\xea\x36\xf7\x0d\xa7\x1c\xa8\xa8\x7b\xd8\x33\xb9\x10\x47\xdc\xe8\xb0\xf0\x31\x55\xc7\xb2\x91\x33\x71\x1a\x32\xa4\x49\xa7\xb2\x2b\xcb\xcf\x08\x0f\x9a\x26\xd8\x6f\x47\xa2\x87\xf2\xb7\xd2\x64\xc5\xa7\xcc\x2c\x95\x64\x3b\x09\x37\x9c\xcc\x69\xe4\xcf\x65\x99\x58\x68\x9d\x66\x17\x76\x98\x5a\xe8\xfb\x3b\x63\xe7\x39\xb0\x43\xa3\xfc\xe6\x67\x1c\x94\xe2\x4b\x65\x5a\x51\xaa\x26\x6e\x96\xfd\xc1\x70\x4b\xb0\x54\x80\x20\x44\x4d\x1d\x27\x70\x52\x11\xc6\xb3\x50\x32\x8a\xce\xd8\x06\xf9\x50\xd5\xa5\xfa\x5a\x05\x04\xab\x45\xf0\xe6\xd5\xf7\x35\x0b\xb2\x96\x2b\x80\xa8\x5d\x0d\x54\x89\x7f\xb0\x7f\xbb\x31\xbb\x2a\xdc\xae\xa5\xba\x6d\x30\xb6\x0f\x2b\x1d\xdb\x90\x20\xfb\xb3\x2f\xe1\x34\xdf\xc3\x76\x16\x85\xa7\x2f\x44\xa2\x9e\x12\xb2\x9e\xf9\x2a\x8e\xed\x36\x4c\xd0\x56\xd8\x8a\xa5\xa3\xb1\x45\xb9\x86\x55\x09\xa9\x6c\xdb\x46\x4a\xbe\x6d\x36\x1a\x31\x4e\xcc\x23\xbb\xf1\x18\xef\x28\x23\x37\xd6\x42\x22\xab\x9f\xd6\x4d\xc0\xf5\x70\x45\x03\xaa\x31\xda\x80\xb1\xbb\x78\x7e\xb9\x37\x70\x86\xc3\xa1\x03\x6f\x3c\x34\xbd\x7d\x4a\x51\x94\x7b\xf5\xa9\x46\x93\x84\x18\x0f\x22\x25\xcf\xab\x2e\xb1\x81\x93\x5d\xe0\xdf\xac\xec\x87\xeb\xf9\x91\x02\x3f\xdc\xec\x2d\xbb\x45\x65\x88\xb3\x35\x6f\x72\xe1\xc5\x7f\x3c\x97\x30\x29\xf1\x60\x92\xc3\x8b\xec\x09\xc5\xf3\xd3\xe4\xf6\x7c\xb0\xcc\x98\xb7\xa6\x4a\xe9\x35\x5f\xa7\x61\xcf\x9c\xa8\xe4\xf3\xda\x69\x81\x43\x9f\x86\xf3\x53\xe9\x91\xe0\xaa\x29\xbc\x1b\xa6\x9a\xd1\x0f\x03\xc6\xe0\x8e\x73\xb3\xd7\x46\x31\xbc\x18\x46\x2b\x91\x6c\x38\xd9\xce\x7a\x48\x15\x28\x1b\xc5\x64\x13\x13\x83\x45\xbd\x0e\x8f\x40\x3a\xea\xa9\xa4\x5d\x3d\xa8\x28\x26\xdb\x7a\xfe\xca\xd9\x2c\x5a\xd1\x53\x95\x65\xf7\xb9\x29\xb1\x7c\x38\xf3\xda\x22\x9f\xea\x69\xe6\x9d\x3c\xd0\x26\xd1\x1c\x20\x3d\x79\x9d\x89\x55\xde\xc1\x59\xf6\xdc\x5a\x02\x98\xb0\x32\x41\x2f\x5e\x81\x2e\x91\x75\x88\xc1\xc1\x4e\x98\x68\x2b\x33\x7d\xcd\xca\x03\x63\x81\xae\xd7\x7f\xa4\xd6\xcd\xed\xf1\x7f\xa7\x23\x36\x5e\xd5\xde\xde\xe4\x76\x74\x49\x91\xb6\xd5\x2f\x16\xf6\xaf\x36\x3b\x67\xa3\xba\xad\x1e\xfa\x4e\x74\xa0\xaf\xe0\x7e\xaf\xa2\x7f\xde\x33\xc4\xac\x87\xbf\x8b\x3b\xd4\xe2\xda\x14\xca\x02\x90\x79\xc4\xe1\xe1\xd6\xcd\x0b\x82\x8d\xde\x36\x25\x37\xca\x9c\x97\x50\xa8\x2e\x73\x9b\x23\xbb\x71\x3d\x56\x30\xc5\x86\x01\x31\x99\x0c\xf7\x91\xbf\x1e\x5a\x0e\x8e\x58\xbd\xae\x54\x5e\xcc\xfa\x32\x29\x39\x3f\xf7\x0d\xee\x27\xf7\x83\x0a\x7e\x0f\xfe\x62\x88\x6f\x74\x18\x0e\xd8\x80\x8f\x98\xba\x4d\x19\x07\xbc\xd4\x86\x61\x14\x57\xc9\x3e\x73\x60\x65\x9c\x86\x51\x5c\x01\x7c\x2b\x4f\x51\xd9\x56\x52\xa9\xf2\x4d\xd6\xf1\x5b\xd5\x43\xfe\x6f\x22\x60\x58\xca\x4a\x14\x20\xb1\x84\xc4\x77\xf3\x78\xa5\x02\xff\x63\x5c\x5e\x09\xaa\xc5\xe7\x95\xd1\x2b\x6f\xc2\xe7\xd5\x69\xcb\x28\xde\x4a\x51\xfb\x73\xbf\xcc\xeb\x79\x63\x0c\xbd\x13\xe3\x1d\x25\x73\x76\xcd\x1a\xb9\x6f\xb2\x7c\xdb\xa8\x6d\x81\xf9\x3e\xde\xf1\xf6\x41\x18\xdf\xc5\x3b\xca\x73\xff\x43\xfc\x5c\xa9\x8a\x12\x23\xf8\x8d\x82\xdb\x8d\xfc\x36\x7b\xb7\xd9\xbb\x9b\xf5\xfd\x30\xa6\x3f\x88\xda\xbf\x87\xd5\xbf\xd5\x0b\xff\x69\x1b\x1e\x42\xea\x87\x4a\xfc\x1f\xeb\xcc\x6f\x32\xda\xa5\x3a\xf2\xed\x74\xc7\x72\xae\x5a\xb2\xdf\x5e\xe8\xf3\xd5\x62\xb1\x99\x84\xf3\xa5\xbe\xc5\x89\x5b\xcb\xbd\x60\xc8\xb7\x60\xd8\x2c\x79\x55\x62\x25\x03\x9d\x2f\xca\x0a\xee\xf9\xe2\xa2\x35\xd8\xc1\x9a\xff\x10\xec\x9d\xec\x79\x75\x05\x55\xb4\xec\x21\xf0\x92\xb4\x7d\x1b\xf8\x2e\xda\x54\x66\xff\xcb\xdd\x61\x1d\x00\x2a\xda\x52\x91\x9a\xa3\xb2\x8b\x10\x7e\xe7\x01\x21\xa7\x29\x86\xa7\xa8\x1a\xcf\x9d\x47\x84\xcd\xc2\x95\x23\xf6\x40\xe9\x52\xe1\x8a\xd1\xf8\xc6\xf9\x62\xb3\xd1\x3b\x4e\x18\x26\xdb\x37\x58\xeb\xed\x4d\xdb\x62\xae\x4b\x30\x24\xef\xfb\xcf\x4a\xf6\x3a\x1f\xbc\x2d\x66\xb6\x04\xc0\x66\xac\xb7\x20\xa3\x8a\x02\xf4\xef\x6c\x73\xa4\x2b\xf9\xe9\xef\xad\x7f\x9b\xb7\xfa\xdf\xec\x9c\x6a\x76\x7f\x1b\x9d\xaa\x6e\xaa\x3c\x81\x54\xb4\xe4\xa7\xed\x0e\xdb\x79\x0a\xf9\x71\xc4\x36\x19\xe3\xff\xc5\xde\x1b\x46\xf1\x6e\x14\x0d\x2a\x55\x3d\x67\xd2\x2a\xfa\x2d\x6f\xc1\xef\x5b\xbd\x56\xae\x6e\xbb\xcf\xbe\x0f\x1d\x75\x3b\x92\xbe\x1b\x56\xf4\x91\x73\x03\xb6\x74\xac\x61\x78\xb5\x9c\x4b\x83\x07\x53\x9e\x08\xe4\xea\x53\xb2\x79\xd4\x67\xcb\xa1\x8e\x76\x2b\xe2\x1d\xb3\x01\x1f\x38\x37\x4b\x27\x70\xde\x0d\x9d\x80\x0f\x9c\x50\x7e\x3f\x19\x3a\x6b\xb2\x12\xa0\x20\x4d\xee\xab\x25\xf6\x81\x11\xc5\x23\x71\x9d\xa5\x22\x8b\x67\x19\x9f\xe1\x03\xa2\x45\xf7\xc1\xf6\x75\x15\x7b\xe4\xb9\xb9\x03\xd4\x06\x78\x7c\xbf\x45\x32\xd2\x3d\xf0\x5c\x3c\x70\xc4\xb5\x13\x80\x1b\xf8\x81\x93\x0a\x27\x50\x8f\xd0\x3a\xf1\xcc\x09\xda\xea\x93\xcf\x9c\x40\xe6\xc2\x6b\x78\x16\x00\x8c\xdf\xf2\x1b\x7a\x08\x56\xab\x07\xa8\x64\xf5\xe6\x7e\xa1\x6a\xb0\x12\x06\x08\xa8\x52\x97\x01\xc9\xa8\x6f\x02\x53\x99\x72\x80\x53\x6d\x12\x7e\xc5\xa9\xd1\xc6\x2a\xae\x7a\x2f\xb7\xae\x7a\xcf\x05\x5c\xf6\x59\xcf\x0b\xd9\xba\x69\x0d\x1a\x3f\x8e\x36\xdc\x57\x6a\xf7\xbd\x3a\x09\x3c\xf9\xe6\x7e\x7c\x4d\x7e\xe5\x4e\x94\x55\x39\x21\x9f\xf0\x0d\xf7\xe2\x96\xce\xba\x71\x2c\x0e\x7a\xc9\xf6\x15\xf3\xad\x5d\xa8\x73\xe8\xba\x8f\xd9\x81\xd7\xe9\xb9\x47\xfd\x22\xcf\x33\x3b\x8f\x4a\x7c\xcc\x0e\x64\xe6\x22\xcf\x17\x3b\xcf\x0e\x51\x40\x98\xc2\x13\x2d\xb2\x7b\x4e\x39\xfd\xc2\x91\x72\x67\xf3\x56\x7d\xcb\xcf\x4f\x3a\xda\xc1\xe4\x89\xfa\xbc\x76\x30\x39\x53\x9f\x33\x07\x93\xa7\xea\xf3\xd6\xc1\x64\xa8\x3e\x87\x0e\x26\x7f\xa8\xcf\xdf\x1d\x4c\xde\xa9\xcf\x3b\xdb\xf1\xe5\x9f\xdf\x81\xdb\x86\x01\x02\xf8\x80\x1f\xb1\x71\xf0\x26\x7c\xa3\x30\x3e\xe1\xf4\x4f\x5e\xb2\x78\x95\x08\xbf\x51\xb1\x45\xc4\x2b\x93\x4d\x39\x94\xc2\xe4\xb5\x8a\x00\x15\x47\x07\x93\xe7\x2a\x28\x07\xd7\xc1\xe4\xab\xce\xad\x3d\x5e\x92\x97\x2a\x0c\x2a\x2d\x0e\x26\xbf\x72\x4b\x31\x93\xbc\xe7\xf4\x3e\x4d\x83\x4e\x87\xa4\x41\xa7\x4b\x96\xf2\xcf\x75\xe0\xfb\x64\x16\xf8\x3d\x32\x0c\x3c\x6f\x4d\xce\xab\xe6\xe6\x5f\x56\xfb\x91\x7b\xcc\x70\x13\xb1\x63\x17\x67\x59\xc3\x7a\x16\xfe\x1f\xfc\x21\x5b\x96\x0a\xa7\x07\x25\x7b\x7b\xa5\xba\x21\x17\x00\x3d\xcf\xc5\xe6\x56\x57\x81\x99\x04\x89\x8b\x44\xe5\xa2\x35\xb2\x72\x6b\x2f\xad\x82\x4e\x10\x62\x74\x82\xf8\x41\xcf\xc5\x18\xdc\xd3\xf3\x47\xb4\xe7\x12\x26\xff\xee\x29\x7f\x87\x13\x14\x1d\x78\x3e\x26\x21\x8d\x1e\x51\xcf\x27\x29\x8d\xc9\x8a\x0a\xb2\xa0\x8c\x4c\x29\x1f\xf0\x96\x48\x9e\x47\x5f\xd8\x0c\xb5\xed\x57\x1e\x5b\x03\xb7\xa1\x5e\x79\x0c\x1c\x87\xcc\xa9\x9e\x96\xa7\xc6\x74\x0b\xd8\xa9\xb9\xb1\xdf\x79\xe7\x9e\x28\xa5\x84\x6b\x3a\x3f\x76\x07\x4e\xd3\x91\xa5\x66\xf4\xaf\x0d\x9c\xf7\xa9\x8c\x9a\x63\x93\xe3\xa6\xc8\x01\xcd\xdc\x4c\x5f\x5a\x10\xec\x3e\xda\xc8\x67\x28\xc7\x75\xc3\x79\xe7\x34\x50\x32\x98\x35\x92\x86\xf3\x01\x1e\x4e\x69\xa0\x70\x30\x6b\x84\x0d\x67\xa8\x83\xe9\xe0\xa6\x91\x36\x9c\x13\x1d\x5c\x65\xd9\x22\xcb\xa6\x03\xe7\xcc\x44\x0c\x96\x8d\x55\xc3\x79\xa9\x83\x8b\xc1\xb2\xb1\x28\x4a\x4f\x07\xcb\xc6\xb4\xe1\x9c\x42\x10\xa6\xfb\x07\x5e\xf2\x49\x6b\x70\xf9\xf0\x90\xe5\xb2\x6a\x92\x4e\x5f\x93\x0f\x5c\x4e\xc3\x1d\x8a\xfa\xb0\xc0\xca\x8a\x35\x25\xd5\xdd\xab\xca\x1e\xb2\xdf\x72\xb8\x2a\x4f\x25\x7b\x44\xac\xd2\x6a\x84\xca\x16\x85\x90\x5e\x8e\x29\xcc\x0f\x75\xa2\x15\x6f\xf4\x90\x75\x21\x08\x18\x13\x46\x1d\x0b\x9f\xb9\xa5\xa3\xc9\x9a\xd7\xad\x74\xd5\x20\x12\x3e\x8d\x3e\xe8\x07\xe5\x9e\xaa\xf2\x02\xf8\x92\x17\x87\x64\x0f\x43\xde\xdc\x0a\xf3\x9b\x05\x9a\xba\x44\xf8\xbd\x76\x08\x55\xa6\x07\x76\xff\x80\xfa\xb2\x52\x0c\x2a\x1b\x37\x1b\x0b\x63\x65\xd8\xac\x34\xc1\xe5\x37\xd6\xf6\xca\xb9\x55\xaa\xdc\xd8\x62\xa5\x21\x9e\x2b\xb0\xe8\xad\xed\x96\x23\x81\x89\xb1\x6c\xd6\x06\xc7\x46\x20\xb5\x61\xc8\x6c\xa2\x0f\xda\x7b\x96\x1d\x74\x1e\xeb\xf9\x4a\x8f\xab\xaa\x76\x4b\xc7\xfd\xd9\xc6\xfc\x28\x6a\x57\xc6\xcb\x66\x5e\x1e\xf4\x1b\xb1\xf1\xcf\x54\x58\x0f\x9b\x54\xd3\x1e\xdb\x26\x58\xa7\xf9\x9d\xc7\x32\x19\x1c\x44\x95\x2c\x7b\xf3\x5d\xb4\xe3\x42\x8e\x1e\xeb\x94\xcd\x78\x75\x86\xc3\x5e\xc7\x55\x39\x3c\xd6\x36\x20\x0a\x3b\xf2\x60\xdb\x2c\x0d\x50\x79\x2c\x70\x23\xce\x9d\x48\x89\x6b\x9e\xdc\x82\xc1\xe9\x33\xce\x13\x8e\x9c\xf7\xf1\xa7\x38\xb9\x8d\x6b\xab\x38\x12\x35\xa7\x21\x77\x63\x35\x4d\x6c\x97\x6c\xf4\x94\xab\x48\x4d\x16\xe9\x5b\x6e\x32\xa9\x85\xf0\x49\x87\x5f\xc2\x02\x78\xa2\x43\x27\x72\x51\x9e\xe9\x80\x32\xff\x79\x6a\x0a\xaa\x55\x31\xd4\xc1\xdf\x8d\x15\xd5\x1f\x3a\xe2\x03\xac\x8f\x77\x10\xfa\x86\x15\xdd\xe6\x3e\x5d\xe2\xa9\x74\x17\x14\x43\x6e\x0f\xf2\x23\xcf\x7f\xec\x77\x8f\x7c\xd6\x6b\xb4\xbd\x6e\xbb\xc7\x7a\x8f\x6f\x4b\xb3\x40\x6e\x28\xb0\xdf\x4b\x34\x34\x7f\xb5\x45\xbd\x8a\x57\x80\x2b\x56\x09\x09\xad\xf9\x46\xd2\xd2\x2c\x97\xdb\xd3\x16\xe1\x73\x8f\x69\x02\xfe\x87\x43\xf8\x9b\x66\x59\x72\x4c\xdd\x7a\x3d\x84\xbf\xe9\x31\x75\xb3\x0c\x25\x0d\xaa\x1a\x36\xe1\x72\xe2\xa6\xb8\x11\x62\x92\xd2\x90\xc2\xd3\x6c\x25\xba\x96\x3c\x92\xdb\xac\xdc\x3d\x13\xb0\x4b\x24\xab\x9c\xaa\xc1\xcb\x2e\x72\x73\x55\x2f\xbe\xac\x72\xb2\x26\x64\x02\xa7\x13\x24\x74\x82\xb6\xc6\x78\xe4\x77\x48\xda\xa0\x11\x9d\xa0\x5b\x8e\xc2\x06\x6c\xc9\x7e\x07\x63\x4c\xc2\x26\x55\xb8\x44\xe0\x7a\x61\x82\xa0\xef\x48\x0a\x5b\xf1\x4a\xd9\x3f\x85\xb2\x0a\x35\xee\x29\x59\x69\x12\x18\x17\x84\x6f\x97\xef\xba\x73\x61\xfc\x5f\x7c\xd8\xe9\x94\x47\x91\x1f\x52\x31\x21\x46\xac\xe1\xa4\xce\x18\x15\x03\x59\xea\x9f\x13\x98\x62\x26\xf4\x86\xab\x0c\xaa\x1f\x5e\x41\x48\x35\xfe\x35\x7c\x43\x3b\x9e\xc3\xe7\x86\xf1\x5c\x8e\xc9\x24\xb7\xb6\x49\x11\x3e\xe8\x2b\xac\x75\xb3\xbf\x42\x49\xd5\xf0\x97\x0a\xb8\xf6\x60\xf4\x9d\x44\xf9\x7b\x78\xae\xd2\x1b\xf1\x64\x45\x16\xf0\x06\xf0\x56\x49\x72\x4d\x91\xa0\xfb\x8c\x70\x3a\x97\x6c\x98\xee\x64\xb0\x28\x91\x6c\xd8\xaf\x1c\xc5\x92\x3f\x97\x5c\x38\x26\x49\x11\x06\xeb\x85\xb0\x08\x5f\xcb\x70\x5a\x84\x67\x32\xbc\x2a\xc2\x43\x19\x5e\x14\xe1\x3b\x19\x46\x53\x1a\x1d\xd3\xf7\xbc\x95\xa6\xf5\x3a\xb8\x42\x8d\xc6\x59\x16\x1d\xcb\x18\x88\xd0\x31\xc9\x31\xf5\x64\x78\xe9\x40\xe0\x3d\x6f\x2d\x21\xb8\x74\x48\x32\xce\xb2\x50\x27\x5f\x3b\x10\x78\xcf\x5b\xd7\x10\xbc\x76\x48\x38\xce\xb2\x54\x27\xcf\x1c\x08\xbc\xe7\xad\x19\x04\x67\x0e\x49\xc7\x59\xb6\xd2\xc9\x43\x07\x02\xef\x79\x6b\x08\xc1\xa1\x43\x56\xe3\x2c\x5b\xe8\xe4\x3b\x99\x3c\x72\xee\xee\x1c\xb2\x18\xe3\x91\x3f\xa6\x82\x4c\x47\xed\x31\x75\x8f\x81\x9c\x90\xe9\xa8\x33\xa6\xbc\xd2\x17\xb7\xd1\x98\x2d\xa9\x19\x22\x91\x65\x1e\xd9\xdf\xe7\x84\x91\x18\xaf\xed\x27\xd7\xa6\xb8\x38\x1e\xd6\xeb\xe8\x9a\xce\x2d\xbd\x41\xa4\xaa\xbb\xc6\x98\xcc\x6d\x0f\x63\xd7\x6a\x92\xd9\x9e\x02\xfe\xc1\x55\xcc\x46\x10\x0c\xae\x55\xa0\xf0\x1e\xf3\x61\xd3\x7b\x8c\x82\x95\x9a\xc2\xa7\xc8\xb1\x82\xdb\xde\xea\xad\x67\x24\x4a\x56\xda\xe6\xa0\x5c\x43\x71\x22\xa2\x29\x03\x67\xf5\xd3\xf0\x26\x12\xe1\x22\xc5\x0e\xf9\x07\xc7\x50\xb7\xf6\x68\xf3\x1e\x39\xff\xd4\xae\x3d\x57\x71\xf4\x45\x79\xfb\xfc\xa2\x63\xf4\x1e\xa0\x5f\x9b\xfa\x52\xf8\xc3\xfe\xa7\x43\x0e\x46\x8d\xe6\x78\x70\x31\x6b\xc0\x6b\x3f\xf7\x1e\x69\xaf\xf1\xe0\x40\x39\x44\xfe\xa7\x53\xe9\x5b\xb8\x78\x89\xd0\x63\xed\xc7\xf6\x93\x23\xf0\x42\xba\xf2\xaf\x2c\xab\x79\xb8\xf0\xad\x64\x79\x40\x32\xa1\x9f\x68\xa4\x8e\xdf\xf2\x3b\x2d\xd7\x21\x8c\x3e\x11\x84\xb7\xe6\x31\xbd\xe6\x44\xf9\xe0\xa9\xb0\xd4\x15\xc8\x31\x8e\x80\x1c\x32\x1a\x2b\x2d\x5a\x25\xda\xca\x1f\xdf\x23\x12\x21\xa2\x1c\xfa\xec\x02\x01\x7e\x89\xbe\x09\x21\xb6\x7d\x9f\xe5\x10\xc0\x2d\x43\x9c\xdc\x0e\xcc\x07\xc2\x41\xc3\x34\x51\x16\x03\x13\x2a\xb2\x69\x07\x5f\xd0\xde\x27\xea\x19\x1f\xa6\xb0\x7c\x40\x31\x53\x2b\xaf\xe7\x87\x5b\x99\x3f\x4a\x41\x15\x38\x25\xf9\x8c\x5c\xc9\x7e\x33\xaf\x5d\xdc\x10\xde\x9a\xe9\x17\x0d\xe8\x39\xa4\xa4\xea\xd9\x51\x7a\x49\x76\x28\x0f\x58\xf2\xae\x5c\x3d\xdd\x31\x39\x55\xad\x95\x36\x57\x79\x73\xaa\xdf\x40\x2c\x0a\x21\x80\x61\xad\x99\xa9\x42\xec\xc4\x20\xfa\xa7\x20\xdf\xa1\xd0\x59\xee\x0e\xc8\xa8\xb0\xab\x56\x27\xf8\x46\xc3\x86\x51\xac\x4a\xcf\xd8\x3c\x8a\x99\xba\xcf\xa5\x0b\x91\x1b\xd0\xe9\x98\x2d\x77\x4e\xc6\x50\xa0\x78\x65\x8a\xc6\x42\x9b\x85\xa1\x98\xa6\xe6\x99\x8c\x88\xc6\x46\x15\x18\x13\xc4\x61\x15\x0c\x91\xa0\x4f\x51\x44\x04\xc6\xd0\x3f\x2c\x16\xba\x9a\x08\xf4\xd2\x23\xa5\x4d\x4e\x56\xc5\xab\xdc\xda\xb0\x50\x26\xd4\xeb\xc8\x0a\x95\xca\x0f\x54\xc9\xed\x84\xa0\x54\x5e\x3f\x85\x0c\xa1\xc2\x3c\x41\x86\x8a\x11\xaa\xda\xa4\xdf\xa2\x48\x94\xba\x7a\x7b\x98\x1e\xec\x6c\x6b\xb0\x62\x49\x83\x17\xd1\x57\xf6\x3e\x8e\x44\x4a\xff\x24\x65\x95\xf2\x3f\xe4\xe9\x62\xd3\x77\x8b\x99\x00\xc5\x0b\x1b\xbf\xf2\xc0\x31\x39\x2c\xfb\x89\x7a\x1d\xfd\xca\x29\x03\xcb\xbb\x0d\xc0\x67\xd7\x9c\xa5\xd7\xc9\x62\xc7\x61\x51\xc1\xde\xa7\xf4\x3d\x57\x3d\x9d\x57\x26\x06\x10\x15\x20\xf8\xa1\x82\x38\x29\x9c\xcf\xea\x75\x04\xfb\x31\x15\x4d\x0f\xcb\x1a\xa1\xca\xb2\x77\xe3\x4a\x25\x1d\x06\xde\x84\x91\x20\x4a\x86\x05\xc6\x88\xe6\xf8\x75\xdc\xec\x0d\x0a\x47\xc8\x01\x3f\x6e\x7a\x03\x67\x11\xa6\x42\x79\x71\xe2\xc7\xae\x0a\x9e\xc0\x29\xea\xd8\x53\x99\x75\xc8\x1f\x38\xfa\xb1\x5f\x19\xea\xab\x90\x2a\x58\xc0\x84\xe5\x6c\x84\x12\x8a\xd8\xbe\x3c\x1b\xbe\xee\x4e\x9e\x0f\xcf\xe8\xfd\xc9\x93\xb3\x67\x67\xaf\x86\xcf\x26\xaf\xdf\x3e\x7d\xf2\x3a\xd8\x7a\x9a\xc5\x21\xe5\x1c\x93\xd3\x67\x4f\xdf\xbe\x39\x39\xdd\xce\x19\x48\x96\x64\x23\xf3\xb0\x3a\x1f\x78\x39\x81\xbc\x76\xb2\x43\x64\xc9\xc0\xd1\xf5\x02\x98\xbc\xb6\xa2\x0a\x88\x1f\x5a\x51\x0a\xda\xf9\xb3\x67\x7f\x0f\xe0\x29\x86\xe6\xe8\x7c\x7c\x7e\xee\x90\xe1\xdb\x37\x67\x2f\xf3\x0a\x64\x3f\xac\x71\x85\x27\xf1\x5c\x9c\xc7\x90\x16\x46\xe7\x31\x11\x0a\x49\xaa\xd8\x4d\x3e\x0a\xc7\x9a\xf1\x84\x2f\x65\x31\x53\x31\x25\x39\xfb\x6b\x15\x71\x56\xaf\xeb\x0f\x90\x8f\xa5\xf5\xfa\xca\xb0\xa8\x2b\x14\xc2\x0c\x88\xe6\x28\x31\x71\x89\x8e\x93\x50\x17\xd4\x3a\x7d\x3e\x0d\xe3\x38\x11\xb5\x79\x14\xcf\x6a\xcb\x64\xb6\x5a\xb0\xda\xdf\x9c\x46\xd8\x70\xfe\xe6\xe0\x3d\x75\x56\x5d\xb4\xa6\xc9\x8c\x51\x67\xf8\xf6\xe4\xfd\xeb\x67\x93\x37\x6f\xcf\x26\xcf\xdf\xbe\x7f\x73\xe2\x90\x05\x88\xa5\xa6\x54\xe2\x4e\xef\xd9\x97\x9b\x84\x8b\x34\xb8\x5f\xaf\xf7\x64\x1b\x46\xae\x76\xb2\x3d\x6d\xe9\x24\xb2\x79\x41\xc1\x29\x64\xf4\xc6\x23\x96\xdb\x55\x44\x88\x67\x99\xdc\xca\xa6\xa4\x28\x68\xe4\xf8\xb9\xeb\xe5\x51\x38\x36\x89\x6b\xe3\xdc\x2e\xf9\x9e\xee\x22\x21\x75\x7f\x0e\x8f\x63\xe3\x96\x2e\x6c\x34\x70\x84\x62\xd9\xe7\x85\x75\xd5\x1a\x61\x74\xef\x05\xa3\x4d\x72\xe4\x48\x16\x4b\xb9\x67\x71\xf6\x18\xf2\x0b\x1b\x2e\x14\x53\x86\xbc\xae\xa4\xd3\x71\x6b\x32\x61\xe9\x10\x3a\x73\x10\x07\xf7\xe6\xe4\x1f\xaf\xf7\x22\xe3\xce\xb6\x35\xb9\x0c\x2f\xd9\xe2\x5d\xb2\xb8\x9b\x47\x8b\x45\xbd\xee\xac\x62\xb5\x6d\xcc\x0a\x6b\xc3\x69\x12\xa7\xc9\x82\xd5\xeb\xfa\xa3\x75\x1b\xf2\xb8\x1c\x42\xce\xff\x1f\x00\x1d\xdc\x68\x48\x92\x35\x5c\x24\xe1\x8c\xcd\x94\x29\xa0\xb8\x0e\xe3\x5a\x12\x4f\x59\x2d\x51\x87\x97\xda\x4d\x78\xc5\x5a\xb5\x33\xf9\x29\x43\x3c\xb9\x0c\x2f\x17\x77\xf0\x0e\xf6\x8c\xa5\x11\x0f\x2f\x17\xec\x20\x8a\x05\x8b\x67\xfa\x09\xeb\x65\x78\x57\xbb\x0e\x3f\xc3\xf3\x46\x29\xfb\x6b\xc5\xe2\x29\x4b\x6b\xd1\xbc\x26\xa9\x0e\x93\x3b\x43\xfe\x40\x76\x0d\xac\x9d\x59\xcd\xa0\xa3\xde\xc4\x96\xbb\x79\xc4\x66\x35\x55\x58\x44\xe1\x62\x71\xd7\xaa\xbd\x9a\xd7\xee\x92\x55\x6d\x96\xd4\x62\xc6\x66\x35\x91\x00\xe2\xa5\xe2\x1b\x6d\x50\xc6\x9f\x1b\x2d\x3e\x88\x93\xa7\x49\x3c\x5f\x44\xd3\xdc\x08\x54\xc2\xba\xbc\xbb\x09\xd3\x14\xa0\x69\x6b\x49\x78\xf6\x6c\xc7\x00\xd0\x7d\x77\x4d\xee\xbd\x6e\xe0\x75\x89\x1f\xf8\xeb\x31\xf1\xbf\x39\xfa\x6d\x4c\x18\xea\xca\x3f\x1d\xf9\xc7\xf3\xe0\xaf\x0b\x7f\x21\x4d\x9e\xbf\x19\xf2\x20\xb5\x2f\xff\x1c\xca\x3f\x3d\xf9\xe7\x48\xfe\x69\xbb\x3d\xf5\x23\xcf\xa8\xf7\x9e\x1b\x78\x2e\xf1\xbc\xc0\xf3\x88\xe7\x07\x9e\x4f\xbc\x76\xe0\xb5\x89\xd7\x09\xbc\x0e\x69\x07\x6d\xd2\x76\x7b\x41\xdb\xed\x91\xb6\xdb\x0f\xda\x6e\x9f\x74\x82\x0e\xe9\x06\x5d\xd2\x0b\x7a\xa4\x1f\xf4\xc9\x61\x70\x48\x8e\x82\xa3\xf5\x98\xb4\xb7\x91\x67\xc8\xef\x43\xfd\xbe\x42\xc8\xf7\x7a\xea\xa7\xab\x7e\x54\x9a\xef\xaa\x1f\x1d\x79\xa4\x7e\xfa\x2a\x52\xff\xa8\x72\xbe\xaf\x7e\xda\xea\xc7\x53\x39\x75\x48\xd5\xe0\x6b\x98\x00\xc5\x3b\x54\x3d\x73\xa8\x3a\xe5\x50\x15\x68\xeb\x1f\x55\xad\xab\xa1\xe8\x1f\x55\x83\xab\x7f\x14\x68\x57\x81\x76\xbb\x58\xae\x3f\xd5\x81\xbe\xab\x30\x73\x55\x7d\xae\xc6\x5a\xd7\xa7\x06\xe7\xb0\xab\x7e\x7a\xea\xa7\xaf\x7e\x0e\xd5\x8f\x42\xf0\x48\x15\x38\x52\xe3\x78\xa4\xf0\x3c\x52\x23\x79\xa4\xa0\x1c\x29\x28\x47\x0a\xca\x91\x82\x72\xa4\xa0\x1c\xa9\x6a\x5d\xd5\x94\x9e\xea\xc1\xbe\x0a\xf5\x15\x82\x3d\x85\x60\x4f\x67\x51\xcd\xec\xa9\x36\xf4\x3d\x68\x51\x5f\x35\xb3\xab\x22\xbb\xaa\x5c\x57\x95\xeb\xaa\x1a\x7a\xaa\x43\x7a\x2a\x67\x4f\x75\x48\x4f\xd7\xa0\xb2\xf4\x55\x96\xbe\x4a\xeb\x6b\x5c\x14\xd6\x2a\xe4\x29\x94\x3c\x13\xa9\xba\x40\xcd\x10\x4f\x81\xf6\x14\x82\x5e\x4f\x47\xea\x72\x2a\xb2\xaf\xb3\xa8\x3e\x53\xb5\x7b\x5d\x0d\x53\x75\x5d\x17\xc6\xc8\xeb\xeb\x2c\xaa\x06\x85\xbc\xa7\x1a\xed\x75\x55\xb7\x76\x75\x48\x65\x51\xad\xf5\x14\xf2\x9e\x6e\x5f\x47\xb5\xaf\xa3\x7b\x42\x47\xaa\xd6\x76\x55\x7f\x76\x55\x7f\x76\x55\xdb\xbb\xaa\x7b\xda\x7a\xba\xe9\x6e\x55\x3d\xa1\x46\xda\x57\x23\xed\xab\xb6\xfb\x6a\x7e\xfa\x6a\xa2\xf8\x6a\x6a\xf8\x87\x3a\x4d\x15\x3f\xec\xc1\x18\xa9\x29\xe5\xab\x49\xe4\xeb\x99\xac\xe6\xb5\xdf\xd6\xd5\xaa\x2c\x6d\x05\xac\xad\x46\xb3\xad\xdb\xa0\x2a\x6a\xab\x1a\xda\xaa\x86\x8e\x82\xd2\x51\x50\x3a\x0a\x4a\x47\x37\x53\x15\xef\x74\x31\x11\x66\xd3\xa3\x0c\x75\x7d\x20\x1b\xdd\x4e\xe0\x75\x3b\xc4\xeb\x4a\xe2\xd5\x25\x5e\xb7\x17\x78\xdd\x1e\xf1\xba\xfd\xc0\xeb\xf6\x89\xd7\x3d\x0c\xbc\xee\x21\xf1\xba\x47\x81\xd7\x3d\x22\x5e\xcf\x0d\xbc\x9e\x4b\xbc\x9e\x17\x78\x3d\x8f\x78\x3d\x3f\xf0\x7a\x3e\xf1\x7a\xed\xc0\xeb\xb5\x89\xd7\xeb\x04\x5e\xaf\x43\xbc\x5e\x37\xf0\x7a\x5d\xe2\xf5\x7a\x81\xd7\xeb\x11\xaf\xd7\x0f\xbc\x5e\x9f\x78\xbd\xc3\xc0\xeb\x1d\x12\xaf\x77\x14\x78\xbd\x23\xe2\xf5\xdd\xc0\xeb\xbb\xc4\xeb\x7b\x81\xd7\xf7\x88\xd7\xf7\x03\xaf\xef\x13\xaf\xdf\x0e\xbc\x7e\x9b\x78\xfd\x4e\xe0\xf5\x3b\xc4\xeb\x77\x03\xaf\xdf\x25\x5e\xbf\x17\x78\xfd\x1e\xf1\xfa\xfd\xc0\xeb\xf7\x89\xd7\x3f\x0c\xbc\xfe\x21\xf1\xfa\x47\x81\xd7\x3f\x22\xde\xa1\x1b\x78\x87\x2e\xf1\x0e\xbd\xc0\x3b\xf4\x88\x77\xe8\x07\xde\xa1\x4f\xbc\xc3\x76\xe0\x1d\xb6\x89\x77\xd8\x09\xbc\xc3\x0e\xf1\x0e\xbb\x81\x77\xd8\x25\xde\x61\x2f\xf0\x0e\x7b\xc4\x3b\xec\x07\xde\x61\x9f\x78\x87\x87\x81\x77\x78\x48\xbc\xc3\xa3\xc0\x3b\x3c\x22\xde\x91\x1b\x78\x47\x2e\xf1\x8e\xbc\xc0\x3b\xf2\x88\x77\xe4\x07\xde\x91\x4f\xbc\xa3\x76\xe0\x1d\xb5\x89\x77\xd4\x09\xbc\xa3\x0e\xf1\x8e\xba\x81\x77\xd4\x25\xde\x51\x2f\xf0\x8e\x7a\xc4\x3b\xea\x07\xde\x51\x9f\x78\x47\x87\x81\x77\x74\x48\xbc\xa3\xa3\xc0\x3b\x3a\x22\xbe\xeb\x06\xbe\xeb\x12\xdf\xf5\x02\xdf\xf5\x88\xef\xfa\x81\xef\xfa\xc4\x77\xdb\x81\xef\xb6\x89\xef\x76\x02\xdf\xed\x10\xdf\xed\x06\xbe\xdb\x25\xbe\xdb\x0b\x7c\xb7\x47\x7c\xb7\x1f\xf8\x6e\x9f\xf8\xee\x61\xe0\xbb\x87\xc4\x77\x8f\x02\xdf\x3d\x22\xbe\xe7\x06\xbe\xe7\x12\xdf\xf3\x02\xdf\xf3\x88\xef\xf9\x81\xef\xf9\xc4\xf7\xda\x81\xef\xb5\x89\xef\x75\x02\xdf\xeb\x10\xdf\xeb\x06\xbe\xdc\x9d\xbc\x5e\xe0\x7b\x3d\xe2\x7b\xfd\xc0\xf7\xfa\xc4\xf7\x0e\x03\xdf\x3b\x24\xbe\x77\x14\xf8\xde\x11\xf1\x7d\x37\xf0\x7d\x97\xf8\xbe\x17\xf8\xbe\x47\x7c\xdf\x0f\x7c\xdf\x27\xbe\xdf\x0e\x7c\xbf\x4d\x7c\xbf\x13\xf8\x7e\x87\xf8\x7e\x37\xf0\xfd\x2e\xf1\xfd\x5e\xe0\xfb\x3d\xe2\xfb\xfd\xc0\xf7\xfb\xc4\xf7\x0f\x03\xdf\x3f\x24\xbe\x7f\x14\xf8\xfe\x11\xf1\xdb\x6e\xe0\xb7\x5d\xe2\xb7\xbd\xc0\x6f\x7b\xc4\x6f\xfb\x81\xdf\xf6\x89\xdf\x6e\x07\x7e\xbb\x4d\xfc\x76\x27\xf0\xdb\x1d\xe2\xb7\xbb\x81\xdf\xee\x12\xbf\xdd\x0b\xfc\x76\x8f\xf8\xed\x7e\xe0\xb7\xfb\xc4\x6f\x1f\x06\x7e\xfb\x90\xf8\xed\xa3\xc0\x6f\x1f\x11\xbf\xe3\x06\x7e\xc7\x25\x7e\xc7\x0b\xfc\x8e\x47\xfc\x8e\x1f\xf8\x1d\x9f\xf8\x9d\x76\xe0\x77\xda\xc4\xef\x74\x02\xbf\xd3\x21\x7e\xa7\x1b\xf8\x9d\x2e\xf1\x3b\xbd\xc0\xef\xf4\x88\xdf\xe9\x07\x7e\xa7\x4f\xfc\xce\x61\xe0\x77\x0e\x89\xdf\x39\x0a\xfc\xce\x11\xf1\xbb\x6e\xe0\x77\x5d\xe2\x77\xbd\xc0\xef\x7a\xc4\xef\xfa\x81\xdf\xf5\x89\xdf\x6d\x07\x7e\xb7\x4d\xfc\x6e\x27\xf0\xbb\x1d\xe2\x77\xbb\x81\xdf\xed\x12\xbf\xdb\x0b\xfc\x6e\x8f\xf8\xdd\x7e\xe0\x77\xfb\xc4\xef\x1e\x06\x7e\xf7\x90\xf8\xdd\xa3\xc0\xef\x1e\x11\xbf\xe7\x06\x7e\xcf\x25\x7e\xcf\x0b\xfc\x9e\x47\xfc\x9e\x1f\xf8\x3d\x9f\xf8\xbd\x76\xe0\xf7\xda\xc4\xef\x75\x02\xbf\xd7\x21\x7e\xaf\x1b\xf8\xbd\x2e\xf1\x7b\xbd\xc0\xef\xf5\x88\xdf\xeb\x07\x7e\xaf\x4f\xfc\xde\x61\xe0\xf7\x0e\x89\xdf\x3b\x0a\xfc\xde\x11\xf1\xfb\x6e\xe0\xf7\x5d\xe2\xf7\xbd\xc0\xef\x7b\xc4\xef\xfb\x81\xdf\xf7\x89\xdf\x6f\x07\x7e\xbf\x4d\xfc\x7e\x27\xf0\xfb\x1d\xe2\xf7\xbb\x81\xdf\xef\x12\xbf\xdf\x0b\xfc\x7e\x8f\xf8\xfd\x7e\xe0\xf7\xfb\xc4\xef\x1f\x06\x7e\xff\x90\xf8\xfd\xa3\xc0\xef\x1f\x11\xff\xd0\x0d\xfe\x3f\xda\xde\x75\xbb\x71\x63\x4b\x13\xfc\xaf\xa7\x10\xd1\xa7\x50\x11\xc9\x4d\x08\x00\xef\x21\x85\xd8\xe9\xb4\xd2\x27\xfb\x38\x2f\x95\xca\x63\xd7\x29\x1e\x96\x16\x44\x06\x45\x38\x49\x80\x07\x00\xa5\x94\x05\xd6\x72\xcf\x4c\xcf\x75\xad\x79\x80\xf9\x33\xfd\x77\x7e\xcd\x3b\xd4\x9b\xb4\xe7\x45\x66\xc5\x0d\x08\x90\x20\x53\x76\x55\xdb\x6b\xa5\xc0\x00\x10\x88\xeb\xbe\xc5\xde\xdf\xf6\x07\x2e\xf8\x03\x8f\xf8\x03\x0f\xfc\x81\x4f\xfc\x81\x0f\xfe\xa0\x4d\xfc\x41\x1b\xfc\x41\x87\xf8\x83\x0e\xf8\x83\x2e\xf1\x07\x5d\xf0\x07\x3d\xe2\x0f\x7a\xe0\x0f\xfa\xc4\x1f\xf4\xc1\x1f\x0c\x88\x3f\x18\x80\x3f\x18\x12\x7f\x30\x04\x7f\xe8\x12\x7f\xe8\x82\x3f\xf4\x88\x3f\xf4\xa0\xeb\x93\x2e\x97\x7f\x3a\xb5\x22\x04\xe7\x8a\x3b\x34\xc8\x11\x68\x0d\xce\x7c\x19\x64\x6f\x83\xf5\x16\x9e\xfc\xa1\x4f\xfc\xa1\x5f\xd4\xd4\xad\xaf\xa9\x7d\xa8\xa6\x30\x9a\x2e\x37\x33\x96\x8a\xaa\xda\xc4\x1f\xb6\x8b\xaa\x7a\xf5\x55\x75\xf6\xab\x92\xb8\xb4\x0e\x8b\xb2\x24\x54\x55\x75\x88\x3f\xec\x14\x55\xf5\xeb\xab\xda\xa7\xb1\xba\xaa\x3b\x96\xbd\x7f\x88\x3e\x24\xf1\x9a\x25\xd9\xe3\xb7\x2c\x9d\x26\xe1\x3a\x8b\x13\x59\x79\x97\xf8\xc3\x6e\x51\xf9\xa0\xbe\xf2\xde\xc1\xca\x85\x75\x55\xd6\xd4\x23\xfe\xb0\x57\xd4\x34\xfc\xba\x12\x22\x59\x9c\xcf\xa5\x91\xdd\xda\x3f\x24\xf1\x2a\x4c\x99\x33\x0f\x23\x2e\x73\xf3\xfa\xf5\xf6\x1d\xf6\x89\x3f\xec\x17\xdf\xf1\xdc\xfa\x26\x0f\xf6\x2b\x95\xd6\x65\x67\x1d\xcc\xae\xa2\x99\x68\xf2\x80\xf8\xc3\x41\x59\x55\x8d\xe2\xc4\xab\x1a\x1e\xab\xea\x3a\x0b\x92\x4c\x54\x36\x24\xfe\x70\x58\x56\x56\x23\x87\x73\x91\xd9\x3b\x58\x59\x96\x84\xab\x8f\xe1\xdd\x82\xd7\xd6\x76\x3d\xd2\x76\xcb\x45\xed\xd5\x0a\xc6\x6d\x2e\xb3\x1d\xa9\xed\x7b\x36\x97\x95\xb9\xa4\xed\xba\x65\x65\xb5\x5b\xa4\xed\xee\x6c\x11\xaf\xeb\x61\x67\x8e\xac\x20\x7d\x8c\xa6\x6f\x32\x96\x04\x59\x9c\x58\x92\x75\x7b\xc4\xeb\x7a\xd0\x76\x7d\xd2\x76\x45\x95\xb5\x7b\xa5\xbd\x5b\xe3\x00\x3b\x77\xcb\xf8\x36\x58\xf2\x4a\x38\xbb\x83\xb6\x4f\xda\xa2\x82\x9a\x1d\x52\xbe\xba\x73\xc4\x55\x6a\xcb\x25\xc0\x0d\x96\x3a\xff\xa7\xc7\x35\x93\x16\x02\xd6\xb4\xb8\x9e\xc8\xd5\xc3\xa0\x30\x65\x34\x4a\x78\x0e\xb6\xdd\xc2\x13\xff\x72\xcd\x86\x52\x69\xbc\x90\x3f\xc0\x27\x07\x5b\xd1\xe0\x17\x47\x3f\x1b\x9d\x4a\xbc\xfb\xdd\xaf\x72\x4e\x35\xe0\x9f\xae\xd9\x6e\x0a\x17\xa4\xf8\xe8\x93\xd2\x50\x89\xe5\x3b\x3d\xa7\x6b\x6d\x4f\x76\x21\x15\x4f\x6f\x6e\x98\x6d\xa3\x9b\x1b\x46\x23\xac\xfa\x54\xb3\xfb\x74\x9f\xbc\x5e\x7d\x9f\x0a\x6c\x18\xde\x2d\x28\x6d\x7e\xda\x12\xc3\x34\x6a\x7c\x22\xbd\x1b\x4e\x3d\xb2\xeb\x05\x67\x24\xc3\x2d\x01\x4a\xb6\xc2\xe1\xe0\xd4\xdf\x7f\x1a\xa2\x9a\xe7\x21\xd2\x6f\xb4\xeb\xde\x30\x4e\xc6\xcc\x77\x20\xc4\xdb\xed\x41\xa7\x3c\xa6\xcc\xf2\x99\x61\x93\xdf\xf2\x89\xf0\xb8\x88\xc8\x75\xe6\x1a\x22\x52\x8e\x51\x83\xd3\x2a\x8c\xf6\xeb\xed\x37\xa8\x22\x83\xd2\x04\xa2\x69\x2c\x7a\xda\x82\x15\x58\xf0\x74\xc7\x32\x52\xf3\xda\x76\x8b\x9d\x60\x8b\x05\x55\x23\x7e\x9b\x37\xa0\x86\xf4\x18\x8b\x10\x42\xfe\xb7\x83\x9d\x59\x3c\x15\xed\x87\x98\x46\x28\xc4\xb6\x1d\xa1\x50\xa2\xfc\xb2\xab\x25\xe3\x77\x0e\x2d\x58\x6d\x4f\x1b\xed\x3c\x8f\x18\x26\x4f\x62\x30\xb8\x7c\xc5\xd9\xaf\x5c\x9b\x7e\x0d\xfd\x2a\x5a\xd4\x91\x2d\xe2\xba\x77\xcc\xff\x0e\x31\x04\xbc\xbc\x27\xa0\x76\x10\xd7\xc2\x37\xb5\xa1\x7c\xe2\x44\x19\x16\x94\xd9\x1b\xe7\x35\xcc\xc4\xdf\xef\x60\x2d\xfe\x5e\xc3\x4a\xfc\xfd\x00\xf7\xe2\xef\x37\xf0\x28\xfe\xfe\x08\x77\x74\x36\x0a\x49\x38\xce\x26\x79\x8e\xf8\x1f\xfa\xb4\xc5\x70\x6b\x66\xed\x83\x1b\x3a\x1b\x45\x64\x3d\x8a\xc6\xd9\x84\xa0\x48\x3c\xfb\xb4\xc5\x26\x92\x52\x9c\xa0\xe5\x69\x18\x9d\xce\x24\x6a\x10\x86\x04\xa3\x29\x6d\x2c\x6c\xfb\xc6\xb6\x0b\xab\xf7\xcd\x78\x39\xc1\xb6\x9d\xa2\x3b\x58\xe2\x3c\x47\x73\x3a\x1d\xf1\x32\x92\x8c\x97\x13\xb8\x1b\x2f\x27\x74\x66\xdb\x35\x24\x88\x3f\x34\xe2\x0f\x91\x7b\xdb\x9e\x8e\x62\x34\x87\x08\x93\x47\xdb\xe6\x37\x28\x9d\x8f\xf6\xbd\x9c\x8b\x12\x65\x5f\x55\x31\x8e\xc2\x1c\x14\x44\x53\x05\xeb\xa8\xf6\x5d\xb1\x76\x95\x05\x50\x6d\x43\x57\x6f\x93\x88\x3d\x9c\xb2\x93\xea\xd6\x14\x65\x28\xc3\x3b\x7b\x50\x15\xf3\xdd\xb9\x5b\x62\xd8\x2a\x8b\x6d\xb3\x08\x53\x73\xe7\x94\x69\x36\x4a\xeb\xb9\x01\xcf\x0e\xd9\x16\xcd\x31\x59\x99\x83\x54\xd0\xaa\xf9\x28\x46\xaf\x55\xa9\xd8\xbf\x30\xc7\x64\x0e\x2b\xdb\x46\xe8\xce\xb9\x0f\x93\x6c\x13\x2c\xf3\xbc\xbc\xe6\x53\x8d\xf9\x00\xce\x81\x2f\x86\x8f\xb6\x7d\x6b\xdb\x8d\xdb\xf1\x72\x62\xdb\x01\xba\x05\x5e\x01\xc6\xdb\x93\x8d\xf3\x9a\x7a\xb0\x71\xbe\xa3\x3e\x6c\x9c\x6b\xda\x81\x8d\xf3\x81\x0e\x60\xe3\x7c\x43\xbd\x1e\x6c\x9c\x1f\x69\x9b\xdf\xf9\x33\xed\xf1\x5b\x1f\xa9\xe7\x0f\x0c\xe6\xb4\x29\x38\x92\xc7\xd5\x25\x50\x9b\x81\x8b\xde\xc0\x15\x0d\x41\x25\x6a\x98\x70\xfd\x66\xcb\x92\xc7\x02\x96\x8f\x21\xbc\x9d\x8a\x04\xba\x59\x19\x57\xbb\x55\xcc\xc7\xaf\x61\xc5\xbb\x1c\xa0\xce\xc2\xfa\x10\x46\xb3\xf8\xc1\xb6\xe5\x5f\xe7\x6d\x90\x2d\xa8\x70\xd6\x1d\xc9\x12\x52\xf7\x52\xca\x96\x73\xdb\xe6\xff\x9a\x2f\xf0\xdf\x44\x4f\x09\xb2\x0c\x77\x11\x0b\x23\x5c\xc7\x6d\xee\x04\xb7\xb9\x2b\xb8\x8d\x5f\xc3\xfc\x65\x27\x9e\xb6\xce\x22\x48\x0d\xe9\xf3\x00\xe7\x29\x11\xec\x24\x4d\x17\x99\x6d\x54\xe5\x35\x82\x41\x41\x87\x86\x92\x0e\xb5\x5d\x93\xea\x31\xe4\xbb\x78\x74\xe0\x40\x2e\x72\xe6\xa2\x24\x44\x9e\x48\x66\x44\x0e\x3c\xc7\x38\x95\x49\x40\xb2\x6b\xae\x38\x03\x57\x2b\x87\xd0\xe6\xa2\x14\x6f\x56\x8d\xd4\x50\xe5\x18\x2e\xb6\xed\xdf\xce\x39\x18\xf2\x3d\x8c\xac\x59\x78\x6f\xe1\xe7\xf2\x10\xd9\x3c\xae\x85\x43\xc1\x4f\x6a\x24\x8b\x63\x7c\x61\x3f\x31\xcf\x48\x9e\x96\x52\x56\x7b\xba\xa8\x27\xe7\x98\x9c\xd1\x57\x6c\xab\x2f\x99\x44\xdb\xe3\x4c\xa2\xb6\xd7\x27\x89\x33\x57\xd3\x56\x7b\x7f\x6f\x92\xb4\x94\x92\xd1\x18\x65\x02\xd3\x95\x0b\x1f\x10\xe2\x72\xe3\x9d\x06\x3a\xcb\xbe\xdc\x7c\x29\x7e\xda\x72\xd1\xf1\x8e\x65\x56\x18\x9d\x26\x79\x6e\xa5\xea\x72\x4f\x86\xb3\x5e\x2a\x00\x48\x29\xc7\xa5\x9b\x35\x1f\x37\x36\x2b\xe5\x38\xe9\x55\x22\xde\xb6\x6d\x24\x17\x8b\xd4\x85\xb0\x5c\x33\x5e\x9f\x78\x7d\x50\x53\xc3\x15\x62\x68\x7b\xa4\xed\x6d\x27\x7c\x05\x3d\x6b\x6a\xca\x5d\xf1\xc4\xa2\xcd\x8a\x89\xf3\x0d\xd2\x40\x9e\xcd\x30\xc8\xc3\xf4\x8d\x2e\xf3\x79\xd9\x43\x12\x66\xea\x77\x87\xff\x16\xcd\x21\x99\x26\x35\xed\xe3\x22\xc6\xc1\x9d\x59\x48\xba\x85\x1c\x28\x4f\xfb\x43\x11\x91\x5f\x47\xe4\x51\x22\xa2\xed\x55\x82\x0e\xdb\x6e\x44\x28\xa4\x0a\x30\xdf\xc0\x23\x16\x15\x1c\x78\x5b\x39\xed\x7c\xe5\xe5\xc6\xbf\xed\xf3\x7b\xd3\xfe\x2a\x88\xfe\x3e\x3b\x9d\xc6\xd1\x3d\x4b\x32\x25\xbb\x9f\x66\xf1\xe9\x3a\x09\x57\x61\x16\xde\xb3\x53\x39\xed\xd8\x14\xe2\xdb\xc7\x04\x25\x1f\x9f\x44\x28\x72\xbe\x83\x27\xa9\xf7\x10\x21\x3c\xc9\x6d\xeb\x13\xdf\x97\x7c\x86\xd7\x52\xc3\x5b\x0a\x96\x3b\xee\x4c\xc6\x5e\x4f\x9c\x4b\x4a\x8e\x9c\x98\xec\xb8\x14\x63\xdb\x07\xb9\x09\x43\x9d\xe3\x53\xac\xc9\xbc\x89\x18\x6a\xbd\xd3\x65\xb5\x9a\x4e\x81\x36\xd9\x14\x2b\xbe\x33\x20\x1d\x31\x1e\x07\xb9\x01\x57\x29\x7d\x8c\xac\x4d\x94\x4e\xe3\x35\x5f\xaa\xa9\xc5\x69\x84\xb4\x9e\x94\x82\x9a\xc4\xb0\x0e\x45\x20\x34\x43\x7d\x1f\xa3\x10\x22\xe0\x22\xdf\x01\x5d\x6c\x1c\x4d\xc6\x6c\x42\x39\x5b\xe5\xca\xa9\x4f\xbc\xae\x0f\x7d\x9f\xf4\xb9\x66\xd9\xae\x61\x20\x15\x4b\x44\xd1\x38\x7f\x88\x51\xc3\x3d\xa6\x1d\x15\xce\xda\x28\x19\xc9\xb1\x53\xb2\x18\xf1\xc4\x9a\xf0\xfc\x21\xf1\x7c\x71\x90\x75\x94\x3f\xec\xfa\xfb\xc9\x5d\x86\x98\x29\xf8\x65\x38\xcf\x0b\xa1\x34\xb2\xed\x48\x65\x40\xdb\x99\x85\xa4\x69\x91\xd3\x30\x9a\xc6\x49\xc2\xc4\x41\xe2\x7d\x3c\x0d\x0e\xa8\xba\xed\x1a\xae\x50\x5d\x64\xfd\x23\x8b\x4c\x50\xb4\x81\x47\x06\x82\x8a\x7d\xcd\xbe\x53\x8c\x6a\xc7\x57\xca\x42\x5b\x31\x02\xaf\xe3\x99\x63\x3c\x9e\x38\xd3\x78\xfd\xf8\x63\x98\x2d\xc2\x28\xcf\xeb\xdc\x44\x22\x15\xad\x19\xd0\x18\xe9\xb4\x6c\x5c\xd3\x08\x11\x83\x80\xab\x1a\x21\x57\xed\x30\x2c\xe9\xae\x8c\x7c\xe9\x8f\xca\x0e\xfa\x13\x22\x07\x14\xa6\x32\xb0\x69\x15\x46\xa8\xf4\x6e\x59\x8e\x02\x12\xa2\x25\x04\x18\xb7\x36\x10\xb4\x52\x0c\x73\xea\x09\xb5\x61\x73\x91\xda\x76\x7a\xb1\x69\x4e\x6d\x1b\xcd\x69\xcb\x83\x4d\x93\x4e\x5b\x1e\xa4\xe2\x0f\x3e\x9f\xb6\x5a\xa7\x97\xee\x39\xde\xf0\x49\x4a\x46\xc9\x38\x9d\xd0\x64\xbc\x99\x10\xe5\x66\xc4\x0b\xf8\xc3\x73\xfe\xe2\xbc\xf0\x71\x11\x6b\xa6\xdd\x27\x5e\xbb\x0f\x5e\xc7\x23\x5e\xc7\x03\xaf\xe3\x13\xaf\x23\x2c\x99\x35\x9c\xe2\xf7\x8d\xb1\xb9\x5b\xb4\xd3\x41\x56\x0c\x6b\xc2\xb9\x68\x31\xac\xc1\xde\x20\x8a\x91\x0e\x2e\x3d\x63\x28\xbd\x62\x28\x13\x3e\xfe\xc1\x81\x71\x5e\xd2\x62\x74\x37\xa3\x84\x84\x68\x03\x09\x3e\x5f\x5e\xa6\xe7\x38\x1b\xa7\xcd\xe6\x84\x16\xc1\x40\xd9\x57\xc6\xe2\x08\xf7\xf2\x3a\xae\xea\x7e\xc7\x53\xdd\x6f\xf7\xbf\xa2\x07\x57\x34\x2f\x85\x04\x9c\xc2\x86\x8f\x09\x5f\x47\x21\xda\x14\x03\x32\xa5\x31\x0a\x60\x29\xfc\x52\x98\x6d\x27\x0d\x9a\xc8\x51\x3c\x5f\x5e\x4e\xcf\x71\x38\x47\x28\xa5\x9b\xf1\xb4\xd9\x9c\xe0\x06\x4d\x71\x21\xe3\x0b\xa7\xb5\xe2\xc1\x69\xb3\x29\x9e\x65\x79\x3e\xe5\xab\x64\x83\x6d\x7b\x33\x9e\x4e\x28\x2d\x31\x68\xf9\xbd\x3c\xd7\x81\xaf\x0d\x66\xdb\x2d\x6f\x5b\x1d\x18\x97\x78\x1d\x57\x0f\x10\x1f\x98\x23\xec\xa7\xab\xf4\xf4\x7e\xb1\x2a\x7c\xa9\xa8\x8b\x81\xe2\x92\x72\xa7\x7b\x98\x2b\xc8\xbd\xe7\x51\xca\x60\x43\x7d\xfe\x67\x49\xdb\x54\xc4\xc4\x75\xf8\x9f\x39\xed\xf1\x3f\x0b\xda\x15\xe1\x3a\x73\x98\xd1\x2c\xcf\x8b\xb4\x60\xc6\x08\xa7\xb0\x2e\xd7\xdd\x0a\xee\xe1\x91\xaf\x38\x0c\x77\x34\x44\x8f\x5c\x91\x8f\x50\x0a\x6b\x68\x63\xb8\xa1\x01\xba\x2b\x46\xfe\x81\xba\x70\x45\x93\xd1\x0c\x65\x70\x83\xc9\x46\x5c\xb8\x58\xad\xae\xf3\x9b\xcb\x87\xf3\x07\x35\xaa\x8b\x3c\x7f\xe0\xa3\xca\x19\x3e\xba\xa7\xb7\x68\x45\xef\xc6\x0f\x13\x78\x80\x47\x0c\x0c\xf3\x67\x12\x7c\x35\x7e\x98\xd0\xfb\x02\xee\xfe\x1e\x57\xf3\x20\x16\x16\xa7\x86\x2b\xf5\xe5\xae\xd6\x97\x57\xf2\x77\x4f\xff\x7e\xd0\xfa\xf4\x95\xcc\x47\xb9\x52\x1e\x8a\xe1\x1c\x4d\xf5\xfc\x17\x48\xcf\xf3\x51\xcb\x23\x22\x80\x6e\x4a\xae\xe4\x6c\x56\x97\x37\x74\xba\xa4\xd3\x85\x6e\x87\x74\x3b\xd0\xef\x93\x7e\x9f\xcf\x6b\x8d\x40\xa0\xe7\xb5\xdd\xd6\xeb\xdd\x97\x13\xcb\x27\x38\x38\xb6\xed\x05\x9b\x49\x61\x83\x9f\xf8\x02\x57\xde\x54\x21\x17\xa1\xf9\xea\x5e\x72\x4a\x17\xa0\x65\x31\xf0\x0b\xba\x19\xcd\x5b\x1e\x71\x61\x46\x37\xbc\xf9\x9e\x80\x95\xb8\xf0\x05\x30\xd2\xf9\xb9\xe0\x57\x0b\x3e\xde\x53\xfc\x94\xd2\xe9\x78\x31\x81\x45\x93\xce\x64\x2a\x41\x2e\x67\xf3\x5f\xb0\x19\x2d\x2e\x5c\x32\xbf\xa0\x8b\x7d\x11\xfb\x23\x9b\x6d\xa6\xec\x94\x4b\x1a\xab\x75\xf6\x78\x1a\x70\x21\xe0\xf4\x21\xcc\x16\xa7\x51\x7c\x1a\x46\x61\x16\x06\xcb\x42\xde\x12\x9f\xdd\x8c\x16\x97\xd4\x25\xf3\xcb\xc5\x39\xaf\x1e\xcb\x06\xd8\x36\x4a\x69\x86\x52\x90\xad\x80\x65\xe9\x07\x9f\xd6\x0d\x76\xbb\x4d\xda\xed\x72\x98\x8f\x88\x4c\x03\x4f\x6d\x9f\xa1\xda\x3e\x42\x7a\x49\xd7\x6c\x1a\x72\xc9\xe5\x00\x81\x91\xe9\x3b\x0b\x9f\x30\x81\xb3\xbd\x6f\x2d\x42\x19\x65\xce\x34\x8e\xd2\x2c\xd9\x4c\xb3\x38\xc1\x79\x9e\x35\xa8\x14\x85\x6c\xbb\x11\x22\xc3\xb8\x22\x20\x05\x0a\x94\xee\x48\xe0\x62\xeb\x3c\x1f\x19\xcd\xc6\xf1\x44\x62\x79\x17\x18\xd8\x86\xc3\xa6\xa8\x90\x64\x15\xc1\x68\x48\xfa\xc3\x82\x91\x77\x8e\x88\x6b\x9d\xce\x61\xea\x50\xda\x8d\x84\x2a\x86\x91\xd4\xd8\x3b\x1d\xd2\xe1\xf2\x6c\xe7\xb9\x52\x97\x5e\xcb\x03\x45\xba\xfb\x3d\xbe\x94\xb5\x3b\x3a\xa4\xf4\x69\x6b\xb4\xa1\x30\x1d\xdd\x86\xd1\xcc\x14\x16\xb4\x45\xad\xe4\x69\xc1\xae\x2b\xbb\x57\x31\x4a\xea\x5e\x26\x7c\x16\xa6\x41\x86\x76\x9f\xc7\x95\x64\x38\xa6\x64\xb6\xd9\x33\x2e\x08\xe9\x8d\x0b\x5f\xa7\x29\x2e\x29\x5d\x44\xc7\x13\x90\x98\xe1\x99\xc0\x0c\x8f\xc6\xe1\x84\x5a\xc1\xd8\x6a\x86\x4d\x6b\x62\x9d\xa4\x5c\x6f\x2c\x4d\x2f\xaf\x21\xb0\xc0\x32\x0c\x72\xaf\x91\xd5\x8c\x9c\x9f\xe2\x30\x42\x16\x58\xb8\x69\x61\xab\x30\xce\xf1\x77\x11\xe3\xfa\x2d\xca\x40\x3b\x05\x42\x84\x09\xd7\x88\x23\x60\xa5\x99\xae\xba\x96\x6c\x1b\x6d\x0c\xbb\x9d\x79\x0b\x36\x7c\x06\xd5\xfe\xe8\x91\x7e\xaf\x5c\x24\x47\xce\x48\x3a\xca\x3c\x2d\x77\x87\xd6\xbb\x3e\x05\x77\x16\x9f\x50\xeb\xa5\x1e\x4f\x8b\xd2\xa8\xc6\x12\x52\x8c\xf7\x16\xe1\xa3\x5b\x8a\xf3\xe9\x93\x7d\xf7\x67\xeb\xcf\x85\xa1\x8b\xa8\x4d\xc1\x46\xd6\xbb\xcd\x72\x29\xf0\xf9\x2a\xf9\x4c\xd0\x6e\xd2\x66\xc3\x5c\xc0\x75\x78\x65\x2a\x48\xf0\xd3\x76\x8b\x32\x65\xab\xe0\x44\x32\xc4\x78\x94\x90\x78\xc4\xf7\x1e\xb1\xde\x6b\x5b\x09\x0a\x84\xbc\x80\x6b\x2d\x9d\x99\x58\x4f\x8c\x8d\x8c\x21\x20\x81\xb9\x11\xb5\xc6\xd4\x39\x78\x0c\xf4\xb4\x2d\x14\xd9\xe3\xe2\x8c\xb6\x9b\x61\x85\xa6\x3e\x10\x51\xbb\x52\xea\xef\x3c\x57\x54\x1f\x0e\xb1\x33\x17\x73\x39\xd4\x86\x7d\x4f\x31\x16\x2e\x49\x70\x79\x81\xcb\x97\x1b\xca\x50\x6f\xc0\xa5\x24\x86\x06\x5d\xce\x41\x18\x1a\xf4\x39\x0b\xe1\x3a\x54\x9b\x73\x0f\x86\xba\x03\x0c\x33\x5e\x53\x07\x3b\xf3\x20\xcd\xfe\xc4\x1e\x61\x2d\x38\xd4\x10\xc3\x8a\x2e\x46\xd6\x4d\xca\x27\x28\xfc\x99\x59\x70\x7f\x20\x91\xf8\x8c\xf3\x2a\xae\x9c\xbe\xb6\xb8\x0e\x84\x4b\xf4\x0b\xae\xf2\x49\x3c\x72\xca\x9c\x9b\xf9\x79\x72\x9e\xd0\xc4\x89\x04\x9b\x77\x3e\x1b\xa7\x56\x89\x49\x3d\x9e\xee\x58\xf6\xaa\xa4\xb9\x3b\x66\x25\x58\xca\x2f\xf3\xfe\x18\x77\x22\xfc\x94\x22\x06\x53\xc8\xc0\xba\x09\x2d\x0c\xcc\xb9\xc9\x68\xc6\xff\x84\x34\x14\x61\x08\xa2\x6c\xae\xe8\x2f\xbf\x5e\x16\xd7\xe3\xd5\x84\xea\x94\x48\x91\x6d\x6f\x50\x04\x09\xb0\xf1\x72\xc2\x77\x68\x41\x61\x62\x34\x35\xec\xe7\x4f\xd3\x25\x0b\x12\xd3\xe8\xa7\x29\x0a\xa3\x6b\x69\x8d\xcf\x38\x85\xe3\x2d\x80\x48\x0e\x40\x74\x1e\xd1\xc8\x89\x70\xe4\x24\x22\x07\x93\xb3\xb6\x6d\x14\x39\x6b\x1a\x39\x6b\x27\x2a\x98\x47\xa1\x8e\x44\x4e\x38\x39\x11\xad\xde\x6f\xee\x56\x3d\xb6\x07\xcb\x92\x18\x9f\x8f\xe8\x3d\x4a\x80\x89\xf9\x29\x60\x4a\x22\x27\x82\x98\x7f\xf2\x44\x7f\x48\x4c\x95\x13\x4e\x40\x35\x2c\xb6\x6d\x14\x3b\x11\x0d\x31\x84\xb6\x8d\x42\x67\x4d\x63\x0c\x09\x6f\x08\x1f\x1f\x24\xae\x42\x51\xb2\x2c\x4a\x96\xe2\x99\xf1\x6a\xd2\x6a\x6d\xb5\x59\x3d\xda\xc2\x3c\x4e\xae\x82\xe9\xa2\xd2\xcc\xa2\x81\x65\xe6\x70\x88\x68\xc0\x15\xc5\x5d\xd5\xb0\x5e\x9f\x69\x63\xbe\x94\x46\x89\x13\xe9\x4c\x98\xe7\x42\xe8\x89\x50\xe2\xdc\x43\xe2\x7c\x96\x89\x44\xce\x13\xdb\x4e\x9c\xe4\x1c\xf3\x75\xb7\xde\xc2\x22\x48\xc9\xfe\xbe\x6c\x34\xee\x51\x39\x64\x4c\x60\xd1\x2c\x6c\x3b\xaa\x4c\xb7\xda\x04\x07\x0c\xbd\xc5\xeb\xe3\xd5\x84\xbf\x3e\xe5\xb3\x33\xdf\xb3\x88\x16\x50\x97\x54\xe4\x3a\x29\x57\xd6\x28\x76\xee\x69\x42\x90\x98\xe6\x98\x3e\x85\x24\xe4\xfb\x4a\x18\x4d\x3f\x93\x0c\xee\x49\x02\x6b\x22\x56\xd1\x12\xa2\x42\xab\x23\x0d\x6f\x2b\x56\x75\x9e\x23\xb1\x4c\x62\x0c\x91\x58\x52\x11\xbf\xe4\x0b\xa5\xd9\x04\xb9\x31\xf9\x44\x8a\x3d\x19\x4e\x68\x8c\x31\xb0\x2d\xdc\xb1\xec\x2a\xca\x92\x47\x72\x0f\x29\xcb\xae\xb3\x24\x8e\xee\xf6\xda\x2c\xec\xfc\x66\x9c\x5c\x82\x9f\xe4\x98\x67\x74\x5d\x66\xa6\x71\x6e\x3e\x53\x8d\xa5\xaa\x57\xea\x16\x6a\x77\x87\x7a\x1c\x8a\x74\x17\xe7\x99\x6d\x67\x7c\x9a\x32\xce\xe9\xaa\x10\x11\x59\x89\x7c\x4d\x33\x9a\x8d\xb2\x62\xca\x33\xe7\x66\x8e\x47\x53\xe4\x82\xf5\x99\x3d\x72\xce\xc5\x46\x99\xf3\x99\x48\xab\xaf\xfe\x7d\x4f\xc6\x19\x5f\x0e\xce\xfd\x04\xeb\x7c\x18\x5a\x08\x83\x29\xf2\x44\x14\xcc\xc8\x52\x9e\x3c\x56\xf1\x36\x34\x12\x31\xfa\x73\x21\x32\x71\x7e\xe0\xf5\x89\xe7\xf5\xc1\xf3\xdb\xc4\xf3\xdb\xe0\x75\x86\xc4\xeb\x0c\xa1\xdd\x27\xed\xbe\x52\x0b\xba\x03\xd2\x1d\x40\x6f\x40\x7a\x03\x18\x74\xc9\xa0\x0b\x83\x3e\x19\xf4\x61\xd8\x21\xc3\x0e\x0c\x07\x64\x38\x80\xe1\x90\x0c\x87\xdb\x09\x74\x9f\x6d\x37\xd0\x36\x7a\x4e\xa5\xef\x58\xf6\x23\x0b\x3e\x4b\x5b\xfd\x40\x92\xfd\x81\x57\x4f\xf6\xb9\xde\xc1\xc9\x64\xdf\x53\x64\x9f\x53\xf5\x05\x5d\xa2\x2e\xa7\xfa\x4b\xd4\xc3\xb0\xa6\x2e\xac\x6a\xe3\xad\x9d\x9b\xa5\x5c\x54\x32\x9e\xe3\x1e\x6f\x4d\x06\xa0\x96\x00\x17\x01\xb7\xf0\x58\x2f\x74\x2e\x10\x73\x82\xda\x64\x22\x63\x97\xeb\xd3\xd9\x16\x6f\x4f\xee\x0d\x29\xa7\xba\xb7\x0a\x61\x51\x1d\x6d\x4a\x22\x56\xb0\x8c\x6c\xec\x4d\x0e\x6f\xe8\xe2\x9d\x2d\x5f\xd9\xa4\x4e\x65\x2e\xab\x4d\x46\xc9\xd8\xd3\xb9\x31\x9c\x40\x2a\x8b\x63\x06\xd9\x04\x1f\x24\xb2\x19\xdf\x9e\xe2\xf1\xb2\x87\x65\xd7\x33\xd9\x43\x56\xf0\x8e\x7f\xd1\x10\x7f\x81\x93\xae\x05\xef\xcf\xb8\xa4\xdb\x68\xfc\x0b\x17\xfa\x9f\xcd\xfb\x62\x75\x3e\x5f\xcb\xfb\x96\xb5\xbc\x6f\xdd\x6c\x56\x78\xdd\x1e\x93\x8b\xab\x4c\x2e\x42\x4b\x93\xc9\xd5\x74\x9f\x8b\xd1\x41\x79\xd4\xd0\xf0\x54\xbe\x69\xae\x45\x99\xf0\xca\xc9\x68\x85\xe6\x9a\x2e\x62\x47\xd6\x84\x18\x26\x89\x6d\x4f\x0b\xdc\xe5\x10\x17\x51\x7e\xc9\x58\x15\xd5\x4c\xec\xef\xfc\xe8\x42\x00\x50\xed\x7e\x91\x53\xe8\xe5\x11\x0a\x4d\x43\x24\x2c\x1f\x65\xa0\x9b\xa8\x3b\x1a\xad\x84\xec\xc6\x32\x95\xd3\x67\xcc\x47\x58\x1e\x40\xc2\x66\x9e\x66\x71\xc2\xc8\xaa\x42\x2b\x2a\x34\xa2\x3d\x20\xed\x01\x74\x7c\xd2\xf1\x15\x8d\xe8\x7b\xa4\xef\x49\xf9\x5d\xd2\x08\x4e\x17\xbe\x16\x18\xa4\xe9\x42\x5f\xd9\xd3\x7a\xbe\x16\x03\x15\x3d\x10\x04\x23\x95\x04\xa3\x42\x10\x38\x81\x98\x2a\x82\xc1\x09\x42\xaf\x23\xc5\xc0\x41\x4f\x8a\x81\x9e\xdf\xc1\x42\xfe\xeb\x1f\x34\x38\x41\x02\xc2\x34\x24\x47\xea\x8e\x46\x63\x36\x81\x5b\x7a\x07\x37\xf4\x7e\x24\xce\xea\x88\x15\xcc\x66\x16\x3c\xd0\x5b\xdb\xbe\x35\x96\xd2\x15\x7d\xda\xc2\x97\x9a\x9c\x47\x0f\x63\x36\x39\x89\xd1\x03\x30\xb0\xe4\x4a\x10\xa4\xbb\x66\x5b\x23\xae\x74\x4f\x65\xb8\x6a\x66\xa0\xca\x4a\x1d\xc3\x25\x0c\x6f\x89\xb5\x08\xd2\x7f\xd3\xfb\x77\x2c\x3b\xf0\xfe\xa9\x7e\x7d\x24\xf7\x12\x39\x58\x47\x20\x70\x3d\x6b\xeb\xa8\x7f\x47\x82\x64\x90\x2a\x97\x3d\xf6\x06\x24\xea\x1d\xbc\xad\x3f\xa0\x3b\xbd\xb5\x6d\xf4\x98\xe7\x0f\x8e\x12\xc0\x6c\xbb\x31\x37\x35\x3b\xc4\xc9\xfa\x2d\xd6\x3e\xac\x08\x3b\x11\xfb\x22\xf2\xc9\x61\x39\x33\xd7\x82\xf0\xdf\xc2\x7b\x7a\x3d\xbe\x99\xa0\xc7\xd1\xd3\x96\xb4\x5c\xf0\x70\x83\x5e\xc3\x67\x5a\xa9\xec\x5a\xec\x34\x91\x1d\xea\x25\x5d\x20\xb3\xdf\xa2\x12\xc4\x49\x0c\x7c\xa2\x8d\x47\xdb\xae\xbc\x58\x4a\x05\xf2\x63\x19\xed\x9e\x67\xad\xd6\x39\x66\xfc\x9b\x59\x29\x23\x35\x98\xf8\x44\xcb\xe5\xb4\xea\x65\x9e\x23\x74\x4b\x33\x64\x1a\x88\xb9\xa8\x92\xc1\x2d\xa7\xe8\x72\x8b\xac\x45\x17\xef\x20\x83\xdb\x9d\x54\xc9\x09\x27\x7f\x09\xdc\x43\x34\xbe\x99\x40\x84\x21\xda\x62\xc3\x09\x89\x3e\xc0\x83\x69\xf6\xa1\xb7\x18\xd0\xe7\x3c\xff\xc4\xf5\xf2\x2f\x48\xaf\x52\x0c\x5f\x90\x58\x6e\x18\xee\x6d\xfb\x8b\x3c\xb5\xc6\x18\xd0\xa7\x3c\x7f\x8f\x79\xc9\x0d\x86\x47\xdb\x7e\x70\x84\xaa\x50\xd0\x39\xf5\x5b\x1a\x23\x6f\xe9\xca\xa9\x12\x7d\x94\x01\x83\x7b\xb8\xc1\x10\x20\x73\x03\x25\x18\x52\xe7\xdd\xd5\xd5\xb7\xb4\x51\x80\x2e\xce\x10\xef\x2f\x5c\x8d\xd9\x84\xde\x42\x88\x42\xe7\xbb\x66\xe8\xfc\xd8\x0c\x9d\xd7\x2f\xd0\x6d\x83\xde\x61\xb8\xc2\xf0\x98\xe7\x2b\xa7\x90\xf0\xf8\x2b\x70\x8f\xe1\xb6\x42\xa9\xbc\x01\xf1\xbc\x01\x78\x7e\x87\x78\x7e\x47\x51\xac\x9e\x4f\x7a\x3e\xf4\x3a\xa4\xd7\xd1\x14\xcb\x25\x7d\x17\xfa\x5d\xd2\xef\x2a\xba\x35\xe8\x91\x41\xaf\xa4\x5e\x35\x86\xee\xea\xe1\xd5\xe0\xc8\xe1\xd5\x80\x78\x5c\xd5\xee\xd6\x58\x55\x0f\xe9\xc2\xd2\xaa\x71\xdc\x5d\x52\xd8\x7c\xd8\xa8\xf4\x2a\x71\x21\xc1\x98\x48\x87\x00\x39\x0a\x3d\xe2\x79\xbd\x52\x36\xab\xb1\x37\x56\x7b\x31\x3c\xd2\x0b\xe1\x9a\x24\x0c\x34\xbc\xaa\x1a\xcb\x5d\x6d\x5f\x7a\xe2\x18\x40\x60\x34\x14\x73\xce\x57\xc6\xa7\x70\xc5\x20\xde\xbd\x61\x00\x71\x40\x50\x2b\xc0\x5d\x0e\x47\x8c\x58\xae\xd5\x64\xa6\x72\x5d\x63\xdc\xb1\xdc\xf6\xa0\xdb\x72\xfb\x2d\xbf\xfb\xc9\xed\x13\xb7\x47\xda\x43\x67\x38\x1c\xfe\x93\xd5\xa0\xb1\xa4\x3d\x05\x20\x46\xab\xcb\xbc\x76\x8b\x0b\xcd\x38\xcf\x1b\x95\xca\x76\x1f\x7d\x17\xbc\xe3\x8f\x8d\x8c\x47\x38\x13\x0f\xd3\xd7\x61\x14\x66\x0c\x85\x06\xc2\xab\x3e\xb6\xfe\x18\x44\x77\xda\xf4\xfc\x46\x22\x44\x9c\x66\xe1\xaa\x38\xd1\x3f\x29\x15\x08\xc8\x28\x53\xc9\xd1\x5f\x6f\x96\xcb\xbf\xc8\x14\xed\x49\x51\x68\xc2\x5b\x21\xae\x08\x67\x0a\xcf\x2f\xbb\x1c\x0e\x87\xc3\x91\xd5\x34\x01\xf7\xa2\x26\xb2\x5c\xfe\x9f\xd5\x2c\xd2\x2e\x73\xf9\x41\xda\x69\xa2\x51\xab\x47\x5a\x1d\xdc\xb4\x5a\x56\x33\x40\xc5\x27\x8a\x34\xff\x3b\x37\x24\x58\x0f\x6e\x5a\x9f\xcc\x52\x81\x9d\x25\x8a\x49\xa5\x16\x09\x46\xb4\x7f\xa3\x80\x28\xc4\x4d\xcb\xb1\x9a\x28\xb9\x1c\x0e\x47\x89\x98\xd2\x00\x25\xbc\xf4\x9f\xac\x2d\x89\xb7\xf0\x24\x36\x28\x5f\x6b\xcf\x36\xe7\x6a\x6b\x60\xa7\x7d\xc4\x75\xba\xcc\x4f\x4a\x99\x6d\x97\xbe\x07\xe2\x97\x0a\x74\x15\x3f\xf7\xcf\x0d\xde\x14\x47\xdd\x8b\x30\xca\x8c\xcc\x92\x48\x9b\x7e\xcb\xea\x98\x3c\x94\xef\xb4\x89\xd7\x69\x4b\x21\x89\xf7\xe5\x99\x47\xf3\x46\x3e\xed\x9a\x76\x28\x5f\x91\x60\xb9\x3c\x5d\xb1\x6c\x11\xcf\x4e\xe3\xe8\x54\xc0\xa0\xed\x9e\xba\x77\xbf\x76\xea\xee\xbb\x87\xb7\xbc\xf4\x20\x2a\xa6\xa1\xc6\x94\x57\xad\xca\x3b\x52\x95\xf0\x10\x93\x64\x56\x1b\x76\x7b\x47\x9d\x91\x2c\x83\x53\x41\xd5\x91\x0f\xc2\xf4\x83\x26\x19\xef\xe7\xb0\x56\xc5\x6f\xd2\xab\xc2\x57\x09\x74\x6a\x08\x45\x4c\xb4\x25\x13\x34\x22\x8f\x50\x58\x32\x61\xda\x96\x23\xd5\x3b\x76\xc8\xeb\x2a\x5d\xd5\x73\x3b\x4a\x2a\x75\x0f\x7a\xe7\xeb\xb3\x00\xc6\xf7\x6d\xe8\xcc\xc5\xe9\x15\xd6\x12\x41\x00\x29\x4d\xf8\xbd\x0d\x8d\x9d\x39\x2c\xa9\x7b\x5e\x18\x85\x96\xe7\x78\xa3\x7d\x10\x03\x9a\x8e\x97\xcd\xe6\x44\xc8\x74\x42\x75\x0b\x70\xf5\xb8\xda\xed\x10\xcf\xed\x80\xe7\xf6\x89\xe7\xf6\xc1\x73\x07\xc4\x73\xf9\x1a\xeb\x1d\x39\x95\xd5\xd2\x75\x57\x1f\xde\xe9\x43\x59\x2e\x65\xa7\xca\xd8\x7a\xd4\x7d\x5a\x39\x4e\xbf\x56\x8e\xd3\xdf\x29\xc7\xe9\x6b\xe5\x38\xfd\x41\x39\x4e\x7f\x03\x77\x74\x3d\x8a\xc8\x6a\x24\xdd\xa1\x85\x57\x34\x7d\xda\xe2\x5a\xff\x68\xb8\xa5\xeb\x1a\x2f\xeb\x1b\x6a\x48\x0a\x79\x6e\xca\x0d\xfc\x7e\xe9\x55\xbd\x2e\xbd\xaa\xe7\x14\xa1\x29\x6d\xcc\x6c\xfb\xce\x70\xac\xbe\x1b\x2f\x27\x78\x74\x47\x12\x3c\x5e\x4e\x60\x41\x1f\x6d\x7b\x3a\x4a\xa5\x97\xf4\xfd\x01\x67\xe1\xb4\xce\x59\xf8\xce\xb6\x03\x74\x07\x4b\x90\x2e\xc1\x7f\xc6\x70\x3b\x5e\x4e\x1a\x74\x6e\xdb\xb1\xf0\x08\x5e\x08\xb1\xe9\x46\x17\x22\xe1\x80\x3d\xc7\xdb\x93\xc8\x99\xc6\x09\xa3\x21\xfc\x7b\x78\x0b\x2b\xb9\x46\x44\xd5\xe8\xc3\x5b\x29\xc3\x28\xcf\xa3\xde\x91\x23\x5c\x79\x5a\xb2\x0a\xb2\xe9\xe2\xf8\x49\x22\x3d\x73\xce\x4e\xb2\xe4\xf1\xc9\x3a\x73\xce\xac\x31\x9b\xa0\x0c\x97\xe7\x14\xc6\x01\x46\x36\x8e\x26\xb4\xe1\x41\x63\xff\xc1\x10\x3f\xe9\xe8\x88\x8a\x8f\x14\x6f\xe3\xd7\xe4\x11\xbf\x7d\x84\xa2\x28\x6f\xd3\xde\xd7\x24\x11\x19\x00\x6d\xd8\x9d\x14\x97\xe8\xab\x2d\xc0\x25\x14\x71\xcc\xa0\xd4\x4b\x3e\x3a\x42\xbf\xf4\x7c\x97\x2b\x98\xa9\x71\xec\x0a\x53\xda\x88\xd1\xce\x39\x1e\x13\xc3\x54\x58\x98\xd8\x17\x36\xdd\xc7\x8a\x1d\x4f\xca\x27\xee\x92\x78\xb3\x4e\xe9\x53\x40\xac\xbe\xb5\xe5\x6a\xb6\xd5\xe7\x1c\xc7\xb2\x0a\x84\x5f\x06\xd6\x1f\x2e\x82\x4b\x8b\xeb\x17\xf3\xfd\xda\xce\xd0\x88\xe0\x33\x21\x2c\xf0\xcf\x9d\xec\x7f\xb5\xd0\xb2\x0e\xb8\xd1\x4b\x3b\x83\x15\xdc\x6a\x4a\x58\xf2\x0e\x9f\x52\xaa\x3d\x9d\x6c\xdb\x0a\x2c\xfe\x7b\xec\x4e\x6c\xdb\xba\x95\xd7\xde\x64\x8b\x8e\x49\xa6\x12\x6a\x38\xe5\x64\x6e\x56\x33\x60\x19\x7d\x2a\xfd\xf8\xc7\x8b\x49\x4d\xbb\xfb\x5b\xe8\x37\xa8\xa5\x97\x12\xd7\xdf\x67\xa3\xba\x9a\x1a\x1e\x24\xf4\x2c\x28\xc6\x3f\x39\x38\x12\xe2\x68\x62\xb3\x5c\x6e\xc1\x12\x3d\xd6\xe8\x41\x49\x45\x27\x7a\x12\xe8\x41\x65\x81\xd8\xbd\x7b\x95\x25\x5b\x0c\xc9\x78\x31\x41\x96\x85\xa1\x91\x6d\xb5\x5b\x88\x70\x0c\x9d\xe5\x79\x63\x9d\xe7\x96\x9a\x4b\xf5\x9d\xc6\x34\xcf\x2b\x1f\x6e\xcc\x65\x1f\x56\x7c\xf9\x8c\x17\x13\xb8\xa7\x09\x0a\x60\x01\xa2\xd7\xc7\x60\xf9\x32\xd9\x47\x4a\x37\xa3\x99\x6d\x37\xc2\xd1\xd3\x2c\x8e\x18\x69\xb8\xca\xed\x76\x55\x09\x68\x22\x3b\x77\x55\xe8\x52\x02\x99\x79\xd7\xdb\x6e\x31\x3c\xd2\xfb\xb1\x3b\x81\x3b\x7a\x3f\xf6\x26\x27\x11\xd2\x91\x86\x05\x99\x66\xf0\x88\x21\x44\x32\xfd\x88\x51\xbe\x00\x9f\xd2\x6c\x54\x6b\x30\xbd\x2b\xdc\xea\xa5\xf9\x6a\x5b\x63\xda\xac\x3e\x84\xb7\xda\x36\xad\xb5\x37\x97\x78\xbe\x0b\xfa\xec\x52\x47\x33\x77\xfb\xa4\xdb\x57\x7a\x5c\x41\xf7\x7e\x83\xb0\x58\xb7\x82\xf5\x0e\xd3\x02\x5d\x46\x4b\x71\x9a\xa9\x00\x42\xdb\x46\x59\x93\x5a\x77\xc2\x26\x19\xde\x45\x71\xc2\x5e\x05\x29\x53\xc5\xd2\x54\xb9\xda\x2c\xb3\x70\x19\x46\xba\x74\x25\x4a\x37\x51\x38\x8d\x67\xba\x6c\x23\xca\xd2\x2c\x9c\x7e\x7e\x54\x45\x8f\x16\x06\xc1\xde\xb5\xc0\xd8\xab\x11\x18\xeb\xed\x66\xc3\xaa\x2f\x83\x70\xb3\x32\x8f\x4f\x25\xd5\x0f\xd3\x57\xc2\xe5\xe0\x7a\x9d\xb0\x60\xc6\x45\xa5\x5a\x16\xa0\xe2\x71\x14\x0c\x27\xe7\xfa\xa5\x51\x63\x0d\x2b\xb8\xa7\x53\x78\xa4\x2e\xdc\xd1\x46\x63\xc1\x59\xe2\x02\x66\xd0\xc6\xe7\x8f\x17\x4b\xe9\xa0\xf3\x28\xdd\xcc\xf8\xe5\x9a\xde\x8d\xee\xd0\x66\xfc\x38\x81\x47\x48\x30\x11\x57\x2b\xbe\x73\x43\xb4\xc6\xb6\x8d\x56\xb4\xe0\xd3\x68\x45\xd7\xe3\x74\x82\x47\x8d\xc6\x8a\x44\x68\x8d\x31\xac\x6c\x7b\x7e\xe9\xe2\x7b\x2a\x9b\xb4\x86\x18\xad\x0b\x67\xa1\x7b\x98\xb7\x3c\xdc\xf2\x84\x5f\x15\xff\xd8\xfd\x25\x1d\xba\x6e\xdf\x1b\x0e\xfd\x6e\xa7\xdf\x71\x87\x43\x6f\x4f\x7e\xc6\x27\xd9\xf8\x7e\x42\xd7\xdb\xfb\x66\x73\xfb\xd8\x6c\x6a\xb7\x86\xfb\x8a\xcb\x8e\x5a\x6c\x8a\xb9\x56\xfc\x56\x7a\x07\x0f\xcd\x4b\xbf\xb7\x41\x5b\x49\x58\xca\x7c\xd9\x56\x02\x96\x98\x17\xc1\x5e\xba\x6d\xce\x5e\x9e\xb6\x30\xa5\x4f\xdb\x73\x2e\xbf\x1c\xb2\x4d\xce\x61\x21\x3f\x30\x83\xb5\x34\x54\xd2\xc5\x68\x9f\x2a\xb1\x2d\xd9\x70\x9a\x7b\x47\x23\xc4\x5f\xca\x46\x3e\xf1\x30\xdc\x52\xf7\xa4\x3e\x70\xf5\xf1\x58\x04\x69\x98\x49\x51\xba\x61\x49\x54\x2c\xf4\xa8\xdc\x4b\x66\x9c\xb2\xeb\x19\x38\x9f\x5d\xde\x9e\xdf\x2a\x47\xb8\x7b\x9a\x8d\xee\x50\x80\xd6\x94\x8d\x6f\x27\x98\xd3\x92\xf5\xd8\x9b\x60\x72\x87\x44\x01\xa6\x94\x2e\xf3\xfc\x9e\x52\xaa\x5d\xd5\x4e\xef\x4b\x57\xc5\x15\x7d\xd4\xae\x04\xe7\x0d\xb4\xa6\x2b\x65\xbb\xc3\x0e\xa7\x51\xe7\xea\x13\x21\x5a\xc1\x1d\xac\xa5\x9b\x3e\x64\x07\x2a\xc5\xce\x37\x1f\xaf\x5e\xfe\x89\x2e\x21\x71\x3e\x5e\x7d\xfa\xf3\xc7\x77\x74\x5a\x99\xdd\x36\xf1\xba\x4a\x2f\xd3\x73\x3c\x20\xfd\x01\x0c\xda\x64\x20\xe4\x8a\x1a\x75\xa7\x12\x4f\xec\xf7\x30\xb2\x22\x01\x6c\xd7\xd2\x0f\xb6\xb2\xb8\xa5\xd4\x4b\x28\x84\xc7\x22\x1c\x40\x38\x69\xf7\x88\x27\x02\xba\xfa\x35\xda\x4f\x55\xf8\xe9\x1c\x11\x7e\x94\xe7\x7e\xbf\x46\x69\xa9\x56\xd2\x3d\x52\x49\x97\xf8\x5d\x5e\xc9\xd7\x8c\x5b\xfe\x31\xf7\x7f\x65\x63\x12\x71\x6a\xea\xa4\x50\xdb\x9b\xfa\x47\x64\xd0\xbe\x5b\x06\x94\x9a\x86\x1c\xdb\x8e\x8a\x72\x15\x25\xba\x85\x27\x21\xdb\xf2\x1a\xbf\x2a\x31\x1e\x71\x22\x97\xa1\x30\xb2\x89\xdd\x21\xe9\x0e\x0b\xd5\xb6\x7f\xc4\x0f\x4d\x3b\xe2\x79\xbe\x2f\x0e\x49\xbe\x22\xf6\xc4\x10\xd0\xcc\x14\x20\x34\xf3\x08\x1a\x94\x26\xb5\x9a\x46\x60\xdb\x28\xa6\x81\xe1\x0c\xc5\x1f\x2d\x7f\xda\x76\x84\x62\x6c\xdb\xa1\x6d\x87\x88\x41\xac\xa3\x7c\x7c\x9f\x78\xbe\x5f\x10\xa5\xfe\x33\xa3\xd8\xcd\xee\x15\xbe\x4c\x89\x0e\xb0\xce\x0e\x05\x78\x8e\x18\xc2\x85\xec\x80\x77\x43\x3d\x47\x0c\x65\x63\x77\x82\x0d\xe9\x82\xff\xdc\x0d\xfd\x54\x8f\x41\x26\xa8\x42\xe5\x59\x59\xb6\x13\x7d\x5d\x79\x01\xb2\xb1\x5f\xfb\x96\xbc\x21\x5f\xed\x1c\x7e\x15\xb2\x71\xfb\xf0\xfb\xf2\xee\x6e\xf8\x69\x52\x06\x03\xf6\x8f\xfb\xa1\x19\xeb\x42\xf9\x6e\x59\x3f\x5b\x42\xc5\xdd\x33\x4e\xa0\x22\xd6\xac\x46\x14\xb2\xae\xb5\xdf\x18\x2f\x1c\x31\x6d\xa8\xb0\x30\x29\x7c\xc2\xcc\x90\x97\xfe\x11\x5e\x34\xa8\xb8\xc7\x85\x05\x8c\x02\xc4\x7b\x71\x2f\x47\x3d\xbc\x0a\xf6\xcc\x84\x17\x86\x78\x57\xe6\x49\x88\xc7\xa1\x38\x12\xc6\xa6\x6f\xd9\x60\x40\x06\xa2\x69\x47\x22\xf4\xaa\x23\xa6\x30\x4c\x52\xf1\xb7\xea\x5a\xa9\x46\x45\xdc\x51\x83\x62\x76\x7f\x50\x43\x46\xab\x5b\xb7\xcc\x2c\x70\xb4\x93\x22\xce\xcc\xb6\x0b\x43\xae\xf8\x81\x18\x16\x07\xde\x5b\x78\xd2\xdb\x6c\xf0\x55\x92\x7b\xe4\x28\x40\xc7\x6d\x0d\x8e\x98\x68\x34\xc1\xe9\x0c\x4c\xcf\xdf\x67\x68\xeb\xe5\x59\xb7\xf0\xb4\x2c\x65\xaa\x8c\xb2\x71\x2c\x64\xaa\x8c\x58\x52\x76\xb7\xa8\x38\x63\xc6\x7b\x2e\x81\x05\x39\x19\x1c\xf3\x01\x3f\x18\xcf\x05\x09\xd7\x53\x0c\xcb\x40\x38\xca\x50\x84\x12\x21\x0b\x24\x62\xd7\x67\xa8\x88\x8b\x54\xb1\x0f\x31\x65\x8e\x7c\x5c\x85\xc5\x15\x4d\x8f\x05\xed\x2b\xc2\xe7\x20\xd8\x9a\xb2\xf1\xa0\x86\x1b\xd4\x1f\xa8\x0c\xca\x03\x15\x39\xa6\xbe\x50\xfa\x9f\xb6\x27\x32\xc6\x2b\x80\x9a\x4d\x52\xa3\x43\x8a\xa3\xc9\xda\x48\x30\x05\x3b\x62\x18\xa8\x22\x14\xc0\x13\x17\x60\x88\x8c\xf7\xdd\x62\x88\xf9\x73\x4d\xeb\xd4\x00\x34\x31\x58\xa8\x3e\xa4\xaa\x04\x91\x49\xf7\x1a\xde\xd9\xe7\x9e\xb8\x0c\x86\x07\x0e\xd0\xfb\xbe\x94\x40\x39\x55\xe0\x02\xe8\xa0\x23\xcf\xcf\xc5\x60\x4c\x85\x51\xb3\xab\x5c\x6a\x76\x87\x62\x41\x1b\x68\x3c\x71\x3e\xb3\xc7\xd4\xb6\x05\x9e\xad\x15\x46\xaa\x00\x61\xae\xe5\x1f\x18\xac\xc3\xcb\x64\xad\x4f\xdc\x37\x42\x15\x5d\xab\x94\x64\x70\x0b\x37\xf0\xb0\x07\x77\xb2\xb0\x6d\xc6\x35\x8a\xf7\x5a\xc2\x7b\x3f\x66\x93\x93\x6a\x08\x85\xf4\x97\x22\xe2\x52\xb9\x3b\xed\xa1\x78\x98\xbe\xe3\xa7\x49\xe1\x4e\x73\x18\xbe\x63\xe7\x39\xb8\xa2\x95\x09\x84\x2f\xb4\x74\xcc\x5a\xc1\x35\xd7\x6a\xde\x57\x00\x09\x3e\xd3\xf7\xe3\xf9\x24\xcf\xdf\x8f\xad\xff\xf8\x1f\x8b\x21\x9d\xe4\xf9\xca\xb6\xdf\x8f\x57\x13\x78\x49\x3f\xe7\xf9\x03\x5a\x61\xf8\x44\x57\xa3\x2f\xa3\x07\x54\xb8\x6d\x61\xf2\x52\x3b\xc5\xbd\xa2\x05\x09\xcc\x6c\xfb\xbd\x3e\xdf\xce\xf3\xcf\x5c\x38\x7f\x65\xdb\xe8\x86\x4e\xd1\xab\xf2\xb4\x8a\x61\xcc\xe5\x08\x15\xd3\x6c\x08\x13\x37\x42\xaa\xb6\x6d\xb4\x44\x37\x70\x25\x03\x98\xf3\xbc\x46\x2e\xb9\x11\xed\x0e\xd0\x0d\xcc\x61\x86\x31\x7c\xb1\xed\xcf\xb6\xad\xbb\xdb\xa0\xf4\xb3\x13\x05\x2b\xce\x12\xae\x69\xc3\x85\x97\x35\x6b\xe0\xb3\x71\x1a\xb6\x15\x4e\x7c\x8d\xc7\x3c\xe7\xb3\xd9\xb8\xe6\xdd\x97\x1f\x78\x0f\x73\x78\x89\x41\x78\xa4\xbf\x84\x74\x7c\x35\xa1\x33\x58\x71\x71\xff\x8e\x3e\xc9\xcf\x91\x2f\xa3\x97\xe4\x01\xe9\x8f\x63\xe0\x73\x4d\xee\x65\xa1\x98\x77\x0c\x6a\x48\xc8\xa7\x2d\x3c\x0a\x7b\xfb\xad\x0c\xca\x11\x7f\xde\xe7\x79\x8c\xde\xc3\x2d\xdc\x71\x45\x44\x85\xe1\xa0\xd0\xf9\x20\x0f\x95\x17\x79\x7e\x8d\x21\x83\xbb\xc2\x0a\x76\x27\x8d\xec\x5d\xe2\xb9\xdd\xbd\x73\x64\xbd\x45\xe5\x49\xb2\xdc\xa8\x83\x0e\x19\x74\x24\xef\x83\xc1\x90\x0c\xb8\x04\x3c\x38\x02\x20\xb0\xb7\xc9\x42\xda\xf0\x84\xb5\x55\xd2\xc4\x71\x7f\x32\x8e\x26\x08\x9f\xc4\x8a\x38\x9a\xe3\x1b\x0a\xec\x55\x05\x22\x96\xc4\x2b\x14\x43\xc5\x8b\x8d\x53\x51\x7f\x6b\xd0\xd9\xed\xb1\x10\xeb\xcc\xb6\x1b\xe1\xae\x0f\xd2\x6e\x63\x20\xa5\xb1\x6c\x50\x2a\x56\xd0\xfe\x74\x4b\x53\x52\x22\x63\x61\xf9\xb3\x35\x2b\x22\xdd\x02\x43\xb1\xd9\xb0\x4a\x3c\x62\x61\x1b\x1e\x3c\x3b\x86\xb5\xf8\xba\x8a\x39\x07\x69\xd0\x6a\x30\x1d\x7c\x3e\x38\x8a\x47\xf0\xa4\x9f\x3a\xaa\xef\x35\x3c\xf9\xd4\xf0\xa0\xb8\x21\xc4\x0c\xf6\x65\xbd\xf2\x0c\x9a\xd7\x88\xf2\x3c\x42\x9e\x8b\x2f\x7d\xdf\xf5\xbb\x4e\xa7\xd7\xed\x0f\x3b\x03\xb7\xd7\xf7\x06\xea\xce\x45\xdd\x9d\x96\xcf\x5a\x5e\xbf\x41\x23\x24\xaf\x70\x9d\xcf\x8d\x2b\xf2\x57\x35\xb9\x90\x48\xd8\x65\xcb\x63\xad\x9e\x6d\xb3\x0b\xfe\x77\xc4\x9a\xec\x05\x3b\xf3\x89\x6e\x15\x62\xb8\xe5\x6d\x49\xa4\x7a\x71\xe4\xac\x6b\xd8\x2e\x84\xa6\x75\xfc\x00\x31\x0d\x91\x0f\xad\xae\x4c\x51\xc7\x2f\xfd\xb6\x0c\x7f\xf5\xc1\xf3\xfb\xf8\x05\xf2\x5b\x2a\x0c\xd6\x87\x16\x57\x8a\x8d\xee\x4b\xd1\x4b\x64\xaa\xaa\x89\x97\xe1\xb2\x42\x91\xe4\x0f\x31\xce\x8c\x22\xc3\x0c\x1d\x5e\x6c\x46\xcb\x17\x28\x3c\xdb\x9c\x05\x4d\xef\x2c\x6e\x79\x67\x31\x7e\xb1\x79\x11\x10\x94\x70\x99\x06\x79\xcd\x80\x97\x84\xb8\x85\xb2\x56\x88\xf1\x65\x9a\xe7\x49\x83\x26\xfc\x2d\xef\xcc\xc5\x64\xf9\x42\x2c\xaa\x61\x9b\x0c\xb9\x46\x3f\xac\x11\xba\x76\xda\xba\x8c\xef\xbc\x75\x9d\xfc\x29\x07\x5a\x0c\xf2\x40\x0d\xf2\x60\xc4\x5a\xc6\x20\x2f\xe3\x3b\xe4\xc9\x44\x54\x62\x88\x8f\xe2\xb5\x88\x37\xd2\xf0\x2e\xaa\xfb\x56\x39\xb1\x79\xce\x1a\x94\xf1\xe9\xbd\x70\x45\x24\x9c\xae\xfc\x48\xe0\x98\xd7\xe9\x73\x71\x91\x65\x81\xb5\x13\xdc\xa4\xec\x81\x32\xd2\x22\xa5\x2e\x6c\x34\x77\x08\xd3\xab\x2f\x19\x8b\xd2\xf0\x76\xc9\x8c\x16\x19\x90\x31\xb0\xa4\x0d\x71\x54\x52\x13\x45\xb3\x41\x05\x93\x61\xf7\x5c\x6d\x97\x75\xc5\x51\x8a\x9e\xb6\x22\xd1\xc8\xb4\xc2\xcf\x03\xc4\x20\x02\xb5\x5d\x9f\x42\x62\xbd\xb7\x9a\xa7\xcd\x66\x0a\x0f\x02\x0c\x0a\x6f\x61\x6e\x62\x90\xfd\xe9\xea\x2f\x24\x82\x77\x57\x57\xdf\x92\x86\x07\x2a\x9e\x83\xec\x13\xb1\xb0\xf4\xa3\xb4\xd2\xc7\xd5\x6d\xbc\x34\x11\x45\x18\x41\xbb\x11\x39\xa7\x6c\x24\x12\x05\x7e\xb0\x70\x53\x02\xc2\xc7\xc2\xed\x54\x56\xb7\x31\xaa\x7b\x6d\x49\xc4\x07\xfd\xfb\xca\x3a\x99\x72\x3d\xa4\xf0\xfc\x8d\x26\x4e\x28\x1c\xcf\x7f\x64\xc1\xe7\x9a\xb6\x1d\xa8\xb8\xe1\x56\xea\x6d\x78\xfb\xd5\x3e\x6c\x21\x8e\x5e\x27\x8c\xfd\xcc\xea\xec\xe6\x4b\xdb\x9e\x0b\xef\x29\xdb\xde\x08\xb1\x5f\x7d\xca\xb6\x79\x4d\xc0\x54\xc8\x67\x9f\x78\x9d\xc2\x52\x6e\x7a\x67\x2a\x4b\xcd\xf0\x88\x01\x44\x1f\x19\x7b\xed\x9e\x30\x80\x88\x20\x8b\xb7\x9b\x4c\x04\xfa\xbf\xbf\x4d\x59\x72\xcf\x92\x3c\x8f\x9c\x1f\xd9\xed\x9f\xc2\x6c\xf7\x0e\x04\x34\xe2\xe2\xc7\x94\xa5\x29\xa4\x34\xd2\xf0\x8a\xb0\xa1\x96\x2a\xb6\xa8\x54\x77\x50\x70\xcc\x24\x2f\xc3\x64\xf6\x82\xe8\x20\x94\x51\xf2\x5c\x33\xa5\x81\x33\x8b\x57\x41\x18\x09\x40\x79\xf6\x25\xcc\x10\x3e\x67\xe7\x9c\x5d\x32\x67\x1e\x01\xa3\x4c\xb0\x2e\xc1\xd8\xc2\x02\x1b\x29\xd6\x1c\x93\x8d\x12\x84\x49\xe1\x47\x1f\x6f\xb7\xc5\xb5\x30\x4c\xb1\x28\x63\x09\x92\xbe\x89\x1b\x9c\x98\x6d\x09\x44\xc5\x9f\xc2\xe9\x67\xb4\xc4\xdb\x22\xcc\xb7\x11\xf3\x91\x89\x82\xfb\xf0\x8e\x73\x79\x5e\x49\xf1\xc3\x49\xb3\x20\x9a\x05\xcb\x38\x62\x5c\xd6\x49\x6d\x3b\x75\x12\x96\xc6\xcb\x7b\xa6\x83\x81\x8a\x02\xa5\xcd\xe1\x93\xca\x47\xa7\x4e\xb6\x60\x11\xff\xa0\x34\xa2\x56\x6e\x2a\x4f\xa4\x08\x74\x7b\x44\x9d\x73\x2e\xaa\x2d\xa8\x36\xb1\x29\x3c\xb6\x4f\xec\x4b\xf6\x2e\x9e\x31\x64\x59\xf8\x84\x4b\x8f\x31\x5a\x62\x27\x96\x53\x88\x16\xf0\x34\x5d\x04\x49\x30\xcd\x58\xf2\x6d\x90\x05\xa4\xe1\x6e\x31\x54\x3e\xb6\x70\x66\x41\x16\xd0\x39\x6d\xcc\xf7\x85\xe9\x22\x44\xe7\x69\x1e\x91\x08\x84\x4e\xa4\x42\x29\x4e\x44\x20\x84\x94\x27\x42\x0c\x2c\xcf\x11\xa3\x21\x24\x5c\xa9\xc8\x68\xa8\xe2\xcf\x7b\xc4\x6b\xf7\x94\x7e\xaa\x4d\x81\xc3\xdf\x10\xe4\x59\x66\x90\x0d\x0d\xee\x73\x22\x1c\xa7\xd7\x72\x39\x52\x09\x42\x66\xd4\x28\x81\x31\x0a\x55\x34\x33\x10\x31\x6a\x50\x7b\xbe\x09\x66\xa7\x6a\x65\x9f\x1a\xd6\x3f\xae\xb1\x53\x06\x09\x8d\xb6\x2a\xa0\x44\x4d\xa8\x0c\xf6\x57\x25\x9c\x7a\x52\xae\x25\x97\x52\x9a\x33\xaf\x0d\xb5\x63\x0f\xa2\x0b\x45\xac\x24\x1f\x88\xe7\x9e\x10\xd5\x7b\xb1\xa8\xd8\x6d\xa5\x1b\xf6\x45\xb0\x85\xa2\xe7\x41\xca\x59\x94\x29\xce\x6c\xf2\x7c\x8f\x0b\xc8\xf3\xb2\xa7\x2d\x64\xe2\xf0\x94\x5e\x0b\xda\x2b\x9c\xd3\xac\xe0\x76\x3a\x63\xf3\xbb\x45\xf8\xd3\xe7\xe5\x2a\x8a\xd7\x7f\x4b\xd2\xac\x3c\x4e\x1b\x27\x13\xda\x87\xa8\xb4\x70\x69\xa7\xde\x8a\xa7\xad\xc8\xa8\xc3\xb6\x18\xfa\x0d\xba\x41\x4f\x5b\x60\x78\x9c\x70\x85\x4a\x36\x52\xa8\xa0\xa2\x3c\xc3\x58\xc5\xab\x5a\xb8\xc1\x07\x7c\xe7\x3c\xb2\x08\xca\xa2\x81\x74\xc0\xd9\xc3\x9a\x58\x52\x0f\xa6\x34\x74\xe6\x30\xa7\xb1\x33\x3f\xdf\x5c\x2e\xcf\x0b\xcf\x9d\x05\xcc\x68\x5a\x86\xe8\x4a\xef\x1c\x58\xd3\xe9\x28\x42\x33\xac\x23\x79\xa7\x68\x86\x31\xe1\x25\xb0\xa2\xfa\x9c\x0a\xee\xa9\x7b\xbe\xba\xbc\x3f\xc7\x73\xb9\x29\x67\xb0\xa0\xeb\xf1\xbd\xf4\xef\x41\xc9\x78\x31\xa1\xb3\xf1\xa2\x4c\xa6\x91\x6c\xc9\xe6\xb0\x8f\x4f\x11\x4e\xae\x08\xba\x0a\x27\x1f\x1e\xb1\x04\x16\xae\x71\xae\xab\xbc\x1e\x5c\x35\xf3\x7e\x17\x23\xeb\xcd\xd5\xcd\x87\x8f\xef\x3f\xbd\xb7\xf8\x2a\x30\xe6\x76\xbb\x1f\xb5\x9c\x41\x42\x19\xea\x0e\xb9\xee\x32\x4f\x82\x15\xb3\xf8\x4c\xc7\xaa\xa7\x32\x2e\xd2\x49\xb3\xc7\x25\x73\x66\x61\xba\x5e\x06\x8f\xd4\x8a\xe2\x88\x59\xc0\x50\xbf\x8d\x9d\x60\xbd\x66\xd1\xec\xd5\x22\x5c\xce\x50\x82\x21\x71\xd2\x64\x4a\xad\x9f\x82\xfb\x40\x62\x03\x13\x0b\x50\x26\x23\xa3\x33\x16\x65\x3f\x4a\x90\x39\x4d\xaf\xb0\x13\xaf\x59\x84\x30\x64\xce\x43\x12\x66\x0c\x59\x17\xf2\xb5\xcb\x82\xa2\xbd\x56\xcb\xf7\xe2\xaf\x67\xea\x96\xc5\x1f\x9f\x2e\xe3\x94\x21\x3e\xed\x99\xf3\xfa\x3c\x6a\xb5\xce\xb1\x72\x5c\x36\x42\x92\xc7\x5c\x6b\x29\x3c\x35\x36\x9c\xd4\xef\x9a\x75\x15\xc5\xac\x05\x8b\xa9\xba\x63\x53\x36\x42\x69\xc5\x20\x24\x5c\xc2\xf8\x1e\x4e\xa1\x72\x63\xb3\x5c\x82\x48\x07\xc3\x30\x49\xe8\x06\x55\xa2\xe8\x13\x12\x16\x66\x68\xcf\x75\x89\xe7\xba\xe0\xf9\x5d\xe2\xf9\x5d\x7d\x7c\x25\x0f\x33\x5c\xd2\x73\xa1\xdf\x26\x7d\x41\x15\xbe\xea\xad\x77\xcc\xd7\x57\x79\x2d\x2a\xd8\x39\xf9\x11\x71\x6e\xd2\xef\x90\x7e\x47\x20\x1f\x1f\xb1\xbb\x6a\xff\xe5\xb6\xb6\x60\xba\xfd\x2a\x46\x5e\x77\x50\x0f\xb6\xc6\xb5\xf7\x1d\xe1\x89\x2b\x04\x65\x34\x65\x20\xb1\x3b\x52\x1a\xe8\x9d\xb5\xa1\xee\x79\x7a\xb9\x39\xc7\xd2\x0d\x3a\xa1\xc1\x78\xd3\x6c\x4e\x20\x1b\x27\x93\xaa\x37\xa4\xde\x44\x66\x77\xb4\xfc\xe3\xb9\x47\xbd\xff\xf6\xcc\x87\x1d\xbd\x7b\x3a\x6d\x45\x37\xd5\xa1\x6e\x5f\xd8\xd4\xbe\x02\x7e\xad\x20\xe7\xf8\x28\x2c\xf7\x85\x45\x46\x63\x09\x2f\x17\xa8\x48\xc9\x8d\x89\x2c\xa7\xf0\x09\xcb\x60\x71\x2e\x39\x88\xb2\x02\x5b\x0c\x35\x22\x67\x5e\x62\x19\x02\x1b\x67\x13\xb5\x7a\x14\xf9\xd0\x06\xc7\x02\xd0\x45\x4e\xb7\x9a\x62\x21\x1f\x96\x13\x7d\xc4\x54\x5d\x82\xdf\xb8\x6d\xae\x54\xc4\x66\xd0\x38\x04\x74\x0f\xd9\xaf\x0a\x1d\x69\xdb\xb5\x03\xf5\x2e\x58\xb1\x74\x74\xf8\x16\x92\x6f\x63\x32\x9e\x9c\x7c\x85\x5f\x06\xb6\x6d\x8d\x15\x96\x9a\xa4\x24\x13\x8b\xd2\xc2\xa0\x5c\xd1\xaa\x4d\xa3\x35\x67\xb1\x3b\xb8\x99\xa7\x81\x72\x9b\xc6\xdb\x2d\x62\x98\x84\x12\x7a\x42\x8e\x6b\x9b\x78\x6e\x5b\x8f\xa7\x18\xb5\x63\xee\x77\x6e\x4f\x59\x68\xdd\x82\x6d\x58\x72\x39\x5b\x60\x15\x64\xc1\xc2\x62\x9d\x1c\x1e\x87\x5a\xdd\x91\x7f\x2d\x54\xad\xea\x11\xcf\xed\x49\xba\x20\xda\x54\xa3\x35\x1e\xfc\x82\xe4\xe2\xa9\x82\x74\x76\x8f\xe9\x07\xde\x0e\x20\xcc\x1e\x4b\x09\xf6\xac\x90\xfb\x54\xf5\x8e\x65\x86\x4f\x6f\x6d\xd7\x98\x04\x8d\x89\xc4\x19\xe8\x88\x8d\xe3\x49\x2d\x3c\xa4\x79\xf8\x2a\xad\xc6\x25\x9e\xad\x79\x6f\x54\xf9\x55\xb6\x8d\x54\x5e\x91\xcd\x1b\x05\x02\xdf\x41\x1e\xbb\x4a\xd2\xab\x79\xb0\xd8\x2e\x62\x8c\x8e\xd8\xfa\xca\x31\x52\xec\xb7\xe3\x61\xd4\xf0\xea\x59\xf0\x71\x50\x24\x09\x3d\xc6\xa9\x8d\x0b\x4b\x3a\x56\x48\x04\x12\xfe\x23\x69\xd0\xc0\xb6\x23\x94\x42\x82\x6d\x7b\x29\xfd\x86\x13\x49\x40\xcf\xf5\xc9\xae\x20\x96\xfc\x11\x9a\x09\x52\xc9\x25\x90\x7f\x89\xd1\x12\x12\x9c\xe7\xc5\x3b\x05\xed\xdc\xe9\xb4\xa4\x18\x1d\x8f\x74\x3c\xa3\xeb\x47\x8e\x46\xcd\xd5\xbe\x3f\xed\x5c\x7a\xfb\xcd\xeb\xb8\x46\xce\xe1\xeb\xf8\x69\x5b\x7b\xda\xaa\x97\xf0\x91\xc3\xc8\x9e\x5f\xf5\x8a\xee\x1d\xc1\x9e\x91\x12\x24\x0a\x55\x12\x02\xe1\xc8\x3c\x66\x85\x3c\x3a\x66\x13\x79\xb0\x14\x88\x2c\x85\x5c\xc4\x89\x50\xe4\x5c\x37\x23\xe7\xf5\x8b\x8a\xff\x62\x22\x03\xcb\x34\xa2\x07\x04\xa2\xb7\xd2\xa3\xd7\x88\x50\x12\xb9\x01\x8e\x30\xdb\x52\xaa\xd7\x6b\x8b\xf3\x2b\x67\xfe\x5c\x08\x32\x43\x2e\x16\x16\x3e\xc1\x5e\x23\x24\x6c\x7a\x86\x60\xec\xc2\x94\x8e\x27\x52\x22\x56\xf4\x33\x80\xa4\x74\x52\x9f\xca\x85\xc3\x46\xe3\x04\x82\x71\x32\x99\x90\xc0\xe4\xc0\xd3\xad\xc9\x82\x4b\x39\xb6\x20\x98\x75\xf9\x0f\xca\x2e\xb6\x77\x14\x17\x1d\x23\xde\x77\xb1\xf3\x91\xcd\x97\x6c\x6a\xfa\x65\x04\xb6\x1d\x38\xf1\x43\xf4\xa7\xbd\xc5\xa5\x7c\xf3\x9d\x39\x8a\xc5\x79\xa2\x74\xd0\xd7\x42\xf7\x28\xd3\xe4\x38\xe1\x77\x15\x72\x91\x26\xee\x4a\x16\x97\xe2\x83\xd6\x42\xbd\xba\x54\x0b\xa6\x8f\x4b\x99\xa4\x57\x19\x51\x3a\x58\xa4\x47\x30\x9a\xeb\x9d\x45\x88\xdf\xe9\xe2\xa6\xd5\x72\xb9\xee\xd2\xf2\xce\xdc\x1a\xc4\xee\x50\x39\x64\xf2\xed\xdf\x16\xa2\x64\x89\x83\x29\xbd\x38\x6c\xdb\x6a\x71\x52\xe8\x70\x7d\xfd\x65\x86\x5c\x3c\x6a\xb9\x24\x91\x86\x5f\xaf\xdd\x21\x5e\xbb\x03\x5e\xbb\x4b\xbc\x76\xd7\xe8\xc3\x57\xfc\x74\x44\x1f\xde\x44\x3b\x3d\x50\x60\x77\x5d\x3e\x13\x67\xff\x3c\x6e\x35\x27\x23\x77\xfc\xe5\x1f\x27\x67\x46\xd7\x06\x0d\x4a\x23\x14\x37\x2d\x77\x60\xe1\x3c\xf7\xfd\xe2\xf7\x17\xaf\x67\xed\x2a\x68\x3a\xf6\xd9\xec\x65\x79\xa8\x9d\x40\x76\x79\x79\xe9\xe6\x39\x0a\x9c\x8c\xa5\x7c\x6b\x8d\xb8\x20\xe3\x62\xfc\xb5\xfe\xd5\x30\xbe\xaf\x61\x67\x3f\x31\xd2\xf0\xe0\x9e\x08\x7e\xbf\x23\x0a\x3c\x49\x6f\x5a\x01\x6f\xab\xa8\x4b\x5d\x0e\x8a\x5d\xdd\x4b\x1b\x62\x87\x07\xa3\xfa\x4a\x70\xe1\x50\x00\x6d\x55\x1c\x89\x84\x9b\x85\x3e\x5b\x55\x67\x34\x31\x17\x7a\xf5\x18\x21\x57\xe4\x5a\x95\x06\x24\xbe\x8f\x13\x6d\xdc\x28\x0e\xcd\xb5\xd9\xaf\x47\x86\x3d\xd1\xec\x1a\x9e\x55\xd1\x12\xda\x47\xc2\x83\x34\x1c\xb5\x77\x2c\x8b\x85\xe7\x1d\xf1\x15\x28\x69\x4f\xc8\x19\x58\x86\x05\xd5\x87\x6c\x1c\x4e\x20\xd9\x91\xde\xe5\x09\x9c\xf8\xdc\x11\x3d\x57\x1b\x2b\xb5\x73\xbf\x36\x7a\x4b\xab\x78\x9a\x4c\x2d\x29\xaf\xf7\x86\x9c\xbe\x21\xcb\x6a\xa6\x58\xdb\x1f\xb4\xe0\x6a\xe1\x13\x99\xcd\x24\x8c\xd2\x35\x9b\x66\xd7\xf1\x26\x99\xb2\x3a\x2a\x9a\x6a\x41\x72\x0b\xe8\x30\xf2\x9d\x46\x37\xa8\xcb\xb3\x79\xb2\xb4\x6d\x14\xa3\x04\xac\x48\xa8\xd2\x79\x1e\x16\x3f\xb8\x4c\x2f\x84\x77\xe9\x39\x86\xf4\xa3\x81\x7a\x2a\x10\x37\x47\x96\xd5\xe4\x7f\xc9\x46\x1a\x3f\xd4\xe6\xc9\x30\xe6\x6f\x8b\xf8\x7e\x19\x11\x4a\x52\x71\xa1\x7f\x85\x6a\xe8\x08\x52\x6a\x30\x2f\x07\x5d\x8a\xf1\x16\x97\xe1\x2f\x06\x5e\x4c\x31\x48\xfb\xee\x11\x75\x38\x54\x8b\x30\x95\x10\x11\x63\x91\xd8\xbe\x72\x1c\x6c\x58\xa6\x15\xd7\x1b\x92\xde\x50\xc7\xb1\x48\x2d\x44\x79\x75\x7b\x75\x49\x45\x6a\x8d\x5c\x1d\xc1\x0d\x77\x1d\xd4\x65\x94\xc4\x71\x96\xae\x1e\xaa\x0f\x3b\xd7\xde\x7d\x05\x96\x33\x28\x74\x28\xa5\xe1\x14\x2e\xb5\xb1\x32\x0d\x72\x2d\xbf\x82\x38\xc8\x1b\x74\xca\xbf\xa0\x43\xf6\xe4\xa0\xb1\xd9\x69\x1a\xf3\x92\x30\xba\x3b\x8d\xb3\x05\x4b\x64\xe6\xce\x20\x52\xa2\xe7\x69\x9c\x08\x7b\x42\x19\x6d\x18\x0b\x2c\x71\xe5\xc7\xd3\xa0\x26\x40\x72\xed\x57\xff\x83\xf8\xaa\x00\x04\x13\x81\x82\x61\x34\x8d\x57\xeb\x20\x0b\x6f\x97\xec\x34\x61\x53\x16\xde\xb3\xc4\x08\x66\xac\xc2\xe0\x77\xfa\xa4\xd3\x17\x39\x85\x9e\x85\xec\x22\x60\x80\x18\xea\x09\x24\xbd\xda\x69\x80\x94\xee\xc6\x15\xe8\xb0\x17\xd8\xd0\x00\x96\x14\x45\xf4\x2c\x38\x83\x90\x9e\xdd\xbe\x38\xbb\x83\x40\x1b\xb2\xad\x80\x2b\x13\xf2\x57\x28\x7f\x09\x7c\x62\x67\x19\xa4\xd9\x9b\x68\xc6\xbe\xe4\x39\x2f\x08\xcb\x02\x0c\xd3\xd2\xb9\xfc\x0c\xe1\xd1\xe8\x4c\x34\x02\x59\x16\x1e\x7b\x93\x73\xb4\xcc\xf3\xa9\xc0\xa5\xab\x05\x7d\xe3\xdd\xd9\x88\xc0\xdc\x42\x90\x11\x91\x66\x7c\x9c\x65\xe7\x90\xf5\xcf\x56\x73\xe3\xa4\x82\x46\x34\xad\x3f\xa0\x51\xe3\xaf\x7f\x4d\xb1\x05\x4a\x48\xda\xf0\x6d\x28\x22\x06\xe8\xc6\x6c\x56\xa4\x31\x02\x37\xc0\xc4\x03\x91\x00\xc7\x2b\x9e\xa0\x1b\x15\x6c\x30\x8a\x9c\x90\x17\x34\x23\x4e\x88\x15\xe2\x73\x86\x61\x2a\x5e\x89\x0a\x40\x29\xdb\x56\xbb\x2b\x12\xae\x56\xbb\x18\x45\x21\xf5\xce\xc3\x8b\x5d\x8b\x67\xcb\x17\xd8\x80\x85\xb5\xa9\xa4\xfd\xa1\x48\x73\x3e\x0e\x27\x1a\xbe\x6b\x2b\xe0\x04\x76\xe2\xd0\x7a\x3d\xd2\x13\x8c\xa4\x2e\x87\xcc\x9e\xb0\x1f\xa6\xbb\x56\xb3\x42\xb3\xa3\x34\x1b\x09\x07\xc3\x3c\xf7\xce\x18\xa5\xde\x59\x46\x58\x83\x32\xdb\xce\x1a\x34\xd3\x5c\xf6\x58\x5e\x18\xed\x36\x27\x8d\x4e\x7b\x5c\x55\xe8\x4c\x8d\x12\xbf\xb2\x41\x69\xb6\x8f\x2a\xde\xb4\xc8\xe9\x54\x04\xd7\xa6\x2c\x3b\x0d\x44\xa6\x5f\xb9\x44\x1b\x56\xc5\x16\xf8\x94\xb2\x4c\xf9\x63\x3a\xe9\x8e\xea\x8a\xac\x9b\x1b\xf1\xde\xcd\x8d\x15\x46\x4f\xdb\x52\xca\x51\x78\xdb\x5c\xca\x40\x2a\x56\x60\x27\xc6\x90\xcb\xb8\x22\xf3\xd5\xae\xc6\x0c\x46\xa5\xf2\x18\xce\xc7\x18\x65\x30\x9e\x70\x41\x50\x02\x40\x16\x4a\xab\xf0\x0b\x31\x02\xf0\x84\x4b\xc6\xae\xe4\x6f\x4e\x40\x2c\x2d\x45\x5c\x27\x2e\x3e\x43\x33\x12\x29\x03\xd2\x76\x8b\x9e\xb6\xd0\xf0\x74\x98\x13\x86\xe9\x82\x4d\x3f\x93\x58\x0a\xc8\x1e\xf1\x5c\xaf\xe2\x4a\xaf\x9d\x08\xbd\xba\xb4\x25\x47\x61\x5f\x86\x0a\xef\xb4\xab\x4f\x26\x9e\x8f\x7b\x2a\x50\x5b\x4e\x62\xdb\xce\x6c\x5b\xe4\x03\xb7\xed\xd0\x99\xa3\x0c\x02\x78\xaa\xe6\x2c\x70\xa1\x1e\xef\x4c\xb8\xac\x6d\x2b\x4e\x91\xca\x26\x26\x78\x52\x61\x2d\x3c\x9c\x39\xc5\x04\x32\xec\x7b\xa6\x03\x67\x05\x9c\xf2\x88\x44\xc4\x04\x02\x2b\xa3\xc9\x88\x11\xd3\x8f\x2c\x16\x09\x97\x18\xc4\xfb\x9d\xd1\xc9\x16\x2a\x0d\x97\x0c\xb4\x6c\xf2\x31\x64\x7c\x11\xca\xa0\xbc\xa8\x42\x25\x2d\x7d\x05\xf3\x51\xa8\xbc\x88\xff\x31\x1c\x49\x65\x70\x03\x28\xae\x2e\x3e\x7b\xc4\x28\xd2\x55\x5a\x77\x5f\xe8\xad\xe1\xd8\xba\xb9\x99\xc6\x09\x6b\xfd\x94\xde\xa4\x8b\x20\x61\xb3\x9b\x1b\x4b\x86\x03\xd7\xde\xa1\x4f\x5b\x7c\x7e\x40\xec\x2a\x17\xb6\x6c\x27\xff\x53\xf2\x81\x6c\x94\x91\xa7\x2d\x97\x70\x2c\x9d\x82\xdb\xe2\x1b\x49\xaa\xb0\x45\xd2\xb3\xc8\x51\x57\xb0\x8a\x67\x8c\x08\xcf\xca\x91\xb5\xde\x24\xcc\x22\x96\x24\xce\x16\x4c\xe3\xf5\x63\x12\xde\x2d\x32\x62\xfd\xeb\xff\x73\xea\xbb\xde\xf0\xf4\x5b\x16\x85\xe9\xe9\x87\x4d\xba\xf8\x1c\x24\xec\xfe\x14\xfd\xbc\x8c\xc3\x24\x9e\x7e\x76\x92\x0d\xb6\x84\xdc\x23\xe5\x1d\x15\x0e\xaf\x7c\xc5\xbc\xba\xb4\x2e\xbb\x3a\x44\xbb\xfd\x7c\x38\xe0\xd2\x64\x14\x08\x19\xa1\x2e\x2a\xa1\xa4\xfc\x79\x2e\xe1\x06\x38\x77\x43\x01\x16\x0e\xc3\x19\x09\x51\x52\x59\x55\x12\xa0\x55\x3b\xe0\x7a\x75\xa9\x5e\x0e\xc1\x80\x7c\x05\xcd\xb7\xd1\x10\x81\x0e\xa6\x17\xdb\x48\xb9\xea\x8b\xf3\x91\xca\xa9\x94\x57\xb8\xf1\x0b\x08\x4c\xb9\xf2\x0b\x73\xc9\xd1\xcc\x30\x6d\x75\x38\xd1\xfd\x2d\x28\xed\x45\x6c\x47\x21\xbc\x20\xae\xa1\x61\x01\xda\x9e\x88\x28\x61\x7d\x00\xa6\xcf\x8e\x2e\xdc\x3c\xdf\x5c\xd2\xe5\x88\x8d\x2c\x4b\xd1\x4d\x82\x62\x9a\x0a\xdd\xfc\x55\x3c\x63\x2f\x33\x2e\x1d\x5c\x74\xbb\xfe\xb0\x97\xe7\xf1\x65\xb7\xd7\xf6\x86\x79\xbe\x69\x7a\x32\xa2\x09\x05\x3b\x0f\x37\x3d\xfe\x78\xaf\xed\xbb\x79\x1e\x5c\x76\xfb\xed\x4e\x7b\xc4\x46\xa9\x56\xf6\x37\x98\xc4\x84\xff\x96\x76\xea\x0d\x6c\x9a\x3e\x26\x41\x4b\xbc\xd1\x44\x71\x4b\x7c\xe9\xe2\xc2\x73\x71\xb3\xd7\xed\xb6\x7b\xea\x74\x7d\x48\xbc\xf6\x50\x06\x53\x8a\x6c\x8f\xc7\x3c\xea\xfd\xe3\x83\x07\x65\x86\x9c\x6c\x3f\x69\x87\x0a\x6d\xf8\x0f\x56\x33\x69\x5a\xa7\xb3\x98\xa5\x9c\xd3\x06\xd3\x29\x5b\x67\xa7\x09\xbb\x63\x5f\x8c\xbc\x11\xc5\x30\x2b\xe2\x22\x83\x3d\x07\x3e\x19\xc8\x9c\x94\x47\xec\x45\xda\x9c\xd7\x53\xd6\xa2\xae\x00\x92\x3d\xb3\xce\xee\xa0\x2e\xfd\x85\xf4\x4d\x50\xdf\x93\x76\xa1\x94\x5a\x17\x56\x53\x7b\xd4\x5b\x96\xd2\xc0\xd2\x26\xb5\x4e\x79\xeb\xff\x9e\x5a\x7f\xdf\x54\x6f\x44\xb8\x88\xda\x0e\xc0\xb2\xff\xb6\x89\xb3\x73\x0b\x37\xff\xde\xfa\x7b\x0c\x69\xd3\xba\x14\x80\xcb\x17\x67\x56\x33\xe3\x3f\x0e\x79\x44\x6b\x2d\xe4\x69\x7b\x92\x48\xcb\x61\x2a\x2d\x87\x1f\x84\xe5\x30\xdc\x8f\x7c\x96\xc1\xd1\xfc\x33\x45\x2c\x35\xa7\x6d\x4e\x16\x7f\x1f\x3f\xb0\xe4\x55\x90\x32\x84\xf3\x3c\x53\xea\x2d\x7f\x50\x0b\x8b\xed\x2d\x06\x1d\x67\x02\x89\x31\xbc\x3b\x76\xc7\x63\xe9\x65\x44\x1c\xa3\x34\x08\xb5\x8b\x61\x3e\xec\xee\xad\xd3\x1c\x54\xc7\xb9\x62\x62\x2c\x83\x91\x46\xd6\xa9\x45\xd4\x83\x09\x17\xe1\x23\x05\xc6\x3b\xbd\xa0\x9b\x3c\xb7\x2c\x4a\x97\xda\x14\x92\x9e\x48\xb7\x96\x69\x6b\x03\x0b\xaa\x94\x97\x25\x08\x0f\xbb\x29\x0b\x97\x68\x7e\x56\x60\xcb\x17\x23\xb5\xd0\x23\x31\xb7\x6d\xb4\xa0\x0b\xb5\x65\x5c\x98\x63\x0c\xc1\x68\xd1\x4c\x49\xda\x5c\xc8\xed\xd1\x26\x5e\xbb\x5d\x64\x85\x28\xb7\xc9\x73\x25\x9b\x67\x50\x1c\x39\xa1\x25\x61\x11\xe0\x41\x90\x50\xcb\x12\xb9\x16\x25\x46\x64\xcc\x29\x4a\xcc\x45\x63\xb7\x06\x57\xe8\x55\xbc\x89\x32\x25\xbb\xde\xb2\xd3\x88\xdd\x89\xc8\x44\x4b\x19\xff\xe3\x4b\xf7\x1c\xc5\x97\x97\x97\xd4\xc3\x32\xd4\x38\xc3\xd8\xb3\x63\xae\xcd\xf0\xeb\x9d\xac\x20\xbb\x24\xe1\x88\xbc\xd3\x2b\x49\x42\x05\x4e\x41\x58\x06\x53\x6a\x8d\xad\x66\xd0\xb4\x26\x16\x6c\xa8\xa1\x31\xa5\xcd\xb4\x69\xbd\xb0\x38\xe5\x54\xa5\xb2\xe4\x0f\x56\xd5\x5b\xb0\xfc\x56\x48\x9f\xb6\x90\xd2\x78\xdf\x01\xb1\xd1\x08\xf8\x4e\xc0\x79\x6e\xfd\xfa\xcb\xff\xf1\xaf\xff\xc5\x6a\x50\x75\x21\x8a\xb7\xc2\x3b\x95\xef\xa9\x74\x94\xa1\x39\x26\xfc\xe9\x13\xbe\x9d\xc3\x71\x32\xa1\x1b\x73\x9b\xa5\xe5\xb6\x08\x85\x1f\xe2\x54\x98\x3a\xeb\x65\x0b\x46\x4d\x1a\x05\x1e\x97\x3b\x11\xa3\x85\x36\x8b\x36\x60\x59\x18\x83\xbf\x77\x63\x29\x6f\x54\x20\xac\x44\x74\xaa\xb2\x5c\xd6\x6f\xc6\x1a\x09\xce\x80\xcb\xf9\x6b\xf6\xd7\xe8\xaf\xf7\x7f\x9d\xff\x35\x39\xfd\xd7\xff\xfa\xdf\xfe\xaf\x5f\xfe\xdb\x7f\xfd\x3f\x7f\xfd\xe5\x97\x5f\x7f\xf9\xcf\xbf\xfe\xf2\x3f\xfc\xfa\xcb\xff\xf8\xeb\x2f\xff\xd3\xaf\xbf\xfc\x97\x5f\x7f\xf9\x9f\x7f\xfd\xe5\x7f\xf9\xf5\x97\xff\xf5\xd7\x5f\xfe\xb7\x5f\x7f\xf9\xdf\x7f\xfd\xe5\xff\xfd\xf5\x3f\xff\xdf\xff\xdf\x2f\xbf\xfc\x75\xe3\xbb\xfe\x40\xfc\x3b\xfc\xeb\x66\xce\xe6\x73\x4b\xa9\x5c\x75\x19\x8c\x0a\x45\xbf\x12\x5f\xde\xef\xa9\x23\xf0\xb6\x0c\x2b\xe9\x0e\x15\x4e\xab\x8b\xc5\x40\x6a\x1f\xc0\x05\x9d\x72\xfd\xe5\xcd\x6a\xc5\x66\x61\x90\x31\x98\xd1\xa9\x84\x8e\x2b\x8b\xd6\x74\xea\xbc\x65\x69\x1a\xdc\xb1\x57\x8b\x20\x8a\xd8\x12\x56\x74\xea\x7c\x1b\xa6\x6b\xae\xd3\xc0\x3d\x75\xe1\x91\x2f\x88\xbb\xfd\xc8\xfd\xa6\x50\xd7\xc3\x39\x7a\xdc\xc9\xff\xc7\x67\x49\x83\xaf\xf2\x25\xa0\xec\x5e\xfc\x1a\x32\xc4\xa9\xe0\x6d\x65\x57\x6a\x4c\x02\xe1\xda\x86\xb7\x27\x0b\xdb\x9e\xe5\x39\x5a\x1c\xc8\x68\x33\x9e\x40\x42\xbd\xf3\x3d\xa8\xe7\xe4\x1c\x6b\x04\x9f\x42\xbb\x4e\x9a\xcd\xf2\x6c\xe4\x71\xdc\x6c\xde\x57\x7c\xe5\xd3\x3a\x13\x14\x1b\xb1\x32\x55\x22\xc3\x90\xe1\x2d\x44\xe8\x1e\xc3\xfd\xd6\x8c\xbf\x61\xf8\xc9\xe8\xd8\x16\xf6\x9c\x2c\xe7\x78\x14\x55\xbb\x50\xba\x2e\x06\xe8\x0e\x18\x78\x18\x6f\xc9\xca\xb6\x57\x4e\x14\x3f\xec\x3c\x2c\xca\xcc\xe7\xd6\x23\x14\x53\x14\x0a\x93\xc8\x1a\x3b\x7c\x35\xfa\x10\x8a\xbf\x9e\x13\x47\x2b\x39\x8b\xf4\x56\x20\x61\xc7\xce\x3a\x4e\x33\x35\xb3\x10\xf3\x1a\xc8\xd4\x09\x66\xb3\xab\x7b\x16\x65\xdf\x87\x69\xc6\x22\x56\x1f\x25\x6b\xbc\x68\xdb\x8d\xa9\x13\xae\xf8\x27\xae\x85\x4b\x45\x3a\x42\xd5\x56\x4e\xcd\xef\x20\xd6\xb4\x2c\xe0\xd4\x66\x0b\xfb\x1f\x43\x96\x6a\xa2\x05\xb7\x5c\xc5\xc5\x24\xa2\x56\x1c\x25\x2c\x98\x3d\xa6\x59\x90\xb1\xe9\x82\x93\x59\x2b\x8c\x4e\x97\xc8\x92\x2e\x1c\x56\xd5\x73\x60\x53\x71\x6a\x32\x9e\xc2\xce\x7e\x45\xe6\x3c\x6f\x9c\x84\xad\xe2\x7b\x26\x5f\x94\x80\x13\x77\x85\x4d\xb9\x0a\x94\x91\x4a\xcc\xbc\x78\x93\x15\xa3\x0f\xc2\x2a\xb3\x63\x94\x58\x80\x44\x70\x9f\x15\x51\x92\x1a\xc5\x59\x78\x09\x29\xeb\x6a\x9b\xf4\x55\x9e\x05\xb1\xc9\x8f\x19\xf0\x25\xfb\x92\x39\xab\x82\x2f\x10\x17\xe9\xab\xbe\x22\xd0\x23\xe9\xf1\x84\x2f\xdc\x51\x88\x58\x53\x24\xcf\x89\x0b\xb3\xa2\xe2\x31\xe2\xeb\x47\xec\xf9\x05\xf3\x3c\x92\x54\xaa\xf0\xd2\x34\x4f\x48\xdc\x93\x2a\x0e\x97\x12\x20\x32\xc3\x7b\xd3\x64\x9f\x3f\x26\x71\x74\x77\x2a\x77\xac\x21\x84\x56\xd8\x61\x99\xf7\xc8\xab\xcb\x40\x66\x84\x81\x70\xb9\xe3\xf9\x91\xa7\xa7\x61\xfa\x2e\x78\xa7\x42\x39\x5c\x82\xd8\xa5\x3b\x0a\x49\x84\x51\x11\x4c\xe0\xd5\x65\xe3\x2a\x2c\x27\xfd\x67\x2a\x34\xd1\xae\x30\xad\x1d\x07\xbd\xa3\x09\xae\xcc\xf9\x3f\x30\xe9\x06\x3c\x23\x9f\x6c\x31\xe6\x7b\x28\x1c\xc4\xdd\x99\xf7\xa3\xd9\xa3\xbe\xd6\x19\x15\x0b\x1d\x55\x7a\x24\x6a\xfd\x5a\x32\xc3\xf6\x11\x98\x3a\x91\x27\xb3\xb4\x5e\xd5\x25\xe8\xa9\xc8\x78\xe1\x1c\x09\x53\x95\xa1\x21\x0d\x4d\xa3\x46\x29\x0e\xf5\x7c\x0d\xff\xa1\xd8\xa4\xd7\xe9\x2a\x3e\xa9\xa2\x2f\xdb\x3a\x8d\x85\xd7\x93\xf8\xc5\x7d\x5f\xe1\x17\x7b\x7d\x89\x5f\x2c\xa6\x62\xa5\x65\xef\x7b\x51\x32\xc0\xf0\xa8\x93\xaf\xdd\x69\x8f\xb4\x5b\x65\x7d\xba\x51\x07\x22\x0f\xca\x3e\x7a\xa5\xdd\x74\xbe\x28\x60\x92\x6b\x15\x1c\xfb\x5e\x47\x7f\x7e\x2e\x9d\xb9\x5e\x6a\x8c\x92\x4f\xca\x22\x04\xaf\x34\x3a\xd6\x5b\x05\xc3\xfe\x51\x7a\xb2\xc0\x07\x61\x44\xea\x63\xf8\x49\xe4\x78\xef\x60\xf8\x56\xc5\x99\xbe\x53\x38\xcc\x6f\x74\x7e\x8e\xef\xf9\x2b\x2e\x86\xd7\xbc\xc7\x43\x0c\x3f\x2b\x9b\xdf\x1f\xa9\x34\x7d\xc2\x37\xf4\x67\x67\x0e\x7f\xa6\x7f\x74\xe6\xf0\x23\x0d\x9d\x72\x97\xc2\xdf\x68\xe8\x14\xda\x24\xfc\x40\x43\xe7\xcf\x61\x94\x0d\x84\xb5\x13\xfe\xb2\x1b\xd2\x0e\xdf\xd1\x8d\x0c\x55\xff\x66\x33\x9f\xb3\x04\xfe\x44\x37\xce\xb7\x41\x16\xfc\x10\xb2\x07\xf8\x03\x7d\x8b\x5c\x0c\xff\x40\xdf\x22\x1f\xc3\x3f\xd2\xb7\xa8\x8d\xe1\x9f\xe8\x5b\xd4\xc1\xf0\x9f\xe8\x5b\xd4\xc5\xc0\x18\x7d\x8b\x7a\x18\x32\x46\x3f\xa2\x86\x8b\x21\x11\x17\x1e\x86\x88\xd1\x9f\x24\xfe\x48\x0a\x21\xbf\xfe\xcc\x1e\x53\x88\xf9\x95\x0a\x42\x84\x80\xd1\xbf\x94\xd6\xfc\xf7\x73\x48\x79\x41\x22\x12\x4f\xc1\xa6\xbc\xfe\x18\xde\x2d\x32\x58\xf2\x82\x9f\xe2\x30\x82\x29\xbf\x4a\xe3\x24\x83\xb9\xb8\x12\x89\x88\x16\xfc\xb2\xf0\xab\x9b\xc9\x5f\x15\x7c\xc3\x35\xa3\xaf\x2a\xc1\x84\x2b\x51\x50\xcd\x88\x73\xcf\xe8\x27\x64\xf1\xb1\x99\xdd\x54\x7c\xd4\xe1\x51\xdc\x99\xb1\xf9\x4e\xf9\x1d\xa3\xa9\xf3\xea\xfd\xbb\xeb\x4f\x1f\xe1\x96\x5f\x7f\xfa\xcb\x87\xab\x6f\xe1\x86\x5f\xfe\xf0\xe6\xea\x47\x78\xe0\x63\xe4\x41\xad\x7c\xfc\x99\xa1\x0f\x88\x01\x1b\x3f\xb2\x89\x10\x57\x30\x5c\xb1\x3a\x01\xfe\xd4\xa3\x54\xc8\x0f\x3f\x88\xc8\x55\x3e\xa9\x5e\x4f\xcc\x1c\x1a\x7b\x13\xec\xdc\x8a\xf9\xc3\x63\x77\xb2\xc5\xf0\x85\xd1\x46\xe3\x07\xdb\x6e\x34\x7e\x30\x0e\x90\x52\x96\xd9\x76\xa5\x6a\x59\x9f\x27\x81\xcd\x85\xb5\x0f\xae\x59\xad\xca\xbd\x56\x0a\x56\xc2\x15\xac\xe4\xef\xf4\xb1\xc0\x8f\x9a\x2b\xc4\xf3\x79\xca\xb2\x0a\x57\x80\xf7\x6c\x97\x05\x3d\x88\xf0\x9b\x5b\x26\x33\x65\x6a\x7a\xa8\x02\xda\xff\x66\x02\xeb\x04\xa7\x62\x0a\x64\xd6\xb1\x06\x97\x4a\x3e\xef\x36\x4c\xe4\x74\x92\x35\xde\xab\x1a\xb1\xae\xc9\x7a\x93\xd5\xd6\x64\x86\x1d\x18\x8d\xd5\x59\xd8\xb7\xf0\x72\xf7\x2b\xea\x89\x4f\xbb\xf3\x04\x9f\x76\x9f\x2c\x5d\xe7\x5d\x88\xa8\xf6\x24\x83\x90\x7e\x66\x22\x52\xe2\x3c\xe2\x62\xae\xd0\xa7\x32\x21\xdc\x16\x87\x89\x5b\x78\xc5\xf6\xf4\xb9\x6f\xc4\xc5\x81\xa4\x23\x12\xce\x7e\x36\x4e\x26\x22\x16\xec\x2d\x3b\x78\x32\x27\xed\x71\x57\x07\x9c\xf9\xa7\x74\x73\x20\xcd\xca\xbc\x34\x05\x4f\x61\x41\x5f\xa2\x54\x66\x92\x11\xc7\x42\x0b\xdb\x6e\x7c\x41\x0b\x85\x75\x14\xd0\x85\x94\xc7\x52\x0c\x22\xa5\x56\x46\xdd\xf3\x86\x80\x6b\xa9\x60\x13\x65\xcd\x26\x8e\xa4\x94\x1f\xab\x5c\xcc\x27\x29\x8d\x44\xee\xb8\xb9\x6d\x6f\x2e\x7d\xdb\x46\x53\xba\x44\x53\x30\x73\x55\x82\x2f\xe2\x5c\x5c\x48\xe8\x0a\x15\xb9\xf5\xe5\xb8\x8a\x98\xf3\x04\x9f\x27\x97\x99\xa8\x5e\xa0\x62\xce\x47\x53\x94\x8e\xb3\x09\x64\x98\xf0\xbf\xc6\x38\x7f\xac\x88\x96\x25\x02\xb9\x0b\xd9\xfe\xe0\x24\xc5\x17\x32\x7c\x9e\x5d\xb2\x73\x2c\xac\x4e\x65\xdb\x98\x31\x89\xc9\x16\x3e\xa8\x5d\x57\xd9\x62\x33\x56\x86\x9b\xff\x20\x72\x8e\x60\xf8\x89\xd5\x04\xfd\xce\x34\x9c\xca\x07\x36\x9a\xab\x97\xde\x33\x65\xe7\x20\xfa\xaa\xc2\x8a\xbf\x65\xf4\xa9\x4c\xcd\x4a\x6a\x17\xee\xeb\x6a\x4d\xc0\x17\xd5\xf3\x92\xb0\xe2\x2d\xb0\x7b\x96\x3c\xd6\x85\xd4\xfd\x93\x59\xe1\xf3\x12\xf7\xe0\x2d\xcc\xc3\xe5\xb2\xae\xb6\xef\x55\xcf\x6b\x3b\x39\x0f\x97\x19\x4b\xea\x5e\x7b\xa9\x66\xe7\x1f\x7e\x47\x63\x44\xc5\xd1\xac\xae\xda\xff\xf4\x3b\xfb\x16\xcd\x04\x1b\xab\xab\x92\xb1\xdf\x57\x67\x4d\xfe\xa4\x3f\xfc\xae\x9a\x42\xc9\x60\xeb\xda\x96\xfc\xbe\xb6\x85\xd1\x74\xb9\x99\xb1\xba\x1c\x2c\xa7\xd9\xef\xab\x92\xf3\xf6\xda\xf8\x4d\x76\x6c\x7d\x18\xf2\x43\xdd\xcb\xc1\xd1\x97\x57\xc1\xba\xee\xa5\x87\xdf\xd7\x01\x29\xad\xd4\x55\x98\x1e\x6d\x85\x21\xe5\xd4\xbd\xbc\xf9\xca\xcb\xf7\x2c\x49\x59\x6d\x36\x32\xc8\xa8\x7e\xa7\x24\x6a\xa5\xc6\x85\xb2\x33\x9f\x93\x6c\xf7\x3c\xba\x48\xce\xb1\x44\x57\x1f\x47\x13\x90\x7f\x9b\xcd\x89\x2c\x69\xb5\x32\x55\x96\x99\x09\x81\x17\x61\xba\x85\x34\x5e\xd5\xf6\xf8\x1f\x7f\xd7\x08\x72\xa1\xae\xae\xb6\x29\xdb\x25\x63\xfc\xe1\xcd\xad\x60\xea\xb5\x39\x7e\x8a\x27\xa3\x02\xa7\x15\x42\xfa\x28\x38\xb1\xc1\xf6\xd1\x07\x94\x40\x22\xb8\x3a\x46\x89\x92\xa2\x20\x71\x6e\x1f\x33\xf6\x5e\xc8\x34\xcd\xf0\x45\xe2\x7c\xf3\x97\x4f\x57\xd7\x37\x1f\xae\x3e\xde\x5c\x7d\x7f\xf5\xf6\xea\xdd\x27\x58\x19\x89\xa9\xb3\x51\x44\x1e\x51\x06\x11\xc6\xad\x50\xa8\x5a\xef\x0e\x88\x11\x9a\x64\xed\x12\x78\x10\xc1\x29\x5b\x78\x53\x65\xe4\xfa\xb6\xd2\xd3\xaf\x19\x32\x87\x0d\x3c\xae\xb5\x0b\x51\x40\x67\x97\x94\x8c\x3e\xa4\x2b\x14\x15\x8c\x32\x96\xd0\x86\x61\x33\xbb\x4c\x76\xc5\xb6\x52\x99\x97\x16\xf0\x8b\xf0\x1c\xcb\x89\x6e\xc6\x13\x1a\x8d\xe3\x66\x73\xb2\x85\xef\x19\x7d\xd2\xc0\x21\xfb\x8c\x2b\xde\x65\x56\x5b\x09\x3c\xb2\xff\x64\xb8\xff\xa4\x42\x2e\xd9\x7f\x36\xda\x7b\x76\x0b\xaf\x0f\x8c\xaa\x14\x02\xd9\xf8\x96\x4d\x6c\x5b\xc7\xb5\x17\xde\x66\x99\x6d\xcb\x2c\x10\xb6\xad\x6c\xd1\xcd\x0c\x53\x5a\xf8\x00\x6e\xe1\xe7\x03\xf5\xbe\xe6\x82\x5b\x46\xef\x64\x8c\x11\x1e\xcd\x91\x2f\x03\x85\xc8\x9f\xa5\x8d\x06\xfe\xb8\x2f\xb7\x29\x7b\x3b\xda\x79\xd9\xb6\x1f\x50\xc2\x85\x5f\x94\x80\xa5\x72\x1a\xe0\x3c\x17\x3f\x45\xf2\x10\x75\x9d\xca\x6b\x11\xdb\x57\x38\x30\xa8\x7b\x0f\x49\x98\x49\x34\x52\xdb\x6e\x24\x8e\xfe\xa9\xee\xb2\xc2\x9b\x5f\xdd\x2f\x0b\x46\xdf\x14\x8e\x8c\xd2\xb3\x51\x01\x43\x32\xbc\x3d\xb9\x63\x79\x8e\xfe\xe8\xcc\xe9\xcf\x0c\x7e\x76\xe6\xf4\x8f\x0c\x43\x80\x02\xe7\xba\x19\x38\xaf\x5f\x34\xee\x58\xe9\x7d\xff\x74\x28\x58\x8b\xfc\xcc\xa0\x12\xa4\xf6\x48\xfe\xc8\x04\x96\x93\x31\xb1\x0b\x35\xa3\x42\xcf\xb0\x6d\xb4\x60\x74\x56\x27\x08\x2d\x59\xc5\x03\x52\xac\xfd\x6f\x18\x9d\xa1\x27\x2e\xf1\xe0\x93\x19\xfa\x86\xc1\xf7\x0c\xc3\x82\x5f\xac\xf9\xb5\xd2\x33\x31\x88\x7b\x4f\x42\x21\x24\xef\x98\x48\x00\xf6\x86\xc1\xb4\x2e\xad\x16\x7e\xda\x16\x88\xf7\x64\xb1\x0b\x86\x4f\x7e\xe2\xed\x7f\xc5\x78\x7d\x96\xa4\x0a\x16\x58\xb7\x56\x59\x56\x10\x08\x0b\xac\xb8\x5a\xfe\xbd\x8e\x53\x5a\x96\xe5\x45\xec\x12\xb3\x30\x7c\xc3\x8b\x56\xec\x98\x74\xcf\x17\xf3\xf6\x08\x8e\x16\x6c\x8a\x84\x60\x4d\x84\x36\xb4\xd1\xd8\xe0\x91\xf5\x6a\x19\xac\xd6\x6c\x66\x11\xcb\xc2\x4d\x05\x86\x04\x73\x2a\x56\x58\x93\xc1\x8c\x8a\xf5\xd5\x64\xb0\xa6\xe1\x78\x39\x81\x47\xba\xce\x73\x71\x44\xb0\xb6\xed\xf7\x68\x8d\xe1\x96\x36\xd6\x79\xde\x48\x9d\x97\xdf\xfc\xa0\x13\x37\xad\x6d\xdb\x04\x32\x7e\x69\x36\x45\x69\x2a\xc9\xa1\xbe\x54\x1f\x55\x16\x20\xe7\x66\x56\xd0\x60\xe7\x7e\x3c\x9f\xa0\xe4\x45\xd6\x8c\x9c\x18\xae\x18\xde\x6a\xa9\x7e\x37\x81\x5b\x6d\x9d\xe5\xe1\xb4\xa8\x55\x42\x1c\x20\x65\x63\x14\xa8\x2a\x28\x12\xf6\x55\x97\x44\x97\x7e\xb7\x3b\xf2\xbb\x5d\xe2\x77\xbb\x76\x84\x21\x74\xee\xc7\x33\xf9\xed\xd0\x89\x21\x32\xbf\x2e\x38\x4c\xb9\x83\x44\x38\xff\xf6\xe4\x76\x84\xd6\x34\x41\xd5\x06\x40\x88\x9f\xa6\x88\xc1\x1a\x96\x60\xdd\xcc\x54\xae\x12\xa1\x78\xc1\x06\xe6\xd4\x85\x99\x24\xc1\x9c\x02\x28\xbd\x35\x31\x5d\xd1\xbe\xcb\x73\xcb\x30\xc2\x58\x94\xa2\x0d\xbd\xe1\x0f\xe7\xb9\x75\x2d\x9c\x79\xaa\xb7\x37\x45\x20\xa3\xd4\xa5\x93\xd1\x27\x86\xd6\x7c\x7f\xbf\x55\x9b\x87\xff\x38\x89\x69\x02\x33\xce\x35\x22\x50\x39\xc5\x1f\xa9\x64\x6d\x72\x85\x9e\x98\x56\xe1\x50\x42\x12\xef\xab\xf6\x25\x8f\x08\xe7\x08\x05\xf4\xb1\x35\xc3\x17\xee\xc1\xa7\x8a\x44\xeb\x28\xa0\x2b\x14\xe2\x17\x19\x6e\xce\x2e\x1f\x0f\xd7\x9a\xd2\xe0\x2c\x93\x6f\xa5\xf4\x1e\x25\x9c\x63\x71\x6d\xe9\x3b\x14\xd0\xf4\x85\x4a\x14\xba\x40\x4c\x8c\x2d\x3c\xdd\x92\x18\x62\x32\x83\x25\x09\x80\x91\x14\xee\x09\x7f\xf8\x4f\x28\xc6\x5b\x7c\x3e\xbf\x48\xcf\xf1\x4b\xc4\x60\xde\x6c\x72\x4d\xeb\x0b\x35\x16\x2e\xbd\x46\xdf\x08\xb2\xf1\x05\xcc\xc4\x19\x16\xac\x31\x26\x15\x52\xb5\x16\x61\x47\x35\xc6\x92\x35\x6a\xc9\x3b\xef\xf6\x12\x5d\xad\x41\x3e\x20\xf3\xcd\xca\x6b\xcf\xe9\xea\x4b\xbe\x9c\x1a\x2e\xce\xf3\x03\x0b\x48\x2c\x99\xc2\x81\x56\xae\x26\x0c\x7c\xc5\x8c\xbe\xb6\x56\xe2\xa3\x6b\x25\x1e\x15\x8a\x7c\x38\xe2\x6d\x79\x44\x09\xa8\x35\x01\xa1\xf6\x56\x6c\x50\x1a\xed\xde\xc5\x44\x15\x60\x72\x6c\x99\xa9\xa7\xf8\xcc\xf1\x21\xff\x03\xba\x6b\x50\xba\xef\x16\x3f\xfa\x8c\x1e\x8b\x50\xce\xcf\xe8\x0e\x63\xc2\x4b\x2a\x59\x22\xc5\x57\xd6\x79\xbe\x40\x6b\x60\xf0\x38\x66\x13\x01\x6b\x6f\x4c\xe1\x17\x88\xf2\x1c\x7d\xa9\xc4\x7c\xac\xb1\x5c\xdc\x9f\xe8\x97\xf1\x9a\x4d\xe0\x15\x6d\x34\x3e\xd9\x36\x2a\x41\xe7\x3e\x09\x10\x36\xed\xbd\x25\x7f\x61\x78\x4b\x0b\xce\x71\xc2\xbf\x78\xcf\x44\x28\x31\x5f\x1f\xb7\x8c\x8f\x3e\xbf\xba\x29\x0b\x1f\x19\xac\x31\xa0\xcd\x48\x4d\x2e\x1e\xaf\xd8\x84\xd2\x25\x59\x89\x76\x7f\xc1\x79\xfe\x0d\xfa\x72\x84\xae\x2f\x39\x41\xbf\x1a\x2f\x27\x74\x2d\x58\xec\x77\xcd\xc0\xf9\x51\xb0\x59\xb4\x6e\xd0\x47\x91\xb0\x4b\xb0\x5e\x58\xc2\xd3\x9e\xc8\x49\xb2\xad\xc9\x99\x2b\x6b\xf3\xd1\x89\xe7\x7a\x46\x44\xc4\xdc\x12\x9e\xe6\x49\xbc\x22\x6f\x19\xc4\x73\xf2\x91\x33\x33\x6b\xaf\x46\x8b\xb7\x9a\x8f\xf6\x97\xba\x9b\x7c\x7d\xf0\xcf\x7d\x80\x25\xe7\xbb\xf0\x06\x2d\x55\x81\xf8\xfe\x17\xc6\x3f\x22\x39\xec\xd6\xbc\xd1\x78\x05\x4b\xc1\x9f\xa3\x3c\xff\x52\x58\x64\x29\x5d\x30\x31\x73\x45\xc1\x82\x99\x6f\xd5\x6c\x35\x0f\x17\xd1\xc4\xa2\x43\x9a\xad\x57\xbe\x86\x6a\x6c\xa5\x63\x0f\xfc\xc9\x8e\xf5\x17\xe1\x86\x3c\x7e\x45\xe2\x2e\xde\xbb\x2d\xd2\x5a\x55\x2a\xfb\xb2\xf3\x8c\x1c\x60\xf9\xfa\x16\x8b\x26\xd5\x09\x0d\xdf\xf2\x09\x7e\x35\xfa\x44\xde\xf2\x11\x78\x25\xc7\x77\xcd\xe0\xad\x46\xa0\xa9\x85\xef\x31\xbd\x84\xcb\x70\x3a\x8d\xac\xa7\x62\xd1\x77\xf3\xd0\xfa\x7d\xe2\xf9\x7d\x71\x36\xe9\xb5\xfb\xe2\x94\xd0\x6b\x0f\x60\xe7\x30\xae\x08\xc3\xd5\x31\xec\x5e\xa7\x4b\xbc\x4e\x17\xbc\x4e\x8f\x78\x9d\xc2\x17\xb5\x40\xec\xd3\xc0\xdf\x5e\xaf\x43\xbc\x9e\xce\x08\xd7\x1e\x92\xf6\x10\x3a\x2e\x29\x62\x5b\x65\x3e\x4b\x11\xfc\x50\xcd\x82\x6b\xe4\x8e\xdb\x8b\x54\xd1\x10\xe2\x46\x06\x39\x03\x0f\x70\x27\x53\x2e\x6f\xe9\x6f\xf3\x8d\xee\x2a\x3c\x85\xc1\x50\x07\x35\xf5\x94\xeb\x85\xce\x58\xe2\xf5\xe5\x99\x52\x6f\xf7\x4c\xa9\x3d\x94\x67\x4a\xe2\xe4\x68\xa6\x4f\x8e\xd6\xe5\x69\xcf\xaa\x70\x5d\xbe\x57\x27\x34\x8f\x1a\x1a\xf4\x8e\x1a\x41\xe9\x70\x4b\x15\x97\x13\x76\x97\x86\x05\x37\x34\xaa\x1c\xb3\x3c\xd0\xa8\x3c\x66\xb9\xa2\x91\xc3\xc5\x15\xf8\x42\x23\xf3\x28\xe7\x9a\x46\xce\x9b\x68\x1e\x46\x61\xf6\x08\xef\xe9\x0d\x7c\xa6\x57\x4e\x70\x9b\xc2\x4b\x7a\x25\x70\xe7\x3e\xd1\x2b\xa9\xc8\xc3\x2b\x7a\xe5\x2c\xe3\x3b\x78\x4b\xaf\x9c\xef\xdf\xf9\xf0\x91\x86\x23\xeb\xe6\xd6\x22\x85\xec\xfa\x41\x94\x2c\x79\x89\x21\xa1\xfe\x24\x4a\x63\x55\xaa\xe4\xd9\x12\x09\xe8\xdb\x3a\x6f\x16\xbe\x8b\xe4\xc1\x43\xc2\x47\x76\xf0\x22\x69\x65\x2d\x0f\x36\x14\x79\x17\x17\x29\x6e\x79\xb0\xa4\x9b\xcb\x4b\x0f\xa6\xd4\x6f\x0b\xed\xf8\xa5\x80\xc4\xeb\xe0\x96\xb8\xe8\xf7\x31\x71\x85\x58\xb4\xa0\xec\xc2\xcd\x73\x57\xe6\xfa\xf0\xce\xd8\x85\x3b\xf2\x88\x2b\x18\x3e\x62\xf4\x33\x62\x18\x37\x28\xcb\x73\x46\x29\xbd\x1e\xa1\x90\x0a\xa8\x37\x8f\xb8\x10\xd1\x0d\x26\x28\xa2\x9f\xd0\x2b\xc4\xf0\xd9\x5b\x0c\xec\x05\x8a\xa9\xf8\x00\x97\xf7\x3c\x2e\x07\xb6\x5a\x10\xbf\xa0\x3e\x06\xc4\x9a\x34\x6a\x2e\x2f\xa9\x37\x9a\x9e\xc5\x64\xfa\x82\x3f\xe7\xb5\x96\x18\xbf\x88\x2f\xa9\xcf\x9f\x6d\x36\x21\x3e\xe3\xcf\x8a\xe7\x36\xfc\x63\xea\x2b\xea\x45\x14\x52\xc4\x5e\xc4\x2d\x0f\x8b\xb7\x33\xfe\x24\x5d\x62\xc2\x5b\x25\x4a\x96\xe6\x2d\xea\x62\x7c\x9e\x5d\xd2\xc1\x79\x30\x9e\x37\x9b\x13\xca\x45\xce\x10\xc2\x33\xea\x77\x7b\x90\xb5\xe8\x00\x9f\x8b\xac\xe5\x34\xba\xb8\xc8\xf2\x10\xd2\x26\xcd\xce\xd3\x4b\xd7\x7c\x3e\x82\x48\x3e\x9f\x8a\xe7\xb5\x45\x6b\xdc\x6a\xcd\x27\x39\xf5\xfc\xc1\x8b\x05\x04\xdb\x62\xb6\xde\xed\xcc\x56\x31\x35\xb1\x98\x9a\x90\x4f\x4d\x40\x63\x3e\x35\x29\x0d\x5b\x7d\xd8\xd0\x44\xcc\x16\x1b\x6f\x5a\xad\x09\x4c\xa9\xe7\xf7\xed\xa5\xcc\x18\x75\x79\x49\xfb\xa2\x3d\x53\xde\x82\x17\xd3\x26\x1b\x6f\x26\xb0\x69\xb5\x54\x63\x64\xe3\xa7\x36\xaf\xb9\x25\x66\x7d\x7a\x79\x49\x5b\x69\xd9\x91\x48\xbc\x18\xed\xbe\x18\xce\x91\x2b\xd2\x10\x4c\xa9\xd7\x0a\x8a\x9c\x14\x53\x4a\x69\xac\xa5\xda\x68\xf4\x2e\x78\x47\x96\xa3\xd6\x35\xb9\x3e\x89\x9a\x54\x8d\xea\xb4\x45\x03\x15\xa2\x81\x96\x02\xeb\x0f\xbf\x88\xc4\x90\x4f\x5b\x19\x2e\x07\xe2\x4d\x25\xe3\x74\x7b\x72\x71\xe1\x77\x72\x36\xf6\x27\x17\x17\x5e\x2f\x67\x63\x6f\x72\x71\x31\xc8\xd9\xd8\x9d\x94\xef\x7c\x5f\xbe\x33\xe6\x63\xcf\x8c\x7b\xaf\x77\xef\x01\xbb\xbc\x1c\xd8\x7e\xb7\x6b\x3c\xf4\xf3\xc1\x87\xf8\x85\xd7\xd3\x57\x7e\x67\xe7\xc5\x3f\x1a\xad\xe5\x1b\xae\xeb\xc3\xc0\xe8\xcc\x37\x3b\xb7\xfd\x36\x74\x8c\xdb\x7f\xd6\x93\xbe\x42\x6c\x7c\x37\x39\x7e\x64\xa4\xce\x8b\x8a\x97\x7f\xdc\x75\xf0\x9d\xa1\x66\x82\xb5\xb5\x88\x8d\x3f\x4c\x94\xd8\xfe\x05\xdd\x2a\xad\x86\xb2\xf1\xc7\x89\x73\x73\x0b\x01\x0d\x9b\x6c\xfc\x93\x80\x3c\x55\x7c\x3a\x80\xa0\x59\xba\x49\x46\xa3\x94\xa4\x8e\x32\x4f\x22\xe3\xab\x7f\x43\x45\xba\x1e\x9d\xd6\x3a\x28\xbf\x1c\xd4\x7c\x59\x1b\x34\xd3\xe2\xeb\x1b\x1a\xc8\xaf\x2f\x69\x84\x9a\x21\xa7\xe4\xee\xf9\xf4\x22\x3b\x9f\x36\x9b\x38\x1d\x6f\x9a\xd3\x09\x5d\x8e\xe3\xd1\x94\x64\xad\x69\xcb\x9b\x6c\x79\xcd\x5c\xa7\x95\xfa\xd7\xd2\xe4\xf3\x37\x42\xda\xcf\xf3\x6a\x29\x27\x73\x37\x52\xdc\xcf\xf3\x65\xcd\x81\xac\x78\x00\xe4\x63\x85\xa0\x7f\x23\x92\x5f\x42\x45\x44\x6f\xd0\x1b\x21\x71\x6e\x71\x69\x9a\xfd\x01\xfe\x42\xd1\x4d\x9d\xd3\xc6\x54\x2a\xa0\x37\xb2\xbe\xf7\x68\x26\xbc\x37\xf0\xf8\x6e\x42\xdf\xf3\x09\xfe\x8e\xae\xd1\x7b\x0c\x7f\xa2\xee\xf9\x77\xda\x9c\xfa\xa7\x73\x8c\x7e\xa0\xdf\x8d\xff\xd4\x6c\x4e\x70\x18\x9d\xde\xe4\x79\x8a\x6e\xe0\x07\x78\x3f\xfe\x61\x82\x4f\xe2\x3c\x47\x7f\xa9\x88\xcc\x37\x78\xcb\x5b\xf1\x07\x41\xcc\x1f\x90\x6c\xb9\x8f\x31\xfc\x03\x7d\x18\xdf\x4d\x84\xef\x61\x94\x0d\x4e\xfe\xa0\xaf\x90\x0b\xbe\xd7\xe9\x77\x06\xed\x5e\x67\x80\xa1\x2c\xf7\xca\xf2\x21\x86\xc6\x1f\x9c\x3b\xfd\x02\xb6\xed\xf2\x97\x87\xf3\x7c\x83\x78\xdd\x42\x66\xe4\x65\x3b\x66\xdb\x7f\x30\x72\x1d\x33\xc8\xf8\x9e\xe5\x9b\x45\x5a\x01\x84\x0f\xc3\x73\x5f\x10\x8a\x96\x14\xb5\xaa\x23\xac\x87\xb6\x3a\x3d\xda\xba\xca\x07\x5a\xc2\xdd\xdd\xdc\xd2\xfb\xf2\xd4\x4e\xf2\xba\x0c\x83\x2b\xb1\xe8\xc6\x1f\x26\x34\xdb\x56\xf0\xb7\xe5\x0e\x54\xd5\x3f\x80\xa5\x59\xbb\x85\x81\xab\x72\x37\x66\x89\x96\x58\xc6\x1f\x26\x10\xd2\xb9\xf2\xb9\x0a\x39\x23\x0c\x2f\xa3\x62\xd5\xef\x9d\xab\x8b\x4d\x89\x12\xd3\x03\x3c\x6a\x85\x44\xe0\x90\xec\xbf\x57\xaa\xd7\xa2\xc9\x1f\x27\x54\xa6\x8d\x1a\xff\x34\xa1\x61\xd1\x8d\x64\x0b\xa1\x6d\xa3\x3f\xa3\x9b\x1d\xc3\xd5\xcd\xd2\xc2\xf0\x67\xf4\x60\xd8\xbe\x6e\x6e\x8b\xa2\x03\x4f\x9a\x16\xb1\x9b\xd8\xc2\x18\xf4\x8c\xdf\xed\xcd\x78\xb1\xdc\x7f\x94\x83\xe6\x01\xc3\x63\x77\xa2\x27\x51\xe0\x84\xee\x4e\xfa\x81\x77\xc4\xb3\x6f\xa2\xcc\xeb\xd5\xa4\xea\x57\x8f\xfa\xe6\x21\x84\xc8\xa1\xa1\xd8\x48\xa6\x98\x81\xc8\xc4\xc1\xd9\x03\x27\xd5\xc5\xd7\x7f\x4f\x95\xa7\x66\x95\xba\x6d\x6d\xbf\xae\x1f\x6f\x90\xaa\xab\xb3\x5b\x17\x2e\x9a\xf0\x9b\xdf\xbc\xbc\xbc\x74\xc5\xdb\x02\x50\xa3\xfe\xf5\x77\x07\x5f\x57\xec\xa5\x78\xbf\xd7\x39\xfa\xfe\x60\xef\x7d\xc9\xbd\xa0\x7e\x8f\xff\xad\x98\x38\xf8\x5e\xd8\xcf\x0f\x6c\xed\xba\xe7\x76\x67\xd8\x78\x8e\x4f\xc5\x6b\xf3\x5c\x7b\xcc\x35\x34\x5d\xf9\x6f\x7f\x6b\x77\xc2\x8c\x97\xf8\x80\xfd\x7c\xf0\x53\xbf\xfd\xad\xfd\x49\xda\x79\xed\x9b\xc3\xaf\x55\xe6\xc6\x78\x8d\x4f\xca\x1f\xf7\x5e\xdb\xe2\x93\x47\xb4\x4b\xfa\xe0\x11\x55\xc9\x55\x2a\x77\x6c\x20\x3d\x97\x84\x43\x97\xa9\xb8\xd0\x1b\x48\x0a\xc5\x85\x3e\x98\xd0\x2f\x85\x6e\xaa\xd0\xdf\x0f\xea\xa2\x52\xe7\x94\x3a\xa5\xd4\x26\x95\xd6\x68\xea\x8b\x12\x2d\x5e\x6a\x84\x85\x2e\x58\xe3\x66\xaf\xf9\x69\x54\x71\x28\x2c\x32\xb6\x76\x44\xbe\xca\x40\x3b\x74\x89\xe3\x42\x4b\x78\xc2\x20\xeb\x5e\xf6\x78\x49\x1b\xa8\x11\x9a\x9d\xcc\xf3\x46\x58\x74\x92\x4b\x16\x4b\xa5\xad\x58\x6f\x0a\x4f\x3a\xc3\xa9\x4e\x5c\x2a\xc3\xbb\x2c\x79\x53\xf8\x66\x81\xe1\xa7\x05\x62\x59\x95\xc5\xfa\x5a\x2d\x01\xe3\x47\xaf\x23\x2d\xf7\x46\xfe\xdd\xf3\xf9\xc5\xf0\x1c\xa3\x88\x86\xe3\x85\x50\x10\x26\x78\x84\x62\x64\xc2\x4e\xa4\x62\xba\xaa\x65\x1b\x71\xf6\x44\xa6\x02\xa8\xbe\xf4\x81\x7e\xf9\xcd\x0f\x64\x09\xd2\x67\x8d\x4c\x41\x38\xac\x91\x14\xf8\x9c\x93\x8d\x89\x86\x5c\xcd\x97\xca\x4b\x0f\x78\xa3\xba\xda\xfd\x35\x09\xa2\x59\xbc\x3a\x90\xf9\xb2\xcc\xdf\x23\xf1\x4f\x2d\x6d\x0f\x2c\x7d\x93\x47\x96\x45\x18\x58\xf8\xc6\x02\xd4\x6c\x46\xcd\x10\x17\x16\x23\xd4\xee\xe1\xd2\xdb\xf7\x38\xc0\x49\x89\x20\xbc\x9b\x38\x6b\x93\xb2\xe4\xe5\x1d\x8b\xb2\x3c\xb7\x2c\x23\x6d\x96\xd7\x39\x12\x11\x39\x38\xe0\x58\xad\xfd\xd0\x78\xdf\xf2\x9c\x39\x37\x59\x6d\xcc\xbc\x48\x8a\xbd\x07\x27\x01\xa7\x22\xde\xed\x34\x61\x7f\xdb\x84\x09\x9b\x19\x0e\x69\x95\x6c\x3a\x5e\xf7\x98\x67\xf3\x4e\xb2\xe2\xc2\xee\xd1\xf5\xa4\xdd\x43\x18\x2c\x8e\xc6\x54\x85\x8e\x9c\x8e\x3c\x47\xfa\x92\xc6\xa3\xa7\x2d\x89\x8a\x1b\x4f\x5b\x7c\x62\xdd\x58\x94\xb2\x12\x35\x29\xcf\x85\xd9\x33\xe3\xb2\x66\x06\x4c\x83\x95\x07\x02\x6e\x47\xc7\x59\x7b\xc4\xeb\x7a\xb0\x17\xca\x5b\x6e\xea\x6e\x8d\x5b\xb5\x84\x7e\xf4\xba\x3e\xae\xa4\x3b\xe0\x57\x5f\x89\xcf\x7e\xf8\x6c\x86\x67\x4b\x5a\xe0\x62\xd5\x0d\x08\xea\xe0\x65\xe2\xfa\xf8\xe8\xda\x28\xee\xc0\xb6\x55\xb0\x74\x30\x8a\x49\x88\x91\x5a\xc8\x8e\xd5\x14\x42\xba\x93\x66\x71\xc2\x68\xb4\x1f\xe7\x5d\x02\x2d\x75\x8f\x00\x49\x75\xfa\x07\x73\x51\x09\x57\xe1\x2a\x40\xa8\x8f\x85\x78\xad\x9e\x7a\x2b\x10\x53\xea\xd2\xa3\x37\x4a\x8f\x7f\x36\x0e\x27\x79\xce\x76\xd3\xac\xc4\x63\xfe\xfc\xa4\x92\xe8\x48\x5a\xf5\xc4\xc4\xe9\x5c\x55\x5e\xf7\x78\x8c\xdb\x89\x08\x12\x03\x7d\xee\x68\xfa\xa6\x09\x47\xe6\x2d\x06\x86\xda\x5d\x8c\xac\xf2\x8e\x48\x2d\xde\xee\x92\x76\x57\x19\x18\x85\xf1\x50\x7c\xec\xb9\xa6\x3f\x1d\x5d\xd7\xf1\x31\xea\xa8\x46\x88\x48\xb5\x06\x5f\x16\x03\x8c\xc6\x13\x47\x78\xb2\x09\x02\x59\xb4\xee\xa0\x73\x5b\xa8\x75\x8a\x8a\x64\xb3\x95\x60\x3c\xfe\x80\x78\xfe\x40\x99\x3e\xcb\xb6\x1e\x09\xe1\xaf\x19\x18\xe1\x08\x27\x2c\x88\xe5\x90\xf0\x32\x63\x30\x24\x67\x2c\x3f\xf0\x5c\x00\x6b\x73\x30\xfc\x03\x83\x21\x5d\xea\xaa\xa3\x71\xd8\xcd\xee\xf7\x0c\xc7\xb3\x43\xde\x8d\xd6\x0a\xdc\x58\xab\xf0\xa3\xb3\x20\xa0\x0d\xf7\x24\x3e\x0d\xa3\xf1\xc4\xb6\xa5\x16\xe6\xe1\x71\x3c\x31\x75\xf1\x80\x36\xbc\xad\x19\x9d\x18\x98\x5d\x3a\xe2\x92\xb7\xdf\xab\xaf\xf8\x26\x15\x33\x15\x1b\x93\xb4\xd3\xed\xe7\x02\x30\x99\xdd\xee\xf2\x6e\x37\xdc\x13\xd1\x73\xab\xda\x59\x87\x97\x99\xdd\x8d\x77\xbb\x1b\x57\xbb\xfb\xef\xdb\x53\xd9\xa4\x83\xdd\xed\x3d\x0b\xec\x68\xa7\xbb\x1a\x7f\x51\x2f\x45\xe9\xe2\xc8\xd7\xa2\xb9\x56\xcd\x6e\xd5\x38\x41\xfe\xfe\x95\xd9\xab\x61\x37\xb5\x6d\xd6\x29\x6a\x8b\x0c\x61\x1d\x25\x53\x0e\x34\x9a\xf1\x40\xc7\xa8\x78\x2a\x46\xa5\xad\x32\x84\x75\xdb\xf8\x24\xe4\xac\x54\xa4\x4d\x6a\x88\xe0\x8e\xca\x71\xb1\x91\x92\x88\x09\x78\xcb\xa2\xaf\x49\xbc\xda\xd7\x38\x21\x81\x10\xe6\xb0\x90\x98\xc7\xb3\x3a\x26\xc6\xc7\x61\xc4\xff\x21\x52\x8c\x5c\xef\x7b\x33\xaf\xe8\xfa\x80\xab\xf7\x7d\xe9\xea\xbd\x52\x09\x8b\xa7\x68\x21\x2c\x0e\xf7\x22\xf3\x70\x84\x56\xb0\xae\x77\x12\x16\xce\xd9\xf2\x58\xf5\x2e\xcf\x67\x54\x06\x98\xd8\x76\x8a\xee\xb0\x40\x85\x97\x38\x50\x33\x94\xd1\x0d\x5a\x14\x31\xe6\xe7\xd9\xe5\xe3\xf9\x63\xb3\x89\x97\x28\x81\x47\xb8\x1f\xad\xd0\x42\xe4\x3e\xc6\x84\xff\x55\xb9\xa7\x84\x63\x38\x55\xe7\x6e\x0b\x8d\x0b\x3e\x3b\x6f\xa0\x90\xce\xab\xbe\xe5\x66\x5d\x01\x9a\xc3\x0a\xc6\xa1\x72\x72\x7a\x9c\xf0\xd5\x45\x42\xed\x72\xae\xfd\x5e\x55\x63\xe8\x23\x24\x6a\xc9\xec\x1e\x97\xa9\x63\xb0\x6e\x9b\xf0\x7f\xc5\x01\x97\x4a\x66\x55\x66\xc1\x95\x47\x58\x62\x69\xd5\x48\x27\xc7\xb7\x83\xc2\xb7\x8d\xe9\x78\xe2\x28\x0f\x5d\x4e\xf4\x1a\xb1\x6d\x7b\x67\x63\xaf\x28\x44\x1e\xb4\x5c\x7c\xe1\x1a\x3b\x04\x05\x79\xae\x29\x7a\x8c\x8d\x25\x74\xc4\xd3\x37\x18\xc5\xf5\x99\xee\xf3\xdc\x25\xcf\xda\x4b\xe2\xd4\xaf\xdc\x4b\x47\x24\x19\xcd\xf4\xae\x8d\x96\xc9\xcc\x95\x44\xa4\xe1\x16\xf5\xaa\xc1\x1c\x92\xbe\x10\x05\x7b\xcf\x4d\x55\xd8\xee\x2a\xb0\xc8\x7e\x21\x19\x29\x75\xcf\xad\x8a\x48\x83\x2e\x46\x72\x43\x14\xbe\x50\x15\xd1\x5d\x5a\xfb\x32\x99\xeb\x40\xfe\x08\xa9\xab\xae\x3e\xd3\x6c\x6b\x22\xaa\xc8\x48\x01\xf5\x0a\x64\xea\xea\xb3\x76\xc1\xbc\x09\x9b\x4d\xb5\xb6\x1a\x2c\xcf\x93\x4b\xaa\xf3\x3f\x8f\x90\xfe\x8e\xda\x33\x21\xf2\x30\x26\x21\x72\x41\x02\x0a\x49\x04\xfb\xd2\x5d\x21\x1b\xb1\x71\x32\x21\xe3\x04\xf8\x5f\xae\xf2\x97\x39\xdd\x62\xe7\xa5\x9e\x20\x1a\x4b\xad\x15\xa2\x02\x98\x28\x32\xb2\xbf\x45\x46\x8e\x3c\xb1\xba\x25\x2c\xb1\x24\xe5\x83\x2e\x19\x74\x61\xd0\x27\x83\x7e\x29\xde\xf5\x7e\xab\xc4\xa5\xe0\x74\xc7\x13\x11\x97\x65\x2e\x4f\x11\x72\xd9\xa0\x1a\xff\xb7\x76\xa9\x1e\xf2\xf7\x56\xa8\x70\x0a\xe3\x01\x4c\xdd\x10\x2c\xc2\x76\x16\xa5\xee\x97\x5a\x4c\x3a\x5c\xf3\xd9\x39\xee\x77\xfa\xa2\xce\x81\x03\x4d\xd9\x53\xde\x3b\x33\x46\x6d\x43\x1b\x8d\x54\x6f\x50\xe3\x46\xdd\x26\xdd\x94\x3d\x4f\xcd\x9e\x1f\xf2\x59\x97\x29\x73\x34\x6e\xe6\xa1\xbd\x7a\xa2\x91\x6e\xe5\xf8\x24\x34\x28\x33\x12\x43\x44\x93\x96\x27\x0e\x4c\xf6\xd9\xbd\xf0\x8d\xd3\x41\xaa\x28\x82\x18\x55\x4d\x87\x18\xa2\x0b\x57\x3c\x94\x34\x45\xbc\x12\x75\xcf\xa3\x56\x0b\x73\x3d\x42\xa8\x7a\xb6\x9d\x8d\xa3\x89\x19\x42\x1c\xf1\xf6\xc8\xeb\x96\xb7\x33\x31\x85\xe5\x47\x23\xe8\x4b\xf2\x5a\xd2\x8f\xdf\x23\xd3\x7a\x07\x64\xda\x55\xb0\xae\x0a\xb4\x07\x5c\xfb\x7f\x8f\xcc\xf0\x5b\xa5\x59\x2e\x00\x94\x80\xd6\x7b\xc9\x60\x8a\x83\x30\x86\x8a\xd4\x7e\x0d\x49\xa7\x0a\x37\x1e\x86\x4d\x48\xf6\x8a\x90\x10\xcf\x6b\x7d\xfd\x0f\xc5\x30\x45\xec\xa1\x0e\x29\x61\x47\x62\xc0\x48\xc7\x38\x85\x28\xa9\x8c\x0e\x33\x61\x18\x0a\xa6\x99\x69\xa6\x29\x99\xe3\x0e\x0c\x47\x5d\x5e\xf8\xe3\x33\xdb\x3e\x30\xad\x66\x00\x68\x65\x7a\xbf\x12\x33\x71\x50\xe8\xad\xcc\xbb\x38\x28\xaa\x4e\x7d\x9b\x74\xda\xe5\xd4\xd7\x25\xa0\xff\xb7\x74\xa4\xae\x0f\xff\x96\xe6\x7b\x5f\x69\xfe\x73\xa5\x5d\xdd\xfc\xbe\x82\x29\xea\x68\x8e\xda\xee\xeb\x90\x6c\x91\xbc\x63\x3c\x91\x47\xbd\x46\x1f\xf7\x96\x77\x68\xdb\x1b\x45\xc1\x2b\xeb\x56\xba\x6f\xd5\xc5\x6a\xa4\xc8\x08\x62\x10\x99\x72\x54\xd8\x43\x38\x47\x19\xad\xa4\x79\xc9\xa0\xcc\x72\xad\x69\xd0\xa6\x7a\x10\x58\x1e\x17\x87\x9c\xb1\x83\x80\x1e\x0b\x04\x42\x19\x4c\x69\x8a\x96\xad\x10\xc3\xdc\x70\x63\x99\x62\x58\x50\xf7\x7c\x71\x31\x3d\x5f\x34\x9b\x78\x3e\x5e\x4c\xa8\x91\x61\x5c\xec\x12\x6d\xf6\x0a\x9b\x0b\x4c\xc4\xf1\x59\xd8\x5c\x14\xc1\x7f\x73\x35\x0b\xda\x0f\x4b\x51\x3a\x89\x2c\x51\xf1\x86\x52\x99\x67\xbc\xfe\x6f\x16\x16\x7d\x8c\x0e\xad\xad\x34\x5e\xed\xac\xac\x43\x51\x39\xbf\x83\xfa\xf5\x9f\x8b\xe1\xa4\x5b\x5a\xc0\xef\x69\x8d\xa9\xd7\x51\x6c\x54\x84\x6c\x6f\xe8\xd8\x03\x1f\xda\x93\x8a\x34\x6b\x2e\xa0\x8d\x78\x10\x15\x98\xaa\x79\xde\xa8\xbb\xaf\x50\xed\x0e\xb0\xd8\x43\x91\x44\x86\x34\xa1\xb0\x60\x63\x1d\x63\x59\xfd\x0d\x0a\x08\xa2\x2a\x6b\x48\xcd\x40\x22\xfc\xed\x10\xbd\x7e\x8d\xf8\x2a\x03\xfa\x91\x6a\x95\xac\x4a\xf8\xee\x89\x17\x8e\xc0\x4d\x1a\xf2\xf3\xb7\x41\xc6\x2c\x78\x8a\xe2\x87\x7d\xaf\x0e\x71\x40\xcd\x1f\x10\xa6\xc0\x4f\xe1\x4a\x40\xb1\x17\xb2\xb5\xf8\xca\x71\xd3\x94\x64\x58\x5d\x73\x65\x21\x5e\xa1\x11\x37\x9e\xc5\x6f\xae\xdf\xcb\xfd\xd0\xa0\x34\xc4\x45\x93\x8c\x1b\x24\x94\xdc\xa0\x4b\xba\x5d\x63\xed\xfc\x56\x0e\x5f\xe6\x47\xa9\x12\xd2\x43\x69\x35\x15\x4a\xad\x1e\x05\xe1\x7c\xe1\x64\xf1\x7f\xba\x7e\xff\x0e\xe1\x3c\xf7\x1a\x94\xee\x75\x86\xdf\x54\x91\x28\x66\x07\xf6\x2b\x17\xf2\x8c\xd9\x5b\xfe\x66\xcd\x81\x70\x29\x88\xc5\x65\xae\x01\x2b\xda\xac\x6e\x85\xf3\x87\x46\xc7\xce\xf3\x22\x6f\x7e\x82\x47\x99\x39\xac\x08\xab\xd4\x29\x52\x50\xaf\x7a\x6b\xee\x2e\xb3\x63\x48\x30\x0a\x45\xf5\x43\x12\xae\x42\x09\x6d\x06\xe1\xce\x08\x9c\x08\x51\x2e\xcc\x73\x99\xd5\x3d\x84\x08\x18\xea\xf6\x30\x36\x01\x5d\x7b\xa4\xdb\x2b\x8f\x7d\xfa\x07\x4f\x46\xaa\x55\x43\x48\xa3\x12\x82\x21\xa6\x91\x5e\x94\x27\x95\x09\x6a\x5a\x56\x83\x5a\x6f\xa2\xfb\x60\x19\xce\x44\xb1\x65\xdb\x12\x05\x1f\x45\x07\xd0\xd3\xa5\x88\x13\x1b\x91\x41\x27\x25\x2e\x32\x1b\x85\xc6\x0d\x52\xad\x5a\x8e\x69\x89\x8c\x3f\x38\x72\x98\x62\x98\x6a\xb5\x03\xbb\x05\x4f\xb7\x61\x34\x23\x0c\x75\x7a\x52\x6b\xed\xf4\x48\xa7\x57\xae\xf1\xc1\x73\x79\xac\x06\x5f\x16\x18\x22\x25\x3e\xe9\x22\x48\xdf\x28\x51\x4f\xa4\x01\xda\xf7\x9c\x17\x36\xd0\xd3\x80\xcf\x98\x38\xcc\x41\x01\xc4\xfa\xb4\x65\x47\x7b\x28\x05\xbd\x86\x29\xe8\xe5\xb9\x38\xa1\x2a\x53\xa8\xca\x33\x2b\x9d\xdb\x51\x7e\xa6\x88\x29\xa9\xe4\xf6\x11\x40\x61\x22\x38\x50\xa6\x16\x3a\xe7\xda\x40\xf5\x45\x43\x1f\x68\x68\x65\xa0\xa1\x95\x01\xed\xc2\xac\x56\x56\x35\xa5\xaa\x37\x38\x72\xa2\xa3\x41\x82\x6b\x10\xf6\x63\x7a\xf6\xcf\x7f\x4d\x5f\x14\x82\x34\x1a\xff\xf3\x29\x9a\xbc\xc0\x67\x27\x32\x2b\x80\x5e\xe0\xdd\x81\x00\x04\x0e\x75\xb2\x80\xaf\x41\x1c\x97\xa9\x2d\x90\x65\x35\x65\xdc\xec\x4a\xa5\x3f\x1d\x7b\x13\x05\x16\x5d\x1e\x63\x5a\x5b\x25\x04\x57\x13\xa5\x0d\x9e\xcb\x32\x3b\x05\x70\xd3\x70\xe7\x6c\xc7\xc3\xc8\x7a\x1b\xac\x2d\xa8\x61\x61\xfb\x94\x8a\xed\x68\x89\x5a\xe3\x73\x0d\x93\x9d\x6b\x18\x78\x77\x7c\x04\x8d\xa4\x2f\x77\x2c\xbb\x8a\xb2\xe4\x51\x69\xdf\x20\x1a\x81\xa1\x34\x9b\x71\x1d\xd0\xb9\xdf\x0d\xcd\x32\x82\x26\x23\x67\xc6\xe6\x3b\xaf\x4b\x7e\xeb\x12\x05\x6c\x15\x09\xb9\x9b\x53\xba\x21\xf1\x3a\x43\xe8\x0c\x49\x67\x08\x5d\x8f\x74\xc5\x71\xe7\xe0\x19\x48\x8a\x43\xc1\x27\x64\x8a\xe8\xbf\x25\x19\x04\x2a\x49\xf6\x34\x4e\x17\x86\xee\xd5\x40\x81\x6d\xf7\x3d\x97\x9a\x51\xcf\x01\x7a\x27\x68\xb3\xf3\xf6\xe5\x3f\xde\xfc\xf0\xf2\xfb\x3f\x5f\x61\x6c\xdb\x81\xc8\x87\x2d\xa1\x23\x79\xbb\xb3\x85\x05\x4f\xa2\xbe\x1a\x31\x42\x02\x51\x5d\x78\xc2\x4f\x95\x5d\x0e\x3b\x43\xb7\xe7\xf7\xba\x4e\xcf\xef\xf8\x5d\xaf\xdb\x1b\x15\xe9\xae\x19\x6e\x8a\xeb\xef\xdf\xf9\x24\x44\xac\xe5\x35\x63\xfe\x2f\x7e\x11\x23\xd6\xf4\xb0\xc9\xad\x61\xe8\x93\xa1\xa4\x29\xc7\x25\x83\x22\x25\x78\x1a\x46\xd5\xde\x86\xb6\xed\x9d\x85\xc8\xc5\x97\x66\x27\xf8\x63\xc4\xd0\x3a\x33\x03\x55\x4b\x71\xa4\x8c\x36\x33\x6c\xdb\x6e\x83\x66\xa3\xec\xc2\x1d\xb5\x18\x6a\x65\xb8\xcc\xda\x9d\x35\x8b\xb1\x46\xd9\x8b\x8c\xb7\x9c\x64\x3b\x92\xc6\xb1\x44\xfe\x66\xab\xb3\xa0\xbe\xd5\xc2\x7c\x62\x34\x9b\x3f\x57\x27\xc2\x99\x39\xdd\x8b\x06\x8a\xbc\xe2\x67\xc8\x6b\x31\x8c\xcf\xfc\xdd\x96\x1d\xc1\x6e\x2b\x56\x54\xbb\x90\xb8\x54\x03\xa6\xb7\xf5\x22\x64\x28\xbf\xfe\x42\xe7\x7f\x47\x66\x7e\x76\xef\xac\x5d\x9d\x53\x95\x58\xdd\xab\xcb\xb0\x5f\x23\xed\xe9\x6f\x2f\x7f\xae\x75\xdd\x42\xec\xf2\xf2\x92\xba\x78\xd4\xf6\x5a\xc6\x92\x2e\x97\x5b\xd3\xe9\xaa\x96\x7d\xff\xfe\x3b\xff\x0a\x93\xf6\xde\x60\x7c\x35\xc9\x97\x4e\x88\xbf\xdb\xa6\x03\x7b\x41\x8d\x47\x33\x44\xb5\x83\x3f\x3c\xce\x70\xe5\xe0\xbb\xa6\xc5\x04\x85\x8d\xa2\x0d\x2b\xaf\x5c\x11\xe2\xa7\x92\x34\xd5\xe8\xba\x64\x28\x4e\xd5\x8f\x65\xeb\xdf\x1f\x5d\x99\x6e\x9f\x30\x34\xf4\x4c\x4b\xf4\xd0\x23\x43\x41\x81\xea\xb2\xe0\xd7\xad\xe4\xdb\x74\xa7\xe2\xc5\xe3\x3a\xde\xa5\x8b\x65\xea\xb0\x08\x62\xea\x42\x40\x5d\x48\xf7\x2d\x35\x1b\xea\x9e\x07\x17\xe9\x39\xde\x5c\xa0\x84\x86\x86\x69\x2e\x68\x36\x27\x18\x8f\x50\x4c\xe3\x17\x28\xa2\x9b\xb3\x04\xbf\x88\x9a\x1e\x6c\x68\x82\x49\xdc\xa4\xc9\xa5\x3b\x42\x11\x4d\xce\x36\xf8\x45\x44\x0a\xd8\xf2\x0d\x15\xc4\x6c\xe4\x9d\xb9\x64\xf3\xa2\xdc\xbe\xf1\xae\x86\x50\x97\x86\xbf\xa6\xb7\xe1\x6a\xb3\x3c\x66\xd6\x52\x56\xc0\x6e\x83\x86\xa8\xe3\x0f\x3b\xc3\x5e\xdf\x1f\x76\xa1\x8b\xf3\xdc\x6f\xd0\x50\xf5\x73\x5b\x4e\x27\xaf\xb0\xd6\x1e\xd0\x64\x10\xd1\x66\x06\x21\xed\x75\xbb\xed\xae\x9d\x40\xac\xae\xa2\x22\x93\x57\x1e\xbe\x88\x9b\x08\xa9\x07\x2e\x2f\x2f\xbd\x1e\x7e\x11\x37\xc3\x17\xaa\x28\x92\x45\xd2\xa5\xf3\xd2\xad\xec\xc9\x42\x96\x1e\x3e\xc3\x9f\xa1\x9c\xdc\x65\x7c\xe7\xb9\x75\x04\xc1\x20\xf6\xc5\xd6\xf3\xdc\xab\xdd\x61\x7e\x9e\xba\x67\x7c\x6c\x4d\x04\xa3\xab\xe3\x10\x75\x99\xbd\x8f\x56\x56\xeb\x07\x6a\x34\xfc\x4c\x73\xa9\xdd\x56\x1f\x27\x9d\x3b\x1f\x4a\xc3\xbb\x88\x08\x5a\x5a\x47\x02\x8f\x25\x5f\x36\x28\x81\x66\xec\x05\x05\x3a\xba\xde\x7c\xd6\xf2\xfa\x0d\xda\x90\x0b\x3c\x8c\x16\x48\x16\x61\x63\xa5\x55\x18\xe0\x6e\xff\x05\xe1\x56\xec\x5c\xa0\x3f\xb6\x34\x21\x23\x48\xf2\xea\x56\x8c\x5a\xfc\x2f\x7e\x21\x09\xed\xd5\x99\xbf\xbf\x9e\x0c\x5a\xf4\x8c\x2c\x8a\x75\xdd\x2c\x9a\xbb\xc7\xf8\xb4\x9e\x29\x9a\x29\x90\x3a\x5b\x86\x44\xa6\xb6\x39\x49\xe4\x45\xcb\x23\x28\x6b\x25\xf8\x4c\xe0\x87\x37\x63\xd1\x99\x6d\x0d\xd1\xf4\x8f\xe5\x27\xde\x9f\xdb\x2c\xd9\x44\xd3\x7a\x96\xe4\x8e\x4a\x5e\x44\x0a\x74\x4f\x09\xce\x69\xae\x26\xbf\x2e\x85\xf0\xd1\x70\x3e\x9d\x1f\x44\x1b\x24\xfb\x5d\x6d\x8f\x6c\xcb\xe3\xf7\x5e\x47\x9e\xbe\xab\x10\xbd\x29\xd5\xd9\x61\x44\x4c\x9f\xd4\x21\x16\x95\x94\x7c\x33\x1a\x39\x52\x00\x84\x35\x9d\xc1\x8a\xce\x0c\xcd\xe2\x9e\x5a\xf2\x9e\x45\x69\x8c\x04\xf0\x23\x5a\x61\x0c\x8f\xd4\xe2\x2f\x73\xcd\x62\x37\x31\x93\x89\xaf\x5c\xcc\x55\x8a\x18\x34\x3c\x99\xfe\x2a\xd5\xa6\x44\x03\x90\xa4\x40\xde\xd2\xe9\x27\x64\x52\x28\x94\xd1\xc7\x51\x26\xda\x89\x30\x59\xa0\x0c\xda\x18\x9b\xf9\x0d\x5c\x51\x65\xa7\x4d\x29\x8d\xf3\xbc\xd3\x15\x51\x53\x5c\xf3\x1b\x0c\xa8\xc8\x4b\x91\x99\x4f\xfb\x18\xe7\xb9\xe7\x8b\x68\x01\xad\xdd\xbd\x0b\xde\x15\x21\xfa\x9d\x81\x7c\x3f\x7d\x08\x45\xf2\x3e\xf3\x5d\x0f\xe3\xa7\x69\x90\xb2\xd3\x5e\x8f\x88\xbf\xc3\x01\x89\xa8\x0f\x21\xed\x0c\x4f\x6e\x13\x16\x7c\x3e\x11\xc5\xfd\xa1\xbc\xed\x79\x1e\x89\xe8\x00\x42\xda\xed\xaa\xfb\x33\x36\x0f\x36\xcb\x8c\xc8\x2f\x37\xb3\xad\x66\x85\x81\xc8\x30\x2e\x83\x86\x7c\xac\x32\x67\x6e\xd4\x98\x9c\x2f\x2f\xa6\xe7\xcb\x66\x13\x4b\x0c\x81\x8d\xd9\xa8\x25\xc6\x17\x9d\x41\x9e\x07\x97\xa1\xd1\x1f\xbd\x13\x74\x0e\x46\xb4\x81\x08\x6f\xb7\xc5\x67\x85\xba\x3b\x43\xd6\xa9\x1b\x7b\x16\xce\x73\x7e\xed\xde\x8a\xcb\x19\xb2\x9a\xee\x17\xcf\xc2\xf8\x69\x56\x33\x8d\xbb\x5c\xfa\xc2\x13\x5a\x4c\x52\x49\x77\x55\x89\xcf\x9f\xd9\x36\xba\x1f\x6d\x4c\x42\xb5\x92\x9e\x07\xef\xd5\xd1\x4e\x82\xb7\x98\xe8\x55\xd6\xa0\x31\x4a\x30\x1e\x05\x48\x06\x27\x8b\xa4\x74\x90\xc0\x0c\x13\x81\x4d\x53\xd8\xb2\x6f\x05\x50\xa9\x48\x87\x8d\xd6\x98\x58\x85\xee\x02\x6f\xdf\xbc\x53\x57\xef\x82\x77\xf0\xee\xea\xbb\x97\x9f\xde\xfc\x70\x75\xf3\xe6\xdd\xeb\x37\xef\xde\x7c\xfa\x0b\x7c\x78\x7f\xfd\xa6\x5a\x72\xf5\xe1\xfa\xcd\xf7\xef\xdf\x81\x96\xfe\x21\x4c\xdf\x44\x19\xbb\x63\x09\x08\x98\x5d\x08\xd3\xeb\x60\xce\x74\x19\xff\xd4\xf5\xcb\xd7\xbc\x82\x4f\x57\xdf\x5d\x7d\x14\x5f\xac\x14\x18\x09\x3c\xcb\x3c\x98\xba\x4e\xd3\x8d\x19\x1e\xa8\x7b\x7e\xa3\x17\xff\xc3\xf9\x03\x9f\x66\xb4\x86\x5b\x7a\x33\x7e\x98\x60\x91\xd6\x67\x06\xb7\xd8\xb6\xe7\xfc\x2f\x4c\xf9\x3d\x8c\x4f\x8c\x2d\x4a\x57\xb0\xaa\xc4\x32\xcd\xa0\xb4\x1d\xa9\x51\x85\x19\xae\x8d\xa7\x96\x56\x20\x28\x92\x60\x2a\x0b\x9b\x42\x80\xde\xf7\x42\x97\x51\xcb\x5d\xd2\xef\xee\xc4\x25\xfb\xc7\x32\x7e\x1b\xa4\x53\xb7\xe7\x49\x0d\x39\x29\x74\x06\x1f\x5a\x5d\x93\xb5\x8b\x4a\xbf\x2a\x88\x49\x77\x56\x3d\x6f\x7b\x5f\xd1\x37\x6a\xa8\xb4\xb6\x47\x96\x50\xe9\xb6\x1d\x56\x09\x74\xe1\xa3\xea\xd7\x65\xc1\x3e\xd6\xbb\x62\xae\x09\x43\x03\xd7\xe4\xfd\x03\x97\x0c\x64\x95\xcf\x93\x7e\x8c\x2a\xb9\x6a\x5d\xc3\xb3\x59\x83\xb2\x5d\xae\xf2\x0c\x13\xf7\xa0\x64\xb8\x86\xd8\x6e\x7c\xce\x58\xf1\x07\x94\x3e\x01\x08\xc2\xf0\x05\xdd\x85\x6d\xde\xd6\x76\xf8\x79\x82\x53\xd1\x82\xdd\x5d\x46\xf6\xbe\x52\xed\xf3\xf3\xd4\xc9\xb2\xfa\x9d\x3d\x4b\x5a\x5f\xa9\xff\x19\x42\x8c\xe7\xf9\x15\xb5\x4d\x99\x55\x4a\x6a\xd0\x10\xa7\x05\x45\x1b\xca\x1b\x4a\x89\xf3\x3c\x9f\x78\x5e\x79\xd8\xe4\x1f\x4b\xe2\x5c\x7e\xb5\x7d\xf0\xab\x6f\xa2\xda\x6f\xbe\x89\xca\x2f\xb6\x89\xe7\xb5\x8d\x2f\xfe\xd6\x23\x52\xe1\x1e\x22\xf2\x2b\x17\x49\x3c\x84\x47\xa0\xe7\x38\x59\xfc\x3a\xfc\xc2\x66\xb0\x31\xac\x4d\xb0\xa4\x63\x17\x8a\xff\x27\x30\xd5\x12\x86\x7e\x9c\x88\x64\x93\x49\xc2\xa6\xd9\x69\x18\xdd\xc7\xd3\x80\xb7\xa5\x61\xc1\xfc\x20\xc0\x6c\xcb\x83\x88\x66\xe7\xcd\x66\x72\xd1\x3b\xc7\x51\x93\xb2\x17\xcb\x71\x32\x01\xfe\x0f\x8d\xfe\xce\x63\x7d\x88\xe8\x06\x45\x67\x1e\xeb\xe3\x2d\x1c\xca\xc6\xd0\x83\x84\xba\xe7\xad\x56\x76\x49\xdd\x73\x9c\x34\xe9\x72\x9c\xf1\x4a\xb2\x09\xdd\xa0\xe4\x4c\x88\x9a\xc9\xdf\xb1\x17\x1e\xeb\x57\xd2\x27\x98\x5e\x07\x3d\xc8\xa8\x65\x9d\xb7\x5a\x4c\x54\xc2\xe5\x1d\xab\x41\x69\xa6\xc2\xfa\x65\xb2\xc9\xe5\x98\x4d\xb4\x72\xa7\x4e\x3c\x44\xd1\x09\x7f\x57\x9f\xec\x36\x55\xb2\x47\xcb\xb5\xa0\xdf\xd2\x9e\x06\xb8\x99\xe8\xac\x7c\xd9\x16\xd6\x07\xe0\xd6\xca\xf3\xe1\xbf\xf3\x29\xf5\x46\x6b\x7e\xbb\xe5\x41\xf2\x82\x61\xb2\x46\xec\x05\x83\xec\xcc\x87\x04\x6f\xcd\x73\x2e\xe1\xc8\x83\x2c\xd7\x71\x5d\x97\x37\x7a\xc0\x5a\x5d\x3d\x2b\xa8\x8d\xf3\xdc\xf2\x78\xb1\x33\x2c\x0a\x5d\x51\xe8\xf8\x5d\x5e\xce\xff\x96\xcf\xfb\xe2\x96\x5b\xfd\xcf\xf3\x07\xfc\x49\xe4\x7e\x99\x31\xf7\xb6\x77\xdb\x0e\xfa\xbd\x8e\xeb\x0e\x5c\x6c\x54\x29\x8f\x30\x77\xb4\x9b\xd4\x00\x4b\x33\xd7\xb3\x5e\x34\x75\x5e\xa2\x11\xa4\xb0\x51\x87\xe7\x30\xe5\x72\x95\xc8\xe8\xb8\xa2\x96\xc5\x05\x5b\x57\x60\xb1\x2f\x2f\xdc\x3c\x5f\x5e\xfa\x35\x09\x72\xa6\x42\xb8\xdc\x34\xa8\x76\x42\xb2\xde\x05\xef\xc4\x4b\x9b\x0b\xda\xf2\x98\xef\x89\x74\x5d\xfc\x42\x4b\x5f\x6a\x36\x37\xf2\x4d\xe1\x3d\xb4\xa2\x56\xcb\x82\x0d\x6d\x6d\x30\x6c\x2e\x3d\xd6\xf2\x3d\xbe\x2c\x12\x2e\xdc\xd6\xaf\x43\x17\x12\xca\xce\x93\x4b\xda\x71\x87\xbd\x73\x9c\x35\xa9\xe7\x43\x72\x26\x7e\xca\xb3\x87\xe4\x92\xfa\xf2\x06\x2f\xf7\x0b\xd5\x67\x8b\x36\x2f\xd6\xc8\x87\xde\x10\x3c\x8c\x5b\xbd\x21\xbe\x70\x47\xb2\xa8\x95\x81\x87\xc9\xe6\x8c\x5f\x67\x02\x2a\xf1\x05\xed\x74\xdd\x76\x77\x38\xec\xf9\xfd\x76\xdf\xed\x0c\x7b\x80\x32\xda\xf5\x5b\x19\xbe\x74\x65\x7b\xe6\xc8\x85\x04\x43\x44\x97\xe7\xd1\x25\xed\x9f\xe3\x39\xe2\x9b\xc9\xc5\x10\xb5\x68\xff\x44\x3e\xb2\x46\x9e\x0b\x91\xcc\x2d\xc1\xf7\x61\xcb\xe3\x0f\xfb\xed\x73\xbc\x40\xde\xc5\x85\xdf\x16\x4f\xfb\xed\x13\xf1\x33\xc2\x30\x47\x1e\x7f\x7a\xc1\x65\xdd\x7b\x3a\x43\x2a\x38\x59\x7d\x6c\x2e\x20\x14\x32\x5e\x99\xb8\x69\xee\x83\x65\xa1\xe5\xdd\xd3\xe5\xa5\x3b\x5a\x35\x11\x4a\xe9\xbd\xde\x1b\x17\x74\x39\xb2\x5c\xc7\xaa\xbc\xd2\x4a\x71\xf3\x9e\xdc\x17\xe9\x9a\xd2\xd6\x12\x37\x2d\xc7\x6a\xea\x22\x5e\x80\xc9\xaa\x79\xaf\xbd\x16\x54\xf6\x26\xe5\xaf\xd5\xee\x90\x76\x67\xe7\xd4\xd1\xaf\x4b\xe1\x7e\x94\x4c\xea\xbc\x62\x92\x4a\x0a\xe2\xf8\x21\x61\xd3\x30\x0d\xe3\x8a\xa3\x60\xb8\xaf\xd2\xcb\x5d\xa7\xba\xe4\x81\xe9\x07\x50\x79\x3a\x38\xb8\x45\x8a\x2f\xd5\x68\xd1\x6a\x7b\xa8\xc7\xff\x83\xf9\xf0\x01\x42\x8c\xf7\x12\x01\xb2\x91\xfa\x76\x86\x89\xbe\x02\x2d\x4b\xd5\x8f\xdf\x73\x7c\x65\xf9\x88\x18\x68\x8b\x41\xaa\xcd\x29\xfd\x8a\x39\xa5\x4f\x86\x7d\x51\xe7\xf3\xa4\xb4\xa2\xbe\x69\xc2\x82\x8c\x11\xa1\xd4\x9a\xf5\x71\xc9\x56\xd4\xf7\x1c\x11\x4d\xfb\x9e\x74\x07\xd8\xa8\xba\x02\xfe\x18\xb2\x94\x70\x2d\x5c\x09\x82\x9e\xeb\x12\xcf\x75\x4d\x6c\x20\xf1\xb5\xe7\x58\xb0\x9e\xf1\xb5\x47\xa2\xd4\x7c\xe3\x24\x4e\x75\x4c\x0b\xeb\xc7\x72\xaf\xeb\x53\xd9\x61\x07\x3b\x71\xf4\x3a\x61\xec\x67\x76\xc2\x5b\x3f\xc4\xc8\x9a\x8b\x9f\xc7\x0f\xe1\x8c\x5c\x57\xb6\xcd\x7f\x8e\x98\xcc\x7b\xa8\xcf\x47\x3c\x77\x48\x3c\x77\xa8\x8f\x3e\x3b\x64\x28\x57\xc4\xb1\x73\xfc\x8e\xab\xcf\x8a\x3d\xec\xcc\x8b\xf6\x1c\xc2\xdf\xac\x49\x34\x5e\x9f\xc3\x56\xe5\x1d\xc9\xb4\x5f\x4b\xa1\x20\xc9\x26\x2a\x57\x4d\xd1\xbc\x1a\xf9\xaf\xbe\x19\xef\x82\x15\x4b\xeb\x5a\xc0\x1f\xf7\xf5\xc4\x78\xae\x4f\x3c\xd7\xd7\x9f\xe2\x9f\xa8\x4b\x96\x5d\x8e\x80\x5f\x9e\x96\x9b\xfd\x37\xb2\x08\x1f\xef\xf5\x4e\x9f\xf1\xce\x79\x74\xd1\x63\xe1\x6c\x21\x9a\x73\xe4\x08\x61\xe0\x95\x8d\x08\xd3\xab\x2f\x19\x8b\xd2\xf0\x76\xf9\xdc\xa5\xd1\x50\x49\x95\x51\x83\xe5\x39\xe3\x8b\xa3\x66\x69\x88\x36\x1c\x4f\xde\x6c\xb4\xe1\x75\x12\xff\xcc\xa2\xe7\x7e\x9f\x5f\xe7\xb9\x48\x1f\x2a\xf2\x1c\x1c\xf8\xfa\x11\x22\x55\xfd\xfa\x35\x0b\x96\x6c\xf6\xef\xfc\xf5\xdf\x48\xce\x42\x41\x65\x7c\x75\x82\xe3\xf9\x1e\xf1\xfc\xd2\xbb\xd8\x3f\x9a\xcc\xb7\x5c\x5d\xfd\xb2\x5b\xc2\x87\xfe\x77\xad\xa9\x3e\xf1\xdc\x7e\xed\x9a\x3a\x42\xe4\x8e\x52\x9e\x75\xc2\xee\x59\x94\xa9\x95\x26\x92\xef\xfe\xf7\x20\x42\xc7\xd2\xe9\x1e\x6d\x5f\xca\x82\xe5\x7f\xa7\x26\x3d\x4f\xb1\x2d\x96\x41\x35\xb3\xb8\x58\x12\xbe\x48\x68\xa2\x96\x85\x4f\x3c\xdf\xd0\x30\xeb\xf2\xde\xd6\xfb\x66\x88\x58\xdc\xa7\xed\x49\x38\xae\x4d\x4f\x3d\xa1\xd6\xcf\x16\x84\xd2\x99\x69\x1c\x8b\xe6\x9c\xfe\x3c\x29\x5d\x99\xf6\xb3\x93\xd7\x7a\x36\x29\x99\x47\xd7\x60\x35\xa5\x5f\x0e\x6e\x5a\x13\x6b\xab\x1d\x25\xb4\xe1\xca\x0c\xce\xe5\xbd\x39\x96\x87\x76\x4f\x4b\xff\x4e\x4a\x5c\x3b\xea\xf9\x33\xb4\xf2\xe7\xe4\x91\x2d\xb4\x72\xf3\x2b\x5a\x1d\xff\xaa\x16\x5e\x97\x44\x75\x7f\x56\x8a\x74\x26\x32\xcc\x7d\xa3\xce\x09\xcc\x04\x51\x1d\x05\xe6\xc7\x9b\xb5\x50\x8b\x78\xa6\x9c\x52\xd7\x0a\xec\x6f\xc5\xef\x0f\x54\x72\x28\xbf\xaf\x93\x43\xf5\x64\xca\xf8\x3b\xbe\xe4\xbb\x18\xc9\x0c\x51\xc3\x9e\xcc\x10\xe5\x79\x1d\x99\x22\xca\xeb\x0c\x54\x8e\x28\xaf\x8b\xe1\x0b\xdd\x18\xd9\x96\xae\xe9\xa6\xc8\xe0\xf8\x9e\x5e\xdb\xf6\xb5\xce\x8e\x9d\xc2\x67\xfa\xde\xb6\xdf\x3b\xf7\x83\x3c\xb7\x2c\x78\x49\x37\xce\x87\x24\x5e\x85\x29\x83\x4f\xd4\x48\x3f\x38\x45\xd7\x18\x5e\x55\x80\x21\xe1\x2d\x0d\xe9\xad\x33\x87\x8f\xb4\xd1\xd8\x71\x56\x92\x22\xed\x4b\x27\x61\x69\xbc\xbc\x67\x48\x20\xc2\xa3\xac\x62\x1f\x7d\xda\xe2\xf1\x5e\x32\xec\x49\x45\x15\x63\xe8\x15\xbc\xc2\x5b\x0d\x8a\xf3\x29\xcf\x6b\x22\x06\x54\x7b\x3f\x32\xbe\x4e\xc3\x38\x12\x19\x02\xb1\x6d\x67\x4e\xb6\x60\x11\x7a\x65\x46\x2c\x24\xc2\x95\x84\x7e\x2e\x22\xd8\xac\x9e\xd3\xb3\xb0\x6d\xb7\xfe\x7f\xe6\xde\x7d\xbb\x6d\x23\xe9\x17\xfd\x5f\x4f\x21\x62\xb2\x91\x6e\xb3\x05\x11\x92\xac\xd8\x90\x5a\xd8\x8e\x2f\x89\x67\xec\x38\x63\x79\x92\x99\x0f\x42\xb4\x21\xb2\x29\x22\x06\x01\x06\x68\xea\x12\x01\xf3\x66\x67\x9d\x47\x3a\xaf\x70\x56\x57\x5f\xd0\x00\x41\x5f\xbe\x3d\xe7\xb2\x56\x62\x11\xb7\xbe\x56\x57\x55\x57\x57\xfd\xca\xa7\x94\xde\xb6\xb7\x9f\x2f\xca\x62\xc9\xf6\x8f\x8f\x1d\x9d\x8a\x3f\xc7\x0f\x4d\x83\x30\xf9\x79\xd3\x1c\xaf\x7d\xcb\xd0\x68\x01\x78\x0b\x9b\xde\x6e\x88\x53\x06\xcd\xc1\xa2\x61\x0d\xf9\x7d\x00\xab\x81\x79\x97\x39\x7e\x10\xff\xd2\x91\x8c\xa5\x29\x29\xf3\x2e\xa7\x3b\xd7\x68\xc0\xc2\x01\x68\xd5\x37\x24\xa5\x3e\x15\xbf\x2a\x75\x84\x6f\xb3\x39\x79\x80\x23\x29\x33\x0d\xb9\x57\x7c\x0c\xb8\x37\x4f\xd2\x0c\x4e\x39\xd4\xd4\x90\x0c\x7e\x8b\xb1\x23\x53\xca\xbd\x59\xb1\x4c\xd2\x7c\x47\x4c\x62\x15\xa2\xb4\xae\xd1\x01\x54\xb0\x70\xdd\xd7\x42\x45\x13\x3f\xa9\x8f\xc9\x48\xec\x37\xaa\xb0\xa4\x79\x80\xa6\xae\x3b\xf5\x58\xce\x59\x89\xc4\x3c\x57\x28\xc7\x64\xea\xba\x68\xea\xb1\xbb\x94\x23\x0c\x11\xd3\x90\x14\x97\x52\x60\x3c\x62\xbe\xc2\x0c\xdd\x21\x47\x4d\xde\xde\x74\x91\xa4\xf9\xee\xf4\x7e\x9a\x31\x07\xe3\x00\x15\xf4\x67\x38\x7f\x50\x9e\x95\x25\x59\x93\x0c\x07\x6b\x71\x2f\xc8\x50\xae\x27\x65\x8e\x1f\xa6\xae\x3b\x4a\xa0\x01\xb2\xae\x0c\xcd\x71\xd3\x9c\x68\x3b\xcd\x59\x71\x82\x13\x54\x42\xc6\x00\xbc\x23\xc6\x93\x46\x31\x91\xa3\xec\x13\xee\xba\x23\xd9\xb9\x17\x1a\x1c\xe2\x45\x67\x7e\xef\x65\xfd\xeb\xbe\xcf\xa7\xc2\x89\x93\x93\x50\xd0\x9f\x74\x9e\x5f\xd7\x45\x9c\x5e\xda\x13\xf6\x21\x3c\xf7\xd8\x32\xe5\xc8\x59\xe7\x8b\x24\x9f\x65\x6c\x66\x48\xd5\x21\x29\x61\x38\x40\x25\x5d\x7b\x45\x6e\x9e\x97\xfa\x39\x0e\x4b\xf4\xa0\xc6\x2b\x60\xa4\x64\x49\x55\xe4\x82\x57\x05\x28\xa7\x6b\x58\x4d\x45\xc6\xb0\xeb\xe6\x1e\x13\x2b\xdd\xfc\x40\xce\x3f\x74\x61\xbb\xea\xfb\xdd\xd2\xaa\x15\xe2\xfb\xc5\x4c\x7e\xa8\x6b\xd1\xf6\xf0\x20\xf0\xe1\x4e\xa2\x63\x01\x0b\xb1\x80\x98\xb2\xc5\x70\xef\x46\xf0\xc7\x9f\x86\x70\x28\xfc\x91\xa6\x0f\x41\x11\x48\x94\x01\x88\x23\x53\x9d\xda\xa3\x21\xaf\xbf\x6c\x48\x77\xda\xa1\x32\x6d\xfd\x51\x76\xc2\x81\x61\xe2\x30\x4c\xe6\x99\xea\xa0\x58\x51\x03\xa3\x24\x66\xa6\x01\x1d\xec\xcd\xc0\x01\x1a\x9c\x93\x71\xef\x72\x56\xd7\x48\xfc\xa1\xa3\x09\x41\x9c\x72\xef\xf2\xb6\xae\x39\xf6\x2e\x6f\x28\x23\xdc\xbb\xac\xe8\x81\xf8\x93\xc8\xd7\x12\xf1\xc2\x54\xa3\xff\x62\xf2\xbb\x4a\xa2\xd0\x90\x57\x43\x89\xae\xa8\xce\x66\x3b\x2a\xbd\xcb\x19\x7e\x28\x55\x45\x25\x2d\xa1\x9e\x12\x96\x19\xd8\xa0\x28\x65\x2d\x54\x9a\x5a\x14\x6d\x46\x68\xb5\x56\x67\xbb\x29\xaf\x58\x36\x77\xf0\x09\xe2\xf4\x67\xa1\xe9\x85\xd7\xfd\xe4\xe2\x39\x7d\xb8\xbc\x0d\x4a\x72\x39\x0b\x46\x7e\x03\x35\x70\x15\xbb\x45\x32\xf4\x4a\x1a\x88\x32\xf4\x06\x7e\xe8\x75\x94\xe2\x87\x37\x0a\x59\x4e\x10\x87\x20\xb0\x52\x8e\x41\x29\xc6\xc0\x27\xbf\xa3\x12\x12\xac\xb6\xcc\x50\xbd\x6f\x57\x06\xa7\x9b\xcd\xce\xfb\xba\x46\xcf\x3a\xe3\xb1\x92\xb6\x8d\x67\x44\x77\xcd\x21\xce\xe5\xc2\xc1\x64\x26\x58\x4a\x6e\x7b\x4f\x8b\xf6\x32\x24\x1a\x2a\xa1\xb6\x64\x5b\xd5\x6f\x5d\x3d\x37\xd5\xab\x34\x58\x4d\x43\x7a\x59\x64\x65\x68\x2b\x2c\x76\xf9\xd3\x50\xb6\xbc\xac\x4c\x3c\xed\x0c\x18\x01\xfc\xbc\xe9\xbe\xb3\x30\xef\xe4\x80\x6f\x60\x1d\xf6\x49\xbc\x5e\xf4\xcc\x52\xa3\x1e\x04\x7f\x1f\xf4\x1b\x7a\x8b\x6e\xd4\x00\x60\x2b\x62\xad\xf8\x48\x07\xdc\xa2\xc5\x46\x8c\x94\xc0\xa6\x07\x03\xea\x5d\x97\x93\x52\x71\x69\x2a\x16\x8c\xfc\x19\x74\x1a\x3e\x95\xd9\xcc\x4a\x1d\x3c\x9c\xb8\xae\xfa\xd1\x7b\x50\xb9\xee\xef\xb2\x69\x23\x21\xa2\x35\x6f\x6e\x08\x8c\xf3\x60\x0e\x25\xf1\x1d\x08\x56\x55\x23\x98\x97\x48\xb1\x99\xcb\x39\x67\xb7\xbb\xf9\x8e\x76\xc9\x16\xc5\x2a\xac\x3f\x2d\x7a\xa8\x98\x65\xc8\x85\xab\xee\x8a\x75\x4d\xc5\x74\x8b\x9b\x0d\xb9\xf2\xe6\xf4\xed\x60\xa6\x52\x4a\xe9\x33\x89\xbe\x9b\x00\xe8\x79\x81\x18\x0e\x52\x09\x5a\x30\x47\x73\xef\x87\xf1\xdc\xfb\x75\x3c\xf7\x5e\x3d\x1a\xbd\x27\x0f\x8a\xe6\x82\x67\x00\x20\xe1\x1f\x1c\x61\x64\x51\xa2\xbc\x77\x88\x91\x75\x27\x51\x30\x36\x5a\x15\x12\x65\x9e\xeb\xf2\x5a\x1a\x7e\x90\x4d\x1e\x30\xe6\xbd\xed\xc4\x02\xa0\x09\xd1\x32\x16\x83\x99\xc3\x8c\xb3\x6a\xaf\x2c\x1b\x55\x75\x3d\x7a\x8f\xbb\x15\xc0\x48\x0d\x4d\xc4\x4b\x54\xc9\x59\x85\x51\x78\x16\xc8\x00\x2a\xdc\x2d\x72\x84\xde\x0b\xbd\x7f\x03\xe8\xc1\x93\xb1\x9c\x9e\x5c\x4e\xcf\xa5\xa1\xb2\xad\x36\xe9\xe5\x43\x6b\x79\x26\x11\xd4\xcc\x65\xf6\x22\xad\x41\xa4\xf0\x1b\x34\x88\xa2\x2b\xfb\x24\xf9\x47\xb1\x52\x4e\xfc\x9d\x25\xb8\x9f\x90\x7e\xd9\x15\x2d\xc6\x63\xb2\xa6\x23\x7f\xa7\x94\x14\xaa\x8c\xab\x24\x19\x8f\x89\xd1\x55\x44\x8b\x81\xf4\xec\xef\xd7\x75\x8d\xd6\xc0\x55\xa3\x2a\xa6\x8c\xec\xed\x25\x75\x9d\x03\xe8\xbf\x94\x73\xe6\x46\x63\x16\x5f\xe1\xc1\x29\x73\xe1\xdd\x74\x88\xbe\x4c\x7a\x51\x8f\xdb\xfa\x0d\x7d\x4d\xbb\x7d\x1d\xe8\xda\x66\xc3\xdb\x41\xcb\x85\x68\x32\x0d\x4a\x3d\xd8\x8c\xa6\xdd\x06\xa9\x3d\xc9\x51\xe0\xfb\x47\xc4\xf7\x1f\x07\xbe\xff\x78\x00\x6c\x5d\x01\xdb\x19\xd0\xf5\xe3\xc0\x3f\x3c\x06\x24\x32\xff\xa8\xdd\x9b\xc9\xd8\x30\x05\x6f\x67\x81\x28\xd9\xf8\x11\xc7\x4f\x82\xe3\x27\x1a\x0f\xcb\x06\x42\x97\xd8\x58\x8f\x83\xa7\x8f\xc9\xd3\xe3\xe0\xe9\x31\xec\x8d\xbe\xc0\x2b\x40\xc7\xdc\x1d\x82\x9b\x14\x92\x6e\x02\xef\xd9\x3c\x83\xe8\xfb\x87\x06\xcb\x60\x72\x52\xb5\xd1\x14\x70\xa3\x6b\x65\xed\x1d\x41\x75\x82\xee\x64\x28\x94\x2a\x52\x90\xae\xf8\x3c\x18\x6e\x57\x2a\xb3\x4d\x16\xa8\x34\x03\x9f\x84\x09\xca\x09\x27\x6b\x13\x66\x27\xaf\x94\xc9\x5c\x8e\xd9\x93\xe0\x70\x00\x3c\x1e\xc6\xe0\x4b\x42\x02\x14\xf2\xbb\x18\x8b\x44\x8d\x45\xa5\xb6\x80\xb6\xa7\xd8\xd1\xb1\xd8\x2a\x0e\x8d\x91\xd9\x35\x91\x39\x5d\x7f\x3e\x62\x7b\xda\x19\x1f\x22\xd4\xdd\x8d\xa8\xed\x05\x1d\x75\x4a\x9a\xf6\xc7\xd4\x3e\xc9\x9e\xd7\xf5\xa2\x33\xc8\xa6\x41\x3d\x71\x07\x40\x30\x09\x52\x49\x5d\xca\x4d\x37\xa5\xc3\x90\x05\x76\x74\xff\x41\x0c\x6a\xf3\xc2\x75\x47\x73\x6c\x25\x19\x11\x03\x09\x09\x9a\x29\x2d\x2d\x37\x30\x75\xbc\x24\xfd\xbf\x26\x81\x05\x78\xcc\xa4\xd3\x97\xdf\xb9\x87\x00\x3d\x55\x3e\x39\xd8\x7c\x42\x38\xc0\xa3\xc2\xe3\xc3\x2d\x8f\x09\x87\x36\xc2\x3b\x47\x9f\x7a\x87\xf0\xe8\x30\x96\xe8\xc5\x39\x8d\xf2\x75\x96\xc5\x6d\x2a\x21\xc1\xd2\x14\x6c\x02\xa4\x37\xc9\xd9\x2d\xca\xd4\x0d\xc1\x0a\xe4\x77\x6b\x5a\x5a\xea\xc4\x8c\xa6\xa8\x42\x6b\x1c\xae\x83\xbe\xc5\x06\x93\x55\x6f\xbd\x68\x05\x6f\x46\x5a\x9c\xeb\x0a\xad\x70\xb8\x0a\x66\x9b\xa4\x6c\x45\x8a\x75\xfc\x8a\x94\xc5\x4b\x9f\xbb\x1c\x7e\xc2\x52\xf9\xf4\x69\x17\x86\xe8\xd0\x40\x9d\x74\x40\x86\x36\xd6\xae\xa2\x21\xaf\x7b\x54\x82\x72\x6f\x8e\x1e\x1a\xe2\xeb\xf0\x31\xbf\xc1\xed\xc5\x41\x7f\x8d\xf7\xce\x59\xfa\x6d\x04\x2a\xe4\x10\x5a\x2d\x91\x27\x4b\xa9\x56\x9a\xe9\x98\xab\x37\xc9\x68\xd2\xea\xbf\x6d\x7c\x98\x8a\x76\x94\x3e\x58\x9b\x8b\xdf\x1c\xdf\x1c\x7e\x81\x7b\x8f\xf2\xf9\x54\x43\xa4\x8d\x84\x76\x57\x32\xc6\x87\xbb\xa2\xc5\x67\x8a\x64\x87\xb0\x31\x33\x94\x90\x46\xcd\x8e\x19\xc3\xae\x2b\x4b\xda\x65\x11\x8f\xbb\x87\x28\x56\x0f\xa0\xd5\x5f\x1b\xfb\x7a\xf8\xa4\xa3\xde\xb1\x16\x9e\x26\xed\xc0\xd3\xec\xd8\xbb\x1e\xef\xf2\x23\x8d\x62\x38\x98\xe6\x2a\xab\xb2\x14\xec\x1c\x37\x3b\x0c\x3d\x39\xc2\xa8\x68\x8d\xa5\x7d\xdd\xb1\x45\xb1\xd9\x99\x15\x0f\x3a\xb0\xef\x32\x3d\x33\xe9\x8b\x15\xb3\x50\x14\xa2\x54\xd1\x59\x91\x43\x42\xac\xe6\x76\x91\x66\x0c\x8d\x10\x62\x94\x47\x06\x05\x07\x20\xc8\x55\xdb\x8d\x22\xae\x4a\x60\xea\x63\xbf\x51\x30\x66\x9d\x59\x52\xf9\xb6\x06\x1d\xd8\x76\xb5\x02\xaa\xd6\x99\x45\x2f\x4f\x8e\x82\x27\x60\x3b\x3e\xfc\xd4\x99\xda\xc4\xdf\x58\x4a\x72\x05\xd9\x2d\xd8\x9a\xe1\x6e\xf0\x38\x4d\x90\x78\x31\x74\xa0\xd6\xa7\x85\x2f\x71\xa6\xd2\x61\xa1\x83\xf4\xdb\x3d\xf9\x1a\x76\x50\x2b\x36\x8f\xb9\x7a\xed\x38\xfa\xd4\x89\xdb\xa4\x1f\x9f\xfa\x9d\xdf\x4d\xcb\xaf\x05\xa9\x68\xa0\x4c\x53\xd4\x6d\x60\x27\xc4\x4c\x17\x9d\x90\x8c\x4c\x87\x04\x14\x0f\x6c\xf1\x64\x82\x56\x10\xc7\x94\xd2\x69\xc8\xa3\x32\x0e\x50\x42\xc5\x10\x8b\xc2\x70\x58\xa0\xc4\x64\x4e\x0c\x13\xcf\xa6\x48\x70\x17\xb8\x66\x3c\x84\x7f\x25\x93\x9e\xea\xd4\x56\x41\x85\x32\x0a\x27\x0f\x21\x43\x19\x29\x89\x79\xd2\x3f\x04\xdd\x18\x33\xe5\x01\x6a\x8e\xa8\x8e\xbe\x2c\xca\xa8\x1d\x95\x45\x52\x0d\x53\x8e\x5c\xac\x3d\x3f\xc6\xa3\xcf\x86\x1d\x69\x2e\xa1\x24\x95\x7d\x14\xb9\x59\xb9\xfd\x74\x9b\x4b\x23\x19\x15\x75\x3d\xb8\xaa\xa0\x41\x5f\x86\xf0\xd5\x56\x59\xdc\xe6\x7f\x63\xf7\x70\x30\xe7\xeb\x83\x39\xdf\x0f\x7c\xdf\x3a\x98\x3b\xfa\x02\x5d\xae\xd3\xcb\x8d\xb3\xb0\xcd\x7a\x37\x5e\xe9\x06\x46\x03\xb2\x7f\x2b\x99\x0a\xe9\xc8\xd9\x8a\x25\xbe\x21\x96\xfa\x03\xf1\xd9\x80\x4c\x79\xee\xb4\x93\x8a\xed\x45\xaf\x71\xd5\xb6\xb5\x0b\x16\x69\x6f\xba\x60\xd3\x8f\x70\x61\xb7\x31\x85\x9c\xfc\xe2\x6e\xdb\xcc\x72\x53\x7a\xf6\x8f\xb7\x86\x30\xb2\xfb\xba\x04\xac\xf4\x42\xaf\xf4\x44\xad\xf4\x4a\x75\x45\xe6\x48\x3a\x96\xba\xb2\x98\x87\xa9\x3a\xfd\xad\x50\xb5\xd1\xaf\xde\x92\x27\x95\xac\x6d\x4e\x16\x64\xb6\xb9\xe8\x8f\x3a\x8b\xfe\x30\x26\x2b\x9a\x7a\x73\x94\x89\x0d\x9f\xd4\x43\x47\x2b\xb0\xd1\x4f\xd1\x02\xb0\x14\xda\x90\x74\xb4\x10\xa5\x93\x19\xde\x59\xd1\x35\x9a\x60\xc8\xe7\x81\x56\x6d\x2a\x55\x30\xed\xfb\x94\xd2\x95\x95\x17\x75\x34\x45\xb3\x6e\xd4\xfb\x1c\x6a\x9c\x11\x95\x88\x71\x2e\xf8\x45\x5d\xcf\xc5\x60\xd7\x35\x7c\x3f\x37\xdf\xb7\x1f\xce\x25\xb7\xa1\x15\xc9\xe5\xd7\x64\xae\x7c\xb8\xf4\xf5\x1a\x4d\x48\x65\x84\xdd\x68\xd2\x74\x5c\x86\x46\xa2\x59\x15\xe3\xae\x8b\xe0\xaf\xe4\x50\x33\x52\x61\x0b\x81\xa8\xc7\x86\x74\xd2\xaf\x2d\xec\xa8\x55\x8f\xb6\x83\x72\x5b\x61\x34\x8a\xa5\xcb\x78\x98\xa4\x8d\x97\x01\xbe\xae\x66\xfd\x18\x26\x3d\xf7\xde\xb3\xeb\x97\x77\x2b\x85\x7b\x9e\x59\xaa\xf2\x82\xee\x27\xfb\xd7\x64\x26\xff\xac\xc0\xf2\x94\xa1\x05\x1e\x51\x0a\xb9\x24\x55\xc0\x3d\x1a\xad\xea\x7a\x1b\x62\xc7\xcc\x9c\x45\x41\x60\xbd\x83\x63\x3a\xf2\x89\x2c\x65\x51\xd7\x19\x9a\x61\x4a\x67\x75\xed\xec\x27\xfb\xa9\x33\xa2\x19\x5a\x10\x27\x75\x70\x83\x31\x7e\xc8\xe8\x90\xe2\x26\x54\x0d\x3b\x04\x23\x23\x39\x85\x58\xdc\xc2\xc2\x0e\xd2\x33\x53\xba\x6e\xee\xba\xac\x73\x42\x46\x69\xe6\xba\x45\xc8\x82\x14\xad\xc0\xce\x35\x45\xb9\xeb\x8e\x8a\x90\x79\x55\xb1\x2e\xa7\x0c\x02\xd7\x83\x29\x42\x39\xed\x80\x23\x64\xd8\x7e\x25\x17\x85\xac\x35\x7e\x57\x20\x88\x5a\x22\x6c\xcd\x49\x66\x45\x72\x2c\xbb\x47\x6f\x42\x10\x64\x82\x07\x67\x84\x7d\x16\xa0\x40\x6f\xdd\x22\x16\xf7\x42\xf0\x39\x7e\x10\x77\xa9\x3c\x5c\xbf\xa1\x09\x9a\x62\x72\x4f\x27\x27\xda\x59\xf0\xec\xfe\x04\x2f\xd1\x4d\x74\x0f\x07\x34\xf3\xce\x00\x64\xc4\x9a\x66\x3a\xb7\x02\x2a\x24\x2d\x38\xa2\x03\xda\x7c\xa7\x6e\xe1\x0e\xf8\xbf\x3a\x9f\xd6\xb6\x12\x8d\x23\x62\x85\x54\x1c\x1f\x07\xc7\xc7\x3a\xb0\x02\x42\x2a\x9e\x1c\x04\x4f\x2c\x2f\xad\x21\x44\xf7\x41\x85\xd9\x3f\x98\xe0\x1d\x60\x56\xe8\x81\x27\xa5\x18\x22\xd3\x4e\xe8\x85\x18\xb8\x79\x51\x4e\xd9\x2c\xc8\x47\x94\xee\x7b\xfb\x1e\xbb\x63\xd3\x86\x3c\x88\x3f\x41\xae\x58\xe7\x24\xf0\x0f\x26\x16\xeb\x1c\xf4\x78\x02\x8a\x76\xae\x9d\x91\x28\xe6\xda\x9b\x67\xc9\x75\xe5\xba\x1a\x89\x43\x56\x6b\x9f\xf1\xc3\x0b\x5b\x90\x26\x60\x89\xd9\x6e\x6a\x30\x24\x66\x00\x86\x60\xde\x87\xf1\x2f\x9f\x68\xd8\x08\xc5\xc8\x0f\x8f\xd5\xae\xd0\x7f\x0a\x23\xf3\xd8\x2c\x2f\xe2\x93\x6e\x91\x82\x45\x4b\x2a\x6a\xeb\xb2\x18\x86\x82\x3e\xa2\x12\xd2\xb5\x54\xb9\x43\x83\x32\xe2\xf1\x4e\x9f\xa5\xa5\x1a\x76\xa5\x24\xb9\xcc\x02\x2a\x87\x03\x95\x38\xe2\x31\x52\xae\xc1\x62\xd7\xbd\x61\x88\xe4\xb4\x02\x98\xb9\x16\xe6\x0b\x60\x5c\x35\xbb\xe7\x92\xdf\xee\xc8\xdd\x3a\xb8\xac\x65\x26\x61\xb7\xfe\x64\xb4\xf6\xae\xb3\xe2\x2a\xc9\xf4\x57\x09\x5a\x93\x4c\x9a\x44\xa6\x74\xed\xad\xf3\x74\x5a\xcc\xd8\xce\xba\x45\x69\xa4\x13\xb3\x0a\xe7\x64\x41\xa3\x98\xcc\xe8\xe4\x44\x81\x08\xa1\x39\x95\x25\xe0\x13\xd9\xc8\x95\xae\x72\x0e\xe6\x8d\x45\x34\x8b\xe9\x8a\x80\xc3\xfa\xca\x75\x91\x5d\xae\x58\xbd\xa9\x7d\x07\x93\x29\xc6\x64\x36\x1e\x37\x96\x83\xfa\x2c\x14\x55\x05\x8b\x26\x56\x9a\xd1\xd3\xc0\xf7\xdb\xd4\x18\x87\xc7\xc1\xa1\xe1\xf7\x8f\x83\xe3\xc7\x40\x14\x5f\x1a\x9f\xd0\x12\x85\x81\x50\xf2\x75\x80\xc2\x53\x29\xde\x05\x99\xac\x15\x99\x90\x4c\x21\x41\x26\x77\x64\x6a\x40\x21\xc9\xdc\x0e\x5d\x58\xd0\xfd\x8b\x6f\x50\xf4\x8d\xfb\xbf\xbe\x8d\xeb\x8b\xd9\xc5\x2c\xac\x4f\xa3\xdf\xce\xe2\x47\x67\x58\x8a\x81\xde\x53\xbc\x7f\xad\xa9\xaf\x64\xab\x2c\x99\x32\x87\x1c\xf4\xe9\x6f\xb5\x49\x7f\x6d\x02\x5c\x43\x81\x89\xa2\xc0\x5c\x53\x60\x3e\x44\x81\x89\xf6\xc3\xcd\x49\x41\x52\x1c\x94\xf2\x4a\x4d\x5b\x81\x21\xb5\x6e\x43\x36\x85\x46\x4a\x57\x86\xfe\x88\xca\xc0\xd4\xa1\xc0\xd4\xa2\xc0\xb9\xa4\xc0\x45\x87\x02\xb7\xe0\x30\xef\xc0\x41\x67\x9b\x5c\x5e\x92\xe3\x0d\x9d\x2b\x5a\x05\x50\x65\xd9\x86\x7b\x3a\x37\x34\x3a\xb7\x69\xd4\x84\x49\x5e\xd3\x28\x3e\x51\xc4\x78\x45\xd7\x68\x4e\x24\x2a\xb3\x1c\x1a\x7a\x85\x65\x98\x65\x3a\x47\xd7\x72\xd3\x7f\x85\xc9\xe8\x46\xdd\x05\x3a\x55\xed\xb8\x12\x04\xec\xba\xc8\xae\xa6\x42\x0b\x52\xd8\x77\x30\xb9\xc7\xd8\xd4\x7d\x49\x6e\xa9\xe3\x90\x97\x74\x42\xee\xe8\xe4\xe4\xee\xf4\x5a\x87\x67\xde\x8d\xc7\xf8\xe1\x8a\x5e\x47\x77\xb1\x59\x4d\xe7\x9d\x9a\xc8\x3b\x9a\xa1\x29\x4a\xd0\x95\x74\xf4\xc0\xc4\x20\x3f\x93\x09\x26\x1f\xc5\xc2\x7b\x46\xfd\x93\x67\xa7\x57\xba\xd0\x67\xe3\x31\xfe\x68\x1f\x49\x50\x4a\xd1\x25\xbd\x8a\x9e\xc5\x38\xbc\x0c\x54\xe9\x97\x26\xd3\xef\x95\x77\x5d\x16\xeb\x15\x9c\xfa\xce\xe4\x08\x3d\xa7\xd1\x79\x6c\x12\x0c\x93\x77\x62\xb0\x0c\xa5\x7c\x70\xdd\xe7\xb2\xf8\x0f\xb2\x88\xb7\x66\x8e\x94\x7d\x50\xd9\x36\x9e\x63\xa5\xd9\xbd\xa5\x4b\x74\x4e\x16\xe4\x1d\xf9\x48\x3e\x08\x1a\x79\x77\x46\x5f\xba\x2e\xba\x1d\xd3\x85\x3a\x99\x7e\x49\xde\xe1\xf1\x5b\xf2\x92\xbe\x1b\x9f\xeb\x0e\xea\xf5\x7e\x3b\x36\x6f\xe1\x26\x6e\x53\x6a\x2e\x61\x19\xe4\xd2\x5d\x44\x36\x7c\x4d\xf3\xb1\xc6\x0a\x26\x19\x2d\xf4\xcf\x29\x9d\x6d\x52\xbc\xeb\xa2\x84\xa6\x28\x11\x7a\xf9\x02\x13\x45\xf1\x15\x99\xb6\x54\x5e\xea\xe5\x54\xed\x28\x8b\x6e\xda\x66\xed\x90\x46\x5d\xe7\x1b\x47\x19\x59\x9d\x6f\x1c\xb0\xba\x3a\xae\xbe\xa3\x6c\xbc\xce\xff\x32\x37\xb8\x89\x25\xc8\xa5\x89\xd6\xf9\x76\xe3\xd9\x5a\x3d\x39\x75\x82\x8a\x26\x51\xaa\x6e\xfb\x64\xcf\xc7\x71\x2f\x1e\x58\x72\xe8\x71\xba\x63\x72\x41\xea\xc3\x5a\x71\x67\x7a\x96\xc9\xe6\x2f\xe8\x1c\x4d\xf7\xfd\x89\xb1\xb4\x8a\x77\x17\x61\x19\x2c\x4e\x69\x16\x1a\x32\x29\xa2\xc5\x9e\x1f\x87\xa6\x8f\x3e\x0e\xe4\xad\xb1\x7d\xab\x6c\x2a\x5a\x44\x90\x0a\xb0\xef\xcd\x5f\x85\x8e\x13\x54\x8d\xd6\xc3\x35\x57\xde\x92\x44\x77\x98\x4b\x7f\x69\x78\x84\xe1\xd2\x07\x7a\x0f\x66\x89\xec\x8a\x25\xe5\xa0\xcc\x4e\xfe\xff\x21\xb3\x93\x2f\x95\xd9\x95\xe4\x98\xeb\x2e\xc7\xcc\x68\xd5\x72\x9b\x9d\x14\x65\x04\xf2\xa1\x57\x36\xef\xd3\xe2\xbb\x40\x15\x59\xb7\xc7\x76\xf6\x4b\x24\xeb\x7f\x95\x69\x08\x7a\x3a\x0d\xf7\xfc\x60\x2a\xb9\x4e\x5f\xca\x2a\x07\xe1\xfe\xcc\x7d\x29\x56\xd7\x93\x8e\x69\x42\x79\x0e\x26\x4a\xaa\x5a\x10\xa9\x46\xbc\x4a\x45\x15\xb6\xcf\xc7\x47\x58\x4b\x56\x21\x64\x85\xe6\x01\xcc\x88\xcc\xe8\x68\xda\x35\xdb\xc3\x64\x58\xf0\x29\xce\xbd\xd8\xfb\x18\x0a\x59\x65\x29\x1f\x10\xaa\x53\xa5\xb1\x98\x48\x78\xea\x4c\x1d\x4a\x9d\xe4\xea\x6a\xaa\xe3\xaf\xf7\xd1\x15\x7e\xb4\x8f\x23\x3f\xae\xeb\xa3\x11\x75\x38\xab\x78\xfb\x2c\x0c\xf0\xbe\x58\xab\x8a\xf9\x00\x66\x8b\x93\x5c\xd9\x2f\x24\xf0\xbd\x79\x41\x94\xe1\xb5\xcf\xbd\x10\x8b\xff\xad\x17\xec\xa7\x18\xb5\x4f\xce\xfc\xba\x76\xcc\x23\x2f\x34\x0f\xc2\x21\x41\xdd\x57\xfb\xda\x20\x1c\xe9\x09\xc5\x15\x01\x46\xf1\x8e\xce\xc4\x64\xd8\x89\x82\xa1\xed\xa2\xc2\x02\xe7\x05\x2c\x5b\x38\x06\xf4\xd2\xeb\xbc\x28\xd9\xf3\xa4\x62\xa1\x93\x3a\x81\xe3\xe0\x31\x62\xde\x72\x9d\xf1\x34\x4b\x73\x16\x3a\x4b\x73\x53\x89\xeb\xd0\x59\x9b\x5b\x15\x4f\xa7\x1f\xef\x43\xe7\x1e\xee\x40\xa2\xb0\x99\x0d\x59\xdb\x4e\x65\xc0\xcf\xce\xce\x26\x6a\xdb\xac\x26\x5a\xef\x1e\xc9\x74\xec\x5c\x3b\xf8\x04\x15\x34\xd3\x79\xdc\x53\x8c\x5d\x77\x84\x50\x42\x57\x96\x90\x3e\x9b\x83\xea\x09\xa2\x4c\x33\xd9\x39\x29\x94\xa0\xc5\xa4\xb0\xd0\xbe\xd5\xdd\x53\x8d\xbd\xe3\xba\xfa\x74\x6c\x4d\x74\xce\x56\x1f\x0b\xea\x2d\xa2\x49\xac\xc5\xce\x9c\x26\x44\x63\x31\x9c\xd1\x99\x50\x87\xad\x06\x08\x86\x2b\x8b\x75\x5d\xeb\xb6\xc1\xbe\xdf\x9d\x53\x6a\xc0\x7e\xc2\x51\x25\xde\x12\x94\x86\x1c\x07\xd7\xb5\x6a\xb8\xe3\xe0\xa0\xdf\x07\x8c\xdb\x5a\x67\xe1\xda\x88\x9c\x19\x0e\xd6\x4d\xe0\x4c\x34\xc1\x28\x39\x3d\xd9\x42\x34\x1b\xa1\x5a\x8a\x4a\xc2\x28\xd6\xea\xa1\x01\x0a\x6e\x82\x92\x58\x1c\xb5\x4d\x83\xab\x79\x6a\xf1\x45\x3c\xb5\x68\xbd\x27\x53\xc1\x55\x57\x1d\x2d\x34\xc5\x90\x60\x77\x48\x0b\xcd\xe9\x14\xad\x8c\x16\x4a\x56\x23\x4a\xa5\x19\x2c\xef\x70\xd6\xdc\xe2\xac\x2a\xa4\xb3\xa7\x8b\x2e\x61\x03\x22\x69\x0a\x93\x1b\x9a\x69\x4a\x25\xf7\x14\x65\x83\x14\x9e\x0d\x51\x78\xb6\x49\xe1\x33\x49\xda\xd7\x0e\x26\xd7\x40\xb9\x4b\x34\x0b\xb3\xc0\xf9\x0d\x85\x81\x33\xce\x14\xfd\x8e\x1d\xec\x90\x7b\x4c\xae\x3e\x45\xfa\x5a\xdc\x5f\x75\x56\x2c\x08\xf5\xee\x69\xd3\xae\xe2\xe6\x6b\x74\x4d\x16\x38\x8c\x16\x71\x10\xb5\xba\xe6\x25\x9d\x90\x5b\x3a\x21\x2f\x85\x76\x7c\x7b\xaa\xbf\x3d\xc1\x0f\xd7\x16\x99\xce\xc2\xdb\x40\x1e\x95\xdd\x91\x73\x28\x69\x16\x2e\x02\xad\x93\xdd\x62\x5b\x91\x3e\xaf\x6b\x74\x47\xe7\xa8\x42\x56\x09\xa2\xeb\x93\xe0\x16\x5b\xca\x2b\xa6\x94\x5e\xe2\x5b\x9a\xa0\x05\xb9\x25\x37\xd8\x24\xaf\x7e\x29\x69\x59\x97\x7e\x49\xc4\x67\x2f\x35\x56\x7a\xdb\xe3\xdd\x97\xa6\x17\xef\xa8\x7f\xf2\xee\x94\x6a\xbd\x71\xcf\x3f\x79\x27\x21\x4f\x54\x59\xe7\xd1\xbb\x78\x5b\x19\xb7\xf4\x92\xde\x69\x7c\x93\xdd\x7e\xe5\xa2\xea\x0d\xd9\x27\x6d\x1d\xc6\x77\x65\x68\xc7\x29\xad\x34\x42\x2e\x4a\xcb\x0c\x48\xc7\xcf\xa5\xe4\x60\xe8\xe0\xe8\x29\xde\x50\x6f\x8e\x8f\xa5\x90\x7c\x0c\xc7\xd5\xfb\xde\x7e\x0b\x0b\x5b\x75\x7c\xa7\x95\xa5\x69\xd3\x8e\xd2\xc6\x4a\xc0\xe9\x72\xb3\xb3\xc5\xa0\xe8\xec\x27\xfb\x57\xce\x48\x87\x8b\x3e\x28\x6b\x9c\x93\x38\x04\x4c\x31\x81\x73\xe5\x34\xb8\xc1\x61\xd5\x77\x98\x62\x34\xef\x78\x8f\x39\xfb\x26\x1d\xa1\x61\xcb\xce\xbe\xa3\x4d\x3a\x69\xbe\xcb\x42\x26\x0d\x40\xc1\xa8\x70\xdd\x8e\x25\x50\x76\x40\x2b\x57\x0c\x1b\xac\x4d\x1c\xb4\x5d\x11\xad\xcc\x93\x25\x73\xdd\x6a\xc0\x32\x9a\x58\xee\x99\x36\x68\x2d\x58\xa6\x0e\x8e\x9e\xaa\x79\xda\xb0\xa9\xc1\x3c\x7d\x69\xe6\x8e\x4f\x23\x8e\x9e\x33\xfe\xff\x18\xe2\x68\x32\x1b\xcc\x4e\xd5\x85\x0b\x15\x0d\xc0\x84\xd1\x16\x30\x94\x01\x60\xe8\x76\xb4\xd0\x83\xa1\xd4\x6b\x3d\x12\xf5\x0f\x45\xe7\x92\x7c\xba\xe8\x84\x4a\x7e\x3a\x68\x49\xb5\x28\x71\x34\x78\xac\x39\xe3\x3d\xf4\x03\xff\x50\xd6\xfd\xb9\x33\x7e\x5d\xf7\x55\x7a\xfd\x75\x03\x2b\xbf\x70\xc4\x7f\x03\xd5\x7e\xce\x52\x6a\xaa\xcd\xd2\xfc\xe3\xd7\x56\x2c\xbf\xd9\x56\xf5\xe7\xc2\xa7\x4c\xd5\x45\xf6\x99\xf8\xc0\xcd\x9a\xb7\xd6\xfa\xd5\x99\xc6\xfc\x83\xa7\x90\x5b\x49\xa3\x39\x6b\x5e\xf2\x20\x84\xdb\xcf\x45\x9a\xf3\x67\x9f\x4c\x1b\x61\x70\xdf\x9f\x06\xfe\x41\x9b\x93\xf0\xe0\x8b\xd3\x87\xb5\x80\xe6\x7a\x9f\x77\x38\x11\xac\xd0\x71\x3c\x96\xcf\xaa\x5f\x53\xbe\xe8\xc2\x9b\x1f\x62\xe4\xe8\x27\x0e\xb6\x5a\xac\x6f\x6e\x0f\x65\x67\xc4\xfe\x72\xd3\x1b\x6c\x4b\xda\xaf\x9c\xa6\x56\xde\x98\xaa\x93\x58\x3c\x30\x59\x62\x52\x54\x62\x92\x5b\x7b\x39\x66\xfb\xf4\xe9\xd8\xf7\x35\xa9\x70\xc0\x0d\xbe\x80\x56\xe4\x48\x25\x44\xe6\x5a\xcf\xe7\x24\xf0\x0f\x7b\x79\x60\xc8\xf1\x61\x70\x7c\x08\x43\xfb\xb9\x2d\xb4\xa6\xac\x79\x7a\xf7\xb9\xd0\xd3\x0d\xd2\xe2\x7c\x3b\x6d\x7d\x6e\x03\x68\xea\x2d\x72\x3e\x2d\xb2\xaf\x67\x21\xe2\x43\x87\x38\xea\xdb\x01\x36\xf2\xd9\xc4\x57\x76\x13\xaa\xf4\x2b\x22\xd2\xbb\x2d\x90\x9f\x0e\x35\xe0\x4b\x8e\xb7\x0f\x21\xdb\x96\x42\xbf\x9b\x97\xc5\xf2\xb9\xc2\x65\x23\x49\xe7\xae\x5e\x61\xb6\x67\xe3\x68\x94\xb8\xae\x2f\xe4\x9f\xa6\xb7\x96\xc0\x3b\x1f\x75\xa8\xdc\x20\x84\x10\x70\x6e\xce\x37\x41\x53\x13\x3a\x39\xc9\xcf\x92\x13\x38\xcc\xe5\x74\xdc\x05\x4d\x25\x29\xe2\xc4\xf7\xfd\x23\xdf\xf7\xb1\x95\x98\xd7\x82\x3c\xe1\x63\x67\x37\xad\x76\xf3\x82\xef\x26\xbb\x12\x35\x5e\xb0\x88\xdd\x95\x68\x8c\x83\xb5\x9b\x34\x3f\x3d\x7e\xfc\xf8\xf0\x38\x2c\x10\xc7\x41\x81\x1e\x3f\x3e\x78\x7a\x3c\x46\x88\xef\x01\x2e\xe9\x31\x3e\x3b\xf3\x27\x98\xf0\xff\xe1\x4f\x0e\x8e\xc6\x8f\x8f\x0f\x0f\x26\xd8\x58\x02\x4b\x48\x8e\x85\x2c\xda\x93\x59\x42\x5a\xa6\xf2\xd5\xa9\xaa\x0e\x27\x78\x93\x7b\xa4\xf9\x34\x5b\xcf\x20\xf5\x57\x3b\xb8\xfa\xe6\x00\xb3\x1b\x8d\xfe\x6d\xd2\x81\x58\x1f\x9b\xd8\xbc\xaf\x49\x18\x69\x2d\xef\xfe\xb2\xfe\x52\x11\x99\xf2\x24\x4b\xa7\x9f\x89\x73\xde\xa0\xec\x74\xfb\xba\xfe\xf2\xe3\x44\x21\x2b\xe0\x48\xf1\xc9\x63\xac\xb6\x6d\xed\x10\x0e\x39\xe4\x19\x56\xd8\x7a\xe5\x6d\xa6\x8a\x33\xce\x75\xad\xaf\x5e\x6a\xa2\x52\x5a\x0f\xbb\x70\xd8\xb7\x2e\x40\xa0\x9f\x12\x13\x42\x92\x8e\x4d\x42\x39\xb2\xe1\x4c\x87\x3b\xe2\x0a\x92\xbb\xc1\x18\x7c\xa9\xb4\xfe\xbc\x9e\x30\xac\x19\x2d\x4a\x36\x1f\xe4\x28\x43\x89\x93\x36\x65\xe3\xa4\x3d\xa9\xd2\x3e\x3d\x86\x72\xcb\xe4\x76\x98\x19\x88\x1d\xb0\x57\x26\xb7\x2a\xe1\x86\x95\x36\x68\x80\x3d\x44\x31\xa9\xe8\xe4\xa4\x3c\xab\x4e\xb0\x0a\xca\xd1\x3b\xe7\xa8\x02\x5c\x65\x52\x9d\xe6\xae\xdb\x7d\xd6\x52\x79\x15\xb7\xa1\x44\x49\x7f\x21\x6f\x49\x6c\x76\x30\x94\x76\xa9\xef\x36\x65\x2b\x25\x25\x5b\xb1\x84\x07\x12\x4a\xac\x83\xc9\xd3\x16\xf9\xa5\xd2\xb1\x5a\x26\xd9\x67\x22\xf3\x37\x66\x52\x7d\xb3\x65\x21\x7d\x75\x02\xa0\x01\x9d\xa7\xe2\x49\xc9\xb7\x68\x3d\xed\xb3\x0e\xe7\x6a\x6f\x7f\x52\xf3\xe9\x7c\x5d\xd2\x14\x19\xcd\xe5\x0b\xd5\x20\x43\x40\x82\x82\x3e\xa5\xe3\xe4\xa4\x6c\x75\x9c\x92\x94\xe3\x5c\x7f\x49\x29\xcd\xbf\x48\xc7\x19\x4a\x11\x34\x3c\x8b\xbc\x4c\x3f\x7e\x46\xcc\x6f\x4e\xa3\xfa\x68\xdb\x3c\x7e\x6e\x8f\x68\x2a\x5f\x5f\x7d\x6d\xcd\xeb\xed\xba\xfb\x50\xfe\xa1\x2d\xd5\x7e\x65\xba\x0b\xf9\xc5\xb6\x6a\xbf\x44\xee\x1c\x61\x24\x61\x7d\xbf\xaa\xde\x43\x53\x1b\xc0\x88\x42\x6d\x5f\x2a\x6c\xfa\xb8\xc6\x8f\x9f\x74\x7d\x6c\x7d\x5f\xa5\x15\x7e\x7a\x84\xbd\xbf\xbd\xfc\x17\x9c\x23\x1c\x2b\x70\x03\xff\xe0\x58\xa2\x1b\xf8\x07\x47\x12\xde\x00\xb2\xdc\xcf\x54\x2e\x19\x00\x38\x80\xbc\xff\x4b\xf8\x31\x91\x10\x07\xc7\xbe\x44\x38\xf8\xee\x29\x06\x70\x83\xc3\x27\x12\xda\xe0\x89\xaf\xa0\x0d\x04\x1b\xbe\xd5\x98\xca\x2f\xb5\xfb\xdf\x9d\x0a\xa9\x39\xa7\x12\xc7\x87\xbc\xd3\xae\x83\x1f\x95\x2f\xe1\x33\x05\xa0\x42\x3e\xd0\x77\xde\x9c\x3c\xa7\x1f\xbd\x39\x79\x4b\xcf\x01\xaa\x20\xd7\x49\xf7\x7f\xa6\xb9\xf7\xd7\xf3\x77\x3f\x91\xdf\xe9\xcf\xae\xfb\xb3\x27\xd1\x90\xd3\xf9\x3d\x79\x41\x67\xc8\xb9\x5c\xa4\xb3\x19\xcb\x1d\x4c\x7e\x12\x97\xdd\xdc\x45\xaf\xe9\x43\xe3\xad\x94\x33\xf6\xeb\xea\xa5\x74\x0f\xbf\xca\x18\x79\x43\xa7\xc8\xa9\xa0\x86\xbd\x92\x5d\xa7\x15\x2f\xef\x1d\x4c\x5e\xb5\xb7\x85\x1e\xf4\xa7\xb8\x2c\x56\x7b\xed\x9d\x1f\xe9\x06\x2c\xc7\xf7\x43\x07\xf9\xef\xc9\x3f\x68\xee\xfd\x5d\xbe\x4c\x7e\xa5\xa3\x7f\xd4\xf5\xe8\x1f\xed\x57\xdd\x2b\xc8\xd3\xfd\x7c\x91\x66\x33\xf2\x07\x2d\x5c\x37\x1b\x30\xef\x7c\x37\xa2\x77\xe8\x39\x7a\x68\x40\x72\x3e\x0c\x3b\x76\x3d\x6f\x65\xab\x92\xf1\xdf\x35\xd8\x4b\x9a\x06\x8b\x7f\x71\x38\x2c\x55\x3e\xa0\x1f\x09\xc7\x3b\xb9\x09\x4e\xf8\x31\xe2\x31\x79\xae\xa3\x2f\x72\xd7\x65\x23\x4a\x7f\x74\xdd\xe7\xe2\x45\x92\xe3\x26\x78\x4e\x7e\x19\x88\xd6\x7e\x15\xb1\x98\xde\xa1\xf7\x56\x08\x8c\x81\xda\xf3\x2e\x3f\x52\x46\x78\x43\xfe\x45\xbf\x77\x5d\x35\xc8\xd6\x80\x79\x29\x67\x65\xc2\x8b\x32\xdc\x5c\x4b\x1b\x6f\xb3\x66\x10\xda\xb5\x63\x51\x6b\xc8\x0f\xdb\xd0\x1e\x19\x85\xee\xfc\x80\xfe\x94\x3d\x94\xaa\x18\xbd\x55\x91\x28\xd7\x62\xcf\x9a\xa2\x57\x84\xe3\x10\x95\x1e\x33\x64\x03\xf8\xee\xe4\x05\x76\x5d\x16\xbd\x88\x23\x1e\xbb\x2e\x52\xbf\x28\x04\xe6\xd2\x3b\x54\x9a\x30\x84\xab\x8c\x05\x2f\xd1\x04\xb2\x2c\x62\x1c\xa8\x6f\xeb\x5a\x0c\xec\x0b\xf2\x12\xf9\xe4\xa1\xc1\x98\x98\x02\x26\x98\xfc\xa1\x1a\x8a\x03\x3d\xfa\x0d\xf9\x5b\xcf\x69\x11\xc4\x8b\x95\x14\x82\xde\x00\x94\x01\xc7\x82\x33\x4c\x20\x6d\x96\xb2\x68\x17\x67\xe9\x09\xfe\x01\x31\x52\xd2\x3c\x4a\xc5\x86\x86\x47\x65\x9b\x8c\x93\x35\xe4\x9b\x81\x49\x7c\x6d\x9f\x72\xd0\x5b\x04\xa9\x01\xdb\xa0\x16\x15\xca\xfa\xa3\xeb\x8a\x11\x62\x12\x73\xf9\x4f\xc2\x30\x78\x6e\x22\x0e\x28\x7b\xca\x0a\x02\xbf\x5f\xc1\x0f\x75\x4f\x8c\x1d\xa4\x3f\x7c\x11\x47\x2c\xc6\x75\xcd\x71\x43\xfe\xbe\x89\xb2\xc1\xe8\x65\x77\x4e\x80\x02\x55\x79\x1c\xca\xfb\x93\x70\xac\x5d\x38\x3f\x48\xff\x67\xed\xa3\xd9\x79\xaf\x33\x61\x75\xdd\x99\x50\x18\xf4\xb2\x69\xc8\x3f\x87\xa1\x25\x21\x9c\x54\xb4\x44\x08\x77\x19\x1f\xdb\x41\xac\x80\x5a\xa8\x42\xad\xa8\x6b\x4e\xe9\x0b\xf8\x77\x5d\xd7\xb9\x8e\xa3\x31\xe1\x65\x0d\xf9\xaf\xad\xb5\x00\x45\x92\x9c\xbe\x45\x65\xf8\x67\x20\x6b\x2c\x44\x8d\xb0\x43\xd5\x35\x26\x27\x58\x76\x8c\xe6\x32\xab\x47\x5d\x97\x30\xfe\x3f\x42\x5f\x0b\x59\xe5\xab\x88\xb7\x93\x5c\x34\x3b\xdf\xd7\x35\xaa\x10\x7a\x6f\x87\x7e\xab\x58\x9d\xce\x82\x51\xbb\x5b\x83\x47\x83\x1c\xc9\x82\xdb\x0d\xae\xe5\xf3\x39\x72\xa4\xd5\x9e\xd1\xc5\xa6\xa6\x34\x6c\xc5\x25\x16\x7e\x67\x29\x37\x43\x92\x90\x94\x3f\xf3\x9f\x04\x96\x9d\xa1\x13\xf9\x33\x7a\x11\x03\x95\xa1\x96\x6c\x60\xad\xfd\xa1\x55\x38\xb1\x90\x4a\x6c\xd0\x67\x76\x0b\xd7\xfd\xd5\x75\xff\x40\x3f\x0e\xf9\xc3\x56\x8c\x07\xbc\xc1\xe4\x17\x08\x42\xff\x42\x70\x25\x15\x8c\xf4\xb1\xc1\xe4\x9d\x37\xa7\x7f\x27\x1f\xbd\x39\xfd\x81\x68\x27\x68\x21\xb1\xe8\x3f\xe1\xf2\x89\xb8\xfc\x06\x7e\x1e\x89\x9f\xff\x45\x0a\xd7\x1d\x01\xdc\x90\xeb\x56\xe8\x47\xe2\x0c\x49\x23\x87\x7c\x03\x34\xbe\xf2\xe6\x43\x61\xf4\xbf\xa0\x19\x44\xe6\x60\x92\xa0\xc4\xfb\x61\x9c\x78\xbf\x8e\x13\xef\xd5\xa3\xd1\xf7\xe4\x41\xce\x50\xf0\xbe\x69\x59\xc2\x5f\xa9\x9d\x13\x8e\xa4\xd5\x73\x38\x94\x38\x5f\x95\x2c\x99\x81\xf0\xd3\x9c\x96\x80\x8f\x27\x51\xbe\x76\x44\xba\x8f\x10\x85\xf1\x43\xe0\xb8\x94\x58\x02\x95\x58\xf8\x55\x64\x9d\x57\xd3\x62\x25\x8a\xab\x3a\x00\xed\x8c\xd1\xc9\xc9\x5f\x35\x21\x30\x76\x82\x67\xe8\xaf\x11\x93\x59\x80\x0d\xc5\x33\xfa\x0c\xcd\xbc\x8a\x17\x25\xc3\xa4\x14\x9f\x70\xbd\x39\x3d\x2b\xd9\x09\x5e\x22\xce\xa2\x52\x7e\x04\xa1\x42\xba\xc3\x8a\x24\x1d\x22\x56\xcf\xb0\x05\xf6\x0d\x61\x63\xea\x38\x38\x7c\x13\xb1\x38\x10\xff\xd0\xf7\x62\xb6\xc9\x47\x76\xff\xaa\xf7\x51\x3a\x47\xa3\x7f\x89\xc1\xed\x93\x3e\xb3\xed\x3a\x52\xfa\x08\x8a\x37\x1d\xd8\x4d\xf3\xdd\x37\x38\x9d\xa3\x37\x82\x75\x5b\x09\xad\x79\x43\xd6\x15\x3b\x67\x9c\xdb\x38\xe0\xf8\xe1\x57\x3a\x9a\xc8\x47\xe9\x72\x65\xc7\xd3\xc0\x23\x08\x67\xeb\x76\xb4\x0f\xbb\xf9\xe9\x63\x6a\x1e\xde\x21\x86\x83\xbf\xa1\x3b\x15\x4e\x46\x7a\xc1\x97\x3f\x90\x0d\x8c\xcd\xbf\x91\xad\xd1\x6a\x7f\x27\x03\x18\x8d\xc1\x3f\x7b\x77\xe5\x5c\x54\xc1\x7f\x35\x98\xfc\xec\xba\x6d\xfb\xd1\xe8\xfb\xba\xce\x36\x0f\xcc\xde\x23\x73\x58\x26\x43\x6f\x9d\x11\xfd\x1d\x49\x41\xe0\x3c\x34\x70\xf5\x90\x04\xac\xb1\xae\xe5\x38\xc8\x05\x80\x89\x23\x54\x41\xd8\xdd\x29\x2d\x70\x9b\xc1\x4f\xf0\x6b\x16\x93\x94\xfa\x27\x1b\xec\x29\x3d\xc1\x8a\x3b\xb7\x6c\x0a\xe2\x0e\x77\x00\xe3\x45\x70\x57\x3f\x26\xe8\x0a\x60\x07\xcd\x31\x3d\x88\xba\x7f\x59\xee\x21\xf7\xf0\xbc\x83\x4a\xac\xa4\xd7\x80\x42\x58\x02\xe2\x50\xdf\x83\x00\x93\xd1\xbf\x84\xe4\x36\xc4\x83\x89\xa8\x9b\x72\xf2\xbb\xf2\xb4\xf8\x19\xc0\x5a\x30\xb1\x74\xaa\xe8\xa7\x58\x67\xdf\xb4\xee\x92\x9f\xec\x77\x74\xca\x08\x4c\xe6\xe8\xbd\x59\x35\xe2\x4a\xec\x6f\x75\x4e\x16\xc1\x74\xe6\x48\xe9\xd7\x6a\x68\x15\x62\x9c\x89\x26\xd1\xb0\x9b\xca\x53\x7f\x72\x14\xf8\x93\x23\xd2\x62\x16\x3e\x09\xfc\xc9\x13\x13\x6d\xd2\x7a\xf2\x6b\xb4\x83\xe3\xc0\x3f\x38\xb6\x92\xb8\xcb\x70\x5d\xff\xe8\xbb\xc0\x3f\xfa\x8e\xf8\x8f\x27\x81\xff\x78\x42\xfc\xc7\x7e\xe0\x3f\xf6\x5b\x14\x04\xfb\xac\xd2\x0f\x8e\xfd\x81\x30\x68\x95\x5e\xe1\x20\xf8\xee\x80\x7c\xf7\x34\xf8\x4e\x43\x01\x2a\x14\x84\xa3\xe0\xe9\x51\x3f\xed\xc2\x50\x26\xd2\xcf\xd8\x22\x8e\xb5\x8d\xe9\x71\x17\x16\x00\xec\xd9\x6b\x6d\xae\xc8\xd4\x86\x68\xaa\x52\x2c\x40\xc2\xde\xef\xd7\xf3\x39\x2b\xd5\x8e\xeb\x3b\xb1\xe3\x2a\x3a\x0f\x66\xb4\xf0\x5e\x24\x3c\xf9\x25\x65\xb7\x10\xcb\xf4\xec\xfb\x5f\x5c\x77\xea\xa5\x15\xdc\x59\xd2\x85\x35\xa1\x60\x37\x20\x37\x34\xf5\x7e\x79\xfd\xf2\x57\x03\x95\xf7\xab\x34\x90\x4f\x47\x94\x2e\x30\x79\xb0\x8a\x0f\x16\x3a\x44\x56\xe2\x33\xa4\xde\xf3\x77\x3f\x9d\x7f\x78\xaf\x72\x1c\xcb\x97\x20\xcc\x4f\xd4\x36\xc4\x4b\x57\xae\xbb\x02\xa0\xb4\x0c\x92\x17\xdc\xe8\x98\x43\xa2\x6d\x30\xff\xf8\x54\x66\xa5\x51\xce\x6e\x77\x17\xe8\x00\x1b\x57\x4e\xa5\x07\x78\x57\xf7\x9c\xbd\x31\xd9\xbc\xba\xad\x19\xca\xf2\x6d\xbc\xb6\x46\x94\x2e\x5d\xb7\x65\x7a\x7a\xdd\x2c\xe5\xb2\x4a\x94\x3b\x8b\xad\x1f\x53\x75\xd3\xaa\x54\x86\xf7\x80\xb2\x41\x2b\xd4\x4b\x0f\x5e\x82\xd7\x0e\xbb\x45\x52\x41\x22\x0b\x8c\xd1\x1a\xa5\x7b\x39\x86\xe0\x26\x76\xbb\x3b\x53\xb5\x4c\xd5\x55\x21\x36\xce\x93\x93\xfc\x34\x3d\xc1\x53\xaf\x62\xfc\x1f\x69\xce\x9f\xa0\xd5\x78\x4c\x32\xef\x5a\x5f\xe6\xe3\x31\xb6\x94\xb2\xa6\x85\xb3\xb1\xfb\x6f\x65\x78\xb6\x80\x42\xba\x59\xc1\xfd\xa3\xc7\x81\x7f\xf4\x98\xf8\x47\xc7\x81\x7f\x74\xbc\x0d\xf6\xa2\x8d\x3a\xfd\x92\x8c\xb5\x2d\x29\x8d\x24\xd1\x0b\x5a\x24\x0f\x9a\x3a\x03\xb9\x00\x0c\xb5\x2a\xfb\x65\xb7\x21\xc6\xd8\x38\x94\xd2\x56\x14\x70\x84\x91\x03\x40\x91\x87\x07\x0e\x39\xfa\xb4\xb9\x18\x9c\x9e\x7a\x86\x13\x79\x53\x1b\x4f\x8f\x02\xff\x08\x8c\x27\x43\x49\x60\x3b\xd5\x1d\x1f\x39\xe4\xc9\x7f\xae\xba\x01\x7b\xa6\xae\xee\x75\xce\xfd\xe3\xae\x7f\xe5\xff\x66\x65\xc3\x49\xc1\x75\x65\xff\xe1\x81\x1c\xb0\xf0\x59\x95\x3d\xe9\x7a\x16\xff\x6f\xd6\x35\x60\xd6\xd3\x75\x89\x15\xf3\x1f\x1e\xc6\x01\x6b\x9e\x5d\xdb\x7f\x78\x1c\x07\xac\x79\x76\x6d\xff\xd9\x81\x1c\x06\xda\xfe\x0f\x55\x66\x32\xed\x9a\xfa\x86\xd2\x71\x0e\x41\xad\x2a\x63\x25\x24\x5f\x3b\xc0\x68\xa2\x23\xcc\x94\xf8\x7c\x7a\xa4\xec\x94\xdf\x29\x00\xd6\x89\x89\x14\x96\x02\xf3\xe8\xa9\x36\x51\x3e\xc5\x64\x46\x47\xa9\xf7\x6c\x2a\x76\x21\xff\x94\x0a\xa1\xeb\x3a\x9d\x6b\xc8\xd9\x4c\x56\xb4\x12\x2c\xf7\x57\x96\x7c\x24\xcb\xa1\x28\x77\xe9\xdc\x38\x87\x9d\x07\xb9\x1f\xda\x6d\xfd\x07\x7c\x95\xae\xe9\x46\x7e\x64\x08\x4a\x66\x58\xdb\x58\x56\xed\x11\xc1\x48\xca\x9e\x1b\x2d\x70\x1c\xd1\x78\x48\x7b\x0c\x39\xf9\x21\x12\x34\x34\xe8\x18\xb1\x81\x1e\xd8\x9e\x41\x39\x03\x97\xa8\x8d\xe2\x88\xca\x9e\x7c\x45\x37\xfc\xb6\xf4\x3b\xe4\x9e\x5c\x93\x8c\x8c\x26\x62\xda\x77\x16\xae\x3b\x73\x5d\xb4\x46\x28\xa7\x20\xc9\x9e\xb7\xdb\x7f\x74\xdf\x69\xa8\x95\xcc\x0e\x93\xca\xfb\xe9\xe5\xcb\x17\x74\x34\x21\x05\x8a\x1c\x69\x52\x74\x88\xd8\x94\x3a\xc4\xb9\x66\xe0\x49\xc0\xb8\x13\x0f\x44\x08\x5c\x59\x25\x95\x94\x47\x2c\xde\x49\x10\x27\x8c\x58\xd4\x9a\xaa\xd1\xe4\x42\x1f\x5f\x0a\xed\x59\x9d\xab\xce\x85\x32\x2e\x7f\x49\x50\x3b\x69\xa1\x28\xd4\xe1\xe9\x3c\x62\x31\x7c\xae\xb7\x20\xa2\x11\x94\x32\x19\x63\x5b\x34\x5d\xa7\x6f\xb5\x0a\x52\x80\xff\xea\x60\x28\x6b\x37\xb2\x83\xe0\xe8\x80\x3c\x9e\x04\x8f\x27\xd2\x99\xac\x0b\xce\x23\xb5\x4f\x9d\x6a\x61\x28\xbd\xec\xa0\xde\xf9\x78\x62\xf9\xd7\x59\xb3\xf3\xff\xb9\x67\x9d\x6e\x84\x20\x23\x88\x39\x27\x39\x19\xf9\xbd\x44\xdc\xd6\x68\x40\xaf\xbf\x3a\xe9\xc7\x77\x5a\xd9\x3e\xd0\x30\x45\x0a\x59\xe0\x50\xa5\x6b\x3c\x7a\x6c\x8e\x3f\x41\x6f\x72\xc8\xc3\x3c\x4b\xf8\xdb\x64\x35\x9c\xd1\x46\x9d\xf4\x59\x60\x4b\x0a\x73\xc8\x1c\xbe\x91\x92\xae\x51\x4e\xc4\xb8\xa3\x92\xe4\x24\x27\x9c\x4c\x88\x4f\x2c\xf7\x85\xc8\x8f\xc1\x4a\x28\x74\xb6\xc3\xc7\x18\x39\xaa\x4a\xa9\xae\xf5\xe3\x7b\x24\x80\xd3\xe3\xe0\xf0\x31\x39\x7a\x1c\x1c\x3d\xd6\xaa\xd9\x77\xc1\xb1\xa4\x85\xaf\x3d\x0f\x3d\xf2\xa5\x7f\x41\xaf\xdf\x9f\x70\xcd\x30\x7e\x68\x5f\xe1\x82\xa1\xfb\xd6\x7a\x72\x34\xe4\x41\x75\xc3\x0f\xec\xe3\xe9\xcf\x64\xbd\x55\x70\xde\x93\xb6\xd1\x36\xdc\x3a\xcb\x79\x99\x6e\x6b\xb4\xf1\x9b\xf3\x27\x81\xef\x5b\xb1\xd5\x4f\xbf\xc4\xc1\xc8\xd7\xc7\xc6\x47\x5a\xd8\x4c\x14\xf5\x3c\x3e\xdc\x6c\xc8\x36\xdb\x47\xf5\x09\x8b\x42\x21\xa3\x92\x12\x6f\x0e\xb9\x91\x72\x21\xb2\x1e\x1a\x32\xa7\x93\x93\x4c\x0f\xf0\xfc\x04\x9b\xcd\x0a\x92\xb4\xc5\x69\x16\xcd\xc1\x59\xc0\x75\x2b\x34\x95\xa8\x69\xaa\xd3\xd3\x1e\x7a\x83\x42\x3b\xd1\xfb\xe5\xc7\x87\xc1\x63\xeb\x18\xff\x33\x69\x7b\xad\xa1\xf7\x37\x7b\x0c\x26\x81\xaf\x1e\xf9\xaf\x85\xa1\x7a\xac\xc2\x87\xbf\xd3\x93\x20\x76\xbe\x95\x02\x3c\x37\xa7\xf7\x1d\x78\xce\x79\x9a\x27\x59\x76\x3f\x70\x4e\x2f\x37\x6f\x24\xd5\x08\x9f\x75\x5d\xe8\x9f\x62\xe1\x0e\xd8\x59\xd8\x8e\x6d\xb3\x95\x60\x8e\xa1\x6d\x76\x36\x8c\x80\x13\x86\x70\x1f\xa8\xd2\x3c\x2f\x1b\xdc\x04\x8c\x7c\xdd\xb7\xd2\x8a\x28\x3f\x35\x03\xaa\xe0\x20\xd5\x6e\x4e\x82\x39\xf6\xf2\x25\x0e\x25\x36\xfe\x8c\x07\x97\x09\xd2\x96\x1e\xf2\xbf\x48\x9c\xf8\x8b\x7d\x7f\x72\xe1\x5d\xcc\xc6\x08\xfe\xc5\x21\xda\x7d\x5b\x5c\xa5\x19\xbb\xd8\xbf\xb8\x1d\xe3\x70\xf7\x3c\x99\x27\x65\x7a\xb1\xbf\x2f\x83\x6a\x0a\xdb\x0f\x2c\xb1\xbc\x27\x56\xc9\xec\x65\x3e\x28\x16\xbe\x92\xb5\xc0\xe9\x97\x3a\xee\x3e\x08\xfc\xc3\x03\x03\x78\xd9\x92\xd8\x57\x1b\x65\xfe\x5f\xe8\xfd\x39\x4f\xb6\x65\xef\xff\xca\xfe\x4f\x3e\xd3\xff\xc3\xa1\x34\xca\x5b\x5d\x0d\xde\xb0\xf9\x57\x6a\x02\x62\xfc\x09\x7c\x0b\x7d\x72\xba\xae\x07\x87\x9f\x4d\xa9\x6c\xd7\xfe\x3e\xbd\x5e\x7c\x65\xf5\x07\xa6\xfa\x97\xf9\x6c\xa3\xf2\xe1\xad\xfb\xe3\x09\x46\x4e\x52\xdd\xe7\xd3\xd7\xea\xa8\x42\x7e\x28\x8d\x85\xf0\xe1\x80\x10\xb5\x20\xf7\x91\x7f\x7c\xd4\x66\x68\x51\x81\xb2\x3a\x05\xf4\x44\xf2\xa3\xef\x14\x6c\xcd\x93\x27\x2a\xda\x52\x70\xae\x29\xcd\x90\x93\x9a\x4a\xc9\x5c\x5c\x77\xf2\x76\x90\x05\x5d\x4b\x2b\x1e\x99\xd1\x87\xe7\xe7\xe7\xef\xd7\x19\x7b\x93\x56\x3c\x18\x4d\xc8\xf3\xf3\xf3\x73\x7e\x9f\xb1\x17\x6c\x9a\x25\x25\xe4\xff\x0a\x46\xbe\xb8\xfd\x8b\x60\xbe\xf2\x35\x9f\x3c\xcf\x52\x96\xf3\xf7\x6c\xca\xf5\x9d\x17\xef\xde\xf6\x2e\x65\x95\xd6\x8d\x0f\xc5\x47\x96\xeb\x8a\x5e\x24\x3c\xf9\x50\x26\x79\x35\x67\xe5\x6b\xce\x96\xfa\xbd\x57\x69\x66\x6a\xf9\xf1\xc3\xdb\x37\xcf\xb2\xec\x79\x91\x65\x12\x88\x5d\xdf\xdc\xbc\xf3\xaa\x28\x97\x2f\x33\x26\x68\x57\xdf\x3a\x67\xe2\x1d\xeb\xe6\x5b\x36\x4b\x13\x5d\xff\xdb\x74\xc9\x3e\xdc\xaf\x18\x0c\x84\x78\xfa\x53\xb2\x64\xb3\x9f\x8a\x19\x13\xaa\x98\xb8\x2e\x66\x66\x54\x7e\x4e\x52\xd1\xdb\x3f\xd6\xac\x32\x3d\xfc\x39\x5b\x5f\xa7\x79\xfb\xcb\x14\x74\xfe\xcb\x0f\xd2\x4c\xa7\xdf\x3c\xff\xe5\x07\x99\x6b\xcd\xba\xf1\x73\xc2\x17\xe7\xec\xda\xbe\x53\xa4\x39\xb7\xae\xbb\xc3\x77\xfe\xcb\x0f\x72\xb4\x8a\xd2\x0c\xd5\x39\x84\xe8\x48\xc3\x9b\xb9\x27\x26\xef\x7c\xc1\x18\xd7\x6d\xff\xc0\xee\xf8\x87\x32\x99\x7e\x7c\xde\x4e\x9f\xb9\x67\x6e\x14\xeb\xa9\x6e\x6f\x43\x56\x34\x45\x33\x4c\x96\x74\x72\xb2\x3c\x5d\xe9\xc3\xf8\xe5\x78\x2c\xa5\xda\x0d\xb9\xa7\xab\x68\x19\x93\x6b\x3a\x8b\xee\x63\x72\x45\x13\xf1\xe7\x92\x5e\xb9\xae\xb5\xff\xd9\x49\xe7\xe8\xd2\x75\xd1\x65\x34\x8d\xeb\xba\x42\x97\x64\x4a\x16\x98\x5c\x46\x73\x75\x39\x27\xf7\x98\xac\xa3\xfb\x98\x2e\xc8\x35\xc6\x40\xfd\xbb\x69\xbe\x9b\xe3\xcb\xe8\x26\xae\xeb\x02\x5d\x92\x1b\x92\x47\x37\xb1\x52\xd8\xdb\x44\x43\xbd\x74\x30\xfe\xf1\x51\xe0\xb7\x66\x75\x30\xa8\x3f\x79\x12\x3c\x79\x02\x2b\xed\x4b\xb4\xbd\xc3\xe3\xd6\x8c\xf8\x3d\x20\x7b\xbd\x5e\x2e\x05\xbd\x70\x16\x00\x12\x19\x99\x66\x2c\x29\xed\x9b\x70\x43\x31\x46\x89\x84\xdc\x32\xc4\x4f\x68\x7b\xda\x01\xea\xb8\x2b\x02\xa2\x58\x19\xc8\x2b\xba\xff\xf6\xfc\xf5\xcb\x5d\xef\xc2\x33\x5c\x9e\xac\x3f\xb9\xd1\xb7\xca\xdf\xe0\xe9\x07\x24\xa5\xa3\x11\x38\x78\x4a\x13\xb3\x7e\x81\x1c\xb4\x7e\x14\x28\x0f\x2d\xf6\x37\x74\xfa\xc3\x43\x1e\xbc\x6a\x5d\x61\x15\x9c\xb2\x52\x6e\x70\x03\x76\xe7\xa6\x01\x38\xc9\x1f\xc6\xa9\xf7\x3d\x80\xb2\x56\x30\x90\x1f\xd2\x25\x2b\xd6\x3c\x58\xa3\xdc\x6b\x2f\xb1\xd8\xfe\xbf\xce\x39\x2b\x6f\x92\x4c\x3f\xd3\xd7\xca\x07\xd4\x96\x33\x46\xd7\x38\x1c\x4a\x76\xcc\xd0\xe1\xe4\x31\xec\x00\x26\x47\xf2\xcf\x21\x26\x1d\x2b\xc1\x01\xec\x06\x26\x87\xc1\xe1\xe4\x10\x68\xe2\x70\x72\x04\x13\x75\x38\x79\x2c\x75\x1a\x28\x7b\x2b\x94\x98\x3d\xfe\x1b\xb2\x9d\x93\x72\xd3\xad\x2a\xa7\xa5\xb7\x48\x2a\x4b\x47\x27\xe9\x90\xc2\x27\x8f\xb6\x42\x75\x10\xfe\xd0\x90\x82\xa6\xc6\x97\xa8\xae\x9d\xff\xf9\x3f\x0d\x3b\x27\x09\x4d\xbd\x8e\x58\x81\xe7\x5d\x41\x43\x2a\x9a\x7a\x16\xc7\x87\x57\x6c\x09\xd0\x62\x71\xac\x55\xf4\xbc\x89\xfb\x85\xcc\xfc\xa6\x0b\xb6\x73\xc5\x32\xe4\xc1\xb2\x85\x24\x94\x67\xba\x28\xb5\xb1\x82\x13\x30\x5a\x3c\x43\x79\x5d\x47\x96\xff\x86\x77\x99\xe6\x37\xc5\x47\xb6\xe1\xcb\xa4\x22\x80\x77\xfa\xe4\x9c\x12\x99\xd1\x3f\xa7\x94\x2e\xd4\xc1\xb6\x28\x59\xf9\x74\xfc\xc0\x72\xd9\xd3\xdd\xb4\xda\x4d\xb2\x92\x25\xb3\xfb\xdd\x72\x9d\xe7\x42\xf5\x91\x51\xad\x94\xd2\x99\x3c\xc7\x84\xaf\x1d\x4a\x69\xaa\x0a\x2a\x76\x8c\xa7\x99\xc4\x7a\x29\xbd\x25\xe3\x8b\x62\x46\x53\x52\x7a\x49\x79\x4d\x0b\x8d\x38\x93\xd0\xd2\x9b\xb1\x8c\x5d\x27\x1c\x98\x59\xa2\x31\xe4\xcf\x51\xa2\xe0\xfa\x2a\xa8\xa5\xa2\x94\xae\xf0\xb4\xc8\x79\x9a\xaf\x8d\xfe\x5e\x35\x8d\x68\x41\xce\xee\xb8\x68\x80\xae\x07\x97\x5e\xc5\x72\x4e\x4b\xef\x52\xfd\x4d\xca\x6b\x08\xa4\xdd\xed\x34\xd8\xbc\xaf\x87\x62\xaa\x87\x82\xce\x64\x4b\x77\x4a\x6f\x96\x56\xab\x84\x4f\x17\x2f\xef\xa6\x6c\x25\x95\x7c\xf1\x44\x22\xb8\x38\xca\x4c\x64\x15\xe6\xba\xa5\x97\x5c\x95\xeb\x15\xa4\x3e\x81\xa7\xb2\x2c\xbc\x93\xd3\x85\x82\x9b\xca\x2c\x5c\x6c\x27\x2f\xca\x65\x92\x89\x32\xd6\x1e\x4c\xb3\x6c\x4e\x09\x01\xda\xe1\x2c\x98\x93\x35\x8c\xda\xc0\x08\x28\x07\x3e\x78\x2e\x1d\xf5\xe5\x57\x4d\xd3\xf6\x52\x16\xea\xba\x48\xf6\x4a\x4d\x85\x7a\xae\x26\x64\x2d\xbb\xd4\x34\x88\x01\x14\x08\x29\x1a\x43\xc1\xba\xad\x0f\x2d\x72\xe4\x83\x28\x31\xd0\x0d\x17\x5a\x6e\xc0\xb4\x0b\xb3\x60\x52\x26\xb1\x48\xe7\x75\x55\xa3\x78\x3b\x6f\x9a\x86\x79\xb7\x65\xb2\xa2\x6b\x85\xc6\xe1\x54\xeb\x6a\xc5\xf2\x19\x93\x6a\xb5\x43\xe6\xd6\xad\x7f\xa5\x2c\x9b\x39\x64\x41\x1d\x76\xc7\xa6\x6b\x0e\x2a\xf8\x8c\x3a\xd3\x62\xb9\xca\x18\x67\x33\x87\xac\xe8\x43\x63\x43\xe0\xe0\x87\xb6\x0b\x37\x9d\xab\x7b\x71\x25\xb1\x8f\x1e\x9a\x9d\xeb\xa8\x88\xe9\xb0\x3b\x4f\xb3\x23\x51\x91\xd4\x82\xec\xe2\xe3\x2a\x61\x8c\xae\xd0\x07\x14\xc5\x18\xe3\x9d\x4b\xd7\xbd\x1c\x51\x0a\x99\x7b\x60\x30\x2e\x49\x81\x5d\x17\x5d\xd3\x4b\x69\x65\xbc\xa5\xf7\x16\x04\xde\xd2\xfa\xdd\x5d\xf2\xd7\xb8\xed\xc8\x4b\xc1\x0d\x23\x49\xe2\x44\x0f\xa1\x26\xac\xd8\x9b\x17\xe5\xcb\x64\xba\x68\x37\x98\x1c\x3f\xb0\x88\xc7\x43\xc2\x4c\x99\x87\x81\x53\x98\x5c\xb2\xa6\xa2\xbb\x36\x05\x96\xfd\xa2\xe5\x8e\x45\x52\x0b\xa5\xbe\x40\x1d\xd0\x64\xb5\xe1\xb6\xda\x21\x38\x8c\xb9\xdc\xe5\x00\x5c\x50\x10\xb3\xc0\x33\xc4\xa2\x32\x26\x8c\xa4\x72\x11\xc8\x9e\x8d\x28\xad\xd4\x1a\x90\x0b\xa5\x02\xca\x9e\xd2\xb5\xc2\x27\xd0\x16\x11\xd7\x75\x64\x32\xbb\x96\xc9\x4f\xcd\xb8\x4f\x89\x73\x79\x99\xdc\x26\x29\x77\x70\xa8\x5a\x66\xd2\x37\x4c\x3d\xf5\x6c\x20\xff\x04\x57\xbc\x84\x30\x68\x6a\x17\x9f\x86\xeb\x46\xea\xa7\x38\xd8\x28\x7b\x28\xa7\x85\xc2\xf5\x64\xa4\x40\xeb\x5e\x91\x7a\x62\x36\x4a\x6e\x12\x54\xc9\x25\x89\x61\xe0\xc4\x68\x36\x26\xda\x8b\x53\x1e\xaa\x8c\x68\x05\x29\x70\x50\x20\xdc\xb4\x13\x79\x0e\xe7\xd6\x5a\x19\x32\x62\x2e\xd2\x4b\x3f\xd6\xfc\x5b\x9e\x9a\xb7\x0c\x18\x80\x28\xc8\x16\xf6\xd8\x16\xe4\xc9\x56\xb8\x6e\xcb\xd7\xbb\x8c\x8e\x72\x22\xdb\x30\x54\x96\x3e\x8e\x5f\xed\x6c\x61\x45\x82\x9a\x2c\xf7\xc2\x0f\x0b\xb6\xab\x6b\xde\x9d\x15\x4c\xfa\x5b\xad\xca\xe2\x26\x9d\xb1\xdd\x64\xf7\x5b\xf8\xf8\xdb\x5d\x59\x96\x63\xc6\x68\xd5\x48\x71\x9b\xa1\x9c\xb4\x6d\xd7\x9c\xb8\x2b\xb7\x24\xc5\x19\xdb\xfe\x60\xb3\x52\x20\xc4\xfe\x60\xad\xd4\xe9\x41\x2a\x85\x85\x12\xc7\x61\x21\x59\x37\x2a\x23\xa0\x8d\x75\xc6\xc5\xd6\x27\xa6\x85\xa4\x05\x52\x7a\x82\xcc\x28\x83\x3f\x6f\x8a\xa9\x59\xd0\x23\x5b\x8e\x58\xe3\x2b\xa9\x52\x8d\x2e\xde\x6c\x06\x0e\x8a\x00\x7d\xd9\x80\x9a\xc1\x94\x0d\x33\x1e\x6c\xf9\xae\x5a\x50\x43\xc5\xb7\xd4\xf5\xae\x35\xbc\x09\x81\xf0\xa6\x98\x06\x2c\x9a\xc4\xcd\x8e\x0f\x9e\x1f\xae\x8b\xb8\xcc\x44\xf3\xa6\x98\x52\x06\x56\xf1\x83\xf6\x89\xb2\xe2\xc9\x67\x07\x31\xe1\x5e\x32\xe7\xac\x94\xd7\x87\xb1\x8a\x43\xe3\xe5\xfd\x4b\x69\x02\x36\x38\xf3\xa6\xfe\x8f\x6d\xfd\xcc\x53\xec\x3f\x2d\xf2\xba\x7e\x68\x76\x38\x4c\x24\x35\x72\x49\x79\xaa\x73\x98\x3a\xfb\x6d\xca\xdb\x02\x9f\x99\xa0\xbb\xb6\x5a\x1a\xe9\xbe\x39\x65\x51\x70\xa7\x89\x09\x33\xac\xf6\x9d\x44\xa7\x32\xe9\x8f\x18\x47\x62\xef\x64\x0a\xfc\xa0\xce\xf2\x98\x76\x3c\x66\x51\x01\x6b\xae\xec\x61\x06\xc9\x34\x73\x43\xf6\x49\xa0\x0b\x83\x4b\x0c\x98\x43\x69\xf5\x53\xf2\x13\x62\x26\x90\x48\x69\x93\x7b\xbe\x95\x28\x70\xb7\x54\x49\x05\x4f\xc6\xe3\xf4\x94\x19\xd0\x12\x40\x7b\x51\x59\x25\x52\x0b\xb9\x48\x31\xa6\x28\x8d\x89\x54\x1b\xe8\xc8\x27\xe5\x4e\xef\x39\x37\x0f\x27\xa4\x6c\xda\x40\x35\x20\xe1\x44\x43\x84\x3c\x88\xcb\xe0\xb9\xc5\x87\x9e\x1b\x09\xa1\xb4\x14\xde\x82\xfa\x6b\xd7\x44\x4b\x04\xde\x76\xd0\x62\xef\xc9\x7d\xe7\xfa\x86\xdc\x47\x55\x4c\x6f\x40\x1d\xcb\x12\x70\x36\xa4\xad\x9e\xaa\xf7\x4d\x8e\x58\xeb\xd5\xc6\xed\x01\x0f\xf6\xa1\x61\xef\x61\xf6\xea\xc3\xd7\x11\x07\xbf\x3c\x4a\x6f\xea\x7a\xa0\x4a\x4a\x29\xe2\x76\xbb\xea\x9a\x03\x04\x07\xc6\x0d\x61\xde\x32\x29\x3f\x0e\x49\x63\x25\xf2\xbb\xc0\xdd\xe1\xe0\x5d\xc4\xc8\x3d\x0e\x10\xf3\x2e\x2f\x61\xbc\x2e\x2f\xe9\x3d\xa9\x60\x55\xd5\x35\x62\x62\x60\x06\xda\x85\x31\x61\x5b\x55\x8c\x5b\x4c\x98\x68\x5d\x02\x3a\xd8\x66\xf3\x1e\x94\x90\x0c\x58\xd3\x90\x97\xe8\xce\xde\x84\x58\x17\x51\xb2\x55\x77\x22\xcc\x7b\x66\x6f\x9a\xe8\x9d\xa8\x4e\xdc\xa1\x5d\xb7\x82\x16\x98\x53\x70\xaa\x3b\xb4\x36\xb7\xdb\xdd\xf3\xd0\xa4\xa2\x12\x87\x45\x50\x00\x1d\xa2\x01\xc1\x6b\xbe\x05\x5e\xac\xbc\x1d\xcd\xfb\x62\xfb\xfb\x52\x0c\xc3\x6d\x77\xf8\x1c\x72\xfb\x09\x85\x90\xdc\x9a\x6d\xdf\xe6\x2b\x26\xbf\xae\x29\x2c\x76\xc4\x30\x7c\x64\xf7\xd5\x00\x05\x5a\x70\x43\xa5\x4c\xab\xc1\x75\x46\xb7\x36\x20\xa6\x64\x37\xac\xac\x18\xc2\x64\x73\x91\xf3\x16\x95\x48\x0a\x7b\xee\xad\x8a\x15\x92\xfb\x33\x95\xa8\xa3\xbb\x94\x73\x7b\x9d\xb7\x87\xd9\xed\xea\x16\xcd\x95\x47\x40\xf4\x03\xb1\x12\xe2\xd1\x07\x6b\x5d\x04\xcf\x08\xb0\xbd\xbe\xf3\x82\x4a\x0f\xc7\x6e\x74\xaa\x3d\xe0\x10\xea\x37\x6c\xc4\x54\xa2\x3a\xf8\x29\x6f\xeb\xd6\xc8\x8b\x8e\xd4\x81\x5b\x5d\x01\x08\xb7\xa4\x86\xd1\x17\x14\x9a\x3b\x7f\xc4\x64\xc4\x70\x67\x60\x81\x5d\x3b\x6a\x87\x68\x40\x2a\x8d\xb6\x28\x53\x82\x41\x8c\x0a\xf0\xd8\x71\xd9\xc2\x96\xe9\x90\x82\x32\xa6\x1c\x37\xa4\xe2\xc5\x2a\xe8\x9c\xe5\x98\x2e\x4c\x54\xa4\x43\xaf\x5d\xd1\x24\xb6\xe4\x4e\x57\xef\x60\x52\xef\x90\x5b\x4e\x66\x6b\x10\x52\xb4\xdc\x24\x59\x43\x36\xb6\x9f\x83\xa3\x0e\x50\x5e\xaa\xa0\x9d\x16\xb1\xbc\xdd\x46\xa4\x12\x00\x57\xef\x9b\x95\xa0\x54\x7a\x82\x1c\x53\xa3\x96\xe4\x24\xfd\x94\xf2\x31\x1a\xa5\x06\xc1\xb5\xe8\xf7\xb7\x85\x9a\x2a\xce\xe8\xe4\x64\x6f\xaf\xd0\x1b\xfd\xfe\xc0\x14\x31\xa9\x68\xd2\x1f\x1c\x10\xb7\x94\xd2\xc4\x93\x02\xd8\x60\xe5\x02\x72\x89\xb4\x3d\xe8\x67\xa7\xd4\x50\x9c\x01\x39\x55\x16\x38\xe2\x68\x1d\xc4\x91\x78\xf3\xfa\x76\xab\x80\xc8\xb2\xd6\xae\x9b\x75\x89\xf7\x34\x31\xfa\x4b\x5b\x79\x7b\x0f\xbc\x5e\x7a\xef\xb7\x85\xda\x5f\x58\x77\x1b\x6d\x7b\x58\x7f\x75\x5d\x8d\xc6\xff\x1a\x65\x9b\x76\x1a\x5e\xde\xef\x56\x3c\xe1\x60\x7f\xdf\xbd\x4d\xf9\xa2\x58\xf3\x5d\xf8\x7c\xb7\x28\x77\x55\x0b\x9c\xff\x46\x83\x9b\xa6\x21\xd2\x8a\xd1\xf3\x1f\x6a\x9d\x66\xb7\xce\x7c\x29\x67\xbe\x34\x16\xaf\xde\xcc\x97\xb1\xc4\x42\xde\x98\x45\xb3\x24\xd3\xee\x44\xa9\x8c\x97\xd0\xf8\xd4\x6e\xa6\x92\x1b\xa9\xc4\x7e\x6d\x9a\xc2\x75\x91\x03\xbf\x61\x7d\xd5\xb5\xa3\xed\x25\x70\x8d\x5d\xb7\x68\x6b\x75\x5d\x7e\x4a\x0b\xab\x38\xd7\x45\x12\x8c\x4f\xee\xd6\x13\x09\xba\x67\xe8\x33\x78\xb0\x94\x1f\x99\x38\x94\x24\x8a\x1b\x15\x21\xda\xc6\xae\x60\x49\xd9\xd5\x08\x6d\x1d\x9e\x68\xe3\x05\x12\x3b\x4d\x7d\xb1\xe9\xd6\xfc\x05\x0c\xc3\xea\xb3\x27\x23\x47\xbb\x1d\x87\x9b\x61\xdb\x1c\xf8\x36\xb0\x8c\x57\xea\x0d\x64\x18\x0f\x35\xac\x16\xde\xed\x32\x63\xbd\xdb\x6b\x0b\x94\x8b\x33\xb0\x4c\x59\x4c\x59\x9d\xb8\x62\xa1\xf2\x3d\x8e\xc9\xaa\x21\xf3\x34\x4f\xab\xc5\x16\xe4\x85\xad\x64\xc5\x25\x59\x75\x52\x32\xd8\x64\xc5\xa5\x92\x6d\xef\x31\xec\x98\x9b\xce\x88\x97\xd6\xbc\x0a\xce\xa6\x36\x21\x98\x7c\x44\xa5\x68\xe2\x50\xd2\xd4\xff\x60\x13\x25\x0d\x42\xf3\x94\xe8\x2e\xb7\x4a\x89\xdc\xb2\x87\xa4\x34\x87\x59\x17\xad\xd4\xe2\x3b\x6d\x9a\x0d\xbe\x90\x66\x42\x90\x66\x8a\x13\x24\x9c\xb3\xe5\x0a\x0e\x75\xb5\x84\x05\x7b\x9a\x4d\x6a\xb6\x7b\x67\x57\x16\x3f\xe8\x0d\x63\x20\x36\x36\xa4\xdd\xce\x06\x25\x51\xdb\xd7\x20\x6f\x88\x31\xc2\x5a\x94\xa2\xa7\x5e\x09\x0e\x31\xac\xac\x41\x1b\x86\x1b\x1e\x9a\x63\x84\xe0\xa1\xd1\x19\x6a\xae\xb5\x12\xf5\x7e\x9d\xf3\x74\xc9\x68\xde\xe6\x77\x33\x2a\xa0\x53\x82\x31\xac\xff\xee\x2e\xdd\x2d\x1d\x8c\xc0\x39\xf5\xa1\x89\xc5\x3f\x04\xb6\xa2\xdd\xc5\xd5\x39\x64\xd8\x68\xd6\xb2\x98\xad\x33\x36\x60\x68\x92\x0f\x74\x93\xc3\xee\x25\x15\xfa\xe6\x14\xce\x7f\x42\x2e\xe3\x62\x37\xa2\xc9\xda\x57\x36\x59\xfa\xef\x7f\x5f\xb3\xf2\x7e\xb7\x64\x7f\xac\xd3\x92\x55\xbb\xc9\xee\x6d\x9a\xcf\x8a\x5b\xe0\xee\xbb\xc9\xae\xfe\xd2\x69\x95\x44\xc4\x70\x13\xc0\xbf\xc8\x59\xe7\x32\x84\x6b\xd6\x66\x21\x96\xdf\x87\xf2\x8f\x4c\x2d\xfb\x89\x61\xb8\xd1\x69\x5e\x73\xab\x27\x24\xdd\x62\x03\x2d\xa8\x52\x96\x48\x02\x24\x9c\x4f\x13\x4e\x2a\x2a\x11\x8d\xc8\x9a\x96\x1a\xe9\x87\x64\xf4\xa1\x21\x53\x9a\xb5\x20\x8d\x73\x9a\xf5\x0f\x6f\x16\x74\xde\x3e\x9f\xd1\x85\x94\x06\xb2\x6a\x0c\x16\x5e\xb2\x1c\xd8\xac\x0c\xef\xe5\x9c\x1c\x4e\x84\xad\x74\xcc\x5e\x5e\xcc\xe0\x44\xba\x21\x37\x43\x5b\x32\x99\xa4\x41\x6c\x03\x81\x81\xc9\x11\x6b\xc8\x3d\x95\x06\xec\xd1\x84\x54\xe5\x54\xfc\xc9\x8b\x7c\xca\xe4\x8f\xb7\x30\xfb\x62\x53\xdb\x2a\x5b\xd7\xf6\xf1\x0b\x58\x3d\x29\x2a\x69\x59\xd7\x39\x56\xfb\x2f\x75\x64\x8e\x1c\xe9\x51\x66\xf4\x1a\x60\xce\x84\x83\xfe\x9a\x0a\xdd\xf5\x1e\xa3\x82\xf2\x28\x8d\xc5\xa6\xf2\x9a\xf1\x67\x9c\x97\xe9\xd5\x9a\x0b\xce\xda\xb9\x46\x00\xe5\x9b\x88\x9d\xa3\x75\x8f\x14\x78\xa7\xf4\x16\x2c\x99\x79\xc9\x6a\xc5\x14\x80\x00\x4a\xb0\xb7\x4a\x4a\x96\xf3\x9f\x8a\x19\xf3\x4a\xb6\x2c\x6e\x98\x7e\xd2\x6e\xe0\xaf\x7a\x43\x43\x29\x0b\xd9\xd8\x71\x82\x8d\x15\x21\x04\xce\xc0\x1c\x84\x59\x34\xd5\xa6\x8e\xb8\xae\xf5\x67\x81\x09\xd0\x97\x50\xab\x83\x0e\xca\x62\x49\x5c\x7a\xf3\xdc\x4b\xf3\x54\xe6\xa8\x6a\xc8\x2d\xdd\xff\x2d\xba\xa8\x2e\xd6\xaf\x5e\xbe\x7a\x75\x71\xf7\x6c\x12\x8f\xeb\xde\xf5\x37\xfb\xd7\x3d\xdb\xb9\x64\xd9\xa3\x91\xa0\x08\xc9\xa8\x1d\x69\x8e\x32\x48\x47\x25\xbd\xb2\x5c\xad\x97\x10\xc7\x34\xba\x81\x3f\xc8\x49\xc0\x93\x52\x6c\x1d\xea\x1a\xbc\xb0\xeb\x5a\x13\x56\x27\x91\xf7\xd9\xc4\x75\xf9\x9e\x34\x82\xe1\x46\xb4\x9c\x5e\xda\xfb\xa7\xdf\xff\x10\xeb\x3a\x70\x0e\xbd\x23\xcf\x77\x88\xbd\x9d\xba\x24\xb2\x21\xc1\x84\xf0\x42\xfa\x38\x6c\x6e\x3f\x0b\x1b\xb9\x93\xf4\x5d\xc7\x7b\xb3\x64\xbf\x1c\xb0\xd3\x09\x88\xfe\x88\x8d\x81\x1b\xcb\xca\xe2\x40\xde\x8b\x1b\x22\xd6\xea\x39\x4f\xa6\x1f\x07\x9c\xeb\x2e\xbd\x25\x2b\xaf\xa5\x9b\x8e\x6d\x1b\x41\x10\x41\x65\xb6\xa9\x42\x35\x93\xcb\x54\x66\x58\xe6\x0d\x61\xc9\x70\xd2\xf1\x4b\x4f\x3c\x31\x18\x88\x64\xd9\x73\xcb\xb5\x85\x90\x69\x19\xba\xf4\x96\x89\xca\x3c\xdf\x3d\x93\x37\xbb\x7c\x7d\xfc\x24\x28\x05\x8b\xbd\x5a\x37\x48\x6c\x5b\xc1\x85\x7d\xcc\x6e\x4e\xee\x01\x9b\x3e\x2d\xab\x21\xfc\x0c\x28\x80\xfd\x81\x26\xb8\x21\x59\xf2\xc9\x57\xf6\x7c\xdc\x10\xf6\xc7\x96\x3c\xd4\x2d\xfd\x8d\xd9\x18\xc1\x34\x05\x6d\x22\x82\x5e\x3b\x85\x52\xed\xba\xe5\x29\x0f\x23\xb5\x23\x8d\x83\x28\x16\xc5\xdb\x2e\x78\xbd\x5e\x9a\x59\xa9\xeb\xcd\x09\x94\x13\x1f\x54\xa4\x2a\x4a\x1e\x94\x9e\xf8\x03\x01\xdd\x53\x26\xae\xe0\x47\x43\x2e\x3d\x76\xc7\x59\x3e\xa3\xb0\x18\xd5\x6f\xab\x3e\x05\x43\x26\x2d\x36\xc0\xea\x6c\x17\xf2\xba\x7e\x68\x48\x45\x7d\xb2\xde\x04\xce\xca\xe8\xc8\x07\x0b\x88\x73\x55\x14\x19\x4b\x2c\xce\x91\xb8\x2e\xca\x68\xd2\x29\xac\x52\x85\x8d\xc7\x98\x6c\x30\xa0\xa4\xae\x97\x28\xc1\x75\x8d\x12\xfa\xd0\x60\x52\x51\x4a\xd7\x90\xc6\x02\xe6\xb5\xda\xdb\xc3\x27\xd5\xe9\xfa\xa4\x92\xf8\xc7\x92\xd1\x23\x46\xbb\x20\x5c\x56\x86\xd3\x9c\xb2\x88\xc7\xc4\x31\x16\x37\x67\x44\xc5\x96\x21\x19\x51\x9a\x8b\xd6\x41\x8a\x2f\x74\xe9\xa5\xd5\xcf\x59\x92\xe6\x2a\x02\x39\x17\x4d\x48\x29\x2c\x62\x2f\xad\xe0\x2f\xca\x31\xc6\x21\x2a\x69\x22\x4a\x2c\x68\xea\xba\xa3\xee\x0b\x25\x0e\xa3\x38\x48\xeb\xba\x5f\x5c\x89\xc3\x32\x78\x68\x48\x4a\x47\x3e\x11\x9f\x53\x3d\x1d\x28\x23\x05\xc9\x31\x6e\x93\x53\x8a\xe6\xc0\x2b\xb9\x85\x26\xd6\xce\x1f\x7a\x60\x77\xab\x24\x9f\x15\x81\x52\x31\x9c\x31\x52\xcc\x68\x0c\x70\x56\xa5\x78\xb8\x44\x18\x7b\x2a\xd6\x1f\xed\x5f\xbc\xd8\xbf\x26\x8e\x83\x49\x5a\xbd\x67\xc9\xec\x5e\x48\x3c\x26\xd4\x94\x0e\x41\xf7\x55\x18\xb1\xa8\xf3\xa2\x6b\x28\x69\x48\xa7\x63\x43\x7e\xf8\x06\x3c\x64\x24\xa4\x89\x36\xa5\xc9\xf7\x63\x31\xfa\x46\x94\x28\x10\x11\x40\x29\xc7\x43\x92\x07\x95\x74\xae\xf9\x81\x63\xd1\x3c\xec\x24\xed\x45\x80\x5d\x57\xe9\x18\x25\x06\x87\x06\xd1\xce\x97\xcb\x15\xbf\xdf\xd6\xce\x4e\x16\x5c\xd9\x60\xbf\x4d\xc8\x47\x64\x02\x9e\x97\x37\x49\xd6\xdb\xc7\x09\x95\xe0\x41\xaa\x0d\xe0\x00\x02\x3f\x1b\xbc\xc1\x26\x4d\xc6\x39\x92\x53\x00\x33\x17\x32\x0c\x08\xb3\x34\xd0\x7c\x27\xf9\x69\xe9\xba\x23\x5f\x50\xa4\x1a\x93\x28\x8f\x49\x4e\xc4\x1f\x7c\x92\x8f\xc7\xf8\x04\x0c\x0e\xe2\x33\x65\x08\xd4\x99\x0b\x07\x3e\x50\xb9\x7c\x34\x23\x6d\x08\x2f\xd3\xe5\xa7\xa4\x8b\xe3\x04\x48\xe8\x01\x2d\xa5\xdc\x02\x3c\x16\x59\x26\x1f\x59\x4f\x7e\xd9\x29\xf4\xea\x3a\x6a\xf3\x68\x6b\x55\x0b\xbd\xb4\xa2\xf7\x43\x2d\x6e\x4a\x89\x34\x96\x5f\xdb\xda\x44\xc4\xe2\x80\x99\xdc\xee\x25\x61\x18\x93\xb2\x21\xda\x2f\xb0\xef\xfb\xd2\x69\x35\x0f\xf7\xfc\x60\xad\x89\x82\x01\x68\x0e\x54\xb5\xd5\xbc\x31\xd6\xe6\x55\x31\x13\x24\xed\x8c\x3e\x8c\x31\x03\x3c\x00\xca\xa3\x3c\x6e\xed\xd4\x0a\x4a\x3d\x25\xac\x21\xd7\x25\x5b\x6d\xb4\xaa\x75\x40\x8d\x62\x85\xc5\xc3\x5a\x28\xc1\x51\x79\x92\x9e\x16\x27\xe9\x78\x8c\x47\x1c\xc1\xc9\x4c\x8a\x65\x4a\x1e\x85\x46\x20\xee\xd9\x70\x31\x5d\xf1\x69\x79\xfd\x08\x6e\x4c\x27\xa4\xa2\x12\x02\xdf\xd0\x51\xde\xf6\xa4\x38\xcd\x4f\x8a\xf1\x18\x2b\x76\x98\x52\x51\x65\x11\x93\x82\x94\x10\x86\xa0\xb2\x27\x48\x0c\x7a\xa0\xa6\x42\x71\xc7\xcf\x7d\x60\xec\x24\x52\xb8\x46\x31\x01\xad\x65\x9d\xce\x02\x9f\x54\xeb\x95\xd8\x2a\x05\xab\x06\x93\xad\xce\x5a\xc0\x5c\xe7\x79\x24\xaf\xcc\x01\x6e\x4c\xcb\x8d\x5b\x98\x28\x9d\xc2\xf9\x5e\x0a\x92\x5d\xe9\x0b\xba\x2b\x37\x12\xbb\xaf\xcc\x51\x9f\xa0\x93\xdd\x17\x09\x67\x0a\x4b\x5d\xb1\x17\xc9\xb8\x54\xc5\x06\xa9\x64\xd7\xe9\xef\x17\xb3\xc8\xf0\x25\x67\xcc\xc7\x4e\xec\xc4\x94\x7b\xbc\x78\x53\xdc\xb2\xf2\x79\x52\x31\x84\x1b\x69\x3b\xba\xdb\xb4\xf7\xb7\x12\x92\x54\x64\x4d\x32\x32\x25\x90\xc2\x94\xac\xc8\x92\xdc\x40\x54\xdd\x15\xb9\xa4\x4e\x95\xfe\xf9\x67\xc6\x9c\xb1\xff\x48\xb0\x54\xd1\x58\x72\x6b\x6f\xc5\x54\xb6\x2c\x72\x4e\xd7\x0c\x61\xf2\x4e\xfe\xf9\x28\xff\x3c\x93\x7f\x3e\x0c\xeb\xd4\x62\x5b\xc3\x5d\x17\xcd\x01\xd2\x68\xd2\x90\xe7\xf4\xa1\xe9\xef\xc1\xde\x0a\xc2\x7c\x4f\xdf\x7a\xab\x62\x45\x7e\x16\x7f\xc5\x56\xee\x77\xfd\xe3\x05\x7d\xab\x76\x7c\x3f\xd1\x6d\x4b\x67\x42\x2c\x22\x2b\x4f\xf3\x93\x52\x8a\x5d\x16\x95\xb1\x1d\x92\xaf\x79\xfe\x9e\xdf\x90\xd7\xd4\x81\x24\xb5\x6c\x56\x57\xe0\x55\xcc\x66\x35\x9c\x16\xd5\xc9\x9a\x17\xf3\x62\xba\xae\xe0\xd7\x2a\x4b\xee\xeb\x69\x91\xf3\xb2\xc8\xaa\x7a\xc6\xe6\xac\xac\x67\x69\x95\x5c\x65\x6c\x56\x4b\x9c\xb7\x3a\xad\x96\xc9\xaa\xce\x8a\x62\x55\x43\x02\x8a\x55\xc6\xea\x62\xc5\xf2\xba\x64\xc9\xac\xc8\xb3\xfb\x5a\x6d\xaf\x67\x75\x35\x2d\x56\x6c\xe6\x90\x37\xd4\x89\x2e\x2e\xee\x0e\x26\x17\x17\xfc\xe2\xa2\xbc\xb8\xc8\x2f\x2e\xe6\xb1\x43\x5e\x51\x07\x85\xc1\xc5\xc5\xc5\x85\x57\x47\x17\x17\xb7\x7b\x71\x1d\xfd\x76\x31\xd9\xbb\xb8\xb8\x4b\x26\x31\x1e\x3b\xe4\x4f\xea\x5c\x5c\x44\xce\xf8\xcd\xd8\x79\x84\x9c\xf1\xab\xb1\x83\x21\x6d\x05\x5c\x47\x8f\x7e\xfb\xa6\x1e\xfd\x3b\x0e\x29\x56\x77\xc2\xe0\x5b\xd4\x96\xf8\x9b\xf8\xfb\x6d\x8c\x1f\xe1\x6f\xeb\x0b\xa7\xff\xe0\xc2\x11\x4f\x2e\x9c\x5a\x95\x8b\x6b\x55\xca\xc5\x45\xec\x90\x1f\xa9\x13\xb4\x15\x5e\x5c\x20\x84\xbe\xbe\x68\x5c\xf7\x9f\x20\x1c\x5d\x5c\xc4\x71\xed\x8c\xff\x1c\x3b\xf8\x11\xae\xbd\x47\xf8\xe2\x42\x54\x4d\xbe\xb7\xd3\xca\xbc\x19\x3b\x63\x87\x40\xd2\x8e\x7f\xd8\xf7\x9d\xdf\xa0\x8d\x63\x28\xf8\x37\x55\x68\x8c\x75\x2d\xf8\x91\xec\xc3\xf8\x1b\xf5\xf1\xaf\x03\x1f\x3f\x22\xf2\x8f\x83\xc9\x1f\x43\x8f\x51\x74\x36\xfe\xb7\x68\xe2\x9b\xb1\x83\xcd\xab\xbf\xf4\x9a\x57\x9f\x39\x98\xfc\xcb\xbe\xf9\x23\x26\x3f\xf4\xcb\x7b\x35\x76\xbe\x71\x30\xf9\x1b\x7d\x78\xfd\x22\xe8\x3c\xfb\x8b\x1a\x5d\x07\x93\xe7\x6f\x9e\x9d\x9f\x77\x9f\x5e\x5c\x78\xed\xf3\x0f\xcf\x7e\xe8\x3e\x95\x8f\xea\xe8\x51\x2c\x1e\x3f\xfb\xf0\xe1\x7d\xd0\xab\xf7\x4f\x4c\x7e\x3e\x7f\xf9\x8f\x17\xef\xfa\x0f\x7e\xc4\xe4\xf9\x8f\xaf\xdf\xf4\x1a\x13\x20\x20\x5c\xd8\x94\xd4\x62\xdb\x51\xe7\x7c\x21\xfe\xdf\x13\x17\x78\x0f\x4d\xc5\xfe\xbd\x2e\xe6\x7b\x60\x2e\x94\x14\xa1\x46\x8b\xdd\xb0\xbc\x2e\x66\xb3\x1a\xa1\x68\xbc\x17\xd7\x18\x5d\x5c\xcc\x1e\xe1\xbc\x6e\x89\x52\x3d\x50\xd7\x17\x17\xb3\x31\xae\xb1\xa1\x36\x98\x7d\x27\x75\x30\x11\xaa\x7a\xaf\xa7\x82\xd8\x5f\x8f\x1d\xfc\x8d\x7a\x25\x67\x6c\x56\x3d\x2f\x72\xce\xee\x78\xbf\x6f\xa2\x38\x39\x77\x41\xdb\x2a\xf6\x47\x7d\xcd\xeb\x4c\xf6\xa8\xed\x60\xb7\x0f\x28\x0c\xf6\x2e\x2e\x66\x38\x84\xa6\x5b\x0d\x43\x21\x8d\x7e\xdb\x8b\xeb\x6f\x54\x13\x1b\xf2\x0d\xdd\xff\xf1\xc3\xdb\x37\xdf\xec\xa7\xe4\xef\x74\x5f\x34\x30\xcd\x57\x6b\xae\xf8\x4a\x2d\xda\x95\x94\x2c\xa9\xaf\xd6\x9c\x17\x39\x16\xef\xfd\x93\xee\xff\xb6\xb8\x98\x89\x9f\xff\x45\xf7\x7f\x8b\x7e\x7b\x88\xc7\x17\x0f\x17\xd5\xa3\x8b\x28\x4f\x78\x7a\xc3\x76\x2f\x6e\xf7\xc9\x5f\x65\x69\x7f\x41\x91\x60\x04\x63\x5c\xa3\x8b\xdb\x31\xae\x2f\x3c\x7d\x03\x7f\xb3\x4f\x18\xa3\xfb\xd1\xf8\xdf\xf1\x3e\xe1\xac\x43\x6b\xb0\xb8\xa2\x8b\x8b\x59\xb2\x37\x8f\x1f\x7c\x72\xdc\x40\x2f\xc2\x5a\x76\x11\xd7\x1e\xf4\x40\xac\x89\x72\x9b\x27\xaf\x33\xb9\x73\xc6\x7c\x0f\x00\xc1\x8d\x12\x30\xa2\x79\x5d\x97\x21\x0f\xf2\xd3\x49\x38\x80\x9d\x8e\xf2\xb1\x44\x10\x0f\x06\x1f\x9e\x9d\xf9\x93\x1a\xd0\xc6\x89\x3f\x39\x38\x74\xf3\x5a\x82\x8b\x37\x24\x67\x74\x1f\x45\x82\xdb\xdd\xf9\xf3\x8b\xbb\xef\xe6\x71\xfd\xdb\x5e\x78\x31\xc3\xf5\x6f\x7b\xdf\x28\x3e\xa8\x9e\xec\x5d\xac\x5f\xbd\x7a\xf5\x4a\x0c\xc3\xfe\x35\x49\xd9\xb0\x00\xe2\xa1\x73\x31\x81\xd3\x81\xd0\xf9\xbf\xfe\xcf\xff\xc3\x09\x98\x49\xc1\xb4\xe7\xe3\xb1\x73\x71\xe1\x8c\x19\x1c\xd1\x8a\xa6\x3d\xe3\xc6\xdf\x65\xcf\xc7\xc6\x30\x88\xfc\x63\x3c\x76\x76\x9d\x40\xbe\xde\x90\x82\xd9\x1b\xd2\x85\xd8\xd9\x26\x8c\x5e\xb2\x01\x6f\x00\x08\xa4\x67\x9e\x16\x18\xae\xeb\xcc\x53\x96\xcd\x64\x94\x37\x95\x06\xc2\x9f\x92\x25\xeb\x09\x75\xf2\x30\x4b\xcb\xc0\x69\x6d\x66\x0e\x98\xbe\x03\x27\x63\xd7\x2c\x9f\x39\xca\x68\xad\xf1\x98\xde\xd2\x17\x52\xd3\xbc\xf5\x60\x55\x8a\x2f\x2a\x4c\xba\x57\x6f\x23\xfb\x5a\x5b\x65\x5a\x13\xa5\x34\x76\xbf\x63\xf8\xe1\x77\xfa\x00\xe5\x06\x6f\x87\xd3\x51\xfd\xac\xaa\x65\x44\x55\xcb\x31\x6e\xb6\xea\xb5\xcc\x52\x6b\x4f\x58\x54\x2a\x1d\x76\x3c\x8e\x4f\xf0\x89\x51\x60\xcb\x3d\xbf\xb1\x7c\x79\x2a\xa6\x52\x4a\x6a\x5f\x0d\x52\x29\x0d\x66\x25\x34\x17\xe9\xd4\x5e\xdc\xe6\xac\x7c\xd1\xea\x29\x3c\xe4\xa6\x3b\xc1\x53\xe9\x75\x08\x8e\xeb\x46\xb9\x1f\x59\x06\x44\xb1\xed\x13\x5b\x9a\x97\xae\xfb\x54\xfe\xf1\xe1\xd2\xe4\x6b\x92\x6e\x50\xae\x8b\x90\x28\xb8\x53\x59\x5d\xf3\xe0\x56\xe8\xc9\x33\xd7\x5d\x20\x8e\x09\x17\xbb\x8d\x19\x59\xca\x0c\xec\xbe\x2a\x17\xcd\xe9\x5f\x21\x4b\xb3\xd0\x85\x85\x42\x52\xd0\x79\xe4\xc7\xf0\xce\x53\x2a\xea\x02\xf3\x3c\xca\x28\xd8\x56\x95\x91\xf6\xfb\xfb\xd7\x33\x54\xb4\x79\xe2\xa1\x21\x99\x97\xce\x28\xa5\x45\x9b\x3f\x0b\x54\xdf\x0c\x93\xdc\x1c\xf6\x5e\x83\x15\xe3\x7a\xa0\x28\xd7\xbd\x42\x9c\x64\xd8\x75\x3f\x57\x0e\x24\x90\x8f\x0e\x62\xfd\x5c\x93\x58\x4e\xec\x26\x56\xdf\xdf\x7f\x48\xae\x05\xe1\x4a\x18\x4a\xd1\x42\xe8\xdc\x61\x8c\x5d\xb7\xec\xbe\xf9\x3c\x4b\xaa\xea\x27\x48\x11\xc4\xb7\x3c\xf9\x6c\x6d\xe6\x4d\xd1\x1b\x92\x37\x70\xaa\xf5\x47\x95\xb8\xee\xe8\x59\xc4\xc4\xea\x8c\xc5\x26\xfd\xa6\xae\x47\x37\x32\xc2\x46\x6e\xdb\x61\x22\x5a\x4b\x30\xec\x60\x87\xd7\x9c\x9c\xb9\x7b\xca\x04\x75\x11\xb1\x75\x7d\xe9\xba\xbf\x98\xb2\x80\xa0\xd1\x94\xf6\x8c\xe0\x4e\x3a\x73\x30\x0e\xa7\x74\x6a\xf6\xa6\x39\x23\x29\x03\x50\xed\xfe\x8b\x64\x4a\x2f\x31\xa9\x28\x5a\xd1\x44\x94\xa9\x35\xd6\x6a\x6f\xef\x04\xaf\xc0\x2d\xe8\x2f\xce\x78\x2a\x7a\x33\xbe\x62\x48\xdc\xc1\x3b\xf7\x74\xa5\x20\xda\x09\xa4\x2b\x63\x4c\xb7\xc9\x75\xef\x19\xe2\x96\x61\x1d\xd7\x35\x6f\x5a\xa7\x79\x6b\x34\xaf\x3d\xb0\x06\xcb\xf0\xb9\xa2\x7c\x96\x65\xe8\x1e\xc6\x51\x2e\xfa\x3b\xfc\xf0\x4c\x1e\x1d\x35\xea\x30\xf3\x61\x4a\x29\xbd\x14\x13\x26\x8d\xf5\xbd\x1e\x37\xc6\xa3\x6e\x8d\x98\xe9\xf9\x3f\x88\xf3\x8d\xef\x60\xb5\x6e\xdb\xc5\x2c\xb6\x08\x0a\x6c\xaf\xdd\x90\x77\x3d\xb5\x2d\xbb\xaa\x74\x49\x12\x83\x80\xcf\x72\x6f\x9a\x4c\x17\x0a\x22\xcb\x20\x01\xf3\x88\x79\xd5\x22\x9d\x73\x84\x01\x3d\x16\xa6\x9f\xa6\x16\xfb\xc8\x98\xed\x90\x15\x5d\xc6\x74\x34\x21\xac\x7d\x3e\x65\xad\x65\x74\xd6\x3f\x22\x31\x1c\x5a\x9f\x0c\x4a\xa7\x3c\x86\x38\xb6\x98\xa4\x36\xc6\x98\x11\xb3\x67\x02\x42\x6e\x86\x0f\x3c\x80\x59\x88\xfd\xac\xd5\xdc\x39\xdb\x64\x9a\x6a\x53\x58\x3b\x98\xa4\x54\xc3\xbb\x9e\xa4\x82\x54\x72\x2f\xe1\xbc\xfc\x31\xc9\x67\x19\x8b\xca\x28\x8d\x63\xdb\xbf\x74\xc1\x3a\x46\x10\xd7\x85\xb0\x25\xd7\xf5\x8d\xc0\xf9\x00\x07\xe5\xd2\x3a\xd3\x5e\xeb\xfc\x60\x90\x28\x6e\x8f\xdb\x57\xc0\x4a\x3b\xec\xa8\x84\xad\xfd\x49\x49\xa5\x0b\xcf\x79\x7a\x95\xa5\xf9\x35\x78\x7e\x96\xd6\x8e\x6b\xcf\x37\x96\x8a\xd0\x0f\xf6\xfc\xb6\x95\x33\xf6\xc9\x84\x0c\x0e\x68\x50\x0e\xdd\xbe\x5e\xc5\x10\xc3\x49\x07\xa5\xcc\x1a\xca\xd5\xb6\x72\xd5\x70\x6c\x29\x4d\x35\x13\xb5\xf5\x96\x75\xed\x48\x85\x0d\xae\xb6\xd5\xb7\xfc\x4c\x3f\xe6\x45\xb9\x74\xd2\x1c\xce\x9c\x6d\xfa\x50\xc6\x31\xad\x18\x84\x4e\x96\x5c\xb1\x4c\xbe\x69\xfd\xb6\xbe\xe9\x14\x60\x3e\x14\xcd\x09\x78\xff\x32\xad\x5e\x58\x37\xea\xda\xbe\x33\xa2\x74\xc4\x5c\x37\x11\xf4\x3c\xf4\xb5\x55\xbb\xe8\xb3\xfd\xcc\xea\xf7\x8d\xdd\xef\x8c\xa1\xcd\xae\xef\x72\x3a\xe6\xc4\x7e\x04\x67\xfe\x9a\xc6\x53\x88\x94\x8c\x62\xa2\x69\x9b\x70\x4c\x12\x93\x28\xfa\x24\x11\x94\x5e\x46\x29\x2d\xa2\x24\x16\xcc\x5d\x10\x3a\x1d\xa1\x5c\xfc\x11\xbf\x31\xa0\xe0\x58\x51\x36\x9d\x35\xaf\x11\xf9\x46\x82\xe8\x87\x04\x97\xeb\xb2\xc6\xd8\x56\x4b\x5a\x31\x4f\x99\x89\x28\x84\xeb\x55\xcc\x4b\xab\x7f\xbe\x7d\x33\xe0\x47\xc9\xc0\xd9\xb6\x5a\x25\x53\xf6\x8f\xf7\xaf\x49\x49\x11\xeb\x6b\x07\x0c\x1b\xfb\x89\xaa\x58\xdb\x6c\xbf\x91\xdc\x9b\x03\x48\x72\x69\xa8\xb1\xae\x1d\xb1\x85\x10\xbb\x89\x05\xb4\x85\x71\x5d\xda\x80\x65\x27\x25\x09\x65\xe1\x66\xad\xc1\xad\x31\x84\x49\xdd\xe4\x29\x78\xb6\xb5\x6b\x3c\xe9\x37\x2b\x44\x2b\x8a\x66\x34\xd9\x68\x2f\x59\xd2\x51\x81\x66\x98\xdc\xca\x92\x50\x4a\x67\x9e\xca\x75\xfd\x4b\xca\x6e\xb1\xeb\xa6\x1e\x2f\x56\x23\x4a\x85\x8a\x94\x7a\xc9\x6c\xf6\xf2\x86\xc9\x70\x67\x96\xb3\x32\xdc\xbc\x85\x9c\x75\x9e\x15\xc9\xcc\x21\x05\x23\x23\x1f\x07\xa9\x60\x64\xc9\x74\x01\x6f\x89\x02\xad\x4b\xe4\x14\x79\xfb\x3a\xc6\xa4\x04\xae\x07\x42\xa8\xa2\xd3\x21\x65\x7b\x97\x79\x53\xad\x27\x50\x27\x75\xc8\x88\xf5\xa4\xb5\x79\xec\xe0\x46\x94\x38\x44\x18\x5b\xcb\xb6\x0f\xb4\xb5\xd0\x78\x5e\x2c\xa5\xd0\x70\x30\x56\xd5\x6d\xaa\x48\xce\x23\x47\xcb\xfa\xcd\x5a\x8d\x66\x43\xff\x4b\x92\xc6\x6c\x9b\x8e\x24\xbf\x14\x2a\xdd\x96\x26\xae\x3a\x4d\x64\x58\xa8\x7a\x97\x64\xd4\x2b\x50\x92\xdb\xd0\x5d\x74\xd9\x6f\xa6\xa8\x2c\x44\xb9\x37\x4f\x33\xce\x4a\xef\xf5\x8b\xc1\xe5\xa0\xe5\x3f\x67\xa4\x6c\x0f\x69\x07\xc7\x70\x53\x79\x12\x6c\xb0\x69\x48\x0e\xe9\x06\xba\x35\xf4\x61\x36\xfb\x4a\xb2\xeb\x2e\x5b\xbe\xde\x53\x7a\xdb\x76\x94\x61\x54\xc6\x41\x14\x37\x0d\x0e\xfe\x03\x5d\x91\xf5\x75\x99\x8b\xe9\x92\xe4\xed\x9b\xf7\x64\x57\x4d\x8b\xc4\xca\x97\x0e\xd2\xff\x89\xce\x4b\x33\xef\xe0\x10\x88\x2d\x07\x14\x83\x4a\x5a\x6c\x69\x15\xb6\x5b\xa3\x35\xf1\xa8\x90\xce\xe2\x29\xe5\x03\x74\xc2\x30\x6c\xe6\x0a\x9a\xaa\x7d\xdc\x7f\xaf\x06\xa5\x43\xc2\xd4\xe8\x31\xf8\xf0\xec\x07\x3a\xbc\x2e\x3f\x95\x13\xb9\x37\x3e\xd6\x47\x5b\x77\x2d\x01\xec\x1f\x42\xbe\xa9\x19\x9b\x44\xa7\xfd\x3d\xad\x3e\x27\x33\x07\x29\x5b\x0b\x07\x8f\xba\x47\xd2\x07\xf4\x41\x69\x4a\x05\x1c\xdf\x9c\x60\x1f\xdc\xc2\x5b\x9e\x9c\xf7\x9d\xf0\x73\xad\x5b\x17\x86\x32\xc0\x1c\xd8\x1f\x17\x6b\x5f\xf5\x65\x64\xd3\xfd\x66\xd9\x26\xb9\xdf\xb2\xd5\x62\xb8\x21\xf7\xa2\xb7\x37\xe2\x1f\xb9\xe1\x6a\xb9\x54\x7f\xdc\x60\xbf\xd5\x63\x4c\x9b\x1c\x29\xcf\x59\x29\x24\x1d\x75\x4e\x93\xdd\x74\x46\xbf\x75\xc6\x97\x63\xe7\xdb\xb3\xd3\xfd\xe4\xec\x54\x1a\xcc\xda\xdb\x7b\x17\xe5\xc5\xc5\xb7\xbb\xcb\x2a\xc9\xb2\xe2\x76\x9a\xac\xf8\xba\x64\xf4\xdb\x6f\xcf\x4e\x8b\x95\x32\x13\x48\xcb\x3d\xdc\xdb\x97\x37\xcf\x4e\xf7\xe5\xed\x33\x87\xb0\xcd\xd9\x75\xa2\x6e\x71\xbf\xd1\x6f\xbf\x8d\x0d\x7f\x76\xdd\x1b\x95\xcd\x3b\x7a\xf4\xdb\x37\x31\x6d\x8d\xe8\xdf\xd6\x17\xce\x05\xd8\x5e\x07\x0b\xd5\x2d\x69\x8b\xaa\x6b\x5d\x54\x6b\xae\x0f\x03\x58\x06\xb5\x34\x60\x6e\x2b\x2b\x9d\xfd\x9b\xca\xfe\x0f\x95\xf6\x6f\xba\xe5\xbb\x40\x9d\x67\x0c\x7c\xd3\x3e\x1a\xfc\x32\xf9\x0b\x54\x37\x7e\x34\xf0\xa9\xf7\x17\x6f\x1c\x8d\xff\x1d\x83\xc4\xec\x4d\x2f\xeb\xcd\xe7\xa2\x64\x73\xfa\xed\xb7\xbb\x46\x67\xfc\x56\xff\xea\x4e\xf0\xe0\x73\x39\x7b\xfb\xd6\xf4\xed\x6c\xd9\xa0\x49\x1d\x1d\xef\xf4\xb7\xd8\x42\x3d\x77\x88\x63\x92\xef\x74\x45\x36\xc7\xbd\xd7\x65\x06\x5c\xe7\xc5\xb6\x69\x10\xcf\xe9\x6c\x88\x36\xe0\x4b\x69\x5b\x36\xe7\x2d\x0e\x26\x07\x20\x0f\x06\x26\x86\xe5\xd0\xc9\x81\x92\xcc\x23\xe2\x04\x7a\x2c\x1c\x4c\x36\xd6\x8d\x19\xb1\xd1\x64\x7b\x35\x6d\x01\x5f\x5a\xcf\x50\x31\x8f\x48\x70\xe7\x60\xa2\xbf\x24\xde\xa3\xc0\x01\x98\x7b\x54\x7a\x90\x9b\x81\x55\xfa\x7d\xcd\x0c\xae\xe9\x4a\x3f\xaa\xeb\x95\x77\xcb\xae\x3e\xa6\xfc\x6d\xf7\x5d\xf1\x60\x59\xfc\x39\x70\xb7\x18\x7a\xb3\xea\xdd\x14\xdc\xa5\xaf\xf5\x88\x51\x99\x16\x79\x0e\x0b\x0f\xde\xa7\xd7\x3a\xec\x10\x0e\x68\xda\xab\xa8\x1a\x89\x75\x0e\x3d\xbb\x57\x3d\x1b\x51\x87\xfc\x28\xa8\xfa\x86\xde\x98\x01\xb3\x0c\xe8\x37\xca\xee\x52\x0b\xdd\xee\x9e\xde\x0f\xbd\x73\x6f\xbf\xc3\xf5\x78\xac\xc0\xb9\x3a\x29\x99\xd6\xcd\x7f\x2e\xaa\x54\x34\x1b\x93\x2b\xca\xeb\xda\x7a\x2d\xe7\x49\x9a\x57\x38\x1c\x72\x60\x78\xda\xd9\xb1\x87\xac\xaf\xa3\x07\x62\x67\xcf\xbb\xb6\x86\x1d\xeb\xe8\x35\xaf\xeb\x11\x1a\xe5\xd2\xcc\x99\x9b\x82\xc4\xdd\xd2\x54\x1d\xb6\x3f\x51\x8e\x03\xb6\xad\xe9\xae\xeb\x1f\xbb\x5b\x9f\x82\xcf\x51\x5f\x5e\xa6\x73\x24\x3d\x4b\x4f\x38\xb5\xdb\x08\xfa\x02\xb7\x74\x81\xd1\x64\xc7\x98\x53\xc8\x07\xca\xc3\x8d\x72\x98\x7d\x8c\x3b\x17\xab\x60\xa2\x10\xd8\x46\x5b\xdb\xb4\x37\xe2\xdb\x1e\x19\x51\x5b\xd7\xc8\x77\x51\x3e\xb8\x85\x93\x71\x96\x7d\xbb\x2f\x0e\xb7\x0f\x02\xc7\x81\x8f\xeb\x7a\x24\x7d\xdb\x5e\x30\xb1\x99\x61\x33\xe9\x03\x34\xfc\x05\xd4\x92\x87\xa2\x7b\xb3\xba\xee\x35\x82\x52\x7a\xeb\xba\x57\xe8\x96\x30\x1c\xee\xf9\x01\x97\x6f\xf1\x6d\x6f\x71\x1c\xfa\xc1\x34\xfc\x09\x4d\x09\xc3\x7b\xe2\x0f\xc7\xc1\x24\x38\x72\x73\xf1\xb5\x3f\x34\x3f\xdb\xc6\xb5\x34\x4e\x28\xed\xb4\x81\xc2\x63\x5d\x26\x90\xcc\xa2\xa2\x2a\xca\x60\x94\xd6\xf5\xc8\xd8\x95\xa1\x47\xa6\xd1\xa1\x1f\xa4\xe2\xa2\x18\x6a\x20\x04\xe7\xd8\x36\x69\x65\xc1\xda\x51\x5e\x48\x60\x65\xb2\xa9\x27\xf1\xd6\xb9\xb4\xff\x95\xfa\x25\xbe\xf1\x52\xd5\x7f\xe9\x24\x89\xf2\x98\x52\x5a\x45\x79\x7c\x82\xf3\xf1\xd8\x10\x41\xb8\x60\x48\x3c\x24\xe2\x11\x0e\xd4\x7b\xb7\xa2\xc1\x95\xfe\xed\x07\x93\x86\xcc\x70\x30\x6b\x48\xc5\x34\xb3\x1b\x3e\x74\x82\xb3\x0b\x88\x28\x94\x61\x85\xd8\xfe\xc4\xb0\xce\x8d\xa9\x18\x22\x41\x7d\xc2\x00\x9b\xbf\x5e\x09\xae\xbb\x04\xeb\x37\x37\xd6\xef\xfb\xba\x1e\xdd\x2b\xfb\x82\x74\x5a\xb3\xec\xe1\x1c\x63\xcc\xcb\x7b\x75\xae\x67\x38\x23\x97\xd1\x9b\x75\x3d\xc0\x4d\x05\x41\x6a\x96\xa3\x4e\x47\xda\x1b\x86\x9d\x18\xbb\xa0\x65\x1c\x7d\x26\x13\x64\x35\xed\x88\x70\x32\x93\xc3\x11\xb1\x18\x1b\xf8\x5f\x18\x19\xcd\x7e\x06\x47\xf3\x33\xa3\x72\xa5\x3c\xb5\x2b\x06\xd6\x81\x5e\x11\x9f\xfe\x78\xc7\x44\xb8\xb4\xd6\xd4\x9e\x77\x8d\x72\x9f\x7c\x2e\x47\xcb\x7e\x93\xf4\xde\xc4\x61\x0a\x27\x56\xa3\xa5\xde\x3d\xec\xf4\x77\x28\x45\x58\x04\xb6\x11\xa3\xae\x47\xcb\xb0\xb7\x25\xe6\x38\x40\xc5\xc0\xa6\x52\x4e\x68\xe1\x41\x1e\xa4\x79\xca\x66\xa1\x82\x76\x08\xc0\x94\x2c\xfa\xcf\xaa\x69\xb2\x62\x03\x61\x06\x3d\xdf\x39\x79\x3e\x21\x3f\x29\xcb\x0e\x25\x6e\xfa\x56\x3a\xe7\xf7\x39\x4f\xee\x76\xe1\x4d\xb2\xbb\xce\x4b\x36\x2d\xae\xf3\xf4\x4f\x36\xdb\x65\x77\xab\x92\x55\x55\x5a\xe4\xc1\xae\x33\x56\x45\xae\xf3\xf4\x8f\x35\x3b\x2f\xca\x21\xbb\x95\xb5\x75\x82\x55\x3f\xa7\xa3\xd2\x9b\x31\xce\xa6\xfc\xc5\x7a\x95\xa5\xd3\x84\xb3\x8a\x4c\xa9\x62\xa0\xe7\x5c\xe8\x29\x60\x99\x96\x87\xb6\x42\x61\x11\x0f\xd0\x07\x4c\xe6\x3a\x28\x99\x32\xc8\x74\x76\x82\x41\xa2\x44\x45\x0c\xc6\x2a\xb5\xab\x2a\xb0\x5a\xfc\x60\x38\x67\xca\xcb\x18\x8c\x88\xc4\x37\xf4\x39\x95\x01\xc0\xac\x21\x29\xad\x60\xf0\x3f\xb0\xbb\xa1\x0e\x94\xd4\x71\x80\x33\x16\x96\x60\x6e\x77\xd9\x62\x6b\x57\xd4\xf5\x53\xf9\xc7\x87\x4b\x19\x52\xb7\xe1\x5c\x08\xa1\x17\xe0\xb4\x90\xb7\xc0\x0b\xf6\x4d\x68\x36\xa3\xcc\x03\x07\x05\x50\x04\x4f\xd8\x09\x53\x18\x1e\xca\xe0\x8e\xcb\x31\x78\xa5\x9a\x23\xc0\x43\x59\xf5\x91\xcd\x4e\x65\x4b\x01\xeb\xb1\x31\x8e\x75\x30\x6e\x72\xf3\x0e\x65\xb4\x29\xe1\xca\x86\xa0\x5c\xda\x20\x25\xa3\xa9\xe8\x83\x75\x0a\x13\x3c\x9e\x10\xa9\x8f\xff\x5c\xb1\xf5\xac\x08\x32\x26\x53\x76\x05\x7f\x23\xed\xf2\x08\x1e\x20\xea\x6e\x26\xfe\x96\x2c\x03\x97\x86\xe0\xc1\x39\x73\x82\xcd\x93\x6d\xe9\xf7\x3e\x9a\x34\xc4\xd9\x1d\x78\xde\x10\x67\x6c\x6e\x97\xec\x26\x2d\xd6\x95\xea\x7e\xe7\xdb\x7f\x6f\x7b\xa9\x69\xc8\xaa\x64\xaf\xc0\xee\x13\x3c\x80\x6b\xcc\x90\x6d\x2a\xf2\x63\xc0\x0f\xe9\xd9\x80\x08\x8b\x0e\x63\x8a\xc4\xbf\x75\xcd\xa2\x23\xf8\xf7\x71\x5c\xd7\xf6\x9a\x52\xaf\x8a\xbd\x19\x10\xe1\x81\x4c\xc2\x78\x18\x53\x47\x2c\x8d\xe8\x30\x86\xf3\x2c\xd2\xba\x1f\x1c\xe1\x46\x79\xdd\x7c\xb2\x2d\x1d\x1e\x43\x9c\x9c\x2f\x64\x05\x7e\x6c\x4a\x3a\xc4\xa1\x6a\x9d\x5e\xd1\x88\x45\x93\x58\x34\xfc\x28\xa6\x63\x24\xfe\x84\xa2\xc9\xe2\xe7\x71\x5c\xd7\x3e\x0e\x0e\x1e\x21\x87\xdd\x30\x19\x8a\x09\xdf\x3a\xc5\x6c\xa6\xaf\x20\xff\xe3\x63\xf9\xed\x77\xf1\x98\x45\x4f\x36\x5e\x08\xc4\x1f\xd7\xed\xd7\xd8\x68\x17\xa3\xa1\xa5\x33\x12\xd5\xbb\xae\x18\x1d\x4d\x6b\x7f\xf3\x60\x0c\xd4\x89\xa6\x28\x23\x14\x2b\x31\x80\x0e\x85\xe2\x4d\xda\x1d\xf2\xa0\x74\xdd\x7f\xc9\xd7\x4b\x08\x96\xa7\x09\x2a\x21\x17\xa4\x4a\x65\xa5\x13\xbd\x3b\xd8\x31\x27\x0b\x7b\x1c\xef\xe9\xdf\x18\x26\x66\x22\xca\x9d\xb4\x63\xc8\x45\x8f\x0f\x62\x1d\x5c\x06\x77\xec\xd9\x3a\xc4\xb8\x11\x04\x2d\x49\xe8\xc3\xb3\x1f\x06\x22\x2c\xfa\xc6\xc3\xc1\x03\x26\x65\x14\x0a\x37\x02\x28\x46\x93\xe1\xec\xa1\xe6\x84\x40\xb0\xc1\xe1\xb3\x2b\x65\x44\x94\x2e\x63\x9b\xed\x3a\x57\xe7\xe3\x26\xce\x03\xd2\x83\xd9\x8e\x42\xe8\x37\xe3\xd9\xc6\xc6\x8e\xf4\x0e\xaa\xbf\xc1\x60\xb8\x3b\x47\x6c\x10\x41\x4a\xce\xc1\x00\x5f\x9b\xb6\x16\x26\xeb\xc2\x4e\x59\xd6\x0b\x2b\x1b\xb4\xd1\x3b\x18\x16\x58\x83\x1b\xd2\x5b\xb0\x1d\x5f\x6b\x73\xdb\xa0\x1d\x2a\x45\x00\xe5\x56\xb8\x90\xf4\xc8\x4e\x43\xb1\xe3\x13\x83\x15\x8c\xc4\x18\xa4\x63\xc1\xcc\x1d\x79\x2b\x14\x0a\x68\x19\xe8\x37\xc2\x74\x04\x97\xbf\xa9\xcb\xd2\x75\x27\x00\xdc\xa4\xc9\xab\xc4\x81\xf3\xa8\x7d\x68\x3f\x38\xdb\xf3\x03\xe7\x1b\xfb\x99\xa4\xa2\x96\x04\x65\x55\xff\x56\xaf\x20\xc1\x22\x52\x43\x3c\xdf\x0b\x2e\x08\xfe\x46\xb8\x5f\x68\x2d\xbf\x00\xf9\x06\x07\x94\xa9\x21\x50\x5d\xf6\xd8\x87\xd2\xc7\xce\x9e\x03\x24\xdb\x67\x31\xa4\x87\x80\x02\x1c\x05\x26\xa5\x25\x75\x92\x50\x27\x4b\x2a\x6e\xdf\xdf\x3b\xc2\xa4\xa2\x8e\xf2\xf6\x83\x66\xe8\xd1\x15\x52\x2e\x57\xe3\x33\x90\x26\x77\x34\xb2\xf7\x10\x16\x91\x8b\x96\xac\x65\x3b\x3a\xbe\xc9\xb4\x18\x51\x9a\x84\x8e\x25\xe6\x9c\x01\xce\x7f\xd3\xdd\x8c\xdc\xd3\x4a\x86\x39\x0c\xad\x10\x72\x4d\x47\x6b\xd7\x1d\x55\xe4\x8a\x8e\x7c\x21\xaf\x6f\x40\x2c\x17\x4a\x87\x58\x9e\xc8\x1f\x0b\xca\x4f\x16\x74\x11\x2d\xa5\x49\xbb\x0a\x17\xdb\x97\xdc\x7d\x20\x3a\xbe\xe8\xab\xc1\x23\x7f\x67\x45\x97\xd4\x29\xf2\x0c\xa2\xf8\x98\xeb\x8e\x56\xae\xdb\xe9\x4d\x63\x96\x7c\x3a\x47\x2b\x1a\x25\xe1\x8d\x25\xe5\x83\x1b\x4f\x8c\x3e\xfc\x8e\x49\xe2\xba\xd7\xb2\x71\x57\x14\xcd\x28\xca\x28\x9a\x52\x34\xa7\x68\x41\x6f\x70\x74\x19\xd7\x35\x5a\x44\x97\x31\x7d\x68\x30\x8e\x16\x4a\xfd\x7a\xfd\x42\xdc\x9f\xdb\xd7\xf2\x05\x16\x03\x8e\xa7\xe0\x7f\xe0\xdf\x92\x45\x7e\x8c\xc5\x9f\x83\x98\x2c\x84\x5e\x7c\x63\xb9\x88\x45\xb3\xf8\x64\x41\xc7\x63\xa1\x2e\xbb\xae\x18\x95\xba\x46\x57\x74\x46\x27\xb8\xae\x57\x12\xfa\x05\xc6\xa9\x3b\x10\xae\x3b\x1e\x5f\xb9\xee\x42\x02\xbe\x4d\x23\x16\xd3\xe8\x25\x99\x91\xab\x58\xa3\x26\xd8\xfe\x4a\xa2\x3c\xbb\x53\xfc\x3f\xd4\x29\x02\x07\xec\x57\xd2\xfc\x80\x3e\xd7\x0d\x21\x15\x3e\x31\xdd\x23\x98\xee\x51\x67\xba\xeb\x7a\x34\x1e\x5f\xd5\x35\xf4\x42\x36\x7f\xf1\xdf\x68\xba\x18\x9b\xab\x18\x93\xc5\x48\x0c\x17\x3e\xc1\x27\x4a\x69\xbf\xda\xa3\x29\x96\x46\x9c\xab\xff\x91\x53\x3a\x71\xdd\xab\xfd\xfc\x8c\x4e\x9a\x66\x40\xca\xb6\xc7\x13\xa0\xfa\x82\x66\x56\xc1\xc8\x00\x08\xaf\x54\x7e\xaa\xa8\xd7\x2f\x5b\x67\x70\xd6\xb9\x3a\x00\x67\xb3\x5d\x59\x80\x54\xeb\xf5\x3a\x4f\xa3\xcb\x38\x14\x8a\x62\x90\xb6\xe0\xf2\xa8\xa4\x11\x23\x8c\x38\x0e\xe1\x31\xb1\xeb\xea\xb9\xf9\xa3\xbe\xbb\x55\x68\x7b\x06\xb0\x4e\xa4\x8a\xd8\x74\x41\x97\x36\xfc\x01\x58\x94\xd3\x9f\x10\x23\x45\x94\xc4\x38\xa6\x23\x54\x8a\xfd\x39\x5c\x35\x78\x4b\x12\x09\x32\x21\xa5\x78\x9a\x0a\x3d\x50\x0e\x4c\xf0\x90\x17\x3c\xc8\xba\xe6\x44\x0d\x92\x44\x54\x34\x7a\xb5\xe9\xd9\xd4\x4a\x14\x31\x16\xdd\x0e\x08\x76\x96\xb6\x9d\x28\x48\x42\x73\x6d\x07\x48\x49\x14\x03\xbe\x7b\xc7\xe3\x0b\x15\x34\x89\xaa\x58\x6a\x24\x95\xe8\x0d\x17\x7f\x0a\xdc\xed\x0b\x01\xec\x5c\x2d\x77\x41\x75\x21\x82\x7b\x42\xc9\x05\x29\x31\x81\x9b\x70\x39\x2a\x25\x3d\x37\x0d\x26\x8b\xa4\xea\x77\x71\xab\x9b\x8a\xf2\xb7\xb4\x36\xe6\x0d\x26\x7a\x5f\xbe\xa5\x14\xb6\xa1\xf1\x90\xcd\x82\x11\xb7\xf7\x34\x90\x71\x1b\xb7\x72\x8d\x09\xb9\x26\xaa\xca\x92\xfc\x7a\x4b\x35\x3f\x28\xe5\x10\xf4\x81\x6d\xf4\x0a\xdf\x03\xb5\x92\xcd\x66\xf5\x64\xc1\x86\x53\xd0\xce\xac\x00\x5c\x4a\xba\x0c\xb9\x07\x25\xf5\x9d\xfc\xee\x96\x59\x20\x1e\x88\x06\xf4\x9f\xc9\xfb\x8a\xfb\xa3\x92\x96\x3d\x3a\x97\x0e\x38\x13\x38\xf4\x33\xfd\x06\xf9\xdc\xdc\x2e\xd2\x8c\x21\xd4\x35\x8e\xe2\xbe\x67\x16\x6e\x6d\xa3\x0d\x26\x3c\x29\x3b\xb1\xd8\xc6\x58\xcc\xbc\xac\x98\x26\xd2\x52\xdb\xfe\x16\xab\x70\xd1\x39\x77\xd6\x50\x53\x50\x47\x3a\x6b\x48\x59\x14\x83\xb1\xdd\x8c\x52\xba\x6a\x08\x44\xc2\x6c\x7b\x3e\xf3\x12\xc8\x77\xa6\x0c\xd2\xae\x8b\x46\x33\x51\xe5\x2b\x08\x9f\xa9\xdb\xdf\xc0\x62\x47\x23\xa4\xe1\x62\x98\xb7\x28\xd9\xbc\xae\xff\xcd\x3c\x9e\x5c\x81\x93\x19\x84\x16\xc3\xc1\x44\xb0\x64\x68\xe4\x63\xa2\x0f\x2a\xe0\x7a\x82\x89\x3a\xc4\x1a\xd4\xbd\x3f\xe9\xd6\x65\x79\x93\x89\x56\x30\x4f\x47\xfe\xd4\x8e\x3c\x75\xb2\x1e\xe9\x83\xbc\x86\xe8\x5f\xc3\x7a\xb9\xed\xcc\x65\x5f\x99\x02\xa0\x53\x44\x39\x80\xb7\xa5\xb2\xe5\x8a\x6f\x26\x08\xfe\xec\x46\x1f\x10\x51\x35\x49\x9c\x1e\x0f\xc5\x82\xca\x36\x0c\xb4\x76\x64\x24\x82\x07\xb5\xc3\xc1\xee\x82\x25\x33\x36\x98\xad\xfa\x9f\x6a\xc5\x99\x31\xc5\x0d\x81\x01\x1c\x7a\xf9\xef\x03\x2f\x4b\xb7\xb9\xff\xcd\x69\xb2\x9c\xef\x0c\xc6\x50\x7b\x8b\x37\x04\xc2\x3d\x36\xe3\x65\xfb\x45\x6d\xab\xd3\x75\x1d\xae\x10\x64\x98\x01\xac\x86\x8d\x02\xe2\xb4\xbf\x27\x01\xa5\x17\x62\x7f\xf5\x37\x7d\xf3\x9f\x0e\xdf\xbf\x61\x9b\x79\x7b\xa2\x49\x0c\x3c\xae\xf7\xd8\xb2\x72\x46\x7c\xcf\x17\xef\xb0\x3f\xfa\x6f\xb4\x9b\x9d\xa8\x3c\x9d\x84\xe5\x98\x07\x25\xbc\x79\xc3\xf2\xcd\xd2\xac\x90\xb8\x93\xf2\x94\x9f\x94\x63\x7a\x80\x59\xdf\xc1\x80\x35\x98\x14\xb3\xd9\xa7\x3e\xf7\x3f\xf3\x79\xb6\xd1\x95\x6e\xac\xa9\x69\xeb\x19\x0f\x79\x50\x9e\xec\xed\x09\xd5\xe5\x44\x17\x96\x77\x0a\xbb\xfe\xd2\xc2\x4e\xc6\xe3\xfc\x94\x0f\x97\xd2\x34\xd8\x50\x79\xce\x17\xd4\xa2\xf9\x3f\xc8\x43\x99\xcc\xd2\x22\x18\x4d\x24\x0f\xb9\x2a\xee\xc4\xef\x79\x2a\xf3\xef\xaf\x92\xaa\xba\x2d\xca\x99\xf8\x9d\x2e\x93\x6b\x40\x57\xc1\xad\x1a\xc5\x63\x0a\x16\x58\x13\x8b\xfd\x50\xad\xaf\x96\x29\xa4\xe2\x90\xc0\x84\x1b\xef\xaf\xe4\xfb\xda\x37\xf1\x9a\x75\x00\xc1\xaf\x58\x17\xdf\x69\x42\x3a\x61\x12\x8e\x73\xc2\x4f\xcb\x13\x3e\x1e\xe3\x7c\x0c\xb8\x00\x5d\x30\xea\xbc\x2d\xe9\x92\x75\xe3\x75\xb8\x37\x4b\x85\x0e\xc8\x81\x79\x08\x45\xaa\xae\x73\x92\xd0\xd2\x75\x6d\x9b\x1a\xa5\xb4\x20\x15\xbd\x6b\x0f\x41\xb8\x64\x3f\x61\x67\x7b\x96\x1a\x1b\x2b\x87\x43\x13\xa5\xeb\x73\xeb\x28\x31\x31\x56\x46\xf5\x45\x2b\xad\x3e\xb5\xd5\x13\x6a\x6f\x05\xc7\x46\xeb\xcd\x3a\x06\x2a\x71\x5d\xa6\x4a\x31\x47\x86\x1d\x5b\xe6\x27\xda\x97\xce\xa5\x76\xce\xa5\x76\xce\x8d\x76\xce\x7b\xda\x39\xef\x6a\xe7\x24\x75\xdd\xf4\x13\x0e\xc8\x58\xd6\x5a\xd7\x7c\x47\x07\x4e\xa0\x8c\x4e\xa3\x42\xee\xa8\xec\xdd\x08\xa5\xb4\x32\x87\x5b\xd1\x41\x4c\xc5\x86\x4b\x74\x5e\xbc\x4d\x17\x04\xee\x6d\x76\xb0\x95\xfb\x66\xbe\x6f\x3b\x4e\xae\xad\x1e\xde\x19\x6a\xdb\xcb\xb6\xd5\x39\xc1\x02\x0e\x68\x50\x51\x1a\xab\xf7\x06\xc4\x88\x44\x57\x36\x15\xbe\x64\xb6\xd1\xc0\xd6\x6e\xa3\x98\x54\x74\x42\xd6\x2d\xe5\x66\x54\xc6\x69\x73\x03\x7d\x81\x0a\xca\x94\x8a\x5b\xba\xee\xa8\x44\x05\x94\x53\xd7\x28\xd1\xf6\x79\x92\xc1\x01\xb6\xb8\xa8\xb0\x8d\x24\x61\x9a\x70\x67\x35\xc1\x52\x85\x73\xd7\x1d\x09\x3d\x1c\x12\x0d\xdc\x31\x94\x63\x98\xb2\x51\x2a\xef\xa5\xe2\x9e\x78\x1f\x77\x7c\x90\x55\x38\x74\x8f\x18\x63\x32\x13\xff\xac\x68\xa2\xfb\xb2\xa4\x45\x5d\x6f\x67\x49\x13\x58\x63\x26\x40\x3f\x85\x00\x7d\xa9\x44\x47\x79\x6c\xa5\xd2\x2b\x1b\xc4\xeb\xda\x79\xe4\x90\xaa\x3d\xc9\x8f\xaa\x38\xa8\x60\x4f\x70\x43\x47\xac\xae\x47\x85\xeb\xf2\x70\x19\xbc\x64\x68\x49\x16\x84\x41\x0b\xc9\x3d\x2d\xc3\xb4\xae\x51\x11\xb2\x60\x55\xd7\x39\x80\x76\x24\xc1\x0d\xf8\xdf\xbb\x6e\x89\x6e\xc8\xbd\x7c\x33\x87\x6d\x6e\x46\x5f\x32\x74\x4f\x66\x98\xe4\x28\x23\x62\x7a\xc4\xb3\x29\xd5\x59\x00\x4f\xa6\xb0\xeb\x98\xd3\x2c\x9a\xc2\x94\xdc\x47\xb3\x68\x1a\x8b\x8d\xc7\x8d\xfa\x35\xc7\x96\xcf\x60\x5a\xd7\x12\x3f\x4c\x4d\x7c\x26\x86\x68\x6a\xfc\x20\x4c\x71\xf7\xb2\xb8\x4c\x4e\xe2\x4d\x34\x15\xe5\xec\xa4\x20\x4d\xa5\xff\x58\x46\xd6\x32\x31\xc7\xf6\xaf\x51\x46\xd3\xf0\x27\x54\x90\x39\x0e\x16\xe2\xd6\xd9\x9e\xef\xba\xa8\x88\x32\xd1\xbe\x44\xfc\x99\x63\xac\x6c\x07\xf7\xd0\x53\x4a\x69\x12\xde\xeb\x23\x9d\x15\xd1\x45\xe3\xe0\x1e\x93\x34\x54\x0d\x48\xc8\x3d\x59\xe3\x40\xc7\xc2\x24\xe4\xbe\xe3\x35\x7e\xce\xfa\x19\x15\xd3\x2e\x42\x42\xee\xe9\xf3\x8b\x08\x4c\xc6\x42\x15\x00\x24\x51\xb1\xb5\x36\x8f\x9c\x5d\x27\x26\x6b\x9a\x84\x7e\x30\x21\xd3\xe1\x58\x40\x19\x0e\xdf\x90\x8a\x08\x65\x76\xbe\xe5\xa5\x9f\x20\x53\x82\xd8\x17\xa9\x17\x17\xd4\x4e\x5f\x63\x25\x76\x19\x25\x82\xf4\xeb\xba\x1c\x51\x9a\x89\x35\x85\x38\x2d\x71\x4b\x65\x53\xf5\x7a\x30\x57\x3f\x5a\xa8\x1f\xb9\x5b\x4c\x9b\xf8\x64\x7d\x5a\x9c\xac\x65\xb4\x7c\xd9\xed\xeb\x5a\xf5\x15\x2f\x68\x74\xc9\xd0\x2d\x43\x0b\x4c\x4a\x1c\xb7\xdc\x4e\x7c\x20\x6d\xe2\xd6\xeb\x3a\xe6\x08\x0e\xd4\xc4\x5d\x75\x6c\x8d\x71\x74\x19\xcb\x91\x4e\xe9\x78\xbc\x3e\x49\x4f\x0b\xb1\x82\xed\x2a\x53\x55\x06\xe0\x51\x28\x43\x88\x58\xfe\xeb\x33\xdf\x75\x65\x03\xe0\xa7\x90\x9f\xc6\x60\xb9\xde\xf3\xb1\x42\x82\x43\x0a\xf8\xdb\xd9\x95\x27\x15\xeb\xbd\x03\x59\x62\xe8\x3c\x72\x02\xc7\x69\x2c\xb0\x19\x1d\xac\x54\x92\xf5\x69\xea\xba\xe7\x6d\x91\x6b\x92\x0a\x56\x22\x9a\x27\xee\x1a\x1b\xa8\xb9\x0b\xe2\x1b\x37\x0b\xad\x18\xe9\x63\x44\x68\xa1\xbe\xb8\xb6\xb1\xb0\xf5\x38\x55\xad\x5a\xd2\x31\x96\x80\x39\xfe\x9a\x91\x84\x56\x42\xca\x7c\x64\x79\xfa\x67\x3f\xa4\x55\x99\x77\x6c\x40\x07\xfa\x4e\xdb\xf6\x85\x2c\x31\xfe\x9c\xe1\x24\x98\x9a\x23\x53\x50\x5a\x2a\xca\xc8\x1a\x56\xa2\x68\x80\x3e\x0c\x3b\xa9\x94\xdd\x33\x81\x18\x08\xd7\x1d\xa1\x94\xfe\x2a\x03\x16\x2b\x0c\xc8\x42\xae\x8b\x2a\x5a\xe9\x01\x10\xf4\xaf\xd6\x58\x5d\x57\x98\xac\x15\x13\xa7\x51\x8c\x31\x29\xe9\xc8\x27\x28\xa5\x7f\x98\x12\x04\xdb\xa7\xa9\x8e\xd5\x22\x85\x7c\x5d\x4d\x52\x49\x00\xe4\x0e\x0a\xb5\x26\x65\x17\x1c\x0d\xdb\x4a\x8d\xd5\x5c\xba\x08\x8b\x76\x63\xd1\xce\xbf\x45\x49\x6c\x35\x35\x8b\x92\x58\x76\x40\xfc\x12\x73\x55\xd7\x9f\xaf\x3c\x21\x8a\x3a\x83\x74\x4b\xa5\xe0\xd9\x52\x4a\xc8\x1a\x93\x0e\x23\xd4\xe1\xb3\x41\x15\xb6\x47\x60\x38\x78\x87\x18\x59\x63\x33\xf4\x8d\x28\x51\x7a\x0b\xa5\xd9\x96\xe9\x14\x93\x52\x48\x59\xfa\xd1\x9a\xcc\x51\x25\x67\x46\x1e\xd6\x40\xb4\x20\x29\x5b\x89\x53\x02\xf3\xac\xe8\x39\x43\x3c\x2a\x63\x58\x5b\x61\xaa\xa5\x68\x50\xe8\x5f\x27\xa8\xa2\x1f\x3b\x27\x38\x56\x64\x98\x31\xf6\x58\x60\x33\x67\x13\x52\xd0\xbe\xb0\x24\x0a\xf8\x76\x4e\x56\xe4\x86\xdc\xd3\x09\xb9\xa6\xce\xc4\x21\x57\xb4\x70\xdd\x28\x26\x97\xa2\xfd\xb7\x34\x23\x77\x42\x68\xa6\xae\xdb\xfa\x72\x23\x21\xf9\xa6\x98\x9c\xd3\x97\x63\x2a\xb7\x57\xb7\xa1\x1f\x74\x00\xa0\xea\xda\xf3\xc9\x3b\x7a\xa7\x9a\x00\x04\x3b\x95\x80\x5c\xd2\xe1\x29\xa9\xeb\x29\x3e\xb9\x1e\x51\xfa\xce\x75\x15\x14\xcc\x9c\xde\x45\xd7\x31\x3e\xb9\x1e\x8f\xa5\x8c\x72\x5d\xe5\x11\xb0\xa2\x13\x92\xd4\xf5\x7c\xc3\x4b\x6a\x56\xd7\x68\x81\xe6\x62\x9e\x47\x4b\x7c\x72\x43\x59\xb4\xd2\xde\xeb\x37\x68\x2e\x3e\x9a\x91\x0a\xe3\x07\x45\xd6\x73\xac\x0c\xd6\xa2\x31\x2f\xe9\x39\x6e\x4a\xd7\x45\x68\x4e\x47\x37\xa2\x32\xd7\xbd\xdf\xdb\x23\x05\xe4\xc7\x93\xaf\xe3\x26\x9d\xa3\xfb\x31\xbd\x26\xa5\xeb\x8a\xe6\xde\x9b\x16\x9d\xdc\x50\xae\x6a\xbb\x41\x57\xe4\x52\x0c\xac\x25\x6a\xef\xcf\x26\xd2\x52\x7d\x2d\x26\xf6\x2a\xba\x8e\xeb\xfa\x12\xfe\x45\xe2\x0f\x7d\x2f\x1d\x50\xd6\x18\xef\x5c\x0a\xd9\x77\x89\x1b\x2d\xd0\xd6\xe4\x12\x93\xa9\xeb\x0a\x1d\xe2\xd2\xcc\xa2\xeb\xde\x1b\x3c\x21\xc1\x31\x3b\x9e\x19\x68\xdd\x7a\x3e\xc8\xae\x91\x8c\xde\x62\x72\xd5\xb4\x31\x13\x19\x43\x05\x0e\x8a\x06\x15\x82\x1b\x62\xe3\x0c\x40\x99\x71\xea\x69\xc8\xba\x75\x13\xa0\x9b\xa6\x50\xa9\x28\x1a\xe4\x99\x6d\x19\x10\x20\x8f\xbe\xeb\x26\x88\xd1\x85\xa9\x46\xa8\x1e\xa0\xe7\xd0\x12\x02\xb8\x7d\x30\x36\xa9\x45\x09\xc2\x67\x4d\x67\x42\xc7\x9e\x59\xc7\xb8\x26\xa2\xf6\xec\xc0\x75\x9d\xd7\x2f\x20\x53\x42\x46\xd7\xd1\x24\xc6\x6a\x8b\xff\xb4\x17\xf4\xb8\x14\xc4\x6a\x24\xd0\x1a\x8e\xdc\x41\xe8\xc9\xc0\x6c\x4e\x91\x89\xcd\x40\x99\x16\x65\x36\xc7\x52\x96\x4f\x8e\xf5\x19\x44\x9b\xee\x62\x67\x01\x67\xd2\x1d\xe3\x1e\x69\xc5\xc9\x5a\xb3\x26\xb9\xb9\xd3\x9d\x03\x3d\xa9\xa0\x7f\xf3\x6c\x58\x0b\x1d\xf2\x1b\x4e\x82\xb5\x01\x53\xda\xdb\x83\x45\xb2\x8e\x8a\x98\xd8\x72\x14\x40\x4f\xa1\x13\x72\x37\x35\xa7\xb2\x0f\x4a\xd1\x4a\xe9\xfc\x93\x5d\xd1\x01\xc6\x6b\xad\xed\x0c\x07\x1a\xab\x80\xe9\xb5\xd6\xbf\x0a\xe2\x63\x32\x42\x8c\xa6\xc6\x4f\xf6\x8a\x09\x8a\xed\xc7\x76\x0b\xda\x20\xa5\x3e\x0b\x52\x76\xd3\x45\x5d\x57\x88\x91\x19\xc6\x28\x05\x2f\x2a\x52\x92\x11\xaf\xeb\xcf\x44\x3b\x03\x1e\x97\xed\x2c\x44\x2f\x75\xe0\xac\x83\xb5\xab\x90\x72\xd1\x85\x50\xa3\x4b\xb2\xe9\x70\x44\x47\xa3\x39\x59\x20\x4c\xba\x6e\x9b\x5b\x82\xac\xfc\x4f\x38\xc1\x7e\x22\x94\x78\xc0\x7b\xde\xec\xe2\x86\x9c\xe8\xff\x22\x3d\xe6\x1d\xe2\xfc\x45\x9a\xa8\x5a\xeb\x60\xcf\x36\x25\xde\x17\x32\xb3\xae\xe7\xca\x52\x55\x83\x6d\x75\xc1\xd2\xeb\x05\xaf\x6f\xd3\x19\x5f\x38\xa4\xbf\x95\x91\x62\x6d\x38\x2e\x8b\x13\xc7\x9c\xf2\x76\xf7\xbc\xa1\x1f\x1c\xc8\xc8\xb9\xd6\x8d\x6d\xd3\x2f\x7b\xa8\x5f\x60\x8f\xdb\x87\x90\x0c\xab\x27\x5d\x87\x7c\x58\x07\x0e\x00\x00\x3a\x9f\xe9\xb4\x7c\xd5\xf4\x5a\x7d\x39\xd8\x49\xd7\xfd\xbc\x31\xb0\x1d\x08\x1d\xe2\x08\xde\x52\xdb\xa6\x4c\x01\xd3\xf5\xda\xd4\xfa\xd5\xab\x66\xbd\xde\x68\x10\x6c\x1e\x77\xec\xb1\x97\xf6\xe1\x88\xc7\x61\x6f\xa8\x03\x00\x4e\x1b\xf6\x03\xcc\x2d\x3f\xc0\xdc\xf6\x03\xc4\xa4\x62\x0d\x62\x78\xe7\x12\x56\x3c\xbd\x03\x38\xc6\x55\x49\xef\x5a\x6f\x2e\x75\x2b\x72\x02\x47\xc2\x3b\xae\x4a\xa3\x93\x5e\xda\xfe\x7b\xfa\x82\xde\x59\x77\xc9\xa5\x04\x0d\xbe\xd3\x5e\x72\xe4\x52\x06\xca\xbe\x28\xa6\xf4\x4e\xfe\x24\x97\xad\x4f\xe7\x9d\xf9\x29\xea\x05\x17\x45\xe3\x02\x7b\xa7\x6e\x80\x23\xe6\xf9\x06\x02\x4d\x0f\xb9\xce\x38\x90\x94\x27\x42\x29\x8f\xb8\xe0\x66\x4f\x47\xb6\x8b\xbc\xb1\x00\xb5\xb7\xb4\x72\x70\x09\xd1\x47\x15\x2a\x35\xfc\xa0\x86\xb7\x33\xa2\x30\x6f\xc8\xbb\xad\x08\x63\x51\x3c\x60\x93\xef\x47\xd4\x33\x09\xd9\x59\xea\x92\x2d\x8f\xba\x8f\x7a\xa4\x81\xef\x76\x78\x7b\x6b\x25\x7c\xd6\x05\x4f\xfb\x42\xd7\x9f\x1e\x74\x8c\x68\xef\x07\xba\xff\xdb\x29\x8a\x92\xbd\x3f\xe3\xe8\xb7\x8b\xfd\x8b\xc9\x59\x00\x50\x63\xfc\xa2\xbc\xc8\x2f\xe6\xf1\x23\x1c\x75\xaf\x2f\xf6\xc3\x33\x14\x06\xa7\x17\xfb\x17\xfe\x59\x8d\xbf\xd9\x4f\xdb\x56\x3d\xef\xf9\xdc\x2c\x11\xc7\xe1\xa5\x77\x5d\xb2\x55\x57\xb3\xcc\x5b\x97\x0f\x8d\xfa\x48\x72\x02\x1e\xb7\x65\x83\x83\x56\xec\x0e\x7d\xdd\xdd\x24\xab\x4f\x36\x60\x5b\xf8\x27\x3f\x6d\xe1\x16\xc5\xfe\x59\x95\x71\xa9\x36\x0d\x1a\x85\x51\x5f\x6f\x01\x3c\xe2\xd1\x24\xb6\xce\xcb\x10\xa3\x4e\x90\x17\x1c\x81\x6b\x14\x76\x30\x91\x06\x46\x2d\xe2\xc0\xf9\xc5\xee\x18\x28\x0b\x3d\x4f\x6d\x70\x46\x0a\xa3\x3c\x0e\xa2\x38\xe8\xbe\x82\x18\x51\x3d\xe2\x43\x3d\xea\x52\x18\xc0\x0c\x5b\xb0\xb8\xe8\x01\x5c\x2c\x07\x7c\xed\x48\xde\x01\xfc\x95\x29\x31\x76\x2c\x47\xd4\x16\x08\xa7\x93\xaf\xc0\xc2\x3f\x16\xeb\x45\x8d\x9c\x75\xa0\x01\x7b\x12\x3a\x39\xe1\xa7\x39\xd8\xa7\xd3\x39\x6a\x17\x3b\x4a\x23\x1e\xcb\x64\x65\xad\x11\x13\x1b\x17\xfd\x6e\x05\x51\x8c\x89\x5d\x92\x1c\x17\xc4\x08\x14\x62\x45\x43\x9e\xf9\xa1\xcd\x96\x50\x89\x83\xd2\xf8\xe2\x0d\xb9\xa6\x75\xeb\x79\xae\x90\x9f\x41\x8d\x1c\xf9\x18\xc0\x62\x07\x8f\xb2\x3e\xf9\xe1\x04\x03\x56\xeb\xd0\xe9\xda\x48\xbd\xb9\xe9\x0c\xe7\xba\x1f\x8d\xe6\x26\x06\x34\x30\xad\xd0\x71\xd6\x0a\xbe\xf1\x2d\x79\x2f\xa1\xbe\x2e\xaa\x47\xe8\x34\xba\xb8\xbd\xf8\x35\x1e\x9f\xe1\xe8\xb7\xb3\xf8\x51\xfd\x17\x0b\xed\xeb\x04\x19\x8c\xf2\x41\x02\x4e\x49\x01\xe2\xa5\x33\xad\x46\x91\x7e\x3b\xd0\x46\xa5\xe9\xa6\xd4\x39\x95\x46\x93\x49\xec\xba\xce\x99\xfc\xdd\xc2\x61\xc5\x2d\x7e\xf9\x19\x3d\x0c\x23\x69\xdf\x01\x27\x84\x38\x78\x6f\x40\x8e\xea\x7a\x94\x46\xe2\x65\xed\xd4\x2c\x94\x38\xee\x49\x30\xf2\x10\x60\x0f\xb0\x9a\x68\x93\x94\xa4\x85\x88\xe6\xe6\x19\xc4\x84\x68\xa8\x24\x4e\xb9\x9d\xb6\xf8\x32\x14\x8b\x34\x10\x92\xa7\xc5\x0a\x27\x97\x42\x35\xac\x98\x50\x37\xe0\x4b\xc2\xb5\x3f\x18\xac\xcc\x01\x00\xa7\x1c\x66\x95\x7c\x90\x53\x94\x4a\x57\xa8\x3e\x22\x32\xc7\x2d\x36\x3e\xc7\x4b\x99\x9d\x29\x8d\x71\xa8\x7e\x20\x2e\xae\x64\x57\xc0\xf1\x30\x25\xdc\x46\x4c\x85\x2c\x5e\x4a\xc9\x2d\x68\xde\x8f\xd1\x4e\xa3\x83\xb8\xcd\xfa\x34\x89\x69\x41\xac\x85\x4b\x7d\x99\xf5\xaf\xe9\x88\x84\x0f\x26\x73\x8a\x74\x06\xe9\x7c\x20\x97\x5f\xb0\x14\x24\xd7\x4a\x4c\x0f\x32\x2a\x87\xea\x2f\x50\x22\xba\x14\xbc\xd1\x20\xe8\x22\x59\x0e\x6e\xb0\x65\xb6\x12\xb4\x46\xde\xd2\x4b\x94\x4b\x32\xfd\x59\x12\xa9\xd4\xc1\xab\x7a\x55\xb2\x1b\x14\x06\xff\xc8\x79\x9a\xd5\x10\x01\xbc\x4f\x7e\xa7\x0f\xe0\x41\x56\xb2\x1c\x8e\xdb\xa4\xe3\x47\x05\xb9\x0b\xd8\x1d\x1c\x99\x89\xcf\xba\xf9\x0b\x5e\xb4\xe2\xd6\x92\xed\x7e\x4f\xb6\x9f\x98\xc3\xbe\x0e\x0f\x5c\x24\xd5\x10\x8e\xbc\xee\x90\x65\x36\xe9\x20\x9d\x0f\xf3\x36\x89\x52\x34\x39\x61\xa7\xe5\x09\xdb\xe0\x6f\x12\x6a\x3e\x62\xb1\xcd\xdf\x1a\x32\xcd\x8a\x8a\x55\xfd\xc4\x45\x76\x18\x95\xcd\x8c\xc1\xda\x93\xd0\x4d\x4e\x2c\x95\x14\x58\xbe\x86\x6d\x48\xab\x80\x3e\x60\x68\x19\x69\x94\xc7\x27\xa5\xeb\x96\x42\xe3\xe8\x85\x3e\x81\x29\xb7\x75\x15\xf0\x7d\xd7\x45\x49\x98\x48\xe7\x13\xe5\x4a\xda\x8f\x41\xdf\x22\xb7\x00\xf2\x18\x3f\x14\xe6\x04\xb8\x6b\x06\xeb\x03\xdb\x9b\xd3\xa8\x0e\xbf\x2e\x70\x50\x80\x07\xc1\x8c\xdd\x0d\xba\x52\x84\x03\xd0\xcb\x4a\x94\x8b\x01\x21\x8a\xd2\xb1\x81\x53\x06\xb6\xac\x79\x8a\x60\x58\x81\x62\x26\xc0\xbb\xd4\x8f\x0e\x72\x8e\x9c\xf0\xb2\x12\xbb\x6d\x41\x7e\xcf\xb2\x0c\x69\x1e\x1c\xec\xf9\x0d\x49\x66\xb3\x60\x30\x98\x6b\x23\x2d\x80\xd5\xb3\x4e\xae\x82\x6b\xc6\x11\x26\x40\x76\x18\x0b\x61\x91\xcc\x66\xdf\xf7\x73\x1c\xd8\x85\x26\xb3\x19\xd2\x08\xd7\x3d\xf4\xfc\xa0\x77\xad\x89\x95\x61\xf0\xec\x52\xe8\xc3\x0f\x03\x0e\x1f\xda\xcf\x62\x33\x20\x54\x47\x70\xd9\x3c\x51\x05\x0f\xa9\xf5\x3c\xd4\xd2\x73\xc4\x88\x7d\x70\x8c\xcd\xdb\xb0\xea\xb7\xf9\x65\xf7\x3f\x03\xf8\xeb\xbc\xef\xb0\xa1\x5e\x16\xab\xbf\xe3\x1f\x8b\x1b\xc9\x23\xb6\xbd\xdb\xf7\x05\x56\x65\x3f\xcb\xb2\xad\x5d\x18\x28\xfe\x53\xaf\x6f\xa9\xe1\xf3\x7d\xb6\xeb\x81\x4e\x8b\x92\xbe\x60\xa8\xfa\xde\xcd\xe2\xd3\x4a\x5e\x0c\xce\xcb\x3b\x84\xec\x49\xae\xeb\x87\x06\x5b\xbb\x65\x48\x74\x61\xf8\xf0\xe0\xf7\xf6\xe6\x1a\xd2\x81\x29\x46\x3d\xf0\xb2\xe5\xba\xaf\x5e\xd3\x62\x34\xdc\xb8\x13\x20\xb1\x8b\x71\x38\x5b\xae\xb2\x84\x33\x07\xbc\x1b\xdb\x0f\xeb\x9a\x61\x23\xb7\xa3\x98\x30\x1b\xa2\x12\x62\x2c\x3a\x8b\x10\x10\xb9\x59\x6c\xe7\x04\x37\xc7\x5f\x56\x86\x0e\xde\xea\x8b\x0e\x0c\x76\xc7\x75\xfd\x31\x86\x23\xe2\x12\x93\xdc\x75\x37\x78\x4d\x0e\x26\x31\xb3\x4b\x80\x34\xa0\xb6\x48\x3d\x13\xfc\xf3\x77\x70\xa5\xed\x2c\xfe\x14\x93\x9f\x5b\xdb\x54\xda\x26\xce\x54\x5f\xb7\x3c\x23\xc5\x5a\xcd\xfb\x89\xee\x47\xbf\x75\x76\x5e\x63\x3b\x7d\xcc\x6b\x9b\x2b\xb6\x47\x94\x6f\xda\xc0\x3c\xeb\xee\x2b\x7d\x28\xae\xc6\x03\xb0\xea\x98\xeb\x2e\x11\x44\xed\xca\x44\xe1\x38\x4c\x75\x12\x03\x48\xd9\x08\x1a\x56\x92\x66\x42\x89\x36\xef\xf2\x05\xcb\xdb\x17\x61\x30\x03\xae\x8c\x75\x72\xea\x49\xc4\xb4\x91\x35\xc7\x1a\x04\x0f\x22\xf0\xfb\x6f\xe1\xa6\xb9\xf4\x9e\x27\x59\x76\x95\x4c\x3f\x76\x93\x90\x32\x3a\xc0\xe7\x37\x79\x57\x9b\xf4\x4e\xb1\x39\x15\x3a\x8b\x7e\x02\x13\x2b\xe9\xfa\x0c\xf3\xa8\x8c\xa9\x90\xc2\x84\x37\x42\xad\x69\xb3\x4f\x34\x44\x45\x78\x1a\xcf\x01\x29\x77\xe1\xa8\x65\xcf\x27\x6b\xda\x13\xfd\x29\x4d\x21\x02\x3b\x9f\x42\x58\x3d\x1d\x4d\x4e\x12\xe3\xaf\x4b\xf7\x7c\x25\x7d\x13\x6d\xb6\x3d\x19\x8f\xab\x53\xe3\x9e\x8c\xc1\xdf\xbc\x88\x2a\x7d\x00\x5a\x46\x93\x98\x94\x52\xa9\x64\x5e\xc5\x8b\xd5\xbb\xfc\x55\x92\x55\x0c\x8e\xd4\x8a\x36\x17\xcb\xc8\xc7\x3b\xcc\x5b\xb2\x65\x51\xde\xc3\x99\xd5\x48\x68\x7d\x74\xe4\x43\x56\xcc\x82\x96\x61\x14\x07\x90\xee\x20\xa3\x0f\x1d\x39\xd5\xe6\xea\x51\xfe\x15\xbc\x53\xf6\x9e\x4f\x12\x2d\xb9\xad\x74\xae\x62\x07\xf5\xa0\xc6\xb6\x24\xdd\x95\xb5\x44\x39\x0e\xf5\x51\x81\xeb\x42\xbe\x2c\xc8\x31\x52\x68\x8f\xab\x20\x77\xdd\xdc\x6c\x7f\x5b\x25\x86\x5e\xa1\x1c\xbb\x2e\x47\x39\x6e\x70\x83\xda\xc4\x36\x44\x35\x6c\xad\x57\x46\x43\x24\x1c\xe2\x40\x3f\x54\xab\xcc\xc7\x64\x8b\x39\xe6\x04\x95\xf4\xd2\x53\x79\x18\x10\x97\xe9\x00\xce\xf6\xfc\x13\x5c\x68\x73\x74\x49\x7c\x4c\xca\x53\x5a\xb9\x6e\xb5\xb7\xd7\xe8\xaa\xfb\xca\xa2\xd1\x41\xda\xe2\x18\x29\x40\x47\x2a\xac\x28\xe5\x9e\xd3\x66\x67\xe0\xe1\xf4\x53\x15\xaf\x4c\x80\x03\x6f\xa6\x34\x91\x47\x7d\x10\x42\xda\x79\x7b\x60\x46\x47\x45\x43\xb2\xc2\x56\x1e\xfa\x05\x95\x75\xcd\xeb\x1a\xc9\xf2\x74\xf5\xe2\x93\xc1\xe2\x46\x29\xf8\x27\xb2\x5f\x53\xde\x49\xfe\xd1\x8a\xa1\x14\x48\x2f\x62\x44\x1f\xb9\xa8\x63\xcc\x50\x7b\x0c\xe3\xa0\x8c\x5b\x7a\x22\xbc\xae\xad\x19\x15\x65\x0f\xb4\x35\xf3\x74\xa5\xfd\x74\x47\xd6\x77\x83\xed\xcd\x1b\xc3\x06\x32\x3b\xa7\xcc\x0b\x36\x67\x65\xe7\x1b\x73\x9e\x19\x45\x4e\x5e\xf0\x74\x7e\xef\x08\x79\x5a\x5c\x97\xac\xaa\x1c\x62\x71\x23\xe4\xc8\x45\xe6\xe0\x2d\x77\x0f\x62\x12\x39\x25\xab\x8a\xec\x86\x39\xc4\x11\x0c\xb3\x57\x80\x60\x0e\xbb\xc3\xa5\x74\x1f\x4d\x88\x2e\x68\xe6\xc8\x52\x01\x7f\x96\x38\x82\xfb\xfe\x77\x0b\xf5\x89\x2a\x47\x14\x1a\x93\x9c\x3a\x2b\x96\xcf\x40\x5f\x48\xe9\x03\xe4\x65\x1d\x98\x84\xbc\x21\x49\x76\x9b\xdc\x57\x83\x49\xbe\x40\x2a\xb4\xf3\x22\xa5\xc3\xc6\x3c\x6d\x26\xa7\xd4\x64\x23\xd3\x60\x4b\x6b\x80\x50\x77\xd2\x55\xa7\x0d\x72\x3f\x65\xca\x6b\x59\xbb\x9e\xc8\x0e\x70\xe4\x16\xae\x24\xe5\xfd\x12\xb1\x28\x8f\x8e\x62\x60\xa8\xf2\xd7\x4e\x11\xe5\x91\x1f\xc7\x68\xa3\xc6\x14\xd0\x04\x87\x12\x6d\xed\x80\xdc\xb3\x24\xa4\xf9\x09\x7b\x03\x49\x37\x48\x68\xc9\x82\x96\xb4\xd8\xf4\xd4\x6c\xaa\x01\x12\xd7\x90\x23\x30\xe0\x51\x1e\x4d\xe2\xb1\x23\x88\xdc\x89\x65\x65\x29\x64\x8e\x69\xab\x6c\x70\x83\x89\x4c\x32\x2d\xb7\xd7\xb2\xb6\x86\x88\xb1\xb3\xbd\x24\xad\xc0\xbc\x49\xab\x16\x24\x6d\xda\xf2\x7e\x00\x87\x7c\xbb\x92\x49\xa7\xac\x94\x57\x24\xdb\x4c\x99\x95\xed\xc8\x23\xcd\xd3\x02\x2b\xbc\x09\x9a\xab\x21\xaa\xc8\x1a\x02\x15\xca\xb6\x71\x56\xa2\x48\xb1\x57\x50\x68\x00\x1f\x16\xd2\x45\x7f\xb7\x62\xd9\x7c\x0f\xc6\x64\x0d\x27\xba\x78\x27\x83\xe4\x3a\x5f\x9a\xa9\x0f\x84\xa2\xe8\x3e\x59\xa2\x0c\x87\x69\x98\x69\xf5\x23\x41\x05\x29\xc9\x6b\x92\x62\xf5\xf3\x8d\xd0\xc8\x02\x54\x8c\xc7\xe4\xd3\x2f\x99\xbb\xa5\x9a\x3c\x31\x27\x58\x7c\x9b\x8f\x28\x7d\x0d\xb2\x51\x69\x2a\x6b\x2a\x74\x15\x82\xd2\xba\x2e\xf5\xd4\xc2\xdb\x72\x28\x9a\x86\x4c\x69\x1a\x66\x9d\xd4\xdb\xe5\xfd\x43\x86\x2c\xe5\xa7\xa5\x61\x8f\xe9\x5c\xd9\x3f\x16\xc5\x47\xb1\x9b\x1e\x7e\x82\x18\x99\x7a\x95\xd0\x09\x3f\x94\xc9\x54\xec\x6c\xc7\xfe\x19\x15\x32\x44\x34\xf0\xcd\x40\x03\x4b\x45\x67\xc0\x42\x55\xd3\x76\x78\x38\x45\x38\x40\x56\x2d\xd7\x8c\x83\xaa\x29\xab\x47\x76\x25\x74\xcb\x6b\x48\xc6\x37\x33\xfe\x21\x5d\xb2\x62\xcd\xd1\x54\x94\xfd\x89\xe5\x29\xd6\x7c\x34\x89\xa3\xc3\x18\x76\xae\x09\x9a\x10\x46\x96\x28\xc5\x61\x1a\xbc\x26\xac\x33\xe4\xa0\xf7\xf4\xdf\xe4\x38\xe4\xc1\x6b\x78\x78\xb0\xf1\x30\xc7\x61\x1e\xbc\xc1\xb8\xbb\x3e\xd4\xcf\x6d\xb9\xa1\x46\x54\xc8\x6d\x25\x1a\x18\x49\x65\x8c\x57\xb1\xa9\x42\x96\x03\x0e\x30\x09\xe5\xd1\x81\xd0\x05\x79\xf4\x38\xde\x49\x23\x2e\x18\x09\x4d\x44\xab\x48\xe5\xba\xf0\xc3\xe6\x2b\x39\x15\x9a\x4b\x74\xb8\xc7\xe2\xe8\x20\xd6\x80\x5c\xfa\xce\xa1\x7d\x67\x02\x6f\x08\x61\x4c\xf4\x90\x89\x0b\x4c\x64\xa1\x5c\xdc\x10\x92\x0f\x93\x22\xe2\xd1\x24\x1e\xca\xfe\x2f\x9f\x74\xf8\x8a\xd0\x2f\x95\x4d\x2f\x18\x16\xa7\xdd\x8f\x68\x62\xc4\x6f\x83\x49\x6a\x06\xb6\xc0\xd2\x36\x0a\x6b\xa9\x20\x05\x26\x45\x43\x6e\x17\x6c\x28\x62\x63\x23\x89\x5e\x49\x39\xc9\xa9\x4e\x23\x47\x52\xaa\x52\x3f\x5a\x6d\x49\x2c\x9a\x43\x98\x54\x43\x99\x4f\x5b\x06\x8f\x1f\x60\x87\x27\x19\xa7\xf8\xd5\xaf\xf2\xcc\x0f\x37\xea\x08\x4a\xb2\xb7\xc7\xeb\x3a\xb1\x17\x2f\xec\xdd\x9a\x06\x72\x8f\x9f\x52\xb1\x6d\x13\x7b\xa4\x44\x72\x70\x38\xf9\xd3\x6f\x93\x44\xad\x2b\x32\xe2\x98\x18\x29\x0a\x60\xb9\x20\x46\x11\xae\xeb\x25\x4a\xa3\x32\x76\x5d\xf1\xaf\xdc\x23\x99\x63\xe2\x44\x4a\x3d\x05\x2d\x02\xce\x58\xaf\xe0\x6d\x22\xaa\x31\xa5\x5b\x69\xa9\x5a\xa2\x56\x5b\xc1\x3f\xe9\xff\xcd\xdb\xdf\x77\xb7\x6d\x63\x6b\xe3\xf0\xff\xfe\x14\x16\xef\x0c\x0f\x10\xc1\xb2\x9c\xce\x39\xeb\x1c\x3a\xa8\x9e\x34\x4d\xda\xce\xb4\x4d\x1b\xa7\xd3\x76\x18\x8e\x17\x2d\x41\x36\x27\x14\xa9\x82\x90\x5f\xc6\xd4\x77\x7f\x16\xf6\x06\x40\x80\xa4\xd2\x4c\xcf\x7d\xff\xba\x56\x63\x11\x04\xf1\xfe\xb2\xb1\xb1\xf7\x75\x9d\xfe\x83\xbc\xba\xcd\xcb\xf6\x9b\x4a\x09\x59\xe5\x65\xfb\x36\xaf\xae\x45\xfb\x56\xb7\x9c\xa8\x96\xa2\x45\xe8\x95\x16\xec\xd8\x7f\x7a\xfb\x0d\x85\x35\xf8\xc9\xe9\xd1\xa1\xe5\x85\xfb\x46\xe0\xf4\x11\xce\xdc\x4d\x8d\x00\x2a\xe6\xe7\xec\x2e\x97\x15\x70\x64\xff\xcb\xa0\x02\x01\x96\x31\xed\x47\xb1\xb4\xc0\x2e\xa7\x63\x97\x53\x72\x1c\x4d\xd5\x6c\x23\x9a\x26\xbf\x16\x4c\xe1\x52\x03\xfa\x8a\x4b\xd4\x2e\xbf\xb2\x31\xb9\xbf\xb5\x07\x6b\x8d\xbf\xac\xc2\x36\xa3\xf6\x74\x0f\xcd\xf2\x75\x30\x76\xba\x3d\xf0\x0b\x3d\x03\x0d\x8e\x7a\x0f\x53\xf8\xcb\x37\xdf\x19\xf7\xc2\x6f\xeb\x7c\x25\x56\x11\xfb\x42\x2f\x6d\xa3\x71\x11\x4e\xf8\x0b\x6a\xcb\x4a\x90\x39\x15\x1f\xc6\xc6\xe9\xd7\xd8\xd3\x82\x22\x47\x7e\xb0\x1c\xf6\xeb\x4b\x04\x75\xe7\x8c\x4e\x62\x75\x54\x86\x67\x0c\xa2\xff\x9c\x17\x2a\x31\xbf\x83\x09\x47\xd0\x14\x60\x71\x72\x62\x12\x86\x98\x97\x33\x93\x00\x6d\x5b\xe2\x1e\xf8\x64\xce\x26\xa0\x91\x89\xe3\x20\xfe\xe7\xf3\xb6\xfd\xba\x37\x29\xd2\xcb\xcc\xea\x0d\x21\x1e\x54\x89\x63\xcd\x58\x64\x29\xca\x91\xfa\x1b\x22\x5c\xe8\x29\xd0\xb6\xd0\x5a\xe6\x74\xe7\xbf\x01\xab\xdd\x1e\x14\xdd\x6c\x55\x5f\x2c\x65\x5d\x96\x8b\xa0\xa3\x4d\x8e\x00\xbc\x3b\x44\x83\x3e\xd0\x73\xc3\x88\xb6\xdb\x70\xea\xfc\xd4\xb7\x35\x33\x34\x67\x56\x18\x1a\xf1\x49\xe0\x5c\xc2\xed\xa7\x93\x4e\xf8\x95\x5e\x0f\xc0\x34\xf6\xb8\xd0\x87\xaa\xc9\x9c\x49\xfa\x13\x24\xd8\x30\x99\x36\x19\x9b\xcc\x21\xd1\x23\xeb\xad\x1e\x10\x5f\xc2\x07\x1b\xa4\xdf\xcc\x81\xdd\xac\x04\x35\x3b\xe9\x6e\xbe\x2d\xce\x3f\x4d\x48\xc9\x15\x1b\xde\xd7\xb9\x43\x52\xa7\xea\x96\x00\xb4\x68\xee\x9c\x9c\x17\x85\x02\xff\x60\x26\x59\xbe\xa8\x92\xca\x12\x2a\x36\x19\x6b\x98\x7d\xe5\x79\x4e\x14\x0b\x91\x94\x0b\x5b\x0e\x9a\xec\x16\x08\xad\xc2\x24\x4d\xea\x3d\xfb\x99\x9f\xfe\xe3\x64\xd3\x9c\x9c\xb2\xdf\xf8\xe9\x09\x1a\x09\x50\x5f\x0b\xf5\xb7\x50\xff\x3d\x53\xf5\x4f\xdb\xad\x33\x2f\x70\xd1\x7e\x0d\x4c\x7d\xac\x0d\xd9\xcf\x2c\xda\x34\x27\x1e\x32\xce\x6f\xec\x6f\x68\x93\xf0\xd5\xd8\xf4\x0a\xef\xb7\x11\x39\xc9\x7f\x9e\x4c\xbd\xdb\xef\xae\x88\x7f\x85\x85\xa3\x68\x66\x86\x62\x14\x8d\x2b\xf4\xaf\xe9\x5f\x67\xbb\x62\x35\x9d\xee\xe1\x2f\x3f\x63\x7f\xf5\x39\x91\x01\xc6\x68\x4c\x5f\x9e\xfa\xa9\xf5\x90\x52\x1e\xf7\xec\x2b\xe4\x66\xf6\xb1\x18\xc3\x2f\xb8\x4a\x8c\xa6\x1e\xd9\xd0\x3b\xaf\x77\xe6\xc7\x63\xc6\xfa\x58\xb1\x65\x5d\xad\x8b\xeb\x9d\x04\x6d\x01\xdc\x92\x53\xa6\xf6\xac\x11\xea\x10\xb9\x22\xde\x21\x41\x0d\x2c\xc0\x70\x5f\x9d\xa6\x68\x91\xfe\x4a\x14\xcd\xb8\x3c\x0a\xf9\x38\xf1\x4d\x45\x43\xf6\xc8\xa2\xcf\xeb\x3c\xc0\x55\x06\x80\x92\x20\xe3\xa4\x57\x73\x7d\x16\x0b\x02\xb0\x04\x7b\x96\x2f\x97\xa2\x69\x0e\x69\xbd\xbb\xe4\xdb\x56\x8d\x68\x65\x95\xc5\xef\xd7\xa7\x92\x85\xbb\x60\xd1\x25\x4c\xf0\xbe\xa5\xc1\x47\x26\x29\xeb\xee\x39\x17\x32\x51\x74\xa8\x60\x0a\xee\xe3\xfa\x9d\x1d\x4c\xed\x1e\x78\x32\x7d\x94\x9c\xa8\x1e\xbd\xae\x16\x64\x41\xf7\xfc\xab\x2e\x0b\xd7\xf5\xa5\x45\x75\x5c\x2d\x52\x95\x25\x2a\xd0\x56\x52\xdf\xa6\x19\x05\x05\xc3\x61\x52\xa5\x2a\x95\x59\xb6\x27\x7e\x4b\xe8\xf5\xdd\x63\x83\x25\x15\xfd\x9d\x61\x67\xa4\x41\x93\x66\xef\xad\x3e\xc6\xdc\xe4\xcd\x97\xb9\xca\x3f\x7d\xcc\x77\x75\x8f\xe3\x49\xbf\x3c\x4a\x8b\x57\xfa\xf3\x27\xe0\xb0\xf0\x57\xf6\xa3\xf9\xfb\x8b\xb1\x5e\x78\x44\xd3\x85\xa7\xef\xf7\xed\xfb\xd4\xfe\xce\xe8\x93\x53\xf6\x77\x7e\x9a\xbe\x38\xf9\x7b\xe6\xaf\x34\x7f\x19\x98\xc5\x75\x7d\xde\xe7\x2b\x01\x16\x65\x1e\xad\x72\x95\x9f\x68\x01\xc4\xae\x2f\x7f\x67\xd1\xc9\x93\x38\xea\x3b\xf9\xf7\x07\x14\xb0\xd9\x06\xe6\x7a\x5a\x9c\x83\x43\x9d\x1c\x23\xf8\x57\x72\x07\x3b\x22\x1c\x5f\xf3\xb2\x11\x11\x6e\xb6\x24\xd2\x4b\x3a\x62\x38\x01\x52\x95\xe0\x9c\x4f\xc5\x34\x8a\x16\x53\x91\xfc\xe2\xac\x3d\xfe\x72\xf1\xe6\x7b\x34\x48\x80\x39\x43\xf7\x44\xda\xa3\x63\x41\x1f\xf7\x3f\x7a\xc3\x17\x5d\x9a\x2c\xa4\x7c\x67\x33\x76\xe9\xdf\x70\x0f\x3a\xd1\xb9\x5f\x9b\x97\x44\xd0\xb6\x7d\xe2\x3d\xed\xd9\x2a\xfc\x26\x98\x7f\x3f\xce\x70\x7e\xda\x32\x98\x29\xf3\x65\xff\x13\xfa\xf8\xa3\x91\xa4\x0c\xd0\xe2\xe5\xc7\x52\x7d\xd2\x4f\xf5\xf2\x60\xb2\x4f\x82\x64\x41\x38\xf1\xee\xf4\x07\x99\xf4\xa0\xee\xf1\x8a\x97\xe5\xfa\xf0\x5c\x7b\xb6\xa8\xc1\x18\x42\xd3\x16\xef\x2a\x07\xf6\xed\x1f\x61\x21\xa9\xd1\x90\xab\xf6\xee\xc0\x27\x4f\xf0\x0d\x8b\x4c\x23\xea\xb1\xd2\x44\xd4\x70\x3f\x49\xe7\x1b\x88\xf3\x38\x87\xc3\x81\xce\x87\x54\x5c\x3f\xa0\x24\xdd\x01\x90\xe1\x50\xc5\xbb\xa7\x5f\x49\x65\xd4\xa8\xff\x49\x29\xfb\x0b\xba\x41\x02\x17\xf2\xd1\x13\x18\x0a\xfd\x5c\x7d\xf4\xcc\xc2\xfc\x18\xea\x56\x70\x61\x84\x23\xae\x27\x52\xe3\xe0\xb2\x7c\xf7\x34\xf9\xa9\x4f\x63\x6f\x71\x2f\x8a\x35\xa9\xbd\x75\xd6\xe1\x10\xba\x35\x80\x48\xdb\x5c\x4c\x50\xba\x90\x89\xff\xe6\x2f\xbd\xd0\xa3\xdf\x2d\x0c\x30\xe5\xef\x0d\x2a\x2a\x1b\x9e\xf3\xf0\x8d\xae\xf9\xf8\x70\xec\xd1\xdd\x0f\x72\x32\x23\xca\xd5\xdc\xdc\x95\x9b\x31\xf5\xdb\x4e\xec\xc4\xf8\xee\xaa\x5b\xa2\xb3\x98\xe2\xe0\xb1\xb9\xbe\x8f\xe8\x34\x82\x8f\x22\x56\xf1\x27\x6e\xff\x61\x32\x8e\x01\x55\x79\xc0\xa9\xae\x63\x79\x13\xc0\xb7\xae\x91\x94\x26\x55\x77\x19\x03\xac\x74\x7b\xb6\x12\xc3\x42\xd1\x47\xe0\x92\xd3\xf9\x23\x12\x2f\xbf\x9c\x41\x2c\xcc\xbc\x72\x5c\x50\x40\x0b\xe5\xbc\x9b\xf8\xe5\xec\x12\xa2\xe9\x93\x60\x83\xc0\xae\x51\x51\x39\x45\x38\x37\x3c\x2d\xde\x37\xd5\xc9\x09\x78\xcc\x12\x9d\x17\x37\xa6\xab\x16\x34\xd7\xff\x96\x32\xb3\xc1\xd4\x70\x8f\xc5\xdc\x55\xa1\xd7\xfa\x97\x33\x53\x19\xb3\x4e\xd4\x94\xb2\x49\x15\xc7\x30\x41\xe1\xfa\x04\x94\x11\x44\x2f\x0a\x5d\x39\xc7\x79\xbb\x4d\xb3\x43\x8c\xe8\xc8\xad\x2d\xd8\x01\x12\xd6\x39\xd7\xcc\x92\x3d\xe2\xe5\xcc\x61\xbd\x79\x5f\x93\xe3\x2d\x3d\xa9\x72\x5d\x2c\x33\xe4\x13\xea\x2f\x45\x63\x3d\x84\xe5\x7c\x66\xaf\x9c\x47\x2c\x79\x88\xe2\x82\x09\xae\x5b\x96\x49\xdd\xce\xfd\xd1\xfe\x5c\x2e\x6c\xbf\xda\xd5\xcc\xf1\x4e\x38\xa9\x2b\x19\x1d\xe8\xe1\xa8\x70\x53\xeb\x28\x1c\x01\x66\x16\x30\xd3\xb9\x02\xcd\xe0\x6d\x97\x6a\x61\x09\xac\x65\xba\x7e\xeb\xa6\xcd\xc8\xb8\xfc\xf8\xd4\x1b\x4d\x64\x59\x8a\x5c\xfe\xf8\xd1\x74\xcc\x80\xc1\xd1\xce\xd2\x6c\x54\xe5\xe7\xcb\x6e\x67\xac\x08\x95\x4b\xb8\x17\xb0\x3c\xb0\xb0\x6a\x7c\x7d\xda\xc9\x49\xd5\xb6\x45\x70\x24\xae\x59\xaa\xa5\x23\x10\xca\x3e\xd2\x79\xd8\x19\xe0\xb2\x83\x25\x44\x0c\x2a\x22\xcd\x62\x50\xa7\x79\xc6\x44\x30\x58\x91\xea\x04\x06\xa4\x5e\xf7\xa7\x53\x66\x9e\x60\x0c\x36\xdd\x21\xad\x21\xbe\x46\x4e\x39\xb5\x10\x92\xb9\x9e\x64\x0b\x2d\x4d\xad\x9e\xbe\x9f\xb5\xf4\xfd\x6a\x4a\x16\x49\x2a\x5e\x65\xf0\xe2\xfd\x6a\xda\xd2\x53\xc3\xce\xd6\xa7\x7c\xfd\x87\x65\xd6\xa5\xbc\xa5\x24\x9a\x0a\x31\x8d\x28\x9c\xf1\xfe\x94\x3d\x75\x84\xb9\x52\xf0\x34\x7a\x57\x6f\x23\x16\xbd\x2d\xae\x6f\x54\xc4\xa2\x2f\x6a\xa5\xea\x4d\xc4\xa2\x6f\xc5\x5a\x45\x19\xab\x04\x1f\x9c\xf1\x43\x96\x55\xef\xd2\xd6\xd9\xc7\xf5\xe0\x96\xe1\x46\xa8\xd6\xe7\xae\x7a\xb3\xad\x1b\xb1\x02\xab\xbf\x0a\x04\xb1\xb7\x75\x6d\xc0\x73\xc8\x1f\x48\xb6\x6d\x83\x44\x48\x0d\x38\xea\xbd\x78\xa6\x49\xf3\x71\x6e\xd8\xa8\xaa\x2b\x10\xf1\x88\xe0\xc8\xd8\xd5\xa8\x87\x12\x88\xd5\x80\xf2\xbb\x35\x2e\x28\x41\x68\x1c\x17\x02\xce\x82\xee\xeb\xcb\xd9\x12\xd6\xa1\xc8\xc4\x88\x00\x06\x79\xa0\xa1\x70\xd6\xb9\x2c\xe7\x8f\x38\xf2\x6a\x3c\x98\xe5\x69\x9d\xd9\x6c\xd2\x3a\x63\xdd\x4f\xae\x2c\x0b\x4f\x8d\x3a\x0a\xe9\x78\x57\x61\xff\xa0\x4c\x51\x2f\xb6\x4e\xa8\x3b\xd9\x75\x52\xf6\x4e\x8c\x15\xe2\xd9\x9c\x35\xbc\x1a\xe2\x90\x1e\x57\xb3\xe5\x4e\x12\x1f\x2b\xde\xef\x12\xb3\xb5\x81\x39\xc2\x8e\xeb\x51\x5c\x6a\x59\x5d\x02\x86\x2c\x81\x08\xc8\x85\x9f\xaa\x6c\x11\x45\x49\xb4\xbd\x8f\x28\x5b\x06\x6e\x12\xbd\x68\x6d\xab\x23\x4d\x38\x2f\xe3\x78\xba\xa3\x71\xac\x04\x9a\x13\xbb\xec\xd0\x0b\x77\x19\xc7\xcb\xf4\xb3\x0c\x9c\xdd\x41\x22\xdb\x9d\xf2\x67\xac\xe4\x65\xdb\xea\x70\xb6\xe4\xd3\x5d\xdb\x9e\xe1\x24\xbd\xc4\x76\x81\xc2\x2e\xa7\x25\x65\xe4\xec\xa4\xa6\x4f\xc9\xd9\x09\xa9\x75\xb1\x4f\x77\x6d\x3b\xfb\x4f\x4a\x9f\xf3\x79\x1c\x93\x9c\xcf\x29\x5b\x9e\xf2\xfa\x68\xf9\x94\x3f\x63\x83\x8f\xcd\x95\xf8\xde\xf3\x0b\x58\xf2\xe9\xb2\x6d\x75\x8e\x73\xbd\x11\xa7\x67\xd9\x62\x39\x25\xfa\xef\xf4\x8c\x3e\x95\xe9\xb3\x2c\x99\xea\x7f\x59\xa5\x17\x82\xd9\xae\x2a\x14\x2f\x59\x35\x6b\x54\x2e\x15\x5f\xb2\x6a\x26\xaa\x15\x07\x97\x72\x50\x8f\x94\x02\xc6\x85\xed\x34\x8f\xa0\x12\xb0\x61\xc2\x09\x50\x79\x8e\x4c\xac\xe0\xa5\xf0\x0f\xf5\xa0\xb4\x90\xb3\xab\x7a\xf5\x10\xb0\x88\xc8\x9e\x73\x1a\xe0\x65\x98\xf1\xab\xbc\xf1\xcb\x3e\x46\x5d\xe9\xc6\x3d\x0a\x13\xd1\x55\x59\x2f\x3f\x44\x94\x41\x11\x78\x11\xd0\x7e\x0e\x58\x2d\xb5\xd0\x8b\x46\x10\x73\x96\x77\xc0\x24\xf5\xf3\xfc\xbc\x9e\x4e\x29\xa9\x00\xbe\xdb\x4c\x44\xf0\x1d\xaf\xc2\xe9\xc7\xd4\x82\xb8\x12\xe8\x5e\x28\xf4\xc0\xc7\xd5\xb8\xf2\xaa\xd0\xb6\x88\x6f\x90\xd6\x7a\x54\xf6\x12\xe1\xc0\xd5\x16\xa1\xbe\xb3\x37\xbb\x73\x01\x56\x2c\x98\x2e\x5a\x3b\xd1\x04\x73\x9c\x78\x39\x62\x08\x43\xd1\xdd\xcb\x18\xf5\x70\xe8\xc0\x39\x77\xf5\xc2\xab\xaa\x02\x91\xc9\x75\x0d\x7b\xe5\xd1\x6f\x3c\x24\xa3\x40\xfa\x68\x6e\xea\xbb\x91\x99\xb8\x36\x3b\x2d\xc8\xca\x37\xc5\x6a\xec\xde\xdf\xc4\xa1\x7b\xa6\xea\xeb\xeb\x72\x6c\x17\x8e\xae\xea\xba\x14\xb9\x7f\x31\xbb\x30\x87\x0a\x9d\x31\x31\x76\xed\x3a\x03\xfb\xbb\xbf\xf5\xe7\x26\x97\xc5\x25\xfe\xb5\x1f\xda\x47\xfc\x76\xef\x36\xb8\x1b\x81\xaa\x02\x8b\xc3\xd4\x02\x32\x13\x70\xa2\xaf\x04\x3f\x0d\xbd\x96\x7a\x4e\x4b\xa7\x05\xdb\xea\xcf\x9f\xb4\xff\xd8\xd4\xab\x5d\x29\x9e\xb4\xef\x4f\xc9\x22\xf9\x67\x7e\x9b\xb7\x62\xb9\xc9\x69\xb3\x94\xc5\x56\x9d\x16\x6c\x23\xf8\x23\x42\xbb\x25\xe9\x19\x8b\x2c\xf1\xd0\x66\x57\xaa\x62\x5b\x0a\xfe\x1f\xf6\xd7\x7f\x7c\x1e\xb1\xa8\xa3\x1c\xca\x98\xba\x11\xf9\x0a\x3f\x02\x8f\x52\x7c\x6f\x7e\x66\x6c\x59\x97\x49\xfa\xcc\xbd\x7c\xbe\xac\xcb\x6b\x59\xef\xb6\x18\xcd\x3d\x79\x5f\x28\x19\x7c\xa0\xf4\xc4\x34\x89\xc2\x4f\x3f\xea\x2a\x49\x3f\xeb\x47\x7d\xae\xa4\x89\x2e\x3f\x1f\xf9\xe6\xd2\x78\x2c\x26\xe9\x9c\x45\x11\x8b\xa2\xcc\x5b\x46\x6e\x7d\x2e\x58\xa7\x5a\xe0\xbf\x43\x8d\xb9\x38\xc0\x63\x88\x40\x36\x34\xf1\x3e\xef\xd3\x07\x2d\x46\x18\x85\xec\x67\x69\xc6\x7a\x6a\x3f\x74\x78\x5b\x38\x7b\x50\x01\x4a\x6a\x19\x72\x7a\xf6\x70\xcd\x60\xf1\xb3\x07\xf1\xe7\xd5\xb9\x9c\x4e\x29\x4e\x44\x91\xca\x8c\x45\xd7\x65\x7d\x95\x97\xaf\x6e\xf3\x32\x02\x0f\x62\x5c\x1d\x54\xff\x1d\xa5\xfb\x8d\x98\xd5\x5b\x05\xfd\xc5\xf1\x77\x51\x57\x6c\x23\x66\xd0\xc6\x3a\x48\xad\xeb\x5a\xe9\x1f\xb6\x5f\xe1\x77\x8e\xb7\x5b\x1b\x30\x60\xc8\x57\xf0\xc5\x0d\x3c\xae\x60\x88\x5f\x0b\x76\x25\xd8\xa5\x1e\xcd\x6d\xfc\x7f\x16\xef\xef\xa6\xe7\xa7\x5d\x97\xdc\x1d\x02\x54\xb2\xa0\x1e\x6c\xcd\x95\x59\xaa\xed\x82\xff\x5a\xe6\xd7\xb0\x66\x53\x0b\x56\x34\x67\xdb\xae\x19\x56\xcf\xb7\xe7\x2b\x74\x56\x00\xc0\xa5\x55\x46\x11\x71\xb2\xa6\xfd\x4b\x8f\x9a\x52\xdb\xda\x37\xac\xf6\x10\x89\xea\x2c\xa9\xbb\xbb\x8e\x4b\xe3\x76\x5d\x1b\xe5\x47\xce\x01\x51\x21\xa0\xd3\xea\xfb\x3a\xaf\x8a\x5b\xbd\xb0\x36\x9c\xac\xcc\x06\x5e\xd3\xb6\x4d\x71\x4c\xd2\x21\x98\xfd\x8e\x6f\x44\xda\x64\x6d\xbb\x11\x33\x3b\x88\x59\xee\x39\x0d\xef\xf4\x66\x7a\x39\xbb\x51\x9b\xf2\x07\x29\x8c\x7d\x6e\x4d\xa7\x3b\xbd\xad\x2e\xc1\xad\x1f\x51\x84\x72\x9e\x77\x90\xc9\x47\x5d\xfd\xf2\x80\xff\x9e\xe4\x7c\xed\xdb\x3c\xfb\xc0\xa4\x3c\x8a\x50\x0d\x67\x30\x5d\x6c\xe5\xde\x89\x7b\x23\x60\x9a\x75\x7d\xdd\xfb\x4a\x77\xc5\x79\xcd\x6f\xd2\x95\x45\x92\xa8\xc0\x87\xc8\xd8\x12\xd6\xac\xa2\x9f\x9f\x9c\x51\x30\x47\x32\x80\x57\xae\x91\x4b\x5e\xc0\x65\x7c\xce\x6f\x05\x09\x1b\xb7\xa6\x2c\xc2\xb5\x2c\x82\x9b\xa5\x07\x41\x72\xca\x90\x74\x79\x09\x39\xe6\xe9\x12\x72\xdc\xda\x9e\xb2\x18\x89\x11\x75\x1e\xa8\x75\x47\x60\xb9\xbf\xd6\x02\xfd\xa1\x51\x15\xe4\x5d\x1d\xe8\x58\x72\xd5\x25\xd1\xa7\x62\xeb\x53\xab\x19\x26\x36\x58\xdb\x23\xca\xae\x44\xef\xbd\xa5\xa3\x63\x51\x47\x4c\x37\x88\x64\xf8\xd9\x74\x13\x5c\x87\x54\x6e\x57\x82\xb2\x2d\x82\x78\xbe\x2c\xeb\x4a\xf0\x6b\x31\x5b\xea\x1f\xd0\x57\x93\x39\xed\x3d\xb9\xc1\x61\x81\x3f\x75\x82\xbe\x77\xba\xee\xd4\x5c\x8a\xfc\xf3\xfb\xe7\xa7\xee\x77\xc4\xb6\xb3\xaa\x86\x0c\x5e\xe2\x67\x7c\x32\x19\xe4\xd4\xa5\xed\xbb\x8e\xc3\x42\xf0\x4a\x6f\x56\x1f\xc4\xc3\x29\xbb\x37\xbb\xde\xa6\xde\x35\xa2\xdd\xd6\x45\xa5\x84\x6c\x97\xe8\x00\xbc\x11\xd5\xae\x5d\xc9\xfc\xba\x5d\xc9\x7a\x4b\xdb\x65\x59\x2c\x3f\x9c\xb2\x0b\xf8\x26\xfd\xc7\x2c\x7b\x4a\xf5\x69\x70\x46\x66\x53\xda\x52\x6f\x29\x79\x23\x7c\xfa\x00\x17\xfc\xc1\x0b\xf6\x18\xb7\x5f\x88\xd0\xbd\x98\x73\xde\x33\x6f\x72\x27\x80\x00\xd4\xb5\xb3\x78\xda\xef\x09\xe5\x9c\x44\x00\x09\x0b\x1a\x23\x4f\xda\x7b\xd7\x43\x69\x83\xa3\x17\x6b\xc2\x6b\x57\x77\x51\xf5\x68\xaf\x5e\x07\xe7\x6f\x09\x0a\xd3\xaa\x6d\x25\x93\xee\x08\xae\x28\x24\xdf\x40\xf2\x2a\x6d\x32\x56\x7b\x12\x93\x9e\x75\x70\xc9\x5b\x21\x3c\x0c\xe7\xc5\x82\x14\x5c\xb2\x8a\xbb\x24\x12\xf3\x22\x8e\x87\xf7\x66\x52\xc7\xae\x58\xe5\xe2\x9a\x47\xaf\x04\x06\x4f\xbc\xa0\x05\xff\x20\xdc\x0c\x9e\x14\x0e\x38\xc0\x47\xc3\xaf\xe1\x48\x51\x30\x52\x8c\x1e\x6c\x09\x9d\xd5\xeb\x35\x11\x60\x0f\x34\x66\xa2\xb8\xa7\xb3\xeb\x5d\xb1\xe2\x39\xfc\x01\xb0\x3c\x78\xbe\x84\x3f\xd3\x29\x98\x6e\x0d\x75\x30\xe2\x56\x54\x0a\x2d\x8c\xd0\x29\xa2\x60\x15\xdc\x28\x77\x9d\xf4\xd2\xc1\x45\xca\x05\x79\xe2\x2e\x21\x26\x67\xa0\x28\x75\xdf\xeb\xb0\x47\x47\x72\x9d\x4c\xce\xd8\x0d\xb0\xba\xc8\xc1\x3d\x52\x05\x5c\xd4\x66\x8f\x85\x5c\xe1\xac\x76\x16\x8b\x59\xd1\xbc\x93\xc5\xf5\xb5\x90\xc6\x25\x4b\xa1\x33\xa7\xd5\xa2\x53\x62\x73\x04\x2c\x83\xbc\x84\xa3\xe0\xe3\x9e\xce\x56\xa2\x14\xd7\x7a\xf1\xb5\xb4\xf4\xaa\xde\xfe\x20\xeb\x6d\x7e\x9d\x63\x5d\x5d\xfb\xe7\x23\xd6\x47\x4f\x3a\x85\xb3\x62\x39\x28\x4c\x6d\xc9\x98\x29\x07\xa1\x2c\x9f\x70\x4e\x8a\xb0\xe0\xfa\xd8\xb0\x08\x3e\x07\x8e\x6a\xfe\xb8\x87\xe8\x5d\x5f\x43\x89\xbe\xd9\x6c\xc4\xaa\xc8\x95\x08\x8a\xc6\x04\xb8\x6d\x89\x4a\x7d\x89\xab\x01\xe8\x79\x6e\x3b\xee\x9d\xbc\xbb\x8b\x08\xb2\x32\x37\xc3\xb6\x4d\x14\x36\x1d\x71\xea\xeb\x3c\x9d\x67\xec\x72\x06\x86\x11\xdd\x95\xb6\x1e\x42\x16\xd0\xd9\xfa\x6f\xb2\x8f\x95\x4f\xcb\xe1\x9e\x9a\xb1\xd3\x6a\xeb\x5d\x2b\x1c\x00\x6f\x04\xdd\x9b\x30\xfe\x88\x92\x53\xf2\x38\xf4\x94\x0b\xf8\x24\x7c\x29\xc6\xf2\x39\xb0\x5b\x9b\x0d\x45\xe6\x05\xb8\x4d\x99\x99\x11\x05\xc7\x3c\x52\x73\x49\x6d\x08\xd8\x94\x59\xb4\x0a\x50\x50\x1f\xf2\xaa\x17\x80\x24\x63\x27\x89\xec\x4d\x12\x46\x76\xfc\x16\xcb\xdf\xd0\xb6\xf5\x9e\x00\xdd\x93\xe4\xfc\xd6\x64\x89\x46\x1c\xf6\x29\x30\x5b\xea\xdf\x88\x5c\x76\xed\x64\xba\x08\x08\xf5\x15\xa2\xcc\xd9\x57\xfa\x64\x07\x38\x0f\x56\x5f\xe3\x59\xae\x19\x6a\x61\xca\x4a\x4e\xcc\x55\x43\x44\xfd\x4b\x63\x2d\x2d\x59\xc9\xae\x84\x1b\x63\xbe\xe1\x80\xf5\x85\x52\x95\x4a\xcb\xcc\xa0\x0d\x9d\x65\x6c\xcb\x49\x93\x3e\x33\x74\x44\x06\xfa\x66\x66\xb1\x6f\x28\x5b\xc5\x31\x59\xf3\xfe\x4c\x5b\xc1\x4c\x63\x2b\x4e\x8a\xc5\x3a\x98\x6f\xc9\x7a\x76\x55\x54\x2b\xc3\x70\xb0\x62\x07\xbf\x5d\xf2\xee\x66\x05\xa0\xd4\x56\xac\x96\xc5\x35\xa4\xb1\xc1\xab\xc7\xca\xad\x1a\x92\xe9\x3e\x49\xb0\x87\x98\xed\xdb\xa4\x60\x3e\x0e\x46\x02\x3d\x7d\x00\x24\xc3\xf8\x68\x53\xd6\xad\x4a\x5b\x83\xeb\x33\x8b\xe0\xba\x81\x91\x1b\xbe\x43\xd1\x97\x98\x9f\x3c\xcd\xba\xd5\xe4\x65\xbd\xab\x14\x9f\xb3\xb5\x9e\x75\xbb\x6d\x1c\x4f\xce\x26\x9c\x9b\xa7\x0e\xae\x62\xcb\x72\xd0\x2e\xf6\x8d\x90\xf4\x42\x34\x30\x4c\x5a\xb1\x9c\x52\xb6\xd6\x2f\x74\x3b\xeb\xbf\x36\xa5\x25\x65\x4b\x3b\xa2\xed\x08\x0d\x03\x38\xfe\xa1\x94\x15\x8b\x1b\xeb\xb6\x72\x13\x96\x77\x3a\x65\x73\xb6\xa4\x89\x11\x4b\x97\xdd\x32\x8d\x13\x52\x57\xd2\xbb\x2f\xfb\x03\x13\xb3\xbb\x30\x8e\xe3\x60\x9a\xc6\xb1\x3f\x7f\x2c\x02\xe8\x27\x0e\xd9\x62\x4d\xfe\x57\xa3\x16\xb3\x3b\x38\xf8\xa0\x7b\x39\xa9\x3e\x3e\x78\x81\x16\x84\x35\xbc\x01\x3a\xae\x1e\xe1\xd1\xfb\xf7\x33\x1a\x4d\xed\x18\x7a\xff\x7e\x46\x16\xc9\xec\xe9\xfb\xf7\xb3\x96\x46\x74\x1a\x11\xfd\xeb\x09\x8d\x80\x82\x82\xdf\x78\x98\x5b\xe7\x74\xc9\x6f\x00\x72\xab\x88\xe3\xcd\x84\xf3\xe5\xcc\x0e\xfc\xb6\x05\x84\x7d\xdd\xab\x10\x8e\xdd\xde\xc4\xf1\xa4\xc1\xf1\xbb\x9c\xb9\xe1\xab\x37\x9b\x38\xae\x20\x5e\xe3\x18\x1d\x49\xf4\xf4\x29\x98\xdb\xb5\xed\xa4\x0b\xd7\x43\xfa\x26\xc0\xd9\xf2\xbf\xe9\x0d\x99\x93\x13\xb6\x36\x5a\xbb\x38\xb6\xbf\xba\x51\x49\x8f\xf2\x38\x9e\xdc\x74\xbb\x90\x3e\xd1\xe4\x72\x55\xdf\x55\x6e\x4a\xd8\x00\xfb\xd5\x96\x79\x2b\xe5\xa5\x6f\x59\x49\x04\x5b\x75\x2f\xed\x35\x21\x4c\xc3\x0e\x9e\x79\x75\x5c\x54\xc7\x3b\x6a\xfb\xd2\x5d\xbe\xad\xa6\x7a\x50\xc0\x30\x9d\xcc\xe9\x51\xdf\xd8\x64\x07\x23\xd2\xc5\x8e\x30\x93\x63\x1c\x90\x11\xdd\x83\xff\xd4\x76\xe0\x98\x12\xb8\xfc\xe9\x61\xef\x06\xd1\xba\xb8\xd7\x42\xd7\x0e\x6e\x4c\xf0\x7c\xd6\xbf\x95\x83\x55\xd9\x13\x0a\x22\x9b\x1b\x48\x26\x69\x83\xb8\x6a\x30\xae\x96\x83\xc1\xe9\xde\x1a\x05\xbf\x3e\xa0\xf2\x86\x29\x7e\x76\xae\x9e\xf7\x73\x02\xcc\x93\x5d\xaa\x3c\x7b\x67\xc3\xa3\xda\x74\x63\x1a\xb8\x1e\xf0\x86\x6b\xb2\xd4\x82\xc5\x97\xa6\xc6\x6d\x0b\x5d\x15\x84\x79\xce\xf1\x8d\x3b\xb6\xdb\x32\x9a\x85\xa7\xf1\x23\xb1\x12\x11\x58\x48\xc1\xf3\x54\x4d\xa7\x19\x85\x91\x5a\x34\x9e\xc4\x70\xa1\xea\xed\x56\xac\x08\x3d\x47\x63\xc9\xd9\x72\x27\xa5\xa8\x94\x29\x5a\x31\x13\xa5\xd8\x30\xa9\x53\xa9\x79\xe1\xb2\x49\xa5\x97\xdc\x98\x24\xe2\xa5\xdb\xcc\xa4\x9b\x15\x66\x08\xd6\x33\x3f\xc4\x8f\x60\x0f\xbb\xfe\x3c\x22\x8d\xc9\xf7\xcd\xd5\x3f\x79\xcd\x9a\x99\xde\x7d\x78\x0d\x7f\x3a\xdb\x30\x52\x71\x32\x10\x39\x6b\x37\x77\x8d\xec\x89\x09\xb5\x6d\x6d\xab\x42\xcd\x1e\x6e\x6a\xba\x03\x1e\x0b\x2d\xe4\x93\x66\x26\x45\xb3\x2b\x15\x07\x8d\x71\x33\x94\xfb\x9a\xa1\xe4\xda\x5d\x00\x2e\x67\xdb\xba\x51\xb6\xef\xe2\x38\x7c\x0e\xfa\x92\xd9\x9c\xc0\x9e\x0b\x1b\xf8\xb0\x71\x0c\x0c\xf9\x34\x63\x3b\xae\xc2\x85\x81\x95\x5c\xcc\x90\x3e\x04\x70\xd7\xe3\xb8\xf4\xad\x5f\x48\x04\xe7\x4e\x9f\x0f\x41\xcc\x90\x70\xe1\x73\x7e\x66\x2c\x52\x4b\x2d\xeb\xdc\x14\xcd\x79\xc9\xcb\xc0\xfd\x1c\x64\x4f\x03\xbe\xe5\x27\x6b\x53\x9d\x74\x2c\x0e\x60\xb7\x5c\x3a\x46\x73\x33\x54\x8d\x77\xee\xe3\x9e\x21\x77\xc1\x0e\x14\x7b\x4e\x50\xcd\xd3\x42\xf7\x20\x80\x9d\xba\xb5\xcf\x12\xdf\xe6\x69\x91\xf1\x2a\x90\x17\x16\x97\xa4\x40\x81\xd8\xe0\x5e\x94\xe0\xd3\x69\x40\x86\xf0\x95\xe1\xa3\x2d\xdd\xde\x45\x99\x4e\x29\x8e\x9d\xb3\xeb\x51\xed\xd6\xc9\xc6\xc0\xc7\xea\x51\x90\x94\x5d\x3f\xd4\x7b\x67\xa7\x53\x1a\x37\xac\xe7\xea\x77\xbf\x52\x16\x03\x12\xb0\x6e\x41\xa8\xd6\xe3\xa4\xd7\xab\xe3\x26\xa5\x83\x43\x00\x13\xec\x51\x54\xbb\x8d\xb0\xd6\xa4\x7d\xeb\x52\xb0\xf2\x04\x07\x1c\xef\xbc\x68\x4d\xa3\xf4\x04\x28\xaa\xbc\x84\x44\x9d\x0d\xcc\xd8\xbb\xe0\x4a\xf0\xe3\x9f\x0f\xde\xa4\x22\xeb\x59\xb7\x1e\xac\x9f\x31\x68\xf8\x9d\x2a\xdd\xc9\x42\xd9\xdf\xc6\xa8\x16\x2e\x19\xf6\x6c\x5d\x8c\xc3\x8c\xa4\xce\x48\x38\x5b\x88\x44\xef\x01\xa6\x25\xc1\x58\xce\xac\x08\xc9\x63\x59\xe7\xab\xe4\xb1\xaa\xbf\xd8\x5d\x19\xdb\x5c\x06\x43\x38\x79\x04\x49\x71\xc4\x92\x52\x17\xb8\x6d\x9d\x06\xe0\x46\x58\xd7\x0a\x03\x9e\xa9\x66\x90\x40\x1c\xbf\x20\x8a\x59\x8d\x59\x1c\xbf\x04\xa0\x45\x9c\x1e\xfa\xb0\xc5\x26\x67\x7b\x66\x0e\x15\xff\x6f\x72\xa1\x4c\xd7\xc6\x5d\x18\x8c\xd8\x84\xda\xf5\xe1\xdf\xcc\xc4\xec\x98\x2e\x9f\xb6\x85\xf7\x39\xec\xd2\x57\x62\x5d\x4b\xb1\xab\xb0\x61\xfd\x55\x2e\x2c\x41\x77\xa9\x80\xab\x9d\x5e\x7f\x82\x31\x04\xa6\xb0\x41\xc8\x0c\xcb\x09\x1a\x37\xf7\x1d\xdd\xef\xf7\xe8\x8c\xe2\xc4\x94\x81\xe9\xfd\xa8\x7b\x88\xce\x70\xcc\x6b\xc4\x98\x32\xce\x86\x49\x59\x94\xd8\x9b\xa2\x09\x00\xaa\x30\xaa\x73\x17\x0a\xc6\x1a\x53\xe0\x82\x8a\xab\xe1\x62\x64\x12\x59\x44\x27\x30\x59\xc7\x68\x18\x50\x34\x66\x6f\xf9\x01\x77\x1a\xb1\xe2\x0e\xaf\xd2\x05\x59\xa2\x4d\x58\xc6\xfb\x2f\xcd\xd6\x25\xfc\x76\x5b\xbc\x11\xc9\x07\x9b\x25\xee\xea\x76\x18\xc4\xf1\x67\xb8\x1b\xc0\x93\x67\x85\x6c\x43\xba\x1d\x20\xb1\x61\x98\x50\x28\x25\x88\xf0\x19\xa3\x00\x5c\xad\x58\xb9\x28\xc1\xb3\xb9\x6c\xc4\x26\x60\x0a\x0f\x86\x70\xd8\xf4\x55\x39\x33\x55\x6c\xc4\x85\xca\x37\x5b\x8e\x2d\x6a\x1f\xdb\xf6\xcb\x5c\x89\x59\x55\xdf\x11\xa3\xf4\xe9\xe6\x3e\x87\x39\xd0\x5f\x43\xf9\xa3\x87\x43\x96\x98\xd7\x6c\xd8\xe2\xba\xa9\xc6\x04\x24\x0c\xff\x88\xa4\x83\x11\x2e\x8a\xcd\x0e\xaa\x99\x4c\xce\x58\x28\x30\x0c\xbd\xa6\x87\x43\xe3\xe8\xd0\x38\x78\x23\x98\xde\xc3\xcd\x6b\x97\x0b\x30\x53\xf5\xc4\x92\x3d\xeb\x49\x25\xff\x4e\xc6\xc3\x7a\x7d\x2c\xeb\x81\xf8\x83\x79\x8f\xb5\xd2\xbf\x53\x88\x8f\xb4\xf2\xef\x95\xe6\x80\xd2\x0e\x6f\xbc\x07\xa5\xdd\x3b\xa4\xa5\xbc\x54\x7f\x15\x0f\x7a\xaf\xb9\x82\x6d\x01\xf0\xcc\x96\x7a\xba\x97\x6e\x83\xba\xc9\xab\x6b\xb1\x7a\x57\xef\x00\x4f\x5e\x87\x28\x59\x9a\xaf\x56\x42\xe5\x45\xa9\x7f\x41\x67\xfc\x70\x93\x37\xf0\xd1\x46\xa8\xdc\x44\xd9\xe6\xd7\xe2\x17\xfb\xe3\x57\xfd\x03\x0c\x31\xcd\xdb\xdb\x42\xdc\x99\x5c\x24\x6e\x87\x2b\x9b\xab\x7c\x69\x7e\x7f\xc0\xa8\x1f\xc4\x83\x0d\x31\x44\x5c\xee\x17\x16\xab\x2c\x44\xa5\x7e\xe9\x7e\x42\x66\xf5\x7a\xdd\x08\x0c\xc5\x9f\x10\x6a\x6e\x2a\xbe\x59\x79\x0f\x70\xd2\xd6\xc5\x5b\x4a\x21\xaa\x5f\xba\x9f\xf0\x05\xae\x02\x5e\x2b\xa8\xda\xdc\x23\xe0\x83\x0b\xbf\xbb\x29\xc6\x4e\x6e\xdc\x0a\x9d\x21\x79\xaf\x98\x41\xfc\x38\x7e\x65\x01\xa1\x71\x4b\x5a\x18\x3f\xe0\x99\x6d\x88\x45\xf7\x33\x11\x33\xd7\x16\xee\x7b\xdf\xbf\xe1\xbe\x97\xd6\x59\xac\x16\x67\xc9\xb3\x58\x2d\x3e\x4b\xfe\x1c\xab\xc5\xb3\x64\x9e\x98\x0f\x71\x2c\x58\xfd\xa8\x1e\x26\x1d\x0c\x17\x32\xe4\xe1\xad\x48\x51\x45\xec\xaa\xdc\x49\xf3\x58\xef\x54\x34\xc4\x34\x0a\xcf\x20\x22\xe3\x7d\xd1\xc2\x09\x2d\x2f\x9d\x7d\xe7\x8b\x43\x02\xc2\x30\x2e\x6e\xf3\x81\x62\x44\xf9\xb0\x61\x70\x09\xa5\xd7\x0d\x99\x44\xf0\xbb\xbe\x15\x32\x62\xf0\xb3\x14\xf9\xad\xb0\xc1\x3b\x15\xd9\x4e\x37\xd1\xcd\x13\x7e\x60\x1e\xcc\x27\xf6\xd5\x27\xd6\x38\x2c\x1e\xb3\x7a\x9b\x44\x19\x21\x79\x30\x32\xc0\x75\x27\xdc\x25\x80\xb7\xc0\x1d\xfd\xdc\x80\x81\x0b\x24\x6e\x04\xa6\x3e\x7a\x5f\x05\xc4\x10\xd8\xe3\xbc\x70\xc7\x3f\x26\xbb\xd3\xeb\xf8\xa5\x0c\x33\xdf\x00\xe6\xf8\xc0\x4a\x38\xa0\xbb\xb3\xd6\x76\xa6\x40\xef\x3a\x23\x5d\x08\xdf\xb3\xba\x1a\xaa\xea\x0e\x45\x67\x67\xfa\x83\xf5\xfa\x90\x5f\x18\xd8\xae\x0f\x17\x7a\x1d\xe2\x9a\xc6\x09\x22\x7e\x7b\xb1\x4b\x22\x7a\xaa\x06\xbc\x98\xaa\xba\xd3\xf5\xa2\x72\x2d\x34\x8d\x66\xd1\xd4\x7b\x95\x74\xaf\x80\xca\x04\x8f\x64\xac\x72\x07\x67\x58\x55\x47\xaf\xff\x0c\xe1\x0e\x60\x6a\x0a\x8a\x0b\xfd\x7a\x0d\xc0\xef\xe2\x00\x76\x26\xa8\x05\x54\x1c\x77\x58\x12\x1d\x26\x30\x20\xd7\x28\xa6\xdc\x6d\x21\x08\x39\x78\xb3\xf0\xc1\xe0\x07\x1e\xbc\x2e\x0b\x7c\x06\x98\x44\x17\x05\x8b\xca\x0a\x06\x49\x8b\x49\x2e\x45\xde\x5e\xc9\x76\x59\x97\xad\xd8\x5c\x89\x55\x7b\x23\xdb\x62\x73\xdd\x82\x00\xdc\x96\x45\xf5\xa1\xd5\x2b\x79\xbb\xcd\x65\xbe\xa1\xe4\x63\x36\x4c\x00\xe9\x4a\xdf\x9f\x7e\x7e\x7a\x5d\xb0\xb7\x3a\x03\xbc\xe7\x6f\x9f\x83\x51\x58\xfb\x5c\xa7\x76\x5a\xb0\x1f\x04\x3f\x35\x97\xd5\xef\x9b\xa7\x64\x91\xa4\xff\xe0\x59\xcb\xdf\x37\x4f\xed\x1d\xf6\x8c\x9e\x16\xec\x9f\x82\x9f\xfe\xe3\x7d\xf3\xf4\xf9\x84\x2c\x92\xf7\xe9\xcb\x2f\x5f\xbc\x7b\xf1\x3e\x6d\x4f\x4e\x68\xab\x03\xb2\xf7\x99\xfe\xfd\xf9\xfb\xe6\xe9\x13\xdf\xf3\xea\xcb\xf0\x2e\x18\x21\xdb\xf4\x4e\xa6\xa5\xf9\x17\x64\x08\x14\xa8\x7c\x70\xb9\x48\x49\x1d\x0f\x20\x82\x2d\xc8\x1c\x89\xc0\x6a\x26\xa2\xe9\x3c\x6b\x5b\x0f\xa7\xec\xfb\x90\xb1\x0c\xe6\x10\xc1\x55\xfb\x10\xcd\xe2\x34\x3a\x8d\xa6\x46\xf2\xf5\x52\xfa\x46\xf4\x1c\xb4\x4e\xd1\x7c\xb7\xb3\x7c\x70\x9c\x40\xff\x49\x17\xc2\x17\xa0\x9d\xf3\x4d\x62\x45\xfc\x41\xae\x7e\x4e\xdf\x8a\x51\xb5\x0a\xdb\x21\x88\x4a\x8f\x9f\x55\x1f\x02\x42\x45\x3a\xa9\x3d\x4f\x10\x0a\x17\xa4\x70\xd5\xc7\x6a\xca\x4a\x5e\x3b\xa5\xba\x9b\x05\x46\x71\x9a\x9b\xc9\xc3\xf2\xee\xa6\x8a\x95\x06\x78\x6c\xce\x2a\x5e\xa6\x45\xd6\x37\x7e\x0a\x2e\x7e\x59\xc1\x74\x9c\x54\x66\xf4\xe8\xc7\xb0\x4c\x0d\xff\xd1\x2b\xd3\x8e\xfb\x50\x69\x0d\x65\xc6\x51\x07\x31\x46\x5c\x4b\xbc\xf6\x8c\x87\x15\xb7\xf7\xd5\x69\xa6\x4f\x31\xd6\x98\xb8\xb3\x5b\x9a\xb3\x9b\xce\xf3\x7a\xc5\x6f\x4e\xce\xd8\x2d\x20\x6a\xb3\x07\xbe\x21\xb7\x70\xb1\xf0\xd0\xb6\x80\xa9\x37\xb8\x85\xbf\x8d\xe3\x89\x6f\xd4\x11\xc7\x3f\x98\xfd\xf9\xd6\xc3\xe7\x0f\xe7\xb1\x83\xcb\x11\x33\xf1\x1b\x29\xe8\xd1\x43\x1c\x13\xa0\x43\xbe\xf5\x54\x68\x05\xab\xc1\x8a\x88\x50\x4a\xd9\x6b\x41\x6a\xbb\x10\x43\x81\x6e\xa0\xbf\x48\xc1\xef\xf4\x51\x19\x38\xbe\x42\x6b\xdb\xc9\x19\x13\x7a\xdf\xf0\xa7\x00\x18\x03\x78\xe6\x45\xbe\x87\x59\x4d\x59\xdd\xb6\x95\x51\x6c\xed\x38\x69\x0c\x56\xe1\xad\x20\x85\x67\xd7\xf3\xbd\x70\x84\x25\xe7\xeb\xe7\x37\xe7\xeb\xe9\x94\x96\xbc\x60\xeb\x09\xe7\x2b\xa0\xf6\xb8\x44\x5b\x13\x52\x32\xf0\xf7\xa7\x6c\xa7\x4f\x42\x68\xde\xd4\xb0\x5b\xfd\xc2\x25\x47\x29\x93\xd6\x35\x7c\x9d\xb1\x92\xad\x29\xd2\x2b\xa2\xcd\x50\x93\x36\x1d\x96\x73\xaf\x82\x58\xba\x86\x7d\x23\xa8\xee\xc4\xf3\xf5\xf3\x9d\x29\x4c\xa3\x93\xb2\x26\x46\xa5\x6f\x62\x34\x71\x03\xbc\x0c\xed\xea\x74\x09\xdd\x96\xbb\x64\x25\x70\xbb\xcd\x1a\xb9\x8c\xe3\x08\xad\x36\xa3\x09\xe7\x7e\x62\x3d\x8a\x89\xcb\xd9\xa5\xb8\xcd\xcb\x9f\x64\x19\xc7\x93\x72\x56\xd5\xdf\xc1\x57\x3a\x5d\xfb\x02\x13\x64\x8f\x55\x5d\x2d\x45\xa2\xe3\x54\x4b\xd1\xb6\x65\x6f\x39\x81\xe0\x88\xee\x69\x72\xad\xf3\xeb\x0c\xb7\x9c\xf7\xe8\x3f\x05\xb0\x4d\x94\x6c\x49\x9d\x1a\xcf\x5b\x07\xfe\x25\x06\x5c\x04\xac\xe0\x6a\xe1\x63\xca\xd3\x44\xb0\x9a\xcf\xcf\x0d\x2f\x51\x85\xe6\xbc\x60\xf8\x2b\xdb\xf6\x6c\xe2\xe3\xc3\x83\x38\x52\x8a\xbc\x82\x59\x79\x8b\x9c\x85\x55\x40\x25\x4c\x24\xf8\x18\x54\xc8\x77\xa2\xa3\x78\x5d\x1c\xc4\x0d\x4c\xb3\x3d\x72\x37\xe1\x7b\x8e\xfa\xb6\x73\xe3\x3c\xc6\xb6\x29\xbe\x13\x2c\x7a\xfe\xe4\xec\xf3\xe7\xa7\x4f\x9e\x7d\x1e\x21\xaa\xf1\x40\x4c\xe9\x8c\x3e\x7c\x16\xb2\x9e\x49\x14\x5b\xf3\xc2\xfa\xa8\x4f\x48\xdf\x86\x0a\xdb\xc4\xf7\x07\x38\x0b\x03\xd0\x0d\x1a\x19\x25\x88\xa0\xb8\x4a\x82\x8d\xdc\x92\x1a\x38\x65\x52\xeb\x47\x6f\xfa\x38\x06\x46\x5e\xa7\x15\x10\xf1\xe9\x3f\xa5\x45\x53\xea\x08\x40\x48\xc9\x77\x87\x38\x40\xe2\xd8\xea\xbb\x1a\x73\x20\xd8\xd9\xbd\x96\x37\xf6\x57\x62\xd2\x42\x7f\x85\xc8\x1a\x8b\xc1\x73\xdb\x92\x5d\x60\x05\xc6\x9b\xe0\x11\x5a\x44\x01\x3e\x33\x45\x9d\x77\xdd\xb6\x50\x11\x06\x06\x96\x7e\x15\xeb\x7e\xd5\xbe\x15\x04\xea\xa6\x6b\x66\x2c\x60\x60\x9b\x5a\xda\x8e\x37\x6d\xe4\x0d\x17\x9f\x0d\x4a\x90\x9c\x4d\xd6\x71\x8c\x77\x69\xdd\x88\x5a\xa2\xa3\x56\x35\x70\xb5\xf4\x29\x11\x2b\x70\x14\x08\x84\x78\x18\xf3\xbe\x3b\xa8\x70\xc3\xbe\x58\x93\xaf\x88\xa4\x06\xba\x5d\xa6\x4f\x3a\x8f\x74\x08\xb2\xdb\x5f\x87\x4e\x60\x43\x8a\xb4\xca\x16\x3d\xc9\x0c\x18\x0c\xc3\x4b\x47\x30\x02\xb3\x97\x8e\x47\x7e\x06\xa6\xc3\xf7\x32\xfd\xd1\x43\x28\x20\xfe\xa3\x95\x12\x87\x32\xfc\x0a\x88\x7f\xc6\x66\xc9\xbf\x9c\x80\x38\x7e\xd9\x3e\x8c\x48\x47\xf8\xa9\x4d\x9c\xbe\x3b\x6e\x1f\x67\x17\x7c\xcb\x91\x65\x05\x6d\xe8\x8d\xe1\x3d\x30\x77\xd3\x81\x20\x7b\x66\xae\x64\xfa\x13\xaa\x17\xf6\x3f\xfd\xa0\xb6\x45\xdd\xa3\x6f\xcf\x2a\x3a\xff\x5c\x31\xf0\x58\xa4\x7b\x86\x36\x98\x23\x67\xcf\xd7\xa2\x77\x5c\x0a\xaa\xf7\xc7\x8b\xf8\xa5\x6b\xcf\xc0\xfe\x13\xcb\xb9\x95\xe2\x0f\x15\xc7\x4a\x70\x61\x56\x67\x23\x61\xff\xd3\x0f\xb2\x4a\x8a\xae\x5c\x47\x6a\x56\x54\x8d\x90\xea\x0b\x50\x73\xeb\x65\x32\x00\x56\xd6\x05\x45\x0d\xf8\xbf\x5d\x4e\xc8\xd9\xdf\x1b\x7a\x01\x83\x8c\xd1\xfe\x6b\xcf\xf2\xb5\x1a\xd5\x10\xfc\xdf\xcf\x2e\xa0\xc3\xd1\x59\x0f\x80\x52\x1d\xa8\x3e\x5c\x35\x9b\x4d\x12\xb5\x7b\xa9\xca\x28\x5c\x83\xf7\x79\x74\x48\x6f\x97\x14\xc0\xdb\xa1\x0f\xe0\x81\xed\x75\x78\x4e\x1c\xd9\xaf\x3c\x5b\x57\xa3\x26\x8a\x63\x61\x50\x79\x38\x57\x0b\x91\x18\x5d\xb4\x16\x7f\x46\xdd\xdd\x40\xfa\x0a\x9c\xd7\xf5\x8e\xfa\x89\xb3\xba\xbb\xb7\x81\x33\x11\x5e\x6d\x86\xcc\x2c\x21\x5e\x01\x62\x5e\x78\x27\x0b\x87\xc1\xe3\x6c\x95\x47\x71\x5f\x44\x1c\x4f\xde\x7a\x44\x69\x93\x8d\x48\x9d\x11\xbe\xf8\x98\x11\x7e\x46\x1f\x05\xef\x9b\xd8\xeb\x41\x2d\x1f\x90\x8d\xc1\x1e\x32\xe0\xc6\xdb\x54\x46\x9a\xbb\xf2\xc3\x1d\xa6\xb0\xc3\xbc\x72\x73\x9d\x28\x9f\x7b\x10\x18\x7b\x65\x46\x98\x5d\xd8\x70\x82\xc3\x65\xdc\xe1\x15\xc8\x48\x2b\x21\x8e\xad\x55\x19\xa7\xce\x09\xee\x23\x23\xbd\x73\x33\x0f\x87\xf7\x91\x07\x28\x8c\x53\xfb\xf9\x7c\xa4\x66\x40\x6e\xc3\xc0\xce\xc7\x94\xc5\xb8\x43\x18\xde\x9b\xbd\x5e\xfb\x3d\x65\x1b\xd6\xea\x5d\x9d\x44\xf8\x2b\xb2\xcb\x96\x0e\x32\x3f\x23\xe6\x4f\xad\x24\xc2\xf5\xc2\x86\xbe\x80\xd9\x1c\xc1\xa4\x8e\x6c\x03\xbc\x28\xcb\x24\xf2\x1a\x63\x44\xe7\xd6\x43\x4e\x17\x81\x23\x1e\x52\x6a\x01\xe6\x54\xed\x18\xfb\x4e\xce\x58\xce\xe7\xe7\xf9\x73\x5e\x9f\xe7\x5a\x7e\x05\x02\xce\xda\x73\x45\xc7\x09\xa1\x65\xbc\x4b\x52\xa4\x79\x46\x53\x95\x11\x49\x59\x63\x59\x7f\x99\x44\x22\x84\x60\x6e\x7a\x58\xe8\x95\x53\xae\x7c\xdd\xf7\x5c\xb6\xde\xca\x8b\xc9\xf6\x9e\xa2\xcb\xf2\xd4\x7a\x2c\x7f\x11\x5a\x65\x5a\x02\xd3\xe0\x18\xe3\x44\xad\x42\xdc\x79\x0c\x4e\x72\x56\x6f\x45\x25\x24\x68\x89\x04\xc5\x02\xbe\xac\x37\xdb\x9d\x12\xab\x0b\xf0\xf3\x54\x74\xcf\x7e\x0a\x8a\x23\x85\x31\x0c\x6b\x23\x0a\x25\xe8\x54\x27\x3f\x8b\x51\x51\xd8\xba\xf0\x5a\x61\x0c\x5c\x46\xbf\x00\x21\x35\x8e\x49\x04\x67\x9e\x9c\x43\xe6\xf6\xa6\x1b\x64\x42\xa2\x68\xdb\x4a\xbd\x14\xb6\x2d\x48\xcd\x60\x8b\xea\x79\xa0\x52\xca\x26\xdb\xd9\xb6\xb8\x17\xe5\x17\xf5\x3d\x14\xb8\x21\x34\x8e\xbf\x36\x13\x3e\xa7\x71\xfc\x93\xbd\xa7\x45\xb4\x91\x66\x06\xa4\x7f\xac\xe0\xcd\x6c\x53\x54\x3f\xc3\x43\xad\x1f\xf2\x7b\x7c\xe8\xc2\xbd\x50\xfb\x1d\xcf\x99\x2e\xe9\x9d\x89\x89\x61\x95\xff\x4d\xc1\xbc\xaf\x6a\xea\x21\x30\xe5\x8b\x7c\x1a\x45\x89\xc7\xde\xfe\x5b\xa0\x6a\x7a\x0c\x00\xa7\xf0\xfe\xb4\xe3\xdf\x73\x4c\x1a\x5c\xd1\x03\xe8\xbd\x46\x53\x62\x23\xee\xf7\xfb\x80\xc2\xc5\xe6\xaa\x30\xed\x25\x7d\x2c\x8d\xb7\xe5\xb2\x69\xde\x89\x7b\xc5\xa3\xad\x61\x6b\x4c\xf2\x2b\x80\xaf\x15\xe7\xa5\x58\xab\xe4\xe4\x4c\xff\xb7\xbd\x3f\x87\xfa\x26\xff\x35\xdf\xde\x9f\x6f\x72\x79\x5d\x54\x27\xaa\xde\x26\xfa\xcd\x36\x5f\xad\x8a\xea\x3a\x99\x9f\x5f\xd5\x72\x25\x64\x32\x8f\x00\xd0\x75\x3c\x79\xcb\xc7\x79\x6e\xfc\x3c\x13\xf0\x95\x3d\xbf\xaa\xef\x4f\x9a\xe2\x5f\x3a\x1d\x4c\xe5\xe4\xaa\xbe\x3f\xaf\x6f\x85\x5c\x97\xf5\x5d\xd2\x00\x8a\x9e\xc9\x39\xc9\x77\xaa\xb6\x99\xf9\x25\xf0\xcb\xf9\xa7\x73\x28\xdf\x9f\x22\x56\x85\x5e\x32\x65\x28\x34\x2d\x0d\x1c\x3e\x6a\xdd\xc2\x19\xb0\xa4\x47\x05\x8f\xce\xfe\x14\xa1\x2d\x73\xbd\x65\x3b\x7e\xf6\x8c\x73\x2e\x89\x9a\x61\x59\xbe\x15\x6b\x45\x5d\x75\x65\x71\x7d\xa3\x78\xf4\x5f\xf3\x3f\x45\xac\xe1\x9f\xfd\x97\x89\x0a\xc1\x7a\x49\x71\x21\x50\xca\xee\x3b\xdb\x3a\x3c\xb2\xad\x1f\xb1\xdc\x66\xb5\x9c\xe1\xd5\x13\x8c\xab\xd3\xcf\xa8\xae\x90\x7f\xc8\x2d\x29\x5b\x22\x8a\x72\x37\xbc\xa4\xb7\x07\x23\xab\x70\xbd\xab\x56\x04\xa0\x97\x5e\x97\x75\x0e\x24\x3a\x7b\xe7\xf7\x8e\x67\xd6\xa1\x1f\x13\xf8\x38\xe9\xd4\x47\x5f\x1c\x2d\x9d\x4f\xb2\xad\xc8\x55\xbe\xfc\x70\x0d\x79\xbd\x2c\x8b\x2d\x8f\x0c\xbf\x85\xee\x4c\x3d\x28\x42\x1f\xa1\xf1\x4f\x22\xb6\x85\xcd\x45\xc2\xf1\x18\x3a\x22\x4c\x87\x83\x71\xe8\xc8\xb7\x1d\xaa\xcd\x96\x3d\x5e\xd5\xf7\x17\x30\x9e\xde\x8a\xb2\x38\x80\x3e\x0f\x10\x31\x7b\x16\xae\x22\x07\xe2\x35\x26\x9e\x65\x35\x3d\x10\xad\xd0\x9b\x31\x66\xf8\x9d\x1b\x20\x07\xe2\xee\xf6\x0c\xc7\x35\x96\xf5\x50\x09\xf3\xfd\x9e\xd2\x3d\x25\x38\x50\xff\x26\x78\x1a\xfd\x2c\xae\x3e\x14\x2a\x62\xd1\x77\xf5\xbf\x22\x16\x6d\x9a\x28\x63\xbf\x8e\xf8\xa1\x41\x37\x61\x5b\xb1\xaf\x42\x57\xfa\xbf\x0a\x8f\x15\x4a\xcf\x53\xbd\xfe\x36\x40\xe8\xf1\x95\x48\x45\x80\xf6\x27\xf4\x71\xf4\x57\xb1\x10\x09\xbc\x1a\xdd\x3d\x15\x70\xa4\x85\xb0\x88\x53\xd1\xb9\x61\x48\xfe\x37\x11\x20\x45\x21\xd6\xf6\xdf\x44\x2a\xb3\xa9\xa2\x90\x81\xd3\x67\xee\x61\xc5\x17\x38\x42\x9f\x80\xc7\x57\x55\x57\xa2\x05\x65\x3c\x59\x4c\x4e\x96\xa9\xc8\x33\x3a\x9b\xd2\x53\xf6\xa3\x7e\x7d\x72\x72\xca\x7e\x11\xfc\xd1\x2d\x33\xde\x44\xba\x2d\x9a\xe2\xaa\x28\x0b\xf5\x90\x44\x37\xc5\x6a\x25\xaa\x88\xd9\xc5\xc7\x78\xea\xef\xd9\xdf\x05\x7f\x2c\x85\x52\x42\x5e\x6c\xf3\xa5\x5e\x4c\xa2\x79\xc4\xd6\x75\xa5\x7e\x06\xc2\xd8\x24\xfa\xf3\x7c\x1e\x79\xed\xf7\x17\xd1\x63\x48\xb4\x16\xdd\x1d\x45\xdf\x02\x66\xde\x26\xbf\x27\x73\x56\xa5\xcf\xb2\x13\x22\xdb\x76\x4e\xe9\x94\x54\x00\x0c\x01\x28\x10\x89\xea\x66\xad\x05\x3f\x0b\x9c\xc5\x78\x84\x5c\xb5\x00\x7f\x73\x96\xcc\x19\x42\x79\xce\x91\xbe\x8e\x73\x52\x2d\x22\x5c\x0b\xa3\xc4\xce\x93\xc8\xa9\x86\xe7\x88\xb1\x97\x3f\xff\xf3\x79\x3e\xe5\xcf\x68\x84\xcb\x96\x45\x0a\xd8\x4d\x1d\x54\x87\x9c\x4a\x91\xe6\x00\xf0\x59\x50\xca\xaa\x05\x71\xa9\xd9\xc8\x27\x1d\xae\x87\x59\x72\xa3\xf0\x23\x9b\xfa\x64\xf8\x81\x29\x22\xc6\x9f\x46\x3f\x23\xff\x2e\x7e\x47\x13\xbf\x20\xa3\x69\x77\xa1\x00\x68\xe8\x47\xff\x48\xca\x49\xf3\x69\xf1\x6c\x9f\x01\x34\xd3\xe7\x00\x7e\xb1\x9b\x72\xaf\xfb\xe0\xe7\x52\x14\x25\x11\x69\x84\xcb\x71\x34\x55\xc3\x01\xaf\xdc\x80\xcf\x4e\xea\x93\xdd\x49\x73\x32\xfb\x4f\x4a\x75\xaf\xb3\x5d\xd7\xcf\x4a\x85\x63\x07\x04\x22\x56\x70\x32\xd9\xce\x06\xeb\x16\xd1\x92\x10\x8d\xe3\xa8\xdb\x17\x03\x84\x15\xf7\x41\xc4\x26\x67\xac\x02\xc9\x95\xe5\xdc\x08\x64\x15\x65\x0d\xff\xb4\x12\xeb\x01\xd5\x89\x4f\x3d\x2e\xe4\xfc\x28\xe7\x91\xde\x77\x23\x4b\xdb\x37\x5e\xd6\x38\x2e\xda\x16\x23\x72\xce\xf3\xb6\x9d\x78\x7b\x8e\x16\xca\xa2\xa2\x2a\x8b\x03\x20\x31\x58\x01\x80\x5d\xd6\x7b\x31\x98\x61\xbc\x15\x4b\xd5\x38\x56\x32\x03\xaf\xf1\x89\x2d\x41\x6a\xde\xe0\x6d\x2a\xb8\x1e\x8a\xb4\xc9\x28\xb8\x38\x05\x65\xd2\xbd\x33\xb5\x53\xaf\x6d\x49\x31\x36\x9f\x58\xcd\x2a\x96\xd3\xa9\x9e\xb3\xde\x36\xab\x7c\x97\x12\xcf\xae\x4d\x7a\x46\x54\x40\x4b\xe9\xc5\xf3\x14\xd1\xcb\xa6\x41\xc0\xaf\xc7\x5a\xaf\x3a\xea\x21\x79\x1c\x42\x8f\x82\x76\xd4\x08\xf7\xd0\xab\x91\x89\xec\x8e\xfa\x80\xda\x21\x17\xd1\x59\x94\x48\x30\xf3\x73\x40\x32\xc9\x63\x5e\x15\x1b\xb0\xdc\xf9\x46\x09\x09\x3f\xc0\xec\x19\xad\x65\xca\xdd\xa6\x7b\x5c\x17\x65\xf9\xc6\x14\x43\x3f\x96\xe2\xfe\x2b\x59\xdf\xd9\xdf\x17\x37\xb2\xa8\x3e\xc0\x53\xb7\x2a\x4e\xe6\xec\x5a\x16\xab\x17\x52\xe4\xf6\xf7\x4b\x48\x35\x7c\x7a\x55\xad\xc2\x80\x0b\x95\x4b\xf7\xf5\x5b\xcc\xc4\xfc\xf4\xe2\xbe\xad\xef\x5c\x44\x3d\x68\xbe\x76\x99\xd6\x5d\x39\x51\x0c\x84\x1f\xdb\x9b\x1c\x8d\x79\xee\x8a\x55\x7d\x07\xbf\xfe\xf5\x0d\x10\xec\xe9\x5f\x75\xbd\x41\xbb\x55\xb3\xd7\x25\x8f\x7b\x06\x5b\xe3\x88\xd1\x01\x5a\x0f\x7c\xd6\x53\xc9\xff\x77\xef\xd9\x1c\x6e\x3c\x00\x21\xd6\x00\xf0\x29\xdb\xf1\x1f\xdd\xe1\x03\x2c\xcc\xf1\x14\x54\xac\xc9\x0e\x80\x68\xfe\x2a\x88\x3e\x30\xe7\x38\x78\x61\x0c\x80\xa3\xa7\xf7\xd8\x78\xb8\x10\xdd\x34\x8c\xe3\xe8\x5a\xa8\xa8\x80\x9f\x9d\xa2\xb9\xe0\xb9\xf1\x59\xc4\x29\xb4\x28\x92\x32\x55\xd9\x51\xa7\x14\xe1\xa4\x76\x8e\xbd\xc8\x77\x6f\x77\x2c\xa9\x67\x1c\xd2\x93\x12\xc9\x0d\x2e\x52\xa1\xd7\x91\xa8\x82\x41\x14\x51\x86\x8a\x22\x7d\x6e\xc4\x95\xdd\xbe\x99\x70\x5e\xb7\xad\xae\x93\x9c\x02\xbb\xc8\x10\xf1\xa8\xe9\x10\x8f\xe8\x50\xb4\x6b\x5b\x38\x04\xea\x8d\x11\x84\x6c\x87\x13\xd9\x89\x76\x91\x3e\xfc\xe9\xda\xf0\xa8\xa8\x6e\x84\x2c\xf4\x74\xd4\x0d\xd1\xf4\x1a\x82\x83\xc6\x3d\x37\xfe\xbb\xd2\x18\xb5\xec\x16\xa5\x0e\xe9\x0c\xa9\x99\xa4\xd0\x38\x5c\x22\xa5\xc5\x00\x8e\x37\x80\x84\x32\x3d\x6a\x37\xf5\xae\x5b\xfd\x7e\x24\x1f\xef\x48\x1a\xf4\x9a\xdf\x59\x73\x26\xdd\x39\xd1\xc1\x07\xb9\xa5\x1b\x80\x85\xe4\x26\x2f\x0d\xb4\x90\xd2\x8b\xd9\xdf\x01\x1c\x8c\xff\x1d\xe8\x40\x11\xb0\x47\xb6\xad\x5c\x90\xda\x5f\xd6\x0a\xca\x00\x38\x5d\xb6\x6d\xd1\xbc\xd6\x2b\x90\x20\x35\x5d\xd4\x6d\x3b\x4f\x90\x11\xc2\x29\x63\xd2\x08\x39\xf1\x23\x66\x24\x8d\x6c\xa0\x34\xf1\xaa\xc6\xfb\x2b\x94\x9d\x2f\x8e\xba\xfd\x89\x69\xa2\x21\x06\x98\x05\x28\x1b\x5f\xd9\xe1\xd5\x17\xba\xc7\x8b\xea\xba\x8b\x42\x28\x9e\x96\x16\x66\xd7\xac\x68\xd2\xe8\x06\xfa\x25\x00\x5a\xb4\xd2\xaa\x8d\xb3\xa7\x03\xd8\x68\xbf\x5f\xcd\x96\x9b\xf3\xc9\x76\x16\xc8\xe0\x7a\x07\xeb\x64\x47\xc0\x42\xb5\x32\x25\x6b\x38\xc9\xdb\xb6\xfa\xe4\xbd\xb8\x06\xaf\xaa\x85\xd9\x5a\x2a\xd6\xb0\x9a\x26\x0e\xca\xb6\x89\xe3\x1c\x65\xa4\x3f\x22\x5c\x78\x5d\x5d\xeb\x81\x70\x62\x72\xb1\x5b\x17\xe6\x0f\xd2\x07\xdb\x0d\xa7\xbb\xc1\x16\x23\x45\x27\x88\x82\x1d\x39\xc2\xa6\xe9\xb9\xc1\x24\xf7\x90\xc6\xd8\x5f\x04\x99\x33\xc9\x76\xf6\x82\xc8\x8e\x08\xef\x18\xcc\x7f\x13\x64\x3b\x1b\x9e\x7e\xd8\xc8\x76\x66\x64\x08\xaf\x16\xb8\xb3\x75\xa9\x75\xa3\x65\x74\x48\x94\x62\xad\x4e\x60\x1c\x3c\x76\xdf\x24\xf3\xfd\xc8\x98\xf8\x78\x22\x7b\x6a\x36\x75\xcf\x12\x10\xb5\x0c\xfa\x24\x6a\x14\x0b\x51\xc4\x8c\xba\xc1\x88\x8d\x43\xbd\xa2\x9b\x22\x62\xaa\x27\x09\xde\xab\x75\xc3\x2f\x20\xee\x9f\x33\x70\x9f\xaf\x87\xd4\x7f\x72\x21\xad\xe3\xe7\x71\x44\x93\x54\x66\xe7\xd5\xf3\x3f\xc3\x4d\x67\x91\x0a\x2d\xba\x56\x99\x4e\xbf\x4e\xab\xac\x6d\xeb\xb4\x3a\x79\x06\x7f\xe7\x1e\xc6\xdd\xde\x17\xc3\x1d\xb0\x5c\x57\x38\xbd\x1a\xf2\xbf\x00\x2b\x43\x70\xd1\xd7\x5f\x08\x0f\x2b\xf1\x7b\x8a\x3e\x80\x02\xc0\x03\x49\x1f\x12\x1c\x6b\xdd\x49\xb8\xd6\x07\xe8\x3c\x7f\x5e\x80\x32\xb5\x4e\x55\x9a\x67\x59\x37\xd6\x40\xe2\xd7\x7b\x98\xad\x50\xbd\xef\x7b\x9b\xcb\x85\x0f\x45\x27\x69\xd2\x0d\xd4\x3d\xd8\x07\x0e\x31\x74\x8d\xf2\xf9\xdd\x9d\x10\x15\x97\x8a\xc9\x83\x46\xee\x52\x31\xbd\x5a\x8e\xf8\x0c\xeb\x13\x19\xaa\xe6\x4b\xb1\xb1\xee\x08\x5b\x59\x6f\xb9\xb4\xc6\x74\x4d\x51\x5d\xf3\x42\xaf\xfe\xf8\xbb\x43\xf0\x41\x73\x3e\x80\x48\x6a\xb8\xb2\xa6\xd5\xb9\x54\xf6\x26\xed\x8e\x5b\x17\x01\x6b\x79\x2d\xaa\x15\xaf\xf0\x27\xe0\xe4\xd5\xbd\x8d\x55\x76\x1b\xeb\x9e\x2d\x77\x72\xa8\xf9\xc7\x5a\x6e\xcd\xd2\x6d\x8b\xeb\x86\x8a\x30\x6b\x2e\x02\x5b\x99\x5b\x55\xff\x1b\x57\xfc\xee\xfd\x9e\xc9\xdd\x08\x23\x0e\x93\xbf\x97\x99\xdf\x00\xb3\xd5\x0e\x45\x51\xc3\xf0\x5b\x37\x5c\x71\xdb\x66\xa9\xd7\x96\x99\xbd\x50\xeb\x7f\xf8\x54\xb0\x39\x3b\x1b\x7f\x67\x6e\x86\x31\x55\x7b\x21\x57\xdf\x71\x62\x5b\xf5\xa4\x6b\x7d\xfa\x54\x4d\xbb\xa7\x30\xbd\x46\x89\xad\xb9\x8c\xf1\x83\x3a\x0b\x2a\xf4\x7d\xb4\xe9\x5b\x5e\xed\x38\x96\x7a\x86\x2d\xa4\xc3\xb1\x38\xd4\xa8\xee\x3d\xb2\xa3\xec\xd9\xe0\xd4\xe0\x0d\x52\xff\x1d\xf3\xd3\xe3\x8f\xce\x75\xa9\xb7\x35\x9b\xbe\x71\x18\x2c\x20\xbd\xea\x32\x7b\x77\xb9\xd6\x50\x5c\x07\xa7\x02\xbb\xcc\xc2\xc5\x98\xc8\xb8\x27\x98\x77\x8b\x30\x6a\x42\x94\x9d\xba\xd8\x1a\x18\xce\x22\xc0\x7c\xc5\x73\xe0\x04\x70\x7b\xf5\xda\xdc\xf4\x8a\x77\x39\x5b\xdf\x43\x9b\xba\xd4\x07\x21\x44\xd0\x64\xb4\xe0\x13\x7f\x55\xfb\x48\xb9\xff\x2a\x90\xd5\x6e\x4b\xfb\x65\x07\x51\xfe\x2e\x71\x6b\x49\x50\x01\x78\x37\x05\xce\x4f\x70\x9d\x0a\x9a\xdc\x88\x0c\xef\xf4\xd4\x1f\x06\xc3\x5e\xf8\xd8\xaf\x6b\xaf\x02\x7a\xea\x41\x40\x60\xe5\x34\x56\x40\xeb\x70\x01\x6b\xcb\xa3\x3e\x06\xe5\xe3\x36\x4b\x7b\xd6\xdc\xe9\xcd\x6a\xf8\x6e\xf6\x9f\x27\x28\x63\xd4\x0d\x11\x4f\xe1\xe7\x0f\xdf\xd0\xd3\x67\x9e\xd7\x5b\x04\xdf\x46\x3a\xab\xf5\x3d\x1f\x0c\x44\xe6\x3a\x86\x3f\x22\xd7\x41\xa5\x58\xa1\x58\xad\x10\xc1\x09\xb1\x14\xdb\xe6\xa6\xbe\x6b\x6f\x8a\x95\xa0\x4f\x4e\x59\xae\xf8\x69\x07\x02\xfc\xc4\x43\x68\x6a\xe0\x1e\x42\xc5\x31\x01\x9b\xe4\x6a\x86\x6a\x39\xf4\x34\xfb\x6d\x27\x1a\xf5\xc2\x9e\x5a\x5f\x4b\x44\xde\x1b\x0d\x27\x8d\xa2\x49\xc0\xac\xd3\x98\x92\x82\xd1\xfd\x6d\x5e\x52\x7c\x54\xc5\xf2\x03\xa1\x1e\xe2\xcf\x4e\xf9\xf2\xc1\x38\x07\x53\x65\x4d\xa7\xf7\x94\x55\x8a\x77\xbe\x53\x5d\x32\xa5\x1a\x92\xda\x3f\xa2\x34\x9d\x08\x74\x77\x57\xa8\xb5\x33\xdb\x38\x7f\x76\xa2\x68\x91\xda\x0d\x7a\x4a\x24\x87\x3d\x9d\x66\xbc\x48\x3d\xc5\x57\xc6\x7d\x86\x72\x52\xcc\xcc\x81\x97\x17\xe6\xe2\x49\xef\xa6\x5d\x39\x96\x6a\xcc\x22\x8f\xac\xd5\x4c\xe9\x1d\x4f\x48\x3c\x94\xa4\x19\x9d\x2d\xeb\x6a\x99\xab\xe0\x55\xf4\x34\xca\xa8\x81\x1f\x2d\xfa\xf0\xa3\x40\x30\x51\xa4\x75\x86\xeb\x9e\x64\x8a\x89\xce\x85\xcf\x83\x35\x55\x43\xb9\x40\x27\xb8\xd6\x43\xc9\xdc\xa1\x7b\x50\xd4\x3e\x5c\xf5\x0c\x89\x38\xfd\xb6\xb7\x90\x09\x30\x1f\xf6\x34\xa4\x25\x2e\xd6\xc4\xa2\x0e\x4d\xce\x8e\x3a\x05\x74\xa5\xda\x56\x77\x2c\x93\xbe\xea\xae\xc4\xb5\x5d\x77\xf0\xb4\x74\x9b\xc4\x09\x80\xc6\x9f\x9d\x10\x79\xda\x05\x82\x9e\x0e\x8b\x5d\x62\xf3\x34\xfd\xe6\xb0\xe1\xba\x41\xe4\xae\x22\x9d\x9c\xd2\x78\x5c\x7f\x44\xb0\xb4\x64\x15\x93\x19\x65\xd5\xf3\xb3\x38\xce\x17\x32\xd1\x87\x87\x61\xa4\x33\x36\xcf\x8c\x2f\xbb\x43\xe2\x16\xe0\x7e\xcd\x26\x67\xc0\x6e\xdc\x38\x40\x6c\x74\x98\x16\x6c\x0b\xea\x0b\xdf\x52\x59\x51\x56\x6f\x95\x17\x36\x99\xb3\x47\x63\x93\xf6\x0a\x96\x8e\xe4\x71\xcf\x70\x11\x49\x06\xd2\xc9\x9e\x49\xca\xac\x53\x99\x39\x28\x17\xa2\x49\x94\x0b\x7c\x83\x1b\x60\x22\x99\x6b\xcc\xc4\x35\xb7\x6d\xbe\x44\xba\x96\x64\xd8\x4a\x49\x9a\x31\x03\x19\xa8\x9f\x7d\x52\x4f\xa7\xfc\x34\x52\x19\x11\xac\xd4\xfb\x2c\xd0\x96\x9b\x9f\xb3\xa0\x06\x30\x84\xcd\x0b\xac\x80\x6b\x7b\xd7\x5b\xc6\x43\x9d\x55\xe8\x53\x37\xc2\x87\x0b\xa6\x26\x8b\x5e\xf7\x26\x20\xbc\x16\xbe\xa3\xf6\x11\x92\x5f\x4f\xe6\xce\xd8\xc3\x75\xbd\xc4\xae\x3f\xeb\x6e\xf3\x17\xe4\xd3\x3b\x96\xa9\x8c\xd2\xa4\xf1\x29\x2c\x6d\xb0\x91\x03\x28\x5b\xf2\x12\xb6\x00\x2c\xc5\x47\x40\x0d\xe0\xbd\x44\x1d\xa7\xae\x01\x57\x69\xc5\x7f\x25\x92\x66\xac\xe6\x80\xfc\x19\x4a\xe4\x35\xaa\x7e\xea\xf4\xcc\x46\xe0\xfa\xf0\x40\x99\x34\x0c\x5e\x00\x58\x5c\x33\x47\x9d\xa3\x47\x70\xa8\xdd\xa8\x40\x9d\x81\xe7\x1b\xd0\x68\x50\x57\x86\x9a\xe7\xc6\xa0\x90\xd4\xb4\x4b\xa3\xca\x58\x4d\xb1\x90\x6d\x4b\x4c\xa6\x32\x63\xc0\x52\x5e\x18\xab\x4d\x05\x48\xc9\x7b\xb2\x1c\xed\x7b\x1a\xae\x47\xc1\xa2\xe2\xd6\xa6\x92\x09\x66\x3f\x77\x4b\xd4\x06\x80\x8e\xeb\x2d\x85\x83\x90\x4f\x05\x50\xe2\x86\x6f\xb2\x83\x17\x14\xa2\x72\xfc\x02\x50\x73\xd0\x16\xb9\x23\xce\xdc\xe4\x5b\xb2\x64\x4b\xc5\x4a\xca\x36\xc4\x16\x15\x44\xc9\x38\xf6\x1f\x2d\x4a\x4c\x49\x59\xd9\x11\xe8\x9a\x18\xf6\xd9\xf0\xe8\x9a\x50\xfd\xdb\x16\xc7\xf2\xcf\x19\x66\x5d\x13\xaa\x7f\xbb\xe5\xd2\x84\xe1\x93\xdb\xe8\x36\x3e\x3c\xda\x8e\xd9\x25\x23\xaf\x8a\x4d\x52\x32\x24\x30\xf0\xab\xbc\xa7\x94\x95\xfb\xcb\x99\xdb\x59\x3b\x0f\x88\xb5\x62\x8f\x76\x93\x48\x1e\xa3\xa7\x51\x92\x8e\x0c\x45\x73\x6e\xe9\x66\x39\x3a\x73\x9b\x16\xdb\x09\x22\x8d\x60\xc5\xba\x2b\x32\xbd\xde\xc8\x7d\xb6\x67\x26\xf9\xde\xb9\x73\x43\x04\x5d\x18\xba\x01\xdc\x9d\x12\xc1\x3b\xc2\xfb\x23\xdf\x62\x67\x0e\xee\x6e\x3d\xab\x60\xc9\x61\xd4\xf9\x9b\x9c\xcc\x78\xf8\x88\xb4\xf9\x41\x90\xa3\xf9\x50\x68\x47\x69\x06\x58\x58\xed\x03\xe6\xde\x6c\x6d\x2f\xea\x0a\xb8\x34\xb5\x4a\x35\xfd\xc4\x6e\x10\x03\x63\xa5\x4f\xca\x5b\xab\x0d\x66\x9b\x40\x99\x9c\xc3\x11\xd9\xa1\xc2\xb1\x68\x7d\xaf\xc5\xa9\x08\xab\x0b\x16\xc1\x12\xbb\xac\x6d\x0d\xb0\x23\x4c\xcc\x90\xdf\x04\x08\x5a\xe8\x6c\x57\x41\xe8\x2a\x8e\x49\xee\x1e\xf8\x9c\x35\x7a\x86\x3a\xda\x11\xe6\x3f\xf8\x3b\x6c\xf7\x4d\xdb\x36\x84\xee\x29\xeb\x42\xa6\x53\x76\x33\xb2\x63\x8f\x85\x75\x1f\x9d\x9c\xb0\x8e\xaf\x05\xca\x68\xba\xac\x6d\xf3\x90\x07\xc5\x50\xfd\xd9\xc5\x2c\x63\xb5\x43\x39\x83\x9d\xdf\x5a\xba\xc0\x2b\x7d\x26\x8e\x50\xf6\x04\x15\x29\x2b\x38\xe7\x64\xb3\x88\xb4\x0c\x1a\x25\x11\x36\x20\x7c\x87\xbf\x27\x5c\x1f\xcf\x27\xb7\x1e\x1e\xc0\xad\x5e\xd1\x96\x75\xa5\x8a\x6a\x27\x8e\x36\x7c\x32\xdf\xaf\xf4\x5a\x74\x1b\xc7\xb7\xa0\x65\xe9\x94\x0d\x15\xdd\x17\x6b\x42\x76\x7c\x84\x02\x8c\xc2\x91\x24\x0c\x5d\xd1\xce\x9a\x7b\xdd\xa7\xee\x8a\x63\x22\x67\xd6\xc0\x85\xa7\x5b\xf7\x9b\x75\x3f\x7f\xf1\x7e\xff\x9a\x31\xd3\xeb\x25\x94\xcd\x02\xa5\x83\x27\x49\x37\x6a\x3a\x65\x6b\x87\x4a\x4f\x96\x23\x84\x0c\xf0\xdd\x62\xc9\xcb\x84\xac\x11\x64\x1a\xf8\x1a\xfb\xdc\x0e\x6d\x5b\xb2\xb1\xcf\x19\x7e\x44\x29\x65\xc4\xbb\xd3\x5b\xb6\xad\x79\x3a\xc1\xab\x75\x1d\x86\x07\xb3\x09\x2f\x47\x29\x22\xd6\x65\x9d\x03\x5e\x06\xdc\x8d\xdc\xe0\x92\xe8\x8d\xa2\xad\x83\x84\x2f\xf7\xd4\xb4\x41\x09\x5c\x03\xee\x0d\x2b\xb9\x4b\x77\xb9\x88\xa2\x64\x09\x77\x0d\x0e\xda\x3e\x28\x11\xb8\x04\xd9\x56\x8d\x63\xd2\x35\x31\x77\xf6\x01\x63\xa3\xd9\x8b\xd7\x7d\x9f\xce\x33\xbf\xbf\xfc\x37\x67\xfe\x9b\x5f\xfd\x37\xcf\x32\x3d\xc8\x77\x7c\x72\xc6\x56\x54\x57\xfa\x76\x61\x73\x2e\xaa\xe3\xdb\x38\x26\x1b\x7e\x6b\x0e\x45\x34\xb9\xf5\xf9\x93\xec\xaa\xc0\x1e\xad\x09\x83\x6e\x94\x3a\x8e\x89\xfd\x80\x4f\x36\x94\x6d\xe2\xd8\xeb\xd4\x61\x9b\xba\x61\xb9\x69\x5b\xd3\x91\xcc\x47\x15\xb3\x6b\x0f\x5b\x79\x9c\x11\x15\xd3\x13\x83\x62\xd9\x97\x8a\x6c\x16\x7a\x82\x24\x73\x56\xb1\x1b\xca\x20\xb9\x5b\x5d\x19\x3d\x7b\x76\x46\xa3\xb2\xd1\xdd\x0a\xaa\x2c\x1b\x62\xfe\xf2\x39\xa5\xfb\xac\x5b\x65\xfb\x6c\x4f\x8b\xf0\xe0\x60\x57\x66\x41\x93\xf0\x05\x48\x7c\xd6\xb8\xb4\xd9\x0a\xb1\x1a\xc0\x9a\xa0\x9c\x29\xe2\x78\x84\x2a\xcc\x17\xa2\x05\x4d\x1e\xed\xbe\x9b\xc8\xb6\x9d\xc8\x38\x56\x6d\xbb\x01\xeb\x61\xd1\x89\xb9\xc2\x0a\xd2\xf8\x5e\xc5\xf1\x64\x03\x46\x86\xca\x63\xd8\x5e\xdf\xcf\xea\xf5\x7a\x51\x39\x91\x98\xcf\x93\xee\xd6\xcc\xe4\xdf\xbd\x05\x3a\x0c\xfb\xa0\x5b\x12\x0f\xdc\xba\x3e\x8d\x9f\x88\x17\x9c\x76\xc1\x59\x32\x1e\xc5\x49\xf8\xf6\x06\xaf\xc2\x45\x38\x8e\x01\x6e\xaa\xea\xf6\x13\xfc\x05\xcc\x4c\x94\x55\xb3\xba\x5c\xf1\xca\x09\x21\xac\xfb\xe9\xef\x12\x5a\xb4\xaa\xcb\x15\x8d\x63\xf8\xdb\x29\xc6\x74\x0a\x26\x9f\x1e\x07\x92\x09\xa7\x7b\x2d\xa1\x07\xda\xe7\x75\xbe\x12\xef\xea\xc3\xfe\xdf\x20\x65\x18\x53\xec\x5c\x50\x58\x3c\xdc\x45\x38\x9b\x5b\x86\x05\x3d\xd4\xf4\x89\x12\xa4\x19\x41\xdc\xbd\xba\xda\x33\x61\xdc\xcc\xcd\xbb\x43\x97\x7e\xbc\xbf\x8a\x0b\xe4\x11\x83\x16\x25\x18\x53\x9f\x6b\x43\x65\xab\xe2\x6b\x03\x8e\x17\x8e\x28\x56\xd3\x73\x52\x38\xbc\x7d\x40\xcf\x5b\x17\x55\xd1\xdc\xc0\x0a\xac\x40\xd2\x24\x93\x39\xdd\x77\xac\xd8\xf8\x9e\xe7\x4c\x6f\x55\xc8\xc7\x07\xad\xe6\xf1\xda\xe5\x46\xc9\x89\x4d\x6b\xde\xb3\x9c\xf6\x8f\x3d\xc1\x0c\x18\x43\x95\xd0\xd1\xad\xf5\x28\x3e\x31\x45\xa4\x2b\xcd\x28\x0f\x14\xba\x95\xfb\x5c\x50\xca\x20\xd4\x59\xf7\x88\x01\x83\xd5\xb8\xb7\x39\x16\x62\xa2\x45\xb8\xce\x13\x21\x60\x8e\x82\x96\x07\xa1\xb6\x09\x00\x95\x29\x9e\xd7\x10\x98\x4c\xff\x0b\x45\x8f\xe3\x0a\x50\xcf\x68\xc7\xf3\x0a\x7e\xc4\xf9\x30\x62\xee\xa4\x8a\xee\x23\x3c\xf1\x39\x17\xb3\xe2\xe4\xe4\x9c\xd6\xfa\x13\x2d\xbf\x4e\x2c\x74\x82\x2b\x29\xbc\x82\xb2\x4e\x80\x11\x93\x40\x80\x1e\x5d\xd8\xa9\x92\x32\xa5\x97\xf8\xda\x62\x54\x16\xec\x8c\xd2\xa3\x89\x8a\x63\xa9\xa5\x8a\x11\x72\x30\xec\xf9\x11\x0d\x9e\x6d\x5d\xe2\x58\xb7\x3e\xd6\xa4\x4c\xfa\x4d\xc5\x2a\x2e\x53\xdb\xac\x51\x06\xbc\x3c\x61\x2b\x67\x61\x33\x57\x8b\xaa\x3b\x17\x23\x2c\xb1\x19\x92\x93\x39\xeb\x11\xac\xe9\xbe\x05\x18\x7f\x6c\x56\xfc\xeb\x39\x19\xeb\xed\x47\x75\x6d\xaa\xb0\x4d\x15\xb6\xa9\xf1\x23\xd2\x4d\xa9\x4c\x53\xa2\xc3\x07\xdc\x69\x7a\x4d\xa9\x53\x71\xcd\xa8\xa0\x19\x51\xb7\x36\x3f\x57\xcf\x73\xf0\x96\xa9\x52\x95\xc5\xb1\xfe\xd7\x14\x36\x78\xf0\xd6\x26\x3b\xda\x6d\xa5\xf6\x34\xb8\x0b\x37\xd2\x24\x43\x79\x91\xa1\x24\xd9\xbf\x11\xb7\x5c\x73\x6b\x9d\xc5\x91\xf9\xeb\xef\x3b\x81\x3d\x10\x2a\xa5\xdb\x76\x8c\x57\xe6\x00\xac\x06\xce\x6e\xbb\x8a\x95\x8a\x28\x68\x49\x4c\xd8\x77\xa4\x68\xca\x62\x25\xbe\xac\xef\xaa\xa4\x54\x46\xc6\xa5\x0c\x02\x7f\xda\x42\x10\x94\xdf\x04\xbd\x43\xc6\x1b\x1d\x6c\xaa\x49\x99\x5e\x77\xbf\xa9\x3a\x03\x24\x4c\x63\x0f\xe1\x6f\x76\xca\x7b\x01\x29\xe1\x0b\x93\x50\xf7\xce\x24\xb7\xff\x7d\x7f\x8b\xe1\xa2\x6e\x6b\xa9\xec\x0a\x0d\xd5\xc3\xd1\xc8\xd3\xac\xd3\xe0\xf6\xd7\x5c\x70\x9e\x82\x7b\x6a\x8c\x8c\x07\x25\x5f\x53\x7b\xae\x9e\x4b\x1f\x59\x94\x08\x0e\x4e\x05\xc4\x78\x17\xe0\xc4\x95\x6e\x64\x9d\x9c\xb0\x33\x7a\x24\xdd\xd9\xc4\x68\xbd\xeb\x2d\x01\x15\xb0\x51\x07\x7b\x47\x6d\x1e\x5e\x67\x60\x39\xac\x4c\x62\x95\xe6\xb9\x04\x80\xa9\x40\x31\xcd\xcf\x3e\xf3\x5e\x07\xda\x4d\xd5\xb6\xa4\x80\x65\xb1\x51\x84\xda\x0f\x41\x31\x11\x44\x43\x9b\x6f\xe6\x6d\xf7\xfc\xb1\x29\xeb\xbb\xe4\xbf\xe6\x73\xb6\xce\x1b\x95\x3c\x9b\xcf\x3b\x0d\xff\x9f\xe7\x73\xb3\xe5\xae\x84\x16\x8a\x43\x5d\x9c\x63\xf9\xd4\xc9\x01\xb6\xb8\x13\x33\x54\xd6\xb6\x0a\xc9\xbe\x60\x39\xf7\x56\x78\xd9\x75\xb7\xb7\x81\x06\x0a\x75\xc9\x14\x3d\xaa\x06\xc5\x17\x68\x08\x64\x63\x15\x06\xa4\xb0\x7f\x83\x79\x88\x59\x83\xa9\xe1\x2b\x04\x5b\x89\x7e\x87\xb6\x03\xaf\xf2\x22\x4a\x8f\x0c\x14\x46\x64\x39\x97\x22\x4b\x9e\xf1\xa6\xe2\x11\x42\x73\x02\x84\xa2\x96\xe2\xb7\x0a\xf1\xd5\xc5\x8a\x2b\x83\xea\x22\x56\x8c\x7c\x8c\xfa\x03\xbe\xe5\x91\x8a\x2c\x44\x8e\xe1\xfd\x60\xdb\x19\xfc\xf8\x9b\x7d\xcf\x5d\x4e\x7b\x63\xe3\x7d\xa3\xd8\x4a\x71\x83\xfa\x9d\x2b\x25\xbf\x06\xa7\xde\xa3\x40\x60\xd2\xe1\x1f\xbd\xaf\xbf\x84\x4f\x0f\x5e\x88\xb3\x0e\xf1\xe3\xdf\x60\xb4\xec\x3e\x3a\x44\x28\x3b\x28\x57\x78\x27\xd0\x1d\x80\xf5\x16\xfe\xd9\x04\x78\x21\xfe\x1b\xff\x3c\xd3\x7f\xe8\xc0\xed\x37\xc0\x2f\x58\x5c\x82\x66\xd4\x5e\xfd\x13\xc3\x2c\x11\x38\xc7\xeb\x09\xc4\xb1\xfa\xe6\x3a\xba\xe7\xdf\x07\x37\xe9\x1e\xa6\xba\x5e\x98\xad\x5d\xd7\xe2\x46\x25\x8e\xde\xc2\xb3\x39\xc0\x65\x9c\xcb\x05\x84\x05\x2d\x01\xfc\xeb\x45\x67\x91\x56\xf8\xa6\x79\x15\x2f\x9c\x45\x9a\xa2\x74\x51\x25\xa4\x47\xe9\xa2\x98\x9c\x46\x11\xd5\xd5\x29\x3a\x4b\xb1\xc2\x9e\x9a\x31\x09\xcb\x48\xa0\x13\x30\x7a\x00\x10\xf5\x8b\x6a\x05\x15\x35\x2f\x0d\xf5\x39\xc8\xb9\xb6\xfa\x09\x42\xd1\x3f\xf6\x69\xf4\xd1\xc4\xd7\x1f\x8e\x71\x6c\x06\x29\xf2\xde\x02\x00\x8e\x1d\xd0\x66\xd3\x33\x43\xf5\xc8\xbf\x3c\x1b\x50\xdc\x18\x3a\x60\x13\x97\x6b\x49\x08\xec\x52\x47\x87\x5c\xff\x02\x4d\x69\xb1\xd8\xe9\xfa\xb4\x9c\x37\x60\x3d\x47\x27\x4c\x5e\xa4\x15\xb0\xfd\x0c\xd1\x6b\x24\x0c\xca\x9b\xc1\x3d\xac\xcf\xcb\x0d\xa2\xb5\x5a\xf4\x7a\x52\x9a\x1b\x45\x2f\x2d\xd4\x56\x3a\xd8\xbb\xe1\xc8\x41\xd6\x51\x53\xe6\xd3\xf7\x77\xd3\xd3\x6b\x3a\x2a\x31\xac\x94\x31\x0e\x74\xdd\x76\x04\x41\xe1\x91\x35\x60\xa4\xec\x0d\x5d\xe7\x5c\xa0\xe5\x4d\x9d\x5e\x9e\x31\xf8\x17\x94\x5f\xc6\x4c\xd3\xa4\xb2\xc8\x61\xa4\x98\xf7\x35\x65\x85\xf5\x32\xdc\x9a\x6b\x5b\x44\x6a\xc2\xf5\xac\xb5\xa0\x0d\x2d\x22\xcd\x01\xf9\xdc\xc6\x44\xcc\x5b\xfd\x46\x07\x79\x2c\x6a\xaa\x5b\x2e\x88\xe8\x11\xfc\xa3\x9f\xe0\x71\xe4\x5d\x96\x3e\xa8\x00\x61\xc3\x9f\xd4\xc6\x10\xc5\xa7\x42\x2a\xf3\x06\x00\xc6\x23\xcf\xdc\xfa\xda\x4f\x21\xbc\xd8\x10\x74\x21\x92\x31\x17\xe0\xb0\x60\x21\x8d\xe0\x76\x08\x2e\xdc\x5f\x42\xd1\x18\xe0\xe3\x4b\x68\x0f\xa3\xf8\xe3\x4b\xa8\xe7\xa9\x97\x62\xf2\xaf\x8b\x7b\x70\xbb\x11\x59\x7f\x29\x1d\x94\xef\x0f\x2e\xa5\x07\xd6\x48\xbd\xc5\xd8\x02\xe0\x26\x5f\x98\x10\x6b\xec\x19\x2c\x80\x9f\xbe\xc0\xa1\x05\xe1\x27\x2e\x66\x3a\x32\x10\x1c\x6f\xed\x62\x95\x5f\xa1\xd1\xf6\xb8\x39\x4b\x6f\xd1\x8b\x54\x7e\x05\x46\xc3\x9e\xe3\xfb\x02\xec\x0a\xbf\xa9\xb4\xd8\x7c\x36\xa7\xc9\x56\x59\x44\x43\x8b\x71\x42\xdb\x76\x33\x0c\x04\x74\x38\x29\xd6\x8b\x79\x72\x72\xa6\xd7\x2b\xd3\x3a\xc9\xe3\xba\x96\x49\x74\xa3\x36\xe5\xeb\x5a\x46\x0c\x06\x67\x82\x63\x54\x7f\x18\xe9\x6e\x0b\xa4\x04\xd8\x60\x3c\xc3\x10\x2b\x3c\x1c\xa8\x92\xf0\x3d\xae\xbb\x7b\x7f\x15\x02\x0f\xf8\xa8\x03\x36\x45\x68\x29\x86\x92\x60\xdf\xe4\x64\x24\x6d\x15\xc7\x44\xf5\x3e\xfe\xd4\x5c\x7a\xe7\x24\xd3\x4b\x11\x8b\xa4\xc8\x57\x6f\xaa\xf2\x21\x62\xd1\x26\xbf\xff\x16\xa6\x47\xc4\xa2\xa5\x28\x4b\xe3\x4c\x65\x9e\x7e\x30\xf6\x0d\x2c\x92\xf5\xdd\xc5\x36\xaf\x74\x78\x5d\x9a\x5f\xbb\x46\x7c\x97\x6f\x23\x16\xad\x65\xbe\x11\x5f\x18\x3b\x56\xeb\x82\xf1\x6a\x85\xc8\xd6\xfe\x59\x4c\x0b\x24\x6e\x00\x03\x6a\x47\xb0\xcb\xc3\xe1\xb2\x6f\xe5\x98\xaf\x56\x2f\xa1\xfb\x46\x6c\xd8\x7c\x4c\x33\xb4\x67\xdc\x90\xce\xd8\x61\x64\x3a\xeb\x13\x8e\x61\xf4\xb4\xe9\x12\xe1\x9d\x7e\x15\x7b\x30\x87\x70\x6a\x60\xb5\x88\xe2\xb0\x8a\x39\x70\x75\xb3\x95\xc1\x7a\xb0\xb3\x6c\x79\x05\x7f\x50\x44\x82\x85\x82\x16\x39\xbc\x3b\x83\xe8\x38\x9a\xde\x6a\x79\x79\xaa\x17\x57\x43\x67\x30\x3f\xaf\xb9\x4a\x73\xf8\xba\xea\x4c\xe8\x8f\xa3\x69\x0d\xd1\xc0\x65\xbf\x9a\x72\x7c\x3a\x2a\xf4\x34\x6c\xf8\x2d\x90\xdd\x1a\x73\xb5\xc1\xd2\xcb\x1a\x07\xfd\x84\x40\x12\xc6\xe5\xf4\xff\x45\xdb\x79\x49\xff\x4e\xf3\x4d\x06\xe0\x07\xc1\x49\x52\x2f\x09\xb6\xfc\x51\xf4\xff\x4d\x83\x43\x7a\x63\xad\xfe\xf9\xc9\xd9\x39\xad\x78\xe5\xb0\xa4\xdc\x2b\xf6\xbf\xe8\x06\x3c\x69\xf7\xbb\xc1\xbb\x8d\x35\x3b\x1f\xab\x3c\xeb\x62\x7d\x76\xeb\xef\x97\x56\xc3\x37\x50\x4a\xa8\x38\xae\x16\xc8\xb4\xef\x8d\x6a\xa3\x92\x08\xba\x8a\x26\x70\x53\x3b\xd2\xb9\xb2\xeb\x5c\xaf\xc0\x41\xe7\x4a\xd7\xb9\x00\x5c\x4d\xf7\x07\xa8\x74\x71\x7c\xa1\xb5\x43\xb1\x26\x15\xc2\x03\xf2\x39\xab\xb9\xc9\x82\xe5\xd8\xc5\xe7\x8a\xe7\x69\x01\x9d\x52\xcf\x6e\xf2\x06\xf3\x54\x74\x51\x07\xc5\x56\x34\xa9\xbb\x8a\x29\xa3\x2c\xec\x80\xd6\xc1\xbc\x1f\xdb\x04\x3d\x53\xf4\x18\x72\x03\x31\x8e\x3d\x82\xb2\xe8\xf2\xd2\x6d\x02\x97\x97\x91\x43\xe0\x6e\x02\xd9\x66\x10\xe4\x3a\x57\x19\x05\xaf\x58\x44\x51\xe2\xab\x88\xc3\x74\x41\x0c\xa2\x08\xb4\x62\xaa\x35\x3e\x05\xf9\xdc\xe8\xc5\xf4\x50\x13\x7a\xa8\xd9\x91\x5e\xd9\x91\xde\x1f\xdf\xc4\x0c\x70\x18\xff\x38\xc8\xdd\x58\x56\xc0\xd2\x69\xa9\x14\x8f\x1c\x79\xa2\x91\x22\xaf\x14\x3f\x7d\x2f\x4f\xaf\xc3\x73\xe9\x6d\x5e\x1e\x5a\x1f\x2c\xea\x8b\x53\x75\xf7\x26\xf3\x82\x54\x5c\x8f\xa8\x31\xd5\xa6\x91\x7c\x8a\xa3\x01\x20\x91\x5e\xdb\xf0\x40\x54\xf0\x6a\x11\x0e\x31\x3b\x08\x6f\xf3\x92\x50\x9a\x08\xba\x28\x78\x14\xb9\x8b\x18\x37\xe6\x8b\x45\x31\xd5\x2f\xc2\x49\x52\xa0\xb5\x0c\x5a\x7d\x14\x63\xd8\x54\x46\xb7\xa7\xbb\x4f\x4c\xa3\x68\x4f\x29\x03\xb1\xea\x36\x2f\x3d\x43\x68\x43\x80\xd3\x0f\x1e\x07\x5c\x03\xf3\x1a\x23\x67\x29\x1f\x99\xb9\x1b\x76\x05\x8b\xe0\x60\x05\x9e\x51\x90\x14\x9e\xb3\x0a\x3d\x46\x68\x52\x2c\xc2\x32\x14\x23\x05\x28\x3e\x96\xfb\xf5\x30\x77\x22\x39\x5a\x81\x77\x79\xd3\x85\x1c\x48\xdc\x44\x72\xc3\xeb\x47\x17\x0e\x0a\x86\x5c\x01\x35\xbe\x39\xb6\x4a\xdd\x58\xd2\x12\xbe\x05\xf2\xae\x2d\x5d\x62\x49\xaa\x3f\x4d\x02\x34\xe5\xf1\xa1\xb1\x27\x60\x72\x7c\xab\x88\x41\x0c\x13\xe0\xea\x85\xe2\xcc\x81\x54\xcd\x10\xb5\x8c\xc7\x0d\x08\xd8\xa1\xa4\x94\x73\xa3\x64\x3a\x31\x77\xcd\x06\x8d\xb5\xe1\x39\xa8\x07\x12\x20\x98\xc9\x17\xf5\xf4\x2c\xb1\x86\x94\xa8\x94\xe4\xf5\xf3\xf9\x62\x97\xe4\x8b\x1a\x4c\x41\x77\xe8\xd1\xb1\x26\x84\xc0\x29\xd6\xb1\xb7\x68\xc9\xb1\x02\x8a\xe2\x38\x9e\x48\xc7\x06\x13\xc7\x64\x22\x7d\xc1\xcc\xbe\x68\xdb\xc9\x0b\xe2\xbf\x61\x91\x25\x6f\x8e\xa8\xc5\x9a\xbb\x24\xd2\xcc\x00\x96\xbb\xfd\xf2\xc8\xa8\x29\x95\xdb\x5f\x9a\x81\xc7\xd4\x80\xa5\xde\x6f\x1c\x3d\x2b\x3e\x08\xeb\xe8\xe1\x9b\x8e\xe6\x27\x27\xe7\x94\x80\xd9\x68\xee\xd5\x8c\x77\x50\x42\xdd\x40\x34\x09\x22\x57\x3d\x65\x35\xac\x38\x70\xc7\x34\x99\xbb\x1e\x95\x80\x4d\x1d\xf4\x05\x3f\x39\xa3\xac\xde\xef\x03\x99\xd4\x28\xd8\x3a\x8d\x5e\x4f\x56\x0c\xa6\x5f\x36\xd4\x0d\x40\x7b\x0d\x5c\x58\xdc\x89\xd5\xa2\x1e\x7a\xf5\x20\xc2\xb6\x2c\xac\x95\xfa\xc8\x60\x75\x88\x70\x04\x08\x73\x04\x0c\x97\x83\xab\xc8\x00\xf7\xd7\x8c\xeb\x45\x54\x57\x51\x62\x55\x84\x14\x8e\x1a\x06\x55\x9d\x47\x75\x65\x01\xd6\x8b\xea\x18\xf9\x75\x2f\xcd\x99\xdd\xbc\x80\x3f\xad\xc5\x5d\xbf\x2a\x77\x92\x3e\x39\x65\x77\x61\x41\xc6\x58\x09\x8e\xdc\xc4\x34\xd8\x83\xec\x71\x00\xb3\xae\x67\x8d\xcf\x6b\x6b\x6c\xa1\x90\x4a\xef\x81\xa7\x45\xdb\x56\x19\xbb\xe6\x6b\xb3\x2a\x33\x03\x2b\xbc\x40\xee\x94\x44\xb1\x2b\xef\x9d\x43\xd1\x86\x08\x1d\xbb\x55\x47\x85\x97\xa4\x48\x06\xc6\xb7\x7c\xc7\x0b\xae\x93\x67\xfa\xe0\x5b\xf4\xbc\x74\xfd\xe7\xc9\xa5\x39\xe9\x5d\x4f\x07\x24\x95\x7a\xa8\x5d\x77\xb2\xdb\x0c\xa4\xb6\x38\x26\x57\xfc\xda\xcb\x95\x5d\xf3\xab\x19\xda\x1f\x50\x76\x65\xe8\xf8\x28\x5b\x72\xef\xd3\x04\xc5\x6c\xdd\x57\xd3\x6b\xbd\x09\x28\x9f\x59\x47\x05\xcc\x3a\xd7\x6c\xc8\xfd\x1b\xc7\x8a\xd2\x8e\x1d\x96\xd7\x8b\x67\xc9\x67\xcc\x6b\x05\x7e\xd5\x31\x3b\x32\xe5\x91\x7f\x71\xe5\x23\x93\x8f\xf1\xf9\x5d\xfd\x2e\x9f\x1f\x2a\x8a\x94\xe5\xee\x32\x00\xa1\xca\xb0\x97\xe8\x5d\xc6\xb2\xa0\x14\x94\x49\x6e\x57\xf2\x54\x65\x89\xbf\x0e\x48\x06\x4a\x83\xd5\x80\x04\xee\x1a\x91\xde\xea\xb6\x9d\xac\x6c\xeb\x1b\xb6\x36\xf7\x6c\x29\xc5\x98\x34\x2b\xd7\xa4\x8e\xe3\xc9\x6a\x66\x49\x87\xe2\x78\x72\x0b\x56\x60\xc8\xb9\xb8\x0a\x48\x0e\xdb\xf6\x9a\xd9\x7e\x2e\xa7\xd7\xc0\x7f\xc6\x7d\x20\x33\x7a\xde\x9c\xf7\x42\x1e\x70\x05\x6c\x28\xdb\xf1\xe6\x68\xc7\xb5\x04\x11\x82\x67\xa1\xb7\xa7\x89\xb7\xf3\xa1\xb4\xda\x76\x67\x92\xfa\xb9\xa8\x56\xf5\x1d\xa0\x95\xd8\xc3\x01\x69\xf8\x03\x9c\x0e\xf4\x2a\xae\x0e\x52\xc7\x6d\x79\xc3\x70\x1e\xf0\xfc\xf3\xb3\x45\x99\xac\x1c\x51\xa3\xae\x0e\xb9\xb1\xa4\x7b\x03\xc6\x3d\xfc\x2a\xb3\x14\x43\x8d\xa5\x01\x04\x9b\x02\xcb\xaf\xda\x30\x09\xf4\x9f\xcb\x38\x6e\xd2\x65\xd6\xbd\x89\xe3\xaf\x48\x43\x41\x13\x60\xfa\x3b\xf8\x04\xf5\xa2\x8e\x6e\x48\x0d\xb8\x52\x3a\x45\x0b\x16\xfe\x5a\xf7\xab\x1a\x21\x60\x21\xb4\x6d\x57\xce\x06\xc5\xd8\x08\x74\x01\x26\xd3\x87\xd9\x16\x2e\xd8\x24\x6d\xdb\xc9\x57\xa4\xa0\x6d\xbb\x8c\xe3\x0d\x29\xd2\x6b\x68\xc0\x5b\x94\xc3\xc8\x8e\x17\x58\x0d\xa2\xff\xc2\x18\xec\x88\x3f\xdd\x8c\xe6\xd7\xec\x50\x8b\xc7\xf1\x76\x48\x56\x7a\xcd\xee\x14\x65\x3a\x2f\x42\x3f\xfa\xe5\x18\x07\x12\x7e\x3c\x2c\x83\x99\x3f\x3b\x5b\xd6\x1d\xc0\xfe\x39\xba\xba\xc6\x10\xb0\x1c\xb0\xd3\x70\xeb\xae\xb7\x66\x30\xc9\x50\x8b\xdf\xe3\xcb\x99\xef\xe9\x51\x9f\x1d\xb9\x42\xa4\x40\x45\x07\x58\xae\x43\x1e\x2d\x4f\xe7\x79\xe0\xc6\x27\x4c\x5b\x17\x54\x59\x44\x4d\x13\xf8\xf5\x80\x05\x3b\x34\x0e\xd6\x12\xbf\xe7\x20\x7e\x3c\x96\xa6\x04\x0c\x59\x7f\x6f\x43\x2f\xca\x3f\xc0\x24\x82\x19\x87\x17\xb3\x66\x35\x32\xed\x46\x14\x73\xc4\x4c\x21\x0d\x26\xee\x7a\x3d\xfe\xed\x11\x22\x12\x83\xf9\x03\xbe\x81\xe1\x82\x81\x02\x7a\x67\xb2\x57\x01\xf7\x77\xdb\x56\xc3\xa1\x27\xb0\xd6\xcc\x8f\xcb\x48\x01\x78\x24\x67\x00\x95\x8b\x84\xa3\x7f\x3c\xe3\x93\xb3\xa3\x62\x11\x24\x5f\xd0\x84\x54\xa3\x63\xb9\x2b\x8d\x31\x03\xd4\x09\x80\xbb\x37\xb2\xf6\x2b\x2e\x66\x65\xbd\x44\xf7\x8e\x7b\xff\x96\x9d\x5d\xe8\x83\xe0\xe2\xf4\xe8\x72\x06\x8a\xd7\x5f\xbe\xfb\x76\x88\x4b\x08\xda\x1b\xd5\xb6\x03\x8b\x22\x47\x8f\xa7\x07\x2d\x40\x6c\x4a\x0e\x23\x5f\xcc\xbe\x7c\xf3\xdd\x0f\x3a\x41\x49\x31\xe1\xd7\xb2\xde\x5c\xc0\xe7\x20\x49\x88\x7b\x75\x7a\xbf\x29\x23\x6a\xf0\x33\x2b\xfa\x28\x1d\xd4\xb1\x43\x3a\x9c\x00\xba\xa0\xb9\x9f\x6d\xbe\x78\x78\x97\x5f\xeb\x63\x0f\x89\x20\x49\x29\xa4\xac\xa5\x67\x8e\x7c\x39\x83\x10\x12\x7d\x53\xdd\xe6\x65\xb1\x3a\xfe\xe5\xbb\x6f\x93\xe3\x68\x0a\x04\x27\xd0\x12\x6f\x74\x6d\xd3\xf7\xd9\x93\x53\xf6\x01\x4e\xc0\x8b\xf7\xd5\xe9\x35\x7b\x61\xc4\xae\x66\x77\xb5\x29\x94\xb9\x44\x69\x8b\x4d\x7e\x2d\x5a\x29\x1a\xa1\xda\x75\x51\x0a\xb8\x55\x79\xf7\xd1\xeb\x97\x0f\xe2\xe1\x5a\x54\xd4\xbf\x6a\x79\xa9\x7a\x46\x6a\xa3\xbe\xd6\x66\xbe\x78\x0e\xf7\x0a\xcc\x50\xda\xf6\x8d\xd5\x75\xd3\x85\x9e\x24\x05\x4d\x74\x8a\xd3\x28\x8d\xa6\x43\x1e\x12\xa7\xab\x2f\x16\x2a\x89\xb4\x98\x90\x45\xac\xb0\xd4\x00\x96\x64\x5e\xb6\xad\xfd\x72\xc2\xf9\x95\xce\xdf\x58\xfe\x87\xb6\x57\x8a\xba\xac\x0a\x48\x49\xa5\x45\x86\x89\xc1\x70\xc9\x37\x7c\xfc\x2a\x10\xa0\x38\xc7\x66\x36\x50\x36\x2a\x42\x13\x75\x54\xa5\xd6\x52\x29\xe3\xa2\x5a\xd6\x2b\xf1\xd3\xdb\x6f\x5e\xd6\x9b\x6d\x5d\x21\x83\xe1\x34\xe2\xd1\x74\xe4\x8d\x7f\x14\xa5\x7b\xd0\x2b\xe1\x49\x9e\x5a\x44\x9d\x61\x0b\x03\x24\xd9\xec\x9f\xbf\xed\x84\x7c\xd0\x52\xa5\xde\x2b\xca\xbc\xa8\x9c\x99\xa0\xed\x80\x00\x98\xa2\xc0\x03\xba\x96\xd0\x58\x77\x54\x77\x2d\xe9\xf9\xef\xbc\x54\x44\x32\xf0\xd9\xd1\xdd\xe6\x4e\xb3\x46\x76\x8b\x23\xda\xb3\x98\x6c\x84\x2c\xf2\x72\x1c\x37\xce\x34\x2d\x31\xaa\x27\x13\x11\xeb\x41\x01\x1a\xc3\x0f\x1a\x03\x9e\x1b\x01\x00\x46\x93\x0c\x73\xff\x8e\x7a\x2a\x61\xa6\x55\x77\xfa\x16\x0b\x5f\x20\x34\x6a\xc3\x3d\xb5\xa6\x9b\x83\xe4\x9c\x82\x24\x70\x14\xd7\xcd\xa5\xdb\xd8\xa8\x6f\x8a\x86\x44\x89\x3d\xf3\x46\x34\x8e\xdf\x99\x01\x1d\xe8\x51\xb4\xb0\xf0\x42\x75\x80\xbf\xf8\x76\x69\x01\xf6\x27\x37\x0e\x0c\x98\xee\x69\x58\x39\xdf\xaa\xcb\x57\x19\x85\x74\x5b\x68\x04\xd0\x53\x12\x49\xba\x40\x05\x91\x1c\x51\x10\x3d\xea\x8a\x24\x28\xa0\x1b\x42\xce\x8e\x5b\xe0\x83\x62\xd1\x7b\xf9\xbe\x8a\xf4\xc6\x97\x8c\x44\x95\xe3\x51\x11\x4b\xd6\xd1\xf1\x28\x7e\xfa\xa7\x67\xf3\xd3\x6b\xf6\x56\xf1\xd3\xff\x33\x7b\xfa\xe4\x94\xfd\xa0\xf8\x29\x49\x17\x71\x46\x2f\x79\xfa\x8f\x38\x7b\x7a\xca\xfe\x09\x6b\xce\xec\xe9\x82\x26\xe9\xf1\x7b\x95\x3d\x25\xe9\x3f\x74\x8a\xd9\x53\xfa\xe4\xf4\x7a\xc3\xbe\x34\x6b\xd2\x57\xaf\xde\xb5\x5f\xbf\x7a\xf1\xa5\x3e\x24\x7e\xaf\xc3\xde\x9f\xbe\x3f\x3d\x65\xdf\x28\xfe\xb8\x67\xdf\xc2\xbf\xaf\x15\x8f\x9e\x9e\x46\xd6\x95\x34\x7a\x1a\x51\xf6\xaf\x11\x83\x9c\xdc\x07\x88\xfd\xda\xbf\xbb\x0d\x6d\x8f\x86\x5b\x82\x33\x32\xd5\x69\x1f\x59\x7f\xd6\x39\xab\xfb\xd7\xe1\xc1\xe5\x2e\x5e\x3a\x48\x43\xca\x5b\xf1\xda\x28\x83\xa3\x69\xc4\x39\xaf\xd2\x79\xb6\x20\x15\xaf\x1c\x8a\x4a\xdb\x46\x4f\x23\x86\x2e\x6f\x02\x5c\x3d\xd2\x8c\x3a\x4b\x73\x49\x69\xd2\x7f\x07\xe7\x00\xe9\x33\xc1\x7c\xd1\x5f\x99\x11\xd8\x43\x70\xce\xbf\x55\x5d\xed\x73\xd2\xe0\xfb\x9d\xc3\xe9\x48\x9b\x0c\xed\x29\x71\xcd\x48\x1b\xe3\x91\xd4\x0d\x49\xf3\x49\xc9\x1b\x63\x76\x7c\xc8\x28\xb7\x6c\xdb\xba\x6d\x8b\xb4\xcc\x16\xf5\x62\x42\x76\xbc\xa4\x46\xbf\x96\x10\x05\x84\xcf\xfa\x4c\xd1\x19\xd1\x97\x94\xe5\xfa\x9f\xc9\x19\xdd\x53\xb6\xb3\x9b\x65\xee\x47\x4e\xe7\x99\x96\xc7\x0b\xf0\xbf\x8a\xe3\x1c\xba\xb9\xab\xf7\x4f\xaa\xe7\x8d\xc8\x2f\x67\xf9\x3f\xf3\xfb\x0b\xa1\x54\x51\x5d\x37\xb3\x75\x99\x2b\xe3\x35\xea\xa8\xbf\x25\x6e\x08\x9d\x4a\x33\x95\x99\x96\xec\x8b\x54\x02\xf9\x6c\xdb\x92\x8a\x3f\xee\x29\x4d\x65\x86\xa4\xc6\x1e\x7b\x99\xef\xda\x2a\x58\x45\x99\xd8\xff\x4b\xc1\x75\x2d\x7f\x85\x7f\x7d\x23\xa4\xa5\x2a\x6e\x45\x32\x67\x65\xde\xa8\xef\xea\x55\xb1\x2e\xc4\x0a\x5c\x60\x55\x0e\xae\xb0\x7e\x59\x93\xc7\x9d\x2c\x13\x9b\x08\x48\xd9\xd1\x57\xaf\xde\x45\xac\x68\xbe\xad\x97\x79\x99\xa0\x09\xc4\x55\xbd\x53\x6d\xbe\xdd\xea\xff\x4f\x1a\x55\x4b\xbd\xb3\xcf\xa6\x27\x90\x67\x53\xd4\x15\x6c\xf0\x7a\xaf\x6f\xef\x8a\x15\xd0\x75\x3e\x39\xc5\x15\xe7\x95\xf1\xa7\x5f\xd6\x25\x65\x48\x0b\x03\xd4\x81\xb2\xd6\x82\x19\x90\x4c\x4c\xe6\x2c\x6f\x1e\xaa\xa5\x61\xf5\x55\xa2\x52\xc0\xfc\x16\xe9\x43\x52\x81\x62\xd7\xe9\xfd\xc9\xdd\xdd\xdd\xc9\xba\x96\x9b\x93\x9d\x2c\x71\x5f\x5b\x9d\x1f\x2f\x6f\xb4\x28\xa3\xf8\x4f\xef\x5e\x9f\xfc\x77\xc4\xb4\xb8\xb7\x55\xc6\x65\xef\xb5\x42\xca\x05\x14\x97\xb6\x7a\xc3\x8a\x10\xae\x1d\x43\xf4\xcf\x88\xdd\xeb\xe7\x20\xa7\x4d\xc9\x8e\x9d\x84\xc5\xfe\xd9\x00\xa6\xa6\x17\x41\x87\x98\x18\xff\xcc\x6f\x73\x43\x9d\xb1\xb7\x65\x6f\x92\x47\x9d\xe6\xe9\xfb\xab\xfb\x4d\xf9\xfe\xea\x14\xb3\x3c\x7d\x7f\xa5\xff\x9e\x62\x7a\xa7\xef\xaf\xf4\xdf\xf7\x57\xa7\x7b\x26\x45\xb3\xad\xab\x46\xbc\x2e\x44\xb9\x32\x1f\x47\x36\xf0\x97\xef\xbe\x8d\x4c\x2d\x6c\xd0\x3b\x71\xaf\x6c\xb1\x6c\xd8\x5f\x2e\xde\x7c\x8f\x25\xb8\x15\x52\x19\xa7\x45\x28\x62\x94\xa0\xd8\x88\x42\xe3\x31\xd4\x59\x37\x34\x3e\xea\x54\xa2\x44\x7f\x8d\x62\xa6\x09\xd6\x15\x4f\x3a\x91\x76\xcf\xbc\x21\x8d\x43\xc6\x76\xd5\xbd\xd2\x07\x31\x37\xa8\x76\x07\x8c\x4a\xd4\xe2\x27\x45\x60\xe2\x84\x73\x85\x32\x45\x93\x9f\x14\x09\x43\x81\x2d\x43\x07\x74\x4c\x35\x5f\x2b\xf2\x8d\xa2\x10\xf8\x4e\xe6\x55\xb3\xad\xa5\xd2\x81\xdf\x9a\xc0\x9e\x7f\xf5\x98\x92\xa9\xc7\x09\x07\x56\x9d\x06\xd1\xa1\xe7\xce\x88\x4a\xbc\x6e\x5a\xef\xb6\xe4\x11\x1c\xc5\x37\x7c\x3b\x33\xd5\x6e\xdb\x2d\xbb\xed\x1e\xe3\x98\xf8\x10\x1d\x1b\x23\x2c\xd1\xc5\x25\xd9\xd0\xc4\x6a\x11\x1f\x02\xe7\x7f\x76\xcd\x2f\x67\x2f\xf3\xb2\xbc\xca\x97\x1f\x1a\x12\xd5\xd5\x52\x1c\x6f\xc4\xa6\x96\x0f\x11\x65\x57\x7c\x3b\x6b\x54\xae\x76\xcd\x4b\x20\x54\x7f\xdc\xb3\x3b\xbd\xc2\xbe\xd2\xff\xdc\xf3\x08\xc9\x46\xc5\x2a\x62\x17\xfc\x51\x8a\x7c\xf5\x70\xa1\xf4\xc1\x1a\xc8\xbd\xdf\x9a\x71\xf1\xb5\xc8\x57\x63\xe4\xd1\x47\x08\x85\xad\x0f\x26\x48\xbb\xd2\xf0\xc7\xfd\xb9\xe2\xff\x54\xe8\xa7\x9a\xd3\x73\xda\xa4\x6a\x40\x0f\x00\x04\xeb\x9c\x1c\x7c\x15\x00\x2d\xa8\xf4\x59\x46\x8f\x14\x6f\x52\x31\x12\x75\x1f\xc8\x17\x0a\xe5\x0b\x65\x44\x3e\x76\xac\x65\xbe\x6b\xa1\x5e\x94\x65\x58\x97\x31\x90\xe2\xa5\x31\xf7\x02\x2d\xfe\x5b\x84\xcb\x18\xd4\xdc\x1b\x8d\x98\xe5\x12\x7c\x0a\x5e\xf5\x0b\x97\x8d\x04\xb5\xad\x60\x77\xa9\xc8\xb8\xb9\xe5\xdc\xb3\xfa\x56\x48\x59\xac\xc4\x77\xc5\x06\x19\x2b\x0f\xea\xb6\x97\xe0\x67\xb7\x31\xf1\xb8\xb0\x29\x74\x7d\x3b\xde\x3d\xe0\xd5\xbe\xa4\x17\xd6\x1d\x4f\xa4\x17\x66\x3c\xf8\x4e\x1e\x0a\x05\xe8\x2b\x7d\x56\x4f\xf5\xbf\x4c\xa4\x2a\xcb\x42\x22\x8c\xfc\x4a\xcf\x96\x11\xfb\x98\xb6\xbd\x77\x9b\x72\x1c\x17\x33\x88\x48\x14\x65\x6f\xc8\xdc\xde\xe8\xee\xe1\x8c\xf0\xe0\x90\x18\x2e\x28\xdb\xce\x76\xb2\xe4\x84\xe8\x49\xa0\x7f\xb6\xad\xd9\x41\xe8\x34\x8a\xa8\x93\xdc\xbe\x57\xcc\x5b\xfd\xa7\xd1\xe9\x69\xa4\xbf\x45\x4c\x9f\xd9\x46\xa8\x9b\x7a\xd5\xb6\xd2\xf0\x7e\x6d\x5d\x08\x46\x61\xdb\x6e\x47\xe6\xa4\x7b\x00\xd1\x85\x1e\x96\x85\xa2\xc8\x7a\x8b\x6e\x67\x4b\x59\x37\xcd\x97\xf5\x26\x2f\x2a\xfa\x38\x02\xf2\xad\xc5\x34\x7d\xec\x2e\x71\x33\x85\xca\x30\xf3\x80\x7f\x58\x90\x08\xff\x57\xaf\x3e\x53\xbd\x0f\xd7\x8d\x9a\x20\x6a\x81\xf7\xa2\x84\x70\x73\x3c\xff\x40\x1f\xc3\x74\xf4\x9a\x59\xac\x4d\xad\xe2\x78\x3b\xf3\xf6\xc3\x8e\x09\xcf\x49\x39\x36\x9e\xf9\x80\xdb\x33\x0e\x3e\xea\x36\x95\xf9\x0a\x90\xfa\xf2\x92\x52\xf6\x85\x5e\x2c\xd9\x96\x49\x76\x41\xd9\xd2\x2a\x19\x2e\x40\x10\xb9\x39\x2e\x2a\xb2\xb6\x5a\x6a\x9d\x35\x6e\xca\x34\x8e\xe7\x5c\x2f\x79\x20\x3e\x4c\xa7\x20\x75\x04\xba\xaa\x08\x56\x43\x95\x4b\xd5\x75\x23\xfe\x09\xc1\xfa\xd8\x16\x2c\x10\x0c\x2b\xcb\xe4\x4b\x73\x2c\xc1\xa8\x94\xd5\xd8\xcc\x6e\x94\xbc\x85\x1b\xd2\xe0\xa3\xc5\x81\x76\x01\x98\x4b\xb3\xe4\xa2\x8c\x80\x74\x71\xee\x26\xe2\x77\x05\x06\xf0\xb5\x35\x8d\x88\x7f\x3a\xba\x33\xc5\xa2\x69\xa4\x25\xdf\x95\x29\x21\x0a\xcb\xd6\x81\x87\x32\xaf\x17\xbc\x62\x75\x7a\x1d\x1e\x76\x17\xd0\x3e\x4e\x39\xb9\x30\x0d\x50\xd3\x45\x14\x47\x49\xb4\x88\xe8\xd4\x74\x9c\xb1\x88\x34\xf1\x51\xfd\xbc\x9d\x2d\xf3\xe5\x0d\x78\x02\xf1\xda\x95\xee\x07\xc5\xa2\x27\x67\x11\x65\xab\xf1\x04\xa3\x4b\x1e\x4d\xef\xd5\x74\x3a\x5d\xd9\xf9\x59\xe3\xcf\x62\x6d\x85\x40\x80\x81\xf0\xa5\xc2\xb4\xce\xe2\xf8\x62\xd6\x5f\x34\x49\xf4\xcd\xfa\xc4\xc6\x39\xb9\x28\xaa\xa5\x88\xd8\xe0\x4b\x50\xfe\xaa\xfc\xfa\x63\x89\x7c\x5f\x57\xe2\xe4\x3b\x3d\x05\xa2\x2e\x36\xa5\xcc\x1b\xf8\x5d\xaf\x1b\x25\x79\xaf\x7f\xa5\xff\x48\xc7\x73\x32\x09\x9c\xbc\x03\x0b\xec\x20\x01\xca\xc6\x3e\x78\x01\x62\x62\xe4\x2f\x31\xe9\x3c\x03\x25\x39\x0a\x90\x69\xf8\x26\x5b\x1c\x7c\x33\xd5\xa7\x03\x28\xb6\x1f\xbc\xd0\x3b\xd8\xf4\xb5\x9a\x46\xe7\xc7\xbf\xf1\xf9\x6c\x7e\x16\x25\x51\x44\x93\x2e\x19\x44\x1e\xda\xce\x6e\x70\x57\xa3\x23\xc5\xbc\xe9\x5e\xa7\x37\x19\x98\x74\x6d\x67\x48\x05\x73\x21\xaa\x95\xc5\x90\xf2\xc3\xf0\x3e\x71\xc3\x2e\xd8\x96\xb6\xed\xd2\xdd\xe0\x5e\x98\xa5\x1d\x12\xb9\xe7\x11\x3c\x45\xec\x1a\x38\x42\xb7\x1d\xe4\x06\xbb\x40\x7f\xe9\xed\xac\xd9\x81\xe6\x54\x87\x00\x0c\xc7\x16\x95\x83\x94\x15\xfc\x0b\x2d\x76\x99\xe5\x05\x64\x88\x8b\x59\x27\x7f\xf0\x33\xb6\x8e\xe3\xdb\xde\xaa\x01\x9c\x36\xe9\x05\xdb\x66\xc1\x82\xb4\x9d\x81\xe0\xaf\x1b\x5e\xa1\x3b\xcc\xe7\x00\x40\xce\x0f\x01\x53\xd9\x7a\x44\x26\xba\x96\x12\xdc\xb7\x14\x17\xf3\x25\x9f\x9c\xb1\x62\xd6\xe8\xd3\xd0\x1d\x7b\x43\xbb\x35\x18\x36\x54\x75\x23\xeb\xbb\xe3\x0f\x47\x6f\xc8\xc9\x19\xfb\x40\xf7\x7b\xd8\x4b\xe1\x29\xfa\xbe\x3e\x76\xd2\xa5\x7f\x82\x7f\x83\xa7\x50\x77\x2c\x05\x01\xf1\x8e\xbd\x62\xf7\x5c\x1e\x2d\xdb\x96\x2c\xf5\x79\x76\x17\xc7\x3d\xdf\x9e\x9d\x6e\x2e\x73\x23\x92\xf3\x46\xaf\x56\x2c\x68\x2c\xf5\xf9\x7c\xf1\x67\x7d\x56\xe3\xea\x73\xfe\x6c\x3e\x8f\x63\xf5\xfc\xb3\xf9\xbc\x6d\x3f\x9b\xff\x99\x73\xae\x58\x15\xc7\xe4\x6e\xe0\xd6\xed\x41\x5d\x39\xb2\x19\x7b\xfa\x60\xba\xf5\xdc\x58\x3c\x8f\x9e\x46\x9c\xf3\x5d\x3a\xcf\xce\xe9\xce\xdd\xe4\x3a\x0f\x13\xe4\xc6\x16\x4e\x3e\x69\x5b\xb0\x75\x09\x65\xae\xde\x0c\xa3\xd4\xb3\x46\xd3\xf2\x47\xa3\x45\x95\x06\xfc\x4c\xf5\xbf\xb8\x3a\x55\x94\x3e\xee\xdc\xb9\xbb\xa0\x47\x57\x52\xe4\x1f\xf4\xae\xa7\x0b\x53\x54\xc7\x92\xd6\x50\x2e\x10\x66\x3a\xfe\x67\x89\x62\xe9\x0e\x69\x83\x67\xdd\x91\x26\x2d\xb4\xdc\x38\xd5\x2f\x32\xfa\x58\xf3\xc2\xa4\x98\x03\x41\x4e\x41\xf7\x80\x89\x91\xeb\x1c\x9c\xf9\x77\x3d\xc1\xba\xc7\x71\x57\x94\x9a\x32\x99\xd6\xd9\x9e\x6c\xd9\x05\x20\x0d\xf7\xdb\xb7\x07\x82\x0c\xfc\x20\x8f\x7b\xa0\xb5\xec\x14\x0a\xb8\x39\x40\x4b\x2c\xd3\xb3\x0c\x39\x29\x41\x18\xf3\x8a\x4c\xcb\x34\xef\x4b\x97\x41\x95\xf2\xec\x08\x79\x1f\x97\xb6\x6b\xce\x6b\xb0\x55\x13\xb3\xf0\x58\x98\x1a\xda\xc2\x91\x70\x90\x4a\x27\xbb\x38\x06\x14\x39\x5d\xc2\xd7\x70\x66\x8a\x63\xa2\xb8\x1f\x00\x77\x3f\xb6\x06\x80\x64\x50\x33\x2f\x67\x9d\x2d\x8e\x96\x5a\xf7\x8c\x53\x77\xe3\xfa\xb6\x8b\xe3\x1d\x18\xd6\x43\xef\x90\x9c\x97\xe9\x0e\xfa\xa3\xce\xda\xb6\x4c\xa3\xa7\xf0\xd3\x63\x30\x2e\xc1\xc8\xa7\xe1\x85\x87\xea\x4a\xd3\xb3\x0c\x0d\xf2\xbd\x04\x60\x19\x75\x69\xc0\x13\xa5\x8f\x00\xe1\x9c\x2f\x72\x60\x38\x4e\xc0\x67\xbf\x84\x11\x46\x6a\xae\xe3\xb0\xa5\xeb\xd0\x46\xb7\xbf\x37\xbe\x20\x72\xae\xb3\xcf\x75\x8b\xc0\x84\x6f\xa8\xe2\xb9\xb3\x78\xd4\xcb\x04\x3e\x77\x8b\x83\xd1\x5a\x36\x70\x88\x0a\x6e\x48\x18\xfc\x49\xf2\xc5\x87\x44\xaf\x10\xd8\x7d\x0d\x20\xbf\xc9\x7a\xa3\x87\xe4\x34\x3a\x56\xb5\x6e\x80\xfd\x7e\x1f\xa6\x63\x96\xd1\x88\xe9\x76\x4f\xd4\x5e\x8f\xba\x3b\x76\x01\xd8\x48\x0b\xd2\xdb\x9d\xc9\x2b\x7e\x31\x36\xfb\xbe\xcd\x1b\xe5\x36\x64\x84\x2f\x19\x6c\xc7\xfc\x15\x65\x87\xbe\xd7\x1b\xaf\xfd\xcc\x6c\xc2\xfc\x15\xa5\xec\x19\x2e\x32\x6d\x1b\x7d\xfd\xea\xc5\x97\x11\xec\x25\x5a\x84\x59\xdc\xf3\xa8\xaa\x2d\x01\x40\x62\xd6\x22\x0c\x55\x1b\x5b\x8e\x84\xdc\xf3\x3b\x38\x92\x08\x76\xc3\xef\x50\xa2\x29\xf9\x84\xac\xf8\x9d\xd9\x2c\x50\x9a\xba\x67\x13\x15\xc7\xf7\x6d\xab\x77\x1e\xd3\xa4\x0a\x0c\xb3\x01\x0a\x03\xb6\x68\x38\xd8\x70\xe5\x7e\x02\x75\x12\x91\x6d\x7b\xaf\xcf\x14\xac\x5c\x3c\x04\x68\x62\x1b\x96\xde\xb0\x7b\x76\x91\xd1\xe4\xc1\x87\x13\xdb\xe8\x4d\xe6\x9e\xad\xb2\x2e\x51\x7d\xc2\x22\x57\xfa\x3c\x6d\x16\xe2\x60\x7b\x2a\x17\xb8\x41\x99\x6e\x4a\xe0\xe9\x15\x96\x51\xef\x57\xac\x5c\xdc\x24\x3a\xb9\x6b\x40\xe9\xf1\x32\xc9\xa8\x4e\x89\xf4\x76\xba\x97\x66\x27\x75\xbb\xdd\xc9\x89\x95\xa9\xe1\x82\x6d\x4c\xa2\xae\xc1\x60\xcd\x9e\x87\x2f\xe0\xdc\xfb\x97\x8b\x37\xdf\x1f\x70\xde\x3a\xbe\xb4\x4e\x24\x4c\xb2\x08\x34\x38\x78\x56\xbe\x00\x45\xd4\xf8\x91\xd7\x7e\x63\xcd\x5b\x3a\xc6\xd7\xc0\x8c\xec\x5a\xa8\x88\x45\xdb\xba\x51\x43\x28\xf4\x9e\xb3\x56\xc8\xfc\xb0\x21\x06\x5a\x1f\xec\x92\x2a\x00\xd1\xb6\x9a\x16\xd4\xa3\x74\xd0\x5c\xa0\x40\x12\xcc\x58\x41\xd9\x05\x29\x29\x70\x8e\x48\x66\xe6\x4c\x02\x38\x19\xfd\x9b\xa6\x38\x06\x83\x46\x9d\xaa\x25\x7f\xe6\x07\x6a\x0c\xb9\xfa\x99\xa1\x6a\xd3\x65\x68\x9b\x80\x81\xc0\xed\xa9\x21\xcf\x9c\xa2\xf2\x2c\x54\xa9\x81\x72\xcc\x7c\xe5\xeb\x21\xf6\x7b\xd6\x2d\xb3\x3d\x9c\xd7\x8e\x0a\x1b\x61\x9a\xf7\xfd\xcb\xac\x3b\x99\x6f\x5f\x94\x23\x96\xc3\xfe\x21\x1e\xf6\x30\x82\x78\x2c\x44\x70\xcf\xd4\x37\x9d\x6b\x89\x5a\xf1\x4b\x03\x18\x3c\xa0\x2b\xa7\x33\xf1\x1b\x99\x53\x8f\xaa\xcf\x46\x0b\x9d\x5f\x02\x36\x4f\x9b\x32\x53\xfd\xab\x30\xc7\xdf\x09\xf7\x57\xe7\x02\xc9\x4d\xcd\x91\x1a\x3c\x8f\xcf\xa9\x2e\xe0\x20\xb8\xa3\xa3\x76\xd4\x8e\x68\x57\x6e\x14\x22\xba\x1d\xbe\xa9\xaa\x71\x5a\xea\x43\xd6\xf6\x9e\x2b\x85\xfb\x3e\x74\xa4\xa0\x1f\x37\xaf\x77\x96\xf4\x92\x2b\x27\x43\x91\xce\x13\x7e\x21\x67\xa6\x83\xe0\x46\xcf\x23\xa5\xa4\x58\xe4\x11\xbd\xca\xa6\xf3\x31\x18\x33\x2d\x91\x61\x99\x75\xd2\x2a\x34\xde\xa6\x09\xa6\xbf\xab\x06\x39\x04\x2c\x8a\xd0\x7f\x44\xd0\x59\x55\x2b\x12\x5d\xd5\xab\x87\x68\xc8\x07\xdc\xb9\x9a\x38\x72\x48\x7b\x3d\x68\xc9\xea\xe9\xbe\x03\x60\x34\x3e\x9e\xdb\x46\xec\x56\x75\x63\x91\x95\x46\x70\x39\x7a\x11\x81\x6b\xaa\x14\x40\xd7\x39\xfe\x6a\x2c\x91\x09\x11\x3e\xc7\x9b\x96\xf8\xf0\x11\x09\x4f\x3e\xc2\x9a\x00\xd9\x04\xf7\x2e\xf7\x37\xd2\xf7\xb3\x07\x7b\x8a\x8e\x97\x46\xcc\x7e\xf9\xee\xdb\xaf\x95\xda\x9a\x43\x96\xd9\xf9\x95\x9e\xbd\xa0\x04\xfe\x59\xf1\xc7\x39\x00\x07\x9c\x3d\x7b\xf6\x59\xf2\x6c\xfe\xe7\x3d\xfb\x4d\xf5\x2f\x77\xee\x6f\x24\xa1\x47\xfa\xc8\x24\x1b\x3e\x99\xfc\xa6\xe2\x38\xba\x2b\xd4\xcd\x4b\x29\x56\xa2\x52\x45\x5e\x36\x51\x51\x1d\xff\xa6\xd8\x16\x3e\xe4\xbf\x29\x88\x66\x0a\xeb\x8e\x17\x64\x60\x26\xc2\x2a\x3c\xe1\xe9\x94\xdb\x56\x27\x3c\x51\x81\x06\xcb\x4a\x16\x01\xc5\xb1\x6f\x82\xca\x95\x29\x9e\x16\xc7\x81\xe5\x92\xa0\x9d\x1a\x53\xa0\xd9\x52\x78\xdc\xd2\x4f\x8d\x90\x78\x2f\x3f\xdb\xe6\x4d\x73\x57\xcb\x95\x9e\xea\xf7\x37\x12\xc5\xca\x4e\x9c\xf5\x03\xb5\xbc\xca\xbd\x00\x2b\xbe\x9a\x88\xf6\x0c\x11\xc7\xcd\xac\xaf\x1f\x1d\x0b\x23\xdd\x27\x3a\x73\xaf\xaa\x6d\x5b\xa4\xd1\x2f\x27\xa6\xa7\xc4\xea\x04\x18\x4d\xb3\xb6\x25\xa3\xe1\x3c\x0a\xbb\x36\xa2\xac\xa0\xcd\xf0\x40\x9d\x33\x30\xcb\x3e\x92\x63\x96\xc8\xbe\x5a\x19\x2e\x0b\x2a\xde\xcc\xea\xaa\xac\xf3\x15\xfc\x00\xc1\x05\x7e\xc1\x11\x14\x7e\x99\x83\x27\xfc\x86\x53\x1d\x48\x43\xcb\x9b\xbc\xba\x46\x86\x61\x66\x4e\xda\xe0\xe8\xd2\xd8\x43\x78\x62\xa4\x20\x74\x7f\xe9\x23\x63\x35\x46\x70\x59\xd4\x64\xce\x4c\x4c\x9a\xd4\xc4\x86\xb3\xc6\x93\x91\xf4\x8b\x9f\x55\x6a\x83\xb2\xb6\x1d\x8d\x86\xf7\x3a\xc0\x7b\xd1\xb8\x13\x84\x51\xa0\xc1\x1b\x3a\x62\x9e\xe4\xc5\x14\xf7\x6a\xf1\x78\x55\x54\xb9\x7c\x48\xba\xe0\x7d\xf2\x08\x37\x40\x61\xc4\x3d\x03\x22\xce\xa1\xe6\x9e\x50\x74\x45\xb0\xad\x2a\x09\x65\x55\xaf\x6d\x6d\x8b\x6a\xa9\x15\x6b\xde\xf9\xe1\xba\xb6\x5f\x74\xbd\x50\x25\xa3\x6d\xef\x75\xa6\x96\x5d\x1b\xef\xcc\x0d\xdc\x45\xa3\xca\x05\x19\xc7\x15\xc0\x30\x32\xa9\xf3\xc7\x9e\x43\x9d\x42\x83\xea\x04\x15\xa8\xab\xf0\xca\x18\x61\x91\xec\x41\x62\x67\x08\x61\x50\xcb\xb0\xdb\x0f\x94\xef\x90\x8d\x24\x96\x4c\x24\xb8\xe5\x22\xa1\x5d\xba\x37\x21\x00\x51\xc0\xee\x4e\x33\x94\x40\x38\xde\x61\x07\xb7\x54\xee\xfe\x13\xa3\x98\x8b\xce\xee\x96\x92\x1d\x07\x17\x99\x07\xc2\xc5\x72\x33\x1a\x7e\x7f\xd2\xbd\x09\xee\x3b\x4d\x6e\xa7\xef\xaf\xc8\x22\xd1\xa9\xb6\x3a\x22\xc5\x60\xb8\xe4\xfc\x04\x31\x4a\xf8\xc2\xaa\x27\x34\x51\x26\x46\x1b\xcb\x89\x6f\xc1\x06\xdc\x41\x67\x58\x35\xaa\xf9\xa5\x9b\x8b\x0d\x1b\x15\xf1\x49\xb4\x60\xd8\x35\x66\xb7\x48\x8f\xe7\x81\x3e\x33\x70\x49\x13\xae\x5a\xc2\x74\xcd\x0b\xa5\x64\xf3\x91\xf5\x5a\x4b\x1d\xd1\x73\x8c\xfb\x79\x44\x8d\x3b\x8f\xff\x31\x12\x6a\x83\xb9\xd1\xa3\xb9\xe3\x4e\x6c\x84\x97\xf8\xcc\x1a\xb9\x4c\x84\x5e\xd8\xf7\x74\x56\x57\x24\xd2\x93\xea\xd8\x9c\xaf\xc2\x25\x4e\x59\xc3\x46\x6b\xc1\xce\x44\x1c\xd7\xc4\x5b\x86\xf0\xdc\xf7\xe7\xf9\x9f\x61\x03\xc4\x47\xdd\x20\x15\x68\x20\x03\x5c\x19\xa5\xe5\xc2\x8f\x8e\x6b\x64\xeb\x54\xec\x57\xc5\xd3\x8c\x7d\xa5\xf8\x29\xe1\xf4\xfd\x82\x2c\x78\xdc\x3e\xa1\xed\xfb\x05\x5a\x4c\x7a\xe3\x56\x9f\x62\xb6\x49\xb4\x34\x97\xa1\x78\xbd\xbd\xb5\x77\xa3\x43\x7a\x8f\x5f\x15\x5a\x4e\xc3\x99\x0a\x3d\x0d\xa6\xd1\x25\x6a\xc0\x03\xb1\x59\x80\xa5\x89\x18\x1d\x3f\x3a\x0f\xb8\x01\xdf\x46\x2c\x70\xeb\xe8\x91\x60\x81\x5a\x5a\xcd\x20\x66\x1c\x93\xaf\xac\x01\x96\x6e\x7a\xba\x88\x76\xb2\x8c\x86\xf8\x0b\xca\x68\xb8\xe1\xce\x42\xfd\x6f\xef\x2c\xba\x3c\xcd\xcd\x42\xa4\xff\xa2\x9b\x6f\xd3\xb6\x11\xd6\x02\x8c\xd7\x03\x33\x16\x7b\xb9\x67\x8b\x6f\x5b\x94\x6f\x48\x2f\x84\x2e\x7a\x01\x44\x4b\xbb\x41\x08\x6b\x16\x2a\x6d\x32\xae\xff\x71\x17\x13\x5f\xe1\xc5\xc4\xb4\xa0\x49\xaf\x9d\xa0\x7d\xbc\xfb\x0f\xdb\x5e\xf6\xca\xc2\xc4\x04\x3b\xc5\x02\x04\x80\x4e\x2f\x66\xe6\x1d\xda\x27\x64\x7c\x78\xe5\x9b\x77\xe6\xaa\xc5\x34\x3a\xbe\xcb\x9b\xe3\xaa\x56\xc7\x7a\x00\xe9\x16\x63\x79\x3a\xcf\xf6\x2c\x6c\x0d\x8e\x87\x65\x40\xff\x2e\x32\xa6\xff\x09\x90\x7f\xb9\x73\xca\xdc\xb3\x6a\x04\x05\xd5\xad\x2d\xf5\x02\xbc\x9f\x3a\x08\x0c\x52\xd0\x04\x92\xab\xc1\xc6\x13\x2a\x1f\xb6\xb7\xec\x35\xa5\x1e\xc0\xbb\xe6\x86\x14\x14\x08\xdd\x36\x00\x4f\x5e\x93\x1c\xce\x5c\x39\xaf\x3b\xfe\x05\xbb\x04\x81\x81\x38\xde\x5f\x7e\xfd\x0e\xa0\x2c\xa0\xac\x9c\x90\xbf\x29\x5e\xcd\x8a\xcd\x16\xcf\x5a\x30\x92\x46\x22\x12\x3d\xea\xf4\x11\x81\x7a\x24\xfc\xd1\x73\x3d\xd8\x3e\x7f\x7e\x8a\x7f\xfc\x87\x88\x3d\xe3\x9c\xff\x4d\x79\xc7\x04\x77\x13\x66\x4c\x43\x20\x89\x71\x25\xc5\x10\x3d\x71\x91\x66\x09\x19\x75\xb9\x36\x86\x19\x7a\x7d\x56\x6d\x4b\xc6\x6a\xb9\x20\xa4\xe0\xe4\x93\xeb\x49\xfb\x17\xbd\x57\x79\x23\x74\x30\xdc\xec\x56\xce\x98\xdb\x98\x3d\x0d\xd7\xb8\x82\xd2\x44\x71\x40\xbb\x9c\xc8\x38\x4e\x33\x46\x6a\xfe\x0e\x6d\x23\x04\xa5\x8b\x54\xf5\x72\xa8\xd3\xb3\x8c\x66\x09\xa9\xf9\x1d\x82\xcf\x2a\x96\x43\xcf\xe6\x8e\xe4\xed\x92\xe4\xb4\x5b\x87\x2f\x67\x1b\x21\xaf\x05\x49\x33\x56\xfb\x27\x31\x4a\x3b\x8b\x14\xa3\x28\x00\x61\xe9\x20\x16\x0a\xcb\x11\x61\xbb\xe1\xc2\xf7\xc4\xef\xc8\x19\xd0\xad\xab\xe2\xb7\x8a\x58\x52\x62\x7d\xe8\xd6\x67\x74\x7c\x9a\x33\xfd\x0c\xb6\xc5\xa1\x8d\x4c\xa2\x46\x80\x63\x15\x12\x91\xfe\xf0\xe6\xe2\x9d\x9e\x67\x16\x13\x66\x1e\xc7\x23\x1a\x97\xa2\x6d\xfb\x4a\x17\xb4\xba\x32\xea\x50\xda\x83\xe7\x15\xf4\xb1\xee\xa6\x21\xcb\x67\x3a\x36\xa9\x16\x7a\xbb\x5c\x15\xb7\x9f\x3b\x88\x33\xe2\x0d\x41\x80\x38\x58\x23\x62\x3d\x1c\x9c\xed\xdc\x95\x71\x1c\xaa\x86\xf2\xc1\xe1\x38\x00\x21\xac\xdb\xd6\x53\xb0\x83\xdc\xac\x98\xc8\x00\x99\xdb\x28\x29\x9c\xa6\xac\xbb\x0c\x67\x9d\x1a\x8f\xf5\x74\x80\xbe\x36\x31\xd0\x33\xb2\xee\x5a\x6c\x48\x39\xd8\x87\x54\x0c\x0f\xfd\xb0\x47\x09\x3a\x72\x54\x37\x68\x82\xab\xb1\x4f\x2f\x67\xd7\x52\x6c\x89\x83\xba\xf4\x4f\x9f\x56\x2f\x03\xdb\x07\xb2\x8e\x98\x5e\xd5\xf5\xc5\xe3\x38\x38\x82\xbc\x81\x9f\x87\x61\x79\xdc\x6d\x49\xc7\x67\x6c\x08\x04\x81\x4a\x5d\x2f\x9a\x6c\xcd\x1f\xf7\x47\x91\x96\xd5\x8b\xa5\xde\xb0\xca\x8e\x7c\xcf\xe3\x82\xb7\x54\xf9\x11\x65\x0d\xb7\x2c\xf0\x04\xd1\x68\x4d\xd2\xa0\x36\x65\xbb\x2e\xa0\x04\xea\x3c\x46\x02\x0e\xc3\xb2\x6d\xa3\x75\x71\x2f\x56\xf0\x80\x57\xf2\x3b\x7f\xf7\xdd\xa9\x1a\x3c\x1f\x17\x24\xe7\xa4\xe2\x4b\x57\x08\x42\x29\xf0\xde\x17\x7a\xbd\x10\x6b\x45\x93\x90\x3d\xb7\xa6\x6d\x3b\x67\x85\x1f\xb4\x43\xba\x63\x44\x44\x26\x8a\x3b\x26\x04\x19\x40\xe3\xea\x49\x6e\x40\x89\x81\x5a\x3f\x8e\xc9\x5a\xff\xc5\xa7\x93\x46\xff\x3b\xcd\xbb\x28\x3a\x77\x88\xa3\x7f\x98\xe7\x93\x06\xfe\xe8\x8d\x33\xda\x35\x7a\xa5\xd5\x47\xf0\x85\x3e\xd9\x17\xd5\xb5\xcd\x77\x4d\x93\x25\x34\xcf\x1a\xa9\x94\x3c\xad\x63\xdd\xef\x4b\x38\xb8\x1c\xc2\x18\xe9\xc4\x6a\x50\xc2\x8d\xe9\xd3\x60\xe8\x62\xaa\x33\x37\x56\x2c\x56\xaa\xa2\x46\x2a\x44\xac\x86\x1e\x18\x42\xb5\xa8\x0e\x69\x79\x16\xb0\xe8\x1f\x60\x31\xd4\xc2\x6c\xa8\xeb\xf4\xfd\x14\xd9\xa3\xaa\xb7\x09\xb4\xe9\x54\xce\xb6\xf9\xb5\xf8\x15\x0b\xc5\x74\xcb\x25\xd8\x8e\xe6\xcd\x2f\xf8\x66\x4f\x13\xf8\x68\x8e\x51\xe6\x7b\xeb\xab\xcf\xb6\x23\xdc\xf7\xc5\xda\xa9\x49\x2d\x28\xa7\x5f\x3b\x56\xf0\x30\x31\x2d\xac\x75\x83\x11\xc7\x6d\xe5\xcf\x11\xfa\x91\xba\x76\xb7\xa4\x86\x37\xcf\xcd\x89\x41\x23\x30\xa1\x43\xe0\xf5\x0f\xa0\x21\x6c\x5b\x39\x5b\x99\x97\x66\xc3\x3a\x47\x44\x5d\xce\x25\xc8\x04\x6d\x8b\xbf\x7b\xb1\x00\x8f\xc1\x4d\xd5\x91\x59\x8d\xaa\x5e\x0f\x65\x49\x1f\xaf\x91\x4f\x65\x00\xf9\x4f\x0a\x58\x01\x5c\xc1\x61\x7a\x0d\x48\xca\xdf\xd5\x5b\x47\x4f\x4e\x59\x81\x9d\xd4\x8f\xf4\xad\x58\xab\x2e\x96\xbd\x3a\xe9\xfa\xfb\xa4\x80\x7f\x5d\x13\x23\xe7\xd4\x3b\xbd\x42\x03\xd2\x7f\xd7\xff\x27\x98\x43\x3f\x2a\xd0\x70\xa2\x5f\xde\x9e\xf9\x4d\xf9\x89\xfe\x22\xa1\x92\x3c\xe8\x0c\xdd\xf2\x9f\xd2\xa8\xfe\x37\x4e\x75\xde\xb6\x95\xd8\x87\x28\xb8\x8e\x78\x2d\x89\xbc\x91\x1c\x31\x47\xd4\x86\xe1\x66\xec\x1f\x70\x19\x0c\xa2\xe8\x7d\xe0\x68\x00\x5f\x5b\x7d\x84\x14\x13\x6e\x82\x74\x4a\xb5\x1e\xe3\xb7\x44\xd0\x45\xcd\x45\xf2\x3f\xfd\x21\x50\x73\xe1\xcf\x50\x9f\xfe\xd7\xdd\xd8\x2f\xea\x54\x65\x89\x48\xab\xec\xa8\x5e\xd4\x8e\x6f\x8e\xc8\x45\xed\x4f\xd5\xa4\x60\x72\x51\x24\xb5\x3f\xb1\x29\x7c\xc6\x8b\x3d\xa0\x05\x0f\xd6\xb2\x1e\xd8\xb1\xde\xae\x61\xcf\xf8\x38\xe9\x2f\x50\xbb\x6e\x8b\x7b\x51\xfe\x60\xd9\x70\xfd\x5b\xb0\x80\x00\xd8\xd2\x94\x2b\xca\x2c\x9d\xbc\xa4\x78\x58\xe8\xb6\x95\x54\x65\x40\xbb\x9a\xc8\x3d\xf5\x3a\xd2\x30\x7c\x3b\x46\x62\x18\xdf\x89\x21\x56\x19\x82\x0b\xe3\x47\x8e\xa5\x15\x44\xfa\x68\x2a\xac\x52\x26\x51\x2c\x8a\x92\xa8\xde\x29\x08\xde\xf7\xd0\x6a\xa1\x77\x2b\xaf\x77\x3b\x35\x32\xef\xb7\x9b\x16\xd0\x3d\x04\x67\x27\xd1\x17\x7a\x6f\x96\x6d\x4b\xe0\xaa\xbe\x68\xdb\x09\x9e\x8d\x2c\xc3\x5b\x62\x09\x79\x9d\x28\xda\x1f\x38\x00\xa1\x60\x07\x8e\xdd\x69\xb4\x18\x0a\x96\x29\xdd\x26\x8d\xb5\xa0\x0b\x95\xba\x7a\x66\x89\x72\x8b\x55\x7f\xd5\x4a\xa3\x25\x2c\x9c\x10\xed\x7f\x40\xaa\xb1\x63\x70\x41\x6a\x3e\x88\xcf\x1c\x65\x9a\x82\xc5\x10\x4e\x9f\x75\x59\xea\xef\x59\x1d\x3c\xd9\x08\x96\xaa\x18\x23\x84\x4f\x5d\xe6\xd4\xfa\xa2\xe8\xf6\x59\xe0\x4c\xd7\x75\x6e\xa8\xa3\x5e\x44\x14\x89\x86\xee\xf5\x81\x61\x51\x24\xd6\x58\x08\xee\x09\xdd\xe0\x88\xae\xca\x9d\x3c\x06\xb7\xdf\x63\xe3\x0b\x7c\x6c\x9d\x80\x8f\xa5\x68\x8a\x7f\x89\x63\x2c\xe5\xf1\xb2\x2c\x96\x1f\x8e\x57\x57\x25\xfe\xd8\xd4\xbb\x46\xac\xea\xbb\x0a\x7f\xed\xb6\xf8\x57\x1f\x42\xf0\x57\x7d\x2b\xa4\xf9\xb5\x53\xf8\x43\x54\xca\x86\x95\x22\xbf\x15\xc7\xa8\x54\x3d\x46\x6f\xcd\x63\xf4\xf2\x3c\xfe\x20\x1e\x20\xdd\x0f\xe2\x61\x2b\x45\xd3\xe8\x1f\xbb\xed\xb1\xb1\x87\xdf\x88\x6a\x17\x79\x96\x1f\xbf\x2b\xe4\x7a\xf7\xdb\x03\xbc\xc9\xf9\xa2\x93\x7c\x51\x7b\xc5\xa4\xb9\xd3\xb3\x57\xe9\x23\x1e\xdf\x37\xba\x6a\x1f\xf1\xf7\xee\xea\xaa\xe7\x67\x57\x5d\xa2\x00\xd1\xa0\x9f\xdc\x55\xe1\xab\xf1\xc2\x1b\x79\x5b\x3c\x61\xdc\xcf\x99\x84\xcb\xbb\xc1\x27\xbd\x0f\xd6\x6b\xf7\x05\xdd\x33\x8b\xe9\xf0\x3b\x44\x10\x28\xff\x1b\x42\x87\x5d\x75\xe0\x2b\xf7\x8d\xde\x86\x07\x60\x53\x5e\xf6\xd1\xd3\xa7\x91\x69\x4b\x1d\xa0\x18\x18\x58\x3f\x8d\x98\x34\x4d\xb0\x95\xf5\xfd\xc3\xb8\xa3\x2a\x03\x67\xdc\xa1\xea\x0b\x8e\xf4\x22\x55\x99\xe1\x4a\x90\x5a\x26\xf6\xa8\x13\x79\x8d\x02\x6a\x77\xd0\x7b\x46\x19\x29\x46\xd4\x3c\xc2\x1e\xcf\x8c\x93\x77\x65\x7d\x0b\xfa\x29\x00\x4c\xde\xec\x7a\x57\xac\xb8\xf0\xff\xb4\xed\x25\xfc\x9d\x4e\x59\xa1\x25\xe0\x9b\xba\x5c\xbd\x15\xf9\xea\x21\xc4\x80\x01\x28\xdc\x7c\xf5\xf0\x73\x5e\xa8\xe9\x34\x31\x4f\x40\x4e\x01\x36\x08\xe0\xef\xc8\x03\xef\x47\xab\x04\xf9\xcb\xc5\x9b\xef\xb9\xe7\x41\x73\xe9\x9c\x32\xf9\x0b\xf8\xf6\xb5\xc9\x88\x6f\xe0\x11\x41\x33\xf8\x2d\xbb\x9c\x2d\xf3\x8d\x28\x5f\xe6\x8d\xe0\xbf\xb2\x4b\xd4\x44\x5f\xc1\xf7\x77\xce\xc5\x1c\x3e\xf9\x7e\xb7\x11\xb2\x58\x8e\xb0\x58\xe0\x57\xdd\x75\x33\xe9\xe0\xbd\xb8\xf2\x2d\x93\xb9\x96\xe5\x26\x45\xf3\x7d\xfe\x3d\x11\x3e\x85\xba\xa0\x74\xcf\x22\x9b\x72\xd7\x89\x2b\xb1\x2e\x2a\x11\xc7\xf8\x77\x96\x6f\x56\xf6\x37\x89\xd0\xb7\x25\x62\x69\x36\xc2\x39\x7e\x69\x24\xfd\xbf\x2a\x2e\x66\xff\xfc\x51\xc7\x64\x4f\xf4\xef\x27\x1d\x43\x4c\x55\xbf\xac\xab\x75\x59\x2c\x15\x1f\x3b\x88\xce\x9e\x68\xc1\x08\x0e\x86\x4f\xf8\x13\x05\x24\x1b\x36\x2d\xf7\xc6\x3c\xfe\x55\x51\x76\xb9\x07\xc5\x91\x0b\xd3\x9f\x5d\xea\x60\x3a\x80\x55\xd7\x73\xe3\x68\x93\x17\xd5\x4b\x5c\xa7\x78\xb8\x23\xd1\x47\x67\xf3\x69\xd6\x24\xdc\x13\x05\x6b\x00\xd2\xe9\xa8\x01\x74\x95\x22\xcd\xa7\x3c\x3a\x45\xf0\xd5\x0c\xeb\xbb\xe3\xb5\x8e\xa0\xe5\x1f\x7b\x61\xb5\xb3\x23\x7e\x77\x84\x6f\xb9\x3e\xfd\xb5\x6d\x38\x99\xf0\xaa\x48\x01\x7e\xcd\x2b\x74\xc0\x7f\x59\xef\xca\x15\x28\x34\xd7\x45\xb5\x3a\xde\xd4\xab\x5d\x29\x0c\xae\x9d\x14\xbf\xed\x0a\x29\x56\xc7\x57\x0f\xe8\x9c\x9f\x7c\xca\x87\x74\x0f\xd5\x71\xfc\x71\x25\x6f\x66\x2b\xb1\x6d\xd8\x92\x37\x33\xab\x76\x67\x6b\xae\xd3\x42\xe7\xde\xd2\x69\xfb\x6e\xf8\xfc\xfc\xe6\xb9\x7d\x3e\xbf\x99\x4e\x69\x24\xee\xb7\xb5\x54\x0d\x9c\xaa\xd3\x9b\x6c\xb1\x4e\x6f\x32\xbe\x4b\x22\x53\xba\x30\x5c\x25\xf0\xa7\x22\x3a\x88\xe5\x4e\x1e\x58\xfa\xca\x97\x35\x65\xbb\xbd\x5e\x4e\xf4\x9a\xa6\xc7\xd9\xaa\x1b\x8c\x77\x30\x67\xe2\xd8\x7b\xd7\xf9\x46\xa0\x29\x7e\x1c\x47\x29\xaa\xaa\x6c\x48\xa6\x0b\xf1\xb8\x9f\xa9\x1a\x3d\xe0\x70\xc5\x30\x2f\x69\xdb\x12\xc3\xdf\xf7\x4a\x4f\x18\xef\x27\x5c\xbd\x74\x92\x29\x5e\x06\x87\x41\xb3\xcb\xcb\xb2\xce\x57\xc2\x22\xf3\x71\x34\x4f\x32\x3a\x41\x82\xf8\x2c\xf5\x58\xe8\x91\x38\xc0\xd1\xf4\xb8\x3f\x92\x0b\x52\x41\xa7\x70\xa5\x17\x3a\xa7\x3a\x06\xdc\x0a\x08\x4f\x33\xff\x05\x80\xb7\x88\x8c\x57\x7b\x46\xc6\xc1\xb5\xcc\xf6\xa2\x97\x46\x23\x76\x73\xc5\xe0\x12\x73\x2c\xfa\x17\x28\xe1\x11\x9d\x28\x6d\x5b\xef\x71\xda\x8d\xf5\x3d\x53\xb3\x4b\x91\x7f\xb8\xd4\x7b\x27\x2f\x58\xd7\x16\xfc\x11\xfb\x26\x11\xcc\x8c\x82\x44\x31\x29\xae\x8b\x46\xc9\x87\xa4\x30\x86\xd6\xc2\x6b\xbd\x19\x7e\xc0\x94\x1f\x66\xbe\xdd\x13\xca\x04\x89\xfe\x7f\x42\x77\xc9\xe9\x09\x90\x47\x54\x79\xd9\x9c\x5e\xc9\xfa\xae\x11\xf2\x44\x54\xb7\x85\xac\x2b\xbd\xfa\x47\x2c\x75\x03\x32\x0b\xae\xea\xa2\x5d\x23\x8e\xf5\x22\xb8\x54\xd1\x91\xd0\x15\xff\xf2\xcd\x77\x5c\xe8\x55\xb9\x90\x62\x5d\xdf\xc3\xef\x97\x37\xb2\xde\xe8\x33\xd7\xae\x11\xf2\xc5\xb5\xa8\xf4\x72\x75\x53\x34\xaa\x86\xc5\xc4\x6a\x8b\xb9\x98\xdd\x99\xc5\x1b\x46\x02\x2a\x34\xf8\x40\x43\xda\x88\x72\xed\x40\x9f\xf1\x41\xff\x3b\xc3\xe1\xc0\xb9\x19\x17\xe3\xc3\xf9\x67\x33\xd4\xe1\x0b\x8f\x9d\x9f\x73\x6e\x5f\x0d\x32\xb4\xf2\xac\xcb\xb4\x0b\x80\x64\xec\x23\xf7\xdf\x0c\x52\xb1\xd5\x74\xa9\x74\x01\x90\x8a\x6b\x06\xff\xcd\x20\x15\xd3\x6c\x2e\x11\xf7\x0c\x69\xd8\x46\xf5\xc2\x07\x29\x54\xf9\x6d\x71\x9d\xab\x5a\xba\x34\xbc\x10\x48\xc5\x3d\xf3\xe0\xdd\x40\x10\x71\xef\xba\x8e\xed\x06\x81\x3a\x32\x30\x3d\x0b\x9d\x26\xf8\x0f\x1e\xb9\x0e\x96\x47\x06\x6d\x66\x11\x54\xdd\xc6\x72\x4d\x51\xa1\xb2\xde\xc6\x33\x95\xb2\xd1\x6c\x6d\x0b\x88\x55\xdb\x58\x23\xc5\x4a\xa2\x6f\x1f\xaa\xfb\x63\x02\xa2\x73\xbd\x12\x54\x8f\xd6\x6e\x34\xd6\x47\xb8\x0d\x4d\x26\x5a\xb6\xb2\x13\x53\xce\x96\x30\x70\x11\x30\xb1\xde\x0a\x99\xd3\x23\x6f\x3c\xe7\xf0\x55\x83\x5f\x8d\x8d\xb5\x6f\xaa\x46\xe5\x65\x69\x70\xd7\x8e\xfc\x69\xd1\xec\x0f\x4c\x3f\x3d\x24\xeb\x52\x98\xf5\xc0\x9b\x78\xcc\x46\x5e\x89\xab\xdd\xb5\xff\xb8\x95\x62\x99\x2b\xb1\x3a\x59\x8b\x5c\xed\xa4\x68\x7a\x27\x6e\x70\xd8\x0d\x27\xaa\x5d\xad\xbc\x89\x56\x1d\xc9\xd9\xb7\x6f\xbe\xfa\xea\xd5\x5b\xb8\xcd\x78\x2c\xeb\xeb\xc1\xbd\xb0\x95\x82\x04\x37\xc5\xa4\xb3\xb2\xbe\x36\xbb\x8c\xf0\x48\x86\xf6\xec\x2e\x97\x03\x74\xa1\xb1\xef\x75\xbc\xd1\x04\xd0\x28\xfc\x13\x52\x80\x88\xa3\x49\x14\xd5\xba\xfe\x94\x14\x74\xbc\xd1\x04\xa0\xa9\x07\x29\x30\xa7\x2f\x32\x29\xcc\x20\xde\x82\xa8\x2e\x49\x08\xb1\xdb\xaf\xcf\xbe\xf4\x49\xf9\xe6\x4d\x23\xc2\xcb\xff\x43\x45\xc7\x98\x63\x89\x18\x31\xb1\xe0\x95\xd7\xdf\xc5\x47\x86\x9d\xca\x0b\x7d\xf6\x1f\x1b\x72\x5e\x44\xd0\x84\x8e\xbe\xd9\xa9\xa2\x3c\x3c\x4c\xb7\x75\xf9\xb0\x2e\xca\x72\x38\x38\x51\xbb\xd5\x1b\xa0\x5b\x59\xdc\xe6\xaa\xf8\x97\x18\xa3\x96\x4b\xe7\x19\xab\xf8\x75\xaa\x32\x74\x94\xb1\xdb\xb1\x5d\x2c\xec\xb9\x38\x89\xb4\x94\x50\xe8\xe8\x39\x2f\xd2\x33\xa7\x10\xd7\x9f\x72\x32\x67\x12\x49\x93\x2a\x4a\xea\x69\x94\x44\xd3\x7c\x1a\x9d\x44\xd3\x2b\x3d\xfa\x66\xaf\x5f\xbc\x7c\xf7\xe6\xed\xaf\x97\xaf\xdf\xbc\xe5\x62\xf6\xd2\xb6\x0f\x17\xb3\xb7\x66\xcf\xf5\x67\x4f\xcd\xc7\x64\x5c\xd1\x15\x7a\x48\xf2\xe0\x41\xe0\xba\x97\xe9\x59\xb6\xf0\x1f\x92\xc7\xfd\x91\x01\xc7\x36\x79\x1a\xa8\x1f\xe8\x06\xae\xf0\x2f\x9a\x48\xe1\x0b\xb4\xc5\x81\xba\xad\x0a\x28\x45\x2e\x1f\x28\x51\xf8\xc2\x18\x53\x61\xd4\x75\xae\x37\xbe\x87\xef\xf2\x2a\xbf\x16\xf2\xe5\xa1\x0f\x47\xa2\x05\xc9\x14\xcd\x97\xa2\x51\xb2\x7e\x10\x2b\x3e\x39\xeb\x85\x15\xd5\x35\x9f\x9c\xed\x0d\x4f\x26\xfa\xf0\xfa\x90\x3c\xd5\xac\xac\xeb\x0f\xbb\xed\xb8\x8d\xf9\xce\xd8\x18\xfb\x2d\x30\xab\x6a\xb9\x01\x80\x21\x80\x73\xa6\x7b\xa6\x85\x37\xc8\xcc\xef\x83\x1b\x0b\x00\x3e\x2c\xce\x5c\x7f\xb2\x2e\x2a\x48\xe4\xcb\xe1\xa7\xab\xd1\x4f\x75\xed\xe0\x4b\x40\xdc\x0a\xcd\x7f\x7a\x11\xdb\x96\x78\x17\x3a\xc4\x16\xc5\xda\x63\x8f\xa2\xd9\x19\x2b\x2a\x3d\xa6\x1d\x67\xe2\x48\xcb\xeb\x43\xbf\x96\x98\x5d\x9c\xa5\x0b\xb5\xad\x10\xc7\xee\x27\xa1\x74\xff\x7b\x4d\x48\xa1\x05\x61\x1c\x7d\x53\x69\x49\x41\xef\xbb\x87\x57\x1e\xc4\x88\x7c\xf3\xf3\xf7\xaf\xde\x66\x1e\x58\x1c\x13\xd0\xa8\x58\xe0\xd7\xb5\x1c\x99\xb6\x7f\x78\x06\x30\x73\x7a\x18\x2d\x3e\x82\xbf\x19\x9e\x1c\x30\xe9\x75\x88\xa5\xdd\x11\xc4\x7d\x89\xb6\x4c\x00\xbd\xf2\x2d\x8c\x3b\xe4\x0a\xb1\x2b\x88\x03\xf7\x16\x7a\x09\xd8\x13\xea\xc3\xec\x78\x03\x13\x39\x13\xbb\x64\xaf\x85\x41\xef\x20\x8a\x45\x4d\x51\x5d\x97\x42\x81\xdb\x88\xfb\xbc\xf9\xe4\xcf\x0b\x2d\x34\x54\xaa\xc8\x95\xf0\x13\xd8\xf9\x83\x65\xd0\x94\xcf\x46\x9b\xf2\x99\xdf\x94\xcf\xa0\x29\x2b\x0e\xe0\x07\x13\xd9\xb5\x98\x0c\x5a\xac\xf2\x0b\x36\x6c\x2e\xd5\x41\xa8\xea\x4a\xc8\x99\xab\x6d\x47\xd1\x86\x43\xb2\x0a\xcf\xea\xee\x02\xa2\xd8\xf7\x0d\x82\x7b\x28\x47\xa5\x91\x59\xba\xcf\xbd\xfb\x0b\x1d\x38\x7e\xc0\xd3\x6b\xb9\x6b\xb9\x23\xaf\xa1\xbd\x32\x1a\x17\xe8\x2a\x8e\xb1\x3b\xe3\x18\xfb\x65\x6f\xc8\x03\x3d\x40\x66\x33\xad\x78\x61\x8f\x97\xf4\x13\xb3\x66\x85\x9f\xa3\x5f\x90\x0a\x3c\x8a\x91\x27\x1c\xf3\x3f\x58\x80\x7f\x3b\xd7\xc3\x15\xf6\x2a\x3b\x09\x33\x0b\x15\x25\xff\x56\x75\xb0\x1e\x95\xc1\xd9\x2d\x6c\x16\x6d\x8b\x39\x8c\xd5\xa7\xcc\x9b\xe6\x08\x75\x31\xa3\x0a\x15\xac\xf0\xb1\x59\x42\x22\x48\xa2\x42\x55\x6f\x37\x0b\xca\x1e\xf1\xf2\x81\x25\x32\x18\x79\x03\xf9\xc0\x1b\xe0\xc6\xe7\x8d\x28\xda\x1b\xac\x8f\x76\x5b\xd7\x65\xdd\x10\x01\x28\x85\xaa\x83\xa2\x3b\x90\x31\xaf\x59\xed\x15\x77\x39\x6c\x58\xb3\xc2\x36\x47\x3d\x17\x61\xff\x9d\x5e\x64\x9d\x26\xa9\xe0\xf3\xf3\xe2\xb9\x72\xd4\xb1\xd3\xa9\xb9\xd1\xe1\x00\x77\xd8\xf0\x1a\xcc\x58\x85\x54\x0f\xac\xe4\x35\x82\x8b\xae\x0b\x21\xd9\x52\x3f\xc1\x2c\x3f\xaa\xd2\x26\xe3\xcb\x85\x5e\x44\x4a\xf6\x88\x81\xc9\x72\x4f\x13\x08\xa1\x5a\x10\x6a\xbe\x7c\xa8\xf2\x4d\xb1\xd4\xab\x66\xf7\xc4\x27\x39\xc4\xf0\x3b\x61\x1d\xee\x5b\xb6\x31\xf5\xda\xe2\x49\x5e\x9e\xfd\xc1\x01\x8d\x4c\x57\x61\x7b\x2d\xe3\xb2\x4d\x26\x67\x8e\xb5\xb8\xc3\xf4\x8a\xe3\xa5\xe1\x1f\xf3\xc8\xa3\x30\x10\xa8\x93\x2b\x18\x76\x7a\x39\x7d\xf7\xb0\x15\x6e\x37\x6b\x48\x45\x31\xd8\x0b\xd2\x83\xd4\xd5\xe8\x46\xef\x52\xb6\xc1\x95\x5d\xc2\x98\xb4\x1a\xa6\x0f\xe2\x41\x7f\xc1\x2a\x3e\x3f\xaf\x3a\xde\xcf\xca\xf6\x45\xc1\x55\x2a\xd3\x2a\xcb\x8e\x8a\x6e\x17\x2e\xba\x5d\xd8\x6b\xbc\x95\xb1\x3d\x1f\x97\xb6\x50\xac\x1a\x1d\x5d\x07\x22\xef\x7d\xd9\x14\xcf\xb1\x5b\x18\xb4\x3f\x8b\xfc\xc3\x77\xf9\xf6\x28\x94\x64\xb7\x10\x63\x73\x48\x5a\xb5\x2b\x31\x8a\x92\x9d\xcc\xeb\x0b\x9d\xc2\xec\xf8\x18\x47\x4f\x6b\xae\x8c\x40\xb9\x2b\x4b\x50\xcc\x9b\x97\x6e\x9f\x5e\x41\x68\xc5\xcc\x55\xfe\x4a\xbc\x33\x3a\x43\x07\x07\x0e\x12\x54\x37\x01\x4c\xf0\xb6\x23\xa6\x40\x64\x60\x3b\xe6\x06\x72\xa4\x74\x6a\xc8\x91\x5b\x0e\x37\xd5\x06\xf9\x5b\x24\xc7\xa0\x4c\x61\xe5\xbb\xc5\x62\x93\x7f\x70\x91\x48\x57\xfb\xb0\xee\xc6\xdd\x2e\x48\x71\xcf\xa4\x59\xcf\x07\x62\x91\x11\x50\xbc\x75\xc1\xdf\xf5\x3a\x7e\x6d\x12\x16\x6a\xac\x7d\xf5\x59\xa7\xf2\x53\x92\xbc\x66\x55\x30\xb1\xfb\xcd\x5c\x63\x8b\xe6\x5c\x06\xcb\x9f\x00\xff\x71\x32\x67\x85\x3e\x5f\x16\xd7\x15\x05\x7c\x2e\xa6\x2b\x37\xe9\x2a\x6e\xea\x44\x07\x8b\xfa\xeb\xbc\x28\xc5\xea\x58\xd5\x76\x51\xcf\xab\x63\xdc\x52\x96\xe2\xb8\x5e\x1f\xff\x47\x34\x1d\x29\xff\x34\xfa\x8f\xd9\xf1\x77\x75\xa3\x8e\xcb\xe2\x83\x28\x1f\xe0\xab\x0d\xae\x6d\xe5\x83\xb9\x30\x59\x1d\x43\xd6\xc7\xb5\xc4\x44\x11\x48\xd7\xe8\xe1\xf1\xdc\x3a\x8b\xe8\xd1\xc8\x85\x8b\x57\xee\xcb\xa2\x2a\xd4\x6b\x9c\x62\x8b\x03\xe1\x28\xab\x27\x41\xa3\x74\x22\x16\x40\x22\xf4\x1b\x28\xa7\x94\x91\x39\x43\xf3\x2c\x3d\x45\x28\xc9\xbd\x89\x63\x2c\x4f\x1b\x3e\x68\x41\xd2\xa9\xec\x71\xc4\x9b\xe1\xce\x1a\x94\x42\xd9\x2d\x3f\xfd\x47\xfa\x8f\x24\x9b\x26\xf0\xef\x93\x53\xf6\x70\x60\x06\x5b\x03\xfe\xe1\x1d\xef\xa8\x84\x38\xf7\x25\xc4\x79\x77\xdc\x5c\x5b\x1d\xb8\x70\x3f\xfd\x43\xa6\xd9\x36\x71\xf5\xc7\x9f\xe1\x6b\x98\x31\x39\x0e\xb2\xc1\xba\x25\xc2\x08\xc1\x61\xf2\x52\x05\x2b\xf7\xa1\x15\x12\xe3\x16\x9f\x18\xaf\xec\x04\x58\x5c\x4a\xc7\xae\x13\x30\xaa\x1b\x92\x1f\x5b\x73\x4d\x5c\x53\xf5\x4f\x88\xb9\xce\x8b\xf2\x42\x28\x58\x97\x2f\x84\x59\x2d\x2f\x0d\xe1\xc9\xc7\x3f\xd5\xed\xf1\xe6\xa3\x11\xf7\x8e\x8c\xaf\xbf\x28\x2a\x6f\x09\x1f\xbb\xbe\x10\x77\xc7\xb5\xe3\xda\x05\x14\x79\xdd\x2d\x41\xe4\xff\x4b\x67\x8e\x60\xb6\xeb\x53\x5b\xd0\x2e\x33\x3c\xcd\xea\x6d\x7a\x38\x7e\xd2\x2a\xe3\xbd\x16\xd3\x41\x52\x17\x78\x57\x8d\x14\xd9\x9e\x37\x0f\x65\xfa\x49\xa3\xc1\xe3\xd2\xec\x15\x47\x65\xc1\xcb\x60\x14\x0c\x5e\xda\x02\xab\x8c\x8d\xd6\x58\x99\x76\x87\x24\x0e\xa0\x55\x8f\x4b\x4f\x2a\x58\xb1\xe1\x12\xcd\x08\x7b\x6d\xeb\x9d\xe8\xb4\xd4\x0f\x67\xba\x43\x47\x39\x73\xac\x32\x36\xf1\x5c\xf4\x2a\xd4\x3b\xc5\x75\xc0\x2f\xe8\x9d\xe5\xea\x73\x93\x6b\x29\xcb\xa6\xd6\x2d\x0b\x60\xcc\xde\x3d\x3a\x81\xbb\xd2\xab\xa1\x3b\xdc\xb9\x58\x61\xbf\xfb\x51\x16\x5e\x66\xf9\x0a\x4d\xd1\x07\x65\xe5\x85\x83\xdb\xf3\xf5\x1e\x3d\x8d\x51\x20\x7a\x9b\x2b\x90\x60\xd5\x03\x81\xdc\xea\x0e\x6c\x20\xb5\x65\x37\xca\x56\xe9\x29\x5b\x3b\x30\x59\xf0\x89\x11\xcd\x52\x16\x57\x63\xfe\xd8\xc7\x7e\x76\x5d\x1b\x05\x8f\x46\x23\xf6\xa5\x40\xc7\x94\xa2\xae\x16\xbf\xf3\x9e\x08\x64\x59\xe9\xd7\x63\x11\x3c\xb9\x72\xe9\xe8\x42\x17\xd4\xb5\xcb\x6b\x2b\xb8\xfd\xc1\x12\xbb\x84\x16\x07\xc2\x3f\xb1\x84\x83\x02\x0d\x8b\x7a\xd0\x6e\xbf\xb7\x74\x03\xef\x2d\x39\xf0\xa6\xb7\x36\x78\xb9\xc1\x7c\xf4\x05\xbd\x71\xc5\xe4\xa7\x34\x8a\x9f\xca\xe2\xf0\x2b\xa4\xf8\xfe\x84\xc6\x19\x7e\x24\x9c\xd0\x4b\xa0\xdc\xe1\xbd\xb3\x65\xe1\x36\xda\xc9\xbf\x69\x49\xc9\xaf\xa9\xd5\x18\xd8\x7b\xba\x38\xee\xd4\x68\xbd\x69\x63\x5f\xe8\x13\x10\xc4\xf3\x34\x46\x46\x09\x7e\x50\xa9\xd3\x3f\xc5\x89\xee\xd0\xed\x4e\xa2\x92\xb9\x04\x93\x6a\x4f\x0f\xce\x5d\x34\xca\x52\x96\x2a\xec\x75\x2d\x01\xf3\xb3\x6f\xef\xd1\xdb\x37\xa1\xc3\xf5\x67\x4e\xcf\x36\xf2\x65\xb0\x6b\xf4\xbe\x3e\x1a\x9c\x23\x0e\xae\x1b\x2a\x0c\x19\x66\x49\xe0\x84\xe0\x55\x62\x74\xb3\x3d\xb4\x77\xd9\xfd\x44\x0e\x6a\xf4\x29\x1b\xa0\x55\xa4\x7a\xdb\xd2\xa0\x6a\xf2\x60\xd5\xe4\xc1\xaa\x41\x9d\x64\x50\x9e\xc3\xb5\x72\x99\x8b\xac\xbf\x85\x75\xbf\x53\xe5\x7c\x2b\xf5\xef\x23\xab\xee\x19\x53\x2f\xd8\x82\x05\x9d\x56\x65\xb4\x97\xde\x42\xff\xf3\x29\xf3\xac\xd3\xc6\xc2\x24\xb3\x1e\x0a\x88\xf4\x30\xa2\x22\xb7\xf6\x80\x61\xe1\xce\xc9\x98\x3c\xeb\xaf\x4a\x83\x37\x3c\xcd\xa8\x01\x82\x7f\xb4\x2a\x9d\x44\x31\xa7\xd0\x01\x83\x66\xa6\xba\x03\xdc\x21\xd1\x20\xec\x77\xd4\xa4\x9e\xa0\xbf\x80\x4f\x2a\x16\x10\xdc\x06\xa5\x31\x5a\x16\x7b\x9f\xd6\x1f\x47\xb6\x6e\x9d\xfc\x9d\x16\x5d\xbd\x82\xd0\xdf\xad\x53\x85\x75\xfa\x50\xd5\x77\xd5\xd8\xac\x74\x5a\x19\x56\xb1\xfa\x90\xa8\x9c\x87\x8a\x9a\x81\xd0\x46\x59\xc3\xe7\xe7\xcd\x73\xeb\x4d\x77\xde\x58\xcd\xcd\x8e\xe7\x69\x93\x1d\xed\xc2\xce\xe3\x78\x06\xae\xd3\x5d\xc6\x27\x73\xba\x1f\x59\xf5\x3f\x32\xe7\xfd\xba\xc0\xd4\xf8\x94\xdd\xc2\xff\x08\xe4\x8f\xc3\xaf\x21\xcd\xfe\xe1\x53\xb1\xda\x2c\x8e\xbd\xa5\x7e\x6c\xc3\xbc\xb5\x6c\x15\x66\xce\x7a\x07\xae\x43\x2b\x62\xe1\x8f\x54\xcb\x6a\xd2\x6f\x8c\x60\xa2\xfb\x13\xca\x53\xbc\x09\x2b\x7f\x19\xb1\xd5\x1a\x21\x00\x04\x9a\x4c\x94\xb5\x40\x95\x1d\x64\x97\x5d\xea\x42\xad\xde\x47\x17\xef\x6f\xfe\x57\xc5\xed\xa9\x0f\xff\x68\x91\x07\x32\xf7\x1f\x17\x26\x06\x49\x2d\x0e\x5d\x9f\x88\xe1\x09\x07\x2e\xc1\x55\x76\x54\xb7\x2d\xc1\x9f\x63\x67\x1e\x6a\x8c\x60\xaa\xb6\x95\xac\x19\x5a\x5b\x5a\xc0\x85\xe3\xc6\xd8\x63\x8a\x8f\x14\x2f\xa4\x95\x38\x06\xe3\xcc\xdd\x61\x99\xfc\x90\xb8\xe1\x49\x1a\x9f\x24\x23\x8d\xdf\xef\x19\xf0\x72\xb8\xd0\xf3\xae\xef\x1f\xa0\x1e\xd7\x87\x16\x95\x2b\x4e\xa2\x68\x0a\xbe\x0b\x32\xaf\x56\xf5\x86\xd0\x69\xc7\x4c\xd5\xc1\x70\x47\x33\x60\x04\x3f\x64\x59\x71\xc0\x8e\xee\xdf\xb0\xdf\xe9\x19\x47\x38\x6d\x8f\xf4\x66\x34\xc0\xae\xf4\x0c\xe0\x16\xc2\x6e\x5e\x00\xf2\xd4\x1f\x82\xee\xdb\xda\x9c\x28\xf6\x0c\x90\x5b\x06\x43\x95\x3e\xda\x18\x5c\xe8\x38\xd7\x42\xbd\xfa\xfe\x6f\x63\xa0\x01\xfa\xad\x7e\x25\x2c\x6c\x3f\x17\x06\x6a\x24\xb0\x34\x62\x05\x97\x84\x54\x43\xcb\x3e\x8c\x1b\xc7\x0e\x32\xbb\x3b\xa9\x75\x2e\x26\x95\xa9\x15\x6d\x5b\x39\xa4\x98\xea\xec\x01\xc7\xdf\x5b\x53\x57\xfc\x4b\xdb\x76\xcc\x70\xcb\x33\x60\x8e\x63\xef\xa1\x6d\x2b\x71\x77\x6c\x0d\xce\x49\xe4\x6d\xa0\x11\x85\xc1\x65\x6a\x5b\xf4\x8d\x42\xfe\xff\xe4\xfd\x6b\x77\xdb\xb6\xb7\x2f\x0a\xbf\xd7\xa7\xb0\xb9\x3b\xf4\x27\x86\x61\x55\x4e\xbb\xd7\x5a\x8f\x5c\xd4\x7f\xc7\x56\x12\xb7\xbe\xd5\x76\x92\xa6\x1a\xda\x5a\xb4\x04\x59\xa8\x29\x50\x05\x21\x3b\xae\xc4\xef\xfe\x0c\x4c\x5c\x08\xde\x64\x27\x6d\xf7\x3e\xfb\x9c\xbe\x68\x2c\x12\xc4\x75\x62\x62\x62\x5e\x7e\xd3\xdf\xef\x1e\xf3\x58\xb1\x39\x90\x43\x8f\x62\x43\x18\x3d\x8a\xf5\x5c\xf7\x68\xd6\x73\xaf\x65\xc7\xfc\xb5\x5e\xe7\x25\x81\xc1\xd8\x87\xe6\x23\x69\x56\x6a\xbd\xa6\x59\x16\x32\xcc\xb4\xcf\xad\xea\x9a\x5d\x12\xeb\xec\xb6\xea\x9f\x1f\xbe\x3e\xed\x8f\x2e\x2e\x6f\x4e\x2e\xce\x0f\x4f\x47\x6f\xfa\x87\x37\xef\xaf\xfa\xd7\xbd\xed\x3d\xdc\xff\xf5\xa6\x7f\x7e\x3c\xba\xbc\xba\xb8\xb9\xb8\xf9\x74\xd9\xbf\xee\xad\x74\x3e\xa7\xed\x2e\xb6\xe3\x57\x7f\xeb\xeb\x47\x6f\xbb\x9b\xe1\xd3\x8b\xb7\xa3\xeb\x9b\xc3\xa3\x9f\x6f\xae\x0e\x8f\xfa\xa3\x8b\xf3\xd1\x71\xff\xf2\xaa\x7f\x74\xa8\xaa\x57\x65\x55\x81\x0f\xfd\xab\x6b\xf3\xf3\xea\xf0\xe4\xba\x5a\x6c\x0f\x5f\xdf\x5c\xbd\x3f\x52\x1d\x81\xe6\xdf\x9c\x9c\xf6\xd5\xd3\xd1\xe1\xe5\xe5\xe9\x89\x2e\x35\xba\xe9\x9f\x5d\x9e\x1e\xde\xf4\x47\x1f\xaf\x0e\x2f\x2f\xfb\x57\xaa\xba\xfc\xe1\xc5\xf9\xe9\xa7\xd1\xdb\xd3\x93\xb3\xb3\xfe\xd5\xe8\xe8\xe2\xec\xf2\xe2\xbc\x7f\x7e\x03\xc3\x1a\xfd\xf4\xcb\xfb\xfe\xd5\xa7\xd1\xc9\xf9\x4d\xff\xed\x95\xeb\xd9\xe8\xb8\xff\xe6\xf0\xfd\xe9\xcd\xe8\xf0\xfa\xd3\xf9\xd1\xe8\xe2\xf5\x75\xff\x4a\xf5\x14\x3e\xb9\xea\x5f\xf5\xcf\x8f\xfb\x57\xa3\xd3\x8b\x8b\xcb\xd1\xe9\xc9\xd9\xc9\x4d\x6f\x8f\x7e\x87\xfb\x67\xaf\xe1\xe1\xe1\xf1\xe8\xdd\xc5\xc5\xcf\xd7\xbd\x55\x86\xdd\x14\xae\xb2\xac\xa5\xf7\x42\x84\x4b\x31\xc0\x15\x92\xa4\x4e\xe4\xf6\xe4\x1d\x93\xb9\x0b\xb4\x2c\xb3\x28\xbd\x78\xe4\x97\x46\x7c\x02\x24\xc8\xa0\xb2\x40\x81\x3e\x9c\x82\x72\xb7\xe0\xb9\x15\x0d\xa3\x81\x18\xb6\x20\x8e\x8c\x1f\xa8\xbf\x35\xf6\x0a\x1d\x88\x61\x0f\xb0\xae\x79\xbb\x1d\xea\xe7\xe0\xbb\x32\x10\x43\xad\x5e\x54\xc7\x4a\xa5\xc5\x92\xc9\xb4\x6e\x68\x2e\xe1\x1b\x61\x28\xaa\xd6\xd0\x31\x77\x6c\x6d\x45\x36\xbf\xb0\xec\xbc\x79\x7f\x7e\x04\x0b\xed\x8a\x8e\xe0\x5b\x45\x3a\xd7\xaa\x8b\x35\x55\xb9\x30\x10\x53\x99\xfd\x8d\x70\x5d\x69\x1d\x70\x62\x8a\xc2\x0f\x1d\x00\xac\xb7\xad\x7e\xde\xda\xd0\xe3\xe4\xaf\xf6\x32\xd9\xd4\xaf\x24\xd3\x96\x02\xda\x29\xaf\x66\xab\x6e\x96\xd3\xdc\x1b\x1a\x59\xfa\x59\xe6\xc0\xd1\x65\xfa\x59\x22\x97\xfd\x69\xb0\x1c\xb6\x8a\x39\xc7\x20\x86\x3f\xaa\xb4\xab\x24\xe1\xb8\x92\x69\xcd\x9d\x3f\x35\xf6\x16\x9a\x21\x4d\x3b\x63\x42\x3b\x76\x5f\xd4\x76\x7f\xec\xba\x3f\x76\xdd\x9f\xaa\xee\x8f\xd1\xb8\xdc\xf7\xa9\xee\x9e\xad\x6f\x30\x35\xa4\x3a\x1e\x4c\x87\x48\x71\x3c\xcd\xef\xfa\xe7\x1f\xd6\x6b\xa6\xf6\x5f\xf3\xb9\x2c\x44\x22\x76\x21\xb9\x2d\xe3\x77\x55\x7f\xdb\x0d\x8e\xee\x1a\x3d\x14\x0e\xc2\x0b\x83\xad\x56\x13\xb6\x6c\x8e\xd3\x4a\x09\x8a\x56\xd2\x1d\xa4\xc7\x2c\x5d\x44\x72\x3c\xbb\x30\xd8\x7d\x35\x15\x09\x53\x51\x73\x51\xb5\x0c\xba\xc6\x84\x83\x09\xee\x46\x27\x54\xf6\xce\x5c\x81\x39\x59\xdd\x51\xb9\x65\xc0\xe0\xfc\x7e\x2a\x4e\x55\xfc\x90\x37\x4e\x9a\x4d\x48\xb5\x9b\x2e\x17\x6a\x9e\x36\xf8\x29\x6f\xfc\x2c\x66\xb7\xdf\x4e\x22\x19\x8d\xa2\x49\xb4\x90\x0d\x1e\xa5\xf5\x9f\x39\x9b\xc6\x08\x5c\x4c\x5d\x0d\xcf\x38\x3d\x1b\x89\x57\x9f\xf5\x8e\x9e\x28\x0e\x8e\x23\x19\x1d\xda\x5e\xac\x28\x5f\xce\xa9\x88\x6e\x63\x00\xac\x2d\xa4\xf3\xcf\xa7\xcc\xfa\xd3\x66\x19\xc2\x8d\xf5\x3a\xb3\xfc\xb1\xea\xe6\x97\xb5\x20\xbc\x16\x5e\xbe\x16\x9b\x66\xa7\x6e\x85\x8c\x3f\x7f\xdd\xd4\x8b\x25\x40\x05\x7e\x9d\x27\x39\x11\x46\x14\x75\xc1\x9d\xf6\xa2\xa0\x93\x81\x8f\x23\x7e\x14\xc9\x28\x4e\xee\xfa\x5c\x0a\x46\xd3\xd7\x4f\x0d\x39\x7e\x82\x79\x32\xa1\x71\xa0\xcd\xaf\x81\xa4\xf3\x45\x1c\x49\x0a\xbf\x33\x3c\x7e\xae\x0e\xdd\x19\x10\xef\x0f\x51\x28\x3a\xe7\x2e\xed\xfb\xf9\xe1\x59\xff\xfa\xf2\xf0\xa8\x7f\x8d\x30\x73\x25\xc0\x82\x9e\x67\x39\x07\x5b\x2e\xd8\x69\xd9\xf4\x09\x41\xca\xcf\x6f\x02\x2f\x7b\xe6\x34\x11\xfd\x02\x44\x87\x77\x7c\xf3\xe6\xe3\x9b\xa3\x76\x3b\xc9\x31\xfc\x4d\x00\xdc\x80\x0f\x5b\x01\x34\x16\x10\xa2\x7b\x04\xfa\xac\x29\x0a\x23\xd4\x6e\x33\xad\x43\x81\x2e\x4d\xa2\x74\x46\x05\xfb\x93\x22\xc8\xb7\xab\x6f\x21\x89\xba\x83\x68\xe4\x66\x96\x65\xc8\x5b\x99\x2f\xd8\xcc\xd5\x5d\xf9\x45\xce\xe0\x62\xc9\xe3\x04\xe2\xfe\xab\x45\xe7\x54\x46\xf1\x5f\x22\x3d\x0c\x18\x38\x2f\x21\xc0\x88\x24\x65\x02\x64\x9c\x15\xf6\x99\xd6\x14\xa4\xcb\x05\x2d\x20\x14\xe5\x26\x1d\x6b\x89\x8c\x69\x94\xd2\x33\xc8\x9c\x04\x06\xd8\x04\x08\x45\x83\x33\x56\x76\xb7\x0b\x2f\x97\x52\xb0\xdb\xa5\xa4\xa7\x6c\xce\x64\xef\x3b\x9b\x37\xef\x4c\x51\xb3\xa2\x42\xb5\xf3\x8b\x75\xf7\x5c\xdd\x8a\x25\x68\xa4\xeb\x9a\x5c\x5c\x5e\x0f\x1e\xd5\x61\x00\x35\x02\x00\x5b\x63\x8e\x6c\x6b\x7f\xbd\xa3\x32\x2f\x1d\x1a\xba\xd7\x95\xb5\x68\xc8\x4b\x59\x4b\x73\x17\xbb\x7b\x70\x72\x49\x88\x06\x6a\x76\x55\x84\x1c\x53\xb8\x9d\xbb\x1d\x61\x68\x54\x74\x92\xdb\x94\x8a\x07\x9a\x17\xa5\x26\x49\x2d\x42\x38\xc9\x9c\xa2\xc1\x87\x7a\xa9\xdd\x4c\xf6\x6e\x1b\x2a\x1e\x28\x4a\x8b\x61\xa0\xbe\x0c\x70\x79\x84\xb2\x02\x22\x74\xa9\xac\xea\x98\x2b\x09\xc0\x5f\xaa\x43\x37\xc9\x91\x1a\x5b\x19\xa4\xa7\x12\xe7\xe4\x7c\x75\x60\xfb\xdd\x39\xef\x0e\x70\xd2\xf0\x9c\x9e\x43\xcd\xae\x7a\xc1\x0e\x45\x2d\xaa\xa4\x71\xa1\xf9\x47\xe6\xa0\xb9\xf5\xaa\x5d\xd1\x71\x22\x26\x69\x39\x12\x9d\x79\x48\xc3\x6a\xe1\x96\xf9\x0a\xe1\xd8\x28\xb7\xbc\x7e\x87\x14\xe1\xb1\x5b\x5b\x53\x67\x18\x63\xea\xb9\x2d\x4f\x61\x1e\xc3\x01\x35\x82\xfc\x8c\x8c\x2b\x0b\x6d\x9d\xed\xf5\xf2\xa5\x76\xf9\x74\x85\x80\x72\x84\x70\x0a\x8b\x6f\x1f\xa9\xf5\x98\x90\xd5\x84\x4d\x8e\x00\xba\xc0\x1f\x88\xc0\x09\x8e\x72\x46\x18\x13\xb1\x1f\xff\x20\x76\xa2\xfd\xd8\xea\x5c\xc7\x6a\x58\xbc\xa3\xc5\xc0\x43\x89\xb4\x0b\xe2\x8c\x14\xda\x18\xa3\x56\x43\x87\xc6\xd0\x21\x19\x0e\x66\x43\x94\x25\xed\x36\x0b\x05\x4e\xd4\x7e\x60\x71\x5c\xee\x4e\xc1\x44\x98\x59\x12\x81\xe6\xa3\xc9\x04\x24\xde\x0b\x5d\xb9\x40\xe1\x18\xf6\x3c\x9e\x20\x5c\xa0\xcd\xe5\xf3\xb4\x09\x15\x6a\x7a\xac\xd4\x09\x15\x56\x08\xb2\x4c\xbc\x58\x86\xb3\x5a\x9e\x53\x25\x5d\x35\x4e\x13\x6a\xf0\x97\x39\xda\xb3\x43\xcb\xf0\x84\x4a\x3a\xae\x91\x51\xb6\xf7\x14\x13\x8c\x97\x73\x67\xda\xda\xc8\xad\xca\x3c\xa1\x86\x5d\x69\x4b\x03\x4e\xea\x29\x3d\xaa\x50\x7a\x52\xa0\xf4\x54\xcd\x41\x38\x80\x42\x45\x46\xa5\xca\x19\xf2\x5f\x36\x10\xad\xd4\x41\x48\x21\xff\xb1\xbb\x5e\xb3\x1f\xbb\xea\x96\xa1\x8e\xe0\x74\x3c\xa3\x93\x65\x4c\x2f\xf8\x98\xa2\x30\x88\xb4\x42\x38\xd0\x84\x92\xbe\x8c\xe8\xf6\x1b\xc8\x4d\xfb\x86\xe1\x25\xaa\xd8\x4e\xbd\xe9\x6b\x20\xab\x08\x33\xbc\x44\x99\x46\xc8\xdf\x34\xa7\xa2\x32\x6b\x34\x77\x63\x36\x79\xa1\xf1\x38\x59\x72\xd9\x83\xd6\xee\xa8\x44\xa1\xc0\x81\xb6\x93\x04\xc8\x2e\x71\xcf\xf8\x1f\xfa\xeb\xad\x56\x45\x6f\xe2\x1e\xcd\x20\x43\x46\xdd\x69\xe4\x82\xe6\xf4\xea\xe6\x1d\x0a\x83\xda\x33\xd4\xcb\xf7\x4d\x44\xa7\x41\x54\x34\x9c\x36\x40\x07\xaa\xc8\x86\xf7\xba\xdf\x23\xc5\xb3\xa1\xa7\xe9\x05\x77\x52\xa0\x3a\x04\xa9\x63\xb1\xb4\x9c\xb7\xdb\xa5\xac\x81\x03\xb0\x27\x2b\x14\x09\xb3\x07\xd0\xb7\x85\x5a\x1a\x2f\xc9\x70\x6f\x90\x90\x66\x43\x1f\xaa\x86\x75\x98\x0f\x33\xdc\xd0\xcd\x2a\x3c\xaf\x56\xa3\xbb\x46\x93\x06\xc9\x56\x78\x27\xbc\xeb\x42\x65\xc7\xcb\x92\xd4\x2a\x95\xd4\x2a\xeb\xa4\x56\x6a\xfb\x2f\x07\x7c\x88\xac\x1b\x3a\x58\xa2\x7c\x99\x14\xb5\x84\xe6\xdc\x09\x88\xa3\x22\xc3\x39\xf9\x6d\x96\x68\x1c\xfb\xaf\x49\xfa\xb0\x72\xa4\xe6\xbb\xb7\x29\x7a\xfc\x10\xc5\x4b\x9a\x96\x08\xfd\xc8\x7b\x05\x26\x86\x4e\x4a\x23\x31\x9e\xfd\x4c\x9f\x1e\x55\x47\x4a\xc5\xed\x63\x5d\x54\x2f\x61\x6d\xbd\x6f\xbc\x57\xba\xf0\x38\x89\x93\xf2\x36\x3b\x52\xcf\xe0\xb5\x37\x78\xbf\x4b\xd5\x79\x58\x65\x5e\x51\xdb\x9d\x8d\xd3\x55\xdb\xa7\x67\x2a\x86\x8e\xd5\xb0\x2a\x6d\x21\x29\x1c\xb4\x35\xa5\xbc\x27\x59\xf1\x92\x11\x35\x5d\x32\xee\x62\x36\x9f\x97\x6f\x12\x3c\x99\xd0\x5d\xed\xb4\x1b\xe0\x00\xbe\xd9\xbd\x8d\x6e\x69\x5c\x17\x2f\xba\xf1\xe2\x61\xaa\xff\x36\x59\x8c\x55\x9d\xe3\x64\xbe\x60\x71\x83\x3a\xc1\x5e\x2c\x5e\x10\xbc\xea\xdd\x64\x6c\x0b\x82\x4e\xa9\xa0\x90\xab\xf1\xf9\xeb\x8d\x0b\x7e\x75\x5f\xe7\x6d\xdb\x47\xaa\xc9\xda\xba\x1e\x18\x7d\xac\x1f\x76\x2d\x36\x83\x2d\xc7\x00\xcb\xc0\x41\xf7\x7a\x77\x2d\x2a\x1e\x58\x43\xbf\x6b\x6b\xca\x2f\x67\xb6\xaf\x8f\x4c\x50\xc0\xcd\x8e\x64\x6d\x35\x5e\xf8\x70\x20\xd2\x87\xc2\xc4\xa9\xc5\xae\x5f\x8f\x64\x29\x0b\x97\xc0\x97\x84\xb2\xe3\x02\x12\x6a\x9e\x4d\x1a\xcf\xf1\x03\x7e\xc2\x77\xf8\x16\x8f\x74\xea\x40\x7c\x8d\x2f\x9a\x4c\x67\xf7\x21\x5a\x01\xf8\xc3\x16\x25\x27\xe1\x20\x50\x74\x93\x70\xca\x65\x6f\xd7\x50\x74\x90\x67\x88\xbf\xaf\x03\x4e\xca\x30\xcd\x83\x3a\x0e\x4b\xd5\x59\x45\x85\xa3\xc7\xde\x3c\x62\xdc\xab\xf2\xf0\xd9\x2a\x6f\xbe\xb4\xca\x9b\x67\xab\x3c\xfa\xd2\x2a\x8f\x9e\xad\xf2\xac\xa1\xca\x9e\x9b\xd0\xf4\xdb\x9a\x19\x3d\x7b\xb6\xe2\xab\xa6\x8a\x77\x45\x92\xf8\x55\x5d\x3d\x5b\xd5\xe5\x4b\xab\xba\x7c\xb6\xaa\xdf\xbf\x84\x6c\x7e\x7f\xb6\xba\xe3\xaf\x9b\xbd\xe3\x67\x2b\x3e\xff\xba\x8a\xcf\x9f\xad\xf8\xa4\x88\xb2\xb6\x5e\x43\x0a\x44\x03\x73\x8d\x10\xa6\x1d\x11\x3d\x12\x89\x29\x48\xdb\xa7\xf9\x86\x7b\x53\xf2\x3b\xff\x33\x84\x83\xcc\x76\xcc\x04\x5d\x20\xf0\xc0\xa4\xee\x31\x79\x83\x69\x67\x46\xe3\x05\x15\xe4\x0f\x4c\x3b\x34\x1d\x47\x0b\xda\xff\x0c\x80\x78\x45\x07\xa8\xc2\xcd\x7d\xdb\xbb\xb9\xb3\x69\x08\xc6\x71\x99\xbc\xbb\x39\x3b\xcd\x23\x3c\xf5\x6f\x1d\x60\xa9\xf3\x59\x53\xf3\x32\x08\x20\x44\x96\xba\x3c\xaa\xc6\xe5\x52\xdd\xe9\xdd\xdf\x90\x08\x91\x49\xeb\x48\xe3\xea\xcd\x23\x04\x9d\x66\x4e\xe2\x48\x02\xa4\xc0\x4c\xce\xe3\xeb\x68\x4a\x49\x2a\x31\xed\xb0\x54\x75\x00\x7e\x2f\xd5\xef\x11\x04\x96\x5f\x51\x3e\xa1\x82\x8a\xd4\x5f\x8b\x4f\x36\xfc\x8f\x74\x55\x3d\x02\xca\x5c\x53\x29\x63\x1f\x8d\x1a\xad\xf4\x38\xc8\x37\xb2\xdd\x0e\xbf\x91\xa4\x6f\x8f\x67\xf5\x2f\x15\x21\x48\x9b\x4b\x80\x02\x5e\x0a\x41\xb9\xbc\x5a\xf2\xd3\x24\x59\xa0\x10\xad\xd7\xcb\xce\x6d\x34\xbe\xbf\x5d\x0a\x4e\xf3\x7b\x8f\x77\xe5\x01\xcd\xed\xcf\x32\xf7\x75\xfe\x46\xda\x9c\xe5\xc6\x96\x71\x63\x57\xad\xb4\x2a\x54\x94\x85\x49\x6f\xbe\xc4\x80\x0e\x8d\x81\xa3\xe6\x7b\x8f\xd8\xa0\x24\x01\xab\xca\x2c\x4a\x6b\xdb\x72\x25\xab\xed\x95\xba\x98\xd6\x51\xba\x28\xf5\xa3\xe8\x61\x44\x8d\x89\x25\xa5\x72\xb9\xe8\xf3\x3b\xc6\xa9\xf3\x24\x29\x94\x73\x61\x14\x61\xa0\x4e\xf2\xde\x6e\xb2\x94\x31\x95\x01\x3e\xe6\xb0\x41\xdc\xdb\x9c\x11\xd9\x12\x57\x50\xc2\xb9\x5a\x95\x2b\xc8\x15\xe0\xb8\xfa\x71\xe9\x4b\x73\xe8\xf7\x76\x27\xc9\x7c\x57\x03\x4c\x2a\x99\xc2\xe2\x13\x05\xd8\x2f\x61\x9e\x6d\xaa\x42\x0a\xaa\x0e\x0a\x83\x97\xa4\xe5\x8b\x67\x2b\x73\x63\x0d\xbb\xf8\x31\xc7\xf4\x40\xe1\x59\x88\x10\x3e\x2a\xcd\x87\xab\xc3\x48\x0e\x45\x31\x67\x2a\x37\xd6\x78\xa4\x6a\xbc\x29\xcd\x5f\xb9\xd0\x8d\x2a\x14\x14\x65\x1e\xbf\x15\x7d\x00\x96\xa6\xc1\x9b\xf4\x5c\xbc\x2c\xd7\x7c\x18\x22\x60\x7f\x45\xcf\xe4\x30\xd0\xcc\x2b\xc0\x2b\x2f\xa4\xba\xb7\xbd\x97\x15\x47\xae\x4b\xf5\xe2\x64\x1c\xe0\x99\x28\xbe\xf3\xce\x18\x49\x3f\xcb\xdd\x29\xa3\xf1\x24\xc0\x9f\x69\x63\xb1\xf1\x8c\x8e\xef\x6f\x93\xcf\x01\x7e\x6c\x2c\x14\x33\x7e\xbf\x2b\x93\x00\x9f\x35\x16\x61\x7c\xb1\x54\xf3\x2e\x1a\xa8\xd6\x3b\x4b\x4c\xd1\x33\xde\x54\x97\xea\x79\x24\x68\x14\xe0\x6b\x8a\x5a\x77\x9d\xfe\xf9\x87\xce\xb3\x0e\x1b\xeb\xf5\x86\xf5\xbe\x57\x4b\x79\xab\x37\x36\x6c\xc9\xc3\x3c\xcf\x4b\xc3\xbe\xac\x23\xed\x5a\x52\x0b\x74\x0e\x84\x8b\x05\x35\xfe\xa3\x45\x02\xaf\xdb\x0c\x25\x9a\x11\x86\x8b\x07\x40\x6d\xfe\xe7\x75\x0d\x36\x6c\x03\xd5\xd2\xed\x92\xc5\x13\x20\x20\xed\xaa\x57\xb8\x18\xa7\x8f\x4c\x8e\x67\x21\xed\xdc\x26\x89\xf5\xc5\x56\xc7\x88\x6a\xfb\x2c\x99\x50\xb4\x1a\x47\x29\x55\x15\x32\x70\xac\x0b\x7a\x86\xd5\x7d\xee\xb8\x67\xaf\x75\x03\x9d\x5b\xc8\xef\x00\x10\x7a\xf0\x91\xa0\xb3\xa7\x89\x50\x64\x6f\x3f\x9a\x75\xec\x33\x96\xf0\x9a\xcf\xcc\x59\x93\x17\xd7\x40\xbd\xd5\x92\x90\x6d\xaa\x99\xd3\xb8\x21\x07\xde\xb0\x5e\xb2\x51\xbd\x49\xcf\xeb\xa8\xad\x7a\x23\x27\xb9\x54\x94\xf5\xae\xb9\x6e\x25\x35\xde\x38\x9e\x50\xfe\xfa\xca\x30\x82\x7c\x3d\xed\xa7\xd0\x85\x00\xff\x24\x9b\x5e\xab\xfb\x93\x0c\xf0\x6f\x12\xe1\xb9\x41\x51\x53\x82\xcb\xcb\xc9\x76\xb9\x98\x44\x92\x36\x93\xad\x3d\x06\x50\xab\x91\xde\xdc\x49\x51\x47\x6f\x36\xd0\xd0\xf2\xf8\x96\x27\xd0\xcd\x3a\xc7\x17\x67\x5a\x13\x9a\x1a\xb4\xe0\xc6\x46\x6a\xce\x92\x97\x34\x87\x05\xb1\xf3\x72\x00\xcd\xdd\x08\x4a\x8f\xbc\x6a\x7a\x9f\x3b\xe7\xc9\x84\xd6\xbc\xf1\x7b\x6a\xc0\x8c\x33\x2d\x72\xe9\x0e\x9e\x45\x63\x91\x14\xcf\xfb\x3e\xd7\x4a\x2c\xcd\x62\x98\xd4\x26\xfb\x37\x89\x20\xe7\x14\xd3\xce\x38\x5a\x44\xb7\x2c\x66\x92\xd1\x3a\x4f\xe4\xaf\x87\x7b\xd2\x5a\xdb\xed\x6e\xcb\xc6\xd4\xac\x20\xa9\xe4\x29\x9b\xd2\xa3\xa7\x71\x4c\x6d\x8a\xa3\xb4\x67\x71\xea\x4c\xda\x49\x55\x62\x5c\x28\x81\x30\x20\x10\x00\xbe\xa1\x57\x3a\x7f\x88\xb0\x26\x99\x77\x49\x72\xdf\x13\x99\xe1\xa5\x47\x96\x6d\x1b\xf8\x81\xba\x58\x8e\x96\x20\x17\x1d\xc7\xaa\x47\x67\x87\xe7\x87\x6f\xfb\x57\xa3\xeb\x9b\xab\x93\xf3\xb7\xa3\xd3\x8b\x8b\x9f\xdf\x5f\xd6\x20\x06\xd2\x03\x5f\xed\xe8\xf4\x78\xda\x67\xd1\x3b\x30\x76\xe7\xba\x69\x30\xa5\x65\x3d\x27\x55\xc7\x22\x5c\x19\x7b\x5b\x4f\x60\xab\x4a\xe8\x6d\xef\x99\x04\xc4\xae\x82\x20\xc3\xd2\x0a\x7d\x1b\xc6\x63\x97\x6b\x2c\xfc\x94\xb2\x00\x23\x64\x2b\x6f\xb7\xbd\x5a\x01\xec\x1c\x52\xb9\x39\x5c\x2c\x17\x20\x02\x73\x67\x32\x86\x8b\xfa\xa9\xab\x19\x05\xad\x19\x85\x49\x01\x2e\xfc\x41\x94\x2b\xfe\xcc\x31\xed\xd8\x82\x47\x9a\x18\x4b\xb4\x98\xb7\xb8\xca\xb2\x66\x3f\x95\x7c\xdf\xbe\xd0\x39\xc5\xdf\xea\x1b\x3d\x60\x6a\x36\xe2\x97\x34\x51\xfe\x76\x63\x5b\x2c\xbd\x36\x47\x1a\xf0\xbe\x37\x4c\xa4\x90\x31\xe3\xc5\x0d\x36\x55\xb0\xb1\xd5\x06\x76\xf3\xc2\x46\x1b\xd9\x95\xe6\x9e\x17\x20\xd8\x7f\x60\xf4\x91\xd0\x0e\x98\x48\xae\xa5\x8e\xc9\x3f\x39\xff\x70\xf1\x73\x9f\xd0\xce\x7b\xb5\x7d\x55\x23\x57\x56\x3b\x49\x68\xe7\xf0\x36\x95\x22\x1a\x57\xe9\x9e\x76\x46\xf4\xf3\x82\x0a\x06\x4a\xc2\xd8\x30\x3d\xda\x39\x51\x14\xa8\x93\xa8\xdb\xeb\x27\x3c\xa5\x42\x7a\xbf\xbd\x3f\xd5\xa5\xd5\x38\x42\xd2\x4e\x3f\x3f\x83\x08\xed\xbc\xd3\xb7\x75\xda\xb9\xba\xb8\xb8\x19\x5d\xf5\xdf\x00\x78\x9e\xe9\x08\xa1\x9d\x53\xc6\xef\xfd\xdf\x37\xf4\xb3\x3c\x14\x34\x32\x7f\x42\xe2\x5b\xf5\x89\x91\x61\x55\x45\xde\x79\xeb\x7b\x79\xfc\xd9\x0c\xb9\x67\x82\x02\xc6\x1a\x60\xd6\xa0\x8b\xa8\x6a\xd9\xc4\xa0\x73\x50\xa9\x5a\x54\xff\x38\xdb\x7c\x1e\x3f\xdf\x04\xd6\x21\xb5\xad\x23\x77\x00\x28\xa5\xa1\x36\x2d\xda\xa8\x0a\xda\xb1\xf7\x05\xbc\x02\x85\x75\x4f\x66\x06\x57\x0c\xbf\x23\x6f\xc2\x15\x9b\xf4\x82\xd9\xef\xb3\xcf\xef\x13\xb1\x0c\xf0\x6d\x9c\x8c\xef\x7b\xff\x5a\x05\xe9\xd3\xfc\x36\x89\xd3\xa0\x37\x18\x62\xc8\x64\x02\x59\x14\xd4\xef\xc1\x1e\x1e\xbc\xfa\x2f\xec\x31\x24\x3c\x18\xbc\xfa\x0e\x77\xf1\x60\x38\x1c\xc2\x15\x7d\x88\xa7\x51\x9c\xd2\xe1\x10\x07\xb3\x28\xed\x3f\x44\x71\xd0\x83\x27\xd9\xbf\xb0\x1a\x6e\x6f\xa5\xf5\xee\xe0\x85\x12\x2c\xa2\xf1\x7d\x74\x47\xd3\x6f\x1b\x15\xf7\xe0\x13\x64\x65\xfe\xf4\x5b\x25\xfc\x74\x66\xb7\x69\xa0\xd5\xff\x85\xb5\x79\x07\xcb\xf2\x5a\x4d\x52\xda\xd1\x83\x40\x61\x70\xd5\x57\xc7\xc4\xfb\x9b\xfe\xe8\xe6\xf0\x6d\xa0\x7d\x3f\xde\x93\xa8\xf3\x46\x44\x73\xfa\x98\x88\xfb\xbf\xc5\x53\x67\xf0\x7a\x48\xe2\xce\x31\x13\xf2\x49\x6d\x87\x9b\xe8\xce\x21\x68\x65\x58\x50\x35\x61\x4b\x49\xeb\x2d\x69\xfb\xa0\x15\xf9\x3d\x61\x1c\x85\x35\x6a\x81\xc1\xeb\xa1\xce\xe8\xd7\x99\xa8\xea\xc1\x2a\x0e\x83\x37\xa4\xfe\x1e\xbf\xef\xb0\x54\xff\x30\x7a\x2c\xb2\xdd\x55\x82\x61\xa4\x4e\x04\x37\x4e\xb0\x1b\xa2\xf0\xbd\x9e\x82\x8f\xcf\x50\xaf\xe9\xb1\xa3\xde\x4a\x03\x2f\xa1\x5b\xc7\xff\xed\xf8\xfd\xaa\xb3\x32\xc4\xdd\x1f\x25\x1d\xdd\x47\x25\xfb\xb8\xb7\x1f\xf2\xb7\x30\x34\xe3\x30\xac\x36\xc1\x81\x8e\xeb\xd5\x92\x8e\x13\x34\xa8\x36\xb9\x7f\x2a\xd1\xc3\xfb\xcb\xe3\xc3\x9b\x7e\x80\xf0\xdb\xd2\x0b\xcd\xd4\x40\x38\x35\xfc\xed\xad\x06\xba\x2f\x95\x3b\x04\xa7\xeb\x00\xe1\x6f\x1a\x31\x50\xea\xe6\xe6\x8e\xd6\x62\x78\xff\x66\xe9\xc4\xe1\x60\xc0\xfe\xfc\xa5\x18\x84\x68\x2b\x97\x36\xad\xbd\xf5\x24\xd1\x60\x51\x26\xb1\x3c\xd2\x59\x14\x50\x27\x8e\x52\x79\x45\x1f\x18\xe8\x28\x35\x2e\x0a\x3c\x03\x13\x9d\x79\x90\xb9\xb9\x14\x1d\xc6\x67\x54\x30\x99\x9e\x26\x49\x4a\x11\xe4\x9f\xc3\xd2\xeb\xfb\x03\x7c\x57\x4b\xbc\x1d\x19\xdd\x19\xdb\x7a\xa1\x59\x6b\x68\x77\xcd\xb6\x4a\xd1\x66\xea\x6a\x01\xe8\x39\x30\x78\x0f\xaf\x3d\xef\xa8\x4f\x2d\xa1\xf1\x1f\x29\x0c\xcd\xf4\x2c\x34\xe1\xbf\x59\xf8\x0d\xc2\xbf\x36\xcd\x5c\x2e\x3a\xda\xb0\x5d\x3f\x27\xbf\x74\x93\x07\xc9\x1a\x05\xe5\xb5\xb8\x1c\xe2\xf9\x69\xab\x61\xde\xf6\x90\xa7\x26\xe4\xb1\x99\x2a\xbc\x38\x42\xdb\x8f\x86\x00\xf0\xb0\x5a\x0c\x9c\x47\x7f\xb2\x28\x4b\x80\x8a\x69\x82\xbd\xb3\x30\xee\xc0\x01\xef\xce\x69\xcd\x05\x7e\x6b\x26\x33\x47\xc2\xb5\x4c\x4f\x4f\xd6\x57\x4c\x46\x2e\x14\x86\x5d\x1c\x77\x58\x0a\xdd\x82\x5d\x5c\x2c\xc4\xa6\x61\x4c\xfd\xac\x22\x30\x36\xf0\x1e\x61\xd3\x70\x5c\x7e\x15\xd1\x90\x0e\xe4\x50\xe3\x15\xfa\x2f\x67\x9d\xf7\xe7\xc7\xfd\x37\x27\xe7\xfd\x63\x25\x0e\xf4\xaf\xfa\xe7\x47\x7d\x0d\x04\x18\x76\xf1\x04\x30\x5c\xa2\xf1\x4c\x71\x6d\x14\xa2\x2c\x74\x34\x85\x4d\xea\x05\xaa\x33\x3e\x6d\x5e\x37\xaf\x27\xd4\xdb\xcb\x32\x0b\x7f\x41\xf8\xa7\x46\x92\x74\x41\xd3\x96\x28\x79\xed\x7e\xd6\x09\xd8\xcc\xa6\xc0\xdc\x01\xee\xfd\x4c\x9f\x88\xf0\x7e\xdf\x44\x77\x24\xce\x85\x32\xef\x14\x0a\xbb\x78\xac\xb6\xea\x9b\x44\x58\xf9\x11\x69\x04\x16\xcc\xd5\x73\x52\xa8\x04\xf3\xac\x69\x4d\x2d\x70\x7a\x1d\x94\xae\x3d\x33\xea\x19\x85\x37\x08\xcb\x30\xbc\x71\xe4\xae\x71\x63\xed\x04\xa4\xe7\x9c\x0f\x3e\x15\x53\x65\x42\x81\x54\x15\xa8\x56\x5a\xaa\xd2\xae\xc0\x6f\x08\x53\xfa\xfc\x12\xec\x6f\x9c\xfc\x5c\xc0\xad\x2c\x80\x83\x7d\x56\xac\x30\x21\x2f\x59\x8e\xb8\x73\x74\x71\x7e\x7d\x73\x78\x7e\xa3\xa4\x12\xcf\xa7\x5b\x2d\x05\x6c\x8c\x71\x32\xbf\x65\x9c\xa2\x70\xc0\x70\x32\x44\xff\xe0\x8a\xb8\x91\x95\x57\x45\x11\x82\xa8\x2c\x14\xf6\xd8\x2e\x66\x0e\x8a\xbf\x98\x29\x88\xb0\x76\xdb\xfa\x70\x01\x8e\x9c\xeb\x91\x7e\x58\x8c\xc3\x21\x79\x98\x16\x5f\xaf\xfd\x58\x1e\x62\xd3\x87\xe1\x88\x38\x25\x0a\xb8\xfc\x18\x2a\x89\xb0\x40\x00\x49\xa0\xe4\x23\xad\x4c\xa8\xa7\xf5\x08\x68\x3d\xc9\x5e\x4a\x52\x6e\x56\x72\x76\xd0\x4c\x5e\xb2\x99\xbc\x36\x1d\x3a\x8e\xc4\x24\x10\x4a\xad\xf4\x88\x45\x67\xf4\x60\x36\xbe\xf8\x2a\x1a\xa8\x1c\xde\xfe\x95\x41\xd7\x9d\x61\x6e\x26\xaf\xa8\xb2\xb6\xd1\xce\xba\x94\x05\x2b\x94\xd1\x5d\x51\x20\xc5\x5e\x21\x62\x66\xe5\x1b\x25\x47\xd5\x5c\x0f\x25\xd5\x1a\xa6\xaf\x9b\x31\xef\x98\xd6\xd4\xf3\xe2\x2d\x86\x45\xdd\xde\xd2\x7b\x56\xe4\x95\x0d\xbf\xf6\x88\x67\xd3\xb0\x7c\xa0\xe5\x10\xa5\x86\x84\xc0\xac\x0b\xc2\x24\x4b\x2f\x45\xf2\xf9\x09\x85\xc2\x3b\xa7\x2e\x05\x9b\x33\x7d\x09\xb6\xb4\x67\xc6\xf2\xc1\x0f\xed\x57\x67\x8c\xac\x08\x12\x32\x51\x72\x6f\xcd\x99\x54\x6c\x8f\xa2\x03\xbd\x88\x6e\xc4\x2f\xd8\x3b\xa0\xde\xb8\x11\x4b\x39\x7b\x0a\x10\xc2\x56\xc0\xf6\x79\xb5\x5f\x00\xf5\x5e\xda\x04\xcc\x12\xfe\x60\x70\x8f\xb2\x70\xa6\x84\x94\x09\xe4\x51\x8c\xe2\x5c\x54\xc1\xfc\x05\xec\x7b\xf3\x09\x6a\x8c\xf8\x8a\x77\x47\xe2\x2e\x85\x53\x53\xd1\x03\x50\x05\xe6\x5f\x23\xc8\x88\x9a\x45\x17\x28\xc7\xda\xb5\x19\x21\xa3\x18\x30\x8c\x79\x34\xa7\x13\x38\x1e\x2c\x43\x89\x08\x73\x94\xe1\x49\x88\x61\x82\xa3\xca\x6a\x43\xc6\x39\x7f\xbd\x37\x73\x76\x3d\x5c\xcb\xd0\xd5\x88\x15\x27\xf7\xbb\xa4\x98\x85\xee\x92\xea\x9c\xed\x92\xd7\x3d\xe7\x48\x00\xb9\x23\xad\x28\xc3\xfe\xf2\x4a\x58\x20\xce\xea\x5a\x94\xf7\xe6\xe0\xf5\x50\xef\x5a\x38\xfe\xbe\x6e\x85\xfe\xd2\x2c\xda\xae\xfe\x3d\xf3\xe8\x6e\x32\xfe\x7c\x26\xff\xe7\x29\x7b\xe3\x6c\xb8\xaf\x3d\xb2\x32\xe7\xa4\x6a\xcd\x8d\x23\x6a\x1c\xc7\x3f\x76\x93\x28\x5c\xab\xf0\xf6\xde\xcb\x24\xf4\x19\xf5\xee\x47\x03\x3a\x34\x1f\xd6\x5c\x90\x70\xfa\x17\x4f\x75\x68\x42\x1d\xdb\xb0\x1e\xe6\xa8\xf9\xbb\xc4\x38\xff\x10\xd7\xec\xd5\xd0\x5b\xa6\xbd\xe8\x1b\x71\xea\x74\xe1\x3b\xaa\x8f\x10\xe8\x8d\x9e\x5a\xa3\x1f\x92\x78\xb0\xba\xa7\x4f\xbd\xb7\x4d\xc1\xa7\xf9\xec\xbd\x1d\x66\xd9\x10\x69\x0a\xc8\xd5\x38\x4b\x7d\x5f\xca\x91\x04\x08\x35\xc0\xd5\xd2\x07\xae\x16\x44\xf7\x02\x7c\xb9\x1d\x8c\xb2\x07\xb5\x4e\xab\x20\x80\xb4\x26\x9d\x94\xe7\x1d\x36\xa6\xcf\x44\x84\xbb\x92\x53\xaf\xe4\x76\xd7\x03\xe2\xf6\x32\xa6\x6c\x57\xb2\xa5\x37\x1a\xd1\xd0\x7a\xed\xff\x74\xd6\x22\x55\xdb\x81\xce\xfc\xf7\x2b\x40\x10\x9a\x8b\x2a\xea\x41\x57\x0f\xf2\xdf\x9b\x4e\x7f\xa3\xc8\x9a\xd0\x92\x22\xea\xf8\xe4\xea\xe6\x93\xd6\x6a\xe2\x45\xf9\xe5\xe1\xd5\xdb\xeb\x00\xe1\x79\xf9\xb9\x55\x8b\x83\x9e\xcb\xe9\xc8\xe7\x5a\x2a\x7b\x28\x97\x3e\xb9\x1e\x1d\x9f\x5c\x5f\x1e\xde\x1c\xbd\x3b\x39\x7f\x3b\x3a\xbc\xb9\xb9\x52\xb5\x3e\x95\xcb\xbd\x3b\xbc\x1e\xbd\x3e\xbd\x38\xfa\x39\x40\xf8\xae\xfc\xf2\xf5\xc5\xfb\xf3\x63\xf5\xd9\x2d\x25\x8b\xce\x51\x22\xe8\x07\x46\x1f\xad\xc2\x75\xd1\x39\x9a\xb1\x78\xa2\x1e\xa5\xd7\x3a\x0e\x14\x2f\x3a\xea\xe7\xb5\x8c\x24\xcd\x1f\x01\x7d\x42\xa0\x81\x7d\x16\x75\x74\xbc\xf8\x21\x2c\x5e\x5e\xb2\xfc\x5b\x55\x76\xc6\x3e\x33\x8e\xc3\xf0\x94\xac\xd4\x69\x6d\x1d\x43\xb6\xbb\xf8\x2b\x15\xbe\x0f\x74\x68\xd3\xcd\x0c\x26\xb4\x51\xfb\xab\x0b\xcc\x8d\x72\xe6\x57\x2f\xb5\xcb\xe0\x4e\x3d\x04\xbf\x77\x41\xb5\x15\xbe\xdc\x0d\x55\x71\xad\xa8\x0d\xbd\x0b\x51\x96\xa1\xc1\xb8\x73\x79\x75\x71\xd9\x57\xa4\x70\x7c\x72\x3c\x3a\x7a\x77\x78\xfe\xb6\x3f\x2c\xcb\xa6\xdb\xb6\xcf\xbe\x8a\x69\xb0\xa0\x43\x2c\x48\x0e\x70\x7f\x20\x07\x74\xd8\xb3\x36\x8e\x7a\x64\xbc\x4f\xc3\x76\x5b\xfd\xdf\x13\xff\x8c\xba\x03\x65\x19\x3e\x55\x4f\x0e\xa5\xac\x05\xfc\x75\x91\x37\x8a\xf3\x9c\x42\x0e\xd6\xe3\x8b\xb3\x4a\x69\x67\xea\x58\xa8\xc2\x6a\xf1\x6c\xba\x7a\x33\x7b\x70\xda\x11\x0f\x65\xf6\xfd\xd5\x09\x21\x64\xd6\xb9\xfe\xf0\x76\xe4\x02\x50\x74\x80\xe9\x2c\xc7\x75\xca\x05\x5a\x81\x01\xad\x9c\x81\x29\x15\xe4\xb0\x1c\x0a\xdc\x71\xdd\xf5\x3a\x88\xa4\x84\x54\xab\xc9\x81\xb0\xe3\x82\xb0\xda\x30\x42\x3d\x31\x88\x86\x6a\x14\x13\x36\xb9\xa2\x63\xca\x1e\xa8\x7a\x5d\x70\xec\x73\xaf\xd5\xda\x96\x5f\x3c\xb2\x38\xae\x7f\x33\x61\x13\xb8\xd0\xd4\x57\xa8\xbe\x7b\x5f\xba\xab\x95\xbe\x2b\xbd\x40\x6a\xab\xe7\x36\xaf\x5b\x8a\x6f\xe9\x06\xb8\x7a\xeb\x0d\xef\xdb\xb2\x6f\x69\x47\xd0\x64\x41\xb9\x0e\x3e\xf2\xb7\x90\xb1\x08\xa8\x9d\x94\x8b\x45\x97\x91\x88\xe6\x69\x6f\x30\xd4\x11\x46\xb5\x86\x88\x5b\x73\xe6\x8d\xa8\xb3\x45\x3d\xc8\xf4\xcf\xff\xbc\x7a\xf3\x22\x5b\xd4\x3f\x64\x60\xa2\xf3\x85\x7c\xb2\x16\x26\xfc\x48\xc9\x2d\x75\xa6\xa1\x38\x7a\x4a\x96\xb2\x37\xa2\x78\xec\x78\x51\x6f\x60\xe2\x47\x9c\xd7\xdb\x10\xcb\xe8\x4e\xb7\x6e\xfc\xd2\x5c\x38\xf6\x6b\xc6\x27\x8c\xdf\xa9\x8f\x14\xe5\x05\x38\x80\xaf\xe8\x24\xc0\x01\xe3\x13\x2a\xa9\x98\x33\xae\x7d\xfd\x26\x2c\x55\xbc\x44\xbd\x92\xd1\xad\x81\xb9\x08\x14\xc9\x07\x38\x88\x96\x32\x81\x04\xe1\x01\xb6\x29\x59\x55\xc1\x69\x22\xe6\xaa\x7d\xed\x8b\xe0\xdc\xf0\x6c\x55\xbd\xed\x3d\x5c\x68\x46\x3d\x98\xb0\xc9\x09\x4f\xa9\xb0\xd9\xd2\xbf\x22\xa6\x93\xea\x2f\x3b\x85\xba\x89\x73\xf8\xd0\x02\x83\xf7\x0a\x65\x78\x5c\x89\x59\x2c\x6a\x61\xbc\x99\x29\x34\x61\x9e\x1a\x0b\x98\xb3\xd2\x3e\x52\xfc\xf8\x45\x34\xfd\xad\x9b\x1d\xed\xf1\xd2\xa7\xb9\x6f\x4f\x8d\xde\x5f\x67\x7c\x54\x05\x3f\xfb\x14\xb1\x00\x9b\xb1\x3d\x68\x36\xd3\x87\xe7\x3c\xf9\x32\x0a\xd1\x31\xfb\x66\xb1\x55\xc7\x63\x2a\xed\xda\xa7\xd1\x83\xa6\x11\x61\x56\x3d\xb2\x3e\xb1\xea\x07\xe5\x63\x43\x5e\xea\xd7\x1c\x42\x6d\xcd\x0f\x9e\x58\x9b\x8b\x79\x20\xe1\x04\x0d\x70\x30\xa3\xec\x6e\x26\x81\x10\x17\x4b\x48\x52\x19\xe0\x20\x8e\x20\x3e\x26\x66\x29\xb8\xff\xea\x4a\xe7\x91\xa2\xc4\x39\x53\xcd\xcd\x97\xb1\x64\x0b\x08\xa3\x32\xa4\xb9\x88\xa4\xda\x61\x01\x0e\x52\xf6\xa7\x7a\x90\x4a\xba\x08\x70\x00\xe2\x69\x80\x83\x47\x36\x91\xb3\x60\x88\xe1\x77\x2f\x08\x34\xb5\xc2\xea\x1b\x31\x77\x82\xc2\x55\xad\xec\x19\xa8\x39\x0c\x32\x9c\xfa\x2f\xbd\x50\x53\xfd\xbe\x0a\x05\xac\x4f\x40\xbb\xbe\x56\xe1\x92\xdb\x09\x01\x4b\x7c\x8b\xf1\xad\xbe\xf3\xb9\xef\xd3\x01\x1d\x9a\x04\xb0\xd6\xff\xcb\x50\x84\xd9\x27\xa1\x59\x3b\xd4\x92\xe2\x69\xa5\xbd\x72\x08\xcd\xc6\x91\x1c\xcf\x42\x91\xdb\x00\xfb\x1a\xf0\x59\xbf\x27\x84\x66\xa1\x44\x1a\xcd\x16\x61\xa1\x78\x8c\x9a\x26\x8d\x4b\x62\xa6\x4e\xff\x98\x33\xfb\x47\xf4\x59\x03\x08\x2a\x8a\xcf\x7d\x14\x3e\x53\xfc\xf9\xcb\x48\xde\xa3\x40\x4d\xf4\xd7\x1b\x68\xb9\x89\x82\xc1\x8b\x76\x88\x73\x52\x77\xa4\x9c\xfb\xd8\xd6\x51\xb3\x48\x20\xa6\x6c\x9c\x40\x98\x9b\xa1\x95\x94\xc6\xda\xb5\xb0\xcf\x27\xfe\xcf\x6b\x19\x89\x1a\xca\x7f\x14\xd1\x22\x27\x4a\x4d\xfc\x9a\xac\x86\x58\xd5\x6f\xd0\x5d\x92\x38\x2d\x4e\x18\xf8\x77\x5c\x53\x7c\xfd\x15\xf3\x05\x23\xd2\xd3\x75\x41\xf1\xbd\x3b\xab\xee\xd8\xcd\xf9\xe7\x9d\x64\x51\x7b\x56\x05\x6d\x17\xdc\x52\xf6\xa0\xf8\x1e\x07\x6c\x0a\x6e\x13\xff\x13\xef\x19\x9f\x09\xbc\x2a\xbb\x59\x7c\x0f\xef\x82\x85\x3a\x46\x15\xdf\x84\x03\x2f\xab\x96\xc3\xc6\xfb\x22\x88\x19\xbf\xbf\x61\x32\xa6\xc1\xd0\xf3\xc0\x28\x7d\xff\x4f\x39\x65\x18\x67\x6e\x77\x6a\x1e\xba\x9c\x06\x53\x41\xe9\x9f\x34\x5c\xd9\x69\xaf\xd9\xd3\xce\x3a\x07\x9f\xde\x54\x3e\xcd\xd0\x7e\x78\x51\x77\x0c\xdf\x7b\xb4\x17\x05\x58\x24\x4b\x49\x7b\x87\x14\x6b\x0c\x0c\xfb\x47\xaa\xfe\x82\x7c\xf6\xea\x8f\x60\xac\x03\x4f\x76\x1f\x67\x94\x07\x9a\x5e\xa4\x9a\x36\xfd\xa7\xa0\xb1\x79\x66\x4e\x5c\xfb\x4b\xf1\x48\xfd\xb7\x76\x53\xd2\xb8\x1d\x81\xfe\x11\xe0\x38\x89\x14\x9d\x9b\xa7\xe6\x57\x7e\xee\x9a\xe7\xf9\x89\x6e\x42\x73\xd4\xf1\x5b\xb7\x57\x66\x82\x4e\x15\xbb\x85\xf5\x54\x07\x7c\x5c\x14\x02\x0c\xcf\x1e\xe6\xc7\x4c\xe1\xd8\xd0\x7d\xca\xbb\x51\x10\x25\x44\xc4\xb5\x90\xc6\xf8\xdd\x09\x2f\x3f\xb9\x58\xaa\x6a\xe9\x03\xe5\x52\x4f\xec\x38\x66\xe3\xfb\xe0\xcb\xef\x48\x2d\x4f\x8d\xe6\xaa\xd3\x20\xe2\x9a\x67\x3b\x20\xd6\x11\xe3\x0f\xc9\x3d\x84\x9f\x9b\x80\x4c\x75\x18\x3c\x19\xb7\x63\x14\x06\xbb\x36\x4e\x13\xe1\x91\x59\xbe\x2b\x58\x6b\x38\x33\xa2\x98\x45\x29\x0a\x03\xfb\x71\xc7\x2f\xa2\x1a\x2d\x7f\x26\xe0\x5a\xb9\xf9\x63\x28\xa2\x3e\xd4\x33\xfd\xfc\x77\xba\x9c\xfb\x4c\xe4\xfd\xcb\xcf\xb4\x00\x9e\x06\x38\xa8\xe9\x4e\x80\xeb\x35\x90\xf0\x49\x8e\x47\x40\xc8\xa1\x49\x71\x50\x9c\x09\x9a\x21\x3c\x32\xe4\x5e\x6e\x55\x03\x11\x60\xfd\x6f\xda\xd4\x10\xbc\xb5\x7a\x4e\x5d\xd4\x35\xbb\x0d\xcd\xaa\x9b\xa1\xd4\x7f\x4a\x2d\xd8\x8f\xf4\xb6\x2a\x37\x08\x4f\x9b\xda\x81\x97\xa5\x01\xdd\x50\x8d\xfd\xe0\xa1\x49\x6b\x84\x17\x2b\xb6\x6e\x14\x0e\xa8\x0f\x08\x52\x95\x0c\x0a\xc6\x2e\x96\x1e\x9b\x3a\x89\xc4\x90\x36\x1b\x9e\x17\xf6\xa9\xe2\x42\x7a\x0f\x55\x46\xe6\xed\x7d\xb5\x8c\x76\xa7\x55\x78\xda\xb6\xce\x79\x60\x0a\x98\x46\xbc\x8f\xd5\xdc\x35\x34\x51\x4b\x1b\x9a\xce\xe0\x0f\xbb\x8a\xc1\xc8\x4c\xb3\xb7\xcd\x0b\xbc\xad\x61\xfe\x6b\xea\xb7\x39\x15\xb7\x6d\x4f\x47\x2c\x3d\x84\xde\x69\xa0\x1d\x75\xe1\x7c\x4d\x0f\xbf\xa8\xbf\x95\x7d\xf3\x4f\x0f\x02\x3b\xf0\xed\x72\xcb\x20\xdc\x6d\x13\x22\x51\x89\x14\xcc\x18\xa5\x1a\xa3\xfb\x59\xc6\x62\xd2\x3e\x47\xba\x77\xc5\x8c\x15\x46\x85\x52\xec\x30\x20\x56\x07\xb7\x5a\xb2\xf4\x72\x7f\xb9\xb6\x8d\x7b\xbd\xbb\x1b\xa1\x96\x24\xe2\xc0\xe5\x2d\xdc\x0a\x50\x4f\x43\xc8\xe8\xd9\x1a\xba\x34\x8c\x06\x44\xcb\xcc\x1d\x36\xa8\xf8\x7a\x02\x1d\x64\x8d\x61\x47\x38\x22\xdd\xfd\x28\x57\xb7\x46\x3b\x3b\x88\x4d\xc3\xa4\x63\x47\xf9\x26\x11\x30\x43\x21\xc7\x0c\xcb\x41\x34\xc4\x14\x3b\x4b\xe4\x76\xb7\x95\x6f\xa8\xd2\x79\x51\x5d\x7f\x77\xdc\xf8\x64\x52\xb7\x27\x5c\xfe\x3b\xbf\x60\xbb\x5d\xda\x2a\x56\xd4\xf4\x9b\xdd\x65\x3c\xc8\x10\x2e\x1f\x54\x7f\xa1\x2f\x3a\x7d\x68\xa5\x37\xeb\x75\xa1\x37\xa8\xa1\x3b\xc9\x52\x06\x40\x33\x70\x70\x95\x29\x66\x1b\x14\x57\x2c\xbd\x66\x4a\x6e\x3d\x52\xe7\x27\xf2\xd2\x9d\x74\x3d\xe2\xe9\xdc\x2e\x6f\x6f\x63\x9a\xe6\x5e\x16\x70\x54\x1e\x6b\xd9\xd1\xe2\xa6\xd9\xab\xaf\xa6\x6c\xcc\xc8\x36\x5f\xaf\x83\x51\x4a\xe3\x69\x40\x08\x01\xcf\x0b\x9d\x77\xb5\xdd\x66\xed\x36\x2d\x55\x13\x22\x0c\xd0\xba\xe0\x70\x97\xca\x64\x71\x29\x92\x45\x74\x17\xe9\x19\xc1\x65\xc6\x98\x13\x79\x23\xf5\x43\xe4\x71\x71\x33\xf8\x04\x48\x2d\x54\x92\xa5\xd5\xb4\x40\xab\x4b\x0b\x34\x0f\x22\x10\x8e\xc9\x0a\x9e\x1b\x8d\x51\xaa\xe5\x38\x10\x3e\x12\x0f\x2f\xeb\xa1\x33\x8d\xa3\xbb\x3b\x3a\x39\x71\x28\x13\x48\xdd\xc0\x8c\xe3\x78\xc2\x3b\x2e\xa2\xd0\x24\x81\x1b\xdd\x51\x4e\x45\x24\xe9\x8d\x5b\xbc\x30\xb6\xc8\x0d\x48\x4d\x0a\x00\xde\x94\xcb\x94\x31\xd1\xb8\x45\x45\x2b\xed\xb1\x1a\xd0\x24\xda\xc9\xe9\x84\x24\xde\x8f\x9b\x24\xb4\x55\x65\x19\x56\xd2\xdd\xdf\xc0\xf7\x8d\xec\x5b\x60\x9e\xe6\xaf\x77\x20\x3f\x7a\x3d\x53\x4c\x29\x0a\xec\x06\x34\x5f\x36\xf1\xb7\x2d\xff\x99\xaa\xca\x97\xe5\xcc\x0a\xcb\xe2\x0a\x8b\xc2\x0a\xf3\xfa\x99\xe2\x1d\x3b\xdb\xef\xaf\x4e\x0d\x9a\xa7\x3a\x6c\x4d\x4b\xd5\x29\x29\x0d\xfe\x50\xd0\xd3\x24\x9a\x80\x18\xeb\x0b\xdc\x8d\xa7\x84\x16\x9e\x5c\x0a\xa2\x72\x35\x3a\xef\x5f\x1e\x76\x5f\x18\xb7\x3b\xa7\x4b\x1f\x55\x7b\x59\x23\x57\x59\x9e\x4d\x8b\xb3\x24\x49\x77\x5f\xfe\x60\xfd\x94\xf7\xa5\xc5\xa3\x13\xc4\xe6\x0c\xd6\x1d\x12\x6e\x6f\x65\xce\x42\xe5\xa6\x49\x2d\x48\x2f\xf8\x1f\xea\x72\x51\xd0\x3b\xd7\xbb\x96\x3b\xd1\xe6\xe3\x8c\xf2\x96\x9f\x4b\x12\xde\xa6\x54\x86\xde\xed\xc0\x28\x64\xa5\xf3\x0e\x8b\xe6\x90\x0f\x54\xb6\xdb\x60\x1e\x30\x3d\x47\x2b\x49\xa4\x01\x5d\x30\xa6\x8c\x27\x3a\xd4\x56\x4f\x5d\x65\x7e\x1b\xc5\xb2\x93\xce\xd8\x54\x86\x06\x75\x51\x10\x39\xb0\xf5\xec\xee\x0d\x5b\x80\x51\xc8\xd2\x5f\x72\x16\x70\x90\x57\x63\x48\x5d\x76\x16\xc9\x22\x44\xda\xc0\x99\x1a\x48\x2d\xbf\xc0\x21\x45\x18\x8e\x17\x53\xb1\x57\x85\xa1\xa1\x43\xea\x7f\x66\x1e\xe6\x5d\xc3\xf9\x3b\x23\x2e\x1f\xd2\xca\xc3\x34\xc0\x12\x65\x34\x4e\xe9\x7e\x96\x21\xf4\x02\x55\x82\xd9\x00\xfa\x7e\xec\xab\xd3\x2f\x4a\xea\xf4\x8a\xe2\x5c\xdf\xdc\xd3\x20\xd3\xb3\x76\x44\xf1\x19\x25\x17\xb4\x55\x8e\x5f\x39\xd3\x76\xbb\x2b\x4a\x8e\xd4\x4b\x2f\x48\xe7\x4a\xbf\xb9\x2c\x1b\xe3\xfa\x87\x47\xef\x46\x27\xe7\x01\xc2\xbf\xd3\x67\x42\x00\xb4\xfd\xda\xf8\x55\xca\xe8\x8e\x50\xed\xec\xad\x16\xfc\x92\x0e\xc9\x76\x77\x53\xea\xc7\x8d\x6e\x67\x25\x8b\xb5\xfc\x02\x8b\x35\xc4\x0c\xa8\x76\x8f\x29\x09\x6e\xe9\xab\xff\xfc\xcf\xff\xfc\x9f\xff\xb9\x7b\x7b\x7b\x4b\x77\xbf\xff\x8f\x57\xdd\xdd\xff\xdf\x74\x7c\xbb\xfb\x6a\xef\x3b\x3a\xfd\xfe\xbb\xef\xc6\xe3\xe8\x95\x07\xbb\x73\x4e\x0b\x97\x82\x3a\x07\xde\x0d\x86\xe6\x76\x9b\xaa\x71\x67\xd6\x72\xfb\x07\xd4\xb6\x5e\x07\xff\xbe\xa7\x4f\x81\xb6\xee\x7e\x70\xcf\xd8\x84\x72\xc9\xe4\x53\xa0\xad\xb7\x27\x8d\xb3\xed\x72\x86\x19\x88\x0d\x33\xe1\xf7\xf4\xe9\x4d\x22\x6c\xea\x49\x4b\x21\x64\xe3\x9c\xb3\xb4\x3f\x5f\xc8\xa7\xea\xac\x83\x28\xd7\x99\xd3\x79\xf2\x26\xa9\x35\xcd\xe9\x24\x77\xf4\xb3\x6c\x70\x85\xd1\x7d\xb3\x7c\x5f\xf7\xcd\x89\x2d\xa6\x6f\x8a\x55\x88\x1f\x73\x7e\xea\x74\xe6\xe6\x40\x80\xe5\x7e\x93\x88\x50\x20\x2b\xbf\x9a\x1e\xa9\x27\x09\x91\x20\x8e\x8a\x62\x4c\x93\xad\x7c\x67\x07\x83\x5b\x42\x62\x14\xc7\x1c\xab\x6f\x7b\xcc\x44\x91\xe0\xd3\x4d\x8e\x34\x2e\x3b\x8d\x15\x28\x58\xc1\xa9\x50\x27\xa3\xd7\x4e\x1b\x11\x00\xe0\x4b\xcc\x9e\xf7\x48\x99\x8a\x64\x5e\x9b\x67\xcc\xb2\x78\x3b\x10\xc8\x6b\x76\xf0\x91\x02\x85\xa8\x66\x00\xa6\x54\xbb\x94\xab\x4a\xde\x68\x48\x3c\xc5\x85\x6b\xeb\x1b\x0c\xbd\xbc\xef\xcd\x80\x99\xc2\x05\x0c\x1b\xde\xa5\xea\x0e\x45\xc5\x77\xdd\xae\x43\xe3\x86\x83\x39\x00\x5c\x14\x99\x85\x27\x14\xe1\x37\xff\x97\x4e\xee\x8b\xc6\x0c\x27\x7a\x0e\x06\x9b\xcf\x80\x75\xf0\x55\x33\xf0\xe7\xe6\x19\x70\x42\xa2\x9d\x83\xa4\x30\x07\xea\xbd\x9d\x83\x7b\xfa\x94\x12\x89\x13\x73\x9c\x11\x81\x93\x46\x9f\x20\x33\x0f\x27\x7c\x42\x3f\x37\x52\x87\x9f\x7a\x0c\x32\x24\x0a\xcf\xc9\x1a\x52\x6d\xd8\x0d\xf9\x91\x7a\x59\xfd\x07\x43\x9c\x90\xee\x7e\xf2\x03\xdf\x4f\xd4\xfd\xd0\x01\x7c\x3b\x9f\x4e\x31\x48\x86\x5e\x6a\x51\x3b\xbd\x02\x33\xcc\xbf\x80\x7a\x9d\x52\x10\x73\xd5\xa8\x6d\x19\x47\x64\x7b\x6f\x13\x5d\xab\x1a\xc2\x88\x44\xeb\xb5\x1d\xd0\x8f\xe4\x15\x6a\xb7\x4d\x5c\xbc\x44\x98\x59\x82\xc7\xc9\xce\x4e\xa6\x65\x80\x44\x91\x42\x74\xe0\x7a\xab\xe1\xda\x4c\x28\xc7\x29\x38\xdf\xa9\xbe\x3f\xeb\x30\xbd\x69\x7f\xe8\x95\x83\x0d\xc2\x37\x31\x55\xcb\x2b\x53\x7f\x2f\xbd\xdb\x70\x10\x60\x61\x8f\x5e\x13\xee\x6f\x0f\x03\x41\xd3\x65\x2c\xed\x61\x60\x8e\x06\x51\x39\x1a\xe8\x86\x6d\x33\xb8\x06\x11\x40\x57\x2d\x13\x31\x0c\x35\xad\x28\xa6\x0f\x9e\xfc\x66\xe0\xf9\x3c\x4c\x12\x4e\xd5\x6c\x16\x13\x74\x30\xd4\x6e\xbf\x22\x84\x30\x2b\x6c\x79\x84\xc1\xed\x44\xbf\xa6\xe6\x57\xd6\xfa\xfa\xe3\x6a\xc3\x71\x64\xe7\xc7\x1e\x48\x7a\x7e\xca\x07\x92\xbd\x89\xe8\xf9\x02\x49\x16\x06\x55\x39\xa0\x58\xe9\x80\x52\x0b\x61\x95\x2a\xf6\x88\x82\x67\x11\xe1\x40\x41\xcd\x87\x94\xbf\x5c\xd4\x4e\x2e\x9c\x5c\x91\x39\xb9\x98\x3e\xb9\x12\x7b\x72\xbd\xfe\xab\xae\x93\x5f\x1d\x14\xd0\x24\x0b\x74\x5c\x50\x40\x95\xb8\x7d\x9d\x2a\xd0\xf4\x3b\x8a\xf0\xfb\xff\x87\x0e\x61\xb0\xf7\xdc\x16\xb5\x05\xbb\x43\x37\x98\x8f\x94\xac\x0c\x65\xd6\xa0\x4e\x77\x33\xac\x16\xb5\x09\xc2\x34\xc3\x7f\x3c\x2f\xe8\x09\x3a\xf5\xa4\xbc\xcb\x48\xce\xec\xce\x86\xce\xbc\x3c\xa6\xc1\x49\xe6\x25\xd7\xe9\x5c\x50\x77\x35\x0e\x37\xe6\x69\xd7\x4c\xa1\xea\x07\x9d\xef\xaf\xa9\xdd\x5c\xb6\x42\xf0\x7c\xce\xe3\x80\x0a\x5e\xfd\x2e\xf1\x5e\x31\xf8\x80\x23\x9d\xd9\xba\x8b\xa3\xce\x08\xd2\x81\x71\x69\xca\x23\x58\x7f\x2f\x4a\x80\xe9\xb4\x95\x84\x90\x90\x12\x25\x41\x58\x79\x7c\xdb\x93\xc7\x73\x27\xcf\xfc\x69\x95\x63\xa9\xaf\x4d\x47\x20\x39\x8f\x89\x1b\xe6\xe8\xe0\x4f\x5a\x3c\x5f\x43\xee\x33\xd8\x70\xbb\x8b\x50\x2f\xed\xbc\x3b\xbc\x1e\x9d\x1f\xde\x9c\x7c\xe8\x8f\xae\x3f\x9d\xbd\xbe\x38\x6d\xb7\xdf\x52\xf5\xf9\x7b\xfd\x79\xe9\x2b\x84\x7a\x9f\xa8\x57\xbb\x77\x3e\x56\x4b\xbe\xa0\x07\x8a\x15\xc2\x3c\x3b\xc7\xd0\x06\x5a\x06\x46\x4c\x6d\x00\x23\x7c\xa7\x27\xf3\x43\xe1\xeb\xd2\x66\xa6\x76\xc6\xa5\xf7\x9d\xda\x31\x2f\x6e\x4e\x15\xf6\x5a\x3b\xf3\xbf\x6d\x6e\xcc\x7d\x65\x4e\xb3\x0a\xa3\xaf\x78\xdf\x76\x6b\xbd\x6f\xbb\xc3\x76\xdb\xff\xe5\xdd\x51\xd4\xce\x6a\x19\x90\x2a\x69\xc0\xa8\xe0\xae\x66\x31\xa2\xe8\xc1\x37\xb4\xf7\x13\x0d\x7f\xa1\x06\x75\xea\xdf\xda\xc4\x6a\xdf\xff\x4c\xed\x63\x7b\x99\xb3\x6f\x7e\xa2\xe1\xaf\xb4\x82\x39\xf5\x13\x0d\x7f\xa3\xa1\x04\x4f\x48\xe0\xed\x1f\xfe\xdf\xc4\x0c\x72\x56\x20\x4b\xac\xa0\x14\xe3\xf4\x92\x78\x3c\x81\x83\xc1\x30\x40\x6e\x97\x8b\x9a\x1d\x2e\x3c\xc1\xd5\xbb\x47\xda\xdd\xe3\xc0\x6c\x0b\xbb\x5d\xa0\x83\x53\x6a\xaf\x3e\x1c\xf5\x6a\x76\xbe\x40\x07\x6f\xfc\x22\x4d\x5b\x5c\xa0\x83\xd7\x7e\xb9\x4f\xd4\xab\xdd\xdf\xd6\xf0\xf6\x23\xfd\xff\xea\x4e\xad\xdb\x6f\x16\xfc\xed\x6f\xd9\x51\xd4\xed\xa8\x5c\x97\xf3\xe9\x19\x67\x7f\x7b\xa3\xc8\x9d\xfb\xdf\x3e\xf3\x45\x45\x42\xce\x3f\xfd\xd9\x89\xe7\xa6\x5f\x06\x87\x55\x78\x00\x15\xdf\xd0\x92\x74\xe4\xde\xfc\x52\x7c\xf3\x2b\x18\x1d\xdd\xdb\x5f\xa9\x87\xa5\x97\xe3\xc6\x6a\xe8\x3c\x1d\x50\xeb\xf8\x95\x9e\x3c\xbe\x54\xc4\xec\x9e\xe6\xf8\xb0\xc5\xc9\x03\xca\xbf\x5b\xb2\x89\x89\xb4\xcb\xf2\x36\x7f\xf3\x83\x2b\xdc\x7a\xca\xf2\xf0\x3c\x17\x6f\xed\xdf\xed\x2a\xf8\xc9\x0b\x94\x58\x65\x15\x63\x48\xc1\x6e\x42\xcd\x4f\x1c\x11\x39\x48\xaa\x60\x06\xd1\x41\xa8\x9e\x93\x2e\x4e\x50\x4f\xff\xb9\xb3\x13\xe1\x20\xd8\x49\x76\x8e\xe9\x4e\x84\x32\xe0\x56\x54\x3e\xa3\xaf\x4c\x0d\x22\xd0\x26\xde\xb6\x41\x69\x1b\xec\x78\xb5\x40\xbe\x75\x40\xe8\x6d\x52\x61\xda\x9a\x42\xe4\x32\xfb\xfa\xb0\x44\xda\xd2\x2b\x25\x16\x12\x73\x49\x56\x41\x3b\xe8\x05\xed\x68\xbe\xd8\x0f\x70\xf0\x83\xfa\x3b\x96\xea\xcf\x1f\xd5\x9f\x77\xea\xcf\x7f\x05\xff\xea\x05\xed\x3f\x96\x09\x3c\xff\x97\x7a\xfe\x3f\x3e\xbf\xfa\x4f\xf5\xe3\xbf\xf5\x8f\xff\xe8\xaa\x1f\x44\xff\xf8\xee\x78\x3f\xc8\x30\x93\xe4\xdb\x41\xfb\x87\x1f\x83\x7f\xfd\x37\x19\x7e\x8b\x93\xc2\xcf\xbb\x7c\xb7\x44\xd2\xe7\x07\x52\x5d\x48\xdd\xbb\x54\x96\x14\xa0\x84\xd0\x03\x4a\x82\xa0\x57\xc5\x33\x6e\xb7\x43\x0f\x84\x18\x61\x00\x3c\x90\x05\xa0\x96\x65\xb9\xba\x66\x7d\x6a\xed\xbe\xd5\xd3\xee\x05\x02\xf9\xf5\x09\xb9\x5e\x87\xa2\xd9\x27\x33\x52\x47\x8a\x90\x9d\x99\x3e\x56\x85\xb9\x39\x8c\x93\xd8\x0b\x13\x92\x39\xed\xc2\x15\xd0\x10\x40\x05\x2c\x4e\x83\x6c\xc8\xce\x22\x12\xa9\x22\x33\x57\x97\x3b\xb5\xe4\x41\xd0\x0b\x7a\x12\x28\x6e\x2a\xeb\x2f\x41\x3c\xe4\x9b\x95\x43\x5e\xc0\x18\xd8\x21\xb5\x41\x93\x6c\xef\xe1\xa4\x03\xb8\x4d\x84\x0f\x58\xe7\xe2\xe3\x79\xff\x6a\x88\x93\x0e\x4b\x3d\xbc\x2c\x62\x8a\x38\x08\xbb\x1a\x94\xca\xe2\x17\x38\xd1\x00\x7c\xc9\x13\x9d\x38\x43\x42\x4a\x06\xc5\x7c\x93\x3a\xbc\x8d\x4d\xc3\x1c\x09\x32\x14\x24\x96\xba\xdf\x14\x07\xd3\x24\xb9\x8d\x44\xef\x36\xfa\x53\xcd\xb8\xfd\xa9\x83\xfd\xa9\x9b\xa8\x37\x89\x78\x7f\x75\x4a\x62\x09\xd9\x4d\xb7\xea\xb2\x6f\xbe\xbf\x3a\x45\x52\x92\xf7\x57\xa7\xb8\xf2\xdd\x58\x7f\x07\xf6\xcb\xaa\xa8\x2f\x3b\xc6\xf5\x1d\x01\x9a\x07\x1c\x73\x90\x45\x32\x0c\x8e\x92\x65\x3c\xd9\xe2\x89\xdc\x9a\x32\x3e\xd9\x02\x9f\x67\xd5\xd2\x96\x5a\x4a\xc6\xef\xb6\xe6\x74\x3c\x8b\x38\x4b\xe7\x5b\xd3\x44\xc0\x9b\xeb\x88\x33\x69\xc0\xd7\x02\xd4\x92\x52\x67\xdb\xb2\x4d\x84\xc1\x52\xc4\x00\xdc\x59\xe9\x63\x96\x85\x70\x7f\x8d\xd2\x94\x0a\x79\x33\x53\xd3\xcd\xa4\x86\x37\x9d\xa0\x30\x01\xdc\x81\xba\x1b\x2e\xc7\x14\x61\xbe\x21\xb2\x31\x57\x69\x1a\x45\x8a\x41\x97\x28\x72\xb5\xa4\xdc\xa5\x7a\xfd\xbe\x4d\xa2\x9d\x5b\x8f\xea\x6e\xf5\xe0\xbd\x50\x2a\x88\x42\xa9\xa9\x0c\x6b\x50\x8e\xa4\x23\x93\xba\x40\xed\xba\x86\x85\x1f\xc6\xa6\xa8\xd7\x03\xb2\xac\xd5\x2a\x9c\x5b\xb8\x95\xc4\xa1\x80\x9f\xf0\x54\x46\x71\x6c\x21\x08\xf3\xef\x3c\x85\x99\x4f\xe2\xda\x09\xc2\xaa\x7e\x1b\x6a\xf1\x41\x05\x20\x2e\x38\x6f\x4f\x47\xd1\xfc\xc5\xe6\x8a\x95\xd4\xb4\x36\x61\x13\x93\x46\xab\x84\x13\x6c\xb6\x27\x64\xad\xea\xdc\xd2\x3b\xc6\x49\xd9\xf5\xb2\xc4\x29\xba\xd8\xef\x01\x7c\xe2\xc5\xa3\xaa\x6a\xc6\xc9\x7c\xce\x2a\xda\x34\x23\xc7\xd7\xf0\x83\x56\xd3\x0b\x32\xc8\x7d\x92\x04\xe9\xee\x8b\xdc\xcd\x48\xec\xec\x20\x39\x10\xc3\x7c\x00\xe0\x1a\x4f\x8b\x11\xc6\x73\x26\xfd\xbe\x4d\x19\x8f\xe2\xf8\xa9\x76\x58\x7b\x59\x86\x79\x16\xce\x7c\x88\x3f\x75\xce\xfa\x88\x7f\x53\x7d\xd0\xce\x9a\x84\x03\x33\x61\x93\xdc\x32\x6a\xf0\x32\x37\x08\x09\x0b\x41\x17\x91\xa0\x87\xe2\xae\x1e\xce\xd2\x64\xab\x91\x6a\x09\x8f\xfc\xf3\x87\x14\x9d\x47\xd0\xca\x14\xd2\x71\x5e\xa7\xe0\xb7\x5c\xaa\xb1\x50\x4d\x81\x10\x72\x39\xbd\xfe\x13\x4d\x60\x9b\x2a\x2d\x47\x83\x41\xa5\x45\x29\x7a\xe2\x1d\xae\x2e\xc3\x11\x04\xd6\xed\x04\xbd\x60\x87\x76\x34\xba\x7b\x96\x6d\x80\x75\x9c\xe9\x25\x58\x48\xb2\x9a\x3c\xf1\x68\xce\xc6\xba\x53\x10\x5d\xa4\x1f\xdc\x44\x77\xea\x97\x37\xb1\xea\xa7\x66\x0c\xf6\x97\xf3\x84\x06\x34\xd8\xed\x3d\x6c\x1c\x9f\xec\x4f\x13\xa5\x1c\xc5\x31\x15\xbd\xed\xae\xad\xfa\x7a\x9c\x2c\x00\xe3\xd2\x83\x92\x75\xa5\x4f\x4c\x04\x3f\x24\x88\x9f\x37\x1c\xd0\xff\xa8\x96\xb2\x06\x00\x4b\x9b\xcc\xb8\x99\x5a\xf0\xf5\x21\xea\xa0\x99\x3a\x20\xa1\x71\xc2\xa5\x48\xd4\x40\x2d\x06\x6f\x4a\xe3\x69\xcf\x49\xcc\xec\xa0\x16\xd5\xaa\xa7\x43\x4c\x19\xc2\xb0\xab\xd8\x9f\xe0\xaf\xf9\xd0\x19\xe5\xa9\x79\x20\xb2\x02\x59\xd4\xe7\x8e\x45\xf6\x9f\x48\xc5\x72\x4d\xe8\x78\x2d\x49\x59\xe3\x9b\xf5\xfa\xef\x44\xa9\x2e\xe7\xee\xe1\x2b\xc8\x65\x4d\x7b\xc2\xc2\x4e\x86\x08\x6b\xb7\x83\x1b\x80\x21\x15\x1d\xef\x97\x6d\xeb\xa8\x16\xc6\xd8\xad\xc7\x42\x9a\x72\xd7\x34\x9e\xd6\xeb\x6f\xd5\xcc\x98\x42\x37\x51\x8d\x5c\xbf\x55\xd4\x93\xa8\xa2\xcd\x3b\x52\xb1\x5f\x3b\x77\x2e\x94\xfe\xd8\xe1\x15\xd7\xd4\x6e\x58\x41\x16\xce\x24\xc2\x0f\x12\xa2\x7c\xe7\x12\x3f\xd5\xc1\xba\x7d\x25\x28\xf3\x83\x6c\x99\x9b\x49\x94\x03\x32\x1a\x80\x62\x22\xb3\x7c\x33\xdf\x29\x4a\x06\xc6\x76\xdb\x78\x57\xca\x9d\xda\xb4\x73\xa1\x0f\x9e\xaa\x6b\x76\x8e\x2a\x56\x0f\x65\x60\x25\xb4\x49\xd9\x4c\x8e\x20\x46\x51\x39\x8b\xd2\x8f\x22\x5a\x2c\xe8\xc4\xf2\x40\x66\xaa\x89\xa3\x34\xbd\xa2\x53\x03\x37\xd8\xf0\x48\xd5\x5d\x40\x2a\x04\x6b\x6e\xb7\x07\x98\x09\xce\x41\x64\x03\xaf\x9e\x94\x8f\xd0\x82\x52\xc2\x8d\xc5\xaa\xac\xbc\xf1\x1a\x4d\x95\x7f\x92\x6b\x1f\x3e\x76\x77\x47\x45\x18\x78\x79\x2e\xcd\xd0\x40\xfc\x2b\xbc\x3f\x8a\x69\x24\x34\x2d\x05\xd6\xc1\xa9\x36\x70\x99\xa2\x96\x68\xb7\x43\x78\x37\x56\x1f\x99\x37\xaa\x10\x0a\x05\x44\xc9\x9a\x37\xa5\xef\x50\x26\xeb\xce\xe1\x1c\x1c\x5c\xba\x45\xf1\x27\xc1\x42\x76\xb8\x05\x43\xd6\xd9\x33\x5f\xc2\x3b\x59\x3e\x0e\x46\xb2\x98\xf3\x64\x30\xa7\x43\x8d\xd2\xe0\x5d\xf0\x1e\x0b\x85\x20\x48\x1a\x92\x46\x4b\xd0\xc5\x86\xce\xad\x0a\xef\x79\x3e\x59\xe8\x40\xd7\x3d\xe8\x0e\x51\x6f\x49\x43\xa8\x1a\xfb\xd5\xf6\xa5\xf1\xa0\xb5\x77\x46\x87\xc0\x3e\xe8\x0e\xb1\x20\x74\xb0\x37\xc4\x8e\x48\xe4\xc1\xee\x5e\x4f\x87\x9c\x7e\xbe\x98\x86\x26\x75\x35\xa8\x1f\x77\xf7\xb6\x09\xb1\x4e\x09\x44\x0c\x38\xf8\xd6\x6d\x97\xcd\x98\x46\xb9\x68\xe4\x6a\x36\xe8\x42\xb1\x84\x10\x32\xea\x5c\x2c\xd2\xce\x5b\x2a\xd7\xeb\xfc\xe7\x59\xf4\x74\x4b\x4f\x93\x71\x14\xdb\x9c\xd9\x6c\xc0\x72\x4f\x36\x9c\x92\x68\x10\xf9\x9e\x6d\x03\x3e\x24\x03\xfd\xad\xc6\x4e\xc5\xc1\xae\xee\x25\x1e\x30\x9c\x1a\xb8\xdc\x2c\xd3\xda\x8d\xcf\x92\xac\xe0\x9e\x59\x0b\x41\xef\x86\xd9\xb3\x43\x24\xb9\x47\xfb\x80\x62\x8a\xb7\xbb\xc3\x96\xe5\xd1\xe9\xf2\x56\xdf\x65\x15\x11\x20\x00\x6c\xcb\x1f\xc9\x9d\x3d\xcb\xb1\x07\x8a\x13\x6c\xef\x0d\x33\xcc\xb4\x6c\x5c\x71\x7e\xcd\x27\xb1\x3b\xc4\x09\x11\x00\x6e\x31\x78\xa5\xdd\xdc\xd9\x04\x62\xe3\xed\x74\xf8\xca\x22\x86\x5a\x05\x7d\x42\xd4\x6e\x87\x11\x91\xd6\x97\xf9\x04\x72\xdc\x6e\xc2\xbc\x88\x10\x06\xce\xc8\x3b\xa9\x1f\x77\xaf\xda\xc4\x11\xde\xee\x62\x9d\xc9\x41\xb5\x9c\x12\x96\xcf\x4f\x27\x40\x3f\xee\xee\xe1\x25\x49\x0f\x1e\xa5\xea\x88\xf5\xac\xef\x04\x08\xf5\x46\x52\xf7\x2d\x48\xe5\x53\x4c\xa1\xf7\xed\x76\xb8\x04\xa6\x7d\x21\xc3\x25\x86\x02\x01\x4b\x3f\xb0\x94\xdd\xc6\x34\x40\x80\x8f\x58\xe8\x42\x82\x97\x78\x7b\xcf\xb4\x9f\xe1\x6b\x49\x52\xed\x44\xb9\x88\xa3\xa7\xde\x16\x4f\x38\xdd\x0f\x10\xbe\x68\x14\x36\x5e\x0e\x94\xc4\x0d\xae\x8f\xeb\x4f\x23\x54\x92\x81\x31\x7b\x31\x56\xd2\xcb\x11\x90\x3c\x3f\x3d\xe7\x68\x6e\xae\x40\xa6\x53\x0e\x83\xd5\x29\x29\xd9\xd4\xa3\xdd\x9d\x60\xab\x34\x39\x96\x34\x40\x51\x74\x90\x2a\xe6\xd2\xb3\x70\xb4\x5b\xd7\x0e\xae\x34\x52\x17\x29\x0f\x8e\xe7\x5e\x92\x55\x3d\x9d\xa2\x95\x28\x91\x89\x5e\x5f\x0c\xd3\x34\x8f\x16\x28\xac\x2c\xac\x3d\x45\x17\xd7\xaa\x28\xe8\xdd\x51\xbe\xae\xb8\xf0\xa2\x36\xd8\x88\x10\x42\x0f\xae\x75\x54\x60\x96\xe1\xc3\xb2\xf0\xef\x6d\x1e\x4b\x83\xbd\x00\x50\x27\xd4\x5e\x52\xdc\x03\x98\x06\xb3\xbb\x49\xef\xa5\x32\xbd\x1b\x86\xf1\xcc\x56\xb1\xfb\x41\x6b\x4b\x54\xab\x4b\x1c\x93\xa4\xb2\x2d\xc6\x24\x3e\x48\xbc\x1d\xd1\x1b\x0c\xf1\x94\xc4\x7a\xab\x8c\xcd\xfe\x48\x50\x6b\x49\x3c\xe5\xac\xda\x1c\x37\x32\x9c\xe2\xf8\x60\x3c\x18\xe7\x1c\xae\x97\x68\x5f\x8f\x23\xf5\x2e\xc2\x69\x65\xa7\xd8\xce\x17\xf6\xcb\xcd\xdf\xb8\x2f\x16\x91\x9c\xb9\x2d\xa1\xf7\x00\xaf\x7b\xed\x92\xc3\x4e\xc0\xbc\x06\xd2\xc7\x3f\xba\x49\xd4\xc4\x15\xc1\x7c\x55\x5f\x0a\x2e\x23\xc5\x3e\xad\xd7\x61\xcd\x53\xb5\xcd\x6f\xfd\xd4\xb6\x32\xc7\x85\xa3\xeb\x75\xd7\x90\xa0\x51\xc6\xf6\x9c\x28\x5a\xb3\x79\x8e\x9a\xa7\xdd\xc8\xf6\x98\x7f\xad\x7c\x0a\xf3\xc9\xaa\x5f\xbf\xaa\xfd\xfa\x95\xff\xf5\x2b\xfd\xf5\x8b\x71\xb4\x00\x62\x90\x70\x2c\x3a\xd3\x28\x4e\x9f\x08\x2b\x81\x6b\xfd\xbd\x6b\x6a\x85\x46\xdd\xac\x75\x80\x80\x96\x5b\x45\xff\x91\x10\x1d\xc8\x9e\x68\x98\xfc\x5c\xbc\x3a\x93\xfe\xa1\x0e\xf0\x35\xbe\xed\x14\xd7\x63\x4e\xb3\xba\xa7\x2d\x3e\x58\xd0\x21\x61\x4e\x19\xa3\x9d\xf9\x9c\x32\x26\xb1\xd1\x05\xda\xe8\x82\x53\x02\x90\x68\x8a\x5b\x2c\x89\x18\x44\xc3\x56\x8d\xf2\x7d\xd9\x6e\x2f\x07\x3f\x0f\x0f\xd4\x7b\xb2\xec\xa5\x00\xf6\x13\xc2\x2f\xb5\xd3\x2f\x65\xa8\x63\x67\x98\x7a\x92\x62\x0e\xc5\x1c\x52\x61\x07\x24\x41\xb5\xe3\xe0\x5c\xbe\x92\x15\x24\xfe\x37\x01\xc2\x97\x1b\xae\x26\x06\xf5\x68\xd1\x39\x7b\x7f\x73\xf8\xfa\xb4\x3f\x3a\xea\x9f\x9e\x0e\xc9\xb6\x96\x65\x07\x57\x72\x68\x2f\x29\x06\x12\xb5\x0e\x68\xbd\x06\xc8\xd4\x7e\x3d\xf8\x34\x2c\xfa\x90\xff\x0e\x7d\x2c\x24\x50\x3a\x0f\x11\xc2\xc7\x92\x0c\x86\xfb\x61\x17\x4f\xb5\xe6\xe8\x0d\x04\xa3\xa3\xf0\x58\xea\xef\xce\xff\x51\x55\x42\x52\xa7\x4a\x48\x1a\xaf\xe6\xc5\xeb\x37\xed\xe8\x3f\x0a\x77\x6f\x5a\xba\x7b\x7b\x99\x2f\x2b\x7a\x58\xe7\x66\x0b\x6d\x81\xf4\xa8\xff\x3c\x8f\xe6\x14\x27\x35\x39\x28\xd8\x34\xcc\x01\xa2\x50\xa3\x81\xd5\x02\xcd\x1d\x58\x4a\xb6\x99\x1b\x42\x81\x2b\x95\xa2\x1e\x98\x1f\xb8\x25\xe2\xc4\x59\x38\x5c\x02\xb8\x60\x87\x43\xdb\x91\x95\x3c\x5c\x2e\x0d\x57\xf8\x77\xad\x48\x56\x97\x78\x5f\x33\xd5\x30\xe2\xfc\xb6\x68\x3c\x0d\xbc\x49\x02\x3f\xea\x8e\xbb\xec\x36\xe8\x3e\x78\x83\xee\x83\x57\xe6\x5f\xab\x2b\xd4\x94\xd6\x28\x0a\xbc\xae\xe4\x8c\xa6\x72\xd3\x3e\x90\xed\xb6\xb4\xd1\x5c\xeb\x75\x30\x61\x0f\x81\x39\x04\x92\x66\xdd\x8a\xaf\x3b\xf1\x93\x48\xa9\x8f\x9a\x15\x9f\x70\x57\x06\x9c\x4b\xd5\x8f\x30\x18\x8d\x0e\xaf\xde\x5e\x8f\x46\x81\x43\xb9\xb5\xaf\x21\xb3\x7e\xfe\xda\x73\x11\xf3\xc2\x5c\x7a\xc7\x12\xd2\xd7\x4f\x2a\x91\xdf\xb6\x9a\x71\xb4\x90\x4b\x41\x43\xc8\x8a\x8f\x05\x72\x36\x66\x06\xcc\x25\xc1\x91\x9f\xd8\x05\xe2\x68\xb4\x7e\xa1\x53\x0e\xa6\xc9\x03\xab\x22\x7d\x66\xfa\xf8\x9d\xf6\x76\xea\x7b\x84\x16\x90\xac\x0d\xed\x46\x7a\x98\xe9\x7e\x98\x92\x55\x86\x14\xe3\x2b\x54\xe3\xba\x8b\x13\x92\xe2\xc2\xa0\x92\xfa\x31\xe9\x50\x22\x1d\x31\x5a\xbc\x9a\x46\xa8\xdd\x8e\x9c\xd3\x13\xaa\x78\xab\x2e\xc9\x59\x24\x67\x9d\x39\xe3\x61\xe4\x02\x33\x6a\xc6\xd4\x4a\xc8\x2a\x7b\x59\x5f\xdc\x29\x12\x93\xee\x7e\xfc\xc3\x72\x3f\xb6\xc7\xc7\x98\x44\x83\x78\xd8\x4a\x06\xe3\xd2\x88\x23\x19\x2a\x81\xce\xd0\xbf\xb7\xb4\x93\x4e\xff\xec\xf2\xe6\xd3\xe8\xf0\xea\xea\xf0\x93\x59\xe5\x04\x68\xbe\x41\x17\x8a\x19\x76\x97\x48\xde\x79\x60\xf4\x11\xa7\x44\x96\x16\x57\x9d\x5a\xe5\xae\xe3\x98\x9c\xc9\x70\x89\xf6\xc3\xb2\xef\x8a\x47\xa9\x6c\x12\x20\xd0\x4a\xb8\xbb\x27\x91\x1d\x36\x41\x19\x0a\x05\x8e\x11\x8e\x2d\x86\x3c\xa3\x8f\x24\xc2\xf1\xe0\x89\x0e\x49\x82\x63\x1b\x4a\x9e\x83\xf4\x62\xe9\x18\x42\xbb\x1d\xc6\x86\x2b\x92\xfc\xa9\xe6\xde\x63\x92\x3a\x17\x2d\x84\xa7\xe4\x19\x15\xac\x97\x4b\xe7\x44\x09\xe1\x2d\x3d\x05\x64\x8c\xb5\x1e\x44\x5d\x9d\xbb\x78\xd1\x89\x26\x13\x07\x94\x88\xc2\x08\x8f\x11\x1e\xe7\xca\xa8\x52\x34\xa0\x51\x46\xcd\x48\x10\x6c\x13\x32\xb6\x4c\xa2\xa5\x04\x4d\x5a\xb6\x5e\x8d\x8b\x3a\x2d\xab\xce\xc2\xe3\xce\xa8\x10\xc3\x0a\xd8\x31\x9e\x26\x6c\x73\x35\x05\x50\xb1\xc0\x84\xff\x4d\x40\x8e\xb8\x95\x21\xc5\x63\xbc\xc4\x53\x3c\xcb\xa1\x3f\xfd\x45\x33\xda\x9c\x76\x3b\x9c\xe4\x5a\x43\xe1\x73\x18\x53\xa2\xa6\x1f\xb3\xe6\x11\x4d\x0c\x67\x6c\xd6\x26\xbb\xd5\x18\xcc\xe9\xd0\x58\xe9\x36\x9b\x78\xb4\xee\xdf\x3f\x3c\x20\xfe\xc5\x74\x1a\x27\x84\xfa\x4a\xc7\x7d\x58\xcb\xb4\xa4\x1d\xe4\x58\x1a\x0d\x60\x4a\x65\x41\x33\x28\x31\xd7\x33\xa7\xb6\x46\x05\x2b\x06\x2f\x09\xef\xe4\x48\x4d\x38\xf6\x7f\xda\x42\x70\x44\xe6\x1c\x05\x85\xd5\x7b\x6a\x29\x2a\x24\x0f\xd0\xdc\x07\x5d\x5a\xb2\x5f\x10\x25\x97\xe4\xb3\xf5\x89\x88\xd4\x1e\x5c\x0e\xf6\x86\xfb\xa0\x91\xca\x15\x31\xb1\x5a\x3b\x13\x9f\x11\x23\xfc\x59\x76\xcc\xd5\x1d\xa2\x73\x96\x98\x23\x84\x93\xdd\xdd\xcc\xea\xb2\x3c\x15\x8e\xda\xb0\x96\xf7\x88\x7c\xd7\x1e\x78\x7f\xf7\x8a\xae\x4d\x42\x6d\x9a\xaa\x9e\x68\xd3\xa5\x79\xec\x5d\xf6\xcb\x1d\xd0\xca\x03\xd4\x6e\xdf\x17\x7b\xcd\x15\xcf\x90\x38\xc2\x1c\x0b\xef\xaa\x3d\x26\xdc\xeb\x25\x6f\xec\x25\x47\xad\xb2\x9a\xe2\x0b\x7a\x89\xbd\xce\x48\xe8\x81\x9a\x3b\xe3\x63\x35\x25\xe6\x92\xce\x30\xf3\x53\x14\x54\x5b\x34\x57\xf2\x69\x3e\x7a\x25\xf3\x9b\xf5\x56\x7f\xd5\xc6\x97\x7d\xb9\x52\xc2\x57\xa6\x20\x1c\xb7\xdb\xb1\x6b\x23\xae\x6d\xe3\x50\xc2\xb0\x00\xa2\x1b\xe1\xaf\x68\xd1\x40\x35\x28\xde\x19\x78\xd3\x16\x44\x82\x45\x57\x49\x4c\x03\xc6\xb7\x78\xbb\x5d\xae\x59\xa8\x57\x78\x24\x43\xee\x15\xf5\xbe\xe7\x1b\x99\x60\x52\x66\x3e\x7c\x23\x13\x34\x0c\x65\x83\x39\xd8\xe7\x40\x77\x74\x48\x24\x2e\x1a\xa4\x92\x8a\x9d\xcb\x13\x1a\x0d\x3e\x79\x8d\xf4\x28\x0f\xea\x35\x86\x83\x09\x1d\x0e\x51\x0f\xfe\x2d\x70\xbb\x67\x84\xd2\x02\x4f\x2b\xcf\x41\x28\xcb\x73\xc6\xf8\xf1\xc5\x59\x00\x07\xa8\x77\x60\x95\x26\xa7\xf4\xd6\x32\x6d\x18\x74\xcd\x9d\xae\xd2\x29\x18\x39\x4c\x01\x37\x7f\xb8\x5c\x54\xac\xc8\x84\x41\x41\xe9\xd9\x41\x5e\x7e\x42\x9f\x4a\xc5\xa9\x45\xbb\xbd\xed\x0c\x54\x3a\x81\x15\x47\xd6\xdb\xf1\x4c\x2a\x7e\x54\xec\x00\x29\x98\xb3\xb0\xd4\xe0\xc1\x5d\x2c\x15\x31\x1a\x9f\x68\x46\xd3\x30\x71\xef\xf6\x4a\xb3\xe1\x01\xc2\xd6\xcc\x94\x7f\xf0\x67\xac\x66\x3d\x0a\x44\xa9\xeb\x2a\x56\xe3\x1f\x93\x96\x4c\x1b\x1c\x0c\xca\x36\xd2\xa4\xc1\xd5\xe0\xcb\xa9\xa6\x3a\xe0\xcd\x54\xd1\x60\x9b\x2d\x46\x35\x83\x65\x36\x57\xc1\x9c\xc8\xc2\x79\x9f\x2f\xfa\x31\x95\x11\x8b\x53\x9d\x00\x90\x45\x66\x36\x7a\xdb\xdd\xcc\xb3\x51\x9d\x7e\xe9\xd7\x7b\x99\x36\x52\xbc\xa9\x3a\x47\x74\x0b\xce\x11\xdd\xa2\x73\x44\xb7\xe0\x1c\xd1\x2d\x3b\x47\x74\x8b\xce\x11\xdd\x2f\x72\x8e\xe8\xd6\x39\x47\xfc\xa9\x4d\xd7\xe7\x12\xbf\xab\x6a\xb2\x9d\xb9\x58\x09\x60\x56\x05\x53\x94\xcf\xad\xb1\x58\x5f\x84\xad\xb9\xd8\x5a\xa9\xff\x94\xd6\x7d\x4d\xb1\xc8\xdc\x75\x00\x47\x24\x39\x48\xfc\xcb\xb1\x45\x9f\xd6\x16\xef\xfc\x39\x89\x70\xe1\x4a\x6e\xed\xcf\x60\x9c\x36\x26\x67\x6d\x20\x5f\xa9\x4e\xf6\x28\x2e\xf6\xaf\x27\xb1\xf5\x4f\xc0\x4e\x83\xc0\xb1\x7f\x03\xee\xbd\x91\x85\x4b\x7b\x94\x65\xf8\xf5\xb3\x7a\xd3\xcd\xba\x4b\xdf\x98\xfe\x75\xd8\xff\x9b\x1d\x32\x2a\x6a\x8a\xb2\xd9\xfb\x79\x9d\xc5\xcb\xfd\x35\x1a\x7d\x59\xbc\x18\xca\x7c\xb7\xeb\x05\xff\xa2\xdb\x0f\x73\xb7\x1f\x66\x84\x5e\xb8\xbf\x30\x77\x7f\xb1\x8a\x9e\xba\x6b\x0c\x6b\x10\xfa\xd9\x97\x5d\x63\xd8\xe6\x6b\x0c\x76\x17\x18\xa6\xb1\x3b\x13\x1c\xe9\x30\xf1\x73\x89\xf0\xfb\xe7\x7c\xa0\xba\x5f\xe4\x03\xf5\xf7\x6f\xf3\x8f\xcf\x39\xd1\xe7\x04\x4b\x4d\xe8\x2e\xc4\xf3\x2a\xbe\xd7\x2a\x3a\x9e\x18\x73\xf3\x63\xe7\xcd\xe1\xd1\xcd\xc5\xd5\xa7\xd1\x9b\x8b\x2b\x83\xd2\xd1\xaa\x6c\x47\xd1\x99\x2e\xe3\x58\xad\xa1\x01\x8e\xd9\xeb\xa2\xe2\xe6\x7b\x2f\xcb\x3b\x56\xd8\x1d\xab\x4d\x6c\x35\xaa\xde\x1a\x59\xa8\xe6\x26\x07\xb2\x0d\x84\x63\xfd\xf1\xac\xee\x59\x53\x9f\xe1\x70\x05\x07\xad\x4d\x4e\x28\x90\x83\xb1\xce\x39\x88\x3e\x6e\x99\x7c\x23\xa0\xd6\x28\xd7\xfa\x2c\xf4\x89\x57\x36\xd3\xd2\x42\x43\x28\x6e\xa5\xbb\x58\xda\x10\xb4\x67\x5d\x81\x80\x84\xb5\x7a\x0b\xf6\xb0\x5e\x3d\x36\x29\x78\xb2\x9c\x4c\x50\x68\x31\x71\x28\x7f\xb0\xec\x5e\x24\x89\x2c\x05\xa9\x6b\x06\x6e\x38\xf2\x2c\x59\xc6\x93\x2b\x3a\x8d\x97\xe9\xcc\xa6\x4b\xc8\xdd\x59\x88\x81\x0f\x33\x98\x60\xc9\x42\x75\x2d\x25\xab\x28\x7e\x8c\x9e\x94\xf4\x64\xc4\x2b\x75\x8e\xb6\x4c\x1b\x65\xc4\x7c\x1d\xa7\x1a\x13\xe1\x1f\x2b\x63\x12\x7b\x5c\x6d\xaa\x13\x01\xe8\x6f\xcf\x22\xc6\x51\xe8\x5e\x0b\xb5\x9e\x77\x22\x9a\x63\x75\xfd\x48\x70\x14\x4a\xbc\x32\xbb\xae\xc7\x20\xd6\xf7\x9a\xdd\xc6\x8c\xdf\x19\x4c\x61\x3c\x46\xad\x49\xb2\xa2\x64\x6a\xa2\xbb\xb3\xc7\x99\x6a\x66\x9b\xea\xd8\x72\xa3\xe7\xf0\x82\xc0\x75\x58\x7d\x5d\xdf\xcd\xea\x4d\x3a\x36\x01\x44\xb8\x44\xc6\x1f\xa4\x31\x64\x7e\x13\xd6\x00\xac\x06\x21\x40\x2b\x9b\x1d\xa3\x4c\xc0\x7c\xee\x15\xe5\xe0\xde\xbc\xc5\xe9\xe6\xcb\xed\x2f\x2a\xb4\x92\xbb\x70\xd5\x2c\xbb\x19\xa9\x79\x64\xc3\x09\x08\x64\xb5\xf7\x3c\x7c\x5b\xa2\xdd\x96\xda\x5d\xd9\xf9\x0a\xe7\xce\xcf\xd6\x33\x18\x0a\x69\xc7\xe1\x50\xcd\x8e\x26\xeb\x4f\x12\x3c\x91\x5d\x6c\x97\x67\x59\xfb\x94\xbb\x05\x51\xd4\xfa\xa4\xc1\x15\xc7\x34\x94\x78\xcf\x13\xe5\x7e\x76\xce\x72\xdf\x98\x30\x10\xf5\xf7\x2f\x92\x74\x5b\xcb\xce\x6d\x34\xbe\xbf\x5d\x0a\x4e\x45\x27\xe1\x61\x00\x5d\x6c\x80\xf8\xea\xee\xd3\x1f\x3e\x39\xb3\x1b\xdd\xd9\x41\x9f\xe4\x80\x0e\x3b\x23\xeb\x08\x9e\x93\x71\xa8\xae\xb6\x95\xca\x29\x9f\xbc\xb8\x6a\x36\x0d\xb7\x4d\xf5\x2c\xfd\xa0\xaa\x0d\x11\x28\xe7\x7f\x91\x3f\xde\x75\xfa\xe7\x1f\x3a\xa3\xab\xfe\x55\xff\xfc\xb8\x7f\x35\x3a\xbd\xb8\xb8\x1c\x9d\x9e\x9c\x9d\xdc\x98\xf8\x08\x35\x36\xac\xbf\x76\xb3\x8c\xbd\xa0\x09\xc6\xa7\x4a\x7a\xa5\x5b\x7a\xf9\x18\xbf\xdb\x62\xdc\xf4\x1d\x7c\x85\xa9\xa4\x63\x49\x27\x81\xd3\xd9\xfd\x22\x77\x76\x8a\x03\xfa\x3d\x61\x1c\xb4\xed\xf8\x67\x89\x32\x68\xd1\x1b\x5a\xee\xdc\xf5\x8d\xb4\xe4\xf8\x8d\x54\x14\x94\xc4\x0f\xb4\x65\x16\xa2\xa9\x46\x8a\xb2\x4c\x4d\x21\x2c\xd4\xaf\x1b\xd9\x9a\x55\xcb\x55\x6c\xd2\xdf\xd5\xda\xa4\xbf\x2b\xc4\x10\x7f\x37\xac\xb3\x66\x7f\x5f\xfb\xe5\xf7\xbe\x35\xfb\xfb\x61\x6f\xd6\x19\xc7\x8c\x72\xf9\x7a\xc9\xe2\x09\x15\x9a\x69\x8d\xd4\x0e\x32\x4c\x72\x24\xfc\x94\xe5\xd2\xa6\x4e\x64\xf4\xf1\x8a\xde\xb1\x54\x8a\x27\x2b\x3b\x8f\xd4\x22\x31\x4e\x27\x6f\x12\x71\x7c\x71\x66\x05\xde\x91\xcf\x3d\xbd\x3a\x21\x84\x47\xff\x2c\xe4\x48\xde\xdd\x73\x18\x8f\x57\x76\x5d\xaf\xa0\x7c\xfe\x39\x9d\x27\x0f\x74\x72\x55\xac\xe5\x56\x0f\x81\xb0\x4d\xfc\x48\x09\x96\x7c\x72\x01\x27\x0f\x68\xd0\xab\x42\x2a\x2b\xb0\x2b\x36\x0d\x0d\xa1\x1e\x5e\x5e\x9e\x9e\x1c\x1d\xde\x9c\x5c\x9c\x8f\x6e\xfa\x67\x97\xa7\x87\x37\xfd\xd1\xc7\xab\xc3\xcb\xcb\xfe\x95\x97\x04\xa6\x60\x1d\x5a\x48\xbc\x2a\x8a\x53\x45\x01\x29\x03\x20\x13\xfa\x18\x36\x44\x62\xfd\x05\xeb\x2c\xb7\x72\x3a\xab\x8b\xc1\x61\x4d\x06\x3d\x63\x0d\x9d\xb0\x87\x20\xd3\x26\xce\x9a\x0b\xb5\x9d\x60\xcf\xb9\x7a\xb3\xcc\x2e\x1b\x64\x76\x59\x92\xd9\xd9\x0b\x7c\xac\xa5\x2a\xf6\xac\x9a\x5b\xd6\x6b\xe4\x8a\x5a\xb7\x72\x21\x36\x01\x1f\xac\x42\x14\x2a\x82\x98\x8e\xb9\x2c\x22\x0b\x3d\xc9\x90\x6a\x81\x11\xb3\x42\xee\xc3\xfc\x05\xca\x9c\x64\x39\xd2\x64\x77\x4c\x81\x61\xe9\x5e\xc2\x11\x3f\x5e\x0a\xf1\x84\x42\x86\x0c\x3e\x91\x2e\x77\x93\xd4\xde\x9d\x20\xc7\xbc\x7c\x71\xa5\xc2\x56\x5a\x29\xd8\x60\x13\x30\xd9\xbd\xa4\xa1\xc9\xad\x3f\xa4\xe6\x63\xb5\xbe\xfb\x90\x33\x90\x3e\x6e\x7d\x90\xa1\xe5\x14\x94\x3f\xd4\xf0\x0c\xcc\xb1\xc0\xac\xb8\x47\xed\x08\x34\xe3\x56\xfb\x38\xd4\x11\xdb\x56\xae\xa8\x04\x10\xd5\x9f\x4e\xf0\x85\xe2\x42\xf4\xb9\x8c\x4c\x5a\x1c\x6c\x55\xb9\xd7\x40\x0e\xb5\xfc\xb1\xe4\xb5\x55\x4d\x68\x4c\x25\xdd\xaa\xf9\xb0\x5a\xfd\x50\x77\x48\x31\xa7\x92\xfe\xa9\x74\xa3\x33\x2c\x51\x83\xc4\x1b\x57\x73\x1a\xf1\xe5\x42\x4d\x85\xba\x15\x5b\xc9\xb5\xc4\x53\xdb\x6d\x5a\xd0\x2e\x95\xdd\xbd\x55\xfb\xc5\x9a\xca\xbc\x6c\xbb\xc4\x93\x91\x3d\xbd\x25\xf1\x58\xb3\x03\x48\x85\x5f\x2e\x5e\x6a\x77\x77\xdf\xd2\x8a\x1c\x88\x61\x8b\x6b\xf1\x2e\xa4\x80\x93\xe2\x1d\xd2\x4e\x84\x11\x78\x0f\x42\xe1\x6b\xc5\xbb\x52\x57\xac\x4f\xd9\xa8\x2a\xd1\x8d\xc0\xd1\xfc\x30\x8e\x81\xe5\x87\xc8\xde\x43\x5e\x27\x4b\x3e\x49\xeb\x58\xd3\xe0\xce\x65\xa1\x5f\x69\x7b\xa9\x4d\x17\x24\x3b\x85\xdf\x4a\xdc\x66\x22\x95\xe7\xc9\x44\xb1\x23\xf7\x77\x88\xb0\x3a\x96\xcc\x63\xfb\x67\xa8\x07\x33\x6e\x60\x3d\x25\xf8\x76\xca\x1f\x20\x0d\x97\x3e\x73\x16\x54\x80\x5c\x92\x86\xa8\x14\x05\xac\xef\x55\xde\x6e\xa8\x8e\xa8\xb8\x22\x2d\x07\x9d\x07\x3e\xeb\xc2\xd9\x2a\x4c\x92\x7d\xfc\x49\x5a\xd0\x31\x84\xcb\x5b\x2d\xf5\x24\xda\xb0\xdc\x72\xda\x08\xa9\x53\xa2\x0c\xb5\xd9\x1d\x70\xae\x77\x1e\x63\xa6\x2e\x49\x93\x64\x25\x8a\x82\xb2\x33\xd2\xe9\x02\x2f\xf3\x02\x03\x53\x60\x2e\xe1\x23\x03\xa5\x16\x79\xd6\xac\x94\x44\xc5\x5b\x5b\x2b\xf9\x91\xd0\x76\x7b\x3b\x5d\xaf\xc3\xc8\x5e\xd1\x3a\xe5\x1b\x1a\x49\x71\xe5\x4b\xed\x11\x2e\x96\xfc\xc4\x17\xfa\x51\x18\x61\xa3\xfd\x09\x14\x67\x64\xeb\x75\x8a\xb2\xac\x46\x72\x89\x3b\x47\xef\xaf\xae\xfa\x3a\x6e\xc7\xc5\x82\xb8\x6b\x81\x77\x27\xd0\x37\x30\xb6\x5e\xdb\x81\xff\x48\xb5\x4b\xc3\xbe\x4d\x38\x6e\x36\xda\x52\x9d\xdd\xc9\x02\xee\x84\xf9\x2d\x61\x89\x5a\x6e\x87\x4d\xd5\x25\xc1\x61\x95\x17\x36\x6c\xbb\xfd\x56\xda\x88\x4a\xd9\x44\x01\xa4\x28\xee\x6e\xd7\xcb\x5e\x76\xb3\x56\x65\xb2\xae\x41\x5b\xde\xde\xd3\x79\x85\xca\xc4\x16\x22\x4c\xc9\x76\xd7\x4d\x03\x75\xdb\xfc\xf9\xb9\xc3\x39\x08\x3b\xec\xa5\xc2\x65\xcc\x82\xff\xab\x17\x76\x66\x51\xb3\xe8\x98\xc1\xc6\x2d\x32\x12\x52\x7b\x8b\xf1\xa9\xbd\x0e\x02\x99\x0e\xa4\x77\x21\xc9\xaa\x5b\xc0\x02\xa3\x76\xcb\xd2\x2e\xad\x5f\x98\xea\xd1\xe6\x77\xac\x70\xb9\xb0\x45\x2f\xf8\x98\x5a\x9d\x64\xe0\x27\x27\x11\xae\x0e\x5d\xb7\xb9\x75\x35\x81\x42\xf8\xdc\xb7\x9e\x88\xd6\xeb\xca\xd2\xe8\xd3\xb7\xba\x88\x96\xcc\xea\x46\x61\xd7\xc5\xdc\x01\x0d\xf8\xf2\x06\xae\x64\x20\x2a\xf4\x3a\x52\x41\x7e\xd5\xfa\xbb\xdf\xfe\xaa\x23\xe3\xb3\x1e\xb7\x2f\x89\x6e\xef\x28\xee\x47\x3b\x05\x31\x87\x16\xc5\x03\xbc\xbd\x87\x69\xc7\xca\x3b\x95\x54\xbf\x75\x67\x47\x05\x15\xe0\x70\x3c\xa6\x29\x84\xff\xff\xb7\x56\x6c\xe8\x8f\xfe\x7b\x8b\xa5\x80\x15\x10\xc5\x71\xf2\x48\x27\x5b\x8c\x6f\xf1\x84\xef\xb2\x5c\x2d\xbc\xe5\x19\xae\xd2\xad\x30\x5d\x8e\x67\x5b\x51\xba\xf5\x26\x4a\xe5\xeb\x24\x91\xa8\x13\x68\x1d\xf0\xaf\x10\x9f\x7c\xc2\xa9\x90\x6e\xa6\x7f\xd3\x33\xfd\xd3\xff\x3d\x33\xdd\xfd\xd2\x99\xf6\xa0\x03\xaa\x81\x6f\x85\x89\x71\x33\xea\xa6\xe7\x27\x3d\x3d\x54\x90\x95\x01\x8b\x14\xd5\xcb\x87\xaf\x78\xa6\x05\x63\x4f\xc5\xca\x63\xb2\x43\x89\x2c\xc3\x42\xfc\x35\xe3\x8d\x06\xdf\x90\x5f\xe6\x57\xbe\xf9\x86\xa7\x7b\xd7\x1c\x3c\xfb\xd2\x8b\x9d\x09\x38\xe5\xe2\xcb\x62\xae\x9f\x31\x2b\x7e\x61\xcc\xf5\xde\xf3\xf6\x06\x26\xea\x1d\xa9\x99\x30\xae\xce\x02\x47\x8d\xab\xf4\x0f\x86\x65\x3f\x7f\x2d\xe6\x22\xc3\x7c\x83\x47\x6c\xd1\xeb\xb5\xe0\x4e\xd9\xaa\x3a\x45\x32\x61\x3c\x21\x57\xd6\x35\xd6\x04\x6b\xab\x5b\xe5\xd3\x42\x2d\xb0\xe7\xdc\x06\x89\x16\x41\xd7\xd9\x68\x74\xf3\xd2\x52\x94\x3d\x25\xa3\xa2\xa7\x9c\xae\x0c\xa7\xc4\x3a\x60\x86\xab\xb1\x5e\x50\xcf\xb3\x51\x75\x21\x72\x32\x96\xa3\x4a\xfd\x1c\xdb\x44\xf8\xbd\x34\x6b\x8a\xc7\xce\x23\x15\x75\x51\xff\x72\xff\x6b\x28\xd1\x17\x86\x68\x6f\x70\xf8\x80\x9c\xbd\xc2\x6b\x6a\x3f\x4f\x1d\x2a\x6c\x92\x4a\x07\x4d\xb9\x29\x88\xbb\x6c\xca\x57\x95\xc1\xd6\x12\x02\xe1\xd4\x28\x08\x68\x74\x7f\x16\x2d\xf0\xd2\x01\x2d\xdf\x81\xcb\x86\x26\xa8\x8b\x69\xae\x82\x8e\x45\xc1\x24\x93\x82\xa7\x91\xe1\x0f\x1e\xf8\x90\x00\x22\x77\xb7\x44\xba\xaf\x35\xa2\x72\x1f\xe4\xc5\x54\x80\x03\xa4\x74\x5e\xbf\xa9\xc9\x92\x8e\x5a\x92\x2c\x85\x9a\x48\x3f\xf0\x3c\x16\xe1\x6a\x6a\x12\xf0\x36\xf0\xfd\x48\x00\x0f\xb6\x39\xfc\xd4\x3e\x35\xf9\x61\xbd\x84\x04\x89\x20\x51\xc7\x8c\xcf\xa6\xd9\x63\xa9\x4d\xaf\x5a\x49\x7a\xa1\xe7\xb8\xb2\x8e\x79\xca\x59\x97\x6a\xe4\x69\x41\x33\x94\x21\x84\x13\xf1\x45\xb9\x17\x75\x6e\x4d\x7d\x20\x4c\x05\x49\x04\x9e\x09\xf2\x47\x1d\xea\xf9\x6d\x27\x4e\xc6\x86\x3f\x58\x35\x31\xc2\x13\xf1\x8c\x9d\xd3\xe8\x9c\xc5\x66\xb8\xb0\x4d\x5e\xf4\xde\x2d\xdf\x56\x66\xff\x50\x17\x49\xc5\x1b\xcc\x91\x05\x50\xa9\xa9\x97\x6b\x6b\x4b\x94\x6b\x0e\xb9\xbd\x83\x37\x1e\x1e\x5f\xd8\x12\x9b\x86\x75\xad\x74\x0a\xc7\x45\x0d\x12\xb2\xc8\x3b\x61\xc1\x48\x6d\xa3\x8e\x2d\x98\x33\xaa\x06\x04\x97\x19\x07\x90\xac\x70\x7a\xb1\xf2\xe9\x65\xe2\x33\x74\x5c\xf4\x06\x93\xa6\x1b\xae\x5f\xde\xe0\x03\xd9\x4a\xaa\x38\x3d\xcf\x55\x63\xbf\x28\x55\xe4\xd8\x68\x83\x66\x6f\x63\x9d\xee\xe3\x77\x30\xfe\x52\xd5\x97\x91\x90\x2c\x8a\x5f\x5e\x9d\xf9\xc0\x54\x03\x16\xaf\xc5\x17\x9e\xf5\x7b\x7f\xe9\xac\xdf\xfb\x62\xdf\x82\x9c\x13\xce\x45\x63\x94\x49\x27\x4a\x9f\xf8\xf8\x94\x4d\xe9\xd1\xd3\x38\x86\xd6\xd4\x75\x2c\xcd\x19\xe4\xc3\x86\x8f\x27\x8e\x89\xc3\xa6\x7d\x12\xcd\xba\xfe\xbf\x47\x7a\x60\x75\xd2\x03\xab\x3f\x93\x8d\x2a\x0f\xab\x6f\x26\x34\xa6\x77\x4a\xb6\x4e\x88\xf0\xe2\x15\x22\x25\xe3\x72\x92\xb8\x60\x51\x1b\xbf\x6e\xe6\xde\xd2\x50\x58\x3e\xd3\xb5\x57\x37\xe6\x05\x9d\xf9\x9d\x08\x19\x4e\x8d\x03\x0a\x6b\x3c\x32\xe1\xac\x74\x1d\xaa\xba\xaa\x47\xe2\x2e\x6d\x99\x90\x09\x45\x2b\x00\xd6\xdc\xf2\xe3\x1e\x2c\x92\x6b\xde\x3f\x8d\xff\xcf\x9e\xf1\x17\x75\x8d\x16\x7d\x52\xe7\x02\x52\x20\x7b\xb8\x47\x79\xc5\xc2\x56\xbb\xc1\xa1\xf0\x05\xd5\xbe\x2f\xf5\x57\x57\xab\xb8\x61\xc2\x65\x01\x56\xfe\xf9\x7a\xa5\xf7\x5d\x5e\x51\xa3\x00\xd4\x50\x8b\x59\xb7\x5f\xad\x0c\x56\xaa\xd5\x56\xbb\x59\x4c\x51\x7b\xc3\x35\x80\x0e\x8c\x67\xcc\x26\x2b\x4f\x4d\xc7\x72\x68\xee\xa2\x69\x4d\xe0\x95\xb7\xc5\x65\x71\xe7\xe5\x6f\x32\xdb\xd5\x46\xcf\x1b\x45\x50\x1d\x19\xdd\x99\x95\xac\xf7\x76\x46\xab\x66\x73\x58\x39\xa0\xb1\x06\x73\xa8\xe1\x9a\x54\x8e\x73\xd4\xd7\x24\x84\xef\x1a\xc5\x01\xeb\xc2\x66\x7c\x1f\xf4\x14\xbd\x08\x0a\xa7\xb8\x61\x08\xaf\x73\x50\xda\xec\x84\xe1\x48\x45\x56\x7c\xe7\xb4\x11\xc0\x55\xe0\x71\x06\x7b\x1c\xdc\x96\xaf\xc9\x6e\x14\xcf\x3b\x69\xba\x71\x8a\x7a\xa7\x4a\x7b\xd5\x7e\x12\xce\xe2\xe9\x4d\xbd\x37\xc5\x55\x37\xcd\x97\xb9\x62\x7a\x1e\x98\x05\x39\x01\xdb\x9e\xc1\xfd\x7d\xf4\x97\x4e\xbc\x2f\x45\x14\x2b\x9f\x78\x7b\xcf\x23\x8a\x3d\xfe\xe3\x07\xd0\x17\x38\x85\x7a\x71\x00\x7f\x55\xbb\xf0\x92\xfb\xf1\x48\xd4\xdd\x4e\x4b\xb8\x58\x35\x77\x45\x57\x62\xd6\x39\x7f\x7f\x7a\x9a\x5b\x40\xbf\xf0\x86\xf8\x25\xc0\x5c\x08\xf7\x45\x25\x20\xbc\x1e\x4f\xeb\x51\x64\xf8\x73\x93\x2c\x59\x8a\x7f\xec\x22\x4f\xe8\xb9\x16\xfe\x12\xe4\x05\x41\x3c\x87\xc2\x20\x9c\x3b\xa3\x4d\x8e\x18\x61\x10\x45\x34\xb0\x1b\xff\x71\xef\xa0\x02\xfb\xa0\xbe\xdf\x73\xa1\xb4\x1a\xe9\xa1\x07\x10\x24\xea\x83\x57\xf5\x1f\xbc\x2a\x7f\xc0\x72\x21\xeb\xc2\x13\xb2\x0a\xb7\x36\x5a\x19\xa2\x03\x38\x08\x76\x5d\xc1\x5e\xb0\x0b\xc9\xf1\xa7\x8c\xc6\x93\x20\xaf\xf6\xfe\xd9\x39\xb0\xb5\x79\x20\x24\x98\x13\x31\x10\x1e\x92\x12\x23\xa5\x01\x17\x67\xa8\x3c\x58\x8e\x7a\x4c\x6b\xdb\x99\x05\xc3\x60\xa8\x17\x78\xdd\x3a\x2c\x88\x94\xf9\xf3\x1b\x51\xd1\xa6\xe0\xa8\x55\x00\x9b\xcd\x83\xd7\x07\x6f\x87\x28\x21\x02\x47\x44\xfd\xe9\x1b\xcc\x6c\x89\x56\x1e\x35\x4c\xd2\x83\x30\x21\x12\x47\x6a\x28\x50\x53\xaa\x24\x13\xf3\xe7\x40\x0c\x51\xcf\x6f\x83\xa4\xed\x76\x98\x10\xaa\x2a\x77\x17\xfc\x5a\x63\x4a\xd9\x2d\x09\x6b\xff\x5c\x1d\x38\x0c\x77\xc1\xee\xbe\xf8\x81\x3a\x2c\x4e\xcf\x55\x49\x0c\x0d\x33\x5f\x99\x7c\xf6\x89\xe2\x45\x5a\x65\x7a\x4b\xe3\x5e\xf0\x6f\x9b\xdd\x7f\x1c\x27\xe9\x52\xd0\x5d\xdd\xdd\xe0\x8b\xd2\xb0\x6a\x7f\x10\xf3\x25\x66\x55\x25\xc1\xd6\x12\x5c\xba\x0c\x4b\x34\x2e\x82\x83\x04\x47\xc3\xce\x38\xe1\xe3\x48\x86\x3c\x94\x08\xa1\xcc\xc0\x7e\x1f\xd5\x4a\x42\x75\xca\x0e\x8d\x5c\xbd\x5e\xd7\x65\x05\x71\xca\x07\xc8\xde\x17\x04\x3d\x07\x9b\xe2\x6d\xe1\xb3\xe2\xd5\xc3\xdb\x09\x96\x6a\xe7\xd1\x22\x3c\x12\x48\x3b\xa5\x05\x81\xe7\x4e\x78\x25\x6a\x41\xa5\xb7\xb4\xdf\xf0\xa5\x20\x57\xc2\x07\x5a\xfb\xfd\xd9\x9d\x52\x93\x60\xd6\xb3\xa9\x79\x90\x21\x00\x8f\xa6\x04\x79\xe3\x58\x8d\x70\x52\x25\x93\xc8\x23\x93\x04\xe1\x94\x74\xf7\xd3\x1f\x92\xfd\x74\x67\x07\x45\x83\xd4\x27\x93\xd4\xda\xf9\x1b\x36\xc1\x81\xfa\x9f\x59\x3d\x81\x99\x5d\xb4\x48\x71\x19\xd0\xa1\x5b\x5d\x0c\x1e\x5c\x0a\xb7\xa6\x0c\x47\x05\xfc\xf8\x63\x51\x01\x54\x25\x44\xae\xd7\x00\x83\x24\x0f\xca\x67\x43\xaf\x12\x90\x0f\xd8\x07\x25\x7c\xa3\x83\x25\x08\x74\x05\xc8\x2f\x6a\xe1\xeb\x00\xb6\xa3\xd9\x20\xe0\xee\x6f\xfb\x0d\xb0\x43\x69\xb2\x14\x63\x2f\x37\x83\x45\x18\xca\x9f\x08\xcc\xc1\xb1\xc1\x03\x19\xd2\x38\x32\x79\x91\xf2\xb8\x9c\x78\x05\xe5\x5e\x9c\xeb\x23\x17\x04\x36\x83\x81\x61\x06\x70\x60\x5f\x62\x33\xca\x73\x1c\x40\xb5\x2c\x3d\x4a\x78\x2a\x21\x67\x06\xac\x99\xf0\x0e\x15\xfa\xb8\x25\xe1\x8b\x8d\xe9\xd4\x36\x03\xed\xd8\x09\xb3\x32\x70\x71\xc2\xac\x7b\x84\x9d\x1e\xeb\x22\x51\x98\xf8\xd2\x31\xb1\xc5\x35\xe0\x7c\x28\xc9\xb1\x89\x87\x29\xad\x1d\xe6\x95\x74\x43\x30\x69\xc6\xdc\x5d\x5a\x33\x23\x33\xe7\x2b\x8b\x72\xed\x72\x86\xf9\xe0\xd3\xb0\x40\x54\xb9\x32\xba\xae\xe9\x5c\xe3\xde\x38\x0c\x9b\x76\xf0\x17\x2d\x01\x9e\x6c\xa2\xd9\xcd\xb9\x17\x1d\xed\xde\x8a\x88\x8f\x67\x2f\x4f\x25\xc3\x9a\xe9\x8a\xe5\x95\x0d\x91\xde\xfe\x13\x22\xd5\x17\x1a\x9b\x49\xb1\x04\x8d\xcd\xc4\x5f\x92\xe6\xb1\x86\xfe\x3c\xe0\x34\x2f\x9c\xb8\x55\x47\x94\x0c\x1d\x38\x2d\xc5\x81\xe8\x71\x43\x92\x4c\x07\x6b\x7f\x01\xdc\x93\x1a\x45\x8e\xe4\x94\x63\x3e\xe9\xa4\xc1\x05\xc4\x27\x78\xe2\xe6\xa0\x48\x45\x54\x53\x11\xf5\x32\xdb\xc2\x3a\xba\x45\x3b\x15\x45\xb5\x4c\xce\xf8\xf7\x43\x49\xc6\x09\x4f\x93\x98\xa2\x4e\x9c\xdc\xd9\x2b\x83\xb7\xe1\x74\x20\xa1\x28\xa1\x2a\x9d\xbd\xbf\x09\x10\xfe\xb3\xfc\xf8\xfa\xe2\xfd\xd5\x51\x3f\xf0\xda\x7e\x27\xb4\xef\x5c\xde\xa6\xcb\xcd\x07\x57\x59\x5f\xb5\x74\xdd\xf1\x32\x32\x87\x55\x8c\x16\xdb\x25\xdd\xa7\xd7\x82\x0c\x82\x28\x96\x01\x0e\x00\xfa\x33\xc0\xc1\x9c\xca\x28\xc0\xc1\x58\x8a\x38\x18\xe2\xf7\x82\x7c\xfb\xbf\xc6\x31\x1b\xdf\xaf\xe7\xc9\x32\xa5\x6b\x99\x2c\xc7\xb3\x6f\x5b\x8b\xce\x21\xf4\xcd\x20\x49\x3b\xe7\x43\x3a\xd1\xcf\x53\xe8\xe1\xc7\x3a\x67\x44\x6a\x84\xa9\x13\xd7\xef\x67\x2b\x1b\x68\xf8\xa8\x0c\xff\xf1\x4c\x85\xc6\x47\xf1\x25\x15\x66\xf8\xc3\x33\xaa\x05\x1d\x5f\x03\x49\xe7\x57\xbe\xd7\x81\xbd\x78\xd8\x56\x9d\x8a\x01\x7e\x83\x1f\xb1\xf0\x9f\x80\x09\x92\x97\x54\x0f\xf6\xba\x9d\xaf\x29\x49\x0c\x13\x9b\x2f\x62\x36\x66\xf2\x46\x83\x98\x98\xe8\xc9\x49\x32\x27\xc6\xb5\x85\x3e\x50\x0e\x90\x4e\x7a\x07\xdc\x51\xd9\xb7\x4f\x42\x2f\x99\xd4\xf2\x19\xf3\x88\xfb\xa8\xc9\x25\xc6\xf5\x55\x5b\x23\x13\x9e\x63\x02\xad\xd7\x01\x10\x45\x60\x4c\x1f\x87\xf9\x40\x6b\xa5\x9e\x5c\x84\x29\xcd\x8b\x85\xb6\x30\xfe\x45\xf5\x6f\xc1\xdb\x88\x2a\x22\x28\xbd\x1f\xc8\x61\xf9\x08\xa1\xa6\x47\x66\xf6\xea\x99\x46\x71\x8a\xed\x01\xe6\xc6\x9b\x4f\x13\x40\x9a\x68\xa1\x3b\x40\x07\xd2\x98\x65\xcd\x6f\xdb\x74\xcf\xe7\x1a\xc6\x8a\x52\x47\xa7\xa0\x44\x10\xa4\x44\x2b\xf6\x60\x74\xad\x43\x42\x4f\x68\xe8\x76\x79\x7b\x1b\xd3\x14\xb0\x27\xcd\xa3\x85\x80\xd5\x3f\xd6\xe9\x82\x02\xc8\x6b\xa9\xdf\x18\x17\x98\x9f\xe9\x53\x0a\x36\x63\x4b\x1b\x7a\x8c\x00\xb9\x03\x10\xa0\xac\x7c\x37\x2b\x5e\x98\x1d\xe4\x92\xfe\xfb\xbd\xe8\x48\x9a\xca\x50\x1b\x6f\xad\x6d\x13\xfc\x45\x58\x7a\xad\xe6\x91\x1e\x29\x42\xd0\x3e\xc5\x24\x08\x32\x93\x45\xcc\x88\x77\x11\x7f\x0a\xd0\x8f\xa4\x6b\x13\xe3\x77\x4b\x29\x08\x5e\x0b\x3f\x07\x01\x9b\x86\x74\xf0\x5a\x0c\xc4\x70\x27\xf8\x99\x3e\x05\xc3\x76\x5b\xe3\xe5\xba\x0a\xe1\x25\x72\x69\xf6\xdd\xfd\x32\x0b\x29\x76\x56\x70\xb4\x5e\x6b\xb8\x53\xa7\xae\xd7\x89\x1e\xfc\xa9\x53\x13\xb2\x5e\xd3\x4e\x2a\x93\xc5\xa5\x48\x16\xd1\x5d\xa4\xe9\x04\x87\x5d\xac\x2f\x3a\x1e\xde\x8a\xa3\x9e\x22\xb1\x83\x14\xbf\x82\xbb\x18\xc5\xe6\x6e\x96\x82\xbb\x80\xd6\xef\xb6\x6a\x2e\x34\x20\x89\xd7\x3d\x3f\x08\xb9\x56\x00\x0a\x75\x1a\x50\x3e\x39\xf8\x8a\x6b\x1b\xf7\xaf\x6d\xba\x1a\x73\x1e\xa5\x78\x90\x0b\xf5\x54\xdd\xd2\x7a\x7f\xb9\x7e\x55\xa3\xad\x9d\xa2\x0c\xfd\xf5\x2a\x45\xa1\xbe\xbf\x5e\x9d\x7f\xe3\x51\x35\x66\x08\xc7\xa8\xc1\x0b\xfb\x0f\x61\x5d\x11\x75\x9c\x5a\xd3\xf1\x60\x82\xcf\x9a\x22\x4a\x9f\xf1\xfa\xc0\x11\x5e\x42\xd0\x63\x6e\x5c\x1a\x93\x58\x6f\x7f\x3c\x25\xb1\x7f\xa5\x9c\x91\x58\xb1\xf2\x16\x9b\x86\x53\x87\xec\x89\x00\xeb\x7a\x6a\x34\x53\xe1\x52\xff\xb9\x87\xd0\xe0\xed\x10\x45\x64\xa9\x15\x1c\x4b\x1f\x4d\xa6\x15\x91\x65\xee\x86\x6b\x36\xe0\x84\x0c\x86\x78\x41\x5e\xed\x2f\x7e\xb0\x95\xef\x2f\x76\x76\xd0\x44\xbb\x16\x43\xad\x0b\x83\xfe\x34\xd7\x32\xca\x72\xc9\x26\x28\x2c\x98\xb2\x3e\xa8\xab\xc5\x1c\x47\x78\x82\xc7\x78\x8a\x13\xcc\xf0\x0c\x26\xd8\x40\xde\xd4\x1b\x34\x92\x39\x08\x51\xe6\x40\xd5\xb0\x1f\xf6\x0c\xff\xa8\x9d\xfe\x8b\x01\x29\x02\x07\x4a\xf8\xdd\x2d\xae\x75\x50\x8d\x5c\xa9\x2b\xb8\x1b\xec\x70\x23\x56\x6e\xf0\x4e\x29\xaa\xcf\xf6\x50\x4b\x0e\xde\x0e\x21\x5c\xdd\x3b\xd8\x73\x01\x0a\x53\xef\x20\xa6\xa5\x53\xd8\x1d\x42\x0d\x86\x16\xb0\xb1\xc8\x17\xc1\x60\x38\xc4\xcb\xb7\x2f\x32\x1b\x58\x0b\xf9\x46\xab\x81\xd1\xf1\x17\xca\xf6\x34\xae\x5f\x8f\xfa\x9a\xfc\xa2\x86\x95\x1f\xfc\x2a\x7a\xbf\x89\x0c\xff\xfc\x32\xa3\x4c\x49\x5e\x72\xbd\x30\xbd\x9a\x5b\xf3\xbf\xf0\x4c\x34\x7f\x83\x31\xc6\xd6\xeb\xce\x5a\x6d\x26\x35\x95\x38\x17\x82\x82\x80\xae\xb7\xfc\x37\x7f\xe3\x96\xb7\xf1\x21\xfe\x46\xf7\x0d\xcc\xe6\xab\xbc\x3b\xc5\xa5\xc3\xdc\x75\xce\xdf\x6e\x3f\x83\xf6\x25\x1f\x32\xc3\xfc\x59\x62\xcb\xad\x7a\x9b\x77\xa5\xdd\x8d\x05\x34\x9e\xbc\x25\x42\xdd\xcc\xb6\xb8\xad\xc8\x75\x9f\xe1\xe2\x7c\x6e\xdc\x6a\x0e\xee\xa8\x60\xdc\x76\xb5\xdb\x5b\x99\xab\x9c\x17\xbc\xc2\x5e\xbe\x6f\xf0\x2f\x7f\xcf\x82\x56\xd2\x07\xbd\xd8\xda\x51\x33\xe3\xf5\xf9\x81\xf4\xd3\x97\x99\x46\x60\x68\xbf\x6a\x2f\xb7\x6f\x04\xfe\x4d\xff\xf5\x8b\xc0\x3f\x69\x65\x25\xa6\xc5\xbc\x53\xe2\xc9\x05\xb0\x34\x65\xdf\x9b\xb0\x87\x00\x74\xd0\x5e\x80\xe8\x64\x02\x1c\xed\x54\x5d\x9d\x38\x15\xa1\x11\xf9\x6b\x14\xc3\x62\x67\x27\xc3\xab\xc4\x18\xd7\x10\xae\x51\x40\x42\x55\x07\xfa\x26\x00\x7f\xdb\xea\x50\x2f\xa4\x95\x6e\xe9\x02\xf0\x4f\x80\x50\x87\x71\x26\x0b\x1f\xe1\xed\x2e\xde\xee\x22\x48\x96\x94\x2e\x22\x39\x9e\xe9\xd7\xb4\xf6\x11\x44\x06\x65\x63\xf5\x2c\xe4\x5e\xa6\x7a\x35\x8d\x92\x3f\x0b\x2c\xa1\x43\x63\x8c\x5b\x83\x0b\xad\x2f\xdd\x05\x15\xef\x92\xf9\xe5\x0b\x54\x2e\x9b\x48\x4c\xaf\xff\x1b\x91\xcc\xcb\xb7\xa6\x42\xac\x91\xd9\x29\xd6\xc7\x34\xd7\x1d\x8b\x8e\x9a\x6e\xb0\x46\x2d\xd4\x05\xff\xa1\xe0\xb1\xd2\xe2\x16\xec\x5f\x95\x6a\xb7\x43\xf7\xb7\xbd\x88\x96\x06\x85\x30\xb3\x5f\x98\xea\xec\x47\xe6\xa7\x33\x0f\x97\xbf\x4b\xec\x77\xa6\x69\xfb\x9d\xf9\x69\x6f\xb5\x95\xef\xf8\x7a\xcd\xd6\xeb\xe4\x80\x96\x10\x24\x80\x8a\x38\x36\xcd\xf6\x18\x36\x15\xf5\x92\xac\x57\x28\x69\xe0\x86\x4c\x8c\x54\xa3\xf5\xab\x15\xd9\x0e\xba\xe3\xda\x76\x31\x3f\xbf\xa3\xfa\x4e\x1a\x2f\x9f\x72\xe5\x9e\x7d\x2b\xb5\x95\x2f\x53\x2a\x2e\x45\xf2\xc0\x26\x74\x62\x7d\xa3\x6c\x3b\x75\xef\xec\x65\xbe\xb6\xc9\x25\xd1\x59\x0a\x78\xbb\xcd\xd7\xeb\xed\x3d\x07\xf1\xe0\x97\x56\x72\xe0\x12\x3d\x00\xf4\xab\x99\x71\x53\xb5\x23\x26\xa7\xa6\xdf\x86\xaa\xda\x6d\xf5\x0c\x4c\xd9\x38\xc6\x14\x61\xfd\x4d\xf8\x93\xc0\x12\x65\x3a\xd1\x63\xb1\xa6\xb4\x41\x54\x36\xf5\xb8\x23\xa3\x38\x9d\xb8\x50\x09\xf6\x57\xcd\x9e\xb4\x82\x93\x2e\xe6\x9c\x74\x73\x2d\x57\x21\xc5\x16\xdf\xd9\xc1\x94\x1f\x50\x13\x44\x5a\x64\x44\xba\x50\xcf\x05\xf5\x03\x34\x95\x21\x93\x0d\x9f\x6c\x77\xd5\x55\xbd\xe1\xad\x67\x10\x8a\xbc\x8e\x08\xd7\x91\x0a\x3b\x7c\xa6\x17\xb5\xe5\x75\x17\xea\x5e\x99\x8c\x28\x8d\xdc\xc8\xf0\xa2\xeb\xf7\x97\x97\x17\x57\x37\xd7\xa3\xfe\x87\xfe\xf9\xcd\xe8\xe2\xf2\xe6\xe4\xe2\xfc\x9a\x50\xb3\xab\x8b\x19\x46\x37\x3a\xc8\x36\x08\x2d\x2e\xf2\xad\x98\x5e\xa9\xec\x6d\x5a\x90\x6b\x7c\x01\x45\xaa\x9a\x9e\x93\x49\x4c\x26\x20\x7a\x50\x3c\x2e\x7b\x74\x93\x98\x92\x27\xa4\x0d\x69\x89\x7d\x86\x08\xab\x45\x73\xe4\xe8\x89\xe6\x98\xe6\x84\x48\x1d\x15\x62\x5a\xda\x78\x7b\x4d\x22\x4b\x5d\x56\xa3\x82\xa4\x94\xb7\x64\xad\x4f\xd0\x96\x12\x97\x4c\x6b\xad\x9a\xee\x16\xdb\x6f\xb7\x43\x9d\xa4\xd2\x64\x5b\xfe\xcb\x63\x79\xa9\x90\x04\xfa\x7d\xe3\x4c\xa3\xa4\x4e\x14\x52\x3c\x58\xdd\xd3\xa7\x5e\x30\x4e\x96\x6a\xfd\xd3\x00\xdf\x51\x59\xf5\x17\x5e\x45\x93\x49\xda\x13\x1c\xeb\xfd\x94\xf6\x38\xcf\xb2\x6c\x88\x4a\x69\xa9\x96\xb5\xcb\x0e\x4e\x0d\x03\x3a\xe8\x0e\xc1\x2e\x5b\xed\x5b\xf0\xef\x60\x87\x66\x08\xd3\xc1\xde\xd0\xcb\x77\x1c\x17\xae\xd3\x5e\xad\xdb\x84\x88\x76\xdb\xad\xd4\x41\xc8\xac\xbf\x8c\x51\x84\x53\x84\x59\x87\xf1\x87\xe4\x9e\x5e\xcb\x48\xb2\xf1\xeb\x38\x19\xdf\x87\xc2\x45\x22\x22\xd4\x2b\x16\x08\x05\x42\x78\x5b\x67\x9b\x1c\xf3\x67\x30\x00\xff\x37\x26\x48\xac\x0d\xd6\x99\xf2\xff\x73\xee\x4c\x2f\xc1\xe7\xa7\xfc\x8e\x71\x5a\x4d\x04\xa0\xba\xc3\xc6\x26\x73\xef\xff\x9e\xc4\x84\x63\xde\x10\x9b\x93\xf7\x56\xe7\x65\x86\x38\x3a\x00\xee\xee\x43\xef\xed\x84\x1b\x38\x7d\xd4\x12\x9d\xdb\x24\x91\xe6\x76\x0e\xd6\x02\x22\x3a\x26\xa6\xe3\x4d\xa2\xe4\x65\x97\x0c\xb2\x38\xd0\xf5\x3a\xec\xe2\xeb\xce\x9d\xe2\xfd\xe0\xec\x6a\x8b\xbd\xd1\x1f\x43\x34\x4c\xe1\x0b\x70\x47\x99\x27\x13\x1a\x5f\xd1\x69\x9e\xb5\x81\x10\x12\x21\x46\x56\x7a\x7a\x7b\x02\x7b\x2d\xf2\x3c\x6a\x08\x61\x48\x42\xa9\x03\x7a\x38\xc2\x32\xba\xeb\x95\x2e\x2a\xc5\x30\x72\x2b\x66\x2e\x49\xe4\xc3\x9f\xb6\x9e\x6f\x6a\x05\x9d\xec\xa5\x59\x5d\x9b\x50\x19\xb6\xc3\xe8\x45\xf6\xcf\x87\xde\xd2\x81\xc4\xb1\xaf\x4e\x1b\x59\xd1\xaf\xbc\x28\x7a\x48\x8f\x67\x63\x6e\x49\xb4\xea\x3e\x13\xd8\x94\xcf\x05\x1c\x09\x76\x84\xf6\x56\x0b\x63\x84\xf4\x42\x0d\xd8\xb3\xbe\x4f\x59\xfe\x45\x19\x7b\x16\xa2\x92\x02\x78\x1b\x60\x86\x3c\x27\xd9\x59\x39\xdc\xa1\xa0\xb6\x99\xf2\x3a\xcf\x4e\xb7\x0c\x32\xf3\x1c\x69\x26\x15\x6c\xc8\x72\x22\xbc\xb9\x3a\x17\x02\x2c\xd7\xeb\xc1\x10\x8b\x61\xce\x0a\x0c\xd3\xca\x1d\x5e\x0d\xcc\xe2\x40\xe7\xcb\xb3\xc0\xcc\x06\x9d\xd9\x70\xd6\xc5\x86\xeb\x97\x8b\x1f\x55\x17\x2a\x58\xd3\xdc\x86\x76\x05\x49\xe2\xad\xba\x07\x06\x62\xd5\x48\x1e\xc6\x1d\x04\x65\x83\x80\x9f\x83\x9e\xc1\xb3\x63\x93\xca\x72\x93\x80\xa4\x13\xd5\xd4\xab\x9c\x00\xe0\x85\xf8\xbd\xb1\xca\x26\x6f\xed\x65\xc9\xd2\x52\xf1\x84\xe1\x07\xa5\x5e\x12\xe2\x3f\x3a\xa6\xd3\x9e\x65\x46\xb3\x28\x35\x51\xbe\xda\x4c\x11\x98\x7d\x18\xec\x70\x74\x10\x96\x07\x5b\x1a\xa9\x8f\x85\xa3\x36\xe4\x8c\x87\x1c\x0b\x87\x11\x60\x8a\x19\x5f\xc3\xb0\x3a\x4b\xb5\x93\x69\xd2\xad\x95\x50\x10\x3d\x1f\xd1\x1a\xa8\x1c\x23\xfc\xcf\x9f\x93\x72\x7d\x3c\x44\x9a\x5f\xaa\xe3\xce\x31\x13\xf2\xa9\xe4\x02\xb1\x31\xc9\x68\x03\x44\x23\xe0\x13\x99\xbb\x90\xc6\x07\xa8\xac\xb6\x6f\x09\x2d\x81\x39\x36\xe4\x29\xf2\x8b\x99\xbf\xd5\x26\x64\xdc\x1b\x83\xf1\x3a\x98\xa8\x71\xd8\xe0\x7e\xfc\xf0\xbc\x0e\x42\x23\xb5\x40\xd5\x1e\xe9\xeb\x46\xce\xcd\x7e\xf0\xd4\x0f\x25\x07\x10\xb3\x79\x74\x96\xc1\xaf\xa5\xf9\x62\x17\x72\xb6\x94\x67\x9c\xa3\x07\xfa\xcf\x9e\x1b\xbe\xad\xd9\x15\x91\xb6\x88\x1c\x54\x47\x60\xeb\x1c\x6e\x00\xd7\x2c\xaf\x1c\x4c\xe0\xd3\x4b\x27\xd0\x4e\xdc\x3d\x7d\xf2\xa7\x8b\x3e\xa7\xad\x29\x74\x46\xd6\xa0\x84\x9a\x98\xb1\xe7\xe7\xaf\x62\xaf\x6e\xb7\xe9\xc0\xf6\x69\x58\xce\xea\x7a\xf7\x2c\x3b\xb6\x79\xa0\xff\x26\x7e\x7c\xfb\xb2\xad\xe9\xd1\xe0\x24\x0f\xb9\xcb\x79\x85\x62\x15\x7a\xfb\xe6\xcf\x5e\x34\xd1\x0d\x13\x58\x77\xe8\x7a\x69\xfb\x72\xf2\xaa\x5c\x54\x05\x24\xe8\x56\xc7\x7a\xa1\xa0\xa8\xbd\xd1\x5a\xb9\xb4\x42\xb6\x5c\x5f\x59\x56\x42\xb1\x64\x6c\x70\x71\x39\x64\xd5\x82\xf9\xe8\xd9\x84\xdc\x05\x84\xea\x5c\x42\x12\x9e\x88\x90\x65\x61\x71\x26\x61\x08\x0d\x56\x78\x52\xb8\x7a\xab\x11\xe6\x49\x91\xdc\x68\x9d\x1d\x7c\x2b\x8f\xb8\x01\xab\x79\x9e\xf4\xc6\x97\x51\xe0\x95\xd7\x1f\x0b\x5b\xe6\x16\xcd\x85\x30\x97\x16\xb8\x55\x5a\x5b\x87\x33\xec\x79\xcd\x7a\xb7\x74\x59\x39\x78\x9e\xc0\xf2\x8c\x2a\x84\x23\x37\x6c\xf8\x0d\x07\x89\x97\xfd\xb8\xb2\x4f\x78\x0e\x13\xdb\x14\xef\x59\xc0\x8b\xe3\x1d\x41\xa7\x54\x88\x3c\x56\xd6\x0e\x85\x01\xa4\x97\x8b\xf0\x01\x31\x8a\x8d\x43\x86\x07\x2e\xa1\xf1\x60\xd8\x93\x78\xc9\x43\x81\xf2\x2d\x35\x54\x7b\xca\xcf\xbd\x5c\x9b\x35\x29\xf9\xc2\x6e\x26\x8d\xdd\x8c\xda\xed\xb0\x2f\x55\x17\x92\x6a\x67\x23\x3c\x70\x1d\x04\xd7\x52\xd5\x35\xd5\x83\x3e\x2f\x80\xb1\x7e\xf6\x76\x18\xc4\xbb\xbb\x9d\xd9\x6e\x03\x06\xac\x0e\x45\x6f\xb7\x03\x6b\xac\x09\x34\xa1\x3d\x2d\xe8\x81\xb4\x97\x1f\xa3\x13\xcb\xc7\x7e\xed\x07\x87\x25\x10\xac\xee\x45\xb1\xf7\xd4\x5d\xdf\x8b\x70\x28\x26\xc7\xd3\x6e\x98\xb9\x9a\x8d\x1e\xf8\x79\xe4\xec\x0b\xd8\x93\xe9\x22\x1a\x53\x25\xcf\xd2\xce\x88\x7e\x5e\x50\xc1\xd4\xfd\x36\x8a\xcf\xa2\xb1\x48\x52\xd2\xd7\x19\xa3\xef\x39\x59\xb1\x69\xaf\xee\xea\xe7\x2b\x7a\xed\xc8\x4f\xac\x82\x24\x14\xc6\xe4\x2e\xb4\x0e\x58\xff\xfb\x0a\xa1\x0c\x6b\x03\x71\x5d\x95\x20\x06\x6a\xdb\x3e\x6b\xc8\x3b\xa6\x57\x94\xf2\x31\x4d\xab\x39\x66\x8d\x6b\xf8\x2b\x75\x17\x0b\x23\xdf\xa6\x8f\x79\xc9\x3b\x89\x17\xbd\x93\x7a\x09\xc0\x27\xcf\x88\x29\x07\xec\x32\x40\xed\xb6\x29\x67\x7e\xe3\x09\x49\xf1\xc4\xe5\x2c\x6b\xb7\xc3\x45\xdd\x2e\x9c\x34\x28\x6a\xf2\x34\x9a\x19\xca\x9d\x4b\x32\x84\x67\xed\x76\x38\xaf\xe1\xdb\xb3\xf2\x01\x28\x15\x73\xf2\x9a\xa7\x83\xee\xd0\xcb\x48\x0d\x3e\xf2\xea\x8e\x43\x33\x84\x17\xed\xf6\xfc\xa0\xa6\x13\xf3\x70\x01\x2e\x2d\xbd\xc5\x7a\x3d\x5f\xaf\x0f\x0d\x44\xc9\x0c\x4f\xf0\x02\xcf\x73\xa8\x98\x1a\xbb\x54\x34\x78\x3b\x3c\xb8\x11\x61\x84\x23\xac\xfe\xc6\x53\xf0\x3a\xf1\x5c\x55\x97\x08\xf2\x78\x79\x4f\x22\xa4\xbe\x48\xf2\x6b\xb2\xfb\x2b\xbf\x3a\x4f\x51\x25\x25\xb7\xa7\xb3\xaa\xca\x99\x3a\xa2\xc5\x0b\xdc\x75\xa6\x1e\x54\x0c\xb8\xc8\xd5\x36\x59\xe6\xf7\x01\x47\x78\x8a\xd0\xe0\x67\x48\x4f\x62\x00\x2c\x85\xa2\x4d\x21\xa2\xa7\x12\x69\xd6\x45\x45\x39\x7a\xcc\xb0\x5e\xc7\xfa\x6f\x54\xcd\x09\x0d\xcf\x04\x96\xf9\x27\x28\x2b\x2a\x09\xfd\x0f\xce\x45\x1e\x38\x5b\xb6\xd1\xe0\xaa\x65\x05\x65\x78\x16\xa5\xb3\xa6\x0e\x97\x30\x5b\x32\x1c\x27\x77\x1b\x3b\x7a\x5a\xee\xe8\x7c\x59\xee\x68\xbe\x51\xcb\xfd\x53\x67\x6d\x28\x08\x47\xed\xb6\x18\xbc\x11\x43\x77\x16\x1b\xef\xff\x52\x76\x57\x47\xd3\x6c\xf0\xa7\x18\x12\x8e\xd9\xe0\xed\x90\xf0\xc1\xa7\x21\x66\xea\x73\xb5\x32\x2c\xc3\xc1\x1f\x4b\x2a\x9e\x76\x17\xa0\x99\x0c\x36\xf6\xfe\x5d\xb9\xf7\x82\x46\x93\x84\xc7\xe5\x05\xd5\xec\xab\x6e\x7b\xaa\x9e\xac\xd7\x34\xab\x99\xfd\x82\xde\x3e\xd5\xd4\xb2\xe4\xb7\xc9\x92\x4f\xea\x3b\x15\xd1\xe6\xa5\xf4\xec\xf3\x4b\x1e\xd3\x34\xfd\xab\x0c\xf6\x95\x63\xb4\x28\x73\xf9\xf7\x37\x4e\xd6\x75\x79\xb2\x82\x5d\x1a\x8d\x67\xbb\x8c\x6f\xf8\xee\xf7\xba\xc1\xc0\xb7\x00\x64\xb2\x0b\x80\x29\x1b\x9b\xbd\xa8\x36\xcb\x13\x31\x8f\x62\xf6\x27\x7d\x49\xb7\xef\xab\xdf\xdf\x51\xb9\x6b\xc4\xf7\xdd\x87\x48\x04\xbd\x99\xa7\x68\xfd\x10\xe5\x6a\x98\xda\x49\xd6\x50\x61\x75\xf4\x0c\x67\x90\x97\xac\x4f\xeb\x92\xd0\x41\x01\xc2\xc8\x3c\xb4\xe9\x5c\xbc\xce\x2e\x40\x6f\x80\x19\xf4\xd1\x5c\x3c\x1a\xf6\x12\xed\xf8\x3a\xec\x9c\xdb\x0b\xd2\x90\xc7\x13\x92\x95\xc7\x1d\xe0\xb0\x2e\xb0\x22\x0c\xd4\xf5\x39\x40\xbd\x9a\xa1\x40\x36\x0f\x0e\x62\xe5\x03\x0f\xb9\x7f\xf9\xc6\x42\x4f\x63\x94\xa6\x54\xc8\x5d\xeb\xed\xbb\xeb\x24\x8e\xdd\x19\x5c\x9f\x76\x2d\x2f\x0d\x7a\x9f\x05\x9e\x72\x2b\xb7\xb4\xee\x79\x67\xda\x80\x20\x62\x16\xed\xf7\xd2\xa2\x01\x43\x38\x7c\xee\xf2\xa4\xd5\xd9\x29\x19\xe8\x86\x0c\x5e\x77\x72\xfb\xfb\x4d\xa2\xc1\x47\x0a\xc0\x45\x3a\x5e\x61\xc9\x62\x79\xc2\xf5\x7d\x2f\x25\xf7\xbc\x18\xf7\x0d\x19\xab\xe1\x2b\xf7\xc5\xb8\x2a\x38\xd6\x95\x5a\xa6\x32\x99\x1b\x07\xf9\x9a\xf7\x85\x06\xde\x31\x99\x5a\x10\xc7\xc2\x8b\x33\x96\xa6\xd4\xbd\xaa\x6b\x59\x91\xa9\x7d\xaf\x67\xbd\xf2\xd2\xcb\x56\x92\x74\xb4\xac\xb6\x1f\xd6\xdd\xf8\x18\x8f\x19\x37\x89\xb7\x6f\xe3\x64\x7c\x9f\xb6\xc0\x4d\x25\x0c\xec\x2d\xf8\x0e\x42\x7c\xe0\x91\xd1\x53\x4e\xec\x13\xd5\x55\xc6\xef\xc2\x11\x84\x10\x41\x11\xf8\x24\xb6\xbf\x6d\x81\x47\x9e\x27\x55\xe5\xa4\xbb\xcf\x7f\xe8\x3b\x2c\x52\xbe\xb3\x83\xc2\x2e\xee\xf3\x01\x1f\x22\x48\x2c\x9c\xa1\x50\xa2\x7c\xf8\x4a\x92\x37\x23\x39\x8d\xfe\x84\xe8\x7f\xf5\x08\xc8\x74\x62\xfc\x4b\x0d\x4a\x25\xaa\x35\xd9\x16\x56\xdd\x3a\x40\xa5\x64\x65\x44\xcc\x95\x51\xea\x82\x62\xfd\x93\xc0\xa0\xd3\x35\x69\x56\xea\x3f\xed\x24\x9c\x14\xbe\x4a\xd5\x9c\x16\x3e\xdc\x70\x1f\x7f\x29\xbe\xce\x43\x9e\xd3\xa8\x19\x55\xa7\x55\xbc\xca\x0a\x7d\xa9\x86\x8f\x2c\x28\x92\xa8\x43\xf5\x31\x7b\xa3\xb1\x45\xb3\xad\x6c\xc4\x24\xf7\x9f\x5a\x75\xe6\x86\x3b\x95\x07\x68\xae\xee\xc6\x16\x4f\xb5\x89\x9a\x77\x76\x30\xd7\xf0\xd6\xd0\xe5\xba\x53\xd7\xef\xd5\x80\x0e\x9f\x81\x4d\x7a\x76\x24\xa3\x0a\x86\x52\x2b\x37\x4b\x17\x93\x38\x99\x41\xf3\xc2\x88\x98\x19\x51\xed\xfe\xdb\xd9\x71\xd1\x5e\xce\xbd\xed\xc5\xf0\x4c\x35\x73\x5c\x80\x68\x7a\x16\x48\xc9\x1b\xfb\xa8\x8a\x9f\xd4\xaa\x69\x4b\x53\x48\x31\x0d\x79\x5d\xa5\xe5\x4c\xe0\xc0\xaf\x2c\x22\x9b\xaf\x0a\xe2\x07\x21\xdf\xc0\xfb\x0c\x16\x1c\x47\xa8\x27\x4c\xac\x05\x45\xd8\x53\x24\x19\x30\x3f\x0b\xad\x25\x7a\x05\x66\x90\xed\x43\x82\xf4\xd4\x25\x48\x4f\x20\x0f\x21\x71\xa2\x54\x82\x30\xa4\x40\x85\x70\xcc\x46\x16\xbb\xb3\x93\xe5\xee\x39\x15\xde\xbc\xb3\xe3\x96\x3b\x0f\x41\xa9\x73\x63\x28\xe9\x93\x5a\x1e\x3e\x99\x77\x0a\xd9\x5c\x50\x15\xe5\xad\x83\xd5\x76\x84\x6a\xc0\xb7\x6d\xaa\x0a\xbf\x12\x3d\x26\xc0\xdd\x06\x38\xdc\x97\xed\x80\xe2\x79\x37\xa0\xc3\xda\x1c\xf5\x5b\xa2\x95\x43\x36\x81\x85\x04\xeb\x20\x7c\x73\x49\x4a\xc9\x05\x0f\xc1\x62\xba\x8c\x29\xb8\x4e\x44\xea\x06\xcd\x0a\xe6\x59\xbd\x1d\x7a\xc1\x4e\x82\x53\xb4\x5e\x37\xbd\x74\xe6\x1b\xad\xb8\x70\x57\xc7\x90\x13\x75\x35\xb4\xdb\x10\xbc\x7f\x94\xb4\xe7\xfe\xe8\xb0\x54\x0f\xc3\x98\x75\x0f\xea\x06\xbd\x74\x66\x8c\xca\x74\x0b\xeb\x79\x75\xc0\x69\x2e\x22\x9b\x70\xc8\x82\xf8\xd1\x0b\x69\x87\xd3\x47\x03\x82\x1f\xdd\xc2\x36\xc1\x2c\xff\xaa\x50\x1a\x65\x3d\xbb\xd1\x47\xcf\xef\x4d\x88\xf5\x29\x14\x43\x70\x53\x85\x59\x87\x9d\x94\xeb\x52\xe1\xdc\x33\xa5\x0a\x2c\x16\xf2\x1c\x14\x31\x7d\xe9\x4e\xe0\xd0\x7b\xb7\x16\xfa\x1b\x8d\xdb\x3f\xda\xc8\x7e\xaa\xb4\xe2\x8e\xba\x02\xb5\xe4\x7b\x93\x3b\x1a\x61\x84\x17\x16\xd9\x2a\xb1\x7a\xc1\x0e\x45\x05\x42\x73\x18\x9d\x9f\x79\xc8\xf4\x72\xa2\xb0\x08\xe2\xf5\x56\x40\x2a\xb9\xa4\xe6\x18\x77\xd9\xd5\xf5\x7e\x1c\x41\xca\x65\x45\x86\x6f\x12\x71\x6e\x15\x55\x75\x4a\x6d\xec\x52\x2f\x71\x90\x77\x4c\x14\x55\xaf\xe7\x32\xf7\x40\x5a\x67\x0e\x1b\xd1\xe2\x06\xf0\x9d\x57\x9a\xa3\xe8\x9f\x5d\x48\xd1\xac\xcd\xbc\xd2\xd3\x8b\x89\xcc\x9b\xdc\x17\x9f\xe8\xfe\x1e\xf2\x27\x92\xe2\xc4\x76\x35\xf2\x69\xc4\x55\x8c\x42\x8e\x19\xbe\xe0\xa1\xc0\x09\x42\x80\x31\xaf\x21\x74\xc1\xab\x20\x07\x32\x8b\x73\xfb\xd1\xf2\x20\xed\x2d\x0b\x2b\x18\x57\xb8\xd5\x98\x6c\x14\x72\x81\x75\xc5\xc5\xb5\x1c\xdb\x4a\xc6\x1a\x94\xf2\xb9\xcc\x86\x00\xef\x55\xa9\x3e\xc0\xd7\xe0\x9c\xa5\x01\x02\x0a\x0d\xa4\x36\xc1\x90\x1a\x43\xbb\x6d\xb2\xe4\xb8\xcc\x38\x17\xe7\xa7\x9f\x46\x6f\x4f\x4f\xce\xce\xfa\x57\xa3\xa3\x8b\xb3\xcb\x8b\xf3\xfe\xf9\xcd\x75\xbb\x1d\xce\xb4\x3b\xb4\x08\x53\x64\x8f\x94\x6d\xa8\x22\xff\xdb\xd0\xde\x4a\x47\xec\x8c\x45\x68\x9f\xa8\x1e\x4c\xda\x6d\x0f\x0c\x94\x10\x32\xd1\x61\x7a\x2b\x1d\xb3\x33\xb1\xc4\xde\x9a\x91\x89\x53\xde\xc2\x4d\x4b\x8a\x70\x1e\x72\x84\x4d\x6d\x38\xd5\xa0\x00\xb7\x22\x64\x78\x89\xe1\x55\xba\x5e\x73\xeb\xb1\x13\x76\xf1\x63\x67\x21\xd8\x43\x24\x01\xb9\xe5\x58\xb1\x91\x9c\xca\x8d\x40\x37\x73\x43\x7a\x27\x55\x3d\xaa\x02\x6f\xbb\x95\x2b\xf9\x5d\x55\xa2\x15\xe6\x6a\xfc\xd3\x10\x6d\xbe\xc0\xc0\x89\x12\xe3\x19\xc2\xb3\x3a\x4a\x3e\xb3\xee\x0e\x65\x4b\x4a\xc3\x7d\xa7\x04\xd7\xda\x54\xca\x48\x0c\xf6\x6a\x6d\x5d\x98\xf2\xbb\xa4\x95\xad\x83\x9d\x92\xc0\x52\x53\x99\x96\x25\x04\xc2\xc2\x58\x2e\x6f\x38\x59\x69\x26\xdd\xab\x0d\xc9\xf0\x52\x1f\x7b\xac\xe7\x50\x1d\x6e\x45\x8e\x93\x0b\x1c\x19\x3e\xe2\xe4\x4d\xb8\x62\x93\x5e\x30\x9e\x4d\x7f\x19\xbf\xfb\xaf\xef\x02\x0c\xf7\xa5\xde\xbf\x56\x81\xf6\x98\x4a\x83\xde\x20\x68\x4f\x4c\x18\xe9\x10\x07\x70\x1f\x00\xbd\x62\xd0\x1b\x0c\xf6\xbe\xc7\x7b\xc3\x21\x86\x84\x9b\x0f\x51\x1c\xf4\xa6\x51\x9c\xd2\xec\x5f\x78\x4e\x65\xd4\x5b\xe5\x3c\xa1\x17\x2c\xa2\xf1\x7d\x74\x47\xd3\x6f\x0d\x12\xec\xae\xa5\xb3\xf4\x5b\x8b\x4a\x13\xb3\xdb\x6f\xad\xcc\x92\xe6\x50\xb1\x9d\xd9\x6d\x1a\x64\x19\xc2\x67\xae\xbf\xe7\x1f\x7f\xfb\xf3\xf4\xfa\xe4\xa4\xbe\xbf\x16\xd5\x36\xc0\xc1\x0d\xfd\x2c\xdf\x00\x86\x11\x0e\xfe\x6d\x81\x99\x03\x1c\xb4\x23\xc8\xa5\x5c\x19\xd0\xf7\x58\xdf\xf6\x06\x83\x57\xff\x85\xbd\x3d\x83\x07\x1e\x38\x92\x36\x8c\x0e\x71\x4d\x19\x0f\x34\xc9\x94\x32\x56\xd4\x55\xb5\x21\x36\x85\x76\xbe\xc3\x5d\x3c\x08\x72\x2c\xde\x60\xd8\xf4\xcd\x7f\x60\x55\x7a\x0f\x0f\x86\x43\x3c\x18\xec\x7d\x87\xbf\x87\x3f\x82\x7f\x1b\x5d\xbe\x3f\xc4\x61\x5e\xb5\xc6\x82\x0e\x54\xd9\x57\xdf\xe1\xef\xd4\xe7\xea\x3f\x1c\x80\x66\x91\x82\xf3\x66\x6f\x30\xcc\x1a\xda\x7b\xf5\x4f\xb5\x57\x79\xb4\x87\x5f\x0d\x33\x3b\x6b\xff\x08\x4d\x81\xae\xce\xd1\xd3\x95\xa3\xa7\xe9\xf4\xf0\xf4\x3f\xde\x1d\xc7\xb5\xf4\x54\xa5\x7a\x3c\x78\xf5\x0a\x5b\x65\xc2\x10\x43\x07\xff\xa9\x2e\xeb\x56\x5c\x9f\x2f\x39\x09\x76\x65\xb2\xd8\x8d\xe9\x03\x8d\x03\xfc\x3b\x27\x5a\xf9\x85\x8f\x37\xba\x48\xb9\x60\xbb\x91\xc7\x2b\xf2\xbc\x9e\x06\xaa\xdf\xf8\x3a\x68\x58\xfc\x0a\x74\x60\xcb\xbb\x40\x0a\x3a\x05\x0e\x3e\xe7\xe1\xca\x38\x71\xf4\x56\xaa\x23\x56\x39\x86\x75\xa5\xbd\x15\x54\xd6\x13\x98\x71\x99\x58\x2b\x9c\xb1\x86\xff\xce\xb5\x8d\xfc\xb2\x60\x04\xb7\x79\x26\x9d\x85\x3c\xcb\x8a\xf9\x66\x05\x9d\xf6\x98\xfb\x32\xaf\xab\xde\xa6\x6e\xfa\x93\x51\x83\x7b\x5d\xe7\xa0\x51\xeb\x10\xcb\xfe\x7a\xde\x06\x86\xc1\xa1\xb8\xec\x45\x2a\xf2\x88\xa8\x03\x2b\x7c\xe7\xa0\x2e\xb8\x82\xc6\x81\x05\xe0\x1c\x55\x0a\x02\x44\x6b\x06\xe8\xdf\xb4\x23\x68\xb2\xa0\x5c\xc7\x73\xfa\xe3\x29\xd4\x96\xfb\xc3\x54\x3a\xe5\xc9\x72\x3e\x8d\x80\x34\x67\x09\x04\x27\x9e\xb7\x40\xab\xe0\xdd\x22\x30\xc7\x72\xc0\x3a\x17\x1f\xcf\xfb\x57\x43\x9c\x18\x5d\xe7\xc6\xac\x82\x85\xb4\x6d\xe6\x34\x6b\x49\x52\xa1\x53\x75\x04\x43\x32\xaf\x8a\x6b\x1c\x3d\x70\x21\x61\x60\x2d\xb9\xa6\x31\x55\x82\x44\x48\x51\x8f\xea\x10\x7d\x9b\x01\x06\x15\xd3\xbf\xe4\x63\x0a\xca\x29\x0e\x6d\x7e\x98\xc6\x04\x6b\x26\x53\xef\x85\xe7\x7e\x56\x71\xf2\x12\x74\xea\x40\x63\x9a\x22\xc9\x5d\xd2\x16\x2f\xbd\xe2\x31\xcf\x10\xa6\x61\x50\xe5\x0f\x8a\x99\x7c\x0b\xb2\xbe\x3a\x6a\xe8\xe7\x45\x22\x64\xaa\x98\x70\x7d\x49\xc5\x46\x00\xa4\x65\x88\x8b\xa2\x4e\xb0\x4c\xe9\x96\x9a\xc8\xb1\x0c\x5a\xc6\x34\x05\x4e\x16\xf4\xd2\x98\x8d\x43\x8a\x3d\xbf\xfe\x15\xe5\xcb\x39\x15\xe0\x49\xbd\xdd\xad\x77\xf3\xdf\x92\x1d\xfb\x81\xe2\x52\x8d\xb5\x6a\xe0\x95\x33\xc0\x8e\x79\x61\xbd\xf9\x27\x1b\x6b\xfe\xa2\x3a\x9f\xad\x6d\xfe\x25\xb5\xcd\x9f\xab\x6d\x41\xe9\xfd\x17\xf5\xcf\x7e\xb0\xb1\xd6\x94\xca\x2f\xaa\xd4\x94\xdf\x58\xa7\xf3\xa1\x79\x71\xad\xee\x8b\x0c\x50\x13\x9a\x29\xd7\xd1\x63\x81\x78\x75\xfc\xfd\x6d\x74\xab\x0e\xb3\x9a\x4f\x97\x92\xc5\x1e\x91\x43\x8a\x91\x12\x45\xeb\xc3\xad\x40\xd5\xd4\x0e\x96\x4c\x31\x75\xb3\x49\x66\x98\x7a\xe4\x54\xd8\xb3\xd6\xba\x30\x0b\x29\x6a\x19\x5d\x0d\x20\xd0\xe5\x79\xab\x14\xcf\x34\x34\x4e\x28\x2c\x3a\xa1\x40\x49\x84\xe6\xb3\xe0\x87\x1b\x32\x9c\x58\xd3\x6f\xce\x02\xbd\x4a\x6c\x0a\x7c\x38\x39\x1c\xae\xd3\x92\xeb\x65\x99\x04\x8a\x33\xe4\x15\x47\x26\xca\x70\x0f\x2f\x9f\x31\x1f\x8d\x62\x13\x30\x96\x7e\xa0\x02\x92\x85\xb9\x0c\xb1\xfa\x78\xa2\x93\x3e\x9f\xe4\x79\x63\xa7\x71\x24\x55\xf9\x89\x2d\x6e\xf3\x70\x19\x67\x48\x3f\xf1\xf3\x68\x42\xd3\xb1\x60\x0b\x99\x88\xb4\xf8\xe2\x31\x92\xe3\x19\xe3\x77\xc5\xa7\x73\xf6\x99\xf1\xb4\x5c\xc5\xa2\xf4\x64\x3c\x8b\x18\xff\xa8\x2a\xa0\xe5\x6a\xe1\x55\xe9\x99\x8c\xee\x2a\x0f\x4a\x45\xa6\xb1\x7a\x64\x93\x94\x83\x6f\x90\x95\x76\x60\x2d\x3c\x6f\xd4\xce\x38\xe1\xd6\xf9\x3f\xf7\x4c\xf5\x1e\xe6\xab\x87\x4b\xf3\x6b\x6a\xc9\xec\xad\xaf\x72\xd2\x41\x8a\x90\x13\x75\x39\x8d\x62\xf6\x67\x29\x35\x86\xd7\xd3\x35\xf9\xaf\x0c\x8b\xce\x92\xbf\xac\xf8\xff\xd2\xc5\xd5\xd5\xae\xbe\xac\x7f\xbf\x1c\xcd\xa2\xf4\x4d\x1c\xdd\x85\xff\x85\xf4\x47\x2e\xb9\x49\x65\x17\xf8\x9f\xe9\x69\x32\x61\xab\x7a\x06\x8d\x7d\xc0\x4c\x27\xa4\x21\x17\x75\xe7\x9a\x17\x1c\xa8\x9a\x38\xb6\x29\xd3\x42\x64\x43\xa5\xf5\xee\xf4\x5e\xb4\x1e\xfc\xd4\xe5\xd1\x44\xb1\x9d\x23\x58\x7a\xf5\xce\x39\x75\x79\x88\xd9\x90\x59\x52\x0d\xe7\x1a\xba\x73\xec\x32\x84\x3e\x3b\x0f\x7b\x30\x0f\x29\x95\x9b\xbe\x2c\x2c\xce\x5e\x4d\x4b\xb4\x39\x47\x9c\x6d\xe8\x55\x6d\x43\xc5\x0f\x0b\xed\xbc\xd2\xed\x14\xe6\xe6\xd9\x56\xbe\xb7\xad\x34\x7e\x56\x68\xe3\x7b\x55\xda\x7e\x5c\xb3\xfa\xa1\x57\xba\x4d\x91\x5d\xe6\xd1\x1d\x95\x17\x42\xa3\xf9\x5f\x3c\xf2\xb3\xa8\xd6\xff\x4b\x7d\x3b\xa0\x43\x93\xb2\x70\x40\x87\x65\xdf\x97\x65\x1c\x83\x7f\x4a\xb9\xbe\xeb\x7a\xaf\xce\x6a\x7d\x00\x5e\x47\xa5\xae\x63\xca\xf8\xe4\xc4\xf2\xb4\xbd\x22\x8c\x62\x21\x4d\xeb\xbe\x65\xe9\xfb\x4e\xca\xdd\x60\x33\x90\xc4\xe6\x3c\xcd\xaa\xcd\xbc\x2a\x69\x8e\x72\xa0\x2a\xbf\x21\xe1\x12\xbf\x8a\x72\x43\xb9\xef\xe9\x40\x0e\x4b\xda\x64\x17\xdd\x24\x20\x60\xbf\xa1\x0b\xdf\x55\xc2\x71\x73\x43\xb4\xdf\x09\xbe\x9f\x37\x45\xcb\x4d\x19\xc5\x35\x2b\x77\x22\xf7\x39\x1d\x88\xe2\x9b\xc8\x76\x2f\xca\x32\x4e\x78\x73\xff\x8a\xc4\xf1\x17\x27\xa9\x62\x8b\xdb\x3c\x51\xb3\x28\x3d\xe1\xae\x27\x45\xb2\xfa\xba\x9e\xb4\xdb\xbc\xa8\x03\xdc\xee\xb6\xbc\x56\x1d\x4c\x04\x16\x9d\x47\xd5\xe8\xb1\x3a\xde\xca\x0b\x94\x2f\x4e\xcd\x4e\x0a\x03\x38\x13\x21\x5b\x2a\xac\x94\x3b\x9c\x58\xbb\x1d\xea\x67\xb5\x1b\x09\xab\xd5\x23\x42\x35\xad\x84\x9c\x4a\xcb\x45\xc3\x69\x91\x86\x6c\xa3\xd8\xb7\xa0\xe6\x36\x91\x83\x6e\x0f\xea\x55\x57\xaf\x62\xb5\x79\xb2\x0a\x3b\x45\x35\xd5\xbf\xca\xab\x87\xad\x3a\x4d\x44\x3f\x1a\xcf\x4e\x78\x4d\x1f\xdd\x92\xe0\x46\xf2\xd5\x42\x43\x13\x05\xd3\x32\x05\xdb\x1a\xa3\x2d\xc6\xb7\x04\xf1\x46\x65\xd8\x47\x4f\xe0\x04\xe9\x4c\x5c\x11\x5a\xaf\x43\xed\xe9\x11\x21\x9c\x0c\xa2\xe1\x8f\xdd\x76\x1b\xf0\x8e\xcb\x54\xae\x96\xd7\x44\x15\xd5\xe6\x59\x6f\x5c\x5d\x25\x9f\x04\x30\x0f\xf6\x6c\xdb\x58\x85\x2a\x5e\x6a\xaf\x01\x27\x10\xca\x6e\x32\xc0\x82\xac\x44\x7d\xa4\x5a\x6d\x68\x2d\xf4\x64\x53\x47\xfc\x7e\x80\xab\x0a\x1c\xca\xe5\x44\xd9\x7e\x8f\xea\x26\x20\x76\x5f\x06\x79\x48\x8b\x5a\x1c\xa9\x58\xbb\x22\xef\xc1\x10\x61\x09\x4e\x10\x79\xd7\x5e\xd6\x5e\x5e\x77\x81\x0a\x5c\x8c\x87\xad\xd5\x8e\xe2\xa8\x20\x6c\x36\xd5\x5a\x10\x49\x37\xce\x70\x51\x78\xdd\x38\xd7\x0d\x4d\x97\x66\xbd\x50\x61\xa5\xe7\xcf\x74\x39\x2d\x05\xba\xac\x0a\x62\xb4\x2c\xf5\xaf\xe5\xf1\x07\x4d\xe8\x9e\xcb\x88\x40\xe5\xa6\x43\x30\x20\x2c\x9e\x6e\x12\x2f\x4f\x5d\x75\x84\xcd\x43\x2b\x1e\xd8\x61\x60\xfa\xa5\xf7\x06\x70\xcf\x8f\xf6\x1a\x51\xe4\x11\xcd\xa4\x65\xef\x1d\x01\x52\x64\x24\x2d\x2f\xac\xa9\xa7\x38\x5b\x15\x76\xe5\x2a\xc2\x75\x3e\x0d\x07\xdd\x1e\xd4\x0d\x1e\x60\x9f\x19\xaf\x6a\x7c\xaa\x12\x4d\x18\x98\xfb\x4f\x80\x80\xbf\x68\x56\x38\x8b\xd2\x6a\x0d\x65\xc9\xae\x78\x86\xe5\x15\x15\xd9\xe9\x99\xbe\x5d\xd5\xca\x3d\xb8\xf1\x84\xb3\xb7\xb2\x96\x7f\xc6\x85\x5e\x80\x9e\x74\x6c\x52\x62\x6e\xdb\x0a\x7d\xf5\xa5\x86\x3c\x15\x8a\x75\x6a\x3f\x3a\xa1\xae\xfe\x02\x41\x26\xc0\xd2\x91\x6c\x0e\xc5\xfc\xda\x58\x5c\xd9\xb0\x72\xaf\xf4\xf3\xda\xbb\x8f\x8c\xe7\x0d\x42\xce\x61\x24\x3f\xf5\xea\xaa\xde\xb0\xd8\xf6\xc4\x75\x9f\xf9\x2b\x2e\x09\x21\x91\x8b\x3e\xd4\xa4\x3d\x4f\x1e\x1a\x06\x60\x96\xbe\x3c\xc4\x90\x42\xca\x2e\xb7\x4e\x4d\x1f\xbf\x68\xb1\xbc\x8e\x7e\xf5\x8a\x81\xfa\x1f\xd6\x8c\xe7\x6b\xc6\x11\x16\x3a\x22\x88\xea\x40\xdf\x9a\xc5\x8b\x26\x93\x9b\xe4\xd4\xdd\x77\xeb\x62\x15\x34\xf3\x58\xa6\x33\x87\x53\x63\x5e\x1e\xec\xf5\xba\xe0\x05\x6c\xe7\xf0\x8d\x48\xe6\x4d\x75\x35\xd7\xa3\x6f\x51\xfe\x8b\x1a\x80\x43\x2d\x27\x94\xb3\x22\xfc\xf8\xbd\x67\x23\xcf\x33\x20\x7c\x3f\x6c\xb7\xfd\x5f\x38\x21\x6e\x19\xe1\xdc\xb1\x7d\x84\x8c\x6e\x8b\x30\xc1\xba\x8b\x8a\x37\x82\x63\x45\xd4\x6e\x47\x3f\x54\x55\x2a\xed\x76\x98\xd8\x34\xf3\x11\xde\x43\x35\x5a\x97\xdd\x5d\x1c\x91\xdd\x3d\x84\x01\xb0\x36\x42\x89\x76\x8d\x5a\x01\x78\x4b\x8e\x0e\x2b\xf1\x9c\xca\x59\x32\xe9\x09\x7c\xcf\xf8\x04\xb2\x28\xf1\x71\x8f\x65\x85\x44\xfe\x4a\x58\x69\xbd\xd2\xbe\x88\xaf\xb6\x09\x49\x3b\xaa\xf0\x41\xa1\x0f\xbd\x50\x3f\x25\x1c\xc0\xc3\xf9\x98\x30\x54\x10\x66\x6a\x16\xa4\xcc\xb4\x4b\xfa\x21\xd5\x92\xc9\x47\xae\x8f\x11\x07\x09\x26\x12\x99\xb4\xdb\x30\x45\xd5\xa1\xaf\xd7\xe9\xce\x8e\x1e\x77\xed\xd4\xd5\xa8\xa8\xba\x15\x85\x0b\x88\x09\xc5\x67\xb0\xcf\x6c\x17\x6b\x47\x63\x8d\xfb\x95\x91\xfc\x90\x5a\xcd\x1f\x6d\x38\x03\x3d\x23\x7b\xb5\x8d\x10\x95\x24\x8e\xc2\xd1\x5b\xec\x25\x2a\x8f\x44\xe6\x2b\x29\xca\x85\x5b\xd5\xb9\x80\xa0\x27\x61\x57\xb6\x5b\x43\x5a\x75\xe4\x46\xba\x65\x27\x65\xe9\xfb\x28\x5b\x97\xd0\x01\x1f\xee\xc3\xc2\x2c\x20\xe3\x07\x10\x23\xe4\x08\x00\xdc\x6b\xd6\xd1\xc4\x88\xa0\x07\x4b\x0e\x10\xf0\x21\xab\x6b\x6f\x67\x07\x65\x59\xd6\xa0\x56\x4c\xb3\x02\x59\x15\x16\x70\x6e\x0e\xdf\x3a\xf6\x90\xe3\xe9\xc3\x87\xcf\xae\x83\x40\xc5\x21\x8b\x9a\x21\x8b\x01\x1f\xb6\xcc\x48\xb7\x21\xa9\x0c\xdc\x29\x60\xab\xb4\xdb\x7b\xee\xef\xf5\x3a\x2c\x09\x7d\x40\x81\x7a\xd7\x56\x66\x08\x20\x04\xf5\x87\xa8\x28\x1f\x25\xb7\x29\x15\x0f\x54\x00\xa0\x57\x33\x8e\xdf\x0b\x68\xac\x08\x8c\x2d\x7d\x5c\x6c\x7b\xcb\x54\x17\x77\x38\x24\xbc\xe1\x70\x33\x1c\x58\x66\xae\x07\xee\x79\x8e\x8d\x67\x11\xbf\xa3\x80\x39\x93\x6b\x46\xdb\xed\x90\xc2\x78\xa9\x1e\x2f\xcf\x07\xa5\x41\xa1\x64\x03\x28\x94\xde\x46\x15\x48\x28\x6f\xa3\x8d\xf2\x9d\x96\xb7\x67\xf7\x5a\x5c\x94\x51\x0b\xca\x68\x1d\x2a\x4e\x20\x97\x8c\x3a\xab\x13\xed\x1d\x3e\xf1\x04\x52\x9a\x03\x4c\x19\x05\xfd\x12\xf6\x78\x5c\x9f\xe0\x19\x8f\xfd\x70\x8a\x3c\xc8\x75\xaa\xe5\x93\x71\x2e\x70\xb8\x57\x33\x2f\xfc\xd5\x7a\xc1\xd6\xdf\x3d\x3c\x1c\xf3\x38\xa4\xc8\x3f\xe0\xfd\x0f\x42\x5b\x91\x40\xb9\xa7\x91\xe6\xa7\x06\xb3\xca\xfc\x22\x02\x61\xd9\x52\x95\x89\x62\xa2\x68\xed\xf8\x55\x13\x48\x69\xfa\xe6\xdb\x34\x72\x05\x6e\xde\x4f\xdd\x47\x35\x11\x4b\xcf\xa7\x77\xaa\xdd\x8d\x85\x07\xfd\xb2\xc8\x0f\x5d\x3b\x36\x46\xa8\xcb\xee\xb5\xcf\x7e\x24\xdd\x7d\xb6\xbb\x6b\xaf\xe7\x74\xc0\xe0\x7a\x9e\x68\x9a\xd3\xfb\x28\x31\x3b\x87\xc0\xe0\x12\xb3\x7d\x14\x65\x7a\x9a\x1d\xe3\xc8\x98\x19\x63\xcb\x64\x93\x79\x29\x7e\x81\x59\x69\x91\xc4\x4f\x53\x16\xc7\xcd\x46\xd3\xb2\xa1\xe9\x05\x16\x29\xb1\xe4\x71\x92\x2c\xd4\x03\xeb\xc0\xe1\x02\x75\x6b\xbf\xf7\xec\xda\xf9\x7b\x2a\x44\x22\x6c\xbf\xbf\x7d\xd0\x0c\xd3\xef\xcd\x42\xd0\x71\x24\xe9\x64\x77\x4a\x23\xb9\x14\xb4\x7e\x0c\xe0\x6b\x51\x63\x1e\xcb\x53\x54\xe0\x18\xf0\xb7\x67\x15\x83\x99\x4d\xfe\x4d\x12\x89\x29\xc4\xb0\x9a\xdf\xb5\x5e\xfd\xaf\x93\x24\xa6\x11\x0f\x6f\xad\xfb\x3e\xd5\x90\x5a\xe3\x19\x55\x57\xf5\xb9\xf7\x7b\xf2\x21\x8a\x97\xf0\xf4\xc1\xd8\xe2\x5c\xb1\x27\x4c\x3b\x51\xcc\xa2\x5a\xed\xd2\x6b\x0a\xd1\x30\x31\xf8\xd1\x2f\x21\x2b\x66\xc7\xcd\x83\xb5\x59\xd6\x48\x82\x05\xff\x8d\xac\xc9\xd2\x29\xf1\x6a\x9c\xf0\x29\xbb\x5b\x3a\x0b\xa7\x6f\xef\xdc\xc3\x69\x21\x50\x15\xad\x58\x88\xb0\x94\xda\x81\x02\x30\xe2\x1b\x2c\xa2\xaa\xdc\x2f\x06\xec\x43\xa0\x2c\x83\x7e\xab\xab\x21\xa4\x16\xfa\x95\xea\x99\x21\xbf\x98\x3f\x3e\x32\x39\x33\xa9\x06\x1a\x74\x86\xbf\x50\x17\xca\x91\xc7\x22\xe4\xba\x6a\xcb\x03\x54\x33\x29\x95\x44\xaa\xe5\x93\xe2\xa9\xac\xf9\xcc\xd3\x3e\x6d\x49\x69\x66\x6b\xbb\x0b\xbd\xd3\x0e\xeb\x87\x92\x4c\x28\xf8\x91\x2c\xe2\xa2\xdb\xb1\xdf\x9b\x8a\x84\xfd\x5d\xad\x84\xfd\xdd\xf0\xc0\xff\xd1\x9b\xd1\x16\xe4\xf5\xe8\xb0\xd4\x66\xb2\x3b\x98\xe7\xae\x49\x3d\xd7\xac\x81\xcb\xcc\xf2\x8e\x9c\xf0\xf3\x48\xb2\x07\x0a\xdf\x11\x40\x37\x8c\x26\x13\xf8\x75\x61\x0e\xd5\xa6\x81\x3e\xd8\x16\x8e\x31\x20\x37\x5a\x54\xcf\x2f\xfb\xf8\xdc\xce\x13\x84\x48\x43\x46\x5f\x2e\x3f\xb2\x38\x3e\x82\x33\x93\x8c\x69\xe9\xdd\x31\x9b\x98\x57\x53\xf5\x8a\x46\xe3\x19\x64\x90\x05\x92\x2f\x3c\x81\x8e\x78\x55\x2d\xab\x6f\xf3\xca\x62\x33\x74\x77\x0b\x3a\xc6\xe0\x9c\x5a\x7f\xa3\xf2\xfc\xf2\xb9\xb3\x80\x23\xef\x30\xf0\xd0\x4d\xb6\xf7\x5c\x6a\xf8\x8a\x1c\x16\x96\x95\xc3\x1a\xea\x82\xb9\x58\x7c\xa0\xa0\xa2\xef\xd9\xdf\x98\xcc\x50\x87\xa7\x2e\x34\x28\x7a\x9e\x22\x2a\x51\xb4\xee\xfa\x08\x3e\xe4\x08\xf3\x7c\x85\xdd\x1c\x9d\xc3\xb6\xe0\x1a\x48\x95\x9c\x00\x6b\x3b\x4f\x78\x6d\x38\x96\x89\x7c\xc9\xa0\x50\x7f\xbe\x90\x4f\x64\xa6\x99\xe1\xeb\x38\xe2\xf7\x64\x22\x5b\x14\xcc\xa7\x34\x55\x95\x55\x6b\xd8\x9e\x48\xe3\x8c\x75\x4b\xef\x18\xb7\xec\x46\xaf\x5f\x4a\x24\x20\x73\xc2\x0f\xf3\x8a\xd1\x94\x70\x58\x73\x3e\x29\x97\x16\xea\x39\x4f\x24\x9b\x3e\x15\x5f\x91\x5f\xd5\x8c\x3f\x50\x21\xd8\xc4\xea\xdb\x28\x05\xee\xe8\x33\x39\xc2\xa8\x1e\x88\xc6\x90\xcc\x55\x10\xe4\x04\x6a\x86\x4d\xa5\x9e\x1e\xd3\x71\x22\x22\xf5\xe2\x4f\x5d\x8b\x2d\xf8\x26\x11\xf9\xbb\x51\xf9\x95\x6b\xe7\x56\x9f\x17\x4a\x04\x64\x5e\x65\x8f\x9a\x21\x55\x9e\xf7\x31\xed\x80\xaa\xed\x67\xfa\x44\x12\xd5\xe2\x92\xbb\xdf\x91\xfa\x3d\x65\x9c\xa5\xb3\x46\x65\x27\xad\x57\xa7\xfa\x76\x62\x90\x72\x04\xb5\x00\x7a\x87\x71\x5c\xb0\x22\x57\x2c\xcc\xed\x36\x2d\x6b\x3a\xaf\xa9\xc7\x30\xfc\x86\xc8\xbd\x61\xdd\xf0\xf0\x26\xba\x4b\xdf\x24\x42\xf5\xfd\x37\x6a\x47\x06\xac\xfe\xca\x1b\x1a\x3c\xb8\xd4\xeb\xd1\xa0\xe0\x34\x34\x78\xac\xb9\xbd\xde\x56\xe6\x6b\x72\xee\x6a\x26\xbf\xbb\x3f\xa9\xd0\x71\xb1\xc7\xa6\x3b\x1e\x49\xd5\xf1\x81\x55\x86\x3d\xee\x8d\x19\xd9\x03\xcd\x41\x79\x87\xb6\xdb\x45\x3e\x2d\x11\x58\xa0\xba\xfe\xc7\x83\xbd\xa1\xbe\x55\xee\xb3\x1f\x5c\xc8\x2b\xdb\xd9\x41\x62\xc0\x07\x6c\x38\xd4\x47\x96\xfa\x13\x79\xf1\x66\x40\x0d\x8d\x9d\xf4\xd0\x8a\xd6\x6b\x1b\x42\xe5\x92\xde\x78\xf2\xb4\x73\x3a\x0c\x6b\x38\x8e\xc0\xdc\xca\xf8\xf7\xf4\x49\xf1\x2e\xcc\x94\x34\x5a\xea\x26\x51\x7d\xc3\x70\x0c\x0a\xac\xf8\x0e\xca\x40\x51\x4f\x3b\xf4\xf3\x22\x72\x5b\x51\xf5\x92\x4a\xcd\x74\xdd\x69\xf1\x0e\xeb\x44\x1f\x0f\x91\xa4\xee\xe1\x7b\x47\x29\xee\xd1\xeb\x16\xed\x4c\xe3\x65\x3a\x3b\x4c\x9f\xf8\xd8\x3e\x2e\xab\x25\x3e\x12\x42\xd2\xce\xd1\xfb\xab\xab\xbe\x46\xd8\x74\xf8\x08\x7a\x9c\xad\x8f\xf5\xaf\xf1\x9f\x55\x25\x5f\x33\xd3\x57\x2c\x1c\xee\xee\x55\x67\x89\x10\xad\xd7\x15\x97\x83\x10\xa1\x83\x3f\x8d\xa7\x54\x28\xd5\xe9\x5c\xd3\x98\x40\x2b\x5a\x84\xa9\xa4\x80\xf9\x74\x45\x1f\x98\x92\x5e\x35\x7c\x69\xe4\xfb\x5f\x9a\xec\xb8\x85\xd4\x00\x52\x3c\xad\x4e\xe0\xd4\x1f\xa8\xa9\x5e\x44\x72\x36\x44\xd9\x94\xf1\x28\x8e\x9f\x74\x0b\xe4\x37\x25\x16\xe8\x77\xea\x2e\xea\xb7\x42\xa8\x0f\x7e\x09\x3e\x68\x5a\xe4\x9a\x57\x54\xec\xb9\x47\x40\xe5\x58\x12\x7e\xe6\xb1\x1f\xf7\x0e\xe4\xee\x5e\x0f\xd2\x39\xef\xed\xf3\x1f\x24\xe8\x0d\xc4\x80\xef\xee\xf9\x07\x14\x77\x18\x6a\xa7\x26\x28\x93\x6a\x61\xaa\x2c\x56\xfc\xcd\x07\x22\x66\x4a\x92\xb7\xc7\x62\xab\x06\xab\x26\x3d\x08\x39\x51\x5b\x5c\xe2\x88\x6c\x2f\x75\x98\xd1\x71\xff\xcd\xe1\xfb\xd3\x9b\xd1\xe1\xf5\xa7\xf3\xa3\xd1\xc5\xeb\xeb\xfe\xd5\x87\xfe\xd5\x35\xea\xa9\xb2\x9d\x29\xc7\x8c\xa4\x4a\xbe\xa6\x7c\x42\xb9\xfc\x99\x3e\xa5\x38\x22\x5a\x63\x98\xab\x90\x62\x32\x18\xe2\x71\xdd\xd9\x19\xdb\x10\xcf\x0c\x4f\x49\x77\x7f\xfa\x83\x15\x10\xf6\x77\x76\xa6\x88\xca\x90\x0d\xa6\x43\x3c\x46\xa5\x23\xdc\xed\x0b\x75\x84\xaf\xd4\x02\xa7\xbd\x58\xeb\x3a\xa3\xcc\x9c\xe8\xe0\x7a\xad\x2d\x26\xa7\x70\x1c\x73\xb5\xc1\xff\xe1\xa5\x35\xfe\x7b\x38\x22\x27\x10\x24\x99\xe6\x46\x01\x31\xe8\x0e\x5b\xd1\x7a\x2d\x06\x7b\x43\x03\xc3\x5f\x75\xa2\x06\x48\xb3\x3b\x17\xcd\x2b\xf3\x64\x9d\x00\xa9\x16\x31\x4e\x45\xee\x24\x66\xa2\x85\xe8\x4e\xd0\x0b\x76\xc2\x74\xbd\x96\x08\x5b\x44\x2b\xe6\xc5\xe6\x25\x19\xca\x5a\x5d\xa3\xcc\x48\x64\xb8\x52\x77\x90\x65\xe9\xae\x02\xec\xd4\xdc\x40\xa8\x8e\x24\x91\x6a\x67\xd8\xe6\xa2\x83\x38\x54\x63\xc0\x6a\x00\x58\x0c\x5e\x0d\x51\x2f\x56\x13\x2d\xa3\x3b\xff\x5c\x3f\x72\x8f\xc8\x99\xda\x50\x91\xb8\xd7\xbc\xf5\x30\x05\x7c\x4d\x72\x85\xb5\x9b\xdc\x72\x4e\xc9\x5b\x0a\xd7\x8e\x68\x7c\x4f\x27\xe4\xa3\xfb\x41\x3e\x19\xa1\xb5\x3e\x9c\xf1\x4e\x76\x96\x7c\x21\x92\x31\x4d\x53\x9a\x97\x49\xc9\x76\x17\x8f\x64\x4e\x52\x54\x87\x9f\xdd\x98\x14\xcf\xe4\x42\x6a\x31\xa1\xa1\xda\x27\xb9\x5e\x5f\xe7\xf0\xd0\x5b\x8f\xda\x04\x5c\xfa\x24\x25\x7d\xe0\x2a\xba\xf9\xbc\xa6\xcf\xde\xd3\xc3\x38\xf6\xca\x5f\x4b\xc7\xe7\x37\x85\x67\x02\x71\xdf\x69\xb8\x4a\x90\xb8\x4d\xba\xc9\x47\x39\x90\x43\x35\x2e\xa3\xc4\x1d\xe5\x0a\x38\x8a\xc0\x5c\xb0\xc5\xf8\xd6\x12\x08\x84\x7e\xb6\x01\xf1\xed\x36\x25\x10\xe0\x57\x78\x3a\x90\xc3\x76\x3b\xac\x79\x6a\x6c\x42\x48\x4b\xb1\xae\x9b\xd7\x34\x12\xe3\xd9\x31\x4b\x95\x88\x53\xe7\x53\xf6\x24\xcd\x11\xfd\xec\x27\x30\xc1\xc4\x6a\x00\xf4\xf2\x9c\x1f\x9e\xf5\xaf\x2f\x0f\x8f\xfa\xd7\xa3\xd7\x9f\x46\x27\xc7\xc4\x7f\x44\x68\xe7\x06\x28\x03\x32\x06\x01\xd8\xca\x79\x22\x35\x88\x32\x9d\x10\x9a\x43\x2a\x2b\xd1\x6c\xc9\x4f\xf8\x8d\x88\x78\xaa\x4f\x0b\x62\x51\xf1\xc1\xcb\xf6\xe7\xf3\x8b\x8f\xe7\xa3\xcb\xab\x8b\xcb\xfe\xd5\xcd\x27\x75\x22\x12\xda\x39\xee\xbf\x7e\xff\x76\x74\x72\xfe\x53\xff\xe8\xe6\xe4\xe2\x7c\xf4\xe6\xfd\xf9\x91\xc9\x77\xa0\xd5\x0b\x67\x5a\xbb\x44\x3b\x9a\x8b\xd0\xce\x29\xbb\x15\x91\x80\xf3\xbd\x13\x7b\x7f\x83\x48\x77\x9e\x4c\x54\x63\xae\x91\xe3\x93\xe3\xd1\xd1\xbb\xc3\xf3\xb7\x7d\xfd\xf4\xd7\x4f\xa3\xa3\x8b\xf3\x9b\xfe\xf9\x8d\xfa\xc2\xa8\x49\xdc\xae\x51\x97\xfd\x38\xb9\x8d\xe2\x5c\x83\xe2\xb9\x04\x4f\xf0\xa2\x5e\xd9\x38\xcf\xc9\x67\xb1\x39\xae\xde\x42\x10\x2c\x0a\x91\xf3\xae\xa2\x07\x5f\x0e\x58\xd4\x29\x27\x73\x47\x37\x9b\x39\xdb\x7d\xfc\xe4\x71\x74\xfb\x2d\x68\x16\xef\xea\x7b\x7d\xeb\x2b\x07\x98\xef\x67\x53\xb9\x76\xf6\x84\xa7\x85\xcc\xfd\xb7\xca\x16\xdc\x42\x77\x46\x5e\x77\xee\x6c\x77\xdc\xdb\xc7\xd2\xd5\x6d\x9b\xd0\x76\xfb\x0e\x8c\x9c\x7e\xb1\xfe\xff\x9f\xba\x77\x6d\x73\x1b\xb7\xf2\xc4\xdf\xeb\x53\x94\x38\x79\x18\x62\x85\x92\x55\x9d\x99\xd9\x5d\x95\xd1\x5a\xb7\xdb\x9e\x74\xd2\xbe\xc4\x97\x4e\x32\x8a\x56\xc3\x92\xa0\x12\x62\x16\xa9\x06\xc1\xb2\xab\x4b\xfc\xee\xff\x07\x07\x77\x12\x52\xa9\x9c\xce\xce\xf3\xef\x17\xed\x12\x09\xe2\x8e\x83\x73\xfd\x1d\x37\xb3\xc3\xac\xa7\xbe\xb8\x88\xaa\x2f\x2e\x16\x68\xbf\xf7\x7f\x0e\xae\x9d\x16\x58\xd6\xf5\x45\x83\xb7\x80\x2a\x2b\xbb\xa0\xbf\xc3\x91\x3b\x91\x06\xe9\xcb\x5b\x0f\x87\xf2\xbd\x97\xc2\xa0\x17\xd2\xa2\x0d\x68\x5f\xfc\xf9\x7f\x83\x3f\xe1\x67\x8a\xb0\x58\x47\xf1\xd8\x69\xf0\xd3\x01\x7f\x70\x87\xbb\x3e\x80\x88\x6c\xcb\x3e\x0f\x17\xd2\x74\x45\x2e\x99\x9f\x83\x12\xfc\xd1\x1c\x77\x4e\xd8\x7e\x6f\xf1\x47\x91\x6d\xcb\x47\x8c\xd7\x2e\xee\xdd\x9d\x71\x13\xec\x0a\x18\x17\xf8\x25\x7f\xb9\x93\x4f\x4d\x55\xaf\xc0\x8e\xae\xef\xd8\x3c\x70\xbf\x82\x44\xa5\xcd\x5c\x58\x26\xac\xd8\xef\x33\xf9\x9b\x7c\xc8\x90\x37\xb0\x57\x56\xbc\xe8\xe2\x32\xc8\x89\x0e\x8d\x7c\xdc\xb7\xa7\x87\xdd\x14\x1a\x96\xbd\xcf\x28\xdb\xb3\xe4\xf5\x2e\xfb\x60\x75\xf3\xe1\x6c\xb8\x7e\xbd\x3b\x7e\x72\xdc\xfc\x00\xba\xa3\xe7\xab\xe5\x0b\xb2\x75\x9a\xf6\xe6\x6e\xa6\xd3\x9b\x8f\x37\x8c\xd7\x22\xc4\x91\x9e\xd6\xe1\x6f\x33\xb5\x41\x03\x6a\x6a\x5d\x64\xf9\x4c\xce\xaa\x41\xf9\xb2\x8f\x8b\x34\x7d\x93\x15\x1e\xc0\x89\x1f\xdc\x5e\xec\xf7\xf9\xf8\x2a\x5f\x7d\xba\x6a\xb8\x6c\x8e\x96\x75\xc3\x5d\x62\x04\xd4\x1e\x20\xe5\xcf\xb0\x25\xf6\x9f\xf0\x9b\xe0\xc6\xa1\x1d\x44\x6c\xe8\xf9\x5b\x62\x0d\x57\x6e\xdb\xff\xdd\x3f\x81\xa3\xb7\x6e\xca\xbf\xd7\xfa\x3c\x0f\x56\x35\x42\x10\xfe\x2d\x4a\x10\xfe\x2d\x24\x08\xff\xb6\x18\xb0\xfd\x3e\x96\x9d\x75\xbf\xcf\x18\xe1\x92\xeb\x04\xb8\xe4\x60\x31\x3b\xce\x14\x99\xea\xcc\x50\xce\x58\x85\x73\x6f\xd3\xbe\x36\x3d\xb5\xb9\x40\x07\xbd\xdd\xcb\x67\x59\x45\x38\xce\x09\x43\xd3\xac\x52\xf8\xc9\x39\xe1\xdd\x26\x23\x8e\x17\x99\xc0\x61\x73\x3f\xf8\x13\xe3\xab\x99\x99\x99\x27\xfb\xa4\x8a\x10\xf6\x6a\xc0\x48\xaf\x7b\xb9\x3d\x5c\xf9\x2c\x8f\x6a\x15\x4d\x60\x66\xd0\xe0\x7e\x0f\xff\x98\x64\x2b\x56\x3d\x69\x18\xfc\xda\xbe\x3b\xff\xdd\x65\xfd\x2d\x99\x5c\xd6\xe7\xe4\x77\xaa\x9b\x0d\x61\xf3\x7a\x81\x0b\xf9\xcf\xe8\x42\xca\x29\xf2\x8f\x6f\x16\x83\x22\x4d\xb3\x55\x9a\xaa\x59\x6d\x70\x81\x70\x23\x89\x05\xa1\x08\xf7\xa8\xaf\x2c\x2b\x09\x4b\xb1\x40\xb8\xd0\x51\x9f\x0d\xf8\xc6\x18\xdf\x5f\xa0\xc7\x3f\x3e\x24\x57\xe1\x97\xf6\xa2\xfe\xc5\xfc\xe5\x65\x6a\xff\x6a\xc7\x95\x99\xff\x63\xfa\x23\xae\xc8\xdf\xa5\x78\x2f\xf7\x76\x05\x96\x9e\xe1\x05\x66\x08\xff\x9d\x76\x2c\x96\xdf\xb9\x16\xbf\xd2\x49\x46\xab\x88\xa1\xb9\xd7\xaa\x7a\xfc\x1a\xa0\x4d\x40\x61\x6f\x5b\xfa\x18\x87\x9a\x74\xcf\x86\x8a\xc0\xbe\x9c\xfe\xe2\x04\x20\x75\x69\xef\xf7\x5c\x5f\xb3\xc6\xdb\x0b\x73\x73\x0b\xca\xab\xa0\xdb\xf1\x6f\xa2\x1d\xff\x26\xe8\xf8\x37\x0b\x05\x3e\x63\x5d\xb8\x35\xd3\xa3\xc2\xb0\x46\x23\xe7\x85\x51\x12\xc5\x99\x8b\x2c\x99\x26\x48\x0a\x48\x8c\xfc\x27\x68\xb2\xd0\x80\x6b\x48\x86\x7b\xf8\x6a\x7a\x81\xa5\xa8\x3a\x2d\x21\x5d\x09\xc3\xbe\x42\x62\x6a\x13\x67\xe3\xba\xa9\x41\x9c\x5e\x4f\x87\x17\x2d\x52\xf8\x69\x7f\xd6\x38\x76\x3f\xe3\x9f\xf0\x5f\xf1\x7f\x1c\x88\xe4\xd2\xce\x50\xf9\x7a\x4d\xd7\x21\xe6\xd4\xcf\x0d\x6d\x28\x99\x2f\x8e\x81\xb1\xe5\xeb\xf5\x31\xff\x73\xa8\xd5\x30\x86\xce\xa4\x94\xa6\x1a\xdf\xea\x3d\x35\x89\xea\xa1\xa0\x5e\x10\x84\xb0\x71\x83\x37\xfe\x79\xd0\x17\x2d\xa4\x41\x2b\xb8\x04\xbf\x32\x8d\xe7\x05\xda\xaf\x03\x20\xf7\xf0\xe9\xc0\x6b\x65\x55\xd0\x9c\x1b\x64\x0f\x33\xc8\x81\x93\xeb\x27\x97\xe2\x29\x75\x79\xde\xcd\x99\xe7\x84\x4a\x99\xaa\x94\xff\xc8\x33\xcf\xe0\x8f\x6f\x16\x03\x79\x55\x3b\x2d\x97\xd2\x71\xd9\x6b\x7b\xbf\xff\x21\x93\xe4\x6e\xce\x71\xb9\x40\xad\x0d\xc3\xed\xc9\x1e\x3f\x63\x5f\x38\xf9\x09\xc7\xc4\x97\xbf\xe2\xd8\x87\x71\xed\xae\xec\x6c\x86\xf0\xf0\x42\xdd\x5f\x7f\xec\x70\x74\x11\x91\x03\x82\x00\x63\xa2\xc8\x1f\xa1\x86\xdf\xc0\x8a\xfd\x07\xfe\x93\x9f\x21\xef\x2f\x5f\xc3\x95\x2b\xea\x3b\x64\x9d\xa0\xb2\x0c\xa5\x29\x3c\x0c\x82\xc6\x24\x8f\xa6\xcd\xfb\x4a\x04\x60\x1e\x57\x52\xa5\x69\x44\x29\x55\xc9\x89\x54\x06\x8c\x34\xf5\x7e\x28\x42\xe2\x30\xd4\x59\xe0\xbd\x9b\x09\x04\x8e\x4f\xdd\xed\x0c\x27\x3a\xae\xcd\x1c\xda\x98\x05\x17\xb1\xa1\x4d\x49\x7f\x18\xc8\x5d\xfe\x07\x32\xbc\x40\x97\x59\xcc\x95\x51\xdf\xb6\x2e\xe8\xc4\xe5\x4f\x4a\xd3\x2c\xb7\xc7\xa3\xd4\xe4\x20\x47\x08\xe7\xd6\x15\x96\x85\x51\x0e\x19\xc7\xbe\xcb\xac\xf3\xf5\x90\x93\xa6\xae\x77\x24\xa7\x62\x69\xe9\x84\xd2\x7e\x53\xfd\xb2\x45\x2d\xca\xfe\x02\xae\x87\xff\x09\x87\x2b\x4d\xb3\xff\xb4\x07\xe5\x0f\x64\x38\x01\xaa\x28\x27\x1f\xc7\x8f\xfb\x01\xc7\x73\x9f\x85\x84\xe8\x16\x65\x65\xca\x04\x1e\x4e\xf0\x5f\x50\x9b\x4d\xe2\x95\x1e\x9c\xf4\x70\x96\xe1\x86\xf8\xd3\xb7\x93\xd9\x6f\x94\xd3\x33\x16\xb8\x44\x53\xc9\x64\x94\x78\x4e\xb1\x58\xd8\x6e\xfb\xeb\xfe\xce\x0c\xe5\x8f\x67\x4c\xa7\xbb\xf8\xe3\x42\x4a\x83\x40\xe9\xfe\xd3\x52\x41\x39\x6e\xb7\xd5\x29\xfd\xba\x11\x3b\xdb\x50\x20\x70\x4a\xa1\xe8\xfe\x4f\xa3\x91\x7b\xc2\xe5\x93\xf3\xf3\x3f\x3d\x25\x93\x34\xfd\x8d\xa2\x69\xbe\xe0\x54\xaa\xb0\x5b\x9a\xa1\x81\xe0\x77\xf7\x20\x54\x69\xdd\x35\x00\x4f\xbb\x92\x8c\x06\xfc\xa7\xe5\xa8\xd2\x34\xab\x48\xc0\xb4\x21\x2d\x34\x55\xfd\xa3\x80\x6b\x7d\xe0\x2a\x84\x1b\xc7\xa4\xd7\x83\x26\x4d\xeb\xb1\xa0\x39\x5f\x57\x3a\x83\x40\xa5\xaa\x01\x7f\x0f\x39\x67\x6c\x93\x51\x42\x88\x32\xef\xd8\x5b\x43\x9e\x2d\x79\x1e\xf0\xe7\x8c\x23\xb4\x22\xca\xe9\xd6\xc0\x74\x1c\x8e\x14\x17\x78\x25\xc5\x04\xae\xb2\x81\x5a\x1a\xc2\xd1\x7d\x41\x00\xd2\x09\x32\x93\x6e\x66\x5f\xe7\x7f\xb1\xc1\x46\x9a\x92\x2f\xe0\x3e\x9d\x16\x2d\x9a\x4a\xfa\x49\x98\x82\x38\x2c\x08\x3f\xd2\x3b\x8e\x06\x79\x9a\x52\xf0\x94\x94\xe3\x88\x50\x24\x20\xed\xdf\x07\x9f\x42\x78\x69\xf7\x21\xd4\x57\x78\x6b\x5e\xd1\x93\x85\xb7\x8a\xf4\xe8\x99\x5c\x08\x16\xc6\x3a\x48\x8e\x7c\x74\x81\x30\xec\x07\xc3\x73\xf7\x09\x6b\xee\xb3\x3b\xe3\xcf\xac\x28\xa0\x82\x34\xf5\x7e\x98\x53\x14\x1d\xaf\x2d\xe5\x8f\xb7\xf7\x10\x0e\x9d\x1d\x6c\xfe\xc0\x60\x0f\xeb\x78\xf4\xc5\xd1\x89\x7d\xcd\xec\xcd\x11\x9d\x99\x0b\x35\x05\xfd\x09\x9a\x98\x53\x61\xe6\x05\xd7\x6e\xff\xe7\x83\x3a\x98\x9b\x35\x5b\x7f\x54\xb6\x53\x39\x39\xee\xd7\xd1\xd9\x71\xc5\x3a\xdb\xa1\xf3\x54\xce\x0f\xec\xc0\xea\xdb\x0b\x79\x5f\xf5\x96\xf2\xfc\x42\x53\xad\x9a\xc6\xd5\x66\x0d\xed\xf2\xff\x35\x0d\x19\x32\x73\x17\xe6\xa1\x83\x88\xfd\xcc\xcb\x75\xf9\xb8\xba\xbe\xf7\xef\xdd\x4e\x55\x2b\xaf\xaa\x7e\xfc\x4b\x26\xc8\x44\xca\xb5\xe4\xfc\x02\x4d\x3d\xf0\xc4\x34\xcd\x38\x78\xb4\x77\x58\xc9\xf3\x0b\x84\xb0\x37\x52\x2c\x6f\x80\xe4\xff\xa8\x3c\x03\x57\x74\x53\x71\x9a\xc0\x7d\x80\x81\x0b\xc3\xd4\x75\x64\x43\x3d\x01\xb8\xd7\x03\xf6\x70\x0f\x54\xd8\xa4\xec\xc1\x40\xed\xb5\xde\x56\xbd\xcc\xd8\xd3\xc9\x7e\xcf\xe5\xff\xd8\x39\x1f\x92\x09\x4a\x53\xc9\x38\x25\x8a\xc7\x4c\x24\xd1\x80\xdf\xf3\x05\xfc\x5d\xb8\x3e\x05\x23\xd1\xfa\x07\x33\x12\xb6\x30\xfb\xf4\xae\xab\x77\xcd\x91\x76\xdb\x07\x17\x5c\x08\xb0\xc4\x8d\xf3\x9c\xcc\x32\x78\xce\x66\x93\x29\x43\xe7\xb5\xa4\xae\xe2\xe9\x64\xd6\x8c\x84\xd2\x3e\x29\x3e\x23\x01\xb5\x8e\xa2\x7b\x09\x4a\x53\x50\xb7\xe8\x9e\xfb\xaf\x64\x97\xf5\x17\x52\x3a\x31\x1f\xa0\xe6\xfc\xe2\x69\x31\xaa\xcd\x58\x73\xff\x03\xe7\x3f\x2b\xfb\xb9\xa5\xc6\x94\xbe\xe1\x94\xfe\x42\xb3\xf9\xc2\x53\x2e\xae\x69\xc0\xd8\xf6\x9c\xbb\x24\xa5\x9e\x3a\xd7\xb2\x4c\xeb\x4d\x77\x94\xfc\x3b\xfd\x57\x4f\xed\xed\x6d\x39\xb6\xc9\xdc\x0e\x34\x1a\x00\xfb\xd7\x53\xb2\xa3\x88\x6a\xd3\x89\x16\xcc\x29\x9e\x0b\xcc\x17\x26\xa1\x48\x89\x74\x74\x84\x29\x06\x18\x7a\x03\xe7\xa5\xda\xf1\x04\x20\x06\x02\xb1\x22\xa5\x06\xc5\x64\x98\x8d\x76\x54\xf2\xdc\xbd\x86\x46\x0c\x4f\x6c\x53\x15\x92\x34\xb2\xd7\x5b\x4f\x0d\x4f\x7b\x7c\xa5\xdc\xa8\x1c\xc8\xad\x3a\x81\xfb\x7d\xd2\x39\xde\x09\xce\x55\x21\xcb\x1d\x9b\x32\xf6\xd8\x26\xb8\x56\xee\x15\xc9\x36\xaf\x03\x3f\x36\x2f\xb2\xb2\x8c\x9c\x34\xb8\x05\xcb\xc8\xc6\x95\x5c\x2c\xae\xd5\xa1\xf9\xcb\x81\x8a\xfd\xc3\x79\x47\x9d\x42\xbd\x7e\x00\x03\x58\x52\x3f\x49\x6a\x10\xae\x43\xa0\x5f\xb0\x29\xd0\x87\x70\x4c\x56\xca\x9f\xce\x00\x77\x2c\x3f\xd1\x3b\x0b\xf3\xe1\xdd\xb4\x60\x5c\x3d\x2a\x10\x77\xdc\xec\x8e\x08\xc7\xd0\x06\xdc\x62\x36\x52\xe0\xdb\xc9\x4c\x8c\xf8\xf4\x1c\xd2\xab\xb3\x6f\x27\xd6\x03\xbf\x92\x9c\x6a\x89\x96\x14\x94\x2f\x0a\x33\x4a\x27\xdc\xec\x10\xdb\xae\x9b\xaa\xdd\x12\x61\x9b\xf6\xee\x67\xd0\x26\x9b\x9e\x5f\xe0\xba\xe7\xcc\x21\x47\x6b\x37\x75\x23\xfb\x50\xa1\x5c\x4a\x49\x57\xb2\x23\x8d\xe9\x48\x2e\xe9\x17\xfc\xdd\xe0\x5a\x75\xaa\x77\xd5\xf7\x23\xd9\xc0\x71\x4d\xad\x3c\x2b\xaf\xb5\x43\xe3\x1f\xe9\x9d\x01\xb1\xea\xdd\x86\xfd\x2a\x6a\x51\xed\x0e\xd7\x70\xa8\x81\x83\xa1\x7b\x66\x72\xa2\xb1\xb7\xb0\x23\xa2\x91\xf1\x62\x4e\x17\x48\xfe\xcf\xa8\x78\x20\xca\xf8\xc2\x0f\x78\x35\xfb\x6b\x70\x45\x33\x8e\xd5\x26\xc3\x13\xcc\xed\x69\x06\x9c\xaf\xf8\x68\x4e\xec\xae\xf6\x45\x9b\x53\x08\x2a\x3f\x3f\x97\x7f\x3d\x25\x93\x30\x2e\xdf\x74\x63\x79\xa4\x1b\x2b\xdb\x72\x7c\x53\xa1\xfb\xbf\x38\x4c\xb8\x30\xe9\xd9\x55\x40\x8a\xc0\x6f\xeb\xfc\x9c\x7d\x6b\xc3\xeb\x2b\x02\xc4\x9c\xa1\x41\x95\xa6\xbf\xcf\x2a\x28\x9b\x44\x1a\x4c\x7c\xbe\x70\xf9\x98\x5a\xbf\x3b\xb5\xd6\xcf\xd4\xb3\x8c\x1d\x31\xd8\xa8\xa4\x64\x87\x08\x88\xde\x88\x3a\xe6\x39\xb2\x3d\x1e\xa3\x3d\x0b\xd6\x4a\x55\x19\x40\x34\xf0\x59\xf8\x86\xc8\x9b\x4f\xc5\x2b\x66\x06\x42\xee\xa6\xba\x3d\x92\x97\xc0\x55\x7a\x72\x14\x93\x14\xc5\xe7\xe5\x42\x45\x78\xdb\xa8\xb0\x12\x5f\xa0\xc1\x15\xa7\xf9\xa7\x56\xe1\xbb\x1f\x41\x83\xf8\x07\x1b\x75\x48\x18\x16\xfe\xa2\xe3\x71\x19\x75\x80\x82\x90\x7f\xd7\xbc\x0a\x8a\xd3\xea\x07\x8a\xa5\xac\x67\xbc\x17\xfc\xda\xfa\x34\xe6\xc0\x27\xea\xf1\x31\xfa\x1e\x1f\x76\x99\xa6\x2a\x5e\x4a\x1f\xb9\x40\xd6\x71\x6c\x34\x07\xb6\x72\xbe\x70\xe4\xb7\x22\x93\xcb\xca\xf1\x14\xd5\x68\x84\xca\x79\xb5\x70\x1a\x15\x76\x28\x34\x2d\x27\x93\xcb\xdc\x79\x49\xe5\x23\xf2\x0d\xba\xe7\x19\x9b\xe7\x0b\xcc\xe6\xf9\xe8\x62\x81\xda\xb6\x7b\x94\xbf\xd0\x2c\xc8\x30\xf3\xc2\xbb\x97\xdf\xd3\x4e\xfa\xd3\x57\x6a\xb3\x2b\x0f\x20\xdf\x22\xfe\xa6\x23\xd2\x05\x42\xeb\x80\xc5\x81\x12\xb2\x2f\xca\x80\xa5\x70\x89\xb5\x08\xcc\xbc\x5a\x3f\x79\x4c\x3b\xdb\x64\x70\x92\x0d\x29\x70\x8c\x79\x44\x68\x64\x03\xad\x7f\xac\xf6\xfb\xea\x80\x52\xaf\xea\x5b\x5e\xf7\x7b\xa7\x43\x39\xa4\xf5\xd9\xef\xb3\x9e\x72\xe5\x50\x59\x7d\x4c\xd5\xf8\xb4\xd4\x0b\x6c\x9e\x1c\xc2\x33\x1a\xe4\x3f\xfc\x40\xb5\x4d\xd2\x7a\xf3\xa6\x69\x26\x27\x40\x33\xbc\x98\x8e\x3f\xd1\x3b\x4c\x51\xe8\xf1\x3b\xbc\xf0\x4d\xee\x34\x48\x0d\x1e\x03\xb0\xb0\x6e\xad\x70\x6c\x90\x7b\x33\xe7\x8b\x34\x7d\xa6\x75\xef\xca\x81\x55\x96\x7b\x75\x90\xa3\xb2\x0a\x3c\x1d\xe5\x2a\xb6\x21\x5e\x5a\xd0\x49\xec\x53\x4f\xbf\x94\x1a\x5c\xf0\x68\xe5\x27\xee\x39\x98\x3c\xd7\x30\x72\xbc\xd7\x5a\x68\x81\x2f\xbd\x7c\xad\x9f\x69\x56\x22\x13\x16\xac\x5b\x2e\xf1\x1b\x49\xe5\x54\xad\x66\x6d\x4e\x4d\x11\xdb\x0b\xce\xd5\xbd\xd2\xa8\x66\xae\x53\xc7\xd2\xf1\x06\xc3\xe9\xb9\x30\x0f\xd5\xae\xf7\xd4\xa1\x47\x02\x30\x14\x41\xe1\x16\x68\xcd\x04\xe3\x99\x3c\x12\xff\x87\xe6\xab\x2d\xe4\xcd\x9c\x01\xcf\x3d\x8d\x93\x35\xe3\x83\x63\x28\x71\x40\xd5\x86\x2a\xda\x73\x79\x5b\x15\xb9\x60\x05\xd5\xaa\x57\x8e\x66\x3a\xac\x68\xaa\xfc\x85\x6c\x72\xd7\x4f\xf4\x0e\x05\x61\xba\x7a\xac\x07\x10\x4c\x8d\xcf\xb6\x9b\xa9\x59\xd7\x2f\x13\xf6\xf9\xe5\x33\x97\xbc\xf1\xd2\xec\x7a\xb9\x81\xc1\x87\xf5\x39\xcd\x04\xc2\x1f\x40\x17\xab\xb2\xde\xa2\xe9\x07\xaa\xf9\x7a\x60\x7e\x76\x77\x31\xac\x58\x6c\x91\x4b\xc4\xb6\x8e\xd0\x59\xf0\xa7\xe3\x88\xcf\x05\xb0\x5f\x54\x5b\xa7\x5a\xdc\xbd\xe5\x03\x16\x0e\x6a\x33\x36\x2e\x75\x54\xee\x5b\x34\x00\xfe\x11\xb0\x6a\xf6\xfb\x09\x1a\x5d\x58\xa8\x77\x6d\x33\x1c\x27\x66\x77\xc8\x83\x93\xf1\xb1\x0a\x93\x46\x98\xc7\x99\x80\x7e\x9b\x9d\xd3\x7f\x6f\xd8\x46\xf9\xef\xf9\xf9\xc1\xf6\x9a\x32\xd2\x22\x4c\x9b\x7c\xec\xf9\xa6\x46\xaf\xc2\xae\x05\xf0\x01\xce\x09\x69\x33\x30\x60\x97\xf5\x60\xaa\x84\xc2\x67\x33\xb9\xae\xcd\xd5\x0c\x18\xc8\x3a\x89\x10\xf7\x92\x78\xb2\x03\x73\xa5\x47\xf4\x10\xf3\x82\x35\x5a\x97\xf0\xaa\x2c\xed\x74\x08\x5b\xa9\x40\xb8\x54\xed\x9f\x9f\x9b\xbf\x40\x9f\x2f\xd9\x19\xc8\xa7\x6d\xb3\x69\x38\x70\xc1\x43\xfc\x04\x9c\x73\x7a\x80\x66\xf0\x78\x0a\x6f\x03\x87\xa0\xa8\x98\xba\x2a\xbc\x07\xf6\xe4\x29\xb2\x86\x3f\xd3\x8c\x9b\x6c\xfd\x9a\xf0\x71\x49\xf8\x78\xa7\x20\x9a\xf6\xa9\x32\x0a\x09\xae\x87\x4f\x09\x49\x70\xbc\x75\x0f\xb1\xb4\x02\x99\x96\xb9\xab\x26\x2b\x09\x9b\x57\x0b\xe4\x99\x89\x20\x1a\xd1\x17\x6f\x4c\x68\xb1\x1b\xba\x9e\x1e\x3d\x0f\xbb\x6a\xd7\x14\x92\x29\xdc\x6c\xe8\x4a\xd0\x75\x66\x87\x71\xa1\x41\x96\xbb\x25\xe2\xd8\x20\x9f\xe8\x1d\x44\xa4\x9b\x1f\xa3\x64\x9c\x8c\xa8\x35\x22\xf9\x44\xe8\x68\xf3\x14\x8b\xd1\x05\xe6\x68\x2a\xbe\xbd\x00\x02\x0c\xb7\xa8\xfc\xc2\x58\xee\x69\x4f\x88\x7a\xf7\x0f\xea\xfc\x8f\x28\xfc\x8d\x0e\x39\x0c\x3e\x32\xb4\xca\xf6\xe0\xed\x57\x2b\xe2\x0f\x2b\xdc\x2b\x30\xae\xc6\x55\xd8\x80\x65\x70\xa8\x73\x86\x57\x42\xbe\xf0\xf6\x77\xdb\xc3\xf7\x99\x40\x33\x3b\x65\x53\x6b\x30\xf1\x9c\xb1\xe8\xf1\x20\xc5\xc0\xaf\x53\xdf\x93\x61\xe7\xf7\x7b\x2f\x73\xf4\xeb\xb0\x69\x3b\x57\xd3\xbc\xdf\xf4\x0f\x3e\xe3\x05\x7e\xf0\x84\xce\x2f\x94\x13\xc1\x37\xd6\x9f\xf0\x77\x00\x0d\x6b\x82\xa2\xb2\x88\xc5\xc0\x0b\x54\x72\xcf\xdc\x69\x40\x11\xb8\x72\xee\xb9\x4f\xda\x87\xa5\x9f\x1c\x2a\x71\x56\xb0\x84\x95\xf2\x5d\xe2\xdb\xc9\xe0\x99\xc7\xf9\xfa\xea\xfb\x1f\x7b\x96\x00\x0a\xb0\x79\x2e\xa2\xc3\x6d\x0a\xef\xc0\x83\x04\xc3\x7c\x09\xc6\x28\xa1\xe6\xd5\x62\x50\x3a\x4c\xc3\x2c\x07\x55\xa7\x01\x1a\x94\x3f\x91\xdc\xc4\x7f\x97\x3c\x73\x8e\x4b\x7f\x2b\xbc\xfc\x6f\xe8\x8b\xdc\xb3\xaf\x23\x7d\xf9\xc5\x5b\xef\xbe\xdf\x3b\x6d\xcd\x8a\xbf\x80\x0c\x8d\xad\xef\x05\xfe\x4a\xa5\xae\xff\xfd\x03\x8a\x06\xb7\x66\x64\x68\xf9\x62\xb7\x68\xf6\x61\x38\x03\x1d\xa0\x64\x2a\x72\x9f\x5c\x1f\xe0\x6a\x6b\x2a\x9a\x5d\x24\xea\xbd\xec\x63\x50\x69\x2e\x59\xd2\x57\x63\x18\xee\xc7\x3a\xf7\xd1\xad\xb2\xbe\x06\xe9\x3b\x1a\xf5\xe9\xd2\xc6\x6c\x6c\x0d\x1b\xbf\x8b\x04\x14\xfa\xe4\x51\xa0\x69\xa5\xb0\xb9\x9b\x9d\xfe\xba\xd6\x3e\xa8\xb8\xc0\x2b\xe2\x43\x8e\x53\x6f\x56\x71\x60\x2a\xa6\xc1\xe4\x42\x18\x7e\xd6\x10\x8e\x0b\x42\x71\x7f\x7d\x0b\xe5\xca\x01\x7a\x50\xd4\x22\xbb\xda\x2b\x6f\xdd\xb9\x94\xd4\x34\xb3\x53\x07\xd8\x20\x90\x12\xcd\x2e\x03\xc2\x1c\xd6\xe6\xe3\x03\xfb\x01\xe0\xa8\x03\x57\xaa\x22\xaf\x05\xb1\x38\x1d\x07\xa0\xa2\xbb\x3c\xa9\xad\x4b\x83\xc7\x79\x55\x01\x24\xef\xaa\xba\xb9\x62\x65\x57\xc6\xb1\xe2\x0d\x7c\x59\xb3\x5f\xe8\x01\xcf\x6c\x6d\x6d\x8d\x97\xb5\x4d\x69\x74\xa4\xf9\x22\xc8\x59\x04\xe5\x7b\x41\x81\x9e\xa3\x93\xd5\x7f\x81\x43\x6a\x6d\xfa\x8a\x40\x0b\x7c\x04\x39\x46\xf6\xa1\x87\x1b\xd3\x6b\x59\x96\x72\x20\x2f\x76\x01\xfe\x4c\x7f\xc5\x60\x3b\x29\xce\xfd\x00\x57\x9c\x85\xd5\x01\x97\xc0\x72\x56\x8e\x99\xf1\x90\x72\xe9\x4a\x2a\x78\xa1\x5c\x15\xf4\xa3\xbc\x0f\x97\x96\xdb\xc1\xfc\x4c\x33\x30\x19\xde\xfb\x75\xb1\xfd\xbe\x3f\xec\x4a\x8e\xd4\xdb\xad\x39\xc2\x79\xeb\x6a\xf1\x79\x84\x9f\x95\x5e\x62\x3e\x59\x98\xe4\x1b\x10\xe2\x05\x17\x9b\xe4\x96\x67\x3c\xd6\x75\x16\xa4\x13\xce\x63\xe9\xef\x8d\x50\xda\x49\x0a\xd0\x75\xe1\x88\xe1\xfd\x60\x4e\x9e\x1b\xd5\xb4\x19\xc4\x4f\x34\x4d\x7f\xa2\x06\x38\x30\x07\x4f\x01\xf0\x2d\x94\x04\x6b\x96\x51\x52\xba\x2c\x27\x48\xa5\xc5\x34\xa9\x4b\xd0\x94\x12\x66\xcf\x34\xc2\x59\xd7\xf4\x08\x61\xa7\x15\x44\xf0\x5f\x51\x0e\x4f\x41\xef\x93\xa6\x9f\x32\x8e\x9f\x6b\x93\x2e\x82\x70\xcd\x2e\xc8\xc7\x3b\xd3\xd1\xb0\x4d\xc3\x61\xfe\x91\xa6\xe9\x1f\xc1\xab\xa7\x75\x21\x4d\x1f\xd5\x1d\xf1\x93\x02\x26\x72\x9b\xf1\xaf\xde\xb5\xf3\x13\xd5\x71\x88\x1f\xe9\xe0\x27\x4a\x78\xcf\x57\xe8\x27\x4a\x84\xcd\x05\x68\x0e\x8b\xef\x67\xf4\x1f\x50\x9b\xee\x87\x37\x7d\x3a\x3e\xe4\x8f\xaa\x75\xfc\x1b\xda\x77\x29\x74\xf1\x4a\x7e\x74\xc8\x9f\x7c\x9a\x8e\x4b\xab\x63\xc7\xbe\x33\x37\x29\x25\x37\xeb\x7b\xba\xcb\x67\xf2\x68\xbc\xf7\x52\xa2\x55\xb3\xbf\x18\x65\x82\x52\x98\x2a\x53\xd6\xc4\x77\xd8\xe8\x9a\xc2\x4d\x2c\xa2\xb2\x1f\xc2\xd6\x00\x57\x4e\xe5\x59\xa1\xfe\xee\xe1\x4e\xf0\xfd\x7e\xc8\xf6\x7b\x10\xeb\x69\xd4\xff\x9e\x8e\x9b\xf2\x53\x59\x7d\xb6\xd8\x0b\x33\x3e\xed\x3d\x0b\x8e\x8c\xee\xba\x87\x0b\x4d\x71\x49\x7a\x9c\x9b\x98\x09\x4f\xf0\x9e\x8a\x58\x5c\xb9\x0b\x62\xe7\x1d\x87\x53\xab\xd9\x21\x7f\x82\x4c\x39\x73\xb6\x40\x2e\xf5\xa3\xed\xcb\x7f\x76\xfb\x22\xaf\x57\x32\x5f\xe0\x9c\x50\xdc\x10\xbf\x07\x97\x8d\xaf\x4f\x61\x9b\xcc\xa9\x8b\x32\x4e\x1a\x23\xfb\xa2\x34\x75\x05\xd1\xbd\xf7\x46\x07\x91\xe6\xe3\x9b\x7c\x97\x45\x82\x97\x9e\x43\x4c\x73\x8b\x06\x0a\xa1\x50\x1b\xc2\x2b\x5c\x18\x13\xf8\xfc\x79\x96\xab\xa3\xb4\x40\xc6\xea\x70\x0b\x99\x17\x9f\x03\x3b\xa6\x30\x9f\xe0\x1a\x58\x79\xae\x19\x19\x23\x57\xf0\x1e\xa1\x9c\x80\x62\x33\x8f\xae\x64\xde\x5b\xc9\x7c\xce\x17\xd3\xde\xe3\x8c\x7b\x90\x88\x1b\xb2\xb6\x6d\xaf\x5c\x60\xfa\x06\xa1\xde\x82\xb2\x71\x5e\x48\x36\x6c\xf6\xd7\x00\x49\x20\x97\x2b\x94\x63\xf3\x16\xb5\x68\x9a\x93\xbb\x2c\x47\x1a\x9d\xcb\xfa\xbb\xf9\xd3\x0a\xee\x12\xa4\x1e\x7f\xdc\xad\x73\xd1\x09\xb2\x0a\x2f\x5d\x74\xe9\xb1\x43\x39\x8a\x23\x2b\x67\x1c\xa9\x79\x9b\x37\xe3\xbf\x57\xac\x84\x05\xc7\xdb\x05\xc2\x7a\x3e\xb7\xd6\xca\x03\x3e\x15\x76\xca\x3c\x5f\xde\xdc\x47\x51\x20\x3b\xdf\x25\x57\xfe\x46\xea\x7b\x1b\x8c\xed\x5d\xd0\x15\x6a\xbb\x61\x8e\xbf\x51\x24\xee\x0f\x94\x3c\xf9\xdb\x18\xf6\xd9\x6f\x9e\x78\x3e\x98\xc2\xe7\x0e\xbd\xa0\xb7\xfb\x04\x0d\xf8\xd3\xc9\x4c\x64\x0e\xde\xe7\x0f\x14\x27\x63\xa0\xbf\x53\x8f\x6f\xea\x3a\xe0\xe2\x9a\x70\x57\x4f\x9b\x20\xdc\x10\x13\xf6\xcc\xc7\x75\x73\xa5\x56\x33\x2b\x47\x17\xb8\x46\xe6\x58\xe0\x04\xe9\xdc\x9f\x7e\x99\x7a\x74\x81\x06\x62\x14\x3c\x9b\xe0\x12\x0d\x72\x52\xe8\x35\x54\x60\x16\xcd\xd3\xfc\x12\x65\x15\x59\x05\x23\x40\x4f\x27\x33\x96\x65\x62\x54\xcc\x9b\xd1\x68\x31\x5a\xa1\xd8\x58\xa8\x2d\x80\x57\xb8\xc2\x0c\xb5\x59\x92\x60\x80\x97\xf0\xdd\x4b\x45\x60\x22\x19\xd2\x80\x46\xdc\x77\xc8\x6a\x9f\xc9\x57\x92\x94\x4f\x06\x94\xb2\x01\x94\xa8\x8a\xd8\xfe\x45\x1b\x5d\xad\x74\x65\x49\xad\x10\x59\x8e\x2b\x7d\x38\x86\x25\x72\x89\x76\x8b\xb1\x4e\xf0\x98\xfd\xd6\x9c\xaa\xb3\x9a\x8a\xb3\x4d\xce\x0a\xba\x9e\x9e\xa9\x7d\x24\x8f\xea\x2e\x17\xdb\xb3\xe4\xb7\x23\xe6\xf6\xe5\xe8\xb7\xc9\xd9\xaa\x6a\x8a\x35\xa4\xe8\xbd\xa2\x67\x9b\xaa\x29\xd7\xe3\xdf\x1a\x4d\x33\x78\x30\x6a\xb7\xea\x9e\x98\x6f\xdd\x59\xf3\x3e\xc8\x50\x3d\xcb\x6a\xe3\x33\x02\x18\x74\xd6\xe7\x4b\xf9\x50\xcb\x1b\x02\x45\xb0\x42\xe8\x03\x17\x44\x4d\xc5\xc7\x0e\x65\xc9\xc0\xaf\x94\x63\x8d\xb5\xf7\x17\xdd\x25\x34\x8d\x95\xd6\x89\x39\x7d\x09\x93\x8b\x0c\xdd\x2b\x25\x5b\x07\x97\xc0\x96\xb0\xc8\x00\x97\x19\x24\xf5\xb6\xdc\x8d\x02\x05\x40\x4e\x45\x4f\x86\x17\x98\x8f\x97\x9c\xe6\xeb\x37\x65\x71\xa7\x7f\x3a\x1f\x71\xcd\xb4\xa9\x54\x07\xcf\x81\x01\xd3\x65\xae\xa9\x10\x94\x7b\x05\x6a\xff\x81\xcb\x84\x3d\x17\x16\xad\x6f\x11\x46\x78\x3a\xea\xa8\x02\x3b\x95\xeb\x60\x4f\x63\xc1\xa4\xe0\xe8\x37\x3f\xd1\x6e\x76\x06\x94\x22\x5e\x69\x85\x5c\x27\x2b\x47\xb4\x73\x52\x0d\xdc\x0b\xe0\x08\xf6\x7b\x2e\xbc\x01\xe4\x72\x19\xda\xd6\xd7\xf3\x66\x25\xe1\x68\xbc\xdc\xe9\x45\xd1\xd7\x53\xe9\xf1\x98\x1c\xfc\xd8\xbb\x19\xf9\xa4\xa8\x67\xc1\xae\x7a\x32\x18\xeb\xca\xd7\x96\x30\xb1\x4d\xe6\xc9\x6c\xaa\x98\x9f\x89\x4f\x97\xc3\x43\x07\x6f\x6b\xe7\xc7\x39\x99\x5d\x53\x01\xd1\x05\x35\x15\x41\xbc\x84\x86\xa7\x35\x73\xe3\x25\xf9\xcd\xed\x4b\x3d\x17\x31\x9d\x78\x1e\xe4\x04\xec\x9d\xa4\xca\x0b\xcd\xe4\xb3\xca\xdb\x7c\x53\xde\xa2\xb6\xc5\x6c\x6c\x37\x9f\x77\x15\xaa\x66\xdd\xb6\x9c\xc8\x82\x76\x5b\xf6\x0a\xba\x0d\x0b\x05\x77\x3d\xff\x20\x53\xb0\xb3\x66\x22\xcc\xa9\x28\xbf\x5d\xc6\x3e\xb6\x72\xa8\x23\xa7\xf2\x50\x39\x49\x33\x04\x46\xed\x0a\x7f\x20\xe5\xc9\x2b\xfc\xe9\xc4\x8b\xe4\xb4\xce\x85\x36\xf3\x93\x2f\x03\xca\xc9\x8c\x29\x6e\xa8\xec\xe4\xfa\x80\x1f\x8e\x4d\x7e\x64\xa7\x4e\x6b\xc3\xdd\x19\xf6\x43\x8e\x1f\x34\x0f\x7a\x60\x9d\xfa\x02\xb8\xeb\xfb\xf6\x5a\xac\x9e\x34\x7d\x69\xa1\x3f\x40\xed\x09\xcb\x7b\xdd\x4b\x83\x62\x21\x91\xad\x65\xb0\x9b\xc4\x42\x50\xae\x76\x8a\xd2\xf7\x2b\x76\x94\xdc\xe8\x1e\xb2\x4e\x5a\x64\x66\x22\x66\x38\x89\xd7\x60\x24\x2a\x79\x01\x79\x3e\xb9\x46\x6f\x8e\xf3\xc3\x56\xfc\xde\x86\xce\xd3\x34\x0f\x43\x38\xf0\x8f\xde\xa8\x2b\xc8\x9b\x0c\xed\x1d\x84\x40\x0c\xb6\xac\x59\x20\xb8\x12\xdf\xe9\x87\x3a\xfd\xbc\xec\xba\x7f\x00\x67\xe1\xb4\xa9\x9f\xe6\xd7\x7b\x7b\x5d\x29\xd3\x4c\xad\x00\x1e\xdf\xab\x85\x0f\x5e\xad\x8a\xea\xea\x8a\x72\xf7\x05\x6c\xfc\x7e\x0f\x7a\x79\x10\x22\xb7\xf6\xf3\xbc\x94\x97\xaf\xbc\xb3\xe5\x90\xce\xab\xb2\xb8\x3b\x33\x67\x48\xde\xd7\x42\xde\xd2\x55\xa9\x6f\xf2\xe9\xd9\x6f\x47\x4a\x46\x2e\xeb\x1d\x5d\x09\x10\x8f\x65\xf3\xae\x4f\x87\xe6\x4d\x07\xb1\x80\xac\x79\x6b\xbc\x39\xdd\x15\xed\x93\x92\x63\x00\x94\xde\x7c\xda\x1d\xa2\xa7\x20\x9c\xb2\xa3\xae\x9a\xf6\x3c\x0d\x3a\xbf\x09\x05\x01\xbb\xdb\x9a\xb5\x04\x68\xa1\xbb\xfb\x55\x09\x67\x65\x19\xdb\x36\xb7\x3a\x9d\xdf\x8d\xd9\xaa\x6a\xf7\xe3\x9a\x54\x5e\x7e\x22\x46\x0e\x8c\x0c\xd7\xa0\xe5\x00\x2f\x5b\x7b\x62\x74\xf0\x7d\xe8\x7d\x63\xe4\xe2\xfd\xde\xdf\xd1\x0d\x52\x70\x49\xe0\x50\x84\x15\x7f\xd2\x20\xcc\x64\x7f\xfb\xba\x5d\xe7\x4f\xdd\x21\x44\x8e\x80\x88\x03\x04\x84\x7b\x04\x44\x87\x07\xf8\xd7\x9e\x69\xab\x7b\xf3\xa1\x16\xf3\x36\xfb\x3d\x38\x4e\xf7\x10\x51\x4a\xa5\x43\x64\x07\x59\xa3\x13\xd3\xec\x1e\xbd\xce\xcb\xd8\x75\x5e\x46\xaf\x2b\xfd\x72\xa9\xae\x40\x5b\x44\x07\x9f\xb6\xb8\x8c\xde\x86\x9d\xaf\x4c\x11\xef\xab\x83\x97\x96\xc1\xbc\xa2\x44\x7f\x8d\xc6\x9d\x3b\xd0\x8b\x6d\x76\xf5\xdd\x74\xb3\xf3\x29\x5d\x92\xae\xc3\x8c\x71\x12\xd3\xb9\x0b\x65\x4f\xd8\xef\xef\xdb\x69\xa6\x7f\x68\xb7\x9c\xa8\xfa\x95\x1b\xf5\xab\x26\xdb\x87\x34\xb0\x66\xf4\xba\x58\xdb\x62\xf5\x99\x67\xb4\xea\xe9\xd4\xcc\x37\x9e\x91\x44\xe9\x6e\x79\x9b\x41\x4f\x3e\xf3\x7c\xa7\x20\x5e\xdf\x37\x3b\xca\x51\xf6\x52\x7f\x8d\x3c\x75\x55\x25\x7e\x45\xd5\xae\x1e\x0d\x68\x77\x67\x1a\x67\xb8\x14\xd9\x7c\x81\x30\x13\x28\x03\x45\xaf\x98\x5f\xc8\xff\x7d\xb3\x40\x53\x57\x42\x40\x01\xe0\xf4\x73\x41\x2a\x31\xbe\x62\xe5\x5a\x39\x46\x0c\x22\xc0\x3f\xb9\xda\xf9\xb5\xe8\x44\x52\xdc\xb7\xda\xea\xf1\xff\x9f\x23\x51\x95\xf4\xcf\xf9\xb1\x6f\x54\x81\xec\xe4\xed\xab\x2d\x15\xdd\x85\x74\xe0\xe7\x76\x07\x0f\xec\x06\x6e\x4f\xd9\x33\xb8\x78\x50\x06\x33\x07\x32\x2e\x89\x29\xcd\x0f\x01\x01\x24\xe4\xfb\xe6\x62\x81\x7f\x5d\xb1\xe2\x24\x99\xa2\x63\xb7\xe7\x10\x12\x6d\xac\x8c\x75\x73\x63\x03\x86\x8f\xdd\x06\xc6\x55\xc8\xfb\xa2\x44\xf8\x44\xe2\xce\x5c\xe8\x40\xdc\x35\xc3\x54\xeb\xee\xf1\x3e\xcb\xe9\x4f\xfd\x19\xd7\xb8\xd6\x80\x00\xa0\x54\x6d\xb8\x57\x53\xe8\xb8\xa9\xd8\x0b\x3b\x84\x03\xac\x81\xe2\x4a\x08\x21\xb5\xb8\xcc\xca\xfd\xbe\xe7\x37\xf0\xed\xa4\xc7\x24\xe3\x32\x4d\xe5\xcd\xee\xd8\x68\xe0\x86\x8e\xb6\x03\x8c\xb0\x89\x13\x1f\xca\xe6\xa4\x50\xaa\x2f\xe9\xba\xc3\x91\x72\x84\x1e\x62\x48\x45\x38\x1b\x7a\x16\x0f\x8a\x5b\xb2\xaa\x95\x90\x45\xfa\x27\xd3\x16\xd8\x08\x7b\x2f\xdb\x53\xb0\x12\x87\x19\xc9\xe4\x38\x23\xf9\xdb\x64\x24\x46\xc9\x6f\x7d\x46\x32\x89\x30\x92\xb6\xa9\x8d\x38\xcc\x3d\x7a\x6c\xa3\x97\x56\x41\x38\x3a\xa1\xc1\x98\x25\x9d\xf0\xd0\x5f\xd9\x26\x4b\xca\xe6\xe6\x8a\x72\x3f\x72\xd3\x33\x5c\x0e\xd5\x2f\x13\xe6\xe1\xe3\x58\x39\xab\x46\x88\xad\xae\x6c\x8e\x28\x5a\xb7\x01\x5a\x1f\x96\x6d\xbc\x69\xe3\x20\x12\xa8\x57\xb9\xeb\x8c\x56\x30\x46\xdb\x67\xba\x7d\x1d\x71\x18\xef\x81\xe1\x17\x87\xcc\x65\x9a\xb4\x13\x06\x78\xd3\x66\x76\x61\xf6\xf6\xfb\x18\xa0\x18\x68\x25\x9e\xfc\xed\xfd\x93\xb1\xa0\xb5\x05\x15\xdb\x89\xe3\x66\xec\x25\xa7\xd7\xac\x16\xfc\x8e\xcc\x17\x26\x1b\x73\xc5\xe9\x8f\xec\xea\x87\x72\x4d\xbf\x90\xa3\x8e\x0a\x92\x45\x50\x30\x7b\x77\xdf\xdd\xbd\xce\x6f\xe8\x01\xc0\xce\xb0\x25\xcc\x89\xd1\xf2\x60\x1d\x81\x60\x42\x0f\xc4\xbc\x5c\x8c\x4b\x59\x91\x9f\xb7\x62\x5e\x2e\x94\x77\xa5\xfc\x3e\x02\xe6\xee\xcb\x0b\xa6\x11\xb3\x28\x56\x50\x0d\xfa\xa9\x4c\x88\xdc\x39\x43\x06\x83\x1e\x8d\x8c\x38\x68\x6b\xb3\xc1\x17\x13\x7c\x2f\xfb\x37\xa5\x58\x27\x70\x98\x8a\x16\x21\xbf\x7b\xcf\x55\x4d\xb2\xb1\x58\x7e\x3b\x53\x0c\x3a\x3f\x54\x21\x0d\x6b\xfa\xae\x3f\xb6\x8e\xff\x6b\x6c\x0c\x80\xf8\xdb\x9d\x5e\xab\xd9\xe6\x87\x46\x21\xf0\x05\x42\x16\x10\xc5\xe1\x24\xee\x14\x2b\x73\xa3\xf8\xac\x9d\x18\xf8\xc0\x89\x37\x02\xdf\x44\x07\x99\x25\x60\x84\x4d\xf0\xca\xd0\x18\x75\x4b\xde\x8a\x5e\x62\x74\x29\x51\xbd\x71\x5a\x56\x7c\x27\xc8\xf0\x02\x5f\x0b\x72\x2f\xc5\xa9\xe9\x04\x2f\xa3\x48\xa1\x53\x59\x88\x8a\xb3\xe8\xcb\x6e\x22\xab\x68\x21\xb0\x02\x1f\xf8\xde\x46\x22\xd6\x54\x8c\x46\xf8\x48\x2d\x92\xa7\xc5\x57\xd0\xe7\xa5\x20\xf3\xc5\x20\x00\xc0\x5c\xaa\xd9\xfb\x2c\x62\x2e\xb5\x8e\x36\xbf\x10\xca\x85\xe3\x10\x2c\xaa\x75\x94\xa2\x58\xf4\x10\x41\x31\xef\x42\x5f\x3f\x94\xfd\x68\x93\x65\x94\x80\x0f\x2e\x7f\x5e\xad\xe9\x33\x91\x4d\x10\xfa\x96\xfc\xfb\xbf\xa5\x29\x7d\x4a\xfe\xf7\xc4\x38\x5f\x7d\x52\x72\xe7\x20\x4f\x53\x83\xdb\xab\xa0\x4d\x73\x88\x76\x74\xe4\xe8\x0b\x90\xa3\xac\x6b\xd8\x71\x86\x0b\x7d\xf0\x54\xb5\xc2\x19\x11\x06\x9f\xc5\x3c\x5f\x10\x7e\x19\xd6\xcf\x71\xee\x42\x6d\x6a\xe5\xcc\xcd\x36\xd9\xad\x50\x2c\x8a\x14\xab\x0d\xf4\x17\x9f\xd7\x30\x22\x31\x67\x0b\x52\xe3\x26\x4d\x9b\xb1\x30\x70\xb1\x84\xbc\x11\x9e\x0e\x34\xc4\x67\x6d\x10\x0a\x5b\x6d\xb0\xd7\x33\xcf\xe0\x27\xab\xf4\x10\x55\x95\xb9\x17\x14\x01\x0d\x42\x72\x2d\x58\xd9\xd0\x81\x82\x40\x6a\x10\x96\x83\x6f\xc0\x13\xcd\x8c\x9b\xb0\x16\x65\x73\x6a\xfb\x95\xa1\x05\x56\x50\x57\x90\xd0\xda\x45\xf2\x08\xab\xee\x3c\xb4\x13\x06\xca\x09\x39\x93\x3b\x06\x1f\x46\xd1\xbd\x40\x98\xee\xf7\x57\xc2\x27\xb8\x4b\x81\x23\xa9\xa3\xbe\x08\x15\x47\x32\x80\x3d\xec\xad\xe9\x1b\xd7\x99\x70\xde\x02\x29\xd4\x61\xeb\xcf\xe8\x34\x8b\xb8\xb9\x83\xd1\xe9\x4e\x29\x1e\xe5\xf8\xb0\x9f\xfa\xa8\x0b\x98\x8b\xba\x69\x89\xe8\x60\x5d\xc9\x2f\x33\x1e\x4f\xe1\x94\x71\x24\x59\x3e\x23\x04\x38\xaa\xb2\xdf\x73\xb9\xfa\x1d\x5a\xa3\xac\x9f\x83\x4e\x02\xa6\x7e\x2f\xee\x05\x49\xb2\xba\xb9\x02\xf0\xe1\xb3\x6a\x73\x06\x0c\x10\x4a\x8c\xf5\xf5\xf3\x96\x15\xd4\x4f\xb6\x6a\x23\x27\xf6\xfb\x24\xd3\x86\x6a\x94\xb4\xc6\x55\x25\xd8\x66\xc6\xb7\xc4\x8f\xcc\xfa\x64\x98\x33\x7e\xe7\xc1\x5b\x19\x71\xc5\x69\x85\xfb\x68\x80\xa1\x8f\x86\x79\x8a\xd2\x94\xfb\x7b\x36\x4d\x79\xbb\x02\x20\x8c\x12\xdd\xb7\x6d\x04\xb7\xf7\xb3\x9a\xf2\x67\xa2\x0b\x14\xa3\xcd\xfe\x61\x1a\x17\x2f\x22\xca\xe3\x44\x62\xe8\x1a\x92\x07\x81\xd4\x0b\x4c\xa3\xf1\xa6\x29\x1d\x12\x83\x22\xac\x7e\xbc\xd1\xee\xf1\xf2\xef\xd7\xc0\x06\xa9\xbf\xa1\x29\xf5\xe7\xf7\xb9\xa0\xea\x2f\x75\x84\xbc\x70\xaa\x07\x3a\xa0\xcc\x4a\xd1\x37\x35\x55\x01\xe9\xaf\x04\x7e\x27\xc8\xbd\x97\xeb\xea\xad\xe8\x1a\x5f\x39\xc4\x7f\x40\x92\x6e\xcb\x82\xd0\x05\x84\x3f\xb0\xd9\x33\x4d\x98\x98\x8a\x3e\x9e\xc2\xff\x31\xf3\x3c\xa4\x85\x1f\x34\x1b\x78\xe0\xcf\xc5\xc2\x25\xf5\x51\x04\xb2\xec\xf9\xc0\x10\x0f\x04\x86\x10\xed\x59\x03\xc8\x54\x60\x0d\x8d\xe1\x9a\xe4\x33\xd8\x76\x52\x60\x56\x04\x75\xea\x39\x9c\x7c\xaf\xfa\xa3\x31\xe5\x01\x1b\xf1\xfe\x73\x56\xa2\x59\x96\xcf\xc5\x22\x92\xed\xd3\xfa\x7a\xe2\x86\x2c\x33\x6d\x4b\xce\x9a\x33\xa6\xb1\x3d\x25\xcb\x2c\xfc\xd0\xbc\xc6\xe8\x8a\xdc\xe0\x82\x44\x46\x0a\xc7\xba\x26\xcb\x0c\x66\x00\xe1\x7a\xbf\xcf\x6a\x70\x11\x11\x58\x0a\x7d\x0e\x60\x74\xbf\x1f\x66\x75\xa7\xa5\x70\xca\x0a\xbc\x22\xde\x68\x6d\xdb\xd8\xda\x23\xa0\xc3\x05\x71\xda\xfc\xc6\xfe\x15\x7e\x58\xdb\x0f\xd5\x5f\x68\x6a\xff\x9c\xba\xd7\xab\xa1\x37\xc2\xfd\xbe\x50\x3f\xf5\x17\xda\x23\x25\xbc\xf1\x1b\x97\x5a\xcd\xda\xfb\x56\x78\x63\xcd\x7b\x05\xfe\x8e\x66\x1b\x5c\x0a\xcf\x3f\x48\xee\x27\x5c\xe2\x1a\xe7\x92\x5e\xd4\x1e\xc8\xf7\x54\xdf\x4a\x9a\xab\x13\xe8\x5b\x32\xd9\xef\x13\x75\x54\x69\x99\x3b\x35\x2c\xa3\x75\xa2\x93\x6b\xdc\x50\x7e\xdd\x7b\x3e\xeb\xfa\x06\xbb\x2d\x2f\xd7\x68\xbf\x07\x9c\xbd\x5c\x4d\xef\x4d\xfe\x89\x6a\xc7\x3a\x86\x8c\x3f\x50\xf7\x0d\x47\x4e\x9b\xdd\xea\x6d\x56\xa3\x69\x91\xa6\x85\xdf\xe1\xf3\x8b\x6e\xd3\xd6\x11\x24\x87\x53\xa1\x9a\x86\x8d\x66\x7d\x19\x54\x6c\x1d\x40\x23\xf0\x71\x5e\xd7\xec\xba\x44\xd9\x7d\x8b\x73\x84\x1b\xe2\xc1\x85\x16\x0a\xa1\xc1\x5c\xd4\x1e\x7f\x99\x15\x9a\x75\x58\x91\x72\x5e\x2c\x06\x1f\x44\xb6\x42\xb3\xac\x21\xc3\x09\xae\xe7\xc5\x82\xc0\x51\x2d\xf0\x0a\xe7\xf8\xbe\x45\x68\x0a\x0f\x57\x66\x51\x1a\xb9\x69\xc7\xcb\xba\xd9\x51\x4e\xaa\xf1\xbb\x37\x6f\x3e\x20\x5c\x7b\xc3\xfc\x20\x54\xf4\x62\x49\xfe\x6e\xce\x58\xad\xe0\xe2\xdc\xf2\xa9\xa5\xf4\x5d\xf8\x5f\xf7\xe8\x8d\xb9\x94\xbc\x44\x09\x1c\x99\x75\xb8\x0e\x72\x20\x71\x74\x20\xa6\xa7\x26\xe5\xec\xf7\xd3\xef\x70\x43\x26\x97\xcd\x53\xa6\x82\xcd\xcc\xe5\xdf\x8c\x46\xa8\xce\x28\xd6\x8f\xe7\xcd\x42\xa7\x0c\xc0\x4c\x27\x7f\x08\x1d\xf7\x5c\x2a\x88\x72\xf6\xfd\xf4\x35\x5e\x91\xc9\xe5\xea\x69\x6e\xaa\x5b\x8d\x46\xa8\xc8\x28\xce\xe7\xab\x85\xcd\x3d\xe0\x42\x2f\xbc\xf1\xc5\xee\xab\x34\xb5\x33\x20\x79\x97\x98\x23\xaa\x2d\x52\x82\x84\xe4\xa2\x1f\x7c\x2f\x24\x9d\x23\xe3\xbe\xc5\x8d\xfc\x5f\xd1\xb1\x35\xae\x14\x83\x1e\x2c\x1f\xee\xbb\x23\x79\xae\xed\x2e\x71\x1e\x5e\x07\xa9\x10\xd1\xbd\x06\xf7\x97\x57\x02\xd6\x7f\xb3\x39\x5d\x58\x73\xf4\x0d\x99\x5c\xde\x38\x66\xeb\x46\x49\xb3\x35\x11\xf3\x9b\x05\xde\x12\x8e\xb3\x86\x64\x6b\x52\x23\x8f\xb2\x7d\x27\x66\x5b\x9b\x27\x3c\x5b\xa3\xd9\x3b\x31\xcd\xb6\x36\xf7\x78\xb6\x46\x78\x6d\x6c\x08\x8c\xd6\x68\xba\x46\x43\x42\xde\x41\x02\xda\x46\x31\x7b\xb0\xf5\x2b\xd0\xdb\xbd\x92\x07\x1e\x3e\x4c\xd3\xee\x13\xc9\xa9\xae\xc8\x5b\x91\x1d\x22\x1a\xb8\x01\xc0\x3a\xbc\x81\x42\x3d\xda\x61\x5e\x37\xa8\xe9\x9f\x30\x79\x33\x29\xf3\x7c\x81\xf0\xf7\x22\xab\x70\x81\x9b\x79\xb1\xd0\xd3\xbb\xc2\x1b\x84\x06\xbd\xef\x12\xc3\x1f\x27\x08\x12\x2a\x5b\x36\xde\x71\xf4\x1a\x80\xab\x56\x59\x5e\xea\x34\xcd\x68\x66\x7e\x78\x6b\x27\xc9\xf7\x67\x26\xb6\x55\x23\xd2\xd4\xfd\x6d\x1d\xd7\x77\x08\xb5\x99\xc0\x05\x5c\x7d\x14\x7b\x89\x4e\xb6\x64\x72\xb9\x7d\xba\x32\x8b\xb6\x55\x8b\x26\xe7\xa8\x16\xbc\x59\x89\x8a\x27\x43\xf0\xb4\x5c\xcd\xb7\x0b\x70\xb2\xec\x0c\x82\x23\xb8\xdf\x73\x02\x7e\x04\x8c\x34\xf2\x9f\xcd\xf8\xd9\x8f\x3f\x3c\x7b\xbf\x7c\xf5\xe2\xc3\xef\xdf\x7c\x8f\x54\x0a\xa5\x34\x65\xfe\xa5\xf6\x52\xe8\xf8\xd8\x35\x79\x25\x00\x5e\xb7\xc6\x0d\x1a\xe4\x64\x0d\xe9\xb7\x30\x23\x6b\xe5\x65\xde\x46\x59\x02\x66\x13\xb8\x0e\x15\x7f\xc0\xd1\xec\x07\x95\xe8\x08\x4e\x23\x43\x53\xfd\x93\x42\xc7\x10\x06\xa5\x1c\xc7\x39\x66\xb8\xf0\xf3\xbb\x86\x9d\x4d\xd3\xec\x55\x57\x79\x69\xa9\x14\xae\x88\xd0\x29\x3c\x25\xab\x89\x73\xc2\xe7\xd5\x02\xd7\xa4\x9c\x57\x7d\x2f\xde\xdc\xb0\x07\x2a\x8f\xb4\xc7\x83\x33\xe8\x71\x85\x24\xff\x41\x98\x05\x78\x43\xd3\x2c\xb7\x24\x93\xd0\x79\x25\xf9\x84\x7b\x39\x1b\xd3\x5c\x83\x03\xd6\xad\x36\xa9\xbc\x14\xf8\x17\x81\x7f\x2f\xf0\x77\x87\x94\x5b\x4e\xdd\xb2\x8b\x25\xa3\x0a\xd9\xb2\x5e\x4e\x0f\x6f\x8d\xbd\x98\x19\xa4\x6c\x4e\xa1\xfc\xad\x60\x87\xeb\xea\x86\x46\xfd\x6b\x05\xc4\x12\xa3\xd6\xc6\x17\xdc\xb7\x2e\x14\x24\x96\x73\x5f\x0b\xd1\x73\xbe\x18\x3c\x17\x19\x43\xb3\x72\xce\x17\xe4\x17\x9a\x31\x34\x85\x3f\xe5\x8a\x42\xd2\x1c\xb7\x88\x99\xf1\x5e\x50\x67\x83\x7c\x14\x36\x8e\x04\x72\x85\x3e\x77\x1b\x3a\x0c\x47\xd2\x47\xc5\x44\x24\x51\xcd\xbf\xf8\x73\x2a\x25\xc5\xc9\xe0\x57\xb6\xc9\xc9\x2f\x64\x0f\x32\xe1\x70\x3d\xa8\xe9\x7d\xdf\x9a\xd4\xf7\x28\xe4\x5e\xa8\x8a\x89\x4e\x9f\xf1\x69\x66\x4f\x3d\x90\xbd\x3a\x58\x12\xea\x6d\x05\xb0\x18\xe8\xbc\x33\xe0\xe6\x37\x38\xa2\xe4\xe4\xb4\xda\xd1\x68\xee\xc3\x87\x32\x11\x19\xed\x8c\xcd\x40\xd4\xc9\x3f\xc4\x36\x19\x78\xbc\x5b\x44\x12\x8b\xdd\xe0\xa8\xbe\xe1\xcf\x20\xe2\xda\x5f\x3d\xaf\xcc\xa0\xbb\xd3\xfd\x72\x7a\x5a\xe7\x4c\xbb\xdd\x7b\x0f\x4d\xfc\xbb\x29\xe2\x52\xb9\xf9\x8f\xbd\xbf\x0d\x1b\xf8\x11\x72\x18\x2b\x2b\x20\x04\xda\xef\x76\xc5\x5d\x2c\x63\x14\x5c\xd8\x73\x59\x6e\x81\x6c\xc1\xb7\x39\x17\x2c\x2f\x4e\x29\xbf\xa6\x22\x48\x03\x15\x66\x79\x18\x7a\x51\x9a\x66\x1b\x38\x38\x79\x39\x99\x3e\xd1\xa5\x5d\x9f\x5b\xc5\x04\x98\x93\x79\x32\xf0\xf8\xcc\xff\x31\xd5\x9a\x9d\x81\xd5\x13\x59\x79\x65\x78\x31\x30\x50\xd9\xd0\x17\x3f\x17\xe7\x64\x60\xb4\x65\x6a\x62\xc1\xb1\xc4\xb9\x59\x85\xf4\xc4\x8b\xb8\x32\x99\x53\x91\x83\xe4\x31\x21\x80\x71\x24\x0a\x11\x8d\xb2\xb5\x5c\x87\x0d\x1e\x34\xa4\x20\xba\xcb\xd5\xe6\xd3\xcb\x82\x79\x7f\xd7\x97\xde\xae\xe7\x26\x1d\x1f\x87\x78\x89\x72\xce\xfc\x5d\xcf\x16\x9e\xf5\xc0\x34\x5a\x62\x80\x9e\x00\x9c\xaf\xbe\xf1\xd9\x5f\x2e\xeb\x0c\x79\x6a\x8a\x97\x99\xff\xc3\x2e\xd6\x3f\x69\xc5\xc3\xf5\xf6\x4f\xa8\x83\x27\x0c\xae\x0f\xbf\x08\x8e\x04\xc6\x42\xb8\x60\x06\xb1\xf9\x4a\x45\x29\x2c\x33\x64\xfe\x3a\x1a\xa0\xd7\xdd\x2e\x52\xce\x74\xf1\xa2\x86\xe5\xea\x4d\xb9\x55\x6b\x9d\x41\x1b\x28\xe9\xc6\x8a\x7e\xf4\x6c\x78\x34\x4d\x8d\x05\x6c\xbf\x9f\x60\xeb\x89\x2c\xa7\x40\x85\xa3\xf8\x14\x71\x10\x42\x4f\x09\x5f\x61\x4d\x21\xdd\x9e\xa4\x92\x01\xb3\xf4\x9d\x98\x31\x98\xf4\xef\x84\x21\x80\x0c\xb5\x4e\x72\x36\x19\x9f\xbe\x93\xfc\x80\x6f\xea\xf6\x12\x89\xf5\xf8\x9c\x97\xa2\x1f\x85\xe9\x98\x1b\x42\x5b\x84\xc3\xbc\x52\xbf\x44\x2a\xe9\x96\x88\xe6\x9b\xa5\x9f\xcf\x5e\x0a\x75\xd1\x1c\xcb\x62\xf5\x7b\x71\x28\xf3\x39\xdc\xe1\x4f\x40\x9a\x0e\xf3\x9f\x1f\x4a\x5b\x1e\xa6\x06\xef\x25\x01\x37\x09\xeb\x62\xbd\x05\xee\x42\xa5\x08\xeb\x96\x91\x35\xc9\xd7\x04\x72\x88\xbd\xf9\xf3\xeb\x17\xef\x7c\xa7\x73\xa0\x3c\xc2\xc5\xa4\x41\x01\x00\xb6\x57\x45\xf9\xa1\xe1\xf1\xaa\x11\xac\xbc\x3e\x6d\x80\xa6\x70\xc1\xae\x9e\xd0\x2f\xe2\xc9\xaa\x2a\x05\xaf\x8a\x82\xf2\x07\x8b\x17\xd5\x2a\x97\x23\x79\x92\xef\xd8\xe9\x85\xcb\xaa\xa4\x4b\xf3\xeb\xf4\xcf\xb6\x79\xbd\xfd\x9a\xcf\x58\x2d\x2a\x7e\xf7\x15\x5f\xe6\x8d\xa8\x4e\xff\xac\xbe\xab\x05\xbd\x79\x72\x4d\x4b\xca\x73\x41\x97\x8f\x98\x46\xfd\xa9\xfb\x62\xb9\xa9\x4e\xfe\x6a\x5d\x17\xa7\x16\x95\x8f\x4e\xef\x0e\x94\x3e\xb5\xf0\xcf\x0d\xe5\x77\xcb\x5d\xce\xf3\x9b\x87\x77\x19\x80\x42\xae\xa8\x7d\xf8\xb8\x0f\x1e\x31\xa1\xf9\x6a\x4b\x4f\xca\xea\x8f\xd7\x78\x87\x6f\x3a\xc7\xfa\x10\x48\x7a\xf2\xa3\xdd\x13\x9d\xb0\xde\xb8\xf3\x1f\x37\x36\xdc\xb6\x3d\x8c\x0b\x9f\xbc\xae\x4a\xfa\xc8\x8a\xcb\x93\x2a\xfe\x7d\x5e\x6f\x1f\x59\x31\x3b\xad\x62\x75\xb2\x1e\x59\x77\x75\x52\xdd\xcf\x1a\x51\x3d\xb2\xe2\xfc\xa4\x8a\xcd\xf9\x7c\xee\x1d\xcf\x93\xaa\xaf\xbf\xb2\xfa\x97\xb9\x14\x12\xef\x4e\x6e\xe5\x60\x0d\x47\xdb\x75\xb4\xe3\x65\x75\xea\x88\x9a\x93\x46\xf4\x0e\x8e\xdc\xf7\xef\x7f\x3c\xb1\xd6\xe2\x11\xb5\x9e\x58\xe5\xea\xf4\x2a\x4f\xac\x71\x73\x52\x8d\x7f\x92\x44\xed\xad\xa6\x69\x27\xd5\xbb\x3d\xb9\xa7\xac\xbc\x7e\xaf\xa8\xda\x89\x55\xaf\x1f\x31\xaf\x8f\xab\x79\x77\x52\xcd\xdf\x35\xab\x4f\x54\x40\xde\xc6\x13\xeb\xbd\xf1\xea\x7d\x88\x53\x89\x31\x1f\xc7\xd9\x96\x1b\x2a\x72\xef\xe6\x73\x1f\x42\x5d\xde\x5d\x0a\xfc\xf6\x83\x57\x46\x8c\xcd\xd3\xfa\xf6\x90\xd5\xd3\x63\x72\xd1\x82\xfa\x81\xd6\x69\x64\xf7\x71\x7d\xf0\x74\x9e\xfc\xec\x6d\xa7\x05\xf6\x7e\x4d\x41\xc3\xb8\xfc\x79\xf7\x3d\x2d\xe8\x75\x2e\xa8\x7d\xa0\x02\xa5\xd6\x3e\x82\xa1\x97\xb2\xc5\x65\xc9\x9c\x2f\x12\x29\x22\x02\x10\x7e\x39\xe3\x53\xae\x61\xd9\x27\xb8\x84\xc8\x69\x3a\xf6\x6a\x47\x19\x53\xae\xec\xd7\x54\x20\x88\x7a\x95\xb2\x0b\xcf\xcb\x9a\xc9\x36\x3e\x54\xb0\x89\xa6\x11\xb1\x95\x12\xf7\x1d\x98\xe1\x13\x91\xf3\x6b\x2a\x12\x29\xc1\x42\xe6\xe2\xb0\x8e\xfd\x3e\x7c\x88\xfb\x09\xdb\x70\xe5\xc9\x32\x0c\x61\x0d\xef\x7a\x99\x8f\x46\xa8\x9a\xe7\xbe\x9c\x9b\x2f\x3c\xc8\x17\xed\xfe\xaf\x44\x73\x4e\x37\xec\x0b\xb4\x28\x25\x8d\x67\xfc\x5a\x77\xaf\x92\x23\xd3\x51\xc7\x5f\x3b\x28\xff\x73\x39\x1e\xfd\xfb\xcf\x4c\x6c\xff\x3b\x86\xd3\x3a\x77\x69\xbd\xf1\xbc\x3d\xc9\x4e\x39\x66\x21\xd3\x1e\x39\x64\x6b\x7a\xd5\x5c\x3f\x24\xf1\x84\xc7\x40\x8b\x2b\xf7\x4a\xd9\x39\xed\xeb\x1b\x41\xa2\x65\x37\xbb\x82\xca\xc1\x43\xfb\xc6\x09\x2f\x7c\x5a\x7b\xb6\x7b\xae\x95\xa7\x7a\x7a\x78\x18\xed\x18\x7e\x36\xbd\x6f\x5b\xaf\x5b\x0f\x8a\x46\xc7\x38\x7d\x7f\x4e\xa0\x82\xf3\xab\xfc\x8a\xc6\xd9\xec\x2b\x5e\x7d\xae\x29\x3f\xa7\xe5\x2d\xe3\x55\x29\x3b\x74\x0a\xb9\xea\xca\xa2\x71\xfa\xd4\x94\x82\xdd\xc4\x79\x70\x45\xaf\x3a\x6b\x76\xb2\x68\x23\xbf\x3e\xca\x18\xc7\x24\x5c\xcd\xef\xbd\xcd\xc5\x96\x6c\xb0\x7a\x94\xd7\x5b\xf8\xbd\xc5\xd1\x2d\x51\x1c\x8e\xd3\x50\xde\x4d\xda\x43\x47\x90\xa3\xf1\x1a\xa8\xb3\x49\x48\x22\x57\x2c\xc1\xe2\x78\x4c\x41\x15\x8b\x29\xa8\x7a\x0a\xd0\x00\xb6\x96\x57\x95\xf8\xf8\xee\x47\x2c\x22\x4a\x73\x3a\x36\x13\x08\x94\xa1\xa9\x29\x7f\x76\x4d\x4b\x81\x4b\x42\xc7\x5a\xce\xc4\x8c\xd0\xf1\xba\x5a\x41\xff\x5f\x55\x6b\x8a\x2b\x42\xc7\x2a\xc0\x05\xe7\x92\x9e\xe8\x06\x6a\x92\x48\x41\x38\xc1\x05\x19\x5e\x28\xff\x8b\x46\x4e\xe9\xcb\xa6\x28\xe4\x94\x22\xad\xf3\x82\xe7\x75\xb3\x83\x0d\xa9\x97\x40\x8e\xb1\x44\xc6\xdc\xb5\xc9\x72\x2c\xd0\x60\x45\x08\x59\xcf\x6a\x92\xe8\x9e\x24\xd3\xe4\xc9\xbf\x24\x84\x90\x95\x06\x70\xc8\x26\xf8\x1b\x34\xcb\x4a\x43\xc2\xde\x8b\x5c\xd0\xec\x1e\x32\x32\xae\x5b\x9c\x24\x78\x8d\xb0\xf7\x3d\x9a\x66\x05\x19\x42\xc6\x88\xc6\x7c\xa3\x7b\x86\xd7\x48\x9b\x12\x7b\x3d\xcc\xeb\xad\xba\xb5\xe4\x35\x53\xe9\x4e\xee\xc8\xd6\x75\x72\xb7\xdf\x27\x4f\xa0\x63\x69\x9a\x3c\xf9\x17\xf8\x73\x07\x1d\xcf\xeb\x6d\x72\xa4\xd1\x1d\x42\x2d\xdb\x64\x85\x53\x06\x1b\xae\xb9\xcd\xee\xcd\xd2\xa8\x28\x51\xbb\x50\x7a\x30\xea\xa9\x59\x23\xbb\x72\xea\xb1\x5b\x48\xbd\x38\x53\x8a\xfd\x25\x54\xa5\x82\x45\x55\x0b\xaa\x5e\xa8\xbf\x5b\x34\x50\x31\xec\x2a\xb7\x30\x44\x34\x98\x0b\x65\x95\x97\x2b\x5a\x18\xde\x4c\x34\xbb\x04\x0f\x27\x08\x0b\xbd\x05\x3c\x3d\x33\xb3\xaa\x24\xed\x28\xa8\x9d\x54\xb3\xc4\x8e\x2f\x19\x09\x8d\x86\x02\x2d\x70\x9c\xe8\x5e\x27\x98\xea\x2c\xb6\x7e\xd3\x55\xb9\xe2\x54\xd0\x1f\x82\x03\x94\x40\x98\x84\xb2\x69\x7f\xdf\x47\x27\xf6\xce\x43\xfc\xfb\x01\xd0\x73\x8b\xf9\x0a\xd1\x12\xd5\x58\xf1\x8e\x7e\xcc\x84\xa7\x06\x8b\x6a\xc1\x8f\x34\xf1\x2b\xe9\xc4\xb3\x09\xce\xc7\x82\xdf\xfd\x50\xde\x56\x9f\xa8\xdc\x45\x34\x44\x39\xdc\x04\x70\x4e\x98\xd9\x83\x68\x0e\x21\xae\xec\x23\xb9\xb9\xe1\x51\x6e\x1f\x81\x8c\xa0\xce\xaa\xe5\xc7\x6c\x38\x6a\xa2\x36\x77\x15\x1e\x40\x4e\xb2\xd2\x3d\xbb\xb0\x30\x2c\xff\x92\x20\x64\xb1\x77\xd5\x09\x51\x4e\xc6\xcf\x44\x66\xb3\xf7\x5e\x20\xc8\xda\xc4\xdd\xe7\x08\xb3\x11\xe1\xa3\xdc\x66\xd3\x49\xd3\x8c\x8d\x48\xf2\x2f\xc9\xa8\xd4\xfe\xb8\xb2\x66\x34\x65\x23\x92\x8f\x2a\xdf\xad\x6e\x1b\x00\xd0\xe0\x92\xa8\xc9\x30\x75\x1b\x1d\xb4\x1d\x4e\xa2\xb0\x36\xb3\xe4\x09\xfc\x35\x9f\x2c\xc0\x53\x27\x79\x92\x8c\x4a\x84\xb9\x6e\x14\x61\xde\xba\xdb\xa0\xc0\x85\x65\x8d\xcd\xf1\x4a\x9e\x24\x98\x95\x4c\x00\x05\x9a\xae\xb2\xc4\xfe\x48\x90\x14\x26\x64\x99\x55\x96\xa8\xbf\x12\x84\x6b\xfb\xa8\x36\x8f\x34\x69\xd0\x8f\xdd\xaf\x04\xe1\xaa\x04\x3c\x21\xf3\xce\xfb\x99\x20\xbc\xa9\xf8\x4d\x6e\x6a\xb3\x3f\x12\x84\xed\xf9\xe2\x7d\xe2\xc1\x2d\xe5\xd0\xe7\x9e\x8f\x3f\xb3\x72\x5d\x7d\xf6\x28\x09\xf7\xc8\x48\xef\xbc\xab\x44\xb6\x8f\x61\x49\x3a\xda\xce\xc7\xb0\x24\x87\x59\x8d\x1e\x43\xc1\x9b\xb2\xa8\xaa\xdd\xaf\xc2\x38\x9c\xc2\x22\xe6\x71\x7e\xa0\xfc\x87\xf9\x01\xb8\x3a\x0e\xf0\x03\xa5\xe1\x07\x72\x52\xf6\xf9\x81\x1c\x90\xfd\x7c\xea\x07\xce\x71\x1e\x09\x75\xab\xa0\x4c\xfc\xe6\xf7\x7e\xaf\x36\x81\xdd\x2f\x26\x36\x44\x76\x46\x65\x89\xfa\x7d\x5e\xae\x0b\x8b\x24\xd3\xe2\xdc\x50\x91\xbe\x81\xc8\x38\x4a\x68\x1a\xe3\x5f\x62\x48\x7f\xf8\xf1\xdd\x8f\x07\xa8\xb4\xfe\x2e\x43\x8e\x2c\x60\x41\xcc\x18\xd5\x71\x15\xea\xb8\x0a\x79\x5c\x31\x95\x7f\xa9\xf3\x4a\x21\xb1\x14\x06\xac\x98\xa0\x05\x63\xc3\x31\xdd\x18\xcb\x71\x11\x10\x52\xc2\xf9\xc9\x6b\xf1\x9e\x9a\x1b\x48\xd6\xe4\x8e\xe3\x91\xda\x0c\x1a\x94\xea\xc3\x09\xb5\x7a\x07\xb9\x5f\xed\x52\xe1\xb1\xbe\xb8\xa5\xa5\xf5\xed\xcb\x0e\x2f\x08\x5c\xb5\x57\xac\x5c\xeb\xe6\x3a\xd3\x2a\xec\xb4\x7e\x7c\xf7\xa3\xc9\x5e\xe0\x7a\x34\xb4\xd7\xfc\xc1\x2e\xab\x58\x3d\x85\xf4\x8c\xb0\xde\x28\xf9\x7a\x1d\x76\x30\x71\x3d\x4b\x0e\xf5\x15\xc6\x6e\x29\x55\xc4\xc2\x04\x13\x28\x0b\x1d\xb8\xcd\x8f\xcc\x8f\xfc\x2a\xf6\xa6\xff\x79\xaf\x5b\x69\xaa\x07\x15\xab\xf8\xc4\x71\x95\x6d\x56\x5a\xae\xc1\x11\x8c\xfc\x71\x94\xb2\x67\xe0\xf9\x27\x11\xcb\xaf\xa6\x8d\xa7\x50\xc6\x0a\xdc\x6f\x0d\x41\xcc\x9d\xdd\xf8\x8b\xfe\xef\x1c\xfe\xf7\xaf\xf2\x7f\x77\xe6\xa7\xf9\x2f\xb1\x87\xe9\xc9\xfc\xcb\xdd\xe2\xc9\x35\xee\xc7\x91\x18\x17\x01\x72\xf1\xef\xff\xe3\x55\x2e\xb6\x63\x9e\x97\xeb\xea\x26\x43\xfb\x09\xce\x92\x2f\x92\xdb\xa0\x33\x31\xfd\x5d\x2a\xf6\xff\x0b\xb9\x50\x9b\x8b\x7f\x47\xad\x8a\x7a\xac\xff\x69\xb4\x5b\xcb\x1b\x58\x18\xe1\x08\x48\xd4\x03\xc4\xbc\x8e\x11\xf3\xfa\x28\x7d\x65\x87\xe9\x6b\xdd\xbb\x05\x0c\xc8\xc9\x8e\xf2\xf8\x70\x34\xc0\xaf\x11\x0b\xc6\xa0\xd0\x7b\x4f\x0b\xba\x12\x15\xcf\x92\xab\xbc\x96\xdc\x8c\x20\x49\x32\x00\x6a\x4b\x40\x62\x7e\x26\x04\x67\x57\x8d\xa0\x59\xb2\xe5\x74\x93\xa0\x3e\xe5\x93\x5f\x02\x0d\x11\x11\xaa\x18\xde\x45\x0f\x5e\x45\xbb\x6a\x57\x4b\xbe\xaa\x7b\x11\xa9\xf1\x02\xcb\x75\xe0\x4a\xd1\xab\x62\x6b\xd6\xbf\x2f\xbb\x3d\xb2\xab\x47\x91\xbc\x55\x12\x68\x2e\x51\xa9\xa8\xd5\x34\x77\x84\x57\x32\xd4\x29\x69\x1d\x91\x55\x92\x28\xc2\x3a\x70\xd4\x12\xbb\x2c\xa0\xc2\x68\x20\xd2\x54\x80\xbb\x35\xa8\x39\xf5\x08\x39\xbd\x65\x55\x53\xcb\x6d\x13\x14\x9f\xea\xd0\x50\x4f\xd6\x55\x2b\x7d\xf4\x26\xb5\xbc\x9f\x08\xf5\x01\x5a\x59\xa5\xd7\x06\x24\x7e\xd9\x91\x32\xbf\xa1\x03\x41\x84\x3b\x80\x7f\x7b\xf2\x9b\x27\x38\x01\xe5\x21\xef\x3f\x35\x59\x40\xec\x1b\x29\xd0\xbc\xa3\xd7\x2f\xbe\xec\xb2\xe4\xff\x26\x23\x3e\x4a\xb2\x19\x79\xb2\xff\x0d\x4a\x90\x2c\x7f\xa8\x9c\x38\x54\xee\xc9\xdf\x9e\xfc\xed\xc9\x93\x6b\x29\x3f\x58\x0f\x15\x36\x22\x19\x1d\xd7\x34\xe7\xab\xed\x7e\x9f\x24\x68\x14\x32\x0d\x72\x52\x22\x97\x7f\x74\x8d\x06\xb4\xbb\x46\x14\x61\x7f\x5d\xa8\x3a\xe6\xe0\x0b\xa8\xbe\xa1\xd0\xc0\x01\x9e\xe0\x1f\x6b\x24\x58\x5d\x6a\x56\xb7\xb7\xad\x7d\x0f\xbc\xce\x6e\x9c\xf9\x9b\x7d\x0c\x9b\x77\xaa\x2f\x2c\xf5\x0c\x2a\x93\x15\xdb\x01\x45\xfa\xaf\x94\x28\x14\x37\x0d\x5b\x4f\xf3\x0c\xb5\x83\xa0\x5a\x37\x17\xc2\x64\x15\xc3\xfd\x46\x4c\xd2\xa7\xc3\x5b\xda\x9b\xc7\xaf\xec\x49\x30\x61\xff\x78\x67\x0e\xb1\x64\x6e\x55\x07\x0f\x73\x67\x5d\x1a\xe5\xb3\xe2\xd5\x7e\x9f\x55\x90\x07\xc0\xb6\x2b\x99\xaf\xa0\x5b\x08\xa5\x29\xcd\x5c\x01\xd4\x1e\xe6\xb7\x4c\x5b\x49\xbc\x6d\x18\x54\x9c\xd7\xf2\x36\x6a\x9c\x26\xf8\x42\x32\x9d\x65\x8f\x20\x0a\x68\xaa\xa4\x7d\x0e\x1c\xba\xfa\x5b\x73\xeb\xf1\xf2\x98\x8f\xc4\x08\x36\xe5\xd7\xb0\x7c\xf1\x37\x11\xbc\xc1\x70\x6e\x8e\x33\x7c\x0f\x4f\xec\x01\x66\xaf\x7e\x14\xb3\xd7\xf1\x1d\xfa\x27\x71\x7a\x31\x0b\xc8\x63\x58\xb9\x7f\x12\xa3\xa4\xf4\xc5\x0f\xf0\x45\x2c\xc6\x17\xb1\x88\xd2\xdb\xdf\xca\x1a\x78\xe6\xf0\xb5\x28\xa9\x4a\xe7\x4a\x74\x1c\x65\x6c\xa3\xd3\x53\x6f\x2e\x8d\xef\xd2\x3d\x6e\x5d\x36\x43\x76\x40\x09\x82\xec\xb8\x20\xd8\xc0\xab\xe7\x79\x51\x5c\xe5\xab\x4f\x0a\x72\x72\x0b\x9b\xf0\xd4\x26\x70\xa4\x9e\x4c\xb5\x7c\x2a\x69\x08\x68\x81\xc2\x93\x88\x1d\x63\x38\xc4\x07\xce\x45\x85\x2b\xab\x37\x03\x9a\x9e\x24\xd8\xd3\x9f\x3d\x52\x9d\x04\xb2\x89\x77\x5c\x16\x81\x84\x10\xec\x69\xbb\x61\x7d\x87\x54\xc7\xec\x1c\x52\x29\x8c\x20\x09\x8c\x67\xe2\xf1\x3c\x20\x35\xef\xd1\x7a\x67\x81\x76\x52\xe5\x43\x8c\xb3\x94\x11\x67\xea\x1f\xab\x32\x45\xd3\x24\x71\x1f\x32\xbf\x4f\x15\x67\xd7\xac\x1c\xb8\xd8\xf1\xcc\x86\x1b\xac\xaa\x62\x94\x3c\x79\x92\x8c\xe8\x78\x5b\xd5\x42\xf6\x1c\xd3\xb1\x1c\xbb\x56\x7c\x4c\xe5\x2b\xf9\x1b\xa9\xdc\x35\x5a\xe1\x4b\x84\x32\x6c\x81\x5a\x97\x70\x67\xe5\x22\xa5\xfa\xdb\x98\x67\x62\x9e\x9e\x72\xc2\x46\x72\xe0\xa3\x12\xf6\x8b\xf2\x0b\x85\x4e\x12\x86\x69\xc4\x46\xd2\xf1\x05\x35\xf5\xa4\x69\x52\x95\x9e\x08\xcd\xe0\x99\x8b\xfe\xa5\xfb\x3d\xfd\xf6\x7f\x42\x0b\x5d\xe6\x3a\xac\x90\x6d\xb2\xec\x5c\xc7\x8f\x1b\x67\x81\x67\xe5\x9a\xcb\x8a\xbe\x19\x27\x68\xbf\x3f\xf4\xf6\x5f\xc7\x93\x44\x5e\xac\xdd\xf7\xaf\xaa\x2b\x56\xd0\xb3\xf7\xf9\x26\xe7\x2c\x81\x02\x24\x28\xf0\x7c\xcb\xab\x1b\x1a\x7b\xf3\x67\xb8\x3e\xea\xb3\xb7\x5b\x30\x7a\xf4\xac\x38\x3a\xa6\x3d\x93\xc3\xb7\x1c\x13\x8c\x1d\x46\xea\x19\x83\xba\x2e\xb4\xf6\x6c\xc9\xed\x31\x12\xa8\x3d\xe5\x6c\xf4\x9c\x0a\x1f\x73\x99\x1c\xb8\x32\xec\x4f\x15\x4d\xf1\x64\xa5\x11\xed\xdc\x8b\xda\xb8\xe6\x7c\xa5\x3f\x8a\x89\xae\x8c\x1f\xd9\xda\xdf\x47\x9a\x91\x98\xd1\x29\x35\xa7\xc9\x62\x04\x59\xd5\x7e\x1b\xbd\xc2\x9a\xff\x06\x7c\xbd\xae\x00\xee\xf1\x90\x3e\xda\x9a\x2c\x16\x6f\xdb\x20\xf3\xc0\x72\x8e\xab\x32\x4b\xe0\x4f\x97\xbf\x3e\x09\x88\x9e\x18\x0b\xce\xae\xaf\x25\xf3\xd2\x2b\x07\xae\xe5\xf1\xea\x5c\xfe\xed\xa3\xb5\x79\xc5\x64\x65\x2d\x2e\x03\x4f\x98\x68\x92\xe7\x7f\x3c\xf1\x0e\x58\xbb\x38\xad\xe9\xcd\x55\x41\x81\x37\x06\x50\x46\x14\x82\x14\xeb\x21\x2d\xd7\xd5\xc7\x77\x3f\x7e\xb0\xbd\xca\x12\xbf\x87\x09\x86\x2f\xf5\x8a\x41\xc5\xf4\x8b\xe0\xf9\x4a\x80\x5d\xe3\x19\xbf\xae\xc1\x14\x06\xc2\xac\xf1\x55\xc1\x15\x29\xc7\x37\xd5\x9a\x16\x35\xae\x49\x39\xf6\x9c\x9c\x70\x43\xba\xad\x7b\x4d\xcb\x5d\x5d\xe3\xe1\xc4\xca\xac\xcd\x78\xf9\x89\xd2\xdd\xf7\x6a\x6f\x3a\x4f\xbc\x9f\xf2\xa2\xa1\xb5\x94\x08\x1a\x39\xa7\x9e\x37\xce\x21\x81\xcf\x1f\x54\x7c\xe3\xe8\x28\x05\x6b\x46\x4a\x60\xb9\x1a\x5e\xbc\xac\x78\x1c\x7d\xeb\x41\xe3\xe4\xb7\x17\x33\x7e\x7e\x31\x9d\xc8\xf9\xb9\xf0\x8d\x94\xe7\x17\x71\x33\xa5\x08\x66\x07\x59\x37\x50\xd3\x63\x3c\xa7\x0b\x13\x2a\x56\x22\xe8\x20\xab\x9f\xad\x04\xbb\xa5\xff\x8c\xbd\xf4\x4f\x5b\x75\xf5\xef\x2b\xb6\xe2\x55\xc1\xae\x4c\xc8\xd5\xb0\xb1\xa3\xf9\x01\x12\x70\x82\xef\x40\x9a\x66\xc3\xcc\x0f\xee\xa9\x91\x4b\x1e\x62\x02\xed\x6c\xcd\x3b\x4e\x77\x39\xa7\x9e\xd3\xa6\xdb\x55\x18\x46\x52\x6f\xf3\xa2\xa8\x3e\xbf\xf8\xb9\xc9\x0b\x94\xd5\xb8\x51\xf2\xbe\xdf\x5f\xa4\xa6\x96\xd3\x55\x75\x5d\xb2\x5f\x62\x12\x76\x6d\x00\x07\x35\x37\x16\x06\xf8\x1d\x18\xa8\xab\x11\x40\x12\xbd\x16\x9e\x95\xeb\x1f\xab\x3c\x96\x54\xf7\x1f\x6c\x48\x57\x0c\xed\x81\x79\xde\x22\x89\x39\x92\xdf\x80\x93\x05\x30\x99\x7c\x0c\x12\x1d\x5d\xe3\xfb\x55\xc3\x39\x2d\x85\xf5\x40\x9b\x82\xee\xd4\x40\x2a\xa2\x2c\x31\x6d\x77\x0b\x26\x08\xeb\x47\x92\x4b\x7d\xe0\xab\x8e\xd9\xf5\x50\x69\x2b\xec\x21\xcb\xfe\x1e\x2a\x6a\xfc\x20\x6c\x2f\x94\xcf\xdf\x29\xbd\x4f\xd0\x69\x0c\x75\x3f\x74\xe1\x41\xae\xe1\x20\x2b\xb0\xab\x8a\xbb\x0d\x2b\x7c\x37\x2e\xc3\x1d\xfc\xca\xa2\xe7\xaf\x73\x6f\x1f\x80\x68\xdd\xe6\x35\x4c\x61\x94\x23\x56\xdb\x17\xa6\xdb\x94\xd3\xa2\x54\xfc\x36\xec\xa6\x6c\xf1\xbe\x0f\x2f\x8c\x20\x77\xf7\x59\x99\xa6\xac\x4f\xc5\x15\xce\x77\x29\x65\xb6\x82\xfd\xe2\x53\x86\x38\x18\xeb\x11\x4a\xe2\xe3\xb3\x2a\xc2\x1c\x0a\x81\x7e\x82\x59\xaf\x2e\x85\xf8\xdf\x39\xa2\x26\xad\x85\x17\xb7\x6e\x7c\x86\x0c\x24\x4b\x85\x0d\xd0\x60\xac\xf7\x26\xc5\xbe\xd7\x1b\xbd\xaa\xcc\xbf\x26\x04\x9e\xdf\xfb\x5e\xc6\x55\xbb\x40\x2a\x6b\x85\xa1\xb5\x2f\x2b\xde\x5d\x3a\x1c\xa6\x14\x0a\x57\xe0\x10\xa9\xe1\x5a\xc2\xe6\x3a\x0b\x13\xce\x49\x35\xaf\x5c\xb2\x14\xf3\x1a\xd7\x1d\xce\xdd\x4b\x3d\x61\xe2\xba\x9d\x13\x0b\x1f\x11\x8b\x5d\xe9\x6e\x31\xf9\x44\x57\x07\x38\x03\x10\xed\x78\xe9\x62\x31\x39\xae\xec\xb6\xb0\xb9\xd3\x6b\x50\xa5\xe5\xc8\xbb\x35\xf5\x3d\xc3\x01\x67\x76\xc8\x14\x91\x64\x31\x22\xe9\x4b\xe2\xca\x35\x58\xf9\xad\x80\xfe\xc0\xa3\x2b\x7a\x96\xbc\x22\x8e\x12\x1d\xfd\xc2\x2f\xd3\x21\x5e\x86\xfc\x1e\xf9\x2c\x42\x7d\xa5\x8c\xf4\xc0\x57\xb2\xc8\xc9\x44\xcf\x0f\xa7\x3a\x4d\x89\x10\xa5\x4e\x0f\xc0\xa6\x42\xfd\xc0\xa4\xbc\xca\x77\xc7\x20\x52\xb7\x79\x7d\x90\xd8\x40\x25\x10\x42\x4c\x21\x22\xb7\x16\x81\x35\xb0\x8f\x6e\xaa\x3e\x80\x6c\x7a\xa8\x9b\xd3\x5d\xf7\x05\x7b\x05\x55\x3a\x84\x12\x21\x5c\xda\xbc\x1c\xb2\x1d\xe5\xa6\xd7\x6b\xc8\xe6\x12\x50\x3d\x0a\x61\xb7\x62\x3d\xb0\xe2\x90\x8a\x82\x9e\x19\xa4\xe4\x29\xb7\xe0\xa2\x66\x66\x0f\x46\xb7\x9e\x10\x5b\xf8\xc8\x45\xec\x0e\xcb\x9d\x2f\xed\x9d\xe8\xea\x9f\x26\x23\x95\x3f\xe5\xf4\xce\x41\x08\xe3\x41\x47\xf4\xc8\x7d\xd9\xbd\x1e\x4f\xd9\x7c\x25\x99\x0c\x42\x35\xd2\x61\xcc\xbb\xb6\x73\x97\x76\x76\x6b\x9c\xc1\xfe\x76\x12\x0d\x75\x9f\xf8\xa1\xee\x93\x85\x0a\xed\xe8\xa3\x5c\x7c\x7b\x11\x86\xd5\xeb\x9e\xc3\x06\xa1\x5f\x76\x05\x5b\x31\xa1\xd0\x83\x87\x17\x1a\xac\x02\xb2\xb4\xeb\xec\x04\x63\x5a\x42\x3a\xbc\x2a\x5f\xb3\xf2\xfa\xbd\x94\xf6\x73\x41\x6b\xe2\xe9\x54\xc4\x81\x32\x06\xe8\x04\xd2\xc6\xd4\x16\xb2\xb8\xda\xc9\xf1\xd6\x44\x1c\x3b\x89\x3c\xbc\x3d\xbc\xbb\xbb\xc2\x8d\xca\xac\x59\x90\xe4\xc9\xb2\x29\x9b\x9a\xae\x97\xeb\xe6\xe6\xe6\x6e\x49\x39\xaf\xf8\x72\x97\x8b\xad\xba\x50\x96\xa0\x14\x7e\x32\x85\xe7\x09\x5c\x99\x90\xc7\xbf\x52\x38\x54\x1c\x4d\x19\x40\xeb\x55\x84\xcb\x4a\xd1\xb4\x22\x7c\xbf\xbf\x6f\x8f\x0d\x3c\x4d\xb3\x5a\x43\xb1\x8f\x92\x65\xa1\xde\x26\xf8\x5e\xca\xc6\xc2\xc2\x3a\x4e\xab\x71\xf8\xa0\x45\xd8\xfb\x4c\x75\xe8\xc1\x8f\x30\xa8\x67\x8b\x16\x21\xdc\x58\x6c\x34\x80\x77\xc8\x0d\x1a\x7c\xf7\x13\x14\xcc\x31\x1a\xd4\xd9\x0a\x27\xa6\x97\xb2\x0f\x2b\x9c\x98\xd6\x4d\xed\xb8\x51\x20\x89\x2b\xd7\x47\x5c\xe1\x95\x65\x01\x32\xe3\x92\xed\xde\x02\x65\xda\x35\x5d\x02\xe8\x5f\xef\x5e\x4e\xbc\x81\x81\x4a\xd1\xdd\x1a\xd3\xf2\x9a\x95\xf4\x87\x72\x53\x19\x5c\x39\xa1\xe3\x8a\x0e\x14\x1b\x6f\x9a\xa2\x90\x83\xd4\x9b\x7a\x74\x81\x70\x17\x6c\x4e\xf2\xf3\xc5\x4b\x5d\x6e\x9a\xb7\xf8\x50\x93\x03\x06\x58\x71\x35\xe5\x2a\xed\xae\x86\x04\x60\xe1\xdc\x8d\xf3\xf5\x1a\x6e\xc0\x97\x15\x7f\x01\x1f\x67\x02\xd7\xce\x39\x9d\x79\xf9\xfa\x54\x66\xa2\xe4\x7b\xba\x61\x25\x2b\xaf\xcf\xf2\x33\xd8\x7f\x67\xb6\x09\x7e\x26\x99\x65\x78\x66\x31\xdb\x1b\x51\xb3\x35\x3d\xcb\xcb\x33\x55\xfd\x19\xab\x21\x63\x1f\x88\x92\x74\x2d\xe7\xcd\xa8\xf9\x95\x52\x5c\xfe\xa1\x02\xef\x87\x24\x64\x83\x8c\xc8\xda\x39\xcf\x93\xf0\x04\x6a\x14\x1d\xb9\x4e\xb0\x7e\x66\x7d\x0f\x58\x66\xf4\x57\x81\x6c\x18\x34\x60\x4c\xe5\xc0\x7b\xeb\x9e\xe9\x5d\x05\x76\x04\xec\xa3\x5c\x84\xb9\xc0\xa8\x43\xba\x25\xbf\x43\x22\xa3\x73\xbe\x40\x63\x51\xc9\x3f\x46\x17\x0b\x2c\xff\xf9\x66\x81\x00\xaf\xe6\xa6\x6a\xca\x10\x55\x46\x71\xc3\x5f\x09\x2b\x72\xdf\x62\xcd\x7c\x9a\x85\xe6\xb4\xae\x8a\x5b\x15\x88\xf5\x2a\xdf\x65\x02\xe1\x86\x88\x01\x1b\xe7\xf2\xb4\x37\x44\xfe\x81\x2c\x9c\xa5\x3e\x7a\x0d\x88\x7e\xe1\xd1\xdb\x10\x05\x37\x2e\xb0\x41\xc4\xf8\x61\x3d\x2d\x47\x23\x0c\x43\x78\x5b\xb1\x52\x4c\x57\xd8\x6c\xe5\xe9\xaa\xc5\x5b\xa2\x50\xfe\x06\x06\x23\xde\xa2\xe4\x48\x3e\x75\x0b\xe6\x8f\x46\xb5\xbd\x3e\x85\xdc\x35\x21\xb9\xab\x4c\x90\xc4\xf0\x02\xdf\x90\x03\xe7\x61\x70\x93\xa6\xd9\xce\xa6\xc4\xef\x17\x20\x1b\x8d\x11\xae\x89\xcf\x0a\x87\x07\xcf\x95\x9c\x6e\xc2\x53\x87\x24\x01\xba\x0d\x09\xd0\x6d\x87\x00\xad\x5b\x84\xab\x31\x00\xfa\x2a\x32\x74\x8b\x70\x41\x6e\x3d\xea\x83\x77\xc6\xe1\x27\xd2\xb7\x1b\xe5\x43\x76\x77\x94\x18\x24\x52\x88\x61\x5a\xdc\x6f\xf1\xc6\x51\xa4\x03\x37\x17\x4c\xdb\x35\x69\x7c\x12\x7f\x45\xfc\x6a\xdc\xf3\xe5\xd1\xa6\xaf\xa0\x39\x4d\x39\xaf\x7b\x24\xbf\xbb\x89\xda\x07\x89\xd0\x35\x5e\x22\xac\xba\xa6\xe7\xb1\xd3\x31\xfd\xf4\x84\x6e\xe1\x93\xbb\x85\xed\x52\x9d\xd0\xbb\xf6\x81\x32\x2b\x6c\x52\x8b\xa8\xdc\xb9\x78\x85\x0b\xd4\x45\xad\xc9\x3b\x1c\x61\xc4\x3b\xd5\x5f\x54\xb0\x25\x29\xc6\xa5\xcd\x28\x4a\xd3\x21\x80\x75\xcd\xcc\xc3\x51\x32\x4e\x46\x62\xea\xd9\x11\xeb\x20\x5f\xe3\xd7\xa1\x0b\xdd\xb7\x38\x82\x4c\xf4\x3b\xaf\xd0\xef\x16\x2e\xa7\xbb\x1e\x52\x97\x6c\xf4\xcf\x3e\x07\x9a\x20\x25\x4b\xe5\x96\xa4\x8d\xa0\x3a\xb1\xa2\x7a\x88\x19\x2e\xc1\xca\xac\x6f\x18\xdf\xde\x52\x3d\x82\x45\x56\x47\xa9\x4e\xf0\x7c\xe1\xfb\x2a\x3f\xa2\x86\x28\x30\xc9\xa3\x42\xac\xe3\x5e\x11\x87\x4c\x51\x65\x98\xdc\x78\xa3\x40\x0c\x5e\xca\x0b\xd8\x13\x16\xae\xf2\x9a\xad\x12\xa4\x08\xcb\x80\x13\x3e\xa6\x5f\x04\x2d\xd7\xd9\xbd\xf1\x40\xed\x07\x96\x27\x99\x19\xcb\x5a\x01\x8b\x9f\xb9\x0a\x51\x62\x22\x64\x4b\xd2\x11\x4a\x9c\x52\xc0\xa6\x8b\x28\x31\x97\xeb\xe5\xf5\x0d\xf2\xb6\x1d\x84\x60\x00\x23\x70\x4c\x26\x42\xf7\xa5\x97\xee\xb1\xdb\x32\xc4\x04\x6a\x49\x89\xa3\xc1\xc4\xea\xce\x64\x5f\x4f\x5d\xbf\x10\x61\xe5\xeb\x84\xf0\x48\xe7\x7f\x05\x69\x46\x09\x29\xac\xf6\xf5\x6b\xe6\x9a\xba\x55\xe6\x1a\xfa\x18\x71\x10\x6e\xc9\x73\x56\x6e\xaa\x7f\x60\xbb\x6b\xf4\x9a\xc8\x06\xf7\xd5\xae\x5f\xef\x33\xf4\x88\xa8\xdd\x8e\x18\xbb\xa6\x3b\x4e\x57\x72\xf7\x9e\x6f\x68\x2e\x1a\x4e\xeb\x23\x01\x39\x9a\xe8\x60\xad\xbe\x59\xfe\xfd\x61\x78\x9d\x4e\x68\xf0\xe3\xc9\xc2\x29\x88\x39\x87\xb6\xda\x7b\x43\xe9\xc8\x0e\x83\x1e\xe6\xfb\xee\xf3\x88\xe6\x86\x3a\x02\x49\x08\xd9\xb5\xde\x29\xa3\xe3\x77\x6f\x3e\x7e\x78\xf1\x6e\xf9\xe2\xa7\x17\xaf\x3f\x2c\xbf\x7f\xf1\xf6\xdd\x8b\xe7\xcf\x14\xbe\x97\x7e\xb7\x7c\xfe\xe6\xf5\xeb\x17\x1a\xf3\xcb\x93\xf8\xd7\xc0\x08\xfd\x99\xe6\x9f\x5e\xe5\xbb\x00\x7c\xd8\xa4\x9b\xb5\xf6\xf0\xa7\x17\x28\x4d\x6d\x6a\xd9\xfb\x56\x32\x1e\x10\xcc\x69\x61\x24\x0d\x88\xe8\x64\x31\x60\x90\x25\x7b\xc6\xe7\x6c\xa1\xa0\x01\x2d\x8e\xc2\xf4\xc9\x92\xad\x7f\xa3\x93\x05\x31\x88\xd4\xeb\x16\x4a\xd8\x3a\x31\x82\x1a\xb7\x6f\x1c\x4e\x04\x52\x74\xc4\xea\x33\xdb\xd8\x20\xd7\x2a\xa7\x0c\xbe\x8d\xab\xfb\xab\x47\x7b\x9a\xe9\x8c\x28\x52\xe0\x06\xf7\x32\xde\x35\x02\x54\x2e\x86\xaa\x8a\xc5\x50\x2d\x6b\xea\x14\x91\x7d\xa7\x2c\x6b\x2a\x34\xea\x0a\xc9\x5d\xbb\xf2\xcb\x2c\x16\xfa\xaa\xc3\x7e\x96\xa0\xc2\x83\x8b\xf8\x60\xc6\x60\x50\x11\x9b\xe5\xf3\x1e\x11\xaa\xff\x18\x70\x8b\xa7\x97\x71\x92\x51\x22\xe4\x82\xeb\x97\xfb\xfd\x7c\xe1\x50\xf4\x98\xb7\x5e\xca\x31\x6c\xf9\xf3\x6e\xfc\xf3\xae\x86\xac\xf1\x9e\x8d\xd7\xec\x0d\x0d\xf2\x60\xf3\xc5\x8c\x46\xb9\xc2\x7a\xa0\xa0\xba\x06\x9e\x86\xcf\xf3\x85\xcb\xc8\x42\x26\x97\xb5\x43\x25\x1c\x8d\x6a\x93\x8d\x85\xcd\xeb\xc5\x20\x01\x53\x6a\x02\x49\x00\xea\x55\xb5\xa3\x52\xbc\x91\x0c\x92\xa8\x49\x05\x89\x89\xf3\xf1\x32\x07\x25\xf6\x9f\xde\x6a\x84\x90\x58\x56\x24\x6b\x21\xec\x94\xcd\xa8\xaa\xd6\x66\x1a\x05\x1b\xae\x50\x93\x0d\x6e\x6f\xac\xbc\x8e\xd5\xdc\xad\xb7\x57\x36\xa3\xe3\x86\x17\x7f\xa4\x77\x50\x97\xba\xab\xba\x36\xf4\x13\x42\x9d\xa1\xfe\x69\x32\x52\x19\x93\x87\x06\xe1\xf3\xbe\xf5\xb5\xa6\x87\xec\x9f\x6a\xb0\xce\x52\x24\xd7\x6c\x56\xce\x57\xe3\xf7\x1f\x9e\x7d\x78\xb1\x7c\xff\xd7\x57\xdf\xbd\xf9\x71\x31\x3d\x5a\x07\x88\x17\x38\x27\x3c\xdc\xa7\x4a\x97\x21\x7c\xe0\xfc\x4a\x8f\x72\x9e\x2f\xa4\x38\x7a\x1d\x98\x1f\x7c\xd3\x75\x83\xc6\x9c\xae\x9b\x95\x8f\x69\xec\xb9\x7c\x41\x22\xfd\x66\x2e\x16\x98\xb6\xb8\x46\x2a\x1c\x4f\x93\x44\x77\xaf\xfe\x91\x46\x11\x61\xe9\x81\xe2\x0f\x24\x71\xd6\x63\x8f\x7c\x08\x30\x33\xb2\xd2\x35\xfd\xea\x6a\xa3\x9f\xda\x8a\x97\x5a\xee\x78\x59\xf1\x68\xc5\x5e\xd4\x4e\x70\x14\x3d\x7b\xd6\x38\x19\xd9\xed\xb6\xdf\x3f\x54\x70\xc7\xab\x1d\xda\xef\xef\xdb\x56\x7b\xc8\x08\xc7\xdd\x1d\x1b\x50\x0b\x1e\x10\x91\xd0\xa0\x35\x85\x9d\xa6\x44\x5f\xed\x68\xa2\x1d\x80\xdc\xab\xc4\xbc\xd2\x29\x22\x7f\x62\xf4\x73\xad\xc3\xee\xcc\xb5\xfc\x8e\x76\xd3\x1b\x06\x84\xcc\xdd\xcb\x03\xee\xa3\xf8\x44\xa9\x94\x92\x8b\xc7\xac\x54\xa7\xc0\x34\xdf\x19\xaf\x32\x7a\x41\x2f\x68\x29\x42\xd7\xef\xb5\xb2\x6a\xc8\x1a\xe7\x0b\xfd\xf9\xc1\x81\xba\x61\xaa\xcd\x62\x7e\xfb\x15\xca\x37\x87\x9e\x3f\xe8\x11\x15\x51\x94\x3f\x0e\x0e\x5a\xef\x22\xda\xf1\xae\x89\xf8\x04\x41\x5c\xeb\xe6\x30\xf8\x0e\xa4\xa2\xcc\xc7\xb0\x6a\x37\x74\xcd\x72\xe1\x11\x99\x7f\x56\xf7\xed\x7d\x74\xb4\x63\xb8\x22\x6c\x3e\x59\xe0\x9c\x30\xad\x9f\xbd\x40\x97\xbd\x31\x1f\xea\xb9\x1d\xff\xbc\xb2\xa6\xe3\x1c\xe9\x38\xde\x0d\xa7\xb1\x60\xba\x87\x5c\x50\xe0\x33\x03\x8b\x9b\x1f\xf2\xd2\xfa\xa7\x2f\xb3\xd7\xee\xe3\x56\xb9\x93\x76\xd6\x4f\x90\xd1\x3d\x95\xf2\x7b\x5f\xc5\xaa\x1d\xa2\x3a\xa5\xa4\x6c\xc9\xc0\xbf\x8d\x6d\x32\x4e\x2a\xfd\x45\x5f\xd2\xcc\x18\xc2\xc3\xce\xc7\x46\xfb\x1e\x39\xf1\x09\xb2\x68\xff\x52\x4e\x9b\xb9\x22\x39\x4e\x76\xde\xfd\x5e\x27\x68\x3a\x5f\x5c\x76\x6e\x1f\x11\x85\x3a\xa6\xe3\x7c\xbd\x36\x89\x53\x32\x31\x02\x7c\x31\x4c\x15\x8a\x98\xbe\xea\xc1\x74\x0c\x99\xe4\x70\xa7\xb7\x84\xb7\xb7\x2e\x41\x7b\xaf\xbb\x05\xd1\x6e\x57\xb5\xc2\xf9\xf7\x49\x5a\x31\x06\xad\xfa\x9b\x5b\xca\x39\x5b\xd3\x5a\x76\x11\xd6\x0b\x58\x40\xa0\xe6\x30\x16\x14\xb8\x7e\x61\xd1\xbd\xdd\xd5\x4a\xfc\x50\x6e\x2a\xad\x11\xde\xea\x8d\x71\xe5\x40\xec\xf0\x9a\xc8\xef\xde\x3e\x7b\xf7\xec\xd5\x7b\xf3\xe1\xa0\x19\x07\x93\xd6\x9f\x1e\xeb\x9d\xd5\x8c\x6f\xf2\xdd\x9c\x2e\x06\xc2\x08\xb9\x6b\xff\xb8\xae\xf2\x62\xd5\x14\x10\x41\xb0\xda\x52\x79\x47\x65\xda\x5c\xd6\xe1\x29\x84\xe2\xec\xb0\xa9\x46\x9e\xe6\xad\x61\x85\x98\x24\xd4\xe3\xa6\x5c\xd3\x55\x05\x0a\x0f\x2d\x4d\x81\x17\x64\x88\x02\x43\x71\x85\xb4\xea\x63\x47\xae\xb5\x09\xa8\x3b\x31\xee\x13\x5f\xe2\xe0\x78\xa7\xb5\x81\xb0\xef\x7b\x17\x85\xf6\x84\xf5\x20\xae\xac\xda\xb0\xde\x56\x4d\xb1\x7e\x47\xcb\x35\xe5\x3a\xb7\x32\x87\x1f\x1f\xe8\xcd\x4e\x0e\x1f\xdc\x87\xe0\xbe\xb3\x5b\x27\x66\x24\xef\x64\x1c\xf5\xd7\xe9\xf0\x84\xf2\xe8\x84\x72\x3d\xa1\xdc\x4c\xe8\xa0\x54\xfb\x47\xcd\x26\x02\x0e\xe0\x8a\x6e\x2a\x4e\x5f\x49\x46\xbb\x77\x59\x6d\x24\x2d\x8b\xbd\xe1\x74\xcd\x78\x27\x8a\x46\x3e\xd7\xd2\x93\x75\xf9\xed\xf1\x0a\xda\xe7\x42\x55\x6a\x8f\x0b\xfd\x02\xb0\x0b\x37\x61\x53\x16\xe1\x4f\x8b\xdc\xd1\x7b\xfe\x26\xdf\x25\x4e\x62\x69\x40\x20\x45\x20\xd1\x06\x28\x83\x52\x84\xd8\xef\xeb\x34\x85\x12\x26\xe9\x63\x01\x7b\x57\xac\xb6\xd9\x93\xff\x9b\x8d\xff\x07\x02\x99\x15\x0d\x34\x98\x7d\x01\x39\xd9\x8a\xf9\x85\xbc\x4f\xe8\xbc\x59\xc8\x0d\x39\x9c\xb4\xb2\x76\x95\x7b\xad\x42\x96\x37\x0b\x78\x61\xaa\x33\x77\x68\x43\x0d\x18\x9f\x9e\x5e\x18\x1c\x77\x23\xd1\x1e\x39\xab\xf3\xf0\xdb\xf3\x8b\x85\x9d\x27\xff\xda\xd9\xb0\x72\x0d\x53\x99\x31\x9c\x77\xd9\xd4\x03\x11\x15\x60\x29\x83\x6f\xd4\x06\xb3\xb2\x49\xd6\xa1\xdc\x14\x69\xce\xc8\xb6\xd2\xd3\x95\xb9\xdb\xa6\xbb\x34\xb5\xa8\x38\x4d\x10\x82\x8f\xed\x8d\xe3\xa3\xd6\xe5\xdd\x23\xd6\x3b\x0c\xd4\xd3\xbb\x09\x48\x1c\xaa\x8f\x38\xc5\x5a\x30\xd4\x1d\x0c\x2e\x97\x28\xff\x18\x15\xaa\x4b\xc2\x63\x82\x96\x73\xa4\x2b\x3b\x97\x5b\x9a\x66\x94\x74\x1f\x22\xcc\xe3\xbe\x1f\x54\x83\x95\x74\xef\xb5\x78\x0e\x92\x5e\xf7\x1c\x6a\x93\x85\x52\x05\xcc\x26\x64\x4f\x4a\x4c\x9e\x14\xf8\xe0\x60\xfd\x8b\x42\x13\xa8\x03\x6c\xcb\xec\x51\x62\xa5\x75\xd0\x20\x8a\x0a\xe5\x57\x85\xbf\x72\xe5\x6c\x09\x94\x6f\x4a\x2d\x12\x5d\x77\xd2\x15\xbc\x9b\x3a\x75\xa5\xb9\xe2\xab\x34\xad\xdc\x6e\xdc\xef\x75\x4a\x04\x7d\x2c\xd4\x86\xac\xbb\x39\x93\x72\xeb\x57\xd4\x2d\x39\xcf\x17\xe6\xe8\x40\xcd\x3e\x21\x52\x14\xcd\xa7\xd5\xf1\xd4\xca\xb2\x44\x86\x5c\xe9\x28\x5b\x54\x12\x48\xa8\xd4\x61\xe2\x06\xe5\x7e\xdf\xcf\x2c\x22\x87\x35\xe3\x84\x4e\x33\x2d\xe2\x08\xdd\x7e\x94\x95\x12\x84\x22\xd4\x73\x6e\xc5\x81\xab\x89\xa7\x99\xec\xee\x03\x8a\x06\x25\x24\x4a\x2c\x25\x03\x5c\xc9\xed\x2d\xff\xf5\xa3\xf1\x9e\x5c\xe3\x64\x9c\x48\xf1\xbd\x1c\x57\x8d\x28\xa8\xc0\x45\xb0\xe1\xf1\xca\xf8\xb7\xa3\x41\x23\x29\x6a\x72\x93\xb3\x32\xc1\x62\x96\x55\x80\xe8\x67\xfa\x9a\x13\xda\x19\x4c\x85\xa6\x59\x15\xc6\xf0\x9a\xe6\x72\x52\xa1\x41\xb1\xdf\x67\x05\x11\x33\xda\xe3\x28\x37\xf1\xf3\x55\xa1\xe9\xc1\x37\xfb\x7d\xbf\x1a\xaf\x7b\x2a\x4f\x7a\x37\xcb\x79\xa1\x26\x71\x4b\x8a\x41\x41\x0e\x54\xbd\x45\xed\x2a\x4d\x0b\x10\x0d\x0d\x11\x5a\x69\x7b\x37\xde\x79\x5f\x99\xc1\x4f\x93\x51\x8e\x06\x75\x9a\x66\x6b\x72\x97\x51\x84\xd2\xb4\x26\x84\xac\x5d\x67\x60\x4d\x74\xa6\x22\xa5\xcd\x24\xf7\xa0\x53\x9f\x6e\xb0\x5c\xa0\x69\x8d\xd5\x5a\x4c\x1b\x0c\xd6\xfa\x0a\x7b\x5d\x2a\xb0\x6d\x69\x27\xc7\xb8\x14\xd5\xee\x47\x7a\x4b\x0b\x29\x60\x9b\xed\x6c\xdd\x6b\x6f\x54\x86\x0e\x5c\x62\x8e\x05\x1a\xac\x95\x4b\x1d\xa8\x9c\xc0\x54\x57\x21\x05\x37\x58\x95\x2b\xda\x61\x2d\x93\x65\x4d\xc5\x1b\xe8\x48\xad\xa5\x5c\x56\xaf\xaa\xb2\xa4\x2b\xfd\x38\x46\x8c\x00\xf0\xa3\x9f\x4f\x7e\x26\xe4\xa6\x87\xc8\x45\xb5\xcd\xb8\xb5\x86\xca\x7e\xcf\xfc\x1f\x91\x1d\xa3\x49\x0e\x42\x58\xa8\x7c\x94\x6a\x13\x42\x77\xbb\xbd\x02\xbf\x44\x2f\x31\xc8\x51\xda\xe6\x3b\x92\xc2\x45\xac\x91\xf5\x0c\xa0\x9c\x05\xd8\xd3\xfc\x56\xbc\x35\x60\xf2\x8e\xcc\x8e\xbb\x97\xee\x0c\xad\x4f\x53\xc8\xe0\x13\xec\x0a\x61\x77\x85\xeb\xbd\xb7\x62\xb1\xae\x69\x5f\x26\xd9\xc3\x41\xa5\xe7\x96\x80\x23\x4e\x05\x87\x5d\xa3\x32\x02\x44\xa0\xde\x64\x95\x4a\xe3\xa5\xb6\x9a\x2a\x65\xf6\x9b\xa9\x41\x6f\x3b\xd0\xe1\xfa\x7b\xcf\x24\x82\x32\x1b\xd0\x40\xaa\x9c\xb6\x85\x50\xeb\x69\x58\x14\xb2\xd7\xb1\x18\xfe\x88\xe2\x28\x78\xd4\x37\xe4\x79\x73\x35\x70\xa1\xb5\x2e\xa1\xcc\xb7\x13\x79\x2a\x43\x2d\xcf\xa9\x5d\x97\x8c\x73\xc3\x8a\xb5\xdd\x29\xaf\xa8\xc8\xd7\xb9\xc8\x43\x8e\xb8\x8a\x82\x41\xde\xb9\x9b\x3f\xb6\x29\xbe\xd2\xb6\x0f\x49\x71\x86\x26\x45\x55\x37\x15\x8e\x9f\xc2\x1d\x92\x9c\x97\x7a\x0f\xcb\xed\x61\x83\xe2\xe6\xe5\xc8\x26\x52\x6b\x33\x90\x73\x8f\x29\x86\x3d\x8e\x15\x9f\x5f\xb8\xa8\x9c\x34\xd5\x12\x9e\xf3\x5e\xb8\x56\xec\x3c\xf7\x43\x8c\x24\x03\xd3\x7d\xb0\xdf\x6b\xe5\x36\x23\x1d\x71\x46\xb1\xd4\x61\xe9\x39\x73\x29\x8f\xfb\xaf\xec\x1c\x54\x1d\xa1\xc2\x7e\x22\x1b\xf0\x8c\xb5\xb3\xde\x93\x69\xd6\x7b\x44\xee\x5b\x1c\x30\xfc\xbd\x12\x38\xe8\x0b\x92\xb3\x18\xd5\x01\xd7\x46\x6e\x53\x33\xd8\xab\x07\x45\x1e\xb5\x99\x5d\x13\x0c\xe1\x05\x91\x71\xcb\x1e\xd6\xa1\xad\xcd\x19\x6e\x54\x0a\xd7\xda\x99\x5c\x1a\x23\x0b\x41\xe6\xd6\x15\x29\x40\xf0\x87\xdc\x9f\x83\x7c\xae\x7e\x2d\xc8\x6a\x56\x99\xbf\xa7\x57\x99\x4d\x6d\xa0\xc4\x6f\xc3\x59\xe5\x6e\xbd\xaf\x3c\xad\x7c\x90\xf0\x3b\xa3\x48\x25\x4a\x7e\x86\x32\xaa\x95\x74\x08\x4d\xbd\xad\xb2\xb4\x36\x2d\x6a\x19\x4a\xe7\x3e\xe1\x5c\xd3\x06\x11\xb7\x1a\x9d\xab\x8f\x2b\xf7\x19\x2b\x2c\xb5\xb7\x3a\x6e\xe1\x79\x91\xd7\x75\x76\xcf\x54\x00\x8e\x76\x66\x98\x0e\x27\x2d\xc2\xb7\x5e\x68\x6d\xed\xd9\x6e\xcd\xa7\x59\x35\x7e\x06\x1d\xd4\x40\x1e\xb8\x72\x71\x62\xdd\xa4\xa6\x47\x31\xee\xef\x5b\xec\xb3\x46\x1a\xe2\x1e\xec\x6f\xea\xef\x90\x73\x51\xcf\x40\xa0\x9a\xc2\x9a\x9a\xf8\x29\x94\xdd\x77\xd2\x0d\xdc\x1a\x10\xf7\xbe\x34\xd1\xe1\x25\x7b\xa2\xb4\x3e\xe6\xa5\xf1\xf2\xb1\x98\x49\xf7\x52\x82\x9b\xfa\x8e\xcd\x46\x41\x11\xba\xb2\x00\x33\xe4\x98\x79\x23\x19\x97\x92\x7f\x94\x93\xae\x44\xc1\x8c\x83\xd9\xae\xf6\xfb\x4d\xb5\x72\xab\xec\xe4\x5a\x30\x09\xee\x6d\x12\xe0\x16\xe1\xe5\xcf\xbb\xee\x24\x74\xc7\xaf\xc1\x68\x70\x7e\x92\x7e\xb2\x8e\x8b\x4b\x0d\xa9\xe3\x0c\x60\x8e\x4c\x2e\xe0\xb8\x89\x25\x41\x78\x15\xa4\x61\x2b\x5c\xa4\xe6\x40\xe5\xd6\x55\x16\x79\x57\x47\xd3\xa9\x00\x48\x20\x8d\xe8\x41\x4a\x79\xb0\x19\xb9\xf7\xcf\xde\x74\x38\xc1\x72\xcb\xca\x7f\xc1\x96\x29\xff\xc8\x6b\xb9\xa5\x1d\xf9\xb3\x5a\x11\xda\x15\x98\x0c\x2c\x75\x4e\xee\xdb\xcb\x80\xaa\xe5\x98\xce\xab\x05\xe6\xf3\x6a\x81\x70\x39\xaf\x16\x24\xc7\x4c\xfe\x33\x9c\xd8\xc4\xc4\xb5\xac\x98\x23\x20\xcc\x9d\x8a\x6b\x94\xa6\x43\x36\xaf\x17\xc6\xa0\xdb\xad\xbf\xc1\x7c\x5e\x2f\x30\x95\x45\x70\x39\xaf\x17\xa4\x31\xc7\xb5\x6c\x33\x50\x74\xd9\x88\x2f\x27\x3c\xfb\xa4\x30\x5b\x23\x5c\x68\x07\x82\x15\x38\xbe\x86\xc2\x72\x8d\x73\x84\x29\x29\x8c\x2a\x70\xbe\xc0\x37\x72\x06\x6f\xc9\xdc\x5d\x0d\x77\x87\xe7\xe6\x0e\xa5\x69\xa2\x73\xd5\x99\x87\xc9\x90\x90\xbb\x34\x4d\x14\x1c\x1e\xfc\x32\xbe\x97\x74\x7e\xb7\xc0\x4b\x72\xad\x4c\xca\x92\x2b\x55\xe2\xc1\x67\xe3\x89\xe1\x6d\x24\x49\xa7\x96\x69\x9a\x7d\x86\xb4\x98\xf2\xfb\x17\xe4\x7a\x9c\xd7\x7a\x7b\xc6\x0d\x9e\xd9\x1d\xc2\x5f\x82\x7d\x73\x87\x06\x5f\xc8\x55\xf6\x45\x55\xf1\x9e\x5c\x8f\xe5\x56\x00\x13\x60\x05\x7f\xbe\xd9\xa0\xec\x0b\xc2\x6f\xc8\xa1\x6a\xb3\x2f\xf8\x05\x7e\x8f\xf0\x27\x92\x8f\x92\x69\x32\xba\xc3\xcf\xc8\xfd\x01\x2d\xeb\x34\x6c\x1a\x07\xdb\xf0\x0b\xb6\xb5\x87\x1f\xbd\xf1\x5e\x98\x27\xb0\x61\xdf\x63\x65\xb2\x9c\xbe\xc0\xf2\x5a\x99\xde\xe1\xbe\x2d\x7e\xfa\xa9\x4b\x0c\x73\xac\xb4\x06\x70\xf0\x40\xbd\x39\xfd\xac\x32\xf8\x6a\xe2\xa9\x0e\xc1\xb2\x1d\xdc\xcc\xef\x16\xe4\x66\xfe\x42\xfe\xef\xd3\x82\x3c\xc3\x3b\x25\xe3\x3c\x03\x52\x2f\xff\xba\x33\x17\xd7\xfd\xcf\xbb\x7a\xba\xc3\x37\xf9\x6e\x7a\x83\x03\xb5\xf7\xf4\x16\x2b\x15\xfd\xf4\xde\x98\x12\xa7\x7d\x9e\xad\x24\x37\x73\xba\x50\x56\x49\xeb\x00\xa0\xdd\xd6\x1f\xfc\xc8\xf0\x22\xbd\x6f\x71\xc4\x61\xa1\x54\x2a\xaf\xc0\x36\xf0\xb5\x75\xf7\x9d\x16\x4a\x49\x9c\x5b\x84\x6b\xea\x93\xfc\x5f\x15\x97\xe1\x74\x2d\xd4\x7e\x3f\x84\x58\x75\x56\x7f\xa0\xb5\xec\x27\xca\x4c\xa2\xe3\xcb\xac\xec\xd8\xb7\x64\x8f\xb5\x9a\x11\xa6\x48\x12\x05\xe3\xa9\x64\x91\xc4\xb5\x2d\x2a\x87\x61\x01\xe4\x80\xa7\xc3\x3d\x0b\x20\x11\x94\x72\x5c\x15\x9c\xfa\xb1\xa3\x56\xb5\x3d\xed\xaa\x2b\x8f\x7a\xcd\x24\x68\x7c\x93\xef\x70\x15\x5c\x0d\x14\x19\x2b\xa3\xff\x94\x23\xe3\x47\x53\xf9\x7e\x34\x2a\x8b\x3c\x61\xf3\x6a\x9e\x2f\xa0\xe7\xb5\xd6\x89\xda\x96\xe2\xbe\x04\x59\x8d\x70\xa2\x0d\x91\xa0\xee\x4a\x50\x67\xe2\xfd\xa8\x4b\xab\xec\x52\x86\x4b\x34\xb8\xe2\x34\xff\x64\x12\x62\x0e\x27\x2d\xde\xb0\xb2\x43\x44\x0e\x4c\x08\xdb\x64\x5d\x97\xe7\xbe\xc7\x93\xcb\x59\xeb\x6c\x1f\x0c\x57\xe4\x98\x76\xdc\x5c\xed\x86\x0f\xae\x49\x3e\x5e\x86\x5c\x70\x56\xc9\x3b\x1c\x6c\x2d\x0a\x21\xab\xbe\x8c\x9b\xcf\x72\x5c\x39\xf9\xba\x20\x93\xcb\xe2\x69\x2d\x39\x65\x37\xf5\x56\x2d\x04\xcf\xe7\xc5\x02\xaf\xc9\x56\xf5\x06\xef\xc8\xda\xd7\x8e\xdd\x90\xad\xf6\xc3\x38\x53\xb0\x9f\xe6\x27\xbe\x35\x59\x92\xee\xbc\x0c\xa6\x90\xf2\x3d\x33\x65\xd0\x2c\xbb\xf5\xb6\xce\x0e\x6f\x95\xab\x06\xbe\x23\xeb\x28\xe9\xbe\xc5\xb6\xfa\x2d\x50\x7b\x84\xa6\x37\x33\x97\x0b\xfd\x8e\xd0\xf9\xcd\x02\xa5\x69\x76\xab\x52\xbf\x47\xea\xb8\x8b\xd4\x91\xdd\x91\xed\x38\x4e\xcd\xf1\x2d\xb9\xca\xb6\x21\xf3\x8f\xf0\xee\x80\x37\xc6\xfa\x90\x2b\xc6\xdd\x90\x04\x4d\xa8\x8a\xee\xbb\x02\xde\x9b\xb2\xb8\x4b\xd3\xe1\xc5\x90\x10\x66\x6e\xd9\xf5\x81\x4d\xbe\x45\x2a\x80\x40\x37\x7d\x8d\x5d\xf0\xfb\x60\x39\x63\x64\x38\x99\x42\x52\x8a\x25\x18\x75\x86\x17\xa8\x75\xf6\x04\x33\xd5\xf8\x16\xb5\xbd\x6e\x11\x39\x33\xf1\xd9\x20\xc0\x0b\x0c\xf9\x51\x80\x96\xfd\x5e\x05\x9e\x65\xf7\x2a\xcf\xfc\x1d\xbe\x65\x35\xd3\xe9\xc2\x3e\xd1\xbb\xe9\xcd\x7e\x6f\xd6\xa0\x45\x2d\x4b\x53\x1e\x89\xdf\x57\x7b\xf2\xb0\x0d\xd6\x13\xf6\xf4\xd6\x54\x54\x67\xa0\x7f\x7a\xbb\xf4\x90\xeb\x0c\x4e\xf4\x42\x99\x65\x6a\x11\xf6\x0f\xd0\x78\x55\xd0\x9c\x67\xfa\x8a\x38\xe6\x8d\x7a\x83\xeb\xe0\xed\x7b\xc8\x66\x7b\xa4\x3c\xb9\xaf\xca\x69\xdf\xbb\xee\x08\xe4\x70\xdb\x3a\xb9\xec\x06\xdf\x3b\x2b\xd6\x34\x6a\xf5\x72\x76\xa4\xc7\x58\x36\x94\x1d\xc4\x19\xc8\x28\x9a\x8a\xb6\x55\x38\xc5\x95\xdc\x3a\x2f\x79\x7e\x43\x3f\x57\xfc\x13\x88\x95\x28\xbb\x55\x8c\xd8\x67\x72\xeb\x39\x98\x7f\x7e\xac\xaf\xf6\x23\x01\xb8\xfe\x9f\x7b\x66\xeb\x78\x9d\x23\xe0\x1d\x8f\x4e\xa6\x70\x4a\xd6\xdc\x47\x39\x73\x3f\x36\x17\xec\xe3\x12\xc7\x2e\x35\xc0\xa7\xe7\x8a\xfe\xd5\xb9\x55\xad\xda\xe3\x56\x6e\xfc\x0f\x5a\xfe\x54\xfb\x54\x65\xcf\x78\x5f\x54\x9f\x3d\x37\x25\x76\xe3\x10\x63\xcb\x4a\xb0\xcd\x9d\xe1\x98\xd5\x3d\x9c\x25\x0d\x2f\x8c\xbf\x1b\xd8\x29\x02\x54\x05\xed\xb8\xe6\xa0\x19\x60\x3b\x17\x9e\xd2\x33\x70\x6d\xc3\xc9\x9a\xad\x5d\xeb\x09\x6a\x7d\x35\xa6\xba\xe8\x8f\x7f\xff\x99\x15\x85\x57\x01\xe6\xc8\xd7\x0a\x86\x2e\x86\xd4\x7c\x06\x9a\x15\xf2\x29\x9e\x4b\xeb\x8a\x28\x8d\x92\xa7\xaf\x29\xd8\x8a\xe2\xe5\xaf\xe6\x04\x6e\x71\x79\x54\xe4\xb6\xe8\x21\x4c\x74\x9e\x03\x14\x5f\xa4\xa8\x79\x26\xf9\x6f\xc0\x74\xd0\x8c\x9e\xca\xe6\x96\xa9\xd4\x08\xc2\x23\xb2\x44\xe7\x7f\x97\x0f\x15\xb6\xc7\x1a\x62\x75\x83\x17\x26\x9a\x50\x85\x6c\xd6\x87\x2a\x75\x41\x87\xdf\xdd\xa9\xde\xc4\x0b\xfa\xdb\xc3\x74\xd8\xdb\x1f\x76\x0c\xe0\x3b\xf9\xa7\x86\x36\x74\xed\x2e\x39\x2a\x28\x57\xfb\xae\x96\x9b\x32\x8a\x9b\x53\x39\xa4\xfa\x88\xcb\x7c\x3d\x5e\xb2\x92\xa9\xf9\xe2\x7f\x88\xe8\xf1\xc1\x0b\xff\x3a\x82\xfc\x8e\xb4\x0f\x9a\xca\x4b\x54\xf6\x94\x38\xf1\x99\xf1\x10\xfd\x4a\x6f\x97\x34\x7e\x36\xe1\xc7\x22\x03\x35\xb8\x54\x23\x5c\x91\xa6\x3f\xc2\x95\xec\x59\x1f\x19\x48\xa3\x09\x60\x4e\x2a\x5c\x12\x16\x59\xb0\xb9\x58\x80\xcd\x96\xcb\xb7\xd7\x54\xbc\x08\x16\x3e\x2b\x91\x14\xbf\xc6\x41\xa0\xa4\x89\x4d\x70\xc6\x75\xdc\x38\x93\x7b\x0e\xca\xb9\x7a\x4e\xad\xda\xbc\x31\x0f\xc8\x70\x82\x87\x56\x17\xcc\x03\xdd\x9e\xaa\xab\x13\xa1\xe6\x82\xc7\x72\x5c\x98\x60\x35\x84\xc2\xe6\x5a\x60\x73\x83\x98\x08\xf0\x61\x4c\x53\x29\xdc\xad\x63\x61\x31\x28\x6b\xd0\xd1\x50\xf5\x55\x53\x8b\xea\xc6\xc5\xaa\x9f\x29\x76\xe9\xac\x2a\xbd\xd8\x74\x15\xbb\xae\x23\xd4\x35\x34\xa8\x8a\x51\x37\x03\x6f\x01\x31\xc0\xb5\x1b\x73\xcc\x88\x2e\x0a\x55\x82\xac\x35\x9a\x74\x03\xf3\xf7\xfb\x75\x2f\x06\x48\x36\xd6\xf4\xa1\x7a\x45\x40\x3c\xbd\x9d\x4f\x35\x12\x70\x16\x64\x3e\x60\x38\xf1\x20\xc3\xa4\x90\x8a\x64\xc5\x01\x85\x0e\x46\x91\x77\xf9\x30\x16\x16\xc6\x9d\xdf\x00\x15\xb3\x1a\x87\x24\xbb\xe7\x98\x13\xa9\x35\xfc\x02\x77\x1f\x58\xd4\xa8\x55\x48\xe0\xfb\x6e\x0c\x7a\x52\x3f\x41\x4a\x9a\x8c\x21\xfb\x46\x7e\x0b\x8b\xea\xd0\x29\x83\xa1\xb2\xe3\x20\x96\xe6\xeb\x88\x6b\x1a\x7c\xec\x5f\x94\x3a\x7f\x32\x1d\x8b\x2a\xb8\x1c\xbd\xf5\xe9\xb6\xd6\x03\xb9\x5c\x79\x9e\xd5\xdf\x33\x45\xc4\xe3\x1e\x59\x74\xfc\x39\xaf\x9f\x5d\xc1\xfe\x94\xc2\x02\x33\x3f\x66\xd9\x04\xdf\x8c\x8b\xea\x1a\x7e\xa3\x4c\xa0\x69\xe6\xc0\x35\x87\x17\x36\x2e\x9d\x8e\xe1\x0f\x2c\xb0\xe6\xf6\x11\x66\xe3\x25\xab\xa1\x51\x65\xad\x58\x67\xba\x10\x9a\x81\xf7\xa5\xc6\x72\x36\x5e\xf1\xc1\x10\x32\x08\xdd\x55\xa5\x65\x8b\xb9\x6c\x3e\x73\xcf\x60\x74\x4b\xdd\x0f\x37\xcd\xcf\x75\xe4\x54\xdf\x45\x9a\x75\x3f\xf8\x91\xe6\xb7\xb1\xb4\x04\x50\x30\x96\x1e\xc1\x9a\x83\xec\xbb\xc3\x07\xc7\x95\x79\xf8\xf0\x80\xee\x18\xa6\xc0\x1e\x4e\x40\x09\x6c\xda\xcc\xe6\x6c\x46\x78\x15\x88\x0d\x46\x5c\x80\x1b\xb9\xc1\x1b\x6b\x66\xa8\x05\x6f\x24\xcd\x1c\xaf\xeb\xc2\xa0\x65\xd7\xfb\xfd\xfc\x7a\x81\x9d\xd7\x2d\x2b\xd6\xdf\xbf\xff\x31\x43\x83\xad\xc1\xa1\xf0\x55\x24\x0e\x8d\x02\x77\x02\xdc\x87\x13\x5c\x69\x85\x1f\xf8\x69\xd7\x35\xe5\xe0\x7d\x05\x2a\x99\x98\xaa\x6e\x72\x49\x9f\x6e\x8c\x1a\x83\x8e\x46\x68\x03\x88\x68\x79\x51\x68\x77\x74\x84\x57\xe3\x9b\x7c\x97\x6d\x03\xe0\x14\xec\x75\xf3\x00\xd0\xc6\x72\x9b\xd7\xaf\xaa\x75\x53\xd0\xef\xf2\x9a\xae\xdf\x29\x47\x2b\x60\x4a\xd5\x7d\xcc\xe3\xf7\x31\x23\xf7\x71\xf8\x82\x29\xc5\x1d\x4c\x8b\x69\x24\xb8\x27\x72\x27\x9d\xdf\xe4\x3b\xe3\x6a\xd7\x0d\xdb\xef\xa4\x8a\x8e\x31\x44\x73\x0a\x48\x24\xf1\x37\x84\xa3\xd6\x3a\xce\xc8\xb5\xb6\x7a\x0f\x60\x24\x30\x33\x09\x04\x8e\x73\x45\xfd\x6c\x02\x3f\xab\xc2\x6f\x4d\x81\xfb\x16\x2a\x8a\x4f\x6a\x94\x1d\xea\x4d\x2d\x98\xfe\xa9\xc3\x91\xb6\x4a\x01\x6e\x2d\xc0\xde\x36\x1b\x2f\x97\xea\xee\xe6\x77\xcb\xa5\xf1\x93\xe3\xe3\x9b\x7e\xeb\xee\xba\xb4\xf0\x49\x2a\x47\x8a\xc8\xb9\xd0\xc9\xdb\x1f\x66\xd8\x24\x7b\xc7\xf2\x02\x00\x29\xad\x0e\x18\xbc\x3f\x15\xd3\x07\x7a\x5d\x8b\xe8\x0d\x5e\x96\x87\x79\x3e\x2f\x09\xce\xad\x43\x9b\xb7\xb8\xf6\x99\x72\xee\x52\x28\x4f\x40\xae\x14\x2b\xa1\x7f\xb5\x3a\xc3\x8b\x69\x3a\xbe\xc3\x75\xaa\x0e\x28\xf7\xa3\x6e\x39\x43\xbd\x59\xed\x76\xcd\x60\xb8\x7a\x25\x62\x19\x4f\x91\x41\x07\x09\xf8\x5e\x79\x7a\x7c\x3c\xff\x4e\x1c\x82\x1b\xa0\x24\x5c\x78\x38\x51\xbb\xcf\x79\xa5\xf8\x23\xb1\xe1\xa0\xac\xd6\xee\x34\xac\xbc\x4e\xd3\xce\x33\xba\x36\x16\x53\x61\x12\x78\x9c\xe2\x0f\x05\x81\xee\x4a\x59\xeb\xfc\x2b\x26\x97\x95\x0b\xfb\xac\x46\x23\x74\x4f\x09\x9f\x57\x5a\x6b\x6b\x15\xac\x39\x59\xf7\x83\x78\x35\xe0\x9b\x0d\xdf\xd0\x2e\x0a\xb9\xa9\xae\x31\x8e\x4d\x05\x79\x9b\x31\x2c\x70\x3e\x6f\x16\x68\xc0\x48\x31\x2e\x98\x26\x19\xb5\xbc\x0b\x3e\x97\xef\x95\x57\x0a\x78\x67\x82\x2d\x1b\x60\x36\x3c\xa7\x2a\xe5\x2a\x36\x24\xa4\x5f\x5c\xf9\x3a\xed\xf7\x59\xed\xbd\x44\x2d\x78\x73\x3a\x28\xc6\x9a\xfc\x1d\xfa\x00\xb9\x02\x49\xdd\x02\xb0\x92\xb5\x6b\x88\x6a\x57\x18\xe7\x3b\xd4\x7f\x34\xb6\xcb\xa5\xd2\xce\x30\x34\xb0\x86\x8a\x55\x9c\x66\x6e\xc8\x2a\x20\x7b\xb7\x8c\x7e\x9e\x9e\xab\xbe\x26\xda\xac\x1f\xb4\x41\x36\x46\xdc\x31\x5a\x84\xe3\x3d\xc0\x2b\x6b\xe8\x3e\xf7\x68\xc4\xb9\x41\x04\x9a\xc2\x8c\x21\xc9\x27\x3e\x87\x7a\xdf\x55\x15\xf8\xe5\xc5\x86\xdc\x82\x71\xff\x40\x96\x09\x83\x9e\xa6\x70\xb6\x9e\xfc\x4b\x36\x1e\xa1\xd9\x13\x34\x9f\x2c\x42\x38\xdf\x1e\x18\xb7\xad\x4e\x39\x7c\xf7\x8b\x1c\x8e\x19\xec\x6c\xe8\x39\x5d\x64\x02\x92\x2e\x5b\xc2\xf6\x3c\xe3\x58\x4d\x35\x97\x55\xff\xbf\x81\x26\xdf\x3c\x0c\x4d\xfe\x38\x48\xf2\xcd\x23\xc1\xa9\xf3\x10\x9c\xba\xbb\x00\x1d\x3c\xf2\x5c\xe7\x85\x7b\x28\xe0\xef\x9f\x03\x0c\x7e\xd9\x81\x04\xb7\xe8\xb1\x0f\x05\xf2\x75\xa1\xc2\xf1\x07\x13\x88\x57\xff\xf3\xe0\xd2\xeb\x08\x4c\xd9\x3f\x09\x30\x5d\x91\xde\x83\xb3\xf3\x00\x70\x7a\xb0\xe6\x36\x17\xa9\x4b\x34\x56\xa9\x45\xef\x41\xab\xd3\x68\xe8\xa3\xbd\x32\xcc\x07\x3a\x09\x59\x08\x32\x7b\x34\x60\xda\xd7\x43\x75\xc1\x69\x8d\xfc\x58\x83\xa5\xf7\xbf\x6f\xc7\x69\x21\xe6\x20\x16\x7d\xfd\x30\x08\x74\x77\xc2\x02\x34\x68\x1d\xa1\x1c\xc9\x60\x15\x7c\x14\x1a\x70\xbd\x70\x53\x29\xc6\xa2\x07\xd3\x61\xf9\x34\xdb\x32\x23\xc1\x35\x61\x13\x9a\x47\xee\x10\xa2\x15\x87\x0f\xd9\x68\xbc\x88\xeb\xcc\xe4\x88\x34\xf1\x73\x81\x02\xd3\xb2\x07\x42\x39\xe3\x58\xe8\x3d\xf8\x39\x17\x0b\x04\xb2\x1e\x6f\x4a\x94\xc9\x9f\x73\xbe\xc0\x89\xee\xa1\x3a\x72\x27\x81\x40\x74\xf8\x6e\xc9\xe2\x8b\xb8\xee\x7b\xb9\x61\x3e\xe8\xb5\x23\x2d\xaa\xb1\x53\x90\x21\x9c\xd9\x2c\x5f\xaf\xf5\xd2\x1e\xac\xb6\xef\xec\xec\x91\x9e\x2c\x80\xae\x8e\x0e\xc5\xa5\xe8\x78\x50\x45\x6b\xb8\x46\xc7\xd8\x1e\x10\xf2\x0e\xa5\x7f\x64\x07\x05\x90\xbe\x9b\x7f\x9a\x5a\x78\x4d\x16\x4b\xdf\xaf\x78\x75\x6b\x9c\xab\x90\x66\xfc\xa3\x69\x3e\x2b\x8f\x59\xca\xc9\x7d\x98\x12\x6c\x4a\xdb\xc1\xb1\x8f\x57\x46\x76\x33\xcc\x51\x8e\x50\xdb\xea\x40\x3f\xc9\x17\xea\xd0\x1c\xbf\xef\x99\x0a\x3a\xe3\x36\xe8\xcc\xa0\xea\x63\x81\x70\x0c\x2c\x57\xa7\x16\x4b\x53\xf3\x57\x76\xa0\x9c\xcd\x38\x2a\x8b\xda\x1f\x46\xfa\x8e\x79\x0a\x1f\xe4\x70\x06\xaf\x8c\x97\xa4\xf0\x2d\x50\x25\xae\x74\x84\xe2\x9a\x16\x54\xd0\x33\x31\xa7\x0b\x2c\xe6\x95\xb6\x34\x2f\x88\x0e\xae\x8a\x7a\x16\x94\xd8\x94\xd3\x7e\x64\x7a\xea\xed\x62\x11\x42\x8c\x87\xe7\x40\x80\xac\x1c\x47\xcf\x28\x31\x78\x57\x1a\x57\x34\x49\x22\xdb\x83\x83\x8c\xab\xc7\xe4\x1a\x11\x42\x67\x74\x9a\xe4\x92\x8c\x2b\x17\xdf\x3f\xbc\x7f\xf3\x7a\xac\xf6\x1b\xdb\x48\xb6\x6b\x9a\x24\x2a\x0f\xe0\x01\x57\xeb\x4e\xe5\xf1\x59\x03\x0d\x64\x99\xa6\x59\x38\x69\xa5\xf6\x81\xd6\xbc\xd4\x01\x57\x0a\xae\x32\xa5\xc8\x49\x2b\xb5\x2b\x85\x1e\xeb\xc3\xd8\x21\xb1\xd1\x5e\x29\x89\x5b\x8d\x37\x11\xbc\xa1\x90\x99\x78\x9a\x94\xcd\xcd\x95\x72\x21\x14\xb3\xd7\xf0\x77\x46\x91\x0a\xf1\x7d\xb3\xc9\x50\x30\x4f\x30\xfd\xcf\x50\x06\xf3\xb5\xcb\x79\x2d\xaf\x19\x34\x55\x33\xb5\xe3\x4d\x49\x0f\xe5\x95\x39\xcc\x52\x77\x3c\x6d\xa8\x17\x9f\x72\x06\x39\xaa\xb4\xe3\x15\x87\xb8\xf0\x72\x31\x60\x69\xca\x0e\xbb\x50\x88\x79\xb9\x48\x53\x3b\xe3\xe5\xa2\xd5\x2c\xfe\x41\x0d\xb4\xcd\x8a\x80\x2b\xa2\xbc\x1d\x37\x90\x50\x58\x99\xef\xc1\x72\x05\xa6\x90\x2c\x7a\x87\xe3\x9c\xdc\xeb\x5c\xa0\xcb\x1d\xaf\x56\xb4\xd6\xac\x86\x6b\xcf\x77\xd1\xaf\xa4\xc0\x89\xb9\x0e\x0d\x71\xde\xb1\x1c\xb9\xb4\xa0\xdd\x1c\x09\xea\x1b\xa3\x32\x29\x91\xb1\x7e\x65\xec\x20\x5b\xd1\x63\x35\x99\x8f\x42\xd1\x4d\x60\x90\xb7\x0b\xe4\x49\x30\xb5\x96\x60\x6a\xbd\xac\x0f\x0d\x2a\x32\x9f\x1d\xd7\xbc\x83\x3e\x11\x66\x71\x1d\x2a\xad\xbb\xea\x3a\x7e\x59\x07\xeb\x98\xdf\x8c\xff\xf4\xf1\xc5\xbb\xbf\x2e\x3b\x90\x03\x81\x5b\x71\x8e\x2a\x70\x8f\xaa\xd1\x7e\x9f\xb1\x79\xbd\x20\xf9\xbc\x5e\x18\x89\x77\xd3\x14\xc5\xdd\xfb\x55\xb5\xeb\x65\x83\xb0\x09\x9f\x0f\x17\x61\x9d\xc5\xe4\x98\xa1\x56\x4f\x5d\x77\x2d\x0f\x26\xe4\x78\x66\x29\x88\xe9\xd3\xf6\x6e\x0d\xe9\x30\xca\xba\x91\x72\xb4\x7f\x05\xd7\x19\xc3\xdc\xdf\x10\x86\x7b\x8a\x05\x85\xb0\x20\x28\x04\xe1\x52\x7b\x05\x1f\x3d\xaf\xdd\xaf\x60\x38\xd7\x54\xfc\xe9\xed\x2b\xea\x47\x25\x79\x72\xb8\x52\xcd\xb8\x98\x9d\x40\x6d\x05\xde\x43\x50\x49\x27\x60\x27\x56\x93\x05\x2a\xa1\x73\x71\x7e\xa1\xf2\x54\xd8\x88\x63\x6d\xfa\xd6\xc2\xaf\x8b\x0b\xb6\x91\xba\x0e\x6f\x4c\x8a\x9a\x64\x38\xc1\x10\x63\x53\x90\xf9\x02\xaf\xc8\xe4\x72\xf5\x54\x5c\x8e\x46\x2b\xc4\x36\xf6\xfc\xd8\x81\x65\x74\xbe\x5a\x20\x27\x04\x6c\xc8\xe4\x72\xf3\x94\xf9\x1e\x7c\x9b\xd1\x08\x49\xfe\xe3\xe7\x5d\x3d\xdf\x2c\x70\x61\x22\x1d\x2f\x83\x3d\x50\x63\x26\xc9\x95\x36\x09\xe4\x44\x2b\x51\xb7\x04\x7c\x83\x0b\xf0\x0d\xae\xad\x3a\x38\xb7\x5c\xb3\x1b\x1d\xd9\x22\xbc\x55\x6c\x5e\x6c\xe7\xf5\x44\x1f\x4b\x34\x71\xb0\x99\xfc\x65\xac\xc8\x04\xa0\x6c\x8c\x5e\xed\x69\x7e\x39\x1a\x55\x72\x22\xca\xde\x44\xb0\x79\xb5\x40\xc8\x01\xab\x59\x5d\x9a\xfe\xa3\x20\x13\x88\xde\xf5\x66\xa6\x78\xba\x02\xff\xc6\xac\x21\x10\x16\xac\xdc\x1b\x91\x8d\xff\xe1\x69\x5a\xc3\x8f\xfd\xbe\x8e\x00\xa5\xd9\x22\xfd\x57\xf2\x03\xe7\x08\x09\x85\xb4\x93\x63\x9a\x36\x43\x42\x62\xdf\x00\x46\x60\xec\xc5\x82\xf0\x79\xb3\xc0\xfa\x86\x90\x7f\xab\x8d\x79\xec\xbc\x1d\x9b\x6d\xd8\x65\x41\xec\x5a\x1d\x01\xdb\xe8\x28\x21\x47\xa3\x26\x3e\xef\xa0\x8c\x44\x9e\x07\xe9\xa1\x59\x86\xed\x6b\x26\x19\xcb\x1d\x69\xe6\x59\xc8\xfb\x51\xcd\x33\x3b\x30\xcf\x50\x24\x36\xcf\xcc\x9b\x67\x28\xa4\xe7\xb9\x1a\x12\x12\xfb\x42\x6e\xdc\x79\xec\xc5\x82\x88\x79\x65\x67\x59\xfe\xed\xf1\xdb\xdb\x83\xc8\x23\x2c\x8a\x3c\xc2\x34\xf2\x08\xd5\xde\x73\x68\x70\xa8\x51\x1b\x66\xb3\xc5\x6a\x0e\x30\xeb\xc4\x96\x29\x76\x71\xb5\xa5\xeb\xc6\x5a\x8e\xfa\xd6\x63\x23\x77\x3d\xe8\x32\xb5\xac\xfb\xef\x08\x48\x81\xa6\x8d\x37\x20\x0d\x6a\xdf\x2e\x57\xb2\x56\xae\x53\x38\xd1\x8e\x39\x61\x1b\x89\x06\x12\xab\xc7\xd1\xd7\x7d\xbc\xc6\x47\xdc\xb6\x0a\x00\x6a\x67\xcd\x4f\x9e\xa0\x1a\x7e\x1f\x7d\x18\xbb\x7e\x43\x28\x9c\x81\x73\x15\xf3\x53\xf6\x28\x48\x60\x6b\x6f\x9e\x38\x58\x74\x83\x1e\x73\x6c\xbe\xfb\x5a\x87\xc8\xc4\xc3\xa5\x53\x8c\x55\x25\x86\x5f\x8b\x94\x3b\xb6\x76\x92\x65\x86\xae\xdc\xe4\xfc\x13\x98\xbc\x9f\xd5\xda\xe8\x1d\x91\xcb\x03\xa7\x2a\x5f\x36\x0f\xcd\xe5\x87\xb5\x37\x61\x05\x26\xbd\x8e\x9c\x89\x82\xe6\xe6\xf3\xae\xb9\x3f\xde\xba\x3a\x6b\xe6\xfb\x9e\x7f\x4f\xf4\xaa\x85\xab\x95\x43\x32\x59\x83\xd8\x0f\xa0\xca\x2e\x2c\xd2\xf2\x65\x5d\x2d\x4b\x35\x17\x8b\xfd\x3e\x93\xff\xc4\x1c\xa3\x2c\xaa\xa9\xd2\xb0\x80\x49\xd1\x86\x1d\xc4\x64\xfe\xcb\x2c\x27\xb5\x0a\x83\x7e\xbe\x65\xc5\xba\xe3\x9d\x24\xf0\xbd\x89\xde\x9c\x0e\x27\x7e\x4a\x01\xd6\x22\x34\xbe\xaa\x2a\x88\xc9\x50\xad\x91\xdc\xc5\x90\xe2\xaa\xcd\x58\x3f\x6a\xfa\x73\x37\x51\x16\xb5\xf9\x24\x2e\xf9\xb7\x64\x72\x79\x7e\xee\x42\x13\xe7\x7c\xe1\x94\xdf\x01\xdf\xc1\x34\xd4\xba\xc8\x18\x2e\x8d\xce\xbd\x6d\x55\x0c\xd6\xfd\x67\x56\x14\xda\xf8\x09\xb1\x12\xbd\xa0\x06\xbd\x0f\x23\xe4\x48\x87\xfe\x83\x99\xb1\xf7\x99\xc3\x1e\x90\xab\x35\x77\x5d\x5f\x0c\xe4\xb8\x42\x53\x35\xdb\x64\xdc\xf9\xbc\x57\xe4\x7d\x46\x8d\xaf\x07\x0a\x42\x56\xca\xd8\xa6\x07\xff\xaa\x83\xaa\x71\x29\x9b\x20\x3c\xbc\x68\xd5\x62\x7f\xf1\xab\xd6\xe6\xcb\x7c\xbf\xcf\xbe\xa6\xe6\x5c\xd5\x8c\xfc\x44\x1a\x3e\x30\x0a\x66\x64\xbe\x18\x94\x87\xd4\x2d\xfd\x67\xca\x64\xfb\x61\xcb\xab\xcf\xe5\x2c\xf8\x35\xa5\x03\x75\x69\x4a\x56\x4e\x28\x60\x93\x72\x7c\x43\xeb\x3a\xbf\xa6\xf6\x85\x7d\x02\x29\xaa\x44\xbe\xfa\xe4\xbd\x82\xdf\x08\xf7\x94\x56\xa5\x2b\x83\xd0\x65\xc6\xc9\xaa\x2a\xeb\xaa\xa0\x48\xb5\xaf\xa5\x33\x10\x19\x24\x9f\x0c\x33\x74\xf6\x79\xcb\x0a\x7a\xa6\x05\x2f\x56\x5e\x2b\xf7\xb3\xe9\x59\x32\x32\x59\xd0\x40\x20\x6d\xb1\xa6\xa0\x91\x90\x2d\x1d\xb5\x5a\x1e\xdf\x1d\x0a\x77\x8a\x01\xff\xec\xef\x0e\x9b\xb0\x22\xd8\x1f\xfc\xc8\x36\xe8\x6e\x02\x57\x83\x39\x88\xb3\xec\xc8\xf7\x39\x2c\xf5\x54\x8c\x77\xec\xb6\x12\xbf\x77\x69\xe8\x5a\xd4\xb6\xee\xd0\x7e\xe9\xa0\x30\x95\x01\x20\x0d\x50\x2e\xdf\x3e\xd5\xe1\x23\x46\xc9\xd2\x83\xab\x7f\x93\x71\x07\x48\x80\x99\x7a\x89\x2b\x34\xab\x82\xc4\xe8\xef\xff\xa1\x26\x71\x4e\xba\x01\xe5\xd5\x4c\x4c\x2b\x15\x50\x1e\xef\x4a\xf7\x03\x36\x13\x53\xa6\x3e\xc0\x39\x9a\xe5\x41\xf7\xde\xf4\x32\x3b\x3a\x0b\x40\x89\xa0\x43\xf2\xb7\xf2\xcf\xc8\xb5\xe9\xcf\x81\xc9\x70\xc0\xb6\xe9\x95\x30\xde\x9e\x2e\x11\x24\x4b\xd3\xca\xb5\xfa\x29\x90\xf4\x87\x2a\xd8\xc6\x62\x45\x38\x6f\xcb\xda\x32\x19\xc9\xf3\xbc\xfc\xad\x38\xd3\xd7\xff\x99\x8a\x85\x3b\xfb\x6d\x32\xe2\xa3\xe4\xb7\x67\x57\x74\x95\x37\x35\x3d\xbb\xab\x1a\x7e\x96\xef\x76\x67\xdb\xbc\x96\xc5\x37\xac\x64\xf5\x96\xae\xcf\x9c\x46\x43\x1e\x07\x56\x8a\xea\x8c\x89\xfa\x6c\xc3\x78\x2d\xd4\xe9\x18\x9f\x7d\xa8\x5c\xf5\xa5\x69\xa1\x2a\xcf\xd6\x10\xef\x07\x23\x53\x45\xeb\xb3\x75\xc3\x95\xf3\xa7\xab\x17\xcb\xc6\xcf\x56\x79\x79\xb6\xca\x8b\xe2\xec\xbf\xc0\x32\x94\xa1\xff\x92\x35\x88\x2d\x3d\xfb\x2f\xb7\x5f\xff\xeb\x4c\xd1\x96\xb3\x5d\x5e\xd7\xb2\x73\x95\x2a\x01\xc6\xd0\x27\x1e\x02\xde\x13\x07\x79\xf7\x5f\x67\xdb\xaa\xfa\x54\x8f\x13\xd4\x76\xe4\xd3\x0b\xdc\xf8\x77\x4f\x23\xef\x9e\xe6\xfc\x5c\x32\xf8\x15\xc9\x18\x40\xc5\x69\x3f\x3c\x49\x4b\x74\x14\xa1\xf7\xe7\x9c\x2f\xd4\x32\x80\xd2\xdb\xea\x7b\xec\x6d\x04\xe1\x2a\x99\x26\xcb\x84\x10\x2e\xbf\xb5\x41\x2b\x11\xba\x5c\x82\xf9\x78\x20\x65\xe7\x56\x49\x21\x2f\xf4\x0d\x5e\xa0\xc2\x37\xce\x74\x2c\x80\x26\x35\xd4\x30\x4f\xd3\xa1\x40\xd1\x6d\xf0\xba\x12\x5b\x39\xf5\x9a\x75\x81\x89\x0b\x37\xc3\xf8\xec\x87\x0d\xac\xc5\x9a\xad\x75\x31\xaf\x14\x06\xbe\xe9\x0c\x06\x03\xab\x75\x45\xcf\x60\xef\xac\xcf\xae\xee\xce\xd4\x80\x65\xfd\x82\x37\xf4\x6c\xc3\xab\x1b\x6f\x2f\xe8\xec\x96\xa0\x0e\xf2\x52\x5b\x60\xa8\x00\x3e\x72\x9d\x11\xd5\xd9\x55\x73\x75\x55\xd0\xb1\x1f\xa3\xf0\xac\x27\xff\x11\xda\x67\x90\xe5\x04\x69\x43\xa3\x2c\xec\x38\x07\x23\x86\x97\x5a\x8e\xd1\x81\x99\x2c\x1a\x98\x99\x2f\x06\xf5\x98\xd5\x9a\x7d\x58\xcf\xaa\x79\x0d\xec\x9a\x14\x72\x76\x3a\xf1\xa8\xf7\xc8\xea\x7e\x32\x0b\x82\x88\x5c\x04\xbc\x1d\xc1\x07\x9f\xfb\x7b\xd0\x3f\x47\xae\x39\x70\x37\x1d\xb8\xfe\xa5\xfe\xf4\x6d\x2e\xe4\x85\x29\x79\xc4\xb9\xf0\xd2\x92\x96\x0a\x0b\x41\x25\x5f\x8c\x79\x5b\x5d\x06\x96\x10\x3f\x75\xa6\x56\xa7\xf5\x5e\xba\x6c\x9c\xb8\x8a\x97\x00\x5b\x8a\xc6\x25\x6d\xfa\xa4\x3a\x06\xc0\xe0\x53\x5a\x34\x68\xd2\x34\x1f\x3f\x7b\xfb\x76\xf9\xfc\xc3\xbb\x1f\x97\xda\x29\xf9\xed\xbb\x37\x6f\xdf\xa7\x69\x16\x74\x92\x95\x67\xcd\x7e\xaf\xb9\xde\x10\x66\x22\x6b\x3a\xe3\xe9\xa2\x6a\x58\x20\x3e\xe7\x4c\x17\xa6\x0e\x6d\xf5\xf0\x62\xd1\x38\xa8\x5b\x3d\x8a\x4c\xd0\x69\xbd\xf3\x26\xf4\xf4\x2e\x7a\x39\x51\x4f\xee\xa7\xf7\x0d\x6a\xdd\x4e\x7c\xee\x5f\xac\x1d\x89\x14\xe2\x43\x42\x59\x94\x46\xe4\xcc\xc0\xc6\xbf\xdf\x8b\x58\x7c\x92\x14\xf6\x0e\x09\xa3\x3b\x5e\xdd\xb0\x9a\x12\x3a\x5e\x01\x6c\x67\xe0\xc3\xbd\xc9\x86\xa2\xef\xf6\x6c\x62\x09\xe8\x40\x44\x64\x34\x10\xbe\x12\x77\x53\xa8\x70\x03\x9f\x82\xbc\xea\xde\xd7\xb4\x67\x01\x11\x28\x84\xda\xd0\x2c\x7c\x04\x6b\xa3\xcc\x2a\x40\xd4\x50\xca\xc6\x79\xb5\xf0\xe7\xf7\x9d\xc3\xbd\x71\x26\x70\x32\xa7\x8b\x4b\x6e\x21\x44\x2e\x8d\x28\xc1\x4d\x54\xbb\x81\x45\xb4\x2e\x6f\x84\x10\xe1\x74\xab\xaa\xcf\x06\xce\xaf\x0e\x3b\xca\x10\x57\xac\x2e\xeb\x74\xe5\xad\x56\xa5\x5b\x33\xcb\xbd\x6a\x60\x5a\x6a\x6c\xb0\x7a\x1a\x0b\xad\xf9\x9c\xd7\x1f\x6b\xba\x9e\x0e\x2f\x8c\xa6\x14\x54\x5e\xf2\xf6\x9f\xc9\xd1\xa9\x3f\xd1\x54\x00\x04\x90\xf1\xcb\x36\x7d\xc3\x16\x74\xb0\x42\x53\x4a\x2a\x7c\xef\xdc\xfb\xa6\x14\x1b\x97\xbc\x69\xe5\x75\xf4\xef\xa1\x80\x25\x1b\xe1\x3e\xce\x9f\x99\x07\x70\xf3\xd5\xed\x8c\x6f\x72\x56\xda\x11\xa9\x0c\x78\xdc\xe7\x09\x15\xfa\x99\x72\x15\x6c\xed\x80\xef\xdb\x16\x0b\xd4\x2e\x43\x24\xa1\x9b\xb8\xaf\x32\x88\x89\xa1\x1f\x78\xd6\x7b\x66\x33\x8c\x06\x35\xfa\x25\xa6\xbd\x6f\x5a\x63\x3b\xf0\x1f\xea\x44\x89\xea\x4d\x8b\x1d\xa9\x9f\x46\x20\xf9\x70\x09\xf8\x27\x66\x06\x59\x2f\xff\xb4\x9f\xee\x70\x34\x02\x78\x17\x29\x4f\xcb\x5b\x45\x72\x2e\xd6\xc9\xd8\x42\x02\x38\x37\xd0\x8b\xcb\xca\x7d\x0b\x6e\xa0\xf2\x9d\x20\x74\x5e\xa9\x3b\xc6\x4b\xb2\x89\x39\xb9\x52\xee\xe8\x25\xb2\x3b\x3c\x4d\x87\x2c\xe3\x58\xa0\x4b\xe4\x76\x78\x09\xe3\x73\xf0\x0e\x1a\x35\xca\xa6\x1d\x71\xd7\xe6\xf8\xef\x15\x2b\xa1\x76\x00\x0b\x32\x11\xc2\xcc\x21\x35\x05\xe1\x2e\xd3\x5b\x1c\xc6\xa9\x4c\xef\x6c\x6a\xfd\xe4\x49\xe2\x52\xf2\x27\xdb\xbc\xde\x26\xb8\xe1\x85\x4a\x26\x1d\x45\x1f\xea\x12\xe1\x83\x9e\xcb\xad\x0a\xad\xee\x04\xd1\xd8\xde\xae\x0f\x87\x4a\xab\xbb\xf2\x7b\xb2\xf4\xe2\x8b\xbf\x7f\x74\x7c\xb1\x09\x5f\x7d\x20\x25\xd4\x29\xe1\xb8\x5f\x97\x7f\xd8\xf7\xab\x34\xfb\x90\x06\x1a\x16\x68\x5a\xbb\x68\x53\x2f\x48\x85\x13\xe1\xff\xfa\x43\xad\x42\x14\x79\x6b\x83\x69\x5c\x50\xe8\x61\xd7\x33\x30\x02\xd8\x4c\xae\xbd\xea\x06\xd6\x7f\x5a\xf3\xdc\x3d\x67\xb4\x12\x6b\xab\x8a\x05\x9c\x1d\x5e\x80\xe4\x9d\xa6\x3e\x94\x07\x73\xd8\x4f\x9e\x22\x2d\x80\x8a\x66\xa1\x1f\x9e\x37\xee\x03\xd9\xf7\x4b\x5c\x1b\x6e\x6a\x0b\x38\x30\x2f\x7e\x6e\xf2\x02\xd0\x8e\x02\xd4\x39\x0f\xb1\xa3\x93\x2d\xbb\x7c\xc4\x86\x11\x9e\x82\xfb\xf1\x19\xc8\x74\xc8\xf6\xa3\x72\xeb\x1d\x8e\x5f\x3f\x12\x77\xfe\x50\x1c\x76\x6f\x5b\x76\xbd\x65\xe3\x40\xca\x92\xd1\x30\x08\x75\x81\x56\x46\x48\x99\xac\x77\xc1\x87\x30\x5e\x33\x3a\xde\x55\xbb\x0c\x8d\x43\xec\x37\x03\xab\x66\xef\x9b\x29\xb5\x00\x35\xca\x39\x77\x4a\x03\xb8\x38\xd1\xb6\x98\xc6\xfc\x1b\xa2\xfa\xe1\x1e\x86\x41\xff\xd1\xbc\x3a\x88\xac\x22\xfb\xd2\x01\x76\xb4\xdb\xb3\x27\x2f\xc8\x6e\x75\xf0\x54\x22\x66\x0e\x9d\x59\xea\xbd\x2c\x48\xd7\x5d\x74\x4a\x79\x1b\x45\x24\x11\x16\x91\x75\x38\x5d\x55\xd7\x25\xfb\x85\x72\xed\x5f\xce\x6b\x95\xa7\x10\xab\xf0\x03\xe1\xee\x2c\x77\xb6\x25\xaf\x05\xa0\x39\xaa\xe2\x7a\x50\x3b\x57\x7e\x4e\x72\x40\xb8\x50\xf9\xb1\x6a\x2d\x86\xe4\x5a\x67\xdc\xf8\xe9\xb6\xc0\xdf\xa3\xed\x8c\x85\xc0\xd9\xea\x1b\xc5\xa2\xde\xa9\x11\x58\xcf\xd3\xd2\xff\xce\x17\xb1\x94\x9d\xdf\x84\xd8\x9f\x36\x65\x67\x92\xe0\x4e\x30\x86\x9d\x8d\x06\x02\x32\x70\x41\x24\x15\x69\x10\x5e\x79\x48\x34\xa5\xbc\xe4\x8b\x34\x2d\x24\x57\xa8\xd9\xbe\x0d\x00\x59\x37\x63\xc8\x93\xfc\x66\x93\x15\x68\xd6\x8c\xeb\xe6\xaa\x16\x3c\x2b\x5c\x5a\xeb\x69\x33\x58\x29\xaa\x06\x97\x5e\x39\x2f\x16\x78\x63\x50\xd9\xfc\x17\xb8\x41\x03\x36\x22\xc9\x74\x0a\x69\x7f\xa7\xc9\x68\x65\xa9\xf6\x88\x59\x94\xdf\x1c\x27\xe7\x09\x92\x13\x7b\x1c\xfe\x2d\xee\x03\x4c\xee\x5b\x1c\x61\x61\x1a\xe0\x60\xbc\x74\x72\x42\x36\xe0\xfb\xe0\x93\x02\xc4\x8b\x6e\x32\x94\x88\x1b\x94\xca\x7d\xa7\x62\xce\x79\xa8\x5b\xcc\x49\xe5\xe3\x53\xca\x0b\xc1\x83\x44\xef\xa9\x9a\x95\x32\xb7\xc8\x98\x1f\xef\x5c\x3a\xd5\xcb\x5b\x5e\x5d\xf3\xfc\xe6\x26\x17\x6c\xe5\x29\xbe\xea\xb3\xab\xbb\xb3\x8f\xef\x7e\x3c\x5b\xe5\x65\x59\x89\xb3\x2b\x7a\x06\xea\x94\xcf\x4c\x6c\x99\x17\x03\x3d\x3e\x7b\x5b\xd0\xbc\x86\xb7\xa0\x29\x51\x31\xd1\xa5\x32\x29\xd7\x82\xe6\x10\x0f\xcd\x48\x0e\xba\x4a\x06\x31\x05\x84\xb5\xfe\x14\xf9\x77\xcc\x21\xb8\x73\xcc\xc8\x04\x0e\x34\x3f\x8c\xa5\xc7\x91\x12\x6c\x62\x7c\x64\x39\x1a\xb5\xf6\x73\x81\x44\xff\xdb\x34\x65\xa3\x91\xe5\xe5\x09\x21\xac\xd5\xc6\xaa\x27\x7f\x1b\x3f\xb9\x76\xcc\x6c\xdd\xb7\x11\x79\x0c\x67\x29\x8f\x87\x42\x4d\xe6\x11\xd4\x64\xae\x69\xfd\x04\xb3\xd1\x05\x72\xac\xa4\xd3\xa9\x98\xa3\x50\x21\x04\xb0\x58\x83\x92\x54\x11\x95\x4d\x13\x4e\x10\x0d\x84\xae\x98\xc1\x21\xcb\x38\xb9\x6f\xd1\xbc\x5c\x90\xfb\x5c\xe1\xd8\xb5\xb8\x24\x1c\x19\x7d\x6d\x19\x91\x25\x35\x25\x55\xf3\x50\xce\xab\xc5\xa0\x57\x75\x9e\xa6\x59\x0e\x55\xe6\xad\xe4\xb7\x25\x39\xdc\xef\x4d\x13\x1a\x2a\x4f\xe3\x14\xb6\xca\x55\xd3\xf9\x44\xe5\x08\xcb\xf2\x84\x7b\xe2\x56\xe1\x65\x33\x8e\x78\xfb\x66\x09\xb8\x28\x42\x80\x8d\xfc\x63\x3e\x59\xa0\xc3\xf9\x4e\x15\x06\xcd\x13\x9d\x87\xfd\x38\x93\x60\x0a\x7b\xac\x89\x36\x17\x3d\x54\xfa\x86\x7d\x61\x65\xfd\xc4\x06\x3c\xee\x78\xf5\xe5\xee\xd4\xaf\x56\x55\x29\x72\x56\x52\x7e\xe2\x67\xab\x6a\x77\x4a\xa1\x1b\xc9\xd6\x3d\x58\x8e\xd5\xe7\x54\x9e\xbb\x53\x3b\xab\xdc\x3e\x4f\x1e\x99\xec\x84\x24\x4c\xa7\xce\xb7\x83\x86\x3d\xf1\x03\xe8\xcf\x89\x13\x17\xac\xe9\xe3\xbe\x59\x55\x9c\x2e\x1f\xb7\x19\x94\xca\x58\x5b\xe3\x8f\x22\x24\x85\x53\xb6\xbb\x3b\x69\xc2\x74\x79\x5a\x36\x37\xf4\xb4\x29\xd6\x5f\x9c\x3f\x6a\x73\x56\x90\x97\xea\x31\xf5\xdf\xa8\xab\x68\xf9\xf8\x9e\x29\x55\xdc\x52\x4f\x9c\xc6\xd3\x38\x79\x22\x94\xf0\x7d\x6a\x71\xad\xe4\x3b\x71\x17\xd0\x2f\xe2\x09\xaf\x6f\x0f\x80\x4d\x79\x05\x25\x99\x3a\xaf\x36\x27\x55\x68\x9d\xf6\x4f\x87\x75\xc2\xb7\xf8\x0e\x5f\xe3\x2b\xbc\xc4\x9f\xf1\x0b\xfc\x05\xbf\xef\x08\x1d\x71\xf5\x2e\xc5\xc9\x1b\xbd\x77\xef\xdd\xb2\x4c\x87\x13\x1c\x55\xf1\x9e\x09\xc3\x1e\x48\xba\x7a\xb0\x4a\x0b\x4c\xf6\xc8\xba\x3b\xdf\x1d\x6d\x43\x1b\x20\xef\xde\xca\x65\x7a\x25\x97\xee\xc4\x66\xf8\x49\x43\x78\x6e\x48\xef\xa3\xeb\x2f\x4f\xaa\x5f\x91\xea\x93\x2a\x64\x27\x56\xa8\xc9\xfa\x49\x75\x56\x27\xd5\xc9\xea\x17\xea\x06\x38\xa9\xce\xfc\xa4\x3a\x9f\xa9\x6b\xe2\xa4\x1a\xeb\x93\x6a\x7c\x9d\x4b\x01\xf3\x71\xf5\x7a\xdf\x1c\xef\xed\xc9\x35\x3e\x3b\x5a\xcf\x2b\x45\xfa\x1e\xd7\x49\xff\xa3\xa3\xb5\x73\x7a\x53\xdd\xd2\x67\xa7\x1e\xb4\x7a\x6c\x3e\x38\x5a\x6b\x53\xb2\x9f\xbf\x3b\xbd\xb7\xaa\xf8\x03\xfb\xe9\x71\x13\xa0\xcb\x3f\x70\x50\x1d\x27\x71\x52\xb5\xcd\x89\x9b\xca\xb2\x1b\x27\xd5\x5a\x9c\xbe\xf9\xdf\xaa\x8b\xe5\xa4\x6a\x57\x27\x55\xab\x5e\x3c\xa6\xde\xcd\x89\x44\x90\xd3\x47\x91\xf0\xed\x49\xd5\xf6\xa0\x2b\x4f\xae\xbd\xf7\xe5\xf1\xd9\x86\xef\x7f\x6f\xd8\xac\x93\xda\x58\x9f\x38\x31\x86\x17\x3b\xa9\xd2\xdd\x49\x95\xbe\xf0\xd8\xa2\x93\xaa\xbd\x39\xa9\xda\xe5\xa3\x6f\xb0\xdb\xd3\xea\x05\xaf\x81\x52\xbc\xac\x4e\x9d\xdb\xdb\xb1\xfb\xe4\x81\xfd\xec\x58\xcb\x93\x6a\xbe\x3b\xa9\xc7\x9a\x9e\x3e\x7a\x9e\xaf\x4f\xaa\x5d\x69\x46\xd5\x9e\x7b\x6f\x38\xd4\x93\xea\xbf\x3a\x6d\x7b\x18\x36\xf6\xa4\x3a\x97\x27\xd5\xf9\x56\xf1\xba\x8f\xde\x21\x9f\xbd\xda\x0f\x73\x96\xef\xde\xff\xf4\xf6\xc4\x0a\x5f\x9c\xd4\xdd\xaa\x04\x25\xbc\x8e\x41\x3a\xb9\xea\xf0\xb3\xa3\x2d\xa8\x50\xd1\x13\x6b\xfe\xa2\x23\x4b\x5b\xb0\xa8\x1d\xd5\x32\x04\x82\xf7\xe9\xba\x86\x53\x85\x86\xbe\x54\x7d\xb2\x65\xcc\xb3\x80\x55\x38\x57\x51\xbb\x84\x90\xdc\xd8\xf0\x27\x03\xcf\x72\x64\x22\x69\x2b\xcf\x6b\xc6\x3d\x55\xf0\x8e\x89\x71\x0d\x4f\x08\x21\x75\x9a\x5a\x7e\xdb\x44\x25\x57\x08\x32\x20\x7a\x88\x65\x7a\x66\x1c\x14\x7e\xe4\x25\xf4\xae\x57\x7f\x13\xa9\x3f\x47\x69\x9a\x1f\xa9\xff\xfc\xe2\x7f\x44\x5f\x2b\x30\x76\xe5\xc0\xc6\xb2\x72\x5e\x2f\x70\xa9\xa0\x7e\x94\x02\xae\x30\xfd\x2b\x06\xf5\x67\x26\x56\xdb\xac\x46\xf7\xab\xbc\xa6\x36\x56\x76\x0a\xbf\x74\x80\xec\xd4\xb0\xef\xaa\xe7\xf0\x4a\x2b\xad\xbc\x57\x0a\x3e\x93\x3e\x37\x5d\x40\x78\xa2\xcb\x2a\x7d\xca\xd4\x28\xef\x56\xc4\xe0\xf1\xe3\x8d\x45\x04\xc2\x5b\xf2\x2a\x17\xdb\xf1\x0d\x2b\xb3\x15\xde\x20\xbc\x26\x93\xcb\xf5\xd3\xed\xe5\xda\xe8\x15\x77\x84\x66\xd5\x7c\xbd\xc0\xf9\x7c\xed\x86\xb2\x33\x43\xd9\xb5\xb6\x2b\xf2\x7b\xd5\xb2\x9d\xe0\x69\x57\x64\x72\x4b\x38\xab\x82\x85\x99\x4e\xd4\xa7\xeb\x5c\xd0\x60\x78\xd7\x54\x7c\x60\x37\x34\x43\x90\x8c\x54\xff\x8d\x06\xba\x3e\x53\x72\xd2\xb6\xda\x36\x0b\xd9\x3f\xe4\xa9\x5c\x4f\x27\x90\x79\x67\x7a\x81\xf5\xf4\x4e\xbf\xc1\x6a\x6a\xa7\xbf\xc3\x6a\x22\xa7\xff\x8a\x61\x96\xa6\xff\x86\x95\x06\x66\xfa\xef\xd8\x02\x07\xfd\x4f\x7b\x02\xa6\xff\x0b\x03\x68\xe8\xf4\x7f\x63\xd9\xbf\xe9\xc5\xa4\xed\x39\x20\x68\x7d\xed\xb9\x45\xe9\xe5\xdf\x4e\xd0\x79\xc6\x9f\x4e\x1e\x56\x21\x3a\xd5\x5b\xe4\x64\x77\xa0\xad\x7f\x4d\xa5\xa2\xd5\x08\xf5\xd5\x04\x0f\x1e\x77\x6b\x21\x8b\x65\x05\x55\x61\xe0\x2e\x31\x9b\x32\x49\x77\xf3\x68\xa5\x69\xd9\xdd\x17\xd4\xfa\x90\xd2\xb1\xec\x5d\xe6\x4c\x1e\x1e\x9d\x91\x3d\x64\x1a\x21\xa0\xd7\xbc\xb0\xcd\x3b\x88\x53\xa5\x65\xc6\x2a\x51\x39\xa0\x60\x31\xab\x0c\x17\x08\x7d\x4b\x26\x96\x74\xcc\xeb\xc5\x80\xfb\xbe\xf9\x6c\x93\x85\x1d\x17\xca\x16\x90\x13\xe3\xc8\x81\x30\x07\x87\xa7\x4a\x7d\x93\x23\xc8\xe8\xa0\x15\xf4\xe7\xe7\xf5\xb7\x64\x72\x89\xf2\x79\xbd\x20\x34\x93\xff\xe8\xde\xb7\xc6\x7d\xb5\x37\x0b\x02\x21\x59\x3b\x4c\x80\x2a\x8b\xb9\x24\x79\xba\x7a\xeb\xf7\x2a\xce\xcc\x66\xad\x36\x67\xdf\xe7\x82\xa2\x1c\x1c\xdb\xe4\x9f\x99\xf0\x8e\x4b\xff\x73\x65\x52\x03\xcd\x3e\xa4\x94\xce\xc1\xf2\xe4\x95\xc2\x02\xe9\x4b\xce\x79\x24\x84\x4a\x7c\x8d\xc5\x88\x1b\x94\xa6\xc9\x72\x99\x0c\x09\x31\x06\x36\x56\x5e\x67\x13\xfc\x0d\x4a\x53\x88\x2f\x24\x7c\x46\x33\x31\x6f\xcc\xc8\xa7\x02\x82\x20\x6d\xc4\x0c\x6c\x3a\x31\x9b\x2f\x94\x5e\xdf\xfe\x75\xda\xc9\x09\x14\x5e\x78\x1e\x29\xed\xe5\x3b\x3f\xc5\x84\x7f\x02\x98\xfc\x83\x07\xa6\x1c\xbf\xfc\xf8\x1a\xf0\xe1\x96\x6f\xdf\xbd\xf9\xf0\xe6\xc3\x5f\xdf\xbe\x58\xbe\xf8\xcb\x87\x17\xaf\xdf\xff\xf0\xe6\xf5\xfb\x34\xa5\xe3\x17\xaf\x7f\x1a\xc3\x93\xef\x5d\x91\xf7\xe3\x97\xba\x5e\xeb\x89\x11\xf0\x18\x8c\xd6\x99\x29\xe1\x16\x06\xdf\x9b\xa4\x3f\xd3\xfb\x55\x55\x6e\xd8\x75\x63\x39\x0f\x9f\x0f\xb9\xc0\x9f\x39\xb3\x11\x4d\x2a\x9f\x43\x4c\x8d\x66\xdc\x83\xb4\xcb\x92\xb6\xce\x46\x41\xcb\xd5\x26\xf0\x20\xa5\xb4\x7b\xf6\x5c\x6c\x59\xbd\x40\xa8\x6d\xb1\xd2\xf3\xd2\xfa\xd7\xe9\x9b\xae\x8d\xff\x4a\x7d\x2b\x7f\xa5\x5e\x95\xbf\x4a\x7f\x4e\xe3\x03\x9d\xca\xd8\xbf\x2e\x42\x25\xf2\xb1\x14\x06\xc0\xcc\x9e\x83\xf5\x00\xa2\x21\xc3\x7d\x1f\x53\x19\x1f\xc2\xfc\xaf\x62\x99\x40\x4d\x88\x86\x36\xf0\x81\x39\xd5\x8b\x7d\x42\x1d\x7a\xee\x7b\x7f\x78\xc5\xfa\xd6\x40\x01\x39\x65\x1d\xa6\xb6\x70\x10\x12\x71\x76\x5c\xe0\x64\xb9\xe4\x34\xaf\xab\x72\xf9\x99\x89\xed\x12\xaa\x5f\x82\xad\xba\x5c\x2e\x13\xac\x53\x9a\xd0\x70\xc9\x5b\xc0\x81\xd7\x49\x96\x3f\x96\xd6\x6f\x63\xfd\xf1\xdd\x8f\x2f\x4c\x4c\x83\x8a\x64\xf4\xc6\xe8\x39\xe1\x6a\xfc\xe3\x7e\x31\x73\xb5\x99\xda\x7b\x61\x3e\xdf\xb3\x7a\x97\x8b\xd5\xd6\xe4\xc6\x42\xca\x3f\x76\x68\x51\x40\x07\x72\xd8\x6d\x4b\x3b\x22\x09\xa9\x7a\x99\x06\xb0\x3c\xc6\x6a\x63\xd3\x2c\xc9\xeb\xbb\x72\x95\x74\xe2\xda\xf8\xf8\x2a\x5f\x7d\xba\x6a\x78\x49\xb9\x8d\x1e\xce\x12\x1d\xe5\x91\xa8\xbc\x85\x10\x2a\x8b\x3a\xb5\x6d\x20\xcb\x47\xe0\x37\x1a\xad\x8b\x8f\x97\x72\x5b\xc2\xac\x01\xac\x93\xae\x53\xd5\x58\x95\x26\x48\xc4\xf0\xcd\x39\x11\x1e\xab\x91\x9f\x72\x18\x9c\x95\xd1\x1d\x86\x45\xd0\xb5\x53\x19\x19\x9a\xa6\x71\xb4\x23\xa5\xc4\x76\x8c\x89\x7e\xa0\x99\x03\xda\xbd\x84\xd3\xb4\x7f\x2f\xdb\x6f\xed\x9d\x2c\xf9\x13\xf7\xcb\x6e\x0d\xf9\xf8\xa4\x5b\xaf\x63\x72\x0b\x18\xc7\xeb\x82\xdd\xdc\x48\x22\x40\x37\x94\xd3\xf2\x80\xc9\x53\xde\x7a\x8f\xf4\x68\xeb\xe4\x30\x39\x4c\x30\x7a\x2e\x6b\xb0\xba\x3d\x47\x87\xdb\x4e\xbe\x31\x30\x43\x80\x86\x27\x41\xb8\x22\x0e\xad\x49\x28\x87\x6b\xd9\x33\x04\x79\x6c\xd0\x98\xd3\x7c\x2d\x4f\xec\x87\xfc\xda\xcd\x9f\xc3\xe2\x52\x29\xa3\x61\x37\xd2\x55\x55\xae\xf5\x0f\x85\x93\x9d\x41\x93\x22\xbf\x7e\x59\x71\x94\x31\x84\x30\x6b\xa9\xa7\x5c\x22\x75\x3c\x73\x47\x43\xca\x31\xa8\x39\x8c\xdf\x78\x96\xe5\xe4\x5e\x7f\xa7\x98\x17\x56\xb2\x40\xd4\x7f\x18\x66\x0e\xfc\x16\x6a\xaa\xd4\xaf\x06\x37\xd5\x1b\x2e\x3c\x18\x9b\x7b\x48\x0e\x37\xe6\xb4\x0b\xb7\xf6\x15\x2b\x29\xca\xe6\x62\xfc\x3d\xe3\xe2\x4e\x17\xf7\xf0\x54\xc7\x80\x74\xd3\x79\x2e\xc6\xcf\xdf\xbc\x7e\xff\xe1\xd9\xeb\x0f\xcb\x0f\xcf\xfe\x03\x2d\x00\xf6\xc9\xc3\xdf\xeb\x8d\x46\x05\x3d\xe8\x75\xc2\x27\xa2\xe9\xb5\x98\xd5\x1f\x78\x23\xb6\x77\xdd\x04\xa8\xae\xaa\xfe\xcd\x6a\x20\x67\xba\x29\xe9\xec\x2e\x91\x94\x44\xf6\xf5\xcf\x92\x6c\x1a\xca\xdf\x77\x1b\x27\xe6\x8b\x71\x32\xa2\x97\x50\x5b\xbe\x5e\xbf\xd1\xbc\x84\xc1\xce\x53\xd4\xc9\x2a\x26\x4d\x75\x0e\x1c\x1f\xb5\x78\xcd\xd6\x1f\xcb\xcf\x8f\x6e\x4d\x19\x4c\xbe\xa6\xc1\x83\x2f\xe3\x41\xb8\x5a\x26\xf9\x5f\x68\xa0\xfc\x91\xb6\xac\x06\x88\xa9\xf2\x40\xd8\x0c\x74\x84\x4b\x4e\x7b\x5e\x8e\x3f\xbe\xfe\xe3\xeb\x37\x7f\x06\x96\xf5\xed\x8b\x77\x1f\xfe\x2a\x37\xc4\x22\x82\x25\x60\x96\xe3\xf9\x36\x67\xe5\x87\xfc\xba\x7e\x59\x71\x80\xd3\x08\x56\x67\xac\x91\xcd\xc7\x9d\x24\xa4\x11\xc7\xcf\xda\xc1\xf0\x19\xa9\xcd\x4f\xed\xa5\xaa\xa9\xa9\xf8\x78\xb0\xa6\x80\x9c\x04\x47\x47\x56\xca\xc6\xac\xfe\x41\xc1\x78\xb3\x5f\xa4\x74\x82\xf6\x7b\xf9\xec\xad\xe1\xd0\x00\x0b\x05\x8a\xfb\xcd\x1f\x4f\xe8\x8b\x85\x86\x30\x55\xbd\x77\xbe\xd0\x2e\x35\x5b\xa5\x61\x35\x72\xe4\x7b\x30\x37\x8f\x20\xf0\x5d\x5f\x8f\x47\x39\x23\xc7\x09\xf4\x69\x4e\xee\x22\xa4\x74\xb1\x1c\xd1\x86\x53\x58\x74\x32\x6e\x1e\xf5\x1b\xfd\x5a\xb4\x58\x83\x39\x62\xe3\x51\xfd\x5f\x73\xba\x48\xd3\x61\x36\x84\xbb\x22\x7c\xee\x93\xa3\x12\x05\x7e\x67\x95\xe7\xdf\xa9\x76\xae\xf2\x13\x49\xd0\x00\xee\x0f\x2f\x2b\x67\x15\x24\x6f\x3b\xcd\x1d\xfd\xa0\x8b\xd3\xd7\x3a\x94\x47\xaf\xdf\x5f\xdf\x9b\xe7\x98\x83\xd7\x43\xa2\xf4\x7f\x97\x9f\x8f\x51\x74\x1f\x77\x78\x89\x30\x25\x2b\xbc\x19\x50\x6d\x7b\x26\x3b\xf0\xaa\x55\xa6\x6d\xf2\x19\x53\xa3\xf3\x21\x5f\x3c\x7e\x80\x06\x76\x75\x42\x7d\x5f\x00\x42\xc7\xcf\xfc\x63\xb4\x35\x48\x25\x1b\x4e\xe9\x2f\x34\x9b\x2f\x10\x8e\x82\xb3\x50\x4f\xa3\xb8\xcb\x6c\xbe\xf8\xaf\x74\xba\x5e\xe3\x92\x3c\xcf\x20\x10\x58\xa7\xdd\xaa\x48\x84\xb7\xe5\x33\x1e\x09\xfe\x72\x67\x82\xca\x8b\xc1\xb2\xa6\x47\xd2\x37\x56\x20\xd0\x00\x9a\x8c\x00\xbc\x3b\x40\xa6\x01\xb8\x0d\x1d\xda\x25\xef\x69\xcf\xc5\xf4\x46\x21\x85\xe8\xaa\xbf\x21\xa4\x37\xd2\x99\x6d\xc5\x65\xd5\xe1\x84\x04\x1e\xd9\x14\xb5\xae\xff\x3c\xc6\x34\xe8\xa2\x1c\xd3\x20\x14\xf4\xd6\x80\x65\xba\xa4\xb7\x16\x05\xae\x22\xe5\x65\xf5\x94\xa9\xf0\x2f\xb6\xc9\xb8\xaa\x47\xa9\x19\x9f\xc1\xac\x54\x08\x57\xd8\xa9\x2a\x8d\x0f\xed\xf9\x45\x98\x5c\xce\x0b\xba\x84\x06\x55\x4e\xa0\x12\x34\xf4\xe6\x0b\x80\x5b\x50\x2b\x3a\xed\xb5\xc3\x82\x54\x73\x01\xe4\xf4\xf9\xc5\x90\x40\xad\x42\xd5\xca\x65\xad\xae\xf4\x55\x07\xb8\xc5\x14\xf2\xdb\xbd\x0d\xa1\x39\xbc\xca\x87\x2e\xe1\x91\x5f\xe9\xd2\x67\x34\xfa\x2e\xfd\xd1\x9d\xf9\xcd\x22\xf4\xf4\x9f\xc4\xa2\x01\x7e\xe7\x95\xf9\x9d\x17\x0d\x60\xd6\xc4\x26\x82\x7e\x3a\x49\xd3\x8c\x8f\x08\x43\x58\xf6\xbe\x4c\x53\x31\x24\x62\x16\x3b\x4f\x43\x42\xdb\x58\x64\xa3\x92\xb0\x82\x2c\x7e\x9f\xfd\x14\xf5\x5f\x39\xae\x8b\x81\x77\x78\x74\x2c\x00\x52\x7b\x00\x6f\x11\xa6\xae\xb5\x17\x66\x67\x1c\xfa\x60\x82\xe7\xe5\x22\x38\x2d\x5f\x3c\x1d\x89\x0a\xee\xd2\xb1\xc7\x3f\x48\x5a\x78\x6b\x65\x53\x15\xc4\xd5\xd5\x56\xef\xf7\x9f\x3c\xc5\xb2\x09\xab\x1a\x58\xcd\x43\x61\xed\x6f\x4a\xa0\x75\xf8\xab\x3c\x2c\x5d\xda\xb0\x7c\x3d\x58\x07\xe5\xea\x7c\xc1\x4b\x42\x4a\x1f\x0c\x87\x70\x1f\xda\xc4\x42\x34\x1f\xd0\x31\xba\x4b\xd6\x91\x1d\x77\x0b\x90\xe1\x85\x3f\x93\x6f\xba\x01\xab\x37\xf9\x2e\xeb\xd3\x83\x90\x0c\xb4\x08\x20\x26\x3e\x75\xf9\x1b\xeb\x24\x87\xb3\x6c\x05\xde\xec\x7c\xfc\xe2\xd5\x77\x2f\xde\x2d\x9f\xbd\x7b\xf7\xec\xaf\x90\x5f\x6e\xa5\x4f\x67\xfd\x4c\xf4\x78\x58\x0d\x67\x6c\x7b\x1d\xf4\x25\xa4\xad\xee\x88\x73\x93\x6d\x6b\x9e\xcc\x17\xc9\x82\xbc\xcf\xe2\x91\xf1\x2a\xbb\x24\xae\xfd\x77\x3e\xec\xae\x8e\xc2\x55\x11\x28\x13\x25\x8c\x99\xec\x0e\x3a\xaa\x16\xd2\x25\x01\x7c\x89\xba\x91\xc8\xfb\x03\x62\xa4\xeb\x1d\xb0\x44\x13\xd4\x2a\x59\xfb\x4d\x59\xdc\x65\x90\x6e\x23\x7f\x6c\x1d\x5e\x7f\xce\x2f\x7a\xf5\x81\xc0\xd2\x47\xf1\xee\x1d\xc4\x49\xf4\x20\x4e\xfc\x83\x38\x91\x04\x26\x76\x6b\x86\xd7\xa3\xde\x6c\xe6\x8e\xf4\xba\x07\x06\x11\x0a\x64\x86\x12\x36\xa2\x08\x5b\x15\x04\xdf\xef\xf9\xb7\x6c\xc6\x09\x9b\x6a\x3a\x44\xd8\x88\xa3\x4b\xfa\x94\x5f\xa2\x72\x5e\xea\x1a\x16\x24\x36\x03\x74\x34\x72\xc1\xdc\x2d\x5e\x19\xeb\x53\x1c\x45\x79\xe9\xd0\x9d\x87\x17\x90\xae\x4c\xce\xf9\x0f\xfd\x4f\x02\x64\x2e\x63\x71\xca\xc2\x2e\x93\x12\x41\x67\xcb\xf3\x0b\x84\x2d\x05\x2d\x5d\xcc\x3f\x23\xfc\x92\x7d\x4b\x26\x97\x4c\x81\xc0\xc4\xfa\xcf\x90\x6f\xce\x63\xf6\x1a\x91\x7d\xcb\xd7\x6b\x20\x35\x46\xb8\xed\x74\xd0\xdb\x16\xdd\x92\x56\xa0\x52\xa9\xf5\x34\xe7\x75\x5a\x5d\x91\xc2\x9d\xea\xb6\x79\x1d\xbc\xae\x0f\x6e\xd7\x6d\x5e\xff\xc8\x6a\x41\x4b\xca\x6b\x23\x09\xfc\x1f\x65\x18\x5e\x69\x39\x1c\x64\xe8\xa3\x25\x15\x0c\x4f\xa2\xf2\x92\xc1\xa3\xe7\x4a\x0c\x8e\x26\xfc\xeb\x5d\x01\xf1\x2f\xdc\x90\x74\x0a\x41\xbf\x58\x2c\x17\xe0\xd1\x7a\xed\x07\xbd\x6a\x35\x6b\x77\x20\x28\xed\x2b\xb9\x50\x10\x93\xb9\xbf\x37\x71\x49\x26\x97\xe5\x53\x7e\x59\x1a\xf7\x02\x7d\xfa\xcc\x76\xcb\x4a\x29\x5a\x69\xc3\x22\xc3\xa5\x02\x86\x6e\x03\x2a\x08\x69\x2f\xa1\xb7\x6f\x24\xf5\xd0\x7f\xc7\x36\x8a\xa2\x8b\x3d\xb6\x35\x9c\xa0\x5a\xf3\x92\x72\xd7\xc0\x5c\xdc\xe4\xbb\x88\x86\xe2\x1f\x9b\x83\xe7\x59\x18\x27\xdd\xef\x93\xd2\x99\x1a\x46\x67\xce\x16\xc4\xce\x83\x7a\xd7\x42\x86\x1f\xe8\xde\x77\x77\x30\xf4\x0d\x2b\x44\x34\xed\xe7\xff\x9b\xbe\x76\xfa\x97\xa6\xdc\xe0\xce\x99\xae\x72\x0a\xb7\xc4\xaf\xda\xc1\xb0\x6b\x30\x03\xfd\x53\x3d\x74\x49\x63\x3c\xb1\x5d\xed\x74\xf8\xe4\xbb\xbb\x43\x59\x73\x74\x95\x37\x87\xf8\x12\xe4\x06\x76\xb8\x12\xf5\xfe\x81\x4a\x36\xac\x8c\x8a\x82\x77\xe6\x70\xfe\x03\xb3\x64\x1b\x88\xf6\x51\xb7\x70\xbc\x7b\xf4\x96\xf2\xbb\x58\xff\xae\x7e\xad\xfe\xb1\xfa\x45\xd8\x46\xb7\x89\xe3\x1d\xcc\xcb\x68\xf7\xae\x7f\xbd\xee\x3d\x2b\x63\x9d\xbb\x3e\xa5\x73\x9c\xae\x9b\x00\x02\xd5\x53\xd1\x1e\x3f\x5d\x80\x5b\xc3\x09\xcd\x38\x16\x96\x00\xba\x14\x5f\x92\x75\xb8\xad\x3e\x1d\xc8\xce\x74\x5c\xdb\x26\xbe\xbd\x98\x09\x5f\xdb\x26\x1e\xc8\xcd\xf4\x20\x29\x10\x5e\x40\x08\x1c\x7e\x50\xbe\x0a\x7e\xf7\x03\x74\x12\x74\xb7\xb8\x04\xe9\xbf\x82\xa4\xb2\x95\x52\x93\x1c\x38\x37\x71\xa6\xf9\x8c\xaa\xa3\x0b\x7a\xa9\x55\x2c\x43\x6b\x94\x18\xd0\x20\x2b\xc5\x90\xe8\x5a\x58\xb9\x2a\x9a\x75\x2f\xd6\xdf\x13\xab\x7d\xf6\x6b\x02\xdf\xd4\x15\xef\x9c\xf6\x0e\x8f\x1a\xcc\x92\x1e\x64\x86\xe0\x3b\x4f\x22\x09\x35\x0e\x93\x4b\xe6\xa2\xbc\x6d\x1c\x6f\x4e\xe8\x9c\x2d\x70\x4d\x7c\xb1\x25\x47\xb8\x09\x34\x1f\x39\xc2\x85\x7c\x60\xc3\x70\x50\x56\x43\x80\xfa\x26\x73\x5e\x86\xad\x75\x8e\x83\x41\x34\x25\xfb\x39\x32\x77\x3b\x93\x54\x6c\x65\xb4\x60\x91\x19\xdc\xe9\x29\xd1\xe9\x95\xc5\xb6\x6a\xfa\x26\x7f\x18\xbc\x99\x5e\xcf\x95\x0b\x04\x23\x2d\xbe\x12\x42\x67\x91\xdd\x23\x00\x7a\xf3\x80\xbc\x4e\xdb\x18\xd1\x17\xb2\x2f\x08\xe1\x67\x5d\x49\xee\x13\xb6\x11\x1a\xf8\x1e\x10\xb3\xa6\xbd\x85\xf3\x59\x7e\x33\x4b\x92\xc3\x9d\xc9\x17\xd3\xac\x23\x4f\x51\x29\xc2\xeb\x59\x62\x65\x4d\xb9\x78\x76\x40\x10\x7b\xe1\x80\xf0\x35\x98\x91\x51\x27\xc6\xcb\x7f\x76\xe5\x5b\x2c\x0f\x90\x12\xac\x62\x13\xf1\xa2\x27\x4b\xc1\x72\xb8\x8f\xea\x83\x40\x4e\x66\x24\xfe\xb7\x13\x6c\xf1\x96\x76\xd5\xae\xdb\x6c\x6c\x9e\xd8\x26\x9b\xf8\x52\x00\xdc\xc6\x56\x8b\xd0\x17\x79\xce\x2f\x42\xe2\x61\x66\x22\xa3\xe7\x17\xf8\x42\xe5\x2b\xdc\xb2\x8d\xe8\xb7\xad\x5b\xf2\x1a\xef\xb5\x49\xa3\x6d\x4e\x0e\xb4\x38\x41\x98\xb6\xb8\x29\xa3\xed\xf5\xa6\x78\x02\x13\x1b\x94\x7e\x78\x6e\x27\xfe\x8c\x72\x79\x79\xd6\xff\x1f\x77\xff\xdf\xdd\x36\x8e\xe4\x0b\xe3\xff\xeb\x55\xc8\xbc\xb3\x1a\x62\x04\x33\x76\xf7\xde\xef\xbd\xab\x34\xdb\xd7\x71\x9c\x6e\x6f\xc7\x71\xd6\x76\xba\xb7\xbf\x6a\xad\x96\x96\x20\x1b\x13\x8a\xd4\x80\x90\x1d\x8f\xc5\xf7\xfe\x1c\x14\x7e\x10\x20\x41\x89\x76\xb2\x73\xf7\x79\xce\xc9\x89\x29\x12\x28\xfc\x06\xaa\x0a\x55\x9f\x22\x8d\xbc\x5d\xba\xd5\x5a\x2d\xb5\xdd\x44\x51\x0d\xeb\x8d\xac\xa6\xa9\x99\x75\x05\xf1\x56\x5c\x97\x55\xeb\x55\xa0\x03\x2b\x25\x74\xa2\xd2\xba\x0b\xa4\xae\x64\xb0\x9b\x2b\x2f\x37\x1b\xfd\x5a\xdd\x02\x59\xf4\x36\x1b\xc0\xba\x06\xab\xc8\x27\xdf\x28\x32\x24\xe3\xe8\xba\x63\xc8\x6a\x62\x80\x5d\xa8\xdb\x4a\xa0\x79\x43\x6e\x69\xe6\x5e\x76\x16\x28\xac\xa4\xde\x26\xfe\x36\xdb\xdf\x47\x56\x91\x92\x32\x40\x3e\x20\x5b\xb9\x47\xb2\x79\x93\xac\xea\x08\xb8\x53\x6e\x9b\x5d\xf5\xed\x51\x85\x45\xa9\x16\x70\x85\x80\x66\xe8\x14\x8d\xcb\x65\x47\xcf\xb4\xad\xa5\xd8\xaf\xb0\x37\x16\xd9\xa6\x8c\x10\xcc\x71\x76\xb5\x0d\xee\xbc\x9c\x8b\x8f\x63\x98\x2a\xd7\xf5\xed\xf7\x18\x17\xd5\xf6\xab\x47\xb6\xad\x3f\xc6\x64\x22\x46\x12\xe6\xd4\xc8\xa7\xd8\x78\xa1\x3a\xf6\xce\xa3\x8e\x3d\xcb\xac\x8b\x1a\x47\x02\xb6\x5a\x68\xdf\xe5\x5c\x43\x03\x4f\xf0\x79\x3c\x0e\x64\xe9\xc1\xa4\x77\x2d\xa1\xb1\x90\xb7\x73\x6b\x66\x7f\x70\x2b\x79\xae\xaf\x40\x4a\x31\x24\x0e\xfd\x38\x5c\xc4\xd7\x48\x9f\xa7\x8a\x9f\x5c\xe0\x73\x91\xf0\x38\x3e\xc1\x49\x8b\x8d\x28\x64\x3f\x0a\xaf\x55\x8e\x5a\xa9\x2a\xb7\xf7\x96\x69\xb3\x19\x4f\x4a\x34\xda\x96\x20\x24\xf1\x78\x82\xf0\xe7\xca\x24\xfb\x88\x8c\x74\x51\x04\x49\x3b\xfb\xcb\xf8\xb3\x75\x05\x7a\xf9\x8c\x2b\x50\x1b\xb8\xa1\xcb\x3d\xe8\xa4\x66\xb4\xb6\xfb\xea\x9a\x35\xae\xae\xd5\x85\xa6\x04\x26\xb1\xef\x6e\xd9\xb3\x2a\x5e\xc3\xd2\xf0\xd4\x7e\x9b\xd5\xa5\xaf\x39\x5d\xef\xe2\x9f\xa6\xd3\xaa\xf8\xa9\x14\xd4\x01\x5d\xec\x2c\x13\xeb\x8b\xe6\x59\x8b\xce\x38\x72\x32\x46\x6e\x9e\x10\x00\xdd\xf3\xcf\xeb\xd5\x16\xad\xb2\x4b\x40\x41\xda\x4a\x7e\x65\xde\xb4\x0f\xb2\x8e\x37\x27\x63\x8f\x40\xa8\x0c\x0e\xa8\x34\x0e\xea\x20\xb1\x62\x75\x4a\x7d\x8c\x32\x1e\x44\xa1\x89\x91\x89\x09\x0e\x16\x34\x4b\x52\xfa\x77\xf2\xd6\xc4\xcd\x74\x8c\x8e\x44\x5b\xaa\x38\xd3\x1e\x93\x9c\x17\x4a\x83\x4f\x2e\xef\xe9\xf6\x86\x15\xd8\x5a\x45\x14\xa1\x31\x73\xe7\x5e\x66\x4f\x37\xfa\xac\xe9\xa6\x3d\x44\xff\x71\xab\x64\xf5\xf8\x75\x4b\xc4\xbe\xaf\xff\x07\xd5\xfa\xc5\x55\xd5\xce\x90\xff\xa8\xde\xb5\x97\xa8\x47\x4b\x3b\x9f\x6b\xbd\xb2\xe7\x64\xc2\x79\x46\x5e\x90\x5b\x48\xaf\x8a\x80\xc2\xa9\xff\xaf\x35\xd1\x79\xad\xf4\xa9\xd9\x1c\x5c\x4d\x2b\x73\x29\x54\xe2\x7c\xb1\xd8\xd6\x02\xc9\x72\x6d\xeb\x82\xbb\xc4\xc7\x83\xb7\x29\xe5\x49\xcd\x48\xe7\x39\x53\xc3\x67\x7d\xd2\xdd\xe3\xb2\x9b\xb9\xcd\xd7\x1c\x06\xb5\x1d\xc6\x20\xaa\xbc\xd4\x28\xc9\xb6\xcf\xf9\xbf\x66\x5d\xe6\x5c\x7b\x7a\x4c\x51\x8c\xfa\xe1\x96\x70\xcb\x06\xcd\x3a\x48\xb6\x44\xb8\x67\x6e\x84\x7b\x79\x09\x41\xe0\x12\x82\x8d\x33\x7b\x12\x67\x55\x2c\xff\xc8\x29\xc9\x55\xf6\x49\x8f\x0d\xed\xbf\xc1\x20\xf0\xad\x7b\x37\xcb\x9a\x77\x0c\xd6\xe5\x54\xe1\x6f\x04\xa9\x67\xaa\x12\x59\x3d\xe0\xe3\xf7\xbd\x60\xea\xed\xa2\x81\x5c\x52\x4d\x6e\xbf\x85\xcc\x36\x91\xc7\x67\x55\xda\xd6\xa2\x2d\x16\xa8\xae\xe8\x23\x2f\xec\x76\x6c\x79\xcd\x6b\xbf\x6a\xb7\x70\xcd\x6d\x77\xef\x3c\xdb\x68\xdd\x25\x85\xfe\x5c\x67\x2d\x76\x6c\x42\xc3\xc0\xdc\x1f\xc2\xc4\xfd\x8d\xf2\x3b\xe5\xb1\xd1\x3e\x57\xdc\x74\xce\xb4\xa1\xd9\x8c\x41\xcc\xe8\x56\xd3\xe3\x17\x5b\x8c\x39\xf6\x2b\xf6\x74\x0d\x21\xea\xee\xbb\x34\x4f\x78\xd8\x58\x8e\x68\xb3\x39\x40\x43\x06\xbc\xe0\xff\x85\xaa\x35\xea\x23\xaa\xb3\x2f\xaa\xc3\xf3\xdb\xdb\x94\x78\xeb\xd2\x42\x6c\xaf\xd9\xb8\x12\xcf\x92\xd9\x1d\xd9\x32\xe8\xb7\x2a\xda\xe2\x1c\x62\xfd\x81\x33\x81\xf7\xf8\x79\xce\x76\x5c\x83\x0f\x7b\xd6\x8e\x2c\xbd\x69\xbe\xcd\x8e\x2c\x1d\xa7\x94\x53\x43\xf1\x91\x64\x10\xf8\x49\x7b\x1a\x68\xdb\x7d\x5a\x5c\x11\xce\x53\xc1\x49\x35\x6f\xe1\xea\xd6\xb5\x55\xe2\x9a\x11\x88\xf9\xe0\xa1\x7f\x09\x77\x69\x00\xbf\x46\x8b\x77\xeb\x74\x41\x53\x7f\x71\xcd\xd2\x4c\x56\x7d\x7d\xef\x7c\xad\x68\x35\x6a\xa3\x33\x8e\xf6\x0e\xb1\x95\x50\xfc\x54\xc3\x53\xaf\x68\xdd\x6e\xa7\x02\x44\x65\x0e\x20\xaa\x41\xcb\xf8\x73\xd1\x57\xa4\xfa\xcb\x75\x01\x28\xa8\x05\xe1\xc1\x96\x93\xa4\xbf\xed\x78\xb1\x4f\x0a\x82\x9f\x6a\x95\x76\x5a\x54\x22\xcc\x22\x7e\x47\x32\x8f\xad\x14\x78\x37\x29\x11\x8b\xcc\x37\x1b\xeb\x27\xcd\x6e\x55\x2f\x36\x8b\xd3\x1e\x30\xcc\xed\xad\x03\x79\x11\x6c\x17\xa3\x82\x59\xbc\xa8\x14\x35\x23\x99\xd3\x1c\x55\x46\x70\x0a\x8e\xfd\x7d\xbb\x8b\x03\x54\x5a\xee\x0d\x58\x34\x79\x44\xc3\x40\xfc\x0d\x10\x86\x08\x1c\xe2\x37\x3c\x04\x08\x83\x84\x99\x3e\x8a\x57\xea\x51\x4c\x0c\xc7\xd1\xbf\x39\x14\x96\x07\x9f\x33\xbd\xd4\xd8\x56\xe1\xc8\x58\x65\x8a\xce\x1c\x5b\xf2\x97\xed\x12\x75\x3c\xd0\x67\x01\x07\x7c\x43\xee\xf3\x69\x3a\x35\x55\x51\x8a\x09\x26\x03\x08\xd9\x01\xbe\xb6\xea\x17\xaa\xfc\x91\xca\xaa\xf4\x0b\xf2\x03\x61\x62\x44\xf4\x73\x80\xf0\x3a\xb3\x3f\x54\xbf\x02\x84\x6b\x71\xc5\xc4\xf7\xbb\xa4\x08\x90\x21\x45\xe6\x17\x2b\xfd\xe5\x96\x70\xf9\xc3\xfa\x2e\x5f\x14\xe2\x73\x2e\x1f\x3d\x99\x0b\x27\x77\xd1\xcc\xfe\x2e\x67\xd7\x8f\x2b\x62\x51\x51\x6f\x7c\xc4\xac\xc4\x15\xcd\x2a\x3d\x05\x6d\x8d\xf8\x4a\xb5\xde\xa6\xf3\xb4\x34\x58\x14\x3c\x6e\xf4\x35\xb2\x5c\x23\xbe\xc1\x7c\x6c\x01\xd8\xdc\x7e\x7a\xbd\xc8\x2f\xff\x19\x58\x15\xd6\xc4\x6d\x28\x66\x9e\x64\x8d\xe5\x94\x95\xd5\xb6\x9f\x4f\x64\x44\x2b\xcf\x2b\xa5\xe0\xaf\xc5\xd1\x08\x9c\x34\xce\xe9\x64\xae\xab\x9c\xb8\x1a\x6e\x7a\x69\x78\xdb\x80\x24\xd6\x5a\xf0\x5a\x66\x52\xf3\x77\x8c\xc1\xe6\x36\x74\xd2\xe9\x98\x5c\x4a\x65\x27\xf8\x19\x9c\x95\xd5\x85\xba\x56\x09\x1c\x37\xd4\x87\x5f\x65\x7e\xf9\x54\xe2\x4c\xc1\xf8\xe7\x19\x98\x70\xcb\x7e\x86\xc0\x80\x4e\x9b\x01\xb7\x3d\xce\x60\xb7\xf7\xf4\x8c\x98\xfa\x31\xdd\x6c\xea\x6c\xa4\xdd\x48\x62\x39\xec\x00\x0a\xfc\x93\xaf\x17\x33\xc7\x31\x4c\x65\xcc\x9a\x5d\x48\x07\x83\x90\x6e\xeb\xc2\x0c\xfc\x44\x8d\x15\x27\x38\xb6\x4f\x65\x05\x2a\x07\x5f\xf5\xa2\x67\x5d\x58\x96\xca\xa7\xd3\x94\x94\x0f\x06\x61\xbe\x7d\x46\x28\xd4\x3c\x75\x49\x84\x30\x1d\x0c\x54\x3b\xc0\x95\x45\xfa\xb4\x15\x24\x9b\xa3\x24\x0e\x8b\x98\x22\xdb\x59\xa9\xc0\xe3\xcc\x48\xa7\xb9\x0e\x94\x97\xc4\xe1\x3a\xa6\x48\x7c\x92\xc9\xd6\x78\xec\xa4\xa2\x8b\x70\xef\x70\xaf\x82\x6e\xda\x3b\xd0\x41\x38\x0e\x5d\x76\xb6\x93\x1e\xd3\x87\xa2\x6c\x6f\x07\x90\x79\xff\x26\xb9\x21\x7e\x67\xa7\x76\x37\xa8\xaf\xc6\xbd\xa9\x21\x4d\x3f\xc3\x8d\xd9\xbb\xb7\x24\xb8\x90\x91\x77\x95\xf4\x1b\x4c\x45\x01\xd9\x2d\x99\x2b\xbb\x4b\xd0\x3c\x54\x46\x9d\x01\x9e\x1b\x1f\x4e\x7f\xda\xca\x01\xb4\xc4\x6b\xd7\xd2\x47\x6f\xfb\x96\xa2\x9f\xf8\x3d\x6e\xe5\xd4\x29\x81\x33\xa1\xd9\x1d\x61\x94\x17\xef\xf3\xbc\x20\xd2\x75\xc6\x84\xd6\x32\x17\x47\x26\xf4\x66\x44\x33\xea\x98\xd9\x38\x61\x69\x32\xca\x5b\x3c\x99\xe5\x21\xa3\x6c\xe4\xc1\x05\x19\x6c\x96\xe3\x03\xf7\x4b\x2c\xfd\x27\xe1\x95\xdc\x5c\x20\x6d\xbc\x77\xe0\xbc\x34\xd9\x6a\x3d\x64\x67\x57\x16\xc5\xf5\xfe\x13\xf2\xfa\xbd\xbc\x14\xa0\x91\xe5\xca\xdc\x0c\xea\x5d\x99\x11\x6f\xa5\xa1\xef\x31\x75\x15\xbc\xf2\x20\xb3\x2e\xb2\x1b\x8b\xdb\x2d\x21\x40\xa0\xca\x31\x61\x23\x1a\xf1\xfe\xed\xcb\x76\x95\xc7\xf8\xe4\xd0\xda\x07\x37\x73\x06\x17\xe0\xcc\xeb\x2d\x6d\xae\xef\x65\x42\xbb\x65\x75\x6b\x1e\x8d\xa1\x64\x0f\xdc\x60\x10\xba\x03\x39\x9e\x20\x0c\x26\x53\x2d\x23\x3f\x18\x90\x1f\xdb\xbe\xe9\x8b\x99\x9d\x3d\x25\x9d\x82\xab\x00\x98\x0e\x3d\x75\x3a\xd9\x54\xb0\xbe\xac\x35\xb6\xfd\xcd\xc2\x5f\xd3\x1f\x32\x50\x63\x3b\xdf\xc7\x74\xe2\x9a\x23\xeb\x9e\xa7\x6a\x0b\xf5\x16\x7d\xd0\x6b\x9b\xf7\xfb\x87\xa5\xc3\xea\xea\x62\xc8\xa4\xc4\x74\xcc\x22\xe3\x66\xfd\xf6\xec\xed\xf4\xe4\xe7\xe3\x0f\x3f\x9d\xba\xde\xd6\x8d\xce\x30\x36\x4a\xd1\x54\x22\x19\xf8\x66\x6e\x88\x46\x66\xc8\x2d\x4b\x8a\x29\xcd\xee\x93\x94\x02\xfe\x01\x0c\xfd\x16\x12\x4d\x53\x37\xdf\x7c\x38\x3a\x18\xf9\x7a\x04\x77\x18\x54\x9c\x69\x4c\x87\xfa\xa0\x8d\x74\x7f\x76\x58\x9a\x72\x17\xf0\x9b\xce\x83\x41\x4c\xa6\x37\x25\xbb\xed\xcd\x5c\x66\xbf\x75\x33\x75\xd9\x5d\x76\x24\x6a\x76\xe4\xee\xf9\x4e\x06\x83\x3d\x47\x42\x1e\x0c\xe4\x7e\xd2\xf4\x9f\x90\xb1\xc5\xb0\xd9\x7b\xeb\x5b\xa5\xdc\x64\x76\x77\x65\x73\x63\xac\x51\x82\xeb\x5b\xd6\xee\x75\xd1\xc8\xa0\x2b\x26\xfb\x68\xeb\x79\x68\x17\xde\x9a\xdc\xeb\xec\xc0\x25\x38\xd1\xb6\x59\x20\x93\x28\x7b\x56\xde\xcb\xc1\x01\x26\x1f\xd6\x86\xa1\x59\x7d\x33\x1f\x87\xd9\x3e\x45\xaf\x43\x70\x99\x6c\x59\xe8\xca\x92\xa7\xf9\xe1\xc7\x1c\xd5\xf7\x4c\x6b\x7b\xc8\xd1\x96\x43\xd0\x3f\x3d\x65\x6b\xa0\x93\xaa\x19\xdd\x1c\xbc\xf6\x23\xd8\x2d\xaa\x94\x57\xee\x52\x24\x02\x3c\x64\xc1\x1b\x8c\x9f\x3e\x93\xc7\x91\xee\x80\x3a\x76\xa9\xf6\xc3\xb7\x49\x75\x9f\xdb\xce\x01\x4f\x8e\x1c\x5e\xbe\xda\x01\x7c\x95\xad\xed\xa5\xf2\x5b\x5d\x5b\xa6\x83\x9f\x39\x1e\x51\xfb\x44\xc3\x56\x66\xe8\x29\x83\x09\xc0\xad\x1b\xa1\xfd\x0c\xae\x84\x34\x43\xd4\x7a\x78\xf6\xa8\x5e\x87\xc6\x5d\x93\x8a\xdd\x42\x5b\xdd\xb9\x9b\x0c\x2a\xcb\x12\xbc\x38\x2b\x78\x3f\x07\x02\x02\xaf\xab\xe8\x8e\xb6\x59\x15\x7e\xaa\x75\x9a\x94\x34\x93\x94\x26\x85\x85\x95\x82\xf0\x94\x11\x5d\xda\x28\xe9\x06\x1c\xe6\x8b\x38\xf2\x1c\x96\xdc\xd8\x3e\x74\x09\x77\xb7\x3d\x14\x63\x0d\xca\x60\x97\xe1\xcc\x57\x48\x08\x3b\x62\xa6\x6c\x63\xfe\xab\x38\x19\x0d\x31\xa0\x01\x24\xee\x9c\xdb\x64\x7c\x3f\x51\xe1\xd5\x3c\xf2\xc2\x22\x5e\x2b\x5d\x44\xc5\x55\xcb\xb9\x80\xef\x60\x5e\xd2\x68\xfa\x1b\x49\x3e\x5f\x11\x8e\xe7\xf0\x42\xfc\x3a\x4f\x56\x78\xe5\xfc\x5a\x6a\xa8\xaf\x7b\x69\x0a\x5e\x3c\x2e\x6f\xf2\x14\x85\xc1\xbb\xcb\xe3\xf3\xd3\xdf\x2e\x2e\x7f\x99\x9e\xbc\x3f\xbe\xba\x0a\x2c\x6d\xd1\xa3\xed\x89\x10\x1e\xe0\xc2\x60\x2a\x89\x35\x62\x04\x7c\x9b\xdf\x22\x4a\x46\x24\x59\xc2\x6d\x00\x10\x9c\xc4\x24\xaa\xa3\x82\xe0\x34\x36\x44\xb2\xc1\x20\x33\xda\x03\x13\xaf\x4d\x08\x98\x83\x41\x52\x7d\x58\xc4\x76\xcc\x49\x8e\xf0\x5d\x7c\xf0\xfa\xee\x87\x85\x36\x8d\xbf\xd3\xa6\xf1\xf3\x78\x31\xbe\x9b\xe0\x55\xcc\xc7\xf3\x09\x5e\x8a\xea\xaf\xa3\x39\x29\x66\x8c\xae\x78\xce\xde\xe5\xac\x42\x6a\x21\x78\x8e\x19\xc2\xf7\x55\xa1\x4b\x90\x6f\xef\x25\xa9\xc7\x98\x8c\xe7\x93\x5e\x2a\x6a\xa8\x81\x40\xe7\xe8\xc7\xfd\xc3\xc1\x20\x5c\xc5\x8f\x47\xd0\x9f\xcb\xe4\xb3\x36\x16\x7c\x34\x60\x7d\x2b\x34\xaa\x7f\x5c\x21\x84\x67\xa2\x49\x4d\x4a\x4e\x4c\xaa\xa7\x12\x3f\xe2\x15\x42\xe5\xfd\xd1\x12\x40\x94\x44\x25\x57\x68\x54\x21\x33\x54\x18\xaa\x1e\xb0\x9b\xcd\x66\x0e\x01\xca\x8e\x44\xd5\xe3\xd5\xc8\x97\x26\x14\x04\x4b\x29\xa4\x89\xae\x64\xd1\x3a\x03\x3f\x71\x1b\xfa\x06\x43\xc7\x2d\x68\x46\x8b\x3b\x40\xf0\x29\x50\xc8\xd4\x5b\xcb\x7a\x83\xe0\x40\x90\x09\x74\xac\x50\xf7\x0f\x93\x7e\xd4\xb7\x6d\xc1\x50\x35\x7b\x3f\x87\x90\xec\xd2\xc2\xb8\x82\x4c\x46\xbd\x6a\xaa\x0d\x06\xe1\x3c\x9a\x93\x94\x70\xd2\x4c\x87\x59\xf4\xee\xf8\xe4\xfa\xe2\xf2\xf7\xe9\xbb\x8b\x4b\xe8\x35\xd8\x96\xb9\x8e\x23\x6c\xe3\x30\xc3\x72\x52\x26\xcc\xf2\x04\x78\x6d\x4d\xf1\x0c\x45\x8d\xae\x28\x89\xd8\xb5\x29\x7f\x27\x2d\xb9\x9c\x45\x3c\xaf\x4a\xd3\x66\x8f\x69\x4c\x9a\xe2\x72\xaa\x16\x6f\xdc\xcd\x18\x81\xbb\xc6\x08\x2a\xda\xdf\x6b\x26\x84\x91\x31\xb3\x8d\x11\xd8\xa4\xba\xf9\x5c\x4b\x91\x1b\xb6\x0d\xed\x55\xad\x2f\xa8\xd3\x86\xbc\x2e\xde\xcd\x9b\x22\xaf\x39\xa4\x8b\x68\x45\xc8\xe7\x73\x17\x23\x09\x78\xce\xab\x7c\xcd\x66\xa4\xba\x8c\x09\x2d\x40\xde\x82\xf0\xe6\x67\x31\x6d\x12\xdb\x68\xcf\xc0\x07\x72\xe3\xae\x60\x49\xe0\xcd\xf4\xc6\xc8\xaf\x4a\x3f\xd5\x9f\xe7\x2a\x57\x65\x1e\x90\xb6\x89\xf3\xe2\x53\x23\x9f\xbb\x29\xd7\x9b\x47\xe6\x21\xda\x6c\x42\xe8\x0f\x39\xff\xac\x1e\xc1\xcd\xf6\x8a\xf4\x48\x94\xc3\xf3\x2b\xd0\x31\x36\xfb\xd6\x03\xb2\xc2\xa5\x11\xbf\xcc\x71\xfa\x85\x93\xac\xa0\x79\x76\x14\x8c\x82\xa1\xff\x93\x10\xdf\x02\x8d\xb0\xf0\x43\x30\x0c\x61\xbf\x51\x41\x53\x55\xed\x36\x1b\x77\x5d\xe8\x35\xa6\x8d\xca\xed\x55\xa1\x0b\x08\x11\x82\xb0\x95\x92\xdc\x9a\xce\xcd\x7d\x35\x1a\x92\x61\xf0\x63\x20\x8e\x2b\x22\x6a\x31\x6f\x36\xcc\xab\x83\x62\x5d\x75\x50\xd6\x5d\x65\x4d\x13\xc5\xc4\xd0\x32\xa5\x21\x35\x50\xcf\xda\xda\x38\xaa\xf0\xb9\xc4\xc4\xb7\x75\x4d\x10\xbe\x55\x32\xae\xde\xc0\x8e\x32\x30\xb2\x46\x8d\x1a\xdf\x4f\x54\x04\x63\xbc\xb6\xb6\x24\x6b\x1b\x5a\x1f\x15\xf1\x5a\x1a\xc8\x8e\xcc\x4b\x02\x58\xd1\x1a\x89\xcc\x04\xca\xb4\x54\xb9\x05\xa4\x58\x22\x65\x63\x94\x84\x85\xc2\x75\x56\xbf\x7b\xc6\xe5\x92\x61\x0b\xcd\x90\xf8\x2d\x97\xf4\xd8\xf9\x4e\x5b\x75\x87\xd3\x38\x70\x59\x6c\x57\x97\x54\xe7\x6a\x16\xdb\x7b\x2c\xaf\x3e\x00\xd6\x73\x11\x1f\xbc\x2e\x7e\xa8\xef\x4e\xaf\x8b\xe1\xd0\x1c\xfd\xeb\xb8\xf8\xe1\x60\xb3\xa9\xa7\xf9\x21\x2e\x34\x62\x4d\xb5\x57\x15\x13\x9c\x3a\xe7\x38\x44\x68\x15\x87\xbb\x8e\xb5\xfa\x7a\xf6\xc3\xe2\xf5\x4c\x9f\xe5\x77\x71\x3a\x9e\x4d\xf0\x3c\x5e\x8f\xef\x26\x0a\x96\x9b\x98\x03\xf4\x4e\x1c\xa0\x1a\x7f\x3e\x11\x29\xe6\xf1\xaa\x71\x28\xaf\xcc\xa1\x3c\x6f\x1e\xca\x73\x54\xd2\x45\x98\x89\x86\x7b\xa8\x2e\x35\xd5\xfa\x01\xbd\xc4\x73\x54\x8a\x6f\xf1\xbc\xc2\xa7\xf6\xcf\x6d\xb8\x77\x26\x9e\xcd\xdf\x96\x53\xc4\x6e\x75\x29\xf9\x7c\x84\x17\x16\xa1\x2d\x53\x5b\x59\x67\x59\x79\x9b\xeb\x11\x48\x54\x47\xd1\x1d\x60\x2f\x11\x21\x6d\xde\xe9\xb3\x94\x20\xbc\x92\x90\x4c\x62\xa6\x0f\x06\xab\xea\x3c\x5b\xd7\x4c\x08\x9b\xf5\x41\x08\x55\x8d\xab\x31\xb8\x96\xca\xd3\x73\x2c\x79\x1a\x22\x3d\x09\xea\x1a\x46\x1f\xdb\x53\x01\xd9\x88\x49\xf8\x9a\xbc\x96\xc8\xac\x4a\xf4\xae\xe0\x68\x20\xb2\xf5\x7a\x45\x18\xe0\xf2\x57\xd7\x14\xa6\xb0\x33\x05\xc0\xea\x75\x72\xb0\xe1\x59\x75\x1d\x05\x8f\x60\x71\x90\x1e\xa7\xf5\xaa\xcb\x43\xb1\xdc\xb7\x71\x9f\xdc\xba\xa2\x63\xd1\x54\xd0\xde\x6c\x9e\x20\x10\x36\x49\x66\x77\x27\xea\xda\x70\x4b\x61\x2f\xb4\x95\x82\x3d\xcf\xae\xa8\xb2\x46\x7e\x2a\x6d\x4e\xc8\x9d\x3c\xc6\x95\xe5\xad\x69\x4c\xe1\x38\xfb\xc3\x18\x50\x0b\x87\x47\x47\x9c\xa5\xba\x69\xac\x67\x81\x01\xe4\xa8\x2c\x61\xf2\x40\x09\x3b\xa7\xae\xe0\x3c\xf4\xf4\x45\x4f\x77\x80\x1c\x46\x1c\x37\xb4\x6a\xa0\x7b\xb0\x91\xe9\x31\x70\x66\xb7\x67\x0e\x57\x3e\x2b\xe6\xda\xd3\xa3\xef\x20\x5a\xdf\x61\x29\xdc\x1a\x4a\x0f\x33\xe1\x1b\x9c\x93\x8f\xa9\x68\x6a\x25\xca\x12\xd7\x0a\x01\xe4\xed\x17\x97\x22\x99\x57\x4f\x31\x13\xdd\x1a\xb7\x2b\x1a\x45\xc9\xa1\x58\x59\x27\x61\xfd\x3a\x54\x9c\x7d\x21\x89\x6b\x5b\x05\x42\xf2\x8c\x3c\xa9\x18\x0c\x18\x24\xbc\xb2\xb9\x65\x71\x3c\xeb\x16\x57\xa3\xd7\x52\x09\x75\x6a\x48\x73\x5b\x59\xe7\x8b\x85\x5b\x29\xb2\x17\xc7\x4d\xd8\xfb\x23\xa2\x4e\x6a\xd0\xb4\x90\x32\x44\xbd\xdb\x8a\x37\x5b\x47\x50\xe8\xb5\xfa\x8d\xa5\x88\xac\xb9\xa8\x5b\x65\x31\x14\x59\x21\xca\x10\xbe\x8d\x68\x21\x37\xbb\xbd\x03\xf8\x71\x4e\xf8\x5d\x3e\x8f\xf7\x0e\x61\x3e\xde\xc4\xb7\x96\x0a\xe7\xe6\x19\x2a\x17\x2b\xf8\xec\xb7\xb9\x03\xad\xe9\x4f\x3a\xdd\x8e\x76\x40\x76\xf7\xea\x2b\x72\x3f\xf7\x47\xbf\xe6\x06\x92\xea\x1b\x48\xb1\x8b\x34\x44\xaa\xbc\x21\xd1\x68\xfd\xb7\x09\xab\x87\xb4\xdb\x7a\xbe\x85\x1d\xaf\xeb\xf2\xc4\x30\x28\x63\x40\xe7\xfd\x32\x17\x52\xc3\x47\x08\x9f\x5e\x99\x6c\x11\x29\x1c\x30\x00\xd2\x30\x05\x83\xed\xb3\x59\x25\x21\x31\xec\xa1\xc5\x9e\x23\xc0\x8f\x92\x1f\x1c\x46\x1b\x6b\x68\xd8\x2a\xb1\x5c\x2e\xd0\x10\x51\x3d\x98\x7e\xa4\x68\xb4\x7d\xc5\xf2\x19\x29\x0a\x5f\xfb\x3d\x92\x9e\xa5\xac\xaf\xe7\xc0\xf6\x65\xae\xca\xaa\x36\x6f\xe5\xe1\x5e\x56\x60\x68\xb6\xca\x32\xc7\xb9\x7d\x0d\x5c\x55\x45\x2c\x96\x3c\xfa\x70\x7c\x7e\x7a\xf5\xf1\xf8\xe4\xf4\x2a\x66\xd6\x0f\xe7\xcb\xf4\xcd\xef\xd3\xb3\xb7\xce\x77\xf9\x4a\x92\x16\x0d\x3c\x4e\xd3\x98\x59\x3f\xaa\x7e\xc7\x79\x74\xf3\x28\x7e\xc6\xb5\x11\x79\xc6\x3a\xfc\x2f\xd7\x7a\x76\x5a\xa2\xcf\x32\x6d\x78\x41\x7c\x68\x1f\xe2\xea\x6e\x3d\x67\x63\x2b\xa8\x45\xd3\x8d\xbd\x9b\x43\x8a\x67\x92\x89\x36\xda\xc7\x8b\x5f\x4f\x2f\x2f\xcf\xde\x9e\x4e\x2f\x7e\xfb\x70\x7a\x19\x20\xbc\xf8\xca\xfd\xa3\x5d\x7a\x14\xbb\x88\xe7\x48\xa7\xfa\x10\x9c\x42\xab\x4d\x28\xde\x5f\xc8\x63\xcb\x19\xd4\x22\x4d\x37\x60\xe5\x41\xc2\x5a\xac\xe5\xb4\xd4\x47\x5c\x16\x41\x4b\x5b\x2e\x4a\xc6\xb3\x89\xed\x67\x3f\x9e\x4d\x7a\x2f\x28\x13\xa6\x59\xf3\xc0\x57\x14\x63\x02\x47\x20\x2d\xc3\xc4\xb7\x72\x17\x06\x63\x5e\x6e\x3b\x0b\x7d\xf8\x99\x83\xcf\xb8\x6c\x6b\x27\x64\xd7\x9d\xb8\x3e\x13\x52\xdf\xbb\xb6\x51\x56\xbe\xdc\xd4\x98\x97\x18\x64\xab\x4a\x61\x61\xf6\x45\x25\x63\x4b\x1f\x8f\xa2\x20\x8c\x5f\xdf\x59\xd0\xdd\x64\x8e\x42\x8a\x30\xab\x0c\xb1\xfe\x3b\x4e\x8b\xfa\x50\x34\xba\x37\xb5\xba\xb7\x44\xbd\xe7\xed\x5e\x2f\x31\xa6\xfa\x6a\x93\x29\x15\x67\xe2\xa5\xc6\x97\xff\xd5\xea\x23\xe6\x9b\xf6\x14\xd3\xba\x44\xa0\xae\xdc\xaa\x2b\xb9\x2e\x67\x87\x09\xa2\xd8\xdd\x0b\xd0\xb3\x77\xef\x70\x22\x95\x6c\x6f\x8b\x15\x8e\x96\x8b\x03\xf1\x3b\xa8\x6e\x6a\xec\x4f\x26\xee\x5d\xa0\x0d\x5e\xc7\x99\x5c\x67\x04\x4d\x36\x1b\x8d\xc8\xda\xb3\x55\x94\x31\x3d\xe2\xcd\x10\x6c\x60\x07\x19\x48\x96\x1d\x8d\x2c\x28\x57\x2a\xd8\x1a\x5b\x78\x86\xc0\x2e\x47\x34\x56\x61\x5c\x46\xae\x64\xad\x29\x8b\x04\x55\x48\x40\x4f\xbc\x14\x51\x1c\x04\xfe\xab\x22\xfa\xd0\x52\x4b\xae\xc1\x58\x56\x40\xc3\x3a\x4f\x82\x91\x89\x97\x88\xcd\xc7\x0f\x80\x44\x2b\xbe\x29\x4c\xda\xea\x93\x64\x0e\xc5\x27\x65\x19\x5a\x7d\xd2\x32\x85\xf8\x68\xba\xa5\xfa\x0c\xaa\x24\xf1\x4d\x1b\x0c\xea\x0f\xa2\xda\xe2\x3d\x54\xba\x7a\x7d\x49\x6e\x4f\xbf\xac\xc4\x07\x46\x6e\xc9\x97\x95\xf5\x49\x6e\x92\xe2\x93\x59\x77\xa6\x12\x34\x05\xcf\x57\xa8\x04\x4d\x49\x4a\x0b\x1e\x94\x38\x8b\x1b\xf1\xd7\x34\xa3\xdb\x36\x69\x15\xc7\xe1\x99\xa6\x9e\xcb\xd8\x4e\xde\x9b\x96\xb9\xa1\x51\x4d\x3c\x95\x15\x88\x0a\x84\x98\x18\x93\x49\x7c\x88\x39\xa2\x8b\x90\xd9\x48\x36\xac\x0a\x78\xe4\xb5\x56\x97\xb0\x5c\x20\x68\x56\x93\xac\x0a\x22\xe8\x0b\xc6\x83\x4a\xa2\x18\x8d\xf8\x0e\xe0\xd9\xcf\x54\xe3\xaf\xe4\xcb\xa6\xb6\x07\xcc\xd3\x16\x46\x07\x48\x40\x33\x31\xa7\x90\x2a\x61\x3e\xd5\x8b\xea\x76\x25\xf0\x56\x8a\x1c\x1e\x4d\x45\x3e\x69\x7e\x28\x75\x6c\xfa\x1d\xe6\x82\xea\x7a\x4d\xe7\x71\x82\x49\x74\x4b\x32\xc2\x12\x4e\x7e\x12\x2f\x9a\x05\x84\x2f\x54\xee\x14\x68\x98\x84\xa8\x47\x61\x89\xae\xd5\x0d\x62\x15\x20\x11\xea\xa0\xc4\x8d\x66\xa9\x60\x31\x1c\x12\x84\x2a\xd1\x85\xc7\x6b\x38\xd3\x08\xc8\x2b\x3c\x2e\x04\x79\x5c\x11\xae\x02\x0d\xda\x79\x52\x9d\xc7\xe0\xd1\xa8\xb1\xe9\xf1\xb8\xb2\xbd\x8e\xd9\x51\x50\xf0\x40\x50\x1c\x55\x30\xd1\xe2\x6d\xb6\x56\x6f\xe5\x38\xea\xb4\x8f\xea\x6d\x18\x0c\xc9\x30\x40\x01\x4e\x4d\x3d\x4a\xbb\x81\x72\xb6\xc7\x19\x26\xd1\x03\x73\x90\x3a\x55\x18\xa7\xbd\x1b\x3b\x8a\x24\xa8\x97\x3e\x2b\x64\xfa\xc1\xe0\xa6\x82\xc0\xee\x1f\x87\x04\x1f\x87\x1c\xdf\x56\xbb\xce\xb1\xf2\x3c\x81\x38\x4d\x15\x6e\xec\xa9\x7c\x61\xfc\x3b\xe3\x0b\x79\x3b\x54\xa5\x78\x90\x2f\xaa\x14\x57\x50\xd5\x62\xe5\xd3\x7b\xd6\x51\xb3\xc9\x60\xe0\x43\xc0\x77\x00\xa1\xd4\xf3\x59\x48\xf0\x01\x54\x50\xda\xa4\x57\x2a\x3b\x2f\xd4\x20\xe9\xcd\x73\x65\x35\x5f\x69\x59\xac\x10\x8e\x55\xf6\x90\x61\xee\x9a\x00\x98\x40\x6d\x59\x8f\xb5\xe8\x68\x18\x2a\x1f\xee\x68\x4a\x42\xb5\x92\x19\x72\xcc\xde\xb1\xe0\xf3\x32\x89\x04\x18\xbf\xc3\xa4\xc2\x05\x6c\x98\xbb\xd2\x45\xf8\x4e\xce\x39\x55\x5d\x32\xe6\xc6\x15\xdb\x28\xf2\xc0\x91\x0b\x93\x4a\xcd\xef\x3f\x2e\xf5\x06\x34\x36\x14\xfe\x2e\x51\x6c\xc0\xf0\x92\x68\x59\xdd\xa7\x1a\xfe\x59\x4d\xee\x52\x8e\x67\x2d\x19\xcc\x30\x58\x7d\x3f\x57\x93\x13\x93\xa6\x02\xa2\x4f\x42\xee\x77\x46\xb0\x62\x92\x5a\x46\xb6\xed\xc7\x3b\xf7\x1c\xef\xde\x88\xa4\x15\x9a\x43\x10\x28\x0f\x77\x7d\xe5\x03\x8e\xee\xd9\x8f\x0a\xf9\x39\xc0\x01\xc2\x9f\x42\x3e\xce\x26\x68\xb3\x11\x6f\x88\xfc\x51\x69\xac\x4b\x47\x3b\x5f\xd5\xdd\x34\xd4\x34\xc2\xba\x5c\xd4\xb9\xdf\x28\xe6\x1e\x7a\x06\x22\xec\x7c\x69\x8c\x13\xb5\x96\xe8\xaf\x4a\xf7\xdb\xb3\x95\xf8\x3a\x1c\x96\x9b\x11\xba\xfe\x57\xa5\x21\x96\xe4\x41\x8e\x69\xce\x05\xbd\xfc\x07\x03\x32\xfe\xb7\x89\xa2\xf8\x1b\xe5\x77\xe7\x49\x36\x4f\x78\xce\x1e\xaf\x08\xe7\x84\xc5\x24\xe2\x24\x61\xf3\xfc\x21\x6b\x7e\x29\x08\x5f\xaf\x9a\xaf\x2d\x54\xf8\x98\x44\xe0\xff\x1b\x93\xe8\xe7\xe3\xab\xe9\x87\xe3\xeb\xb3\x5f\x4f\xa7\x1f\x2f\x2f\xfe\xfd\x77\xf7\xd5\xd5\xef\xe7\x6f\x2e\xde\xc7\x24\xba\xbc\xb8\xb8\x16\xf2\xcf\x1d\x99\x7d\xfe\x39\x29\xae\xd6\x2b\xa0\xf9\xd3\xa7\xb3\xb7\xd3\x5f\x4e\x45\xae\xb6\x15\x5a\xb8\x2a\xb9\x83\xea\x6c\x4e\x0c\x1f\x3d\x1c\xe6\x60\x95\x51\xc4\x52\x22\x08\xf0\xda\xb1\x18\x4a\xe1\x97\x78\x9a\xc5\x59\x18\x4c\xa7\x32\xd5\x50\xf0\x33\x51\x96\x3f\x84\x10\xa6\xc8\x54\x66\xa6\xcc\x95\xc6\x93\xaa\xb0\xbb\xea\x1c\x03\x0a\x62\xbb\x0e\x67\x43\x88\x22\xbd\x48\xf3\x9c\x85\xf0\xc8\x92\x6c\x9e\x2f\x43\xf4\x17\x8b\x34\x1a\x8a\xf4\xd6\x2d\xaf\x0a\xb1\x8b\x79\x29\xcd\x7b\xcc\xde\xb3\x63\xb3\x2a\x8e\x76\x25\xf0\x00\x00\x55\x48\x3e\xf6\x35\x25\xf1\x00\x79\x31\xf4\x04\x96\x18\xbb\xb6\x4c\x09\x19\x8d\x79\xd9\xdb\x36\x6a\xf3\x9e\xbc\xc6\x7c\xf5\x47\x14\x4a\xac\xa2\x8d\x58\x20\x7f\x80\xac\xb3\x81\x9d\x4d\x3e\xa3\x57\x78\xe9\xd1\x72\x9b\x25\x86\xef\xe3\xa5\x5c\x5b\xfe\xbb\xc6\x12\x19\x2e\x27\xb0\x5e\x07\xe8\xc7\xfd\x43\x5f\x88\x8c\x55\xc4\x49\xc1\xc3\xa5\x16\x12\xec\x60\x2a\xc6\x85\xfb\x40\x34\xce\x9d\xad\xf7\x3d\x69\x41\x65\x4f\xac\xdb\x5a\x9c\x1b\xdb\x30\xc3\xb2\x3e\xbb\xa9\x86\xe3\x51\xed\xb4\x8d\x7b\x07\x19\xe6\xf3\x3e\x24\x08\x3f\x56\xac\x08\xe6\xa5\x5a\x3c\xb7\xea\xf5\x2d\xde\x3b\x94\x2a\xe4\xa9\x5d\x95\xaa\xb0\x07\xb9\x61\x4f\xab\xad\xda\x7c\x3a\xb5\xba\x61\xaa\xb7\x7c\x41\xea\x8b\x9f\xd4\x95\x24\xc5\x07\x83\x2f\x1e\x6a\x76\x1c\x8a\x2f\x36\xb5\xcf\x40\x8d\x1b\x6b\xbe\x8a\xa0\x64\x34\x5c\x51\xd8\x02\x4a\x94\xf3\xa4\x67\x3d\xc7\xbc\xa7\xad\xf1\xbc\x92\xb2\x8b\x52\x25\xb3\xb0\xca\xe1\xef\x33\x6c\x9a\x0c\xe1\x87\x90\xe1\x53\x30\x61\xb8\x0a\x19\xbe\x80\x27\x56\x4a\x20\xbf\x56\x79\x03\x9f\x6c\x9d\x97\xe7\xb1\x73\x1c\xe1\x4b\xdb\x10\x00\x7f\x8c\xff\xf5\xea\xe2\x43\x24\x0f\x42\xba\x78\xc4\x7f\x8d\x0f\x0f\x0e\xf0\xdb\xf8\x9f\xf1\x87\xf8\xd5\x7f\x8c\xff\x78\xf8\xd3\x64\xf8\xa7\x57\x55\xdf\x9c\xb9\xa1\x73\xf6\x0e\x75\xb4\xfc\xca\x2b\x12\x42\xc5\x57\x27\xe2\xa8\x79\x46\x42\x0a\x25\x54\x8c\xb6\x09\xd2\xe7\x70\xed\x48\xe3\xbd\x83\xde\x0d\x23\xc9\x67\xe9\xd6\x67\x4e\xf4\x38\xbe\xde\x6c\x2a\x61\xbb\x3a\x01\x21\x71\x15\xee\xc3\x3a\x07\xa1\x68\x73\x7a\x8e\x1a\x49\xe2\x38\x3e\x39\x92\x81\x61\x8f\x82\xb1\xee\xd8\x51\x30\x94\xef\x86\x81\x10\x04\xc7\x96\x68\xda\xa4\xae\xb8\x0a\x4d\xfb\xa3\x58\x47\xf2\x83\xe4\xa9\x47\xf0\x43\x4b\xc9\xf2\x97\xe2\x3a\x47\xb5\xc8\xf9\x36\xf1\xd2\xe6\x3c\x32\x94\xd5\xa7\x6f\x15\xb0\x5c\x5d\xd7\xaa\xce\x1c\x9f\x50\x36\x5b\xa7\x09\x9b\x04\x16\xcf\x06\xa7\x34\xa6\x47\x1e\x5e\x8f\xff\xf8\xd6\xe4\x55\x42\x76\xaf\x32\x38\x0d\xc6\x01\xf6\xc1\x23\x8b\x92\x87\x31\xb8\x6a\x1e\x05\xfd\x60\x14\xe0\x7e\x80\xe9\x8f\xf1\x5f\xd1\x53\x36\x8c\x83\x28\x8a\xfa\xc1\x30\x34\xb0\x9e\x7f\x45\xc3\xa0\xbf\xcc\x19\xe9\x53\x4e\x96\x45\xa0\xc6\x37\x1b\xc6\x67\x21\x60\x2c\x83\x37\x95\xae\xef\x30\x0e\xfa\x93\xa0\x14\x73\x6f\x78\x88\x33\x34\xda\x51\x6d\x2d\xd0\xdb\xf5\x7e\x12\xf5\xbe\x14\xad\xce\xe3\x83\xd7\xf9\x0f\x54\x57\x3f\x77\xab\x9f\x57\xd5\xcf\xeb\xd5\xa7\xcd\xea\x8b\x65\xa4\x6b\x2f\x21\xa2\xe9\x38\x9f\xf4\xb2\x61\xfc\x3e\x4c\xd0\x30\x18\xf5\x83\xa1\x68\x52\xe2\x69\x52\x69\x35\xa9\xda\xb1\xde\x5b\x3b\xd6\x07\x79\x0c\x00\x83\x2c\x26\x52\x95\xea\x9d\xe3\xad\xaf\x40\xb4\xfd\x41\x72\xc7\x7c\x02\x55\xfb\xbb\xbb\x15\xc0\x9e\xf5\xb3\xb3\xa7\x8a\x37\x6f\xda\xb7\x9a\x6a\x1b\xf8\x54\xd3\x14\xc4\x31\x81\x22\x7e\xf3\x19\xd9\x49\xf1\x7f\x30\xa8\x94\x3e\xf0\x62\x22\xa4\xcb\xd6\xb2\xe4\xc1\x27\x53\x4a\xce\xa7\xc9\xb1\xfd\x06\x15\xfe\x9b\xaf\x4c\x60\x50\x7b\x1e\xce\xef\x6f\x90\xe7\xd7\xfa\xea\x11\x2f\x7f\x6f\x33\x97\xb5\xbc\xfe\x52\xba\xa4\x3c\x96\x9e\x3d\x91\x48\x13\x4b\x67\x9a\xa8\xe0\x39\x23\x31\x53\x3f\xe8\xdf\x89\xf6\xea\x58\x52\xb8\x32\x54\xbf\xee\x28\x37\xcf\x2a\xcb\x66\xa3\xf8\xbe\x52\xc1\x70\x37\xaf\x5c\x81\xcf\xf1\xf1\xd0\x15\x1d\xb5\xea\x8f\x42\x53\xcc\x70\x68\x15\xa3\xf5\x02\x0a\x3e\x5b\x56\xca\xa4\x90\xa7\xa6\x6e\x12\xe8\x0f\x4a\x89\xf2\xe1\x8f\x81\x53\x75\xc5\x8f\xa6\xbd\xda\x97\x46\x3c\xbb\x45\xdb\x7c\x02\xe6\xd1\x6a\xcd\x6e\x9b\x6e\x31\x32\xa9\xc2\x39\x6e\xf6\xa2\xdd\x6f\xba\x47\x4b\x69\x56\xa0\xd9\xfc\xdf\x61\x10\x7f\xc2\xbf\xe0\x3f\xe1\x7f\x8b\xef\xc2\xc0\x92\x05\x02\x91\xcc\x96\x0d\xfe\x0d\xb7\x88\x10\x3f\xe1\x76\xa9\xe3\x97\x76\x51\xe5\x4f\x6d\x6a\xbf\x7b\x4a\x1e\x8a\x57\xc0\xfb\xed\xd2\x51\xcb\xa4\x96\x86\xfa\xaf\x7f\x5b\x13\xf6\xd8\x2d\x6d\xfb\x85\x66\x23\x29\xc0\x2b\x4e\xe7\x2a\x9c\x79\xcb\x05\x69\x95\x6b\x96\x2f\x57\x79\x26\xb2\x48\xb5\xc6\x8e\xe4\x1a\x73\x82\x7c\xe1\x15\xd4\xc4\xd6\x1c\xf2\x09\xd4\xf1\xe2\xb1\x1b\x7d\xd0\x80\x4f\xc1\x74\xa3\x63\x31\x3a\xe3\x1d\x4d\xe7\x50\xd0\x33\x33\x8a\x17\xd3\x82\x27\x9c\xbc\x24\xdf\x73\x72\xd4\x81\x3a\x76\x0e\x4f\xc2\x5f\x25\x9c\xb3\x8e\xe3\x2f\x87\x71\xba\x4a\x18\xa7\x2d\x57\xdd\x55\x1e\x98\x57\x2a\xcb\xbe\x99\x0a\xdd\x0a\x52\xed\x58\x26\x59\x72\x4b\x9a\xd0\x57\x75\x3f\x1e\xbc\xc0\x77\x78\x8e\x57\x78\x59\x53\x74\xab\x43\xc2\x0d\xf8\x1b\x12\x1c\xfc\xf5\xdf\xe4\x02\x79\xaa\xcc\xdf\x46\x7b\x07\x7e\xcb\xad\xea\xca\xa3\x2c\x11\xde\x41\xf2\x2d\x2d\x04\xb1\x79\x67\xd2\x6e\xb6\xad\x25\x24\xf3\xf9\x89\x98\x83\xbf\xc2\x5c\xef\x44\x1f\xac\x6b\x4c\xa6\xad\xd4\x69\x71\x45\x97\xab\x94\x9c\xa4\x74\xf6\xb9\x33\x79\x27\xd7\x56\xfa\xb7\x84\x8b\x3a\xbc\xc9\xd7\xd9\xbc\xe8\x4c\xdf\xc9\xd5\x85\xfe\x49\x4a\x49\xc6\x2f\xc9\x8c\x3f\xbb\x10\x2b\x6b\xe7\x96\xd0\xec\xb6\xca\xf6\xa2\x56\x39\x14\x76\x95\x7b\x99\xe7\x90\xf3\x59\x6d\x33\x99\x76\x51\x37\x13\xe5\x59\xe4\xab\x5c\x5d\x7a\xed\xac\xeb\xd2\x30\xbd\x74\xb6\x7d\x55\xdc\x12\x7e\x9a\x02\x48\xe1\xb3\xd6\x85\x9b\xad\x4b\xcd\x55\xf2\xe7\x56\x5f\x65\xdb\x5a\x42\xf1\xb2\x36\x14\xdd\xdb\x50\xbc\xac\x0d\x45\xf7\x36\x00\x07\xf6\x92\x56\xd4\x33\xee\x2e\xe5\x25\x2d\xa9\x67\xdc\x5e\x8a\xb6\x83\xbd\xe2\x8f\x29\x79\x4b\x56\x8c\xcc\x00\x7b\xec\x9c\x14\x45\x72\x4b\xba\x97\xba\x83\xd0\xd6\x5a\x80\xc7\xde\x5b\x8b\xdb\xea\x54\x68\xd6\xe9\xb4\x3a\xd1\x07\xf2\x7b\xc5\x9a\x75\xa2\x4d\x3b\xd1\xbe\x26\x5f\xf8\x95\x66\x41\x3a\xd1\xcd\x3b\xd6\x99\x91\x67\xcc\xac\xa4\x1b\x51\xc1\x0e\x82\xd1\xe1\xf3\xaa\x5c\x74\xa3\x6e\xf6\xc6\xe7\x51\x5f\x77\xa2\x2e\x08\x5f\x09\xbe\xf2\x79\xc4\xd3\xce\xc4\x95\x95\x79\x27\xaa\xb3\x4e\x54\x25\x30\xd9\xf3\xea\xbb\xe8\x44\xf9\xfc\xd3\xf5\xf1\x9b\xf7\xa7\xd3\x93\xd3\xf7\xef\x3b\x12\xbe\x8b\xec\x4c\x5b\xa9\x4b\x3e\xf6\xa3\xe6\x7c\x3b\x91\x9f\x77\xaa\xf7\x5d\x52\x3c\x97\x6c\x95\xa5\x43\x9d\x4f\x2a\xd6\xbb\x13\xf9\x95\x55\xeb\x76\x06\x5a\x8e\xe3\xb9\x62\xd0\xbb\x51\x5e\x5a\x94\xb7\x4b\xbd\x4d\xf1\x64\xbb\x00\x2c\x65\xd8\x1d\xb6\x58\xf6\x58\xbb\xa8\xfe\x12\x99\x54\x5b\xba\x3a\x13\x09\xd5\x33\xb6\x62\xce\x37\x6a\xbe\x48\xd2\xf4\x26\x99\x7d\xde\x17\x5f\xf6\x35\x46\xe3\x37\x69\x8a\x37\x36\x01\xb4\xa2\xb2\x81\x41\xa0\x1d\xef\x04\x97\xbf\x4d\x64\xef\x64\x1d\xf7\xc2\x58\x0a\x6a\x76\x49\xef\x54\x19\xd0\x05\x0a\x77\xb1\x99\xed\x90\xf7\x81\x49\x33\x0a\x86\x96\x96\xcb\x8a\xd9\x91\x01\x9a\x56\x9a\x3c\xe6\xeb\x6d\x84\x38\x59\xae\xd2\x84\x93\x91\xa1\x58\xbc\x72\x48\xaa\xa0\x28\x99\xc4\x99\x7d\x5e\x37\xb6\x88\xe3\x5d\x46\xbe\x33\x62\xe6\x4b\x84\xfb\xb9\x62\x40\xc8\x7c\x7f\x41\x12\xbe\x66\xa4\x3e\xd5\x9e\x85\x90\x17\x3f\x15\x24\x9b\x7b\xc3\x4f\x7c\xeb\x98\x95\x12\x3d\x07\x8a\x29\x94\x5b\x98\xfa\x35\x26\xe0\x69\x9a\x0f\x06\x7b\xe1\x1e\xe8\xe1\xed\xbb\xb4\x0c\xe9\xfb\x0c\x55\xe5\xba\x93\x88\x81\x9a\x04\xf8\x0a\x0b\x6e\x31\x71\xf0\x53\xa1\x88\xe8\xea\xf4\xc3\xdb\xe9\xf1\xc9\xf5\xd9\xc5\x07\xe5\x78\xdc\xa2\xe6\x1c\x0c\xf8\x98\x3a\x1b\xc7\x04\x2e\x40\x79\x74\x9f\xa4\x6b\x02\xd7\xcb\xb2\x34\xb9\x91\xfa\x2d\xbb\x1c\xaf\x2d\x12\x57\x18\x9a\x1e\x28\x2e\x31\xd0\x51\x30\x24\x4d\x3f\x18\x13\xee\x7c\x0f\x2c\xbd\x0a\x03\xb5\x50\x8d\x56\x33\x22\x17\xa6\xd6\x68\x65\x3f\x1e\x1e\x65\x72\xb4\xf2\xf8\xf0\x75\xfe\x43\x06\x77\x1f\x74\x9c\xbb\xa3\x95\x4f\x7a\x3e\x03\x93\x23\xee\xc6\x59\xa0\x48\x02\x8c\x39\x58\xa5\xe1\x93\x82\x6b\xe5\x35\xac\x56\x5a\xa2\xb2\x2c\xa5\xe7\x72\x0d\xed\x35\x71\xb0\x77\x3a\x2f\x4b\xaf\x22\xef\x59\x88\xec\xbb\xf5\xa9\xdf\x06\xad\x7d\x66\xd8\x47\x89\x4c\x9e\x41\x9c\xb1\xb7\xa4\x98\xbd\x25\xb3\x9c\x25\x3c\x67\x48\xec\x9b\xd9\x82\xde\xae\xd5\xe9\x7b\x88\xed\xb3\xf8\xb0\xd5\x1b\xb1\x26\xbb\x6b\xcf\xa3\x12\xe1\x64\xb5\x22\x99\xd4\x1a\xd5\x23\xf0\xb9\xfa\xa4\xe7\xe2\xe2\x77\xd3\xc5\xfe\xc3\xa2\x95\xb8\xc6\x0d\xe3\x09\x20\x0b\x36\xc2\x27\xf9\xdc\xf6\x47\x63\x69\x48\x0d\x72\x43\x80\xab\x1f\x6f\x28\x28\x74\xc4\xf8\xd3\x8c\xd6\xb0\xe3\xcd\x1d\xbe\xff\xb2\xbf\xc4\x15\xcd\x51\x86\x1b\x34\x47\x59\x37\xb8\xd6\x1d\x1a\xf5\x97\x4e\x74\x7d\xd4\xb7\x1d\x43\x5d\xcf\x96\x6e\xbe\x89\x4f\x87\xdf\x8f\x02\x19\x95\xf5\x03\x79\x48\x69\x46\x02\xfc\xdd\xff\x1a\x05\xb3\x24\x9b\x91\x34\x28\x71\x52\x1f\x2a\x16\x5d\xc3\x56\xee\x48\x18\xf8\x09\xf6\xdb\x51\x10\x60\xb1\x43\xd2\x9b\x35\xaf\xfa\x73\x1c\x24\x6b\x9e\xcf\x92\x15\xe5\xe0\x85\x12\x60\xf9\x22\x67\x4c\xda\x72\x8b\x5f\x8b\x7c\xb6\x16\x5d\x35\x37\x8a\xdd\x60\x91\xb3\x65\x80\x83\x65\xf2\x45\x83\xa9\x05\x4b\x9a\x99\x67\x40\x11\xbb\xcb\xd3\x39\x5c\x90\x30\x92\xcc\xf3\x2c\x7d\x84\xc7\xbf\xad\x29\x03\x12\x05\x49\x25\xea\xf7\x5b\xca\x88\x36\x50\x2f\x56\x24\x4d\xc1\x2a\x27\x10\xe7\xd2\x8d\xba\xfb\x09\x38\xe5\xa9\x60\xb1\x2c\xc2\x12\xc1\x5a\xd7\x49\x2c\x73\x53\x1b\x15\xdb\xe1\xb9\xb3\x4f\xde\x90\xe5\x59\x18\xac\x92\x82\x13\x07\xb8\x85\x28\xe5\x8c\xe8\x4a\x83\x5a\x67\xe5\x98\xad\xf9\xb3\xd2\xd3\x6c\xd5\x29\x47\x89\x6f\xd6\x37\x37\x29\x29\x20\xda\x81\x98\x89\x2b\x46\xf8\x2f\xe4\x11\x34\x23\x3e\x73\xb0\x7c\x4c\xa2\xcf\xe4\xf1\x24\x9f\x4b\xae\x60\x0b\xf5\x10\x61\xee\xb8\x70\xf1\x09\xd8\x1f\xfa\x53\x8f\x5c\x37\x4c\x3b\xca\x48\x00\x53\x4c\x36\x27\x52\x99\xd5\x31\x5f\xe2\x59\x33\x74\xce\xb6\x3a\x11\x13\x8b\x58\xcd\x7a\x27\x67\x11\x06\x44\xf4\x82\xea\x3a\x82\x70\x11\xaa\x45\xb2\x9f\xe9\x55\xc2\x4d\x48\x67\x58\x2a\x0d\x02\xc5\x2c\x59\x91\xfd\x15\x23\x45\x61\x25\x86\x69\x7e\x96\xd5\x53\xc3\xeb\x7d\x9a\xd5\x53\x5e\xac\x9b\x1e\x6b\xed\x6d\xc2\x86\x52\x6e\xc6\x5d\x90\xfa\x4c\x1e\x3f\x8a\x7a\xd4\x4b\xfd\x4c\x1e\x1b\x15\xfc\x4c\x1e\x3f\xad\x9a\x65\x36\x67\x85\x2a\x4f\xd0\x10\xf2\x8b\x4d\xe0\x6d\xfe\xd0\x68\xa1\x48\x37\xcf\x1f\xac\x16\xda\xa6\x6d\x85\x6d\xb5\x94\x3b\xd1\xbb\xeb\x2c\x97\xf9\x40\x10\x4e\xdc\x94\x72\x82\x20\x09\xef\x6d\xf1\x90\x83\x41\xc3\x92\x38\x47\x4f\xac\x85\x31\xca\x6b\x8c\xd1\x38\xc1\xd9\xa4\x94\xc0\x34\x1e\xb6\x2b\x1f\x0c\xf2\x30\xc1\x19\xea\x01\x6b\x6c\xd7\x47\xad\xaa\x00\x0d\x06\x59\x54\xf0\x7c\x25\x4e\xb6\xe4\x36\x91\xf3\xdb\x8a\x15\x90\x74\x3e\x63\x7c\x77\x9c\xff\xa8\x20\x7c\x53\xce\x92\xac\xa0\x82\xc8\x75\xee\xd9\x14\xe4\xe4\x9c\xad\x19\x23\x19\x07\x7d\x19\x66\x9e\x97\xda\x48\x4f\x3c\x83\x54\x61\xfd\x8e\x09\x06\x90\x0a\xf2\x85\x9a\xbf\xca\xf1\x9a\x45\xb0\x26\x07\x03\xf5\x60\xf8\xa8\x17\x89\x8c\xee\x9d\xef\x7f\xb9\xc0\x78\xc3\xf2\x87\x82\xb0\xfd\x5d\x31\x1b\xbe\xc6\x6a\xa0\x6e\x8c\xd0\x5d\x08\xc5\x09\x2e\xda\x5c\x97\xd6\x35\x33\x59\xbf\x1b\x73\xdc\xce\xc0\x35\xf8\x81\x60\x82\x33\x92\x30\x52\xf0\x8b\x05\xc4\xee\xf0\xcb\xb5\x12\xe8\x24\x61\xea\xb6\x02\x67\xb1\xe3\xfb\xa6\x44\x14\x5f\x38\x7c\x8d\x62\x13\x72\xdb\x28\xd7\xf7\xdd\x01\xcb\x2b\x5f\x73\x09\x98\x93\x59\x6e\x2e\xbc\x27\x84\xc9\xaa\x1a\x65\xa9\x2b\xff\x1b\xe5\x77\xde\x10\x59\xad\x4d\xd0\xf4\x09\xf8\x7d\x6d\x29\x81\x11\x46\xb2\x39\x61\xad\x61\x69\xed\xe5\x14\xe9\xd4\x1a\x81\x40\x9d\x0e\x12\xf9\xf4\x9b\x49\x32\x3a\x80\xb9\x28\x89\xd8\xd7\x7a\x75\x79\xc6\xb7\x35\x18\x6d\x4f\x4c\xa3\xbb\xa4\x78\x7b\x71\xee\xd9\x92\xc9\xd1\x3c\x9f\x01\x97\x14\xc1\x4c\xbe\x02\xde\x2d\x67\x21\x41\x23\x65\xfc\x64\x8a\xd7\x45\xd5\xb0\xfc\xe4\xeb\xb6\xca\x9b\x4c\xa6\x9c\x9b\x7c\xfe\x58\xf5\xd8\xd9\x5c\xf2\x74\x0f\x34\x4d\xcf\xe0\xb4\x57\x4d\x1c\xad\xf1\x9c\xce\xeb\xaf\x20\x66\x41\x4a\x12\x76\x29\x07\x6b\xed\x0b\xe9\xdb\x91\x1f\x74\x47\x54\xc7\xf4\x55\x03\x6a\x61\xf6\x39\x15\x6a\xbc\xab\x26\x51\xc5\x4f\xad\x31\x4f\x6e\x85\x78\xf3\x55\xfc\xaa\xe9\xa1\xcd\x26\x08\x34\x94\xb3\x22\xbc\xd9\x84\x6e\x1a\x75\x28\x3b\xd0\x1d\xa8\xc4\x12\x3c\x16\x98\x87\x6d\x11\x8d\x9c\x9e\xb0\xf2\xe8\x50\x73\x1c\x95\x65\xaf\x88\xfe\xf5\xdf\x3e\x9d\x5e\xfe\x3e\x3d\xfb\x70\x7d\xfa\xd3\xe5\xb1\x3c\xe5\xc3\x34\xfa\x53\xdd\x59\xc6\xae\x9a\xf1\x6b\x3b\x02\x18\x45\xed\xc5\xac\x4d\xeb\x74\xaa\x91\xfb\xd5\xf9\x56\x4a\xa3\xf9\x59\x5d\x45\xe2\x28\x80\x67\xbb\x8f\x21\xbf\x01\x8e\x75\x10\xd9\x3b\x75\xdb\xde\xcc\x43\xf4\x64\x6d\xc8\x1c\x02\x32\xea\x00\x49\x92\xab\x29\xe2\xa7\xb2\x73\x6d\x9a\x76\x67\xdb\x0f\xc6\xdd\x98\xc5\xbb\xa2\x68\x75\x12\x80\xeb\x55\xfe\xf6\xb6\x79\xf5\x61\xe8\x4e\x7f\xaa\xfa\xac\xba\x71\x7e\xd1\xb9\xfe\xbc\xb3\x5a\x5b\x63\x75\x61\xe3\xee\xe2\xa7\x65\xbe\x2e\x08\xf0\x4c\xa3\x00\x9e\xf3\x7b\xd1\x48\x78\x4c\x49\x72\x4f\xf4\xeb\x35\x0f\x4a\x3c\x8f\xf3\xfa\x85\x01\x91\x62\xe0\x13\xcf\xd7\xb3\xbb\x82\x27\x8c\x8f\x02\x78\xbe\x12\xcf\x01\x86\xe7\x65\x2e\x08\xc1\xe3\x79\x7e\x4f\xd4\x5b\xb1\x1d\xcb\x97\xa7\xd9\x5c\xbd\x53\x02\x93\x7c\x7d\x22\x15\x0d\x42\x6c\x10\xe2\xc1\x28\x50\xf2\x03\xbc\x59\xaf\xe0\xf7\xa7\x15\xfc\x02\x51\x05\x5e\x7c\x94\x42\x0b\xd4\x5a\xe6\x82\x47\x99\x0f\x1e\x45\x4e\x78\x10\x79\x55\x24\xa2\x25\xc9\xd6\x2a\xb6\xc3\x17\x7e\x4e\xb2\x75\x80\x67\x29\x9d\x7d\x1e\x05\x33\x69\x8b\x35\xbf\x49\xd5\x8b\x79\xbe\xbe\x31\x26\x5a\x40\x47\x36\x0f\x1e\x65\xf3\x40\xd0\xa2\xd9\x28\x50\x22\x9d\x7a\x93\xaf\xb9\x7a\x75\x21\x64\xb0\x46\xdf\x9f\x4a\xc1\xb2\xd1\xf9\xef\xc5\x73\x80\x8b\xf5\xcd\x92\xf2\x51\x20\xff\x06\x18\x44\xf8\x91\x96\xe4\x95\x94\x1b\xcc\x74\x24\x1c\x96\xdc\xaa\xf1\x10\x8f\x6a\x38\xc4\xa3\x7c\x21\x9f\x55\xf1\xe2\x51\x95\x2e\x1e\x55\xe1\xe2\x51\x95\x2d\x1e\xc5\xd4\x90\x2f\x2f\xee\x65\xca\x7c\x25\x7e\xe7\x2b\x4d\x6b\xae\x29\xcd\x83\x12\xb3\x3c\x37\x27\x62\x20\x4e\xd3\x60\xdb\x09\xa3\xed\x86\xe5\xa2\xf9\x59\x82\x89\x17\x35\x97\x71\xb8\x4d\x03\xac\x96\x46\x64\x7d\x3b\x82\x09\x04\x19\x94\x92\xa8\x54\xd2\x5b\x30\x94\x80\xd7\x62\x29\xed\xe5\xfc\x85\xa8\x31\x3d\x69\x88\x2f\x23\x32\x50\x5b\xbb\x60\x35\x25\xc0\x5c\xc1\x6b\x49\x09\xd3\x21\x66\xa7\x93\xc8\xbf\x0b\xcf\x61\xb4\xd9\x14\x35\x93\x43\x14\xe6\xc6\xc3\xdb\x40\x36\x26\x47\xc9\xa8\x85\xeb\x49\x10\x92\x18\x6c\xef\x69\x01\x11\x7b\x43\x85\x53\x22\x8e\x69\xaa\xf6\x9a\xca\xc9\x5c\x86\xc4\x2a\xaa\x63\x4b\xe4\x4f\xe6\x73\xb0\xbb\xf0\x66\xc5\x7b\x79\x44\x8b\x30\x88\x3c\xdf\x50\x15\x81\x53\xb0\xe8\x80\x54\x11\x06\x9f\x32\xd1\x92\x3e\xcf\xfb\xc9\x7c\xde\xff\x73\x23\xdf\x9f\xfb\x50\x61\x91\x40\xf4\x52\x5f\x1d\x9a\xfd\x30\x18\x86\x79\x54\xa8\x96\x6d\x36\xf9\xf8\x60\xa2\xb9\x07\x34\x0c\x50\xd4\x3f\x4f\x3e\x93\x7e\xb1\x66\xa4\xff\x98\xaf\xfb\x05\xe1\x7d\xab\x9b\x05\x3d\x7e\x47\xfa\x62\x7e\xf5\x73\xd6\x4f\x32\x43\x59\x30\xd2\xea\x4b\x14\x20\xe3\x4d\xb2\x16\x1f\x32\x04\x9e\x36\x96\x63\x61\xb8\xd6\x50\x87\x30\xbb\xd4\x04\x0c\x73\xbc\xc6\xd9\x78\x3d\xd1\xb3\x4e\xbd\xf7\xf9\xb0\x18\x57\xed\x67\x8c\xbb\x9a\xb6\xbe\xa9\x0c\x8c\x86\x6b\x21\x87\xc0\xed\x27\xde\x3b\x30\xbe\x40\x80\xf0\x91\x39\xac\x10\x03\x63\x7d\x5a\x62\xea\x25\x0b\xce\x04\xc7\x5a\xee\x0a\x83\x79\xc2\x93\x7d\x35\x5a\xfa\x6a\x8b\xc6\xc6\xf6\xa5\xc9\x34\x8c\x33\xd0\xea\x01\xab\x67\x94\x32\x24\x32\xa2\x5c\x81\x93\x38\x57\x37\x58\x3d\x0a\x1e\xae\xaa\xe7\x15\x30\x2e\x20\xe1\x3e\x49\xd1\x30\x8f\x28\x27\xcb\xb0\x40\xbd\x83\x38\x8e\x53\x70\xd3\xaa\x7c\x2d\x1b\x75\xdb\x0f\x24\x84\x0a\xd5\xf0\xb4\xdb\xea\x99\x4a\x05\xe0\x04\xa1\xb2\xa4\x8b\x90\x56\xd2\xd7\x2c\xde\x3b\xc0\x8b\xf8\xe0\xf5\xa2\x72\x24\x5a\x54\xf8\xb9\x74\xbc\x98\xf4\xee\x06\x83\xbb\x08\x36\x07\x70\x55\x8f\x63\x36\x18\x84\xb3\xf8\x4e\xf5\x35\x03\xd0\x83\x99\x71\x09\x9a\xc9\xeb\x49\x73\xc9\x77\x37\xe6\x13\xdd\x39\xe2\x19\xcf\x63\x8e\xeb\x98\x0a\x52\x95\x62\xd6\xb8\xdc\xe4\xe4\x28\x06\xe7\x70\x20\xdc\xcb\x9d\xa4\x32\xf5\xcd\x28\xaf\xbe\x84\x04\xef\x1d\x8a\x7f\x3c\x12\x4c\x04\x06\xa4\x99\x84\xa6\x98\x47\xc5\x8c\x11\x92\xfd\xbb\x79\xfa\x1d\xf3\x68\x06\x26\xae\xff\x6e\x9e\xe0\x1d\x67\xe9\x2f\xe4\x11\xf3\x28\x49\xb9\x7c\x28\xee\xe8\x42\x3d\x0a\x46\x4c\x3e\xdd\xac\x39\xcf\x33\x60\x22\x53\xc1\x8a\x48\x3d\x7f\x9b\xe1\x0b\x33\x77\xba\x5a\xf9\xcf\x75\xb4\x42\xc7\x48\x45\x46\x98\x5d\xc6\x9e\x9d\x7f\x9c\xbb\x01\x9b\x2a\xc9\xd9\x04\x3e\x64\x31\x71\xab\xf3\x9a\x0f\x06\x10\x4c\x26\xca\xf2\x39\x11\x9b\xd3\x60\xa0\xfd\x13\xd9\x66\xc3\x24\x5e\xf3\x5e\x78\x80\x67\x91\xc2\x9e\x2b\x50\x28\xd6\x2f\x7a\x8d\xbc\xeb\x8d\xa3\xa3\x2c\xe4\x78\x15\xce\x31\x41\x68\x04\xc1\xc8\xb7\x2f\x9e\xc1\x80\x56\x19\x70\x25\xbe\x7f\xc8\xe7\xa4\xec\x11\xb1\xed\xc2\xd8\x69\x40\x8b\x30\xc7\x4b\xa9\x3f\x84\xe9\x70\xef\xed\x0b\x3e\xf1\x80\x9d\xe8\x7e\xe8\xcd\x73\xb1\xfd\xb4\xd4\x5f\x22\x77\x88\x5e\xc9\x00\x3c\x57\x86\x9c\x03\xf2\x2a\x10\x7a\x08\x88\xec\x75\x0d\x64\xe5\xb3\xb9\x27\xfd\x33\x25\x67\xf6\x06\xd4\x96\xd2\x47\xb3\xd4\xe7\x8b\x17\xd1\xc0\xee\xa9\xc1\xa0\x53\xcf\x41\x35\xa9\xac\xa6\xf4\x02\xad\xf5\x9f\xc4\xc4\x68\x8c\x32\xf2\x76\x2c\xc7\xf7\xa8\x94\x75\x24\x51\x9e\x85\x7c\xa8\x8e\xb3\x00\xeb\x73\x4d\x7a\xac\x34\xbb\xd6\xdf\x97\xa0\x6a\xcc\xac\xed\x97\x43\x68\x50\x5e\xdb\x7e\xc3\x03\x9c\x5a\xf2\x23\x82\xf0\xa0\xa2\x8f\x6b\x75\x18\x37\xfa\x60\xe2\xab\x0b\x89\x94\xd4\x2b\xe7\xb8\xbd\xd1\x66\x62\x77\x05\x34\x4c\xa7\x40\xb3\xe1\x4a\x57\x4f\xee\xb8\x7a\x2a\x53\x0e\xb9\xef\x52\x60\x52\x00\xc8\x47\x62\x64\x46\x69\x52\xf0\xb3\x2d\xfb\x2f\x3e\x50\x40\x22\xc9\xd6\x33\x22\x57\x7b\xaf\xb4\xe8\xa8\x6d\xa3\x10\xf0\xa9\x8a\x0e\x92\x88\x3d\x3d\x31\xfb\x2a\x41\x38\x93\xf8\x05\x09\x84\xfa\x81\x10\xf8\x0d\xdd\x09\xa0\xc8\x49\x1b\x8c\xed\x1c\x18\xb1\xe6\xc9\x11\x6f\x63\xa8\xf4\x3a\xe9\x78\x6c\xbb\x28\x4d\xcd\x05\x8b\x88\x82\x08\x75\x67\x24\xf3\xb1\xb8\x63\x36\x91\x9c\x9a\xcb\xa2\x71\x14\xe5\x8b\x45\x58\x4d\x97\xbf\xfc\xc5\xc2\x4f\xb5\xb8\x3f\x59\x90\x9f\x8b\xdb\x7d\xdf\x5d\x62\xed\xb3\xd9\xd4\x8c\x05\x61\xcd\xfa\x19\x05\xae\x4a\x7d\xde\x59\x7b\xa0\x05\xee\xaf\x8b\x5a\xbc\x55\x53\xde\x4d\x4c\xae\x89\xc5\x12\x3e\xb1\x6a\x11\xa9\x8d\xb4\x7b\x21\xbe\x97\x79\xa7\xc7\x9e\xdc\x8d\x4e\x3f\xfc\x1a\x4d\x9b\xdf\x7b\x0d\x9a\x39\xf6\xd1\x19\x0c\x98\xd1\x7f\x86\x34\xae\x62\xe4\xd2\x25\xf4\x98\xa2\x82\xf7\xf2\xc1\x80\x1e\x51\xb9\xa8\xc4\xae\x27\xb6\xed\xfa\x6f\xb9\x76\xaf\x59\x92\x15\x0b\xc2\x02\x34\x1a\x07\x46\x1e\x0c\xb0\x92\xff\x02\x23\x00\xaa\xe7\x54\xca\x7a\x81\x16\xf6\xe0\x11\x62\x47\x29\xf1\x2e\x98\x34\x31\x3d\x08\x7a\xd2\x85\x2f\xe8\x97\x9f\xf3\xfc\x73\x31\x26\x93\xf8\x69\xc5\xf2\x55\x21\xca\xb5\x2b\x32\x29\x4b\x34\x6a\x76\x48\xbc\xa7\x82\x84\x25\x71\xae\x23\x20\xd8\xc3\xd2\xe1\x0e\x6c\xa7\xe6\xe5\x59\x71\xdc\x77\xcd\xc4\x17\xaa\x68\x5a\x95\x32\x1e\xef\x60\xd2\x5d\x37\x57\xf7\x09\xdc\xdd\x54\x89\x2a\xf8\x02\x88\x3a\x12\x15\xab\x94\xf2\x30\x78\x15\x20\xcc\x62\x3e\xd6\xa7\xcb\xfe\xa1\xc1\x84\x72\x5e\xc6\xc1\x34\x18\x32\xcc\xa3\xbf\xe6\x34\x83\x6c\xa5\xaf\xd9\x0a\x62\xcc\x85\x99\x6a\x40\x5c\xca\x20\xac\x62\xa3\xd6\x18\x5a\x32\xbc\x8e\x25\x92\x1a\xbc\xca\x30\x30\x30\xa4\xfd\x87\xa4\xe8\x67\x39\xef\x2f\xf2\x75\x36\xef\x3f\xdc\x91\xac\x2f\xfa\x8c\x66\xb7\xfd\xf5\xaa\x9f\xf4\xa1\x47\xfb\xda\x1c\x35\xea\x5f\xdf\xd1\xa2\x4f\x8b\xfe\x32\x2f\x78\x3f\xa5\x9f\x49\xfa\xd8\x9f\xaf\x41\xba\x5d\x26\xd9\x3a\x49\xd3\x47\x75\xdf\xc4\x69\xc2\x05\x99\x24\xeb\x4b\xe0\x57\xc1\x2b\x44\xfd\x2b\x42\x46\xfd\x3b\xce\x57\xa3\x57\xaf\x6e\x29\x8f\x68\xfe\xea\xf4\x97\x8f\xab\xec\xd8\xde\xc3\x95\x75\x6b\x65\x06\x1b\x0c\x39\xda\x6c\xbc\x1f\x32\x54\x86\x1c\x8b\x81\xb0\x02\x20\xd0\x12\x13\xcb\x10\xdd\x83\xd8\xc6\xff\xdf\xd8\x33\xc0\x2b\x5e\x4a\x5b\x6d\xc9\x8d\x3a\x3d\x21\x58\xaa\xcd\x66\x7b\x22\x30\x21\xe8\xb8\x7a\xda\xb1\x1d\x9f\x01\x46\xfd\xac\xa5\xa4\x8e\xd7\x60\x0f\x70\x4f\xa4\xae\x63\x30\x20\xd5\x2d\xc9\x91\xf5\x2c\xef\xea\xcc\x8d\x09\x00\x35\x3a\x1e\x9f\x5e\xd1\x40\x0b\x71\x62\x3a\x29\x29\x4e\x3c\x4a\x21\x4f\x3c\x69\xc1\x4f\x08\x51\x0f\x77\x74\x76\xf7\xe3\xa1\xc6\x09\x13\x32\x12\x04\x60\xd9\xe5\x39\xe5\xd9\xb6\xfe\xac\x6e\x72\xfb\x85\xc8\xd2\xaf\x98\xd5\xfe\x32\x11\x33\x83\xb3\x7c\xbe\x9e\x91\xfe\x8c\xe5\x45\xb1\x5f\x50\x4e\xfa\x12\xd0\x49\xe4\xb9\x5f\xa7\x99\x90\x0d\x69\x4a\x39\x25\xc5\xeb\xfe\x2a\x25\x89\x60\xdf\x33\x50\xff\xf0\xbb\x84\xf7\x81\xaf\x2c\xfa\x37\x44\x64\xb8\x81\x59\x9b\x30\xd2\x5f\x81\xe8\x99\x3e\xf6\xa5\x6d\xcd\x3c\xea\xbf\xcb\x99\xc2\x28\xc9\x16\x39\x5b\x42\xbd\x71\x9f\x66\xb3\x74\x0d\x15\xbc\xcb\x1f\xc4\xac\x55\xf6\x5b\xc0\xc5\xf5\x1f\x12\x96\xd1\xec\x16\xf7\x0b\x42\x60\x92\x16\xa3\x57\xaf\x60\xc4\xff\x5a\x44\xb3\x7c\xf9\xca\x3a\x51\x8a\x57\xf7\x87\xd1\x97\x57\xff\x83\xe7\xb3\xe9\x8d\x6c\xf4\x3e\x34\x7a\xbf\x6a\x74\xd4\xbf\x92\xdd\xb0\x58\x90\x19\x27\xf3\x51\x3f\xf8\xf3\x90\x0c\xff\x1c\xfc\x59\xa1\xe5\x19\xb7\x50\xef\x20\xea\x7d\xc0\xf5\x5e\x18\x2d\x13\x9a\xc1\xee\x5b\xc1\xf0\xb9\x71\xfe\xbc\x87\xb4\x52\x90\x8e\xc9\xa4\xa7\x44\xe2\xcc\xba\x59\x16\xdc\x07\x30\xdd\x19\x2a\x55\xf8\x1d\xe3\xfa\x09\x90\x90\xae\x34\xe4\x3b\xb0\xa8\x82\xa9\xd8\x6c\x34\x46\xa1\xeb\x7d\xe9\xcb\x93\x37\xf2\x14\x6d\xe5\xc0\x96\xe6\x80\x03\x16\x6d\xe4\x45\xd2\xdc\x49\x5a\xf7\x6f\x74\x6f\x02\xab\xb8\x3e\x26\x6d\x5b\xbd\x73\x37\xad\x63\xbe\xdb\x18\x43\x66\x4c\x90\x4c\x80\xab\xed\x63\xaa\x87\x73\x2d\x11\xd0\xb0\x0c\x37\x68\x95\x50\x60\xe2\x58\xff\x7a\x15\x4a\x89\x06\x00\x33\xb6\xeb\x6c\x30\x08\x59\x0c\xc0\x42\x3d\x30\x1f\x96\x76\x0c\x72\x8d\xa7\x42\x06\xb2\xca\x58\x57\x23\x27\x5d\xbe\x01\x94\x5c\xbd\xb9\x84\x40\xc1\xb3\xea\x85\xe5\xb0\xed\x1b\xe0\x99\x68\xb3\xe8\xa5\x2a\x59\x88\xca\x5a\x09\x8e\xfb\xf5\x36\x2a\xcd\xd4\x92\xd8\x12\xe4\x93\x16\x47\x80\x85\x82\x61\xd3\x53\x41\x29\x7e\x9a\xa7\x65\x05\x3a\x5e\x69\x87\x2a\x81\x4b\xbd\x09\xb9\x94\xaf\x5f\xbb\xaa\x89\xd7\x88\x2e\x42\x6e\xe1\x60\x19\x2d\x81\x84\x5d\x24\xe9\xb9\xaa\xa3\x83\xde\x6d\x23\xbd\xe5\x0d\x34\x9f\xc4\x8f\x99\x56\x58\x40\x81\xe4\xa1\x7f\x45\x8c\x0d\x45\x62\x26\x3d\xe6\xa5\x65\xa6\x63\x4d\x8e\xf1\x04\x67\xd5\x0c\x71\x20\xe2\x74\x60\xd1\x1d\xbb\xc7\x5e\xb6\xd9\x64\x91\x1d\x6e\xc7\xf9\x4d\xe6\x9b\x8d\xbb\x97\x98\x8a\xa4\x36\x7b\xeb\xd8\x8b\xc8\x89\xe6\x60\x24\xcd\xaa\x56\xa6\x32\x9c\x63\x4d\x51\x7a\x29\x2d\x48\x7b\xb6\xa3\x34\xdc\x72\xbd\x21\x8b\x9c\x91\x50\xc8\x23\xac\x80\xd1\x41\x58\x3a\x6a\x67\xf3\xe3\x05\x98\x87\x81\x9e\x43\x7d\x29\x25\x14\xa3\x85\x71\x66\xae\x60\xd4\x0e\x30\x18\x84\xea\xc9\xc2\x3a\x52\x73\x6e\xb3\x69\xfd\x74\x65\x2e\x35\x3c\x49\xf2\xbf\x9f\x77\x48\x55\x74\x48\x94\x77\x48\xf3\x40\x6e\x3e\x53\x5e\x4b\x28\x44\xf9\x6a\x5e\x2e\x76\x33\x4c\x6d\x70\x22\xcf\xb5\x4c\x30\xb2\xb8\x5c\x04\x62\x71\x55\x5e\x67\x21\x03\x2e\x5f\x0d\xeb\x93\x74\x22\x1b\x91\xc8\x78\x93\xa9\x04\xb8\x72\x43\xa3\xa5\x5f\xa6\x70\xca\xd0\x1b\xaf\xc9\xb6\x2f\xdf\xe8\xad\x57\xc6\xb4\x0b\xb3\xa8\x80\x70\x50\x62\x4e\x9b\xd8\x42\xc8\xe8\xcd\x20\x30\xb5\xa0\x2b\x9d\x91\x0c\xb1\xcd\x26\x57\x35\xd4\x5b\x46\x6e\xc0\x95\x65\x9e\x2e\x1c\x69\x03\x4c\xa7\x9b\xe7\x5f\x17\x84\x1e\x69\x52\xf9\x62\x9f\x98\x5a\x4c\x0a\x7d\xfd\xcf\x23\x50\x11\x91\x39\xe6\x91\xd4\xfd\x29\xb5\x16\x7e\xa2\x85\xd8\xdf\x47\x7b\x07\x58\x99\x73\x8e\x8c\x00\xd2\xb8\x07\x36\x56\xe2\xbb\x8d\xa1\xa4\x29\x68\xb0\x62\x44\x9a\x56\x05\x1e\x23\x29\xc7\x8a\x34\x32\x49\xf1\x9e\x63\x28\x66\x89\x46\xea\x0e\xf3\x24\xc9\x84\x2c\x54\xc9\x2f\xa4\x9f\xf4\xcd\x10\xf7\x1f\x28\xbf\xcb\xd7\xbc\x9f\xf4\xcd\xd6\xd5\xff\xd8\xe4\x50\x1f\xf3\x35\xb0\xa4\xb0\x4b\x09\x4e\x53\x86\x23\x1d\x06\x40\xa0\x9f\x28\x5e\xb5\x6f\xa2\xdf\xbc\xd2\x5c\x40\x14\xa0\xd2\x32\xd4\xd2\x56\x59\x82\x07\x5f\x82\xbe\x9e\x27\x34\x75\x2d\xb5\xcd\x6e\x2a\xd1\xd9\x94\xf1\x95\xc1\x1d\xac\xce\x3b\x08\xc6\xa1\x3a\xa6\x11\xa4\x03\x13\xb8\x40\x92\xf1\xc6\x48\x89\x95\xf1\x73\x57\xaf\x42\xe6\xf7\x2a\xcc\xe2\xc3\xd7\xd9\x0f\x1c\x40\x92\xd9\x38\x73\xfd\xd4\xb2\x49\x6f\xe7\x90\xab\x43\x12\x3c\x03\xa4\x2f\x81\xe7\xa6\x81\x22\xc3\x7f\x5a\x44\x18\x18\x95\xf9\xfa\xaa\x25\x90\xec\x98\x4c\x54\x84\x57\x65\x8f\x20\xad\xd0\x33\x3b\x50\x63\xa8\x26\xb5\x8a\x69\x0c\x17\x58\xfa\x20\x7f\x9e\x57\x90\xb3\x26\x3b\x23\x8b\xd9\xb9\x5e\xad\x18\x99\x32\xb5\x04\xba\xe7\xba\x4b\x0a\xed\x22\xf0\x9c\x6c\x34\x9b\xce\xf3\xe5\x73\x72\xcc\xab\x60\x7c\x2f\xf7\x40\x72\xbd\xc3\x9e\xcc\x4a\x1e\x71\x6b\x2b\x79\x7b\x71\x3e\x32\x80\x1b\x62\xd0\xb5\xd1\x49\xb5\xdf\x54\x95\x19\x55\xf0\x19\x4e\x04\xae\xe7\x0d\xd9\x2b\x95\xcf\x3b\x74\x3e\xdd\x5a\x37\xa3\xfa\x27\xaf\xd7\x1f\x7a\xaa\x36\x2a\x5e\xe9\x70\x7e\xcf\xd7\xfd\x59\x92\xfd\x99\xf7\x05\x65\x2b\x67\x3f\x5f\xf3\x82\xce\x49\x1f\x66\x36\x51\x9b\x95\xd8\x88\x54\xec\xaf\xa0\xcd\xe0\xd2\xc2\x26\xf6\xda\x19\x7b\x6f\x62\x4a\x2b\xa0\x86\x1a\x28\xf6\x4c\x4f\xc4\xb6\x89\xd3\x31\xde\x86\xec\xf0\x67\xcd\x4d\x39\x7a\x2f\x8d\xb9\xa3\x63\x28\x69\x9b\xa2\x6a\xf6\xed\x1e\x41\xe6\x1b\x41\x21\xa0\xb8\x43\x98\x29\xdd\x9b\x52\x74\xcc\x4d\xfc\x4c\xe4\x1f\x9a\x2e\x05\xe8\x7c\x5b\xa9\x97\x08\xd7\xd7\x1d\xfd\x9a\x95\xe2\x6c\x38\xdd\xc6\xf3\x19\xcb\x4f\x67\x61\xeb\x2c\xcd\x73\x0b\xdd\xb0\x3a\x35\xa5\xfa\xff\xe5\x7b\x50\x7d\xb0\xab\x5d\xe5\xa9\x39\x10\x10\x0c\xdd\x70\x07\xc6\xfa\x9e\xf8\x2e\x31\xeb\x69\xe1\x1a\x8f\x6c\x31\x86\x16\xdc\x9a\x5a\xa0\x44\xc5\xdd\x00\xaf\x27\x1a\x2d\xd2\xe4\xf6\x96\xcc\xcf\x4c\xa3\x51\x18\x40\x27\xca\x6b\xdb\x28\x18\x72\x2c\x2d\x35\x47\x0c\x8b\x9e\x1c\x91\x12\xfb\x1c\x92\x33\x50\xd3\xa3\x90\x40\x4c\x09\x60\x02\x24\xf2\xad\x34\xe2\xaf\x4d\x8c\x1c\x3d\xef\x8e\xc6\x7b\xa4\x3c\xcb\xbf\xe6\x5b\xac\x7e\x7b\x46\x7e\xd5\xb4\x70\xec\x0a\x69\x35\x2d\xa4\x4d\x65\xeb\x38\xcb\xbb\x72\xa9\x40\xfa\x42\x79\x5b\xc2\x75\x66\x27\xfd\xd6\xbd\x6f\x73\x0f\x2f\x62\x3f\x1a\x4b\xb0\x1a\x9a\x97\xc9\x18\xf5\x0e\xe5\x55\x90\x37\x5a\x6b\x79\xd6\xee\x83\x6d\xdd\x7f\xbf\xba\x4d\xf3\x9b\x24\x2d\xf6\x19\x29\xf2\xf4\xbe\xde\x52\x79\x5f\xde\x1e\xd8\xed\xa5\x9e\x5d\x26\x14\x56\x07\x79\xcd\xae\x2d\xf4\x70\x92\xd2\x79\xc2\xc9\xbe\x60\x4c\xbd\x24\x6e\x53\xba\x5c\xee\x80\xe3\xec\xd2\xdf\xad\x31\x05\xbf\x32\xf2\x2c\xa6\x4a\x3b\x13\x7b\x9d\xab\xe4\xb7\x2a\x48\x21\xe6\xa8\x54\xaa\x2e\x4f\xb0\xda\xa4\x11\xac\x56\x32\xe8\xab\x84\x15\x10\x7d\x55\x62\x07\xc3\xcc\x69\x80\xee\x94\x38\x89\xb2\x9c\x2d\xc1\xad\xdc\x7f\x47\x22\x6f\x32\x47\xea\x26\xf3\x60\x82\xb3\x98\x8f\xcd\x3d\xa6\xb9\x4f\x0a\xf6\xe2\x98\x1d\xb1\x61\x30\x0a\x86\x42\x1e\x00\x1f\xf0\xf0\x55\xf8\x47\xb4\x99\x6e\xf6\x51\xf4\xea\x16\x7b\x45\xb2\xd9\x5d\xc2\x8e\x79\x78\x88\x22\x9e\x7f\x5a\xad\x08\x3b\x49\x0a\x12\xa2\x12\x89\xdd\x37\x89\xd4\xb4\x6c\x56\x4d\x7b\x46\x9a\x66\x82\x4d\x4c\xcc\x74\x0e\x19\x3a\x59\x7c\xb0\x63\x13\x8c\x33\x05\x6f\x22\x9f\x43\x86\x10\x16\x3f\x95\x54\xa3\xf2\x5e\xf0\x3b\xc2\xc4\x37\x30\x72\xb6\xed\x4d\x30\x03\x88\xe7\xa4\x2a\xb6\x15\xb3\xba\x36\x00\x20\x3a\x85\x2d\x5f\xe2\xda\x7b\x08\x87\x81\x13\xeb\x4d\xc7\xb1\xa1\x30\x36\x38\x89\x29\x2e\x4c\x64\x60\x3b\xfc\xb0\x8c\x02\x8d\xf0\x3a\x4e\x5c\x33\xa6\x57\x01\xc2\x69\x0c\x56\x4e\xeb\xa3\x24\x2a\x52\x3a\x23\xe1\x01\x5e\x23\x10\xb0\x41\xac\x74\x86\x7a\x30\x90\x69\x65\x6d\x66\x71\x62\xdd\x79\xf7\x92\x78\x36\x9e\x59\x77\xde\x52\x79\x08\x21\xb0\x2b\x14\x03\x14\xce\x4c\x31\xfb\x87\x48\xdd\x7d\x47\x01\x42\x3d\x55\x77\x27\xcc\x2e\x0a\x17\x32\xac\xc5\x5d\x1c\x80\x36\x4a\x02\xf1\x9f\x8b\xc7\x91\x24\x2d\xc4\x4f\xba\x78\x44\x82\xb7\xa6\x8b\x70\x2f\xd9\x6c\xf6\x98\xdf\x12\xfb\x2c\x83\x6d\xa4\xaf\xa3\x66\x8e\xfa\xff\x09\x91\xbf\xfe\x13\xf7\x97\xeb\x82\xf7\x6f\x8c\x64\xb0\xc8\xd9\xb2\xff\x9f\x62\xc5\x8d\x44\x07\xfe\x67\xdf\xdc\x40\x3c\x99\xcc\x04\xc3\x77\x86\xf5\x9b\xdf\xa4\x16\x04\xbc\x33\x29\x9e\x53\x26\xb2\x8e\x52\x0c\x7f\x12\xb0\xfa\x1f\x15\xb8\x31\x55\x47\x81\x7a\x15\x0c\xef\x4a\x31\x01\xdc\x30\x5b\x5e\xfc\x1d\xdf\x42\x68\x2c\xce\x38\x8e\x19\xc4\x78\x3c\x32\xef\xfa\x09\xef\x07\x43\x16\x79\xaa\x5c\x2d\xdf\x3f\xc4\xba\x15\x43\x3a\x0a\xb9\x58\x5b\x79\xce\x87\x41\x14\x0c\xeb\xfd\x0d\x5a\x40\x54\xcf\x17\x20\x88\x6d\x4d\x52\x98\x31\x50\xbe\x58\x7d\xc3\xb8\x91\x1d\x42\x91\x22\xb8\x7c\x48\x20\xbe\xd6\x75\x23\xa8\xb6\xbd\x69\x58\x31\x23\x70\x12\xad\x0b\x72\x99\xaf\x39\x61\x1f\x92\x65\x3d\x4b\x70\x93\x14\x74\x16\x80\x71\x26\x84\xbc\x90\x7f\xe2\x20\x18\xa9\x27\xf9\xa7\x5e\xf5\x69\x80\xac\xed\xe7\x5a\xf5\x99\x77\x15\x76\xeb\xc0\x9e\x61\x1f\x21\xea\x9d\xa6\x88\x34\x7f\x5a\x7b\x0b\x3d\x34\x27\xb3\x64\x49\xe4\x5a\xe1\xc8\xae\x50\xdb\xf5\x22\xcc\x84\x5a\x7f\x84\x1a\xd1\xc2\xd9\xdd\x88\x4d\xee\x24\xcf\x38\xcb\xd3\x94\xb0\x6f\x48\x14\x92\x7f\x43\x7a\xe7\x62\x26\xf9\xe2\x19\xba\x93\x49\x8e\xa7\xd5\xdf\x6a\x0f\x24\x30\x7b\xd5\x14\x53\x24\x7f\x26\xe9\x6a\x4b\x9b\xdb\xeb\x02\xaf\x3a\xd7\xa5\xbe\x5c\x64\xb8\xd5\x6e\x55\x14\xfb\x5b\x97\x82\x3a\x50\xfc\x9c\xe5\x0f\xd9\xbb\x9c\x89\x19\xda\x62\x36\xbe\xed\xc8\xa0\x8d\x42\x05\xbb\x2d\xf6\x55\x19\x78\x34\xa4\xc3\xe0\x4f\x01\xc2\x45\x0b\xaf\x81\xd7\xb1\x7b\x03\x8f\xd3\xf8\xe0\x75\xfa\xc3\x5a\x9b\xde\xa6\xda\xf4\x76\x16\xaf\xc7\x29\xa8\x32\x13\x19\x1d\x64\x86\x50\x31\x56\x50\x5c\x49\x56\x88\x25\x72\x9d\x1b\xdd\xec\xbb\x75\x9a\x66\xb0\xf1\xe1\x19\x9a\xc4\x7b\x07\xfa\x52\xa1\x10\xad\xde\x96\xc3\x7b\x33\xdc\x6c\x65\x16\x73\xeb\xa4\xfa\x0b\xd3\x11\x12\x8d\x95\x12\x70\x3d\x72\xc9\x26\x85\x60\xf7\xc4\x8a\xcd\x64\x30\xfb\x44\x39\x03\x22\x3c\x8b\xd3\x56\x1f\x57\x9b\xc9\xed\x14\x4a\xa1\x66\x6b\x53\x67\x92\xd3\xe4\xef\x8f\xd3\x34\x4f\xe6\xed\x49\x6c\x2b\xd8\x9d\x4a\x9e\x6d\x98\xd3\x17\xb2\x2a\x1d\x71\xe4\x75\x86\x5d\x28\xd0\xcf\xa3\x5a\x74\xa1\x9a\x67\xef\xa1\x47\x3a\x62\x22\xcb\xe4\x5b\x29\xb2\x35\xa4\x01\x83\xce\xce\x74\xed\x4c\x5b\xa9\xc3\x00\x76\x86\xe8\x67\x91\x4a\xbf\x95\xa6\x11\x49\x9f\x8d\xd1\xbc\x65\xbe\xaa\xe0\xca\xcf\x57\x5d\xb5\x3b\x31\x3f\x0b\xf0\xc3\x52\x74\x64\xb7\x34\x23\x56\x95\x5e\x20\x1e\x76\x11\x0d\x8b\xd8\x40\x41\x1b\x2f\x5f\xab\x4f\xe4\xad\xd4\x6c\x5d\xf0\x7c\xa9\x30\xa0\xe0\x8d\xed\xee\xf9\x35\x70\x02\x56\x51\xd1\xf4\x21\xe1\xb3\xbb\x33\xd5\x62\xe5\x81\xa1\xce\x2f\xa5\x1b\x09\x6c\x93\xf7\x7d\xdd\x39\xf2\x52\x57\xc2\x09\x3d\x59\xf7\x79\xa3\xbd\xc3\x12\x95\x78\x7a\x93\xe7\xfc\xea\x31\x9b\xf9\xee\xd2\x64\x3d\x45\x0a\x32\x3f\x12\x3f\x46\x21\x81\xb3\x60\x6d\x4e\x72\x70\x05\x54\xc6\x87\x8f\x60\x93\x19\x59\xcd\x3f\x92\x35\xac\x5e\xc4\xce\xe7\x51\xe3\x73\xa3\xdd\xd6\x47\x08\x48\x2b\x5f\x83\xc8\xc6\x2a\xbf\xd4\x88\x01\x97\x81\x03\x9d\x20\xb0\x12\x7b\x7a\x93\xad\x33\xdd\x95\x55\xd8\x7f\x56\xa8\x6e\x35\x31\x9f\x93\x19\xa7\xf7\xc4\x76\x86\xac\xb9\x01\x18\x57\x5d\xd9\x47\xf1\x9e\x0c\xed\xa3\x5d\x24\x75\xbf\x34\x81\xa2\x2c\x44\x95\x5a\x17\x4a\x7a\x53\x7d\x11\x3a\x9d\x02\x5c\x94\x6c\x9f\x34\x80\x9c\xe5\xcb\xd5\x9a\x93\x39\x6a\x89\xd1\x68\xee\xf7\x55\x26\x79\xab\x5f\x0a\xc6\x3d\x99\x5f\x64\xe9\x63\x88\xf0\x9c\xce\x4f\xa4\xe9\x88\x32\xbb\xab\xe9\xde\x1c\xe4\x10\x7b\x10\x44\xd3\x78\xc2\xb8\x60\xeb\x6a\xae\x12\xd6\x40\x44\x76\x1a\xd3\x49\x73\x3a\xbf\x82\xb6\x42\x1a\x71\x84\xab\x6e\x92\xf5\x6c\x2c\x10\x37\xbd\x11\xac\x1b\x64\xb0\x53\x72\xf5\x29\xac\xf0\x34\x3e\x5d\xbe\x6f\x9d\xe0\x4e\x0e\x87\x96\xc9\x0b\x7c\xa1\x6f\x02\x34\x1c\x71\x62\x67\x04\xea\x50\x11\xda\x60\x31\xab\x21\xa6\xda\x93\x13\x07\xf6\x8e\xa2\x59\x32\x07\x5e\xb5\x96\xa0\xa9\x99\xcf\x30\xb5\xac\xab\xa1\xe2\x61\x8e\x1b\x63\x89\x49\x29\x8e\x04\xa7\x73\x6a\xcc\xb1\xec\x88\x35\x4b\x4b\x7c\x4f\x8b\x9a\x8e\xb6\xc2\xef\xe9\x35\x7b\xb2\x67\xfb\xa1\x4f\xcd\xdd\xfb\x74\x5a\x19\xfe\x59\xdb\xbe\xee\x19\x79\xc7\xad\xd7\x73\x1e\xfb\x4e\xab\x1c\x84\xe4\x22\x2a\xee\xf2\x75\x3a\x97\xf7\xa0\x12\xab\x44\xea\x71\xaf\x08\xe7\xe0\x4a\x8e\x22\x7e\x47\x32\xdf\x32\x29\xd1\x88\x97\xb8\xa8\xc3\xa0\x90\x08\x74\xe8\x4a\x9b\xa0\x7e\x81\x5a\xe4\xda\x80\x7a\x1d\xdf\xe4\x8c\x93\x79\x25\x6d\x0e\x06\x34\x9a\xca\x0a\x9f\xd3\x19\xcb\x53\x7a\x13\xc9\x9d\xa3\xca\x54\xdd\xcc\xef\x4a\x29\xab\x9c\xe3\x02\xf5\xa0\x16\xdb\x4a\x3e\xaa\x2c\x36\x48\xb4\x94\x96\xc8\xa0\x52\x5b\x5b\x53\x86\x5a\xbb\x62\x65\x56\x29\xc6\x4a\x4e\x6c\x4c\xad\x79\x0e\x02\xaa\x78\x40\xa8\xaa\x88\x83\xad\xf3\xb5\xe7\xd8\x3a\xf3\x9c\x64\x65\x89\x7a\x85\x6b\x5f\xd0\xbe\x81\xfa\x4d\x2f\x3a\xc6\xb7\x7f\x2a\x7b\x3c\xe2\xf9\x69\x35\xf3\xc4\xbe\xa2\x0e\x35\x8e\xe0\xfc\xaa\x0e\xd4\xc6\x04\xc5\xb5\xcc\x21\x6a\x1e\xaa\x0e\x89\x82\xb0\x7b\x3a\x23\xa3\x7d\x6d\xb2\x27\x48\xe8\x67\x4f\x5e\xc7\xee\x02\x50\x7c\xe4\x42\x5a\xb7\x04\xf5\xd3\xdb\x4e\xa3\x3b\x0e\xbc\xdd\x71\x60\x77\xc7\x81\xec\x0e\x51\xa2\x74\x43\x8a\xa9\x76\xad\x82\x97\xce\x29\x08\xbe\xf5\xc5\xdb\x8b\x73\x55\x45\xb9\xd4\x84\xb8\x1e\x13\xfb\x17\xb6\x6c\x47\x69\xf1\x46\x32\x78\x47\x8a\x9e\xfa\x19\xbf\x91\x51\x43\x43\x2b\x89\x42\x61\xae\xd2\xb8\xe5\x99\xf7\xfa\x18\x50\x35\x06\xfe\xca\x53\xdb\xbd\x43\xac\x76\x62\x39\xf1\xe2\x20\xcb\x33\x21\xe0\x5a\xd5\x73\xf6\x0f\xb9\x81\x59\x6f\xac\x4a\xda\xaf\x55\x3d\x9d\x94\xfa\x08\xb2\x5f\x76\xae\xa7\x98\x2f\x7a\x42\xc8\x5a\xe8\x5f\x71\xf5\x61\xe4\x7e\xf0\x59\x68\x1a\x1a\x26\x0f\x94\xe9\x30\x5c\x3a\xb8\x61\x2b\x47\xe6\xf4\x8f\xc5\x6d\xb9\x7d\x69\xf3\x56\x56\x7a\xd9\x54\x9d\x5a\x35\x5c\xbf\x46\xee\xc4\x70\xf8\xab\xd0\xd3\x31\xf6\x14\xb1\xde\x23\x83\x33\x40\x9c\x68\x9b\xd6\x9a\x8c\x1b\x67\x72\xe3\x78\xb4\x0e\x47\x39\xc9\x62\x77\x92\xd5\x59\xc0\xb8\x59\x41\xec\xcc\xfa\xb8\xbe\x28\x30\xd1\xc7\x94\x31\x25\x23\x65\x88\x70\x1a\x17\x96\xac\x91\x96\xa8\xe7\x17\xb7\xea\xb2\xfb\x8b\xc1\x17\xbf\xd2\x93\xd4\xb9\xd0\x6b\xd8\x16\xb4\x0b\x79\x1d\x54\x15\x5f\x0d\x66\xc5\x24\x7f\xe9\x2f\xb4\x29\x1c\x4a\xa9\xd1\x4b\xc9\x70\x27\x5b\x45\xc9\xaf\xc4\xa1\x6a\x89\x0a\x68\x36\xf3\xfb\x10\x3d\x81\x5c\xd0\xaf\xab\xac\xe4\x19\x45\xb4\x7a\x0a\x59\xd3\x97\x25\x0f\x31\x17\x53\x6b\x1c\xec\xdf\xac\x67\x9f\x09\xdf\x9f\x25\xb3\x3b\x25\xf6\x4d\x2a\xbb\x76\x0f\x27\x05\x73\xd2\x2b\xf8\x3e\x8a\xfd\xf3\x36\xbe\x6b\x48\xbf\x1e\x24\x23\x52\xe3\x88\x5b\x84\xe2\x64\xcd\x73\x21\x25\x81\x19\xac\xba\x8f\x16\x0b\x05\x7e\x5b\x03\xa7\x19\x83\xe2\xab\x44\xe7\x3f\xe9\xed\xf7\x4f\x71\x6a\x36\xa0\xc7\xcd\x26\x7c\x14\x9b\xf5\xd2\xeb\x74\x9c\x19\xa7\xe3\xbd\xb4\xe6\x97\x3b\x18\x24\x51\x4a\x6f\x58\xc2\x28\xa9\x24\xee\x93\x9c\x91\xf7\xf0\xf6\x31\x34\x31\x1c\x01\x82\x40\x95\x18\xa2\x48\x7a\xe1\x22\x64\x4e\xcd\x64\x4e\x33\x52\x14\x6f\xc9\x82\x30\x96\xa4\x45\x7c\x58\x13\x21\xf5\x6f\x5f\x9f\x68\x2f\x07\xc5\x57\xa9\x2e\x55\x9b\x8f\xd5\xa9\x66\xf7\x74\xd2\xe9\x4a\x58\x09\x95\x6c\x3b\x5d\x31\xb2\x4a\x18\x79\x97\xb3\x9f\xaa\x8f\x5a\x1a\xd2\xf9\x55\xe2\x87\x84\xf2\x77\x39\x7b\x7b\x71\x7e\x49\x92\xf9\x63\x08\xc0\xd8\x34\x9d\xeb\x5a\x36\x65\xa2\x97\x33\x27\x66\x9e\xdf\x24\x05\x51\x3b\xa9\xcd\x4f\xca\x57\x26\x24\x93\x46\xc7\x02\xe4\x6c\x87\xcf\xf4\xe0\x43\xfb\x3a\x58\x45\x14\x2f\x71\x9d\x4f\x6d\x57\x8f\x78\xc9\x58\xae\x51\xfe\xbe\x6d\xcc\x69\x25\xcd\x86\xd6\x8f\xcd\x66\xa6\x9e\x90\x5e\x80\x46\xdf\x20\x3a\xfc\xad\xd9\x86\x0c\x37\x0d\x1a\x1d\xff\xb7\x16\x51\xd5\x19\xba\x10\x29\x53\xe4\xe9\xbc\x91\x7f\x3a\xd5\xf1\xa2\x1d\x69\x4e\x70\x7f\xf6\xef\x12\xd7\xe6\x87\x5d\xee\x9e\x5e\x9c\xf2\x6f\x44\x0b\x48\x72\x04\x5a\xf5\x62\x76\x47\xe6\xeb\x94\xa0\x50\x85\x16\xd1\x80\xdb\xc1\x3c\x5f\x42\xba\x40\x31\x5f\x7f\x0a\xa5\x32\xe3\x51\xde\xa0\xdd\xd0\x6c\xae\x45\xe3\x2a\x29\x2a\xb1\xfe\xd1\xe8\x6c\xc7\x45\xa7\x5a\x7e\x57\x8f\xd9\x2c\x04\x03\xb5\x05\x61\x97\x7a\xa9\x36\xb7\x9f\xe6\x2a\x1e\x0e\x4b\x9c\xcc\xef\x45\x3f\x3d\x2b\xdf\xfe\x3e\x3e\xd0\x40\xa1\x9e\xcf\xa0\xe7\xca\xa3\x3c\x9b\x11\xd5\x40\xc9\x07\xd2\xf9\x1b\x32\xcb\x97\x50\xd6\xa3\x58\x7f\x62\x63\xf5\x79\x11\x88\x0f\x1f\x59\xbe\xa4\x05\x41\x0d\xa5\x9e\xfa\xd0\xe3\xec\xf1\xa9\xd1\x09\x33\x31\xfb\xc5\x64\x2f\xdb\xf2\x79\x95\x87\xca\xd9\xda\xda\xd1\x9c\xd9\x06\xef\x2e\x95\x15\x52\xbc\x8e\x2e\xaf\x7e\xfd\x18\x41\x77\x9b\xa9\x67\x95\x20\x63\x88\xbb\x75\x04\xd5\x9d\xa5\xb2\x43\x18\xac\x37\x6c\x75\xbb\x98\x40\x36\xeb\x64\x29\x4b\xeb\x63\x64\x1a\xca\xb5\xe1\xa8\x10\xde\xfe\x2a\x61\x91\x31\x2f\x01\x66\xb8\x70\xb5\xe6\x76\x73\xbc\xeb\xa4\xd7\x69\xaf\xd7\x6d\xac\x24\x03\xb7\x73\x6a\xef\xe5\xd1\x00\xd3\x41\x1a\x26\xca\x9d\xaf\xaa\x16\x7c\x62\x6b\x30\x59\x0c\x94\x89\x65\xb0\x73\xbf\xc0\x3b\x96\x9e\x19\xe2\x00\x01\xfe\x8c\x33\xf3\x9c\x19\xce\x1e\x65\xcf\xf4\x24\x02\x13\x8d\x68\x71\x4d\x0a\xc1\xa0\xa1\x10\x6d\x36\x12\x95\x49\xd9\x5d\x1f\xcb\xcb\x74\xb8\x74\x2c\x90\xac\x05\x78\xec\x99\xb7\x57\x24\x61\xb3\xbb\x0a\x15\x70\xef\x00\xd5\x4e\x23\x14\x92\xe6\xc1\x77\xb4\x65\x58\x46\xbe\xfd\x0e\xd9\x93\x5e\x2b\xd4\xe1\x54\x03\x28\x28\x5b\x8b\xd9\x6b\x0e\x92\xbe\xbf\xb5\xf5\xf1\x95\x2e\xb8\x3e\xb5\xbc\xf9\xad\xb9\x86\x59\xbd\x53\x6d\x48\xf1\x97\x2b\x61\x76\x77\xee\x61\xbd\xee\xcf\x9e\xa8\x85\xbe\x97\x72\x4e\x67\xb9\xb3\x0d\x06\xa1\xff\xb3\xe4\x01\xd0\x16\x86\xc7\x09\xc9\xef\x4f\xe1\xf3\xd1\xb4\x20\xcc\x25\x46\x34\x2a\xb7\x96\xa2\xe2\xf5\xa3\xa6\x92\xb3\xba\x31\x06\x35\xa7\xbd\x17\x8a\x4e\xf0\xa8\x18\xa5\xda\x93\x35\x0e\x56\xa3\xbe\x84\x7c\xbc\x55\x37\x99\x45\x50\x07\xc1\x3b\xa0\x48\xce\x20\x97\x77\x61\xf9\x43\xb5\xd6\x33\x7b\xad\x93\x52\x9a\x27\xf7\x6e\x5d\x5d\x1a\x54\xa5\xa9\x4b\x73\xb7\xb2\x6d\xde\x47\xda\x7f\xb8\x66\x9f\xab\x95\x5c\xf6\x45\x03\xd6\x3c\x8b\x61\x59\x6a\x3a\x35\x8f\xb7\x37\x7e\x92\x7c\x9b\x37\x32\x94\x27\x8a\x60\x59\x53\xb2\x41\xf9\x23\x69\x04\xa4\xcb\x77\x53\xf8\x15\xf1\x38\x8d\xea\xb8\x4e\xe0\x68\xfe\x57\x19\x04\xa7\xd6\x30\xcb\x4e\x02\xdb\x07\x8c\x56\x5d\xdb\xe5\x69\xfd\xc8\x48\xec\x56\xa2\x4e\xc7\x6b\x9e\xbf\x37\x4a\x13\x6f\xd2\xbb\xa4\xb8\x13\x49\x7f\x4e\x8a\xbb\x5d\x49\x69\xc1\x73\x21\x6d\xcc\xa2\x9f\xe5\xe3\x8e\x0c\xa0\xfc\xc2\xb3\xe8\x43\x9e\x11\x6f\xd2\xf0\x00\xcf\xa3\x15\xa3\xf7\x09\x07\xbb\x86\x7b\x31\x6e\xad\xc3\x02\x86\x76\xb3\xe8\x0d\x08\x9c\x60\xdf\x58\x1f\x12\xad\xf7\x94\x3d\x58\xcd\x8a\x2b\xf9\xbe\xd6\xcf\xf5\xd4\xc1\xd4\x3c\xb9\x97\x58\x21\x81\xed\x6c\x25\xaf\x1a\x8e\xab\x41\xd0\xb3\x1b\x4c\x39\x88\xd6\x9a\xde\xc4\xb7\x96\xb6\xe5\xa6\xf5\x72\xbb\xa6\xa1\xf8\xf6\xd8\x5c\x3b\x0d\xc1\xa5\x19\x82\xd7\x54\x85\x02\x50\xc5\x98\x4c\xe2\x0c\xec\x4b\xc7\x13\x2c\x1e\xa4\x63\x39\x47\x98\x0d\x06\x3c\x94\x18\x09\x36\x17\xd4\xf4\xea\xa7\x60\x84\x8a\x59\xf4\x40\xb3\x79\xfe\x30\x18\x78\x1c\x00\x4f\x2a\xc1\x5d\x7b\xfa\x8a\xb1\xb6\x5e\x87\x04\x3f\x49\x70\xcd\x11\x97\xa6\x8e\xa4\x44\x3d\x4d\x34\xd2\x6b\x4c\xa6\xcd\x51\x29\xea\x3a\x18\x40\x8d\xb7\x6d\xd5\x21\x07\x06\x83\xe8\x83\xa2\xee\x76\x7b\xfa\xe1\xd7\xe8\xf4\xfc\xcd\xe9\xe5\xf4\xfd\xc5\xf1\xdb\xe9\xcf\x17\x17\xbf\x5c\x6d\x36\x4f\x25\xa6\xf1\x53\x89\xf3\x98\xf6\xaa\xac\xf9\xd6\x81\xae\x99\x96\xb7\x42\x44\x75\xf4\x5b\x6b\x0e\x59\x16\xb3\x31\x07\x5b\x2d\x30\x6f\xaa\x10\x9a\xb2\xf1\xa1\x18\xbb\xef\x26\xa5\x76\x73\x93\x3b\xd7\x38\x48\x8a\x82\x00\x1e\x19\x2d\x60\x9d\x28\xbf\xca\x00\x07\x12\x31\x08\x5e\x06\x13\xcb\xd3\x7b\x1c\x18\x1e\x07\xb2\x99\xc0\xba\xf5\xac\x55\xc4\xdd\x89\x74\x78\xa9\xe7\xb4\xfc\x38\x4d\x26\x08\x6c\x3d\xc1\x7a\x5d\xd6\xb3\xa8\x55\x5c\xcf\xa5\x5e\x03\xb6\x99\x35\x00\xb3\x44\xec\xdd\x46\x55\xd6\xcd\xf4\xc9\xbb\xca\x9e\xe1\x59\x41\x8b\xd3\x4c\x62\xaa\x35\xb1\x48\x60\x45\x69\x07\x3f\x89\x88\x0a\xc8\x75\xec\x88\x8d\xf6\xf6\xd4\x5c\xfb\x00\xc1\x32\x2f\x3e\x5e\x9f\x5d\x7c\x38\x7e\x3f\x7d\x77\x7a\x7c\xfd\xe9\xf2\xf4\x4a\x4c\x51\x39\x0f\xdf\x5d\x1e\x9f\x9f\xfe\x76\x71\xf9\xcb\xf4\xe2\xcd\xbf\x9e\x9e\x5c\x4f\x2f\x7e\xfb\x70\x7a\x39\x3d\xbe\xfc\xe9\xd3\xf9\xe9\x87\xeb\x58\xa7\xfb\xe9\xfd\xd9\xf9\xf9\xe9\xe5\xf4\xe2\xc3\xf4\xfc\xe2\xed\xd9\xbb\xb3\xd3\x4b\xf3\xed\xe4\xd3\xd5\xf5\xc5\xf9\xf4\xe4\xe2\xfc\xe3\xc5\x87\xd3\x0f\xd7\x22\xf7\xf4\xe3\xe5\xc5\xbf\xff\xde\xc8\xfe\xee\xc3\xf4\xe7\xd3\xf7\x1f\xad\xcc\x1f\x8e\xaf\xcf\x7e\x3d\x9d\xbe\x3d\x3d\xb9\xb8\x3c\xbe\xbe\xb8\x9c\x5e\x7d\xfa\xf8\xf1\xe2\xb2\x59\xf2\xf1\x87\x9f\xde\x9f\x4e\xdf\x5c\x1e\x9f\xfc\x72\x7a\x3d\x7d\xf3\xe9\xec\xfd\xf5\xf4\xec\xc3\x55\xb3\x88\x8b\xcb\xdf\x8e\x2f\xdf\x9a\x6a\x5e\x4d\x7f\x3b\xbb\xfe\x79\x7a\xf5\xf1\xfd\xf1\xf5\xf5\xe5\xd9\x9b\x4f\xd7\xa7\x55\xa6\xf3\xd3\xeb\xe3\xf7\xd3\x6b\x20\xfa\x56\xd4\xf9\xe3\xe9\xe5\xf5\x99\x9d\xe0\xe2\xed\xa7\xf7\xa7\xd3\x4f\x1f\xce\xde\x9d\x9d\x80\x8e\xcd\x7c\x3a\x3b\xff\x78\x79\xf1\xeb\xe9\x5b\x51\x8b\xeb\x4b\xe8\x2e\x37\xc1\xfb\xb3\x37\x97\xc7\x97\x67\xa7\x57\xd3\xb3\xab\xcb\xd3\x9f\xce\xae\xae\x4f\x2f\x4f\xdf\xc6\x24\xd2\xc3\x10\x93\xe8\xed\xe9\xbb\xe3\x4f\xef\xaf\xcd\xc8\xb8\x3b\xc6\xd3\x36\x42\xa3\xbd\x43\xbc\xbd\x26\x55\x8a\x66\x33\xac\x6f\x2d\x7d\x50\xa5\x78\x4e\xd7\x8e\xf6\x0e\x70\xa7\x81\xab\x12\xb6\x4d\x81\x26\x29\x33\x7d\xaa\x4f\xed\x93\xaf\x59\x7f\x6b\xf2\x56\x04\x76\xac\x80\xd1\xde\x41\xd9\xf3\x8c\x53\x56\x39\x8f\x56\x7e\x4e\x19\x96\xeb\x4e\xa7\xb2\xc2\x9e\xe5\xd5\x39\xb1\x17\xee\x58\x9e\x12\x3e\x69\x2f\x8e\x09\xda\x6c\x48\x69\x4d\x18\xaa\x61\x15\x43\xba\x75\x92\xa1\xde\x8e\x49\x98\x68\xdb\x30\x43\xa8\x6d\x12\x55\xa4\x5a\x27\x7c\xa1\x6e\x77\x2b\x62\xcd\xf9\x56\x91\xf1\x2c\xa9\xb5\x72\x62\xb2\x08\xb4\x4c\x4a\x8b\x4c\xdb\xd2\x4d\x55\xd8\x96\x8a\xd8\x73\xe6\x6f\x55\xc0\xb3\x36\x94\x99\xf2\x1c\x69\x16\xda\x32\xfd\x9b\xe5\xb4\x6d\x70\x0b\x15\xdc\xa3\x22\xdd\xb6\x60\x2a\x9a\xad\xbb\xea\x1d\x10\x9b\xfb\x3a\x47\xaf\x2d\x4f\x0f\x98\x5d\x7b\x0e\xd9\x57\x56\xf6\xf6\xf5\x57\xd1\xd9\x72\x40\x48\x64\xa4\xa5\xa7\x3e\xd6\x62\x6d\xd6\xc8\x3e\x86\x96\x3d\x89\xb4\x5d\x91\xd8\xb1\xa4\x2b\x72\xbb\x4e\xbf\x7b\x97\x05\x30\xbe\x07\xdd\x4e\xff\x6d\x17\x82\xb5\x9b\x46\x8b\xb4\x0c\x35\xae\x7f\x4e\x21\x88\x5d\x17\xd7\x76\x29\x89\x78\x6e\xc8\x98\xfa\xe4\x46\x8c\x1e\x07\x55\x21\xc1\x44\x03\xf0\x03\xe8\x87\x75\x27\x0d\x97\x75\xd2\xbf\xaf\x92\xa4\x25\xd2\x98\xd7\x95\xbe\x15\x59\xc6\x98\xe7\xa2\xd7\x3a\xd6\xa7\x49\x09\x02\x3e\x0a\xa9\x0a\xc4\x11\xd3\x56\xff\xf4\x5d\xdd\xf4\xd5\x91\x78\xbf\x49\x8c\x69\xd6\xc4\xce\xa9\xdc\x56\xc4\xc1\x23\x81\xde\xe5\xdd\xa0\x10\x7c\x55\xc0\x2e\x70\x40\x82\xc7\x2d\xb1\x9f\x81\xad\xef\x36\xff\xb6\xde\x8a\xd7\xfc\xac\x25\x59\xd1\xa9\x36\x93\xdc\xf8\xc8\xa5\x32\xd4\xf7\xe9\x21\x61\x7e\xbf\xfc\x46\xe4\xfb\x76\x1b\x75\x25\x79\x5b\xd0\x94\xaa\x0f\x3b\x1b\x81\x6b\x12\x2a\xdf\x56\x03\x73\xa3\xdb\xed\x48\xdd\xd2\x06\xef\x72\x09\x78\x2e\xe1\x2a\xcb\x76\x23\x7e\xd5\xba\xdf\x12\xf6\xcc\x9e\xc9\x7d\x3d\x43\xa2\xa9\x18\xb5\xb3\xc5\xa7\x82\x66\xb7\x57\x9c\xd1\xd5\x8a\xcc\xdf\x49\x11\xe7\x5d\x9a\xdc\x16\x32\xbe\xc8\x5b\x31\xc8\xef\x14\xcd\x18\x6c\x31\xeb\xaf\xcc\xac\x11\xef\x62\x22\x6f\x38\x20\x11\x7c\x14\x89\xc1\xd9\x5b\xff\xba\x22\x49\x6a\x67\xd3\xef\x63\x12\x89\x2a\xc5\x62\x3f\x5b\x40\x20\x12\x10\x2a\xed\xf5\x96\xc4\x0e\x86\x49\x11\x27\x3d\x93\x4c\x73\x22\x49\x4f\x11\xd0\x9c\x85\x78\x01\x84\x35\x77\x90\xf4\x74\x89\xfa\xe8\x96\x6f\x74\x7d\xf4\xa9\x6b\xd2\x41\x8d\xf5\xf1\x69\xde\xaa\x56\xe9\x73\x51\xbc\xb7\x9a\xae\x4f\x37\xf1\xba\xd1\x69\xfa\xdc\x12\x1f\x1b\x9d\x7c\xaf\x4c\x18\x9a\x23\x59\xdd\x2e\xd7\x6f\xa4\xf7\x0f\x27\x65\xaf\x3e\x14\x8f\x5d\x46\x59\xf6\xae\x67\x9f\xa9\x6d\x08\x2f\x90\x76\x9d\xfd\xaa\x49\x5c\x85\x09\xe8\x80\xed\x4e\xa2\x25\x2d\x44\x0b\x2e\xa4\x49\xd2\xa7\x8c\xd3\xd4\xda\x29\xe2\x7a\x82\xb3\xf9\xb6\xaf\xee\xb7\xda\xe2\x88\xfd\xc7\x9b\x34\x85\x71\xa6\x5f\xaf\x99\xb7\xc0\xdb\xca\xa2\x8d\xaf\x6e\x3d\xf3\xc6\xf7\x46\x43\x93\xa6\x31\x65\x89\xd3\x78\xed\xda\x64\x79\xc7\xd2\x74\x77\x37\x90\x3f\xb1\x88\xee\xf3\xcf\xc4\xdb\x43\x3f\x1f\x7f\x78\xfb\xfe\xf4\xd2\x11\x59\x79\x0c\x5d\x62\x3e\x71\xa5\x23\xda\xd1\x65\xac\x57\x0b\x9c\x24\x93\xa9\xc2\x7d\x07\xa0\x73\x18\x75\x6d\x8b\xde\xbd\x3d\xab\x8a\x2b\x04\xda\x46\x0a\x82\x9e\x78\x65\xc7\xa7\xe0\x0d\x78\x2c\x6d\x64\x3d\x95\x82\x63\xb0\x55\x1f\xf7\x82\x85\xb0\x63\x19\x3c\x67\x05\x74\x9a\xe5\x8d\x51\xa8\xe7\xca\xaa\xc5\x50\x4f\xfa\x15\xd3\x5e\xc9\xa3\x89\x35\x89\x8b\x5a\x17\x37\xec\xd5\x9a\x6c\xd0\xd6\xf1\x7f\xf7\xe9\x03\xc4\x08\x17\xa2\xc7\xf5\xc5\xf5\xef\x1f\x4f\xa7\xa7\xff\x7e\x7d\xfa\xe1\xea\xec\x02\xf4\x48\xc7\x1f\x3f\x4e\x4f\xae\x2f\xdf\x4f\x2f\x2f\x3e\x5d\x9f\x5e\x82\x4c\x09\xef\xdf\x9f\x1d\x5f\x09\x79\xf3\xe7\x8b\xb7\x31\xf1\x98\x5d\xc5\x24\xaa\x64\x9b\xf3\xe3\x0f\xc7\x3f\x9d\x5e\x4e\xaf\xae\x2f\xcf\x3e\xfc\x34\x7d\x7f\x71\xf1\xcb\xa7\x8f\x31\x89\x14\xd1\xd3\x5f\x4f\x3f\x5c\x0b\xaa\xe7\xa7\x97\x3f\x9d\xc6\x24\x7a\x7f\xf1\xd3\x4f\x96\x3e\x0c\x6a\xf4\xb6\xaa\xa2\x48\x6a\xc5\x37\xd7\x23\xe5\xbe\xdc\x3b\xe8\xb5\xe7\x87\x8f\xaa\x14\x78\x96\x25\xc3\xa3\x5b\x29\x78\xb5\xab\x25\x90\xc8\xd3\x07\xf0\xde\xe9\x2a\xf9\xc6\xdb\xa9\xf0\x69\xfb\x78\xec\xb9\xe7\x91\x71\x97\x6b\x63\x7c\x55\x02\xb1\x96\xe4\xe3\xbe\x84\x5e\xec\x62\x6a\x6a\x89\x42\xcf\x15\xe4\x6c\xab\xcb\x79\x72\xbb\xbf\x4c\x56\x2f\x88\x89\xba\x1d\xe7\xe6\x39\x2e\x83\x0d\x7b\x52\xfb\x80\x16\xb2\x58\x41\xf3\x6c\xdf\x84\x43\x7f\x96\xad\x6a\x17\xb4\x1a\xdb\x4c\xb4\xcd\x48\x74\x69\x19\x89\x3e\xee\x32\xfa\x5c\xb6\x19\x7d\x7a\x6d\x4e\x77\x92\x6b\xb5\x21\x35\xe4\x1e\xdd\x48\xc5\x75\xb3\x55\x5c\xd9\xab\x6e\x73\x35\x3e\x85\xb1\xfa\xa8\xa6\x60\x77\x8f\x63\x3b\xdf\x2e\x29\xe3\x45\x65\x14\xcd\x32\xbc\xe7\xc0\x6d\x4c\x23\x63\x6c\xa1\xc5\x78\x1a\xe9\x3b\xca\x8f\x2c\xff\xf2\x08\x62\x2f\x7e\x7a\xa1\x7d\xab\x73\xa3\x0f\x56\x7f\xd4\x32\x8a\xba\x4c\x32\x19\xaf\xbc\x58\x33\xc7\xc1\xb1\x59\x52\x2d\x9b\x36\x9b\x6d\x5a\x59\x79\x93\xc7\x7b\x07\xff\x00\xeb\x4f\x28\xba\xd9\x18\x30\xd1\xa9\xec\x42\x67\x3e\x23\xd0\x56\xcb\x07\xc7\xa8\xcd\xf2\xb6\x94\xc6\x10\xb6\x7b\xa6\xdb\xd5\xd2\x5d\x09\x5b\xfd\xb0\xdd\xb9\xd3\x4a\x08\x15\xa2\x4d\xb7\xd3\x5d\x04\x1a\x19\x80\x50\x6d\x84\xfc\x56\x1d\xda\x12\xcd\x49\x1b\x06\xf6\x28\x5a\x81\xd6\x24\xac\x9e\x55\x65\xb0\x41\x51\x45\x35\xbd\x65\x3d\x26\xb5\xcd\x82\x9a\xd9\x3a\x14\x58\xa3\x53\x33\xc7\x31\x21\xc7\xa4\x1b\xe5\xda\x72\xa3\xb4\x3a\x0e\x10\xb8\x3c\x98\x1a\x56\x14\x4e\x88\x59\x46\x10\x97\x37\xe9\xac\x8a\xba\x52\x86\x19\x52\x20\xf4\x26\xc2\x39\x96\x31\x3b\x4d\x94\xcc\x62\x38\x44\x2c\xce\xc6\x74\x5c\x4c\x26\x38\x07\xc3\x61\x89\x90\x83\x19\x66\xd1\x0d\x20\xaf\x63\x16\x25\x0b\x4e\x18\xea\xe5\x11\xcf\x57\x45\xce\x78\x28\x7d\xba\xcc\x96\x79\x53\x55\xed\xc9\x18\x98\x8c\x88\x9e\xfc\x61\xd5\x42\x82\x03\x6d\x73\x15\xa0\xcd\xa6\x0a\x74\xa7\x27\x3c\xb7\x30\xe3\xa7\x2e\xf0\xbf\xe9\x71\x17\xde\x5f\x7a\x2d\x89\xcd\x06\xa0\x30\xe0\xa6\xbe\xf9\x4e\x99\x71\x8d\xc9\x44\x5f\xa0\x8a\xb5\x29\x3e\xb8\x31\x89\x75\x22\x6d\x46\x57\x59\x20\x31\x54\xaa\x8f\x63\x0e\x7d\x34\x89\x79\x59\xd6\xac\x94\xec\x59\x39\xf2\x44\x3b\xf6\xad\x9d\xb6\x84\xd5\xdc\x99\xd6\xa7\xbb\xfd\x33\xf0\x12\x95\x79\x7c\x33\xd7\xbc\xee\xbb\x44\x5a\xb6\x19\x27\x38\x41\x6e\xf6\xff\xf0\x49\xf3\x27\xa3\x1b\x98\xf1\x3d\xfb\x84\x89\xc1\x37\xd3\x0a\x52\x1f\x36\x8d\x8d\x30\xf1\xb8\x0e\xba\xd6\x59\xca\xfb\x48\x21\xc1\x58\x60\xef\x01\x7e\x12\xa2\x44\x4a\x78\x9e\x69\x7f\xc5\x7a\x62\x09\xb9\xde\x4c\x57\x55\xa9\x62\xfb\xb4\xdd\x95\x05\xfd\xea\xf1\x88\xb4\x8c\x7d\x24\xf1\x00\x70\xdd\x75\x97\x04\xb8\x25\xb4\x8b\x6b\x8e\xa5\x10\x21\x5f\x98\x1b\x6c\x28\x70\x30\xe5\xf9\xea\x3d\xb9\x27\xe9\xaf\x94\x3c\x68\x30\xa6\x00\x57\x41\x93\xf6\xf3\x35\x4f\x09\xaf\xe7\x07\xe3\x09\xfd\xad\x83\x35\x98\x95\xd5\x61\x92\x75\x3c\x58\xd7\xb4\x69\x4b\x86\xe7\x94\x54\x59\x50\xdd\x54\xc6\x59\x81\xb4\xf2\xad\x99\x77\xb5\x75\xcf\xd6\x8c\xcb\x2d\x19\xfd\x36\x5b\x7e\x77\x58\xc3\x6b\x2f\x22\x65\x60\xbb\xdd\x32\xac\xca\x10\x74\x28\x46\xaf\xaf\xfd\x45\xce\xf6\x41\x92\xb8\xa5\xd9\xad\x5e\x3b\xda\x6a\x97\xed\x9a\xa9\x46\x40\x91\x34\xf6\x93\x79\xb2\xb2\xec\x01\x2d\x29\x63\x5b\x81\x35\xa2\x10\x4a\xb4\x46\xc9\x14\x04\x9a\xcc\x63\xf9\xd1\x7e\xef\xab\x40\x73\x41\xb6\xd7\xf5\x2e\x3a\xf1\x15\x51\x27\xe1\x8b\x07\x81\xe7\x95\x09\xd1\x7b\x78\x8f\xca\x90\xdb\x66\x78\x92\x27\xae\x2c\xf0\xc0\x9a\x19\x9b\x3d\x0e\x2e\x68\x2e\xed\x5f\xca\x3a\xef\xc1\xb1\xce\x7b\xf0\xcb\xac\x5b\x50\x67\x3a\xf9\x3f\x36\x04\x50\x6f\xfc\xbf\x8e\x4e\x81\xad\x82\x72\x47\x94\x19\x73\x3c\x17\x96\xdc\x95\x86\x63\xb3\xf7\x40\x2c\x11\x9a\xea\x71\xab\x64\xaf\x62\xa7\xec\xb5\xae\x91\xdc\x2a\xca\xad\x77\x92\x4b\x3b\x8b\x72\x5e\x11\x68\x16\xb3\xc8\xbd\xc6\x64\x3e\xf9\x87\x55\xf3\xd2\x96\x8a\x04\x57\xff\x52\xff\x3f\x19\x68\x4a\x07\x89\x03\x7e\xbd\x67\xfb\x3b\x25\x05\xe9\x91\xcd\x46\x7b\x0f\xd8\xc8\x1b\x26\x41\x4c\x50\xaf\xb2\xfa\x76\x05\x84\xfa\x59\xbe\x48\xd2\xf4\x26\x99\x7d\x1e\x11\x27\x5d\x69\x5c\xa9\x6c\x67\x29\x56\x05\xa1\x08\x9f\x00\xdd\x0b\xbc\x12\xca\x86\xfd\x7d\xdd\xa7\xc7\x45\xdb\x68\x73\xc9\x39\x6a\xbc\x19\x35\x1d\x81\x62\x89\x8d\x0e\xae\x37\xea\x55\x65\x91\xc9\xaa\xbb\xef\x90\x5b\xbe\x11\x04\x21\xa7\x92\xda\xa9\xe8\xf9\x08\x42\x92\x51\x4f\x73\x2d\x45\xbf\x25\x2b\x71\xac\x67\x33\x4a\x8c\x9c\xd9\x40\x15\x32\x23\xb3\x03\xba\xa7\xe6\x81\xb1\x03\x8d\xe7\x2b\x25\xd4\xe6\xf8\x6e\x83\x36\xe9\x35\x44\xbb\x2e\xc0\x3f\x15\xf6\xb5\x47\xdc\x72\x8a\x06\x3f\x25\xd3\x57\x5b\x43\x1d\x4b\x7e\x15\xf0\xf5\xe5\xde\xed\xf5\x72\xfc\x4a\x9c\x0d\x0d\x59\x6a\xb0\x70\xa0\x24\x88\x48\x09\x56\xb1\x36\x66\x2b\x75\x91\xfa\x13\x2e\xf6\x43\x4e\xe6\x10\x4c\x33\x5f\x67\x1c\x40\x5a\x25\x85\xfe\x9f\x01\xc3\xf5\xcf\xb8\x7f\xb3\xe6\x7d\xca\xfb\x54\xc6\xed\xac\x42\x6f\xcb\xe8\x32\x94\x17\x7d\xb9\x3b\x47\x81\x06\xa3\xa9\x7b\x65\x70\x0b\x4c\x31\xa9\xab\x77\xc0\x26\x4d\x46\x3a\x2f\x71\xcb\x84\xf5\x8b\xdd\xd8\x8a\x9b\xee\x10\x04\x72\xaf\xc7\xae\xc3\x82\x8f\xc7\x31\xaf\x94\xde\xd0\x35\x26\x6f\x1a\x52\x33\x27\x9a\x98\x3a\xd0\x19\x08\x11\x12\xa6\xd3\x0e\x0f\xca\xc4\x5a\xd6\xfb\xdb\xee\x29\xbb\x15\x0f\xc5\xc3\x43\xa9\xbe\x1e\xbb\xde\x13\x75\x46\x72\x1d\x22\xe4\x67\xdb\xb1\xe1\xf3\x47\xfb\xc1\x30\x64\x2e\xee\xc2\x51\x30\xcf\x97\xc1\x28\x10\xb3\x5e\xb0\xe8\x3e\x84\x95\x7a\x59\x45\x88\xd0\xa4\xc7\xea\xb0\x13\x2a\xb8\x7a\x3b\x4a\xd3\x33\xfa\x59\xf5\x22\xf3\xe0\xc1\xe8\x7d\x53\xf2\x80\x95\xfc\xe3\xde\xf9\xfa\xc0\x90\x9c\x6c\x86\xcd\xde\x99\xaf\x2c\x51\x6f\xd6\x0d\x4d\x07\xd0\x05\x06\x83\xd0\x2b\xa0\xed\xae\xa0\x5f\x0e\xe8\xd0\xb0\xda\x98\x7a\xcb\xb7\xa4\xbd\x6a\x42\x88\xc1\x6f\x70\xe9\x46\xb2\xdd\x92\x07\x8d\xba\x17\xa2\xe7\xd6\xf3\x8a\x51\xb9\x90\xc1\xec\x59\xc4\x33\xdb\x4f\xc0\xc7\xdf\x7a\xae\x5c\xba\x30\xba\x3b\x5c\x13\x6a\xfb\x8e\x17\x5e\x79\xcc\x26\x3a\xc8\xa8\x3f\xa9\xa0\x2b\x52\xc5\x5c\x7b\x2b\x48\xeb\xb3\xc7\xe5\x4d\x9e\xa2\x30\x38\xfd\xf0\xd3\xd9\x87\xd3\xe9\xc7\xe3\xcb\xd3\x0f\xd7\x81\x0b\x1c\x09\x4c\xf5\x33\xaf\x18\x3d\x4c\x24\x8f\x01\xdc\xca\xfa\xc8\x9d\x62\x6a\xa1\x4d\x9e\xef\x58\xb0\xa3\x1f\x2b\xfa\x10\x0a\x74\x5a\xfd\x86\xe8\x8a\x10\xfc\xb3\x58\xdf\x14\x33\x46\x6f\xea\x98\x1d\x5a\xc9\x48\x71\x5e\x81\xb8\x47\x01\xc2\x49\x3c\x9e\x28\x65\x62\x6e\x2b\x13\x83\xbf\x04\x71\x1c\x87\x34\xce\xc7\xc5\x04\x1d\x25\x6a\x73\x1a\xff\xc7\x1f\x7f\x44\x93\xbf\x04\x68\xa4\xde\x50\x0d\x08\x95\x28\x30\xf5\x3f\xfe\x10\x07\xdc\x7a\x18\x07\xe1\x1f\x7f\x44\xd1\x5f\xd0\x51\xa0\x2c\x77\x9e\x56\xe2\x24\x65\xd9\x88\x60\x46\x6e\xc9\x97\x91\x85\xe3\x1b\xfc\x47\x30\x5c\x4b\x2c\x5f\x19\x30\x6d\xc4\xcb\x2a\x80\x24\x94\x94\x22\x9c\xc5\x4f\x25\x86\x68\xb4\xeb\xcc\xd7\x52\x1b\x56\xf8\x00\xd3\xf8\xe0\x35\xfd\x41\x23\xe7\xbe\xa6\x10\xed\x8c\x4e\xe2\x38\x06\x1f\xce\x98\xa2\x1e\x83\xae\x10\x47\x2f\x3e\x94\xe4\x4b\x29\x90\x13\xd7\xfe\x52\xd1\x88\x0f\x4c\x9a\x46\x64\x97\xd8\xea\x7c\x56\xb8\xf1\xa3\xc6\x93\x9e\xfb\x55\x9b\x49\x3c\x95\x8e\x3d\x4a\x48\xbd\x58\x4a\xda\x41\x4a\xf9\x34\xad\x08\x83\xc0\xc9\xd9\x8c\x80\xcb\x51\x98\xc7\x34\xca\xf2\x87\xcd\x86\x46\xcb\xfc\xef\x1f\xe4\x93\x8c\x2c\xa9\x7e\x2c\x0b\xf5\x90\x7f\xc8\x1f\xd0\x91\x04\x29\x08\x29\x1a\xbd\x4d\x38\x11\x79\x2d\x15\xf0\x5a\x86\x73\xc7\x54\x79\x5c\x89\x9a\x01\x2e\x72\x8d\xf5\xfa\x21\xfe\xde\xeb\xb3\xc5\x8f\xc2\x24\xe6\xb8\x88\x33\x34\x0a\xf3\x98\xe3\x24\xce\x70\x11\x53\x04\xd8\x02\x06\xc8\xd8\x84\x92\x00\x9b\xd4\x42\x4f\xa3\x1c\x9a\xb4\x88\x67\x21\x69\x06\xc2\xe9\xaf\x2b\xed\xe4\x22\x8e\xe3\xf4\xc8\x64\x1f\x35\x8d\x8e\x38\x7b\xb4\x62\x3e\x88\x64\x99\xf6\xaf\xa7\xda\x09\x9a\x45\xe4\xcb\x8c\xac\x94\x65\x03\x2d\x17\x34\x4b\xd2\xf4\xf1\x89\x87\xa8\x2c\xc3\x04\x2f\xf0\x1a\x17\xc8\x96\x43\xd1\x93\x13\x0a\x55\x5a\x45\xd2\x45\xe8\x6b\x5c\xaa\xa3\xc5\xaa\x28\x79\xc9\x66\x13\x26\xfe\xf9\x8a\xa9\x58\x88\x79\x7c\xf0\x3a\xaf\xa6\x6c\x3e\x1c\xa2\x90\xc7\x6c\x9c\x4f\x50\x04\x6b\x46\x62\x53\x13\x34\x18\x50\xe5\x71\xa7\x02\x0c\x56\x1e\xbd\x63\x32\x81\xa6\x08\x21\x09\xba\x3c\xf1\xd6\x6a\x8d\x67\x31\x0d\x73\x84\x17\xca\x9d\xed\xea\xfa\xf2\xd3\xc9\xf5\xa7\x4b\x69\x83\xff\xee\xec\xfd\x69\x6f\x31\x18\x84\xeb\x98\x0c\x83\x51\x3f\x18\xce\x54\x49\x58\x08\x0d\x79\x4a\x22\x4e\x97\x24\x5c\x23\x64\x6e\x30\xee\x44\x13\xe6\xb1\x90\x9b\x56\xf1\xc1\xeb\xd5\x0f\xba\xe4\xd7\x2b\x0d\xb3\xbd\x8c\x93\xf1\x6a\xd2\xbb\x93\x95\x5f\xaa\x8b\x89\x90\xe0\x39\x9e\x55\x60\x5a\x36\xb8\x9c\x59\xd0\x82\x2c\x8b\x0f\x5e\xb3\x8a\x2c\xd3\x64\xb3\x38\x19\xb3\x49\xcf\x33\x1b\x33\x79\xe5\x21\xd8\x2b\x78\x80\xe9\x31\xc3\x77\x63\x36\x41\xe5\x62\x30\xb0\x1b\x73\x9a\xcd\xc3\x35\x2a\x4b\xdf\xea\x4e\xbc\x6b\x3e\x89\xeb\x26\x3e\x46\x5c\xad\x85\x15\x5d\xe6\x73\xba\xa0\x5d\x0d\xce\xfd\xf7\xf3\x5d\xad\x6f\x0b\xc2\xcf\x55\x71\xe7\x49\x96\xdc\x3e\x0f\xd3\xba\x96\x75\xeb\xd5\xf5\x2c\x59\x25\x37\x34\xe5\x94\x74\x85\xa2\xe6\x91\xee\x89\x93\x2a\x6f\x1d\xe9\x59\x4e\xb4\x57\x82\xc7\x49\x76\xf2\x20\xde\xa8\x3f\x1d\xcc\xbf\xa5\xd8\xc4\x7f\x21\x8f\x27\x50\x8e\x72\xc9\xc9\x5a\x02\xd5\x02\x46\x7d\x23\x2e\x33\x85\xc8\xb4\xb7\xa4\x09\xf3\x86\x15\x1a\x90\x82\x43\xe5\xc9\xed\xbb\x9c\xe9\xbe\x43\x3a\x18\x26\x4e\xd4\x67\x96\xcc\x3e\x3b\x10\xba\x24\xa6\x66\xd3\xb2\xe4\x42\x1e\xad\x57\x73\x08\xd7\x90\xe3\x44\xa9\x97\xc4\x1c\x5e\x2f\x09\x0a\x13\x70\xba\xc7\x59\x59\xed\xe6\x14\x5a\x41\x25\x10\x8a\x0c\x0e\xa4\xe3\x30\xea\x10\x1f\x39\x43\xe1\x18\x52\x4d\x10\x7a\xa2\x31\x51\xd6\xfb\xb5\x1d\x15\xf4\x87\x7a\x93\x81\x77\x14\x95\x76\xc5\x0a\xc2\x81\xbf\xa7\xb3\xb7\x64\x96\xb3\x04\x08\xe7\x08\x9b\x80\xbb\x99\xaa\x4b\xd9\x9e\x9c\xb6\x4e\x84\x35\x27\x7e\x5f\x68\x95\x46\xba\x11\xc8\x74\xe6\x61\xba\x4c\x66\x2c\xdf\x91\x98\x91\xf9\x7a\x46\xa6\xf5\x3c\x3b\xa6\x50\xeb\x9a\x20\xcb\x15\x7f\xec\xbc\x1a\x20\xf5\xd6\x35\x96\xe5\xfc\xf4\x59\x24\x75\x86\x1d\x54\x33\xf2\x0c\x8a\x19\xd9\x55\xc7\xe7\x54\x6f\x2b\xad\x9b\x3c\x4f\x3b\x13\x13\x89\xb7\x52\x83\x90\xdf\xdd\xf7\x26\x91\x7a\x2b\x3d\xf2\xb7\x75\xd2\xbd\x7a\x90\x7a\x2b\xbd\xdb\x67\xd8\x14\x6d\xef\xb7\x5b\xde\x7d\x40\x6f\xf9\xf6\xf1\xec\x0c\xd6\xcf\xa3\x74\x7b\xad\xd2\x67\xd4\x2a\xdd\x51\xab\x3c\x23\xbf\x25\xdd\xd7\x81\x4c\xbe\xc3\x0d\x43\x62\x90\x77\xa6\xa9\x33\xec\x88\x77\xa0\xcc\x61\xb3\xdb\xe3\x94\x26\xdd\x8f\xc6\x7a\xc6\xad\xa5\x24\x59\xd7\x28\x0d\x3c\x4a\xb2\xed\x11\x1a\xf2\xee\x1c\x42\xbe\x23\x8a\xc6\x7a\xd9\x39\x76\x44\xb1\x5e\x6e\x5f\xbb\x00\xc6\xd2\x8d\xd6\x92\x66\x3b\xf6\x81\x2f\xdd\x69\x25\x5f\x76\xd0\x5a\x3d\x83\xd6\x6a\x7b\x7f\x81\xf1\x66\xd7\x0e\xcb\xd9\x4e\x53\xc2\xb7\x74\xb1\xe8\x4e\x50\xa6\xdf\xd5\xda\x37\x5d\x17\x08\xb4\xf7\xcd\xf6\xd5\xb1\xa0\x29\xef\xcc\x91\xb2\x48\x26\xef\x40\xf1\x19\x95\xd4\x19\xb6\x52\x5d\x67\xf4\x6f\x9d\x29\x8a\xc4\x3b\xa9\x3d\xa3\x86\x32\xf9\x2e\x8a\x79\xf7\xf5\x01\xa9\xb7\x3b\xd1\x09\x8e\xba\x20\xb3\xee\xd3\xd1\xe4\xd8\x2e\x23\xe4\x69\xfa\x1c\xaa\x2a\x7d\x8b\x4c\xd0\x2e\x3e\xd5\x6e\xd2\xbb\x04\x81\xd9\xe9\xaa\x04\xac\x7f\x8f\x44\x12\x86\x4e\x29\x75\xb0\xf9\x4d\x7b\x15\x26\xcd\x6f\x24\xf9\x7c\x9e\xac\x70\x4d\x24\xcc\x5c\x13\x37\x62\x5f\xb9\x79\xd5\x27\x4e\x0a\xe9\xc0\x3b\x18\x78\x5e\x86\x08\xcb\x68\xc3\x17\x0f\x99\xe9\x6e\x83\x97\x87\xb4\xd8\xa2\xeb\x5a\x98\x56\x14\x31\x3d\x6a\x04\xc9\x45\xa3\xa7\xb2\x82\xb2\x56\x09\xc7\x7c\x12\x67\xf8\xe9\xd6\x07\x38\x98\x0b\xa1\x47\xdf\x67\x43\xeb\x94\x5e\x4d\x5e\xe8\x8a\x9e\xc8\xc5\xf6\x22\x05\x1d\x82\x50\x4f\xc7\xae\x13\xf9\x2a\xc8\x6b\x93\x17\xd0\xc0\xe3\x4c\x6a\xa6\xb8\x8a\x7c\x22\x08\x64\x98\x23\x09\x7e\x58\x0d\x04\x6d\xc8\xdd\x72\xa4\x94\x90\x93\xb5\x0a\x39\x1c\xb3\xad\x42\x4e\x86\xf3\xca\x3f\xaf\x29\xe4\x64\xbb\x85\x1c\x1a\xb3\xe8\x3e\x49\xd7\x04\x9b\xfc\xb8\x3d\xa7\x5f\xde\xd9\x2e\xcb\x7c\x7b\x71\xd8\x48\x8b\x20\xa1\x35\xed\x34\x2b\x35\x4c\xf3\x76\x1a\x67\x30\xe0\xe0\x6f\x0e\xf1\x1b\x40\xeb\x4a\x40\xdd\x9a\x8d\xe9\xc4\xba\x95\xa5\x93\x66\xa7\x33\xad\xc0\x19\x4f\x1c\xa1\x15\x3d\xa9\xfb\x30\x82\x4a\x5d\xb8\x47\x3b\xf6\x24\x15\x6c\x6c\x9c\x4f\xa4\x3b\x3a\xf9\xb2\x4a\xb2\xb9\x5a\x10\x94\x14\x28\x4c\xc4\x10\x68\x09\x54\x88\x9e\x99\x65\xe1\xa8\x3b\xd7\x75\xa9\xcf\xb5\x17\xfd\xd8\xdb\x05\xb9\x71\xd3\xc4\x59\x7c\xf0\x3a\xfb\x81\xbc\xce\x74\x5d\x54\x10\xfa\x2a\x3c\x4a\x3e\xce\x26\xea\x8a\x39\xa4\xc8\x44\xde\x28\x2d\xc1\xd9\x4e\x4c\x26\xa8\x9c\x20\x50\x42\x81\x68\xe8\xb9\x2d\x51\x32\xbf\x0e\xbb\x43\x86\x81\xaa\x4f\xe0\x0d\x1d\x0e\x12\xbf\x20\x05\x11\x1e\xed\xd2\xc0\x8a\xa2\xc4\xc4\x48\x8c\x5f\x59\xd8\x5e\xd7\xd2\x32\x5f\x8c\xc6\x7a\x49\xad\x8d\xf9\x90\x67\x64\x6b\x5b\x5e\x44\x7c\xaf\x41\x50\xd2\x13\x12\xe6\x8b\x08\xf6\xb5\xaf\x61\x5b\x4d\x41\xd8\xac\xad\x85\xdd\xc4\xef\x75\x50\x6e\x97\x66\x75\x59\x02\x1a\xe2\x4c\x95\x01\x02\xe8\xb3\xcb\xf0\xce\x4d\x82\xe2\x38\x66\x92\xec\x2d\xff\x56\x34\x7f\x34\x14\xc9\x37\x23\xa9\x6b\x99\x7e\xb3\x5a\xfe\x60\x28\x7e\xb3\x5a\xfe\xa0\x6b\x29\xc5\xd4\xb6\x29\x96\x08\x39\x10\x85\x04\xa9\x74\xa1\x44\xd6\x53\x62\xe8\xee\x5c\x55\x94\x2d\x09\xf5\xe1\x0a\x98\xdd\x1a\xe3\x72\x00\xac\xb5\x49\x60\xd9\x64\x25\x14\xcc\x8f\xab\x1f\xd4\x49\x71\x86\xb0\xe0\x46\xa1\xfd\x4c\x30\x29\xd9\xdc\xc5\x1f\x11\x59\x7c\x17\xc5\x00\xa8\x21\x52\x1b\xde\xcb\x9b\x70\x4f\x26\xcc\x59\x0d\x77\xe4\x19\xfa\xbf\x0e\x3c\xe6\x57\x21\x92\x34\x98\x4d\x47\x67\xab\x6e\xe0\x4c\xf7\xb1\xda\x26\x3c\x9e\x04\xf5\x5d\xa1\x11\x99\xab\xda\x15\xb2\x75\x9a\xc6\x71\x4c\x37\x9b\x40\xf6\x40\x75\xb9\x48\x8f\xb2\x11\x8d\x64\x1f\x84\xa2\x54\x69\xa4\xe6\xcc\x1c\x53\xb3\x5c\xb1\x34\xf2\x66\x50\x51\x7f\xf5\x7f\x48\x32\xbb\x7b\xa5\xaf\xa6\x8e\xf2\xd8\x09\x46\x0c\x5f\xa3\xbf\xfc\xe9\x15\x0e\x02\xb8\x11\x24\x98\x0c\x63\x68\x01\xb2\x9a\x55\x03\xb5\x21\x06\xc9\x86\xe3\x71\x83\xfb\xac\x35\x34\x77\xa2\xd0\xd2\x02\x98\x11\x31\xfd\x8f\xe0\xc5\x31\x0a\xa9\x15\xda\x9e\x20\x34\xd2\xef\xe1\xb0\xf5\x36\x35\x71\x9a\x1a\x8b\xed\x7a\xe5\x85\x8a\x94\x83\x51\x5a\x3b\xf0\x33\x98\x0a\xab\xda\xc7\x28\xe4\x6e\x2d\x5b\xeb\x56\xd4\x6e\x9b\x0c\x13\xed\x17\x29\x04\x6b\xcd\x62\x8e\x79\x3c\x9e\x20\x2c\xc7\xd0\xd7\x12\x68\x22\xd3\x13\xa0\xac\xdd\x08\x7f\xfb\xe2\xa4\x18\xee\x2b\x31\xdd\xce\x72\xf2\x76\x96\x93\x37\x58\x4e\xc3\xcd\xbb\xb5\xa8\xec\x57\x65\x48\x3b\x39\x1d\x94\x9f\xd5\x55\x75\xd5\x43\xbc\x38\xa1\x92\xed\xb4\xa6\x21\x26\x80\x87\x64\xcd\xbe\x04\x0d\x06\x89\x37\x73\x2e\xc4\xb6\x90\xa0\xcd\x26\xcc\x55\x88\x07\x4c\x35\xb7\x8b\x40\xee\xa5\x25\x2a\x49\x54\xac\x97\x3e\x6b\x19\x6a\x1f\x30\xb6\x5d\x34\x19\xf2\x12\x1f\x48\x25\x9c\x62\x31\xbe\x3c\x8b\xc0\x79\xc2\xef\x44\x26\x19\xec\x0b\xef\x1f\xbe\x3a\x90\xaa\x33\x49\xad\x16\x16\xba\x1b\x35\x9a\x29\x6a\x92\x18\x98\x84\x41\xd5\x56\x12\x60\x23\x59\xbd\x79\x8c\xbd\xf9\x0b\xd8\xe9\xe4\xfe\x11\x0c\x7d\x93\xa8\x1a\x00\x28\x02\x08\xcb\x59\x05\x26\x32\x5a\xcf\xd3\x10\xc9\x95\xb4\x18\x7f\x17\xc7\x8d\xd9\x75\xb4\xb3\x18\x8f\x69\xb1\x9b\x22\x8e\xe3\xcc\x98\xaf\xac\x6b\xad\xa0\x48\x1a\xb0\xd0\xbf\xc5\xa9\x7a\x68\xe9\x80\xaf\xdd\xf6\xdd\xf9\x48\xd5\x6e\x28\x0b\x44\x21\xc5\xdc\xde\x07\xeb\xac\x82\x51\xee\xc4\xdd\xc4\xc0\x6f\xbe\x26\x9b\x3b\x6e\xa3\xb5\x5b\x9a\x4a\x47\xe3\x49\x29\x96\x33\x8d\x56\xf9\x2a\x44\x7a\xb3\x69\x31\x16\x7a\xcd\x2b\x5f\x4a\x2e\x64\x39\xe3\x95\x19\xef\x09\x29\x8f\x8e\xb9\xb6\xce\xc8\x6c\xf9\x93\x2e\xc2\x6c\x9c\x83\x4d\x11\x7a\x62\xf1\xde\x41\xef\x86\x91\xe4\x73\x29\xe4\x3d\xc0\x70\x55\x02\xdf\xde\xa1\x12\xf8\xf6\x0e\x4a\xa7\xce\xc7\x28\xcc\x51\x69\x6b\xdf\x90\x32\x84\x7b\x4b\x17\x8b\xe7\x4c\x0b\xee\x9f\x1e\xca\xee\xf9\x56\x5a\x63\xd3\xea\x17\xf7\xf7\x1d\x53\xd3\xc4\xee\x4c\xe6\xeb\x3d\x99\x79\x5f\xb4\x92\x46\xa0\x96\xbb\x58\x80\xff\xa0\x99\x54\x6c\xdb\xfc\x52\x6a\xbe\x7f\xd4\xec\x72\x0c\xa2\x69\xcc\xdd\xc9\xc5\x2d\xb9\xca\x5a\xc7\x0d\x25\x55\x76\x24\x38\xa9\x51\xd6\x18\x43\xb1\xa8\x8d\xa6\x53\x8e\x60\xce\x5c\xfb\x45\xe0\x25\x8c\xdd\xc0\x66\x23\x11\xfa\x54\x37\x87\x5c\x9c\x06\x54\x9f\x9a\x8a\xba\xe7\x70\xa5\x47\x2d\x16\x27\xcd\x73\xb6\xe9\xa1\xa1\x3d\x66\x10\xd4\xce\x1a\xcd\x8a\x53\x17\xec\x0b\xf0\x20\xc0\xa4\x03\x82\xbf\xaa\xbc\x27\x0c\x01\x75\x34\x9f\x8e\x1e\xb4\xe7\x9d\xab\x8d\x39\x9a\x48\x42\x2a\x2c\xdd\xba\xbe\x95\x41\xc0\x7e\x6a\xa9\x1a\xe5\xd1\x09\xcf\x9b\x8d\xa5\x60\xb4\xc6\x19\x48\x64\x39\xa7\x8b\x47\xad\x17\x3d\xb9\x4b\xb2\x5b\x1d\xb3\x26\xd1\xe6\xe6\x33\x8f\x12\x73\x2f\x8e\xd3\xc1\x20\xdd\x82\x0d\x0e\xe4\x19\x59\xe6\xf7\xe4\xe2\xa6\x20\xec\x9e\x30\x14\x0a\x91\x66\xa6\xe9\xce\xe3\xe0\xff\x08\x9a\x10\x19\x15\xaf\xe2\x45\xb8\x06\x05\x90\x98\x40\x2b\x6d\x8b\xa5\xac\xa1\xe6\x47\xc1\x78\x12\x8c\xd4\x1a\x7e\x2d\xf5\xb2\xf3\x79\x45\x19\xaa\xbc\xc4\x33\xd1\x11\xe3\xe5\xa4\x24\x69\x41\xfa\x69\xbc\x6a\x99\xbf\x7c\x7c\x30\xc1\x54\x90\xd5\x07\x4e\x36\xb2\x8f\x9f\xcc\x1e\x17\xa7\xa0\x02\x53\x51\x0a\x2d\x51\x8f\x56\xfd\x9a\x22\x85\x6d\xa6\xfd\x65\x3a\x1d\x35\xf7\xe8\xc8\x6e\xac\xe1\xc2\xef\xf5\xfc\x43\xa3\xbb\xf0\x1e\xaf\x5a\xf7\x87\x90\x54\xc7\xa4\xd1\xbb\xab\x41\x4b\x2b\x41\x69\xd1\xe0\x5e\x9b\xf3\xdf\x58\xbb\x8e\x84\xb8\x21\x3b\x48\xf4\xd3\xa1\xde\x27\xc6\x0c\x67\x71\xb6\xd9\x04\x49\x31\x0b\x26\x36\x17\x7a\x57\xdb\x75\xa1\xa6\xed\x6b\x88\x56\x3b\x98\x3c\x29\xb8\x47\x53\xc9\xc7\xf9\x04\x17\x71\x22\xaa\xb1\x8e\x93\xf1\xe1\x04\xa7\x92\xfd\x04\x6b\x27\x26\x35\x5b\x66\x0f\x92\x1e\x64\x26\x76\x6e\x81\xe4\x4c\x12\xd3\x54\x9d\x2c\xc1\x9c\x14\x33\x31\xd5\xd6\x47\xfb\x87\x7f\x49\x47\xa9\xd6\x75\x1e\x94\x48\xf0\x90\xb2\x07\x67\x8e\x14\x6c\xee\x46\xb6\x5e\xa7\x34\xa3\x0a\x36\x2f\x57\x40\x92\x5e\x12\x76\x4b\xda\x3e\xca\x5b\x86\xb6\xaf\x0f\x24\xf9\x3c\x2d\x88\xdf\x65\xb1\xab\xc5\x8d\x2e\xa2\x23\xb2\xa4\xb2\xde\xde\x7e\xb9\x0e\x24\x3f\xaa\xba\x76\x26\x2d\xb3\x6d\xa5\x3c\x15\x1b\xe4\x15\xe9\x7a\x1f\x46\xed\xea\x92\x08\xba\xda\x5e\x0f\x79\xcc\x25\x0c\xd4\x11\xd3\x29\x47\x06\x59\x4a\xa6\xce\x5b\xc6\xde\x1e\x9d\x4e\x56\xf1\x66\x61\x70\x97\x7b\x3a\x7c\xcd\x7f\xa8\x9f\xd8\x92\x8b\x92\x0c\x48\x75\x38\x73\x30\x83\x65\x48\xe7\xcd\x34\x66\xc3\x67\xf2\x58\x84\x4c\x1f\xec\x99\x6d\xb3\xad\xe3\x3e\x88\x93\x9d\x08\x5e\x8b\x8d\xf3\x49\x75\x59\x55\x12\xd5\xeb\x31\xf7\xc3\xdf\x30\x5d\x86\x4c\xb6\xd9\x70\xcb\x82\x9f\x6d\xe9\x1b\x35\xad\xbf\x6d\x44\x06\xc1\x30\x4a\x65\x0c\xf7\x28\x63\xb8\xbe\x1f\x20\x3d\x1b\x57\xc4\xee\x24\xee\xed\x24\xc0\xfe\x98\x60\xe9\x21\x31\x66\x86\x07\x22\xe5\x96\x06\x9a\xc5\xf7\x55\x4e\x11\x1e\x26\x45\x4d\xf1\x23\xf5\xd7\x9e\xd6\x66\x0e\x11\xe3\x3e\x2b\x24\x41\x8b\x73\x28\xf5\xbe\x6d\xc0\x8b\xab\xeb\x9a\x64\x3e\xf7\x49\xa0\x86\x0e\x1c\x5c\x04\xef\xa9\x28\x4e\x25\xe6\x2a\xf6\xe1\xf6\x5c\x56\x7c\x44\x2e\x18\x8c\xed\xa9\xa5\xf0\x2e\x23\xe8\xb6\x3a\x83\xa8\xe0\xb4\xdd\xef\xab\x6d\x9f\x10\xc6\x72\xb6\x0f\x38\x82\x6d\x00\x60\x5a\xdd\x78\x93\xcc\x3e\xdf\xac\x59\xd6\x82\xe5\xe5\xf3\xc5\x39\x59\x33\x46\x32\x7e\xb9\xce\xde\xe7\xf9\xca\x87\x4b\xaa\x62\xb7\x80\x43\xc9\x5f\x73\x9a\xc5\x77\x98\x44\x37\xe4\x96\x3a\x88\x82\xa9\x7c\x25\xb9\x79\x92\xcd\xdd\x6f\x10\x6b\x09\xf8\x60\x15\xcc\xcd\x53\x50\x6a\x3e\x2a\x4d\x59\xea\xb8\x85\xc2\xed\xf6\x95\x4a\x31\xbf\xa6\x4b\xc2\x7c\x7e\xe7\xa9\x48\x26\xbf\x2a\xc9\x22\xc9\x66\x24\x6d\xa6\x4f\x9d\x2f\x32\x6d\x9a\x70\xc2\xbc\x44\xe1\x4b\x4b\xbd\xf2\x6c\x46\x5e\x26\xb8\x48\x03\x76\x02\x96\xeb\x62\x9d\x5a\x7b\x63\xb5\x68\x79\xb4\xce\x8a\x3b\xba\xe0\xd6\x7d\x3e\xae\x3a\xeb\x22\x9b\x55\x1d\xc6\x9d\x4e\xbe\xa8\x55\xac\xd1\xd1\x4e\x5e\xb7\x51\x19\xf9\xf2\x42\x69\xac\x63\xa3\x40\xc1\x75\x28\x5a\xe2\xf6\x2d\xb7\x46\xcd\xb7\xf2\xf4\xb8\xc9\x45\x17\xcd\xc9\x4d\xbe\x6e\x6b\xa7\xfe\xd8\xd2\x46\x7e\xc7\x72\xce\x5b\x26\xa3\xfe\xd8\x92\xf7\x86\x66\xf3\x98\x98\xf8\x7e\x97\xeb\x2c\x26\x51\xb5\xfe\x62\x12\xfd\x6d\x4d\xd6\xa4\x80\x00\xf4\xc5\xfd\x0a\x9c\xc5\xfe\x4d\xbc\x72\xce\x6b\x9c\x40\x88\x3a\x85\x92\x19\x06\xc1\x10\xd4\x64\x2c\xc9\xe6\xf9\x32\x44\x43\xed\x91\x13\x82\xee\x57\x6a\xd1\x83\x28\xc0\x41\x20\x36\x9b\x3a\x65\x0d\x93\x3c\xae\x22\x25\x2a\x47\xd7\x6b\x96\x64\x05\x35\xef\xc0\x2f\x30\xc0\x01\x38\x41\x5c\xea\x5f\x3a\x58\x1b\x2e\x26\x3d\x53\x7f\x8d\xb4\xec\xba\x42\xaf\xf1\x93\x7a\x84\x92\x47\x55\x81\x79\xf6\x46\x6c\x04\x8e\x56\x2c\x89\x49\x89\xf3\xec\x34\x9b\xd7\xc4\xc6\x24\xe6\xf0\x41\x34\xe1\x5a\xa2\xa7\xb3\xc8\xf9\xad\xbf\x9e\x13\x7e\x97\xcf\x47\x41\x9e\x29\x50\x8c\x45\xba\x2e\xee\x46\xb9\x0d\x57\x35\xb3\xc7\x8f\xad\x33\xdf\xd0\x39\x83\x94\x6a\x57\x48\x69\x67\x02\x00\x4d\x3d\x8b\xe1\xb7\xc8\x89\x9d\xcf\x4f\xcf\x9e\x02\x8b\x9e\x9a\x19\xff\x75\x2b\xa7\x1b\x65\xe6\x52\xb6\x0d\x13\xd8\x38\xb3\x29\x67\x86\xf2\x9d\x7b\x43\xc1\xf5\x0d\x05\x43\xa8\x74\x19\x07\xe5\xd6\xfc\xad\xc2\x25\xec\x8e\x97\xf4\xdc\x18\x08\x85\x0e\xf6\xf4\x6d\x02\x20\x64\xed\x01\x10\x50\x2f\xab\x21\x85\xd5\x02\x50\x8d\x00\xf0\xb4\x2d\x38\x42\x86\xf4\x0d\xa7\xc5\x3b\x50\xb7\xb3\x39\xa3\xd9\xb6\xd0\x00\x2a\x81\xe0\xe1\xe4\xa3\xc1\x69\x78\x51\x88\x38\x9f\x17\xaf\x17\xb7\x3b\xcd\x67\xf1\x14\x93\xe8\x21\x7e\x80\x6e\x9b\x25\x4b\x92\xd2\xbf\x93\xf8\x54\xfc\x4c\x8a\x3b\xc2\xc4\xaf\x2f\xb0\x9d\xab\x4f\x57\xe2\x07\xd8\x3d\x2d\x1e\xe3\x0b\x10\xe9\xe7\x84\x15\xb3\x9c\x91\xf8\x33\x24\x5c\x51\x9e\x40\xd2\xe3\x2d\x52\xd3\x2d\xe1\x57\xd0\xd4\xee\xd6\xd4\x55\x96\xed\x02\x59\xf1\x7c\xd2\x85\x4d\x5a\x8d\xe7\xab\x71\x7f\x3a\x79\x75\xab\xd4\x60\x59\x04\x90\x55\xe1\x21\xf9\xde\x77\xf9\x75\x2a\xef\xe6\xe5\xf6\x4e\x71\xb0\x0f\x2e\xcb\x49\xfc\x2a\xfc\x63\x7f\xf3\xc7\x74\xf3\x47\xb4\xf9\xa3\x40\xc3\x30\x42\x47\xaf\x6e\x71\x11\xbf\x0a\xff\x63\xf3\xc7\x2b\x14\x8e\x8f\xf7\xff\xff\x13\xf4\xea\x16\xaf\xbb\x94\x52\xdd\xc3\x26\x8d\x05\xa7\xd7\xd3\x11\x8b\x78\xfe\x69\xb5\x22\xec\x24\x29\x48\x88\x46\x41\x50\x56\x55\x2b\xfc\x64\x79\xfe\x3e\x7f\xd0\x39\xe0\xc2\x2a\x8d\x5f\xfd\x87\xa8\xfb\x54\x55\x1a\xcf\xe2\x57\x61\x84\xbc\xcd\x59\xa8\xe6\x6c\xfe\x88\x50\x38\x4e\xf6\xff\x0e\x2d\xba\xdb\xda\xa2\x4a\xda\x6c\x6d\x48\x30\x0d\x86\x9e\xc6\x60\xd6\x30\xf2\xab\x46\x72\x18\x66\x47\x59\x23\x0f\x2a\x71\x56\x29\x8e\x5e\x05\x5e\x91\x0b\x8c\xdb\xc4\x7f\xa6\xb3\x04\x2b\x63\x7e\xcc\x30\xb3\xa2\xac\x4a\xdf\xe8\x57\x41\xf5\x7d\xd1\xd6\xb3\x56\x55\xa0\x67\xe7\xf1\x2b\xe8\xa4\x3f\xe6\x13\x35\xfe\x43\xd1\x5d\xab\xf8\x95\xe8\xdb\x62\xf8\xea\x16\x2f\x9f\x37\x19\xe6\x38\xf8\xd3\xe1\xf4\x4f\xdf\x59\xb5\x59\xe1\x60\x1a\xa0\xfa\xb8\xe2\xfb\x6a\xe2\x89\x1a\xac\x0f\x0e\x4e\x0e\xf6\xff\x58\x1f\x7c\xf7\xcf\xef\x60\xcc\x1e\x9f\x57\xf0\x7d\xd7\x36\xdf\x36\xda\x2c\x4a\xbb\x79\x5e\x69\xb7\x55\x33\x6b\xed\xaa\x4e\xfc\xa9\x63\xf8\xb2\xe7\xea\xe4\x19\xda\x6c\x1a\x80\x33\xdf\x21\xb8\xde\xee\x72\xbc\xe0\x43\x84\x70\x53\x6b\xce\xe2\x83\x5e\xa3\xb2\xaf\xfe\xe9\xff\x84\xe3\x83\xfd\x7f\x99\x0c\xe5\x12\x71\x54\xf3\xea\xc0\x38\x5a\x25\xac\x20\x67\x19\x0f\x33\x7c\x78\x80\xf6\x0f\x47\x6c\x38\xc4\x79\x4c\x8d\xa6\xf1\x88\x8f\xe9\x44\xeb\x7f\x94\x7e\x50\x9e\x10\x95\x70\x9e\x1f\xe5\x23\xa5\x82\xc8\x8f\x02\xc9\x02\x05\x23\x73\xc5\x91\x1f\x05\xc1\x48\x6e\x6e\x61\x2e\xd5\xff\xc6\xda\x4c\xbe\x46\x70\x75\x2d\xfa\xad\x52\x95\x3e\x38\x23\x20\x17\xce\x2b\x31\x39\xad\x34\xa7\x56\x9a\x1b\x75\x21\x55\x7d\xfd\x62\x7d\xcd\x1b\x5f\xaf\xac\xaf\xeb\xc6\xd7\x0b\xeb\xeb\x5d\xe3\xeb\x67\xeb\xeb\xb2\xf1\xf5\xd8\xfa\xfa\xa8\xbf\x32\x19\xd5\xad\x8e\xc0\x1e\xc9\x0e\x18\x0c\x7c\x87\x09\x25\x45\x28\xbf\x57\xd3\x02\x3f\x3d\x8c\x9e\x66\x79\xb6\xa0\xb7\x6b\x73\xa8\xd8\x47\xcc\x21\x7e\x60\x94\x13\xfd\x09\x0c\x87\x3d\x27\xce\x83\x42\xfa\x2d\x71\x9a\xcf\xbe\x8e\xe2\x37\x66\x4e\xa7\xfa\xa2\xa6\x2c\xb1\x3e\xf3\xbf\x49\x93\xaf\x4c\x93\x2b\x3e\xe3\x9b\x10\x3e\xad\x08\x6b\x8e\xe5\x9b\xd0\xfd\x62\xe8\x56\x1c\xce\x37\x21\xfc\xd9\x10\xd6\x7c\xd4\x37\x21\x7b\x51\x91\x35\x2c\xd8\x37\x21\x7c\xac\x09\x8b\xad\xbc\xd7\x60\x6b\xbd\x5c\x6b\x47\x05\x64\xc5\x77\xd5\xe2\x7a\x10\xb0\x21\xf5\x7c\xad\x8e\x7a\x27\x85\x57\xc3\x37\x26\x93\xd2\x04\x3f\x51\x1c\xb9\xf2\xc4\x7f\x45\xb2\x59\x0e\x32\x73\xc7\x9a\x9e\x29\x77\x0d\x2a\x84\x60\xc8\xea\x6a\x4d\xfd\x2a\x51\x8d\xa5\x76\xb3\x5e\x2c\x08\x8b\x89\xc4\x5c\x12\x3b\xc9\xc7\xbc\x88\x0f\x14\x1c\x9d\xe0\x95\x0f\xb6\xa9\x49\x65\x65\x9b\x9a\x67\xf2\xe3\x77\xff\xf3\x7f\x5a\x40\x67\x20\x67\x87\xc1\xc5\x4a\x24\xef\x0b\x1a\xfd\xfc\x9e\xb0\xfe\xff\xde\xbf\xa1\xbc\x88\xfa\x3f\xe5\xbc\x0f\xf0\x66\x91\x46\xdf\x92\x15\x53\xb6\x4a\x1b\xde\x38\x1e\xf7\xbf\xfb\xe1\x87\xff\x8d\xdc\x6a\xdb\x19\xb5\xe1\x7c\xa5\xde\x8e\xbf\x7b\xcd\x9a\xb7\x07\x36\xb2\x83\xbd\xeb\xd0\x45\x18\x64\x6b\x31\x9d\x2c\x88\x87\xc1\x20\xfb\xf1\x9f\xbf\xfb\x97\x7f\xfe\x97\xff\xdf\xff\xfa\xee\x5f\xbc\xed\x23\x2c\xc9\xe6\xb2\x6d\xdf\x7f\xe7\x34\x2e\x6b\x69\x5c\x26\x31\xa2\x65\x67\x37\x5b\x50\x62\x1e\xad\xea\xf6\xdb\xb2\x93\xf7\x0f\x35\x94\xb5\xcc\x31\x26\xc3\xc3\x49\xb3\x52\xd7\xec\x91\x66\xb7\x7d\x9e\xf7\x81\x4e\x3f\x57\x95\xa4\x59\x7f\x95\xaf\xd6\x69\xc2\xc9\xbc\x5f\xa4\x39\xef\xd3\xac\xe0\x24\x99\xf7\xf3\x45\x3f\xe9\x33\x02\x17\xb6\xf2\x53\xad\xe6\x50\x52\xcc\x4d\xdd\x7e\xa3\xfc\xae\xc1\x2e\xff\x77\xa8\x21\x76\x5f\x7d\x37\x89\x99\x51\xa7\x7b\x16\x0e\xaf\xad\xc5\x34\x7f\xd8\x4f\xc9\x3d\x49\x3b\xaf\xc6\x2b\x9e\xcc\x3e\xc7\xe2\x6f\xce\x12\xf7\x02\xad\x6d\x29\xaa\x95\x98\x88\xd3\x30\x1e\x4f\x64\x95\x41\x47\xba\x75\xe9\xd5\x6f\x28\x2a\x23\x0c\xc8\xac\x61\x08\x81\xac\x98\xcd\xdc\x86\x8d\x31\xc9\x86\xc3\x1e\x49\x0b\x52\xc5\xef\x9e\xf4\xaa\xf2\xb3\xd2\xbe\x92\x00\x4a\x63\x3e\x11\x9b\x85\xbc\xef\x60\x64\xd1\x7a\x81\x21\x53\x93\x09\xa4\x64\xb6\xfa\x9f\xd8\x0d\x86\xd0\xec\xa6\xce\x55\xd1\xc4\x0c\x93\xee\x49\x4f\x5c\x28\xa7\x13\xbf\x0a\xd2\x72\xac\x9a\x7d\x4f\x66\x31\xd9\xd6\xeb\x80\x87\xe8\xd9\xf4\xc5\x6c\x96\x48\xf0\x82\x86\xb1\x3e\x10\xad\x87\xe7\x77\x2c\xb7\x2c\x2c\xf9\xf6\x7c\xdc\xca\x68\x65\xb2\x64\x50\x7f\x36\xcc\x64\xc6\x59\xbe\xaa\xdb\xf9\xe9\xa4\x62\xfc\xcc\xb3\x1c\x1d\x38\x6a\x2f\x93\x87\xb6\x1c\x44\xad\xf4\x5b\xc2\xdd\x54\xee\x80\x57\x04\x1b\xa8\x56\xa6\x9e\x1a\xdc\x4a\xa4\x4a\x49\xe6\x3b\x3c\xdd\xa4\xd6\x2c\x10\xeb\x8a\xd5\xd6\x67\x96\xcf\x6b\xf7\xa6\xc0\x00\xec\xdf\x24\x37\x04\x6c\xe4\x75\xc2\xce\xc1\x3a\x0b\xc2\x24\xb4\xea\x9b\x35\x4d\xe7\x84\xf9\xed\x45\x69\xb4\xc8\x99\x82\x61\x95\x2a\x6e\x65\x79\x4a\xa2\x0f\xf9\x9c\xbc\xbd\x38\xbf\x66\x84\x9c\xe4\xd5\x0e\xd3\x12\x2e\x8b\x58\x93\x98\x59\xd3\x82\x58\xf6\xd9\x1c\x6d\x36\x70\xc7\x28\xbd\x92\x32\xc1\x49\xf2\xe2\x7d\x9e\x17\x04\x85\x0c\x93\x0a\xe4\xb3\x31\x5f\x33\x89\xb5\xfa\xa9\x20\x29\x29\xb4\xa3\xa2\x1b\x04\x4e\x87\x20\x6d\x7c\xac\x0d\xaf\x46\x99\x74\x93\xc3\x4d\x09\x94\x72\xcc\x39\xa3\x37\x6b\xd7\x6d\x05\x7a\x98\x38\x9f\x61\x96\x96\x98\x95\x21\x8b\x3c\xfd\x24\xc6\xba\xad\x0b\x75\xfc\x6c\x6f\xef\x69\xc3\x3b\x6d\x4e\x0d\xb0\xcd\x5e\x18\x58\xd9\x9b\xc8\x1a\xea\x34\x9f\x7d\x7e\x4b\x56\x00\xbb\xc6\xbd\xdd\x9c\xe9\x6e\xa6\x71\xd6\xec\x66\x1a\x4d\xa7\xf9\x8a\x64\x40\xa8\x8e\xcf\xa3\xf6\x64\x4f\x69\xc3\xa1\x86\x4a\x4e\x56\x2b\x92\xcd\x4f\xf2\x25\xf4\x69\xf0\x4f\xc3\x9b\x51\x30\xe4\xc3\xe0\x9f\x00\x8c\xb1\x92\xfd\xad\x62\xaa\x09\x82\x4a\x2c\x2a\x30\x4b\xf3\x82\x34\x6a\xe0\xe6\xae\xd2\x58\xd9\x71\x4b\x25\xf6\x45\x25\xf6\xf7\x5b\x6b\x2f\x6a\x27\x8b\x96\x39\x7f\xbe\x3e\x7f\x1f\x7b\x0c\xc5\xfc\xd4\x6f\xd3\x25\xfb\xa7\x00\x8c\x8c\x82\xeb\xe3\x37\xef\x4f\x03\x15\x6e\x23\x22\x72\x6a\x45\x3c\xb9\xfd\x90\x2c\x8d\x35\x2e\x37\xa6\x9f\xc1\x0f\x32\x1f\xfd\x71\xff\x10\x05\x9c\x41\x4e\xb5\x07\xd2\xe1\x21\xa6\xc3\xef\x11\xf8\xf8\x06\x3f\xf0\x9b\x7c\xfe\xf8\x23\xf4\xe5\x0f\xaf\xd4\x0f\x54\x06\x90\xe3\xa8\xa5\x66\xfd\x7f\x0a\xd0\xc8\xed\xb7\xaa\x81\xce\xba\xd4\x76\x31\xdb\x5b\x68\x6d\xd9\x00\xfb\x3d\x63\x84\x93\x37\xf9\x3a\x9b\x4b\xfb\x42\xdd\x60\x70\x09\xb6\x3b\xf4\xda\xb9\x27\xd5\x3a\x1d\x09\xb1\x1e\x87\x59\x1c\xca\x23\x1e\x55\x04\xa4\xb2\x25\xa4\x31\x83\x53\xf4\x8a\xde\xa4\x34\xbb\x45\x47\x59\x94\x26\x05\x07\xe0\xe3\x11\x8d\x56\x8c\xdc\xd3\x7c\x5d\xe8\xcf\x5a\x7f\xb3\xbb\x57\xc2\x7c\x30\xf8\x3e\x8e\xe3\x3c\x12\x3b\xef\xf5\xe3\x8a\xa8\xb8\x29\xcd\xf4\x9b\xe6\xdc\xad\x5a\xe5\xf4\x22\xb4\x19\x66\xa6\x67\x83\xd2\xb6\xcc\xf5\xc9\x91\x11\x32\x2f\x4e\xbf\x70\x96\x9c\x88\x9c\x62\xb8\xb7\x7c\x8e\xf7\x0e\x9d\xba\xd8\xa5\x59\x2b\x01\x75\x49\x24\x6a\x2b\x56\x61\xa3\xb2\x66\xf7\xd6\x53\x72\x30\x08\xae\xdf\x5c\xbc\xfd\x3d\xd8\xf3\xcf\x6c\x5d\x69\x8b\x5a\x18\xc0\x24\xd5\x18\xb8\xc6\x17\x9f\x66\xb7\xcd\x36\x29\x29\x0d\x6e\x2b\x75\x7e\x50\xb2\xb9\xed\xb0\xc8\x3b\xfd\x5e\x2a\x57\x90\x4b\xb2\xcc\x3d\xfb\x3f\xaf\x3c\xa6\x9b\xaa\x49\x2f\x53\xf5\x9d\xcd\x54\x7d\x37\x51\x40\xf6\xb1\x3a\x3e\x96\x60\x22\xef\x9e\x1e\x81\x74\x99\x0f\x50\x2f\x77\x0f\x89\x40\x2c\x9e\x00\x33\x84\x69\x44\xb3\x82\x30\xfe\x46\xe2\xf7\x71\x9c\xe3\xcc\x6d\x5f\xa3\x0d\x76\x2b\x41\x09\x5f\xe2\x4c\x1c\x37\x1f\xc8\x83\x4a\xa1\x0e\x77\x54\x63\x27\x72\x10\x4f\x4d\x2c\x02\xef\x8d\x98\x8d\xf6\xd0\xc2\x6c\xac\x39\x75\x7e\xdf\x2f\xed\x5f\x0f\x94\x91\x7d\x80\xd5\xe4\xf6\x6b\x23\xf6\x57\xaf\x56\x2c\xbf\x65\xc9\x72\x4b\xec\xbc\x06\xfb\xa2\xaa\x0e\xb7\x66\x3a\xb6\x82\xba\x2c\x6c\x0a\x0b\x98\xc5\x24\xa2\x73\xe9\x01\x41\x78\x02\x88\xad\x37\x62\x83\xc7\x49\xcc\x36\x9b\x60\x96\x52\x92\xf1\xfd\x60\xf8\xd7\xe1\x50\x6d\x12\x4f\x74\x3e\x4a\xb0\x48\x3d\xa2\x58\x0e\xa6\x7d\xef\xce\xb4\x95\x35\x93\xa6\xb8\x16\xf2\x03\xc3\x14\x8d\xa8\xe1\xa4\x21\xb0\xc2\xbf\x5e\x5d\x7c\x88\x40\xd7\x1c\xe6\x08\x61\xb1\x45\xbe\x0d\x09\x96\x85\x40\x4d\x46\x1c\x33\xb2\x20\x8c\x11\x36\x2a\x4a\x54\x96\xca\x30\x63\x7d\xdb\xe0\x33\x2a\x93\xd8\x86\xbe\x31\xb1\xf4\x8d\xf9\x8f\xdf\x1f\xe5\xfb\xdf\x8f\x0e\x10\x2e\xe2\xef\x5f\x17\x3f\xe4\x00\x43\x9b\x8c\x8b\xfd\xef\x6d\xcd\x63\x21\x44\x02\x96\x3f\x28\x57\x16\x46\x92\xd9\x5d\x72\x93\x12\x14\x06\xe7\x32\x2a\x69\x5f\xa9\x33\xce\x09\x4f\xe6\x09\x4f\xfa\x8b\x9c\xf5\x83\x21\xd3\x08\xa3\x90\x73\x4e\x67\x1c\x85\x8e\x7f\x64\x94\xaf\x0a\x0f\xc4\x36\xce\x75\xe7\x25\xe3\x7c\xd2\x2b\x1e\x28\x9f\xdd\x85\x0c\xb4\x1b\xe8\x69\x96\x14\x24\xe0\x79\x30\x5a\x8f\x99\x0a\x25\x45\x86\x85\x74\x02\xe9\xc1\x47\xfa\xfd\x77\xc1\x08\x9e\x24\x56\xb1\xfa\x01\xdd\x68\x67\x73\x32\xc9\x18\xb2\xf6\x67\x83\x9d\x2e\x83\xb7\x86\x05\xb2\xd3\x17\x9c\xb9\x89\x8d\xa2\xab\x96\x50\x86\x56\xda\xaf\xa5\x2f\x8e\xdc\x1c\xb0\x47\xd4\xe8\xef\x83\x60\xd8\x52\x8a\x1c\x43\xb7\x28\x7f\x7a\x5f\x4a\x40\x7c\xb3\x12\xee\xed\x39\x9d\xb1\x62\x74\x49\x39\xbd\x77\xfa\xc3\x77\xad\x42\x7e\xfc\xf1\x7b\x3d\x40\xff\x6b\xa0\x46\xa7\x7f\x30\xd2\x37\x84\x40\xae\x7f\x38\xb2\x6f\x88\x3f\x80\x32\x29\x64\x48\x7e\xfc\x6e\xd4\xbc\x3e\x36\x1f\xbf\x1f\xe9\xd1\xaf\x91\xde\x3b\x74\x49\xef\x1d\xd4\xa8\x41\x7f\x2a\x1a\xf2\x55\x09\xbf\xfe\x19\x26\x43\xff\x7f\xb6\x54\x49\x1b\xf4\xb6\xcc\x78\x54\x96\x21\x30\x3c\x56\x67\x69\x18\x78\xbb\xaf\x74\xac\x47\xc2\xc4\xf2\xb1\x87\x55\xf1\x8f\x82\x5c\x73\x64\xad\x8f\xb5\x01\x4b\x93\xbf\x3f\xee\xc3\x29\x98\x64\xbc\x91\xf1\x82\xdf\x11\x16\x16\x00\x80\x3a\x86\x95\x05\x71\xe8\xd6\x13\xb3\x49\x5c\xb9\x22\xb4\xda\x29\xc0\x1e\x2f\xbf\x95\xcb\xd7\x3f\xc0\xa0\x31\xd1\xe7\x9f\x6b\x15\xdb\xe2\x9f\x1b\x48\x05\x66\x1c\x0c\xe1\x68\x04\x1d\x2f\x52\xd7\xb1\x82\x0b\x1c\x1a\x75\x4a\x10\x06\x43\x36\x0c\x50\x20\xea\xf1\xf1\xfd\xf1\xc9\xe9\xcf\x17\xef\xdf\x9e\x5e\x4e\x65\x0c\xec\x98\x44\xbf\x31\xc1\x2b\xcd\xb5\x0c\x4a\xa2\x8f\x09\x13\xb2\xe6\x5b\xb2\x80\x00\x6c\x10\x9a\xf9\x8a\xcf\x65\x0b\xaa\x64\xf5\xdf\xa7\xc9\x2d\x61\xf5\x97\xef\x93\xbf\x3f\xd6\xdf\x9d\xc0\xb9\x21\x06\xe0\xa3\x3c\x74\x9c\x77\x52\xaa\x50\x5d\x7a\xa2\x4e\xc7\x98\x44\xc7\x37\x05\x67\xc9\x8c\x5b\xaf\x04\x71\xeb\xe7\x39\x78\xb8\x8b\xa4\xd7\xd7\x97\x57\xd3\x37\xef\x2f\x4e\x7e\xb1\x45\xe1\x35\x4e\x7b\xde\x3e\xd8\x3f\xc4\x61\x1a\xaf\x37\x9b\x70\x1d\x3f\x95\x08\x8d\xd3\xe8\x62\x45\x32\x13\x91\x49\xb3\x2b\x07\x93\x38\xf0\x7d\x08\x70\x3a\x4e\xa3\xb7\x74\x7e\xe2\x48\xb7\x87\x93\x38\xa8\xbf\x34\x49\xa5\x24\xff\x3e\x79\xcc\xd7\x3c\xfe\x4e\xa6\xb4\xdf\xa9\x84\x10\xe5\x8a\xb0\xf8\x7b\x91\x42\xfd\x08\x8c\x9f\xcf\xc5\xaa\xc0\x8b\x38\x18\x24\x9c\xb3\x42\x1c\xc9\x76\xcb\x17\x90\x0c\x02\xdd\xfe\xd7\xe8\xb1\x0e\xa4\x44\x99\x2f\x16\x05\xe1\x5a\xab\x0f\x71\xd4\x9c\xd3\x48\x31\x8e\xeb\x6c\x56\xc4\xe3\x49\x77\x2d\xa3\xd1\x0b\x41\x56\x85\x0b\x8d\xac\x52\x8c\x3a\x4f\x26\xd0\x4a\xf8\x52\xe1\x3c\xd0\xb4\x65\xb9\x8d\xad\x6a\x4f\x14\xa0\xad\xa2\xc8\x24\xde\x8e\x21\x3a\xce\x26\x48\x6b\x5b\xca\x10\xd9\x21\x82\x2d\x84\xa6\x2c\x26\xe3\xc3\x89\x60\x6d\xc6\xdf\x4d\x04\x63\x33\xfe\x7e\xd2\x63\x11\xf9\xb2\x62\x21\x45\x38\x3f\x92\xce\x62\x30\x65\x04\xdb\x19\x66\x38\xc7\x1c\x8d\x9a\xaf\x81\x8b\xb5\x43\x4c\xde\x3f\xb3\x9c\xf9\x63\x96\x2c\xe9\xcc\x2d\xc5\x7d\xa9\xcb\x30\x0b\xa6\xa6\x43\x20\xcd\x17\x2f\x9c\x20\x82\x0f\x7a\xc4\x2f\x0e\x6f\x23\xb2\xdf\x56\x36\x05\xc9\x7c\x1e\x06\x74\x11\x78\x0d\xc2\xe9\x22\xdc\x23\x9b\xcd\x21\x80\x91\x19\xbd\x73\x4d\xf5\x7f\xf5\xfb\x87\xeb\xe3\x7f\xef\x9f\x5e\x5e\x5e\x5c\x8e\xfa\xff\x83\x2e\xfa\x8c\xfc\x6d\x4d\x19\x29\xfa\x49\x5f\xc6\x61\xec\xeb\x1a\x08\xa9\x5f\x9a\x31\x3c\x8a\x5d\xe9\x6c\x11\x3e\x25\xec\xb6\xf0\xfa\xb2\xc0\x00\x90\xf1\xc1\x44\x48\x10\x3c\xd7\x08\x39\x08\x1f\x96\x98\x2e\xae\x99\x7b\x9f\x28\x84\x8c\xfb\xfc\x33\xb9\xe2\x09\xa7\x33\xd8\xee\x42\x26\x04\xa4\xc5\xbb\x24\x2d\x9c\xa4\xd9\x60\xe0\x4b\x9d\x21\x05\x23\x27\xfb\x64\x9d\xa5\xa4\x28\xbe\x5d\xbf\x48\x7a\xff\x57\xfa\xa6\xbd\xc1\xbe\xee\x69\xe9\x49\xbb\x6f\x1e\xa8\x83\xe9\xf4\x95\x3d\x03\x31\x8f\xfe\x0b\xfa\x65\xbe\x5e\x85\xf5\xfe\xf9\xae\xf3\xdc\xc1\x87\x5f\x33\x7b\x04\xe3\xe5\xe9\xa1\x1c\x3d\xe5\x56\x5b\x5a\x5b\xc2\x07\x83\xe0\x33\x79\x04\x1d\xc4\xf8\x60\x22\xf6\x80\x5c\x36\x8e\x8f\x0f\xc5\x4f\x34\xca\x61\xef\xfe\xa8\xf9\xdd\x4b\x21\x62\x91\x6c\xa6\x03\xc9\xe6\x76\x5f\x7c\x57\xe2\x9b\x7c\xee\x84\x0f\x13\xd9\xf9\x19\x27\x80\x2d\x17\x8a\xf4\x7f\x5d\x2f\x57\x9f\x60\x92\x86\xc1\xe9\xfb\xab\xd3\x40\xbc\x14\x65\x80\x55\x2a\x24\x11\x3d\x5a\x31\x88\xd1\x62\x85\x0f\xc5\x6b\x59\xe9\xeb\x3c\x0c\xce\xae\x4f\x2f\x21\x1f\xc9\x38\x61\xef\x69\xc1\xc3\x00\xf4\x27\xe2\x5d\x2a\xa4\x6c\x2b\x0d\x85\xd2\x49\x18\xbc\xb9\x3c\x3d\xfe\xc5\x4e\x62\xb2\xf8\xc6\xe5\x3b\xa8\x57\xbe\x0a\xbf\xd3\xb5\x0e\x83\x77\x67\x1f\x8e\xdf\xbf\x77\x8a\xa9\x88\x92\x2f\x94\x43\x55\x54\xc6\xaa\x3d\xad\x99\x55\xfb\xb3\xc1\xc0\x57\x87\xda\x58\xd3\x6c\x9f\x68\x3e\xe4\x9b\xed\xa2\x86\xe6\xd7\xad\x8c\xea\xea\xdc\x72\x66\xf5\x85\x8e\xb0\xc0\xf1\xe4\xc5\x79\xa5\x7c\x0c\xc4\x79\x32\x18\x04\xb7\x6b\x3a\x87\xe7\xe7\xd4\x7e\x9e\x13\x19\xe4\x8c\x27\x9f\x49\x3f\xe9\xff\x67\x30\x64\xe3\x83\xc9\x30\xf8\xcf\xbe\x94\x2f\xa1\x11\x30\x57\xb3\x71\x3e\x31\xe8\x7b\xde\xb5\xfc\xcf\xfe\xd5\xdb\x50\x1f\x85\x52\xe9\xd4\xdc\xc5\x30\x20\x3c\xd4\xd2\x3a\x83\xb9\x2f\x76\xa3\x7d\x75\xb6\xef\xdf\x27\xac\xfd\x08\xe0\xda\xdd\x10\xba\x36\x91\x7e\xc2\x54\x73\x49\x1f\x13\x96\x2c\x8b\x30\xd1\x70\x2d\x6f\x25\xc9\xab\x59\xbe\x22\x50\xbf\x1b\x9a\xcd\x9d\x97\xf9\xf6\x5a\xbb\x04\xa4\x73\x77\xcb\x5e\x6d\x5a\x63\x45\x7e\x6a\x69\x84\x36\xf9\x33\x6e\x85\xa2\xc7\x37\x9b\x3d\x1a\x15\x40\xd3\x70\xe5\x3f\x93\x74\x45\xe4\x80\x00\xef\x64\xc0\x8e\x64\xe3\xb5\xab\xf3\xa1\x18\x4e\xd5\x7d\x26\x6f\x98\x4b\xfe\x28\xc1\x1c\xef\x1d\x48\x85\x5e\x89\x30\xdf\x59\x49\x73\x73\x30\x18\x88\x4e\xee\x59\x15\xae\x50\x0e\x06\x83\xac\xa5\xb2\x54\xd0\x00\x75\xaa\x91\xb5\xdd\x11\xab\x2a\x5d\x79\xfc\xb6\xd6\x9d\x89\xba\xc3\xb3\xdc\x62\xc1\x74\xff\x09\x94\x33\xc5\x88\x60\x9a\xa5\x34\x23\xc5\x88\x97\xa5\x60\xcf\xb5\x22\xae\x90\x3a\x3a\xf9\x51\xd9\x37\xc0\x7b\x6d\xda\xa0\x3e\xc5\x4c\xda\x13\x3d\x6e\xb7\x31\xf8\xef\x21\x09\x24\xf3\xb9\xd2\xa0\x35\x8d\x02\x96\xea\x03\x69\x13\x19\xb4\xfa\xd3\xb8\xb9\xdb\x25\x56\x00\xb1\xc9\x91\x16\x1a\x14\x45\xe4\x64\x1e\xb9\x22\x45\x32\x41\x61\xf5\x51\x0a\x16\xf8\xf6\xff\xf3\x7d\xe9\xde\x28\x11\xd8\x81\x16\x75\xdb\xe4\x5c\xcf\x7f\x50\x86\xb3\x00\xcb\x3d\x3e\x1f\x1f\x4c\xe2\x38\x9e\x45\x72\xb5\x20\x16\xe7\xe2\x70\xc8\xe2\x5c\x08\x42\x34\xce\x85\x20\x04\xa6\x25\x2a\xf1\x9e\x48\xfc\x29\xfb\x9c\xe5\x0f\x59\x93\xa2\xc9\x4e\xc1\x69\xad\x6c\x0c\xae\x34\xc9\xaa\xc6\x57\x5d\x3c\xe9\xd1\x55\x9a\xd3\xc6\xa0\xcb\xc6\x19\x80\x15\x80\xca\x29\x8e\xaa\x82\x47\x45\x69\xa3\x26\x2b\x94\x90\x75\xdc\x9c\x1f\x3e\x4a\x6b\x9b\xd2\xba\xac\xb7\x4a\x49\xa8\x82\xe2\x4d\x9b\x1d\x9e\x19\xfc\x99\xd1\x9a\xc8\x92\x53\xa9\x87\xe0\xd8\xfe\x3a\x97\xbd\x63\x04\x30\xeb\xb6\xaa\x3e\xbe\xc6\x03\x5c\xdf\x3e\x69\x12\xc8\xbe\xd6\xd7\x2f\x7b\x6e\x29\xfb\x87\x76\xec\x60\x59\x15\xb9\xf3\xc0\x66\x09\x67\x9f\x1b\x8e\xd7\x64\x75\x1a\x23\x41\xc7\xec\x06\x49\x90\x62\xa6\x2e\x82\x94\xab\x12\xc1\xe3\xa7\xcf\xe4\x71\xa4\x34\xd7\xd7\xa0\x26\x6c\xf3\x89\xa9\xd7\xa8\x2c\x27\x48\x9b\x89\x34\xf5\x58\x37\xd0\x90\xe9\xb3\xbb\x1f\x6e\x25\xe6\xff\x2d\xba\x5f\x56\xa5\x3a\x14\xac\x21\x80\xe3\x41\x45\xc3\xa5\xd9\xad\xd4\x53\x75\x1d\x17\x69\x89\xf1\x0d\x46\x43\x56\xb0\x3e\x1a\xb6\xc9\x7e\xfd\x86\xc6\xed\x26\x13\x30\xec\x4e\x35\x5b\x7a\xe8\xac\x7a\x92\x11\x99\x45\xd7\xe4\x0b\xaf\xf9\x37\xf0\x88\x93\x2f\x3c\x14\x9b\x56\xc5\xb2\xcc\x22\x75\x01\xdd\x48\x3c\x53\x17\xd3\x8d\xf4\xd6\x25\x6f\x33\x93\xf5\x31\xb4\x73\xbd\xb3\xae\x5c\x1b\xb9\x9c\xfb\xd8\xff\x87\xbd\x3f\x6b\x6f\x5b\xb7\x16\xc6\xf1\x7b\x7d\x0a\x5b\xff\x1e\x3d\xe4\x31\xac\x4a\x1e\x32\xc8\x41\x7c\xbc\x13\x67\xd7\x6d\xe2\xec\xc6\xce\xee\x69\x55\x3d\x39\xb4\x04\x59\xdc\x91\x48\x15\x84\x9c\x78\xc7\x7a\x3f\xfb\xff\xc1\xc2\xc2\x44\x82\x94\x32\xf4\x7d\xcf\xc5\xef\x22\x8e\x48\x62\x5c\x00\x16\xd6\xbc\xdc\x5a\x3a\xdf\x55\xd0\x53\x43\x74\xb5\x9e\x8b\x84\x64\x4a\x40\x6f\x98\xd5\x43\x0d\x8d\x6e\x30\xca\x08\x07\x8b\x08\x34\x00\x08\xd0\xd8\x28\x93\x55\x8f\xca\x1a\x55\x27\x10\x4e\x76\x74\xa2\xac\xc1\x8e\x42\xe6\xc5\xce\x22\xb9\x87\x6f\x37\x6c\x67\x55\x30\xb0\xc4\x84\x4c\xc4\x48\x97\x4f\x73\xbe\x00\x83\x4b\x93\x63\x2b\x4a\xd4\xd5\x69\x67\xab\xa8\xca\x33\x21\xc2\xf3\x65\x0a\xdd\x33\x75\x5b\x80\xd8\x4c\x20\x21\x06\x42\x31\x4e\x52\x08\x0b\x65\xda\x7b\x69\x25\x66\xe5\x06\x23\x46\x76\xfb\x10\x96\xcf\xdd\x07\x56\x8a\x57\x2a\xbf\x08\x94\xbf\xe6\xab\x02\x82\xd5\xd6\x34\xdf\x0b\x17\xdf\xd8\x4d\xa9\xde\x5b\xab\x8b\xaf\x85\x4a\x4b\xc2\xe4\xe1\x41\x48\x1e\xdb\xb4\x0f\x96\xc5\xb2\x34\xe4\x0a\x07\x9d\xbe\xe1\xde\xf5\x5e\xe3\x01\x70\x99\x06\xea\x17\xa1\xbc\xcf\xd8\xf0\x68\x44\x0a\x2a\x8c\x02\x59\xb2\x21\x2b\xe5\x4b\x9e\x3a\xd2\xc6\x68\x05\x36\x39\x92\xfe\x54\xbc\xc3\x17\x8b\x97\x06\x29\x59\x4a\x16\x86\x09\xc6\x8b\x41\xd6\x3d\x7f\xf3\xcb\xf5\xdf\x3f\x9c\xbd\x7b\x77\xf6\xf7\x75\x2c\x27\x50\x21\x94\x39\x59\x29\xf2\x38\x97\x6b\x53\x28\x2a\x39\xb4\xa0\xdf\x30\x11\x73\xb2\x56\x81\x43\xa4\x70\xe6\xab\x9c\x5f\x27\xb7\x11\x27\x45\x4c\xe6\x74\xd5\x55\x7a\x51\x32\xa6\xab\x2e\xa6\x9e\x4b\x45\xca\x0a\x32\x95\x2f\xcc\x25\xe3\x9c\xb9\xf9\xc3\x03\xfe\x1a\x6f\x38\x7d\x83\x9d\x17\x49\x26\x0f\xd7\x34\xcd\x26\x3b\x86\x7f\xb1\x9a\xe3\x59\x00\xd6\xb3\x6f\x85\x35\x06\x0a\xf3\x56\xb3\x35\x3d\x8d\x54\x94\x04\x03\x55\xab\x59\x8a\xe6\x90\xa7\xd8\xe1\x0c\xed\x22\x8d\xc9\x94\xcc\x9c\x65\x9a\x74\x3a\x93\x38\x1e\x6c\xd7\x98\xdb\x4c\xb5\x11\x67\xa9\x51\xd9\xb5\x05\xda\xb0\x4b\xdb\x12\xdb\x49\xf9\x84\x92\x0c\x70\xd8\x83\x20\x16\x08\x0a\xf5\xf4\x98\x71\x28\x51\x4a\x44\x97\xdd\x25\xf3\x2b\xb8\x11\xe5\x19\xcc\x64\x0b\xcb\x7c\xa9\x59\x72\xe1\x08\x87\x5c\x99\xc0\xb8\xfb\xf7\x94\xcd\x27\x9b\x26\xd3\x12\xdd\x7b\x59\x0e\x62\x59\x3b\x95\x25\x5e\xb9\x92\xeb\x56\x8f\x2e\x6c\xcd\xa1\x77\xb5\x69\xdd\x54\x53\xcd\x09\x96\x89\xca\xd3\xe3\xfe\x25\x99\xb2\x4c\x5c\xa5\x13\xd8\x10\x15\xec\xc5\xf1\x82\x95\x5b\x1c\x1e\xdd\xf1\x83\xcd\xd7\xc6\xd9\xef\x4a\xe2\x3b\x32\xad\x5c\xc0\x4e\x07\xef\x3f\x1e\x77\x3a\xa2\x7b\xbb\x4a\xf8\x84\x4d\x54\x6b\x65\x18\xc1\x89\xd8\xf2\x92\x01\xec\x70\xa4\xb0\xc3\x71\x09\xcd\xe5\x31\x20\x08\x17\xed\xcd\x69\xd1\xe9\x14\x12\x0d\x74\x3a\xab\x96\x19\x9f\x96\x26\x4a\x8e\x60\x6e\xe3\xf1\x29\xb7\xb6\xa5\x23\x11\x50\x42\x8a\x55\x50\x77\x59\x21\x1c\xbe\x16\xdf\xcb\x69\xc5\x46\x12\xb2\xaa\x68\x3b\x2b\x1d\x4c\x4a\x05\x5c\x71\x6c\xd1\xf3\x9a\xaa\xec\x9d\xf8\x8b\xdf\x93\xab\x18\x0d\x75\xe4\x7e\xaf\xf6\x03\x0c\x76\x42\x7b\x27\xc9\x33\x2d\xd5\x3c\x49\xf6\xf6\xe2\xdc\xee\xa3\x61\x32\x72\x02\x63\x2a\x0a\x2e\x95\x04\x55\x55\x33\xfd\x01\xa0\x7f\x5e\x4f\xe3\xc3\x16\x05\xbe\x30\x49\x33\xe3\xec\x84\x77\xf8\xcf\xee\xde\x32\x04\x7f\xb2\x12\x69\xbe\x2a\xfc\x8f\xdc\x92\xfe\x15\x82\x3f\x68\xd3\x5f\x88\x49\x54\x1b\x02\x1b\x42\x1a\x21\x9f\xdf\x50\xb0\x10\x7a\xdf\xef\xf6\xbe\xb2\x7c\x3f\x5e\xab\xc0\x13\x85\x28\x0b\x1c\xb4\x0b\x5d\xf7\x66\x95\xce\x27\xc6\x7c\xdd\x72\x34\xb7\x4c\xe0\xac\x43\xbd\x9c\xd6\x83\x70\x50\x0f\x40\x94\xac\x7c\xde\x6a\xa5\x94\xe5\x00\x72\x63\xc8\xcd\xe1\xea\xe0\xd5\xcd\x29\xd7\x52\x30\x30\xc5\x4f\x7f\x97\xc8\xb7\x41\xee\x62\xcb\x55\xdc\x13\x0a\x31\x79\x9d\xde\xd0\x73\xb3\x01\xd1\xd8\xb3\x84\x93\xc2\x50\x74\x46\xac\x25\x72\x0e\x42\x14\x6e\x33\x25\x0b\x6d\x4f\xa2\xe5\x36\xa3\xc4\x7c\x6e\x2b\x8e\x7c\x2a\x24\x41\x32\x0e\xbc\x4c\x3b\x3d\x81\x71\xc7\xab\x9c\x6b\x7f\x12\x75\x82\x6a\xf2\xb5\xa3\xbb\x10\x02\xba\x3b\x63\xc9\x92\x64\x94\x77\x17\xc9\x7c\x9e\x8f\x23\x1d\x98\x40\x04\x02\xe6\x89\x61\x1a\xcc\x88\x9c\x9f\x2a\x17\xb7\x5f\xe6\xc9\x98\xcd\x72\x39\x9a\x28\x8f\x07\xe8\xf7\x96\x1b\x69\x3d\xef\x4a\x72\xa1\x98\xbd\x51\x5d\x65\x84\xc5\x24\x43\x47\x92\x32\x85\x16\x34\x1f\xf0\xf6\x44\x77\x9e\xe7\x1f\x57\xcb\x10\x31\xe2\x46\xda\x45\x62\x8d\x9f\x7e\x51\xa4\x9e\xb2\x56\x75\x69\x3d\x7c\x63\x70\x0d\x3c\xaf\x07\x6e\x67\x66\x64\x68\x2b\xc7\xe3\xd0\xb0\xd5\xc7\x3a\x67\x2d\x3d\x6e\xc2\x95\x51\xd3\x0b\x67\x08\x2a\xbe\x0e\x50\x83\x06\x56\x48\x39\xab\xd6\x1f\x1e\xa2\x4c\x55\x43\x4c\xcb\xe2\x98\xe8\x19\x31\x7f\x3a\xdc\x9b\xcb\xda\x19\xa9\xe6\x23\x1b\x36\x77\x09\xba\x86\xf3\xd4\xbb\x5b\xdb\x0c\x02\xff\xb8\x7d\x3b\x5a\x2f\x40\x36\xc8\x85\xb4\x09\x58\xd1\x2c\x87\xc0\xcd\x6b\x4a\xbb\xa2\xa1\x8a\xb1\xd2\x67\x52\xb6\x68\x72\x0c\x93\xae\x7e\xa4\xbc\xae\xa5\x59\x7c\x65\x5c\x2b\x8f\x95\x12\xad\x14\xda\x51\x8c\xa4\x34\x33\xfe\x0d\x53\xf4\x64\x04\x13\x22\xc0\x17\xca\x50\x8f\xaa\x10\xd8\xa7\x98\xaf\x6a\x1a\x0f\xd2\xbd\x3e\x5e\x07\x56\x52\x43\xbf\xcc\x92\xe2\xfc\x2e\x99\x0f\x78\x17\x7f\x11\xec\x4d\xae\xfa\xbf\x41\x76\xe5\x88\xaa\x34\x50\x88\x70\x25\x87\x20\xa5\xf2\xf0\x51\x8b\x4b\x5e\x9f\x8b\xd7\xc9\x0d\x53\xf4\x66\x77\xca\x20\x5f\xbe\x43\x29\xf4\x63\x15\x8f\xd6\x1c\xe5\x6b\x65\x37\x5f\x22\x27\x08\xef\x2e\xab\x8a\x6c\xf9\x5a\x11\xf8\x72\xaf\x25\x93\x6a\xcb\xae\xca\x1a\x75\xc6\xb5\xa3\xa8\x25\xcd\x38\x90\x66\xc8\x6c\x5b\x05\x22\xdf\x44\x6b\x11\x8e\x54\x7b\x70\xa5\x25\x25\x2f\x07\xe3\x49\x92\xe4\x44\x3c\x0d\x37\x0f\xe8\xef\x82\x27\x4f\x12\x24\x1f\x22\x81\xea\xa6\x81\xcb\x3b\x06\x44\x8a\xb5\xcc\x24\x29\x0b\x1a\x07\x6c\x1d\xaf\x21\x38\x7e\x03\xe8\x3c\xcb\x80\xcb\x97\x2a\x15\x8b\x27\x58\xb3\x13\xd3\xdf\xc3\x0b\x56\x88\x7c\xa9\x37\x0c\xaa\xe2\xb8\x21\x0b\xc3\x42\xcf\xdc\x38\x10\x96\x4c\x2a\xaf\xa0\x81\xb7\x1b\xbd\xe3\xd1\x40\x32\x74\x6c\x94\xb0\x2a\x7c\x21\x39\xea\xf2\x94\x0a\x25\x95\x10\x28\xc6\x73\x1a\x6e\xd9\x73\xc6\x8c\xf1\x77\xbd\x84\x02\x6f\x19\x26\xf9\x94\xc2\x97\x4b\xcc\x69\xe1\xca\x25\xe6\xa7\x51\x52\xcb\x93\xb3\x98\x24\x35\x0c\xfe\x8a\x28\xfd\x24\xd0\x1a\xbb\x7d\x20\x37\xe2\xc1\x76\x6d\xb9\xad\x54\xda\x58\x23\xe9\xf7\xb1\x59\xa9\x06\xfb\x20\xa4\x55\x13\x10\xb1\x6f\x93\x5e\x0d\xaa\x87\x34\x6b\xaa\x5d\xe3\xca\xaa\x5a\x0b\x15\xc4\x7e\x14\x86\xfd\x92\x88\x01\x23\xea\xd5\x40\xac\xe3\x90\x2f\xbe\x1b\x30\xca\x6d\x41\xfb\x5f\xab\x9e\x31\x4a\x9e\xa1\x9e\x9c\x2c\x7e\x62\x98\x8d\xc0\x35\x26\x11\x24\xa1\x7c\x98\x62\x0b\xa3\xfd\xbc\xc5\x54\x77\x90\x81\x5f\x43\xf0\xac\x7e\xcf\xaa\x51\x7c\xa3\x69\x1f\x9a\x8e\xaa\x30\x04\x0a\xe8\xe8\x93\x02\x5c\x6d\x12\xf0\x97\x8f\x24\x9a\x72\x66\xa9\x9c\x74\x55\xe8\x24\xf8\x4d\x4a\x37\xe5\x1a\xaf\x81\xa0\x97\x11\xb2\x4d\x36\xbd\x51\x94\xc5\x2a\x5a\xb9\xe2\xfb\x5a\x0d\x0b\x2f\x97\xcb\x5b\x14\xb4\x9f\x2f\xc3\x02\xcd\xe9\xad\x65\xbe\x33\x4d\xfc\x3f\x62\xa4\x57\xb1\xd1\x0f\x17\x23\x2e\x00\x63\xdf\xec\x7e\xab\x3a\xc4\xf5\x97\xb2\x56\xf8\xdf\xda\x82\xf3\x70\x38\x8a\x81\xc2\x93\x80\x79\x93\x8c\x67\x69\x29\x13\xe2\x77\xc1\xa7\xdf\x3b\x38\xda\x0e\x44\xb2\xe4\x37\x40\xa9\x52\xed\x5b\x00\xd5\xdc\x48\x00\x56\x65\xfe\xa8\x44\x5c\x5a\x48\x46\x07\x47\xb1\xbf\xb5\xf5\x2e\x35\x47\xc8\x3b\x40\x18\x80\x42\x13\xca\x8c\xdf\xb1\xaa\xb6\x3e\xb0\xd0\xfb\x7d\xb7\xca\xdf\x52\x31\xc3\x00\x23\x21\xcc\x15\xac\x6f\xa9\x73\xd9\x42\x68\x23\x34\xc0\x0e\xbb\x07\x99\x49\x99\x5d\x06\xfc\xf8\xe8\x09\x29\x51\x35\xc8\x8d\x83\xe8\x94\xb3\x65\xc2\xd9\xc4\x5e\x0b\xbb\x7d\x79\x1d\xec\xf6\x14\x03\x1b\xf0\x19\x76\xdb\x3e\x78\xe2\x14\xbb\x4a\xa6\xac\xa1\xe8\x53\xa7\xe8\x4b\xf4\x53\x7f\xc5\x93\xdb\xb2\x33\xa9\xad\x72\xe8\x0e\xe2\xd2\xf3\x02\xf1\x8a\xf5\x9d\x62\xd7\xa5\xb0\xc5\x4e\xb1\x03\x28\x06\x51\xaa\x2d\xb1\xca\x93\xac\xc0\x2c\xc2\xc1\x5a\x4f\xfb\x0e\x57\xfe\x15\xd5\x54\x67\x65\xab\xb0\x70\xe1\xa3\x23\x55\xd8\x37\x00\xab\x29\x7b\x6c\x1a\xae\x71\x09\xf5\x4a\xf7\x75\xcb\xdb\x14\xb6\x63\x7e\x97\xe7\xa2\x34\x08\xbb\x87\xd5\x72\xf6\x08\x23\xe2\xb4\x3f\xe8\x99\x4a\xbf\xa6\x5c\xac\x92\x79\xa8\xae\x57\xb3\x4f\x98\xa9\x03\xde\xce\x0d\xd3\x3d\x38\xd0\x13\x68\x2a\x74\xa8\x0a\xa9\xbd\x7c\xc6\xcb\xe1\xa0\x4c\xc1\xc7\x4f\xb1\x6b\xe4\x5f\xf5\x72\x06\xc9\xc3\xde\x83\x68\xd9\xaa\x4f\xfa\x84\x63\x65\xed\x53\xe5\x50\x5a\x3a\x17\x77\x4d\xbf\x4f\x0e\xcc\x94\x43\x1c\x4a\x78\x56\x4f\xd4\xac\x5c\xd6\xea\x8a\xcd\xa7\x75\x5d\x1c\x61\x17\x01\x56\xac\xae\xca\x71\xa0\x0a\x3a\xd6\xd4\xd4\x78\x84\x35\x20\x60\xc5\xab\x9c\x4b\xbe\xb5\xae\xec\x63\x2c\x5b\xa2\x3b\x1b\x3b\x78\xda\xc3\x4a\x65\xc6\xac\xae\xfc\xa1\x2d\xef\x39\x06\xd5\x14\x3f\x72\xb6\x1e\xa8\x81\x82\xa0\xd7\x17\xc8\xf1\x63\xbd\xf9\xb6\x28\xfb\xc4\x34\x7c\xb5\x48\xe6\xf3\x2d\x6a\x3c\x35\x5b\x7b\xbb\x0a\x8f\x7a\x0e\x3c\xf1\xb0\x35\x56\x38\x7a\xea\x54\x00\x05\x57\x78\xa7\x1d\x2b\x2c\x61\x8c\xe8\x6b\xee\x91\x43\xa7\xb5\xca\xbd\x51\x71\xdf\xab\x71\x4a\x3f\x0c\x92\xb9\x87\x2e\x99\x7b\xa8\x9c\xd2\xd1\x90\xb2\x0e\x5d\x6b\x9e\x23\x60\x78\xab\x2e\x7d\xff\x88\xfb\x9c\x3d\x08\x2f\x3b\x1d\xd3\x48\xc3\x91\x2e\x8b\x04\xa0\x7c\xf9\x50\x06\x0b\x85\x70\x62\xb0\x60\xc1\xc4\xaf\x09\x4f\xc1\x5d\xc0\x79\x67\x4e\x58\x45\x2a\x81\x66\x75\x05\x13\xf2\x78\x4f\x74\xe5\xa2\xd2\xba\x2d\x08\x82\x87\x6a\x01\x18\x67\xbe\x8c\x3c\xa2\xa0\x74\x56\x83\x95\x9a\x95\x47\xa6\x61\x6d\x88\xaf\x9f\xbd\x25\xaa\x58\x3c\x1b\x72\xad\xe6\xae\x8d\x1a\x45\xfd\x3e\x25\xe8\x12\x7d\xae\xb6\x92\x94\x55\x06\x75\xb2\xfe\x92\x04\xd1\xd7\x2a\x5a\x49\xbf\x69\xae\xcc\xd6\x7a\x4c\x2d\xca\x4e\x98\x0d\x9e\xf5\x4b\xae\xaa\x39\x12\xb6\xca\xb9\x73\x18\x36\x0c\x43\xc7\x3e\xed\x7c\xc4\x6a\x5a\xcc\xd2\x5c\x0b\x92\x1d\x2a\xfe\xd4\x25\x22\xed\x05\xbc\xe2\x3c\x0d\x9e\x63\xef\xe2\x3c\x2a\x93\x33\xa6\xc2\x05\x48\x71\xc7\x35\x57\xf3\x63\x85\x34\xaa\xe2\xb7\x1a\x1a\x4d\xf5\xe3\x8a\xd4\x6a\x0a\x2a\x74\x5b\x17\x90\xc4\x29\xf8\x54\x5f\xbc\xda\x13\xa6\x06\xbb\x3d\x82\x72\xc6\xa9\xa5\xba\x90\x48\x9e\x47\x8f\x8e\x3c\x76\x1a\x05\x01\x11\xee\xe8\x02\x6f\x18\xed\x91\x52\xd3\x9b\xa2\xe2\xd0\x3d\xa6\xa1\xaf\xc7\xdb\xf4\x55\xc1\x03\x75\x94\x97\x2d\xaf\xd0\x41\x4d\xb9\x43\x5b\x4e\x37\x59\x53\xf2\xa8\xd4\x62\x4d\x31\x87\xd0\xd8\xd0\xe0\x23\x5b\xb2\xa9\xc1\x27\xc4\x24\xe7\x69\x2a\x66\xc8\x3d\xc8\x01\x50\x53\xa8\xaf\xe9\xd1\x79\x9e\x4c\xea\xca\xe8\x0e\x41\x7c\x5a\x57\x48\x77\x37\x59\x2d\x7f\x98\x2b\xa8\x8b\x57\x97\xdf\xee\x12\xda\x6b\x95\xb9\xe4\xa8\xff\x88\x68\xbd\xd0\x32\xff\x71\x03\xee\x07\x7a\x7a\x6c\x28\x67\xe5\x45\x56\xbb\xe1\x0d\xeb\x7e\xbc\xcd\xbe\xaf\x2a\x14\xc2\xa7\xad\x7f\x84\xbd\xa7\xd3\xfb\xf7\x87\x07\x35\x85\x8e\x2d\x02\xa8\xdb\x9c\x7d\xe7\x70\xd7\x1c\xec\x03\x67\xa2\x8d\xc4\xd9\x81\x1a\xd4\x6f\xab\x45\x20\xea\x62\x09\x1c\xc7\x07\xdb\x80\x43\x36\x75\x11\xe0\x0f\x34\x32\x39\x3e\xdc\xb6\x15\xa5\x09\x68\x68\x69\x2b\x14\x28\x5b\x3a\xff\x57\x88\x83\xac\xca\x4a\xa2\x63\x89\x23\x1a\x1b\x55\x5b\x35\x29\x0a\xc6\xc5\x55\x1d\xad\x1c\x1d\x3f\x32\x37\xd5\xf9\x62\x29\xee\x7d\x6e\xd0\xbb\x9a\x14\x75\xaf\x64\x6c\xb5\x1a\x6b\x92\xd1\xe1\x88\xa4\xb4\xd7\x12\x25\xb5\x0d\x2a\xf8\xbe\x2c\xe4\xe5\x0a\x6a\xdc\xf9\xfc\x26\x81\x60\x38\x30\x83\x41\xfb\xc5\xeb\xb3\xf7\x57\xe7\xed\xbd\x74\x6f\x6f\x6d\x6c\x42\x60\x83\x45\x7a\x41\xed\x74\x2c\x29\xaa\x76\x69\x64\x6c\x48\x5c\x0d\x5c\x86\xba\x48\x10\x3b\x35\xa4\x25\xdd\xe1\x08\xfe\x88\x75\x61\x80\x90\xdc\xea\x86\xcd\x21\xdc\xbd\xb1\xf0\xce\x8c\x9b\xca\x49\xfe\x9c\xf6\x4e\xf2\xfd\x7d\xed\xb2\x93\x0d\x73\x0c\xb7\xa9\x48\x97\x04\xeb\x5b\x9a\xf1\x20\x26\x49\x57\xcf\x3a\x8a\x89\xc4\x0b\x39\x52\x9c\xca\xed\x12\x34\x45\x6b\xa7\x11\xd4\x1d\xe1\xc4\xac\xa2\x08\x41\xf3\x19\x44\xc8\x40\xdd\x4c\x02\x66\x2d\x56\x7e\x8f\x52\x70\x25\x1e\x45\x32\x2d\x13\x92\x58\xbc\x07\x3a\xd2\xd4\xe2\xf1\x17\x1e\xf5\x5d\x03\x29\x76\x1a\x89\x12\xd8\x1d\x31\x57\x14\xc7\x03\x57\x94\x04\xb6\x3f\x3c\xea\xb9\x2d\x84\x09\x27\x65\x5d\xd8\x40\x20\x45\xd6\xc8\xf2\xa7\x84\x3b\x9c\x89\xea\xe2\xd0\xef\x22\x38\x42\x2d\x61\xc3\x2a\x47\x5b\x54\x29\x4b\xda\xb0\xea\xf1\x16\x55\x2f\xf3\x09\x26\x60\xc0\x3b\x02\x62\xfc\x36\x0b\x08\x9e\x7a\x4c\xbf\x37\xcf\xea\x0d\x63\x57\xb2\xaa\x95\x34\x7c\x86\xef\x8f\x5c\x80\x3f\xb2\xda\x51\x65\xf5\xa3\xcb\x77\xf9\x7c\x87\x8b\x0c\xcc\x4b\x2b\x2d\x0a\xb6\xb2\x49\x3e\xea\xed\xa9\x80\x08\xa5\xdc\x28\x2b\x41\x30\x60\xd6\x57\x33\x2b\x80\x67\xb1\x81\x42\x7f\xf4\x54\x53\x3a\xfa\x18\xd4\x60\x3d\x2b\xaf\x03\xca\xa9\x49\xd4\xf8\xb8\xd9\xdc\x63\x99\x37\x1b\x7a\x68\x79\x35\x06\xfe\x5e\xaf\x89\xaa\x87\xdc\xcf\x56\x75\x8b\xf4\x77\x66\x2a\xaa\x8b\x61\x83\xcb\x91\xe5\x7d\xc6\x2a\xb3\xa1\x6b\x5e\x52\x89\xc6\x73\x06\xfa\xaa\x6b\x5f\x55\xa8\xd5\x75\x22\x12\xc6\x3f\x55\x07\x2c\x4d\xa9\x17\xf5\x95\x64\xa7\x99\x56\xce\xa3\xb1\x88\xc2\xa8\x83\x9e\x09\x61\x5a\x56\xc8\xd3\x8c\xa4\x36\x80\x09\x68\xd4\xde\xaa\x2c\xbf\xea\x18\x5e\xcf\xd2\xe2\xc2\xd8\xc0\x4d\xe2\x28\x8d\x63\xa2\x9c\xa5\x59\x51\xa4\x79\x66\x4c\x61\x7c\x5b\x10\x63\xf8\xa1\x8d\x3d\x26\xe8\xa0\xe3\x45\x02\x31\xee\x7d\x35\x0e\x2e\xc6\x38\x24\x73\x6d\xf2\x53\x2a\x2a\xf3\xe8\x26\x85\x36\x02\x57\x7e\x89\x24\xa1\xdc\xb7\x31\x8a\x72\x92\xc5\x2d\x54\x9e\x27\xa7\xa2\x3b\x53\xaf\x13\xc7\xc9\x76\x90\x9e\x5a\x1b\xa7\xe4\xfe\x86\xbd\xce\xc7\xc9\x3c\xca\xc1\x62\xfd\xb6\x24\x1a\x91\x2f\x4c\xb6\xa6\x3c\xf6\x7d\x0f\x24\x91\x4f\xea\x0c\xe7\xd0\xca\xb8\x77\x92\x59\xaf\xf8\x6c\x6f\x2f\xd6\xb6\xe6\xc3\x6c\x14\xb7\x6c\xca\x33\xad\x6a\x73\x3a\x50\x53\xfa\x4a\xb0\x31\xe5\x8c\x0f\xc6\xcd\x89\xf2\xa0\x49\xa7\xae\x43\xf4\x2e\xa5\xa9\x89\xc7\x57\x82\x5e\x2a\xa1\x67\xbd\x17\x8a\x8d\x3e\x0b\x92\xd6\x70\x5c\x86\x14\xb4\xc1\x05\x08\x01\x5f\x10\xd0\x52\x9b\x68\xe2\x2b\x9a\x0f\x7b\x23\x32\xa7\xb9\xf5\x93\x16\x70\x72\xee\x7d\x7b\x83\x04\x54\x42\x0e\x34\x7e\x66\x0d\x4e\x1e\xc6\x5c\xde\x5d\x3f\x6e\x29\x8f\x40\xfe\x24\x7f\x69\xb3\x61\xea\x99\xc9\xdb\x8d\x51\x6f\x28\x9f\x4e\xa3\xa6\x4d\x1a\x9b\xf0\xe9\xbd\x51\x8b\x53\x6e\x26\x4c\x42\xdb\x2f\x43\xf7\xfb\xf2\x16\x2c\x4d\x81\xd7\x4f\x81\x97\xa6\xf0\x3e\x53\xf9\x61\xca\x76\xf6\x9e\x7a\x3c\x10\xec\x43\xf1\x5c\xde\x46\x44\xae\xb7\x62\xd1\xad\xd9\xe1\x8a\x03\x9d\xae\xa1\x22\x16\xd4\xd6\xc3\x80\x06\xa6\xf6\x1a\xa2\x18\x18\x43\x3d\x85\x03\xd4\x6f\x92\x6a\x63\x5c\x81\x3f\x48\xba\x06\x24\x56\x0a\xca\x2c\x74\x50\xe6\x9c\x8a\xaa\x51\x80\x8a\x61\xe2\xa1\x5f\xdf\xb1\x99\xc5\xa7\x48\x1b\x96\xb1\x9f\x6b\x75\x2b\xf1\xec\xc0\xdc\x5c\x01\x20\x4a\xaa\x44\x85\x3a\x29\xa9\x87\x4a\xf6\xa9\x66\x7e\xdd\xc2\x89\x64\xc8\x62\x47\x13\xf4\xf8\x11\xe1\xc0\x8c\xa8\xf6\x40\xae\x6e\xad\xdc\x83\x74\xd1\x95\x35\xfc\x8b\x58\xa7\xc3\x5c\x4b\x40\x87\x46\xb1\x17\x72\x54\x7e\x8b\x13\xf0\x0f\x66\x45\x68\x69\x6c\x7d\x35\x45\xec\x9d\x04\xeb\x85\x13\xa4\x92\x10\x9c\x40\x10\x09\x8c\xaa\x00\x0e\x34\x96\xba\xeb\x19\x42\x7d\xc9\x23\x77\xe4\xd1\xe3\x3e\x29\xc3\xcf\x8d\x17\x98\xc7\x35\x22\xe1\x0a\xe1\x77\xd7\x33\x90\x75\xa0\xe6\x81\x35\x9d\x96\x8c\x73\x6b\x3a\xf5\x56\xed\xe8\x09\x84\xee\x82\x23\xad\xc8\x3f\xdc\x23\x2a\x98\xce\xda\x44\xa2\xa9\x87\x2e\xa0\x4e\xc4\xd4\x70\xfb\xaf\xaa\x32\x92\x47\x41\x19\xc9\x23\x57\x46\xf2\x08\x63\xee\xce\xab\xb5\x1f\x3b\xc5\x1e\x9b\xc4\x5d\xff\x56\x0a\x19\x43\xe2\xed\xee\x46\xc9\xc3\xc3\xea\xe1\x41\xc4\x64\x4a\x21\x92\x33\x7b\x78\x60\x2e\x95\xfc\xf0\xb0\x1b\xed\x66\x0f\x0f\xf2\x5b\x36\xec\x8d\xf4\x0d\x49\x66\xf4\xcb\x22\x49\xb3\x41\x42\x24\x78\x07\x2b\x02\x86\x92\x03\xb1\x6e\x55\xf6\x95\x84\xe2\x8c\xe4\xdf\x49\x82\x6b\x7a\x82\x8c\xc9\xd4\x25\xc3\xe7\xa7\x51\xf5\xbc\xcd\xfd\xc3\xa6\x0a\x20\x09\x3e\x97\xcf\x9e\xfd\x9e\xe4\xff\x8a\x2d\xa8\xf9\xe2\x3b\xa8\xf9\x3c\x6c\xd6\x57\xde\x6f\x10\x3b\x98\xac\xd4\x8e\x0b\x6d\x96\xe0\x56\x7b\x3c\xf2\xf7\x90\x32\x8f\x97\x48\xda\x42\x41\xde\x94\x63\x6d\x76\x5c\x5a\xe5\x38\xa4\x07\x8a\x98\x1d\x0f\x99\x13\x11\xab\x98\x11\x3f\x72\x63\xa2\x4f\xe5\x58\x93\xd1\x2d\x86\x5c\x87\x1c\x94\x8e\xc1\xdd\x88\xb3\xe4\xf8\x60\xb6\x85\x46\x36\x4d\xba\x43\xa6\x4d\xf4\x01\xdf\xa2\xd4\x22\xa0\x4b\xd4\xc3\xd0\x5c\x3c\x96\x6c\xd6\x2e\xe2\x06\x5d\xd9\xea\x6a\x16\x41\x14\x58\x99\xd4\xf6\xca\x48\x74\x1b\xd5\x79\x51\x36\x69\x25\x27\x28\xb1\x52\x20\x1e\xf4\x48\xaa\xae\xfd\xc1\x6e\xdf\x91\x0a\x2d\x69\xef\x64\xf9\x6c\xa6\x09\x9b\xa5\x36\x82\x5c\xd0\xd9\x70\x69\x22\x1e\x2f\xba\xe3\x59\xc2\xcf\x44\xd4\x8b\x31\xec\x71\xa7\x3d\x90\xc5\xee\xd0\x2f\x76\x1a\xb5\x3b\x68\x01\xd6\xa6\x94\x2e\xe2\x3b\xba\x6a\xa9\x88\x46\xf2\x53\x9a\xdd\x31\x5e\x30\xfd\x69\x6e\xa2\x90\x2c\x76\x29\x9d\xc6\x75\x21\x6e\x5b\x77\x94\xaf\xef\x4e\xed\x76\xf0\xaf\xdf\xe8\xae\x32\xcb\xe5\x5e\xdf\xce\xb3\xb7\x06\x47\xd8\x9a\xca\x2a\xe6\xcf\xa6\xfa\x6e\xe4\xdb\xff\x6a\x0f\xd2\x69\xb4\x9b\xc4\xea\x9d\x0a\xee\x93\x48\x8a\xfa\x96\x26\x92\x10\xbe\xa1\x8b\x96\xdc\xbe\x37\x74\x61\xe8\xcd\x18\x83\x5d\xdc\x1b\x5f\x82\x9b\xf8\x04\x92\x30\x7d\x30\x11\xf2\xe5\x05\x7b\x3b\xfc\x30\x6a\x1e\x4e\x7f\x1d\xc7\xeb\xb5\x99\x8e\xd5\x32\xeb\xd5\xdb\xeb\x93\xdd\xdd\x68\xf5\xf0\x30\x7f\x78\xe0\xb1\x5d\xe3\x4f\x74\x62\x25\x7f\x9f\x9e\xd3\xde\xc9\x27\x2d\xf9\x3b\xa7\x93\xe1\xa7\x11\xf9\x4c\xcf\xf1\x28\xb6\xce\xbb\xd8\xa1\xa2\xc4\xb4\xae\x27\xfa\x8c\x24\x97\xab\xbe\xfe\x8c\xe2\x3e\x17\xc3\x45\xa2\xf6\x18\x7d\xa7\x16\x39\x7c\x88\xbf\x5e\xab\x5c\x8f\xac\x25\xb6\x2e\x7b\xc1\xd7\xf8\x85\xd9\x60\x38\xa4\xf8\x1e\xc2\xa0\x85\x48\x60\x63\x04\xc1\xc4\xd0\x61\x89\xf5\x92\x2e\x07\x01\x4c\x42\x41\xff\x12\x7d\xe9\x95\x65\x95\x51\x52\x4f\x36\xca\x6a\x1b\xe4\x9b\x55\x23\xf3\xdd\x9e\x13\x0b\xbf\x90\x25\xbc\xf0\x7b\xeb\x35\xdc\x87\xf7\xbe\x6d\x4a\xc5\x7d\x07\x69\x52\x23\x33\x20\xbb\x7d\x6b\x88\xa1\xe9\x63\xcf\xe9\x50\xbd\xf4\xe8\x08\x38\xec\x0d\xa6\x08\xda\x2d\x9c\xe4\xbe\x23\x73\x9d\x09\x9c\xb7\x29\x2b\x14\xb1\x51\xdd\xf4\x8c\x2b\xe8\xeb\xf4\xc6\xfa\x6b\x46\xa2\x4a\x12\x97\x49\x83\x2a\x47\xf1\x7d\xb6\xe3\xe0\xe1\xe3\xd0\x01\x5d\xeb\x44\x02\xee\x4e\x18\x87\x3f\xa7\x6f\x12\x31\xeb\x2e\xd2\x0c\xe4\x5f\xc0\x57\x97\x27\x9d\x3b\x80\xb0\x36\x7c\x91\xc5\x30\xca\x6d\x38\x07\x7f\xe1\x10\x35\x30\x5d\x12\xb1\x9f\x04\x0c\x60\xf8\x30\x19\xc5\xeb\x0a\xf7\xb3\x69\x75\xd1\xd0\x46\x0e\xcd\xe2\x81\x86\x25\x2e\xea\xf3\x3e\x86\xf8\x40\xe4\xbf\x54\x38\xb1\xb0\x5f\xc1\x70\xa4\x53\xa4\x06\xb2\x16\xb2\x21\x1f\xb5\x20\x6b\x6a\xb8\xf9\x2c\x5e\x87\xbb\x87\xb0\xf9\x91\x62\x37\x91\x34\xda\x62\xd0\x09\xb2\xad\xc0\x4a\x69\x4e\xa7\xba\x93\xe4\x80\xf5\x85\xae\x63\x03\xe2\x6d\x8e\x59\x15\x07\xec\x3f\xfa\x94\xf6\x4e\xd9\xf3\xfd\xfe\xa9\xa0\x6c\x10\x55\x78\x2e\x55\x52\x65\x88\x3d\x8a\x37\x14\xe8\x97\xf3\x14\xa4\xd9\x6d\x7b\xa0\xb3\x2f\x69\x50\x13\x4e\x0f\xca\x19\x01\x58\x92\xc9\x82\xbd\x07\x46\x38\x3d\xf4\x92\x18\x40\xe0\x77\xf9\xf1\xa0\xfc\x69\xa5\x65\x2e\xf2\xeb\xa1\xf3\xd5\x0b\xa5\xef\x0a\xd4\x2e\xb2\xbb\x64\x9e\x4e\x76\x0c\xd4\x76\x96\x49\x51\xb0\x09\xe4\x3d\x74\x65\x0b\x6d\xe5\xc3\x8c\x51\xb0\x8b\xf4\x77\x76\xb1\x58\xb0\x49\x9a\x08\x16\x89\x67\xcf\x0e\x1f\xb8\xa4\x93\x2d\x03\xda\x3f\x84\x1c\x27\xb9\x5f\x34\xec\x84\xc9\x9e\x53\x9b\xc0\xf2\xe1\x81\x3d\xeb\x9d\x86\x61\x2a\x62\xd9\xd3\xf1\x80\x69\x9e\xb9\x2a\xfa\x08\x48\x24\x0c\xeb\x6b\x10\x56\xc0\x33\x4f\xb7\x18\xf0\x27\xaa\xb3\xae\x3d\x28\xcb\x00\x66\xda\x15\x0a\x5a\xab\xb9\x73\xea\x5a\x3b\x6e\x94\x28\x60\x9b\xc1\xa0\x90\x35\xb6\x88\xee\x8d\x12\x0e\x2c\xc3\x34\x96\xd1\x37\x5e\x4a\x33\x1d\x64\x26\xa7\x99\xef\xcc\x95\xd0\x2c\x10\x64\x66\x97\xd2\xb4\xd3\xc1\x5f\x79\xa7\x93\x60\x1c\x51\x8d\x27\x0a\xda\x3b\x29\xac\x8b\x51\xb1\x47\x0f\x62\x31\x2c\x46\xc3\xde\x88\xb6\xff\xab\xbd\x87\xbf\x2b\x46\x14\x21\xb7\xae\xd4\xc3\x80\x65\x2f\x31\xc3\x0f\xa9\xb8\xe5\x64\xb7\x4f\x78\xa7\xc3\x21\xa8\xa5\x8e\x8e\x67\x6f\x1c\x14\x92\x36\x83\xae\x66\x25\x74\xfa\xa0\xb0\xf0\x4c\xc4\x24\x2f\x7f\x4f\x30\xa1\xba\x73\x3e\x9e\x1e\x1b\xc7\xf9\xbc\x2a\x8f\xad\x33\xf0\x79\x44\x7c\xcc\x01\xb5\x75\xbc\x94\x5a\xe3\xf5\xa7\x8f\x2b\x7b\xcb\x93\xf6\x95\xbf\x6a\x24\x0c\xad\x0b\xcf\xc3\xc0\x37\xb0\x7a\x14\x6e\x57\x0f\x2c\x14\x20\xa4\xce\x06\xeb\xb0\xb9\xa9\x45\xc8\x1b\xdc\xc4\x65\xd8\x4e\xb8\xb7\xeb\xca\x83\xa2\xa3\x5e\xfd\xf1\x0d\xdd\xa0\x18\xac\xad\xce\x63\x3e\x30\x70\x67\xb5\x0f\x1e\xa3\x08\xd5\x09\xb1\xbf\xe5\xde\x33\x97\x44\xaa\xf3\xa0\x55\x3e\x8a\x58\x3b\xca\x29\x58\x3e\x22\x19\x01\x99\x16\x3f\xed\x4b\xb6\x57\x8f\xdf\x46\x05\xfb\xf7\xf5\xfd\x38\xd4\xb7\x0d\xa1\xf6\x63\x3b\xae\x9e\xb4\xc2\xe4\xac\x71\xc6\x74\x0c\xc2\x4c\x35\x14\x5f\xf6\x5f\xdd\x8d\x5b\x51\xd8\xea\x86\x53\xc2\x2d\x47\x07\x52\x87\xda\x43\x87\x76\x16\x46\xdd\xdf\xbc\x9d\x2b\x02\xe9\xfa\xdd\xdc\x2c\x8a\x2e\x07\x71\xae\x33\x85\x3c\x74\x62\xc1\xda\x2b\x4f\x73\x71\x81\x63\xc2\xba\x92\xb1\x53\x6e\xf7\xf9\xe4\x1e\x6d\x5a\x3c\x73\x9f\x3a\x01\x91\x0e\xc6\x7e\x7e\xf9\xf2\xe2\xf2\xe2\xfa\xe2\xec\x75\x5b\x27\x18\x15\x11\x2e\xb5\x32\x34\xca\x62\xc2\x23\xd7\xb0\xca\x0d\x86\x8e\xac\x4b\x2a\xfc\x96\x4b\xe5\xdd\x4e\xc2\xa0\x73\x4d\x79\xfc\x69\x97\xec\xd1\x2c\x7e\x80\x69\xc3\xfc\x33\xca\xba\x2a\xb6\x17\xe4\x38\xc3\x78\xfc\x35\x5c\x30\xaf\x30\xb8\x22\xc4\xe0\xc2\x14\x2a\xb1\xdf\x45\x29\xf6\x7b\xda\xe9\xa4\x91\xe6\x41\x9d\xb8\x6d\x21\x02\x1b\xbd\xf3\x5d\x12\x42\x7b\xea\xb3\xaa\xcb\xbd\xde\x7a\xde\x5b\xd5\x8f\x13\xc1\x2b\x6c\x11\x53\xe5\xc0\xa1\x1b\xab\xc5\x47\xc1\xed\xa9\xe6\xe5\x54\x0c\x14\x8d\xd2\x4c\x5c\xf2\xb2\xce\x64\x97\x69\xfb\x80\x5e\xcb\x72\x2d\xbd\x13\x61\x19\x16\xa1\x99\x35\x0c\xcc\x2e\x46\xb1\xed\x56\xe7\xfa\xcd\xdd\xd3\x57\x96\x85\xa4\xf1\x17\xee\x4a\x6b\x4b\x12\x36\x0e\x7e\x8a\xce\xbe\xae\x7c\x67\xf3\x82\x35\x7d\x07\xdd\x42\xec\x25\xf5\xf4\xa3\xb1\xb3\xf8\xd9\xb3\xa3\x56\xda\xe9\x44\xf9\x03\x7d\x02\xce\x12\xf2\xd7\x63\x55\x45\x12\x6d\x4e\xb4\x04\x4c\x20\x95\x40\x2c\x80\x96\xa5\xd1\x20\x26\xc0\x8a\xf6\x4e\x56\xcf\x4c\x0e\xfa\x95\x07\x9c\x62\xb8\x72\xd9\x54\xc0\x44\x09\x52\x2f\x3a\x36\x59\x68\x1f\x61\x4c\x26\x37\x4a\x20\x8b\x71\x01\xab\xb6\x36\x42\xdb\xda\x68\x92\xb4\xd1\xf8\xa5\xbc\x71\xb4\xac\xba\x4e\xa2\x03\x96\x31\x62\x1d\x9d\xc5\xad\x72\x56\xaa\x6b\x80\xd6\x8b\x3a\xbb\x18\x27\x90\x55\x43\xf6\xde\x66\x7d\x70\x16\xd2\x07\x67\x96\xe9\xf7\xfa\x46\xb0\xc9\x8f\x2a\x9f\x18\xd3\xfa\xde\xb2\x1e\x2f\xf3\x2e\xa8\x1a\xcb\xa6\x47\x50\xd0\x6a\x82\xbe\xb7\xaf\x72\x2b\x81\xce\x5c\x22\x3d\x7c\x85\xe8\xce\x88\x57\xb7\x2a\x52\x02\xb7\xae\xcc\x56\xa9\x33\x47\x47\x76\x2c\xc7\x66\xa1\x52\x5e\xa9\x10\x16\x20\xe8\x4a\x6b\xb9\x3f\xae\xe5\xfe\xa8\x26\x24\x7b\x01\xcb\xf8\xe6\x7f\xcd\x1e\xc1\x5b\xf5\xd4\xc4\xca\x89\x62\x47\xa0\x6a\x17\x4f\x34\xee\x92\x2d\x36\x86\xe5\x9f\x6d\x4f\xdf\xb0\x45\x1a\x77\x85\x26\x11\x4c\x07\x27\x10\x57\x48\x9c\x86\x24\x8c\x55\x7c\xe0\x54\x5c\x3b\x96\x11\xae\x54\xd2\x59\xdb\x40\x06\xba\x37\x00\xff\x77\xf5\x86\x71\x4e\xea\x06\x79\x37\x16\x98\x54\x0e\x37\x50\xc4\x25\xd7\xa7\x3e\x60\x90\xef\x28\x75\x2e\x13\x6b\x42\xa7\x92\x6d\xe1\x66\x40\xfa\xa3\x66\x4b\x10\x67\x33\x38\x91\x8a\xea\xae\xeb\x17\xaa\x03\xdc\xc4\x9f\xf5\x26\x36\xd6\x73\xef\x60\x8a\xbf\xb8\x4b\x62\x66\xe8\xc6\x90\x92\x14\x9d\x09\x47\xa8\x51\xbb\x08\x05\x9b\x91\xa4\x6f\x99\x8f\xf6\xae\x76\x5d\xdd\x5a\x25\x61\x1e\x09\xb3\x5a\x3a\x83\xab\x23\xa6\x1d\x78\x42\x5b\x82\x71\xc3\xc4\xda\x44\xcd\xa9\xe6\x1d\xfc\x05\xa6\xf6\x1b\x55\x61\xb2\x5e\x6e\x9c\x62\x38\xae\xfa\x6b\x2f\x58\x16\x86\xce\x52\xd2\x04\x2c\x04\x53\xb5\x6f\x3e\xa9\xf0\x3d\xaf\x6d\x49\x3f\xa8\x16\x92\xb8\x48\xfd\x98\xf8\x5a\xaa\x32\x92\x35\xd4\x06\xc4\xf2\x84\x31\xae\x59\x9d\xba\x42\x27\x54\x74\xd3\x49\x29\x03\xee\x1a\x0d\xc2\xaa\x68\x83\x77\x93\xa2\x7a\x08\xab\xf1\xea\x4f\x9d\xdf\x03\x6f\xe6\xec\xd3\xce\x4d\x89\x04\x84\x34\xf4\x4e\xfe\xdc\x0a\xf4\xc8\x17\xb3\xd4\xa8\xaf\x03\x3b\xcf\xc0\x36\x29\xc5\x6a\x97\x9f\x4f\xdd\x87\x1f\x3c\x96\x9e\x19\xcb\xdf\xbc\x55\xab\x19\x91\xb7\xb4\xa7\xd5\x57\x83\xd0\x06\x60\x9f\x76\xae\x7e\x00\xc0\xe4\x36\x2f\x25\x81\xd6\x59\x97\xbd\xe4\xcf\x4d\x99\x9e\xcb\xe9\x99\x2b\x49\x99\x31\xcf\x28\xeb\xda\xdc\x9a\xef\x56\x99\x48\x17\x4e\xb2\xcd\xbf\xf1\x54\xb0\xb7\xd9\xfc\xde\xbe\xfa\x13\x4b\x96\x26\xa3\xa6\xb6\x93\x63\x5d\xf7\x37\x36\xe3\xbe\x32\x0d\x79\x2f\xcf\x5f\xbf\xfe\xf0\x97\xcb\xb7\x7f\xbb\xfc\xe0\x90\xa8\x1f\x7e\x79\x7b\x75\x71\x7d\xf1\xf6\xd2\x0d\x7c\x97\xd1\x2f\xeb\xd6\xe6\x1a\xaa\x70\xaa\x53\xa3\x4e\x39\x63\xbf\x33\x88\x07\x94\xd7\xa0\x04\x13\x67\x53\xb2\xe6\x05\x1d\x8e\xd0\x4d\x85\xf3\xe4\xbe\xa0\xc3\x14\x9f\x85\x72\x33\xd4\x9f\x15\x4a\xb2\xcf\x78\xe5\x4d\xcc\x0b\x25\xae\xde\x14\x18\x2a\xa0\x93\x71\x04\x4a\x38\x26\xa3\x34\x67\x36\x9a\x18\x28\x27\x06\x5e\x29\x20\x81\x58\xac\xf2\xaf\x38\xd2\xbd\x1a\xe5\x8d\xcd\x3c\x6d\xf2\x77\x85\xb4\x39\x56\x83\xa3\x85\x17\x43\x3e\xf2\xa3\x9a\x59\x85\x8d\x50\xbf\xcb\x7c\x18\xd8\x56\xe9\x4e\x0c\x47\xe6\x4c\x54\x01\x7b\xc3\x3c\xb1\x90\x37\xcd\x59\x63\x08\x4b\x5c\xa4\xfa\x76\x23\x6f\xed\xd0\xe1\x38\xf6\x56\xd8\xf6\x87\x6e\x9f\x56\x0e\x1c\xe8\x16\x12\x87\x2b\x40\xa5\xd3\x7b\xa5\xd7\x09\x2e\xa5\x13\x4e\x4a\x0e\x85\x07\x96\x52\xe0\x1c\xd5\x4e\xaa\x9b\x23\xee\xb3\x0d\xb0\xd3\xa5\x3c\xe0\x89\xfc\x97\x3c\x0f\x20\xe4\x2f\x38\x0c\x6f\x4c\x44\x81\xdf\x5d\x0a\xbc\x97\xf1\x1d\x3e\x10\xec\xca\xeb\x77\xed\x84\xbb\xab\xa0\x81\x1c\xd9\xd4\x4d\x37\xb6\x09\xae\xcb\x88\x77\x62\x85\x19\xa2\x7b\x70\x85\x1e\xa4\x77\x5c\x85\x19\xa6\x7f\x6a\xbd\x15\xf7\xf2\x28\x5b\xfa\x4a\x5b\xb8\xe9\x93\x2d\xcc\xec\x1a\x0e\xb8\xc9\xa1\x5d\xcb\x81\xe0\xe0\x87\x6c\x84\x5e\xc0\x97\xd5\xf5\x76\xcb\x63\xa7\xb6\xfc\xd5\xc6\xa3\xae\xa5\x9a\x46\xd8\xcf\x9d\xd3\x2f\xcc\xe9\x6f\x8e\x05\xd7\xe2\xc3\x6c\x64\x9a\xc2\xc4\xe0\xa9\x0d\x96\x8b\xa3\xa9\x8e\xa3\x82\x2a\xf4\xd8\xbd\x7c\xee\x75\xfb\x5b\x2f\xd1\x90\x29\x73\x77\x4a\x69\xe6\xd9\x2f\xe3\xaa\xc9\xef\xd5\x2a\xa5\x10\xbc\xf8\x23\xe2\x56\xf7\xac\x81\x58\x77\xae\xb1\x1c\x1c\x6c\xb8\xb4\xa3\xd2\xaa\xc5\x66\x6f\x57\x6e\xbd\xa4\xa5\x64\x2b\x41\x8e\x82\xdb\x18\x73\x61\x57\x1b\xe3\x4d\x63\x36\xbe\x00\xd1\x4e\x6a\x76\x3e\x37\x3b\x3f\xd5\xdb\x9e\xeb\x6d\x9f\x9a\x3d\xcf\xcd\x9e\x4f\xed\x86\x4f\xb7\xd8\xed\xa9\xd9\xea\x5c\xff\x8a\x95\xc9\xbb\x28\xf3\x2a\x5c\xb3\xaf\x29\xe5\xd5\x63\x90\x7e\xe5\xb6\x4e\xbf\xf2\xd8\xa4\xff\xab\x8e\x41\xfa\x55\xc7\x20\xfd\xdf\x72\x0c\xd2\xef\x3e\x06\x7c\x1d\xe5\x2a\xd9\x95\x3e\x00\x85\x4a\xa6\x5e\x77\x00\x70\x86\x7a\xf7\x83\x7e\xa0\x5e\x6e\x12\x2b\x11\x8d\xa2\xb9\xbc\x8b\x58\xbd\x6a\xde\x98\x59\x68\x63\x66\x9b\xee\x73\x35\x49\xb7\xab\x4d\xc4\x98\x57\xd6\xb9\x6e\xb3\x6d\xc0\x5b\x6d\x02\xf6\x08\xd4\xad\x0a\xbe\xdc\x4a\x0a\x34\x43\xb6\xdf\x1f\x6d\x16\x7a\xa9\xc2\x7a\x74\xb0\x70\x85\x95\x15\xe8\xc5\x5b\xb5\x94\x19\x76\xcd\xbd\x8c\xb7\xf2\x0c\xb8\x01\x94\xbb\xa9\xf4\xee\x3d\x2b\xd4\x10\x75\x19\xbc\xd2\xdf\x6b\x53\x77\xf5\xf7\xa2\xe8\xf1\xa3\x27\x1d\xd3\xbc\x9c\xfd\xcd\x7d\x32\x99\xf0\xc8\xe9\x26\x8e\x9f\x3f\x7f\x12\x1b\x4f\xc9\xb4\x40\x49\x4f\x6d\xb3\xbd\x83\xa3\x8d\x6d\x9a\xe6\xe4\x2e\xa9\x6b\xe9\xe0\xf8\x78\xfb\x86\xf2\x65\xbf\x51\x82\x5d\xdf\xc6\x5e\xdf\x6d\xe5\xe0\x5b\x5b\x39\x70\x5b\x39\xfc\xd6\x56\x0e\xe3\x40\x02\xb5\xb1\xef\xce\xf5\xc0\x9e\x3d\x3b\x58\x1b\xbe\x52\x49\x42\xa6\xb4\xdf\x3b\x7a\x72\xfc\xf8\x11\x99\xd5\xef\x24\x63\x6f\x67\x23\xf2\x5b\xd6\x4a\xef\x2a\x97\x92\xd3\x4f\xe3\x64\x99\x8c\x53\x71\x4f\xa7\xc4\x91\x20\xaa\xb0\x96\xa0\x6f\x03\xb6\x0d\x14\x6e\xaa\x62\xcb\x6e\x5a\x89\xfb\xdf\xa7\x99\x38\x3c\x30\x56\x1b\x96\xd3\xd3\x19\x1c\xb0\x73\x0b\x1e\xb4\x18\x74\xc7\x92\x95\xc6\xd2\x73\x9c\x6e\x82\x3d\x4d\xbd\x9e\x9a\x39\xc4\x65\x39\x82\xac\xc2\x11\xe9\xef\xec\xc5\x8c\x59\x75\xb4\xec\x67\xe8\x2e\xd8\xde\x48\xe5\xd7\x34\x25\x4b\xae\xb3\x92\x27\xf3\x86\xad\xa5\x76\x77\x91\x69\x90\xf4\x5c\x20\xc4\x0d\xb0\xd3\xdc\xdd\xde\xd4\x19\x4f\xb7\x60\x02\xa2\xd6\x96\xd7\x6a\xed\x3d\xef\xef\x23\x0d\xa6\xb6\x5d\x2d\xd6\x82\x29\x2a\xca\xb1\x08\x14\x36\x7c\x02\x96\x53\x11\x95\x55\x9a\x88\x8a\x9a\x42\x28\x63\x50\x60\xb3\xec\x0c\x49\x8f\xa0\x87\x01\x73\x2f\x55\x8f\xd9\x55\xaf\xf6\xe8\x21\x01\xf0\xba\x19\x22\x42\x83\x81\x8e\x86\x6c\xaf\x3f\xa2\xe3\x48\x10\xe5\x8a\x5e\x94\x12\x7d\x78\xb8\x19\x46\x82\x10\x69\x84\x07\x36\xad\xd9\x80\x00\x2b\x5c\x9e\x2a\x23\xe3\xa8\x47\x0e\x63\x3d\x4b\xb1\xc5\x2c\x85\x1e\x70\x3e\x0d\x8c\x04\x85\x0d\xe3\x7c\xc9\x6a\xcb\xec\x94\x00\xf1\xfc\xf9\x01\x40\x8e\xb3\xda\x1b\xd7\x16\x6e\x95\xa1\x18\xb6\x1e\x7c\x10\xcf\x9e\x1d\xf6\xd6\x91\x20\x7d\xe3\xec\xef\xa4\xf7\x68\x3c\x40\x2e\x28\xf4\xe1\x69\x39\x87\x6a\x44\x0f\xfa\x47\x8f\x8f\x9e\x1c\x3e\x3a\x42\x33\x0e\x17\x4d\x29\xc8\x0e\x05\x01\x12\x08\xe3\x70\xff\xe2\xe2\x31\x17\xeb\x21\x2d\xaa\x13\x68\x3a\xc5\x48\x40\x31\x6d\x5c\x7d\xc5\x88\x28\x2f\x5e\x92\x52\x3e\xd4\x50\x31\xa7\x20\xca\x48\x1a\xc5\x18\x2c\x38\x59\x8a\x15\x67\x55\x69\xfc\x37\x06\x37\x72\xc0\x82\x5a\xa5\xf2\x04\x0d\x04\x7d\xcc\xc1\x62\xc4\xc3\x5a\xbe\xaf\xa5\xf8\x76\x7f\x11\x58\xd7\x81\x5d\x62\xa2\x6a\xb8\x92\x7e\x90\x36\xce\xd0\xed\xa7\x4e\x82\xf7\x5d\x33\x94\xb8\x2c\xff\xf6\x38\x53\xb2\xfa\x4c\xfb\xfd\x19\xd1\xa6\xc5\x82\x5a\x99\xf0\x21\x57\xd7\xa2\x2c\x3f\xb7\x90\x8a\x43\x5a\x15\x2c\x5a\x77\x96\xb0\x29\x7d\x39\x31\xaf\x83\xaa\xa8\x45\x8b\x6e\x55\x90\x84\xe5\x16\xaa\x91\xef\x9a\xc6\xec\x7e\xe2\x87\x78\xab\x68\xce\x66\x8e\xf8\x4b\x45\x57\x87\x48\xee\x90\x2e\x14\x6c\xb4\x7e\x38\x2c\x4a\x72\xed\x65\x4b\xb9\x77\xd5\xf2\x25\x5b\xe9\x71\x1d\x2a\x37\xc0\x75\x48\xaa\x7a\xe2\x10\x4b\x77\x5a\x0a\xef\xe6\x75\xc6\x04\xf3\xb1\xe9\x4f\x79\x4c\xc9\x72\xc6\x36\x23\xab\xdc\xb6\x3c\x3e\x11\xcf\x38\xa0\x88\x4c\xe2\x27\x89\x20\x0c\x3c\xd7\x56\x9e\xbf\x28\xa9\x10\xb8\xb6\x75\xfe\x81\x4a\x84\xb4\x00\x8e\x21\x68\xf8\xd1\x15\xc9\x2d\xa5\x74\x2e\x17\x14\xcb\xf9\xa9\x92\x6c\x51\x5d\xec\xc6\x0b\x0e\x16\x7f\x99\xed\xed\xc9\xd7\xe3\x7c\x71\x93\x66\xec\x3a\xb9\xbd\x65\x93\x46\x6f\x04\xa0\xf5\xb4\xfc\xfa\x59\x66\x3d\x12\x52\xf0\x48\x90\x43\x92\x0c\x74\x0a\x09\x31\xb1\xf7\x71\x2b\xdd\xa5\x74\xde\xe9\xa8\x8b\xc3\x61\xe7\x97\x91\x4a\x3f\x86\xfd\x5f\xc9\xd5\x09\x5c\x5a\xd0\x35\x93\x07\x61\x82\x0e\x21\x27\x68\x0f\xcd\x4f\x4c\x10\x06\xdd\x75\xe6\x77\x9d\x79\x5d\x67\x31\xb4\x94\xb1\xcf\x02\x82\x11\xf1\xba\xa1\x7c\x0f\x10\xbe\x01\x00\x8b\x64\x19\xbe\x7a\x95\x95\x98\x4e\xd3\x96\x16\x98\x81\x29\x9c\x9d\x6d\x97\xd2\x73\x59\xcc\x18\xdd\xbf\x48\xc6\x33\x46\x59\x17\xfe\x9f\x58\x0b\x7e\xd6\x7d\xbf\x9c\x24\x70\x27\xc8\x1d\xa3\x0b\xa8\xdf\x2f\x53\x2e\xee\x9d\x4f\xef\xdf\xbd\x3b\xbf\xbc\xfe\x70\x7d\xf6\x33\x65\xdd\x5f\xdf\xbe\x3e\xbb\xbe\x78\x7d\x8e\x8f\x2f\xde\x5e\x5e\x5d\x9f\x99\xaf\xd7\xc9\xad\xd2\xfd\x49\x20\xbf\x63\x77\x69\x91\xe6\x99\x6a\x46\x57\xa4\xac\x8b\xb6\x7f\x4e\x75\xf9\x12\x83\x69\x5e\xdd\x67\xe3\x19\xcf\xb3\xf4\x77\x6c\x04\xc7\x6c\x82\x6d\xea\xa2\x69\x9e\x9d\x71\x91\x4e\x93\x31\xe8\xba\x5e\xa7\x85\xb8\x10\x6c\xa1\x55\x65\x76\xb2\xa8\xe5\x72\x7a\xd3\x2a\xaf\x7e\xcb\x0e\x26\x6b\x39\x63\xbc\x4c\x2e\x51\xdc\x56\x77\x25\x86\xae\x15\xf0\xf3\xa8\xb1\xd2\x02\xb4\x79\x97\xcc\x57\x2c\x8a\x29\xa5\x0e\xea\x74\xa0\x94\x92\xb4\x9b\x4e\x70\x78\xb9\xdc\x6c\x89\xfc\x53\x6c\xbc\x52\x64\xf7\x1a\x37\xa7\x59\xc6\x38\x15\x4d\x4c\x0f\x8c\xa3\x4a\x21\x47\x3d\x92\x0f\x4d\x7b\xa3\x38\xb2\xed\x01\xed\xd5\x30\xbf\xa8\x47\x92\x9a\xaa\x60\x2e\xe1\x33\xb6\x2b\x7b\xb4\x73\x3c\x47\x2d\xe5\x1b\x12\x0a\x3c\xc7\x34\xdc\xd6\xda\x61\x30\x9c\xee\xc8\x2e\x40\x84\xc9\x97\xd3\x09\x15\x6b\x6f\x57\x16\xa4\xdc\x8f\xa9\xde\xdb\xd0\x3c\x70\x74\x98\xf1\x73\xae\x0c\x51\x22\xe5\x98\x1d\xb7\x4a\x07\x61\x5e\xdf\xcb\x65\x72\xb9\xa1\x9f\xcb\xe4\xd2\xe9\x69\x8c\x3d\xf5\x4d\x4f\xde\x09\x1c\xd7\xf7\x34\xdb\xd0\x8f\xa0\x94\xce\xb0\x97\x29\xf6\x72\x60\xe7\xe3\x9c\xfa\xa9\x4e\x4f\x5c\x26\x13\x83\xe2\x46\xc2\xbf\x95\x52\x9c\xb9\x92\xca\x90\x9c\x5e\x9d\x14\xca\x1b\x84\x91\xc6\xde\xf1\x87\x51\xe8\x33\x97\x94\x2a\x70\x63\x4f\x88\x7c\x52\x46\x70\x4d\xf2\xcf\x9a\x93\xa6\x93\xe2\xa9\x09\xad\x21\xeb\x91\x67\xdd\x6e\x74\x72\x38\xe5\xbd\xbd\x19\xc8\x11\x53\xe7\x14\x2d\x9d\x84\x2e\xcc\x4f\xe4\xd2\xd3\x29\x52\xe6\x2d\x3f\xb1\x0b\x1b\xf6\x46\xa5\x0c\x2e\x77\x08\xb0\x48\x7e\x23\x10\xa9\xa7\x9c\x68\xe5\xde\x14\x89\xd7\xeb\xd2\x05\x31\x21\x2b\x49\x87\x6d\x20\xf8\xbe\x4e\x10\x3d\x4f\x0a\x01\xdc\x23\x26\xd2\x03\x3b\xeb\x42\xfc\x0a\xc0\x54\x2f\xbe\x49\x1a\xdd\xb8\x1a\x4e\xa7\xbb\x94\xce\xb4\xcd\xb1\x3b\x96\x19\x31\xaf\xd4\x58\x90\x9e\x5f\x2c\x57\x82\x45\x71\x5c\xfa\x8c\xe6\x78\x15\xac\x69\xa2\x6a\xfb\xb3\xd4\x0b\xec\xde\xc6\x8b\x96\x8a\x80\xb0\x49\xc5\x95\x69\xd8\x66\xc1\xa3\x33\x4d\x79\x21\xa8\x20\x59\xb7\x60\xe3\x3c\x9b\x50\x4e\xb2\x8d\xf4\x75\xe5\x20\x95\xe9\x92\xca\x61\x20\x42\x59\x00\xf9\x39\x06\x57\x22\x04\x73\xe5\x11\x9c\x7c\x56\x6d\xc0\x00\x35\x9e\xd7\x2e\xbc\x72\xa4\xfa\x9d\x12\xa3\x2f\xe2\xd6\x2a\xba\x8b\x31\x2c\x42\x1d\x50\x90\xb1\xd7\x20\xe1\x41\x90\x88\xe4\xb6\xa0\x82\xf0\x6f\x00\x43\x33\x10\xb6\x00\x41\x49\x4e\x21\x87\x42\x04\xdd\xef\x6f\x70\xf7\xd5\xb0\x68\x09\x6a\xa0\x97\x49\xca\xd0\x6a\x99\x34\x8c\xee\x15\x8c\x6e\xbf\x1b\x46\x12\x44\xb0\x53\x81\x60\x94\x3b\x55\xf6\xf1\x23\x81\xd5\xa4\xd7\xdc\x76\xfb\x38\x03\xd4\xa2\xdf\x5b\x67\xe7\xa4\xdd\xd5\xb2\x42\xb8\x30\x9d\xe5\x52\x24\xb7\xfa\xb0\xcb\x09\x33\x52\x6e\x52\x9f\x7b\x7b\x96\x9d\xfd\x58\x22\xa5\x6f\xc9\x2a\xba\x55\xc0\xbf\x69\xb6\x88\x92\x1d\x68\xe2\xcf\xb1\x78\xf4\x11\xdd\x57\x51\x71\xfe\x96\xb2\xb9\x38\x6d\x3f\x36\x3b\x1d\x76\xe2\xa6\xc5\x95\xf0\xe8\x74\x3c\x2a\xea\xe1\x21\x2a\xd7\x28\xe1\x3c\x52\x9d\x8b\xa1\xd7\x24\x8f\xae\x22\xb7\x36\xa1\x40\x0f\x06\x86\x2c\x2e\x73\x2c\x37\x18\xe2\xe4\x3b\x11\x21\xec\x68\x80\x4e\xd6\x35\xec\x3a\x20\xc6\x85\x22\x10\xb7\x42\x8c\x8d\x87\xdb\x59\x05\xd3\x43\xcb\x36\x39\x83\x5c\xcf\xb2\xaf\x38\x62\x3e\x76\xbb\x51\xfb\xe6\xd3\x06\x95\x60\xf9\x2a\x6c\xd8\x4c\x36\xf1\xf5\x84\xee\xf6\x89\xdd\xe3\x6a\x83\x78\x63\xa4\xac\x51\x4f\xc2\xd8\xc7\xba\x9b\xd3\xe9\xe5\xd4\x1f\xe1\xa0\xf4\x3d\xc2\x58\xe6\xa1\x0d\x91\x4e\xa3\xdd\x72\x73\x71\xb8\x9b\xc8\xd3\x22\x98\x19\xd4\xec\x78\xa6\x25\x03\xdc\xdd\xda\xba\xe9\xf3\x56\x15\x80\xdc\x60\x5a\xc7\x77\xd2\x4c\x0a\x9c\xca\x74\x01\x8d\xaa\x28\xa5\xd9\xe9\xf9\x20\x2a\xad\x50\x0a\xf2\xb6\xba\x0c\xe4\x9b\x26\xa1\xda\xa8\x74\x16\x3a\x72\x0e\xc2\x0b\x2c\x7d\x8f\x08\x87\xe1\xf4\x84\x03\x9f\x30\x89\x7e\x3b\x99\xdc\x1c\xde\x3c\x7e\xc2\xf6\x0f\x27\x07\x07\xfb\x47\xec\xe8\x66\xff\xc9\xe3\xc7\xc9\xfe\xa3\xc3\xfe\xe3\xf1\xc1\xf8\x78\xdc\x3f\x3a\x6e\x43\xe1\xda\x3c\xee\xb8\x41\x15\x07\xca\xec\x76\x9b\xd7\x70\xcb\xf5\xc4\x18\x34\x61\x91\x81\xcf\xd0\x7f\x2e\xa7\x6a\xfe\x2a\x5c\x40\x10\x73\x9a\xf6\x5e\xe5\x3c\xe2\xb1\xc3\x66\x88\x24\xcd\xd4\x81\x91\xf4\x12\xcb\xd4\xaf\x8f\xec\x9e\x72\xf9\x57\x52\x75\x82\x71\x50\x2e\x02\xe6\x60\x8b\x9c\x0a\xf8\xaf\xd4\x26\xc9\xbe\x89\x4c\x0d\x5c\x56\xb8\x47\xf4\xc8\x10\x8f\xe8\x61\x60\x8d\x5f\xbd\x69\x45\x56\xe4\x60\x02\xe1\x97\x2a\xbc\x71\x87\xac\xca\xcb\x59\x00\xc7\x9e\x75\x8b\x59\xbe\x9a\x4f\xde\xb1\x45\x7e\x17\x58\xa7\x5d\x6f\x48\xe8\x96\xc2\xaa\x1e\x4b\x2e\x38\x91\xae\x03\x88\x02\xc6\xe3\x20\xb6\xb9\xcc\x27\x0c\xec\x23\xb4\x08\x67\xbb\x2c\xbd\xa9\x96\x08\x59\x7c\xb7\x48\x96\x14\x7c\x3d\xbc\x24\xb2\xf3\xb4\x50\xf6\xb8\xb2\xbb\xec\x23\x9b\xc8\x8e\x82\xc8\xd0\xac\x6b\x23\x2e\x4c\x0b\x88\xfd\x1d\x10\xa0\xf8\xe3\xf2\x41\x8e\xa9\x59\xa2\x38\xd6\x0d\x44\xe1\x94\x2d\x88\x17\x8c\x6b\x0b\xc5\x60\xbd\x5e\xe3\xa7\x35\x8d\x0f\xbc\x52\x24\x00\x28\x86\x69\x4e\x02\x34\xda\xee\xae\x86\xa2\xd5\x7b\xd6\x0a\xb3\x6c\xa9\x4f\x49\x71\x25\x17\xb5\x46\xdb\xa8\x0a\xea\xe9\x18\x8e\x5b\x74\x3a\x02\x36\x83\x4d\xb5\xd8\xd0\x82\xa1\x5c\xe4\xd2\x65\x3e\x68\x21\xd7\x32\x93\x47\x73\x84\x1e\x02\x19\xb1\xe6\x43\x1c\x1b\x8f\xd2\x98\xa4\x0a\x17\x17\x8c\x8b\x9f\xd8\x34\xe7\x65\xe6\xc6\x31\xf8\x92\x7d\x66\x4e\x9f\x69\xa9\xcf\x9c\x72\xbf\xcf\xd4\xe9\x33\xf7\xce\x6a\xe6\x75\x19\xe5\x44\xc4\x24\x07\xed\xb9\x77\xb2\xca\x23\x90\xdd\xb6\x98\xd7\x12\xef\x72\x38\x8e\x60\x5d\xe7\xb7\x6a\x33\xf2\x97\x5a\xd5\x54\x43\x5a\x08\xa7\xf6\x84\xcd\x99\x60\xce\x4a\xc2\x54\xc0\x1e\x1a\x65\xe3\xb5\x0b\x0f\x2d\x19\x09\x3a\xa6\xcd\x61\xc9\xa4\x96\xb1\x96\xe5\x95\xec\xde\x60\xf4\x80\x08\xf7\x2d\x1c\xfa\x8f\x4d\x89\x8e\xab\xbb\xb9\x65\x8d\xed\xdf\x9a\x78\x10\x89\x69\x33\xe8\x53\x95\x95\x12\x7a\x3a\xb7\xb0\xa9\x49\x04\xad\x3d\xcc\x22\xe7\x0f\x0f\xde\x79\xce\x20\xaf\x83\x4b\x4b\x83\x63\x9d\xfc\x31\x60\x7a\xfb\x89\xb8\x7a\x05\x1b\xa1\xf6\x19\xf1\x58\x93\x21\xeb\x62\xa8\xb0\xde\x88\xb6\xd5\xcf\x36\x91\xaf\x7f\xe1\xab\x8c\xd1\xfe\x88\xb6\xe1\x97\x7a\xf9\x32\xcf\x18\x3d\x18\xd1\xb6\xfc\xd1\x5e\x47\x1f\x1f\x1e\xa2\x8f\xf4\xcb\x1a\xbd\x9a\xaf\xeb\x21\xaa\xb1\x9c\x4a\x8d\x82\x2e\xf4\x08\x03\x6d\x1b\x00\x39\xb3\x05\x29\x81\xb6\x8c\x5b\xb8\x05\x08\xda\xa3\xa8\x60\xf9\x94\xeb\xb5\x6f\xf2\xd3\xb8\xcf\xc6\x61\x06\xf9\x23\x02\xe2\xe4\x24\xd6\xa2\x2e\x94\x71\xe9\x2f\x03\x5c\x3b\xb9\x08\x18\x09\xcd\x0d\x09\xb5\xf3\x51\xc1\xcc\x2d\x06\x2f\xca\xa5\x24\xec\x06\x2e\x92\x32\xc5\xe5\x97\x48\xa9\xff\x93\xc9\x5d\x92\x8d\xd9\x75\xfe\x17\xd6\x68\x06\x8b\x93\xd7\x58\xcb\xee\xab\x8c\x0a\xad\xbb\xca\x3a\x1d\xa0\x2a\x76\x29\x65\x27\xb1\x26\x35\x7a\x10\x38\xcd\x1c\x2f\x1b\xec\x3e\xd3\x4c\xaa\x05\xac\x53\x2a\xd6\x47\xb7\x1c\x62\xce\xdb\xdf\xf6\x5e\xd8\x38\x4c\xa6\x77\xb5\x8d\x16\x9f\xc5\xbe\x85\x70\xc2\x0d\x24\x51\xf9\x2c\xa7\x53\x65\x29\x05\xd0\x4e\x94\xa6\xa7\x06\xa4\xef\x00\xa9\x45\x59\x3c\x00\xe7\xbc\x28\x8d\xed\xb7\x37\x12\x45\x65\x78\x93\xc9\x17\x17\x80\xe7\xa2\x2c\x26\x7a\xcd\xf5\x64\x55\x33\x75\xd7\x86\x9d\x0e\xf7\xa6\x7b\x12\x71\xca\x63\xa4\x81\x6c\x70\x1e\x04\xab\x70\xb5\x83\xc4\x39\x03\x88\x89\x23\x40\x95\x04\x79\x04\xc2\x81\x64\x32\xe0\x7f\x53\x46\xbe\x5b\x6e\x0a\xdb\x0d\xb0\x17\xb2\x87\x9c\x72\x79\x01\xab\xfe\xe2\x56\xee\x0c\x98\xeb\x3b\x17\x3f\x9e\x46\x1c\x2e\x13\x75\xb7\x64\xf8\x5b\xb5\x82\xe3\xcc\x15\x69\x27\x4e\x61\x35\xc0\x8d\x59\xbb\x18\xbb\x9b\x3a\x4a\xcd\x54\x14\xd8\xb7\x06\x2e\x8e\x3e\xf3\xe7\x9a\x52\x51\xbe\xa7\xb2\xb8\xa5\xef\xae\x28\x85\x31\xa6\x38\xc6\x54\x8d\x31\x3b\xcd\xec\x18\x4d\x46\x43\x85\xf9\x6a\xee\x18\xb3\x78\xde\xd0\x10\xf3\x10\x44\x01\x7a\x62\x95\x96\x6a\x6e\x00\x77\x5a\xfe\x0e\x72\x0e\x05\xd7\x87\x42\x61\x10\x4d\xd7\xb7\x42\xa3\x63\xee\x89\x2d\x51\xd8\x51\x7c\x1a\x31\x7d\x41\x67\x31\x11\x5d\x75\x45\x47\x00\x8b\x38\x1e\x20\x81\x5d\x9d\x0e\x60\xff\xaa\x05\x1e\x6c\xd9\x89\x42\x5d\xfe\xb5\x5b\x52\xb2\x5e\x97\xcd\x18\x94\x31\xc7\xf6\x46\x0c\x24\x68\x02\x61\x5f\xde\x2d\xdc\xa7\x79\xfe\x69\x7f\xce\xee\x58\xd5\xf8\x41\xc7\x3d\x2d\x99\x40\x70\x88\xe7\xfa\xc6\x3f\xe8\xd5\x38\xa9\x4b\xc3\x65\x7b\x5f\x5d\xed\xcd\x42\x44\x09\xe8\xd1\x55\x93\x4d\xf1\x57\x31\xf0\x3d\x49\xaa\x6a\xa3\xe3\xa0\xda\xe8\xd8\x55\x1b\x1d\x8f\x06\x5f\xd6\xa4\x90\x63\x62\x40\xe9\xeb\x70\xfa\x64\x45\xdd\xa0\x08\xda\x65\x80\xcc\xe9\x65\xb4\x22\xa9\x52\xbf\x91\x31\x9d\x77\x17\x49\x96\xdc\x32\x4e\xa6\x74\x0e\xc1\x9d\x20\x1e\xdc\xee\x4f\xd1\xab\x68\x0c\x61\x99\x9d\xc0\x71\xd1\x34\x8e\xc9\x38\x0e\xe4\xf2\x48\xb2\x2c\x17\x3b\x2a\x24\xc0\x8e\x09\x4f\x55\xec\x7c\x4a\xc5\x6c\x07\x03\x65\xed\x28\x07\xe0\x62\x27\x29\x76\x92\x1d\x9e\xe7\xc2\x96\xec\xb6\xe3\x56\x4e\xa1\x43\x8c\xa7\x3b\x25\x2b\x1d\x59\x1b\x7d\x40\x3f\xb2\xfb\x22\x4a\x62\xdf\xd1\xc5\x90\x8c\x43\x46\x92\x21\x1b\x8d\xd6\x31\x99\xd0\x61\x7b\x91\xa4\x99\xdc\x4d\xf3\x42\xee\x10\x08\xbd\xd2\x1e\x91\x25\x9d\x55\xaa\x23\xb5\x60\x23\xd7\x41\x2c\xbb\x75\xdc\xf2\x83\xcd\xeb\x7b\x77\x41\x7b\x27\x8b\x67\x87\xff\xa9\xa3\x10\x9f\x2c\xf6\xf6\x62\xb8\xa4\x4c\xa6\x53\xd0\x6c\xe2\x6e\xa8\x7e\x21\xb3\x60\xf2\x33\x3d\x8c\xfe\xa8\xe5\xd5\x01\x0d\x73\x01\xf1\x86\x54\x66\xdd\x08\x3f\x93\x25\x99\x90\x1e\xc4\x93\xf5\x2a\xa8\xb2\xa5\x97\x79\xe9\x79\x1e\x13\xdc\xa7\x05\xec\xd3\x82\x89\x97\x18\x7a\xee\x05\xa6\x45\xf3\xf0\xf1\xdf\xc1\x90\x40\x21\x86\xfa\x82\xb2\xdc\xaf\xb2\xdc\x2d\x13\x18\x77\xea\xd7\xa4\x6c\xdb\xab\xbd\xdc\x27\x7e\xa4\x63\x88\x97\x91\x17\x10\x04\x20\x99\x77\x13\x11\xf5\xbc\x23\x75\x27\x22\x0e\x61\x28\xc1\x04\xa9\x94\xc1\xcc\x89\x1f\x70\x43\x98\xca\x35\x11\xb8\x4f\xbe\xd5\x32\x50\xd2\xff\x35\x66\x32\x7f\x9b\xa5\x82\x15\xcb\x64\x1c\x64\x63\x72\xd6\x15\xac\x10\xc0\xbb\xb0\x6e\x96\xf3\x05\x08\xca\x4c\x90\xb1\xcf\x4c\x8e\x16\x62\x00\xe8\xe8\x15\x41\x25\xd8\x7b\x26\xf7\x0c\x66\x56\x52\x61\xa7\xcd\x18\x38\x53\x86\x7a\x69\x9e\x35\xb6\xf1\x41\xd4\xb7\x91\x16\xc6\xa3\x45\xd6\x7b\x95\x72\x25\x2c\xa1\xb7\x42\x0e\x50\xa3\x80\xfb\x57\xf3\xe4\xb6\x78\xc5\xf3\x05\x7d\x45\x20\x9a\x93\xc1\x0e\xf7\xf4\x77\xc2\xba\x2f\x56\xbc\x00\xcb\x99\x17\x79\x36\xe6\x4c\xb0\x9f\xf2\x55\x36\x29\x28\xeb\x5e\x9d\xbf\xbb\x38\x7b\x7d\xf1\x8f\xb3\xeb\x8b\xb7\x97\x1f\x5e\x5d\xbc\xbb\xba\xfe\x70\xf9\xf6\xe5\xf9\x87\xab\xeb\x77\x17\x97\x3f\x83\x01\x0e\x1a\x1c\xea\x59\xb0\xee\x25\xfb\x84\xa1\x06\xed\xbb\x97\x6f\xdf\x5c\x73\xa6\x9c\xf3\xf8\x0a\xa6\x49\x59\xf7\xe2\xe5\xdb\x37\x2f\x66\x49\x76\xcb\xa0\xb3\x5f\x7f\xfe\x70\x79\xf6\xe6\xfc\xea\x97\xb3\x17\xe7\xaa\x8e\xfd\xd8\xb0\x77\x58\xf7\xcd\xc5\xe5\xc5\x9b\xb3\xd7\x1f\x5e\x9c\xfd\x72\xf6\xd3\xc5\xeb\x8b\xeb\x8b\xf3\x2b\xd9\xc0\xf9\xab\xb3\xf7\xaf\xaf\x2b\xaf\x95\xf6\xfa\x3c\xbb\x4b\x79\x9e\x2d\xd4\xcd\xeb\x3f\xa9\xb8\x6b\xcc\x44\x6e\xfa\x19\xea\xd9\xc8\x81\xe9\xcd\x4a\xc8\xef\x57\xe9\x62\x39\x67\x81\x0f\x6a\xa5\xde\xb1\x62\x35\x17\xda\x9c\x2a\xcd\x6e\x7f\x7d\x43\x59\xf7\x75\xfe\xe9\xb5\xbc\xe0\xe0\xe1\x45\x9e\x4d\xf0\xf4\xb8\xf6\x57\x81\xb0\xaa\xac\xfb\xfe\xf2\xe5\xf9\xab\x8b\xcb\xf3\x97\x1f\xde\x9d\xbf\x3a\x7f\x77\x7e\x09\x60\xba\x7c\xff\xfa\xb5\xf3\xc2\x71\xda\x4f\x24\xe3\x1b\x35\x6a\x99\x98\xa4\xac\x12\xc1\xd0\x69\x04\x84\x63\xd3\x74\x3e\xbf\x5c\xcd\xe7\x45\x1c\x3d\x7d\x12\xa3\x4d\x64\x23\x7f\x96\x4c\xca\x41\xab\x15\xba\xa8\x9c\xdc\x83\xe0\xc9\x3d\x70\x4f\xee\xc1\x68\xd0\x2e\xee\x8b\x71\x32\x9f\xb7\x5b\x81\x31\x0e\xd9\x88\x7e\xc1\x02\xb6\xa4\xa4\xb4\x88\x2e\x08\x06\xcc\x42\x45\xe5\x0c\xc8\x71\x08\xb7\xae\xd6\x4b\xcc\x79\x42\xe0\x0e\xc5\x07\x5b\xfb\x6c\x2a\x2a\x21\x02\x49\x16\x7f\xc9\xba\xc5\x52\x12\x68\xb2\x12\xe4\x67\xc5\x9e\x2b\xfd\x38\x0a\x82\xd2\x34\xf8\xa8\x95\x75\x71\xf8\xa7\x99\xf9\x0a\xe0\x1b\xb8\xcf\x68\x26\xa5\xe5\x03\x31\xa9\xf5\x68\xfd\x5a\x3b\x0a\x90\x74\xa0\x01\xc5\x92\xb3\x3b\x6d\x3b\xb1\xd9\xb2\xd6\xd9\x53\x18\x3b\x47\x6b\x13\x7e\x5e\xa5\x13\x65\xde\x25\x6f\xc0\x5a\xdf\x43\xd7\x2c\xcb\x11\xbd\x6f\x6b\xdb\xdb\xa0\x47\x56\x4b\x48\x29\x65\xa7\xd3\x01\x12\xe1\xec\x74\x36\x50\x29\x66\x4e\x27\x83\xdd\x3e\xfc\x58\x0e\x74\xc8\x69\x4a\x75\x28\xea\x53\x79\x4f\x8c\x21\x3e\x1a\xd8\x57\xb3\x92\xae\xbe\x46\xde\x39\x05\x61\x75\x56\xd2\x43\x40\xa0\x9c\xea\x31\xae\xf8\xf5\x7d\xa7\x2d\x0c\x1c\x2c\xdb\xfc\x96\x4b\x58\x37\x29\x01\x8a\xb6\xb6\x6a\x55\x9e\xaa\x92\xcc\xd1\xef\xad\x24\xd2\xe2\x9d\x4e\x14\x2e\x48\x15\x60\xad\xee\x46\xdb\x23\xc5\xc6\xc2\xa2\x1c\xd7\xc8\xdb\x16\x00\xe0\x95\xa4\x7c\xff\x3d\xfb\x09\x1a\x9f\xe2\x28\x31\xff\x59\x2b\x8c\x70\x8d\xb5\x1b\x94\xd5\xf6\x70\x25\x24\xac\x3d\x26\x54\xa1\xdd\x5e\x4c\x96\xfa\x77\x3f\x26\x8b\xaf\x55\x90\x81\x0a\xe2\x1b\x2c\x36\xd1\xf7\x27\xff\x29\xcf\xe7\x2e\xf0\xad\x5a\x59\xe0\xd7\xa0\xb4\x9f\xb9\x1a\xb6\xea\x2d\xb5\xc9\xf8\x68\x2b\x1b\x92\x65\xc2\x05\x18\xda\xc0\x44\x21\x01\x8b\x67\x6d\x1e\x47\x22\xde\xc6\x0a\x67\x4b\x83\x1a\xe3\x71\x8e\x0e\x3f\x00\x14\x18\x43\xc0\xf3\xc7\x7e\x1c\x0a\x6b\x5d\xa3\x04\x57\x72\xaf\xb3\xa1\x18\xd1\xfb\x88\xc7\x8e\xfb\x85\xb6\x1d\x3c\x65\xdd\xdf\xf2\x34\x8b\xda\x6d\x1d\x6c\x51\xa1\x08\xdf\x6e\xc1\x31\xd7\xbb\xb7\x90\x6f\xeb\x97\xed\x5d\x83\x9a\xba\x22\x57\xde\xee\xa7\xed\xf6\xe0\xca\xa4\x08\x48\x20\xdf\x5e\xbf\x26\x47\x64\xbe\xec\x83\xa8\x4e\x71\x1e\x39\x84\xfd\x2a\xf1\x96\xca\xef\x3d\xe2\x71\xc4\x48\x06\x59\x96\x63\xb9\xe0\xf3\x3c\x99\x80\xbe\xd0\x8f\x4f\x4b\x72\x65\x65\x2b\x3b\x7d\xb4\xa1\x53\xee\x28\x3b\x55\xfc\xd1\x88\xcb\xa6\x5d\xce\xca\xb6\x76\xb4\xcd\x14\xd4\xf8\x64\x1b\x8a\xfd\x80\x50\xb9\xba\x6d\xe2\xb4\x76\xbc\x7d\x6b\x20\x4f\x73\x9f\xf3\xd2\x73\x42\xf3\xd3\x21\x08\x0b\x90\xa7\xf0\xbb\xc7\x38\xa1\x24\xb1\xbd\x3f\xdd\x04\x1a\xbb\x0a\x36\x88\x01\xc7\x91\x60\xd3\x36\xb2\xdb\x9b\x64\x19\xc5\xc3\x6c\xd4\x32\x37\x5b\xda\xe9\x40\xac\x0a\x70\x69\x9f\x4f\x55\xe9\x28\x8b\x63\xe2\x41\x37\xb5\x23\x3a\xe8\x35\x8e\x48\xfe\x7f\xd0\x62\xa5\x9c\x3e\x9c\xec\xee\x3a\x30\x7d\xfc\x1d\x93\xf2\x17\xcf\x19\xa2\x1e\xb9\xe9\xe5\xc9\x56\x5b\xb9\x04\x29\x5c\x83\xb8\x95\x9e\x46\x98\x25\x3d\x1d\x1e\x8c\x62\x62\x1e\xfa\xee\x43\x6f\x14\xc7\x03\x5d\x50\x71\xf7\xb5\x0f\xce\xaa\x36\x8e\x6c\x77\x37\x3c\x22\x7f\xbf\x9f\x4e\x06\x4b\xdb\x62\xbf\xe7\xab\x75\xbc\x6d\xe7\x43\x4d\xe3\x7e\xb7\x04\x57\xc2\x73\x9b\x53\x45\xdb\xca\x7b\x7d\xf2\x52\x9f\x65\x5c\x61\x13\xd6\xea\xa9\xd8\xa8\x1c\xb0\x7c\xfc\x24\x7d\xde\x3b\x49\xf7\xf7\xe3\x2f\xd9\x30\xdd\xef\x8f\xfc\x61\xac\xfd\x19\x4a\x9e\x5f\x2d\x28\x5a\x18\xb6\x5f\xbc\x7f\xf7\xee\xe2\xfc\xe5\xce\x8b\xb7\x6f\x7e\x79\x7b\x79\x7e\x79\xbd\x03\x97\x2a\x04\x0c\xdb\x19\xa6\x13\xfa\x68\xda\xeb\x4d\xd9\xcd\xd3\xfd\xa4\xc7\xa6\xfb\x47\xc7\x47\x8f\xf7\x9f\x3e\x65\xc9\x7e\x32\x3e\x3c\x78\x32\x7d\xd2\x4b\xc6\x2c\x19\xb5\x2d\xa6\xbc\x71\xee\xa8\x68\x97\x3d\x3c\xec\xb2\xe1\xed\x48\x31\x28\x1f\x36\xfa\x42\x78\x97\x6b\xc2\xc1\xca\x53\xfe\x1e\xde\x8e\xa8\x49\x54\xe0\x11\x23\xab\xec\x13\xf7\xfc\x6f\xe4\x52\x71\x06\x4e\xc7\x5e\xd4\x81\x96\xaf\xe5\x39\x39\x31\x9b\x04\x94\x36\x10\x7c\x3a\xa5\x5c\x0d\x01\x64\xc4\xf2\x12\x71\xe5\x27\x4b\xce\x40\x43\x95\x39\x2f\xe5\x56\xc8\x92\x05\x9b\x74\x17\x8c\xdf\xb2\x28\x53\x4f\x71\x4c\x76\x6f\xa2\xd4\x18\x2a\xa5\x2d\x41\xd3\xf5\x9a\x34\x84\x7d\x50\xc3\xac\xc4\x20\x70\x15\x40\x8a\xd5\xa0\x06\x38\x72\x93\x9d\x7a\x22\x1e\x9d\x6d\x5a\x13\x1f\x72\x35\x4e\xf9\x9e\x76\x01\x1c\xf0\x40\xa4\x82\x4f\x0e\xb1\x7c\x2e\xcb\x7b\x77\x98\x29\x76\xee\x9a\x83\x02\x49\xc9\x1e\x1e\x1a\x2f\x43\x5b\xf7\xb3\x73\x7d\x62\x7e\x16\x4b\xd7\x9b\xfc\x18\xac\xd3\xb1\xed\x51\xb7\xbd\x3f\x5d\xbf\x79\x6d\x5b\xbb\xda\xba\xb5\x0a\x0f\xd1\xcd\xf2\x09\xbb\xbe\x5f\x32\xdb\xda\x5b\xa7\x35\xcc\x40\x63\xcb\xaf\x1b\x65\x1b\x1f\x94\xd6\xbb\xc1\x96\xa9\x39\x61\xb8\xe5\xf5\x24\x7b\x2f\x20\xde\x8d\xa6\xdf\x38\x49\x5d\x63\x41\x92\x2a\x3f\xa1\x36\x8a\xf8\xf6\x05\xfb\x2c\xda\xf2\x6d\x72\xab\xdc\xe7\xb0\xbc\x31\x2b\x4b\x3d\xb3\xb2\x0d\xa1\x89\x6a\x8c\x99\xaa\x9c\x73\xb3\xdd\x9b\x48\x6e\x5b\xc2\x31\xd4\x2b\xdb\xba\xc5\x0f\x0f\xd5\x97\xb4\x64\x3b\xae\x35\x65\x86\x10\x06\x83\xa6\x80\x5d\x95\xf6\x58\xf1\x4d\xee\x5a\x6c\x57\x31\x3b\x91\xa0\x7a\x3b\xcb\x35\x3e\x65\x76\x57\xc7\x58\x44\x69\x29\xf3\x89\xda\x17\x8e\x89\xac\x63\x31\x1b\xeb\x20\x30\xae\x71\xc3\xbf\xc5\x27\x76\x83\xfd\x35\xaf\x70\xbc\xb5\xdc\x01\x9c\x7b\x34\x72\x26\x0d\x16\x04\x4d\x0c\xcd\x36\x56\x7f\xb0\x17\xf4\xe2\x7b\xdc\x8b\xde\x43\x81\xb1\xc9\xc5\x78\x78\x38\x87\xbf\x26\x97\x93\x3d\x72\x0f\x0f\xd5\x63\xbb\x8e\x44\x7c\xda\x1f\x44\x72\x39\x3a\x1d\x79\xa1\x9c\xf6\x06\x9f\xe5\xcb\xc3\x41\xa0\x07\x89\x20\x3a\x9d\x3e\x88\x12\xec\x89\x97\xc5\x8f\x06\x57\xf2\xbf\xe3\x41\x1f\xb9\x27\xa4\xc0\x9e\x90\x80\xde\xc0\xbd\x48\xcd\x16\xe5\xf4\x5c\xb6\x60\x71\xa4\x90\x64\x04\x53\x22\xd5\x22\x8a\xd1\x62\x04\xa5\x8e\x12\x71\x45\xdc\x21\xf5\x9e\x6e\xdb\x11\x62\x3d\xaf\x47\xf1\x15\x3d\x1d\x1e\x6c\xea\x49\x9e\x1c\x8b\x1f\xe8\x79\xc4\xdd\x69\x71\x45\x6b\xd7\x75\x77\xcd\x3e\x8b\x28\x8d\x4f\x80\x27\x44\xff\xe5\x18\x8c\xce\xb5\x7d\xe2\xdf\x52\xa1\x28\x8e\x8f\x51\x4e\x04\x49\x1d\x62\xed\xb0\xb7\x2d\x14\x1a\x26\xfc\x8a\x27\xb7\xf2\x83\xd2\xe6\x60\xc3\xfd\x1f\xd0\x30\xa8\x78\x9d\x46\x0f\x7c\x48\xda\x73\x51\x4a\x76\x67\x2b\x1c\xd6\x54\x30\x29\xe8\x2c\x63\x75\x54\xdf\xb6\x9f\xb6\xd2\x56\x39\xae\x6d\xbd\xa6\x46\xff\xa0\x9e\x38\xf6\xc9\xd1\x12\x9f\xa0\x42\xd0\x73\x67\xe5\xfa\x87\x5b\x72\x00\xfc\xf9\xf3\x43\x9d\x4b\xee\x71\x87\x1b\xd7\x36\x4d\xe6\x7b\xf6\x3b\x7d\xfd\xba\xd4\xbf\x0a\x8b\x27\xc9\x28\xb7\xf4\x41\x4d\x69\x13\x6f\xce\x2b\x7d\x88\xa5\xcf\xb3\x71\x3e\x61\x13\x9b\x95\x8d\x7b\xc5\x8e\x06\xf0\xdf\xf1\xc6\x91\xac\x2d\x2c\x8e\xea\x37\x5b\x0b\x9d\xc5\x57\xda\xf9\x4e\x20\xf7\xee\x80\xf2\x78\x73\x75\x65\xba\x6f\x77\xad\x53\xbb\x99\x8b\x05\x9e\x11\x18\x31\xc8\x63\xa3\x84\x05\x3c\xde\xcf\xcc\x7a\x43\x02\x46\xa7\xbd\x06\x06\xb2\xe5\x9e\x20\x07\xc5\xf4\x1b\xd8\x41\x94\x52\x78\xc5\x1b\x78\xb4\x16\x0e\xd4\x2d\x7f\xb4\x69\xaf\x79\x2b\xa4\x79\xa2\x16\xab\xa4\xe8\x71\x25\x19\x8f\x1a\xa4\x31\x12\x27\x40\x96\x1c\x67\x10\x8f\x0e\x4a\x5c\xa0\xca\x8f\x63\x07\xd9\x0c\x83\xfa\xb3\xe5\x86\xbb\xf3\x8e\xd8\xd1\xe3\x30\xdf\xa9\xda\x40\x2e\xd6\x29\xfe\xa8\x7e\x1b\x01\x86\x57\x2c\x2a\x3f\xc5\x2d\xc5\xbd\x24\x05\xf0\xee\x72\x35\x9f\x3b\x53\x3a\x6e\x40\xa2\xb6\x45\x54\x2e\x2b\x19\x8d\x30\xd2\x19\xdd\x9f\xb5\xb1\x49\x63\x0f\xab\xe9\x4c\x41\x20\x2f\x51\xaf\xf4\x22\x69\xb5\x18\x29\x68\xea\x26\x23\x5d\x51\xc3\x3c\xa7\xd3\x68\xf5\xbc\x17\x7f\x49\x68\xd2\x1d\x4b\xdc\xeb\x58\x11\xcc\x69\xef\x64\xfe\x6c\x75\x32\xdf\xdb\x8b\x13\x57\xf8\x54\x0c\xe7\x23\x92\x77\x13\x11\xcd\x63\xc9\x11\xbb\xc3\x70\x47\x90\x40\x62\x62\x49\x9c\x3b\x1b\xe0\xb8\x69\x17\x96\xc5\x27\xe9\x34\xf2\x2f\xc4\x34\x8e\x53\x7d\x78\x3b\x1d\xd6\xbd\xcd\x45\x0e\x9b\x74\x5e\x30\x65\xa4\x02\x0c\x7d\x56\x72\xec\x90\xf8\x31\xc7\xb3\xef\x54\x23\x95\xbb\xf5\x45\x94\xbb\x28\xe9\xb8\x49\x50\xf7\x55\x83\x95\xf7\xf8\x37\x0c\xd6\xa9\xb6\x79\xb0\xcd\x72\x40\x2d\xf6\xc2\x21\x43\xf3\x14\x2c\x29\x4d\x17\xb6\xa9\x86\x43\x80\x55\x37\x51\x2a\x2f\x5c\x17\xa5\xe0\x34\x85\x8b\xbd\x1f\x1d\x06\x7b\x64\xd9\x9d\x4a\xab\x0b\x58\x9c\x6b\x2c\x2e\xf2\x90\x8c\x3e\xe2\xf6\x52\x68\x4a\xb0\xb3\xb5\xc7\x27\x30\x88\x49\x51\x30\x2e\xda\x28\xb3\x57\xfe\x72\xbc\x3b\x06\x7f\xa1\xad\x5c\x66\x43\xee\x4e\x66\x8a\x9a\x11\xb1\xb9\x3b\x14\x78\x89\xf0\x59\x93\x80\xce\xd5\x37\xa7\x94\xe3\xd1\x6b\xa2\xe3\xa2\xc4\x91\xeb\x5f\x16\xc5\xb0\xf7\x55\xee\x77\xc3\x84\xd5\x24\x98\xf9\x1a\x2f\x42\xb0\x89\xe6\x24\x43\x80\xfd\xb6\x5a\x2c\xf7\xd3\xe9\x7e\x96\x8b\x7d\xcc\xa3\x38\x69\xcb\xaf\xe0\x40\x9b\xd5\xf1\xaa\xdf\xe6\x1e\xb4\x09\x2e\xb0\x5a\x21\x9b\x4c\x77\x14\xad\x5d\xd6\x4d\xe6\x9f\x92\xfb\xe2\x9d\x81\x56\xa7\xe3\x30\xde\x99\x8b\x35\x54\x84\x82\x09\x00\xb9\x1a\xa5\xc0\x9f\xdd\xcc\x77\xbf\xd5\x40\xaf\x49\xfc\xb2\xbd\x2b\x32\x9a\xa1\x73\x2d\xc4\x48\x27\x0a\xd4\xf7\x7a\x9f\x66\x5e\x10\x8e\xaf\xd3\x29\x85\xa4\x14\x9e\x1d\xa5\x9e\xbc\x9d\x50\x6d\x9a\x17\x53\xb3\x32\x24\xf5\x1e\x86\x3f\x57\x96\x94\x08\xbf\x1b\xe6\x26\x3d\x71\x54\xf5\xda\x04\x5a\x3d\xd6\xab\xe2\xdd\x86\x1a\x7d\x97\x42\x13\x45\xa7\x98\x25\x1b\x37\x24\x32\xb9\x61\xf3\xbd\xf6\xce\xb0\xbd\x07\xcf\x1f\x6e\x57\xe9\x64\xaf\x3d\x6a\xfb\x3c\x70\x03\x45\x19\xe2\x96\x80\x03\xac\x53\x2c\x38\xcc\x50\x33\x61\x59\x69\xf6\x85\xca\x23\xba\x45\xcb\x87\x0d\x37\xb3\xdf\x72\xbe\x64\x19\x1a\x3d\x6d\xd3\x6e\x03\x5d\xdf\xc4\x44\xba\xbd\x38\xec\xe3\x51\x80\x9c\x22\x7c\x0b\xc5\x56\xb8\xcb\xd0\xad\x2d\x68\x6a\x87\xa4\x2f\xeb\xa2\xf6\xb2\x16\xb4\xd0\x58\x3b\x70\x47\x17\x71\xbc\xae\x74\x92\xc7\x31\xa7\x79\xb5\x93\x55\xb8\x93\x3c\x6e\x71\xba\x6a\xe8\x64\x05\x84\x98\x03\x3c\x50\x6e\xb1\x45\x2e\x98\x01\x21\x49\x88\xcb\x0d\x54\x08\x71\xa7\x72\xbe\xf4\xeb\x3a\x8b\x19\x96\xec\x38\x5c\x91\xa3\x42\x15\x3d\x88\x7b\x0e\x49\xc2\x94\xb5\x44\x77\x3a\x57\x81\xa0\x49\x8d\xd6\x55\x60\x14\x21\x59\xc0\x19\x11\x54\xd3\xa3\x71\xa5\x32\x61\xf9\x8f\x53\x73\x3c\xcf\x0b\x3b\x8f\x16\x28\x91\x2a\xb6\xad\x76\xb3\x0f\x7b\x23\x79\x43\x0c\xfb\x23\xe0\x5e\xee\xba\xc5\x78\xc6\x26\xab\x39\xbb\x90\x9b\x7c\x3e\xc7\xab\x95\x43\xfc\x40\x13\xad\xe1\x96\x89\x97\x4c\xd9\xfa\xe5\x5c\x52\xde\xa9\xbc\x2f\x32\xf6\x09\xde\xe6\x2a\xc5\xa6\xe4\x0e\x2d\xf8\x9b\x74\x94\xcd\xba\x6b\x92\xd0\xdc\x58\x44\x17\x54\xa5\xbb\x65\x64\x55\xda\xf0\x73\x0f\x0e\x60\x46\x3d\x36\x06\x89\xd9\x2d\xd8\x52\xab\x7d\xf4\x76\x89\xfe\x67\x05\x99\x55\x8d\x5e\x27\x92\x35\x50\x4c\xf7\x98\x14\x64\x45\x66\x64\x1a\xb7\x1a\x96\x5c\xce\xcf\x80\x29\x21\x18\x0f\x67\x49\x13\x09\xa6\xeb\xe4\x36\x9a\xf8\xc4\xe3\x75\x72\x1b\x47\xcb\x90\xa4\xeb\xb7\x68\x49\x64\x03\x9a\x9e\xfb\xed\xfb\x35\x03\x8a\x08\x49\x35\xfc\x40\x2d\x60\x92\x3d\x5b\xad\x80\x1a\x88\x26\x5f\x78\x1b\x95\x01\x3a\x06\x86\x23\xe7\xfb\xbe\x8b\xb5\xec\xda\xa9\x16\x55\x7b\x5d\x62\xef\xd6\x25\xe6\x56\x7b\x5e\x3a\x83\x69\x65\x96\x4e\x49\xe3\x87\x87\xc8\xdf\xb7\xaa\x94\x59\x0f\x4e\x44\x5c\x8d\xe9\x91\xf9\xb1\x17\x0a\x7d\x87\x1d\x6e\xc1\x52\x00\xbb\x9a\x2f\x0f\x4b\xbb\xd6\x53\x8b\x27\x35\x9f\xb2\x58\xf2\xa6\xa7\x75\x82\x27\x6d\x81\xe0\x1c\xe7\x42\x7e\xd6\xd9\x9d\xc1\xfe\x14\x32\xb1\x17\x0e\x4a\x68\x92\xe4\xa4\x38\xe6\x1c\xc7\x5c\x37\x30\x2e\x07\xe6\x9f\x27\xc9\x35\xeb\x55\x9f\xd3\xbc\x66\xd0\xb9\x1a\x34\x19\xd3\xf2\xb0\xcb\x76\xb3\x51\x42\x56\x64\x77\x37\x25\xf3\x32\x2f\x55\x84\xce\xc2\xcb\xa8\x20\x63\x73\x12\x5e\x7e\x2f\xd5\xee\xc7\xfb\x48\x8c\x31\xaf\x25\xe3\x21\xf6\xee\x3e\xce\xc1\xd0\xef\x18\x2e\xc4\x0f\xb1\xe1\x69\xc6\xbe\x2a\x64\xc8\xa6\x13\x61\x06\xa6\xcf\x84\x55\x91\xd9\x43\xe1\x9e\x80\x2d\x55\x64\x99\x55\x91\x69\xfd\x98\x51\xb5\x10\x38\x40\xf6\x28\x18\xe8\x5e\xfa\xf6\xb4\x3b\xf2\x0a\xcb\x3f\xae\x96\x01\x55\x26\xac\x03\x90\x9e\x17\xf5\x3a\x7a\x85\xb4\xaa\x3a\x23\x27\x07\x8b\xc2\x03\x4c\x24\xda\xc5\x14\x74\xf8\x59\xd0\x5f\xbf\x2e\x14\x8a\xa3\x60\xfd\x9e\x28\x3a\x9e\xb6\xdc\xc6\xff\xe0\x4e\x48\x8e\x74\x1a\x71\xb0\xa2\x2c\xc7\xe6\xb0\x43\x40\x5e\x0e\x0e\x76\x3a\x8d\x6e\x24\xa5\x98\x51\x0e\x14\xd0\x4e\x3a\x8d\x2a\x2a\x63\xde\xe9\xf0\xf8\x4b\x46\x2f\xbd\xfc\x59\x9c\x70\x0b\x1b\x63\x90\xe6\xb8\xdb\xdd\x9b\xdc\x5a\x16\x2c\x3c\x0c\x13\x92\x55\xbc\xfb\x5d\x63\x57\x51\xeb\xaa\x61\x16\xa4\xa5\xa3\x40\x74\x3a\x37\x4a\x33\xaa\x8c\x6b\x3f\xa0\x7d\xb3\x89\xe5\x43\x5e\x6f\x0a\x67\x93\x16\xc2\x55\x1d\x86\x4c\x04\x99\x1b\xc9\x81\x6d\xa5\x57\xb4\x26\x81\xc3\x91\x59\xc2\xb4\x10\x18\x63\x4b\x04\x62\x6c\x7d\x8a\x84\x13\x65\x2b\x6e\x81\x9c\x48\xdb\xb1\x61\x9f\x6e\xae\x35\xed\xe0\xad\xec\x00\x77\xda\x95\x38\x97\xaf\x1c\xed\x4a\x4f\xde\x52\x48\x67\x60\xce\xc3\xfe\xa0\x17\x3b\x6f\xaf\x93\xdb\xd3\x03\x7c\xb5\xe4\x6c\x99\x70\x48\x88\x7d\x7a\x84\xef\x14\x45\x02\xaf\x9e\xe0\x2b\x83\x2b\xfe\x94\xe7\x1f\x4f\xfb\x8f\xf0\x35\x62\x30\x78\x79\x78\xe0\xf7\x02\x34\xce\xe9\x23\xbf\xd1\x17\xc9\x7c\xce\xf8\x69\xff\x40\x37\xac\x10\x04\x34\x70\x70\xfc\xc8\x2b\x0b\x54\x61\x36\x66\xa7\xc7\x7d\xd9\xb4\xb5\x82\xf8\xdd\xf5\x6b\xd9\xdd\x8d\x58\x47\x68\xfb\xc5\x47\x0d\x3a\x4b\x47\xc2\x8c\xf2\xe5\x33\x4d\x7c\xb9\x2c\xd5\xe3\x06\x85\x9f\x6a\x02\x38\x05\xdd\x86\xdc\x8b\xd7\x7e\x03\xdb\x1a\x51\x66\x86\x7d\xd2\xbf\x8a\xca\x95\xe9\x4b\xde\x81\x10\xad\x7a\xf5\x35\x98\x59\xca\xe1\x5d\x44\x39\x59\x91\x82\x24\xee\x20\x1b\xf4\x6c\x25\x85\x45\x85\x46\x4e\x69\x66\xc8\xa9\x9c\xbe\x52\xb6\x77\x9e\x9f\x20\x3a\x34\xc4\x72\x6e\x5f\x26\x06\x1f\x0c\x32\x82\xf5\x06\x29\x19\x3b\x15\x06\x39\xba\x4d\x00\x76\xc5\x00\xf3\x0a\xd3\x42\x64\x79\xf8\xa9\x2e\x04\x75\xe2\x7d\x75\x85\x63\x31\xf9\x38\x44\x55\x65\x48\x93\xf4\x2d\xa7\x4a\x0a\x9a\x94\xb4\xe5\xab\x46\xe0\xe7\x80\x82\xeb\x38\x2b\x8c\x9a\x4a\x2a\x28\xb6\x50\xf8\x35\xb4\x6a\x92\xe0\x8f\x21\xc5\x08\x84\xa4\xba\x91\xdc\xac\x12\x20\xf6\x08\xef\xae\x32\xce\x92\xf1\x4c\xf6\x1d\x47\x71\x2b\xa3\xc5\x3a\xa9\xd8\xba\x3e\x0e\x48\x76\xe5\xcd\xe7\x28\x37\x71\x6b\xb5\x6e\xa2\x34\x3e\xe5\x54\x09\x78\x06\x82\xbe\x8a\x22\x4e\x0d\xad\x1e\x57\x96\x30\x35\x4b\x88\x5a\x46\x77\x1d\x4b\xab\x27\xcc\xb2\xf2\xcd\xeb\xe8\x30\x6a\x8f\x3d\x15\x40\x06\x2e\x20\xa2\xab\xcc\xa4\x34\xcf\xb7\x92\xf0\x84\x28\x36\xb1\x56\xbb\xa4\x56\x00\x01\xfc\x5a\x45\xe8\xb0\x7b\x13\x25\x0d\xb0\x4c\x69\xa2\xa3\xd9\x3a\x5a\xc5\xc7\xdb\x6a\x29\x43\x36\xd0\x7e\xde\x32\x45\x96\x67\xcf\x9f\x1f\x91\x82\x3e\xe9\x64\x64\x45\x87\xa3\xd6\x51\x27\xeb\x74\x56\xaa\x5f\xe5\x9f\x1a\x93\x03\xf7\x1d\x38\xab\xc6\xa4\xef\xbe\x53\x9e\xab\x92\x6e\x72\x3c\x40\x53\x22\x0f\x74\x42\x76\x77\x8b\x98\xa4\x5a\xdd\x06\x6e\x9f\x76\x3a\x8f\x37\xab\x6c\xb1\x51\xe5\x39\x2c\x5c\xdb\xd9\x8d\x38\x10\x40\x8e\x39\x2a\x2c\x32\x74\xa4\x07\x8f\x9b\xad\x5c\x5d\xfb\x5b\x4f\xed\xeb\xe1\xc5\xb4\x6b\x37\x5d\x4b\x2e\x6a\xa7\x13\x25\x35\xae\x51\xcc\x29\x4b\x05\xda\x5a\x56\xd1\x15\xa2\x26\xab\x13\xd0\xdc\x6a\xea\x7a\x3a\xa6\xac\x08\x22\xb6\x3c\x06\x61\x7a\x4a\x12\x92\x63\xd0\x93\x82\x26\xc0\xbf\xe8\x2e\xe6\xb4\x70\xfc\xa8\xe5\x35\xfe\x7b\x94\x7a\x2d\x93\xa3\x58\x0d\x7a\x4c\x73\x95\x5d\x1a\xb9\x9f\x82\x4c\xed\x9b\x2c\x59\xb0\x82\xcc\xe8\xca\xbd\xa3\xa3\x39\x51\x88\x68\x16\x7f\xc9\xbb\xe3\x39\x4b\xb8\xa3\x55\x9c\xd0\xde\xc9\xe4\xd9\x58\x53\x1c\x93\xbd\xbd\x18\x0f\xef\x78\x38\x19\xd9\x72\x4b\x3a\x73\x0c\x31\xc9\x82\xce\x94\x25\x28\xb9\xa3\x26\x31\xd2\x3d\xed\x9d\xdc\x3f\xbb\x3b\xb9\xb7\x8d\x2c\x87\xf7\x4e\x23\xb7\x9e\x5f\xf6\x22\x26\x1f\x68\xef\xe4\xc3\xb3\x5b\xdd\xfb\x07\x5b\x71\x31\xbc\x1d\x7e\x18\x8d\xe2\x56\x8e\x1b\x38\x23\xb7\x64\x4a\xee\xc8\x6e\x2f\x5e\x67\xda\x43\x59\x65\x5b\xb2\x8f\x66\x33\x36\xdd\xa7\x96\xe9\xf4\xa5\x26\x4a\x92\x63\x77\x04\x08\x73\xf4\x12\xad\x68\x5e\x5e\xea\xa2\xb2\xd4\x89\x41\x80\x4a\x64\xde\xfa\x3d\x5a\x91\x47\x47\x72\x0b\xce\x2b\x92\x1c\x1d\x43\xbb\xdf\xe1\x64\x6a\x8b\x3f\x91\xa5\xa7\x25\xed\x9e\x76\x6b\x37\xa5\xfa\x07\x50\x6e\xe6\x1a\xe2\xc7\xe8\xf7\x53\x98\x88\xc8\xa0\xaf\xc3\x41\x91\x29\x99\x93\x19\xd9\xdd\x1d\x03\x4c\xe5\x2b\x93\x15\xa4\xb0\xa2\x20\x68\xfd\xe0\xf8\x51\xdc\xe9\xec\x06\xa4\x42\x92\xea\x2c\x71\xc2\x7f\x8b\x96\x64\x42\x0a\xe2\x9a\xab\x3f\xd9\x44\x2a\xf8\xe7\x37\x78\xdc\xe0\x2c\xfb\x92\xbc\x3c\x6e\x25\x01\x49\x9e\xeb\xfd\xd0\x2f\x89\x51\x6f\xd8\x6d\x9a\x81\xd4\xf6\x67\x9e\xaf\x94\x6d\x7b\x49\x2e\xab\xfc\x68\x95\xd1\xbc\x33\x85\xc3\x52\x4b\xb5\xf2\x51\xf6\x69\xe7\x4f\x8e\xbc\xa3\xd9\x55\xe1\x3b\xe4\x1d\x1b\x64\x1c\x8d\x32\xc0\x82\x09\x57\xd2\x51\x90\xdd\xdd\x4c\x92\x12\x6a\xcf\xfc\xa9\x39\x1a\xac\xa1\xe4\x8b\x40\x00\xbb\xf1\x3c\x29\x0a\x27\x1b\xb6\x96\x92\x6d\x4c\x7f\xed\x8c\x28\xe0\xe4\xaa\x44\xb9\x5f\xee\x54\xa4\x4e\x02\x98\x6d\x99\x8c\xd9\x20\x23\x82\xaf\x0a\x91\x66\xb7\x03\xbe\x6e\xb5\xa1\xfb\x36\x05\x7b\x68\x77\x3c\x3a\x12\x02\x29\xcd\x60\xc8\x46\x34\x55\xd1\x92\x8c\x54\xb4\xe4\x3e\xec\x4f\x03\x93\x3c\x31\x22\x54\x92\x27\x10\x7d\x87\xc3\x2b\xed\xa4\x3a\xc7\xa7\xe9\xce\xf3\xe6\x72\x46\x21\x20\x9d\x93\x0e\x7f\x43\x79\xd7\x4c\x90\x24\x94\x77\xf5\x14\x25\xda\xb6\x53\x14\xe0\x7a\x23\xf7\xdb\xeb\xc8\x9d\x6b\x1c\x13\x95\xb4\x70\xd7\xb8\x4c\x16\x9b\xe5\x5d\x82\x18\xad\x0a\x5c\x4d\x27\x65\xbd\x4b\x50\xea\x95\x92\x22\x8e\xd7\x6b\x39\x2e\xe8\xb2\x6e\xca\xab\xf2\x94\x41\x8c\x45\xe6\x34\x4a\xe9\xca\xcc\x7b\xe5\xcd\x7b\x65\xe6\x4d\x36\x8e\x1e\xb3\x34\xfa\x53\xd8\x7a\x0e\x73\xeb\x35\xe7\xaf\x76\x99\x4b\xfe\xc9\xe3\x1b\xfb\x70\x33\x33\xd2\x77\x38\xcb\xf7\x95\xb8\x2c\x60\xaf\x7e\x33\x67\xdd\x02\xec\x73\xdc\xb4\xa1\xc0\xb7\xdd\x32\x11\x89\xf8\x64\xbf\xbf\x4b\x69\xde\xe9\xa4\x01\x8f\xae\x7c\xaf\x4f\x92\x98\x70\x94\x68\x75\x3a\x91\xfe\x29\xf7\x6f\xa2\x59\xd7\xa7\x9b\x4c\xc8\xaa\x64\x92\x73\xbd\x25\x06\xd3\xfa\x17\x5d\x03\x1e\x69\x15\xdd\x49\x3a\x79\x01\xd7\x8b\x56\xe2\x24\xfe\x62\xb1\xcf\x4b\x36\x16\x2f\x1c\xd5\x46\xd4\x7e\x59\xaa\xa3\xbc\xd0\xff\x7f\x5a\xda\xd8\x8e\x01\x15\x69\xc4\xbb\xc9\x1b\xaf\x7a\x77\x38\x93\xf2\xaf\x0f\x9c\x54\x89\xf5\x33\x57\x66\xee\x5e\x59\x9b\xdc\xf6\x7e\x48\xb7\xd7\xc9\xed\x65\xb2\x60\x7e\xcf\x21\x2e\x22\x43\x32\xa5\x5f\x43\xa6\xb8\x0a\x27\x67\x1c\x61\x66\x1f\x94\x4f\x8a\x78\x1e\x1b\x05\xd5\xb4\x44\xd1\x90\x99\x4b\x85\xfe\x14\x4d\x25\xf3\x9f\x29\x35\x11\x06\xd8\x99\x91\x15\x2a\x47\x25\x9d\xea\x0f\x1a\x8f\x48\xcf\x1e\x91\x68\xda\xc8\x9c\x26\x4e\xc8\x17\x6c\x7f\x2c\xf7\xc1\x1c\x59\x56\x3c\x3e\xd7\x50\x83\x98\xb7\x8a\x43\x74\x2c\x95\xb6\x72\xda\xab\x75\xb7\xb4\x84\x47\x42\x5f\x45\x79\x83\x58\xa2\xa8\x11\x4b\xe4\x3e\x63\x9b\x04\xd8\xd9\xd4\x4f\x7a\x97\xba\x53\x2b\xcb\x28\x2c\x99\xc1\x5d\x35\xca\x93\x6d\x79\xa3\xcc\x99\x9a\x55\xb5\x7b\x9b\xb7\x95\xe8\xf4\xa5\x29\x49\x30\x13\x69\x6e\x2d\x1a\x36\xc9\xa2\xbc\xb6\x7c\x54\x57\x71\xe3\xcc\x74\x72\xd0\x3e\x10\xee\x66\x36\x21\x22\x29\x73\x0c\xf9\x9c\x3e\x32\x60\x5e\x52\xec\x68\x96\x14\xe7\x77\xc9\x5c\xa3\xda\x14\xd1\xa2\x47\x98\x94\x9c\x64\x65\x79\x35\x9a\xdc\x31\xcf\x2b\x53\xa8\x55\x57\xc4\xea\x91\x37\xed\xba\xe6\x0c\xca\x08\x40\x9e\x49\xe5\x28\x97\x88\x4b\x60\xc3\x0a\x9a\xe0\xe4\xf7\xfb\x27\xc5\x73\xda\x3b\x29\xf6\xf7\xf5\xe5\x98\x0c\x8b\x91\x64\x12\x6a\x6e\x0a\xf9\x39\x86\xb3\xaa\xda\x94\x57\xc6\x8a\xec\xf6\xf1\xd6\x98\xcb\x5b\xc3\xb1\x00\x9d\xef\xf5\xc9\x38\x26\x99\xbd\x2e\xf4\xcf\xe1\x6a\x44\xc7\xce\xac\xbf\xee\xc2\x48\x4b\xb3\x44\x3e\xb3\xf5\x3e\x6a\x77\x94\x94\x41\xc7\xc9\x82\x80\x66\x2c\x26\xf2\x4b\x9a\xdd\x31\x0e\x31\xb4\x54\x28\x2d\xe7\x13\xe6\x6e\x69\x13\x0c\xb6\xa5\x3e\x59\xea\xbd\xd9\x53\xb8\xbc\x8d\x51\x91\x56\xc5\x09\x4f\xbf\xfe\x0a\x09\xb1\x1f\x65\x23\x0c\x64\x11\x5a\xa9\xbc\x04\x55\x90\x1d\x44\x5c\x39\x49\x50\x4f\x65\xef\xc7\x28\x27\x69\xc0\x38\xe4\x5f\x20\x8a\x71\xe5\xaa\x4f\xcb\xa6\x1f\xe3\x7c\xb1\x48\x85\xcb\xb4\x20\x9d\xfe\xb7\x46\x85\xbb\x21\x40\xb4\xaa\x31\x6f\x50\xb9\xe7\x5d\x13\x48\x8d\x72\x62\xee\x13\x9a\x91\xdc\xe3\x53\x69\x4a\x72\x5f\x09\x6f\xea\xb5\x49\xfe\x23\x75\x8b\xa6\x5d\xa3\x6f\xc7\x25\x41\x35\x92\x3b\xaa\x16\xd7\x6a\x42\x01\x01\xbe\x94\xd5\xdb\xbf\x9a\xc0\xb3\x1d\x70\x34\x18\xaa\x00\xba\x51\x61\xa9\x2c\x38\x26\xe9\x64\x1f\x41\xa2\xa2\xd4\xb5\xe5\xa7\xaa\x61\xdd\x0f\x05\x52\xc9\x24\xc1\xc2\x0c\x81\xa4\x46\xd9\x02\xa3\x40\x65\x4d\x80\x3b\x14\x02\xfc\x99\x1d\xfa\x1e\x75\xac\x3a\xba\x89\xab\x56\xfd\x55\x1d\x19\x49\x45\xe4\x73\xd6\x4d\xb3\x69\x1e\xb5\xdf\x17\x6c\xe7\x7f\xc6\x79\x26\xd8\x67\xf1\x3f\x64\x27\xc9\x26\x3b\xff\x23\x91\xd2\xb3\x65\x22\x66\xcf\xe3\xff\xd9\x11\xf9\x0e\x04\x2d\x02\x7a\x7a\x47\xb0\xc5\x72\x9e\x08\xd6\x6d\xc7\x44\x44\x6d\xf9\xae\xad\xf4\xaf\x7f\xa7\xbf\xc2\x56\xfe\xb9\x41\x0f\xab\xb5\xb0\x85\x0a\x84\x85\xea\xb5\x7c\x9c\xcc\x7d\x06\xd4\xc8\x95\x52\xda\x3b\x49\x9f\xe9\xbb\xe6\x24\xd5\x6a\xb3\x9c\x66\xc3\x74\x44\x12\x2a\x86\xf9\x7e\x7f\x04\x3c\xb5\xa4\xfd\x14\xd6\xcc\x31\x24\xb3\x6a\x79\x98\x8c\x68\xb1\xae\x89\x07\x53\xef\x97\x09\x63\x34\x46\xac\xd0\x92\x42\x9b\xcb\x79\x2a\xa2\xb6\x04\x40\xee\x3f\x26\x34\x1f\xf6\x46\xca\x52\x08\xa2\x5b\xf5\x25\x73\x0f\x46\x4b\xf6\xa6\xd2\x06\xc8\x0a\x74\x94\xd2\xe4\x54\xa8\x32\x4a\xd6\x33\xc8\x86\xc9\xe8\x54\x50\xf9\xdf\x40\xd2\x5c\x89\xb9\x3b\xda\xff\xd5\x8e\x3b\x9d\x95\xfa\x2e\xff\x1b\x44\xc2\x19\xab\x6d\x83\x14\x34\x8d\x89\xa4\x12\x27\xab\x31\xab\xcb\x5b\xa7\xb8\x95\xb5\x09\x01\x85\xa6\x28\x4f\xb7\x11\x73\xa4\x1b\x04\xde\x15\x81\xb8\xfa\x92\x01\x9f\xc4\x3e\xed\xfc\x6c\x3d\x42\x54\xbc\xcc\xbf\x47\x6e\xe0\x09\xcd\xfa\x05\xfc\xc5\x12\x15\x9d\x36\xb6\xe9\xf9\x2c\xba\xfd\x66\x23\x9a\x92\xb8\xc6\x2a\x65\x6a\x7c\x29\x57\x34\x0f\x29\xe4\xe6\xf8\xda\x81\x45\xa6\x2e\x7b\x03\x81\x34\x26\x53\x49\x3e\xc0\x1d\x8e\xa1\x38\xa2\x82\xac\x62\x32\xa3\x89\xee\x38\x9a\xba\x91\x3a\xc0\x34\x6c\xe6\x51\x96\x4b\x3a\xd3\x84\xe7\x82\x4e\x34\x91\x41\xee\x1c\x3a\xe6\x9e\x96\x29\xb6\x85\x96\xe6\xee\xf6\x63\x72\x4b\xef\xca\xfb\xf2\x1e\x08\x0f\xa5\x94\x55\xef\xee\x14\xd1\x6c\x5f\xc4\x31\xb9\x2f\x51\x5e\xb7\xfa\x15\x2c\xdd\x9d\x2b\xb4\xd4\x87\xf8\x46\x0b\x87\x51\x7a\x79\x57\x0e\x43\xa2\xc5\xc5\x63\x57\x5c\x0c\xab\xf7\x89\x8e\x87\x1f\x46\xe4\x9c\xce\x87\x9f\xe4\x39\xff\xac\x86\x8d\xe7\xfc\x53\xdc\xba\x19\x9e\x8f\xe8\xe7\x75\x3a\x8d\x6e\x63\xdd\xdf\x15\xed\x9d\x5c\x3d\xd3\xd3\x3d\xb9\xd2\x8d\xbd\xa5\x57\x7b\x7d\xf2\x91\xde\x0e\x17\xc3\xab\x91\x8e\x7c\xb2\x4b\xe9\xc7\x4e\x47\xcd\x21\x7a\x4b\x3e\xc6\x6b\xf5\xdb\x19\xe0\x8d\x76\xb7\xb1\xce\x37\x70\xc1\x2c\xf5\xf5\xfd\x97\x2d\xac\xb2\x1d\x03\x12\x1b\xcf\x7c\x3b\xab\x02\x37\xf7\x85\x0d\x33\xec\xe4\x73\x70\x8e\xef\xa3\xad\xdc\xaa\x3c\xd7\x27\x75\x79\xe8\x1c\x03\x90\x44\xc4\x8a\x5f\xf4\x89\xcd\xaa\xf1\xe3\x01\xcf\x6a\xa5\x2b\x71\x54\xe0\x7f\x89\x12\x3b\x4e\xd7\xf7\xa4\x81\x7a\xd3\x3e\x6c\xaf\xd3\xc2\x33\x3c\x7d\x74\x1c\xf0\x63\x83\x42\x4e\x99\x4d\x41\x64\x3c\x52\xd7\x89\x30\xae\xa5\x91\x36\xae\x7e\x86\xc1\xa0\xd5\xf4\x63\x3d\xaa\x0b\xc1\x16\x2a\x26\x32\x49\x51\x37\xe1\x38\xf3\xc0\x1e\xf8\x43\x48\xd8\x88\x64\xa6\xbe\xea\x64\xd7\x57\xe9\xcd\x3c\xcd\x6e\xa9\x90\x3c\x21\xc6\xc8\xfc\x03\xb4\xf0\xd7\x26\x0b\x26\x6c\x70\x99\x70\x96\xa9\x70\x9c\xd8\xa6\xce\xb2\x67\x4c\x6e\x28\x6f\x4c\xa9\x04\x0d\xa0\xb8\xa6\xce\xf0\xde\xf6\x02\x82\x51\x13\x01\xb4\xa6\x38\x14\x58\x63\xbe\xc4\xa6\x82\xf2\xbb\x1b\xfd\xcb\x0d\x0b\xfa\x57\x80\xc1\x7f\x6f\x8c\xb4\x52\x85\x80\x0a\x42\xf1\x7f\x7b\xd2\x19\x16\xdc\x34\xe7\xcc\xa6\x2c\x37\xf3\xf9\x47\x99\x33\x65\xfe\x10\xc1\x4b\x91\xd9\x31\xa0\x80\x43\x77\xa5\x84\x00\x3a\x10\x0c\x30\xa8\x76\x63\xa9\x9c\x53\x81\xdc\x1f\xae\x4b\x63\xd2\xca\x69\xb2\xb6\xb2\xce\x3f\xfb\xd9\x04\xaa\xc3\xe1\xa5\xe1\x64\xfe\x70\x52\xca\xf5\x70\x24\xeb\x5e\x1a\x8e\x4e\x01\x02\x4e\xe7\x90\x11\xc5\x8d\xeb\x9f\xb7\x52\x9a\x3b\x63\x61\x72\xb5\x41\x55\x90\x4e\xa3\x5d\x93\x46\x1d\x42\xdb\xec\x86\xce\xb9\xb6\x11\xc2\xd1\x5e\x5e\x45\x82\xb4\x8b\xbb\xdb\x76\xdc\x12\xfc\xfe\x8b\x06\xc6\xd9\xe4\xb7\x64\xcc\x32\x01\x01\x07\xda\x37\x00\x1a\xc8\x70\xd1\x7e\x36\x4e\xf9\x78\xce\x9e\x3f\xfb\x23\xfe\x68\xc7\xeb\x71\x22\xc6\x33\x89\x21\xd6\xd3\x34\x4b\xe6\xf3\x7b\xbd\xa8\x92\x4d\xe7\xca\x87\x53\x4e\x5e\x7b\x78\x3e\x3c\x70\x05\x20\x98\xa4\x95\x7e\xbf\x7f\x77\x21\x2b\xb0\xf5\x1a\xac\x1a\xec\x6c\x34\xe6\xf1\xc6\x1e\xb5\x27\xe9\x5d\x3b\x18\x84\xc2\xe1\x7a\x7e\x54\xd8\x0e\x7b\xe5\x28\x08\x49\xc8\x94\x23\x9b\x4a\x0e\x2b\x37\x71\x66\x24\xc1\x9a\x9f\xb2\x86\x9a\x6e\x9c\x44\xa8\x3a\x10\x65\x60\x64\x5f\xd9\x40\x8d\x0e\x09\x54\x28\xaf\xde\xbe\x3b\xbf\xf8\xf9\xf2\xed\x4f\x7f\x3e\x7f\x71\x0d\xda\x22\x79\xcd\x5e\x26\x0b\xd6\x15\xf9\xfb\xe5\x92\xf1\x17\x49\x21\xaf\x31\xdc\x9b\xed\x67\xc5\xdd\xed\xf3\x67\xb2\xa3\xf4\x36\x53\x74\xc9\xf3\xf6\x1e\xdf\x6b\x3f\xfb\xa3\xff\xf2\xd9\x1f\x65\xc9\x76\x4b\x28\x83\x4c\x39\x40\x9a\xc3\xbd\xe9\x2c\xb3\xfd\xb9\x36\xae\x25\x09\x76\x82\xad\x56\x5b\x49\x4a\xad\xac\x2b\xab\xed\x9b\x32\xd8\x92\x24\xa5\x20\x91\x56\xd9\xe8\xf3\x1a\x04\x20\xca\xa7\x1f\x24\x21\x39\x91\x47\xde\x09\xcb\xf2\x57\xc9\x62\xcb\xeb\x2c\x4a\x89\xdc\x9a\xeb\x48\x48\x5a\x9c\x70\xc5\x39\x72\x47\x15\x02\x01\x64\x1d\x7b\xdc\x4e\x27\x44\x63\x04\x77\x32\x1c\x7f\x3b\xf7\x36\x4c\xa6\x6d\x12\x22\xd5\x1f\x4a\x95\x89\xb5\x1d\x93\x03\x4a\xa9\xa8\x1e\xb8\x58\xab\x6e\xb4\x51\x68\x6f\x1d\xb1\xf8\xf4\x5b\xfc\xfd\x4c\x44\xcf\xb8\xbb\x2a\xd8\x9c\x15\x05\x3a\x73\x51\x13\xf3\x0a\x9d\xbb\xda\xed\xaf\x0c\x1b\xd9\x7c\xb0\x14\x8e\x83\x53\x95\xc5\x01\x4a\x70\xc3\xd9\xd0\x26\x50\x74\xb7\x4f\x72\xca\x4f\x39\x38\xf1\xa5\xf9\xaa\xc0\xad\x30\x10\x98\xef\x37\x9d\x4f\x5a\x79\xa7\x93\xef\xa4\x68\x47\x99\x4f\x77\xae\xd9\x67\xa5\x77\xdc\xed\x95\xf2\x53\x29\x1d\xa4\x0f\x0a\xc2\x63\xed\xe7\xfe\x75\x23\xd4\x81\xc4\x3a\x1d\xff\x1a\x08\xf4\x11\x93\x04\xb7\xde\x40\xd1\x30\x9c\xd1\xf6\x4c\x88\xe5\xe0\x8f\x7f\xfc\xf4\xe9\x53\xf7\xd3\x61\x37\xe7\xb7\x7f\x3c\xe8\xf5\x7a\xf2\x58\xb5\x5b\xe5\xe8\xde\x1c\x33\x61\x30\xfa\xc5\x3b\xcc\x83\x3e\x99\xb0\x62\x3c\xe8\x13\x91\x8a\x39\x1b\xf4\xd7\x24\x65\x25\xae\x04\x6c\xf6\x4e\x86\xed\x9b\x36\x69\xdf\xa4\xb7\xf2\xef\x3c\x1f\x7f\xfc\xd7\x2a\x17\x4c\x3e\xe4\x93\x7b\xf9\x1f\x6f\x93\xf6\x18\x68\x42\xf9\x23\x9f\xc8\x6f\x13\xb9\x5f\xe5\x76\x27\xed\xc9\x5c\xfe\x11\x90\xbb\x02\x13\x58\xc8\x8f\xb3\xbe\xfc\x73\x20\xff\x1c\xca\x3f\x47\xf2\xcf\xb1\xfc\xf3\x48\xfe\x61\x09\x14\x92\x4d\xa6\xf2\xdf\x42\x76\x3f\x4f\xe1\x0f\xa8\x4d\x8d\x5c\xb5\xbd\x60\x22\x69\x93\x76\x96\xc3\x48\x72\xd9\xdd\x52\xfe\xe3\x72\x20\x7c\x75\x23\x07\x59\xc8\x7f\x8b\x64\x2e\x3f\x16\xcb\x44\x56\x2b\x04\xcf\xa1\x99\x42\xf0\xf4\xa3\x2c\x5b\xac\x6e\xe0\xaf\xac\x0d\xb2\x6a\xf9\xbf\x1c\xf8\x4a\xfe\x93\x55\xef\x12\xde\x1e\x05\xf3\x13\xe8\x35\x85\xb0\xd9\x7d\x24\x80\x73\x46\xff\x38\xfc\xa7\xd8\xff\x27\xdf\xf9\xe7\xe7\xb3\xde\x3f\x57\xfd\x47\x4f\xe4\xdf\x27\xbd\xf3\x7f\xae\xe4\x9a\xed\xc3\x7f\x67\xf2\xef\xc1\x13\xf8\xfb\x14\xfe\xbe\x92\x7f\x8f\x5f\xfd\x73\x75\xd8\xeb\xf5\xfe\xb9\x7a\x75\xfe\xea\xd5\xe8\x8f\x24\x61\xb4\xbd\xca\x40\x31\xc3\x26\xd6\x86\x72\x92\x8f\xe1\x96\x53\x66\xd0\xfa\x49\x19\x5f\x31\x52\xb2\xc6\xae\x72\x62\xba\x82\xa6\x1d\xc1\x04\xe9\xbd\xda\x85\xd6\x09\xaf\xd9\xba\xa1\x5c\xa1\xe2\xbe\xbb\xf2\x3f\x7b\x1d\x07\xb1\xe4\x9a\x94\xde\x87\xe2\x9e\x93\x0c\x90\xe9\x29\xb8\xf7\xb9\x57\x2a\x95\xf4\xc5\xc3\x03\x90\x3c\xf2\x06\x84\x60\x8b\x43\xa1\x2f\xc2\x51\x3c\x88\x38\x75\xbf\xee\xf6\x63\xc2\x3b\x9d\x5d\x85\x7e\x60\x15\x6b\xd3\x78\xa8\x61\xed\x24\x3b\xed\x3d\xb6\xd7\x96\xf8\x23\x9d\xb0\x9d\x24\xdb\xb9\xfa\xf5\xe7\x1d\x94\x1b\xb6\xfd\x24\xa1\xe1\xa9\x5e\x5e\x45\x9c\x11\xe6\xab\xe7\x6b\xa0\xc2\xe2\xc6\x94\x79\xf2\x2a\x62\x25\x8c\x05\xd7\x96\x68\xc0\xb7\x58\x4f\xe3\x5b\x3f\x8a\x7a\x05\xcb\x5b\x93\x40\xaf\x9b\x0c\x32\x1d\xc1\xe5\xc9\x48\x26\x2f\x4d\x6d\x83\x0a\xf1\x0c\x4b\xd8\x97\x39\xd8\xd7\xc6\x15\x11\x31\xdb\x74\xf9\x71\x4b\xef\xab\xda\xda\x6b\x43\xb8\x08\x5c\x56\x43\x88\xc5\x4d\xf7\x29\x58\x4a\x61\xa3\x95\x41\xb6\x1c\xba\x25\xb0\x79\x5b\x25\x00\x24\x12\x00\xc9\x96\x9d\x25\xe5\xce\x08\xf3\xae\x80\x44\x81\xaf\xa0\xf9\xa9\x47\xc1\x0c\x5c\x9a\xa7\xe5\x91\x2c\x8c\x14\x98\xdc\x56\x2d\xd9\xf5\xa6\xbc\x81\xa5\x1d\x76\xed\x67\x10\xf4\xd6\x7d\xdb\x36\x8c\xa7\x37\x4a\x5e\x4e\x2a\xb9\x5b\xf8\x77\x06\xdc\xfb\x96\x00\x0d\xa5\xc3\x16\xce\xfb\xd1\x7c\x3e\x55\x06\x90\xac\xc9\x82\x4b\x9f\x9a\x4a\x0e\x86\xc3\x60\x0e\x86\x43\x37\x07\xc3\x21\x46\x3a\x96\xf4\xbf\xdb\xc5\xe5\x95\x3c\x57\x84\xc7\x03\xff\x3d\x1e\x6a\xbe\x8e\x94\x24\xa6\x92\xea\x83\x9b\xbc\x57\x19\x15\x2c\x4a\x24\x15\x2b\x39\x53\xf5\x93\x70\xf0\x7e\x0e\xe5\x08\xc9\xd6\x71\x54\xb0\x87\x87\xa8\x60\x36\x61\xe1\x9c\x7d\x53\xb0\x08\x87\x78\x34\x97\x8b\x20\x8e\xdd\x97\xf2\x12\xab\xcf\x5f\xdf\xb4\xa8\x8d\x2b\x11\x84\x56\x86\x27\x2c\x5c\x4d\xc5\x98\xf5\xbe\x47\x6a\xcd\xf1\x44\x07\x32\x53\x18\xcf\x39\x3f\xef\x27\xe1\xee\x91\x75\xd7\xc9\xcd\xbf\x32\x57\x14\xd9\x98\xc9\x5f\x63\x86\xcb\x34\xc6\x59\x4f\x19\x1d\x33\x5c\xaf\x31\x93\x0b\xd6\xf2\x12\xb4\x4c\x55\xed\x19\xa3\x45\x70\x21\x5b\xe1\xe5\x9d\xa9\x6a\x13\x46\x87\xed\xdf\x92\xbb\xa4\x18\xf3\x74\x29\x06\x92\xa4\xb9\xd1\xbf\x47\x64\x29\x3f\x9f\xb5\x49\xfb\xa7\xb7\x2f\xff\xde\x26\xed\xd7\x17\x97\x7f\x69\x93\xf6\xc5\x9b\x9f\xe5\xdf\x57\xef\xce\xde\x9c\xcb\x8f\x67\x57\xf2\xbf\x57\x6f\xdf\xbd\x69\x8f\xc8\x42\xd6\x39\x7f\xf3\xd3\xf9\xcb\xf6\x88\xdc\xc9\x87\x19\x67\x53\x49\x47\xf1\xb1\xa4\x0e\x93\xf1\xc7\x5b\x9e\xaf\x80\x81\x49\x60\x30\xed\x11\xb9\x97\xe5\x64\x81\x91\x95\x00\xdd\x32\xf7\x5c\x82\xee\x9f\x19\x45\x8f\x70\x58\xaf\x1b\xaf\xa0\xbe\x43\xd8\xc3\xc3\x2d\x8b\x96\xf2\x3e\x8d\x3b\x9d\x5b\x16\xdd\xc1\xd9\x35\xb5\x3e\x78\xb5\x76\x6c\x64\xd9\xe8\x96\x45\x0b\x59\x0d\x6a\xdd\xcb\x42\x4e\xb5\x4f\x7e\x35\xec\xfb\xe1\x01\x9b\x73\x62\xea\xb2\xb2\x41\xa7\x76\x34\x54\x03\x34\xdc\x0c\xd0\x2c\x9f\x23\x2b\xf8\xc8\x4c\x7c\xc8\x56\x0a\x97\x66\x90\x5d\x1f\x98\x34\xab\x39\xfd\x84\x86\x22\x37\x2c\x4a\x25\x17\xf2\xc5\xe3\x42\xc6\xf9\xfc\x55\xce\xdf\xbf\x7b\x8d\x4e\x39\xb7\x2c\x9a\x30\x92\xe8\xfe\xda\xab\xac\x48\xa6\x6c\xd0\xde\xd3\xda\x5a\x09\x1b\xd9\xce\xa9\xf3\x69\x90\x3b\x21\x7f\x99\x47\x73\x01\x4b\x9c\xb4\xf0\xee\xdd\x61\x71\x26\x4f\x37\x6d\x2f\x79\xbe\x6c\xbb\x41\x2b\x44\x57\xe4\xaf\xf3\x4f\x7a\x06\xad\x02\x8a\x4b\x6a\x4d\x95\x25\x19\x2d\x14\x25\x96\x08\xc1\xe5\xa3\xd0\xb4\x90\x2a\x80\xa9\x2e\xda\x85\xb8\x9f\x33\x60\x09\xfd\x16\x1f\x1e\xc0\xd5\x1e\xe1\x45\x72\x9a\x91\x28\xa1\x57\x6c\x98\xfa\xb0\x1b\xc5\x9d\x4e\x32\xcc\xfd\xca\x23\xb9\x4f\x4c\xe7\x31\xf9\x62\xf2\x4f\x4d\x06\x19\x91\x48\x67\xc0\xd7\x70\x1b\x5f\x31\xfa\xe5\xe2\xf2\x97\xf7\xd7\x03\xc9\x43\x2d\x06\xbb\x3d\x92\xac\x24\x9c\x39\x97\x9c\xd4\x6e\x8f\x48\x9e\x64\xb0\xdb\x5b\x93\xab\xf3\xd7\xe7\x2f\x6c\xb9\x35\x79\xfb\xcb\xf5\xc5\xdb\x4b\xe7\xc5\xf5\xf9\x7f\x5f\x9f\xbd\x3b\x3f\x73\x5e\xbd\x3e\xfb\xe9\xfc\xb5\xf3\xfc\xea\xe2\xfc\xf5\xcb\xab\x73\xb7\x99\xd7\xe7\x3f\x9f\x5f\xbe\x74\xdb\x05\xf1\x8e\xf3\xe2\xa7\xf7\xd7\xd7\x6e\x47\x6b\x7b\xb2\xde\xb2\xb2\xfc\x44\x43\x2c\xa5\x5f\x50\x1e\x3f\x60\x60\x77\xec\x99\x1f\xf3\xb5\xf2\xe9\xaa\x50\xd6\x26\xd5\x22\x90\x7f\x24\x45\x6e\x87\xe2\x46\x01\x03\x21\x30\x81\x2d\x68\x6e\xd3\x7a\x69\xba\x45\x01\x1c\xf4\xbc\xd0\x80\x24\x5f\x06\x01\xa2\x14\x8f\x5e\xec\x50\x3b\x6f\x14\x4e\x97\xc3\x0a\x5d\xe6\x51\x1b\x96\xa9\xad\xd0\x41\x5b\x83\x1a\x9e\xe3\x4e\xa7\x0d\x1a\x0c\xb0\x2e\x5e\x57\x9a\xfe\xa5\xb9\xe9\xb6\x5a\x48\xb4\xbe\x6e\x4b\x8a\x70\x2c\x80\x0b\x0b\x35\xf6\x1b\x36\xe6\xbc\x7a\x81\xd7\x11\x4e\xd8\x9e\xae\x8f\xac\xe4\xdb\x8d\xf3\x06\x37\xde\x77\x4c\xb2\xfe\xe0\x44\x29\x7f\xc1\x76\x3c\x0b\x64\x95\xb6\x5e\xf4\x6c\xdd\x0a\x64\xd0\x3a\x53\xf8\xff\xba\xf6\x42\xff\x37\x92\x61\x5e\x36\x7a\x6f\x23\xbe\x94\x57\xad\x46\x91\xbb\x12\x47\x22\xea\x2c\x39\xe0\x83\x00\x5d\xee\xd7\x04\x7f\xc0\x6e\x6c\xb1\xee\x87\x0f\xde\x7d\x9f\x93\x8c\x24\xf1\x3a\x18\x63\xda\x0a\xc7\x5f\x42\xea\xd6\xac\xdc\x49\x4a\x33\xad\x9c\x02\xcb\x28\xd9\x4f\x4b\x27\xdc\x39\x4d\x2b\x44\x42\x1e\x0f\xd2\x6e\xa9\x7b\x24\xce\xce\xe0\xd6\xae\xc9\x59\x76\xad\x96\xe2\x45\x3d\x6d\xd5\x1c\x47\x81\x70\x27\xd6\xb8\x3e\x5a\xf2\x34\x53\xf1\x8d\x81\xcc\x42\x0b\xa4\x56\x44\xe8\xc0\xda\x4a\x01\x2b\x08\x82\x5c\x67\xe8\xd3\x51\xb7\xdd\x61\xc0\xfd\xd9\xbc\x02\x3e\xe4\x35\xd4\x5b\xb6\x27\xbc\x99\xf9\x30\xd0\xfe\x88\x3a\x23\x62\x04\xe3\xd7\xa3\x47\x44\x79\x91\xe2\x66\xfa\xcf\x8b\x32\x60\xb7\x82\x13\xc7\x07\xd4\x3c\x76\xcb\xf1\x53\x51\x6e\x4d\x72\xf1\x24\x30\xce\x78\x50\x29\x1a\x02\x97\xd9\x31\xe4\xcd\xff\xf3\xc3\xe9\x91\x2f\x95\x33\x78\x2e\x91\x75\x6a\x00\x83\x47\x12\x6c\x13\xad\xf4\xb3\xf0\x13\x4a\x91\x1c\x6c\xd6\xaa\xbb\xa1\x9c\xb4\xcd\x3d\x87\xe7\x2c\xe2\xc4\x1e\x46\x75\x14\x89\xf0\x3b\x52\x0d\x3a\x7d\xa5\xfa\xf4\xbd\x60\x31\x79\xf7\xff\xc1\xf2\x87\xc0\xf2\x9a\xc5\xe4\x97\xff\xe7\xb0\x44\x36\xcd\x47\x3d\x78\x9b\x93\x4f\x51\x1d\xc2\x09\x87\x73\x71\x4e\x36\x46\x1d\x21\x19\xfd\x04\x71\x30\x75\x76\x77\x44\x2e\x99\xdd\x4f\xbf\xfd\xef\x80\x81\xc1\xca\xbb\x7d\x95\xd2\xbd\x02\x14\x43\x98\x80\x0d\xfa\xd7\x43\xa5\x25\xba\xba\x09\x0a\x89\xc9\x14\x00\x2c\x31\x09\xb7\xa7\xeb\x24\xc4\x1e\x1e\x4c\x0e\x11\x9b\x13\xd0\xa6\xd1\x02\xa9\x34\x26\x05\x6c\xb7\x07\xa1\xb4\x20\xaa\x8c\x4d\x54\x22\x07\x78\x59\x2b\xb7\xf6\xa2\xd7\x14\xf3\x5c\x14\x5a\x74\x3d\xb6\x86\x59\xda\xfc\x83\x69\xb3\x2c\x1d\x82\x65\x69\x8c\x98\x68\xb6\x66\x5d\x9e\xe7\x7e\x56\x3e\x6b\x81\xf0\x8d\xe9\x70\x7b\x7e\x66\x9f\xbd\x7e\x4c\x94\xcd\x26\xe5\x60\xad\x99\x0d\xd3\x11\x9d\xba\xa4\xa1\xc4\x05\x20\x11\x31\x7f\x62\x88\x2e\x19\x7d\x29\xd8\x7c\x3a\x10\x6b\x95\x83\x58\xde\x18\xa1\xc8\x2a\x81\xc4\xbd\xbd\xe0\x48\x7b\xee\x48\x7b\x72\xa4\xdc\x19\xa9\x90\x23\xcd\x68\xef\x24\x7b\x46\xc5\x49\xb6\xb7\x17\xf3\x61\x56\x19\x29\x2f\x8f\x74\xdd\x6a\x50\x0d\xc8\x59\x04\xb6\x9e\x44\x6d\xf3\xa9\x27\x21\x87\x75\x1c\xf6\x46\xb8\x6e\x18\x16\xe7\x8a\xcd\xa7\x75\x56\x24\xb7\x4c\x44\xbd\x58\x17\x04\xf3\xb7\x5a\x71\xa5\x32\x90\xc4\xb2\x60\xda\x5e\x77\x20\x54\x49\x33\x34\x4a\xe9\x54\xed\x4e\x81\xb5\x8d\x9d\x5f\xdd\xb8\xcc\x8e\xc3\x0a\xd6\x6a\xae\xc1\xcc\x06\x4b\xc8\x2a\x37\x69\x56\x4e\xf2\xaa\xf5\x32\x28\x8e\x14\xc6\xba\xb0\xca\x08\xc8\x52\x3d\xc2\x6c\xa9\x32\x60\x6a\xdb\x2b\x83\xa5\xb6\x60\x00\x02\xcc\xc9\x72\x8b\x29\x7d\x75\xe9\xd0\xf4\x99\x35\x5c\xd2\xdf\x4c\x79\xc7\xb8\xb2\x5a\xc1\x3d\xe0\x1a\xbe\xc1\x0a\x3e\x80\x9d\x6a\x20\xe2\x9e\xa5\xf3\x49\xa0\xac\xda\xe1\x76\x3b\xea\x8c\xbc\x15\xe4\x52\x42\x2d\x65\xc4\x12\x57\x82\x3a\x31\x60\x68\xd9\x73\xea\x34\x8e\x3a\x7b\xab\x65\x7a\x97\x64\xb7\x0c\x55\x4d\x3f\xbd\xff\x79\xb0\x33\x56\xfa\xa6\x5b\x26\x76\xfe\xa0\x74\x4d\x53\x9e\x2f\x76\xc0\x9e\xf5\x64\x47\xd5\xa7\x18\x08\xd6\x6b\x33\x70\xb2\xd8\x48\x0e\xaa\x7a\xa3\xfc\x5f\x1d\x96\x37\x1e\x6a\xed\xde\xd4\xe2\x5d\x2a\xc6\xe8\xa2\x0e\xf1\x1b\x4b\x79\x15\x5d\x70\xa2\xc3\x62\x2a\x37\x01\xeb\x95\x5d\x29\xe0\x78\x69\x97\x4a\xf8\x11\x0a\xeb\x5b\xf2\xcb\xd9\x02\x4a\x5d\x60\x13\x4a\x55\xbe\x54\x9a\x54\xd7\x71\xa8\x06\x7e\xa9\xd4\x98\x98\x98\x00\x9b\xdc\xcc\x8d\x3b\x4e\xe8\x14\x57\x86\x8a\x31\x4e\xe2\xe0\x78\x4d\x72\x7d\xe2\xb8\x57\x84\x9a\xad\xcc\xc7\x6f\xb6\x34\x29\xb7\xd9\x9a\xe8\xa6\x41\x0c\x54\xb7\xa2\x7e\x67\x75\x3b\x23\xd4\xab\xbf\xa2\x8d\x9d\x96\x16\xbf\xa6\xcf\xf0\x56\x2a\xc1\x11\x23\x39\x54\x11\x9b\xb3\xc8\xba\x7d\xc0\x54\xe0\x1d\x15\x0e\xa7\x16\x5e\x55\x1d\x62\xad\xb4\x9e\x18\x6d\x8d\x05\xa2\xad\x41\x86\x6c\x08\xb8\x66\xdd\xb9\xb2\x78\x6d\xfd\x4d\xc2\xeb\x4c\x72\x1a\x5a\x61\x92\xd0\xde\x49\xf2\x2c\xd5\x1d\x25\xba\xa3\x82\xa6\xc3\x64\xd4\xca\x87\xc9\xc8\xf1\xca\x29\x6c\x47\xe8\x45\xef\x40\x82\x60\x1a\x08\xdd\xd6\x7c\x6f\x2f\x5e\x0d\xe7\x23\x55\x26\xbf\x77\xbc\x62\xc6\xb4\x71\x07\x90\x69\xcd\x77\xbd\xa8\x64\x46\x7b\x27\x33\x6b\x6e\x3f\xd3\xc3\x9e\xd0\xe9\x70\x36\x6a\x8d\x87\xb3\x51\x37\x55\x95\xa2\x89\x1d\xf4\x92\x6e\xb3\x0b\xc8\xa2\xb1\x58\x41\xee\x68\xef\xe4\xee\x99\x0e\x2e\x73\x72\xa7\x7b\xbf\xa7\x8b\xe1\xdd\xa8\xb5\x1c\xde\x8d\xb4\x13\xd8\x7d\xbc\xd6\x01\xfd\x1a\x2c\x3b\x34\x96\x50\x81\xb8\x9d\x28\xbb\x9c\xb2\x4a\xe8\x5d\x85\x97\x3f\x08\x9e\x64\x45\x82\xea\x40\x13\xc6\xb1\xdc\x82\x26\xac\xcb\x8d\xa0\x8d\x35\x0f\xa1\x26\x5e\x93\x35\xa1\x2e\x3d\xda\x02\xd3\xa3\xdd\x32\x71\x56\xee\xbe\xe6\x8a\x2f\x0f\x13\xab\xbf\x7c\xfb\xa6\xae\x46\x79\x02\xb2\x06\xa8\xea\x2b\xc6\x2b\x3e\x64\xd8\xa7\x9d\x0b\xc9\x17\x35\xa3\x5b\xa7\x8a\x73\xae\x14\x19\xc5\x9b\x51\x6a\xa9\x2a\x9e\x14\x5d\xf5\x2b\xd0\xa6\xdb\x50\x5d\x2c\xe9\x72\xb3\x9b\xf1\x62\xa8\xd5\x52\xa4\x5f\x67\x9a\xb5\x18\xaf\x34\x4b\x2c\x87\x0b\x5f\xc5\x7b\x0e\xce\x73\x6a\xd6\xed\x5c\xed\x57\x0a\x59\x02\x2c\x93\xfb\x2a\xaf\x6a\x72\x71\x4b\xa0\x8e\xe4\x3b\x94\xf8\x71\x63\x4a\x50\x67\x88\x95\xbc\xa0\xee\xae\x74\xe7\x62\x13\x7c\xb2\xee\x79\x76\x97\xf2\x3c\x03\x5d\xfa\x6b\x45\x28\xbd\x6a\xd2\xce\xa7\xd3\x68\xd7\xc8\x5b\x3f\xa5\xd9\x24\xff\x64\x94\xf1\x2d\x41\xbf\x94\xcf\x0b\xe8\x18\x66\x2a\x88\x62\xe9\x60\xa8\x1c\xfd\xa0\x7e\xb0\xbe\x39\xdf\x94\xfb\xfd\xb5\xd2\x66\x2b\xc7\x68\x77\x46\xaf\xd4\x8c\x7e\xdf\xc8\xf3\xab\x1b\xa9\xb2\x4a\x47\xc1\x55\x3a\x72\x57\xe9\x68\x34\xd8\xef\x93\xbc\x5a\xf7\x38\x58\xf7\xd8\xad\x7b\x2c\xeb\x22\xf5\x2a\x92\xf1\x47\x2d\x6f\x98\xb1\x64\xa9\xf1\xe1\x92\xe7\xb7\x3c\x59\x68\x31\x03\xfb\x2c\x18\xcf\x4c\xbc\xdc\xe5\x98\xa6\x18\x61\x37\xa1\x39\x92\x5c\x2b\xce\x21\x40\xc8\x55\xfa\x3b\xa3\xbd\x46\x6f\x0d\xed\x69\x55\xc1\x4d\x4e\xd0\x0d\x6c\x5e\x13\x26\xa5\x0f\xea\x79\xba\xf4\x3e\x4f\xf5\xfd\x05\x4f\xc5\x72\xbf\x2f\xa9\x8e\x65\xbe\x6c\xea\xac\xf0\x2a\x4d\x97\xfb\x7d\x33\x33\xe7\xbd\x62\xcf\xeb\x3b\x93\xdf\xfb\x40\xe4\x40\x5c\xaa\x45\x32\x9f\x6f\x3d\x43\x1c\x64\x43\x25\x7f\x2c\x50\x36\x8d\x14\x5f\x96\x8b\xbc\x8e\xf9\x5f\x8e\xf7\xd8\x7e\x75\x6d\x5a\x7a\x09\x41\x06\x20\x77\x7e\x15\x9d\xe9\x0e\x97\x63\xb3\xe0\x66\x8b\xc8\xb9\x26\x93\x09\x47\xa2\x4e\xad\xea\xf5\xb7\x8d\x42\xf6\x63\x1b\xa9\xcc\x5b\x77\xcb\x13\x59\x08\xac\x51\x44\x22\x2a\x36\x99\x0e\x36\x95\x03\xa6\xee\x0e\x6e\xa5\xd3\x68\x1f\x04\x7b\xb1\x63\x2b\xd1\x72\x34\x37\x58\xb0\x9b\x43\x68\x9b\x88\xc5\x20\x9b\x22\x4e\x08\x64\xbb\xad\xb9\xc7\x8b\x2e\xc7\x7b\xf2\x44\xd8\x9a\x72\x94\xda\x0f\xfc\xed\xaa\x6c\x69\xe3\x48\x15\x56\x10\xf1\x36\x33\x97\x8b\xf0\xdf\x56\x64\xc5\x69\xf1\x26\x19\xcf\xd2\x8c\x9d\x7a\x4d\xe0\xcb\x88\xc5\x03\xef\xfd\xd5\x7d\x01\x18\xad\xdc\x38\x96\xf7\x96\x0a\x53\x21\x32\x50\x71\x63\x36\xc4\xe3\xc7\x03\x6f\x9e\xd6\x33\x52\xe5\x24\x3c\x7e\xe2\x7f\xc7\x13\x66\x3e\x3f\xad\x54\xb7\x9b\x5b\x17\x7a\xd4\x2b\xb7\x51\x2d\x73\xec\x97\x51\x73\xea\xe6\xcb\x3e\x7e\x3f\x7a\x5a\xfd\x1e\x38\x28\xba\xb5\x03\xaf\x34\x78\xf7\xb9\xad\x1d\x1c\x79\xdf\xf1\x02\xd0\x1f\x8f\x03\x1f\xaf\x75\x03\x6b\x17\xca\x08\xfd\xd2\x22\x26\xe6\x7b\x24\x08\x23\x08\x6f\x24\x7e\xff\xb4\xc9\xac\x19\x5c\xe0\x82\xce\xa4\x5b\xfa\xb1\x41\x37\x3f\x7d\x7b\x37\xdb\x7b\xc1\x91\xf7\x4d\xf7\x9e\x96\x74\xbb\x19\x34\x1c\xfa\x3c\xb7\xa4\xb1\x7d\x39\x06\x27\xca\x2b\xb8\xab\x20\xcd\x57\x17\x7e\xfb\x51\xeb\x6a\x3e\x83\x8d\x7f\xcd\xb7\xa5\x93\x0a\x45\x8e\x0c\xef\xba\xec\x4e\xdf\x88\x93\x7c\xa1\xe2\x0e\x94\xe9\x76\x3f\x23\xb4\x43\xcf\x33\x24\xd3\x21\xc1\xfd\x34\xe7\x17\x2a\xad\x92\x0a\x39\x12\xd4\x1e\xcb\x51\xc9\xb6\xe4\x3b\xa3\xcc\x11\x9e\xe9\x9d\x65\x3c\x2a\x41\x0f\x09\x5f\x83\xcd\x6d\xb1\x5a\xd4\x59\x72\x7a\x1d\x54\xdc\xfe\xac\x55\x47\xa0\x71\xf5\x0e\x9e\xae\x79\x32\xfe\xc8\x24\x31\x46\xb2\x75\x4b\x5b\xde\x84\xf2\x88\x55\xa2\x88\xd5\xca\xb1\xdd\x3d\xb0\x26\x99\x5a\xab\xba\x0d\x66\x17\x52\xe3\x64\x59\x65\x99\x2f\xeb\x8c\xf4\x9d\x5d\x83\x9e\xd0\x95\xd7\x6e\x43\xfe\xe4\x6b\x85\xdb\x65\x78\x40\x1c\x4d\x14\xb3\xe2\xea\x29\xfd\x9d\x2c\x09\x8c\x44\x72\xf3\x2d\x6d\xfe\x5a\xd7\x26\x94\x7c\x9d\x16\xf5\xd6\xcc\xc1\xf6\xfe\xee\xb7\x47\x58\xa9\x45\x2c\x1b\xb8\xc5\xb7\x56\x1c\x75\x3a\xee\x93\x0e\xb3\x51\x5d\xb7\x96\x6f\xb4\xc8\x21\x46\x5e\x29\x30\x28\x8b\x89\x78\x78\x00\x9e\x4b\x9d\x3d\xe5\x44\x1c\xb1\x18\x97\xf1\xc3\x87\x7c\xc9\x32\xbd\x51\xcb\x3d\x69\xa1\x16\xc3\x3d\xd2\x08\xff\x1b\xd5\x48\x17\xfc\x40\xd3\xdf\x99\x9b\xfb\xec\xc3\x07\x48\x7b\x54\xdb\x8f\xdc\x57\xb2\x0f\x67\x38\x6e\x37\xea\x93\x6d\xa2\xfc\xcd\xc9\xcc\x55\x47\x3f\xa9\x96\xad\xe3\x44\xab\xee\x04\x49\xd2\xdd\x0e\x25\xd4\xaa\x6f\x23\xbe\x28\xfb\x64\x10\x6f\xc3\xc9\xa6\xdc\x64\x51\x75\xe3\x73\xf4\xcf\xe5\x11\x21\x3f\xfb\xc1\xcb\x39\x25\x31\x13\xf9\xea\x2b\x40\x2e\xa8\x11\x30\x19\x71\xa5\x8b\xc0\x39\x06\x65\x57\xb3\x4b\x25\xb2\xce\x9c\x3c\x57\x00\x98\x9a\xf9\x18\xd2\x4c\x02\xa5\x62\x06\xad\xae\x37\xcf\x12\x3a\xf3\x92\x61\xd5\xed\xab\x4f\xe9\x7c\xfe\xc2\x4b\x9a\x45\x34\xa9\x53\x7d\x63\x27\x67\xce\xa5\x97\x39\x2c\x78\x77\x54\x8e\xe6\x41\xf0\x68\x1e\xb8\xdc\xdf\x01\x1a\xe9\xe3\xda\x54\xd3\x9b\xa9\xcb\x43\x01\xac\x79\x18\x36\x68\x81\xb3\x0e\x4c\xa7\xf3\x52\x37\xcf\xbf\xe4\x59\x6e\xd5\xe0\x25\xad\xd5\x2f\xa7\x49\xab\x32\x02\x26\x84\x57\x15\x84\x1a\x5c\x0d\xeb\xea\x5d\x05\x3a\x88\xc5\x1f\x22\x63\xdc\xe5\xed\xae\x2a\x37\xe4\x91\x18\x56\xa0\x9d\x79\xeb\x56\xb7\x0b\x4a\x95\x35\xc2\x90\x88\x6d\x32\x71\x50\x5e\xb5\x5b\x8d\x97\x2a\xa8\x51\xd7\x77\x10\x63\xed\x39\xd7\x8d\x54\x11\xa9\x42\x8e\xe6\x7d\xa3\x93\x4d\xa5\x15\x74\xb1\x31\x6d\xbc\xdd\x02\xe5\xe8\x46\x7c\x7c\xa6\x9a\x28\x9f\x95\xca\x0e\xd0\x95\xfd\x2c\x74\xb2\xaa\x4d\xfa\x58\x8f\xec\xbc\x61\xe3\xce\x77\x93\x45\xc6\xb8\xdf\x6b\xda\x72\xd0\xdd\x24\x5f\x68\x54\x67\xac\x90\x68\x19\x45\x80\x1f\x56\xc5\x1f\xc9\x35\x24\x70\x70\x0c\x27\xa9\xa4\x3d\x53\x77\x04\x1b\x3c\x9e\x16\x01\x6f\x5e\x73\xb1\x57\x11\x96\x02\xb1\x6e\xfb\x15\x4f\x6e\x6b\x10\xba\xe7\x96\x95\x4e\x23\x8f\x48\xfd\xab\xdf\x8f\x20\x8e\xff\x5a\xd9\x3f\xf0\x6b\x07\xc8\x5d\xbf\xf5\xff\x2e\x75\xe4\x2e\x97\xe3\xc1\xe7\x2d\x19\xf8\x9e\x6f\x06\x98\xf5\x1b\x0c\xf4\xe1\x2e\x20\x73\xb6\x16\xda\xbc\x56\xba\x70\x76\x05\x44\x3f\x66\x93\x17\x79\x26\xf0\x96\xf6\xf7\x1d\x1e\x3a\x51\x6d\xb5\x69\xaf\xad\xb2\x6a\xbb\x0d\xdb\x3a\x56\xf7\xbf\xd7\x7c\xc3\x62\x7b\x70\xd5\xe5\xbe\x66\xe8\x95\x4d\x1a\x68\x57\xe3\x09\xb5\x85\xca\x2b\x5b\xd3\x97\xba\x7d\xfc\xb9\xd7\x2e\xae\xbb\x03\x10\x37\x96\xe1\xb6\xb1\x2e\x22\x01\x3b\xc3\x8d\x0e\x83\xf5\x08\xc5\x3a\x0f\x7a\x1b\x34\xd4\xe2\x77\xa0\x15\xdb\xcb\x56\x58\xa5\xd1\xcd\xcc\x9c\x11\xdf\xdb\xac\x4c\xa2\x11\x97\x30\x70\xac\xf4\x82\x17\xae\x53\x0f\x8d\x23\xb2\x40\xc6\xc1\xf0\x50\x4a\x66\xf0\xb6\xdb\x40\x34\xf1\x52\x0b\x25\x1b\x55\x6f\xf8\xa8\xe1\x65\xd9\x9d\xa7\x42\x81\xe0\x18\x6e\x20\x03\x48\x5b\xa1\x8d\x54\x75\x95\x98\xe4\x8d\x0a\x11\x93\xdd\xaf\x41\x19\x12\xe0\x3c\xf5\x62\xaf\xd7\x44\xb5\xe3\xac\xf6\x57\xb7\xe5\xd4\x75\x75\x2d\x97\xec\x13\xde\x97\x3f\xad\xd2\xf9\x84\x71\xfa\x5e\xe9\x27\xfe\xb6\x49\x1a\xa4\x84\x05\x7e\x1c\x2a\x3f\x23\x9e\xf3\x38\xb1\x24\x4a\xe1\xa5\x99\x86\xf8\x06\xcd\x0a\x81\x49\x59\xad\xe6\xc9\x74\xdd\x96\xc1\x85\xa7\xd3\xd1\x9a\xff\xd8\x5a\x0d\xf6\x4e\x84\x35\x08\x10\x7b\x7b\x31\x1b\x0a\x47\xb7\xbe\x2e\x0b\x3f\x1a\xcc\xd7\x40\x24\xb0\x6d\x58\x2c\x37\x6a\xd2\xb6\x21\xb2\x9c\xc8\x4a\x6b\x90\x1f\x87\x89\xa7\x00\xaa\xd1\x9c\x0f\x82\x75\x6f\x0f\x64\xf8\x4d\x84\x13\x96\xdc\xdf\x47\xa3\x8d\x1a\x6a\xaf\x47\x29\x75\xcb\x6b\x57\x09\x98\x9d\xce\xfc\x88\x5b\x80\x7d\xda\xf9\x13\xb3\xac\xb8\xda\x08\xec\xd3\xce\x4f\x4c\x61\x3d\xd1\x48\x9d\x7e\x45\x4f\xcc\xed\x41\x89\xd7\x7d\x62\xb8\xc6\xf4\x44\x6f\xc3\xca\x9b\x87\x07\xcf\x0e\x09\xdf\xba\x36\x2a\x5a\x08\xe0\xb5\xac\x1d\xfb\xcd\xc8\xe4\x0e\xac\x10\x24\x28\xfe\xfc\xd7\xf7\x1a\x57\x7f\x45\xf4\x99\xc0\xc1\x61\xd5\xcf\x4e\xb4\x5c\xf2\x67\xf5\x3f\x58\x42\xff\x8d\xc5\xe4\xd7\xff\x8b\xa3\xe5\xac\x08\x05\x64\x0d\x9f\x72\xc8\x2f\x5d\x3a\xe5\x81\x24\x8b\xcc\x55\xb7\x8b\x21\x1f\x69\xe6\x13\x27\xda\xaa\x1c\xd8\x6f\x47\x61\x24\x33\x60\xfb\x7b\x83\x8c\x3b\x88\x3d\x21\xbc\x2f\x88\xed\x04\x69\xfe\xfc\x95\x88\xd2\xaf\xae\xa3\xb9\x00\xb2\x08\x50\x2f\xcc\xc1\x88\xff\x16\x9c\x68\x47\x32\x63\xc9\x04\xa4\x6a\x5f\x85\x1e\x6d\x7d\x91\xa4\xf3\x28\xde\x12\x55\x36\xa1\xc1\x66\xc4\xb7\x09\x5d\x6d\x40\x3a\xb5\x38\x03\xcd\x41\xe5\x62\xfe\xcc\xe8\xc1\xa3\x27\x47\x87\xc7\x47\xc7\xc7\xe4\x2f\xf5\x06\xa1\xea\xce\xfb\x46\xf3\x77\x89\x80\x73\xad\xdd\xf8\x56\x6b\xff\xe1\x48\x51\xe4\x5e\x16\xdd\xdf\x0a\xdc\x94\x35\x12\x7f\xb0\x2b\xb6\x93\x72\xed\x50\x94\x0d\x72\x3b\x5b\x2d\x6e\x18\xb7\x2e\x12\xa2\xd3\xa9\xbc\xe3\xa7\xb6\x67\x34\x55\x86\x90\x11\xa1\xca\xc6\x31\xa3\x5a\xe9\x15\xcf\x17\x91\x40\x7d\xa8\x7a\x3f\x9e\xe7\x99\xb1\x7b\xfe\xad\x70\x1a\x57\x54\xa5\x7c\x0c\xa9\x5d\x2d\xd6\x19\x8e\x48\x46\xd9\x49\xf6\x0c\x3d\x09\x1c\xfd\xfd\x2d\x13\x51\x16\x5b\x15\x0d\x08\x07\xf3\x65\x90\x2a\xc6\xe1\xe4\xcb\x7b\x13\x89\xe3\x13\x4f\x2b\x66\x53\x9e\xcf\xae\xc1\x91\xe8\x5c\x62\x5d\xf0\xb5\x42\x7b\xb7\xd7\x42\x1d\xae\x50\xea\xdb\xf6\x4d\x9e\xcf\x59\x92\xb5\x07\xf0\x64\x63\x2c\x0d\x4c\x05\xf8\x80\x80\x1d\x48\x92\xea\x3f\xfa\xbb\xb4\x67\x23\xae\xa9\x69\xbf\x49\xc4\xac\x9b\xdc\x14\x96\xcb\xd8\x8d\xf8\xf3\x9f\x59\xdc\xc2\x6c\x00\xba\xc1\xfe\x7a\x1d\x89\x38\x76\x26\x09\xf3\x7a\x97\x7c\x8a\x18\x09\x28\x9b\xf5\x64\x70\xbc\x7a\x20\x08\x43\xb7\x82\x1c\xdb\xb3\x9e\x06\x82\x3b\x20\x79\x45\xc8\xb1\x54\xe2\x1a\x65\xb9\xd8\x29\x16\xa9\x0d\xf1\xe3\xd4\x7a\xf6\xec\xf0\xe1\x68\x0d\x56\xe2\x5b\x55\x65\xb2\x02\xc4\x9d\x6b\xf9\x90\xd5\xdf\x4f\xfb\xfd\xc1\xa1\xfa\xa6\x32\x59\x9a\x4f\xfd\xa7\xad\x30\xf8\x77\x0e\x1e\x1b\xf8\xd5\x25\x59\x51\xf0\xb4\xd1\x07\x90\x17\xfc\x4d\x1f\xe7\x96\x7e\xf4\x72\x65\x55\x40\xff\x7f\x32\xe5\x3e\xac\x5f\xd5\x6f\x4a\xa7\x92\xda\x98\xc1\xd0\xe9\x4e\xfe\x6a\x59\x00\xca\xdb\x1b\xf6\x59\xef\x14\x87\x35\xfc\x3f\x62\x34\x08\x19\x19\xa0\x7d\xc1\xa1\xd9\x38\x4a\xb9\xde\xef\xfb\x5b\x73\xa7\x6f\x14\xfb\x20\xab\x56\x1a\x78\x6d\x94\x50\xda\x7d\x3b\x81\x8e\x1e\x77\x74\x57\xc6\x82\x80\x3d\x7f\x7e\x88\x56\x03\xf8\x6a\x3f\x92\xef\xe2\x6d\x16\x83\xa9\x15\x51\xde\xb7\x05\xab\x52\xd9\x0a\x26\xf0\xcd\xc1\x34\xe8\x3d\xd0\x6b\x64\x1d\x55\xa1\x46\x6e\x4f\xb5\x3e\x67\x99\x1c\x0c\x72\x76\xe4\x0f\x8d\xe6\x65\xae\xb9\x91\xe1\xe0\x8c\x79\x57\xb1\xa4\x7c\xcd\x54\x2e\xd0\x1a\xd7\x11\x59\x4e\x05\x7b\x66\xa4\x47\xf6\xfb\x31\x2a\x9a\x85\x1f\x74\xcb\x75\xdc\xc2\xd2\x01\xe3\x6c\xa1\x36\x98\x24\x09\x81\x44\x2b\xf7\x23\x48\x8f\x30\x93\x73\xa5\xd9\x0b\x6b\x59\xce\xe2\x66\x27\x8a\xbd\xec\xa1\xb7\xc6\x12\x3d\x87\x40\x3b\x90\x8d\xf3\x09\x9b\x5c\x2c\x16\x6c\x92\x96\x5d\x08\xcb\x2d\xc8\x8d\x1d\x6a\xe4\x72\xe5\x9a\x75\x34\xf6\x8c\x36\x94\xa2\x3b\x59\x2d\xab\x7c\xed\x37\xde\xf1\xd8\xb8\x63\xbb\xa7\x6f\x13\xd3\x31\x1a\xda\x87\x2f\x20\xaf\x8a\xd0\x86\x67\x3f\x6c\x78\x7d\x6d\x7b\x65\x6d\xe2\xf4\xa8\x7c\x1f\x9e\xe5\xbe\xdc\x92\xc6\xee\x2d\xad\x23\x06\x2b\xed\xec\xef\xab\x41\x33\xf6\xf1\x87\x8d\xba\xd7\x6a\xee\x92\x05\x1d\xa0\xbe\x52\x37\xee\x93\x59\x78\x1a\xeb\x3a\xde\x53\x5d\x56\xdd\x9b\xbe\x4b\xeb\xa7\x3b\xad\x6c\x5a\xbe\x27\x70\x8f\x97\x28\xb9\x4a\x60\x31\xb4\x98\x04\xfa\x49\x6f\x20\x78\x02\x9f\xcb\xed\x2a\xfa\x66\x6f\x98\x54\xb8\xee\xaa\x29\x96\x7b\x7d\xc2\xa9\xd8\x67\x01\x58\x39\xcd\x71\x6c\x2e\x8c\x9c\x55\x71\x44\xce\xb2\x98\xc8\x4b\x03\xde\x30\x5a\x04\x1d\x31\x63\x8a\x1d\xea\xfe\xaf\x1b\xcc\x9d\x30\x7c\x52\x37\x99\x7f\x4a\xee\x8b\x77\xec\x2e\x99\xa7\x93\x04\xfc\xe6\xcd\xaa\xa5\x9d\x4e\xaa\x16\x66\xca\x93\x05\xab\xb1\x57\x72\x2c\x93\x4c\x2e\x0b\x2a\x9c\x2c\x17\x5a\x92\xeb\x98\x21\xa1\xdb\x43\xa9\x6f\x9a\x37\x11\xf4\xec\x33\x1b\x57\x03\x8b\x39\x26\x93\x76\x90\xe0\xb2\x82\x2a\x10\x85\x54\x4e\x76\xb9\xcd\x5c\x70\xe2\x79\xf2\x43\x35\xdf\x8c\x33\x8a\x5b\x3a\x5a\xca\x69\xe6\x58\xc8\x49\xd6\x7d\x50\xea\x0b\x95\xa7\x40\x9d\x94\xcd\x5e\x9d\xf6\x95\x5d\x1f\xaa\x10\x82\x68\xd0\x6d\x52\x6b\x83\x85\xb0\xea\x60\x20\x04\x2a\xbb\x48\xb5\xae\xb2\x72\x9c\x7f\x1e\xb3\xa5\xfa\x48\xc2\xa3\x6c\xba\xf1\xa1\x70\xe3\x85\xef\x34\xa7\x6d\x94\x1c\x89\x2e\x98\x15\xa5\xd9\xed\xaf\x6f\xe8\x5f\x95\x28\xf7\xbf\x9b\xc2\xaf\xa8\x18\x57\x18\x56\x4b\x07\x61\x49\x82\x49\x94\x0a\x91\x70\x41\x85\xce\x3c\x4c\x39\x49\xba\x7c\x95\x89\x74\xc1\x68\x46\x12\xcc\x9f\x04\xba\xd8\x36\x49\x60\x29\x95\xa0\x44\x45\x82\xd4\xbf\xc1\x25\x95\xb3\x8c\xe6\x24\xb1\xe9\x97\x92\x6f\x0a\x1b\xb0\x95\x80\x42\xf5\x51\xb6\x6e\x03\x13\x96\xad\x04\x16\x85\x2f\xa6\xc8\xb6\x13\x53\x14\x9e\x70\x22\x0b\xa7\x80\x62\x70\x32\xd4\xa1\x45\xb0\x68\xe2\x20\x6b\x96\xe7\x14\xae\xf4\x3a\x0b\xba\x9f\x68\x73\x6d\xb5\x44\x3a\x47\x94\x11\x87\xd9\xa6\x4c\xa6\xad\x7f\xd4\xec\x94\x54\xa5\xda\x82\x04\x67\xca\xc3\x4d\xef\x94\x82\x96\x83\x3e\xab\x52\x26\x2b\x19\xec\x09\xc1\xef\xdb\x44\x25\x42\x29\xba\x1f\x54\x32\x2d\x63\xfe\x76\x9d\xdc\x9a\x28\xcc\x5e\x8a\xad\x98\x84\x63\x49\xa4\x7a\x53\xe4\x34\xad\x6e\x8a\x5c\x4e\x12\x2d\x2b\xd3\xdf\x55\xac\x51\xb9\xdb\xca\x60\x91\xc3\x40\xda\x19\xdd\xcd\x20\xc9\xec\x38\x5f\xdc\xa4\x19\xbb\x92\xf8\x3d\xf6\x57\x46\x9e\xff\x7c\xfb\x75\x44\x51\x6a\x5e\xc6\x0a\x61\x45\x86\x43\x1d\x09\xe6\xa7\xfd\x22\x5a\x61\xa5\x5b\xce\x4d\x51\x2e\x88\x36\xc6\xe7\xec\x8e\x14\x56\x2b\x48\xd0\xc7\x10\x57\xbf\x95\x9a\x14\xf1\x10\xed\x92\xbe\xd7\x86\xa1\xd1\x0a\xd2\x89\x67\x9a\x7b\x51\xcf\x71\x4c\xc6\x74\x29\x74\x19\x41\x56\x64\x1e\x93\x29\x5e\x3b\xaf\xd3\xec\x23\x03\x41\x5c\x6b\xac\x2f\x84\x28\xb7\xcc\x3c\x8f\xbf\x70\xe4\x2e\xfe\x60\xf8\x82\x48\xa8\x57\x31\x41\x88\xa7\xd9\xad\xca\x18\xeb\x60\xdb\xa9\xf9\xaa\x52\xeb\xb1\xc6\xd2\x69\xbc\xd6\x36\x3f\x12\xc1\x24\x56\x55\x4f\x8b\x35\x49\xd7\xd1\x7f\xb3\x98\xfc\x79\xb3\x34\x56\xd9\xe8\xeb\xeb\x73\x91\xf0\x8f\x90\x2b\x4e\xa0\x8a\xe5\x02\x74\xa7\x74\xb7\x6f\xde\xbc\x64\x73\x26\x98\x79\xb3\x48\x96\x94\xc9\xbf\x8e\xe1\x6f\x9a\xdd\xca\xb3\x81\x6b\xd6\x24\xb7\x55\xaa\x59\x5f\x59\xe9\xa4\x1d\xd6\x3d\xe8\x95\x56\x83\xd5\x6b\xad\xfb\x22\x2b\x85\x5f\x31\x43\xfd\x8a\x42\xac\xef\xec\xd6\x8a\xc6\xd2\xd3\x68\x4e\xf3\x61\x3a\x8a\x03\x68\x6d\xe0\xcc\x1c\x13\xd8\x27\xdd\xbb\xc5\xab\x9c\xab\xc9\xcb\x71\xad\x62\x4c\x68\x0f\xd9\xaa\x60\xf7\x39\xcb\x3f\xb3\xcb\x9f\xc6\x5f\xf2\x21\x1b\xd1\x29\x4d\x6d\x6a\x1d\x22\x62\x92\xd6\x2f\x65\x79\x63\x99\xc2\x6a\x1f\x4c\x1b\x2b\x4f\xed\x19\x5d\xc7\xa4\x14\xad\x74\x4a\x1c\xc3\x3f\xbd\x94\x3d\x74\x2c\x49\x5c\x1f\x48\xe4\x8d\xe5\xa7\x45\x7e\xb7\x41\x7d\x2c\x57\x24\x2f\xad\x41\x42\xd3\x21\x1b\x91\x82\xa6\xc3\x6c\xa4\x62\xc5\xb4\xfe\x11\x25\xa4\xb2\x16\xd9\x69\x2d\xf4\x63\x92\x63\x2c\xad\x28\x91\xbf\x4b\x01\x98\x0b\xc5\x37\xaa\xfd\x57\x43\x18\xcb\xa1\x71\x2a\x86\x6c\xd4\x72\x1d\x13\xa3\x98\xfc\x39\xe2\xb1\xbf\x47\x75\x5f\x3c\x26\xaa\xd1\x1d\x59\xaf\xb2\xd1\x01\x5e\x93\x3c\xab\xba\x1f\xa9\xed\x18\x46\xba\x91\x0f\x76\x75\x29\xd8\x66\xb5\x52\xac\xc4\x3d\x79\xd7\x0e\x5c\x27\xa4\x20\x2b\x35\xc3\xf9\x49\x34\x2f\x5d\x39\x58\xa2\x74\xe5\xcc\xd3\x42\xec\x23\x2d\x32\x87\x03\xea\xe5\xb8\x9f\xc3\xed\xac\x72\x59\xb1\x09\xcd\xba\x17\x97\x17\xd7\x17\x67\xaf\xc9\xdc\xc9\xcf\xb5\xc2\x93\x30\xff\x8a\x3b\x4b\x1f\xeb\x39\xdc\x76\xee\x95\x12\x47\xc3\x15\x64\x01\x1b\x8f\x62\x32\xff\xf7\xdc\x6c\xea\x3e\xd9\x8d\xb6\xe6\x76\xe3\x87\x07\xf7\xb1\x65\x34\x5f\x06\x34\x8a\x45\x30\x79\xc7\xe4\xad\xa9\x13\xe1\xe9\x48\x74\x3f\xee\x2a\x2d\x85\xcd\xd3\xbd\xea\x1b\xd0\x1d\x18\x24\x04\xe2\x7a\x3c\xc0\xb8\x44\x69\xec\x21\x4d\xbc\x3e\x13\x2a\xc0\x84\xa6\xa0\x49\x20\xd4\x7b\xe2\x06\x3f\x8e\xf2\x8a\x13\x44\x41\x72\x87\x92\x53\xcb\xb3\x82\x7b\xf0\xcf\x8a\x15\x21\x45\xdc\x52\x39\xd2\x74\x6a\xb4\xab\xfb\x6c\x3c\xe3\x79\x96\xfe\xce\x78\xf4\x45\x24\x5c\x12\xf3\x2b\x62\xa6\x33\xe0\xeb\xb8\x5b\xdc\x67\x63\x63\xb1\xea\xf7\xe9\x85\x49\x2f\xe2\x35\x0b\x64\x12\xf5\xbc\x52\x25\x30\x7d\x64\x5d\x87\x1a\x10\x24\x3c\x40\x6c\x20\xa5\x40\x52\x49\x1b\x94\xbd\x53\xa2\x0c\xa8\x04\x13\x42\xb5\xea\x2c\xe2\x45\x70\x5f\x9b\x73\x60\x69\x08\x95\xca\xd6\x5c\xcb\x42\x6c\x71\x2d\x9b\x70\x57\x4c\x53\x4f\x7f\x02\x62\xca\xdc\xce\xc8\x00\x51\x86\x1a\xc5\xa6\x7b\x36\xcc\x17\x9a\x16\xb6\xf5\x22\xc4\x0a\x9a\x60\xcb\x97\x85\x51\x08\x68\x6b\x05\xdd\xa6\x6a\x10\x6d\x33\xc0\xd2\x52\x34\x51\x83\xc1\x99\xe2\x19\x2b\xbf\xae\xf2\x9a\x88\x4c\x79\x03\x5c\x9d\x60\x62\x8e\xb8\x40\xbb\xf3\x8a\x12\xf5\xc2\x1d\xed\x73\x41\x1b\x49\x18\xce\x78\xc9\x89\x49\x83\x6c\x7b\x54\xe4\x0b\xde\xbe\x94\xa5\x12\x83\xdd\xfe\x3a\xae\xca\x49\x84\x95\x93\xb0\x4e\x87\x19\x3b\x39\x49\xd2\x7a\x2e\x9c\x24\xf5\x2f\x6b\x38\xb3\x7f\x55\xdb\xb2\xda\x99\x58\xc7\x86\xb2\x49\x35\x29\xbf\xa5\x42\xbc\x8e\xdf\xdc\x56\x41\x5e\x7c\x93\x5a\xbc\x28\x29\xc3\x1b\xf7\x19\xcf\x3f\x41\x0a\xda\x9d\x62\x96\xaf\xe6\x93\x9d\x8c\xdd\x31\xbe\x33\x03\xab\x95\xb6\x22\x30\xb6\xe3\x3d\xd1\x64\xc4\x32\x92\x28\x85\x50\x58\xe3\x1d\x2b\x56\x73\x41\xb9\xca\xd0\x92\xd5\xed\x4c\x4f\x1d\xe1\xb8\x75\xe4\x05\x46\xd1\x00\x74\x9b\x6b\x4b\xdc\x64\x21\x6f\x6c\xf6\x69\xa7\x10\x8e\xcf\x4d\x01\xaf\xe6\xa2\x29\x34\x47\x49\xa5\xe1\x06\x69\x5b\xee\xf5\x3d\x29\xa2\x4a\xd0\x0e\x15\x54\xa0\xe7\xd2\x90\x2a\x9f\xd4\x20\xca\xaf\x21\xde\x04\x13\xae\x98\x1f\xcf\xa1\x24\xf0\x9d\x69\xb3\x96\x73\x71\x41\xe7\x70\x6f\x61\xd2\x56\x48\x45\xbb\xdc\x4f\xf6\xfa\xad\x5c\xb5\x07\xb9\x30\x12\x1b\x91\x7a\x45\x8b\x7d\x8c\x11\xe1\x0c\x52\x17\x5d\xe9\x6c\x51\x73\xc7\xef\xaa\x20\x63\xca\x75\x0f\x53\xba\xda\x3f\xfc\xcf\x71\xcb\xd6\x99\x92\xb1\x0a\x8d\xd9\x4d\x1a\xdc\xc9\x6c\x5f\x89\xc0\x88\x16\x9c\x25\xf3\x79\x3e\xae\x15\xdb\x82\x68\x10\xd4\xac\xbd\x4e\x07\x05\x7c\x7e\xa6\x7e\xbf\x65\x63\xec\x0a\x50\x49\x29\xef\xde\x24\x05\xdb\x63\x24\x37\xc3\xdf\xcb\x6c\x4e\xfe\xfc\x39\xed\x9d\xe4\xfb\xfb\xb1\x52\x75\x44\xf9\x9e\xaa\x40\xf2\xbd\x34\x6e\x61\x65\xca\x48\x66\x7e\x09\xb9\xfc\x94\xad\x21\x1c\x47\x59\xe6\xac\x11\x99\xb1\x4c\x73\xa6\xac\xfa\x3c\x9d\x89\x41\xf9\x0b\x36\x23\x2f\x78\x5b\x53\xed\x29\xac\x34\xc5\x4a\xea\xa5\x29\xef\x6a\xbf\x52\xd4\x33\x48\xa2\xd1\x38\x1b\xa1\xd5\x13\x8c\x55\x72\xf4\x35\xb7\x54\x81\xb6\x1e\x4e\x9d\x96\x70\x00\x0e\x76\x92\xcb\x7c\x09\x8a\xcb\xa6\x60\x1e\x49\x9d\xad\xa9\x4b\xe3\x5d\x27\xb7\xb7\x6c\x12\x47\xc3\xf2\xd2\xd9\x29\x8e\x62\x63\xc7\x2a\xe1\xde\x28\xe1\xc4\xb3\x24\xcb\x99\x4a\x5b\x68\x42\x2b\x2b\xb3\x57\x01\xfb\xde\xe1\x7f\xba\x3d\xa8\x97\x56\x6d\x9a\x6e\x77\x79\x42\x46\xdf\x0a\x92\xf2\xf0\x13\x77\x57\x8b\x66\x5f\x91\xe9\xf7\x0b\x34\xe0\x6e\x0e\x4d\x6f\xdb\xbe\x2a\xfb\x4d\xe7\xc3\x46\x22\x20\xdf\x80\x6a\x25\x64\x69\xcf\x1b\x62\x8f\x04\x91\xb0\xe2\x7c\xec\x23\xd7\x01\x8d\x94\x11\x9c\xca\x80\x14\xc2\xb6\x69\x05\xdb\xfa\x9a\x46\x63\xdc\x26\x87\x22\x42\x43\xf9\x10\xc8\xba\x5f\x19\x04\xef\x9e\xbf\xf9\xe5\xfa\xef\x1f\xce\xde\xbd\x3b\xfb\xfb\x9a\xa4\x21\x6c\x9b\x6e\xd9\x6f\x4a\xe4\x51\x4d\x4f\xa3\x6f\xec\x3e\x1e\x44\xdb\xc0\x4c\xd2\xc0\x65\x9c\xea\x92\xe8\x12\x57\x71\xf7\xe0\x6a\x04\xa8\x30\xa7\xb1\x3e\xe9\x3d\x3c\xb0\xe7\x94\x9f\x4e\x07\x99\x8a\xe5\x09\x9c\x40\x1a\x42\x61\x0e\x52\x49\x1c\xa4\xa2\xe8\x7e\x33\x3a\xa8\xbd\xe4\x6c\xc9\xbc\xb0\x9c\xf6\x96\x44\x3c\x02\xd6\x35\x3d\x8f\x55\x83\x41\x67\xde\xa0\x53\x77\xd0\x16\xe4\x7c\xbf\x04\xf5\x6c\x4f\x98\xd8\x66\xb9\x44\xdd\xcf\xc4\x49\xbe\xb7\x17\xa7\x2a\x1a\xa7\xbc\x57\xf2\x18\x32\x53\xb6\xb6\xda\x91\x5f\x8d\xce\x1c\xac\x29\xdb\x36\x00\x7e\x78\x88\x9c\xd7\x34\x84\xef\xca\x00\x94\x68\x44\x23\x2c\xfb\xba\xb1\x47\x5b\xac\xa5\x32\xde\x56\xee\x4a\x52\x0b\xe3\x56\xb5\x11\xea\x2a\x5d\x23\x4e\xf8\x5e\x66\x92\xae\x31\x8b\xe8\x92\x46\xee\xeb\xfb\x54\xc9\x9e\x19\x92\x83\x2a\xdd\x41\x7a\x3b\x60\x93\xb5\x49\x59\xc8\x42\xbc\x53\x47\x7a\xcd\x26\x21\x0d\xd4\x8b\x1d\x11\x06\x0d\xad\x41\xc9\xe5\xd2\xdd\x45\xb2\x74\x92\x05\xbc\x9d\x36\x58\x01\x94\xaa\xfa\x27\x1b\xb2\xd8\xe2\xcd\xe6\x86\xa1\x59\x69\xe9\x92\x71\x97\x5d\x26\xbc\x60\x17\xe0\x42\xdb\xef\x59\x2a\x41\x22\x81\x4c\x21\x01\x31\xcc\xec\x1c\xde\x4e\x43\x93\x66\xe6\x9e\x50\xbb\xa0\xf8\xe6\x6b\xa2\x7c\xea\xf0\x2d\x64\x0f\xf0\x91\x22\x7e\x49\xc4\x65\xf5\xdb\xbf\xf5\xf6\xa8\xc3\xd2\xdf\x38\xd4\xf0\xd5\x82\xda\xd3\xad\x06\x96\xc1\xf5\x92\xe9\xeb\xe5\xc7\x8e\xcf\xdc\x3d\xe5\x85\xc9\x75\x7f\xaa\xc1\xb4\xd4\x08\x5c\x48\x03\xaf\x88\xb3\x9e\xba\x54\x1a\xc3\xdd\x30\x4b\x42\xbe\xc4\x90\xbf\xca\x90\x2b\x85\x49\x64\xc5\xa0\x4e\xf8\x54\x04\x44\x94\x75\xd6\x31\x9e\x88\xd2\x09\x1d\xe1\x60\x43\x85\x26\x53\x1a\x89\x53\x3b\x0e\x45\x23\xe1\x0c\x62\x67\x54\x2d\x3d\x6c\xb8\xec\xf5\xed\xa9\xf2\x00\x6c\xba\x3d\x57\xe5\xdb\x13\xba\x0a\x5e\xa4\x0b\xc6\x6f\x43\x22\xfa\xa6\x6b\x54\xb5\x56\x7f\x8f\x92\x5c\xa7\xe8\x68\x61\xfe\xda\xb4\x78\xc5\xf3\xdf\x59\x16\xf1\xb8\xd3\x01\xab\x67\xac\x07\x09\x9f\x86\x23\x1b\x37\x54\x45\x2b\x15\x6e\x98\xd2\x7c\x98\x8c\x4e\x00\x0e\xdc\xc0\xa7\x88\x3b\x9d\x08\xd4\xed\xab\x62\x16\x15\xb1\x24\x09\xc0\x03\xc6\xc5\x96\xc9\x28\x8e\xd7\xfe\xde\xde\x02\x2d\x04\xb6\xde\x5a\x42\x4a\xe4\x57\xf7\x99\x98\x31\x91\x8e\x2f\xbd\x08\x67\x2e\xe6\x52\x86\x45\xfd\x58\x55\x38\x13\x35\x25\xdb\xff\xd5\xde\x63\x3f\x90\xa3\xa9\xac\xac\x71\xc6\x93\x73\x68\xbc\xd9\xd5\x3a\x05\xa8\x09\x05\x0e\x0f\x18\xf6\x46\x29\x01\xc3\x23\x29\xb0\x70\x63\xaf\x58\x26\xd4\xaf\x06\xbc\x33\x0a\xb7\x5f\x05\xd3\x1f\x4e\xc3\x6c\xa2\x67\x03\x34\x4c\xe6\xd2\x30\x82\x88\x3d\x1e\xa2\x61\x56\x8d\xcc\x5a\x95\x55\x43\xb0\x57\x88\x11\x9f\x55\x33\x32\x17\x35\xaa\x45\xb2\xb4\x8c\x4e\x8d\x49\xd4\xd7\xa3\xc5\x46\x13\x6a\x85\x04\x78\x85\x72\xc8\xa8\xa8\xc1\x62\xd9\xe9\x74\xc0\xe1\xfa\xcf\xaa\x24\x4c\x29\x8c\x32\x22\xac\x40\xeb\x9e\x82\x4c\xe5\x71\x30\x76\xba\xa9\x44\x1a\xd9\x90\x0d\xd3\xd1\x88\x8a\x61\x3a\x32\x94\x84\x86\x42\xe3\x99\x5b\x24\xcb\xc6\x0d\xb4\x48\x96\x81\x9d\xe3\x61\x43\x67\x8f\x39\xb5\xbc\x41\xb7\x6c\x20\x67\x39\x78\xe1\x0d\x9e\x0d\x05\x0c\x3e\x1b\xa6\xa3\x75\x60\x37\xcd\x37\xd0\x42\x69\x26\x18\xcf\x92\xf9\xaf\x72\xde\x2e\x76\xd3\x1f\xae\x3d\xb6\xa4\xf6\xfa\xf6\xa9\x14\x45\x61\x7d\x3f\x1d\x54\xdb\x5d\x3d\x81\xe4\x8d\x3b\xc0\xe6\x96\x26\xbc\x15\xa3\x1d\xa6\x85\xd4\xe0\xf2\x2d\xf9\xee\xef\x19\x97\xa6\x64\xc2\x6b\x12\x58\xc2\x1f\x4c\xd6\x54\x10\x9e\xba\xb5\x33\x77\x3f\xa7\x34\x73\x8f\xb1\x0e\x41\xe9\xbe\xac\x44\xa3\xcc\x29\xf8\x54\x44\x87\xff\x99\xaa\xa4\x83\xe6\x71\xaf\x2f\x5f\x14\xce\x8b\x03\x22\x62\x37\x8a\x16\xa5\xb4\x50\x79\x3d\x86\x05\x49\x48\x3e\xda\x4c\xe5\x8c\x91\xca\x71\x88\x1b\x38\xee\x45\xb3\xac\x50\x95\x69\x3a\xe8\xfe\x0a\x7c\xfb\x65\x51\x5e\xc9\xf2\x7d\x71\xf8\x9f\xc1\x1b\x63\xbc\x59\xe7\xa8\xf6\x2a\x73\x27\x5d\xda\xad\x1a\x27\x36\xe9\xc3\xbe\x7e\x47\x35\xb2\x8f\xe5\xe2\x2e\xee\xc7\x5c\xf8\x43\x67\xc0\xc3\xc3\xff\x14\x7b\x07\x23\x52\x7e\xd5\xaf\xbc\x1a\x8d\x90\x13\x9c\x2a\x07\x8d\x95\x68\x66\xb5\xfd\xc3\x46\x66\xaa\x56\xd2\x5c\x2b\x26\x13\x55\x2e\xad\x94\x9b\x09\x32\x15\xa4\x07\x51\x9f\xb1\xc2\xcf\x57\x74\xa2\xf4\x45\xcb\xa6\xfb\xbd\x64\x20\x85\x11\x63\xd1\x1a\xd5\x8f\x56\xa6\x0c\xa6\x91\xf1\x99\xa8\x18\x11\x90\x86\xa3\xc6\x92\xba\x68\xf8\x16\x30\x41\xaa\x16\x1a\x27\xe3\x19\xfb\x99\xe7\xab\x65\x51\xfd\x38\x4f\x0b\x95\x96\xa7\xae\xf7\x9e\x83\xb1\x8a\xbe\xf3\x20\xdc\x2f\xc2\xfd\x72\xe7\x7e\x51\x91\x9a\x67\x4e\xf0\x5a\xf9\xa6\x62\x19\xee\x16\x28\x19\x89\x87\xe0\x66\x81\xe2\xbb\x95\x55\xe0\x89\xe6\x5c\xda\xb6\x9c\xdf\x2a\x18\xe8\x38\x3a\xca\x79\x54\xbe\xf9\x9d\x45\x7f\x40\xb9\x8f\xb6\x83\x80\x81\x32\xa3\xb1\xfd\x32\x61\x37\xab\x5b\x65\xfa\x34\x08\x30\x05\x49\xd7\x29\x10\xe5\x6e\xe0\x54\xf8\x00\x26\x1d\x03\xff\xea\xc4\x3a\x68\xed\x61\xaa\x10\x11\xaf\xd7\xca\x7a\x20\x0f\x1d\xe9\xbc\x3b\x65\x62\x5c\xeb\x5a\x64\x5c\x3e\x87\x69\xf7\x1d\xbb\x4d\x0b\xc1\xf8\x90\x8d\x46\x60\x99\x31\xcf\x93\x49\xa5\x62\xa9\x60\x29\x84\x73\x04\x15\xa1\xcb\x5f\x7d\x7a\xce\x97\x60\x95\x5a\xd1\xbd\x95\xeb\x68\xec\x56\xe9\x54\x56\xa8\x0f\xb8\xad\x4c\x7a\x9c\x00\xbf\x50\xbc\x2e\x62\x36\x96\x36\xe1\x7e\x65\xe1\xb0\xc9\x05\xfa\x08\x6a\x53\xfc\xbc\x26\xce\x34\x7a\xc4\x42\x5c\x5f\x28\xa6\x26\x7e\x5d\xdb\xa2\xfe\xee\x15\xaf\xf5\xc6\x03\x8e\x0f\x1c\xd7\x52\x65\xe9\xe2\x7a\x29\x67\xc6\xac\xec\x8b\xd2\xae\x0a\x15\xde\x1a\x8e\x41\x91\xfe\xce\x72\xc9\x29\x13\xa5\x99\x66\xd1\x17\xdc\xb2\x03\x41\x58\x76\x37\xc8\xd6\xe4\x52\xe5\x5b\x8b\x52\xb2\x8a\xc1\x22\xda\x1a\x86\x2d\xc7\x74\xee\x07\xcb\x96\x2d\x7d\x8d\x69\xe4\x5c\x8e\xba\x44\x18\x0a\xcf\x92\x9f\x7e\x09\xeb\xc9\xa6\x6b\x52\xd4\x7d\x00\xe3\xac\xc0\xa7\x64\xbd\x26\xc5\xc6\x89\x4e\x49\x2f\x26\x09\x49\xcd\x44\x83\xc8\xb2\x6e\x46\x10\xce\xbb\x14\x42\x3c\x8f\x49\x11\x0a\x60\x8b\x9a\x38\x4f\x40\xcc\x21\xdf\x0d\x24\xa8\xf2\x50\x12\xa4\x91\xcc\x83\x9e\x44\xa8\x6d\x73\x4b\x0f\x2a\x28\x2d\x8a\x49\x61\xbf\x14\xfa\x95\x9c\xca\xc0\x39\xb2\x5a\x7d\xcb\xe2\xb5\xec\x0e\x72\x6b\xbc\x30\xb7\x40\x65\x0b\x3a\x17\x84\xe3\x2d\xae\xc1\x15\xc5\x18\xde\x40\x0d\x1d\xb2\x3b\x84\x1b\x53\x94\x15\xa4\x74\x8e\xda\xe7\x97\x2f\xdb\xb1\x66\xec\x6c\x5b\xc6\x7a\xdc\xed\x13\x22\xde\xe6\x34\x3d\x75\x2c\x94\xd2\x78\xa0\xe3\x32\x80\xe9\x81\x1a\x03\x29\x68\xc0\x98\x4f\x2f\x60\x21\xe0\x45\x24\x37\x78\x4c\x94\x59\xdc\x9b\xa8\x20\x2c\x6e\x95\x42\x4e\xad\x48\x1e\x13\x81\x71\x51\xa0\xfe\xbb\x68\x15\x3b\xaf\xd4\x99\x65\x99\x08\xc6\x99\x2d\xef\x18\x13\x81\xdd\x00\x5e\xcf\x13\x2f\xaf\x22\x8a\x03\x51\x76\x61\xd6\xb2\xad\x7f\x60\x0c\x2b\xbd\xe1\x94\xb5\x8c\x7a\xb7\x1c\xc7\x04\xe5\x59\xc6\x26\xce\x0d\x47\x76\x9e\xc1\xdd\x01\xe3\x45\xf3\xe6\x80\x37\x94\x47\xb6\x66\xe6\xd2\xcc\x74\x3c\x99\x96\x1b\x8a\x0a\x67\x71\x10\x9b\x40\x54\xcd\xb3\x70\xad\x04\x36\x4d\x25\xf5\xa7\x92\x93\xca\xe9\x33\x80\xbf\x10\x6c\x11\x62\x35\x0d\xcd\x12\xc5\xdd\x45\xb2\x84\xa0\x5d\xc4\x07\x87\xd3\x4a\x25\xfe\xf0\x76\x4b\xd8\xab\x5b\x42\x13\xd4\x58\xc2\x2f\xf7\x6e\x4a\xc6\xe4\x90\xac\x9d\xa8\xc9\x4c\x10\x4c\x2b\xa0\x6d\xe6\x4b\x90\x4a\xf4\xce\x65\x22\x2a\x02\x2b\x4f\x72\x5c\x7b\x9f\x74\x53\x0b\xb9\x8a\x4b\x80\x58\x01\x20\xf4\x63\xf5\xaa\xf2\x9d\x1b\xea\x88\x4a\x2d\x73\xb5\x76\xed\x12\xba\x9f\xd3\xaa\xff\xa2\x0b\xac\x52\x20\xd4\x60\xbb\x36\xd8\x75\x05\xdf\xd4\x18\x71\x9b\xbe\xfd\x85\x35\xf6\x8a\xa9\xf1\x6a\x2f\x03\x48\x13\x32\x76\xce\x35\xf0\x50\xa3\xf0\x30\x81\x69\xab\x4e\x1d\x57\xea\xcc\x84\xeb\xce\xad\x05\x63\x4d\xcd\x10\x5c\x9c\xea\x1a\xa2\x75\xd5\x5d\xf2\x58\x96\x2f\x9a\xf2\x31\x3a\x74\xb3\xd3\x85\x7b\xc5\xd4\xd5\xac\x52\xd6\x4e\x03\x72\x7b\xc0\x02\x55\x9a\x08\x53\xeb\xce\xed\xa5\xf6\x14\xde\x2e\xf2\xeb\xcb\x9a\xc1\xb8\x51\xd6\xbc\x2b\x51\xb7\xd0\x6a\x1e\xae\x13\x67\x5b\x75\xf4\x2e\xcf\x45\x39\xdb\xa5\x55\x37\x5f\x62\xde\x57\x37\x6a\x44\xa7\xc3\xcb\x99\x32\xbd\xb9\xc4\x61\xe6\x84\x43\xe8\x7b\xd5\x69\x4d\x7a\xcd\x72\x15\xa6\x89\xdb\xcd\x00\xd5\xbb\x7a\x99\x2f\xeb\x40\x57\x07\x11\x5d\x75\x53\xa0\x32\xe7\x50\x57\x62\x01\xe3\x50\x37\xa4\x8c\xd5\x8b\x8d\xc5\x22\xa4\x88\x51\x86\xfa\x2a\xe7\x1b\xd2\xc8\xba\xf5\xa1\xa4\xbe\xa0\xeb\xdd\x7f\xad\xbb\x6f\x4d\x46\x18\x22\x3a\x1d\x25\x59\x8a\x4f\x76\x23\x6e\x9d\xd5\xa2\x38\x06\xe7\x92\x93\xf8\xc4\xd8\x6a\x82\x90\x42\xc1\xea\x73\xd5\x14\x5b\xd3\x39\x2c\xbb\x23\x7e\xaa\x16\x7d\xad\x04\x0e\x79\xe9\x7e\xb9\x42\x8d\x9a\xc3\x15\x94\xdd\x8f\x1d\x31\xda\x2e\xa5\xb9\x91\x50\xca\xb2\x5e\x2e\x97\x48\x49\x37\x63\xc2\xe8\x17\x39\x93\xc1\x6e\x9f\xc0\x0c\x20\x9e\xf6\x5a\xcb\x25\x3d\x67\x73\x5b\xb6\xa7\xcb\xca\x2b\x52\x28\x02\x17\x31\x75\xea\x60\xf5\x78\x8d\x87\x49\x1e\x89\xf0\xd6\xf3\x42\x6e\x84\xa8\x59\x4e\x6d\x28\x8d\x13\xfe\x9c\xf6\x4e\xf8\xfe\xbe\x47\xb1\x18\x61\x00\xac\x3d\x26\xaa\x86\xc0\x1c\x10\x75\x20\xca\x48\x99\x57\x8d\x9b\x6d\x6e\xa0\xe4\x16\x21\x4c\x0a\x85\x50\x3d\xfe\xc4\x67\xf0\x50\xaa\x6c\xd4\x53\xde\xed\xde\x6e\xaa\xe9\x67\xea\x61\xeb\xcd\xa3\xf1\x6a\x98\x1e\x97\xe3\x2d\x26\xb2\x1c\x37\xce\x62\x39\x76\xa6\xc0\x93\x2d\x1a\xe4\x49\x63\x83\x3c\x71\x1a\x9c\x56\x35\x2d\xd5\xf0\x05\xd3\x65\x4d\x83\x26\x7d\x95\x6d\xb0\xd8\xa6\xc1\xa2\xb9\xc1\xc2\x6d\x10\x0f\x6a\x63\xab\xda\x69\x19\xcb\x9a\xba\x2c\xbb\xdb\xaa\x1e\xcb\xee\x5c\xa7\xf8\xd7\xf9\xa7\xd7\xec\x8e\xcd\x7f\x7d\x43\x97\x4a\xb8\xb8\xa8\x15\x2e\xe2\xc0\xef\x16\xe1\x5c\x37\x65\x74\xe4\xf6\x7e\xb7\x40\x74\xe6\x44\x80\xb8\xdb\x2c\x73\x56\x04\x84\xa3\x2c\x79\xc7\xa6\x54\xb8\x69\xa8\xee\x12\x7e\xbd\xb5\x07\x9a\x92\x0f\x56\xbd\xcf\x04\x58\x2d\xf0\x51\xa3\x93\x4c\xa3\x05\xd4\x2d\x13\xbf\x26\x3c\x8a\xad\x19\x51\x55\x6c\x1d\x2c\xef\x25\x25\xff\x35\x64\xb4\x8c\x88\xc6\x05\x81\xee\xc5\x30\xb5\x00\xa7\x72\xda\x72\x0b\x1e\xdf\x05\x0d\x66\x0b\x51\xaf\x71\x0f\xbc\x3c\x7f\x75\xf6\xfe\xf5\xf5\x87\x17\x67\xbf\x9c\xfd\x74\xf1\xfa\xe2\xfa\xe2\xfc\x8a\x6a\xf6\xff\x75\x72\x9f\xaf\x84\xc4\xc4\xf8\xe2\x3a\xb9\x95\x4f\x4b\xce\x96\x09\x67\x67\xfc\xb6\x90\x8f\x0a\xe2\xfa\xc9\x44\x0a\xfe\x53\x9e\x7f\x94\x18\x1f\x2f\x16\xfd\xe8\x89\x16\x4c\x6d\x45\xcb\xc8\xef\x6a\xa4\xaa\xb4\xfe\x0a\x49\x2b\xb3\xb1\x2c\xbf\x6e\xb1\xee\x9b\x8b\xcb\x8b\x37\x67\xaf\x9b\x07\xdd\xf7\x06\xdd\xf7\x07\xdd\xf7\x06\xdd\xff\xca\x41\xf7\x1b\x07\xdd\xaf\x0c\xba\xaf\x4c\xf1\xee\x05\x6d\xff\xc7\xde\xcd\xa0\xf7\x1f\xed\x96\xd9\xf2\xb7\xc2\x33\xe8\xc8\xf2\x09\x53\x82\x4a\x4a\xef\xc5\x9a\x75\xaf\xce\xdf\x5d\x9c\xbd\xbe\xf8\xc7\xd9\xf5\xc5\xdb\xcb\x0f\xaf\x2e\xde\x5d\x5d\x7f\xb8\x7c\xfb\xf2\xfc\xc3\xd5\xf5\xbb\x8b\xcb\x9f\xe9\xbd\x3a\x12\x37\x35\xde\xa2\x3c\x72\x9d\x74\x75\x80\x82\xb4\x1c\xa0\xc0\x0f\x67\x91\x66\xb7\x70\xb9\xbe\x64\x4b\xb0\x62\x49\xbb\xe3\x24\x9b\xa8\x30\x28\x20\x52\x4f\xbb\x69\xf6\xdb\xff\x9f\xbb\x7f\x6d\x6f\x1b\xb9\x16\x44\xe1\xef\xfc\x15\x24\x27\x41\xa3\x86\x25\x9a\x94\x9d\xec\x84\x72\x35\x47\xb6\xe5\x6e\x4f\xe4\x4b\x2c\x39\x3d\x3d\x68\x6e\x05\x22\x8b\x62\xb5\x41\x80\x5d\x28\x48\x56\x8b\x7c\x7f\xfb\xfb\xd4\xaa\x3b\x00\x52\xee\x4e\xf6\x3e\xe7\x39\x5f\x48\xa0\x50\xf7\xcb\xaa\x75\x5f\x74\x2e\xe8\xe2\xfd\x9a\x09\x41\x95\x8f\xc8\xde\x18\xb3\xa1\x0d\xea\xa2\x0b\x1f\x8d\x31\xfb\x8a\xc8\x90\x7f\x40\xf8\xea\xeb\x86\xc0\x96\x71\xb3\xff\x38\xb7\x23\xa8\xf2\x75\x2a\xe6\x2b\xba\xb0\x1e\xaf\x4b\xd3\xe9\x6b\xd7\xaf\x11\xce\x9b\xce\xec\x3e\xd2\xd5\xfd\x42\x45\x52\xe9\xde\x31\xb1\xea\x7a\xe6\x7b\x5d\xf0\x74\x57\x6d\x36\x05\x17\x74\xd1\x47\x9e\x76\x2e\x33\xd7\xe2\x4b\x70\x31\x6d\x30\x29\x2f\x32\xc0\x49\x4f\x7b\x20\x24\xc5\x76\x7b\x27\xe2\x02\x45\xd1\x8d\xfc\x43\x27\xa8\x20\x85\xef\x87\xda\xc9\xb8\xdd\x9c\x17\x98\xfd\x3e\x47\x20\x7b\x63\x7c\xf8\x4a\xca\x76\x52\xb0\x8a\x3f\x72\xad\x02\x9a\x78\x1e\x23\x47\x13\xee\x38\x66\xfe\x50\x3b\x2c\x8a\xbc\x8e\x46\x51\x9c\x7b\xdd\xf6\x63\x23\x04\x7b\x88\x86\xa1\x0c\x4c\xbd\xb5\x80\x23\x3a\x6a\x0c\x4d\xf9\x5b\x56\xc2\x9a\xb6\xe9\x8d\xd9\x28\x3a\x61\xbf\x94\xcb\xc7\x1e\x21\x36\xa8\x17\xaf\x6d\x4d\xc8\xf3\x2d\xe1\x2d\x5b\x1e\xbc\xe7\x9e\x88\x28\x8a\x7b\x77\x22\x16\x68\xbb\x3d\x93\x7f\x3d\x42\x72\x74\x82\xac\x96\x08\x98\x88\x0b\xe5\x73\xb0\x0b\x45\x8c\xdd\x4e\x4b\x26\xee\x8f\x99\x08\x30\xaa\xf1\xcf\xd4\xee\x40\x4c\xa4\xa6\x9d\x65\x63\x98\x35\x81\xb1\x1b\x65\xed\x7d\x30\x50\x37\x28\xce\xe1\x08\xe9\x1e\x78\x15\xe5\xe8\x4e\xc4\x39\x8a\xa2\x38\xe6\x24\x77\xf0\x68\x08\x2b\x10\x3f\xf9\xcf\x3f\xfe\x34\xb8\x9e\xc4\x3f\x2d\x06\xe8\x8f\x7f\x78\x82\x50\x14\xf1\x64\x3c\x9b\xbe\x03\x87\x94\xb1\x7c\x46\x2a\x1a\x2e\x48\x61\x63\xaf\x91\x60\x46\x72\x84\x69\x1d\x56\x18\x1f\xa4\xc1\x9a\xc7\xda\x21\xe3\xbe\x98\x50\xbf\x65\x6e\xea\x2d\xd6\x27\xe7\xe8\xa8\x63\xec\xe4\xdc\xd4\x78\x31\xb7\xee\x04\x28\x14\x9e\xc9\xbf\xc3\xc3\xe3\xcd\xe1\x1d\x1d\xb5\x0e\x8f\xa3\x96\x99\x20\xf5\x65\x8c\xa2\xbd\x4d\xd5\x0e\x53\x4b\xb3\xbb\xfd\x71\x52\x42\x50\xe0\x06\x6d\x08\xce\xed\xd6\xc7\xf2\xfc\x3a\x6a\xa6\xd6\xfb\xe2\x8a\x84\x0d\x28\x67\x0e\x3a\x66\x05\x68\x79\x78\xc7\xd3\xb3\xef\x04\x7b\x36\x67\xb9\xa9\xd9\xd3\xb5\x70\x2a\x79\x18\xe8\x01\xbc\x9d\xb0\xa2\x2a\xed\x54\xa4\xb5\x1d\xd7\x09\xf5\xd6\x21\x95\x21\xac\x17\x38\x8d\xa2\xf7\x22\x4e\x91\x35\x57\x6e\x9d\xed\xd4\xe6\x0f\x33\x69\x83\xe4\x70\x6d\xc3\x2c\x08\xe1\xa2\x0d\x77\xf6\x27\xae\x31\xab\xaa\xd9\x56\x85\x59\x65\x4a\x2b\x67\x08\xe8\xd7\x96\x3b\x44\x04\x36\xf3\x70\xd1\xe2\x3c\x58\x84\x7d\x27\xc9\x07\x0c\x34\x8a\x2e\x20\x38\x87\x47\x44\x03\xd8\xf5\x9b\x3c\xe1\x51\xd4\xbb\x90\x07\xe3\x04\x71\xc2\xdb\x7a\xd3\x1a\x11\xc7\x69\xa4\x00\x10\xdc\x1b\x52\x68\xdf\x46\x55\x5b\x88\x2d\xe3\xa7\xa0\xaf\x2b\xc1\xd5\xe5\xfd\xc6\x9a\x0c\x70\x07\xc0\xe4\x92\xa9\xb8\x79\x16\xc5\x32\xe2\x7a\xb7\xd4\x41\xc7\x31\x00\x11\x79\xf0\x5b\x50\xf9\xbf\x10\x42\xa8\x6d\x2f\x8a\xfa\x7f\xdc\xfe\xb1\x6f\xd3\xa0\xfe\x5d\x2c\xf1\xaa\xf7\x72\x52\xac\xf2\xd2\xc1\xf6\x6a\x10\x04\x5e\x83\x80\x2b\x02\xce\x8c\xaa\xd1\xe7\x4e\xd8\x32\x9d\x5a\xfd\xb9\x2f\x50\x71\x01\xec\x6c\x88\x25\xf1\x5b\xc2\x10\xe9\xf0\x28\xc1\x48\x6a\xb0\x0c\xb7\x6d\x6c\xd9\x5a\xb8\xb1\x0f\x9c\x82\x66\xe6\x43\x21\x61\x1e\x83\x5f\x51\x04\x30\x7b\x1a\xff\x8b\x1b\x01\x4d\x62\xde\x7a\xc4\xf7\x0c\x59\x77\x34\x18\x08\x3a\x10\x6a\xf0\xd0\xf6\x8e\xa2\x2f\xea\xde\x09\x51\x38\x79\x32\x95\x0e\xd4\x26\x9d\xd3\x4f\x1f\xdf\xc8\x03\x60\x37\x3e\x95\x84\x1e\x68\x83\x13\x62\xc3\x47\x06\x89\x43\x51\x7c\xda\x6c\x28\x7f\x99\x96\x92\x68\x05\x87\x90\xc1\x2e\x6d\x43\xa4\x93\x99\x52\x2a\x53\x03\xf3\x22\xeb\x97\x48\x9f\x16\xe8\x98\xee\x70\xff\xf2\xc5\xfb\x57\x3f\xf6\xe1\x64\xea\x96\x83\x16\xf6\x06\x23\x0c\xf1\xe9\x56\x5a\xc3\x18\xb4\x04\xb1\x1e\x8d\x3c\xb2\xbe\x46\xed\x1b\xce\x2b\xd9\xb2\xe3\xda\x03\x00\x35\x5d\x1e\xb5\x4c\x93\x9c\x08\xab\x88\xf5\x59\xc4\x20\x28\x65\xcb\xb8\x40\x56\x71\xe6\x56\xef\x44\x09\x5d\xf4\x1b\xe1\x48\x21\xdd\x6c\x58\x6e\x40\x80\xcc\xac\x76\x5b\x81\xf0\x78\xcf\x28\xfc\x7e\x36\x88\xa2\x03\xa1\x87\xbc\x78\xb7\x87\xc6\x61\x07\xfb\x19\x98\x9c\x48\x8d\xcd\x12\x29\xfe\x38\x58\x6d\x1c\xb9\x19\x87\xd3\xe2\x64\x07\xc7\x61\x3a\x59\xa3\x4d\x0f\x45\xa2\xfc\xfa\x51\x84\x6a\xd0\xb9\xaf\x06\xed\x38\xbc\x3a\xf2\x91\x06\xa8\x2e\xa2\x52\x9e\xb0\x19\x1c\x36\xbd\xc1\xf6\x11\x99\x3b\xa0\x05\xc2\x81\xf9\x1d\x6f\x19\xd9\xa1\x38\x7e\x1e\x4a\x6f\x61\x42\x3b\xc1\x63\x90\x92\x76\x3c\x04\x61\x1e\x45\xad\x07\x49\xe7\x0f\x02\x6c\xfa\xdd\xaf\xf7\xce\xf3\x80\xa9\x15\xf6\xdf\x2a\xc7\x70\x6d\xf4\x25\x1d\xfe\x52\x51\x7e\x7f\x41\x33\x3a\x17\x05\x8f\xbf\x29\xe7\x9c\x6d\x44\x72\x93\xad\x39\xe9\x7f\x33\x10\x83\x6f\xfa\xb3\x6f\x34\x1e\x68\x40\x76\xa7\x41\x96\xbf\x4c\x73\x49\x7c\x2f\x59\xbe\xe8\x96\x94\x2b\x41\xec\xa2\xab\x28\x46\x49\x78\x75\xff\xc9\xf2\x23\x7d\x4b\xfd\xb3\xff\x55\x81\x38\xff\x0d\xf1\x40\x8d\x4c\xc5\xce\x01\xd4\x0b\xbb\xcd\xc3\xcd\x88\xa5\x3f\xda\x08\x68\x0c\xdc\x03\x0b\xee\x1b\x50\x91\x62\x49\x79\x07\xac\x80\x03\xc8\xa9\x76\x67\x91\x3e\x1a\x46\x34\x85\x30\xa2\x07\x83\x62\x9a\x1b\xc6\x0b\x8d\x13\x66\x0d\x40\x66\xad\x57\xf6\x36\xf3\x90\xf8\x3a\x6a\x02\x3b\xd2\x0f\xc0\x65\x6e\x86\x36\xb1\x09\x37\x62\x93\x60\xf6\x7e\x6b\xbc\x2f\x27\x22\x31\xbd\x78\xac\x06\xd7\xd6\xb4\xe5\x62\xb2\xd5\x28\x79\x56\x3b\xaf\x7f\x4f\x11\xa2\x34\xb0\xf9\x2e\xfe\x44\x91\x63\x07\xde\x89\xbd\x38\xe6\xce\x66\x3a\x13\x3e\x1d\xd0\x46\xa2\x1f\x79\x24\xba\x27\x37\x16\x1e\xa9\x2e\x2c\xa9\xee\x2a\xfe\xe2\xb7\x3e\xde\xd3\xfa\xc5\xfe\x2e\x4a\x34\x58\x1e\xee\x06\x26\x6c\x0b\xbf\x3f\x5c\xb8\xbb\xbf\xe4\x67\x51\x8f\x31\xd2\xf0\x99\xaf\x2f\x02\x9a\xf0\x99\x3a\x86\xb9\xc6\x75\xac\xe9\xc0\x6e\x47\x87\x86\xcb\x47\x4d\x70\xb7\x2b\xb1\x43\x98\xc6\xfd\xff\x75\x93\xb1\xf5\x9a\xf2\x27\x95\x60\x59\x1f\x27\x7d\xfa\x65\x53\x70\x51\xf6\x71\x9f\xca\x29\x3b\xba\x4e\xaf\x69\xd6\x9f\xe1\x10\x90\xf4\xab\x92\x76\x4b\xc1\xd9\x5c\xf4\x3b\x74\x98\x96\x0d\xc7\x95\x70\x94\x7a\xcd\xe8\x19\x62\xbb\xed\xab\xec\x72\x80\xcb\x94\x65\x15\xa7\x10\x15\x4b\xd6\xc2\x6e\xf2\x3d\x22\xcc\xf1\x89\x78\x5e\x07\x5c\x10\xc0\x4d\x4f\x80\x03\x55\x62\xe6\xb3\x76\xa2\xc8\x84\xdc\x70\x3e\x17\x91\xbb\x17\x79\x9c\x4b\x52\x7b\x74\x52\x3c\x67\xa6\xd6\xc2\xd4\x9a\x12\x96\x14\xb3\x0e\x4d\xd2\x19\xc9\x93\xd4\xb7\x16\xc2\x74\xb8\x64\x59\xf6\xae\xca\xb2\x72\x4f\x8f\xe5\x98\x95\x21\x02\x44\xb6\x84\x95\x53\x61\x0e\x12\x3e\x53\xce\x39\xdd\xf1\xa7\x43\x9a\x97\x15\xa7\xdf\x55\x6c\x41\x0a\xa7\x8a\xca\x7e\x55\x49\x0c\x53\x30\x6e\x22\x29\xa6\xc3\x2a\xbf\xe3\xe9\x26\x68\xd6\x8b\xf7\xd2\xb8\x4b\xce\x20\xd6\x3e\x5d\x74\x01\x55\xe9\x8a\xa2\x7b\x4d\xbb\x1b\x4e\x4b\x9a\x0b\x2f\x88\x09\x74\x02\xb2\x36\x17\x72\x5f\xdd\x22\x2c\xee\x45\xc4\x68\x52\xd9\xbf\xd3\xff\x57\xdf\xab\xb4\xef\xd3\xd5\xaa\x07\xe0\x3b\xd2\x37\x32\x20\xd4\xa9\x23\xea\x67\xb8\x93\xa8\xa7\x71\x46\x4c\x89\x8b\xf3\x37\x2f\xcf\x08\x1d\xbe\x62\x73\x71\x41\x65\xba\xd2\x75\x57\xfd\xd2\x9c\x31\x6d\x60\xfb\x99\xde\x97\x9a\xf3\x3c\x72\xc0\x8b\x05\xa2\x8c\xab\x1b\xb9\x58\x83\x41\xee\xce\x70\xd1\xcc\xb0\xdd\xca\x52\x2e\x4b\xea\x80\xb0\x6e\xcb\x08\xf4\xc0\x30\x49\x99\xe8\x1e\xb4\x49\x53\x5b\xe3\xb0\xd7\xbb\x74\xb1\x68\x33\x93\xad\x7b\x24\xa5\x53\x5b\x63\x42\x67\xc4\xa8\xc2\xca\x57\x39\x94\x99\x16\x4f\xee\x71\x3e\xda\x52\x9d\xf1\x26\xea\xd5\x3a\xd1\x13\x11\x45\xcd\x8f\xea\xcb\xcc\x49\xeb\xf4\xd2\x94\xda\xbb\xd5\xc1\x79\x50\x7a\x01\x26\x7a\x9f\xf1\xbe\x67\xcd\x36\xf7\x78\x03\x6b\x8f\x15\x62\xfd\x01\x06\x6a\x0e\x46\x45\x88\xb7\xc7\xc4\xa8\x6b\x44\x84\xb1\x2e\xb4\xbd\x77\xcb\x85\xab\x7c\x43\x29\x0b\x1e\x57\x20\x11\x47\xe3\x99\x93\x4a\x50\xf5\x9d\xca\xd6\xb5\xf3\xfc\x16\x01\xad\xf5\x32\xe5\xb7\x79\x58\x2f\x03\x94\x26\x1e\x15\xed\xd7\x7c\x24\x75\xcc\x61\xa9\x3a\xde\x31\x6b\x4c\xa3\xf3\xfe\xae\xf0\x32\xeb\x00\x5e\x0b\x6c\x25\xf5\x44\x77\xda\x27\xd9\xc1\xc5\xd5\x7e\xab\x0f\x9a\x5b\x51\xdf\xc2\xa2\x16\xc6\x57\x7e\x84\xb8\x0e\x29\xcb\xf6\x66\x92\x1f\x55\x98\xb8\x9a\x4b\x2d\x57\x07\x71\x39\xd5\xd6\x6a\x8f\x15\xa1\x36\x44\x32\x0b\x63\x0b\xb6\x05\xde\x13\x1e\x80\xd0\xea\xc1\x3b\xed\x24\xd2\x28\x65\xb7\x9b\xc2\xcb\xaf\xe0\x4e\xd0\xd5\x7a\x48\x03\x08\x7a\xef\x09\x6c\x54\x34\x68\xcd\xd4\xdc\xe1\x50\x51\xbb\x85\xff\xfa\x3b\xe3\x98\xf8\x57\x9d\x89\x91\xa9\x80\x8c\xd5\xf3\x9c\xc4\x02\x76\xc6\x54\xfd\xa9\x4d\xa3\x41\x8f\x9a\x73\x0a\x24\x1a\xbd\x25\x2a\x07\xd6\xfa\x17\x02\xab\x77\xf9\x1d\xd4\x0a\x54\x95\xfb\xec\xe7\x60\xd1\xec\x82\x4c\x63\xa1\x5b\xb2\x95\x9b\x7a\x95\x37\x8c\xa0\x7d\x6f\xd5\xa9\x72\x1a\xdd\x60\x53\x7b\x44\x3e\xbd\x9d\x52\x7f\x2c\xf0\x17\x54\xa8\xbc\xb3\xab\xbf\xa9\xfa\xd3\x43\x81\xbf\x89\xdf\x9e\x1e\xb3\x05\x8a\xde\x55\x96\x69\xdf\xc4\x8f\xe9\x96\xb4\x0c\xe3\x60\x10\xc9\x7f\x71\x4f\x99\xa3\xaf\x59\xae\xe0\x88\xf2\xdf\x76\x38\xff\x1f\x39\x6d\x06\xac\x42\x2f\x34\x24\xd6\x27\xc7\xae\x8a\xc1\x3b\xe6\xb0\x28\xca\x4b\xfe\x3c\x56\x94\xb3\xdc\x51\x9d\x10\xf1\x58\x42\xb6\x95\xc1\x30\x96\x9c\xd2\x5f\x69\x9c\xcc\x7c\x33\x48\x89\xd2\xac\x6a\xc8\xfa\xed\xda\x47\xd5\x67\x41\xf0\xbc\x00\x35\x87\x85\x02\x2f\x9c\xca\xd8\x4b\x23\x36\xd8\x4b\x11\x41\x69\x9a\xd0\xe1\x66\x4e\x46\x33\x02\x1a\x6e\xf2\x95\xa7\x64\x3c\x23\xa0\x9f\x26\x5f\x97\x1b\x72\x3c\x23\xa0\x5d\x26\x5f\xcb\x0d\x79\x3a\x23\xa0\x1b\x06\xaf\x23\xf2\x4c\xbe\x8e\xf4\xeb\x98\xfc\x49\xbe\x8e\xd5\xab\x18\x91\x3f\xcf\x48\x5f\xe8\xaf\x62\x4c\xfe\x43\xbe\xea\xaf\xb7\x23\xf2\x97\x19\xe9\xdf\x8e\xfa\x3b\x49\x26\xc4\x7e\x27\xc9\xc3\x4e\x69\x3d\x7a\xb3\x70\xc7\x38\x3d\x5a\x16\x7c\x9d\x8a\xdf\x34\x1d\x9e\x96\x85\x5b\xde\x96\xed\x01\x7b\x6c\xc8\x4a\x6d\x4d\x8c\x24\x2d\x39\x9a\xc9\x7b\x58\x92\x54\xac\x24\x5c\xe2\xe9\x65\x5b\x94\x71\xb7\x6b\x54\x09\x31\x74\x31\xcd\xb7\x5b\x9b\xe8\xc5\x29\xf7\x52\x5f\x16\xeb\x4d\x91\xd3\x5c\xd4\xd2\x2f\x79\x05\x21\x66\xf7\x24\xef\x2b\x26\x5f\x2f\x36\x59\x2a\xbc\xb4\xb7\xc5\x82\x2d\x19\xe5\x3b\x35\x02\x0d\xad\xbf\x66\x00\xfc\xa6\xa5\xff\xfc\x46\x55\xf4\x36\xbd\xbf\xa6\xe7\xc5\x3c\x95\x20\x8b\x95\xdf\x01\x46\xcd\xca\xd7\x3e\x1b\x93\x0e\xdf\x6f\x4a\xb7\x0f\xe5\x4b\x73\x0b\x82\x20\x4c\x6e\x42\xf9\xa0\x76\x87\xe2\xc3\xc0\x56\x54\x8f\x2a\xd9\x88\x47\xe4\x9e\xd4\xcf\xea\x83\x19\x22\x6c\x4f\xf3\xa2\x3e\x29\x81\xba\xdc\xa7\x2f\x94\x5f\x78\x5d\x91\x9a\x3e\xd8\xb1\xf6\x4d\x7d\xd4\x03\x75\x79\xe4\x36\xae\x27\xaa\xac\xef\x3d\x59\x87\xdc\xdd\xde\xbb\xca\x10\xcc\x86\xdc\xf0\x7e\x82\xee\x8b\xcf\x1b\xfd\xab\xec\x8e\x97\xa0\xb2\xb8\xfd\x44\xc6\x72\xa2\xdc\x7b\xd0\x63\x95\x61\xec\x7a\xeb\x72\x04\xfb\x85\x8c\x8f\xfd\x51\xbb\x5c\x76\xf7\x90\xb1\x9c\x48\xfb\xaa\xbe\xfe\xc8\x68\xb6\x20\x63\x39\x95\xf0\xa8\x52\x3f\xa4\x1c\xcc\x28\xc7\x72\x26\xf5\x4b\xd8\x2b\x7e\x43\xc6\xde\x14\x9e\xf2\x9b\x60\x54\xf2\xf3\x7f\xb8\x41\x99\xaf\xfe\x01\x20\x63\x39\x75\x7e\x4a\x98\xa7\x36\xba\xbf\x7a\x99\x5b\x46\xf9\x8a\x5e\x57\x37\x37\x94\x93\x63\x39\x97\xe6\xcd\x2c\x06\xa3\xb9\xb8\x60\xa0\x3b\xae\x1d\x82\x1f\x8f\x61\x51\x1a\x1f\x54\x89\x4f\xf9\xe7\xbc\xb8\xcb\xc9\xb1\x9c\x53\xfd\xa2\xbe\xc8\x13\x71\x2c\xe7\xf1\x3b\x6a\xb6\xa9\x3b\x32\xc7\x72\x1a\xdd\xbb\xfa\xfe\x7d\x5a\xaa\xed\x7a\x2c\x27\xd3\xbc\x85\xdf\x3e\xa4\x3c\x5d\x97\xe4\xf8\xcf\x5e\x0e\x95\x66\xfa\xa3\x83\x8b\x92\xe3\xff\x80\x1e\x99\x58\xa3\xaa\x16\x9a\x6d\xe4\xc8\xe5\x7c\xaa\x67\xb3\x3f\xf2\x79\x2a\xc8\x31\xec\x3f\x78\xee\x77\xc2\xf9\x38\xfb\xb2\xe1\xb4\x2c\x59\x91\x93\xa7\xa3\x60\x42\xdc\x17\x0b\xcb\xe1\xa0\x03\x18\x37\xea\x5b\xb1\x08\xce\x82\xbc\xf4\x6a\xb0\xc2\x88\x72\x65\xd6\xef\xa8\xce\x21\xe7\x90\x19\x67\x18\xb1\xf0\x66\x50\x7d\xf7\x66\xb4\x50\x37\xc6\x75\x3a\xff\x7c\x5d\xf1\x5c\x8e\xec\x77\x72\xb8\xae\x2b\x96\x2d\x3e\x64\xa9\x90\xf7\x0d\x30\x68\x74\x3c\xd0\x90\x55\x50\x52\x71\xc9\xd6\xb4\xa8\x04\x0e\xec\x8d\x77\x35\x86\x01\x5b\xc6\x7d\x93\xe2\x68\xe5\x0f\xbc\x58\xb3\xd2\x62\xac\xfa\x75\xc8\x69\x59\x64\xb7\x9e\x4b\xe0\x16\xf4\x68\x28\x56\x34\x07\xab\xd3\xf6\xaa\xdf\x56\x02\x74\xfc\xde\x5f\x97\x94\xdf\x52\x2b\x40\x1a\x61\xa6\x6c\x35\x6b\xdf\x63\x8a\x70\x41\x16\xc5\xbc\x52\x12\x90\x50\x84\xde\x77\x6c\x23\x36\x2c\x54\x91\xb8\xc0\x0f\xf3\x55\xca\xd3\xb9\xa0\xfc\x55\x2a\xd2\x49\x6f\xb4\x43\xb8\xd9\xd7\x9c\x0c\x06\xf9\x1f\x8f\x71\x31\x5c\xa4\x22\x25\xfd\xfe\x20\xc7\xb9\x65\xad\x35\xf3\xf3\x98\xe2\x11\xda\xd5\x38\x2a\x9a\xc7\xa6\xbb\xf1\xe0\x26\xbe\x66\xe6\x6f\x6c\x90\xed\x77\xed\x1d\x15\xe8\xbb\x66\x11\x5b\xc0\xff\xae\x3c\x35\x15\x77\x2d\xe4\xf1\xab\x54\xd0\x61\x5e\xdc\x41\xf0\x2d\x89\xe1\xcb\xe5\x55\x95\xbf\x03\x84\x7f\xb7\x53\x9c\xc4\x27\x3f\x2d\x06\x4f\x70\x49\xfe\xec\x76\x42\xd5\x12\xb7\x59\x33\x65\x6c\x34\x6b\x22\xa2\x88\x12\x42\xb7\x5b\xc7\x59\x91\x69\xe9\x50\xd0\x52\x04\x5c\xa4\x2c\xa0\x40\x8a\x1c\xf8\x63\xdb\xad\x7d\xbc\x84\xf0\x13\x51\x54\x4b\x48\xec\xfb\x5b\x2a\x56\xc5\x62\xe6\x6a\x9c\x1b\x07\x5a\x06\xe7\xcf\xc9\xd1\x18\x33\x32\xf2\x1c\x6e\x9f\xb0\xe7\xc5\x09\x1b\x90\x67\x88\x2d\x63\x9e\x30\xc0\x8f\xa2\x88\x27\x6c\x30\x06\x24\x01\x3d\xe4\x84\x75\xae\x39\x4d\x3f\x3b\x17\x51\xb6\x89\xe5\x9e\x26\x8e\x5b\x9a\xf8\xf3\xc1\x26\x8e\x8e\xf7\x36\xb2\xaa\x73\xd1\x7f\xa7\x04\x6c\x84\x73\x92\xcc\x9a\x1e\xb1\x88\x30\x82\x6f\x9a\xb0\xc1\xd3\x01\x9f\xe1\x94\x98\x70\x1f\x32\x69\x24\x93\xd6\x30\xbd\xf0\x3e\x86\x2c\xfc\xa6\x84\xb7\x63\xf9\xa6\x2c\xc9\x6d\x27\x8a\x28\xd2\xe6\x32\x2c\xef\x16\xd3\x42\xb1\x60\x26\xfd\xfe\xce\x98\x10\xa7\xa8\x65\xa4\x8b\xda\x48\x71\xae\x97\xcb\xb8\xc0\x3a\x2a\x61\x36\x11\xfd\x96\x88\x84\x13\x36\x88\x73\x12\x17\x47\x0c\x3d\x29\xd1\x51\xfe\xc7\x72\x36\x65\x84\x0f\xca\x49\x41\xb8\xe5\xec\x7e\x0b\x7e\xbe\xa6\x6c\x50\x4e\x18\xec\xe6\xcd\x7e\x8b\x89\x7f\x89\x51\xf0\xb0\xc3\xbf\x7b\x6d\x1e\x76\xda\x29\xf0\x2f\x15\xad\xe8\x0b\xca\xf2\x1b\xb8\x4a\xe8\xc2\xb2\x03\xd5\x82\xfc\x5d\x7e\x57\x5e\x0c\xde\x1a\x6f\x28\x20\xaa\xb7\xfe\x42\xa1\x06\x5b\x0a\xe4\x29\x9a\x6c\x2e\x20\x82\x82\xf5\x03\x74\x93\x15\xd7\x69\xf6\x5e\x27\xf2\x43\xd4\x34\x2c\xdf\xeb\x82\xd7\x99\xf6\xf4\xb9\xd7\xa6\x71\xe9\x1e\x70\x2c\xe0\x4b\xf2\xf4\x7f\xd2\xc1\x33\x47\xdc\x4e\x75\x8d\x13\xad\x46\x2b\x86\x20\x71\x6f\xb2\x3d\x30\x37\x22\x5b\xdd\x77\xf0\x3a\x75\x0d\x1c\x1e\x5c\x90\x7c\x98\x2e\x05\xe5\x9d\xc6\xfc\x18\x66\x1b\xb6\xdc\xc4\xe6\xc4\x3a\xff\x92\xfb\x66\xde\x4b\xaf\xcd\xad\x56\x97\x30\x51\x4d\x63\x23\xc5\xdd\x53\x53\x87\x2d\xe3\xd4\xca\x0d\x8c\xd7\xca\x2c\x6e\x2e\x03\xea\x70\x52\x9a\x78\xff\xb7\xc5\x67\x30\x36\x7e\xaf\x00\xdc\xc4\x4b\xb6\xba\xec\x15\x71\x5b\xe0\xa4\x7a\x6e\x5a\x39\xa9\x34\x4c\x73\x5f\x07\xe4\x99\x51\x84\x8c\x05\x49\x93\x6a\x30\x9e\xa1\x28\xe2\x71\x9a\x54\x33\x2c\xb0\x4c\x39\x9e\xe1\x12\x1e\x9e\xce\x90\xb7\xb7\x7a\x8f\x4f\x62\x73\x28\xc3\x75\x55\x0a\x40\xab\x0f\x7f\x8d\xad\x0e\xd3\x78\xe7\x03\x90\xc2\x58\x63\xef\x6d\xd5\x79\x80\x53\xfb\xbf\x37\x56\x01\x01\x9a\x7b\xf2\xdb\x91\x4e\x85\x7d\x16\xf7\x46\x3a\xb4\x48\xf9\x43\xc1\xf7\x1a\x66\xef\x6d\xf7\xdb\x91\x8e\x00\x56\x6b\x43\xc5\xfa\xcd\xe7\x34\x6b\xd5\xfe\x54\x1b\x14\x34\x3f\x15\x30\x35\x7b\x5b\x6f\x31\xad\x6d\x10\xec\x63\x08\x95\x8c\x3a\xc1\x6e\xd3\x82\x0b\xe3\x53\xb9\x20\x73\xad\xe3\x64\x9d\xfc\x7c\x7b\x34\x9e\xc6\x56\x97\xa7\xc0\xcf\x10\xee\x8d\xd0\x24\xb6\x59\xf7\x2d\x27\x42\xdf\x1e\x8d\xa3\x28\xce\x93\x42\x5e\x4e\xc0\xf9\xd1\x93\x55\x93\x32\xe0\xd0\x7b\x89\x3f\x1d\x4a\xc8\xa0\x33\xe0\x07\x48\x9c\x28\xad\x03\x7d\xa7\x98\xcb\x44\xec\x4c\xcd\x9f\x72\xf6\x4b\xf5\x48\xa4\xba\xc6\xc4\x50\x33\x31\x04\x26\x26\x66\x21\x58\x0c\xf2\x83\x0f\x76\xcc\x90\x8b\x4b\xa6\xa7\x96\x2d\x63\x5b\x89\xf5\x3a\xb3\x77\x38\x47\xcf\x3a\xca\x9f\xbb\xc0\x29\x02\xd5\x21\x7d\x98\xbd\x12\x9d\x32\x29\x06\xc7\x33\xc2\xb1\x7c\x78\x3a\xb3\x51\x13\x1e\x9f\x8a\xab\x1b\x2a\x80\x7c\x7b\x93\x2f\x8b\x06\xb0\x35\xe7\x64\xe5\x43\x2c\xfc\x0c\x29\xde\xb7\x04\x0b\xb5\x09\x44\x0f\x9e\x49\x88\x30\x2e\x88\x26\xc0\x66\xce\xee\x41\x55\xc5\x95\xf5\x20\x4d\x63\x1d\x20\xf4\x00\xbf\xff\x8a\xea\xe6\xa0\xd0\x50\xa0\x87\x3c\x2e\x30\xb3\x81\x1c\xd6\x7b\x65\x23\xff\x92\x74\x55\xde\x72\x2d\xd7\x75\x78\x2f\x6b\x12\x07\xe6\xec\x17\x75\x7d\x3e\xec\xb0\x7b\x7d\x97\xae\xe9\x1b\xff\x0a\xb5\xa9\x25\xb0\xd6\x39\x5d\x54\x73\x8f\x03\x2b\xc7\xe9\xf8\x4b\x7c\x06\xbb\x6e\x13\x73\x2c\x12\x3e\xc3\x42\x31\x63\x5d\x63\x07\x25\x3e\xe5\x7c\x45\x17\x55\xd6\xdc\xf9\xbe\x0f\x24\xaf\xb2\x84\xce\x82\x1d\x9b\x36\xe5\xe5\x3f\x16\x55\x37\x15\x82\xae\x37\x82\x2e\xba\xa2\xe8\x9a\x36\xba\x69\xde\x4d\x35\x15\x97\x77\xd3\x2e\xd4\xd8\x8d\xfb\x03\x3a\xe8\xa3\xae\x58\xa5\xa2\xbb\x28\x68\x99\x7f\x23\xba\xf4\x0b\x2b\x45\x1f\x75\xac\xec\x9c\xff\xdb\xda\x59\x16\xbc\x9b\x76\xd5\xae\x6f\x6f\xd4\x07\x29\x8d\x05\x62\xd3\xd4\x03\x18\x3a\xf2\x73\x81\x26\xa9\x66\x86\xeb\xf7\x16\x9c\xc2\xf3\x20\x2b\xa7\xf8\xeb\xb7\x5c\x14\xf9\x6f\x06\x78\xba\x4d\x62\xd5\x39\x9a\x1d\x7e\x9e\x9f\xc0\x25\x5c\x2f\x92\xb4\xe4\x9d\xe1\xde\x98\x10\x62\xbc\x1c\xeb\xf5\x16\x33\x64\xee\xa9\x18\x01\x18\x68\x29\x3a\x18\x60\xa3\xeb\x5c\x6f\xdf\xdd\xad\xa0\xe7\xc8\x96\xb1\x52\x12\xd2\x17\xe1\xd8\xbb\x7c\x1f\x87\x3f\x4e\x7a\x02\x97\xc8\xc3\xce\xdc\x59\x8d\xc9\x30\x4a\x29\x27\x88\x37\xc6\x5e\xcc\xb0\x08\xc6\xc8\x67\x38\x97\xe7\xa8\xd6\x3e\x10\xf1\x83\x41\xc7\x69\x02\x29\x49\x85\x05\x1f\xb7\xa1\x40\x47\xb9\x05\x10\xda\x74\xf9\xa4\xa7\xfc\x81\x2b\x7f\x0c\xdc\x06\x9f\x71\x39\xe0\x5c\x06\x52\x98\x1d\xbe\x69\x11\x66\xd8\xf6\xae\x9d\xd7\x06\x18\x7f\x7d\x07\xc9\xe3\x02\xae\xf1\xd1\x89\x3f\xd9\x39\xe2\x5a\x64\x1c\x6c\xab\x8e\xbd\x3d\x14\xbd\x18\x6c\xb2\x34\xa0\x33\x70\x69\x48\xec\xb4\x53\x63\x90\x90\x72\x1a\x73\x52\xc8\xba\x95\x6a\x98\xa5\xbe\x0c\xb9\x5d\x46\x51\xda\x05\x32\x4c\x10\x99\x15\x25\xe9\x6c\xd2\xc2\x63\x29\xe0\x06\x1d\x63\xdb\xd9\x02\xe1\xfc\x5b\x66\x1c\xc7\xe5\x47\xac\x43\x3d\xad\xa0\xca\xd9\x53\x66\x64\x74\x92\x3d\xaf\x4e\xb2\xc1\x00\xd1\x24\x9b\x79\x7d\xcf\x06\xce\x4b\x71\xc2\xb1\xc0\xd4\x23\xd0\xaf\xc2\xf9\xc4\x60\x29\x7a\x4c\x48\x63\x62\x51\x38\x73\x98\x85\xb3\xa3\xcc\xf1\xdc\x7c\x16\xe4\x5a\x5f\x49\x9a\x4f\x6f\x73\xa3\x0e\x25\x85\xac\x41\x90\x22\xf1\x75\x13\xe2\x9c\x14\xc9\xf1\x0c\x4d\x19\x19\x4d\x2a\x89\x49\x68\x97\x10\xdb\x6d\xcc\x49\x0f\x30\x0c\xec\x52\xcd\x88\xb4\x07\x4f\x17\xd5\x82\xe1\xf1\x08\x61\x3e\x83\xbd\x75\x47\x46\xf8\x8c\x8c\xb0\x84\x5b\x17\x64\x84\xdf\x93\x11\xfe\x4c\x46\xf8\x94\x8c\xf0\x25\x19\xe1\x97\x64\x84\xdf\x92\x11\xfe\x48\x46\xf8\x03\x19\xe1\x9f\xc9\x08\xbf\x22\x23\xfc\x8e\x8c\xf0\x1b\x32\xc2\xe7\x64\x84\x5f\x93\x11\xfe\x95\x8c\xf0\xf7\x64\x84\x5f\x90\x11\xfe\x74\x48\x52\xea\x0c\x12\xd4\x6d\xf7\xea\xec\xc5\xa7\xef\x6c\x74\x67\xad\xab\x61\x8c\x9c\x03\x87\xc2\x2a\xe9\x22\xd0\x3f\xb9\xa2\xb7\x34\x17\x2f\xd3\x2c\xbb\x4e\xe7\x9f\x4b\xf2\x40\xf3\x85\xbc\x71\xc1\x2b\xdc\x24\x99\xed\x8c\x30\x96\xad\xa9\xe1\x35\xbd\x59\x04\x31\x97\xe4\x97\xd2\x55\x98\x56\xa2\xe0\x55\x6e\x7b\x64\x12\x2e\x6a\xc1\x9a\x82\x0b\x38\x24\x5d\xb7\xdb\x87\x5d\x33\x0e\xb1\x9f\xc7\xb0\x36\x01\xf1\x53\xa4\xd4\x95\x9f\x44\xf6\x66\x9e\xec\xcb\xec\x01\xaf\x91\x19\x4b\x91\xbf\x90\xf3\x10\xd6\xa6\x13\xb7\xdb\x7b\x9b\xeb\x2c\x5f\xd4\xf3\x9c\xe5\x0b\x97\x03\x22\x0e\x7e\xac\xf2\xb3\x2f\x1b\xc6\xe9\xe2\x52\x4d\x99\xfa\xc6\x6b\xc9\xe0\x30\x45\xa9\x72\xfb\xa5\x4f\xd5\x2c\x9e\xe5\x81\x7c\xfa\xd7\xc1\x40\x51\x44\xdc\xce\x33\xd8\xd0\xf8\xab\xc0\xdb\x96\x80\x0f\xaf\x68\xbe\x90\x44\x92\x0e\x48\x53\x1b\xe4\x55\xc0\x4d\xde\x6e\x0b\xcd\xba\xd8\x18\xfe\xb2\x8e\x97\x5c\xef\x1c\x3a\xa4\xc4\x04\x9b\xca\xef\xfe\x99\xb6\x7b\xa5\x2e\x40\xa9\xe2\x00\x84\xca\xf4\x66\x37\xeb\x9a\x7a\xd6\x35\xb1\x19\xd8\x34\xa6\x36\x62\x83\x22\xce\x74\x8f\x62\x84\x26\xb1\x67\x2a\xfa\x62\x30\x68\x39\x0d\xc6\x11\x13\xc2\xdf\x0f\x06\x98\xb6\xb6\x0d\x50\x71\x5d\xbb\x98\x41\xc7\xfa\xc2\xd4\x79\x25\x38\xbb\xb9\xa1\x3c\xee\xc3\x40\xfb\x58\x22\x91\x28\xdc\x4a\x4a\x75\x1c\xd4\xa3\x68\xb8\x94\x5f\x6c\x35\xb0\x30\x63\x50\xe0\x2a\xf2\xa6\xa2\xa3\x03\xeb\x3d\x7b\x34\x3c\xcc\xed\xf2\x7e\x43\xad\x86\xbe\x3a\xd6\x5d\x49\x87\x77\xaf\x69\x37\xb5\xbc\xeb\x3e\xf2\x5d\x76\xd4\xa0\x40\x1d\x01\xe5\xfb\xaa\x07\x03\x00\xd9\xfb\x2e\x54\xd0\x05\xf4\xaf\x7b\x4d\xe7\x69\x25\xaf\x46\x85\xf6\x81\x89\xbe\xc5\xfb\xac\x3e\x83\x1c\xdd\x72\xb9\xdf\x00\xbe\xbd\x4f\x3d\xba\xdd\x7e\x6d\xbf\x96\xcb\xdf\xd0\x31\x75\x06\x7a\x63\x88\x74\x82\x42\xab\x14\xee\x5b\xa5\x68\xee\xae\x80\xc8\x23\xbd\x11\xe6\xd6\x2c\x08\x8f\x11\x66\x47\x47\x80\x51\xf7\xf2\xaf\xe8\xdb\xdc\xac\x8f\x45\x91\xfd\x2e\x41\x78\xca\x2a\x38\x2f\xef\xcd\x79\xd9\x7f\xf9\x61\x41\xa8\x04\x60\x9c\x50\x79\xf9\xe5\x84\x26\xc7\xa1\xc6\x89\x84\x38\xb1\xb1\x43\xe2\xc3\x9f\x8b\xf0\x4c\x7e\xfe\xb7\xb4\x21\x6b\xf5\x1a\x59\xd0\x25\xad\x53\x9c\xe8\xe1\x74\x30\xe8\x38\xa6\x7a\x1d\x21\xd0\x62\x1f\x85\x89\xe4\xdf\x3e\x9d\xe6\x47\x4f\x27\x23\x84\x0b\xf2\xf4\xa4\x78\x9e\xab\xb8\x6b\x49\x71\xf4\xd4\xc7\x45\x8a\xb0\x1f\x86\x5c\xd1\x23\x01\xaa\x1c\x2e\x74\x3e\x1b\xce\x41\x60\x18\x43\xb8\x20\xde\x46\xa4\xa1\x87\x4b\xaf\x83\x4d\x1a\x14\x73\xaf\x83\xe2\xdb\xf1\x54\x1c\x8d\x65\x07\x73\x32\x3e\xc9\x9f\x8b\x93\x1c\x76\x4b\x7e\x34\xf6\x3b\x98\xcf\xb4\xc0\xb0\x36\xbb\x1c\x7c\x9c\x2a\xb4\x90\x29\x74\x90\x25\xc7\x33\xac\x79\x7f\x70\xcb\x4f\x2d\x65\x66\xe8\xdd\x60\xce\x95\x7a\xb6\x01\x58\x31\xb2\x63\x8a\xa9\x0e\x4c\xdf\x1b\xe3\x2a\x18\x2d\x44\x01\xbf\xce\xea\x2e\xd2\x5e\x1a\x7f\x04\xff\x9e\xc6\xe1\xc6\xb9\xc5\x89\x90\xe4\x8f\x8e\xd3\x0a\x3b\xe2\xbd\x04\xac\xf5\x5d\xf1\xf6\xbf\x6d\x57\xc8\xe6\xbf\x7e\x67\xd4\x3a\x8b\x1e\x3e\xfe\x7f\x6d\x77\x8c\xcc\xee\xb0\x92\xc8\x16\xb6\xe9\x07\x73\x4f\x65\xa9\xa0\xdc\x9f\x3e\x07\x20\x64\x25\xf0\xd9\x2f\xff\xb3\x05\x2c\x0d\x9d\xb8\xdf\x06\x69\xb4\xbc\xc8\xd2\xf1\xf9\xd4\x98\x0d\x4e\x46\x8e\x3d\x3a\x8a\xa2\x2a\xce\x93\xe2\x08\x38\xe0\xb1\x87\xbf\x1b\x77\x75\xe3\x11\x42\x38\xd1\x64\xc9\x6c\xf7\x5b\xfb\x40\x93\xa7\x35\xa0\x07\x43\x8e\x0d\x33\x4d\x4e\x82\xbc\x03\x84\x08\x4d\x0d\x5e\x79\x48\xcf\xd5\xde\x46\x39\x11\x9a\x11\x21\x1b\x65\x44\xc8\x46\x0b\x22\x92\xa7\x72\x0f\x88\xe4\x99\xdc\x03\x8e\x45\xb4\xdd\xa6\xb8\x22\x4b\x88\x10\xee\xe3\xe5\x2e\x66\x47\x85\x4c\x28\x1a\xd5\x4d\x99\xb3\x9c\xde\x4c\x18\x2e\x10\x2e\x0d\x43\x1d\xe0\xb6\xea\xbf\xa2\xb5\x6c\x54\x49\xa8\x0e\x04\x0a\x5a\x11\xba\x1a\x3c\xeb\x04\xdf\xb2\x59\x8f\x90\x1b\x2b\x6b\xb1\xa9\x84\x79\xf1\x2d\xe0\xe8\x4b\xa4\x71\x1e\x4c\xca\xbb\x7f\xd7\xa4\x54\x6e\x5f\xa4\x51\x94\xe2\x2c\xe8\x3f\x9e\xeb\x39\xca\xdc\xc4\xcc\x5b\x26\xa6\x32\x13\x53\xed\x9d\x18\xa5\x16\x19\x62\xc5\x4a\xcc\x3e\x28\xf0\x86\xcc\x07\xcf\x3a\x59\xb2\x91\xa8\xc2\x0d\x6c\xbf\x1b\x84\x29\xc9\x92\xb9\x99\xc0\x35\x59\xc4\x2b\xdd\x8f\xf9\xa0\x24\x84\xac\x51\x96\xcc\x67\x64\x85\xa1\x1c\x73\xcd\xdc\x86\x6b\x30\x1f\xfc\x69\x16\xcc\xbc\xc1\x40\xd6\x78\x84\x57\x12\xeb\x04\xd6\xe2\x2d\xc2\x6d\x99\xe6\xb8\x44\x3b\xb9\x67\xe6\x66\x68\x9c\x02\x36\x9c\x65\x97\x1e\x91\x17\x87\x6b\xa6\xb0\x6a\x4d\xb8\x78\xeb\xf6\xc6\x62\xad\x56\x1b\xc1\xd5\xb0\x87\x42\xac\x61\xe8\xb2\xfa\x55\x5a\x36\xeb\x0e\xf5\x6a\xd5\x20\xea\xc2\x19\x4d\x00\xb8\x2e\xd6\x19\x5a\xe7\x83\x01\x36\xa6\x41\x86\x7c\xe8\x3c\xaa\xd1\x30\xf5\x7b\x7a\x2e\xb7\x05\x74\x2f\xa6\x68\xd2\x8b\x8d\xb5\x96\xa4\x42\xb6\xdb\x1e\x55\xf4\x00\x3c\x29\x96\x27\x8a\x22\x9d\xa8\x3b\xa5\xcd\x31\x42\x10\xdc\xd4\xdc\xaf\x83\x68\x59\xa6\x9d\x59\xe7\xdb\x72\x74\x0c\xbf\x10\x6e\x01\x3d\xc8\x07\x3d\x31\x93\x26\x0d\x8e\xe7\x45\x95\x0b\xca\x75\xd0\x41\xf3\x86\xd5\x0c\x4f\x56\xc1\xf1\xc5\x25\x3e\x46\x38\xa0\x96\x74\xf8\x96\x1a\x7d\x64\x6f\xcd\x26\x79\x05\x7e\xb8\xdb\x94\x9b\x45\x14\x35\xd8\x81\x7a\x14\x3b\x04\x11\xce\xaf\x0e\x28\xca\xd7\x3a\xa0\x79\x5a\x8e\x9d\x4d\x44\x93\x9f\x4d\xf3\x05\x60\xdd\x74\x01\x9e\xc4\x8a\x4a\x92\x45\x92\x56\xd3\x04\x00\x66\x92\x04\x10\xfc\xfe\x21\x27\x9a\xb9\x0c\x0a\x2c\x2c\x4f\xb3\xec\x1e\xec\x05\x19\x62\xcb\x98\x49\xcc\x5f\xf1\xfd\xbc\xc0\x2e\x01\xf3\xb7\xce\xf9\xd5\x27\xd6\xdc\xba\x66\xfb\x17\x4a\xc2\xd4\xfd\x2d\xdc\x1b\x8f\x99\x6d\x3c\xd3\xd6\xe8\x59\xe7\x38\xbb\x5e\xa5\x75\x60\x62\x89\x55\xd0\x53\x95\x98\x97\xcf\xce\x00\x0b\x7e\xb5\x04\x21\x81\xa0\x91\xb4\x9a\xad\x44\x4b\x4b\x53\x47\x6c\xa8\x32\x13\x67\x24\x64\x98\xf0\x4a\xc8\x14\xd7\xa5\x55\x1c\x8a\x35\xe5\x5c\x80\x10\x6a\x89\x7a\x61\x64\xe9\x66\xf7\xc3\x3a\xc6\x08\xe7\x48\x2e\x9f\x33\x29\xab\x8b\xad\x18\x7a\xc8\x63\xe6\xd6\x14\x0a\x4b\x92\xdb\x2c\xc4\x9e\xd2\x2d\xf9\xa1\xa7\x01\x34\x6b\x9e\x69\xc7\x95\xa9\x5d\x15\x56\x01\xcb\xc2\xc9\xc7\x39\x67\x6a\x6e\x6a\x98\x55\x9b\x18\xb5\x1d\x21\x34\xfe\x83\xeb\xf7\x55\x8e\x53\x72\x37\x18\x18\xd6\x76\x0b\xc0\x45\x41\x1a\x90\xf0\x12\x67\x54\x4d\x33\x33\x80\xd6\x6b\xa4\xe3\x09\x50\x17\xda\xf5\xb0\xc3\x4e\xda\x6e\xa8\x12\x8f\x70\x4b\xed\x8f\x5c\x53\xa9\xb7\x1a\x0e\x62\x1f\x30\xd5\x6d\x19\xe6\x89\x18\x90\xd2\x6a\x54\x98\xfb\x56\xcc\xfc\x70\xc7\x6d\x3d\x16\x47\x63\x5c\x22\x00\x08\xe2\x91\x5b\x15\xf7\x46\x96\x8d\x05\x3d\xd6\xe7\x70\xcf\x6e\x7f\x94\x3d\x03\xbe\xe1\x0e\x38\xd1\xc8\x13\x36\x53\x87\x59\x1f\xab\x90\x07\xd9\xd8\xaf\x8f\x31\x7a\x7d\xd8\x13\x9c\xbb\x10\xbc\x05\xad\x98\xaf\x70\x6a\x54\x47\x5a\xf3\xb5\xca\xf1\x42\xfc\x4d\x90\x91\xe7\x16\xda\x2a\x39\xf8\xec\x5c\x23\xaf\xaa\xed\xf2\x13\xf1\x9c\xab\xf5\x05\x39\x57\x22\x66\xdf\x32\x04\xea\x78\x1d\xa3\x18\x27\x06\xcf\x60\x66\x0b\x89\xc7\x1a\xc1\xac\x4c\x06\x4a\x4b\x3e\x3c\x9d\xe1\x0c\x1e\x0c\x06\x56\x03\x7a\x8e\xa8\xca\x71\x8a\x2b\x5c\x48\x82\x37\x43\xbb\x1d\x35\x5b\x65\x64\xdd\x32\xb4\x1f\x17\xb5\x4c\x6d\x7b\xa7\xb9\x56\xfb\x51\xae\xfd\x55\x37\xca\xf8\xd5\xfa\x3e\xd4\x6a\x3b\x61\x0f\x00\x33\x95\xb7\x15\x41\xfb\x65\x07\xaa\x2f\x8f\x0c\x52\x82\xa3\x5e\x3b\x38\x7a\x68\x6e\x0d\x25\xf1\x69\x5b\x79\xcc\xc9\xdb\x54\xac\x86\xeb\xf4\x4b\x3c\xc2\xf4\x48\x04\x60\xc7\x75\xac\x56\xd6\xd3\xc7\x3d\xc0\xc5\xb7\xd7\xe4\x7e\xe4\xee\xb6\xe1\x0b\xb1\xc6\xd0\x36\xd7\x28\xb5\x93\x1c\x40\xfe\x43\x10\x5d\xd7\xdb\x7e\x08\x0d\x8e\xd1\x94\x6f\x20\xcd\x83\xae\x67\x0d\xc0\xe5\x6b\x4d\x93\x35\x67\x95\x7e\x11\x86\x45\x6f\x04\x06\x80\x2b\x75\xf8\x54\xb9\x5b\x99\xb4\xdc\x6a\xa3\x83\x06\xbe\x06\x0d\xdd\x63\xe4\xfb\xa0\x04\x52\x67\x98\xe6\x8b\xc9\x17\x0c\x00\xb1\x9c\xe8\xd4\x0b\x48\x1d\xed\xb0\x6e\xab\x9c\x3c\xa8\x46\x16\x93\xd7\x78\x5e\xac\x37\x19\x95\xcf\xbf\xee\xb0\xc4\x88\xdf\x63\x89\xd1\x4c\x3e\x63\x60\x41\x4d\x4e\xb1\x99\x83\xc9\x25\xae\xf3\xc5\x26\x2f\xb1\x65\x54\x4d\xde\x62\x9f\x15\x34\xf9\x88\x3d\x8d\xee\x0f\x18\x6e\xe5\xc9\xcf\xd8\x90\xfc\x93\x57\xd8\x10\xba\x93\x77\xd8\xa7\x9f\x26\x6f\xf4\xeb\xe4\x1c\x67\x45\xb1\x29\x27\x0f\xa2\x10\x69\x36\xf9\x1e\xe7\xb4\x94\x3d\x7d\xb1\xdb\x59\xa7\x28\x3e\x68\x3b\x68\x01\x1d\x00\x41\x67\x02\xfd\x69\xa8\x84\x5c\x1b\xfc\xa9\x61\x22\xa0\x53\x24\x16\xa2\xed\x15\x7e\x20\x9f\x3a\xce\x70\xe0\x07\x65\x9c\xb0\x48\x6f\x8e\x20\x2a\xee\x57\x59\xb0\xb5\xda\x1d\x3c\x12\xb0\xf6\xea\x96\x72\xc1\xe6\x5a\xe9\x95\xb7\xb9\xa2\x0a\x7d\x03\x18\x9c\xa7\xdd\x83\x47\xdf\xf0\x0c\xba\xff\xfc\x4c\xef\xff\xd9\x65\x65\x97\xd3\x5f\x2a\x79\x6a\xfb\x41\x30\x23\xdb\x2e\x78\xfc\x49\x17\x0b\x1d\xe5\x14\x7c\x7f\x11\x79\x6d\xb2\x65\xdc\x90\x44\x72\x04\x79\xcf\x16\x37\x34\x2e\xb0\x2a\xc7\x91\xe7\x71\xf6\xd6\x86\x30\xb7\xa2\x83\x74\x30\x68\x2b\x05\xd1\xc9\x95\x2b\xac\xb6\x96\x72\xaf\x8c\x2a\x91\x23\x5c\x78\x2d\xa9\x56\xf2\xf6\x56\x74\x09\xd9\x06\xa8\xcb\xd4\xa6\x53\xe6\x29\x5b\xe6\x14\x66\x06\xe6\xc2\xba\x2b\xf3\x4b\xd2\xb4\x2d\xb6\xa0\x9d\xc9\xe1\x5d\x9a\x7d\xd6\x3e\x2f\x5c\x21\x51\x6c\xca\x82\x8b\x96\xe8\x21\xe9\x5c\x79\x2b\xd0\x06\xaa\x66\xef\x18\x97\xf2\x07\xb7\x4d\xa8\x22\x5a\xda\x20\x95\x9a\x07\xb6\x49\xc5\xca\x7f\xe7\xb4\x94\x55\x43\xca\xe3\x5b\x6c\xef\xe6\x5a\xb3\xb2\x64\xf9\x4d\xf7\x33\xbd\xf7\x1c\x4e\x4b\x88\x38\xda\x7a\xdd\xc2\x39\x19\x9d\xe4\xcf\x39\x70\x7a\xd9\x32\xd6\x1a\x42\x49\x3e\x43\xc3\xcf\xf4\x3e\xc0\x29\x03\x3e\xa2\x1e\x15\x1f\x28\x3a\x20\xe1\x33\xf2\xc0\x16\x5f\x26\x1c\x4b\x80\x40\xf1\x6d\x9a\x59\x84\x5e\xb9\x54\x5f\x66\xca\x99\xba\xe1\x82\xee\x5a\xd7\xba\xc6\xe4\x57\x17\xd2\x8a\xce\x3f\xcb\x77\xd9\x25\x37\x18\x18\xca\x9e\x71\x88\x24\x07\x84\x78\xc8\x16\x5f\xf4\x00\x3a\x22\xe8\xb4\xec\x31\x7c\xc6\x74\x28\xef\x74\x09\xfa\x03\xef\x65\x69\xf6\xb9\xb9\x13\x74\xa4\x11\x8f\xa5\x3e\x32\x58\x7a\xdd\x97\x8e\xba\x7b\x12\x31\xeb\x70\xd9\x80\x66\x06\xdd\xb2\x92\x89\x98\xe3\x7e\x5f\xc7\xfb\x87\xbd\xe5\xad\x3c\xae\xef\x4a\x18\x7d\x53\xc2\x4a\xf5\xfa\xb4\x30\x10\xe6\xf7\xf3\x8c\x76\x17\x54\x80\xbb\x9a\x49\xb7\x3f\x10\x83\x7e\xf7\xf9\x91\x7c\x80\x73\x2c\x31\x16\xa7\x25\x7f\xc8\x2b\x92\x26\x33\x12\x9a\xf0\xd9\xec\x77\xb5\x08\xfd\x74\xcd\xef\x0c\xe1\x62\x62\xb6\x78\xb3\x42\x2d\xda\x29\x0f\x45\x4d\x4d\x3d\x27\x6d\xad\x68\x8f\x6f\xb5\x99\x94\xc5\x03\xd8\x9f\x0f\x88\xe9\xce\x0e\x61\xd7\xf1\x1c\xed\x6a\xdb\x10\xba\xd5\xc0\x62\x7d\xc7\x1d\xe6\x24\x7b\x7d\x34\x49\x6a\x05\x6d\x62\xc7\xd1\x07\x23\x83\xf6\xe9\xc9\xa5\xcf\xc5\x09\xd5\xee\x03\x13\x3a\x1b\xca\xc3\x41\x24\xb1\xe5\xf7\x05\x66\x65\xbf\xf0\x39\x08\x85\x0d\x43\x66\xc4\xeb\x06\xb4\xce\x4d\xdc\x33\x79\x0e\x4e\x2c\xa0\x37\x0c\xa1\xd1\x96\x2b\x3e\x0c\xdc\x27\xdf\x92\x91\xaf\xe9\x99\x14\x33\x65\x2f\x20\x3b\x87\xe6\x45\x2e\x58\x5e\x51\x97\x44\x7a\x23\x13\x7d\xaf\x40\x58\x10\x42\x52\x38\xa0\x8a\x5e\xd1\x2d\xff\xff\x0a\xb3\xa4\x55\xb9\x7a\x93\xcf\x8b\x35\xcb\x6f\x62\xad\xb2\xdc\xf5\x82\xf2\xe8\xcc\xb5\xe5\xf0\x4b\x1d\x72\x9f\xa0\xe6\xe2\x60\x2c\x1e\x70\xed\xa5\x81\x1b\xf4\x7f\xbb\x15\xd6\x5d\xfc\xc1\xdb\xa3\xe6\x3a\x0c\xfc\x9f\x9b\x43\xf2\x3c\x77\xee\xc3\xd4\xf4\xab\xb3\xd2\x11\x31\x93\xb3\x81\xc1\xb3\xa5\x55\x3f\xce\xbf\xee\xae\x68\x03\xfc\xad\xde\x75\x12\xaf\xd8\x60\x30\x23\xa3\x2d\xad\x4d\x60\xe8\x5d\xc7\xf8\xb6\x01\x60\x94\x1c\x1d\x79\xc5\xb5\xab\x20\x85\x4d\xf9\x26\x9d\x5f\x8b\x51\xdd\xf1\x74\xf3\x2e\x15\xec\x96\x5e\x54\x1b\xda\x30\xd1\x01\x06\xba\x17\x8b\x9d\x1b\xd5\x79\x3b\x0d\xa0\xf9\x68\xa8\x0d\x37\x06\x12\x3a\x73\xf2\x46\x87\x1f\xac\xe7\xcd\x82\x4f\x1e\x74\xcc\x27\x4c\xf3\x6a\xad\x51\xe3\xde\x18\xdf\x71\x26\xd4\xf3\x08\xcf\x8b\x7c\xc9\x6e\x2a\xfd\x6d\xb4\xdb\x21\x25\x49\x8c\x29\xce\x11\x16\x71\xae\xa1\xef\x5c\x22\xfe\x2f\xd3\x2c\x7b\xd9\x02\x7c\x47\x2a\xc4\xad\x17\x4e\x81\x84\x2a\xd9\xa3\x0e\xdd\xdb\x7b\x4d\x45\x71\xe5\xf8\x82\x3f\x32\x16\xfa\x58\xef\x9d\xda\x90\xd0\x7c\x49\x70\xd4\x7b\x43\x17\x97\x74\x2d\x69\x21\x7a\x0e\x11\x35\xb3\x46\x3f\xe5\xe5\xba\xdd\xc6\x82\x50\xe5\x96\x37\x1e\x21\xe7\x84\x6c\xc8\xd3\x3b\x22\xc0\x51\x8a\x4f\x0a\x35\xf8\x3f\xaa\x79\x11\x45\x79\xb0\x2c\x02\x69\xa7\xa2\x1c\xbe\x60\x1e\xba\x37\x53\x7e\xeb\x2e\x57\xac\x74\xc1\x11\x95\x6b\xb6\x4d\x51\x96\xec\x3a\xa3\x2f\xdd\x54\x7c\x84\x82\x2d\x1a\x46\x75\x77\x74\xb2\x17\x9a\x35\xb0\xdd\xb6\xa8\x95\x8a\x06\x22\xc3\x34\x06\xa8\x6a\x82\x88\x70\xd5\x5c\x54\x12\xbb\xad\x39\x85\xa2\x72\xd5\x35\x8d\xa0\xd7\x53\xf9\x9c\x55\x03\x7e\xbf\xd4\x82\xf4\xb7\xe9\xc6\xdf\xce\x2d\x4e\x07\x45\x8b\xd3\x41\x89\x8b\x74\xf2\xa1\xdb\xb6\xc4\x7f\xd9\x6e\x7b\x63\x08\x3b\xe4\x16\x5f\x42\xde\x3e\xec\x90\x3e\xcb\xbb\x39\xc4\xce\x30\x1b\x85\xf4\x46\x08\xeb\x3e\x2a\xfb\x74\xe3\x1a\x57\x6e\x72\x00\x49\xb9\x6f\x05\x1c\x38\x5e\xdb\x79\xa7\xff\x09\x58\x33\x85\x96\xde\x9a\x40\xe9\xe3\xfe\xff\x52\x79\x8e\x98\x24\x88\xf3\x34\x2b\x9f\xd0\xfc\x96\xf1\x22\x57\xe6\xfb\xfd\xbc\x58\xd0\xa3\x75\x21\x09\xd1\xd6\xdc\x95\x60\x59\xd9\xfa\x45\x5e\x34\x29\x03\x23\x73\xf3\x95\xc1\x6e\x90\x35\x83\x71\x75\x6b\xb1\x35\x15\xe9\xde\x0f\x99\xfb\x32\x4f\xf3\x94\xdf\x1f\x2d\x69\x2a\x2a\x4e\xbd\x2e\x40\x18\xf3\x3e\x0e\xac\xdc\xdb\xbb\x57\x16\xfe\xa0\x64\x7f\x79\x91\x65\x7e\x7e\x97\xf6\x24\x63\xd7\xde\xeb\xd5\x9a\x7d\x61\xde\x00\x34\x2d\xe5\xde\x29\xbf\x65\x73\xaf\x76\xbd\xcb\x6b\xef\x4f\xe6\xc5\x7a\x93\xb6\x27\x57\x82\x2e\x5a\x7b\xae\x43\x79\xb5\x7e\xd3\xbe\x60\x8c\x31\xff\x93\x5b\xca\xcb\x7d\x33\x7d\xcb\xe8\x5d\xfb\xd2\xf1\xa2\x12\xc1\x70\xfc\xed\xf1\x45\xd0\x5c\xd6\x79\xa4\x23\xe1\xb8\x5c\x54\xe2\x62\xee\x95\x57\x79\x56\x14\x9b\xf6\x5a\x64\xd6\x23\x88\x33\xbb\xaf\xa1\xe2\x2e\x58\xba\x74\xb3\xc9\xd8\xbc\xb6\x6f\xbc\xc4\x27\xca\x1a\xb0\x3c\xd2\xee\x01\xda\x8b\x3e\x31\xb2\x2b\xaf\xd7\xf9\x0d\xcb\x1b\xef\x2d\x19\x37\x45\x76\xbf\x64\x59\x16\xec\xb5\x0d\xa7\xf3\x54\xd0\x85\xdb\x88\xa1\xe7\x04\x63\x7a\x03\x4a\x2f\x15\xce\xf0\x1c\x2f\xf1\x0a\x2f\xf0\x06\xaf\xf1\x2d\xbe\xc7\x37\xf8\x1a\x5f\xe1\x3b\x7c\x86\xbf\xe0\x0b\xfc\x1e\x7f\xc6\xa7\xf8\x12\xbf\xc4\x6f\xf1\x47\xfc\x01\xff\x8c\x5f\xe1\x77\xf8\xcd\xd7\x70\x3d\xce\x49\x03\x94\x72\x09\x6d\x04\xfd\x22\x86\x6c\x0d\x47\x7f\x78\x26\xbb\x1d\x45\x7b\x3e\x6c\xb7\x0f\xbb\xce\xf9\x90\x95\xef\x8c\x4f\x79\x09\xa1\xce\x87\xa2\x50\x51\xc8\x9a\x18\x48\x1f\xca\xf5\x77\x7b\x20\xd5\x39\xee\x9f\xbd\xfb\x47\x1f\x43\xd0\x75\x40\x14\xce\xde\xfd\x23\xbc\xd7\x77\xfb\xa0\xdc\x39\xee\x67\x45\xf1\xb9\xda\xf8\xc5\xcf\x21\x05\xbc\xec\xc2\x85\xaf\xdf\xeb\x35\xbe\x19\x9e\xbd\x7d\x71\xf6\xf1\xea\xec\xff\x5c\x9e\xbd\x7b\x75\xf5\xe1\xe3\xfb\xcb\xf7\x97\x3f\x7e\x38\xbb\x88\xa2\xfd\x1d\xad\xe7\xed\xe3\x87\x10\x03\x69\xe7\x87\xf1\xe1\xd9\xbb\x7f\x0c\x1b\xa5\x25\x08\x3e\x97\x5d\x7e\x2f\xf7\x31\x79\x69\x1f\xf1\xb9\xec\xb8\x49\x2d\x5d\xea\xa9\xdb\xa6\xe4\xad\x59\x61\x7c\x3e\x7c\xa5\x9e\x3e\xea\x7d\x4d\xce\x87\xf6\xf1\xa3\x97\xcd\x2b\x6e\x19\xc3\x1f\xbc\xef\x67\xb0\xaf\xc9\xcf\x8d\x24\x9b\xfb\x95\xf7\x49\x3b\x9f\x7d\xa7\x1f\xf0\xf9\x70\x4d\xf9\x0d\x25\xef\xd4\x3f\x0c\x2d\x87\x10\xdf\xca\x1f\x6b\xf0\x8a\xcf\x87\xdf\x7d\x7a\xf3\xea\xea\x6f\x67\x3f\x12\x66\x1f\x65\x99\x8a\x2d\x5e\x17\x5c\x66\x57\x4f\xf8\x7c\xc8\xf2\x12\x9c\xac\x32\xf3\x24\xdb\x4a\x3f\x53\xe5\xd2\x8c\xb9\x67\x7c\x3e\x9c\xa7\xf9\x1b\x65\x97\xc8\xdc\xb3\xdc\xa0\xfc\xde\xa6\xdb\x67\x7c\x0e\xa8\x2c\x61\xf0\x87\xcf\x87\x95\xea\x69\xa5\x7a\xf8\xd2\xdc\x4f\xa4\x70\xcf\xf8\x5c\x3b\xd9\xe2\xf7\xa4\xb0\x8f\x6a\x3e\x28\x17\x64\xae\x1f\x64\xdd\x29\xcf\xc9\x1c\xfe\xf0\xf9\x10\x6e\x1d\x32\x57\xff\xf0\xae\x21\x03\xa4\xe9\x67\x3f\xfd\x75\x95\xcf\xfd\x6f\xf2\xbd\x73\x3e\xe4\x55\xfe\x26\x7f\xa5\x2b\x73\x2f\x72\xb1\xc0\x90\xf2\x73\xb0\x31\x64\xb6\x07\xae\xbd\x82\xbd\xd2\x55\xb1\x22\xff\x1e\x02\x78\xf3\xc9\x7c\xb8\xff\x23\x36\x9f\x7e\x48\x79\x4b\x01\x2f\x15\xb3\xf2\xa5\xbe\x90\x26\xd5\xd0\xbd\xec\xd4\xea\xe9\x2b\x9d\xa4\xde\x8b\xdc\xe4\xd5\x75\x39\xe7\xec\x9a\x92\xd4\x3d\xe3\xf3\xe1\x9b\x10\x09\x20\x0f\xae\xd4\x24\xa8\xc2\x16\x9a\xf8\x15\x54\xb9\x9f\xee\xbd\x61\x20\xf9\x27\xa9\x22\xfd\x65\xdf\x78\x95\x93\xd3\xe1\x95\xbe\x18\x3e\x56\xb9\x4a\x1b\x3a\xcc\x80\x9c\x7a\x2f\xe6\x2b\x18\x0e\x9c\xaa\x7f\x93\xc6\xf2\x85\x4c\x62\xf9\x42\xa7\x68\x05\xa0\x53\xfd\xa0\x53\xad\xb6\xd9\xa9\x7d\xd4\x5f\x28\x54\x40\x6d\xf9\x55\x5a\x5e\x68\x06\xbf\x11\x48\x9e\xb6\x24\xea\xdc\xa0\x16\x71\x0a\x7f\x3a\x45\xc9\xe5\x4f\xd5\xbf\x4e\x03\xcf\x8a\xa7\x4a\x62\xa2\x52\x0a\xd5\x97\xc2\xf5\xc3\xaa\x1e\x9f\xda\xc7\xda\x97\xf7\xaa\x8c\xff\xaa\x73\x58\x05\xc3\x53\xfb\x18\xcc\x86\x1d\x87\xff\xba\x0f\xba\xcb\x72\xd8\xf8\x72\xff\x58\xe5\xe7\x80\x2a\x00\xa4\x3f\x95\xb0\xf2\x65\xf0\xa5\x0e\xe1\xe1\xc6\x7b\x4d\x2a\xbb\xba\x66\x4f\x76\xd8\x32\x3e\x1f\x1a\xfc\x89\xbc\xc6\xe7\xc3\xab\x05\x55\x41\x07\x0a\x4e\xaa\x61\x0e\x94\xed\x2b\x5a\xce\x5f\xd1\x79\xc1\x53\x01\x40\xe8\x4a\x80\x5b\xfc\x05\xa9\x86\xfa\x09\xbf\x1e\xa6\x19\x4b\x4b\x52\xa9\x7f\x80\x3e\xf3\x15\x7d\x0d\xb5\xc8\x0e\xca\xb7\x05\x78\x28\x57\x80\xcc\x74\xc1\xc6\xd9\xa8\x1a\x49\xfb\xaf\xba\xab\x92\x0a\x93\xdb\x76\x4c\xcf\x47\xf3\xce\xa9\xe4\xbd\x01\xa4\x1c\x73\xc3\x50\x37\xce\x55\xcb\x17\xd2\x9a\x1f\x60\xba\x48\x49\x09\x7f\xea\xb2\x52\x43\x53\xcf\x3f\x30\xb1\xd2\x77\x8f\x4a\xf6\x12\x64\x43\x37\x54\x7c\x48\xc5\x0a\x16\x41\x3d\xaa\xab\x4d\xb5\xa6\xa0\xf2\x05\xbc\xaa\x07\x7c\x3e\x7c\x7d\x76\x7a\xf9\xe9\xe3\xd9\x05\x89\x47\xd8\x5c\x2d\x28\x7e\x60\xe5\x59\x2e\x97\x76\x31\xc9\x86\xf6\x79\x87\x33\x9b\x1f\x06\x06\x13\x4e\xd8\x10\xfe\xf1\xf9\xb0\xc8\x49\x35\x2c\xe4\x81\x48\x17\xe0\xfb\x53\xde\x40\x72\xb9\xdc\x9b\xdc\x9e\xe0\x96\xd4\xfb\x1c\x26\x40\x97\xf3\xc5\xd9\xad\x84\x60\x95\x7b\xc6\xe7\xf2\x34\x9a\x5c\x72\x17\xf8\xaf\x18\x90\xa4\x22\xa7\xa4\xd2\x0f\x90\xa2\xa8\xcd\xca\x3c\x41\xda\x8b\x2c\xcd\x3f\x43\x1a\x3c\x41\xda\x07\xe5\x6c\x1c\x52\xf5\x33\x3e\x1f\xe6\x85\x60\xcb\x7b\xb3\x29\x5e\xae\xd2\xfc\x46\xd6\xdf\x96\x2c\x47\x7f\x4b\x39\x67\x0b\xfa\x72\x95\xb2\x5c\xf6\x2f\x4c\xc0\xe7\x0a\x80\x85\xe5\x64\xbe\xb6\x64\x7c\x2e\x41\x53\x33\x6f\x33\x51\x1e\x03\x78\xd2\xe9\x0c\xf2\xd5\x93\xf0\xf9\xd0\x1a\x6f\x3d\x84\x9b\x7d\xd2\x1b\xe1\x55\x5a\x9a\xd7\xd3\xf9\x9c\x96\x65\xc1\xcb\x49\x6f\xb4\x83\xfb\xd1\xcf\x4c\xaa\x5a\x02\xdc\xbb\x62\xbe\xfa\x1b\x95\xdf\xcc\xa3\xbc\xdb\x73\x2f\xdd\xbd\xd8\x0d\x00\xb3\xf2\x03\x04\x6c\x71\x9b\xc0\x4f\x84\x1d\x26\xdf\xc1\xe1\x69\x35\xb4\xcf\xf8\x7c\xb8\x64\x39\x2b\x57\x76\xa6\xfd\x57\xd3\x21\x7d\x12\xec\xb3\xeb\x92\xfe\xe2\xbd\x99\x32\x26\x3f\xec\x09\xe8\x86\xc4\xb1\x2b\xef\xc5\xd5\xe2\x6a\x80\x49\x82\xa0\xf7\xa4\xd4\x9e\x3b\xde\xaa\xf3\x9b\xb1\x6b\x9e\x72\xb5\x22\xf6\x59\x9d\xe5\x60\xb5\x82\x77\x75\x66\x83\xef\x65\xed\x3b\xfd\xb2\x49\xed\x46\x50\x59\xea\x49\xea\x10\x1a\x6f\x69\xea\x10\x9a\x37\xbb\x06\xde\xe7\x30\x41\x96\x96\x30\x56\x79\xdc\x32\x10\x57\xbd\xc9\xad\xee\xca\x15\xae\x04\x50\xe0\xa4\x52\xff\xf8\x7c\xf8\x56\xbf\xc3\xff\x7e\x40\x5b\xe4\x9a\x4c\x05\xd0\x7a\x09\x68\xb9\x4a\x02\xaa\xe2\x12\x30\x72\x9d\xf0\xd5\x84\x8a\xa0\xa5\x22\x98\xa1\xd2\xf9\x90\x95\x97\x2a\x05\xea\x9c\x83\x7a\x87\x4e\xa8\xd7\x79\x3e\xbc\x7a\xe1\xf0\x91\xa5\x45\xef\xde\x0c\xcf\xdf\x7f\xf7\xdd\xd9\xc7\x28\x8a\xcf\x87\xe7\x05\xa8\x6d\xad\xcc\x57\x59\xec\x94\x5c\x0d\x4f\xf1\xf9\x50\x93\x66\x0f\x59\x31\x9f\xac\x87\x59\x31\xc7\x77\x93\xf5\xf0\x0e\x2f\xd2\x72\x45\x39\xfb\x95\x4e\xd6\x43\xfb\x8c\x17\x74\x9e\xae\x69\xa6\x93\xed\x0b\xf6\x52\x5d\x1a\x5c\x18\xcb\x7b\x99\xa6\x1f\x71\x95\x2f\x28\x2f\xe7\x05\x97\x39\xdd\x0b\x9e\xa7\x1b\x26\x52\x5b\x83\x79\x91\x47\x5a\xcd\x1a\xb9\xd2\x0f\x72\xc4\x06\xb1\xfe\xc0\x8b\x2f\xf7\x6a\xe1\xae\x86\xcd\x44\x38\x93\x06\x35\x0f\xf2\xb6\xa4\x62\x75\xed\xa7\x9c\x92\x2b\xf3\x04\x69\x9b\x7b\x48\xd8\x28\x78\x7c\xf6\x4b\x95\x66\xe4\xca\x3c\xe9\x1b\xf3\x35\x4f\xd7\xf4\xae\xe0\x9f\x15\x7f\xf4\x6a\xd8\x48\x03\x5c\xf7\xe7\x20\x1a\x04\x7a\xd8\xd9\xd4\xa1\xe6\xf8\x90\x5b\x9d\xe0\xbe\x38\xae\x11\x59\xb8\x8f\x8a\xbc\xb9\x1a\x1a\xd2\xe6\x25\xf4\x18\x38\x7f\x57\xde\x0b\x50\x69\x96\x9f\x78\xe5\xbd\x98\x3a\x60\x06\x4c\x45\xf0\x62\xe7\xdc\x7c\xf2\xde\x64\xa9\xb9\x47\x05\xc8\x82\xfe\x3b\xf4\x84\x53\xbb\x66\xee\x05\x9f\x0f\x95\x54\xc0\xf4\xdc\x7b\x83\x52\x9b\x7b\xdb\x7b\xf5\x28\x0f\x65\x05\xcc\xcc\x60\x08\x8d\x34\x97\xcf\x54\xed\xbf\xe2\xf3\xa1\xf2\xcc\xa7\xfa\x79\xa1\xb8\x4e\xe4\xaa\x2d\x55\xce\x96\xbc\xbd\xe9\x42\x4e\x95\x7a\xc2\xe7\x43\xed\x39\x32\xd8\x41\x8d\x34\x98\x35\xb9\x8a\xba\x9b\xee\x45\xa2\x32\xc0\x1d\x26\x57\xfa\x01\x76\x92\xe9\xac\x7e\x6a\xdd\xe9\x45\x7e\x5e\xa4\x0b\xf2\x56\x3f\x28\x74\x59\x3e\x7d\x5f\x14\x9f\x4b\xf2\x36\x78\xd5\x44\xa9\xdd\x2b\x8e\xd2\x73\xc9\xaa\xfb\x1b\xef\xdb\x85\xdd\x78\x2e\xed\x2a\x18\xea\x55\x30\xc8\x8f\x17\xff\xf8\x20\x4f\xdb\xc5\x3f\x3e\xc0\x92\x1a\x4e\xcf\x95\x7b\x96\x35\x28\x87\x2b\xe4\x7e\xa8\x1e\x14\x1e\xbd\xa1\xf9\x82\xe6\xe2\x6f\xf4\x1e\x76\xa8\x20\x37\xc3\x66\x22\x7e\x3d\xa4\x80\x08\x5d\xab\x7f\xfc\x5a\xe2\x30\x67\x3a\xc9\x3c\x42\x6a\x4e\x21\x25\xa7\x2a\x8f\xfa\x8c\x5f\x0f\xaf\x8b\x22\x23\xd7\xf0\x87\x5f\xab\x98\x46\xe4\x5a\xfd\xcb\xda\xe1\x08\x5f\xab\x7f\xfc\x7a\x78\x23\x0b\xde\x08\x78\xa2\xf0\x28\xeb\xcb\x64\x6a\x26\xe0\x89\xc2\xa3\x4c\x2d\x72\xfa\x43\x2a\xfb\xa1\x1e\xf0\xeb\x21\xa7\xe9\xa2\xac\x27\xbc\xcf\x33\x99\xc9\x3c\xe2\xd7\x96\x50\x67\xf9\xcd\x29\xd0\x05\xd7\x8d\x24\x49\x32\xe4\x0b\x72\x2d\x7f\x65\x53\x5c\xd6\xca\xf1\xeb\x61\x59\xad\xc9\xb5\xfc\x95\x83\x61\xb9\x1c\x0a\xcb\x61\x60\x5f\x60\x58\x5f\xe0\x79\x03\xcf\x1b\x99\x5f\x6e\xf0\x6b\xf8\x93\x6f\x54\xbc\x62\xcb\xa5\x4c\x50\x4f\x2a\xf7\x8b\x7b\x95\xff\x85\xec\xdd\x92\x65\x92\x1e\xbc\xd6\x0f\x36\x05\x32\x99\x47\xfc\x7a\x58\xe5\xec\x17\x72\x0d\x7f\xfa\x0d\x72\xa8\x07\x95\x52\xe4\x2a\xa1\x90\x3d\x04\x76\x6c\x29\x37\xf5\xb5\x7b\xc6\xaf\x87\x73\xb9\x19\x21\x55\x3f\xed\xbf\x1b\x55\x90\xfa\x8b\x3e\x08\xc6\x3c\xb9\x97\xe2\xa7\xad\x81\x78\x50\x77\x58\x09\xb7\xe5\x1a\x00\xb2\x4e\x39\x74\xe9\xbe\x78\xff\xfe\xf2\xec\x55\x4b\xbd\x4d\xae\x5d\xe5\xf3\x34\x2f\x68\xca\xe7\xab\x57\xac\x04\x32\x03\xda\x04\x9c\x67\x4f\x06\xb8\xa3\x9d\xa7\xeb\x3b\xf7\x8c\xef\xb4\xb3\xe0\xe1\x4a\xf9\x0c\xbe\xd3\x0f\xf8\xdc\x78\x11\x36\x39\x64\x15\x2b\x3a\xff\x7c\x5d\x7c\x91\x35\xe8\x47\x09\xda\xe8\x17\xf1\x1a\xbc\x46\xdf\xb9\x67\x9d\x7e\xca\x69\xaa\x93\xe5\x23\x3e\x87\x38\x07\x7e\x57\x82\x77\x43\xfc\x99\xf7\xb7\x69\x9e\xde\x40\x1f\x5a\x52\x65\xe6\x79\x2d\xed\x65\xba\x49\xaf\x59\xc6\x00\xc7\xbb\x93\xb7\xb8\x7d\xd5\x75\x1b\xbf\xe1\x41\xd5\xb5\x44\x99\x75\x1d\x26\xe9\x8a\x75\xbd\xe6\xa3\x97\x2a\x27\x0c\xee\x9f\xeb\x94\x97\xe4\x41\x68\x99\xe7\xe4\x6e\x68\x1e\xf1\x27\xc1\xb2\x72\xf2\x40\xcb\x79\xba\xf1\xfc\x29\x4f\xee\x86\xf5\xa4\x9d\xbc\x95\xbf\xbf\x7c\x7b\xfe\x62\x5f\x65\x3b\xbc\x87\x69\xab\x91\xa9\x28\x8a\xd5\x83\x27\x80\x5f\x89\x75\x76\x91\x2e\x69\x93\x07\x1e\x8f\xf0\x9d\xfd\x8c\x74\x60\x44\x64\x31\x33\x57\xd2\xe5\x72\x1f\x59\x29\x7b\xaa\x3f\xbb\x97\xfd\xbb\xfe\xf2\xec\xed\x87\xf3\xd3\x4b\x60\x4f\xcb\xad\x7d\x27\x31\x58\x23\x24\x56\x27\xe8\x4e\xe1\x9b\x26\xe9\xe0\xf1\x80\x8e\xfe\xe3\xec\xe3\xc5\x9b\xf7\xef\xc8\x99\x87\x7d\xfe\xef\xbf\x7f\x3a\xfb\xf8\xe3\xd5\x9b\x77\x97\x67\xdf\x7d\x3c\xbd\x7c\xf3\xfe\x5d\x14\xf5\xbe\x0c\x7f\xfe\x7b\x45\xf9\xbd\x39\x1b\x07\xd8\xe9\x7f\xd8\xcb\xbc\x30\x95\xec\xea\x82\xf0\xa0\x67\x23\xd5\x33\x46\xef\x60\xe5\xc9\x03\x2b\x2f\xd8\x7a\x93\xd1\x97\x19\x9b\x7f\x9e\x7c\x19\x06\xef\xf2\x94\x6b\x2f\xd9\xb2\xc8\xe4\xcb\x30\x4c\x90\xdf\xe5\xbf\x4e\x52\xdf\xbd\x04\xf3\x5d\xc5\x35\x74\x9f\xd5\xbb\xf9\xaa\x1c\x7a\x7f\xa4\x73\xe1\x65\xf1\x12\x83\x5a\x58\x7e\xe3\x3e\xd5\x6a\x0c\xbe\xc9\x52\x1f\x8b\x02\xbe\xea\x7a\xed\xab\xfc\x06\xa1\xbb\xbd\x8f\xee\x1d\xb3\xf2\x42\x07\xc3\x04\x5e\xea\x6b\x13\x3e\x7d\x22\xf7\x52\xfb\xa7\x9d\x06\x2e\x06\x8f\xfa\xe2\xbf\xf9\x90\x4e\x89\x56\xc8\x97\x7a\x8a\xc1\xb1\x5e\xb1\x72\xa3\xe9\xe9\x2f\xf5\x14\x09\xaa\x0a\x2d\xca\xb8\xb0\x8f\x12\xf7\xac\x44\xe1\x7d\xf1\x5f\x01\x06\x94\x2b\xef\xab\xff\x2a\xbf\xb2\x52\x14\xfc\xde\xcf\x10\xa6\x48\x74\xa6\xc8\xa9\x97\xc1\x7f\x05\x5a\xc0\xa0\x51\xaf\x0b\x4e\x2e\xc2\x77\x4f\xa4\xe1\xd0\xad\xd7\xe9\x5c\xb6\x40\x2e\xf6\x7f\x6b\x2d\xd7\x5a\x40\x22\x5f\x45\x25\x28\x7f\x75\x71\x4e\x2e\xdc\xb3\x4d\xb7\x89\x26\xc5\x24\xe0\x78\x84\x43\x5c\x11\xc5\x4a\xf4\xe6\x8b\x7d\xfa\xf8\xad\x4f\x20\xbe\x4a\x45\x7a\xba\x48\x37\xb2\xe2\xf7\xfe\x9b\x2f\xfc\x00\x19\x82\xcb\xd5\x9a\xae\x54\xe9\x57\xa9\x6c\x54\x29\x14\x19\x40\x7a\x24\xaf\x10\x96\x51\xde\x47\x51\x04\xb9\x4c\xfb\x07\x72\xb6\x55\xa7\xc8\x67\x1d\xd1\xfc\x57\xb2\xa7\x2a\x9d\xab\x23\x77\x70\x29\xc8\xaf\xf0\x87\xd5\xdb\xd0\x0c\xe2\xd7\xa1\x1b\x26\x7c\xf8\xfb\xa7\x9c\x09\xf7\xd5\x7f\x55\xcc\x8f\x6a\xf3\xba\xe0\x9a\x3e\x27\xbf\xd6\x53\x76\x7b\xe7\x5e\xab\x77\x7f\x4f\xce\x3d\x89\xec\xf7\x38\x1f\xbe\xb9\xb8\x7a\xf7\xfe\xd5\xd9\x34\x1f\x2a\xcd\x89\xa1\xd6\xbc\x20\xe7\x13\x27\x79\xd5\x69\x4a\xf2\x4a\xda\xd2\xc9\xb9\xaf\xc6\x61\x45\xf9\xbf\x4f\x31\xde\x25\xf4\x9f\x0e\xc7\xc7\xc3\x51\x5f\x55\x1e\x28\x78\xec\xab\x5a\x69\xcc\x34\xe4\xcb\xaa\x58\x14\xb5\x68\xe9\xe8\x81\x6b\x45\x93\x8e\x98\xc6\xf6\x85\x84\xdf\x30\xd5\xb3\xa4\xd3\x31\x35\xf3\x47\x04\x9a\x78\xc5\xc0\x3c\xcc\x66\xd6\x6f\x2e\xab\x1a\x0e\x97\xc7\xe5\x88\xd3\x79\x71\x93\xb3\x5f\xc3\x08\x07\xbf\xdd\x8e\x20\xd0\xf9\xf2\x03\xe5\x58\x43\x1b\x15\x93\xd0\x29\x5c\x5d\x5d\x99\x58\x2e\x3a\x94\x9f\x4c\xc2\x74\xa7\x34\x84\xea\x7a\x57\x4e\x73\x5c\xbb\x25\x5b\x6b\x88\xaa\x3d\x6a\xcb\x3a\x6e\x20\x52\x2e\xf8\x39\xf7\x34\xdc\xf7\xab\x93\x9a\x32\x3a\x70\x3c\x87\xf8\xcd\xa7\x8b\x05\x00\x92\x28\x8a\x29\x09\x93\x62\xbf\x61\xe3\x53\x98\x1a\x5f\x52\x26\x3d\x5d\x2c\x3c\x9d\x5c\x8a\xb4\xf6\x16\x98\x70\x3a\xbb\xcd\x16\x8f\x9e\xe0\x0e\x6a\x95\xde\x2a\x2f\x9e\xc6\x54\x82\xe5\x5d\xb1\xa2\xd6\x43\x54\x77\x93\x96\xa5\x72\xfa\xf9\x4f\x51\xfc\xb3\xaf\x8d\xa6\xbc\xc6\xe1\xd2\xf3\x7b\x80\x6b\x53\x84\x76\x3b\x6d\x6c\xd1\x54\xf6\x2e\x20\x38\x37\xb7\x66\xca\xb2\x2e\x4e\x73\x97\xa2\x46\x4d\xa8\x17\x97\xa2\xa8\x59\x1f\xdb\x5a\x19\x4e\x8d\xc3\x6d\x3a\x00\x0f\x83\xbd\x14\x79\x71\x38\xf3\x58\x05\xf6\xee\xa4\x71\xa1\x1f\x7d\x3d\xad\xb4\xe9\xe1\x7f\xd4\x74\xa1\x3f\x40\xf9\x80\xd0\x84\xcd\x7c\xf5\x64\x6d\x3b\xf8\x20\x93\x26\x82\x08\x90\x8a\x0a\x08\xd9\xba\xd2\xf2\x5b\xbe\xeb\x50\xa3\xca\xbb\x63\x07\x2c\x5a\x82\xa9\x49\xe8\x8c\x88\x1d\xae\xe5\x87\x29\xdf\x63\xfa\xab\xe2\x4b\x33\x17\x6d\x5f\x4f\xa9\xac\x29\xed\xa8\xd9\x91\x33\x98\xe2\x1c\x75\xf2\x28\xca\x0d\x78\x3b\x93\x44\xa4\x44\x1c\xeb\x29\xb1\xc0\x25\xc2\x3c\x2e\x91\xb7\x08\x65\x10\xc3\xa1\xdc\x64\x4c\xc4\xfd\x27\x7d\x65\xe4\x9f\x21\x10\x88\x42\xc2\x4e\xf9\x94\x7c\xf2\xc7\xed\x4f\x4f\x9e\xdc\x74\xf6\x04\x81\x50\xd3\xf8\xfc\xe9\x76\x7b\xa4\x9c\x96\x9a\x98\xf4\xfd\x3f\xf6\xd1\x94\x4e\x16\x74\x5e\x2c\xe8\xa7\x8f\x6f\x2c\xca\x13\x53\x34\xe4\x74\x93\xa5\x73\x1a\x57\x98\xe6\xf5\xef\xaa\xe1\x39\x79\xf2\xc7\x78\x3a\x39\x8e\xa7\x93\x67\xdb\x3f\x6f\x5f\x6c\x5f\xa2\xed\xd3\x78\x3a\x79\xb1\x7d\xb5\x3d\x45\xdb\x67\x23\xe4\xf7\x69\xe9\xf7\xa9\x51\xa3\xdf\xe2\x1c\x37\x7b\xa4\x5a\x5c\x91\x27\xf1\x4f\x4f\xb6\x3f\x0d\xb7\x3f\xfd\xcf\xed\x4f\x83\xed\x4f\xd3\xed\x4f\xdb\xed\x4f\xf1\xf6\x27\xb4\xfd\x29\xd9\xfe\x34\xdb\xfe\xf4\xb0\xfd\x69\xb7\xfd\xe9\x27\xf4\xe4\x06\x2f\x48\x10\xbb\x0b\x6f\x0c\x60\xf3\xc8\x9b\xb4\x7c\x7f\x67\xc5\x42\xae\xb3\xeb\x86\xa2\xa6\x75\x04\x47\xb7\x5b\x63\x4b\x78\xe0\xe8\xcb\x93\x2d\x8f\xbe\x2a\xdd\x4d\x4b\x38\xf8\x25\x9d\x17\xf9\xc2\xc1\x03\x79\xf0\x0d\xc2\xf4\xcf\xa1\x72\x14\xdc\xdb\x68\x8f\xd0\x58\xa0\x43\x0d\xf0\xe2\x96\x2d\x68\x77\x93\xf2\x74\xdd\xfd\x27\x98\x2c\xfc\xb3\x59\xa1\x76\x15\x98\x88\x19\xce\x49\xd3\xca\x6a\xca\x27\xfd\xfe\x80\x5b\x8f\xab\x8f\xc3\x34\xd3\x6e\x1a\xb6\x3c\x74\x0e\x87\xf3\x9d\x72\xa8\x92\xcc\x3a\xb7\xc9\x68\xb6\x57\x13\x5d\x80\x26\x3a\xe8\x81\xe2\x16\xab\x6a\xad\xe3\x9f\x0f\xe7\xab\x94\xbf\x2c\x16\xf4\x54\xc4\x0c\x75\x24\xce\xb0\xa9\x44\x0c\x66\xbf\xbd\xb1\xb5\x4d\xe7\x3b\x7c\x9b\x8c\xeb\xad\x59\x2f\x03\xb2\xc8\xb3\xff\xc0\xbd\x91\xf2\xc3\x7e\x9b\x1c\x1f\xcc\x7a\x34\x86\xea\x55\xd6\x67\xfb\xb2\x2a\xd0\x7b\x2f\x47\x7a\x1f\x8e\xd4\x3b\x7d\x30\x40\xbb\xb7\x57\xb8\xff\xd3\x4f\x7f\x18\xf7\xd1\x0e\xdf\x07\xdd\xb5\xaa\x65\x71\xf2\x9f\x4f\x66\x03\xd4\x97\x19\x8e\x5b\x33\x0c\xf5\xd7\x67\x6d\x5f\xfb\xaa\x53\x37\xb2\x53\x37\x87\x3b\xb5\xc3\x37\xcd\x19\x53\x6b\xb3\x8e\x05\xd6\xb9\xec\xba\x5e\x0e\xcf\xde\xbd\x7c\xff\xea\xec\xea\xf4\xdd\xab\xab\x57\x67\xf0\xf8\xe1\xf4\xf2\xfb\xab\x8b\xb3\xef\xde\x9e\xbd\xbb\xbc\x98\x2e\x63\x8e\x26\x5c\x56\xbb\x6f\x76\xfd\x7a\x65\xbe\x43\x43\xb8\xae\xf9\x10\x7e\xd8\x21\x7c\x75\xc8\xaf\xf0\x9d\xc5\x2f\x3c\x0b\xfa\x67\xff\x01\x77\xb5\xb7\x89\x46\x12\x69\xf7\xee\x91\x31\x42\x9e\x33\x34\xe1\xc1\x5b\xcc\x88\xf5\xea\x60\x3c\x25\x35\x8d\x01\xd5\xad\x88\x2b\x08\x0e\x8e\xe7\x64\xd4\x19\x1f\x47\x71\x49\x8e\x9f\x3f\x8f\xe7\xa4\xdf\x27\x84\x54\xd3\x67\x93\x3f\xfd\x45\x3e\x84\x1d\x99\x8e\x27\xcf\x8e\x5b\x92\x8f\x27\x23\x24\x7b\x59\x91\x4a\xab\xb7\x8f\x11\x8e\x19\x61\xdb\x6d\x32\x43\xea\xa6\xab\x10\x8e\x0b\x52\x78\x29\xa3\x1e\x89\x9f\x45\x25\x42\x08\x8f\x9f\x45\x65\x14\xf1\x64\x3e\x1b\x0c\xb0\xbe\x1a\x1f\xe4\xa1\x9f\xcc\xb1\xd2\xcd\xcf\xe2\x0a\xed\xcc\xe9\x79\xc8\xd3\x35\x2d\x27\x6c\xbb\xbd\xc2\xe5\xaa\xa8\x32\x50\xc6\x58\xd0\x72\x52\x6c\xb7\x57\xde\x35\x7e\x56\x43\x0f\x28\x74\x5c\x07\x28\x1a\xe6\x0a\x6b\x23\x3a\x08\xca\x97\x76\xff\xf7\xda\xe0\x45\x38\xaf\xb4\x6c\x61\x30\x3f\xa8\x4d\xbb\x19\xd5\xb5\xe5\xe6\xed\x8b\xb8\x50\xa5\xd8\x54\x4c\xbc\x50\xc2\xa9\x10\x94\xe7\xa4\xdf\xb7\x4e\x2c\x6e\xe8\x17\xb3\x5e\x90\xa4\xd1\x84\x32\x48\x94\xb3\x61\x52\xbc\xbb\xf7\x22\xd8\xaf\x66\x4c\x53\x35\xd0\x1e\x0c\xf4\x08\xe2\x63\x40\xc2\xc4\x4d\x80\xbd\x5d\x65\x82\x17\xf6\xbf\x0e\xf6\x12\x09\x89\x25\xee\x63\xf1\x9e\xfc\x39\x03\xc3\x3f\x1b\x3d\x28\x9f\x75\x34\x69\x34\x4f\x45\x5c\x28\x84\x30\x16\xc8\x03\x76\x5f\x02\xa3\x2f\x39\xe0\x7d\x26\xcb\xf0\x75\xbb\x8d\xfd\xc9\x91\x80\xfd\x23\xbd\x39\xfb\xb2\x89\xfd\x39\x44\xc8\x9f\xc2\x1d\xf6\x1b\xb9\xa1\x07\x6c\xb9\xdc\xe2\x78\x41\xf7\xc1\xb0\x17\xac\x76\x3d\x9c\xef\x24\x77\xf6\xba\x79\x68\x79\xa4\x37\x45\xc2\x93\x7c\x06\xa6\x5b\x67\x31\xc3\x70\x0b\x1a\x83\x87\x9d\xe7\x9a\x3a\x28\xa1\xb3\x17\x41\xf6\x62\x17\x8e\x60\x53\x89\x76\x0f\x20\xd0\x67\x55\x21\xd8\xf4\x78\x75\xe4\x9d\x46\xff\xec\x35\x07\xb3\xf8\x25\x66\x98\x19\x2b\x4e\x55\x29\x66\x89\x49\x99\x91\x5c\x7b\xc6\xaa\x4d\xd3\xb4\xbe\xa7\xf3\x21\x5b\x4c\x34\xa6\xef\x92\x51\x3d\x9f\xb6\xf8\x1a\xb2\x85\x0e\x4b\xec\x55\x91\xd4\x12\xb0\xcc\x36\xc3\x79\x38\x0b\x4a\xaa\xb4\xc7\xdf\x53\xb8\x8e\x3d\x63\x73\x92\xcc\x3a\x66\xef\x76\x60\x4d\x45\x7d\x4d\xc5\x23\x6b\x2a\x60\x4d\x2f\xe4\x82\x22\x49\x9c\xc1\x30\x18\xda\xb7\xa0\x42\xe6\x2d\xfc\xbc\x85\xb7\xf7\xa1\x33\x2d\xd6\xad\xa1\x35\xe3\x2f\x15\xe5\xf7\x3a\x26\x22\xdd\x6e\x1f\x76\xde\x21\x3f\xb5\xe3\xee\x50\xe2\x2e\xe7\x27\x3f\x0d\x9e\xdc\xac\x71\xff\x8f\xc7\x23\x49\x8b\xf1\xfb\x07\x41\x5a\x91\x63\xed\xe7\x48\x5e\x35\xa4\xdf\xdf\x59\x7c\xe0\xb3\x37\xd1\xca\x19\x89\x46\x41\xeb\xc9\x38\xc8\xd9\x9e\xb1\x91\x0f\x4c\xe8\xea\xd9\x64\x22\x4c\xc8\x65\xc3\xec\x13\x80\xba\xa4\xf6\xb4\x4f\x48\x88\xf2\xa1\x36\x2d\xc5\x23\x2c\x71\x9c\x91\x44\xa1\x3a\x10\xc9\x55\xe0\x16\xc8\xcc\x8b\x42\x6d\x08\x22\x76\x9d\xcb\x83\x84\x95\x17\x6d\x8c\x84\x65\x31\x23\xfd\xff\xec\xe3\x82\x24\x23\x3c\xc2\xe0\x60\xd3\xb9\xed\xb4\x86\xbc\x18\xdc\xd7\x55\xa4\x37\xc2\x19\x19\xc9\x7b\xf4\x64\xee\x68\xc3\xb9\xdc\x57\xa6\x89\x25\xa1\xc9\x7c\x86\x57\xe4\x2e\x2e\xf1\x52\x51\xc6\x05\xc2\x0b\xb2\x52\x63\xc6\x1b\xb2\x1a\x06\xf7\xd8\x49\xf6\xdc\x1a\xaf\x66\x66\x8b\xae\x49\x99\x64\xb3\xce\xb3\x1e\x21\x6b\xb8\x0e\xe0\xc6\xed\x8d\x71\x4e\x72\x8b\x30\x02\x92\x89\xd9\x80\xf4\x9f\xf4\x71\x4e\x6e\x13\x95\x75\x16\xaf\x71\x0e\xe9\xf7\x2e\x05\xa1\x5d\x9a\xcc\x67\xe4\xc1\xd0\xa5\x4b\x73\xf5\x60\x75\xc1\x2e\x6a\xb7\xeb\x66\xb7\xab\xc0\xc9\x71\x7b\x7b\x08\xe7\xee\xee\x4a\x71\x6e\xef\x3a\x36\xe8\xff\xa1\x8f\x73\x7d\x87\x15\xf8\x90\x35\x59\x14\x89\x61\x5a\x2a\x37\x66\xc3\x54\x12\x9b\xc6\x05\x0a\xf4\x09\x4c\xdf\x4b\x7a\x03\xee\x1f\x27\xa5\x21\xa9\xcb\x49\xba\x43\x3b\x7c\x19\xd0\x4a\xea\x4b\x3d\x7e\x99\x0f\x3f\xa0\x46\xed\x46\xba\xc5\xd0\xfa\x72\x45\x39\xed\xb2\xb2\x9b\x17\x5d\xa0\xc1\xbb\xb2\xc4\xa2\xdb\x1f\x50\xdf\x30\xde\x73\xea\x6a\x5b\xb5\xdb\xc4\x00\x9c\xda\x87\x00\xf2\xd8\x8f\x70\x95\x26\xf9\x8c\x30\x8f\x4e\x08\x07\x55\x2a\x96\x73\x13\x4d\xee\xf5\x82\x31\x85\xe5\x0c\x91\x75\xe0\x4e\xd4\xe5\x24\xdd\xd5\x87\x09\x69\x09\xfe\xf2\x55\x13\xc2\x08\x1f\x9a\x15\x32\x01\x41\xcc\xa8\x0b\x33\xea\x94\xb0\xa4\x50\x9b\x39\x35\x9b\x39\xd7\xbb\x76\x40\x6e\x92\x54\x6f\xd2\x14\x3b\x3c\xa2\xff\xa4\xdf\x23\x9a\xc2\x32\x88\x71\x2e\x8b\x0c\x72\x84\x61\xe3\x78\x40\x54\xd5\xa7\x6f\x49\x35\x78\x90\x67\x29\x89\x5e\x1c\xe4\x45\x48\x5e\x3b\x6d\xf3\xe5\x15\x69\xd9\x44\xc9\x0c\x73\x83\xe1\x7f\xa6\xf7\x65\x2c\xa9\x0f\x50\x08\x88\x7d\x1c\x7d\x1f\x16\x21\x57\x1a\x43\xf8\xc5\x99\xc3\x43\x6c\xf8\x9f\x16\xa6\x03\x43\xea\x3e\x2b\xdc\x7d\x56\x92\xd1\x49\xf9\xbc\x30\xb5\x97\xa6\xf6\x4a\x1e\xba\x64\x46\xfa\x83\x96\x7a\x8a\xa4\x9c\xa1\x8e\x30\x88\xb9\xb2\x0e\x4f\x07\xa4\xbf\x27\x3b\xd2\xe1\xba\xe2\x14\xd9\x90\xa7\x3e\x4f\x71\xda\xef\x4f\xfa\xd3\xfe\x40\x68\x56\x4f\xd4\xaf\x9d\x45\x70\xb4\xbb\x6f\x2e\xbd\x50\x2e\x86\x98\x89\xfa\x08\x73\xf2\xb0\xc3\x07\xae\xeb\x24\x9f\x99\xec\xa4\x8f\x70\x41\x4e\x63\x96\x8c\x66\x08\xa7\xc4\x4c\x07\x2e\x25\x78\x34\xfe\x5f\x3b\x12\xdf\x35\x3b\x71\x5a\x91\xbe\xe0\x15\xed\x4f\xe2\xf4\xdb\xe3\x28\xea\x27\x33\x49\xf9\x14\x9a\x7e\x49\x8f\x8e\xe5\xee\x2a\xc1\x9d\x7b\x52\xd8\xf4\x11\x96\x5f\x66\xdb\x6d\xcc\x93\x62\x46\x92\x19\x42\xb8\x02\xff\xcb\x53\xd9\xfc\x78\x86\x26\xfd\x3e\xc2\xe5\x54\x7e\x36\xf3\x3b\x81\xbc\xd5\x9e\x23\x6d\xb9\xe0\x6d\x71\x10\x35\x96\x64\xef\xa6\x99\x89\xbf\xd3\x1b\xcb\x9d\xe3\x58\x63\xff\xa3\x8f\x4e\x00\xd1\x2f\x80\x79\x4c\x0d\xb5\x38\xc2\x05\x32\x61\x0a\xbd\xec\xd3\xbe\xf6\x76\x2b\xcf\x9f\xd9\x31\xb6\x50\x3a\x18\x63\x7b\xd1\x75\x82\xda\x52\xe4\x7c\x20\x84\x6b\x2a\x37\x92\x3a\xa1\x34\x38\xa1\x14\x4e\x28\x45\xda\x47\x30\xed\x3c\x4e\x98\x53\x22\x8f\xd2\x24\xa6\x0e\x9d\x89\x29\xc2\x99\xf7\x9a\xe9\x51\xcd\x2d\x5d\xd2\x99\x7f\x3b\x8e\xa2\xfe\x93\x3e\xf1\x7a\x30\x3f\x1a\xa3\xfa\x84\xc8\x34\x9c\x91\xcc\xa5\x64\xd6\x8f\x81\xa4\xa1\x7b\x23\x77\x78\x97\x64\x74\xb2\xb4\xd7\x3a\xdc\x4a\xef\x63\x8e\xa9\x4f\x00\x2f\x11\x42\x66\x83\x2e\x07\x03\x74\x62\x0a\xaf\x24\x80\x58\x90\xd1\xc9\xc2\x1d\xff\x05\xf8\xf8\x5e\xcc\x2c\xc8\x8f\xa2\x95\x0e\x36\x91\x2c\x66\xa8\xc3\xdb\x19\x20\x00\x53\xda\x60\x37\x55\x97\xea\x76\x6b\x90\x95\x9c\x70\x15\x2b\x87\x27\x63\x09\x5d\x78\x72\x0c\x9e\x90\xeb\xf9\x4a\x92\xca\x7c\x15\x49\x65\xbe\x8c\xa4\xc9\xb1\xf5\x74\x97\x59\x9a\xe4\x08\xbc\xa7\x16\xc0\x5a\xcc\x7b\x84\x94\xe6\x4b\x79\x04\x74\x08\xeb\x11\x52\x99\xb4\xea\xc8\x5e\x5b\x90\x3e\x65\x47\xd5\x04\x4a\x4d\xcb\xa3\x7c\x32\xda\xa1\x5d\xbc\x52\xcb\xb6\x21\xab\x64\x64\x7d\x65\x6f\xa2\x68\xe3\x4d\x48\xcc\xe4\xbb\x46\x1e\xa2\x08\x38\x48\x7f\x90\xcb\x6a\x13\xf5\x69\x3c\xfa\x93\x5c\xdc\x4c\x23\x1f\x7b\xc8\x25\xe2\x50\x01\xa0\x62\x81\x58\x54\x3e\x38\x7a\x6c\xbb\x0d\xc2\x32\xe8\x6b\x0e\x90\x4a\x08\xbc\xc0\x9c\xc9\x7c\xdf\xc4\x10\x14\x9a\xc0\x65\x12\xd4\x8c\xb1\x72\x50\xf5\x39\xe6\xa8\x63\x71\x7a\xc3\x70\xf1\xe2\x75\x8e\x4e\x2a\xc7\x87\xa9\x0c\x1c\xcb\x48\x9e\x54\x33\x3c\x27\x99\x46\x05\x97\x72\x5f\xfa\x48\x17\x5e\x91\x6b\xbc\xd0\x61\x28\xe6\x3d\x42\xae\xa2\x68\x29\xff\xec\x15\xb0\x21\xa3\x93\xcd\xf3\xb9\xa9\x7b\x23\xeb\x5e\x90\xde\x48\xfb\x94\x9e\x27\x9b\x19\xbe\x85\xd0\x9a\x49\x3a\x18\xcc\x3a\x2b\x42\xc8\x75\x14\xc5\x2b\xf2\xb0\x43\xf8\xd1\xd3\x18\x45\xcb\x64\x33\x9b\xae\x92\xf5\x8c\xdc\x46\x51\x0b\x81\x71\x8b\x26\xea\xeb\xae\x4c\x2a\x0f\x9d\xcc\x2c\x3a\x09\xbc\xd7\x72\xb2\xc2\xac\xd4\xc1\xf3\x27\x0b\x7b\x93\x94\xbb\x78\x83\x33\x0c\xe4\xbc\x04\x8d\x46\xcf\xa5\x3f\x1a\x3e\x1d\x3e\xeb\x3f\xde\x43\x09\xa4\x2f\x87\xef\x0a\xbe\x86\x95\xe2\xe4\x21\x37\xcf\x17\x0a\x0f\x99\x64\xd8\x26\x7d\x48\xc5\x6a\x52\x6a\x29\x81\x7c\x31\x79\x96\x21\x5c\x5e\xa7\x9b\x56\x6c\x09\x44\x2a\x1d\x1a\x17\x71\xbf\x8f\x79\x4d\xbc\xe5\x42\x87\x77\xa9\x75\xfb\x6e\x6f\xb8\x82\x70\x2d\xcb\xc1\x65\x80\x37\x14\xf2\x16\x91\x3b\xa4\x6c\xd9\x21\xa5\xda\x21\x42\x6f\x7a\xd4\x49\xe3\x39\xce\x70\x91\x64\x33\xb5\x25\x97\x84\x3b\xd1\x4e\x36\xeb\x2c\xa7\x34\x9e\xe3\x25\xb4\x3d\xc9\x15\x7b\x9e\xe1\x39\xda\xed\x62\x89\xb1\x04\xf2\x55\x31\x55\xbe\x0c\x31\xd5\x14\xba\xf2\x78\xa6\x82\x3c\xe9\x40\x40\x2f\xc9\xa5\x27\x7a\x7d\xe9\x89\x70\xf9\xd5\xcf\x65\xe8\xb3\xa0\xc5\x0a\x3b\xf0\x6e\xd2\xe7\xe5\xed\x46\xfe\xd5\x25\xc0\x6d\x06\xd9\x0d\xf1\x6f\x56\xdc\x9c\x5e\x17\x5c\x90\x3b\x4c\x87\x6f\xb4\x11\x3a\x20\xc4\xe0\x0c\x9b\x0e\x2f\x79\x9a\x97\x4c\xd6\xa2\x0c\x31\xfd\x14\x45\x18\xd2\xa1\x52\x99\xfa\x70\xfa\xf1\xf4\xed\xc5\xd5\xc5\x8f\x6f\x5f\xbc\x3f\x27\x74\x58\x7f\xbf\xb8\x3c\xbd\x3c\x73\xaf\xa6\x31\x57\x1d\x69\x95\x46\x17\x7b\x5c\xce\xd8\xed\x03\xfd\x52\x6b\x02\xf3\x6e\x64\x73\x10\xb1\xb9\xef\xaa\x87\x71\xd2\x85\xe6\x12\xae\x69\x59\xa6\x37\x14\x9c\x6d\xb4\xe4\x31\x95\x6e\x44\xc5\x95\xc3\xe7\x4b\x9e\xce\xe9\x74\x4f\x7a\xb8\xe2\xca\x49\x1a\x57\xff\x2d\xbe\x70\x6a\x3e\x55\x54\x9d\xf6\x2b\x0a\xdd\x67\x39\x57\x22\x84\x2a\x27\x3c\xe9\x1e\x56\x41\xf9\xf5\xe2\xad\xaa\x46\xb2\x83\x60\x1a\x95\x7a\x16\x31\x87\x2b\x1e\x42\x09\x26\x7c\x56\x0f\x2e\x6f\x30\x29\x1a\x45\xd4\x8b\xd8\xc7\xa3\x88\x3b\x6f\x57\x34\xe1\x47\x63\xb8\xff\xda\xae\xdf\x28\x2a\x8d\x90\xab\xef\x91\x0d\x7d\xb4\x8b\x73\xcb\x7b\x13\x24\xf7\x69\x0a\x9c\xa4\xa6\xcc\x08\x73\x89\x59\x88\x99\x8b\x1f\x27\x71\xfd\x30\x66\xbd\x87\x07\xcb\xe1\x51\x7b\xc1\x27\x02\xfa\xe5\x7c\xd1\x5b\x97\x83\xf2\x13\x01\x79\x98\x89\x3b\x18\x08\x10\x6b\xac\x4c\x89\x12\xd4\x59\xb8\x40\x6b\xca\x1a\x92\x7c\xb6\xdb\x85\xb2\x4f\xf0\x7a\x96\x15\x37\x3e\x82\xfe\xef\x8a\x68\xa2\x03\xfe\xf1\xc0\x79\x2b\x53\x98\x4b\x01\x98\x8b\x3a\xec\xb1\xb7\xd9\xbb\xff\xa3\x3f\x60\x83\xfe\xa4\xdb\x1f\x14\x1e\x27\x2e\x85\x52\x3a\xbb\xa4\x4f\x82\x08\xfa\x56\x48\x53\x17\x25\xd2\xed\x96\x76\x8d\xf7\x88\x62\xd9\x55\x38\xec\x76\xdb\x98\xe6\x7a\xc6\x77\xf0\x7d\x7f\xf0\xfa\x86\xc7\xaa\x28\x52\xd1\xc9\x60\x87\x22\xf0\x44\x73\xe2\x8a\x6f\xbc\xab\x45\xe2\xf6\x69\x96\x4d\x1e\x76\x58\x99\xea\x2d\x20\xb8\x3c\x18\x61\xc9\xc7\x5d\xa7\x8a\xf3\x61\x9a\x65\x12\x68\xa8\x19\xeb\x8d\x95\xe3\x31\xb9\x65\xe4\x26\xc2\xf3\x58\x20\x4c\x91\xdd\xaf\x70\x36\xbc\x93\xb2\xdd\x2a\x4f\xf5\xb9\x36\xee\x5a\x80\x67\x3e\xd9\x33\xe4\x6a\x12\x88\x2d\xfd\x42\x8e\xd5\xcf\x55\x54\x0d\xc5\xc1\x5e\xc7\x05\x8a\xa2\x75\x9c\x22\x04\x0e\x32\xd5\x98\x81\xa2\xd7\xeb\x9a\x6b\x9b\xc3\x85\x39\x9c\x80\x5e\x87\x5e\x31\x33\x32\xc2\x4b\x4b\xb2\x9d\x64\xcf\x97\xc0\xf2\x2a\x54\xf0\x90\x34\xc9\x66\xe0\x71\xa7\xad\x22\xed\xf5\x52\x76\x4b\xce\x70\xc2\x0f\x64\xb5\x98\xe9\x34\xd7\xae\x12\x77\xbe\xf8\xdc\x1e\xf6\xf0\x08\x51\x0f\x9a\xdc\x7a\xdb\x49\x29\x00\x4e\xc0\xc5\x9d\x12\xaa\xf6\xaf\xae\xd4\x95\x71\x75\x74\xfc\xe7\xf1\x5f\xff\xf2\xe7\xd1\x68\x34\x7e\xfa\xec\x4f\x7f\x3d\x1e\x1d\x3d\x7d\x7a\x7c\x7c\xf7\x54\x5e\x60\xc1\xad\x72\xaf\x45\x9f\xfd\x2b\x73\x1b\x99\xb2\xc7\x4f\x8f\xff\xfa\xd7\xe3\xbf\x3c\x1d\x1d\x8f\x9e\x1e\x1d\x3f\x7d\x7a\x0c\x85\xc3\x2b\xea\x46\x4b\x1d\xfb\x57\x57\x7f\xff\xe0\x8a\x3e\xfd\xeb\xf1\x5f\xff\x72\xfc\xec\x2f\xcf\x9e\x1d\x3d\x3d\xd6\x05\xdb\x6e\xbc\x6b\x28\x7e\xb5\x3f\xae\xa4\x41\xa0\x15\x67\xdc\x8f\x54\x6a\xc4\x95\x4f\x5b\x23\xe7\x3e\xf5\x83\x35\x3f\x35\x71\x98\xfd\xd0\xa6\xa6\xfc\xb3\xd6\xf2\xcf\xfc\xf2\xcf\x6c\x1c\x67\xe3\xc9\x70\xc9\x8b\xb5\xe7\x83\x5c\x14\x81\x94\x8c\x95\xfa\x4e\xb4\x2e\xf3\x59\x79\x3a\x17\xec\x16\x7c\xa4\x40\x42\xc5\x33\x6d\xc1\xd8\xaf\x36\x8b\x54\xd0\xbe\x75\x27\x58\x64\xb7\x8d\x90\xd0\x06\x9e\x83\xad\x89\xab\xd4\xc3\x03\x7a\xb6\xed\x97\x69\x55\xd2\xc5\x8b\x7b\xe8\x03\xcb\x6f\xfc\x4c\xe3\x7a\x26\xed\x8d\xeb\x60\x1e\x53\xd1\x47\xc5\xf1\x6f\xc9\x7b\x75\xcb\xc0\x87\xd7\xdf\x3d\xf1\x81\x0e\x73\x9d\xdc\xcf\x08\xdf\x6e\xa9\xe2\x91\x9b\xa0\x11\x82\xe6\xc2\x30\xcf\x15\x0e\x67\x98\xe7\x8b\x54\xa4\x8a\xff\x2a\x9f\x20\xe2\xa6\x3f\x31\x8b\xb7\xc5\x82\x66\xae\xf6\xeb\x99\x8d\xa7\xbd\x51\x56\x5a\xc1\x4a\x80\x6d\xa6\x9f\x92\xdc\xb8\x02\xdc\xa0\x6c\x2e\x06\x8c\x52\xee\x7a\x27\xb1\x20\xbf\x9a\x0d\xbb\x2d\x84\xb1\x82\xf3\x3f\x94\xf4\x97\x8a\xe6\x73\x4a\x8e\xc6\xb8\x08\x3c\xf1\x9b\xde\xe4\xc6\x7a\x6c\xc8\xa9\x44\x34\x24\x96\x2d\x6b\x88\xbd\xfe\x15\x2e\x5a\xc4\xe1\xe5\xeb\xa5\x5f\xb1\x7e\xbd\x34\x8a\xe2\xf4\x50\x9e\xed\x16\x62\x33\xd9\xde\xa3\xdf\xb0\xe2\xb2\xf6\xbe\x96\xfd\xf4\xa1\x16\xbb\x95\xa3\x28\xee\xa5\x07\x47\xb0\xdd\xb6\x7d\x6f\xb4\x82\x8c\xbe\xa3\x5c\x2d\x3e\x54\x74\x9b\x5d\x6f\x1e\x20\x38\xf5\x95\xe4\xde\x8b\x56\x2e\xf3\x93\x0c\xee\x55\x1a\x7e\xbe\xb7\xe2\x7e\xbe\xa4\x3c\x1a\xcf\x00\x1d\x46\x35\xf2\xb9\x3c\x19\x0c\x2a\x43\x15\x05\x45\x2a\xc5\xc2\xcf\x86\xac\xd4\x5e\x77\x16\xda\x31\x66\x73\x13\x65\xaa\xe0\x2e\xdc\x45\xd4\x38\x62\xbf\xd0\x29\x26\x8a\x91\xd9\x4d\xdc\x9c\x83\xb8\x29\xb9\x66\x0e\xee\x4c\x1b\xbb\xae\x37\xc6\xb7\x01\x1e\x93\xaa\x9c\xdd\xa3\xae\xca\xd1\x47\x92\x4a\x73\xa5\x54\x2b\xa0\xcc\x03\x44\xd8\x50\x49\xef\x5a\x10\xd3\x46\x5b\x4c\x1f\xe9\xa1\xb0\xcd\xbd\x62\x0b\xc5\xd5\xa0\x18\xa2\xd7\xdd\xc6\x7d\x35\x13\x5d\xe8\x71\x1f\xf9\xd1\x66\xda\x8e\x8e\xea\x8e\x06\x28\xc8\x3b\xca\x87\x02\xdc\x8b\x15\xdd\x1b\x21\xc6\x6f\x09\x32\xea\xef\x3b\x2c\xd4\x50\xf7\xa8\x2f\xf9\xc5\xd4\x94\xc8\xcf\x10\xf2\x5d\x05\x62\xf9\x8a\x72\x3a\xa7\x2d\x09\x6b\xd1\x90\x44\xf2\x42\xc5\xd5\xd0\xa2\x48\x25\x85\xd4\x2a\xb8\x6a\x82\x75\x08\xe9\xf0\x0f\x79\xe3\xd7\x02\x62\x79\x5b\xc9\x0e\xca\x4b\xcb\x4f\xf0\xee\xa9\x91\x0f\x8b\xd5\xdf\x0f\x2c\xcb\x94\x27\x87\xd8\xf8\xe8\xf5\x3f\xbf\x62\x8b\xf0\xab\x1c\x89\xe9\x73\x63\x30\xb6\xa9\xed\x36\x5e\x06\x63\x08\x4e\x40\x1d\x0a\x4b\x4c\xdb\xed\xa2\xee\x5d\x5a\x9a\x8d\xdb\x47\xd8\x5e\xdb\xde\xa5\xe2\x44\x78\x7e\x5a\xec\xbd\x0d\x37\x9c\xd6\xc9\x71\x7f\x70\x70\x4f\xa1\xc6\x45\x3e\xaa\x5f\xe4\xe3\x60\x4a\x52\x48\xf5\x00\xa5\x5e\x0c\x98\x14\xba\x60\x3c\xb0\x06\xa7\x8d\x25\x3e\x38\xfd\x54\x57\x23\xf8\x7d\x63\x62\x61\x3a\xac\xb4\xda\xaf\xc5\xcd\x9b\xbc\x02\xe4\xd0\xfd\x69\x00\x19\xb6\x17\xe6\xc1\x4c\x99\x07\xcd\x4d\xd8\xb0\x38\xfc\x00\x21\x1a\x84\xfe\xd6\xc6\x28\xae\x21\x38\xd4\xee\x8e\xb2\x16\x5a\x58\xf5\xb9\x81\x91\x8d\x5a\x31\xb2\xd1\x2c\x8a\x82\x40\xec\x4d\x42\xf0\xdb\xf1\xd4\x8f\xcd\x6e\x90\x3e\xde\xcc\x78\xec\x65\x3c\xb6\x19\x9b\x51\x3d\xbf\x7d\xda\x8a\x46\xb2\x16\x34\xb2\x15\x5f\x54\xdb\x59\x47\xb4\x72\x1c\x25\x39\x19\x8d\xf8\x3a\xff\x5d\xf3\xd1\x69\x92\xa1\xa0\xdb\x47\xb1\xdc\xd5\xbe\x48\xb9\x41\x68\xe7\x1e\xa1\xcd\xbf\x3d\x9e\xf2\xa3\x63\x49\x68\x33\x72\x7c\xc2\x9e\x73\x13\xd7\xe7\xe8\xd8\x27\xb4\x99\x8e\x48\x63\x77\x25\x0c\x1b\x8c\xc0\x0c\x3c\xf7\xef\x67\x23\xe1\x6a\x60\xc3\x83\x31\x02\x5d\xa1\x5c\x01\xdb\x22\xcb\x8a\xbb\x8f\xfa\x64\x95\x7b\xc2\x9a\xa8\x36\x3b\xfb\x61\xb7\x2d\xe6\x6b\xaf\xd5\xcf\xf2\xb4\x99\x54\x6f\x3f\x0e\x2f\x4f\xb8\x06\x05\xda\xa9\x85\xde\xef\x11\xd1\xbb\x8f\x63\x03\x02\xbb\xfd\x41\x00\x12\x07\x7d\xd4\x97\xd5\x64\x45\x4d\x60\x79\x00\x8a\xda\xb8\x05\xbe\x9a\xa7\x33\x4f\x88\xa9\x29\x46\x5d\x99\xbe\x71\xb2\xae\x20\xec\xb0\xaf\x9c\xa6\x17\x81\x1e\xa3\xed\x79\x5d\x77\x82\x46\x51\xc0\xa0\xb8\x92\xe0\xc3\x27\x50\x76\xad\xdc\xcb\xab\x8e\xd2\x79\x94\x2d\xfd\x40\xd3\xcf\x81\x33\xdd\x8b\xd8\xf2\x9f\x9a\x3b\xbb\xf5\x4c\x8c\x67\xe1\x86\x07\xd9\x6d\xf3\xf0\xb7\x96\x3d\x0e\xce\x93\x8b\x1b\x4d\xc3\x28\x81\x0c\x5b\xd9\x38\x03\xfc\x10\x97\x84\x19\x14\xb5\x32\x8f\x2a\x08\x7b\x46\x98\xb1\x5c\xc0\x73\xa2\xd1\x22\x89\x23\x7e\x01\xbf\xd8\x0c\x45\x91\xb6\x91\x58\x12\x30\xd7\x8c\x19\xc2\x2b\xf2\x3e\x5e\xd6\xbc\x4b\x2b\xe6\xd9\xc3\x0d\x15\xdd\x35\x15\xa9\xa4\x8c\x1c\xde\x07\x41\x2d\x76\xb2\x5a\xcd\xca\x64\xe5\x6b\x5e\xfc\x4a\xf3\x98\xa3\xed\x96\xd7\xf8\x99\x71\xdf\xd4\xd0\xb7\x4c\xc3\x50\x3d\x18\x0c\xea\xac\xbf\xad\x1d\x18\x72\x98\xab\x22\xf8\x06\x21\x38\xe2\x39\x5e\x22\xec\xcc\x9a\xbe\x80\x6f\x6d\x86\x57\x08\xaf\x00\x37\x5b\x90\x87\x25\xcb\x17\xce\xb8\xd7\x09\xc5\x30\x23\xc9\xac\xf3\xd4\x93\xe1\x43\x44\xd2\xda\x8c\x53\xcf\x1a\x58\xb9\x0f\xdf\x79\xca\xc7\x05\x19\x9d\x18\x46\xd7\xb7\x85\x0a\xb3\xbc\x8c\x73\x3d\x9f\x34\x29\x24\xb6\xa8\x98\x48\x12\xf6\x16\x12\xff\xb4\x3a\xf7\x58\xce\xa8\x5c\x44\x37\x9b\xa9\x4a\x74\xab\xe8\x79\x52\x53\x9f\xda\x56\x40\xaf\x2d\xb2\x85\x25\x74\x33\x0a\x1a\x14\x82\xfd\x9a\x09\xb2\x11\x06\x85\xf2\x07\xae\x3a\x2a\x74\x51\x90\xa0\xf8\x25\x07\x5f\x5b\x32\x2b\xe6\x69\xf6\x4e\x8d\xc5\x03\x81\x72\x74\x46\x43\xc1\xb3\x37\xa0\x89\x73\x9b\x3f\xf3\x86\xec\x0d\xb7\x54\xc9\x1e\xb1\xe5\x39\x32\xdd\xed\x2c\xf2\x10\x45\xf1\x82\xbc\x8f\x17\x38\x43\x08\x9b\xe5\x5f\x20\xbc\xd8\xa1\x50\xa3\x37\xdc\xc8\xa9\x10\x9c\x5d\x57\x82\xb6\x57\x5b\xdf\xcb\x14\x6d\xb7\x75\xde\x7c\xdc\x77\x95\xf4\xd1\xf4\xf0\x36\xa6\x72\x1b\x4f\x82\x54\x99\xe4\xba\xf8\xd9\xa7\x69\x00\x23\xa2\x1e\xa0\xa0\x2a\x24\x91\x15\xf3\xbc\xd5\xbb\x60\xba\xef\x83\xbc\x12\xaa\x2c\x83\x33\x70\x7a\x88\xc1\x65\x43\xdb\x5c\xc1\x1e\xfa\xd0\xc2\xc6\x50\x5f\x88\xaf\xbf\xed\xf3\x58\x3c\x82\xd3\xe2\xa5\x20\xc9\x11\x5e\xee\x77\x4a\xb1\xb1\xc6\x73\xc9\x4d\x58\xc0\x0d\x2f\xe6\xb4\x54\x7a\x5d\x71\x8e\x0e\x91\x55\x37\xe0\xc7\xa1\x16\xd2\xb6\x85\x18\x74\x34\x9b\x81\x82\x48\x61\x81\xca\xd6\xbc\x4d\x7d\xac\xeb\x8d\x0e\xd4\x4f\x01\xef\x85\x8a\xf6\x2a\x8d\x75\x0e\x37\xed\x4f\x2a\x52\x94\x5e\xcb\xad\xcf\x55\xcc\x95\xd7\x05\x07\x8c\x5f\x91\x66\xf5\xec\x5e\x6e\x5e\xe5\x2f\xe8\xb2\xe0\x14\x66\xe2\xfb\xa2\xf8\x1c\x1f\x2e\x50\xaf\x5e\x45\x9b\x3b\x50\xc0\xcc\x72\x5b\xbd\xbf\xb1\xdf\x34\xec\xf8\xe9\x52\x50\xee\xf5\x5b\xa2\x0b\x87\x8a\x5c\xd3\x79\xb1\xa6\x66\x87\xe9\xfc\x72\x65\xc2\x0f\x6d\x0b\x64\xd4\x74\xec\x9a\xc7\x02\x75\x6c\x38\xb9\x52\xa4\xe5\xea\xa3\xcf\xd8\x53\xf1\x60\xa8\x24\xed\xe5\x0f\xb0\xff\xe4\x43\x62\xf7\xf4\x8c\xe4\x36\x52\x96\x8d\xf0\xaa\x76\xd7\x49\xdc\xd7\x4f\x7d\xa6\x76\xd2\x76\xdb\x93\x97\x6c\xcc\x89\x30\x7a\x13\x1a\x68\xae\x58\x89\xb4\x4a\xed\x65\x13\x91\x82\x7b\xbd\x76\x74\x4c\x00\x73\xc8\xe7\x85\x37\xb0\x10\xa2\x88\x22\x05\xfd\x52\x5c\x20\x9c\xc2\x56\x07\x1d\x0a\x08\x8d\x31\xa7\x0b\xda\x12\xc4\x49\x6b\x4d\x1a\x23\x62\x6a\xc6\x52\x1b\x9a\x43\x46\x64\xd7\x0c\xad\x26\x9f\xb7\xdb\xfa\xa0\xa3\xa8\x67\x22\x0f\xd5\xc1\xe5\x46\x4b\x0c\xa3\xa8\xd7\x08\xae\xd0\xa3\x3d\x62\x95\xd7\x95\xa2\x87\xdf\xbf\x40\xec\x49\x11\xc8\xe5\x6a\xd5\x73\x14\x45\x9e\x14\xc4\x55\x65\x2a\xd9\xc5\xde\xf1\xc6\x54\x3f\xa0\x26\x76\x2b\xbb\x04\xb2\x34\x90\x96\x16\x37\x4e\xf5\x56\x89\xde\x14\x20\x51\x8c\xf3\x7d\x9a\xa8\x5d\x3a\xbc\x32\x1e\xe2\x81\xbd\x57\x5b\x59\x05\x52\x81\x94\x6d\x1e\xe6\xa6\x16\x9c\x5b\x01\x4d\xc1\xc8\xae\x19\xca\xae\x37\xc2\xfd\x3b\x96\x65\x7a\x2f\x43\x35\x7d\xec\x37\xe4\x13\xf8\xde\xad\xe2\x12\x87\xd7\xae\x07\xca\xd4\xaa\xf5\x53\x4c\x11\xc2\x67\xb1\x50\xe6\x58\x00\x44\x70\x0b\xe0\x43\x7a\x58\xe1\x51\x6f\x3d\xa1\xcc\x44\xdf\x95\x53\x13\x90\x4a\xfb\x8e\x67\x4b\xef\xdb\x87\x94\xda\xd6\x5d\x40\xe8\xfa\x97\x58\x19\x90\x73\x72\x16\x33\xc2\x91\xc2\x6c\x58\xcb\x98\xf8\x5e\x58\x49\x6b\xc2\x81\xa4\x98\x29\xf8\x14\x80\xc6\x76\xbe\x5c\xb3\x1d\x1a\xa3\xbd\x2d\x89\x9d\x86\xdb\xf2\x6c\x37\x66\xa7\xb1\x81\x6b\x32\x8b\x7a\x82\x82\x6e\xf5\xce\x7b\x90\x4e\x00\xa5\x4b\xc5\x7c\x55\xdb\xe4\x2d\x44\xae\x72\x05\x63\x6d\xf4\x15\xe7\x3a\xb0\x69\x0a\x6e\x78\xc5\x52\x0a\xd2\x5a\x35\x3f\xfd\x0b\xb6\x71\x9d\xb6\x70\x68\xa9\x8d\x4f\x13\x0b\x42\x51\x14\xb5\x69\xd9\xb7\x45\x6a\x81\x29\x9f\x36\xaf\x6c\xd2\x48\x39\x70\x53\x79\x10\x01\xc8\x04\xff\xa4\x6b\x86\xdc\x44\x07\x00\x0f\xb3\x1a\x61\x2c\x8e\x47\x98\xef\x89\x04\x0a\xd5\xec\x8b\x74\x19\x44\xa8\x85\x9c\x53\xef\x59\xa9\xb8\xb8\x95\x8c\xd1\x0e\xbc\x2f\x35\x18\x82\x57\x06\x2a\x99\x28\x9b\xfe\xc0\x0f\x47\xd9\xf4\x73\x4e\x9b\x49\x93\xb8\xd1\x07\xdc\xcc\x75\xb8\x5f\x66\x49\xbc\x28\x9e\x6d\x0a\x50\xa7\x75\xd3\x1a\xea\x21\xbd\x22\xf6\xe2\x5c\x68\x33\x50\x43\x5c\xca\x23\xe2\xe9\x24\x41\xbe\x02\xa9\xbb\x0c\x19\x9c\x97\xe1\x10\xdf\x1d\x61\x7b\x4b\x92\x14\x97\x3b\x4b\xa8\xf2\x30\x60\x13\x02\x48\x83\x45\x18\xf8\xad\x05\xb3\x34\xb3\x1a\x45\xa2\x76\x36\x25\xcc\x3d\x74\x5c\x7d\x4c\xb7\x0d\x2a\x83\x32\x1b\x16\xbb\xf8\x14\xe1\x97\x8f\x4e\x8f\x66\x33\x98\xc9\x49\xbf\x66\x72\x1e\x76\x38\x75\x13\x95\xfe\x96\xc9\x68\xc5\xea\x3d\x33\x15\x55\xab\x44\xde\x68\x72\x3d\x8b\xa2\xb8\x8a\x85\x93\xbd\xaa\x9b\x1c\x8b\xd0\x82\x2c\xb9\x9e\x19\x6b\x7a\x0f\x77\x32\x06\xc2\x1d\x7b\x6e\x17\xd4\x22\x88\x53\x46\x82\x77\xe8\xe8\x84\x0f\xd7\xfa\x1a\x91\x9f\xd7\xde\xc5\xc1\xa2\xe8\x0c\x38\x29\xb1\xa9\xb6\x6d\xea\x99\x9d\xf7\xb7\x8f\xcc\xbb\xd6\x32\x31\xb3\x5e\x34\x67\xdd\xce\xb9\xd9\x75\x0c\x17\x0e\xc1\xe5\xa4\xf0\x20\xf2\x85\x4d\x8e\x39\xc2\xc5\x6e\xdf\x4a\x74\x8c\x1d\x75\x83\xdc\xca\x5b\x16\xc6\x6d\xd2\x96\x5b\x97\x2b\xbc\xa9\x96\x10\x62\x50\x6a\x5a\x58\x7e\x63\x3c\x13\x2c\xba\x30\xa7\xfd\x50\x8f\xce\xb4\x1c\x28\x0a\xee\x70\xbe\x87\x84\xab\x6f\x16\x85\x36\xf3\x10\x91\xa5\xdb\x6d\x4c\x09\x37\x23\x7e\x00\xc6\xd5\xca\x8b\x11\x97\x27\x22\x19\xcd\x66\x92\x36\xb5\x52\x71\x37\xbb\x81\x8c\xdd\x25\xab\x1e\x2a\x3f\x3f\x58\x05\xbc\x6c\xc5\x52\x3c\x14\xc4\x16\x46\x8d\xeb\xcd\x23\x57\x4c\x6d\x63\xdf\x79\x8d\x35\xfe\xb0\xca\xe3\x4f\xae\xd8\xe2\x0f\x4f\x86\x82\x96\x22\x66\x68\x9a\x27\x4c\x45\x1a\x9d\xa8\x27\x9c\xef\xf4\xfe\x83\x61\x7f\x6c\x99\xb6\xdf\xcd\xe1\xec\x88\x7d\x4a\x14\x3b\xfc\xe1\x70\xe8\xc1\x16\x05\x88\x5f\x9a\x1a\x1c\x0e\xb6\x1c\x62\x0a\x68\xbe\xfa\x79\x7a\xdd\x0a\x42\xfa\x7d\x93\x75\x11\xd7\xda\xc6\xcd\xab\xbc\xdf\x57\x46\x78\xb1\x18\x90\xfe\xb0\x8f\xb0\x18\x10\x45\xfa\x60\x70\xf6\x77\x1b\xf7\xbf\x01\x17\x1a\xdf\x80\xf2\x13\xfa\x1a\x36\x81\x01\x60\x5f\xd3\x7e\x97\x27\x54\x03\x75\xea\x71\x23\x54\xe3\xa2\xa6\xa4\xd3\x09\xf4\x93\x2c\xb9\xd3\x82\x5a\x7a\xfc\x1b\x6f\xb6\xe2\xfe\x85\x48\xb9\xf0\xe4\x9c\x7d\x83\x81\x56\x78\x5f\x11\x7d\xff\x29\xfb\x37\x99\xbf\x29\x9e\x57\x43\x67\xfe\x48\x53\x12\x76\xfe\x5b\xab\xfc\x38\xe5\x96\x1d\x38\x09\xf3\xb4\x0d\x07\xe4\x1b\x92\x76\xfe\x39\xa6\xd8\x6f\x21\x49\xb5\x30\x47\x31\x5a\x77\x6d\x5d\xd7\x82\x7f\xe5\x5a\x1d\x79\x32\x0a\x8f\xa3\xda\x8a\x96\x2b\xa7\x43\x5e\x4d\xe0\x1b\xb5\xcb\x96\x5d\x45\x67\x77\x4d\xbc\xd2\xf6\xf9\x30\xd6\x24\x4a\xf1\xb0\x36\x18\xb9\x87\xea\xd5\xeb\x8e\xa6\x46\x43\xc1\x76\xb4\x6c\x9f\xde\x24\x9c\xb8\x99\x87\xa6\x80\x95\xca\xfe\xac\x83\x81\x04\x12\x3d\xcf\x58\x44\x89\x0a\x2c\x00\x00\xb7\x48\x46\x8e\xec\x3f\xc7\x96\x63\x20\x41\xb3\xe1\x61\xc7\xe1\xfe\xa9\x0f\xac\xbe\x79\x76\x9e\x8e\xb3\xe7\xd3\x25\xd8\xe6\x24\x18\xaa\xd9\x35\x6c\x72\x70\x02\xcc\xe2\xa5\x58\xe8\x1e\x95\xed\x3d\xfa\x20\xe9\x10\xba\x90\x7d\xb1\x11\xb7\xeb\x42\xfa\x0f\x70\xd0\x7e\xde\x17\x18\x5c\xa9\x52\x05\xc4\xbd\x66\x7f\xde\xa5\x56\x8c\xcf\x3d\x7b\x6d\x92\xef\x3a\x4d\x5d\xfd\x9f\xa1\x95\x57\x07\xb1\x04\x7d\x01\xfc\x7e\x6d\xc4\x64\xf6\xfb\x35\x11\x1f\x76\xb8\x6c\x96\xfd\x93\x97\xe9\x4f\x56\xd2\xab\x91\x18\x56\x43\x62\x4a\x87\x36\x36\x75\x21\x8c\x88\x5b\x71\x90\xb9\x5c\x2a\x5f\x71\x29\xc7\x56\xa6\x55\x92\x02\xb3\xe0\xc6\x48\x31\xfb\x5d\x28\x4e\xba\xd9\x64\xf7\x97\x85\xea\x40\x1b\x00\xcf\x62\x0f\xd1\x36\x3e\x3e\x7c\xbc\xa2\x44\x28\x01\xbb\xb3\x40\x8f\xc2\x1a\x76\xf8\x76\xd8\x31\x07\x03\x4d\x46\xf2\x24\x77\x32\x10\x93\x23\x20\x76\x75\xbf\xf4\xd8\xcb\x98\x02\x66\x0e\xba\x13\x12\x0d\xaa\x7d\x6e\xf5\xdc\x02\xd8\x24\x4e\xb5\x81\xd6\x07\x9c\x05\xe8\x90\x95\x77\x23\xb0\xad\x71\x86\x01\x0a\x6e\x7a\x13\x0f\x4a\xf4\x05\x19\x01\x0c\x37\x76\xcc\xcf\xd3\x93\xc1\xa0\x50\xc1\xcf\x0b\x3b\x04\xc3\x3b\xf4\x8b\x87\xbc\x30\xf4\x30\x27\x45\x07\x74\xd3\x76\xaa\x5e\xe1\x82\x28\x17\xdf\x92\xd1\xc9\xd1\x51\x61\x24\x93\xb2\x6a\xbc\x22\xce\x2c\x7f\x61\xe0\x93\x3a\xf4\xc5\x0c\x6f\x80\x13\x25\xfb\xbd\x21\x4b\x65\x43\x66\x95\x17\xa6\xc5\xb7\x64\xae\x08\x52\x45\x57\xc3\x5e\xd1\xdd\x92\x35\xc4\x2b\xac\xcb\xe0\x0c\x1b\x17\x1d\x37\x54\x78\x59\x5e\x17\x5c\x5b\x6c\x69\x33\xa9\xb0\x0c\xe6\xb8\xd0\xe5\xbe\xaa\x09\xb9\x2e\x1b\xb2\xa9\x33\xb6\x01\x32\x6d\x2c\x05\xa7\x2d\xd7\x16\x51\xb4\xb0\xd8\x6b\x7d\x70\xde\x89\xb5\x99\xa2\x68\xe3\x71\x71\xd7\x51\x14\x6f\x0c\x0a\x05\x75\x19\x5a\xc9\xe5\x5a\x6b\xe7\x5f\x8b\x93\x58\x4e\xd6\x76\xbb\xa9\x73\x8e\xe3\x05\xb8\x36\x9a\x93\xb7\xa9\x58\x0d\xd7\x2c\x8f\x0b\x3c\x47\xf8\x96\x6c\x10\xce\xa3\xa8\xc7\xa2\x28\xbe\x25\xb7\xad\x23\xba\xb5\x23\x42\xd8\xc7\x7b\x86\x55\x5e\xae\xd8\x52\xc4\xb7\x10\xa1\x3d\x73\xc1\xd7\x1b\xa6\x88\x6f\x0b\x4e\xbb\xba\x16\xed\x9d\xad\xec\xde\x51\x4e\xad\x33\xc6\x55\x0a\x5e\x1a\x39\xed\xa6\x9c\x76\x17\x6a\xb1\xba\xc6\x00\xbf\xbb\x2c\x38\xf8\x72\x53\xdc\x90\x6e\x7f\xe0\xf8\xe7\xb9\xe6\x55\xb3\xfc\x36\xcd\xd8\x22\x15\xf4\xa5\xb6\x22\x8b\x03\x2c\x6d\x8e\x70\x15\x97\x4d\xdd\x4f\x2f\x41\xe2\x68\x08\x97\xf2\x68\x36\x6b\x7b\xc4\xa5\x9a\x17\xdc\x7b\x30\xe0\xca\xf0\x24\xe1\xfe\x1d\x6e\xd0\x7e\xb0\x3f\x28\x8c\xf4\x3f\x75\xd2\xff\xd2\x5c\x91\x35\x3d\x80\x0e\x58\x05\xc9\xe9\x7c\x19\x88\x1a\x0a\x5c\x49\xc0\x00\xf1\xe8\xf3\xc7\x76\x7c\x0b\x70\x71\x2c\x02\x08\xb5\xed\x62\xe7\x03\x45\x95\x12\x9e\x38\xa4\x6e\x86\x02\x32\x67\xcf\x31\x31\x37\x6a\x47\x87\x88\x57\x06\x2e\x6c\x19\x03\xfe\x01\x17\x02\x21\xd4\xf9\xf9\x01\x8f\x15\x0a\xc3\xab\xdf\x23\xa1\x33\xa0\x92\xec\xc9\x16\x02\x92\x4e\x4a\x4a\x30\x73\x52\x5b\xcd\x06\x06\xa7\x77\xdd\xb7\xc1\xd4\xc9\x8e\xa6\x00\x83\xdb\x47\xd2\x82\x24\x38\xc7\x10\x0f\x3b\xec\x00\x1e\x4e\x49\x32\x3b\x29\x8e\x8e\x4e\x8c\xa7\xce\x3c\x8a\x28\xb8\xf5\x93\xe3\x95\xe3\xf6\x08\x80\x2a\x9c\x54\x09\xcd\x65\xb7\x57\x71\x85\xa6\x2c\xc9\x94\x19\x93\x9a\xbb\x49\x43\xfc\x92\xe9\x3c\x65\x92\xcd\x26\xa9\xb2\xb7\xce\xe0\xec\xa5\x07\xce\xde\x8f\x45\xd5\x5d\xb0\x45\xfe\x8d\x73\x23\x48\xf3\xa2\xba\x59\x75\x95\x1a\xd7\x13\x70\x84\xce\xe6\x4a\x7e\x4f\x05\xe5\x65\x57\x14\xdd\x32\x15\xac\x5c\xde\x77\xd3\x2c\xeb\x16\x4b\x38\x7c\xad\xa7\x52\x39\xd0\xe8\x0f\xe8\xa0\x3f\xec\xbe\x65\x65\x09\x5c\x01\x65\x29\xdb\xed\x0f\x52\x77\x4e\x1b\xfb\x57\x4e\xad\x66\xac\x7c\x44\xf8\xdd\xbf\x66\x73\xf8\x29\xb7\xb7\xf5\xe2\xd3\xc7\xf3\x33\x15\x78\x09\x32\xf8\x66\x87\xb5\x6c\xff\xef\x36\x3a\x7c\xf3\x35\x58\xe4\x3e\x24\xcd\xf1\x99\x2a\x9e\x29\x3c\x6c\x3f\xb2\xf6\x5b\x18\x7d\x7b\x90\x2d\xcb\xf3\xd7\x5a\x7e\x1f\x30\xdb\x87\x4c\xd9\x47\xab\x19\xaa\x0d\xd9\xbd\xdd\xfb\xce\xfb\xa6\x24\xaf\xbd\xb1\xc4\x5d\x74\x62\xcd\x6f\xab\x84\xb6\xa0\x31\x96\xa7\x10\xe4\x8d\x5d\x67\xf4\xc5\xfd\xa7\x8f\xe7\x41\x8d\xa9\x17\x53\x5e\x1e\x67\x41\x46\x98\x5b\x67\x1a\x27\xe2\x39\x3f\x19\x0c\x84\xd1\xcd\x67\x89\x50\x36\xed\x06\x6f\x59\x92\x24\xd4\x45\x0c\xf0\x43\x2d\x18\x99\xcb\x7b\x76\xf9\x35\x68\xe4\x1c\x25\x42\x99\x08\x94\x6a\x88\xab\x16\x18\x3f\xc7\x4b\x9c\xd9\x2b\x7f\x41\x56\x9a\xb2\x5b\x4c\xcb\x78\x81\x26\xab\x50\xd6\xb1\x6a\x11\x74\x94\xc6\x57\x41\x00\x2b\xc5\xac\x53\x6c\xb7\xab\x06\x9e\xb0\x41\xd3\x58\x53\xb8\x41\x6e\xb2\x42\x93\x7a\xd2\xc6\xec\xf8\x2a\x0e\x8d\x46\x03\xa4\x1e\xbc\xd2\xc0\x11\x77\x6b\x76\x6e\xa5\xc6\xd4\xd9\xdb\x59\xf6\x98\x95\xfb\xee\x37\x47\x84\x3b\x56\x5f\xb1\xfb\xc5\xc5\xb6\xbd\xd7\x9e\x94\x3a\x8a\x9c\x94\x7a\xd4\xd1\x49\x62\xbb\x0d\x3e\x8c\x35\xd7\x39\x74\x8b\x83\xf3\x20\x41\x71\xf6\xb8\x1b\x41\xbe\x77\x04\x8c\x8c\x70\xe1\x2c\x57\xd9\xf3\xe2\x64\x30\x60\xc8\xda\x7e\x2a\xdf\x39\x34\x49\xd5\x68\x52\x37\x9a\x9d\x1d\xcd\x2d\xb8\xab\xdf\xa3\x08\x64\xe4\x2c\x59\x5a\x8a\x16\x2b\x2a\x4d\xb1\xfa\x3a\x41\x45\xb6\xb8\x68\x24\xee\x51\x43\xd7\x7e\x22\x75\x98\x54\xc7\xf5\x0b\x74\x8c\xb4\xc1\xa2\xdf\x7a\x4b\x69\x63\x99\x62\x8c\xd3\xb2\xe2\xc6\x12\xdd\xf6\x9c\x28\xf7\x04\x36\x42\x88\xfe\x5a\x52\x11\x2b\xc5\x22\xde\xc6\x43\xe4\x35\x67\x07\x86\x49\xe9\x4e\xdf\x3a\xdd\xc4\x14\xef\xc5\xe3\xec\xbd\x8c\x73\xd2\x1b\x9d\xf0\x6f\xc9\x28\x8a\xf2\x93\xa3\x23\x67\x43\x68\x50\x37\x43\xec\x51\xe5\xac\x1c\x3f\xa4\xe5\xa4\xd8\xc9\x0d\xa2\x5c\xb7\x30\xf0\x8f\xb6\xdd\xf6\x83\x17\xe5\xb9\xc6\xf7\xd0\x73\xf4\x67\xb4\xdb\xa1\x1d\xe6\x87\x7c\x62\x75\xeb\xe3\xb0\xc0\x86\x42\x51\xef\xb0\x79\x2b\xd7\xc4\x60\x1c\x9f\xd1\xd9\x21\x32\xee\x19\xdd\x39\x93\x8c\x5c\x02\xfd\x9e\xd0\x0c\xef\xfa\xae\x08\x50\xc1\xfa\x47\x0d\xad\xe5\x0a\x5e\xa9\xbb\xa8\xdd\xbc\xa4\x68\xda\x25\x8e\xc2\xc1\x68\x5b\x13\x96\x03\x2b\xdd\x75\xd3\xf4\xd1\xc7\xee\x43\x00\x54\x20\x5c\x24\xd7\xb3\x9a\x2d\x3b\x54\x27\x8a\x8f\x3a\xd0\x16\x14\x8c\x0b\x9c\xfb\x62\x5e\xcf\x6a\x42\x56\x62\x6d\x89\x8a\xd0\xd6\xa7\x65\x91\xd8\xf0\x4a\xc9\x84\x3f\x7d\x3c\x8f\x0b\x70\x49\x39\x5c\xb0\x85\x9b\x98\x98\x35\x4f\x90\xcc\x24\x0a\xdb\x13\x7f\x44\xbd\x11\x32\xac\x51\xb7\x2e\x05\x18\x4f\x28\xb2\x2c\x30\xc7\x9a\x17\xeb\x4d\x46\x81\x1b\x87\x0b\xb9\x29\x9a\xd6\x1b\x75\x9f\xec\xfc\x3e\xd8\x5f\x37\x54\x5c\x36\x2d\x3e\x40\x1f\xcc\x3a\x5e\xf4\x50\x39\xbd\xb6\xd4\xac\xae\x31\x26\x42\x3b\xd9\xfa\x01\x77\x50\xb0\x33\xde\x18\x3c\xca\x88\x77\x8c\xab\xb2\x77\xf4\x0e\xa0\x92\x06\xae\xda\xe9\xb7\x15\xdb\x70\xcd\x05\xba\x88\x7d\xcb\xb9\x70\xdb\x38\x8c\xd3\xe7\xcf\x04\xbd\x3a\xcd\x17\x10\x2b\xef\xdf\xdb\xb9\x06\x53\xb8\xff\xe9\xe3\xb9\x42\x8d\xc1\xf2\x28\x2f\x44\xd7\x61\x9f\x7d\xa3\x86\xe6\xcd\xa6\x70\xd3\xd8\xb1\xdb\xaa\xae\x4b\xa2\x54\x37\x6a\x33\xc0\x92\xeb\x99\xdc\x32\xed\xfa\xb9\x00\x26\xea\xa3\x08\x41\xa5\xdb\x0d\x21\x86\x17\xbb\xeb\x03\xd8\x56\x73\xed\x16\xd7\x57\x5c\xd8\xa9\xea\x5b\xf6\xcf\x01\x9d\x3e\xcc\x88\x76\xf6\x57\x87\x20\x12\xc2\x4e\x5b\xbf\x24\xf7\xb3\x89\xd7\x9f\x94\xd4\xfa\x5a\x60\x81\x70\x49\x36\x71\x00\x5c\x70\x1a\x6e\x0f\xb6\x8c\xcf\xe3\xd4\x9f\xbd\xc2\x7b\x41\x80\x27\x94\xc6\x9d\x58\x9d\x47\xe0\x9d\xe7\x52\x2b\x21\x98\x39\xaf\xda\x20\x9a\x75\x98\xd6\x3a\xa0\xed\x76\x2f\x9c\x94\x74\x9d\xc5\x45\x1f\x85\xa6\xad\xb0\x2d\xc3\x29\x32\x96\x1d\xa2\xda\xbc\xd4\x3c\xc3\x38\xdd\x03\xf1\x32\xd4\x8e\x05\x58\x9f\x6f\x24\x38\xf9\x29\x3e\x84\x3a\x20\xdc\x50\x11\xfc\x57\x90\x3d\xcb\x50\x31\x0a\x8c\xe6\x39\xd4\x38\x7c\xad\x32\x19\x93\x5f\xf7\x8c\x5a\x30\xaa\x03\x9b\x20\x8a\x62\xde\xb2\x9c\xa8\xfd\x12\xe1\x76\xa2\xeb\xb3\xb0\xe7\x06\x75\xf2\x17\xbe\xa7\x20\xe1\x98\x7b\x66\xbb\x8f\xdd\x3e\xb9\xbd\x27\xbd\x0d\xca\xc1\x90\xc7\xdc\x16\x17\x54\x88\x8c\xfa\xe6\x90\xba\xd2\xee\xdd\x8a\xe6\x7e\x3a\x2b\xbb\xa6\xb6\x85\xbc\x50\x98\x66\xb1\xa9\xf0\xe0\x67\x5f\x18\x04\x2b\xb2\x5c\xed\x14\x9b\x41\xec\x43\x27\x52\x88\xb7\x21\xa1\xc4\xa2\x68\x45\x51\x9c\xc2\xd8\xef\x94\x63\x83\x83\xef\xdf\x69\xa9\x03\x6e\xe6\x7c\xae\x4c\xa1\xd5\x0a\x6c\x59\x16\x45\xac\xa1\x0c\x1b\xf8\xd0\x89\xa2\x58\xe2\xf7\xc0\xb9\x09\xa9\x1f\x6b\x75\x61\x6d\xae\x70\xff\x93\x44\x14\x58\x7e\xa3\x8c\x23\xba\x46\xad\x56\x7b\x38\x74\x10\xce\xb7\x45\x57\x77\xd3\x2b\x55\x43\x9a\xa4\x9e\xe8\x01\x18\x89\xfa\x2c\x26\x33\xac\x1d\xcb\xd4\x9c\x08\x8e\xd0\x34\x36\xed\x9f\x0a\x41\xd7\x1b\xe8\x81\xbc\xa2\xbc\xa5\x17\x05\x08\xc4\x71\xed\x26\x44\x93\xb6\xb2\x7b\xcb\xbd\x6a\x20\x07\x05\xaa\x81\xaa\x16\xe3\x52\x30\xcd\xe3\x2d\x1b\xb9\x05\x73\xd9\x63\x83\x66\x78\xad\xc0\xb6\x02\x95\x94\xb2\x5b\xe4\xdd\x05\x84\xd7\x82\xc0\x65\x8a\x61\x75\x62\x36\x78\x38\x0c\x17\xbc\x43\xf8\x53\x1f\xea\x8c\xf8\x90\x14\x98\x23\xd4\x33\x9c\x8f\x5b\x17\x8f\xb4\xd3\x4f\x4d\x31\xf2\x5d\x4c\x91\x9c\x6c\x45\x51\x39\x7c\x52\xa9\xb5\x37\xad\x87\x0f\xd2\x6b\x0d\x53\xc9\x96\x1e\xf4\x46\xb8\x1f\x60\xa9\x7d\x9c\x68\xfb\xf8\x1a\xf6\xda\x5e\x81\x05\x88\x0a\x10\x52\x2c\xea\x38\xac\xbb\x69\x1c\x3c\xa0\x08\xeb\xed\xe4\x2f\xde\xe5\xc7\xd3\x77\x17\x6f\x2e\xdf\xbc\x7f\xd7\x7d\xf9\xfe\xed\x87\xf3\xb3\xcb\xb3\x61\x1f\xe1\xe0\x6c\x1a\x3b\x29\x85\x86\xa4\x8a\xa6\x8f\x53\xdf\x74\xb0\x40\x8e\xd3\x1e\xd8\x86\x76\x42\x85\x6b\x1d\x9b\x3d\xc5\xd4\x73\x1e\xef\x9a\xc0\xd4\xd8\x46\xef\x14\x0f\x29\x05\x34\x27\x58\xff\x76\xf4\xc6\xa9\x44\x6f\x52\x2e\x60\xf6\x60\xc2\x4a\x1f\x97\xd2\x7e\x21\xd4\x6d\x57\x0c\xe9\x17\x26\xe8\xc2\xbf\xf4\xf8\x60\x80\x54\x5c\xaf\x98\xd9\x0c\xf2\x3e\x53\xdd\xb3\x62\x7b\x1f\x48\x79\x10\xcb\x09\xec\x3e\x4a\xc2\x59\x02\xb0\x30\x45\xce\x81\xaf\x8c\xcd\xa0\x09\x99\x4f\xfe\xc7\x02\x05\xe0\xc8\x72\x0b\xdc\x10\x3a\x1e\x63\x81\xfa\x5c\xfa\x26\x9f\xa0\x18\x56\xb9\x66\x0f\x58\xff\x7f\x70\x8a\xbd\x19\x00\xfa\xbe\x3e\x01\xb6\x77\x30\x07\x90\xc5\x4d\x81\x07\xdc\xbf\x66\xb8\x63\x2c\xc2\x39\x57\xc7\x6b\xa1\x17\xb3\xde\xb4\xdb\xb7\x3a\x6a\xd4\x7b\xfe\x49\x15\x88\x25\xae\x10\x16\x4e\xf8\x0c\x37\x1b\xa0\xaa\xe0\x6f\xac\x59\x97\x82\x2a\x47\x8e\xfc\xaa\xd0\x83\xda\x87\xde\xb4\xa7\xfb\x18\x33\x01\x62\x53\xed\x3c\xa0\xf4\xf5\xf4\xb5\x3c\x9c\x01\xf9\xac\xa1\x73\xeb\x15\x5f\x07\xd1\xc6\x44\xa7\x8d\x2b\x24\x94\xf7\xaf\x06\x88\xa2\x21\xe8\x08\xbc\xd4\xd9\x86\xfa\x38\x11\xc6\x37\x16\xd6\x35\x19\x2f\x60\x06\x70\xed\x67\x45\xc1\x10\x5a\xa7\x7e\x3f\xbf\x44\xcb\xe4\x52\x22\x9c\x18\xd7\x31\x9f\x19\x80\x20\x1e\xec\x45\x58\x41\x38\x49\xf2\x21\xce\x41\xc6\x9a\xbb\x5b\xc2\x63\x4a\x17\x4a\xb3\xc7\x29\x20\x7b\xd5\xe8\x44\x3b\x74\x59\x63\x3d\x2d\x0e\x4e\x30\x00\x27\x99\x0d\x1e\xe2\x14\x1f\x6e\xda\x09\x2c\xaa\x52\xd2\x74\x56\x0e\xe0\x4c\x45\xd9\x54\xd4\xd4\xe9\x5b\x59\xcc\x13\x39\x11\xb8\x37\x92\xd3\x5b\x03\x7a\x07\x60\x24\x6d\xe8\x96\xb9\xd7\x92\x3c\x84\x47\x4c\xa2\x78\x0a\x08\xc2\x93\x5a\x3e\xf9\x68\x41\x8b\x7c\x01\x10\x31\x49\x66\x3b\x5c\x19\xb7\x72\xca\x6b\x60\xda\x1a\xf8\x25\x23\x45\x92\xcf\xf0\x9c\xa4\x49\x3e\xeb\x64\x51\xa4\xfd\xea\x10\x42\xe6\xea\x69\xbb\x8d\x39\x20\xfe\x7c\x1a\x97\xf6\x44\xc3\x84\xcd\x11\xce\xa2\xa8\x34\xb0\xdb\x88\xc3\x33\x84\x26\xd5\x76\x9b\x99\xb5\xea\xc9\xba\xf4\xf3\x34\xae\x94\xc6\x79\x0d\xf6\xe8\xfa\xd0\xa4\xf4\x20\xa5\x11\xf0\xa9\x41\x98\x01\x60\xe6\xdc\xcc\x99\xb1\x34\xfa\x20\x47\x65\x11\x2e\xcd\x3b\x25\x8d\x56\x35\x28\xc6\x3a\xc3\x90\xd3\x5b\xca\x4b\x48\x91\x0b\xe9\xf0\x8f\x56\x9d\x1a\xea\x7c\x74\x00\x1f\xdc\x0f\x33\x18\x2c\x65\x5d\x53\x06\xd0\xd5\x02\x74\xcd\x89\x4b\x3f\x49\x95\xde\x88\x8d\x78\x98\x27\xe9\xac\x53\xc5\x05\x76\xea\xe1\x46\xbf\xb6\x21\xe6\x01\xfb\x20\x65\x5a\xa3\xba\x52\x84\x8a\xe4\x6d\x1e\xc6\xb6\xdb\x40\xdb\x5c\x7b\xf6\xae\xf3\x5a\x0d\xd7\x04\x0c\xf7\xf1\x9c\xd0\x43\x8e\xb1\xf0\x92\xf8\xbe\xad\x78\x14\xf5\xe8\x41\x87\x56\x78\x45\x68\x9d\xcc\x0c\xfd\x63\x71\xbc\xa8\xd7\xd9\x56\x65\xc3\x07\x56\x67\xbe\xdd\x2e\xb7\xdb\xd5\x76\xbb\x98\xea\x31\x41\x0e\x89\x4d\x66\x5a\x7c\xe9\xf0\xcb\x0c\x94\x08\xf8\xde\xcb\xa0\xe1\x05\xc9\x2e\xb5\xf2\xb4\x28\xea\xd4\x51\x8e\x94\x27\x1d\x42\xc0\xc7\x7d\x14\xe9\x10\xa5\xf2\x45\xf3\xbd\x8c\x30\x2d\xbc\x03\x00\xf0\xef\xeb\x86\x04\xfe\x98\x61\x3e\x53\x01\x35\xf8\x1e\xc7\x71\xbe\x75\x3f\xec\xb2\x11\xe8\x56\x98\xf0\x61\xe0\x82\xcb\xfa\x8b\x67\x72\x9b\x15\x49\x35\xfc\x4c\xef\x67\xa4\xd2\xb1\xf1\xb8\x76\x78\x59\x0d\x75\x0b\xfb\x9a\xab\x15\xb4\x3a\x94\x8a\x09\x1b\xf2\x09\xf6\xeb\x16\x37\xa9\xbd\x95\x76\xb3\x64\xf0\x6a\x7e\x10\xd3\x36\x17\x5f\x5d\xfc\x13\xec\x70\x58\x60\x53\x65\xcd\x43\x84\x4f\xed\xd2\x28\xf2\xb5\x41\x2c\xc7\x15\xd7\x4d\xe2\x5b\xdb\x44\xc0\x86\xa4\xda\xc5\xa1\x7f\xf0\x55\x0c\xc7\x9d\x9a\x98\xb6\x4e\xa8\x96\x7e\xaf\xbf\x8d\x47\x86\xc0\x5a\x87\x00\x26\x26\x38\x97\x1d\x16\x05\x09\xe8\x00\xaf\xbb\xed\x8c\x8f\xfd\x37\x1b\xde\x47\xc4\xd7\x40\x39\x27\x23\xe5\x5c\x35\x66\x24\x95\x08\x5f\x1c\x5e\x8a\x09\x9f\x21\x79\x9d\x6b\xcd\x99\x42\x31\xbc\x00\x89\x2c\x7c\xed\xe0\xe6\x39\x4a\xb1\xb1\x29\x0d\x48\x3b\x31\xdb\xc3\xfa\x33\x1e\xba\xc2\x12\x71\x8a\x83\x3b\x5a\xa1\x80\xea\x36\xa9\x3b\x92\x82\xb1\x46\xd1\xa2\x9d\x02\x36\x77\x8d\x77\xc7\x34\x99\xef\x46\x6d\xb9\x61\x9c\xe2\x9b\x87\x6a\x32\x45\xfd\xc7\x48\xeb\xd4\xef\x95\x68\x6a\x55\x5d\x50\x48\x38\x28\xc5\x54\x42\x38\xb9\xb2\xe1\x85\x67\x6d\x0a\x0e\x44\x85\xd0\xf4\xb2\xc7\xdb\x8a\x29\x32\xde\xaf\xb4\xc5\xa7\x2f\x92\xb9\x2c\xf6\xc4\x0e\xf9\x77\xb9\x26\xde\xe7\x65\x67\x1a\xeb\xd0\x5e\xad\x7d\xb6\xdc\x9a\xde\x18\xe9\x2b\x22\x1c\x13\xf8\xb7\xe3\xe0\x01\x8c\xaf\xe9\x82\xa5\xc2\xbb\x71\xfe\x9b\x06\xd5\x6d\xed\x97\x0a\x1b\x2a\xf7\xe6\x92\xd3\x72\x6f\xac\xb5\x86\xa8\x81\x13\x31\x15\x35\xb1\x42\x5e\x73\x02\x69\x19\x78\xb0\xe2\x79\x32\xb2\x2c\x02\xc3\x13\x03\x03\x0c\x96\xdf\x74\xd3\xae\xee\x40\x60\x8d\x61\x04\x3d\x6d\x58\x90\xc7\x2e\x63\x98\x62\x63\x47\xd3\x42\xc2\x6c\xb7\xa1\x98\xcb\x00\x99\x16\x56\x5a\xe1\x7b\x67\x13\x21\x42\x21\x7c\x17\x6d\xa9\x75\xd1\xe6\xfb\x67\x4b\xd5\x4c\x42\x91\x1f\x98\x58\xed\x95\x49\xef\xd9\xf1\xb6\xb9\x40\xee\xf4\x5f\xbc\x3b\x9c\xaa\x45\x06\xb6\x72\x84\x25\x10\xf5\x8c\x25\xe3\x99\xd6\x9e\xae\xb3\x25\x0b\x74\x48\xd4\x85\xe7\x12\x79\x58\x92\x11\x5e\x91\xb2\x69\xbb\x70\xb2\x7c\xbe\x3a\x19\x0c\x96\xe8\xa1\x8a\xe7\x81\x62\x6c\xb2\x9c\x79\x16\x60\x2e\x80\xe4\xbc\xa6\xeb\xbe\x17\xd5\xa4\x78\x0e\x33\x07\x9d\xdb\x2f\x48\x6b\x1d\x93\xb0\xa1\x6d\xbe\x52\x14\x91\xdc\xcf\x34\x7b\x5f\x71\x75\xac\x36\x45\x30\x35\xb9\xd2\x59\xe7\x96\x05\xd9\xd2\xad\xd0\xb4\x21\xf7\x6b\x85\x70\x46\xde\x99\x82\x48\xe6\x0d\x11\x90\xc2\xfb\x5b\x78\xdb\x4d\xb4\xdc\x57\xa4\x2a\x11\x04\x80\x95\x1b\x80\x91\xcc\x06\xaf\x7b\xce\xa2\x28\x4d\xe6\x56\x62\x44\x4f\x06\x83\x39\x3a\x61\xcb\x78\x4e\x88\xcd\x17\xb6\xbe\x54\x37\x45\x67\xe9\x33\x6f\x53\xeb\x54\x6e\x3e\x30\x41\x77\xbc\x04\xad\xbb\x75\x1e\x7b\xcb\x51\xba\xe5\x68\x18\x01\x2c\x71\x86\x4b\x1d\x14\x39\x30\x23\xf3\xf1\x39\x15\xbb\x6c\xbb\xed\x99\x0e\x76\x55\xc0\xc1\x05\x79\xd8\x75\xaa\x78\x81\xb9\xd1\x2f\x0f\x28\x1d\x7b\x0a\x6e\x25\x5e\xbe\x46\xeb\x3a\x5e\x7e\x8b\xa2\x68\xd1\x96\x18\x2f\x92\xdb\x19\x59\x27\xb7\x8e\x6e\x5c\x45\x51\x6f\x03\x4d\xf9\x0b\xff\x5f\x7c\x8c\xdd\x11\x0e\xe0\x7d\xb8\xed\x62\x8a\xe1\x74\x43\xac\x2a\x75\xb5\xd6\x9c\x21\xfe\x97\xf4\xed\xeb\xb9\xea\x63\xac\xee\x4a\x6d\x8a\x64\x42\x6c\xfc\xaa\xa3\x8e\x40\xf4\x10\x3f\xe0\x48\x5e\x2c\xe8\xd1\xba\x58\x54\x19\xad\xc5\x1a\xa9\x47\x14\xa9\x45\x13\xb1\x9c\xa8\x00\x8d\xba\xd2\x92\xbd\x97\xa9\xf2\x0f\xea\x44\x18\xdb\x6d\xdc\x9a\x01\xa2\xe8\x88\x1d\x1d\xa6\x65\xba\x21\x7f\xc7\x74\x98\x66\x19\xf9\xa8\xfe\x95\xe4\x70\x41\x7e\x96\xd8\x60\x3a\xa7\xe4\x15\x06\xe7\x2d\x2b\xf2\x46\x3f\x98\x1c\xaf\xc1\x1f\x05\xf0\x98\xc8\xaf\x18\x06\x4e\x39\xf9\x1e\x9e\xe4\x18\xd9\xf2\x9e\xbc\xc4\xa0\xec\xba\x64\x37\x15\xa7\x44\x62\x98\x45\x4e\x36\x54\xfe\x2f\x97\x64\x4d\x9d\x4b\x0b\xf2\x03\x36\x92\x11\xf2\x0b\x56\xc1\x6c\x3e\x61\x3a\x5c\xb2\x4c\x50\x4e\xbe\x93\xbd\x2b\xef\x73\x49\x94\xc3\x72\x5c\x82\xdf\x57\x42\x87\xd6\xd1\xc0\x70\x9e\x96\xa2\x3d\xc6\x09\x23\x0f\x6b\xf6\x85\xe5\x93\x56\xd7\x2f\x85\x06\xa2\x45\xae\xfb\xa5\xde\x96\x4b\x6c\x85\x08\xc4\xdf\x0e\xb8\x6d\x4e\x35\x0c\xa0\x3b\x5c\xf8\xcd\x98\x20\xf7\xd6\x8b\x85\x0d\x73\xef\x47\x6f\xbc\xbc\xdf\x50\xad\xc2\x6d\x6a\x54\xc1\xe0\xaf\x69\x37\xed\xda\xb2\x46\x60\x95\x6b\x9f\x44\x8c\x70\x88\x05\x09\x21\x12\xe4\x23\x49\x66\x08\x1f\xa9\xa8\x71\x26\x72\x9a\x00\xaa\x42\x73\xfd\x76\xb8\x58\x2e\x27\xad\xf7\x8b\xaa\xb3\xe3\x34\x11\x54\x95\xa0\x02\xe7\xea\xb2\x21\xdb\x98\x0e\xb4\x1a\x17\x78\xac\x1d\x32\xeb\x1e\xec\xb0\x9e\xa7\x49\x7d\x37\x6b\xd4\x48\xb5\xa4\xa3\x58\x32\xe4\x7b\xe7\xab\x05\x5e\x8c\x47\x98\x25\xc5\x0c\x81\x1f\xc0\xdd\xae\x13\xae\x3d\xd3\xea\x67\x0f\x0c\xb4\xa9\x21\x24\x52\x6f\xbc\xf3\x8d\x44\xcd\xfc\x1f\xfb\xe4\x64\x78\x1b\x74\x0b\xd9\x13\xf9\x43\xc4\x8e\x0d\x61\x9f\xc4\x05\xd2\x17\x54\x32\xab\x05\x75\x91\xe3\x90\x13\xac\x23\x05\x43\x60\xef\x09\xc5\x9b\xf4\x3e\x2b\xd2\xc5\x04\x3c\x71\x88\xe1\xd5\x4d\xc5\x16\x7f\xa3\xf7\x98\x2d\xe4\x1b\x5b\x60\x2a\x3b\xfe\x4e\x65\x5e\x50\x91\xb2\x4c\x7e\xe0\xb4\xac\x32\x81\xc1\x93\xdf\x9b\xc5\x84\x4b\x52\x56\xe6\xce\x24\x3c\x90\x19\xe0\x01\x0b\xb6\xa6\x17\x22\x5d\x6f\x26\xaf\x24\xa9\x95\x17\x77\x31\xc2\x20\xd3\x9a\x14\x49\xdf\x0d\xff\xe8\x8e\x89\xd5\x11\x68\xa8\xf7\x67\x53\x67\x18\x60\x2a\xd2\x6e\xe6\x76\x28\x8a\x4a\x2a\x2e\xd9\x9a\x16\x95\xf0\xf5\x8d\xcc\x5a\x50\x32\x3a\xa1\x2e\xb6\x13\x35\x3c\x54\x41\x20\xe2\x26\x27\x62\xa8\x47\xdc\xe1\x43\x39\x56\xc2\x87\x9f\xe9\xfd\x80\x0f\xd9\x02\xeb\xd8\x4e\xdf\xf9\xc9\x7a\x84\x98\x2b\xdb\x4b\xe0\xb0\x18\x8d\x7a\x48\x51\x6f\x08\x17\x56\x6e\x27\xb4\x03\x26\xd3\x12\xda\xb9\x08\xc4\x3b\xfc\xa7\x51\x18\x36\xc7\xa8\x9d\xb4\x78\x91\x01\x6d\x71\x5f\xe5\x5e\xd9\xbc\x99\xf5\xa7\x1d\x87\x61\xc9\xf4\x78\x8e\x85\xbd\x90\xd6\xa0\x58\x81\xb9\x1f\xf9\x06\x3d\xec\x14\xfe\xa0\xcf\xfc\x8a\x8c\xf1\x82\x1c\xbb\x8d\xb2\x71\x71\xf2\xc3\x66\x83\x6e\x44\x91\x4c\x3a\xab\x75\xce\xc2\x43\x42\xb2\x69\x4d\xd0\x32\xbc\x52\x14\x2e\x21\xab\x29\x78\x04\x37\x1b\x08\x4d\xbc\x6f\x8b\xa9\x5c\x6f\x63\xa3\x0a\x1a\x21\x37\x41\x66\x34\xb9\x8e\x8d\x2c\xd1\xdd\x38\x10\x6b\x99\x10\x0e\x35\x73\x34\x59\x6b\x12\xb0\xc5\x93\xc4\x8d\x76\x1d\xb7\x83\xff\x49\x8b\x8b\x1e\x3e\xad\x9f\xfd\x42\x81\xef\x86\xd5\x39\x04\x86\x60\x6d\x86\xba\xfc\xfe\x81\xda\x88\x2e\x38\x37\xb2\x31\xe6\xb4\x30\x77\xbb\x98\x63\x11\x0c\x21\xdf\x6e\x63\x15\xe0\xa2\x39\x96\xda\x60\x6c\x56\x35\x1c\x79\x83\x9b\x63\xd2\xe9\xe5\x51\xc4\x20\x58\xab\xfe\x0e\x06\xea\x54\x8d\x58\xd6\xa8\x1d\xb2\xdb\x25\x5f\xbb\x1d\x28\xb7\x17\x52\xdf\x6d\x98\x23\xa6\x27\x26\xce\x89\x40\x3a\x62\xb9\xc4\x9a\xcd\x5e\x55\x22\x5d\xff\x96\x20\xcc\xaf\x43\x01\x69\x90\xa3\xca\xb3\x27\x56\x34\xd7\xd3\x51\x84\xfe\x3d\x64\x5f\x0b\xb4\x33\x3b\x10\x36\x6a\x8e\x59\x2d\x26\x0c\xb5\xfb\x43\xee\x3e\xf3\x1c\x53\xbb\x45\xf0\x55\x10\x48\xe6\xde\x78\xa9\xb2\x9b\x6c\x29\xe9\x63\x93\x9d\x08\x6c\x3f\xad\x30\x90\xcf\xc3\xab\xb2\xba\x2e\xe7\x9c\x5d\xbb\x08\xc2\xd3\x62\xe8\x40\x55\x14\x55\xf2\x56\xcc\x96\x2c\xcb\xe8\xa2\x8f\x29\x9a\x98\x2d\x72\x85\xa9\x6f\x67\x7e\xb3\xaf\x71\xf5\xba\xc0\x7e\x3f\x4c\x1d\xb7\x61\x1d\xd7\x75\x49\x5f\xd8\x41\xb0\xcc\xd3\x06\xb5\xb4\x76\x76\x58\x92\xce\x88\x90\x7f\x83\xd5\x8c\x70\x78\x58\xcc\x48\x0e\xe3\x4c\x61\xfe\x34\x3b\xcc\xef\xbf\x6b\xfa\x2a\x40\xd6\xfc\x46\x39\x31\x65\x21\x64\x65\x6d\x72\x38\x1c\x73\x6f\x8a\x26\x7d\x85\x1e\xa9\xd9\xc2\x23\x5f\xb3\xce\xf1\xe8\x31\x03\x55\x49\x73\xb3\xa8\x68\xbb\xc2\x45\xdb\x25\x4f\x51\x4e\x44\x52\xce\x30\x93\x7f\x03\x3e\xc3\xf9\xf4\x2e\x56\xcc\xcc\x14\x4d\x58\x9c\x4a\x2c\xb6\x65\xf9\xc8\xc8\x8b\x54\x75\xd7\x20\x02\x71\x4a\xda\x00\x01\x2e\x89\x32\xbd\x48\x91\xdc\xbd\x8c\xf0\x38\xf7\xc4\xdc\xa5\x8a\x0b\x5b\x29\x0c\x82\x91\xbc\x63\x20\x59\x8f\x90\x25\x20\x36\x84\x88\xe9\x4d\x2c\x70\x0d\x51\x3a\x35\x2a\x6d\x65\x77\x6e\x70\xa6\x79\x9a\x2b\xc5\x5b\x4d\x4c\xa4\xa2\x5b\xa6\x6b\x6a\x72\x0e\xfb\x08\x4d\x7a\x70\x7b\x43\x8d\x05\x9a\xa4\xd3\x75\x2c\x30\x43\x13\x03\x55\xed\xcb\x22\x8a\x6e\xe0\x0d\x05\x5e\xad\xfd\x38\x9d\x8a\x7b\x63\x57\x30\x97\x55\x44\x51\x8f\x6e\xb7\xb9\xaa\xc0\x1a\x99\x74\x1b\x5b\x7f\xbe\x4a\x59\x6e\xa2\xe5\xa9\xb0\x19\xf0\xab\x08\x8f\x60\x0b\x7a\xba\xc3\x8a\x06\x71\xb7\x45\x3c\xc7\xdc\x32\x87\xf4\x9a\xb7\x6d\xa6\x5a\x73\x4c\xd2\x3f\x84\x2c\xd1\xb5\xe3\x46\xf9\x90\xa6\x24\x30\x96\x29\x9d\x88\x4e\x03\x70\x5b\x80\x73\x17\xcb\x3d\x53\xe2\x54\x5e\x05\x16\x26\xdf\x82\x93\xee\x3d\xa6\x2b\xa1\x0f\x5b\xa3\xc8\xf3\x32\x30\x87\x53\xda\x34\xc6\x6b\x1c\xc4\xb1\x98\x5b\xc5\xfd\x2b\xd0\xd3\x79\x9f\x7f\x54\x94\x82\xf6\xd1\x70\xc5\xca\x4f\x25\xcb\x6f\x14\xa1\xab\xc8\x01\x42\xc8\x69\xe3\xab\xe6\xa2\x3b\xf7\x7a\xf2\x9a\x35\xb9\x72\x26\x14\x01\xaf\xf5\xee\x0c\xbe\x78\xd0\xc1\x2d\x14\x6b\x17\xf6\xe8\x73\xb3\xdd\x6a\xdf\xfe\xfa\x18\x99\x3e\x73\xba\x4e\x59\xce\xf2\x1b\x2f\x05\xa0\x98\xe7\x37\xdf\x8c\x9a\x82\xe1\xa6\x52\x47\x07\x67\x7c\x36\x61\x0f\x19\xec\x35\x68\x34\xdb\xf5\x94\x42\x84\x6a\x1e\x00\x53\x43\x07\xeb\xb6\xd2\xf9\xea\x2c\x17\xfc\x3e\xa6\x49\x3e\xc3\x39\xc8\x78\x0c\xa3\x92\xce\x3f\xbf\xae\x32\x00\x49\x60\x5b\xaf\x7a\xd3\x48\xf7\xd7\x9f\x2d\xe3\x11\xb1\xee\xee\xcc\xa0\x03\xb7\x84\x66\xe7\xde\xc7\x41\x4f\x29\xaa\x4d\x8c\x92\xd1\x48\x08\x01\x34\xe8\xdb\xf4\xfe\x9a\x5e\xae\x68\x9e\x5e\x67\x4d\xb1\xa5\x7f\x46\x5b\x76\x9a\xb5\x8b\x69\x6e\x0f\x1f\xa6\xf5\x46\x1d\x05\xb7\xa8\x7f\xeb\x56\xe8\x21\x35\x90\x0b\xae\x77\x8d\xc8\x39\xd0\x85\xea\xf7\x88\x06\x16\x8a\x78\x3e\x15\xf6\x02\xc3\xc2\x5d\x60\x98\x3b\x94\xa1\x85\x64\x64\xa8\x5e\xc9\x4a\x96\xf6\x4b\xed\x39\x0e\x56\xce\x4e\xef\xba\x79\x3c\x47\x1d\x80\x82\xe9\xf4\x26\x2e\x25\x14\x8c\x37\x71\x89\x25\x92\xa3\x7b\x79\xc7\x0c\x23\xe0\x54\xc4\x60\xaa\x10\x04\xdd\x09\xbf\xab\x3a\x5b\xd0\x44\xa1\xfd\x2a\x4a\x3c\x64\x6f\x61\xdf\x1b\xa4\x89\xa9\xe3\xb6\x60\x63\x51\xb5\xef\xc4\x56\x34\x7f\xea\xcf\x4e\xb0\x37\x0c\xd6\x66\x33\x7c\x84\xe9\xf6\x26\xd0\xdb\x55\x8b\xd3\xbd\xac\xce\xe0\x20\x75\x58\x88\x91\xb4\xc0\x27\x65\x1d\xbe\x98\xde\xc4\x4c\x36\x1f\x37\xdb\x37\xf5\xe3\xbd\x07\x0c\xd9\xbe\x99\x42\xfb\xbc\xda\xb8\xc3\x75\x74\x14\x1c\x9c\x44\xcc\x08\x87\x5a\xfc\xb9\x3f\x70\x60\x3a\x12\x5f\xaa\x13\x08\xbe\x02\x7a\xcb\x16\xdc\x3d\x9a\x73\x61\x72\x36\x22\x4e\x5c\x58\x82\xe9\xd1\x71\xa8\x7b\xfa\x01\x26\x7e\xe2\x23\x90\x20\x92\x9f\xf0\xdd\xc4\x7c\x73\xd8\x12\xa7\x69\x59\xe4\x13\xae\x9c\x92\xbd\x27\xc0\x94\xbb\xea\x0f\x1c\x31\x3d\xe8\x1f\xf5\xf1\x67\xed\x9f\x6b\x9f\x07\x76\xaf\x87\x6c\x41\x3e\x9b\x78\x5b\x8a\x66\xb0\x40\xbc\x69\x7d\x69\xc0\x57\x90\xe6\xe1\x57\x24\x99\xe1\xe6\x85\x0d\x66\xe4\xfa\xc2\x46\x78\xae\x9d\x9c\xb5\x31\x92\xa2\x28\x90\xcf\xb6\x30\x95\x7e\x2c\x2a\xc5\x4f\xda\xa4\x65\x09\x82\x2b\x38\x73\xbc\xeb\x58\x25\x25\x98\xfd\x2f\x19\x2f\x45\xd7\xdc\x7c\x5d\x51\x40\xaa\xb1\x1d\xf0\x10\x8f\x3e\xda\x69\xa7\xa0\xbe\x3a\x2e\x9d\xb6\x5d\x84\xbd\x31\x80\x50\x11\xc2\x08\xad\x6c\x85\xd7\x86\xfa\x6a\xfd\x6a\x68\x33\x83\x32\xe6\xe8\xe1\x46\xf9\xe2\xdf\x19\xcf\x00\x93\xc7\x46\xff\x3a\x65\x19\x5d\xc8\xc1\xd8\x01\x74\xbf\xd1\x80\xf1\x9b\x49\xf7\x43\x46\xd3\x92\x76\x2b\x00\x50\xb4\xfb\x4d\x4e\xef\xbe\xe9\x16\x1b\x79\xbb\x16\x1c\x03\xd0\xd2\x7e\x4c\xfc\x09\x30\xb8\xe6\x35\x05\xf4\x93\x2e\xe4\x14\x3a\x5e\xdd\x10\x26\xe8\x30\xe6\x60\xae\x87\x76\xf9\xa5\x44\xbc\x96\x82\x72\x1f\xf1\x12\x1e\xdd\xe6\x18\x25\x46\xbb\x19\x68\x7c\x45\xc0\xee\xbe\x2a\x36\x19\x28\xf4\x19\xc6\xe5\xc1\xc8\x64\x9e\xfa\x8a\x37\x07\x46\xf4\xdc\x44\xfb\x35\x2c\xde\xef\x89\xfe\xeb\x3c\x28\xb7\xb3\x1f\x1e\x29\xad\x35\x67\x77\x68\xa7\x01\xbe\x8e\xd8\xd6\x0c\x74\x73\xe9\x4f\xc9\x83\xcc\xe6\xf6\x12\x80\x55\xcb\x22\xf6\xd9\x10\x1e\x15\xf4\xd2\x9f\x9d\x16\x36\xda\x63\x61\x91\x06\x63\x84\x99\xc2\x23\x46\x27\x05\xb8\x24\xb0\x11\x63\x9c\x34\xa2\x98\x69\x8f\x09\x0f\xda\x10\xb1\x07\x84\x67\xe3\x02\x4c\x11\xb8\x07\x09\x59\x4e\xa7\xc8\x05\xb0\x55\x88\x4c\xea\x23\x32\x99\x8f\x19\x9c\x4a\xcc\xc0\xf2\x78\x4a\x9c\x21\x5c\x1a\xc2\xac\x37\xee\xb0\x28\xea\x19\xe5\xf3\x94\x5c\xc6\x92\x5e\x44\xbb\x3c\x29\x66\x24\xdd\x29\x05\xab\x7a\x2d\x79\xc2\x67\x35\xc5\x1f\x3a\xbd\x89\x2b\x6c\xdd\x28\x03\x79\xb7\x8e\x2b\x79\x3f\xf6\xdc\x5b\x3b\x56\x4b\x5b\x85\x3a\x47\xe3\x56\x71\x0e\xf5\xf4\x08\xf8\x2e\x76\xe8\x3c\x9a\x84\x21\x73\x05\xaa\x35\x19\xda\x8a\x43\x60\x20\xea\x34\x32\x5d\xcb\x39\xd2\x0b\x97\xab\x58\x32\x72\x26\xa8\x5c\x2e\x53\x38\x25\xa3\x93\xd4\x51\xdf\x29\x74\x4e\x24\xe9\x6c\x46\x58\x92\x7a\xe1\x5a\xfc\xfe\x49\x78\x37\x51\x33\xb2\xc3\x6c\xda\xbc\xec\x75\x99\xd3\x21\x6c\xca\xfd\xf1\x1e\xde\xda\x22\x3b\xb4\x8b\x2b\x9c\x6b\x2f\xf3\x68\xf2\xd6\x7f\xdb\x39\x31\xf0\xd5\x15\xc0\xa9\xab\x2b\x42\x7d\x96\xe7\xdb\x90\x2b\xa7\xc5\xc5\x71\xee\x14\xd6\x99\x02\xcb\xcc\xd2\x81\xd4\x95\xfe\x18\x00\x1e\xd5\x6b\x80\x36\x4e\x76\x73\x8a\x4f\x95\xf4\x26\xc3\xf0\xbd\x1d\x66\xd5\x03\x1d\x03\x83\xfb\x8b\x91\x89\x83\xfe\xbc\xc1\xcd\x26\x5a\x86\x6c\x9d\x4f\x7a\xd7\x81\x51\x67\x06\xb3\x21\x2d\x64\xd1\x20\xfc\x8e\x89\x55\x37\xcd\xbb\xa9\x6c\xa1\x8f\x00\x24\x9e\x2a\x31\xd8\x3e\x99\xbc\xe3\x18\xcb\x33\x5a\xef\x22\xb2\xa7\x89\xd7\xf9\x17\xd6\x1a\x28\x9d\xd3\x47\xfa\x81\x30\xef\x78\x71\xd1\x1b\xd4\x9b\x35\xa0\x94\xbb\xff\x5a\xfb\x14\x31\x20\x32\xc9\x67\xe8\x00\x2e\xb7\xd6\x96\x83\x2d\x9f\x6e\xd4\x27\xe4\x36\xa9\x9c\x0c\x4d\x37\x67\xf0\xfc\x73\x18\xaa\x70\xdf\xd4\x04\x15\x62\xa8\xc7\xf9\x98\x31\xb2\x12\xf2\x3e\x48\x86\x80\x9c\x67\x80\x90\x7d\x78\xc4\x37\x4e\x0d\x4c\x1b\xeb\xea\xde\xd8\x3a\xc6\x79\xd4\xe7\xcd\x2e\xfe\xe2\x5d\x0c\x3f\x3f\xbe\xef\x3e\xc4\xa7\x70\x67\xda\x1d\x77\xfa\xf8\x76\xd3\x92\xd3\xaf\xd8\x75\xb6\x27\xaf\x6a\x87\x07\xfc\x12\xc1\xe9\xf9\xe0\x4f\xa1\x4f\x1d\x5c\xc0\x9c\xbd\x3b\x30\x67\x96\xf3\x1e\x7f\xb5\xfe\x25\xda\x6e\x6b\x66\x94\x5f\x17\xfe\xb0\xb3\x67\x6d\x72\xcc\xcc\xd2\xfc\x1e\x27\x90\x6d\x5c\x97\x00\xd7\xb6\x1a\xab\x21\xe7\x24\xdf\xc7\x39\x71\xfe\x8c\x6a\x6e\x60\x98\x55\x5b\xb7\x86\x5e\x9a\xfc\xab\x73\x71\x58\x00\xf6\x8b\xe0\x8c\xa6\xcf\x99\x82\xfe\x84\x26\x02\xb4\xdd\x8d\xee\x97\xe3\xb6\x70\x2c\x1e\x65\xb5\x84\xdb\xf4\x4d\x7d\x73\x98\x33\x8f\x1b\xb7\x02\xb5\xc8\x03\x21\x84\xfa\x82\x07\x83\xb1\xb5\x8b\xa3\xcd\xee\x5d\xa5\xe5\x6a\xdf\xbe\xd5\x55\x05\xde\xbf\xde\xd5\x8e\xc7\x4e\xa1\xc2\xe7\xff\x1d\x27\xf9\x9d\x37\x45\xaf\xff\xeb\xa7\xc8\xd3\x89\xf8\x2d\x33\x74\x0e\x33\x04\x86\x64\xde\x24\xd9\x8e\xff\xaa\x9c\xda\xc8\xf6\xda\x45\xb5\xea\x1b\xdd\x21\xec\xdd\xb5\xdf\x3b\x1a\xe2\x41\x0f\xd5\x46\x36\x05\xe8\x64\x82\x57\x34\x9c\x71\x6b\xd4\x2d\xc4\xd5\x9c\xa7\x6c\x50\x41\xd7\x3c\xd7\x9d\x9a\xe7\xf3\xc3\x00\xe8\xc5\xa3\xce\xf3\xf7\x2d\xf6\x08\x33\xb7\xdc\xff\x1e\xe8\x10\x78\x58\xdd\xcb\x99\x2d\x1a\x9c\xd9\x62\x1f\x67\xb6\x30\x1c\x9b\x75\xba\x79\x9d\x13\xb6\x0f\xda\x1c\x66\xdb\xc8\xfd\x06\x62\x91\x3a\x2c\xf0\xea\x96\x70\x01\x69\x3f\xb2\x16\xd9\xaa\xf3\x01\x17\x58\x60\x06\x59\x3c\x46\xdb\x63\xec\xa0\x10\x98\x7c\x0a\x83\x5e\xb7\x31\x1a\xa6\xfb\xee\xb8\x75\xba\xe9\xd2\x2f\x1b\x70\xf5\x99\x06\x4c\x85\xb4\x5b\xd2\x79\x91\x2f\x2c\x4f\xa1\x8f\x24\xa6\xef\x1f\xc4\x46\xb0\x1e\x1d\xf0\xaa\x81\x4b\xb5\x9e\x3e\xd9\xf4\xe1\xfb\xd4\x3f\x74\x2f\x14\x58\x92\x6d\xb6\x9c\xb9\x1f\x0e\x00\x0b\x97\xeb\x97\x46\x2e\xe5\x15\x5c\x66\x92\xfb\xeb\x1f\xf2\xf2\xf9\x71\xdf\xee\x47\x35\xd7\x2b\x75\x59\xc3\xbf\xb2\xed\x7f\x07\x1b\x3e\x8c\x81\x6d\xc4\xbf\x2d\xbc\x79\xad\x88\xd5\xe6\x8f\x82\xf6\x08\xf9\xc7\x0e\x7d\x25\xf7\xfe\xeb\x0e\xc5\x43\x63\xc3\x76\x8c\xb2\xa9\xe5\xc8\xd7\x0f\x89\x33\x14\x2f\xac\xd1\x7c\xed\x8c\xa4\x70\x46\x0a\x13\xc8\xd0\x1d\x38\xe3\xa9\x79\xcf\xf1\xe1\xdb\x6d\x5c\xef\xd1\x3f\xd4\x85\xfc\xc2\x3b\x43\xdf\xfd\x0b\x67\x48\xcd\xaf\x3d\x46\xff\xad\x87\x48\xb7\xfd\xf5\xe7\xe8\xc7\xb6\x73\x24\x17\xe8\x6f\xf8\x0f\x64\xe4\x26\xe4\xef\xea\xac\xcc\x69\xf2\x87\x19\xa1\x58\xfe\x0f\xc6\x33\x22\xf0\x31\x21\x24\xfe\xc3\x80\x1c\xa3\x28\xca\xa9\x76\xf5\xf6\x7f\x48\xbf\xca\x17\x74\x09\x92\x4a\x3b\x65\x77\x2c\x5f\x14\x77\x53\xf5\x67\x6e\xb3\xff\x4b\xfe\x0f\x38\x59\xfd\xdf\xe4\xff\x0e\xdf\x56\x02\xdc\x3d\xbc\xbf\x2e\x29\xbf\xa5\x7c\xbb\xfd\xbf\xc3\x1f\xe8\xf5\xdf\x98\xa8\x7f\xc1\x94\xfa\x4d\x58\xce\x49\x49\xb3\x65\x14\xb5\x35\xae\x83\x5e\x45\x51\x3f\xd1\x3c\x40\x9d\x32\xeb\x13\x42\x1e\x76\x36\x62\xb3\xba\xc4\xf4\x47\x84\x05\x6d\x1d\xcb\x27\x96\x8b\xbf\xbc\xcc\xd2\xf5\x86\x2e\x60\x49\xda\x5b\x65\xeb\x4d\xc1\xc5\xc5\x9c\xb3\x8d\x28\xdb\xb3\xbc\x55\x8e\x4e\x5f\xae\xd2\x3c\xa7\x9e\x8b\x4c\xee\xc5\xa7\x6d\xb2\xd4\x7c\x54\x82\xe2\x31\x52\x1c\xf1\x9c\x62\x46\x71\x41\x71\x4a\x71\x49\x71\x45\x71\x26\xd7\xca\xbb\xee\xfe\xff\xec\xbd\xdd\x72\xdb\xb8\xd6\x28\x78\xaf\xa7\x90\x38\xdd\xdc\x44\x0b\x92\x25\x3b\x7f\xa6\x0c\xab\x12\xc7\xe9\xce\xde\x89\x93\x8e\xdd\xbb\xbb\x8f\xac\x9d\x8f\x22\x21\x9b\x6d\x8a\x54\x83\x90\x1d\xb7\xa9\xa9\x73\x3f\x35\x55\xe7\x11\x4e\x4d\xcd\xf5\x3c\xc4\x79\x8a\xb9\xfe\x9e\x64\x0a\x0b\x3f\x04\x7f\x94\xa4\xf7\xb7\xcf\xcc\xd4\x9c\xf1\x05\x2d\x82\xc0\x02\xb0\x00\x2c\x2c\x2c\xac\x9f\x31\x3d\xb0\xa6\xf9\x92\x36\x54\xc5\xbe\x99\x50\x31\x98\x0f\xde\x48\x0c\x32\x9d\x23\x4f\xfc\xeb\x8f\xe7\x48\xbe\x6b\xe1\xb7\x4a\xd5\x76\x38\xdf\x90\xd1\x96\xd2\xa9\xb7\xa1\x44\xa1\x6e\x98\xd2\x4f\xfc\x22\x0e\x6f\x70\x52\xa6\xdd\x52\x96\xc7\x59\x9a\x0f\xd3\x2c\xa2\xc3\x15\x2c\xf3\xbd\x7f\x78\x53\xdf\xbb\x8c\xfa\xe8\x72\x88\xa6\x95\xdf\x97\xdf\x15\xe2\xf7\x37\x7b\x08\x57\xe7\x7f\x02\x51\xc6\x46\x62\xe8\x12\x3a\x1b\xcf\x5d\xd7\x19\xeb\xb7\x7d\x88\x53\x44\x49\x4e\xf9\xeb\x95\x32\x78\x41\x38\xa5\xcd\x50\xdc\xdd\x0d\xf5\x96\xe2\x60\xec\xff\x75\xea\x65\x94\x8c\x70\x20\x71\xf5\x57\x91\x8c\x73\x4a\xa2\x2c\x84\x75\xaa\x9c\xc1\x5e\xd0\x4f\xfc\x2c\x8b\xa8\xe7\x38\x08\x07\x74\x98\xc9\xe9\xe8\xe5\x14\x3f\x84\xd7\x01\x0b\x42\x4e\xd9\xcb\x80\x07\x3e\x18\x38\xb5\xd6\x99\x53\x19\xa9\x25\xa3\xa4\xdf\xcf\xe8\xb7\xfb\x5b\xe4\x73\x3a\xf5\xbc\x58\xd6\x5d\x9d\x0f\x68\x28\x26\xd0\x78\x98\xa5\xda\x21\xee\x92\xb6\xc3\x8d\x29\x64\xdd\x1f\xae\xb3\x9c\x2b\x20\xde\x48\x74\x2e\xd5\xb7\x18\x84\x90\x5f\x76\x04\x62\x63\xf4\xf7\x4d\xcc\x2c\xb1\xbf\x94\x10\xc9\x79\xf1\x4a\x27\x3a\x96\xd0\xd9\x41\x60\x18\x06\xc5\x3c\xe7\x96\x32\xfe\xc9\x69\xc6\xc7\xf4\xfe\x46\xe8\x90\x6d\xd2\x77\xe9\x9b\x2c\x5b\x17\x85\x7a\x51\xc6\xcc\xc8\xae\xef\x6f\x30\x16\xbe\x98\xf7\x0d\x87\x65\x90\xb8\xf5\x10\x7c\xd5\xba\x41\xe4\x47\xac\x44\xeb\x6d\xb6\x2e\xd6\x0a\xa1\x78\x84\xb6\x52\xe3\x9f\x92\x9f\x3b\x4a\xc1\xf8\x5a\xea\x0b\x46\x3b\x42\x81\x69\x75\x09\x60\x07\x2c\x95\x40\xb1\x64\xb2\x61\xa6\x02\x01\x78\x99\xad\x5e\x50\x6a\x91\xa9\x5c\xcb\x65\x5b\x36\xf0\xaa\x25\xbb\x10\x51\xbc\x9b\x54\xb6\x88\x86\xe5\x87\xe1\xc7\x8f\xef\x3f\xbc\x7b\xfb\xfa\xfc\xf4\xe3\xeb\xb3\xf3\x8b\x0f\x3f\xbd\x3d\x3d\xbb\x78\x7e\xf1\xfa\xdd\xd9\xc7\x8f\x72\xcf\xbf\xa5\xe4\xcb\x59\xcd\x39\xf7\x9e\x76\xe3\xb4\x1b\x78\x96\x06\xaa\x03\x7e\x60\x6e\x29\xba\x6d\x84\xfc\xbc\x17\x8b\x6f\x4d\xbd\x7b\x8a\x6f\xe9\xec\x9e\xce\x25\xd1\xbf\xa2\xe4\x21\xc8\x83\xb5\xff\x23\x16\xf8\xf5\xaf\x29\xd6\x61\xe8\x9e\x63\x4b\xdd\xd7\x8f\x71\x90\x24\xfe\x07\x5c\x0a\x52\xfc\xdf\x30\x0b\x42\xea\xbf\xc4\xe2\x0c\xe6\xbf\xc6\xd6\x51\xcc\x7f\x85\x95\x72\xba\xff\x07\x06\xd5\x74\xff\x07\x6c\x14\xd3\xfd\x13\x6c\xd4\xd2\xfd\x00\x67\xa9\xbf\xa6\xa0\x1a\xbd\xa2\x58\x9f\x9b\x7e\xd6\x47\xa6\xdf\xf1\x2a\x58\xfb\x3f\x61\x40\xbd\x1f\x51\x2c\xb7\x4b\xff\xfb\xad\xa5\xee\x7f\x25\x4e\x62\xdc\x93\xfa\xfc\xf2\x76\xcc\x9a\xa4\x72\xa4\x3c\xe7\x37\xb0\xdf\x70\xf0\x6c\x6e\x7f\xad\x68\xf9\xab\xdb\x08\x05\xd7\x17\x5b\xd3\xf0\x37\x30\x0d\xc3\x1f\x3f\xd2\xfc\x2d\x18\x0e\x08\x42\xb1\x85\x4a\x4e\x45\x7d\xc3\x93\x6c\xb5\xce\x52\x41\x71\x18\xcd\xd6\x34\xf5\x1e\xbe\xf1\x6b\xac\x00\xb0\x2f\x34\xa1\x62\x94\x8c\xea\xeb\x54\x42\xf6\x94\xd6\x8d\xfe\xec\xab\xe4\x4a\xe2\x76\x8b\x70\xdb\xe6\xf9\x2a\xc8\xf9\x8b\x2c\xb3\xaf\x21\x61\x41\x34\x2f\xe8\xa5\x09\x44\xcb\xf4\x94\xd6\x10\x53\xf9\x6f\xa8\xf2\x11\xee\xb5\xea\x96\xca\x06\xb8\xae\xfc\x3f\x0c\x56\xd1\x54\xa1\x77\x36\x07\x75\xd4\x1d\xf5\x4e\xd5\xff\xe1\x49\x12\xaf\x17\x59\xc0\xa2\xbf\x9e\x43\x1d\xb4\x9e\xa2\xae\x16\x9b\xc4\xb2\x79\x53\xf7\x60\xad\x71\xe6\x49\xee\x95\xcf\xd2\xb9\x71\x9b\x3a\x4b\xe7\xba\x43\x3a\xf8\xd3\x2c\x9d\x93\x87\xd8\x4f\x71\xe2\xf7\xc6\x58\x7d\xf4\x1f\xca\x78\xe6\x54\x14\x02\x7e\x22\xd6\x65\x71\x8c\xcb\xdf\xe0\x6f\x34\x21\xe2\xa0\xac\xd3\xb6\xa5\x63\x5c\x42\x31\x1b\x86\x84\x63\x36\xac\x79\x3a\x49\xd1\x03\x1b\x82\xe7\x7e\x54\x14\x4a\xce\x25\x51\x67\x16\xa9\xc8\xf6\xa0\x4e\xb1\x0b\x98\x67\x10\x48\x32\x95\x6e\x25\xab\x14\xb3\x8d\x02\x9d\xdf\xaf\x16\x59\xe2\xba\xf2\xbf\xe1\x8e\x2e\x82\x2b\xd7\xdd\x55\x63\x33\x2f\x7e\x90\xb7\xf9\x8e\x9c\xed\xce\x16\xe1\x5d\x85\x9d\x72\x51\x38\xba\x98\xd8\x45\xc1\x52\xa8\x46\xa2\xe3\xa5\x37\x76\x39\x58\x76\x32\x08\x8e\xfb\xcc\x2d\x97\x42\x27\x5e\x7a\x8f\xc4\xd7\x56\xfd\x71\x50\xee\x31\x35\x55\x55\xc7\xd3\x9a\xeb\x77\x30\x02\x96\xee\xa2\xc1\x21\x4c\x7b\xd3\x53\xec\xa8\x35\xee\xd4\x31\x2e\x7b\x21\x08\xca\x3e\x34\x48\x3a\xef\xb7\x05\x51\xc6\x00\x52\x46\x58\x66\xc3\x08\x74\xf1\x5a\x2e\x81\xe8\x8c\xcf\xb7\xc3\x45\x9c\xaa\x08\x1f\x71\xe9\x9c\x2d\x05\x73\xf7\x96\xeb\xe7\x5a\x6f\xa7\xcd\x85\x60\xe8\xde\xb6\x25\xc6\x28\xb5\x6e\x94\x22\x8f\x63\x27\x70\x40\x84\x21\xaa\xcb\xda\x77\x4d\x85\xa2\x52\xa0\x54\xdd\x3b\xe4\x62\xa0\xca\x26\x7d\x4d\x1c\x07\x33\x8f\x0d\x73\x32\x42\x5b\x6f\x56\xd7\x63\xa9\x90\x53\x39\x40\x2d\x64\x44\xcf\x54\x27\x87\x1f\xf5\x0f\xc3\x98\x4b\x0d\x80\x69\x0b\x93\xa0\xc7\x61\xdb\x6a\x50\xd4\xca\x2b\xe9\xea\xea\x96\x08\x26\xbd\xa7\x7f\x97\x58\x98\xea\xb6\xf9\xa6\x42\x5b\x55\xbe\xae\x5a\x69\x5f\x5a\x8e\x26\xac\xbc\x77\x64\xda\x7c\x23\x05\x57\x9a\x9d\x74\x58\xce\x37\x62\xbf\x14\x45\x6f\x8c\x53\x63\xb1\x05\xdf\x7b\x23\xec\xc0\x84\x74\xe2\xb4\x9b\xba\xae\x97\x0e\xef\x58\xcc\xd5\xb7\xdd\x0b\x33\x1d\xde\xd0\x7b\xb8\x2f\xaf\x13\xcf\xaa\xac\x97\xb9\x2e\xf5\xac\xa1\x17\xd4\x2d\x85\x34\x50\x8b\x12\xec\x1b\xce\xc8\xc6\x63\xde\x18\x21\x1c\xc0\xaf\x03\x84\x70\x0e\xbf\x1e\xd9\x41\xe1\x36\xd5\x51\xa8\xcc\x61\xea\x9b\x2d\x95\xca\x53\x4f\xb2\x4b\x44\x03\xa2\x4f\xaf\x41\x3a\x7a\x1e\xb5\x75\x5d\xf8\x8e\xb3\xf4\x89\xd4\x0b\x11\x33\xb6\x1b\x74\xc3\x04\x34\x6e\xf2\x8a\x19\xd7\x16\x99\xa8\x16\x72\x54\x9a\x75\xd9\xb2\xe6\x0f\x82\x7b\xa1\x69\xa8\x6b\x00\x8d\x94\xeb\x20\x4f\xff\x22\x4e\xeb\x34\xed\xc6\xd2\x37\x4d\x9c\xd3\xa8\x3b\xe8\xe6\x9b\x35\x65\x1e\xaa\xe4\x90\x27\x7a\xc3\x68\xf7\x78\x8b\x78\x9b\x57\x0d\x10\x8c\xc0\x82\xfa\x5c\x6d\x88\x1e\x2f\x6f\x88\xcd\x06\x72\x45\xf9\x7b\x3d\x76\x60\x22\x86\x4a\x79\xae\x45\x6b\xb4\xac\xe2\xdd\x5a\xc0\xcf\x3d\x31\xca\xc3\x24\xce\x39\x4d\x4f\x92\x38\xbc\x01\x97\xfb\x8d\xa9\xf2\x39\xfb\xb9\x52\x74\xd5\x3e\x10\x10\xe8\x40\x6c\xfe\x8c\xe6\x39\x70\xd7\x9b\x9c\x77\x69\xcc\xaf\x29\xeb\x2e\x28\x78\x33\xee\x66\xcc\x1a\x19\x0c\x6e\x9b\x9d\xbe\xb1\xd0\xeb\xec\x8e\xef\x01\x6e\x29\xca\x49\xfb\x60\xad\x6a\x5f\x6d\x43\x14\xdb\x64\x7d\x8c\xf5\xb2\x11\x24\xde\x5e\x62\x92\x99\xc3\x62\x63\x52\x75\xe4\x15\x9c\x4e\x5b\x53\xa5\xed\x0d\xb5\xee\xec\xb9\x60\x5c\x70\xa0\x49\x33\xc2\xb1\xc7\x4d\x40\xea\x0a\xf6\xb5\xb6\x9c\x45\x4a\xe4\x91\xad\x71\xa9\x37\x6a\xbd\x0f\x1c\xd9\x1e\x59\x47\x65\x64\xd1\x00\xa0\xb5\x51\x5b\xaa\xbe\x4d\xf5\x0f\xe5\x72\x42\x36\xf5\xb9\x44\xbf\xd4\xd6\x91\xc6\x7d\xad\x30\xe4\xb7\xa9\xfe\x51\x81\x21\x4f\x09\x0a\x06\xfd\xb4\x0b\x02\xfd\x04\xe5\xe9\xa7\x5a\x69\x88\x8a\xa8\xf4\x9b\x78\x10\xa7\x94\x91\x92\x11\x20\xa9\x8a\x9d\x08\x1f\xd0\xd4\x7a\xf1\xcd\x59\x7f\x91\x45\xf7\x26\x16\xb7\x35\xb3\x1b\xc8\xae\xaa\x79\xc9\x0b\x08\xc8\x4e\x19\xf1\x46\xd8\xb4\x09\x09\xf6\x26\x94\x20\xda\x36\xa1\x61\x66\x96\xce\x16\x99\x9a\xb3\x2f\xd5\x2a\xf6\xee\x84\x5e\x05\x9c\x4a\x94\x89\xd3\xb5\x32\x6b\x96\x09\xb2\x49\xa1\xe6\x89\xe5\xe0\x68\x05\xd7\x5a\xb2\x74\xc4\x85\xdb\x3f\xd1\xbb\x6e\xa6\x3b\xe3\x3d\xd8\xe3\x1e\x68\x36\x05\xdb\x23\x29\x7f\x43\xaa\x19\x1f\xf1\x4b\xa4\x94\x08\xaf\x8e\x92\x31\x36\xe5\x98\xae\x62\xce\x55\x06\x0b\x21\x95\x39\xd6\x86\x16\xed\xb2\xc1\x73\x02\x95\x87\x36\x4a\x4b\xcc\xec\x46\x6a\xe8\x39\x5c\x65\xa1\xca\x88\x56\x81\x35\xf3\x03\x8e\x7e\xe7\x34\xa1\x60\xb8\xc1\x9b\x55\xd0\x4f\xad\x15\x94\xcd\xe3\x90\xa3\xd2\xb8\x9c\xb3\xec\xbe\x65\x39\x57\x66\xd5\x50\xe5\xf3\xda\x07\x6a\xc7\xd0\x7e\xa1\x94\x72\xc1\xb6\x9d\x6b\x12\x13\xe7\xe7\x9b\xf5\x1a\x3c\x0f\xfe\xab\xe9\xcb\xcc\x09\xb3\xf5\xbd\x83\x9d\x70\xc3\x9d\x39\xe6\x44\xb3\xc4\x96\xc2\xe1\x8c\xce\x7d\x8a\x19\xe9\xf5\xaa\x18\x3f\xc9\x56\xab\x20\x8d\x4c\xdb\xca\x9b\xcf\x65\xc6\x4e\x83\x7a\xe0\x57\x70\xe4\xf6\x05\x10\x52\xaf\x9d\x41\x64\x7b\x5e\xd1\x28\x0c\x6d\x1d\x18\x27\x0a\x78\x30\x30\x68\x1b\x38\x7d\x38\x64\x80\xff\xb4\xe7\x9c\xb3\x78\xb1\xe1\xd4\x63\x65\xb4\x35\xb1\x97\xda\x1f\xb6\xe5\x59\x38\xd9\x7e\xde\x37\x80\xb2\xfd\xfa\xff\x10\xa3\x9b\xfd\x8f\xc8\xe8\x06\x84\x79\xfb\x82\xb7\xf5\x52\x12\x20\xd7\x4d\x6d\x16\x36\x2d\x59\xd8\x54\xca\x25\x37\xbb\xe3\xa8\xfd\xdf\xc1\xbf\xea\x1b\xbe\x1a\x6b\xa7\xfd\x8b\x09\xb6\x54\xd2\x3b\x68\xa0\xf1\x96\xe7\xd1\xff\x47\xb8\x12\xcd\x79\xd4\xb7\x79\x6a\x6f\x26\x20\xf0\x92\xfb\x08\xa1\xfa\x57\x85\x31\xd1\xcc\x87\xc5\x69\x48\x7e\xa2\xe2\xe5\x96\x18\xd7\x11\x3a\x28\x43\x02\xc6\x08\x17\xc0\x99\x38\x86\x82\x57\x70\xb4\x8b\x8e\x03\xd3\x62\x81\x79\x15\xdc\x50\x0f\xd9\x7b\xa6\xba\xd0\x94\x9f\xe5\x5e\xe5\x95\xdb\x44\x59\x6a\x27\x8a\xe5\x79\x84\x38\x8c\x0b\x02\x61\xc8\x9f\xfe\x71\x2a\x65\x80\x55\x02\xe5\x44\x31\x73\x94\xbe\x92\xf4\xca\x2b\x1b\xa6\xe2\x03\x04\x37\x54\xf9\xc1\xd1\x3e\x2d\x5a\xae\x1f\x68\xa5\xe4\xb6\x51\x94\x54\x07\x6b\x18\x44\x11\xc8\x84\xdf\xa8\xad\xcd\xd3\x0c\xd2\xae\x3a\x51\x51\xf4\x46\xe5\x57\xd1\x91\xfa\xf5\x8c\xea\x9c\xdc\x5f\x03\x46\x03\x07\x55\x0b\x0c\x73\x7e\x9f\xd0\xe1\x32\x4b\xf9\x79\xfc\x07\x25\xce\x78\x7f\xcd\x9d\xd6\x3c\x8b\x8c\x45\x82\x75\x1c\xb5\x7f\x5e\x07\x51\x14\xa7\x57\x3b\xbf\xaf\x02\x76\x15\xa7\xbb\x8b\x67\xca\xf5\xbb\x13\x2c\xf2\x2c\xd9\x70\xda\x9a\x6f\xc6\xa7\x0e\x8b\xaf\xae\xb9\xe3\x3b\x09\x5d\x72\x67\x4e\x9c\xc1\xe1\xe1\xe1\xe1\xfa\x93\xa3\x9c\x1d\x28\x29\xff\x3a\xb8\xa2\xbf\xbe\x5b\x2e\x73\xc1\x06\xee\x1c\xf5\x3c\x64\x59\x92\x5c\x64\xeb\x4e\x5b\xa3\x78\xb6\x26\xac\xef\xac\x3f\x35\xda\x52\x99\x2c\x8c\x06\x51\x96\x26\x62\x17\x6f\xe0\x17\x26\x25\x31\x73\x1d\xd7\x07\x7d\xbd\xa6\x69\x04\xc1\x59\xbd\x4a\x41\xd4\xb2\xb8\xaa\x1c\x74\x5b\x76\xc1\x4b\x88\xac\xd6\x0a\x29\x27\xe1\xae\x35\x68\x4d\x2d\xc3\x2f\x99\x06\xca\xe2\x7f\x72\x62\x36\xe7\x7a\x69\x27\xd8\xb6\x78\x2c\x4e\x5b\x77\x68\x57\x4b\x76\xa3\xca\xac\x01\xc5\xbd\x55\x28\xc4\x0e\x26\x57\x3b\x7d\xfc\x02\x96\x25\x25\xda\x8d\x63\x9d\xb4\x93\x06\x29\x8d\x51\x70\xfc\x50\xae\x51\xfa\x89\x86\x8a\x01\xf3\x2c\x72\x6e\x5d\xf6\x51\xd2\x1b\x4b\xb7\xe7\xd2\x53\x98\xd4\x2d\xf1\x2c\x3e\xd9\x4e\x6f\x63\xb1\x6d\xb2\x0f\xff\x3d\xc1\x92\x6c\xc0\xef\xb0\xe3\x6b\xfb\x9a\x96\x13\x8c\x75\x50\xb1\xd1\x53\x1e\x4a\xac\x2d\x01\x87\x09\x0d\x98\x21\xf6\xea\x1c\x53\x49\x93\x72\x5a\xa9\x95\x6f\x21\xae\x92\x67\xe7\x26\x21\x6b\x51\x3b\x81\x7a\x1b\x2e\xb3\x70\x93\x7b\x08\xab\xf5\x7e\x45\xed\x1d\x59\xcd\x96\xe7\x49\xf2\x21\x48\xaf\x68\xee\x7d\xf5\xc9\xa2\x42\xb4\x75\x19\x7d\x7a\xca\x29\xff\x97\xed\xe1\x92\xf1\x2f\x6d\x75\xf5\x5e\x8e\xe5\x07\xa3\xb8\x14\xa8\x93\x0c\x9c\x10\x6a\xa9\x8d\x38\xb9\x7f\x79\x2d\x23\x3e\x77\x75\x93\xbb\xd2\x11\x30\xd8\x80\x29\x01\x91\x84\xdf\xcd\xc4\xaf\x0d\x77\xfe\x82\xb6\x70\x11\xd2\xdc\xc1\xec\x9a\x0c\x2a\xf4\x59\xb0\x82\x0a\x5a\x73\xbd\xab\x24\x7d\x15\x2f\x20\x5e\xe9\x81\x72\x6a\xdd\xaf\xf8\xb1\x47\x11\x2a\x8a\x31\xb8\x25\x4d\xb3\x88\x0a\x8e\xed\x33\x1d\x53\x0d\xb0\x3b\x16\x74\xe5\x37\x45\xd5\xff\x02\xc7\x54\xd9\x4d\xad\x17\xa6\xb1\x48\xab\x47\x14\x27\x8a\x73\xc1\x06\x47\x0e\xfa\x8a\x2a\x03\x5d\x6e\x68\x9b\xd6\x95\xf4\x1f\x98\x50\x1a\x44\xdd\x6c\xd9\x2d\x21\x97\xc5\x74\xc3\x36\xbc\xd1\x2e\xaf\xde\x30\x03\x14\x15\xc5\x67\x1a\xfd\xe7\x5a\xfd\x6b\xb6\xe9\x86\x41\x7a\xf9\x17\xde\x0d\x37\xbc\x0b\x81\xcc\x97\x2c\x5b\x75\xd5\x4d\x68\x2e\x35\xa3\xac\x1e\x89\x59\xd2\xd2\x93\xfc\x2f\x5a\x9b\x5b\xf3\x8e\xdb\xcf\xcf\x22\x99\x0d\xce\x95\xca\x9b\x9c\x3e\xff\x6d\xb6\x35\xfb\xa4\xf2\x53\x43\x18\x01\xe8\x3b\x3f\x7d\x73\x7a\x72\x21\xa3\x02\x89\xf9\x02\xa1\xfc\xa9\xa1\x07\x82\x69\x85\xb9\x51\xda\x9b\xbf\x3e\x7b\xff\x53\xad\x40\x51\x38\x17\xa7\xbf\x5c\x3c\xff\x70\xfa\xbc\x06\xc9\xf8\x85\xdf\x35\x1e\x1d\x26\x46\xe4\x73\x2c\x00\x55\x24\xd3\x93\x3f\x4b\xc2\x04\xc4\xc8\x1b\x61\xd5\x42\xed\xe3\x04\x03\x44\x45\xb2\xda\xaa\x2c\x3b\x25\x63\x91\xd7\x1b\x07\x7e\xf9\x53\x4e\x23\x79\xa8\x73\x90\x98\xe8\x0a\x21\x4a\x10\xdf\x4a\x26\x71\x5c\xe7\x18\x65\x0b\x51\x27\x56\x5d\x38\xcb\x22\x7a\x22\xa1\xcb\xd8\xb1\x4d\xca\x8a\x53\xc1\xbb\xca\x82\x31\xc4\x4e\x32\x17\x9e\xe5\xd1\x88\x6f\xeb\xc3\x6c\x5d\x2e\xa3\x87\xad\x15\x50\x9a\x3c\xd4\xfc\xcc\xd5\x5c\x1e\x50\xad\xb1\x48\xc1\x49\xba\xd2\x9a\x4f\x67\x74\x5e\x14\xf0\x8f\xcc\xe6\x08\x29\x27\x66\xcb\xd4\xe7\x38\xe4\x9f\x7c\xa6\xfc\x2b\x6f\x71\x96\x86\xf4\x33\xf0\x4b\x91\x47\xec\xa1\x87\x74\x98\x2d\x97\x9e\x74\x20\xa0\x34\x57\x98\xad\xb9\xa2\x75\x8d\x86\x1f\x89\x62\xee\x00\x66\x2c\xfd\x26\xae\xe2\x2a\x91\x2c\xed\xfd\x66\x73\xe9\x7d\x53\xde\x28\x94\x16\x72\x63\x84\x19\xf1\xbc\x96\x8e\x22\xe8\xe0\x6c\x8e\x4c\xc0\x03\x19\x12\x82\xd5\xc3\x28\xb0\x59\x3a\x1f\x2e\xb5\x3a\x0e\xbc\x85\xfc\x93\x65\xac\xa4\xd0\xb0\xc3\x5d\x5e\x4b\xd5\x38\x95\x0e\xf3\xc0\xdb\xbd\x8c\x83\xcf\x6d\xe7\x76\x56\x04\x84\x49\x76\x14\x80\xc9\x60\x3a\xcb\x44\x2b\xa4\x71\xb7\x7a\x19\x7e\x94\xaf\xca\x69\x9f\x48\xb5\x22\x44\x2a\x57\x4a\xe0\x6b\x2f\xf6\x95\xa7\x7d\xa8\x17\x1a\xbc\xc5\x25\x61\x60\x4d\x99\x91\x1c\x40\xe6\x3d\x06\xe7\x81\xde\x13\x9b\xc4\xd4\xf3\x9a\x08\xca\xae\xdb\x63\xcd\x58\xf3\x3a\xfe\xbb\xd2\xe5\x2a\x95\x53\x73\x47\xda\xc2\xa5\x43\x29\xa4\xf3\x76\x49\x1a\xce\xab\x4a\xad\x96\xc7\x43\xb9\x2e\x0c\x9c\x65\xea\xb1\x1d\x30\x2e\xae\x63\xd6\x0a\xe2\x95\x91\x56\xc0\x58\x00\xe5\xb2\x0c\xf2\xea\x9d\x2d\x95\xb2\xeb\x07\x4c\xf1\x19\x3f\x28\x7e\xc8\xa6\xdc\xb4\x95\xed\x97\x9e\x0a\xb5\x9f\xb0\xb2\x6e\x91\xe1\xcb\xf5\x4b\x75\xc5\xf2\x1a\x5c\x89\x28\xf5\xfd\xb7\xbd\x4a\x76\x34\x75\xdb\xde\xd8\x3f\x05\x78\x67\xbf\x1a\x3d\x53\x23\xfc\xc5\x7e\xc5\x5e\xe5\x9a\x44\xe9\x0e\x1b\x58\xed\x66\xfb\x55\x5f\x04\xf5\xd9\x81\xbb\x3f\x5c\xbc\x7d\xa3\x98\x19\xf9\x72\x92\x25\x8a\x68\x63\xb1\x25\x9f\x29\xb4\x3b\xa8\x41\x56\x39\x8c\x49\x9b\xfe\x9f\x1d\x56\xa0\x22\x2f\xb3\x6a\x73\xdd\x31\xb1\xf9\xb0\x2d\xe6\x66\x8c\x1b\xdb\xb1\x09\x2c\x6e\x99\x36\x56\x74\x86\x69\x53\xfd\x91\xba\xae\x67\x14\x8e\x75\x37\x40\xe3\x98\x15\x85\xf9\x50\xed\xb2\xfc\x8c\x5c\xd7\x91\x24\xc2\x89\x41\x42\xeb\x49\x77\x6c\xda\xe0\x85\xab\x85\x30\x1b\xcd\xa5\x63\x11\x39\x82\x6d\x3e\xf0\x1b\x22\xf6\xa2\xa8\x20\x44\xf6\x01\x7c\x06\xa4\x6d\xe5\x75\x33\xf5\x4a\x84\x06\x7e\x11\x17\xdb\xdd\x44\xeb\x29\xb2\x77\x1d\x69\x2f\x10\x63\x63\x30\x5f\xb3\x24\x88\x9b\x5a\x5b\x62\x3e\xd6\x2e\xbf\x48\xea\x31\x23\xd0\x43\xb8\xfe\x19\xc2\x30\xc9\x25\x22\x96\x75\xbb\xc9\x46\x67\x37\xf1\x60\x38\xc0\xd9\x9f\x21\x1f\xb2\xc0\x76\xbb\xdd\x45\x97\x71\x8a\xb3\xa6\x7d\x81\x7d\xcf\x5a\x6b\xc3\x34\xd6\xe6\xda\x9b\x24\xb1\x5a\xdd\xee\xb6\x31\xb6\x54\x85\xf4\x92\x45\x3b\x00\x78\xcd\x29\x02\xba\x55\xed\x37\x5e\xcf\x61\x78\xb5\x46\x76\x39\x01\x56\xc1\xba\x8d\x0a\x19\xc2\x51\xf6\x7a\x8b\x9a\x0b\x59\xae\xb0\x43\x60\x79\x5b\xd4\xd1\xcc\x82\xed\x69\x59\x96\x5d\x31\x0f\xaf\x69\xae\xe7\x57\x23\x43\x27\xd5\x59\x88\xf9\xa5\x3b\x53\x14\xe9\x70\x95\xfd\xf1\xb6\x25\x35\x6f\x49\xcc\x5a\xd2\xee\xe8\xe2\x26\xe6\xb5\x0f\x3b\x86\x5d\xf2\x44\x13\xd0\x69\xd1\x44\xa7\x47\x08\x9b\xd4\x94\x23\xac\x69\xa0\x1a\x2c\x4a\xa8\x9f\x62\x1f\x36\x7a\x6b\x94\xd0\xe1\x3a\x60\x34\x05\xde\x75\x2b\x8e\x1c\x5b\x54\xdb\x06\x5e\xd2\xc5\xe6\x8a\xa8\xff\x60\x6d\xa1\x7e\x0f\x19\xbd\x12\xb3\x8b\xbd\xa4\x6b\x46\x43\x30\xb1\xd0\x32\x2c\x6b\x86\x37\xf3\xff\x1c\xb0\xd6\x8c\x5b\x4f\x31\xde\xa0\xcd\x5a\xd1\x9c\x05\xe9\xc1\xc4\x6b\x37\xa7\x80\xec\x53\x78\xfa\x46\xa7\x5c\x69\xe0\x1a\xe9\xd4\xf0\x67\x1a\xdc\xbc\x0d\xd6\x45\xe1\x51\xfd\x9b\xa8\xff\xa0\x42\xfb\x39\xa5\x56\xd9\x80\x35\xa3\x4b\xca\xce\x02\x1d\x8f\xf3\xe3\x95\x15\x14\x45\x7a\x06\xc2\xa9\x74\x4e\x45\xa4\x9f\x1e\x6e\xb4\xdf\xcb\x09\xa5\x63\x43\x94\x8a\x33\x96\x8a\xdb\x4b\x9a\x83\xb9\x47\x26\xb7\xda\x32\xc2\x0d\x21\xc4\x18\x2e\xee\x52\xb9\x31\x5a\x36\xb2\x01\xd9\x54\x16\xf5\xa9\x97\x49\xff\x0f\x62\x96\x98\xbb\xad\x18\x19\x6e\x52\x1e\x01\x25\xfd\x8c\x05\xdc\xc6\x56\x14\x4c\x03\xb9\x3c\x53\xed\xb1\x63\x8b\x3f\xca\x53\xd0\x49\x12\xe4\xf9\xff\x80\xb7\x74\xe5\x2e\xf4\x71\x9d\xc9\xc0\x64\x96\x5f\xb9\x0f\xf2\xa4\xf5\xff\x56\x4d\xae\xb2\xed\xda\xba\xf0\xff\x57\xb2\xfa\x93\x4a\x56\x25\x0a\xe1\x76\xf4\x24\x48\x92\x93\x6b\x1a\xde\xfc\xf7\xb8\x69\xad\x28\x27\x68\x2b\x82\x25\xe5\xe1\xb5\x1d\x54\x60\x5e\xd1\xfc\x6d\x28\x06\x30\x42\x25\x65\x1d\x7e\x38\xff\xfb\x7b\xed\x75\x05\xa7\x64\xe6\xbc\xca\xd8\xea\x65\xc0\x03\x07\x3b\xaf\xe2\x84\x7e\xa0\x41\x44\x99\x83\x9d\x17\x49\xb6\x70\xb0\xf3\xd3\x87\x37\xe7\x34\x60\xe1\xb5\x8a\x7d\x8d\x1d\x79\x75\xef\x60\x07\xf6\xf1\x17\x9b\xe5\x92\x32\x47\x1c\x7a\xd3\x8e\x4d\x25\x21\xcc\x15\x2c\xdd\x30\xe0\xde\x4c\x37\xd9\xf9\x01\x2a\x10\x80\x3e\xd0\xdf\x37\x34\xe7\xf0\x2b\x5f\x67\x69\x4e\x05\xd0\x45\xc6\xf8\x49\x96\x72\x26\xf8\x5a\xe6\xcc\x11\xc2\x71\x53\x51\x83\xa1\x07\x3a\x63\xf3\x5d\x2a\xe5\x62\x45\x3f\xd4\x06\x7f\x87\xdc\x4d\x80\xd9\x56\xc5\xb4\x5c\x02\x27\x7c\xbb\xad\xec\x89\x6d\x7e\x9e\x4a\x82\x87\x1e\xea\xb3\x41\x5f\x91\xef\x68\x23\x04\x13\xd2\x1a\x3a\xb9\xd1\x5d\x7f\xd8\x7e\x76\x0a\x1b\x59\x8a\x4d\x83\xcb\x0b\xf5\x3a\xf3\xd7\xbc\xec\x00\xd9\x21\x04\xf2\xb3\x35\x84\x72\x2d\xc9\x30\x09\x3a\x9a\x40\x23\xd5\x84\x12\xa8\xde\x9d\x7d\x45\xb5\xf1\xd2\x6b\xa9\x19\x95\xbb\x44\xa3\xae\x5d\xc2\x9b\x78\x09\x12\x1b\xf0\xb4\x6d\x6f\x58\x4c\x07\x25\x48\xc1\xb6\x51\xdf\x65\xc4\xf9\x5a\xb0\x40\xd0\xc4\x2f\x68\xe3\x81\x8d\x95\x58\xfb\x2d\x0d\xb5\xf6\x33\x7b\x26\xb6\xbb\x67\x30\x1a\xf0\xca\x75\x18\xe8\xe8\xe9\x70\x3d\x56\x1f\xa1\x32\xb1\x7e\x46\x38\x2b\xe5\x43\xf1\x51\x36\x89\xfb\x7d\xc4\xbc\x74\x16\x1b\xf1\x4f\xcf\xa8\xdd\xbf\x67\x10\x4f\x80\x46\x5b\x23\x2c\xc6\xe9\x6e\x93\xf3\xd6\xa9\xa9\xb4\x8f\x29\xf9\xcc\x2e\xf6\x1f\x55\xfb\xa5\xf6\x0c\x63\xfa\x8c\xb7\xdb\x98\x23\x58\x28\xfd\x31\x6d\xc9\xf1\x79\x82\xfe\x19\x48\x59\x0a\xb0\x0c\x24\x38\xbc\x7c\x1e\x16\x35\x6b\xcb\x6c\x8d\x20\xfc\xa9\x2c\x35\xa3\x51\xab\x0f\xae\x2d\x57\x64\xb5\x03\x30\x10\xb5\xf3\xf8\x2a\x0d\x92\xb9\xf3\xf5\xb3\x52\x22\x43\xca\xdd\x05\x96\xf5\x65\xaf\xc2\x11\x70\x42\x4d\xce\x5f\x49\x57\x21\x93\xba\x0b\x54\x6f\x96\x9b\x0d\x71\x0e\xfb\x08\xaa\x96\xb6\x0f\x8f\x2f\x8e\xb1\xc5\xca\xe2\x7a\xfb\x61\xdc\x2b\x55\x18\xf5\xb8\x9d\x36\x0b\xff\x1c\xcd\xcc\x01\x93\xe5\xc0\xd2\xbb\x6e\xfa\x1f\xa2\x99\x72\x9e\x7c\xcd\xa5\x34\x88\x3f\x21\x18\x90\x2a\x65\xdd\x42\xb7\x9d\x4f\xf4\x49\x78\x5a\xd7\x38\x11\x30\xa6\x5e\xc3\x50\x58\xc1\x96\x28\x45\x08\x34\xa8\x2a\xf5\xe1\xde\x18\xf7\xc6\xc8\xdf\x51\x54\xa2\x0d\x9c\x22\x0a\x66\x4a\x15\xf2\x29\x79\x10\xef\xa6\xab\x8b\xcd\x62\x91\xd0\x5c\xac\xae\x50\xf0\x28\x89\x62\x9e\xb6\x2a\x78\x38\x20\x78\x58\x19\x60\xfb\x36\xfd\x4f\xce\xfc\x72\x3b\x17\xb3\x5f\x5f\x6d\xfd\x59\xe3\x31\x2f\x2e\x67\xdf\xac\x99\x61\x4e\x1a\xbc\x03\x4e\xbf\xaa\x84\x5c\x98\x4e\xf5\xf0\xdb\xea\xe6\x62\xf8\xf1\xe3\xab\x77\x1f\x4e\xa4\x45\xec\xf3\x37\x6f\x3e\x3e\x7f\xf1\xee\xc3\xc5\xc9\xbb\xb3\x8b\x0f\xef\xde\xbc\x39\xfd\xf0\xf1\xfd\xbb\x37\xbf\xbe\x7a\xfd\xe6\xcd\xd4\x13\x8c\x6a\x96\xd0\x61\x92\x5d\x79\xce\xd7\x16\x23\x9c\x6d\x68\x37\xce\xbb\x39\xe5\xb8\x7b\x17\x27\x49\x77\x99\xb1\x50\xf1\x92\x49\xd2\x5d\x67\xc9\xfd\x32\x4e\x44\x63\x7b\xa3\x56\x01\x0e\x1d\x2a\xb6\x0a\xa2\x11\xab\xdf\x3b\xcd\xaa\x3c\xbd\x96\x50\x51\xf4\xe8\xb0\x86\xc0\x2d\xf2\x28\x04\xbe\xac\x7f\x20\x31\x56\x69\x12\x77\x24\x45\xdb\xf2\x5a\x9b\x4f\xb9\x4f\xc5\xb9\x7a\xd2\x12\xeb\xe3\x21\xb7\xb8\x49\xbf\xc1\x5e\x8a\x3d\x17\x83\x3e\xaa\x98\x90\x9a\xd7\x8c\x65\x5c\x43\xad\xa7\x2a\xde\xe5\x17\xbc\x48\xb2\x85\x6f\x33\xae\x2a\x2b\x70\xaf\xf2\xb7\xad\xb9\xc0\xee\x1f\x6c\x5f\x30\x49\xb6\xc0\xbd\x91\x5a\xc1\x66\x9c\xc5\x32\xf0\x10\x5e\x2a\xc6\xd8\x2f\x59\x64\x68\x5d\x50\xb2\xbd\x7e\x85\x07\x16\x5f\xb7\x52\x2a\x6e\xe5\x41\xf2\xc8\x3f\x33\x4b\xe2\x75\xca\x9f\x41\xb1\xb9\x83\x4d\x22\xb8\x85\x68\x4f\xb5\x9d\x45\xd8\x1f\x5f\xa7\x7c\xfc\xa4\xb5\x48\x4b\xf2\xeb\x94\x1f\xec\xb7\x66\x6e\x49\x7e\x95\x64\xc1\xce\xf4\x27\x8f\x54\xfa\x1c\x67\xc4\xea\xfe\x30\xce\xff\x1e\xd3\xbb\xa2\x68\xd7\x13\x2e\x43\x48\x7d\x51\x00\x8c\x8e\x07\xb5\x18\x4e\xf2\x70\xda\x30\x82\x04\x59\xe3\xb9\xb9\x80\xc0\x7b\xb3\x7f\x04\x83\x3f\x46\x83\xc3\xcb\xc1\xff\xf4\xcd\xb7\xee\x5f\xbe\xeb\x0f\xff\xf1\xf1\xdf\x8a\xff\x79\xbe\x17\x0f\x39\x95\xb7\x2f\xad\xe7\x30\xad\x0b\x60\x5c\x31\x08\xde\xef\x1a\x26\x54\x77\x19\xd3\x24\xea\xa6\xc1\x8a\x3a\x16\x53\xc3\xb3\x37\xd9\x1d\x65\x27\x41\x4e\x3d\xeb\x3c\x98\x37\xa5\xe7\xbb\x9b\x6b\x79\xed\xda\x58\xf6\xc4\x29\xfd\xd4\xd0\x9e\xe1\x84\x0e\x65\xac\x77\x64\xcc\xc3\xb3\x94\x5a\x1e\x54\x15\x25\xe6\xdb\xd2\x88\x38\x1d\xea\x85\x24\x18\x87\x59\x4d\xd9\x7b\xde\xa2\x8b\xc9\x21\x2c\x9c\x69\x55\x62\x34\xa3\x56\xc1\x9a\x3c\x6c\x71\xe5\x50\x9b\x4c\x69\x8b\x02\xbd\xf1\xc3\x27\x55\xf6\x24\xdf\xab\x9c\x8e\x36\xdc\x28\xb6\x01\xa8\x16\xa7\xb3\xd1\x1c\x53\x19\xf8\x4f\x02\xa1\xe6\xcc\x57\x15\x9f\x9d\x05\x2b\x2a\xd0\xdf\x04\xd9\x6c\xd1\x8c\x1b\x78\x76\x58\x27\x39\xcf\x28\x5c\x50\xfd\x94\xd3\x08\x19\x16\xbe\xdd\x61\xcf\xf3\x84\xd1\x20\xba\xef\x8a\xa7\x83\x50\xa7\x2c\x49\x7a\xa3\x12\xf0\xd2\x76\x87\x4e\xef\xba\x96\x0b\x25\xb8\xdd\xa0\xc3\x2c\x4d\xb2\x20\xaa\x04\x59\xf6\x20\x40\xc5\x26\xe1\x10\x95\x28\x4b\x69\xd5\x51\x34\x7a\x60\x1e\x95\x71\xb3\xd0\xd6\xf6\x60\x75\x5d\xce\x24\x51\x57\x49\x19\x31\x23\xb6\xa0\x90\x0f\x45\xab\x9f\xe7\xd6\x0a\xf6\xaa\x61\xae\x22\x83\x0f\xb8\x48\x37\x92\x63\x1d\x0e\x53\x1e\x1e\x64\x35\x25\xf9\x12\xe8\xbb\xe7\xf4\x8d\xd4\xd8\x28\x6b\xcb\xa9\x44\x9f\x9d\x13\x21\xcc\x87\x0b\xa8\xbb\xac\x76\x5d\x53\x89\x29\x51\x3a\xb6\xc2\x74\xbc\xc8\xa2\xfb\x16\xbd\x17\x99\x41\x14\x79\x9d\xc6\x9c\x50\x4c\xa7\x2d\x86\x22\x65\x2e\xd0\x64\xa4\x7e\x3a\x14\xfb\x88\xeb\x8a\x0d\xc1\x22\x4c\x71\x5e\x11\x04\x21\xab\xa0\xc8\x09\x05\xf5\x2e\xe1\xba\x7a\x97\xf8\x3a\x00\x3a\x37\x00\xb1\xf7\x44\xd7\xad\xed\x89\x5f\x07\xef\x42\xa9\xa1\x1b\x8d\x12\xbf\xb2\x0b\xb9\xae\xee\xa3\xe7\x71\x22\x76\x75\x51\xb9\x20\xd8\x3b\xc1\x73\x84\xa6\x5e\x59\x81\x35\x51\x48\x24\x46\x59\xee\x6e\xb8\x86\x72\xbd\xaf\x7a\xb3\xd6\xa2\x73\xd4\x68\x98\x67\x6f\x22\xbb\xfb\x5a\x14\x99\x98\x31\xd3\x9d\x2d\xd2\xc1\x1d\x4a\x6c\x7c\xf9\xae\xb1\x5e\xc4\x51\xda\xba\x92\xf6\xe7\x82\xc4\x18\xad\xa1\x81\x80\x20\x18\xa5\x96\x5b\xaf\x69\xa5\x54\xde\x28\x85\x41\xb3\x7c\x6f\x9d\x04\x71\x3a\x11\xbb\x4c\x4e\x39\xf9\xe9\xe2\xd5\xe0\x99\x63\xb7\xe1\x05\x8c\x50\xf5\x1d\x18\xf9\x2f\xc2\x6f\x29\x83\xfe\x03\x13\x4b\x35\xe2\x73\x1d\x0a\xd6\xeb\x24\x96\x37\x3f\x7b\x9f\x06\x77\x77\x77\x03\xb1\x14\x06\x1b\x96\xd0\x34\xcc\x22\x1a\xd5\xfb\x09\xee\x10\xd5\x1c\x94\x2b\x5b\xac\xa1\xc6\x71\x2b\x2c\xc3\x50\xd2\x8a\x6b\x86\x6a\x17\x6d\xda\x2c\x5d\xa0\xd5\xbe\x57\x8b\x58\x73\xa5\x59\xf2\xcb\x73\xb6\x0a\x4c\xaf\xdd\xa6\x4a\x4c\x98\x6d\x04\xb3\x00\x11\xa8\x82\xa8\xab\x33\x76\x45\xa9\x6e\x90\x77\x45\x97\x4b\x36\xe2\xf3\x2d\x10\x13\x52\x5e\xd1\xc3\xe6\x65\x4d\xf6\x5d\xca\x83\xb5\x76\x4f\x15\x2a\x8b\xa2\x0d\x49\x36\x46\x7c\x33\x1e\x9e\xf2\x22\x77\x8d\x74\x9c\x7d\xb0\x6f\xa9\x8f\x12\xe6\x38\xc5\xb1\x3d\x56\xe5\x95\xd2\xee\xb1\xd2\xfe\x04\x75\x3a\x6e\xec\x51\x29\xec\x51\x58\x6f\x4e\xa0\x3f\x4e\x11\x4e\xff\xc4\x60\xb6\xeb\x91\x35\xb6\x9e\xaa\x03\x79\xa3\x61\x98\x92\xd1\x24\x2d\x2f\xaa\xb4\x9e\x98\x62\xdb\x86\x4b\x96\xad\x4e\xae\x03\x76\x92\x45\x54\x7a\x79\x29\xc7\xf2\xb7\x2c\x4e\x3d\xc7\x51\xbe\x63\x9a\x2d\xfd\x97\x4d\x22\x30\x02\x6d\x99\x44\xd5\xa9\x03\xcb\xad\xdc\x9d\x94\x2d\x80\xde\x75\x76\x4c\x21\xb0\xb5\x55\x53\xe0\xde\x4c\x81\xdf\xf2\x2c\xfd\x9a\x12\x7f\x3d\x7f\x77\x36\x5c\x8b\x45\xaf\x66\xed\xd6\xb2\xf0\x53\xec\x57\xed\x56\x9b\x92\x00\xe2\xfe\x90\xdc\xe3\x3a\xb8\xad\xe6\x38\x67\x54\x05\x61\x96\xbf\x09\x9b\xb2\xbe\x83\xbb\x4e\x9f\xfb\x7c\x8b\x6d\xd0\x52\x09\x8e\x54\x6f\x4a\x40\x2f\xce\x94\x17\xd5\xcc\xab\xa5\xec\x2b\x5c\xfb\xb0\xa2\x9a\x24\xcd\x09\x72\xb3\xcd\xca\x56\xc8\xf8\xa9\x15\x38\xd7\x41\xbe\x33\x66\xfe\x2a\x58\xd7\x8f\xdc\x02\x3a\xaa\x42\xc8\x69\xab\x2b\x6b\xd3\x6e\xc0\x4e\xb5\x88\xe2\x72\x5b\x94\x04\x00\x89\x46\x78\xbd\x0a\xd6\x68\x57\x4b\x18\xe8\xbf\x2a\xf1\xb4\xa9\x91\xcd\x31\x53\xbc\x71\xa5\xc6\x1b\x7a\x9f\x37\xc9\xf5\x6c\x5e\x89\xdc\xdd\x64\xbe\x25\x87\x0b\x57\x06\xa0\x9b\x26\x8e\x3a\x55\xc0\x70\x72\xf9\x67\x40\x1b\xc0\xbc\x1d\x30\x4d\x39\x8b\xff\x29\xc8\x56\xa3\x67\x0c\xf3\x79\x09\xbf\x72\xa8\x4a\x9a\xf2\xa5\xf2\x78\xd5\xd2\x12\x1d\xc5\x7d\xe6\xbc\x3c\x7d\x73\x7a\x71\xea\x60\xe7\xfb\xd3\x0b\x07\x3b\x3f\x9c\x3e\x7f\xe9\x60\xe7\xdd\xfb\x8b\xd7\xef\xce\xce\x1d\xec\xbc\x7f\x77\x2e\xd2\xdf\xff\x74\xe1\x58\xf1\x87\x6f\x2d\x95\x17\x20\xc0\x1e\x27\xbc\x28\x1e\xb6\x08\xd8\xe4\x8e\xba\x5f\x31\x47\xb4\xdb\xfa\x81\xa6\xf5\xf4\x5b\x3d\xc6\xc8\x25\xb7\x61\x09\xa1\xe2\xa9\x8c\x79\x18\x8d\x68\xca\xe3\x20\xc9\x09\xb5\xdf\x30\xd7\x4c\x82\xbe\x3f\x52\xaf\x40\x5d\x13\x8f\xea\x77\xa4\x56\xd4\x8a\xf2\xeb\x2c\x22\x54\xfd\x50\x89\x59\x44\x45\x52\x16\x29\x37\x64\x52\x2a\x25\x0e\xbd\xf0\x03\xc7\x45\x21\x35\x1b\x68\xc9\x6a\x42\x68\x48\xeb\x1d\x57\x8e\x5f\xb6\x23\x57\xd1\x19\x73\xee\x36\x54\xd8\xee\x13\xb7\xdf\xa4\x03\xde\x6a\x8a\x93\x07\x2b\x3a\xc8\x58\x7c\x15\xa7\x0e\xee\x99\x5e\x57\x19\xa5\x76\x1c\xf0\x1d\x38\xf0\x18\xe1\xea\xb7\xaa\x52\xbf\xc8\x59\x91\x12\x36\xe4\xd9\x4f\xeb\xb5\x96\x33\xe0\x95\x11\xa2\xa4\xe8\x78\x30\x9e\xa6\xbe\x66\xc0\x01\x83\x1c\xfe\x69\x58\xf0\xb3\x34\x28\x53\x28\xe5\xea\x87\xca\xa5\xf0\xab\x4c\x7a\x96\x94\x31\x6d\x85\xe6\x41\x23\xb4\xfd\x85\x69\x19\xcc\xd4\x6a\x2a\x72\xdd\xb8\x7d\x66\x89\x53\x1a\x6c\x64\x41\x92\x64\x77\x34\xea\x2e\x33\xd6\xfd\xfe\xf4\xa2\x9b\xb1\xae\x00\x04\xaa\xc3\x34\x07\x85\xe1\xea\xd9\xce\x8b\xab\xc1\x67\x2b\x67\x5a\xb5\x89\x59\xd2\x18\x16\xaf\x3c\x04\x57\x7f\xdc\x73\x5c\xa7\x45\x08\xa0\xce\xb2\xa5\xd9\x82\xca\x4c\x1c\x50\xdb\xd6\xd2\x95\x21\xa3\xeb\x24\x08\xa9\xb7\x77\xd9\xdf\xbb\xc2\x4e\xd7\x01\x3d\x69\xb5\xb9\x13\xa7\x2d\x43\x87\x6b\xd1\x42\x44\x05\xe7\xfb\xd3\x87\xd7\xc6\x1b\x9f\x97\x22\xdc\x92\x1a\x23\x70\xa6\xc7\x1b\x31\x6e\x65\xc8\xfe\x07\xc3\x7c\x81\x10\xdf\x78\x09\x93\x43\xc6\x03\xbe\xc9\x4b\xcf\x9c\x5c\xa5\x4c\xf7\x47\x23\x5f\xbf\x28\x1d\xfb\x1b\x62\x15\x39\x26\xfb\xa3\x91\xb6\x13\x86\x94\xa3\x83\xd1\xc8\x06\x2a\xcf\x40\xe5\x6f\x10\x69\x4e\xb9\xf5\xd5\x77\xde\xfd\xad\x7a\x46\x6a\x4c\x72\x6c\xd6\x1c\x17\xcf\xa2\xd0\x87\xaa\x72\x70\x29\xda\xde\x5a\xd4\x31\x4c\xb2\x56\xcf\xa4\x02\xf2\xad\xbc\xf3\x79\x10\x4b\xdb\xaf\x9e\x35\xb7\x68\x8b\x95\xe6\xe0\xad\x7d\x31\xa5\xd2\xae\xec\xb4\xab\xaf\xac\xee\xca\xab\xd6\x81\x1f\x64\xdf\x7d\x0b\x4b\xd8\x42\x47\x0d\x79\x58\x21\xc1\x57\x48\xb1\xf0\x84\xf0\x86\x25\xbe\xc6\x8d\x68\xfb\xd5\xb0\x21\xd4\x91\xdb\x93\x6c\x08\xac\x42\x5d\xfd\xc8\xae\xd4\x71\xb6\xb6\x28\x12\xe6\x88\x8e\x00\x26\xdd\x02\x2c\xc8\xec\x60\x34\xc6\x07\xa3\x7d\x7c\x30\x3a\xc0\x07\xa3\xa7\xf8\x60\xf4\x6c\xde\xb9\x1a\x32\x1a\xc5\xac\x19\xb3\x25\x5e\x7a\x83\x31\x21\x64\x61\x45\xfa\xb7\xd5\x96\x82\xf4\xaa\x2e\x2c\x95\x0d\xea\x8a\xb9\x5d\x75\x0d\x5d\x6b\x7a\x89\x94\x87\x24\x93\x07\x46\x9f\x6e\x21\x04\xe0\xf0\xe5\xbb\xb7\xa7\x9f\x42\x0a\xd6\xff\x84\x57\x5e\xe1\xc2\x0d\x82\xbf\x56\x92\x95\xb0\xfe\x0e\xd4\x13\xed\xd2\x6d\xfc\x93\xf2\x7c\xab\x36\x95\x34\x58\x51\xc2\x15\x93\xa9\xe2\x5d\x2b\xba\xa3\x03\xd1\xc3\xff\x7a\xc3\x76\x2a\x27\x01\x0c\x7b\x96\xed\x2a\x57\x71\x84\x51\xeb\x4f\xa9\x4b\x04\xb1\x86\x77\x08\x0a\x59\xa9\xe5\xac\x56\x05\x8e\x61\x2b\x0b\x14\x09\x77\x5d\xfd\x4b\x5f\x0f\x9b\xc0\xc3\x5e\x13\x8b\x9e\xbc\xf9\xa2\x91\xd6\xb8\x81\xae\x38\x48\x32\x28\x72\x4d\xff\xf2\xf6\xcd\x0f\x9c\xaf\xd5\x15\x92\xed\x63\x0d\x3d\xa8\x3b\x68\x0f\x6d\xf3\x16\xe1\xa5\x39\x22\x12\x3d\x07\xda\x96\x4e\xeb\xba\xf1\x28\x01\xa9\xcb\xf3\x24\xd1\x4a\x41\x4a\x61\xc8\x43\x92\x92\x48\x7a\x83\xa9\x45\x88\xd9\xf4\x32\x9d\x5d\xf2\xee\x5c\x53\x64\x45\xdc\xe5\x97\xbd\xf6\xdd\xa0\xb6\x0f\xf8\xb5\x7d\x40\x6e\x29\x1d\xe9\x8a\x5e\x5e\xe1\xe8\x5d\xc0\x77\xcc\x67\x43\xf9\x53\x1c\x4b\x8a\x8e\xb6\x9d\x14\x88\x9f\xc3\x54\xfb\x7f\xfa\xf0\x46\xd0\xd1\x7c\x0a\x6e\x32\x74\x92\x9f\x56\x85\x4c\xbf\x0c\x14\xa2\x07\x22\xbf\x56\x14\x35\x40\xea\x10\xfc\xf2\xa7\xc0\x5f\x87\x79\x72\xe5\xc5\x38\x15\x87\x8b\xbc\x4d\x62\x9c\xd5\xe5\xd7\x67\x94\xdf\x65\xec\x46\xef\xc2\xdd\x25\x84\x49\x74\x34\x00\x2e\x75\x5a\xfe\x23\x20\x60\x96\x34\x01\x7c\xe5\x64\x04\x18\x6b\x9a\x7a\x81\xe6\x16\x03\x60\x49\x7b\x23\x84\x9d\x38\x0d\x93\x4d\x44\x05\x2f\x12\xd8\xbc\xda\x34\x1f\xde\xc5\xfc\xfa\xc4\xe2\xee\x7a\x23\xdf\xc9\x56\x31\x6f\xe4\x75\x5d\xaf\x25\xf7\x18\x61\x83\x77\xd1\x55\xc0\xbd\x25\x40\xb5\x50\x0f\xa4\x57\x0a\x75\x70\x60\x06\xb4\xfd\x56\x04\xc4\x68\x6a\x90\xe5\x9c\x56\x4a\x41\xb8\x5c\xc3\x5e\xb9\x88\x1b\x6e\x2e\xd4\xd5\xfd\x06\x01\x66\x81\x65\x87\xf8\x42\xe1\xb5\x20\xce\x36\x92\x1f\x11\x42\x72\x10\xa1\xdc\x9f\xcb\xc0\xf4\x06\x6c\xab\x9f\x02\x03\x79\x2b\x60\xe7\x62\x3e\x1b\xee\x22\x28\xf7\xc2\xa9\x20\xeb\xbe\x95\x80\xb6\x68\xfb\x71\xa8\xef\xa4\x49\x6f\x84\xf9\x10\xd4\xfc\x04\x13\x23\x7f\x91\x8f\x98\x0f\xd5\x0a\x26\x09\xe6\xfa\x46\x9a\xdc\xc2\x6f\x89\x46\x72\x25\x48\x67\x99\x8b\x5a\xb9\xa8\x95\x0b\x53\x0d\x74\x8b\xbc\x87\xad\x34\x0e\x53\x15\x35\xc5\x28\x90\xdc\x8d\x73\x60\x40\x95\xa6\x41\x77\xd0\x5d\x05\xf7\x0b\xda\xbd\xcf\x36\xac\xbb\x60\xd9\x5d\x4e\x59\x57\x5a\x7f\xe4\xdd\x80\x51\xc8\x1c\x66\xb7\x54\x9c\x16\xba\xf4\x96\xb2\x7b\x7e\x2d\x7e\xde\x67\x9b\x6e\x4a\x69\x34\x55\x6b\x33\xb3\x83\x1c\x04\xd6\xb1\x3f\x1b\x0c\x30\xdd\x6a\x75\xcb\x0b\x9a\xf3\xa9\x67\xbf\x59\xaa\xf0\x71\x2d\xb8\xa7\x82\x20\xd0\x9e\x09\x5a\x62\x5c\x4b\x37\xf3\x64\xfd\xbe\x46\xb6\xb2\xcd\xa0\x96\x61\x46\x33\x12\x84\xe1\x16\x80\xf9\xf1\x50\x45\xd8\x17\xe0\x00\x61\x5a\x8d\x00\x27\xd1\x09\x92\x10\x2a\x03\x69\x9a\xd6\xa8\x7a\xa5\x78\xa9\x41\x57\xb5\xe0\x65\x46\xe7\xa0\x3d\x59\x51\x59\xdd\x0b\x7e\x0b\x3e\xed\xd0\x5b\xb5\x63\xb7\x5a\x51\x6b\xd5\x3a\x8f\xba\xff\x56\x42\xf8\xb7\xee\x62\xc3\xbb\x31\xef\xde\x05\x79\x97\x51\xb1\xb1\x43\x74\xd7\x7f\x03\xcd\xff\x81\x95\xd1\x11\x73\x14\xb5\x5a\x86\x54\xa3\x4a\xb4\xe5\xb8\x4a\xb2\x45\x90\x4c\xe5\xbf\xd6\x1c\x39\x4d\x96\x53\xf1\xf0\xa5\xc0\xc4\x1e\xcd\x8a\x12\xae\x1c\xff\x8f\xab\x2c\x8a\x97\x31\x65\x6f\x83\x34\xb8\x12\xc7\xba\x75\xb0\x88\x13\x1e\xd3\x9c\x7c\x36\x47\xcc\x2b\x72\x0c\x6b\x40\x8b\xc2\xa3\xc4\x39\x18\x8e\x0f\x1c\x84\x1f\xb6\xdb\x2d\xb2\xfd\x8e\x7f\xc9\x0d\x77\x4b\x97\xfe\x45\x9e\xb8\x41\x69\xfa\x24\x8b\xe8\xdb\x18\xf6\xa1\x56\xa7\xda\x0d\x3d\x65\x4a\xd2\xe0\x36\xbe\x0a\x78\xc6\x86\x9b\x9c\xb2\xe7\x57\x34\xe5\x62\xcf\x37\xa9\xeb\x24\xe0\xcb\x8c\xad\x30\x23\x7b\x57\x34\xbc\xc9\x2e\xf7\x2e\xa3\xf2\x7e\x1f\xa7\x64\xef\xed\xf9\xeb\xd3\xee\x65\xb4\x67\xd2\x62\xb2\x77\xc1\x62\x41\xe0\x2f\xf7\xbc\xa9\x3f\x7b\x3a\x38\x9c\x17\x97\xd1\xc3\x3e\xde\xa2\xcb\xe1\xf0\x3b\x76\x2b\x43\x47\xec\x81\xab\x11\x51\x22\x23\x7b\xa7\xd1\x15\xbd\xdc\xab\xa5\x07\x24\x2d\x8a\xb8\x28\x32\x9c\x93\xc0\x75\xbd\x74\xda\x70\x99\xf3\x16\xce\xdd\x4f\xfc\xbe\x97\x15\x45\x8c\x66\xe3\x39\xc2\x1b\xd2\xcb\x5c\x77\x4f\x86\x24\xb9\xdc\x2b\x5b\x96\x90\x8d\xeb\xee\xfd\xc8\x45\x27\xfa\x97\xc3\xcb\xa8\x5f\x7e\x0b\x65\xa1\x93\x6b\x96\xad\xa8\x5d\x68\x49\xf6\xde\xad\x29\x0b\xec\xb4\x6b\xb2\xf7\x7c\xbd\x4e\x68\x57\x9c\x31\x37\x9c\x32\xf5\xa9\x44\xdc\x2d\x4d\xa3\x8c\x21\x1c\x91\xbd\xb7\x41\xd8\x7d\x77\xde\xfd\xa5\x3b\xbe\x8c\x2e\x5f\x7a\xb3\x67\x12\x1f\x97\x11\xba\x7c\x59\x82\x5c\x93\xbd\xf7\xd7\x41\xca\xb3\xd5\x5f\xcf\xcb\xd4\x95\x6c\x15\x54\x26\xfb\x63\xbe\xb9\xee\xde\xdb\x6c\x11\x27\xf4\x72\xef\xf2\xce\xea\xc8\x2d\xd9\x7b\x9e\x46\x2c\x8b\xad\x21\xb9\x27\xab\xa2\xb8\x2d\x8a\xbd\x3b\xba\x78\x77\x5e\xbc\x48\x82\xf0\xe6\x05\x65\xec\xbe\x80\xae\x75\xdf\xc6\x69\xac\x7f\x66\x8b\xb8\x78\x7d\x2a\x41\x5b\x23\x7d\x25\x40\x88\xbe\x28\xa8\x1c\xe1\x05\xd9\xbb\x5c\x9c\xb0\x77\xe7\x97\x8b\xb2\xaa\x8f\x64\xef\x2e\x4e\x75\x41\x8e\xf0\x1d\x59\x1a\xa3\x28\x6f\xef\xef\x32\xb2\x08\x0c\xf5\x77\x62\x08\xbe\x43\x7b\xa8\x73\xe7\xba\xde\x1d\x39\xdb\x88\x45\xe9\xdd\x89\x41\x44\xf8\xce\x75\xef\x8e\xc9\xf8\xb1\xeb\x7a\x4b\xd2\x1b\x8b\x51\x55\x97\xe0\xa7\xe4\xca\x75\xbd\xa4\x28\x96\x62\x4e\x80\xa0\xea\xae\x28\xee\x8e\xc6\xfb\xc3\xf1\x18\x21\xfc\x89\xb0\xa2\x08\x5c\x37\x3f\x26\x87\x95\x98\xe7\x15\x76\xff\x03\xbd\x3a\xfd\xb4\xf6\x1c\xef\x1f\xc5\xe5\x65\x8e\x9c\x3e\xed\x3b\xde\xd4\xff\x06\xde\x2e\x2f\xf3\xef\x1c\x19\x2f\xe1\x1d\xbe\x69\x8d\xb8\x29\x88\x7b\x90\xe7\x67\xc1\x8a\xe2\x94\x9c\x7b\x1c\xc9\x79\xcb\xea\x6c\xac\xbc\xc0\x4f\xe5\x51\xaf\x9f\xce\x46\x73\x7d\xff\xd1\xb1\x60\x98\x8c\x23\xac\xb2\xa2\xbe\x17\x4f\xd3\xd9\x78\xde\x8f\x7d\xc7\x41\x5b\x4b\x49\xe7\x79\x3d\x4c\x6f\x78\x1d\x27\xd1\x59\x16\x51\xed\xee\x65\xc2\x8f\x47\x93\xc1\x80\x23\x5a\x71\x51\x44\x87\x10\x71\x1c\x5e\xca\x43\x6d\x79\x2a\xba\xa8\xc6\xda\xf2\x28\xaa\x3a\x83\x42\xb5\x58\xcc\x76\xac\xfe\x1d\x5e\xbe\xa4\x0c\x90\x81\x46\xa1\xd5\x5b\xb0\xf2\xf1\x62\xe5\xd3\x2a\xcc\xa5\x34\x24\x45\xb8\x71\xdd\xcb\x51\x5c\x69\xc4\xae\x60\x2f\x1c\x21\xe3\x5c\xa3\xe2\x08\x60\x92\x95\x57\x4c\xfd\x7e\x56\x03\xc7\x2b\xf6\xfe\xad\x41\x78\x65\xff\xca\x0e\x97\xde\x01\x6a\xfe\x36\xb2\x84\x3a\xd8\x59\x33\x9a\xd3\x54\x46\x42\x72\x10\x8e\x1b\xa1\x79\xe3\xa5\x77\x40\x08\x37\xa6\x85\x60\xbf\xc6\x2d\xfb\x40\xc1\xa0\x29\x1f\x53\x79\xa9\x09\xa2\x53\x3c\x8e\x3a\x51\x06\xde\xf5\xc7\x2d\x60\xae\xb3\x9c\x23\xcc\x09\xd1\x17\xba\xbd\xd1\xf6\xee\x3a\x4e\x68\xbd\x92\xb2\x5d\xef\xf5\x31\xb2\xee\x0c\x2a\x08\x79\x7c\xab\x87\x52\x09\x03\x3e\x50\x64\x67\x11\xec\xa9\x94\x7c\x6e\x4b\xa3\xc9\xfc\x3a\x88\xb2\xbb\x0f\x10\xa5\xc2\x7e\xab\x02\x9c\x20\x4a\x76\x7f\x6d\x99\x9e\xbf\xed\x58\x80\x1d\x58\x7e\x40\x71\x18\x02\xbb\x43\xf3\xa9\x4f\x3c\x36\x75\xba\x8e\x58\x42\xfd\x96\x48\xaf\xa5\x8d\x81\x39\x9c\x76\x1d\x7d\x33\xc9\xea\x37\x93\xae\xdb\x3b\x07\x53\x08\xa4\xe9\x9b\x40\x7a\x9f\x38\x5d\xa7\xcf\xec\x0b\x4a\xbe\x7d\xd7\xea\xc4\xa4\x25\xbc\x74\xeb\xea\xd1\x1e\x4f\xec\x99\x76\x2a\x4e\xbe\x45\x41\x65\x3c\x8a\x9c\xf2\x73\x1e\x30\x19\x08\x0f\xc7\xdb\x1d\xce\x43\x2a\xe3\x64\x2d\x19\x5d\x01\xc8\x7d\x86\x82\x42\x5c\x64\x0a\xf1\xf2\x1e\xb8\x32\x53\xca\x91\x37\xb1\x0c\x8c\xda\x5b\x98\x25\x49\xb0\xce\xa9\x27\x0e\x8a\x12\x94\x68\xa9\x63\xd4\xfb\x1c\xb0\xe9\x83\x0f\xb2\xc5\xf6\x27\x8e\xb0\x72\xae\x59\x8d\xa0\x5b\x7a\xab\xd9\x56\x02\xb0\x6a\xd1\x74\xdd\xac\x79\x87\xdf\x92\x4e\xdd\xfa\xb0\x11\x0f\x50\xca\xec\x91\x15\x65\xfe\x8d\xc6\xa0\x89\x01\x0d\xf7\x7b\x46\x56\x4c\x51\xaf\xa1\xd9\x9b\xa2\xa2\xe8\x8d\x09\x21\xcc\x75\x79\xdb\x47\xb8\xbf\x86\x18\xe9\xd6\x1c\x31\x55\xbe\xb2\x83\x66\xca\x2d\x8d\xbb\xee\x60\x4c\x88\x07\xca\x88\xa0\x47\xe2\xed\xcd\xfe\x71\x99\x5f\x6e\x46\xa3\x60\x34\xdf\x43\x30\xf5\x8c\xab\x01\xd4\x29\x29\x5e\x5a\x14\x23\x1c\x90\xb8\x28\x46\x93\x89\x0e\x38\x4f\x8d\xac\xd1\xb9\xe4\x0e\xce\x80\x2c\xe7\x47\xa3\xa2\xc8\x8f\x4b\xb3\x9e\xa0\xef\xf1\x41\x86\x3a\x41\x9f\xe4\x83\x0c\x07\x7d\xc2\x06\xc1\xb7\x0c\x67\x24\xef\x8f\xb7\xdb\xd5\xb4\x7d\x94\xe2\x2c\x85\xa1\x25\x23\x6c\x25\x9d\xa6\x11\xa9\x3a\x15\xda\xfa\x82\x8f\xab\xc2\x00\x92\x53\x8e\xb6\x51\xf0\xdf\x6e\xe5\x76\xff\x47\x45\x53\xef\x3a\xce\x87\x71\x64\xbb\xee\xb3\x7e\xf3\x78\x45\xc9\x48\x5f\x26\x4b\xbb\xe7\xd7\x9e\x32\xca\x50\x46\x43\x3a\x08\xbb\xc1\xfd\x0f\x6d\xc6\xb3\xb4\xdc\x30\x18\x8a\x97\x1e\x58\xa8\x95\x68\x62\x6a\x0c\x07\xe3\xed\x1f\xd6\x24\x34\x95\xd4\x90\x14\x47\x80\x18\xd1\xbc\x23\xd2\x17\xdc\xc7\xcb\x80\xd3\x29\x1d\x2e\x3d\xe4\xdb\x11\xb0\x74\xab\x55\xe6\x81\xc9\x8b\xb6\xf8\x8f\x2f\x5f\x61\x2f\x8d\xc0\xd5\x14\xec\xd3\x89\xd7\x53\x58\x2b\x0a\x76\x64\xf0\x24\xa6\x0f\x78\xba\xd3\x95\xab\x4c\xda\x99\x6c\x44\xac\x86\xd9\x18\x35\x6e\x68\x01\xdb\x4c\x85\xec\x7a\x41\x0e\x46\xf8\x27\xf2\xa0\x75\xbe\x5a\xac\x14\xca\xf3\xc9\xf0\x7d\x90\xe7\xce\x76\x8b\x7f\x26\x0f\xd2\xd9\xa5\xdf\x1b\x6f\xf1\xef\xe4\x41\xde\xf9\xf9\xce\x77\xab\x6c\x93\x53\x67\x8b\xff\x5e\xa6\xf5\x05\x05\x71\xac\x91\xfb\xb5\xb1\x50\xc1\x7c\xcd\x4c\xfa\xac\x3e\xe9\x53\x34\x11\x6b\x2a\x73\x5d\x2f\xb3\x56\x8e\x94\xf4\x66\x03\x50\x7c\xc9\x6c\xf7\x1d\x71\x3f\xb0\x16\x47\xda\x7f\x1b\xf0\xeb\xe1\x2a\x16\x87\x78\x3e\x90\x22\xe1\xb8\x2f\x4a\xe2\x94\x64\xfd\x31\x16\x6f\x6c\x10\x7f\xcb\x90\x5d\x4c\xc6\xbf\xf8\x9e\xcc\x1c\xfb\x7a\xf9\x6f\x9a\x89\x9b\x7c\xaf\xea\x3b\x22\x74\x82\xbe\x97\x17\xe1\xdf\x78\xdf\xa3\x3e\xdc\x77\x29\x28\xdf\x8b\x23\xbe\x29\xfc\x8d\x7d\x2a\x9d\xe9\x06\x0f\xc6\x56\x96\x1f\xeb\xf3\x7a\x36\x57\xdb\x1a\x6d\x28\xdc\x70\x88\x5b\x6f\xb1\x36\x96\x8a\xe8\x2f\x1e\x7a\x28\xdf\xfe\x93\xb5\x05\x77\xaa\xd1\x64\xe4\xe6\x32\x65\x35\xb9\x3d\x45\xbe\xf7\x8b\x25\xd5\xa7\x4a\x19\xe8\x17\xb0\x0e\x7e\x23\x6d\xbe\x18\xa0\xe8\xaf\x64\x6f\x26\xe8\x5b\xb4\xbc\xdc\x8c\x1e\x3f\x7b\x2a\x9e\x87\xa3\x81\xf8\xb7\x7c\x74\xb9\x19\x3d\x19\xc1\xcb\x93\xe5\xf2\x72\x73\x30\x7a\x24\x5e\x0e\x46\x87\xf0\x12\xc8\x17\xf8\xf2\x08\xb2\x3d\x8a\x16\x8f\x2f\x37\x8f\x28\xbc\x1c\x2e\xc3\xf0\x72\x13\x84\xf0\x12\x3d\x0d\x96\xf3\xbd\x72\x24\x28\x2d\xb1\xb9\x77\x79\x67\x0e\x33\x45\x41\x8f\x9d\xff\xf6\x9f\x1d\x30\xca\xa8\xdc\x0d\xf7\x48\x4d\x29\xbd\x28\xfe\x6a\x94\xde\x4b\x64\x71\x5a\xe1\xa7\xf9\xb4\xd7\xf3\xf8\x30\xcf\x36\x2c\xb4\x67\xe6\xe5\x9d\x83\x8e\x07\x63\xd7\x85\x86\xa0\xa2\xe0\x1a\x96\x0f\x29\x25\x40\x46\x2b\x9c\xbf\x8c\x46\x04\x4a\x07\xb5\x2d\x47\x30\x26\xa0\x78\xad\x8d\x2c\x3a\x86\x17\x94\x11\x28\x25\xa6\x0f\x24\x42\x0f\x9e\x08\x84\x3f\x7a\x76\x30\x80\x7f\x87\x80\xf7\x31\xe0\x7d\x11\xc1\x13\x06\x24\x1c\xc3\x73\x1f\x9e\x8f\xe0\xf9\x18\x9e\x62\xa0\x9e\x8c\xe5\xd8\x8c\x03\xf1\x7c\xb4\x80\x97\xc7\x54\x3c\x9f\x8e\xc4\x33\x7a\x02\x49\x51\x08\x4f\x0a\x2f\x14\x46\x95\x42\x79\xfa\x0c\x9e\x81\xfc\x20\xaa\x7d\x3a\x16\x15\x3e\x3d\x00\xc0\x4f\x1f\x09\xc0\x4f\x03\x80\xf2\x74\x21\x40\x3e\xa5\x50\xcb\xd3\xe5\xc1\xe5\x66\xf4\x6c\x0c\x5f\x9e\x8d\x0f\xe1\x09\x5f\x9e\xed\xc3\x97\xfd\xc7\xf2\xe5\x29\x3c\x0f\xe5\x8b\xa8\xe0\x50\x76\xff\x70\x24\xba\x74\x78\x20\x5a\x76\xf8\x08\xfa\x7d\xf8\xe8\x19\x3c\x21\xd7\x63\x99\xf4\x58\x74\xf6\xf0\x09\xe4\x7d\x22\x00\x1f\x3e\x13\xed\x3b\x5c\x40\xb9\x85\xe8\xea\x61\x28\xb3\x02\x76\x0e\x43\x28\x1d\x89\x6a\x0f\x29\x14\xa3\xa2\x58\x30\x1a\xc3\x53\xa4\x04\x50\x69\xf0\x08\x52\x1e\x41\xca\xa3\xa7\xf0\x7c\x06\x4f\xe8\x46\x00\xcd\x08\x1e\x43\x26\x40\x66\xf0\x54\xfe\x16\x2d\x0a\xa0\x15\xc1\x33\x28\x0c\x6d\x09\x64\x2b\x02\x18\x9d\x00\x46\x27\x08\x01\x1e\xb4\x28\x80\xb6\x04\xd0\x96\x05\xb4\x65\x01\xad\x58\x1c\x50\x78\x8a\xb1\x5e\x48\x34\x2c\x1e\x3d\x82\xa7\x28\xb6\x78\xfc\x04\x9e\x02\xdc\x02\xb0\xb0\x00\x2c\x2c\xa0\xe6\x05\xf4\x7f\x11\x8e\xe0\x09\xf9\xa1\xe3\xe1\x01\x8c\x74\xf8\x68\x04\xcf\x27\xf2\xe5\x19\x3c\x03\xf9\x22\x32\x87\x80\xdc\x10\xaa\x08\x01\x78\x08\xc0\x43\xe8\x50\x08\xf3\x2f\x84\x99\x17\x86\x90\x27\x84\x74\xa8\x28\x8c\xa0\x6c\x04\xe9\xd0\xb7\x10\xfa\x16\x41\x7f\x22\xd9\x93\x08\x7a\x12\x41\x65\x11\xf4\x21\x82\x6a\x22\xa8\x26\x0a\x03\x78\x8a\x6a\xa2\x68\x1f\x0a\x44\x50\x00\xa0\x46\x40\x90\xe8\xc1\x18\x9e\x8f\x06\xf0\x4f\x94\xa0\x8f\x9e\xc2\xcb\x23\x51\x13\x5d\xc0\xf7\x85\xfc\xbe\x38\x84\xe7\x02\x9e\xa2\xb1\x34\x7c\x06\x1f\xa0\xcd\xcb\xf1\x33\x78\x8a\x4c\xcb\x83\xc7\xf0\x7c\x0a\x4f\x48\x79\x0a\x6d\x5e\x3e\x15\x60\x97\xcf\x60\x92\x2e\x9f\x3d\x82\xe7\x13\x78\x42\x5e\x49\x1a\x97\x87\xf2\x05\xe6\xf5\x12\xaa\x5a\x0a\x1c\x8d\x47\xfb\xd1\x40\xfc\x3b\x18\xc1\x73\x5f\xbe\x3c\x85\xe7\x21\x3c\x03\x78\x46\xf0\xa4\xe2\xf9\xf8\x19\x3c\xe1\xeb\x63\x0a\x05\x9e\x40\x69\x68\xd0\x78\xf4\xf4\x91\x78\x8a\x01\x1f\x8f\x9e\x3d\x86\x27\xd4\xf4\x0c\x60\x1c\x8a\xe7\xc1\xe3\xe5\xe5\x66\xfc\x74\x0c\xd5\x3d\x1d\x8b\x02\x4f\x65\xdd\x4f\x0f\xe0\xe5\xf1\x3e\x3c\x0f\xc4\xf3\x29\xfc\x7e\x0a\xbf\x17\x4f\x21\x93\x20\x38\xe3\xa7\xd0\x81\xa7\xe1\x21\x24\x45\xf0\x3d\x12\x1f\x9e\x8d\xc4\x8a\x18\x3f\x1b\xc1\x4b\x20\x1a\x7a\xb8\x2f\xd0\x30\x3e\xdc\xdf\x87\xe7\x53\x78\x8a\x7e\x1c\x1e\x40\xca\x01\x00\x39\x3c\x58\x5c\x6e\xc6\xc1\xf8\x29\x3c\xc5\xe7\x40\x4c\xb6\x71\xf0\x58\x8c\xca\x38\x10\x94\x6a\x1c\x40\x67\x03\x31\x31\xc6\xc1\x93\xc7\xf0\xe1\x49\x28\x9e\x4f\x0f\xe0\xe5\xa9\x7c\x11\x3d\x5c\x00\xed\x18\x2f\x46\xa2\x71\x0b\xe8\xda\xe2\xe0\x09\x24\x01\x5e\x61\x4d\x8d\x17\x62\x4d\x8f\x17\x4f\xa0\xd5\x0b\xe8\xe8\xe2\xd9\x08\x9e\x63\xf1\x0c\x00\x33\x8b\xe0\x31\x3c\x9f\xc1\x53\x74\x2a\xdc\x0f\xc5\x87\xf0\xe0\x00\x9e\x4f\xe0\x29\xda\x1e\x46\x50\x6d\x18\xed\xc3\xf3\x11\xbc\xd0\x11\x3c\xf7\xe5\xcb\x33\x78\x0a\x04\x45\x21\x64\x8e\xa8\x28\x1f\x2d\x61\x3a\x44\x62\x8b\xdc\x1f\x8d\x42\x78\x46\xe2\x09\x20\xf7\x47\xcb\xd1\xe5\x66\x3f\xa4\x4b\xf1\x12\x2e\xc7\x97\x9b\xfd\x88\xc2\x97\x48\xee\xb7\xfb\x01\x6c\xb1\xfb\xf0\x72\x78\x08\xcf\xe0\x72\x13\x3c\x79\x22\x8a\x04\x4f\xc4\x60\x06\x4f\x04\x8a\x82\x27\x4f\x23\xf1\x14\x10\x83\x27\x02\x54\xf0\x4c\x90\xbb\xe0\xd9\xe8\x09\x3c\x17\xe2\xb9\xff\x18\x9e\x90\x22\x08\x66\xf0\x0c\xaa\x0b\x9e\x41\x81\xc3\x7d\x81\xcc\xe0\x50\x10\xea\xe0\x10\xd6\x59\x70\xf8\x18\xbe\xc0\x82\x08\x0e\xc5\x34\x0c\x0e\x17\x07\xf0\x94\x99\xc5\xa2\x0b\x80\x20\x07\x01\x10\xfa\x20\xd8\xa7\xe2\x29\x96\x6e\x10\x88\x09\x11\x04\x62\xb9\x05\x81\xc0\x69\x10\x3c\x3a\x80\x27\x14\x10\x7b\x4a\x10\x2c\xf6\xa1\xd8\xe2\x11\x3c\x9f\xc2\xf3\x19\x3c\x01\x90\xa0\x44\x41\x20\x76\xc2\x60\x41\x1f\xc3\xf3\x19\x3c\xa3\xcb\x4d\xa4\xd8\x8b\xa5\xc0\xd7\x72\x31\xa6\x97\x9b\xa5\x64\x3f\x96\x74\x24\x92\xe8\xbe\x7c\x11\x7d\x5e\x2e\x0f\x29\x3c\x2b\xac\x48\x4c\xab\xf7\x47\x4a\xfb\xf9\x39\xf7\x46\xe8\x98\x3c\x7d\xf2\xcc\x75\x53\xaa\xb9\x83\x92\x2f\xc8\xa8\xcd\x0a\x4f\x3c\x76\x34\x9a\xf2\xe3\x91\xcf\x0d\xaf\x87\x5c\x57\xc0\x06\x88\xcf\xb9\xc7\x11\x9a\x20\xde\x27\xac\xe5\x30\x1a\xd0\x26\x5f\xcd\x8f\xd9\x74\x30\xf6\xc7\x13\xe9\x02\x8b\x13\x62\x94\xc1\xb9\xba\x3d\xf7\x78\x9f\xa1\xbd\x7d\x9c\x91\xf4\x68\x34\x05\x4e\x39\xa4\x71\xe2\xc5\xc8\x87\x97\x65\x92\x65\xcc\x93\x4c\x73\x66\x9d\xa5\xa8\x97\xa1\x29\xf7\x59\x07\x7e\x30\x92\xf9\x9c\x64\x7d\xc5\x34\xe7\x14\x8e\x77\x96\x3e\x04\xad\xc8\x37\x3a\x26\x83\x8e\xd0\x48\x46\x93\xd8\x3e\xbe\x19\x67\x4e\x74\x16\x83\x9f\xd0\x0c\xf4\xca\x8f\xb8\xeb\x66\x43\x9e\x1d\xf3\x52\x95\x5e\xbc\x4b\x77\x52\x32\x4f\x8f\x88\x14\xd7\x75\x16\x74\x99\x31\xea\x10\xc2\xa6\x29\x89\xfd\x9c\x92\x18\x61\x99\xe7\x73\xf9\x7b\x76\xfe\xad\xe5\x33\xaa\x47\xd2\x69\xea\xe7\x54\xc6\xc5\xa3\x4d\x9d\x24\x67\xa1\xff\x78\xce\xef\xf2\x45\xe5\x2f\xcf\x73\x7e\x77\x76\xf6\xed\xb7\xdf\x9e\xc1\x1f\x3e\xc3\x67\x63\xf3\x27\xd3\xce\xde\xec\xfc\xfb\x9a\xef\xaa\xa2\xc5\xce\x3f\x2c\xaa\x87\xfa\x25\xbc\x6f\xbf\x1d\x8f\xe1\xe7\xf8\xcd\xe7\xc0\x7f\xa6\x5a\xf9\xdd\xc1\x9c\x38\x29\xfc\x9d\x9d\xb1\x6f\xbf\x65\x98\x9d\x9d\xad\xca\x3f\xf6\x27\xff\x56\x6d\x7f\xa9\xf9\xfb\x36\x4d\x45\xa6\x3f\x0b\xf5\x9f\xfa\xd3\x95\x9f\xe9\x9e\xac\x56\x67\xf2\x47\x39\x78\xda\x7f\x10\x30\xe7\x3b\x8f\x3e\xa3\xa7\xf2\xe5\x59\x10\xce\xf7\x70\x4a\xf6\x66\x62\x42\xcc\xf7\x70\x4c\xf6\x66\x6f\x3e\xb0\xf9\x1e\xce\xc4\xaf\xc5\x38\x9d\xef\xe1\x80\xec\xcd\xc4\x8f\x8e\x6d\x37\x2b\x97\x10\x1c\xe3\x13\x7a\x4b\x13\xad\xb5\x05\x53\x5a\x87\x56\xc9\x08\x6b\x78\xef\xda\xe0\x44\x4e\xd2\x90\x38\x09\x67\x0e\x21\xc9\xd4\x79\xe3\xf8\xce\x07\xf0\x1a\x3f\x22\x64\x63\x4e\xcf\x3a\x83\xeb\xf6\x98\xa4\x59\x1b\x54\x1e\x48\xf4\x8a\x5d\xe2\x6b\x53\x06\x47\xe2\x94\xba\x26\xa3\xc9\xfa\x48\x2c\xde\x35\x8a\xe4\x71\xd8\x5b\x92\x8d\x4d\x0d\xd7\x08\x1d\x91\xfd\x47\x4f\xa7\x86\xa2\x2d\x91\x3f\x7e\xb4\xff\xe8\x88\x2c\x5d\x77\x79\x44\xc6\x8f\xf7\x1f\x4d\x9d\x0f\x8e\x3f\x7e\x7c\xf0\xc4\x24\x3e\x7d\xf6\x78\xca\x4d\x89\x81\xf8\x86\xfc\xf1\xd3\xa7\xa6\xd8\xfe\xfe\xfe\x68\xea\x30\xc7\x7f\x36\x3e\xdc\xd7\x89\xcf\xf6\x47\x07\x53\xe7\xce\xf1\x9f\xed\x8f\x1e\x11\xb2\x9c\x3a\x0b\xc7\x77\xde\x38\xa5\xcc\x6d\x45\x46\xf8\x96\x84\x93\x15\xb4\x7a\x25\x31\x74\x4f\xa2\xd9\x6a\xde\x71\x56\x0e\x21\xf7\x53\xf1\x9b\xdc\xfa\xb7\xe4\x7e\xab\x4b\x5d\x91\x11\x5e\x90\x70\x72\x05\xa5\xae\x64\xa9\x8f\x24\x9a\x5d\xcd\x3b\xce\xd8\x21\xe4\xa3\xeb\x3a\x02\x83\x8b\xa9\x48\x23\x4e\xea\xf8\xea\x62\xed\x23\x72\x5d\x6f\x41\x3e\x62\xf8\xfe\xd1\x75\x3d\x99\xe3\x83\x23\xce\x9f\x0a\xfe\x1d\x19\xe3\x53\x12\xcd\x46\xf3\xc9\xdd\xd1\xf5\x60\x3c\xe9\xf7\xef\x64\x25\x9f\x48\x34\xbb\x9b\x77\x9c\xbe\x43\xc8\x27\xd7\x85\xca\x4e\xd5\xff\x68\x76\xd7\x1f\xcf\xa7\x22\x03\x71\xc6\x8e\xef\x60\xa7\x47\x3e\x15\xc5\x69\x4f\x7d\x2a\x0a\x67\xec\xf4\x20\x7f\x2a\xfe\x17\x85\x07\x99\x4f\x11\x3e\x25\x9f\x4c\xed\xe7\x64\x34\x39\x87\x9e\x9d\xcb\x4a\xdf\x91\x68\x76\x0e\x24\xd8\xc1\x0e\x21\xef\x90\x78\x25\xce\x99\x53\xfa\x44\xff\x16\xd2\x21\xf7\x8d\x76\x05\x22\xe0\xdd\x90\xf3\xfe\x78\x72\x73\x74\xed\xba\x90\x27\x9a\xdd\xcc\x27\xfd\xfe\x0d\x9a\xe8\xda\x9e\x93\x73\xd7\x75\x7a\xf0\xed\x7c\x20\x1a\x29\x73\x8f\x55\xee\x29\x74\xe5\xcc\xc1\x17\xe4\x7c\x72\x71\x74\x33\xe9\xf7\x2f\x50\x34\xbb\x98\x93\xe7\x9d\x73\x72\x33\x18\x6f\x4d\xc3\x4f\xc8\x08\xbf\x25\xe1\xe4\x04\x1a\x7f\x22\x9b\xf3\x81\x44\xb3\x93\x79\xc7\x79\xe3\x10\xf2\x56\xc1\xfd\x30\x15\x69\x44\x4c\x7f\x35\x2c\x1f\xc4\xb0\xbc\x25\x1f\xca\x31\x78\x4f\x46\x93\xf7\x00\xe8\x3d\x02\x67\x05\x90\x2f\x9a\xbd\x9f\x23\x09\xf8\x37\xbb\x9f\xbf\x91\xf7\xfd\xf1\xe4\x37\xd1\x72\x93\xf3\xb7\x39\x9a\xf4\xfb\xbf\x95\x5d\x7d\x49\xa0\x15\xde\xfb\x69\x34\x7b\x3f\x18\xcf\xfd\x10\xe1\x33\xf2\x92\x10\x4f\xa6\xff\x76\x74\x3d\x15\xc5\xfc\x10\xa1\xe9\x4b\xbd\x3a\xfd\x10\xbf\x26\xef\x27\xaf\x8f\x7e\x9b\xf4\xfb\xaf\x51\x34\x7b\x3d\x27\x67\x9d\xf7\xe4\xb7\xc1\xd8\x34\xf6\x0d\x7e\x25\xd6\xdf\x1f\x64\x34\xf9\xe3\xe8\x7a\x82\x60\xb7\x54\xcd\xf8\x43\x37\xf8\x07\xf2\x07\xb4\xb5\xdf\xff\x43\xe4\x82\x6d\xd4\x64\x99\xf4\xfb\x7f\xa0\xc9\x2b\xe5\x4a\x9b\xde\x75\x73\x6f\x84\x7f\xc0\x7f\x20\x69\x21\xf0\x20\x45\x85\x7f\xe0\x9f\xc8\x2b\xb5\xe4\xab\xb0\x9c\x37\x8e\x98\x66\x7f\xcc\x25\x20\xdd\xb0\x9f\xc9\x8b\xc9\xcf\x47\x7f\x40\x8b\x02\x5d\xdd\xcf\xa2\x45\x2f\x8e\x7e\x76\xdd\x57\xda\x0f\xd5\x4f\x78\x84\x65\xad\x63\xfc\x02\xff\xac\x34\x2c\x7f\x27\x3f\xab\x5a\x7e\x16\x50\x5c\xd7\x06\x31\xe9\xf7\x7f\x16\x2d\x6e\x40\xd8\xc7\xbf\x0b\x08\xf8\x05\xf9\x19\xda\xde\xef\xff\xdc\x79\x21\x4a\xef\xa8\x4d\xf4\x51\x49\x3a\x0d\xdd\xf3\xc6\x84\xbc\x92\x37\xbe\xb7\x54\xbc\xbf\x21\x1b\x7d\x15\xfe\x8f\xcb\xbc\x2f\xa5\xf8\x90\x03\x28\xef\x9b\xf2\x76\x18\xbf\x1a\x6e\x52\xa9\x1f\xa9\xf1\x38\xc2\xd6\x77\x84\x10\x1e\x13\xf2\x8d\xf7\x0a\xb5\x41\xbf\xcc\xfb\xdf\x48\xe8\x90\x83\x67\x83\x1a\xf0\xca\x08\x5d\x0f\xec\x8f\x02\x36\xc2\x2a\x36\x55\x32\x7d\x35\x64\xf4\x96\xb2\x9c\x7a\xc8\x7f\x55\x75\xc8\x18\xd2\xea\x8d\x1c\x44\x63\xaa\x7a\xc7\x64\xae\xeb\x99\x4f\x24\x11\x3c\xa8\x8c\x39\x84\xb4\xd4\x6f\x49\xc5\xa4\xbb\xa6\x6d\x1e\xd1\x9b\xfe\x75\x51\xbb\x23\x6e\xdc\x1b\x97\xd7\xbf\x74\x18\x70\x1e\x28\x57\x3a\xa8\xf2\xe6\x39\x59\xea\xf4\xc1\xe5\xa7\x99\x90\x29\xa1\xc3\x8f\x4a\xba\x9d\xc3\xf5\xa1\x79\x03\x67\xfe\xe9\x8c\xcf\x89\x27\x9e\x45\xb1\xa4\x48\x7b\xd9\x63\x95\x3b\xf9\xa8\x2a\xeb\xb3\x60\x40\x64\x64\xfd\xa2\x80\x58\x16\xf8\xb4\xd2\xdd\x16\x95\x41\xb4\xd3\x43\x78\xad\xd3\x11\xb5\x3b\x6d\xbd\x7d\xb1\xd3\x38\x26\xa9\xeb\x8a\x1e\x4a\xeb\x52\xc5\x32\xff\xe0\xc5\xa2\x4c\x06\xc2\x49\x40\x00\x89\x8d\x9a\x42\x66\x10\xa1\xd3\xb2\xfe\x18\x21\xb4\xb5\xae\xd2\x56\x95\xf9\xa1\x50\x24\x43\xb5\xab\x59\x5c\x1e\x31\xbe\xea\x46\x6f\x1f\x61\xc9\xe1\x33\x9b\xc3\x67\xb3\x78\x6e\x5f\xe7\xa5\xd6\xd1\xe8\x96\x56\x7d\xa3\x37\xf5\x0b\xe0\x1e\x4d\x7a\x6c\xe2\x78\x2d\x3d\xbd\xbd\x54\x81\xff\xea\x57\x4f\x75\x7f\x70\x44\xba\xb9\x84\x7e\x32\x10\xdc\xde\xaf\x29\x86\x2b\xd9\x53\xea\x71\x90\xe5\x86\x59\x44\x57\x70\xef\xf1\xfa\x2a\xcd\x98\x35\xf6\xf7\xd4\x0e\x13\xdb\x3e\x61\x86\xe1\x86\xe5\x19\x7b\x1e\xf2\xf8\x36\xe6\xf7\x9d\x8a\x76\x03\xdc\x82\x6f\xd8\xbb\x75\x2d\xd7\x0f\xf6\x64\xfe\x5c\x06\xf0\x39\x58\x33\xc3\xed\xf7\x53\x34\x18\x13\xf2\x83\xc7\x30\x58\xdd\xba\x2e\x53\x96\x7f\xe2\xcd\xb2\xa2\xa9\x4e\x79\x35\xbc\x26\xe0\x50\x99\x71\x41\xe5\x3d\x98\x7d\x53\x56\xbb\xbf\xba\xa6\xca\x19\x19\x96\x3e\x38\xac\xac\xcb\x65\x2d\xef\xda\xce\x6b\xa9\xf4\x9b\x5a\xec\x21\x9c\xd6\x13\x3c\xe4\x8b\x05\x25\x9a\xfc\x77\x88\x83\xd6\x1b\x97\x30\xee\x14\x8c\x9c\x67\xeb\xf7\x2c\x5b\x07\x57\xa0\xc6\x31\x6d\xa4\x00\x14\xe9\xcd\xeb\x05\xb8\xf7\xaa\x38\x21\x39\xb5\x8f\xf1\xf2\xc4\xd7\xf4\x25\x38\x6d\x26\xf9\x23\x42\x2a\x8d\x2b\x41\x7e\x02\x90\xd0\x47\x7c\x57\xbd\x15\x38\xaf\x0a\x0d\xb8\x09\x33\x9c\xb3\x50\xeb\x6e\x98\xcc\xef\x2a\x73\xee\xee\x3a\x0e\xaf\xab\x04\x5b\xac\x87\xb1\x4b\x87\x8b\x0d\xe7\x59\x3a\xe5\x64\xec\xef\xdb\xaf\x07\xfe\x23\xf3\x0a\x4b\x67\x1f\x21\x7c\x05\xb6\xad\x9c\x25\x7f\xa3\xf7\xe0\xae\x5f\xae\xaa\x03\x84\x39\xd0\xf8\x1b\x8a\x9f\x53\x7c\x51\x39\xea\x8a\xbd\xdc\x75\xf3\xa3\xc3\xf2\x4c\x20\x4f\xbf\x27\x9e\x13\xc5\xb7\xe6\xea\xcb\x89\x58\x70\x75\x05\x21\x64\x62\xd0\xc1\x84\x84\x97\x2c\x5b\xc3\x7b\x65\x43\x3a\xa1\xca\xf6\x4c\xf6\xe5\xc6\x74\xf5\xc4\x73\xf2\x75\x90\x3a\xd8\xf9\xf7\xff\xfc\xbf\x38\xa8\x73\xe1\x51\x6c\xd2\x66\x1c\xef\xd2\x2a\x72\x3e\x39\x68\x8e\x10\x1e\x89\x11\x2c\x95\xa7\xc4\xac\xcc\x29\xff\x81\xc6\x57\xd7\xa2\xab\x37\x94\x70\x95\xf6\x73\x1c\xf1\xeb\x23\x32\x76\x5d\x5e\xc9\x75\xbc\xef\xba\x3d\xd9\xe3\x67\x48\xea\x96\x31\x72\x43\xa7\xb5\x96\xf9\xe5\xfb\x7f\xfb\xaf\x0e\x06\x7a\x06\xce\xff\x92\xe0\xde\xef\xc6\x69\x12\xa7\x74\xb0\x48\xb2\xf0\x66\xd2\xbd\x13\x55\xf9\xdd\xf1\xfa\xd3\xa4\x2b\x43\x19\x0e\x20\x0e\xa1\xdf\x1d\x8c\xd7\x9f\x6c\xab\xf5\xaa\xa2\x52\xb8\x1a\xc8\xd8\xc6\x8e\x53\x71\x42\xf3\xd6\xc6\x5e\x8f\x3c\x37\x2e\x21\x9e\x53\xe5\x7e\x46\xa0\x6d\x27\xaa\x9e\xff\x9f\xff\xc7\x73\x47\x6c\xeb\xe4\x9d\xc7\xf1\x08\x8f\xd1\xf0\x8a\xf2\x17\xd9\x26\x8d\xe2\xf4\xea\x24\x89\x69\xca\x3f\xc8\x08\x44\x29\x64\x19\xe3\xfd\x9d\x59\x3a\x96\x12\x1a\xee\x79\x3d\x56\x14\x82\xe6\x2f\x39\x21\x6c\x08\xbd\x14\xcc\xcd\x73\x4a\x52\xf9\x36\x50\xa9\x47\x07\x12\xb7\x1f\x28\x7e\x4f\xc9\x41\x8f\x38\x97\xe9\x65\xba\x70\x8c\x95\x4a\xba\xa7\x49\xd4\xb4\xdd\x7b\xc1\x08\xab\xbb\x52\x23\x45\xe2\x47\x24\x9d\x68\x4d\x1d\xfb\xe6\x2e\x75\x30\x97\x77\xca\x31\x78\xe0\xad\xde\x29\x67\x44\xbb\xef\xe1\xd8\xb9\x14\x2c\xa1\x39\xad\xc6\x83\x31\x9a\xc6\x83\xb1\x1f\x23\x1c\x90\xcc\x02\xc9\x1c\x01\xb0\x47\x82\xa9\xa7\xa8\x6e\x66\xb6\xdc\x00\x21\xcc\xfb\x24\xe8\x8f\x91\x6f\xbe\x22\xcc\x49\xdc\x1f\x1b\x01\x13\x6b\x0f\x1e\x5c\x5a\xe9\x5c\xa6\xd3\x42\x60\x61\x8b\x7f\xa3\x6d\x11\x98\xa6\x75\xed\x8c\x12\x44\x45\xd9\xa3\x47\xaa\xba\x1e\x0d\x2d\xa1\xde\x78\xbb\x6d\x3a\x7e\x05\x95\x23\x41\x7b\xb2\xbb\x94\xb2\x97\x7a\x32\x19\x48\x55\x0d\x28\x0b\xa8\xea\x60\xcf\xeb\x71\xb1\xad\x4a\xfd\x24\xad\x66\x88\x7a\xe0\x67\x67\xd4\x23\x62\xc3\x5d\x89\x8f\xa7\x69\xf4\x3e\x8b\x53\x9e\x7b\x0e\xb4\xf7\x22\x3b\x4d\x23\x07\xf6\x97\x97\x94\x38\x59\x0a\xb1\xd8\xe2\xd4\xfb\x50\x92\x1c\x54\x14\xde\x87\x7a\x1c\x2d\x95\x13\x3b\xb2\x01\x13\x07\xb5\x79\x02\xfd\x20\x76\x35\x91\x11\xe1\x33\x25\x94\x14\xfd\x7d\x4d\xc9\xc3\x16\xbf\x11\xcf\x92\x4c\xbd\xa2\x35\x37\x6b\x76\x48\x87\x37\x8d\xdb\x5c\x8a\x10\x25\x6f\xe8\x8c\xce\x4b\x6e\xcf\x75\x9b\x65\xc1\xe8\xae\x15\x00\x7c\x41\x9a\x18\x0a\x50\x90\x32\xef\xec\x62\x87\xc4\x57\x9f\x6f\x11\xf6\x28\xf9\x4f\x60\x3a\x83\x94\x49\x1f\xfc\x93\xa7\xb9\x1d\x1d\xd8\xfb\xc7\xec\xf2\xee\x72\x30\xef\x5f\xee\xe9\x1f\xfd\x4f\xab\xe4\x1b\x73\xb1\xae\xc9\xca\x2b\xea\x55\x3d\xdb\xac\x12\x19\x3f\xe8\x6b\xa1\xfe\x96\x67\xe9\x97\xc1\x8a\x5c\x8e\x39\x9c\x35\xdd\x09\xc9\xce\xd2\xad\x4f\x8b\x42\xfe\x76\xc4\xf0\x39\x16\x6f\xf1\x87\x62\x75\x38\x79\x45\x4b\xdf\x19\xaf\xe9\x8c\x2b\x3c\xc6\x4b\xaf\x67\x44\xe2\x90\xdb\x72\x42\xe4\xe8\x78\x67\xcc\x30\xc0\x3f\x34\xaf\xec\xed\x31\x8a\xc9\x0f\x25\x6c\xa3\xd9\xd5\x85\x68\x02\x71\xbd\x64\x86\xc0\x2f\x7f\x6b\xea\xcc\xf9\xe8\xf4\xb3\x39\x81\xb0\x56\x58\x3c\x49\x2c\x7e\x6e\x65\xa4\xa4\x72\x44\xc1\xb7\x40\xb2\xa6\x4c\xa9\x92\xa6\xd6\x2b\xb1\xbf\x21\x2c\x2d\xdf\x45\x45\xa5\x37\xe9\x00\x74\xe4\xac\x0f\xe9\x2c\x98\x13\x2b\x61\x16\x18\x37\x10\x29\x10\xe8\x1f\xaa\x4b\xe2\x85\xc2\xf0\x1b\x8f\xe3\x26\x72\x28\x9a\xfe\x20\xe6\xbf\x0f\x4f\x71\x2a\x2b\xc7\xe6\x27\x5a\x7a\x82\x1f\xd9\x3e\xaa\xb9\x74\x2f\x2d\xd6\x24\x58\x66\xd9\xaa\xb4\x2a\xa9\x1c\x4b\xd1\x96\x8a\xbe\x9f\x1e\x08\xc1\xf4\x76\x62\xdb\xd1\x03\x9c\x54\x80\xde\xc7\xc6\xe3\xba\xe0\x11\x40\x95\x26\xde\x36\x55\x68\x7e\xae\x07\x68\x98\x88\x4d\x24\xa5\xec\x6d\x16\x51\x75\x3e\x36\xef\x1e\x47\xc0\x71\x0b\xcc\xf5\x08\x9d\x20\x2e\x4d\x65\x39\xc5\x94\xc8\x64\xb3\xaf\x17\xc5\x83\x78\xf7\x29\x98\x7a\x82\x43\x42\x53\xe9\xef\xb5\x83\x4f\x4f\xf0\xb0\x01\xe3\xd0\x6f\xe0\x0e\xcd\x9b\x8c\x36\x25\x5a\xf6\xf7\xe6\x29\x1c\xce\x3d\xeb\x2c\x37\xc6\xed\xa0\xe6\xa7\x5e\x20\x98\x11\xd5\x01\xbb\x17\x10\xae\x99\x17\xc5\x33\xe5\xc7\x3c\xc8\xf9\x49\x96\x6c\x56\xe9\x7b\x5d\xbe\x4c\x92\xcc\xf7\x48\x7b\x3c\x4f\xe9\xb9\x0d\x5a\x24\xbc\x63\x41\x98\x50\xc2\x6c\x95\xaf\x72\xac\x3d\x3e\xd0\x2c\x19\x3a\x1a\x15\x05\x3f\x06\x0f\x16\x7f\x34\xc3\x74\x3a\x17\xd7\x94\x51\x69\x9c\xd6\x15\x80\xbb\x4e\xdf\xe3\x7d\x5d\xb8\xef\x48\xff\x2d\xd4\xf8\x0f\x1e\x5a\xa2\x5d\x46\xe8\xa4\xc7\xa0\x3d\xf9\xc4\x3a\xae\x8e\x26\x70\x50\x32\x6a\xfe\xa0\x82\xcf\x68\x3a\x4b\xe7\x38\x13\x13\xe3\x7a\x93\xde\x08\x7c\x48\xbb\x56\x7e\x94\xa1\x07\x46\xe2\xce\x82\xd1\xe0\x66\xcb\x07\x24\x33\x13\x45\x02\x9f\x71\x4b\x79\xeb\xfb\xea\x35\x97\xe0\x47\x62\xc2\x21\x63\x69\x8b\x0e\x16\x6d\x32\x11\x4b\x20\xfd\x31\xae\xef\xb7\x99\x0a\x97\xde\x89\x05\xe3\x94\x80\x01\x91\x97\x91\x92\xa9\x10\x4d\x47\xe2\x58\xad\xe0\x57\x3e\x73\xf9\x31\x35\xbc\x46\xbf\x1f\x6f\x11\xb6\x0c\xa9\xff\xd6\x68\x69\xbd\x81\x98\x55\x1a\xa5\x60\xc9\x56\xa1\x2a\xb0\x6f\x2a\xf2\x02\x3e\xa0\xc3\x6b\xe0\x9d\x41\x64\x60\x21\x9f\x4e\xd2\x49\x4a\x52\xc5\x03\xa0\x54\x65\xeb\x13\x6b\xd1\xfd\x58\x3d\x0a\x68\x85\x66\x64\x1d\x76\x3a\xb6\x0d\x85\xfc\x8c\x19\xf9\x41\xe1\x14\x3c\x63\xa7\x46\x67\x7e\x92\x4e\x38\x49\xb1\x55\xad\x7d\xe7\x98\x96\x13\x20\x9e\xf7\x08\x97\x72\x89\x3e\xa9\xa4\x57\x26\x85\x1e\xfd\x3e\x97\xf3\xd0\xd2\xb8\xab\x49\xd5\xe0\x73\x87\xfa\x51\x66\x6b\x3a\x82\x22\x9f\x06\x6e\x9f\xdd\x0d\x9f\x5a\x9f\x92\x25\x2e\x61\x36\x52\x12\x77\xc2\x2c\xe5\x71\xba\xa1\x5d\x0a\x53\x12\xb3\x7e\x75\xea\x96\xc4\x4c\x9a\x10\xf4\xa8\x44\x4d\xb9\x3e\x02\x32\x9a\x04\x47\x2a\xb9\x6c\x46\x50\xea\x1d\xcb\xd9\x1d\xcc\x2b\xf5\xe7\x08\x16\x42\x87\x0f\x48\x6e\x2a\xe9\x07\x96\xa2\x61\x4d\x77\xee\x58\x23\xc2\x75\xf9\x91\xfa\xd9\x97\x0b\xbe\x2c\xf4\xd7\x6a\x21\xed\x86\x06\x9a\x20\xcd\x8b\x5e\x65\x6c\x15\x70\x98\x97\x9a\x00\xbc\x31\x1f\x6d\xdd\x3d\xca\x2d\xb9\x9c\x31\xd0\x95\xd2\x4c\x19\x1a\xbc\x07\x52\x08\x7b\x63\xa0\x65\xc8\x27\x30\xbc\xe6\x65\xc0\x3d\x45\xd2\x34\xad\x0c\xaf\xf5\x2d\x5b\xce\xe3\xf0\xe6\xde\x9e\xb8\x9c\xd7\x24\x89\x70\xe4\x93\x73\x52\xd0\xed\xf0\x7a\x20\x96\xa5\xa5\x15\x58\x2f\xa0\x60\x82\xb3\x12\xf1\xcb\x75\x47\x84\x28\xb0\x65\x31\x30\xce\x31\x85\xb8\x42\x13\x16\x15\x58\xb9\xe2\x2a\x70\x05\xe5\x68\x34\xe5\xbe\x85\xf8\x6c\x57\xae\x4a\x0c\x9c\xa0\x9a\x4b\x6a\xd3\x06\x9f\xb4\x59\x12\x36\xea\xb5\x1c\x57\x47\x78\x30\xb6\x87\x26\xe7\x66\x13\x90\x58\xd1\xf3\x01\xd9\x9d\x91\x20\x47\xa8\x53\x59\x46\x06\x60\xe9\x2c\x55\x40\x38\x66\x53\xca\x3d\x86\x61\x7f\x61\x08\x68\x93\x3e\xcb\xb5\x06\x24\x15\x58\xaa\x09\xba\x8b\x82\x1d\xf3\x69\x89\x48\x8e\x7c\x26\x30\x60\x12\x46\xc8\xa7\x5b\x8f\xcb\x4a\x64\xbd\xd5\x9a\x2c\x17\xc5\x7c\xa7\xf6\x6e\xd3\x5d\x9e\xc4\x47\xc5\x3f\xde\xf6\xef\xb6\x08\x8d\x66\xc9\x2e\x8f\x72\xeb\x2c\x3f\x26\xd6\x66\xae\x15\xf5\x71\x05\x40\xfe\x59\x00\x84\x54\xf7\xf0\x5a\xe1\x35\xa5\x37\xbb\x4a\xab\x4a\xb5\x56\x8a\x02\x88\x8a\x42\xc7\xbe\xaa\x40\x4a\x6b\xde\x11\xb5\x73\xa9\x75\x96\x1f\x35\xfb\x80\xbe\x5c\x51\xbf\x8f\x6a\x55\xd0\xa0\x19\x52\x92\x93\xcf\xb5\xb5\xfd\xbc\x32\xe5\x84\x50\x9f\x4b\xd5\x61\x9a\xf3\x29\xd5\x16\x43\x3e\x70\x78\xaa\x71\xfd\xbe\x86\x83\xeb\x68\xa3\x01\xff\x59\xd0\x5c\xd2\x2e\xa5\xd0\xe5\x26\xf0\x83\x8a\xa5\x85\x26\x68\x52\x1f\xdb\x16\xa8\xe7\xeb\x20\xac\x08\xe2\x34\x50\x5a\x02\xdd\x9b\x95\x96\x26\xaa\xe1\x9f\x41\x01\x9a\xa0\xb2\x23\x9d\x7a\x13\x68\x7d\x32\xdd\xc4\x6b\x38\x8b\x37\x0c\x3b\x2c\x2e\xf3\x33\x73\x11\x8a\x7f\x61\x90\xb4\x3c\x45\x91\x5b\x3d\x4e\xfc\x78\x30\x46\xf5\xd9\xcb\x71\xaf\x3e\xd1\x16\x41\x78\xf3\xd3\xba\x6a\xa6\xa2\xb2\x0f\x48\xbd\x3f\x21\xb0\xb3\xbb\x66\x78\x85\x07\x3e\x2a\x79\x68\xed\x24\xb2\xce\x10\xbf\xb2\x31\x8d\xcb\xfc\x15\x1e\xbb\x85\xbd\xae\x27\x01\x34\xb4\x93\x0f\x07\x98\x8d\xcf\x50\x68\xe0\x55\x97\xf3\xb4\xa5\x49\xe6\x63\xa5\x59\xc8\x1f\xd5\xd7\x93\x18\x08\x65\x0b\xd9\x82\xa1\x2a\x64\xcb\x90\x47\xc1\xfb\x97\x36\x05\x6e\x46\xdb\x2e\x19\x9b\xce\xe3\x2b\xa1\xbd\xd5\x94\x52\x0c\xb1\x9e\x4e\xea\xa2\xb5\x8c\x26\x9b\xba\xae\xb2\xdc\x3d\x1e\x49\xe7\x1d\x5e\xea\xba\xbd\x71\x4f\x09\xc3\x35\xc9\x21\xb6\x09\x30\x4e\xe5\xb9\x2b\x6e\x73\x37\xc0\xa6\x35\x2b\x03\x9f\x42\xc4\x83\xb8\xb2\x18\xf3\xcd\x22\xe7\xcc\xc0\xc7\x46\x06\x89\x08\x89\x4b\xa9\x48\x4b\x43\xca\x50\xef\x8d\x05\x10\x6e\x98\x60\x71\xbf\x40\xb6\x2d\x94\x58\x73\x54\x60\xa7\x06\xee\x3a\x8e\xe8\x2b\x29\x3c\x0f\x58\x3d\xd6\x66\x75\x14\xfb\x44\x5a\xa1\xea\xea\x3c\xb4\x5d\xc6\x69\x90\x24\xf7\xb5\x8c\x03\x08\xef\x5f\xa9\x26\xc9\xb2\x9b\xe7\xd7\xd4\xf6\x8f\x54\xa5\x0e\xe5\xa9\xd2\x50\x29\xd7\xe5\x65\x39\x70\x3a\x59\xa3\x04\x39\xbd\xc8\x6e\x68\xda\x54\xd2\xdb\x01\x11\x0c\x60\x4d\xb1\x72\xc2\x48\x3b\xa9\xa4\xd5\x70\x0b\x4e\xef\x9a\x37\x2c\x7b\xc1\xb7\xb8\xe6\x3b\x4c\x9a\x8c\x5a\x65\x14\xce\xa3\x2c\x34\xc5\x05\x9b\xc9\xb4\x87\xd1\x4f\x6f\x0c\x34\x30\x0b\x84\x64\xd3\xba\xdc\x32\x9e\x33\x89\x82\x46\xd8\x21\x21\x96\xbc\x6e\xac\x3a\xa3\xb2\x76\x10\x46\x7c\x4f\xe1\x78\xf1\xb0\xed\x7c\x84\x8c\xf2\x7a\x9f\x8a\x26\x49\x1f\x93\xac\xe6\x21\xc3\xd8\xb4\xca\x73\x20\x08\x64\x33\x9c\xda\x47\x0a\x2d\xf0\xb0\xa6\x4a\x8a\x1e\x98\xdd\xf0\xb8\xa3\xcf\x17\xb2\x29\xd9\x2d\x65\x49\x70\x9f\x8b\xc3\xce\x86\x8c\x71\x42\x46\x1d\x05\x86\xf4\x46\xd8\x6e\x5b\xde\xde\xae\x92\xd7\xda\x4c\x92\x23\x3a\xd1\x44\x20\x9e\x6d\xe6\x9d\xf4\x18\xc2\x6a\x28\xcd\x8f\x0d\x1e\x63\x8a\xe3\xd9\xa6\x3f\x9e\xe3\x14\xe1\x4d\x9f\xec\xe3\x84\x18\xfe\x95\xaa\x20\xa0\x1c\xc5\x4b\x2f\x1f\x66\xeb\xe0\xf7\x0d\x45\xa6\x38\xc3\x9b\x01\xc3\x14\x3b\xaa\xd1\x5d\xa7\xcf\x11\xde\x10\xd6\xdf\x97\x02\x5e\xd0\xe2\x65\x47\x9b\x09\xeb\x93\x7d\x7d\x8e\x8f\x67\xac\x3f\x9e\x77\xe4\x3f\xe2\x65\xd3\xac\xaf\x0d\x9b\x6d\x40\xdb\x2d\xce\x10\xd6\x5d\x0f\x30\x6b\x0c\x37\xab\x8f\x35\xde\x90\xd1\x64\x73\x54\x47\x65\x79\x9a\xdb\xa0\xdc\xdb\x98\x60\x18\x60\xb3\x9f\xfb\x31\x06\x2b\x6b\x9a\xfb\xd9\x70\x71\x05\x51\x9e\x8a\x22\x03\x14\xc3\xcb\x34\x93\xee\x7b\xad\x70\x09\xf6\x99\xaa\xc7\xa5\xf1\x7f\x5e\x14\xfa\xd7\x6c\x34\xef\x91\xda\xdc\x32\x86\xcc\xa2\xec\x8f\xc0\x3b\x81\x28\xc4\xe2\x9b\x8f\xe9\x30\x03\xdf\x56\x30\xe1\x7f\x88\xaf\xae\x13\x71\xd0\x94\x51\x11\x5c\xf7\x27\xea\x59\xb3\x31\x95\xe0\x11\xce\x88\x9a\xd8\x29\xea\xc4\x20\xf0\x94\x18\x8b\x11\x96\x3e\x18\xe9\xf3\x25\xa7\x8c\xa4\xc3\x3c\xb8\xa5\x5e\x4f\xa5\x8b\x76\x92\x4c\xfd\xc0\xd9\x50\xe1\x60\xaa\xbe\x9d\xc8\x57\x62\x3e\xf8\xd5\x0f\x82\x00\x57\x73\xca\xc3\x24\x83\xb8\x63\xa2\x95\xd7\xba\xfd\xaf\x98\x38\x9c\x83\xd3\xfe\xb2\xfd\x3a\x91\x58\x87\xa7\xfa\x37\xdc\xef\xef\x00\x65\x54\x94\xba\xba\x2b\x56\x04\x0a\x5e\x15\xe4\x00\x08\x1c\x8b\xff\xf2\xf6\x11\x64\xdc\x29\xd4\x64\xc9\x0e\xed\x03\x6f\xc8\xbd\x14\xf7\x46\x3a\xd4\x5d\xd6\xd8\x6c\x8d\xf8\x02\xc7\x38\x53\x35\x04\x04\x54\xcb\xf9\xc0\xea\x49\x29\x0d\x9d\x8e\xe9\x81\x3f\x1e\x8d\x10\xce\x09\x9f\xe4\xc7\xc1\x64\x30\xc8\x61\xfe\xe4\x47\x24\xab\x1e\xfb\xd4\x2b\xd4\xbd\x21\xbf\x52\x2f\xc3\xf9\x60\x0c\x7e\x5f\xac\x01\x15\xdd\x48\x5c\x17\x6e\x14\xf3\xbe\x97\x54\xa2\xac\xf0\x69\x52\xd2\x5f\x7f\x84\x44\x1d\x36\x6a\xcd\xf9\x3e\xef\x48\x25\xd8\x57\xde\x46\x12\x15\x58\x59\xe5\x44\xd4\x6c\xc8\x44\x89\x9f\xe2\xa2\x48\x8f\x43\x04\x52\xe3\x7c\x30\xc6\x29\x09\xcd\x58\xc4\x3a\x30\x3f\x0e\x48\x76\x9c\x6a\x31\xc7\xaf\xd4\x4b\x71\x36\x18\x23\xab\xf1\x38\x27\xc1\x34\xe4\xa0\x2d\x76\x1e\xdc\xd2\xc8\x4b\x21\x82\xb9\x6f\xd0\xff\x3b\xf5\xe4\x18\x21\x9c\xa1\x6a\x70\x1a\x2f\xc3\xbc\xa4\x79\x0c\x3d\xac\xc5\x90\x33\x45\x14\xf5\x1d\x45\xae\xa4\x8c\x95\x35\x40\x08\x1f\x8c\x8b\x22\xfd\xf6\x31\x21\x23\xd1\x15\x12\x0f\x6f\x63\x7a\xf7\x8a\x65\x2b\xd7\x4d\x8f\xe4\xdb\x45\x36\xcd\xe5\x6a\x41\x32\x00\x60\x0e\x47\xb6\x37\x71\x4a\x3d\xb4\x45\x98\xc1\x32\xab\x4c\x63\x59\x1b\xc2\xd6\x44\x5c\x37\xf6\x1b\x6b\xf9\x66\x60\x3b\xfa\x77\x0a\x22\x82\x1a\xb2\x31\x93\x7b\x48\xa6\xa4\xd4\x19\xb0\xf7\xb0\xed\x39\x0e\x30\x3f\x2b\xee\xc5\x9a\x34\xa2\x49\x2f\x13\x27\x63\x0f\x4d\xd0\xad\x48\xcf\xcc\x17\x5c\x81\x60\xa9\x33\x95\x82\x07\x3a\x5c\x24\x41\x7a\x23\xba\x56\x5e\x2b\x98\x24\x4f\x5e\xf2\x58\xf3\x58\xcb\x0d\xd4\x55\x40\x79\x33\x0f\xd3\xdd\x14\x9c\xd6\x13\x3c\xdd\x26\x1d\x0d\xda\xd2\x6c\xb2\xf0\x54\x35\x7f\x18\x8f\x20\x9a\xe5\x03\xc4\x6b\x9e\x8d\xe6\xb2\x56\x86\xe4\xbc\x30\x77\xd3\x5c\x32\x28\x2a\xfc\x35\x97\xe7\x45\x75\x32\xd0\x4b\x6a\xdb\x10\xa6\x8b\xde\x74\x9d\xbe\xbc\x40\xec\x3b\xca\x09\x61\x97\x67\xdd\x20\xba\x15\xeb\xa8\x9b\x73\x46\x83\xd5\xd0\x41\xdb\x4a\x38\x90\x2f\x72\x67\x62\x90\xaf\xa8\x9c\x2e\x86\x95\xe9\xd3\x4a\xb8\xed\x9e\x18\x46\x7a\xdc\xe0\x6e\x34\x63\x5b\xe1\x78\xc4\xf9\x47\xb0\x50\x9f\xe7\xe7\xa8\xda\x8e\xaa\x9c\x51\x43\x4e\x3c\xa9\x65\x98\x35\xb8\xa6\x39\x18\x70\x37\x92\xfb\x64\xbf\x63\xf5\xf2\x73\x10\xc4\xfe\xae\x36\x59\xa9\x8f\x26\xb8\x53\xe3\x7a\xd3\xeb\x16\xff\x40\x7a\xa7\x1f\x7e\xb7\x07\xea\x1b\x79\xfc\x07\xf5\xbf\xdc\xb4\x81\x60\x96\x2b\x98\xd0\x2b\xb3\x71\x0a\x07\xac\xf7\x9b\x0c\xe4\xb1\x76\x67\x6c\x27\x0e\x06\x00\xd6\xd0\xa3\x06\xc9\xd7\xfb\x4d\x8d\xcc\x2a\x7a\x45\x31\xec\xce\xd2\x17\xb9\x5e\x7d\x0c\x5b\x2c\xb9\x21\x6d\x95\xac\x08\x33\x54\xeb\x8f\xa0\x3b\x2d\x33\x0b\xce\x3d\x74\xfa\x93\x9a\x52\x86\x90\x94\x3c\x34\x2a\xfd\x0a\xd3\x8a\xf0\xa2\xda\x79\x68\x72\xc2\x4b\xe7\xfd\xe5\x47\xe4\x73\xc9\xdd\xdf\xd7\xb9\xf5\x92\x57\x67\x9c\x50\xfb\x94\x44\xc1\x39\xc6\x5a\x1f\xdc\xf5\x55\x9a\x3e\x79\x79\xb6\x4f\x6a\x5e\x71\x2d\x0e\x5c\x8a\x7d\x29\x76\x55\x27\x98\x38\xc3\x81\xda\x5d\x73\x12\xc8\xfe\xc2\x86\x18\x60\x8f\x93\x9c\x7b\x01\xe6\x08\x29\xca\x9b\x48\xd6\x4a\xdf\x23\x21\x1c\x6a\x12\xbb\xd1\xac\x7c\x9d\xce\x26\x92\xce\xa6\x70\x55\x34\x9b\x8b\x4d\xae\x28\x42\x29\x86\x1b\x86\xd7\xc8\x75\x7b\xa1\x26\xad\xa1\xea\x3c\x7c\xc6\x31\xb9\xe5\x5e\x8e\x43\x9c\xe8\xc1\x4e\x5d\x37\x2b\x95\x91\xef\xb9\x17\xe2\x58\x8c\xb4\x6a\xb6\xce\x57\xc6\xb8\x4d\x05\x5f\x59\x66\xd5\x19\x2c\x6d\x43\x8b\x4a\xc3\x1d\x8d\xf6\x07\xc1\x88\xf1\x43\xe6\x4d\xfd\x7f\x14\x97\x79\x1f\x81\x6c\xdd\x5b\x04\xe1\xcd\x15\xcb\x36\x69\x34\x40\x53\xef\xf2\xbc\x8f\xf6\x90\xba\xd2\x97\xd7\x14\xd4\xa8\xf2\x8c\x30\xd3\xfe\xb9\x74\x92\x4a\xe8\x33\xdb\xb7\x97\xba\xf0\x9f\x8d\xe7\x53\x47\x71\xc7\x8e\xef\x18\xe6\xd8\xe9\x28\x6d\xbb\x59\x3a\x9f\x82\x6f\x18\x36\xdb\x9f\xfb\x15\xcf\x64\xa2\x8d\x39\x72\xfa\xe2\x8b\x72\x4e\x96\x23\x47\xbb\x1e\x9a\xa5\x73\xed\x57\x46\x3b\x20\xda\x9f\x1b\x9e\xc2\x92\xcd\x7f\xe4\xa5\x77\x19\x31\x33\xf4\xcd\x0c\x1b\x2e\x93\x80\x73\x9a\x9e\xaf\x83\x34\x57\xed\x01\x2f\xad\xa4\x1c\x72\x3b\x8b\xec\xd4\x46\x1c\xad\xc4\x24\x11\x33\x72\xf9\xb9\xed\x38\x45\xf8\xda\x02\x15\x44\x91\xd8\x3b\xa0\xfb\xae\x3b\x13\xe5\xa5\x6e\x83\xda\x9c\x17\xdc\x5b\x71\x8f\x59\x1c\x3a\x9a\xf4\x96\x7a\x1e\x89\xe1\x5c\x4a\x79\xe2\x67\xb8\xfd\xa9\x97\x93\xde\x18\x07\xae\xab\xb8\x88\x14\x43\x21\x24\xff\x11\x7d\x64\xc0\x1b\xc9\x77\xfb\x1b\xb2\xe0\xde\xad\xa8\x76\xa9\x2b\xc6\xd7\xa2\x6a\x7c\x2d\xf1\x14\x91\x6b\x31\xac\x62\xb3\xeb\x88\x5d\x66\x43\x9c\xd5\xc0\xe9\x7b\x9b\x69\x24\x8e\x5f\xfd\x8d\x1f\x21\x38\xeb\xf5\xf2\xa2\x08\x7b\x64\xa3\x6c\x30\x93\xa3\xa5\x9c\xf9\x13\x14\x7b\xd6\xd1\x50\xa5\xe2\xa4\xff\x98\x1e\x20\x1c\xa2\x4e\x48\x36\x5b\x95\x4a\x96\x92\xe1\xd0\x00\xd6\x59\xae\xe6\xee\xda\x86\x20\x56\x92\x2c\xdf\x89\xbd\x35\x0e\xc5\x22\x5e\x4b\x83\xc9\x3b\x41\xf1\xf0\xa9\x78\x96\x04\xe2\x13\xaf\x50\xa3\x55\xc0\x6e\x28\xdb\x69\xf2\x55\xea\x95\xd6\x17\xd2\x6d\xbb\x7f\x1c\x7d\x60\x98\xb1\xb9\x0c\xc8\xa9\x2a\xa8\xb8\x40\x29\x15\x50\xeb\x57\x1b\x75\xaf\x24\xfd\x7e\x8a\xe8\x2c\x9d\xc3\x56\xef\xb1\xa2\xf0\x98\x20\x32\x48\xc9\x0b\xaa\xf7\x1c\x06\xec\x8d\x7d\x29\xb4\x14\x63\x6b\x6f\xe0\xb2\xe5\xf2\x4e\x11\x7a\x2c\x89\x1f\x30\xd9\xd5\x24\xd9\xf8\x08\x26\x3c\x4e\x75\x11\x9e\xd5\x0a\xe8\x04\x3b\xbb\xa4\x18\xae\xdb\x4b\x1b\x75\x8b\x13\x2b\xd4\x11\x5e\xe3\x8c\x40\xf1\xf0\x1a\x07\x44\xde\xcb\xc9\x6f\x00\x15\xe1\xbc\xb1\x85\x48\x4b\xd7\xca\x28\x7c\xde\xcc\x15\x54\x0a\xe5\x20\x74\xcc\x05\xb8\xb4\x51\x2d\x0a\x2f\x18\x82\x97\xd7\x3c\xbe\xa5\x6f\xe8\x92\x4f\x95\x41\x2c\xe1\xbe\x36\x8d\x45\xe2\x1c\x6f\xac\x5b\x9d\x45\x96\xdd\x08\x68\x0e\x21\x81\x0e\x8d\x2d\x4e\x4f\x3d\x5d\xc9\x30\x4e\x73\xca\xb8\x80\x86\x34\x75\xd1\x95\xf2\xac\x5a\xe5\x07\xb1\x58\xa7\x60\x7a\x0b\x35\x82\x09\x2e\x6c\x20\x5e\x6a\x0d\xb3\x20\x2b\x9f\xc4\x46\x25\x1b\x82\x73\x29\x52\x15\xf9\x11\xda\x1a\x63\xda\xad\xc7\x70\x8c\x03\x84\x37\xff\xdd\xb0\xf6\x55\x1d\xf8\x3a\x84\x7d\x0d\xbe\xbe\x7e\x90\x3e\x83\x34\x83\x2d\x91\x75\x20\x0f\xa7\xb2\x2f\x25\x1a\x07\xbc\x8a\xc8\x14\xf6\x06\x9c\x10\x70\x2a\x68\x89\x57\x70\x48\xbe\xf1\x64\x8a\xd6\x9c\xed\x7b\xc9\x34\xf6\x47\xd2\x87\x98\x41\xef\x92\x8c\x26\xcb\x23\x4b\x6c\xb4\x94\x9d\xbb\x26\xf9\x6c\x39\x2f\x71\x7a\x2d\x06\x51\x11\xd7\x73\xee\x6d\xf0\xb5\xc2\x0b\xea\x44\x53\x71\x34\x17\x19\x14\x42\x22\xd3\x66\xf1\xab\x1f\x22\x1f\x3e\xc6\x5b\x41\x72\x37\xa6\x6a\x69\x32\xba\x29\xab\x5e\xcb\x0a\x56\x64\x33\x5b\x9b\xaa\x7b\x64\x05\x06\xda\x9e\xf8\xd7\x27\x21\x52\x88\x59\x01\x9e\xd0\xb9\x60\x4d\x56\xba\x2d\x45\xe1\xc9\x74\x12\x62\xd1\xa8\xbc\x28\xbc\xdc\x42\xf6\x4a\xfb\x9b\x94\xb9\xfa\x3b\xb3\x6d\xe5\x9e\xfa\x9c\x7b\x39\x42\x78\xe3\xba\x9b\x1e\x6c\xb3\x1b\x91\xb4\x51\x36\x6a\xb7\x64\x96\x4b\x2d\x42\x65\x5f\x7b\x8f\xaf\xaa\xc3\x30\xd8\x17\x9f\xaf\x04\x17\x5e\xa2\x7c\x41\x46\x93\x85\x8d\xf2\x05\x52\xfb\xf8\x6c\x31\x97\x7d\xbd\x2f\x0a\xef\xbe\x39\x49\x20\x83\xec\xaa\x94\x5d\xc0\x7e\x58\x0a\x61\x3f\x92\xd1\xe4\xe3\xd1\xd5\xa4\xdf\xff\x88\x6e\x65\xc9\x7b\xd4\x51\xbf\x36\x86\xcf\xb8\x2d\x29\xf0\x73\x5e\xd3\xa3\x9e\x70\x7b\xad\x95\x57\xe7\x33\x3e\xef\xc8\xe1\x60\x80\x3a\xd7\x65\x6a\xf1\x30\x68\x32\xb0\xec\x4c\xaf\x15\x70\x52\xf6\xf3\x35\x4d\x4f\x57\x6b\x7e\x0f\xfe\x24\xa5\x14\x95\x0f\x06\xb8\x54\x7b\xd6\x35\x4d\xa9\x94\x3a\x9a\x66\x5d\x70\xdb\xe0\xa1\x46\xae\x1b\x8e\xdf\xb8\xbd\xb1\xf1\x19\xd3\x38\x52\xe6\x54\x70\x36\xa5\xa8\x53\x01\x44\x6a\x62\xce\x13\x6b\x2b\xfa\x6a\xf8\xd2\x46\xad\x1d\xbe\xad\xd6\xf7\xb6\xa2\xb5\x51\xa3\x12\x83\xb1\x6f\x59\xa1\x7c\xd8\x91\x55\x52\xb0\x4a\xd6\xf7\xbc\xaa\xdc\x60\x6b\xf3\x28\xd5\x13\xfd\x0a\x66\xde\xbd\xd2\xff\x03\xeb\x68\x79\xe1\x32\x4e\x23\x4f\x4a\x67\xd5\xcf\x4c\xec\x6e\xa9\xa4\xe0\xb1\x5c\x64\x45\x01\x3d\x18\xbc\xe5\x4a\x48\x92\x29\x40\x83\x4c\x39\x62\x83\x22\x3c\xc3\xb1\x20\x13\x45\x01\xbd\x18\x7c\xe0\x56\x38\xdd\xa0\x28\xf8\x30\x8e\x06\x74\x18\x47\x96\x77\x50\x5e\x09\xd8\x45\x4e\xb9\x74\x3c\x5c\x19\xf0\xd4\xda\x0c\xa4\x44\x05\x4b\x17\xb1\xa9\xed\x22\xd6\x8b\xa5\xc2\xac\x99\x83\xca\xc7\x65\xe4\xba\x72\x79\x79\x7c\x2a\xfb\xe3\x43\x2b\x15\x7d\x7f\x2f\xf8\xc8\x58\x13\x90\xa3\x11\x02\x6d\x21\x93\xd0\xc2\xb5\xbc\xb4\x87\x08\x3a\xd0\x1b\x59\x47\x99\xb3\xe6\xe7\xb1\xf5\xf9\xf5\x9f\xed\xb1\xd8\xfe\xd2\x96\xed\x2f\x9d\xc5\xf3\x4e\xd6\xd2\xdb\x1a\xef\x60\xf6\x1e\xeb\x8b\xd8\x1f\xd5\x2e\x68\xa3\x21\xab\xa3\xc1\x24\xb4\x28\xc8\xbe\xe1\xb6\x03\x4c\xd9\x26\xa5\xea\x89\x03\xe8\x56\x56\xef\x56\x60\xba\x95\x93\xd1\x24\x3f\x0a\xca\x6e\xe5\x12\xc4\x86\x04\x8a\xa6\x6e\x1a\x3d\x93\x39\x12\x62\xbe\xc0\x84\x1d\x89\xc3\x2f\xe7\x5e\x22\x67\x2c\x93\x93\x55\xe7\x81\x39\x1b\x23\xbc\x94\x59\x78\x86\x53\x39\x3d\xcb\x0c\x1f\xb8\x72\x70\xd2\xf3\xc2\x63\x32\x02\xef\x01\xa3\xa2\x08\x8f\xe0\xf7\x31\x01\x54\xc8\xb7\xb2\x51\xd5\x75\x29\x83\xb7\xdb\x8b\x5a\xd7\xc6\xd0\x31\x19\xf9\xd6\xdb\x08\x15\x85\xac\xe6\x4f\x02\x83\xde\xa5\xe8\x48\x83\xd3\xef\x23\xa3\x97\xd2\x1b\xd9\x66\x9c\xaf\xaa\x94\x7d\xc2\xc9\x4b\xa9\x6e\x42\xf5\x52\x1f\x8c\xc5\xc4\xad\xea\xa7\x5a\xda\xf3\x15\xea\xa2\x07\x36\x25\xaf\xb8\x67\xad\x0a\x42\xd2\x29\xf7\x7f\xa4\x9e\x6d\xbe\xf9\x83\x45\x4b\x8f\x29\xa8\x2a\x48\x71\x72\xd5\xfd\x8c\x98\xfd\xbf\x96\xe6\xa5\xbd\x17\x1c\xee\xe0\xca\x4c\xf2\x46\x8d\x9c\x71\x2f\x45\x13\x94\x12\x35\xe2\xcd\x66\x43\xfd\x7d\xcb\x24\xf0\x45\xa5\xf1\xa7\x20\x92\xab\xcd\x45\x5b\x35\x55\x11\x95\x16\x2b\xd5\x78\xe9\x79\x29\x61\xb3\xb8\x85\xae\x58\x8a\xaa\x92\x5c\x9a\x71\xd0\xb7\x2e\xb2\xc0\x5d\x1c\x5d\x51\x30\xb7\x02\x9d\xbe\x54\xed\x9f\x69\x63\xf8\xc5\x60\xbb\xee\x4f\xfa\x86\xcb\x1a\xd6\x52\x6f\xde\xbe\x8d\x53\x3a\x6c\x86\x33\x4b\xcb\x0d\xb8\x44\x94\xc6\x11\x94\x4c\xa5\xc0\xe8\x5c\x50\x6b\xf1\xab\x72\x70\xd2\x85\xe5\xd1\x98\xed\x9a\x9d\x4c\x7a\xdc\xa9\x28\xc1\x99\x8e\xef\x20\xd4\x15\xec\x57\xfc\x7a\x2f\x3d\x4f\xec\x3d\xd6\xe7\x1d\x34\xbc\x17\xb7\xe1\x33\xae\x30\x21\xfa\xde\x06\xe8\x9b\x78\x6a\x6e\x05\xee\x70\x5a\xf1\x5d\x14\x3b\x3a\x8a\xcc\x48\xc4\xd6\x48\x94\xe6\x01\x75\xc6\x09\x33\xe2\x51\x02\xab\x0e\x69\xbd\x64\xe3\x91\xba\xaa\x67\x6b\x69\xa0\x4b\x3d\xdb\x54\x9a\x70\x13\x42\xb5\x86\x6d\xdf\xa8\xfe\x6e\x4b\x1f\xc1\x4c\x6b\x35\x67\x93\x8c\x08\xea\x8c\xea\x5a\xcd\x52\xb1\x37\x6b\x51\x31\x36\x12\xa4\xf2\xe3\x2c\x80\x6a\x73\x42\x58\x59\x6d\xae\xab\x6d\xfa\x98\xfa\x9d\x2b\xb1\x3b\x18\xbc\xca\x6c\x7a\xb1\x96\x23\xcf\x31\x53\xda\xeb\xfa\x28\x92\x12\x2a\xa9\x8f\x58\xc5\x0f\xe6\x64\x0d\xc4\x1b\x66\x68\x4a\xe2\xf2\x30\x2f\xd5\x99\xd5\xb9\x7b\x10\xcb\x53\x37\x20\x41\xc2\x39\xb3\xe0\x64\x55\x38\x6c\x40\xd2\x0a\xf7\x9d\x99\xf3\x3b\xeb\x13\x2f\x85\x8d\xaf\xa9\xc2\x39\xc8\x54\x25\xcd\x3d\xee\xef\x15\x3e\x54\xdd\xa9\x42\x07\xa3\x2c\xec\x70\x10\x28\xc7\x29\x15\x64\x8c\x61\xa6\x6e\x36\xb1\x49\x97\xf2\x2d\xf2\x3b\xf7\x4c\x92\xf5\xf5\x04\xc2\x12\x45\xa4\x07\xe2\xc9\x4a\xa4\x1b\x73\xf5\x04\x38\xef\xb0\xe3\x1a\x48\xb8\x91\xae\x56\xc2\x4a\xc0\x84\xa2\xad\x54\x51\xfa\x75\x87\x6c\x1b\x42\x56\x53\x7c\x22\xf5\x01\xb1\x56\x2a\x93\x63\x4a\xd8\x54\xaa\x26\x21\xdf\x56\x29\xf9\x9e\x2b\x53\x6d\x98\x72\x52\x94\x08\x7c\xfa\xf6\xd7\xca\x8d\x51\x9c\xd2\xb3\xac\x45\x09\xe9\x47\x29\xcd\x47\x5b\xbc\xa0\xde\xaf\xea\xba\xf9\x6f\x9c\x3c\x6c\xf1\x37\xbc\x62\x56\xf4\x63\xb9\x7f\xf4\x68\x51\xec\xfd\xe3\x32\xff\xae\x69\x31\x66\xc9\x88\x78\x45\x4e\x39\xfd\x86\xfb\x7f\x33\xae\xe8\xd9\x8c\xce\x8b\xc2\x13\xff\x88\x1d\x12\xed\x1c\x42\xa1\x85\xab\xc1\x37\xae\x63\x2b\x2a\xff\x52\xd9\x3a\xde\x6a\xc3\x5e\x73\xdc\xc2\x9b\xa9\xb3\x0e\xa2\x28\x4e\xaf\xb4\xe1\xee\x70\xbc\xfe\xe4\xf8\x52\x27\x20\x25\x0f\x6b\x46\xfd\xb7\x9e\xb3\x66\xd4\xc1\x33\x36\xc7\x96\x13\xe5\x81\xc0\x8e\x83\xb0\x8a\x14\xef\x33\x1c\x66\x89\x3f\xc2\xeb\x2c\xf7\x47\x38\x5c\xf9\x14\x73\x16\xc4\x49\x9c\x5e\x81\xc6\xa7\xdf\x1b\x63\xb0\x01\x85\xb7\xdc\x87\x90\xcc\xef\x54\x4c\x30\x01\xeb\x67\x16\xac\xd7\x71\x7a\xe5\xa0\xad\x98\x8e\x34\xc8\x37\x8c\xda\x76\x51\x72\x4f\x23\x1e\x1f\x32\x9a\xf3\xa9\xfc\xa7\x26\xbe\x3f\x42\xf2\xce\x51\xe9\xaa\xa8\xaf\xb3\x78\x30\x9e\xfb\xea\x6e\x21\xd0\xae\x6e\x52\x90\xc5\x8e\x70\x2a\x70\x2d\x6f\xe3\xfe\xca\xf1\x5b\xd0\xd3\x90\xeb\x42\x57\x2f\x88\x6d\x40\x42\xea\x65\x4a\xa3\x48\xc6\x53\x8c\xb3\x14\x49\xa3\x37\x03\x80\x32\xeb\x0d\x2c\x65\xc5\xa6\xb8\x26\xb3\x39\x66\xcc\xcb\x70\x8a\x41\xfb\x24\xc3\x60\xb7\xaa\xab\xa1\x9f\x38\x65\x69\x90\xbc\x95\xd5\x45\xae\xfb\x23\xf5\x32\x84\xe4\x15\x70\x45\x6d\xa3\x9a\xa0\x35\x5e\xa0\x11\xea\x37\x79\xb9\x23\x13\x4e\x4b\x05\x19\xc7\x69\x00\x2f\x55\x66\x00\x9a\x79\x6b\xc2\x33\x9f\xb0\x95\x4d\xc2\x44\x18\xf8\x81\x55\xb0\x56\x23\x22\xb9\x82\xb5\x3c\xb0\x8f\xb0\xc0\xb6\x9a\x2a\x95\xf8\x17\x27\x6d\x58\x97\xd0\xe2\xa9\x67\xe6\x01\xe0\x12\x00\xe2\x32\x2d\x0c\xc2\x6b\x31\x43\x90\xef\x55\x73\x42\x6c\xde\x4a\x82\x2d\x80\x80\x30\xd9\xd8\xab\xc1\xa9\x96\x91\x49\x56\xa9\x87\xad\xe4\x25\x36\x46\x60\x66\xba\x03\xfa\xab\xa2\x33\x13\x6f\xef\x72\x11\xae\x06\x3c\x58\x98\x98\x34\x79\x19\x0b\x02\x15\x45\x3e\xfc\x7d\x43\xd9\xbd\xb4\x75\xce\x98\xeb\xd6\x12\x3c\x67\x28\xcb\x3b\x6a\x7e\xe9\x3a\xca\xd0\x25\x8e\xcc\x30\xb8\x63\xc1\x7a\x70\x1d\x84\x37\xc6\xb4\x54\xba\x3b\x71\x18\x4d\x23\xca\x04\xf1\x74\xb0\xb9\x57\x4b\x87\x6b\x46\x91\xfc\x57\x02\x6b\x8c\x77\xed\x7b\x73\x98\x6d\x6b\xa9\xff\x64\xed\x28\xb6\x17\x81\xff\xcd\x01\x62\x14\xcb\xd0\xa1\xe1\x75\xc0\x4a\x57\x00\x7c\xc8\x63\x9e\x50\xe2\x5c\x5e\x6e\x9c\x7e\xcd\xc3\xe4\x50\x7b\x6f\xf7\xc6\x4f\x40\xdb\xa9\x62\x06\x1d\xb0\x38\x18\x24\xc1\x82\x26\x0e\x56\x60\x2a\x41\x75\xff\x5a\xbd\x67\xda\x68\x01\x08\x9c\xb4\x70\xa8\x03\x6c\x48\xf2\x33\xad\xea\xde\x81\xb2\x84\xd2\xe6\x1a\xbb\x6e\x6f\xaf\xdb\x6d\x10\x69\x6a\xd9\xe4\x09\x7e\xc8\x71\x70\x4d\xa0\x6b\x11\xa0\xd2\xd2\x1e\x75\x9c\xae\xd3\x23\x59\x51\x88\xb3\x69\xdc\x23\xa5\xb7\x74\xd7\x3d\xd8\xef\x91\x0a\x12\xe2\xfe\x18\x15\x85\x97\x11\xe7\xbf\xfd\x57\x07\xe1\xb4\x4f\x32\xcc\x88\xd3\x75\x48\x69\xb0\x97\x6e\xe1\xba\xab\x42\x5d\x91\xcf\xf1\x52\x80\x5a\x29\xf5\xb5\x7c\x4d\xc3\x38\x48\x40\xe1\x15\x5f\x93\xde\xb8\x03\x17\x58\xca\x08\x00\x3d\x24\xf5\x90\x1f\xda\x12\xfe\x15\x0b\xae\xa4\x49\xbb\xe9\x6f\x24\x7d\xda\x2f\x61\xa6\xbf\x4e\x23\xfa\x89\x44\x1d\x29\xf6\x5c\xca\xa8\x43\x1c\xe1\x15\x59\x4f\xd7\xf2\x26\x72\x10\xf9\x86\x21\x89\x44\xbd\xca\x23\xdd\x6d\xbd\x4e\xe3\xbb\x21\x54\x57\x99\x11\x8e\xfa\x2b\x84\x3a\xd2\x31\xc7\x34\xa9\x92\x0a\xe3\x2f\xe3\x76\x8e\x90\x5f\xfd\x78\x8b\x30\x2d\xe9\x0d\x55\xaa\xc8\xeb\x2c\xef\xaf\xf0\xad\x0c\x68\x93\xf4\xc9\x4a\xa5\x91\x15\x5c\x99\xad\x15\xb3\x18\xf5\xc9\xaa\x2f\xdd\x7f\xdc\xeb\x4d\x22\x96\x4e\xfb\x09\x59\xcf\x46\x73\xd9\xfe\x2b\x89\xe0\xfa\x3d\xe3\x82\x5c\x0d\x00\xfe\xb7\x57\x13\xef\x9e\xec\x68\xf4\xdf\xbc\x05\xc2\x8e\x59\xdd\xe8\xab\x82\xf7\xdc\xef\xf4\x9c\x71\xc9\x1d\xd3\xab\x05\x98\xc3\x4b\x17\x0f\xa2\xb5\x45\xe1\x5c\xa6\xea\xf7\xd4\xdb\xdd\xa4\xb2\xc4\xd4\xf9\xf7\xff\xf2\xbf\x3a\xbe\xf3\xef\xff\xe5\x7f\x6f\x59\xbc\x8d\xc6\x9a\x66\x00\x6e\x74\x33\xc6\x82\x0e\xdf\x57\x71\x64\x4d\xc3\xf7\x82\x5b\xb9\xce\x92\x88\x32\x0f\xca\x7d\x01\xea\x17\xe6\xc0\x7d\x73\x0e\xdc\x5b\x4d\xe9\xec\x98\x0d\x63\x0c\xb9\xc0\xf8\x66\x2b\xc3\xc6\xab\x32\x86\xc9\x6f\x2c\x8d\x72\x9a\xee\x9c\x64\x65\x61\xdd\x70\xd7\xf5\xae\x49\x6f\xa4\x2b\x33\xe0\xa5\x62\x56\x65\xf1\x92\x83\x7d\x42\x42\x9b\x0c\x98\xe5\x33\x46\x98\x15\x85\x8c\x43\x77\x5d\x14\x99\x76\xd2\xc8\x04\x39\xee\xa4\xae\xeb\x7d\xec\x93\x14\xe1\x58\xfe\x8a\x25\x2b\x7a\x57\xd2\xe3\x59\x32\xc7\x1f\x55\xb8\x95\xf2\xbe\xe2\xb4\x1b\xa7\xdd\x0d\xda\xd4\xed\xdc\x4f\x11\xf8\x75\xb8\x4f\xa8\xf2\xb0\x08\x5b\x81\xfc\x7d\x57\x1d\xae\x53\xbc\x99\x9d\xce\xad\xd0\xd4\x6d\xbb\xfb\x1d\xda\xb6\x7f\x48\x6c\xcf\x49\x94\x55\x34\xb3\x4b\x15\x41\xad\x32\x80\x73\x20\xe7\x24\x9e\xc6\x7d\xa7\x1b\xae\x06\xcb\x8c\x85\x74\xb0\x00\xa7\x6e\x8e\xef\xd4\x53\x0c\xe5\x4a\xc4\x41\x33\xcb\x71\x48\x92\xbe\x39\x41\x4e\xca\xc3\xee\x52\x9f\xed\xaf\xc9\x68\x72\x6d\xa4\xe3\xae\xdb\xf3\xbc\x25\xe1\xb3\xeb\xb9\xd8\x94\x8e\x13\xd7\x5d\xaa\x0b\xb0\x04\x4d\xae\xfb\x7d\x34\x91\xd4\x34\x3b\x26\x61\xe9\x48\xb8\xda\xde\x0e\x95\xca\x04\x4a\x6d\x43\xe4\x1e\x24\x08\x32\x48\xe5\x44\xbc\x41\x58\xde\x33\x81\x55\xaf\xcc\xa8\xb3\x25\x44\xfc\xb2\xa5\x60\x9c\xd5\xf5\x12\x7b\xa9\xeb\xda\x32\x84\x4e\x2c\xe5\xaf\x6d\xf3\x13\xc7\x08\x8b\xfc\xb0\x3a\x35\xbf\x15\xa7\xeb\x0d\x1f\xa6\x94\x46\xf9\x89\x1c\x24\x33\xbe\xae\xeb\xc5\x45\x01\x3e\x65\xda\xc6\x6f\x47\xb4\x35\x39\xe9\x04\xff\x56\x0f\x4e\x16\xae\x06\x52\x36\xe1\x88\x13\x62\x84\xe4\x94\x6d\x69\x4d\x4e\xf9\x4f\x29\x8d\x62\x1e\x2c\x12\xea\xc5\x3a\x16\x59\xbd\x01\x31\x2a\x57\x56\x7d\x33\xac\xb8\xd4\x62\xac\xae\x57\x6c\x0b\x8a\x62\x75\xc0\xc7\x19\x19\x55\xa5\xd5\x30\x88\x38\xc1\x21\x5e\xe2\x6b\x1c\x91\x58\xaf\xf0\x35\x19\xe1\x15\x19\xe3\x5b\xc1\x01\xdc\xcb\xad\x31\x5e\x7a\xf7\x84\xac\xd1\xc3\x86\x24\x24\x24\xb9\xf8\x74\x6d\x54\x54\xc4\xbf\x7b\x32\xde\x2b\x25\x0b\x57\xe2\x5c\xb0\xd0\x93\x4f\xde\x75\x59\x12\x8e\x8f\xb2\xb1\x77\x24\x9d\x7d\x9c\xe3\x53\x72\x67\xdd\x0b\xdb\xb7\xbb\xa7\xea\x76\xf7\x4e\x89\x8e\xd6\xae\x7b\x6a\xcd\x07\x74\x25\x27\xc2\x69\xe9\xa5\xef\x4e\x4d\xe3\x75\x19\xbb\x10\x24\x4c\xe2\x79\xbc\x2e\x8a\x53\x5b\x4e\x75\x07\xe2\xb1\xb5\x05\x1f\x59\xee\x99\xee\x40\x4e\x75\x07\xa2\xa9\xb5\xeb\xde\x1f\xdf\xa9\x0b\x3f\xf8\x82\x13\xe2\x38\x08\x9f\x56\x98\xcd\x8d\xd4\x14\xb2\x12\x21\x47\x2e\x6f\x28\xbd\x7c\x9a\xf7\x9d\x89\x34\x29\x80\x64\xf1\x55\xa9\x7a\xdf\x27\xd5\x7e\x7a\xa1\x86\x55\x66\x10\xd9\x69\x1a\x99\xcc\xa2\xf5\xf7\xae\xeb\x2d\x8a\xc2\x5b\x58\xbc\x7c\x99\x0b\xdf\x81\xce\xc3\xa9\x64\x27\x5d\xd7\xf3\xae\x8b\xc2\xbb\x16\x67\x0a\xa4\x38\xd5\x53\xcd\x6a\x9e\x0e\x03\x3d\x9d\xcb\x0b\xd0\x4f\x82\x90\x56\xbe\x58\x10\x66\x9f\xe6\xc4\xfe\x36\xfb\x34\xef\x54\x10\xec\xf5\x96\x70\x5d\xb1\xd4\x37\xa1\xa7\xea\xba\x62\x49\xee\xa4\xc7\xd2\xae\xec\xf2\xb1\x42\xb0\x14\xb7\x02\x8a\x41\x16\x28\xb8\x98\x05\xaa\xba\xbc\x5d\xe8\x79\x74\xde\x27\xfb\x68\x31\x3b\xef\x8f\xe7\x12\x0f\x89\x44\xd9\x62\x76\x3e\x97\x62\xea\x65\x51\x2c\xcd\xd0\x6a\x28\xef\xc8\x68\xf2\xee\xe8\xaa\x9c\x8d\xef\x10\x67\xe0\x50\xeb\x6a\xf6\x4e\x16\x5c\x8a\x26\xaa\x3b\x99\x11\x82\x89\x2f\x78\x6d\x91\x4b\xcd\x2a\x41\xbc\xa6\x51\x7f\xec\x8b\x1f\x68\xb0\xc6\x4b\xfb\xb2\x57\x7c\x87\xf6\xe3\x32\xb7\x22\xa3\x9d\xa5\x9e\x74\x10\x77\x13\xc1\x45\xfb\xfa\x98\x44\x8a\x55\xd3\xad\xbc\x29\x15\x92\x22\x7c\x8f\xd4\x22\xbc\x95\x0b\xe7\x39\x59\xf7\x6f\xad\xfd\xb6\xa7\x34\x01\x2e\xc8\xf3\xe3\x9b\xe9\xad\xa1\xc9\x37\x83\x35\xf2\x6f\x3b\xdc\x1c\xdc\x3d\x8e\x2f\x70\x30\x0d\xfa\x1b\x7f\x83\x43\xbc\xee\x5f\x28\x28\x84\xdc\x4f\x13\xdf\x71\x70\x8e\xaf\x01\xeb\xcf\x8f\xc9\x0d\x7a\xb8\x25\x1a\x98\x00\x85\xd7\xe4\x46\x39\xd8\x58\x93\xe7\x38\x24\x8e\xb3\xbd\x35\x2e\x2b\x33\x9c\x11\x36\x5b\xf5\xfb\x82\xb7\x21\x3f\x72\x4f\xbe\x60\x6e\xf1\x4b\x48\xb1\x24\xa5\x2f\xe0\xf1\xe4\xa4\x14\xe3\x9f\x88\x11\xad\xb4\xb6\x0a\xfc\x64\x8e\x30\x00\x3e\xe9\x8f\x6b\x80\x6d\xc3\x7b\x56\x75\xc0\x1d\xa7\xc6\x8e\x8b\xd1\x9c\xb7\x1b\xfc\x62\x26\x05\x96\x95\x6b\x97\xf2\xfa\x02\x37\x15\xa5\xac\xfb\x46\x4f\x4b\xe5\x72\x70\xd0\xa2\x6b\x9a\xfe\x48\xbd\x6f\x3c\xf3\x8a\xd0\x80\xf5\xc7\xfe\x58\x66\x4d\xb3\x48\x65\x05\x09\x5f\xa9\x80\x7a\x1d\x47\x11\x4d\xc9\x8b\xba\x3f\x81\x98\xb5\x98\x79\x08\x3a\x9b\x11\x3e\xc9\x8e\xd8\x24\x23\x6a\xe7\x0c\x40\x6b\x50\xa0\x01\x74\x54\x7f\x55\x06\x3a\x38\x03\x9b\x85\x94\x64\xfd\x00\x5a\x8a\x95\x8d\x58\x60\x99\x4a\xc0\xf1\x8e\x95\xfe\xb5\x02\x56\x8b\x10\x90\xb3\x2f\xf9\x1c\x7d\xd0\x6d\xfb\x4a\x97\xa3\x9d\x8c\x4d\x53\x92\xb1\x61\x44\x93\xe0\x9e\x46\x27\x41\x92\x2c\x82\xf0\x26\xf7\x03\xf1\x21\x60\xbe\x27\x9e\xa2\xab\x56\xcc\xb4\x0d\xc3\x23\x64\x87\xe5\x6b\x71\x82\xd2\x94\x6c\xb2\x19\xad\xb8\x32\x8d\xd1\x16\x6d\xb1\x94\xc5\x33\x5b\x04\x9f\x09\xac\x58\x0e\x03\x98\xb1\x4b\x0c\x58\xc7\x20\x65\xb7\x32\x06\x9d\xf1\xb9\x67\x8d\x5e\xc2\x76\x59\x13\x80\xc3\xf4\xf4\xaa\xbc\x75\xb0\x8e\xd9\xe6\xdb\x2c\x9e\x77\x40\xbb\x55\x1c\x94\xa7\xd7\x72\x0c\x7c\xe7\x6a\xc3\x39\x65\x90\xb6\x2e\x2b\xf0\x15\x5b\x2b\x92\x23\x9d\x55\x6e\x9b\x0e\x84\x67\x5b\x31\x75\x6f\xb5\x35\x15\x90\xaa\x56\x47\xc8\x2a\xba\x0d\x30\x59\x15\x2b\x01\x6c\x0d\x24\x28\xaf\x6e\x96\xc0\xd5\x59\x67\x79\x2c\x00\xf8\x5d\x46\x93\x80\xc7\xb7\x14\x8e\x71\x20\xc2\x2f\x23\x5e\x0a\x36\xad\x96\xa4\xc5\xbd\x3a\x90\xae\xa8\x40\x15\x14\x00\xc4\x6b\x85\x3f\xd2\x9f\xa4\xc3\x47\xd3\x26\x15\xf0\xf6\x0f\x79\x8a\xdf\x47\xba\x6c\xd9\xb3\x25\xab\xaa\x62\xec\x12\x55\x9a\xd5\x2d\x78\x50\xa0\x21\xca\x81\xcf\xd4\xdb\x5d\x48\x2d\x63\x23\xdd\x65\xfa\x17\x66\xc3\xc5\x26\x4e\x38\xf2\x7f\xa9\xaf\xeb\xeb\x4a\x83\xd4\x65\x9d\x1d\xfc\x58\xb5\xb8\x23\x3f\xe9\x90\xb4\x70\xaf\x00\xc3\xa0\x64\x5f\xfc\xf3\x28\x85\x5c\x2a\x93\xce\x2c\x8b\x96\xe2\xd3\x1e\xe1\xa5\x24\xd5\x92\x8d\xf5\x54\xb3\xa4\xcc\xde\x33\x99\x88\x29\x89\xad\x0c\xc4\x2a\x89\xd5\xfc\x43\x3e\x83\x06\x57\x3b\x47\x98\x85\x07\x95\xf3\xc1\x6b\xf3\x07\x62\xaa\x9c\x9a\x5f\xa0\x1e\xac\x3c\x94\x54\xe4\xbf\x7e\x35\x4d\xc7\x47\x66\x82\x3b\xa8\xc9\xf7\x4b\xc5\x74\x47\xe0\xa4\x7c\x45\x6c\x6a\xbf\xda\x4d\xf6\xbd\xca\x97\x0a\xbe\xcb\x50\xd0\x15\x60\x15\xd0\x52\x33\xda\x70\xac\x86\x71\x0f\x99\x07\x83\x6c\xe7\x54\x9a\x8c\x2f\x20\xe0\x89\x57\x59\x6f\x10\xf4\xd5\x0a\x37\x8d\xe9\x67\x0f\x1a\x95\xf6\x6c\xb7\x48\xea\x08\x28\x4c\xdd\xb1\x60\x2d\xb1\x0b\x8d\xb0\x7a\x5b\xcf\xe0\xcb\x39\xa7\x27\x84\x99\x84\xb6\x00\xd7\x41\x1d\x7b\x2e\xeb\x61\x33\xbf\x2b\x03\x57\x95\xbf\xfa\xf5\xd4\x4e\x73\xca\x88\x8c\x96\x35\x9b\x45\x57\x41\x37\x59\x92\xc4\xb2\x61\xd5\x41\x91\x5f\x45\xc7\xe5\x2f\x65\x1e\xaa\x5f\x5f\x18\x1c\x7d\x1e\xc0\x8b\xca\xd8\xd6\xd3\x0c\x50\xe8\x8b\xfc\x0a\xbd\xd1\x07\x5b\x3d\xd4\x8d\x82\x95\x11\xb6\x2f\xa3\x64\xce\x41\x39\x86\x5d\xa7\xdf\x84\x8f\x9d\x84\x2e\xb9\x2f\xd0\x6b\x99\x18\xc4\x9f\x68\xf4\x3d\x64\x9a\xa6\xf2\xed\x7d\x96\xfb\x83\x54\x95\xbc\xc8\x78\x90\x80\x57\x5d\xd4\x77\xd6\x9f\x8c\xdb\x5b\xa7\xdf\xcc\x21\x32\x38\x5f\x9e\x6a\x4d\x24\xc5\xd5\x99\xdc\xcc\xa2\x29\xd3\x56\x6f\x7c\x56\xdf\xde\x02\x67\x9d\x4b\xc9\x92\xee\x56\xe9\x73\x2a\x37\x72\xa3\x40\x62\x16\xe7\xc4\x8c\xef\x97\x30\x2a\x66\xf6\x5a\x9c\xda\xff\x05\xa8\x73\x94\x55\xe2\xe7\x90\x93\x23\x1c\x54\x71\x91\x5b\x44\xb9\x3e\xa0\xe2\xdc\x68\x07\xdb\x76\x5a\x87\x1d\xe1\xde\x2e\xbc\xb8\x6e\x36\xab\x5f\x6a\xa6\xf2\xab\x33\x87\x1b\xa1\x32\x3f\xc9\xeb\xa2\x48\xc0\xdc\x5f\x69\x89\x11\x41\x75\xda\xc1\x75\x9b\xa8\xa5\x09\xb7\xd0\xaa\x71\xf6\x86\x2e\xf9\xee\x26\xd5\x66\x60\x89\x4b\xd5\xcc\xd7\x69\x4a\x99\x35\x15\x91\x60\x69\x35\x3f\xa5\xcd\xec\x75\x19\x59\xe1\xf9\x9a\x86\x15\x5b\x7b\xa5\x9b\xd6\x9a\x6f\xb6\x99\x5b\x7b\x6f\x48\xb2\xba\x04\x31\x41\x02\xa5\xc9\xbc\x13\xba\x6e\x3b\xbe\x66\xe1\xbc\x6d\xa2\x7d\x06\x1b\x49\xbd\xdb\xfa\x2b\x74\x54\x7d\x76\x6a\xae\xff\xcb\x43\xce\x30\x48\xe2\xab\x54\xcc\x2e\x20\x5a\xe6\x4d\x6d\x34\x56\x94\x31\x49\xd0\xca\x4d\x03\x6b\xdd\x1f\xf0\xf7\x17\xa3\x98\xa4\x60\xb7\x78\x1e\x2f\x92\x38\xbd\x6a\x0c\xb5\xe1\x21\x53\x5b\xec\xd1\x42\x27\x53\xd4\xb9\xd7\x0d\xb4\x2c\x6a\x1b\x12\x3e\xcd\xda\x94\xb7\x67\x82\x2b\x51\x7c\x4d\x0c\xcc\x49\x6c\x5d\x05\x97\x8c\x87\x49\x15\xa4\xc5\xbe\xdf\xb5\xf9\x10\xeb\x0b\xd2\x8c\x08\xb6\x36\x0c\x7c\xaf\xf9\x60\xcc\x6b\x5c\xa2\x69\xbd\xd8\x54\xae\x58\x69\xc0\x07\x61\x21\x46\xa2\x00\x1c\xe9\xaa\x0e\x03\x2b\x57\xf6\xe0\x40\x4c\x15\x85\xbb\xfa\x74\x8e\x55\x50\x09\xcb\xc7\x3f\xb3\x35\x33\x61\x03\x93\x48\x2e\x45\x30\x99\x20\x6a\x60\xbc\x3e\x02\xc2\xa6\xbe\x4f\x82\xa3\xa6\x3f\xc0\x0d\xc9\x67\xc1\x1c\x27\x86\xec\xcd\x36\xd0\xb1\xa6\x66\x83\x1a\x4a\xd4\xd9\xa8\xc0\xd3\x6f\xb3\x4d\x2e\x43\x60\xe4\x45\x91\x34\xa5\x9b\x31\x04\x57\x18\x80\x27\xfd\xdc\xc1\x0e\x67\x1b\xc1\xdb\x2f\x98\xb7\xc1\x89\x44\xe7\xe7\x29\x5f\x02\x22\xd1\xcd\x30\x58\x64\xb7\x74\x9a\x55\x89\x60\x82\x99\x9a\xf3\x45\x21\x2d\xe6\x91\x9f\xd5\x24\xea\x38\x17\x75\x39\x8c\x46\x2c\xb8\x73\xec\xd3\xd9\xa2\xca\x04\x08\x96\xff\x87\x73\x08\x7c\x8d\x1e\x3c\x56\xae\x08\x71\x84\xb7\xd6\x47\x79\x98\x57\x2a\x2e\x62\xfe\xab\x0d\x01\x96\x5e\x47\xb9\x71\x90\x8e\xd1\xcb\x1d\x00\xd6\x23\x08\x6e\x6f\x29\xfb\x5e\x35\xdb\x8b\x07\xa4\xb9\x31\x68\xa7\x16\x43\xa5\x88\xf2\x46\x42\xda\xb1\xb1\xea\xcc\x40\x09\x48\x0c\xa9\xdb\x4a\x3d\xa5\x83\x0b\x7d\xc8\x79\x5c\x56\xa1\x0e\x5f\xc4\x31\x87\x2f\x6c\xe1\x02\xc8\xbd\xcc\x29\xbd\xd9\x43\x5b\x5a\x36\x33\x4d\x6e\x4a\x13\x47\x56\x71\x5c\x5f\xd7\x28\x33\x6e\x44\x8d\xf6\x55\x16\x0e\xc3\x15\x48\xa6\x2c\xb5\x33\xf1\xfa\xa1\x94\xac\x2f\xb2\xe8\x5e\x9d\xce\x90\x66\xf3\x5b\xce\x8f\x13\xa7\x53\x47\x80\xe0\xe4\x95\x3f\x7e\x49\x4f\x07\x62\x57\xac\x52\xf3\xdc\x0e\x17\x00\xe4\xd5\x41\x36\x32\x14\x18\x43\x72\xcb\xf2\x6a\x02\x0c\x43\xf0\x96\x5f\x29\x7f\xe1\xf1\xba\x2e\x07\x36\x2b\x8d\xaa\x95\xa6\xb8\x73\xcb\x72\x42\xe9\x6a\xa9\x13\xaa\x75\x60\xb0\xe3\x17\x58\x41\x32\x58\xdd\x61\xce\x39\xf5\x38\x9a\x30\x81\x79\xd5\xba\x09\x33\x2a\x86\x20\x09\x07\xd3\xb8\xa2\x18\x13\xc2\xa0\x16\xe9\x65\x5a\x2e\x52\x91\x76\xf5\xf9\xe5\x8c\xc4\xaa\x2b\xc1\x11\xe5\xea\x57\x9c\x7d\x45\xa5\x82\xb0\xb3\x16\xcd\xca\xd3\xaa\x94\x00\x7c\x47\xad\x83\x50\x77\xec\x22\x5b\x5b\x01\x36\xaa\x79\x01\x64\x05\x01\x83\x26\x80\x3a\x66\xce\xf5\x3c\x54\x0a\x2c\xd1\x7b\xb9\xa8\x7e\xb0\x5c\x4f\x57\xd2\xcb\xb0\x0a\xf6\x78\x81\xba\x97\xf3\xc9\x69\x10\xc5\x41\x12\xdf\x50\x19\x62\xa1\x74\xdc\x7f\x92\xad\xd6\x1b\x4e\xa5\x40\x7d\xba\x23\xdd\xe3\xe2\xec\xa2\x8c\xcb\xa5\xe8\x3d\x25\x0f\x30\x3b\xd7\x01\xcb\xe9\xeb\x94\x7b\xcc\xa6\x01\x08\x4b\x8d\xb4\xe6\x57\xa9\xd2\xba\xd5\x7b\x62\x9c\x9f\x05\x67\x5e\x0a\x24\x08\x15\x85\x7e\x95\x21\x1a\x64\x00\x9a\x4a\x97\x49\x5a\x51\x62\x79\x67\xa3\xfd\xc5\xa0\x24\xd1\x29\xac\xae\x17\x81\xa4\x74\x96\xa1\x67\x75\x9c\x74\xf6\x1c\x56\x4d\x75\x59\x0c\x00\xb8\x05\x73\xd1\x80\xf6\xfc\xab\xa0\xa9\x09\xd0\x02\xae\x3e\x03\x2e\x58\x25\x9c\x93\x92\xcb\xa8\xe1\x7f\x58\x05\x6b\x9f\xda\x7a\x51\x18\x70\x63\xa5\xc1\xbb\xe5\x8a\x5c\x99\xc6\xd6\xb7\x6d\x15\x2b\x0a\x36\xed\xcf\xc1\x07\x77\x58\xad\x75\x88\x2f\x75\xd5\xbe\x6a\x3d\xb1\xac\xe7\x47\xaa\xab\x8a\xe7\xe8\x98\x7d\xa6\xaa\x78\x67\x55\xf1\x1c\xcb\x98\xa8\x7e\x45\x03\xfd\xc4\xda\x16\xd5\x10\xbc\x17\x49\x1f\x14\x2b\xc4\x2a\x91\x9c\xde\x32\xcb\x14\xc0\xe2\x8e\x4b\x3f\x34\xfc\xa8\x9a\x7a\x91\xa1\xc6\xc8\x8a\xf4\xd9\x46\xca\x6e\xe6\x9d\x3f\x21\x64\xe3\xc7\x4a\xc7\xfa\x4c\x54\xa4\x7e\xf6\x19\xd0\xa1\x29\xd3\xee\x59\x4a\xe3\xab\x8a\xd4\x0c\x1c\x57\xe1\x94\x40\x1f\x18\xea\xa4\xae\xdb\x93\x52\xa8\x69\x0a\x6c\xb0\x0f\xee\x03\x95\xac\xd3\x75\x3d\x10\xc7\xa6\x98\x61\x96\x7a\x14\xa4\x84\x32\x8c\x13\x5c\xb3\xff\xb4\x8e\xa4\x5b\x33\x84\xa5\x09\x68\x9b\x44\x4a\x54\x49\x5e\x81\xb2\x11\xc4\x32\xd9\x2d\x12\xb4\x65\xf1\xe0\x0d\x46\x2a\xf4\x9f\x11\x66\x98\x0e\x90\x0d\x92\x5f\xa4\x55\x45\xe9\x55\x08\xb8\x61\xc9\x06\x5f\x78\xd5\xb3\x90\x02\x8f\x63\xa5\xf8\xb6\x95\x62\x36\x05\xf1\x82\x79\xa9\xac\x4b\x4d\x27\x51\xc4\xe7\x58\x8c\x8e\x9f\x62\x46\x43\x2e\x3d\x08\x89\x69\x16\x5b\x2b\x25\x96\x53\x4a\x4f\xa7\x78\x28\x7f\xe0\xeb\x20\x97\x4b\x31\xf7\x7b\x63\x6b\x8a\xbd\xaf\xf0\xaf\x5c\x65\x07\x83\xa4\xc1\x58\xb9\xc2\x01\xcf\x6b\x5e\x0a\x02\x9e\x92\xd3\x87\x7a\xea\xa7\xab\x0d\x9a\x82\xd0\x5b\x7c\x9b\x6d\xe6\x3e\xe8\xc2\x86\x1c\x38\x17\xf1\x83\x70\x98\x60\x52\x26\xb4\x23\xb2\x8d\xe0\xa2\xca\xe6\x16\x85\xd7\x6a\xb9\x4c\xaa\x27\x66\xad\x9c\x2b\x23\xb5\x01\x0d\x94\xec\x8b\x59\x6a\xd7\x1a\x5e\x0a\x16\x2a\x2a\x15\xf8\x87\x1e\x89\x4b\x81\x7d\x2d\x3f\x99\x49\xf3\x58\x81\x9c\x4a\x21\x12\x5b\x0e\xf9\x94\x94\xcb\x0a\x80\x24\x36\x18\xd3\xa9\xdc\x43\xb8\x6a\x86\x35\x18\x4f\x72\x7d\x4d\x20\x0d\xb1\x70\x22\xfe\xf5\xc7\xf3\x0e\x5c\x1c\x06\x8b\xdc\xdb\x0c\x17\x19\xe7\xd9\x6a\x90\xa8\x1f\xe8\x78\xdf\xb8\x03\x31\x5f\xfb\xc9\x90\x67\x6b\xb4\xb7\x3f\x60\xf0\x63\xbb\x55\x39\x98\x2e\xae\xd3\xe1\x28\x23\xf0\x8f\xe5\x68\x54\x31\x0d\xeb\xc5\xab\x3b\x25\xb3\x9c\xa6\x90\x33\x06\xaa\xf0\x6b\x79\x5a\xd8\x90\x4c\x4a\xf9\x13\xa2\xfc\x41\xc1\x79\x9b\xa6\x11\x5e\x92\xcc\x5c\x23\x0b\xec\x1d\x10\xb2\x31\x6c\x4d\xc9\x18\x49\xa5\x96\x47\xa0\xb0\xa2\xbc\x42\x40\x18\x6e\x4b\x88\xa8\xd5\x14\x33\xc9\x42\x4a\x17\x98\x09\x42\x13\x34\x18\x28\xbf\x43\x95\x4f\xe1\x91\x7a\x3d\x4d\xa3\xaf\x82\x15\x4a\xef\xbc\x61\x47\x9a\xc7\x68\xdd\xa8\x11\xc4\xa7\x0c\x09\x29\xc1\x0d\xec\x72\xd3\x8d\xcd\x07\xee\x98\xc9\xfe\x6b\xe6\xbd\x83\xe3\x55\x88\x9a\x13\x22\x45\x08\x98\x82\xa2\x88\x25\x37\x50\x14\xa2\x56\x75\x8f\x1c\x92\x04\x27\x03\x32\xc6\x4b\xe2\xc0\x57\x67\x0b\x6d\x1b\x8f\xc1\x47\x5a\x43\x3d\xb4\xa7\x18\x9b\x3c\x64\x94\xa6\xd2\x21\x0e\x21\xf2\x6d\x98\x64\x57\x71\x18\x24\xbf\xbc\x7c\xff\xba\x28\x9a\x69\x26\x5f\x44\x6f\xe3\x90\xca\x6c\xbd\x9a\x03\x28\x79\x74\x38\x33\xee\xbc\xce\xec\x98\x57\xa5\xca\xde\x27\xc9\x7e\xed\x5c\xdd\x2a\xb4\xd5\xe7\xa2\x5f\x75\x4c\x0d\xc4\x2c\x05\x19\xdb\x6a\xa0\xd8\xa8\xe3\xf1\xd6\x52\x7c\x55\x26\x6e\x2d\x9d\xdd\x6b\xf4\x0b\xa7\xb5\x6c\xbf\x36\xb2\x89\x14\x43\x76\x05\x03\xc8\xa1\xd2\xef\x98\xe2\xf8\xb8\x1c\xad\xef\x18\xe6\xd9\xda\xe7\x62\x6d\x7d\x97\x62\xb9\xd4\x7c\xae\xd6\xdc\x77\xa9\x58\x6e\x8d\xc3\x46\x6c\x07\x7a\x8d\x3a\xc9\xf1\x08\xf4\x08\x52\x3d\xc6\x08\x14\x7e\xda\x08\x9b\xeb\x7a\x11\xd9\x34\x66\x91\x09\x27\x38\x9e\x46\x33\x05\x84\x90\x74\x1a\x19\x3a\xe3\x8f\xe6\xfe\x66\x17\xaa\xb7\x26\xc8\x9c\xeb\xf6\xc0\xeb\x5f\x5c\x14\xbd\x18\x3a\x0c\x76\x60\x92\x4d\xd5\x3e\x56\xea\x93\xbe\xd2\x94\xd9\x68\xde\x89\xc9\x7a\xaa\xb8\x66\x80\xa1\x99\x64\x78\xe9\xf3\xb4\x44\x09\x02\xec\xad\x05\xf6\x34\xee\xd6\x0a\x77\x5b\xff\x25\xdb\x96\xa1\xa3\x63\x91\x67\x20\x29\x16\x64\xbf\x25\xb1\xa6\x6c\x56\xea\x3d\xf1\x56\xfd\x5b\xb4\xb7\x0f\x8e\x01\x60\x97\xa9\x91\x72\x2c\xbd\x01\x5c\x59\xfa\xcd\x3d\xef\xfe\xe8\x6a\xb6\x98\xa3\xc9\xa2\xdf\x47\x13\xa9\xbb\xb8\x98\x5e\xcd\x16\x83\xf1\xdc\x1f\xe1\x3b\x22\xbe\xe2\x53\x75\x14\xf0\x0c\x86\x97\x53\x85\x1b\x5f\x22\x0b\xe9\xa6\x58\xbd\xf6\x40\x5a\xa8\x32\x43\x79\x8d\xcf\x4a\x66\x81\x87\x8f\x1a\x07\x77\xdb\x4e\x5c\xa7\x0a\xde\xe9\x70\x91\x5d\x6d\x80\x40\x77\xca\xd9\x91\xc7\xe9\x55\x42\x4f\x20\x6e\xa5\x24\xe1\xef\xa5\x5a\x3d\x94\x60\x3c\x5b\x93\x15\x3e\x1d\x32\x09\x99\xdc\x9a\x75\x75\xba\x35\xa4\x1d\x49\xc8\xb0\x3f\xeb\x4d\x9b\x64\x08\x61\xd9\xdf\xcc\xee\x4e\x26\xdb\x03\xed\x8d\xa7\x19\xd4\x00\x9e\x32\xcc\x00\x42\xaa\xfa\x9d\xe9\xc1\x84\x0b\x81\xdf\x18\x7e\xc9\x14\x12\x47\x0a\xde\x08\x20\x8d\x74\xe1\x91\x65\x95\x74\xd6\xa6\x2a\xa1\x15\x17\x71\x42\x46\x93\xa4\xbc\xad\x4f\xfa\xe4\x00\xfc\xc8\x12\x3a\x4b\xe6\x78\x23\xfe\x81\x7a\xc9\x51\x3e\xf5\x62\x32\xc2\x19\x19\xe3\x80\xc8\xc1\x40\x3e\x3f\xda\x4c\x33\xe2\xc5\x84\x0f\x72\xd4\x1f\xfb\x1e\x04\x3f\x51\x53\xe2\xa0\x28\x38\x21\x1b\xd7\x15\x30\x0e\xe6\xd2\x66\x3b\x26\x5e\x46\x36\x83\x1c\x0d\xc6\x98\x1f\x8b\xaf\x5e\x60\x16\xac\x54\x11\x02\x0e\x42\x10\x49\xa8\x7c\x7f\x8e\x73\x80\xc2\x08\xf1\x52\xcb\x9b\xc9\x54\x36\xc2\xd7\x85\x01\x12\x43\x58\x4f\x14\x06\x1b\x4f\x8c\xf4\x5e\x48\x67\xc9\x60\x7f\x4e\x04\xd0\xc1\xc1\x5c\xbe\x8f\xe7\x16\xc0\x09\x12\x35\xee\xf7\xbd\x64\x40\x0e\xd0\xdc\x74\x13\x14\xf1\xf4\x5c\x65\xae\x1b\x13\xe8\x80\x72\x9c\x54\x76\x57\x77\x14\xaa\xe8\x3f\x9a\xbb\x6e\x4f\xfc\x78\xdc\xac\xc3\x03\x34\x8b\xae\x99\xbe\x2b\x55\x22\x45\x2a\xc5\xf6\xee\xa7\x18\x18\x01\x3f\xc6\x34\x8d\xfc\x0c\x6b\x26\xc0\x0f\x70\xb9\x77\xfa\x39\xd6\x7b\xaa\xbf\xb1\x78\xd1\xd7\x95\x23\xc1\x4b\xa9\x4d\xa8\x30\x53\x97\xd4\x52\xa3\x09\xeb\x31\x02\x3e\x8f\xaa\xc1\x0f\xe1\x14\x38\xa9\xe8\x2a\xc5\x96\x65\xc3\x24\x96\x76\xe1\x0c\x3c\xdb\xd4\xcb\xc6\x83\x81\x89\x14\x60\x5b\xe1\x97\xd2\x0b\x45\x59\x40\x6d\xa1\x6e\xed\x83\x69\x83\x87\x54\xce\x4f\xa5\x12\x51\x5d\xe9\xc4\x3e\x53\xf2\x7e\x1f\x35\x4e\x87\x7c\x4e\x1e\x6c\x6b\x73\x26\x8d\x03\x77\x1c\x58\x64\x65\xcf\xdb\x8f\x1b\xa8\xa1\xf2\x62\x9f\xfb\xec\x56\xbc\x61\x5e\xed\x50\xc8\xed\xd8\xb6\x7f\x40\x23\xa0\x29\x96\xd8\x58\x4a\x32\x4e\xae\x95\x18\x81\xd4\xbf\x5c\xd0\x4f\x4a\x56\xd0\xf8\x54\x8a\x3f\xaa\x8e\x62\xed\x3d\x10\xa4\x25\x66\x4b\xad\x5b\x76\xda\x0d\x51\xb7\x4d\xd2\x9d\x7a\x55\x33\xe6\x07\x56\x6a\x13\x85\xae\x7b\x3b\x1d\x54\x45\x9a\xbb\xb6\x4a\xc9\x80\x18\x71\x4f\x43\x80\x54\x01\x82\x2c\x09\x2d\x42\xbe\xe2\xcd\xd6\xc1\x15\xfd\xe5\x1d\x48\xc6\x8a\xa2\x2c\xa0\x7f\x28\x25\xe5\xa2\xa8\x81\x92\xc2\x16\x01\xca\xb2\xba\xff\x67\x7b\x21\xf6\xd2\x3f\xd9\x89\x8b\x6c\x5d\xed\xc3\xaf\xff\x6c\x1f\x2a\x02\xc5\x9f\x58\x69\x9e\x35\x92\x17\xaf\xf5\xab\x13\xed\x4c\x4d\xa5\xdb\xbe\x61\x4c\xe2\x8c\xcd\xe5\x95\x84\xeb\x7a\xbc\x4f\x3e\x32\xcf\xfe\x54\xfa\x45\xb4\x90\xf7\x73\xfd\xd2\xa6\x67\xce\x7f\x3f\xc1\xcd\x3e\x1c\x98\xc0\xb4\x49\x9f\xb1\x48\xb6\x05\x6a\x14\xa7\x54\xf0\x57\xa5\x73\x17\x29\x60\x70\x92\x2c\x0c\xfe\x2f\xea\xfe\x74\xc9\x6d\xe4\xfa\x1b\x84\xbf\xf3\x2a\x8a\x08\x3d\x78\x91\x66\x92\x22\x25\xcb\x76\xa3\x2a\x8b\xa1\x56\x4b\xad\x76\xef\x2d\xb9\x17\xd3\xfc\xf7\x0b\x91\xc9\x62\xb6\x50\x48\x1a\x48\x96\x54\x2a\x32\x62\xbe\xcf\x4d\xcc\xb5\xcc\xa5\xcc\x95\x4c\xe4\x39\xb9\x02\x60\x49\x76\x3c\x5f\xa6\x23\x5a\x05\xe6\xbe\xe7\xc9\xb3\xfc\x4e\x69\x14\x27\x0a\xf6\x8b\x05\x6f\x31\xe1\x9a\x22\x2b\x46\xec\x79\xb0\xa7\x48\x5e\x8c\x5b\x4c\x1a\x1c\x55\x9a\xe8\x21\xd6\x59\x0e\x87\x04\x07\x1d\x6a\x74\xfe\xa2\xc2\x35\x8e\xcc\xd6\x53\x74\x74\x31\x62\x0d\xf4\x24\x0b\x0a\x9a\x4f\x73\xbd\x78\x0c\x58\x21\x6b\x90\x34\x6b\xa5\x78\x09\x29\x90\xe8\x1e\xb1\x3d\x35\x27\xe3\x88\xed\xbd\x57\x36\x18\xa2\x22\x18\xa2\x22\xf4\x95\xfb\xef\x90\xd1\x07\x1c\x76\xe6\x31\x71\xd4\xc0\x0a\x34\x81\xbe\x00\xbc\x72\xb9\x83\x01\x33\x9d\xaf\x49\x35\x66\xba\x15\x54\x8c\x99\x6e\xaf\xd3\xb7\x71\x43\x5a\x1f\x0e\xc3\xda\xdb\xb3\x39\xd6\xa4\xf8\xc0\xeb\x93\x43\x52\x8d\x98\x21\x6a\xc4\x08\x6c\xd4\x77\x47\x9c\xb2\xff\x64\x5c\xc3\xc7\x41\x35\x2e\x3c\x19\x27\xc6\x05\x14\x19\x58\xb5\x47\x4b\xcd\x32\x86\x60\xcd\x38\xb5\x4e\xe3\xea\x88\xd0\x5f\x90\xa9\xf5\x0c\xff\xe8\xf7\x2a\x15\x24\x92\xc0\xfe\x56\x87\x36\x84\xe4\xce\x45\x14\x99\xf2\xc8\x95\xc0\xd4\x11\x54\xd1\x62\x6e\xae\xea\x1c\xef\xd1\x00\xf2\xba\x98\xe3\xcc\xb3\xc6\xd0\xb1\xe6\xaf\x59\x10\xb6\x2d\x8d\xae\xbe\xd2\x6b\xb1\xdd\x5c\x8a\xe6\x17\xc0\xc7\xab\xcc\x72\x6a\xd8\x8a\x67\x55\xc7\x14\x99\xee\x41\x11\x92\x96\xce\xe3\x16\x58\xfb\x5c\xc6\x10\x02\xf3\x6c\x1f\x07\xd0\x92\x25\xc8\x8f\x4a\x48\xbe\x37\xa8\x30\x6c\xaa\x83\x8b\x8d\xe2\x75\x42\xe8\xd0\xe1\x10\x17\x99\x4d\xcb\x58\x39\xdf\x8f\x67\xf9\x9e\x06\x21\x81\x0f\xec\x55\x0b\x7a\xb7\xc8\xea\x39\x1f\xcf\x72\x4e\x67\x8c\xe9\xdb\x76\x52\xf2\x1b\x5e\x0e\x99\xf1\xf9\xb8\x61\x7b\x9e\x01\xdd\x49\xe8\x96\x35\x9c\xae\xd9\x2a\xdb\xd3\x4d\x5c\x7c\x84\xc1\xac\xc9\x92\xf5\x44\xaa\x2d\xaf\x21\xed\xd6\xa5\x1d\xb2\x92\x10\x1a\xa0\x32\x7d\x19\x11\x3d\xd3\x01\xe0\xcf\x9a\x81\x26\xa7\xef\xc1\x9a\x45\x8f\xa9\x3f\x01\xae\xac\xd9\x55\xdd\x99\xd2\x07\x52\x45\x46\xd1\xf9\x13\xad\x62\xfb\xb6\xc5\x37\xad\x70\x04\xfd\xc8\xba\x0e\x0c\x96\xf4\xd7\x75\x17\x8c\xc8\xbb\x72\x73\x58\xf3\xef\x7f\xe2\x25\x13\x14\x40\x70\x27\x72\xaf\x1a\xb1\xe6\xac\x22\x54\x06\xee\x0c\x3b\xa6\x2f\x6b\x89\x8c\x98\x7a\xd4\x7b\x36\x92\x8b\xa9\x9d\xef\xaf\xeb\xac\xb2\x3e\xcc\x50\x64\x37\x9e\x51\xcb\xb2\x14\xec\x57\xbd\x0e\x6b\xb0\x5f\x32\x8e\xcd\x2a\xeb\xd8\x4c\x6c\x32\x71\x29\xbb\xe5\xb8\x14\x14\x91\xe5\x49\x8c\xac\xa1\xab\x98\xd1\x19\x19\xa8\x8b\x29\xf8\x00\x9e\x86\x1e\x39\x20\x8b\x20\x16\x4a\xb7\x61\x7f\xd7\x7d\x2b\x60\x17\xd6\x7a\x03\x7c\x05\xb8\x83\x93\xd5\x76\x94\x35\x30\x36\x97\xd3\xc3\xa1\xb1\x03\x73\x39\x9d\xcf\xf2\x29\x41\x9e\xe5\x3e\x06\xd1\x2f\xd9\xde\x68\xb3\x43\x74\x69\x84\x26\xc2\xa6\x2a\x07\xb6\x7a\x86\x71\xa1\x64\xfd\xc7\x40\x84\x50\x8d\xcd\xf5\x66\x71\x41\xc2\xfe\x49\x56\x70\xcf\x69\x55\xb1\xc0\xa1\xa6\x6a\x3c\x23\xe6\xa0\xbf\x60\xd5\x91\x0a\xea\xe0\x6e\xee\xde\xf0\x2b\x51\xe5\x12\x48\x7e\xf1\x91\x62\x80\x00\xb9\xac\x8e\x54\x52\x11\xb6\xf3\xd7\xae\xa8\x03\x15\xf6\x8d\x9c\x80\x50\xd7\x13\x73\x7b\x9b\x12\x2b\xfd\x7a\x02\xa4\x07\x64\x72\x7a\xeb\xef\x4e\x89\xc3\x8c\xbb\x2e\xd4\x04\x5d\x8f\xc9\xdd\xa5\xae\xa7\x9a\xa3\x8e\x40\xce\xcd\x0b\xfd\x32\xd4\xf0\xfd\x7b\x4c\x2f\x8c\xcd\xfd\x8e\x4b\xdf\x0a\x63\x0a\x1c\x5c\xda\xb0\x29\x9c\x77\xf1\x41\x36\x9c\xd2\x15\x5b\x21\x0e\x70\x7c\x38\xea\x39\x5d\xe1\xaa\xd9\xb0\xac\x7f\xc3\xcf\xdb\x3c\xd9\x18\xa9\xd8\x0c\x4d\x85\x40\x9f\xcd\x04\x26\x84\x96\x0c\x50\xb4\xcf\x1f\xfe\xab\xb1\x3e\xca\x22\x36\x68\x39\x9e\x11\x92\xa6\xe5\x78\xec\xd6\xf1\x2a\x32\x09\x43\xf6\xac\xb5\x2b\x43\x2e\x2d\x9a\x5b\x8b\xc5\x16\xc1\x18\xb3\x35\x9a\xff\xb0\xf2\x70\x58\x4f\x94\xbc\x60\x7b\xc7\x2c\x9a\x0d\xd9\x1a\x8f\x52\x7a\x8d\x57\x52\x45\x77\x73\x67\x15\x53\xd2\x35\x98\xde\xcc\x72\xe7\xaa\x63\x4f\xb1\x38\x42\x0c\xab\xe1\x86\x5d\x5f\xc8\xb9\x1c\x5f\x8f\x66\xfc\xb3\xfc\x7a\x2c\xcf\xb3\xe1\xea\x70\xd8\x5c\xde\x00\x50\x18\x5b\xd3\x0d\xbb\x21\xc7\xe3\xea\x70\xc8\x56\x4c\x2c\x84\x7b\xe0\x2d\xc9\x60\x85\xa6\x64\x7b\x48\x79\x07\x60\x74\x7b\xaa\x64\xbe\x02\xeb\x2f\xdd\xae\x7c\x85\xed\x3b\xea\xc4\x68\x46\xe9\x92\xae\x0c\xe6\xac\xcc\xcb\x4e\x62\x4b\x77\x1f\xf3\xfb\xe7\x25\xdc\x0a\x0e\x74\x4d\x20\xaf\x7f\x36\x64\x7b\x2c\xd0\x16\xf7\xcf\x3a\x83\xeb\x1d\x1c\x2d\x96\xf3\xfd\x44\xc9\x7c\x8f\xad\x28\xe7\xf6\xfe\xc8\xdd\xd5\x87\xab\x1e\xb5\x9f\x24\x2d\x00\x18\x8f\x4e\xa9\x08\x2c\x73\xb1\x32\x00\x1e\xba\x9c\x5a\xb5\x39\x5f\x31\x5d\xb1\xb8\x42\x1c\x23\x18\x9e\xb9\xa9\x27\x77\x37\x70\x58\xe1\xe0\x9f\x75\xb6\xb2\xb5\xa6\xe9\x0a\xf6\x51\x01\xd7\xb3\x58\x34\x7a\xf4\x2d\x99\xb8\x47\x4d\x65\x5a\x53\x49\x57\xb0\x7f\x06\x0d\xcb\xa0\x15\x1b\x6c\x05\x99\xa3\xad\x15\x58\x62\x8d\x67\x74\xcf\xca\xb9\xfe\xcc\x31\x78\x3c\x83\x4b\x78\x4b\xd7\x74\x87\xcb\xf2\x1a\xff\xdc\xb4\x4f\x1a\xbc\x41\x61\xa1\xc9\xc8\x85\x44\x0f\xa1\x3a\x1c\xfe\xb3\x36\xe6\xb0\xc3\x19\xe0\xef\xe9\x54\x17\x4c\x80\xb1\x00\xdf\xa8\x0b\xa6\x2f\xae\x1d\x53\xf4\x9a\xd5\x04\x07\x17\x0c\x62\x6f\x0d\x54\xc1\xb5\x35\xb9\xaf\xc6\xd7\x98\xe3\x1a\x17\xed\xb8\xa2\x6f\xd8\x15\x63\xe5\xe0\x86\xed\x46\xd9\x9b\xf9\x34\x9f\x11\xba\x66\x6f\x3a\x43\x4a\xb7\xec\x6a\x8e\x99\x73\x93\x19\x99\xc3\xe5\xe1\x70\x33\x64\xfb\x34\xbd\x19\xb2\xe6\x70\xb8\x19\x8d\xe8\x9a\x4d\x19\xbb\x71\x45\xdc\xb4\x50\xc1\xfc\xfa\x30\xfd\xbf\x19\x67\x25\x5e\x29\xb6\xd7\xc5\x05\x13\x9a\x34\x6a\xb7\x62\x80\x4c\x4f\xbf\x12\x6e\xe8\x3a\x98\x6c\x49\x06\x5b\xf6\x3b\xd2\x84\xb7\x4c\x5c\xfc\xae\x07\x6a\x3e\x9e\xe5\xe2\x92\xfd\x6e\xca\x06\xac\x4c\x7f\x9f\xd6\xf4\x86\x49\x6e\x4e\x1b\x7a\x43\x75\xf7\xe9\x2d\xad\xc6\xa1\x07\x4f\x5e\xb5\x54\x92\xda\x1c\x82\xb6\x4a\x88\x8f\xf1\x48\xb9\x7f\xd4\xe4\xee\x0f\xd0\x11\x06\x95\x90\x8e\x8e\x70\xa0\x13\xd2\x62\x7c\xfc\xf9\x33\xb0\xf2\xf9\xa3\xbe\xcf\x6a\xd8\xd9\xd5\xa3\x54\xa3\x95\xf8\x59\x96\xbc\xa9\x13\x42\x06\xff\x49\x21\xc7\x50\x95\xe5\x8f\xda\x6a\xda\xff\x11\xab\xd2\x3c\x7c\x32\x75\xcb\xf7\xf2\x31\xda\x21\xb7\x19\x28\x35\x01\x26\x8f\x85\xa4\xa1\xf5\xe1\x10\x58\x15\xab\xfe\xe1\x75\xac\x99\xf6\xe8\xba\x88\x41\x1b\x2f\xe5\xbd\xfb\x2f\x21\xd4\x8f\xf5\x42\x75\x75\x12\xed\x50\x87\x7d\xac\x89\x7b\xeb\x9d\x92\x08\x09\x66\xf5\x61\xac\x7c\xe7\xe1\xcc\xf5\x5f\x5c\x3e\x0a\xfa\xef\x59\x4b\x02\x1e\x20\xb3\x40\xa3\xa0\x6e\x79\x00\x0d\x41\xc4\xee\x8e\xb4\xd2\xff\x08\xa7\x58\xde\x18\xd5\x95\x6f\xf4\xc2\x96\x41\x70\xa0\x5d\x5b\xb0\x29\xe0\xbf\xc9\x48\xa9\x36\x72\xde\xdc\xa7\x82\x5c\x04\x2a\xc8\x83\x7a\xd1\x2c\x99\x34\xb3\xab\x2b\x1b\xc9\xa0\xe6\x91\xa0\x15\x26\x08\xd4\x72\x2c\x47\xd5\xe9\xab\x57\xfa\x7c\xa3\x6d\x2d\xbf\x5c\xf5\xa9\xca\x51\xaf\x97\x9c\xd7\x34\x50\x43\xce\x2b\x1a\xaa\x46\xe6\xaa\x4f\x51\x2e\xa0\xc8\xaa\x2a\xd2\xfc\x71\x1a\x3f\xf7\xb2\xc7\xf8\xfd\xcf\x6f\x48\x14\x78\x45\x0e\xfc\x90\xf0\x48\x36\x54\x9f\x12\xef\x57\xac\x4e\x53\x47\x30\x3c\xa1\xf7\x2b\x38\x3d\x8c\x1e\x49\xe3\xc7\xee\x52\x70\xf7\x06\xf2\x7f\x3e\xb7\x4f\x2e\x87\x3f\x78\x36\x35\xe4\x1d\x70\xa6\x44\x87\x33\x85\x16\x87\xa2\xcd\x99\x2a\x46\x23\xe2\x02\xbd\x4f\x6f\xfd\x06\x1a\xb1\x9e\x08\x7f\x4b\xcd\xe5\x28\x83\x7e\xad\xb8\x28\x33\x11\x1e\xee\x0f\x2b\x72\x38\xcc\xc8\x9f\x54\x2e\x47\xe1\x43\xac\xa8\x22\xc4\x3c\xb9\xa2\x35\x83\x21\x1d\xa8\x7e\x8c\x3b\xc5\x40\x2f\x42\x79\x0d\xd0\x34\x35\x2e\xe5\x8f\xa1\xff\xe8\xb6\xe8\xbf\xe5\xe3\xac\xf6\x8a\x89\xa0\xd8\xd8\x55\x4e\xac\xa4\x1a\x1b\x50\x84\xa4\x0b\x22\x07\x72\x1c\x26\x3e\x81\xd1\xa2\xea\xdb\x3b\xd0\x27\x81\xc0\x5f\xc7\x86\x37\x51\xb8\xa0\xdf\xc6\xc0\xe0\x3a\xae\xc0\x6d\x89\x7f\x6e\x00\xcb\xf7\xc6\x78\xe3\x78\x80\x57\x62\x01\xa4\x76\x95\xa6\x33\xc6\x4a\x78\x82\x01\xc1\xe2\x5e\xcb\x65\x00\x57\x48\x9c\x59\x75\xa9\x1f\xd6\x77\x37\xd6\x99\x19\xb5\x18\xea\x3d\xbe\xcc\xc6\x36\x6e\x50\xea\x07\x31\x96\x47\xdd\x62\x9d\xe2\x27\x58\xcb\x64\x99\x1c\xbf\x0a\x5f\xe3\xe6\xdc\x8b\xd6\x2b\x19\xaf\xbc\x16\x6a\xc0\xc1\xde\x57\xa7\x15\xbd\xbc\x4a\x17\x0c\xb7\x7e\x4b\xab\x36\x9f\xf1\x85\x26\xb1\xfd\x4b\x3a\xb2\x84\xad\x5b\x69\x3d\xae\x66\xa4\x5c\xa7\x0b\xad\x17\xd5\x12\xb6\x7b\x58\x56\x60\x30\x1b\xac\x22\xe3\xcb\x05\x9e\xcd\xf8\xfe\x31\xf0\x8d\x06\x56\x15\x25\x31\x3e\xc2\xf8\xe7\x83\xc2\x8d\x0a\xd7\xd4\x3e\x5b\xa3\xb5\x58\xa5\x69\xed\x9c\xab\x05\xa0\xa4\x7b\xd0\x00\xfb\x26\x34\xa5\xe9\x09\x34\xe2\xbd\x6e\x04\x53\x5e\xa3\x4c\x97\x1d\xc0\x47\x2a\xeb\xda\xed\xb5\x24\xcf\x55\x9a\x7e\xf0\xdc\x9a\xa0\x21\x1b\xd8\x86\xce\x44\xf0\x22\x70\x07\x07\xb9\x5e\xda\x5c\xf5\xa8\x22\x97\x3e\x72\x0e\x19\xf3\xcc\x87\x8c\x58\x45\x6d\xb9\x23\x56\xf9\x42\xd5\x45\xe4\x63\xae\x0e\xda\x15\xd7\x1e\x25\xb4\x0c\x9b\x6d\x05\xaf\xe7\x7a\x54\xd1\x19\x19\xc8\xb9\xa9\xd1\xa4\xb4\x46\xfb\xc6\x93\x0f\xf5\xf9\x19\x82\x7a\x7e\x17\xb5\x29\x87\x0a\x8f\xae\xbb\x41\x53\x8c\x59\xd7\x16\x17\x83\x02\x0e\x4d\xd1\x5f\xdb\x14\x0c\xab\x82\xfa\x5e\x4b\x56\x60\x6d\x61\x0d\xe6\xea\x0d\x4b\xa4\xfb\x56\x7f\x9a\x34\xdd\x9f\xaa\xa4\x31\x95\x4c\x56\xb2\x5a\x15\x2a\x03\xb3\x7c\x63\x76\xa5\x77\x37\xd4\xe7\x63\xc3\xcc\x7b\x93\x95\xf4\xf5\x1e\x5f\x57\xa2\xab\x22\x09\xaa\xea\x17\x78\x1a\x7c\x37\x37\x7f\x47\xac\xca\x95\x0d\x1c\x95\xb0\xd4\x61\x2d\xf6\x5a\x24\x87\xba\xfc\x2b\xa7\x07\xd7\xbf\x42\x1d\xdc\xbc\xa5\x7e\xc4\x7d\xfa\x9b\xfa\x72\x03\xdd\x4d\xe1\x75\x37\xcd\xe7\x48\xd8\x56\x55\x27\x5a\x45\x87\x99\xba\xa8\xdc\xda\x38\x1c\xd4\x25\xab\xec\xcc\x3b\xec\xf4\x96\x4a\xa9\xa3\x49\x51\x7b\xcc\xae\x10\x69\x95\x3b\x0f\x87\xcc\x7d\x83\xf3\xac\xf1\x8c\xb1\x97\x59\x41\x6b\x92\xa6\x85\xd1\x6c\x8b\x4c\xa9\x60\xfc\xef\xba\x67\x5c\xe7\x68\x0c\x8f\x18\x1a\x47\xb2\xc5\x92\xf6\x71\x1c\x59\x40\x60\x6e\x7b\x54\xe2\x4c\xb7\x68\xd1\xaa\x0c\x2e\xca\xe7\xea\x70\xa8\xd9\xa9\x83\xcd\x50\x79\xb0\xa4\x72\x49\x61\xcc\xf3\xda\xeb\x1c\x37\x3d\xc7\xb6\xf1\x44\x2b\xcf\xf7\xa3\x11\x69\x46\xac\x58\xec\xf1\x0c\x86\x47\xfe\x90\xe1\xad\x50\xe9\xd7\xbe\xd8\x64\x92\x31\xaf\x6f\x18\xdf\x0b\xac\x19\x15\x0b\x89\x79\xc7\x8a\xca\xd1\xc8\x6c\x5f\xd6\x8c\x15\x60\x22\x03\x38\x30\xba\x5a\x72\x67\x5c\x4d\x86\xac\x3e\xb7\x65\x67\xd5\xc5\x74\x3e\xcd\x83\x2a\xa2\x3a\xea\x11\xab\xfe\x54\x2c\xe4\x18\xd2\xe9\xb7\x28\x56\x47\xf5\xae\x39\x9e\xe8\x7d\x60\x4e\x7e\x8a\x9c\xc7\x7b\xa9\x66\x53\x6a\x8d\xb6\x82\xbb\xc9\x62\x1e\x03\xce\xb3\x81\xe2\xd0\x67\x3f\x5a\xdc\x0f\x85\x5f\x65\xa3\x51\xdd\x83\x42\xbc\x6b\xad\x25\x63\x08\xb5\x95\xef\x10\x02\x13\xa8\xa9\x56\xec\xae\xe6\xbb\xa2\xe6\x3e\x41\xb8\x5d\xaf\xad\xd2\x31\xe8\x3f\x33\x7b\x0b\x0e\x03\xee\xb1\xb9\xfa\xec\x0b\xa5\xd2\xdb\xba\x91\x75\xf3\x71\x04\x44\x60\x6f\x37\xb6\xde\x4f\x48\x6f\x81\x32\x1a\x5e\x4e\xea\x08\xb4\xa2\xc0\x8b\x5d\x1d\x0e\xc5\x90\x61\x82\x5d\x2d\xae\xc1\x44\xc9\x7b\x44\xf3\xf9\x0c\xa2\xf5\x30\x43\x0f\x59\x19\xc2\xac\x74\xc9\x91\xc3\x41\x53\x68\x26\xfa\xa2\x87\x10\x71\x86\x6f\x13\x7e\xbd\x53\xb7\x19\x39\xcf\xf6\x87\x43\xa0\xe6\xb4\x95\xef\x50\xc9\xe9\x97\x2d\xaf\xcc\x20\x57\x57\x24\x4d\x6f\x2a\x38\xb9\xb7\xbc\x58\x53\x41\xe8\xfe\x70\xb8\x82\x10\x2a\x43\xc7\x3d\xde\x7a\xb1\xa5\x40\x6c\x64\x69\x6d\x08\x8c\xe1\x27\x68\x58\xe9\x37\x6b\x87\x19\x00\xe5\x24\xff\xf7\xff\x15\x9b\xa5\xe0\x5c\x26\xc8\xda\x17\xb1\x39\x1a\x48\x57\xc1\x14\xcd\x46\x28\xb9\x63\x15\x30\xac\xa2\x60\x63\x80\x14\x90\x92\x95\xd5\x80\x83\xd4\xe4\x4f\xbe\xd1\xab\xa0\xb9\x58\x4a\x85\x92\x28\x7b\x20\xff\x47\x0d\x0f\xcd\x82\x1b\xbe\x92\xd5\xba\xa8\x6f\x7d\x9f\x0c\xfe\xae\x9d\x55\x96\x24\x16\xbb\xd7\xf6\x11\xaa\x0e\x7a\x2a\xa3\x9e\x62\xac\xeb\xaf\x8c\xfb\x3b\xf9\xdb\x93\x3f\x65\x36\x91\xeb\xaf\xcb\x83\x36\xdb\xc1\x91\x71\x1b\x7b\x50\xe7\x46\x71\x50\xc9\x9d\x5e\x50\xf0\x40\x55\xad\x27\xe8\x55\x47\xab\x3c\xba\x36\xe5\x8a\xca\x4f\xda\x56\x11\x31\x0f\x5e\x25\xe1\xa5\xb2\xf7\x73\x86\xd2\x25\x7c\x7c\x53\x50\x50\x1f\x9b\xa0\x80\x39\x40\xc6\x85\x61\x7d\x97\x2c\x29\x55\x9d\x68\x62\xd6\xc9\x0a\x3a\x32\x4c\x70\x76\xef\xc4\x51\xd4\xac\x10\x7c\x61\xa0\x3d\x85\xff\x5d\x11\x2a\x7b\x67\xbe\xc3\x35\xc3\x03\x85\xaf\x93\x10\x0e\xa6\x78\xd3\xc8\x72\xaf\xf8\xf9\x99\x35\x81\xe6\x60\x55\xf7\xaf\xea\xec\xbe\xff\x94\xdc\x81\x75\x5e\xcb\x40\xda\xfa\x53\x98\xef\xc7\x3c\xaf\xc9\xa7\x94\x84\x6b\x02\x33\x8f\x15\xe9\xd8\x38\x6e\xb2\xe0\x6a\xd6\x4f\xcc\x8d\x7e\xda\x09\x7d\x39\x6f\xd9\x26\x7c\x4f\xfb\x61\x5c\x67\xa1\xc0\xe9\x67\xc3\x02\x05\x89\x1d\x8e\xcd\x26\xb2\xb0\xd9\x65\xd1\xab\x18\x64\x56\x1b\x1c\x3f\xa5\xcf\x62\x33\x63\x35\x63\x99\xe1\xb2\x32\x56\x91\x96\xd2\x9f\x7d\xf1\xaf\x83\x34\x73\x81\x32\x9b\x5c\x4c\x78\xb5\x1e\x67\x5e\x64\xb3\x89\x44\x36\x18\x3d\x23\x64\xfe\x28\x9f\x11\x2a\xc9\x42\x2e\x8f\xa8\x25\xbb\xe2\xd9\x86\x8a\x50\xae\xd4\x66\x75\x84\x16\xb6\x43\xef\x97\x1c\xfa\x04\x2d\xa7\xc1\x9d\x24\xd8\x70\x66\x1c\x4a\xf0\xd0\x89\x84\xa1\xd6\xf8\x42\x2e\xcf\xb3\x02\x25\x2c\xb5\xa6\xcb\x94\xbc\x54\xa0\x3c\x69\x7e\x31\x86\x5e\x70\x32\xb7\x01\x0a\x23\x51\x21\xd4\xc9\x80\x0a\xf4\xd4\x42\x67\x48\xa8\xdc\xf0\x72\x9e\xd4\xaa\x4c\x72\x6c\x8f\xd4\xe7\xec\x70\x4a\x8e\xe2\x70\x08\xda\x49\x8e\xd9\x35\xad\x0f\x87\xa9\x79\x3e\x56\xf3\x6d\x5e\xd1\xa8\x9f\x82\x6e\x2c\xa4\xaf\xdd\x46\xf4\x96\xad\x33\x4e\x6f\xda\x3a\x98\xf4\x8a\xad\x33\x35\x9e\xe9\x98\x48\x59\x82\xd0\x37\xcc\xbd\x4f\xa7\x8c\x71\xfa\xbb\xf9\x5d\xa5\xa9\x62\x6c\x4b\xdf\xb1\x29\x63\x1b\xfa\x9c\x0d\xaf\x0f\x87\x0d\x63\xd7\x8e\x12\x02\x57\x64\x70\xfc\xdc\xa2\x60\xe1\x31\x36\xe7\x3d\xcb\xca\xf9\xef\xf9\x1b\x92\xa6\xcf\xe9\x2b\xfd\xe3\x4d\xfe\x3b\x49\xd3\x77\xf3\x26\xcf\x6e\xe6\xb7\xf9\x15\x72\x02\xe8\xf7\xec\xfd\x7c\xaf\x83\xae\xf2\x5b\x23\x0d\x1b\xac\xb2\x57\x14\x8a\xa3\xdf\x8f\xf5\x97\xb1\x09\xf1\xaf\xa2\xb7\xf4\x29\x7d\x4d\x9f\x0d\x6e\xe6\xd9\x5b\x56\xa6\xe9\x1b\x2c\xf8\x16\x8b\x7c\xca\xca\xf9\x3e\xdf\x81\x6a\x88\x97\xea\xbc\x66\xe5\xbc\xc9\xf5\xca\x16\xd4\xc9\x96\x9e\xe9\xdc\xbf\xa7\xe9\xf3\xf9\x3e\xbf\x32\x12\xd1\x5c\x97\x39\x6f\x65\xcf\x1b\xfa\x94\x0d\x6d\x55\xfb\xfc\xd6\x9c\x5e\xaf\x21\x10\x4a\x68\xf2\x2b\xac\xff\x19\x64\x0f\xeb\xc9\xf7\x84\xae\xb2\xb7\xa6\x53\x4f\xc7\x6f\x7d\xa7\xdc\xd7\x05\x0c\x63\x9a\xae\xb2\xc6\x85\xe1\x96\x83\x08\x5d\xc0\x6b\xfc\xa4\xcf\xc6\xfa\xcb\x8e\x4a\x36\x94\x87\xc3\x6d\x95\xdd\x52\x69\x40\x0b\x25\xbb\x25\xf4\xb6\xca\xae\x20\x04\x02\xae\x08\xcd\x86\x85\x49\x57\x98\x74\x85\x4b\x57\x60\xba\x82\x5d\x91\x23\xa1\x77\xa8\xdb\x8a\x82\xee\x02\x15\x9b\xb7\xc6\x71\x65\x46\xe8\x1a\xb4\x98\x32\xb8\xe8\xb7\x46\x48\xbf\x46\x9e\x92\x0d\xa0\xdb\xc9\x6a\x4b\xd7\xa0\xab\xe1\x66\x6d\x87\xe7\xd4\xd6\x28\x6b\x5c\xe3\x4f\x93\x93\xde\xb0\x17\x2a\xdb\x11\xa6\xff\xe8\x61\x61\x71\x59\x37\xf3\x5d\x78\xb4\x8d\x66\xe8\x1b\x01\xac\x70\xae\xd8\x26\xc3\x62\xe8\xcd\x7c\x8a\xf6\x62\x50\x37\x5a\xeb\x0c\x6e\xd2\x34\xc3\xe5\x89\x4b\xf5\xd1\x3c\x5b\x65\x76\x06\x71\x4e\x10\x1a\xd4\x4d\x8a\x9e\x04\x1c\x6b\x33\xa7\x6e\xb8\x49\xde\xce\x8a\x29\xc6\x3e\xd0\xa6\xfc\xe4\xa9\x3d\xc6\x94\x8a\x0c\x7d\x18\x57\x4e\x15\x17\xe1\xc4\x37\x72\xb5\x77\x7e\xab\x82\xc7\xc2\x00\xdc\xe3\x7d\x55\x29\x5e\xdf\x14\x65\xa6\x26\x6f\x4a\x51\x81\xb3\x31\xa4\xbc\x87\xd3\x81\x32\x24\xd3\x17\xe2\xc6\x90\x1f\x37\xa2\x11\x6f\x44\x29\x14\x10\x34\x6d\xd2\xea\x73\x5d\xc2\x4f\x85\xe2\x97\xd3\xb9\x2b\x8f\x35\x5c\xb9\x5a\xba\xb0\x75\xf7\xd6\x91\xd5\x6c\x58\x93\x79\x92\xe4\x09\x3e\x58\x92\xe3\xe9\x4a\x49\x7e\x32\x0a\x09\x81\x7b\x7b\x63\xca\x0f\x35\x2f\x7e\x37\x2f\x9e\x68\x1c\x23\x4d\x5b\x7c\xe5\x40\x4c\x46\xe8\x73\x30\xb8\x0c\xac\xdd\xa3\xfc\x00\x01\x28\xaa\xab\xcf\xcb\x7d\x0d\x60\x14\x6c\x38\x0d\x51\xff\x82\xa1\x39\x99\x05\xe4\x3d\x27\x8b\x9b\xd1\xf7\xd8\x02\x3a\x9b\x86\xbe\xe0\x9e\x1b\xe2\xef\xbf\x2d\x96\xd0\xa4\x92\x86\xb2\x1d\x06\xe2\x87\x9a\x17\xeb\xef\xab\xf2\x36\xc8\xee\x07\x09\x3d\x1a\xc0\x6f\x70\x66\x40\x68\x2b\x8d\xee\xfe\x1f\xc1\x58\x1a\x99\x4b\x44\x6f\x99\xa4\x89\xe3\x39\x6a\x6a\xd5\x89\x35\x78\xf9\x42\xd6\x80\x7e\xfc\x5e\x7d\xcb\xab\xbd\xe5\x27\x34\xbc\xec\x99\xa5\x9a\x37\x5c\x53\xa4\xfb\x34\xed\x1f\xf5\x8e\xc1\x6f\x98\x0f\xc4\xdc\x8f\xa6\xa4\x0b\x05\x52\xf3\x15\x17\x37\x7c\xfd\x02\x57\x01\xa1\x6f\x5a\xcb\xe0\xfd\xc7\x86\x1f\x1a\x1b\x8d\x4d\x9a\x9a\xf1\x7b\x53\xee\xeb\x53\xc3\x37\xa3\x6f\x3f\x75\xf8\x08\x8d\x37\x7b\x60\x88\x6e\x36\xfd\x47\x56\x62\xdf\xe2\x6f\xb6\x62\x03\xcb\xe3\x48\x67\x4f\xa6\x61\x8f\x5f\xdd\x23\x6f\x44\xcd\x3b\xbd\x07\x1d\x92\x82\xe3\x56\x84\x9a\xf6\x21\xcb\x02\xf9\x64\xd5\x92\xca\x53\xc2\xaf\xbd\x05\x64\x2e\x51\x2c\x35\xb4\x1c\x0e\x38\x0a\x11\x49\xd1\xca\x2a\x90\xe5\xe1\xab\x1f\x45\x01\x46\x90\xbe\x67\xab\x71\x4d\x6b\xb6\xf2\x34\xc4\xc6\xe6\x3c\x25\x93\xd9\xb3\x8d\x7d\x8b\x6d\xe0\xa0\x1f\xca\x34\x15\x6d\xfb\xd7\x34\xcd\x4a\xd6\x09\x3d\x29\x17\x44\xe9\xef\x06\xaf\x8c\x19\x31\x57\x2b\x32\x22\xcd\x6b\x70\xbc\x07\x69\xc6\xf6\x72\x32\x9d\x3e\x39\x1c\xb6\x17\x63\xfd\xa1\xef\xeb\x07\x3c\xc3\x94\x74\x4f\xe8\xf7\x95\xf9\x41\xa8\x68\x19\x5c\xac\xd9\xf4\x7c\x7d\x21\x22\x83\x8b\xf5\x68\x44\x20\x0b\x58\xf0\xaf\x11\x3e\xb8\xbc\x6c\xa9\x13\xa3\xc8\x3c\x74\x34\x0e\x52\xba\xb2\x25\xaf\x19\xec\x2e\x3b\xf6\x09\xce\x89\xd4\x89\x18\xb6\xa3\x9d\x18\xd3\xf1\x6e\x44\x60\xec\x70\x0c\x39\xa0\xdf\xfb\xeb\xb0\x2d\xa8\xb4\x76\x1e\x1d\x15\xfa\x00\x42\xd3\x8a\x25\xd5\x92\x56\x06\x7f\x24\x30\xf4\x03\x14\xff\xda\xbe\xc9\xab\x68\x05\x85\x17\xc9\xdb\xd6\x53\xba\x46\x67\xa0\x43\x70\x18\x67\x15\xbf\x80\x79\x81\xaf\xf7\x3c\x10\x2a\x3b\xf3\x80\x81\x79\xb3\x6e\x4a\x29\xeb\xac\x1a\x03\x42\x89\x15\xfd\x04\x25\x1a\xc5\x13\xfb\x91\x57\x23\xde\x92\x67\x63\x03\xa9\x64\xbf\xf2\x0c\x94\xa4\x0a\xfc\x42\x07\x94\x80\x0a\xca\x2b\x50\x9d\x70\xdc\x2d\xfc\x1d\xf8\x47\xdb\xfb\x40\xe3\xcd\x6c\xd0\x5c\xc8\x79\x26\x59\x63\x8b\xfb\x45\x65\xbf\xe9\xbf\x0d\x21\x27\x9a\x40\x48\xee\x1e\x3c\x7b\xaa\x42\x1f\x8d\x97\xac\x00\x32\x34\x2a\x69\x4f\xc8\xf8\x44\x49\xb4\x60\xce\xb5\x30\xaa\xa9\x49\xaa\xa4\x57\xa0\x2b\xa8\x1c\xcd\xc2\x39\x79\x5a\xf5\x82\xa5\xd2\x2a\x96\xb7\x0f\x80\x49\x62\xe8\x07\x25\x77\xa1\xb4\x0d\x6e\x24\x3b\xf0\x56\xe4\xe0\xe6\x6b\xde\x09\xc9\xeb\x9e\x69\xa5\x92\x01\x92\x08\x2d\xd8\xdd\x71\xa0\xbc\xf9\xa6\x92\xbb\x4b\x89\xc8\x60\x68\xa6\x08\x41\x23\x69\xf5\xc9\xf1\xae\xc3\xb5\x37\x7a\x0f\x38\x5a\x7b\x4c\x73\x51\x81\x3e\x39\x66\xbb\x6c\xc6\xe0\xcb\x1c\x63\x04\x29\x7c\xd5\x6c\x3f\x9f\xa2\x95\xae\x97\x88\xd9\x5c\xc2\xbe\x68\x57\x1e\xad\x1b\xad\x49\x33\xfd\x2a\xb2\xe9\xc8\x58\x92\xc1\x6a\xc8\x84\x7e\x0b\x04\x25\xaf\xac\x82\xf8\xbd\xa3\x04\x86\x7f\xdd\xa0\xee\x38\x81\x2a\xca\x96\x21\x6f\xe8\x04\x8a\x61\xdd\xa7\xf3\x91\x4f\xf1\xf5\x81\xa7\x28\xb2\xb8\x2e\xb7\x8e\xd1\x00\xc3\x8b\xca\xfd\x18\x37\xda\x02\x56\x21\xdf\xa8\x8b\xd9\x74\x5e\x04\xd5\xb3\xa9\xb1\x76\xbe\xd8\xc4\xe1\xc1\xee\xc5\x04\xe3\x6c\x3d\x9f\xe6\xb3\x29\x21\xd6\x20\xfa\x72\x3b\xda\x8c\x1f\x07\x43\x04\x19\x4d\xe4\xc8\x26\x1f\x6f\x09\x2d\x02\x3c\x18\xb3\x40\x71\xe0\x34\x8d\xf6\x53\x85\x36\x65\xad\x65\xc5\x0c\xcb\xa8\x6f\x05\x02\x39\xe4\xd6\x5f\x27\x05\x19\x85\xca\xbc\xcf\xe0\xac\x84\x5a\x1c\xde\xd5\x15\x57\xc8\xe5\xcd\xc8\xa0\x9d\xfd\x07\xd9\x18\x95\x50\xa5\xf7\x9a\xa2\x68\x14\xd5\x21\xc3\x11\x96\xea\x5b\x88\x0c\xfd\x51\xbb\x53\xd1\x09\xc1\x0d\x53\xe1\x70\xc0\xae\xfa\xae\x77\x17\x09\x53\x36\xbe\xee\xc4\xeb\x41\x09\x6d\x43\x7e\x8a\xd4\x41\x3a\x9d\x18\x74\x6b\xc0\xce\xc1\x8b\xeb\x07\xdd\x4c\xb4\x45\x30\xc8\xf7\xe6\x87\x92\xe8\x46\x51\x77\x2b\xa4\x7e\x7e\xe8\x28\x89\xc0\x59\x83\xe6\x04\xc1\x66\x42\x03\x62\x54\x6f\x00\xe3\x82\xd6\x46\xc3\xbb\x60\x5c\x19\x03\x04\xb7\xce\xcc\xba\xb1\x96\x47\xc4\x9a\x24\x04\x09\xcc\x8b\xd1\xde\x01\x64\x54\x1d\xc9\x00\xc6\x5b\x84\x3b\x4a\x04\x2b\x21\xf0\x86\x6d\x16\x9e\x43\x18\x68\x2d\xa3\xb1\x22\x17\x8f\x0e\x87\xac\x3e\x1c\xa4\xd0\x1d\x03\x63\xff\x23\xa1\x5f\x60\xc7\x87\x53\x42\xeb\x34\xd5\x71\x84\x72\x9d\x42\x3f\x47\x82\x0a\xbe\xf0\x6e\x20\xfd\xe1\xd2\xa3\xae\x84\x1f\x0e\x42\xeb\x5e\x84\x25\x4d\x21\x9f\x2e\xe3\xb5\xdc\x0d\x99\x3a\x1c\x8c\x6e\x7b\xd4\x1d\xa6\x3a\xaa\x52\x6f\x8a\xba\x99\x34\x5c\xbd\xb2\x69\x32\x45\xfa\xf4\xa9\xc2\xc2\x23\x3a\xa6\x9b\x82\xa9\x70\x04\xbe\x0b\x96\x48\x30\x06\xdd\x96\xb8\x22\x10\x95\xea\x7e\x9d\x2e\x42\xb3\x7a\xae\xdc\x2b\xc8\x9f\xa7\xbd\x33\xf9\x0d\x30\xfd\xc9\xc5\x23\x92\xa6\xc3\x0a\x29\xfb\x28\x92\x29\xba\x17\xb1\x15\x6b\xcf\xb1\xfc\x91\xae\xdb\xad\x7a\xff\x10\xeb\x54\x59\x34\x42\x5f\x55\xfd\x3e\x4f\xfb\x35\xfb\x22\x76\x7e\xfb\x62\x0c\xc9\x50\x43\x20\x84\x2b\x27\x57\x27\x56\x94\x7e\x74\xb8\x24\xbd\x14\x54\x30\x35\x61\x29\x41\x30\x0d\xa6\xa7\x5b\x11\x26\xd1\xf5\xdc\xa3\x78\x48\xdf\x14\xa8\xb3\x78\xe2\xda\xcb\xa7\x74\x2d\x57\xa6\xa1\x15\x0d\x37\x4d\x5e\x8d\x00\x78\x6c\xa4\x3c\xe0\x18\x8d\xd1\xd1\x72\xd5\x82\x4b\x8b\x14\x23\x6b\x64\xe5\x7d\x53\xf5\x3b\x70\x5d\x5d\x33\xeb\xc3\x1f\x7e\xdf\xf0\x5a\x79\x7c\xce\x1e\x0c\xfd\x6b\x51\x8d\x8d\xa4\x63\xb6\x7b\x9f\x90\x58\x51\xf6\xc6\x2d\x0d\x40\xfb\x40\x97\x11\xb2\x16\x1f\xee\x2d\xd3\x4a\x3f\x66\xd3\xe9\xff\x3a\x3f\xd3\x35\xb8\x90\x6e\x15\xdb\xa0\x8a\x41\x35\x51\xc5\x1b\x44\x9a\x14\xfe\x73\x3c\xa3\x3c\xab\x08\x05\x0f\x46\x5b\x9e\x55\x34\xc1\x4c\x09\x0d\x1e\xc6\x55\xb4\x12\xd2\x54\x65\x55\x40\xd3\x25\x7a\x24\x04\xd8\xbd\x1e\xa1\x10\xd1\x5b\x88\x08\xe7\x59\x97\x11\x9d\xce\x09\xf4\x5d\x56\xca\x14\x83\x43\xbe\xe5\xab\xb7\x7c\xfd\x4f\x5e\x4b\xd4\xf6\x1d\xce\xbc\xa3\x00\x3f\x62\x16\x0c\x53\x54\x46\x27\xda\xcd\x8f\x8f\xc1\xfc\xc9\xec\x6f\x7a\x98\x8e\x83\x6f\xaa\xc0\x9f\x05\xea\x7d\xb1\xae\x9a\x24\x0f\x57\xf7\x25\x8f\xa0\x24\x67\xa0\x9c\x1a\x2e\x40\x97\xc0\x08\x5d\x67\x80\x27\x16\x2f\x38\x74\x83\x7e\xd7\x6e\xa0\x93\x9b\xbe\x29\xe5\xea\x6d\x42\xdb\xf1\x96\x28\x9e\x57\x20\xef\xca\x93\x69\xe2\x08\x73\xbf\x73\xc7\x99\x9a\x57\xf9\x94\x0c\x7c\xf6\xe0\xcd\x7d\x4a\x84\xcc\xdb\x57\x4f\xd4\x09\x61\xa4\xab\x40\x33\x9f\x6c\x76\xd8\xe2\x53\x55\xea\x36\xa3\xa7\xcb\xce\xcc\xf5\x76\x3f\x4c\x50\x1b\x27\xc9\xbe\xfb\xdd\x34\x20\x68\xe6\x13\x73\x80\x40\xc2\x81\x35\x0a\x76\xa7\xce\xd8\x25\x18\x67\x75\x30\x58\x58\x50\xa7\xe9\x88\xf0\xd5\x33\x58\xb6\xb0\x70\x45\xc8\xce\x50\xf5\xf6\x31\x6a\xfa\x89\x1a\xf5\x58\x19\x63\xb5\xde\x8d\x00\xfe\xd1\x82\x69\x02\xfc\xa0\x29\x4a\xa4\x74\xfa\x0f\x36\xe1\xcb\x62\xf5\x36\x3b\xb9\x9b\xa6\x84\xde\x19\x83\x4f\x3d\x16\x0e\xbc\x48\xff\x38\x1e\x69\xb4\x49\xa2\xeb\x2b\xda\x2b\x61\x57\x83\x9b\x92\xb7\xf6\xa8\xcf\xcc\x4d\x83\xd6\xa2\x29\xde\x94\xfc\xa5\x8e\x37\x0d\xe7\x80\xe8\xeb\x9a\xf8\x79\x51\x07\x65\x74\x73\x99\x63\x23\x21\xa7\x1a\xab\x89\x91\x4e\x5b\x71\x05\x7b\x72\xc6\xb5\x34\x8e\x68\xb7\xf3\x67\x5e\xab\x8f\x34\x53\x17\xd0\xc9\x83\x07\x64\xa7\x8d\xd1\x1c\x85\xce\xbb\x6f\xc0\x3d\xcd\x55\x9a\x0e\xd7\xf3\x64\xf6\x08\x16\x3c\x9c\x5b\x83\xce\xa2\xda\xf6\x9f\x77\xb8\x88\x78\x77\x8f\xec\xa4\xa8\x14\x47\x46\x6c\xd3\xc9\x16\xc7\x26\x95\x04\xd3\x9f\xf6\x98\x03\x10\xe2\x87\x4e\x2f\x31\xb8\xd5\xc7\xee\x38\x75\xee\x56\xde\x5f\x79\xb1\x57\x32\x41\xdf\xba\xd9\x8c\x3f\xa6\xde\x1e\x21\xf3\xda\xe8\x27\xd8\x88\xe7\x19\x8e\x38\x63\xf5\xdc\x29\x6d\x70\x44\xa4\x78\x51\xcb\xeb\x1f\x74\x55\x99\xc1\x55\x1a\xcf\x68\x06\xd0\x52\x23\x8b\x26\x45\x1e\x3e\x22\xf9\xe9\x7c\x36\xe3\xc8\x20\x3e\x3d\x7c\x44\x1d\x0e\xd5\x8c\x90\x21\xe3\xf3\x13\x7d\x82\x01\xcd\x7d\x9f\x2a\x70\x5a\x14\x0d\x18\x70\xae\xbb\x8b\x21\x98\xc8\x80\x21\xd7\xf2\x69\xe1\xd2\x10\xda\x13\xa3\x47\x84\x1c\xe1\x44\x7c\x51\x85\x35\x04\x78\x4b\x1f\xcc\x63\x08\x80\x1a\x19\x50\xa5\xa4\x83\xfd\x69\xc1\x61\x23\xb4\x4c\x47\x71\x0d\x5e\x62\x19\x2d\xc8\xd4\x3f\x1b\x04\xe2\x76\x21\x87\x43\x35\xec\x2b\x06\x50\x55\x7b\x73\xe8\xa3\xaf\x1f\x18\x0d\x18\xf1\x14\xea\xc7\xa6\xd3\x4f\x6f\x76\x80\x0b\x73\x92\x55\x56\x87\xd4\x3c\xd2\x0c\x08\x12\x82\xda\x3b\x11\x3c\x38\x80\xff\xb2\xac\x76\xd5\x32\x0b\xf5\x8b\x1a\x4e\xbd\x99\x3e\xc7\x5b\x1e\x73\xbd\xb4\x7c\x56\xfb\xaa\x35\xf9\x70\xcb\xbf\x90\xf5\xca\x65\x47\x6f\xa2\x26\xb7\xcd\xa0\xd3\x9f\x35\xb2\x14\xeb\x33\x55\x17\x55\x83\xeb\x26\xa1\xa6\x1d\x69\x6a\x13\xce\xb3\xa0\x63\x2f\x04\x12\xf5\xbd\xd7\xf2\xa9\x74\xdb\xb8\xa9\xae\x87\xbd\x89\xdf\x85\xa3\x81\xda\x3b\xf9\x47\x1b\x90\x38\x45\xb7\x70\xfa\x03\x34\xf1\xef\xf8\x7b\xf5\x5a\xbe\xb2\xa5\x84\xa9\xc2\xf7\x43\x66\xf9\x66\x1f\xe9\x67\x4f\xa2\x13\x9d\xec\x49\x89\x3d\x54\xa1\xef\x07\xd7\xcf\xfb\x6a\x4f\x8e\x2f\xee\xa3\x4a\xad\xcc\xee\xce\x02\xa5\x59\xfc\xb4\xe3\x91\xbe\xf8\x84\x9b\x9a\xdc\x9d\x4a\x17\x5d\x92\x9d\x64\x9d\x23\x09\x0f\x91\xcf\x2b\x76\x87\xb4\x6d\xfe\x4d\x05\xaf\x93\xfc\x45\x15\x9c\x25\xff\x68\x69\xd0\xfa\xbd\xd3\xf3\x82\x86\x2d\x05\x15\x65\x27\x5e\xcf\xc5\x7a\x6d\x5c\x43\xf4\xc9\x01\xef\xcd\x42\xfa\x8b\x84\x0b\xeb\xf3\x6a\x11\xe8\x79\xda\x38\x00\x41\x5a\x46\x56\xc5\x9d\x3a\x5b\x8e\x70\xfa\xaa\xc0\x69\x86\x27\x91\xa2\xc9\xb5\xdc\x37\x7c\x2d\xdf\x55\xd1\xab\xa8\x23\x0b\xfd\x8f\xc4\xb5\x46\x18\x7f\xa4\x53\x78\x33\x75\xbd\x3d\x84\x16\x58\xd6\xd7\xc3\xd1\xd7\x0f\x37\x70\xf8\xf4\xd2\x57\x26\xf2\x6b\x48\x6e\x58\x63\x47\xda\xc3\x15\x69\xcd\x49\x9f\x68\xfb\xfe\x39\x81\xa7\xf6\x2f\x15\x9b\xfa\x15\xf3\x6f\xff\xf2\xb2\xdc\x57\x76\xb7\xba\xce\x39\x0d\x2c\x1b\xf2\xe1\x0c\xb1\xe5\xcc\xa3\x3f\xe4\x7f\xd0\x00\xf5\x59\xa7\xc3\x1d\xf4\x95\x1e\xa9\x7c\x4a\xd5\xad\xbe\x26\x74\x38\xea\x7e\x7f\xff\xe6\x8f\x06\x95\x61\x90\x71\xfb\x74\xa5\xc4\x8d\x50\xb7\x2f\xc1\x8d\x46\xdd\x1b\xf7\xac\x28\x4b\xbe\xce\xa7\xd4\x29\x5b\x07\xcd\xc2\xea\xbe\x45\x11\x1d\xb4\xd3\x33\xa5\xd0\x93\xb2\xe3\x4d\x47\x3f\xc1\xb4\x13\xf0\x16\xf4\x6c\xea\x8c\x62\x9d\x8f\x46\xbf\x54\x47\xea\x38\xb8\x54\xd6\x73\x59\x4f\xe4\xae\xb1\x8e\x2e\x72\x35\x91\xef\xaa\xe6\xcb\x5a\xee\x77\x4c\xd6\xec\x4e\xee\x9a\x7c\xa1\x96\xb4\xe3\x7d\x71\xb1\x0c\x81\x88\xba\xdc\xe1\x81\x4a\xd3\x3e\x64\x6c\xee\x2b\xc0\x67\xab\xaa\x6f\xef\x7a\x8c\x09\x79\xc7\xe1\x23\xad\xd9\x74\xb0\x96\x88\xe5\x5b\x7b\xcd\xfc\x7a\x34\x22\x6a\x51\x2f\xd1\x77\x64\xdb\xad\x0d\xe2\xf9\xe9\x2e\x76\xa5\xe2\x10\x0e\xca\xfc\x9b\x4c\x4c\xfa\x27\x0c\x61\x0d\xdb\xb1\x38\x65\x17\xa7\x32\xd9\xba\xc8\xa9\x04\x8b\xfe\x02\x47\xa3\xa0\x17\x54\x4c\x56\xd7\xe4\x78\x7c\xb7\x15\x25\xcf\x7c\x87\xc9\x91\x64\x35\x39\x6e\x44\x55\x94\xe5\xed\x9d\xf1\xc7\x49\x15\x18\xae\x64\x8a\x86\x63\xd9\x16\xd4\x06\xe3\x80\x68\x80\x7a\x00\xd4\x72\xb2\xba\x36\x5b\x43\x17\x75\x9e\xf5\x17\x01\xa9\x29\xc2\xa6\x45\xa3\xff\x5b\x95\xe9\x09\x68\x0f\x7b\x64\x3b\x91\xa1\xdd\x04\x31\x37\xd0\xfa\x0b\x73\x41\x89\xc9\xf5\xbe\x51\xb8\xbd\xd2\xb4\x12\x7a\x22\xae\xa9\x35\x9b\x33\x92\xc2\xc0\x91\xe7\xf4\x5c\xfa\x82\xe5\x68\x44\xbe\xd4\x95\xcb\x65\x88\x97\x33\x3d\x2f\x7c\x9a\x62\x34\x22\x5f\xeb\x34\x45\x90\x06\xf1\xb2\x5d\x9a\x66\x34\x22\x0f\x74\x9a\x66\xa9\x47\x97\x47\x16\xab\xbf\xc5\x8b\xfb\x1a\x58\xa8\xe6\x14\x3a\xef\x5f\xb9\x46\x3d\x6c\xa8\x82\x53\xea\x59\x29\x76\x3b\x7d\x16\x07\x3c\xcc\x80\x01\x8b\x2e\xe5\x22\xb6\x0e\xeb\x4f\x39\x3e\xc1\x04\x55\x7d\x54\x9c\x21\x30\x90\x87\x09\xd4\x85\x8a\x88\x44\x94\xbd\x18\x2a\x6f\xdc\x6e\x41\x5f\x0e\xa4\x0b\x81\x14\xc5\x56\xc6\x65\xb7\xfb\x0b\xea\x04\x04\xb9\xff\xd1\x59\x96\xa6\x3f\x2b\x0c\xf6\x0b\xc0\x30\x55\xcc\xf1\x77\x38\xf0\x10\x72\x1f\x61\xa7\x87\x8e\x3f\xf6\x1a\x35\xef\x83\x03\x0f\xb5\xa8\xfc\x6f\x2f\x6c\xbf\xa8\x03\x43\xb2\x38\x8d\x91\xbd\x5f\xb2\xda\x1a\x97\x1d\x0e\x75\x4b\x27\x42\x4f\x5a\xaf\xd2\x8c\x23\xa8\x78\xbc\x8c\xf9\xbb\xb3\x5a\xc0\xfd\x1d\x06\x83\x98\x27\x68\x3e\x45\xf1\x7f\x1e\x35\xe8\x48\xa3\x5e\x07\x0b\xf1\xcb\x7b\x16\xe2\x80\xb7\x36\x16\xbc\x5c\x60\x78\xdf\x14\xb5\x45\xef\xfc\x0a\x82\xba\xbd\x1b\xf6\x77\x0f\xc6\xb3\x58\xff\xb1\x6f\x70\xaa\x5f\x4b\xf6\xac\xd6\xd7\xbb\x2d\xc0\x7f\x85\x7a\xa2\xa8\x65\x3c\x7a\x4c\x55\x8f\xa2\x0b\x6b\x95\x18\x35\x30\xe4\x83\x79\x06\x59\xdd\xbf\xde\xeb\x8e\x81\xc3\xa8\x55\xf6\xe8\xfb\x3a\x53\x24\xf0\xde\x63\xdf\x4d\xb0\xea\x8a\xf7\xaf\x7a\x45\xd0\x1f\x2f\x77\xfc\x56\x97\x4b\x40\x5c\x16\x8f\x3a\x2c\xae\xd6\x2d\x8e\x02\x33\x63\xc7\xb5\x76\x86\x5c\xac\xfe\x14\x0b\xaf\xaf\x5b\x73\x3e\xb0\x7b\x20\x6a\x10\x1c\x1e\x31\x46\x61\x8b\x47\xdd\x1e\x19\xe3\xa3\x2a\x1a\x84\x0b\xd5\x12\x5f\xa5\xe9\x77\x9a\x9a\x0b\x84\xaa\xf7\x88\xa8\xda\xa5\x11\xe3\x09\xed\x94\x96\xd1\xcc\x33\x01\x80\x44\xd1\xaf\x2b\xf8\x60\xec\x07\x90\x94\x77\x46\x4c\xef\xc2\xfb\x4d\xe7\x3a\x59\x68\x7d\x6a\x92\x3c\xb5\x37\x64\x2a\x20\xf7\x48\x9a\x7e\x40\x31\xa2\x5f\x96\xfe\xec\xf2\xbb\xab\x11\x3d\x89\xda\x53\x9f\xa6\x6f\x60\xc7\xa9\x36\x3d\x6e\xcb\x03\x32\xb2\xdb\x2f\x54\x98\xe4\x13\xa4\x2e\x41\x16\xfc\xbb\xee\x9f\xa6\x07\x3c\xc0\xdd\x3d\xc7\x01\xad\xb0\x53\xe7\x9d\xce\xa7\xa9\xc0\x96\x9b\x0b\xd6\x5a\xc9\x4f\xde\x6d\x39\x2f\x01\x42\xf9\x57\x0b\xf0\x1f\x1c\x55\x56\xb1\x80\x47\xcb\x63\x18\x9d\x5c\xe0\x40\x2d\x28\x26\x2a\xf4\x37\x63\xd5\xdb\x39\xc3\xd3\xf4\x0b\x1c\xef\xe0\x58\xc4\x03\xd0\x38\x69\x6b\x65\x09\x16\x66\x18\x44\x87\x53\x8a\x30\xbd\x41\x8b\x48\x9b\x06\x15\x9b\x6c\x78\x03\x6a\xa1\x98\x0a\x15\x33\xbe\xaa\x94\xfc\x59\xf0\x77\x09\x39\xc1\xa1\xb9\x0f\x76\x84\x0a\x66\xd1\x10\x50\xbd\xa8\x42\x75\xa7\xb9\x60\xc3\xa9\xd3\xf2\xc1\xd0\xcb\xcc\x00\xdd\x8a\xaa\xe2\x86\x19\x13\xa0\xd9\xb6\x70\x6e\x63\xf5\x2c\xc0\x0a\x1f\xce\x1c\x24\x78\x9a\x0e\x77\xd6\xea\xce\xd9\xd9\xfd\x3f\xff\xc7\xff\x99\x74\x9c\x6d\x3b\xeb\xaa\x7b\x8c\xa0\x8c\x29\x15\x76\x61\x5c\x07\x46\xca\xe3\x08\xd8\xf1\xa3\xd6\x54\x81\x25\x55\xac\x89\x65\xe4\xa8\x01\x1b\xea\xa3\x65\x59\x63\x30\xe5\x4c\xfc\x02\x2b\x2f\x77\x62\x3f\xa2\xb1\x72\x12\x31\x0e\xd9\x06\x7d\xa8\xab\xb1\xce\x3f\x95\x66\xb5\xd8\x15\x90\x89\x36\xd0\x33\x66\x0b\x19\x9f\x92\x1c\x5b\x74\x76\xa4\xaa\x32\x70\x66\x3c\x00\x2c\x71\x12\x65\x53\x0d\x19\x82\x10\x7a\xa4\xcf\x4c\x01\x94\xe9\x9c\x2b\xe3\x59\x24\x40\x01\xb5\xe0\xa6\x73\x9d\x62\x3c\xcb\x01\xf3\xd4\xd9\xba\x28\x62\xa3\x7d\x5e\x9d\x62\x34\x0b\xcc\x69\x14\x69\xd1\xd1\x4f\x80\x80\x36\x56\x57\xfa\x69\x69\xcc\x56\x09\xdd\x33\xf4\xee\xa6\xe6\xbf\xa1\xd3\xa4\xbc\xa1\x25\x2a\xe1\x08\xd6\x52\xc3\x31\xb8\x29\xfb\x3e\x35\x1c\x00\x50\xa1\xfb\x13\x6a\x38\xad\x9c\x6d\x25\x9c\xc6\x2a\xe1\xec\x43\x25\x1c\xba\x62\x2d\xf5\x13\xba\xe9\xe8\x6b\x78\x20\x80\x32\x3c\x69\x32\xe0\x3e\x04\x41\xc6\x5c\xac\x4f\x45\x67\x45\x2e\x67\x60\x9e\x33\x9c\x3a\x1c\xfe\x32\x3a\x83\xb2\xef\xc2\xd2\xf0\xce\x3b\xad\x27\xb2\x89\xca\x1b\x16\x24\x04\xb8\x3f\x13\x7a\x45\x35\x0a\xf0\x6d\xdb\x14\x2c\xe9\x8b\x50\xb2\x75\xd6\x39\x35\x2a\x27\xc3\xbd\x2e\x6e\xdf\xf0\x97\xa0\xc3\x6d\x9c\x24\x83\xf6\x37\x04\xff\xa3\xda\x86\x11\xf0\x02\xee\xe0\x0f\x05\x0e\x44\xc5\xa2\x58\xc2\xb2\xb2\xef\xc7\xc3\xe1\x9a\x67\x3a\x94\x26\x5b\xb1\xe6\xe8\xdd\xd8\x7b\xdb\xc5\x07\x96\xf4\x45\x34\x44\x2e\x9a\xb8\x88\x34\xbd\xe6\x99\x0e\xa5\xc9\xbe\x32\x85\xd4\x8e\x13\x16\x6a\x02\x03\x4c\x44\xa0\x08\x74\x8f\x96\x10\x68\xf7\x39\x56\x0c\x54\xa1\x68\x62\x0c\xf3\x13\xaa\xa2\x68\x7f\xb1\xfb\x2b\x79\xb2\x11\x95\x68\xb6\x59\x70\xd3\xfe\xe8\x6f\x0f\xc3\xdd\x70\x58\xd3\x19\x19\xfc\x1b\x51\x91\xea\xdb\x3b\x1f\xe8\x5e\xe7\xc0\x19\x09\xa1\x48\x63\x2b\xe2\x50\x93\xa1\x5b\xb8\x3e\xad\xca\xdb\x8c\xd3\xa2\xbe\x82\x8b\xa1\xe9\xab\xad\x27\x55\xbb\xfa\x00\xb8\x34\x04\xde\x8a\x6b\x47\x71\x6e\xd8\x00\x6e\x8a\xd6\x31\xad\x36\xe8\xa0\xa8\x19\x27\xd2\x86\x2d\x81\x3c\x61\x63\xfe\x7e\xa2\x31\x48\xd3\x18\xfd\x18\xf4\xb4\x75\x38\xa8\x4f\x6f\xdb\x7f\xdc\xb0\xa8\x55\xa0\x6f\x87\xcc\x59\x4d\x15\x8a\xab\x6d\x09\xcf\xea\x5a\x56\x4a\xf0\xba\xe3\xe6\x4e\x2f\x1d\x24\xef\x5c\x5a\x10\xc6\x29\xfa\x55\xa6\x04\x8d\x0c\x59\x94\x68\xa1\x6a\x21\xcc\x81\xea\x56\xd3\x83\xbd\x64\x89\x93\x91\x7e\x5e\x7e\x51\x28\x3e\xf2\x77\xcb\x3b\x59\xbf\x7d\x2d\xae\x39\xad\xd8\x1a\xe0\x92\xbb\x25\x6a\x4a\x65\xb1\xb4\xf0\x5d\x55\x08\x20\x05\xb4\x3d\x62\x88\xe0\x63\x9f\xb6\x2b\x1f\x3d\x99\x4e\x89\xbf\xf2\x24\x42\x81\xf4\xc2\x32\x78\x24\xa0\x82\x19\x9b\xfb\x86\x36\x4c\x86\x4f\xc4\x4b\xdf\xf2\xeb\xe2\xfd\x4b\xdb\x54\xb4\x5a\x98\xff\x83\x67\x6a\x72\x2d\xd7\x9c\x56\x38\xb2\x04\x59\x99\x7b\xb6\x51\x80\xb6\x55\x69\x52\x6f\xd0\xe0\xb1\xa0\x13\xb0\x86\x58\xfb\xfe\x86\xed\xcd\x87\x01\x38\x36\xe1\xc0\x21\xe6\x0d\x5d\xb1\x3d\x22\xe8\xf1\x66\xb0\x9a\xc7\x91\x6c\x95\x97\x00\x29\x1d\x05\xc6\x2c\xc5\x0d\x1b\x16\x87\x83\xc5\x25\x19\xba\x2e\xba\x73\xb1\x1c\xb2\x55\x9a\x66\xc3\xf2\x70\x18\xae\x0e\x87\xd2\x3a\xa3\x1e\xb2\x95\xfd\xd4\xa1\xce\xfb\xb4\x0e\x0f\x5c\x51\x6f\xd9\xf4\x7c\xb8\x49\xd3\xad\x73\xe7\x76\x3e\x1a\x6d\xc9\x86\x15\x8b\xed\xd2\x57\xb7\xd8\x2e\x07\x9b\x34\x15\xc8\xb9\xad\x8c\x55\x8a\xc4\xe1\x78\xaa\xc9\x02\x56\x4d\x9a\xe2\x86\x67\x84\xa2\xdf\x6e\x34\x0b\x40\x45\x92\x68\x32\x2e\xd8\x7d\xb3\x91\xa6\x3b\x18\x74\x04\xdc\xac\x3a\x75\xe8\x8a\xff\xd7\x13\xc6\xa6\x73\x5b\x1f\x4e\x56\x58\xa9\x5e\xe5\x6e\xd5\x3a\x37\x96\xb8\xd3\xe2\x35\xfc\x05\x07\x8c\x83\xe1\x14\x24\x0f\x9d\x35\x6c\xea\xa3\xb8\x3c\x5c\x68\xa0\xb7\x1b\x86\xd3\xca\x19\xeb\xd8\x1b\x07\x8e\xf2\xe0\xa8\x89\x19\xa4\x22\x64\x8e\x02\x16\x92\x00\x28\x4a\xdd\xf5\x84\x1c\x09\xea\xf2\xd5\xa2\xa3\x6f\xd0\xc2\x77\x30\xba\x52\x82\xbf\xdb\xc9\x5a\x31\xa3\xbd\x01\xb6\x92\x25\x67\x6f\x2b\x0b\x63\xaf\x49\x2d\x54\xfd\x58\x0b\x25\xeb\xaf\x1a\xbc\xad\xd9\xb0\x6a\x5d\x83\x86\xc3\xa7\x93\x9a\x08\x27\xc9\xed\x55\xab\x0c\x53\x5a\x49\x71\x9f\x62\x24\xa4\x93\xa5\x7d\x1c\x62\x52\xb0\x11\xc0\x28\x78\x87\xb1\xda\xea\x65\x5c\x37\x0c\x80\x30\x4d\xa3\x51\x03\x61\xb1\x0c\x04\x74\x95\x38\x69\x13\x62\x8f\x3b\xd5\xea\xad\x5d\x0d\x80\xb4\x44\x11\x00\x77\xa8\xb0\x6a\xfd\x34\x36\xc3\x66\xb0\xa0\xeb\xd0\xe5\xa8\x8b\x53\xf2\xc2\xf1\xef\x1c\x52\x5b\xdd\x87\xd4\xd6\x13\x18\xb0\xfe\xd2\xb4\x9e\xd4\xbc\x5a\xf3\x9a\xaf\xf5\x7b\x80\x99\x28\xb0\xd1\x07\xd0\x20\xeb\xe8\x78\x36\x28\xf5\x59\x9e\xa6\x19\xb6\x5b\x05\xc3\xe3\xfd\x85\x87\xd8\xef\x54\x86\xeb\x34\xec\xd5\xd8\xef\x01\xbb\x66\x50\xd5\x9f\x56\x16\xcb\xae\xf0\x2a\xce\x82\x86\xfd\x1e\x9d\xca\xab\x69\x29\x3b\x54\x17\x32\x4d\xe5\x38\xf8\xfd\x08\x2d\xd4\x03\xfc\x10\xc4\xad\xaa\x03\xe8\x1c\x6a\x47\xe5\xb2\xd0\xc3\x82\xdf\xe3\x02\xf3\x46\xed\x71\xc3\x47\xe8\x73\x80\xa3\x64\x0e\xd4\x49\xea\xa6\x3b\x40\xba\xc2\xb9\x72\x90\x43\x16\xb2\x64\x8b\xa1\x9b\x03\x3d\x45\x65\xd1\x28\xfd\x52\xf2\x0c\x9a\x68\xd5\x87\x49\x7e\x41\x1f\x9b\x2a\x5a\xed\xe7\x27\xdd\x7a\xda\x0d\x3a\x65\x06\x3b\xcc\x1d\xdb\x01\xbc\xd8\xe1\x50\x5f\x30\x0f\x3d\x36\xcf\x2a\x03\xf6\x66\x5d\x0a\x50\x1f\xc9\x14\xc9\x33\xff\xf3\x52\xcd\xe3\xc4\x3e\xca\xc1\xbe\x61\x10\xc9\x7d\xd4\x05\x52\xb8\x90\xaf\x8a\x40\xe1\x90\x5c\x24\x71\x8d\xd4\x36\xf4\xa2\x9e\xc7\xb9\x42\xd8\x39\x9b\x88\xd6\xc4\xd6\xf5\x5a\x5e\xd6\x27\x6a\x9a\x52\xa8\xab\x26\xbe\xb2\xd7\x92\xd5\x80\xb0\x2d\x69\x61\x57\x83\x01\x2e\x43\x73\x32\x83\xdb\x15\xae\x99\xc0\xaa\x10\x7c\x78\x7b\x3c\x9e\x30\xbf\xd7\xa3\x2c\x71\x57\xc1\x9e\x6f\xac\x67\x4c\xbf\xfb\x4f\xed\xc6\xff\x7e\x87\xfb\xfd\x8b\xa6\x59\x2d\x47\x94\xe0\x74\xd6\xda\x21\xb7\xb1\x45\x15\x70\x26\x0d\x3d\x3a\xfc\xa9\xe5\x05\xeb\x0b\x71\xa3\xa7\xaa\x9d\xa9\x66\x77\xc5\x4a\x89\x1b\xfe\xbc\x54\xb9\x3a\xea\xec\xde\x4d\xb8\x63\x54\xda\x15\xda\x13\x95\x91\x41\x35\x29\xaa\xd5\x56\xd6\xdf\x01\xd0\x18\x22\xe6\x55\xeb\x34\xed\x6b\x42\x98\x16\xc1\xc7\xfd\x6f\x16\x46\x52\x1b\x63\xe6\xb4\x8a\x7e\xd2\x1a\xb9\x95\x26\x9b\xfb\xb6\xe1\x2e\x53\xf0\x8b\x78\xcc\x33\x3d\xa7\x16\x5c\xf4\xf2\xcf\xd0\x0c\x6b\xb4\xdc\x52\x50\x01\xfd\x35\x42\x3f\xb2\x61\x3b\xae\x2b\xcd\xcc\x02\x48\x99\xed\xba\xa6\x37\xbd\xee\xab\xbf\x94\x1a\x8f\xe0\xae\x42\xb4\x65\xdb\xc2\x7d\x9a\x5e\x69\x2a\xde\x39\x0d\x43\x4f\xed\xbf\x6c\x39\x2f\x5f\x17\xf5\x15\x57\x8c\xa9\x79\x47\x3f\xd9\x6a\xde\x05\x6e\x2b\x23\x05\x39\x42\xbd\xa7\xc9\xd2\xec\x36\xba\x0a\x0e\x16\xba\x61\xd3\xf3\xcd\x45\x69\xa9\x8e\x8d\xe5\xc6\x6c\x59\xb9\xd8\x2c\x11\xeb\xc3\x18\x61\x9f\x5b\xfb\xc2\xad\x81\x9b\xdb\xb6\x4d\x69\x19\x93\xc6\xd1\x6d\x31\x64\x18\x7b\x4e\x0a\xd6\x64\x05\x1e\xba\x6b\x26\xac\x0d\xa1\x4a\x53\x75\xa1\xa9\xd4\x6d\x30\x96\x83\x6d\xe0\x02\xfb\x65\xe6\x7e\xd1\x04\xf5\x8b\x12\x72\x39\x9e\x81\xa7\xd0\xe1\x8c\x50\xf0\x91\xbd\xa5\x2b\x7d\x62\xd0\x75\x9a\x66\x4f\xb3\xb0\x30\x42\xc3\x5f\x9f\x04\x61\xfe\x77\xee\xcd\x12\xe9\x0a\xce\xa1\xc2\xf4\x23\x9c\xb4\x63\x80\x6d\x72\xe3\x1b\x31\x90\xb1\xee\xcc\x8e\x16\xe4\xb8\x1a\xb1\x2d\xdc\xbd\x08\x35\x58\xd8\xf1\x38\xea\x93\xae\x7b\x4c\x98\x4b\x9c\xd0\x8f\x2c\xd9\x44\x9f\x86\xd1\xc1\x84\xc7\x0b\x6d\x1f\x26\x7a\x51\xb9\xcd\x1f\xfd\x18\xea\xa3\x04\xe5\x6b\x36\xc8\x81\x60\xf0\x68\xb7\xff\x14\xfb\x4d\x8b\x62\x49\x5f\xb4\xdb\xaa\x84\xd8\xa7\x66\xef\xa9\x42\xeb\x36\xf8\xd8\x4f\x7a\xbe\x33\x50\x3e\xe4\xea\x39\xd8\x01\x05\xc7\x05\x8f\xce\x07\x3d\x04\xd6\x01\x63\xa6\x17\x84\x32\x8b\xff\x69\x59\x42\x39\xba\x27\x6a\x52\xac\xd7\x58\x6a\xad\x7f\xe1\xb9\x95\x05\x6d\xb4\xed\xb5\x07\xc8\x31\x5b\x11\xfa\x34\xab\x3d\xd0\x08\xfe\x74\x92\x15\x08\xf1\x86\xaa\x91\x94\xbb\x6e\xcb\xbe\x0c\x91\x3c\xa5\x0d\x4e\x67\x44\x56\xb4\xa9\x0a\xda\x22\x2a\x5a\x34\x05\xda\xe1\xfd\x79\x3a\x05\xca\xa8\x8b\xea\x8b\xf8\x7e\x01\xa2\xa7\x30\xa4\xb0\x47\x62\x54\x8e\x44\xa3\x15\x1b\x4e\xcf\xb3\xea\xb4\xde\xa9\x6a\x93\xe5\x43\xa4\xcb\x0f\x87\x2c\xb6\x7d\x07\x78\xe3\xbb\x88\xeb\x7a\xda\x7c\x6b\x8c\x86\xd2\xc6\x67\x37\xf1\x94\xa4\x7e\x94\xf8\xc3\xd6\x02\x72\xd2\x61\xd6\xa6\xbf\xbb\x6f\xfd\x36\x1d\xde\xe5\x5b\x10\x50\xec\xd0\x83\x71\x5e\xe9\xc3\xe3\xee\x95\x33\x90\x15\xa8\x10\x3c\x00\x68\x4c\x0a\xaa\xc2\x82\xd0\x46\xe0\x5f\x43\x07\xb0\xe1\xec\xa8\x26\x8d\xb8\xaa\x8a\x32\xe3\x34\xc1\xc1\x4f\x62\x15\x32\x47\x1e\x05\x0d\xa8\xb9\x1e\x6c\xdc\xa3\xd8\xd4\x0e\x6a\xeb\x89\xd4\x9a\x08\xcc\xc2\x3a\xed\xcc\xa1\x64\x2f\xa1\x6d\x16\x09\x9c\xe7\x9d\xae\xd3\xd3\x6d\xe9\x03\x60\x3d\xd5\x96\xee\x98\x06\x38\xf7\xd1\x8b\xcb\x68\x1e\x80\xb2\xb4\xd8\x64\x30\xec\x35\x31\x23\x4e\x05\xfe\x34\x06\x67\x9d\x91\xaf\xcc\xc8\x57\x7a\x85\x38\x36\x68\x80\x09\x1f\x71\xaf\x7a\xac\x08\x07\xbc\x47\xb9\x04\xed\x17\xd1\x8a\xc5\x5f\xc9\x9e\xc9\xd6\x2f\xb6\x76\x7b\xd4\x59\xe6\x59\x99\xb5\xcd\xd0\xa3\xed\xa2\x90\x39\x7c\x2a\x47\xef\xa1\x11\xa6\xef\xd1\xe1\x1e\x79\xf5\x96\x00\x24\x5d\x9c\x32\xad\xb4\xf0\xbc\x6a\x52\x94\xe2\xaa\xfa\x05\xc1\x2f\x0e\x87\x3e\x17\x10\x27\xf4\x89\x03\xbf\xc4\x0c\x9c\x33\x8c\x3b\x86\x91\x46\x29\x21\x96\x30\x44\xfe\x27\x42\xb6\x81\x64\x68\xe1\xe4\x00\x5a\x63\x54\xd6\x61\x0d\x2e\x03\x0c\xd6\x4b\x6f\x93\xf4\x19\xa3\x13\x5d\xf5\xfc\x0a\x0d\xa5\x24\xa1\x41\xcc\xe7\xc5\xea\xed\x15\x18\x94\xc6\x39\x7c\x78\x9c\xd7\xbe\x0d\x21\x29\x0c\x5f\xf1\xa6\x44\xf0\x61\x27\x57\x40\x88\x62\xa7\xc4\x06\x48\xc5\x00\x53\x1c\x14\x74\x3c\xd5\x07\xd5\x5a\x01\x88\x22\x3a\x12\xa8\x48\x1d\x2c\x74\x78\xda\x23\x94\x61\x1f\xd1\x19\xbf\x21\xbc\x7f\x84\x88\x82\x89\x19\xaa\xe3\x19\x09\x6d\x04\x40\xf5\xd1\xb1\x10\xab\xc8\xa5\xac\xd5\x4e\xac\x9c\xab\xde\x3e\x60\x4d\x67\xc7\x59\x93\xae\xaf\x94\x0a\xda\x19\xc2\xab\x62\xc7\xc7\xbc\x04\xaf\xd2\x92\x89\xd0\x48\x2c\x5c\x2c\x05\x13\x91\xb2\x99\x74\xce\x07\xa1\x91\x5f\x86\x73\x6e\xcc\xca\x12\xea\x3a\xf0\x55\x55\x59\x86\x93\xe3\x2d\x48\x1a\x65\x0d\x0b\x2f\xc8\x68\xe6\x33\x5b\x46\x55\xa7\xac\x51\x41\xab\x96\xd7\xdd\x6e\xa2\xb9\x1d\xcf\x7c\x3c\xa3\x27\x1b\x1b\x57\x66\xb6\x85\x08\xe1\x55\x87\xd6\xdb\xd0\x30\xf0\x78\xb3\xea\xdc\xe5\x8b\xa5\xbe\xc3\x67\x14\x2d\x51\x1c\x8c\xa5\xb0\x24\xbc\x04\xe7\xcf\xb4\x70\xca\x01\x49\xa3\x6a\x51\x5d\x25\x43\xa6\x6e\x77\x5c\x6e\xce\x24\xb0\x51\x0c\x3f\x97\x4a\x70\xd3\x62\x1c\xbb\x90\x13\x33\xda\x24\x40\xe4\xc3\x0b\x94\xac\x64\xa5\x44\xb5\xe7\x03\x4d\x4b\x1c\x6b\x64\x04\xdf\xb9\x32\x72\x49\xa1\xe4\xbc\x38\xba\x77\x99\x4a\xd3\x61\xa5\x5f\xd5\xed\xb4\xa7\xaa\x33\x45\x80\xc7\x0b\x12\x7a\x60\xdd\xf4\x5d\x05\x60\x1a\x13\x38\xab\x19\x3c\x45\x0d\x34\x3f\x17\x2c\xf2\x07\xd1\x72\xff\x30\x1a\x39\xb8\x87\x1a\xa1\xaa\x84\x1f\x12\x58\x98\x38\x54\x0d\x53\x9f\x86\x35\x8b\x4d\x39\x4b\x46\xfa\x6c\x29\xd2\x34\xb3\x1b\x7f\xd5\x34\xfa\xd9\xc1\x8a\x7b\x07\x1a\xc8\xf3\xa0\xed\x0d\x6d\xa2\xb5\x64\x62\xed\x62\x3a\x1c\x66\x06\x38\xf6\xd8\x7e\x2a\xd6\xce\x93\x56\x92\x1b\x0b\x38\xb8\x4b\x03\xf8\x77\x18\xcf\x4d\xb4\x12\x4b\xb8\x99\xf7\x71\xc2\xb5\x30\xee\xf8\x9c\x7b\x4c\xb5\x15\x0d\x32\x9c\x41\x79\x88\x55\x4e\xab\xc1\x59\x0b\xb0\xd3\x70\xbc\x36\xe1\x78\x03\x29\x13\xd2\xcd\xfd\x69\x06\x00\x54\x46\x76\x28\xa7\xab\x34\x47\x51\x50\x5f\x6c\xbf\xf2\x89\x95\x99\xb7\x19\xfb\xf6\x54\x3d\x2b\xb9\xc6\x94\xe1\xdb\x81\xf5\x98\xbf\x7b\x4d\x99\x9a\x97\xa0\xff\x7a\x7e\xf6\x61\x8c\xe0\xf1\x67\x33\x28\xc2\xbd\x46\x4e\x77\xcb\xe0\xaa\x43\x72\x73\x70\x9f\x4e\x6c\x12\xb8\x8e\x7c\xfb\x9f\x66\x00\xb5\x14\xd7\xf7\x85\xab\x32\x2e\xaf\xd5\xf9\xb0\x23\x7e\x04\x97\xf7\x0c\x83\xdc\x2b\x9d\x2a\x3f\x43\x2e\x8d\x61\xd9\x05\xd5\xba\xb6\x74\x2f\xa1\x26\xd1\x8f\x72\x60\x03\x7a\xf4\x81\xf2\x74\x6d\x38\x57\x9a\x0a\xf4\xc9\x4d\xfe\xb8\x70\x48\xe3\x53\x9b\x6b\x43\x97\x2a\x23\xa2\xf0\xfe\xb9\xf6\x98\xd3\x5e\x65\xe9\xf3\x48\xc7\x68\x06\x6a\x44\x6e\x7d\x36\x1f\x5b\xd2\x8d\x9b\x9d\xe0\xb0\x73\xdb\x29\xee\x16\xb4\xbc\xd5\x5e\x5f\xd3\xb2\x67\x8f\x06\x3b\xb3\xb3\x4b\x2c\xf2\x42\x42\x93\x31\x2e\x58\xf3\x72\x8d\xaa\x8c\x77\x75\x6b\xdf\x05\x85\x47\xb5\x27\xc4\x83\x23\xc8\x16\xfd\xf4\xc1\xc1\x3d\x84\x2d\xeb\x5a\x2c\x4e\x01\x3f\xbf\x4e\xd3\x5b\xf0\xbf\xe1\x92\xae\xeb\xe2\xea\x4a\xd3\x78\xe8\x60\x1f\xd9\x21\xfe\x60\x9f\xb7\xd4\xb5\x6c\xa7\x48\xce\x83\x1f\xba\xb7\x81\x03\x19\xf3\xac\x33\xd4\x17\x95\xdd\x77\x97\x6c\x3f\xae\x7c\x5a\xeb\xac\x43\xc6\xdc\x1d\x33\x8f\xbd\x7e\x4a\x4c\x2e\xeb\xd0\x43\x2f\x80\x98\xcb\x20\x5b\x5c\x05\x9d\xe4\x04\xf7\x40\xb6\x0d\x00\x64\x60\xb3\x29\xbd\xd5\xe7\x34\x3c\xa3\xbd\xa2\xfd\xcc\xac\x3e\x47\x4a\xc9\x1e\xb2\x4c\xb6\x08\x29\xac\x37\x7c\xac\x60\x41\x6d\x97\x78\xb2\xeb\x24\xd0\x06\xfd\x80\x73\xfd\xd2\x16\x66\x81\x06\xe3\x9f\x06\x91\x70\xea\x43\xbc\x2a\xb0\x5e\xb0\x5b\xce\xcb\x2f\x7e\x65\xf6\xeb\x37\xfb\x65\x74\x49\x65\x47\x97\x54\x0f\x82\xc1\xcf\x1c\xc8\x1e\x28\x53\xdb\x35\xe0\xaf\xbd\x96\xfb\x95\x3b\x24\x02\x12\x85\xad\x44\x26\x1c\xfd\x22\x22\x2a\x9f\x6e\x44\x26\x09\xad\x26\xa2\x12\x2a\x93\xe4\x58\x8b\xd0\xd0\x11\x58\x03\x2c\xd6\x2f\xbd\x42\x87\x67\xd6\xa0\x1f\x04\xa4\x48\x6c\x05\x9a\x27\x34\x2a\x07\xdf\xd9\xac\x47\x26\xcd\xd9\xf4\x9c\x5f\x84\x25\x19\x42\x89\x8f\x46\xe4\xda\xea\xb5\xa0\xf1\x8f\x4f\xb4\xe0\x4b\x63\x91\xbd\x13\x6c\x4a\xaf\x8d\x7a\xaa\xf7\x54\x11\x51\x6e\x38\xd8\xbc\x54\xc5\xaf\x40\xbd\xf9\xdf\xbf\x85\x5e\xc7\x01\x5a\x8c\x4f\xd6\x5c\x15\xa2\x04\x46\xe6\x7b\xd1\x30\xc6\x27\x2f\xbf\xff\xe9\xab\x7f\x7e\xff\xdd\xeb\xa7\xdf\xfc\xfe\xf4\xd7\xaf\x5e\x59\x27\x5c\x90\x2e\xf0\xc0\xd5\x97\xf5\xe7\xe7\x3f\xbd\xfe\xea\x99\xc9\x38\xaf\x5d\xb6\x3c\xf6\xdb\xe5\x5b\x44\xe8\xdd\xfb\x5c\xd1\xdb\xc8\x93\xcb\x6d\xd0\x1d\xe8\xda\xc0\xe9\x45\xbd\xff\x13\xbb\x16\x54\x4d\x6e\xf1\x6f\xe0\x97\x21\x60\x99\x54\x3a\x97\x02\x2d\xde\xc9\x7b\x90\x26\xdc\x86\xfe\x76\xc0\xdb\x82\x3d\xb0\xc0\xeb\x71\x08\xde\xd2\x44\xc2\xf4\x95\x8b\x35\xf8\x19\x4d\x24\x94\x37\xee\x90\xca\xc3\x41\xa6\xe9\x0a\xfd\xdc\x80\xe0\x61\x4f\x78\x6e\xe7\x7c\xcb\xd4\x44\x81\xc8\x81\xae\x59\x01\x47\xcb\xf9\x76\xc8\x9a\xf3\x2d\xdb\x06\xbc\x7e\xf7\x1e\xde\xb1\xe9\xf9\xee\x62\x6d\x57\xc6\x0e\x9f\xf4\xeb\xc5\x6e\x09\x8c\x73\xc6\xb6\x21\x8f\xa5\x47\xb0\xb1\x1d\x80\x1e\xe2\x19\x3f\x62\xf3\x86\x75\x9a\x0e\x37\x96\xc3\x78\xed\x1c\x81\xeb\x36\xa7\x29\xe8\x4f\x06\xb6\x12\x8d\x57\xbc\x1b\xc9\x3f\x5d\x0b\x42\xe8\x77\x27\x92\xa0\x47\x4a\x4c\x03\xf0\xe9\x30\x0a\x69\xfa\x3b\xd7\xc3\x7f\x23\xc5\x3a\x2b\xa2\x1d\x8f\x6a\x37\x38\x4a\xae\x35\x77\xe8\x90\x40\xd7\x45\x6f\x3a\x8a\xa0\xb7\xec\x66\x54\xf4\x6a\x44\x0c\xae\x2f\xa6\xf3\x9b\xd0\xcc\xe3\x66\x74\x3d\x7e\x32\x25\xf9\x2d\xeb\xe5\x9b\xd2\xdb\xd1\xf5\xe8\xc9\x94\x50\x0f\xd0\x76\x63\x35\x54\x6f\x8f\xe4\xb8\x13\x28\x08\xc7\xc5\x1a\xb5\x7c\xde\xea\x48\x38\x02\xb4\x88\xce\xb1\x60\xfc\x6c\xcc\x17\xbf\x32\xe1\xbe\x7f\x63\xf2\x04\xac\xb0\x53\x70\x8d\xea\xb2\xd0\x0e\x61\x95\xe3\x28\x05\x55\x61\xa5\x51\xdc\x6f\xb4\xd6\xdb\xdc\xd5\x9d\xa6\xea\xa1\xfb\x71\x38\x70\x1f\xf5\x6b\x9a\x72\x17\xf5\xeb\x20\xee\x6e\xd1\x3d\xa9\xf5\x5e\xbe\x16\x2c\xbb\x16\x7f\xda\x89\x51\x4d\x1e\x66\x3b\x31\x9a\x11\x3a\x1a\xed\x04\x39\x1e\xe9\xa3\xe9\x94\x90\x3c\x73\x25\x8e\xc2\x21\x18\x31\x49\xc8\xf1\x58\xcc\xaf\x05\x1b\x4f\x9e\x3c\xce\x6b\xfd\x35\x7b\x92\xaf\x30\xe4\xaf\xf9\x16\x8b\x1f\xcf\x1e\x3e\x46\x12\xf5\x8d\x68\x9d\xcb\x70\x3e\xa2\x6f\x21\x8b\x60\xe2\x1c\x10\x31\x75\x1c\xbc\x09\x4f\x64\x1d\x53\xd4\xb7\x5d\x23\xf9\xb3\xa0\x98\x45\x5c\xc8\xf2\x48\xa3\x32\xf8\xbf\xf7\x45\xd9\x74\xa4\xcb\x0c\x5e\x6b\x96\x7f\x04\x38\xcb\xdc\x17\x32\x64\x71\xa1\x87\x03\x8f\x1d\x29\x99\x04\x51\x98\x67\x46\xc5\xba\x4c\xdd\x94\xa0\xd5\x64\xe5\xa0\x61\x4f\x96\xc0\x9a\x72\xbf\xd0\x0f\xa7\x72\x92\x63\x27\x52\x26\x87\x03\x86\x83\x57\xa4\x0a\xfe\x78\x81\xba\x65\x9b\x4c\x5b\x43\xb1\xe6\x7c\xf7\x4c\xee\x6e\xfb\xaf\xb8\xc5\x92\xde\xdb\x5e\xbe\x50\x4b\xe0\x6a\xff\x2e\xb2\x4a\x65\x71\xbb\x6d\xbb\x68\x37\x06\xdb\xe6\xee\x30\xfe\xee\xec\x0d\x9c\xfa\xd1\x00\x93\x56\x53\x1b\x79\xcd\xd5\x56\x54\x57\xaf\x8c\x97\x9a\x8f\x5c\xcb\x71\x73\xb9\xe1\xa7\x86\x2d\xe1\x4b\xeb\x79\xca\x4f\xba\x1b\xb0\xb8\x72\xfd\xc6\x2d\x44\xd5\xb4\x97\x2e\xc0\xa6\xf0\xd0\xa3\x17\x18\xe0\x76\xeb\xaf\xed\xf4\x56\xd1\xf4\xd6\x30\xa1\x4a\x65\x8a\x56\xc6\x9d\x04\xb9\x64\xd3\x34\x55\x0a\xb4\x44\x94\xcc\x08\xb9\x60\xce\xcd\xa6\xf5\x5c\x36\x9e\x21\x19\xf1\x7b\xef\x66\xc2\x91\x77\x70\x40\xbc\x58\xeb\x7d\xe4\x81\xfb\x45\x4b\x90\x1f\x32\xbb\xdd\x9b\xb4\xf9\xb6\xb8\x05\xca\x8c\x0a\xa6\x74\x43\xd5\xa4\x91\xb5\xca\xe2\xfa\xec\xe6\x53\x19\xb7\xee\x30\xac\x5f\x0c\x72\x24\xb4\x66\x2f\x11\x79\xd9\x1b\x37\xcc\xda\x46\xc2\x46\x1d\x55\x2d\xe4\x92\x36\xfa\xcf\x78\xb6\xa4\x7b\xa6\x54\x86\x0e\xc4\x68\x61\x0b\x34\x8e\x3f\x87\x85\x9d\xb7\xf9\xfe\x72\x9a\xef\x2f\x99\xf3\x71\x2f\x95\x73\x4b\xe6\xb3\xd1\x15\x13\x41\x61\x30\xa6\x74\xe3\xfd\x8e\xcd\x6d\x4a\x7d\x57\xe8\xd1\xca\x1b\x17\x80\xc3\x37\x90\x17\x9a\xe6\x19\x8f\x6b\xaa\x26\xcd\x0e\x94\x72\xc6\x63\x49\x1f\x51\xb3\xfa\x37\xf3\x55\x5e\xd2\xcd\xbc\xcc\x57\x24\xf0\x41\x86\x2b\x5b\x0f\x75\xe0\xae\x40\x44\x23\x67\xd2\x2c\x4c\x41\x9c\xaa\xc3\x81\x93\x25\x0d\x3d\x1c\xbc\x17\x91\x47\x66\x4d\x45\xcf\xb9\x1d\x71\x20\x8b\x47\x91\x91\xe7\x78\x46\x1f\x64\x3c\xf2\x67\x3b\xca\x66\x9a\xae\x0b\x3d\xc7\x9b\xec\xab\x6d\xae\x0f\x78\x3e\x51\x32\x80\xb8\x17\xde\xd3\xac\xf2\xd8\xb0\xde\xdf\x2b\x1f\xf8\x28\x25\xc3\x25\xfa\x5e\x93\x6c\xce\x7c\x10\x1a\x17\x79\xac\x1f\x83\x1d\x13\x44\x8c\x95\xef\x01\x19\x23\x7a\xde\xca\xc1\x17\x73\xe3\x4a\xc5\x25\xd7\x37\xfa\x88\x41\xf9\x93\xd5\x16\x2c\x97\x26\xab\x2d\x41\xe7\xf5\xa1\xbb\xa6\xef\xfb\x39\xc2\x08\x37\xd0\xf5\x80\x17\xa1\x0e\x04\x8e\xee\xaa\xe5\xc0\x70\x63\xcd\xe4\xbc\xd2\xef\x11\x73\xee\x2a\x42\xe1\x27\x1c\xb7\x8a\x78\x7f\xbd\x7a\x77\x81\xc5\x1f\xda\x1c\x86\x07\x9a\x47\x4c\x77\x3b\xb0\xd3\x57\xfd\x57\x4f\x6e\x6d\x91\xe0\xa1\xa7\xab\xed\xa8\xd6\x7d\xcd\x5d\xcc\xc8\x70\x38\xc7\xca\xe8\xd1\xea\x94\x41\x15\x4f\x85\x41\x63\x91\x2b\xd0\xbb\x65\x1f\x42\x01\x88\x0f\xff\x1e\x42\x08\x7d\x1d\xb3\x32\x5f\x07\xd9\x3b\x2e\xa5\x79\xa0\x65\xec\xbd\x63\x18\xa5\x63\xb0\x24\x34\x78\x58\xc6\xea\x1b\x55\xbf\x21\xe6\x48\x82\xba\x9d\x8e\xf0\x09\x75\xfe\xd8\x6d\xa7\x85\xda\x75\xae\x22\x74\x11\x5f\xf2\x6a\x34\xa2\x0e\x86\x1b\xd8\xb2\x01\xe4\x73\xbc\xd7\xa6\xcc\x38\xed\x99\xac\xb6\xa0\xcf\x66\x96\x50\x9a\x26\x09\x63\x0f\x32\x5c\xa7\x24\x4d\xb3\xa1\x9e\x42\x7d\xc5\xaf\xae\xbd\x0a\xf4\x56\x96\xc0\x17\x40\xe3\x6f\xd4\x65\x09\x2a\xfb\x56\x78\x6b\x33\xaf\x68\x10\xec\xdc\x7a\x5e\x2f\xf8\x12\x19\xf6\x5e\x44\x0c\xee\x6b\x05\xb9\xcb\xba\x36\x6b\xb8\x5f\x01\xc1\xf7\xbf\x1e\x70\x67\xa1\x09\xd0\x00\x10\x0d\x5f\x26\xf6\xb5\xca\x38\xa1\xcf\x94\x97\x3d\x0b\x56\xcd\xc1\x17\xf1\x6c\x20\x3a\xfe\xc2\x05\x40\x30\xe8\x06\x83\x40\xba\xce\xb8\xb5\xdf\x41\x37\x1e\x81\x3c\xba\x67\x0b\x4a\xc6\xf5\xe1\x0f\xfe\xc4\x82\x9d\xf5\x9b\xca\x4a\x7d\xf8\xe3\x8b\xde\x13\x06\xf5\x11\x65\x8e\x38\x67\x06\xfe\x1d\xb0\xdf\x41\xdd\x7d\x05\x1e\xbc\x8d\x07\x5f\x82\x5e\xdf\xb8\x71\xe4\x4b\xe8\x96\x3d\xc8\x4a\x42\xd7\x4c\x64\xa5\xf7\x53\x4a\x77\x0c\x13\x8c\x31\x1b\x8a\x83\x37\x7a\x28\xb8\xd1\x51\xca\xa6\xb4\xc8\xa6\xd4\x66\x22\x1e\x5b\xcd\x15\x44\x51\x94\x3e\x76\x69\x1c\xc0\xbc\x59\x70\xf6\x29\x14\x16\x34\x9e\x91\x81\xcc\x36\x14\x1d\xbb\xd1\x35\xa1\x3b\x7d\xef\x9a\xa2\xb1\x39\x74\x47\xe8\xb5\xd3\x87\x77\x2d\x32\x91\xd7\xde\xd3\xf2\x8a\xb1\x8d\xa6\x67\xc0\xa3\xb9\x69\x84\xcc\x56\x14\xad\x15\x02\x97\xc7\xab\x2d\x19\x6d\x47\x51\xf0\x1e\x0e\xcd\x75\xe0\x88\xea\x86\x15\xd9\x2c\x6a\xe8\x4d\x34\x3b\xfd\x05\xe8\xa9\xa2\x27\x2b\x2d\x17\x53\x3d\xa3\xe8\x52\x26\xea\xc7\x68\x46\x6f\x7c\x4f\x3e\xa9\x07\xba\xb0\xd1\xa6\xdb\x06\x5b\x7e\x34\x88\xa3\x19\xdd\x99\xce\x7d\x4a\xeb\xf4\x9c\x6c\xfb\x0a\x5f\xe3\x7e\xb8\xed\x0c\xce\xee\x72\xd6\x99\x39\x5d\xa9\x5e\x5f\xdd\xbe\xde\x92\xe3\x7d\xfb\xe4\x27\x77\x15\x64\xde\xca\x29\xab\xa8\xa0\x81\x1d\xcf\x5b\xbe\x6e\x19\x00\xda\xe0\xd0\x0e\xd0\xb8\xb3\xb0\x51\xc6\x51\x6b\xa3\xcf\xd0\x21\x13\xd6\xdd\xaa\x4c\xd3\x66\xd2\x6c\x8b\x9a\xaf\x5f\x8a\x46\x0d\xea\x34\x1d\xee\x35\x1d\x8b\x29\xe9\x9e\x50\x6e\x3e\x2b\xba\xd7\xd4\x0c\x6c\x79\xa3\x42\x15\x02\xc1\x07\x34\xc2\x64\x75\x4d\xd4\xb6\x96\xef\x80\x9e\x79\x5e\xd7\xb2\xce\x92\xd7\x5b\xd1\x9c\x59\x35\xb6\x33\xd1\x9c\x15\x65\xcd\x8b\xf5\xed\x99\xa8\xce\xf6\x0d\x9f\xa0\x19\xb0\x5c\x31\x45\x75\x01\x8c\xd3\x02\xa4\x6a\x70\x75\xd1\x3f\x0c\x38\x77\xbf\x85\xee\xcf\x2a\x8e\x85\x2b\x4e\x05\x37\x1a\x6d\x5d\x05\x50\xdc\x5d\x06\x5e\x06\x2d\x86\xb8\xf3\x99\x38\xff\x23\x7f\x4b\x7a\xf4\x75\x43\x4e\xbf\xce\x18\xa2\xbc\x0b\x87\x2e\xba\x96\x15\xbe\x95\xf4\x8f\x7d\xd5\xf9\xf9\x05\xdf\xa9\x2d\x9b\x3d\x9c\x62\x50\x59\x34\xea\x5b\xb9\x7e\x2d\xae\x0d\xcc\xa3\x0e\x78\xc5\x4b\x08\x08\xd2\x7c\xbf\x8b\xa2\x0d\x00\x50\x10\x5f\x8b\x2b\x51\xc5\x69\x30\xc8\xa7\xbb\xe2\x15\xaf\x0b\x80\xb4\x80\xdf\xd7\xc5\xfb\x2f\x7d\x10\x3f\x1c\x02\x39\xfa\x77\x91\xb2\x12\x7a\x3e\xd0\x6f\x37\x63\xe7\xaa\x64\x0e\xa4\x17\xd5\x1b\x25\xff\x92\x3b\xaa\x10\x29\xc0\xa3\x3d\xb5\x5f\x82\x1e\x13\x0d\x48\x3b\xea\x28\xb8\xd1\x8c\x50\x58\xf0\x21\x35\xf1\x69\xf9\x8e\x08\xbc\x1f\x40\xa8\x0b\x8b\x80\x74\xee\x24\xfc\x28\x7e\x7f\x90\x71\x62\x68\x38\x34\xe4\x1d\xf0\xc9\x4e\xee\x22\x75\xa9\x6f\x44\xdb\x8b\x01\x9f\x6c\x45\xa3\x64\x7d\x3b\x10\x66\x12\x4d\xa9\x0c\x3d\xab\x4b\x5a\xd0\xc6\xdb\xf7\x81\x4f\x22\x61\x27\x8a\x81\xaf\xe9\x60\x56\x98\x9a\x48\xf8\x02\x6d\x41\xf3\x95\x25\xa3\xc4\xc7\x58\xdf\x9e\x53\x92\xa6\x22\x5c\x15\x97\xcd\x18\x48\xc8\x79\x44\x7e\x98\xd6\x01\xb4\x28\x58\x62\xe5\x4f\xa6\x53\x72\x38\x24\x7f\xea\x2d\x93\xa0\xe3\xc3\xfe\xd7\xda\x3c\xfb\x0a\xa4\xd9\x52\xdf\x94\x0f\xec\x17\xc9\xf1\xc3\x5d\x40\x43\x17\x65\x86\x73\xee\x02\xe2\xa4\xfa\x40\x1c\x62\xc8\x22\x8a\x18\x3f\x5a\xda\xac\x26\x27\xce\x44\x58\x29\xba\xb6\x3a\x66\x82\x06\xc3\x49\x08\x29\xd8\x03\xef\x10\x9e\x50\x4d\xae\xd9\xd5\x88\x4b\x0e\x49\x38\x17\xa6\x5f\x76\xfa\x2d\xa7\x24\xbe\x11\x72\x97\x19\x2f\x33\xb3\xbe\x83\x7b\x6f\xcf\x1e\x64\x02\x9b\x01\x0f\xd4\x7d\x9a\xee\x4d\x73\x0f\x87\x0f\x7a\x84\x1a\x5e\x52\x93\x82\x4a\x76\x67\xca\xcb\x17\xa6\xac\x25\xf5\x1b\x2c\x17\xc1\x6e\x3b\x9a\x5c\x58\xb3\x24\xe7\x22\x1a\x2e\xe1\xcf\x85\x73\x62\xa2\x40\x5e\x92\x11\x93\x71\x31\x5d\xba\x96\xc4\x09\x8e\x61\xc9\xb5\x4e\x1f\x6c\xf2\xd1\x48\xc4\x7b\x9c\x46\x2b\x8b\x89\xe8\xb0\x69\xfc\x88\x8b\xf0\x98\xa1\xd1\x52\x16\xad\xd3\xc5\xae\x35\x5a\x80\x9d\x39\xa7\x89\x59\x9a\x4f\xd7\x6b\xbe\x0e\xcf\xc8\x17\xa7\x37\x19\x95\xac\x4a\xd3\xca\x14\x35\xa8\x59\xd8\x02\xe0\x3f\xb7\xab\x05\x9d\x8f\xb8\x37\x71\x77\x6c\x16\x97\xfe\x70\x38\x01\x03\xc1\x94\xdf\x27\xe6\xd8\x82\x5d\x24\x0e\x07\xd8\xa1\x02\x8c\x5b\xc2\x37\x22\x63\x55\x1c\xa0\x53\x74\x38\x52\x19\xd1\xe9\x7a\x82\x11\x75\x4a\x1f\x1b\x63\x37\x02\x61\xd3\x2f\xd8\x27\x6f\xf8\x23\xd8\xfc\xb8\x75\xab\x17\xf4\xdc\x2c\x99\x68\x8d\x8d\x67\x4b\xa6\xf2\x0f\x22\x53\x6e\x01\xc7\x93\xef\x4e\x32\xda\x1e\x69\x49\xc3\xd5\x50\xd3\x2a\x4d\x87\xb3\xa1\xee\x1a\x00\x76\xfe\xc4\xd7\x32\x4d\xbf\xd2\x8f\x5f\x3c\x27\x83\x19\xff\x10\xdd\x21\x0f\x00\x2d\xd7\x0f\x26\xb8\xde\x02\xe6\x2b\x28\x4b\x2b\x5c\xc3\x61\xfe\x97\x9d\x15\xa3\x16\x49\xb3\x2b\xaa\xe6\xf7\x64\xc4\x27\x62\xad\x1f\x11\xd3\x01\xc7\x37\xa9\x93\x18\x70\x6b\x22\x17\xb8\x18\x36\x61\x23\xa4\xd5\xf5\x73\xc5\xad\x06\xfd\xee\x9e\x5c\x17\xf5\x5b\xbe\x7e\xa5\xcb\x4e\xd3\x2c\x13\x87\x43\xd6\xad\x8d\xdd\x1d\x09\x59\xc8\x25\x8b\xd2\x13\x3a\x1a\xc9\x10\x86\xee\x73\xaf\x93\x18\xd9\x18\x39\xae\xaf\x41\xe6\x0b\x3c\x2a\xd7\x84\x2f\xea\x25\x96\x5a\x4f\xf8\xfb\x5d\x29\x56\x42\x95\xb7\xcf\xf4\x10\xf3\xf5\xdc\xb0\x16\x1d\xdd\x5a\x13\x92\x03\x1a\x11\x8e\x19\x40\xfa\xb9\xe3\xdc\xf1\x74\x10\x77\x32\xe7\xbe\x69\xff\x88\x66\xa4\x0f\xf5\xb1\xdd\x67\x64\x31\xf7\xf6\xa3\xd2\x74\x0d\x6a\xd5\x45\x3c\x9d\xf3\xd1\x48\x90\x0a\x9b\xf6\xb9\xc8\xea\x85\x58\x06\xfc\xdd\x23\xe2\x96\x54\xec\xad\x72\xca\xcf\x41\x05\xf0\xd3\x59\x9a\xd6\x2d\x1c\xe9\x3a\xac\xc2\x3a\xb2\x37\xda\x7b\x0b\xb1\x34\x32\xa8\x22\x10\xd3\x21\xbc\x45\x11\xc2\x5b\xdc\x79\x15\xd5\x62\xd1\x2c\x69\xc9\xa6\xe7\x65\x88\x80\x51\xea\xc7\x94\x5c\x94\x76\x42\x18\xdb\x9b\x2f\xa7\xca\x77\xc6\x07\x12\x7b\xb8\x37\xaf\x97\x02\x54\x67\xc5\x92\x15\x81\x71\x95\x1b\xf8\x5f\x1c\x61\xdf\x33\x7a\xbc\xa7\x57\xdc\x76\xc7\xd2\x2e\x66\x40\xeb\x79\x2f\xcb\x1e\xc1\x28\x25\xc9\x65\x70\xa3\x15\xcc\x5d\x7a\xb4\x61\x8b\xe5\xa0\xb2\xea\x84\xe6\xe6\x6a\x8e\x9e\x17\x8b\xfa\xba\xc1\x40\xed\x2d\x1b\xb5\x58\xec\x97\x74\x65\x9c\x4e\xe2\x23\x02\x8b\x01\xa2\xb0\x34\x77\xb0\xcc\x4b\xfd\x20\x07\x7a\x10\x6d\xe6\x8f\xfa\x3c\x72\xc6\xf8\x9a\xce\x2f\x49\xb6\x62\x9b\xc9\x75\xa1\x56\xdb\xec\xe1\xff\xe0\x42\xcb\xfe\xb5\x1e\x91\x07\x0f\x35\x89\xf2\x32\x53\x14\x65\xfa\xd9\x6a\x31\x5b\x12\x63\xc7\xf4\x20\x6b\xc8\x62\xb3\x04\x53\x2b\xba\xe6\x25\x57\xfc\x4c\x7f\xeb\xd7\x88\x5b\x56\x1e\x47\x56\x44\x3e\xce\x83\xdb\x06\x99\x75\xc6\x07\x87\x51\xc9\x53\xc0\x91\xbe\x98\x0e\xe4\x50\xff\xa8\xe1\xc7\x5c\x6f\x7e\xaa\x58\x4d\x72\x0c\xd6\x33\x67\x1c\xec\xd7\x24\x64\xe8\xfe\x2e\xc0\xb7\x7c\x2b\xa8\x3e\x1c\x54\xf4\xae\xfb\xd9\xb5\x89\x0a\xeb\x02\x4c\x00\x4e\x94\x3e\xe4\xd1\x23\xd7\x75\xec\x6c\xf4\x70\xe0\xc6\x0a\x87\x10\xfa\x23\x28\xfb\x1b\xe6\xf0\xbf\x0d\x2d\x62\xc5\x5f\x19\x81\xa2\x05\xf0\x89\x23\xd6\xe7\x6f\xa7\x56\xdd\xa7\xd4\xea\xfc\xbe\x77\x79\xa4\x72\x34\x22\x95\x3e\x08\x5d\x53\x0c\x93\x54\x2e\x29\x70\xee\x11\x15\x95\x0c\xa0\xdd\x96\x07\x5a\x75\x78\xa0\x11\x2b\xfc\xcb\x1e\xfa\x20\xa8\xda\x1c\x7d\x64\x20\x16\x6a\xc9\x6a\x1a\x15\x2d\xba\x45\x87\xe3\xf0\x75\x50\x34\xe4\x7b\x8e\x7c\xf8\x28\xd1\x83\xb6\x20\xc4\xdd\xcd\xfa\x5a\xa3\x82\x3d\xc8\x2a\x32\x10\x9a\xb0\xb0\x44\x6c\xb5\xa8\xc2\x0b\x96\xfe\x6a\x8b\x20\xf9\x8f\xf6\x33\x00\xa7\x71\x15\xb8\x74\xf4\x05\x02\x2b\x68\xca\xd2\xdf\xf9\xe8\x9c\x4d\xac\xf3\xef\x8a\xef\xa2\x12\x7e\xf5\xec\x81\x2b\x74\x99\x0b\x6c\xc7\x57\x31\x98\x5d\x42\x90\x57\x99\xa6\x3a\x91\x1e\x9e\x53\xe9\x08\xac\xe8\x7e\x83\xce\x3b\xec\x64\xae\x4c\x6f\x0d\xbe\x71\x1e\xa2\x62\x87\xc2\xda\xc5\xb2\x2d\xf7\x8a\x60\x7f\x23\x31\x97\x15\x13\x36\x70\x05\xe8\x9b\xcf\x8a\x07\x7d\x08\x8a\x05\x8f\x14\x69\xc2\x1c\x08\x07\xfc\x76\x8f\xcb\xeb\x7b\xc6\x80\xc2\x25\x8f\xc3\x70\x7d\xff\x30\x50\x5c\x9d\x84\x5a\xaa\x6e\xc8\x6c\xa7\xe7\x6e\xed\xda\x51\x68\x51\x7e\xe3\x19\xc9\xd5\xd1\xce\xba\x31\xd7\x81\xb6\xbe\x11\x45\xa3\x6f\x6d\xfd\x22\x71\x1b\x15\x05\x04\xad\xdd\x8b\x5d\xbd\x98\xce\xc7\xb3\x7c\x46\x06\xff\x84\x25\x21\x8d\xf2\x30\x60\x50\xd5\x9a\xe6\x62\xcc\xb9\x20\x38\x1c\x0c\x4b\xfa\x59\x07\x6b\xf0\x9f\xe6\x86\x57\x8e\xb6\xd2\x95\x11\x74\xbb\xcc\x4b\x60\x1f\xfb\xbd\x8f\x2b\x2d\x40\x38\x64\x33\x1a\x44\xb4\x51\x12\xd9\x70\x4a\x6f\x71\x30\x89\x63\xf8\x46\xe8\xc8\x49\x8c\xa2\xf3\x77\x20\x85\x7c\x8f\x70\xa5\x23\xf7\x68\x16\x26\x34\xfd\x45\x76\xb9\xbd\xf2\xa9\x05\x11\xee\x9e\x3e\x56\x4c\x18\x1c\x3c\x0d\x53\x6d\x32\xbd\xe7\xec\x02\x0c\xa0\xe8\xc0\xda\xb3\x5a\x57\x5e\x58\x59\x4e\x93\xa6\x56\x68\x0a\xed\xa1\xa5\x4d\x00\x93\x07\xd1\xf0\xa5\x23\xcf\x35\xa9\xb8\x1f\x32\x9b\x1b\x40\x65\x30\x25\xe0\x00\x22\x1d\xd9\x3a\xc3\xa8\x24\x84\x0a\x7d\x7e\x9a\x7d\xb0\xa7\xa5\x17\x19\x89\xb9\x3f\xd5\x54\x70\xa2\xe5\x81\x5e\x94\x92\xe1\x7d\x82\x57\xd9\x6f\xc8\x84\x01\x86\x37\x52\x0e\x21\x91\x1a\x33\x0c\xa3\xb8\x1e\xae\x61\x14\xbf\x28\xf4\x20\x35\x86\x04\xa2\x25\x4b\x70\x5d\x7c\xc3\x37\x2a\x11\xd5\xd9\x7e\x3e\xdc\x4f\x7c\x50\xbe\x9f\x88\x6a\x55\xee\x1b\x71\xc3\x41\x91\x66\x65\x33\x80\x8e\x69\x2b\x07\x84\x85\x59\x7e\xb2\x1a\x58\x46\x61\x07\xa5\xaf\x87\x43\x56\xce\xf1\xf3\x02\x1e\x6c\x46\x2a\x7b\xa1\xbf\xe1\x1c\xb3\xa9\x95\x3c\x1c\xb2\xd5\x5c\x7f\x5c\xda\x94\x4a\x5e\x62\x3a\xa0\x08\x04\x7a\x1c\xdf\xdb\xf3\x00\xa1\x25\x9f\x57\x60\x39\x4d\xf7\x5d\xf2\x1b\xb3\xc5\xe3\x79\x37\x1e\x17\x03\x4b\x0d\x1e\x11\x21\x4e\x93\xae\xfb\x49\xa1\xe4\xb5\x58\x79\xa3\x0f\x4f\x6e\x6c\xd8\x7e\xb2\x11\xd5\x3a\xab\x2e\xa6\xf3\x59\x3e\x9e\x11\xba\x0d\xc8\x2a\x08\x5e\xe5\x25\x40\x95\xb0\x4a\x4f\xf1\x86\x8e\x2b\xba\x49\xd3\x4d\x2c\x11\x94\x40\xd8\x13\xd2\x8d\x4a\xd3\x6c\xab\x09\x96\x8d\x3e\x8e\xf4\xa8\x5c\x4c\xe7\xdb\x8b\x69\xbe\xbd\x9c\x3a\xc0\x03\x85\x25\xa3\x69\xc2\x11\x0d\xce\x83\x86\xe1\x29\x84\x69\x21\xa0\xcc\x57\x04\xac\xc9\xa1\x49\x6b\x5a\xd1\xf5\x89\xe6\xac\xe7\x0a\x93\x60\xd9\x28\xdc\x72\x26\x2d\x7e\xf9\xd6\x3d\xcb\xb7\x3a\x1c\x66\xb4\x60\x6e\x65\x4b\x2a\xc8\xe1\x30\x14\x69\x1a\x04\x0d\xa7\xfa\xa5\x68\x7f\x8f\x7b\xd2\x8c\x21\x91\xbd\x21\x0a\x38\xf7\x56\x45\xa5\x9e\xaf\x85\xd2\xc7\x17\x4a\xca\xe1\x7d\x18\xf9\xe9\xac\x82\x03\xc8\x92\xef\x9a\xe2\x03\xb9\xe0\x6a\x3b\xc7\xae\x5e\x9a\xbc\x73\xb8\xa7\x1c\x82\xe3\x78\x46\xb0\xb3\x79\x7d\x39\xd5\xcf\xb2\xd5\x96\xb1\xac\x3a\x1c\xc2\x3d\x49\x22\x79\x3b\x06\x5e\xc4\xef\xd2\xf1\xcc\xa3\x42\x8e\x66\x74\x6a\x0a\xd5\xa7\x44\x0b\x2d\x32\xa4\x0a\x84\x34\x62\xd8\xd0\x68\xdc\xf7\x13\x81\x9d\x34\x69\x08\x61\x81\xdf\x69\xfa\x4b\x68\x9d\x2a\x5b\xf7\xff\xaa\xa8\x56\xbc\x44\xdf\x06\xe8\xf8\xd6\x51\xfa\xca\x51\xfa\x46\xfa\x66\x2e\x69\xc7\x0c\xc2\xbc\x79\x57\x2f\xab\x9a\xd8\x62\xd9\x70\x7a\x74\x37\x39\x62\x9d\xb4\x5d\x9e\x00\x55\x4b\x25\xb9\x43\xd0\x15\x5d\x3b\x43\x02\x01\xef\xc4\xac\x9a\x28\x89\x21\xb5\x3e\x51\x31\x84\xbf\x57\x4c\xa0\x9e\xe2\xd9\x74\x88\x9c\x22\xcb\x5a\x62\x92\x1c\x09\x0d\xe9\x86\x8f\x93\x0b\x5d\x2a\xc1\x76\x61\x9e\xdd\x7f\x97\x3e\x42\x79\x2b\xc9\x0d\xfb\xdc\x8d\x5f\xe5\xc6\xaf\x8a\xc6\xcf\x36\x33\xb4\xe4\x75\xd3\x82\xb0\x83\xd7\xd6\xda\xd1\xd6\x68\x77\xf5\xaf\x48\x0a\xd0\x42\x12\x93\x63\x60\x72\x18\x01\x79\xb3\xdf\xed\x6a\xde\x34\x7a\x27\x58\xc5\x36\x38\xb2\x22\x5a\xf2\x23\x24\xa4\xa3\x1c\x81\x21\x61\xd6\x8c\xa6\x51\x1c\x2c\x8a\x42\xcd\xd4\x7e\xa2\xd2\x9a\xd8\x19\x96\x8d\x59\xd1\xb5\x5d\xf0\x1d\x88\x97\xbe\x1b\xcc\x7a\x48\xe8\xbd\xc1\x02\x40\xab\xf0\x06\x53\xf6\x29\x3f\x18\xd6\x93\x9a\x17\xeb\xef\xab\xf2\xf6\x70\xa8\xd2\x74\x3c\x1b\xb2\x97\x59\x45\x6b\xdd\xa3\x4a\xff\xcf\x16\x4b\x42\x2c\x43\xf5\x78\x24\xd4\xb3\x23\x22\xf6\x87\x60\x8b\xc0\x21\x74\x7d\x5c\x1a\x72\xa5\xf2\xad\x91\xc1\xb5\x5b\x21\x8d\x52\xe0\x41\x3b\x25\x14\x1f\xdc\xa2\xe7\xc1\x2d\x16\xfb\xa5\x81\x1b\x54\x19\xbc\xaa\x1b\xab\x71\x73\x38\x40\x10\x2c\x24\x80\x16\xd5\xe7\xba\xf1\x5d\xbe\xd8\xd3\xd9\x92\x6e\x58\x98\x02\xa5\x35\x5b\xe6\x0b\x52\x92\x9c\x67\x1b\x5d\xd2\xb0\x88\x2f\xea\x34\x1d\x6e\x48\x9a\xae\xfa\x5f\xf7\x58\xd6\x91\xd0\x6c\x7b\xd9\xca\xfc\x13\xea\x04\x0c\xb7\xed\xdc\x0d\xac\x73\xe4\x0c\x1c\x09\x15\x46\x5b\xca\xe8\xc3\x0b\xba\x22\x74\x3f\x62\x2b\x4b\x4b\x3f\x3e\x06\x20\xab\xb1\x40\x09\x94\xbd\x88\x1f\x7a\xff\xee\x3a\x17\x97\x6c\x7a\x3e\x1e\x0b\xd2\xe8\xd5\x68\xb6\xda\x42\x2c\xfd\x6e\xd3\x3f\xec\x86\x13\xf3\x45\x92\x2c\x4f\x9c\x5b\x47\x23\xbb\x87\x92\x54\x28\x21\x32\x21\x7a\x55\xce\x86\x2c\x62\x77\x1d\x0e\x49\x62\x83\x16\xd3\xe5\xe1\x30\x1d\xb6\x65\x13\x76\x51\x1a\x55\xa4\x81\x93\x37\xf5\xbf\xf9\x08\x5d\xd9\xdb\xc8\x30\xc9\xec\xcb\x62\xb1\x1c\xb4\x24\x66\xa0\x36\x74\x38\xd8\x65\xec\x1e\xad\x7a\x39\x5f\xcb\xcc\xb3\xd8\x95\x3e\xb9\x90\x5d\xe8\xd2\xb8\x8a\x80\x22\xb7\x75\x1d\xc3\x8e\xef\x65\xfb\x55\xbc\x02\x70\x86\xfe\x63\x05\xb9\x77\x87\x43\x1d\x53\xf1\xbe\x15\x05\xd2\xe4\xb4\x61\xc9\xbe\x5a\xcb\x84\x31\x35\x97\xf0\xc0\xce\xa5\x61\x20\xd3\x7d\x14\x87\x81\x39\x26\x32\xbc\x3a\x4f\xcc\x67\x82\x35\x8b\x72\x49\xeb\xf9\x50\x04\x22\x92\xe8\xed\x93\xdb\x18\x72\x5e\x8e\x46\xe4\x5c\x6c\xb2\x72\xc8\x9c\x56\x2e\xb4\x54\x86\xc2\x02\xd9\x23\x41\x3d\x37\xe2\x44\x5d\x21\x4a\xad\x9c\x54\x11\xb9\x4c\x66\xe5\xc2\xb5\x63\x18\x64\x82\x0c\x1c\x61\xf8\x41\x64\x82\xee\xf1\x29\xd7\x6a\x5f\x94\x15\x98\x04\x82\xde\x39\xe6\x7a\x3e\x9c\x1d\xc9\xa0\x60\xe2\x68\x76\xf9\x72\xf0\x41\x64\x85\x2e\x6b\xdf\x62\xe7\xad\x42\x01\x94\x0c\x05\x50\x60\x1b\xe7\x05\x43\xa1\x94\xe8\x70\x18\x8d\x64\x2c\x26\x0a\x10\x34\xff\x8b\xab\x81\x06\x26\x32\x6e\xd9\x08\xcb\x88\x34\x4a\xae\xee\x42\x56\x9a\x86\x1d\xc2\x45\x52\xc1\x9b\xd0\x0c\x86\x7b\xc4\x4d\xe9\xdd\x71\xb0\x0a\x84\x76\x16\x38\x59\xb2\x7a\xfe\x3d\x06\xe4\x0f\xb2\x86\x0c\x56\x58\x88\xa4\xff\x30\xc9\xe8\xb0\xc6\xa5\x6a\x17\x6c\x8c\x20\xde\xbe\x95\xdf\x8b\xac\x22\x47\x2c\xbc\xe8\xdb\x6a\xa8\xe3\x8b\x5b\xad\xb8\x67\xab\x55\x84\x16\x27\xb6\x1a\xba\x4a\x73\x2d\x3c\x92\x23\x5d\xfb\xc1\xf1\x87\xda\x1a\x0f\xb5\x35\x31\xf8\x49\xdb\x6c\x0d\x67\xa0\xbb\xee\x77\x93\x9b\x63\x88\x85\x5b\xfa\x03\x6a\x6a\xdd\x94\x23\x69\x89\x1a\x63\xbc\x64\x86\x7f\xf8\x63\xc4\xb2\xeb\x13\xbe\x5b\xed\x53\xe5\x60\x85\x8c\xe6\xa6\x43\x16\xb2\x9a\x96\x1c\x5e\xba\x3e\x16\x7e\xe9\x87\xd6\x91\x74\x39\x72\xc8\x36\xb8\x2b\x0d\xa1\x62\xc9\x70\xf3\x77\xac\x42\xb7\x91\x35\x0b\x79\x93\x80\xed\x6f\x4d\x07\xc1\x10\x1d\x8d\x07\x41\x59\x73\x55\x59\xf6\xa2\x83\xbf\x0a\xc6\x65\x25\x23\x6e\x30\xae\x86\x7b\xc8\xa7\x95\x25\x9f\x68\x45\xac\xa7\x80\x88\x54\x27\x38\xd2\xb1\x86\xed\x29\x35\x56\xaf\x0b\x36\xcc\x82\xf0\xcb\x88\x0c\x37\x4a\x33\xde\x05\x8e\xad\xc9\xc9\x27\x5b\x75\xb9\x11\x0b\x6a\x1a\x40\xb3\x04\xa1\xca\x28\x6b\x44\x0f\x1d\xbd\xbc\xe1\x05\x61\x55\x28\x04\x75\x0a\xb3\x70\x2d\x2e\x9c\xbe\xe3\xb2\x73\x29\x1e\x8d\x44\x22\x68\xf3\xc0\x95\x74\x09\x2e\x4d\x4c\x9d\xfe\x85\xc0\x55\x26\x29\xbc\x7e\x64\xf4\xee\xb1\xd5\xb9\xeb\xb2\x5b\x9d\x07\xa8\x5a\xb3\x8e\x62\x09\x45\x24\x7e\x73\x91\xe2\x9a\x9a\x9f\x44\xa4\x93\x2b\xe0\x75\xdb\x55\x24\xad\xf2\x60\x81\xca\x83\x60\x40\xb9\x37\x86\x96\x83\x53\xca\x45\xd9\x9e\xfd\xc8\xb3\x17\x80\xa3\x58\x19\xc3\x4d\x84\x5e\x04\x1a\x76\x4f\x8b\x53\xe4\x2b\x63\xc2\x5a\x50\xba\x63\x8d\x81\xf7\x8b\x23\x21\x83\x0a\xf6\x87\xb5\x25\x88\xe8\x05\x10\x7b\xdc\xf2\x8c\x93\xc1\xb7\x22\xab\xf0\xf1\x8b\x3e\x4d\x4f\xb6\xd2\x35\x47\xf6\xa8\x59\xd3\xae\xf3\xab\x7f\x2b\x80\x27\xbf\x14\xb1\xd9\x27\x88\xd5\xad\x5d\x28\xa7\xad\x58\xa6\x7c\x48\xc0\x13\xd4\x03\xa9\xb7\x3c\x2a\x9c\x86\x0f\x21\xe3\x42\x0a\xa0\xf4\xcf\xb3\x8e\x8b\x0f\xde\x87\x0e\x0c\xe2\xda\x08\x1d\x58\x11\x3a\xcc\x78\x0f\xc2\xb7\x1a\xcf\x34\xfd\x1b\x9e\x1a\xb8\xe4\x2b\xa6\xc6\xb3\xf3\xea\xb2\x3e\xaf\xc6\x63\xbb\x91\x60\x3d\x56\x24\xd0\x97\x35\x96\x7e\xfa\x5a\x3f\x13\x55\xa3\xf4\xc3\x4e\x6e\xce\x4a\x45\x0e\x87\x6a\x24\x26\xa5\x94\x6f\x9f\xea\x43\xed\x42\x11\x72\x57\xb3\x6a\x34\x33\x57\xfa\xb1\xa7\x39\x61\xfb\x3b\x91\x14\x1e\x13\x7e\x05\x79\x94\x32\x63\xab\xdf\xd2\x8b\xc7\x55\x35\x96\x56\x1f\x7e\x80\x9a\xa9\x73\xd0\x64\xcb\x31\x78\xc8\x30\xd5\xe1\xd0\x25\x4a\x9f\x89\xcc\x22\x17\x43\x1e\x53\xaf\x5f\xad\x25\xc9\x57\x41\xb8\x81\x4e\x36\x60\x9b\x78\xef\x5b\x30\x7e\x42\x37\x51\x08\xfa\x10\xd8\x1c\x0e\x2b\x8b\x82\x88\xfb\x1f\x88\xfd\x22\xe2\x0c\x98\x9d\x9c\xbb\x3d\xdd\xd9\xef\x83\x4d\x9a\xb6\x75\x22\xb7\x84\xae\x82\xb5\xe4\xfd\x00\x20\x3f\xa7\x15\x18\xbc\xd8\xb6\xe4\x18\x00\x55\xf5\x5a\x1a\x1f\xf1\xa0\x57\x9a\x6e\x30\x5a\xda\x15\x41\xd1\x4d\x4d\x7f\x81\x23\xc5\xf0\x8b\xd2\x14\x18\x55\x3d\xac\x14\x04\x04\xf4\x7c\xa5\x59\x78\xe5\x6c\xba\xdc\xad\x01\xbe\x2c\x6b\x42\x95\x82\xc7\x26\x08\x13\x6b\x96\x49\xb6\xa8\x68\xbd\x24\x8b\xe9\x92\x56\x4c\x2e\x66\x4b\x42\x2d\xfe\x0c\xb3\xf8\x33\xca\x18\xeb\xea\xd7\x13\xb4\xa1\xc9\xf4\xd9\x57\xf8\xf7\x4e\x0d\xef\x1c\x33\xf0\x76\x84\x45\xa8\x94\xb0\x0d\xf9\x5b\x17\xdc\x58\x16\xe0\x5a\x60\x55\xae\x4c\x90\x43\x52\x41\x41\xc1\x96\x85\x3a\x9e\xbb\x3e\x26\xfd\xbd\x12\x6c\x5a\x30\xb4\x9d\x73\x62\xec\x3b\x39\x59\xc9\x9d\xe0\xeb\xc3\x21\xcb\x30\x11\x93\x4e\x8c\xad\xa9\x6a\x8c\xd6\x27\xc6\xa0\xed\xa3\x22\x96\x03\x34\xa3\x11\xd9\x4a\x57\xf4\xa2\x59\x3a\x73\x0c\x64\xdc\xb7\x22\xd1\x38\x03\xa2\x10\x9a\x32\x16\x7d\xcb\x16\x15\x16\xbe\xc8\x5d\x9c\x79\x99\xd7\x17\x65\x70\xf7\xe2\x37\xe3\xf6\xdd\x8d\xa3\x5a\xd1\xd2\x9a\x17\x10\xaa\x5f\xc0\x98\xc0\xde\xc0\x15\x84\xe9\x48\x47\x23\xa8\x0b\xe6\xe2\xc9\x5d\xc1\x86\xee\xb0\x41\x3e\xa6\xb1\x35\x9a\x52\x30\xc9\x14\x7a\x6e\x82\x65\x77\x2d\x23\x3d\x8e\x40\x73\xb2\xf2\x56\x33\xb4\x4d\x4e\x64\xd5\xb8\xd6\xa7\x8b\x9e\x5b\x7c\x62\xe1\xba\xa5\x10\x60\x5e\x64\x18\xe4\xab\xba\x91\x1d\xc5\x1c\x7d\xb9\x5a\xed\x29\x44\xe6\x09\xd6\xef\xdc\x48\x27\x0a\xf3\xc2\xcc\x85\xbe\x52\x95\x35\x3b\x17\x73\x60\x73\x66\x55\x26\xa9\x20\x96\x64\xb7\x74\x9d\xa0\x35\xa1\x21\x8e\xde\xad\x74\xca\xb6\x80\x5e\xe2\xec\x44\xc1\xe8\x3a\x06\x2e\x52\x6c\x7a\x52\xdb\xc6\xa4\x07\x77\x13\x6a\xc4\x38\x4a\x1d\x41\xfc\x60\x4c\xe5\x10\x76\x2e\x30\x47\xf7\x35\xaf\xb6\xa2\x5c\xd7\xbc\x62\xbc\x5d\x97\xb3\x2d\xea\x82\x25\xf1\x45\xb5\x1c\xa8\x11\x10\xfc\xfb\xea\xed\x2b\xf1\x41\x1f\x27\xb5\x0e\x30\xb6\xcc\x22\x6c\xd5\x11\x6a\x6a\xc4\x07\x6e\x81\xe9\x2d\x7c\x66\xa7\xc3\xc7\xdf\x23\xa4\x02\xbd\x1c\xbb\xcc\x57\x69\x6c\x2f\xed\x2e\xb1\xf6\x80\xe4\x48\xa3\xec\x4a\xf6\x64\x16\x9f\x98\x19\xcc\xe8\x4e\x59\xe4\xba\xd7\x02\x9a\xd7\x86\xaf\x0b\x83\xc4\x60\x5e\x10\x71\xfc\x6a\x7b\xa4\xb7\xd2\x57\xc2\xee\xdc\xf8\xf5\xf0\x98\xfd\xca\x30\x53\x70\x34\xb7\x10\x80\x6b\xe4\x31\x11\x12\x90\x0e\xb4\x62\x7c\xa4\xce\xeb\x8b\x0a\xd6\x88\x5d\xd9\xae\x34\x30\x7b\xf4\xb3\x30\xf6\xb3\xf6\xa5\xca\x04\xc8\x43\x05\x4d\x50\x3f\x25\x21\xc7\xa0\x19\x66\xe3\xa2\x3b\x65\x8b\xc5\x9a\xc7\x46\x54\xfa\xfa\x72\x0e\x62\x7c\x5e\x72\xa4\x68\x43\xd0\x6d\xbc\x26\x75\x83\xf6\x8c\xec\xb2\xc0\x4d\x11\x56\x6f\x8e\x0d\xee\x80\xcd\x95\xff\x6a\x27\xd3\x8f\x96\x13\xde\x61\xf5\x4a\x56\x8b\x2a\xda\x39\x47\xaa\xc9\xce\xef\x3a\x0d\xf3\x45\xe8\x31\xe5\x30\xa6\x9c\xe8\xa3\x33\xa8\x72\xc1\x97\xde\xda\xf6\x78\xa4\x57\xff\xd9\x1c\x03\x5e\xf0\x3d\x73\xeb\x12\x8d\x99\xea\x33\xca\xb5\x7b\x38\x3c\x19\x42\xb3\x5c\x1b\xbf\xa8\x97\x80\x3a\x11\x6c\x5a\x60\x62\x5f\xb8\xbb\xce\x3b\x67\xa1\x62\xcc\x09\x2d\x58\x65\x8f\x12\x60\x76\x04\x6d\x84\x27\x11\x8d\xd6\x51\x31\xae\xdc\xfe\x47\x79\x45\xdc\x3c\xb3\x7c\xea\xf1\x98\xce\x80\x8b\xe7\xf7\x3d\x68\x42\x67\x6a\xcc\x24\xb1\xda\xed\x6c\x8a\x0a\x69\x7c\xcc\xc4\xd1\x7a\x0b\x82\x51\x50\x17\x8f\x9e\x74\x0a\xb7\x3a\xdb\x87\xc3\x30\x8e\x59\x4c\x97\x01\x49\x7c\x2b\x2d\x8f\x1f\x54\x3d\x30\xa5\x45\x15\x6e\x4c\x87\xdc\xa1\x08\x06\xac\xb7\x32\x6b\xc8\x92\xb6\x0b\x8d\x56\xcf\x89\xed\xd0\x63\x20\xdf\x9d\x2c\x45\xe2\xa2\xd5\xd2\xb7\x88\x7f\xca\xbe\xd1\x83\x32\x62\xee\x8d\x14\xef\xa5\xf6\x26\xe8\x6f\x43\x15\x1d\x13\xae\x29\x16\x13\xaf\xbd\x60\x0c\x26\xa0\x98\x04\x6d\xb3\xaa\x40\x08\x69\xd3\x80\xe2\x72\x70\x78\x5d\x3e\x99\xfa\xf1\x28\x58\x1c\xf9\xbf\x1e\x3d\x19\x3d\x7a\x42\x1b\x56\x9c\x37\x17\x71\xd4\xb9\x35\xf1\x31\x53\x21\xa2\x5d\xde\xd0\x66\xc4\x1e\x3d\x21\x64\x20\xdc\x32\xdc\xdb\x45\xd8\xbb\xfa\x46\xa3\x8a\x4e\x0d\xd7\x31\x98\x40\x53\x2c\x13\xad\xb3\xa6\x30\x4b\x02\x7c\x98\xbd\xda\x89\xb2\xcc\x88\x11\x93\xf3\x31\x93\xc7\x23\xf5\x31\x79\x8c\x96\x31\xec\x5d\xa1\x17\x6c\x66\x45\x1d\x68\x29\x33\x58\x4b\xf3\x94\xd5\x3d\xd4\x57\x73\xa7\xcd\xbc\x5d\xc8\xf8\x09\x7d\x42\x8c\x60\x0c\x7b\x01\x82\x53\x3c\x22\xac\x3f\x25\x3b\x1e\xd6\x4d\xb3\x31\x5f\x7e\xe9\xf2\xb8\x52\x29\x07\xf7\xa7\x71\xa0\xdb\xae\xa3\x19\x9d\xea\x13\xdf\xe9\x63\x56\xdd\x96\x92\x81\xdb\xce\x68\xde\xeb\x36\x10\x55\x4b\xca\x59\x75\x54\x2e\xde\x7c\x18\x37\xe3\x9d\xbe\x5d\xce\xa6\x41\x6b\xa2\x71\xff\xf8\x21\xfd\xbf\x6f\x89\x4b\xab\x9b\x13\x9c\x89\x72\x8c\x2a\x29\x02\x78\x14\xdf\x69\x4a\x90\xd6\x24\x02\xd7\x30\xc7\x58\xd1\x77\x8c\xc9\xe3\x11\x01\x0e\xde\xc8\x8e\xb2\x1a\x68\x57\xb8\x7e\x9c\x89\xea\xac\x26\xf5\x64\x5b\x34\xdf\xbf\xab\x7e\xa8\xe5\x8e\xd7\xea\x36\xab\x88\x39\xf6\x16\xd5\x12\x10\x2b\xc9\xc0\xd8\x6a\xad\x2c\xf1\x08\x18\x3c\x21\x2e\xc2\xef\x4e\xf0\xf1\x8b\xbe\x2f\x2f\x32\x67\x56\x6c\x1f\xa0\x91\x73\xeb\x08\xde\x86\xa4\xe9\x6b\x94\xcd\x1c\xdf\xc8\x10\x38\xa2\xe4\x45\xcd\x5a\xfe\xd3\x8c\xdd\x97\x2e\x40\x3f\x4b\xfd\xc5\x3d\x79\x87\x30\x5f\xb4\xf6\x61\xb4\xd2\x94\x33\xca\x76\xd1\x96\xb7\x4a\x53\xd5\x7e\x8e\x45\x9a\xd8\x4a\x3f\xb1\xa0\x04\xf0\x68\x8e\x8b\x53\xc0\x5d\x32\xf0\xec\x82\xac\xb6\xd5\x19\x38\x1f\xbc\xd8\x7e\xaf\x8d\x03\xb9\x07\x3c\xab\x69\xe4\x7b\xd9\x6c\x13\x49\x10\x10\xae\xed\xaf\xe9\x77\xb4\x65\x1e\x4b\x42\x81\xcd\x50\xd1\x04\x2b\x48\x80\x53\x04\x0f\x7e\x60\x61\x41\xa0\xd1\xb4\x01\x7b\x48\x4d\x8f\x57\x44\xaf\xda\x78\xf0\x0c\xbf\xa9\x77\xf8\xec\xb8\x99\x13\xac\x8e\xc6\xb4\xf2\xe3\x17\x51\xf6\xce\xf3\x87\x70\xfd\x1c\xab\x81\x48\xd3\xec\x73\x43\x18\x81\xdd\x23\x39\x1c\x1e\xf0\xac\xa2\xf6\x92\x1e\x09\x10\xe3\xfc\x58\x65\x75\xd8\xe1\xda\x2c\x8b\xc0\x25\x38\x1b\x4e\xe9\xef\x32\x33\x2f\xaa\xa6\xce\xea\xa8\xcf\xd8\xa1\x84\xd6\x94\xd3\x1f\x79\x06\xf2\x00\x72\xa4\x6f\x78\xf6\x46\xe2\x04\xbc\x93\x6c\x4a\x9f\xb7\x0d\xb7\x02\x2a\xcf\x5a\x16\x02\xc5\x64\x4e\xee\x60\x55\x8b\x35\x1b\x8d\xde\xc9\x60\x59\xbf\x8f\x98\x13\x08\xa1\x51\x19\x0b\x50\xd2\x76\xf0\x17\xa4\xcc\x2a\xf6\x8d\x6e\xa1\x49\xca\x0c\xa4\xb2\x64\x8b\xa8\x44\xfd\xe2\x97\x8b\xe9\x92\x36\xac\x32\x0b\xea\x3b\xb9\xe6\x56\xcf\xa3\x63\xee\x87\x9e\xe1\x7c\x42\xd6\x4c\x56\xa5\xac\x38\xf8\x99\x00\xdd\x47\xa3\x66\x0f\xb5\x18\xe5\x0f\x6a\x54\x3e\xa0\xc6\xb6\x06\x3b\xef\xd8\xc2\xee\x09\x9c\xf7\xc6\x0e\x76\xbf\x9c\x88\xe6\x07\x3c\xfb\xb1\x55\x03\xb0\x2d\xd3\xab\x52\x1f\xcf\xaf\x64\x26\x29\x3a\x9e\xb0\x9d\x1a\x7c\x8a\xe0\xe0\xbd\x17\x1c\xe8\x2c\x46\xa9\x89\xbf\x3b\x7b\x6e\x18\xf3\x85\x55\x24\x37\xc0\x25\xdf\x64\x15\x95\x74\x38\x23\xb4\xb8\x9c\x1e\x0e\x53\xc6\x0a\x63\x5a\x23\xf1\xa0\xf8\x65\xcb\xab\xe7\xfa\x35\xe5\x90\xbd\x0c\x27\x85\xef\xca\x62\xc5\xd7\xbf\x08\x60\xd7\x4a\x47\xf5\x00\x2f\x56\x86\xa3\xf9\x6d\x06\xd6\x1c\x80\x2a\x19\x66\x8b\x61\x2b\xed\xbe\xd4\x2b\xbc\xa8\xd6\x25\xff\x56\xee\x1b\x0e\xa6\x46\xcd\xe1\x10\x16\xd8\xc5\x7c\x15\x57\x95\xac\xf9\x18\x11\xed\x3c\xea\x6b\x65\x28\x1c\xe3\x7f\x35\x2a\xc3\xc7\x30\x33\xc3\xae\x03\xb0\x22\xbf\x51\x4e\x69\x0a\x39\xdf\x60\x1d\x84\xfc\x4e\xfb\x56\x84\x34\x75\x98\xa6\x6b\x71\xfc\x15\xd4\x23\xaa\xab\x33\x57\xfe\x19\x6a\x81\x9c\xed\x8a\x5a\x89\xa2\x2c\x6f\xcf\xe4\x0d\xaf\x4b\x64\xa2\x9f\x15\xd5\x19\x7f\x2f\x1a\xc8\x82\x28\xaa\xcf\x75\x13\x8f\x72\x52\xac\xd7\xaf\xe5\x4b\x14\xe5\xa5\x29\x88\xef\x43\xdd\x0f\xcb\x71\x4b\x74\xf1\xaf\xf9\x7b\x95\x1c\x8d\xaa\xeb\x77\xc5\x77\x06\x2c\x1d\x10\x0b\xa0\xbd\x25\xfa\x87\xf7\x6a\x30\xfb\x7e\x0d\x98\x32\x4d\x83\xa1\x49\xd3\x61\x79\xc2\x03\xc5\x0b\x95\x71\xc2\x58\xd9\xf6\xe0\x9e\xa6\x59\x03\x80\x9d\x51\x31\xfb\xa1\xd3\x15\x04\x14\x87\x29\x69\xc9\x38\x23\xd5\x99\x58\x91\x66\x1e\xab\xdd\x98\x37\xe4\x42\x2d\x49\xbe\x50\x4b\xaa\xac\x05\x53\xa1\x54\xb1\xda\x02\xbb\x94\xc3\x56\xd2\xd3\xf2\x5e\x65\x92\xee\x9d\xd6\x20\xe8\x66\x1a\x6f\x91\x66\x5e\xe7\xb5\x0d\x23\x84\x8e\x46\xfb\x63\xab\xe9\x1f\x53\x1b\x52\xe4\xee\x73\x65\x70\x1d\x1f\xf0\x4c\xd1\x29\xc1\x22\xf4\x76\xfa\xbe\x02\x15\xcf\x34\xdd\xf2\x4c\xf6\xe9\x7e\xd2\x1e\x8e\x09\x66\xcd\xb0\x18\xab\x38\x94\xa6\xd9\x3b\x50\x26\xcc\x62\x1b\x01\x77\x99\xfa\xe0\xc8\x76\x18\x59\x5b\xba\x40\xb3\x94\x32\xd2\xea\x60\x26\xed\x91\x4d\xa5\x51\x24\x85\x09\x2c\x61\x63\xe8\xc3\xb2\x3c\x25\x5e\x89\xb6\x51\x59\x65\x25\x6d\x0d\x93\xe7\x33\x06\xf8\xe5\x7a\x7b\x83\x87\xfd\x57\xea\xb6\x84\x5f\xbc\x5a\xbb\xef\x55\x03\xfb\xbf\xb0\x3b\x1e\x7e\x29\xa1\x4a\x0f\x6b\xb8\x32\xd3\x79\xbe\xba\x30\x93\x78\xbe\x42\xa1\x6c\x49\x57\x4e\xa8\x60\x3b\x93\xa6\x7f\x17\x59\xa9\x6f\x28\xb8\x0e\x4b\x9a\xe0\x82\x41\x63\x51\x5a\x52\xe9\xd4\xa0\xe5\xf1\xf9\xbd\xa4\x93\xc3\xef\xea\xaa\xeb\xf6\x92\x55\x1c\x4f\x6f\x3d\x78\x20\xd7\x4d\x53\x70\xd0\x4b\xaf\x38\x3a\x9c\x4d\xa0\x06\xef\x58\x1e\xbd\x2a\x8a\x6a\x9d\x81\xd5\x62\x53\x47\xc9\x68\x8d\xe2\xba\x1a\xac\xdd\x03\x37\x10\x60\xf8\x62\xe0\x4b\x51\x7b\xbd\xcd\x8d\x02\xbd\x30\xab\xbf\xee\x59\x21\xa0\x1d\xf6\x4a\x65\x45\xb8\xc3\x28\x12\x5f\xba\xed\xd1\x8b\x7b\x3d\x07\x9a\xea\x47\x9e\x15\xc4\x0e\x72\xce\x8d\x16\xf4\x10\xb4\xa0\x41\x37\x06\x12\x58\xd4\x17\xd4\xe0\x02\x6f\xe7\x18\x4e\x68\x54\x19\xfb\xbe\x5d\x7b\x63\x39\xb4\x36\x6b\xdc\x88\x34\x1d\x86\x84\x52\xa1\xd7\x37\x6c\xbc\x82\xf2\x2a\x74\x45\x7f\x44\x17\x4b\x9d\xdc\xfd\xc2\xcc\x96\x0b\x89\xbe\x01\x74\x8c\xf9\x17\x21\x07\x6b\xb1\x5f\x12\xba\x62\xff\x56\x59\x49\x06\xab\x4b\xde\x3e\x0f\x9d\x84\xb3\x13\xc3\x4a\x7a\x22\x35\x5b\x75\x63\xbc\xe4\x93\x1c\x1d\x11\xde\xd3\xbf\x12\xe9\x5e\xe0\xd6\x77\x7a\x61\xc1\x1d\x3a\xcb\x57\x1f\x2c\xc8\xfc\x34\x5b\xc6\xaf\x63\x27\x97\xca\x3a\x61\x6c\x38\xd3\x64\xf8\xdf\x8d\xd4\x0f\x89\x72\xa4\xb2\x71\x8b\x75\x28\x6c\x50\x16\x48\xd3\x9f\xbd\x9b\x50\x7c\x3a\x9a\x0a\xed\xab\xd6\x9c\x7f\x47\x1a\x6d\x47\xbd\x31\xfa\xec\x47\x69\x65\xbc\xea\xf3\x34\x4d\xde\x48\xf9\x56\x57\x9e\x18\x6e\xae\xce\xa9\x47\x9f\xcd\x48\xcb\xae\xb3\x6f\x8e\x23\xd8\x7c\x33\xc1\x20\x51\x7a\xa5\x62\x5d\x7c\xb3\x49\x02\x9c\x4d\xb3\xce\x6b\xc6\x55\xa6\xe6\x32\xff\x91\x67\xd2\x42\xc0\x11\x3a\x9e\x31\xe6\xdc\x83\x9e\xd5\x61\x46\xd8\x36\x55\x3b\x9b\x92\x84\x46\x79\xaa\xa3\xd7\x5b\x0e\x05\x70\xed\x51\xfa\xa4\x27\x0b\x9c\x31\xe3\x19\x22\x5a\x60\x4c\x15\x9e\x5d\x03\x95\xa6\x15\x3c\x37\x2a\xda\x2a\x48\x58\x92\x42\x82\x3c\xc5\x08\x96\x0b\xf6\x6d\xad\x69\x4b\x18\x92\x22\x4d\xb3\x6f\x6a\x7d\x4c\x54\xa7\x8c\x7a\xaa\xde\x87\x8b\xcf\xd0\xbe\x6a\xa8\xde\xf5\x35\x6a\x57\x10\xef\xe1\x0a\x1f\x47\x96\x47\x68\x7f\x0f\xea\xce\x6b\x6b\xaf\x5f\x5b\x35\x19\x37\x83\x3d\x9c\x16\x82\x5a\x1e\xd4\x68\x0f\xf0\x38\x95\x5b\xb3\xf6\x85\x54\x51\x0e\xba\x52\xd1\xe8\x7a\x22\xa3\x8d\xde\x39\xec\xac\xa7\x70\x17\x5d\x47\x7e\xcb\x31\xc8\x5c\x0c\xaa\xc7\x15\xbf\xd5\x11\xee\x8b\xc3\xa5\x07\x0e\xa8\xfa\x9c\xf5\x9f\x8c\x08\x24\xd6\x50\x42\x28\x2c\xb0\x66\xf0\x71\x67\xd7\xfc\x54\x67\xbb\x72\x86\x97\x41\x18\xe5\x84\xce\x08\xfd\x6f\x47\xe4\xbc\xb7\xdb\xbe\x5f\x2f\xef\xed\x15\xbc\x65\x9f\x9b\xb7\xec\xab\xde\x67\xec\xb5\xc9\x1a\x00\x7e\x16\xf5\x6d\x87\x5f\x7f\xaf\xf4\x2e\x78\xde\x7e\x2f\x23\x70\x44\xbd\xb7\x74\xe3\x9a\x2c\x56\x87\xd2\xf4\x84\xd8\xfd\x20\x4d\x78\xa8\x8c\xd5\xa7\x10\xe7\x58\x6f\x21\x6a\x9f\x8c\x19\xd5\x21\x11\x6a\x04\x4a\x88\xd7\xba\xa8\x6d\xaf\xf4\xc8\x82\x56\x61\x14\xd2\xab\x81\xe7\x56\x41\xfb\xa4\xac\xed\x88\xf5\xf8\xb1\x71\x71\x0b\xb1\x3c\xd7\xa7\xdc\x4b\x50\x37\xd1\xd7\x01\x90\x96\x81\xdc\x80\xfa\x72\x22\x8e\x90\x9e\xb3\xd6\x88\x83\xf9\x66\x56\x93\xe3\xab\xff\x9a\x1e\x3b\x79\xd1\x0d\x7a\xa0\x5a\x5b\xfd\x1b\x8d\x38\x09\xc3\x17\x7c\x69\x2f\xa5\x41\x8b\x28\xd3\x8d\x7f\xf5\x91\x5b\x2a\x94\x1f\xd9\x49\x80\x13\x18\x85\x73\x6f\x78\xf6\xca\xac\xd7\xa7\x92\x4d\xe9\xeb\x36\xc7\xd1\xf1\x4d\x90\x4b\x1d\x6a\x0d\x79\x9f\xb5\xf0\x0a\x7d\x1d\xf2\x45\x06\x21\x54\xfa\x94\xd0\x2b\x89\x16\xfb\xd0\x7c\x2b\x2d\x59\x18\x84\xb5\x04\x1d\x57\x90\x25\x59\x5a\xef\xde\x7a\xe1\x5a\xf9\x9e\x63\x33\xb2\xe0\x27\x3c\xa7\x0d\xe1\x10\xd2\x04\x18\x50\xf2\xa2\x0a\xa0\x9e\x4c\x70\xa4\x7b\x85\x8c\xb1\x8e\x4a\x53\x6d\x38\x19\x00\xab\x39\x35\x7c\xd3\x86\x97\xec\x39\x00\xf4\x99\x5c\xf0\x9a\x01\x6e\xc7\x17\x22\x43\xb9\x94\xe7\x3f\x3d\x95\xbe\x3a\x84\xe3\xb2\x9c\x2a\x7d\x1e\xbd\xe2\x3b\x56\x59\xb7\xe5\x06\x81\x8b\x19\x60\x2e\x31\x87\x8f\x3c\x29\x55\x9d\x58\x72\x49\xf1\x0a\x3c\x11\x74\xd4\x64\x90\xb6\xc0\x06\x7a\x4d\x19\x4e\x08\xfd\x56\xe0\x40\x07\x5a\x4a\xc6\x1c\x80\x1f\xc1\xb8\x1e\x62\xb1\x47\xbf\x90\xe3\xe0\x75\x28\x87\xfc\x67\x16\x8a\x25\xe9\xdd\x4a\x56\x8d\xaa\xf7\x2b\x25\xeb\xfc\xb5\x04\xce\x7a\x87\xb1\x5e\xcf\xb1\xfb\xc8\xed\x1e\xfb\x39\xa4\x6a\xcc\x69\x4d\xf2\x20\x3a\x8c\x74\x9f\x23\x27\xa0\xa2\x5e\x94\x75\x52\x74\x6d\x75\x0e\x22\x49\x6d\x3d\x62\x20\xac\x0d\x55\x1a\x22\xb1\x53\xd4\x2c\x5a\x13\x2b\x4a\xed\x93\xa2\x46\x02\xcc\x28\x23\x39\xd2\x2b\xae\x7e\x2e\xca\x7d\x2c\xc2\xc3\x53\xf1\x6b\xf3\xba\xfa\x48\x27\x89\x83\x5a\x66\x8c\xf1\xb9\xca\xd5\xe4\x0f\x29\xaa\x8c\x1f\x0e\xe1\x42\x29\xea\x42\xc9\x3a\x23\xe4\x48\x1b\x5b\xe7\xdf\xab\xac\x5b\x2d\x57\xe1\xb0\x3a\xc2\xaa\x5d\xed\x78\x36\x28\x64\xb8\x34\x94\xd1\x5d\xad\xe9\x6f\xa6\xe1\x75\x9f\xfa\x6a\x77\x8d\x39\x0e\x90\x6d\x57\x42\x37\xfb\xb2\xcc\x87\x53\x84\x2a\xc3\x6d\x78\x9d\xa6\xdf\x56\x46\xba\x75\x4d\xa7\xba\x61\xc1\xe2\x53\xb0\xf8\x08\x35\x8c\x3a\xf0\xc6\x9a\x77\x41\x8b\x36\xa6\xc5\x9c\x2a\xd6\x28\x33\xbc\xba\x87\xf5\xdc\xfe\xd4\x0b\x8c\x56\x38\x33\x7d\xc5\x58\x29\xf7\x97\xa6\x93\x36\x1f\x27\xd4\x97\x18\xcd\x49\x3d\xaf\xf2\x0a\xe7\xa4\x3e\x39\x27\x57\x1c\xc6\xa3\x67\x19\x40\x06\x13\xfd\x12\x58\x8c\xa1\xff\x87\x34\x45\x9d\x24\x57\x02\x26\xc9\x5b\x84\xce\x3f\xb9\x6d\xa5\x3d\x66\x7f\x73\x21\x2e\x2b\xc2\x87\xe4\x3d\x77\xea\x8f\x28\x15\x8e\xaa\xf8\x59\x34\xfb\x02\x01\xf0\x7b\xb2\x74\x14\x99\xf0\x84\xf1\xb5\x12\x0a\xac\xb7\x23\xd5\x63\xf1\x4c\xee\x2b\x75\xbf\xaa\x82\x53\x22\x3c\x95\x0c\x12\x1c\xa9\xa5\x47\xee\x4d\x16\x2e\xe3\x23\x35\xf4\x4c\x5f\xc7\xfd\xec\x42\xef\x91\xe5\x75\x6a\x92\x22\x64\x82\xd8\xb1\x08\x3f\x1c\x92\x2d\x2f\xd6\x09\x6c\x51\xc4\xc6\x4e\x50\x43\xc7\x04\xe1\x8f\x3c\xe1\x15\x24\x3a\x1c\x12\x25\xf1\xc3\x6e\x6c\xc0\xdb\xce\x2d\x28\xb8\x1e\xb8\xc6\x1b\xad\x36\x27\x47\xcf\x99\x2b\x1c\x69\x07\x50\xeb\xbe\x4c\x3d\xe8\x5b\x70\x74\x98\x31\x88\xce\x0e\xdc\x18\x5f\x8b\x78\x4b\x74\xd7\x00\x80\x6d\x53\x75\x38\x4c\x49\xce\x91\x41\xa2\x0f\x4f\x42\x43\xfb\xdb\x4f\x29\x3a\xdc\x6d\x87\x03\x27\x58\x0a\x5e\x70\xf7\x16\xf4\x73\xb7\x20\x95\xa6\xe1\x59\xd0\x53\x50\xd3\x2e\x89\xdc\xfd\x66\xca\xd9\x07\xe5\xf4\xe5\xfc\xfc\xf6\xe3\x79\x7f\xcc\x5a\x33\x05\xdb\x43\xb5\xc7\xa5\xd3\x0a\x67\xd9\x1a\x5a\x63\x9d\xc2\x47\x12\x80\x3b\x23\x42\xfc\x10\x6c\xf8\x42\x44\x10\x22\x3e\xd0\x38\x17\x70\x9e\x71\x32\x15\x2a\x69\x3b\x80\xf4\x68\xe9\xa3\xb9\x8a\x3f\x9a\xdf\x09\x77\x64\x57\x66\x74\x8f\x84\x16\xeb\xfb\x27\x29\xd0\x23\xea\x43\xb1\xa9\x22\x2c\xf1\x53\x4b\xe2\x54\x2b\xaa\x00\xc4\x18\x26\x3b\x74\x18\xde\xaf\x49\x63\xaf\xc0\x60\x86\x5a\x5e\x1d\x03\xe4\x73\x7b\x31\xd4\x9a\x80\x30\x08\xfa\xf0\x0d\x70\xf9\x03\x05\x4e\xf6\x0d\xf7\x5f\x90\x5c\x1c\xff\xd3\xeb\xfb\x8a\xf7\x6e\xfb\xe8\x45\xb5\x58\xfe\xef\x6c\x33\x48\xd6\x38\x70\x45\xc5\xfd\xad\x23\x54\xd3\x4d\x4c\x78\xe0\x02\x7b\x25\xf7\x0d\xf1\x49\x54\xaf\xf6\xd4\xb7\xd7\xb0\x91\x45\xb7\x8b\x6e\xd0\xde\xe3\x70\x48\x46\xe0\x25\x32\x21\xdd\xea\x7b\x77\x51\xab\x09\xb6\x7a\xc3\x86\x16\xa7\x41\x54\x84\x07\x43\x19\x00\xaa\x13\xd2\x42\x85\x73\xe1\x20\x73\xf4\x93\x70\x82\xf8\x59\xc8\xa5\xa3\x7f\xea\xe3\xd1\x2b\x6d\xab\x34\x85\xab\x00\xec\xd1\x3e\xd2\xdc\xf8\x7d\x2e\x99\x30\x3e\x90\x55\xe8\x03\xd9\xf0\x96\x14\x22\x92\xbc\x15\xc6\xbd\x03\x80\x04\xd0\x52\x07\xbc\x17\x59\x43\xe0\x37\xe8\x9b\x00\x27\x9c\x4a\x56\xd2\xa4\x00\x3f\xc6\x09\x63\xb5\xb5\x97\x8e\x80\x60\x0a\x63\x39\xbd\x42\x35\xf1\x95\x3d\x4e\x2e\xa6\x83\x6a\x51\xb8\x13\x67\x33\x2f\xf3\x3d\xdd\xcc\xf7\x79\x69\x70\xdf\xc2\xd8\x3d\xdd\x93\x96\xbb\x87\x2e\xe8\xd5\x31\x33\xfc\x57\x45\xe8\x3e\x34\x64\xde\x5f\xb2\xe9\xf9\x7e\x3c\x26\x96\x26\xad\x16\xfb\x25\x19\x34\xf3\x07\xf6\xbc\x37\xef\x06\x4d\x47\x3e\x73\x74\xa4\xde\xfe\xfb\x6a\x2d\xa3\x35\x41\xee\xf6\xa6\x10\xb4\xa5\x45\xba\xf2\x74\x22\x1d\x97\xd8\x92\xfa\xcf\xb5\x76\x91\x80\xff\x8c\xa5\x7e\x34\x03\x14\x6f\x32\x34\x5c\x3d\x87\x0b\x46\x54\x57\xd1\xce\x0f\xdf\x77\x1c\x8e\x88\x9e\x74\xf1\x1d\x8f\xa9\x8f\xd4\xbc\x40\xdb\xca\xa2\x9e\xbb\x10\xbe\x53\x69\x5b\x51\x3b\x10\xd1\xc1\x81\x62\xb0\x6b\x2b\x0f\xba\x3a\x1a\xa9\x41\xdb\xe2\x21\x12\xed\xc1\xb6\xb6\x61\xfa\xe2\xf1\x39\x6b\x43\x45\xdd\xc1\x24\x29\x9c\x86\xfa\xa8\x49\x36\x2f\x09\x0c\x5b\xdd\xf7\xa6\x0e\xc3\x62\x63\x5d\x72\xa4\xd7\x45\xfd\xf6\x99\x7e\xe2\x77\x4a\x69\x3f\xfc\x31\x10\xb8\xaa\x3e\x34\xd3\xf3\x42\xdb\xa1\x7d\x94\x24\xb7\x92\x87\x10\xb5\xd4\x22\x53\xb7\x90\x4c\xfb\x82\x03\x7b\xea\x98\x75\x10\x83\xe5\x36\xad\xce\xf0\x96\x12\x79\x27\x0f\x63\xee\x30\x6f\xf5\x18\xaf\x9a\x9e\x41\x36\x73\x02\xb6\xe5\xbf\xb4\xc6\x17\x01\x52\x8d\xe1\x79\x3b\xd2\xa2\x9c\x02\x1d\xd9\x29\x38\x26\xa6\x3f\x7d\x12\x07\x0a\x81\xc3\x7f\xb1\x48\xcc\x8e\x52\x70\x58\xeb\x54\x59\x38\x71\x48\x64\x96\x5f\x27\x19\xb4\x0b\xdd\x9a\x22\x5b\xb6\xef\xae\x70\x16\xe7\xf6\x29\x69\x4d\x67\x3b\x86\x82\x95\x73\x14\xed\x79\xbf\xad\x10\x76\x77\xf4\x2f\x05\x04\xe7\x1b\xd6\x69\x5a\x73\xd4\xbb\x6b\xa7\xc6\xd9\x1f\x4e\x8f\xfa\x30\x80\x3d\x80\xad\xed\x7f\xc9\x2b\xef\x33\x39\x72\x3c\x02\xa8\xad\x51\xc1\x69\xda\x0a\x58\xf0\x65\x9a\xea\x2e\xd2\xba\xa7\x7f\x1e\xe6\xa7\x93\xcb\x70\x48\x79\xd6\x8a\xd2\xbd\xa9\xef\xe9\xcd\x91\xc0\x43\xf0\xab\x6a\x23\xbb\x2b\x02\x3c\x8b\x77\x1e\x13\xc8\x4a\xec\xbe\x6c\x2d\x50\x8a\x62\x9c\x0e\xe3\x37\x67\x98\xc4\x39\x4e\x40\x02\x37\x53\x0c\x5e\xb9\x71\x31\x66\xa9\xeb\xa6\xe5\x8a\xa2\x86\x4f\xce\x0d\xff\x0b\xad\xf4\xa2\x3e\xe5\xad\x19\x83\x94\xcf\xca\xa2\x69\x4c\x72\xf8\xa6\x6f\xae\x6c\x98\xf9\xa2\xef\xea\x62\x67\xc3\xdc\x37\x35\x6a\x85\xb9\xd3\x67\x3c\x1e\x35\xf1\x0c\x82\x54\x48\xfc\x9f\xac\x4f\xc6\xd4\xdc\x7e\xe7\x09\xa8\x31\xf4\xad\x59\x14\x89\x43\x62\xd7\xe0\x24\x4f\xde\x14\xab\xb7\x57\x96\x0e\x50\xf3\xc4\x34\x3c\xc9\x7b\x8a\xb7\x31\xae\x23\x09\x68\xec\x2c\xaa\x25\xcc\xd9\xab\x0c\x38\x43\x8d\xc2\x20\xef\xdb\x4d\xff\x1c\xb1\xe4\x2c\x19\xd5\x46\x81\x15\x94\x4e\x07\xce\xcc\x01\x2f\xcd\x6b\x79\xc3\xff\xbf\x37\x04\xd4\xd8\x30\xe9\x45\x2b\x7c\x9f\xdd\x02\xac\x09\xf4\x16\x96\x9d\x53\x7b\x96\x60\x06\xad\x56\x5b\x18\x34\x04\xfc\x95\x3e\xf3\x8d\x41\xaa\x05\x37\xde\x23\xb9\x98\x2e\xcd\x9d\x0a\x43\xc9\x84\x47\xcd\xc3\x24\x64\x94\x99\xaf\x34\x2d\x86\x4c\x38\x8f\xed\x67\x49\x9e\x24\x64\x64\x33\x14\xe4\x70\x80\x3d\x12\x8d\xbc\x59\x79\xa8\x81\x79\xcf\xb8\x77\xf9\x6e\x06\x78\x46\x93\x75\xa8\xda\x5a\x11\x80\x36\x59\x5d\x0f\xbc\xe7\x4d\x31\xa9\xe4\xcb\x57\xc0\x91\x07\x91\x8b\xd5\x1c\x88\xdd\xf6\x4e\x09\x35\x26\x74\x56\x27\x96\x76\xc5\x47\xca\xee\x17\x90\xb6\x59\xe5\xdc\xc5\x92\xf8\xe1\xb6\x76\x04\x4f\xd5\xbc\xb6\x90\x23\x79\x6d\x25\x3a\xee\xa1\x5b\xfb\x87\x6e\xa0\xc1\xeb\x33\x13\x42\xa7\x54\x58\x0b\x04\xa6\xa8\x44\xcd\x0e\xef\xbc\xa6\x62\xa8\x04\xcd\xbd\xf0\x61\x00\x0a\x56\x56\x47\x7e\xf4\x7b\x9d\x09\x42\x68\x05\x9a\xcf\xd2\x49\x74\x8d\x4b\xf6\x8e\x74\x39\x98\x14\x5d\x5b\x53\x67\x32\x54\x8d\x35\xfa\x40\x92\x8a\x2e\x03\x46\xcd\x55\x0e\xd6\x83\x84\x8a\xa3\x63\x85\xe2\x33\xd8\xef\x2b\x33\xc1\xb1\x8d\x95\x55\x66\xa0\x56\x4f\xaf\xcb\xb8\x37\x6e\xcb\xe4\x3d\x8c\x51\x5a\x53\x40\xf8\xd4\xed\x39\x1c\x92\x1a\x2d\xa2\xe1\xde\xfd\xdc\x68\x3c\xe4\x3d\xaa\x11\xec\x2e\xd4\xc0\xcc\x95\xc3\x2c\x54\xa0\x7c\xfe\xfa\x76\xc7\xe7\x76\x9e\x73\x45\xa8\x57\x93\x44\xa8\x6f\xff\x9b\xc6\xea\xa1\xf9\x70\x46\x51\x2b\x17\x13\xe2\x37\xed\xa8\x72\x62\x6c\x27\xd8\x81\xb0\xd9\x4e\x73\x16\x74\x5b\x2f\x74\xaf\xc8\x41\x8e\xd4\x89\x54\x9f\xaa\x1e\xb2\x07\xde\xec\xf6\xb2\xca\xc2\x92\x08\x6a\x27\x84\x8a\x1b\x83\x58\x79\x3f\x7e\xd9\x07\x86\x07\xfa\x15\x7f\xee\x96\x3c\xc2\x41\x0a\x83\x05\x09\x8e\xce\xdc\x50\x0a\x80\x7f\x14\x80\xfd\x68\x62\x0c\x46\xba\xb0\xaa\x89\x28\x04\xd5\x89\x0c\xa4\x77\xf0\xcc\x77\x7d\xeb\xac\x8b\x68\x4c\x42\xbe\xfb\x20\x7c\xc3\xa2\x8a\x79\x48\xab\x02\xd1\xc2\x2d\x70\x5f\x5b\x5f\xd1\xe9\x81\xc9\xf6\xb0\x14\xe4\x04\x80\x79\x63\x9f\xc1\x08\x5e\x3e\x40\xed\x8b\x3d\x68\xae\x08\xc6\xac\x15\xb7\xee\xfc\x25\x04\xe3\x21\xc8\xd8\xde\x68\xc5\x80\x1b\x2f\x04\x0d\xb0\x79\x4d\x84\xc7\x90\xc4\x20\x84\xcf\x04\x77\xf0\xc3\x3a\x73\x10\xe8\x87\x83\xe1\x5d\xed\xdb\x43\xea\x92\x1c\x47\x23\x71\x24\xb4\x02\xe2\xfb\x69\x59\xb6\xc6\xd4\x6a\xc1\x2c\x96\xdd\xb1\xea\x3b\x07\xff\x93\x25\x63\xb4\x51\x2c\x0f\x48\x8f\x04\x42\xb9\xe9\x10\xdb\x3c\x42\xf9\x91\xee\x64\xf3\xa2\x96\xf8\x28\xef\xae\xe4\x48\x62\x14\x5a\x10\x04\x9c\x22\x7b\x4f\x9d\xee\x84\xd3\x61\x12\xa1\x14\x69\x04\x28\xf7\xf2\xd2\xa1\x82\x00\x95\x37\x1d\xf0\x31\x93\x74\x34\xaa\x8f\x01\x13\x53\x65\x35\x60\x72\x51\xb8\xf1\x74\x83\xdb\x5c\x7e\xdc\x78\xad\xbd\xb6\xda\x0e\xac\xd2\xbb\x11\xab\x43\x47\x00\xba\x69\xeb\x1d\x37\x4e\x07\x81\xb2\xe3\xa7\xf6\x2e\x18\x17\xb3\xb2\xa3\x57\xfc\x28\xf6\x2c\x09\xdd\x51\x47\xba\x92\xbb\xbe\x77\x92\x91\x94\x7f\xaa\x9c\xb0\x2d\x49\xee\x64\x30\x9d\x68\x09\x94\x03\x5f\xe3\xbd\xd2\xf3\xd7\x72\x47\x55\x28\x49\x57\xb1\x64\x5d\x47\xf2\xd2\xf3\xd4\x54\x20\x87\x86\x47\x71\xf4\x3c\x44\x17\x4f\x9d\x57\x23\x04\x43\x49\xf6\xdd\x98\x59\xb9\x98\xd7\x07\x86\xb1\x42\x53\x85\x2f\xe4\x2a\xbe\xbf\xf4\xd3\x0b\x1e\x5b\xc1\x13\xd3\xb8\xba\xe8\x15\x6f\x0e\xac\xb7\x3f\xbb\x13\x60\x57\x5b\x34\x09\x54\x86\xb3\x49\xf4\xf9\xa1\xff\xbd\xb0\xde\xdc\x95\xb4\x67\x5b\x7b\x8a\x68\x4d\x28\x02\xb4\x98\x37\x77\x38\x1d\x9f\x34\x0b\x3c\x70\x39\x06\x06\x20\xf6\xa1\x1c\x8e\x19\xa1\x4e\x8d\xe9\x2d\xc0\x45\x04\xbf\x02\x4d\xa3\xbb\xb5\x5c\xe5\x15\xf5\x05\xe6\x61\xe9\xfa\x14\x72\x79\x20\x29\xf4\xc1\x5a\x80\xe4\xc3\xe9\xc9\x9c\x4b\x7a\x52\xdc\xde\x46\x37\xb7\xcc\x7e\x6b\x28\x8c\x6a\xc3\x48\x1d\x1a\x3d\x23\x61\xc6\xbb\x88\xc2\x0c\xb2\xa1\x52\x60\x73\x62\xf9\x9b\x60\xeb\x22\x69\x41\x2b\x2b\x8a\xf3\x5f\x40\x75\x90\x41\xe5\xd4\x64\x60\x10\x1a\x42\x3d\x1c\xc0\xf1\x78\xcc\x2a\xfa\x3d\xde\xe6\x04\x8e\xe1\x7d\xa5\xc7\xa0\xbd\xa0\xf4\x09\x11\x2a\xb0\xbc\x2a\x40\xbe\x89\x0a\xa4\x34\x18\x6e\xd2\x63\x8f\xdb\xb6\xb2\x51\x91\x32\xda\x5b\xbe\x5e\xa8\x25\x98\x22\xb1\x00\xac\x41\xe7\x30\xd4\xa9\xa2\xe0\x20\xcf\xb5\x0c\x5b\x4b\xdf\xca\xcc\xb5\xdc\xa2\x5f\xc0\x49\x66\x97\x48\xbc\x46\xcc\x1d\xb1\x40\x5f\x25\xa7\xbc\x89\xd5\x16\x8d\x4d\xac\x8d\xeb\x30\xde\xaf\xb4\x12\xeb\xf3\xb3\x3e\xc6\x10\xae\xfe\x98\x1b\xd4\x49\x68\x71\x33\xac\xe9\xe5\x37\x76\x43\xc7\x47\xf7\x4f\x22\x92\xcc\x7e\x2b\xd7\x27\x45\xbe\x7a\x8f\x21\x4f\x74\x2d\x54\x28\xbe\x8d\x93\xad\xae\x8f\xd4\xf3\xe6\x4f\xb2\xd0\xcc\xfe\x9c\x1b\x4c\x99\x2c\x0c\x24\xf9\x0f\xdc\x09\xb5\xdd\x7d\x70\x1f\xce\xc2\x2b\xbe\x3b\x1c\x92\x7f\x55\x09\xd0\xc0\x5f\xd8\xed\xde\xcb\xd0\x39\x47\xa7\x7b\x43\x86\xb2\x74\xd0\xec\x21\x94\x1b\x7f\xe9\xfe\xa8\x70\x3a\xce\x4e\x27\xc8\x9a\xb4\xb5\xfd\xcf\xba\x33\xc5\x7b\x32\x3d\x06\x0a\x17\x3f\x56\x99\x39\x2a\x57\xd7\x21\xf7\xe7\x0f\x50\xb8\x28\x35\xa1\x71\x24\xc8\xbc\x09\xd5\x7e\x26\xdc\xaa\x5b\x46\xa1\xba\x76\x38\x16\x9f\x49\x36\xf5\x6a\x87\xdf\xca\x16\xc7\x4a\x6c\xb2\x9f\xa4\xae\x60\x78\xa3\x97\x3a\x27\x69\x3a\x7c\x57\x67\xca\x61\x91\x71\x42\xee\x7e\xd7\xe3\x4c\xf5\xa6\x7b\x26\xbd\x07\x26\xeb\x2e\xb9\xa9\x74\x46\x58\xad\x00\x66\x56\xa8\xe2\x75\x5d\x54\xcd\x86\xd7\x93\x8d\x28\x39\xd2\x42\x69\x3a\x54\x13\xd1\xfc\x64\x4c\x53\x32\x42\xac\x4d\x9f\x55\xf3\x7c\x27\xaa\xb5\x7c\x37\x79\x21\x4a\xae\x53\xf1\x3a\x0a\xea\xc1\x54\xa5\x92\x3d\xad\xeb\xe2\x16\x30\x2d\xd8\x94\xee\x43\x15\xb8\xca\x68\xfa\x39\xcd\xfd\xa2\x2c\xe5\xbb\x2f\x6a\xb9\xd3\xa5\xe9\x47\x4c\x63\x21\x12\xef\x4b\x43\x39\x1e\x64\x96\x00\xd6\x9d\xf7\x2d\x1c\x14\x13\x59\x95\xb2\x58\xb3\x5f\xf5\x20\x74\x08\xc7\x62\x52\xf3\x66\x5f\x02\x4f\xed\xe1\xe2\x5f\xef\xa7\xd3\xf1\xbf\xde\x4f\xff\xf6\xaf\xf7\x53\x3e\xfe\xd7\xfb\xd9\x66\x79\xf7\xe8\xf8\xd0\x70\x67\x08\xae\xb3\x84\x50\xb9\xa8\x96\x8c\xd3\xd1\xa8\x61\xde\x01\xa6\x51\xdf\x06\xe2\x09\xb4\x31\x6b\x82\x26\x5d\x06\xc4\x0a\xec\x7a\xbd\xb0\x4b\xa2\xe8\x10\xc3\xbb\x82\x43\xab\x05\xb4\x2b\x1a\xc5\x93\x23\x68\x17\x59\x3f\x9a\x0f\x84\xf9\x7e\x2e\xb2\x9a\xbe\x17\xd9\x9e\x10\x94\x24\x83\x61\xd1\xd3\x46\x3f\x48\x33\xe0\x2c\x23\xca\xa9\x00\x57\x44\xfb\xac\x5a\x94\x4b\x5a\x1a\xbf\x3e\x00\x15\x88\xc8\xab\xeb\xba\xb8\xba\x12\xd5\x95\xce\xa7\xdf\x39\xd0\xd4\x10\x52\xae\x26\x97\xe3\x19\xf1\x94\x4f\x27\x97\x5e\x7e\x08\x58\xca\xd5\x6b\x71\xcd\xe5\x5e\x65\x3d\xfb\xdc\x71\x31\x40\x20\x39\xd9\xc8\xd5\xbe\xd1\xaf\xe8\x47\x53\x32\x50\xf5\xad\x13\xa7\x45\x4b\xf4\x8a\xab\x2f\x0a\x55\x64\xc9\x6b\x34\x01\x12\x9b\xcc\xa0\x85\x6d\x06\x27\x3b\x31\xec\x0b\x9e\x68\xd2\x11\x30\xf1\xf5\xfb\x24\xd4\x17\xc9\x08\x00\x77\x05\xc3\x5a\x13\x42\x37\x6e\x4d\x6f\xd9\xf4\x7c\x7b\xb1\xf1\x97\xd4\x96\x6c\xec\x8c\x24\x09\xdd\x2c\xb6\x0e\x32\x0a\xbe\x41\xf4\x97\xe8\xba\x13\x32\x50\x1d\xd1\x6c\xb6\x72\x62\x44\x6a\xa6\x98\xd0\x53\xa3\x73\x5c\x01\xcb\x8b\x93\xbb\x08\xa7\xf3\x27\x03\xd6\x6e\x33\xe9\xca\x50\x1b\x25\xb2\x4b\x81\xa5\xb5\x2b\x56\xd6\xb1\xec\xb3\xad\x28\xd7\x59\x5f\x36\x42\xfb\x42\x8d\x7f\x6d\x57\xed\x0f\xd2\x5c\xf8\xd6\x03\xab\x9e\x9f\xe7\x25\xd7\x9f\xcd\xe7\xb7\xcf\xac\x3d\x58\x28\x7f\xff\x48\xd2\x2c\x30\x21\x4d\x08\x0d\xdc\xaa\xab\x1e\xe9\x3c\xa8\x22\xfa\x0c\x03\xf0\xaa\x67\x58\x56\xc7\xda\xfb\xd1\x5b\x4c\x97\x13\xb9\xb3\x92\xa9\x1e\x59\x1e\x92\x20\xee\xcd\xa7\x46\x23\xc2\xb3\x7a\xa1\x96\x80\x5b\xac\x53\xfc\x21\xd9\x70\xe6\xcf\xe6\x2f\xa4\x3d\x37\x06\x7f\xc8\xc3\x21\xdb\xf2\x0c\xcf\x3f\x9a\xd4\x5c\x93\xc9\x91\x50\xc0\x59\xaf\xe8\x07\x55\xef\xae\xe0\x28\x1e\xf8\x41\x66\xdf\x49\x72\x04\x27\xe4\xfa\xf2\x08\x8a\x7d\x53\xee\x7b\x25\x0d\x3f\xc8\xec\x7d\xa5\xd3\xea\x16\x86\xc0\x6a\xdf\x05\xd7\x87\x9b\xcd\x81\x9a\xac\x8a\xd5\x96\xaf\x9f\x6d\x8b\xfa\x17\xb1\xd6\x4f\x0a\x13\xa2\x77\xc5\x4b\x83\x4e\x65\x82\x7e\x28\xd6\x6b\x51\x5d\xbd\x34\xee\x5e\xcd\xdb\xe5\x4d\x51\x37\xcf\x4a\xb1\xdb\x71\x7c\xaa\x80\x8f\x00\x00\x6b\x70\x62\xfa\xaf\x24\xbb\x7b\x9c\x27\x3f\x14\xfb\x86\x27\xf4\x6f\x79\xf2\x79\xb1\x7a\xdb\xe8\xa5\x97\xd0\xcf\xf2\xe4\x75\xf1\x26\xa1\xb3\xc7\x79\x62\x6c\x24\x67\x7f\xc9\x93\x57\x5b\xb1\x51\x09\x9d\xfd\x35\x4f\x9e\xa9\xba\x4c\xe8\xec\x6f\x79\xf2\xb4\xd4\x41\x9f\xb9\x92\x1e\x4d\xf3\xe4\x59\xb1\x6b\xbe\x91\xab\xb7\x09\x7d\xf4\xd7\x3c\x79\xde\xac\x12\xfa\xf8\x51\x9e\xbc\xc2\xd2\x1f\x43\xb5\x57\xfc\x1f\xbb\x84\x3e\xfe\x33\x7e\x7f\x21\xdf\x55\x09\x7d\xfc\x44\xd7\xb7\x4e\xe8\xe3\xbf\xe4\xc9\x4b\x79\xad\x13\xff\x35\x4f\xc0\xe1\x08\x7d\xfc\xb7\x3c\x81\x2c\x9f\xe5\x09\x7a\x14\xa1\x7f\x9e\xe6\x09\xe6\xfc\xb3\x2e\xa7\x16\x95\x7a\xb5\xaa\xf5\xcf\x27\xb9\x31\x03\x4e\xe8\x9f\xff\x92\x27\x5f\x20\x38\x13\x7d\xf2\x59\x9e\x9c\x27\xf4\x2f\xb3\x3c\x61\x09\xfd\x6c\x96\x27\xdf\xca\x75\x42\x3f\x7b\x64\x3f\x1e\x9b\x8f\xd9\xf4\x2f\x79\xf2\x27\xfd\xf7\xaf\x90\x74\x36\xfd\x2c\x4f\xc6\x09\x9d\xcd\xa6\x79\x32\xd1\x7f\x67\x79\xf2\x30\xa1\x33\x5d\x13\xf2\x7d\xb1\xc3\xb3\xbf\x3e\xc6\x84\x7f\xfb\x0b\x54\x35\xfb\x9b\x29\xe0\x6f\x7f\xcb\x13\xaa\xff\x9a\x82\x3e\x33\x05\x7d\x66\x0a\xd2\x6d\xf8\xff\x27\xf4\x91\x1e\xca\x45\x42\x1f\xe9\x71\xfc\xd7\xbf\xf4\xc7\x2c\x4f\x96\xfa\xef\xa3\x3c\xf9\xff\x25\xf4\x2f\x8f\x1f\xe9\xb1\xd4\x23\xa1\x3f\x1f\xdb\x11\xd0\x3f\xfe\x6c\xc7\x4a\xff\x78\xe2\x86\xe9\x2f\x8f\x1f\xfd\xf5\x91\x1f\x04\xfd\xf3\xb1\x1d\x5f\xfd\xc3\x8e\xba\xfe\xfe\x8b\x9f\x1b\xfd\xf3\xaf\xe1\xf4\xfc\xe5\xf1\xe3\xe9\x23\x37\xb0\x47\xfa\x8d\x64\xd3\xf3\x6f\xe4\xc5\x4c\xff\x3b\x1a\x91\xaf\xe4\xe2\x1b\x39\xfa\xf3\xdf\x96\x0c\xbf\x3e\xfb\xcb\x92\xbd\x02\x65\xed\xec\x1b\xe9\x0d\x1a\x5e\x48\xf6\x97\x27\xe7\x2f\xe4\x05\xfb\x6c\x7a\xfe\xc2\x64\x7c\x21\x6d\x5a\x78\x30\xe9\xb5\xaf\x4f\x8d\xec\x45\x90\xf1\x83\x64\xb3\xf3\x0f\xf2\x82\xcd\x1e\x9d\x7f\x30\xf9\x3e\xc8\xd1\x6c\x36\x83\x1a\x3f\xc8\x11\xf4\x7b\xc9\x92\x17\xc9\xe8\x83\x04\x7a\xea\xa5\x64\x77\x81\x9d\xc8\xe7\x32\xe0\xf4\x50\x70\xb0\x6d\x01\x16\xb3\x87\xe3\x6c\x3e\x7c\x40\x1e\x92\x01\x67\x72\x21\xbd\x87\xaf\x41\xdb\x89\x8e\x53\xdd\x08\x94\x53\xa4\xf1\xb4\xfd\xf0\x7f\xb2\xd5\xf5\xfa\x70\xcd\x55\x71\xb8\x26\x0f\x1e\x0a\xa4\x47\x1a\x42\x04\x1b\x4e\x9d\x2d\xee\xc3\xff\x29\xb2\x52\x91\x79\x98\x40\xc5\x09\xb2\xd5\x61\xa5\xea\xf2\xa0\xef\xf5\x5a\x96\x51\x59\xb5\x4d\x0a\x54\xd9\xc3\xff\x69\x32\xbd\x37\x5b\xc5\xb5\x0d\xe3\xff\x51\xd5\x7c\x25\xaf\x2a\xf1\x81\xaf\xcf\xae\xe5\x5a\x6c\x04\xaf\xcf\xaa\xe2\x9a\xe7\x67\xc9\xa8\x21\x83\x0a\x9c\x73\x78\xf5\x5c\x4d\x40\x3d\x2d\xd5\x38\x19\x71\x74\xbc\xc1\x19\xec\x7c\x0c\x10\x26\xe0\x7a\x8d\xbf\x2b\xfc\x0d\xa7\x04\x86\x84\x1e\x28\x83\xa3\x4e\x4f\x88\x7d\x54\x9f\x89\xea\x8c\x23\x50\x43\x0b\xbc\xa5\x76\x32\x08\x6e\xc0\xc3\x1f\xfe\x4f\xa6\x1b\x7b\xd8\x14\x65\xa9\x3b\xb7\xbf\xda\x1e\xb2\x35\x3f\x14\x8a\xa8\x62\xb5\x25\x0f\x0c\xed\x57\x93\xc8\x0b\x4f\x32\x99\x4c\x12\xc6\x2a\x72\x67\x7c\x08\x42\x79\xce\x87\x8f\x27\x84\x7f\xcc\x6a\xb3\x14\x92\xb3\x84\xd0\xcf\x25\x71\x4a\x54\x5d\xed\x29\xf4\x33\x42\x1b\xeb\xc8\x47\x32\x27\x92\x1a\xcf\xe6\x59\x63\xb5\xcd\xa0\xa8\x82\x55\x24\x87\x30\x27\xd4\x1a\xcd\x48\x94\x00\x5a\x49\x8c\xa1\x9c\x5a\x34\xd0\xe3\x3d\xdc\xdd\xfb\x21\x2b\xfa\x60\x0e\x56\xb2\x6a\x44\xa3\x78\xa5\xce\xde\x08\xd0\x97\x69\xce\x36\xb2\x86\xb9\x44\x19\xa4\x2e\x87\x15\xc7\xa0\xdf\xae\xbb\xa5\x1e\x79\x45\xf8\xa2\x5c\x32\xb5\x28\x1d\x4b\x36\x98\xb3\x5f\x3a\x70\x8f\x99\x62\x5f\xea\xe7\x0d\x01\x2b\x96\xb9\x42\x63\x16\x80\x62\x57\x0b\x8e\xf2\xc1\x19\xd3\x64\xb6\xd5\xa4\x96\xa0\x86\x9b\x04\xf3\xe0\x23\xaf\xf7\xa5\x12\x89\xb7\xc3\xd4\xb4\x41\x26\xac\x4c\x35\x41\x89\xc5\x3a\x41\xb2\x31\x98\x74\x18\x94\x64\x21\xdf\xfc\xc1\x57\xea\x0c\xde\x2c\xcb\x64\xc8\xbe\x87\xdf\x11\x9e\xa1\x39\x51\xd0\xe4\x26\x2a\xc2\x92\xc7\xd8\xc7\x30\x0a\x21\xc0\xed\x30\x59\x57\x64\x41\x82\x9e\xc5\xd0\x2d\x65\x21\x97\x0e\x4b\xbc\xb0\x95\x15\x21\x45\xf8\xef\x60\x47\x74\x6d\x5a\xe6\x3c\xff\x4a\x2e\xf8\xe4\x2d\xbf\xd5\xe7\xa0\x9d\x1e\xbc\x78\x19\x53\x87\x03\xdc\xbc\xf8\x85\x17\x33\x7e\xeb\xeb\x8b\x85\xe0\x95\x3f\xb7\x3d\x39\x78\x9e\x68\x51\xaa\xaf\xf9\x6d\x9a\x42\x51\x60\xcd\x1c\xed\xf8\xec\xf9\x5c\x4d\xf4\x41\xf6\x35\xbf\xcd\xd5\x44\x1f\x46\x5f\xf3\x5b\x92\xa6\xd8\x0a\x97\xc1\x1f\x09\x90\xc3\xa4\xcb\x5d\x5e\xc8\x71\xbd\x0e\x32\xd8\x23\x63\x58\xa3\xe0\x4a\x6c\x4c\x43\xb0\x27\x2e\x61\xff\x59\xf2\x9b\xc7\xbc\xdf\xa4\xe9\xe3\x3f\x33\xe6\xc6\x09\x25\x20\x45\x1d\x8b\x99\x6b\xd6\x37\x96\x67\x46\x66\x00\x06\xe9\x45\xa9\xbe\xac\x8b\xdd\x16\x9a\x91\x3d\x6e\x17\x09\x7f\x81\x3f\xaa\x3f\x09\xfd\x59\x66\x35\x45\xaf\x19\xae\x59\x5f\x06\x36\x88\x3d\x13\xfa\x52\x2e\xf8\x32\x74\xca\xfb\xb5\xec\x40\x51\xba\xb7\x9c\xd3\x7a\x75\x6a\xa5\x75\x64\xf8\xe7\x97\xa7\x42\x47\xbb\xe7\xfe\xe1\xaf\x54\x26\x51\x3f\xf2\x41\x56\x91\x89\x92\xe4\x82\x4d\xcf\xdd\x8b\x1b\xbd\x58\x18\xf6\x23\x2a\x7b\x52\x69\xfd\xcc\x90\x3b\xfc\x34\xc6\xd4\x96\x13\x57\x59\x17\xe6\xc7\x36\xdc\x93\x27\xcf\x03\x8d\x46\x75\xa9\x89\xf5\xf1\x58\xbf\xba\xb8\x7d\x75\x01\x50\x1f\xd4\x06\x5f\x4a\xd2\x64\x64\x41\x33\x07\xcf\x2a\x30\x7a\x0c\xbc\x72\xb6\x56\xad\xe4\x99\xd1\x59\x51\x23\xfd\xdc\x73\x73\x78\x31\x3d\x1c\xaa\xcb\x48\xf4\x80\xb0\xb2\x81\x6b\xd8\x1f\x5b\x85\x61\xe1\x93\xd5\x36\x2c\x08\x1e\x00\xd5\xbc\xc7\xf3\x56\x45\xeb\x8b\xe9\x3c\x29\x36\xa8\x7a\x81\x08\x22\xa1\x8b\xf3\x5f\xdb\xe0\x4a\xdc\xca\x7f\x56\x3c\xab\x29\x3e\xd1\x03\x76\xb8\xd8\x38\x11\x20\x6d\x98\xb8\x98\xce\x1f\x80\x0f\xdf\xc5\x74\x49\xf7\xfa\x37\x63\xd9\x8c\x81\xab\x92\x1b\x5e\x92\x4e\xd5\xe8\x8c\x17\x22\x2f\xa7\x87\x83\xb1\x9a\x6b\x57\x63\xa0\x12\x7e\xaa\x11\x7d\xa8\x80\x8a\xea\xd8\xa9\x40\x3e\x35\xc0\xdf\x3f\xe8\x54\x25\x2d\xf4\x7a\xd9\x0d\x0a\x56\xf0\x3e\x66\x9b\x49\xc5\x21\x15\x63\xab\x23\xed\x36\x16\x75\x73\xc1\x07\xd0\x78\x46\x0b\x62\x21\x57\x12\xc6\xf6\x69\x9a\x15\x7a\xf4\x6b\x5a\x80\xd1\x29\x7a\x50\x86\x86\xe9\xf4\xc6\xd9\xd0\x20\x50\xa5\xe5\x2a\xab\x68\x41\xf7\xe4\x78\x6c\x87\x76\xba\x93\x4f\x21\xcc\xd6\x97\x9b\x61\x23\xc7\x97\x72\xf2\xa6\x68\xc4\x8a\xdd\x81\x58\x3d\xb9\x92\x9a\xbe\x44\x52\x19\x1d\x11\x9a\x20\x43\x30\xff\x63\xa7\x03\xbe\x11\x15\xd0\xc1\x9a\xf8\xb5\xbf\x91\x10\x7e\x5e\xad\x6d\x00\x10\xce\x9a\x94\xb6\x01\x60\x54\xf4\xea\xba\xd0\x4f\x0f\xa4\xa4\x75\x8c\xa5\xa9\x2d\x31\x6d\xc3\xb0\x3c\xa4\xcc\xf3\x64\xcd\x4b\xdd\x0a\x80\xa8\x4f\xa8\x7b\x90\xb9\x88\xcf\xb1\x63\xd4\x9c\x8b\xfe\xc5\xd6\x49\xf1\xba\x78\xa3\xc3\x36\xc5\xbe\x54\xf0\x94\x33\x59\xf4\x77\x9e\x88\x6a\xcd\x2b\xf5\x74\xaf\xa4\xee\x8b\xe2\x75\x9e\x54\xfc\x9d\x5e\xeb\x4f\xab\xf5\x57\x10\x99\x50\x24\xf3\xf3\x44\xc9\xab\xab\x92\x7f\x7f\xc3\xeb\x77\xb5\xd0\xef\x87\xe7\xcd\x2a\x4f\x1a\x51\x5d\x95\x9e\x45\x92\x1c\xe9\x4b\x39\xd9\xad\xbe\xc0\x2a\xd9\x1d\x5e\x0a\x4f\x93\xdc\xf8\x80\x7c\x5a\x96\x09\xc5\xc0\x2f\xb0\xb9\x5c\x81\xc2\x86\x0d\xfd\x67\x92\x1b\xfd\x62\xd3\x54\x17\x8a\x4a\xc4\x98\xea\xb7\xd6\x6f\x78\xc4\xe8\xc1\xfc\x42\xae\x60\xe4\x6d\x84\x9e\x17\x13\x0e\x53\x84\xa1\xff\xd8\x25\xe1\xcc\x9a\xf6\xe8\x39\x88\x27\x18\x23\x60\x81\xe8\x88\x2f\x6b\xb9\xdf\xe1\x72\xc1\x18\x5c\x27\x2e\xca\x2c\x1b\xb8\x39\x5d\x26\xb7\x18\x4c\x84\xcf\xe3\xd6\x0d\x16\xd6\x9a\x46\x28\xd1\xcd\x34\xb6\x10\x8f\x49\x1f\x6d\x56\x08\xc6\xbe\xd2\x83\x5c\xdc\xb8\xd4\x2f\x92\x3c\xd9\x08\x5f\xfe\x97\xe6\xf7\x77\xfc\xbd\x8a\x47\xd7\xc6\xfc\x50\xf3\x9b\x38\xe6\x05\x8c\x33\xb0\xc1\xe2\x88\x9f\x7c\x44\x30\xa5\x0b\xb7\xa8\xbe\xe1\x4d\x63\x43\x97\x2e\xf4\xdb\xa0\x33\xff\x30\x13\xed\xd7\x4e\x54\xc1\x3f\xcc\x0c\x87\xd1\x7a\xf8\x7a\xc2\x03\x72\x2b\x4f\x60\x83\xe3\x32\xe4\xd7\xc5\xaa\xb9\xb5\x6b\xf0\x45\xd2\xda\xdd\x66\xd4\x93\xf8\x1c\xc0\xd0\x1f\x7a\xd6\xc7\x77\xed\xc5\xa1\x9b\x83\xa5\xfe\x22\xeb\x75\x38\xf9\x9f\xbb\xd0\xb0\xd0\xa7\x9d\xf5\x80\x4b\xb4\x6f\x31\xfc\x9c\xc4\x47\x43\x38\x34\x3e\x2e\x58\xbc\x49\xfb\xd8\x30\x1b\xa3\x7b\x26\x40\x0b\x4d\x7a\xdd\x44\x9b\x1e\x1a\x1e\xaf\x41\x1d\x1d\x2f\xc1\xaf\x93\x3c\x79\x2b\xca\x32\xdc\xb2\xaf\x93\x3c\x51\x75\x51\x35\x3b\xd9\x70\x5d\x93\x9b\xf9\xff\x97\xbb\x37\x5b\x73\xdb\x48\x1a\x05\xef\xf9\x14\x45\x8c\x1b\x9d\x29\x26\x59\xa0\xdc\xee\xbf\x1b\xac\x2c\x1e\x59\x8b\xad\xd3\xd6\x62\x4b\xde\x9a\x45\xfb\x64\x11\xc9\x22\x2c\x10\xa0\x01\xb0\x4a\xe5\x02\xe7\x9b\xbb\xb9\x98\x37\x98\xc7\x3b\x4f\x32\x5f\x46\xe4\x06\x10\x25\xa9\xfb\xff\xcf\x5c\x1c\x5d\xa8\xc0\xdc\x97\xc8\xc8\x88\xc8\x58\x5e\x05\x71\x50\xec\x64\x0e\xa5\x61\x4f\xb6\xc2\xc7\x0d\xdb\xe4\x18\x35\x6c\x93\x1e\xcc\xb0\x4d\x7a\x10\x83\x4e\x34\x78\x60\x9b\xb4\xd0\xc2\x36\xe9\xc7\x0a\xdb\xc4\x1c\xff\x4e\xea\x31\xaa\x50\x43\x31\x48\xc1\xa6\xb6\x0e\xb7\x8f\x11\xda\x87\xbb\x85\x10\x54\x4b\x2d\x84\x60\xc0\x62\x9b\x74\xf0\x41\x0b\x8a\x3e\x8a\x10\xee\x2b\xe5\x6f\xe9\xfd\x48\x63\x9b\xb4\x70\xc6\x36\x69\xa1\x8c\x6d\x72\x0f\xc6\xf0\x32\x34\xc2\x80\x7d\xd4\x87\xe1\x08\x5b\x1c\xe7\xb9\x8d\x3e\xc6\x17\xdb\xa4\x07\x5d\x6c\x93\x23\xc0\x2c\xc5\x6e\x27\x93\xce\x52\xfa\x53\xf5\x4a\xf8\xbb\xf0\x01\xac\xa3\x73\xbb\x48\xc7\xbf\x30\xba\xb7\xcb\x11\x74\xf8\xa8\x68\xa1\x71\x11\x0b\x10\x11\x05\x4b\x38\x01\xfa\x36\xe6\x57\xf3\xd6\x71\x88\xfd\x7b\x13\x88\xb1\x7f\x16\xfc\xce\x9e\x8c\x38\x2d\x58\xe7\xae\xed\xb5\xd0\xe8\x44\x81\x9d\x58\x83\x5f\x62\x4c\x75\x29\x6b\xa5\x82\x45\x2f\x58\x9e\x33\x73\xae\xfb\x1a\x06\x26\xc5\x57\xce\x02\x66\x1c\x9c\xfd\x13\xeb\x33\xed\x67\x69\x62\xce\x38\x4f\xff\x2d\xfb\x79\xc7\x72\x5a\x3f\xff\xc0\xf9\xd9\xd2\x67\xbe\x33\x96\xb9\x89\x2a\x85\x91\x3b\x74\x08\x2b\x17\x71\x6c\xca\x22\x7a\x88\x3f\x5c\x08\xde\xe0\xb5\x06\xbc\x17\xa3\x0a\xcd\xda\xd0\x1c\xf9\x00\x51\xd8\x2c\xba\xf9\xa4\xd9\xfb\x2d\x4a\x13\xec\x91\xa0\x8e\xa3\x8e\xb7\x55\xd5\x7a\x31\x74\xe0\x2d\x9d\x0b\xa3\xb6\x7d\x1a\x00\xfe\x78\xa7\xf2\xa8\x53\xd9\xd3\xa9\x49\x33\xed\x77\xce\xc9\x27\xcd\xcd\xf0\xa0\x2b\x90\xbd\x16\x65\x52\xe9\x05\x65\x41\x92\x5e\x07\x40\xf3\x8f\xbe\x18\xb4\x46\x33\x59\x41\x41\x85\xfc\xc9\x5d\xa6\x7a\x8a\x58\x5d\xec\xe2\xf2\xa0\x2b\xe1\x72\xdf\x3b\x38\xa4\xbe\xff\xeb\x46\x07\x4f\xe6\x47\x63\x6a\xbf\xaf\x3d\x49\xaf\x27\xc5\x7a\x5d\xc9\x1a\x5e\x57\x46\xd3\xa8\x33\xe6\xc1\x7d\x70\x93\xc3\x0c\xc0\x9e\xab\xf7\x0c\xaa\x1c\x02\x76\x9b\xf7\x95\x50\x39\x44\xb7\xf1\x91\x03\xdd\x2a\x62\x5a\xfd\x48\x9d\x56\x11\x55\xc7\xa1\xae\xfe\x0a\x1d\x93\xef\xbe\xf0\xd1\xa6\x15\xc5\xf4\x7c\x7a\x1b\xbe\x6b\x25\xd5\x80\xa5\x7e\x3e\xa9\x8d\xea\xcb\x5b\x72\x7c\xec\x4e\xfe\x3b\xf2\xed\x0e\xc7\x1c\xd8\x9d\x79\x7a\x1f\x6d\x0b\x75\x9d\x5d\xa6\xa2\x8a\xa7\x87\x76\x9f\xc0\x8e\xfd\x67\x3a\x96\xc2\x76\xfc\x09\x7d\x7e\xea\x4a\xdd\xd3\x59\x9f\x0e\xb9\xc3\xb0\x94\xe5\xbc\xd7\x6e\x7a\x56\xf3\x97\x35\x91\x74\x46\x25\xaf\x51\x15\x0d\x9c\xcb\xb5\x94\x93\xe5\x81\x94\x74\x90\x83\xd4\x0b\xad\x86\x72\xeb\xf0\xe3\xe4\xa7\x82\x0c\x23\xd0\xfc\xae\xd9\x78\x8a\xae\x90\x3f\xbe\xd8\x63\x6f\xe6\xf7\x1e\xe7\x8f\xce\xdd\x1e\x6f\xb8\x9e\x3e\x8a\x7e\x4e\xfe\xf3\xa7\xfc\xc0\x7e\xb0\xe3\xbe\x0f\x47\xfe\xff\x31\xec\x8f\x0c\xeb\xdf\x87\xdd\x4f\x1d\x5b\x3f\xce\xec\xc7\x89\x27\xf9\x64\xb5\x39\x93\xc6\xa7\x0b\xc9\xf5\x5d\x5f\x49\x51\xae\x36\xe4\xf4\xe2\xcd\x29\x9d\xfb\xa7\x25\xce\xfd\x09\x7d\xbf\xeb\x9f\x89\x02\xa7\x1f\xc8\x78\x8a\xb6\x20\x81\x2d\x0f\xa2\x92\x0f\xd4\x68\x55\xd0\xd2\x96\x8f\x74\xb0\x13\x57\x5e\xf9\x4f\xe8\xc0\x55\x30\xcc\xe2\xfd\x15\xbe\x86\x2e\xd4\x15\xe5\x6a\x7c\xe0\x4c\x60\x95\x76\x8d\x22\xdb\x6f\xf3\x4f\xea\x05\x4a\xfa\xb5\x3e\xa9\x27\xaf\x96\xe1\x53\x3f\xd6\xd3\x4d\x51\x26\x58\xc3\x31\x37\x1f\xe9\xe6\x4a\x15\xf4\xea\x7c\x4a\x37\x5e\x1d\xcb\x57\x7f\xa4\x1b\x33\xb2\x16\xa7\xdb\x5f\x07\x09\xbd\xf6\x06\xf9\x8c\xf3\x87\x6b\xb5\x2b\x39\xf6\xf8\xe3\x7d\x79\x43\xb4\x4c\xf7\x47\xfb\xf2\x2a\x79\xdc\xdf\xc7\x3b\xb3\x4b\xd8\xe2\xf9\x3e\xda\x9d\xad\xe6\x04\x83\xfd\x75\x30\xdf\x5d\xf5\x41\x05\x82\x4e\x5b\xf3\xc5\xbd\xa3\x3c\xaa\x29\x92\xc4\xd5\x53\x5c\xe0\xa7\xf6\xb8\xbf\xac\x4b\xb1\xd2\x9d\x56\xb2\xac\xdf\x8a\xcb\xfb\xa8\xa1\x8e\x1e\x57\x70\xe1\x55\x7b\x53\xac\x8f\xaa\x76\x9c\x90\xc8\x23\xbd\x33\xc0\x95\x46\xbd\xb1\x16\x97\x6f\xd2\x3f\x64\xef\x03\x8d\xf6\xcc\x68\xe2\xd1\x13\xca\x04\x7f\x46\x1c\xe2\x34\xd1\x40\x8b\xc9\x6a\xc3\xc0\x0e\x1c\x5e\x58\xfe\x41\xf2\xb1\xf8\x53\x4e\xe9\xe1\x78\xf8\x15\xa9\x61\x67\x8d\x50\xb7\x63\xe4\xd6\xe3\xf3\x68\x7e\xdf\xba\xc7\xea\xf2\x90\xab\xc7\xc5\x76\x2b\xf2\x84\x04\x76\x21\xd5\xf2\xb4\x45\x3a\xbd\x2e\xb5\xee\x7d\x04\xea\x59\xb1\xfb\x14\xc4\x14\x23\xb9\xc8\x97\x6d\x5e\x32\x35\xbe\xeb\x44\xc2\x0a\x47\xf5\xa4\x1e\x4b\x89\xaf\x27\x10\x55\x46\xf1\x91\x85\x1f\x13\x5e\xbf\x0d\xa4\x3a\xe6\xe1\x64\xb5\x19\x4f\x29\x85\x8f\xf3\x88\xf6\xe5\x8f\x40\x1b\xdd\x77\xbd\x46\x20\xe8\x63\xf9\xa8\x26\xba\xfe\xa8\x9d\xf0\x10\x22\x60\xfb\x5d\x3c\xa4\x2c\x65\xc1\xc8\xae\x5b\xe0\x5c\xae\x63\xb1\x73\x7c\xd8\xf3\xa2\x3b\x8b\xee\xdc\xc6\x53\x3d\x3b\xd1\x33\x91\x0f\x8c\x31\xa2\x23\xd9\xa7\x94\x3a\x12\xa6\x84\xf0\x7c\x06\xd9\x26\xc7\x53\xe6\xa7\x77\x86\x4f\x0f\x65\xcb\x4d\x51\xca\x52\x80\xc8\x96\x47\x27\x52\x82\x6b\xde\xee\xc3\xc1\x7f\x01\xbc\xb8\xe7\xa9\x59\x79\xce\xa3\x59\x39\x1e\xd3\xce\xfc\x7b\xe7\xcc\xea\x45\xe9\x62\x81\x62\x58\x47\x45\xeb\x18\x87\x3a\x83\xbe\xfe\xee\x0b\x7a\x87\x0e\x41\x34\x7a\x52\x27\xb6\x76\xfe\x85\xf4\xb3\xa0\xf6\xbc\x60\x1f\x2f\x99\x11\x79\x7e\x32\x3a\xca\x03\x16\x80\x1b\x7e\x38\x77\xed\x87\x96\xfe\x46\x3a\x85\x14\x53\xed\xb4\x9b\xfe\x7b\x71\x3f\xcf\xf0\xac\x26\xde\x63\x67\x9b\x01\x60\x86\xf2\xcf\x59\xcd\xa6\xde\xc3\x26\x52\x72\xa6\x41\xcd\x7e\x21\xe2\xca\x5d\xfb\xa5\x4e\x4a\xf9\x4a\x82\xe3\x9b\xe3\xe7\xce\x61\x0a\x91\x4e\x52\xb4\xf2\xbe\x96\x59\x3b\x82\x1e\x18\x26\xe7\x28\x31\xf2\x49\x49\x88\x9e\xa2\x03\x47\xda\x70\x91\x8a\x02\xe5\x05\x7e\x58\xba\xba\x26\x3a\x2a\x88\x98\x47\x71\xc1\xca\x49\x55\xa7\xab\x77\xb7\xd6\xca\xb3\x74\x93\xaa\x85\xe7\x80\xac\x2f\xe8\xee\x90\xd4\xfc\x9f\xc5\xa2\x6e\x99\xf7\x77\xd4\x7d\x65\x5e\xed\x4b\xf9\xba\xc8\x32\x85\x68\x07\xc6\x65\x86\x0d\x41\xbc\x49\xd7\x35\x4b\xf9\x70\x0a\x9a\xd2\xb2\xa5\xaa\x0f\x1a\xbf\xa8\xef\x5c\xed\x77\xbb\x52\x56\xd5\xd3\x24\xd5\x06\xe2\x6d\x7d\x60\x68\x87\x0f\x21\xec\xab\x62\xee\x86\xfc\xfb\xc3\x3a\xcd\x45\x96\xdd\xde\x75\x4b\x81\xcb\xa1\xbe\x56\xa7\x66\x11\x52\xd0\x93\x2d\x51\xed\xfe\x0f\x07\x37\xb9\xe8\x2a\xfa\x98\x96\xde\xc9\xdb\x37\xf2\x77\xf0\xa9\x04\xcb\xf5\x3b\x68\xff\xf4\x28\xe8\x9c\x5e\xfc\xd9\xa8\x5f\xd5\xea\xde\xf1\xab\x83\x6e\x6a\x5c\x0a\x85\x3f\xc8\x17\x91\x8f\x09\x3a\x05\x79\xea\xad\x8d\x57\x99\x75\x97\xbf\x94\xaa\x2d\x50\xc0\x4d\xd5\xe0\xd3\x51\x70\x12\x8c\x70\x0a\x2e\xb2\xa4\x99\xb6\x9b\x9e\x83\x82\xf4\x68\xce\x5d\xdb\xdf\x36\x62\xf0\x46\xf5\x42\xec\xaa\x1e\x55\xe7\x1f\x0b\x52\xb3\x4e\xb1\x45\xbe\x64\x25\xd3\x51\xd0\xa8\xdd\x06\x67\xbb\xa2\x49\x09\xf9\xbe\x2e\xc5\x3f\xe4\x6d\x15\x86\xba\x99\xa3\x1c\x68\xa7\x69\x3a\xd9\xd8\x0f\xe4\x1d\x74\x4c\xeb\x41\x4b\xbd\xaa\x77\x4d\x6b\xca\xec\xee\x41\x01\x8c\x18\xf0\x4e\xde\x7e\xad\x53\xb5\x6d\xbd\x2b\x06\xea\x59\xba\xcd\x21\x4f\x9b\x86\xfc\x2a\x49\x49\xd9\x25\xc6\xa7\x1f\x0e\x53\xb7\xb6\x45\x0b\x6d\xfc\xac\x46\xac\xf0\xa4\xde\x97\x21\xa0\x1e\x4f\xeb\x67\xd8\x1e\xdd\x1c\xc0\xd1\xea\xfe\x94\xac\xee\x11\xc1\x9a\x53\x0c\xbe\xa5\x9a\x06\xaa\x74\x4b\xf6\x1e\xef\xf9\xe9\x2f\x57\xc5\xe2\xd1\xf8\x9f\x4b\x0b\xae\x71\x3d\xd9\x16\x80\xaa\x5a\x6d\xd3\x03\x8d\x7b\xdb\xed\x96\xa2\x70\xac\x84\xd0\x21\x88\xcd\x2a\x54\xe2\xd8\x38\xa8\xb6\x5e\x11\x56\xfb\x8a\xbf\x26\xce\x50\x88\xde\x89\x30\xac\xce\xa6\xd3\x30\x7c\xf8\x1f\x2d\xf5\x23\xa2\xae\x0e\xd5\x23\x38\x98\x55\xc8\x60\x60\x58\x7b\x5d\x66\x50\x77\x50\xc1\xf4\xaf\x9c\x97\x4d\x23\xed\x22\x6b\x04\x55\x08\xe8\x6b\xb0\x0e\x43\xa2\xc6\x3b\x2f\x31\x12\xcf\x30\x0f\xc3\xbf\xfd\x0d\x84\xf2\xc3\x27\xaa\xcb\xab\xb9\xb4\x9a\x5f\xd2\xd3\xfc\xea\x31\x8e\xd0\x5e\xab\x59\xb0\x52\x77\x2c\x65\xd3\xbf\x0d\x55\xdf\xa7\x17\x97\x5e\xa8\xa9\x55\x59\x54\xd5\x46\xa4\xe5\xc5\xa5\x59\xf6\x23\x69\x8d\x0d\x4e\x43\x9b\xe6\xd8\x60\xf8\x48\xba\xe3\x16\xba\x54\xa5\x54\xb7\x2d\x9d\x2d\x54\x6e\x6b\x1a\xf2\x8e\xd4\xad\xb0\x57\x76\x2c\x01\x65\x3b\x69\x2d\x23\x00\xfc\xf7\xbb\x40\x41\x7d\x2b\x79\x5b\xec\x2b\x59\x5c\xcb\x52\x65\xd1\xc3\x6f\x1f\x68\x6e\xd3\xdf\xdc\xe6\xde\xe6\x0e\x8a\xa6\x77\x07\x67\x0f\x20\xa3\x76\xcf\xdf\x7f\x34\x88\xd3\x9a\x61\xee\x46\xb8\x76\x5e\x70\x6d\x03\x59\x0f\xcc\x0d\x49\xc7\x02\xad\x69\x34\xcc\x81\x59\x38\xee\xad\x51\x82\x83\x25\xbb\x52\xeb\x67\x94\xf7\x9c\x20\x49\x8f\x08\xe5\x45\x5a\x41\x7b\x80\x4a\x78\x25\xe7\xc2\xa9\x39\xe2\x49\x40\x13\x23\x30\x76\x83\x61\xac\x55\x77\x37\x9b\x74\xb5\x51\x57\xac\xfe\x3c\x9b\x46\xb4\x69\x86\x1a\x30\x0d\x2a\xed\xd3\x04\x37\x0a\x5a\x65\x9c\xd3\x41\x70\x71\x89\x18\xe9\x3e\x3f\x2e\x88\x43\xfe\x1c\x8c\xca\x51\xf0\xe7\xe0\xe3\x28\xe4\x00\x46\x77\x29\x84\x1c\x6b\x5f\x35\x45\xfe\x0f\x79\xfb\x5a\x5d\xa7\x0a\xd1\x1d\xd0\xd6\x64\x25\xd8\x5a\xb0\x8d\x38\xba\x34\x60\xaf\xea\x74\x2b\x6d\x64\x83\xa2\x32\x6e\xcf\x2f\xf7\x75\x5d\xe4\xbc\xf4\x28\xb6\xa4\xb3\x5f\x40\xfd\x1a\x43\x10\xd8\x3b\xbb\x55\xe5\x44\xac\xea\xf4\x5a\xbe\x2d\xf6\x6a\x05\x4b\x3d\x3c\x75\xd7\x17\x65\x5d\x41\x32\xa1\x60\x07\x58\xf6\x12\x29\x8a\x28\x02\xe0\x71\x68\x81\xdd\x94\x44\x5d\x1d\x74\x0f\x91\x20\xd1\x78\x44\x96\x68\x86\x25\x2e\x33\x85\x6d\xd8\x07\x8d\xc4\xfa\x2b\x45\xda\x3e\xc6\xf2\x41\xc3\x6b\x7f\x83\x73\x6d\xe4\xa8\xa8\x9a\x57\x60\x0c\x59\xf0\x7c\xde\x27\xf7\xb6\xd6\x91\x86\xd0\x5b\x8b\x30\x5c\x8b\xc9\xaa\xd8\xee\x44\x29\xb5\x12\xe6\x9c\xac\x04\x5f\x6b\xa8\x0b\xea\x32\xdd\x65\x32\xa0\xf1\x4a\x84\xe1\xea\xb8\xec\x1a\xe9\x9f\x8d\xd0\x29\x6c\x65\x6a\x26\xc5\xfe\x12\x6a\xaa\xf6\xda\x65\x6c\xeb\xf8\x18\x1b\xd0\x03\xc9\x59\x4a\x8d\x22\x54\x30\xd0\xb6\x95\xda\x0c\x8c\x4d\xe1\x5a\x35\x66\x6d\x3a\xf6\x8a\xb3\xd9\xeb\x49\x26\xa8\x42\xdf\x06\x28\xd4\x28\x44\x52\x39\x78\x9c\xa5\xab\x77\xc1\xc0\x0c\x53\x1d\x86\x82\x07\x4f\xf0\xd7\xa8\x88\xcd\xcc\x39\xa8\xcf\x16\x3c\x78\x8b\xbf\x47\x85\x23\xfc\x15\xc8\xff\x50\x90\x02\x74\xf6\xea\x39\xda\x8b\xc4\x0f\xe1\xfb\x45\x9a\x24\x99\x0c\x8c\xdd\x08\x1d\x15\xe0\x1d\xe8\xe3\x77\x2a\xb0\x12\x48\x31\xb3\x61\xdd\xd6\xbd\xcd\xff\x0d\x1a\x38\xe7\x18\xe8\xb1\x4d\xed\x7e\x98\xb6\xcd\xf1\x0c\xa7\x2c\x67\x05\x9c\x17\x35\xc1\x74\xde\x06\x2b\x24\xf7\xc4\xdc\x03\xe9\xe7\xe4\xd7\x5c\x41\x62\x44\x63\xd9\xbd\x9c\x31\x48\x28\x3b\x8e\x3e\x6b\x3d\xe4\xc9\x1a\x1d\x20\x90\x60\x55\xe4\xeb\xf4\x6a\x5f\xa2\x8b\x9d\x40\x81\x76\x3e\x37\x15\xe2\xbb\x83\xef\xbd\x69\x9f\xa7\xb5\xd9\xd5\xcb\x79\xe9\x91\x42\xa5\xbd\x75\x4b\x8d\x8d\x07\x58\x9c\x17\xf3\x40\x31\x54\x02\xa0\xcd\x82\x1d\xec\x1b\x48\x26\x63\x07\x16\xf5\x1c\x05\x88\x31\x0a\xc7\x0f\xb6\x5f\x7c\x30\x30\x61\x6b\xf1\x97\xda\x89\xd4\xba\xdf\xf4\x32\x14\xc6\x31\x03\x33\x9e\x94\xd3\x89\x48\x92\x97\xf2\x06\xea\xe0\x27\xbf\x9a\xfb\x83\x36\xa4\x82\xad\xb0\x2d\xae\xe5\xab\xfc\x49\x29\xae\xa0\x92\xfb\xc9\x87\x44\x55\xc5\x59\x7a\x35\x2d\xac\xa6\x07\xe3\x6e\x2b\x73\x9a\xd1\x03\x47\xfa\x2a\x7c\xf3\xa4\x2c\x76\x61\xf8\x16\x83\xbc\xb5\xe1\xcb\x2d\x51\x09\x22\x15\xcf\x40\xb6\xa6\xf4\x7c\x3c\x55\x50\x5b\x13\xc8\xd1\xce\x60\xd3\x25\xb5\xaf\xbd\xf4\x2c\x52\x77\xc1\xfb\xef\x64\x76\x1e\x51\x2c\x9b\x6a\x77\xb8\xf4\xdc\xe6\x9d\x45\xb4\x07\xc2\x0c\x13\x65\xee\xdc\x42\xe1\xd1\x8c\xff\x94\x77\x1e\xb5\xf7\xb0\x26\xbd\x68\x97\x5a\x56\xc2\xb7\x89\x55\xed\xec\x24\x49\xc1\xcf\xde\x4e\x96\x93\xe2\x26\x97\xe5\x93\x36\x71\xa1\xa8\x8e\x8c\x7e\xbc\x1c\x3e\xe2\xad\x74\x49\x33\x0a\x34\x84\x45\xa9\x04\x5b\xf7\x64\x16\xd8\x7c\x81\x2c\x40\x4d\x59\xae\x41\xa1\x69\x7e\x48\x8d\x48\x00\x69\x42\xfc\xcf\x40\x1a\xdb\x37\x8d\x08\xc3\xbf\x73\x5e\xcd\xfb\x2f\x95\x7b\xc6\x3b\xb9\x2c\x92\x5b\x8b\x5a\xd3\x1e\x7b\xe4\xb8\x93\x08\x3e\x26\x5b\xef\xa4\x05\x2f\x9a\x06\xa4\x0d\xe2\xb2\x52\x74\x78\x96\xca\xbc\xfe\x69\x2c\xcd\x17\x1d\x1d\xe5\xfe\x6c\x73\x7f\xa6\xe7\x7c\x1a\x1d\xd8\x9a\x1f\x5f\x81\x85\xba\xef\x06\xf7\x6f\x25\x84\xe7\xee\xd9\xca\x8c\x65\x60\xe2\xcc\x87\xb9\x77\x2c\x58\xa7\x11\x84\xf0\x9e\x44\x42\x07\x9b\x4f\x84\x84\x8f\x96\xb3\x90\xb0\xf9\x10\x24\x1c\x65\x6a\x48\xb8\x81\x50\x72\x1f\x24\x13\xfa\xf6\x0c\xe2\x83\xb2\x9a\x15\xb4\x27\xda\xc5\xf1\x09\x02\xc0\x1a\x00\xc4\x0d\xb4\xea\x3c\xdb\xf3\x02\xfc\xf2\x64\x7c\xaf\xcf\xf0\x20\xb7\x28\x6a\x68\x00\x6f\x4e\x2a\x2c\xe7\x9b\xc8\x33\xc1\xab\xf3\xf1\x74\x9e\x2d\xaa\x65\xac\xe5\x9c\x60\x47\x1e\x13\xa1\x4b\xdb\x78\x08\xac\xf2\x52\xd0\x9b\x33\x18\x34\x39\x84\xcc\x79\x8e\x58\xdd\x9d\x05\x22\xb8\xdf\x2c\x03\xcf\x0e\x48\x6f\x82\x73\x87\x8a\x8f\xa7\xce\x59\xe2\x8a\xef\x90\xd5\xd4\xed\x0c\x04\xb7\xc3\xff\x3d\x25\xc2\x7a\xa6\x66\xda\x53\xb5\x3d\x55\xf1\xea\x60\x3a\x9d\x8f\xa7\xea\x6c\x91\x8a\x67\xc6\xa7\xc3\xb7\x29\x29\xd8\x4d\x4a\x24\x00\x1b\x86\x6d\x15\x4b\xca\x2a\xca\xee\x70\x2b\xe3\xe1\xd4\xfa\x2f\x78\x00\xd0\x10\x1c\x28\x8d\x33\x1b\x5e\x3e\x0c\xd5\x1a\x19\x39\x7d\x18\xe2\x7d\x63\x66\xdc\x5a\x67\xbf\x37\x63\xe9\x56\x51\xd3\xb1\x49\xab\x46\x53\xaa\x2e\xdc\x0f\x8e\xc0\xec\x2d\x8d\xbf\x52\x8d\x56\x4c\xb0\xdf\xc1\x86\x2e\xc2\x39\x69\x3f\xdb\x0b\xb1\x54\x2d\xfd\xee\xca\x03\x70\xac\x79\xe9\x88\xec\x8d\x26\x5c\xa2\x21\xaf\x6b\xb2\x66\x35\x10\xc9\x6b\x5e\xb3\xbe\x1d\xf4\x62\xaa\x2f\x96\x70\xf5\x74\xdf\x7b\x56\xfc\x19\xf9\x59\x92\xc2\x08\x3e\xd1\x2e\xa5\x9c\xac\x36\x70\xd8\x4c\x6e\xed\xe7\xd6\x3a\x37\x71\x71\x08\x56\x6c\x43\xd9\xce\x49\x40\xe1\xf7\x96\xfb\xee\x1b\x9d\xfb\x38\xca\xae\x5b\x11\x0c\xac\x7a\x8d\x73\xed\xd8\x2e\x4f\x67\xdb\x33\x7e\x3d\xdb\x1a\xf9\xd4\x2d\x87\x41\x6d\xf5\x78\xae\xf8\xcf\xe4\x96\x25\x2c\xa3\x83\x84\xf3\xdd\x3c\x6d\x09\xfc\x65\x4d\xb6\xec\x0a\xde\x0b\xd4\x5f\x4a\xe3\x5b\x03\x0e\x57\x0a\x19\xdd\x5b\x56\x35\xba\x63\x19\xa5\x94\x1e\x52\x1b\x17\xb7\x5d\x01\x8f\x83\x03\x95\x7d\x27\x48\x82\x07\x31\x29\x02\x6a\x07\x38\x98\x05\x9b\x03\xdc\x92\xf0\xeb\x79\x5e\x17\x3f\xa4\xf2\x46\x31\xd4\xf6\x54\x5d\xb2\x5f\xb9\x60\x37\x78\xb6\x6a\x73\xb6\xd8\x53\xfe\xab\x3e\x4d\x83\xba\x26\x37\xe6\x64\x3d\xa5\xe7\xd1\x9c\x5c\xf2\x1b\x3c\x61\x4f\x79\x51\x93\x5f\x0d\x41\x60\x4a\x29\x04\xa1\x8a\x98\x3a\x3c\x55\x85\x80\x2e\xb8\x31\x61\x27\x54\xd7\xef\x79\x77\x5e\x74\xf0\x7e\x51\x2d\xfb\xa2\x67\x72\x13\x42\x45\x51\xbe\xd8\x79\x7a\x24\x5e\x57\x18\x27\xe2\x0a\x82\x15\x82\x54\xa4\x22\x8a\xb8\x15\xe0\x6a\x61\xb7\xe1\x6b\x07\xd6\xf8\x28\x6d\xbb\x5d\xd5\x59\x82\xef\x11\x7c\x57\x1b\x27\x29\x67\xce\x86\x19\xcd\x70\x86\x5c\x15\x08\xc3\x6a\x52\x17\xf8\xdd\x6e\x65\xcf\x32\x2e\x46\xba\x30\x87\x02\x9c\x93\xe9\xd0\x99\x02\x45\xf1\xd4\x0c\x3b\x6b\x9a\xcc\x3d\xd6\xb9\x86\x14\x55\xdc\x8a\xf1\x4d\xf7\x5c\xa7\x8c\x75\xc2\x03\x02\xde\x82\x38\xef\x3c\x2c\xcc\xa7\xf1\x78\x4a\xcf\x23\x1f\x89\xc2\xbc\x72\x78\x53\xb5\xf3\x5a\xf3\xd5\x58\x34\x0d\x51\xc9\x63\x98\xc6\x03\xcf\x60\x69\x3e\x9e\xaa\x51\xee\xf9\x8a\xf3\x6c\x3c\x6d\x1a\xf5\x77\xbe\x3e\x8b\xe2\xf5\x79\x74\x40\x6f\x22\xc5\x22\x1b\x91\xbd\x2a\x19\xd1\x25\x4b\xf8\x1e\x4d\x9e\x36\x7a\x9e\x6c\xc7\x93\xf9\x06\xcd\x9e\x36\x93\xba\x60\x5b\x9e\x1c\xdb\x6c\x59\x86\x59\x2d\xd3\xce\xdf\xbf\xed\xbc\x36\x37\x90\x7e\xf7\xd3\x47\x79\xc7\xb6\x94\xe5\x36\x90\x36\x06\x0c\x29\xd8\x53\xca\x2e\x5b\x27\xe8\xbd\x3a\x25\xbf\x6b\x37\x18\x09\x77\x77\xfd\x95\xac\xbf\x2c\xf6\x60\x1a\xfc\x18\xe8\x98\xef\xe4\xaa\x26\x6a\xc0\x9e\x13\xa3\x2d\xa9\x9d\x20\xbe\xc5\x92\x02\xb5\xc9\xa7\xa7\x11\x53\x2c\x1e\x12\x7b\x5d\x42\xeb\x53\xc9\xcc\xeb\x4f\x28\xa9\xc8\x95\x5b\xca\x8a\x23\x9f\xf2\xce\x7f\x3c\x4c\xf1\xfa\x98\x92\x8e\x86\x9c\xd7\x5a\xc2\x52\x85\xe1\x2b\x35\xd6\xb9\x7b\xf2\x21\xa5\x79\x77\x1d\x8d\x76\x18\x98\x1d\xaf\xe3\x52\x5d\xc7\x7d\xd7\x00\x9c\x9b\x4a\x03\xea\xc0\xde\x1e\x15\x5b\x53\x70\x29\xdb\x11\xe3\x6e\x48\x65\x8c\xb7\xdf\xe5\x24\x65\x05\x9d\x11\xf4\x92\x65\xdc\x71\xe2\xaf\x33\xf4\xb1\x49\xc3\xd0\xa3\x97\x7e\xea\xbc\x8f\xee\x38\x17\x61\x08\xc1\x17\x29\x9b\x7e\x11\x79\x18\x2d\x53\xe7\x0c\x49\xd2\xb3\x64\x52\x17\xbb\xf9\xf8\x61\x14\xdb\xb4\xf3\x64\x72\x59\xd4\x75\xb1\x9d\x3f\x8c\xe2\x68\x90\x7d\x42\x37\x3e\xd5\x6a\xbd\x22\x8e\x78\xc6\xc0\x90\xfe\x40\x99\xea\xff\x40\x6a\x1a\x6f\xc1\x67\x16\xbb\xc5\xd5\xdf\x3a\xb2\xb6\x0d\x34\xb7\x9f\x4a\x6f\x5e\x7f\x02\x65\x8a\x20\xe1\x48\x45\xc5\xe3\x23\x87\x1f\xbf\x91\x10\xfe\xde\x49\xa0\xc2\x10\x84\x8d\xf1\x43\xc5\xf8\x93\x3c\x0c\x7f\x30\x3e\x82\xf2\x8f\x90\xa7\x65\x0f\x79\x4a\xe3\xcf\xf1\xed\xe4\xfd\xfc\x58\x24\xf8\xb8\xc8\xd5\x35\xfa\x42\xe6\x7b\xd5\xe3\x8d\x82\x41\xea\x4b\x72\x77\xad\x47\x46\x4d\x31\x95\x7e\x9c\xc8\x5f\x53\x52\x33\x84\x33\x64\xd7\xbd\x7c\x0c\x61\x09\xfa\x42\x35\xd1\x65\x80\x97\x3f\x6e\xc3\x99\xa9\x46\xe0\x3e\xd4\xd3\x3d\x77\x6a\xe7\xe6\x81\xb2\x84\x4b\x67\xd0\x6e\x21\xd7\x56\xb9\x18\xd2\xdc\x62\x85\xee\xfb\x18\x2b\xf0\x01\xa3\x2e\xf6\xab\x8d\xac\x68\xca\xed\xf7\x22\x5a\x1a\x2e\x8a\x15\x7d\xc9\x3f\xa3\x20\xb0\x2e\x6f\xef\x54\x35\xbf\xac\x2e\xa0\xdd\x26\x59\xe1\xec\x70\x7a\x48\xd7\x24\x3d\x47\xa2\x67\x9d\x15\x45\xe9\x3d\x8b\xa2\x9f\xf2\xea\x3e\xfc\x36\x29\xc1\x07\xb5\x13\x44\xe5\x00\x1a\x86\x71\xf0\xd8\x8a\x8a\x0b\xfb\xfe\x70\x4f\x63\xe8\xb3\xb5\xd2\xe7\xaa\x69\x86\x57\x12\x84\x53\x66\x1f\x9e\x42\xc3\xc5\x18\x62\xce\xec\xc6\x62\x72\x9d\xca\x9b\x57\xa0\x79\x3a\x68\x47\x34\xef\x8e\xff\xcd\x4e\xae\xfa\x82\x9b\x0b\x3b\xbf\xd5\x26\xcd\x92\x97\x45\x02\x31\xce\xd5\x40\xb2\x30\xcc\x3e\x3c\xeb\x73\xeb\x5f\xe1\x64\x0b\x03\x65\x92\xfd\x64\x48\x89\xc2\xf7\x1a\xe5\x0d\x62\xb1\x5f\xba\xe7\x17\xa6\x28\x24\xd9\x7e\x98\xb8\x16\xad\x30\xaa\x1a\x38\xac\xbf\xf8\x74\xf5\x0e\xc3\xbc\xd8\x0a\xb7\xba\xc2\x8d\xb7\x6d\xac\x6e\xbd\xec\x68\x13\x7e\x5c\x4f\xd3\x94\x3b\x57\x81\xb7\x7f\xfd\xdd\x7a\x65\xd9\x50\xeb\x2b\xe3\xe3\x06\x94\x5a\x61\xfe\x16\xda\x6a\x9a\xf7\x20\xf7\xfa\xc0\x39\xae\xbd\xe1\x5f\x89\xb6\xbb\x2e\x83\xa2\xec\x22\xf1\x0f\xe4\x99\x37\x32\x72\x7a\x51\x3d\x58\x6d\xc7\xd5\xf8\xe2\xcd\xe8\xf4\x8a\x05\x01\x1d\x79\xdc\xc4\x46\xfa\x45\xc9\x2f\xcd\x45\x45\x2f\xaa\x07\xaa\xe0\x09\xd4\x0a\x28\xfb\xa3\x24\x92\x1e\x36\xc2\x8f\xc0\x8b\xe2\xec\x23\x99\xa4\xef\x9d\xb1\x4e\xb7\x72\xf4\x97\x28\x3a\x97\x61\x88\x34\x63\x6d\x5f\x23\x28\xbc\xd6\x78\x0f\x12\x07\x38\x15\x97\x82\xdf\x19\x87\x19\xc7\x4e\x1f\xbd\x07\xaf\xc9\xf3\x3c\xad\x83\xc3\x81\xfd\x2a\xf8\xdd\x81\xdd\x88\x96\x83\x9d\xa7\x3e\xde\x1b\xd6\x43\x3e\x24\x65\x18\x96\x43\x7e\x29\x9c\x3f\x97\x96\xe3\xb2\x67\xba\x6a\xc5\x52\x5e\xcf\x37\x32\xde\xc9\x41\xea\xab\x40\xf4\x49\x23\x14\x75\x27\x4a\x45\x8e\xdc\x5b\x52\xa2\xe3\xaa\x7c\x02\x1f\x1f\x2a\x89\x8f\x71\xf9\x44\xfd\xfd\x50\xb9\x4c\x82\xc5\x5c\x3e\x81\x8f\xfb\x4b\x16\x3b\x55\x48\xfd\xf5\x8f\xd0\x7b\x0d\x52\x66\xff\xc1\xeb\xbd\x02\x9d\x34\xbf\x9a\x93\xdf\xc8\x11\x40\xb5\x5e\x19\x55\x5a\xe0\x9f\xde\x2a\xfd\x43\x5d\xd8\xf5\x6d\x26\x15\x4f\x88\x8e\xc2\x82\xa0\x5b\x02\xd3\xc1\x2b\x5c\x4c\xde\x7d\x5a\x27\x3f\xd4\xf0\xa4\x2f\x40\xac\x93\xc1\xff\x00\x87\x1f\xbe\x43\xff\x00\x2d\x28\x78\xf7\x71\x93\x7e\xd3\xd2\x04\x70\x2f\x92\x75\x27\x86\xf2\x1b\xd1\x8a\xa1\xac\xab\x61\x00\x18\xbd\x60\xbc\xe6\xf5\xfc\x1b\x45\x87\xdc\x1d\xd8\x37\xe4\x57\xc1\x6a\x66\xde\xc2\x15\xdb\x74\x2d\xb2\xbd\x1c\x1c\x3d\x4e\xe4\x73\xeb\xc9\x38\x67\x35\xf8\x53\x65\xda\x57\x5a\x4b\x7d\x0c\x1c\xfa\x19\x95\xa5\x18\x0b\x82\x8f\x62\x3f\x7c\x31\xfc\xd0\x4e\x46\x93\x62\xc5\xf3\xc1\xb5\x8d\x0e\xf1\x46\x20\x56\x79\xa3\xb6\xa4\x5a\xd4\xde\xaf\xa5\x76\x72\x5b\x18\x6f\xa7\xb0\x05\x50\x2b\x49\x81\xb4\x49\xd5\x6c\x5b\xae\x79\x0a\x8b\x57\xdc\x06\xe1\x13\xe1\x95\xd0\xcd\xd5\x2d\x18\x72\x9e\x53\xef\x41\x4b\x23\x1e\x9c\x1c\x6f\xf6\xf7\xb9\x69\x0d\xdc\x47\x2b\x7a\x8e\xdf\x69\xed\x95\x78\xb1\x64\xea\x50\x64\xe2\x16\xbe\xd5\xec\xbf\x92\x79\x1c\x41\x2a\x6a\xa9\x0d\xa7\x2c\x91\x99\xb8\x4d\xf3\xab\x2f\xb3\x7d\x09\xb1\x05\x54\x22\x90\x52\x32\x81\x20\x05\xfe\x93\x8d\x4a\x00\x1f\x8a\xcf\xf3\x55\xb1\x55\xc8\x66\x3c\x65\xab\x7d\xed\xff\x6c\xd1\x93\xd0\x83\x27\x37\x55\xbf\x6d\xbc\x6a\xe0\x9b\xfe\x60\xa8\x38\x82\xba\x0c\xd5\x4e\xae\x52\x91\xa1\xf2\x2a\xb0\x0c\xac\x9e\x88\x7d\x5d\xc0\x88\xc2\x70\x78\x1b\x86\x45\x9b\xde\x63\x56\xf5\xe2\x23\x54\x62\x9f\x12\x12\xc4\x5e\x7a\x18\xd1\xa3\x58\x2c\xbe\x4f\xbf\x8d\x24\xb5\x87\x23\x80\xb4\x4d\xc0\xc0\x1b\x68\xe9\x44\x50\xa0\x85\xfd\x32\xc9\x65\xb6\xc2\x8b\x55\x8f\x6e\x7e\xc4\xf4\xc0\xc3\xaa\xf4\xe2\x75\x18\x19\x23\x35\x3e\x62\xf5\xbd\x8d\x5e\x68\xfd\x8b\x18\xbc\xd0\xd6\x4e\x71\xcd\xa3\x37\x4b\x3a\xb0\x72\xfc\xdc\x0a\x26\xb4\xf1\xd3\xe1\xe0\x49\x6b\x1d\x41\xa0\x47\xd1\x34\xd0\xea\x81\x76\x27\xec\xdf\xc5\x7d\x4f\xf1\xb7\x46\x97\x06\x55\x5b\x58\xce\xef\x64\x9e\xc4\x91\x77\xb3\xa4\x84\xde\xd5\xed\x37\x70\x52\xde\xe3\xab\xd1\x79\x38\x72\xc5\x91\x7d\x64\x53\xf9\x39\x65\x44\x9d\x65\x2f\x8f\x4e\x64\x9e\x78\xae\x78\x3d\x55\x26\x4b\xa7\x98\xa0\x1d\x99\x5c\xdb\x27\x4e\xeb\x47\x1f\x52\xc7\x12\xfe\x80\x10\x47\x91\x82\x12\x7c\xa9\x18\xe0\x79\x50\x8e\xf2\x07\xf9\xf9\x5f\xa2\xe8\xd0\x59\x1c\x20\x97\x8d\x98\xdd\x4c\x22\xf5\xb6\x37\x55\x1b\xe8\x83\x57\xba\x26\x53\xf4\xde\x0e\x84\x76\x5b\xaa\xa2\x1f\x5e\x6b\x97\xbf\x88\x5c\xc4\x85\x49\x29\x92\x74\x5f\xfd\x74\xc6\xa7\xa0\xce\x03\xbf\x7e\x3e\xe3\xd3\x03\x81\x6e\x00\x62\x52\xaa\xd6\xba\x57\x89\x00\x62\x90\x98\x25\x2f\xa9\x16\x35\xb9\x77\xfa\xf6\x9a\xdf\xc1\xb4\xe2\x82\x29\x8e\x0f\x90\xc1\xae\x94\xd7\x71\x31\x56\xd7\x72\x72\xc6\x3f\x8f\xa2\x79\xae\x4f\xe9\x14\xe3\x78\xf8\x33\x02\x45\x31\xaf\x3d\x58\x5f\x57\x4a\x31\x18\x3b\x71\x25\x7f\x62\xed\x52\x75\xb1\x3b\x2e\xf4\x33\x38\xdd\xed\x5b\x7a\xe4\x46\x3d\xf0\xe9\x82\x59\xbb\x75\x98\x0a\xc7\xa0\x86\x7d\xcd\x49\x30\x08\x37\xad\xb9\x90\xb0\x7e\x23\x03\xf4\xd6\x0c\xbe\xa1\x59\x49\xc3\x10\x7d\x51\xe5\x30\x41\x10\xa9\x43\x2f\x61\x68\xd6\x75\xac\x29\x9e\xb3\xcf\xa3\xc8\xb9\x0e\x6a\xd9\x6d\xb5\x3a\x30\x76\x4b\x03\xc1\x87\xf9\x44\x2d\x7a\xd3\xa8\x1b\x10\xbf\xe9\xdc\xc8\x93\x58\x45\x63\x5d\xe0\xa8\x94\x2e\xda\x42\x0e\x15\x8d\x1d\xe3\x59\xf5\x32\x9e\x95\xcf\x78\xb2\x8e\x65\xba\x30\x08\x45\x20\x42\x61\xd2\x22\x61\xd0\x27\x3c\xa4\xe4\xbe\x75\x5d\x29\x5a\x21\x0b\x58\x7a\x94\x8d\x5f\x9d\x2d\xb4\x42\x0d\xe4\x30\xd1\x6f\x6a\x18\x92\xdf\x00\x43\xf6\xc8\x3c\x28\x7b\xd9\x9b\x05\x81\x20\x86\x11\x65\xc0\x4f\xd9\xce\x24\xed\x19\x28\x20\xf6\x9b\x8d\x94\x59\x2f\x9a\xbb\x4a\x35\x9a\xeb\xd6\x7b\xf2\xea\x05\xe8\x0d\xbc\xe9\xce\xe4\xde\xba\x96\x7e\xeb\x99\xbc\x3d\xeb\x86\x06\xf0\x82\x5f\x74\xd2\x20\xea\x45\x74\x00\x7f\xc6\x3e\x31\xae\xf0\x6f\xcb\x74\x48\x11\x71\x06\xc9\xbf\x07\x24\x0f\x44\x40\x7f\x01\xd2\x27\xe4\xf6\xaf\x26\x73\x28\xac\xaf\xe1\x55\x29\x45\x2d\x8d\xf0\xe7\x59\x29\xae\xd4\x5f\x42\x07\xd7\xb9\xd1\x02\xe8\xf3\x77\x0c\x51\x09\x7b\xdc\x20\x3f\x26\x60\xb6\xa8\x35\x13\x7d\x6d\x3d\xc8\xaf\x7c\x42\x48\x55\xd3\xc9\x2d\x0a\xdb\xf9\x62\x46\xf3\x18\x34\xc2\xea\xed\xcf\xab\x85\x2d\x3d\x49\xaf\x29\x65\x6f\xfb\x0b\xe7\xf4\x80\xbc\x2a\x83\x85\xa4\x07\x56\xb5\x2d\xa3\xef\xb3\x05\x4e\xd7\x44\x84\x21\x19\xf6\x3d\x27\x37\x8d\xc5\xc1\xe3\xc7\xc5\x19\xa8\x5f\x41\xf3\x9e\x0e\x96\xbc\x87\x18\x00\x14\xd7\xf2\xe2\x5d\xb5\xbc\x78\xa3\xe7\x08\xcf\xb0\x1c\xc0\xc5\x2f\x2f\xd7\x6b\xf4\x57\x51\xdc\xc8\x84\x07\xab\x62\x77\xfb\x02\xb0\x6a\x4f\xbb\xa5\xb8\x7a\xbe\x15\x57\x32\x0c\x87\x1b\x4b\xb7\x3c\x26\x41\xba\xbd\x0a\x3c\xb5\x81\x60\x57\x54\xa9\xea\x2e\x3e\x59\xa7\xef\x65\x32\x3b\x01\xbb\xd4\x93\x68\x76\x52\x17\x3b\xf5\x37\xa0\x83\x72\x52\x95\x2b\x1e\xa8\x3e\xe2\x54\x35\x7a\x7a\x95\xae\x67\x97\xa2\x92\x7f\xfd\x0b\xfb\x2e\xca\xbe\x7a\xf5\x24\xdb\x3c\xfa\xf6\xd1\x97\x8f\xd4\xbf\xc7\x5f\x7f\xf1\xe5\xa3\xa7\xff\x78\xf4\xe8\xe9\xa3\x6f\x20\x41\xa5\x3f\x7d\xf4\xe8\xd1\xf3\xc7\x6f\x1f\x3d\x7d\xf4\xea\x86\xf3\x80\xad\x21\xda\xe3\x0d\xf0\x4d\xa5\x0e\x67\xc6\xa7\xec\x98\xdf\x57\xff\xe7\x09\x7a\xe8\x2e\x29\x2b\x27\xbf\xaa\x7b\xa7\xd4\x56\xc7\x80\x50\x3e\x30\x7b\x52\xb2\x48\x61\xce\x35\x38\xc4\x86\x10\x1e\x2f\x8b\xa4\xed\xf7\xbb\x34\x80\x72\x60\x8a\x9b\x8c\x81\x00\x7c\x51\x50\x06\x0c\x68\xff\xd1\x03\x47\xe3\x87\x83\x71\x24\xaa\x2f\xf1\x2b\x59\x3f\x4b\x65\x96\xa0\xd2\xc0\xde\x2a\xa7\xf6\x80\xdc\x5e\x18\xaf\x9e\x06\xd9\x60\x71\x8f\x5c\xad\x34\xb9\x8a\x19\x40\xdb\xeb\x9c\xcc\xe5\x00\x5a\xef\xed\xe1\x69\xde\x6e\xbc\xe3\x37\xdb\x15\x7c\x6f\x0a\x1e\x34\x8f\xf2\xa4\x20\x94\xfd\xde\xe2\x58\xfa\xa2\xcc\xb1\xd7\x3a\xc0\x46\x4e\xbb\xb4\xbf\x0e\x5d\xb3\x11\xd5\x33\xbc\x76\xda\xba\x60\x4f\x31\xb2\x10\x05\x9d\x92\xf7\xa6\xa3\x1b\x41\x6f\x44\xd7\x3f\x6d\x46\xc3\xf0\x46\x2c\xb2\x25\x29\x59\xbd\xc8\x96\xec\x52\xd0\x41\x96\x5a\xde\x6c\x9d\xe6\x69\xb5\x79\x0e\x4f\xe4\xfe\x2f\x2c\x60\x99\xbd\x15\x8f\x66\xab\xb3\x57\xc2\xc9\x01\x57\xf4\x95\x58\xac\x96\x40\x87\x9b\x11\xec\x55\x1b\x6d\x6e\x2f\x50\x7c\xf1\x36\xfd\x43\x66\xf2\x2a\xbd\x4c\xb3\xb4\xbe\x0d\x38\xbf\x92\xf5\xe3\x62\xbb\xdb\xd7\x32\x01\xd6\x53\x1b\x1a\x2a\x7c\x04\x0f\xbf\xdf\xc9\x3c\x91\x25\xb2\x8b\x36\x4b\x8b\x11\x5a\xf9\x3c\x50\xeb\x16\xd0\xc3\x1b\x61\x5c\xd7\x54\xfc\x57\xc1\xde\x08\xcd\x90\xa3\xa5\x40\x59\xf1\x1b\x01\xc0\xf6\x4a\xf0\xc5\xd2\x91\xeb\xef\x8e\xe5\xc7\x5a\x85\x43\x87\x8c\x04\xf2\x1d\xcd\x11\x99\xb6\x23\xc5\xd4\x02\xb8\x6c\x6d\x7a\x35\x4f\x79\x82\x11\x09\x11\xe7\xc5\x25\x0f\x14\x59\x12\x38\x59\x6e\xf7\x79\xbe\xc2\x97\x6e\x08\xb3\xfd\x8c\x54\xf8\xde\x0d\x28\x45\xd0\x81\x66\x71\xc1\x2e\x36\x0c\x89\xff\x13\xa5\x24\xd0\x6c\xc6\x56\x1c\x2b\xea\x08\x96\xa7\xbf\x5c\x54\x0f\x4e\xa9\x22\xa4\x15\xe5\xd6\x34\xa7\x17\x6f\xb4\x22\x3b\x96\xa3\x5a\x35\xd2\x9b\x07\xc9\x78\x6b\x2a\x24\x65\xba\x4d\x7c\x10\x5e\x19\xb2\x9d\x99\x26\x38\xff\xbe\x69\xb2\xf3\xe9\x17\x11\x36\x37\x34\x16\x09\x03\x33\xeb\x03\xba\x4c\xcc\x20\x92\x75\x90\x17\x75\x30\xc0\x0c\xce\xcb\x79\xc6\xeb\xf3\x02\xad\x0c\xe7\x46\x07\xc1\xd8\x15\x9a\x05\x88\xa3\x18\xd6\x1c\xcb\xef\x3d\x79\x24\x0e\xf2\xfb\x3c\xad\x63\x67\x64\xab\x8b\x8d\xfb\x8b\x75\x43\x34\xaa\x59\xab\x46\x4b\xca\x32\xdf\xb2\xcb\x2a\x65\x04\x01\xdb\xf0\x08\x43\x94\xb5\x1b\xfc\x31\xad\x37\x6f\xc5\x65\x65\x63\x38\x24\xbe\xe4\x3f\x3b\x15\x74\x96\xcc\xc6\xe3\x84\x6e\x46\x5c\xb0\xf5\x88\x07\x17\x35\x18\x1e\x6d\xce\xb2\x30\x24\xeb\x11\xff\x07\xc9\xc6\x1b\x4a\xd9\x7a\xc8\x57\x46\x96\xb4\x2e\x48\xc1\xd6\xf0\x1a\xa2\x70\x2d\xfc\x75\xcb\x6e\x0d\x03\xd9\x11\x18\xb0\x61\x64\x4f\xe8\x8e\x47\xb3\xdd\x59\xd1\x13\xd3\x7f\x67\x94\x2b\xb6\xdc\xcf\x5e\xec\x00\x4a\xb6\xce\x77\x06\xe7\x75\x18\x6e\x8d\xf3\xa3\x33\x3b\x84\x3b\x7c\xcd\x6c\x8f\x6b\x00\x0a\x2f\x3b\xf3\xe4\x7b\xcd\xae\x5d\x48\x24\x7d\x1a\x21\xda\x70\x5a\x7f\x5d\x14\xef\x78\x8f\x99\xe0\x2b\xa1\x03\x1f\x51\xbc\x07\x1e\x75\x4d\x53\xde\x82\x2c\xf2\x91\xe0\x9e\x3b\xda\xc7\xe2\x58\xe5\x18\x0f\xec\xb1\x39\x1a\xcb\x9b\x86\xe4\xbe\xc2\x8d\x70\x2c\xe0\xf8\x61\x14\xb1\x8a\xeb\x48\x19\x9c\xa7\x60\x88\x02\x04\x4b\x4b\xf0\x73\x2e\xd8\x9e\xbf\x86\x47\xe5\x8c\x9b\xc0\xc7\x55\x18\xe6\xed\x55\x3e\x9f\xd2\x74\x4d\x1e\x89\x30\x7c\x24\xf0\xf8\xa0\xdb\xec\x8b\x3c\xa0\x9c\x6b\xde\xbc\x5d\xe5\x4f\xa6\x24\xfe\xe4\x3c\xa2\x77\x19\x60\xa7\x16\xd2\x6d\x97\x9a\xad\x46\x23\x9a\x69\x47\xb7\x7e\xec\x17\x5d\x6c\xb1\x5a\x52\xaa\xcf\xdf\xde\xb6\xdc\xe9\x39\x0c\x1d\x60\xc3\x64\xa1\x89\xd7\xb2\xb4\xc4\x13\x1c\x91\x6f\xc9\xbe\xc7\xc3\xd3\x42\x2e\x0f\xd4\xdd\x0c\x6b\x6e\x9e\x99\xf7\x70\xb1\x3d\x57\xc0\xca\x36\xdd\x2e\xc7\xd3\xd9\xe6\x9c\x47\xb3\xcd\x78\x8c\xdb\x96\xd8\x12\x8b\xcd\x92\xed\x78\x62\x54\x58\xb6\x3c\x01\x45\x95\x41\xe2\x94\xb9\x40\x3a\x7f\x1e\xcd\x77\x0a\x08\x77\x5a\xed\x00\x14\x25\x68\x6c\x76\xcd\x0a\xfb\xc2\x70\x58\xcd\xb7\xaa\xe4\x16\x4b\x5a\x8d\x24\xd4\x2d\x3a\x76\xfc\xc5\xb6\x93\xd5\x66\xf4\x19\xd9\x9b\xb0\x82\x94\xc6\x95\xda\x49\xd8\x4d\x0c\xfc\x5a\xc9\x7b\xb6\x36\x0c\xc9\x8e\x6f\xbd\x81\xd9\x97\xcc\x6b\x1d\xbf\x67\xc7\xea\x22\xde\x62\xcc\x9e\x6c\x9e\x2d\x36\x7f\x32\x6a\x6b\xcb\x78\x6f\x74\xca\xd2\xa6\x21\xd5\x5c\x83\xa3\x9d\x94\x27\x72\x3c\x17\x73\x30\x5e\x8a\x2d\x42\x80\x08\x3e\xc8\xd0\x5e\x53\x86\xc6\x71\x90\xf5\x9d\x14\x60\x1b\x77\x4d\x0f\x8a\x4d\xaf\xc2\xf0\x3b\x94\x5c\x31\x30\x02\x66\x3d\x3b\x76\xf6\x10\x74\xdd\x8f\xd2\xf9\xda\x15\xaf\x6f\xd5\x9d\xae\x28\x97\xde\x93\xc2\x7b\x06\xcd\xc7\x53\x77\x76\x5f\xb4\xc4\xec\x18\x69\xee\xb2\x10\x65\xa2\x88\x78\x70\x60\xed\x27\xf4\xc5\xe8\xf1\x9e\x9e\xd5\x7d\x22\xf3\x5a\xbb\xa4\x23\x8a\x96\xf1\x35\xab\x9b\xc6\x05\x78\x4a\xd2\x4a\x5c\x66\x38\x9f\xa6\xf9\xb6\x13\xb4\x49\xb7\xf8\x58\x40\x28\xf6\xc8\x90\xf5\x18\x40\xe7\x00\xd1\xd3\xed\x0c\xf4\x32\xde\xb5\xae\x06\x38\x33\x65\xba\x02\x59\xae\x7f\xb4\xe0\x9a\x45\x7b\x73\xda\xe3\x3e\x9b\xe5\xbc\x3c\x3a\x24\xb9\x3a\x24\xb9\x39\x24\xa9\x2d\x61\xe2\x5a\x93\xd4\xe0\xe7\xf3\x69\x14\x35\x4d\xae\x08\x73\x53\x64\x3c\x5d\xfa\xd8\x3c\xf5\xdc\x22\x39\x5c\xa9\x43\xb9\x81\xa3\x00\x14\x6e\x08\x8e\x51\xb2\x8b\xf6\x54\x9c\x8e\x21\x46\x79\xed\x64\xfb\x31\x5f\xe1\xc9\x1d\x62\x80\xbe\x3a\x6a\xc6\x58\xf8\x57\xa0\xce\x4e\xef\x04\x07\xa2\xcb\x1b\x9c\x21\xac\xec\xfd\x01\xd8\xcb\x35\x03\x1b\x17\x86\x9d\x04\xa4\x6b\x3c\x07\x05\x5d\xa7\x7e\x46\x51\xcf\xae\x18\xa5\xe0\xd9\xf9\xde\xee\xe9\x40\x18\x1b\xd3\x56\x4f\xea\x28\xf9\xcd\xfb\xfe\xf1\x5f\x8b\x1e\x8f\x1c\xd6\x95\x44\xd7\x55\x7a\x8f\x3d\x6e\xb7\x88\x71\x2c\x81\x43\x2b\xf8\x1d\x4a\xa2\x62\xa9\x28\xb3\x48\x31\x23\x22\x81\x1f\xe8\x60\x70\x50\x1a\xa7\xe7\xac\x36\x71\x04\xaf\x64\x6d\xfc\x2f\x68\x31\x56\xa1\x75\xfe\x8c\xaf\x41\x0c\x1f\xc6\xb0\xc7\xb8\xf4\xe6\xf3\x9b\x47\x10\x83\x50\xec\x51\x5d\x97\xe9\xe5\xbe\x96\x04\x48\xed\x55\x51\x96\x72\x55\x07\xac\x9c\x07\x41\x1c\x14\xeb\x75\xa0\xa5\x67\xdd\x82\x62\x97\xd6\x22\x83\x08\x46\xf9\x07\xca\x56\x3b\x99\x65\xab\x8d\x84\xb7\xf9\xa1\xff\xba\xfd\x44\xd8\x90\x6a\x8f\x09\x84\x89\x17\xa5\x14\xf7\x30\xdf\xe2\xb2\x2a\xb2\x7d\x2d\x67\x27\xa8\x01\x11\x9f\x8c\xa7\x72\x3b\x3b\xd9\x61\xe4\x21\x60\xc8\x81\x5b\x8e\x4f\xa6\xbb\xf7\xb3\x13\xe4\x98\xe3\x13\x28\x54\xec\x6b\xb5\xda\xf1\x49\x5e\xe4\x10\x35\xcb\x4a\x66\x16\x72\xa9\xbb\x52\xd7\xcb\x3a\x2b\x6e\xe2\x93\x4d\x9a\x24\x32\x9f\x9d\xb8\xce\x4b\x99\x89\x3a\xbd\x96\xb6\x8b\xcf\xfd\x2e\xa2\xdd\xfb\x99\x73\x4d\xb5\x07\xb3\x73\xc5\xc8\x20\xf3\x1e\x4c\xa3\x28\xda\xbd\x07\x94\xdf\x5a\x18\x78\xf9\x62\x7a\xd5\xb6\xda\x12\x49\xd5\xbb\xc4\x50\x82\xc1\x74\xf7\xfe\xa4\x2a\xb2\x34\x39\xb9\xcc\xc4\xea\x5d\x40\x99\xda\x3c\xca\xbc\xa8\x0a\x2f\x7b\xa8\xa5\x9a\x09\x5e\x22\xfb\x61\xd5\x70\x1d\xcd\xb5\x27\x9a\x13\x2a\x98\x70\xc6\x40\xa4\xe0\xe9\xbd\x06\x24\x10\x2e\xb3\xdf\x9d\x82\x41\xd7\xdf\x16\x04\xab\x0c\x4a\x08\xfd\x5c\xb7\x1c\xe1\x13\xd0\x36\x6c\xa5\x59\x85\x4f\x6e\x1d\xd9\xc7\x25\xb8\x54\x88\x40\xf0\xb1\xda\x28\xde\xc2\x96\xd1\x2e\xd4\xb5\x98\x7f\x2f\x49\xda\x55\x1b\x15\x3c\x5d\x14\x4b\x54\x51\xea\x53\xd3\x0c\x43\x81\x7a\x92\x7f\x7a\xc8\xa1\x8f\xfc\x3c\x9a\x8b\x49\x5d\x9c\xab\x86\x62\x0c\x34\x70\x06\x7a\x99\xc7\x93\x02\x1c\xd9\x8e\x44\xe8\x54\x1d\x3e\x03\x53\x78\xff\x19\x59\xd6\x73\xa9\x1a\x05\xf7\x9f\x2c\xe3\xbe\x14\xfe\xc8\xe6\xbe\xfd\x00\x5f\xf1\xaa\x69\xbe\x43\x05\x29\xf6\x13\xfc\x65\x15\xd8\x03\xdc\x5d\x4a\x45\x46\x44\x4c\xe6\x49\xdc\x5a\xcb\xc3\x81\xad\x78\x46\x9c\x83\x7b\xb3\x2a\xf3\x3d\x29\xd9\x78\x8a\x2b\xab\x6d\x05\xc0\x47\x7f\x67\x6d\x9a\x66\xca\xb9\xf0\x3d\x62\xac\xb9\x4b\xe1\x3c\x3f\x8b\xd8\x86\xab\xc6\xd6\xa8\xed\xea\x82\xa5\x6c\x14\xd7\x33\xdf\x9c\x71\x01\x31\x7c\x37\x67\x7c\x35\x51\x03\xdc\x9c\xeb\xd8\x0d\x61\xb8\x39\xe7\xab\x09\x0c\x9e\x1a\xca\x70\x7d\xe4\x1d\xbf\xe3\x6c\x5f\x6b\x9e\x6e\x58\xa2\xd5\x49\x77\x6d\x45\x93\xdc\x8f\x3d\xd1\x96\x4e\x1a\xa9\xf3\xbc\xdd\xd4\x9e\x80\x03\x1b\x07\x6d\xed\x6c\xc9\xac\x9b\xfe\x99\x3c\x57\x00\x22\x5d\xbc\x1d\x39\xe2\xd6\x61\x4e\xaa\x30\x46\xc5\xeb\xf3\x08\xb5\x8c\xcd\xb2\xb1\x8c\x57\xf3\x1c\xe7\x19\xef\x09\x3c\x2c\x31\xbd\x54\x1a\xb8\x78\x16\x86\xd9\x99\x5a\x28\x03\x61\x05\xc9\x58\x05\x45\x54\x6d\x2c\x16\xef\x89\x2a\xa2\xea\x32\xdd\x9e\xae\x09\x6d\xb6\xab\x1e\x0e\x6c\xcb\x77\xa4\x18\xe5\x2c\x67\x2b\x68\x69\x6b\xf5\xae\x34\x8d\xaa\x00\x1d\x37\x65\x4f\xf4\x46\xc0\xc0\xcc\x8a\x03\x02\xb8\x6e\x9a\xfc\x3c\x0a\xc3\x6b\xde\x3e\xa7\x4d\x33\x24\xaa\x07\xd5\x48\x14\xbb\xd0\x42\x2c\x67\x19\xb9\xa6\x94\x62\xa4\x8a\xed\x41\xd1\x96\x5b\x86\xf1\x99\xe3\x6f\x0b\x82\x5f\x28\x40\xc8\xc1\x0c\x45\x6b\x02\x96\xf4\x4c\x9a\x70\xe0\xe2\x9c\xeb\xef\x91\x04\x45\x91\xa6\x21\xb5\xf1\x3a\x24\xd0\x5a\xa1\xb6\x47\x7c\x48\x34\x52\x13\x94\x7a\x5a\x59\x35\xff\xa9\x20\x29\x33\xfd\x5b\xbf\xbb\xa8\xeb\xc7\x8b\x81\x75\xc4\xe1\xe9\x40\xe6\x74\x4f\x9c\x4c\xda\xf8\xa3\xc3\x74\x30\x95\x32\x39\x5a\x27\x32\x6f\x1a\xed\x9f\x4c\x95\xb1\x2a\x12\xc8\xa5\xaf\xb8\xcb\x63\xc0\x2f\x41\xbc\xeb\xd5\x16\x82\x6b\xcb\x6c\x27\x4b\x52\xa3\x3b\x35\xf4\x4f\x4e\xd9\x86\x0f\xa3\xd9\x90\x94\x67\x11\x6d\x9a\x3d\x19\x6e\xe8\x6c\xc3\x87\x53\x73\x40\xb4\x84\x46\x53\x56\xea\x83\x62\x8c\x5b\xb6\xe3\xb5\x24\x09\x5b\xd3\x79\x70\x13\xc4\xab\x30\x54\xa9\x9c\x27\xf3\x20\x0f\xe2\xe1\xaa\x69\x4e\x2f\x2a\x2d\x12\x4a\xf4\xe6\x04\x3b\x10\x51\xa8\xcc\x4d\xd3\xec\x9a\x86\xec\x78\xa0\x06\xa1\xa0\x6a\xc8\x77\xf4\xae\x3c\x03\xac\xcb\xa7\x6c\x0f\x84\x76\x17\xed\x22\xd9\x96\xae\xc9\x0e\xf8\xc6\x1d\x65\xa5\x02\x96\x21\x0c\x9c\x62\x2e\x0a\x20\x4a\x8c\x41\x52\x30\xe1\xf9\xda\x38\x29\x6b\xb0\xf9\x08\x43\xb2\x9d\x6c\xd2\xfa\x4d\x9a\x80\x41\x1a\xdb\xba\x9b\xec\xf9\xb1\xa0\x0e\xa2\x55\x2b\xd2\xaf\xd2\x2f\xdb\x80\xc1\xe0\x41\x11\xe2\x68\xa1\x6c\xd9\x33\x47\x39\xd6\x39\x71\x4f\x6e\x4c\x5b\x46\xa7\x79\x2e\x4b\x4c\x6a\x1a\xfb\xee\x63\x3e\x74\xa0\xc9\x56\xcd\x96\x14\x69\x3f\x9e\x7c\xf1\x40\x7a\x9d\x51\xf6\x39\x1d\xa4\x9c\x28\xee\xb5\xd6\xda\x99\xe0\xd9\x79\x47\x47\xe5\x83\x0c\xa0\xd0\x28\xcd\xe6\x60\x01\xea\x97\x1c\x7d\x8e\x65\xc7\x9f\x23\xc3\x3d\x23\x05\xff\x4c\x61\xfd\x8a\xa5\x94\x4e\x8a\x7d\x5d\xa5\x89\x9c\xc1\x29\x2a\xcf\xa2\x79\x7a\xc6\xa3\x38\x55\xb8\x15\x89\x0f\x7a\x57\x78\x0b\x6a\xf6\x69\xc4\xbf\x78\x50\x1a\x8b\xe4\x02\x76\xe6\x1b\xd1\x92\xd0\xe8\x88\xc4\xc6\x3b\x40\x26\xaa\xfa\x11\x50\x92\x2f\x8b\x44\xf2\x4e\x1a\x6a\x91\xba\x54\x10\x59\xb7\x0b\x42\x92\x2e\x87\x6a\x4d\xa8\xe6\x97\x65\x8a\x47\x44\xed\x18\xec\xb3\xd8\x2a\xb2\x4a\x25\xda\x62\x57\xa5\x58\xc9\xd7\xb2\x4c\x0b\x08\x13\x09\x69\xa5\x14\xc9\x93\x57\x2f\xb4\x48\x1c\x95\x26\x1c\x11\xf3\xac\xc5\x68\xbe\x28\x3d\x42\x47\x01\x7a\xd9\x34\xe5\x04\xa9\x38\xea\x61\x39\xad\x65\xe2\xb9\x09\x37\x0e\xa3\xde\x96\x44\x91\x50\x26\xa1\xe8\xf7\x20\xc5\x04\x0f\x14\x18\x06\x83\x02\xf8\x8c\x3d\x9a\x57\xad\x36\xf4\x4f\x0f\xe7\x41\xa9\x1d\xe9\x43\x09\x4d\x32\xf0\x97\x25\x49\x27\x5b\xb1\x43\x54\x26\xec\x81\xa8\xf4\xf3\x0c\xd7\xd5\x38\x57\x4b\x93\x65\x62\x57\xc9\x79\x05\xc8\xba\xc2\x97\x76\x56\xb9\x33\xf2\x47\x5b\xfd\x15\x42\xe3\x4d\x2e\x05\x68\x01\xf8\x91\xa9\xbe\x16\x2d\x0b\x71\x50\x98\xe6\xc7\xae\x4b\x50\xb8\x4b\xf2\xe3\x1c\x5f\xe3\xb7\xb4\xfe\xa7\xa0\x7f\x1b\x3e\x1e\xfc\x2b\x9b\x7a\xd7\xa9\xbc\x79\x5b\x80\x97\x3b\x75\xec\x35\x10\x94\x3c\x42\x2c\xac\x40\x3b\xe7\xf5\x6c\x96\xf3\xdc\x7b\x65\xd2\xd2\xe5\xa6\xc9\xfb\x46\xe7\xef\x1c\x08\xd7\x5c\xc5\x30\xf4\x7f\xf5\x55\xc6\x93\xe0\x6c\xe8\xa2\x59\x7a\xd6\x1e\x6e\x8f\x9f\xc4\x76\x81\x45\xba\x44\xa6\x39\x87\x3e\x2c\x28\x7d\x29\xd4\xb6\x83\x67\x77\xbb\xe2\x5f\x8a\xae\x4d\x3e\xe0\x6f\xb8\xda\xe0\x11\x0d\x9d\x70\x81\x32\x6a\xd3\x0c\xbf\x23\x39\xab\x5b\xcb\x5a\x93\x6f\x15\x58\x22\xfc\x45\xb8\x8a\xb8\x6d\x88\x34\x86\x11\xab\x79\xde\xde\x17\xb5\xbe\x6c\x58\x7b\xac\x7f\x29\xab\x7a\xfe\x19\xc1\x0f\x1a\xcb\x96\xd3\x65\xdb\x4d\x41\x59\xe1\xdf\xf1\x94\xa5\xda\x77\x10\xff\x5c\x5d\xff\x6a\xbe\x6f\x6f\x77\x72\x5e\x6b\x55\x36\x8e\x2a\xe4\xa2\x69\xa6\x43\x5e\x7b\x83\xb0\x44\xc2\xe7\x43\xee\xcf\xd6\x36\xa1\x2f\x7e\x6f\x1d\xf0\xc1\x45\x40\x09\xf0\x24\x64\x25\x72\xb3\xca\xdb\xd3\x21\xcf\x67\xb4\xe2\x7e\x92\x7e\x4b\x94\x93\xad\x14\xd5\xbe\x94\x60\x6e\xbb\x15\xbb\xca\xe1\x85\x95\x26\xd8\x3d\xe3\xc9\xf1\x74\x96\x9e\x91\x6c\x9e\xd9\xe8\x4c\x14\xb6\xdc\x91\x8f\xe9\x59\x34\x87\x86\xe2\x6c\x91\x2e\x59\x3b\xba\xe6\x4c\x8c\xf8\xe7\x5e\x70\xcd\xd1\x43\x34\x4d\x83\x28\x77\x15\xe7\x7a\xc7\x57\xfc\x5b\x49\x54\x43\xb8\xe4\x31\xee\xc0\x22\x5d\x52\xb6\x06\x7b\xb6\x51\xae\xb7\x81\x40\xa8\xb0\x6a\xc8\xe1\xbd\x1b\x32\x47\x24\x9f\x83\x4d\x17\x3c\x0d\xac\xd8\xda\xb8\x77\x59\xf3\x15\x11\x40\xfe\x83\x7f\x1b\x0f\x5e\xd6\x2c\x75\x12\xda\x0d\xaf\x26\xb9\x7c\x5f\xbf\x49\x2f\x15\xba\x65\x09\x17\xf3\xe3\x05\x1e\x97\x71\x34\xdb\xcc\x36\x7c\xe3\x17\xc6\xf0\x75\x7c\x45\x36\x6c\xe3\x6f\x53\xd4\x81\xce\x35\x92\x55\xeb\xc9\x6a\x33\x4e\x14\xc0\x0c\x92\x11\xdf\x00\x14\x81\xf2\x7a\x6e\x99\x11\xf7\x5e\x51\x81\x0c\x2f\x2d\xf6\x95\x19\xd9\x96\x97\xb3\xdd\x6c\xc7\x77\xdd\x1c\x3b\x8c\x1d\xdb\xf9\xc3\x50\x18\xe5\xbe\x71\x8c\xb6\x30\x8e\xed\x88\xef\xfa\xc6\x71\xf8\xc6\x57\x57\x4f\xf3\xb4\xe6\xc7\xaa\x91\xc6\xd9\x0d\xbc\xd2\xf2\x52\x91\x90\x29\x2f\x27\x49\x7a\xcd\xe5\xb1\x87\x27\x13\xc5\x7a\x78\x0d\xd7\x83\x26\x6e\xfb\x5c\x9e\xd2\xb7\x82\xdc\x19\xb9\x72\xac\x2e\x35\xf9\xbe\x8e\xf3\x96\xfe\x42\x05\x2a\x46\x20\xf2\x55\x18\x4c\x0d\x13\x5e\x1d\x3e\xec\xd9\xca\x85\x5b\xcd\xdb\x2c\x64\x5a\xc9\xc7\xc5\xee\xf6\xf1\xde\xa8\x05\x6a\xf5\xbb\xd7\x82\xe4\x74\xd0\x1e\x4f\x64\xe2\xcb\xab\x3f\x7d\x83\xe8\x8d\x81\x9d\x77\x3c\x6f\xd6\x26\x3e\x60\xc4\x7e\x54\xbc\xca\x47\x46\x7e\xa0\x07\x10\xab\xb6\x84\xc0\x60\xc4\xd6\x92\x0a\x83\x66\x1f\xc8\x85\x0d\xbb\x7f\x2c\x95\x1f\x1c\x37\xd4\xd5\x15\x01\x1b\x93\x0f\xca\x9b\x39\xb7\x7c\x18\xb8\x88\x3a\x16\x39\x6b\xa4\xf8\x44\x80\xed\xbd\xf0\x00\x73\x90\x7f\x4c\x3f\x47\xb0\xbe\x22\xae\x05\xca\x2a\xd4\x15\xef\x9b\x1e\x62\x3a\x4b\x9d\xa2\x42\x9d\xa6\x4d\x07\x2f\x49\x75\x9f\x0e\x7c\x5f\x97\xbe\x26\x87\xa0\x6c\x6f\x15\xdd\xf6\x60\x57\x56\x4e\xaa\x4d\x71\xf3\x1a\x7d\x0c\xb4\x82\x36\x80\xc1\xdd\x6f\x82\xa4\xcc\x41\x9a\x13\xe6\x79\x89\x9e\xd8\xb0\x9b\x6a\x65\x84\x68\x63\x67\xc4\xee\x6d\x25\x65\x3c\x4c\x4d\x03\xcf\x07\x39\x6d\x9a\xea\x8c\x77\xb4\xa0\x7f\xca\x49\xde\xab\x5a\x86\x2f\x19\xcf\xca\x62\xfb\xe4\xd5\x0b\x38\x50\x0f\x8d\x46\x64\xca\x02\x4d\x6d\xc2\x80\x3a\x8a\xad\x8a\x08\xf6\xa8\xd1\x3b\xd0\xdd\x91\xa0\x28\xc3\x92\x22\x57\x87\xf6\xd0\xd7\x0e\x76\x78\x6f\x43\x8a\x81\xfd\x58\xb3\xbd\xe3\x6b\xab\x6b\xb6\x1b\x45\x5f\x9c\xa2\x16\x70\xfb\x9a\x54\x48\x41\x5f\x78\x22\xd1\x2b\xf0\xa6\x50\xcb\xc3\x5a\xa5\x8a\x5c\x3a\x35\xd1\xf4\x1e\x3d\x5f\x4f\xbb\x1c\x94\x58\x1e\xbb\x91\x3d\xcd\x13\xe2\x6a\xe3\xd3\x54\x5b\xc7\xd1\x9b\x7d\xcf\x68\xbc\xd9\xee\x6e\xe1\x60\xea\x9f\x7b\x38\xa6\x07\xd6\x42\xd4\xbb\x52\xaa\x2b\xdf\x42\xa2\xef\xe9\x04\x65\xc5\x5b\xd4\x46\x51\xb8\x7a\xe8\xc4\x18\x5a\x81\x93\xeb\x2c\xfd\x52\xa5\xd5\xff\x99\xec\xf4\xa2\x60\xbe\xa7\x0b\xa0\xae\x65\x18\x9a\x46\x7a\xe8\xc5\x30\x24\x44\xb7\xdb\x34\xea\x0e\x47\x83\x85\xde\x33\xc4\x6c\xde\x8b\x7d\x56\xa7\xbb\xcc\xf7\xa2\x2d\x69\x77\xea\xfe\xe5\xd0\xe3\xe0\xa5\x3b\xa8\x7e\x1f\x35\x6d\x0d\xb9\x9e\x69\x77\x87\x79\xbc\xc0\xc8\x94\xb5\xda\x61\xb5\x59\x58\x50\x2b\x37\x2f\x1a\xce\x35\x49\xca\x73\xf3\xbe\x5b\xf0\x1c\xdf\x77\xe1\xd1\xa8\xcd\x21\x70\xde\x4e\x51\x80\xd2\x34\xda\x3d\x35\xef\x96\x6e\x1a\xd4\x0d\x3a\x3b\xae\x44\x0d\x62\x7b\x94\x65\xf0\x16\x52\x69\x71\x8e\x16\xd3\x7d\x0d\x8e\xde\xf4\xf3\x88\xa2\x1e\xed\x0f\xe4\x52\x15\x42\xd7\x65\xd6\x86\x9d\x35\xdf\xba\x04\x50\xeb\xa2\x69\x84\x62\xb1\x9a\x66\x58\x35\x4d\x85\x9f\x68\x83\x5d\xd4\x8a\x38\xa3\xe0\xad\x0f\x53\x52\x9d\x52\x50\x23\x9c\x68\x0f\x9c\x65\xbc\x7f\xaa\xcf\x40\x50\xfa\x4c\x8d\x47\xb5\x76\xa7\x68\xb7\x78\xbf\x88\x96\x86\xd6\x55\xe4\xe9\xe2\xe1\x92\x21\xd7\x18\x47\x07\xb6\xe2\xbd\x6b\xf3\xb6\xd0\xed\x14\x38\xfe\x95\x91\xe7\xee\x17\x7b\x17\x4a\xde\x92\xd0\x1b\xbe\x06\x12\x7a\x8e\x7f\x16\xf8\xc7\x15\x8c\x21\x61\xb0\xe2\x38\xa4\xcd\x62\xe3\xf2\xcc\x60\xbc\xc4\x87\xcb\xb1\xf7\xeb\xf3\xe5\xe1\x80\xc6\xa2\x7a\x14\x09\xdb\x29\x26\x45\x6d\xd7\xe3\x62\x9f\xd7\x61\xe8\xde\xb2\xc0\x89\x38\x78\x68\x4b\xf8\x2b\x92\x01\xf9\xca\x32\xcd\x26\xb3\x95\xfb\x50\x19\x54\xdb\xe9\x7e\x27\xe9\xdd\x21\x09\x43\xa2\x23\x38\xfb\x67\x7e\xae\x28\x04\xcd\x52\x77\xdb\xa3\x2c\xb1\x79\x09\x28\xef\x1e\x01\x93\x82\x97\x24\xc1\x67\xb6\x84\x52\x1a\x7f\x42\x21\xb6\x43\x0d\x7a\x45\x49\x39\xc8\x9b\x7b\x85\x76\x34\x2e\x0d\xca\x50\x18\xf8\x2b\x27\xfa\x00\x75\x56\x14\x7d\x6c\xe5\xf6\xd2\xd3\xd5\x20\x5a\x96\xd9\x33\x80\xc3\xa1\x7b\xc2\x3b\xad\xf6\x9f\xee\x41\xcb\x7c\xa2\x2b\x84\xa1\xc7\x62\x99\x7e\x72\x43\x76\x45\x37\xd6\x06\xbf\xc8\x1f\x6f\xd4\x10\x13\x42\xb5\x24\xb4\x97\xa2\xb4\xb8\x7b\xb5\xd5\x2a\x08\xdd\xfa\x7c\x18\x1d\xb4\x9f\xa6\x63\x54\x76\x8c\x55\x5b\x24\xfe\x5b\xd2\x45\x99\x56\x2b\x9a\x99\x78\x34\x15\x65\xc7\xc5\xec\x20\xb0\xa4\xfd\xd9\x1d\xc3\xd1\x4e\x7d\x12\x2e\x1d\xf4\x89\xdc\x5a\xa8\xaa\x5f\xfe\xd6\x46\x60\xac\x47\x1c\xe7\xe3\xb2\x5e\xd1\x5c\x0b\xc1\x75\x17\xd4\x8c\xf0\x79\xfe\x34\x49\xeb\xa2\xfc\xb4\xc9\x28\x24\xe3\x9f\xe9\x63\xeb\x9f\xd6\x09\x57\xb4\xc2\xb6\xc8\x1f\xe5\x2b\x59\xd5\x05\x18\x4f\x8b\x34\x97\xa5\xb9\xc6\xbf\x33\xd6\x83\xd7\xa0\x6f\xdc\x1a\x21\x5e\xf0\xde\xa8\x82\xbc\xc0\x5d\x0c\x86\xf6\xde\x37\xe4\x67\xa9\x35\x45\x8c\x3d\xe2\xd1\xf4\x40\x85\xc4\xdc\xcf\x6e\x46\x28\xb8\xec\x10\x21\x04\x04\x32\xcc\x0c\xcd\xb9\x77\x6b\x0f\xf0\x32\xdb\xb7\x56\xcd\x96\x57\x19\x47\x97\xb1\x51\x86\xbe\xef\xaa\x4f\xd2\xeb\xee\x16\xf9\x4e\x56\x8f\xab\x0d\xa3\x23\xf8\x5c\xc9\xf4\x5a\x26\xcf\xba\x0b\xe7\x61\x82\xfb\x16\x67\x6e\x25\xb8\xde\x2a\xc4\xdf\x3a\xda\xeb\x5f\x3f\xc6\x2d\xa1\x30\x78\x61\xef\x6e\xda\x0e\x3d\x28\xc9\xf2\x5a\x64\xcc\x73\x9b\x02\x5c\x62\x87\xa6\x03\xa2\xb8\x33\x3e\x26\x5b\xcd\xcb\x7b\xdb\xae\x29\x44\x4a\xe8\x3f\x00\x66\xcc\x9f\x04\xff\x76\xee\xee\xfc\x0e\xbb\x02\x74\x95\xd8\x34\xed\xf3\x7b\x54\x08\x93\x55\x31\x7b\x88\x87\x3d\x32\x77\x5b\xe0\xa8\x99\x67\xf7\x1e\xed\xd6\x2a\xf9\xd3\x72\xf6\x84\xc7\x32\xf7\x30\x1c\x76\xaf\x01\x73\x73\x1d\xe1\xf8\x4f\xa2\x1c\x15\xaa\xb8\x0e\xc3\xd5\x31\x79\x7d\xec\x87\xc2\x77\x40\xdb\x0a\xd4\x31\xab\x67\x35\xaf\x7d\x19\x72\xba\x26\xa7\x9e\x19\x0d\xb6\x35\xd6\xc4\xb1\xf5\xf2\xed\xbc\x7a\x3b\xa3\x49\xeb\xe2\x83\xf8\xbb\x67\x05\x4e\x66\x94\x75\x99\x5e\x5d\xc9\xf2\x55\xfe\x0f\x79\xfb\xa4\xb8\xc9\xc9\x9d\x5a\xd4\xd8\x19\x23\x68\x87\xd4\xf1\xdf\x58\x5b\x80\x10\x1b\x4f\x8e\x06\xf4\x11\x0d\xa0\x43\x6a\x48\xd0\x78\x04\xe5\xc2\xad\xe7\x11\x8d\x3c\x7a\x68\x01\x6d\xeb\xf9\x71\x02\x37\xff\x28\x81\x5b\x86\x61\x1e\x86\x5d\x7d\xb9\x6f\x8d\xbb\x9a\xa7\x29\xf8\xf8\x62\x3f\x52\x46\x4a\xa4\x7c\x73\xf5\x07\x0d\x75\xee\x3d\xe8\xea\x64\x75\xc9\x12\x05\x81\x5a\x3e\xe7\xc3\x1f\xea\x10\xf4\x02\x1f\x39\x26\x51\xda\x45\xe8\xbd\x0f\x45\xb8\x44\xfa\x35\xd1\xf2\x2d\x8a\x43\x71\x6e\x1c\xf3\x1e\x1e\x46\xf0\xc2\xf0\x30\x15\x2f\x2c\x0f\x13\x71\x2e\xc0\x03\x19\x6a\x8a\x9e\xe7\x7e\x64\x4a\x78\x08\x92\x10\xde\x06\xe3\xd9\xfc\x2c\x09\xb4\xcd\x84\x0d\xa8\x63\x04\xdc\xac\x02\xa7\x5b\xb6\x44\x75\xac\xa8\x1a\x86\xda\x3f\x53\xee\xf9\xd6\x0b\x43\x52\xf1\x8e\x45\xa3\x6e\xfe\x2c\xf5\xd8\x28\xed\xe8\x29\x75\xaf\x31\xf6\x2e\x16\x56\x63\xd0\x15\x8f\x38\x27\x92\xef\x73\x92\xeb\xc6\x28\x9d\x63\x2c\x16\x2c\x05\x41\x52\xe0\x3d\xa2\xe4\x2e\x05\xc8\xef\xb8\x55\x4e\x1e\x95\x93\x8a\xc7\x50\x25\x5b\xa2\x66\xe3\xae\x8d\xad\xb0\xd7\xca\x3d\xd9\xad\xcc\xd0\x2c\x7b\x31\x27\x7b\xee\x66\x62\x39\xa7\x27\xe9\x35\xac\x0c\xca\xd0\x62\xb2\xf7\xc6\xb1\x1a\x4d\xf5\x48\x74\x05\x97\x0a\x63\xe9\xca\x9c\xd9\xb0\x74\x2b\xe4\xd4\x9d\x35\x68\x38\xcd\xeb\x0f\xf8\xc2\x0e\x40\xb7\x12\x4c\x60\xfb\x22\x01\xed\xb9\x6a\xd9\x7a\xc5\x27\x10\x5d\x81\x14\x23\x5e\xb1\xbd\xfe\x50\x60\xa7\x8a\x79\x7a\x71\x2b\xf0\xd0\x11\x86\x24\x53\xdc\xf4\x88\xfb\x86\xe0\x6b\x6d\x70\x3f\xf5\x1f\x6a\x9c\xff\xbe\xab\x96\x86\xd9\x6a\x3b\xae\x8f\x55\x6b\x01\xfd\xac\xac\xd1\x34\xdb\xf4\xd5\xdb\x8a\xf2\x1d\x3c\xfd\xa7\x6b\xb2\x31\x5a\x09\x68\x82\xfb\x42\x94\xef\xe0\xf9\x2f\xd7\xc6\x0c\xa8\xa9\xc8\xc8\x35\x1f\x6d\x7a\xf4\xc9\x4f\xe4\x24\x4d\x38\xbf\x3e\x38\x9f\xca\x6a\x08\x24\x71\x12\x95\x82\x27\x0a\xb6\x20\x5a\x68\x44\x69\x18\xae\xc8\x57\xd6\x59\x10\xfa\x85\x52\xe7\x91\xa2\x8c\xb4\x02\xb7\x8e\x6b\x12\xac\x45\x56\x81\xa7\xe9\xee\xf8\x11\xd3\xc8\x24\xad\x05\x78\x52\xf7\x25\xe2\x3b\x7e\xfa\x0b\xd9\x95\xb2\x49\xd2\xeb\x66\xd7\x64\x69\x03\x85\x9a\xcb\x92\x7e\x76\x9a\x9a\xfb\x42\x2d\x2d\x5c\x17\x80\x9b\x4f\x7f\xb9\x2c\xfb\x32\xd1\xad\x4d\xcf\xeb\x83\xe9\x70\x17\x86\x99\x17\xdc\x69\xcb\xa3\xd9\xf6\xac\xe7\x05\x0d\x1c\x64\x42\x5c\x0e\xf7\xc0\xb7\x5d\xd2\x99\x1e\xea\xae\x77\x68\x61\x48\xf6\xf0\xf4\xbb\x03\x2c\x34\xd4\x0e\xda\x4e\x5a\x8f\x78\x6a\x2d\x6b\xef\x31\xc8\x39\x05\xda\x3f\x8c\xa2\x4b\xf4\x07\xe4\xa7\x46\x91\x88\xc0\xf9\x4f\x60\xb4\xdc\xe1\x49\x67\xa6\x20\x8f\xd5\x43\x5e\xce\xa8\xba\x81\xfd\x07\x27\x00\x73\xab\x6e\x40\x72\x56\xb2\x8c\xd5\x6c\x4f\x29\xdb\xf0\xaf\x0c\xba\xf3\xcc\x5f\xf6\x0e\x4d\xee\x5b\xf8\x8f\xd2\xd9\xda\xf3\xf8\xba\xb1\xdf\x33\x75\xcf\x7f\x46\xd6\x94\xf3\xcf\xc8\x86\xd2\xf5\x64\x57\xec\x08\x65\x1b\xfd\x77\x3f\x1e\xdb\x97\x91\xf5\x22\x5a\x0e\xf9\x66\x11\x2d\xf1\x19\x78\xb0\x46\x8b\x11\x28\x6e\xbe\xea\xd1\xe8\xe0\x8c\x7c\x22\xb6\xe3\x11\xdb\x72\x55\x95\x5d\x43\x5d\x76\xeb\x54\x4b\xb6\x46\x6b\xf1\xda\x8c\x73\x96\x9c\xdd\x86\xe1\xd6\x06\xa0\x78\x54\x93\x84\x72\x7e\xdd\x4e\x98\xd1\xd1\x28\xb1\xbb\x7f\xc5\xd5\x04\xd8\x25\xcc\x80\xfd\xea\x9a\xbf\x32\x58\x4f\x1d\x6b\x33\xff\x79\x12\x47\x94\x5d\xfa\x59\x1b\x3f\x8b\xce\x76\x67\xbf\x86\xe1\x95\xdf\xa3\x6d\x68\x37\x9e\x52\xce\x2f\xfd\xbc\x4b\x3f\x4f\x0d\x6c\x37\x40\x3c\xb2\xb6\xe7\xd0\xeb\x22\x0c\x6b\xae\x9d\x92\xc1\x53\xe9\x2c\x09\xc3\xe4\x1c\xef\xc1\x7f\xb7\xcb\x64\x3c\x66\xbb\xd1\x68\xb0\x5e\xac\x9d\x14\x89\x5f\x59\x3d\x6e\xd7\x94\x07\x90\xbf\x20\x9c\x8e\x4e\x15\x9c\x32\xb5\x3f\xb0\x49\xba\x52\x42\xbb\x00\x3d\xfa\x0c\x4a\x02\xe4\xde\xa0\x49\x53\x42\xd9\x53\x0e\x50\x67\x17\x50\xed\x80\xed\x2d\x76\x8a\x4a\x0e\xf8\x9a\x46\x75\xd3\x34\x75\x4d\x6e\xd8\x53\x3a\x27\xeb\x42\x43\xec\x9a\xdd\xb0\xa7\x9e\xd5\xd6\x30\xa2\x31\xe0\xd4\x2e\xfb\xe5\xbb\xac\x38\x62\x0b\xfb\xa5\xec\x5d\xfe\x4d\x31\xed\xff\x4e\xcd\x9e\x32\x47\xed\xf8\xcf\x0b\x9f\x48\x6c\xf5\x69\xef\x74\x5e\x60\x58\x87\xe9\xfd\x28\xd3\xdc\x79\x2f\xb8\x87\x4d\xfd\x00\x9b\xd2\x37\xde\x7b\x04\x56\xf0\x6c\xd8\x43\x31\x32\xe9\x53\xde\x28\xd2\x68\xbf\xa0\x18\x84\x2e\x3b\x6b\x70\x90\x47\x4f\x50\xec\x6f\xd1\xd1\x24\x5b\x65\xee\x99\xe2\xd0\x30\x1c\xed\x00\x02\x96\x69\xd6\x37\x0c\xa1\x68\xe2\x72\x2f\x1b\x9e\xe5\xc0\xf8\xf6\x31\xb8\xf5\xf7\xb9\xb9\x14\x5b\x92\x32\x39\xd1\x57\xe6\x53\x93\xab\xef\xd6\x4e\x0b\x2e\x08\x4d\xab\x7a\xc4\xbd\x50\x3c\x5a\xaa\xe2\xbf\x88\xf5\x19\xf3\xf4\xcc\xb5\x69\x7e\x72\xf3\x7a\x2c\xa8\xfd\xbe\x3f\x0e\x8f\xeb\x76\x6e\x03\x03\xc5\x2e\x51\x07\x8e\x3f\x82\x37\xd5\xdf\x11\x97\x2f\x3d\x81\x4d\x77\x39\x70\x04\xc4\x17\x38\xc9\x6e\xc3\x2d\x37\x7e\xfe\x1e\xf7\x9d\xea\xd7\xfa\x60\x7e\xa0\x5c\x2e\x65\x52\xe9\x4d\xb7\xc4\x0d\xd7\xce\x7e\xbe\xff\xa0\x3e\x9f\x5a\x6e\xb4\xee\x0a\x82\x96\xd4\xe5\x99\xa8\x6a\xab\x63\xd7\xa3\x9e\xb7\x11\x95\x13\x14\x98\x72\x1d\x88\x1f\x7c\xff\x2f\x2b\x56\x18\x09\x00\xfe\x05\x1f\x1b\xe8\x07\x40\xea\xe0\x26\x58\xc2\x98\x80\xfc\x2f\xd5\xb8\xf8\x5f\xaf\x40\x31\xbf\x57\x51\x02\x70\xcd\x8f\x34\x26\x65\x7b\x8b\x52\xad\x0a\x50\x77\x35\x01\xd8\x4b\x92\x52\x7a\xe8\xe8\x67\x90\xbc\xc7\x10\xcf\x73\x1b\x75\x90\xf6\x71\xb0\xa5\x93\x00\x8b\x6c\x3c\xb6\xb8\x32\xbe\x52\xc2\x16\x3d\xf1\xfa\xf6\x2b\xd1\xee\x7d\x70\xff\xeb\xaf\x08\xc3\xea\x9c\xff\x3d\x0c\xeb\x16\xf0\x80\x88\xa0\x05\x4d\xc0\x99\xb3\x12\xa0\xce\x7b\x14\xfe\x24\x85\x00\x3b\xe1\xb6\x3d\xa2\x9d\x32\x2b\x27\x6b\x51\xd5\xaf\xa1\x69\xef\xc1\x19\x5f\x98\x7b\x9e\x9f\xa5\xe7\xf4\xa6\x3b\x02\xed\xd1\xec\xa6\x34\x6e\x4a\x60\x3c\xda\xb4\x7e\x98\x82\x10\x41\xd4\xab\x0d\xf8\x98\xb3\x5a\x8a\x1f\x19\x20\x10\x08\xa5\x15\xf8\x20\xfb\xa8\x72\xa1\x15\x62\xcc\x11\x07\x45\x5b\x67\x05\x3d\xd3\xba\xdf\xac\xd3\x3d\x29\x8c\x3b\x29\xe9\x54\x3e\x58\x80\x52\x99\xee\x1b\xbf\xf6\x83\xea\x3b\x48\xfb\xb8\x9e\x84\xb9\xa2\xe0\x24\xa1\xe7\x18\x12\x28\x4c\x0c\x6e\x4f\x3c\x1a\xc2\xfb\x81\xe0\x8e\x9a\x3c\x10\xf0\xcb\x53\x88\x40\x1f\x33\x12\x4d\xd3\xe2\x7c\xa2\x18\x4d\x8c\x3b\xc5\x5a\x5d\xd4\x45\x40\xd9\x9d\x15\xdb\xc5\x2d\xef\x39\xa6\xb9\xe0\x40\x7b\x95\x34\xda\xca\x14\xf4\xae\x35\x50\x62\x60\x90\x7d\xda\x90\x01\x70\xd5\x65\xda\xc2\x7b\x1e\x16\x3b\xc6\xc4\xfa\x64\xa1\xe6\x50\x0b\xb5\x71\x3f\xdf\x3b\x79\x9d\xd6\x3f\xae\x05\x61\xee\x46\xcf\xbd\x1f\xd3\xb6\xa7\x2c\xe7\xdb\x5c\x87\xbb\x73\x76\x46\xdb\xe2\x1a\x2d\x64\x7f\x4c\xeb\x0d\xae\xb2\x31\xf0\xfa\x59\x41\x45\xd9\x96\x86\xe9\xa0\xc5\x49\x7a\x1d\x80\xc7\xc8\x8f\x3a\x73\x37\x06\x1e\x1f\xf2\x61\x9c\x4f\x6a\xf9\xb6\xd8\xf9\x4e\x19\x2c\x13\x54\xf7\xaa\xed\x8f\xa7\x11\x4b\x27\x75\xb1\x1b\x09\xd0\x93\x2f\x40\xb3\x9e\x42\x94\x5e\x70\x1a\xf5\x29\x4d\x81\xf7\x51\x6c\x29\x93\xeb\x7a\x24\xd0\x4f\x5e\x81\x4e\xf4\xa8\x8b\xdd\xd5\xde\x84\xfb\x94\x44\xfc\x3b\xce\x13\x63\x0f\xde\xa2\x54\xb4\xf7\x85\xf1\xfe\x37\x45\x86\x42\x50\x89\x4b\x63\xc8\x59\xeb\x1e\x0b\x5d\xa2\x14\x3b\x53\x60\x14\xec\xde\xeb\x3b\xbd\x5d\x06\x7c\xd2\x49\xbd\x2c\x50\xaa\x0b\xb2\x1d\x76\x42\xdf\xac\xfa\x8a\xb7\x94\xcb\x6b\x09\xfb\x66\xc4\xff\x1e\x5d\xdc\x9a\x35\x6a\x77\xf4\x5d\xc4\x77\x47\x24\xc8\xc0\x13\x4f\x1d\x3d\x84\x9a\x93\xa1\xaf\xc0\x92\xd5\xdd\x77\x9e\x97\xa4\x55\x10\xfd\x64\xc2\x9d\x43\x8e\x89\x16\x63\xf8\x03\xa6\x44\xed\x81\xf4\x75\x17\x04\x1f\x6c\x0d\xce\x3e\x3d\x74\x16\xf2\x63\x2f\x77\xa6\x8f\x2e\x3c\x7d\xe4\xf9\x6e\xda\x29\x7f\xf4\xde\x99\xae\xc9\x27\x3e\x79\x0e\x6f\x9b\xe6\x35\xa1\xc3\xf6\x9c\x29\xad\xcb\xdb\xbb\xf6\x32\x18\x5f\xf3\x9e\x42\x45\x67\x18\xbd\xaf\x9a\xb6\xbe\x79\xda\x3c\x86\xb4\x3e\x12\xf7\x1e\xd8\xbe\x0f\x9c\xa3\xa3\x76\xef\x79\xd0\xc4\x77\xa9\xac\xb8\x41\x12\xa0\xbb\xf0\x3a\xe3\x43\x4f\xa0\x1e\x81\xac\x39\x98\x7f\xf9\xa1\x12\x9e\x29\xf5\xd5\xd2\xf7\x5e\x29\xfd\x11\x76\xc7\x68\xe8\x97\xe3\x31\x2a\x5a\x56\x0f\xb4\x4d\xc6\x47\xac\x6e\x0d\xf2\xa1\x8b\x69\x7d\x52\x82\x62\x1e\x0e\xa6\x69\xe4\x9c\xd4\x47\x2c\x80\x37\x1a\x1a\x13\x79\xdc\xde\x5f\x23\x88\x34\xdb\x1d\xe9\xee\xde\x95\xf4\xb4\xc4\xca\x36\xe4\x19\x1e\xc0\x1e\x46\x40\x1f\xfd\x98\xa7\x69\x86\x1d\x14\xd0\x34\xbf\x49\x52\x2a\x52\x2c\x3f\x42\x4b\x4d\xf3\xa9\x7e\x21\xea\x56\x78\xe7\xb6\x9e\x42\xca\x4b\xed\xb9\x39\x5d\x93\x14\x8c\x2e\x86\xfd\xd8\xcd\x56\x43\x2f\x78\x9a\xf6\x3d\x42\x1c\xe0\x6f\xe6\x2a\x0c\x4f\x17\x17\xfb\xf5\x7f\x44\xd1\x58\xfd\x59\xaf\x4d\xb4\xe7\xd4\xbd\x32\xf6\x87\x14\x67\xd8\x83\x55\xb5\xf3\x15\xe7\x2a\x99\x3d\x2b\x7c\xbf\xf3\xe6\x39\x22\xf5\x85\x6f\x68\x40\xf2\xb7\x87\xd1\xe7\x43\x5e\x34\x0d\xba\xca\x09\xfe\xe7\xff\xf5\xff\x04\x94\xfd\xed\xaf\x7f\xfd\xab\xa7\xfe\xac\x05\x28\xd8\xb1\x01\x75\xf9\x5e\xae\x1e\x17\xdb\xad\xc8\x13\x12\xec\xf3\xa4\x08\xe8\xc1\x0b\x24\x60\x8d\xe2\xd2\x9c\xe4\x46\x3c\x9a\x5a\xf1\xe8\xfe\x2c\x0b\xc3\xdc\x1f\xcf\x9e\xf2\xf6\x00\xf7\x20\x85\xdc\x1b\xd1\x5b\xf7\x19\x12\xfc\x75\xa4\x5a\xce\xb7\xa7\xcc\x74\x32\xde\xb3\xae\xc8\x66\x1e\x3c\xc0\x6f\x19\xc4\xc8\x66\xa4\x56\x8e\x27\x3f\x6f\x9a\xd4\xba\xae\x00\xa6\xea\x7c\x3c\x9d\xeb\xed\xe6\xb2\x75\x51\xc5\xfe\xcf\xd4\xef\x02\x9d\xa7\xdc\x43\x2d\x1e\xe5\xf0\xda\xa3\x6b\xbd\x4c\xb4\xe8\xaa\xff\x1d\x3a\x57\x7b\x2a\x69\x1f\xc5\x0f\x4a\x18\xbd\xf3\xee\x49\x91\xe0\x39\xb1\x47\x24\xd0\x3d\xe5\x7d\xa2\x1e\x8f\xdb\xbb\xef\xae\x44\xf0\x71\xcc\xd8\x51\xab\xbd\x32\x92\xe3\xe0\xc3\xa0\x68\x6a\x3d\x5d\xb3\x54\xb3\xc6\x20\x1d\xa8\x7b\xc9\x95\xbe\x54\xcb\x69\x55\x39\x04\x18\x66\x19\xcf\x7b\x5c\xae\x82\x99\x57\x18\x0e\xd7\x8a\x53\x70\xb7\xa9\xcf\xc4\xbf\xf2\x07\x1e\x86\xe3\x29\x57\xa3\xd3\x4f\xc8\x36\x9e\x5f\x41\xc3\xf0\x27\xd5\xd5\xb7\x29\x25\xa5\x79\x44\x2f\x28\xfb\x11\x07\xb2\x62\x1b\x6e\xb8\xeb\x55\x55\x29\xf8\x60\x89\xef\x0c\xb5\x95\xe3\xbb\x49\x45\xbd\xc5\xd7\xa0\xf6\xf0\xa1\x10\x21\xf7\xb4\xc5\x3d\x4f\x1a\x0a\x0b\xa6\xab\x80\xa5\xf7\x17\x71\xce\x36\x8c\xbf\x8b\xc8\x77\x78\x01\xbf\x2e\xf2\x13\xf8\x07\x5e\x30\x83\x11\xb1\x31\x2a\xc7\x3b\xa0\xd4\xbf\xa0\x8a\x08\x35\xee\x32\xbd\x02\x3f\x8d\x77\x48\x7f\xeb\x12\xa6\xa1\x3f\xc6\x70\x4a\xe3\x93\x69\x14\x45\xb3\x93\x4b\xb1\x7a\x77\x55\xaa\x69\x42\x6d\x31\x0f\xca\xab\x4b\x41\x1e\x7e\xf1\x05\x3b\x71\xff\x4d\xa2\x2f\x68\x10\x07\x75\x29\xf2\x0a\x95\x42\x02\x3a\x0a\x6c\x9b\x2d\xc7\x1f\xb3\x13\xf4\xac\x31\xd6\x93\x8a\x66\xdd\xfc\x63\x1f\x20\xc5\x4e\xac\xd2\xfa\x36\x56\x1d\xcd\x4e\xd6\x69\x56\xcb\x32\x3e\x11\xd9\x6e\x23\x88\xce\xe3\x5f\xd0\x59\x00\xef\xb9\x2b\xae\x8d\x8c\x11\xb2\x7e\x56\x48\xab\xed\xe1\x7d\x1f\x86\xad\x22\x6f\x0b\x82\x16\xe4\xae\xa8\xc1\xc3\x65\xdf\xf5\xd3\x34\xc4\xc9\x8a\x3c\xcc\x75\x12\xa0\xd2\x7f\xf7\x00\xf0\x5b\x96\x1f\xdf\x17\x0e\x74\xdb\x7e\xb4\xf3\x49\x22\x6b\x74\x79\x8f\x5d\x3e\x52\x27\xda\x9e\xf9\x6b\x42\xd9\x7b\x7a\xf7\x5e\x1a\xb1\xdd\xd6\x47\x0d\x3b\x49\x70\x6a\x5e\xc8\xa4\x6d\xcb\x50\xe5\x16\xd4\x38\x07\x9b\xde\x82\x48\xb5\xb7\x4a\x7f\xe1\x87\x70\xb8\x76\xea\x4a\x43\x75\x86\xcc\xc1\x7c\x03\x01\x38\x34\x11\xd2\xbb\x66\xac\xc0\x6b\x6f\x44\xe4\x5c\x2f\x5e\x1c\x04\x74\x60\x16\x32\xf8\x9f\xff\xf7\xff\xeb\x44\x70\x05\xf3\x17\x56\x82\x63\x1b\x55\x9b\x75\xfb\xe4\x53\x3f\xe9\x69\x9e\xd8\xb0\x72\x1f\x5e\x72\xcf\x6a\xf4\x16\xe7\xd4\xbb\x71\xfc\x16\xb5\x6c\x8e\x73\x80\x76\xeb\x3f\xe5\xc9\xd1\xa1\xde\xa0\xdb\xfe\xbf\xab\xcb\x18\x41\xee\x52\x94\x15\xc8\x27\x0d\xf6\x23\x7d\x28\x91\x67\x86\x31\x3d\x5a\x6b\x7a\x87\x6a\xf1\xd0\x2e\x05\xb0\x40\x85\x1b\x1e\xf9\x31\xaa\xd1\x5e\xac\xbb\x0c\x6e\x1d\xe0\xed\xbc\xdb\x38\x84\x98\xf5\xd6\xf4\x3c\x0a\x43\x58\x7e\xee\xc3\xfb\x1c\x70\x6c\x5a\x50\x52\xd2\x58\x8e\x46\x67\xd3\x68\xde\x07\xbb\xfe\x2b\x50\xc1\xbe\x88\x22\x1a\x93\xbe\x41\xe9\xf8\xc0\xad\xf3\x47\x0f\x83\x8f\x37\xf9\x30\x8a\x40\xd7\xe9\xfb\x4f\x7d\x60\x30\xaf\x23\x2d\x62\xcb\xf2\x52\x9a\x5e\x4d\xb8\xe3\xf2\x38\x97\x5d\x66\xa6\xff\x15\x87\xde\x75\xca\xdd\xf3\x7c\x30\xed\x0d\x10\xd1\xf6\xa5\x3a\xf0\xd8\x08\xd0\x77\x61\x05\x44\x21\xd2\xfe\x57\x17\xe5\x92\xe7\x2c\x55\xf0\xa9\x3e\x8b\x8e\xe3\x20\x7a\x07\x71\x76\xc2\x30\xd5\xbf\x0f\x71\x4a\x0f\x52\x3b\x8c\xd4\x31\x4c\x4a\x26\x21\x82\x0f\xbf\x14\xac\x24\x01\x9c\xbd\x80\x05\xbe\x20\xd8\xb3\x74\x87\x59\x83\xfe\x02\x78\xfc\x1e\x46\x54\x55\xda\x16\x89\xd4\x16\x86\x1d\x0b\x1e\x80\x31\x3f\x62\x0a\x7b\x94\x42\x58\x18\x5d\xd3\x79\x0f\x0d\xd8\x43\xf6\x28\x6d\xa7\x1b\x27\xa0\x10\xce\x49\x25\x7b\x7e\xde\x02\x53\x54\xbb\x79\x0d\xd8\x5f\x5a\x0b\xfa\x36\x75\x71\x6a\xb2\xdc\xef\xb3\xa5\x1b\xd4\x3b\x6c\x10\xd7\x79\x6a\x44\xbc\x76\x3e\x0e\xc0\xe3\x18\xe6\x82\xd0\x70\x80\xdf\x69\x2d\x4b\xd2\xa7\x2a\x99\xf2\x68\x36\x73\x86\xe1\xf0\xac\x60\x88\xe0\x9a\x61\x3c\x4e\x45\xc4\x14\x5a\x45\x22\xe5\xc5\xc8\xf3\xcd\x84\x8e\xc6\x6a\x92\xb3\x82\xd2\x43\x3e\x1a\x1d\x9c\x12\x8b\xe2\x95\xac\x3b\xbb\xf4\x9c\x47\xb3\x74\x3c\xa6\x6b\xe3\xa9\xb0\x66\xe5\x22\x5d\x32\x59\x13\xf5\x57\x7b\x63\x51\x5f\xab\xcd\xc8\xa9\x79\x1c\x0e\xb8\xb2\x5e\x94\x94\x80\x29\x66\x29\x8a\x80\x59\x8a\xa2\xe9\x5a\xfd\xff\x1f\x6b\xf8\xf1\x77\xf8\x21\x92\x8b\x7d\xf4\xd7\xe9\x0a\x5f\xfa\xc7\xf0\x67\xad\xfe\x7f\xf8\x37\xf8\xff\xef\x17\xfb\xb5\x5c\xaf\x2f\xf6\xeb\xf5\xfa\xef\x63\xf8\xb3\x5a\x9e\x5e\xb1\x2e\x7c\xda\x80\x81\x5e\xef\x20\x8c\xff\x4e\x5e\x3d\x7d\xbf\x03\xb9\xd6\xbe\x5c\xc9\x11\xd1\x4e\xe8\x82\x8b\x3a\xa0\x70\x15\x34\xea\x8b\x05\x57\x01\x65\x1a\xca\xd5\x81\x5f\x97\xb2\xda\xc0\xa3\x46\x7b\x4e\xaf\x33\xb1\x92\x9b\x22\x4b\x64\x19\xb0\x7f\xd6\xfd\xca\x51\xae\xba\x01\x95\x96\x7b\xbd\xc0\x01\xa7\x09\xe4\x13\xb0\xdb\xf9\x91\x92\x53\xec\x79\x50\x6b\xb1\x02\x65\x71\x03\x6e\x95\x9e\x2a\x9e\xc2\x6f\xe6\x64\x25\xf2\x93\xbc\xa8\x4f\xc8\xad\xac\xe9\xc9\xa5\x3c\x59\x21\xca\x3a\x49\xf3\x13\x71\x52\xee\xf3\x3c\xcd\xaf\x4e\x24\x68\x84\x07\x6e\x78\x2d\x8f\x6e\xd3\xfb\x4e\xec\x95\xac\x01\x59\x6b\x87\xdf\x9e\xe9\x28\xaf\x6d\x53\x2d\x8f\x73\x9f\xde\x96\x57\xad\xdb\x98\xe7\x95\xee\x5f\x6c\xcf\xd6\xf4\x9a\x2c\xeb\xec\x45\x71\x2d\x7f\x48\xab\xbd\xc8\xb2\xdb\x80\x0d\x7f\x85\xf4\x9b\x4d\x91\x81\x53\x55\x74\xf6\x8d\xef\x6b\x0e\x37\x6c\xe4\x56\x61\x33\x8d\x30\xdb\xaf\x5b\x10\xd3\x8d\x6d\x5a\xf8\x08\x03\x1d\xf5\xd7\xf0\xdd\x4a\x7c\x55\x40\xec\x53\xae\x41\xef\xab\x82\x94\x74\x90\xaa\x4b\x33\x91\xb5\x58\x6d\xdc\x17\x3c\x9c\xb1\x7c\x22\x6a\x4c\x37\x5f\x44\xb2\xb4\x69\xf4\x93\x06\xc0\xda\xfb\xba\x14\xff\x90\xb7\x15\xa2\x24\x48\x5b\x15\xf9\x3a\xbd\xda\x97\xf2\x05\x06\x3a\xb6\x19\xbe\xaf\x32\x58\xdf\xf7\xc2\x4c\x41\xc7\x0a\x0c\xd8\x62\x79\x8c\x8d\x8f\xf5\xbc\xf9\x2a\x05\xdd\x64\xff\x05\xf6\x25\xf8\x71\xae\xba\x8b\x03\x6e\xf7\xbf\x82\xaa\x6a\x85\x3f\xd2\x7a\xe5\xcb\x0f\xeb\x79\xee\xbb\xea\x01\xa9\x78\x1c\x44\x01\xeb\x3b\x75\x2b\x45\xfd\x63\x3f\x2f\xe5\xfb\xfa\x6d\xf1\xc6\xd0\x4b\x1d\x50\xea\xc6\x1a\x33\xc7\xc2\x14\xd7\x67\x34\xc8\xc1\x67\x60\x7b\xf7\xbf\xc7\x38\x66\xda\x4b\x6b\x3b\x6c\xdb\x31\x65\xa6\x7d\x47\xba\xd0\x20\x1f\xae\xf2\x8d\x5c\xd7\xad\x3a\x2a\xa1\x7d\x03\xe9\x35\xee\x39\x1c\xf7\x6e\x93\xdb\x24\xbd\xc2\xac\x3e\xde\x22\xad\x10\x8d\xcd\x07\x6c\xca\x36\xe9\x71\xb7\xcf\x8a\x72\x2b\x70\x1f\xfb\x30\xe1\x41\x57\x1a\xa8\xc5\xdc\x14\x37\x28\x22\xf9\x71\x23\xf3\x37\x26\x12\x17\x8c\x7b\x97\xdb\xe3\x79\x3f\x8f\x1e\xf8\xdd\x7b\x6f\xfb\x36\xbd\xdf\x2f\xb2\xcd\xb6\x54\x68\xf5\x42\xdc\x82\xc4\xde\x92\x03\x86\xc0\xeb\x59\x44\x9f\x70\xab\xc3\x90\xbc\xef\x6c\x34\x92\x98\x28\x33\x3f\x4e\xef\x50\x8e\xf8\x42\x5b\x92\xc0\x97\x63\xf6\x74\x5a\x1f\x87\x94\xd4\xf4\xa5\xdd\xa0\xa4\x14\x57\x4f\x20\x22\xe0\x30\x62\x4f\x05\xa2\xcb\x2c\x2b\x6e\x54\xe2\xb3\x34\x03\x55\xd1\x16\x0a\x80\x59\x7c\x99\xa5\xf9\xbb\xef\xc0\xde\xfd\x8b\xcf\x23\x2f\x03\xe1\xed\x85\x28\xaf\xd2\x3c\x60\x7e\x0e\x3e\xdb\x29\x08\x70\xdb\x54\xa5\xf9\x55\x26\x1f\x7b\xf9\xaf\x65\xa9\x96\x1e\x86\xe3\xca\xdd\x14\xe5\x3b\x45\x5c\x07\x10\xbe\xcf\xa4\x3c\x91\x99\xb8\x75\x49\xeb\x4c\x81\x50\xfe\x66\x27\x72\xb8\x1b\xd9\x5b\x0b\x69\x22\x49\x5e\x14\x89\x7c\x9c\x89\x0a\x21\xdc\x65\xf9\x02\x7b\xd7\xd6\x3e\x4f\x8a\x27\x72\x57\x6f\x02\x45\xca\xdf\x77\x5b\xa8\xf3\x64\x42\x41\xdb\x1a\xbc\xc6\xbd\xd1\x19\x4f\x51\xbd\x09\x47\xfa\xf0\x0b\x6c\xfe\x3a\x95\x37\xbb\xa2\xac\xcd\x3a\x4d\xa3\x4f\xa5\x00\xb6\xe2\xfd\xd7\x26\xb8\xdc\x37\x40\x32\x05\x6c\x2a\xff\xe2\x4d\xa8\xe7\x39\xb7\x07\x3b\xde\x07\x1a\xe6\x6d\xc6\xd0\x2c\xb5\xb8\x04\xea\xb0\x97\x2e\x75\x0b\xd1\x6a\xc8\x05\xf3\x98\xd4\xe2\x52\x91\xc7\xef\x79\xdd\x34\x41\x70\xb0\xb7\xb1\x0e\xbe\x61\xa1\xca\xfa\xd2\x0a\x18\x78\xe9\xfc\xd0\x8a\x57\xb2\x7e\x62\x8a\xfb\x54\xff\x6e\x53\x8a\xca\xc2\xea\x81\xbc\x11\xfd\x31\xef\xda\x2c\x0d\xbc\x8d\x6f\xc0\x15\x5f\xc5\xef\x0e\x03\xe9\x38\x25\x7e\xb7\x2a\xf2\xaa\x2e\xf7\xab\xba\x28\x63\x89\x21\x03\xfd\xd8\xa3\x5a\x62\x63\x64\x38\x5a\x49\xcc\x5f\x0a\x1b\xb0\xb9\x92\x35\xb2\x1c\x71\xdb\x55\x28\x5e\xdf\x50\x53\x23\x53\x96\xf2\x7c\x21\x97\x03\xf5\x1f\x04\x6a\x40\x76\x66\xc8\x65\xd3\x10\x48\x2c\x59\xdd\x0d\xf6\x21\x51\xbe\x88\x6f\x2d\x0b\xb9\x44\x15\x39\x56\xb2\x14\xc2\x42\xc1\x8f\x00\x3b\x40\x1c\x82\x2f\xc5\x10\x24\x8a\x5d\xf5\x8c\xad\xfd\x6e\xa9\x87\xb6\x90\x4b\x28\xfd\xa4\x58\x1d\x87\x60\xd5\xb6\x89\xc5\xea\xc0\x44\x92\xfc\x03\x08\x97\xb8\x03\x74\x1b\x13\xc2\x71\xa2\x23\x38\x2e\xea\x79\xa0\x58\x8a\x20\x0e\xf6\x39\x68\x60\x07\x4b\xf2\x55\x81\x3e\x10\xd0\xa8\xf9\xa8\x25\xdf\xec\xeb\xb8\x45\x56\xf2\x68\x56\x9e\xd5\x2e\x5e\x49\x09\x4e\xaa\x15\x43\xaa\x96\x50\x7d\x4c\x72\xb1\x95\x9c\x4b\xf7\xd4\x52\xed\xe0\x35\xa1\x64\x53\x14\xa6\x8b\x24\x79\x85\x81\x25\xe3\x7f\x7a\x86\xc9\x1e\xc5\x55\x4f\xea\xe2\x9d\xcc\xe7\x75\x6c\x1d\x6b\x93\xd6\x36\xa2\x9f\x00\x1d\x16\xed\x8d\x1a\x22\x3d\x22\xb9\x75\x1f\xd5\xc9\x56\xdc\x02\xc1\x7d\x29\x41\x0a\x2b\xd7\xfb\x6c\x12\xd0\x19\xe9\x52\x7b\x66\xe6\x39\x8f\x14\xb5\x47\x6a\x0a\xbe\xa6\x8d\x6a\x76\x49\xe4\x22\x5f\xd2\x33\x9e\xce\x68\x3e\x1a\x0d\xa4\x99\x58\xce\x22\x08\x54\x43\xbc\x05\x33\x91\x33\xd9\x9d\x02\xb0\x38\x87\xf0\x99\xea\x72\x8f\x6b\x56\xec\xc4\xef\x7b\x19\x97\x61\x58\x4e\xf0\x9b\xed\xca\xb4\x28\xd3\xfa\x16\x13\xcd\xaf\xa6\x89\x0e\xfd\xb8\xcb\x94\x38\xf8\xa1\x3b\x27\x3a\x44\xe7\x68\xa4\x98\x60\x95\x0e\x78\x06\x36\xba\x6f\xc1\xef\xdb\x6c\x3b\xf6\x9e\xdd\x36\x1b\xa4\x36\xda\x4c\x09\xb6\x02\xf6\xff\x28\x00\x2b\xb8\x35\xfa\x20\x40\xf4\x0e\x1f\xf4\xb6\xec\x1c\x0e\x94\xa1\x88\x40\x5d\x5e\xed\x19\xe0\xc6\x99\x6e\x87\xa6\xdb\x3a\x0c\x4d\x7c\x12\x3f\x8d\xa0\xde\x31\xe7\xf5\xdc\x87\x26\xdf\xa3\xfc\x5c\x7b\x2d\x8f\x31\xb2\x4a\x5c\xcf\x21\x62\x8a\x17\x15\x85\xb2\x7f\x6a\x60\x04\xf3\x0a\x1a\x86\xef\x30\x26\x2b\xd3\x72\x17\x33\x5a\x4b\xdd\x7c\x64\xd1\xdb\x8e\xca\x59\xc9\xc7\x53\xed\xe7\xbc\xee\x71\x6c\x5e\x6b\x97\xf5\xa9\x09\xe3\x40\x3d\x1f\xea\xe7\x65\x18\x12\x33\x1c\xdf\x17\xbb\x44\x3c\xee\xfb\xae\x67\x39\x6f\xf7\xbf\x2b\xd3\x2d\xdc\x27\x61\xf8\x58\x2f\xbd\xe7\xdc\xa3\xe0\xa9\x31\xd3\x13\x10\x5f\x11\xec\xf5\xac\x1e\x50\xc9\x0a\x6d\x57\x56\xba\x17\x4a\x6b\x24\x8b\x16\x75\xc6\x38\x8f\x88\xc9\x6a\x33\x8f\xe2\x29\xa5\xa3\xa9\x17\x26\xbd\x9a\xed\xcf\x4a\x88\x85\x6e\xa6\xb0\x67\x5a\xe6\x9d\xf5\x2d\xd5\x20\xe2\xbc\x00\xdb\x08\x17\xec\x23\xb3\xc7\x35\x5b\xe4\x4b\x3d\xe2\xc9\x6a\x73\x1e\x85\xe1\x57\xa9\xdb\xb7\xdc\x44\x58\x29\x18\x14\x54\xf3\xa1\xec\x47\x88\x71\xaa\xb0\xf0\x5b\x85\x7f\x1e\xd5\x71\xef\x55\x79\x55\xdb\x0d\x47\x0c\xaf\xe6\x07\x35\xaa\x8f\x54\xa8\xc1\x93\x38\x44\x4b\xb7\xbd\x28\x22\xb0\xd5\x13\xbd\x93\xbc\xaa\x7d\x18\x43\x9d\x58\x56\xf2\x8d\x6e\xe8\x67\x1f\x04\xb5\x19\x21\x43\xbc\x45\x9c\x9c\x88\x9e\x3e\x84\xc0\x4b\x18\x72\x52\xad\x16\xad\x79\xb9\x78\xb8\x1c\x58\xff\x90\x46\x5c\x25\x78\x3e\x4a\xcf\xcf\xe1\xf9\x9b\x88\x79\xb9\x78\xf8\x40\x8c\xa7\xcb\x38\xa2\xe7\xbc\xa0\x29\x17\x4e\x81\x97\x40\xe6\x68\xba\x3c\x2b\x28\xbd\x83\x06\x1f\x80\x87\x3e\xf4\xfe\x98\x73\x31\x9a\xa2\x27\xbd\x4a\x1d\x34\xf7\x0a\xac\xf1\xca\x49\x40\xe3\xb1\xb5\x5c\xaa\xce\xa2\x79\x1d\x47\x9c\x57\xe8\x36\xd7\x05\x18\xa8\xc6\x53\x5c\x25\x8c\xab\xd0\x8e\x78\x66\x43\x4a\x5b\xa1\xa3\xf5\x7a\x8b\xce\x66\x5f\xa0\x76\xba\xfd\x26\x25\x33\x76\xd2\x7a\x6f\x89\x09\x2b\x45\xa1\x7e\x5c\x42\x67\xe8\x38\xb8\x7f\x1b\x4d\x03\x58\xa6\x82\xbc\x45\xb4\xf4\xea\x75\xf7\x1f\xb1\xe5\x02\x83\x4c\x94\x5d\xc2\xc2\x39\xa3\x34\xb1\xa4\xcb\x45\xbd\x34\x91\xa2\x5d\x44\x09\x54\x2a\x3c\x42\xae\xc5\xa2\x5e\xd2\x74\xa1\xfe\x2c\xc1\x37\xe7\xbe\xda\x10\xfd\xdb\xf9\x52\x86\x52\xe6\x90\x69\x37\x8b\x8b\x7a\xe9\x3c\x2d\x8e\x8c\xa3\x45\xac\xba\x10\xcb\xe5\xa0\xb2\xed\x55\xd4\xc4\x8d\x40\x3a\x0e\xad\xdb\xd2\x85\xff\x7b\x39\x77\x9d\xfb\xc9\x34\x56\x09\x0a\xfd\xb7\xc6\x87\x29\xd4\x3b\xf9\xd1\x6c\x7f\x96\x4e\x7e\xbd\xca\x8a\x4b\x61\x4e\xf0\x6c\x6f\x46\x96\x71\x9b\xb7\xd8\x2f\x07\x0a\x53\xc9\x84\x14\x18\xac\x0d\x5f\x85\xbf\x26\x39\xcb\x26\xd7\x22\xa3\xb6\x23\xfc\xe9\x69\x19\x5e\x49\xa4\x14\x20\xd0\x53\xcf\x3e\x39\x78\x32\xa0\x94\xe8\xd3\x46\x24\x17\x35\x29\x99\xb6\x7e\x98\x6b\x15\xd2\x51\x09\xde\xb3\xc7\xd3\x58\x2a\x4c\x66\xc3\x94\x1d\x18\x32\x65\x8f\x21\x3c\xeb\x07\x7b\x6a\x6b\x7f\x9a\x7e\x7f\x2e\x75\x04\x3b\xdb\x1f\x84\xa7\x08\x8a\xcb\xdf\x24\xc4\xe5\x32\xb7\xeb\xbc\x8d\x26\x62\x18\x1a\xa0\xbc\xb8\x44\x14\xad\x58\x03\x0c\x06\x7b\x60\xa8\x05\xd2\x33\x26\xdd\xed\x0f\xba\xdb\x76\xa3\xed\x26\x6c\xc4\xd9\xfe\x26\x3e\x2b\xed\x8a\xfd\x5e\x5a\x24\x69\x1b\xa0\x18\x23\x19\xd4\xcf\xe8\x81\x29\xbc\xf5\x48\xab\x9c\xf6\xb7\xe7\x9a\xb9\xab\x8b\x5d\x2c\x19\xbc\x6b\x47\x07\xaf\x4d\xd5\x16\xfb\xc9\xc7\x87\xa3\x16\xaf\xa0\xd8\x41\x6d\x7a\x7f\x60\xf8\x96\xfe\x08\x29\x89\x5e\x69\x9f\x75\x19\x7b\x14\xe0\x4c\xda\x50\x0f\x66\xf3\x10\x0a\xdc\x5e\x02\x30\x0c\xe4\x59\xbb\xc0\x5c\x76\x6a\xc4\xf2\xbc\x08\x43\x22\x79\xa1\x3a\x8b\x14\xe2\x6e\xe1\x73\x7d\xe2\x72\x6e\x71\xda\x8f\x06\x20\x70\x19\xa2\xe3\x65\x60\x65\xd3\xa4\xb0\x16\x23\x92\xce\x6d\x7f\x38\xdf\xf1\x8f\x35\xc9\x69\xac\x2e\x1d\x2d\xea\x7c\x2b\xdf\x1f\xad\xbb\x5b\xf4\xbc\x15\x4c\xde\xd5\x52\xfb\x0e\x5a\xbd\x7d\x0c\xca\x51\xa5\x2b\x59\xff\xa0\x59\xf1\xe3\xf2\x18\xc2\xe9\x68\xa3\x9e\x95\xc5\x96\xd5\xc5\x71\xc6\xdb\xe2\x00\x8c\xc3\x8f\x69\x72\x25\xeb\xf8\x5e\xe3\x70\x26\x58\xc5\xf6\xad\x50\xfb\x2c\xe3\x44\xf2\x9f\x7b\x81\x9b\x52\xed\x12\x9c\xad\xb8\xb4\xde\xce\x6b\x2d\xcd\x34\xaa\x19\x3c\x30\xaa\x19\x01\xab\x3b\xf1\x44\x56\xdb\x71\x7a\x95\x17\xa5\x1c\x83\xad\x55\x15\xb0\xa0\x2e\xf7\x10\xee\xe4\x98\x63\x6d\xbd\x22\x92\x9a\xb2\x3d\x00\x4d\x3b\x9c\x68\x4d\x31\x2c\x0a\xb8\x5b\xcf\x38\x06\x12\xb7\x9e\xf1\xc5\x65\x71\x2d\xb5\x6b\xfc\x5c\x6a\xaf\xfa\xda\xdb\x98\xf3\x97\xde\xef\x8c\xbd\x03\x16\x94\x6d\xfc\x2a\x38\x12\x4f\x77\x9b\xed\x3d\x87\x96\x5e\x3a\x9d\xb5\x86\x21\x8d\x57\xf5\x5a\xeb\xcb\x60\x6f\xe7\x6b\x70\x42\x55\x17\xbb\xf3\x76\xc6\x5c\xcf\x69\xdc\x4e\x8e\xef\x69\xe7\x8c\xaf\xc1\xfd\xbd\xc9\xa6\x6c\x65\x4b\xc0\x70\xce\x37\xa0\x04\xb2\x19\xb7\x52\xe9\xa1\xf6\x54\x5d\x33\xad\xc0\xdd\x12\x53\xeb\x1f\xe0\x0b\x9c\x07\x01\xb3\x5e\xc1\xd3\x39\x59\xf1\x9e\x05\x69\xf7\xc0\x3a\x0d\x80\xc5\x4e\x4c\xd0\x15\xb9\x6a\x64\xc5\xa3\x38\xd8\xa6\x49\x92\x41\x24\x3c\x18\x65\xdf\x3a\x77\x06\x7e\xfa\x90\xb6\x07\xba\x42\xbd\x72\x70\xe2\x8c\xd8\x87\x09\x7e\x07\x28\x60\xc5\x14\x3e\xc8\x18\x0c\x21\xee\x2c\x0c\xd3\x7e\xf1\xb3\xce\x8a\x1e\xb4\x8e\x01\xa9\xf8\xa3\x9c\x14\x4c\x50\xea\xa4\xdd\x61\xf8\x9b\x4a\xab\x7c\xf9\x37\x16\xaf\x3c\xf1\x76\x18\xbe\xf4\x4b\x7d\x83\x1a\xfd\xac\xeb\xb4\x45\x71\x3e\x95\xa0\xad\x74\xd0\x6e\x53\x19\x59\x27\xe3\xfb\x5d\xbc\x17\x2e\x05\x5e\x41\x4c\x23\x89\xa0\xcc\x53\x8d\x8c\x3b\xea\xf4\xff\x2c\x8e\x65\x36\x86\xb4\xfa\x67\xb1\x90\x4b\x8c\x6a\x6b\xcd\x67\xdd\x50\x9f\xea\x47\xbf\x2e\x8f\xf6\x9d\xe1\xe9\x14\x3f\xb7\x4e\xf3\xe4\x75\x51\x7d\x7d\x84\x76\x0c\x53\x36\x1d\xd4\x10\xcb\x21\x55\xbc\x5b\xcd\xc7\xb5\x23\x6e\x8a\x0e\x29\xaf\x3d\x5d\xd7\x61\x38\x24\x05\x7f\x29\x5c\x5e\xc1\x52\x68\x93\x9a\xd8\x02\xb3\xd1\x48\xd0\x99\xb5\xf0\x87\x30\xfa\x5f\x77\xf9\x5f\x9f\xa2\x40\x9d\x6a\xf9\xbe\x96\x79\xe2\x0c\xe1\xbe\xbc\x75\x15\x72\xcf\xe3\x68\x2b\xae\x63\xd3\xa0\x8a\x08\x56\x6e\x9a\xdc\xb0\x97\xf3\x97\x42\xeb\xd4\xe5\x68\x9c\x02\x53\x77\xfa\x7a\xed\xa7\x3a\x1a\xcb\xb3\x68\x6e\x9c\x52\xc6\xe8\x92\xf2\xc0\x7e\x50\xab\x98\xc8\x4c\xd6\x1f\x9e\x80\x17\xc3\xcd\xd1\x62\x7d\xda\x45\xf3\x0f\xf9\x3d\x1e\x61\x4f\x01\x8d\xff\x51\xe0\x2e\xda\xfe\xac\xf1\xcd\x4b\x41\x72\x56\xba\x19\xf9\x3e\x4d\xcf\xa2\x39\x5e\x4f\xa9\xba\x8a\xb0\xd0\x21\xc6\x24\x5d\xa5\x2e\xe2\xf4\x70\xf0\x60\xe3\x87\xfb\x61\x83\x15\x3c\xbf\x1f\x3e\x44\x17\x3e\x30\x2a\x5c\x3d\x1b\x8d\x2a\xe3\xcf\xd2\xdc\x5d\x42\x5b\x06\xb9\x08\x52\xc5\xbc\xe0\x7b\xc0\x12\x31\xfe\xe1\x05\x23\x82\x3f\xb7\xfc\x73\xca\x4a\x07\x50\xda\x3f\xbf\x9e\xa7\x40\x88\xfa\xe1\x43\x1b\xe2\x6d\x04\x4b\xf9\x42\xf1\x26\xc3\xd6\xbd\x06\xc0\x13\x86\xc3\x5c\x43\x0e\x68\x3c\xc9\xac\x6f\xcf\x50\x62\xf7\x21\xe8\x14\x70\x98\xad\x82\xb4\xda\x08\x61\x40\x49\xa0\x67\x20\xe4\x54\x7e\x2e\x49\xc9\x84\x6f\x2c\x35\x40\x1c\x25\x26\x57\x85\xc8\x1e\x43\x5c\x19\x88\xf0\x0b\x6b\xe2\xa7\x52\x96\x6a\xc6\x06\xed\x90\xb4\xd7\xe7\xe7\x82\x94\x0c\x39\x7a\x0d\x07\x26\xe4\x49\x1d\x86\x82\xf3\xbc\x4d\xa9\x87\xe1\xdb\x9c\x94\xec\x07\x35\x8e\xbd\x1e\x02\xdc\x69\x15\x90\xb6\x6c\xaf\x60\xde\x29\x66\xb7\xd9\xaf\xbc\x27\x74\x9d\x62\xc3\xfc\xf4\x85\x58\x7a\x83\xe6\xe9\x42\x2c\x35\xb0\xfd\x58\x94\x49\x47\x5c\x80\xc2\xa4\x1e\x99\x00\x46\xff\x85\xa0\x90\x1b\xd0\x64\x41\x49\x40\x6d\x85\x49\x2d\x86\x96\xc8\x56\xb4\x9c\x81\x89\xda\x34\x84\x10\x94\xe9\xea\xdd\x6d\x18\xe6\x43\xee\x05\x29\x2a\xe7\xa3\x51\x1e\x8f\xc7\xa5\x87\xee\x6c\xfc\x9c\x12\xac\xd3\x24\x29\x58\x4a\xe7\x7d\xc2\x6f\x49\x24\x4b\xe9\x21\x76\xb1\x73\x8a\xbe\x82\x2e\x5b\xd2\x43\x8f\x14\x7d\xe8\x17\x08\xc3\xa1\x6a\x97\x1e\x66\x10\x2b\x47\x10\x37\x9c\xf1\x94\xd2\x19\x35\x83\xf5\xc4\x6b\xad\x62\x39\x05\x05\xf9\xfc\xe0\x85\xc6\xfa\x35\xc5\xb8\x1b\x3a\xc6\x11\x73\x3f\x72\xb8\xf5\x8a\xab\xab\x0c\x24\xac\x10\x28\xb5\x35\x44\x6d\x66\x16\x86\x92\x77\x45\xac\x50\xb8\x69\x48\x57\x6c\x0c\xe9\xfa\x98\x75\x52\xe9\xfc\xb7\x16\x95\xed\x19\xbe\xf9\x1a\xec\xb6\x7c\x40\xe3\x77\xff\x62\x05\xef\x45\xc3\x24\xbe\x85\xf9\xe9\x47\x8d\xde\x61\x29\xce\x4a\x07\x55\xbf\xf7\xed\xe2\x9e\x57\x2c\xce\x5f\xab\x1b\xc2\x19\x93\x1c\x37\x30\xd4\xe6\x72\xc7\x16\x57\x43\x7b\x69\xac\x04\xfa\x0d\xa0\x07\x66\x08\x97\x63\xbc\xf6\x22\xf7\xe4\x76\x20\xe6\xc3\x17\xd5\xe7\xf9\xba\x88\xfb\x6d\x3d\xdb\x0f\xff\xd6\x63\x26\x52\x5f\xd2\x23\x7f\x80\x10\x93\x8e\x6a\xd2\xac\xa6\x4d\xd2\x86\x95\xaf\x10\x95\xd3\x71\xab\xf5\x4b\x51\xda\x78\x49\x8a\xbd\x32\x95\x90\x3c\xbc\xb7\x0e\x52\x79\x3e\x89\x1f\x3f\xd2\x65\x99\x47\x5f\xc6\xef\x4a\x23\x49\xd7\x8b\xf3\x3c\xaf\x0b\xc5\x9b\x1d\x2f\x91\x11\x39\x10\xc9\x7d\x16\xad\x2b\xa9\xb0\xb7\x20\xf8\x26\xd0\x82\x0a\x94\xb0\xb7\xb6\xea\xf8\xdd\x9a\xd2\xe3\xd0\xe1\x72\x6e\x7a\x53\x27\x8b\x45\xd4\xb6\x1c\x1b\x87\x13\x18\xd4\xce\x8e\x4a\xda\x12\x14\xa4\x09\xe0\xee\xa2\x2e\x74\x41\x95\xb6\x85\xde\x78\xdd\x34\x91\xb5\xf5\x54\x79\x70\x6e\xe7\xed\x49\x7f\xd7\x0a\xdf\x6b\xb6\xf0\x75\x51\xf1\xfa\x60\xc8\xc0\xf8\xb5\x01\x1e\xf4\x8c\xa5\xba\xb3\xdd\x28\x68\xaa\x64\xfd\x26\xfd\xe3\xe8\x7d\xa2\x73\x9b\x1e\xa3\xaf\xe3\xd5\x68\x9a\xd3\x5f\x2e\x92\xd1\x67\x1a\xa9\x69\x2f\x18\x92\xd2\xb9\x44\x5d\x1a\x79\x18\x58\xbc\xd2\x3e\xde\x6d\x05\x65\x74\x25\xa0\xfa\x32\x34\x7c\xfd\xe1\x0a\x08\xb3\x3c\x27\xb5\x71\x8b\xdc\x17\x2f\x31\x0c\x9f\x69\x80\xf2\xdd\x48\x74\xd9\xf8\x81\x85\x1c\x50\x97\x4c\x59\x0f\x4f\xcf\x3a\x74\x3c\x0c\xf9\x4a\xd6\x2e\x12\x7c\xcd\xa3\x59\x7d\x66\xd3\xcd\x75\x59\x63\x74\x5c\x9b\xbe\xa8\x97\x93\xbc\xf8\x1a\x01\x8d\xde\xad\x40\x53\x99\x05\x98\x6b\x43\xa9\x8d\x46\xa9\x79\x30\xc3\xad\x06\x87\x3d\xa8\x4c\xc6\x87\x91\x43\x7d\x5a\x35\x20\x60\xe6\x11\xcd\xfa\x51\xee\x7b\xc5\xfd\x36\xb7\xbc\x02\x83\x07\xc9\x57\xc7\xa5\x6d\xe1\xdf\xcd\xab\x16\x93\x79\xf2\xa1\x82\x3f\xd8\x82\x7a\x34\x2d\xc8\xea\x45\x52\x2b\xb1\xda\xc8\xc4\xc9\x76\x06\xe6\x09\xed\x03\x73\xfe\xc3\x20\x0c\x83\x1c\xdd\x81\xf7\x70\x5b\x3b\x0d\x98\x42\x91\xb6\x05\x3e\xcc\x38\x87\x69\x1a\xe3\x81\x93\xc8\x71\x57\x96\x44\xcf\x27\x5f\xd0\x30\x14\x66\x60\xf7\x2f\x79\x75\x23\x76\x4f\x8a\x23\xc6\xac\xfd\x70\x36\xb0\x6f\x8a\xab\xad\xe7\x1d\x49\x2b\x9a\x1a\xfd\x25\xb5\x22\xce\xff\x77\x37\x87\x50\xf6\x3a\x35\x3b\xe8\xd6\xa3\xe7\xd6\x32\xfa\xe3\xf6\x1e\xf1\xd7\x48\xfa\x8b\xd3\x5d\x6f\x04\x4c\xb5\xde\x95\xa6\xe5\x03\x3d\x3f\x73\xad\x52\x56\x1f\x28\x43\x35\x8b\x1e\xe2\xae\x75\x18\xb5\x32\xc6\xc0\x45\x24\x7b\x05\x92\x61\x4f\x0f\xbd\xcd\x0e\x23\xfb\x5b\x33\x49\xe7\xf5\x42\x2e\x63\x09\xd2\x39\xa7\x8c\xf9\xaf\x5e\xda\x50\xfd\x47\x44\x1d\x3a\x40\xca\xc7\x9a\xd0\x88\xe6\xe0\x6e\xdd\x4f\xae\x6a\xee\x5e\xa8\x8b\xaa\x82\x9f\x58\x53\xab\xce\x1d\x0e\xec\x52\x22\x8a\x2f\xe5\x55\x5a\xd5\xb2\x44\x8a\x97\x7b\xca\x07\x20\x43\xec\x79\xa2\x69\x1a\x52\x2e\xea\x25\x97\xea\xbf\x3b\xfd\x0e\x11\x2f\x14\x39\xae\xd2\x17\xf9\x92\xa7\x07\xaf\xe5\xaf\xa0\x40\x6f\xfb\xa8\xd0\xdf\x1e\x02\xe4\x14\xd8\x96\x7d\x01\x01\x06\xe5\x6e\x57\xca\x24\x4e\xd9\xb5\xc8\xe2\xe2\x40\x0f\xa0\x74\x03\x18\xf7\x47\xc1\x03\x85\x54\x4f\xd0\xcf\xcc\x09\x3e\xf1\x9f\xac\x8a\xdd\xed\xc9\x95\xac\xd1\x99\xf4\x89\xa7\x5f\x13\xa0\x63\x4d\x12\x9c\x04\x8e\xf3\xfc\x5d\x9c\xa4\xf9\xc9\xdb\xc2\x41\x0d\xf5\x7f\x74\x57\xe2\x77\x41\xc3\xf0\x6b\xf2\xa3\x60\xbf\x0b\x0a\xdc\xec\x1b\xcf\xf0\x61\xf1\xbb\x58\xf6\x5c\x6e\x27\x3d\xd2\xe5\x89\xd8\xed\xb2\x5b\xc7\xab\x88\xf2\x0a\x82\x68\x28\xfa\x84\xf8\x23\x50\x6d\x3a\xef\x95\x97\x92\xbc\x2d\x28\x7b\x23\x26\x4e\x97\xba\xe2\x77\x46\xfd\x3a\xfe\x5e\xb0\x8e\x72\x76\xfc\x8d\x38\xa8\xf2\x68\x02\xf1\xa2\x48\xda\xee\xb7\x30\x07\x6c\x2b\xe0\x01\xb0\x69\x02\x85\x41\x02\x40\x61\xa4\x9b\xcb\x25\xed\xe8\x4d\xd9\x71\x1b\xab\xd7\x87\x60\x3b\x94\xc8\x9d\xcc\x13\x99\xaf\x52\x59\xf1\x47\x65\x29\x6e\x5b\x36\xf1\xe9\x4a\xe2\x69\xb4\xd5\xd9\x43\x4a\xd9\x73\xb9\x90\x4b\x5e\x1f\xbc\xc5\xf1\x17\xc6\x9b\xc6\xf3\x17\x4f\x3b\xa1\x53\xbe\xd1\x75\xdb\x73\x25\x38\x9b\x63\x57\x65\x77\xa0\x5b\xd3\x77\x91\xc9\x49\xf5\x2e\xdd\xbd\x2d\xd0\xb7\xdd\xe1\x40\xdb\xdd\x62\xb4\xf0\xd3\x5d\x26\xd2\x3c\x60\xd8\xbc\x57\xe4\xa9\xe2\xec\xab\xe3\xc8\x2e\x2d\x30\xe9\x0c\xf4\x49\xb1\xba\xaf\x5a\x0b\x12\x6c\x35\x45\x7b\x29\xa4\xfd\xa8\x94\x82\x1f\x19\x72\x28\xf2\x73\xfe\x0d\xa9\x69\x7c\x77\xa0\xd6\xd6\x18\xfe\xb2\x61\x3d\x31\xfa\x76\x20\x97\xd6\xca\x73\xb0\x67\x26\x83\xbb\x74\xaa\x2a\xec\x9c\x25\x81\xaa\xd3\xfa\x49\x5a\xd9\xbc\x95\x4b\x0d\x45\x3c\xb1\xfa\x78\x86\x0e\x7c\x4d\xe8\xc0\x4b\xe6\x25\x80\x9b\xa1\x50\xaf\x8e\x02\xbe\xa3\x32\x1f\x0d\xc3\x92\xbb\xd0\x54\x97\x45\x72\xeb\x0c\xda\xd0\x05\x02\xce\x16\xd8\x79\xb4\xd9\xc1\x40\x5a\x29\xfa\xa3\x59\x17\xa5\xa2\x9f\xc1\x65\x91\xfa\x66\x41\xb5\xbf\xdc\xa6\x75\xc0\x72\x98\x69\x26\xc5\xb5\x7c\x03\x49\x2f\x64\xbd\x29\x92\x47\x59\x91\x4b\x2f\xc8\xa1\xaa\x34\x48\x79\x31\xc1\x7a\x10\x33\x04\x45\x1a\x26\xa9\x65\x84\x46\x28\xb3\xe9\xa9\xfd\xf4\x53\xc5\xa1\xe5\xfd\xa2\x9e\xac\xd3\x3c\xad\x36\xcf\x5b\x9e\xcd\x4a\x85\x92\x2b\x71\x2d\x79\xce\xc0\x09\xce\xf1\xde\xfb\x9a\xcc\xe5\xa4\x2e\x7a\x4b\xf8\xe9\x69\xf5\x52\xbc\x64\xda\x6f\xbd\xf5\x68\xde\x8a\xd8\x05\x5d\xb5\xef\x37\xd4\x1c\x46\x32\x59\x5f\x2f\x3c\x08\x98\x5d\xd9\x5d\xef\xca\xde\xb7\xb0\x4d\x13\x98\xe1\x39\x0d\x25\xac\xaf\xd7\x07\x38\x1a\xef\x37\x4f\xc1\x23\xca\xd1\x10\x20\xb6\xbe\x16\x8b\xbd\x11\xc4\x57\x92\x70\xda\x62\x6e\x96\x6d\xcf\x64\xac\xed\x2a\xfa\xe0\xa4\x5f\x27\x55\x5b\xf3\x4c\x4e\x8a\xf5\x9a\xef\x24\x93\x93\x22\xe7\x1b\xf5\xf7\x66\x23\x65\x06\x1a\xb8\xaf\xd3\xf7\x32\xab\xf8\x6d\xca\xe4\xe4\x49\xb1\xe2\x6f\x15\x67\xe4\x5c\x39\xf3\xd7\x12\x8c\xf5\xf7\x79\xad\xc5\x59\xcf\x18\x3a\x35\xd6\x3f\x7f\x66\x72\x92\x56\x3f\x6a\xd1\x13\x97\xaa\xf8\x6b\x51\x55\xfc\x7b\xd5\x4e\x7a\x95\x8b\x8c\x6f\x55\xa2\x6a\x8e\xff\xac\x86\x8d\x36\x33\x4f\xf3\x84\xbf\x4f\x2d\xe9\x75\x29\x40\xd5\x23\xe3\x5f\xe6\xaa\x85\xa2\xe2\x12\xca\x6e\x77\xc0\xcb\xa9\x6f\x85\xca\x2b\xfe\x5c\x35\xb6\x4d\xb7\x80\x28\x2b\xfe\x8d\x84\xfb\xbb\x2a\xb2\x6b\xbc\x26\x9e\xa9\x04\xad\x7f\xc1\xff\x90\xba\x9e\xc5\x54\x15\xff\x5a\xa5\xa1\x28\x13\xca\x7c\x89\x33\xdc\xdd\x82\x86\x01\xff\x5e\x32\xe9\xe9\x26\xf2\xdf\xd5\x6f\xab\x8a\xc2\x7f\xc4\xd2\xf0\x94\x51\xf1\x7f\xaa\xd5\x42\x05\x4b\xfe\xb5\xfe\x7e\x29\xb6\x92\xff\x5c\xc0\xba\xbc\x28\x92\x74\x9d\xca\xf2\x1f\xf2\x96\xff\xae\x92\xb2\xa2\x78\xb7\xdf\xa9\x9f\x3f\xaa\x9f\x79\x51\x6e\xc1\x82\x06\x95\x39\xf9\xf7\xc5\x40\x4e\x90\x69\x7c\x53\x97\x52\x6c\xf9\x0f\xaa\xbf\x37\x1b\x51\x22\x73\xf0\x02\xbc\x4c\xf3\x37\xaa\xb2\xf7\xfb\x69\xa1\x57\x18\xdf\x58\xf9\xa5\xfa\x2d\x7f\x6d\x3b\x91\xe4\xbf\xc2\xcc\x7f\xad\xea\x62\xa7\x48\x03\x71\x05\xfc\x0b\xbf\x71\xc9\xfc\xbd\xc4\x08\x3d\xa0\x11\xce\x7f\x63\xd2\x9a\xea\xf3\xef\xd4\x42\x6f\x31\xe3\x9d\x9b\x6a\xc5\x9f\x17\xa8\x53\xfc\x46\x4c\xae\x65\x09\xd7\x41\xf0\xc5\xe4\x2f\x7f\x9f\x3c\x0c\xd8\x1b\x71\x68\x2b\x1b\x1f\x2b\x42\xbc\x07\x17\x3f\x61\x78\x94\xb3\x2d\x92\x7d\x26\xe7\x92\x94\xf2\xf7\x7d\x5a\x4a\x12\x4c\x26\xa7\x93\xc9\x69\x96\x5e\x9e\xae\x8a\x44\x6e\x41\x00\x16\x50\x1a\xbb\x03\x69\x2b\xe3\x1d\x15\x86\xf8\x77\x22\xb6\xc9\x1c\x3f\xc9\xa2\xbf\x99\x25\x28\x61\x10\x27\x59\xa3\x87\x16\xf3\x12\xec\x2b\x79\x52\xd5\x65\xba\xaa\x03\x67\xee\x59\xdb\xfb\x6b\x78\x44\x75\xd5\xf4\x58\xb1\xf5\xfb\x1c\x47\x91\xa0\x3a\xeb\x49\x30\xaa\x47\x81\xa2\xe5\xaa\x74\xbb\xcb\xe4\x09\xa8\x34\x7b\x46\xdc\xa5\xd7\xbe\x96\xad\x9f\x92\x79\x4c\x4f\xb5\x87\xa8\x20\xb0\x4f\x1f\x8a\xa2\xac\x45\xbe\x52\xb3\x47\xb3\xbc\x39\x91\x13\x7c\xe0\x7e\x2c\x2a\x09\x61\x64\x83\x34\xa0\x4c\x5d\xac\x68\xaf\x47\x63\xeb\xa9\x53\x52\xe6\x19\xf4\x91\xe1\x94\x73\x5e\x83\x05\xdf\x2f\x01\x1d\x05\x64\x1e\x07\x23\x39\x0a\x68\xc0\x4a\xea\xdf\x5f\x92\xe5\xf4\x8e\x20\x32\x6a\x1a\x09\xf4\x2f\x0d\xc3\x1a\xc2\x41\xb7\x12\x4d\xf8\x81\x2b\xf9\x9e\x97\xe0\x56\xf6\x4a\xdd\xd5\x90\x0a\x74\xcd\x91\xa7\x2d\xd9\x0d\x69\xac\x09\x50\xfb\xca\xd0\xab\x5b\x65\x6b\xf9\xbe\xbb\x27\xda\x43\xf7\xc0\x49\x27\x16\x4b\xad\x25\x6b\xf4\x84\x67\xe5\x68\x44\x6b\x6d\xca\xb9\x28\x97\x61\xa8\xfe\xef\x69\xc4\x62\xda\xfa\x00\xb2\xab\x77\x32\x37\x4c\xa7\xa8\x05\xf7\x02\x4b\xa7\x2d\x95\x18\x77\x37\xaa\x45\xc3\x10\xcd\x68\xa3\x6e\xa4\xfa\x36\xc1\xb8\xdd\x36\x3d\x45\xdc\xcb\xb3\x6e\xe0\x6d\x92\xe7\x2c\xb2\x1a\xf1\xd4\xf7\x10\x0e\xde\xe0\xde\xc9\xfc\x00\xfd\x65\xc5\x4a\x64\xba\x6f\xf8\x9e\xc0\xcb\x4f\x39\xd9\xc2\x85\xee\x25\x5a\x02\xc2\x4b\x03\xf5\x3b\x24\x79\x06\xd6\x8f\x23\xe4\x9a\x52\x88\x34\x81\x9d\xc7\x38\xea\xd5\xc0\xb5\xa0\xa0\x1b\x07\xa3\x56\xc0\xab\x40\x3b\xad\xa9\xbe\xde\xac\x04\xbc\x03\xf1\x4e\x1a\xf8\xd9\x21\xa5\x62\xd1\x4b\xbc\xdc\xa9\x76\x51\x58\xf1\x12\x31\xf7\xa8\x42\xcd\x45\xca\x0a\xcf\x03\x8f\x5c\x68\x9f\x93\x4b\x96\xf1\x68\x96\x9d\x99\xf8\x6e\xb3\xcc\xa8\xab\xad\xf8\x7e\x91\x2d\xd9\x9a\x93\xe1\x0a\xf6\x72\x52\x15\x59\xd3\x94\xea\x0f\x51\xfd\x98\x75\x5a\x69\xe8\xc5\x30\xc3\x77\xba\xb0\x02\xf7\xb9\xee\x84\x7b\x69\xb1\xfe\x56\x90\x35\x27\xa8\xfb\xbe\x7a\x67\xbc\x74\xae\xde\xf1\xc5\x92\x52\x84\x3b\x5d\x9b\xb2\x4e\x33\x70\x82\x6c\x3b\xc5\x0e\x1e\xeb\x54\x5d\xfb\xe1\x43\x05\x56\x35\x19\xe0\xf0\x9d\x32\x5d\x79\x0b\xe1\xc0\x05\x30\xaf\x5e\x12\x5b\x19\x40\xd6\x89\xa8\x09\xad\x9a\xc7\x2f\x1c\x5f\xa9\x7f\x61\x64\x32\x3a\xaa\x27\xce\x34\xdc\x56\x4d\x64\xb7\xaa\x1a\x01\xa0\xac\x0d\xd7\xfd\x40\x9c\x84\x30\xdc\xe0\x89\x56\xf4\x2d\xdf\x90\x35\xa5\x6c\xed\xf1\x64\xba\x6c\x18\x1e\xa9\x89\x9b\xd1\xde\xb9\x23\xb0\x58\x0e\x9c\x7f\xfa\x87\xb3\xe4\xcc\xb4\x34\x4b\x46\x23\xba\x5e\x24\xa8\xc9\xa8\xcf\x10\xf2\xe9\xe0\x94\x56\x65\x31\xe4\xac\x74\xb3\x8b\x64\x3c\x5d\x1e\xa8\xd3\x4b\xbd\x14\xab\x77\xdf\xef\xc0\x51\xbe\xf5\x2f\xbf\x5e\x4c\x97\x73\xf5\x9f\x0b\x94\x4d\xd9\x66\x11\x2d\xcd\xfb\x13\x4c\xef\xb7\x22\xcd\xe7\x2a\x35\xde\x1c\x0e\xb6\xbd\x1c\x85\x57\x20\x06\x77\xd8\xa2\x70\x66\xed\x0a\xfb\xba\xc0\x3b\x80\x0c\x9b\xc6\x5c\x91\x43\x4f\xde\x3c\xac\x7b\xd2\x3b\x41\xc5\x4a\x1e\xd9\xa5\xc9\xd5\x6d\x23\x51\x02\xdb\xb9\xb0\x72\xed\xb1\xf5\xc8\x8a\x26\xa7\x4d\x33\x2c\xc0\x86\x82\xd5\x8b\x7c\xe9\x39\xf5\x2a\xbd\xa8\x00\xd0\x74\x4d\x7b\xaa\x87\x61\x39\x1e\x7b\xa8\xac\x74\x73\x16\x5a\xbe\x22\xb4\x2a\x2b\x2a\xc8\xef\x14\x21\x51\xd5\x32\xaf\xa9\x3b\xc0\xb9\x97\x0c\x68\xa3\x9a\xed\xc3\x70\x58\xcd\xf6\x7c\x0f\x2b\x4a\x49\x0a\x26\xea\xf3\x42\x7f\xb0\x3d\xfc\xa1\x71\x8a\x82\x00\xbe\x87\xbf\x18\x20\x66\x6f\xf4\xd3\xab\x39\xca\x09\x74\x29\x75\x61\x59\xcb\x15\x86\x0d\x51\xb6\x82\x62\x70\xb0\x62\x9f\x40\x24\x19\x1d\xf8\xe3\x55\x03\xd2\x98\xb9\x3d\x56\x8e\xe6\x24\x19\x53\xed\xc5\x7a\x7c\xd8\xde\x8a\xe5\xe8\x7b\xb9\x5b\xe7\x40\x5b\x68\x92\xaf\xcc\x4f\xdb\x98\xcc\x93\x38\xd5\x38\x9c\xc0\x07\x65\x1a\x51\x9a\xf4\xe1\x74\xc8\x79\x8a\xc2\xcc\xa7\x5e\x41\xb0\xce\x34\x48\x3d\x16\x61\x28\x10\x58\xc5\x42\x78\xf1\x2c\x85\x07\x9f\x15\x1a\xfa\x74\x6f\x33\x2d\x1e\x73\x77\x8a\x3a\x67\x1e\xc6\x47\x24\x40\x3b\x28\xde\xcb\x22\xfe\x24\xa1\x31\xa7\x26\x61\x70\x48\xd3\xe8\x42\xa8\xee\x92\x6b\xa3\x0f\x5c\x27\x3f\xfa\x95\x3a\x41\x06\x66\x3a\x56\x30\x25\x3e\x3d\xa0\xcd\x93\xb5\x6a\x19\x46\x07\x83\x32\xd9\x71\xd3\xf4\xdc\x86\x05\x3a\x41\xd6\x66\xa0\x95\xee\x0d\x72\x33\x6b\xc5\x2a\x5e\xdb\x2b\x66\x20\x63\xa3\xa3\xdf\xd6\x95\xae\x7a\x74\xa4\xab\xc5\x1e\xd4\xcc\xb3\x36\xfa\x84\x8d\x6b\xa5\x3d\x5f\x2b\x22\xdf\xf3\xe0\xb3\xe2\x19\xde\x44\x78\x2b\xa2\x9b\x8a\x55\x18\xae\x16\xd1\x92\xde\x89\xf1\x98\x91\x4c\x53\x61\x99\x21\xcd\x88\x1a\x67\x3b\x75\x49\x59\xca\x8d\xeb\xb8\x95\x43\x72\x74\xa0\xc8\xff\x34\xdf\xcb\x13\x79\x38\x1c\xda\x3a\x28\x67\xd1\x3c\x8a\xcd\x2a\x2c\xc4\xf2\x60\x5d\x96\xbc\x01\x62\xb6\x2d\xb5\xd3\x7e\x24\x3c\x21\x57\xcd\x7a\x39\xde\xca\x56\x26\x68\x93\x03\x9c\x73\x4f\x8b\xa5\x02\xba\x9a\x14\x2c\x40\x17\xcc\x54\x6f\xcc\xdd\x81\xed\x79\x31\xd9\xca\x5a\x34\xcd\xdd\x81\x65\xdc\x8b\x56\xb4\x52\x38\xaa\x50\x50\xb0\x1a\xf2\x7d\x18\x1e\x69\x9f\xad\x28\x75\x91\x8d\xc4\x62\xb5\x54\x74\xe2\x86\x17\x8b\xd5\x92\x25\x3c\x9a\x25\x67\x1b\xff\x5a\xb9\xc3\x08\x39\x9b\x45\xb2\x1c\xac\xf5\x15\x2e\x6f\x4e\x72\xb2\x63\x05\xa5\x8c\xec\x2c\xf8\xee\xf4\x1e\x52\x50\x89\x1c\x46\x28\xe3\xd9\x6a\x07\xcf\x00\x6c\x3d\xba\xb6\x88\x20\xf4\x0c\x99\xbe\xbc\xe0\xf9\x94\xc1\x69\xf0\x3e\xb1\x09\xf8\x8d\x7d\xc6\xd9\x7c\xb1\xc4\xa7\xd6\x03\xb3\x1c\x6e\x8f\x31\x86\xee\x45\xfb\x7b\xb4\xbd\xd4\xe6\xb2\xd4\x5d\xd5\x78\x00\xef\xeb\xad\xb6\x24\x83\xf9\x32\xf6\x20\xf4\x30\xa8\xbd\x13\x0e\xe4\x9a\x87\xd5\x3c\xf6\x9b\xd4\x1e\x76\x60\x7e\x25\x8a\x9a\x95\x40\xf1\x90\x52\xd3\x4d\x3a\xc5\xf6\xe3\xc8\xfb\x9c\xd7\xc7\xb7\x45\x3e\xcb\x79\x8e\x37\x45\x79\x1f\x7e\xce\xb1\x6b\x40\xd2\xb9\x8f\xa4\x0d\x55\xc5\xfd\x51\xcd\xfd\x89\xc4\xfe\x44\x74\x3b\x8e\x9e\x53\x18\xfe\xb8\xd7\x83\xa5\x31\x0e\x9a\x04\x49\x89\x60\x25\x65\x56\xe4\xd0\x2f\xed\xd5\x78\x16\xc7\x2c\xfd\x45\x33\x57\x94\x1b\xd7\xe1\x60\xb6\xa8\x22\x82\xed\xe9\x41\x21\x89\xbd\x05\xf3\x6b\x75\x24\xf6\x74\xdf\x3d\x09\xd7\x0a\x52\xb7\x8b\xeb\x25\xdf\x2f\xae\x97\x96\x18\xda\x1e\xfe\xb7\x64\xe9\xe5\x64\xab\x83\xe3\xbe\x4f\xf3\xab\x0e\xee\x32\x07\xe5\x93\xde\x04\xa6\x74\xd0\xe2\x8f\xb5\x4a\x61\x1f\xab\x6a\xb5\xb9\xa4\xe7\x6b\xa8\x74\xdc\x50\x18\xa6\xe7\xe3\xe9\x3c\xb5\x7e\x80\xe2\xf4\x60\x54\xb5\x90\x0d\x9a\xeb\x41\x80\x63\x2f\x5b\xb1\x98\x17\xd8\xe0\xa8\x1c\x91\x7c\x5e\x38\x8c\x1e\x47\x34\x1e\x4f\x0f\x0e\xbb\xdc\x8f\x7a\x8a\x7d\x2d\xcb\x36\xad\x53\x6b\xb8\x7c\xb4\xaa\xd3\x6b\x7b\xfa\x73\x59\x7e\x00\xcb\x94\x47\x0d\x7a\xa7\x9d\x95\x13\x48\x6d\xb7\xab\xed\xc0\xf0\x97\xee\xa0\x95\x06\x21\x92\x6d\x2b\xad\x2c\x3c\x04\x3a\x89\x1e\xcc\xa9\xb2\xc3\x31\xa4\x4a\xe1\x57\xa2\x56\x1e\xee\x25\x0e\x32\x70\x3d\xa9\x76\x0c\x23\x9b\x4f\x56\x59\x51\x49\xf0\xb8\x06\xec\xa0\x59\x6c\xbf\x92\x69\xc2\x7b\xd1\x46\x86\xd7\x50\x35\x64\xcd\x75\x43\xf3\x9c\x64\x4c\x7f\xb3\x54\xf1\xaf\x4c\x4c\x76\xa2\xac\xe4\x13\x99\xa5\xdb\xb4\x96\x65\xa5\x36\x0b\xdc\xc0\xee\x8a\x2a\x0c\x87\xc7\xf9\x7a\x0c\xa9\xe6\x4b\x75\x73\x94\x7d\x60\x50\x8a\x98\xc8\xd2\x2d\xbc\xc2\x29\xa2\xcf\xfd\x1a\x05\x27\xc1\xa8\x9d\x30\x86\xf6\x82\xc1\xfa\x7c\x3c\xd5\x91\x2e\xd4\x82\xf0\xcc\xda\xfa\xad\xa9\x51\xed\x14\x3e\x83\x9f\x9a\x21\xb8\x50\x51\xdd\x26\x28\x5b\xdb\xa9\x1d\xcd\x2c\x0c\xc9\xfd\x73\xa0\x4c\xe0\x2f\x3d\x09\x52\x29\xea\x5c\x0f\xdf\x65\xc4\xfe\x0f\xca\x2a\x4f\x18\x30\x3d\x8d\x98\xdb\x5f\xb6\xe2\xd1\x6c\x75\x56\x3a\x73\x69\x13\x06\x9e\x6d\x78\xb9\x58\x2d\xf5\xce\xa9\x1d\xdb\x4c\x8a\x9d\xcc\x71\xc3\xa8\xd9\x1b\x7a\xb7\xe9\x4e\xa0\x69\xcc\xa6\x60\x8d\xee\x9e\x6c\x06\x3a\x92\x1a\x9a\xad\x68\x22\x59\xd3\x13\xe6\x37\x29\xf0\x7c\xb0\x20\x80\x20\x5d\xbb\x21\xe7\x48\x85\x86\x21\x49\xf8\xce\x1a\xc9\x99\xd5\x69\x1d\xd7\x0d\x1e\x86\x84\xb2\x4d\x6b\xcf\x37\xdd\x3d\x6f\x27\x8c\xd5\x70\x83\xc3\x78\x3a\xe4\xeb\x30\x5c\x9f\xed\x21\x6e\xde\x9a\x1e\xf6\x43\xb5\x6e\xfd\x60\xb0\xa7\xc6\xc5\x65\xed\x41\x00\x1e\x6e\x03\x01\x3d\xf5\x29\xdb\xda\xdb\xc9\x17\x8f\xb9\x90\x91\xad\xd3\x3d\x3f\x3e\xeb\x71\x3d\xf0\xd6\x00\x0c\xc1\xcd\x07\xe9\xad\x1b\x6b\x9c\x03\x9d\xc4\xb8\x9a\x07\x76\x99\x89\xfc\x5d\xdb\xb6\x2c\x77\x52\x39\xbf\x99\xbc\x6f\x08\xc0\xb5\xda\x36\x14\x8e\xb0\x3f\x48\x6f\xf5\x38\x37\x98\xaf\x95\x4d\x83\x0b\x75\xe5\xb5\xbb\x34\x88\xa7\xdd\x92\x29\xa3\x43\xb8\x5a\xbb\x60\x5c\xb6\x68\x56\xf8\xf0\x5c\x18\x14\x57\x2e\x8a\xe5\x40\x77\x22\x00\x30\x8f\xda\x15\x66\x48\x6d\x68\xd2\x72\xa2\xd4\xac\x72\xea\xb8\x37\x1f\x46\xe3\x08\x5f\xbb\x7c\x97\x6c\x71\x3d\x69\xfd\xfe\x18\x75\x03\xd9\xf3\x3b\x43\xca\xc0\x4f\xa6\x49\x9d\xee\xe2\x1f\x62\x5b\x0e\x87\x81\x3b\x72\x38\x1c\xfe\x4b\x09\x95\xcb\xe2\x46\x96\xbf\x82\x83\xe9\x5c\x5d\xf3\x1e\xa1\x71\x44\xbe\xb0\x4f\xaa\x25\x92\xa4\xc8\x4f\xd5\x68\x4f\x91\xbd\xf9\x37\xe8\x9e\x7f\x61\x54\xec\x5f\x1c\xcc\xbf\x48\x3d\xf9\xda\x0b\x9b\x7a\x9b\x6d\xc0\x8f\xcc\x25\xf8\xe3\xeb\xe5\xf3\xba\xe4\x16\xf1\xa5\x2e\xa8\xae\xa0\xda\x09\x28\xbb\x53\x50\x1a\x07\x77\x77\x01\x83\x83\x10\x07\x87\x43\x60\xc0\xc1\xab\xe3\x75\x49\x59\x07\x1b\xc7\xc3\x08\x6c\x3e\xe4\xb1\x52\xc4\xfb\xb1\xab\x38\xae\xe5\x76\x97\x81\xff\xa6\xee\x2c\xe8\xff\xa6\x64\xaf\xbf\x71\xbf\x89\x6b\x51\xad\xca\x74\xd7\x8a\x82\xe4\x19\xd8\x42\x60\x1b\x27\xf1\x65\x02\x45\xee\x35\xbc\xb3\xa3\xd8\x84\x55\xbc\x9c\xfc\x56\x15\x79\x96\xb0\xbd\xfe\x6c\x9a\x8a\x65\xbc\x84\x68\x5c\xd8\x3e\x5b\xf1\x72\x62\x2c\x16\xc4\x0a\x2f\xcc\xd3\xc5\xc5\xcd\x67\x17\xef\xc5\x14\x5d\x51\xae\x97\xa7\x6c\xed\xeb\x02\x58\xb2\x5a\x3a\x6c\x81\xb1\xc5\x15\xdb\xa3\x2e\xfc\xe0\x9d\xbc\x55\xad\x06\xe8\xc5\xa0\xe6\x92\x98\xa4\x13\xa1\x0e\xa6\x9f\x70\x19\x50\x96\xfb\x09\xab\x80\xb2\xd4\x4f\x48\x20\x94\x8f\x24\x01\x2a\x91\xc2\xd9\x16\x5c\x87\x33\x17\x75\xb1\x0d\x4c\xbf\xf0\xc3\x30\x73\x77\xe9\x3a\x96\x24\x48\xd7\x01\x65\x37\x9b\x34\x93\x71\xcd\x6e\xd2\x7a\x13\xd7\x4c\x61\xe9\xb8\x64\x49\x11\x97\xac\x2e\x6f\xe3\x92\xad\xd3\x5c\x64\x99\xfa\xc2\xca\x71\xca\x40\xce\x12\xa7\xcc\x08\x5f\xe2\x94\xe5\xf2\x46\x35\x99\xcb\x9b\xc0\x98\x63\xc5\x39\x38\x5b\x89\x73\x06\xcf\x8c\x71\xce\x12\x79\xb9\xbf\xba\x52\x34\x36\x09\xcc\x77\x40\xd9\xb5\x80\x94\x6b\xa1\x7e\x80\x6a\x99\xfb\x99\x49\xef\x87\x59\x5f\x95\x62\x01\x91\x32\xd0\xf5\x50\x69\xf0\xa1\xca\x15\xd0\xe0\x1a\xd6\xa3\xba\x49\x75\x36\x7e\x41\x85\x4a\x62\xf9\x4a\xc2\x70\x31\xba\x3b\x8c\x0a\xdd\x35\x2a\x7a\x3f\x2e\x18\x82\x78\x5c\x30\xf7\x76\xa9\x52\xcb\xbd\x8c\x05\x83\x80\x8a\xb1\x00\x21\x79\x2c\xd8\xde\x3c\x9d\xc6\x82\xbd\x14\x2f\x63\xc1\x9e\xe7\xeb\x34\x4f\xeb\xdb\x58\x00\xa1\xad\xda\x57\x7f\xd5\x00\x32\x51\xc1\x6f\xf8\x50\x83\xdc\xef\x70\x59\x60\x9f\x28\xbb\x05\xd5\xc9\x9c\xe1\x99\x55\x19\xf8\xa5\x06\xb6\x35\x49\xf8\x15\x50\x86\xda\x02\x55\x9c\x33\x71\x23\xd2\x3a\xce\x0f\x07\x42\xd9\x86\x9f\x2e\x46\x17\xe3\x07\xe1\x9f\xf8\xd9\xf9\x70\xde\xfc\x9f\xbf\xfc\xb7\xe5\x29\x4b\xf8\xe9\x2f\xff\x8d\x68\x2f\xd4\x4d\x9a\x34\xa0\xdc\xd3\x64\x22\xbf\xda\x8b\x2b\xd9\xa8\x29\x37\xfa\x51\x5d\x96\x4d\x96\x56\x75\x53\xc9\xba\x29\xe5\xb5\x2c\x2b\xd9\x00\xdb\xd6\x5c\x8a\x4a\x36\xd7\xc5\x4a\x5c\x36\x57\xa5\xd8\x6d\x68\x70\xea\x98\xca\x9d\x75\x1b\xac\xd9\x44\x2e\x59\xca\x4b\x56\x3b\x49\xed\xd6\xd3\x5f\x07\xeb\x21\x7c\x70\x50\x64\xca\x9f\x83\x3f\xa3\x09\xf2\x9f\xc1\xfe\xd8\x6a\xe1\x02\xd1\x96\xfe\x21\x39\x29\x79\xce\x7a\x7c\x61\x58\xf3\x7a\x85\xe2\xfe\x1b\x44\xd7\xdb\x49\xf9\x8e\x80\xad\x30\x52\xba\x09\xed\x69\x6f\xcb\x76\x24\x40\x84\x30\x36\xc7\x93\x05\x5b\x59\x0b\xfd\x1c\x3b\xd3\x36\xad\x6e\x9c\x54\xd1\x24\x43\x0e\x86\xf1\x33\x9a\xf2\x61\x1a\x86\xc1\xc5\x85\x1a\xb0\x21\xf6\xd2\xa6\x21\x7e\x27\x54\xf5\xa2\xf9\x6b\x66\x3e\x14\xce\x76\x85\x60\x2e\xf0\x64\x3c\x09\x20\x62\x89\x19\xf6\xe9\x2f\x17\xc9\xe2\x22\xf9\x75\xf9\x80\xcc\xe3\x85\x7c\xba\x54\xfb\xba\x9c\x43\xd2\x88\xce\x4f\xed\xac\x76\xd6\xb5\x00\x33\x1f\xbd\x0d\x06\x93\x49\xe0\x57\xaa\x76\xa5\x14\xde\xac\xd3\x35\x39\x5d\x5c\x2c\x2e\x96\x77\x87\x0b\x72\x41\xd9\xec\x22\xbe\x98\x98\x50\x27\xb9\x57\x33\xc7\xe6\xb9\x69\x5e\x8a\x9a\x04\xe7\xad\xb6\xf9\x79\xc0\x3c\xfc\x04\xe5\xa3\xee\xfc\xc8\x3c\x7e\xbf\xb8\x48\x1e\x8d\x9f\x89\xf1\xfa\xd7\xe5\xa8\x29\x16\xd1\xf8\x3f\xd4\xc7\xe5\x22\x9a\xaa\x59\xe6\x9f\x30\xcd\xd3\x8b\xe4\x68\x8c\xae\x0f\xbb\x82\x79\x43\xe6\xf1\xc5\x04\x7f\xd3\x79\xef\x9a\xaa\x55\x65\xf7\x2e\xe7\xa9\x0f\x9a\x7a\xd6\x0f\x02\x3a\xf7\x77\xfc\x9a\x5d\xc3\x86\x2a\x12\x1e\x0a\x9c\xaa\x02\x2d\x3d\x48\xd5\xc1\xaa\xd8\x6e\xc1\x0d\xb5\xfd\xa2\x34\xfe\x07\xc0\x02\x9b\xd2\x79\xbf\x77\x27\x56\xf2\xe1\x94\xe5\x7c\x38\x35\xb0\x59\x3b\xd8\x9c\xe1\x2b\x59\x89\x22\x9d\x53\xb4\x33\x1c\x9a\xe1\x0e\x82\x85\x4a\x99\xe7\x7c\x18\xc5\x79\x18\x06\x4b\xed\xd9\x32\x87\x98\x21\x25\x1f\x96\x06\x96\xeb\xc3\x01\x35\x9b\x2d\x14\x5e\x12\xb2\xb8\x4a\xb7\xb7\xfb\x6a\x49\xc9\x7c\x68\xbe\x1f\x5c\x3c\xa4\x74\x74\x71\x89\x4b\x06\xf2\xfe\x9d\x05\xf2\xf1\xc3\x00\xc2\x11\xe1\x22\xf0\x00\xca\x58\x78\xf0\x40\x03\xad\x64\xcc\x9b\x39\xac\xf3\xff\xb8\x07\x05\xdc\xb2\x5b\x77\x58\xfe\x8f\xf6\x66\x74\xd6\x57\x6a\xe2\x12\xff\x62\x8d\xb3\xce\x69\x18\x8e\xc7\x01\x6d\x9a\x60\xdc\x49\x1f\x7b\x90\xfc\x29\x1b\x07\x6f\xc6\x1d\x00\x0c\xce\xb1\xd1\x7a\xa2\x48\x49\x10\x8a\x42\x92\xfd\x0d\x44\x07\xa8\xe4\x99\x05\x9a\x07\xc3\x60\xa8\xea\x04\x5c\xfd\x6d\x1a\x97\x15\x9f\x2e\xce\xce\x1f\x28\x48\xb5\x80\x0e\x81\x6c\x54\x7e\x4e\x99\xe9\xcc\x24\xd0\x4f\x5b\x6c\x78\x94\xb1\xe3\xbe\x83\xda\x3f\x2a\xba\x80\xac\x8c\x1d\x8e\x57\x5c\x23\x14\xb0\xd6\x14\x55\xfd\xf6\x76\x87\xea\x30\xeb\xc9\x4e\x8b\x66\x9f\x57\x4f\xf3\xfd\x56\x96\xe0\x8a\x22\xb5\x8a\x1a\xeb\x45\xba\x1c\xd8\x23\x5c\xc0\xc4\x59\x81\x5a\x87\x2c\xa5\x07\xf0\x41\x51\xdd\xe6\x2b\x74\x69\xe0\x61\x87\x8b\xaa\xb9\x38\xbd\x78\x30\x79\x30\xbf\x78\x70\x71\x4a\x1f\x28\xdc\x44\x2e\x6e\x96\xa7\x6c\x38\xf5\xb1\x02\xd6\x66\x96\xca\x52\xad\xba\xdc\x6b\x51\xa6\xe0\x59\x9b\x79\x9f\x29\x3d\xf8\x31\x29\xda\xcf\x73\x78\xc4\x4a\x7b\xb6\x66\xee\x4c\x95\x61\x98\xd3\x3b\x1f\xc3\x5b\x27\x55\xc1\x03\x95\xef\x75\xdc\x03\x2a\x7e\xcc\x88\xbe\x3e\xf5\xb1\x2e\x8f\x8e\xb5\x62\x87\xe1\x5c\x94\x4d\x13\x7c\x86\x03\xd1\xf0\x71\x17\x50\x7a\xcf\x90\x54\x35\x3c\xd4\xfe\xb8\x7e\xdf\x8b\x2a\xf5\x0f\x6a\x0b\x2a\x80\x42\xbd\xe2\x01\x59\xdc\x1d\x96\xd4\x53\x2a\xbb\xd4\x5e\x21\x27\x6b\x51\x3f\x2a\xcb\xe2\xe6\x11\xd8\x7e\x79\x3f\x35\xcb\x8f\x42\x69\xa9\x85\x29\xce\x5b\x97\xba\x12\x34\xeb\x0e\xd0\x34\x24\xe5\x59\x84\x8f\xfb\x99\x71\x6c\x75\x1a\x5f\x54\x0a\x59\x5f\xdc\x8c\xc8\x3c\x3e\x5b\xfc\x72\xbe\x7c\x70\xde\xa8\x3b\x89\xce\x9b\x8b\xbb\xc5\x2f\x87\xe5\x83\x8b\x03\xbd\xa8\x1e\x7c\x76\x8a\xb2\x66\xdb\x0f\x8a\x7c\x74\x07\xac\xa4\x74\x90\x83\x72\x59\xae\xb5\x6e\x0e\x9e\x4f\x7d\x56\x28\x4c\x2a\x78\x39\x9e\xce\xc4\x39\x8f\x66\xe3\xb1\x79\xe9\x77\x03\xd7\xf6\xbb\x82\xb2\x3d\x77\xd3\xa8\x60\xec\xfb\x73\x1e\x85\xe1\xfe\xec\x73\x1d\x4d\x96\xde\x8d\x46\x42\xaf\x3b\x7a\x46\x1b\x8f\x53\x7a\x17\x90\x80\x73\x10\x1a\xf2\x61\x64\x8c\xc6\x0e\xc6\xf5\xca\xfe\x9c\x7f\xae\x1a\xf9\x2b\x1d\x8d\x52\xeb\x90\x45\x1f\xc9\x8a\x52\x55\xc9\x26\x9f\x2e\x82\x3f\x5f\x9c\xfe\x0f\x83\x01\x2a\x7c\x10\x9c\xe1\xc8\xb1\x4b\x61\x90\x3d\xa8\x51\x74\x66\x01\x12\xdb\x0a\xe1\x61\x78\x3c\xc9\xf1\x43\x0a\x2f\xb3\xdd\x31\x16\x61\xd8\x9e\xdd\x01\x52\xba\x3b\x2f\x28\xb2\x36\xbf\xf2\x3b\x45\xcb\xc6\xc3\x88\xe1\xd5\xa9\xbe\xcc\xb1\x53\xdf\xd8\xad\xfa\xc2\x0b\x03\x62\x30\x2b\x32\x79\x18\xb1\x2e\x39\xa6\xb8\x63\x07\x7f\x37\xce\x35\x0f\x3c\xb1\x6e\xd2\x4a\xf3\x7c\x32\x31\x01\xb3\x57\xa8\xfe\xab\xed\xcb\xc0\x2b\x6c\xe9\x42\x69\x73\x6d\x32\x98\xe6\xeb\x82\x17\xda\x80\x31\x37\x06\x8c\x22\x4b\xaf\x72\x9e\x7b\x67\xf4\x69\xf7\xd9\x5e\x3f\x5f\xfd\x20\xca\x6a\x56\xce\x4a\x8e\x1a\x33\x34\x5d\x93\x52\xfb\xa4\xf4\xb4\x63\xdc\x9b\x9f\x34\xe1\x5f\xf4\x53\x9f\x1a\x0b\xec\x9e\x02\xce\xeb\x4f\x69\x0c\xd6\xf6\xbd\x79\x11\xc5\x50\x43\x30\x55\xfc\xde\x8a\xf2\x9d\x4c\x74\xfa\x0a\x5f\x3d\xdc\xc2\xbd\x21\x6e\x0e\x92\x77\x8d\x4c\xc6\xd3\x99\x54\x27\x40\x8e\xc7\xf4\xfd\x64\xb5\xc2\xd7\x62\x5b\x6a\x21\x97\xde\x8a\xbc\x72\xca\xf1\x6f\xb4\x61\x09\x0a\xef\xad\x61\x09\x1b\x46\xae\xf8\xbb\xee\x02\xd6\xf7\xcc\xd4\x29\x3d\x0c\x8c\x0e\x8f\x6b\xe5\x91\x33\x5a\x7b\x8f\x6c\xbd\x02\xf0\xf7\x13\x9c\x35\x57\xdc\x5b\xe0\xa2\x26\xa9\x66\x81\x71\xf4\x2f\x5b\xb5\xe3\x5e\x68\x31\xef\x73\x72\x99\x15\xab\x77\x06\xfd\x78\xac\x3c\xb0\x32\x6a\x88\xf8\x7f\xbb\x1c\xbe\x11\xc1\x3e\xda\x57\xb1\x79\xce\x39\xa6\xcd\xcb\x38\x97\x37\x27\x8f\xc1\x21\x88\xda\x5f\x36\x8c\x28\xee\x8a\x2e\xfc\x0e\xea\xab\x2c\x6a\x0b\x63\x5d\x50\x77\x7d\xe1\xb2\x19\x90\x67\x4e\xdf\xf4\xa0\x96\xd4\xce\x75\x60\x43\x29\x59\x52\x48\x31\xdf\x2e\xe0\x90\x82\x67\x73\x94\x87\xb0\x1d\x0e\x84\x69\xa7\x8a\xcd\xe0\x38\x86\x4e\xe1\x41\x39\x41\x63\x32\xf5\x33\x0c\x75\x6b\x2e\x09\x02\xd2\x79\xbf\xbd\x56\xbc\x42\x1e\x30\xbd\xf5\x4c\x96\x77\xfb\xcb\x2c\x5d\xa1\xa5\x54\xb0\x2b\xd3\x6b\x51\x4b\xfb\xab\xa8\xc1\xe1\x87\xfe\x2d\x2e\x2b\xf4\x9b\x8a\x3f\x15\x0b\x53\xe4\xd9\x2d\x84\xd8\xb1\x6d\x3f\x36\xcc\xa8\x3b\xfc\x1a\x45\xa8\x55\x35\x08\x02\xf6\xd4\x57\xfb\x7a\xe1\x79\x3e\x06\xc8\xd4\x95\x14\xbc\xf2\x1a\x4e\xe1\x77\x7a\x5e\xc8\xd4\xeb\xed\x0a\xec\x01\xd0\xfe\xac\xbd\xc7\xd6\xd7\x84\xde\xbd\x37\x81\xde\xcd\xae\xc0\x8e\x77\x52\x99\xf9\x6d\x17\x1d\x74\xa1\x8e\x52\xf9\x77\x6e\xc0\xbf\xfd\x67\x1a\x8f\xfa\x1a\x07\x20\xb3\xed\x3f\xf1\xda\x77\x65\x3a\x6d\x23\x8c\x77\x87\xd1\x2d\xa4\x36\xc1\x35\xfc\xd2\x37\x65\xef\x18\x21\x97\xa6\x2e\xc4\x0e\x34\x38\x5e\x6b\x55\x0b\xb5\xf1\x65\x8b\x8c\xa6\xb9\x97\x60\x8b\xb7\x5e\x1e\x52\x57\x62\xa6\xb8\x76\xaa\x88\x4d\x1d\x86\x3f\x45\xd4\x3f\x4b\x79\x8a\x47\x3a\xe7\xa9\x6b\xc6\xd6\x83\x75\xbd\x21\x39\x4c\xb4\x94\x62\xab\x6f\x1b\x42\x99\x44\x3f\x41\xb6\x28\xab\xa9\xd3\xa0\x50\x89\x5c\xdd\x77\x6e\xf2\xcf\xad\xb5\xb5\x41\x68\xd2\x8e\x5f\x8d\x40\x11\x7b\x14\x44\x19\xfe\x34\x81\xe4\x77\x37\xde\xd1\x8c\x15\xcf\x66\xc6\xda\x6e\xcf\x3b\x74\xdf\xf4\x98\x52\x9e\xd4\xee\x39\xfc\xa4\xe4\x5c\xce\x5f\x11\x1a\x07\x33\x7d\xc2\x0e\x9a\xec\xa4\xfa\xaf\x62\x1d\xcb\xf9\x1b\x42\xe3\x57\xa4\xf6\xe9\xe8\x67\xbe\x5a\xb9\xc6\xc1\xaa\xad\x97\x80\x90\x11\x4d\x53\x76\x29\xd9\x37\x24\x98\x05\x94\x3d\xa7\xb1\x27\x06\xb5\x65\xd7\x45\xb9\x0d\x28\xfb\x9e\x3d\x6b\x95\xb8\x3c\x2a\xd1\xce\x07\xfc\x30\xb7\x9b\x63\xb9\x57\x45\x2a\xaa\x83\x04\x93\x82\xea\x00\x44\x94\xfd\xee\x8f\xc3\x0a\x26\xb1\x13\xcc\xa1\x71\x70\xe7\x7a\x3d\x04\x94\xfd\xc6\x84\x64\xcf\xd9\x13\xb3\x3c\xb8\x52\xe9\x1a\xbe\x49\xa0\x60\x2e\xe0\x16\xf4\xdb\xd7\x8f\x3d\x10\xab\x85\xfb\x74\x3a\x8d\x9c\x3f\xf7\xcb\xa0\x76\x32\xa1\xec\x68\x4d\xd8\x2b\xd9\x91\xc9\xab\x61\x3c\x96\x2a\xad\x28\x8f\x56\xe9\x9d\xd4\x0b\x85\x52\x47\xd8\x53\xc5\x8e\xa6\x79\x2d\xcb\xb5\x58\x81\x4b\xa2\xb9\x77\x9f\x5a\x36\xca\xb5\xc2\x5c\xe5\xb9\x8c\x6b\xca\x9e\x48\xf6\x5c\x0d\xc2\x72\x54\x2a\x47\xb5\x9a\xc8\x55\x26\xca\x0f\xb5\xf9\x8c\xd2\x38\x53\x10\x8e\xef\x0f\xaa\x64\xd3\x04\x32\xdf\x6f\xf5\xa7\x82\x75\xf5\x49\x71\x39\xba\xbb\x79\x71\x83\xdb\xd9\xd7\xba\x6d\x66\xfe\x8a\xfc\xac\x16\xc4\xb4\x35\x7f\x45\xbe\x03\xb8\xf3\x44\xe6\x6b\x03\x88\x1a\x2c\xf4\x7a\xfd\x0a\xc9\x77\x01\x65\x7a\xcf\x61\xc7\x9f\xe3\xa8\x03\x75\x2b\x54\xbb\x4f\x5b\x35\xca\xbe\x86\xa5\xc7\x9a\xde\xbd\xf5\xa1\xa5\xf1\x21\xf4\xbf\xd3\xd8\x88\xaf\x8f\x4f\x87\x3f\x48\xe6\xa4\xdc\x1a\x42\x11\x46\x41\xd4\x8d\x55\xbf\x56\x15\x62\x80\x69\x23\xee\xb6\xa0\x8e\xc9\x28\x47\xef\x76\xf4\x9a\xfd\x01\x40\xa7\x9a\xd3\xd2\x68\x5b\x44\x0f\xf3\x99\x04\xf8\xd2\x82\xe9\x6e\xee\xd7\x98\x6b\x58\x7c\x95\xf9\x8c\xc6\x20\xaa\xad\x61\x5c\xcf\x68\xfc\xc6\x2f\xef\x8e\xa5\x43\x2d\x7f\x68\xe3\x1b\x60\xa8\xac\x29\xcd\x2b\xf2\x1a\x36\x8b\x06\x3e\x5d\xf1\x75\xcb\xba\xe5\x47\xa2\xbd\xb1\xb9\x02\x5f\xf6\x15\xf0\x83\x54\x7e\xef\x51\x26\x44\x71\x4b\x1a\xdb\xbd\x84\xae\x70\x84\xb4\x33\xc2\x1f\x0d\xc5\x01\xb4\xa9\x8e\x7b\xed\x18\x24\x6e\x41\xb9\x72\x7a\xb2\x39\x2f\xe7\xdf\xc6\x9f\x0d\xfa\x26\xc6\x74\x67\xa9\xfc\xff\xb8\xfb\xd7\x36\xb7\x71\x23\x51\x1c\x7f\xaf\x4f\x21\xf1\xe4\x68\x89\x08\x96\xdb\xb3\xc9\xf3\x9c\x3f\x6d\x8c\x8e\xaf\x63\x27\xe3\xcb\xba\x7b\x26\x9b\x95\xb5\x1d\x5a\x84\x5a\x18\xab\xc9\x0e\x08\xb9\xdd\xdb\xe2\x77\xff\x3f\x28\xdc\x49\x50\x52\x7b\x3c\x49\xce\xef\x8d\xdd\x22\x01\x10\x28\x14\x0a\x75\x2f\xb9\x48\xf5\x39\xf9\x5d\xf2\x7d\x82\x70\x89\x9f\x29\x85\x8c\x7f\xfe\x4c\xe7\xd3\xf4\x9d\x46\x62\xdb\xb6\xd1\x77\xe0\xec\xaf\xd9\xcf\xe6\x62\x3a\xef\x66\x38\x9c\xbd\x4d\x59\x8c\xb2\x60\xf6\xeb\xc8\x07\xc2\xbf\x68\x7a\xe1\x6c\x5a\x9a\x99\xf3\xb0\x82\xcf\x9e\x64\x2f\x51\xa6\x20\x31\xb3\xd0\xfe\xbb\x85\x36\x4c\xc3\x1e\x60\x5d\x1f\x40\xe9\xb0\xc3\x11\xe6\x6e\x84\x45\x82\xf0\xcf\x54\xf7\x55\xc4\xbc\xa2\xa9\xa0\x58\x9e\x1a\xe5\x29\x86\x32\xad\x12\x21\xb0\xd1\x3f\xc0\x93\x92\x5e\xeb\x41\xf6\xe5\x20\x70\xb7\xdd\x54\xa3\x33\x9d\xfd\x57\xf6\x9f\x21\x61\x14\xe3\xf1\x66\xf6\x36\xfd\x4c\x31\x95\xf0\x97\xd8\x4e\x61\xa2\x4d\x93\x72\xd4\x3e\x38\x2f\x25\xa2\x79\x78\xf5\xf7\xc0\x05\x41\xd3\xc1\xf9\xc3\x0f\xcd\x07\xf4\x61\x81\x17\xf7\x11\xe0\xe6\x69\xfa\xd2\xeb\xf3\x73\x70\x11\x63\x37\xf2\x5f\xbb\x87\xe1\xaf\x61\x69\xb2\x13\x79\xb7\xff\x9c\xfd\x15\x33\xf5\xe7\xcb\xec\x89\x49\x5f\x47\xbe\xd7\x03\xbd\xc3\x80\xb6\x40\x12\xfc\xed\x98\xdd\xff\x30\xf9\x30\xd9\xdd\xbb\xa7\x75\x14\x02\x29\x54\x19\x69\xd8\x94\x8a\x10\x3e\x52\x30\xe9\xd0\xf6\x74\xfe\xdf\xdf\x2f\x76\x8f\xa6\xbf\x9f\x7d\x8f\x7e\xff\xbd\xa4\xf4\xa9\xb9\xb8\xdf\x80\x79\x41\x9e\x85\x15\xc5\xf0\xe7\x2b\x5c\xa2\x2c\x99\x59\x22\xa2\xa8\x98\xdc\x3a\x85\xc3\xe1\x8e\x96\x70\x5f\xcb\x83\xac\xb1\xab\xa2\xe9\x13\x79\xa8\x70\xb2\xcc\x37\x9b\x04\x1a\x4c\xf5\xf2\x28\x85\x9f\x2d\x24\x02\x34\x5c\x98\x2f\x03\x41\xaf\xf7\xa0\xfe\x0a\x52\xb9\x65\x46\x2d\x0e\xec\x81\x65\x0b\xb4\xfe\x94\xb8\x9e\x4e\x43\x6b\xc1\xa2\x83\x7b\xec\xef\xab\xaa\xbe\x17\x12\x91\x7b\x0f\x24\x77\xc0\x10\xca\xa0\xbc\xc5\x89\xfe\xcf\xed\xed\x0f\x01\x1e\x28\x90\x18\x6a\x96\xfc\xee\x16\x94\xb9\x4a\x6d\x66\xe3\x05\xbe\x93\xe0\xfe\x41\x42\xf1\x25\xfe\xb3\x87\x26\x7f\x36\x04\xb8\xf1\x49\x8d\x5b\x80\x53\x26\x9a\x55\x7a\x6a\x7b\x39\xa2\x1b\xea\x77\x1e\x46\x7f\xb4\xeb\x33\xfd\x10\x3e\x4d\xf5\x41\x7d\x91\xf9\x48\xfd\x1f\xc7\x77\x7b\xe2\x75\xfb\x4f\x1b\xbd\x94\x88\x9c\x5f\x50\xb8\x7f\xbb\xf3\xf7\xb6\xee\x67\xaf\xf7\x7f\xdd\xb9\xf7\x5f\xbd\xde\x7f\xf2\xee\x91\x4c\xa3\xd3\x2b\x75\xdf\xfd\x1c\xbb\xe5\x28\x35\x50\x8e\xd1\x75\xf7\x39\xa3\x71\x97\xdf\xf3\xba\x0b\x1a\xec\xb7\xa3\xad\x69\xbc\xab\xa0\x6d\x16\x6e\xb7\xb3\x4b\x51\x37\xd6\xcd\xa6\xa7\x77\xa2\x61\x21\x49\xb0\xfa\x4b\xd2\x5f\x8a\xb2\x74\xe3\xb8\xd8\xfe\xfb\x0f\x34\xb3\x31\xee\x2e\xfb\x50\xff\x5e\xe9\xf7\xc7\xe3\xd8\x3d\xea\x1f\x87\x09\xf7\x62\x42\xf0\xdb\xb4\xa4\x28\x48\x06\x17\xd4\x8f\xf1\xd7\x51\xcf\xdc\x4a\x32\xbd\xcc\x49\x32\xf4\x61\x53\x02\x6c\x5a\x0a\x49\xb5\x83\x25\x85\xf3\x7f\x96\x8a\x38\x13\x6a\x00\x3b\xb7\x9c\x57\x4d\x0d\xf1\x90\x7d\xc3\x3b\xeb\x89\x7a\xf6\xfb\x3d\xb4\x44\x0d\x97\x69\x6a\x26\x9b\xab\x83\xae\x34\xed\x5e\x58\xb6\xe7\x80\xe2\xb6\x75\x64\x7b\xf5\xa0\xc1\x53\xea\x73\x4f\x25\x8d\x20\xed\x13\x7b\x2d\x9f\x82\xa0\xd1\x26\x34\x8c\xda\x92\x47\xce\xc7\xdc\xf8\x34\xf3\x19\xb7\xda\x73\x86\xbe\xbf\xf7\x20\x83\x2b\x89\x19\xdf\xbf\x96\xb4\x64\xae\x1b\x20\xcc\x84\xe4\x5a\x7a\x4a\x73\x88\xa5\x55\xff\xed\x76\x27\x68\x02\xd4\x2f\x0c\x5e\x76\x32\xac\xd8\xed\x4a\x09\x51\x75\x39\x52\xd4\xe0\xd2\xea\xd1\x18\xbc\xae\x14\xce\x22\x55\x21\xc9\x5a\x29\x1e\x26\x72\x8a\x33\xd9\x27\x93\xcc\xb1\x40\xb6\x9f\xf7\x2d\xd6\xfa\x16\x33\x83\x9d\x42\xe8\xb9\x1f\x3d\x49\xbb\xd5\xa0\xfe\xfd\x61\xf9\xa8\xad\x87\x85\x92\x3c\x31\x05\x6c\xe9\x82\x1c\xe4\x65\x24\x20\x0c\x43\x9d\xf4\x80\x78\xe4\xfe\xc6\x35\x56\x38\x3d\x4d\x5f\xe0\x9c\x7a\xed\x6a\x6a\x69\x9a\x0a\xb9\x56\xbb\xec\x58\xcf\x95\xae\x0e\x32\xf3\x69\xdd\xdb\xb4\xa6\xfe\xb2\xb6\xde\x28\x52\x98\xcb\xf4\x79\x63\xe0\x23\x86\x82\xd1\x5c\xaf\x8d\x21\x70\xf2\xfe\xcc\x42\xe2\x16\x93\xf4\x26\x1f\xea\x09\xab\x3f\x7c\x34\x7c\xc0\x4b\xbc\xa4\x78\x05\x3b\x13\x8c\xbb\x74\xb3\x49\x58\x7d\x90\x46\x7b\x3d\x57\x21\xcd\xfc\x44\x6f\xaa\x95\x27\x87\xda\x1f\xac\x5c\xa9\x94\x8a\x3d\x67\xd4\x6b\x3d\x7b\x92\xad\x62\x94\x55\x1e\x9a\xf6\x08\x20\x9f\xe2\xb7\xe9\x25\x74\xd8\xe9\x8f\x8d\x35\x3d\x5d\x01\xb5\xb0\x14\x0c\xf2\x49\x79\xb4\x0d\xbc\x86\xd4\x3e\x5f\xd2\x2e\xc7\xa2\xb9\xa5\x45\x82\x13\x0c\x7c\x0b\x34\x6a\x29\x34\x18\x4d\x0b\xc5\x0c\x27\xf8\xa1\x6b\x65\x78\x70\x46\xd3\x2b\x2d\x7d\xac\xa9\x7a\xf5\xc8\xbd\x32\xcc\xd8\x2a\x42\x12\xd6\xf6\x2e\x53\x7c\x63\x0f\x46\x14\xb4\xad\x34\xfa\x8a\xcb\xe8\x6d\x5a\x00\xfc\x66\x1a\x7e\x7d\x37\x00\xb4\xcb\x2c\x55\x5b\xf9\x40\xfb\xd1\xbb\x74\x11\xde\x5a\x8a\x5d\x50\x8f\xf6\xbd\xa6\xf0\xbb\xbd\xd6\xab\xfe\x45\xc4\x75\x18\xf3\x59\xa6\xac\xd8\xbb\x9d\xe5\x61\xaf\x3a\x53\x0b\xee\x09\xf9\xfa\x34\x84\xdd\x65\xf8\xd9\x47\x7a\xa0\x18\xb3\x0c\x3b\x67\xd0\x6b\xaa\x21\x13\xa0\xd9\xdc\x7e\xd9\xac\x1c\xfa\x68\x27\x33\x73\x0a\x2e\xaf\x54\xf2\xa2\xfd\xac\x2f\xf2\x58\x73\x35\x5e\xd6\x83\x25\x9f\xbd\x83\xfb\x28\xa4\x37\x3d\xcb\xf0\x4c\xe8\xd4\xb3\x46\xc9\x46\x17\xfe\xdb\x0b\x6f\x64\x12\x8e\x1c\x00\xf1\x63\x08\x44\xab\x40\x8a\xaf\xed\xaf\x72\x6d\xa7\xe9\x39\x95\x77\xfa\x17\x8a\x4f\xfd\xa1\xce\x83\xa1\x86\xfb\x79\x84\xf3\x0e\x89\x98\xa5\x8f\x53\x21\xef\x34\xd4\xde\xfb\x73\xb7\x41\x15\x4d\x9f\xc3\xa1\xf6\xc5\xd9\x6b\x38\xc1\x5d\xe8\x5e\xf7\xe0\x25\x54\xa7\x8c\x72\x5f\x5a\xb5\xd6\x42\xe1\xd8\xa1\x43\x38\x32\xc7\x46\x9f\x93\x80\xfb\xd1\xe8\xa4\xb1\xe0\x5a\xdf\xab\xf0\xe3\x5c\x02\x11\xa1\xcc\xac\xfc\x4b\xc0\x8a\x3c\x0f\x36\x58\xb5\x75\x6f\xbf\xf4\x6f\xb0\xcf\xff\x9f\x5a\x3a\x84\x43\x32\xf4\xd1\x1f\xec\xad\x37\x58\xa0\x70\x1e\x8f\x8d\x52\x37\x44\x4d\xad\x16\x85\x77\x4a\x13\xed\x99\x3d\x5b\x7c\xf8\x75\xce\x0c\x87\xfc\x89\x76\x15\x1c\x8f\x41\x41\xd6\xde\xbb\xc7\x2d\x66\x4e\xf7\xf9\x48\xf1\x19\x6d\x23\xce\xdb\xf4\x0c\xa8\xc3\x99\xbf\xa4\xb3\x70\x16\x28\x09\x15\xfb\xba\x93\xbe\xb0\x77\xbb\x44\x5f\x5e\x71\x6c\x7d\x29\xbf\x0a\x6a\x06\x1c\x7c\xe4\x69\xf8\x91\x7d\x5c\xec\xd3\x7e\x84\x57\xaf\x52\xab\x5e\x88\xa9\xbe\x36\x14\xbf\xc0\xcf\x3c\x0d\x42\x40\xe9\x6e\x2c\x89\x88\xb1\xa7\xaf\x8f\x9f\xe5\xeb\xfe\x59\xbe\x3e\x6e\x96\x47\xcc\xf1\x75\x64\x8e\xef\x3b\x8c\x88\x11\x39\x24\xeb\x10\xcc\xa7\xcb\x3e\xbc\x87\xa9\xed\xf9\x64\xf7\x7b\xef\xc2\xef\xfd\x5f\xa5\x94\x91\x3b\xfd\x8e\xb6\xcf\xf6\xbb\x83\x12\xcf\x3b\xaa\xb5\xdc\x60\x15\x55\xbd\x80\x42\xfa\xd4\xd2\xc3\x9b\x5f\xfa\x6f\xcc\xd9\x33\xf5\x2e\x7b\xa3\xfe\xf7\x8c\x91\xde\x21\x8d\x09\xc8\x7a\x9f\xde\xf8\x1f\x7a\x73\xe8\x8e\x74\xbb\xf2\xe6\xd0\x7d\xa7\xb4\x59\x58\xdb\x7a\xc2\x77\x01\x91\x34\x80\x91\xb3\xd9\xcc\x56\x34\x7b\x29\x07\xef\x32\x5f\xaf\xa2\x27\xff\x55\x8f\x18\xdf\xc2\x03\xc9\x75\x4b\xc1\x09\xcc\xe6\x72\xb2\x1d\x89\x1c\xe6\x2b\x37\x2d\x6e\x49\x99\x74\xe3\x1a\xfa\xec\x2a\x6f\xd3\x57\xbf\x42\x57\x20\x81\xf0\x23\xcd\x9e\x52\xac\x46\xe9\x67\xcf\xbc\x76\x71\xf9\x39\x68\xb0\xef\x1c\xbf\x32\x08\xe9\xb1\x6e\xd0\xc9\x58\x35\x8d\x56\xf4\x95\xbb\xb7\x80\x38\x3a\xbb\xc4\xab\xc8\x29\xfd\xd1\x43\xc1\x96\x7c\xf4\xa3\x16\x9b\x3a\xd2\x94\xc4\xfc\x41\xf4\x96\x1a\x04\xd6\xee\xc0\x64\x3b\xb0\xf7\x1e\x6f\x29\xdb\x39\x08\xc4\xb3\xd7\x12\x0e\x1e\xa2\xbf\x38\x9e\xc6\xfd\xdd\x1a\xbe\x02\x63\x50\x3f\xed\x77\xad\x6f\x1d\xf3\xff\x3f\x8a\xe9\xc0\x6e\x34\x29\x6b\xfa\x36\x9b\x36\x1e\xef\xf9\x46\xc0\x7d\x77\x28\xf0\x69\xfa\x04\xff\x4f\x64\x37\x5e\xfa\x77\x64\x80\x48\x1e\xcf\xfe\x52\xce\xeb\x09\xc5\x3f\x51\xfc\x77\x1f\x60\x4f\xc2\xe9\x59\x66\xea\x89\x66\xa6\xda\x4c\x10\x50\x17\x05\xd7\xde\xc3\xfe\x97\x80\x7f\xf9\xa9\x8f\xf5\x80\xd9\xf8\xb6\x23\x0f\xab\xf2\xc3\xe2\xeb\x13\xbf\xef\xdf\xbd\xbe\x2b\x0e\x02\xe1\xfe\xde\x81\xa1\xc0\x07\xe0\xc2\xd3\x19\x30\xd0\x8f\x2f\x02\xbb\xda\x5f\x03\x76\x6c\x8f\xc1\x94\xd1\xf4\x07\x8d\x1c\xaf\x02\xc6\xe8\x87\xbd\x0c\xdd\x9f\x69\x2b\x82\xc4\xf3\x69\x25\x97\xe3\x31\xc4\x0b\x18\x45\xf9\xae\xae\x56\x3b\xc3\xa9\xcd\x3f\x2e\x8b\xc5\x6e\x99\xd7\x74\x57\xd2\xeb\x9d\x32\x53\xee\x34\x66\xef\xd4\x55\xb6\x9b\x7f\x98\xdf\x36\x1f\x52\xfc\x30\x5b\xec\xc8\xf7\xc8\x14\x43\xf0\xdc\x99\x77\x3b\x6b\x36\x70\x4f\xc7\xe3\xfb\x1f\x6e\x95\xbf\xa9\xaa\x08\x13\xfa\x9b\x9e\x60\xa8\xea\x77\x2f\xe5\xbb\xdd\x09\x72\xba\xa2\x67\xc6\xed\xe3\x95\xf9\x23\x9a\xd6\xc0\x7a\xb6\xdd\x9a\xa5\x66\x97\xd8\x7c\x3a\x4b\xea\x6a\x95\xe0\xe5\x32\x9b\x2f\xb0\x26\x0e\x99\xf2\x42\x49\xa9\xfc\xdc\xbd\x0a\x9f\xe0\x04\xbc\x98\x12\xf0\x15\xb2\x2e\x3a\x19\xf7\x1c\x7d\xb4\x07\x8e\xff\x6c\x3c\xd6\x1e\x6a\xdb\xcd\x46\x99\xc1\x64\x77\xe3\x49\x92\xc9\xd1\x3d\x0f\x16\xdf\xef\xab\x13\x46\x18\xbe\x0e\x5d\xc0\xfc\x77\x08\x8b\x4e\xda\x03\x9b\x58\x4c\xe5\x2e\x80\xee\x86\x0a\xb6\xac\x93\x09\x38\xe9\x24\x08\x02\x6c\x4c\x1b\xe5\xb3\x29\xa7\x2e\x7c\xcf\x98\x20\x19\x1c\x56\x8e\xcb\x7e\xc8\xcd\x88\x7c\xd6\xee\xd3\x50\x8a\xd0\x25\x4d\x80\x14\x82\xda\x55\xb1\x15\xa0\x63\xb4\x92\xda\x95\x9b\x90\x72\xc6\x33\x0f\x7b\x3c\x1b\x0e\x78\xef\x27\x93\x49\x32\x22\x6c\x3c\x4e\xee\xdd\x93\x7f\xcc\x4a\xc9\x6b\x2f\x0b\xba\x4c\x82\x30\xa6\xa0\xd8\x24\xa1\xd3\xe5\x12\x3c\x47\xf5\x9d\x40\xa8\x35\x08\x11\x86\xed\x79\x86\x1d\xfb\x32\x5d\x2e\x49\x85\xf5\xd5\x4b\x84\x73\xff\xd9\x03\x3b\xda\x86\xdd\x09\x7a\xf8\x10\xb1\x55\x9a\x56\x5a\x11\x39\xab\x94\xeb\x49\xb6\x9d\xbd\xcc\x5e\x20\x50\xac\x2a\xe5\xe5\xc3\xca\x66\xf3\xab\xe6\x95\xf3\x5c\x91\x43\x3e\x44\x95\xf1\x58\x19\xb4\xa8\xcf\xcc\xfc\x11\x50\x75\x3e\x1e\x3f\x07\x5d\xe9\xcc\x3e\xbd\xf7\x5d\x92\x89\xa6\x49\x8d\x97\x2f\x94\x01\x6a\x47\xe1\x0b\x9d\xb5\xc4\x27\x0e\x9f\x5b\xa9\xb0\x82\xd7\x23\x72\x69\x5e\x2b\x8d\x39\xc3\x35\x29\xc7\xe3\xd2\xf8\x3e\x9f\x20\xbc\x75\xbe\xa2\xe0\x99\x0e\xc2\xb0\x94\xed\x3e\x7c\x74\xa1\x45\x46\x7f\xbb\x21\xc2\x77\xdc\x79\xb8\x51\x0e\xe4\x1b\x93\xfb\x4a\xbe\x9d\x6f\x20\x39\xc3\x92\x90\x57\x68\x4b\xb6\xea\x4a\xb7\x1e\xde\x23\xf2\xd6\x94\x4e\x03\xb8\x5a\xbf\xb6\xad\x0e\x0b\x51\xa4\xd5\xfc\x96\xe7\x02\x58\x94\x7a\xb7\x4b\x99\x1a\x3f\x98\xc2\x02\x41\x29\x38\xf2\x33\x28\xa2\xff\x8a\xc6\xe3\xd1\xfd\xff\x9e\xe3\x0f\x53\x32\xf9\x70\xef\xf7\xd9\x6c\xfe\x21\xf5\xc2\xb8\x1e\xba\x19\xe5\xda\x15\x6e\xab\x1d\xcc\xdc\x3c\xe4\x6b\xe3\x75\x66\x9a\x2b\x7e\x65\xa5\x5b\xe3\x82\xd4\x84\xac\x06\x8e\x85\x2f\xa8\x14\x21\x57\xb3\xad\x3d\x8b\x93\xd4\x37\x10\xbb\xc3\xa2\xf9\x2f\xf7\x00\xfa\xac\x0c\x4e\x4d\x1e\x64\x27\xca\x9b\x49\x02\x61\x35\x1e\xc3\xed\x5c\x7b\x03\xbb\x97\xfe\xd7\xaa\xcc\x2c\x20\x9c\x44\x48\x6f\xf4\x84\x7d\xcb\x75\x7b\x62\xfe\x83\xb5\xb9\x27\x2c\xba\xa0\xdd\xee\xfe\x1c\xdb\xc8\x38\xff\x4d\x03\xf8\x39\xcb\x77\xbb\x0a\x96\xa0\xdd\x72\x46\x44\xad\x6f\xb7\x2b\x76\xbb\x13\xc9\xc3\x15\xd5\xf6\xe3\x86\xea\x94\x6e\xd0\x68\xb6\x55\x47\x72\xb6\xd5\x8e\x85\x93\xb4\x80\x9a\xf6\x99\xbf\x14\xf9\xa8\x0a\x1f\xc1\xbd\x08\x97\x9f\xbe\xf1\x90\x87\xb5\xb3\x2a\xfb\xee\xf7\x15\x72\x99\x0f\xa0\x46\x47\x06\x08\xae\xbb\x0d\xa7\xbf\x9f\x65\xa6\x6f\xb6\xfb\x70\xbb\xfb\xd0\xa0\xdf\xdd\xc7\x70\xaf\x3c\x55\xf4\x0e\x92\xbb\x65\x5b\x55\x51\x3d\xb9\xff\xfb\x24\x78\xfb\xbc\x2c\xec\xbb\xdf\xdf\x0f\xdf\x3d\x35\xd1\xc2\xa6\xc1\xf0\xf7\xc3\x04\x0a\x35\xeb\x06\x6e\xd4\xfb\x09\x5e\x55\x9b\x22\x4b\x3e\x72\xc9\xea\xaa\xb0\xfa\x27\x3c\x5f\x7e\xa2\xa2\xce\x92\x14\xcd\x17\xb7\xcd\xbf\xfd\xdb\x87\xe4\x43\xf2\xb7\xbf\x25\xd8\xd5\x05\xcf\xb6\x33\x30\xd5\x25\x59\x10\x2b\xae\xac\x77\x90\xcf\xa1\x86\x1f\xf0\xe7\x16\xd3\x2f\x57\x9c\xd6\x35\xab\xca\xc7\x9b\x4d\x75\x4d\x8b\xec\xcf\x14\xd7\x9f\xd8\xd5\x73\xfb\x22\x72\x43\x83\xe3\x5e\xe8\xb2\x37\x10\x23\xf2\x72\x3c\x16\x23\xf2\x64\xb7\x73\x4e\x7b\x90\xe2\xa1\x53\x96\xc3\xab\x84\x87\x83\x69\x42\x7c\xf9\xe2\x7e\x34\x0b\x80\xdf\xce\xef\x14\x6d\x4c\x97\x97\x47\x35\xce\xaf\xae\x36\x6c\x09\xd7\xe3\xd1\x1f\xf0\xfb\x7c\xb9\xf7\x35\xbd\xbe\x6a\x76\x72\x53\xf1\x6d\x99\x5f\xd2\xee\xd6\x42\xf2\x84\xfd\xd3\xfc\x35\xdd\x37\xc5\x64\x6f\xff\x4d\x11\x1b\x01\x36\xc2\x25\x14\x88\xf6\x76\xaf\x0f\xcd\xe1\x6e\x03\x41\x49\x54\xc8\xc1\x90\xf8\x19\x36\xe6\x0b\xbf\x64\x47\x90\x67\x41\x27\x06\x30\x67\xdf\x25\x67\x68\xbc\xb1\xfe\x2f\x95\xe2\xfa\xbd\x22\x17\xf9\xfd\xbc\xc8\xaf\x04\xe5\xf7\xef\x19\x1f\x7d\x3c\xd7\x5e\x81\x12\xab\x75\x22\x89\x04\x27\xaa\x0b\x2b\x57\x92\xea\x40\xf6\x87\x90\xe7\x69\xcd\x43\x99\x45\xad\x2c\xca\xca\xa1\x98\x09\x53\x2e\x25\x13\x98\x91\xfb\x1f\xf8\xec\x43\xa9\x12\x8c\x57\xe4\xfe\x87\xf9\x87\xc5\xef\xbc\xe0\xf3\xdc\x7a\x31\x81\x88\x38\x02\xfe\x42\xe7\xea\x84\x3f\x39\x49\x20\xd1\x42\x24\x95\x05\x9f\xf1\x14\x65\x1c\xd3\xb9\x49\xb9\xbd\x20\xb4\x94\x10\xfc\xe9\xfd\xab\xa7\x26\x2f\x49\x2a\xd0\x24\x21\xc9\x24\xf2\x86\xeb\xa8\x39\xe5\x3c\xaf\xeb\x7f\x3e\x97\x10\x98\xbe\x66\x5f\x58\x39\x5d\x72\x9a\x0b\x9a\xde\x7e\xdc\xb2\x4d\xf1\xd3\xfb\x1f\xa3\xd5\xc6\xd5\x55\x91\x96\xe8\x16\xbc\x36\x57\xac\x2c\xde\xd3\x25\xc4\x41\x19\x79\x68\xcd\xea\xe9\x96\x6f\x5e\x54\xfc\x85\x7d\x9b\x0a\x4c\x31\x47\x03\xdb\xe9\xf1\x66\xd3\xd7\xe3\xf1\x66\x93\xba\xc6\x7f\xdf\x52\x7e\x13\x6b\xfa\x1f\xf2\x45\x2a\xf9\x2f\xaf\x61\xff\x5c\xfe\xc3\xbd\xf6\x3a\xc9\xa9\xbc\xce\xcb\xe8\x07\x5e\xe8\x77\x9d\xb9\xbf\xcc\xeb\x7d\x7d\xf4\xeb\x4e\xb7\x27\x74\x53\x95\x17\xf5\x59\xd5\xd7\xd1\x36\x08\xba\xaa\x6d\xe9\x5f\xd8\x53\xef\xbd\x07\xb7\x2d\x94\x3a\xeb\xef\xf6\x93\xf7\x3e\xf8\x9e\x4a\x90\xd1\xdf\xf1\x99\xf7\xde\x74\x34\x67\xc0\x6f\x7d\x6e\xf0\x48\xe9\x47\x1b\x7c\x1e\x45\x2c\x97\x68\x61\xbe\xc0\x4c\x23\xe4\x05\x15\xba\x5c\xd8\xba\xaa\x05\x24\x12\x31\x33\x78\xc7\xe9\x8a\x7d\x71\xfc\xbb\xca\xcd\xaf\x02\x68\x72\xb1\x7e\x51\xc1\x5d\x9b\x52\x84\x20\x63\x35\xe4\xdd\x46\x58\xd8\x1f\xd1\x33\x83\x70\x25\x1b\x6c\x4b\x95\x39\xbe\x42\xb8\x24\x25\x64\xf4\x85\xd0\x78\x3c\x62\xe3\x71\x39\x1e\x27\xf7\x93\x11\x21\x1e\x4b\x0e\xa1\xe9\xc9\xfd\x64\x52\x22\x5c\x36\xb8\x8d\xf5\x59\x9b\x9c\xc4\xe1\x23\xa0\x84\x5e\x70\x00\xb2\x18\x33\xd8\x81\xab\xed\x05\xc8\x7d\x54\x1f\x11\xf6\x89\xcc\xf3\x70\x4f\x73\x30\x8e\x5d\x5e\xd0\x51\x9f\x8e\xaf\x04\x8d\x3d\x22\x5f\xd1\xdf\x3f\x28\x77\x84\xaf\x7f\x58\xbe\xe2\xcb\xfe\x91\xb9\x6b\x77\x85\xef\xb1\x23\xd3\x77\x56\xca\xce\x0b\x17\x0e\x00\x2a\x5e\x6e\x30\x99\xef\x76\xfa\xca\xb1\x05\x32\xfe\xfb\xc3\xfd\x0f\xf7\x6d\x59\xe1\xdd\xee\xfe\x5a\x88\xab\xb4\x46\xb3\x2c\x78\x31\xa3\x19\x44\x9a\x43\x6d\x65\x7d\x18\x66\x49\x32\xe1\x13\x9a\x89\x89\x3c\x11\x54\x07\xe7\xcf\x6d\x58\x3d\x1f\x8f\x99\x3d\x90\xa5\xfd\x01\xa5\xa9\xed\x51\x6b\xb0\x77\x8a\x23\xfc\xad\x5a\xda\xa9\x0e\x0b\xce\x2f\xe9\x06\x74\x1f\x5e\xba\xf9\xab\xcd\x96\xe7\xf0\x54\x52\x1d\x34\xa0\xd3\x27\x1a\xa8\x70\xcd\x91\x2d\x70\x32\x82\xf2\x4b\x56\xd2\x27\x55\x71\xf3\x8e\x57\x97\xac\xa6\x24\x8a\x12\x14\xca\x41\xa4\x68\x2a\xd6\xd4\xab\xc8\x68\x3d\x91\x39\x54\x84\x2a\xc9\x9f\x4e\xdf\xbe\x51\x59\x0c\x53\x8e\x74\x85\x27\xe5\x58\x36\x4a\x2b\xbf\xbc\xc8\xe9\x4d\x29\xf2\x2f\x50\xd2\xc4\xd4\x38\xa9\x6c\x1e\x03\x29\x17\x6e\xeb\xc1\x88\x4e\xab\x4f\xbb\xdd\x77\x27\x7f\x18\x41\xb6\x81\xef\x4e\xfe\xa8\xfe\x48\x5e\x3e\x7f\xfc\x4c\xee\x9c\x98\x5e\x42\x55\xa5\xd9\xb2\x2a\xeb\x6a\x43\xa7\xd7\x39\x2f\xd3\xe4\x6c\xcd\xea\x21\xa7\xf5\x55\x55\xd6\x74\x78\x9d\xd7\xc3\x6d\x99\x7f\xdc\xd0\xa1\xa8\x86\x1f\xe9\x10\xe6\x57\x0c\xf3\x7a\x28\x59\xc3\x69\x82\x39\xca\x4a\xa2\xf5\xd5\x46\xb9\xa4\x92\x46\xaf\xa8\x58\xae\xfd\x90\x37\x1b\xc3\x49\x6c\xe2\xcc\x5a\xe5\x5b\x80\x9c\xf5\x69\x02\x3d\x12\x64\x62\xc6\x4a\xfb\xc4\x70\x48\x83\x3a\x5a\xbd\x0a\x22\x3f\x95\x62\xd8\x30\x3d\x36\x17\x3f\x8c\xd0\xad\x04\xb3\xcc\xcb\xb2\x12\x43\x79\xa9\x0e\xc5\x9a\x0e\xff\x06\xed\xfe\xa6\x73\x85\x0d\x2b\x1e\x3c\xd5\xc5\x05\x87\xcf\x58\x31\xbc\xa9\xb6\xc3\x4b\x9a\x97\x12\x20\xb0\x29\x9b\x8d\x6a\xab\x58\x41\xdd\x03\x12\xba\xcd\x12\x14\x9d\x31\xb4\xb1\xe5\x08\xea\x14\xc0\x05\x90\x7d\xaf\x01\xff\x92\xe6\x05\xe5\x35\xe9\x62\xaf\xae\x57\xa9\x39\x2d\x95\x88\x20\x28\xd6\x22\x06\x7e\x1c\xb7\xaa\x5e\xc8\xe4\x91\x3e\x79\x58\xba\x94\x84\xe5\x64\xe2\x1c\xf5\x2a\xc2\xe7\xe5\x02\xe7\xe4\x04\xd7\x64\xf4\xe0\x61\xfe\xa8\xf2\xab\xab\xb3\x55\xfa\xc7\xff\x43\x08\xa9\xe0\xa0\x4a\xde\x19\xb2\x05\xa0\xdb\x9a\x8c\x4e\x5c\x2e\x00\xc8\x97\x6e\x2b\xef\x43\xb5\x32\xa5\x41\x4e\x4f\x70\x8e\xa6\x82\xb3\xcb\x14\xe1\x4d\xf0\x26\x9f\x3c\xc0\xe6\x5b\xa6\xc9\x60\x33\x1e\xa7\x62\xbe\x9d\x8a\xea\xc7\xea\x9a\xf2\xa7\x79\x4d\x53\xb4\x20\x1b\x2c\xe6\xdb\x05\xd9\x20\x0b\x39\x01\xb9\xc9\x29\x67\x70\x58\x5f\x95\xa2\x7a\x99\xd7\x6b\xd2\x66\x3a\x0d\xb3\x4c\x20\x79\x48\x5a\x92\x5b\x56\x2e\x37\xdb\x82\xbe\x52\x92\x8d\x3b\x3b\x66\x28\xfe\xa2\xe2\xa9\x80\xfc\x86\x9b\x37\xf9\xa5\x36\x6b\x75\x39\x6a\xd6\xfd\xba\x51\x70\xde\x5a\xb5\x72\xa4\x51\x5a\xe9\x99\xe1\xaa\xe9\xb6\x02\x4d\x64\xb0\x34\xb8\x68\xdf\xe5\x3c\xbf\x8c\xa1\x84\xa3\x8f\x5e\x58\xb7\x5a\xb7\xd2\x02\xe2\x2d\xd0\x6c\xb9\x91\x2a\x85\x32\xab\xe1\x7f\xa3\xec\x63\xb0\xf1\xa5\xd9\x73\xf6\xa8\x7e\xc8\x26\x13\x54\x29\x52\xcd\xd1\x2c\x57\xaa\xca\x39\x5b\xa0\x8c\xa6\x7c\x92\xcc\x93\x49\xda\x51\x90\xcb\xf7\x33\x96\x25\x09\x9a\x24\x8b\x44\x35\xb7\xba\xc0\x6e\x74\x49\x32\x57\x03\x0c\x15\x4a\x2f\xe4\x5d\xd0\xa9\xc6\x2a\x2a\x4b\xa8\x25\x4f\x8f\x1a\x33\xe7\xed\x90\x95\xc3\x12\x99\xd9\x6c\xf5\x27\xb7\xe6\x93\x7a\xca\x6e\x02\x77\x59\x39\x54\xc5\x98\xb3\x05\xc4\x46\xab\xbf\x20\x8f\x98\x97\xe6\xd3\x7e\x7f\xab\xbf\x6a\x71\x32\x4d\x12\x4c\x91\xbe\x8f\xc6\x09\x72\x15\x8c\xfe\xf7\x77\x27\xf7\x2f\x70\x32\x91\x77\x94\x5e\xa9\x92\x3d\x5d\x68\x12\x4e\xce\xcf\x69\xfd\x5a\x45\x0c\xe2\x5b\xf8\x6a\x5b\xe6\x8d\xc9\xa9\xfa\x7f\x5f\x4c\x5d\x84\xf9\x12\x7d\x31\xf4\xae\x1f\x57\x92\x3b\x54\x31\xf3\x3c\xb2\xcd\x55\xaa\x47\x53\x1e\x05\xa9\x11\xb2\x4f\xed\x61\xca\x92\x7b\x46\xe0\xc5\x4e\xda\x53\x59\x1c\xb4\x20\xa7\x7e\x80\xfc\xe5\xfd\xe9\x37\xbc\xa0\x25\xe5\xb9\xa0\xaf\x8a\x17\x15\xf7\x5f\xd8\x43\x12\x67\xc8\xbc\x53\x04\x6c\xa4\x2f\x0b\xa9\x01\x7c\x31\x47\x3d\xf1\xe5\x17\x93\x84\x22\xdf\xd0\x7a\x49\x15\x63\xfe\xf7\x2d\xad\x05\x64\xf2\x30\xc2\x9f\x9e\x23\xaf\xb6\x57\xaa\x5b\xdd\xc7\xe4\x9a\x89\xcd\xc5\xa2\xc1\xf5\xba\xda\x6e\x8a\xf7\x74\x53\xe5\x31\x7e\xdf\x96\xf1\x7f\x10\x36\xed\xe3\xee\x47\x26\xba\xc5\x34\x7f\x92\x2f\x3f\xc9\x49\x95\x47\x7c\xe3\xa4\xaf\x53\xef\xd7\x4e\x14\x6f\x64\x30\x43\x1c\x40\x51\x9d\xaa\xca\xd7\xa3\xf8\xcd\x6a\x51\x71\xea\xf4\x2d\x8b\x56\x0e\xbc\x78\x01\x38\x5d\xa0\xcd\xd2\x77\x55\x48\x3f\x79\xac\x3e\x39\xb4\xc5\xc7\x87\xab\x9c\x6d\x68\x91\xe8\x3a\x61\xac\xd6\x2d\x80\x1b\x90\xb7\x98\xcf\x0e\xc3\x43\x5d\xf8\x59\x55\x98\x1e\x70\x93\x3c\x45\x15\x3e\xd0\x05\x10\x74\xd1\x31\xad\x9a\x62\x55\x49\xb8\xff\x4b\xbd\x5e\xb1\x0d\x85\xa2\x84\xdc\xfe\xa9\x5e\x6c\x58\x49\xdf\x80\x87\x08\xe1\xde\x0f\xf5\xf2\x92\xd6\x75\x7e\x21\x3b\xe9\xbf\xb0\xcb\xd5\xa0\x92\x89\xe8\x07\x66\x80\xd2\xeb\x2c\xc5\x53\xc2\xe1\x3f\xbd\x60\x80\x7d\x4d\xe8\x6e\x37\xbf\x15\x4c\x6c\x68\x66\x61\xf4\x5c\x6d\x4b\x41\x45\xce\x36\x99\x68\x16\xcd\x9d\xa9\x43\x6f\x07\xf5\x59\x79\xe3\x9d\x55\x40\x77\x13\x7c\x4b\x6d\xee\x2c\x79\x80\x2e\x68\xb4\x14\xf5\xb4\xd3\xb3\x39\xfc\x1d\x68\x77\x06\x17\xec\x1d\xbf\xe3\xf5\x54\x2a\xed\x53\xca\x3f\x1b\xec\xa0\xd3\xa7\x55\xb9\xda\xb0\xa5\x30\xbf\xdf\x54\xe2\x85\x3c\x1f\xe6\xf7\x8b\x8a\x7f\x64\x45\x41\x4b\xf3\xe0\xa7\x32\xdf\x8a\x75\xc5\xd9\xff\x50\xdb\xe8\xf1\xc7\x8a\xdb\x11\xce\xd8\x25\xad\xb6\xf6\xe7\xab\xf2\x73\xbe\x61\xb6\x69\x84\xd6\x4a\x31\xc1\x45\xa1\xf4\x84\x68\x2a\x24\x4e\xdd\x69\x98\xdd\x36\x99\x40\x06\x85\x6c\xa2\x6e\xd0\xf1\x74\x0b\x5f\xb5\x72\x54\x00\x07\x41\xbd\x73\xc0\x71\xb9\xdb\x05\x19\x1f\xec\x3d\xdd\x62\x4b\xa9\x57\x19\x1b\x73\x7d\x33\x10\x26\xa5\x36\xde\xb8\xf5\x95\xb8\x7f\x08\xff\x28\xf6\x0d\xa6\x2b\xce\x54\x29\xc7\xc9\xd9\x9a\x0e\x35\xa5\x19\x72\xfa\x0b\x24\x52\x01\xbe\x7c\x59\x5d\x5e\x32\x31\xfc\x48\x97\xb9\x24\x21\x4c\x80\x50\xc3\x14\xc4\x13\x49\xc0\x02\xe8\xe7\x3a\x9b\x7e\x67\x50\x47\x4b\x04\xbb\xa4\xc5\xb0\xda\x0a\xe8\x1d\x6c\x65\xad\x95\xa2\x7b\x7a\xcb\xaf\xe7\x12\x17\xa8\xfa\xba\x87\x17\x5b\x5d\x11\x6b\x4f\x6f\x06\xf2\x98\x45\x2e\x18\xa1\x8b\x6d\x4a\x37\xbb\x3c\x30\xd0\xca\xa0\x2d\x8c\xd2\x42\xe2\xa5\xb6\x81\x76\x86\x58\xca\x3b\x62\x18\x08\x4f\x9c\xaa\x7a\x96\x30\x4e\x78\x38\x56\xba\xec\xdc\x9e\x99\x28\xd2\x3c\x2c\xb6\x20\x63\xe6\xc3\xa5\x3e\x6d\x30\x5a\x78\xf4\x4c\xd2\xfe\x3b\x8c\x56\xc3\x49\x1e\x9a\xfc\x88\xe1\xd1\x2e\x0e\x5c\x59\x10\x2c\xd5\x7f\x65\x75\x8d\x04\x7b\x79\xb3\x03\xb6\x81\x6f\x47\x76\x03\x6d\xc5\xd1\xa4\x30\xe8\xb5\x97\xdc\x5a\x6e\xee\xa8\x91\xb9\x39\xef\xcd\x41\x2e\xf6\x97\xba\x2a\xef\xe5\x57\xec\x30\xc8\x39\xad\x45\xc4\xfc\x72\x60\x7f\xda\x3b\x20\x29\xdc\x6f\xc0\x18\x33\x62\x6d\x3a\x7b\xb9\x62\xb7\xdc\xfc\x97\xfc\xcb\x5b\x60\x1a\xea\x8e\x76\xcf\x92\x73\x65\xde\xb9\x6d\x24\x15\xd4\x05\xfb\xc1\x21\x27\xf8\xb5\xdb\x05\x86\xb5\xcf\x65\x31\xcd\xaf\x98\xb2\xf0\xe9\x9b\x44\xe9\x09\x21\x27\xb3\xfe\x86\xab\xff\xb9\x56\x8a\x87\xe9\xe3\xe5\x92\x5e\x09\xd2\x7e\xb0\x6f\x74\x5c\x36\x3d\x7c\xf2\x03\xc7\x27\x47\x64\x73\x05\x30\x48\x53\x65\x55\x97\x4e\xf4\x06\xab\x91\x33\xb2\x38\x39\x0b\x52\xd9\xfd\x92\x7f\x49\x19\x4e\x7e\x78\x7e\x96\xe0\x5b\xb9\xe7\xd9\xed\x8a\x6d\x04\xe5\xd9\x2d\x2b\x32\xae\x85\x30\x9c\x80\xa9\xfa\x4e\x8a\xc1\x22\xaf\xd7\x94\x07\x9a\xc1\xf4\x04\x7b\xba\x41\xa4\xb4\xd2\xfb\xd4\xba\x6a\x69\xe9\x09\x2e\x23\x7a\x02\xdd\xc8\xd8\x25\xe2\x6b\x9f\xb2\x02\x73\x1c\x5a\x62\x22\x20\xa8\x70\xf2\xee\xf1\xd9\xd3\x97\x06\x08\xac\x41\x21\x6f\xce\x0e\x1c\x3c\x75\x9c\x0e\x1c\xba\xaf\xa3\x7e\x54\x67\xc5\xff\xf6\x27\x0f\xd4\x68\xfa\xd4\x90\x75\xdf\x51\x54\xbb\xfa\xfe\xf4\xe7\x77\x53\xad\xa6\xc5\x15\x49\x6c\x3a\x73\xa7\x29\xfc\x05\xb4\x2c\x38\x8f\xbe\x2c\x25\x9c\x1d\x07\x56\x87\xf8\x5b\x81\x0a\xb7\x22\x74\xaa\x2a\x16\x18\x35\x9e\x2e\x6c\xb8\xad\xb1\x3d\x48\xb0\xe9\x5a\xbb\x9b\x5b\x1a\xc9\xa6\x8a\x67\x49\x73\x57\x52\x66\x3c\xae\x5a\x82\xca\xcc\x36\xab\x50\x56\x79\x31\xaa\x7a\x36\xc6\xbb\x4e\x95\x43\x01\xc0\x9f\xad\x79\x75\x5d\xfa\xda\x63\xa5\x37\xae\x48\xd0\xc0\x6a\x49\x12\xa1\xd8\x99\x84\x10\x5d\xc7\xf8\x14\x16\x80\x2a\x48\x0b\x56\x06\xec\x8e\xeb\x05\x0c\x4d\xbb\x0f\x78\x00\x41\x91\x1f\x3d\x42\xcc\x02\x41\xb5\x1a\x1a\x33\x42\xa7\x5b\xbe\xc1\x12\x8a\xde\xcc\x70\xae\xca\xcc\x49\x20\xd6\xe4\x80\xf4\x92\x26\x9a\xe8\x68\x36\x20\x1b\x26\x13\x0e\x25\x76\x18\xfc\x9b\x56\xbb\x5d\x92\x20\xab\x8c\x54\xe3\x66\x79\x63\x35\x68\x6a\x91\x8e\x27\x4b\x6b\xd4\x40\x18\xb4\x5a\x6b\xcf\x36\x9b\x35\x62\xe6\xb6\x79\xb7\x0b\x20\x1c\xec\x7a\x45\x72\xbb\xcd\x5e\xd0\xb0\x57\x56\x41\xcf\xcc\xe8\xf3\xb1\x83\x6a\x46\x3d\x10\x63\xfd\xb9\x0c\xea\xc9\xaa\xbf\x7d\xce\x7e\x79\xec\x90\xea\xd9\x19\xfd\x22\xec\x90\x8a\xdc\x45\xb4\xd2\x48\xd5\x0a\x79\xbc\xd9\xb4\x5e\xa4\xc8\xff\xf6\xca\x73\xfa\x6d\x3c\x5b\x2b\x9d\xae\x2a\xfe\x3c\x5f\xae\x7d\x77\x35\xcf\x8a\x35\xe7\x0b\x42\x1b\xe4\xe7\xd3\x5f\x7b\x0e\xb4\x4b\x0e\x75\x1c\x59\xbe\xa9\x49\x52\xe7\x97\xf4\x5e\xc5\xd9\x85\xe4\x73\x28\xd4\xea\x84\xbc\x98\xf2\x42\x00\xd3\x92\x42\xae\xdd\x4e\x99\x3d\xbc\x47\x30\x9a\x26\x3a\x9f\xe8\x4d\x9d\xea\xde\x46\x19\x6d\x12\x60\x4a\x9c\x74\x41\xf3\x33\x15\x34\x9f\x8c\x93\x2c\x99\x25\x03\x78\x3b\x21\x49\x32\x29\x27\x00\xae\x98\xc6\x16\x99\xa1\x75\xb2\x59\x3a\xfd\x58\x15\x37\xca\xdc\xa3\xd4\xe0\x6c\x75\x63\xda\x58\x38\x35\x8a\xd3\xed\x30\x12\x2d\x3e\x0d\x47\x19\x0b\x45\xce\x57\x79\x2d\x3e\x56\x95\xc8\x14\x09\x5c\x56\x97\x57\x5b\x41\x8b\xb4\xcb\xa2\x59\x6b\xdf\xdb\xeb\x92\x72\x90\xf6\xd0\x74\x53\x55\x9f\xb6\x57\x69\x22\x39\x68\xb6\xa4\x99\x19\x0e\xd2\xfa\x6f\x6b\xfa\x42\x92\xdf\x3d\x63\x2b\x23\x4e\x74\x68\x29\x30\x6c\x3e\xd3\xf7\xe0\x38\xa6\x18\xf7\x34\x91\x7c\x3f\xbb\xc8\x68\xf9\x99\xf1\xaa\xd4\x29\xc7\xb5\xaa\x69\x94\x02\xe2\xc0\x60\xcf\xdf\xfc\x3c\x1e\x43\x81\x7c\xf7\x60\x7a\xfe\xa7\xff\xf8\xe9\xf9\xfb\xbf\x9e\xbf\x7a\x73\xf6\xfc\x87\xf7\x8f\xcf\x5e\xbd\x7d\x83\x76\xbb\x51\x3e\x1e\x8f\xaa\x06\xe1\xba\xe2\xc2\xdb\x92\xc8\xe5\x1f\xa0\x02\xc2\x9c\x18\x5d\x1a\xa8\xce\x1f\x7d\xe7\x8a\xde\xbb\xf4\x06\xb7\x0d\x96\xac\x9e\x1c\x3c\x95\x17\x39\x14\x7d\x7a\x58\x4d\x26\xa8\x9c\xb3\x79\xb5\x58\x10\xaa\xfe\xb7\xd4\x65\x3f\x87\x14\x65\x23\xee\xc4\x23\x19\x16\x21\xe0\x2a\x94\x9b\x4b\x79\x90\x75\xaa\x24\x8b\xb4\x8a\x78\x0f\xc4\x27\x61\x86\xdd\xcb\xc1\x28\xbf\x7b\x6c\x1d\x76\x90\x67\xca\x95\x64\x93\x95\x4b\x4a\xb8\xd6\x52\x19\x5e\xc6\x9b\x93\xe4\x64\xb4\x5e\x38\xc6\x5d\x95\x07\x3f\x2d\xff\xd1\x1e\x40\x1e\xa3\xab\x74\x79\x21\x52\x38\x2f\x90\xd6\x8b\x94\x23\x7f\x82\x65\x30\x41\x6e\x27\xb8\x87\x09\xbc\xcb\x34\xf5\x16\xfe\x76\x93\xfd\x07\xf2\xe2\xac\xa8\x33\xde\x98\x8f\xc6\xfd\x36\xbc\xef\x4a\x6e\xb7\x22\xde\x07\x2d\xb2\xb4\x7d\x77\xb4\xa2\xd3\x4e\xb2\xc2\x0c\x0b\x1c\xb8\x56\x05\x60\xe0\x6a\x5e\x7a\x22\x7d\x2e\x20\xdf\x7a\x2a\xce\x5d\xab\x67\x32\xcb\x3e\x7f\x92\x63\x36\xc3\x1c\xad\xc0\xbb\x4b\x9e\xc6\xf0\x26\x0a\x05\x8e\x1e\x2a\xf0\xee\xed\x69\x48\x06\xfa\xe5\x9a\xd2\x93\x6b\xfa\x3f\x83\xa5\x98\x5a\x91\x52\xc2\x31\xdf\xb3\x88\x4a\xae\xe0\x90\x78\x93\xe3\xe4\xdd\x4f\x21\x49\x28\xf6\xf9\xc3\x68\x85\xe9\x94\x15\xdd\xb1\xf6\xc0\x53\x4a\x5a\x81\xeb\x1a\xc2\xc9\xb3\xe7\x3f\x3e\x3f\x7b\x2e\xf7\xea\x5c\xde\xd5\x57\xaf\x9e\xbd\xe0\xd5\x65\xaf\x07\x1a\xde\xb7\x61\x80\x54\x02\x69\x9b\x3c\x78\x85\x55\x84\xcd\x99\xf3\xb3\x06\x66\xd7\xcd\xba\xa0\x1d\x47\xb3\x0a\x11\x42\xf2\x59\xd0\x8b\x24\x49\x96\x72\x52\xe1\x92\x24\x33\x56\x90\x64\x92\xe3\x98\x2b\x84\x96\x6c\x9d\x71\x95\x96\x45\xfd\x17\x26\xd6\xb3\x7b\x0f\x46\x84\xb8\xdc\x40\x25\x36\x7e\x02\xf7\x8c\x69\x14\x65\xdc\x36\x4f\x4b\x48\x5a\x15\xce\x21\xb4\xf7\xdb\xa0\x19\x57\xcb\x1e\xa1\x96\x97\xce\x65\xfe\xe5\xa7\xf7\x3f\xfe\xa8\xea\xe2\x7e\x77\xf2\x87\xff\x73\xa4\xfd\x4c\xc9\x0d\x90\x8f\x3a\xbf\xc2\x8a\xb4\x1a\xb8\xfb\x63\x0e\x44\x97\xd1\x14\xae\xa6\x64\x6b\x3f\x75\xf0\x13\x38\xa2\x30\xb4\xdb\x49\xd4\x16\x29\xc3\xf3\x05\xc2\xca\x11\x8a\x21\xe5\x6d\x24\x90\x76\x19\xa8\x7c\xcf\xa4\xc8\xb7\x24\x2a\x06\x3f\x5d\xf8\xd3\x09\xce\xe3\x53\x98\x9f\x2c\x90\x94\x73\xe6\x8e\x69\x88\x2c\xc3\xf9\xea\x77\x5d\x11\xe9\x94\x15\x86\x8b\x9d\xb0\x81\xd9\x80\x49\x35\x11\xdf\x83\x0a\x49\x7e\xbd\x56\x4b\x99\x2f\x10\xc2\xd5\x84\x08\xad\x19\x72\xb9\xf2\x07\xf5\xbc\x5c\x68\x77\x47\xc9\xef\xd5\x0d\x4a\x05\x66\x38\x19\xb3\xa2\xfe\xdf\x7f\x7c\xf2\xbf\xff\xf8\x8c\x24\xd6\x71\x23\x36\x41\x23\xdf\xb8\x41\x24\x45\x68\x70\x28\x3a\xb5\x29\x30\x53\x31\x4f\xca\x48\x77\xba\x5d\x2e\x69\xad\x65\x6d\x1b\xbb\xc6\x07\xae\x85\x56\xdd\xb7\x5a\x28\x21\xce\x57\xeb\xa7\x5c\x5b\x7a\xcc\xce\x29\xe3\x59\xc5\x2f\x81\x78\x41\x1b\x2b\xcd\x69\xc5\x8c\x26\x5b\xc6\xf0\x5c\x3c\x03\x19\x93\x16\xaf\x95\x35\xc5\x4e\x78\xa0\x1d\x9a\xa9\x72\x68\x1e\xfe\xe1\xe4\x41\x16\x4c\xa4\xa3\x9f\x4f\x2b\x9c\x2b\x57\xd9\xe1\x1f\x4e\xfe\x3d\x6c\x1c\xaa\xe1\x83\x96\x7f\x08\x5b\x06\x8a\xf6\xa0\xe1\xff\x2f\x6c\x18\xe8\xd0\x55\x43\xe3\x6d\x2b\x25\xaa\xef\xc9\x1f\x4f\x4e\x42\xd0\x79\x3a\x72\x68\xdf\x04\x6f\x75\x67\xf5\x06\xdb\x6d\xea\x73\x4b\xa4\xdf\x93\xef\x4e\x4e\xc6\x63\xfa\xe8\xdf\x4f\x4e\x76\xbb\x7f\x3f\xf9\x83\x64\xdd\x65\x47\xbd\x43\x7d\x1d\xff\xf0\xdd\x77\xaa\xa5\x24\xdc\xd1\x4b\x48\xed\x23\xce\x3b\xee\x8a\x46\x3c\x49\x10\x5e\x91\xdb\x2d\xdf\x64\x14\x2b\xb9\x2f\x13\x0d\x5e\x93\x6a\xea\x69\x5c\x5b\x17\x63\x3e\x53\x0a\x52\x50\x2f\x69\x16\x3d\x5d\xb7\xdd\xf7\x68\x4b\x78\x02\x05\xd3\x3a\xaf\xd7\xe9\xad\xf1\x9e\xcb\x28\xbe\xca\x6f\x36\x55\x5e\x28\x59\x3a\xe6\x32\x28\xaf\xcb\x15\x9c\x8d\xee\xf8\x26\x1c\xc7\x8c\x87\x39\xa1\x53\x3d\xa2\xf2\x9a\xab\x3e\xa1\xb6\x19\xb0\xc5\xc8\x6c\x52\xc7\x47\xea\x85\x62\x86\x9a\xb4\xc2\x1c\x0b\xbc\x42\x03\xe5\x19\xd7\x1f\xa8\xe9\x0f\x50\xf9\x0a\x0d\x52\x62\xa5\x77\x62\xb8\xb2\x03\x2a\x9f\x0e\xd4\x20\x08\xdf\x65\xad\x80\xb4\xf5\xb4\x56\xa8\x42\x02\xaa\x68\x27\xdb\xb7\x88\x65\xef\x22\xe4\x5f\x2b\x34\x50\x5b\xc0\xb7\xda\xe1\x1a\x66\x01\x35\x97\xf0\x5a\x4d\xd9\x1f\xfa\xa8\x0f\x0a\x34\x08\xd4\x37\x84\x0f\x4c\xe0\x2a\xa8\x44\x42\x8a\x21\xec\x1e\x9d\x41\xb5\x0a\x3d\x57\x09\x9f\xca\xce\x95\xf6\xcf\x55\xc0\x5c\xab\xe9\x39\xb0\x28\x6b\xd4\xe0\xe4\xd9\x69\x36\x7c\xff\xfc\xf4\x4c\x2b\xba\xfe\x97\x7c\x33\x4c\x26\x62\x92\x0c\x45\x35\x4c\x26\x54\xb2\x24\xf2\xa1\xc6\xd0\x40\xa4\x55\xaa\x4c\xc5\xf0\x40\xc3\xb2\xaf\x25\x54\x56\xef\xba\x47\x42\xfb\x61\x51\xd1\x1a\x2c\x7d\x35\xa5\x97\xda\x01\x54\x6b\x46\x87\xac\x1c\xde\x54\x5b\x3e\xcc\xaf\xae\x9c\x5f\x64\xf5\x99\x72\xce\x0a\xb0\xb2\x7e\x66\xf9\xf0\x6f\x79\x51\xbc\xe5\x6f\xf5\xd3\xd3\xbc\x2c\x3e\x56\x5f\x7e\x00\x67\xca\xfa\x6f\x72\x08\xb1\xa6\x43\xa3\x57\xd0\xa6\xba\x59\x82\x06\xa5\x9b\xb9\x7f\x0a\x23\x62\x3b\x1c\x2c\xe5\xe3\xa9\x5d\x49\xad\x1f\x64\xaa\xf4\x89\xd4\xe0\xf8\x3f\xc1\xfb\x53\x6f\x51\x30\xef\x7e\x52\x15\xa3\x3b\x14\x65\xed\x0e\x06\x5e\x53\x56\xbf\xc8\x6b\xf1\x04\x54\x32\xba\xaf\xbf\xcf\xb2\xaf\x7a\x1a\x3e\x6c\xf6\x5a\x9b\x8c\x13\x4c\x5e\xd7\xec\xa2\x4c\x5b\xb4\x13\x22\xb1\x24\x09\xd5\xc6\xf7\xae\xa3\xb8\xd6\x1e\x2a\x37\x71\x1b\xa4\x54\xce\xb8\x51\x4f\xb6\xc6\x6f\xb0\x7d\x83\x4b\xc9\x65\xea\x1f\xbb\x5d\xea\xba\x28\x9b\x97\xe4\xfe\xc7\x63\x90\x9d\x80\x5d\x05\x8f\x80\x5b\x53\xf5\xa2\xdf\x06\xf6\x4b\x5d\x95\x0f\x87\xcb\xb5\x3c\xb7\x82\x6c\xc5\xea\xde\xff\x49\x06\x76\xf0\x79\xa2\x7b\xde\x83\x24\x43\x0b\xc2\xf4\x6d\x97\x76\xdd\xe3\xbd\xbd\x5a\x6b\xc1\x0f\xb5\xb8\x53\xa5\xc7\x53\x81\xf2\xca\x2c\xe6\x2a\x85\x08\xad\xa2\x74\x8b\xa0\xae\xe0\x85\x7c\xd1\xa3\x14\x34\x43\x68\x7b\xdf\xc1\xc5\x39\x2d\xe2\xf4\x23\x5d\x55\x9c\x9e\xd2\xb2\x20\x3e\x13\x1c\x2a\x3e\x8d\xe2\xb8\xcb\xc7\xf9\x39\x2a\x6a\x2a\x34\x12\x29\x75\x6f\xca\xb1\xed\x3a\xe7\x0b\x04\x5e\xdf\x8d\x01\x0b\x92\x87\x8f\x38\xfc\x93\xfc\x2d\x97\xcf\x10\xe6\xfa\x58\x84\x52\x14\xd0\xa2\xa3\x70\x3d\xb4\xd7\x45\x1a\x73\x35\x4d\x25\xe9\x2c\xab\x0d\x04\xc4\x1d\x6c\xad\x62\x1f\xa0\xd0\x66\x18\xc2\x60\x4a\x1d\x4a\xea\x4b\x75\xd8\xfc\x5a\x88\xab\xba\x15\xd1\x80\x04\xbf\xb1\xe0\x9a\x24\xf7\xef\x43\x30\x83\xd6\xfa\x97\xe8\xb6\x43\x86\xfe\x5a\x6d\x87\x39\xa7\xc3\x6d\xcd\xca\x0b\xc5\x47\x0c\x9f\xe5\x22\x1f\x5e\x33\xb1\x1e\x96\xd5\x50\x4e\xa9\x4b\x71\xd5\x8d\x30\x1d\x82\xab\xfe\x35\xdb\x6c\x86\xb9\x10\xf4\xf2\x4a\x48\xa2\xb4\xad\x29\x10\x24\xe8\x5a\xad\xe0\x6f\x03\xba\xa1\x5e\x2a\x1e\x5e\xaf\xd9\x72\x3d\x64\x8a\xba\x2b\xc5\xeb\x96\xd3\x62\xb8\xd2\xa4\x4f\x97\xc9\xf3\x46\x81\xa8\x00\x05\xa8\xe1\xbb\x0d\x95\x8c\x66\x4d\x85\xfd\xd4\x5f\xd6\x4c\xd0\x0d\xab\x85\x4d\x2e\x0c\x63\x99\x39\x7b\x4a\xdd\xe9\x2f\xf5\xd4\xcd\x08\x20\x91\x0d\x93\x49\x69\xbc\x94\x9c\x7b\x37\x6d\x70\xf7\xae\x8d\x05\x2c\x83\xf5\x4d\xf8\x01\x14\xd4\x18\x5b\x38\xba\xf5\xbc\xc5\xe3\x0c\x7f\x1f\xff\xc9\x63\x49\x40\xc6\x63\x23\x4a\xcc\xcc\x1f\xd9\xdc\xd8\x56\x92\x64\x42\xb1\xb6\x50\x9d\xad\xe9\xf0\x63\xbe\xfc\x44\xcb\x42\xc7\x53\x14\xb4\x50\x3b\x9b\x97\xda\x1f\xc5\xd8\xad\x92\x64\xc2\x9b\x45\x83\xfb\x64\x8d\x3e\x3d\x15\xae\x88\x68\xd3\xaf\xdd\x2e\x79\x7e\x79\x25\x6e\x86\x4f\xf5\x63\x49\x33\x12\xeb\x8c\x4e\xbc\xda\xee\x84\x90\x4a\xae\x47\x89\x71\xdf\x7f\xf7\xc7\x93\x59\x32\x7f\x7b\xc9\x84\xa0\xc5\x50\x09\xd1\x37\xc3\x97\x67\xaf\x7f\x5c\x24\x19\xc7\xf3\xc4\xc3\x50\x63\x67\x4b\x26\x69\xa9\x2d\x2a\x60\x61\x2b\xe1\x88\x4f\x92\xa1\xfa\x1e\x2d\x86\xb9\x64\x56\x70\xf2\x4e\xf1\xad\xc3\x34\x99\x54\x93\x04\x25\x98\x2d\xb4\x32\xe0\x43\x29\x2f\x4a\xa7\x52\x8e\x25\x8d\x69\xa0\xd4\x9f\xb3\x19\x6a\x07\x7e\xe5\x97\x69\x7e\x11\x8e\xdc\x5e\x07\xe6\xef\x43\x7e\x3e\x9f\x29\xaf\x99\xa4\xd5\xff\x20\xef\x69\xf7\x20\xf9\xf7\xe9\x83\xef\xa6\x7f\x48\x7a\x26\xb8\xcc\xcb\x9c\xdf\xdc\x5b\xd1\x5c\x6c\x39\xad\xef\xeb\x6e\xf6\xc1\x3f\x61\xc6\xb7\xa7\x8f\x5f\xbf\xfb\xf1\xf9\xf9\x8b\xe7\x8f\xcf\x7e\x7a\xff\xfc\xfc\xc5\x8f\x8f\x7f\x50\xee\xcf\xef\x9f\x3f\x7d\xfb\xfe\xd9\xf9\xb3\xc7\x67\x8f\xcf\x9f\xbf\x7f\xff\xf6\xfd\x69\xf7\xf9\xe9\xd9\xe3\xb3\xe7\xaa\x44\xdc\x91\x4b\x3e\xe0\x83\x75\x10\x42\x47\x3b\x12\x9b\x73\x9f\x46\x83\xa7\x4f\x6f\x2e\x3f\x56\x9b\xf1\x38\xa9\xe1\x8f\xf6\x8b\x29\x13\x2a\xcb\xc6\x2c\x22\x21\xea\x96\xb4\xc9\x22\x2f\xe9\x78\xbc\xe7\x73\x70\xf3\xd7\x82\x6f\x97\xa2\xe2\x84\x10\xfb\x7c\x64\xfe\x76\xfa\xbc\x99\x99\x5b\x66\x3f\x88\x24\x25\xfc\x8a\xdd\xef\x6c\x19\x09\x9f\xa9\xed\x25\x74\x1a\x41\x06\x42\xa7\xfa\xe7\x69\xe8\xc1\xea\x88\x29\x49\x3d\x1f\x0b\xbb\x66\x20\x2f\x92\xba\x3c\x7f\xf3\xf3\xcc\x6b\x90\xf1\xd4\x7f\x05\x61\xb9\x2a\x8e\x2c\xe8\xe1\xff\xc8\x6e\x9b\xa8\xbb\xec\x28\x1d\x95\xd3\xe7\x6f\x1e\x3f\xf9\xf1\xf9\xf9\xdb\x77\x67\xaf\xde\xbe\x79\xfc\xa3\x99\xfc\xe9\x6e\xa7\x87\xa5\x68\xb7\x53\x06\xd8\xaa\xc3\xad\x5a\x83\x2c\x2e\xed\x32\xc1\x7d\xd2\x2c\xb9\xd2\x5e\xa9\x2c\xad\x62\xd0\x01\x17\xc4\x08\xd0\x8c\xdf\xa9\xec\xd6\x85\xb4\xec\x15\x81\xbf\x71\x37\x6d\x77\x82\x2d\x6b\xf7\x51\xfb\xb8\xed\x39\x76\xa0\xa6\xee\x49\x77\xb0\xc7\x4d\x7f\xef\x61\x8c\x75\x3d\xec\x09\x44\xa7\xb9\x10\x81\xc4\x2e\x5b\xb4\x2f\x62\x3a\x4b\x4b\x42\x31\xd5\x28\x86\xb2\x92\x94\xbb\xdd\x6d\xa3\xbd\x7e\x6e\x41\x50\xa1\x98\xd5\x8f\x85\xe0\xec\xe3\x56\x80\x87\xe2\x27\x56\x16\x59\x92\x9b\x47\x09\xae\xb4\x18\x54\x5a\x0f\x85\x96\x41\xfb\x36\x70\x6a\xb4\x57\x90\x62\x6c\x21\x5d\x61\x99\x6f\x5e\x4b\xe0\xb5\x83\xb0\x42\xaf\x86\x29\x07\xbd\xb6\xc4\xcf\x17\x95\xa4\x36\xd3\x75\x0e\x73\x4b\x39\x78\x98\x50\x34\x03\xee\xd4\x4e\xf7\x67\x79\x1e\xa5\x0c\x17\xe7\x4e\x22\x34\xc3\xa2\x26\x74\x9d\x85\x3f\xe3\x55\x4c\xb3\xb0\x51\xa3\x78\xe3\x12\x22\x87\xeb\x60\xe1\xda\xff\x82\x47\xd0\x70\x3c\x8e\x40\x63\x7a\xee\x16\x6c\xd6\x95\x52\x34\x22\x44\x04\x36\x51\xc9\x90\x6b\xff\x7d\x29\xf8\xc3\x6f\x0a\x81\xf7\x9c\x5e\x56\x9f\x25\x04\x94\xe9\xec\xfc\x32\xe7\x9f\xb4\xc6\x50\x73\x1f\x8f\xeb\xa7\x1b\x9a\x97\xa9\xbb\xf6\x23\xf3\xa8\xa9\x78\xc6\xb8\xb8\xb1\x80\xd5\xc9\x04\x90\x64\x5b\xf2\x94\x41\xa4\xdd\x47\x63\xa9\x8b\xf9\x28\x61\x36\x88\xa1\x1f\x27\x14\x33\x8b\x7e\x29\x27\x02\x33\x02\x29\x65\x4d\x82\x46\x13\x25\x08\x49\xab\x4a\xa7\x6e\x7e\x6d\x4c\x42\x29\x43\x46\x21\xad\x10\x96\x61\x56\xbf\xa7\x1b\x10\xed\xea\x35\x83\xaa\xc1\x06\x45\x39\xe1\x12\xc1\x35\x0e\xdb\x19\x27\x58\xe5\x4b\xd1\xc6\xc6\xa1\x7c\xf2\x89\xde\xe8\xe2\xb8\x47\x22\xf5\x1e\xf8\x5d\x50\xe1\xb2\x4a\xc4\xf1\xe2\x08\xe8\x7b\x43\x60\x61\x76\x74\xff\x87\xcc\x0e\x41\x52\x27\x79\x5a\x5e\xe7\xe5\x4d\x6b\x7f\xba\xfb\x02\x01\x40\x1e\x5d\xc0\x82\x08\x00\x5b\x67\x5b\x40\xec\x8e\x6f\x0b\x45\x26\x65\xa9\xa1\x23\x66\x13\x44\x64\x83\xd4\x86\xe8\x09\x9a\xed\x78\x99\xd7\x43\xf5\xfb\x1b\x6f\x86\xc9\x0d\x12\xdf\x8a\x83\xd4\x89\xdb\x2d\xb1\x03\xc9\x0d\xe1\xad\xa1\x0d\xf0\xf9\xb7\x0b\x55\x54\x37\xcc\x01\x76\xae\x7d\x0d\x1d\x1f\x22\xf6\x1b\xfa\xd3\xcb\xfb\xe2\x68\x37\x7a\xd9\x78\xaf\xf7\xbc\x77\x72\x8f\x1c\xd2\xf6\xd8\x3b\xae\x45\xc0\x23\x47\xd5\xed\xbf\xa9\xa7\x3f\xa0\x5a\xbf\x9f\xbf\xda\xdd\x7f\x59\x69\xcb\xc5\x7f\x47\x19\xa1\x3d\x93\xf4\x15\x52\x61\x2a\x24\x4b\x5d\xf6\x39\x06\x45\x9d\xf1\xd5\x1b\xfa\x05\x8a\x69\xca\xa1\x8b\x82\x6a\x07\xaf\x5a\x07\x26\xaa\x88\xc4\x8a\x53\x0c\xc5\x78\x24\xa9\x81\xe8\x58\x8f\x3e\xf5\x70\x0f\x76\xa9\x89\x0a\x2c\x80\xa1\xd6\x79\x6d\xdd\x08\xf5\x87\x94\x9a\x18\xf2\x78\x24\x05\xed\xeb\xf5\xcc\xbd\x69\xf7\x53\x8a\x69\x35\x31\xff\x0a\xe6\x46\x39\xed\x2f\x5d\xb2\xdd\x2e\xa0\xb7\x3f\x53\x8b\x71\xf0\xf8\x44\x6f\xac\x31\xb8\xac\xec\xdc\xd5\xc7\x4f\xaf\xe8\x92\xad\x18\x2d\xd2\x12\xa1\x08\x98\x21\x69\x84\xe7\x64\xe3\xaf\xfe\x95\x5d\x81\xf3\x6f\xeb\x87\x4e\x89\x70\x4e\x3c\x26\x22\x2d\x41\x8d\xa8\x6d\x68\xb5\xde\xe3\x0b\x2a\x5e\xe7\x57\x57\xb4\xf8\x33\xbd\x49\x61\xee\x58\xa9\x7f\xd1\xa0\x96\xe0\x94\x4f\x34\x48\xbb\xfb\x38\x1e\xa7\x7a\x9c\xee\x3b\x3d\x18\x9f\xca\x8b\x08\x7b\x5b\x8b\x10\xce\x67\xa9\x98\xd7\x0b\x92\x43\x24\xc1\x54\x5f\x63\xd3\xab\x6a\x73\x73\x59\xf1\xab\x35\x5b\xea\x4f\xda\x5e\xef\xdc\x2b\x95\x06\x49\x99\xd6\x33\x18\x06\xee\x31\xf0\x62\xad\x0c\xd7\x67\x3b\x1a\x14\x0d\xae\x7a\x08\x34\xc4\x7b\x1a\xf5\xec\xad\x0f\x4d\x58\x1e\x32\x2e\x1e\xfb\xe0\xc8\x8e\x81\x23\xfb\x1a\x38\x96\x12\x8e\x6c\x41\xbc\x48\x8e\xb4\x95\x46\x42\x1d\x47\xc5\xb5\x9a\x65\xbe\xa8\x38\x65\x17\xa5\x9c\xa9\x72\x30\x92\x83\xa0\x5f\xbb\x11\x4c\x6f\x84\x3b\x2a\x7d\x29\x91\xbe\xd9\x41\x19\x9a\xde\x7d\xa7\x24\xf0\x57\xfb\xe7\xec\x11\x00\xc6\x72\x8a\x69\x89\xc1\xff\x10\x38\x12\xe5\xbc\x7f\xe8\x14\xcf\x7a\x30\xda\xe3\x94\x2c\xdd\x6a\xc1\xe1\x71\x59\xc8\x4d\x72\x63\x75\x8e\x87\x1e\xe4\x71\xed\xb5\x36\x27\x04\xef\x6f\xb6\xef\xea\x68\x53\x56\x05\x1f\x1f\x30\x10\x59\x61\x80\xa2\xce\xd2\x40\xcc\xcb\x85\xbe\xae\x1e\xa7\x0c\x4d\x2f\xf3\xab\x88\x6b\xc3\x2d\x2b\x32\x0a\x4e\x6b\xc0\x04\x3b\x57\x36\x70\xe9\xec\x85\xd3\xde\x9b\x6e\x0f\x66\x94\xc7\x60\x46\xf9\x75\x98\x51\x2e\xec\xf7\x95\x8a\xdd\x6e\x9e\xb7\xbb\xb0\x13\xbd\x0d\x5a\x9c\xb6\x9f\x65\xc7\x40\x57\x28\x4a\x55\x5a\xd0\x72\x09\xfd\x92\x5e\x0f\x75\xd6\x11\x5b\xc4\x51\x39\x8b\xdb\xc4\x23\xd5\x64\x62\xaa\x04\x96\xf3\x6a\x81\x6b\x92\xf7\x13\x9a\xc1\x21\x42\x93\x63\x81\x6b\x84\xd9\xbc\x5a\x90\xda\x26\x98\x69\x70\x5f\x97\x88\x79\x81\xad\x52\x8f\x51\x55\x1b\xc3\xca\xc2\x9c\x72\xb5\x65\x53\x56\x4a\x5e\x8e\xbe\x00\x07\x2b\x09\x7d\xc7\x91\xf8\x37\x60\x45\x98\x4a\x59\xa0\x5d\xaa\xa0\xc1\x9e\x6c\x3b\xb1\xdd\xad\x30\xd3\x3b\xeb\xb3\x21\x68\x90\x8f\xc7\xca\x67\x73\x58\xce\xf3\x45\xd3\x34\x78\x9d\xd7\x66\x89\x8f\x37\xd7\xf9\x8d\x3e\x93\x11\xb3\x82\xf2\x0a\x15\x82\x3b\x76\xc5\x32\x5f\xe3\x71\x92\x43\x6f\xb9\x78\x31\xa5\x7a\x44\x18\x3e\x4e\x40\xfa\x3e\xd0\x33\x1f\x1d\x65\xb0\x67\x0a\xbb\x1d\x1f\x8f\x13\xa5\x46\xa9\xd5\x1e\xd8\x95\x87\xf3\x78\x75\x68\x0e\xbd\x8b\x4c\x13\x56\xe8\x25\xda\xb1\x77\xbb\x04\x0a\xf8\xf9\xcf\x50\xe7\x83\x21\xc5\xfb\xba\x0f\xdf\xcb\xcb\x02\xcc\x56\xd1\x29\xd8\xb7\xdd\xb9\xf4\xdf\x61\x77\x9a\xc8\x28\x85\x84\x21\xfe\x77\xdd\x56\x23\xb5\xe6\x3e\xde\xf6\x1f\xb1\xdd\x1e\xaa\x37\xd8\xeb\xd6\xf7\x6d\x50\xa6\x41\xbb\x24\x80\xb5\x98\xf7\x25\xbd\x5b\xec\x76\x62\x4e\x17\x92\xf0\xc5\x25\x8d\xbd\x51\x02\x4e\xa9\x40\xf3\xe5\x3a\x38\xaf\x5e\x1a\x89\x0a\xdd\xd2\xbd\x52\x02\x87\xc4\xef\x46\x7e\x85\x4c\x63\xf2\xa8\x8f\xc7\xac\x23\xff\xb8\xcc\xa8\x1c\x97\xb8\x42\x38\xa4\x52\xfd\x1d\xfd\xcc\xa8\xaa\xab\x14\x52\xcb\xee\xba\x0f\x45\x29\x38\x3f\x02\x8e\x13\x29\x36\x4e\xb9\xb7\xee\x7a\x0a\x3e\x5a\xe0\xb7\x91\x18\x1a\xe8\xf2\xac\xb9\xab\x80\xd9\xab\x20\x27\x27\x0f\xf3\x47\xcc\xcf\xb8\xa6\xe4\x06\xbc\x25\x6c\x9e\x2f\xb0\x71\xa3\x70\xd6\x6b\xbb\x45\x1e\xc0\x25\x7f\xb9\x45\x78\x49\x36\xf0\x71\xbc\x22\x1b\x63\x18\x05\x6f\x41\x6e\x7f\x11\xf7\xe7\x6e\x37\x5f\x60\xf7\x53\xf9\xea\x2e\x11\x5e\xa1\xb4\xf6\x9a\x29\xcf\x67\xad\x42\xae\xf1\x0a\x0d\xaa\x79\xbe\x20\x92\x3f\x58\x5a\xfe\x60\x09\x77\x42\xd3\xa8\x84\x0f\x26\x96\x40\xfb\xbb\xd5\xfb\xe0\x85\xd7\x20\x24\xf4\xed\xd8\xb7\xdc\x0a\xd8\x06\x73\x0f\x1d\x01\x51\x86\xe0\x2e\x06\x88\x6e\xa1\x46\xef\xd7\x40\xb4\x46\x78\x8b\xd2\xaa\x0f\xa2\x15\xde\x22\x9d\xfa\xc3\x06\xce\x64\xb5\x05\x6c\xad\x01\x7b\x14\x28\x37\x00\xca\xbd\x0b\xeb\xe3\xcf\xe0\x33\x03\x11\x97\x4d\xd2\xd2\x78\x5c\xd9\x74\x79\x70\x61\xcb\xbb\xbb\xf4\x1c\x8e\xc2\x5b\xbd\x44\x4e\xbd\x9a\x32\xb9\x77\xdb\xcd\x06\x9c\x86\x5b\x64\x06\x94\x26\x2e\x1b\x1f\x8f\xa7\x16\x73\xb9\xbe\x74\x9e\xae\xf0\x81\x3c\xd0\x84\x7b\x29\x17\xfa\x72\x83\x59\x4f\x23\x56\xbf\xa9\xa0\x10\xf4\x78\x3c\x82\x8c\x39\xd3\x7c\xb3\xa9\xae\xdf\xc8\x59\x1a\x9f\x67\xaf\x54\x8a\x56\x1c\x9b\x52\x10\x1f\xab\x6a\x43\xf3\x12\x68\xf5\x8c\x7a\x15\x6c\x09\x9f\xdd\xff\xef\x54\xf0\x2d\xdd\x89\xdd\x03\xf4\xbb\xfb\xcc\xf8\x08\x79\x45\xc1\x08\x1f\x8f\x1f\x28\x07\xe7\x03\x39\xcc\x0e\xce\x55\x15\x16\x78\xa2\xa6\xa3\xd4\xb7\x98\x1d\x84\x84\xbd\x3a\xcc\xb2\x24\xd3\xe7\xd6\x20\x7c\x77\x0b\x1d\xff\x3a\xb1\xf7\x8a\x0a\x19\x19\x8f\x4d\x2a\xf1\x7b\x7f\x84\x65\xa7\x7c\x42\xfe\x1d\x4b\x32\xf7\x4c\x25\x02\x32\xd5\x83\x38\x9a\x24\x59\x32\x31\x0f\x38\x42\xca\x47\x58\x35\x33\x16\x1c\x0f\x3a\x62\xe6\xbd\xce\x54\x86\x73\x3a\xd3\x1b\x1d\x85\x98\x33\xa9\xfb\xf1\xee\x72\x84\xf1\x78\xc4\xea\x37\xf9\x1b\x48\x3b\x3b\x15\xd5\xab\xd3\xb7\xea\x2a\x4c\x91\xf1\x45\x18\xf8\xd9\x90\xdc\x48\x50\x11\x8b\x8e\x08\x79\x70\xff\x44\xfd\x71\xef\xc1\xfd\x93\x46\xb1\xea\x47\x02\xd8\xa0\x0b\x84\x1f\x2b\x23\xb3\x5c\x0a\xec\x59\x95\x0a\xa2\xf2\x7e\xa5\x14\xa1\x99\xd8\xbb\xbc\xaf\x1c\xad\x91\x34\xec\xf0\x5c\xe3\xc8\xa6\x06\xd6\xd0\x52\x36\x87\xaf\xef\xac\x72\xe9\x2a\x34\x3d\xe3\x79\x59\xaf\x2a\x7e\x49\x4a\x4c\xa7\x72\x97\xdc\x13\x86\x55\x68\x6f\x9b\x40\x80\x07\xa5\x5a\xa0\x6b\x9c\x63\xaa\x19\x1b\xf7\xac\xc6\x74\xea\x7e\x71\xac\x89\xd5\xcb\xdc\x99\x83\xdf\x06\xf2\x85\x94\x3b\x80\x9f\x25\xbd\xab\x02\xcb\x24\x76\xc6\xe3\x3a\x41\x2a\x6d\x2d\xb0\xa8\x68\xb7\x0b\x9a\x05\x94\xf9\xc9\x8d\x1c\x3f\x6c\xff\xcd\xec\x2a\x9e\xd6\xfa\x80\x71\xc5\x6b\xe9\xfe\xdc\xef\x20\xf3\xed\x8c\x28\x77\x33\x25\x88\xc3\x49\x83\xbc\xd5\xc4\xf3\x06\xed\x4f\x0e\xd4\xea\xfe\x75\xbe\x0a\xdf\x2a\x5f\x10\xef\xe4\x0b\x72\x57\xf8\xb3\x6a\x09\xd6\x7a\x55\x5e\xa5\xed\x31\xeb\x39\xd5\x28\xfc\x93\xd8\xf5\x76\x65\x5c\x87\x91\x76\x2c\x6e\xf1\x3b\xef\x75\xc6\x2e\x5d\xb2\xc5\x24\x1f\x88\xe7\x4a\x35\x43\x59\x3e\x56\x78\x7c\xac\x7a\x69\x99\x59\x4e\x4e\x1e\xf2\x47\xc1\xc3\x87\xdc\x70\xb4\x25\x51\x2f\xe6\x7c\x31\x80\x34\x0f\xfb\x67\x55\xa2\xc6\xcc\xbe\x89\x4c\xca\xb2\x52\x6e\x62\x9e\xae\x45\x6b\x58\x5c\xb3\x88\xaa\xc5\xbd\x54\x3a\x97\xfd\xd3\xc9\xd1\xc0\xa4\xaf\xb6\x99\xc7\x6b\x39\x45\xcb\x05\x32\xcf\x73\xd5\x1f\xc6\x51\x82\x67\xb9\xc8\x23\xfb\x68\xb9\x27\x48\x84\xa7\x22\x19\x8d\x36\xe4\x05\xaf\x2e\xb5\xf3\x24\x68\x77\x14\x13\x86\x5b\x9f\xf0\x67\x1a\xb9\x33\xd8\x2a\x15\xc7\x8d\x9b\xf4\x34\x48\xf0\xc8\xd3\xdd\x9c\x4b\x61\xcd\xb0\x7f\x22\x5a\x56\xce\x35\xbe\x74\x0d\xc3\x90\xf6\x98\x1a\xc8\x67\x18\x39\xa6\x08\x10\xa0\xc1\x12\xda\x7a\x32\x7b\x2c\xde\x3d\x67\x46\x7e\x98\x9a\xbc\xf1\x2d\xb8\x45\xa3\x10\x4b\x08\x6a\x0a\x0d\xf1\x7d\x63\x73\xe4\xf9\x15\x7b\x15\x11\xba\x63\x9b\x94\x18\x9e\x8a\x5d\x0b\x00\x2a\x8a\xcd\x7a\xe5\xb8\x24\x20\x58\xcb\x44\xf6\xd6\xaa\x7b\x57\x8f\x4b\x2f\xcd\x8a\x32\x43\xab\x1e\xaa\x02\xe0\x72\xed\x74\xc4\x6d\xfc\x60\x4a\xed\xda\xb2\xd0\xb5\x14\x6d\x36\x96\xc3\x1f\x7b\xce\x16\x52\x34\x98\xd3\x45\xfb\xb1\x96\xae\xf5\xfc\x7b\xc4\x8f\x63\x28\x98\x0b\x8e\xe8\x1c\xcf\xd8\xb9\xb2\xd4\x0a\xff\xd3\x88\x58\x74\x5a\x3e\x31\xeb\x6c\xaf\xdf\xe7\xe8\x1d\x0e\x38\x0c\xb3\xc9\x71\x1d\x0c\x75\xf1\x7c\x3c\xa6\x5c\xa5\x3d\xca\x55\x3f\x84\xa7\xf5\xc1\x79\xb5\x30\x64\xb4\xfb\x66\x00\x18\x01\x2c\x67\x7b\x79\x69\x0e\xd2\x89\xa7\x78\x69\x65\x63\x6b\x3b\x14\xf5\x11\x2c\x25\xae\xa2\x06\xf7\x34\x88\x10\xd8\xf4\x04\x8b\x69\xcd\xca\x8b\xed\x26\xe7\x90\xc2\x0d\x72\xb3\x75\x1d\x80\x50\x0a\x25\x19\xaf\xec\x60\x72\x68\xfb\xb6\x6f\x64\x2f\x35\x1c\xf5\x89\x42\x6b\x71\xe1\xd9\x0c\x03\x91\x7f\x92\xb3\x7b\x46\x97\x9b\x9c\xd3\xe2\x75\x7e\x75\x05\x8c\x33\xf6\xbb\x20\xdc\xd9\xfa\x23\xc7\x08\x7a\x59\x07\x27\x56\x28\x83\x96\xde\x8d\x57\x85\xf6\xd0\x82\x40\x2f\xdf\x05\xc1\x18\x21\x11\x76\x93\x09\xba\x3a\x22\xa5\x7d\x8a\x02\xac\xf6\x5b\x06\xf8\xae\xfc\xf1\xc2\x4c\x0d\x92\x2a\x5a\xfe\x5d\xb6\xe0\x01\x04\x4c\x36\x13\xe3\xf1\xe0\x7c\x3c\xf7\xc8\xcf\x91\xc4\x7e\x77\xf0\x98\xd8\x37\x48\x9f\xf8\xee\x5f\x4d\x47\x90\x7b\xee\x5d\xff\x3d\xa8\x97\x7a\x46\x38\x1f\x0c\x76\x06\x71\x48\xf8\x4a\xb3\x52\xa9\x79\x8c\x3d\xf7\x7c\x99\x97\xa7\xae\xf2\x00\x0a\xf1\x33\xa0\xea\xd6\xbd\xb6\x22\xca\x47\x37\xe5\x5a\xad\xa6\x3d\x24\x84\xd9\x31\x79\x93\x33\xe4\x59\xb0\x2a\x5c\x1a\xb5\x92\xc9\xda\x1b\x33\x07\x5a\x53\x60\xae\xd3\x5d\xe6\x3d\x46\xce\xb6\x7d\xcf\xbf\x7b\xf2\x05\xa9\x9a\xaf\x76\x23\x09\xe1\xe1\xec\xda\xa1\x7b\x07\xae\x08\x93\x4c\xa0\xd2\xd6\x8f\xc7\x23\xf3\xa7\x52\xc1\xb3\xfa\x0d\xbd\x56\xf4\x53\x97\x66\x63\xbb\x5d\x25\x41\x1b\x9c\x89\x36\xe5\xb4\x00\x8e\x42\xa7\x0c\xa0\x53\xb6\xa1\x13\x10\xd9\x32\x70\x33\x0b\x80\xa5\xfd\xcc\x81\x55\x83\xcd\xab\xb5\x93\xe3\x5e\xbc\x63\x3e\xde\xb1\x22\x63\x53\x56\x34\x83\x36\xe5\xcf\x17\x5a\x81\x59\x37\x4d\xf3\x95\xee\x09\x2a\x09\xfd\x69\xab\xab\x72\x9f\xf0\x76\xc3\x5a\xf9\xc3\x5b\x8a\x1d\x0f\xe4\x6a\x3f\x90\x2b\x05\xe4\x7e\x4b\x74\xb5\x0f\xfa\xd6\x19\x2f\x84\xbd\x61\x3e\x72\xc2\xa6\x2a\x51\x69\x2c\xa3\x00\x75\x78\x45\x63\x78\x05\x0a\x1d\xc7\xbd\x38\xc6\x65\x4b\x4e\x1e\x6e\x1f\x59\x9e\x65\x6b\x78\x96\x0d\x61\xf3\xed\x02\x2f\xf7\xd3\x96\x8d\x5f\xf0\xa4\x9e\x6f\x17\x1a\x31\x96\x72\xc3\x37\x72\xc3\x9b\xee\x55\xef\x6f\xb8\xcd\x8b\xc2\x3c\x9f\xbb\xea\x38\xf1\xfd\x18\xad\xc5\xde\x0c\xa3\xbd\xd2\xfd\x3e\x67\xd2\xbb\x39\x98\x1a\xb9\xe0\x37\x50\x01\xe4\x41\xa0\x89\xd1\x25\x5d\x52\x7e\x41\xa5\x60\xda\x51\x0f\x5c\x71\x76\x99\xf3\x1b\xc9\xe7\x24\xac\x48\x30\xb4\x2c\xf4\xe7\x19\xad\xb3\xb9\xb6\x03\x2e\x70\xeb\x32\xdd\xc7\x5e\xf6\x2a\xba\x9c\x7e\x5f\x32\x99\x76\x30\x5a\xc4\x84\x0a\x9d\xc4\xc5\x71\x8e\x73\xba\x70\xec\x67\xeb\x92\x80\x44\x38\xca\xe9\x7f\x20\x1b\x92\xca\xb7\x7a\xa6\xf2\x11\xce\xed\xdd\xd1\x40\x5e\x48\x7c\x8c\x00\x67\x0b\x4d\xb2\x03\x85\x26\xed\x60\xae\xea\x9e\x19\xb6\xe7\xbe\xde\x5f\x2c\x72\x9f\x30\xb8\x6f\xc0\x68\x4d\xcb\x60\x72\x5e\xc6\xcd\x43\x03\xf5\x54\x8a\x0c\x86\xb3\x6d\x8e\x1d\x34\x5a\xb5\x32\x18\x52\xb7\x38\x76\xc0\x03\xa3\x1d\x3b\x54\xa4\xc0\x67\x7b\x13\x0e\x0f\xd2\x5f\x24\xd3\x8e\xe5\x97\xff\x3b\x66\xc8\xfe\x3a\x98\x4e\x99\xe0\x35\x39\x66\xc8\xfe\x9a\x9c\x8e\xff\xf7\x9a\xec\x1f\xb2\xf1\x4e\x52\x17\xf9\xa3\x67\x2a\xfa\xc5\x53\x56\x5e\xb8\x94\x4e\x3d\xdf\x3a\x52\x49\xf2\x8d\xbf\xd5\x3a\x36\xc7\x7f\x07\xae\xd6\x3b\x7d\xa6\x73\x9c\x7e\xd3\x45\xb5\x4e\xda\x6f\xb9\xb0\x7f\xc4\x77\x82\x63\xfa\x5b\x7d\x24\x76\x7e\xef\xb0\x49\xf9\xe7\xe3\xb7\x28\x76\xae\x7f\xa3\x4f\xc5\xce\xfb\x6f\xf4\x29\xbf\xf1\x6f\x86\xdd\x61\xf3\x83\x9f\xe9\x6a\x73\x3d\x66\x6d\x74\xe2\x8f\x1c\x60\xcb\xaf\x1c\xf8\xc1\x5d\x14\xc9\x8a\xc3\x53\x9c\x32\x78\x2e\x18\x93\x41\x36\x5f\x34\xc6\xf0\xa0\x75\x23\xaf\xa9\x30\x45\xbe\xa5\x64\x53\x4b\x39\x0f\x62\xb1\x48\x8d\xcc\x58\xdb\x56\xfe\x3a\xc8\x35\x88\x37\x64\xab\x1c\x55\x96\x64\xeb\x1c\x55\x94\xf3\x0a\xd9\xe0\x25\x8c\x64\x8d\x15\x4b\xe5\x15\x6d\xf5\xa1\x2b\x4f\xa2\xe0\x56\xa2\x58\x93\x13\x5c\x10\x5b\x36\x72\xfd\xa8\x78\xb8\x36\x52\xc5\x15\xbe\x24\x7c\xbe\x5e\xe0\xcf\xdd\xe9\x5c\x22\x7c\x43\x3e\xab\xe9\x5c\x90\xcf\x81\xdf\xcc\x05\x4a\xaf\x3c\x57\x9a\xc0\x15\xe6\x0a\x5f\xa0\xc1\x6a\xbe\x5e\x90\x9b\x46\xcf\x7c\x65\xf4\xa5\x79\xbf\x4e\x4d\xe7\x84\x94\x32\xad\xef\xf6\x76\x94\x5e\x0c\xe1\x3e\x0d\xb4\x98\x6e\x58\xf9\xa9\x46\x47\x6b\xd8\x54\x73\x7c\x40\xab\xe6\xe9\x70\x7e\x13\x55\x1a\x3e\x46\x87\xe6\x6b\x8f\xec\x24\xe3\xb2\xc1\xbc\x9d\x3a\xc7\x09\x1f\x09\x5a\xb8\xe2\x18\xd5\x74\x59\x51\xbe\xa4\xaf\x0a\x04\x56\x91\xa3\x6c\x17\x2e\x81\xa7\x97\x24\x7e\x8f\xbd\x82\x93\xf2\xa0\xad\x02\x7b\xa2\x07\x5f\x40\xaa\x52\xba\x80\xbf\xa5\xe8\xcc\x0e\x59\x25\x62\x1e\x42\x2d\x1b\xd7\x1e\xb3\x85\x00\x15\x1a\x2b\x54\x66\x92\x82\xb4\x00\x23\x9f\xd9\xe8\xd2\x98\x91\xcc\xf3\x08\xd5\xc9\xa1\x46\xa0\xa5\x3e\xd6\x81\x01\x29\x77\x4a\x71\x84\x2d\x51\xab\xd0\xa5\x48\xe5\x1c\xfe\xdb\xf3\x35\x48\xeb\xf0\xc4\x0b\x4c\x39\x46\x71\xda\x87\xad\x1a\x59\xbf\xde\x04\x72\xa4\xc5\x43\x85\xbc\xff\x0a\xc3\xc7\x3c\x5f\x98\x48\x2e\x55\x30\x12\x1e\x0d\x3a\x2e\xf2\x6a\x28\x54\x13\x16\x73\xa1\x9b\x59\x73\x48\x0f\xfc\x52\x06\xdb\x81\xb7\xf8\xf6\x13\xbd\xc9\x28\x36\x65\xb5\x5e\xe6\xf5\x3a\x13\x01\x0d\x90\x97\x44\xc6\x1a\xc8\xca\x1b\x81\xac\x19\xc9\x59\xf4\x7d\xef\x5a\xa6\x9d\x64\x47\x01\x86\x6f\x11\x92\xd7\x8d\x77\x0b\x6c\xed\x2d\x10\x5d\x10\x32\x37\xc7\x86\x9c\xc0\x95\xa3\xef\x88\xcd\xa3\xe5\xc3\x8d\xb9\x23\x56\x64\x3b\xdf\x2c\x06\xf5\x7c\xe3\xd9\x83\x0e\x00\x60\x75\x07\x00\x34\xb6\x20\xab\x72\x3b\x95\xb7\xd5\x36\x7e\x5b\x91\xed\x7c\x2d\x67\xb2\xee\xb3\x4c\xe9\xcf\x5f\xa1\xa6\x72\x5a\x2d\xd9\xf5\xd2\x22\xcf\x8f\xac\xfc\x64\x91\x46\x97\xae\x06\xa2\x3f\x1e\x7b\x86\x32\x78\x32\xbf\xd4\x58\xf3\xd9\x7b\xf2\x30\xad\x48\xb5\xdb\xdd\x36\x48\x3d\x22\xb7\xb0\x28\x5a\x64\x9f\x9b\xa6\x32\xa6\xd4\x4a\x1b\x4f\xef\x64\xd9\x62\x3d\x76\xac\x40\x5b\x72\xe0\x8c\x69\x62\x3c\xe8\x55\x7a\x1e\x3c\x72\x74\x44\x48\xea\x68\xf4\x31\x87\x0d\xf9\xb0\x53\xf4\x5a\x18\x7a\xad\xf3\x7c\x0f\x85\x49\x30\xb7\xf7\x0e\xee\xcd\xc9\xdd\xbe\xc0\x8c\x8b\x3c\xe8\xbf\xad\x77\xf6\x90\x95\x43\x86\x38\x89\x86\x2a\x55\x98\x06\xf7\x4a\x29\xe7\xb9\xdf\x31\xac\x42\x2e\x4b\x7f\xfb\xca\xaa\x10\xc2\x47\xfa\x8b\x75\x87\x09\x03\x63\x10\xc2\xa5\xf2\xc5\x4c\x95\x3d\x7a\x5e\x7a\x70\x2b\x17\x48\x45\x35\xb9\xb5\xf4\xec\x7c\x1f\x90\xcc\xbd\x37\x1e\x4b\xe4\x1c\x8f\x53\xb9\xbf\x73\xba\x40\x2a\x54\x2b\xe5\x44\x07\x68\x76\x32\x2c\x70\xc8\xb0\xc0\x91\xf2\x56\xf1\x0d\x2b\xbd\xd5\xb7\xfa\x3e\x3f\x12\xbb\xdd\x48\xa2\xc5\x6e\x07\x75\xc6\xe5\x9f\x7e\x34\xcc\xf9\xe5\xb6\x16\x5f\x3f\xbc\x64\x17\x05\xac\x4e\xb9\xd6\xb6\x46\x8f\xdb\x24\x7a\x43\x57\x21\x36\xca\x66\xfb\xf5\x77\x0b\x6c\xa8\x3c\x08\x93\xd2\xeb\x53\xde\x35\xe1\x32\x52\x81\x76\xbb\x88\x55\x4a\x40\xbc\xc4\x65\x5e\xde\x9c\x55\x92\x76\x4b\xa2\x5e\xee\x76\xfa\x89\x21\xf3\xe5\x51\x96\x49\x75\xa3\x4a\x42\x36\x1e\xdb\x4c\x6a\xaf\xbc\x40\x2f\x56\x0c\x18\x10\xa6\xbd\x5c\x20\x61\x36\x09\x4b\x2f\xf7\x26\x40\xc2\x9a\x76\x6d\x95\x60\xdc\x81\x1c\xb8\x08\xef\xa3\x30\x30\x40\xec\xce\x9d\x79\xa3\xfa\xe1\xc7\x52\xa6\xcb\x62\x57\x9f\xd7\xde\x37\x30\x31\x4d\x78\x3b\x55\x0d\x22\xd6\x54\x10\xd2\x82\x80\x5d\xa8\x98\x8a\x8e\x34\xc6\xf6\xdb\x5f\x7d\x33\x2d\xfe\x87\x99\x5a\x63\x54\xea\x0e\x06\xd8\x7f\x84\xd5\x15\x4b\xf6\x14\x4c\x28\xbf\xa9\xe9\xae\xcf\x70\x8a\x03\x76\x89\xa1\x99\x98\x57\x2a\x10\x3b\x83\xbf\xd8\xaf\x09\xeb\xfe\x47\x59\x4b\x5d\x4c\x74\xdb\x6c\xfa\x4f\x32\x89\x62\x05\xbb\xc0\x5c\xdc\x02\x91\xef\x41\x67\xe5\x05\x60\x00\xdb\x10\x62\xab\x94\x7b\xdc\x04\x07\xbd\x89\x03\x9c\xfc\xe5\x6a\x6b\xc0\x05\xa9\x1e\xe2\xd2\x49\x37\xcf\x55\x4e\xcf\x60\x68\x2f\x1f\xba\xf0\xc2\xde\xca\x48\x82\x50\x79\x4d\xea\xbc\xa0\x10\x34\x03\x09\xaa\x3b\x55\xa6\x51\x6a\x1a\xe9\xb4\x01\xfb\x75\x0b\x02\x97\x08\x8b\x03\x5e\x7c\x82\x54\x87\xbd\xf8\xc4\x08\x22\x1a\x5c\x62\xe6\xb9\xb0\x1e\x7c\xf2\x6f\x6c\x83\x69\x05\x08\xcb\x62\x1f\xc3\xd7\xfe\x6e\x8b\xdb\xfb\x75\x9f\x06\x42\x7c\x94\x7b\x0f\xbd\x8b\x1b\x8f\x6d\x2c\x59\xf9\xde\xf1\x7c\xf2\x1a\xbd\x3a\xf7\x56\x4c\xb3\xbd\xb3\x64\xe2\xc4\x79\x1e\xe6\x24\xad\x0f\xdb\xc5\xbb\x55\x39\x7f\xb5\x4b\x7b\xaf\x35\xfc\x48\x7b\xf9\x6f\x63\x12\xef\xed\x10\x0b\x02\x39\x32\x82\x80\x45\x23\x48\x9a\x7e\x03\x7c\xd7\x07\x5f\x21\x4a\x2f\x35\x8a\xa8\x39\x62\xe7\x00\x4d\x12\x48\xc1\xeb\xeb\x8b\x81\x14\xec\x0d\xad\xc5\x46\x06\x9d\x2f\x42\x6d\x71\x4e\x02\x8f\x6a\x5c\x93\xae\x0f\x75\x98\x69\xec\x32\xff\x44\xb5\x5e\x37\x92\xe2\xdb\x4a\x00\x5b\xc2\x3c\x9d\x77\x20\xa3\x4b\xf8\x69\x42\x98\xe3\xba\x47\xd3\xfc\x30\xad\x94\xc7\x2c\x38\x5a\x6f\x10\x5e\x2a\xc1\xa5\x8a\x6b\x7a\x39\x5e\xea\x8a\x30\x7b\x3e\xda\xd5\xa7\x5b\x6d\x7a\x85\x6b\x52\x42\x36\x6e\x10\x7e\x8f\x57\x8f\x41\x6e\x0e\x2f\x79\xfc\xf6\x28\x25\xd9\xa0\xe5\xf4\xbe\x45\xc0\x1d\xb5\x61\xbf\x55\x1b\x72\xe9\x9a\x59\xbe\x38\xf7\x14\xe4\xb5\xc9\xfb\x71\xd0\x82\xc0\x70\x85\x73\xa3\x7e\xea\xb3\x20\x6c\x7b\x2d\x08\xdb\xf1\x38\xad\x95\xf9\x60\xeb\xdc\x8f\x36\x41\xb9\x43\x8e\xf0\x92\x9c\x40\xc0\xb0\x56\x9c\x2c\x1f\xad\x1e\x2e\x8d\xe2\x64\x4d\x36\xf3\xe5\x02\x17\x64\x8d\xaf\xc8\xe8\xc1\x20\x39\x97\x9c\xf4\x7a\xba\x5c\xe7\xfc\xb1\x48\x4f\x24\x20\xae\xc8\xe8\x44\xb6\xd0\x45\xa0\xd2\x07\x5a\xc5\x79\xb9\x1f\xb6\x4a\x85\xd2\x82\xec\x25\x32\x7a\x93\xd1\x95\x66\x36\x58\xfd\x4e\x09\x1b\x9a\x63\xba\xc4\x02\xe1\x1b\x30\x3e\x18\x1f\xbb\x11\x21\x37\x48\x62\xc3\xe7\xdd\x2e\xf4\xfc\xbe\xd1\xe3\x5d\xe0\x8f\xf8\xbc\xed\xad\xad\xfd\xbf\xf1\x25\xbe\xc1\x6b\x84\xaf\xc9\xb9\x42\xec\xe7\xe4\x3c\xb0\x59\x3c\x47\xe9\x05\xa9\xe3\x98\x7c\x81\x9f\xc3\x3a\x72\x74\xbd\xa7\x54\xd3\xe7\xf1\x18\xf4\xb8\x4e\xb5\x0a\x95\x9a\xa4\x50\x32\xf8\x3c\x1e\x8f\xd8\x78\x3c\xaa\xe1\xe3\xbb\x9d\x98\xa9\xbf\x08\xcd\xea\x56\x28\x31\x45\x8d\xd3\xea\x7d\x46\xba\xdd\xb5\x7d\x74\x8d\xd2\x8f\x7d\x13\xfd\x88\xaf\xb5\xd1\x47\x4e\xe9\x0b\x3e\x6d\x43\x23\x76\xe8\x6f\xf0\x1a\x0b\x95\xd3\x1f\xbf\x25\xa7\x0a\x3c\x9f\xc8\xa9\x03\x8f\x9e\xc3\x5b\xfc\x69\x3c\x4e\xbf\xf4\x7d\xfc\x0b\xfe\x84\x1a\x9b\xdb\xbd\x6e\x70\xb0\xa9\xbd\xd7\xb5\x4f\xeb\xa4\xa4\x72\x38\x14\x24\x4a\x36\x5d\xd5\x4e\x28\x3b\x12\x64\x2b\xea\xc3\xce\x32\x86\x9d\x0c\x19\x4e\xd0\x9b\x1a\x53\x09\xc0\x42\x52\x50\xf9\xee\x74\x6d\x4a\x0c\x8a\x99\x7e\x6c\xc1\x8c\xf8\xe4\x02\x8a\xc7\x48\xca\xc2\x4c\x24\x3a\xf3\xc8\x2e\xf7\xc8\x2e\x44\x9a\x43\x0e\xcc\x9e\x58\x73\x81\xb7\xa8\x41\x4d\xe3\xc5\xc3\xfc\x4a\x07\xfa\xaa\xdf\x81\xfe\x40\x5c\xf3\x41\xcf\xe8\xe3\x24\x71\x3a\xdf\xeb\xd6\xe8\x67\x96\xd1\xd1\x1a\xa1\xc8\x7e\x17\x47\xff\x61\x5f\x22\x8d\x63\xc4\x97\xae\x1c\x87\x83\x44\x57\x6d\xd1\xb0\xc4\xca\xaa\x14\xa6\x73\xaa\xda\xa9\xe6\x02\xb9\xb4\x92\x72\x29\xb3\x72\x29\x5b\x90\xf8\x8c\x7d\xec\xbc\xb3\x65\x27\x5c\x01\x9f\xfa\x8a\x7a\x5c\xc1\x83\x50\x55\x1f\x13\x8c\x71\xbe\x7f\xed\x1d\x01\x42\xef\x40\xe5\xc9\x10\x6c\x9e\x2f\x9c\x10\x66\x2b\x1d\x8a\x19\x18\x60\xbd\x20\x86\xbe\x33\x2e\x07\x40\x4d\x76\x18\x13\x1b\xe3\x38\x9d\xdf\x8d\x87\xf7\xbd\x57\xff\x41\xf9\x2e\x7d\x85\x67\x2b\x81\x42\x97\xdd\x00\x66\xa2\x95\x57\xa1\xcf\xca\x1e\x2f\xae\x20\x0e\x03\xc1\x0a\x44\x47\xc5\x26\xf7\xf8\xdf\xfe\x26\x70\xe2\x44\xb8\x40\x71\x6f\x51\xfc\xf0\xa2\xfe\x75\xd3\x98\xb6\x04\xbd\x63\x04\xc8\xfb\x15\x2f\x28\xa7\xc5\xbd\x9a\x8a\x3b\x25\x75\x0f\x9d\xb0\x63\xe2\x61\x0b\x10\x9c\x40\x0d\x95\x75\x5e\xbf\xbd\x2e\x2d\x20\x6c\x78\x38\x9a\x59\x39\x2c\x33\x35\xd7\x14\x2a\x3f\xff\x4c\x4b\x41\x0b\x5b\xed\x0f\x2e\xd2\x77\xbc\xfa\x72\x63\xd0\x5b\x3d\xd7\x95\xf5\xe0\x8d\xae\x91\x2e\xf9\xdf\x56\xa5\xf2\x29\xa7\x79\x51\xa7\xa6\x78\x0a\xb0\xc8\xda\xb3\xde\x3f\x39\xc7\x8c\xef\xe5\x8e\xd8\x06\x07\xa5\xb6\x59\x60\xaf\x54\x9f\xcc\xab\x15\xa8\x87\x31\xb5\xd0\x95\x35\x1c\xb9\x9a\xf7\x9b\x60\xa8\xfc\x2b\x86\x92\xc0\x5b\x92\xda\x1e\xfe\x08\x14\xfc\x7a\xed\x0d\xb8\x99\x84\x5c\x95\x9f\x5d\xca\xa4\xaf\x3a\xb7\x97\xcf\xa9\xc8\x05\xc5\xfe\x45\xa0\x92\xd1\xca\x1b\x40\x15\xe5\xcf\x05\x2b\x2f\x5e\xc5\xf2\x50\xb3\xa9\xfa\x98\x97\x97\x09\xa4\x5e\x48\x3e\xdf\xaa\x85\xe8\x51\x1e\x14\xa4\xea\x58\x79\x17\x73\x2b\xcc\xd6\xe4\xc9\x48\xbb\xa6\x1f\xbd\xe5\x09\x42\x73\xba\xb0\x6c\x91\x4f\xeb\x95\xd8\x93\x5b\xc8\x45\xe0\x12\x04\x32\x53\x91\x26\x7a\x5f\x12\xa5\xcf\x83\x70\x0d\xfb\x21\xbd\xd6\x94\xea\x3a\xd0\xed\xca\xcf\x69\xa7\x88\x73\x29\x1f\x56\x25\xfc\x49\xd5\xdf\xf2\xee\x17\x9c\x5d\x5c\x50\x2e\x1f\xe8\x3f\x65\x8b\xd5\x0a\x5a\xac\x56\x09\xc2\xeb\xbc\xce\x94\xb9\x1f\xb0\xb9\x20\xf7\xff\xfb\xc3\xfd\x99\x3c\xaa\x1f\xee\xa7\x5e\x2c\x57\x18\x0c\xf8\xe1\x7e\x3a\xfd\x3d\xba\x8f\xaf\x5c\xf3\xfb\xf8\x92\x24\x1f\xf3\x9a\x7a\x55\x52\x3e\x3b\x8c\x70\xa5\x6f\x0d\xfb\xf1\x8e\xd3\x1a\x0a\xd0\xa2\xf1\x38\xac\xa6\x1f\xad\x2b\xe6\xca\xe8\xb7\x79\x63\x3a\xe7\x0b\x84\x19\x39\x79\xc8\x5c\x86\x44\x66\xc4\xd1\x8a\x24\xba\x0a\xc0\xf0\xb1\xab\xe3\x90\x93\xe4\xbe\xa2\x47\x76\x89\xf7\x93\x09\x1f\x70\x42\xc8\x25\x68\xa6\x6d\x2f\x13\xbf\xed\x3a\x49\xc0\x2a\x76\xf8\x56\x15\x6f\xaa\x4c\x61\xa6\x72\xce\x16\x58\xf1\x36\xd9\xed\x55\x05\x19\xd5\xb3\xbc\x69\x74\x20\x82\x05\xcc\x4d\x50\xab\x68\x0f\x60\x68\x94\xe7\x07\x31\x43\x7d\x46\x36\x51\x7f\x4d\xf5\xf7\x5c\x1a\x9e\xf0\xf9\xf4\x12\x2a\x5c\x15\x68\xc0\x67\x9c\xf0\xf9\x77\x8b\x0c\x92\xf2\x74\xda\xd5\x34\xe7\xcb\x75\x7a\xa5\xd4\x31\x97\x08\x7b\xa6\x62\xbe\x80\x84\x55\xf2\x0f\x2d\x5f\x4e\xd5\xd2\x77\x3b\x3a\x05\x60\x20\xbd\x56\x10\xa1\x7b\x49\x6f\x85\x6f\xcf\x39\xbd\x60\xb5\xa0\xfc\x25\x54\xf8\xe5\x6d\x0f\x03\x45\x3c\x4c\x23\x5a\x98\x66\xe4\xf6\x23\x95\x6c\xa9\xa9\x06\x4b\xb1\xfa\xfd\x33\xfc\x12\x4d\x83\x95\xa6\xfc\x89\x2b\xe1\x00\xcc\x79\x3f\x25\x33\xea\x79\x55\x22\x5a\xde\xa5\x30\x40\xa8\xcb\xed\x33\x0c\x47\x3f\xe6\x19\x8a\xc1\x26\x4f\xd1\x6e\x07\x15\xf1\x52\x8a\x4d\xae\x4f\x88\x43\x54\x91\x2c\x0d\xd6\xc5\xcc\xea\xf6\xad\x73\x99\x5f\x3d\xb9\x71\x94\x01\x27\xba\x61\x82\xb0\x7e\x76\x78\x5d\xf6\x83\x0d\xc2\xdb\xf2\x53\x59\xb9\x7b\xb4\x2f\x31\xa0\x05\x40\xaa\x12\x73\x6a\x3f\x15\xe5\xde\x63\x89\x2b\xa4\xe5\xba\x12\x37\xed\x49\x97\x95\x48\x13\xd5\x18\x68\x59\x5e\xbc\x2d\x37\x37\x29\xc2\x79\x11\x17\xc1\xdb\x30\xd5\xe3\x26\x3a\x75\xe9\x79\x5e\x68\x7f\x48\x6e\xbd\x90\x22\x8d\x4d\x0a\xdd\x2e\xca\xf4\xbf\x99\x06\xb8\x94\x42\x05\xce\xce\x24\x35\x50\xce\x57\xac\x2c\xde\x72\xe5\x15\xae\x2b\xad\xd5\x5e\x7d\x8a\xbc\x28\x14\x1d\xab\x53\xf3\xc8\x87\x63\xec\x7d\x59\x09\xb6\xba\x31\xbb\xf1\x74\x9d\x97\x17\x54\xd7\x31\x8d\x7c\xab\x37\xa3\x6c\xe7\x5b\xb8\x4b\x25\xc5\x57\xa7\x96\xe5\x53\x88\x10\xba\x49\x2d\xf2\xe1\x1c\x0d\x54\xb6\xd8\xdd\xee\xd6\x52\x50\xa8\xfb\xa9\xea\xcf\xe5\x4d\x27\x8d\x6c\x80\x6a\xbd\x7b\xb8\xdb\xa5\x66\xab\x4c\x35\x97\xdf\x62\xbf\x7f\x56\xbb\x2d\x01\x1d\x99\x1d\x5b\xa5\xfd\x58\x16\x9c\x13\x4e\xe5\x7e\x4a\xd0\x78\x35\x82\xac\xfa\x26\xc2\x42\x48\x1a\xe0\x21\xc1\x91\xc4\x64\xaa\x4c\x5d\xb6\xb6\x4d\x0f\xda\xec\x79\x69\x8f\x63\xd3\xe0\xe5\x86\xe6\xdc\xb7\x80\x1c\xde\x0d\xe8\x92\x9a\x3a\x2c\xbf\x0e\xe0\x9d\xcf\xbb\x2c\x27\x83\xa3\x20\x7f\x24\xd0\x30\x97\x4c\x47\xac\x1a\x3e\xf0\xc9\xae\x38\x3f\x16\x53\xb3\xbe\x58\x59\x7e\x74\x4b\xe3\x30\x85\xbe\x9d\x0b\xce\x96\x57\x53\x83\x4e\x97\xf9\x66\xa3\xec\x7d\x2a\xd7\x70\x2f\x57\x18\xd0\x0a\x5d\x62\xf1\x24\x60\x5f\x3f\xf6\xe9\x95\x82\xf4\x02\x12\x48\xe7\x41\xc5\xb4\x51\x58\x25\x6e\xa6\xfe\x8b\x4c\x24\x39\x3f\x4f\x26\x74\xf2\x3a\x17\xeb\xe9\x6a\x53\x55\x3c\x85\x3f\x79\x5e\x16\xd5\x65\x8a\x7e\xff\x2c\x17\x12\x16\xd7\x29\x42\x13\xd9\xb6\x41\x69\xf2\xec\xf9\x93\x9f\x7e\xb8\x27\xea\x7b\x1f\x65\xb3\xc4\x9b\xee\x75\x9b\x4c\x9d\x3c\xe4\x8f\x44\x24\x41\x8a\xe4\x26\x06\xe5\xd4\x59\xe9\x88\xff\x63\xb7\x1b\x3d\x00\x3d\xb8\xaa\x3a\x0a\xef\x47\x27\x38\x01\xd9\x37\x61\x60\x56\x4f\xcb\xe9\x35\x67\x42\xbf\xeb\x37\x10\x82\x9f\x21\x2e\x51\xe3\x58\xb1\xe7\xb6\x48\x97\x35\xbc\x92\x8f\x29\xd7\x6e\x59\x92\xad\x51\xce\x6a\x9e\x57\x10\xd5\x5e\x41\x29\x27\x81\x7a\x33\xe5\x08\x61\x0e\x1b\xf0\x85\x78\x08\x6e\xbf\x25\xf7\x47\xf1\x35\x60\x61\x51\x0e\x41\xf3\xf3\x85\x16\xd9\xf5\xf1\x02\x47\xec\x44\x0b\x06\xe7\xe7\x3a\x69\xf6\x9f\xe9\x4d\xf7\xe1\xab\xfa\x71\x7d\x53\x2e\x25\x3c\xf4\x8b\x75\x5e\x3f\xcd\x37\xcb\x2d\x78\x89\xbe\x52\xad\xc8\xe8\x01\xd6\x2a\x4f\x4e\x4b\x61\xf5\x95\xc1\x67\xdb\xef\x68\xfb\x49\xa3\x34\xcd\xca\x43\x92\x3a\x3c\x77\x12\x9a\x3f\xd5\x98\x26\x68\xf4\x80\x10\xb2\x67\x9e\x86\x8a\x2c\xcd\x0b\xfd\xdc\xaf\x01\xe5\x7d\xa3\xc1\xee\x93\x06\x10\xbf\xf5\x67\xf5\x77\xe0\xd3\xed\xf6\xd1\x5a\x60\xe5\x60\xef\xc6\xe8\x84\x6e\xb8\xc2\x39\xae\xf1\x56\xa7\x59\x20\x16\x47\x70\x5a\x39\xf7\x70\x5d\xc8\x10\xf2\x16\xeb\xf9\xec\x76\xe9\x96\x08\x3f\xb1\xba\xd1\x91\x62\x29\x3c\x6e\x67\x29\x27\x5b\x95\x4c\xbd\xd4\xdb\x4d\x08\x49\x6b\x92\xe6\x64\x8b\xcc\xc0\xe3\xb1\xd3\xb8\xe6\x72\x7d\x68\xb7\xab\xa1\x46\x99\xd2\xef\x91\xd1\x83\x08\xfc\x09\xef\xc1\xc6\xb2\xc1\x82\x50\x9c\x72\x32\x07\xcf\xec\xe4\x13\xbd\x49\xfa\x12\xf7\x99\x95\xca\x39\x37\x0d\xd6\x1d\x58\x59\x1c\xd1\x83\x95\x85\xed\x02\x59\x12\xf7\x75\x81\x73\x35\x73\x7f\x66\xa9\x77\xdc\x9e\xa7\x76\x58\xe4\x1d\x43\x64\x87\xd7\xe0\x39\x3c\x29\xdd\xd0\x76\x94\xb0\x3f\xdc\xab\x84\x2a\x09\x0b\x34\x1e\x5f\xa7\xc2\x9d\x2d\xcc\x11\x2e\xe1\x19\x2e\x11\xa6\x4d\xaa\xb4\xca\xa7\xa4\x9f\xe9\x57\xb7\xa9\x96\x65\x06\x9d\x8c\x94\xea\xca\x8c\x7b\x0f\xf7\xda\xfa\x4d\xae\x5f\x70\x0c\x4b\xa1\xee\x8e\x4e\x2b\x3c\x5f\x20\x4c\x55\x4a\x65\xe4\xdd\xa8\xb4\x09\xf8\xfe\xb7\x7b\xe6\x1b\xaa\xdb\x07\x6a\xfa\x56\x64\x09\xd2\xfc\xd0\x7c\xb9\x7e\xaa\x87\xb0\x44\xdd\xf3\xf6\xd4\x1e\x5d\xd3\xb0\xe4\x9a\xbc\xeb\x3f\xd1\x1b\x22\x4c\x05\xfa\x94\xa3\x81\xcd\xc2\x57\xa7\x25\x2c\x07\xe6\x5e\x82\xec\xda\x9a\xfc\xa7\x83\xc0\xd6\xb7\x8d\xd6\xb8\x41\xca\x62\xdc\x4e\x9f\x77\x87\x85\x80\x91\xaa\x6c\xad\x02\xee\xb8\x4f\x70\xe8\x4a\xc0\x16\xf8\xa3\x4d\xb4\x05\xa6\x52\x4e\x8f\xb0\x18\x12\x21\xbe\x48\xf6\x20\x2d\x91\xde\x21\xfc\x78\xcf\xca\xcc\xad\x6d\x51\x09\x77\x19\xaf\x00\x8b\x14\x10\x80\xed\xf2\xb5\x39\x42\xca\x22\x27\x0f\xcb\x47\x36\x26\xb0\x34\x17\x3f\x93\x17\xff\xbc\x5c\x2c\x06\x0a\x9b\x98\x52\x0b\x3a\xc7\xe0\x60\x1f\x1c\x5f\x71\xe6\x19\x18\x69\xab\x6c\x9d\xdc\xca\xf6\x03\xe4\xd7\x96\x54\x19\x70\xdd\xf5\xff\xd4\x1b\xec\x0c\xe4\x74\xd5\xde\x5b\x99\x6b\xfc\x3a\xd0\xb1\xca\xae\x0a\x1a\x9e\x1a\xf6\xbd\x49\xda\xc5\x6a\xa8\x9a\x37\x93\x6b\x2b\x8b\x34\xf9\x48\x97\xd5\x25\x85\x67\x09\xca\xcc\x53\x53\xfd\xfc\x2f\x79\xfd\x9e\xd6\x54\xc2\x8f\x4e\xfd\xa0\x7d\xe0\x2c\xeb\x54\xb1\x75\xef\xc8\x2d\x2b\x99\x60\xf9\x06\x54\xa9\x59\xb2\x2d\x97\xd5\xa5\x2a\xc0\x9d\x60\xfd\xc5\x6c\x74\x82\xbd\xe7\xd9\x6d\xc1\x8a\x53\x2a\xac\xc8\xff\x1e\x6f\xaa\xbc\x60\xe5\x85\x04\x47\xe8\x2b\xd9\x9e\x4d\x4b\xe0\x84\xe3\xaf\x98\xdf\xc2\x8b\x38\xd4\xe4\x40\x2e\x87\x57\x9b\x0d\x2d\x9e\xe4\xcb\x4f\x09\x52\x96\x77\x5a\x84\x9f\xa1\xfb\x87\x01\xcb\x0f\x93\x2d\xcf\xaa\x34\x91\x13\xa5\xc5\xb4\xce\x3f\xd3\x02\x8a\x7e\x3b\x18\x86\x13\xbf\x66\x9b\xcd\x53\x58\x71\xeb\x4b\xe1\x78\xac\x7c\xb1\x61\x17\x6b\x21\xc7\x52\x2a\xd6\x88\xdb\x90\xa3\x79\x5a\x3f\x8e\x4b\x62\x93\x9c\x0f\x78\x4a\x4d\x4e\x4b\x7f\x04\xa8\x3a\x2b\x47\xb5\x00\xd8\x3b\x91\x70\x61\x58\xbe\x06\xed\xec\x8f\xb9\xa0\xbc\x0d\xc6\x50\xdd\xb5\x7f\x7d\xd0\x26\xd1\x13\xf9\xd8\x9d\x86\x79\xec\xc3\xbd\xfb\x79\x9a\x17\x37\x20\x2a\x1a\x80\x65\xb7\xac\x3e\xcd\x3f\xb3\xf2\x42\x62\x57\x07\xa1\x7a\xf7\x25\x86\x01\xf2\xf9\xb6\xf4\x80\xff\x22\xba\x7d\xb2\x59\xc1\x8a\x23\x76\xd5\x41\x51\x21\x21\x2b\x3f\x57\x9f\xe8\x8f\x6c\x45\x97\x37\xcb\x0d\x7d\x9a\xab\x25\xd7\x9a\x79\x2e\xe4\x34\xcf\x54\x2e\xc0\x3d\xdb\xf5\x4d\xf7\xe3\xf0\xdc\xec\xb8\xe0\x4f\xbc\x77\x54\xff\xd0\x77\x37\xcf\x1b\x25\xc1\x54\x6d\xa2\x9a\xe9\x2d\xab\x95\x8e\x74\xf4\x00\xfb\xa9\x46\xf6\x7e\x4c\x35\x2c\xa6\xc1\x47\x9b\x36\x0a\xb4\xe9\x84\xae\x1c\x24\x27\xa1\x95\x57\x2f\x78\x75\xe9\xfc\x8c\x05\x5c\x61\x08\x2b\x6a\xa9\xca\xb5\x2a\x47\xea\xd4\x84\xb0\xf8\x7a\x03\xda\x0f\x75\x89\x26\x77\x46\xbf\x5e\x72\x01\x22\xbb\x3f\x6d\x73\x3c\x7a\xa9\x48\x1f\x02\x1d\x35\xd2\x21\x32\xa0\xcf\x61\xa0\xe0\x3e\x1a\x33\x60\xe3\xa3\xc8\xb6\x17\xd7\x03\x38\x2b\x0c\xf2\x6a\xa3\xff\xd2\x92\xe9\x95\x77\x14\x35\xc6\x01\x97\x89\xd6\xf6\x78\xe6\x31\x21\xbf\xa4\x9e\x28\xec\x85\x92\xdd\x3a\x7f\x2b\xa6\x46\xe4\x44\xcc\xd9\x02\x97\x73\xb6\x20\x3c\xe2\x36\xcf\x67\x52\xda\xce\xac\xcc\x5e\x36\xe9\x3b\x84\xb5\xf6\xe3\x0d\x79\x96\xde\xda\x63\x9e\x69\x63\x19\xdc\x90\x6f\xe8\xb5\x8a\x66\x78\x33\xd5\xc7\x62\xea\xb6\x90\x1c\x73\x10\x8e\xa3\xd9\x6f\xfc\x03\xf3\x9b\x7c\x02\xb8\xd9\x57\xad\x95\x2a\xce\xa1\x48\x7c\xad\xd1\x8f\xc7\x7d\xea\x20\x7d\xb2\x03\xbe\x90\x03\x36\xe1\x0a\x7d\x7a\x42\x7e\xc4\x0e\xba\x9d\x17\x6d\xb8\x7c\x6c\x43\xe5\x5d\xb4\x49\xdc\xcd\xa6\x73\xa2\x5a\xeb\x6a\x6f\x84\x23\x08\x7b\x37\x42\x9f\x4b\x0d\xcd\xe9\x7e\x82\x5b\xb0\xe2\xc7\x2a\x8f\x7d\xac\xc5\x4d\x91\x80\x06\xbd\xb2\x20\xf2\x4e\xf7\x31\xb3\xb2\x4b\x93\x23\x28\x4a\x34\xf5\xef\x53\xf2\x02\xbf\xea\xdf\x9b\xaf\xa0\xf5\xaf\x0e\x1f\x95\x6f\x42\xed\x3a\xd8\xfd\x3f\xc4\x27\x17\xca\x79\xcf\xa7\x13\xa9\x20\xbf\xa4\x7c\x16\x8a\x5f\x1c\x65\xb7\x0d\x16\x08\x69\xe1\x08\x38\x65\xc2\xb1\x98\xd6\xf2\x2f\x10\x93\x4a\x2c\x90\x68\xbb\x94\x30\x34\x1e\x27\x5e\x9f\x64\x44\x08\x1b\x8f\x13\xdb\xcd\x3c\x68\xd3\x22\xa1\xb2\x5a\xab\x72\x92\xf0\x1f\x16\xb8\x9c\x24\xd3\x64\xc2\x90\x93\x60\x9b\xf4\xd6\xd8\xcb\x46\x0f\x30\xab\x7f\x54\x5c\xb8\xfb\x41\x0b\xf5\xb7\xe6\xe2\xe5\x9f\x86\xe7\x82\xc7\x6a\x77\xd4\x0f\xa0\x63\xf2\x0f\x7d\xa3\x9f\x44\x6f\xa2\x0e\xab\xe5\xef\xda\x3e\x76\x1f\x02\xa7\x60\xaa\x6e\xce\x27\x71\xb9\x41\xdf\xf8\xe7\x57\x9e\x9b\x0b\xd4\xdd\xe8\x6e\x3e\x2b\x2f\x24\x3e\x29\x3c\x88\x88\x05\x51\x74\xd1\xc4\xfb\xc0\x21\xb4\x57\x65\xaf\xcc\x71\x27\x5c\xb4\x67\x7a\x0f\x6f\xac\x57\x24\x21\x64\xb7\xf2\x04\xd3\x2f\x1d\xa6\x22\x04\x8d\x2a\xd8\xf2\x0f\x9a\x26\xa6\x53\xc9\x43\x6f\x68\x5e\xc2\xe9\x4c\x0f\xb0\x99\xfb\x18\x49\x5c\x56\xe2\x45\xb5\x2d\xf7\xb3\x20\x54\xd9\x6a\x1a\xb3\xcd\x59\x4b\x62\x55\x4b\xf1\x30\xbe\x07\xad\x24\x06\x42\xdb\xec\xb6\xa6\x62\x7b\x75\x94\x04\x39\x1e\xd3\xa9\x76\x30\x7b\xc6\x0a\x38\x47\x69\x97\x59\x7d\xdf\xcb\x17\x46\x19\xc9\x18\x9f\x15\xbb\x18\x8e\x96\x42\x4d\xef\xdf\x5e\x1a\xfd\xb5\x5c\xfe\x1e\xda\x11\x11\xcd\xe4\xe3\x2e\x8e\xa0\xdb\xc6\xb8\x2f\x15\xd9\x1b\xac\x17\x9f\xbd\x32\xb3\xeb\x60\x48\xa0\xd3\xf0\x78\x1b\xdd\x3c\xf1\x49\xe1\x49\x80\x48\x9e\x02\x24\x86\x33\x51\xb5\x4a\xa8\x2a\xf9\x1a\x3d\xc2\x37\x10\xb4\xef\x86\x90\x00\xfe\xe8\xce\xca\x37\xdf\x48\x03\x61\xe9\xc7\x9e\x4b\xba\x4f\x3f\xf0\xcf\x91\xee\x7f\x33\x09\xfa\x2b\x05\xfe\x83\x62\x95\xa1\x6f\xde\x8d\x1f\x43\x5b\x25\x4b\x4b\xf9\x59\x5b\x8d\xc2\x14\x5e\x5f\x2b\xe7\x15\xac\x50\xc7\x48\x4e\x26\x76\xb3\xa8\xbd\x51\x10\xb8\xc3\x16\xee\x91\xbb\x7b\x54\x11\xff\x4f\xa8\x12\xfa\x0f\x5c\x1f\x6c\xfe\x95\x55\x03\xcd\x51\x48\x03\x3e\xf4\x46\x78\x86\x12\x7b\x31\x34\x81\xf7\x12\x4d\xb2\xc8\x5b\x95\x6c\xf2\x08\x14\x6b\xa0\xd4\x23\x4e\x78\x55\x09\xdf\x89\xe0\xe5\xbf\xb2\x13\x81\xfc\xf2\x93\x3e\x4b\x3f\xdc\xdd\xc6\xe2\x0a\xe9\x05\xc9\x6d\x63\xcd\xa8\x5e\xcd\x04\x58\x78\xcb\x55\x3a\x38\xe3\x71\x03\x53\xd8\xe1\x55\xb1\xaf\xd9\xda\x64\x7f\x3d\x6e\x54\xdd\x7c\xff\x98\x81\x99\x85\x50\x75\xf2\xde\xeb\x44\xf4\xda\x6f\xcf\x2e\x52\xf5\x61\x05\x51\xf5\xe1\x95\xbb\x1c\x30\x6a\xaa\xa6\x2f\x54\x8e\x08\x1e\xe8\x1e\xca\x4a\x47\x6c\xaa\x19\x1c\x9a\xd5\x88\x9f\x1c\x51\x9b\xf1\xdb\x7c\x21\xa1\xd3\xce\x33\x6d\x50\xd9\xeb\xce\x20\x67\x4f\xda\x6e\xb7\xa0\x9e\x6a\x2d\x0e\x05\x66\x66\xaf\xb4\x04\x5d\x0c\xc4\x9a\x57\xd7\x60\x7d\xd3\x51\x09\xc0\x86\x27\x00\xb4\xe1\xbf\x25\x13\xed\xf4\x5b\xd6\x57\x74\xa9\xec\x6a\x3a\x83\x3f\x9a\x24\xff\x36\x5c\xe7\xf5\xb0\xac\x86\x76\xc8\xa1\xa4\x75\x85\xec\x47\xe5\x6b\xed\xe0\x33\x05\x65\x9f\x5f\x86\xa3\xcf\x09\x54\xa5\x8b\x4f\x6f\x75\xce\x47\x7f\x0d\x72\x84\x2e\xe8\xa2\x16\xc1\xb8\xbd\x33\xb0\xfa\xc5\x77\x02\x4a\x25\x01\x03\x6b\xce\xef\xa3\xd2\x9d\x61\xa6\xce\x30\x95\x72\x74\xcf\x00\x73\xb6\xd0\x05\x41\x3d\x2b\x21\x66\x2e\xbe\x2d\xee\x83\x81\x19\x51\xe9\x8a\x0a\x9b\x0a\x26\xc0\x5e\xc5\x43\x43\xc2\x9c\xf1\xd8\xdb\x62\xff\x74\x85\x9b\xec\xbf\x91\xdb\xcc\x56\xe9\xa8\xa7\x6f\x70\xe8\x7a\x46\x09\xda\xc8\xf1\x74\xcc\x7a\x68\x89\x7c\x4d\x45\x6e\x5d\x3c\x1c\xda\x03\xfd\x50\x7e\xba\xa3\x7c\xb7\xf3\x12\xd2\x8c\x08\x51\x5e\x12\xe8\x9b\xa0\xa1\x1d\x78\xe8\xcf\xaa\x17\x27\x75\x00\xdc\x6b\xa5\xb4\x53\xb6\x52\xc9\x13\xa4\x08\x6f\x49\x3d\x1e\xab\x38\x60\xe7\x75\xb5\x1d\x8f\xab\xd6\xc6\x40\x72\x04\xe5\x9e\x0e\xa1\xf2\x5e\x28\x9f\xea\xad\x0a\x0d\x8f\xc7\x23\x3e\xb5\x62\x41\x8a\x66\x6c\x16\xd4\x7a\x96\x1c\x59\xc6\x35\xc2\x9e\x96\xf9\x55\xbd\xae\x84\xae\xe5\x8a\x30\x9b\x45\xf7\x94\x94\xd9\x81\x5d\x22\x25\x2e\x25\xf6\x69\x72\x19\xc7\x3d\x83\x79\xe0\xdc\x58\x06\x28\xe2\xc8\x6c\x88\x16\xee\xb9\x41\xad\x68\xbf\x3d\x88\x15\x6b\x61\xd0\x8a\xf5\x9f\x00\x5c\x11\x76\x67\x94\xab\x76\x3b\xeb\x1c\x37\x32\x25\xd5\xbf\x0d\xc2\xe9\x61\xef\x80\x6e\x79\x0c\xdd\x06\x36\x28\x4a\xa3\x0c\x27\xf3\x05\x56\xbf\xf6\x44\xe0\xb3\x3d\xc8\x48\xd1\x40\xf8\x18\xb7\xdb\xa5\xe5\x8c\x9b\x90\x08\x56\x48\x74\x53\xee\x30\x1d\xac\x43\x2a\x59\xcd\x2c\xb2\xd7\x84\x67\x7b\xf7\x8f\x70\xcc\x25\xc2\x05\x89\x7d\x5a\x68\xe7\x81\xb2\x95\x00\x48\xe5\x4f\x65\x9d\x0c\x3d\x07\x06\x88\xe4\x60\x65\x2e\x22\x3a\xe6\x6b\xe2\x8f\x10\x2d\xda\x18\x20\x93\x9f\x8c\x4c\x6f\x5d\xdb\x7f\x4c\x8d\xb5\xdf\xbb\x2b\x44\xe7\x0b\x2a\xb4\x2a\xc4\xb9\x70\x79\xb7\x5d\x67\xa8\xcf\x5e\xa5\x45\xaf\x9d\x57\x91\x89\xb6\x1c\xbf\xe5\xe0\x83\x48\x97\xf8\xed\xd8\x97\x8b\xc9\xcb\x5c\x30\xe7\x0b\xdf\xc3\x06\x73\xd4\x78\x97\xdc\xf1\x6e\x6e\x21\x20\x00\xcc\x4f\x37\x79\x5d\x2b\xf7\xb2\x97\x11\xf7\xb2\x97\x2d\xf7\xb2\x9f\x48\xe7\x30\x60\xee\x58\x72\xef\x8b\x3d\xd9\xd9\x95\xdc\xd5\x58\xca\x4e\x71\x2a\x48\x89\xdc\x87\x5b\x40\xe2\xee\x0d\x84\x56\x39\x17\xea\xaa\xac\x05\xdf\x2e\x45\xc5\x89\xc0\x62\x7a\x7e\x0e\xef\xce\xcf\xc1\xfb\x49\xf5\x8e\x30\x3b\x92\xec\xa8\xb8\xb9\xd2\x1b\x2c\x2f\x8a\xbf\x30\xb1\x7e\x55\x16\xf4\x4b\x8c\x56\x1b\xe8\x6f\x59\x61\xa3\x28\x94\x6b\x2c\x04\x64\x2d\xe9\x29\x15\x26\x00\x7f\xc3\x6a\xa8\x92\x3a\x52\x99\xa9\xf8\xc2\xa6\x7b\x96\xdb\x38\x3a\xc1\x0a\x6b\xc4\x8c\x99\x34\x1c\x19\x9b\xd6\x57\xc0\xba\x08\x7c\x82\x8d\xb3\x7e\xcd\xfe\x87\x4e\xc8\x03\x1d\xe5\x57\x36\x29\xf7\x64\x9f\xbf\x48\xf0\xbb\xfa\x93\x16\xbe\x9a\x7b\xc2\xdc\x8b\xe7\x10\xdf\x3f\x98\x89\x7b\x0f\xb2\x13\x39\xeb\x07\x0f\xcb\x47\x02\x1c\xad\xf8\xbc\xbc\xf7\x60\xe1\xba\xce\x4b\x6b\xa3\xed\x82\xcd\xec\xa6\x76\x0b\xe6\xbe\x9b\xf4\xdf\x7d\x40\xd1\xe9\x8a\x95\xf9\x66\x73\x13\x38\xf2\x01\x15\xe4\xd3\xf3\x7a\xfb\xb1\x5e\x72\xf6\x91\x72\x33\x53\x72\x82\x1a\x2f\xaf\x95\x1d\xf4\x67\x47\x34\x46\x61\x72\x54\x49\x5a\x6b\xc1\xab\x1b\x29\xae\xb6\x4a\x65\xdb\x77\x60\x4f\xf0\x0c\x93\x7f\x6d\x25\x03\xf9\x7b\xea\x05\xbd\xba\x60\x57\xde\x8e\x17\xf5\x53\x79\x21\xdc\x85\xcb\xcf\x69\x18\x6a\xfb\x43\x5b\x26\x35\x45\xed\x3d\xd6\x16\x33\x02\xbe\xf3\x97\x4c\x39\xf4\x61\x9b\x58\xfa\xe4\x61\xfe\x88\x3d\xcc\x27\x13\x24\xe5\x89\x79\xbe\xb0\x39\xa3\x2b\x92\x0f\x3e\x72\x9a\x7f\x6a\x8c\x9b\xef\x78\x6c\x52\xb5\x56\x84\x19\x86\xea\x04\x6f\xc9\x89\x97\xc7\xa6\x72\x53\xd9\x10\x76\xaf\xc2\x4b\xf2\xe0\xe1\xf2\x11\x61\x90\x93\x07\x3e\xc2\xef\x2d\xd5\x67\xca\x7b\xcb\x05\xba\xdd\x90\xe5\xbd\x07\xfa\x53\x35\x29\xef\x6d\xee\x55\x78\x4b\xb8\xfc\xdf\x64\xf6\x5e\x31\x5e\x0b\xa5\x62\x87\x03\x93\x55\x38\x2f\x0a\x5a\x3c\xad\xb6\xa5\xc8\x6a\x1d\xd4\xa3\x7f\x6e\x95\x28\xfc\xe7\x68\x12\x01\xf5\xec\xf5\x16\x04\x6b\x5d\x6b\x19\xdf\xb6\x7c\x86\x3b\x56\xb0\x32\x54\xa7\x88\x43\x09\x17\xb4\xb8\xa8\x87\x20\xc1\x2f\x10\xfe\xd5\xb1\xd5\xe8\xa8\x5d\xde\x95\x5d\xc6\x13\xc0\xc1\x2d\xdf\xfe\xa5\x7c\x05\xcd\xc8\x5e\xc6\x09\xd2\x7d\xe4\xbe\xb1\xdc\x72\x67\x77\x9c\x2f\xd4\xc3\xd5\x66\x5b\xaf\x9f\xe6\x65\x55\xb2\x65\xae\xe2\x41\xa6\xbe\xda\x5b\x15\x88\xc8\xcb\x9b\x9f\x4a\x6d\x37\xe9\xa0\xa1\x4e\xf9\xea\x0f\xbf\xb7\x26\xdc\xb9\x3c\x27\x97\xb9\xd0\x97\x2b\x2b\x2f\x76\xbb\x11\xb5\x40\x49\x51\x83\xe6\x27\x0b\x13\x9e\x65\xbe\x1b\x04\x5f\x67\x51\xf1\xef\xe4\x21\x7d\xd4\x9d\x8a\x96\xe8\x26\x93\xf0\xa2\xf4\xdb\x68\x6e\x56\xc4\xa7\x26\xbc\xa9\x05\xdc\x6c\x2e\x71\xe6\xa9\x8a\xa0\xfa\x0b\xdb\x6c\x4c\xbc\x13\x7e\x80\x4f\x50\x17\xe6\x86\xcc\x52\x6c\x9c\xd6\x21\xde\x5a\x07\x40\x45\xda\x9b\x40\xb8\xce\xc7\x9e\xb1\x22\xfc\xd6\xe8\xa4\x31\x21\x05\x0d\x56\x66\xe0\xc7\xa2\x2f\x86\x32\xb2\x72\x97\x0f\xda\x2e\x30\xe0\x54\x70\x88\x26\x2d\x55\x9c\x1d\xc0\xea\x93\x46\x27\x08\xff\xac\x82\x8b\x0c\x69\xfe\x21\xed\x7c\x5c\x32\xea\x9a\x54\xf0\x69\xfb\x5c\x9b\xb2\x17\x3d\x40\xee\x76\xc0\x7c\xea\x9f\x7d\xcc\xa7\x8e\x2e\xc4\xe0\xdd\x82\x6f\x70\x3a\xa8\x11\xe6\xf7\xc1\xfe\xce\x53\x18\x8f\xfd\x07\xdf\x9f\x98\xa4\x60\x21\x5f\x94\x97\x37\xba\xbe\x0b\xd8\x83\x64\x7b\x05\x09\x08\xc5\xff\x44\x6f\x12\xc9\xa9\xcb\xe3\x71\xb5\xc9\x97\x3d\x59\x79\x06\x30\x7c\x5a\x76\x77\x5c\xaf\x8c\x62\x3a\x31\x60\x81\x81\x9d\x27\x32\x84\xc6\x1a\xd5\xbe\x49\xc4\xda\x9a\x01\x2e\xa7\x97\xf9\x55\xec\x7c\x9f\x41\x66\x2f\x04\x21\xb1\x3d\xa3\xe7\x45\x01\xd9\x43\xa3\x03\xf3\xfd\x03\x5b\x06\x85\x53\xc1\x19\xfd\x4c\x7f\xcc\x05\xad\x45\x0a\xa6\x4a\xff\x49\x0f\x13\xdd\x9d\xcd\x05\x15\x3d\x73\xb1\xce\xf2\xda\x92\xe9\x5a\x3e\xb9\xf9\x53\x5d\x95\x8f\xaf\x98\x2f\x77\x51\xa0\xcd\x36\x4d\xae\x48\x13\xc8\xc5\x81\xa9\x1f\xbd\xd1\xa6\xb7\xaa\xb2\xcf\x81\xbc\x0c\x30\x25\x95\xb7\xd2\xa4\x60\x78\x6d\xd0\x44\xdd\x37\xae\x59\x80\x4d\x89\xbf\xc3\x0a\xbe\x90\xe1\x29\xff\xdc\x53\xce\x1d\x0b\x92\x3c\x3b\xcd\x86\x76\xf8\xff\x25\xdb\x0e\x8d\x58\xec\x5c\xec\x81\xdd\x47\xd8\xf0\xa6\xc0\xc9\x98\x80\xc2\xa9\x52\xe1\x2b\x13\x99\x9c\x42\x6f\x1e\x0c\x6a\xb4\xeb\x91\x6f\xea\x26\xf6\x69\xe2\x89\xcb\xed\x1c\x22\xbc\x41\xed\x54\x14\x1d\xda\xd7\x5e\x81\x86\x27\xee\x46\x79\xeb\xb5\x49\x9e\xc9\x1f\x33\xe5\x9e\xa2\x81\x86\x11\x20\x92\x97\x56\xdc\x45\x5a\x22\x5c\x06\xd1\x91\xbf\xf3\x6f\xbf\xf1\x98\x9a\x42\x0b\xfa\x8f\xa9\xae\x9c\x00\x9c\xca\x7f\xec\x53\xda\x3b\x5c\xd4\x11\x7a\x21\xe9\x20\x02\x7b\x22\x20\xf8\x92\xf9\x71\x74\xde\xe3\x33\x1d\xf7\xa9\x00\x13\xd1\x31\x8b\xe9\xb9\x49\x85\x15\x3a\x87\x09\x20\x0d\x82\x9e\x49\x59\xa9\xbb\x9f\xbf\xb3\x41\xd2\xfa\x58\x20\x34\x4b\xe4\x2a\x13\xa8\xee\xd9\xe8\xd2\x42\xa4\x83\x7b\x8a\x9f\x21\xed\xde\x03\x37\x2e\x24\xbb\xd4\x90\x4b\xa9\x29\x45\x61\x80\x07\x99\xf9\x55\xf2\x9b\x3b\x0f\x0e\x7a\x30\x75\x74\xbb\x2e\x54\xfa\x05\x7c\x51\x1d\x63\xda\x28\x81\xd4\xee\xce\x7f\xfe\xab\x5b\x82\xfe\xeb\xb0\xd8\x6c\x85\x39\xcc\xbb\xe2\x5c\xe9\x57\xd4\x32\x09\x4d\x38\x64\x32\x01\x3f\x58\x27\xc4\xb1\x85\xcb\x56\x43\x21\xc2\x58\x33\xc5\x14\x43\x6e\xbb\x85\x5c\xde\x32\x97\x87\x44\xcb\xe2\x48\x97\xf7\x69\xdf\x82\xce\x76\xd2\xfc\x36\x62\xba\x1f\xdf\x48\xca\xee\x11\x00\xa3\x50\xaf\x2a\xa3\x68\x70\xbd\xf7\x28\x24\xac\xa0\xa5\x60\xe2\x26\x91\x2d\x25\x79\xe8\x6e\x42\x90\x83\x3b\x26\x11\xb6\xe9\xa6\x77\x2d\xe8\x3b\xc9\xa6\xd2\x94\x5f\x01\x4c\xe9\x9b\x73\x08\x5f\x6b\x11\x9b\x45\x5e\x7a\x9c\x5f\xa6\xbc\xc2\xea\xa9\xbc\x73\xfc\xa1\x9d\x94\x67\x20\x12\xb0\xc6\x6a\x76\xae\x52\xad\xa2\x0b\xa0\xda\xb1\xed\x7d\x13\x94\x52\xc2\xfe\x54\x4a\xcc\x1e\x8a\x6a\xb8\xa2\x62\xb9\x1e\x2a\x92\x35\x94\xe7\xf0\xe6\x4a\xde\x42\x76\x94\x49\x32\xbc\x66\x62\x5d\x6d\xc5\x30\x2f\x87\x2a\xb2\xa4\xd6\x57\x63\x97\x00\x40\x37\x80\x8e\x3b\xf5\x74\x46\x4d\x36\x23\xa4\x94\x9b\xea\xef\x06\x33\x52\xe2\xb4\x32\x2a\xbe\x73\xb6\x5f\xbf\x17\x82\x8e\x15\x4a\x9b\xf5\x9f\x29\xf3\xb4\x59\x15\xc2\x39\x3c\xc3\xb9\xbc\x1c\xd2\xff\x50\x12\xf3\x9f\x0e\x9d\x4b\x9b\x78\x0c\xf2\x05\x99\xa3\x55\xe9\xa3\xa5\x6f\x7e\xcc\xed\x51\xfa\x44\x6f\x08\xc3\xd5\x34\x6a\x18\x20\x25\xae\xd4\x61\x2b\xbb\x69\x0d\xd5\x34\xb5\x67\x2a\xe4\x3d\x54\x55\x18\x57\x94\xd3\x72\xe9\x5e\x05\x52\x18\xe1\xb8\xfa\x4d\x4f\x67\xec\x5c\xb2\xd6\xb9\x3c\x9e\xc4\x2b\x1d\xbb\xfa\x5f\xd5\x35\x93\x74\x47\xff\x02\xba\xce\xe2\xd7\x5e\x57\x7b\x2c\x6f\x51\x79\x4c\xc2\xa4\x5f\x10\x90\x2f\x47\xf9\x76\xc7\xbd\x15\xff\x4f\x87\xac\xac\x45\x5e\x2e\xe5\xdd\xf4\x96\xce\x68\xd6\x22\x04\x58\xc4\x37\x5f\xf2\xa3\x96\xeb\x7c\x6f\xd7\x90\x9e\xe9\xd4\x00\x30\xed\x0e\xfd\xf0\x4e\x4f\x64\xfb\xb5\x69\x26\x02\x75\x53\x85\x45\xc2\xd6\xa9\xe6\xfa\x8d\x16\xba\xe5\x40\x95\x3d\xe0\x11\x79\x9b\x07\xe2\xa8\x57\xc1\x4e\xce\x3b\x3c\xf4\x2d\xde\x39\x36\xf1\xe8\xce\x01\x67\xcc\x3a\x34\x24\xba\x7b\xbd\x23\xc7\x72\xc1\xe9\xc1\xf7\xd0\x72\x4d\x9a\xa0\x2e\x94\xa5\x0e\x94\xfe\x56\xe4\x21\x62\xc4\xf9\xff\x0c\x71\xb8\xe3\x01\x0e\x24\x3f\x73\x7c\xe3\xf7\xba\x6f\x89\xe9\x52\x98\x3d\x8c\xbd\xc7\x01\xd7\x89\x1c\x9f\x15\xf5\xe1\x81\xb1\x9f\x9a\x8e\x1a\x03\xa1\x64\xab\x80\x62\xf5\x08\xc9\x54\xde\x40\x50\x08\xf1\xdb\x93\x21\x42\x07\x1d\xfe\x18\x96\x6d\x8d\x97\x54\x9f\x63\x93\x56\xb7\x57\x92\x6f\x51\x2d\x4f\x09\x2f\x62\xd8\x69\x02\xc1\x95\xaa\xa5\x4e\xa1\x88\x48\x87\x67\xb1\x7b\x19\x1d\x02\x36\x17\xa9\xd4\x1c\x46\x19\x1b\xdd\x04\x5b\xc8\x2a\x14\x0b\x63\x83\x42\xf2\x95\xc7\xe1\x33\xa5\x55\xd0\x5a\x80\xd8\x44\x2e\x21\xe9\x68\x3d\x15\x95\xe2\xa8\xd1\x94\x7e\xa6\xfc\x26\xa2\xf5\x87\x12\x5e\xb4\x9f\xf4\xee\xa5\xa8\x40\x2f\xd5\xaf\x57\xc0\x8a\xae\x18\xe5\x29\x42\x81\x9e\x35\x4a\xf5\x43\x4e\xd7\xb6\xee\xe1\x14\x43\x45\x04\x80\x39\x3b\x8a\x30\xf7\xef\xdf\x41\x82\xdc\x3f\x8c\x6a\x1c\x1d\x49\x51\x56\x4b\x3e\x21\x6b\xd5\xad\x77\x93\x10\x42\x77\xbb\x04\xd2\xe8\xcc\x20\xe9\x74\xa7\x0c\x9c\xbc\x6f\x93\x1a\x72\x14\x05\x0f\xa7\xa2\x52\xf9\x8e\x52\x94\x25\xc9\xc4\x8b\x31\xe4\xf4\x5f\x5d\x36\x2c\xe9\xa1\x84\x40\xce\xa3\xcd\xb2\xee\x67\x95\x22\xf1\xfd\x3e\x78\xd0\xab\xb6\x56\x86\x73\x29\x3a\x43\x72\x7d\x40\x8d\x83\x1e\x6e\x17\x7e\x50\x1a\xed\x08\x5f\xfa\xfb\x50\x45\xcf\xe0\xda\x3a\xaf\x23\x5d\x4c\x39\x3a\xbf\x8f\x72\x13\x10\x31\xef\x82\xa0\x1d\x01\x22\x9a\x17\x45\xbb\xa5\x51\x4d\x7b\xad\xc5\x82\xd0\x70\xed\x56\x34\xd3\x17\xca\xe7\xb6\x3f\x84\xa9\x6c\xd8\x19\xc9\xaf\xa9\x6b\x06\x63\x65\x41\xbf\xbc\x5d\xa5\x14\x3d\x84\xdc\x98\x46\xb9\x6a\xde\x6b\xd3\x02\xc7\x0f\x94\xbf\x5c\x55\x8a\x9c\x95\x31\x88\x40\xf7\x9e\xb1\xa1\xeb\x86\xe6\xbc\xef\x7a\x52\x3d\x06\xad\x3d\x1e\x38\x53\xf0\xc9\x43\xf1\xc8\x9a\x5c\x84\x44\x6f\x3a\x17\x8b\x20\x0c\x30\x45\x4d\x0c\x27\x5a\x9e\x15\x46\x4b\xbf\xcf\xa1\x40\xcf\x5f\x35\xb5\x8e\x08\xea\xe9\x31\x3d\x5d\x17\x3d\x93\x03\x9d\x74\x2b\x9b\x7c\xce\x2e\x20\x72\x0e\x90\x92\x03\x39\x8d\xb8\x35\xc8\x87\xc6\xaf\x01\xb3\xbe\x03\x68\x50\xf2\x32\xbf\x8a\x7d\x60\x9f\xf2\xce\x68\xc2\x7b\x2e\x7f\x18\x73\x4e\x2d\x77\xd1\x32\xde\xf8\x4d\x40\xf3\x53\x52\x95\xf0\xb7\x31\x09\xe9\xe2\xde\x97\xb6\x5f\xcb\xe7\x92\x82\x77\x65\x87\xee\xd1\xb9\xa4\x79\x0b\x93\xe2\xae\x51\x6a\x35\x5c\xa9\xc4\x2e\x7f\xa1\xf9\xa7\xd7\xf9\x15\xce\x29\x79\xe0\x88\x76\x4d\xbd\x62\x5d\x54\x27\x29\xed\x59\x86\x1c\x65\x0b\xd9\x07\x2b\xaa\x33\x9c\x0a\x64\x12\xc0\x6e\x0f\x91\xbd\x40\xcd\x7a\x6e\x94\x39\xaf\xf3\xab\x30\x25\x5a\x49\xaf\x37\x37\xca\xd3\xbc\x08\xdf\xf8\x5d\xe4\x54\x18\x8d\x75\x51\x6f\xf6\xed\xa5\xaa\xc5\x45\xa2\x56\x1e\xa2\xcd\xf1\x42\x5d\x58\x82\xaa\x64\x9a\x4a\x3a\xa1\xf4\x13\x54\x6b\x2f\x31\xb7\x20\x62\xb3\x14\x28\xe5\xe9\x72\x4d\x8b\xed\x86\x16\xda\x61\x21\x45\xe3\x31\x9b\x2e\xa5\x60\xb9\xb1\x8f\x30\xd3\x8a\x91\x8f\x5b\xb6\x51\x23\x81\x98\xcd\x91\x44\x04\x35\xfe\x9e\x79\x59\xa9\xd5\xd9\xa1\x82\xb5\x03\xb9\x33\x69\x05\x55\xa2\x26\x84\x47\xe5\x78\x2c\x5c\x07\x38\xa7\xaf\xf3\x2b\xaf\x95\x50\x05\xd5\x80\xc1\x79\x72\xf3\xbe\xc3\xed\x5b\xfc\xf0\xe7\x40\xa7\xcb\x0d\x93\x4c\x54\xe1\x61\x78\xcf\x64\x54\x99\x24\x85\x5b\xb6\x9b\xfc\xa8\x86\xb5\x1b\x41\x97\x49\x53\x3d\x30\x38\x90\x07\x3d\xe0\xc0\xd4\x46\x6e\xed\x05\x56\xb8\x5d\x50\xed\xc8\x79\x77\x95\xa8\xa3\x25\x7b\x9a\x97\x65\x25\x86\x35\x15\x43\xb1\xa6\x43\x56\x0c\x93\x89\x98\x24\x43\xc9\xd4\xac\xa9\x51\x9a\x81\x1b\x62\x96\x4c\xf8\x24\x19\xe6\xb5\x7c\xc3\xe9\x90\x81\xf7\x62\xbd\x75\xba\x35\xa6\x3a\x2d\xf3\xe5\x9a\x1a\x5f\x45\x29\x5a\x81\x47\x72\xe9\xa5\x89\x72\x53\x62\xea\xd2\x05\x6b\xf1\xad\x37\x79\x48\x87\x54\x61\xa1\x93\xe3\xfa\x7b\x57\x86\x5e\x75\x42\x17\x02\xdc\xb3\x0d\x41\x0f\x9d\x73\xb5\x04\xfa\x29\xfb\xbf\x2a\x52\x21\x29\x86\xf0\x3e\x1d\xf5\x9c\xea\xc7\x22\x0f\x3d\x79\xdf\x91\x48\xf9\xb4\x50\xbf\x4e\x6f\xca\x65\x2a\xe9\x98\x62\x72\xb8\xfc\x34\x1c\x8b\xd6\x9e\x9a\x8a\xa8\xa8\x0d\x17\x39\x27\x63\xec\x16\xbb\x5d\xb9\xdb\xa5\x25\x49\x14\xb2\xdc\x63\x45\xa6\x75\x9b\x25\xbd\x7e\xaa\x11\x28\x45\x76\x37\xe8\xf5\xf0\x52\x15\xd8\x74\xb4\x09\x97\x7e\x45\xe3\x03\xc7\x2b\x2f\x8a\x94\x59\x90\xb7\xe0\xa1\x5e\x4a\xca\x21\x57\xe5\xcd\x20\x22\x14\xe4\x74\x32\x31\x56\xa0\xfe\xfb\x25\xf8\x80\xb7\x91\x98\xab\x30\x8b\x92\xb8\x73\x32\x90\xac\x8c\xd9\x61\x73\x43\xee\x3f\xa0\x5d\xcc\xa0\x50\xfd\x46\xf8\x1f\xde\xc7\x3f\x5a\xca\x6c\x6f\x4a\x60\x7e\x44\xcf\x27\xfb\x87\xf2\x9b\xb7\xc7\x6a\xdd\x94\xd4\x0b\xba\x31\xd9\xfe\xfc\x99\xe8\x6b\x30\x8b\xed\x90\xb9\x22\x5b\x86\xa7\xcd\xbf\xbc\x74\xb1\x8c\xc7\x64\xac\xe2\x8f\xd7\xd1\xc7\x6e\xbd\x85\x2f\xb2\xad\x29\xb0\xff\x29\xfc\x4f\x94\x73\x8d\x48\x93\x69\x82\x14\x6b\x74\x45\xc9\x03\x7c\xd9\x7b\xcd\x9b\xc3\x1a\x97\x71\x58\x41\xfc\xb3\x66\x12\x4a\x1a\x9c\x25\xa5\x89\x96\xea\xb1\xb5\x9e\x7b\x6e\x82\xc1\x0b\xa6\x42\x00\xc3\xc6\x57\xb4\x2c\x58\x79\xe1\x05\x00\xbf\xce\xcb\xfc\x82\xf2\x17\x9b\x6d\xbd\xee\x0e\x1c\x38\x28\xb5\x86\x7f\x4f\x75\xd4\x7a\xd8\xad\xa8\xde\x54\x42\x4f\xa9\xd5\xc3\xf9\x2c\xb6\x66\xe5\x27\x07\x08\xde\xa8\x45\x87\xcf\xea\x16\xf9\x0c\xdf\x3a\x67\xdf\xf0\xf9\x79\x41\x57\x94\x73\x5a\x9c\xa9\x08\xbc\xf6\x6b\xee\xc5\x44\xb7\xe7\xa0\xb5\x8f\x9d\xe7\x81\x6e\xb2\x35\x0d\xa3\xab\x78\x2a\xaf\xbb\x3d\xe2\x2b\xa7\x52\x7c\xa2\xce\xcb\xe2\x70\x07\xa7\xe1\xd1\x55\x4c\xea\x3b\xf6\xf9\x72\xe8\x23\x81\x87\x92\xbf\x2e\xda\x45\x29\x1f\x31\xad\xaf\xa0\xae\x7c\xfe\xc3\x4f\xaf\x9e\x9d\xff\xf9\xf9\x5f\x17\xe4\x8a\x4e\x26\x13\xeb\x31\x72\x0f\x76\x29\x89\x6d\xbf\x17\x09\xa8\x37\x1f\xb8\xab\x2e\xae\x1b\x5f\x43\x83\xe7\xe6\xf7\x21\x1c\xb7\xed\xba\xf8\x6d\x5f\x75\x50\xcc\xcd\x8a\xd3\xda\x99\x07\xba\x38\xe7\x4d\xbf\x8b\x71\xfe\xcb\x00\xdf\x82\x45\x5b\x6c\xeb\x80\xc2\xe1\x5a\xa0\xdb\x60\x50\xdf\xac\xc3\xd0\x57\x53\x56\xbf\x64\x45\x41\xcb\x17\xbc\xba\xf4\x63\xfe\xbb\xb7\xad\x56\x5e\xe8\x44\x27\xe0\xc5\x3c\x2a\xa7\xef\x9f\x3f\x7d\xfb\xfe\xd9\xf9\xb3\xc7\x67\x8f\xcf\x4f\xcf\x1e\x9f\x3d\xdf\xed\x4c\x3b\x9d\xee\x23\x45\x08\x8c\x5b\x91\xb6\xe6\xe2\xd1\xd6\xdf\x17\xdb\xcd\xe6\xc6\xc6\x8a\x64\x10\xe4\x3a\x0d\x53\x15\x99\x14\xc5\xa1\x0f\x99\x49\x3d\xd3\xb7\x6b\x3a\xc0\x39\xca\x57\xe9\x77\x1e\xda\xec\x76\x54\xdb\x3c\x1a\x5c\xc5\x67\x17\x83\x4e\x64\x7d\xe3\x71\x3a\x4a\x47\xfe\xf6\x80\xa6\x5f\x07\xc4\xb0\xaa\x7c\x6a\x82\x8d\x0d\xd4\x0e\x34\x4b\x11\x80\x7d\x94\x46\x1a\xbf\xa1\xd7\x2e\xbf\x7c\x7b\x10\x5a\x44\xdf\xbd\xa1\xd7\x29\xda\xd7\x0b\x3e\x78\xf7\x8d\x40\x48\x82\xce\x40\xee\x55\xf9\x53\xbd\xc7\x78\x01\x21\x22\xce\x70\x31\x4a\xa9\xf6\x1d\x0b\x9d\xdb\xdb\x4f\xb5\x5b\x3b\x7c\x07\x50\xb2\x4f\x6b\x1c\x4c\x51\xb7\x55\xdd\x34\x86\x1e\xd9\x51\xb7\x76\x5d\x63\x78\xd0\xdb\x93\x16\x8d\x32\x76\x41\xd4\x7c\x3c\x76\xb4\x77\x88\x6e\x37\x35\x0b\x95\x4c\xe2\xc8\x59\xa8\xc6\xaa\x63\x2f\x1e\x0f\xa3\x68\xdc\x8f\x20\xb3\x7d\xb8\x93\xc5\xa6\xa1\xdf\xaa\x79\xbc\xa1\xd7\xbf\x62\x0e\x6f\xe8\x75\xec\xfb\x80\xd5\xd1\x6f\xbf\xa1\xd7\xea\xbb\xad\x34\x62\xaa\x98\x45\xf8\xd9\xe7\xef\xdf\xbf\x7d\x7f\x8a\xf6\x00\x14\x06\x91\xe3\xd9\xf4\x2b\x47\xed\x84\x6d\x2d\xbb\x5a\x43\x72\x3b\x84\x3a\xa0\x07\xe3\xf1\xa8\x87\xb4\x05\x92\x8e\x12\xc5\x38\xb9\x85\x3f\x32\x81\x43\x93\x0c\x80\x04\xfb\x73\xe9\x02\x09\xeb\xbb\x32\xf3\x2f\x4e\xac\x63\xce\xbd\x37\x70\xcb\x37\x81\xb7\xb6\x9a\x77\xc2\x0a\xc9\xa4\x53\xcb\xec\x53\x15\xe9\x67\xc4\xcd\xd2\xb9\xa4\xbe\x2a\xd2\x52\xb1\xc7\x8c\x88\x56\x36\xe1\x67\x92\x95\x87\xb4\x0c\x91\x50\x38\x2f\xaa\x83\x21\x23\x6f\x54\x38\x6f\x2b\xfa\x6a\x72\xf2\xb0\x7e\x94\x1b\x11\xa4\x36\x22\xc8\x96\xe4\xf3\x7a\x81\x37\x84\xcd\xb7\x8b\x81\x5d\xc0\x46\x55\xb4\xf2\x4a\x18\x6c\x20\x4a\x73\x76\x43\x53\x3a\xdf\x2e\x50\x76\xa1\xff\xc0\xf2\x5f\x52\x19\xb9\x82\x74\x90\xf0\x5c\x4e\x5e\x6d\xac\x12\xc8\x74\xb8\x7e\x6a\xab\x9e\xe8\x18\x73\x8e\x97\xa6\x3a\x46\x6d\xca\xde\x73\xdc\xae\x83\x8f\x50\xc8\xef\x08\xcd\x50\xbc\xc8\x97\xa2\xe2\x37\xb1\x68\x41\x9b\xe7\xcd\xe4\x69\x57\x1c\xc6\xb3\x16\xc3\xe1\xfc\x17\xfc\x0f\x48\xcc\xf4\xb8\x18\xd2\x09\x31\xf1\xf8\xae\x2e\xaf\x6f\x78\x24\xc5\x09\xba\x36\x01\xcb\xf8\x3f\x53\x6a\x08\x71\xe1\xa1\x74\x27\x01\x5f\x60\x0c\xed\xe5\xca\xa2\x92\x85\xe5\xd5\xcc\x21\x0a\xae\x4d\xa3\x4c\x49\xad\xf8\xe8\xc5\xe4\xc7\xb9\xe1\x78\xee\x77\xda\xd7\x7c\x2e\x16\xe6\x23\xe3\xf1\x31\xad\x52\xa4\x13\xa8\x0c\xf7\xb5\x6e\x62\x13\x0e\x85\x89\x7d\x49\xea\x69\x9f\x40\x01\x66\xa3\xf6\x48\x73\xb1\x18\xb8\x39\x75\xde\x61\x15\x54\xde\x0a\x53\x1a\x8f\xb9\xd5\x12\xb4\x50\x17\x4e\x47\x68\x80\xe9\x65\x9a\xe3\x99\xa8\xaa\x9e\x4c\x8d\xe8\xf6\xb8\x6b\x43\x12\x9e\x3d\x4c\x91\xff\x3a\x1d\x9d\xd8\x58\x8d\xb2\x30\xf9\xbf\x4c\x39\x41\x39\x15\xc9\x0c\x45\xf4\x4e\xca\x83\x5c\x1e\x46\xe3\xb1\x2e\x54\xa9\x47\xcf\xc3\x01\x58\x7f\x4f\xf5\xe7\x28\xf8\xd4\xc8\x16\xa7\xf9\x67\x1d\xec\xcb\x31\x45\x98\x9b\x50\x2c\xf8\xb2\xc8\xb9\xa0\x85\x3b\x75\xed\x33\x1a\x9c\x48\x7d\x3e\xbc\xd4\x23\x96\xe6\x04\x87\x02\x27\x5e\xb7\x44\x85\x03\x54\xe0\x40\xf2\x97\x5c\xb3\x31\x60\xd8\xef\x0d\x8b\x56\x38\x76\xdb\x0c\x38\xd8\x2c\xbb\x7b\x7f\xb5\xad\xd7\xe0\xec\x05\xb5\x84\x95\x7a\x23\x56\x51\x18\x07\xd7\x81\xf2\xa9\xaf\xa6\xf2\x52\xa8\xd7\x47\x2f\xfb\xc1\x57\x2e\xfb\x01\x52\x14\xb0\x63\xeb\xd7\x9b\x14\x82\x5e\xc7\x03\xdb\x7a\x9e\xde\xee\xab\x21\x86\xd5\x4a\xa3\xc0\xc0\x0b\xbd\xed\x96\x1a\x0d\x02\x9e\x85\x49\x16\xef\x65\xac\x4b\xf0\xad\x76\x8c\xc9\x38\xd6\xd9\xed\x32\x2a\x41\xd3\x89\xd6\xf4\x1c\xba\x5a\xb9\x0d\xb1\x68\x70\xb8\x26\x5e\x5d\xab\x66\xaa\x05\x05\xf7\xc3\xee\x2a\x96\xd5\xe5\x95\x3c\x00\x78\xa8\x4e\xe6\x70\xb5\xc9\x2f\xea\x04\x45\xc3\x5c\xbb\x5b\x25\xbf\x1c\x3f\xd3\x00\xed\x20\x39\x6b\x77\x57\x3d\xf1\x2c\xf5\x8e\xa4\xdf\xcb\xc4\x97\x44\xee\x93\xd4\x59\x4c\xa2\xd2\xbb\xbd\x1b\x3a\x62\xbd\xda\x25\xbe\x2d\xa7\x1f\xf3\xe5\xa7\x8f\x5b\x5e\x4a\xfc\xd1\xad\x24\x49\x80\x66\x4a\x4f\x81\x93\xf3\xe5\x9a\x2e\x3f\xbd\xa8\xf8\x5b\x7e\xb5\xce\xcb\x56\xa0\x60\x0d\xc1\x52\x4a\x0c\x68\x4b\xa2\xbd\x02\x77\x67\x4a\x72\x80\xc0\x38\xd6\xbd\x9e\xc3\x6b\xb0\x5f\x5b\x37\x7a\x80\xdd\xfa\xd4\x98\x3d\x70\x40\xfb\xd4\x1e\x8a\x28\x5b\xd3\x44\x77\x3e\x9d\x2f\x6b\xc2\xdb\xb6\xf1\xa9\xd6\xfb\x61\x98\x22\xdc\x45\x89\x8e\xf6\x50\x3f\xb2\x17\x2b\x88\xf2\xfb\x07\x3e\x62\xda\x47\xa9\x7f\xbc\x89\xc9\xaf\x1e\xc8\x23\xe1\x53\x7f\xa7\x24\xea\x4b\x29\x51\xa9\xf2\x8a\x4f\xa2\x89\x7c\x94\x0e\xd9\x25\x2f\x89\xdc\x2c\x61\xef\x6e\xe0\x98\x22\xd8\x30\x50\x8b\x9e\xb8\x78\xf1\xcf\x34\x65\x98\xe2\x16\xc7\x2e\xfb\x80\x27\x00\x3e\xbe\x8b\x31\xe0\x22\x2d\x09\xc5\x97\x15\x58\xcf\xce\xfb\x5c\x9e\x5d\x1e\x02\x97\xe9\xf3\xc8\xfc\x2c\xc6\x48\x6d\x92\xbb\x94\x61\x95\x27\x9c\xbb\x92\x50\xd5\x6e\x57\xe1\x9a\x80\xa3\x06\xc5\x4a\xcc\x62\xb8\xaf\x2a\xb3\x12\xb8\xec\xf7\xb2\x12\x6c\xb3\x20\x35\xe5\x46\x12\x01\x8b\x5f\x91\x8b\x7c\xb6\x2f\x91\x8a\x6a\xa2\x7c\xd9\xc0\x31\x39\x5c\x9f\x24\x28\x2f\x72\xb6\xa1\x90\xe8\xf6\xb1\x10\x92\xb7\x46\x2d\xc6\x3e\xca\x4e\xea\x6c\x37\x1b\xaf\x76\xa7\x07\x53\xf0\x8a\x6a\xb1\x28\xe7\x8a\x84\xfb\xf5\xba\x25\x68\xbd\x7c\x4a\x98\x62\x1b\x0b\xb7\xb1\x05\x58\xb7\xb3\x6d\x27\x96\x03\xb7\xaa\x5e\x67\xb5\x4b\xe6\x71\x27\xc0\x44\xa2\x44\xaa\xc0\x1f\xb0\x8d\x51\xad\x08\xe1\x07\xc8\xf7\x73\xba\x3b\x06\x95\x51\xec\x34\x9e\x7f\x0e\xc5\xda\x1c\xb4\xc9\x89\x65\x8a\x30\xfb\x9f\xdf\x17\xe0\x59\x22\x9c\x93\xd1\xa8\x0c\x27\x39\x1e\xb7\x1e\xb4\x19\xf3\x14\x0d\x18\xf9\xb3\x0d\x58\xd4\x6a\x02\x87\xfb\x8e\x0f\x53\x73\xb8\xd4\xe0\x4e\xb9\xf2\x43\xc0\x6e\x7d\x59\x7b\xc1\x18\x0a\xa1\x97\xaa\x1e\x9b\x3a\x1f\x41\xe8\x7f\xc6\xed\xb1\xba\x72\x4f\x71\x90\xd5\xb6\xb2\x91\xce\xed\xc4\x07\x39\x8e\xa8\x32\x5c\x2a\x04\x61\x53\x06\x76\x00\x4c\x58\x5b\xc2\x8d\x0a\x3f\x74\xe1\xc9\x87\x3d\x2d\xba\x72\xda\x81\x0e\x60\xc5\xae\xa6\x10\x3f\x04\xeb\x78\x19\xc9\x81\x15\xf8\xcd\x2b\x1e\x32\x27\xd1\x43\xeb\x0c\x39\x9e\xbf\x54\xbe\xdb\xa5\x39\x69\xd3\xf8\x5e\xcc\x51\xc6\x43\x2c\x30\xeb\x8f\x01\x28\x3b\xf1\xcc\xca\xd1\x21\x4d\x0c\xc4\x41\x34\xc0\x65\xd3\x9f\x23\xe4\x33\x4d\x2b\x4c\x71\x8b\x50\x61\xd1\xb9\x25\x0e\x76\x51\x37\x2b\x6a\x0e\x5a\xb7\xe4\x66\xe7\x38\x37\xb7\x49\x0c\xd6\xfb\xee\x12\xef\xb4\xfe\x8a\x9b\xa4\x7d\x79\x54\xee\xf2\x60\xbb\x1d\x33\x5b\x1b\xf8\x2a\x53\x5c\x81\x4e\xab\xd2\x95\xd9\xbe\x2d\x6d\xaf\xd5\x17\x3b\x48\xa8\xbc\xb1\x70\x7e\x2c\x81\x37\x7a\x31\x9f\xbc\xd7\x96\xbc\xe7\x8e\x72\xe7\xc0\xa7\x44\x47\xd9\xe7\x74\xd4\xaf\xf1\x00\x7d\x1f\xb2\x7a\x3a\x3e\xd5\x1f\x95\xf4\x0e\xd0\xd2\x16\xfe\xb6\xaf\x2c\xc6\xea\x99\x26\x4e\x7a\x46\x03\xba\xa9\xa9\xe6\x93\x82\x82\xa5\xb3\x75\xb6\x1c\x1c\x98\x0b\x61\x4e\xb5\xd6\x26\x2c\x7d\x0a\x1b\x2b\x4b\x1e\x83\x92\x7b\x4e\xbc\x44\x0e\x1b\x83\x34\x08\x41\x17\xc7\xe4\x41\xe7\x86\x48\xdb\x57\x44\x0d\xed\x3b\x18\x96\x8e\x1e\x48\x18\x76\xda\x9e\xae\xab\xed\xa6\x78\x51\xf1\x25\x55\x92\x5d\x3a\x3a\xb1\xbe\x41\x5f\x79\x6a\xaa\xd8\x99\x40\xe6\xa8\xc4\x10\x97\xe1\x12\x57\x1d\xc4\xed\x3d\x07\xb3\x3b\x23\x76\xde\xa0\x2c\x77\x1b\x77\x1c\x67\xfa\x0d\xb6\xce\x67\x68\xff\x9f\xda\xbc\x0e\xeb\x58\x62\xf6\xad\x36\x28\xce\x5a\x56\x0d\xca\x2a\x4f\xf4\x74\x26\xec\xb0\x72\x4d\x4c\x28\x9e\x45\xd5\xc5\x59\x57\x66\x2c\xba\x22\x76\x5b\x1f\x1d\x38\xad\x8c\x4e\xa2\xda\xe4\x18\x7f\xb0\x47\x9b\xdc\xa3\x9e\xed\xd1\x13\xf7\xb4\x6e\x10\xae\x69\xea\x76\xd5\xfa\xa7\xc9\x47\x28\xe2\x1a\x34\x3a\x31\xf2\x6a\x5f\xd6\xc4\x3d\xc2\x6a\x3b\x81\x62\xe5\x55\xdb\xed\x75\x59\xf3\xc6\xf0\x6a\xf3\x52\xa5\x5a\xa5\x62\x7b\xd5\xa9\x41\xe4\xfb\x8d\xc7\xb4\x8a\xb4\xa5\xf1\xd3\xee\x9f\x9d\x9c\xcb\xda\x06\x70\x1e\x94\x2c\x67\x14\x2a\x71\x42\x0b\x97\x9c\x3d\x35\x0c\x85\x5d\xe2\xcf\x61\x90\x52\xdb\x0f\x2f\x3c\xd1\xb2\x97\x5b\x12\x98\x71\xe3\xd7\x40\xdf\x18\xad\x5e\x29\xc5\x37\x34\x15\x28\x18\xb1\x8f\x3e\x1d\x1a\xd3\x3f\xb0\x17\x9d\x51\xfb\xd0\x80\xad\x52\x8b\xf9\xc6\x4d\xa0\x27\x93\xa9\x26\x48\xb4\x18\x8a\x0a\x9c\x84\x4d\x46\x52\x51\xc9\x3f\x85\xfc\x53\xbb\x0a\x6b\x07\x03\xe7\x32\x0c\x78\x3a\x30\x1f\xeb\x6c\x40\x4a\x91\xe7\xf5\x1b\x5b\x5d\x88\x93\x83\x1e\xd6\x8f\xd5\xb2\x9d\x2a\x83\x42\x35\xbe\x68\x7d\x7f\x90\x73\x3f\xc1\xb7\xa5\x94\xe2\xa9\xad\xa0\xc1\x1d\xcf\x23\x40\x2b\x17\xe4\x30\xed\xab\x2f\xfb\xc4\xe5\xef\xac\xa6\x5e\x55\x97\x88\xa2\x19\x66\xe1\x35\x49\xbc\x5e\xed\x02\x5d\x9d\x3e\x54\xe7\x14\x92\x1d\x4c\xc1\x91\x9e\xe6\xe6\xb5\x6a\x1c\x2b\xff\x15\x34\x77\x0d\x12\xa3\xce\xec\x94\x99\x89\xe8\x33\x0d\xd2\x58\xc7\x20\x63\xd6\xf6\x94\xef\x31\x6f\x94\x78\x15\x1b\x00\xf8\xe1\xaf\x0e\x8f\xf8\xe8\xec\xb6\xe9\x88\xb3\xd1\x64\xe8\xb8\x32\xe9\xd7\xff\x62\xcb\x19\xf4\x19\x47\x61\x10\x57\xf5\x20\x0d\x2c\x49\xee\x79\xe2\x8f\x6a\xca\xf1\xf4\xc0\x3d\x28\x8e\xbb\xdf\x46\x26\x3b\xf4\xf3\x2a\xbe\x25\xd6\xba\x9e\x83\x07\xab\xbe\x87\xcb\x75\x5e\x16\x1b\x5a\x3c\xff\x4c\x4b\x91\x72\x0c\x45\x23\x64\x0b\x1d\xc7\x0d\xdf\x88\x25\x07\xeb\x22\x71\x1f\xe9\x55\x94\x57\x13\x35\x95\x58\x8c\x1a\x5c\x75\x2f\xd4\xc6\xb7\x9d\x23\x5a\x34\xbe\x15\x4d\xd4\xd6\xb0\x08\xe5\xd3\xdd\x92\x68\xfb\xc1\xe7\x26\x61\xc9\x63\x64\x1a\xed\xc5\xa5\x91\xd5\xb5\xfa\x9b\xdb\x49\x37\xda\x33\x07\x0f\x10\x86\xfc\x7c\xe5\x14\xc2\xee\x29\xdd\xf7\xd1\xc1\x5e\x38\x1a\xe4\xe8\xd5\x76\x00\xa9\xf6\x2b\x31\xf5\x66\x4c\x4c\xd1\xa0\xe7\x23\xe3\x31\x3f\xac\x87\xe9\x9b\x61\xa8\x95\xe9\xbc\xf6\x77\x16\x50\xff\x18\x90\xd2\xf1\x38\x01\xc7\xa1\x64\x04\x31\xb9\xe6\x2e\x32\xda\xc6\x38\x98\x75\x17\x84\x55\x77\x7d\x4d\xde\x75\x08\xd3\x0d\x05\xe3\xf8\x0e\x81\xfe\x88\xbd\xe6\x72\x53\x7d\x64\xbf\x33\x87\x22\x7a\xe0\x53\xfe\xcc\xf4\x50\x03\x74\x8b\x34\xed\x77\xe6\x83\x91\x62\x95\x9d\x06\xed\xdc\x66\xda\xbf\xc8\x46\xa8\x77\x2c\x95\x8e\xf6\xf9\x25\x95\x5a\x6e\x1d\x2a\xdb\x01\xf8\xf8\xd8\x34\x86\xfd\x0c\x9e\x22\x32\x7e\xd9\x97\x58\x66\x0b\x10\x5f\xaa\xd8\x15\xbe\xd2\xae\xfe\xf0\x3f\x81\x28\x80\xf9\xc9\x02\x35\x9e\xc4\x1a\x38\x54\xd5\x24\x77\x8e\x91\x93\xe4\xde\xf7\xc9\x84\x0e\x8a\xea\x36\x9f\xd2\x2f\x4c\x8c\xc7\xea\x7f\xcd\x94\xe7\x24\xf7\x0b\x32\x36\xd7\x6b\xb6\xa1\xe9\x28\x9f\x57\x0b\x75\x3a\xb7\x64\x49\xe7\x35\x1c\xb5\x2d\x12\x64\xab\xd8\xe4\x1a\x73\xb2\x9d\x52\x79\xc4\x6a\x9c\xcb\xa7\x40\xd9\x41\xcf\x21\xc8\x7c\x81\x39\x99\x1b\x45\x3f\xcc\x18\x82\x64\x4b\x72\x82\x19\xd9\xd8\x8a\xf3\x8f\x18\x24\x43\x4e\x73\x92\xcf\x37\xf3\x72\xb1\x40\x6a\xc8\xf1\x58\x67\x69\xcf\x11\xce\xd5\x07\x25\x45\xd5\x8f\x06\x30\x21\xa2\xea\xcf\xd5\x99\xc0\x6a\x1a\x19\xc7\x30\x89\x2c\x6f\x1a\xf7\x31\xde\xfe\x18\x9f\x97\x0b\xf5\x15\x05\x01\x98\x58\x07\x88\x24\x3f\xda\x90\xef\x77\x4b\x20\xc3\x11\x7c\x58\xb4\x3f\x2c\xe4\x87\x61\xce\xfa\xc3\x7b\xcf\x50\xeb\x46\xec\x51\x63\x85\xdc\xae\xea\x30\xa4\xb2\xc3\xf0\x6f\xc0\xeb\xfe\x6d\x98\x98\x3c\x53\x13\x92\x54\xe5\x30\x99\xe8\x58\x7d\x98\xc3\x24\x19\xc2\x86\x0f\x59\x39\x04\xe0\x0d\x13\x5c\x4e\x08\xf5\xf1\x67\x3a\x4c\xb0\xd3\x84\x8d\xc7\xa9\x1c\xe9\x69\x2e\x0f\x07\x24\xa1\x1a\xb6\x8b\x06\x70\x34\x49\xa6\x09\xc2\x6d\xd6\xbc\xd4\xe7\xc0\x15\x1b\x8a\x07\xd2\x76\x12\xb0\x09\x2f\x01\x9b\x8d\xa6\xa5\x10\xe0\x23\xe6\xdc\x4f\xc0\xc6\x17\x83\x07\xd6\xe4\xde\x76\x75\xd7\x89\xff\xcd\xd1\xd7\x8a\x07\xb5\x01\xe1\x65\x01\xb0\x81\x5d\xe8\x71\x62\x6b\x39\x72\xb6\xb9\x83\x76\x50\x70\x7b\x26\x38\x14\x28\xb1\xbc\xbc\xf4\x97\x34\xf6\xd0\x36\xf6\x68\x65\x3d\x85\x44\xe1\x26\xd5\x32\xae\x50\x43\x6d\xf2\xe4\x46\x69\x8f\xf6\x55\x25\xeb\x89\xc7\x02\x77\xf9\xd1\x83\x88\xe3\xd4\x81\x22\x67\x8a\xb4\x5d\x29\x95\xd5\x1e\xd1\x19\x83\x87\x4e\xe8\x2c\xd9\x55\x46\x58\x5b\xb2\x9f\x56\xbc\x44\x03\xe1\x8b\xed\x97\x4a\x39\x64\x63\xae\x4a\xa4\x18\x6b\x3b\xab\x59\xca\x83\x1c\x3e\x35\x64\x3f\x0f\x9e\x40\xc1\xa7\xd6\xb3\x79\xb9\x20\x62\x7a\x7e\x65\xbc\x5f\x3c\x4b\x78\x89\x19\x42\x59\xca\xbd\x4a\x3e\x30\xa6\x57\x5c\x40\x0d\xe8\x95\x18\x2a\x17\x84\xf9\x16\x84\xae\xe2\x80\x2b\x0c\x8b\x7c\xb0\x97\x8d\xc6\x7e\x5c\x70\x1c\x1c\xda\x24\xe0\xc5\x5c\xdc\x16\xb9\xc8\x33\x5f\xed\x5c\x2a\x27\x53\xd1\x97\xa0\x86\x4f\xcf\x97\x95\xdc\x6e\xf1\xae\x3b\xb9\xb3\xea\x4f\xa7\x6f\xdf\xa4\x14\xcb\xe5\x69\x21\xe6\x60\x6b\x21\x5b\x2b\x8f\x88\x03\x4d\xa3\xea\x84\x6e\x2a\x92\xdd\x2e\x29\xb7\x12\x4b\xfc\x4c\x24\xb7\xca\x9a\x88\x59\x91\xd1\x26\x53\xbf\xd2\x6e\xea\xad\x59\xfb\x41\x46\x91\xa7\x66\x64\x45\xc6\xa7\xac\x50\xa5\x8e\x39\x38\x0a\x75\x68\x74\x57\x5c\x02\x62\xc2\x3b\xe1\x3d\x26\xdf\x92\xcd\x9a\x6c\x49\x0b\xb8\x23\x47\x8e\x0b\x35\xf9\x29\x58\xa1\xb5\x7d\x05\xa1\x58\x8c\xc7\xda\xff\x98\x06\xe4\xcb\x0b\xaf\x6e\xab\x4b\x69\x18\xb4\x07\x09\x98\x8f\x90\x8f\x3a\x4c\xa1\x96\xd1\x8d\xb3\x56\x97\x79\x55\x5e\xb7\xb4\x15\xf9\xd4\x75\x00\x0c\x3e\x56\x5b\x35\x87\x64\x91\x6e\x8d\x13\xf8\xe8\x24\x74\xfd\xa6\x8d\xe5\x28\x2d\x9b\xd6\x01\x7e\xdb\xed\xb7\x1d\x7d\x75\xd7\x39\x3c\x08\xe7\x00\xd6\xfd\x96\xd0\xdc\x96\xc4\x0d\x2c\x5a\xfc\xe4\xa0\x47\x7b\x68\x6b\xec\x75\xf5\x3f\x46\x48\xef\x97\x9a\x30\x3d\x42\xa7\xa8\xa6\x5b\xf8\xe5\x0c\xcf\xaa\x3e\xf5\x5a\x2b\xd5\x93\x27\x29\xe0\x04\x80\x5b\x27\x68\x7a\x9e\x17\x85\x55\xb5\x1e\xa8\xfe\x18\x00\xe6\xb8\xd1\x4d\x28\xb3\x52\xb3\x74\x4a\x31\xfa\x9b\x7e\xdc\x80\x36\x6a\xb8\x72\xa5\x27\x0f\x86\x7e\xa8\x18\x8c\x88\x4a\xe8\x82\x0a\x35\x44\x37\xfe\xc3\xbe\x4a\x6f\x1b\x64\xc5\x82\xec\xa8\x59\x5e\x78\x29\xd9\xd1\xf7\x27\x21\x92\xe9\x4a\x98\x79\x4c\x1d\x1a\x0d\x1d\xd1\xf9\x12\x55\xfe\xc1\x48\x54\x47\x38\x5d\x08\x64\xe0\x43\x88\x9d\xa0\xed\xaa\xeb\xdc\xb0\x49\xfd\x48\x94\x72\x4c\xe7\x7c\x61\xac\x39\x9f\x5b\xb8\x1c\x56\x56\x45\x18\x0c\xd2\x1a\x3c\xe3\x71\xca\xc8\xfc\x56\x30\xb1\xa1\x59\xa2\xdb\x0c\x75\x69\xd7\x42\x4a\xe1\x9b\x2c\x49\xb0\xf2\x20\xc8\x6e\xaf\x2a\xa0\xd7\x59\x72\x1f\xd2\xd4\x34\xcd\x22\x72\xb1\xaa\x3a\x9a\x50\x33\x5d\xb2\x19\xb4\x48\x6f\x1b\x79\xed\x48\x99\x64\xd8\x99\x97\x16\x03\x8f\x1b\x46\x0d\xa2\xf3\x0c\x4a\xa8\x55\x3d\x50\xab\x8e\x80\x5a\x85\x29\x08\x57\x7b\x40\x75\xc4\xa4\x7c\xd5\x82\xda\xce\xb6\x6e\x41\x0b\xca\x83\x7e\x04\x50\x29\x40\xf7\xa2\xf3\x6e\x67\x72\x58\xa9\x4f\xe9\x39\xfa\x5f\x4c\xa9\xaf\x3c\x8a\x34\xe8\x52\x49\x5f\x15\xc1\xba\x1d\x8c\x5e\xce\x9d\x84\x9e\x9b\xa7\x77\x43\x7d\xcf\xe2\xa3\x80\x29\x05\x13\x9d\xc5\x2c\x92\xcc\xf8\x91\x4e\x4f\x61\x2f\x57\x48\x2d\xa2\x6f\xe7\x49\xf2\x7d\xa2\x48\xa2\x0e\x84\x6d\x7b\x1d\x04\x8a\x50\x17\x4a\xab\xdd\x0c\x46\x56\x98\x7b\x6d\x54\x9d\x03\xcf\xfe\x08\x5e\x02\xaa\xa0\xd0\x9f\x3c\xd3\x9a\xf2\xa9\x29\xb1\x40\x01\x67\x47\x21\x0f\xa1\x6c\x4c\x69\xb4\xb5\x8d\x7d\xf0\x66\x41\xb8\xf5\x80\x6b\xa7\xa1\x72\x8c\xe6\x11\x09\xa5\xa0\x9d\xcb\x0e\xe5\xe2\x8f\x3d\x7e\xc5\xfa\x77\x85\xf0\x44\xe8\xf8\x42\x5a\x7e\xe5\x2c\xec\xd7\x21\xb3\x91\xc8\x7d\xdd\x03\x87\xec\x56\x9f\x96\x2e\xd3\x8b\x6a\xa6\xd7\xc3\xff\x6a\xc3\xb2\x15\x63\x62\x5b\xbb\x9a\x66\x5e\x8d\x85\xf6\x6c\x5c\x2a\x19\x35\x86\xd7\x36\x50\x6e\x69\x01\xd5\xcf\xc1\x0f\x82\x43\x8b\xcf\xd3\x68\xd8\xe2\xf6\xda\x66\x70\x6b\xa5\xa6\x98\x86\x5e\x24\xde\xcb\x06\xd7\x34\xac\x9b\xd2\x69\x42\x3a\x6b\x54\x6c\xc9\x51\x30\x0f\x7a\x58\x88\xb7\xc2\xce\xe9\xf5\xf0\x27\x14\x8b\x48\xf7\xb6\xdb\x60\xef\x91\x3b\x6d\x9a\x7b\x9b\x6c\x03\xda\x63\xc9\xcb\x3a\x61\xef\x6e\xcd\x6d\x51\xfe\xb8\x75\xb7\x7b\xb9\xb5\x77\xe2\xf1\xe7\xf6\x6e\xeb\xbc\xb3\xb3\xf0\x03\x95\xf7\xd7\x9c\xf3\x3c\xc3\x4d\x67\xcb\x0d\xf7\x74\x1d\x05\x2c\x83\xca\xe3\xb6\xe9\xe4\x71\x63\xea\x21\x66\xa8\x95\x95\xe5\x33\xf5\x5d\x0c\xd9\x2a\xed\x0d\x30\xf3\xfc\x55\xc4\x02\xf3\x1e\x77\x91\x07\x48\x8e\xc3\xfb\x1d\x4f\x4e\x14\x03\x52\x91\x7d\x21\x6c\x5a\x09\x56\x8d\xc7\x21\x6d\xe5\x20\x0a\x8f\xc7\x69\x65\xfc\xb8\x02\xef\x8a\xf1\xb8\x6a\xf9\x7b\xa9\x84\x14\x55\xcb\xd5\x2b\x92\x47\x56\x61\x12\xc2\xd6\x19\x74\xcf\x12\x1e\x20\xb5\x7c\x5f\x1c\x7e\x55\x9f\x8a\x7c\x43\x95\x63\x8d\x4b\xa9\x79\x43\x83\x74\xb7\x52\x82\xbf\xa0\x5e\x0d\x34\xb8\x8f\x81\xf1\xa3\xc8\x43\x45\x79\xd3\x50\x70\x9d\xb4\x72\xa6\xbc\x85\xc7\x63\x1d\xe4\x6e\xd6\xe7\xe8\xc6\xec\x2c\x15\xda\xb3\xd9\xe6\xad\xa5\x2a\x78\xf6\x23\xd5\x1a\x1a\x65\xb1\x74\x72\x07\x6c\xc4\x39\xc5\xd7\x14\x3f\xb7\x6d\x54\xee\xda\x22\x6d\x29\x4a\x23\x7a\x87\x16\xc7\xdc\xaa\x98\xd8\x2a\x9d\xd4\xa0\x29\xa7\xb9\xca\x2e\x85\xf0\x97\xee\xe7\x14\x8f\x3d\x35\x99\x14\xbb\xdf\x1b\x79\x05\x6f\xc2\xc6\xe8\xfb\x93\xd6\xf8\xa7\xed\x74\x12\x8a\xe3\x9e\x7d\xa1\xd9\x73\x3a\x38\x8f\x27\x9b\x38\x12\x00\x86\xe8\xeb\xb2\x24\x2e\x69\x9b\x8b\x79\xa7\x41\x90\xfb\x1d\xe0\xe4\xdb\x74\x82\x15\x65\xcf\xe5\x36\xfd\x46\xd3\x7e\x43\xaf\x67\xd4\xc6\xc5\xdf\x6d\xba\x60\xc5\x6a\x4f\x15\x10\xeb\x2d\x8d\xd6\xb1\xab\xf0\xed\xdd\xab\xd2\xc5\xa5\x3e\x3b\x41\x60\x49\xdf\xd3\xbf\x6f\x69\x2d\x80\x24\x37\x58\x0b\xd9\x6f\xa8\xb8\xae\xf8\x27\x9d\x8a\xb9\xf3\xd1\x3e\xc3\xda\xcf\x8a\xb3\x6f\xb0\x4e\x07\x21\xc1\x6f\x5d\x04\xdc\x0f\x5a\xc8\xbf\xbb\xc9\x17\xb2\x7d\x7b\x32\xd5\xde\x21\x49\xa4\x44\xa2\xc3\xf0\x68\x0f\xd4\x20\x6c\xf2\x34\xa8\x59\x68\x6c\xc9\xce\xe5\x8f\x37\xf4\x3a\xbb\x96\x7f\xc0\xf4\xb3\x53\x8a\xcf\x2f\x73\xfe\xe9\x55\x00\x9f\xc7\x35\x68\x3c\xb2\xde\xb8\xd8\x83\xd0\x35\x99\xf0\x22\x00\x06\xc3\xb4\xcd\x5f\xa0\xa6\x68\xb5\x34\x9e\x43\x85\xfc\x19\xe4\x19\xd0\xd1\xde\xed\x84\x04\xa0\x24\x52\x51\x08\xca\x9d\x10\xce\x7d\x1b\xbc\x51\x63\x23\x16\xe4\xc2\xb0\x09\x48\xd7\xcb\xe3\xf4\x82\xd5\x82\xf2\x97\x60\x79\xe1\xb5\xdf\x93\xc6\x85\xbb\x06\xf7\xb6\x31\x48\x12\x47\x4f\x53\xb9\x9a\xd9\x13\xc7\x56\x29\x0b\xa4\x39\x4e\xbc\xdf\x29\x42\x2e\x55\x01\x81\xd2\x35\x61\xbe\x82\x2a\x9a\xaf\x40\x28\x45\x0f\xe4\x2b\xa8\xe6\xf2\xbf\x85\xe7\x73\x14\x10\xc5\x98\xe8\x96\xb5\x1c\x27\xe2\x2b\xd1\x6a\xe3\x8e\x96\x27\x45\x5e\x32\x5d\x6d\xec\x09\xbc\x1b\x6d\xf9\x1d\x33\x65\x26\xa7\x0c\xa3\xed\x53\x54\xcc\xd9\x02\x8b\xb9\xfc\x0f\x6c\xf2\x7b\xda\xb6\x6a\xfb\xb5\x6f\x88\x50\x0f\x16\x59\x41\x87\x22\xb4\x3a\x5b\xad\x54\x47\xc5\x88\x6d\xb9\xe5\xde\x42\x68\x6d\xd2\xd9\xaa\x60\xed\x15\x6c\x86\x1c\x7c\xa0\x50\xef\x2b\x83\x18\xab\x33\xde\xaa\x07\x9d\xdc\x2b\xe8\x2a\xdf\x6e\x04\x94\x09\x3b\x66\x06\x2e\x6f\xab\x9b\x0a\x07\x17\x32\x89\x36\x37\x6a\x9d\x05\x03\xee\xc7\xfe\xf8\x09\x74\x9c\xf6\xa7\x72\x04\xb0\x3f\x15\x41\x52\x3f\x83\xa3\xe4\x3f\xf2\xa0\xe8\xcc\xf6\x06\xaa\x65\x91\xed\xf1\x51\x6c\x81\x41\x1e\x47\xb5\xb9\xbe\xc1\xfe\xd8\x1d\xf1\xfb\xc0\x1e\xf8\x01\xfc\xdd\x1b\x2a\xec\xec\xb7\x4d\xa1\x2f\xb0\xa1\x91\x8a\x6e\xfe\x0c\xc2\x5e\xda\x81\x21\xd7\x9a\x54\x3f\x58\xb9\xf3\xf9\x6e\x3c\x6b\x6b\x42\xad\xb4\xd5\xb8\xa3\x67\xee\xc1\xad\xc1\x47\x9a\x46\x2c\xbb\xbd\xb6\x4d\x0e\x66\x4d\x2c\xe2\xb7\xa7\x0a\xd7\xec\x38\xc7\x1d\x59\x67\x3b\xea\x54\xd7\x75\x15\x39\xb4\x37\x31\xe7\x92\x1e\x26\x42\xab\x3f\xfa\xee\x49\x00\x64\x78\x6e\x8e\x5d\x4a\xeb\xb0\xc9\x13\xae\x54\x56\xcf\x25\x27\x54\xb3\xaa\x3c\x6e\x24\x33\xc7\x4e\xed\xa6\x56\x65\xc4\x68\xc9\x8c\xba\x53\x7d\x30\x7a\x8e\xf2\x58\x29\x0d\x37\xa9\x06\x36\x35\x52\xf7\xd1\x54\x61\xf3\x3e\x19\xab\xba\xe1\x8c\x61\xd4\xa8\x09\x75\xc2\x1b\x08\xaf\xbc\x0d\x9f\x65\xed\x46\x0d\xc2\xc7\xad\x43\x97\xc8\xea\x2f\xe1\xc8\xd5\x4a\xb4\xf5\xbe\x07\x76\xda\x55\x2d\x31\x6f\xbd\x02\x7b\x7e\xfa\xd2\xfd\x95\xe7\xee\x49\x49\x98\x3c\xf0\x6b\xcf\x85\x25\xc4\xd9\x62\x20\x7c\x76\xb7\xd4\x99\xe6\xd7\x79\x9d\x52\xeb\xe6\xba\x87\x2b\x6e\x70\x2e\x04\xf7\x71\xa8\xc1\x56\x5a\x3e\x96\x04\xfa\x6a\xd0\x30\x90\x02\x35\x58\xab\x2a\xbf\x6e\x2c\x17\x35\x23\x8f\x50\x41\x3f\x6e\x2f\x5e\x95\xab\xaa\x5b\xc9\x73\x9e\xb0\x22\x59\x60\x41\x6e\x1b\xe5\x87\xa4\xac\x84\xf1\x4a\xff\x7e\x61\x72\x6a\x5c\x44\x1a\x53\xc4\x65\xae\x3c\xb0\x13\x77\xee\x13\x7c\xe5\xe8\x1f\xc5\xf4\xcb\x55\x5e\x16\xd9\xe8\xa4\x59\x04\x2a\xb7\x4e\x38\xbd\x77\x05\xb9\xd0\xcb\x39\x03\xfd\x83\x49\x09\xa5\x4a\x8b\xa7\xde\x0b\xc9\x1d\x97\x6a\x56\x6a\x26\x6c\x2a\xff\xf3\xe7\x50\x79\x73\x40\x48\x7b\x53\xa7\x2a\x7b\x8b\x29\x8f\x17\x8e\x91\xbc\x80\x34\x1a\xfe\x20\x73\x2f\xd0\x32\xe9\xca\x1f\x89\x94\xcc\x94\x98\x90\xf8\x32\xa5\x73\xa8\x33\xa2\x1b\xb6\xc2\xce\xa2\x41\x10\x3a\x03\xb4\x1c\x36\xea\x96\x95\xcb\xcd\xb6\xa0\x6f\xc5\x9a\x72\xef\x16\x19\x9d\xe0\x0b\x5e\x6d\xaf\xea\xac\x94\x6b\x91\xa4\xec\xb3\xa7\x55\xc8\x78\xd3\x34\x38\xea\xdf\xda\xd5\x55\xf6\xf8\xa0\x36\xb8\xbd\x21\x31\x46\xcf\x2b\xba\xd4\x97\x0f\xc1\xd7\x30\xbd\xa8\x78\x0c\x93\x5b\xf2\xae\x37\x28\x4e\x02\x97\x93\x27\x37\x6f\xf2\x4b\xaa\xad\x80\x50\x7e\xc2\x86\xa4\xf4\x9e\x10\x7f\x8a\x7e\x04\x0b\xee\x65\xea\x90\x81\x9d\xef\xf9\x7c\x47\xc0\xed\x65\x8f\xdb\x50\x6b\x05\xe6\x34\x68\x10\xcf\x96\xfc\xd6\xcb\x0f\x8a\x13\x55\x80\xe2\xd6\xcf\xc2\x2c\x85\xba\xb8\x76\x53\x4b\x40\xd3\x73\xd9\xab\xd1\xa7\xf5\x13\x25\x9d\xee\x6d\x7d\xb6\xa6\xc9\xe0\x91\x68\xd2\x91\xc7\xaf\x43\x9b\x66\x7d\xbf\x82\xf5\xa8\x7b\xb5\x71\xea\xd1\xc7\x81\xfe\xae\x39\x06\x32\xac\x48\xf0\x27\x8a\xf0\x5b\x3a\xe5\xb4\xba\xa2\x25\x18\x3f\xd2\x5b\x56\x2b\x99\x76\x74\xe2\x67\x7c\x00\x2f\x88\x9b\x2b\xda\xca\x9a\x94\xc5\x2c\x52\x6d\xef\xd8\x7d\xd8\xe9\x25\x8c\x17\x9d\x30\x7d\x8b\xba\xaf\xf3\xab\x3d\xc2\xb4\x1e\x22\x56\xce\x03\xc5\x91\xbf\x7f\xae\xee\x83\x89\xaa\x9c\x37\xa7\x0b\xe4\x45\x16\x04\x21\x8f\x2b\x56\x16\xaf\x82\xd3\x82\xfc\x28\x04\x52\xe2\xb2\xc1\xad\x56\xd1\x59\xc0\x70\x11\xf0\xaa\x21\x95\x39\xcf\x57\xbb\xc2\x24\xb0\xa9\xb3\xaa\x2c\x37\x5d\x8f\xad\x2d\xa9\x4d\x10\xb7\x57\x68\x60\x6b\x0e\x78\x5b\x91\xeb\x5e\x94\xae\x11\x66\x24\xad\x3c\x28\xed\x25\x36\x25\x42\x70\xbf\xe0\x9c\x54\xf6\xcb\x60\xe3\xd6\x55\x4a\x4d\x79\xbf\xd7\xb6\x00\x82\xf2\xe5\xb5\x78\x4c\x5b\xe5\xf7\x08\x03\x53\x71\xbe\x67\x06\x6a\x9f\x46\xb9\x59\x4e\xa5\x83\xc5\x73\xb5\xab\x7e\xa2\xfc\x2d\x01\xa6\x67\xca\x6a\xc5\xfc\xd4\x68\x56\x4f\x57\x6c\x23\x28\xef\x14\x66\x13\x84\x77\x61\x0a\xb7\x24\xb2\x4b\xd3\x0a\x5f\x61\x80\x65\x19\x48\xfb\x64\xb7\x2b\x89\xf7\xb3\xd1\x99\x4f\xf4\x54\xb7\xe3\xb1\xba\x57\x35\xe3\x54\xe1\x2d\xc2\x62\x0a\xbc\xd4\x52\x9e\xc6\xf1\x98\xa6\xfe\x6f\x80\x4d\x85\x70\xd5\xb8\x74\x6a\x72\xf5\x27\x90\xe3\x51\x57\xde\x6f\x23\xca\x92\x6c\x3a\x8b\x14\xc6\x3a\xdc\x5d\xa4\x88\x2e\x72\x48\xc1\xc3\xcf\xae\x03\x1c\x62\x97\xce\xef\x62\x43\x96\x08\x97\x64\x33\x3f\x59\x28\x56\x82\xa9\xbf\x35\x3a\xc0\xdf\x7a\x44\xad\xf6\x51\x8e\x74\x1c\x03\xef\x50\x62\xd9\x30\x63\x36\x19\x58\xde\x34\xad\xcc\x69\xa7\xc1\x6f\xb9\xa1\x87\x15\x6c\xb7\x86\x33\x9c\x2f\x3c\x96\x73\xbe\x68\x3a\x4c\xd5\x53\x3d\x86\x05\x43\x8b\x93\x6b\x79\x83\x8e\xc7\x74\xae\x8c\x3c\x0b\xc7\xdc\x61\xda\x20\xac\xcb\x13\x9e\xdd\x5c\xd1\x3a\x7b\x8b\x23\x87\x25\x7b\x1c\x3e\x55\x74\x2b\xfb\x84\x57\x8c\x6e\x8a\xc3\x8b\x92\xcc\xfb\xeb\xfc\xea\xd7\x2e\x61\x46\x75\xcd\x10\xb5\x0e\x94\x71\x1d\x41\x08\x97\xac\x94\x80\xd4\xeb\xc4\xba\x9f\x26\x7a\x8d\xbe\xb2\xee\x00\xff\x73\xdc\x55\xd0\x71\xd9\x85\x04\x50\xa6\xe0\x26\xd4\xda\x69\x7c\x5e\x4b\x81\xb7\xf5\x29\x27\xf0\x44\x3f\xaa\xb7\x04\x2a\xd0\x9f\x3c\x2c\x9d\xaa\xcf\xba\x41\x33\xc2\xe7\xe5\x62\x60\x3f\x0b\xbe\xa5\x05\x15\x94\x5f\xb2\x32\xf0\x50\x8e\x7c\xdd\xe4\xa4\x84\x3a\x0d\xf2\x7f\x89\xf7\x3a\x16\xdd\x63\xa8\xb8\x77\x45\xb0\x59\x68\x34\x54\xbc\x79\xeb\x61\x39\x4b\xaa\x92\x9e\x55\x6f\x4b\x9a\x64\xc9\x65\x5e\xde\x98\xbf\xa3\xcd\x40\x92\x31\xed\xf4\x8f\x68\xc3\x37\x95\x37\x20\xfc\x50\x62\x5a\xdc\x30\xf0\x2d\x71\xd0\x43\xb1\x94\x03\xad\x20\x02\x5b\x5c\x44\x11\x1c\x03\xf5\xd7\xaa\xe2\x97\x81\xa2\xe6\x6b\xa7\xd8\x2b\xac\xc1\x15\xe5\xf0\xde\xf0\x20\x51\x94\xef\xe3\x5c\xdb\xa8\xe7\x40\x7a\x37\x34\x3f\x8b\x2c\xf9\xc0\xa7\xa2\x50\x3a\xfe\xab\x46\xe9\xd3\xe5\x49\x95\xbb\x4e\x66\xe2\x31\xdc\x17\xed\xcd\x9a\x20\xc3\x2c\x9f\x51\x92\x3c\x67\x52\x10\x53\x15\xc4\x87\x15\x1f\xe6\x43\xe3\x3e\x32\x64\xf5\x90\xd3\xbf\x6f\xd9\xff\x9f\xbd\x77\x6d\x6f\xdb\xc6\x16\x85\xbf\xeb\x57\x48\x7c\xf7\x51\x89\x13\x58\xb5\xdb\xee\xcb\x28\x65\x3d\x69\x92\x4e\x33\xd3\x4c\x7a\x92\x74\x3a\x3d\x1a\x1d\x6f\x5a\x82\x2c\x34\x34\xa8\x92\x90\x1d\xd7\xe2\x7f\x7f\x1f\x2c\xdc\x41\x90\x92\x13\xa7\xed\xcc\xee\x7e\xf6\x34\x16\x71\x07\x16\xd6\x0d\xeb\x52\x91\xe5\x30\xaf\x45\x15\xad\x26\x98\x24\xf8\xf1\x9e\xec\x61\xb3\xb3\x79\x90\x1d\x03\xb2\x88\x78\x9f\xae\x69\x51\x48\xc5\xaf\x71\xb6\xab\xa3\x69\x41\x4c\xb1\xac\x5d\xc7\x7a\x26\x7d\x9d\x86\x39\x18\x5a\x1d\xce\xe6\x7d\x09\xc8\xce\x04\x65\x52\xec\x6e\xb7\x07\xbe\xb2\xd5\x71\xea\xea\x94\x3a\x3a\x6e\x5f\x30\x6c\x7f\x1c\x3d\xba\x4a\xd3\xfe\x49\xf7\x96\x0a\x56\x0c\x29\xe9\x5f\xf5\x8e\x47\xc7\x26\xf1\x61\x6c\x9b\xb4\xda\x33\xbe\x85\xc7\x03\x27\x5a\x98\x5e\xac\x0d\x4f\x39\x28\x27\x3f\x96\xd4\x53\x8f\x95\x4e\xc8\xca\xfa\x86\x2d\x3c\xbf\x91\x04\x53\x4c\x27\x67\xab\x62\x5b\xaf\xbf\x8d\x2f\x41\x80\x7a\x63\x54\xc2\x1d\xe6\x84\xae\x2b\x94\x8e\x3c\x71\xa6\x42\x4f\xf8\x19\xc5\xd8\x78\xcc\x22\x7d\xa5\xf2\x8c\xfa\x26\x12\xc6\x6c\x3f\xd9\xb3\x8d\xae\xdf\x4f\xc7\xf1\x0c\xf6\xc1\x63\x3f\x38\x3b\x4f\x64\xc1\xa2\xb5\x6b\x94\x4d\x81\x94\x7d\xa6\xf7\x87\xcc\xaa\x39\xa6\xe2\x9f\x07\x27\x2a\x6f\x28\x2e\xe1\xe7\x27\x82\x6d\x17\x7f\x7c\x3a\x17\x32\x8a\xde\x39\x10\x5b\xd0\xa0\x1e\x8f\xeb\x98\x87\x74\x9a\xa3\x06\x4e\xc8\x62\x4e\x2f\x84\xfa\xde\xbb\xd2\xd1\x4e\xdd\x9b\xee\xd8\xec\x7b\x3b\xee\x09\xeb\x2e\xfb\xb6\x64\xfe\x20\xaf\x1b\xdd\xf1\xa5\xbd\xd9\x1a\x3d\x3c\x52\xfb\xdf\x3b\xe4\x8c\xcf\x91\x89\x8b\xf7\x17\x72\xe3\x1e\x99\xca\x26\xe8\xc7\x9e\xfb\x55\x26\xa6\x03\xf6\xb5\x27\xb7\xc7\x2b\xdc\xc9\xfb\x36\x7a\x4e\x24\x6b\x10\x26\xed\x7b\x4d\xb4\x95\x78\xff\x35\xa5\xe3\x31\x8d\x6b\xa2\x98\x33\x95\x2e\x4f\xfd\x43\x67\xa2\x26\x10\x47\xcc\xa6\x1b\x3b\x5e\xb7\x53\xfe\x07\x5a\x7b\xe8\xc5\xef\x4e\x26\xee\x47\xee\xd3\x90\x83\x07\x72\x3a\x53\x83\x58\x4b\xcf\x58\xf0\xb4\x7d\xeb\x8c\x5c\x47\xaf\x43\xd5\xcf\xbe\xc4\x90\x6e\x7b\xd7\xc3\xc9\xb6\xee\xc8\xf4\x72\xe0\x34\x0f\xa1\x18\x26\xcb\x8e\xa0\x1c\xde\x70\x92\x68\x2c\x69\xbd\x28\x19\x23\x8b\x76\x3a\x8d\xfb\x9b\x04\x0c\x1e\x8d\x36\xd5\x4e\x87\xf7\x9c\xb8\xaf\xdb\xa3\x74\x44\xc6\xe3\x11\x77\x4c\x03\x5f\x3a\x96\x99\xb8\x74\x1e\x3d\x58\x59\x5d\xe6\x32\x74\x75\xbd\x29\x59\x6d\x74\x3b\xb8\x74\x9a\x7f\x4b\x82\x10\x7a\x8e\xb5\x40\x2b\x07\x2d\xa4\xcc\xcb\x42\x83\x82\xca\xe4\x11\x95\xe5\xb7\xe4\x2d\xaf\xf2\x05\x9f\x86\x7b\x67\x1e\xd7\x1a\xcf\xf8\xf1\xc7\x60\x05\x62\x22\x5a\xe3\xf4\x28\xa5\x5d\xfe\x8c\x24\x7c\x3a\x2d\x95\x4e\x13\x92\x05\x08\x92\x67\xf5\x99\x08\x6f\x33\x32\x59\x51\xb6\x94\x29\xd4\x71\x8d\x19\xce\x11\x2e\x64\x90\x75\x69\xe8\x33\x7c\x24\x5f\x13\xff\x3f\x5d\x6f\x58\xae\x86\x1f\x41\xb2\xd1\x8f\x12\x9b\xa2\x24\xcb\xb2\x6d\x3b\x7f\xa9\x7a\x89\x34\x63\x0c\xe5\x2c\xc9\x72\xb8\x65\x52\x0f\xbc\xc4\x70\x83\x86\xd7\x79\x3d\xbc\x22\xd5\xcd\xb0\xa0\x6f\x48\x71\x33\xcc\x87\x97\xb4\xe6\xf9\x1b\x62\xcc\x34\xd3\x6d\xf6\x43\xba\xc5\x1c\x17\x28\x7c\xa1\x34\xc8\xe0\x25\x49\xbf\x15\x27\x0a\x66\xbb\x72\x3d\x40\xfc\x13\x3d\x01\xc7\xe8\x73\x72\x06\x4c\x23\x45\x8d\xaa\x23\xd6\xfc\x54\x1e\xd2\x70\x93\xdf\xd8\xd8\xf2\x95\x03\x19\x4f\x48\x80\x80\x94\xba\x33\x2d\x33\x0e\xd1\x72\xb1\xe3\x17\xcc\x9d\xe7\xaf\x09\x5d\xe2\x3c\xe3\xae\xb7\xea\x30\xc4\x69\xa2\x3a\x99\xd0\xa5\x31\xf2\x85\xca\xa4\xe5\xe2\x4b\xda\x2e\xbe\x03\x09\x1f\x41\x09\xae\x23\x78\xb3\x63\x70\xbd\x87\x44\x3e\xa5\x7c\x5f\xe5\x9b\x0d\xa9\x70\x99\x49\x79\x18\x26\x6f\x2d\xf1\xeb\x8c\x76\xf0\x16\x69\xae\x02\x6e\xd6\x3a\x0a\x33\xed\x23\xcd\x0c\xcd\xea\x39\xe8\xfb\x40\xd3\xa0\x1d\x79\x2d\x0b\x31\xad\xa5\x1a\x6e\xdb\x34\x8d\x25\x58\x69\x85\x39\xa8\x1d\xbd\x91\x8c\x5a\xe3\x2f\xe4\x06\x17\x59\x2d\x35\x1e\x8b\x2c\x9f\x6d\xe7\xe3\xb1\xf8\x2f\x9c\xd1\xc0\x4b\x43\x33\x1e\x1b\x10\x5e\xec\x76\xa9\xa8\x05\x0d\x76\xbb\xdb\x06\x9b\x36\x71\x56\x1c\xa2\x2e\x40\x02\xdd\xca\xd9\x9c\x3c\xbb\xa5\xcb\x29\x95\x11\x7f\xcb\xc6\x1b\x8e\x9f\x0a\x64\xe1\x48\x2d\x39\x9a\xca\x2f\xb7\x0d\xf6\xb2\xd7\x88\xbb\x68\x13\xbf\x36\xe9\x02\x17\x98\x23\xd4\x34\x80\xb2\x88\x10\x74\xc4\x30\xa5\x1c\x26\x6f\x1a\xec\x2b\x92\x4b\x74\x5a\x02\x9a\xc8\xd1\x34\x4f\x4b\x84\x06\xea\xcd\x57\x7a\x49\xdf\x2a\xe7\x5f\xd9\xbc\xea\x4c\x0e\x91\xd2\xec\xb6\xc1\x74\x06\xe9\x3e\xe7\x99\x6c\x5c\x83\xbb\x59\xe3\x5c\x8c\xbf\x86\x17\x23\x40\x35\xa5\xe2\xb6\x1f\x15\x85\x34\xcf\x2b\x27\x81\x69\x48\xca\x04\x82\x6a\x27\x6e\x30\x66\xe6\x9d\x86\x09\x12\x89\x3d\x92\x0a\x32\x79\x9b\x73\xd4\x18\xc4\x51\x67\x3f\xa4\x35\xe6\xb8\x0b\xab\x3d\x2a\x0a\x79\xd1\x69\x17\x66\xc9\x43\xcc\x42\x3d\xcc\xf2\xa8\x28\xda\x88\x25\x47\x42\xdc\x32\x36\x5f\x6a\xdd\xe5\x1e\x6c\xa3\xe7\xf3\x6f\xb7\xe6\x3c\x9a\xc4\xd9\xe6\x67\x4e\x5a\xf4\x68\x06\x55\xad\x70\x94\x5e\x7b\x10\x33\x42\x88\x43\x66\x76\xb6\xab\x6f\x7e\xf3\x39\x65\xbf\xea\xcd\xe9\xea\x44\x75\xa8\xc0\x20\xf4\xd6\xc4\x20\xa8\x15\x48\x45\x72\x38\xca\x80\xe5\x4a\x8b\xa2\xc2\x49\x10\xdf\x37\x55\x27\x75\xba\xd9\x10\xa7\xbd\x40\x51\x3a\xe7\x8a\x6f\x61\x93\x55\xc1\x07\xe5\xa7\x24\x2d\x00\x04\x82\x90\x7f\x99\x84\x91\xcc\x1a\x90\x1b\x2d\xcc\xc4\xce\x39\xee\x61\x63\x64\x71\x53\xf1\x34\xf8\x3d\x4d\xc3\xd5\xb7\x16\x3e\x39\x13\x34\xd5\xda\x55\x85\xfb\x85\x42\xaf\xb8\xbd\x2e\x6a\xb0\x4d\xc6\x13\x0e\xf6\xac\x3d\x2a\x6c\x2f\x74\x25\xf0\xd7\x1c\x8d\xc7\xdf\xb4\xbc\x6c\x98\xfc\x28\xd0\x9a\x60\xf6\xf0\xcf\xda\x04\x1e\xba\x00\x0f\x97\xf7\x32\x83\x97\xd6\x82\x9e\x83\x8b\x7e\xd2\x17\xbf\xa4\x9a\xc0\xa4\xbf\x50\x29\x08\xbd\x5f\x00\xe8\xea\x0b\x5c\x6a\x37\x69\x85\xd4\xce\xd9\x3f\x95\xda\x41\xce\x6b\xab\x6a\x2b\x8c\xa6\xf2\x7a\x54\x64\x53\xe4\x0b\xe2\x2f\x23\xe0\xa0\x5e\x43\x9a\xf7\x7a\x5b\x70\x81\x1d\xf2\x61\x4d\xaa\x2b\x52\x0d\x7f\xda\x0a\x5e\x29\x5d\x95\xd5\x30\x2f\x8a\x61\xdb\x67\x73\x28\xb6\xb5\x46\x43\x5a\x0f\xe9\xe5\xe5\x16\x6e\xde\x64\xf8\xba\x1c\x5e\x96\x4b\xba\xba\x19\xaa\x55\xd7\x78\xb8\xad\xc9\x90\x97\x92\x64\xa0\x44\x00\x00\x58\x9f\x07\x46\xf8\x56\xad\xda\x65\x79\x6f\x6a\x9c\xda\x4d\xe8\xf4\x81\x54\x81\x06\x5c\x0d\xb6\xb4\x7c\x7b\xc4\x1f\xab\x98\xd7\xed\xb7\xcf\x50\xd5\x6b\x1c\x79\x26\xba\xad\xa3\x15\x80\xb8\x74\x8e\xf3\x6d\x83\x65\x7c\x81\xb6\x09\x95\xd6\x42\xb6\xe3\x67\xe9\x43\x4e\x10\x6a\xc7\xf0\xb6\xc7\x39\xb0\xa0\xe5\xb4\xc1\xda\x5b\x4b\x1b\x21\xcb\xf1\xd3\x68\x46\x1f\x12\x87\x11\x1c\xcd\xcb\xd9\x4e\xd7\xa9\x93\x78\xb6\xe7\x70\x62\xe9\x60\x7c\xf2\x02\xa5\x35\xf8\xac\xbd\x39\xed\xfc\x26\x86\xc8\x7a\x67\x89\x6f\x95\x69\xe3\xe8\xb8\x41\x0d\x06\xe2\xe7\xe7\x7e\xf1\x8e\xb2\xfb\x10\x45\x43\x49\x17\x64\xb0\x1d\x15\x26\xe1\x9d\xfa\x92\x4d\xdd\xde\x7c\x73\xcf\xc0\xd9\x01\xa8\xb1\x13\x79\xc2\x4d\x2c\xe6\x32\x46\x31\xee\x24\xd7\x3b\x42\xd9\x55\xf9\x86\xa4\x89\x68\x2b\x88\x48\x37\xbb\xe2\xf2\x00\xad\x51\x55\x25\xe7\xbb\xe5\x2d\xf2\x96\x21\x27\xa4\xee\x3a\x5b\xd2\xba\x2e\x17\x34\xe7\x10\x9a\xe2\xc5\x35\x93\xad\xeb\x0e\x60\xe7\xd6\x53\xc6\xec\x58\x77\x4e\x3b\x1e\xf8\xa6\x0e\x64\xf2\x10\x30\x8b\x03\x8b\x3b\x01\x3e\x4c\xbb\x87\x88\x09\xa8\x80\x30\x2d\xfc\x7c\xa9\x02\xc5\xd8\xda\xce\x2a\x75\xb8\x98\x6b\x5a\xe8\xa4\x45\x6d\x04\x1f\x1d\xc7\x90\xb1\xae\x6d\x48\x9d\x2c\x90\x01\xa8\x28\x27\xc7\xb0\x58\x7b\xd2\x1d\x1b\x0a\xd9\x67\x4a\xda\x69\xe3\xec\xc7\xa6\xfd\x4a\xe5\x9b\xb3\xdb\x2f\x78\x8a\x04\x49\x23\x4f\x97\x30\x47\xee\x61\x37\xac\x1f\xaa\x09\x80\x67\x06\x84\xbf\x26\xd9\xcf\x44\x53\xd2\x38\x1d\x8d\x50\x49\x1f\x5a\x76\x3b\xad\x88\x40\x07\x6c\x90\xac\x01\x24\x2b\xb3\x7f\xba\x04\xb2\xa0\xec\x8d\xe2\x56\xe0\x4f\x59\x76\x1f\x14\x12\xc2\xc0\x85\xc4\x31\x20\x8b\x09\x8a\x22\x40\x79\x61\xc2\x7d\x07\x54\x28\xae\x77\xab\x04\x46\x4c\x1c\xe7\xc0\x33\xf8\xd2\xf2\x61\xc7\x0a\xd0\xcf\x6a\xc2\x3b\x91\x9b\xef\x90\x63\x0f\xbb\x26\xdc\x62\x35\xc3\xd3\xf8\xa1\x7d\x74\xde\x96\x63\x6c\x49\xc1\x74\x74\x22\x73\xc8\x3c\x13\x8c\x97\xf8\x0b\x61\xd8\x6a\xf9\x01\xfe\x34\x31\xbc\xf4\x3d\x3d\xcb\xf5\x7d\xfa\x9e\xf2\xb5\x7b\x57\x55\x68\x00\x13\x73\x08\xc2\xf9\x88\x71\x13\xa4\xa3\x07\x56\x5b\x36\x29\xd9\x82\x98\x97\x60\xb0\x1a\x4f\xb0\xad\x29\xa0\xf1\x4b\x12\x4d\x02\x87\xbf\xdb\xf3\xee\xaa\xf8\x2d\xe2\x04\x2a\x08\x62\xc5\x9f\xb4\x12\x86\xd9\xe7\xd1\x82\x5e\xf9\x31\xae\xba\x53\xf7\xab\x97\xab\x9e\x1a\x8a\xf7\xff\xb6\xdc\x6c\xc1\xa4\xc3\xeb\xb8\xff\xc1\x35\x88\x98\xd5\x8e\xfa\xe1\x99\x57\xda\xc8\x5a\xc4\xd1\x5f\x9b\xdc\x91\x77\x6c\x1d\x2f\x8c\x45\xe9\xb2\xc0\x0b\x46\x6d\x64\x5f\x8a\x7f\x60\x67\xfa\xab\xe8\x67\xd6\xca\x7f\x3d\x04\x03\xae\xb4\x82\x40\x1d\x33\x3e\x77\xdf\x76\xd1\x78\xfc\x25\x71\x1e\x5a\x73\x98\x65\xad\x72\x03\xca\x5e\xe0\x6d\x53\xbe\xa5\x7a\xef\x9c\xfe\x2d\xfb\xaa\xac\x8c\xa9\x5f\xd6\x65\xae\x33\x9b\x2b\x93\x1c\x1e\x31\xc9\xe1\x33\x36\x1f\xd0\xfd\x6b\x3c\xc1\x74\x42\xeb\xaf\xe9\x72\x49\x98\x55\x69\xeb\xd8\x56\x26\xf2\x27\x95\xae\xe6\xfa\xc9\x39\x04\xce\x19\x99\x0f\x4a\x65\x6f\x2b\xb1\xd4\x37\x7e\x8d\xb4\x84\x00\xd2\x4e\x94\x56\xf7\x10\xed\x0b\xea\xf1\x43\x6e\xdf\x4b\xb9\x58\x8e\x5d\x2f\xc4\x25\x60\x59\xe5\xc9\x6d\x02\x1b\xd7\x5c\xb9\x21\x32\xd7\x0d\x91\xcd\xe8\x7c\x12\x65\xd0\x52\x08\x93\x14\xf6\xa3\x5d\x01\x9b\xb4\x72\x9e\xa1\xbb\x22\xdd\x6a\x68\x30\x53\x1f\x52\xcd\xbd\xf6\x5d\x47\x82\x1c\x30\xd8\x7b\xf4\x29\xc7\x62\xd1\x30\x9d\xe8\xb6\xc6\xa3\xfd\xf7\x02\xcc\x6c\xae\x36\x8b\xbb\x9b\x65\x3d\x20\xe6\xa0\xf7\xea\x06\x09\x5c\x67\xa5\xbf\x73\x83\x7c\xb7\x33\x49\xf8\x53\xb4\xdb\x69\x1f\x17\x88\xca\x08\xe0\x53\x22\x0c\x41\x98\x52\x82\x10\xce\x41\xd7\x62\xbf\x1b\x36\x0d\x35\x2e\x80\x90\x49\x84\x4f\x4f\x2b\x34\x60\x7e\xa5\xe8\x09\x33\xa3\x59\xd3\x5d\xee\x76\xba\x1d\xfa\xe2\xb8\xd1\x4e\x85\x93\xb3\xfa\x86\x2d\xfa\x77\x35\x82\x04\x24\x24\xfa\xba\xcc\x0a\x61\x9a\x8d\xd8\x6e\x07\xda\x1e\xed\x33\x54\x66\x41\x0e\x0e\x40\x54\xcf\xf3\x0d\x48\x9c\xc8\xb3\xd0\x2d\x0d\x53\x87\xb2\xcc\x8b\xba\x69\xbe\xcb\x6c\x71\xbb\xdd\x28\x47\xb7\xcc\xf8\x70\x1f\x0c\x4d\x55\x90\xb8\xcc\x2e\xc7\xaa\xe5\xb4\x4a\xe6\x8a\xd6\xf4\xbc\x08\x36\xf6\x4b\x70\xfc\x16\x13\xdf\x0a\x48\x2a\xb2\xe3\x87\xc5\xe7\x5a\x49\xf5\xb0\xd0\x90\xb4\xc8\xea\x59\x31\xc7\xab\x6c\x11\x80\xca\x48\x60\xcf\x95\xf1\x81\x4a\x57\x0a\x2a\xf0\x56\x02\xc4\x02\xa1\x66\x6b\xac\x63\xe3\x20\xb0\x55\xe8\xd3\xd5\x5b\x76\xe6\x08\x89\x61\x2a\xee\x45\x0f\xc6\x2d\x69\x14\x0b\x66\xc3\x6b\x16\xda\x39\xec\x1b\x01\x02\xa1\x2b\xa6\xb3\x0d\x5f\xe2\x5a\x3b\x49\xa8\xaa\x03\x36\x9c\xa0\x81\x1a\xcf\x8d\x3f\xa4\x19\x1d\x93\xe4\x3d\x32\x97\x8c\x3b\x29\x2a\x78\xef\x28\x59\x1c\x27\xf7\x00\x30\x41\x2a\xb2\x54\x8d\x0f\xa1\x47\x70\xfa\x87\xd2\x1b\x27\x08\x56\x7b\xd1\xd1\x2b\xfa\x33\x31\xb2\xa7\xf5\xc0\x20\x26\x43\x99\x96\x07\x38\xd0\x6c\xdc\x4a\x7e\xe8\x72\xa5\x8a\xbd\x84\x62\xab\x9d\xf0\x2f\x3c\x47\xe3\xf1\x4f\xea\x56\x39\xb3\x7c\xd4\xcd\x6b\x75\x59\x08\xc4\xfb\xaf\xd0\xe9\x4f\x24\xad\x30\xcd\xbe\x8e\x2f\x0c\x78\xf7\x29\x6f\x2d\xb0\x8a\x2c\xce\x5d\x10\xde\xcf\x7f\xb3\x90\xff\x66\x86\xff\x46\xd3\x3b\x4f\x68\xcf\x7c\x9a\x43\xd8\x54\x0d\x17\x98\x02\x35\x8c\x89\xe7\x07\x30\x86\x71\xe3\x63\xca\x96\xe4\xed\x0b\x71\x67\x45\xa5\xa3\x93\x51\x96\x19\xbf\x11\x32\xa9\x37\x90\x93\xb2\xc2\x27\x08\x8f\x8e\xb5\x25\xc2\x49\x93\xee\x9f\x34\x26\xc8\xa7\x1f\xad\x0b\xca\xe7\x83\x6a\x3c\x26\xf2\x81\xc0\xc3\xcd\x91\xaa\x12\xef\x75\x49\x3c\xc1\x9d\xf8\x89\x18\x22\xe7\xe8\x2b\x3a\x12\x59\xb5\x73\x56\x85\xc3\xc7\xd5\x2f\x56\x90\x8c\x4c\xd7\xc9\xa4\x75\xd0\x09\xeb\x01\xbe\x27\xed\x14\xcf\x90\x9c\x8a\xc7\xd2\x71\x45\xe4\xaa\x63\xbc\x8f\x0f\x77\x76\xa4\x65\xb9\xf1\x3d\x48\x70\xc4\x99\xbd\x29\xfa\xa9\xfd\x1e\x05\x56\xeb\xfa\x3d\xea\x73\x26\xdf\xa4\xc8\xac\x9a\x07\xec\xa5\xa0\x73\x1c\x35\xb6\xaf\xbf\xfd\xe6\xdf\xb6\x7e\xe8\x7d\xdb\x92\xb6\x00\x5a\xad\xe8\xd8\xac\x79\x26\xc1\x6f\x28\x5b\x7a\x1f\x9c\xd8\x75\xee\xe7\x4b\x22\x70\x85\x6f\x4e\xbc\xc8\x59\xc9\xe8\x22\x2f\x9e\x47\x0a\xdb\x46\xcc\x6f\xc8\x8d\xf7\xdb\xbe\xb3\xfb\x9f\x23\xb3\xf4\x12\xd5\x06\xd3\xf5\x13\xe1\x75\x8c\xf0\x55\x59\x3d\xbb\x14\x78\x82\xf2\x60\x59\x41\x93\x33\x6d\xe0\xd7\xea\xec\x8c\x93\xcb\x8d\x95\xfa\xbc\xb5\x86\x71\xd8\x8c\x9a\xa0\x6a\x87\x28\xf3\x5a\xae\x73\x2f\x85\x39\xd1\x0e\x75\x61\xa5\x47\xec\xc6\x35\x90\x68\x1d\x8f\x3f\x0e\x70\xfa\x61\x17\xad\x40\x6a\x66\x92\x82\x72\x78\xb5\xc5\xed\x7b\xd5\x3a\x03\x1f\x88\xa8\x03\x3f\xd2\xd3\x46\x99\x9c\x54\xad\xec\xdc\xd1\xc4\xc2\x83\x10\xda\x98\x0f\x68\x10\xd8\xb0\x03\xce\x9c\x32\xcf\xa2\x5d\x40\x58\x25\xfe\xeb\x2a\x06\x1d\x30\xe3\x31\x08\xd3\x59\xc3\x3b\x01\x6d\x94\x65\xf9\x78\x9c\x77\xc0\x5b\xd5\x07\x6a\x11\xc0\x79\xa0\x67\xea\x00\xa0\xf3\xcc\xd7\x09\x7e\x31\x48\x72\x22\x76\xc7\xa1\xc8\xa9\x10\x83\xa0\x38\x94\x4a\xe8\x19\x1d\xdb\xb7\x66\x88\x42\xd2\xd2\x3d\xd1\xd0\x18\x36\x92\x52\x6c\x14\x01\x9d\x06\xbb\x2d\x5f\xc5\x1b\xa6\xa3\x60\x5b\x55\xcc\x15\xbf\x2b\x04\x7d\xad\xf3\xfa\xd5\x76\xb3\x29\x2b\xee\xec\x7d\x77\x22\x07\xcf\xf8\x6e\x94\x41\xc0\xfb\x58\x23\x1b\x36\xa3\xa3\x42\x7b\xf0\x3b\x0d\x5a\x75\x0d\x56\x85\x83\xd8\x5b\xf2\x84\x2e\xbd\x93\x8e\xb3\x0b\x3a\x61\x86\xdd\xbd\x81\x76\xdb\x5e\x95\xd5\xa3\x42\x5f\x24\xc7\x77\x06\x0c\x30\x49\xdf\x72\xd2\x0a\xd9\xd0\xbb\x15\x86\xd8\x52\x95\x9f\x12\x95\x23\x7f\xf2\xd2\x76\x96\xea\x54\x18\x7a\x11\x42\x70\xb4\x4b\x1a\x65\x59\xa4\xce\x6e\x67\x9c\x32\xc3\x35\xa7\x6e\x6b\xb0\x20\xc2\xd4\x5f\x57\x87\xa0\x14\x53\xf8\x28\xaa\xee\x60\x1e\x50\x58\xc5\xa8\x7c\x58\x47\x7a\x08\x28\x35\xc0\x96\x2e\xa5\x29\xda\x80\xcf\xe8\x7c\xb7\x4b\xc5\x3f\x82\xce\x93\x94\x21\xd4\xd8\xc8\x62\xc7\x0f\xcb\xcf\xa3\x58\xcd\x1b\xb7\xd4\xe3\xea\x8c\x45\xb1\xca\xb3\x72\x6e\xac\x9d\xf4\x04\x72\x31\x81\x5a\x4e\xa0\x56\x13\xc8\x21\x5e\x30\xed\xda\x4f\x6f\xb7\x46\x2e\x86\xdc\xed\xc0\x6f\x4c\x45\x26\x3c\xd5\x36\xf2\x97\xe5\x95\x73\x52\xea\x9d\xcc\xbc\x25\xc8\xf2\xc7\x7a\xc2\xdd\x15\x5b\x11\x3c\xa5\x82\x6a\x74\x8c\x54\xa2\x0c\x19\x00\x34\x8a\xd9\x44\x2d\xb1\x24\xa9\x75\x03\x64\xd9\x52\x5d\x03\x6a\x25\xa2\x16\xa8\x0e\xe3\xd9\x73\x5a\xa7\xfa\xd0\xa6\xaa\x7a\x68\xa4\x94\xd9\xf1\x7c\x10\x5d\xbc\x60\x19\x2d\x83\xd8\x7d\x54\x0f\xab\xb0\x57\x96\x55\x41\xaf\x91\x2d\x4b\x99\x3c\x39\x59\xe1\x51\xe1\x14\xd5\x6a\x3b\x23\xa9\x08\xe3\x81\x51\xf5\x3b\xa4\x5e\xac\x09\xad\xe6\x74\x1f\x99\x42\xe7\x38\xad\x75\xaa\x0e\xe5\x28\xa0\xf2\x32\xdd\x41\xfa\x22\x77\x2c\xa7\xff\x0e\xc5\xcd\x80\xb4\x05\x1a\xc7\x83\xa5\x7d\x12\xf2\x19\x99\x0a\x46\x3e\xde\xbb\xaf\x2b\xec\xea\xdf\x6f\x0f\xad\x6c\x3e\x27\x81\x45\x1f\x3c\x30\xe3\xc4\xb6\xab\xf3\x39\x20\x70\x35\x7a\x60\xf3\xa5\x73\x69\xee\x12\xef\x30\x05\x4f\xa4\xea\x01\x57\x97\xa2\xa7\x56\xcf\xb4\xb2\xc8\xb3\x60\xeb\x00\x8d\x56\x38\x5e\xac\x34\x81\x1a\xc8\xb6\x9b\x48\x8e\x23\x50\x20\x77\x03\x00\x76\xee\x75\x84\x21\xd1\xb7\xba\xab\xf7\xcc\x15\x6d\x4d\x92\x5b\x43\xe4\xdc\x0c\x0e\x3d\x74\x8c\x6b\x53\x9c\xc1\xf3\x94\x87\xdc\x1b\xea\xda\xe0\x80\x5d\x55\x39\x0e\x3a\x06\x8c\x32\x21\xce\xc0\xc6\x2a\x22\xca\x57\x60\x81\x1b\xba\xb9\xca\xf9\x80\xed\x76\xe9\x9e\x3a\x32\xaa\x7d\x18\x88\x1d\xf8\xce\x5b\x1d\x8b\xe0\x16\x18\xf4\xa9\x8b\xf1\x9b\x06\xa2\xde\xb3\x83\x77\xc1\x5e\xe9\xfb\xbd\x0c\xdd\x28\x31\xb8\x0f\xfd\x15\x51\xef\xfc\xee\x70\x2b\xb4\x2e\xff\x60\xea\x66\x8f\x65\xcf\x82\x9c\x6c\x61\x29\xd1\x29\xa2\x0e\x80\x26\x31\xa7\x2e\xce\xb4\x0f\x32\xde\xad\x55\xcf\x3e\x87\x30\xb1\x8f\x02\x78\x08\x36\xf3\x9d\xd5\x3d\x0a\x25\x76\x9e\x1b\x7c\x74\x69\xd1\xd0\xf7\x94\xaf\x9f\xb1\x25\x79\x2b\x95\xbb\x50\x2c\x3d\xb4\x5e\xaa\x04\x03\x76\x55\x32\x73\xad\xad\xd7\x8f\x19\x14\x97\xec\x1c\x5e\x17\x8e\xe8\xd9\x80\xc3\xcf\x90\x03\x5c\xbd\xc3\x71\x88\x4d\x79\x87\x66\xef\x81\x15\x3c\xd1\x19\x81\x61\xfa\xdd\x81\xa8\x7f\xdf\xd0\xa1\xf4\x21\xa4\xfd\x31\xde\xaf\xfb\xf2\xde\xf5\xce\xfe\x93\x5e\xd5\xbe\x8d\x8e\x6d\xa2\xb3\xb8\x68\x3a\xe7\xbe\x8b\xa3\xd5\xe8\x3c\x7b\xae\x63\xab\x39\xd7\x45\x27\x78\x8e\x6f\x7e\x0f\x49\x69\x55\x8e\x21\x6c\x7d\xd4\xd6\x9a\xb0\x0f\xe5\xff\x32\xab\xec\xa1\x0f\x77\xa3\xa0\x3d\xeb\x6e\x11\x2a\xb3\x01\x07\x71\xe0\x8f\xcb\xcb\x8d\xa8\x5f\xdc\x44\xb7\x24\xb4\x6c\x6e\xb1\x5a\x7d\x22\x75\xb0\x46\xec\xcc\x3f\x4c\x5a\x69\xe5\xe6\x7e\xe5\x03\x43\x8e\x8f\x95\x90\xad\xc7\xe3\xf4\x79\xca\x30\xf1\xf0\x72\x6c\x69\x62\xd3\x05\xf2\x97\xf2\x38\x6a\x06\x1e\xd4\x68\x19\x80\xa1\xb8\xae\xb1\x55\xc1\x88\xc6\xb2\xba\x36\x4a\xe9\xd8\x57\xff\xec\x0e\x3c\xb9\x28\x44\xfb\xc7\xd9\x61\xf6\xe2\x0a\xb2\x03\x5f\x95\xeb\x05\x42\x80\x8c\xc3\x2d\x1e\x0c\x5e\x45\x94\xb0\x6f\x12\x08\xcb\x9c\x65\x9e\x6a\xb6\x43\xfc\x2b\x37\x37\x4e\x40\xf2\xc8\x53\x73\x48\xc6\x53\x3e\x63\xf3\xc8\xe2\x5a\xc9\x6e\xbd\x95\x68\x7e\xc0\xae\xcc\x7d\x71\xd0\x36\xf2\x2e\xf4\x80\xdb\xb6\xb4\x0d\x76\x94\x06\xdf\x50\xf6\xa6\x7d\x36\xa0\x0b\x27\xb6\x56\x20\x08\xab\xc7\xe3\x58\x6e\xad\x1e\x9a\xa5\xbd\x44\xc0\x13\x42\x87\xea\x97\xc7\xea\x7f\xf4\xfa\x15\xc5\xbd\x5c\x4d\x80\x15\x94\xe4\x14\x9f\x46\x34\x89\x7a\xac\x1e\xb1\xdd\xc4\x75\xca\xb1\x8e\xe2\x35\x75\x57\x11\x75\x44\xbb\x97\x98\x7e\x3b\xde\x81\xd4\x4f\xef\xe9\x40\x56\xd2\x1d\xb4\x12\xe5\x44\x0e\xb0\x55\xc5\xd9\x89\xf6\xdb\x49\x6c\x17\xda\xb5\xa0\x8b\x8d\x67\xa6\xe6\xa8\x21\x46\x27\x98\x89\x7b\x09\x9a\xd7\x4b\xc2\x73\xcf\x42\xef\x39\x11\x32\x8c\x7a\xe7\x77\xf4\xc6\x4b\x41\x35\x6c\xc6\x50\x59\x59\x0a\x3c\xd2\x7b\x98\x4b\xdb\x95\x21\x84\x5f\xd1\x49\x95\x14\xda\x1a\x8f\x47\x3d\x87\x8f\x6e\x2b\x6d\x55\x49\x33\xcf\xe3\x74\xad\x9e\x7a\x4e\x67\x73\x19\xe9\x2f\x1c\x9b\x62\x8e\x1a\x58\x08\xd8\x21\x40\xc6\x77\xf1\xc7\x44\x05\x29\xd3\x16\x6c\xee\xbe\xd5\xd7\x94\x2f\xd6\xa9\x0e\x53\x8d\x6e\x17\x79\x4d\x74\xf8\xea\xa9\x7e\xba\x1e\xc0\x57\x95\xd2\x56\x7d\xbd\x5d\x57\x64\x35\x25\x4d\xe3\x38\xb7\x35\x69\x38\xe4\xa0\x1c\x8f\xcb\x89\xa8\xaa\xff\xd5\x0e\x70\xa2\x1e\xb8\xd4\xfb\xbb\x28\x50\x42\x2a\x6b\x22\x58\x8d\x73\xb5\x3b\xf2\x10\x69\x2d\xad\x0a\x42\x29\x8f\x60\xb7\xf3\x2d\x45\xd4\xa1\x8d\xc7\xc7\xa6\x8a\xc2\x8b\x83\x43\x91\x47\x4f\xba\xa3\xfd\xba\xd2\x93\x7e\x8d\xab\x52\x66\x08\x80\x31\x36\x6b\x3d\x5a\xc4\x11\x57\x7c\x50\x1d\x12\xfa\xf0\x4d\xcf\x73\x03\x8f\x07\x2a\x71\xcd\xda\x21\x2f\x9b\x4d\xca\x66\x64\x13\x49\x5e\x8b\x72\x91\x17\x80\xca\x5b\x28\x40\xe2\x3e\x0b\x8d\x11\xc4\x18\x31\x4c\x08\xfd\x14\x55\x44\xe6\x1e\x47\x45\x67\x65\x8a\x4c\xda\x4c\x67\xce\xbb\x5d\x2c\x85\x9d\xe5\x5d\xd6\xe1\x33\x9f\x09\xec\xa6\xe2\x95\x76\xb0\x5a\x2d\x24\x27\xda\xca\xf0\xa3\x55\x3c\x67\x20\x1a\x90\x43\x23\x9c\x86\x63\x36\xed\x69\x66\x61\x22\x3c\xa7\x4c\x3a\x64\xfe\x2d\xe6\x90\xf9\x37\xc7\x21\xd3\xda\x70\xfc\xe9\x37\x6f\x5c\xf1\x97\x88\x1d\x3b\xae\xec\x0a\x58\x1a\x46\xd6\xd0\x16\xad\x79\xa6\x83\xd0\xc1\x53\x9c\xa9\x25\x59\x46\x64\x39\x27\x00\x66\xfd\xc8\x9b\x7b\xa9\x9d\xec\xd7\x58\x58\x2b\xa7\x74\x4f\xd8\xb7\xdc\xb5\xba\xc8\xc3\xa1\x67\xf3\x70\x58\xf8\x12\x1d\x72\x74\xd2\x37\x9c\x74\x98\x87\xc1\xe4\x36\xe6\x4d\x25\x2e\x17\xcf\x18\xb2\x20\x11\x88\x0b\x95\x2d\x41\xd8\x81\x1c\x37\x44\x76\xc6\x31\x9f\x9c\x9d\x41\xd9\xd9\x59\x56\x0d\xdc\x88\x19\xac\xfd\x28\xdd\xa5\x20\x8f\xe9\x99\xa2\xaa\x3e\x50\x38\x19\x72\x5b\x9d\xfa\x35\x65\x3e\x28\x63\x71\x76\x8c\xb5\x1a\x32\xa8\xa1\x62\xa7\x62\xd7\x3b\x3b\x3e\x31\x1f\x54\x04\x83\x5a\xef\x7f\xa8\xe3\xe8\xd6\xed\xb9\xa3\xbe\xdb\xb5\x2f\xbd\x28\x46\x43\x62\x64\x73\x98\x1a\xc9\xc3\x1c\xee\xae\xa5\x0b\xd6\xda\xb9\x44\x1c\xf8\xdc\xcb\xfd\x73\xf3\x6d\x29\x3b\x70\xdc\x2e\xf1\x76\xde\x55\xfc\xf9\xc1\xd6\xe4\x36\x1e\x2e\x55\x3b\x71\x7a\xaa\x41\x1f\x6c\x8c\xc7\x69\x10\xb4\x27\x76\xfa\xd6\x5e\x11\x61\xf6\xc5\xd1\x89\xda\xee\x38\x14\x31\x7c\xe2\xc3\xc9\xbe\x69\xc7\x20\xe6\xae\x2f\x78\xed\xf1\xfa\xdb\xda\x31\xbb\xe4\x64\xef\xf5\x2f\xbe\xd2\xd0\x6c\xcc\x3f\xec\xf7\x98\x92\x73\xd8\xdd\xd2\x37\x8f\xad\xba\x55\xdf\xbb\x33\x83\xd8\xb3\x6e\x78\xc4\x0f\xa5\x3d\x6a\xef\x19\x83\x6d\x6a\xaf\x0a\x92\xc3\x22\xfa\x85\x7c\x1e\x9b\x09\x8e\x5d\xa0\x48\xec\x6f\x3f\xdf\xa0\x10\xf0\x8f\x4e\x54\x08\x6f\xb9\x12\x82\x1a\x30\x62\x17\xd8\x77\x91\xf3\xb4\x8a\xdc\x3f\x88\x68\x6b\xf7\xd0\x9f\x6e\x0b\x46\xa2\x37\xd3\x9e\xd5\xbe\xfb\xd8\x3e\xad\x7d\x57\x41\x05\x09\xab\xb4\x72\xc6\xcb\xe1\x17\x1c\x98\xe1\x74\x63\xf8\x85\x99\xf3\xea\xc6\x2e\x07\x8a\xe6\x5e\xbe\x88\xc8\x5e\xf4\x28\x00\x0c\xa6\x21\x90\x7a\x7c\x36\xf7\x82\x01\x84\x37\x50\x5b\xf8\xb7\x9f\xd3\xc1\x5c\x0e\xa4\x4c\xb4\xc7\x30\x96\xcb\x47\x5e\xe9\x7f\xa5\xbd\x12\xc0\xb9\x21\xfa\x58\xce\xcc\x93\xb1\x9b\x3c\x85\xf7\x3e\x77\x81\x8b\x90\x9e\x06\xcd\x8e\x71\x69\xa7\x41\x3f\x2f\xad\xb7\x53\x9e\x11\xc8\xd1\xd3\xff\xc8\x97\x23\x1d\x4e\x25\xfa\x5e\x99\xcb\x68\xd7\x20\xcf\x3c\x63\x94\xd3\xae\xe7\x49\x1b\xad\x34\x10\xdd\xd0\x78\x4c\xc6\x63\x29\x7a\x2b\x54\xd5\xeb\x0f\x67\x7d\xe1\x7a\x08\x49\xd5\xff\xca\x5e\x05\x8a\x40\xf7\x5b\xe7\xcb\xbb\xa0\x04\x11\xfc\xd0\xa1\xad\x33\xe1\x3a\x1a\x0b\xcb\x21\x23\xd0\xa1\x64\x74\xe4\x3d\x72\x80\x84\xe7\x98\xf8\x63\x22\x24\x3c\x12\x93\xf0\x70\xf4\x8a\xbc\xe3\x0c\xfc\x6b\x76\xf0\x04\x2e\x08\xf7\x99\x1d\x13\x6e\xdf\x8f\xab\x1f\x57\x9e\x88\x3b\x2a\xc3\x7c\xb5\xd1\x4a\xa7\x7f\x3d\x44\x17\xa9\xcb\x6d\xb5\x20\xcf\x96\x84\x71\xba\xa2\xa0\xa6\xd7\x4f\x61\x4a\x51\xa1\x34\x1b\xd9\xad\x52\x6d\x4c\x4d\xa1\xf1\xb7\x26\x6a\x06\x32\xc6\x90\xfe\x24\xc8\xaa\x67\x92\x27\xed\x03\x89\x58\x6e\xa7\xbc\x0c\x20\x6c\xc3\x99\xd0\xfa\xaf\x25\x03\xff\xbf\x4a\x49\x12\xd2\x37\xaa\x72\xd2\x6d\x99\xbb\x11\xe8\x7f\x89\xab\xff\xad\x66\x6c\x1e\x1e\xa0\x7f\x7c\x41\xf4\xcb\x19\x9b\x4b\x01\x17\xfe\xa2\x4b\xd4\x28\xeb\x80\xe8\x6d\x4e\x2b\xc5\x8b\xf7\x69\x6e\xc1\x79\x94\x66\x0c\xa7\xa5\x96\xfb\xf3\xa2\x78\xe6\x9a\x1f\xd6\x8f\x2a\xa2\x93\x3b\x05\x82\xbc\x03\x83\xde\xf9\x56\x64\xb9\x5d\x90\x34\xea\xed\x49\x76\x3b\x6e\xbd\x2f\x1b\x3c\x3a\x31\xd1\x32\x89\x62\x1a\xb4\x2a\x1b\xd0\x7c\x8c\x8d\xd8\xd3\xff\x28\x1c\x00\xe1\x11\x91\x32\xf9\x9f\x48\x4a\x1d\x99\xbc\x04\xf7\x4e\xf1\x11\xe7\x08\xb3\x26\xfd\x81\x38\x52\xf9\xbf\xfd\xe6\xa5\xf2\xff\xf3\xc1\xa4\xf2\x96\x05\x6a\xa7\xd4\x1c\x17\xad\x1d\xd1\x37\xd2\x97\x92\x8f\x83\x9e\x7e\x43\x52\xb3\x89\x1b\xdb\x7a\x2c\x20\xc6\x3a\xcd\x33\xb6\x9b\xba\x2a\x23\xd7\xb6\x37\xca\xe6\xa6\xf1\xda\x87\x3c\xf8\x1f\xac\xff\x8c\x1a\x93\x9e\x20\x45\xfd\xfb\xcd\x7f\xdc\x65\x46\x6d\x89\xa2\x62\xbe\xb7\xd8\x4e\xd3\x18\xbf\x4d\xff\xeb\xac\x8b\xda\xf6\xce\xd8\x70\xb0\x7d\x96\x7a\x97\x91\x6f\x6d\xf8\x8c\x31\x0e\x64\xbf\xa9\x9f\x52\x14\xf4\xeb\x5b\xf6\x6a\x5b\xee\x77\x67\x43\xf6\xe7\x8e\x3a\x98\xf7\x00\x49\x03\x72\x87\x29\x71\xee\xac\xc3\xe9\xbb\x42\xf1\x48\xd8\x1f\x4c\x32\x8e\x6e\x35\xd8\xc7\xc6\x4e\x26\x73\xe3\xe2\xb5\x60\xcf\x69\xd6\x81\x38\xfb\x56\xd8\xb9\xc4\x88\x49\xc3\xbe\x55\xaa\x26\x2d\x41\x36\x3e\xad\x7e\x81\xbd\x17\x3d\xb6\xbe\x5b\xa9\x7c\x14\xd9\xbf\x53\x1e\x3c\xe5\x4f\x3b\xb6\x4b\xbf\x6f\x85\x97\xa9\x6b\x77\x63\xfa\x84\xde\xcd\x3e\x4c\xfc\xef\x55\x20\xf6\x1a\xf9\xdd\x0f\x3d\x89\x2c\x34\xc4\x02\xbd\x97\x7f\x3f\xa8\xf5\xe9\x2e\xa2\x0b\xdc\x03\xe1\x77\xd4\x75\x1c\x3c\xcf\xbd\x2e\x03\x51\xad\xdb\x01\xfa\xbf\x77\xb8\xa9\x56\xc6\xeb\xcc\x10\xd0\x25\xe5\xf5\x0a\x0d\xf1\xe1\x0e\x96\xfa\xee\xa0\x25\xee\xa7\x64\x3d\xb8\xef\xbd\x69\xca\xf1\xbb\xab\x88\x7f\x6d\x05\xb1\xdd\x85\x3e\x19\x1b\xd2\x0f\x7b\x52\x76\x04\x15\x68\xe9\xa8\x8d\x3e\x3b\xe4\x68\x1d\x3f\xbf\xa3\x99\x42\x2e\xdd\xf2\xbc\x4b\xb8\x94\x28\xce\xfb\x44\x71\x6b\xa6\x01\x35\x41\x1b\x40\x7c\x09\x9d\xb7\x24\x74\x1e\x93\xd0\xf9\x01\x12\x7a\x20\x9e\xc3\x63\x8a\x9c\xb0\xf2\x25\x74\xde\x57\x0e\x94\xb8\x95\xb8\x2d\x64\x6d\x84\x5b\xc2\x76\x8c\x11\xab\xac\xb3\x56\xbc\xf8\x7e\xc4\xed\xd6\xd9\x69\x19\x3a\x75\x73\x9b\x1b\x29\x58\x85\x08\xfe\xb7\x98\xf4\xfb\x6f\xbe\xf4\x2b\x06\xf9\xfb\xbe\x50\x71\x8e\x9f\xb2\xce\x9e\x15\xc9\xd2\xe5\xee\x6c\xe0\x3b\x0d\xfb\x47\x7f\x26\x4b\xdf\x45\xf4\xa0\x4a\xdd\x71\xe3\xbc\x01\x1f\x09\xa4\xe7\x7e\xf1\x6a\x65\xed\x16\xea\x57\x5f\x74\xb9\x75\x1e\x73\x63\x35\x6e\xbd\xf1\x09\xcf\xc8\xbc\xc1\x46\x63\xdc\x15\x98\xa7\xab\xb5\x1f\xeb\x22\x96\xe7\x0d\xdd\x92\xb4\xc2\x1c\xdc\x3b\x20\x7e\xc6\x05\xe1\x77\x1d\x05\x57\x19\x57\x91\x80\x46\x95\xe7\xe2\xe9\xd8\xad\xd2\x7d\x77\xa7\x33\x25\x41\xd8\xce\x86\x2d\x86\x41\xe5\xbd\x9c\x91\x79\x67\x4e\x9a\xca\x1f\xaa\x23\x4f\x82\x1b\x72\x9f\x21\x48\x21\x10\x6b\x16\x4f\x94\x14\xb4\x56\x87\xee\x9a\x7d\xc9\x74\x8f\xa7\x8c\x5c\x0f\xff\x42\x20\x30\x3e\xc1\x15\x2e\xd1\x54\x7c\xf9\x3f\xee\x97\x26\xa5\x2e\xb0\x61\x86\x21\x5c\x98\x09\x11\xe4\x5b\x7f\xfc\xdf\xdf\xbc\x9e\xe9\xcf\x24\x3b\xc1\x2e\x54\xc5\xe2\x6b\x68\x46\xcf\xc4\x84\xd0\x46\xe1\x4b\x1d\x69\x40\x73\x1c\x3a\x4a\x80\x77\x5f\x55\xc0\x83\x33\x02\x19\xd6\x82\x28\x14\x55\x27\x9a\x38\x8b\x7b\x04\x04\xf1\x32\x6c\x60\x16\xaf\x2d\x88\x19\xfe\xa7\xf3\x55\xfd\x2c\xa8\xe5\x24\x1b\x6b\x05\xc7\xf8\xaa\xa0\x17\x6b\xfe\xa8\xab\xc2\x32\x8c\x4c\x61\x12\x47\x2d\x75\x84\x9b\x60\x42\x2a\x39\x7e\xf4\x33\x2d\xd9\xe3\xf2\xf2\x92\xb6\xca\x83\xfd\xf1\x02\x28\x44\x77\xc7\xe1\xc2\x22\x67\x10\x8d\xf0\x29\xf7\xca\xfc\x94\xfb\x64\xa2\x31\xd4\x84\xa7\xc8\x84\x48\xa0\xf0\x8c\xd5\x42\xa0\x65\x9c\x31\x69\xc7\x3b\xb8\xa5\x8a\x91\xd0\xc9\x34\x7c\xc8\xc2\x1a\x90\xa6\x1e\x58\x35\x0d\x96\x79\x96\x3b\x59\x04\x3f\xfb\xba\x58\x90\x09\x4a\xe7\x2f\xaf\x9d\xe0\x4a\x30\x00\x96\x7f\x38\x5b\xc0\xd7\xe5\x5f\x04\x56\x26\x4e\x16\x3b\x84\xfc\x94\x23\xb2\x36\x18\xa2\x7a\xd5\xda\xa0\xa5\xf3\xbf\x4b\x2e\x47\x8e\xea\xa4\xf8\x4c\x05\xcb\x1b\xc4\x48\x50\x10\x45\xf8\x76\x13\xba\x66\x00\xd3\x62\xa4\xac\x25\x24\xad\x97\x6c\x4c\x25\x76\x49\x08\xcf\x12\x94\x5a\x42\x7a\x0c\xa8\x65\x81\x9d\x2b\x0e\x3f\x28\x86\xb6\x14\x14\xb2\x35\xf5\x7d\xe9\x17\xbc\x4d\x68\x87\x76\x72\x8a\x91\x71\x1b\x17\x63\x9d\x81\x91\x85\xcc\xc8\xe8\x8e\xc1\x26\x2f\x9f\x3e\x7e\xf1\xf2\xc9\xd9\x93\x47\xaf\x1f\x9d\x3d\x7d\xf9\xf2\xc5\xcb\x57\x7a\xb3\x24\x76\x31\xa7\x1e\x41\x36\x11\x61\xca\x4b\xfa\x18\x80\xa2\x01\x53\x17\x12\x85\x90\x01\xc0\xde\x9e\x9c\xde\x80\xbd\x73\xdc\xed\x66\x73\xd1\x0b\x6d\x9b\x77\x3a\x9b\x98\x45\x37\xd1\x2f\x69\x1f\x68\x58\x43\xc0\xa7\x18\x4b\xba\x58\x48\xae\x32\x02\x18\x06\x39\x69\x3b\xe1\xc8\x35\x91\x53\xd6\x15\x3b\x2c\x47\x6d\x57\xa2\xba\xe0\xa8\xdb\x2d\x48\x7b\x58\x82\xbd\x9b\xab\xee\x96\xc1\x8c\x6c\x45\xab\x4b\xb2\x4c\xd1\x21\x93\x33\xb8\xf4\x80\x69\x3a\x78\x57\xf4\x00\xd8\xae\xbd\x3d\xe1\x75\xe8\x21\x12\x6e\xf1\xd2\xd7\x16\xf8\x20\x09\x60\xde\xbe\xe0\x1d\x11\x3d\xda\xf0\xbb\x8f\x27\x73\xb2\xe6\x57\x99\xcf\x69\xee\x4b\xa0\x0d\xd6\xed\x5e\xff\x33\x3a\xd7\x76\xed\xed\x12\x95\x37\xd1\xfb\x0c\xb6\xb6\x14\xe9\xe0\xaa\x0d\x20\xf0\x2e\x04\xd8\x13\xb0\x62\x11\x41\x96\xdc\x5b\x0e\x31\x7e\x58\x2e\x16\x63\xd9\xb1\x60\x6a\xcd\x0a\x3f\xa7\x76\x95\x25\xc4\x80\x84\xdc\xa6\xe5\x7c\x90\xcf\x8e\xe7\x59\x96\xe5\xb3\x93\xb9\x89\x7b\x57\xcd\xca\x39\xcc\xb8\x35\x7c\xcf\x54\x25\x29\xe0\xed\xb9\xe8\xe9\xb5\xa1\x05\xb3\xcc\x23\x29\xb7\x0d\x56\xf1\x66\x62\x92\x50\xe9\xad\x9b\x21\x9c\x67\xc7\x10\x04\x57\x2d\x32\xff\xbc\x7e\x98\xeb\x45\x6e\xb3\x72\x96\xcf\x07\x74\xb6\x9d\x67\x33\x32\xdb\xce\x31\x9b\x6d\xe7\x73\xcd\xa9\x52\x79\x5f\x04\x61\xec\xbe\x21\x7f\x25\xd7\x70\x29\xca\xa2\x38\xcf\x17\x6f\xe2\xbb\x00\x3b\x10\x92\x5f\x83\x4d\x6c\x58\xa6\x08\xd9\x03\xc5\x43\x9b\x2a\xb4\x69\x69\x70\xfd\x8c\x89\xa7\xd2\x24\xbb\x3e\xaf\x8e\x76\xdb\x27\x9c\x46\xf3\x14\x41\x76\x86\x45\x30\x55\x7a\x2f\xb6\x43\x9c\x7a\x30\x12\x26\x00\xf3\x2d\x24\xd6\x42\x2f\x7b\x26\x0e\xa8\x6d\x49\x97\x21\x51\x6f\x63\x51\x43\xfb\x3a\x11\x67\x8c\xdd\x74\x37\x46\xee\x82\x32\xbe\x02\x33\x7d\xb0\xc8\x7a\x57\xee\xc4\x43\x58\x6e\xc2\xce\x80\xd2\x92\x36\x99\xc5\x6d\xf6\x46\x48\xee\x16\x12\x54\x0e\x22\x2f\x32\xba\xcb\xba\xd9\x34\xfd\x5d\x5c\x5b\x27\x12\x37\x6a\xe7\x3d\x70\xd0\xcd\xcf\xdd\x09\x4e\x80\x6d\xeb\x49\xe2\x1a\xb2\x3d\xaf\x5e\x3f\x7a\xfd\x54\x1d\x42\x84\xa5\x71\x3b\x3f\x88\xa3\x51\x0c\x8d\xb2\x25\x8a\x05\xf3\xea\x42\xf0\x04\x69\x35\xa7\x84\xd2\x9a\xf0\x27\xb4\xe2\x37\xed\xae\xc2\xf0\xd5\xb1\xbe\x06\x95\xb1\xad\x0d\x82\xd3\xd4\x60\x35\x5a\x8a\x8f\xaf\xcb\x58\xe7\x36\x39\x6c\x74\x92\x61\x67\x90\x2c\xb6\x74\x2e\x5e\x7c\xc2\x3d\x3d\xb6\x82\xfb\xa8\x19\x2e\xe0\x56\x7d\x9f\xd7\x2f\x89\x40\x6b\x2d\xd7\x45\xb9\x07\x6d\x9c\xd7\x06\x34\x88\x00\x6b\x83\x29\x21\x6b\x49\xd8\x22\x30\x32\xd6\x56\xe5\x86\xd4\x32\x16\x95\x74\x26\x88\xd9\x7c\x3c\x4e\xd5\x5f\x9d\xc4\x48\x16\xeb\x2c\xc8\x5d\x90\x1f\xe7\x6e\x53\x1e\xf2\xdd\xe6\x79\xf9\x3e\x79\x6e\xf3\xf4\x71\x1f\x40\x1a\xeb\x6c\xcf\xa9\x7b\xb6\x23\xea\xc4\x75\x77\x66\xa3\xa2\xdd\xd9\xd3\x82\x48\xd8\x98\x67\x59\x96\x12\x1b\xaa\xbf\xbd\xdd\xa7\x9d\xe7\x44\xe6\x53\x8b\xc5\x66\x64\x8e\x82\x78\xbd\xde\x58\x6a\xe7\x44\xf3\xd8\xa6\x39\x53\xc8\xc3\xa1\xbd\x7e\xa6\xf7\x34\x59\x25\x49\xde\x69\x3e\xbb\x5d\xef\xe0\x5e\xb1\x96\x77\xb6\xac\x28\xf3\x65\x87\xbc\xe3\x68\x41\x4c\x36\x3e\xe5\x37\x17\xd0\x5e\x4f\x09\xd2\xa1\xe7\x31\x5d\xb4\x14\x40\xb1\x6c\x2d\x4e\x38\x60\x35\xa4\x0a\x07\x9c\x00\xbd\x60\xdb\xcd\x8b\x6a\xb3\xce\x19\x71\x51\x56\x82\xe4\x1d\xe8\xa9\xd2\x95\x1f\x22\x2f\x8a\x97\xc4\x09\x71\x2c\xb1\x15\x60\x97\xb8\xa8\xe1\x59\xfa\x3e\x78\xc0\x91\x10\x07\x66\x7c\x1e\x26\xbb\x46\x3a\xfe\xb4\x7e\xa0\x38\x6e\x52\x82\x50\x4f\x47\xae\xc9\x70\xe5\x1f\x42\xe5\x04\x39\xee\xd8\x4c\xad\x87\xe8\x8a\xbc\x1c\x5c\xd9\xb6\x19\xb7\x63\x4a\xc8\xdb\x11\xa1\xfd\x10\xcf\x11\xe4\x15\x26\xf6\x3e\x9c\xb8\x76\x24\x25\x8f\xa4\x8d\x33\xea\x6c\x6f\xab\x0f\x1e\xe8\x6c\x49\x2b\xb2\xe0\xc5\x4d\xfb\xc4\xdb\xe0\x31\x9b\x0f\x7a\x30\x67\x3b\xc6\xb6\xe3\x39\xe4\x85\x5f\x80\xe8\x98\xd1\x58\x80\x03\x92\x11\xed\x64\xc1\x30\x15\x5b\x2d\x79\xe2\x28\x4c\xb6\x9d\x40\x20\x78\x03\x98\xfa\xff\x99\x3c\x78\x00\x06\xb7\xca\xfc\x9e\xdb\xe7\x57\xa5\xae\x64\xed\xc0\x83\xf0\xb6\xb0\xa6\x2b\x9e\xa2\x01\xd7\x51\xdb\x07\x36\x40\x25\xed\xdb\xaf\x14\xc4\xab\x87\xf9\xe7\xa5\x85\xe0\x5c\x7b\x03\x83\x68\x55\x0f\x29\xab\x79\xce\x16\xe0\xd3\x3d\x1e\xeb\xa9\x7c\xce\xc6\x63\x3d\xcf\x1a\x61\x3b\x43\xd4\x38\x09\x10\x04\x54\x08\x14\x06\xb4\xa3\x37\x80\x6a\x04\x19\x1b\xe7\x2c\x53\x1c\xc5\xbc\x77\x20\x21\xf1\x71\xe0\xb0\x28\xa3\x0a\xe2\x1f\x83\x34\xaa\x13\xb9\xb6\xdf\xa1\x6e\x1b\x9b\xe3\x7c\x94\x65\xae\x13\x46\x00\xc2\xac\xad\xd0\xc0\x34\x63\x0e\x7b\xef\x6b\x34\x20\x27\x32\xeb\xd3\x79\x40\x9a\xe4\x08\x20\xe3\x3a\xd4\x16\x6c\xb3\xe3\x87\x5b\x9b\x2a\x64\xab\x25\xe6\x22\xab\x85\x98\xbc\xc8\xc8\xac\x00\x1d\x48\x42\x97\xc9\x28\xcb\x0a\x59\xbc\xca\xca\x59\x31\xdf\xed\xe8\xac\x98\xe3\xb5\xb6\x0f\x57\x9e\xfd\x66\xcd\xab\xd3\x15\x3c\x25\x41\xec\x00\xe5\xe7\x6f\x16\x95\x98\x07\x64\x9f\x63\x48\x0b\xbc\x40\x83\xf3\x8a\xe4\x6f\x64\x0c\x80\x73\xcd\x9a\x04\x2d\x6c\x00\x5a\xd1\x02\xa7\xeb\x0c\x0c\x02\xd2\x02\xa1\x3d\x36\x17\xeb\x1e\x23\x3e\x77\x64\xfd\x26\xe6\x8f\xab\xd8\xe3\x0f\x31\xea\x92\xac\xf2\x6d\xc1\xa7\x7c\x56\xcc\xb3\x45\x23\xfd\xf3\xb5\xec\xb7\xf0\x2e\x4c\xbf\x9c\xdc\xe7\x50\x64\x05\xfb\x43\x90\x5c\xd5\x67\x32\x97\x22\x3c\x52\x1d\x1b\x71\xa5\xf1\x73\x97\x46\xdf\x65\x06\x5a\xda\xec\x7e\xb4\x39\xe0\x39\xd8\x7b\x2b\x3c\x6c\x96\xcc\xce\x52\xe9\x23\xda\x7c\xce\xfb\xd1\x52\x2e\x38\x61\xb9\x05\xe4\x1e\xb7\x80\xc4\x13\x3d\x70\x9e\xca\x54\x54\x52\xde\x02\xf2\xf7\x84\x2a\xdc\x14\xd3\x6c\x83\x4e\x43\xbd\x2a\x58\xfd\x40\x04\x7d\xcd\xa4\xe6\x53\xb1\x29\xd2\x6a\x1e\xec\xc8\x5b\x08\x44\x23\x0f\x5c\x64\x3d\xea\x2d\x20\x35\xc5\x78\x9c\xe6\x2d\xdc\x8a\x4c\x7a\x54\xa5\x96\xe8\xb6\x7c\xe8\x57\x55\x68\x5d\xee\x16\xd4\x9b\x34\x23\xb3\x32\xab\x67\x6c\x3e\x97\xe7\x6f\xf2\xf5\x8f\xb2\x2c\x9f\x95\x73\x9d\x8b\x92\xd6\x4f\x7f\xda\xe6\x45\x2a\x44\x3e\x4c\xd1\x6e\xc7\x8d\xa6\xd6\xbd\x71\xbc\x7c\x05\xd1\x48\xda\x3c\x4b\xf2\x79\x3b\x53\xe4\x54\x7d\xa2\xcb\x07\xc9\x17\x49\x18\x74\xc2\x59\x7d\x57\xe8\x89\xee\x57\x8f\xf6\x7b\x51\x4c\x43\x1a\x79\x7a\x6b\x70\x4d\xfc\x1c\xa3\xed\x9e\x88\x8d\x6d\xe1\x81\xfd\x61\xd3\x0c\x54\x63\x69\xec\x33\xf8\x0f\xfd\x5d\x47\x66\x8a\xbe\xec\xda\x39\x88\x03\x3f\x6c\xe8\xa5\x34\xde\x72\x5f\x1b\xfa\x76\x45\x8a\x46\x1d\xfb\x21\x2d\xb8\x9c\x28\x1f\xb1\x4b\x1a\x8b\xf7\x11\x3c\x48\xc5\x9a\x69\x8e\x33\x96\x83\x3f\x88\xb4\x11\x45\x0d\x04\xb7\x22\x72\x44\xa3\xd4\x3b\x21\x4a\xc2\x7b\x72\xd8\x86\xc6\x9e\xd3\xd2\xce\xb2\xde\xcd\x6e\x57\xef\xdc\xfa\x48\xcf\xca\xa7\xe9\xff\xb6\xe2\x8c\x50\xf9\x11\xd3\x30\xce\x88\x40\x8b\xe8\x96\xf4\x44\xd0\x87\x67\x66\x3f\x1d\x81\x54\xc1\xf7\x99\xc3\xaa\xb7\xe9\xfd\x66\x91\x29\x92\x36\x02\x95\xf4\xc2\x95\x68\xe6\xec\x4b\x23\xf6\xa6\xb3\x84\x95\xd5\x25\xcc\x24\x80\xa9\xa4\xbe\x61\x8b\xf0\x9b\xe0\xed\xea\x35\x59\x26\x73\x67\x91\x8c\x7b\x94\x67\x9b\x92\x20\x6d\x74\xcb\xe3\x70\x21\xf3\x99\x23\xcc\xe5\xf4\x28\x8f\xa7\x50\x2d\x79\xa6\x9c\x00\x9f\xfe\xf5\x6f\xf8\x04\xe1\x5c\x57\x7c\x45\xaa\x2b\xba\xd8\x93\x04\x78\x7f\x46\xdf\x33\x3b\x58\x56\x71\xad\x56\x58\x04\xb9\x30\xa5\x07\x33\x49\x6f\x6d\x9a\xaa\x26\x48\xae\xfa\x2a\xbf\x82\xe8\x25\xf2\xa3\x8c\x81\x93\x2f\x78\x59\xdd\x3c\xce\x17\xeb\xe8\x25\x8b\xf1\x3e\x4f\xc8\x6a\x5f\x7d\x8f\x19\xdf\x57\x39\x3a\x3b\xa9\x20\x0f\x8c\xfc\x4c\xa9\xa0\x38\x64\xe9\xe7\x7f\x6b\xb5\xed\x2a\x56\xe3\x7d\x45\xf8\x62\x0d\xbb\xf6\x3c\xdf\xe8\x79\x4b\x07\xc8\x7d\x33\xae\xf5\xc5\xd8\x57\xd3\xb7\xa3\x21\xd7\xc3\xc7\x44\x47\x63\x70\x4e\x75\x2a\x7d\xdc\xe4\xd8\xd3\xe4\xe8\xc7\xba\x64\x47\xf9\x86\x26\x58\xb1\xb8\xca\x2f\x53\xe5\x22\x53\xde\xf0\xcb\x34\x51\x4d\x12\xdc\x92\xd0\xc3\xa4\xc9\xba\xa6\x8f\x35\xd5\x57\x99\x05\xaf\x41\xd8\x4d\x51\x37\xed\xd2\xc0\x9b\xd4\x26\x7c\xf2\x63\x49\x63\x89\xd7\x2b\x17\x64\x5b\x95\x24\x23\x7a\x2e\xd8\x21\xda\x7a\xc3\xe4\xc8\xb7\xd8\xa5\x13\xba\x14\x98\x46\xfc\x9b\x55\x93\xb3\x0b\xc2\x48\x95\x73\xf2\x6c\x09\x6a\x01\x84\xa9\x7a\xe8\x81\x8a\x2a\xbb\x4e\x4d\xd2\x0a\x4d\xce\xb7\xb4\x80\x5a\x50\x62\x8c\x8d\x0a\x30\xa3\x95\x3a\x5d\xf5\x3a\xe6\xac\x1a\xbe\xd9\xeb\x4f\x05\xaf\x28\x0e\xcb\x8e\xdb\xb9\x2f\xfe\x6e\xea\x01\x21\x89\xbb\x6d\x0d\xe6\x85\xa2\xeb\xd3\xe8\x57\x79\x5a\xa2\xe3\xa9\xd4\x59\xb9\xb6\x17\x1e\x01\x20\x9e\x59\x46\x8a\x1a\xec\xaa\x2d\x83\xaa\x6e\x91\xa8\xba\x12\x62\x66\xf8\x08\xe2\x02\x86\xa8\xa0\xaa\xcb\xfc\x6b\xf6\x43\xab\x9d\x77\x9e\x1c\xf2\x6a\x9a\x84\xa1\x68\x52\x94\xe5\x9b\xed\x46\x1c\x03\xf6\xa8\x76\x95\x55\xbb\x9d\x38\x70\xc5\x04\xcb\xce\xbf\x2a\x2b\x75\xb2\xa7\x8c\xeb\xc4\xa0\x76\x2e\xa5\xa0\x63\x90\xce\xff\x95\xb8\x58\xff\x9f\x2d\x1a\x26\x0f\xd8\x83\x64\x78\x4d\xf9\x7a\x48\x97\xd3\x61\x62\x62\x9f\x43\xfb\x2f\x6f\x3c\x64\x00\x1d\x35\xf8\xac\x63\x55\x32\xd2\xed\xa4\x82\x10\x87\xc8\x63\x1f\xb4\x6a\x11\x90\x07\xd4\x1d\xe8\x04\x7c\x41\x1a\x78\xb0\x95\x68\xc1\x85\x63\x5b\x31\x30\x46\x3f\x32\xac\xa2\x8c\xa8\xe8\xc2\x41\x85\x4e\xbb\x46\x9d\xca\xa8\x85\x40\x87\x2e\xaa\x72\xcb\x54\xf3\x53\x79\x7b\x5e\xbe\xfa\xdb\xb7\x93\x6f\xab\xf2\x92\xd6\x82\x06\xd7\x65\x71\x05\xd1\x98\xd3\xb4\xdd\x64\xb7\xd3\x33\xf8\x32\x28\xf1\xe7\x82\xcc\xe3\x6d\x6b\x36\xb8\x77\x54\xbd\xd3\xc1\x21\x4c\xa3\x22\xa1\x8d\x01\x27\xf8\xa7\xec\xb6\x91\xfe\xbb\x30\x9f\xf1\x98\xe8\x3f\xe5\x2b\x8a\xfe\x85\xb0\x07\x2d\xa0\x28\xf0\x0f\x1c\x66\xd9\x05\x39\xc4\x15\x45\x5c\x18\x82\xd7\x63\x35\xfb\x76\xa7\xf1\x05\x38\x06\xf6\xdd\xa7\x27\x2a\x7d\x53\xe6\x82\x0c\xa5\xe8\x94\x4c\xce\x36\x72\xd7\xbe\xad\xca\xb7\x37\xd3\xde\xdd\x94\x77\xf1\xcb\x9b\x67\xcb\x30\x8f\xbd\x55\x99\xd9\x98\x03\xdc\x84\x0e\x32\x57\xb4\x95\x37\xb9\x9a\x51\xf5\xb4\xe7\x5c\x35\x06\xc1\x80\x0d\x90\x16\xa9\x33\xa9\xbc\x28\x04\x82\x05\xfe\x49\xa5\xc7\x84\xcb\x1d\x6e\x30\x4c\x72\x58\xae\xd4\xe5\x5c\x28\x75\x43\x22\x21\x42\xec\x46\x0f\xa9\x71\xb3\x5e\x46\x72\x42\x07\x1e\xec\x19\x0d\xef\x5f\x89\x70\x9d\x51\x47\x71\xb8\xcd\x7a\xf6\x15\x05\xdc\xa0\x73\x9c\xce\xa6\xc8\x51\x73\x64\xb2\xa9\xa6\xdb\xec\x87\x74\x8b\xb9\x5c\xf9\xd7\x39\x5b\x16\x64\xa8\xa8\xb5\x0b\x63\xe5\x6a\xf8\x51\xf2\xa0\x7e\x90\x7c\x64\xc1\xeb\x23\xd8\x95\x8f\x12\x14\x8e\x4d\xb5\xad\xd1\x4b\x92\x7e\x0b\xf9\xb3\xb1\x60\x05\xc1\x82\x96\x01\x7b\xab\xba\x75\xa8\xb9\x64\x89\x84\x10\x8e\x7d\x31\xa1\x2a\xaf\x87\x10\x22\xf7\x2b\x71\xaf\x53\x20\x98\x1a\x3e\xc7\x63\x1a\x90\x06\x4c\x1a\xb9\x94\xa7\x6f\x79\x95\x2f\xf8\x70\x93\xdf\x88\x72\x67\x01\x09\x52\x49\x43\x1d\xb4\xa6\xbc\x28\xb0\xe3\x1a\x83\x25\xdd\xf0\x81\xff\x79\xce\x6e\x0e\x00\x5a\xe2\x00\x6d\x4f\x80\x8c\xf0\x62\xcd\xd8\x1c\x87\xa6\x1b\xde\x61\x4b\xb8\x0d\x27\xd5\x46\xfd\xc1\x7d\xb4\x59\x54\xbd\xcf\x06\xf1\xd3\x25\x84\x09\xb2\x90\x46\x5d\x48\x5b\x92\x15\xa9\xd2\x04\x86\xa2\xec\x42\xde\x85\x8f\x5c\x2c\x03\x1a\xea\x5b\xea\xa1\x16\x82\x15\x64\x56\x53\x8a\x75\xd6\x01\xde\x60\x01\xe8\x6a\x12\x03\x02\xbc\x0c\x65\x17\x3a\xc8\x8f\x0d\x9d\xe9\xb2\xb8\x93\x9a\xfe\x4c\xc6\x63\xca\xfb\xb3\x89\x82\xa3\xea\xa3\xa2\xf8\xd6\x69\x4a\x6a\x49\xde\xea\x48\xb7\x36\x2c\xc2\x3a\xaf\x53\x06\x29\xd3\x6b\xc2\x53\x86\x21\x31\x31\xf0\x9e\xcc\x58\xf1\xe1\xbc\xc1\xf1\x11\x5a\x02\x91\xf7\xb8\xe7\x7f\xa1\xec\xc2\xbc\x98\x7a\x4b\xd4\xda\x3e\x45\x03\x9c\x54\xe2\x50\xfe\x55\x59\xbd\x16\x80\xe9\xbe\xfd\x78\xed\x95\x9e\x13\xf0\x52\x47\xe3\x4e\xb8\x85\x2d\x64\x59\xe5\x5e\x08\x30\xc4\x1b\x8d\x18\x20\x0f\x01\xf5\xa0\x4c\x2d\xf3\x82\xd4\x0b\xf2\x15\x5c\xe0\x9f\xb6\xa4\xe6\xb5\x13\xd9\x09\xe7\xce\x15\x00\xec\x15\x13\x2b\xb6\x50\xe9\x7b\x92\xbf\x11\x52\x8b\xcc\x5d\x5e\xba\x49\xcb\x89\x4e\x5a\xee\x01\xd4\x20\x9f\x15\xf3\x6c\x85\xb7\x70\x46\x2b\xbc\xd0\xe9\x26\x11\xae\x67\xab\x09\x5d\xce\xb3\x85\x4d\xeb\xba\xb6\x9a\xcd\x6a\xe2\x62\xea\x94\xf8\xdd\x62\x62\xfa\x19\x18\x64\x5a\x19\xac\xca\x9d\xb4\xb3\xcb\x70\xdf\x62\xab\x93\xb6\x97\xa4\xc3\xf6\x92\x48\xdb\xcb\x7a\x56\x8a\x09\x83\x91\x8b\xfc\x33\x2b\x71\x8e\xf2\xf6\xf8\xa5\x4d\x3c\xa6\x53\xbd\xe3\x85\x35\xed\x2c\x3e\x5f\xd8\x9d\x5b\x65\x7c\x56\xcc\x07\x95\xdc\x8d\xdd\x4e\x25\x73\x5f\xb9\xb9\xdc\x37\xe9\xd6\x59\xd1\xe6\xb0\x3c\xba\xf2\x3d\x11\x32\xf2\x94\x59\x3d\xa3\x30\x77\x88\xba\xec\xcc\x57\x6c\x45\xca\x77\x3b\x50\x80\x54\x55\x59\xa5\xc9\xd3\xb7\x1b\x30\x03\x02\x4a\x41\x05\xce\xe0\xe5\xf0\x9c\x0c\x37\x15\xa9\x09\xe3\xd2\x6e\x81\x0c\x15\xd4\x0d\x37\x55\x79\x45\x97\x64\xa9\x51\x36\x1e\x9e\x6f\xf9\x90\xf2\xe1\x75\x5e\x0f\x59\xc9\x87\x2b\x41\x00\x26\x82\xf8\x36\x74\x25\x88\x8c\x9e\xf8\xa5\x0f\x77\x57\xd9\xf1\xc3\xab\xcf\xcb\x87\x57\x0f\x1e\xa0\xcb\xd9\xd5\x3c\xcb\x67\x57\xf3\x90\xba\x6e\xe1\x7e\xbf\x40\xf6\x51\xf4\x26\x63\x13\xc1\x3c\x6e\x94\xc7\xe2\x57\x65\xf5\x95\x02\x7e\xc9\x41\x5e\x22\x7c\x91\x1d\xe3\xf3\xec\x46\x6f\xd1\xc5\xe7\xe7\x0f\x2f\xc4\x16\xe9\x3e\xce\xb2\x9b\xd9\xc5\x1c\x5f\xc3\x3f\xfa\x5a\x3c\x75\xa6\x77\x8d\xf0\x5b\xff\xe7\xab\xec\xf8\xe1\xab\xcf\xaf\x1f\xbe\xd2\x5b\xfd\x22\x3b\x9b\xbd\x9a\x4f\xce\x7c\xf0\x7f\x3b\x7b\x35\xcf\x5e\xe0\xa7\xf0\xcf\x84\x2e\xc5\x16\x5c\x7f\x71\x82\x3c\xfd\xcf\x8f\x24\x65\xb8\xc2\x1c\x3f\xc5\x04\x6f\x43\xb2\xcc\xd1\xed\x12\xb2\xde\x37\x68\xb2\xc8\x79\xf0\xb6\x20\x81\x41\x48\x8b\xe9\x5b\x1b\x5b\x5c\x30\xe9\x4f\x4d\x48\xb4\x75\x5a\xcf\xde\xce\x8e\xe7\x02\x02\x50\xa3\x1e\xac\xf4\xda\xdf\x64\xc7\x0f\xdf\x7c\x5e\x3e\x7c\xf3\xe0\x01\x12\xc4\xec\xcd\x1c\x35\x18\x24\xd1\x15\xa9\x08\x5b\x84\x08\x48\x82\x1c\xf0\x74\x4c\x8a\x5d\x06\x23\x07\xb2\x97\xe0\x59\xe0\x7a\x29\xad\x91\xe9\xb1\xc1\x1b\x42\xde\xf4\xf0\x60\xb1\xde\x63\x02\x5b\x85\x19\x3a\xed\x1e\xd6\x51\xa7\x29\xb1\xf6\xac\x22\x51\x61\x15\x43\x98\x0d\xba\x1c\xb4\x79\xc0\x36\xcf\x31\xd8\x23\x99\x35\xd8\x9f\xe6\xde\x25\x62\x6a\xe5\x56\xb1\x33\x72\x65\x9e\xdc\x3a\x1a\xc9\x74\x9d\x2a\xf9\xbc\x10\xa6\xab\xce\x11\x3a\xce\x83\x60\x39\x5a\x6b\x73\x24\x6b\x7f\xcf\x4c\x52\x97\x40\x74\x30\xb7\x24\x3a\x50\xaf\xb8\xd3\xb6\x27\xe6\x01\xac\x79\x15\x65\xcd\xb9\x0d\xc2\x4d\x27\x32\x50\xd3\x36\x93\xdc\xb6\x7e\x33\xe6\x38\x87\x04\xdd\xb8\xc8\xba\xf8\x6b\x55\x55\xf1\xa7\x95\x2b\xc8\x7d\x34\x94\x98\x13\x3a\x17\x8c\xab\xe5\xd9\x7f\x32\x7c\x7b\x81\xf0\xf7\xe9\xdf\x84\x74\x1b\x5e\x77\xd6\xe6\xc2\xf5\x3c\x39\xae\x15\x58\x48\x6e\x5c\x4d\x22\x41\x83\x27\xa2\x62\x29\x38\x75\xc9\x38\xe5\x99\xe5\xcc\xf5\x56\xe7\xd2\xb9\xbd\x84\x7f\x04\x5f\x64\x45\xa7\x38\xd7\xdd\x5a\x95\x7a\x69\xf7\x57\x17\x61\xcb\x5d\x6d\x03\xd6\x9a\x25\x38\x36\x25\xd3\xaa\x89\x7f\x79\xf3\xe7\xba\x64\x8f\x36\x54\x7b\xe1\x45\xce\xd9\xda\x8f\x82\x3b\x30\x41\x6d\xc0\xd1\x54\x57\xc7\xe0\x2c\xc3\x3c\xbd\x58\xac\x3a\x92\xc3\x02\x3c\x11\xba\x5d\xde\xf1\x36\x2b\x3b\x13\x68\xe0\x42\x16\x46\xec\x08\xf0\xa2\x35\x1c\x5c\x04\xbc\xca\xca\x76\x2a\x8b\x41\x4f\x62\x86\xf1\x38\x5d\xed\x76\xdb\xdd\x2e\xdf\xed\x46\xf5\x78\x3c\x5a\x20\x14\xaa\xcb\x2c\xd0\x06\x8d\x61\xff\xda\x8f\x0d\x52\x6d\x76\xbb\xcc\x79\x3e\xed\x0c\x7e\xf8\x5a\x99\xa0\xc6\xe3\x1f\x9a\x58\x10\x4e\xe6\x0b\x15\x41\x81\xa9\xcc\xae\x26\x7c\x82\x98\xd2\xf7\xb9\x42\x5b\x6d\x27\x67\xe9\xd7\x8b\x89\x7a\x8c\x5f\x67\x85\x58\x25\x5e\x66\xdb\xdd\x6e\x31\x1e\x77\xa4\x6a\xf0\xd2\x34\x7c\x71\x0c\x90\xb1\x1a\x8f\x47\x62\x06\xeb\xdd\x6e\xa9\x72\x20\x6c\x74\x3e\x87\x8e\x55\xd2\x80\x5a\xc3\xf4\xe4\x82\x65\xc4\xdd\x70\xaf\x61\xa3\x37\x02\x8e\xe9\x2a\x85\x99\x8a\xc1\x6e\x25\x33\x73\x8f\x63\xb5\xa5\xd7\xf4\x52\x8c\xda\x0b\xfb\xa0\x2d\xe6\x07\x5c\x2d\xd7\x07\x1f\xac\xd5\xf4\xd8\x44\xef\x2c\xb8\x96\xf6\xaf\x87\xef\x59\x0f\xf8\x08\x80\x32\x46\x1b\x00\xfd\x42\x48\xdc\xc9\x78\xbd\x1f\x8d\x9b\xca\x52\x5b\xe4\x61\xbc\xa1\x90\x91\x65\xef\x1f\x0c\x83\x9b\xf1\x13\xe7\xa5\x40\x6c\xfb\x69\xea\xa0\x74\x6c\x91\xb9\x66\x64\x7a\x71\x77\xf7\x42\xee\x8c\xac\x05\xfc\x99\x49\x7e\x43\xd9\x9b\xaf\xaa\xf2\xb2\x07\x5d\xbb\x90\x14\xc7\x69\xa7\xe6\x36\xb9\x27\x75\x17\xdc\x45\xc6\xe3\x3e\xfc\x64\x75\x53\x07\xe0\x1e\x89\x07\x59\x63\x82\xd1\x90\x53\xf1\xc7\x34\x78\x8b\x9d\x46\xae\x1c\xb0\x51\x5a\xc5\xac\x97\x72\x08\x49\xdb\x47\xc7\xac\x93\x10\x55\x97\xd0\x58\x45\x76\x5d\x38\x89\x18\xe5\x7b\xde\x3f\x17\xf9\xc3\xeb\xec\x0e\xd4\x4f\x60\x7a\x87\x11\x06\x35\x36\xb2\x18\xd6\x55\x93\x75\x29\x56\xa9\x7f\xb2\xa2\xc7\xb5\xff\xd6\xd2\x0f\xf4\xe6\x1c\xe1\x84\x96\x82\x60\xc1\xdc\xf0\x46\xd1\x2c\x95\xe9\xe9\x32\xb3\x16\x7d\x2a\xf1\x90\x97\x87\xc8\x28\x97\xe5\xfa\x96\xe3\xf1\x68\x73\x3a\xba\x34\xce\xd0\x0a\xfd\x52\xef\x69\x45\x83\x88\xb7\x08\x34\xbd\x8c\xd5\x01\x30\x9a\xc6\x84\x14\xda\xbe\x5c\x5d\xdb\xb3\xbf\xeb\xd8\x33\x17\x05\xec\xf1\xd3\x96\x54\x21\xeb\x6e\xf8\x8f\x66\x00\x2f\x94\x0a\x11\x29\x03\x5d\x60\x20\xfc\x4f\x59\x58\x47\xdf\x8c\x73\xe7\xb1\x53\xce\x04\xc6\x4b\x29\xe6\x12\x3b\x02\x02\x8b\xcd\xc1\xc1\x53\x45\xda\x47\x7b\x1c\x2a\x53\xa1\x01\xcd\xe8\x6e\xc7\x23\x16\x10\x8a\x42\x29\xba\xf2\x6d\xb9\xd9\x3a\x96\xd9\x92\x73\x31\xf0\x52\xbf\xe3\x63\x80\x5c\x9b\xa2\x68\xb8\x74\x5e\x02\xea\xec\x87\xb4\xee\x78\x09\x80\x56\x8a\x22\xb4\xc8\x54\xa9\x4d\xc3\x2d\x99\xaa\x04\x85\xca\x71\xa9\xc8\x0b\x34\x4f\x04\x69\xd5\x04\xa8\x36\x5b\x4e\x4f\x29\xb8\x53\xfa\xc6\x0e\xe9\x16\xd7\x68\x4a\xb3\x77\xdf\x26\x2c\x7a\xc0\x74\x0f\x85\x93\x0b\x13\xab\x8a\x10\xb4\x80\x8c\x69\x48\x3c\xe8\x19\x39\xe8\x0b\xe2\xf6\xd8\xd8\x67\x71\x90\x2d\xf7\x82\x2c\xde\x46\xe0\xcc\x78\x76\xbb\x50\x86\xf3\xf7\x01\x10\xf3\x5c\x54\x62\xe9\xbc\x60\x03\x2c\xff\x90\xe6\x7d\x40\x62\xdf\x8b\x62\xa0\x62\xe4\xb0\x00\x54\x4a\xc3\xcc\x38\x9d\xb4\x5f\x87\x28\x3a\xe4\x38\xcd\xb3\x68\x65\x22\x16\x61\x26\x06\x89\x30\x02\x7a\xd9\xa7\xa4\xad\xe4\x41\x4a\x77\xf0\xa8\x08\x5f\x4a\xad\xe6\x65\xd0\x46\xf8\x8f\x8a\x22\x55\x91\x80\x36\x84\xbc\x81\x9f\x48\xbe\x25\xe9\xf2\x36\xec\xf8\xc9\x72\x6e\x1b\x9d\xe5\x22\x62\x97\x01\xae\x91\xfe\xd3\xbe\x3c\xe9\x9a\xf0\x94\xe3\x84\xd6\x90\xaf\x89\xb2\x8b\x04\x8f\x8e\x11\x2e\xd2\xbf\x92\x94\x69\x50\xae\x90\xc6\x7b\x7c\x72\x16\x70\xc4\x55\xc7\x93\xfe\x23\x1d\x66\x90\xa2\xd3\xf4\x6e\x63\xa9\x77\xfe\xaa\xfd\xce\xef\x3d\xc8\x86\xf0\xc9\x11\x9a\xa6\x69\xbb\x55\xf7\x53\xbf\x33\x47\x34\x1e\xf7\xcf\x32\x98\x23\xde\x37\x15\x71\x74\x4b\xba\x94\x69\xb0\xfc\xe3\xf3\x22\xc7\x79\x48\xca\x6b\x01\xcf\xde\x0a\x1a\x22\x02\x54\x0b\x92\x22\xfd\x15\x54\xfb\xdc\xc2\x67\xf9\x48\xa3\x8d\x66\xe2\xdd\x6a\xbd\xdd\xc0\x4d\x4d\x47\x10\xd7\xaf\x45\x32\xc2\xbf\x03\xcc\xba\xa4\x42\x8d\x00\xfd\x82\x93\xca\x7d\xdd\x6a\xb0\x26\xff\xaf\xf2\xab\x90\x21\x35\x4c\x75\x28\x67\x55\x48\x6a\x26\xce\xb4\x63\xd7\x57\xdb\xa2\xb8\x51\x6e\xfb\x96\xeb\xe2\x16\x39\xc9\x80\xe7\xea\x89\x50\x01\xff\xf7\x26\xb4\x4f\x1a\x31\xbb\x93\x4f\x1d\xb7\xb5\x1a\x73\xca\xec\xeb\x23\x6f\x10\x76\x9e\x0e\x5f\xb0\x45\xcf\xf3\xe1\xb7\xb6\x4b\xa4\xde\xfb\x9c\x4f\x1d\x51\x0b\xbd\x89\xd4\x90\x5a\x46\x7b\x12\xfb\x96\x81\x4e\x6e\xde\x63\x5c\xd9\x97\x16\xfe\x79\x65\xd3\x8a\x50\xf0\x11\xc4\x65\x46\x27\x7a\x39\xf0\x68\xaa\x17\x04\xcc\xb6\xcf\xc1\x0b\xba\x1a\xe0\x09\x2f\x06\x4a\xa1\x3d\x76\xe8\x2a\x8d\xb8\xd3\xa3\x22\x33\x01\x25\x4e\x13\xd7\x84\x2e\x99\xd6\x36\xea\x8d\x28\x74\x4d\xb6\x92\x69\xe2\xe6\x60\x48\x24\x34\xd1\x55\x9a\x54\x65\xc9\x95\x75\xd7\x72\x52\xe7\x57\x64\x99\x64\x59\x16\x26\xe1\x11\xff\x85\xf9\xdd\xe6\xf6\xe8\x07\x8b\x92\x71\xca\xb6\xa4\xb9\x9f\x49\x35\xb6\xef\x9a\x0b\x71\x5b\x9c\x77\x81\x4b\x24\x20\x7c\x49\x97\xe2\x64\xba\xdf\x0f\x06\x2a\x36\x96\x94\x8a\xb0\x01\xc6\x27\x3a\x22\x05\xe8\x97\xe5\x65\xfd\x3e\xaf\x9f\xb1\xab\xbc\xa0\x6d\xce\x20\xe6\x37\x7e\xea\x76\xa6\x1a\x42\x02\x63\x5c\xa1\x69\x57\x99\x3b\x18\x3c\xb2\xb5\x5e\x1e\x6c\x3b\xf9\x08\x07\x19\xa7\x6c\xf0\x89\xd6\xd4\x8c\x6a\xdf\x8d\x50\x21\xcb\x1a\x7c\x26\x50\x4b\x1c\x5d\x29\x35\x44\x65\x42\x54\x60\xd6\x32\x99\x83\x34\x70\x34\x03\x02\xc0\x82\x3c\x4d\x52\x92\x73\xc8\x0d\xe1\xdb\x8d\x0a\xc2\x8f\xe9\x69\x17\x12\x54\x16\xde\x74\xa9\x3c\xe8\x99\x12\x1e\x3a\xab\x1a\xa9\x5d\x70\x60\xac\xc1\x9a\x43\xea\xd0\x62\xf9\x46\xc5\xbe\x21\xa4\x40\x8e\x79\x5d\x9f\xaa\x7f\xa7\xbc\xc1\x61\xed\x0e\xd4\x8e\xab\x6c\xcb\x9d\xf0\xee\x6d\xcb\x65\xcc\x01\x49\x2a\x89\xad\x42\xd2\xec\xc5\x1a\x93\xab\x17\xd5\xbf\x96\x43\x68\x0a\x4f\xa2\xf0\x1c\x3a\x5c\x95\xd5\xf0\xa3\xe4\x01\x07\x0d\xfa\xc0\xc6\x62\x3c\x5b\xe7\xf5\xf3\xee\xc5\xba\x14\x47\x45\x2d\xdb\x3f\xc5\x06\x0b\x34\xdb\xb9\x75\x2a\x39\x94\xee\xd6\x57\xb9\x72\x74\xca\xf7\x64\xc8\x31\xa2\xa2\x76\x4c\x90\x1a\x14\xee\xbf\x30\x9d\xf5\xcc\xc1\xe7\xc6\xf6\x98\xf0\x02\xef\x9c\x91\x09\x65\x8b\x62\xbb\x24\xa0\x3f\xa7\xe0\xb6\x29\x1f\xc2\x69\x3b\x6f\x16\x8c\x1d\x48\xa8\x90\x46\x8b\xae\xd2\xa8\x86\x19\xdd\xb2\x20\x15\xb0\x64\xd5\xed\x2b\x18\x93\x0f\xd0\x32\x38\xa6\x1c\xa7\x9c\x55\xf3\x2c\x3a\x98\xec\xca\x4d\xdc\x55\x36\xbe\x33\x87\x52\xf3\xa8\x8d\xeb\xec\x42\xda\x04\xb7\x4a\x03\xab\x5b\x2f\x4a\x2c\x6c\xa9\x40\x08\x92\x97\x11\x94\x51\xf2\xdd\x31\xc4\x89\x19\xe4\xb8\x15\xcb\xe7\x9e\x98\xad\x7c\x5f\x8d\xf9\x39\x28\x5e\x55\x66\x62\x96\xd9\x24\xb7\x5e\x85\x24\xdf\x6c\x0a\xba\x00\x3d\x90\x00\xf2\x89\x33\xba\x84\x59\x06\x98\x51\xfc\x36\xe9\xad\xba\x65\x75\x6d\x18\xab\x1f\x3c\x2a\xa7\xf9\x01\x4a\x66\xdd\xdc\x6a\x1d\x95\x8e\x33\x4c\xdb\xfb\x55\x80\x9f\xb1\x1f\x82\xd6\x08\x6b\x24\x78\xc4\x04\xc3\xa3\xbe\x3c\xbe\x80\x9b\x3b\xdc\x85\x3b\x6f\x67\xdb\xa3\x41\x45\xc6\xb5\x06\xab\x9e\x31\xb8\x33\x3d\x13\xaa\x4b\x65\x18\x76\xbc\xd9\xd0\x80\xc7\xed\x60\x62\x7e\x93\x8e\x8d\xb6\x00\x71\xd2\x74\x7b\x5b\x40\xa4\x10\xc7\x1f\xaf\xe5\xc0\x71\xc0\x8a\xa3\x3e\x1f\x07\x2f\x7a\xc0\x7b\xd2\x2a\xcb\x25\x27\x48\xaa\xe2\xfa\x7c\x4c\x5a\x0b\xe9\xd2\xbd\x4e\x23\x88\xd1\x50\xd4\x0b\xc2\xbf\xbc\x71\x9f\x45\xda\xfd\x44\x88\x7b\xf7\xf3\xbd\x24\xef\x2e\x57\x25\x68\x6f\xaf\x45\x7d\x58\x19\x76\x09\xae\x46\xcb\x51\x04\x35\x38\x52\xbb\xfb\x46\x09\x6c\x48\x78\x6a\x9f\x0b\xaa\x9e\x76\xce\xd3\x62\x7c\x61\xa8\xc1\xc6\xdb\xaa\xd7\x62\xa2\x8d\x68\x2a\xa3\xba\x71\xf5\x75\x86\x49\x31\xdd\xca\x44\xf8\x98\x91\xeb\xc7\x3a\x64\x6b\x5b\x95\x52\xf2\x07\x0f\x1c\x7e\x4d\xb2\x21\x07\x89\x8e\x21\xeb\xd2\x3e\xef\x3a\x84\xfb\xf0\xa8\x61\xfe\xcf\xf3\x8d\xf2\x8c\xc1\x56\x34\xe8\xe6\x51\xda\x1e\x44\x98\x65\xd5\x8c\xc3\x85\x61\x5a\x4e\x63\x0a\x9f\x9b\xcb\xf1\xe2\x9a\x91\x2a\x14\x34\x47\x59\x96\x02\x09\x95\x27\x93\x18\xdf\xa0\x07\x42\x9e\x6e\xa9\x2d\x18\x4e\x00\x80\x12\x65\xe1\x28\x46\xcd\x98\xa4\x22\x6e\x87\xd2\xcd\x4c\x91\x82\xdd\xae\xdd\xbf\x47\x29\x0e\x1f\xc8\xeb\x17\x06\x56\x2a\x35\xb1\x25\x02\x01\xb4\xfd\x8f\xdc\x69\x95\xa7\x15\x38\x18\xc7\xd6\x5b\xa2\xa9\xac\xea\xe9\x4e\xba\xe6\x31\x2b\x61\xdd\x68\x2a\x16\x3b\x73\x3c\xa9\xa2\xbd\xdb\x62\xed\xc1\xd0\xdb\xb7\xdb\x1d\x8c\x22\x64\x03\x07\xfe\xf7\x81\x46\xe0\x35\x76\x7f\xd0\x61\x3b\xfe\x60\x00\xe2\x0c\xf1\x21\x60\xc4\x57\x1b\xe7\x0e\xe9\x28\x71\xa2\x9c\xe0\x5e\x99\x29\xc4\xa1\x28\x3f\xad\x66\xf9\xbc\x63\xd2\xc9\x83\xfc\x6e\x80\x94\xfb\x80\xa4\xe6\x90\x74\xf5\x6f\x2a\x1c\x08\x49\xa6\x3f\x05\x48\xd7\xb4\x28\x94\x91\xf3\xbb\x78\x88\x46\xfd\x21\x2d\x6d\x8d\x20\x49\x13\xc4\x28\xe6\xf9\xe8\x50\xe5\xd0\xd5\xd1\x16\x19\xd5\x19\x88\x15\x5a\x6d\x60\x69\x38\x88\xaa\x5d\x92\xc6\x89\x31\x55\x8f\x39\x7a\xea\x44\xb9\xda\xe3\xa8\x47\x14\xe1\x5e\xa9\xb5\x70\x8f\x38\x06\x43\xbe\x3f\x50\x4a\x7d\x17\x19\x53\xf2\xf4\x9d\xc5\xee\xa9\x84\xd1\x5b\x63\x4b\xc0\x1d\x4a\x2a\x08\x87\xe5\x27\x85\x4a\xd1\x40\x57\xcb\x8e\xcd\x56\x76\x4b\x16\xad\xbd\xf3\xcf\xdd\x6e\xde\x3e\x93\x7f\x6f\xb5\x7e\x27\xe1\x5e\xf8\xa5\x07\x6c\x86\xdf\xa0\x77\x37\xce\x78\x45\x2f\x2e\x48\xf5\x84\xac\x48\x55\x91\xe5\x6b\xf9\xb3\xf6\xf7\xa5\x71\x9c\xb9\x6b\xee\x1b\xa6\x95\x19\x0b\x75\x7a\x79\xc6\x1c\x8f\x0c\xcf\x52\x25\x47\xef\xea\x0b\x34\xab\xe6\x29\x98\x8e\xa0\x06\xe1\x22\x53\x4f\x30\x39\xc2\x8b\xcc\x7b\x52\xc9\xd9\x72\x28\x03\x16\x0e\xf3\xf3\x72\xcb\x87\xc9\x83\xca\x3a\x40\x89\x15\xc0\x03\x4f\x19\xb3\x67\x59\x48\x7b\x96\xb2\x6d\xcf\xe2\x19\xfd\xec\x91\xce\x29\xce\xf1\x16\x22\xb0\xa6\xf0\x5a\x54\x80\xc9\x0b\xc1\x6c\x42\x97\x82\xc9\x33\x62\xfb\x78\x9c\x6e\x33\x6a\x7e\x22\x50\x96\x4a\x7d\x1d\x9f\x78\x1a\xbe\xb4\x54\x56\x1a\x79\x83\xf0\x76\x3c\xd6\xaf\x4a\xca\x74\x43\xe0\x05\xdd\xcb\x74\xdb\x88\x1d\x2a\x7d\x67\x24\xa9\x13\x24\x6e\xec\x2b\x3a\x51\xfa\x39\xd0\xd0\x9c\xa6\x55\x96\xe8\x16\x49\x96\x09\x01\xba\x5c\x0d\x8b\x09\x91\xfb\x2a\xa3\x3f\x9e\x06\xbf\x53\xbb\x32\x34\x95\x21\x24\x01\xd3\x41\xb8\xcf\x75\x4a\x26\xf2\x9b\x58\x4f\xa8\x6a\x4c\x4b\x5c\x61\x82\xd0\xd4\x29\x92\xba\xa2\x12\x0b\x11\x06\xd4\x48\xa4\xc1\x0b\xc7\xea\x7f\xcb\x03\x61\x74\x56\xc9\x0c\x29\xd2\xa2\x24\x65\x59\xc1\x41\x58\x43\xbb\x5d\xca\xa2\x31\x3c\x03\xea\x0e\xec\x74\x35\x59\x59\xad\x59\x72\x49\xdf\x52\x06\xc4\x1c\xd3\x8c\xc9\x48\x3c\x79\x5d\x4b\x1d\x8b\x02\xf9\x17\x26\xb0\x00\x45\x83\x72\x52\x91\x72\x43\xd8\x63\x51\x2d\xbd\x3d\x3b\xa3\xf5\x73\xe8\x63\x74\x8c\xcf\xce\x64\x77\xb4\x41\x58\x70\xc7\x17\xb4\xe6\x44\x0c\x02\x98\x25\x79\xc0\xb1\x8d\xdd\x52\xc8\x30\x09\x8d\x5c\x01\x1e\x59\xce\x64\x5b\x14\x8a\x39\x31\x93\xb1\x17\x6c\x3c\xa6\x93\x75\x5e\xbf\xb8\x66\x26\x5b\x48\x62\x0a\x85\x9c\x97\x3a\x95\xb3\x0a\x41\x62\x9a\x8c\x19\xed\x8b\xdd\xde\xc2\x8f\xd3\xd0\xda\x2a\x7f\x9b\xf4\x0a\x50\x43\x26\x3d\x0f\xda\xd9\xd7\x04\x93\x89\x0a\xbb\x7f\x81\xc9\xc4\xc3\x4e\x19\x84\x11\x36\x9a\x8f\xec\x2f\xe2\x17\x14\xbc\x10\x05\x2f\xaa\x25\xa9\xc8\xf2\x15\xe1\xd9\x77\x98\x68\x6c\x21\xab\xe6\xf6\x83\x6d\xbf\xb6\x1f\xa5\xa0\x9b\xd5\x98\x4c\xdc\xe9\xfc\x4c\xfc\x0f\x3a\x84\xc3\x77\xf6\xbb\x4c\xa3\xc4\xe1\xb7\x93\xf7\xea\x07\xa8\x51\x96\x52\x11\x9c\xfd\x8c\xc9\x44\xbf\x14\x65\x5f\x3a\x3f\xdc\xd1\xbe\x12\x6d\xc0\x2b\x33\xcb\x45\x87\x67\xe7\x94\x2d\xb3\xef\xc5\x5f\x17\xdb\xbc\x5a\x66\x3f\x89\x3f\x4b\x98\xea\xb3\xfa\x51\x41\xaf\x48\xf6\x37\x4c\x26\x8b\x92\x80\x49\x57\xc6\x45\x07\x4b\xba\x5a\xc9\xfe\xfe\x84\xf5\x9d\x72\xee\x59\x76\x63\xbe\x8a\x9f\xaf\x65\xea\xf4\xec\x0a\x93\x09\x0c\x62\x7c\xba\xe4\x44\x7e\xc0\xc4\xca\x83\xcf\x0d\x64\x9c\x63\xe2\x67\xdb\xca\x5e\x07\x09\x2e\x60\xdd\xa2\xe0\x79\x98\xf9\x42\x7c\x7c\xdc\x99\xba\x26\x39\x3b\x23\xf5\xf3\x52\xd0\xc2\x04\xdf\x42\xf2\x9b\xe9\xe8\x18\xd0\x94\xac\x9b\x26\x7f\x84\xf8\x83\x47\x02\x9d\x7d\x0c\x7c\xdb\xc7\x94\x2d\xc9\xdb\x04\xcf\x12\xf2\x76\x53\x56\xbc\x4e\x70\xa4\xd2\xd1\xa6\xa2\x57\x39\x27\xc9\x1c\xfb\x97\x3d\xd9\xd6\x64\x58\xf3\x8a\x2e\x78\x32\xb8\xeb\xbc\xba\x17\xa2\x59\x47\x7c\x6b\x93\xfc\x88\x6b\x1e\x8f\x52\xc3\xe5\xc9\x37\x7d\x3d\xb6\x0f\xe2\xe0\xce\xdb\x4d\x9b\x3d\x7b\x7a\x45\xaa\x5a\xa0\x77\x67\x57\xe7\x1e\x99\x78\xbf\x6d\x23\x13\xb5\x3f\x26\x0d\xbb\xf9\x90\x7c\x3a\x39\xf9\x64\xf2\x59\xd2\xa0\x41\x38\x3d\x01\x72\x39\x2f\xab\xfa\x63\x41\xa3\x4b\x46\x18\xef\x3b\x7c\x5b\x7d\xcb\x69\x21\x1a\x15\x45\xbe\xa9\xc9\x11\x04\xdc\xe9\xa9\x68\x3e\x04\xc0\x22\xc8\x89\xb7\x6e\x1b\xb7\xc6\x43\x87\xee\x3e\xb5\x95\xe6\x46\x18\x23\x4d\x4a\xd0\x6e\xd7\x72\x6c\x1d\xa5\xaf\x6e\x2e\xcf\xcb\x62\x42\x39\x81\x69\x0c\x29\x1b\xca\x2d\x86\x06\xc9\x4c\x62\x81\xe1\x23\x2d\x60\xcc\x93\x2c\xd3\x1a\x4a\x9b\xec\x50\x07\xf7\x92\x09\x0d\x89\x91\x02\x95\xdb\x0e\xc4\xdd\x1c\x1d\xc3\xe3\x15\x2e\xf5\x41\xf0\xea\xc6\x30\x8b\x39\xae\x33\x32\x0b\x26\x33\x4f\xd1\xc3\x51\xca\xb2\x34\xcf\xea\x09\x23\x6f\x79\x8a\xd0\x64\x59\x32\x99\xb5\x4f\xb2\xb5\xf9\x04\xce\x1a\xe1\x11\xdf\xed\x74\xd8\xce\x51\x96\x71\xf4\x50\x0c\x89\x1e\x36\xd2\x35\x6b\x8b\x6e\xa9\x98\x42\x99\x6d\x9b\x15\x65\x79\x51\xdc\xdc\x8a\x09\x30\x6d\xfd\x27\x84\x22\x31\xe5\xdd\x4e\xff\x95\x22\x53\x13\xc8\xac\xa4\xfe\x65\x63\x33\x74\xc1\x3e\x3a\xdb\xaa\xfd\xab\x19\xb9\x1e\xbe\xbe\xd9\x10\xf5\xcc\xa4\x98\x8b\x61\xce\x39\xb9\xdc\xf0\x21\x2f\x87\x20\x6d\x6d\x17\x7c\x5b\x91\x21\x2b\xd9\x11\x2c\xf9\xbc\xb0\xbc\x50\x82\x9a\xd4\x61\x32\xa8\xc3\xec\xed\x3b\xf3\x5b\xff\x59\x3c\xe2\x21\xe4\x06\xd3\xe5\xe0\x1d\xc4\xe7\x2a\x94\xae\x5e\x5a\x08\x30\x30\xd4\x07\x02\x16\xef\x81\x6b\x55\x95\x97\x29\x41\xc1\xf8\x87\xef\x6c\xbd\xa9\x48\xbe\xec\xdb\xd4\x77\x40\x21\x45\x7e\x53\x6e\x79\x46\x26\x3c\xbf\x90\x49\xcb\x6c\x78\xd1\x2f\x29\xd8\x24\xd4\x19\x91\x6c\x90\x28\x8f\x7d\xf3\x7e\xb8\x1d\xe8\xfb\x20\xb9\xb8\xf4\x18\x0b\x61\x5c\xa1\x85\xef\x29\x5f\x7f\x9b\x57\xf9\x65\x8d\x3c\xcd\xbf\xf5\xc0\x31\xa2\xbf\xf6\xba\xf8\xd4\x8d\xd3\xa7\x0b\x67\x9f\xce\x4f\xdd\x1f\x53\x19\xa0\x30\x3d\xc6\x5c\xa3\x43\x24\xf8\xce\x11\x69\xb1\x6d\xad\x85\x26\xc8\xe6\x6f\x69\x15\x0e\x62\x3b\xe3\x83\x68\x89\x4e\x4b\x6d\xd7\x31\x9d\xcd\x1b\x15\xaf\x61\x76\x3c\x3f\x4d\x12\x1d\xe3\xb7\xc2\xc9\x34\x41\xfa\x97\x28\x44\x53\x93\x99\x2b\x32\x86\xc2\x06\x08\xcb\xec\x75\x41\x76\x3b\x84\x59\x83\xdc\xa9\x65\xa5\x72\xc7\xfa\xcd\x6d\x77\x0b\x86\xdc\xed\x6e\x15\x0e\x62\x40\x77\xd0\x76\x1b\x27\x9d\xee\x4d\x97\x82\xa4\xf8\xe4\xed\x7d\x6b\xc0\x43\xf6\xde\x8a\xea\x16\x93\xb5\xf7\xfe\x25\xf9\x69\x4b\x2b\xb2\x6c\x9d\x81\xb6\xcf\xf7\x77\xb0\xb2\x58\x05\x61\x08\xdc\xee\x7e\x51\xbb\xe6\x7c\x9a\x91\xf9\x80\x4d\xb6\x0c\x22\x39\x2b\xfd\x19\xc3\x34\x2d\x9d\xb4\x8b\x5e\xed\x8c\xe1\xaa\xc1\x44\x48\x13\xf6\xea\xe6\x03\xe9\x3f\x5e\x3b\x87\x55\x27\x68\xe0\xdd\xf5\xed\x40\xc5\x01\x8e\x9e\x68\xf4\xd8\xa4\x38\xb5\x10\x4d\x22\x77\x2e\x7a\xb1\x16\x03\xe9\xa9\x7e\x87\x9d\x74\xc4\x4e\x96\x72\x7c\x82\x66\xc7\xd6\xcf\xc8\xc5\xd2\x0a\xd3\x55\x10\x02\x44\xfd\x82\x69\xe8\x92\xd5\xc0\x20\xc6\xa8\xfa\x27\xbc\x2a\x98\xbb\xb4\x08\x61\xf9\x46\x4f\xa4\x2d\x80\x10\xff\xec\x8d\xa9\xe6\xed\x10\x2f\xe6\x61\xb1\x63\xc2\x6a\x2a\x62\xbe\x4d\x84\xe1\x0c\x39\x2f\xcd\xa5\x7f\x0c\x07\x71\xb4\xa2\xa4\x58\x1e\x2d\x49\xbd\xa8\xe8\x46\xf0\x63\x87\xb1\xa3\x06\xac\xb9\x03\xd6\x3c\xa6\xb4\x90\xb4\x73\x3c\x4e\x6a\xf8\x23\x2c\x30\x44\xf5\x34\xa6\xde\x91\x35\x49\x13\x7b\xa3\x22\xe3\x71\xcf\x70\x10\x34\x5d\xf2\x1a\x65\x95\x65\x99\xf9\x3e\xd2\x7f\xdb\x2d\x3c\xd5\x73\x9b\x9a\x01\x05\x96\xb2\x5c\x48\xf5\x3b\xef\xf9\x3f\x90\xf7\x74\x3c\xbc\x04\x00\x7c\x0a\x2a\xa8\xd9\xf1\x1c\x97\x19\x9b\x9d\xcc\x71\x9e\xb1\xd9\x27\xe6\x4a\x7e\x0a\x56\x33\x3a\x40\x46\x22\xcf\x50\x1c\x1c\x4f\x29\x92\x4e\x34\xa3\x2c\xa3\xe2\x22\xc0\xb1\x59\x90\x2d\xc7\xe3\xd4\xab\x9f\xdb\xfa\xf9\x78\x9c\x58\x01\x34\xa1\x6c\x28\xbe\xb8\x94\x06\xbe\xed\x76\xc6\x10\x21\x7f\x27\x46\x8f\xd6\x5f\x09\x44\xf0\xc4\xe0\x81\x8c\xc1\x57\xe7\x43\xe4\x0a\xb2\x16\xb3\xac\x62\xa5\xa4\xc4\x47\xb0\x27\xfe\xe6\xb4\xaf\x2d\x1f\x8f\x13\x03\xda\x62\x49\x7c\x3c\x1e\xf1\xc9\xd9\x19\xad\x1f\xab\x28\x8f\x4f\x34\x26\x13\xf7\xea\x10\x4c\x17\x0a\xa3\x1f\x5a\xce\xf6\xfa\x6c\x2f\xd1\xc3\x48\xf2\x1e\x07\x68\x4a\x7e\x4c\x0f\x5a\x9c\x15\xa0\x0f\x12\xcc\xf7\x61\xfd\xfb\x55\xd9\x90\x18\x67\x19\x03\xa0\x08\xfd\xac\xda\xf4\x93\x39\xf4\xb3\xd2\x91\xdb\x2a\x08\xd9\xc6\x66\xd4\xa5\x9f\x54\x43\x1c\xf0\x4b\x2e\xf8\xa2\x94\xa1\x53\xa2\x78\x1f\x95\xd0\x94\xa1\xd8\xfb\x0d\x6f\x4f\xc0\x0b\x24\x67\x42\xc7\xd9\x98\x71\x91\x09\x0c\x83\xb1\x2a\xcd\x5d\xce\xd8\x1c\x41\x2e\x47\xd2\xc7\xb8\x64\xd1\x00\x1a\xef\x34\x5b\x19\x15\x83\xdb\x70\x18\x76\xb6\xac\xcd\x6e\xf4\xf6\xcc\xba\xf7\xa1\xeb\x20\xc2\x7d\x60\x66\x1f\x2a\xb9\x0f\x2d\x58\xff\xb8\x94\x7a\xe6\xa3\x9a\x44\x74\x4f\xf7\x78\x75\x55\xc2\x01\x4d\x19\x3b\xd2\x77\xa3\xdb\x34\x42\xc2\xbd\xc7\x1b\x8e\x50\x94\x06\x3d\xce\x19\x2b\xf9\x50\xd0\xe7\x61\x3e\x84\x9b\x37\xcc\xeb\x61\x6e\x76\x3b\x41\x0d\x52\x91\x4e\x91\x4e\x45\x23\xf3\x0c\x58\xa1\xa3\x15\x93\xdf\x31\x76\x12\x4d\x04\x20\x59\xa6\x00\xda\xb7\x22\xf8\xcb\x48\x49\x0b\xf2\x8a\xc4\xad\xec\xa0\x52\x41\x6b\x6e\x62\x03\xd7\xf4\x67\x92\x1d\xfb\x7d\xe7\xcb\x78\x26\x36\xae\x23\xe2\x5f\x6c\xe9\xd2\x58\xfa\x85\x03\x6b\x8b\x28\x48\x6a\xa3\x62\xc8\x08\xd9\x91\xcd\xaa\xb9\x10\x9f\x04\x23\x6c\x72\x06\x89\xd1\xa9\x7e\xbf\x95\xf3\xf3\xe7\x22\x6d\xf5\xef\x6b\x3a\xe2\x48\x05\xed\x14\x93\x40\xb7\x2a\x11\x98\xf8\xa1\x74\x13\x74\x02\x70\xf8\x62\xe5\xd8\x58\x96\x5f\x1c\x9d\x8c\xc7\x74\x52\x6f\x40\xc4\x2c\xb1\xce\x8f\xa1\x26\xaf\xae\xcc\xe8\x58\x9d\xe5\xe8\xc4\x5f\x41\x77\xe2\x62\x13\xbd\x4e\xf4\xe4\x37\x5a\xe7\x3e\x1a\xa5\xab\xd4\xab\x6d\xf3\x49\x49\xd8\x0e\x37\xc2\x6c\xbc\x6e\xe4\xec\xc8\x8c\xcf\xfd\xc1\x94\xe5\x65\x6b\xc0\x91\x3b\xa0\x6b\x29\xa9\xf7\xf2\x93\x2c\x6b\xe1\x0e\xd4\x93\xbe\x9f\x48\x16\xd6\x62\x8f\x93\x39\xbc\x8b\xa9\xf0\x51\xba\xa5\x42\x64\x6e\x78\x1f\x92\x72\x81\x4f\x1b\x7f\xe2\x5c\xbd\xb9\x44\xf4\xf4\x7a\x9a\x5a\x31\x10\xdc\x9e\x72\x73\xd3\x4e\xf2\xc4\xc8\x75\xaa\x00\xd3\x21\xd6\x36\xe0\x17\x44\x20\x23\x87\x5d\x32\xa7\x12\x22\xc1\xee\xc7\x4e\xc4\x62\x51\xb8\x9e\x50\x43\x2d\x0f\xc2\xca\x03\xb0\x99\xd3\x10\x22\x2b\x69\x52\x97\x29\xe1\x6d\xfc\x5a\x11\xb6\x24\xd5\xd1\x65\xb9\x84\x00\x05\xf5\xc7\xf6\xaf\x25\x5d\x1e\x51\x56\x93\x8a\xbf\x87\x1c\xf8\xce\x02\xd2\x3f\x8d\xae\xf5\x40\x49\xe2\xfd\xdf\x6c\xdc\x67\xf2\xb3\x9a\xf0\xe7\xea\xa4\xd4\x3b\x69\xdb\x34\xe3\x76\x91\x6f\xf2\x73\x5a\x50\x4e\x49\xad\x82\x44\x9c\x5d\xfa\xad\x1e\x3b\x55\xd2\xe4\xd3\xc9\xc9\xa7\x89\x8e\x78\xae\xfb\xf7\xbd\xf5\x60\x55\x45\xd1\x2e\xf4\x34\x84\x3c\x65\x93\x4d\x59\x83\x39\x75\x5e\xa0\x87\xe9\x31\x06\xf5\x65\x5a\x61\xaa\xae\xdb\x09\xc2\x6c\xc2\xf2\x4b\xb2\x44\x0d\x96\xf6\x31\xf1\x11\x95\x51\x56\xb4\xb0\xb1\xc6\x14\xbf\x20\x79\x06\x35\xaa\x3e\x9d\xea\xce\x97\x4a\x2e\xf6\xf7\x4b\xf5\xfb\xa5\xf2\x3a\x26\x05\x11\xfb\x2d\xfd\xc4\x7b\x2f\x1a\x78\xe5\xa9\xea\x19\xef\xbe\x3d\xc4\xf5\xa0\x55\xf5\x05\xaf\x93\x56\xf1\xcb\xc9\xdc\xcb\x59\x99\xcb\xf9\x2f\x75\x01\xaf\x69\x51\x1c\x99\x44\xa1\xbf\x5f\xc1\xdf\xaf\xe0\x07\xbd\x82\xbd\x04\xec\x7e\xee\xe7\x6f\xec\x0a\x4a\xa5\x53\xfe\x63\xfe\xd6\x2a\x9a\x94\xe7\xfd\xef\xef\x09\xdd\xef\x09\x3d\x22\x91\x9f\xa5\xd0\x6a\x80\x33\xf7\xc7\x6e\x37\x3a\xc1\xad\x77\x47\x9c\xc0\xcd\x4b\x28\x1b\xca\x77\xc9\xeb\x8a\x72\xf3\x26\xd9\x75\x77\x99\x8a\x7c\xd8\x78\xfa\x6f\xeb\x26\x35\xaa\x76\x3b\xad\xa4\x16\x02\x60\x5a\x21\x77\xbf\x46\x7a\xbf\xfc\x7d\x0f\x02\x46\x18\x08\x34\x91\x77\x15\x18\x0a\x00\x1b\xae\xf3\x9a\x7d\xc4\x87\xe7\x84\xb0\x21\xb8\xe5\xe5\x05\xad\xc9\x72\x78\x34\x04\xbb\xff\x14\x79\x35\x04\xc8\x12\x27\xb6\x0b\x60\xdd\x69\xe5\x99\x8e\xb8\x7e\x5e\x29\xcd\x92\x2d\x93\xeb\x5e\xda\xf9\xbe\x24\xab\x82\x2c\xf8\x78\xac\xfe\x98\x5c\x10\x7e\xea\xfc\xdd\xe1\x79\xe9\xdf\x37\x71\x90\x0f\x47\x2d\x64\xed\x3f\x71\x2b\x94\x8d\xb9\xd5\xee\xa7\x24\x2b\x05\x12\x7f\x88\x1e\x3a\xab\xd0\x4e\xdc\x9a\xb1\x56\xfd\x4a\xdb\x4f\xdd\x9b\xd5\x6c\xa6\xcc\x09\x5f\x0b\xd1\xb2\x4e\xe1\xbf\x72\xbc\x0a\x4d\xa9\x7c\xae\x69\x04\x10\x8a\x35\xec\x76\x2e\x2c\x96\xce\x85\x2b\xf5\x58\x35\xe1\xdf\xea\x65\xbc\x58\x9d\xda\x19\x38\x5f\xa3\x77\x68\x72\x76\x06\xeb\x3f\x3b\xdb\xed\xa2\xad\x20\x16\xa3\x77\x19\x72\x57\xc5\x99\xe6\xf1\x29\x84\xef\x68\xed\xf1\x32\x8e\x89\x5c\xe1\x7d\x11\x28\x5f\xd5\xe2\x62\x28\xc7\x7b\xf0\x43\x22\x5e\xe5\x47\x8f\x30\x93\x7f\x95\x29\x47\xf2\x54\x6d\xd0\x19\x30\x6b\xa8\xf1\x16\x17\xb1\xe4\x20\x30\xa3\xc8\x2d\xe5\x06\x04\x79\x7c\x7a\xaf\xc4\x8d\x1b\x92\xb7\x9b\x8a\xd4\xb5\x58\xf5\xe5\xb6\xe6\x43\x42\xf9\x9a\x54\xc3\x73\x02\x56\xd0\xc3\xb2\xf2\xe6\x3b\x70\x54\x29\x81\x06\x84\x8f\xc7\x6e\x12\xbe\x5b\x07\x97\x4e\xd5\x39\x10\xac\xf1\xd4\x74\x74\x8c\x5d\x9c\x26\x8e\xa8\x41\x98\x8f\xc7\xb9\xb2\xc9\xe6\x91\x3c\x3b\x10\x85\x13\xa7\x5b\x9d\x2b\x93\xaf\x09\x4b\xb0\xec\x3b\x26\xb0\xe6\x19\x4d\x4b\x37\x35\x20\xc2\xaa\x8d\xf4\x7c\xf4\xf6\x19\x33\x27\x6a\xf1\xdb\xb5\x72\x64\x7b\xbb\xae\x70\x2e\xb3\x0c\x56\x69\xed\xac\x6f\x8b\x70\x01\xdf\x70\x81\x30\x6f\x52\x97\x6e\xd6\x7b\xe8\xa6\xe8\xa0\x4e\xf0\x6c\xee\xe6\x32\xdb\xd3\x46\xbe\xf1\x5c\x10\x7e\xb4\x26\xf9\x92\x1c\xfa\x88\x7f\x2f\x6f\x5d\x0a\xc8\xbc\x64\x65\x82\xfd\xf4\x3e\xf0\xe0\x71\x5a\x25\xcb\x49\xfd\xac\xb0\x08\xa2\x70\xc6\x23\x3b\xf0\xf2\x9b\xf2\x5a\xf0\x78\x35\x49\x11\x64\x7c\xf2\xbe\xd8\x78\xb5\xd5\x29\x99\x55\x73\xe5\xe2\xd6\x1c\xb4\x71\xb4\x3e\x52\x6f\xb2\xbf\xe8\x1b\xa1\x9c\x70\xeb\x39\x98\x1c\x36\xe9\x4d\x5e\xd5\xe4\xa8\x22\xf5\xa6\x64\x35\x51\x07\x5f\xff\xb2\x2b\x90\x87\x29\x53\x96\xdb\x08\xa2\x8e\xc9\x54\xbd\x29\x28\x17\x58\xab\x22\xcb\xed\x82\xc4\xac\x71\x30\xcb\xb8\xaa\x97\x4c\x13\x84\x69\xa8\x6f\xee\x11\xb3\xaa\x8c\xfd\xca\x82\x56\xf5\x21\x05\x2d\x5c\x82\x75\x20\x78\x22\x69\x19\x60\x50\x66\xe5\x84\x57\xf4\x32\xd5\xf1\x1b\x73\x6b\xae\xa6\x0b\xb4\x17\xf7\x78\x9c\x92\x59\x39\xcf\x6a\xc8\x67\x54\x81\xb6\xfb\xf1\xcb\x6f\xbe\x72\xa9\x1c\xcf\x92\x7f\x54\xff\x60\xc9\x40\x15\xf1\x83\xa0\x6f\x5b\x15\x47\x6b\x52\x6c\x3e\x28\xc8\x01\x88\x7f\xf7\xf2\x9b\xac\x92\x16\x0a\xdb\xa2\x10\xbf\xda\x77\x68\x34\x22\x93\x4b\x30\x39\xe1\xb0\xc6\x75\x7e\x45\x5e\xe5\x97\xe4\xeb\xb2\x0e\x51\x95\xb1\xe7\x10\x90\x56\x39\xe9\x1c\x98\x3c\xfc\x45\x59\x64\x99\xcc\x2d\x04\x3f\xc6\x63\x36\x59\x97\x35\x17\x82\x17\x14\xe8\x1f\xa2\x40\x2c\x5a\xd6\x2e\x2b\xde\xa8\xed\xfc\xf8\xff\xa5\x6b\xce\x37\x3b\xf1\x9f\x1a\x7d\x3c\x70\xb9\x7e\xf5\x5c\x02\x99\xf1\x2d\x33\x6a\xae\xfe\x57\x79\xcd\xbf\x2c\x4b\xf3\x94\xb5\x2c\x17\x00\xa3\x8a\x8c\x3e\x95\xe2\x62\x9a\xe4\x10\xbd\x64\x5d\x91\x55\x46\xb0\x10\xc5\x64\xc6\xf7\x4c\xb7\x9f\x54\xf2\x31\x39\x4d\xb6\x55\x91\x20\xb9\x91\xf6\xf9\xe7\x56\xb4\x9c\x72\xe8\x00\xeb\x85\x4e\xb9\x59\x33\xd6\x6b\x14\x75\xd4\x9f\x58\x2c\x51\xd4\x29\x2b\x8e\x37\x39\x5f\xab\x72\xfd\x27\xae\x49\x5e\x2d\xd6\x53\xc1\xb8\x89\x3f\xf0\x3a\xaf\xc5\x2f\xf1\x4f\xd3\x81\xd1\xc4\x7f\x8e\x2a\x99\x00\xc8\x37\x63\x70\x2a\x81\xcb\x56\xed\xd7\xbd\x7f\x6b\x85\x4e\xed\x84\xea\x4d\x39\x98\x59\x1b\xcc\xfd\x92\xb0\xf4\x01\xfa\x5d\xfe\xed\x96\x7f\xef\x97\x5b\xfe\x97\x92\x5b\xff\xc5\x18\xf7\x5a\x32\xee\xbe\xd0\xa9\xa8\x4f\x1b\xe6\x9e\xe7\x9b\x53\x95\x8e\x58\xf1\x71\x03\x23\xa0\x06\xa7\xa4\xc3\x55\xed\x76\x69\x95\x11\x7c\x74\x92\x65\xd9\x57\xaa\x4a\x40\xc3\x2b\x64\x5e\xf1\x93\x19\xcb\x39\xbd\x22\xc3\x45\xb9\x24\x73\x27\x78\x03\x91\x77\x7f\x10\xdf\x7c\x72\x8f\x5b\xee\xc6\x9b\xd0\x79\x56\xd7\x79\xed\x70\x1a\x20\x39\xcb\x68\x9a\x35\x44\xb5\x61\x1e\x8c\x9b\x7b\x2b\x84\x22\xf3\x74\x8e\xb7\x2a\x70\x8b\xfb\x52\xdd\xf8\x24\x2e\x72\xcc\x64\xcf\x19\x33\xec\x7a\xc1\x9d\xec\x3b\xf1\x3a\x65\x38\x2e\xe7\x3b\xfa\x98\xdc\x7d\x69\xef\x20\x88\x4a\x11\xb3\xdb\x8d\xb4\x4a\xc6\x4c\xce\x9a\x3a\xd0\x55\xda\x2a\x9d\xd4\xeb\xfc\xd2\xab\x12\x81\x33\x37\xa9\xe1\x48\xda\xc6\xaa\x9d\x7a\x92\x73\xd2\xc9\x0c\xb6\x06\x4b\x45\xf5\x96\xc4\x86\xf0\xe8\x58\x19\xc2\x5a\x46\xe5\xa4\x69\x52\x74\xda\xea\xa1\x43\xcb\x34\x13\xa0\x33\x1f\x30\xb0\x84\x31\x76\xfb\x5c\x47\xde\x65\xe4\x3a\x35\xc0\x7e\x4e\xd9\x52\x55\x11\xa0\xe2\xe6\x5d\xae\x53\x8a\x3d\x97\x01\xda\x20\xdd\x1b\x24\xdc\x36\x51\x34\xec\x69\xd5\x9e\x56\xa6\xbe\x0f\xad\x8c\xe9\x7b\xeb\xd0\xb8\xed\x2f\xa8\x72\x7a\x27\xbb\xd8\x47\x3f\xe6\x6f\xe1\xa2\x67\x67\xf0\xfb\x3b\x96\x6f\xf9\xba\xac\xe8\xcf\x44\x3a\xeb\xc7\xec\x1a\xcf\x52\x82\x4e\x3d\xca\xb6\x9a\x7e\x76\x0c\x56\xb0\x8d\xe4\x65\xcb\xea\x9c\x2e\x97\x84\xdd\xa1\x8b\xf5\xf4\xb3\xe3\x4f\x6d\x17\x6e\xc0\x80\xc3\x3a\x58\x4c\x3f\xfb\xe4\x13\xdb\xc1\x97\xb9\xce\xbe\x78\x87\x3e\x96\xd3\xcf\x8e\x8f\x6d\x1f\x7f\x55\xf9\x54\xef\xd0\xc3\x66\xfa\xd9\xf1\x67\xb6\x87\x3f\x95\x8c\xdc\xa1\xf5\xe5\xf4\xb3\x13\x67\xfc\xd7\xf4\x92\x94\xdb\xee\x05\x78\x6d\xaf\x64\x9b\x47\xe7\x65\x75\x97\x25\xdf\x4c\x9d\x01\x1f\x97\x6c\x55\xd0\xc5\x5d\xda\x5f\x4c\x3f\x3b\xfe\x83\xed\xe1\x15\xa9\xae\x48\x75\x87\xf6\xe7\x53\xf2\x45\xf6\xef\xc7\xc7\xe3\x31\xf9\xfc\x3f\x8e\x8f\x55\x2f\xdb\xc5\x82\xd4\x75\x4b\x1c\xe7\x19\x19\xb4\x55\x0a\x90\x42\x1a\xa4\x80\x67\x4c\x90\x92\x93\x63\x8b\x20\xf8\x17\xd9\x27\xa2\x73\xfe\xf9\xa7\xc7\xc7\xbb\xdd\xa7\x70\x38\x5c\x8c\xe2\xce\x94\x4c\xfc\x95\x93\x89\xb3\x8d\x64\xe2\x9d\x03\x99\xd8\x43\x25\x13\x1f\x44\xc8\x24\x04\x3b\x32\x09\x2e\x03\x99\xb4\xef\x18\xf1\xe2\x63\x88\xd1\xcd\xb5\x74\x98\xf6\xa2\x53\x63\xab\x83\x81\x94\x6d\x47\xb6\x93\xa8\x23\xdb\x89\xeb\xc8\x76\x32\x9f\x26\x62\xc0\xa1\x40\x19\xe0\x68\x3f\x5c\xe5\x54\xb0\x71\x38\x6f\x77\xf8\x89\xd3\xf2\x93\xb9\xcf\xc1\x0c\x2b\xa3\xd4\x4d\x69\xa6\xf4\xba\x5b\x5f\xaf\x0b\x11\x4f\x54\x30\xfa\x8c\x60\x0a\x21\x8e\xb7\x75\x96\x63\xaa\x29\x39\x4d\x39\x2e\x53\x58\x3f\x32\x1a\x46\xbb\x25\xda\xa3\xaa\x7b\x37\x5a\xb3\x89\x4f\x85\xe0\x44\x9d\x15\x84\x8a\x95\xe9\x39\xc9\x72\x78\x4e\x16\xb9\x10\x5f\x54\x56\x4d\x2a\xcf\x26\xc1\x9f\x7d\xf2\x89\x75\x29\x13\x93\xb4\xfa\x4f\xef\xfc\xb4\xff\xd6\x7d\x4c\x10\x0e\x46\xc3\x8b\x7f\x38\x9f\x1d\x9f\x74\x4d\x27\x82\xc6\x55\xc2\xaf\x0f\xbe\x69\xdb\x9a\x54\x43\x2a\x73\x91\x6e\x48\x75\x49\xb9\x28\xe5\xa5\xf8\xb1\x2a\xab\x4b\xb0\x52\xb4\xa0\x36\x11\xeb\xf8\xb4\x6b\x1d\xc1\xdd\x59\xab\x24\x30\xf7\xbd\x08\x31\xaf\x1c\xe6\x49\xd9\xa2\xac\x2a\xb2\xe0\xc5\x0d\xcc\xec\xb8\x6b\x66\xe1\x3d\x97\xb9\x2c\x37\xf7\x34\x35\x19\xc2\x32\xcc\xe9\x8a\x3f\x3b\xfe\xac\x6b\x3e\x3e\x1e\xda\xc0\x6c\x2e\xef\x77\x36\x70\xa8\xc3\xa2\x64\x17\xa4\x1a\xe6\x57\x39\x2d\x04\x53\x2c\xa6\x75\xd2\xb9\x4d\x16\x55\x5e\xc2\x94\xae\xba\xa6\x74\xf0\x8c\x64\x66\x8b\xd7\x6b\x32\xcc\x7d\x9c\xc5\xe9\x25\x59\x0e\xcb\x2d\x4f\xf0\x51\xe7\xc5\xf0\x30\xf9\x15\x4c\xe9\xe6\xc3\x4d\x49\x9c\x5f\x2e\x08\x89\xb8\xae\x9d\x7b\xe4\x90\x1a\x99\x6d\xfc\xe2\x5e\xce\x2d\x32\x1f\x89\x39\x86\xcb\x2d\x11\x17\x32\x1f\x2e\x14\xd1\x13\x90\xf5\x87\xae\xe9\xf9\x94\xf1\x02\x66\x78\xde\xfd\x78\x48\xdf\x1b\x93\xa8\xe9\xd5\x40\x9f\x87\xa0\x68\x4a\x30\x8d\x4f\xcf\x0c\x7d\xd6\xc5\x16\x15\x8d\x4f\xea\xcf\xe3\xfa\xac\x48\x18\x10\xa7\xf4\xc3\xa8\xe6\xee\x2d\xf6\x8b\xaa\xef\xc7\x64\xd9\xa3\x65\xec\x5a\xaa\x56\xec\xb9\xdf\xa4\x56\x5c\xfc\xe9\x7f\x3f\xf0\xd1\xe6\xc0\x57\xbd\x43\x15\xf2\x87\xbd\x75\xf5\x9a\xed\x84\x61\x59\x64\x9a\x27\x9c\xe3\xba\x4b\x73\xe9\x4b\x75\xff\x5a\x9a\xcb\xfb\xd1\x29\x17\x4a\xa7\xfc\x9a\xd4\x1c\x2f\xb2\x8f\xff\x9f\x13\x08\xf4\x1f\x1f\xa7\xa7\xd3\x2b\xb6\xfc\xc7\x24\xdf\xd0\x7f\x3c\x40\xa7\x3f\xd6\x25\xfb\x98\xda\xed\x5d\xb9\xcf\x1d\xe9\x31\xce\xdd\x80\x0a\xe3\xb1\x7d\x02\x71\x63\xb4\x39\xaa\x87\xe4\xe3\x04\x9c\x30\x17\xeb\xbc\x7a\xc4\xd3\x63\x3f\x23\x7d\x47\x2d\xed\xb3\x79\x74\xe2\xa7\x7b\x77\xa4\xef\x7a\x7b\x2e\x01\x2a\x75\xeb\x5c\xfa\x75\xe0\xf1\xea\x18\x7b\xdd\x5c\x39\x55\x64\x98\xc6\x94\x64\x1b\xf0\xf7\x59\xea\x9f\x97\xf0\x93\x34\x92\x0a\x1d\x0f\xe4\xfe\x71\x52\x73\xca\x2e\xc6\xe3\xc2\x04\x71\xfb\x3e\x17\xd0\x13\x09\x55\x28\x44\xb7\x1b\xe5\xeb\x75\xa1\xf6\x1f\x02\xc2\x69\xd5\xd7\xed\xa2\x64\x9c\x30\xfe\xfa\x66\x43\xa6\x6e\x84\xf8\x8f\xdf\x1e\x5d\x5f\x5f\x1f\x09\xce\xe7\x68\x5b\x15\x84\x2d\xca\x25\x59\x3e\x1c\x8a\xad\xa9\x09\xcf\xbe\x7b\xfd\xd5\xd1\x7f\x25\x58\xdd\x61\xc5\xe6\xc3\xd3\x89\xfe\x9b\xe5\x97\xa4\xde\xe4\x0b\xa2\x3f\xf0\x6a\x5b\x73\xb2\xfc\xba\xac\xb9\x69\xa0\xb0\x4d\x34\xc2\x34\x58\x19\x94\x32\x67\x17\x7c\xd7\x8e\x4c\x67\x97\xf9\x1b\xa2\x48\x83\x74\x89\x64\xe4\x7a\x58\x6b\x90\x08\xde\x59\x59\x3b\x81\xbb\xea\x7f\xa2\x51\xd1\x80\xa4\x55\x24\x9f\xbb\x79\xe3\x25\xb6\x26\xc4\x8d\x47\x8d\x8b\x3e\xa6\x43\x1b\x4a\x03\xa2\xfd\xe3\x64\x68\xe3\x69\x54\x93\x6d\x55\xe0\x64\xa8\x7b\x48\x90\x63\xae\xf4\x76\x5d\x65\x0c\x2c\x29\x68\x83\xab\xfc\xfa\xb0\x7d\xf0\xb3\x09\xf8\x9b\xd1\x60\xf7\x43\x2b\xee\xaa\x0c\xb4\x8b\x55\x4a\xe0\x75\xb9\xdc\xed\x64\x86\x82\xdd\x2e\xf9\xd3\xd3\xd7\x09\x2e\xb2\x5b\x59\x30\xcd\xb1\xf8\x3e\xcd\xf1\xb6\x2a\xa6\x44\xac\xa2\x79\x18\x0d\x28\x01\x9a\x3c\x0d\x44\xf0\xa0\x0d\x19\x17\xcb\x8c\x4f\x14\x78\xa8\x09\xc3\x08\xa3\x2c\x23\xe3\xf1\x28\x1d\xad\xe0\x31\x62\x04\xd1\x3d\xa8\xbd\xce\x25\x4e\x1e\xcb\xee\x8e\x44\x7f\x09\x42\xc8\x73\x28\xdf\xa6\x0c\x35\x28\xcd\xb1\xbc\x24\x30\x56\xf6\xe7\x57\x2f\xfe\x3a\x91\x17\x91\xae\x6c\xde\x08\x7c\xf3\x20\x3b\x51\xd2\xa0\x0a\x96\xa1\x91\x06\x9c\x0a\x41\x78\xdd\x0d\x3b\x15\xba\x5d\x80\xf3\xbf\xfd\x48\x25\x09\x90\x91\x40\xca\xc9\x1a\x52\xb7\xbd\x54\x27\x9b\xd6\x4a\x56\xc5\xe9\x31\x66\x76\x2c\x88\x7d\xfd\xa8\x28\x74\xbd\xaf\xe5\xa6\xa4\x08\x61\x8a\x0b\x64\x42\xc4\x38\xda\x36\x94\x6e\x55\xfc\x97\x45\x76\xab\x84\xe1\x29\xc5\x9c\xbc\x85\x88\x7f\xdb\x7a\x9a\xe3\x1f\x7f\xfa\xfb\xd7\x2f\xa7\x35\xd6\x80\x35\xdd\x36\x0a\x43\x54\x5b\x26\x5f\xc5\x81\xf1\xac\xf0\x42\xa6\x86\xb8\x95\x52\xe7\xfb\xf6\x47\xf0\x0a\x35\x0d\x9a\x08\x66\xd1\xdd\x2e\x8a\x73\x74\x6b\x1a\x3c\x63\x4f\xc8\xf9\xf6\xc2\xc5\x49\xc0\x71\x2a\xae\x4d\x02\x04\x59\x0e\x73\x36\x24\x97\x1b\x7e\x33\x94\xa7\x07\x99\x58\xcc\x75\x2a\xda\xd7\xa9\x90\xd7\x09\x0f\xaf\xd7\x74\xb1\x1e\x2e\xe4\xd3\xd8\x39\x19\x02\x73\x21\x04\x34\xe0\x5c\xa5\xcd\x01\x80\xc5\xf0\xa5\x42\xc4\xf2\x49\x42\xbf\x47\xdc\x36\x93\x04\xe1\x04\x9a\x55\x92\x89\xcc\x20\x42\x81\xbd\xec\xaf\xc9\x5b\xae\x90\x67\x0d\xe9\x57\xa1\x32\x1c\x90\x39\x73\xbf\x36\xda\xed\xf2\x41\x9d\x25\x5c\x8a\x11\xd0\x23\x3c\xe6\x70\x4f\xb2\x98\x26\xc0\xf5\xbb\xc5\x96\xc9\x9f\xb6\xe0\x8a\xc4\xe1\x8a\x74\xc3\xd5\x16\xab\x94\xb5\x0e\xf8\x6c\xdd\xe3\xa6\xea\xb8\x09\x86\xa5\xbf\x5e\x57\xe5\x35\x9b\xe6\xf6\xf0\xeb\x1e\x60\x42\x93\xbc\xb8\xce\x6f\x6a\xf7\x70\x6f\x8e\xb2\x93\x6e\xbc\x48\xda\x07\x09\x37\xd0\xe2\xc2\x35\xe0\xc2\x05\x5e\x37\x78\x53\xb6\x08\x82\x8b\xf0\x14\xc9\x10\x05\x2a\x64\xf5\x52\x20\x8a\xd7\xa5\x4a\xef\x08\x39\xdd\x70\xf2\xed\x8b\x57\xaf\x13\x04\x49\x56\xee\xa3\xb7\xef\x54\x67\x82\x42\xdc\x43\x77\x8f\x5e\x3f\xfe\x1a\x3a\xf4\xa3\x3a\xbf\x63\x77\x4f\x9e\x7e\xf3\xf4\xf5\x53\xdd\x1f\xe1\x61\xc6\x06\xb7\x4b\x48\x5f\x03\x89\x17\x7c\xfb\x5e\x78\x85\x6a\xab\x07\x77\xbb\xa3\x13\xc8\x28\x6f\x5e\x0f\x3f\x4e\x50\x57\x66\xa5\x67\x7c\x58\x13\x72\x59\x0f\x6f\xca\xed\x90\x57\x54\x2a\x76\x04\xbf\xfc\xdf\x02\x56\xff\x5b\xfc\x12\xd4\x69\x98\x0f\xd5\xca\x46\xc3\xef\x6a\x32\xe4\x6b\x51\x43\x7d\xfa\xef\xa1\x24\x40\x20\xa4\x91\x7c\x39\x49\xc2\x6c\xec\xdd\x71\xd0\x1b\x1c\xdb\xa2\xe8\x6e\xa4\x24\x23\xbb\xdd\x6d\x83\x00\x34\xe1\xa5\x06\x32\xb6\x7f\xb5\x2d\x0a\x75\x93\xbe\xce\xa3\x39\x92\x6c\x54\x7a\x18\x3d\xd1\x72\x4c\x90\x80\x26\xaf\x6b\x7a\xc1\xd2\xdb\x06\x73\x4c\x50\x83\x15\x05\x8f\x74\xf8\x8e\x4a\x59\x93\x08\x35\xd5\x73\x72\x86\x44\x48\xdc\x2f\xc5\x2f\x9d\x6f\x69\xb1\xfc\xee\xe5\x37\x92\x8b\xe2\x6a\xc5\x1e\xdd\x97\x44\xfb\xb5\x2c\xd0\x7f\xee\x76\x89\x60\xc4\x45\xa9\x43\xe2\x33\x6d\xdc\x08\x2e\xdc\xa9\x57\x86\x4e\xc3\xdd\x71\x0a\x13\x34\xf5\x79\x05\x75\x9e\x90\x8a\xf2\x15\x61\x4b\x8d\xc1\x20\xcd\x95\xda\x56\xb5\x84\xf6\xc9\xa4\xa6\x8a\xe8\xd6\xd4\xd6\x7f\x89\xb3\xc5\xbc\xc1\x66\xf1\xf7\xba\xf1\x92\x66\x97\xd6\x2e\x0b\xb9\xb6\x79\x6e\x10\x22\x69\x44\x64\xbc\xf2\x2d\xd4\x94\x35\x4f\xd0\x00\x9c\x14\xb2\x65\xca\xd0\xe9\x65\xca\xd0\x94\x61\x15\x66\x88\x39\x29\x46\x0d\x2b\xdd\xee\xc6\x14\x25\x68\x40\x45\x5f\xa7\x34\xbb\x4a\x29\x9a\x2e\x21\xf0\x4e\x4a\xb3\xcb\x94\x22\x84\xa5\xfd\xc6\xc5\xd3\xb7\x9b\x34\xf9\x7f\xe9\xc7\xe8\xd4\xe0\x66\x51\x1b\xc3\xad\x06\xd1\x02\xec\x04\xd5\x1c\xa8\x83\x9f\x41\x28\x11\xfb\x52\x99\x48\x36\x46\x62\xa9\x74\xb0\x02\xac\xc2\x90\x8b\xee\x1a\xec\x93\xb1\x9e\x5c\x50\xe2\x84\xcd\xa3\x8e\x7a\x04\x3e\xad\xa6\xa9\xe2\x7d\x4d\x74\xd9\x80\xf4\x42\x3d\x05\x44\x52\x9e\x79\x2c\x95\xb3\x12\x1d\x39\x19\x87\x23\xc5\x81\x59\xb4\x49\x00\x0c\x29\xb7\xe4\x84\x5a\x5a\x72\x65\x41\x8d\x64\xea\x31\xde\x56\xa3\xa7\x4c\x79\xed\xdb\x4e\x7c\x15\x75\xd8\x43\x50\xda\x6e\xee\x3e\x1c\x84\x8d\xbd\xb2\x76\xd3\x40\x05\x1d\xb6\x0e\x8b\xdb\x1d\x78\x3a\xe3\xb0\xb9\x5f\xd8\x6e\x6c\x34\xbb\x61\x43\x5b\xd0\x6e\x64\xb9\xa0\xb0\x95\x2d\x09\xdb\x78\xfa\xc7\xb0\x99\x5f\xd8\x1e\xd0\xd1\xfc\x85\x4d\xdd\x22\x86\x89\x93\xe7\x35\xd7\x19\x6d\x18\xa9\x72\x4e\x9e\x10\x0e\x7a\xd3\xe7\xa4\xae\xf3\x0b\x62\xe0\x69\x60\xe6\xae\xd9\xfa\x94\x61\x21\xb7\x68\x45\x65\x09\xc2\x1a\x5f\xac\xa5\x48\x1c\xa3\x52\x31\x65\x47\xca\x5d\xfd\xa5\xbc\xd4\xa7\x5c\x5f\xde\x69\xeb\xfd\x93\x9f\xf2\x2c\xcb\xc8\x34\x5d\x94\xac\x2e\x0b\x32\xb9\xce\x2b\x96\x26\xae\x38\x3e\x2c\x59\x71\x33\x94\xf7\xb5\x56\xac\x78\x2d\xb8\xe4\x8a\x5c\x90\xb7\xa4\x9e\x0c\x13\xcc\x71\x02\x2a\x7e\xc9\x47\x0b\xe6\x79\x74\x02\x77\xab\x85\xbf\x3b\xb2\x7d\x40\xe6\x07\xc1\xbd\xb3\x8c\x00\x52\x1c\x54\x59\xb5\xdb\x25\x09\x66\x19\xeb\x42\x90\xa2\x3c\xcc\x86\xa3\x2a\xb8\x0b\x48\x8c\xcd\xfd\xa3\x14\x61\x08\xf0\x59\x1a\x0b\x5a\x94\x56\xc8\x98\x72\xea\x20\x20\x21\xfa\xae\xd0\x6e\x97\x8e\x46\xb4\xd3\x0a\x9f\x4f\x9c\xc3\x02\xf9\xb3\x11\x4d\x44\x37\xae\xc5\x2d\x4a\x15\xce\xe9\x00\x8f\x08\x1a\x04\xbc\x23\x27\xed\x08\xc2\x3c\x14\x84\x77\xbb\x04\x28\xee\xd0\xfb\x3c\x28\xb3\x44\x30\xf6\x1f\xaf\xf9\x65\x21\x24\x8a\xdc\xf7\x0d\x18\x8f\x2b\xf3\x34\xfb\xef\xc7\xa7\xc9\xec\x85\x7a\x72\xfb\x06\x3e\xde\x0c\xbf\x7e\xfd\xfc\x9b\x79\x32\x0d\x44\xe8\x4a\x1b\x58\xdb\x38\xa1\xac\xcd\xc4\x33\x60\xe2\xf1\x36\x4b\x54\x22\xc1\x61\x6a\xaa\xe7\x38\x41\x86\x27\x9a\x25\x70\x3a\xc3\x47\x7f\x7e\xf4\xf7\xa1\xd6\xea\x9b\xaa\x35\xe8\x47\xb4\x44\xe8\x0a\x09\x42\x94\x29\xe7\x8a\xa8\xfc\x83\x09\xaa\x12\xc1\xcb\x2d\x17\x17\xc5\x17\x49\xa9\xba\x55\x1d\x94\x9a\x38\x44\xcd\xfd\x9d\xf8\x75\x75\x0f\x2e\x06\xee\x6f\xef\xd6\xd4\xad\x03\x0c\xdc\xdf\x41\x50\x59\xf7\xe1\xa1\xe1\xfe\x1e\xbc\xaa\xba\xbd\xc1\xc6\xfd\x6d\x4d\x35\xdd\xce\x91\x57\x7b\x1b\xda\x7a\xba\xa5\x87\x92\xfb\x1b\x7b\x55\x75\x7b\x07\x2f\xf7\xb7\x76\x2a\x9a\xb6\x92\xc5\xd8\xd3\x4e\x56\x92\x6d\xda\x22\xbf\x9f\x7c\xce\x5a\xcd\xc1\x05\xd2\xb6\xe6\xca\xf4\xcd\xb1\x0a\x6b\x9c\x84\x7a\x5d\xfd\x79\x99\xf9\xaa\xc6\xf3\x38\xbe\xd8\xff\x74\x53\x6f\x37\x9b\xf2\xe0\xe0\x35\xf7\xa3\xd5\xe7\x51\xad\xb2\x98\x8e\xd8\x7e\xba\x20\xca\x5d\x9d\x32\x65\xe7\x06\x1f\xd3\x04\x1e\x8b\x90\x54\x18\xcb\x1a\x0b\x15\xe9\x70\x92\x17\x34\xaf\x65\x0d\xd5\xc7\x44\xd2\x02\x47\xa5\xbc\xbf\x89\xc3\x18\x1b\x2d\xf5\x01\x03\x69\x59\x0e\x83\x06\x23\x6e\x98\x28\x73\x95\xfd\x98\xbf\x55\x22\x66\x5c\x16\x6d\xa7\x23\x95\x64\xcb\x19\x2e\x41\x8e\x84\xcf\x90\x7f\xe0\x1d\xae\x28\xea\xc0\x0b\x72\x91\x2f\x6e\x3e\x36\x20\x75\x04\x7a\x1c\xf3\xb8\xd6\xf9\x7c\xd7\xf9\x20\xd6\xfb\x74\xe9\x7b\x71\xa8\xdb\x12\xcd\xd2\xf3\x4f\xfc\xcc\xe5\x9a\xd0\x9b\x17\x21\xab\x78\xae\xee\xef\x29\x8c\x46\x2f\xcd\x7e\xf4\x50\x39\xaf\xe7\x81\xe6\x66\xc4\xac\x00\x6a\x02\xa0\x19\x66\x67\xc4\x55\x52\x96\xf1\x58\x0b\xef\x2a\x8e\xa1\x4e\x8b\xd4\xa4\x34\xf3\x9c\x16\x29\x3a\xbd\x6d\xa6\x14\x9d\x52\x55\xc5\xcf\x3b\x2d\xad\xb6\xc5\xbf\x7e\x3a\x23\x57\x05\x61\xac\xbe\xb4\x0d\x97\xe5\x25\xb8\xfa\x84\x70\xa5\xb8\xe1\x5b\xf9\x61\x6a\xeb\x10\x84\x39\xe5\x05\x99\xf2\xa6\x41\xd3\xb4\xcc\x28\xf6\x27\x5f\x8a\xc9\x85\xb3\xd2\xd6\xde\x29\x47\xa7\x7d\x7d\x4e\xe0\xdf\xdd\x0e\xb4\xd2\xe7\xf9\xe2\x0d\x61\x4b\xf5\x48\xb3\x24\xcb\xe1\x35\xe5\x6b\x50\x4e\x4b\xf3\x82\x25\x30\x71\x53\xde\x4c\x7b\xfa\x74\x96\x87\x60\xca\x5e\xd8\x72\x8a\x4e\x67\x3d\x8d\x69\x33\x9f\xf6\x96\xbf\xd3\x84\x69\x33\x97\x8c\x5c\xe9\x23\x17\x1a\x47\x2e\x55\x7e\xdd\x89\x39\x7e\x11\x1f\x24\xff\xf9\x25\x34\x60\xd0\x57\x05\x4d\xaa\xfc\x1a\xaa\x74\xf8\x56\xed\x33\x62\xf8\x6d\xad\xc5\x90\x80\xce\xf5\x28\xb2\xa9\x6d\x2c\xee\xcb\x59\xec\x7f\x1c\x5a\x77\x04\x6b\xee\x79\x46\x55\x29\x8f\x7b\x46\xf1\x5f\xd7\x33\x8a\x47\x93\xc1\xa4\xf4\xd7\x08\x55\x51\x7a\xea\xf3\x8e\x68\x19\x1f\x3c\x54\xc5\x23\xcb\x3e\x41\x96\xbb\x2c\x4a\x61\x75\xee\x58\xcd\xd7\xb5\x3c\x18\x71\x9d\xe5\x6e\x5c\x02\x95\xdd\x61\x9f\xa9\x9f\xbf\xb8\x0f\x1b\xf0\x82\xa6\x1c\xc5\x59\x4b\xa3\x41\x6a\x4d\xe7\x5f\xc7\x69\xae\x34\xd1\x2e\x72\xcf\xc6\xdb\x3b\xfb\x6d\x1c\x5d\xba\xf6\x68\x2e\xae\xfc\xf1\xa7\x2d\xa9\x6e\x7e\x19\x07\xda\x3e\x0f\xe7\x53\x4b\x05\x40\xcc\x68\x7b\x2e\x33\x29\x1f\xf5\xfa\xd9\x9e\xe7\x35\x5d\x1c\x2d\xab\x72\xb3\x2c\xaf\x99\x4d\x59\x56\x7f\xec\x97\x1c\xa9\x27\x97\x7d\xb1\xd2\x4d\x07\x86\xaa\x04\x23\x70\x72\xb9\x29\x72\x4e\xea\x43\xc6\x8a\x77\xa1\x62\xd3\xe7\xc5\x02\xb2\x33\x1e\xe9\xa8\x5f\xfd\xf5\xeb\x45\x55\x16\xd6\xc2\x2f\x66\x9d\x17\x9c\xa2\x52\xa9\x61\x88\x0d\x83\x17\x51\x43\xb2\x74\xf5\xaf\x4a\xe9\xd6\xbf\xe7\x0d\xbb\xb7\xbc\x61\xae\x9d\xe0\x3f\x41\xd8\xb2\x4d\x0f\x93\xb3\xfa\xed\x33\x39\x97\x81\x9b\xec\xe5\x6f\x32\x6c\xd9\xd5\xaf\x1d\xb6\xcc\xb1\x1e\x4d\xaf\x7e\x0d\x5e\xf0\xc6\xe3\x05\x6f\xee\xd5\x41\xf6\xc2\xc5\xea\xd2\x68\xd1\x98\x3a\x0c\xdd\x98\x49\x0c\xe9\x28\xed\xde\x7b\x4d\x09\x29\xbc\x66\x64\xde\x20\x5c\xba\xd7\x70\x34\x72\x7f\xe2\x32\xb8\x84\x23\xff\x03\x4e\xed\x9d\x2c\x77\xbb\x72\xa2\xc1\xfb\x67\x52\xa1\xf1\x38\x2d\xfd\x3b\x5a\x66\x95\x0e\xab\x3e\xa9\xc8\x15\xa9\x6a\xf9\x97\x1f\xf9\xc7\x7d\xf6\xd6\xd0\xb9\xdb\x55\x0d\x2e\x11\xa6\x8e\xf1\x81\x37\x1a\x0c\x06\x73\xf1\xbf\x9f\x7a\xbf\x24\xe8\x50\xa4\x4d\x6b\xbd\x42\xc5\x9b\x20\x6c\x6e\x76\x38\x42\x17\x8e\xe1\x62\x6a\x65\x26\xa3\xb8\x97\xf6\x94\xce\x81\x45\x16\x77\x88\x8c\xc7\xe9\x48\xa5\x36\xfb\x86\xd6\x7c\xb7\x73\x7f\x81\xc1\x47\x4e\x59\x1d\x67\x5b\x0c\xc3\x20\x2e\x14\xc9\x20\xec\x0d\x61\x5c\x05\x7b\xb1\x78\xc2\x75\xe4\x10\xb0\x74\x4d\xd9\xb2\xbc\xd6\xb2\xf3\x23\x46\x2f\xc1\x6c\xf9\xab\x2a\xbf\x24\x61\x16\xf4\x2a\x53\xb5\x2f\x08\xd7\xf9\x74\x5e\xf1\x9b\x02\x82\xc2\x08\xa6\x99\x95\x8c\x80\x14\x38\xc9\x75\x47\x32\x9d\x75\x52\x6d\x19\x93\x8f\xa9\x6e\xe1\xb7\x45\x7e\x03\x19\x88\xd1\x2d\x24\x86\x78\x7a\x45\x18\x17\x8b\x25\x8c\x54\x69\x62\xea\x11\xb6\x4c\xb0\x23\x64\x8b\xea\x15\xb9\x2c\xaf\x48\x6f\x8b\x0a\x61\x9e\xa2\x06\xa9\xc0\x36\xf0\xe7\xfd\xb0\xa5\xd7\x59\x0a\xb9\x26\xb9\xca\x9b\x86\x52\x6b\x13\x2b\x1f\x20\xb9\x4e\xf4\x86\xd2\x24\x11\x52\x92\xaf\x33\x4f\x93\x25\x98\x9f\xe7\x52\x0c\x30\x19\xf4\x6d\x39\x2f\x37\x09\x4e\x0a\xb2\x12\x3c\x60\x45\x2f\xd6\xe2\xdf\x6b\xba\xe4\xeb\x04\x27\x6b\xa2\x3e\x94\x42\xb8\x80\x33\xa8\x13\x84\xcb\xb4\xc8\xf2\x34\xbd\x48\xd3\x4e\xaf\x4d\x95\x8e\x00\x57\xa1\x0d\xf2\x07\x89\xf6\xca\x6d\x7e\x03\xd6\x4e\x04\x43\x1d\x2e\x89\x89\xcb\x71\xfc\xb0\xfc\x9c\x3d\x2c\x1f\x3c\x40\x74\x56\xba\x89\x60\x4a\x93\x91\xa7\xca\x36\xb2\x6b\x20\x1f\x1c\x49\x47\x27\x13\xb2\x60\x26\xca\xe6\x26\x07\x23\x42\x08\x4d\x68\xfd\xba\xdc\x2e\xd6\x4f\x88\x90\x77\xb2\x2f\xcb\xb2\x20\x39\x4b\x47\x23\x09\xcc\xe3\x71\x52\x32\x2e\x2a\xd4\x3c\xaf\xb8\xc0\x52\xb2\x00\xe1\x4a\x10\xb1\xe7\xe5\x15\x59\x66\xa3\x13\xec\xc0\xad\x14\x9a\x92\x04\x57\x13\x5e\xe5\x4c\xb2\xde\x94\x5d\x3c\xd3\x25\xd1\x1b\x7a\xe4\xd5\x3d\xa2\xcc\x6f\x4f\x96\x07\x37\x27\xcb\x56\x6b\xca\x2e\x5e\x6c\xf9\x1d\x86\x07\x07\xbe\x6a\x22\x45\x02\x81\x7d\x1f\xb1\x05\xa9\x85\x00\x93\xcd\xe6\xb8\x6a\x64\x58\xb5\x12\xe7\xff\x03\x22\x42\xde\x04\x11\x21\x1f\x6b\xb1\x0c\xe1\x2a\xe3\x38\x2d\x75\x38\x48\x81\xea\x5b\xe1\x20\xd1\xed\x65\x7a\x15\xc4\x80\x94\x15\x65\x10\x95\xa8\xea\x41\x9a\x5b\xe9\xc3\x79\xb6\xec\x38\x34\x85\xd5\x8f\xac\x46\xdc\x6d\x36\xd9\x32\xfa\xd3\x96\x3c\x5b\xaa\xee\x0c\x80\x3e\x65\x62\x81\xcb\xf1\x58\x26\xf5\x20\xdc\x41\x8d\x00\x23\x72\x6e\x51\xe8\x45\x4d\x83\xe5\x6a\x6b\xc2\xb7\x9b\x76\xf4\xcb\xc0\x16\xc5\x84\x17\x03\xa5\xc0\x2b\x22\x98\x47\x71\xd4\xb3\x65\xce\xf3\x23\x72\xbe\x3c\xa2\xcb\x6c\xcf\xfc\x71\x72\xc4\x2b\x7a\x71\x41\xaa\x79\x82\xd0\x00\x2a\x29\xab\xb7\xb2\xe4\xcf\xcb\x6d\x4d\x9e\x94\xd7\x0e\xe7\xc9\xd0\x2d\x37\xb7\x73\xb7\x23\x96\x3a\xb2\x09\xcf\xab\x0b\xc2\x05\x3b\x30\x1e\x57\x91\x82\x53\x19\x0a\x27\xd1\xcd\x13\x3c\x3a\x41\xd3\x91\x41\x92\x24\x75\x78\xdd\xf3\x34\x60\x48\xcf\xd3\xce\x05\xe7\x15\xcd\x8f\xca\x6b\x56\x67\x8e\xad\x87\x49\x3b\x5a\x4f\xe8\x52\x72\x1f\x38\x81\x68\x41\x86\x6d\x1d\x8f\x69\xac\x9a\xa0\x95\xbb\x1d\x49\x29\x36\xc1\x77\x46\x27\x8d\x59\x07\xe6\x0e\xf8\x88\x45\x99\x5d\xcd\x17\xf2\x39\x75\x51\x94\x35\x49\x19\x1e\x1d\xa3\x69\x6c\xcd\x0d\x36\x4b\x69\x11\x5f\x69\x36\x5d\x96\x1c\x3e\x5b\x2b\xd3\xc8\xa9\x88\xfe\xb1\xe2\x0c\xda\x44\xbc\x22\x35\xfd\x99\x28\x78\xab\xb6\xac\x28\xcb\xcd\xa3\xeb\xbc\x22\x2f\x89\x56\x5a\xf4\xb4\x2e\x2b\x4a\x18\x07\xb8\x5d\xac\x73\x76\xb1\xaf\x23\x65\x8e\xe6\x20\xfc\xf1\x38\xed\x5e\x65\xe2\x20\x7e\x75\x23\xc4\x87\x57\xe2\xc3\xd7\xb0\xd2\x0a\x56\xb7\xaf\x07\x60\x37\xfa\xf6\x47\x67\x75\x12\x67\x10\x41\xb9\xaa\xf1\x05\xe1\xaf\xda\x85\x69\xa5\x9b\xe7\xcb\xa5\x2c\x87\xb9\x51\x76\x01\x39\x0c\xd5\x6d\xe5\x24\xaf\xc4\xf1\x47\xf0\x93\xb2\x81\x17\x0c\xd3\x9f\x8a\xf2\x3c\x2f\x60\x0d\x75\xaa\xba\x95\x25\x41\xcf\x7a\xc6\x71\xfa\x60\x36\x24\xc6\x86\xdd\x15\x76\xfa\x0f\x2d\xca\xe8\xdd\xf5\xdc\xba\x3b\xd9\x7f\x74\x66\x87\x25\x0a\x25\xcf\x22\x11\x81\x5d\x9c\x38\xe8\xc0\xc5\x82\xe3\x76\x0f\xa5\x03\x2f\xc7\x58\x02\xc1\xb9\x06\xb3\x78\xb1\x6d\x53\x22\x3d\x0d\x5c\x19\xeb\xdb\x70\x1a\x9e\xed\x85\xcc\x76\xf1\x4c\xf0\xe1\x0b\x72\x1a\xc8\x0c\xfe\xaf\x69\x50\x8a\x29\x24\xd4\x2e\x19\xf9\x6b\xb9\x24\xe9\xe8\x18\x0d\xe8\x44\x20\xfa\xc4\x26\xc0\xa6\x02\xaf\x1f\x41\xa5\x04\xe1\x94\x67\xd4\x8a\x33\x48\x1d\x89\xa6\x8e\x78\x9d\x76\x52\x24\x1d\xd8\x75\x28\xb0\x26\x4e\x2b\xbf\x9f\x7c\xa9\x23\x56\x55\xd1\x4e\x34\x5b\xe4\xf7\xc2\x44\x1b\xc2\x96\x8f\xd7\xb4\x58\xa6\xd4\xbd\x9f\x87\x53\x4a\x7c\x96\x52\xf7\x48\x99\x5a\x94\xee\xb4\x81\x1c\x0b\x0e\x31\x7d\xbe\x95\xb8\xec\xc5\xb9\xf4\xdf\x3a\x04\x90\x2e\x83\x36\xc0\x34\x87\x1d\x79\x82\x7b\x4a\x66\xc7\x73\xb1\x2f\x64\x29\x0e\x47\xf3\xdb\xbb\x1d\x7c\x97\x53\xf4\x4a\x90\x60\xa3\xe2\x28\x55\x08\x4d\x38\x3a\x8f\x49\x29\xff\x48\x05\xdf\x25\x16\x2c\x8e\x43\xf0\x58\xf5\xf6\x9c\x57\x44\x8a\x4f\x2d\xec\xb4\x77\x07\x14\xb6\x6a\x8d\xb6\xa4\xf5\xa2\x64\x8c\x2c\x78\xda\x31\xa1\x4c\x25\xdf\x50\x03\x86\x08\x21\x32\xd2\x3e\xb4\x2e\x36\xca\xc5\x2f\x82\x74\x3a\xe8\xc5\x1f\xcb\x29\xec\x5a\x94\x15\x27\x8e\x0f\x41\x4d\x87\x0e\x1f\x3f\xb9\xc8\x24\x02\x4f\x34\x9f\x17\xd3\x5c\x43\x65\xc9\xa9\x1d\xa1\x45\x3b\x22\xbd\x1b\x55\x42\x64\x3d\x77\xe1\x02\xa2\x1d\xdc\x91\x11\x30\x33\x8f\x93\xd4\xee\x7b\x37\x9b\x0b\xd4\x49\x9c\x44\x83\xe0\x2c\x68\xba\xf9\x16\x90\x20\x4a\x35\x3a\x14\xd7\x08\x3d\xac\xc6\xe3\xe4\xcb\x17\x4f\x7e\x90\xca\x0f\x25\xf9\x4f\x78\xf9\xdd\x66\x63\xed\x87\x93\xaf\x5f\x3f\xff\xa6\xa7\xc6\x43\xc4\xa5\xff\x47\x25\xc4\x8e\xf8\xb0\x95\x3b\xac\x71\xe7\xb2\xb4\x21\x64\x10\x62\x0b\xd5\x79\x2a\xb9\x4a\x14\x28\x36\x5a\xb6\xd2\x9b\x10\x58\x27\x39\xdc\x35\xb7\xdc\x35\x91\xf1\xd3\xe5\xcf\x5b\xb3\x57\xa0\x7e\x7d\xa4\xa3\xd6\xa8\x7e\x4d\x3b\x0c\x69\x34\x75\x35\x59\xfa\x84\x14\x3c\xaf\x51\xca\x41\x3f\x36\x59\x8a\x9f\x7f\xc7\xb9\xfe\xf3\x87\x41\xf9\x79\xa5\xbe\xfe\x95\x5c\x40\xc8\xcd\xd3\xb4\xcc\xc2\x6f\x98\xeb\xc5\x3c\x51\x3e\xc8\x08\x4d\xcb\x2f\x74\xb5\x6f\x01\x34\xfc\xa6\xfa\x5b\xb4\x69\xae\x47\xfd\xc1\x8e\x9a\x67\xe1\xb7\x78\x53\x3d\xea\x0f\x7a\x84\xf1\xd8\x69\xdb\x37\xac\xb5\x74\xfa\x56\x16\x09\xce\x21\x2d\x77\xbb\x1c\x8d\xc7\xd2\xb0\x9d\xd6\x4a\x54\xd0\x9b\x5b\xe2\x1c\x3b\x1b\xac\xd4\x5d\xad\xbe\x9b\x41\x0f\xbe\xbb\x5e\x13\x52\x24\x98\xe3\xdb\x45\xbe\xe1\xdb\x0a\xa4\xe5\x4d\x5e\xd7\xf4\x8a\x4c\x47\x27\x4d\x0f\xab\x98\xc5\x30\x6a\xf4\x12\xef\x1d\xa4\x51\x73\xf7\x98\xdd\xfd\xcc\x6a\xd6\x2a\x91\x6d\x02\xfc\xb5\xe7\x6a\xa0\xdb\xf6\x3d\xea\x44\x76\x32\xa9\x27\x50\xe9\x4e\xe1\x45\xf2\xce\x87\x48\x2c\x11\x2e\xbb\xad\x92\xe7\x82\x67\xec\x1e\x85\x74\xe2\xc2\x10\x8f\xdf\x79\x69\xd1\xc3\xfc\x10\xab\xeb\x1d\xe8\x90\x05\x86\xec\x6e\x12\x8f\xe5\x93\x70\x52\xc3\x53\x9e\x31\x2a\x7e\x71\xad\x25\x17\xc1\x99\xd6\x65\x71\x45\x5e\x42\x54\x10\x19\xd2\x29\x55\xd9\xf2\xa7\x84\x5d\xd1\xaa\x64\x97\xa0\x6a\x9f\x38\xbf\xcc\x14\x1c\xc5\xae\xe2\x95\x3b\x26\x31\x34\x97\xe5\x82\x68\xb6\xfa\xcb\x9b\x67\x4b\x45\x97\x6d\x37\x8e\x46\x86\xdf\x14\xa4\xd5\x9d\x3c\xb0\x24\xc1\x26\xb5\xeb\x06\x2b\x97\xbf\x82\xac\xb8\x0e\xf7\x01\x4a\x64\x9d\xb1\x18\x34\xc9\x58\x86\xb1\x98\x48\x75\x32\x56\xfe\x58\x8e\x4e\xd9\xa4\x2b\x19\x8f\xdd\x07\xa3\x3c\xf2\x60\xc4\xd1\x2d\x79\xe0\x5a\xa6\xe2\x64\xea\x78\xa0\xe4\x33\x3e\xc7\xc9\xc3\x04\x49\x8d\x5b\x2a\xea\xf2\x72\xe3\xf8\xb6\x73\x28\x46\xb8\x52\xa5\x62\xea\x6e\x48\x10\x55\xcc\x54\x31\xac\xc6\x29\x67\xaa\x9c\xaa\x72\x58\xa0\x53\x4e\x55\x79\xa9\xca\xe5\x9a\x9d\x0a\x25\x42\x4a\xfd\xa7\x1e\xca\xd7\xfc\xb2\x78\x95\xaf\xc0\x0d\x01\xd2\xb3\x2c\x53\x27\xfe\x2d\x2e\x11\xce\xe1\x9b\x36\xac\x41\x4e\x61\x04\x10\x67\xbe\x86\x7f\x8e\xf7\x3d\x6d\x2e\x7a\xfb\x43\x78\xe1\x6a\x1c\x2f\xfc\xea\x31\x20\x9c\xd5\x77\x1c\x33\xd2\x49\xff\xa8\x0a\x3c\x67\xdb\x3b\x0e\x24\xdb\xed\xe9\x5b\x2a\x23\xd5\x2e\x9e\x49\x6e\xf5\xae\xe3\x40\x1f\xfd\xe3\x58\x35\xca\x7b\x0d\x65\xba\xe9\x1f\xcd\x51\x29\xbc\xd7\x70\xb6\x9f\x83\xc6\x03\xe5\xc1\x7d\x0c\x28\x3a\x3a\xe0\xdc\xda\x52\xdf\xfb\x9f\x63\xab\xcf\xc3\xce\xf5\x9e\xa7\xd2\xd9\xed\x9e\xd9\xb4\xa5\xd3\xf7\x9b\x46\xab\xbf\x03\xc6\xf7\x24\xd6\xf7\x1f\xde\xed\xae\x7f\xf4\x2e\x81\xf5\xbd\xe6\xd0\xd1\x69\x30\x93\x22\x5b\x20\xb4\xdb\x15\xf0\x3f\xc7\x2c\xf0\xfa\xdd\xcd\x02\xd5\xcb\xc5\x2f\x62\x16\xa8\xc7\x0a\x4d\xf7\x22\x66\x7b\x0c\x3b\x71\xdf\xfc\xfc\x7c\xff\xa2\xe6\x7a\xf9\x3f\x85\x65\x59\xdd\x63\x59\x56\xfe\xf6\x2d\xcb\x7e\xad\xb0\xfb\x66\x02\x85\x67\x32\x55\xdc\xab\xc9\xd4\xe2\x77\x93\xa9\xdf\xae\xc9\xd4\xfd\x98\xee\xac\xba\xec\x76\x52\xd6\xb6\xdb\x49\xd3\x45\x9a\xd2\x7f\x5d\x5b\x9a\xda\xd8\xd2\x6c\x0f\xb3\xa5\x21\xfa\x45\x2f\x4b\x16\x05\x5d\xbc\x01\x13\x12\x5e\x6e\xc4\x71\xe4\x17\xc0\x01\x81\xad\x8c\x32\x1f\x11\x34\xe8\x5f\xdf\x7c\xa4\xd8\x63\x3e\xc2\xb4\xf9\x88\x7c\x61\x34\xaf\x8b\x31\xe5\xac\xaf\x93\x5f\xd2\x1a\xa4\xbd\xdd\x2e\xb9\x14\xad\x40\xa2\xd0\xaa\x5b\x73\x16\xe3\x31\x10\x82\xc9\xf9\x96\xf3\x52\x10\x27\xa9\x75\xf1\x8f\x45\xd0\xda\xe0\x93\x56\xa9\x9d\x89\xef\xaf\xc9\x5b\x2e\x6d\x19\x68\xc9\xbe\x63\x9c\x16\x30\xcf\xed\x46\xd7\xe2\xe5\xc5\x45\x41\x9e\xd5\x5f\x12\xca\x2e\x24\x9f\xb7\xfc\xf2\x06\x1e\x6d\xa5\x2a\xe9\xf4\xb0\x6a\xd9\xe8\x64\x1a\x7f\x79\x90\x4d\x53\xe2\x3c\xb9\xca\x1d\x7b\x2c\x41\xad\xbd\x5b\x31\xa3\x66\xad\x55\xd1\xfb\x40\xeb\x27\x32\x8d\xba\xd8\xc6\x91\x37\xf2\x6e\xd7\xb9\xdd\x12\xba\xef\x7d\xab\x7f\xc9\x4d\x0c\x77\xf1\x2f\xe4\xe6\xae\x50\x97\x9e\x40\xaa\x18\x41\xf3\x1e\x97\x4b\x72\xba\x67\xc8\xe9\xa7\x9f\x78\xd5\x21\x23\x94\xaf\x84\xc6\xfb\x66\x3d\xfd\xe4\x3f\xdd\x3e\x94\x09\x53\x87\x6d\x4b\x1b\x54\x5e\x1b\x41\xe8\xfd\xde\xfb\xce\x42\x91\x26\x3a\xd0\x53\xb6\xec\xdc\xce\x03\xce\xf0\x18\x13\x01\x2b\xa1\xc2\xbf\x1b\x2c\x53\xef\x19\x31\xac\xd7\xda\x4c\x1c\xbc\x3a\x9e\xdc\xf1\xd5\xb1\xbd\x09\x98\xa8\x77\x86\xc9\xaa\x5c\x6c\xeb\x14\xe1\x9a\x70\x15\x92\x33\x34\x17\x86\x04\x95\xba\x3e\xe2\xd5\xcd\x6d\xca\x5b\xc9\x28\xaf\x20\x15\x25\xa0\x1a\xa5\x90\x46\x08\xd8\x03\xfb\x29\xd5\xa4\x66\x74\x2c\xfe\x5f\x59\x67\xda\xa4\x58\x1c\x48\x9f\x57\x15\x35\x2b\xca\xf2\xa2\xb8\xb9\x35\xf3\x5d\xd2\x1a\x82\x4e\xca\x7a\x5c\x1c\xe7\x31\xa4\x07\x0d\x5f\x60\xa2\x8f\x9e\x6a\xfd\x31\x75\xf9\x1e\x1c\xf4\xde\x3b\xde\xdf\xc1\xa5\x44\xd2\xba\xb9\xfa\xe9\xbc\x12\xdb\xf5\x04\x85\x7d\xf7\xe3\xdd\x86\xb2\x53\x3d\x2f\x97\x37\x8e\xe9\xba\xec\xae\xc3\x70\x9d\x93\xb7\xfc\xa8\x06\xca\x73\xa4\x21\x3d\x71\x66\xfd\xe1\x1f\xd7\x7b\xee\x7a\x3f\x69\xbc\x1b\x8a\x79\xf7\xfd\xcb\x97\xcb\x3b\x6e\xde\x1c\x8d\xc7\xb9\xa7\xae\x66\xc0\xe5\xe7\x69\x85\x69\x44\x5d\xdd\xe2\x4c\xee\xaa\x8a\xa1\x7d\xbd\x21\x4c\x5d\x1d\xcc\x22\x56\x5b\xd1\xf8\x7b\x18\x57\xf6\x74\xc8\x98\x86\x22\xde\xc3\xa8\xba\xaf\x43\xc6\x75\x89\xd4\x3d\x0c\xed\x74\x77\xf0\xe8\x40\xb9\xee\x6b\x6c\xd1\x59\xff\xc8\x71\x5c\xfa\x5e\xe3\x47\xbb\xec\x9f\x45\x0b\x03\xbe\xd7\x04\xc2\xde\xf6\x8c\xfd\xfe\x2a\xd7\x3d\xfd\x05\xe3\xb3\x8c\x22\xb4\xdb\x31\xf1\x3f\x47\xd1\xb9\x7a\x67\x45\xe7\x2f\xa1\xe0\x7c\x07\x7f\x67\xe5\xeb\x7d\x07\x6f\xe6\x81\xab\x8b\x73\xb2\x53\xfe\x8b\xaa\x45\xb7\xff\x14\x6a\xd1\xa2\x47\x2d\x5a\xff\xf6\xd5\xa2\x8b\xc0\xe1\x76\xf1\x9b\x74\xb8\x5d\xfd\xda\x0e\xb7\x7e\xd8\x80\x5f\x41\x7b\xbc\xf6\xb4\xc7\xeb\x5f\x29\xf8\x4a\x44\x2f\xb9\xc4\x1b\x7c\x89\xaf\xf0\x0d\xbe\xc0\xe7\xd9\xec\x20\xff\xbf\x39\x3e\xeb\xd4\x66\x96\x31\x6d\xe6\x32\x73\x13\x26\xff\xab\x69\x33\x0b\xa3\xcd\x5c\x1d\xa6\xcd\xe4\xe5\x26\x93\xe9\x18\xc0\x50\x46\xff\x0d\xbb\xad\x7f\xc0\x96\xeb\x1f\x72\xdf\xf5\x2f\xc7\x50\x26\xbb\x6d\x20\x7a\xf7\x79\x41\x17\x8f\xbe\x7d\x26\x7f\x7a\xe6\xf5\xd2\x85\xf0\x8a\x54\x9c\x2e\xf2\xe2\x5b\x45\xbf\xb2\x24\xdf\xf2\x32\x11\x5d\x97\x15\xfd\xb9\x64\x3c\x56\x06\xf1\x72\x5f\xcb\xa7\xbf\xef\x61\x3e\x8e\x8e\x95\xe2\xf2\x7f\x80\x8e\x75\xbd\x47\xc7\x4a\xf7\xb8\xe8\x2d\xd2\xd5\x5d\x5d\xf4\x06\xd6\x10\x6e\xb2\xdd\x2c\x73\x4e\xc0\x57\x39\xbd\xd5\x5e\x6b\x2a\x0e\xe6\xc5\x96\x2e\x21\x81\x84\xe8\x0a\xd3\xfa\xc5\x86\x30\xa9\x9c\x53\x74\xa5\xb8\x11\x9f\x40\xfd\x78\x82\xb5\x94\xa6\xd4\x77\x46\xb5\x33\x3a\xc1\x4a\x7f\x33\xbd\x2d\x4d\x0f\xe2\x2f\x48\xca\xad\x7a\x07\xb5\x97\x2c\x82\x3f\xdd\x32\xa9\xf6\x99\x3a\xca\x27\xb7\xd4\x9a\x75\x4f\x95\xb5\xa4\xfe\xed\xd4\x6a\x1a\xe5\x7c\xe7\x38\x26\x06\xbf\x77\xbb\x03\x3d\x15\x49\xe8\x9d\x58\xb2\x67\x8c\x72\xa5\xd0\x93\x3f\x5c\xff\xa5\x25\x5d\xbe\x24\x0b\x42\xaf\xc8\x23\xce\xa3\x9a\x96\xf6\x19\xb6\xda\xec\x3f\xce\x91\x54\x01\x9f\x95\xc5\xf2\x89\xda\x7c\x5c\xe9\xaf\xfa\x38\x06\xad\x3a\x59\x85\xab\xf1\x78\x44\x4e\x23\x36\xf4\xd8\x6d\x8b\xa6\xa3\x6a\x3c\x26\x3a\x40\x64\xa4\x22\x01\x0b\x2e\xbb\xf0\x6b\x5a\x14\x4a\x45\x7d\xd0\xa2\xbd\xfa\x3d\x0b\xd6\xf6\xb2\x32\xb7\xd9\xa3\x6f\x9f\xa9\xad\x77\xbe\x40\x32\x1a\x3b\x13\x01\x6d\x9d\xfa\x4c\x4f\x8f\x2e\x6d\xc7\x35\xba\x73\xc0\x38\x28\x90\xb7\x41\x7d\x2e\x99\xf8\x31\x1e\x8f\x4e\xb4\x5e\x5d\x7e\x49\xfd\x46\x98\x20\xd5\xc0\xbb\x75\xea\x62\x79\x5e\x25\x70\x07\xda\x33\xd6\x54\x2b\x9c\xf7\x78\x3c\xea\x98\xb8\xda\x9a\x70\xe2\xe3\xf1\x28\x55\x13\x7d\x2c\x86\xf2\xe7\x0e\x9f\x3a\x27\xef\xed\x57\xaa\xdd\x8b\x14\x7f\x40\x49\x9d\xde\xae\x35\xa6\x9f\x02\x41\xb9\xf2\x7f\xf2\x72\x23\xff\x00\x43\x48\x49\x72\xc0\x64\x11\xfe\x94\xe6\x8d\xf0\xa7\xb2\x64\x04\xef\x17\x75\xe8\x9b\x8a\x5c\xd1\x72\x5b\xff\x2d\x24\x37\x5e\xe9\xd7\x6d\x92\x23\x47\xee\xdc\x7b\xb0\x03\x47\x26\x54\xe9\x3b\xb8\xfe\xda\x1d\xee\xf0\xfd\x05\xa7\x5d\x9e\x9f\x3f\x63\x4b\xf2\xf6\x8b\xa3\x13\xf1\x53\xe9\x9a\x1b\xc7\xe1\x46\xa0\xb7\x4e\x50\x0d\x8f\xf1\xd4\x22\x4c\x60\xdb\x35\x66\x75\xd1\x4f\xd5\xe7\x38\xa3\xbd\xe9\xc2\x8e\xb5\xed\x6d\xbf\x25\xaf\xf5\xd2\xc5\xfc\x83\xec\x19\x5d\xa5\x64\x3c\xe6\xfa\x1d\xa7\x65\xb6\x99\x75\x7c\xdf\xed\x0e\x36\x41\x1e\x38\x39\xf4\x2e\x3c\x30\x4e\xda\x9c\x4b\x82\x93\x90\xd1\x49\x70\xd2\xe2\x62\x12\x9c\x74\x83\xa2\x53\x18\x42\x31\x08\xfd\x0e\x6b\x25\xc4\x32\xb3\xcb\xd2\x70\x5d\xca\x32\x72\x19\x46\x6b\xa0\xdb\xef\x76\xcc\x4d\x0f\xa0\xbc\x53\xdb\xdb\x83\x2b\x3f\x63\x12\x60\x59\xc7\x35\x4e\x34\xa5\x02\x2a\x8d\xf5\xb9\x5f\x21\x86\x98\xac\x50\xe7\x5c\xff\x18\xf7\xe7\xa0\x83\x36\xdb\x88\x1d\xd6\x73\x1a\x1a\x6d\x43\x56\x9d\x6a\x02\x46\xb5\xe3\x71\x6a\x0c\x3b\xd4\x27\xc1\xf5\x82\xa4\x2e\xb8\xdf\xc4\x49\xb9\x68\x4a\x71\xb2\x79\x9b\x20\x6d\xb0\xe1\xb4\x14\x98\xe8\x34\x65\x92\x59\x6e\x37\x05\x63\x73\x68\x8b\x99\xcb\x44\xb7\xfa\x81\xb2\xf1\x38\xf5\x7e\x6b\x3b\x11\x6d\x45\x12\xa9\xaf\x7b\x6d\x0f\x2d\x6d\xdb\xf5\xd8\x86\x99\x8f\xac\x01\x10\xa7\xd4\x54\x00\x27\xdd\xee\x4b\x9a\xc6\x77\xed\x81\xc4\xb6\xd0\x81\x92\x06\xda\x3d\x28\x7b\x7a\xd5\x85\x6b\x37\xa4\x6a\xc4\xad\x87\x8e\x04\x6d\x39\x37\x19\xc2\x88\x10\xdd\x67\x64\x6e\x07\x9f\x91\x39\x0c\xec\x1c\xf6\x8c\xcc\x9d\x52\xd4\x20\xc8\x92\xad\x69\x14\x2f\x37\x48\x0b\xf6\xb3\xb9\x91\xb8\xca\x21\x95\xd1\xa4\xc5\x54\xc2\x15\xce\x4a\x31\x48\xc2\xb6\x82\x7f\xb1\xaa\x29\x5b\x7a\x4a\xa5\x9b\x9a\x5d\x77\xe9\xdb\xfa\xdb\xaa\x6a\x0b\xa6\x87\xb7\x40\x08\x0d\x40\x1c\x7f\xa4\x03\x22\xa4\xda\xac\x9c\xaa\xf4\x15\x0f\x13\x1b\xb8\x33\x42\x56\x59\x40\x03\x23\x54\x2e\x7a\xdf\xfa\x09\x67\xe4\x0e\x32\x87\x75\x05\x2e\xa2\xeb\x65\xaa\xcd\x55\x04\x9f\xfd\x47\x6d\x14\x21\xc0\x46\x6a\xf0\xd8\x1f\xc9\x49\x76\x0d\xdb\xd1\xc1\x89\xd3\x81\x53\xa5\xdb\x25\x52\x32\xb2\xb5\x09\xbc\x6f\xe6\x9d\xe0\x56\xac\xf2\x90\x17\xf2\x11\x68\x3f\x2f\xca\x11\xb6\x5e\x34\x67\x17\x84\x3f\xb1\x18\xf9\x59\xfb\x9d\x5d\xd3\xde\xf7\x73\xe1\x81\xb8\x55\xe0\x0d\x04\x56\x07\x4e\xd9\x78\xdc\x17\x7a\xd4\xea\xd0\x66\x51\x79\x28\x99\x8f\xc7\x9d\x45\x2e\xad\xe9\x92\xa7\xae\xcb\xea\x72\x5d\x16\x24\x89\x39\x16\x75\x79\x14\x49\xb1\x25\xdc\xba\x14\x35\xb8\x0e\x92\x14\xaa\x06\x56\x5f\x7a\xda\xd5\x76\x4a\xe4\x73\xe2\xd6\x7b\x4e\xa4\xe0\x49\xb3\x4d\x2b\x5c\xb6\x9f\x13\x37\x99\x3f\xd9\xcb\xac\xe5\xfc\x72\xb5\x57\xd1\x98\x77\xb8\xa2\x24\x08\xdf\x64\x6e\xe1\x45\x76\xdb\x78\x48\xf6\x2a\x8e\x5e\x2f\x04\xae\xbc\x92\xc6\x99\x17\xbe\x71\xa6\xfb\x13\x5f\x84\xc6\x99\x17\x9d\xc6\x99\x17\xbb\xdd\x45\x68\x9c\x79\xe1\xab\xc0\x2f\xb2\xcb\x03\x8c\x33\xbd\xf4\x92\xe9\x12\x6f\x40\x8e\x20\x0d\xbe\x40\xf8\xc6\x31\xce\xbc\x08\x4c\x27\x2f\x94\x71\xa6\xf7\xfd\xf4\xa2\x6d\x9c\x79\x63\x8c\x33\x2f\xfa\x8d\x33\xc3\x11\xe2\xda\x4d\x31\xc3\x0b\xb1\x38\x65\x9c\x99\xe5\x08\xed\x76\xa5\xf8\x9f\xf3\xd6\x74\xb6\xef\xad\xe9\x4e\x91\x70\x7f\x85\x6c\x2c\x5f\xbf\x7e\xfe\xcd\x97\x79\x55\x4f\xf4\x44\xd3\x5b\xba\x9c\x26\xeb\x3f\xd4\x27\xf9\x9f\x7f\xa4\x09\x3e\x2f\xca\xc5\x9b\xe9\x47\xb7\xea\x0d\xa6\x4e\xa6\xb3\xc4\x38\x5c\x39\x7f\xfd\x51\x0d\xa2\x42\x4a\x24\x7f\xf4\x19\x58\x9c\xfc\xf1\xca\xe1\x6e\xff\xb8\x76\x7f\x2c\x69\x95\xe0\x64\x9c\x4b\x0d\x47\xf2\x47\xe7\xad\x6c\xac\xba\x85\x36\xfc\xb2\x78\x9d\x5f\x24\x73\x9c\xd4\x02\xa1\x83\x12\x20\x99\xce\x66\x9f\xe1\x84\xae\x12\x3c\x9b\x7d\xf2\x29\xfe\x03\x9e\x25\x92\x08\x25\xf3\xf9\x1c\x78\x05\x7c\x1b\xd4\x3f\xc6\xc9\x70\x98\xcc\xf1\xec\x3f\x71\xb2\xa4\x57\x09\xe6\xd5\x96\xcc\xf1\xec\xe4\x18\x27\x0b\x35\xff\x5e\x15\x90\x46\x5d\x47\x65\x45\x2f\x28\x13\x5d\xfd\xd7\x1c\x8b\x7e\xff\xf1\x0f\xf8\xe5\xce\xe8\x33\x3c\xeb\x9c\x89\xad\xf7\x19\x9e\x25\xe5\x15\xa9\x8a\xfc\x66\xcf\xc4\xe5\xff\xbd\xcb\xf4\x4d\xff\x72\xba\x7f\x70\xa6\x3c\x87\x04\xc7\xf9\x25\xe1\xa4\x12\x43\xcd\x1b\x98\x81\x5c\x4a\x41\x38\xcc\xf1\xbf\x70\xe2\x3c\x81\xca\x0f\x47\xc4\x78\xdf\xc1\xef\xb2\x52\xcb\x3e\x39\x11\xeb\x96\x33\x94\xcb\x99\x9b\x7f\x66\xb3\x44\xa9\xed\xc5\x5c\xf6\xb7\x3b\x74\x43\xfe\x03\x8b\x1e\x3e\x81\x0e\x66\xb3\x93\x4f\x70\x42\x97\x09\x7c\x3b\xc6\xb3\xc4\x8a\xa9\xb0\xc3\x50\xae\xf6\x6b\xf6\x89\x80\x9b\xbe\x33\x1f\xf6\x02\xc4\x91\x1c\xe5\x3f\xe4\xd4\x0f\xaa\xfb\xef\xaa\xae\x9d\x5f\x10\x96\x45\x4c\x51\xec\x8c\x0f\x48\x7b\x7b\xa7\xec\x68\x03\x57\x4e\x6d\x9e\x19\xe2\x53\x80\x43\xbd\x70\xed\xc9\xa8\xc6\x96\x3f\x4d\x29\xdc\x48\x51\xf6\x9f\x12\x78\x67\x27\x9f\x62\x01\x32\x9f\x82\x46\xf2\x88\xb2\x9a\x54\x5c\x4d\x0b\x9a\x83\xdf\xa1\xec\x3d\x56\x47\xec\xae\xe2\x01\x41\xb6\x35\x02\x64\x77\x13\xd3\x6d\xcb\xf1\xac\xbf\x8d\x75\x14\x34\xf5\xae\x69\x51\x1c\x2d\xb5\x42\xd1\xd4\xec\xf4\x6c\xdb\xd7\xd0\x71\x0d\x3c\x74\x8c\x44\x6d\xfd\x6c\x0e\x87\x18\x81\xe3\x7f\xfc\x83\x0d\x87\x2e\x30\x9f\x7c\x86\x4f\x8e\xcd\x15\xb5\x25\xed\xab\xda\x73\x8f\x3f\xd1\x17\x39\x72\xc1\x63\xc8\x88\x79\xf7\x59\xdd\x9b\xb6\x97\xac\x5c\x4b\x72\xb1\x15\xf7\x2b\x61\xe4\x2d\x7f\x45\xcf\x0b\x99\x1d\x6a\x96\xfc\xaf\xc5\xb6\xaa\xcb\x6a\x7a\xfc\xbf\x12\x3d\xf8\xef\x88\xef\x17\x40\x7c\x27\xbf\x23\xbe\xdf\x11\xdf\xef\x88\x0f\x0a\x4f\x7a\x10\x5f\xc7\x77\xd9\x9b\x9c\xc3\x1e\x14\x71\x30\x47\x79\xa2\x6f\xa2\x80\x2d\xf7\x1a\xde\x81\xdb\x04\xa8\x5e\x97\xc5\x12\xdc\x62\xa1\x9d\x02\xe2\x64\x49\xeb\x4d\x91\xdf\x4c\x87\xac\x64\xe4\xe1\x61\xf8\x4d\x7c\x5a\xe7\xf5\xd3\xab\xbc\x48\xa6\xab\xbc\xa8\x49\xf3\x11\xbe\x24\x3c\x9f\xde\x5e\x82\xf8\x20\xd0\xd3\xf4\xbd\xc5\x99\xc9\xfa\xbc\x4e\xf6\x25\x2a\x7c\x0f\x07\xe1\xdf\x90\xb4\x74\xfd\xea\xc5\x1f\x8a\x1f\x36\x6c\x9f\xb4\xd4\x92\x91\xba\x45\xa2\x96\xf4\xe4\xca\x44\x5a\x50\x3a\x54\x38\x7a\x27\x32\xf6\x87\x77\xa3\x62\x91\x66\xfb\xe5\xb0\x36\xf9\xda\x4f\x9e\x2c\x1c\x78\xb4\xe2\xdf\xfb\x68\x85\x6a\x13\xa1\x15\x31\x82\xa3\x36\x8c\x2d\x72\x90\xcd\xf7\x74\x29\xc9\x86\x23\xec\xcd\xe3\x7d\x7f\xfa\xce\x7d\x7f\x1a\xe9\x5b\xd3\xb8\x4f\x3c\x1a\x57\x95\x80\x1d\xa4\x0f\x57\xa2\x3e\xf2\xfc\x1c\x14\xef\x6a\xc7\xb6\xac\x20\xb0\xc5\x8a\x7e\x27\xc6\xba\x5e\xec\xdf\xb1\x3d\x74\x49\x17\xed\xdb\x9d\x3a\x15\xdd\x4c\xbf\xd8\x41\x33\xeb\xbe\xaf\x1b\x9a\x90\xc1\x87\xf0\x1a\x96\x9b\x70\xbb\xf5\xfb\x22\x6f\x37\x39\x5b\x42\xbc\x19\x6f\x5f\xff\xc3\x15\xfc\x21\xe7\x37\x09\xd6\x00\xcd\xcd\x2a\x23\xcd\xbd\x1d\x08\x3b\xf8\x14\xff\x67\x2f\xc1\x8b\x5a\x6b\x1b\x2a\x09\xc1\x1f\x1c\x17\x47\xc3\x7f\x84\x9e\x04\x41\x0b\xe5\x18\xe4\xd7\x96\xf6\xff\x41\xcd\x37\xe4\x26\xd6\xb3\xb6\xda\x0f\x6a\xbb\xe1\x65\xfd\x06\x8e\xad\x7d\xac\x0d\x44\x93\x8d\xb4\x78\xca\x96\x07\x93\x7a\x45\xe4\xff\xcb\xa1\xf1\xef\x41\xdd\x3f\x24\x2d\x53\xe0\xfc\x81\x68\xd9\x6f\x89\x86\xfd\xdf\x27\x7f\x59\x2c\x3f\xbe\xec\xa0\x61\xf9\x86\xfa\xf4\xc6\x2a\xeb\xbc\x30\xc8\xe2\x83\x17\x70\x51\x7c\x50\x97\xfb\xb1\x63\x3d\xff\x47\xb5\xb1\xf6\x5b\x8c\x6e\x5d\x53\xbe\xd6\x74\x69\x9d\xd7\x6b\x29\x4d\x0a\xf2\x63\xb0\x03\xd6\x77\x1e\xdb\xdb\x8b\x1d\x8e\xfb\xb5\xa6\x12\x3a\x45\xbe\xa4\x58\x12\x7c\x9d\x77\x1e\x0f\x8d\xc5\xca\x2d\x6a\x89\x95\xba\x98\x23\x56\xae\x27\x64\x31\x7f\x40\x86\x0d\xfd\xfc\x4f\x49\xbf\x3a\xa3\xa2\x58\x12\xec\x70\x04\xeb\x4e\xc3\x01\x9c\x58\x1e\x43\xd3\xea\x8a\xe4\xcb\x92\x15\x2e\xf2\xb2\x73\x9d\xfb\x64\x2b\x52\xd7\x0e\xb6\xbf\xae\x3f\x99\xfd\xf5\xaf\xda\x7d\xcf\xf7\xef\xd9\x7f\x44\xf7\x6c\x61\x0e\xfc\xce\x7b\x16\x82\x70\x08\xe3\x2e\xdf\xe6\xbd\x03\xbd\x43\x52\x93\xdf\xf8\xa9\xfc\xbb\xc3\x74\x60\x7f\xdb\x95\x58\x2e\x49\xd4\x3b\x9c\x6c\x67\x5d\x77\x4b\xf7\xd7\x16\x5b\xbe\xbf\x16\x1c\xc9\x01\x5b\x23\xcd\xce\xf7\xd6\x93\x47\x7a\xc0\xb1\x90\x03\x3b\xf4\x40\xc2\x81\xfd\x6e\xee\xd9\x7d\x63\xe8\x3e\xd5\x2e\xcd\x91\x2b\xac\x02\xe1\xf4\xf5\x42\x1d\xef\xba\xc0\x07\x7d\xaa\xc4\xcc\x93\xcf\x04\xdb\x69\x38\xf7\xf9\x3b\x8a\xcd\x86\x1f\x08\x3b\xeb\x17\x61\x7f\x0d\x7e\x20\xce\x07\x0c\x7a\xf9\x80\x6e\xc7\xae\x83\x88\xbf\xe3\xbf\xa0\x9c\xbe\xac\xa3\x13\xcd\x58\xcc\xce\xa3\xcc\x58\xdb\x96\x23\xcf\x58\xdb\xca\x1e\xd7\x19\xeb\x31\x23\xc1\x5b\xa7\x38\x34\x18\xc1\x85\x4e\x96\xb5\xc9\x2f\xc8\xdf\x5f\xac\x56\x35\xe1\x78\xe1\x7e\xfc\x41\x7d\x5c\x65\x64\x72\x41\xf8\x97\xe5\x96\x2d\x29\xbb\x78\x5c\x50\xc2\xf8\x4b\x19\xe8\x7c\x9d\xad\xa4\x59\xd5\x32\x5b\x81\x69\xd6\x26\x5b\x29\x03\xa5\xcb\x6c\xa5\x0d\x8d\xae\x32\xde\xd9\xc3\x4d\x76\xa5\xab\x5d\x64\x57\xaa\xed\x79\x16\xba\x1a\x8b\x16\xb0\xe8\xdd\x4e\x4d\x91\x32\xa6\xf7\xe1\x2c\xbb\x6d\xf0\x75\xe6\x06\x9f\xc6\x4f\x3b\x93\x81\x5d\xa3\x89\x3e\xc5\x87\x49\x45\x0a\x88\x93\x0c\xc1\x56\xc7\xe3\x24\x3f\xaf\xcb\x62\xcb\xcd\x6f\x1d\x35\xfb\xba\x2b\x26\xf6\x75\x76\x7d\xe7\x61\xc1\xa8\xc3\x8c\x9c\x65\xd9\xd3\xdd\xce\x8e\x2c\x7e\x4b\xe3\x91\xb7\xd9\x75\xd7\xbe\x0d\xd6\x47\xd9\x5b\xb5\xf5\xe2\x2f\xb1\xf7\xd7\x93\x12\x4e\x4c\x06\xe3\x1e\x8f\xd3\xf5\x51\xe6\x7f\x53\xa1\x6e\xbf\x51\xcd\xa2\x85\xaf\xcb\x0d\x6a\x2e\xb2\xfc\x74\x33\xbd\xc0\xf9\x78\x9c\x9e\x29\x4b\xb4\x0b\x69\x64\xf9\x2a\x5b\x3f\x28\x60\x05\xe0\xfe\x91\x65\x19\x15\xb3\xdf\xf2\xf2\x08\xb0\xb4\xf8\x20\xa7\xff\x22\x7b\x9e\xf3\xf5\xe4\x92\xb2\xf4\x1c\xaf\x1f\x5c\xa0\x23\xf9\x3b\x7f\x9b\x1e\xe3\x35\xc2\x6f\xfc\xf2\x8d\x5f\xfe\x60\x73\x74\x81\x06\x34\xbb\xf8\xe2\xc5\x78\xfc\xe6\x8b\x17\xa7\x0a\xbb\x4f\x2f\xbe\x78\x33\x1e\xbf\xf8\xe2\xcd\xa9\xa4\x0a\xd3\x7a\xb7\x93\x7f\xc9\xe0\xcc\x7a\x66\x47\xb2\xba\x9d\xce\xa3\x3d\xd3\x79\x7d\xe0\x74\x5e\x8f\xc7\x8f\xbe\x78\xad\x47\xbf\xf8\xe2\xd1\x78\xfc\xfa\x8b\x47\x66\x7a\x62\x3a\xf2\xcf\x26\xb1\x53\x38\x3d\x53\xb6\x81\xe7\x47\xe9\xab\x07\x1b\x34\x3d\x53\x56\x8a\x0b\xc2\x38\xd8\xb1\x65\xf4\xf4\xd5\x83\x54\x8c\xf2\xf1\x27\xd3\x57\xb0\xd5\x8f\xb3\x65\x0b\x54\xba\xc0\xcb\xbb\x30\xc8\xb1\x81\xbd\xf9\x9b\x10\x2d\xd2\xc4\x46\x1c\xdc\xed\xd2\xc7\x0f\xb2\x05\xc2\x49\x7e\x5e\xca\x5e\x4b\x74\x06\xf6\x96\x8f\x8f\x6e\x06\x66\x17\xcf\x49\x51\x5e\x7b\xa5\x0f\x2e\xa1\x14\xb6\xf3\xb9\xf8\xf9\xe0\xe6\xf3\xc5\x03\xf7\x42\x7e\x2d\xaf\xf2\xcb\x6c\xf9\xc5\xcd\xa0\xcc\x6c\x1f\xdb\xf1\x78\xf4\x7c\x3c\x7e\x79\xaa\x06\x9d\xda\xc1\x45\xd1\xcb\xf1\xf8\xf9\xa9\xaa\x3d\xdd\xee\x76\xa9\xfd\xa5\x2a\x22\xac\x27\xe1\xce\xec\xf4\x72\x7a\x74\xa3\xcd\xed\x6e\xdb\xe8\x74\x4a\x71\x88\x4c\xa7\x25\x06\x05\xec\xf4\xcc\x71\xef\xac\x2c\x7e\x06\xdc\x0c\x68\x38\x82\x9d\xf3\x18\x76\xae\xb3\xdb\xc6\xbb\x11\xa5\xec\x65\xdb\x8d\x39\x07\xb4\x1b\x27\xc2\xd9\xc7\xf0\xf3\x83\x16\xea\x1b\xd4\x31\xc7\xac\x2d\xc0\xd6\x03\x2a\x2f\xee\x17\x85\x81\xcd\xf0\x9e\x58\xe0\x53\x33\x5e\x74\xcf\x58\xa1\xe6\x55\xf7\xbc\x65\x8d\x41\x2d\x8d\x25\xb3\x5b\x70\x0c\x48\x17\x47\x2b\xf4\xf1\x27\x4d\xd7\xe5\x54\x03\xaf\x7b\x88\xcc\xb2\x67\xab\xa2\xeb\x5f\xcb\xbb\xf6\xc5\x52\xce\x28\xb6\x7c\x7b\x35\xcb\xf1\x38\x8d\xf6\xa2\xaa\x68\x13\x41\x0b\xaf\xf9\x69\x5a\xb7\x3d\xe5\x72\x4c\x05\x26\xec\xa6\x74\x66\x5f\x78\xb9\x99\x1e\x51\x45\xf5\x1a\x34\x8d\x74\xa6\x20\x1c\xd7\xef\xe3\xbd\xe9\x58\x6f\x31\x4c\x71\x69\x2c\xb8\xca\x20\xb3\x4e\xa5\x1c\x74\x94\x05\x96\x75\xd1\x99\xf2\xae\x92\x06\x13\x6b\xb8\xfe\xbd\x32\xa8\x59\x5a\x3f\x0e\xb7\x58\x0d\x63\x6d\x55\x31\x09\x33\x47\x64\x6d\xb3\xce\xee\x5c\x9e\xb8\xca\x3c\x6a\xc9\x0d\x61\xc5\x2c\xfb\x38\x15\xf0\xb5\x93\xb4\x0c\x7d\x0c\xd7\x72\x45\xdf\x82\x8d\xa4\x53\x13\x85\x31\xce\x05\xda\x1c\x58\xd6\x8c\x3c\xa4\x19\xf5\x53\x0a\x3d\x44\x74\x95\x76\xcf\x8b\x22\x9c\x8e\xaa\xdd\x0e\x98\x64\xba\x10\x4c\x83\x33\xdc\x78\xcc\x26\x9c\xd4\x3c\xe5\x93\xf2\x8a\x54\xab\xa2\xbc\x7e\x60\xff\xfc\xc1\xf9\xfb\xef\x26\xf5\xb5\x89\x4d\xe7\x4d\xb2\xd9\xa7\xba\x8a\xe6\x52\xff\x60\xba\xaa\x20\x4d\x46\xeb\x20\x69\x46\x6c\xca\x0c\x63\xc5\x47\x4f\x8f\xa7\x14\xd7\xba\xec\x07\xbc\xb5\x65\xf5\xe9\xf1\xb4\xc6\x85\x2e\x7b\x2e\xd8\xaa\x85\x2d\x2e\x4e\xf9\x14\xf8\x8f\x05\xf8\x88\xde\x2e\xb2\x2c\xab\xc6\xe3\x34\xff\xdf\x19\xc3\xdb\xff\x9d\x29\x5f\x90\x55\x56\xa6\x68\x90\xff\xef\x6c\x25\x3e\xae\x34\x85\x90\x53\x99\xe6\x58\x8e\x3b\xdd\x36\x8d\xbb\x88\x6f\x28\x23\x92\x84\x65\xa5\xfc\x1e\xa4\x0a\x09\x7c\xdd\x4d\x18\xc1\xec\xd6\xcf\xf6\x31\x3d\xc6\x7e\x0e\x0f\xfd\xe1\x87\xb0\xc6\x0f\xb6\x46\x03\x00\xf8\xd0\xc9\xa5\x0b\xde\x5a\x59\x96\x91\x87\xa8\xca\x88\xe2\xd0\x00\xf3\x1f\x11\x97\x2b\xc6\xcc\x94\xca\xe9\x9b\x62\x45\x90\x69\x90\x8d\xe4\x41\x76\x44\x5c\x6e\x90\x06\x29\x47\x1e\x64\x55\xb4\xc2\x0f\x91\x0e\x5e\x97\x1b\x53\x6c\xdb\x33\xaf\xdc\xa6\xfc\x15\x6c\xb2\x71\xd0\x17\x9b\x1f\x26\x0c\xc9\xc2\x38\x19\x8e\xc8\x84\xcb\xcc\xcf\x83\xe8\x86\x42\x0d\xdd\xb4\xbf\xf8\xcc\xb1\x4c\xb5\x2e\xd9\x9f\xcd\x4f\xdd\x1f\xd3\xd9\x1c\x00\x26\xcf\x6e\xd5\x63\xda\x94\x61\xbb\xf0\xe9\x31\x36\xab\x10\x27\x24\xaa\x0a\xb9\xcb\x3d\x0a\xe6\x1e\xc5\x40\x52\x7e\xe6\x1f\x07\xf3\x8e\x43\x51\xf8\x10\x66\x8e\x98\xc7\xa0\xfb\xf0\x53\x47\x4a\x7f\x68\x37\x15\x9b\x1d\xc0\xd5\xd6\x2d\x94\x2b\x58\x74\xa2\x31\x86\x06\xc9\x9a\x2e\x97\x84\x09\x0c\xb6\xb0\x68\x49\x5c\x31\x67\x02\x99\x3b\x9b\x07\x1c\xf3\x2f\x8a\x30\x93\x0d\x3f\xca\xc2\x6f\x53\xfe\x79\x11\xe6\xca\x71\xaa\x99\xe5\xf0\xec\xb8\x63\x1e\x3f\x38\xf3\x78\x5d\x6e\x32\x67\x69\x0f\x2a\x5c\xe9\x59\x98\xd5\x9f\x56\xa6\x7b\xbb\x23\x95\x9e\x85\xcd\x9d\xe3\x54\x33\xb3\xa8\xc4\x2c\xe8\x2a\x65\xff\x3f\x7b\xff\xda\xde\x36\x8e\x25\x8a\xc2\xdf\xf5\x2b\x64\xee\x7e\x55\xc4\x08\x96\xe5\x54\xef\xf7\x39\x5b\x0e\x4b\x93\xca\x65\x3a\xd3\xa9\x24\x3b\x49\xf5\x4c\x1f\x95\xda\x4d\x4b\x90\x8d\x0e\x05\xa8\x41\x30\x8e\xcb\xe2\x7f\x3f\x0f\xae\x04\x48\x50\xa2\x9c\x4b\xa7\x6a\xfc\xa1\x2a\x16\x88\x3b\x16\x16\xd6\x7d\x1d\x25\x09\x1e\x0c\x62\xbe\xdd\x32\x8b\x9d\x35\xf8\xb9\xcc\x1f\x56\x81\x73\x17\x29\x8f\x67\xe9\xbc\x72\x2e\xf0\x4a\x4b\x0b\xd6\x30\x4d\xc6\x67\xe9\x43\x6a\x42\x9d\xa4\xc3\x21\x88\x71\x42\x45\xad\x91\x86\x45\x77\xc7\xb1\x7f\x1f\xfd\x1a\x62\x2f\xb0\x73\xcc\x10\x8d\x5e\x3c\x7f\xf9\xf4\xed\xf9\xeb\xa7\x6f\xce\x5f\x3f\xfa\x8f\xa7\x09\x1a\x3d\x79\xf5\xd3\xf9\x93\xa7\x2f\xde\x3d\x6a\x16\x88\xba\x7e\x8d\xe7\xff\xfd\xf4\x85\xaf\x81\x18\xf7\x9a\x15\x78\xaf\xd1\xcb\xa9\xf6\xc5\x7b\xd0\x6b\x8c\xc8\x54\xe4\xef\xe4\xfb\x5e\x63\x76\x44\xfb\xc4\x91\x22\xcb\xdc\xb8\xe0\xca\x53\x16\x37\x3c\x19\x75\x7c\x3e\xb5\x07\x71\x84\x57\x2c\x5d\x23\xe9\xe9\x9f\xb3\x45\x12\xfd\xaf\x08\x22\xed\xed\xb4\xa9\xe2\x15\x18\xa2\xc1\x7e\xfb\x80\x73\x7c\x81\x33\xcc\x6f\x12\x03\x6d\xf6\x9b\xf6\xbf\x1a\x6f\x3e\x56\x65\xc6\xa5\xca\x2b\xbc\xa0\x6c\x89\x58\xa2\xd2\x8b\xd7\x82\xa4\xb9\x59\xfc\x10\xd0\x1b\xa9\x12\x56\x49\x84\x21\x2f\xa1\x69\xd2\xe3\xca\xed\x13\x40\x2e\x8d\xf4\x51\x1c\x3d\x3c\x5a\xd2\x05\xbf\xd9\xa0\xfe\x15\x5f\x67\x3f\x3c\xd4\xff\x47\xe9\xf2\x87\x87\x27\xea\x1f\x31\xce\x0f\x0f\xf3\x4d\x4a\x7e\xf8\xef\x87\x27\xf2\xdf\x87\x27\xaa\xf0\x44\x56\x8f\x44\x7f\xc6\x77\x47\xf0\x1d\x72\x66\x2b\xcc\x72\x43\xda\xc8\xf9\x69\x61\x80\x7e\x30\xfc\x65\xb8\x79\x03\x91\xf5\x6e\xc2\x4d\x5a\x64\x91\x61\xf1\xdf\xe6\x82\xa6\x6c\xe9\x8a\xe2\x16\x74\x73\x73\xac\x55\xda\x5e\xa0\xa6\x50\xbb\xa0\x30\xcf\xed\xc1\x0f\xa6\xd4\x26\x74\x63\x8e\x27\x49\x2d\x10\x8f\x8c\xdd\x31\xc2\xb9\x8a\xe1\x81\x40\xf5\xc6\xf0\x64\x0c\x99\x13\xdf\x03\x99\x24\x84\x67\xfc\xa1\xf9\xfb\x8c\x0f\x87\x80\xcd\xf8\x3c\x41\x33\x6e\x22\x7c\xf4\x59\x59\xca\x07\xbb\x36\x54\x2d\x14\x53\x1f\x9b\x50\xdd\xb2\x72\x34\x53\x71\x84\xfa\x8f\xcc\x9b\x34\x17\x94\x6a\x23\x7c\x0e\xa7\x3a\xed\x8b\x0a\x9c\x63\xd1\x90\x5a\xc8\x8a\xd1\xb5\x38\x18\x7f\x7c\x70\x1b\x8c\xa0\xf1\x9c\x7c\x48\x33\xbc\xec\xa7\x5c\xec\x33\xef\x73\xda\xcf\x37\x0c\xa5\xcb\x3e\xa1\xe4\x58\xce\xf3\x22\xab\x02\xaa\x44\xa0\x8c\x3f\x57\x14\x19\x92\xcc\xa2\xbc\x58\x2c\x90\x92\x52\x8b\xf9\x44\x73\x88\x93\x5a\xd0\x8c\x11\xfa\xc8\x11\x59\xc6\xb7\x2a\x70\xcc\xc4\x26\x1d\x83\x5a\x0a\x37\x31\xd6\x11\x50\x4a\xbc\x45\x51\x3e\x99\x45\x0a\x44\xb8\x80\x0f\x9b\xb0\xf8\x47\x2c\x59\x31\xf9\xd9\x00\xd8\x3b\xf4\x91\x4f\xa4\x51\x84\x2d\x92\xa1\x0a\x23\xe8\xd4\x91\x71\x39\x1b\xb5\x64\xa9\x5b\xef\x91\xdc\xeb\x7a\x3d\xa5\x32\xb4\x56\x1c\x62\xf7\x65\xfc\xab\x9a\xa6\x93\xe1\xf4\x38\x4b\x2f\x50\x16\xc1\x88\x63\x9e\xa1\x68\x0e\x9d\x16\x76\x95\x8e\x7b\x9c\x78\xdd\xc5\x03\xa5\xec\x08\xa4\x5e\x6b\x72\x34\x86\xe7\x0a\x21\x3e\x36\x33\x08\x67\xcc\x1a\x79\x5b\x00\xad\xe7\x75\xbd\xc7\x69\xf4\xbf\x7c\x1f\x6f\xfd\xd8\x3c\x5f\x6a\xf7\x74\xfd\xdb\x80\xbe\x80\x30\x4d\x51\xd8\x19\xfc\xe7\xdb\x98\xc3\x5b\xb1\xad\x93\x40\x28\x31\x34\x45\xda\xe3\xa7\x04\x25\x3c\xb7\x8e\x76\x3a\xc6\x48\x4b\x3a\x6f\x5c\xd1\x71\x3d\xd2\xf4\xa2\x22\xe0\x16\x8d\xc4\xbf\xd0\x77\x8e\x3f\xe2\x36\x92\x82\xdd\x8d\x19\x99\x7b\x57\xa5\xec\x45\xb9\xbc\x61\xee\x1c\xf9\x28\x47\x44\x1f\xb1\x4d\x05\x3b\x43\x36\x4e\x0f\x93\x91\x7a\x26\xc8\x67\x93\x65\x69\x59\x02\x6f\x65\xc1\x93\xf1\xcf\x44\x3b\x1d\xda\xdf\x23\x6d\xa7\x12\x7b\xb1\x5e\xea\x27\x1d\xeb\x98\x28\xf5\x3d\x14\x9c\x72\xdd\x37\xd2\x76\x1d\x41\x04\x4a\xb8\xc4\xcb\xe7\xd2\x10\xd5\x64\xd1\xad\x4f\xed\x5c\x06\x1b\xdb\x15\xbf\xa3\xb9\xbe\x58\x75\xfc\xb3\xf4\xdd\x94\x71\x4f\x3e\x5b\xb7\x4e\x68\x91\xb6\x19\x77\xd8\x4c\x5f\x05\x84\xf7\xbc\x61\x9a\x83\x3e\xc1\xb9\x73\xbd\xf3\x62\x23\xde\x2f\x69\x88\xf4\x85\x8d\x40\xd0\x08\xe7\x76\x13\xde\x9a\x71\x7d\xca\x4c\x5d\xbd\xc1\xa0\x79\x05\xa7\xcd\xa2\x11\xce\x6d\x37\x4d\x1f\xcd\xa3\xd3\xb2\xd7\x32\x24\xd7\x84\x9d\xb6\x44\x91\xfb\x32\x52\xdb\x13\x73\x77\x4b\xd9\x9e\x2d\xdd\xfb\xbc\x7f\x43\x96\x35\x8f\x7e\xbe\x39\xfd\xf0\xea\xaf\x8f\xc2\x96\x35\xd6\xa6\xa6\x61\x00\x73\xfa\x47\x78\xea\x6b\x41\x3b\x6b\x36\x0f\xdb\xac\x4e\xd6\x4d\xa2\x4b\x41\x2d\xba\x7d\x88\xdf\xc7\xea\x81\x6d\xa3\xc8\x64\x93\xe0\x04\xdc\xc6\x3b\x89\xb1\x4f\x38\xa4\x36\xa2\xc0\xd2\x00\x11\x6c\xd0\x07\xf9\x15\x2d\xb2\xe5\x3b\x94\xb2\x27\xf4\x9a\xbc\x92\x51\x9c\xc4\xf3\x28\xe6\x6b\x50\x86\xef\xeb\x1b\x37\xdd\x94\x83\x2e\xdb\x19\xa5\xef\x8b\x4d\x1c\xe5\x88\x7d\xc0\x0b\x34\x39\x36\x14\x72\x04\x46\xa2\xf7\x12\x40\x2c\x06\x3b\x08\xd7\xd9\x91\x34\x7e\x0e\x4d\x3f\x02\x1a\x95\x9d\x73\x5d\xfe\x27\x94\x4a\x74\xe8\x15\x4c\xea\x4f\x9e\x6c\x82\xf3\x67\x69\xce\x2f\x28\xe5\x31\x68\xf0\x50\x7e\x88\x97\xef\x04\x3c\xce\x48\xba\x46\x49\x0d\x04\x8e\x95\xa9\xe1\xfc\xbb\x1d\x01\x62\x76\xb4\x46\x64\x29\xda\x56\x61\x60\xaa\x50\x9f\x68\xe4\x78\x1f\x9d\xb1\xc1\x80\x1d\x25\x09\x3f\x03\x76\x10\xd1\x81\xc7\x7d\xc8\xe4\xc3\x5e\xb3\x5e\x7b\x65\xe4\xc4\xac\x6e\x7c\xe4\x32\x60\x8f\xb3\x43\x81\x3c\x9c\x81\x18\x99\xc6\xc3\x5e\xbe\xef\x6d\xd7\x4c\x03\x89\xbe\x27\x82\x36\xfc\xf2\x38\x4d\x27\x87\x54\x23\xdb\xcb\xb2\x6b\x96\x7b\x6f\xf6\x37\x84\x87\x87\x74\x48\xaf\xdf\xad\x57\x41\x3c\x1c\xf4\x29\xf6\x9d\xe1\xfe\x28\xcd\x79\x2c\x12\xf8\x74\x1f\x38\xd7\x69\x44\xc0\xbe\xe7\xcf\x26\xee\x41\x03\x93\x9a\x6b\xa4\x9d\x47\x8c\xdf\x78\xe4\x3a\x7e\x9c\x2a\x67\x13\x59\xbd\x32\x81\x33\x26\x3e\xdd\x87\x92\x77\x6e\xd7\x40\xfb\x3c\xe8\x0e\x7d\xb0\x3a\x01\x54\xe7\xb7\x4a\x51\xe2\x46\x7b\x71\x72\xbc\x61\xf8\x43\xca\xd1\x89\x22\x7d\xfd\xcf\x5f\x1e\x4a\x03\x81\x29\xaa\xb4\x55\x36\x3a\x71\xcc\xe0\x29\x98\x8d\xad\x38\xc0\x4b\xd6\x8a\x73\x01\xd7\x32\x5d\x2b\x01\x83\x41\x4c\x12\x32\x52\xab\x00\x10\x89\x5f\xdb\x6d\x14\x81\xb2\xec\xd5\x32\x9c\x07\xe4\x17\x3a\x7a\x5c\x43\x82\x61\xe4\x92\xbd\x3d\x32\x07\x10\xec\x51\xe1\xe3\xd9\x1c\x92\xe4\x68\x0c\x71\x72\x74\x0a\xa9\xb9\x9e\x9c\xdd\x58\x9c\x9d\xc2\x3c\x41\xb3\x5a\xff\xf3\x18\x9c\x1d\xc5\x24\x89\xd3\x24\x97\xa8\x39\x06\x60\xb4\xa4\x04\x01\x19\x45\x49\x06\xd7\x49\x55\x28\x08\x00\x8f\xf8\x76\xcb\xb4\x20\x45\xaa\x70\xce\xc4\x90\xe0\x4c\x67\xcc\x28\xc0\x2d\x16\x53\xa0\x49\x61\xb3\x64\x88\x09\x1c\x91\xc1\x20\x1f\xa9\xb9\x57\x7f\xc5\x55\x2a\x0d\xbc\x8a\xb1\x0e\x19\x4a\xcb\xd2\xca\x64\x54\x08\xe1\xae\x82\x10\xc9\x24\x14\x0b\x5e\x30\xd4\x2a\x0d\x29\xe3\x30\x4e\xad\x01\xad\xf9\x77\x91\xae\x51\x86\x7f\x45\x6d\x44\xd6\x41\xb0\xfe\xb9\x69\x2d\x33\x39\x17\x13\x8b\xf7\xd5\x96\xcb\x28\xbd\x36\x1a\x99\x07\xd3\xa6\x8e\x7b\x9d\x43\xbc\x01\x3b\x70\xbb\x36\x98\xa7\xdf\xf0\x86\x99\xe9\x35\xb7\xcc\x7e\xd9\xb9\x69\xa6\xd6\x67\xde\xb6\x2c\xcd\x73\xbc\xba\xf9\x36\x37\x4d\x4f\xae\xb1\x65\xa6\x7c\xd7\x86\xe9\x3a\x9f\x77\xbb\x96\x69\x7e\x85\xd8\xb7\x0a\x64\x76\x76\xf5\x0d\xab\x3e\xec\xd8\x31\x5b\xe9\xf3\x6e\xd9\x15\x5f\x67\xc7\x79\xba\xfa\x36\xb7\xcc\x64\x43\xaf\xef\x98\x2d\xdf\xb1\x61\xa6\xce\x67\xde\xaf\x62\x9d\x92\x1a\x84\x7d\x5e\xfa\xc4\x8c\x90\xe0\x7b\xb2\xe1\x37\x41\x36\x40\x96\x9c\x9c\x0f\xb7\xc7\xc3\x93\x4b\x48\x92\xa8\xef\xe8\xaa\x70\x65\x30\xc3\x63\xa4\x29\x49\xbc\x8a\xdb\xa8\x48\x2c\xf6\x08\x27\xd8\x52\x91\x2a\xae\x22\xd6\xc7\x14\xe9\x6c\x22\x09\x1e\x71\xfa\x82\x5e\x1b\x83\xe5\x11\x43\xd2\x75\x56\xa6\x5b\x75\xf4\xd3\x57\x29\x7b\xc4\xe3\x31\xf0\xcd\x9b\x87\x54\xc7\x06\x3b\x05\xe5\xee\xab\x81\x0f\xba\x1a\x99\x98\xd0\x22\xcd\xbb\xa2\x12\x65\xd2\xe4\xb4\xfa\x3c\x58\xa7\x91\x97\xfa\x0e\x77\xd0\x4e\xca\x57\x73\xb9\x1f\xe2\x31\x74\x12\x1f\x54\x48\x68\x0f\xb6\x21\x07\x6d\xa9\xd4\x1e\x75\x7f\xcf\xd4\x8e\x56\x8d\xbe\x9d\x0d\x35\x73\xaa\xef\xa7\x2d\xff\x3a\xdb\xc9\xf0\xfa\xb0\xad\x94\x0d\xbe\xa1\x6d\x64\x78\xdd\xd8\x42\x51\xf6\x95\xb6\xaf\x20\x0b\x19\xb5\xf3\x4b\xbd\x7d\x66\x04\x6d\x53\x72\xff\xf6\x7d\xeb\x6f\x5f\xcd\x2c\x43\xc7\xeb\x8e\x11\xfc\x1e\x40\x92\xb0\xd9\x78\x0e\x71\xc2\x66\xa7\x73\xbb\x89\xd2\x4e\xf4\xf4\x8f\xe3\x09\x86\x69\xc2\x66\x0f\xe6\x30\xaf\xbe\xa4\xdb\x6d\x0a\x8b\x24\x9f\xd2\xe3\xef\x27\xf4\x60\x99\x0b\x19\x0c\x88\x31\x13\x2c\xa6\xf9\x94\x8c\xf2\xe2\x42\x7d\x8c\xc7\xb0\x00\xc3\x68\x34\x1a\x45\x93\x7a\xf1\x84\xec\x79\x07\x0f\x23\x11\x0b\xb2\x44\x2c\x5f\x50\xf6\x6d\xd2\xd4\xd5\xf4\xea\x54\xb5\xf3\x65\x07\x5d\x5d\xd5\xfa\xbc\x94\x75\x21\x28\x94\x83\xc9\x07\xa7\xd5\xb7\x83\xa6\xed\xa4\xea\xb8\xba\xfa\xf0\x55\x10\xf6\xf5\x1d\x1c\x1a\x4d\x1a\x5d\x8d\x56\x78\x82\xa0\x8f\x61\x39\x98\xf2\x89\x63\xa0\xc4\x01\xd0\xf4\xe4\x18\x8c\xd6\xe9\xc6\x87\x96\xeb\xdd\x61\x67\x91\xb5\x47\x01\x25\x9c\xcd\xef\x64\x91\x74\x2d\x1d\x13\x76\xed\x1a\xef\xb4\x6b\x0d\x7a\xf4\xab\x49\xa0\x8d\x0e\xaf\x61\xeb\x3c\x0e\xda\x3a\x8f\x5d\x5b\xe7\xf1\x7c\x12\x45\xd2\x21\x42\x1b\xba\x58\x9d\x16\x0a\xa7\x5a\x7a\xfa\x71\x83\x16\x1c\x2d\xfb\x69\x5f\xb5\x80\xfd\x4b\xca\xfb\x69\x3f\x1a\x3a\x99\xec\xa6\x8e\x96\x6c\x22\x5f\xcb\x2a\x0d\x9d\xcf\x7c\x18\xe9\xf6\xef\x26\x91\x61\x77\x58\x09\x91\xe7\xf7\xa0\xd2\x0e\x2a\x96\x4f\x3d\x89\xa7\x93\xbf\x6d\x7f\xc9\xb7\xc7\xdb\x5f\x4e\xc0\x2f\x6f\x4f\x2e\x61\x30\xd5\x9e\xc7\xb7\x96\xff\xa3\x41\xad\xc6\xba\xdc\x83\x99\x0f\x66\x0c\xaf\xff\x47\xa3\xa2\x20\xf5\x74\x0f\x24\x35\x5c\xe4\x62\x93\xdf\x3f\xac\xd0\xf5\x86\x4a\xfb\xd8\x00\x21\x9c\xd1\xbc\x60\xc8\x5a\x34\xff\x0b\x4c\x42\xce\xcf\x33\x9a\x2e\x11\x83\x2c\xb9\x7d\xf4\xf8\xdd\xf3\x57\x2f\x55\x36\xb1\x9e\x9e\xfe\x15\x5f\x67\x17\x29\xcb\x4f\xde\xa3\x9b\x6b\xca\x96\x79\x7d\xd2\x98\xf4\xb9\xce\xe5\xc1\x6e\xa6\x2c\x11\x3f\x64\x56\xe6\xb8\x6b\x0f\xc0\xd8\x3a\x30\x5a\x70\x79\xa7\x0e\x1a\x53\xf0\xf4\xcd\x51\x3b\xf7\x05\x80\xe6\x0b\xd8\x48\xad\xdf\xa1\xfd\xc9\x61\xa7\xa9\xd8\x9a\x75\x91\x71\x7c\x9c\x0a\xd2\xfc\x30\x2b\x0a\x9f\xfe\xff\xca\xde\x0d\x9f\xd7\x84\xc3\x23\xff\x8d\xb9\x94\xb6\x0a\x6c\xd8\x9f\x33\x48\x92\x7d\x2e\x24\x55\xd6\x62\x96\x48\xc7\xcd\x98\xdd\xcd\x1b\xa3\x8b\x44\x45\xba\xf2\x10\xcb\x4e\xf9\x02\x90\xca\xe0\x5b\x1e\x71\x1e\x41\x2c\xf9\xad\xd6\x5d\xa8\x56\xa1\x13\x48\x3e\x8a\x11\x98\xa0\x12\x34\x4d\x14\x8d\x39\x11\x28\x55\xc6\x9b\xfc\x09\x5e\x3e\xbe\x4a\xc9\x25\xd2\x86\x95\x54\xc7\x23\x8e\xf5\xe0\xa3\xd9\x3c\x82\x0d\xab\x48\x86\xf4\x56\xcb\x81\xff\x8c\x6e\x72\x6d\xe5\x2e\x76\xba\x3e\xa6\x5e\x05\xb0\x9e\x22\xb5\x4f\xa2\x79\x04\x7a\x66\x2d\x4f\xd7\x1b\x7e\x13\x13\xb3\x96\x1a\xbc\xf8\xcb\x10\xac\xe4\xa4\x4b\xbd\x9a\x8d\xff\x57\xf2\x27\x62\x09\xfe\x14\x48\xda\xeb\xd7\x03\x04\xbf\xab\xd7\xd8\x7e\x90\x26\x28\x70\xe8\x24\xed\x41\x4a\xab\x98\xc0\xb9\x86\x3d\x51\x20\x6f\x3f\xe5\x16\x00\x50\xa7\xbc\xdd\xce\xe6\xd2\x8b\x4d\x00\x34\x03\x32\x50\xc7\x0a\x67\x1c\xb1\x00\x78\xcb\x94\x65\xd8\x49\x59\x56\x82\x1e\x6d\xfa\x8d\xf0\xda\x75\x10\xf7\x07\x41\x0e\x55\xfa\x51\x00\x79\xd7\x26\x4c\x66\x89\x12\x4d\x82\x17\x51\xae\x40\xe6\xe4\xd3\x44\x05\x0b\x20\xa6\xe8\xfc\x5c\x21\x66\xeb\x81\xe3\xe7\xf1\x45\xd2\xb7\xe4\x70\x9c\x4f\x10\x5a\x8a\xcf\xe9\x4d\xce\xd3\xc5\xfb\xaf\x6f\x3d\xf7\x89\x44\x20\xef\xed\x46\xdc\x12\x44\xeb\xc6\xdd\x91\x5a\xb5\x84\xdc\xc8\x2c\x5d\xfd\xa2\x1b\x45\xd0\xd4\xe6\xd7\x84\x4b\xd5\x45\x04\x20\x6b\x7c\x32\x3d\x06\x81\x56\x0f\x50\x91\x95\xca\x63\x18\x94\x82\xbb\x4d\x97\xaf\x48\x76\x13\x8b\xcb\x17\x7e\x71\x64\xdd\x24\x66\xc9\xf7\x7b\x71\x4d\xf5\xf0\xf0\xc4\x77\x40\xd4\x8a\x8f\x2f\xf4\x48\x7f\xfb\x1a\x10\xb2\xdd\x2a\xbd\xb8\x51\x7e\x6c\xb7\xdd\xd5\x20\xa5\x38\xaf\x2f\xf9\x82\xcb\x27\x7c\x36\x9e\x0b\x1c\x36\x3b\x9d\xc3\x34\x21\xb3\x07\x35\xfb\x51\xf3\x9a\xa5\x62\x57\xd2\x84\x8a\xba\x32\xa7\x55\x1d\xc1\x68\x28\x85\xb8\xf9\xc9\x42\x29\x4c\x9b\x1f\xcd\x35\xa0\x3b\x9f\xfa\xae\x4f\xc4\x9e\xf7\xa1\x12\xcc\xb8\x9e\x77\x5d\xb0\x99\xf9\x57\x39\x54\x07\x05\xff\x77\x22\x7b\xef\x3d\x89\xbf\xb6\x27\xb1\xdd\x54\xd1\xad\xd9\xab\xe6\xab\x00\xb9\xbb\x75\x02\xbf\x8e\xcf\xc8\x43\x74\x46\x86\x43\xc0\x67\x64\xee\xbc\x14\x64\x6e\x13\xea\x26\x5c\xd0\x07\xa0\x85\xda\xad\x12\x7c\x22\x18\x89\x57\x40\xd0\x03\xde\x75\x33\x0f\x47\xd3\xa1\xd3\xc6\x70\xa8\xbf\x67\x90\x18\xdf\x54\xde\x18\xb6\xfe\xa0\x10\x88\x40\xfd\x7e\x57\xba\x92\x11\xa7\xea\x07\x98\xcc\xf8\xdc\x4e\x2d\x46\x89\x58\x92\x1a\x5f\x4f\x0c\x69\x27\xd3\x39\xb8\x13\x5b\xa4\x6e\x51\x42\xc2\x7c\x37\xae\x29\xf5\x48\xcd\x5f\xb2\xd7\xfd\xb6\x8a\xe5\x1c\xce\x5a\x7e\x22\xa5\x30\xab\xe1\xd0\x47\x31\x32\x39\x0e\xef\xb6\x5b\x62\x15\x9e\xea\xc8\x53\x87\xde\xc5\x1f\xb2\x7d\xcb\x16\x57\x05\x79\x7f\xa7\xf0\xa2\x9d\x31\x54\x45\x2f\x04\xa9\x85\xa3\x2f\x85\x68\xf4\xc0\xbd\xdf\x37\xd9\x20\xf7\xf1\x0b\x52\x0d\x77\x81\x60\x09\x54\x09\x6e\x83\x60\x13\xe8\x12\x12\xf5\xe7\x02\xe1\xcc\x33\x4d\x34\xe6\x2e\x38\xd9\xa4\x2c\x47\xcf\x89\xb4\x51\x1c\x0b\xee\x8b\xc5\x18\x8e\x65\x2c\x9b\xca\x5c\xb1\x42\x6a\x92\x68\x71\xe8\x0a\x18\xa9\xc3\x88\x00\x80\x47\xe9\x76\x4b\x1f\x9e\x6a\xa8\x70\xf2\x3f\xe7\xc9\x18\x16\xc9\xf1\x29\xcc\x9c\x27\x80\xc4\xe9\x09\x05\xe0\x2c\x7f\x98\x9e\x81\x6c\x36\x1c\x16\xf3\x84\xeb\x6b\x9d\xc3\x7c\x98\x50\x8b\x59\xb3\x52\xd9\x3e\x1e\xc6\x28\x14\xeb\x48\xb3\x69\x75\x3e\xb7\x96\xc8\xd7\xe5\xe8\x2a\xea\x1e\xc7\x0d\xbe\xa1\x58\x47\x00\x22\xc5\x61\xb7\x88\x95\xa4\x05\xcc\x83\x9a\x05\xcc\x4e\x61\x4e\x90\xc2\x93\x93\x27\x5f\x87\x82\x73\x10\x1b\x3d\x08\xb1\xd1\xf5\x26\x5d\x74\x75\x2a\xbc\x47\x6d\xf7\xa8\xed\xae\x7a\x03\xd6\x76\xf3\x77\x5d\xc2\x80\xef\x9e\x81\x2b\x06\xa6\x71\xcb\x5d\x64\x3b\xee\x9c\x91\x2b\x3e\x8a\x67\x6c\x5e\xdd\xc0\x1a\xe6\x31\xc2\x2b\xd3\xa3\x19\xfa\x35\x43\x39\x22\xbc\xbb\x74\xee\x90\x8b\x7b\x18\x45\xa2\x3a\xb9\x93\x86\xe0\xeb\xf3\x4c\xe4\x2b\x70\x2e\x87\xb0\x83\x3e\x46\xba\xf3\xec\x3a\x5e\x20\x87\xb9\xfa\xfa\x3c\x63\xd3\x99\x81\x24\x62\xab\x1c\x31\x87\xf5\x27\xb0\xcf\xa6\xcf\x69\xf1\x98\xde\x8d\x46\xd7\x40\xda\x46\xe3\xd0\x16\xaf\x85\xbb\x3f\x66\x2a\x42\xe7\x1d\x05\x11\x6d\xb2\xd8\xf6\x1e\x94\xee\x1e\x93\x45\x56\x2c\x51\xbe\xcf\x12\xd1\x05\x83\xea\xf5\xf4\x2d\x09\x0d\x72\xe2\x92\x46\xa9\x53\x7b\x3a\x1a\xcc\x51\x80\xa0\xab\xab\x8c\x06\x83\x0a\x05\xa2\x8a\xc0\x9b\xa2\x80\x3d\x1f\x73\x35\xdc\x24\x66\x90\x83\x12\x1e\x8d\xc1\x44\x4d\xf4\x8e\x47\xaf\xce\xa2\xfd\xec\x7d\x76\xf6\xee\xa7\xbe\x44\x8b\x7b\xf2\xe5\x9e\x7c\xe9\xf8\x40\xec\x20\xf0\x1d\x4e\x49\x89\x77\xb5\x3b\x17\x81\x44\x6f\xb7\x40\x9a\x2f\x0b\x51\x27\xc6\x00\x1e\xe1\xfc\x65\xfa\x32\xc6\x16\x42\xac\x1d\x0b\x91\x86\xed\xa7\x00\xe2\x63\x72\x37\xf2\x69\x21\x03\x72\x07\x83\xf5\x85\x4d\xb5\x0f\x35\x3e\xb0\xb7\x87\xd1\xcd\xfd\xf5\xb9\xbf\x3e\xdf\x22\xf5\x7f\x38\x0b\x8e\x35\x29\x43\x40\x09\x65\xe9\xe3\x7d\x74\x7a\x50\xb6\xf0\x39\x09\x75\xc5\x49\x1c\x5f\x84\x83\x00\xb4\xd2\x14\xf9\x31\xfa\x67\x91\x66\xdd\x55\x21\xf7\x37\xf2\xfe\x46\x1e\x16\xf5\xf5\xa0\x1b\xc9\x05\xd3\xa0\xdc\xc2\xb8\xba\x91\x5c\xb9\x85\xf1\x4a\x3b\x5a\xa3\x4b\xa9\x25\x42\x4d\x89\x7c\x50\x69\x82\x21\xb6\x0f\x6a\xcb\x5d\xa6\xcd\x2f\x17\x37\xaf\x53\x7e\xe5\x48\xd4\xaa\x4f\x72\xad\x8e\x0c\x2e\x28\x6b\x53\xed\xdb\x31\x81\xe9\xdf\xf4\xb6\x57\xd6\xa8\x1b\x84\x4c\x10\x54\x17\xa0\x49\x52\x20\x00\x3a\xda\x3f\x55\x49\x7d\x48\xcf\x9c\x95\x15\x40\xc4\x0c\x4c\x03\xa6\xa8\x8e\x49\x6b\x85\x0d\x98\x2b\x03\x85\x08\x00\xc7\xb6\x95\x38\x5c\x48\xc3\x61\xcc\xe8\xc6\x20\x73\x9b\x34\xd8\x10\xd3\x6f\xa9\xd5\x54\xbb\x24\x29\xa3\x7f\x47\xe9\xe2\x6a\x54\x69\xfc\x00\x24\xc6\x44\x6c\xf7\x8e\x48\xfb\x9c\x2f\x22\x76\x39\x88\x5c\x52\xab\xb9\x27\x98\xee\xd1\xf3\xef\x83\x60\x6a\xc4\x22\x4e\xb3\xec\x42\x5a\xa5\xec\x51\x5c\xe8\x7a\x3b\x6e\xa2\xed\x69\x2f\x22\xb5\x55\x3f\x13\xc2\xe4\x3b\x71\x50\x04\x51\x37\x94\xc3\xbf\x18\xca\x39\x90\x80\x24\xcb\x1a\xf9\x78\x8f\x73\xee\x71\xce\xb7\x82\x73\x02\x91\x02\x58\xc3\x60\xee\x5b\xa2\xef\x3a\xd3\x75\xbd\x3a\x26\xfa\xac\xa6\xeb\x75\x55\x77\x1b\x7d\xd4\x42\x8e\xb6\x58\x6a\xef\xa4\x46\x6b\xf6\x37\x1c\x8c\x04\x6e\xf9\x51\x1a\x2e\x81\xf2\x20\xab\xf3\x2f\x87\xed\x32\x01\xfd\x77\x4b\xe5\x7b\x8f\xed\xfe\x67\x60\xbb\xa0\xca\xaf\xe1\x33\x13\xd2\x74\x04\x22\x17\xb0\x98\x03\x15\xbc\x60\x82\xee\x82\x47\x35\xc0\x76\x94\xd7\xee\xc3\xa9\xa4\x4d\xed\xdd\xc0\xa0\x04\x40\xf6\x85\xe5\x5c\x07\x71\x46\x97\x8c\x16\x9b\x7b\x3a\xe5\xfe\xe6\x7e\x0d\x3a\xa5\xab\x1d\x58\xc0\xa1\xa9\x21\xb5\xd1\x73\x52\x4a\xe0\xd8\xf1\x37\x6e\xb8\x17\xd9\x3b\xea\xaa\x56\xb9\xef\x00\xc7\x2a\x81\x46\x25\xf5\xda\x6e\x63\x53\xe7\x51\x0c\x20\x9b\x55\x36\xcf\x04\xcc\x13\x29\xb8\x96\xa7\x2f\xed\xd2\x58\x09\x0f\xc4\x1a\x9f\x8b\xfb\x6b\x90\x60\x5f\x89\xd0\x42\x9d\x28\xab\xae\x14\x13\x03\xdd\x28\x30\xe3\x48\xf6\x2f\x17\x2a\x5d\xa5\xf9\x31\x91\x99\xae\x3a\x69\x08\xcc\xbf\xaa\xc9\x57\xb0\x6f\x08\xeb\x22\x54\x16\xd0\x30\x52\xc7\xca\xaa\x40\x09\x04\x1b\x06\xe3\x0f\x82\x06\xe3\x0f\xe6\x83\x81\xfb\x0b\x6a\x13\x01\xb1\x4c\x20\xfa\x83\xd8\x5c\xce\xa3\x78\x0c\x49\x25\xae\xa4\x10\x41\xec\x08\x9b\x8d\x90\x94\xde\x09\xe1\x5c\xa5\xf9\x4b\xf4\x91\xef\x34\x5c\x60\x9f\xc3\x70\x41\x1c\xfb\x86\xa1\x0f\x98\x16\x5d\x4d\x56\xcc\xbf\x55\xb3\xdf\xfd\xf1\x9b\xa5\x7e\x65\x10\x78\xad\x87\xfd\xf2\x60\x80\xc9\xbd\xfd\xca\x3d\xcd\xf4\x8d\xda\xaf\x0c\xef\x64\xbf\x82\xc9\x57\xb3\x5f\xc1\x84\x23\x96\xa3\x45\xd7\xc7\xf3\x53\xbd\x0f\x3f\x17\x05\x1b\x52\xb8\x59\x79\xb5\x5d\xd4\x9d\xc5\x28\x98\x7c\xa0\xef\xbf\xa8\x75\x70\x1b\x56\xf9\xcd\x38\x45\x7e\x39\x96\x45\x6d\x7e\x9b\x23\x9f\xe1\x3b\xde\xbc\xfd\xcb\xeb\x51\xea\x26\x56\xf6\xa5\x00\x41\x0b\x5d\x98\x26\x74\xb4\xa1\x9b\xb8\xc5\x63\x31\x05\xd3\xa6\x6b\xff\xee\x30\x23\x9c\xdd\x3c\x97\x13\x8e\x65\xb2\x6c\xc7\xfb\x52\x20\x9c\xb2\x99\x80\xab\xd1\x2e\x55\xed\x4a\x57\xff\x5b\x8f\x7b\xb9\x3b\xb9\x63\x3b\x20\xff\x83\xe2\x7b\x61\xe0\xfd\xf3\xf8\x4d\xaa\x3e\x76\x33\xdc\x06\xc4\x48\xf5\x0a\x47\x30\x6a\xb5\x78\x91\x42\x00\x01\xed\xdf\x92\xf1\xda\x3a\xbd\x17\xe9\xdd\xdf\xbf\xdf\xe6\xfd\xfb\x96\x05\x5e\x5f\x51\xb3\x28\x1e\xff\x1f\x6f\x1c\xdb\x87\x6f\x42\xcd\xb7\x4e\xef\xad\xce\xef\xb1\xca\xef\x14\xab\x74\x35\xa2\xda\x87\x57\xee\x66\x42\xf5\x95\x71\xcb\xb7\x86\x59\x0e\x10\xa4\x2b\xf9\xe6\x25\xe2\xc7\x32\x16\xdd\x67\x10\xa6\x1e\xe2\x01\x68\x93\x94\xde\x55\x40\x5a\x8f\x08\xc3\x20\x12\x00\x47\x3d\x6d\x94\xf5\xfc\x3b\x3e\xed\x09\xbc\x57\x97\x10\x19\x44\x89\x93\x24\xa1\x53\x64\xbd\xa3\x19\x18\x29\x0c\xf8\x88\xc7\x78\x78\x7a\xa7\x1b\x29\x8e\x62\x67\x38\x1b\xd6\x1e\xce\xa6\xfb\x81\xab\x69\x1e\xa7\xf7\x41\x0c\xee\x1f\x94\x6e\x52\x54\x7d\x64\x75\x2f\x5a\x7b\xc4\xf5\x78\x2a\x8e\xc1\x94\xbd\x13\x77\x8b\x7c\x6b\x9a\x1f\x6c\x2d\x12\x0e\x8f\x62\xd0\x56\x90\x0f\x0c\x99\xff\x4b\x64\xae\x5a\x35\x5f\x26\xad\x33\xff\x7c\xa1\x51\xf4\xf4\x02\x06\x7d\xf5\xb7\xf3\xab\x05\x47\x39\x48\xb6\xac\xa2\xf0\xa5\xd9\x3d\x62\xb9\x47\x2c\x07\xab\x67\x5c\x1b\xae\xa0\xab\x0e\x0b\x86\x98\x2f\xef\x84\x56\x34\xa0\x7e\x2d\xa5\xcb\x06\x6f\x42\xb1\xe7\xbb\x28\xae\xf1\x06\x75\xa3\xb3\xfc\x60\xeb\x9f\x3f\xc9\x53\x70\x9b\xf8\x48\x4c\xb0\x67\xe9\x92\xc1\x20\x26\x33\xfb\x6b\x2e\xa0\xb5\xf7\x25\xa4\xdc\x6a\x5b\x0e\xf3\x0f\xdd\x30\xba\xc6\x39\x3a\xc0\x43\x94\x85\xbd\xbd\xa4\xad\x24\xbf\x42\x24\x66\x60\xc2\xbc\x98\x21\x9f\x1c\x1f\xb8\x8a\xfa\xe7\xdc\xc0\x2a\xae\x4c\x23\xbe\x24\x71\xc2\xcc\x48\xcb\xaa\xf1\x19\x7e\xc8\xcf\xf0\x70\x08\xc8\x0c\xbb\xf1\x25\xf1\xbc\xb2\xd4\x0a\x18\x7a\x42\x6c\xef\x94\xca\x59\xc7\xfd\x98\x26\x44\x2e\x55\x46\xba\xd0\xba\xd1\x3b\xdd\x3c\xa5\xea\x79\xa6\x07\x96\xf7\x4f\x9c\x65\x3b\xd5\xfb\x99\xe1\xe6\x30\xf3\x91\xdf\x25\xc3\xb3\x93\xad\x51\x67\xdf\xc2\xd6\x1c\xdf\x8d\xad\x31\x9b\xfe\xe5\x59\x9b\x7f\x16\xa8\xf8\xe2\x78\xe1\x4b\xde\x70\xb6\xfb\x86\x33\x73\xc3\xd9\xe1\x37\x9c\x35\x6e\x38\x6b\xdc\x70\xb7\xfa\x3e\xdc\x17\xa0\x9c\xeb\xfd\x95\x60\xd2\x2c\x53\xce\x13\x9f\x84\x44\xe4\x31\x7f\xad\xb7\x9b\x09\x52\xfa\x20\x98\x92\x31\x02\x19\xce\x1b\xcf\xf0\x7d\x34\x82\x7b\xfa\xb7\x0c\x59\x2f\xe8\x50\x01\xc1\x40\xea\x69\x12\x5d\x50\x9a\xa1\x54\x10\xc3\x1a\xb6\xc5\x01\xbd\x5a\xc9\x70\xea\x69\x4f\x05\x1b\x9d\x49\x7b\x26\xfc\x90\x02\xb3\xff\x45\x92\x4e\xf9\x28\xe3\x68\x22\xfe\x0f\xb3\x04\x9f\x15\x71\x06\x29\x38\xcb\x86\x43\x90\xab\xbd\xce\xe4\x73\x80\x7f\xa8\x9a\x2d\x64\xb3\x4b\xd9\xec\x92\xc3\x55\x82\xcf\x16\xf1\x4a\x34\x5b\x1d\x1f\x9b\x66\xab\x2a\xf4\x59\x92\x24\x74\x30\x48\x07\x03\xfd\x89\x02\x98\xdf\xe5\x52\xcb\x7b\xf6\xb5\xe8\x00\x85\x1e\xef\xf9\xd4\xfb\x7b\xfa\x2d\x6a\x54\x0e\x74\x11\x0d\xa8\x4f\xba\xf8\x8f\x62\x82\x39\x4e\xb3\xbf\x74\xf1\x15\x3d\xc4\x7d\xbd\xd6\x71\x43\x15\xd3\x92\x38\xa7\xd2\xc8\x04\x3c\x32\xbd\x2e\x03\x5e\xef\xfc\x2e\x61\x42\x92\xb0\x83\x44\x58\x2c\xe8\xba\xb0\x18\xc9\x9f\xa1\xb2\xb8\x74\x07\xed\xe4\x23\x4f\xbe\x0d\x1f\x79\x86\xa4\x0e\xe0\x3e\xc8\xd2\x3d\xba\xfc\xa6\xd0\xe5\x7d\x90\xa5\x16\x53\x99\xdf\x59\x90\xa5\xa3\x4e\x41\x96\x8e\xee\x12\x65\xc9\xef\xf7\x37\x1c\x64\xa9\x7b\x82\x12\x86\x36\xe8\x5e\x9d\x7b\x8f\x9e\x3f\x87\x53\x8c\x56\xc0\x10\xe9\xf5\x12\x1d\xd5\x38\x4e\x02\xa6\x33\x3c\x9f\x28\xe8\x50\x92\x1d\xb1\x68\x78\xab\xb6\x6b\x42\xca\x5a\xd6\x22\x0b\x5f\xb8\xbc\xd3\x1b\xa1\x40\xfb\xab\xc9\x7a\xd0\x07\xc4\x3a\xe7\x94\xbe\xbf\x49\xff\x13\x6f\xd2\x6f\x37\xbb\x83\x94\xe6\x9b\x5c\xbb\x23\x0d\xeb\x31\x00\x93\x19\x9b\x7f\x33\x16\xf4\xf9\x55\xb1\x5a\x65\xf7\x57\xf0\xfe\x0a\x76\xb7\x4d\x42\x09\xaa\x72\x48\x7f\x50\xe9\x97\xbd\x20\x13\x4e\x40\x7f\x99\x9f\xc9\x4f\x83\xef\x3f\x71\x1c\x0c\x06\x7c\xbb\x95\x29\xa4\x58\x4a\x96\x74\x7d\x86\x7f\x38\x3d\x03\x3a\xc1\xd4\x2a\xa3\xa2\x83\x18\xfc\x1b\x3e\x3e\x16\x8f\x27\x9a\xe1\x39\x14\xff\x4b\xd0\x8c\x89\xbf\xd8\x3c\x21\x56\x11\x73\x17\x74\xa1\xaf\xc0\x67\x8d\x90\xf3\xa0\x26\x5d\xee\xd5\x5d\x58\x69\x0b\x13\x54\xf1\x4d\xad\x08\x86\x02\xc8\x62\x0a\xb1\x9b\x2b\x86\xce\xbf\x9d\x48\x3b\x12\x34\xee\x11\xca\x3d\x42\xf9\x16\xdf\xf4\x3b\x87\x03\xa4\x26\x74\xbb\xe0\x42\xbf\x99\xd7\x9b\xb2\xba\x54\xf1\xfe\xb2\xdd\x5f\xb6\x6f\xe1\xb2\xd9\xec\xa9\xe2\xbe\x29\x97\x70\x88\x13\x1e\x33\x8f\xac\x8e\xdb\x09\x03\x0c\xb6\xdb\xba\xe4\x50\x1e\x5a\x12\x70\x69\xa9\x82\xce\xd5\xbf\x88\x2b\x22\x56\x9d\xef\xce\xbb\x56\x42\x5b\xb1\xfd\x3e\x3b\x7d\xed\x15\x0c\x56\x75\x9b\x2e\x2f\x46\x24\xba\x57\xfe\x07\x03\xf2\xbd\xbb\x04\xa3\x1a\x89\xd9\xb8\x9e\x30\x77\x71\xa6\xf1\xfa\x70\xd7\xf7\x4d\xf8\xd5\xf0\xf4\x4e\xf1\x24\xee\xf1\xe0\x3d\x1e\xfc\x06\x5d\xf6\x4c\xa2\x18\x69\xc2\xf5\xad\x50\x1b\x9c\x5e\x5e\x66\x77\x34\xac\x56\x6d\xbf\x69\xd3\x6a\x35\xc5\xaf\x6f\x5c\x6d\xb6\xe6\x3e\x16\xce\x17\x92\xba\x07\x48\x7e\x7d\xbd\x1e\x80\x80\x71\x68\xfd\x3d\xc7\xda\x88\xb7\x19\xbb\xcd\x68\x45\xe9\x48\xda\x2b\xbf\x5a\xc9\xf0\x8e\x89\xff\x34\xa8\x01\x8e\x4f\x93\x24\xe1\xdb\x2d\x1f\x8a\x3f\xd0\x74\x3c\xe1\xc3\xd3\xd2\xd1\xb1\xd1\x4a\x66\x02\x39\x68\x62\x08\x0c\x09\xa4\x32\x27\x6c\xf0\xd3\x11\xba\x9b\x6d\xa7\x02\xbe\xaf\x25\xf0\x2f\x48\x77\xcc\xf1\x9b\x88\x84\x25\x17\x74\x67\x84\x7a\x8d\xf9\x15\x2d\xee\x1a\x1a\xec\x5f\x93\x0f\xf4\x93\xb2\x7b\xf2\x86\xa1\x34\x87\x24\x80\xc6\xba\xa5\x1f\x95\x7a\xe9\x29\x9f\xf0\x2a\x58\x6d\xe9\x78\x8a\x4b\x87\x48\xbd\xc5\x02\x23\xdd\xe5\x7a\xe8\xe6\x3b\x4d\xe9\xf9\xa7\x98\xd2\x6b\x47\x87\x83\xde\xd2\x74\xb3\x41\x64\xd9\xa9\xa6\x26\xd6\xf7\xa7\xa6\xbd\x2a\xc8\xfb\x4e\x15\x4d\x42\xf6\x03\x52\x40\x1f\x92\x19\xb7\x63\x3e\xd5\xae\x89\x23\x0f\xca\x7f\xd7\x3d\xbd\xd2\x01\x59\x51\x0e\x48\x29\x70\x48\x10\xf3\x43\xa2\xf6\x1e\x1a\xea\xb5\x63\x4c\xd0\x83\x82\x1f\x76\x0f\x09\xd8\x35\xe6\x5a\xf7\xe8\x50\x1d\xc3\xbd\x7c\x7a\x44\xe3\x80\xcb\xff\x21\x5e\xbc\x07\x3a\x36\x7e\xba\x37\x63\xd3\x4d\xab\xb3\xcf\x4f\x67\x47\x8e\xee\xc6\xe1\x07\x99\x51\x76\xb7\xd2\x39\xc0\x0c\xe1\x00\x75\x69\x67\x35\xc8\x01\x42\xdc\xae\x42\x8e\x83\x39\xb5\xcf\xc1\x9e\xd5\x48\xb8\xee\xc4\x4d\x33\x2c\x33\xc4\x90\xc2\x14\xe6\xb0\x80\x19\x5c\xc0\x15\xbc\x82\x4b\xb8\x81\x6b\xf8\x01\xde\xc0\x4b\x78\x01\xcf\xe1\x35\x7c\x0a\x3f\xc2\xb7\xf0\x15\x7c\x0f\x1f\xc1\x77\xf0\x31\xfc\x09\xbe\x81\xaf\xe1\x3f\xe0\x13\xf8\x12\x3e\x87\x2f\xe0\x33\xf8\x2b\xfc\x13\xfc\xf1\x53\x89\xbe\xd6\x06\x8f\xe4\x23\xfb\x27\x4d\x53\xdd\x22\x52\xac\x15\xcf\x31\x39\x1a\xc3\x4b\xc4\x03\x71\x27\x2d\x21\x50\xee\xec\x58\xbc\xc9\x07\xf5\xcb\x3a\xf5\xfb\x58\x3c\xe1\x07\xf5\x4b\xba\xf5\xab\x5e\xfc\x83\x7a\xc6\x9d\x7b\x2e\x38\x3a\xa8\x67\xda\xb1\x67\x45\x4f\x1c\xd4\x75\xda\xa9\xeb\x27\x68\x71\x50\xaf\x79\xb7\x5e\x19\xdd\x1c\xd4\x6d\xd1\xa9\xdb\x67\x92\x5e\xf9\xf1\x30\x70\xcb\x0e\xe8\xfa\xa0\x8e\x17\x1d\x3b\x26\xcb\x03\x67\xbc\xea\xd6\xb1\xa2\xb3\x0e\xea\xf9\xaa\x53\xcf\xff\x21\xc8\xb2\x03\xe7\xbc\xec\xd4\xf3\x9f\x54\xb0\xff\x83\x7a\xde\x74\xed\xd9\xc4\x90\x3f\xa8\xf7\x75\xa7\xde\x9f\x93\xc3\x6e\xc9\x87\x8e\xbd\x6a\x7a\xf2\xa0\xbe\x6f\x3a\xf6\x2d\xc8\xcf\x83\x3a\xbe\xec\xd4\xf1\x7f\x52\x7c\x18\xcc\x5d\x74\xea\xf6\xa7\xf4\x50\x88\x3b\xef\xda\xef\x41\xbd\x5e\x77\xea\xf5\x60\x20\x7e\xda\xa9\xdb\x57\xda\x57\xfe\xa0\xae\x3f\x76\xeb\x5a\x93\xe5\x07\x75\xfd\xb6\x53\xd7\xaf\xf1\x06\x3d\x92\x2d\x0f\xea\xfc\x55\xe7\xce\x0f\xea\xf6\x7d\xb7\x6e\xef\x82\x2b\x1e\x75\xea\xfa\xff\x0a\x8e\xe2\xa0\x7e\xdf\x75\xea\xf7\x8d\x60\x40\x0e\xea\xf7\xb1\xd3\x6f\x3b\x29\xf9\x46\xf2\x2b\x07\x75\xfc\x53\xb7\x09\x4b\xf6\xe6\xc0\x5b\xfd\xa6\x63\xd7\x82\x19\x3a\xa8\xe3\xd7\x1d\x3b\x96\xbc\xd3\x41\x3d\xff\xa3\x53\xcf\x6f\x15\xab\x75\x50\xcf\x4f\xba\xf5\x2c\x38\xb3\x83\xfa\x7d\xd9\xad\x5f\xca\x0e\x3d\xbd\xe7\x9d\x3a\x7e\x97\x1e\xf8\x32\xbd\xe8\xd6\xad\x64\xfa\xee\x80\x89\x9e\x1d\xd0\xfd\x41\x1d\xff\xda\xa9\xe3\x9f\xc9\xa1\x13\xfe\x53\xa7\x7e\xff\x4b\x71\xac\x07\xf5\xfc\xa3\xd3\x73\x17\x79\x6f\x23\x64\x45\x37\xb5\xdf\x1d\x44\xd7\x19\x47\x41\x4d\x54\x1f\x3d\x4c\x78\x29\x2b\xb4\x7d\x97\x9f\x2f\x5b\xdb\xff\x90\xe8\x0a\x6d\xdf\xe5\x36\x77\xdc\x0a\x27\xda\xcf\x67\x77\x8d\xfd\x04\x15\x90\xd3\xab\x4c\x24\xa5\xa4\xfd\xac\x47\x64\xb0\x7c\xa3\x60\x40\x2a\x45\x6d\x20\x79\x45\x2d\x8c\x8b\xec\xa4\x04\x40\xe7\x66\x72\xda\x1b\xcd\xa1\xcd\x1c\xd5\xa7\x3f\x24\xe3\x29\x9d\x90\x22\xcb\x0e\xd8\x47\xab\xd5\xf9\x62\x00\xd5\xdc\x1a\x37\x54\x96\xcc\xaa\x23\x67\xb0\xdd\xca\xe4\xa5\x92\x01\x87\xfb\x22\xec\xfc\x70\x3a\x65\xc7\xa7\x13\x99\xfa\xe7\xd4\x8d\xb4\x73\x7c\x1a\x8e\xb5\x63\xe2\x64\x21\xed\xdb\xdd\x75\x7b\x0c\xc0\x7c\xc5\xed\x71\xee\xc4\x1d\x43\x4a\x4d\xff\xf3\xed\xab\x97\xa3\x5c\x6a\xd6\xf1\xea\x26\x46\x20\x49\x92\x5a\x19\x37\xfa\x2e\x9c\x3f\x15\x2b\xd4\x86\x34\x7e\x99\xf4\xcd\x3c\x68\xb7\x94\x0c\xfb\xeb\x42\x93\x76\x86\xd3\x43\xd7\x0d\x02\xa5\x39\x82\x55\xf8\x37\xbf\x1e\xb6\x3e\x13\x86\xea\x40\xac\xa3\xe7\xf6\xe5\xd1\x4e\x5b\x3c\xa8\xc1\xa0\x61\xaa\x70\xc7\xc8\x58\xb7\x65\x20\xfc\x63\x6d\x53\x65\xec\x29\x30\x18\xec\xaa\x22\x8d\xc2\xa4\x6d\x47\xe8\x04\xc8\xa2\x60\x0c\x91\xc5\xcd\xc9\xf1\x45\xb1\x5a\x21\x76\xbc\xa1\x19\x5e\x74\xb5\x59\x3e\x74\x2f\x7b\x0a\x1b\xd5\x71\xd4\x19\x1a\xa5\x0b\x8e\x3f\xa0\x77\x69\xfe\xfe\xb9\x86\x21\xb3\x5f\x0f\xd1\x68\x9d\x7e\x7c\x5c\x4d\xf5\xcc\x18\x76\xe8\xd8\x57\x4b\xbf\x55\x7e\x85\x57\x3c\x56\x81\xdd\x38\xb8\x60\x28\x7d\xdf\x0b\xf7\x2f\xcd\xea\x38\x28\xcb\x9e\x6f\x9a\x62\x5e\xca\xda\xb8\xc7\xe1\xf1\xd4\x2c\x8f\x77\x2d\xa1\x44\x23\x44\x64\x5b\xf1\x35\x7f\x2d\xb7\x38\xb9\x65\xe8\x9f\x05\x66\x28\xff\x99\x5c\xd0\x82\x2c\xd1\xd2\x19\x4c\xd0\x34\xf9\xe2\x0a\x89\x2d\xf4\xec\xd6\x64\xf0\x60\x41\xee\x08\xa6\xfd\x35\x62\x2b\xca\xd6\x6f\x79\xca\x8b\x3c\x14\x11\x54\xac\xe7\x87\xf1\x34\xca\x8b\xc5\x02\xa1\x65\x34\x89\xf4\x44\xa2\x52\x10\x09\x4b\x46\x37\xff\xd7\xae\xc9\x4e\x6c\x21\x26\x9f\xbd\x41\x69\x4e\xc9\x24\xc2\xbc\x7f\x81\x32\x4a\x2e\xf3\x3e\xa7\xfd\xb4\xff\x9d\x68\xf5\x5d\x5f\xb4\xe8\xf3\xab\x94\xf7\xaf\xd3\xbc\x9f\x66\x0c\xa5\xcb\x9b\x3e\x2b\x08\xc1\xe4\x32\x6a\x9f\x3c\x44\xa3\x7c\x23\x68\x7c\x6f\xa7\xa4\x8d\xdd\xc8\x1d\x18\x06\xb7\x1b\x8e\xc3\xe5\x7a\xa7\x3f\x69\x6b\xa4\x52\x5a\xee\x8b\x9a\xc7\x2b\x72\x49\x31\xb9\x3c\x64\x6b\x18\xca\x79\xca\xb8\xc0\x4e\xf5\x1d\x1a\x6d\xd4\x8c\x62\x80\x96\xfd\xf4\x32\xc5\xa4\x65\x93\x0c\x70\x07\xe0\x09\xb2\x30\xd0\xf7\xb8\x04\x66\xfd\xf8\x72\xb8\xcf\xe4\xcc\xa1\x0c\xc6\x90\x25\xba\xdc\xec\xe1\x19\x7f\x68\xfe\x3e\xe3\xc3\x21\x60\x33\x3e\x4f\xd0\x8c\xdb\x57\x9e\x95\x61\xfb\x31\x06\x00\x34\x96\xa9\x89\xb1\x51\x92\x8e\x62\xeb\xf4\xa3\x44\x95\xf6\xb2\xf8\x57\x0b\xf4\xba\x02\x05\x87\xca\xe8\xf2\xee\xa7\xac\xba\x3b\xb7\x5a\x55\x7b\x11\x7e\x2c\xf8\x9f\x11\xda\xbc\x48\x39\xca\x79\xc7\xf3\x7e\x6f\x1b\x7c\xa3\x17\xe2\xf8\x14\x94\x7b\x10\xbf\x1a\x43\x3e\xa8\xfa\xd9\x35\x0f\x6b\xf8\xf9\x75\x9a\xf2\x34\x7f\x7f\x6c\x1f\xfd\x50\x15\xf9\x34\x7f\x01\x2b\xd1\xab\x34\xbf\x4a\xd0\x88\xa5\x0b\x24\xae\x4a\x96\xbd\x45\x9c\x67\x68\xa9\x7e\xf8\x56\x72\x0c\x5d\x22\xa2\xec\x27\xdf\x14\x84\xe3\xb5\x00\x3f\xf6\x3e\xa6\x82\xac\xcd\xb5\xd9\x92\x4c\xa8\xf7\x5a\xad\x1f\x46\x69\x96\x45\x30\x05\xd5\xc3\x40\x5d\x98\x6a\xf6\x77\xcd\x5c\x3f\x7f\xae\x9f\xb5\x33\x90\x5f\x63\xbe\xb8\x8a\x55\x22\xda\x44\xa7\x23\xbe\x5d\xa4\x39\xea\x8f\x27\x15\xcd\x7c\xc1\x8a\x0d\x8f\x23\xfd\xe0\x43\x04\x7a\xb2\xca\xe9\x44\xfc\x13\x21\xb2\x8c\xaa\xca\x39\xa7\x9b\x18\x94\x25\x24\x50\x80\x08\x28\xd5\x8a\x6b\x57\x7e\x9c\x24\x89\xbd\xd0\xe6\x41\xeb\x99\x6b\x4f\x92\xf1\x19\xa9\x2e\xf9\x70\xa8\x79\xa8\x34\x41\x33\x22\x63\xe7\x1d\xa5\xdb\xed\x51\x3a\x63\xa3\x1b\x8c\xb2\xa5\x00\x0e\x65\x89\x3a\xb7\x29\x1f\xc4\x8d\x57\xd1\xf6\x8e\x4e\x61\x91\xa0\x46\x9e\x40\x6d\xe1\x69\xc8\x23\x93\x23\xfd\x76\x45\x26\x14\xa6\xec\x32\x9f\xcc\xd0\xbc\x04\xa3\x73\x89\x32\xab\x9c\x84\xa7\x47\x49\xc2\x46\xe7\x82\xce\xcb\x90\xe8\x4c\xdc\x6e\x34\x18\xc4\x79\x72\x34\x06\x90\x55\x29\x06\xf3\x29\x8e\x0b\x30\x29\xda\x52\x14\x22\x65\x32\x5f\x02\x71\xc5\x1d\x18\x71\xcf\x5c\x9e\xb5\xfe\x20\x8e\x1c\x6a\xa0\x0a\xc3\x85\xf8\xa4\x6b\x49\x08\xf4\x7b\x12\x45\x11\x0c\x4c\x44\x03\xf8\x7b\x74\x93\x0b\xae\x72\x5d\x03\x16\x33\xdd\x19\x9f\x4b\x0b\x70\x0b\x75\xa9\x17\xdc\xdb\x16\xe7\x86\xef\xad\x9b\xe6\x61\xb5\xeb\x34\x11\x7f\xc2\xd4\xcd\x15\xb9\x44\x2b\xc4\x62\xd0\x43\x33\x36\x8f\x31\x50\x61\x4b\xd3\x11\x43\x39\xcd\x3e\x20\x28\xfe\xfa\x87\xcc\x19\xea\x9c\xa9\x43\xcb\xe6\xdb\xad\xdc\x7f\x48\x83\x99\xed\xc5\xf1\x54\xf6\xbe\x74\x55\x69\xdb\xa7\xe6\x35\x8d\xc1\x24\xe4\x2f\x33\x3a\x3f\x47\x8b\x73\x8d\x94\xcf\x07\x83\x5a\x41\x0c\x04\x63\x5e\xc2\x2c\x49\x47\x1a\x3b\x8d\xb4\xaf\x42\x5c\x58\x40\xc8\xfc\x46\x49\x01\xb3\x7d\x58\x0f\x91\x45\xba\xc9\x8b\x2c\xe5\x68\x29\xf1\xd8\x81\xc8\xee\x4b\xf1\x18\xd5\x7d\x31\xde\x0b\xe7\xeb\xf4\x3d\x7a\xae\x0d\xc0\x27\x0d\xfe\x42\xbe\x13\x97\x88\xc7\x91\x26\x30\x22\x50\x45\xbe\xd5\x04\x81\x0c\x32\x27\xea\x89\x6b\x07\x4a\xa8\x6b\x2a\x29\x46\x48\x32\xe6\x2c\x3b\xf0\x16\x7c\x5e\x5e\x53\xec\xab\x92\xea\x3d\x56\xbe\x05\x49\xdd\x24\xc5\x0a\x78\x94\xcb\x36\xb3\x09\x4d\x7d\x43\x6c\x56\x90\xd1\x05\x26\x4b\x15\x85\xc5\xd9\x28\xbc\x8a\xb1\xcf\x25\x69\xe8\xc3\x33\x3e\xaf\x88\xa1\x26\xaf\x56\xd1\x46\xe2\x36\x8d\xcf\xd2\x87\xe8\x2c\x95\x14\x51\xea\xca\x3f\x52\x89\x32\xc9\x60\x40\xb4\x8f\xce\xad\xba\x44\xcc\x24\x5b\x55\xac\x46\x65\x75\x9b\x43\x53\xd3\x1a\x8c\x8b\xa9\xe8\xe3\xc2\xff\x2a\xfa\x8d\x02\x63\xab\xcb\x80\x60\x17\xf7\x5c\xa1\x8d\x3e\xde\xe3\x35\x5d\xe2\x15\x46\x2c\x3f\x5e\xe3\x8f\xb8\xc5\x84\xdc\x69\x68\x48\x21\x16\xfe\xec\x73\xa2\x9f\x9f\x76\x30\xf3\xfe\xc9\x4c\x5b\x93\x0b\x32\xc2\x8e\x44\x87\x6f\xcd\x04\x1b\x92\x46\x2c\x78\xea\x73\x01\xb2\xd2\xac\xe0\x75\xca\xaf\x2c\x74\x2a\x83\xea\xfa\x57\x1b\x1b\x76\x74\x6e\xd7\x5d\xd6\x6d\x92\xec\xe3\xa8\xd6\xae\xa8\xcf\x09\x1a\x9d\xbb\xbf\xa1\x4f\x34\x8b\xcf\x7e\x49\x09\xca\x5e\x68\x79\xb7\x5e\x37\x13\x16\xe0\x46\x61\xad\xab\xc9\xe9\xc9\x18\xfa\x2b\x91\xd8\x02\x9e\x5f\xa5\xf9\xcf\x39\x5a\x9a\xde\x27\x47\xa7\xb2\xec\x2d\xe2\x3f\xba\x83\xe8\xe2\xa7\x44\xd0\x0e\xcb\xa7\x1f\xc4\x45\x11\x85\x0e\x87\x14\x32\x7a\x52\xb8\x8a\xb5\x72\x60\xe2\x29\x57\x93\xdf\xd5\xba\xb9\x3e\x50\x42\x41\xe3\xef\x6a\x14\x64\x86\x41\x09\x2b\x1a\x7f\x5f\xeb\x00\x07\x01\xca\xfa\xa9\x05\xc8\x03\x89\x9a\xeb\x1b\x2b\x1e\x5b\xf5\xc1\xef\x20\x41\x10\xcb\x41\x81\xfc\x5c\x42\x69\x76\xdc\xde\xad\x77\x86\x8d\xc6\x48\x1c\x0c\x5a\x86\xec\xe5\xcc\xa4\xbc\x23\x34\xb3\x2a\xe1\x12\x5d\x14\x97\xad\xed\xe4\x57\x5b\xb9\x6c\x71\x57\x10\xcf\x7f\x13\x76\x44\x33\x14\xdc\x8f\xda\x85\x48\x38\xc4\x8a\x81\xaa\xef\x51\x92\x9c\x9e\x8c\x05\x4d\xd2\xf8\x72\x0a\xa0\x43\x49\x89\xe6\xb7\x7b\xd0\x9c\x83\xad\xbe\xa4\x50\x6c\x6c\x83\x14\xea\x0e\xcc\xfb\x9f\xa5\xb9\xe1\x73\xd1\x52\x5d\x42\x51\xf4\x56\x5c\x23\xb7\xe0\x8d\xe2\x34\x9d\x1a\x82\xe7\xcd\xf3\x55\x91\x55\x65\x8f\x15\x55\x8d\xaa\x12\xe9\xd7\xe5\xf6\xf3\x58\x5e\x3d\xb7\xe4\x39\x59\x78\xcd\x34\xf9\xf0\x98\x16\x84\x4f\xc6\x50\x4a\xaf\xfe\x94\x92\x65\x86\x9e\x15\xd9\x0a\x67\x7a\x3c\xa7\x5c\x29\xcf\x55\x31\x26\xd8\xbb\x49\x0a\x60\xf2\x62\x83\x98\x4b\xaf\xd8\xe7\x15\x68\xd2\xa5\x29\x0e\x49\x66\x73\xf5\x2d\xc0\xff\x26\xb3\x79\x09\x15\x16\x79\x94\x65\x01\x01\xcb\x6c\xde\x93\x6d\x43\xbc\x37\x6a\x1d\x12\x8e\x5b\x3f\x19\x9a\x81\xeb\x09\xef\xe8\x38\xcc\xc7\xb7\x7d\x72\x3a\x16\xec\x42\x09\x03\x3d\x4f\x9a\x66\xbc\x15\x95\x40\x13\x76\x46\x1f\xb2\x21\x39\x1b\x0e\xa9\xe1\xf4\xf8\x8c\xce\x7b\xa9\x60\x63\x34\x24\x6d\xb7\xa9\xa4\xc5\x46\x4b\xb4\x60\x48\x6c\xbd\x05\xde\x88\x14\x6b\x85\x1a\x23\x00\x53\x43\xd0\x23\x00\xf1\x60\x80\x8d\x7b\xb2\x68\x0b\x4a\xae\xd7\x1d\x4b\x9d\x5a\x58\xea\x51\xf7\xac\xf5\x20\x5c\xb0\xbf\x6a\x2b\x30\x69\xcc\xc3\x85\xbc\xc8\x10\x8f\xa1\x8a\xee\x84\x5b\xf7\x55\x4e\xdc\x8c\x76\xbe\xca\x8a\xfc\x4a\x36\xca\x63\x50\x42\xf7\xb7\x0b\xae\x15\xb5\x28\xa0\x2f\x19\x9f\xf1\x87\x7b\x20\xe2\x6c\x38\xe4\x00\x69\x71\x73\x4b\x55\x41\xfd\xc9\x0d\xec\xb5\x02\x7b\x58\xb3\x37\x9b\x43\x96\x8c\x21\xb1\xdc\xfe\x19\x7b\x28\xce\x99\x19\xb2\x44\x30\x7c\xbd\xa3\x53\xab\x19\x50\x4e\x93\x11\xce\x9f\x61\x82\xf3\x2b\xb1\x43\x83\x81\x92\x1f\xc6\xd8\x92\xa3\xbc\x6c\x9d\xaa\xde\x2f\x17\x11\x8f\xcc\x31\xab\xb7\xa5\x57\x65\xf0\x50\x37\x5e\x25\xe2\xd9\xbb\x4b\x96\x7d\x6d\xdd\x25\x3c\xef\x51\x0f\x64\x63\x8d\x3d\xc4\x6f\xb7\x6a\x4c\x01\x64\x09\x95\xe4\x9e\x0c\xc4\xaf\xc1\x93\x19\xe7\x37\x1f\xfa\x74\x7f\x4e\x14\x0a\xff\xfb\x1b\x23\xc5\x63\xd5\xe2\x14\x43\xb0\xe7\xd2\x9e\x0d\x87\xa9\x77\xf6\x81\xaa\xb3\xd4\x9c\xbd\x38\xdb\x66\x42\xd8\xea\x31\x8a\xf6\x21\x1f\x01\xb7\x8d\xbd\x08\x20\x3f\x45\xb4\x24\xea\xfe\x48\xa7\xea\x9d\x37\x88\xb5\x5c\x31\xb3\x2d\xf2\x09\xd6\x62\x9c\xd1\x39\x25\xcf\x04\x87\x8e\x7f\x45\x5e\xe8\xcb\x96\x41\x6c\x1f\x5a\x5a\x87\x1a\xa2\x9f\x9e\xb3\x23\xea\x38\xcc\x2b\x26\x71\x85\x00\x6d\x32\x6d\xd4\xa9\x5e\x3f\x51\x6b\x12\x3f\x08\x57\xd3\xcf\x9f\xac\xf3\xbd\xa8\xe2\x01\x88\x1e\x4e\xbf\x88\x72\xb8\xc6\xd7\xea\x75\x94\xc1\x3b\x60\xc5\x8c\x52\x22\xe3\xa1\x73\x0f\xb7\x00\xc9\x57\x79\x04\x11\xb8\xe5\xc3\xa1\x73\x69\xda\xaf\x33\x55\xd7\x99\x8e\xce\x73\x84\xc8\x73\xb2\x44\x1f\x1f\xf2\xc1\x20\x76\x0b\x24\x55\x44\x05\x03\xe7\x93\x39\xae\x35\x40\xb5\xef\x12\x0a\xec\x59\xcb\x81\xa5\x30\x41\x52\x95\x11\x38\x23\x67\xa0\x5a\x31\x81\xee\x89\x89\x07\xa9\xfe\x4d\x83\x8c\xb8\x47\x24\x21\x5e\x57\xe5\x6e\x3f\xdc\xba\xa4\x45\xb5\xda\xc3\x4a\x2a\xf1\x72\xbb\xb8\x26\xe7\xd2\x39\x59\x71\xa5\x07\xf1\xb0\x4d\xc7\x98\x36\x07\x5c\xec\x04\x19\xf1\x65\x60\x00\x04\x5d\xe8\x1f\xa7\x84\x50\xde\x5f\xa4\x59\xd6\x4f\xfb\x8b\x2c\xcd\xf3\x7e\x9a\xf7\x53\x2b\xc7\x8b\xee\xe4\x0d\xfb\xce\x12\xfa\xba\x7a\xe2\x94\x19\x89\xb8\x5b\x14\xa2\x36\xad\x37\x0b\xbc\xc5\xb9\xad\x3a\x11\x84\xbc\x8e\x21\xd0\x24\xf9\xa3\x87\x55\xc5\x68\xa8\x10\xb2\xd9\xd7\x97\xe9\x1a\x0d\xa3\x1f\xa2\x12\x9e\x57\x90\xf3\x8a\xbd\x34\x90\x52\xcb\x4a\x3a\x12\xfb\xe3\x82\x98\x87\x86\x70\x6e\x68\xdc\x5a\xab\x0b\x4a\xb3\x38\x0a\x8f\x20\xdb\xe9\xc1\x8e\x4e\x4b\x63\xe4\x13\xda\xaf\xe6\x1e\xd9\x4f\xd4\x3e\xbf\x7d\x14\x83\x5b\xc5\x44\x41\x04\x4a\x28\xf5\x5a\x3a\x2d\x58\x9e\xe3\x4b\x02\x62\x5a\x85\x5e\x80\xa4\xc9\x8f\xef\x11\xb8\xd5\x94\x2a\x5d\x2e\xc0\xe7\x16\x46\xbe\x7e\xfa\xe6\xd9\xab\x37\x3f\x9d\xbf\xfb\xeb\xeb\xa7\xe7\x2f\x9e\xbf\xfc\xf3\xd3\x27\x49\xad\xf4\xe7\x97\xe1\xf2\x27\x4f\x9f\x3d\xfa\xf9\xc5\xbb\x4a\xa4\x72\x89\xcc\xeb\x69\xde\xa3\x24\xe0\xdd\x33\x4b\xad\xc2\x6a\x2e\x15\x72\x78\xa9\xb0\x6e\x92\x8b\x3e\x68\xb2\x82\x4a\xcb\x92\x34\x1f\xb3\x86\x85\xc5\x69\xd0\xc2\xe2\xd4\xb5\xb0\x38\x75\x2c\x2c\x3a\xe7\x1e\x3b\x2c\xef\xd8\x4a\x45\xdb\x90\x80\x42\xa0\xcc\x16\x58\xea\xa8\x05\x91\x00\x30\xb5\xbe\x54\x5e\x78\x89\x77\x83\xfb\x18\x85\x4a\x23\x88\x5b\xcf\x23\x0a\x16\x47\x90\xd6\x5b\x04\xeb\x9b\xda\xa9\xe0\x8f\x5c\x85\x43\xc5\xb2\x0f\x06\x68\x44\xd2\x35\x4a\x92\x84\x55\x4f\x4c\x11\x8a\x78\xa2\x4f\xa8\x57\x17\x29\xbc\x2d\x2e\xf2\x05\xc3\x17\x68\x29\xb8\xfa\x98\x3b\x42\xec\x73\x63\xfa\x03\xc0\x0c\xcd\xad\x46\xbb\xe2\x06\x4b\xa9\x75\xca\x92\x5b\x13\x13\x45\xcb\xa5\x96\x38\xdf\xd0\x1c\x99\x9f\x35\x1a\x62\x32\x86\xe2\x5e\xa9\x8f\x4a\xf9\x34\x87\xfe\x54\xa4\xc8\x8a\x15\xe4\x05\xa5\x12\xe1\x29\x19\x46\xab\x20\xcb\xd3\x0c\xab\x31\x35\x77\x22\x50\xfd\x84\xc0\x73\xf4\x71\x83\x16\x3c\x7f\x81\xc9\x7b\xb4\xfc\x2b\x46\x99\x1c\x42\x5d\x34\xd9\x00\x89\xf7\x40\x33\xc5\xb9\xc3\xad\x1f\x9d\x42\x9c\xcb\xc7\x42\xfd\x69\x39\xf2\x1a\xda\x4b\xc9\x32\x8e\xcc\x67\x85\x2e\x5d\xb2\x1e\x3a\x9f\x44\x47\x15\xdd\xac\xba\x35\x35\xd5\xaf\x16\xd4\x4a\x28\x8f\xfd\x5e\xe5\x9b\xda\xcc\x26\x9d\x3f\x61\x74\xb3\x11\x6f\x7f\x6d\x4a\xd5\xb0\xfe\xfc\x76\xe6\x95\xd1\x99\x6e\x6c\xa7\x60\x2a\xcd\x33\xc4\x9f\x93\x66\xad\x6a\x38\x30\xd5\x0a\xfe\x70\xc5\x6a\x19\xd3\x68\x65\xfe\x6e\xd4\x73\x66\x0c\xa6\x91\xd1\xe0\x4f\xa2\xeb\x14\x73\xf1\x57\x29\xb6\x56\xcf\x2c\xb0\x11\x6d\x8b\xef\xb2\x5e\x67\x25\x83\xc1\xd1\xae\x89\x95\x00\x9e\x4b\xf3\xd4\xc9\xa9\xa6\xf9\xdb\x84\x71\x2e\xbf\xa4\x18\xeb\x6a\x98\xa9\x28\x98\x34\x82\xd9\xba\xd3\x3e\x1a\x1b\x0e\xd9\x70\x79\xaf\x19\x5d\x20\xb4\x8c\xf9\xe8\xaf\xcf\x9f\xbe\x78\xf2\xe8\xc7\x17\x4f\xcf\x1f\xbf\x7a\xf9\xee\xf9\xcb\x9f\x9f\x9a\x5c\x86\xba\x09\x67\xf8\xf2\x12\x31\x79\x6d\xe2\x28\x37\x7d\x56\x22\x48\x50\x06\x29\x0b\xc9\x61\x1b\x49\x46\x12\x69\xb2\x42\x71\x2b\x5a\x89\x21\xc9\xe4\xa8\x32\xab\x89\x60\x8c\x12\x6c\x83\x7a\x43\x9e\x1c\x9f\x82\x61\x4c\xb6\xdb\x28\x02\x43\x13\xf1\x90\x0f\x19\x30\x82\xa1\xa6\x32\xed\x8e\xc6\x7a\x91\xd5\x71\x4a\xdb\x0f\xf4\x71\x93\xe1\x05\xe6\xd9\x8d\x24\xf2\xd0\x32\x52\xd6\x68\xb5\xbd\x0f\x1c\xb0\x0b\xa1\x4d\x39\x89\x07\x5a\x26\xe0\x55\x33\xb5\x89\x94\x89\x78\x14\x58\x04\xb6\xdb\xe8\x61\x41\xde\x13\x7a\x4d\x7e\x88\x7a\xcd\xa4\x59\x15\x2e\x8b\x60\xe4\x32\x8f\xfd\xef\xa2\x21\x1b\x46\xdf\xc9\x85\x99\xab\xd5\xbf\x40\x8b\x54\xd0\x18\xd1\x10\x0d\xa3\x51\xff\x19\x65\xfd\x35\x65\x82\xfa\x15\x67\x21\xdf\x34\xd8\xcf\x11\x9a\xf4\xaf\x38\xdf\x4c\x4e\x4e\x1a\x94\x8b\xb8\x31\x27\x4b\xba\xc8\x4f\x24\xbd\xb3\xa8\x1e\x43\xa9\x71\x34\x62\x9b\x0a\x10\xa7\x96\xb0\x14\xb0\xf7\x96\x52\xe2\xc3\xdf\xa3\x97\x8f\x9f\xbe\x80\x02\x99\x82\x89\x16\xe8\x18\x2e\x54\x62\xd8\xef\x41\x59\x0a\x9c\xbe\xb2\x4f\x84\x7e\x69\xea\x37\xb8\x5d\xa4\xbd\x42\x2c\xa0\x52\xb7\x52\xfa\x9b\x0b\xf4\x46\xe9\x8f\x9e\x78\x5f\x64\x3d\xa3\xbd\x16\xd7\xb6\x51\xb5\x29\x0e\x95\x6d\x06\x03\xf5\xa3\x69\x0a\x21\xe3\x55\x85\xbe\x4d\xdd\x21\xb5\x36\x4b\x09\x1e\x94\xbe\x71\xe2\x7f\x97\x91\xc4\x64\x91\x7c\x8b\x80\xb8\x8d\x57\x88\x4c\x8a\x38\x12\xff\x46\x00\x4a\xfb\x51\xf1\x5b\xfe\x11\x01\xa8\xb5\xef\xa2\x48\xff\x19\x01\x68\xf7\x7a\xe2\x13\xa2\x3a\x7a\x9b\x20\x57\x94\x60\x4b\xa1\xac\xe1\x10\x36\x2f\x43\x4c\x92\xef\x21\x96\xe6\xe7\x8a\x51\x6a\x58\x40\x01\x18\x3b\xda\x05\x63\x45\xfd\xf4\xe5\x5f\x46\x4f\x9e\xfe\xf8\xf3\x7f\x9c\xbf\x7b\xf4\xf6\xcf\x6f\xc1\x60\xb0\xa0\x24\xa7\x19\x1a\x65\xf4\x32\xd4\x09\x56\xe4\x0b\x83\x58\x22\x14\x4b\x96\x2a\xa4\x54\xbf\x1b\xf5\x1d\x0e\xc6\x31\x3d\x67\x28\x2f\x32\x99\x04\x47\xcb\x23\x1a\x28\xd5\x7d\xe1\x15\x52\x6d\xcd\x91\x04\x26\x0f\xda\xfa\x90\x3b\x13\x6e\x8e\xd4\x27\xd1\xbc\x29\xc8\xf0\x6b\x34\xd3\xdf\x39\xcf\x72\x85\xef\x35\x49\x65\x01\x99\x15\x56\xb2\xf3\x58\x27\xa8\xcb\x63\xb7\xb2\x00\x11\x53\x43\x51\x4a\x4a\x92\x5a\x6f\xa4\x2f\x60\x25\x28\xf2\x8d\xe2\xbc\xdb\x6b\x1b\x59\x61\x5f\xe3\x4b\x32\x9b\x5b\x21\x6e\xfd\x5b\x4d\xc8\xdb\xb8\x4a\xbb\x56\x56\xc2\xe0\x87\x89\x6f\x5a\xb0\xef\xfa\x37\xa6\xe4\xca\x90\xc5\x33\xd5\x36\x73\x2d\x00\x42\x0f\xf9\xd9\x70\x88\x40\x4b\xb5\x19\x9a\xc7\x5a\x6a\x1c\xd8\x19\x69\xe1\xe1\xcc\xf0\xdd\x15\xa3\xd7\x3f\x93\x2b\xa9\x95\x91\x62\x48\x09\x51\x2f\x52\x2e\x66\x5c\xc2\xfd\xb5\xc2\x16\x28\xbd\x00\x6d\xbf\xdd\x3e\x38\x6a\x41\x53\xe6\xee\xb2\x82\x54\xb2\x63\xc7\x8a\x23\x5d\xbc\xbf\x28\x18\x41\x4c\xc9\x4b\xc5\x1b\x96\xcf\xf6\x7c\xaf\x18\x48\x97\xd2\x42\x8d\x49\xe5\x31\xd2\xd8\xce\xcc\x42\x62\x73\x8d\x0c\xcd\xb7\x52\x6c\x46\x18\xa6\xdd\x1d\x30\x06\x7e\xa1\x45\x6a\x43\xbf\xd3\x49\x90\x14\x52\x06\xa9\x96\x18\xea\x29\x4b\x75\xd9\xe2\x41\xb0\x05\x32\x92\x4a\x79\x65\xeb\x8f\xbe\xba\xdb\xc0\xeb\xe7\xfb\x60\x3f\x96\x3e\x0e\x77\xe4\xd1\x02\x40\x3d\x9a\x0a\x0f\x04\xe1\xde\xb0\x5d\x9e\x39\x92\x2d\xed\xf9\x3f\x95\x3a\x00\x49\xf3\xc5\x73\x9c\xff\x87\x31\xa3\x7c\x42\x09\x6a\xb1\x6c\x3a\xb7\xb6\x96\x4a\x16\xac\x45\x4e\x4f\x5e\xbd\x7c\x1a\x25\x49\x82\xb6\xdb\xe8\xe9\x9b\x37\xaf\xde\x3c\x7d\x22\x7f\x8a\x2b\x8b\xf2\x62\x8d\x6c\xdf\xb5\x17\x89\xb3\x9b\xdb\xb4\x92\xc7\x1b\x1a\xca\x8c\xc5\x8d\xa1\x55\x0c\x66\x7c\x1e\x23\x73\xb3\xec\x2c\x64\xd6\xcd\x84\xa9\xe7\x14\x32\x19\xa5\x77\x1a\x9a\x69\xa2\xe6\x38\x09\x7f\xfb\xd3\xa3\xb7\xe7\x3f\xbd\x7a\xf3\xf4\xfc\x2f\x8f\x5e\xfc\xfc\xf4\x6d\xa4\x83\xf7\x12\x83\xfd\x6a\xe3\x11\x18\xee\xc6\x2c\xbd\x8a\xf4\x2b\xab\x35\x39\xcf\xc1\x20\x0e\x75\x6c\xf0\x9f\x5f\x3a\x72\x39\xd9\x24\x49\xe8\x76\x6b\x9e\xd4\xeb\x94\x91\x38\xfa\x2b\x2d\xfa\x1b\xa3\xb0\xeb\xa7\xfd\x51\x26\x47\x8a\x41\x5f\x3c\xa8\x7d\x1d\x5c\xa8\x8f\xd7\x6b\xb4\xc4\x29\x47\xd9\x4d\x5f\xda\x91\x62\x72\x79\xa2\x0e\x10\x93\xcb\x3e\xe6\xa3\xfe\xbb\x2b\x9c\xf7\x71\xde\x57\x64\xa1\xa0\x98\x0b\x92\x17\x9b\x0d\x15\x24\x5f\x3f\xbe\x28\x78\x7f\x8d\x2f\xaf\x78\xff\x02\xf5\xab\x72\x4c\xfa\xab\x42\xc6\x1b\xfd\x80\x58\x2e\xed\x73\x57\xfd\x06\x89\x09\x46\x86\x8a\x0c\x6c\x48\x72\x74\x0a\x60\xaa\x0c\xb4\x04\x34\x3a\x47\xdf\xc6\x47\x19\x81\x83\x79\x88\xcc\xef\xc4\xe0\xd7\xca\x4c\x2f\x06\x46\x87\xa9\x0b\x24\x66\x0d\x9b\xf1\xb9\x43\xac\x88\xa3\x02\x97\x7e\x7a\xe8\x23\xf7\x4c\xf7\xce\xd3\xe5\x07\x71\x43\xa5\xa8\x7f\x52\x33\x14\x73\x48\x2c\x71\x19\xb4\xad\xee\x70\xe8\x94\x97\xd0\x25\xa1\x03\xe4\x1a\x73\xf1\xb9\x3b\x98\xdb\xbb\x43\x11\xbc\xa0\x74\x33\xad\x50\xf3\x3f\x28\xf6\xd2\xe1\x07\xf0\x7c\xa4\x22\x5f\xe5\x11\x64\x90\x59\x8a\x5e\x49\xc8\xc0\x24\x47\xfc\x1d\x5e\x23\x5a\xf0\x60\x56\x7d\x53\x5d\x4e\xb8\x84\xa7\xa0\x84\xba\x64\x52\xb7\x13\x6b\x79\x79\x02\x2b\x43\xc0\x5c\x04\x8f\xbd\x90\xb9\xf9\xeb\x5c\xef\xbe\x2d\x6b\x8c\xa7\x19\x3f\xb3\x57\xee\xd3\xa7\xa1\xfe\x8d\xde\xc5\x5a\xbd\xa3\x3d\x15\xdd\x9d\x38\x78\xdb\x26\xb6\x73\xc7\x3c\xd4\x3b\x0b\x50\x81\x4a\x1d\x87\xb6\x2c\xd4\x62\xe5\x10\xb2\x9a\x1a\x0a\x41\xd9\x83\x48\x42\x69\xf9\x46\xce\x0f\x2d\x25\xda\x51\x0b\x09\x55\x7b\x4c\x09\xc7\xa4\x40\x55\x35\x31\xb9\x1d\x5d\xb9\x13\x66\xf6\x95\x36\x2f\x72\x48\x6e\x31\x69\x7c\x79\xf3\xf4\xdd\xcf\x6f\x5e\xd6\x79\x49\x06\x4f\xbd\x37\xd6\x6d\xf1\xee\x4f\x6f\x5e\xfd\x57\xb3\xc1\x83\xd6\x06\x8a\x69\x9d\xec\xe3\xf3\x61\x3b\x3f\xeb\xef\xf1\x24\xfa\xf1\xe9\x33\xf1\xaa\x3c\x7e\xf3\xf4\xd1\xbb\xa7\x11\xac\x21\x76\x6b\xc2\xd7\xba\xb9\xb5\x8d\xd3\x2a\xd9\x1e\x11\x87\xda\x98\xb8\x8d\x2d\xbb\x63\xea\x24\x69\xee\x69\x83\xbf\xd0\xe1\x5a\x1d\x04\xa3\x2f\x53\xed\x2d\x97\x46\x25\x30\x70\x81\x65\xda\x5a\xfb\x1a\x1e\x75\x80\x40\xf9\x08\x18\xc0\x6b\x48\x0c\x42\xaf\x22\x7c\xe0\x40\x9d\xdb\xbc\x29\xb7\x52\x52\xab\x50\x27\x3d\x3c\xc5\xbe\x9d\xfc\x9b\xf4\x5a\x7e\xf1\x2f\xf5\x7f\x61\x7e\xf5\x16\x8b\x0b\xa6\x66\x88\x0d\xff\x1e\x9b\xd5\x2f\x9f\x68\xa2\x2a\xc6\xbe\xf5\x3b\x80\x78\xc6\x1b\x7e\x1b\x53\xb3\xb9\x1f\xe8\x7b\x35\x7b\xf1\x31\xc6\x41\xab\x7c\x2c\xdd\x03\xa6\x31\x4a\x30\x54\xc8\x4d\x9c\x63\x75\x3a\x50\xb9\x9e\xfa\x3e\x17\x23\x83\x62\x08\x0c\x0a\x06\x11\x28\x61\x97\x06\xf2\x16\x89\xda\xc0\x1c\x4b\xdb\x9e\xec\xaf\x50\xa1\xb0\xda\xb7\x26\xc3\x69\x26\xe3\x2e\xb3\x75\x1d\xee\xfe\xd7\x1f\xe1\x90\x97\x83\x6b\x77\xd1\x4e\x1d\xf3\xa9\x2b\x07\x8a\x81\xa4\x94\x27\x48\x12\xcb\xfe\xb9\xf9\xd3\x67\x37\x26\xad\x4b\xe0\xe0\x5d\xf4\xae\xde\xee\x5e\x13\x84\x18\xa8\x08\x50\x31\x9c\xcb\x31\x84\x89\x8c\xba\x4a\xc4\xac\x30\x28\x8c\xd4\x84\x4c\x30\x11\x73\x48\x5a\xd9\x13\xc3\x0c\x06\x7c\xa4\xe7\x31\x18\xb0\x8a\x69\x26\x4d\xd5\x1c\xd6\xaa\x39\xf2\xc3\xe9\x94\xa8\x80\x05\x34\x39\x3d\xa3\x0f\xc9\x19\x1d\x0e\x01\x9e\x51\x3f\x60\x01\x9d\xf7\x6c\xdf\x56\xc5\x34\x63\xc3\x68\x12\x0d\xd1\xdc\x18\xc1\xff\x8b\xac\xf0\x31\x10\x5c\x57\x59\xf6\xb2\xc0\x69\x26\x4d\xfc\xac\xcc\xa5\x6c\x7c\x8a\x80\x82\x8d\xb6\xd9\xe4\xa8\xed\xa4\x4d\x8b\x1b\x25\xc3\x42\xf6\x52\xb0\xf0\x55\xa0\x06\x2b\x3d\xd8\x59\x5f\xdd\x68\xaa\x39\x6b\x23\x9d\x6a\xed\xdd\x91\xe4\x96\xa0\xe6\xc7\x41\x3d\xde\xe4\x28\x49\x70\xa0\x58\xf4\xdf\x84\x47\xb4\x13\x18\x69\xfd\xab\x86\x41\x36\x18\xf0\xa3\x24\x11\xff\x8c\x70\xfe\x04\xe5\x9c\xd1\x1b\x29\xaf\xf4\xda\x5a\xfd\x59\x04\x8c\x81\x65\xf4\xf7\x68\xa8\x0d\x14\x6b\xe6\x10\x7f\x8f\x60\x2e\x3f\xd3\x96\xcf\x3d\x8f\xdd\xfa\xae\xc1\xd9\xf4\x97\x88\xa3\x05\x97\xbc\xd7\x86\x72\x44\x38\x16\xdc\x5f\xff\x2a\xfd\x35\x65\x4b\x5a\xe4\xfd\x28\x47\xd9\x4a\x4b\xd5\xfb\x19\xa5\x9b\xa8\x7f\x81\xf8\x35\x42\xa4\xbf\x49\x05\x29\xa9\x38\xb5\xef\x86\xe9\x30\xea\xa7\x64\xd9\x5f\x5c\xe1\x6c\xa9\x0a\xa3\x61\x3e\x8c\x46\xfd\xe7\xab\xfe\x0d\x2d\xfa\xd7\x29\xe1\x8d\xaf\x7d\x4e\x05\x47\x66\xf5\x01\xd7\x57\xb5\x8e\x23\xd9\x31\xae\x54\x06\xb0\xbf\xc9\x90\xa0\x7f\x16\x32\x3f\x4a\xff\xef\x95\xe2\xe6\xef\xa2\xb7\xbf\x5b\x1e\xd2\xf9\xb0\x7f\x12\xef\x11\xda\x18\x1f\xdb\x7e\xba\xe2\x88\xed\x9b\x86\x1e\x1f\x73\x35\x6a\x41\x02\xe3\x46\xa0\x2c\xa9\xd5\xe9\x94\x5a\x6f\xbf\x08\x5a\xcc\x64\x8e\x2d\xd7\xca\xe5\x09\x3a\x47\x15\x99\xba\x3f\x1c\xb3\x84\x85\xf1\x0a\xd1\x03\xa6\xd2\xbc\x24\xbe\x95\xea\x6b\x04\x57\x64\xc2\xa1\x06\x57\xf9\x0e\x96\x90\x81\xca\x9d\xd2\x31\xb7\x5a\x74\x30\x38\x31\x20\xf8\x19\x7c\x7e\x3f\xd5\xf4\xea\x40\x43\xaf\xa6\x27\x5f\x38\xa8\xf1\xa7\x9b\xc5\xbc\x4b\xf3\xf7\x35\xe3\x2a\x6d\xe7\x72\xe6\x62\x55\xc7\x52\x48\x82\x83\x63\xd8\x77\xc6\x1e\x72\x6b\xd8\x37\x1c\x5a\x05\xc9\x8c\xcd\x7b\x64\x54\x85\xb4\x4a\xdc\x1f\xdb\xed\xd1\x29\x24\x02\x33\xad\xf0\x65\xa1\xbe\x1f\x8d\x8d\xbe\x00\x93\x3e\x19\x0c\x62\x32\xba\x66\x98\xeb\x6f\xed\x61\xb4\xc8\xe8\x3d\xba\x91\xc1\x79\x4a\x10\xfb\x9e\xa6\x9f\xdf\x88\xcd\xb7\x1f\xf9\x7a\x4f\xa8\xe8\x50\x47\xaf\x4e\x02\xd4\x98\x7a\x4a\x07\x83\x28\x97\x7f\xd4\x3f\x58\x99\xcd\x34\xe4\x53\xa3\x09\xba\x32\xe4\x70\x83\x82\x4e\x86\x66\x38\x19\x77\x49\x65\xca\xa1\x2c\x49\x12\x5b\x7e\x64\xfe\xae\xcc\xc6\xa6\x66\x6e\x13\x3b\x20\xbc\x0a\xbb\x87\x9c\x57\x76\x2d\xbe\x01\x8a\x2c\x51\xc8\x4d\x35\xf1\x9c\x37\xc2\x26\xed\x0d\xca\x8a\x57\x0e\x90\x0a\x7c\x91\x84\x5b\x01\xb0\x0e\x0e\x63\xf3\x5e\xc3\xe7\xc8\xbe\xc8\x6f\xaf\x52\x26\xe8\x6a\x23\x62\xa8\xe6\xa8\x4b\xdc\x39\x2a\x9f\x43\x73\xb9\x76\x5b\x28\xc6\x45\x72\xbb\xd2\xb6\x37\x06\x0f\x6a\xc5\x92\x4a\xbb\x65\xf4\x4c\x02\x57\xdc\x3c\x12\x58\xb3\xb9\x29\x79\xd8\x29\xc5\xd2\xb9\xbb\xfc\x52\x9c\x58\x48\xba\xfa\x8a\x80\x46\x8a\xa2\x57\xd7\x04\x31\x4f\xa0\x07\x20\x4f\xd0\x14\x8d\xa8\xf8\xf2\x9c\x88\x3e\xe4\xa8\x02\xf7\x57\x1b\x68\xf4\x92\xcf\x52\x01\x30\x37\x09\xad\x7b\x06\xeb\x1d\x5d\x11\x50\xc6\x63\x88\x47\xe7\x8b\x0c\xa5\xa4\xd8\xbc\x22\x9a\x4c\x01\x4d\x31\xa2\x91\xef\x3f\xca\xb2\x08\xde\x32\x1d\xd7\x82\x5f\xa1\xbe\xce\x24\x85\x79\x3f\xc3\x1f\x50\xde\xa7\x44\xaa\xfc\x97\xaa\x2b\xb4\xec\x53\xd6\x2f\x08\x43\x64\x89\x18\x5a\x46\x52\x3f\x22\x37\x36\x0c\x49\x5a\x46\x94\x51\x22\xf5\x87\xed\xae\xb5\x1c\x40\x15\x8e\x80\x9f\x11\x79\xc7\x89\x0b\x59\x64\x5e\x39\x33\x57\xe7\x98\xcc\x2c\x91\x9e\x1b\xdd\x8b\xf9\xb6\xdd\xce\xe6\x00\xe6\x32\x18\x09\x2a\xa1\x3a\xeb\xa6\x72\x41\x9a\x6d\x36\x6d\x13\x81\x8e\x1c\x84\x1c\xac\xa7\x31\xde\x5f\x69\x21\xc8\x88\x3e\x25\xda\xae\xc3\x11\x7b\x0b\xcc\x23\xc5\xde\x98\xf4\x53\x49\x7a\x8c\x2a\x37\xec\x2b\xeb\xdd\xa9\xee\xaa\x3c\x07\xef\xae\xf2\x90\x65\x5e\xed\xf2\xca\x30\x06\x86\x5a\x09\x06\xc3\x3e\x70\x14\x63\x1a\xa8\x4e\x32\xab\xa9\x60\x6c\x20\x6c\x27\x6c\x83\x06\x37\x8f\xe8\xb0\xd0\x75\x4e\x19\xbe\xc4\xba\x92\xfe\x51\xf7\x20\xad\x80\xdb\x96\x55\xf2\x55\xa6\x3f\xdb\xdf\xd0\xa3\x8b\x2b\x56\xdf\x16\x95\x2d\xc6\x43\xae\x59\xf2\x2e\x8b\xe4\xc0\x2d\x9b\x58\x97\xdc\x03\x11\xa5\xe3\x29\xae\xa3\x6b\xec\x06\x67\x0f\x19\x6a\x14\x29\xf8\xa0\x90\xb9\xa7\xe6\x85\xa0\x5f\x7d\x52\xf7\x4d\x76\x85\x68\xf6\x3a\x4c\x77\x5c\x15\x71\x4d\x10\x00\x13\x04\xb5\xcb\x4d\x68\x47\x42\x00\x20\x29\x50\x1c\x86\x03\x89\xd4\xfc\x22\x07\x1e\x95\x4d\x25\xaf\xac\x38\x02\xc6\x95\x61\x01\x83\x07\x60\x3e\x60\x3b\x21\x41\x98\x14\x54\x06\x6e\x93\x24\x91\x82\x7a\x20\x23\x5f\xd5\xb3\xad\x71\x79\x15\x1b\x50\x33\x82\x63\x95\x42\x83\x02\x48\xcb\x12\x66\x09\x1e\x3d\x7f\xf9\x97\x57\x7f\x7e\x0a\x17\x01\x1b\x67\x25\x65\x52\xd3\x0e\x3f\x28\x25\xcc\xfa\x98\xf4\x8b\x69\x98\x7a\x13\x24\x8d\x26\x48\x17\xd0\x0f\x7f\xea\xd2\x86\xe2\xb7\xa1\x05\x25\xe5\x3a\x29\x66\xd9\x3c\x59\xc0\x02\x00\xb8\x49\x6a\x64\xac\xb6\x79\xb7\xa4\xda\xda\x27\x99\xf1\x2a\x66\xc0\xf7\x78\x62\xae\x6b\x93\x89\x74\x30\x4b\xe7\xb0\x48\x04\xed\x2c\x9e\xbd\x73\x87\x40\xd7\x02\x53\x76\x1e\x0d\x6f\x86\xc3\x1e\x9f\x15\xf3\xe4\x43\xac\xba\x87\x28\xe6\x30\x97\xe0\x0d\x0b\xd7\x61\xe5\x83\xd1\xe1\x84\x2d\x8a\x49\x65\x30\x8c\x40\x8f\x4d\x9b\x4a\xa6\x57\x64\x61\xa2\x5f\x68\x4b\xf4\x59\xa5\x76\x22\x90\xdb\x4b\xa1\x28\xc7\x2a\x55\xa2\xb4\x12\x54\x96\xdb\xd5\xc1\x00\x30\x21\x55\x7c\x06\xe2\x59\x23\xd7\xf6\x73\xe3\x3b\x0a\xa4\x9e\xa3\x00\xae\x39\x0a\x6c\x1c\x47\x81\xdb\x1c\x71\xcf\x8f\xdb\x6a\x5a\xc4\x64\xde\x0a\x32\xe4\xad\xa8\xa1\x35\x55\x7e\xe1\x2e\xc7\xd9\xa0\x6f\xb4\x51\x83\x35\xbd\xaf\xeb\xba\xde\x77\x57\xa8\x2f\xf8\x26\xba\xea\xfb\x1d\xc5\xc0\x2a\x7a\xd3\x7e\xbe\x41\x0b\xc1\xc4\x69\xfe\xdc\xb0\x74\x82\xf5\x5e\xa2\x0d\x43\x8b\x54\x4a\x2b\xc8\xb2\x7f\x4d\xc9\x77\xfb\xd4\xb9\x79\x50\x9f\x3b\xea\xbf\x56\x22\x04\x35\xd8\x8d\x7e\x69\x9d\xc1\x48\xce\x51\xba\x84\x7d\x34\xba\x1c\xf5\xff\x1e\x0d\xf9\x30\x9a\xc8\x3a\xf1\x68\x34\x02\x26\x2c\x40\x0c\x6a\xe1\xc7\x62\xf3\x46\xf8\xc5\xc3\x08\xfc\x3d\x02\x70\xad\x95\x1c\xe9\x72\xf9\x02\xe7\x1c\x11\xc4\xa0\x26\x5d\xa5\xf7\xbc\x34\x3e\x81\x1c\xda\xf8\x2b\xf0\xe8\x74\x67\x2b\x85\x50\x9e\x7a\x6d\x1d\xaa\xac\xd6\xfa\x95\x4e\x21\x6b\x5a\x5b\xe2\xd6\x1f\x72\x0c\x4a\xe8\xea\x73\x7d\xb4\x53\x4d\x34\xa9\xfd\x16\xe4\x52\x7d\x31\x5e\x30\xb9\xda\x3a\x6b\xd0\x65\x4c\x69\x5f\xb5\x0e\x5d\x5f\x6d\x12\x2c\xad\xa6\x51\xff\xd2\x98\x4c\x63\xfb\x1a\x53\xb2\xe4\xff\x97\xe4\x71\xcc\x20\x09\xd7\xa3\x06\xe8\x85\x06\x0d\xf9\x88\x34\xc1\x5a\x01\xb1\x21\x4f\x24\xd1\x2d\x38\xeb\x1c\x71\x41\x83\x63\x9e\x1b\xd2\xfc\x03\x4e\xfb\xdf\xf9\x6f\xc2\x77\xa3\xfe\x5b\x84\xec\x15\xc3\x92\x68\x57\xd6\x15\x2b\xca\xfa\x4b\xc4\x53\x9c\xe5\xa3\x48\xb2\x55\x7b\x10\x50\xc8\x53\x49\xca\xbd\x6e\x92\x71\x07\x01\x92\x27\xef\xf9\x92\x81\x12\xea\x4e\x10\x19\x4e\x73\x27\xb1\xa3\xfa\xfc\x93\x98\x87\x25\x5d\x5a\xbd\x1b\x2e\xb9\xef\x6e\x36\x76\x9c\xc5\xc2\x55\x8d\x83\xa3\xac\xf9\x7c\x99\x85\x3c\x21\x2a\xef\x35\xd3\x59\xc0\xf8\xff\xc8\x3e\x61\xae\xf0\x78\x30\xf0\xca\x8d\x0b\x5b\xd9\xee\x76\xd1\x69\xb0\x7e\x70\x30\xc7\xb7\x21\x34\xe8\x34\x52\xce\xca\xd1\x24\xc2\xcb\x0c\x45\x25\xa8\x51\xe4\x9a\xd9\x56\x64\x99\xfc\x41\x24\xa1\xae\xbc\x78\x1c\x7d\x0e\x74\xc0\x65\xc2\x6b\xae\xc3\x59\x9a\x73\xd9\xa6\xa2\xac\x5c\x97\x6c\xe0\x05\xb7\x68\xd6\xf3\x3b\xaa\x02\x65\x34\x6b\x56\x21\x06\x40\x3d\x3e\x46\x60\xf8\xca\x58\x17\xf8\x91\x33\x9a\x75\xad\x3b\x32\xf0\x22\x6a\x34\x2b\x1a\x67\x63\xe0\x07\xda\x08\xf4\x68\x6c\xf4\x40\x3d\x00\x47\xb3\xae\xe3\x7f\x0c\xfc\xd0\x1c\x7e\xdd\x5a\xec\x84\xea\x0c\x26\x63\x68\x01\x7b\x32\x86\x95\x27\xf1\x64\xbc\x33\x82\x06\xda\x6e\x6f\x4b\xc8\x12\x3e\x52\x72\x04\xa9\xeb\x67\x28\x47\x5c\x9b\xea\x25\x6c\xbb\x35\xae\x11\x8f\xb2\x56\xef\x08\x81\xe6\xf8\x15\x92\x01\x34\xa3\x06\x95\x5d\x35\x67\x00\x12\x6b\xb0\x6b\x87\x89\x81\x09\x81\xd3\xd1\x8e\xdf\x63\x3f\x0d\x35\xa5\x69\x7f\xa3\x96\xac\x07\x71\x12\xa0\x5f\xf1\xa9\x0a\xee\xab\x29\x34\xcc\xf7\x73\x64\x7c\xdc\x31\xca\x55\x04\x97\x5d\x71\x5a\xea\x91\x5c\x42\xd1\x5e\xbe\x4e\x2c\x17\xe9\x9b\xbe\x1b\xd9\x5f\xa7\x98\x1f\xaf\x28\xfb\x0c\x9e\xa9\x96\x52\x66\x95\xf4\xd9\x15\xbc\xbc\x41\x2b\x24\x3a\x33\x32\x67\xb1\xb7\xfd\xab\x34\x57\x04\x24\x22\x7d\x4c\x30\xc7\x69\x86\x73\xb4\xec\x1f\xf7\xa5\xa8\x2e\x06\x5e\x0d\xed\x7f\x63\xf8\xc3\x23\xbe\xdd\x1a\xa9\xdd\x91\x11\xd0\x72\x57\x6c\x5b\x95\x4e\xd1\x84\x97\xf5\xb8\x45\x9e\x7e\xdf\xed\x41\x6c\xe6\x51\x92\xf0\xb0\xb4\x5c\x52\xea\x02\xf2\x19\xca\xa5\xbd\xe2\xba\xc8\x79\x1f\x61\x7e\x85\x98\xa0\x85\x45\xeb\x3e\x65\x8e\xf8\x1c\x4a\x22\x20\x1a\x9a\x11\x80\x8a\xec\xa5\xde\x6a\x93\xe1\x5d\xbf\x6f\x52\x55\xee\x70\x12\x8e\x9c\x79\xa2\xdf\x4f\xe4\x31\x8c\xa7\x2e\x83\x58\x67\x1e\x05\xa9\xc0\x07\x03\xa3\x75\x52\xb0\xac\xba\x7e\xb5\x9a\x06\x4b\x95\xe5\x16\x1a\x9d\x9f\xcb\x59\x9c\x9f\x27\x1c\x94\xdf\x9c\x83\xbc\x80\xdc\x67\x94\x49\x44\x17\x88\xe5\x2e\x67\x91\xcb\xf0\xda\xb6\xae\xa4\x32\xc3\x49\x03\x44\xed\x42\x9b\xd3\xd9\xfa\x96\x0d\xac\xdb\x22\x3a\x8d\x32\x5d\x56\x6a\x4f\xf4\xdf\x9c\xe6\xa8\xce\x93\x73\x2f\x18\x29\x1b\x0c\x50\xec\x82\xa3\x42\xdb\x48\x26\x13\x87\xbc\x2c\x63\x00\xd3\x96\x45\xbb\x8e\xf5\xc6\x9e\x21\x46\x70\x76\xfb\x1e\xdd\x4c\x94\x47\x92\xf6\x9f\xad\xcb\x73\xf5\xfd\x8e\xb5\x60\xd7\x9a\x4d\xbc\xa3\x3a\x76\xab\x92\x85\x03\x15\xf8\xd4\x66\xa9\x70\x19\xf9\x39\x80\x48\x4c\xae\x16\x69\xc7\xd7\x61\xa9\xe9\xe5\x86\x16\x55\x72\x7d\x18\xe7\x15\xe8\x6f\xb7\x7a\x07\x2f\xfd\x2b\x22\xc6\xb6\x0e\xe1\x00\x54\x19\x33\xac\x07\x43\x82\x20\x2f\x6d\x5c\xb9\x1c\xa6\x00\xd2\x38\xd7\xab\x6f\x98\x82\xd4\x37\x42\xda\x83\x04\xac\x6d\xe5\x83\x64\xc7\xf0\x5d\x23\xf6\x98\x77\x68\x13\x0c\xb9\x35\xb9\xd8\x9a\xa2\x75\x6b\xe4\x05\xf7\x36\x87\x7c\x86\xcd\x21\x9a\x5d\x49\x04\xf8\x59\x26\x34\xe1\x90\x7c\xe2\x3e\x55\x42\x24\x88\x5d\x58\x2c\x21\x4d\x8e\x4e\x5d\xf8\x24\xe0\x96\x8a\x3b\x83\x63\x1d\x3a\x72\xe7\x86\x81\x50\xd6\x06\x83\xc2\xc5\x41\x50\xad\xca\x5f\x2a\xa9\xa6\x11\x0d\x4c\xe3\x5d\x5f\x6b\x4c\xb8\x58\xb0\x37\x6b\xb3\x4d\x23\x86\xd6\xf4\x03\xf2\xdb\x12\xaf\x61\x69\x2c\x08\x75\x0b\x4a\x50\xa0\x77\xa7\x6f\xba\xdd\xda\xee\xe9\x6a\xd5\xe8\xae\x02\x8e\x6c\x27\x70\x84\x2d\xb7\x3a\xda\x44\xfc\x48\x69\x86\x52\xd2\xf3\x21\x8c\x7e\x06\x08\xa3\x15\x84\x51\x81\xe0\x12\x0e\xe9\x68\xc3\xd0\x12\x2f\x52\x6e\xfd\xa8\x42\x5a\x64\x32\x25\x41\x1d\x70\x92\x24\xa4\x84\xf4\x0b\x01\xa8\x92\xf1\x57\xa6\x47\xe6\x6c\x14\x7a\x96\xba\x2b\xd2\x9c\x7f\x8c\x81\x0d\x02\xbe\x0f\x86\x31\x80\x47\xe3\x52\x2a\xc1\x70\x6c\x9b\xd5\xc0\xd3\x08\xa5\x14\xec\xc8\x87\x41\x6a\x51\x3d\xd0\xa9\x81\xa5\x6d\x43\xdc\x06\xa5\x05\xa0\x9d\x64\xa7\x49\xf5\xa2\xb8\x81\x63\x19\x9f\x7d\x8f\xa1\x8a\x09\x5c\xfc\xb9\x83\xa3\xa8\x29\xa8\x88\xc5\x09\x31\x11\x3d\x04\x03\xf3\x5d\x35\xbb\xef\xfa\x1c\xad\x37\x59\xca\x51\x5f\xcd\x43\xb2\x3e\xca\x8a\x73\x19\xd5\xa2\x3f\x69\x2b\xeb\xd9\xd8\x88\x98\x8e\x88\xb8\x75\x96\xf3\x51\x31\x66\x1a\x71\x92\x81\xf1\xe5\x52\xdb\xe1\xca\x10\x67\xc4\x2a\x77\x59\x39\x77\x6d\x81\x14\xe8\xa8\x7e\x46\x6a\x6a\x31\xe9\xb6\xf7\x56\xd8\xf8\x39\x36\xde\xa3\xfd\x99\x97\x4f\x27\xb4\x50\x3b\x76\xf5\x97\x68\x76\x17\x32\x50\x77\xa0\x0f\x90\xc1\xdd\x7b\xc3\x40\x09\x7a\xfb\xf7\xa6\x1e\x41\xfc\xcb\xa4\x63\x0a\x4d\xb0\xc1\x97\x43\x96\xc4\x02\x9f\xf9\xc6\x36\x1c\x4c\xf9\xc4\x31\x93\xe1\x00\x40\xa2\x22\x6a\xe3\x40\x44\x6d\xa2\xd5\x84\x56\xe5\xf1\xaf\x33\x86\xdd\xc3\x90\xee\x48\x4f\xd7\x3d\x4e\x58\x65\xfd\xf6\x29\x26\x6f\x3a\x64\xd9\xa1\x49\x36\x76\x73\xd9\x9f\x18\xb5\xcc\xa4\xf3\xff\x74\x20\x5c\x51\x86\x3e\x20\x96\x34\x99\x9d\x1a\xbb\x54\xe3\xb4\xd0\x88\x2b\xc7\xa4\x2a\x5f\x87\xce\xde\x51\x05\x79\x6a\x4d\xe1\xa1\x43\x7c\x06\xa2\x3e\x65\xa1\x8c\x0f\x0a\x79\x3c\x23\xa3\x25\xce\x37\x59\x7a\xa3\xc8\xea\x61\xd4\x8f\x65\x80\xc5\x08\x32\xa9\xad\xf3\x74\xda\xba\x89\xa7\xcd\xae\x29\x9b\x6b\x56\x0c\x3b\x4c\x18\xe2\x31\xcc\x1b\x51\xc4\x81\x36\xd5\x81\xb8\x8a\x2c\x56\x97\xa5\x22\xab\x1b\xdf\xa1\x18\x6f\x6a\xc5\x65\xbe\x88\xda\xe2\x13\x04\xc3\x5c\x3a\xd7\xcb\x37\x07\x57\x31\x69\x82\x31\xd3\x5b\xad\x62\xc3\x75\xdc\x6f\x67\x41\xdf\xe2\x9e\x1e\xb8\x3b\xb8\x19\xf8\xcd\xdf\x22\xf9\xd8\x17\x1a\x0d\x9f\xe7\x88\x3f\xce\xd2\x3c\xc7\x8b\x27\x68\x41\xb5\x6b\xa8\xf3\x4d\x0b\x22\xed\xc7\xea\xcd\xcb\xaa\x6d\xb5\x65\x3c\x76\xb9\x68\x4b\x14\xcb\x69\x4a\xad\xaf\xfa\x43\xb9\x40\xd5\x44\x9d\x08\xf8\xba\x6e\x87\xad\x35\xcb\x2f\x62\x2e\x56\xa0\xee\x16\x15\xff\xf7\x73\xa2\x50\xe7\x87\x17\x7f\x8d\x54\x7f\x9b\xac\x27\x32\x04\xeb\x95\xc9\x94\x42\xe5\x3f\xb0\xba\xe6\xdc\xfc\x55\x97\xb9\xa4\xde\xcf\xba\x94\x25\xf5\x7e\x06\x64\x2a\x69\xbd\xc4\x41\x4a\xdc\xfc\xb5\xe7\xad\x50\xf2\xc2\x5f\xc5\x93\xdd\xf8\xbc\xe7\x11\xf9\x42\x6f\xfa\xad\xd4\x99\x04\x86\x83\xd5\x6c\x5d\x71\xc7\x9e\xc4\x26\xfa\xa5\xeb\x44\x89\x38\xb0\xe7\x8b\xa9\x78\x1f\x93\x3e\x6a\x31\x43\x11\x55\xf5\x52\xd8\x41\x66\x28\xe2\xbd\x17\xf4\x56\x59\x97\xfb\x72\xe3\xdf\x9c\x68\x1d\xb7\x0a\xb5\xc3\xef\x42\xdd\xe1\xfc\xa9\x0a\x69\xaf\xda\x86\xe4\x7c\x68\x30\x08\x3a\x69\x09\x66\x38\x68\xc1\x8b\x04\xe7\xbb\xdd\x06\xbf\xd4\x79\xf5\x96\x0e\x02\x9c\xb9\x94\x1b\x3e\x32\x37\x55\x12\xa2\x0d\x0b\xce\x86\x1c\xb1\x93\x13\xd4\xf7\x53\x72\xfc\xbd\x72\x82\xfa\xde\x73\x82\xfa\xbe\xe6\x04\x25\x05\xee\xa3\x6b\x9c\x65\xc6\x62\x54\x6d\x51\xf3\xc3\xc8\x58\xf6\x48\xee\x31\xcf\x51\x7e\x6e\x2c\x43\x59\x7e\x7e\x6e\xd3\x47\xb9\x6d\x60\x9e\xcc\xe6\x3d\xaf\x28\x09\x68\xe4\x15\xc1\x68\xc3\x9d\xf0\x87\x4c\x92\x88\xf9\x8c\xcf\x63\xd0\x4b\x43\xb2\x3a\x78\xc8\xdc\x92\xbc\x3c\xa4\xba\x8a\x0d\xe1\x6a\x74\x66\xac\x8a\x43\x88\x81\xca\x26\x65\x70\x5d\xf3\x9d\xd4\x28\x98\xa9\x40\x46\xeb\x7a\x0e\xa9\xaa\x67\x06\x6e\x0d\x45\xcf\x0a\x32\xca\x64\x08\x16\x26\x1d\x1f\x7b\x95\xdf\xb6\x97\xd7\x28\xe8\x57\xaf\xed\xd3\x38\x28\x21\x13\x53\x33\x0e\xa5\x49\x21\x31\xf4\x75\x9b\xa8\xbb\xd0\xa2\x6e\x96\x5e\xbf\x0b\xac\xc6\xa0\x82\xf8\xb6\x84\x14\xba\xc2\xde\x9a\x74\x22\xec\x79\xce\x1d\x39\x43\x0a\xc9\x48\x47\x48\x12\x23\x82\x40\xdc\xcd\x6b\x4c\x96\xf4\x7a\x24\xe0\x9f\x3d\x27\x1c\xb1\x0f\x69\x16\x63\xa9\x8d\x82\x28\x20\xce\x0d\x6c\x7c\x20\xd9\x95\x7d\xfa\x4d\xea\x28\x7f\x3b\xd1\x8c\xce\xe3\xdb\x80\x8f\xbb\x7a\x89\x93\x24\xdd\x6e\x59\x92\xe4\x53\x6e\x43\x69\x11\x30\xe1\x26\x54\x0c\x01\x65\x09\xc7\x00\xda\xee\x4b\xc8\x1c\x4b\x32\xdd\x24\x69\x78\x9a\xba\xb1\xbd\xfc\x40\x5d\x48\x26\x70\x71\x4d\x34\x12\xcf\xf7\x67\xbb\xad\xb1\x61\xa4\xc8\xb2\x24\x41\xbb\xd5\x28\x94\x7c\x40\x8c\xf7\x0b\xa2\xf0\xa8\xb4\xe4\x96\x0a\x27\x4e\xb5\x69\x49\x04\x7a\x46\xa7\x14\xa3\x2a\xc2\x39\x4f\x4e\xcf\xf8\xc3\x3a\xa2\x91\xb7\xb3\xee\xe3\x24\x58\x39\x3d\x9f\xa3\xa4\xb2\x18\x24\xe2\x21\x61\x40\x2f\xa2\xda\x9b\xab\x34\x7f\x75\x4d\x2c\x91\x25\x05\x73\x62\xd3\x07\x83\x18\xcd\xc8\x3c\x61\x33\x32\xb7\x2a\x00\x24\x36\x45\x19\x56\x26\xd1\xb9\x76\x85\x3d\x57\x0e\x12\xe7\xe7\x91\x93\xd5\x6e\xa6\x1f\xc4\xcb\x0c\xaf\xd7\x88\x59\xee\x5c\x59\xfe\xd9\x47\x9d\xd1\x82\x63\x72\x79\x7c\xc5\xd7\xd9\x45\xca\xf2\x93\xf7\xe8\xe6\x9a\xb2\x65\x7e\xb2\x50\x02\x87\xe3\x70\x83\xd6\x7a\x73\x1d\x11\x96\x98\x2d\xc2\x02\xe1\xae\x62\x32\xc3\x73\x6c\xc2\x3c\x9e\x9f\x67\x34\x5d\xca\xd3\xbe\xc4\x39\x67\x37\xe0\xd6\x2e\xab\x51\x43\x66\x86\x95\xed\x81\xae\xa3\x62\x08\x94\x26\x7a\x71\x4d\x88\x28\x4d\x2f\x17\xe7\xb6\xf4\xfc\x3c\x82\x02\x1d\x37\x05\x7c\x49\x44\xd0\x47\x1e\xc1\x3c\x89\x51\xdd\x47\x33\x89\x24\x20\x45\x10\x35\x7c\xf6\x13\x93\x9d\x10\xf4\x50\xc3\x59\x33\xd1\xb2\x27\xd1\xf0\xdc\xd0\xbd\x96\x6e\x53\x8b\xab\x17\xf7\x1c\xe2\xad\x86\x63\xc0\xad\x1b\x20\xbd\xb0\x17\x47\x3e\xf4\x09\x0a\x11\x40\x9b\x9b\x13\xf1\xbf\x30\x09\xa7\x3f\x8a\x7d\xf9\x1a\x29\xe9\x55\x9a\xa8\x4a\xcd\x9c\x68\xb2\x3c\x49\x12\x34\x8d\xec\x35\x8c\x26\x2c\x46\x00\x6c\xb7\xea\x12\xdb\x70\x2d\x7d\x24\x9f\xdf\xba\x84\x45\x70\x00\xc6\x01\x44\xb9\x7f\x8a\xd6\x56\xaa\x2b\x16\x18\x93\x06\x6a\xed\xa3\x58\x8b\x00\xda\x27\x45\x6a\x93\x22\xce\xa4\x88\x19\x81\xe8\xc4\x80\xfa\x79\x2b\x8c\xe1\xb0\xca\xad\x16\x17\x09\xb5\xc9\xf2\x09\x00\x3f\x24\x63\x60\x43\x3b\x17\x12\x35\xf8\xeb\x21\x40\xce\x27\x4f\x88\x16\x3d\x01\x88\x25\xd6\x28\x2a\x4a\xe0\xf8\xb8\xf8\x21\x19\x9f\x81\x7c\x56\xcc\x13\x14\x8b\x7f\xf4\x52\x4a\x94\xe5\xa8\x8f\x57\x71\x63\x4b\x08\x00\xa2\x4f\xb9\x1b\xaa\x6e\xcf\xd4\x25\xae\xea\xf9\x49\xca\x91\xa8\x89\xae\xe5\x9f\xb1\x0c\x55\x2f\x9e\xb1\x18\xa8\x16\xb7\x79\x72\xab\xf8\x3d\x9b\x4d\x54\x4c\x4f\x1a\x68\x93\x6e\x08\x8d\xc0\x0c\x0c\x06\xd1\xf9\xb9\xd8\xee\x6c\x94\x17\x17\x2a\x2f\x7c\x3c\x86\x0f\x04\xa6\xcb\x67\xd9\x3c\xc1\x53\x71\xcd\x33\xb3\xb2\x89\xf8\x1b\x94\x58\xc6\xf4\x97\x94\x08\x91\x61\x8a\xc4\x5f\x8e\xda\x22\x2f\x05\x9c\x41\x32\x9d\xcd\xb5\xe1\x95\xf9\x0b\xd8\x18\xd3\xbf\x17\xc7\xb7\xf6\xdb\x2e\x2f\xf4\x57\x12\xba\xfa\x06\x85\x62\xf4\xf6\xec\x89\x9b\x9d\x52\x49\x8b\xaa\x3a\xe0\xa7\x4f\x4f\x77\xd7\xda\x40\xcd\xe1\xd6\x67\xe0\x2e\x51\x30\x8a\xb0\xd9\x8b\x72\x57\x87\x8f\xed\x89\x74\xea\x94\x39\x9d\x36\xf6\x70\x99\xf2\xf4\x78\x4d\x97\x28\x3b\x5e\xb1\xf4\x52\x92\x18\x27\xa9\xc0\x1c\x27\xe6\x77\x68\x73\x77\x34\x93\xe6\x93\x32\xf4\xe6\xae\xba\x55\xe7\xbb\x6a\x09\x1e\xfb\xc4\x20\x93\x63\xba\x3a\x16\xb0\x7a\x68\xc6\x08\x95\xa2\x49\x3d\xe7\x5e\x90\x02\xe9\x40\x13\x55\xe9\x5b\x75\x84\x81\x9c\x53\x86\x22\x00\xf3\x5a\x48\x03\x31\x34\x80\x45\xad\x8f\x8d\x72\x75\x00\x30\xf3\x3f\x10\x6d\x8f\x69\x70\x9a\x15\xf7\x7b\x39\x69\x09\x5c\x19\x0e\xc3\x1b\x46\xe0\xf1\x78\x0c\xd9\x08\xe7\xcf\xf4\x6e\x00\x89\xca\x17\x5a\x11\x76\x95\xa8\xcf\x82\x82\x27\x69\xf6\x93\xd8\xb8\x67\x94\x81\x78\x01\x04\x07\xb0\xa0\x6c\xf9\x24\xe5\x69\xe5\x16\x09\x7a\x57\xdb\xad\x6c\x93\x23\x6e\xfa\x94\x9f\x40\xbc\x80\x14\x66\x0a\xd7\xc7\x8b\x84\xcf\x56\x73\x30\xc5\xd3\x7a\x65\xd1\x9f\xa8\x4b\x40\x15\x47\xc9\x31\xbe\x93\x1f\x16\x6a\x5a\xea\xf6\x56\x33\x4f\x61\x2e\x86\x80\x05\xac\x1e\xce\x45\x79\xb8\x52\x49\x6b\xa3\x9b\xa9\x5b\xb9\x75\xc4\xd5\x07\xa2\x4d\x07\x09\x65\x6b\x29\xd8\x11\x93\x0f\x21\x54\xad\xe8\x6e\xc4\x66\xa4\x84\x23\x95\xf9\x4a\x59\xfc\x9f\xab\x25\xbd\x25\xe9\x26\xbf\xa2\xad\x11\xc0\x5b\xf3\x23\xd7\xda\xc7\x2a\xec\xa5\xcc\x56\xf3\x58\xc6\x49\x58\x3e\xe2\x9c\xe1\x8b\x82\xfb\xd6\xf4\xc1\x5e\xd1\xa8\xa5\xa5\xee\x36\x5d\xa6\x1b\x8e\xd8\x13\xbc\x7c\x4c\xd7\x6b\xcc\x03\x41\x5f\xf7\x66\x81\x6b\x24\x1f\x56\x91\xde\x46\x8d\xce\x63\x34\x18\xa0\x19\x9b\xd7\x87\x56\x61\xf5\x3f\xcb\xc8\xb5\x71\x15\xd7\x85\xe4\x80\x57\x69\xfe\x04\x33\x7e\xe3\xec\x5e\xdd\x72\xfb\xdf\x51\xba\xb8\x1a\x35\x2b\x46\x30\xd2\x82\xf2\x34\xd3\x01\x87\xdb\x2c\x59\x77\xcc\xd9\x46\x7a\x7f\x44\x6e\xe2\x28\x30\x8a\xc0\xb9\x8c\x2a\xf3\x80\x1d\x67\xbc\x7f\x5f\x14\x3b\x16\x47\xcd\xce\x22\x50\xc2\x1c\xb1\xa6\x08\xd3\x0b\xaa\xa8\x9b\xdb\x8a\xa2\x15\x43\x9b\x2c\x5d\xa0\xc7\x0a\xdc\x1b\x81\xfd\x14\xb3\xd7\x7e\x39\x68\xa2\xef\x8f\x21\x2e\x11\x44\x43\x0e\x20\x73\xd4\x9b\x7a\x08\xd9\x25\x05\x25\x4c\x97\x4b\x83\x18\x5a\x73\x69\x4a\xc3\x07\xcd\x24\x8b\x49\xae\xe9\x07\xb4\xb7\x91\x31\x7e\xb0\xed\x7c\x2c\x14\xb0\xab\xae\x2f\xcc\x3c\x08\x5e\xec\xa4\xea\x41\x68\xee\x84\x7e\x13\x70\x52\x47\x79\x31\x71\xa4\x2f\xca\x1f\xb1\xc8\xaf\xf4\xdc\x30\x28\xa1\x23\x26\xbb\x03\x28\x04\x33\x83\x8f\xb4\x70\x4d\x1a\x78\xb8\xce\xc1\x1a\xbc\xf7\xb7\x2a\x4b\xe0\xf8\x77\xd0\x43\x88\x85\xea\xd5\x0f\x53\x62\xbb\xdf\x79\xd9\xba\x6e\xc7\xf0\xc9\x24\x59\xcf\x05\x5f\xc9\x0d\xbd\x66\xf4\xe3\x8d\xf5\xea\x1f\x19\x42\x0a\xde\x2a\x5f\xda\xca\xb3\xe2\x53\xf2\x67\x9e\x6f\x10\x59\x62\x72\x29\x9e\x1c\xc3\xc5\x35\xc2\x98\xd7\x10\xcf\x6c\x2e\xe0\x55\xdf\xc2\xbd\xe6\xf5\x7a\x45\xf2\xa0\x25\x81\xbc\xe3\x35\xe2\x92\x45\x93\x08\x82\x17\x9b\xc6\x33\x68\xc3\x2f\x38\x93\x3e\x12\x2c\xf2\x6d\x73\x2d\xa8\xe7\xc6\x56\xf3\x9e\x56\xed\x45\xb7\x4e\xdf\x23\x6b\xa8\x10\x08\x41\x66\x31\x47\x23\x31\x42\x7d\x43\x04\x12\xb1\xa8\x63\xec\xbc\xcf\x0c\x46\x8a\x6b\x8d\x80\x4d\x00\x1a\xd8\xf1\xb2\xec\xf0\xf8\xa3\xce\xef\x3a\xa7\x6a\x59\xdd\x1e\xed\x7d\x4f\xb0\x0e\x41\x68\x4f\x24\x46\xa0\x11\x9a\xb2\xb1\x21\xde\x34\x76\x3e\xb5\x62\x02\x1d\xde\xc5\xd9\xbc\xd3\x0b\x38\x3e\x4a\x1c\x4f\xb0\x94\x69\x33\x46\x3b\x95\x06\xed\x54\xeb\x12\x74\x7c\x00\x73\xc4\x75\xa0\x90\x78\x7f\x8f\xfb\x9f\x3b\xe7\xc4\x24\x86\xd2\x4f\x9c\x38\x10\x79\x74\x07\x5d\xec\x5e\x2d\xd2\x48\xed\xbd\x68\xbe\x24\x8a\xfa\xef\x05\xd2\xca\x34\xc8\x03\x45\x67\x1b\x5c\xf8\x04\x2f\x65\x0d\x20\x31\xa0\x34\xa1\x9c\xd4\x2b\xbc\x41\x39\xe2\x40\x5b\xc4\x9b\xb0\x0c\x4f\x05\x52\xcb\x71\xc8\x33\x55\xcd\x33\x8e\x86\xc1\xf9\x8f\xf0\x32\x02\xc3\x08\x44\x3e\xf6\x27\x1d\xb1\xbf\x43\x4e\xdd\x05\xf3\x1f\xc2\x33\xd6\xd9\xd2\x0e\x2f\xca\x57\xe4\x41\x8d\xf0\xef\x93\xad\x7f\x5c\xde\x2c\x41\x23\xb9\xea\xa4\x2a\x7f\x54\xfb\x6d\x18\x4c\x25\x35\xfc\xdd\x08\xa3\x3c\xb1\xb4\x4b\x8d\x46\xc7\xeb\xd5\x71\x34\x44\x67\x31\x1f\x0c\x62\x32\x4c\xa2\x3f\x44\x92\xe6\x1c\x0c\xd8\x68\x43\xb3\x9b\x35\x65\x9b\x2b\xbc\x00\xd5\xd7\x98\x8d\x44\xbf\x7f\x46\x37\xdb\xad\xa6\xd9\x2a\x02\xb5\x74\x8d\x45\x8c\x38\x41\x59\xff\x2a\xb6\x12\x41\x9c\xdb\x0b\x3b\x39\x1a\xc3\x8a\x27\x17\xbf\x0c\xc3\xc9\x13\xbe\xdd\xde\x96\xd6\x0e\xa4\x86\x6e\x6f\x3d\xe1\x8c\x25\x41\xe3\x31\xa4\x01\x2e\x5e\x5e\x7c\x68\x2c\xfb\x47\x92\x02\x85\xda\x61\xa3\x52\xb6\xb9\x8c\xbe\xc3\xa8\x4b\xc9\xb8\x7c\xf0\x03\x21\xb4\xf1\xee\x21\xd3\x9d\x43\xa6\x89\x0e\x62\x8d\x60\x2a\x5e\x5f\xbc\x63\x0a\xa9\x20\x27\x47\x6b\xc4\x53\x41\xf0\xda\x4d\x5e\x28\x91\x8c\x05\x22\xb5\xe9\xce\x3c\x31\xb4\xc1\x2e\x5a\x66\x8a\xa5\x7f\x44\x9c\x8b\x39\xc0\x48\xde\x0f\x29\x7f\xc9\xeb\x92\x0f\x3b\x9b\x54\xcb\xd9\xad\x8d\x8e\x2b\xa1\xb6\xf2\xb1\xc1\xe0\x28\x9b\x66\x49\x31\x29\x06\x83\xe2\x28\x49\xb2\x69\x9c\x6d\xb7\x71\x96\x90\x58\x4c\x0a\x40\x7f\x80\x73\x81\x2e\x66\xe9\x3c\xc9\x60\xe6\xbc\xe5\x05\x00\x93\x2c\x29\x60\x56\xd6\x51\xc4\xbe\x75\x55\xfb\xac\x60\xc7\x88\xf0\x53\x30\x8d\xd9\x76\x1b\xb3\x44\x9d\x23\x50\x72\x19\xf3\x5a\xa6\x00\x4c\xb4\x12\x21\x1d\x0c\x62\x95\xfb\x21\x3c\x59\x3e\x3f\x4a\x12\xb6\xdd\x32\x37\xa8\x26\x6b\x7f\x97\x70\xcb\xbb\xc4\xe4\xa3\x84\x5b\x1e\x25\xc8\x4a\xe7\xc0\x57\x31\x32\x69\xd2\x8d\x40\x52\x1a\xbd\x34\xa7\x37\x0d\x94\xcd\xd8\xbc\x25\xfc\x4e\xa5\x16\x09\x20\x21\x7b\xa6\x52\x41\x0f\x04\x83\xe6\x16\xc4\x95\xb2\x22\x72\xcb\x23\xa9\x44\xad\xd7\x56\x6a\x0a\x51\x57\xc1\xda\x91\xab\xad\x11\x50\x85\x93\xd9\xbc\x6c\x75\x47\xf1\x3b\x9b\xe2\x89\xb4\xbd\x96\x54\x79\x8c\xa5\x74\x29\x1e\xcb\xfd\x29\x1d\xa4\xee\x5f\x5c\x7b\x57\x8a\x38\xaa\x5e\x2d\x04\x35\xce\x01\xee\x0d\x62\x95\xbc\x33\x6d\x83\x34\x22\x9d\xaf\xe2\x14\x62\x71\x83\x8c\x6a\x1a\x16\x49\xda\x7a\x85\xb0\xf5\xec\x2c\x06\x03\xd5\xad\x23\x9a\xcc\xc1\xb4\x48\xf2\x49\x3e\x18\xe4\x47\x49\x52\x4c\x8b\x69\x9c\x06\x0e\x13\xcf\x93\x02\xca\xc6\x0d\xb9\x62\x01\x73\x00\x26\x71\xa1\xa6\x5c\x17\x20\x32\x88\xe4\x0b\xcb\xa1\xc0\x51\x2d\x3d\x83\x49\x91\xe4\xb0\x28\xfd\xbd\x90\x26\xb9\xca\x9c\x90\x69\xac\x96\xb5\xed\x0b\x93\x82\xd7\x1c\x28\xe9\x6b\x7d\x89\x40\xef\x67\x53\x80\x9a\x4b\xc0\xb4\x70\x92\x02\xef\x1e\xfb\x72\xd2\x54\x2e\xa1\x97\x86\x17\x5a\x40\x75\x5b\xc4\x42\x95\xf2\x2d\x4d\x5c\xcc\x95\x05\xd6\x4e\xc4\xad\x4e\xdb\xee\xab\xdc\x83\xd6\xfb\x2a\x8d\x1c\x53\x65\xfc\xe1\x53\x18\x41\x08\xe4\xdb\x6d\xcc\x13\x01\x71\x0b\x17\x16\x8f\xd5\xc5\x90\xd9\x0c\x7c\x58\xac\x6e\x3d\xb1\x42\x5b\xa3\xdb\xd1\xaf\xab\x7d\x40\x15\xeb\x8d\x75\x60\x2b\x81\x44\xe4\xb4\xd2\xd6\xe9\x38\x61\x01\xdb\x34\xbf\x32\xee\xd6\x54\x9a\xe9\x23\x8d\x32\xc0\xa4\xb6\x0a\x33\x79\xe0\x3f\x44\xa4\xa9\x41\xb1\x53\xaf\xcd\x99\xe8\x39\x23\x33\x67\x9f\x88\x6b\xe3\xe0\xdb\x59\xfc\x5d\x6f\x74\x8b\x7c\xdf\x3c\xb6\xb7\x15\xd0\xca\x2f\x92\xae\x1c\x31\x94\x2e\x5f\x91\x4c\xf0\x43\xdd\x08\x7b\x69\xba\x10\x56\xfc\x9c\x28\x81\x98\x57\x24\x9b\xfb\x45\xc7\x1b\x86\x3f\x48\xa6\xd2\x6b\x6b\x18\x37\x96\x9f\xfc\x23\x77\x4c\x3f\xbe\x30\x19\x5f\x63\x1e\xbe\xa4\xfd\xfe\x7f\xbe\x7d\xf5\xf2\xad\x5d\x66\x82\x46\xf2\x00\x13\x34\x7a\x2b\xf6\xcd\xa5\xd7\x8b\x84\x8c\x9e\xbb\xa7\xec\x78\xf3\x66\x09\x19\xbd\xa9\x0e\xda\x7e\xe8\xd5\x48\xa9\x2a\x79\xc4\x8c\xcf\x7b\xd2\xf4\xb3\xe6\xc6\x86\x12\xd2\xc2\xd6\x5a\xf8\xae\x12\x28\xfb\xae\xba\xde\x2b\xbe\x6f\x2c\xdb\x5b\x58\x38\xd6\x32\x89\xb2\xf4\xa3\x2e\x67\xf0\x16\xa5\x8b\x2b\x03\xc3\x7f\x46\x37\xa1\x9c\x75\xe6\x5c\x93\xda\x6f\xeb\x95\x68\x6e\x6a\xa5\x48\x7d\x8f\x6e\x4c\x60\x3e\x5b\x1d\x58\xa1\xa8\x34\xd1\xf3\xc7\x6d\xe6\x2f\xa8\xe4\x5f\x2a\x7c\x68\xad\x81\x67\x72\xa8\x4d\xf7\xbc\x47\x94\x81\x9e\xf4\xd0\x16\x58\x57\x20\x0a\x73\x7b\xdb\x84\x18\xe7\x12\xad\x48\x52\xbe\x56\xcf\xee\x04\x55\x6c\xa2\xac\x23\x6d\xf1\x9b\x55\x64\x12\x46\x24\x47\xf3\x6b\xd4\x06\x13\xf5\x64\xad\xbd\xa2\xf6\xc3\xf6\xbf\x56\x65\x86\xe6\x72\xb6\x81\x51\xdc\x97\xe6\x73\x8c\x93\xf0\xe0\xe0\xcb\x1d\x8a\x31\x9c\xbf\x44\xd7\xc9\xd1\x29\x44\xd3\x18\x8d\x98\x4e\x95\x9a\x5f\xe1\x4d\x6e\x42\xa2\x48\x5a\xff\x8d\xfb\x25\x46\xd2\x22\xda\x26\xff\x92\x08\xf2\xbf\x58\xba\xd9\xa8\xe7\x5f\xdd\xe3\xe7\x3a\xe7\x85\x44\x4d\xd2\xaf\x57\xb4\xd1\xc1\xb8\x32\x8c\x08\x7f\xbe\x34\xba\x9e\xa5\x20\x0f\xc8\x68\x41\x11\x5b\xa0\xe7\x4b\x10\x8b\xaa\x00\x40\x94\xa0\x51\x25\x73\x81\x21\x28\x54\x14\xae\xaf\xb7\xab\xcc\x5c\x9b\xea\xbb\x19\x9f\x57\x29\x40\x76\xf7\xe5\x1d\x50\xa0\x2f\x60\x63\x47\xa9\x9d\x52\x21\xe0\x97\x7f\x16\x37\xaf\xe2\x6e\xfc\xfb\xae\x6a\x0a\x9c\xad\xcf\xea\x1c\x93\x67\x19\xbe\xbc\xe2\x8f\x6a\xeb\x3c\x77\x16\x6e\xf3\x4c\x56\x65\x2a\xe7\x9d\x3e\xc5\x46\x17\xee\xd7\x62\xb3\x4c\x39\x0a\x68\x4f\xa1\x34\xbc\xa8\xd4\xcb\x0c\xd1\x0d\x22\xf1\x6d\xab\x26\xa9\x0a\x42\x4f\xd0\x75\xbf\x86\xcc\x05\x0d\x61\x06\x85\x81\x28\xc5\x40\x46\xc3\x49\xb1\x20\x21\x7b\xcc\xa4\x9e\x52\x09\xe7\x9c\x18\xc4\xeb\x0d\xbf\x81\xcc\xa7\xfb\xe4\x95\x96\x9d\xb3\x3a\x0b\xae\xfa\x57\x3c\x20\x1b\x49\x3b\x47\xf9\xcd\x26\xff\x91\xb3\x50\x10\xe9\x58\xee\x0e\x06\xb8\x46\xa8\x4a\xfe\x5e\xe7\xee\x88\x23\x41\x40\x08\x36\x1b\x8b\x2b\x62\x76\x42\xfa\xeb\x97\xae\x40\xa4\xa6\x5b\x88\x04\xca\xc7\x2a\x60\x9a\xc9\x22\x78\xac\x57\x16\x39\xa6\x78\x47\xa7\x2e\xdc\xac\x35\xc1\xe3\xc0\x4c\x5a\xb7\x3f\xe3\xae\x10\x98\x3d\xab\xa9\x9a\x6b\xfa\x3d\x67\xcf\x21\x53\x37\xcb\x2a\x07\x7e\x32\xb7\xd1\x65\xc0\xb5\x4e\xd7\x41\xdc\xd3\xd0\xa1\xa3\x51\x46\xe9\xfb\x62\xe3\x68\x55\xd9\x24\x1a\x72\xdb\x8f\xf5\x2e\x62\x53\x36\xb1\x3f\xe2\x96\x96\x96\x5c\x89\x00\x98\xb2\x49\x5b\x2d\xb3\x7f\xa0\x94\x97\x7b\xb2\x57\x7c\x2d\x80\x9a\x35\x80\xfa\xae\x2a\xc8\x9e\x8d\xeb\x9c\xb6\x8a\x91\x1c\xeb\x7c\xc7\xa6\x8f\x07\x18\xff\xea\x29\x96\xbb\x12\xfe\x26\x50\xd4\x60\x20\x23\x92\x6b\x65\x25\x5c\xa2\x0c\x71\xd4\xda\x9b\x68\xd1\x3a\xe6\x52\x72\x9c\xcd\xf1\xb4\x8c\x04\x38\xc2\x21\x0b\x77\xdb\x2d\x73\x85\x46\xb9\x29\xef\x36\x2f\xd3\x73\xe8\x24\xa4\x6b\x5b\x7c\xbb\xc2\x28\x5b\x36\xb4\x34\x4d\x52\x0e\x5d\xf7\x7f\x4a\x37\x1e\xa0\x0a\xa4\x5d\xb7\xfa\xad\x3f\x00\x0e\x34\x4f\x91\xd2\x33\xc1\x4a\x96\x00\x26\xa2\x82\xfb\xa6\xd9\x4a\x6c\xf4\x1e\x93\xa5\xaa\x60\x71\xe5\x60\x60\xfb\xb0\x08\x58\x5a\x3a\x20\x9f\xd7\x90\x1c\x16\x8c\x7c\x25\x5b\x04\x9b\x57\x15\xb9\x98\xbc\xf6\x50\x28\xc2\x0d\x04\xf5\xd7\x3a\x2b\xe0\x0c\xcd\x7b\x61\x8f\x20\x56\x37\xbd\x11\x6f\xb4\x20\x0d\x1a\x1f\x62\xa0\x17\xa0\xe6\x5c\x53\xaf\x45\x30\x84\x00\xf8\x6c\x3c\xaf\x93\x22\x12\xf5\xda\xb4\x6a\x16\x06\x3a\xbc\xac\x01\x2b\x17\xa6\xbc\xb2\xe5\x8c\x02\x86\x1f\xb0\x71\x71\x0f\x1d\xb1\xd9\x69\x6c\x86\xcc\x60\xb4\xa8\xbf\x91\xa1\xb3\xe3\x4e\x56\xa4\xbd\x64\xb1\x14\xfe\x71\xf7\xb4\xa5\x2b\x02\x9b\x27\x33\xf1\xff\xd9\x78\x0e\xe5\xbf\xa7\xf3\xa9\xfe\xd7\xac\x69\xa2\x7f\xcf\xcd\x31\xad\xc4\x0c\x05\x16\x53\xd4\x47\x73\x33\x0e\x22\x66\x76\x58\x54\xe9\xa1\x16\x72\x98\xff\x4a\xf3\x37\xd2\x2d\xa5\x16\xff\xf1\x53\xc8\x27\x75\xd6\x6a\x28\xdc\x40\xd4\x9c\xa5\x24\x5f\x51\xb6\xae\xbf\x72\x78\x15\x8b\xe7\x04\x59\x83\x70\xa5\x1b\xf1\x63\x89\xec\x45\xe5\xad\xef\x64\x64\x07\x9e\x44\x43\x65\x2b\xcf\x47\x57\x62\xf9\xd2\xad\x22\xd5\x47\x6a\x79\xc2\xd1\x5a\x66\x36\x3b\xf9\x9b\x98\x45\x6c\x70\xcb\xd6\x17\x12\x6d\xe5\xff\x41\x3c\x9d\xfc\xf2\x87\x78\xf6\xb7\x3f\xcc\x87\x00\x4c\xd5\xaf\x91\xf8\xf3\x0f\x27\x00\xe2\x84\xcc\x4e\xe7\x90\x26\x64\xf6\x60\x0e\xd3\x84\xcc\xbe\x9f\xc3\x3c\xe1\xa3\x95\x8a\x94\xfe\x4c\xc6\xa8\x73\x26\x87\x41\x2f\x4f\xe2\x3c\xc9\x07\x03\x41\x4a\xa7\x79\x0e\x7c\xd3\x40\x0a\x1d\xcd\xd0\xbb\x9b\x8d\xe4\xe4\x27\x29\x94\x84\xfa\xa4\xa2\xd9\x25\xf5\xa7\xdc\x46\xa4\x8f\x58\x6e\x7d\x63\xb8\x79\x8a\x99\x44\xe2\x86\x99\xaf\xa2\xd8\x1b\x36\x9f\x39\x25\x35\x49\x80\x3d\xda\x6e\x22\x98\x5d\x06\xb8\xfb\x35\xab\xe8\x63\x53\xca\xf1\xe9\xb2\x8d\x4b\xc4\x1f\x2d\x78\x91\x66\x06\xca\x65\x1a\x30\x2c\x38\x99\x1a\x29\x90\x50\x88\x1a\xa2\xd2\x24\xf5\x0b\xa5\xc5\x46\x0e\x51\x4d\x0e\x9a\x34\x84\x33\x14\x16\x0a\xce\xb2\x04\xc7\x5c\xfe\x84\x8b\xa4\xde\x2e\xce\x2a\x82\x31\x5e\x48\xa1\x2c\xcc\xe3\x85\xac\x5c\x4a\x9f\xd5\xc0\x08\xae\x3e\x13\xb9\xd4\x6d\x69\xc2\x6b\xa9\x93\x35\x10\x55\x79\xd9\xa4\xd2\xf2\x1a\xba\x86\x44\xda\x46\x22\xcc\xd3\xa2\x24\x49\xf8\x74\x3c\x39\x2d\x1b\x66\x3b\x55\x2e\x0f\x9d\x07\xd2\xd5\x9e\x42\x92\x84\x9e\x18\x26\xd1\x8d\xc5\x55\x1e\x9a\x25\x02\xa3\x3a\x8a\x06\xd7\xc6\x98\x01\xc3\xa7\x09\x66\xc0\x72\xa3\x26\x52\xb9\x77\x90\xd5\x67\x0f\xc3\xcb\xcb\x52\xdf\x7c\x2c\xd5\x8e\x1d\xec\x63\x68\x40\x90\x59\xe1\xf1\x78\xaf\x09\xab\x69\xdf\xe0\x3f\x6f\xab\x57\x65\x82\x82\xef\xf2\x6e\x23\xd5\xf0\xd4\x1a\x78\x3f\xde\x67\x77\xa1\x4e\x93\x5a\x62\x58\x41\x56\xd8\x2c\xdb\x6c\xeb\x34\x64\xa6\x01\x23\x63\x9d\x31\x89\xa2\x52\xd2\x56\x2e\xc9\xe8\x5e\xad\x8a\x73\xdb\x4b\x43\xce\xe6\x9f\x42\x3e\xca\xd1\x64\x56\x41\x99\xdb\x3d\x44\xf5\xd5\x2d\xf0\x1d\x87\x77\x57\x45\x2f\x93\xfe\xb1\x19\xaf\x6b\xe7\xe7\xdb\xad\xe3\xbb\x4e\x7d\x43\x6a\x0f\x3c\xab\x5a\xa9\x2f\xa0\xa4\x0e\x33\x47\xc2\x2c\x32\x07\xb0\xf1\x45\x00\x7a\xcc\x5c\x9b\x26\xcf\x8c\xa1\xa2\x98\x6b\x5b\x1e\x05\xa8\x53\x0e\x6e\xd1\x88\x50\x8e\x57\x37\x66\x57\xd5\xad\x30\x7b\x66\xe7\xae\x23\xb7\x89\x39\x3b\x8a\x64\x17\x98\x79\xe9\x86\x96\xea\x68\x9b\xd3\xea\x1a\x13\xac\xad\x33\x02\x7c\x01\x59\xfb\xce\xba\xf6\x19\xef\xda\x79\xa0\x81\x51\x3f\x75\x6c\xd6\xa1\xb6\x63\xd6\xf4\xc5\x34\x05\x5e\x8c\x13\x19\x60\x7f\x93\x2e\x90\x15\x68\xfe\xe5\xe9\x9b\xb7\xcf\x5f\xbd\x74\xf2\xe4\x58\x21\x0b\x6b\x14\x49\x95\xdd\x84\x34\xca\xdf\x59\x22\x09\x87\xdb\x54\x15\xac\xc4\x09\xd6\x3e\x58\x16\x18\x9a\xfd\x99\xe4\x56\xc1\x05\x3d\xa5\xa1\xf3\x41\xfe\x56\xa6\x77\x93\x5c\xe9\xf0\xa0\x77\x79\x9c\xba\xf2\x77\x69\xcc\xe5\x32\x7c\xc1\x52\x86\x05\x63\x50\x2b\xa8\x28\xb3\x48\xde\xfe\xbe\x59\x4a\x1e\xc1\x62\xa4\x37\xcc\xf5\x28\x2b\xba\x5d\x14\xa3\x65\x6a\x51\x77\x59\x45\xd6\xe7\x76\x69\xad\x2b\x6b\x25\xc9\x54\xd7\xd1\x26\xe9\xef\xcd\xcf\x30\x10\x94\x8f\x27\x6d\xef\x23\xac\x4b\x69\xb4\x16\x23\x06\x3d\x3e\x18\x50\x19\x13\x57\x67\x22\xc4\xc9\x2d\xce\x9f\xae\x37\xfc\x66\x72\x74\x0a\x71\xfe\x82\xa6\x4b\x4c\x2e\xab\x1f\x68\xa9\xfe\x96\x9b\xad\xfe\x7c\x9b\x7e\xb0\x55\x9e\x48\xd1\x8d\xae\xf3\x12\x5d\xab\x3f\xfe\x92\x66\x78\x39\x39\x1a\xc3\x25\x5e\xbe\xb5\x02\xd2\x9b\x09\x1f\xbd\xa1\x54\x49\x6b\xb5\x94\x75\x94\xa7\x1f\xd0\x72\xe4\xd7\x83\x26\x50\x92\xa4\x1f\x72\xdf\x43\xaf\x84\x17\x68\x41\xd7\x48\x4d\xc8\xfb\x20\xf8\x72\xb4\xfc\x31\x5d\xbc\xf7\xcb\xa5\x38\x78\x52\x2d\x74\x0c\x2b\x11\xaf\x6f\x64\x3c\x92\x28\x0f\x8b\xdf\xef\x68\x1c\xe9\x39\x2a\xf4\xb2\x8c\x40\x09\xc5\xfb\xdd\xbd\xa1\x5c\x5c\x04\xca\x52\x0f\x38\xb9\xed\xd8\xde\x34\x84\xf2\x8f\x49\x23\xfd\xce\xa7\x40\x40\x9d\x5a\x6d\xb3\x5e\x61\xc0\xa6\xd0\x57\x74\x15\x1b\x46\x21\x97\x20\xb0\xdd\xa6\x92\xe2\x69\xd9\x1e\x71\x02\x01\xed\x51\xeb\x49\x06\xb6\x43\x29\x1f\xd4\x4e\xea\xc3\x10\xc7\xa9\x61\x72\x6c\x40\x6f\xac\x0c\xf6\x27\xa4\x45\x5b\xd5\xb6\xcb\x25\xd4\x03\x78\x9d\x9a\xbe\x1a\xc0\x18\x80\x62\xdd\x7e\x54\x10\x45\xf8\x8a\xbf\xeb\xed\x0e\x9c\x54\x10\x9a\x77\x2d\xa2\x74\x90\x04\x35\x94\x1d\xf2\x54\x24\x23\x7b\x61\xb7\xdb\xb8\x4e\x17\xd6\xe9\x3a\xff\x9c\xe5\x09\x4b\x46\x94\x2c\xe3\xc8\x39\xb8\x08\x80\x1a\x45\x09\x6e\x2b\x81\x6e\xfb\x08\x8e\x34\x6b\xc6\xe7\xb0\x31\xd1\x97\xe8\x7a\xbb\x35\xe3\xd5\xf7\x32\x82\x1c\x94\xd8\xcd\x66\xa5\x5d\x56\x4d\xb8\x0d\xda\xc7\x24\xae\x9b\x84\xd9\x88\xe5\x52\x9e\x06\xa4\x04\x8d\x3b\xb9\x73\x50\x19\x93\x69\x8d\x01\x02\x93\xdb\x12\x72\x00\x46\x2a\x73\xb3\xd2\x34\x11\xc8\x47\xf2\x01\x94\x21\xfc\x30\xe4\x80\xd7\x9c\xec\x63\x0a\x06\x83\xc8\x69\x13\x1d\x25\x09\x15\xaf\x8e\x69\x66\x0a\x2a\x7b\x1c\x16\xf3\x19\x95\x42\x7b\xf1\x6f\x82\xe4\x3f\x90\x43\x3c\x8c\x46\xd1\x90\x3a\x61\xb9\x4b\xc1\x37\x16\x59\x06\x23\x46\xa9\xf4\xb8\xb4\xcf\x37\xee\xf6\x7c\x37\x49\xbb\x96\x87\xdc\x56\xfc\xbc\x2f\xb9\x7e\x9f\x9b\x5e\xa9\x4a\xba\xa4\x74\x80\xd6\x41\x75\x89\x02\xbe\x0b\x7e\x90\x19\xd7\xb6\xb0\x25\xd9\xbf\x5d\x89\xdd\x48\xe3\x9e\xe0\xfa\xe0\x40\x3e\x45\xda\x0b\xc8\x19\x56\xa6\x10\x08\xba\x50\x7c\x96\x69\x20\xe3\x7b\x31\x45\x95\x17\xc6\x04\x39\x73\xa9\xcf\xa4\x12\xe5\xd5\x7d\x54\x24\x3b\x08\x83\x72\x12\x95\x44\xa7\x72\x97\x3e\xda\x39\x61\x57\xeb\x6a\x74\x6a\x9e\x78\xd3\x01\x48\xe0\x39\x42\x34\x03\xdd\x1d\xca\x96\x74\x64\xc0\x42\x9c\xd0\xd7\x81\xd3\x36\x90\x6c\x8a\xf7\x35\x68\x4c\xc5\xbf\x13\xd4\xe6\xee\xec\x41\xdb\x5b\x4c\x2e\x33\x19\x71\x49\xb9\xb3\xec\x00\xbc\xe0\x11\x56\xf2\xa6\x2a\x41\x6d\xeb\xb8\x9e\x46\x38\x46\x95\xf4\x0a\x54\x9f\x94\xe7\xf0\x67\x3a\xe3\x0e\xb8\x66\xa7\xf9\xdb\x71\xba\xc1\x5f\xc8\xef\xb1\x23\x3e\x0a\x09\xc6\x77\x22\xaa\x10\x28\x70\x15\x62\x2b\x74\xe8\x3b\x3b\x31\x9e\x70\x52\x9c\xd8\xf1\xf0\x54\x38\x10\x68\xbf\xee\xd1\xfd\xfb\xae\xba\x4d\x9f\xc4\xc0\xfa\x1d\x6c\x26\x45\x54\xe2\x71\x15\x2f\x59\x22\xfd\xdc\x21\x2f\x61\x63\xa9\x2d\xf7\x46\x1b\x1c\xb3\xc4\x37\xfc\x51\xb6\x0d\x32\x8d\x93\xbf\x68\x06\x20\x4e\x78\x65\x00\xc1\x00\xa4\x89\x63\xac\x10\x63\x58\xf7\x12\xd0\x51\x2b\x04\x74\x39\x96\x41\x11\xb8\x93\x3b\x57\xd8\xd9\xe9\x8b\x47\x7e\x09\x6b\xc8\x5c\x7d\x7b\x20\x3a\xcd\x6e\x29\xd6\x97\x9e\x72\xf4\xc7\xd1\x78\x34\x8e\x82\xb3\x72\x4c\x5f\x5d\xec\xf0\xef\x75\x13\x5a\xd7\x44\xb6\xf1\xd1\xc7\x1b\x95\x74\xee\xdf\x1b\x56\xb7\x21\x09\x55\x6d\xa1\x2c\x91\xee\x51\x35\xba\x2e\xb2\x96\x24\x53\x2b\x52\x9a\x30\x48\x12\x32\x18\x90\x1d\x95\xad\x9c\x69\x42\x20\x4e\xf0\x60\x80\x77\x54\xb6\x82\xa7\x09\xee\xb9\x41\x58\xda\x25\x5e\x44\x19\x55\x47\x4f\xde\x46\x87\x08\x85\x1e\x53\x86\x5e\xc8\xd2\x9b\x38\x92\x95\xfa\x82\x38\x8f\x20\xb5\xa2\xa1\x9e\xf2\x8a\x50\x3d\x88\x8f\x8f\x94\x26\xc0\x62\x48\xc1\x33\xe2\x8c\x23\x96\x37\xad\x24\x67\x3a\x80\xac\x24\xe7\x23\x81\x02\x16\x93\x48\xfc\x59\x42\xfb\x45\x27\x74\x5c\x9a\xcf\xf6\xb7\x53\xe7\x71\x86\x52\x62\x2a\xa8\x1f\xe5\x5c\xa0\x14\x8e\x16\x41\x93\x4b\x74\x94\xa8\x4d\xb6\xd1\xc8\x4a\xb8\xa0\x59\xb1\x26\x62\x0f\xdf\xd1\x27\xa2\xa7\x40\x3b\xb5\x4c\xa5\xa6\x18\x2d\xd2\x0d\xe6\x0a\x87\x78\xe5\x05\x59\x22\x96\x2f\x28\x13\xa8\xd5\x7a\x5c\x9f\x9c\x9f\x5c\xc2\xa8\x1f\x81\x11\x67\x78\x2d\xfd\x8d\xd5\x88\xf9\x33\xca\x64\x2a\xe8\x30\xbe\x83\x2c\xb1\xdb\x64\x37\xe1\xf9\x32\x2a\xe7\x90\x24\x63\x88\x3d\x62\xc2\x8b\x7b\xe3\xa2\xae\x80\xa5\x87\x4e\x91\x4c\x86\xc3\x1f\x70\x85\xe6\x5e\xe0\x35\xe6\xbe\x09\x59\x9a\xf0\x51\x7d\x73\x62\x0a\x7a\x4c\xa9\x2b\xd4\xe4\xa8\x9a\x59\x2a\x15\xee\x4c\xda\xbc\x2a\x83\xb8\xbc\xa6\xb8\xc3\xab\xb8\x1e\x95\xf1\xe1\x83\xca\xfa\x4b\x05\x10\x7f\x6c\xac\xf8\xfe\x8c\x6e\x7a\x32\x8f\xf3\xad\x51\x1c\x6a\x8d\xb8\xbc\xa7\x93\x78\xf4\x6f\xe0\x04\xf4\x74\x02\x33\x22\x5f\x14\x32\x3b\x9d\x57\x99\x9e\x2a\xba\x56\xc7\x9c\x18\x6d\x10\x7a\xff\x28\x53\x41\x47\xed\x2c\x1f\xcb\xf5\x49\xe3\x82\xbc\xfd\x20\xc6\x90\x24\xb7\xd8\xa4\xd7\xd4\xdb\x8c\x05\x7b\x5d\x11\x52\x2d\x0a\x44\xac\xf2\x51\x0f\x87\x3f\xf0\xd6\xcd\x26\x33\x3c\xf7\x42\x1e\x61\xb1\x99\xc4\x99\xe6\x9f\x75\x10\xc7\xc0\x14\x67\x73\xfb\x12\x3f\x8a\x67\x62\x56\x73\xb0\x77\x56\xc8\xb1\x63\x95\x87\x89\xe4\xf1\x35\xa1\xc5\x53\x37\x89\x8a\x0d\xed\xa7\x78\xc3\xed\x3c\xd5\x8d\x0f\x6c\xa7\xea\xe4\x56\x49\x64\x90\xc9\xda\x29\xae\x3c\x80\xd5\x5d\x37\x5f\x42\xe2\xa4\xc1\xe0\xa8\xd1\x4e\x5e\xf9\xc9\xd1\x8e\x56\xa5\x7f\xd6\x41\xfa\x26\xba\xc8\xd2\xc5\xfb\xa8\xda\x34\x77\x94\x29\x4f\xa2\x4b\x86\x10\x89\x76\x4f\x2e\x96\xfd\x14\x82\x30\xe2\x36\x9b\xaf\x1a\x37\x68\xe4\x6a\x03\x4f\xd8\x58\x28\xfa\xf4\xa0\xc1\x8a\xa1\x81\xe6\x82\x10\xd9\x7b\xa6\xa4\x3a\xd3\x5e\x95\x60\xbf\x47\x9a\xc7\x4b\x4c\x34\x2f\xd7\xfa\x26\xc6\xa3\x6b\x96\x6e\xb4\x5d\x2b\x02\xa0\xec\x35\x32\x3b\xcb\x50\x7e\x54\x80\x4c\x3d\xf4\xb0\x0e\xf2\xeb\xa7\xcf\x51\xb5\xdd\xd0\xf6\xee\x9b\x10\x34\x47\x33\xa7\xa1\xa2\xa9\x94\xa0\x9d\xc2\xd0\x2f\xcf\x6b\xba\x29\xb2\x94\xa3\xa5\x9a\xf8\x23\xc5\x31\x76\x0c\x16\xb7\xa3\x8f\x9d\x01\xe4\xa4\xd6\x3b\xef\x3c\x8c\xaa\xbe\xb3\x47\xcf\xee\xb9\x73\xc7\x5e\xab\x9d\xfd\xff\x94\x92\x9b\xc3\xf6\xc6\xb6\xd8\xd9\xaf\x0e\x72\x7c\x58\xd7\x6e\xa3\x2e\xbd\x1f\x3e\xf9\x7a\xc3\x2e\xa3\xa8\xef\x87\x0e\xa1\x5a\xed\xec\xff\x2e\x90\xd9\x15\x12\x9d\x7a\x3f\xa5\x24\xbd\x44\xec\x2e\x43\xe8\xa6\x1d\x46\x52\x04\xe1\x41\x23\x88\x26\x7b\x7a\xae\xac\x66\x0f\xe8\xbb\x6a\xb4\xbb\x77\x23\x9e\xef\xde\xb5\x69\xb1\xb3\xdf\xca\x18\xb7\x63\xb7\xa6\x41\xa7\x5e\xef\x02\x33\x81\xb6\x3b\xc7\x32\xbe\x31\x9d\x07\x30\x0d\x76\xf6\xda\xf4\x0b\xe8\xdc\x7f\xb3\xe9\xce\x91\x2a\xfd\xc1\x33\xda\x1d\xec\xbd\x56\x7b\xfa\xaf\x40\x4c\xc2\xc3\x61\xc3\x34\x1b\x77\x1e\x2d\xbf\xeb\x48\xb9\x1e\xc5\x58\x57\x32\x88\x46\x4f\xde\x4a\xb5\xf8\x13\x41\x69\xeb\x07\x4f\x5a\x11\x62\x93\x9f\xa7\xd5\xbd\xf6\xd9\xd3\x47\xef\x7e\x7e\xf3\xf4\x6d\x55\xb5\x35\x79\x4b\xfb\xba\x5a\x24\x01\x61\xbe\x5f\x1b\x96\xb5\xb3\xfd\xa6\xc2\xe7\xb5\x24\x68\x6d\x60\xb8\xf0\xc3\xa3\xcf\xee\x5c\x5f\x7e\x82\x34\x05\xb1\x67\x9d\xaa\xde\xd7\x5a\xed\xa3\x0b\xca\xb8\x36\xd6\xef\x4a\x41\xd9\x26\x3b\x81\x5b\xc3\xdd\x81\x7d\x3b\x8d\xf6\xc4\xf3\x25\xab\x0c\x2f\x0e\x9c\xba\xd7\x6a\x67\xff\xcf\x28\xbb\xc0\xcb\x25\x22\x87\x0d\xe0\x37\xdb\x43\xfe\x7d\x48\x33\xeb\x28\xd1\x99\xfa\xab\x1a\xed\xec\xfd\x25\xe5\xcf\x68\x41\x0e\xec\xde\x6b\xb5\xfb\xd1\x92\xe4\xfe\x61\xbd\x3b\x6d\x76\xf6\xad\x13\x76\x1c\xd6\xb9\xdb\x68\x67\xef\x3f\x93\xb4\xe0\x57\x94\xe1\x5f\xd1\x81\xbb\xd3\x68\xb9\x73\x1c\x75\xdd\x95\x5d\x18\xfd\x53\x9a\x5f\x75\x1e\xa7\xd1\xb2\xc3\x38\xa2\xda\x3b\x7a\x18\xf1\xd0\x68\xb9\x1f\x87\x59\xf5\xcb\x5e\x2c\xd6\xa2\xa8\xf9\xed\xa1\x6d\x86\x72\xbe\x7f\xb9\xb2\xd6\x6f\x75\xa9\x9c\xef\x78\x7e\x43\xf2\xf2\x6f\x66\x69\x62\xea\xad\xeb\x0a\xd8\xf2\xee\xd1\x18\x34\xc2\x6f\x60\xb2\xca\xd0\x82\x3b\xa9\x2e\xb5\x46\x92\x17\x9b\x63\xeb\x89\xec\x7f\xac\x32\xa3\x1d\xcb\x21\x8e\x73\xc4\x3e\xe0\x45\x43\x61\x61\x95\x58\x9e\xde\xb3\xa5\x4a\x8b\xd6\xc3\x12\x4f\xbb\xef\xe0\x0e\x98\xdd\x45\x83\xb4\xcd\xa6\x7d\x9a\x2d\x23\xd6\x6a\xb4\x7f\x0d\x4c\xa9\x5d\x5f\xa3\x2c\x8a\x61\x01\x33\xb8\x80\x2b\x78\x05\x97\x70\x03\xd7\xf0\x43\x0d\x3a\xf1\x2a\xfe\x04\x9d\x95\x17\x8c\x56\xeb\x44\xac\xd3\xd6\xe9\x2f\xa3\x78\x36\x3e\xfe\x3f\xf3\xed\xe9\x6c\x7c\xfc\x60\x0e\x7e\x19\x9d\x00\x27\xdf\x91\x6a\xa5\x33\x1e\x55\xea\x95\xbe\x4e\xa1\x93\xf7\x53\xde\xcf\x50\x9a\x73\x55\xb3\x7f\x3a\x3a\xfd\x7e\x34\x86\xfd\x8b\x82\xf7\x6f\x68\xd1\xbf\x4a\x3f\xa0\xbe\x71\x6e\xd0\x83\x0f\xa3\x51\xff\xb5\x68\x84\xfa\xc5\xe6\x92\xa5\x4b\x24\xaa\xb2\xbe\xd6\x76\xf5\xe9\x4a\x75\x06\xfb\xfc\x0a\x11\x5b\xa7\x1a\x7d\x14\x81\x1e\x1b\x3d\x79\xdb\xf0\xc6\x92\x85\xae\xa0\x26\x61\xde\x4f\xaf\x82\xce\x60\xc7\xfc\xdf\x5e\x15\x2b\x8a\xa9\x6a\xd9\x22\x55\x51\x79\x7f\x7d\xf0\x67\x60\x79\xf1\x84\x55\x7f\xab\x4f\xe2\xba\x27\x1f\xe4\x3f\xaa\x40\x89\xd9\x12\xbd\xc7\xb9\x2a\xf4\x44\x64\x09\xf3\x7f\xab\x2a\x86\x6f\x4e\x98\xfd\x53\x7d\x30\xdc\x52\xe1\xcf\xc9\xa5\x4b\x93\x95\xff\xcd\xa5\xc9\x92\x95\xf7\x53\x55\x70\x49\x93\x64\xe5\xfd\xd4\xbd\x5b\x8a\x3a\x59\x39\x3f\xd4\xc7\x06\xd5\x91\xac\x9a\x65\xaa\xaa\x4f\x7d\x26\xab\x5a\x81\xaa\xe4\xd1\x78\xc9\xca\xff\xad\xaa\x78\x64\x72\xb2\xf2\x7f\xeb\x0d\xac\x68\xb9\x64\xe5\xfe\x52\x9f\x1b\xa4\x45\xb2\x6a\x96\xb9\x55\x1d\x6a\xc7\x56\x75\xca\xec\xa0\xc6\x2d\xf0\xca\x3f\x03\x8f\xd3\x65\xde\x4f\x0d\x54\x95\x80\x44\x80\x55\xf5\xcb\x3b\xdf\x90\x54\x38\x61\xbb\xbe\x6a\x38\x76\x20\xbd\x06\xe2\x4d\x91\x9b\x3f\xbe\x2e\xd4\x95\x9f\xbe\x7d\x67\x56\xb1\xf0\x57\xf8\x63\x81\xb3\xe5\xcf\x6f\x5e\xc8\x54\x2f\x49\xe1\xff\xee\xd9\xd6\xce\x16\xad\xfd\x0e\x6a\x7e\x95\x9b\xe6\xd7\x47\xaf\x9f\x9b\xc1\xb3\xe0\x57\xa7\xf9\xd2\xaf\x60\x3d\x1f\x92\xb4\x76\x30\x29\x47\xd5\xc7\xdc\xff\xad\x4f\x55\x2a\x55\xdd\x4a\xb5\x12\x0d\xb7\x85\xc0\x60\x6e\xb5\x5a\x89\xde\x27\x4a\x33\x94\x12\xb7\x5e\xbd\x48\xa3\x8e\xf5\x05\x5a\x2e\xcd\x61\xe6\x6a\x5f\xd7\xc1\x62\xd5\xe0\x02\x65\x94\x5c\xe6\xef\x68\xf2\xa1\xfa\x5b\x7d\xba\x4a\x73\x71\xec\xc9\x07\xf3\x97\x39\xfb\x4a\x4c\x23\x4f\xbd\xfa\xa9\x2a\xa8\xb0\x38\x56\x17\x5a\x39\xbb\xea\xcf\x15\x29\x21\x71\xf5\x5b\x45\x48\x54\x81\x4e\x5a\x08\x29\xd1\xb8\x93\x54\xae\x4a\x81\x7a\x5a\x4b\x8f\x7a\x0a\xd5\x6b\x18\x94\xd0\x29\x65\x93\x00\xf6\x27\x6f\x1d\x7b\x99\x9b\x36\x32\xac\x8d\x1e\xfa\x7a\x26\x32\xe0\x36\x36\x71\x41\xa6\x68\x82\x9c\x20\x32\x6e\xb4\x10\x31\xab\x89\xd6\x22\x87\x6d\x67\x4c\xcc\xb6\xdf\x24\xb1\xbc\x8f\x0f\xf0\xa4\x8a\xdf\xc8\x1a\xed\x45\xeb\xbc\x4a\xdb\x62\x27\xd7\xac\xef\x69\xe7\x5e\x75\xfd\xd6\xbd\x73\x89\xe3\x56\x86\xa3\xaa\xf3\x1b\x80\x90\xde\xce\x55\xaa\x0c\xd5\x02\x51\x1e\x2b\xe9\xba\x49\xf2\xdf\x61\xf5\xdf\x34\xb3\x1c\xc2\xff\x1d\x4e\xbd\x8b\x68\x24\xc4\x27\x7d\xa3\xbb\xb0\x0f\x55\x34\x23\x52\x76\x5c\xf4\xef\x61\xc1\xbb\x25\x42\xbf\x11\x38\xdf\xbf\xe0\x9a\x88\x63\x9f\xa3\x67\x58\xb8\xf2\xf5\xe4\x04\x77\x17\x7a\x84\xc4\x2c\xbb\xe4\x0d\x5f\x86\x40\xc9\x12\x04\x33\xc7\x5b\x57\x9a\xea\xea\x59\x4f\xd6\xa9\x40\xad\xdc\x63\x6c\x00\xf4\xdd\xc2\xaa\xa6\x95\x93\xc6\x85\x22\x7d\x23\x58\x34\xa8\x60\x31\x8f\x50\x93\xa5\x3c\xcc\xc2\xa7\xd4\xdb\x2a\x13\x49\x82\x8b\xea\x35\x62\xbc\xad\x81\x4a\x32\x2a\x1a\xd4\x88\x7c\x50\xc6\x08\x04\x83\x5c\x61\x22\xf6\x77\xbb\x35\x7f\x61\x4a\x7a\x5c\x45\x5f\x45\x2a\x3d\x8e\xf4\x94\x63\x91\xc9\x3a\x05\xeb\xb4\x1c\xac\xaa\x33\x5a\x48\x58\xdd\x5f\xd3\xdd\xff\xf6\x06\xad\xb3\x36\x8b\x7f\xa5\xa2\x1e\x6b\x13\x50\xb1\x0a\xea\x95\x38\x4b\x71\x69\x88\xdb\x5c\x9a\xc8\x73\x4a\x26\x47\xa7\xa5\x3b\x2f\x3b\xa5\x7a\x15\x77\xc3\x43\xa1\xef\xaa\x28\x49\xed\x75\xd5\xed\xa0\xe1\x8a\x06\x18\x75\xad\x7c\x4f\xad\xea\x22\xa6\xfb\x07\xae\x2a\x93\xaa\x72\x21\xae\x44\x52\xdb\x72\x18\x17\x82\x1a\x9b\xca\xff\xc7\x19\x98\x14\x8d\xf8\x4a\x19\x00\x62\xa3\xbd\x91\xdc\x1e\xac\xe1\xb6\x8e\x27\x00\x33\x71\x8c\x2a\x9f\x6e\x0b\xdd\xaf\x5b\xee\x96\x25\xff\x46\x51\xbd\x23\x7e\xee\xf0\xa8\x7d\x21\x87\xc0\xaf\xb7\xdc\xaf\xe6\xee\xa0\xa3\x38\x3a\xfe\x0f\xdf\x8f\x4e\x1f\x8c\xfe\xd8\x74\x80\x40\x19\x92\xce\x6f\x2a\x25\xbc\xcd\x0c\x6f\xca\xbf\xd0\x54\xb5\xb3\x58\x73\x0f\x1b\xf6\xdc\xf5\x74\xdf\x5e\x32\xf0\x5a\xdc\x84\x3e\x36\x41\x08\x9d\x8a\x21\xc3\xd8\xd9\x1c\x12\x19\x0c\x35\x39\x3a\x85\xd4\xec\x16\x67\x37\xd6\x4f\x37\x85\x79\x82\x66\xb5\xfe\xe7\x31\x38\x3b\x8a\x49\x12\xa7\x49\x3e\x22\xe8\x23\x8f\x01\x18\x2d\x29\x41\x2a\xaa\xa4\xb4\x52\x4d\x55\x36\x76\x00\x8f\xf8\x76\xcb\xb4\x11\xfa\x51\x92\x70\x70\x26\x86\x04\x67\xe5\x42\x4a\xf0\x0b\x70\x8b\xc5\x14\x68\x52\x94\x2b\x4c\xd2\x2c\xbb\xb9\x15\x13\x38\x22\x83\x41\x3e\x52\x73\xaf\xfe\x8a\x81\xad\x84\x57\x31\xd6\x72\x7e\x6a\x2d\xd1\x59\x29\x97\xd7\xab\xe4\xff\x02\xc1\x6b\xe9\xbf\x16\x0b\xf7\x53\xce\xd1\x7a\xc3\xfb\x9c\xf6\x65\x00\xcc\x62\xc1\x0b\x86\xfa\x84\x92\x63\xb9\xc2\x8b\x0c\x59\x1f\x9e\x08\x94\x65\xec\x04\x06\x62\x31\xb8\x2d\xeb\xb9\x9f\xff\x24\x81\xc5\x7a\x63\xdc\x31\x01\x1f\x4f\x2f\xa5\x2f\x33\xd3\xa1\x95\xe9\x7a\x43\x09\x22\x5c\x15\x96\x50\xbb\x97\x36\x8c\xaa\x59\xc2\x63\x04\x4f\xc1\x6c\x2c\xf3\xa8\xb3\x24\x49\xdc\xfe\xbc\xa8\x7a\x5e\xa7\x32\x09\x89\xa6\x06\x8e\x6c\xe0\x49\x9b\xb0\x88\x5f\xa1\xbe\x99\x63\x7f\x93\xe6\x39\x5a\x8a\x2d\x13\xc5\x7f\xd7\xb7\xe2\xef\x7d\x75\x4f\xfa\xeb\x22\xe7\xfd\x0b\xd4\x4f\xfb\xba\x3f\x09\x44\x64\x98\x44\xfd\xf8\x86\x16\xa6\xf9\xdf\xa3\x21\x1b\x46\x7f\x07\x91\x3e\x7c\x0c\x6e\x4b\x47\x55\x23\x8f\x89\x00\xcf\xad\xa0\xda\x95\xe8\x78\x79\x43\xd2\x35\x5e\xd8\x3b\x69\x56\xea\xad\x6a\x1a\xd8\xbd\x46\xd3\xe3\x34\xe3\xd1\xa4\x4b\xcd\x28\x84\xc4\x56\x88\x2f\xae\x4e\xd2\x7f\xa4\x35\xdd\xa6\x2c\xff\xec\xf1\x56\x02\xee\x66\xcc\xc9\xb8\x60\xd1\x2d\x90\x1f\x46\xfc\x0a\x91\xb8\xe6\xa2\x8a\x46\xf4\xbd\xc5\x18\x23\xf1\xd2\xc7\xe6\x92\xa0\x32\x20\x68\x53\x0b\x6c\x9a\x4b\x7d\x5e\x2c\x8d\x73\x57\x8b\xf2\x06\xe5\x1b\x4a\x72\x14\x8a\x71\xf7\xc7\xf1\x69\x92\x24\x48\x7a\xfc\x17\xb9\x8e\x89\x67\x34\x2b\xbb\x1b\x7e\xdf\x68\xa8\xf1\xc0\xce\x66\x0f\x1e\x34\x9a\xfd\x98\x2e\xdf\xa0\x7f\x16\x28\xe7\xbb\x07\x1c\x37\x5a\x1a\xfd\xce\xee\x76\x7f\x6c\xb4\xfb\x0f\x4a\xd0\xce\x36\xa7\xcd\xb1\x5c\x45\x56\xa3\x85\x6b\x6b\x26\x1a\xaa\xd0\xf9\xa2\x99\xd1\x2f\xed\x9e\xe2\xff\x69\x0c\xe7\xa8\x9d\x76\x35\x35\x8d\x7e\x48\xfe\xf7\x78\x2c\xa3\xf0\xca\x9f\x0f\xff\xff\xe3\x71\x1b\xf0\x49\x59\x56\x6e\x98\x46\x55\x18\xba\x6d\xd0\x6b\x55\x70\x9c\xe5\x27\xeb\x82\x5c\x1e\x6b\x22\xff\x78\x45\x6d\xeb\x40\xd5\x25\xe2\x88\xad\x31\x41\xc7\x17\x74\x79\x73\xbc\x51\x4a\xd2\xc3\x92\xb5\x1b\x96\xe3\xb6\xec\xb9\x31\x19\x03\xee\x60\x8e\x8b\xcf\x8c\xcd\x13\x19\xb8\xf3\xe0\x74\xe2\x10\x8d\xae\x50\xba\x44\x2c\x7f\x47\xb5\x0e\x18\xc3\xfa\x9b\x24\xa5\x66\xd6\x47\x51\xd7\xd7\xb1\xbc\x0f\x4f\x11\x5b\x42\x81\xec\x34\x23\xe5\xe7\x5b\xb6\x99\xad\xc8\x76\x7b\x5b\xf6\xf0\xa8\x60\x82\x8f\xc6\x32\x3a\x5e\xc2\x7b\xf5\x0c\xf6\x3a\xa5\xa4\x9a\x50\x04\x7a\x74\x30\x88\xb1\x59\x90\xae\xa7\x63\xec\xdb\x62\xd1\x33\xa4\xc0\x38\x42\xca\xcc\x92\x16\xe9\xd9\x14\x4f\xd1\x7f\x3c\x7d\x27\xde\x84\x74\xb4\x46\xfc\x8a\x2e\xb7\xdb\xa3\x74\x24\x4e\x75\xbb\xb5\x31\xcc\x53\xd3\xe5\x60\x10\xdb\xbf\x67\x91\x4e\xb3\x79\xfc\x4e\xc7\xf1\x73\x3e\xe9\xe4\xaf\x3a\x7f\x22\xd8\x6e\xab\x76\x55\x6f\x72\x82\xad\xfd\x25\x6e\x3c\x79\x29\x1d\x39\xeb\x2f\xae\x52\x96\x23\x9e\x14\x7c\x75\xfc\xff\x44\x00\xa6\x6a\x8b\x83\xb9\xac\x95\x4f\x11\xa4\xc9\x6d\xc1\xb2\x09\x82\x6a\x79\x13\x5e\xc2\x54\x3d\x80\xce\xe1\xe8\x76\x5e\xa4\xc4\x73\xf1\x5d\xe3\xae\x38\x05\x23\xf5\xf8\xd6\x47\x52\xcf\x01\x96\x9d\xa9\xa7\x18\x8b\xe3\x95\xd1\xfa\x21\x02\x65\xe0\x65\xf1\xec\x96\xdf\xbc\xfd\xcb\x6b\xc1\x07\x5e\xc5\xb7\x4c\xa3\x82\x09\x82\x9b\xf4\x26\xa3\xe9\x72\x22\xa3\xd7\x3b\x0f\x95\xf2\x50\x6a\x76\x59\x31\xef\xaa\x0b\x19\x46\x49\x77\x22\x08\x16\xee\xbc\x64\x6a\xae\x6f\x8b\xc5\x02\xe5\xb9\x9c\x2d\x83\xd4\xbc\x6b\xf5\x85\x30\x35\x24\x74\x37\x63\x47\xa6\x10\x81\x22\xcc\x96\x21\x01\xd3\x62\x0b\xa0\x57\x3e\xe9\xf6\x20\xab\x83\xd5\xb3\x9c\x34\xd1\x8a\xba\x20\x68\x74\x95\x92\x65\x66\xf1\x7d\xcc\x35\x8e\x84\x38\xe6\x06\xb0\x80\x4a\xd8\xa5\x67\x4a\x07\x03\x2a\x30\xbe\x63\x18\x31\x75\x8e\x82\xc9\xb0\x9f\x31\x05\x13\x5a\xc2\x8d\x80\xb6\x67\x6a\xf2\x6a\x80\x67\x94\xd5\x73\xdd\xfb\x19\xb3\x0c\x92\x7e\x87\x3e\x72\xb5\x86\x66\x7d\x15\xe4\x56\x92\x18\xd4\x9c\x0a\xd5\xb7\x54\x1c\x5b\xdb\xa0\xb1\x0b\xa3\x1d\x97\xae\xfb\xf3\xde\x1a\x99\x22\x51\xa6\xa5\x69\xa5\xd2\xc4\xbd\xfd\xa2\x34\xcc\xeb\x2c\xc5\x44\xe3\xe1\xc0\x93\x3b\x53\xd1\x85\x34\x43\x36\x17\x08\x4a\x0f\x63\x83\xcd\x8d\x4c\x54\x56\x2d\x61\x6a\x25\xc8\x76\x3e\x59\xff\x9a\x70\x07\x68\xc4\x25\x03\x58\xbb\xc9\x95\x33\xb1\xe2\x04\x92\xff\x7c\xfb\xea\xa5\x3a\xc0\x98\x01\x4d\xfe\x2b\xc0\x39\x8a\xa9\x1b\x32\xe1\xed\x0d\xe1\x1a\xd4\x8c\x1d\x17\xd5\x9e\x95\x06\x22\x7b\x47\x82\x9e\xdd\x6e\x1f\x8c\xff\xa8\x7c\xcc\x1f\x8c\xff\xb7\xfa\x23\xfa\xd3\xd3\x47\x4f\x22\xc1\x66\xea\x37\x60\xba\xa0\x24\xa7\x19\x1a\x5d\xa7\x8c\xc4\xd1\xbb\x2b\x9c\xf7\x0d\x6a\xe9\x5f\xa7\x79\xbf\x90\x2e\x16\x82\xb1\xb9\x40\x7d\x39\xbf\x65\x3f\xcd\xfb\x02\x49\x8f\x22\xc8\xc0\x84\x98\xd4\xdc\xc6\xe1\xb3\x9d\x5e\xde\x4d\x7c\x34\xa5\xf7\x6e\x2b\x2b\xde\x39\xfe\x67\x81\xd8\xcd\xf1\x26\x65\xe9\xba\x5e\x55\xc1\xf2\xe7\x0f\x8f\x1d\x12\x86\xbb\x59\xe8\xf5\x7b\x7c\xbb\x60\x68\x89\x08\xc7\x69\x96\x4f\xa2\x3c\x5d\xa3\x63\x95\xe2\x3a\x2a\x21\x92\xd1\x8c\x88\xde\xf6\xc4\xfe\xb5\xdd\x12\x49\x09\x6c\xb7\xf2\x79\x06\x23\x4e\x7f\xde\x6c\x10\x7b\x9c\xe6\x28\x06\xe2\x4d\x48\x79\x0a\x04\x27\xaa\x5f\xef\xaa\xa1\x3a\x4c\xa7\x48\x82\x8b\x9b\x5d\x41\xb7\xd6\xd2\x05\x4b\x88\x08\x74\x5d\x05\x97\x9f\x46\xe0\x87\xe3\xd3\x69\x34\x88\x26\xd1\x34\xea\xc9\xaf\xc3\x24\x8a\x86\x78\x28\x91\xb5\xdd\xf9\xff\x2b\x36\xfe\xb5\xdc\x77\x60\xba\x2e\x65\x36\x43\x49\x70\x78\x37\xdd\x56\x98\x12\x49\x62\x28\xf8\x56\xcc\x2f\x5e\xdd\x98\xaf\x13\xfd\x55\xfd\xac\x92\xf7\xee\x04\xa0\x36\x50\x68\x03\xa0\x10\x54\x7c\x3a\x4c\x84\xb6\x25\xc1\xbf\xb7\xa0\x9e\x90\x24\x27\xbf\xcc\x7e\x99\xff\xe1\x24\x40\xd1\x63\x27\xe4\xb4\xfd\x8a\xe2\x2a\x35\x27\xcc\xe0\xa2\x27\x33\x67\x36\x24\x74\x39\x00\x2b\xca\xe2\x22\x19\xcb\x14\xbf\x0a\x42\xcf\x8a\x87\xd9\x59\x31\x1c\x02\x32\xe2\x8a\x16\x9b\xd2\x18\xc3\x14\xe6\xb3\x62\x0e\x26\x28\x4e\x87\xd1\x2c\x1a\xc6\x5e\x44\x3a\xf9\x6d\x5a\x4c\xa2\x08\x0c\xa3\x79\xa4\xea\xda\x44\xb0\x12\x84\x6b\xa0\xa9\xc7\x5e\xf4\x31\xe9\xe7\xc0\xf4\xba\xd0\xad\x17\xa6\xb5\x1e\xba\xea\xeb\x90\x15\x88\xc6\x62\x26\x92\x87\x54\x7f\x29\x81\x9f\xea\xcd\x1b\x7f\xa1\x47\x35\x64\x5b\x19\x47\x11\x44\x60\xf4\x0f\x8a\x49\x1c\x0d\x22\x27\x80\xc7\xff\xef\xc1\xf8\xe4\x12\x46\xc3\x08\x78\x91\xb4\x35\x2d\x6c\xd3\x12\x0d\x06\x3a\xdc\x9b\xfc\x93\x25\x91\x8c\x91\x14\xca\xa3\x32\x65\x31\x98\x30\x88\x66\x48\xaf\x60\x9e\x20\xb2\xa0\x4b\xf4\xf3\x9b\xe7\x8f\x8d\xe8\x27\xe6\x60\x18\x25\xd1\x30\xf0\x85\x01\x37\x84\x75\x33\xb4\x9f\x35\x4f\x6f\x8f\x5b\x5d\x55\xc9\xf0\xc5\x49\x7e\x93\x73\xb4\x6e\xf9\x88\x3e\xf2\x13\x2d\x41\xfb\x42\x52\xa4\x37\x45\x86\x72\xf1\x92\x62\x72\x59\x64\x29\xc3\xbf\x22\x41\xa9\x65\x05\x93\x97\xdd\x18\x5b\xf3\xd1\x73\x33\x31\xbf\x25\xf7\x7e\xb6\xa8\x0c\x94\xf5\x73\xf4\xbc\x32\xdd\xbf\x0d\xab\x0a\xd4\xf3\xb2\x44\x1b\x86\x16\x82\x51\x55\x16\xda\xd5\xd8\x7d\x9c\xf7\xed\xd7\xa5\xb5\xba\x46\x1f\x05\x3b\x85\x79\x76\x33\xe9\xe3\xb5\xd8\xed\x7e\xd5\x64\xc5\xe8\xba\xff\x5d\x6d\x77\xbf\x3b\x8b\xe0\xd1\x29\xbc\xc5\xcb\x49\x7d\xe3\x47\x97\x19\xbd\x48\xb3\x3c\x82\x05\xe1\x38\x9b\x44\xdf\x9b\x10\x49\xce\x26\xb4\x5b\x32\xb9\x61\x69\x60\xe4\x6c\xeb\xa1\x8b\xd6\x24\xa0\xd3\x43\x0c\xba\xaf\xff\xb6\xef\x34\xec\x97\x9f\x75\x17\x9c\x9e\xbb\xee\x83\x05\xa8\x3b\xee\x82\x6d\x7f\xd8\x1e\xd8\x66\x9f\x79\x07\x6c\xbf\xa5\x47\x2f\x39\x00\x02\xdd\x4b\xe4\x34\x80\xfe\x55\xf3\x36\xb3\x7e\x2b\xfd\xbb\xb5\x03\xd5\xd4\x50\x85\xc0\x39\xad\x98\x26\x84\x4f\x7c\x6c\x72\x16\x1f\x8d\x93\x44\x93\x7a\x4f\x5f\xfe\x65\xf4\xf4\xbf\xdf\x3d\x7d\xf9\xe4\xfc\xf5\x9b\x57\xef\x5e\xbd\xfb\xeb\xeb\xa7\x6f\xb7\xdb\x1d\x1f\xf5\x91\x81\xc1\xa0\xc5\xc9\xc3\x1c\xa9\xcd\x11\x7b\x17\xe8\xa8\x77\xf2\x6d\x41\x48\x63\x01\xf1\xd8\x05\x08\x9d\x5f\xae\x6c\xbf\x3d\xcd\x3d\xba\x13\x26\x69\xec\xd2\x37\x87\x4d\xc2\x3b\xe5\x8c\xe6\xec\x55\x93\xa5\xf7\x01\xdc\x28\x69\x1d\x70\xda\xf1\xfa\xb6\x3c\xb9\x9a\x69\x4b\xdf\x23\xad\xfb\xdd\xc7\x5f\x59\xba\xc4\x28\x57\x1a\xaa\x59\xab\x3d\xe5\xc9\x18\xb2\x44\x97\x1b\x2e\xe5\x8c\x3f\x34\x7f\x9f\xf1\xe1\x10\xb0\x19\x9f\xab\xcc\xc4\x56\x89\xa9\xff\x50\x1d\x8b\xbd\x8f\x11\xb8\x8b\x98\xd8\xe0\x29\x5f\x60\xea\x8b\xad\x34\xcf\x84\xae\xe3\x67\xba\xdc\x01\x9f\x0b\x4c\x4c\xf4\x01\xe5\x50\x31\x13\x64\xd7\x5c\xd0\xdc\x8b\x94\xc7\x62\x07\x40\x15\x14\xf9\x41\x92\x24\x58\x2f\x6d\x30\xc0\x3a\x74\xd9\x35\xe6\x57\xb4\xe0\x8f\x69\x41\xf8\x84\xcd\x22\xfd\xfb\x78\x21\x0a\xa2\xb9\x8f\x5f\xfd\x50\x07\x24\xc6\x00\x04\x24\x3b\x61\x30\xf0\x6e\xcc\x57\x00\x84\x2f\x70\x20\x9e\x14\xd1\xbb\x14\x68\x36\x9e\xef\xdf\x0a\x43\x5c\x76\x23\x42\x4f\xf6\x6d\x89\xff\x82\x74\xe9\x0a\x53\x12\xca\x3d\xf2\xd9\xc9\xd7\xea\xad\xad\x93\xb2\xf6\x45\xae\x48\x59\x13\x50\xd6\x4e\x5c\xa6\xa3\xb4\xe5\x31\x71\x8d\xa3\xaa\xf6\x6e\x92\x34\x77\x0c\x56\x7b\xc3\xab\xb9\x30\xef\xdd\xf7\xa6\x6c\xc7\xe8\x74\x82\xde\x76\x7e\x71\xc1\xde\xad\x9a\x75\x3e\x99\xcd\x4e\xfe\x70\x02\x23\x31\xce\xec\x24\xff\xc3\x09\x36\x7f\xff\x2d\x4e\x3f\x6e\x05\xcb\x0a\xb0\x2a\xfe\xc3\x29\x52\x5f\x62\xba\xe0\x74\xb3\xfd\x80\x19\x28\xcc\x27\x5c\xff\x82\xfd\x0f\x69\x86\xd3\x7c\xab\x64\x79\xdb\x0b\x4a\x8a\x1c\xd4\x3a\xbd\x28\x80\xe9\x2c\xaf\xca\x56\xab\x34\xdb\x72\xba\x4e\x39\xa0\xfa\x2b\x35\x5f\x67\x1c\xcf\x41\xb1\xd6\xc5\xa9\x53\x98\x7a\x65\xb9\x5e\x80\xed\x76\x3a\x89\x67\x7f\x5b\xcd\xc1\x0a\x6d\xe3\x59\xc6\xe6\x60\x65\x26\xf3\x87\x07\x1f\x4c\xa5\x2b\xfc\x01\x99\x62\x33\xe0\xdf\x52\x84\x69\x71\x33\xdf\xfe\xb3\x00\x37\x66\x81\xa6\xc1\xc7\xed\xe2\x6a\x9b\xe7\xdb\xfc\xaa\xbe\xb4\x75\xca\xd9\xf6\x03\x62\x7c\x8b\xc9\x12\xc4\xd3\x09\xfe\xb8\x45\x1f\x4d\x2d\xbc\x40\x66\xc7\xd7\xdb\x0c\xd0\x22\x47\xd5\x17\xe7\x03\x5e\x34\xcb\xa9\xed\x05\x11\x5b\x84\x88\x29\x54\xc3\xff\xb3\xc0\xbf\x9a\x92\x5f\xc5\x58\x73\x68\xa0\x59\x1c\xbf\xda\x1c\x55\x35\xcf\xfd\xa6\x04\xa0\x6b\x7b\xfa\xd7\x79\x60\x8b\x8b\xb5\x2a\x8c\x53\x40\xd2\xec\x66\x1b\x5f\x80\x74\x1b\x2f\x01\x4e\x2f\x09\xdd\xc6\x1b\x20\x83\xf1\x5f\x21\xf1\x27\xa3\xb2\x2c\x07\x37\x84\x6e\xb6\x31\x07\x57\x08\xc4\x39\xce\xb7\x39\xb2\xe3\xe6\x58\x8f\xf2\xb7\x54\xf4\xd7\xfe\x5d\x9e\xe0\x07\x64\x66\xb7\x42\xce\xb1\xe5\xde\x22\x78\xb3\x48\x9e\xba\xd3\x38\x70\xbe\xd8\x7e\xbd\xd1\x7b\x03\x10\xab\x0a\xe5\xdf\xfa\x78\x01\xfd\x50\x7d\x10\x7f\x37\x00\x02\x79\xc3\xd7\xcf\x53\x1c\xb9\x01\xf8\x1c\xc4\x28\x07\x53\x6f\xb6\xb4\xd6\x3e\xce\xaf\x68\x7d\x45\x0b\x86\x73\x75\x5d\x63\x9c\x6f\xab\xfd\xc2\xf6\x36\x83\x8f\x33\x8c\xe6\xa6\xd5\x47\xdc\xb8\xcc\x71\x91\x6f\xb1\x69\x57\xe4\xad\x17\xb7\x31\x41\x09\x87\x88\xb8\xd3\xb1\xd0\x2e\xa0\xdb\x6c\xd9\xc7\xea\x3a\xb8\xe5\xf8\xa3\x03\xa7\xbf\xd6\x96\xba\x4c\x79\x7a\x91\xe6\xee\x72\xe7\x10\x33\x86\x24\xfc\xbe\x4e\x31\x13\x38\x2c\x12\xd4\x80\x34\x5d\xdf\x20\xba\xc9\xe4\x6e\x46\xeb\x54\x14\xac\xd5\xcd\x88\x16\x57\x38\x5b\x46\x50\xfd\xcb\x74\x61\x8e\x3e\x4a\xeb\xe2\x8f\xea\x2c\xa3\x35\xfd\x80\x44\x1b\xaa\xd1\x40\xb4\xa0\xd7\x11\x8c\xde\x63\xa2\xba\xfc\x95\xae\x2f\xb0\xa8\xa1\xfe\x90\x77\xa9\x20\x92\xac\x91\x06\x92\xb3\x08\xfd\xb3\xc0\x1b\x9d\x1b\x0c\x93\x15\x65\x6b\x95\x52\x1c\x46\x4c\x45\x23\x58\x53\x82\x6e\xc4\xa0\x1b\xb4\x10\x3d\x28\x0b\x64\xf9\xc7\x0a\xe7\x57\xe2\xf7\x15\x42\x9b\x08\x46\xff\x40\xa9\x78\x0a\xa2\x0d\xcd\xe4\x8d\x6f\x8a\x90\xf7\xbd\xf0\x5f\xd2\x80\xf1\xe4\x6f\xbf\xe4\xff\xf6\x87\x13\xc8\x92\x93\x78\xf6\xcb\xf5\x2f\x27\xc7\xf3\xe1\xec\xfc\x97\x93\x5f\xf2\xe3\x39\x88\x67\xe9\xf1\xaf\xbf\x2c\xe7\xc3\x3f\x80\x13\x48\x4c\x0d\xf1\x69\x08\xe2\xd9\xa3\xe3\xff\x77\xae\x2b\xfc\x9b\xa8\x80\x93\x13\xbf\xec\xa4\x96\x53\xc5\x49\x22\x22\x83\xc5\x72\x43\x4c\xb3\x87\xe4\x8c\x0d\x87\x00\x8d\x9c\x53\x98\xf1\x19\x9b\x8f\x38\x7d\x41\xaf\x8d\xd2\x61\x9e\x1c\x8d\x1b\xf9\x52\xaa\x3e\x0d\xed\xa9\x02\xff\x9a\xce\xc9\x43\x7c\x46\x04\xb5\x9e\xf0\x19\x99\x43\x34\xb2\x60\x37\x63\xb3\x71\x63\x04\x36\x3b\xad\x57\x3a\xdd\x5b\xe9\x39\xf9\x80\x58\x8e\x5a\xea\x8e\x5b\xea\x86\x06\x1f\xcf\xbd\x34\x7d\xe0\x36\x46\x09\xda\x6e\x6f\x4b\xe0\xee\x4d\xe2\xed\xd4\x76\x5b\xc4\xc0\x1d\x42\xde\xa7\xa4\x5e\x20\xab\xb9\x49\x0e\x98\xa4\x6f\x2c\x0d\x61\xe8\xa1\x7c\xbb\x9d\x39\x6f\x4b\x45\x42\xc9\x72\xdb\xe7\x44\x0c\x5a\x5f\x95\x2c\x74\xaf\x52\x11\x83\xb2\x47\x63\x41\x89\x39\xc5\x00\xa6\xb2\xc8\x9f\xa0\x36\xa7\x44\x52\xb1\xf7\x38\x5d\x5c\xa1\x18\x94\x78\x15\x1f\x79\x69\x65\x06\x83\xa3\x57\xcd\x3c\x9b\xb5\x80\xe0\xa0\x6e\x9c\xa8\x14\x88\x17\x8c\x5e\xe7\x88\xf5\x97\x14\xe5\x7d\x42\x79\x3f\x2f\x36\x92\x6d\x0e\xf4\x08\xfb\x1b\xc5\x65\x6f\x68\x76\xb3\xc2\x59\x5f\xb0\x3f\x7d\x94\xff\xef\xe3\xfc\x2a\x5d\x4f\xfa\x57\x9c\x6f\x26\x27\x27\x97\x98\x8f\x30\x3d\xb9\xf9\xf1\xe7\x07\xec\x32\x72\x0c\x4e\x0b\x9b\x3d\x24\xd0\x79\xa5\x41\x3f\x5f\xe2\x05\x4f\x74\x02\x04\x93\xf9\x47\x94\x41\x54\xe6\x15\x43\x97\xdc\x3a\xdb\xd2\xb0\x00\xda\x14\xec\xd2\xec\x98\xda\x44\x97\xec\x6d\xb5\x95\x58\x88\x16\x3f\xe7\x68\x99\x1c\x8d\xa1\x36\x25\x92\xbd\xcc\xd0\x7c\xbb\x8d\x6b\x25\x89\xfe\xed\x08\x26\x10\xd0\x59\x36\x1c\x52\x3a\x64\xae\x5c\x8f\x69\xfd\xc3\x83\xc1\xa0\xb2\xec\x31\x1f\x67\x0f\xe6\x53\xf7\xc7\xe4\xb6\xec\x35\x27\xaa\xb3\x4d\xcc\x24\x83\x32\x72\x79\x54\x3f\xcb\xe8\xf9\x46\x4d\x9c\x54\x4b\xb1\x25\x7a\x29\x95\x24\x4a\x71\x89\xa0\x2c\x61\xb5\x95\x4d\x3b\x2b\x67\x1a\xa7\xde\x7e\x25\x85\xd9\x77\x3d\x86\x28\xf8\xff\xd8\x7b\xb3\xee\x36\x8e\xa3\x61\xf8\x9e\xbf\x02\x9c\x2f\x1f\x3c\xfd\xb2\x01\x01\xa4\xbc\x41\x1a\xd3\xb2\x16\x5b\x4f\x2c\x4b\x91\xe4\x38\x09\x82\x87\x67\x08\x34\x88\x89\x06\x33\xc8\x4c\x83\x12\x4d\xe0\x9c\x24\x5e\xe2\xc4\x49\x9e\xd8\x4a\xe2\x2c\x96\x92\x78\x49\xec\x38\x8b\x95\xc4\x89\x96\xd8\xbe\xd0\xfe\x5e\xf8\xf9\x0d\xe4\xa5\x6e\xbe\xbf\xf0\x9d\x5e\xa7\x7b\xa6\x07\x00\x45\xd1\x92\x6d\xfa\x1c\x8b\x85\x9e\xde\xbb\xba\xba\xaa\xba\xaa\x7a\x08\x5b\x5e\x9c\xbf\x66\xa2\x28\x7b\x1e\x43\x2d\x9b\xa4\x4c\xb4\x8a\xfa\x82\xe4\xaf\x47\xaa\x58\x5a\x72\x4f\x1b\x8e\x0d\x21\xcb\x91\x32\x33\x49\xcd\x44\xb1\x98\x83\x80\x94\xb8\x08\x8a\xc2\x14\x0a\x64\xc9\x52\x14\x0f\x0c\x13\x42\xb3\x99\x76\x44\x25\xa3\x1a\x52\xc9\x92\x3a\x99\x13\xb4\xc4\x5e\xd6\x65\x6d\xc1\x3a\xca\xd6\x9d\x50\xc5\x0d\x8f\xc2\xd5\xea\x26\x5d\x6f\x90\x1a\xe5\xf2\x98\xfc\x34\x26\x5a\x40\xb8\x60\xa8\xe3\x8e\x6c\x4a\xde\x0d\x96\x99\xbe\x31\x4d\x7b\xc4\x59\x16\xd2\x46\x06\x03\xd4\x24\x39\x59\xa0\x66\x57\xa7\x1d\x87\x59\x1b\xf9\xa1\x8b\x6d\xc4\x82\x84\x6b\xd5\xe1\x89\xab\x03\x29\x82\x30\x8f\x6b\x68\xc6\x2a\x58\x33\x58\xc1\xb3\x9c\x97\x61\xcc\x7b\x69\x61\x92\x52\xc6\x71\x8b\x82\xc6\x9e\xf2\xd3\x92\x20\x0e\x2b\xab\x2e\x50\x08\x5d\xb6\x44\x34\x3c\x93\xe0\x6a\x9a\x02\x68\x0b\xa0\x23\x80\x96\x00\x7a\xc2\x11\xc4\x6b\xdb\xb1\x33\x8d\x06\x03\xcc\xae\xab\x11\x80\x7d\xc7\x93\x70\xac\xf9\xa0\xb4\x9d\x14\x42\x43\xbb\xe3\x44\x65\x74\x0a\x35\x6d\x04\x06\x83\x40\x80\x64\x6d\x5a\x4e\xa7\x3e\x9b\xe2\x5b\xb4\x9d\xa8\x72\x70\xed\x06\x7f\xe3\x3b\xfb\xa9\xd5\x48\xfa\x40\x38\xb8\x5e\xc1\x0b\x0a\xf4\x36\xbe\xcd\x23\x44\xf5\x66\xac\x2f\x59\xd2\x09\xa6\xe9\xb8\xf5\x5e\x03\xf6\x8b\x45\xb7\xde\x6a\x14\x8b\x76\xd3\xc9\x7b\x6e\xa2\x09\x60\x2f\xf7\x63\x0f\x30\x3f\x3a\x76\x6b\x4d\xf8\x83\xa3\x68\x69\xff\xa9\x9e\xdd\x83\x96\x67\x01\xd8\x04\x53\x82\xa1\xec\x3a\xa1\xe0\x21\xbb\x8f\x54\x8a\xc5\x69\xbb\xe7\xd8\xbe\x13\xd6\xbb\xa5\x6a\x03\xd4\x2b\x0d\x20\x26\x74\x57\xb7\x54\x02\xbb\x78\x4f\x69\x26\x9f\xf0\x4a\x24\x0f\x6c\x3a\x3e\x63\x16\x45\x9b\x3d\xd8\x24\xc4\x35\x51\xe2\x8c\xbb\x2f\x4a\xe9\xf2\x36\xac\x21\xbc\xe3\xf6\x25\xa3\x2f\xa0\x91\xf9\xec\xa1\xac\x10\xa7\x1c\xb6\x12\x39\x2b\xd1\xed\x81\x8c\x32\x19\x69\xe4\x0c\x8d\x3d\x0e\xb3\x75\x96\x53\x1b\x7a\xcc\x54\x67\x35\xc9\x9f\x6a\x9c\x15\xaf\x6d\xab\x7e\x49\x40\xbb\x2c\xe2\xbe\x4a\xac\x5f\x36\xb3\xda\xe2\x5f\x8e\x1f\x7a\xf2\x31\x37\x8a\x53\xf9\x79\x2a\x7d\xa0\xef\xb1\xb0\x1f\xb4\x9e\x90\x45\xf5\x8c\xd4\x86\x73\xd1\x9c\xd5\x34\x63\xbe\x17\xa0\x52\xbc\xbc\x24\xf5\xf7\x49\x92\x19\x3d\x65\x01\x36\xbf\x4b\x28\x40\x91\x7b\xa7\xc3\xa0\xa0\x32\x6b\xe8\xd8\xf2\x92\xe6\x70\x93\xd8\xb9\x33\x0b\xdf\x10\x63\xaf\xbd\x02\xd8\x53\x57\xfa\x7b\x22\x53\xf2\x44\x0b\x8b\xc5\x1d\xdf\x2c\xc7\xcb\x4b\x5f\xda\xc1\x36\x39\x7d\xd0\x35\x95\xbf\x1c\x13\x89\xde\xae\xc0\xd2\x4e\xe5\x2e\x25\x64\xed\x50\x0c\xa6\xef\xe6\x03\x3b\x84\x41\xb9\x49\x41\xa8\x7e\x3d\xee\x61\x1f\xb1\xaf\x98\x82\x50\xa3\x5a\x1d\xdc\xf5\x8f\xb9\x6d\x64\x87\xa3\x57\x41\x9f\xd4\xad\x43\x58\x36\x71\x86\x8d\x67\xa3\xc1\xc0\x52\x6d\x81\xfe\xfb\x9b\x3b\x76\x2c\x41\x2d\x89\xa5\x94\x2d\xba\x8f\x93\xb9\x71\x32\xee\x92\xd3\x38\x39\x18\xa4\x90\x24\xaa\xb1\x76\x53\x1c\xbb\x8f\xfc\x29\xd0\x19\x75\xac\xfb\x66\xf0\xcc\x7d\xd6\x7d\x49\xc5\x74\x5a\x27\xa9\xb8\x44\x98\x0f\x94\xd8\x1b\xee\xa6\xab\xf0\x88\x05\xe6\x93\x16\x77\xf0\x44\xbb\xfc\x7f\xe6\xc1\xee\x6f\xee\x60\xbf\x76\x2c\x75\xa1\xcc\x3e\x83\x67\xac\xdd\x3b\x44\xd9\x9a\xda\xdb\x1d\xf1\xf2\xd2\x23\x96\x39\x2b\xff\x68\x58\x5b\x3f\x74\x5b\xa5\x24\xf2\x53\x64\x7c\x59\x9f\x87\x41\x1c\xbd\x89\x14\xef\x47\xe9\x73\x98\xb6\x73\xa7\xd2\x06\xfd\x67\xba\xc2\x1e\xb6\x8c\x32\xd2\x33\xe1\xa2\xa8\xa7\x20\x6b\xbf\xe0\x06\x05\xa5\x7f\x65\x4b\x3c\x01\x28\xaf\xc6\xa4\xc1\x24\xb5\x32\x1b\x0c\x6c\x06\x38\x88\xef\x19\x54\xf6\xdd\x18\x1f\x14\x33\xbf\xc3\x02\x33\x55\x00\x60\x30\x54\xef\x68\x13\x63\xe5\xd4\x4a\x61\x28\xee\x61\x4b\x42\xcd\xb3\xa9\x5b\x56\x7d\x06\xc5\xf9\xef\x39\x78\xc6\xda\xa1\xad\x83\x05\x43\x9e\xc8\x5f\xac\x4b\x7d\x75\x9d\x7a\x03\xc6\xe4\x9f\xbe\xa3\x9a\xbb\xc6\xc8\x6f\x97\xf9\x8a\x7d\x2b\x2e\x2f\x20\xf7\xc4\x42\x8c\x50\x00\xa0\xef\x54\x76\xf9\xbb\xfb\x82\xd1\xf0\x67\x66\xd8\x3a\x35\x9d\x7e\xdd\x6f\x4c\x11\x5a\xd4\xd4\xe6\xca\x83\x15\x30\x1f\xd8\x4d\x68\x95\x08\x61\xa2\x2f\x48\x33\xa9\xa7\x09\x6a\xd9\xec\x21\xac\x10\xca\xa5\x17\x88\x45\x01\x30\xb4\xcd\x63\x0f\x9c\xca\xae\x60\x77\xa2\x43\xa3\xca\x39\x65\xb0\x76\x64\xe3\x7a\xd0\x00\x60\x48\x50\xc8\x05\x70\x43\xd5\xb0\xc9\x3b\x68\xaa\xce\x46\x30\x36\x6c\x89\xae\xdb\x8c\xc2\x92\xf4\xed\x5e\xec\x7b\x7e\xab\x24\x9e\x6d\x9d\x90\xe6\x49\xd4\xc2\x9f\x99\xeb\xff\xac\xc7\x30\x2a\x37\x43\xdf\x77\x7b\x31\xfa\x32\x5a\x89\x61\xe0\xd0\xf7\x96\xe8\x5b\x52\xd0\x73\x50\xb9\xed\xbb\x18\xa3\x80\x7e\x0c\xc9\x96\x89\x9f\x74\x9f\x5d\x31\xbc\x27\x24\x86\x8a\x32\x72\x20\x74\x1d\xf9\x9e\x6f\xec\x54\x76\xc5\xbb\xd1\xae\x78\x66\x06\xb8\xf5\xb8\xa1\xc8\x85\x71\x83\x05\x80\x30\x1c\x08\xab\x04\xe9\x6b\x28\x39\x1f\xab\x00\x36\x5d\xdf\x5f\x74\x9b\x27\x6a\x89\x41\x67\xa9\xda\x18\x0e\x6d\x97\x6c\x82\x3e\xdd\x27\xb0\xe9\xf4\xcb\x22\x23\x6c\x3b\x91\xed\x33\xca\xd2\x31\xce\x84\x17\x34\xc3\xae\x17\x2c\xed\x15\x25\xc8\x6c\x30\x2d\xdb\x9e\x68\x29\x86\x9e\x10\x87\x8c\xe6\xa5\x9e\x89\x85\xd4\xbc\xe8\x02\xf6\x07\x01\x30\xac\xd9\x9e\xb3\x3a\x84\xf4\xe8\xa7\x6e\x6f\x4b\xc8\xe4\x33\x52\xa0\x19\x72\xea\x20\xd2\x69\xcc\x8b\xc7\x5a\x71\xe8\x71\x67\x22\xc1\x1f\x87\x0e\xcd\x0a\xe8\x64\xf0\xea\x42\x58\xa7\x55\x79\xd2\x88\x03\xdb\x49\xed\xa4\x7e\xd5\x4e\x77\x35\x3d\x39\xb5\x26\x4c\xa6\xc6\xa8\x0f\x68\xeb\xcf\xdc\x4a\xc7\xa8\x55\xea\x48\x77\x0a\xd7\x10\xa4\xdb\xb0\x16\xc1\x13\x68\xa5\x46\x1f\x66\x91\x53\x2c\x98\x9f\x79\xdb\x23\x7d\xa7\x0b\x0f\x40\x39\xee\x71\x14\xa8\xc0\x00\xd4\x3c\xfa\x42\x5d\xcf\x0e\x00\xf4\x86\xc3\x14\x1b\x2a\x76\xb3\x6e\x48\x82\x6d\xcf\xf6\x01\x10\x43\xae\x77\x1a\x80\x49\x4f\x94\x04\xec\xed\x47\x91\x87\x5a\x7b\x79\x51\xd3\x8a\xc8\x24\x9c\x4d\x52\x7c\x61\xb4\x46\xd9\xfe\x55\x6c\xb1\xc8\x20\x98\x8b\x4f\x22\x90\xc8\x2e\x61\xda\xa5\xb1\x34\x8b\x5a\xbb\xbb\x01\xde\x2a\xb3\x80\x29\x54\xde\x73\xf4\xe8\x9e\xaf\x2f\xec\xdf\xb3\xf7\x09\xc7\x7a\x14\xb9\xcd\x4e\xd9\x82\x22\xf5\xc9\xfd\x4f\x3d\x7e\xfc\x09\xc7\xaa\x37\xac\x4c\x7c\x3a\xbd\xa7\x82\xc0\x94\x4e\x20\xe3\x63\xd2\x7a\x6e\x74\xaa\xe7\x06\xad\x92\x78\x64\x3e\x27\x97\x32\xfa\x8d\x1a\x69\x65\x02\x1d\x88\xc0\x08\x75\xd4\x98\x52\x19\x7b\xc9\xd2\x50\x2e\x46\x98\x33\x3d\x52\xcd\xc6\xd1\x50\xd6\x9d\xa1\x63\x39\x42\xad\x7e\x13\xd9\xa6\x6d\x81\xcb\x6d\xfa\x5e\x9f\x9d\xc5\xa4\x12\xf3\x6d\x97\x6c\x89\xf2\x72\x1b\x12\xe8\x11\x81\x21\xac\x37\xc0\xd0\xf6\xc0\x94\x70\x18\x14\x05\x22\x65\xc5\xc0\x94\x52\x67\x48\x85\x8d\x6c\x46\xb6\x88\x00\x40\x2a\xa3\xcc\xd7\x2d\xab\x51\x0b\x1f\xa9\xcc\xd7\x13\x5a\x1b\x96\xaa\xa0\x51\x4b\xcf\xc8\x66\x0e\xa1\xec\x53\xbe\xf9\xf8\x62\x74\x76\x19\x81\x5e\x1b\xe6\x5e\x69\xe0\x93\xc4\xb9\xc3\xe4\xab\xad\x8b\x7b\x0a\x56\x44\x4e\x24\x56\x45\x2e\x06\x27\x5f\xa1\x13\x70\x7c\x99\x0f\xea\x41\x72\x3e\xcd\x54\x6b\x15\x18\x38\x81\x2c\xa7\xd3\x48\x89\x48\x21\xb3\x79\x5c\x15\x83\x6b\x91\x03\x98\x11\xca\x43\x6e\xaf\x16\x0c\x6f\x67\x01\xd4\x93\xfe\x19\x0f\x77\x0e\xb9\x3d\xfa\x42\x91\x89\x3b\x10\xe7\x8f\x8d\x40\x59\xeb\xc4\x38\xba\x24\xc8\x6e\xa9\x1f\xc4\x6e\xdb\x68\x7f\x37\x86\xf9\x32\xe6\x5a\x42\xb8\x44\x07\x23\xeb\x35\x66\xe3\xec\x0a\x45\x1d\x91\xf3\x8e\x1b\xa1\x4d\x69\xe6\x7b\x0a\x4e\xac\xaa\x33\x6c\xf4\x60\xa2\x0f\x63\x52\xee\xaa\x26\x65\x1b\xa8\xf0\x58\x35\xc5\x3a\x6c\xc2\x89\xbe\x53\x33\x9c\xda\x76\xa3\x57\x61\x82\xe9\x9f\xe4\x59\xe7\xcd\x19\x4e\xe6\xce\x7c\x32\xb5\x72\xb6\x03\xe3\x6c\x7b\x93\xcf\x36\xe5\x75\x4a\x54\x47\x60\x14\x14\x6e\x6f\xc2\x26\x99\x74\x6d\x52\x37\x7c\x1c\xde\xd9\x59\x57\xea\xee\x9b\xf8\x1f\x21\x05\xf8\x59\x29\xa0\xc9\xa5\x00\x1f\xc0\xb6\x53\xd9\xd5\xde\xed\xef\x6a\xcf\xcc\x80\x66\xbd\xad\x4a\x01\xed\x06\x67\xd0\xa9\x61\xac\x81\x62\x01\xbb\x09\x60\xcb\xe9\xe8\x54\x09\xf6\x9c\x4e\x99\x11\xc7\x29\xa6\x6b\xaf\x37\x12\x7a\xbf\x6c\x2b\x5a\x3b\x1e\x41\xa1\x9b\xe2\x4e\x61\x98\xec\xd2\x7a\xd8\xa0\xce\x64\x19\x1c\x63\x7c\xab\xa7\xf1\xad\xc1\x10\x00\x18\x0d\x01\x74\x9d\xbe\xca\xa9\x87\xe2\xe9\xef\xd4\x3c\xb3\xb0\x17\x09\x0a\xb9\x60\xc8\x22\x78\xaf\x0e\xa7\x5a\xd9\xe3\x47\xc6\x7e\x08\xe8\xeb\xfd\x53\xc1\x60\x60\xa7\x35\x0c\x0a\x57\xe3\x24\x5c\x0d\x3f\xe1\x9a\xf5\x5e\x1d\x37\x68\x44\x28\xaa\xf6\x88\x24\x17\xe0\xa9\xec\xc2\x60\x90\xf3\x55\xf0\x08\x69\xa1\x14\x0d\x69\xdf\xc4\xc1\x67\xf2\x09\xcf\x76\x6a\xde\xe2\x93\x58\xb6\x66\x50\xcd\x0a\xc2\x80\x29\x27\xe3\xb2\x35\x83\x59\x85\x53\x5d\xa6\x4d\x08\x01\x0c\x8a\x45\x7b\xa5\x6e\x91\x83\x7d\x26\x9a\xb1\xf6\x79\xad\xbd\x1d\x37\x58\x42\x96\x78\xb8\x39\x14\x4f\xdd\x86\x70\x19\x88\x87\x77\x97\x9c\x58\x44\xe0\x5a\x81\xab\x61\x70\x30\xf0\x30\x7f\x44\x3a\x0c\x6c\xcb\x0b\x3c\x6c\xa9\xde\x07\xcb\x8c\x13\x67\xce\x06\x84\x0e\x2c\x3a\xa3\x24\x88\x94\x82\xfd\x53\x12\xfa\x6d\x3d\x6c\x46\x53\x11\x61\xb2\xa2\x2c\x93\x14\x1d\x73\x84\x09\xcf\x71\x99\xc2\x19\x4c\x79\x83\x81\x4d\x2d\xfe\x0b\x21\x74\x89\x80\x48\x45\x47\x36\x8b\xb1\x43\x85\x52\x3b\xa0\xdc\xaf\xbc\x0b\x88\xa7\x62\x47\x9a\x9e\x10\xb9\xbc\x16\xc1\x44\x9e\x4b\xd6\x93\x4f\xb8\x6e\xaa\x42\x26\x97\xca\xaa\x76\x00\x63\x00\x91\xea\xed\xcf\xf2\x4b\x77\xcb\x62\x11\x95\x43\x42\x8c\x4f\x7a\xbe\xbf\x0f\xc5\x38\x0a\x57\xf6\x8b\x08\x7c\xca\xe2\xc5\xe5\x16\xfb\x68\x2b\xcc\x72\x3c\x64\xbb\x6c\x09\x22\xb8\x48\x84\xca\x56\x86\x21\xa7\x21\x64\xd3\x78\x2a\x45\x02\xaf\x58\xb4\x83\x7a\x28\xc3\x31\xd8\xa0\x91\x47\x0c\x22\x4e\x0c\x3c\x4a\x0c\xd0\x90\x6a\x1d\xe1\x6a\x5a\x1a\x65\x83\xb6\x7a\x11\x5a\x46\x01\xde\x17\xf6\x17\x7d\x74\x14\x05\x2d\x14\x59\x70\xba\x22\x34\xf5\x31\xc2\x9c\x4e\x78\x28\xb6\x83\x72\x32\x9f\xd0\x53\xf2\xe4\xd7\x54\x15\xb9\x96\x58\x2e\x49\x66\xc0\xb0\x01\x88\x58\xe2\xb6\x0e\x07\xfe\x8a\x2d\x7b\xb7\x38\x1c\x6a\x81\x79\x9e\x41\xee\x89\x43\x6e\x0f\xba\x0c\x2d\x38\x2a\x68\x8b\x29\xa2\xdb\x89\xba\xe5\xb6\xac\xa5\x36\xa5\x42\xe4\xd2\x17\x77\x22\x5c\x1b\x9d\x43\xc8\x2f\xe8\x4f\xa0\x15\xc8\x90\xb7\x6c\x18\xdd\x14\x2a\x7b\x31\xc7\x04\x2f\x58\x62\x26\x02\x72\xf1\x6b\xd1\x60\x80\xca\x41\x88\xbd\xf6\x8a\x20\xb5\xac\x57\x54\x8c\x1a\x7f\xbe\x33\xc9\x7f\x03\x47\xfb\xa4\x5c\x15\xff\xbc\xa5\x2e\x24\xd8\xa8\xbe\x00\x76\xe2\x5a\x32\x66\xf8\x29\xa9\xbb\xe4\x7b\xe9\xb0\xda\x93\xc8\xea\x5b\x1f\xef\x4e\x91\xb4\xb3\x22\x76\xa4\x7c\xe5\xc4\x51\xdf\xb4\x11\xe0\xc2\xf3\xc6\x66\xe3\xd3\xbd\xb4\x65\x47\x47\x22\x92\xb2\x4d\xc5\xba\xa4\x10\x07\xa4\x75\x04\x13\xa2\xcc\x86\x8c\x00\x8d\x25\x36\x66\x88\x26\x41\x69\xec\x7a\x8f\x60\xef\xb7\x72\xb1\xd3\x82\xb7\x59\xbb\xa2\xdc\xec\xe0\xe4\x0e\xae\x60\xd1\xf0\xc3\x94\xa3\xc0\x00\xa2\x89\xd6\x5f\xe7\xb8\xc7\xcd\x8a\xa7\x08\x04\x13\xeb\x1f\x08\xb2\x8a\xa0\x0d\xca\xd0\xc4\x11\x8d\xca\x0b\x2d\xd4\x23\x74\x2f\xc0\x84\xbf\x25\x67\xb0\xbc\x4c\xf6\xf8\x61\x2c\x2f\xc5\x6c\x0f\x46\xd4\xb2\x35\x57\xb7\x55\x40\x53\xdc\x96\x0d\x81\xcc\x9d\x98\x59\xe9\x11\xd1\x8f\xc3\x3b\x7a\xdf\x40\xf1\x3a\xb0\x75\x4d\x3e\x8f\xfc\xec\x39\x9a\x26\x9f\xea\xdc\x44\x4c\x2c\x1a\xb8\x8b\x45\x88\x0b\x99\xca\x3c\x62\x00\xc4\x00\x86\x4c\x0b\x4e\x52\x62\x9a\x92\xc4\x0d\x1d\xb7\xd0\x59\xad\xc2\xe4\x02\xdd\x96\xe3\xbf\x38\x2a\x33\x76\x75\x15\xa3\x5d\x5d\x45\xb5\xab\xab\x34\x6a\xab\x43\x98\xb9\x9c\x05\xba\xa9\x1d\xe1\xf7\xe7\xa3\x1a\x2a\xd3\x31\x4e\x3c\x59\x77\x70\x4b\xdc\x2b\xf3\x84\x24\x2f\x12\x38\x7c\x3a\xe8\xf5\xd7\x09\x24\xee\xba\xf4\x99\x0c\xc0\x7c\x50\x5e\x58\x42\x18\x13\x39\x81\x88\x0f\x11\xf4\x40\x2d\xb3\xff\x82\xf9\x80\x73\x45\x5e\xfc\x98\xef\x06\x27\x48\xc9\xa8\x96\xf0\x68\x3c\x64\xd9\xc8\x89\xcf\x8d\x27\x92\xa7\x10\xda\x88\x06\x63\x42\x6e\xc8\x98\xcd\x77\x9f\x5d\x99\x2c\xcf\x84\xf5\xd1\xd0\x40\x7e\xce\xd7\xc8\x3d\x99\xf7\x05\xb9\xad\xbc\x59\x11\xcf\x6a\x8d\x79\xb5\x72\xcb\x22\xa6\x27\x43\xde\x70\xc8\xf4\x11\x95\xd2\xb5\xa4\x16\x2f\x7b\x37\x56\x7f\x34\x59\xfd\x3a\x23\x39\x61\xdd\xc1\x44\x75\x13\x84\xd8\x60\xc5\xde\xe4\x15\xdf\x56\xc7\xc3\xc9\xea\x17\xd8\x39\x51\x9d\xee\x44\x75\x52\x9c\x9e\xa8\xbe\x78\xb2\xfa\xd8\x4e\x98\xa8\xc6\xfe\x44\x35\xca\xfd\x33\x59\xa5\xfe\xa8\x90\xff\xf9\x87\xc4\xa7\xca\x61\x0b\x96\xc8\xac\x7e\x20\xfd\x11\x75\x8f\xa3\xcc\x29\x02\xb8\xad\x88\xdf\xb4\x22\x1e\x32\x03\x13\xda\xc8\x44\x93\xbf\x45\x72\xbb\xbe\xb2\xf7\xb6\xf0\x2e\x09\xd3\xb8\xa1\x13\x6a\xf3\xd9\x7b\x28\x44\x1f\x83\x7c\x02\xb3\xe4\x46\x91\xbb\x32\x99\x51\x41\xee\xfd\xc8\xd6\x89\xf0\x06\x7f\x98\xaa\x91\x1f\xad\xaa\xfc\x68\xb5\x51\xab\x37\x8c\xcf\x31\x28\x92\x1c\xbb\x0d\x10\x11\xbc\x55\x83\x01\xed\xfe\x5f\x28\xfc\xbd\x24\xb2\x70\xdc\xf3\x3d\x6c\x5b\x65\x0b\x40\xd7\x09\xeb\xa1\x22\x6e\x05\x4e\x85\x46\xcc\x96\x92\xf3\xaa\x05\xe6\xdd\x72\xdc\x5f\x64\x3d\xb1\xab\xd0\x95\xd9\x81\xa8\x09\x5a\xa0\x56\x77\x1b\x43\x16\x38\xd0\xd0\x15\x7e\x7b\xc0\x2e\xd9\xa9\xf0\x3a\x8f\x1c\xcb\xaa\x79\x84\x3b\xb7\x13\x03\xce\x0a\xf4\x4a\x55\xea\x70\x63\xbc\x80\x17\xd3\x86\x8a\x45\x6a\xd0\x10\xc8\x86\x10\x28\x16\x03\x29\xda\x0a\xdd\xb5\x6e\x45\x54\xa1\x25\xf8\x7d\x7c\xec\xe8\x7d\xab\xd9\x49\x0a\x99\x38\x58\xd5\x72\xcf\x38\x01\x91\x12\xe2\x19\xc7\x5a\xb5\x66\x02\x1e\xaa\x10\x5a\x60\xc6\x1a\x5a\x42\xdb\x2a\x98\x7b\x04\xe6\xe3\x1a\x9a\xb1\xca\xd6\xcc\xd8\x8b\x72\x7a\xf4\xdf\x85\x63\x4f\xbf\xdb\x30\xd8\x1e\xa0\xa1\xaa\x28\x1e\x3b\x0c\xc6\x71\x8c\xdb\x81\x39\x6c\xf8\x67\x8f\xfe\x24\xfc\xd0\xc4\xf2\xd8\xa7\xf0\x0c\x88\xbc\xdb\xd1\xe3\x83\xa9\x96\x07\xd2\xcd\x2e\x28\x16\xd5\xb8\xa2\x89\x5e\x29\x98\xb7\xfa\x01\xeb\x48\xcb\xaa\x45\x76\x00\xe8\xde\x8a\x11\x9e\x67\x16\x86\x14\xae\xa5\xac\x0d\x15\xf6\xdf\xec\x37\x08\x60\xda\x44\xdc\x03\xc3\xcf\x5b\xf8\xd8\x2c\xd6\x84\x64\xf8\x12\x09\x08\xdf\xe1\xc6\x1b\xc0\x1a\xb3\xf5\xca\x96\x52\x06\xc3\x3d\x7e\xf6\x14\x83\x01\xbf\xd2\x8c\x00\xf4\x9c\xca\x2e\x6f\x77\xb4\xcb\x9b\x99\x01\x41\xdd\x53\xef\xf1\xbd\xc4\x79\x5a\x7a\x51\xe9\x11\xbd\xb2\xf7\x97\xea\xd5\x69\xa6\x59\x71\x93\x8a\xc9\x59\x42\xad\xc0\x59\x14\x86\x7a\xa0\x36\x1b\x28\x96\x5c\xf2\x56\x17\x46\xf4\xf6\xcb\x64\x52\x99\x5e\xa4\xa6\xeb\xa3\xa0\xe5\xa6\x9e\xd8\x64\xd9\x92\x05\x33\x2f\xed\x1d\x66\x12\xf9\x31\x9f\xdd\x67\x99\xbb\xff\xed\x17\xc1\xf0\x5d\x7c\x11\x6c\x92\x58\x6e\x9b\x62\x08\x57\x87\xd4\x8b\x06\x0d\x06\xf4\x31\x19\x5e\x76\x0e\x18\x07\xa2\x62\x68\xad\x20\x86\xc5\x1e\x04\x2d\x84\x6d\xf9\x8e\x57\x0c\x0b\x2e\x2e\x74\xc3\x18\x17\xe6\x2c\xa1\x80\x27\x08\x30\x07\x60\xe8\x78\xf5\x4a\x03\xba\x8e\x57\xaf\x36\x60\xec\x78\xf5\x59\xc5\x01\x85\xdf\xe5\x47\x00\xfa\xfc\x5e\xb8\x8b\xa2\x25\x64\xf7\x61\x0c\x8c\xba\xd2\x90\x9a\x9d\xd3\x6d\x65\xbb\xd0\x37\xde\xc5\xa6\x77\x54\xab\x1f\xf1\x00\x39\x77\x7d\x1f\x6e\x20\x58\x9f\x42\xeb\xc4\x00\xc4\x99\x98\x48\xbd\x77\xc7\x7c\x04\x19\xc3\x27\x66\x66\x90\x45\x26\xba\x07\x66\x7d\x9b\xfa\x7d\xde\xa8\x1f\x99\xdf\x59\xc2\x33\xd0\x00\x46\x21\x8d\x79\x44\x09\x5b\xc8\x72\xb8\x89\x33\xec\xe1\x93\x01\x8a\x98\x41\x16\x0d\xaa\x5f\x2c\xba\xe9\x77\x65\x0d\x49\xb6\xd5\x0c\x83\xb6\xb7\x54\x43\xc1\xb2\x17\x85\x01\xc5\x5a\x7e\xa3\x1a\x3b\x6e\x39\x42\x71\xe8\x2f\xa3\xf1\x45\xa6\xe2\x94\x6f\x6e\x2c\x36\x41\x39\xec\xe3\x5e\x1f\x1f\x60\xbb\x84\xb0\x14\x26\x82\xe7\x81\x32\xdb\x47\x76\x38\xd9\xa6\x8b\xc2\x6e\x29\x08\x4f\xde\x03\xdb\x6e\x22\x62\xa7\x46\xc7\x4a\xd8\xad\xe4\x4c\xb3\xe9\x4b\x4d\x61\x8f\x46\x72\x30\x73\x7f\x77\x8f\x0a\xd2\x1f\x4f\x85\x27\xed\x68\xa2\xb5\xe9\xf4\xbb\x6e\x90\x89\x23\xbb\x4d\x12\xb7\x49\xe2\x56\x91\xc4\x6c\xf0\x89\x78\x1f\x67\x26\x6c\x0f\x50\x8b\xcd\x2c\x9b\x61\x7b\x00\x40\xaf\x2c\xb0\x75\x42\xc2\xe3\x87\x84\x31\xdb\x46\xed\x6d\xd4\xbe\x67\x50\x3b\x7d\x92\x12\xac\x66\x68\x3a\x21\x4e\x0b\xfc\xbd\xeb\x38\x7d\x7b\x72\xc3\x3d\x72\x4a\x4e\x32\xd3\x38\xdc\x66\x5a\x3e\x2d\xa6\x05\x87\x09\xcb\x92\x76\xb6\xcd\xac\xcb\xb3\xf7\xc0\x9a\x6c\x53\xf4\x2f\x10\x45\xcf\x88\x3f\xf8\xd9\x09\xa9\x75\x1f\x37\xef\x01\x64\xbd\x3d\x52\xdd\xc7\xcd\xcf\x84\x76\x27\x31\x7c\x70\x3f\x8d\xc7\x41\xb5\xe8\x62\xc2\x57\x84\x2b\x24\xf9\x6d\x69\x40\x2b\x8f\x51\xb4\x4c\xc3\x3a\x88\xb8\xa6\x07\x03\x8c\xa2\x65\xd7\xaf\x4d\x57\x21\x7b\x36\x66\x8f\xef\x87\x27\xf7\x77\x7b\x78\xa5\x96\x72\xc9\x5a\x0c\x43\xdf\x16\x52\xf9\xc2\x02\x13\xe3\x17\x16\xca\xae\x2c\x61\x01\xc8\xa3\xf1\xc6\x8f\xa7\x2b\x9b\xae\x40\xc6\x54\x1c\x8e\x8e\x7b\x5d\xf4\x8d\x30\x40\xcc\x59\xa4\x95\xf1\x61\xe1\x4d\x08\x56\x59\xfc\xc6\xbc\x98\xe6\xda\xc2\x62\x13\x22\xde\x49\xea\xee\xc4\x61\x63\x80\x0c\xee\xa6\x85\xcb\x1e\x1f\xf8\x54\xfa\x71\xec\xd4\xc4\x58\x40\x84\x9e\x6d\xfa\xc8\xa5\x5d\x8f\x6c\xe6\x26\xc7\x03\x47\xb2\x7c\xf4\x83\x13\x23\x4c\x80\xb0\x8f\xd5\x4b\x5e\xd6\x44\xd4\x0f\x0c\x37\xbf\x91\xde\x79\xfe\x58\xf0\xc1\x00\xdb\x01\xac\x56\x68\x50\x10\xd8\x0d\xa3\x5e\xe7\x10\x5b\x4e\x73\x78\x03\x36\x55\x74\x60\x62\x96\xa0\x97\x79\xf7\x9b\x6f\x74\x69\x91\x1c\x39\x91\x78\x5c\x8a\x64\xf2\xa0\xc5\xa7\x1c\xc0\xc0\x09\x52\x9f\xe4\xec\x03\x18\x51\x9d\x38\xcd\xca\x0d\x0a\x38\xbb\x18\x01\x3a\x33\xa8\x8c\x9f\xe5\x1f\xf0\xb3\x76\x00\xa8\x0f\x40\x32\x7d\xea\x65\xb0\x4c\x25\x53\x96\x9d\x50\x30\x84\xdc\xdd\x28\x13\x7b\x57\x5b\x8e\xf1\x6f\xa8\x8f\xdf\xab\x5e\x5c\x72\xdb\x18\x45\xc6\xfb\x42\xe3\xb6\xd6\x3f\xb2\x18\x6e\x2c\x8b\x30\x63\xda\x42\xaa\x99\x10\xc5\x94\x73\x58\x2d\xf7\xc1\x21\x81\x30\x14\x4f\x7a\x11\x6a\x7a\xb1\x17\x06\x2c\xd0\x3a\x43\xa0\x50\x41\xa0\xa9\xb1\x93\x3a\x95\xd2\x21\xa6\xd0\x8c\x9c\xf6\xe2\x2a\xb1\x4f\xd8\x03\x5f\x71\xb1\xa9\x3a\x8e\x13\xcf\xfb\xdc\x8a\xa4\x5e\x69\x80\xda\x2c\x49\x2a\x16\xed\xbe\x92\x08\x65\x8e\x6a\x03\x00\x68\x73\x5f\x35\x65\x47\xd8\x6e\x99\xd3\x07\xd6\x47\x17\xf6\x01\x5c\x65\xe3\xa9\x79\x50\x8c\xa6\x16\x0e\x01\x20\xc7\x02\x59\x62\x9e\x35\x82\xbe\xbc\x11\x65\x81\xb0\x26\xc2\x92\x45\xd4\x0e\x23\xf3\xb5\xf2\x08\x4c\x18\x89\x4a\x5b\x87\x26\xd1\x28\x34\xc1\xdb\x68\x92\x83\x26\x8f\xd1\x35\xde\x2c\x9e\xe0\x93\x08\x05\x5f\x48\x44\xf1\x82\xa6\xdf\x8f\xbd\x65\x0f\xaf\x50\x6c\xe1\x88\xe3\x6e\x1c\x71\xe2\x7c\xc4\x21\xd8\x92\xb8\xe0\x41\x5f\xe2\x11\x11\x63\xfc\xdd\xb3\x83\x81\x7f\x07\xee\x6c\xd1\xa9\x1e\x6a\x62\xd4\x2a\xcc\x16\xc2\x48\xde\xdc\x36\x15\x24\xf5\x1f\x99\x2d\x16\x9b\x0c\x03\xfb\xe5\xb8\xe3\xb5\x89\x10\x63\xc4\xc2\x58\xc7\xc2\x18\x36\x13\x2c\x0c\x13\x2c\x74\x05\x16\x52\x0c\x92\x68\x78\x97\x58\xdd\x7e\xe2\xf8\x1e\x40\x6f\xf2\x0d\xc0\x1f\x29\x1f\x7b\xac\x7e\x7e\xb7\xc1\x17\x86\x5e\x1e\x73\xbb\xe8\x70\x74\x07\x0e\x57\x81\x33\xdb\x87\xec\x17\x05\x69\xee\xc4\x51\x4b\xb0\x66\x1b\x57\x3e\xef\xb8\xb2\x09\x1c\x61\x3f\x4b\x6e\xcb\xec\xad\xb2\x45\x68\xa2\x7a\x7d\x7f\x46\xc2\xd5\x6e\x06\x3d\x3d\x0d\x3d\xb7\x90\xed\x93\xe8\x49\x30\x13\x36\x53\xe8\xd9\x9f\x6f\xa6\xd1\xb3\x5f\x2c\x5a\x01\x65\xee\x2c\xf9\xd8\x36\x5e\xe9\xa1\xc3\x6d\x96\xa9\x58\x4c\xe2\x26\xa5\x3f\x57\x1b\x80\x57\xc8\xbb\xdb\x84\xf4\xe9\xdd\x9a\xad\xee\x02\x98\xcd\xc2\xdd\x2c\xaa\x00\x4c\xca\x0c\xfa\xf9\xcc\xa0\xdb\x6a\x49\xf4\x6f\x4a\xf4\x9f\x94\x19\xe3\xe8\x6f\x36\xb5\xbd\xb7\x48\xe5\xf6\x2d\xc6\x67\xed\x16\x63\xe3\x24\x43\x44\xa6\xd8\x94\x75\xee\x58\x3a\x02\xb7\xde\x7e\x37\xca\xa7\x52\x39\xa7\x33\x74\x85\xc9\x6f\xec\xb8\xf5\x4a\x03\xf6\x1d\xb7\x5e\x25\x67\xac\x5b\x9f\x25\xb4\x4c\x37\xf9\xc5\x60\x8a\x3f\x29\xd7\x14\xb5\xc9\xdf\x92\xa2\x92\x9e\xb4\x79\x4f\xdc\x38\xf6\x96\x02\xbb\x09\x93\x07\xea\x32\x74\x27\xe2\x74\xc7\x8e\xf3\x4e\xdc\xc4\x7a\xb8\x0f\xdb\x1b\xa1\x30\x2d\xaf\xdd\xde\xa6\x2e\xdb\xd4\xe5\x6e\x52\x17\xf5\x62\x44\xe7\x96\xdb\x7e\xe8\xe2\x5c\xc6\x64\x23\x34\x65\x96\x3e\x66\xc1\xd9\xb4\xcd\x52\x15\xfa\x2c\xc7\x22\x2a\xcc\x5a\x13\xf0\x3e\xfc\x4e\xd8\x77\xfa\xec\x69\xaa\xbe\x6a\xe5\x93\xc7\x61\xd8\xb9\x6a\xa6\x32\xd9\xb1\xb6\x0f\x23\xe8\x6d\x68\x9f\x6f\xc0\x59\xe0\xee\x4b\x56\x7a\xc0\x32\xf1\xce\x09\xc7\x01\xcf\x89\x36\xca\x9c\x86\xf9\x57\x6b\x06\xb7\x91\xd9\x3b\x76\xec\x08\x04\x71\x9d\x50\x2c\xec\x3d\xed\xfe\x90\x7f\x04\xb9\xe5\x05\x4f\x62\x64\x90\x60\xa4\x37\x04\x89\x45\xe5\x24\xb7\x76\x1c\x1f\x4d\x4e\x14\xf7\xd6\xc9\x33\x12\x51\xf9\x6f\x66\xe4\x9e\x1f\xdc\x91\x8b\x0b\x5a\xee\x49\x6f\xc3\x27\xd3\x2e\xc8\x3d\xb1\x61\x81\x2d\x7f\x4f\x40\x57\x53\xcc\xbb\x1b\xe3\xc3\x82\x91\x3a\xf9\x34\x43\xc6\x1f\xee\xa1\x4a\x0b\x73\x7f\x52\xb3\x97\x04\x30\x55\x85\xb9\x2a\xe1\x3f\xc5\x05\xb8\x17\x53\x0b\x06\xdb\x07\xf3\x44\x96\x74\xe7\xfb\x8a\x6e\xa3\xe6\x3e\x32\x5b\x2c\xda\xb2\xf4\x6c\x03\x40\xf5\x3b\xa8\xf1\x5f\xbe\x59\x06\x0c\x75\x19\x30\x84\x0a\x4f\xa6\xef\x0b\xe1\xe1\x20\xc5\xc0\xfe\x46\x08\xb6\xd9\xe1\xe1\x33\xb4\x45\x36\x72\xea\x77\xbc\x16\x3a\xd6\x6f\xb7\xbd\x53\x14\xa9\xc9\xcf\x3d\xf4\x57\x9e\xca\x4c\x44\x8d\x26\xec\x02\x61\xbb\xad\xa4\x86\x82\x17\x17\xe4\x87\x16\xe1\xf4\xda\xee\x72\xd8\xa7\x18\x29\x2b\xb6\xa0\xf4\xe8\x8e\xe0\xaa\xd7\xaa\x69\xb3\x46\x84\xf7\x30\xe0\xcf\xfe\x89\x23\x59\x59\x91\x7e\x80\x3d\xbf\x66\x3d\x54\xae\x94\x2b\xd6\x70\x02\x6b\x86\xf1\x0a\xbc\x68\x30\x08\x46\x10\xdf\x94\xe6\xed\xee\x9d\x10\x79\xf2\x87\xf0\x18\x89\x37\x8a\xe3\x9f\x7f\xfc\x86\x84\x97\xb5\x03\x07\x41\x7d\x9d\x02\x30\x1f\xd4\x94\x19\x0e\x80\xea\x56\x2a\x95\x51\x30\xd6\x76\x44\x3f\xd9\x11\xfe\xc6\x89\x7e\x73\x9c\x8d\x91\x89\xe4\x35\x05\xef\x12\x26\xcb\xdf\x4f\x96\xdf\x1f\x72\x8f\xa1\xbb\x7d\xed\xe9\x26\xd7\x9e\xf1\xc6\xf4\x6c\x71\x7f\x11\x47\x6e\xf3\x53\xe5\x47\xb6\x75\xcd\xdb\xba\xe6\x3b\xa4\x6b\x16\xe8\xbb\x79\x85\x33\x0e\x4b\x2d\x17\x7f\x51\xae\xe6\x08\x55\x3d\x12\xa1\x51\x8c\xc6\x66\x8f\xf6\x11\x64\x55\x9c\xea\x76\xfe\x35\x1a\x0e\xef\x36\x4d\x45\xe0\x76\xaf\xee\x4c\xae\x2f\x9f\x47\x4c\xd2\xf1\x68\x13\xec\x2b\xab\x61\xcb\xd8\x57\xb1\x1e\xdb\xcc\x6b\x86\x79\x65\x9e\x43\x1b\x62\x5d\x71\xf8\xf9\xc7\xec\x2f\x04\xe3\x7a\xf7\x49\xec\x6d\xb3\xad\x13\x1b\xbe\x6f\x55\x7c\xac\x7c\x93\xf6\x89\xbd\x1e\x26\x5c\xfe\xf1\xbe\x11\x99\xc5\xf7\x74\xba\xe3\xdd\x0b\x74\x27\x4a\x90\x2f\x18\x4e\xa2\x2d\x9d\xd0\x79\xf4\xee\x13\x13\x43\xbc\xc0\xb1\x57\x33\x79\x4b\x9a\x55\x95\x07\xe1\x49\x1b\x4c\x32\x5f\xfd\xc0\x3b\x75\xd7\x27\x6c\xfb\xce\xf2\xf3\x73\x67\x69\xf6\xf1\xac\x82\x7a\x45\xbf\xc4\xbb\x43\x88\x4e\xf0\x97\x3e\xc1\x33\x01\xaa\x4f\xe6\x16\xba\x8d\xe9\xdb\x98\xbe\x09\x4c\xcf\x8d\x4f\x71\xfb\x48\xdf\xc7\x4d\x5b\xf3\x10\xb6\x3d\x18\x8e\x44\x79\xee\x05\x3b\x32\x70\xc5\x56\xf1\x38\x6c\x18\xc7\x58\x0f\xc4\xa4\xb1\xc4\xfd\xcb\x28\xc0\xa8\x05\x57\x17\x92\x53\xbd\xef\xfb\x50\xdc\x06\x25\xf0\xe1\x1e\xe9\x58\xcc\x92\xb4\xfb\x2c\x96\x94\x38\xe7\xd6\xf2\x43\x0f\xb3\x17\x5c\x4c\x01\xc0\xca\x6d\xb7\x89\xc3\x68\xe5\x40\x18\x99\xa3\x75\x95\xe9\x8b\x26\x83\xc1\xea\x50\x7f\x31\x8b\xbe\x71\x98\x2c\x0d\xc9\xa0\x05\x36\x4e\xd8\x95\x54\xb7\xac\x85\xc4\xb9\x77\xd5\x1c\x2f\x38\xbd\xfe\x49\x09\x30\x84\xb1\x16\x81\x97\x3f\xf4\x94\x20\x05\x7e\x16\x68\xb5\xc4\x86\x5a\x60\x04\x60\x34\xd5\x0c\x83\x38\xf4\x51\xf9\xa4\x1b\x05\xb6\x55\x57\xd1\xa6\x21\x76\x0a\x6a\x91\xbd\x12\x23\x5c\x20\x85\x9f\x0d\x03\x04\x0b\x8b\x7d\x5c\x10\xa2\x1c\x4f\x24\x92\x77\x10\x62\x92\xb1\xdf\x2b\x5b\x34\xaa\x73\x8c\xf0\x93\x6c\x35\xd5\xed\xc1\xfc\x59\xe9\x95\x2f\xfb\x4a\x18\x3d\xd8\xef\xb5\x5c\x8c\x0c\xd9\x37\x6b\x3b\x67\x68\x0e\x62\x30\x84\x6a\x92\x61\xfb\xde\x7e\x83\xa6\x87\x16\xe9\xf4\x0b\x3e\x16\xa5\xf0\x3a\x1a\xaa\x01\x41\xd4\x89\xa0\x8b\xcb\x74\x0c\x38\xf2\x96\x96\x50\x64\x73\xa7\x65\xee\x4c\x6e\x41\xc4\xf0\x41\x38\x99\xe7\xcd\xb4\xf8\x4e\xe7\x5a\x4f\xd2\x8a\xa4\x31\x26\x41\x18\x94\xee\x08\xd6\xfd\xda\x59\x57\xbc\x38\xe3\xb9\x6d\x08\x6c\x20\x72\xd1\xde\x74\x53\x05\xe4\x03\x8e\xe6\x18\x29\x0a\x91\x54\xec\x11\xd3\x73\x6d\x49\x77\x7a\xc5\x93\x3b\xcf\x0c\x26\x09\x5b\x6d\x76\xf4\x26\x22\xba\x97\x76\xf4\xf6\x98\xa3\x77\x1f\x37\x47\x75\xdd\x14\xc2\x61\x63\x23\x00\xbc\x17\x52\x52\x1a\xe5\x8e\x8e\x46\x9c\x03\x66\xbd\xca\x5d\x88\x0f\x2f\x93\x30\x27\x5d\x84\x4b\xc0\xc5\x62\xc5\x71\x88\x98\x7b\x67\xac\xcc\x54\x9b\x09\x1f\xb9\x31\x2e\x54\x2d\xc1\x71\x61\x72\x22\x13\x0c\x48\x62\x39\x0c\x06\x51\xdd\xa2\x3f\x4b\x88\xc6\x76\xa0\x91\x23\xc9\xf1\xe2\x38\x5e\xb1\x68\x67\x45\xe8\x74\xfc\x08\x0b\xa4\x63\xf5\x07\x00\x30\x46\x85\x8d\x5b\xa7\xb6\xf7\xe9\x63\x71\x83\x02\x6d\xb7\x40\x27\xb1\x40\x5b\x86\x05\x19\x2c\x1d\x16\xc2\xa8\x60\x59\xa0\x70\xd2\x8d\x0b\x3d\x37\x8e\x19\x55\x56\xeb\x28\xb0\x95\xbd\x4f\xbe\x4d\x87\xf2\x62\x03\x64\x10\x24\x5c\x46\x51\xe4\xb5\x08\xef\x23\x5f\x24\xc9\xbe\x09\x76\x67\xf1\x43\xb4\xa3\xb2\xbf\x82\xef\x44\xf4\x69\x58\xf1\x50\xac\x31\x54\x37\xc9\x30\x61\xb8\x6e\xa6\x01\x49\x7c\x67\x23\xaa\x6f\x63\x91\x98\xf4\x03\xdd\xfc\x1c\xb3\xed\x3a\x1b\x56\x7f\x24\xdd\xdb\x88\x0a\x64\x68\xbb\x60\x30\x48\x35\x35\x8a\xbd\x1f\x0c\xac\x3a\x8b\xb3\x5f\xd8\x23\x86\xdc\xb0\x1c\x47\x98\x55\xcb\x78\xf2\xf2\x9d\x61\x16\xb3\x3c\x11\x0c\x32\xda\x34\xa5\x7d\x72\x80\x4c\xc6\x49\xc7\x3d\xc2\xf5\xe4\x32\xd1\xb6\xf2\x96\x74\x9a\xdf\xf1\xda\x36\x2a\x77\x5c\x46\xf4\x12\xc1\x46\x6e\x34\x30\x35\x32\x64\xfb\x06\xf0\x80\x57\x1d\xaa\xdb\x22\x4a\x73\x53\x58\x7b\xe3\x55\x9e\x83\x84\x5b\x1a\x0e\x1b\xfc\xe5\x6a\x37\xbb\x85\x7a\xee\x12\x2a\x61\x0f\xfb\x48\xca\x8c\x49\xd2\x84\xbb\x48\xde\x69\x63\xf3\x49\x4c\x6b\x42\xca\x93\xd1\x9b\xba\x8e\xe6\xf2\x9e\x6a\xd7\x9f\x0a\xa9\x43\x06\x70\x9c\xb4\xfa\xa4\x17\xe7\x46\xd6\xe9\x20\xb7\xb5\xcf\xc5\x6e\xde\x77\x2f\xf0\x70\x26\x9a\x09\x13\x7d\xec\xac\x98\xa3\x35\x69\x01\x26\x4d\xae\x7a\x22\x68\xce\x52\xdf\x6b\x11\x36\x5d\xbc\xa4\x6e\x0a\x7e\x23\x4d\x5e\xc7\xd4\x2d\x23\xc6\x70\x1f\x82\xd5\x21\x8c\x24\x3d\xf0\xca\x5e\xcb\x31\xb4\x09\xbd\x32\x5d\x07\x07\xf1\x67\x5a\x08\x57\xc1\x7a\x29\x9f\xcf\x8e\xfa\x41\x39\x6e\x76\x10\x99\xfc\xc3\x41\x13\xd9\x16\xf5\x08\x17\x2f\x68\xa7\xbb\x25\x26\xd0\x02\x10\xc3\x00\x40\xcb\x32\x46\x81\x49\xc9\x2f\x39\x63\x8a\x4c\x9d\x9e\x42\xe5\x08\x75\xc3\x65\xc2\x22\x4c\xa5\xe6\x46\x95\x83\xfc\x30\x3c\xd1\xef\xd9\x56\x14\xf6\x31\x8a\x6a\x5d\xd7\x0b\xe8\x34\xd9\x41\x79\x81\xa5\x1d\xf2\x9a\x51\xe8\x7b\x8b\x83\x41\x50\x66\x29\x44\xe8\x01\x65\xb7\x89\xbd\x65\x74\x3c\x72\x83\xd8\xc3\xcc\x42\x21\x7f\x98\x53\xde\xbc\x47\x28\x53\xd7\x8b\x51\x99\x0b\xf4\xaa\xa4\x16\x26\xaf\x70\xa3\x96\xb0\x4a\x1c\x33\xa9\x21\xc4\x84\xfd\x04\xb5\x8d\xe4\x1e\x6a\xa2\xfd\xa8\x2d\x2d\x45\xe8\x24\x2d\xf7\x01\xeb\x66\xd8\xdb\xba\x77\xaa\x0d\x9b\x36\x25\x5c\xaf\x4e\xb2\xe1\x14\xaa\x12\x9e\x40\x41\x2c\xb0\x72\x8f\x0d\xb2\x59\x18\xad\xb5\x60\x45\xdc\x76\x32\x64\xda\x7f\xca\x8b\xb1\x17\x2c\x51\xf4\x3b\xee\x2e\xd9\x34\x7a\x11\xed\xe6\x31\xd4\x73\xe9\x61\x55\xb3\x0a\x83\x82\x25\x92\x8f\x44\xf4\xc1\xe1\xda\x74\x45\xa4\x1c\x45\x3d\xdf\x6d\x72\x61\x9f\x75\x85\xc1\x94\x44\x1f\x27\x09\xfb\x58\xce\xd8\x20\x13\x66\x62\x59\xa5\x5a\xb7\x34\xfe\x5a\xcf\xc4\xfb\x42\x85\x82\x9c\x2c\xbc\x73\x16\x98\x62\x6c\x20\x39\x0e\x78\xcd\x84\xf1\x4e\x7e\x39\xe4\xe8\xe1\x59\x7a\xac\xde\x62\x91\x24\x4c\x3b\x2c\x27\x4f\x74\xa2\x24\x5f\xc4\x2a\x17\xf9\x02\x9a\x8f\x27\x3a\x01\x11\xa4\x82\x0e\x8a\x3c\x7c\x20\x0a\xbb\x47\x22\xb4\xec\x85\x7d\xd3\x14\xd0\xba\xe9\xc7\x29\x5c\x2c\xda\x63\x3b\x9a\xc0\x86\x2e\x2b\x3d\xc5\x02\x02\x60\x08\x09\x79\x33\x48\xc8\x4c\x1a\xa4\x8b\x46\xb6\x71\xeb\xb1\x15\xdb\xf2\x88\x18\x58\xf6\x5a\xd4\x33\x40\x52\x62\x35\xa7\x78\x55\x8b\x3e\xee\x42\x2f\x51\xc9\x86\x01\xb6\x92\x87\xf0\x67\x51\x32\x30\x79\x1a\x8b\x14\x27\x84\x88\x6a\x1e\x9d\x88\xfe\x81\x3c\x92\x56\x66\xc2\x6c\x21\xb3\x66\xd1\x89\x7c\xf2\xe8\x1b\x63\x4d\x64\x07\xb0\x4a\xc4\x5b\xba\xb9\xc6\x6d\x10\x0f\x80\x21\xbb\xd2\x57\x47\xc5\x6e\x6d\x4b\x4c\xb3\xed\x8a\xa9\x64\xbd\x75\xa1\xcb\x7a\x8b\x46\x75\x74\x54\x4f\xb9\xd9\x56\xce\x6c\x4d\x09\x6b\xec\xf1\xbb\x3b\x1e\xb1\xbd\xd3\xbb\x80\xa7\x83\x99\x2a\x18\x42\xb6\xe5\x37\x82\x04\x4c\xda\xa6\xcb\xe3\xa9\xab\x49\x30\x3d\x48\x26\xc7\xa3\x92\xb5\xed\xb1\x19\x0a\x00\x4c\xb2\xf2\xe2\x0e\xc1\x53\xcd\xe6\x7e\x8f\x9d\x33\x13\x60\x2a\xe4\x27\x1d\xe7\x90\xa3\xf1\x53\x12\xde\xc6\x94\x94\xc8\x94\x2c\x7b\xb1\xb7\xe8\xa3\xe3\x8c\x6a\xa5\x35\x7c\xa2\x99\x34\xbb\x9b\x88\x38\xe9\xca\x79\x09\x00\xb1\x83\xe6\x85\xa4\x50\x23\xc2\x44\xbd\xb1\x0b\x97\x4a\xbb\xc4\x6e\xa2\x32\x03\x11\x4e\x05\xbd\x00\xab\x51\xb9\x1f\xb0\x40\x3c\x01\x98\x5a\x8c\x90\x7b\x62\xa8\x26\x25\x0a\xf2\x21\x80\x71\x18\x61\xd4\xca\xe9\xb6\x36\xa8\x6c\xef\xcd\x3d\xd7\x0b\x11\xa2\x3b\x5d\xa1\xcf\xf1\x49\x16\x6b\x0f\xb5\x7f\x4a\x76\xb2\xe9\x05\x3e\x2a\x08\x08\xaa\xb3\x1a\xd1\x78\xb9\xd3\x55\x5e\x0f\xc3\xf0\x00\x08\xe7\x8b\x80\xec\xb3\xb0\x58\xb4\x6d\xa4\x6e\x0b\x04\x80\x42\xed\x42\x8d\xda\xc9\xf9\x40\x80\x3d\x26\x18\x0d\x06\xb6\xd2\x55\xd9\x04\x54\x1e\xfb\x83\x5e\x39\x42\xad\x7e\x13\xa5\x2c\x3c\xe4\x48\xb8\x58\x83\x81\x7c\xf6\x5f\xb0\xe7\x93\xad\xba\xba\x1a\x74\xed\xeb\x0d\x18\x39\x15\xfa\x48\x38\x17\x16\xa3\xdd\xc1\xae\x68\x66\x46\x3e\xdc\x5f\x8f\x1a\x53\x9c\x0d\x2d\x16\x6d\xcc\xb9\x4f\x96\x00\x60\x34\x53\xdd\x1d\x14\x8b\x32\x39\x99\x82\xe4\xd1\x7a\xc9\xbb\x0e\x61\xce\x61\x9e\x92\xd0\xa6\xd9\xc1\xdf\x71\xe3\x03\x6e\x8c\x17\xc3\x10\xdb\x00\x24\x83\x6a\x85\x4d\x2a\x66\x91\x71\xed\xf7\x11\x95\xb8\x1e\x5b\x39\xee\x2e\x3d\xe5\x76\x91\xcd\x25\x17\x32\xb8\x4a\x5a\x08\xe6\x54\x84\x89\xc1\xe5\x9e\x1b\xa1\x00\x3f\x15\xb6\x04\xc3\xba\xb7\xe3\xf9\x2d\x3b\x02\xc3\x21\x54\x1b\xcf\xea\xcb\xa7\xa7\x47\x72\xb4\x9c\x7f\xab\xb5\x79\x05\xd6\x78\xe6\x2f\x3c\x89\xa2\x52\x8c\x7c\xd4\x64\xc1\x61\xc3\x80\x8c\x6a\x87\x9a\x5e\xea\xf6\x7d\xec\xf5\xd2\xf1\xed\x1f\x65\x35\xb4\x50\x33\xa4\x13\x1f\x27\xe5\x25\x93\xa8\x55\x4f\xc4\x68\xdf\xc5\x28\x9e\xa0\x21\x53\x79\xa6\xd8\x93\xcf\xba\xb5\x5d\xdf\x5f\x74\x9b\x27\x4a\x5e\xbb\x94\xbc\xb6\x97\x7d\xa2\x37\xc5\x95\x52\xec\x4a\x9e\x2b\x87\x4d\xd8\x86\x1d\xd8\x82\x3d\xd8\x4d\x24\xd3\xe5\x44\x8d\x67\x2f\x7f\x7e\xde\xd6\x23\x94\x63\x28\x07\xb9\x92\xcc\x50\x54\x2c\xe6\x71\xeb\x58\x7b\xf8\x31\x2a\x27\x3f\x20\xbb\x44\xea\x8b\x2f\xea\x4f\x28\x5e\x77\xac\x45\x65\x01\x42\xc6\xea\x13\xe1\xd9\xc3\x9e\xeb\x7b\xcf\xa2\x68\x5e\xfb\xc5\xb4\x36\x01\xa8\x31\xfe\x7f\xa8\x74\x76\x89\x11\xa4\xe4\x39\xbd\xca\xae\x68\x37\x96\xb4\x43\xec\xb1\xc0\xc1\x84\x6e\x04\x4a\x37\x1d\xf5\xc7\x60\x40\x68\xad\xd6\x55\x42\x1a\x2d\xf6\x04\xb4\xc7\xde\x74\x0c\x64\x97\x9d\xe9\x4a\xfe\xd3\x98\x41\xf9\x04\x5a\x81\x01\x18\x26\xbd\x5c\x54\xf0\x66\x51\x68\xa7\xd8\x15\x09\x5b\x94\xc3\xed\x79\x9e\xba\xa4\xa5\x1a\x51\xa1\xbc\xb0\x40\x57\x73\x61\x61\x30\x30\x96\xa2\xb4\x5b\x5b\xd3\x05\x7e\xc4\x48\xcb\x4f\xa4\x68\x98\x8f\xa2\x36\x8a\x50\xd0\x14\x1a\x2e\x42\x3c\x0a\x1d\x37\x0e\xee\xc3\x85\x45\x84\x82\x82\x58\x8a\x18\xb5\x0a\xa5\x02\x97\xa5\xb4\x1c\x64\x81\x50\x2b\x31\xa8\x42\x49\xd3\x27\xd5\x23\xc3\x3e\x69\x1e\xbd\xaa\xf6\xd3\x0e\x18\x39\x54\x07\x43\x8a\xa8\x10\x2b\xc3\xda\xaf\xbe\xb7\xcd\x8e\xc6\xe4\x96\x92\x37\x74\x02\xad\xc4\x76\x00\x8c\x87\x6e\x58\x47\x0d\x27\xa8\xa3\xc6\x10\xc0\x50\xc5\x8d\xe9\x69\xf5\x27\x0c\x53\x98\x31\xad\x27\x40\x3b\x41\x94\x70\x30\x08\x55\xdc\x05\xc5\xa2\x1d\xea\x88\x43\xd8\x7b\xc6\x31\x83\x72\x84\x96\x51\x14\x33\x48\x3f\x68\xd9\x06\xe4\x57\x33\xdc\xe0\x62\x30\x88\x86\x30\xa4\x3c\xa3\xbc\x8c\xd3\x5a\xa3\x8d\xd1\xbe\xe8\xe9\xf3\x61\x76\x3f\x79\x62\x3f\x41\xed\x23\x17\xb2\x41\x62\x25\x9c\x6e\x21\x9f\x24\x84\x64\x70\x84\x61\x05\x30\xbc\x43\xca\xb9\x53\x8e\x78\xb4\x02\xb3\x03\x15\x50\xad\x53\xc8\xd2\x7c\x77\x25\xec\x63\xf5\x29\x6f\xe8\x92\x2f\x41\x62\x9b\x6a\x19\x8f\x92\x1d\xfc\x1e\x8f\x9a\x20\xeb\x05\x58\xff\xfb\x4e\x86\xa7\x65\x25\xf6\xfa\x6e\x4c\x78\x15\x3f\x9b\xc1\x5d\xe4\xb7\x06\x56\x8c\xdc\xa8\xd9\xd9\x1f\x90\x35\x6f\x59\x50\x96\x95\x27\x21\x80\xcd\x54\xb3\xfa\x06\x48\x08\x9a\x4d\xf6\x8a\x4f\x2f\x73\x06\x83\x7a\x03\x88\xf7\x9c\x89\x84\x51\xaa\x8a\x27\x42\x05\xc5\xf3\x66\x66\x80\xd7\xb6\xa5\x2f\xeb\xb7\xfb\xae\x6f\x47\x75\xaf\x01\x11\x00\xab\x81\xe3\x09\xfe\x98\x23\xd6\x23\xa5\xea\x7c\xa4\x08\x82\xa0\x16\x49\x71\x8a\xb0\x05\x9e\xdd\x76\x42\xdb\x6e\x39\xfb\x6d\xbb\xa3\xdd\x66\x29\xea\x5a\xce\x19\xb3\x8d\xb8\xcb\xce\xd8\xef\x4c\xdb\x89\x3e\x3c\x6c\x17\x30\x30\x5f\x6f\xed\x75\x83\x20\xc4\x94\x96\x14\xdc\x02\xb5\x3a\x28\xb8\x71\xc1\x95\x37\x66\x16\x21\x6b\x94\x71\xc4\x89\x5e\x3c\xcc\xea\xc5\x5d\x45\x2f\x1e\x92\x05\xae\xec\x8a\x77\x87\xbb\xe2\x99\x19\xe0\xd6\x63\x55\x2f\x1e\x4b\xbd\x38\x13\xd3\xe1\x0a\xe1\x89\x09\xc6\x21\x67\xd1\xc6\x80\xc6\x46\xf1\xb9\xca\x1c\xc1\x3a\xc9\x23\x6f\x52\x5c\x00\xc0\x60\x20\x5e\xfa\x9d\x76\x9c\x65\xdb\x03\xea\x39\x2d\xdf\x16\xf7\xe6\x17\xc8\xf1\xe5\x19\x10\x01\xb6\xe0\x02\xbd\xbb\x5c\xb1\x23\x68\xb1\x40\x88\xfc\x66\x5c\xc9\xd4\xd3\x32\xf5\x3d\xbf\x75\x8c\xe2\x04\x0d\xca\xd0\xe5\x1f\xa3\xa1\xb4\xbc\x9e\xca\x33\xa5\x32\x74\x0e\x0b\x2d\x8c\x83\xcd\xeb\x72\x8c\x10\xfc\x02\x3a\xd5\x8b\x50\x1c\x93\x15\xa7\x21\x2c\x90\x87\x3b\x28\x2a\x2c\xa2\x02\x29\x5d\x08\x23\x6d\xa1\xa6\x50\xc2\x71\xa4\xa3\xdc\x50\xf6\x5c\x7c\x84\xab\x0a\xeb\x52\xe3\xe4\x40\xe1\x13\xa6\x2b\x3a\x3f\x31\x5d\xa1\x52\x46\xb1\xc8\xce\x95\xa1\x8d\xb9\x9c\x2a\x67\x8b\x48\x60\x18\xda\x81\x53\x5f\x3d\x81\x56\x6a\x56\xc7\x0d\x5a\x3e\x3a\xdc\x43\x81\xc5\x59\x8d\xcc\xac\x50\xfe\x3e\x0c\x48\x9e\x62\x71\xba\xea\x38\x8e\x92\x42\x73\xf1\x9b\x99\xe9\x2a\x33\xa8\x68\x87\xcd\x7e\x7c\x30\xe8\xf5\xa9\x3c\x35\x84\x6a\x4b\x07\xc8\x37\x73\x53\xbc\x56\x9a\xa3\x58\x54\x7f\xd1\xef\x70\x6c\xdd\x5f\x46\x2b\xad\xf0\x64\xce\x40\x54\xeb\xaa\x30\xe0\x59\xf5\xf1\xf0\x44\x9a\x7f\x9e\x50\x16\x1c\xf6\x08\x69\x76\x97\xd8\x23\x41\x00\x4e\x57\x41\xad\x3a\x47\xaf\xa2\x4f\xa0\x95\xbd\x61\x8b\x06\xb7\xf0\x62\x32\x13\xe6\x12\xc9\xdb\xf1\xe5\x8e\xb7\xd4\xf1\xbd\xa5\x0e\x46\xad\x79\x24\xc9\x56\xb1\x48\x9f\xc9\x4f\x12\x92\xb7\xe5\xd5\x12\x60\xde\x46\x54\x95\x1e\x06\x71\xb9\xe9\x87\x31\xb2\x31\xeb\x8f\x9a\xde\x09\xc9\x07\xad\x20\x34\x64\x53\x8a\x4b\xb6\x51\x4c\x65\x32\xc1\xd9\x79\x64\x82\xb8\xd0\x2f\x4a\xc9\xee\xdb\x7d\x14\xad\xb0\x2d\x47\x76\xc4\xff\x93\x15\x43\x4a\x7c\x67\xcb\x13\xa6\xe4\x91\x16\x4a\x96\x8c\x59\x5c\xee\x07\xde\xb7\xfb\xe8\x60\x0b\x80\x29\xba\x07\x68\x3f\x6c\x30\x94\x1d\x63\x39\x51\xe0\x12\x99\x58\x3d\x6d\xd2\xaf\xaa\x33\xb9\xb3\x6e\x90\x86\x92\xe6\xc5\x01\xa7\x5b\xdd\xa9\x87\x18\x59\x58\x4a\xeb\x33\x5f\xc8\x59\xcc\x84\xe4\x82\x95\xa0\xa0\x58\xbe\x4c\x77\x58\x03\xf5\x46\xda\x34\x2b\xe1\x5f\x98\xae\x75\xbe\xde\xa8\x21\x65\xb4\xec\xe0\x3c\xee\x2e\x1e\x64\xc7\xa6\xb1\xda\x31\xe7\xb7\xc0\xed\x34\x61\xe5\xdb\x4b\x3b\x88\xe7\xad\x52\xd5\xaa\xb1\xec\xfc\xac\x1e\x0c\xac\x8a\x35\x1c\x36\x40\xb1\xb8\x64\x47\x0a\x59\x0a\x28\x97\xb5\x64\x47\xd0\x03\x10\xd3\x3b\xdc\xe4\xa3\x81\x8c\xd7\xdd\x06\x25\x65\x2a\xa5\x82\xfa\xd3\xf8\x2a\x4d\x53\x38\x2a\xaa\xf2\x1f\x02\xd8\x73\xf6\xdb\x1d\xb5\x91\xbc\xc3\xa0\x1e\x6f\xb6\xa9\x54\x43\xf9\x78\x57\xef\x37\x60\x22\x62\x1c\x3e\x19\x08\x3e\x6e\x1f\x8a\x9b\x91\xd7\x23\xbb\x61\xb2\xaa\x00\x54\xf2\x65\x7a\x90\xa0\x56\x5d\xe7\xaa\x36\xd8\xbc\xac\x67\x74\x73\x59\xd4\xab\xfb\x1b\x1e\x68\xaa\x8a\xd1\x2d\xaa\x87\x10\x1f\xe2\x02\x23\x56\x1b\x6c\x57\xa9\x68\x92\x16\xf9\x61\x74\x07\x9a\x64\x35\x4d\xd2\xa6\x3c\xa4\xee\x40\xab\xa2\xae\x54\xbb\xdd\xcc\x5e\x49\xf1\x44\xf5\xe6\x66\xf7\x48\xdb\xe9\x10\xf6\xae\x4d\xff\x57\x94\x65\xa7\x32\x0f\x84\x6d\x48\x59\x26\x09\xd7\xa7\xa5\x34\x93\x0d\x8e\x31\xdf\xa7\x6a\x12\xa8\xa8\xc0\x12\xb5\x57\x53\x51\x5f\x34\x3f\xaf\x6a\xaf\xf6\x67\x42\x93\xd4\x51\x96\xa2\x73\x37\x34\x49\xad\xbb\xa7\x49\xea\x69\x9a\xa4\xde\x1d\xd5\x24\x75\xb7\x35\x49\x9f\x77\x4d\xd2\xb2\x73\xd2\x0b\x5a\xe1\xc9\x62\x91\xfd\x2d\x07\xee\xb2\xb7\x44\xc9\x52\x3a\xa1\xdc\x8f\x51\xb4\x67\x09\x05\xb8\x66\x59\x70\xc5\x59\x96\x12\x8b\x75\xe8\xd8\xc1\xfd\x05\x0b\x3c\x52\xaa\x0e\x06\x4a\xf2\xf1\xc8\x6b\xa1\x00\xef\xa0\x5f\xe0\x92\x63\x07\x06\xa5\x95\x97\xab\xb4\x0a\x33\xca\x24\x46\xc5\xcb\xab\x8c\x81\x3d\x8e\x4e\x09\x52\x04\xa5\x14\xc5\x7e\x0f\x69\xcc\xb5\x74\x71\x7a\x33\xda\x09\x7d\x6a\xf0\x23\x2a\x4b\x95\xb4\x00\x0c\xec\xd8\xf1\x6c\xdb\x77\xba\xb6\xdd\x9f\x48\xbd\x23\xce\x87\x4f\x5b\xcd\xd3\xce\xaa\x79\x7a\x8a\x9a\xa7\x4d\x78\x82\xca\xae\xee\xee\xf6\xae\xee\xcc\x0c\xe8\xd5\xbb\xaa\x9a\xa7\x9b\x56\xf3\x48\x25\x4f\x67\x9c\x92\xa7\x97\x56\xf2\x34\xf3\x95\x3c\x2d\xa6\xe4\x09\x9d\x08\xba\x8e\x85\xd1\x29\x7c\x08\xb9\x71\x3f\x22\x6b\x10\x3b\x3e\xec\x3b\x2d\x3b\x02\x30\xce\xbb\x55\x21\x53\xab\xde\xaa\xc4\xb9\xb7\x2a\x71\xce\xad\x4a\x9c\xbe\x55\x89\xb5\xbd\x1b\x67\xf7\x6e\x3f\xb9\x55\x81\x51\x79\xc1\x77\x63\x7c\x90\x0a\xfb\xce\x74\xf5\x0b\xa6\x51\xea\x4d\xaa\x51\x6a\x79\xad\xa3\xa8\x89\xbc\x65\xb4\x07\xe3\x28\xab\xeb\x91\x7e\x10\x54\xe9\x22\xf8\x52\xea\x41\xc5\x85\x52\x6c\x5b\x32\xdd\x82\x3c\x91\xfc\x20\xb4\x8b\x29\x5b\x8a\xc5\x69\x25\x5d\x26\xe6\x5a\xf8\x31\xcd\x87\x05\x99\x31\x99\x52\x52\xe8\x44\x18\x25\x81\x96\x2a\xd1\xe3\x30\x42\x54\x13\x72\x0c\xaf\xf8\xc8\xa0\xb5\x12\x9a\x10\x4e\x21\x97\x10\xde\xcb\x69\x0c\x2d\x41\xd5\xc4\x0e\x2e\xb7\xc3\x80\x55\x41\xfd\xf3\xc9\xaf\xaf\xba\x91\xe7\x06\x98\x45\xe2\x0d\x03\xfc\x0c\xf2\x96\x3a\x2c\x1c\x2f\xcd\xec\x3d\xcb\xa2\x37\xf9\x5e\x80\x9e\x60\xdf\x62\xfe\xed\x80\xdb\xf5\xfc\x95\x29\x6e\x2d\xd4\xeb\xe3\x03\x61\x80\x1d\x4b\x6a\x52\x22\x68\x15\x2c\x69\x52\x1d\x68\xbf\x3c\xed\x57\x08\xad\x1d\xc9\x2f\x57\xfb\x16\x27\xd3\xc0\x94\x4a\x4c\xd0\xce\x9f\x02\x54\xc6\x6e\xb4\x84\x28\x8b\x44\xd6\xdd\x5b\xec\x63\x64\x5b\x2d\x17\xbb\x25\x41\x59\x4b\xec\x02\x80\xda\x7f\x61\xb0\x8a\x0c\xea\x32\x66\x1a\x85\x02\xcc\x2d\x9c\x6c\x11\x5c\x5c\x59\x33\xd4\xe2\x16\x3c\xea\x3a\x8a\x4f\xcc\xc7\x33\xbb\xbe\x5c\x35\x16\x29\x0a\x25\x26\x43\xe5\xaa\xba\xb8\x52\x90\x7e\xd7\xf5\x84\x42\xfd\x38\x18\x98\x5a\x0a\xa9\x56\x74\x62\xdd\xa4\xaa\x62\x1d\xad\x95\x54\x0c\xe0\x4d\x9a\x49\x32\xab\x0f\x11\x96\x53\xa8\x26\xb9\xd9\x4c\x36\xaf\xee\x89\x22\x57\x8e\xb9\xe5\x8a\x05\x35\x4d\x6e\xdd\x94\xc8\x0f\x9c\x52\xb5\x41\xcd\x0c\xcd\x9b\xcb\x97\xeb\xa5\xcb\xa2\x36\x4e\xed\x6f\x00\x93\x90\x60\x82\x60\xce\xe7\x6f\x58\x1b\x83\xda\x88\xaf\x8a\x45\x0d\x54\x34\x5e\x07\x3c\xe4\xb7\x84\x55\x9d\x79\xf9\xc0\x90\x1a\x02\xd9\x72\x36\x1f\x71\x76\x3e\x44\x84\x2a\xfe\x73\xb7\xf3\x70\x65\x30\x98\x9b\xd5\x26\x9c\x7c\xcf\x4c\x77\x46\x43\xc8\xb0\x77\xa4\x96\x1a\x95\xd9\x91\xba\x07\xcf\x27\x20\x19\xab\xea\x5c\x8a\x93\xaa\xb9\x14\x7b\x88\x4b\xb5\x09\xd1\xca\xa8\x0d\xe5\xf5\xd7\x08\x22\x69\x9a\x96\x08\xf5\x42\x66\xbf\xad\x4f\x5b\xa2\xc6\x26\x4c\xb2\x6e\xc1\x94\xd9\x9b\xd2\x48\x4e\x9c\x01\x15\x4d\xfd\x2a\xc9\x19\xf5\x5d\x63\x9a\x48\x85\x4d\x28\x9f\xf4\x5a\xb8\x93\xaa\x59\xf0\x7f\x50\xaf\x41\x1a\xee\x71\xcf\x96\x0e\xee\xfa\xc7\xdc\x36\xb2\x2d\x5a\x49\xad\x90\x68\x9e\x67\x66\xef\x87\x56\xef\x94\x95\xd8\x40\x8d\x2e\x59\xad\x54\xfe\xdf\x5d\xca\x31\xd1\x75\x57\x16\xd1\x11\x95\xa3\xcc\x4e\xf9\xf4\x0a\x50\x07\xba\xa9\xb9\x9b\xb7\xb8\x96\x56\xe1\x62\x07\x03\x8b\xeb\x69\xdb\x06\x3d\x6d\x3b\x4f\x4f\xab\xf1\x60\x75\x93\x93\xc6\x66\xf5\x44\x5d\xbb\x6f\xd0\x0c\x9b\xf0\xb4\x1e\x8e\x57\x81\x4d\x58\x17\x0d\x3b\xac\xa8\xc3\xf4\x72\xd9\xf5\xaa\xbb\x1b\x6c\x3a\x53\xc5\xe8\x16\xb3\x8c\xc4\x46\x75\x7f\xa3\xab\x1b\xdd\xba\x7e\x7e\x6f\xaa\x65\xad\xaa\xd1\xad\x6a\x87\xeb\xa6\x1a\x55\x6b\x9a\xa4\xcd\xdb\x56\xb0\x8e\xa8\x2b\xd5\x6e\xec\xf4\x89\xdc\x13\xd3\xff\x15\xed\xe7\xd2\x6d\x99\x0a\x6e\xb5\xb2\x73\x13\x86\x81\x93\x94\x0c\xd9\x15\x4c\xa9\xeb\xe2\x66\x87\x0a\xd4\xb9\x65\x96\xa2\xb0\xdf\x2b\x51\x58\x71\x89\x09\x9a\xfd\x28\x42\x41\x33\xed\x19\x93\x88\xd4\x06\x65\x6c\xc6\x0e\x11\x2e\xc3\x15\xb8\x04\x17\xe1\x02\x3c\x09\xf7\xc3\x53\xf0\x18\x3c\x0c\x4f\xc0\x3d\xf0\x38\xdc\x0b\x0f\xc1\xa3\xf0\x08\xfc\x16\xdc\x07\x9f\x82\x07\xe1\x93\xf0\x00\x7c\x16\x3e\x01\x1f\x83\x4f\xc3\x67\xe0\xb7\xe1\x57\xe1\xd7\xe1\xe3\xf0\xcb\xf0\x4b\xf0\x2b\xf0\x6b\xf0\x1b\xf0\xbf\x20\x42\x10\x23\x18\x21\x18\x20\xe8\x21\x18\x22\xe8\x22\x18\x23\xd8\x47\x90\x08\x9b\x28\xd1\xfe\xb6\x91\xa2\x73\x6c\xa3\xcf\xab\xfe\xb7\x83\x3e\x4b\x76\x8f\x2d\xf4\x99\x50\x57\xf7\xd0\xdd\x53\x17\x77\x91\xb8\xe7\xe0\xb8\xdb\x45\x8e\x95\x6c\x7c\xa9\xad\x38\x8a\xda\x64\x03\x17\x8b\x1c\x20\xe4\x73\x5e\x81\x6b\xe9\x6b\x93\x54\xdc\x22\xb9\x0e\xbb\xa6\x33\x7e\xc7\x1d\x37\x56\x28\x31\xf7\x3e\x86\x18\x48\x05\x89\x8d\x9c\x65\x32\x47\x60\x17\xd8\x25\x87\xc0\xe2\xf8\x78\x6d\x3b\x10\x56\xef\xe3\x08\x7b\x40\x0a\x48\xe7\x4d\x32\x00\xfa\x2f\x6b\x30\x02\x35\x8f\x89\x3e\x43\xa6\xf7\x86\xd1\x60\xa0\xa2\xfe\xb2\xba\xc3\x97\xd1\xdd\xb8\x56\x58\x41\x9a\x72\x7f\x25\xa7\x13\xb7\xa9\xdd\x5f\x42\xdb\xea\xfd\x7b\x57\xbd\x9f\x98\x49\x23\xdd\x90\x29\x31\x50\xd1\x0d\x52\x12\xb3\x66\xa4\xa1\x1d\x0e\xa9\x32\x78\x5e\x42\x36\xa8\xa1\x3b\x74\x7b\x70\x12\x39\xab\x9c\x0f\xa8\xd5\x1b\x30\x42\x31\x75\xcb\x4c\xc0\xbd\x61\x3f\xc0\xb5\x8a\x54\xcf\x8b\x39\x53\x0c\x95\x44\x52\x22\xd3\xd5\x2c\x0b\xfa\x6e\x8c\x8f\xd1\x14\xd4\x92\x69\xa1\xdb\xf2\x82\xa5\xda\x74\x15\x7a\xf1\x1e\xea\x5e\x4c\xe0\x05\x74\xaa\xe7\x51\x4c\x3a\xa6\x55\xb1\x10\xa1\x1e\x72\xb1\x17\x2c\xed\xed\xb8\x51\xcd\xb2\x86\x70\x3f\x72\xec\xd8\x70\x07\xd1\xcf\xbd\x83\xf0\x53\x06\xa9\x04\x03\xd3\x46\xaa\xd3\x55\x00\xdb\xa9\xb4\x50\x80\x87\x18\x7b\x04\x60\x27\x6d\x82\xfb\x24\x1b\x4e\x81\x4f\x60\xb9\x5c\xb6\x00\x6c\xa5\x73\x3d\x15\x16\xf8\x5c\x16\xda\x61\x9f\x7a\xa7\xf6\xd2\x79\x8e\xaf\xf4\x10\x0b\xc8\x44\xc6\x6f\x01\xd8\x35\xf4\x7a\x39\xaf\x87\x4f\x28\xd6\x66\x70\x25\x2f\x17\x69\x63\x4f\x07\xb9\x2d\x39\xa0\x25\x43\x23\x8b\x46\xb3\xe1\x85\x51\xd6\xc7\x3b\x98\x45\x8f\xe0\x27\x2d\x00\x4f\x8e\xcc\x9e\xe4\xdb\x3f\x32\x9f\x76\xef\x4f\x39\x50\x0b\xc0\x53\x23\x8b\x24\xe6\xcf\xc7\x46\xe6\x63\xf3\x5c\xea\xa2\x38\x76\x97\x88\xdc\x79\x78\x74\x4f\x34\x89\xf1\x44\xae\x89\x73\xb2\x69\x87\x00\xee\x49\x57\xb9\xd8\xc7\x98\x8a\x5f\xc7\xc9\x17\x4f\xf9\x22\x39\xf0\x2c\xd2\xed\x4d\xe7\xc5\xa9\x65\x54\x0a\x65\x57\xf8\xd0\x68\x73\x6f\x68\xf5\xfa\x8b\xbe\xd7\xdc\x73\xe4\x60\x59\x6c\x48\x0b\xc0\xa3\x99\x52\xad\x28\xec\x11\x79\x6a\x64\xb1\x23\xd9\xeb\x3a\x99\x6d\x95\x6f\x7d\x85\x48\x68\x14\x66\x28\xad\xcb\x25\x70\x48\x2e\xce\xb7\x0c\xd7\x88\x3c\xab\xda\x42\x8a\xe0\x68\xf5\x0b\xd2\x33\xb4\x00\xdc\x47\xa6\xd4\x2d\x63\x37\x3e\x01\xec\x08\x2d\xa1\x80\xb1\xf1\x47\xfb\x01\xf6\xba\xa8\xdc\x75\xa3\x13\x72\x51\x0b\xc8\x56\x63\x3f\x73\x1b\x12\xe1\x7a\x99\x2d\x7c\x32\x72\x7b\x1a\x46\x50\x16\x6a\x17\x88\x4f\x7a\xb8\xd9\xe1\x1e\xc4\x0e\xf3\x74\x06\xab\x4d\x37\x46\x85\x4a\x4d\x54\xe7\x54\x21\xf7\xab\x4e\xc6\xa5\x13\x41\x7a\xf1\xc0\xb5\x96\xdc\x71\xdf\x8b\x9f\xea\x77\x7b\x6e\xeb\xcb\x68\x85\x46\xdf\xb3\x09\x1f\x66\x7b\x25\x67\xe7\x43\x84\x2e\x72\x6d\x58\x3b\x0a\xbb\xa4\x02\x52\xd0\xf6\x00\xb4\x63\xa7\x2f\x54\xd5\x79\x8d\xcd\xf7\x6b\xe9\xef\x06\x4a\x3d\xd3\x07\x32\x9a\xda\xbc\xcd\xdc\x1c\x2d\x0b\xd4\x02\xa7\x0f\x53\xc5\xc5\x6d\x4f\x2a\x59\xb5\xaf\x8d\x66\xc8\xea\x84\xe2\x0a\x9a\xa9\x2c\xb8\x43\x70\x52\x82\x93\x90\x74\xfd\xaa\xd9\x6d\x6d\x7a\xb2\xc6\xc5\xc1\xb6\xb9\x96\x45\x2d\xa0\x46\x26\x80\x7e\x64\x21\xdf\x8e\x61\x17\x23\x7b\xd5\x78\xc4\x4d\x34\xb9\xe9\x53\x30\x18\x2a\xb6\xc9\xb6\xcf\x56\xb0\xed\x05\xad\x67\x3c\xdc\x39\xdc\x6e\x0b\x87\x67\x43\x9f\x63\x18\xc1\xe9\x0a\x00\x42\xd9\x9f\x9e\x9b\xf9\x74\xb2\xd0\x21\xcb\x79\xb5\x7d\x69\xcf\x9d\xcd\x15\x37\xa3\xd0\xf7\x8f\x87\x34\x13\x48\x8f\x2e\x75\xa5\x40\xf3\x08\x8f\xff\xea\x1c\x64\x5b\xd2\xeb\x22\x7a\x7e\x57\xd1\x1c\x98\xa2\x9b\xa3\x3a\x57\x9b\x70\x36\x8d\x0c\x83\xa8\x65\x67\x8d\xfc\xb5\x50\xd0\xb2\x6a\xda\x65\x0c\x55\xf3\xb3\xad\x04\x86\x80\xb0\xa1\x31\x76\x23\xca\xac\xda\x00\x3e\x75\x9b\xa4\x62\x8b\x08\x04\x9f\xae\x59\x88\xd9\xb0\x66\x6b\x11\xb5\x3f\x0f\xb0\x86\x72\xf2\x8e\x26\xe2\xc3\xbf\xcd\xd1\x1f\xbc\xb7\x46\x8f\x55\x33\x0c\xee\x82\x4e\xd8\xe1\x23\x51\x78\x6a\x85\xef\x6b\x36\x03\xdc\xb8\xd8\xa6\x02\x1a\x0d\xff\x89\xa9\x77\x12\x30\xec\x4c\xc9\x93\x32\x1e\x99\xb6\x3f\x2b\x10\xf3\x7e\x31\xd3\xf7\x1b\x67\x5a\xb4\x23\xe6\xf9\xc1\x9a\x16\xd6\xc2\x79\x70\x54\x7b\x55\xda\x5e\xdb\x0b\xbc\xb8\x63\x3f\x28\x10\xb5\x32\xc1\x52\xc1\x7a\x7d\x16\xc2\x07\x61\xb5\xd2\x68\x18\x96\xed\xc9\x8d\x2e\x9b\x94\xfe\x13\x7b\x88\x3b\x8e\xb8\xf4\xa3\x89\x32\xa6\xe6\x9f\x4e\xfb\x4e\x18\x09\xc4\x0d\xc4\xb4\x7b\xce\x02\xb2\x03\xd3\x0a\x0a\xa1\xc5\x83\x0b\x91\x7b\x92\x51\x84\xa3\x3c\x2d\xc8\xca\x21\x3a\x63\x50\xa3\x34\xbf\x49\x40\xbe\x9a\x80\xb4\xa2\xad\x92\x08\x90\x13\x23\x95\xd5\xb6\x15\xf2\xc5\xdc\xcf\xe4\x12\xf2\xe1\x56\x2b\x10\x95\x71\xc5\x41\x65\x16\x18\xb9\x62\xc4\xbf\x6c\xff\xd4\xc6\x25\x15\xd4\x67\xb2\x3a\x07\x0d\x1a\x44\x22\xd9\x06\x4d\xe4\x17\x8b\x02\xb2\x15\x1c\xab\x4a\x9a\xfa\xc0\x64\x48\x56\x81\xd5\x0a\xac\xce\xc1\xea\x03\x46\x3c\x8b\xed\x03\x4e\xdf\xb6\x9f\x70\x96\x90\x6d\x3f\xfb\x05\xf0\xa2\xeb\xa0\xc4\x8d\x6e\x19\x6d\xd8\x8f\xae\x8d\xf2\x6d\xac\x7a\x88\x7b\xd2\x51\x51\x80\xbb\x18\x3c\xe3\xb5\x70\xc7\x82\x4f\xc0\x1e\x8b\x03\x4a\xda\x87\x16\xb7\xb3\x38\x46\x4f\x5b\x0b\x3e\xa6\x7f\x95\xa2\xc4\xd3\x7a\x3a\xc7\x29\xc1\x54\xc3\x67\xf4\xcf\x41\xc8\x64\x86\x58\x66\xf8\xb6\x9e\x41\xe7\xc9\xe1\x57\xf5\xaf\xd4\x31\xe9\x70\x20\x2c\x7f\xbe\xae\x7f\xcd\x8a\xa9\x16\x7c\x5c\xcf\x92\x95\x6a\xbe\xac\x67\x90\x2c\xc8\xe1\xe0\x89\x70\x99\x64\xf8\x92\x9e\x81\xc6\x02\xcb\x7a\x95\x7c\x45\xcf\x95\xe7\x7c\xf2\x35\x3d\x5b\x98\xc9\xf0\x0d\x3d\x03\x15\x47\x95\xcf\xff\x95\x1a\x4e\xc6\x91\x06\xa1\x11\xf3\xa9\xe4\xc3\xa9\x7c\x8a\xe8\xa9\xe4\x8a\x52\xb9\xd2\x7e\x02\x01\x32\xf6\xe7\x68\xe8\x23\x0b\x7a\xf2\x63\x94\xf0\x67\xce\x49\xa4\x8d\x3d\x91\x2e\xd3\x55\x89\x95\x3a\xac\xe7\x73\xcd\x4d\x1e\x5f\xe9\x79\xc1\xd2\x71\x37\x3e\x61\xc1\x38\x95\x65\x41\xe5\x57\x50\x8b\x65\xea\x9b\x33\xf1\x25\x63\x79\xfc\x54\x1e\x76\xe7\xb7\x27\x5e\x09\x9a\x9c\x21\xa4\xd9\x9a\xc9\x40\xbf\x50\x16\x7f\x5c\xeb\x3c\x81\xc9\x9f\x17\x78\x59\x7b\x16\xb0\xda\x45\x36\xa1\x6f\xea\xcd\x29\xcf\xca\x22\xb0\x98\xa3\xdb\xb3\x63\x52\x62\xd4\x1e\xc6\xf0\x3b\xdc\xd6\xb7\xc6\x43\xd6\x31\x73\x3d\xb9\x9d\x79\xb2\xfc\xcd\x15\x8d\x32\x37\xf9\x01\xd9\xf5\x35\x4f\x63\x3f\xa0\x90\x36\x44\x4e\xfe\x33\xb1\x12\x3b\xe9\xf9\x3e\x8f\x38\x38\xe1\x10\xb5\x12\xe3\x47\x2a\x82\x52\xb1\x97\xad\xe3\x83\x81\x60\x07\x73\x33\x08\x4c\x17\x39\x22\xb4\xe4\xc5\x18\x45\x7b\x8e\x1c\xe4\xfc\xab\x92\xc2\x54\x6f\x72\x38\x0b\xca\xa7\x71\x0e\x9e\xe9\x10\x98\xba\x28\x06\x11\x98\x92\xf6\x41\x99\xbc\xd2\xdb\x34\x67\x3d\xa5\x15\x91\x1a\xdb\x7a\x55\xe6\xaa\x61\xc8\x89\xe7\x41\xf9\x04\x9b\xa6\xc8\x13\xb7\xce\xd2\x8e\x07\x27\x1e\xa4\xc3\x89\xe6\x05\x67\x4c\x01\x37\xe1\x05\x9d\x9a\x1a\xcd\x25\x3a\x31\x8a\xc3\xb6\x15\xf6\x50\xe0\x05\x4b\x54\xc5\x62\x11\x29\xd8\x3a\xc1\x6d\x0c\x08\x79\xa0\xcf\x5f\x0e\x06\x73\x0f\x4d\x6b\x2e\xc6\x3b\x2b\xea\xef\xc1\x00\x67\xac\x24\xf3\xb9\xcb\xd4\x18\xf7\x92\x23\x76\xdc\x20\x69\x26\x7d\x94\x7b\x99\xcf\xf0\xc8\x61\xe6\x8d\x92\x29\x7f\xb3\x3c\x6b\x56\xf9\x3f\x4c\x77\x37\xd7\x3a\x93\x62\x28\x8c\x1c\xdd\x7a\x71\xca\x60\xb4\x69\x63\xdd\x6e\x33\xca\xe2\xb1\xb0\xe4\x34\xa9\x19\xa8\x1d\xa1\xc9\x26\xb1\x16\x29\xbb\x4a\x0e\xc5\xd4\x57\x24\x0c\x93\xf9\xa3\x10\x2d\x2f\x66\xa1\x2f\x44\xbb\xb9\xb3\x82\x94\x09\x59\x10\xd6\x1c\xa6\xb5\xd3\x43\x5a\xe4\x68\x95\xa0\x34\x59\x0d\x03\x16\x98\xdf\x46\xe9\xc9\xc0\x5a\x83\x4c\x3d\x9a\x63\x1b\x2b\x23\xb1\x7a\xc1\xd2\x60\x60\xa7\xac\x4a\xc1\xbc\x82\x91\xec\x38\xb5\xa5\xad\x26\xf9\xc5\xbf\xf7\x50\xd4\x0e\xa3\x2e\xcf\x81\x78\x16\x91\x7c\xc0\xf3\x31\x8a\x98\x3d\xa6\xe8\x16\xa3\xdc\xb9\x38\x3c\xcd\x23\x92\x79\xc1\x71\x44\xe3\x96\x15\x8b\xf4\x40\x6c\xfa\x1e\x0a\xf0\xd7\x45\x64\x01\x05\x43\x0d\x49\x49\xee\x43\x2e\xee\x94\xdd\xc5\xd8\xce\xcd\x53\x92\x10\xd8\x3d\x0b\x34\x43\xbf\x5c\xbd\x95\xc9\x14\x36\xbd\x16\x40\x2a\xc9\x34\xbe\x38\x57\xbd\xa6\x45\x05\x48\x79\xf5\xb3\xdd\xc4\x05\x82\xcd\xdb\x22\x67\x77\x10\x13\xfc\x0e\x76\xbb\xa8\xe5\xb9\x18\x69\x16\xb0\x53\x34\xa4\x1e\x35\x46\x6e\xe2\xc8\xff\x32\x5a\x19\x0c\x50\xb9\x8b\xb0\xfb\x65\xb4\x32\x69\xc9\x51\x66\xb8\x39\x1a\x6c\x44\x84\xc0\xc4\xfb\x3d\xe1\x21\xcb\x1c\xbb\x6c\xc4\x5a\x20\xc3\x9e\x9b\x9d\x56\x4d\x79\xb5\xc7\x78\x68\x38\xe3\xc4\x0e\x9b\xbf\xac\x27\x4d\xc4\x8e\xf5\xdc\x26\x7d\x3c\x63\x72\x9b\x6f\x7e\x93\x3f\xad\xcf\xeb\x60\x30\x5d\x9d\x9e\x60\xb2\x39\xc2\xa6\xfb\xa5\xec\x5c\xce\xc6\xe4\x2c\xb1\x88\xdc\x50\x2c\x2a\x4b\x2e\xca\xa8\xe1\xea\x47\x07\x55\x7f\xa4\x3a\x8f\x4b\xd5\x1a\x0d\xb6\x53\x55\x83\xab\x97\xaa\xe6\xf0\xea\x5a\x3b\x2a\x53\x54\x4f\xe3\xbe\x12\x90\x9f\x85\x54\xf5\x4c\x81\x04\x1f\x5b\x39\xd8\x32\x59\xda\x19\xb8\x03\x7d\xcb\x28\xc1\x26\xe8\x23\x0c\xab\x2c\x6a\xeb\x04\x8a\x7b\xae\xf4\x21\xcc\x8f\xd7\xb6\x69\xe8\x0e\x97\x15\x8f\x1d\x4f\x8f\x84\xb1\xc7\xf7\x6d\xab\x4e\x3d\x20\x58\x7f\x98\xff\x43\xc3\x02\x65\x0f\xa3\xae\xed\xd2\x2a\x62\x56\xba\xef\xc4\xe5\x90\xaa\xdd\x8f\x87\xbd\x92\x97\xc0\xd0\x77\xfa\x33\xe2\x1b\xf3\x05\x99\xf2\x1f\xf1\xb4\x84\x19\x4f\xce\x6a\x6f\x5e\x81\x1d\xbf\xa4\x67\xac\xf5\x77\x2b\x9f\x69\x6c\xd5\x24\x73\x9f\x20\x70\x1a\x87\x39\xc9\xc8\x09\xdb\x62\x3c\x09\x18\x6e\xd2\xb0\xdf\xe4\x40\xe3\x34\xcc\x1c\xd8\x25\x83\xdb\xe6\xe6\x1f\xf3\xfb\xd1\x86\x5a\x6f\xa1\x6c\xfb\xa4\x12\xd9\x3c\xf9\x31\xb6\xf5\xd1\xa3\xbe\x43\x43\xfc\xd4\xc7\x26\xfb\x6d\x90\x67\x26\xf2\x0d\x80\x56\x8c\xf0\x41\x71\x63\x0b\xa7\x2b\x4a\xdd\x49\xe7\xee\x54\xed\x55\xd5\x83\x42\xf9\x90\x33\x63\x1a\x2f\x25\xcd\x43\x54\x46\xaa\x4d\x79\x0a\x33\xff\x90\xf3\xbe\xd3\xac\xf1\x7d\xa7\xd9\x46\xb1\xa8\xfe\x12\xef\xe5\x12\x2a\xc2\x1a\x91\xba\x60\x34\x18\xd4\x1b\x90\x6b\xfd\x35\xd5\x08\x8c\xd4\x9e\xa9\xf7\x6f\xa6\x1e\x26\x16\x76\x99\x3e\xce\x19\xfb\x38\xa7\xf5\x71\x2e\xd5\xc7\x80\xab\x5f\x92\x46\x53\x5d\x35\xab\x69\xa8\x1d\xa8\xec\xb5\xa6\x59\xc9\xdf\x2d\x23\xe4\x5c\xfa\x58\x11\x39\xd5\xdd\x56\x4b\x64\xa0\x71\xb2\x95\xdf\xb6\x55\x6f\x70\x04\x61\xf5\x69\xcd\xee\x09\x5a\x5c\x57\x2f\x24\xa1\x90\x95\xe3\x1d\x8f\x1d\x11\xee\x3b\xaf\x9c\xc6\x63\xa6\x6e\xc0\x36\x30\x28\x45\x36\x17\x0c\xb1\x78\x07\x66\xfe\x76\xc7\x28\xea\xa4\x15\xa5\xc7\x27\x3e\xa6\x07\xa8\x15\x22\x83\xab\xa1\xe9\xcc\x45\x7d\xe2\x81\x92\xdd\x3b\xd2\x54\x0b\xc1\x5c\x91\x24\x2d\x6e\xe6\x39\x7b\x4e\x19\x0d\xa3\x69\x9b\x59\xad\xee\x7c\x4e\x7a\x8a\xa4\x71\x49\x21\x9b\x6f\x8c\xa4\xa9\x0d\x20\x07\x19\x72\xf8\xa6\xe9\x74\x84\x66\x95\x3c\x0b\xaf\x26\x22\x95\x52\xd3\xbb\x29\xc9\x59\x51\xd9\x06\x70\x39\x54\xeb\x98\x30\x9a\x8b\xa4\xcd\x5c\x34\xf6\x5e\x29\xd2\xef\x95\x18\x07\x8b\x53\x4b\xab\xbd\xe5\x21\x84\x32\xd5\x61\x0a\xcc\x47\x6c\x02\x19\xa5\x22\x62\xb1\xfa\x75\xca\xd4\xdb\x48\x5e\x87\x65\xfa\x3d\xe9\x2d\xd8\x10\xeb\x16\x14\x46\x8d\x45\x6a\x79\x34\x54\x36\x2d\x4d\xee\xb2\xe4\xc9\xd8\x12\xb7\xe9\x42\x65\x30\xfa\x98\x59\xf0\xd5\x3c\x97\x33\x76\x11\x4c\x2a\x30\xea\x90\xf9\x2d\x1a\x61\x08\x47\xdd\x3c\xa2\x09\x6c\x1f\xc7\x4d\x37\x4a\x4d\xb7\x1c\x98\x26\x50\xe7\xfb\xf1\xaa\x28\x61\x1e\x27\x14\x02\x90\x71\x0c\x58\x1d\x03\xca\x0e\x01\x8d\x1d\x01\x06\x23\xee\x4a\x33\xe3\xc9\x59\x2a\x94\x72\x63\xa5\xda\xe2\xc8\x80\xd2\x6a\x6f\x87\x44\x90\xc1\xf4\x99\x20\x66\x5f\x2e\x9d\x25\x09\x6a\x05\xd0\xc2\x1d\x14\x58\x5c\xa8\x34\x2f\xb4\x14\x2c\x61\xc0\x37\x26\x13\x5e\xe8\xa5\xf3\x88\x69\xf3\x6e\x67\xa6\xbc\x91\x33\xc5\xe2\xd8\x1b\x86\x9c\x6d\x49\xdb\x00\x8a\x4c\x99\x2f\xb9\x16\xe6\x34\x57\xe3\xc1\x60\x67\x45\xfd\x3d\x9f\x92\x90\x9f\xee\xed\x63\x22\x2a\x8b\x9e\x98\x9b\x6f\x7f\xc0\xb4\x3d\xb5\x87\x47\xe5\x3a\xee\x2e\x92\x3c\xb3\x0f\x8e\xac\xea\xd8\x5e\x92\x29\xa5\x07\x49\x77\x69\x94\x0e\x24\x6d\xd7\x04\x56\xb3\xde\xe9\xd0\xe0\xf0\x3b\xc5\x30\x2f\x35\x23\xd5\x5a\xa9\x0a\x23\x26\x62\xba\xad\x65\x42\x10\x18\x5d\x73\x17\xc5\x6b\x9f\xb9\xc2\x66\x2a\x59\x8f\xee\x38\x95\xa3\x0e\x4a\xac\xad\x22\xf9\x3e\xe7\x08\x6b\xab\x88\x63\x4c\x4e\xbe\xb4\x57\x7b\x6a\xcd\x36\x32\x8f\x0a\x9f\x9a\x3f\xb0\x31\x6a\x34\xee\xce\x3f\x62\x62\x90\x58\x1b\xb3\x66\x09\x4e\x57\x0d\x63\xa1\x9a\x1c\xd3\x58\xea\xd6\xf1\xfd\x5f\x3b\xbe\xe7\xe8\xfe\x3d\x16\xb4\x0e\x3e\x75\xe4\xe9\xe3\x56\xa3\xec\x05\x4d\xbf\xdf\x42\x71\xe2\x42\x1f\x84\x2d\x44\xad\xc9\xe7\x47\xb5\x9d\xb6\x69\xdb\xc0\xb4\xb0\x37\x7b\xf2\x47\x65\xc0\xd0\x4d\xcc\xa0\x69\xb9\x8f\xbb\x8b\xb9\xec\x70\x9e\x4e\xd2\x8c\x37\xc7\xf6\x6e\xaa\xa2\x3c\x79\xc2\x70\x6c\x1b\x25\x02\x71\x2d\x93\x4e\x2f\xeb\x15\x6f\x56\xee\xe0\x7e\x20\x23\xfa\x7d\x4c\x86\x77\x1c\xd3\xf1\x63\x92\x5b\xb7\xcd\x1f\x26\xeb\xfa\x64\xe2\x44\xa6\xdf\x69\xf5\xea\x88\xc3\x41\xd1\xd6\x3e\xfc\x80\xa6\xad\xad\x56\xee\x4f\x0b\x59\xd8\xa4\x2b\x48\xdd\x41\x26\xcf\xef\x48\xcc\x10\x2f\xf0\x8c\xb8\x9e\x04\x9a\xde\x71\xdc\x6d\x20\xc4\xb2\x67\xf2\xea\x20\x2f\xea\x2a\x46\x31\xb6\x1c\xc7\xfc\x54\x5e\x84\xe2\xd0\x5f\x46\x47\x69\xed\x11\xdb\x99\xe6\xb7\xc3\x95\x5f\x93\xc6\x91\xa5\xb6\x00\x79\xa1\x64\xa7\xd1\x60\x80\xb2\xe6\x8d\xcc\x3a\x80\xda\x37\x0e\x06\xd3\xda\x55\x14\xe3\x68\xe6\x27\x53\xcc\xa8\xac\x84\x10\x8d\xa1\xbc\xb1\xc9\x5a\x61\x28\x6a\x76\x98\x44\xb6\x15\x7e\x1b\x93\xc7\xc9\x55\x38\xb9\xd0\x17\x1b\x4b\x5b\xdb\x24\xd9\x41\x10\x39\x8e\x83\xe7\x51\xcd\x4e\xdf\xbb\xf1\xc1\x1a\xb6\x71\xaa\xb7\xf9\x2f\x05\xe6\xcd\xc7\x61\xc9\x1b\xab\x9a\xb6\xbc\x78\xaf\x68\x43\x41\x8b\xcd\xb1\x8a\xb3\xbe\x13\xd2\x21\x6c\x44\x25\xa5\x92\x2b\xfc\x2c\x16\xe5\xed\x9f\x16\xdc\xd8\xd8\xf9\x7d\xaa\xe3\xc6\xc6\x7a\x2f\x7c\x3e\x36\xd7\x7d\x51\x8b\xb1\xff\x9a\x5b\x89\x12\x98\xa3\x1f\xe3\x63\x9d\x90\x9b\x72\x4a\x9b\x33\x23\xda\xa5\xad\xfc\xb9\x0c\xc5\xdf\x9d\x4e\x2b\x4d\x52\x41\xe7\x8a\xc5\xe9\x69\x45\xce\x48\xfd\xe4\x0d\x1b\xab\xd2\x7c\x57\xd2\xfd\x7e\x2a\xe4\x45\xf3\xf6\xca\x46\x3a\xad\xb6\x54\x2c\xda\x6a\x07\x33\x97\xdf\x69\x01\x41\x68\x18\xc9\x69\xd0\x00\xc5\x62\x0b\x19\x82\x8c\x90\x44\x63\x94\x11\x83\x29\x62\xdd\xdf\x6c\x5c\x91\xc7\x9c\x25\x64\x3f\xab\x36\x93\xb2\x67\xdc\x7c\x88\xdb\xa7\x33\x4d\x48\xa3\xc8\x7a\x7b\xb3\x95\x3f\x93\xa9\x3c\x6d\x59\x59\xef\x6c\xb6\x8d\x6f\x67\xda\xc8\x9a\x67\xd6\x5b\x9b\x6d\xe5\xab\x99\x56\x52\x36\x9e\xf5\xde\x66\x9b\xf8\x7a\xa6\x89\x94\xa1\x68\xbd\xbb\xd9\x26\x1e\xcf\x34\x61\xb2\x36\xad\x2f\x6f\xb6\x9d\x2f\x67\xda\xc9\x9a\xac\xd6\x57\x36\xdb\xca\x97\x32\xad\x64\xed\x5e\xeb\x4b\x9b\x6d\xe5\x2b\x99\x56\x72\x8c\x67\xeb\x8b\x9b\x6d\xea\x6b\x99\xa6\x72\xc3\xbf\x2f\x6c\xb6\xad\x6f\x64\xda\xca\x9a\xf1\xd6\x4f\x6e\xb6\x95\xff\xca\xb4\x92\xb6\x05\xae\xef\xdf\x6c\x1b\x08\x65\xb1\x2d\x1b\x9a\xff\xd4\x66\x9b\xc1\xd9\x66\xf2\xcc\x92\xeb\xc7\x36\xdb\x58\x94\x6d\xcc\x6c\xdb\x5c\x3f\xbc\xd9\xa6\x82\x6c\x53\x99\x40\xea\x27\x36\xdb\x88\x97\xbb\x46\xcc\xca\xba\xbe\x67\xb3\x2d\xa4\xab\x57\x84\x9b\x0d\x3f\x27\x90\x53\x11\x80\xcf\xaa\x16\xb0\x59\x6c\xb8\xed\xf7\x0b\xcc\xf5\x8c\x69\x4f\x4a\x18\x9b\x6b\x2e\x71\x30\xd7\x5a\x0b\xb3\x2b\x96\xb2\x75\xaf\x1f\xdf\xec\x9a\xb9\x06\xac\xc8\x31\x98\xaf\xef\xbd\xd3\x08\x32\x4a\x6a\xa9\x1f\xda\xe0\x24\x8e\xa8\x6c\xcc\x2a\x8e\x94\x3f\xea\x47\x37\xd1\x8f\x74\x6d\x63\x3a\x92\x23\x47\xd4\x8f\x6c\xb0\x0b\xe6\x7a\x26\x6c\x5c\x15\x06\xea\xdf\xba\xcd\x96\x95\x4a\xc6\x34\xab\x9b\x89\x6f\x34\x92\x5a\x7e\x55\x63\x9a\xdd\xcc\x43\x20\x79\x15\x4d\xd4\x24\x37\x8b\xbe\x03\x6d\xb2\x9a\x26\x6a\xf4\x36\xa3\xe3\xe5\xd6\x34\x6e\x4d\x15\x23\xe5\xcd\xad\x68\x52\xd1\xb8\x26\x65\x84\xbb\x4d\xb5\xc7\x6b\x19\xdf\x18\xbb\x0b\xdc\x6c\x63\x3c\x78\xca\xe8\xc6\x84\x15\xf2\xe6\x1a\xe3\xb5\x4c\x84\x2e\x69\xeb\xdd\x3b\x80\x37\xa9\x2a\x27\xea\xc6\x9d\x6c\x7f\xc2\x86\x15\x7b\xd6\x4d\xae\xad\xa8\x67\x23\x13\x7e\x9b\xaf\x04\x8d\xab\x70\x23\x5d\x60\x36\x82\x77\xae\x07\xb4\xbe\x89\x3a\x70\xe7\x06\xbf\x81\x51\xdf\xb1\xe1\x9a\xc6\x19\xe7\x72\xdc\xaa\x93\x61\x7d\xdf\x66\xd9\xaa\x7e\xb6\x1d\xa3\xa7\x62\xfd\xa9\xcd\xb6\xe4\xe7\xb6\xa4\xb9\x3b\xd6\x0f\x6e\xb6\xa1\x66\xb6\xa1\x1c\x9f\xc9\xfa\x93\x9b\x6d\xeb\x80\xf3\x2c\x00\x83\xc1\x01\xfa\xbf\x12\x63\x75\x3f\xba\xad\x20\xab\xe9\xe8\x52\x5b\x1c\x73\x35\xdd\xdc\x64\xcf\x4b\x25\x61\x45\x43\xc5\x49\x20\xfc\xbc\x06\x15\x75\x3f\x13\x51\x3a\x63\x35\xec\xde\x34\xd6\x7c\xf1\x43\x1a\x25\xc9\xe4\xf2\x3b\x9f\xb2\x84\xf8\xf4\x42\x7c\x52\x1f\xaa\xa4\xfb\x7d\x05\x93\xfa\x77\x23\x78\xa5\xaf\xc5\xae\xf4\xef\x68\xe8\xca\xe6\x76\xe4\xca\x7b\x37\x72\xe5\x9d\x09\x2d\xd9\xce\x86\x69\x14\xcf\x47\x65\xc3\x34\xda\x76\xd3\xb6\xbd\xb1\x31\x44\x3e\xed\xf8\x21\x59\x6b\x7d\xe8\x29\x8e\x54\x01\x99\xb5\xca\xae\x70\x77\xb0\x2b\x9c\x99\x01\x5e\x3d\x54\xdd\xa7\x42\x69\xb3\x1f\x39\xcc\x9b\x04\xda\xc8\xe9\x8f\x8b\x1b\xe2\x01\x00\x40\xd9\xed\xe3\x90\xbe\xa4\x4b\x28\xe2\x17\x2b\x7c\x81\x3f\x69\xf4\x02\xc5\x5f\x9f\xfb\x95\xe5\x5a\xe2\x50\x0a\x3c\xca\x9b\x5f\x7b\x51\x77\x82\xf7\x88\x12\x3b\x82\xf1\xef\x11\x4d\xf2\x90\xcc\xc8\x87\x63\xa6\xab\x53\xba\xf9\xa5\x74\xd9\xd6\x9f\xca\x49\x9b\x5a\x8d\x7e\x12\x3a\xb1\xce\x98\x4a\x86\x4b\x98\xa3\xc8\x56\xe7\x2f\x41\x45\xc2\x45\x88\xd7\x9d\xa1\xb8\x53\x76\x0d\x57\xca\x6e\xce\x8d\xf2\x26\xe5\x50\x6f\x94\x1c\xea\xa9\xa2\x42\x53\xcf\xab\xce\xc3\xa6\x1a\x55\x2a\x4a\xb5\x18\x38\x1e\xe1\x7a\x03\xf2\xbf\xc2\xf4\xb6\x6f\x8f\xe7\xfd\xb4\x98\xdd\x6d\x2e\x77\x9b\xcb\xdd\xe6\x72\xef\x34\x97\x7b\x67\xf8\xa7\x26\x6c\x3b\xd3\xd3\xe2\x71\x4f\x2b\x0c\x70\xd8\x6f\x76\x68\x00\x36\x82\x35\xec\xc3\x94\x12\xfa\x5f\xee\x86\x03\x6e\x8c\x1f\x0b\x43\x5c\x2c\x1a\xb8\x02\xbb\x29\x5e\xbd\xe3\x67\xa6\x42\xc5\xca\xcc\x50\x26\x2e\x16\xed\xa6\x80\x9d\x66\xb9\x1b\x73\xeb\x13\xe1\x20\x3d\x18\x34\xcb\xdd\xf0\x59\x43\xea\x49\xb4\x78\xc2\xc3\xa9\x0f\x00\x1a\x50\xb0\xc9\x8e\xab\x18\xd3\xc6\x38\xec\xa4\xe3\x0b\x26\x67\xd4\x2e\x5c\x2c\xd2\x33\x92\xda\x6a\x13\x26\x66\x17\xb3\x54\x17\x1d\x55\xde\x59\xc3\x53\xd8\xc1\xe5\x9e\x1b\xa1\x00\x3f\x15\xb6\xd0\x50\x35\xc1\x04\xcc\xce\x5f\x7b\x7d\x64\x63\xac\x6a\xc7\xd9\x66\x55\x15\x56\xd5\x8b\x8f\x13\xcc\xdc\x87\x96\xbd\x26\x72\xda\xdb\xdc\xaa\x99\x5b\x75\x5b\xad\x27\x28\xcf\x62\x78\x5a\x53\xe3\xc6\x68\x70\x1c\xfd\x35\xc6\x28\xf4\x11\x7b\x7e\x91\x59\x9b\x10\xe2\x6e\x7a\xb2\x43\xa6\x45\xc2\xb1\x81\x6f\xac\x9c\x78\x06\xd4\x5b\xaa\x58\x9c\x0e\x94\x7c\x6e\xe4\xb9\x25\x11\xe9\xc6\xc1\x51\x1f\x35\x84\x87\xa4\xe7\x04\xa6\x67\x22\xd5\x4a\xc9\x94\xdb\xb8\xbc\xc0\xd2\x0e\x44\x61\xf7\x20\x49\xb6\x3d\x40\xfd\xa5\xa7\x68\x48\x10\xb7\xd5\xa2\x96\xe8\x4f\x7a\x31\x46\x01\x8a\x6c\xab\x1b\xf6\x63\xd4\xef\x59\xd0\x40\xd5\x03\x1b\x9b\x1f\x85\x84\x48\xfa\x51\xa5\xcd\xa4\xb8\xbf\xae\xa9\x15\x66\x45\x35\x59\x3b\x49\x58\xb2\xa4\x29\x0d\xdd\xc5\xbc\x48\x0a\x10\x51\x96\xb9\xe3\xc6\x87\xc2\x65\xd4\x22\x07\x3d\xb5\x8f\x65\xf6\xfd\xa9\xee\x50\x82\x4e\xd2\x2d\x32\x37\x53\xa6\x1e\x2b\x34\x1f\x2a\x4c\x79\x6e\x56\x56\x1b\xf5\x2f\xcb\xcd\x83\x82\x96\x3e\x7e\xc6\xdd\xa0\xc9\x51\x26\x02\x74\x19\xb3\x1e\x2b\x72\xe0\x40\x9d\x83\xaa\x8c\x06\x33\x1d\x4d\x86\x68\x04\x81\xc7\x23\x5a\x0e\x5a\x98\xd0\x2f\x60\xe6\xdd\x60\xa8\xec\x1f\xb3\x10\x25\xfd\xaa\xd4\x8f\xaa\x7f\x93\xe2\xe5\x9a\x6a\xc5\xb4\xad\x93\x43\x0c\x95\xe3\x9e\xef\x61\xdb\x2a\x5b\x40\x78\x34\x72\xfe\xbb\xde\x73\xa3\x18\x1d\x0c\xb0\x8d\xeb\x95\x06\xac\x56\x40\x43\x44\x66\x11\xec\x26\x0d\xd0\xe2\x44\xa6\x12\x01\x2b\x21\x43\xf7\x6e\x58\x2e\x6b\x39\x3a\x71\xea\x39\x69\x21\xa9\x3b\xf6\xa9\x1e\x4d\x4c\x52\x6b\x03\x70\xd9\x51\x3f\xae\x38\xab\x43\xa8\x6a\xf8\xba\x66\x0d\xdf\x4a\x1d\x35\x9c\x2e\xd3\xf0\xad\xe8\x1a\x3e\xf5\x27\x5c\x49\x6b\xf8\x56\x72\x35\x7c\x2b\x83\xc1\x4a\x5a\xc3\xb7\xa2\x33\xde\x2b\x4e\x6f\x02\x0d\x9f\xf6\x9c\x8b\x4d\x38\x09\x04\x06\x03\x34\x84\x2b\x00\x2e\x2b\x1a\xbe\x95\x94\xfe\x6d\x85\x6b\xf8\xb4\xf4\xf9\x95\xac\x86\x6f\x59\x6a\xf8\x56\x46\x6b\xf8\xd2\x2d\x98\x59\x4f\xd2\xc3\x15\x32\x38\xa6\xe1\xcb\x91\x55\x6f\xef\x11\x3c\xed\x71\x8c\xad\x96\x57\xd5\xb6\x26\x91\x59\x13\x89\xd5\x53\xe4\x0c\xef\xf3\x2a\xb1\x86\x23\x64\x41\xef\xde\x97\x05\x5d\x65\x8d\xdc\xbb\x21\x0b\x6a\xb2\xb4\x1d\xdf\x3b\xb2\x60\x7f\x43\x02\x4a\x90\x2f\x9c\xe4\xf1\xe3\x77\x50\x34\x11\x92\x09\x0c\xb9\xa6\xd5\xc6\x39\x71\x54\xe5\xbb\xbd\x9f\x63\xf1\x20\xce\x17\x0f\xe8\x31\x9c\x25\xc3\xfd\xdb\x24\xc3\xd9\xd7\x92\xb6\x9c\x1a\x67\x9b\xdc\x26\xca\xdb\x44\x79\x9b\x28\x6f\x13\xe5\x6d\xa2\x6c\x7a\x67\x6e\xab\x09\x72\xaa\xb9\x6d\x62\xbc\x4d\x8c\xb7\x89\xf1\x36\x31\xde\x26\xc6\xda\xe3\xa0\x5b\x4d\x85\x65\xd8\x87\xed\x4b\xf5\xed\x4b\xf5\xed\x4b\xf5\x7b\xed\x52\x1d\xca\x9b\xdf\x0d\x1a\x28\x8e\xbc\xf5\xfd\x34\x8f\x0d\x7e\x43\xdb\x1f\x71\x6c\x6c\xdf\xc0\x1a\x6e\x60\x9b\x3e\x72\xf3\x02\xde\x19\xc2\x01\xe6\x98\xf7\xd1\x67\x20\x98\x22\x5d\xbd\x9e\xa3\xe6\x79\xd4\x8a\x42\xd8\xec\x6d\xf8\x1e\xa6\xed\x88\x2e\x76\x32\x37\x30\xad\x8d\xdd\xc0\xb0\x7a\x00\xec\x69\x77\x2f\xdd\xf4\xdd\x4b\xcb\x7c\xf7\xd2\xad\xa3\x86\xd3\x62\x77\x2f\x5d\xfd\xee\x45\xfd\x09\xbb\xe9\xbb\x97\x6e\xee\xdd\x4b\x77\x30\xe8\xa6\xef\x5e\xba\x3a\x7d\xee\x3a\x9d\x0d\xdf\xbd\x90\xfd\xcc\xef\x5e\xba\x00\xf6\x94\xbb\x97\x6e\xea\x66\xa4\xcb\xef\x5e\xb4\xf4\xf9\x6e\xf6\xee\xa5\x27\xef\x5e\xba\xa3\xef\x5e\xd2\x2d\x98\x29\x14\xe9\x61\x97\x0c\x6e\xe4\xdd\xcb\xf2\x68\x96\xa6\x83\xfc\x1e\x8a\xe2\x1d\x86\x00\x4b\x5e\x6c\xd2\xf6\x19\xea\xe8\x63\xcf\x8f\x77\xd0\xbc\x25\x0a\xa7\x18\x94\x14\x7b\xa2\xdc\x68\xab\x53\x9e\xda\x36\xd4\xb8\x44\x09\x95\x0d\xd4\x23\x29\x4d\xe0\x29\x39\x4c\xf1\x2a\x05\x4f\xd8\xfb\xd3\x02\x56\x9d\x1d\xb4\x85\x3d\x82\x98\x35\xc8\xce\xe2\x53\x2b\x31\xb9\x8c\x43\xfe\xae\x35\x5d\x32\x04\x44\xc3\x53\x8c\xa9\xa8\x37\x60\x40\xf8\x01\xcf\x99\xae\xc2\x50\x1c\x00\x38\x5a\x91\x8c\x87\x0b\x63\x07\xd5\x53\x9d\x69\xd8\x60\xd7\x34\x39\x03\x5c\x27\xa6\x4f\x7b\x92\xfd\xd9\x0a\x03\x44\xb0\x35\x62\x41\xae\x5c\x86\x47\x00\x12\xb6\x20\xe2\x8c\x0b\x25\x99\xbb\x48\x93\x60\xd7\x90\x3d\xf6\xd9\x07\xab\x1e\xe9\x42\xe8\xf4\x87\x6d\x2f\x70\x7d\x7f\x65\x95\x74\x20\x18\x0c\x08\x26\x38\x4e\x5c\x66\x5d\x1e\x0c\x04\x64\x03\x99\x93\x3e\x6e\xc1\x68\x70\x38\x1c\xca\x9b\x5d\x3a\x8f\xca\xb4\x82\x55\x23\x9d\x3e\x18\x2c\xbb\xbe\xd7\x2a\xb8\x98\x70\xab\xb8\x80\xc3\x42\x0b\x31\xd2\xda\x8f\x50\x21\x08\x83\x12\x1d\xf2\xa2\x9f\x1c\x4e\xe4\x80\x51\x4e\x70\x69\x18\x10\x38\x04\x01\xaa\xa0\x5e\x51\x42\xd0\xe3\xb2\x17\x3f\x4e\x30\x09\xd8\xc1\x6d\x1d\xcd\x14\x3f\x8f\x10\xf4\x64\x46\x62\x07\x59\x75\x4e\x60\x3e\xb6\x3d\x1e\xb0\xef\x09\xba\x0f\xca\x6c\x3b\xd8\x81\xea\x5e\xe6\x6d\x66\x07\x29\x81\x2e\xe4\x26\x6a\x68\x36\x12\xe6\xbd\x81\xb7\xf7\xc6\x17\x70\x6f\x44\x89\xd1\x0c\x41\x80\x59\x42\xd5\xa3\x7a\xa5\x01\x3d\x27\xaa\x57\x1b\xd4\xa8\x8a\x0e\xc3\x4b\xec\xf7\x65\x44\x6a\x81\x0f\x1e\x48\xa4\x20\x66\x99\xe7\x09\x29\x88\x1a\xe8\x25\xf9\xd9\xd3\x60\x5e\x3d\x6c\xc0\x40\x7a\x04\x54\xa6\x24\x9b\xc1\x67\x40\xcf\x1e\x40\xef\x0e\x6d\x4c\x19\x58\x34\x32\xef\xcd\xc0\xb8\x37\x23\x75\x6f\x06\xa3\xf7\xe6\x58\x91\xba\xd4\xed\xfb\xd8\xeb\xf9\x68\xc2\xfd\x79\x67\x64\x05\x11\xc3\xf4\x89\xe3\x87\x9e\x7c\xcc\x8d\xe2\xb2\xe8\xa7\xbd\xea\xb5\x6a\xd6\xf2\x57\x9e\xc6\x07\x76\xe2\xae\x05\x17\xfd\xb0\x79\xa2\x76\xdf\x2a\x97\x7d\x63\xab\x56\xe7\x91\x65\x2c\x11\xfb\xc6\x82\xd6\xa3\x5a\x78\x20\xeb\x51\x37\xf2\x5c\xc6\xbe\x2d\xa2\xd6\x63\x2b\x22\x89\xe3\xa7\xf8\xf9\xa4\xbb\x88\x7c\xed\x87\x2f\x73\x9b\x83\x76\x59\x8f\xba\xbe\x1f\x9e\xdc\xcb\x38\x49\xeb\xd1\xa6\xeb\x37\xfb\xa4\xdb\x47\xc2\xd8\xe3\x9d\x7a\x34\x15\x87\xcd\x7a\xd4\x14\x35\xcd\x7a\x54\x3e\x78\x47\x60\x35\xf8\x0a\xd5\x9c\x9c\xc2\x91\x4b\x80\x74\x00\x2c\xeb\xd1\x4e\x18\x79\xcf\x86\x01\x76\x7d\xb5\x51\xce\x2e\xf9\x2b\x87\x7b\x28\x60\x95\xa6\x83\xe7\x59\x8f\xca\x58\x7d\x1c\xd4\x03\x10\x5a\x8f\x66\x43\xe1\x59\x8f\xb2\x97\x73\x18\xc4\xde\xc7\xe3\x30\x0b\x0e\x42\x40\xee\xfd\x61\x3d\x2a\x5d\x2b\x24\xa8\xf5\x5c\xb3\x66\xd1\x7e\xea\xd9\xf4\xa0\x85\xd6\xa3\x5a\xd8\x15\xf2\x33\x68\xa1\xe8\x60\x70\xc4\xa7\x71\xa9\xad\x47\x93\x40\x08\xd6\xa3\x22\xdc\x85\x80\xb8\xd7\x51\x92\x70\xc0\x43\xbe\xf2\x53\x19\x29\x4b\x38\xa2\x77\x32\x39\xbd\x12\xf8\x20\x46\x5d\xad\xc7\xb4\xbf\x84\x0e\x52\x54\xf4\x30\x43\x42\xec\x2e\x32\x6b\xba\x04\x3f\x0f\xd2\x7a\x96\x51\x84\xbd\xa6\xb6\x7e\x45\x17\xe3\x88\x4c\x5c\x91\x23\x8b\xd5\x80\x56\x8c\x5d\x4c\xcd\xc8\x09\xd6\xd7\xef\x87\x96\xba\x6f\x2d\x58\xaf\x57\xe7\xe0\xce\x07\x1b\x0d\x58\xaf\xdf\xb5\x1d\x90\x17\x72\xce\x7a\x34\x1d\x16\x6c\x93\xbb\x85\x46\xd5\x72\x45\xa9\xcf\xcf\xe6\xe1\xb1\x24\xf4\x7d\x14\x48\x3f\x2e\xf2\x83\x85\xfe\xb9\x6b\xdb\x2b\x42\xdf\xee\x7b\x11\xdf\x02\xf7\xe8\x56\x53\x82\x68\xa9\xbf\xd5\x92\xe3\xb6\x60\xb2\x5f\xc9\x86\x9a\x9d\x83\x73\xb0\x4e\xf6\xd6\xec\x1c\xdc\x29\xa1\xfb\x25\xf4\x80\x84\x1e\x94\xd0\x43\x12\x7a\x58\x42\x15\x58\xcf\x8b\xcb\xa8\xe6\xd0\x37\x0b\xff\x52\xad\xc8\x6a\xaa\xd5\x04\x9c\xe5\xe0\x2c\xb4\xd4\x6d\xc1\xbf\x26\xdd\xae\x26\xfd\xae\x26\x1d\xaf\x26\x3d\xaf\x26\x5d\xaf\x26\x7d\xaf\x26\x9d\x9f\x4d\x3a\x30\x9b\x74\x60\x76\x36\x01\x93\xd6\x66\x93\xd6\x66\xef\xd7\x86\xaf\x86\x3a\x11\x39\x1e\x30\xe4\x10\x48\x9f\xf9\x40\x37\x80\x28\x99\xf4\x79\x36\xe9\xf3\x6c\xd2\xe7\xb9\xa4\xcf\x73\x49\x9f\xe7\x92\x3e\xcf\xcd\x25\xf3\x27\x71\x9b\x7f\x4a\xc6\x30\x97\x8c\x61\x2e\xe9\xec\x5c\xd2\xfa\x5c\xd2\xfa\x5c\xd2\xfa\xce\xa4\xf5\x9d\x49\xeb\x3b\x93\xd6\x77\xce\x69\x23\xcf\x0b\x05\xc7\x86\xfb\x10\xb4\x94\x2b\x93\xba\x28\x94\x41\xef\x06\x3b\x04\xd2\x18\xbc\x93\x0e\xa7\x21\x5a\x4e\x46\xb4\xf3\x81\x54\x27\x58\x2c\xc0\xe3\xee\x22\x33\xb6\xa6\x65\x56\x53\x07\x50\x05\x5a\xdf\xfc\x66\x50\x28\x90\xda\xab\x3b\xe1\xce\x87\x58\x23\x0a\x5e\xb0\xd6\x20\xcf\x49\x86\x60\xf5\xdc\xc8\xed\x22\x8c\x22\x52\x45\x15\xce\x36\x86\xfa\xf7\x8e\x1b\xef\x5f\x76\x7d\xab\xd6\x76\xfd\x18\x0d\xef\x83\x5d\x84\xdd\xda\x6a\x97\x32\x92\x4f\xb9\x5d\x64\x7a\xe8\x7a\x03\x5c\x6d\xb9\xb3\x18\x5b\xc3\xa1\xca\x31\xe3\x3b\xc5\x31\x9b\x6e\xbd\xee\x36\xe7\xdc\x9c\x0b\xfa\x4f\x1c\x5c\x9a\xcb\xe5\x9c\x2d\x68\x79\xad\x53\x09\x8d\xa5\x87\x9d\x17\xe3\xc5\xf0\x14\x23\x8d\x2a\xdb\xa2\x1d\x4f\xfc\x28\x93\x1c\x8a\xc2\xb5\xa4\x4e\x80\x0c\xef\xf2\x20\xb4\xfa\xbe\x05\xe9\x1a\x13\xec\x99\x25\x9d\xb0\x60\x9d\x6c\x5b\x53\x64\x73\x31\xc3\xc9\x9b\xa5\x90\x53\x64\x4b\xbc\x52\x6a\x71\xc4\x26\x75\x35\x39\xdd\x9f\xa0\x26\x8a\xbc\x73\xf0\xe1\x06\xac\xcf\x41\x8b\x86\x2b\xd5\x1c\x41\xe4\x96\xa0\xee\x0e\x8c\x64\xb3\xed\x90\xe4\xa7\xae\x2e\xdc\xcd\x3a\x3f\xfb\x43\x0a\xa2\xc3\xfa\x4e\x68\x21\x97\xc6\x61\x13\x03\x91\xc7\x1d\xc9\x4d\x64\x5a\xd3\x86\x2b\x14\xd8\x7e\x7b\x10\x5a\xbe\x67\x41\xea\xc8\x01\xeb\xd5\xaa\x1c\xf3\xa4\x53\x58\xb0\x18\x39\xf1\xda\x96\xdc\xb6\xc9\x9b\xdb\x64\x27\x8e\xaf\xa3\x54\x4a\x0a\xd0\x1e\xe7\x0c\xb4\x1f\xf8\x88\xf6\x4d\x0c\x55\x69\x67\xf4\x50\x95\xe1\xc6\x3d\x37\x48\x06\x5c\x81\xcc\x4f\x0b\x5a\x8b\x7d\x8c\xd9\x61\x47\x12\xa9\x9f\x8b\xcf\xb9\x58\xe6\x08\x54\x40\x3c\x5e\x01\xcf\x32\x09\x72\xb0\x92\xa5\x45\xcc\x2a\xae\x42\xe6\x13\x23\x96\x88\x7b\xc5\x28\x44\x4e\x1d\x75\x41\xfe\x77\xf9\x35\xe5\x27\xa9\xe9\xe1\x11\xc4\xb0\x31\x64\x73\x48\xa7\x8c\x2f\xcb\x4e\x05\x2f\x74\xd6\x67\xd2\x99\xab\x9a\x4e\x8d\xd1\xd5\xd6\x09\xf5\x62\x1c\x73\x5a\xb2\xa6\xe7\xc8\x43\x64\x66\xdd\x56\x18\xf8\x2b\xb2\x36\x56\x40\x74\x8a\x1f\x55\x5a\x2e\x7e\x30\xe4\x67\x48\x3a\x95\xd4\x43\x00\x41\x24\x46\xcc\xdb\xb8\x39\xd8\x09\x53\x67\x93\xde\xd6\xc8\xca\xd9\xc7\x49\x16\x90\x9e\x66\x99\xbe\x24\x8b\xf9\x10\xb4\xdc\xa0\x25\xc7\xaa\xf9\x57\xf0\x09\x09\x42\x75\x81\x34\x12\x2a\xa7\x44\xfd\x93\x3f\xf2\xbc\x5d\x33\x02\xfb\x75\x87\x0f\x8a\xd0\x55\xc6\x15\xa5\x5c\x41\xf8\x82\x4c\x82\xcc\xc6\xf9\xdc\xa9\x92\x9d\x4a\x82\x15\x63\x08\x9e\xc7\xc4\x21\xf5\xd0\x18\x31\x1a\xf1\x96\x87\xdc\xd3\xac\x38\x2f\xe8\xf6\x71\x48\xf6\x84\x8f\x30\x21\x22\x61\xbb\xad\x7f\x89\x22\x76\x14\xa6\x3f\xb8\x3d\x0f\xd3\x4b\x28\xfd\x5b\xdc\x43\xbe\xdf\xec\xa0\xe6\x09\x0b\x5a\xb4\x83\xd6\x24\xc7\x9a\xb9\x8f\x63\x0e\x37\x76\xcd\x07\x93\x63\x43\x3c\xb4\x61\xc9\x2c\x94\x0a\x36\xc3\x00\x47\xe4\x9c\x4f\x44\x16\xd1\x5b\xbc\xe2\xa3\xe4\xac\xe2\xbd\x38\xc4\x3b\x41\xa5\xce\x63\x34\x8b\x2c\xa1\xfb\x1d\xf1\x72\x5d\x77\x65\x11\x1d\xd1\xb0\x98\x67\x4f\xa4\x71\x23\xc5\xa7\x79\x12\xb6\x42\xca\x51\xe2\x0b\x93\xe6\xb8\x38\xa9\x1e\xb4\x6d\x1e\x67\x51\x88\x5b\xda\x29\xbc\xc8\xe2\x21\x0a\x01\x4c\xfb\xc6\x51\x47\x97\x22\x98\x78\x9d\xca\x79\x42\x06\x4c\xc9\x11\x45\x78\xee\x96\x47\x4e\x81\x18\x45\x2a\x1f\x1e\xe3\x30\x52\xe6\x2f\x56\x4e\xfe\xc9\x28\xff\xc3\xda\xd1\xb9\xc1\xfd\x4b\xf6\x4e\x3f\x2e\x79\x4d\x76\x1c\x1a\x5a\xdd\x6a\xe6\x5a\x30\xc0\x5b\xc0\x64\xdf\x4b\x3c\xf5\x43\x0f\x7c\xa3\xf3\xd4\xd7\xd1\x51\x33\x4f\x2d\xdf\xf2\x81\xd6\x1e\x45\x67\x66\x41\x2b\x81\xe4\xb9\x8a\x51\xd4\xb5\xa0\x95\x8a\x9a\x6d\x3d\xa6\x2a\x08\x2c\x68\x1d\x17\x82\x05\xe7\xd8\x79\x31\xa9\xd9\x52\x79\x70\x2f\xa0\xd7\xf9\x54\x35\x17\x78\x5d\xaa\x0b\xc8\xa8\x62\x32\x09\x39\xba\x97\x8c\xbe\x25\xa5\xed\xcb\xe8\xf4\x7a\xe9\x7a\x34\xc5\x8f\x59\xdd\x96\xd2\xe5\x19\xb4\x6f\x19\x1d\x94\x49\x5f\xa3\xe8\x00\x13\x41\x44\xd7\x0f\xa9\x2a\x9f\x4d\x6b\x44\x55\x3d\x58\x56\xc9\x6b\xd2\xd7\x2e\xba\xb1\xd7\x4c\x1e\x7b\x62\x1a\xdb\xd9\x87\xb8\xc6\xf6\x76\x27\xc7\xa8\x7d\xcc\x68\xf5\x34\x25\xa3\xd0\x20\x8e\x53\xf5\x8d\x99\x66\x83\x06\x97\x6b\x1a\xc6\xaa\x84\xd8\x01\x92\xee\xb8\xf2\x51\x1f\x40\x46\x05\xc4\x06\x33\x52\x33\x44\x52\xb5\xb8\xea\x59\x6d\x94\xa2\x76\x52\xf4\x48\x54\x80\xcb\x8e\x6c\x9c\x0e\xe4\x01\x28\xe4\x28\xb1\x5d\xe9\xc2\x2a\x7c\xca\x38\x25\x0f\x3b\x31\x54\xc6\x41\xa8\xaf\x78\x22\x93\x79\x52\x07\x37\x55\xf1\xeb\x67\x7f\x4b\xe0\xf5\xe2\x8a\xa5\x68\xbe\xd4\x2c\x9e\xc0\xf3\x44\x1b\xa6\x7e\xe6\x32\x54\xa2\x1f\xcb\x7c\xf4\x95\xda\x77\xa6\x73\x24\x7b\x23\xd1\x9d\x89\xe3\x9d\x6d\x95\x44\x91\x66\x60\x08\x14\x56\x59\xe1\x8a\xc5\x22\x69\x32\x44\x18\x09\xc1\x92\x2d\xa0\x55\xb1\xd2\x9c\xf2\xd8\xd3\x3d\x15\xe1\x3b\xc5\x12\x28\x5c\x47\xa6\x88\x50\x62\xe6\x70\x22\x99\xfc\x54\x67\xc2\x99\xb9\xba\x4a\x9d\x84\x64\x25\x87\xc3\x35\x98\x8a\x72\x41\xca\x44\x39\x58\xc8\xa5\x6d\x1f\x61\x31\x71\x13\xeb\x0a\x27\x16\x29\x1e\x50\xf5\xda\x9c\x6c\xe1\xae\x7f\xdc\x5d\x9a\xe4\x70\x90\x17\x31\x9a\x82\x29\x7b\xb5\x62\x52\x33\xa9\xf7\x21\x13\xde\x6c\x68\xd7\x26\xe3\xef\x24\x84\xf6\x2b\x47\x32\x4e\xa6\x70\x41\x84\xc2\x66\xd6\xac\xd6\x48\x95\xb9\xa2\xa8\x27\x65\xb9\xda\x89\xb2\xf4\x32\x31\x35\x03\xa3\x55\xe5\x49\x32\x47\xa6\x1c\xb6\x36\xad\xb0\xaf\xe8\x32\xa7\xf1\xda\xc1\xa8\x77\x57\xee\x0a\x66\xf5\xc1\x24\xef\x8c\x6a\x17\x08\x23\xe8\xa4\x26\x94\x57\x67\xd9\x9c\x2a\x93\x55\xd1\x55\xc6\x22\x7b\x9a\x63\x7e\x18\x56\x2b\x69\xcd\xb1\x96\xe1\xa1\x84\xa7\xa6\xf8\x9b\x2f\xd9\x1b\xc8\xf7\xde\x30\xc0\x62\x62\xc6\x91\xef\xf4\x33\x29\x72\x6b\x8b\x6d\xa1\xe2\x4d\x93\x55\x9c\xe0\xcd\x26\xf7\x72\xee\x3d\xd2\x86\x77\xf4\x83\xea\x8e\x36\xb3\x8d\xc9\xf6\x98\x84\x81\xd4\x76\x78\xfe\x55\xa6\x61\x9f\x4b\x22\x31\xe1\x2e\x1f\xb9\x5d\xab\x3b\xc7\x20\xac\xf1\x1e\x2c\x77\xa3\x1a\x76\xd8\x04\xd7\x55\x13\x6c\x5f\x49\x25\x32\xda\x96\x49\xb6\xae\xd8\x76\x23\x36\xc4\x83\x26\xf5\x22\x67\xc3\x8c\x4f\xee\xe4\x2a\x65\xc6\xa3\x65\xce\xc3\x66\x13\xa3\xa5\x8a\x98\x0f\xa8\x88\x69\xb8\x37\x4e\xd4\x92\x86\xb6\xad\x9c\xa5\x1f\x39\x53\x0f\xe4\xeb\xae\x46\x28\xf7\x76\x2a\x13\xa9\xbc\x20\x34\x6a\x16\x79\xc9\xfb\x61\x75\x6e\x52\x65\xee\x4e\x92\x77\x43\xaa\x50\xbd\x87\x19\x9b\x84\x0d\x28\xe0\xfb\xfe\xa4\x8a\x08\xf5\x6a\x25\x51\xd4\x73\x8a\x60\xe5\xe8\xca\x0d\xb7\x1a\x93\xb4\x52\xc8\xfd\x52\x2a\x05\x61\x89\xc7\x2b\x54\xdc\x74\xd5\x2e\x71\x31\x3c\xa7\x47\x89\x02\x9d\x61\x90\x61\xf2\x52\xca\x69\xbd\xe4\xc3\x99\x74\x53\xea\x86\x74\xa7\x93\x2d\xf8\x98\xed\x99\xb1\x15\xb9\xad\x8d\xc9\xa5\x3a\x4d\x56\x49\xd3\xcd\xf1\x5a\x5a\x89\x2a\x6c\x83\x67\x59\x41\x6a\xb2\x73\x50\xdc\x3f\xca\xb3\x21\x39\x8e\xc6\x18\xc1\x64\xdf\xf4\xcc\x98\x01\x29\xd4\x23\xcb\x88\x59\x96\x89\x8b\xcb\x9c\x23\x7a\x22\xb4\xf8\x4b\xc2\xe2\xb3\x7e\xc7\x9f\xe9\x93\xf2\x2d\xdd\xb7\xf1\xcc\x54\x86\x9d\x4a\x59\xa7\xa4\xb9\x29\x13\xca\xed\x84\xf7\x8f\x64\xa7\xe6\x52\xec\x54\x0e\x43\x95\xa7\xed\x1f\x83\x90\x66\xd3\xb2\xdb\xe0\x62\x66\xf5\xc3\x42\xa0\x08\xbf\x9c\x4a\x1a\xcc\xb2\x01\xd5\xb1\x07\xe8\xec\x46\x38\x4a\xc3\xe5\x10\x9b\x9e\x2d\xd2\xc0\x6e\x81\xc2\x75\xc4\x5b\x30\x77\x5b\xff\xba\xef\xc8\x89\xc7\x4f\x78\xf8\x09\xb3\xfe\x35\xcf\x8e\xc1\xc8\xa6\x6a\x9c\xa9\x81\x19\x1d\x63\xc7\xa0\xb2\x52\x0f\x8e\xbb\xc8\xe2\x27\x5c\xcb\x5b\x9e\x58\xa3\x2f\xaf\x40\xf4\xf3\x29\xff\x42\xec\x53\xbb\xd7\xe2\x27\x68\x33\xec\x2e\x86\xfc\x54\x1f\x43\xea\x79\xc0\x0c\xed\x1a\x4e\xb9\xcb\xaa\x4e\x7e\x97\xa5\x2a\xab\x32\x37\x53\x73\x13\xdd\x24\x29\x17\x42\x3b\x33\xb7\x45\x8a\xc2\xe7\xfe\x11\xd7\x4c\xd9\x2b\xa8\x4d\x5d\x1e\x29\xf1\xee\x4d\xd7\x46\x93\x1b\x10\x6c\x1d\x99\x49\xd1\x84\xad\xa0\x3a\xf7\x20\xb9\x79\xfa\xf8\x57\xbe\x7e\xb2\xf3\xcc\x3e\x33\xb9\x79\x9c\x39\x04\xea\x97\x3b\x16\xd9\x9c\x8c\x67\x91\x57\x3d\x0a\x5d\xd2\x98\x1a\xe5\xee\x26\xe1\x6f\x4c\xac\x4c\xd6\x7a\x59\xe1\x7d\x32\x9c\x13\xbf\x02\x99\xc4\xf4\x2a\xcb\xa0\x1b\x37\xde\x98\x4b\x6c\xb9\x29\xb2\xb7\xd6\x44\x0e\x1f\x81\xf9\x6a\x08\xd3\x1c\x13\x22\x49\x65\x1f\x48\xb8\xb4\x49\x84\x2b\x61\xff\x3a\xa1\xb9\xc4\x9d\x94\x3e\x78\x2f\x27\x12\x3d\x98\x90\xc1\x4d\x75\x37\x67\x5f\xa1\x48\xf9\x23\xd8\xae\x6a\xd6\x18\x27\x93\x45\xb1\xcc\x18\x31\xd1\x8a\x15\x5b\x75\x76\xc4\x54\x6b\x76\x30\xa3\x7d\x6b\x15\x32\xbe\x61\xb1\xa4\xaa\xb2\x80\xbc\xc2\x5c\x5e\x70\xce\x60\xbd\xfd\xf0\x44\x1a\x4c\x03\xd7\xa9\x6e\x25\x11\xa0\x6f\x83\xe2\x8f\xb2\x9f\x73\x88\xc5\x84\x84\x21\x3d\x4a\x4b\x6d\x48\x19\xee\xc3\x0a\xeb\x92\x1c\x86\xd0\x2a\x8f\xb6\x38\x9f\x74\x8e\xd2\xe6\x57\x29\x6b\xf9\xac\x64\x62\x62\xab\xef\xd7\x34\xb5\xf9\x42\xf3\xa6\x4c\xc4\x6e\x63\xef\x0b\xcb\x40\x4a\x27\x15\xa7\x56\x36\xa9\xb9\x48\xae\xe4\xcc\xa0\x60\xd6\x06\x94\x13\x50\xd1\x8c\x6a\x58\xa3\x1a\x6f\xce\xa5\x8d\x37\xc9\x40\x92\x7b\xb0\xa4\x82\x66\x3f\x8a\xd8\x16\x4f\xba\xf9\x6d\x63\x57\x94\x30\xdc\x86\xde\x64\x43\x84\xe7\x62\x13\x2b\x33\xa9\xd2\x45\x47\x98\xb9\x71\x08\x33\x9e\x27\xca\xca\xb2\x70\x67\x1e\xf5\x64\x16\x7c\xd2\x16\x67\x0b\x19\xa9\x2d\xe4\xa0\x72\x62\x44\xdf\x6d\x2e\x6a\xf9\xe8\xe1\xaf\x7d\xed\xf1\xf0\x61\x33\x17\x95\x18\x6c\xe8\xda\xef\x11\x07\xfb\xa8\xc3\x46\x95\xb7\x98\x09\xd5\x84\x56\x83\x29\xdd\x3b\xe1\x5c\xb4\x23\x7a\xf6\x76\x4e\xe8\xad\x42\x22\xa5\xb3\x5b\x82\x48\x23\xa3\xdc\xde\x6d\x7c\x0a\xf6\xb4\x8f\xdf\xbf\x7f\xf6\x40\x8e\x12\x40\x1c\xfd\xf9\xfe\x93\x1b\x22\xf9\xc9\x81\x3e\x8e\x14\x67\xec\xe8\xd3\xa4\x78\x1c\x25\xbc\x0d\xcb\x3f\x16\x68\x24\xa0\x77\x8a\x1a\x43\x29\x14\x8a\xe2\x9a\x3a\x8b\xb8\x92\xe2\xce\x6a\x2c\xf7\x96\x12\xbf\x6c\xdf\xb7\x02\x7d\xf3\xe3\x81\xde\x6d\xd4\x3d\x79\xe0\xd0\x83\x7b\x96\x0f\x7e\x3d\x57\x7f\xa5\x5d\x61\xe5\x08\x70\x5b\x70\x15\xb3\x05\x42\x50\x26\x4a\xea\x24\x9c\x80\xa5\x22\xb0\xe1\x92\x25\x7d\xe8\x6f\x31\xba\xea\x63\xd8\x0a\x54\xbd\x07\xfd\xc6\xf6\x3e\xe8\x3e\xdc\xdc\xd7\xe9\xe7\xe0\xe8\x86\xee\xe6\xf3\x94\x1c\x93\x18\x99\x8e\x64\x01\x26\x73\x9b\x4a\xa9\x0f\x26\xf1\x36\x30\x7a\xcd\xc8\xd2\x1b\x75\x90\x91\xe6\xed\xf9\xbe\x31\xc6\x91\xe4\x66\xbd\x43\xfe\x31\xb7\x63\x63\x2e\x3d\xa0\x30\xea\xca\xc3\x66\x27\xe1\xf4\x0d\xc3\x30\x79\xda\x8c\xe1\xd6\xa1\xd9\x61\x26\x91\x2a\x34\x7b\x40\xa3\x33\xd9\x64\x6a\x83\xdb\xe1\x0e\x69\xa4\x37\xe1\x15\x36\xd2\xfd\x8f\xe1\xae\xae\x1d\x36\xba\x15\x2a\x19\x39\x11\xbc\xfc\xda\x06\x14\xbd\x13\xad\xf4\x08\x8c\x9e\x95\x18\x9d\xe2\x7c\x25\xf5\x9d\x0c\xc5\x3e\x43\xde\x0a\xb7\xef\xa4\xc0\xa2\xba\x09\xe7\xe8\x52\xdb\xf5\xfd\x45\xb7\x79\xa2\xe4\xb5\x4b\xc9\xcb\x90\x5b\x4e\xc3\x0d\x61\x43\x19\x25\x17\x1d\xb3\x57\x97\x10\x56\x9f\x65\x96\xb1\xb0\x60\xac\x7e\xa0\x61\x72\xf9\x37\x19\x68\x2f\x9a\x47\xb5\x68\x38\x04\xc3\x0d\x4d\x85\x70\xcb\x95\x31\x31\x3e\xbd\x49\x50\x62\x82\xa5\xa6\xc1\xd2\x2c\x3c\x91\xfa\xa6\x1b\x0f\x28\xd5\xf1\x62\x1e\x5e\x95\x34\xed\xa1\x98\x34\xae\x96\x62\xd1\xa6\x10\x8d\x36\x55\x56\x3e\x88\x48\x9f\x5e\xb1\x18\x38\x8e\xa3\x46\xa3\x55\xfa\x13\xf0\xb0\x52\x4b\x08\xdb\x88\x06\xa1\x04\x6a\x48\x60\x2d\x27\x0d\xab\x39\xe1\xb4\xab\x71\x05\x37\x1e\x44\x4d\x86\xda\x9d\x46\xc5\xe2\xf4\xb4\xda\x45\x45\x58\x00\x99\x6f\x82\x95\x34\x07\xe7\xaa\xa4\x83\x9f\x16\x90\x1d\xb0\x50\x6b\x01\x50\x9e\x04\x95\x6f\x68\x7a\x4e\x65\x97\xb7\x3b\x69\x21\x80\x16\x0b\xc9\x65\x81\x5d\x9e\x08\x4d\x1c\x3a\x41\x99\x05\x62\xdb\x83\xe7\x13\xd0\xf6\x40\x2d\xa8\x7b\x8d\x29\x6c\x87\x60\x1e\x29\xd3\x1c\x2a\xfd\x04\xb5\x68\x66\x66\x38\xb4\x11\x80\x91\x16\x6c\x2f\x79\xba\xd1\xd4\x6b\x8f\xf5\xda\x33\xf6\x9a\x45\x0f\x4b\xda\xf3\x94\x5e\x87\xa2\xd7\xae\xe3\x25\xbd\x4e\x40\x3b\x04\x35\xaf\x1e\xd2\x98\x65\xd8\x76\xf9\xf3\x7b\xb1\xa3\xf6\xdf\x55\xfb\x4f\x32\xc6\x8f\x94\xaa\xa2\x27\xf1\x10\xf9\x31\x22\xbd\x73\xc9\x4e\x95\x1d\x9c\x0a\xc8\x38\xd9\xaf\x52\x75\xa8\x45\x07\xf6\xc6\x0e\x17\x86\x7c\xc0\x83\x41\xb4\xbb\xc2\x2b\x5d\x15\xa7\x6a\x6d\xba\x0a\x59\x8f\x78\xa4\xce\xa1\x9c\x0b\xd7\xa9\xc0\xd8\x31\xcf\x45\xb0\xdb\x89\x8a\x45\x77\x77\xbc\x8b\xb5\xdd\xcf\x99\x12\x97\x4c\x89\xcb\xa7\xa4\xcf\xa7\xc4\xd7\xa6\xa4\xaf\x4c\x09\x0c\x07\x03\x15\x2d\xfb\x8a\xaf\x21\x9b\x2f\x5f\xcc\x8a\x2f\x27\x2b\x50\x26\x2b\x19\xd7\xa8\x9a\xc4\x88\xfb\x43\x3a\xb5\x2e\x43\x23\x38\x5d\x05\x83\xc1\x88\x99\xc9\x3c\x7d\xc0\xb6\xc6\xaa\xdc\x55\x35\x54\x96\x30\x2f\x1b\xd7\xf0\x50\xc6\x96\x2e\x77\xdc\x58\x09\x38\x6b\x2b\x5d\xa2\x81\xff\xe4\x03\x8e\x48\x82\x1a\x6e\xd3\x80\xdf\x64\x3d\x93\x25\x22\x5b\x14\xc6\xce\x21\x17\x77\xca\x5d\x2f\xb0\x19\xe0\x9e\xb2\x19\xc9\x99\x09\x61\x05\x40\xb7\x54\x05\xb0\xef\x10\x5c\x89\x01\xf4\x9d\xbe\xac\x1e\x36\x9d\x3e\x7f\x07\x71\x57\xb3\x58\xf4\xf9\x72\xb6\x59\xde\x19\x27\x04\x53\xbe\xd3\x56\xb3\xb7\x79\x76\x11\x2a\xaf\x79\x3b\x91\xf1\x78\xc4\x4b\x07\x43\x54\x6e\x86\xfd\x00\xf3\xdb\x55\x1a\x17\x8f\xea\x9b\x0f\xb7\x59\x12\x8d\x62\xc9\x5a\xdc\x83\xe9\x2d\x89\xe3\x41\x54\x6e\x7b\x41\x8b\x65\x78\xc6\xc3\x9d\xc3\xed\x76\x8c\xb4\x43\x83\xc6\x6b\xe6\x34\x06\xba\x30\xce\x3c\xe8\xfb\xc8\x4e\x25\xbe\x6d\xf2\x78\xef\xce\x46\xb1\xa8\xfe\x82\x7d\xa7\x02\x7d\x27\x73\xd8\x4e\x4f\xbb\x43\xc3\x66\x6b\xc2\x76\xb2\x38\x1d\x65\xef\x34\x93\xbd\x03\x5b\x4e\x65\x57\x6b\x77\x67\x57\x4b\xd0\x93\x9e\xd3\x4c\x36\x4f\x02\xda\x2d\x50\x6b\xd6\x5b\x0d\xd8\x75\x54\x4c\xee\xa9\x98\x4c\xb6\xc4\x74\x3c\x18\x4c\x77\xd9\x03\xce\x76\x0f\xb0\x10\xcc\xb6\x56\x20\xd9\x60\xed\xc1\xa0\x0b\xa0\x6f\x8b\xe0\x87\x74\x17\x15\x02\xbb\x07\x23\xf0\x88\x53\x99\xb7\xfb\xbb\xbd\xf9\x70\x30\xb0\x43\xa7\x07\x6a\xae\xd3\x83\xfd\x99\x19\x50\xeb\xcf\xcc\xd0\xdd\x97\x94\x13\x3b\x06\xba\x83\x41\x38\xa4\x4b\xe2\x27\x66\x5e\x8e\x32\x29\xca\x5a\xb8\xd9\x75\x98\x33\xae\xc3\x9c\xb6\x0e\x73\x8d\x29\x46\x4a\xd9\xa0\xf6\xd8\x80\xbf\x53\x91\x0c\x32\x4a\x26\x58\x12\x30\xdf\xa9\xec\xf2\x77\xf7\x77\xf9\x62\xa2\x9b\x4e\x94\x4c\x74\x02\xda\x3e\xa8\x45\x75\x9f\x52\xa9\x69\x77\x30\x98\xd6\xd6\x4d\x21\x40\x74\x86\x9b\x40\xec\x11\x75\x92\x9b\xea\x24\x07\xd0\x83\x2e\x98\x4a\xbe\xb6\x93\xde\x3d\x52\x29\x16\x63\x16\xe2\x33\xa4\xf8\x02\xd8\x12\x78\x76\x13\x06\x64\x09\xe4\xe7\xa6\x7c\xb1\x22\x1e\x26\xac\x91\x12\x27\x4d\x63\x15\xc5\xc3\xa8\xdc\x32\x91\x3e\x7c\xac\xdc\xf1\x40\xcf\x41\x65\x21\xba\xc1\xd0\x89\x06\x03\x6f\x4a\x8d\xab\x1f\x0e\x06\xa5\xaa\xe3\x38\x84\x6f\x0c\x65\x7c\x55\x97\xfc\x82\x55\x19\x1e\x9f\xae\xb4\xdb\x5a\x76\x83\x26\x62\xae\x3f\x64\x6e\xf8\x56\x75\x21\x2a\x13\x8e\xa4\xb7\xcf\x73\x9b\x91\x87\xbd\x66\xec\xf4\x93\x9e\x33\xeb\xda\xc8\xcc\xdb\xf5\x6d\x04\xca\x38\x7c\xba\xd7\x43\xd1\x5e\x97\x46\xab\xe6\x74\xc0\xa6\xb1\xd9\xb5\x4f\x40\x99\x8f\xe3\x2b\x3d\xb4\xa7\x83\xdc\xd6\x46\xab\xa7\x92\x5a\x4c\xc8\x87\xa9\x85\xf9\x6a\xad\x54\x1d\x72\xb4\x5b\xb5\xd6\x5f\xfd\x97\x55\xb3\xf6\x58\xd0\xfa\xff\xfe\xf3\x7b\x0e\x5d\xfe\x8e\x00\xbe\x2b\x80\xef\x71\x60\xed\xe2\x1f\x24\xf4\x96\x84\xfe\x24\xa1\x77\x44\x81\xe7\x38\x70\x45\xd4\x75\x25\xa9\xe2\x7d\x09\xfd\x55\x42\xff\x94\xd0\xdf\x39\x74\x43\xb4\x74\xfd\x77\xa2\xd2\xe7\x45\xca\x59\x99\xfb\x0d\xf1\xed\x05\xf1\xed\xa2\x00\x7e\x2c\x2a\x12\x5d\xb8\x91\x74\xe1\x77\x12\xfa\xb3\x84\xc4\x44\xac\x9d\x97\x7d\x16\x0d\xde\x10\x95\xae\x9f\xfb\x1b\x87\x6e\xbd\x4e\x3b\x4a\xdb\x7e\x91\x40\xfb\x49\x9b\xff\x91\xd0\x1b\x02\xba\xf5\x3a\x1d\xdb\x61\x0a\xd2\x36\x9e\xa6\xe0\x79\x02\x7e\x95\x82\x17\x13\x90\x56\xf0\x75\xd2\xd2\xab\xff\xb6\x6a\xd6\x63\x74\x61\xde\xe0\xd0\xda\xf9\xef\x49\xe8\x79\x09\xbd\xc8\xa1\x9b\xcf\x71\xe0\x9a\xc8\x75\xed\xbb\x1c\x58\x7f\x95\xb4\xb6\x97\x56\xf6\x26\x87\xae\xbc\x28\x80\x97\x04\xf0\x43\x01\xfc\x88\x03\x97\xbf\xcf\x81\xb5\xf3\x22\xd3\x35\x91\x74\xe3\x12\x07\x6e\xbd\xfe\x11\x87\xd6\x5f\xbd\x60\xd5\xac\x7d\xb4\x99\xb7\x38\xb4\x76\xfe\x87\x1c\xba\xf2\x13\x99\xf4\x23\x09\xfd\x54\x42\xaf\x4a\x48\xe4\xbb\x22\x3e\x5e\x7b\x59\x00\xa2\xae\x6b\x3f\xe0\xc0\xad\x33\xa2\xc9\xeb\xe7\x08\xf0\x0d\x02\x3d\x2f\x21\xb2\x46\xfb\x9e\x25\xd0\x0b\x02\x5a\x7f\x95\x4c\xf7\x7e\xda\xc9\xb7\x39\x74\xf9\x25\x01\xfc\x40\x00\x3f\xe4\xc0\xda\xa5\xef\x08\xe8\xe2\x47\x32\xed\x79\x09\x7d\x4f\x7e\xfd\x0f\x87\xae\xbc\x2a\x92\xce\xff\x4c\x42\xbf\x10\x1f\x45\xd2\x15\x91\x72\xf9\x65\x59\x83\xe8\xd8\x95\x5f\x73\xe0\x86\x68\xe7\xc6\x8b\x32\xd3\x79\xd9\xb4\x48\xbb\xf1\x8e\x6c\xe6\x75\x51\xc3\x2f\x65\x52\x02\x89\x5a\xaf\xfd\x54\x00\x3f\xe1\xc0\xfa\xab\x64\x31\x0f\xd0\x39\xf9\x03\x87\xd6\xce\x9f\xe5\xd0\xb5\x57\x38\x70\xeb\x8c\xc8\xb6\xfe\x2a\x19\xed\xe3\xb4\xc0\x1f\x39\x74\xfd\x9f\x1c\xb8\xf2\x3a\x07\xd6\xce\xff\x4e\x24\x9d\x15\x80\x48\xb9\xfe\x07\x91\xf2\x86\x48\x79\x8b\x03\xd7\x4e\x73\xe0\xd6\x59\x91\xfb\xd6\x99\x0f\x25\xf4\x11\x87\xd6\x5f\x25\x69\x4f\xd0\x3e\xbc\xc3\xa1\x2b\x6f\x71\x60\xed\xfc\x1b\x12\xfa\x03\x87\x6e\x9c\x95\x49\x49\xb6\x77\x24\xf4\x27\x51\x87\xc8\xbf\x7e\xee\x8f\x12\xfa\x80\x43\xb7\xce\xfe\x58\xa4\xbd\x4a\x3a\x72\x90\x36\xff\x2e\x87\x2e\xff\x48\x00\x3f\x16\xc0\x4f\x38\x70\xe5\x1d\x01\xfc\x49\x00\x7f\x16\xc0\xfb\x22\xf3\xff\x70\x60\xed\xfc\x5f\x05\x74\xe9\x25\x0e\x5d\x17\x1f\x6f\x88\x94\x1b\x3f\x94\x99\x04\x74\x45\x96\x3b\x2f\x6a\xbf\xf6\x1a\x07\xd6\x5f\xfd\xd8\xaa\x59\xff\x45\x3b\xfc\x27\x0e\x5d\xf9\x27\x07\x6e\xbe\xc4\x81\xf5\xd3\x04\xdf\xbf\x4c\x73\xbd\xc7\xa1\xb5\xf3\xef\x73\xe8\xfa\x3b\x32\xe9\xef\x1c\xba\xf2\x2f\x99\xf4\x4f\x0e\x5d\xfb\x25\x07\xd6\xcf\xbd\xcb\xa1\x5b\x67\xbe\x23\xa1\xef\x49\xe8\x79\x01\x9d\x7d\x43\x94\x38\x4d\x68\xd6\x93\xb4\xf9\x3f\x73\xe8\xca\xc7\x02\xb8\x20\x80\x0f\x39\xb0\x76\xfe\x5f\x12\x3a\x2f\x3e\x5e\x92\x49\xff\x91\xd0\x45\x0e\x5d\x15\xd5\xdf\x10\x55\xac\x9f\x7b\x43\x42\xbf\xe3\xd0\xad\x33\x2f\x49\xe8\x45\x01\x9d\xfd\x0e\x87\xae\x13\x12\xf8\x24\x99\xac\xeb\x34\xdb\xb7\x68\xbf\xc9\xa8\x0e\xd1\x7e\xff\x85\x43\x6b\xe7\x3f\x12\xd0\x85\xef\x48\x48\xe4\x5b\x3f\xf7\x57\x0e\x5d\x7b\x5d\x24\x9d\x26\x24\xfc\x29\x5a\xc9\x5f\x39\x74\xfd\x3c\x07\xae\x8a\x6f\x97\x5f\xe1\xc0\xda\x85\xe7\xc5\xb7\xef\xcb\xa4\x17\x45\xd2\x0b\x32\xe9\x87\x12\x7a\x89\x43\x37\x7e\xc7\x81\x6b\x67\x38\x70\xeb\xec\x4f\x25\xf4\x96\x68\x9a\x16\xa4\xe3\x24\x34\xea\x29\x36\x4e\xd2\xe6\x61\xda\xc5\xbf\x71\xe8\xf2\xab\x02\x38\x2d\x80\x9f\x71\x60\xed\xd2\xab\x12\xfa\xa9\x84\x7e\x21\x21\x91\xef\xf2\xcf\x45\xd2\x85\x1f\x71\xe8\xc6\x9f\x65\xd2\x4f\x38\x74\xf5\x47\x32\x49\x56\x76\x41\x34\x70\x55\xe4\xba\xf1\x57\x01\xbc\x2f\x6a\x17\x0d\xde\xf8\x93\x6c\x59\xd6\x29\x6a\xba\xfe\x8a\xc8\x24\x7b\x20\xf2\x5c\xfb\x9d\x2c\xf6\xba\x84\x7e\x2d\xa1\xe4\xeb\x59\x09\xbd\x21\x21\xd9\xe7\x4b\xbf\x14\x2d\x89\x5e\x5c\x17\x43\xbc\x2c\x3f\x7d\x24\x9a\x7c\x51\x00\xbf\xe5\xc0\xad\x33\x3f\x94\x90\xa8\xf3\x1a\x6d\xe6\x20\x4d\xa3\x9d\xa5\xdd\xa6\x89\x4f\xd3\xc5\x22\x48\x70\x84\x2e\xd6\xfb\x1c\x5a\xbb\xf0\x33\x09\xfd\x82\x43\xd7\xde\xe2\xc0\xfa\xb9\x37\x39\x74\xeb\xcc\x4f\x25\xf4\xaa\x84\x44\xd1\xf5\xd3\xa4\x7b\x5f\xa1\x15\x9f\xe3\xd0\xad\x33\xbf\x90\xd0\x2f\x39\x74\xf3\x87\x1c\x58\x3f\x4d\x30\xf4\x28\x2d\xf0\x77\x0e\x5d\xfd\x19\x07\xd6\x2e\xfc\x52\x24\x09\xe0\xc6\x4f\x05\xf0\xaa\xcc\xf4\x6b\x09\xbd\x2e\xb2\xff\x42\x26\x9d\xe5\xd0\xcd\x1f\x71\x60\xfd\xdc\x5b\x1c\xba\x75\x46\x94\xbc\x75\xf6\x0f\x12\xfa\x9e\xc8\x77\x9a\x6c\x8a\x63\xb4\x67\xff\xe0\xd0\xda\xc5\xb3\x1c\xba\xfa\x6b\x91\x74\xe1\x2d\x91\xf4\xba\x4c\xfa\x9d\x48\xfa\x9d\x4c\xfa\x83\x84\xde\x90\xd0\x3b\x1c\xba\xf1\x4b\x91\x5f\x54\xbf\x7e\xee\x23\x0e\xdd\x3a\xfb\x8e\x84\x9e\x17\x5f\x4f\x13\x6e\xe4\x38\xed\xda\x3f\x39\xb4\x76\xe1\x4f\x1c\xba\xfa\x96\x4c\xfa\x33\x87\x6e\xfc\x5a\x7c\x7b\x43\x7e\x7b\x5f\x42\x7f\x15\x1f\xff\xc0\x81\x6b\xa2\xdc\x35\xf1\xe9\xc6\x47\x1c\xb8\x75\xf6\x45\x01\xbd\x4e\x3a\x76\xfc\x1b\xb4\x3f\x64\x39\x9f\xa6\xfd\xf9\x80\x43\x97\x7f\x25\x80\x5f\x0b\xe0\x37\x1c\xb8\xfa\x0e\x07\xd6\x2e\x9c\x17\x49\x7f\x92\x49\x17\x45\xd2\x9f\x45\xb9\xd7\x39\x70\x5d\x54\x70\xfd\x35\x01\xfc\x5c\x00\xa2\xb5\xb5\x4b\x7f\x10\xe5\xff\x2a\x80\xf7\x45\xa6\xd3\x1c\xb8\xf1\x33\x01\xfc\x82\x03\xd7\xfe\x26\xcb\xcb\x9e\x5c\x92\xdd\xbc\xf4\x57\x09\xfd\x59\x42\xef\x4b\xe8\x2d\xd9\xf7\xbf\x8b\x26\xff\x2e\x93\xfe\x25\xa1\x7f\x72\xe8\xe6\xf3\x1c\x58\x3f\x4d\xa8\xe7\x57\xe9\xb4\xfd\x8b\x43\x6b\x17\xfe\x23\xa1\x8f\x38\x74\xed\xef\x1c\xb8\x75\xe6\x2c\x87\x6e\xbe\x20\x93\x08\x8a\x7d\x95\x0a\x06\xa7\x09\x8a\x3f\x43\xab\xfb\x37\x87\xd6\x2e\x7e\x47\x42\xdf\xe3\xd0\xd5\x7f\xca\xa4\x17\x25\xf4\xbc\x84\x5e\xe2\xd0\xfa\xb9\xbf\x0b\xe8\x34\x61\x5a\xbe\x46\x2b\x3e\xcf\xa1\xb5\x8b\x3f\x94\xd0\x8f\x38\xb4\x7e\x9a\x90\x9a\xaf\xd3\x7c\x17\x38\xb4\x76\xe9\xef\x1c\xba\x7c\x86\x03\x57\xff\x25\xbf\x9d\xe7\xd0\x0d\x91\x69\xed\xa2\xa8\xe2\xea\x79\x99\x2b\xc9\xff\x4f\x0e\x5d\xfb\x07\x07\x6e\xfe\x44\x7e\xfb\x88\x43\xeb\xa7\x09\x3f\xf4\x0d\xda\x8b\x8b\x1c\xba\x7a\x81\x03\x6b\x17\x7f\x2a\x92\x2e\x09\xe0\x43\xf9\xed\x55\x09\xfd\x8c\x43\xd7\x3e\xe0\xc0\x8d\xb7\x38\xb0\x7e\xee\x63\x09\xbd\xc7\xa1\x5b\x67\xde\x10\x69\xa7\x49\xfd\x2e\x69\xfc\xc3\xef\x72\x68\xed\xe2\xaf\x39\x74\xf9\x77\x02\xf8\xbd\x00\xde\x90\x99\xfe\x28\xa1\xb7\x25\xf4\x9e\x84\xde\x15\x05\xde\xe4\xc0\x15\x51\xfd\x95\xe7\x64\xa6\x73\x12\xfa\x9b\x84\x3e\x90\xd0\x3f\x38\x74\x43\xb4\x74\x5d\xf6\xe2\x2d\x91\xf2\x5b\x99\x5b\xb4\x73\x59\xf4\xe6\xfa\x25\x01\xfc\x44\x54\x24\xba\x70\x23\xe9\xc2\xef\x25\xf4\x17\x09\xfd\x5b\x40\xe7\x65\x9f\x5f\xe0\xc0\xfa\x39\x51\xfd\x4d\x31\x71\xb7\x5e\xa7\x1d\xa5\x6d\x93\xbd\xec\x22\xd2\xe6\x87\x12\x7a\x53\x40\xb7\x5e\xa7\x63\x0b\x29\x48\xdb\xe8\x53\x90\xac\xb5\xbb\x4c\xc1\x4b\x09\x48\x2b\x58\xa1\x4b\x44\xce\xf3\x45\xba\x44\xdf\xe3\xd0\xda\xf9\xe7\x24\xf4\x82\x84\xbe\xcf\xa1\x6b\xdf\x11\x80\xc8\x75\xf3\x34\x07\xd6\x4f\x13\x9c\x69\xd2\xca\x9e\xe3\xd0\x95\xef\x0b\xe0\x07\x02\x78\x59\x00\x3f\xe6\xc0\xe5\x3f\x72\x60\xed\xbc\xc8\x74\xed\x25\x0e\xdc\xf8\x0f\x07\x6e\xbd\xfe\x31\x87\xd6\x5f\x7c\x5e\x40\xa7\x49\xd3\x2d\xda\xe0\xf3\x1c\x5a\x3b\xff\x32\x87\xae\xfc\x8f\x4c\xfa\xb1\x84\x5e\x91\xd0\x69\x09\x89\x7c\x57\xc4\xc7\x6b\x3f\xe2\xc0\xcd\x5f\x08\xe0\x35\x0e\xdc\x3a\x73\x91\x43\xd7\xc9\xca\xb4\xa8\xd4\xfc\xa2\x80\xd6\x4f\x93\xbd\x82\x68\x87\x5e\xe0\xd0\xe5\x77\x04\xf0\xae\x00\xfe\xc4\x81\xb5\x4b\xdf\x15\xd0\xc5\x8f\x65\xda\x0b\x12\x7a\x4e\x7e\xfd\x90\x43\x57\x4e\x8b\xa4\xf3\x3f\x97\xd0\x6b\xe2\xa3\x48\xba\x22\x52\x2e\xbf\x27\x6b\xb8\x24\xbe\xfd\x86\x03\x37\x44\x3b\x37\xbe\x2f\x33\x5d\x90\x4d\x8b\xb4\x1b\xef\xca\x66\xce\x88\x1a\x7e\x25\x93\x12\x48\xd4\x7a\x53\x14\xbc\x29\x52\xae\x8b\x72\xeb\xa7\x49\xff\xda\x74\x72\x5e\xe4\xd0\xda\xf9\xdf\x72\xe8\xda\xab\x1c\xb8\x75\xe6\x3f\x1c\x5a\x3f\x4d\xa6\x7f\x89\x16\xf8\x3e\x87\xae\x7f\xc0\x81\x2b\x67\x38\xb0\x76\xfe\xf7\x22\xe9\xb7\x02\x10\x29\xd7\xff\x28\x52\xde\x14\x29\x6f\x73\xe0\xe6\xef\x38\x70\xeb\xac\xc8\xbd\xf6\xc1\x05\x91\x76\xe6\x63\x0e\xad\x9f\x26\x73\xd9\xa1\x7d\x78\x89\x43\x57\xde\xe6\xc0\xda\xf9\x37\x25\xf4\x47\x0e\xdd\xf8\xad\x4c\x4a\xb2\xbd\x2b\xa1\xf7\x04\x74\xf1\x17\xa2\x36\x51\x72\xfd\xdc\x3b\x12\xfa\x17\x87\x6e\x8a\x3a\xae\x91\xb9\xeb\x2c\xd3\x1e\x11\x06\xc9\xa3\x3d\xfa\x01\x87\x2e\xff\x59\x00\x7f\x11\xc0\x5f\x39\x70\xe5\x5d\x01\xbc\x27\x00\x99\xe7\x6f\x1c\x58\x3b\x2f\xa1\x4b\xa2\xca\xeb\x3f\xe5\xc0\x0d\x91\x72\xe3\x65\x99\x49\x40\x57\x92\x1a\x44\xa5\x37\xdf\x11\xdf\xce\x71\x60\xfd\x34\x41\x93\x6f\xd1\x0e\xff\x90\x43\x57\x3e\xe0\xc0\xf5\xf7\x39\x70\xf3\x07\x1c\x58\x3f\x4d\x4e\x88\x13\x34\xfb\xcb\x1c\x5a\x3b\x7f\x8e\x43\xd7\xdf\x95\x49\xff\xe0\xd0\x95\x7f\xcb\xa4\x0f\x38\x74\xed\x57\x1c\x58\x3f\xf7\x27\x0e\xdd\x3a\xf3\x5d\x09\x3d\x27\xa1\x17\x04\x74\xf6\x4d\x51\xe2\x34\x41\x5c\x9f\x36\xff\x23\x0e\x5d\xfd\x0e\x07\xae\x5c\x14\xc0\x47\x1c\x58\x3b\xff\x6f\x09\x5d\x10\x1f\xff\x23\x93\x3e\x94\xd0\x25\x51\xd7\xc7\x02\xf8\x1e\x07\xae\xfd\x9a\x03\x37\xdf\xe3\xc0\xfa\xb9\xdf\x73\xe8\xd6\x99\x1f\x08\xe8\xec\x77\x65\xda\xf7\x39\x74\x9d\x7e\x64\x93\x46\xf8\xc2\x2e\xed\xf5\x8f\x39\xb4\x76\xfe\x63\x01\x5d\xf8\xae\x84\x9e\xe3\xd0\xcd\x73\x02\xf8\x1b\x07\xd6\x4f\x93\x2d\x15\xd0\x3a\x7e\xc2\xa1\xeb\x17\x38\x70\xf5\x79\x0e\x5c\x3e\xc7\x81\xb5\x0b\x2f\x88\x6f\x2f\xc9\xa4\xef\x8b\xa4\x17\x65\xd2\xcb\x12\xfa\x01\x87\xae\x9d\xe5\xc0\xcd\xbf\x8b\xec\xe2\xd3\xad\xb3\xaf\x48\xe8\x6d\xd1\x07\xb2\x0c\x01\x1b\x25\x29\x19\xd2\x1e\xfe\x0f\x87\x2e\xff\x5d\x00\xff\x10\xc0\x3f\x39\xb0\x76\xe9\xb4\x84\x5e\x91\xd0\x6b\x12\xfa\xb9\x28\xf0\x81\x48\xba\xf0\x63\x0e\xdd\xf8\x8b\x4c\x12\x0d\x5d\xfd\xb1\x4c\x92\x95\x5d\x10\x0d\x5c\x15\xb9\x6e\xfc\x4d\x00\xe7\x44\xed\xff\x12\x29\xef\xc9\x96\x65\x9d\xa2\xa6\xeb\xaf\x8a\x4c\xb2\x07\x22\xcf\xb5\xdf\xcb\x62\x67\x24\xf4\x1b\x09\x25\x5f\x7f\x2b\xa1\x37\x25\x24\xfb\x7c\xe9\x57\xa2\x25\xd1\x8b\xeb\x62\x88\x97\xcf\x8b\x94\x8f\x39\x70\xf3\x67\x1c\xb8\x75\xe6\x65\x09\x89\xaa\x6e\x8a\xd9\xba\x46\x9b\xa1\x94\x81\x42\x94\xe1\x38\x43\xbb\x1d\xd2\xc5\x22\x1d\xea\xd1\xc5\xfa\x29\x87\xd6\x2e\xfc\x5c\x42\xaf\x71\xe8\xda\xdb\x22\xe9\x83\x0f\x39\x74\xeb\xcc\x2b\x12\x3a\x2d\x21\x51\x74\xfd\x34\x21\xdd\xdf\xa6\x15\xbf\xc2\xa1\x9b\x2f\x73\xe0\xd6\x99\xd7\x24\xf4\x2b\x0e\xad\x9f\x26\x93\x14\xd1\x02\xaf\x72\xe8\xea\xcf\x39\xb0\x76\xe1\x57\x22\x49\x00\x37\x5e\x11\xc0\x69\x99\xe9\x37\x12\x3a\x23\xb2\xbf\x26\x93\x7e\xcb\xa1\x9b\x3f\x16\xc0\x87\x1c\xb8\x75\x46\x14\xbc\x75\xf6\x8f\x12\x7a\x8e\x43\xeb\xa7\x09\xc7\x1b\xd3\x8e\x9d\xe6\xd0\xe5\xdf\x72\xe0\xea\x6f\x38\xb0\x76\xe1\x6d\x91\x74\x46\x26\xfd\x5e\x24\xfd\x5e\x26\xfd\x51\x42\x6f\x4a\xe8\x5d\x0e\xdd\xf8\x95\xc8\x2f\xaa\xbf\xf1\x31\x07\x6e\x9d\x7d\x57\x42\x2f\x88\x82\x17\x45\xe3\xeb\xa7\x49\x65\x98\x76\xf1\x67\x1c\x5a\xbb\xf0\x9e\x80\x2e\xbe\xc6\xa1\xab\x6f\xcb\x8f\x7f\xe1\xd0\x8d\xdf\x88\x6f\x6f\xca\x6f\xe7\x24\xf4\x37\xf1\xf1\x8f\x1c\xb8\x26\xca\xfd\xdf\x97\x38\xb0\x7e\xee\x0f\x1c\xba\x75\xf6\xfb\x02\x7a\x9d\xf4\x16\x33\x66\x8b\x70\xea\x7d\xda\xb5\x9f\x73\xe8\xf2\x05\x01\x5c\x14\xc0\x25\x0e\x5c\x7d\x97\x03\x6b\x17\x44\xa6\xab\xef\xc9\x24\x99\xeb\x2f\xa2\xdc\x7f\x38\x70\xfd\x75\x01\xfc\x52\x00\xbf\x10\xc0\xaf\x45\xf9\x4b\x7f\x14\xe5\xff\x26\x80\x73\x22\xd3\xcf\x38\x70\x43\x74\xf2\xc6\x6b\x1c\xb8\xf6\xbe\x2c\x2f\x7b\x72\x49\x76\xf3\xd2\xdf\x24\xf4\x17\x09\x9d\x93\xd0\xdb\xb2\xef\xff\x10\x4d\xfe\x43\x26\xfd\x5b\x42\x1f\x70\xe8\xff\xfe\x80\x03\xeb\xa7\x49\xc9\x65\x3a\x6d\xbf\xe0\xd0\xda\x85\x0f\x25\xf4\x31\x87\xfe\xef\xcb\x1c\xb8\x75\xe6\xb7\x22\xe9\x47\x32\x89\xa0\xdd\x32\x93\x20\xc8\x22\x9d\xa4\xd5\xbd\xc6\xa1\xb5\x8b\xdf\x95\xd0\x73\x1c\xba\xfa\x81\x4c\xfa\xbe\x84\x5e\x90\xd0\x2f\x25\xf4\x03\x0e\xad\x9f\xfb\x87\x80\x4e\x93\xd9\x3d\x45\x9b\xf8\x25\x87\xd6\x2e\xbe\x2c\xa1\x1f\x73\x68\xfd\x34\xe1\x3d\x56\x68\xbe\x5f\x71\x68\xed\xd2\x3f\x38\x74\xf9\x43\x0e\x5c\xfd\xb7\xfc\x76\x81\x43\x37\x44\xa6\xb5\x8b\xff\x23\xb2\x7f\x2c\x73\xc9\xfc\x17\x93\x5a\x3f\xe0\xd0\xb5\x7f\x72\xe0\xe6\xff\xc8\x6f\xa2\xe4\xfa\x69\xb2\x96\xcf\xd2\xfe\xfc\x9a\x43\x57\x2f\x72\x60\xed\xe2\x2b\x22\xe9\x3f\x02\xf8\x48\x7e\x3b\x2d\xa1\x9f\x73\xe8\xda\xbf\x38\x70\xe3\x6d\x0e\xdc\xfc\x0e\x07\xd6\xcf\xfd\x99\x43\xb7\xce\xbc\xc9\xa1\x4f\xc8\x01\xfc\xc9\x2b\x04\x22\xdb\xe9\x93\x9f\x13\x88\x4c\xed\x27\xaf\x11\x88\xf0\x61\x9f\xfc\x8a\x40\x7f\x92\x10\x59\xdc\x4f\x7e\x4b\x20\x72\xfa\x7f\xf2\x36\x81\xde\x93\x10\x19\xde\x27\xef\x12\x88\x34\xf6\xc9\x39\x02\x11\xb4\xfc\xe4\x03\x02\x11\x6e\xf3\x93\x7f\x13\x88\x20\xed\x27\x17\x2c\x68\xfd\xef\x0f\x05\xf4\xc9\x4f\x65\x1a\x6d\xe3\x63\x02\x91\x45\xfb\xdf\x17\x08\xf4\xb2\x80\x3e\x79\x5f\xa6\x91\x9e\xfe\xef\x0f\x08\x44\xb8\xa4\xff\x7d\xce\x1a\x4e\x99\x9e\xe4\xb7\xac\x32\x8b\xd6\x68\x23\x50\x8e\x10\x35\x72\xb6\x77\xd4\xff\xfb\x9b\xfd\x4a\xa5\x52\x29\x91\x3f\x0f\xee\x6f\xec\x58\x82\x06\xab\xda\xb8\x8e\x1a\x83\x01\x32\x19\x65\x46\x28\x0e\xfd\x65\x14\xed\x68\x23\x17\xf7\x23\x14\x5b\xb0\xde\x50\x0d\x4c\xf3\x4b\x08\x6f\xd9\xcc\x03\xd2\x32\x87\x00\xe2\x1d\xd4\x7c\xda\x6b\x8e\x7e\x3c\x7a\xc3\xe6\x55\xb9\x05\xa4\x8f\xc6\x6a\xf2\xee\x78\x6d\xba\x02\xcd\xe6\xc4\x58\x58\x58\x0c\x87\x20\x7f\xb8\x02\xf8\xe2\x8d\x58\x0e\x66\x47\x33\x0c\xb0\xeb\x05\x28\x2a\xb5\xd0\x62\x7f\xa9\xe4\xb6\xdc\x1e\xde\xe8\x94\xec\x10\x61\xc5\x27\x7e\x47\x3c\xb1\xfb\xc4\x65\x6a\x98\x6d\x07\xe8\x64\xe1\x28\x5a\xda\x7f\xaa\x67\x5b\xff\xbd\x63\xde\x9a\x89\x66\xac\x1d\x76\x79\x06\xec\xb0\x66\xd0\x8c\xf5\x25\x6e\x43\x19\xf4\x7d\x7f\xda\x71\x12\xbb\xdd\x7a\xb5\x71\x3b\x56\x7c\xc2\x58\x9b\xd9\x39\xed\x15\xb3\xb0\x8f\x4c\xc2\x1e\x36\x07\x65\x74\x0a\xa3\xa0\x65\xaf\x2e\x30\xb3\xfe\xa3\x34\x5c\x77\xb4\x52\xa3\xae\x1b\x5e\xe0\x69\xeb\x40\x0d\xb6\x17\xe2\x7e\x0f\x45\x65\xb7\xd7\xf3\x57\x6c\x92\x02\xa5\x21\x18\x80\x2c\x87\x5e\xd7\x60\x60\x9b\x92\x1d\x32\x1b\xb8\x7c\x48\x4b\x04\x43\xd8\x74\x83\xbd\x2e\x76\xfd\x70\x69\x7f\x80\x23\x0f\xc5\x8f\xad\x1c\x5f\xe9\xa1\x5a\x96\x42\x58\xdd\xb0\x85\x7c\xcb\x71\x1c\x34\x18\x8c\xed\x1b\xa9\x79\x4c\xb5\xc2\x30\x0d\x3b\xa6\x0e\x97\x13\xcf\x87\xd8\x06\x30\x48\xac\xdd\xa0\xc7\x0a\x04\xe4\x53\xcf\x6d\x22\x9e\xf5\x48\x84\xda\xde\x29\x18\x3a\x15\xe8\x3a\x58\x3e\x79\xbc\xdb\x4d\x6c\x95\x63\x07\x73\x93\xe4\x52\x75\xda\x71\x62\x69\x55\x85\x80\xb0\xdc\x25\xc8\x14\xc3\x54\x03\xbd\xb0\x75\x48\x69\x63\x30\xf0\xc0\x54\x7f\x30\xb0\xfb\x4e\x5c\x8e\x7b\xbe\x87\x6d\x34\x63\xc5\x3b\x2c\x50\xee\x85\x3d\x1b\x00\x18\x94\xdd\x56\x8b\xbf\xb0\xdd\x07\xf2\x2d\xe9\x60\x83\x7b\x69\x3c\xf9\xe4\xae\x09\x24\x7f\xa9\xed\x36\x71\x18\xad\xe4\x65\xea\xba\x27\x50\xa9\xe5\xd1\xf9\x77\xa3\x95\xd4\xe6\x22\xfb\x67\xb3\xfe\x0a\x3a\x76\x71\xff\x3b\x98\x78\x5b\xb0\x30\xe9\xdf\x8a\xcb\x88\x21\x45\xb1\x68\x67\xd2\x94\x5c\x0b\xc8\x3d\xb1\x10\x23\x14\x00\xfe\x1c\x74\xa6\x05\x65\xb7\x28\x26\x96\x18\xac\xda\x86\x37\xd0\x93\x57\xb7\xc3\x76\x01\x03\x60\x7c\xc4\x7b\xaf\x1b\x04\x21\x2e\x34\x5d\xdf\x2f\xb8\x05\x3a\xaf\x05\x37\x2e\xb8\xd2\xae\xd5\x02\x43\xc0\x90\x1d\x89\x0d\x28\x7a\x8e\x07\x83\xcc\x70\x86\xd2\xda\x39\x79\x46\x5d\xc1\xec\xac\x2d\x2d\x7f\x97\xbd\x7c\x02\xad\xc4\xb6\x56\x3f\xb5\xf3\x4b\x6a\xe9\xb8\xb1\xc9\x3b\x86\x8c\xb2\xa0\x95\xd3\x8b\x2d\x21\xa3\x53\x0d\xef\xb8\x8d\x48\x2b\x43\x6e\x52\x2a\x1e\xc7\xe7\x5d\x12\xd4\x8b\xe3\xd5\x61\xdc\x41\x51\x2d\x6d\x75\xc9\x1d\x4d\xda\x5e\xc0\xb7\x0c\x19\xa7\x8d\x28\xa9\x4d\x48\x34\xeb\xdf\x29\x1c\xb9\x4d\xbc\x8f\x11\xce\xfd\x14\xc5\xed\x08\xb2\xbc\x12\x6b\x02\x65\xa1\xf8\x22\x15\xf6\x9f\xea\x51\xd3\xcd\x02\x0e\x0b\xa4\xa5\x5a\xe1\x3e\x6b\x06\x95\xdb\x7d\xdf\x27\xcd\xcd\x58\xf7\x15\x4e\x7a\xb8\xe3\x05\x24\x3d\x22\x3f\x17\xfb\xb8\xb0\x14\xe2\xc2\x7d\xd2\x77\xe9\xbe\x72\x61\x9f\xd7\x2a\xac\x84\xfd\x42\x3b\x8c\x96\x10\x7d\xb0\xfd\x3e\xb6\xd1\x0a\x9c\x98\xa7\xab\x99\xb7\xa4\xed\x27\x1d\x42\xdc\x09\xfb\x7e\xeb\x99\xc8\xed\x1d\x64\x31\xb1\x0f\xb0\x2d\x68\x07\x90\xbe\x5e\x1f\x38\x76\x05\xca\x83\x14\xd8\x01\x21\x0d\xc3\x21\xec\xb9\x51\xcc\x9c\xba\x52\x2f\xfb\x4f\x93\x11\xa3\x32\xfd\xde\x22\x19\xe4\xd3\xfe\xdc\x8d\x95\xef\xa9\x48\x00\x81\x00\xa8\x45\x2b\x25\x45\xd6\xa3\xcc\x12\x7a\xd6\x71\x1c\xf1\xf2\xbb\x70\x30\xf1\xea\x95\x86\xc8\x56\x4b\xb2\x85\x22\x1b\xb5\x7d\xad\x57\x1b\xfc\xf7\xbc\x1d\x39\x61\xbd\xd2\x80\x81\x63\x3d\x6a\xcd\x78\xf5\x6a\x03\xd4\x6c\x4c\xb3\x40\xf9\x89\x26\x4f\x51\x07\x04\xee\x10\x42\x6a\x50\x5a\xc1\xb4\x5d\x18\x39\x2e\x2b\xe0\x92\x23\xd6\x12\xbe\x6b\xe4\x48\x89\x8a\x45\xd2\x34\x2e\xfb\x6e\xcc\x0c\xdb\x0f\xb7\x6d\x4b\xf1\x69\xb3\x60\x85\x4d\xa8\x96\x38\x13\x40\xec\xe0\x72\xec\x7b\x4d\x64\x57\xab\xc2\x7a\x38\x72\x6c\x65\x3a\x6a\x16\x00\x49\x47\xb9\x11\x6b\x00\x55\x7b\x69\xba\x9f\x2d\x49\xef\xe5\x2a\xaf\x26\x0b\x41\x18\x25\x81\x5f\x35\x04\x7b\xf4\x20\xa8\x61\x7e\x14\xb2\x9f\xf6\x2a\xd9\x62\xb5\x68\x08\x20\x03\x64\x89\x67\x3c\xdc\x09\xfb\xd4\x3c\xb7\x16\x43\xd2\x50\x2d\x80\x51\x18\xe2\x5a\x1f\xf2\xed\x74\x08\xe1\x4e\xc8\x9a\xb2\x78\x92\x35\xc3\xba\x78\x0c\x47\x5e\xb0\x54\x66\xa7\x42\x7b\xc5\x8e\x00\xc1\x21\xbf\x1f\xd1\x20\x86\x2d\x52\x6b\xcc\x78\x08\x13\x5f\x41\xe8\xfe\xf1\x90\xd5\x61\x76\xc8\x1a\x71\x9c\xce\x90\x75\xc7\x33\x56\xcd\x1a\xc2\x3c\x6c\xcf\x32\x8f\xd3\xd5\xe1\x28\x76\xc6\xe6\x94\x93\x35\xf4\x98\x1b\xa3\xd6\x51\x7e\x56\x39\xd3\x95\x0d\xb3\x35\x81\x20\xc4\x41\x18\x75\xe9\x94\xec\x75\x9b\x1d\x44\xf6\x5e\x94\xec\x3d\x9e\x29\x35\x6d\x8e\x29\x71\x30\x98\xa4\x28\x91\xb5\xda\xde\x92\xe8\x99\xf9\x2b\xc1\x57\xf2\xd7\x12\x7d\x6c\xa1\x5e\x84\x9a\x2e\x46\xad\x23\x3a\x53\xe1\x90\x49\x93\x23\x30\x30\x60\x05\xd3\x20\xa9\xd4\x66\xe7\x7c\x71\x52\xe9\x84\xcd\x19\x0a\x7c\xcb\x50\x6e\xce\x87\x49\xda\x44\x5d\xc9\x1c\x5c\xce\xe0\xa7\x24\x3a\x7c\x97\x58\xf2\x6c\x74\x1c\x82\xf7\xe4\x78\xed\x78\x71\x3d\x6a\xd0\x1d\xcb\x61\x1b\x13\xe2\xd7\xf7\x7d\xc7\x09\x64\x7a\x59\x3d\x4b\x58\x8e\x21\x5c\x30\xcf\x82\xb0\xe9\x57\x08\x8b\x14\x55\xb8\xfb\x44\x75\xde\xea\x20\xbf\x87\x22\x42\x53\x70\xbd\xd2\x98\x27\xff\x10\xec\x9d\xc1\x84\x26\x49\x99\x78\x61\xc7\x12\xb4\x4a\x16\xa8\xc9\xef\xda\x4e\x6b\xb9\x71\x07\x45\x64\xc6\xf4\x62\xdf\x2c\x93\x72\x3b\x2c\x00\x6a\x48\xd9\x81\xb9\x8b\x95\xc2\x09\x65\xb1\xb2\x5f\x1c\xc2\x42\x5a\x60\x08\x7b\x61\x8b\x6e\x89\x27\xc3\xf0\x44\xbf\x47\x28\x07\x43\x90\xd4\xde\xe5\x87\x6d\xd9\x40\x62\xc4\xba\xa8\x14\x16\x97\xc9\xd2\x10\x8e\xcb\x89\x92\x01\xfd\x77\x42\x4d\xbf\xb9\x63\x07\xb4\x2c\x00\x20\x9a\xb1\x76\x30\x61\xc9\x9a\x61\xa5\x92\x3e\x25\x47\x7a\x1e\xfa\x8c\x60\x9a\x47\x90\x19\xed\x54\xcd\x9b\x00\x1b\x43\xa4\xcc\x8f\x0c\xa2\x10\x1f\x0c\x8e\xf5\x17\x5b\x5e\x96\x19\xd9\x5c\x9f\xbc\xb6\x8d\x67\x1c\x4b\x71\xad\xb6\x54\x9f\x72\x7a\x52\x93\xe9\x19\x0c\xd4\x79\xdc\x51\xc6\x28\xc6\x36\x32\x2d\x8c\xf4\x24\x99\x64\x9c\x7c\x6b\xec\x0f\x96\xbc\xc0\xbc\x13\x0c\x2d\xcc\x58\x3b\x10\x2d\x60\xd1\xee\x9b\x04\xab\x8e\x1b\x93\x9d\xa6\x11\x15\x23\x2b\x86\x93\x4e\x1c\x0d\xfb\x18\x1d\x72\x7b\x93\x76\x83\x10\x8e\x19\x6b\x47\x44\x8a\xc5\xa3\xbb\x12\x81\x49\xb8\x42\xb9\xd7\x09\xfb\xc4\x3b\x75\x9c\xa3\x77\xde\xb2\x6b\xb4\x05\x25\x35\x50\x1a\x84\x8b\x45\x5b\x08\xeb\xc7\xf7\x1f\x3a\xf2\xe4\x9e\xe3\xfb\x8f\xd5\x8d\x83\x69\x00\x88\x87\xb0\xeb\x7a\x41\x0e\xfa\x7b\x6d\xdb\x22\x9f\x19\x4a\x98\xd6\x5d\x91\x02\xd8\xa9\xba\x83\xf0\xab\x6c\x6f\x09\x87\x20\x73\xdd\xa6\x92\x3a\x05\xb1\x59\x45\x80\x57\x6a\x68\x7e\x28\xd8\x95\xb1\xfb\x23\x77\x4f\xca\x2c\x75\xd6\xda\x8c\xc5\x32\x59\x0d\x3a\x8f\x63\xf2\xb0\x09\x94\x03\x64\x08\x7f\xc4\xc5\x18\x45\x41\x5c\x4b\x79\xb2\x67\xb8\x89\xba\xb6\x5b\x92\x79\x82\x5a\x7a\x96\x1c\x70\x26\x43\x5b\x37\x96\x96\x99\xf2\xc6\x10\x94\x23\xe4\xb6\x0e\x07\xfe\x8a\x0d\xa0\x2e\xbd\xa4\x08\xaf\xd0\x5b\x24\x2e\xf5\xb6\x95\x37\x36\xea\x53\x2f\x39\xf4\x0a\x0c\x9d\x48\x28\x26\xbc\xdd\x61\xe2\xfa\xed\x3a\x51\xdd\x6b\x94\x89\xd8\x29\x84\x4b\xb2\x69\xdc\x62\xd1\x76\x59\x33\xec\x8d\x6d\x45\xa4\x72\x21\x02\x00\xba\xc5\x62\xee\xce\x72\x19\xc7\xec\x02\x28\xd8\xd4\x05\x3f\x5c\x62\x1d\x24\x12\x0a\x74\x01\x4c\xd4\x5e\xc3\x21\x4c\xb7\x61\x3c\x71\xb4\x83\x92\x48\x53\x51\xdc\x0c\x23\x21\xe2\xa1\x69\xca\xcc\xe7\xf6\x89\x88\x45\xa3\x48\x81\x51\x28\xdf\xd3\x5d\xf4\x96\xfa\x61\x3f\x2e\xb0\x42\x05\x8a\x69\x4c\xe8\x23\xc2\x9d\x1b\xb4\x84\x84\xc6\x64\x9a\x11\xcd\x27\x02\xd5\x18\xa2\x24\x04\x63\xa9\x7b\x48\xb8\x80\x1d\x25\xbb\xfe\xdf\xdf\xdc\xd1\xf8\x3f\xe0\x4b\x3b\xa0\xb5\x63\xe1\x4b\xd5\x94\x5c\x68\xaa\x32\x00\xf3\xd2\x77\x1a\xfa\x74\x11\xd8\x83\x8c\xcc\xab\x7a\x02\x6e\x4c\x6b\x22\x25\x60\x63\x38\x5d\x01\x43\x98\x2c\x70\x2d\xad\xdc\xf1\xda\xdc\x41\x73\xff\x53\x5f\x2d\x3f\x79\xf8\xf1\x85\x43\x87\xf7\x3d\xfd\xe4\xfe\x85\xa3\xfb\x8f\x1d\x7e\xf2\xab\xfb\x8f\x0e\x06\xb8\x4c\x24\x12\xfa\x4d\x24\x0a\xd2\x9c\x08\x99\xf3\x56\x7d\xfd\xf5\xd3\x0d\xab\x66\xd5\x0b\x0d\x6b\x2a\x50\x38\x10\xc1\x85\x3d\x50\x99\xb7\xca\x56\x8d\x2c\xe2\x9e\x28\x72\x57\xec\x07\x2a\xa5\x4c\x2e\x50\xfe\x56\xe8\x05\xb6\x55\xb6\x00\x8c\x06\x03\x9b\xef\xa6\xcc\xc4\x50\xa6\xb0\x19\x06\x71\xe8\xa3\x62\x91\x03\x65\x2f\x68\x87\xfa\x2f\xdb\x83\x49\x1b\x30\x80\x54\x46\x3a\x11\x84\x27\x83\x03\x61\xb4\x59\xdd\x63\x5a\x1c\x60\x5b\x19\xe7\x6c\x65\x5c\xf7\x1a\x90\x4b\x16\x38\x72\x83\x98\x1c\x52\xc7\x43\xa9\x12\x3e\xd0\xf7\xfd\x80\x2e\x29\x74\xc1\x54\x4c\x36\x69\x3d\x6e\x38\x64\x01\xe5\x66\x84\xa3\x0a\x9a\x39\xc1\x8c\x1c\x8a\x86\x34\xa2\x07\x39\x17\xa0\xe7\xd0\xd3\x81\xf6\x5a\x28\x3d\x03\x40\x15\xa5\xe2\xa7\x47\xb7\x0e\xd5\x00\x14\x8b\x2e\x93\xc6\xe9\xf8\x4a\x42\x8b\x50\x2c\x4a\x4e\x3b\xe0\xc0\x8c\xd4\x30\x88\x7d\xc5\xb8\x6d\x2e\x93\x87\x33\x22\x23\x19\x2a\x13\xbd\x23\xe3\x19\x46\x8f\x2f\x81\xe1\x4c\x17\x20\x3a\x16\x03\xa5\x61\xe1\x2a\x3d\xaf\x37\x24\x92\x81\xdc\x62\x46\x46\xc2\xb0\xcd\xa4\xe6\x8b\x05\x50\xa2\xff\x4c\x57\x92\xcd\x46\xda\xe6\x4b\xcf\x8e\x3a\x89\x08\x10\x0f\x87\x60\xca\x2b\x47\x28\xec\x21\x26\x11\xdb\xff\x3f\x7b\x6f\xbf\xdd\xb6\xad\x3c\x8a\xfe\xef\xa7\x88\xf9\x6b\xb4\x00\x11\xa2\x49\x7d\x9b\x36\xac\x9b\x26\x69\x93\xbd\xe3\x24\x8d\x9d\xb4\xa9\xa2\xed\x43\x4b\x90\x84\x86\x22\x55\x10\xf4\x47\x2d\x9d\xb7\xba\x2f\x70\x9f\xec\x2e\x00\xfc\x00\x29\x4a\xb6\xdb\x74\xff\xce\xef\xac\xbd\xb2\x62\x91\x00\x38\x18\x0c\x06\x83\x01\x30\x98\xb9\xab\x58\xd3\x96\x4f\x08\xe8\xf6\x2d\xe0\xca\xed\xdc\x7f\xbf\x8f\x9d\xbb\x31\x23\x05\xc5\x2a\xdb\x2b\xa8\x58\xeb\x91\x64\x63\x70\x90\x3e\x00\x2e\x96\x47\xeb\x1d\x07\x89\xd5\x1b\xd2\xff\xbe\x86\xaa\xbe\x27\x38\x81\xa5\x5a\x2b\x4f\x82\x60\xee\x9e\xe2\x42\xa0\x86\x25\x3f\x4c\x88\x4f\x38\x49\xd3\x10\xa9\x6c\xda\x32\x0c\x22\x7a\x45\x0e\xd4\x0a\x34\x3a\x58\x90\x09\xf5\xfe\xa6\x46\x25\xbb\x81\x9b\xbb\xc7\x1b\xfb\xde\x52\x02\x5b\x34\x52\x92\xb8\x34\xff\x9d\x49\x27\x77\x16\xe5\x84\x79\x3c\x64\x4f\x68\xba\xfd\xac\x15\xac\x92\x35\xc3\x11\x0a\xf0\xbe\x98\x0f\xf6\x1d\x14\xa6\xbb\x01\x9c\xdd\xe6\xbe\x38\x50\x84\xc9\xb0\x04\x7f\x04\xe0\xd1\x3e\x08\x30\xf0\x70\x64\x05\xe4\x86\x03\x08\xad\x49\x18\x10\xe5\xf0\x43\xde\xf3\xf7\x2c\xd9\x4a\x88\xf6\xf9\x6a\x95\x2a\x4b\xfb\x18\x73\x78\x24\xaa\x84\x47\xeb\xb1\x3c\xdd\x8b\xe1\x1d\x15\x28\x84\x38\x5e\x4f\x69\xe0\xf9\xfe\xed\x9d\x40\x60\x3f\xa8\xd5\x84\xea\x2f\x70\xcf\x9f\x00\xcc\x0a\x51\x21\xe9\x94\x9a\x11\x66\x07\x33\x6c\x2d\x9b\xb7\x57\xa9\x7e\x24\x41\x92\x9f\x08\x9d\x6e\xb1\x94\xfb\xc4\x13\x12\x71\x16\x8f\x79\xcc\xc8\x93\x20\x0c\x1a\xb2\x85\x97\x7e\x7e\xc4\x60\xc0\xf5\x1a\xe8\xde\xb6\x12\xff\x83\x92\x37\xb2\x9d\xf4\xf2\x1e\x99\xe2\x4a\x21\x1a\xf7\x1e\x78\xfa\xa7\xb4\x4f\xc9\x69\xd0\x0a\x83\xe4\xf9\xf9\xdc\x0b\x66\x64\x62\xe8\x87\xf4\x42\x81\x49\x74\x6c\x00\xd7\x70\x8d\x64\xc9\x44\xf9\xa6\x81\xe4\xbf\x88\xb0\x2b\x21\x4d\xc5\x8c\x2b\x4b\x56\x6d\xef\x03\x82\x1c\x38\xb4\x47\x7b\x05\x47\x54\xf9\x36\xaa\x84\x6b\x19\x26\x93\x2e\x9e\xe0\xde\xd6\x81\x92\x44\x77\xa6\x7f\x88\xd1\x92\xa7\xff\x29\x2f\x4f\xa2\x75\x2a\xf6\x71\xe2\x73\x23\x99\xf5\x81\x71\xc9\x88\xf7\x75\x19\x52\xb9\x7c\xbf\x53\xfd\xc3\xa9\x90\x6e\xfb\xce\x1a\xfe\x29\x7f\x2d\x19\xde\xd2\x65\x4b\xda\xc3\x77\x81\xe6\xa5\x2d\x6f\x4e\xa3\x80\x40\xfe\xad\xcb\x77\x4a\x11\x21\x77\x94\x87\xb1\xc6\xdf\x29\x48\xaa\xa5\x63\x32\x0b\x24\xf1\xe4\x04\xa1\x76\xe2\x9a\xb0\x4d\x85\xc8\x43\x0f\x68\xd8\x37\xb5\x7e\xd8\x53\x4c\x5a\x31\x4d\x29\x59\x54\xab\x25\x9e\x3d\xcb\x19\x99\x90\x1a\x54\x6d\xe6\x25\x33\xdd\xba\x72\x69\x5e\xab\xed\xa8\x8e\x58\x42\x4b\x95\xc2\x22\x64\x18\xe3\x2c\x7d\x3f\x7d\xce\x0f\xe7\x06\x29\x6e\x6e\x56\xe1\x86\x04\x39\x53\xb4\x4e\x45\x48\xa2\xd2\x5f\x91\x80\x93\x09\xba\xbb\x58\x84\xe3\xaf\x64\x92\x8c\x6a\x2e\xa3\xa9\xcf\x50\x92\xfa\x7d\xc6\x88\xae\x31\x21\xd1\x57\x1e\x2e\x0d\x94\xf6\xf1\x7d\x8b\xf0\x27\xe9\xf9\x7b\x2e\x76\x12\xb0\x06\x1c\x0c\x37\x12\xf3\xba\x0c\x38\x72\x87\x23\xb8\x86\xc8\x17\xe3\x33\x20\x2c\x72\xef\xd6\x49\xbd\xc9\xf3\xef\xbe\x2e\x05\xe9\x14\x18\xca\x1b\x8d\x81\x31\x06\x46\xee\x6e\x30\xa3\xee\x35\x0d\x26\xe1\xf5\x40\xcb\x72\x19\x50\x89\x10\xd6\x6a\xea\x49\xd9\x81\x9c\x0a\x26\x4b\x27\xb3\x8d\x8c\xbd\x0d\x6b\x17\xa1\xde\xff\x05\xb1\x9c\xfb\xb9\x79\x77\x1d\x10\x26\xb3\x61\xc1\x07\x6d\x31\x2b\x59\xf1\x14\xe4\x94\x2b\x37\x93\xe0\x1e\xaf\xd5\x0a\xa7\xc1\xd0\x9a\x86\xec\xa5\x37\x9e\xe7\xdd\x93\x1d\xa9\x1a\x34\xda\x7e\x5c\x94\x20\xb5\x31\x8a\x02\x54\xf6\x22\x98\xb0\x83\x35\x1c\x15\x26\x0f\x7d\xe5\xa9\xa6\x1c\x55\xce\xc8\x1d\xd3\x30\x78\xd2\x70\xd6\x10\xa2\x2d\x75\xb1\x72\x5d\xc1\xae\x0a\x02\x28\x40\x91\xc4\x94\x87\x21\x3e\x64\x23\x39\x6b\xc9\x56\xc9\x95\x59\x99\x65\xff\x04\xee\x0b\x6f\x09\xaa\x2c\x5d\x04\x67\x34\xb6\x9e\x09\x10\xb8\x4e\x57\xaf\x4f\x0c\xc1\xd8\x69\x88\xec\x53\x6d\xee\xdd\x38\xfa\x4a\xca\x94\x67\xe8\x3b\xd1\xa8\x14\x80\x1c\xc7\xfa\x97\x0a\x03\x16\x07\x56\x18\x8c\x89\xe2\x35\xc5\x82\x15\x55\xc2\x64\x54\x6d\x5d\x1e\x4a\x97\x4e\x15\xe3\xb7\xb0\x01\xab\x48\xf4\xbb\x6f\x40\xc0\xc5\x4a\xb7\xb0\x06\x50\xb9\x34\x7a\x21\xf4\x9f\xf0\x56\x7c\x2c\xd6\xee\x56\x94\xd3\x95\x45\x96\x58\x68\x8a\xe5\x91\x95\x50\x7a\xc0\xca\x84\xcf\xad\x63\x08\x74\x37\x72\x19\x59\x84\x57\x24\x2b\x80\x98\x55\x20\x10\x80\x70\xbd\x97\xe3\x9a\x89\x15\x03\x0e\xc9\x08\x53\x65\x7c\xf3\x26\x49\xad\xd5\x0a\xaf\x85\xee\xce\xa8\x0b\x94\x01\x16\x12\x3d\x8b\xa8\x60\xbe\x2a\x43\x1d\x21\x4e\x1b\xd7\x9e\x98\x28\xa2\x03\x19\xef\x3d\x79\xab\x9a\xf1\xf4\xc2\x95\x89\x07\x41\x18\x2e\xf5\x94\xbf\xc1\x20\xa7\x6a\x85\x97\xb9\x45\x14\x5a\x6e\xb6\xab\x21\x98\x7a\x77\x83\xb7\xda\x22\x15\x4a\xa9\xdf\xc6\xc2\x0b\x3c\xe9\xe3\xbb\xaa\x8c\xde\xe6\xca\x02\x45\xda\x6e\xab\xa6\x31\x0d\x59\x63\xc9\xc2\x05\x95\x81\xfa\x8a\xb4\x53\x5e\xd6\xfe\x26\x43\xca\x54\xd5\x7c\xb0\x25\x65\xfa\xc1\x7a\x17\xd4\x38\x78\x34\xdc\xfc\x93\x9d\x90\x67\x84\xff\x9c\x72\xe2\x03\x21\xe7\x9f\xec\x84\x7c\xc1\x48\x44\x1e\x6e\x51\xaa\x8a\xdf\x87\xeb\x7b\x12\x4c\x68\x30\x53\xf5\x9f\x71\x8f\x93\xc7\xa0\xbd\xf9\xf5\xce\xfa\xe6\x5e\x54\xf8\xe2\xe1\x24\xda\xf8\x72\x67\x3d\xe7\x24\x4a\x28\xfa\xc0\x0a\x98\x66\x7f\xbb\x1d\xac\x1c\x2a\x8f\x82\x1b\x3c\x08\xae\x18\x60\x3f\x84\xec\x7d\x32\xbc\x1e\x06\x9a\xee\x32\x19\xde\x2d\xfb\x1e\xbf\xe6\x2b\x1e\xc5\xd8\x47\xec\x38\xdb\x8f\x65\xe9\x5e\x6c\x80\x85\xde\xb0\x17\x58\x39\xf6\x58\x7f\x59\xad\xf6\x1d\x14\x24\xa6\x1a\xb1\xca\xdf\xb7\xd3\x48\x9d\x34\x78\x22\x2d\x15\xac\x6b\x46\x79\x92\xb7\x9d\x64\x81\x50\xd2\x90\x98\x3a\xbe\x4d\xc8\x02\xf6\x7f\x86\x75\xa3\x58\xd4\x62\xbe\x96\x18\x09\xa1\x9a\xce\x1e\x0c\x13\x04\x02\x3c\xbc\xfb\x4a\x6e\x5d\xe3\x92\xcc\x68\xf0\x2c\xba\x0d\xc6\x06\x52\x0d\xab\x56\xc0\xd6\x6b\xa4\x3e\x20\xc1\x64\x5b\xf1\xac\x8c\x60\x8d\x8f\x01\xa7\xfe\x56\x98\xfb\x76\x56\x58\x1a\x9b\xbf\x0e\xa6\xe1\xd6\xc2\xc3\xd1\x7a\x3d\x82\xb5\x1a\x07\x2c\x5f\x72\xa1\x00\x22\x2a\xd3\x10\x85\xca\xf2\x31\xef\x0d\xb6\x9b\x89\xb7\xf0\xef\x43\xe6\xc5\x07\x1b\xb6\x57\x6c\xec\x55\x6f\xeb\x69\x47\x1a\x36\x62\x38\x3f\x7c\xc9\x0e\x5c\x8e\xf8\x71\xfa\x7c\xc4\x4d\x13\xb2\x21\x1f\x61\x32\xe4\xd9\x46\x0e\x93\xee\xa3\x57\xab\x52\x55\xbb\x36\x09\x57\x2b\x63\xa8\x96\x6a\x4f\x9e\xa5\x4b\xa0\x91\x58\xb5\x25\x63\x20\xb7\x3b\xe5\x61\xba\x2c\xf1\x7c\x5f\xdb\x5e\x54\x0d\x99\xb2\x70\x21\x54\x90\x62\xfd\x42\x73\x7e\xd8\x7e\x5c\xb4\x64\xc4\x9b\x6c\xdd\x8a\x03\xb0\xe8\x12\xfb\xff\x72\xd1\x41\xb1\xbd\xa7\x79\x67\xce\xe5\xb3\x69\xae\xd5\x11\xd5\x16\xd1\x22\x74\xce\x7f\xa7\x70\xa1\xd1\x87\x44\x7f\x21\x13\xbc\xef\x24\x89\x9c\x2c\x22\xc9\xc0\xa7\xde\x52\x17\x42\xc9\x33\xb9\xe1\xe7\xe1\x57\x12\x60\xb6\x5a\x85\xb2\x3d\x14\x79\x28\xca\xbc\xd4\x0b\xc1\xe4\xa5\x82\x29\x57\xa9\x36\xa4\xc2\x06\x06\xab\x15\x90\xe6\xba\xe9\x37\x0a\xd9\x4a\x54\x6d\x98\x09\x9e\x9d\xa2\x4f\xed\x1c\x6c\xb8\xf9\xb5\x2b\xdd\xfc\xda\xa3\x81\xfe\xe2\x16\x9b\x0b\x20\xe2\x9b\x90\x1c\xed\x13\x67\x94\x1c\x7e\x65\x47\xdb\x69\x4b\x52\x0b\x46\x49\xda\xf4\x20\x7c\xc3\xac\x3a\x6f\x89\xec\x44\x32\x79\x32\x0d\xd9\x93\xfc\x4e\x19\x32\xa4\x19\x35\xe5\x4f\x68\xf4\xc4\xf3\xc5\x88\xbb\x7d\xb2\x54\x2a\x90\x65\xc0\x74\xef\x2d\x83\x58\x38\xaf\x56\x55\x47\xd2\xbb\xfe\xdd\x8c\xf0\x27\x11\xf7\xc6\x5f\x75\x75\x47\x26\xac\x91\xef\x5d\x12\xdf\xe5\x82\xb7\xef\x9f\x2d\x12\xab\xe9\x07\x34\x2e\x05\xf1\x80\xa6\x49\x2e\x56\xa1\x23\xfd\x62\x03\xb5\x7a\xd4\x91\x90\x5c\x36\x3d\x78\xba\x52\xe7\x9a\x1a\x35\xe8\x1f\xe4\x11\x13\xd8\x13\xb5\x65\x94\x7c\x2c\x0b\x45\x62\x2d\x2c\x67\xb5\x00\x50\x6d\x56\xf3\x20\x8a\x64\x1a\x8a\x36\x66\x35\xef\x9e\x59\xed\x76\x49\xf2\xd5\xde\xee\x7b\x7e\xbb\xd7\x64\xf7\xcd\x89\xdb\xd7\xbe\x7f\x57\xe8\x0c\xc5\xa0\x64\xcf\xce\xa7\xbc\x3d\x75\x31\x2a\x5d\x06\x1b\x09\xf2\x29\x5e\xf7\xe8\xb1\xe5\xe5\xee\xdf\xb5\x47\x9f\x0e\xe4\xc2\x4a\x9e\xab\xe1\x24\xa5\xa3\xb4\x18\x24\xda\x82\xb0\x54\x32\x65\x57\x59\x58\x16\xcd\x57\x78\x15\xc7\x88\x04\xf3\x8c\xc1\xd0\x7f\x54\x8f\xbf\xa4\x7a\x48\xb1\x48\x04\xc9\xd5\xf2\x57\x27\x37\xb7\x64\x4c\x24\x90\xf6\xc8\xe6\xe2\x55\x06\x01\xd8\x58\x6a\xe2\x20\xd9\x52\x4e\xa6\x49\x5d\x67\x4c\x67\x9d\xbb\x44\x72\xb9\x36\x4a\xd8\xd5\xbd\x5b\xaf\xf3\x0d\xef\x8d\xbd\xe4\x64\xb6\xe7\x56\x26\xc9\x00\x84\x77\xc4\x4a\xe0\x98\xe6\x5e\x6a\x73\x9c\xc9\x2a\x29\x58\x12\xe8\x43\x2e\x99\x6b\x24\xe6\x65\xa1\x98\x0b\xc1\xa3\x69\x5d\x9a\x14\x83\x29\xc8\x13\x7b\x9d\x58\x60\x92\x88\xd7\x6a\xf9\x73\xc6\xf0\xaa\xbd\x9b\xc7\x11\xfb\x81\x3c\xc4\xdc\x1c\x9c\x37\xbc\xb1\x20\x5e\x14\x33\xc2\xf2\x73\xa9\x42\xf2\x7f\x4b\xe0\xb9\xd2\xb1\xcd\xc6\xc9\xef\x03\x8f\x7b\xc7\x5e\x70\xe5\x45\x78\x12\x8e\x65\x72\x62\xb9\xf0\xd2\x97\x31\xb0\x80\xa1\xb2\xd3\xbb\x06\x63\x7e\x83\xb5\xaf\x04\x7f\x3d\x0f\x03\x41\x0b\x60\x34\x27\x06\x5c\xa3\x6b\x3a\xe1\xf3\x0a\x9b\x98\x4d\x35\xa3\x52\x61\x71\x46\x45\xed\x43\x06\x8f\xc9\xed\x66\x40\x8a\x85\x35\x0d\x03\x8e\x79\x8e\x96\x95\xf4\xc5\xb9\xc0\x85\x40\x4b\xe2\xb1\x46\x3e\x0d\x48\x54\xb9\x7b\xbd\x81\x50\xb3\x12\xa1\xa6\x8e\x50\x33\x45\x68\x03\x13\x96\x47\x45\x08\xb2\x0b\x05\x07\x5f\x82\x03\x88\x28\xce\x0c\x96\x54\xf4\x9b\x20\xbb\x48\x9a\x1b\x78\x05\xc9\x25\x52\xc3\x10\xb5\xe7\xf2\x2f\xc2\x5e\x7a\x3b\xe1\x89\x01\x93\x68\x19\xf6\x91\x7f\x9c\xa2\xdd\x70\xf4\xf0\x0b\x95\xd4\x88\x86\xfe\xc8\x14\x9f\x2b\xa2\x1c\x81\xd8\xc4\x63\x78\x22\xc8\x49\x4d\x13\xc5\x78\x0c\xd7\x2a\xe0\xc2\xd6\xcf\xf5\x4f\xa7\xfa\xa7\xd3\xfc\x26\x2a\x5d\xa3\x29\xe5\xe2\x93\xb3\xe2\x05\x86\x6f\x42\x73\x94\x9c\x25\x48\x3c\x64\x4c\x9e\xf4\xd2\x6e\xda\x07\xc9\xc1\xce\xc1\x97\x89\x79\xa0\x1b\x13\xc8\x88\x2d\x53\x3f\x0c\x19\x90\xa6\x8f\x3f\xf8\xa1\xc7\x01\x85\x75\x7e\x20\xd6\x47\xbb\xe3\x97\x71\x16\xf3\x79\x23\xb5\xbf\x49\x7f\x55\x54\xbd\x4d\x55\xa4\x50\x58\x59\x24\xa9\xb4\x71\x18\x5c\x11\xc6\x1f\xb3\x48\xd7\x56\x93\x48\xb0\x54\xba\x9a\x3c\x0e\xe4\x8a\x52\x88\x55\x07\xe3\xd2\x6d\x40\x32\x64\xa3\xdc\x1e\x47\xac\x36\xb3\x67\x92\x31\xcc\x9f\xba\x8b\xee\x05\x13\x39\x6f\x54\x1a\x9f\xa8\x26\x03\x56\x21\x3d\x2b\xe9\x47\x7e\x8f\x3d\xff\x2f\x84\xde\x7a\x42\x86\xf6\x08\x63\x4c\xfe\xe4\xc5\x7a\x59\x7f\xc1\xd2\xa2\xaa\x39\xfc\xa1\xcd\x99\xf1\xbf\x6f\x02\x98\x71\xcc\xfe\x63\x9a\xf5\x3f\xc3\x34\x4b\x1f\xc0\x9a\xf3\x08\x40\x50\x53\x4e\x03\x43\x7b\x84\x42\x1c\x0c\x9d\x5c\x49\x15\x2a\xd3\x98\xbc\x8d\x05\x77\xd5\x6a\xc0\x08\xe4\x93\xb1\x9f\x5a\x25\x50\x21\x69\xb1\xca\x07\x14\x42\xb4\x51\x22\xac\xd5\x40\x98\x96\x08\x21\x84\x88\x9e\x84\xeb\x6f\x34\x50\x67\xfc\x6f\x0c\xfc\x3c\x13\xaa\xe8\x7f\x78\xfb\x3f\xbc\xfd\x28\xde\xc6\xdf\x8c\xb9\x69\xd4\xf0\x04\x2f\xfd\xa9\x89\xa8\xb8\x40\xcd\x97\xa2\xc7\x4c\x2e\x47\xd3\xe9\x39\xb1\x85\x4c\x99\x76\xc8\xb3\xe9\x79\xdf\xd9\xcb\x4e\x1c\xfe\x54\x84\x37\x09\xf2\xdb\x4d\x62\x34\x6a\x08\x9e\xf8\xbb\x6c\xa6\xff\x33\xce\xff\x67\x8c\xf3\xdd\xdc\xf4\x60\xdb\x5d\x1a\xbd\x14\xcc\x24\x07\xe3\x23\x18\xf0\x11\x7a\xe1\x9f\x1a\x33\x2f\xa5\xe2\xf7\x9f\x49\xe7\x7f\x08\x33\x16\x57\x44\x39\xc3\x35\x55\x5c\x61\x5b\xc6\x15\xd6\xa6\x9c\x8c\xf7\x44\x37\x83\x00\x51\xf8\xad\xe6\x0a\xff\x6f\x54\xf1\xfd\xff\xa8\xf8\xff\x23\x39\xf2\xbf\x53\x0d\x3a\xfe\x66\x5a\x90\xff\x77\xaa\xf8\xfe\x7f\x54\xfc\xff\xf0\xf6\xa3\x79\xfb\xdb\xa9\xf8\x41\xc8\x1f\xa5\x54\x6c\xdd\x6c\xda\xff\xf3\x9b\x4d\x41\xc8\xe5\x7c\xa4\x9a\xf0\xed\x14\xf6\x20\xe4\xff\x27\x6c\x42\xda\x3b\x37\x21\xff\xe2\x2a\x27\x08\xf9\xb7\xdb\x75\x0c\xab\x6d\xaa\xfe\x8f\xa2\xd7\xb7\xdd\xb4\x0d\xd9\xb7\xa3\xde\xcd\xbf\x81\x7c\x89\xfc\x2b\x51\xc7\x1e\xc1\xfd\x4d\x9a\x39\xa3\x3f\x75\xd3\xee\xe6\x5b\xd0\xa4\xaa\x99\xff\xd6\x3b\xd5\x89\x9f\x9c\xf4\x7c\x73\x26\x6d\x60\x0c\x1a\x9d\x0b\x94\x6e\x95\xc7\x0a\xe3\x32\x0c\x7d\xe2\xe9\x2e\xb4\x32\x0f\x3d\x65\x85\x39\x9d\x70\x07\xf6\x3e\xc6\x05\x98\x69\x58\x6d\x77\x7f\xbf\x70\x47\x99\x5e\xdd\x36\xc6\xe1\x84\x2c\xa8\x98\x77\x34\x87\x46\x07\xc5\x9c\xff\x96\xa3\xd1\xcc\x71\x4b\x76\x38\xca\xbd\x99\xf2\x83\xc7\xc9\x0d\xf7\x18\xf1\x0c\x24\x70\x3c\x95\x38\x6e\xbb\xb1\x3a\xa1\x93\xd7\x41\x44\x18\x4f\x4e\x43\xff\x8c\x2b\xdd\xbc\x16\xed\x2e\x4c\x9e\x68\x40\x69\x2d\x70\x4e\x6e\xf8\x33\x46\x3c\xed\x2a\x1c\x51\x75\xbe\x9e\x18\xfa\xbd\xdc\x24\xd5\x80\x49\x62\x44\x78\xbc\x7c\x9e\x81\x93\x97\x59\x5e\x79\xc1\xc4\x27\x0c\x18\x63\x79\x89\xc7\x40\xf9\x1d\x9f\x68\x3c\x27\x82\x96\x9f\x04\x21\x3f\x2e\x27\x1e\x27\x93\x67\xb2\x49\x70\x2d\x9a\xfb\x81\x04\x13\xdd\x03\xe7\x83\xdb\x19\x4b\x58\x39\x22\xc9\x95\x59\xb0\x25\x5b\xd6\x0f\xe0\x1a\xd1\xe8\x13\x8d\xe8\xa5\x4f\x5e\xd0\x89\xba\x73\x94\x74\x46\x78\x29\xfa\x41\xb4\x22\x2b\x52\xb8\x82\xa5\xf0\xba\xf6\xd2\xcc\x7d\xac\xd1\x37\xff\x04\xa6\x43\x84\xc5\x41\xd6\xfa\x77\xc1\x98\x00\x83\xc9\xb6\xea\xd4\xe1\xe1\x6c\xe6\x13\xf9\x29\xf5\x29\xbf\x15\x62\x60\x3b\xc5\x4a\x27\x9c\x5b\xef\x55\x45\x24\x98\x6c\x7e\xad\x8c\x33\x12\x3a\x20\x01\x61\x8d\x76\x74\xe6\x86\xef\x15\xa5\x9c\xe5\x95\x5e\xd2\x60\x22\xad\x2d\xf7\xca\x7c\x67\xc9\x8f\x52\x8f\x86\xa1\x18\xbc\xd7\xd4\xf7\x93\xfb\x56\x09\x6b\x27\x64\xd8\x20\xb0\x0e\x66\x3a\x95\x70\xd6\x12\xd3\xaa\x36\xe9\x7c\x93\xce\x84\x44\xeb\x96\x2b\xed\x0b\xa3\xca\xf6\xb0\x60\xea\xc3\xc5\x22\xdf\x3e\x0a\x8e\xf9\x51\x20\x0d\x7c\x82\x91\x76\x46\x1c\x8c\xf6\xaa\x1c\x47\x0c\x48\xc2\xa5\xa9\x57\x53\xe8\x92\xc4\x3d\x90\xc0\x59\xe1\xa9\x33\xf2\xb0\x88\xd5\x28\xb5\xdf\x63\x10\xae\x51\x99\x21\xaa\x6f\x70\x6e\xf0\xdc\x5e\x05\x73\x92\xd4\x64\x40\x4b\xc6\x04\xa5\xc8\xe9\x84\x66\x64\xca\x48\x34\x97\x61\xf8\xab\xc7\x55\x89\xf5\x36\x20\xcc\x08\x57\x05\x01\x11\x53\x27\xaf\xa8\x24\xca\x8b\x48\xde\xdb\x32\x80\x77\xb5\x38\x54\x45\x0c\xb8\x47\x8a\xb7\x4a\x49\xc5\xad\xd2\x14\xcd\xea\x7a\x00\x47\x72\x6f\x7c\x2d\xd9\xb0\x02\x9d\x4f\xd5\x66\xb0\x25\xde\x12\xa8\xa4\x82\xa0\x44\x8f\x64\xa4\x55\x53\x42\x65\x92\xd5\xca\x50\x26\x2c\xe5\xd1\xf1\xd7\x04\xbf\xc5\xc3\x4c\xbe\xeb\xb2\xbc\x30\x0b\xe4\x66\x76\xaf\x93\x55\x59\xf5\x5c\x00\x53\xcf\x21\xe5\x5a\xb6\x5b\x32\x94\xa6\xea\xcc\x84\x49\xa4\x35\x36\x67\x69\x64\x68\xb3\xf7\xdf\x65\x44\x59\xb8\x95\xf2\x4d\xed\x99\x2e\xd2\x55\x6d\x54\xe5\x8b\x65\x8d\xf4\xe9\x56\x1f\x47\xac\x78\xad\x77\xa3\x37\x48\xae\x7e\x16\xa7\x6c\x29\x29\xd2\x4a\x7f\x08\xd9\x76\x3f\xab\x19\x66\x43\x32\x5a\xa3\x72\x0d\x3b\x1c\xe9\x16\xbe\xc4\x1c\xf1\x35\x8a\xe8\x2c\xf0\xfc\x52\x03\x72\x13\xa4\x0d\xc9\x4a\x35\xc9\x1a\x9c\x34\x07\x41\xa3\xe9\xda\x10\x85\xb8\x79\x14\x1e\x07\xd2\x14\x89\x0e\xc3\x46\x53\x97\xb1\xe1\x68\x2f\x6f\xb3\xaa\x30\xa5\x7c\x9a\x8c\x86\x04\xb1\x4c\x68\x52\x29\xb2\x36\x38\xb9\x40\x91\x02\xfb\x16\x28\xb2\xde\x76\x51\x66\x11\x0a\x7c\xaa\xae\x8b\x26\x39\x3e\xbd\x7c\x44\x60\x07\xe5\xb9\x2c\x6f\x19\x8d\x4e\x25\x18\xe5\x49\x6e\x33\x39\xf7\xdc\x46\x2c\x1a\x7d\x4f\xa6\x21\x23\x80\xc1\x41\xc3\x71\x45\xc2\x99\xb7\x90\xaf\xb6\xeb\xec\x6d\xd8\x88\x67\x76\xa4\x4f\x96\x2c\xbc\xa2\x13\xe5\x60\xfc\x7f\x09\x75\xd9\x63\xe4\x7f\x3d\xf1\xe4\x9e\x0c\x7f\xa2\x1a\xf2\x44\x59\x9f\x46\xc6\x9f\x58\xda\xe4\x88\xe7\x66\xaa\x49\x35\x98\x69\xb9\x55\x69\xda\x17\x7e\x18\x90\xcd\xad\xba\xe2\xe2\x2b\x91\xd1\x9a\xb4\xc9\x6e\xe9\x6d\x74\x9a\xe8\x9a\xbf\x7d\x09\x10\x11\x7f\x6a\xa9\x0a\xd7\x10\x25\x5e\x1b\xac\x6b\x72\xb9\xf4\xc6\x5f\xff\x11\x85\xc1\xf2\x42\x2e\xe3\x2e\xbc\x98\x87\x17\x74\x21\x70\xb9\xc0\x0f\x2b\xb6\x5a\x0d\x47\x50\x6d\xf7\x0d\x87\xcd\x11\x1a\x96\x35\xb1\x42\x23\xd4\xe8\x13\x0c\xf0\xc2\xe3\x24\x19\x75\xe2\x51\xbf\x3d\xa3\xae\x13\x7b\xda\x45\x99\x28\x77\x87\xf5\x84\x00\x9e\x7d\x05\x4c\x2e\x34\xfd\x74\xe7\x2f\x52\x76\x6c\x38\x42\x91\x35\x26\xd4\xcf\x3b\x8a\x69\x9f\xb3\xfc\x73\xd6\x70\xc4\xf7\x80\x21\x07\x22\xc1\xa5\x88\xad\x51\x64\xb1\x30\x0e\x26\x15\x0b\xca\x48\x39\x68\x56\xc0\x35\xf7\x80\xa4\xc1\x8f\x59\x83\x0c\xb8\x2b\x3f\x0f\xa7\xd3\x82\xd1\x71\x41\x78\x02\xa2\x61\x4f\x52\xff\xcc\x6c\xe0\xb8\x9a\x21\x1e\x83\x10\x11\x89\x89\x50\xf9\xb5\x66\xa8\x4b\xd6\xd2\xb3\x3c\xf2\xf0\x50\xda\x44\x66\x08\x49\x9b\x3f\x05\x8f\x16\xe1\x51\x88\xf6\x01\x3b\x0e\x6a\x35\x7a\x62\x67\xc3\xd5\xdb\x9b\x84\x77\x9e\xea\xbb\x50\xc3\x8a\x25\x34\xa1\x8a\x26\xeb\xeb\x39\xf5\x09\x08\x8f\x59\xad\xc6\x8e\x83\xac\xd5\x9e\x40\x70\x4a\xfd\x82\xe9\x7b\xde\xd2\xb0\x6c\xe6\xcc\x4f\x30\x87\x42\x04\x1f\x11\xa1\xbc\xee\x33\xc0\xe1\x11\x94\x26\xf5\xe7\x74\x41\x00\x6f\x38\x62\xfe\xc9\xa9\x16\xc8\xcf\xc8\x09\x26\x90\x4e\x41\x70\x6c\xab\xaf\x4d\x33\x38\xc6\xf6\x91\x7a\x11\x8b\xf0\x86\x23\xa1\x11\x78\x04\x8f\xa4\x37\x7a\x99\xd3\x68\x04\x27\x85\x62\x5a\x29\xa1\xa3\xb3\x5a\x0d\x44\xd6\x38\x8c\x03\xad\xab\x38\x0a\xb5\x6b\xbb\x29\x66\x26\x87\x88\xe6\x6f\xa1\xa0\x4b\x20\xfe\x50\x88\xf4\x5e\x93\x47\x6a\x42\xfd\xb7\xc8\x15\xd1\x83\x65\x68\x9b\xa5\x58\xfb\x80\x40\x44\xa3\x1f\xc4\x44\x4e\xa4\x70\x25\x27\xf6\x80\x9c\x38\x83\x94\xac\xc0\x1b\xe8\x34\x4c\xe9\x0e\x38\x7c\x4a\x30\xb6\xd7\x15\xde\xe2\x9e\x24\x4d\x12\x12\x29\x29\x05\x5d\xe5\xaa\x5e\xac\xd6\x92\xcb\x68\xa1\x6e\xde\xbd\x2e\xcd\x0c\x24\x6f\x29\x31\x39\x2c\x67\xa7\x8c\xdc\x20\x6b\xb8\xe7\xfd\xc5\x96\x16\x99\x24\xe7\x05\xed\x53\x7e\x40\x60\x9d\xe8\x68\x48\xb1\xc2\xb5\xde\x31\x59\x45\x81\x44\x32\xb3\x06\x87\x07\x64\x0d\x5d\x4f\x11\x21\x71\x89\xe8\xa1\x18\x03\x4f\x8d\x2f\xd4\x25\x6d\x88\x7c\xdc\xb5\xdb\x7d\xd2\x41\x63\x9d\x3c\x44\xa7\x07\x69\xc8\x55\xe9\x29\xf5\x7d\x1a\x91\x71\x18\x4c\xe4\x6d\xa0\x5d\xf4\x73\x48\xab\xbe\x8d\x86\x80\x37\x08\x3c\x70\x48\x6b\x5d\x15\x1e\x4c\x56\xf5\xf1\xfc\xf9\x59\x5a\xd1\x1a\xa2\x29\x1e\xa3\x39\x06\xe3\x04\xef\x47\xe1\xd9\x10\xa8\xc8\xf4\xb3\x87\xa1\xce\xeb\xf1\x4e\xc4\xe3\xed\x68\x9f\xd2\x20\xe6\x44\xe2\x0c\xd1\x04\xcf\xd1\x12\x83\xf9\x37\x42\xba\x51\xac\xa1\x02\xc9\x42\x2b\x5a\x5d\xd2\xb9\xa7\x07\x44\x91\xed\x6d\x79\x15\xc6\x2c\x69\xc9\x02\x2f\xd1\x15\x06\xcb\xed\x2d\x51\x85\x6d\x24\xff\x55\x23\x26\x65\xac\x84\x2c\x9f\xe0\xd6\x21\x26\x90\x6b\x00\xe9\x61\x41\x34\xe6\x8f\x30\x20\xef\xe4\xcc\x92\xd2\xa0\x9c\x2a\x68\x71\xd0\xef\xb6\x77\xb5\x46\xd5\xa9\xdc\x06\xdd\xe2\xab\x7c\xda\x9d\x69\x25\x2b\x46\xa5\xfc\x8e\x6b\x10\xd2\x97\x5b\x00\xcd\x5e\x83\xc0\xa7\x3d\xa1\x63\xfd\x49\x12\xf4\x76\xf6\xd0\xe3\x89\xe0\xaf\xe1\xfa\x4a\xf5\x92\x1c\xef\x97\x78\x06\x6c\x88\x2e\xf0\x0c\x38\x10\x5d\xe3\x19\x68\x42\xf4\x12\xcf\x40\x0b\xa2\x1b\x3c\x03\x6d\x88\xce\xf0\x0c\x74\x20\x7a\x87\x67\xa0\x0b\xd1\x57\x0c\x2e\x93\x5e\xbe\x48\x7e\xaf\x93\xdf\x97\xc9\xef\x4d\xf2\x7b\x96\xfc\xbe\xdb\xce\x15\xb2\x95\x42\xc3\x78\x20\x7d\x4e\xc3\x80\xcf\x15\x81\xd4\xe3\x76\x26\x51\x1e\x38\x92\x52\x8d\xc2\x27\x4e\xb3\xae\x08\xf7\x43\xec\xfb\x9f\xe5\x9d\x27\x55\x20\x7f\x87\x3b\x86\xb0\x82\x22\xf8\xe4\x19\xfe\x8a\xce\x31\xf8\xba\xbd\x81\xaa\xb0\x8d\x1e\xd1\xc6\x0c\x89\x12\x4a\xf7\xb4\x74\x7b\x5b\xb6\x37\x45\x2b\x03\xe1\xde\xf9\xf6\x29\x2b\x9f\xa2\x8a\x73\x57\x32\x61\x55\x0c\x8b\x0c\xb4\x3e\x61\x15\xeb\x54\xd3\x97\x1a\x1b\x1a\x9d\x76\x8f\x95\x7c\x8a\xcb\x00\x95\xc0\xaa\x39\x0f\x6a\x93\xda\x73\x7c\x8e\x4e\x31\x38\xdf\xde\x4d\xda\x6c\xb2\xb5\x5f\xbe\x81\xf4\xff\x78\xfe\xbc\x30\x01\x7c\xc0\xa7\xe8\x3d\x06\xa7\x3b\x11\x4b\xbf\xd8\xc1\x32\xdf\x4c\xa4\x7f\x3c\x7f\xae\x49\xf5\xdf\xf0\x7b\xf4\x02\x83\xf7\x3b\xd1\x7b\x00\x47\x7f\x3c\x7f\x9e\x0b\xb6\xf4\x65\xb7\x78\xbf\x57\x5c\x67\x60\x94\xc4\x7e\x8b\x5f\xe4\x12\xfb\xf5\x6e\x89\x9d\x7e\xca\x8b\x70\xb4\xf7\x0d\xd1\xfd\x97\xda\xb9\x5b\x86\x2b\x99\xfc\x42\x93\xc9\x6f\xf0\x6b\x21\x93\x7f\xc0\xaf\x85\x68\xfc\x03\xbf\x16\x32\xf9\x15\x7e\x2d\x64\xf2\xf7\xf8\xb5\x90\xc9\x1f\xf1\x6b\x21\x93\x7f\xc6\xaf\x85\x4c\xfe\x1d\x83\x37\x49\x1f\xfd\x90\xfc\xfe\x91\xfc\xbe\x4a\x7e\xbf\x4f\x7e\x3f\x26\xbf\x3f\xef\xec\xd3\x82\x58\x7e\x70\xdb\x35\xe1\x9c\xbd\xdd\x27\xb5\xf2\x82\x8d\xf2\x87\x99\x94\xfe\x78\xfe\xbc\x2c\xdc\x0a\x49\x3b\x04\x5c\x0e\x4e\x30\xc9\x27\xfc\x3b\xfa\x8c\xc1\xef\xbb\x87\x5b\x49\x62\x3f\xb8\xf9\x45\xb9\x5d\xc0\xf0\x7e\x22\xec\x6c\xe0\xce\xf6\x15\x65\xf8\xe7\x6f\x29\xc3\x75\xe8\x65\x31\x5e\xa8\x59\x97\xe4\x45\x12\xde\x3b\x7a\x72\x79\xae\x43\xdc\xac\x62\x53\xaa\xff\x88\x3f\xef\x7d\x4e\xba\x92\x59\x13\xc0\x91\x31\xae\x72\xb6\x18\xad\x61\x9a\x1f\xdc\x93\x3f\xab\xca\x9f\xe6\xf9\xec\x9e\xfc\x49\x55\xfe\x24\xcf\xbf\xac\xca\x5f\xe4\xf9\x5e\x55\xfe\x6d\x9e\xff\x5b\x55\xfe\x65\x9e\x3f\xbf\x27\x9f\x54\xe5\x5f\xe4\xf9\xb4\x2a\xff\x26\xcf\x9f\x56\xe5\x3f\xcb\xf3\xbf\x56\xe5\x3f\xcf\xf3\xc3\xaa\xfc\x0f\x79\xfe\xa2\x2a\xff\xb7\x3c\xdf\xaf\xca\x7f\x9b\xe7\xc7\x55\xf9\x6f\xf2\xfc\xe8\x9e\xfc\x65\x55\xfe\x0f\x79\x3e\xaf\xca\xff\x3e\xcf\xff\xbd\x2a\xff\x53\x9e\x7f\x55\x95\xff\xe3\xba\x24\x1c\xb6\xec\x0d\x96\x8b\x68\x91\x34\xb1\xb6\x13\x8b\x19\x62\x05\x3f\xbf\x44\x0b\xd0\x4d\x75\xfb\xc6\xe2\x29\x87\x06\x4e\xbb\x92\x2c\x23\x78\xaa\x23\x54\x3e\x0c\x34\x1f\x09\xda\xae\x24\xbc\x4b\x36\x4f\x8c\x2f\x5f\xa2\x3a\x18\x9a\x8d\xd1\xe0\xcb\x97\x89\x09\xc5\xab\x81\xa2\x52\x7a\xfd\xcb\x17\x4b\xe6\x83\x81\x3b\x24\x2f\x47\x79\xf9\x41\xf2\x45\xfc\x88\x2f\x9e\xaa\x4f\x7c\x7c\xf0\xaf\xff\x02\x43\xbb\x71\xe8\x35\xa6\xa3\xbb\xd6\x1a\x7e\x77\x80\xc6\xc5\xc4\xae\x4c\x9c\xe2\x42\x30\x66\x36\xbb\xfc\xf2\x05\x18\xe6\xd0\x43\x1e\xf2\x46\xa6\xf1\xe5\x0b\xfc\xce\x80\x68\xbe\xa5\x58\x8c\x62\x14\xe7\xc5\x26\x1b\xc5\x3c\x0d\x1c\x8a\xf2\x92\xcb\x6d\x25\x25\x44\xbd\xe4\xa2\x58\x72\x1e\xf9\xaa\x60\x54\xac\xfa\x6a\xa3\x98\xa7\x95\xd3\x01\xde\xe2\x3b\xcf\xa7\x63\x72\xe9\xc7\xc4\x75\x3a\xbd\xc3\x66\xab\xdf\x42\x5e\xc0\xe9\xef\x31\xb9\x9e\x53\x4e\x5c\xa7\xdb\x6e\xb7\x5b\xbd\x0e\xf2\x7e\x8f\x3d\xb7\xdb\xe9\xb4\xd4\xe3\xc2\x63\x34\x20\x6e\xbf\xd5\xef\x77\xba\x6d\xe4\xfd\x11\x33\x05\xa2\xed\xf4\x3a\xe8\x92\xd0\x99\xf8\xd6\x71\x0e\x9b\x5d\x1b\x5d\xd2\xe8\x77\x51\x43\xb7\xd7\xb3\x9b\xed\x36\xba\xf4\xbd\xf1\x57\xd7\x16\xbf\xc1\x78\x4e\x26\x9e\xbf\x08\x83\x89\xcc\x6f\xda\xed\x0e\x92\xf8\x34\x3b\xea\xe1\x8a\x86\x3e\xe1\xee\xa1\xdd\xe9\x34\xed\x26\xba\x64\xe1\x75\xe0\x3a\x76\xbf\xd9\x6e\xb6\xda\xe8\x32\x66\xfe\xed\x75\x18\x4e\x5c\xa7\xdd\x39\xec\x36\x5b\x0e\x1a\x7b\x13\xc2\x25\x88\x6e\xb3\xdb\xed\x34\xfb\x68\x3c\xf7\x18\x67\x24\x8e\x14\xc2\xad\x4e\x13\x8d\xe7\xe1\x38\x94\x81\xb9\x9c\x56\xaf\x7f\xd8\xee\xd9\x68\x1c\x32\xcf\x17\x48\xb4\xdb\xcd\x5e\x53\xbc\x06\x53\x3f\xbc\x26\x4c\xc1\xea\x1c\x3a\x87\x7d\x47\x26\x47\xd4\xff\x2a\xb1\xed\xb4\xfa\x7d\x34\x66\x74\x11\x85\x81\xeb\xb4\xdb\xcd\x96\x63\xdb\x68\x7c\xeb\x05\x09\xa9\x26\x1e\xfb\xaa\xa8\xdb\x3a\x94\x2f\x32\xaf\xd5\xe9\x35\x5b\xf2\x75\x16\xfa\x13\x12\x30\x81\x7e\xd3\x3e\x6c\x1e\x26\xa5\x66\xcc\xbb\x75\x1d\xc7\x71\x0e\x6d\xa7\x97\xa4\x10\x12\xb8\xcd\x4e\xd7\xb6\xd3\xf7\x52\x89\xaf\x73\xef\x2b\x75\x9d\x66\xbb\xd5\x6a\x76\x14\x98\x85\x37\x23\x01\xf7\xdc\x43\xc7\x3e\xec\xb6\x55\x8d\xa1\x4f\xaf\x88\x82\xd6\xe9\x1c\xf6\x0e\x0f\x55\xd1\x50\xce\x97\xb2\xf5\xbd\x4e\xd3\x4e\xd2\xc6\x73\x3a\x71\x1d\xdb\x6e\xdb\xb6\xd3\x94\x69\x8c\x4c\x24\xb8\x8e\xdd\x96\xef\x91\xec\x3b\xd7\xe9\xb4\xec\x7e\xdb\x51\xdf\x45\xc4\x53\x15\x1c\xb6\x9d\xc3\x43\x47\x55\x20\xe3\xc4\x48\x52\xb4\x7b\xad\x76\xab\xdd\xcb\x53\x65\x6b\x05\xe5\xda\x87\x1d\x3d\x95\x14\x53\x79\xcc\x7e\x8f\x43\x1a\x11\xb7\xd3\x3c\x6c\xab\xb4\x94\x39\xba\x87\x87\x1d\x41\x3b\x42\x96\x4b\x1a\xc8\xce\x71\xba\x87\xa2\x12\x42\x96\xd1\xd7\x5b\x55\xf1\xa1\xd3\x71\xd0\x84\x2e\x64\x85\xdd\x43\xbb\xdf\xec\x76\xd4\x3b\xd1\xde\xc3\xc9\x2c\xe9\xf3\xa6\x6d\xb7\x9c\xc3\x43\x34\xa5\x8c\x5c\x32\x3a\xfe\xea\x3a\x82\x40\x4e\xbb\x8b\xa6\xbe\xe0\x96\x74\x8c\xf4\x7a\x9d\xc3\xa6\x8d\xa6\x21\x23\x11\x4f\xba\xaa\xd9\x6d\xf5\xdb\x4d\x34\x8d\xc7\xf3\x88\x7a\x12\x23\xe7\xb0\xd5\x41\x33\x8f\x06\xd1\x65\xc8\x42\xc1\x30\xbd\x76\xbb\x6b\xa3\xd9\x3c\x8c\x78\x0a\xab\xe5\x74\xbb\x3d\x07\x09\xce\x10\x1f\x75\xbb\xbd\xa6\x8d\x34\x3e\x69\xb7\x9a\x87\x8e\x48\x12\x8d\xe8\xb7\x9b\x8e\xe8\x0a\x55\x67\xab\xd9\xeb\xf6\xd5\xf3\x2d\xf1\xfd\xf0\xda\x75\x9c\xb6\xdd\xb2\x3b\x1d\x24\x9b\x98\x96\x9e\x87\x01\xb9\x9d\x90\xeb\x64\xc0\x76\x6d\x34\x0f\x79\x4a\xb7\x56\xbf\xd7\xb6\x11\x0d\x26\xd4\x0b\x44\x6f\x3b\xad\x76\xa7\xdf\x69\xb6\x65\xd2\x2c\x94\x54\x6c\xb5\x6c\x44\xaf\x42\x76\x2b\xdb\xde\x6b\xda\x36\x4a\xd8\xaf\xd3\xeb\xf7\xba\x5d\x1b\xf9\xde\x95\xb2\xfc\x72\x3a\x4e\xab\x29\x38\x23\x4d\xb9\xf4\xe3\x68\x2e\xbf\x6b\xb5\xba\x1d\xe4\x7b\xd7\x81\xc2\xbe\xef\x1c\xda\x87\xbd\x2e\xf2\xc9\x22\x0c\xc6\x73\x3a\x9d\x0a\xc6\x12\xb4\xed\xf7\x3b\xc8\xa7\xb3\xb9\x1a\xd5\x8e\xd3\x3a\x6c\x35\x3b\x6d\x95\x94\x8c\xda\x4e\xaf\xeb\x74\x5a\xdd\x24\x4d\x0c\x32\xa7\xdd\x6b\x77\x3a\x87\x87\x2a\x29\x23\x60\x4a\x98\x6e\xbb\xdd\x6f\x0a\xb4\x64\xae\x1c\x6f\xad\x7e\xbf\xd9\x6a\xb6\xd2\x24\xc5\xc1\x87\xfd\x66\xa7\x9b\x25\x95\x4b\xa5\x44\xeb\xf4\xdb\xdd\x04\xc7\x74\x44\x74\x7b\x9d\x66\xaf\xdb\x4c\x12\xd3\x21\xd1\x74\xda\xcd\xfe\x61\x52\x6d\xca\x98\xfd\x43\xdb\x6e\xb5\x93\x5a\xf2\x21\xd1\xeb\xb7\x5a\xbd\x4e\xab\x90\x4c\xca\xc9\x9c\x10\x3f\x21\x4b\xa7\x2f\x86\x96\x4a\xcf\x9a\xd9\xeb\xf5\x9c\xbe\x48\x5c\x08\x19\xd6\xec\xdb\xf2\x31\xe1\x97\x56\xf3\x50\x74\xa5\x4f\x03\x12\x48\x92\x74\xba\x3d\x1b\xa5\x62\x23\x63\xd9\x85\xc7\xc2\x30\x90\xb2\xb3\x6b\xf7\x65\x50\x8e\x78\xa1\xcd\x02\xdd\x5e\xab\xd7\x6a\x36\x93\x8c\x64\xe8\x74\x92\xd7\x54\x8a\x34\x9b\x8e\xe0\xec\x24\x75\x19\xb3\xa5\x4f\xdc\xc3\x6e\xb7\xd9\xed\xb7\x92\xc4\x8c\x4a\xad\xc3\x5e\xdf\x3e\x4c\xcb\xe6\xa2\xa3\x6f\xf7\x7b\xbd\x43\x3b\x4d\x5f\x32\x1a\xcc\xd4\x17\xdd\xb6\xd3\x69\x27\xe9\xb9\xa0\x68\xf7\x7a\xcd\x96\x9d\x96\x57\xc2\x42\xf1\xb4\xdd\xee\x39\xbd\x16\x5a\xd0\x49\x90\x33\x56\xb7\xdd\x3e\x74\x9a\x68\x41\x03\x2e\x94\x9f\x85\x98\xc1\x9a\x4e\xbf\x63\xa3\x05\x8d\xf8\x2d\x0b\xa3\x74\x12\x13\x9f\x86\xe3\xb1\x17\xd1\x20\x49\x69\x1e\xa2\xc0\xbb\xf2\x7e\x0b\x33\x99\xd0\xed\x77\xfb\x1d\x91\x78\xeb\x3a\xcd\x3e\x0a\xfd\x89\xef\x8d\x45\x4e\xb7\xdd\xea\x74\x44\x02\xbd\x22\x72\x4c\xb6\x7a\x5d\xf5\x36\x61\xde\xa5\xdb\xb3\xdb\xfd\x5e\xeb\x10\xe5\x22\xb9\xd3\x12\xd2\x45\xbd\x4b\xf4\xbb\xbd\xe6\x61\xab\xdd\x46\x29\x6d\xdb\x2d\xa7\x23\xba\x7e\xe9\xf9\x44\x13\x15\x9d\x6e\xa7\xe7\xb4\x6c\x95\x2c\xc9\xe4\xd8\x76\xb3\xd3\xef\xab\xa4\x9c\x4e\x8e\xd3\x69\x1e\x1e\x76\xbb\x32\x59\x23\x53\xbb\xd5\x77\x9a\x76\x0b\x2d\xbd\xa5\x77\xeb\x5d\xcf\xe9\x52\x0d\x5c\xbb\xd7\x43\x4b\xe2\x8d\xe7\xcb\x78\x3a\x95\x6d\xed\x75\x7b\x2d\xb4\x24\x2c\x16\xf2\xa2\xdb\x3f\x3c\x74\x50\x3a\x36\xba\x8e\xdd\xea\xa0\xa5\x1f\x2f\xc4\x1c\xdd\x6c\x77\x5b\x3d\xb4\x0c\xaf\x27\x89\x90\x75\x1c\x31\xb3\x3a\x36\x4a\x58\x42\x70\x59\xaf\xd5\x45\x8c\x5c\x92\xf1\xd8\x4b\x52\xbb\xdd\xc3\x5e\xbf\xef\xa0\xa4\xf9\x8e\xd3\xed\xdb\x88\x85\xd1\x6d\xa2\x0f\x34\x5b\x9d\x5e\xc7\x39\x44\x2c\xbc\xf5\xd4\x78\x68\x37\xfb\x5d\x31\x4d\x44\xde\x64\xe2\x13\x55\xec\xd0\x69\xf6\x9c\x7e\x0f\x65\x63\xb4\xed\x74\xfb\xfd\x26\x8a\xbc\x60\x92\x42\xea\xda\xad\x66\xbf\xdb\x46\x39\x33\xda\x1d\xbb\xd5\xec\x89\x84\x68\x4e\x7c\xa9\x22\xf4\xda\xdd\x56\x1f\x45\x94\x04\x81\xe7\x3a\x76\xc7\xee\xf6\x0e\x7b\x28\xa2\x32\x94\x96\xd3\xec\xb6\x9a\x42\x6a\x14\xc6\x77\xcb\x41\x39\x23\x77\x0f\x7b\xb6\xdd\x4d\x52\xd4\x60\x6f\xf5\x9a\x87\xed\x36\xd2\xc6\x79\x9a\x12\x24\x03\xb9\x73\xd8\xb2\x51\x81\xe9\x3b\x6d\xbb\x87\x72\x11\xd0\xee\x36\xed\xc3\xbe\x8d\xb8\x10\x7f\x2d\x31\x58\xc4\x0b\xf1\x7c\xb7\xd5\xec\x1f\x76\xa5\x39\x13\xf7\x89\xeb\xb4\x9b\x76\xbb\xdf\xef\x23\x1e\x2e\x3c\x1e\x4a\xa9\xdf\xb3\x0f\x3b\x48\x1b\x39\xcd\x8e\xd3\xef\x74\x51\x32\xc1\x3a\x9d\x6e\xcb\xb1\xfb\x5d\x74\x3d\x27\x1e\x97\x9a\x5d\x4b\xb4\x28\x9f\x00\x7b\x4d\xa7\xa3\x5e\xa3\x45\xf8\x35\x55\xfe\xfa\x1d\xa4\x49\xa2\xee\x61\xd7\x4e\xde\x53\x76\x74\xda\x1d\xbb\xd7\x5e\x97\x4e\x55\xa4\xf1\x40\x66\x2b\x80\x01\x31\x0d\x03\x5a\x9c\xd1\x05\x80\x16\x0f\xdf\x08\xad\xec\xb9\x17\x11\x00\x11\xe0\xd8\xb7\xc8\x0d\x19\x03\x02\xe1\x40\x68\xbe\x37\x00\x70\x2c\x1d\xf3\xbc\x0e\xb8\x0c\x8e\x8c\x9c\x2e\x84\x27\x27\xfd\x9a\xd3\x59\xf1\x93\x93\x76\xad\xd9\xb6\x91\x7c\x70\x3a\xab\x66\xdb\xae\x71\x04\x9c\x4e\x8d\xc3\xe3\xe3\xf6\x4a\x3c\x20\x47\x86\x90\x1f\xe7\x80\x2f\xc1\x26\x44\x51\x64\x5a\xae\x5b\xe6\xf2\x61\x53\xfc\x69\x8d\x12\x40\xf3\x72\xa9\x66\xa7\x53\x17\x25\x0f\x84\xbe\xa8\x5e\x9a\xfa\x4b\x4b\xbd\xa8\xaf\x27\xf9\xd7\x17\x65\xf8\x7c\xd8\x56\xe1\xee\x97\x7a\xa1\x07\x82\xcf\x3e\x5e\xe4\x1f\xbf\xcb\x6b\x48\xca\x14\x70\xb9\x7a\x40\x49\x05\x56\x46\x94\x7c\x77\x1d\xe4\x86\x37\x82\x8a\xb7\x43\x32\x82\xae\x21\x23\x07\x2e\x3d\x96\xc6\x28\x4e\xc8\xf2\xd6\x7b\x8b\xd2\xff\x76\xb2\xa7\x93\x71\xc6\xa5\xb6\x67\xa5\x8a\x93\x93\x13\xa7\x5b\x13\x0b\x05\x22\x7a\x57\x3c\x34\x3b\x9d\x1a\x41\x8e\xe6\x4b\xf7\x22\x75\xb6\x9f\x7f\x7c\x8c\xed\x5a\x0d\x10\xcc\x31\xc3\x6f\xbd\xb7\x10\x25\xe0\x92\x72\xf9\xb7\xd7\xfa\xbe\x9a\xee\x5f\x36\x5c\xad\x00\xc1\x82\x57\x21\x4a\x91\x07\x04\x13\x8b\xcd\x2e\x01\x84\x16\x43\xc4\x9a\x21\x62\x5d\x22\x62\x85\x4b\x6f\x4c\xf9\x2d\x94\xc1\x26\x6f\x72\xe0\x2f\x37\x10\x73\x30\xde\xb0\xb3\x1b\x08\x1c\xdc\x02\x82\x2a\x3e\xf9\xc0\x71\x75\x54\x73\xf4\x95\x5d\x23\xc3\x66\x12\x48\x76\x86\xcd\xc4\x2d\xed\x25\x36\x93\x80\xb3\x09\x4e\xd8\x0c\x72\x08\x67\xda\x85\x99\x74\x2f\x70\xe1\xdd\x00\x5b\x59\x6c\x2c\x68\x20\xf8\x4a\xbd\x48\x7b\x1f\xe9\x8d\xd0\x86\x10\x1e\x3b\xdd\x81\x61\x1b\xae\x61\x40\x33\x77\x65\x08\x9c\xae\x86\xdf\xbb\xca\x6e\x18\x64\x9d\xe0\xb2\x63\x6c\xaf\x56\xec\x04\x3b\x32\x51\x24\xf1\xb4\xa3\xb2\x4e\x7a\x56\xd1\x49\x5f\x1f\x46\x47\x7d\xe7\x93\x4e\x8b\xee\x82\x9f\x41\x8d\xaf\x9e\x01\x62\xcd\x11\xb1\x22\x44\x2c\x5f\xeb\xbf\xbd\xf2\x57\x3a\x13\xec\x93\x02\x88\x8d\xb2\xcf\xf2\x9b\xa7\xca\x32\xaa\xc0\x2d\x07\x82\xb0\x0c\x13\x6b\x26\x9f\x02\x4c\xac\x4b\xf9\x44\x71\x46\x7b\xd5\x44\xe4\xe5\x1d\x93\xa4\x44\x82\x3c\x28\xc6\x5e\x83\x22\x1f\x03\xcf\xa4\xf0\xa0\x99\x0a\xcf\x78\x00\x22\xcc\x05\x3d\x06\x80\x35\x02\x78\x10\x9b\xdd\x3a\x60\xc7\x01\x74\x99\x4a\x0d\x1a\x5c\xa4\x36\x5d\xc0\x1b\x4c\x3c\xb5\x51\x7c\x80\xfd\x63\xab\x33\xf0\x4c\xea\x36\x1b\x02\x6e\x54\xc7\x5d\x1b\xba\x31\xf6\x4f\xec\x5a\xcd\x3f\x76\x06\xb6\x1b\x25\x3d\x12\xa1\x18\xe9\x74\x5a\xa7\x0c\xfb\x6c\x27\xc3\x3e\x2b\x31\xec\x3c\x63\xd8\x28\x63\x58\x7f\x27\xc3\x9e\xa7\x3b\x5e\x49\x5b\x85\x6c\x03\xe4\xb8\x6b\x0f\xb8\x29\xad\x58\xea\xe4\xa0\x6b\xbb\xe4\xd8\xe9\xdb\x03\xe6\x92\xe3\x66\x3b\xcf\x02\xcd\xb6\xdd\x20\x50\x14\xe0\x70\x1d\x80\x10\xcd\xd0\xdd\x84\x46\x4b\xdf\xbb\x95\x11\x04\x36\x37\xe4\xd4\xb8\x12\x5d\x66\x69\x05\x01\x5c\xa3\x39\xb9\xd9\x5d\x7e\x4e\x6e\x80\x34\xff\x57\x43\x63\x67\x61\xd3\x30\xd6\x6b\x88\x02\x70\x83\x5e\x22\x0a\x42\x74\x77\xc9\x84\x8e\x4a\x2a\x0d\x81\x49\x62\xbf\x46\x06\xce\x81\xd5\x53\x26\x6c\xcb\xf0\x1a\x88\x37\x44\x52\xd1\xa6\xa0\xd7\x53\x89\x90\x3e\x5c\xa6\x0f\x59\xdf\xc9\x55\xf5\x7d\x35\xe9\xf5\xfc\xb9\x5a\xd8\xec\x72\x9b\xf7\x7d\xb4\xbb\x13\xec\xe3\x24\x70\x7a\x62\x78\xcf\x8e\xb1\x90\xf9\xb5\x34\x7d\x96\xa4\xcf\x4a\xe9\x97\x49\xfa\x65\x29\x3d\xc1\x29\xc9\x4d\xde\x8e\xb1\xb3\xa5\x53\x8d\xff\x32\xcc\xb3\xa4\xa1\x30\x7d\x9a\x65\x4f\x97\x5b\x3a\x59\xbb\x5c\x90\x54\x91\x0c\x50\x20\x5d\xee\x11\x4c\xa3\xb7\xde\x5b\x31\x45\x26\x56\x88\x25\xc1\xeb\x20\x02\x21\x1c\x18\x82\x41\x0c\x57\xfc\x78\xc0\x80\xe6\x03\x64\x74\x82\xaa\x14\xd4\xa6\x81\x9e\x18\x0f\xfe\x68\xf6\x67\x3e\xba\x4c\x3e\x92\xed\x22\x03\x03\x1a\xae\xfc\x9e\x98\x06\x34\xe0\x7a\x0d\x05\x63\x3f\x43\x5f\xbf\x0d\x63\x27\x91\xde\xe6\x89\xdc\x48\x84\xc6\xb7\x64\xea\x87\xd6\x50\x62\x68\xad\xbf\xe7\x4f\x5b\x5d\xdb\x6c\x75\xed\x7a\x02\xea\xd8\x86\x88\x67\x1d\xbe\x5a\xa9\x27\x05\x1f\x0e\x6c\x37\xa9\x29\x0d\x36\x2d\xc3\x23\x03\x26\xe4\x31\x73\x9d\x06\x83\x75\x8e\x28\x6e\xd6\x59\x23\xd8\x2b\x68\x43\xe7\x80\x9c\x60\x21\xe2\x48\xa3\xd9\xb6\x5d\x62\x3a\x4d\x1b\x51\x31\x43\x08\x41\x99\x3e\x1c\x3b\x4d\x7b\x40\x4c\x59\xa2\x91\x95\x28\xd3\x6b\xd7\x10\x04\xe9\xd0\x89\xd2\x7b\x50\xc7\xd8\x29\x35\x03\xe6\x03\xcc\x4f\x4a\xf9\xc7\xd8\x79\xc0\xb0\x5b\x27\x3e\xda\x9f\xab\x79\xee\xfd\xeb\x03\xa7\x6f\xa3\x53\xec\xf4\xed\x83\x24\x05\x7d\xc0\xd6\x61\xb7\xdd\x6c\xa2\xf7\xd8\x41\xbf\x61\xab\xdf\xec\x34\x1d\xf4\x02\xb7\x0f\x9a\x87\xe8\x2d\xee\x8a\x9f\xd7\xb8\x55\x7f\x5b\x7f\x8b\xde\xe0\xb7\xe2\x37\x5f\x60\xfc\x50\xa5\x00\xbc\xd2\x67\xef\x57\x40\x4d\xfc\x5e\x49\x81\xdb\x98\xd4\x3f\x4b\x40\x49\x4f\x5a\x73\xb8\x09\xc4\x46\xb6\x0e\x20\xb9\x65\x6b\xcd\xeb\xcf\xf7\x36\xca\xca\xd6\x8d\xc3\x08\x88\x89\xcb\x1a\xab\xf7\x48\xcc\xfc\xea\x5d\x9b\x61\x0b\x58\xdc\x48\x35\x44\xa8\x89\x89\x77\x7b\x14\x20\x8a\x7f\x07\xc4\x62\x10\x85\xf2\x61\x26\xf4\x06\xf1\x70\x29\xd4\x85\xef\x01\xb0\x9a\xcd\x66\xc7\x6e\x77\xea\xd4\xb4\x7a\x4e\xb7\xdf\xeb\x77\xeb\xa1\x69\xd9\x5d\xbb\xeb\x74\x0f\xeb\x1e\x3c\x78\x0f\xf3\x60\x05\x32\xda\x76\x28\xd5\x05\x86\x03\x1c\xb9\x80\x49\x20\xed\x56\xd7\xee\xb5\x7b\x02\x48\xab\xdf\xb1\xbb\xed\x43\x01\xc4\x69\xb7\xec\xbe\xdd\x16\x40\x3e\x40\x14\xc8\x92\xb6\xdc\xb3\x6b\x8a\x92\xf6\x61\xcf\x11\x35\x87\xa2\xe6\xb6\xd3\x6b\xb5\x44\xc9\xdf\xa0\x1a\x6f\xaf\x80\xe3\x74\xeb\x51\xc3\xe9\xa2\x8e\x6d\xd7\x01\x6b\x44\x10\x35\xc5\x53\xd4\x08\xa0\x4e\x83\xac\x43\xff\x78\x98\xfe\xf7\x43\xaa\x96\xbc\xda\xa9\x96\xbc\x2a\xa9\x25\x7e\xa6\x96\x78\x0f\xd4\xa3\xbf\xd7\xc5\xcb\xc9\x9b\x41\x26\x55\x08\x72\x0e\x5a\xd0\x25\x07\xaf\xcd\x17\x79\xf1\x8f\x85\xe2\x6f\x07\xa4\x4e\xea\xc4\x7d\x5d\x07\xa4\xf1\x42\xc3\xeb\x67\xad\x58\xa2\xe8\x60\xcb\xb6\x5b\x4e\xcb\xee\x0f\x9c\xa6\x75\xd8\xac\x13\xd7\xb1\xec\x4e\xa7\x5e\xa8\xb0\x69\xb5\x61\x43\x24\x6b\xb0\x7e\xd7\x34\x7d\x72\x20\xe6\x43\x28\x80\xb5\xed\x76\x67\x40\x0e\x24\xb0\x5c\x16\x02\x62\xca\xcf\x0f\x24\x70\x24\xe0\xe5\x90\x3e\xfd\x75\xdd\xfb\xb3\x3e\x6a\x3e\x27\xba\xf7\xf8\x3e\xdd\xfb\x95\x64\xfa\x1f\xa4\xee\x6d\x8b\xa9\xc6\xf2\x6a\x35\xf5\x70\x59\x04\x28\xd7\x92\x65\x70\x6a\x20\xca\x36\x7a\xdc\x0b\x9a\x40\x8d\x74\x0f\xd6\x4f\xf7\x0a\x5f\xf3\x63\xa1\x32\xb6\x84\x96\x98\x0c\xc8\xdf\x19\x07\xc4\xf2\xea\xc4\xf2\x4c\x22\x74\x1b\x31\xa8\x8a\xe0\x33\x0d\xf8\xf3\x4e\x56\xfb\xbc\x55\x03\x1e\xef\xd6\x80\x03\xf0\x0a\xfd\x71\xff\x0c\xaa\x98\x5d\x81\x31\x9d\x7e\x1d\x64\x13\xaa\x9b\x06\x37\xf1\x12\x86\x7e\xf8\x84\xa9\x03\x6d\x3c\x0e\x68\xe5\x1c\x99\xe1\xd7\x85\x07\x8e\xd3\xcd\x66\x46\x05\x09\x0e\x88\x4b\x54\x1c\x7e\xef\xa0\x63\xdb\x88\xe9\xd9\x97\x32\xbb\xa1\x9e\x0f\x9a\xb6\x5d\x9c\x10\x7f\x06\x2d\xcb\x69\xb5\xfa\x9d\xae\x53\x07\x1c\x7f\xa8\x7f\x04\x1c\xc2\x86\x63\x75\x9d\x6e\xbf\xdb\xed\xd5\x01\xc1\xef\xeb\x62\xfc\xc1\x86\xd5\x3e\xb4\xbb\x4e\x5b\xac\x8d\xf0\x6f\xf5\x8f\x80\x41\x08\xd1\xcf\xa0\x61\x1d\xf6\xfa\xbd\x6e\xbf\x5d\xe7\xa6\x63\x1d\x3a\x5d\xa7\xed\x74\xea\x62\x44\xb4\x5a\xed\x4e\xbb\xce\x44\x21\xcb\xee\x39\x87\xed\x4e\xab\xce\x1b\x56\xb3\xd9\x3f\x3c\x74\xda\x75\x62\x3a\x56\xdb\xee\x34\xdb\xcd\x9e\x28\x54\xa4\x84\xd2\x82\x3e\xa3\x4f\x0f\xeb\xc3\xcf\x05\x1d\x64\x8c\x76\xf6\xe8\x43\xfb\xb0\x1a\xe8\x96\x1e\xbd\x4f\x71\xff\x21\x89\x13\x2b\xd7\x2f\xd9\x14\xfe\x23\x6e\x58\x4e\xbb\xdf\x75\xd0\x3f\xb1\x63\xf5\xfa\xcd\x5e\x0f\x7d\x87\x1b\x56\xf3\xb0\xd9\xec\xa1\x9f\x70\xc3\x3a\x14\x73\x06\xfa\x05\x3b\xd6\x61\xaf\x79\xd8\x46\xbf\xe2\x5f\xea\x3f\xa1\x7f\xe0\x5f\xea\xff\x44\x84\xe0\x7f\xd6\xbf\x6b\xfc\x54\xff\x51\x73\xa2\x43\xfe\xba\xbc\x61\x85\x95\x3a\x23\xdb\x56\xfb\x3b\xe7\x58\x31\x89\xef\x5a\xb5\x03\x42\xea\x81\xf9\x6b\x9d\x37\xfe\x51\x67\xf0\x00\x10\x62\xfe\xda\xf8\x87\x98\x8e\x83\x06\x45\x1e\x06\xbf\x88\xa9\x8d\xc2\xc6\x77\xf5\x10\x1e\xfc\x84\x22\x9c\x0b\x17\xaf\xee\x99\xa1\x48\x06\xbf\xd4\x69\x1d\x38\x0d\x0a\x21\x8a\x71\x34\xd0\xc4\x95\x87\x42\x58\x3f\x15\xfa\x9b\xfb\xd6\x7b\xbb\x57\x6c\x50\x7c\x6c\x0f\x62\x29\xb3\x62\x14\x21\x5a\x25\x98\x18\xd9\x29\x99\x18\xf9\xb3\x8b\xf3\x00\x30\x82\x38\xf9\x36\xea\x3d\x23\x7f\xbb\x7e\xff\xe0\x2a\x2a\x85\x97\x26\x8b\xe6\x42\x75\x4f\x1e\x85\xe6\x0d\xeb\xcf\x11\xc7\x66\xa2\xc3\x17\xc4\x96\xa6\xe5\xd7\xb9\xe8\x60\xe9\x98\x20\x53\xff\x08\x4c\xb7\x7d\x84\xf2\x97\xdf\x99\xcb\x77\x8e\x01\x37\x59\x1d\xfc\x58\x0f\xcc\x7f\xd6\x05\x73\xe4\x69\xdf\xd5\x03\xf3\xa7\x52\xda\x2f\xf5\x00\x56\x49\xa0\x5d\xb6\x65\xb3\x7b\x6c\xbb\x5e\xde\x63\xdb\xf6\xf5\x1e\xdb\xb2\x3f\xf2\xfc\x4a\xdb\xbc\x4f\xf7\xd8\xc6\x71\x72\xaf\x71\x14\xb3\x18\xe0\xb0\xc2\x46\x2a\xe7\x8d\x63\x2e\xaf\xdc\x9e\x70\x21\xea\x4e\x30\x1f\xc8\xd1\xb4\xd6\x03\x0a\x97\x0f\x23\xe4\xb2\x36\x11\x33\xb5\x1a\xe0\x98\x20\x52\x7d\x6f\x31\x00\x2a\x2e\x30\x5c\x43\x74\xe7\x93\xa9\x76\xf5\x3c\x8b\xfd\x3a\x0d\x59\x22\x6d\x65\x24\x36\x6c\xa7\xb7\x1b\x95\x9b\x33\x9e\xc5\xa6\x09\x8e\xe9\x51\x72\x8b\x11\x07\x26\x3d\x39\x39\x71\xf6\x08\xe0\xc3\x70\x84\x18\x3c\xb6\x07\x01\x0e\x4d\xc7\xa5\x38\x4c\x2f\x76\x06\x6b\x24\x07\xdf\xdf\x56\xe9\x89\x3d\xa0\x38\x74\x65\xc5\x79\xa5\xeb\x35\x0a\x31\x05\x72\x9f\x32\xb4\x24\x06\x28\xc2\xa1\x25\xda\x8f\x62\xec\x21\xbf\xd4\x15\xaa\x66\x19\x88\x03\x8f\x73\xfb\xb2\xa2\xbb\xab\x86\x83\x28\x26\x89\xb7\xb8\xfc\xd2\xf9\xb1\x3d\xb0\xdd\x00\x4a\x67\x58\x30\x1c\xb2\x11\xe6\x80\xca\x92\xa6\xc9\x46\xd9\xb8\x09\xb5\xd3\xa5\xb1\xce\x00\x43\x82\xf8\x28\x09\x54\x51\x66\x25\xc9\x36\x88\xa2\x10\x49\x5f\x7e\xe9\xa5\xf7\x38\x23\x0f\xf2\x35\x54\xa2\x7a\xac\x70\x4f\xee\xa6\xd6\x6a\x80\xe1\xb1\x18\xd5\xa1\x74\x38\x12\x1d\x99\x66\x20\xef\x55\x7a\x98\x0c\x83\x11\xa2\xd8\x3e\xa2\xc7\xf1\x91\x69\x52\x64\x9a\x21\xf4\x87\xe1\x08\x33\xe0\x21\x3e\xa4\x39\xe6\xfe\x1a\xcd\xab\x59\x97\x1f\x13\xc1\xba\xfc\x44\xcc\xd2\xfc\x04\x93\x94\x75\x27\x55\x16\xbe\x0a\x2b\x4c\x06\x6f\xbd\xb7\xae\x49\xd6\x68\x59\x15\x73\x4a\x2e\x1b\x89\x16\x59\x04\x79\xb8\xe1\xa0\x08\xdb\x28\xc6\x32\x5e\x5b\xd2\x59\xe9\xa5\x52\x4f\xf0\x87\x92\x6b\x0c\x4f\x00\x19\x7a\x23\x08\x57\x2b\x10\x9b\x18\x04\x58\xac\xdc\xc4\x24\x07\x22\x13\x07\x07\xa2\x91\x10\xee\xe5\x97\x4d\x37\x3e\xe7\x12\x00\xf2\xe4\x4e\xd7\x6e\x28\x74\x0a\xc2\x13\x27\x9d\xc6\xe3\x03\x10\xca\x8b\xb0\x8b\xca\x48\x5a\x4b\xe5\xdb\x30\x35\x50\x1c\xe4\x13\x2d\x83\x2e\x5b\xa3\xab\x6d\xb4\x40\x61\x4e\x0d\x41\x09\x9d\x02\x77\x59\x1b\xc2\x23\x98\xa4\xef\x63\xc0\xb0\x24\x42\xad\xc6\x4e\x30\x93\x64\x0a\x30\xc5\x2c\x2d\x58\x2e\x05\x82\x13\x26\x87\x20\x83\x88\x1e\x33\x39\xfc\x18\x84\xeb\x22\x95\x4a\x35\xe8\x74\xba\xb7\xa2\x62\xe1\x2d\xf5\x25\xb4\x19\x06\x88\x8e\xd6\xe8\x16\x2b\xa7\x99\x79\xa0\xb6\x19\xbe\xb5\x22\x9f\x8e\x09\xba\xc4\xb7\xd6\xc2\x5b\xa2\x8b\x2a\x2e\xdb\x94\xd2\x64\xbd\x46\xd7\x95\x37\x5d\xd7\xe8\xe5\xa6\xdd\xaa\xd4\x31\x84\x7a\xc1\x30\xa0\x1b\x4a\x1d\x3c\x6e\x0e\x12\x79\x2b\x0f\x23\xe9\x71\x6b\xe0\xb8\x26\xd3\xc2\xe4\x48\x39\x61\xaf\xca\x7b\x95\xf2\xaa\xb7\xba\x52\xc1\x20\x2c\xc8\x10\x0a\xe5\xe5\x68\x2a\xe4\x47\x30\xc2\xc4\x0c\xea\x2c\x97\x1b\xe8\x46\x53\xcb\x3a\x36\x44\x67\xda\xbb\x63\x43\xf4\x4e\x7b\x6f\x42\xf4\xf5\x1e\x31\xa2\x78\x88\x09\xbd\x09\x88\xd6\x42\x8c\x81\x68\xb0\xec\x47\x1b\xa6\x52\x49\xde\x51\x07\x01\xe6\xc7\xd2\x35\x28\x95\x6d\xe6\x62\x65\xa4\xd6\xba\xc0\xc3\xc9\xe1\x89\x18\x28\xfb\x99\xfd\xbe\x97\x6e\x40\xa9\x5b\xee\xde\x89\xba\xfe\x9d\x1c\xe5\xa9\x1b\xf8\x07\x1e\x44\x1c\x17\x2e\x0b\x7b\x25\x92\x68\xc5\x79\x83\x98\x0e\x14\x34\x8a\x14\x8d\xa2\x11\x06\xc4\x8c\x60\xdd\xcb\x87\x72\xf1\xda\x40\x3d\xaf\x40\x81\xa8\xef\x80\x4f\x1a\xbc\x02\x7e\x23\x82\x07\x5e\xa6\xf5\xd4\x6a\xa1\xc5\xc8\x15\x61\xf2\xb8\x5f\x17\xe6\xcf\x8a\xae\xab\x54\x0f\x6b\x9d\xcf\x32\x45\x4a\xe1\x26\x1f\xfd\x70\x06\x82\xa4\xd8\x9b\xb7\x8e\xf4\x58\x12\x1c\xe4\xea\xa7\x8d\x68\xbe\xf3\x75\x82\xed\x01\x08\x4f\xf0\xcd\xc0\xb1\xdd\xf0\x04\x9f\x0d\x3a\xe2\xe7\xdd\xa0\xe9\x3a\xb0\x5e\xfc\xc8\x6d\xe8\xef\x0d\x0a\x0f\xb6\x7e\x59\x71\x84\xa5\x9a\xa0\x34\xfc\xcb\x68\x47\x53\x12\xf8\xf7\x36\x4b\xb5\x2b\x0b\x85\x2c\x51\xa1\x75\x9c\x62\x43\xeb\x58\x21\x24\x18\xac\x8e\x9b\x10\xc9\x29\x85\xba\x74\xad\x76\x5f\x2b\x46\x6d\xde\x6f\x59\x95\x59\xf4\xbc\xb4\xe6\x26\x34\x9d\x35\x3a\xc5\x1b\xaa\xf2\x35\xe2\xf8\x0a\x31\xfc\x3c\xef\xbf\x00\x04\x2a\x57\x8e\x8f\x3c\xa8\x55\xa4\x71\x8b\xa7\xe6\x55\x35\x5f\x7a\x62\xbe\x84\xd1\x90\x8e\x30\x01\xc1\x90\x8e\xe4\xe6\xb5\x54\xf1\x7c\xcc\x41\x04\xd1\x18\xfb\x42\x4d\x98\x62\x7f\xe8\x8c\xd0\x1c\x33\x10\xa1\x31\x9a\xc2\xbd\xa2\x23\xe0\xb9\x98\x60\xe6\xf8\x1c\x8c\xd1\x14\xcd\x21\x9a\xe3\x97\x20\x6f\xdd\xf8\x60\x0e\xeb\x73\x99\x93\x6b\x24\x13\x3c\x4f\x9d\x6f\xce\x87\xf6\xe8\x18\x8f\x8f\xe0\xdc\x8a\xe6\x74\xca\x01\x44\x8d\xc6\x44\x96\x3c\x9a\x0f\x27\x0d\x67\x74\x32\x15\x99\xcb\x70\x99\x64\x09\x00\xcb\xc4\x7e\x5b\x61\x30\x31\x1d\xbd\x65\x78\x22\x9b\x06\x96\x78\x21\x5a\x37\x1c\x41\xeb\xc6\xc6\xf4\xc4\x1e\xcc\x87\xb4\xe1\x8c\xdc\x31\x5a\x5a\x37\x0e\xa6\xc7\x13\x91\x32\x72\xa7\x1b\x64\x19\x1f\x63\x10\x62\x41\x1c\x58\xab\x85\xc7\x78\x5a\xab\x2d\x86\x31\x98\xa3\x10\xd9\x68\x02\x47\xca\x6b\x45\xa0\xeb\x17\x8b\x4c\x71\x53\x6e\x87\xb1\x7e\xd3\x27\xc9\xda\x58\x5b\x03\x82\x2b\xfc\xa4\xf1\x01\x77\x2f\xa4\x87\x35\xe8\x92\x35\x0a\xac\x49\xb8\xf0\x68\x50\xc5\x46\x9b\x10\x79\x15\x44\x32\x20\xee\x05\x18\x4a\xb5\x8f\x0c\x9d\xd1\x48\xc2\xe6\x02\x36\x9f\x33\x12\xcd\x43\x7f\x12\x3d\x0c\x3e\xdb\x06\xbf\xec\x1e\x7a\x70\x01\xf2\x08\x8c\xee\x85\xd0\xdf\x03\xa9\x24\x04\x6b\xf4\x61\x43\xb8\x67\xfa\x80\xd2\xf7\x26\x50\x53\x59\x65\xae\x12\xee\xd2\xae\x21\x38\x6e\x26\xc2\xd9\x64\xd2\x03\x29\xb2\x11\x91\x9a\x0c\x3f\xc1\x8e\x9e\x15\x34\x9c\x11\x0a\x1a\x8e\xc8\x4e\xa6\x0f\x0c\x82\x86\x03\xeb\x1c\x85\xb8\xe8\xa2\xc4\xc3\xf2\x93\x70\x84\x42\x94\x2f\x14\x3d\x13\xa8\x64\xd3\x19\xa1\xd0\x14\x90\x1a\x1e\xac\x03\xda\x08\xe1\x7a\x8d\xde\x6f\x34\x24\x5b\x2b\x5f\x26\x8d\x47\x13\x68\x45\x21\xe3\x42\x91\xd7\xa6\x50\xe9\x19\x02\x34\xeb\xe0\x03\x20\xc8\xea\x75\x60\x43\x3e\x34\x3b\x50\x13\x86\x99\xce\xd4\x70\x0e\x5a\x10\xc2\x35\xfa\x6d\x5b\x85\x1b\xa0\x5b\x56\xa7\xbe\x00\x64\x27\xb4\x17\x0f\xd1\x5d\xab\xb5\xb5\x50\x6a\x9c\x05\x6d\x2d\x2c\x69\x6b\x2c\x2d\xb6\x59\x26\x48\x54\xa7\x82\x7a\xb6\x01\x92\xe7\xfd\x71\x1f\xe4\x72\xd1\xb4\x82\xbd\x7c\x0d\xf7\xb6\xba\xb1\x79\x53\x29\x0e\x64\x73\x91\x57\xa9\xa2\x87\x62\x69\xa4\xab\xe8\xe1\x08\xc2\x41\xa3\x41\x5d\xcf\xc4\x6c\xaf\xd8\x92\xa0\xac\x8e\xa7\xc8\x69\x5f\x48\xff\xe1\x29\x9f\x1d\xd0\x35\x7a\x5d\x89\x61\xa9\x33\x32\xcf\x3b\x1b\xe8\xd1\x4d\xf4\x56\xab\xc4\xc3\x0e\x83\x7b\x9b\xa4\xae\x46\x50\xff\x26\xbd\x3e\x06\xbc\x8c\x87\xad\x0e\x5c\xa3\x37\x05\x61\x91\x85\xdb\x41\x15\xcc\x23\xa8\x99\xd6\xe8\x99\x92\x05\x92\x6c\x29\x76\x59\x61\x82\x3a\x6a\x34\x68\xe6\x37\x87\x8b\x45\x0b\x11\x42\x36\x9d\x2d\x1a\x0d\x2e\x73\xd9\xb0\xd1\xf0\x46\x38\x28\x44\x94\x45\x3f\xfc\xf7\x70\x73\xbe\x10\xf8\x9b\xb8\x39\xaf\x40\xe3\xe6\x3f\x4a\x8d\xcd\x57\xfb\xd9\xaa\x3a\xd0\x48\xcb\xe0\x11\x6b\x34\x8e\x60\x20\x96\xf6\x64\xc8\x87\x6c\x34\xd2\xa0\xbd\x2a\x41\x93\xaa\x75\x2e\x7f\x13\x46\x4c\x16\xb2\xb6\xf4\xc8\xef\x8d\xb4\x55\xba\xda\x74\x08\xa0\x6c\x09\x3b\x82\x80\x0b\x55\x5b\xb4\x21\x82\xc7\xf6\x6a\x65\xef\x63\xa1\x54\x20\x79\x9a\x0d\x22\x4c\x91\x87\xc3\xac\x39\x32\x4c\xb6\xcc\x1d\x78\x49\x48\xf3\xf5\x1a\x7d\xbf\x21\xea\xb2\xd5\x89\x44\x25\x9d\x30\x06\x29\x9e\x2e\x83\x0d\x81\x85\xc2\x68\x60\xbb\x26\x87\x47\x62\xc5\xa7\x24\x3d\xf3\x82\x49\xb8\x00\xb0\x1e\x36\x1a\x2b\xb9\x25\x32\x0c\x4d\x2e\x26\x44\xf1\x23\x18\x4d\xbd\x89\x1f\x9c\xd9\x03\x90\x35\xfa\x78\xbf\xe0\x68\x38\x82\x36\x15\xa3\x92\x0a\x49\x20\x96\x29\x44\x29\x13\x20\x34\x71\x69\x2c\x66\x45\x44\xaf\x4b\x3d\x4c\x2d\x30\x55\xc9\x7c\x01\xf5\x33\x2e\x6d\xc5\xef\x83\x9c\xb3\xb5\xe5\x4a\x1e\xfc\xaa\xe1\x20\x86\x7f\x00\x04\xfd\x0e\xcb\xcc\x60\x9a\x5c\xf4\x53\x5a\x96\xa6\x43\x55\x0c\xa9\xf2\x9a\x4e\x0d\xdd\x61\x38\x92\x3d\xaa\x8d\xb9\x40\x5b\x40\xfc\x5e\xb8\x36\xad\x90\x92\xea\xef\xa7\x8a\xd8\x12\x3f\x83\xdc\x31\xe4\x7a\x2f\xdd\x9c\xa4\x11\x19\x57\xde\xfe\x8c\xb5\x1d\x4c\x59\xe8\x03\x9d\xcd\x2b\x4b\x7a\xe5\x92\x6f\xc8\xb4\xb2\xa0\x76\x21\xd9\x8b\xc6\x2a\x3a\x71\x55\xb9\xa0\x0c\x30\xac\xbc\x9f\x4c\xb5\x3d\x58\x16\x46\x95\x77\x60\xf5\x3b\xcc\x64\x57\x9d\x73\xbd\xe0\x15\xf5\xa4\xae\xb5\xfb\x52\xb3\x74\xcb\x59\xd9\xd0\x2b\xed\xe6\x32\x8d\x78\x38\x63\x5e\xe5\x0d\xe0\x53\xed\x06\x6e\xaa\x12\xfe\xc0\x08\x99\x2c\xbc\xe0\x05\xf5\xc6\x61\x40\x2b\x5b\xf5\xbe\xe2\xbb\xb3\x71\xc8\x2b\x91\xf9\xad\xaa\x30\x8f\xd9\x8c\x54\xc2\xd6\x6e\x35\x2f\xbc\x9b\xaa\x12\x2f\xb4\x12\xc4\xab\xa4\xd2\x5b\xbd\xc8\x84\x56\x17\x7a\xad\x17\x62\xb3\xca\x7d\x76\xed\x0e\xf3\x82\x56\x42\xd1\x6e\x31\x2f\x3d\xca\x2a\xdb\xe4\x6b\x65\x08\x5b\xc4\xfc\xbe\x3d\xfd\xdf\x63\x2f\xe0\xd4\xaf\x2c\xa6\x5d\xeb\x66\xca\x9b\xf8\xce\xe3\x85\x68\x5c\xdd\xfa\x57\x5a\x91\x79\x3c\x9d\x56\x57\xa6\xdd\xc1\x8e\xe2\x4a\x1e\xfa\xa8\x75\x2f\x1d\x7f\xad\x6c\xff\xd7\x62\x99\xd7\xc1\x98\x25\x3e\xae\x37\xcb\x3e\x2b\x96\x3d\xe3\xa4\xf2\xf2\xf8\xb9\x56\x4c\xda\xc2\x87\x51\x65\x03\x7e\xd6\x2e\x89\x7b\x8c\xca\xe0\x2a\x15\xc5\x96\x79\xb1\x3f\x68\x65\x85\x9f\x1e\x77\x60\x62\xcc\x39\x5f\xba\x07\x07\xd7\xd7\xd7\xd6\x75\xcb\x0a\xd9\xec\xc0\x39\x3c\x3c\x3c\xb8\x99\xf3\x85\x6f\x20\x8a\xef\xa2\xab\x99\x5b\x51\xaa\x69\xdb\xf6\x41\x74\x35\x33\x90\x2c\xea\x06\xe8\xc6\xa7\xc1\xd7\xaa\xa2\x0a\xa0\xc8\x35\xd0\xcd\xc2\xaf\x2a\xf2\xcb\xe9\x1b\x51\xac\x7f\x10\x78\x0b\x12\x2d\x3d\xd1\xfa\x9b\x85\x1f\x44\x5b\xab\x96\xb9\x07\xc6\x1a\x85\x55\xf1\x0d\x4c\x6c\x18\x48\xa8\x1b\xd2\xf5\xeb\xbb\x29\x30\x5c\x23\xdf\x1b\x3e\xc1\x76\xad\x66\x48\x08\xc6\xbe\xdc\x9b\x23\x6a\xe3\x53\xee\xc0\x40\x69\x8a\x9e\xa6\x30\xd3\x81\x10\xd1\xf2\x25\x07\x0e\x07\x77\x12\x4f\x97\x0e\xf9\x08\xf9\xe1\xd8\xf3\x5d\xb2\x16\x6b\x62\xaf\x02\xa1\x30\x3f\xdf\x03\xdc\x92\xa5\x07\x0f\xda\x5a\x55\xc7\x79\xd7\x01\x61\x2f\x2a\xe3\xac\xbf\x3d\x03\xc4\x92\x88\x20\xa2\xe0\xc2\xf5\xba\xea\x80\xb4\xb4\x51\xc3\xf1\x26\xe4\xd4\x14\x31\xeb\x83\x8f\x1f\x5e\x67\x34\xc3\xf2\x18\x89\x5b\x69\xb8\xf7\xa4\xfe\x42\x61\x51\x66\x50\x0e\x04\x4f\xa0\xbb\x89\x33\x43\x04\xae\xd7\x10\x70\xa8\x4d\xd3\x51\xea\x49\x20\xde\x7e\xb8\x41\x06\xd1\x36\xa3\xea\xdf\x63\xc2\x6e\xcf\x88\x2f\x27\x42\x20\xe0\xe7\xa0\xfd\xac\xec\x50\x9d\x04\x8d\x77\x55\xe1\x3f\xa8\x8a\x67\x72\xfb\x60\xbd\x46\xd3\x87\xed\x92\x4b\x08\x32\xd4\x38\x89\xd4\x87\xf3\x4a\x24\x32\x05\x27\xd3\x9f\xb4\x86\x4c\x34\xc7\xed\x85\xce\xc3\xa4\xd4\x99\x1b\x5d\x89\x49\xe1\x35\x71\x7a\x1d\x90\x1b\xa5\x96\x26\xef\xea\xb2\x0e\x4e\xce\xc5\x2f\x2e\x26\x1e\xf7\x2e\x2e\x30\x5f\x4f\x34\x17\x13\x77\x9a\x7f\x09\x77\x82\xbc\xe5\x92\x04\x93\xe7\x73\xea\x4f\xb6\xfb\xb0\x56\x80\x2d\x2a\xe3\x62\x24\xbe\x90\x89\x86\x84\xf2\x85\x9d\xe5\xed\x72\x6a\xbd\x05\x14\x5c\xa3\x42\x07\xdd\x8b\xcb\x06\xc7\xa0\x72\x07\x3f\x0e\x44\xca\x11\x6a\x1f\x10\x1b\xdf\x69\xfe\xa3\x17\xa9\xa5\x85\x58\x1f\xc0\x42\x04\x31\xbb\x78\xdc\x18\xa6\x2b\xca\xe8\xd8\x3f\x32\xcd\x08\x02\x0f\xf3\x61\x34\x82\x03\xe0\xe5\x1d\x12\x0e\xa3\x11\x0a\x86\xd1\x08\x7b\xd0\x65\xe2\x57\x30\x8e\x60\x0f\x91\xa3\xf6\x1c\x8f\x22\x79\xf4\x98\x43\xa8\xd5\x00\x55\x9f\xe4\x5b\xd3\x57\x3a\x62\xc8\x53\xe2\x41\xdd\xf5\x18\xe3\x3b\xc1\xdd\x19\x6e\xf3\x0c\xb7\xc2\x1e\xe7\x54\xd5\x16\x61\xfb\x28\x3a\x9e\xaa\x0a\xe3\xac\xc2\x85\xa8\xd0\xc7\x4b\xd3\x53\x9b\x4e\x31\x8a\xb3\x56\xa0\x08\x71\x88\xfc\x27\x34\x78\x32\x1e\x48\xcc\x62\x77\x3c\xf4\x47\x38\xd6\x41\xce\x53\x90\xe3\xa1\x06\x47\x35\x14\x45\x28\x84\x82\x34\x92\x14\x3a\x6c\x45\x21\x09\x4d\x3a\x70\xdf\x46\xa4\x6a\xb4\xc7\x43\x81\xf7\x08\x63\x1c\xa7\x44\x8b\x35\xa2\xdd\x3e\xc8\xc0\x40\x50\x72\x56\x79\x2e\x56\x1c\xab\xb5\x5a\x29\x21\xf5\x4f\xfd\x89\x92\xeb\xd5\x8a\x64\x42\xb7\x56\x23\xf2\x35\xcf\xd5\x44\xc3\x65\x11\x27\x2b\xe2\xb7\xbe\x74\x12\x95\x4e\x5a\x2a\x58\x01\x87\xab\xd5\x0c\x10\x28\x72\x9e\x87\x8b\x65\xcc\xc9\xe4\x4c\x14\x05\x44\xda\x07\xc0\xaa\x4f\x0a\xd7\xec\xb4\x3a\x92\xab\x9a\xd1\xd2\xa7\x1c\x1c\xfc\x6b\xf5\x25\x32\x0f\xb6\xdd\xab\xb3\xc6\xbe\x17\x45\x6f\x68\xc4\x57\x2b\xe9\xe8\x5c\x8c\x95\xac\xa8\x78\x4b\x3c\xf5\x07\xe1\x84\x64\x02\x48\x8a\x2c\x7c\xa1\x9c\x6a\x3d\xe3\x9c\xd1\xcb\x98\x13\x60\x48\x60\x06\x54\x91\x17\x32\x28\x37\xe5\x0d\x87\x6b\xb9\xb7\xab\x4e\x0c\x53\x3e\x4e\x8f\x02\x99\xe5\x4d\x26\x80\x0f\x83\x11\x2c\xdc\x8e\x7b\x0c\x04\x46\x16\xe1\x15\x29\x03\x79\x97\x46\x1d\xe0\xe4\x86\x3f\x0f\x03\xb1\x00\xc2\x86\xa1\xdf\x65\x4b\x0a\xd0\x20\x20\xec\xd5\xf9\xe9\x9b\x42\xf6\xb3\x34\x5b\x08\xc6\x33\x7a\xe9\xd3\x20\xbd\xef\xa2\xe4\xce\xdb\x70\x22\xe3\x95\xa4\x62\x37\xf1\xac\xae\x9d\x37\x25\x00\x96\x8c\x5c\xd1\x30\x8e\xb6\x02\x29\x08\x51\x9e\xc5\x9e\xd1\x4a\x4c\x29\x8b\xb8\xac\x45\xab\xe0\x39\x28\xcc\x9a\x79\xc6\x69\xf1\x56\x44\x0e\x67\x8f\x08\x36\x57\xf4\xaa\xc4\xf9\x43\x69\xaa\xdc\x85\xa4\x72\x37\x2f\xf2\xc0\xbe\x93\x18\x3d\x69\xb4\xd2\xa0\xbe\xff\x93\x50\xed\x2a\xa8\x2f\xf5\x39\xd0\x9b\x14\x67\x3b\x8d\x5f\x33\xb5\x93\xc0\x63\x3b\x8b\xdf\xa2\xb2\xe4\xf6\x65\x6a\x70\x29\x79\xdd\x8a\x2a\x38\x5b\x67\x7f\xeb\xb7\x90\x06\xc0\x78\x62\xc8\x8d\x71\x45\x42\x77\x53\xc9\xac\x46\x60\x8f\x4b\x75\xb7\x80\x83\x18\xaf\x63\x02\x38\x72\xfe\x02\x1e\xe3\x30\xe0\x1e\xd5\x23\xbd\x94\xe7\xc8\x32\x2a\x27\xd8\x4e\x26\xc7\xdf\xc4\xcc\xf2\x42\x0a\xe6\x5c\x80\xbd\xdd\x38\xa7\x78\x9d\xa4\x20\xfd\xc0\x2a\xdd\x49\x64\xc4\xf7\x38\x99\x9c\x7b\x6c\x46\xf8\x9e\x3a\x9b\x51\x21\x5c\x56\xab\x7e\x8d\xa5\xf1\x0a\x52\x99\xfa\x3e\x8c\xa8\x02\x21\xd8\x0e\x0a\x39\x2a\xe7\x11\xc5\xf3\x70\x9d\xb3\xcc\xeb\x12\x1e\x59\xe5\xe9\x31\x26\x7e\xb1\xf7\x02\x07\x32\x12\x68\x01\x88\xae\x31\x49\x08\x59\x38\xce\x17\x98\xae\xb5\x1a\xde\xdc\xab\x98\x5f\x5c\x84\x81\x3c\x35\xd2\x44\x11\x0a\xb0\x9d\xee\xe7\x65\x92\x28\x38\x0e\xa5\xd1\x11\x93\xfe\xb9\x10\xb1\x04\x73\xd6\x6a\x4c\xfe\xee\x63\xac\x12\x56\x2b\x26\x95\x3f\x99\x20\x1e\x06\x7c\x68\x9a\x74\x84\x99\x32\x50\x54\x3c\x25\xe3\x46\x09\x01\x4d\x02\xc2\x80\x02\x81\x98\xe5\x27\x29\x88\x59\x63\x6f\xc9\x63\x46\xe0\x91\x69\xd2\x41\x8a\x03\xa6\x6e\x21\x36\xc7\x45\x18\xe8\x8d\xfd\xa1\x78\xf6\xfd\xdb\xc6\x7d\x71\x59\x0f\x1c\xbc\x75\xb3\xd5\x46\x46\x93\xa2\x4a\x92\x93\x06\xf9\x58\xba\xa4\x47\x9e\x3c\x5b\x8b\xb3\xcd\xc2\x31\xb6\xd1\x14\xc7\x29\x75\xc6\x72\x62\x1f\x43\x3a\x05\x20\xc2\xf1\x70\x3c\x82\xb2\x36\x9c\x12\xa6\x56\x53\x4a\x32\x4e\x09\x03\x75\x0e\xae\x22\x4b\xa4\xc8\x12\xe5\x64\x89\x32\xb2\x24\x76\xf1\x93\xc9\x3d\x9f\x60\x3f\xff\x08\x33\x88\xae\x42\x3a\x01\x51\x72\x38\xcb\x93\x30\x50\x1b\x60\x14\xc6\xc8\x17\x03\x22\xc2\x77\xe2\xc5\x4d\xd2\x04\xe6\xae\x6a\x00\x52\x81\x2e\x38\x4a\x2b\x73\x7d\x94\x54\xe5\xb2\x35\x8a\x07\xb1\x12\x41\x11\x74\x33\x72\xe2\x61\x34\x5a\x57\xde\xb4\x49\xf9\x9d\x58\x51\x18\xb3\xb1\xa2\x05\x7e\x81\x5e\x60\x22\xf9\x3f\xa5\x56\x12\xde\x45\xdd\xd8\xd6\x99\x3e\x03\xfa\xaa\xc8\x06\x33\x65\xff\x1a\x58\xcf\xe3\x88\x87\x0b\x09\xb7\x2a\x30\x17\x1d\xa8\x50\x18\x54\x7a\x8a\x74\x81\xf8\x64\x52\x5a\x0a\x8b\x6f\x81\x21\x7f\x0c\x88\xd8\x00\x50\x8b\x06\x94\xab\x74\x8e\x98\x75\x19\x5f\x5e\xfa\x24\x92\x0c\x1c\x8c\x89\xef\x5d\xfa\xa2\x76\x6b\x42\xb8\x47\x7d\xcc\x92\x07\xe8\x16\x3f\xdc\x77\xd0\xbe\x58\xfd\x13\x79\x0f\x58\xac\xdc\x54\x0e\x85\x6b\x23\x0e\x54\xbc\x91\x49\x1e\x91\x36\xd7\xd2\x80\x11\x06\x8b\x30\x8e\x08\x09\x38\x61\x06\x0d\xb2\xbc\xf2\xfa\x79\xb5\x02\xbf\xe1\xbb\xbc\xac\x6b\xc8\xe7\xf0\x8a\x30\x03\xc9\x47\x9f\x78\x57\x24\x4d\x8e\xb9\x91\x5a\xdd\x7f\x8f\x87\x42\x7c\x8e\x72\xf9\xf9\x51\x0f\xea\x35\x63\x61\xbc\x8c\x32\x35\x4a\x4d\x7b\x11\xe6\xfa\x4d\xa3\xc2\x9a\xf3\x23\x18\x0e\xb7\x61\x39\x1a\xa1\xef\xe1\xfa\xa3\x36\xfb\xfd\xbc\x6d\x35\xf8\x11\x45\x72\x35\x54\x98\x15\xf2\x7e\xcd\x88\x45\xe4\x2e\x4b\x2c\x2d\xed\xf3\x53\x01\x1d\x77\xb4\xf5\xb8\x28\x31\xab\x64\xd2\x1e\x22\xfd\x58\x99\x5e\xf1\x21\x1d\x21\x1f\x67\xd1\x8b\xc6\x38\x18\x52\xfd\xd4\xc0\x87\x68\x8a\xed\xa3\xa9\x5c\x5b\x4d\xa1\x34\xa5\x98\xca\x85\x8a\x87\x13\x61\x1e\xa2\x30\x17\xe3\xd3\xe4\x5c\xc8\x48\x53\x44\x6f\x86\xa2\xb8\xb6\xd2\xc8\x1e\x21\x1a\x0f\xa7\x62\x7d\xb5\x57\xa0\x6c\x50\xec\x05\x19\x07\x4f\x10\xa9\xbc\xc2\xdc\x4a\xa7\xf1\x83\xe9\x34\x1c\x21\x2a\xfe\x84\xd8\x3e\x0a\x25\x89\x42\xa8\x2f\x36\xa5\x59\x6f\x9c\x13\xc8\xc7\xf6\x91\x2f\x97\x89\xbe\x58\x26\x46\x43\x5f\x59\x2c\x26\x7a\x8a\xa2\x88\x87\xf2\xd6\x22\x5f\x50\x04\xd1\x24\x90\x35\xdc\x68\x2a\x85\x6b\xa4\xa2\x74\x3c\xac\x6d\xd3\x6f\xca\x03\x8a\x03\x22\xec\xe5\xa6\xbc\x81\x32\xb5\x49\x9a\x1a\xa9\xa6\x86\xd8\x53\x4d\xad\xea\x74\x1f\x79\xb0\x56\x4b\x04\x65\x78\x6f\x67\x8a\xaf\xdc\x8d\x43\xca\xdc\x55\xc4\x52\x0f\x4e\x28\xef\x03\xd0\x3f\x08\x80\x10\x8d\xc5\x64\x2e\x53\x48\x21\xe6\x1d\x81\x77\xcb\xa1\x69\x8e\x47\x98\xac\x21\x5a\xa6\xd7\x3d\x31\x1f\x5c\xb9\x0b\xb1\x0e\xd1\x11\x10\xda\x80\x46\xb2\xbd\x2d\x84\x66\x45\x13\xf6\x6c\xec\xb3\x75\x4e\x7c\x2f\x5f\xe0\x17\x8d\xb3\x04\x15\xf5\x57\xbf\xf8\x3a\xc6\xf6\xd1\x58\xda\x27\x8d\x95\x7c\x9f\x62\x3a\x1c\x8f\xd0\x1c\x87\xe2\x27\xb7\xa9\x42\xcb\x74\x90\x4d\xd1\xb4\x56\x9b\xe6\x24\x1f\x23\x0a\xd1\x2d\x5e\xa6\x05\x67\x72\xb6\xd6\xaa\xb9\x85\xe8\x12\x47\xe5\xb4\xbd\x00\x4c\xd1\x1c\xcd\xd0\x25\xf2\x8b\x79\x13\x88\x96\x88\xe7\x6d\xbb\x40\xd7\xe8\x25\xb6\xd1\x0d\xb6\x8f\x5e\x1e\xdf\x1e\x99\xe6\x4b\xa1\x16\x5c\xe0\xd9\xf0\xe5\x48\x69\x59\x2f\x4f\xf0\x4d\xad\x06\x6e\xf0\x4b\xd3\x81\x47\xfb\xe0\x1a\x5f\x0e\x6f\x04\x8f\x98\xe6\xcd\xf1\xed\x11\x3c\xba\x48\xf6\xcb\xae\x57\x2b\xb9\xea\x49\xec\xaa\x80\x22\xd6\x47\x10\x21\x0a\xa1\x75\x21\x25\x39\x8e\x51\x64\x5d\x90\x1b\xca\xc5\x6c\xbf\x46\x4a\xbc\x57\x9c\xe2\xc9\x2f\x55\x0f\xca\x32\xab\x95\xde\x9d\xd6\xc2\x5b\x82\x39\xdc\xe0\x39\x01\xf8\x3e\x68\x37\x94\x3f\x0c\x98\xd0\xeb\xb7\x04\x0a\x55\xdc\x29\xf0\x02\x30\xe1\xbc\x94\xe1\x04\x7c\x90\x0f\x8e\x2d\xc6\x57\x20\x80\x6e\x90\xac\x55\x95\x83\x27\xa4\x6c\x09\xb8\xba\x86\x20\xa3\xbb\xa7\xc7\xe5\x61\xba\xa0\x86\x2e\x03\x21\x44\x41\xad\x46\x07\x81\x25\xcf\xbd\x00\x85\x56\xc8\x26\x02\x11\x97\xae\x91\x4c\x73\x2b\x4d\x3d\xca\x22\x84\x64\xcf\x41\x2e\x4e\x28\x66\xb9\xe5\x45\xe6\xeb\x40\x88\x2f\xe4\xe9\xb7\x0f\x84\xae\x65\x1f\x45\x52\xcd\x8e\x32\x49\x13\x23\x5f\x6e\x15\xa1\x31\x66\xe2\x67\x8a\xfd\x7c\x97\xcc\x4b\x77\x9a\xd2\xfd\x31\x34\xc1\xf6\xd1\x44\xea\xa2\x13\x08\x62\xec\x0f\x27\xa3\xd5\x6a\x3c\x9c\x48\x59\x3b\x1f\x4e\xb2\x1d\xaf\xa3\xe8\x38\x90\x15\x49\x18\xa2\x86\xa2\xf0\xf1\x36\xfa\x4e\x92\x64\x47\x00\xd5\xb4\xe9\xc9\x91\x3b\xc9\xb7\x30\x0a\xa7\xec\xd2\x14\x65\xc8\xc5\xc4\x41\xf3\xeb\x18\x1e\xa6\xc3\x70\x74\xd4\x68\x84\xd2\xb6\x05\x04\xf2\x5d\xce\x96\xb5\x5a\xfb\x5f\xc1\xd6\x45\x96\x90\x9f\xde\xd6\xc5\x76\x80\x3c\x49\xe5\x8c\x79\xb8\xf4\x08\x12\x85\xac\xa8\x37\x64\xba\x0a\xd7\x23\x17\x3d\xe1\xb5\x1a\x1b\x10\xc0\x73\xe9\xc1\xf2\x19\xd8\xdd\xe7\x8d\x7d\xb6\x26\xf2\x26\xdf\xad\x7e\xd5\xa4\x40\x8e\x20\xef\x7e\x5a\xec\x6e\x35\x73\x06\x72\xe6\x2c\xec\xd3\xb2\x8d\xa9\x53\x10\x43\xfb\x38\x4e\x25\x61\x2c\x25\xa1\x9c\x4e\xc7\x92\x5a\x52\x36\x79\x70\xcf\x57\xa6\x4a\x1c\xae\x0b\xbd\x4a\x4b\xbd\x9a\xf2\xf9\x1a\x09\x59\xb9\x79\x1f\x2d\x8f\xb4\x68\x67\xfc\xa1\xa7\xa9\x61\x9a\x46\xb4\x95\xbb\xfb\xa5\x68\x97\x6b\x24\x56\xfc\x15\x51\x5a\xb7\xcc\x54\x82\x7b\xf4\xce\x2a\x4d\x58\xf0\x8e\x0c\x4d\x93\xab\x8a\xd7\x32\x44\x9b\x80\xff\x20\xb6\xb4\x75\xae\xe4\x72\x46\xe7\x39\x5b\x2a\xa6\xa4\xd8\x46\x61\x66\x39\x7c\x44\xe5\x68\x4c\xe2\xbd\x79\x72\x82\x97\x96\xf0\x99\xc5\xda\x5a\xdf\x9b\x42\xa2\x11\x9b\x2d\xb5\x77\xb6\xc7\x34\x89\x6a\x07\x59\x2c\x8b\xf1\x7b\xd5\x57\xfb\x6a\x77\x28\x9c\x48\xc7\x40\xe2\xeb\x87\xc9\x22\x5b\x93\x41\xf2\x46\x93\x69\xb2\x82\xa9\x0b\x1f\xb2\x51\x62\xc8\x94\x9d\x04\x78\x52\x6b\xf1\x20\xa0\x38\x54\x57\x4a\x92\x59\x94\x22\x9a\x0f\x02\x0f\x85\xa5\x01\xe5\x71\xce\xdc\x0a\x03\x21\x75\x1e\x29\x28\x56\xb2\xa1\x3d\x6e\x16\xe4\xbe\x6a\x5e\x76\x06\x98\x1c\x5c\x06\x85\xad\xd8\xb7\x67\x80\x25\x27\x90\x49\x01\x21\xef\x0b\x9b\xb5\x2c\x63\xf7\x9c\xd4\xa9\x31\xd2\x80\x3d\xe8\x38\x54\x5b\x8e\xeb\x35\x3f\xfa\xec\xb3\x0a\x8e\x3c\xb3\x71\x2b\x8d\x9d\x37\x91\xd3\xb6\xd8\x4b\x1c\x25\x54\xd5\xca\xf0\xb2\x7b\xe9\xec\xf6\xc0\x46\x24\x77\x46\x8b\x34\x2e\x15\x42\xac\xd8\xd6\x6f\x8d\x96\x3c\xb6\x2d\xa3\x21\xef\x3d\xae\xd7\xee\x43\xa9\xf2\x90\x76\xf0\x87\xb4\xa3\x0a\x13\x2e\x0f\x90\x19\xe2\x32\xae\x20\xbf\xf5\xc9\x86\x06\xb3\xc5\x50\xfc\xc4\x19\x54\xf0\xe1\x03\xf8\x46\x9d\xa8\x28\x4a\x69\xee\x0e\xb7\x31\xcf\x16\x74\x4a\xfd\x13\xdc\xd3\x3f\xc1\x60\x57\xdd\xae\x96\x19\xe5\xe7\x36\x80\xa0\x60\x93\x45\xaa\x91\xd8\x0a\x41\xee\x60\xae\xa1\x7c\x4a\x79\xc5\x30\x5c\x06\xa1\x7b\x09\x34\xf9\x80\x08\x5c\xa3\x65\xf2\x5d\x75\x5f\x7e\x8b\x2e\xd0\xf6\x18\x65\xd0\xdf\xfb\x89\xfe\xe7\x87\x44\xb1\x2e\x37\xf9\xc5\xec\x81\xbc\x2a\x83\x2d\x27\xa4\x83\x49\x1f\x29\x5a\xc9\x00\xce\x72\x67\x9d\x4c\x2a\x25\xf3\x85\xd2\x91\xb7\x09\xe7\x7c\x5e\xbc\xd6\xbb\x00\xa6\xfb\xc2\x2c\x57\xef\x68\x72\xa3\x70\x5f\x68\x69\x6a\xab\x1e\xb0\x21\x1d\xa5\xe6\x98\xfb\xe9\x84\xbe\x6f\x57\x88\xe7\x3f\x45\x5c\xb0\x85\xae\x83\x1b\xf7\x4c\x45\xff\x95\x76\x1f\xee\x7d\x5d\x7d\xa3\x95\xdd\x5d\xf2\x2c\x2f\x99\x09\x03\x4e\x6e\x78\xd5\x67\x1b\x17\x46\xf2\xe6\xa6\x96\x1f\xef\xdc\xaa\x86\x93\x7b\xd0\x4d\x3d\x45\x54\xf3\xd4\xc6\x41\x60\xca\xee\x86\xe1\xf2\x87\x4d\x58\xfa\xd7\x44\xf2\x55\x91\xab\xf4\x02\x6b\x24\xed\xb1\xfe\x5c\xfb\xbf\xfe\x5d\xed\xcf\xcf\x39\x1f\xdf\xfa\xfc\xdb\xca\xb6\x67\xd9\x6b\xc4\x3c\x1a\x6d\xf5\xe8\x28\x1b\xfa\x0c\xae\x91\x0c\xf6\xb0\xb3\xd4\x39\x5c\x27\x46\x2d\x15\xc7\x6c\x5b\xee\x18\x79\x9a\x0b\x87\x64\xbe\xf2\xc9\x98\x83\x2d\xf5\x14\x0e\x6f\xab\x29\x07\xd7\x99\x4d\x4c\xa5\xa8\xd8\x81\x08\x0a\x32\x3a\x3f\xaf\x96\x93\xdc\x8d\x01\x7f\x0c\xc2\x85\x05\xdc\xb6\x40\xfa\x41\x75\xba\xda\x2e\x91\xed\x29\x9f\x5e\x56\x50\xff\x54\xac\x7b\xfc\x30\x20\x5b\x4f\x16\x13\x4c\xc9\xe0\xbd\xfb\x41\xed\xbf\xc5\x8b\x87\x73\x7c\x3a\x55\x69\x7b\xba\x88\x14\x79\x2a\xcd\x58\xa3\x70\xcb\xc6\x88\x34\xf3\xaf\x34\xed\xa8\xb4\x89\x90\x3b\x2f\x15\xbc\x64\xc8\xc5\x4f\x66\xa5\x68\x95\xad\x14\x35\xdb\x44\x66\x3a\x10\x91\xa2\xa9\x22\x4a\x4e\x81\xd4\x01\x90\x98\x72\xd6\xc9\x1e\x4b\xbe\x95\xb7\x27\xcd\xf1\x2b\x26\x13\x35\x9b\x44\x98\x0f\x7e\x70\xdf\x20\xfd\x8a\xdb\xbe\x23\x38\xc8\x3e\x0a\xe4\x9e\x5e\x00\xf3\xbe\x89\x40\x38\x0c\x46\xea\x4e\x72\x61\xad\xa1\x82\x07\x17\x69\xa8\x8e\x30\x8b\x9b\x26\x36\x1a\x67\x2b\xe8\x23\xff\x78\x2c\x77\x63\xd5\x5d\x13\x5b\x2c\xae\x87\xfe\x28\xab\x96\x4e\x81\x5c\xf1\x04\xf9\xa9\x5d\x9c\x9c\xda\xd1\xf4\xd4\x2e\x2e\x9c\xda\xc5\xea\x0c\x4d\x79\x36\xf4\x78\x61\x51\x56\x36\x23\xfb\x0b\xf3\x5c\x6a\x9b\x9c\x4c\x3e\x68\xeb\x00\xbe\x5f\x5d\xd8\x00\x05\x33\xbd\x21\x39\x2b\xff\x1d\xff\x8c\x3e\x55\xb0\x9a\x11\x49\xf7\xa3\xfa\xe0\xdf\x38\xc7\x29\x5b\xb8\x8d\x46\x68\xfb\x21\x8f\x72\x19\x24\xbe\x27\xea\xc0\x07\x7d\xae\xe2\xf0\x4f\x40\x48\x18\xb5\xfe\xdc\x06\x4b\x4c\xc3\x3f\x62\x3b\x3f\x9b\xfa\x67\x71\x8b\xf2\xbb\xfc\x18\xea\xbb\x54\xcc\x5f\x60\xe3\xff\x31\x4c\x60\x9a\x3f\xc2\xdc\xb7\x74\xab\x0b\xd7\xdf\x69\x67\x4d\xff\xdc\x76\xee\xf4\x1d\x9a\x11\xbe\x73\x09\x7e\xb4\x0f\xf8\x13\x1a\x3c\x21\x50\xa9\x45\xd2\xc8\x37\xdf\xa1\x4a\xd5\xa2\xec\x72\xcd\x90\x8f\xd6\x28\x22\x65\xd9\x9b\x67\x4b\xa8\x42\xd1\xab\x32\xc9\x28\x18\x42\xc8\x6a\x6b\xb5\x44\xab\xcc\x3e\xbd\xdf\x51\xf0\x45\xc2\x03\x3f\xe1\xaa\x9d\x14\xc4\xf1\x8b\x23\x82\xb9\x7e\x36\x7b\x04\x39\x26\xd9\xc8\x5c\xa3\x5f\x2a\x9d\x65\x24\xf6\x66\x67\x9f\x7e\xcc\xce\x21\x89\xf4\x59\x90\x1c\xa9\x9e\x7d\xfa\xf1\x7d\x48\x03\x9e\x2e\x51\xca\xe9\xda\xb6\xaf\x75\x83\xb9\x35\xf6\x29\x09\xf8\x2f\x28\xb0\x6e\xb3\xb7\xcf\x68\x08\x02\x1c\x58\x0b\x8f\x33\x7a\x73\xce\xbc\x20\x9a\x86\x6c\xa1\x2c\xb9\xce\xc6\x8c\x90\xe0\xf9\xf9\xa9\x9c\xc0\x93\x5b\xff\x10\x5a\x37\x02\x84\x32\xd1\xa5\x58\x96\xfc\x3e\x8c\xe5\x6d\x94\xe7\x12\xe8\x07\x21\xf7\x33\x4f\x16\x59\xc5\x0d\x2a\x5d\xcf\x34\x48\x92\xf0\x86\x4c\x39\xca\x10\x69\x50\x8b\x87\xcb\x2c\xf3\x3c\x5c\x8e\xd6\xe8\xd7\x0a\x33\xed\x9f\xf2\x76\x71\x6b\x3c\xf7\x82\x19\x99\x9c\x87\xf1\x78\x4e\x22\x29\x8a\xcb\x89\x43\x7b\x04\xd1\x2f\x89\xed\xe9\x3f\x1e\x35\x46\xab\x87\xa8\xb2\x20\x7d\xd0\x20\x4d\x55\xb6\xe1\xc8\x25\x6a\xb4\x12\xb2\x71\x2b\x6d\x43\xea\xb7\xa4\x7c\xe7\x48\xb6\xb5\xd4\x1a\x2d\xec\x5b\xb2\xe1\xc6\x33\x1b\x0f\xd7\xce\x36\xdd\x12\xa7\x15\xf2\xee\x23\x9d\x90\x80\xd3\x29\x25\x0c\x63\xcc\x52\x29\x2c\x28\x92\xef\xed\xaa\x3d\x38\x4e\x76\x78\x04\xfa\x49\x86\x7b\x28\x21\x91\xec\x95\x69\x28\x94\x76\x6a\xb3\xed\x33\x3a\x64\x23\x2c\xbb\x61\xa8\xf9\x03\xa2\xd9\xed\x2d\xc5\xbb\x55\xb7\x25\x3e\xeb\x77\xa3\x88\xb7\xe5\x06\x95\x76\x73\x4b\x6e\x5a\x54\x95\xf9\xa7\x7e\x1f\x88\x8f\xe7\xe4\xbe\x58\x91\xf2\x40\xbf\xaa\xcc\xaf\x5a\xbc\xca\xfc\x36\xc4\x66\xb9\xb0\xa2\x5c\xe5\xb5\x16\xfd\x02\x98\x1c\x00\x72\x08\x57\x95\xfc\x45\xbb\x46\x23\x39\xf2\x1e\x9f\x5d\xd9\x29\x76\x55\xb9\x7f\x94\xcb\x6d\xb9\x2a\xf6\x7b\xb9\x5c\x75\x27\xc4\x9b\xc5\xb6\x54\x3c\xd6\x4a\xf2\xdb\xea\x0b\x43\x5a\x50\x4c\xc9\x78\x55\x65\x08\x29\x15\xaa\x26\x2f\xd7\x8a\x5d\xd3\x60\x12\x5e\xdf\xe3\x69\x8d\x5c\x6d\xb9\x53\xa4\xdd\x18\x1b\xe7\x56\x31\x5b\xee\x60\x3d\x28\x66\x24\x03\x0e\x2c\x45\x7f\x4c\xdd\x83\x29\x7f\x5f\xa4\x4e\x84\xaa\x58\x4f\xa7\x0c\x00\x9c\x46\xab\x4e\xcc\x56\x3d\x6c\x78\xb0\xce\x4d\xd0\x6e\x74\xeb\xa1\xd9\xaa\x7b\xb0\xce\x4c\xe0\x98\x69\xae\x4c\x09\x4c\xaf\x4e\xe1\x41\x77\xad\xa0\xed\x5e\xcc\xa5\x64\xd5\x2f\x66\x78\xd5\x7a\x91\x66\x04\x68\xb2\x3a\xd7\xcc\x88\x22\x7d\x1a\xe3\x0d\x92\x3b\x7c\x12\xa0\xd8\x89\xd3\xb7\x57\x2b\x76\xdc\x90\xb1\x00\x1a\xad\xae\x5d\xd7\x5c\x97\xb3\x83\x56\xd7\x86\x2e\x83\x6e\x08\x32\x4f\xec\xdc\xd5\xed\x90\xe3\xdd\xf0\x37\xbf\x54\x5e\x49\xb2\xef\x49\x6e\xa2\x58\x41\x0d\x47\x3a\x81\x37\x09\x1c\xc4\x05\x8f\x6d\xf9\x69\x7c\x63\xeb\xbe\x21\xc1\x9a\xc3\x5f\x96\x79\xdf\x11\xef\xa2\x58\x83\x20\x86\x9d\x03\x96\xb3\x45\xee\x3c\x33\xff\xd0\x0c\xea\x6a\x5b\x4f\xfa\x89\x23\x79\x73\x38\x1c\x30\x97\xcb\x8c\x32\xc7\xa4\x56\x60\x0c\x00\x92\x04\x0d\x05\x81\x35\x95\x2b\x71\x8b\x21\xc0\x0b\x89\x5c\x24\x42\x14\x62\x19\x08\x19\x71\xe5\x94\x9a\x49\xcf\xbb\x5c\x39\xa6\x8e\x41\xe6\xaa\x12\xf1\xdc\x13\x67\x99\x09\x74\x63\x76\x86\x29\xe0\x10\x11\x6b\x86\x43\xf5\x70\x89\x3d\xf5\x90\x7a\xa5\x8c\xe4\xab\x8c\xaa\x90\x0a\x3e\x6b\xe6\x2d\x16\x1e\x26\x88\xae\x0b\x03\x61\x5c\xc5\xa0\x5c\xbf\x4b\xce\x73\x8f\x60\xf9\x94\x13\xc2\x82\x59\x44\x58\x34\x8b\x08\x61\xe2\x34\xc0\x3e\x62\x72\xaa\x64\x90\x16\x29\x23\x66\x27\xe4\x89\xc9\x8a\x5a\x6c\xb5\xb2\x51\xa4\x9e\x67\xe2\x39\x56\xcf\x97\xab\x55\x76\x30\xe5\x61\x02\x3c\x51\x27\x01\x91\xa8\x8b\x80\x18\x22\x9a\x35\xd8\xa9\x0a\x0b\x4d\x2d\x86\xe5\x0e\x00\xb5\x66\x58\x39\x99\xb4\x2e\xa5\x9d\x15\xa2\x92\x36\xeb\x71\xc5\x3a\x34\xf7\xc0\xb7\xd1\x0b\x99\x25\x00\x3b\xc6\xf6\x80\x61\xdb\x95\xb1\x5b\x00\xc3\x0e\xe2\x0d\x07\xba\x9a\xab\x12\x56\xe7\xa2\xe7\xa5\xeb\x3b\xe9\x01\xcf\x74\x46\x82\x64\x27\xf6\x40\x39\x3c\x71\x9b\x42\xae\x08\xb2\x1d\xf3\x86\x23\x12\xcd\xa6\x48\xf4\x1a\x61\x36\x6d\x03\xc0\x1a\xc1\x01\x87\x75\x8e\x22\xe9\x50\x2b\x16\x4b\x22\xb4\x0b\xed\xed\x48\x6b\xc8\x01\xc0\x9e\x62\x07\x1e\xdb\x03\xd3\x64\x2e\x83\x29\xae\x20\x30\x45\x3b\x9e\xf2\x04\x67\xf1\x10\xa9\x74\x95\x1a\xab\x97\xa6\x78\xa9\xc2\x52\x5a\x9e\x29\x2c\xf7\x36\xbd\x0c\xe6\xf3\x44\x03\x4b\xd7\x67\x95\x42\x8e\xd7\x99\x2e\x16\xe7\x9a\xe7\xee\x79\xd5\x46\xcf\xd9\xed\xe2\x32\xf4\x6b\x35\x23\x92\x0f\xe5\x0c\x8b\x72\xc2\x84\x3a\x53\xb5\x73\x97\xaa\xa2\x95\x9b\x6f\xa4\x56\xdb\x51\x1d\x29\x44\x16\xc6\x38\x4b\xdf\x4f\x9f\xf3\xf5\xd9\x20\xc5\xcd\xcd\x2a\x14\x22\x63\xad\xbc\x2c\x1d\x0c\x1b\xe6\x68\x00\x06\xee\x97\x89\xf9\xc5\x1a\x7c\x99\xd4\x57\xf2\xc7\x84\x69\x90\x5f\x91\x2f\x63\xfc\x1e\xcc\x8a\xc1\x73\x27\xc9\x7a\x07\x19\x33\x19\x2d\xb7\x62\x81\x93\xf8\xf5\x9b\x58\xbe\x17\xf1\xd7\xc1\x84\xdc\xe0\xa5\xf6\x9c\xb9\x3c\x1c\x8a\xde\x4d\xfc\x12\xa8\x4b\xa3\x5c\xfc\x3d\x02\x4c\x8b\xc6\x25\x1d\x5c\x24\x71\xb7\x38\x84\x47\x50\x1a\xa1\xca\x3d\x1b\x78\x12\x26\xce\x34\xd5\xa6\x4c\x88\x28\x44\xd1\xd0\x1b\x0d\xc4\x1f\x13\x53\x37\x1a\x9a\xa6\x37\xc2\x14\x22\xc0\x30\x13\x0b\x06\x8c\xb1\x58\x17\x89\xc7\x81\x56\x34\x48\x8b\x06\x2e\x48\x9f\x62\xdf\x47\x89\x15\xda\x1d\x75\x3d\x74\xe3\x4e\x95\x89\xad\x74\xfb\xa5\xb5\x28\x73\xc5\x70\xcc\x73\xa7\xa5\x1a\x5a\x5b\x91\xca\xb7\x83\x06\xf1\xd0\x1e\xed\xdc\xe8\xd5\xe4\x31\xe0\x2a\x7c\x0d\x10\x1f\x59\x37\xf0\x9e\x6d\xdc\x7c\xe6\x07\x5c\x86\x17\x4b\x0d\xb4\x51\xd5\x82\x9d\x25\x7b\x4f\x5c\x6e\x02\x45\x43\xc0\x70\x2c\xf7\x80\xe8\x08\x33\xeb\x46\xdb\x67\x4d\x6f\x24\x18\x70\xad\x5f\x92\xbc\xd2\x46\xcf\xd5\xff\x85\xa3\xe7\x56\xda\xbb\x5d\x14\x7c\x2e\xea\x3e\x79\xae\xb4\x9d\xdd\x64\x99\xb5\x5a\x19\x97\x61\xe8\x13\x4f\xa0\x85\xe9\x20\x94\x1d\x61\x04\xf1\xe2\x92\x30\x95\x34\x75\xf3\xd5\x2a\xa6\x42\xc0\x67\x93\x97\x27\xa7\xf5\x01\xe0\x98\x21\x1f\xba\x0b\x97\xeb\x4e\xb3\x03\xcb\x1b\xf8\xc5\xa4\x17\x1e\x27\x83\xaa\x8d\x07\x31\x8c\x45\xe6\xde\x36\xa1\x98\x2b\x2d\xcc\x8a\x08\x3f\xa7\x0b\x02\x84\x78\x0c\x20\x62\xeb\x75\xc9\x93\x17\x87\x55\x95\x6c\xae\x1a\xc9\x40\x33\xf0\xca\xae\xd5\xba\x76\xc9\x47\x64\xc9\xf0\x4b\x9b\xce\xa9\x9c\xce\xa5\xef\xd9\x6b\x40\x86\x6c\x94\x2c\x35\xa5\xc9\x56\xba\x0c\x95\x33\xbb\x48\xdf\x98\x8e\x12\xe6\xd6\x61\xc9\xc2\x02\xa0\xc6\xce\x5e\xe1\x50\x33\xb3\xde\xe4\x6a\x53\xf3\xdd\x54\x67\x2e\x2d\x37\xdd\x44\xca\x62\xb3\x6c\xa3\xca\xdd\x1a\x51\x7c\xb7\x56\xed\x7a\x42\x15\x73\xec\x63\x2c\xb8\x36\x94\x7d\x2d\xba\x7e\x2e\xa3\xd5\x00\x82\xef\xd6\xa9\xa9\x9e\x58\xa6\x17\x4a\x70\x51\x82\xcb\x12\x1c\x4a\x50\x64\x10\x94\xa9\xe3\xd2\x7b\x09\x22\x91\x50\xeb\xf7\xa0\x48\x0b\xba\x5e\xbb\x53\x98\x6c\xad\xbc\x7c\xf4\x8c\xaa\x47\xaf\x13\x93\x2b\x5c\xaf\xd1\x4d\x21\xb8\xcc\x19\xbe\x93\x1e\x19\x7c\x8f\x93\x5f\x5c\x1b\x65\x2f\x9f\x5d\x1b\xb1\x90\x7b\x9c\xb8\x36\x8a\xbe\x92\x6b\x91\x1b\x8d\x3d\x9f\xfc\xe2\x3a\xea\xe1\xb3\xeb\xac\xd1\xbb\xd2\x6e\x4b\x7a\xb5\x37\x31\x17\x43\x71\xba\xa4\xf2\x34\xef\xa1\xa4\x2e\xd0\xe1\xca\xc9\xc0\x01\xf6\x10\x3f\xc0\x1e\x44\x20\xc6\xa4\xce\x24\x9b\xd7\x6a\x80\x35\x30\xa9\xc7\x28\x68\x60\x5e\x8f\x21\x02\xba\xd7\x78\x56\x67\x66\x50\x0f\x24\x00\x76\x80\x23\x14\x88\x3f\xf1\x01\x8e\x20\x22\xf5\xe0\x98\xd7\x99\xb4\xaa\x6e\x10\xc4\x71\x83\xa3\x18\x37\x62\x31\xdb\x79\x10\xe9\xed\xa5\x7a\x7b\xc3\xb4\xbd\x9a\xe7\x79\x8e\x08\xac\xdf\x24\xed\xcf\xd2\x41\x2c\x13\x15\x31\xbc\x94\x18\x91\xae\xba\x68\x61\xfa\xf4\x65\x84\xa6\xcb\x27\x67\x31\x44\x39\x4e\x34\x8d\x27\x86\x6b\x18\xeb\x32\x8b\xe4\x17\x7f\xb2\x59\x3a\x9d\xe4\xb0\x9c\xd1\x12\xed\x58\xeb\x84\xcc\x03\xab\x8a\x06\xb0\x8f\x31\x5d\xad\x82\x7d\x8c\x93\x5e\x89\x71\xe2\x3d\xcc\xc8\x1a\x0f\x0c\xa4\x2e\xbf\xab\x1f\x06\xf7\xa2\x6c\xbe\x8d\x1b\x6d\x39\xe3\x12\x69\xd2\x2e\x13\x9a\x32\x21\x40\xa1\x98\x70\x88\x1f\x11\x40\x57\xab\x50\xd9\x3a\x96\x01\x9b\xd4\xe4\x66\x68\x32\xb8\x06\xa1\x95\x93\x1e\x69\x2f\x9f\x91\xa7\xe7\x78\x7a\x8e\xd0\x28\x4b\x4b\x7c\xc1\x5d\xa2\x55\x7c\x00\x48\x83\x8b\xa5\xee\x80\x9b\x58\x06\x2d\x69\x10\xf1\x2a\x7a\x5e\x26\x40\x4d\x6d\x60\xea\x89\x02\x06\x4d\x43\x75\x74\xda\xea\x00\x26\x2d\x92\xc3\x0c\x42\x97\xd7\x6a\x95\xc5\x4d\x6e\x06\xb2\x1d\x2a\x01\x79\xe9\x43\xb4\x1d\xc7\x2d\x18\x48\x8e\xda\x82\xc0\x46\xfd\x49\xe1\xac\x7a\xf9\x8e\xbc\xe4\x77\xb3\xf2\x40\xdd\x17\x4b\x7a\x9f\xad\x56\x7c\x1f\xe3\x20\xe5\xa3\x30\x05\x1d\x0a\xd0\x82\x77\x53\x3c\x0c\x94\x3e\x40\x03\xee\x79\x19\xe6\x51\xc6\x02\x4c\xb1\x40\x94\xe0\xcb\xa5\x16\xa6\x9c\xaa\x39\x58\x9e\x9b\x89\x9f\x60\xb5\xaa\xaa\xc4\x64\xa6\x81\x0c\x33\x50\xc1\xd1\x44\x3b\xe4\x08\x42\xc9\x83\x60\x83\x24\xc5\x4b\x53\x64\xf7\x87\xd8\x53\x4a\x60\xe5\xb9\x06\x62\x42\x89\x0d\xf2\xdb\x6e\xa6\x29\x5d\xa4\x47\x43\xa1\x61\x09\x09\x2c\x34\x26\xbe\x4d\x63\x5a\x4b\x5d\xe2\x19\xfe\x0a\x2a\xf6\xad\x83\x30\x20\x2a\x62\xeb\x99\x0b\x6e\x57\x2b\x70\x8b\xcb\xb7\xae\x12\xff\x1e\xc6\x8b\xd7\x9f\x0c\x88\x66\x78\xdb\x96\x35\xba\xd4\xb2\xf2\x9b\xeb\x10\xdd\x26\x56\x47\x3c\x3d\x1a\x90\x37\x14\x2e\x37\x2f\xa6\xcf\x0a\xa7\xe5\xb7\x70\xdb\x3d\x75\x23\x83\x24\x10\x2a\xdc\x35\xbe\xd5\x8f\x4e\x7b\xa8\xe1\xa4\x07\xb4\x06\x32\x20\x7a\x07\x4c\xe9\xab\xd3\x24\x43\x47\xfe\x6d\xca\xbf\x2d\xf9\xb7\x2d\xff\x76\x46\x10\xae\x91\xb1\xbc\x41\x4f\x0c\xf1\x03\x0d\x64\x4c\xc8\x0c\x1a\x10\x9d\x57\x92\x30\xf3\x26\x72\xe6\x82\x8b\xd5\x0a\x5c\x6c\x21\xe0\xdb\x33\xb0\xd3\xbd\x8e\x58\xe4\x40\x74\x51\xba\x9c\x9b\xb7\x14\x11\x88\x00\xc1\x17\x39\x19\xad\x4b\x2f\x22\x9f\x3c\x5f\x6a\x9b\xa1\x4f\x27\x62\x08\x0b\xf5\x4d\x50\x40\x9d\xc6\xa0\x77\x20\x8f\x7b\x36\x46\xc4\x9a\x20\x62\x11\x44\xac\x29\x84\xee\x99\x68\xa8\x6c\x26\x34\xd4\x80\xc8\x04\xf9\xf3\xca\x75\x41\x7a\x28\x4e\x31\x01\xfa\x6e\xd0\x44\xed\x06\xcd\x91\xae\x4b\x4e\x20\x60\x22\x51\x70\x77\x0c\xb8\x15\x21\x66\x45\x42\x9a\x8b\x17\x1f\x31\xcb\x57\x5b\x44\xd9\xc6\x10\x62\xdb\xb7\x88\x34\xb5\xdc\x9a\x63\x2a\xef\x55\x5b\x91\x34\x6f\x45\xdc\xf2\xd5\x4e\x08\xd7\xb6\x88\xc4\xab\xda\x06\xc9\xda\x74\xfa\xa8\x36\x8d\xab\xda\x34\x2e\xb5\x69\x8c\x98\x35\xfe\xa6\x6d\x1a\x3f\xae\x4d\x1f\x2a\xda\xf4\x84\x0b\xfd\x48\x9b\x93\xb9\xb6\x0d\x5c\x68\xe3\x65\xd6\x46\x5a\x48\xa4\xaa\x8d\x5e\xd2\x6f\x54\xf4\x5b\x94\xb4\x91\x8a\x36\xfa\x85\x36\xd2\x87\xb6\x31\x4c\xfb\xcd\x4b\xdb\x18\x81\xc2\x5e\xa7\xde\x5e\x3f\x6f\x6f\xba\x50\xc0\x26\x43\xe9\x5e\x1f\x57\x7b\x7d\x6b\xf9\xfd\xd9\x4f\x1f\xce\x9b\xe8\x39\x88\x20\x7a\x0e\x62\x88\x4e\xc5\xd3\xa9\x78\xfa\x00\x22\xb5\x59\xf3\x1e\x7f\x00\x31\xdc\xdb\x15\x24\xe5\xfa\x9e\x20\x26\xd3\x7b\x82\xa0\xbc\xbc\x27\xc8\x8a\xe6\x2b\xaf\xd2\xe7\x9e\xe6\x6a\xac\xf2\x9c\xe2\xfc\x9e\x20\x2d\xfe\x3d\x41\x56\xde\xff\x95\x18\x2b\x74\x0a\x00\xc3\x80\x60\x3e\x20\x16\x0f\x5f\xde\x2c\xc3\x80\x04\x9c\x7a\x3e\x90\xbb\x83\xe5\x44\x08\x73\x6b\x17\x62\x40\x78\x6c\x43\x4d\x5e\xee\xe5\xfe\x2b\x73\x2b\x97\x2c\x6e\x41\x6e\x3c\x1a\x0c\xed\x91\x19\x24\x65\x9a\xd0\x0d\x90\xa9\x9b\xc9\x8c\xca\xb1\x5d\x12\x4d\x9c\xe0\x00\x64\xbe\xd7\xa5\xc3\x5b\x21\xf0\x55\x44\x8d\x10\x1f\xfc\x0b\x0c\x5c\x60\xc1\x01\x18\x1e\x9f\xe0\x7f\x8d\x84\xc8\x1c\x9a\x5f\x1a\xe0\xc9\x48\x3c\x7d\xf7\x5f\xe2\xc7\x86\x03\x20\x77\xa5\x00\x12\x4f\x96\x7a\xfe\xdf\xa2\x80\xd7\xf8\xe3\xe9\x08\x0e\xbe\x3b\xa0\x85\xf3\x8d\x82\xe1\x43\x54\x70\x7a\x12\x65\xde\x32\x39\x0e\xb3\xfd\x26\xc8\xe7\x2c\xbc\x96\xc5\x5f\x32\x16\x32\x60\xd0\xe0\xca\xf3\xe9\xe4\x89\x90\xee\x1e\x77\x9f\x18\x66\xe2\x34\x9a\x2b\xeb\xba\x29\xf5\x7d\xcc\x87\xce\x68\xb5\x32\x9e\x24\x2e\x1b\x3c\x9f\xce\x02\xcc\x87\x4d\x91\x78\x92\x24\x46\x2a\xad\x25\xd2\x1a\x69\x9a\xdc\x67\xc0\x7c\xd8\x16\xa9\x49\xe2\x1f\x84\x85\x78\x7f\x9f\x0f\x3b\x23\x95\x70\x4d\x27\x7c\x8e\xf9\xb0\x3b\xaa\xd5\x4c\xf1\x93\x04\x14\x0b\xc5\xa0\x13\x05\x7b\x49\xca\x92\x91\x31\x8d\x68\x28\xea\xe9\xab\xc2\xfd\x51\xd2\x37\xa9\xbb\x09\xce\xe8\x42\x7e\x74\x98\x7c\x24\xed\x39\xf8\xd0\xb1\x25\x0a\x6b\x4f\xb3\xf2\x88\xb4\x08\x15\xda\x73\xb6\xea\xad\xb8\xd2\x98\xd1\xc4\xcc\x29\x61\x66\xed\x37\xb5\x56\x9b\x20\x6b\x6d\x16\xd9\x3c\x35\x47\xce\x5a\x3d\x30\x8c\x3c\x58\xaf\x83\xec\x55\x9e\x05\x61\x02\x41\xd2\x61\x60\xa0\x4d\x10\x19\x3d\x04\x18\xc3\x2a\x84\xd8\x4d\x40\x65\x45\x32\x70\x82\x40\x03\xe3\x7f\x2b\x68\x19\x85\x94\x2d\x88\xf4\xcc\x84\xa6\x25\xef\x61\xc4\xd5\xf5\x42\x92\x5f\x9a\x75\xa4\x69\xf0\x51\x20\x2f\xd6\x04\x30\xba\xa6\x7c\x3c\x07\x64\x18\x8c\xe0\xdd\xd8\x8b\x88\x61\x19\x2e\xc5\x1c\x07\x7b\x97\x8c\x78\x5f\xf7\x64\x9a\x6d\xb8\x36\x4e\x23\x05\x05\x10\xe5\xd9\x89\x06\xe7\xd2\x29\xa0\x27\xb6\xe2\x5e\x53\x42\x93\xf9\x4f\xc8\x1e\xc5\x76\x7e\x02\x73\x62\x0f\xf2\xa1\x4c\x61\x36\x4a\xb9\xe9\x48\x07\xf2\x93\x4a\xf3\x14\xf5\x22\x0d\xd7\x32\xa3\x02\x62\x1a\xea\x54\x93\xca\x6d\x54\x14\x62\x36\x74\xf2\x35\xe1\xb1\x3d\x30\x6c\xcb\x30\xf3\x0d\x9c\x46\x08\x13\x65\xd7\x36\xa0\x49\xdd\xf4\x5a\xdb\x49\x68\x3a\x03\x9a\x21\x15\x9a\x0e\x34\x45\xbf\xa4\x49\x22\xc1\xa5\x1a\xa0\xb0\x91\x7e\x6a\x36\x35\x90\x6b\xb4\xc4\x77\xc6\x53\xa3\xd2\x3e\x08\x38\xb6\x5d\x27\xd0\xe2\xe1\x0f\xf4\x86\x4c\x00\x87\x6b\x74\x59\xb5\x63\x58\x08\xb3\x9f\xdb\x3d\x35\xe1\x1a\x8d\x2b\x77\x18\xc5\xcc\x87\x2a\xfd\xac\x6d\x01\xe5\xd8\x70\x8d\xb6\xf8\x53\xdb\x10\xd9\x62\x26\xd8\x5e\x34\x6f\xcb\x6c\x7b\xa1\xf7\x29\x37\xcb\x82\xe1\x23\x30\xed\x0b\x9a\x56\x03\x9e\x28\x82\xca\xdd\x20\xe6\x4e\x50\x54\x69\x11\xfb\x70\xbe\x41\x1e\x0e\x1b\x20\xc6\xad\x7a\x36\x1c\x1b\xfd\x3c\xe4\x75\x5f\x0f\xbc\x11\x4a\x8f\xf4\xd0\x74\x50\x94\xdd\x8d\xcc\x8f\xe8\x30\x8e\x06\xd4\xf5\x4e\xa2\x81\xce\x33\x5e\x23\x32\x1d\x8d\x59\x5c\xef\xc4\xd6\x98\xce\x2b\xb2\x9c\x07\xdd\x12\xf3\x3a\x0d\x4f\xe7\x5e\xd1\x30\x4d\x6e\x70\xd3\x6b\x38\x10\x0e\xed\xd1\x1a\xfd\xf2\x18\x56\xe8\x8a\x97\x8f\xcb\x25\x61\xcf\xbd\x48\xde\x5c\xbb\x79\xdc\xe7\xeb\x62\xf8\x25\x6d\x6b\x1f\x5d\xe1\xa1\x71\x6b\x20\xe3\x0f\x43\xea\x51\x42\xd7\x31\x96\x06\x32\x02\x03\x19\xff\xdf\xff\x6b\x20\x63\x61\x20\xc3\x40\xc6\x57\x03\x19\xa7\x06\x32\x7e\x34\x90\x71\x6e\x20\xe3\xbd\x81\x8c\x97\x06\x32\x7e\x35\x90\xf1\xd9\x18\xa1\xdb\x4d\xc3\x2c\xa4\x54\x02\x79\x89\x4e\x7a\xb1\x22\x16\x9f\x87\x71\xe4\x05\x93\x48\x06\x0b\xca\xb2\xa4\xec\xcb\xf2\x0a\x9b\x43\xf9\xca\xb9\xe0\x74\x7d\x98\xde\xb6\xe3\x82\x3b\x62\x6c\x1f\xd1\x13\xbb\x56\x8b\xc4\x1f\x10\x9b\x91\xe9\x48\x87\xfd\xc9\x1e\x9c\x9a\x02\x82\x46\x0c\x21\x0a\x53\x1f\x09\x51\x7c\xa9\x76\xce\x01\x6d\xe0\x08\x51\x33\x82\x10\xed\x03\x10\x9b\x58\x70\xc1\x49\x00\xe1\x11\x14\x15\x78\x18\x78\xf2\x50\x31\xa9\x3e\x17\x5f\x79\xe8\x1b\xd5\xeb\x0c\xae\xa1\xbb\x90\xa1\xa9\xc6\x31\x63\x24\x18\xdf\xca\xf8\x64\x13\x32\xa6\x0b\xcf\x47\x3e\x26\x56\x10\x2f\x08\xf3\xfc\xe8\x81\x87\x36\xdc\x62\x64\xe9\x7b\x63\x02\x0e\x86\x76\xe3\x70\x74\x30\x43\x55\x47\x3b\x43\x93\x8f\xd6\x70\xbd\x06\x79\x05\x02\x93\x31\x26\xd6\x92\xb0\xb1\xb4\x15\x34\x9e\x6a\x9e\x0d\xa7\xf9\x79\x2c\x20\x52\x85\x87\x72\xf2\x95\x5d\x21\xe7\x5e\xe9\xe5\x5e\x4c\xbd\x68\x2a\x1e\xe4\xcc\x8b\x26\x98\xc8\x79\x17\x2d\x30\x51\x93\x29\xba\x15\xad\x15\x13\x29\x9a\x89\xda\x52\x39\x82\x2e\xb1\xb2\xaa\x46\x17\x89\xd7\x9e\x3d\x43\x1e\x63\x5c\x0c\xc0\x2d\xde\xb7\xd1\x05\x16\x8b\x64\x77\x39\xbc\x18\xad\x56\xc9\xdc\x3b\xab\xd5\xc0\x0c\x3b\x4d\x88\x2e\xf3\x22\x08\x4c\x56\x2b\xc3\x16\xdf\xf2\x5a\xcd\xc0\x86\xb4\x5a\xab\xd5\xc0\x44\x94\xe1\xd8\xb0\x0d\xc4\xb0\x81\x0d\xa5\x5d\x5d\x63\xe3\x3b\x51\x64\x3a\x08\x87\xf6\xc8\x35\xfe\x4b\xbe\xd4\x6a\x07\xc3\xcb\xf0\xe6\x97\xd1\x81\xc5\x49\xc4\xc1\x05\x14\xaa\x83\x79\x61\xf1\xf0\x4d\x78\x9d\x8e\x2c\xd7\x30\xd0\x4b\xed\x7b\x67\xe4\x1e\x0c\x9f\x2e\xb5\x8f\xc6\xa2\xc8\x0d\x16\x58\xa3\x33\x7c\x30\x9c\x90\xe9\x6c\xc9\xa2\xa7\x79\x91\x9c\xc6\xef\x52\x1a\x87\xc8\x13\x93\x3f\xbe\x46\x4b\xfc\x52\x08\x3a\x63\x2c\x29\x01\x97\xf8\x06\x10\x68\x2e\x11\xc1\x86\x21\x7d\xb8\xcb\xf2\xef\x12\x7b\x93\x63\xe9\x00\x9e\xe0\x1b\x5d\xff\x45\x33\x88\x2e\xe5\x6e\xf1\x5c\x06\x58\x7e\x27\x43\x2b\x9b\xa4\x56\x03\xef\xa4\x0d\xf8\x14\x83\x77\x03\x03\xa8\x03\x21\xea\x1a\x0d\x43\xfc\xc7\x72\x5f\x35\x4d\x36\x0c\x97\x42\x73\x8a\x96\x18\x18\x91\xea\x95\xab\x61\xdf\x8c\x0f\x5a\x23\xa9\xbd\x2c\x4d\xf0\xae\x56\xcb\x4a\x43\xa9\xd3\xa0\x33\x69\xf3\x9d\x38\x76\xd7\xee\xa4\x87\xc7\x9e\xb4\xce\x6d\xf7\x4f\x80\x60\xb9\xf1\xdc\x63\xcf\xc3\x09\x79\xc6\x41\x08\xe1\x6a\x35\x3e\xe9\xf4\xe0\xdd\x12\x83\x76\x17\x63\x3c\x1e\x44\x99\x46\x21\xa7\xed\xec\x05\x2a\x52\xe4\xba\x47\x08\x95\x02\xb3\x5e\xdf\xd6\x6a\xfb\x13\xd9\xea\x40\x46\xce\xb6\x13\x87\x3a\x5f\xf1\x34\x9d\xe6\x53\x84\xcc\xcc\x1d\xc5\x33\xfc\xf5\x78\x31\xc8\xe5\xf3\xa2\xf1\x35\x93\xef\x5c\x74\xf6\x5e\xa2\x58\xdd\xd6\x6a\x29\xf0\x67\x26\x41\xcf\xd2\xdd\xee\x45\x23\x85\xe5\x8a\x2a\xd1\x33\x2c\xc8\xc0\x12\x1d\xec\xd8\x70\x09\x9e\x9a\xc4\x5c\x9a\xcf\x74\x3d\x0c\xab\xf4\x67\x22\x47\x4f\xff\x97\x48\x7f\x96\x35\xee\x2b\x4e\xeb\x39\x39\x71\xa0\x99\x00\x4a\xb2\xbf\xc2\x92\xea\x46\xf0\x33\x55\x24\xd5\xd2\xa4\xd7\xd2\xd4\x4e\x2d\xb9\x38\x32\x1b\x74\xdd\x83\xa1\x60\x48\x8d\x65\x35\x11\x98\x4d\x95\x4d\x07\xcd\x20\x74\xcb\xc1\xd8\x64\x96\x2d\xb2\xd0\xbb\x5d\xba\xba\xd2\x67\xde\x25\xd5\xdf\x25\x2b\x9c\x29\x52\x0f\xef\x19\x99\xd2\x9b\xca\xb9\x7e\x0a\x40\x26\x6e\xe4\x42\x41\x4c\x38\x82\x8b\x83\x07\x4d\xea\x14\x70\x28\xe7\xf5\xd4\xfb\x43\x1a\xd0\x4b\x3a\x7c\x10\x1c\x1c\x1c\xb4\x2a\x0f\xae\xd2\x5d\x07\x10\xd6\x09\x34\xa3\xf5\x5a\x3f\xfd\x98\x69\x25\x7c\x7c\x2b\x06\xd9\x18\xfb\x96\x6a\x8d\xf4\x12\xa1\x37\x0c\xf9\xeb\x19\xb8\x4b\x64\xba\x58\x1c\xa0\x6c\xea\x72\x0d\x64\xa0\x74\x56\x73\x87\xad\x11\x4a\xe7\x01\x77\x68\x7c\x27\x66\xd2\x51\x62\x6e\x72\xb9\x35\x86\x97\xea\x8e\x06\x2d\xae\x79\xd7\x85\xb0\x7e\x9a\x8e\xa5\x7d\xf3\x28\x0a\x6e\x56\x50\x3e\x98\x2e\x5a\xb0\x25\xc2\x87\x6b\x61\xd0\x60\xa3\xa0\xdf\x08\xd0\x0d\x2a\x80\x99\x4e\x66\xc5\xab\x08\xf7\x42\x31\xf1\x9b\x70\xec\x55\x5b\x76\xea\x21\x6d\xe5\x17\xf7\x98\x88\xea\xfd\x71\xcf\xee\x8e\x2a\xba\xbd\xea\xdb\x72\xd1\xb3\x25\x19\x4b\xeb\xe8\x7b\xac\x8a\xb3\xa9\x4e\x2a\xd8\xf7\xd8\xab\x66\x85\xb7\xe3\x7c\x51\x51\xfa\x83\x50\xe7\xb6\x6c\x6f\x3d\x66\xfb\x87\x01\xbb\x68\x20\x28\xd7\x80\xf6\x31\x26\xd6\xad\x50\xcc\x6e\x8f\x1d\xdb\x4e\x15\x82\xf4\xb8\x1f\x34\x1c\x44\xac\x45\xb2\xd1\xfc\x0a\x11\xeb\x14\x11\xeb\x0c\x11\xeb\x8d\x66\x71\x1f\x11\xfe\x43\xec\xfb\x9f\x89\xc7\x00\xb1\x6e\x21\xe2\xba\x9b\x0c\x09\x87\x58\xb7\x5b\x01\xe5\xfb\x2a\xe1\x03\xb1\x12\x7f\xac\x8f\xe7\xcf\x77\xa1\x57\xc4\xef\xe3\xf9\xf3\xfb\x50\xcc\x80\xee\xc2\x55\x43\x56\xdb\x22\xba\xbb\x75\x09\x5a\xb8\x36\x9a\xb8\x0e\x7a\xe5\xda\xe8\xd4\xb5\xd1\x99\x6b\xa3\x37\xae\xbd\x2e\x6d\x1b\xa5\x16\x70\x13\x8f\x93\x73\xba\x20\x52\xdd\x9a\xc8\x33\x39\xa1\x25\x89\x94\x58\xe9\x6c\x34\x9c\x44\x52\x61\x9c\x78\xb7\x91\x54\xe4\xa2\x79\xc8\xf8\x0b\xf1\x26\x14\xb2\x45\x18\xf0\x79\x84\xe6\x69\xc6\xa9\x7a\x5f\xe2\x4b\x10\x43\xb4\xc0\x17\xe2\xe7\x0a\x5f\x02\x1f\xa2\x5b\x7c\x21\x7e\x66\xf8\x12\x8c\x21\xba\x21\xf8\x42\xfc\x9e\x11\x7c\x09\xa6\x10\xbd\x13\xef\x53\x88\xbe\x8a\xf7\x39\x44\xcf\xc4\xfb\x1c\xa2\x73\x82\xef\xbc\xaa\x85\xc6\x78\x28\xef\x78\xbc\xf0\x6e\x01\x1c\xad\xd1\xb3\xaa\x32\x7e\xb1\x4c\xe5\x2a\x7a\xae\xca\x48\xcc\x65\xa9\xef\x2b\x2d\x92\xca\xa5\xc6\xae\x3c\x5d\x9b\xb8\xaf\x10\x71\x5f\xa1\xa9\xfb\x09\xbd\x72\xbf\x47\xaf\xdd\x8f\xe8\x37\xf7\x67\xf4\xc6\xfd\x1d\x2d\xdc\xcf\xe8\xd4\xfd\xb1\xb0\x2e\xcd\x6d\xd2\x87\xa6\xba\xce\xf2\x2a\x8c\x59\x04\xe0\x89\x50\x38\x47\x6b\xf4\x93\x7b\x4d\x50\xe4\xbe\x24\xe8\xcc\xfd\x27\x8a\xdd\xef\xd0\x47\xf7\x27\xf4\xc9\xfd\x05\x5d\xbb\xbf\xa2\x9f\xdd\x7f\xa0\x1b\x55\xf3\x2f\xea\xe7\xd6\x25\x04\x7d\x76\x39\x41\xbf\xba\x8c\x20\xe3\xa9\xe1\x5e\x90\x35\x7a\x7e\x0f\xd9\x3e\x9e\x3f\x7f\x08\xe5\xb4\x62\xbb\x88\xf7\xf1\xfc\xf9\xc3\xe8\x57\x28\x98\x91\x30\x20\x88\x88\x3f\x53\x37\x26\xe8\x95\x4b\x09\x7a\xed\x86\x04\xfd\xe6\x7a\x04\xbd\x71\x23\xc1\xd7\x3e\x41\xa7\xee\x98\xdc\x43\xcb\x8f\xe7\xcf\x77\x90\x73\x4a\x50\xec\xce\x09\xfa\xe8\x4e\x08\xfa\xe4\x2e\x09\xba\x76\x17\x04\xfd\xec\x5e\x91\x0d\xa2\xde\x0a\xa2\xce\x04\x51\x2f\x73\xa2\x9e\x96\x88\x5a\x70\x4a\x99\x18\xf9\xa5\x5b\xc9\x9a\x73\xbb\x01\x20\xd6\x35\xbe\x21\xc3\x60\x68\x8f\x8a\xaa\xfe\x08\x31\x53\xa6\xa6\x76\x45\x0d\xa7\xd8\x21\x7a\x15\x57\xf7\x55\x71\xfb\xd0\x1a\x2e\xb7\xd4\xf0\x95\xec\xae\x62\x81\x9f\x3d\xb8\x15\xdf\x6f\xa9\xe3\xec\xde\x3a\xde\x3d\xb8\x0e\x7d\x9b\x4b\xd9\x8d\x24\x90\x7e\x23\x99\x29\xc9\x1a\x4d\xdc\x53\x44\xdc\x53\x34\x75\x5f\xa3\x57\xee\x7b\xf4\xda\x7d\x8f\x7e\x73\x3f\xa0\x37\xee\x5b\xb4\x70\x9f\xa3\x53\xf7\xb7\xd2\xde\x51\x8e\xed\x72\x37\xb2\x4b\xbc\x78\x28\xae\x3f\xb9\x3f\xa0\xc8\xfd\x03\x9d\xb9\x2f\x50\xec\xbe\x44\x1f\xdd\x1b\xf4\xc9\x3d\x43\xd7\xee\x35\xfa\xd9\x7d\x87\x8a\xaa\x6a\xb9\x2d\x4c\x26\x15\xb7\x6c\x0a\x26\xfe\xb2\x54\xa4\x1c\x6f\xa0\x5b\xf7\x19\xfa\xec\x7e\x45\xbf\xba\xe7\x92\x79\xdf\x68\x6a\xe6\x07\xb2\xf5\xde\xc4\x55\x1e\x8a\x18\x0f\x47\x32\x1a\x31\x8a\xb1\x2d\x27\x00\x3d\xb6\x5d\xd9\x5c\x6f\xb5\x02\xb9\x79\x1e\x30\x59\x12\xae\xd7\x3f\x82\xad\x9e\xf4\x8e\xab\x2d\xc5\x22\xe9\x01\x2c\xdb\xfe\x90\x54\x8d\xa5\x5b\xc8\x24\x4c\x1c\xc5\x93\x61\x90\x7c\xf3\x8c\x03\xd3\x8c\xe0\x08\x0e\x4a\x29\x2e\xc5\x86\x34\x32\x08\x06\xd2\x06\xc8\x36\x10\x08\xa5\x1b\x63\x65\x72\x1b\x02\x86\x28\x84\x28\xa9\x28\x80\x28\x96\xfb\x29\xd9\xde\x5b\x15\x02\x9e\x66\xe0\x90\x91\xeb\xfd\x6e\x72\x51\x14\xa1\x18\x7b\xc0\x39\xb4\x6d\xb9\x7b\xf8\x9b\x80\x46\x10\x93\x16\xc1\x36\xdc\xcf\xdc\x6a\x14\xce\xaa\xc4\xea\xfb\x27\x83\x06\x4f\x62\x58\xd6\x01\x62\xeb\x27\x09\xc8\x58\xca\xfc\x5a\x0d\xc4\xd6\x2b\x1c\x5b\xaf\x9e\x3a\x4d\xd3\x69\xd6\x63\x6b\x09\x91\xf1\x49\x7d\x2c\x34\x95\xd8\xfa\x74\xec\xac\x56\xb1\xf5\xe9\xa4\xd3\x2a\xd4\x62\x5c\xcb\x52\xab\x15\x88\xad\x6b\xec\x40\x64\xfc\x2a\x13\x06\x20\x12\x74\x0e\x81\x07\x62\xeb\x16\x42\xa8\x8b\x7a\x44\x71\x74\xd2\x5e\xad\x6c\xb9\x3d\x19\x58\x4b\x15\x7e\x93\x42\x37\x3b\xcf\x5d\x42\x40\x95\x07\x5e\xdf\x0a\xa7\xd3\x88\x70\x40\x51\xaf\x2e\x30\x69\x38\x10\xa2\xd8\xba\xc5\x34\x81\x99\xa9\x3c\x22\x79\x91\x25\x27\xb3\x00\x8a\xad\x49\x96\x26\x9b\x0f\x4d\x81\xac\xd9\x85\x4f\x7b\xd0\x55\x78\xf2\x02\x9e\x95\x48\x92\x4d\x24\x49\x86\xa4\xb7\x1b\xc9\x2a\x0c\x37\xd0\xdb\xc0\x4d\x99\x70\x19\x3f\x27\x14\x36\x3e\xaa\x0e\xa9\xd5\x40\x91\xea\x46\xac\x48\x1e\x5b\xf1\xd3\x9e\x9b\x94\x1f\x38\xae\x2d\xd6\x8a\x69\x7f\x64\x3d\xa1\x77\x84\xcb\xf5\x54\xd5\x6c\x81\xa0\x2d\xb1\x4a\x21\x65\x18\x99\xbd\x7a\x6c\xfd\xdc\x00\x91\xd9\x81\x4f\x7b\xae\x48\x16\x29\x1f\x45\x8a\xc4\x38\xe1\xfd\x8c\x07\x62\xeb\x95\x89\x63\xeb\xd7\x03\xc7\xb6\x57\x02\xe8\xa9\x7c\x7d\xea\xd8\x36\x0a\x41\x0c\x05\x02\xb1\x3e\x14\x34\xa1\x7a\xa7\xb9\x1d\x4b\xf7\x40\x73\xaf\xa9\x4c\x77\x3e\xa6\x82\xe0\x9e\xe0\x94\xd3\x55\xa4\x4a\x29\x18\xa4\x99\xb9\x26\x1b\x3c\xd3\x84\x50\x96\x4f\x33\x92\x44\xb4\x0f\x42\x7c\x4a\x86\xf4\x09\x0d\x9e\x4c\x06\x85\x3c\x97\x8e\xe0\x6a\x25\xc7\xbc\x9a\x03\xf2\x73\xe1\x86\xa3\xac\xac\x04\x40\x31\x10\xb5\xaa\x02\x51\x55\x56\x2a\x1d\x34\xe9\xc3\x39\xb1\x6e\xf0\x07\x02\x18\x3a\x27\x42\x05\xb5\x7e\x11\x6f\x51\xfa\x36\x16\x6f\x5c\xbe\x3d\xcf\x4a\x3e\x57\x6f\x49\xc9\xe4\x2d\x29\x29\xde\xb2\xfd\x89\xf2\x0e\xb5\x28\xa2\x2e\x10\x9c\x6b\x6e\x40\x76\x6e\x7c\xac\x11\x5f\xa3\xa5\xc7\xa2\x2a\x5f\xfe\xef\x53\x70\xf4\x31\xd0\x62\x3e\xfe\xe1\x5e\x04\x9f\x3f\x0a\xc1\x98\x8f\xdf\xef\xc0\x51\x77\x39\x77\x2f\x30\x65\x71\x96\x9d\x5f\xa2\x09\xbe\x93\x5b\x8a\x06\xba\x70\x8d\x27\x06\xb2\xc5\x1c\xb0\x46\x4b\x7c\xf0\xaf\x2f\x51\xfd\xcb\xc4\x3c\x40\x0b\x7c\xf0\xaf\xa7\x07\xe8\x0a\x1f\x0c\xbf\x7c\xf9\xd7\x77\x75\x73\xb0\x1a\x7e\x19\x01\x68\xdd\xad\x47\x07\xb3\x7c\x42\xbc\x2d\xce\xf8\xe4\xd8\x1e\x24\xa0\x29\x06\xc1\xa0\x41\x5c\x02\x4d\xc3\xd0\xbc\x5b\x66\x2a\x80\x09\xc2\x63\xa6\x6d\xed\xb1\x46\xa8\x6d\xed\x99\xd4\xa5\xda\x62\x6d\x56\xb0\x64\x4d\x37\xd4\xaf\x90\xf1\xe5\xcb\x77\x35\x3d\x12\xc9\x65\xe9\xe0\x3f\xb9\xbb\x62\xfc\x0b\x0c\x5c\xc3\x24\xd2\x1f\xc8\x2c\x3d\xe2\x59\x19\xd0\x94\xc6\x56\xd4\x28\x87\x5a\xc9\xbd\x18\xdc\xad\x53\x83\x3f\x52\x32\xf8\xe3\x43\x32\x64\x65\xf5\x05\xb3\xdc\x0b\x40\x06\xf2\x7a\xb7\x62\x84\x64\xb4\xb3\x92\x42\x2a\xb5\xa0\x0a\x65\x28\x03\xfa\xf2\xd1\x40\xe3\xfb\x81\xde\xdc\x0b\xb4\x59\x02\xfa\xf1\x7e\xa0\x67\x8f\x06\xfa\xe9\x7e\xa0\xef\x1e\x0d\xf4\xe7\xfb\x81\x7e\xbd\x17\x68\xbb\x04\xf4\xf6\x7e\xa0\xcf\x1e\x8d\x69\x02\xd4\x04\xf2\xe7\xa4\xdb\x1f\x08\x1d\xc9\x6d\x92\x16\xdc\x55\xd1\x79\xb1\xa2\x83\x7f\x81\x5f\xe1\x0a\x0c\xcd\xc6\xe8\xcb\xe4\xcb\x04\x82\x81\xeb\x0e\x80\x7c\x84\x83\x83\x4d\x2c\xba\x25\x2c\x7e\xc5\xc1\xd0\x19\x0d\x6c\xb7\x01\x82\x61\x73\x64\x82\x40\x59\xb0\xd8\xb6\x01\x77\xe2\xf1\xfc\xd1\x0d\x5e\xc8\x8b\x59\x0d\x67\x17\xd4\xd3\x47\x43\x9d\xdc\xdf\x37\x1f\xee\x05\xda\xda\x40\xd5\x46\x0f\x02\xfd\xfe\xd1\xf8\xbe\xba\x1f\xe8\x6f\x8f\x06\x7a\x7a\x3f\xd0\x17\x8f\x06\x7a\x76\x3f\xd0\xb7\x8f\xa6\xec\x9b\xfb\x81\xbe\xbe\x17\x68\x99\x89\xdf\xe8\x77\x51\x05\xdc\x03\xe7\x9e\x51\xf4\xa6\x58\xc7\xe2\x1e\xb9\x5a\x80\x54\x00\xf4\xc3\xa3\x96\xc3\x3f\xdd\xdf\xfa\x3f\x1e\x09\xd0\x21\xad\xfa\xbd\x40\x5f\x15\xd6\x68\xb7\x80\xe4\x2a\x3b\xe2\xa8\xa9\x4d\x8c\xdf\x57\x95\x4c\xf6\x8c\x4a\x45\x3f\xee\x28\xfa\xd4\x69\xae\x56\x4e\xb3\xf4\xc5\xcf\xa5\x2f\x1c\x53\x2c\x3e\xc6\x61\x1c\x70\x90\xad\x4b\xbe\x42\x40\x20\x22\xa2\xb6\x96\xf6\xed\xef\x55\xb5\x9d\x52\xdf\xa7\x11\x19\x87\xc1\x44\xe1\xa7\x7f\xf1\xa9\xf0\x85\xfa\xde\x34\x6c\xdb\xd6\xa2\x81\x7d\xae\x84\xaa\x16\x37\xa6\x53\x42\xff\xc7\x6a\x14\x82\x98\x93\x4d\xea\xfc\xb3\xaa\xf0\x99\x86\xaa\x5e\xf8\x3b\x7d\xd7\x39\x5d\xcc\x14\xc2\xa4\x0f\x7a\xae\xa6\x6b\xfc\x54\x02\x1e\x58\xf3\x1d\x64\xd4\x6b\xfa\xa5\xe8\xaa\xa8\x5c\x17\xc1\xec\x04\x27\xeb\x46\x36\xc8\x80\x51\x01\xcc\x0d\x2c\xaa\x96\x91\x04\x22\x51\x27\xdd\x56\xa7\x09\xda\x18\xe3\x62\x72\x56\x55\x19\xa3\x5f\x0b\x6a\x5f\x5a\x2a\xcf\xff\xc7\x46\x5b\xc9\x03\xdb\x4a\x48\x55\x1f\xe4\xcb\x59\xb9\x92\x2b\x7e\xc2\xef\xfd\x84\xb4\x11\x47\x6d\xed\x13\x46\x4a\x9d\x77\x4e\x17\xe4\x8f\x30\x20\xef\xd4\xa2\x3a\x0f\x4e\x7b\xa2\x14\x67\xc0\xeb\x42\xd7\x34\x4c\x03\x42\xf3\x16\xf0\x83\xae\x58\x5e\x1a\xb6\x81\x9a\xf2\xfd\x69\x37\x7d\xcb\x2b\x09\x2a\xf1\xca\xf6\x04\x4a\xad\xa0\xdb\x4a\x57\x0f\xe4\xf0\x9e\xe2\xd5\x83\xd9\x2b\x7f\x25\x46\xb3\x5f\xee\x9a\xab\xea\xd1\x1c\x6d\xab\x72\xe7\x88\x8e\x8b\x5f\x25\x40\xca\x63\xda\xdf\x0a\x7b\xcb\xb8\x1e\x6f\x47\xa6\x7a\x6c\x4f\xb7\x7d\xb0\x6d\x7c\xcf\xcb\x3c\x92\xee\x61\xec\x18\xe3\x93\x72\x25\x81\x15\xed\xa0\xae\x5e\xdd\x92\x6c\x8c\xf2\x72\x85\x5b\x06\x3a\x4f\x06\x3a\x2f\x0c\x74\xbe\xad\xde\xd2\x40\xbf\x4a\x07\x7a\x5a\x5b\x19\xb1\x05\x29\x0f\xf6\xb4\xa4\x16\x34\x75\xb3\xdd\xcb\x07\xb6\xfb\x76\x5b\xbf\xec\x1c\xf3\xb3\x87\x7c\xb5\x31\xec\x2f\x49\xb6\x02\x37\x4c\xbb\xc8\x81\x17\x5a\xde\x53\x2d\xfd\x5a\x6b\xbe\x49\xb4\x55\x1e\x29\x9b\x17\x28\x55\xc6\x24\x52\x91\xd1\x56\x6e\x7a\xc1\x58\xdd\x4f\xf1\x71\x9c\xda\x40\x8c\x71\x6c\xc9\x5d\x0f\x19\xa7\x2d\xdb\xb1\x40\x73\xf5\x26\x37\x1b\x50\xbc\xbe\x21\xe0\x2e\x3d\xda\x74\x8d\xa7\x37\xe8\xc9\xd3\x5f\x0c\x24\x52\x5c\xe3\x69\x63\x71\xf0\xb4\x31\x39\x78\xfa\xd9\x40\x5c\xe5\x37\x5e\xbb\x4f\x4f\xdd\xa7\x67\x4f\x9e\x2e\x0d\x94\x9c\x79\xba\x43\xe3\xd9\xa9\x81\x8c\xf7\xa7\xc6\x08\x4d\xbc\x5b\x91\x70\x16\x07\x13\xef\xd6\x40\xc6\x69\x98\x3c\x9c\xc7\x24\x52\x4f\x3f\x93\x49\x90\x3e\x9f\xcf\x63\x96\x3c\xfe\xc0\xa8\x7a\x38\xf3\x78\xcc\xc4\xe3\x08\x65\x07\xa8\x0a\xa4\x82\xa7\x80\x29\x40\x0a\x84\xfa\x5a\x7d\x6a\x8c\x90\x3a\x68\x75\x87\xc6\x3f\xbc\x20\xf6\x98\x04\x4e\x2e\x59\xf2\x78\xea\xb1\xf1\xdc\x40\xc6\xb3\x25\xa3\xbe\x7c\x17\xa9\xff\x88\x03\x22\x7f\x7c\xf1\xf6\x2c\x9e\xc5\x11\x17\x00\xc9\x92\x13\x79\x77\x1f\x19\xef\xc6\x3c\x54\x4f\x6f\xc3\xab\x34\xf1\x05\x19\xab\xc7\x04\xd9\x53\xad\x6e\x55\xaf\xaa\x52\x55\xa8\x57\xa7\x6a\x53\x95\xa9\x9a\x54\x1d\x0a\xbe\x02\x9d\x19\x9f\x9c\x11\x2c\xcf\xbb\xff\x7f\xf6\xde\x7d\xbd\x6d\x1b\x79\x18\xfe\xdf\x57\x61\xf3\x6b\x55\x40\x1c\xca\xa4\x72\x68\x4b\x19\xd6\x93\x38\xc9\x36\xdb\x9c\x1a\x27\x3d\xd1\x5c\x2f\x4d\x41\x12\x63\x9a\x54\x49\xca\xb6\x62\xf1\xd2\xde\xe7\xbd\xa4\xf7\x16\xbe\x07\x27\x12\xa4\x28\xc7\x69\xbb\xc7\xdf\xaf\xcf\x6e\x2c\x02\x03\x60\x30\x18\x0c\x66\x70\x98\xd1\xef\xe5\x3f\x3f\x7e\x2d\xf6\x81\xba\x2e\x26\x36\x00\x10\x2e\xdd\x29\x32\xbe\xfc\xc5\xfa\xf2\xc2\xfa\x72\xf2\xee\xcb\xef\xc4\x28\x0e\xbe\x7c\xf1\xab\xc1\x8f\x93\xcd\x6a\x4b\xdd\x18\xda\xb6\x6d\xd9\x8e\x65\x3b\xef\x6c\xdb\xe5\xff\x1b\xd8\xb6\xfd\xab\x81\xc7\x9b\x7b\x53\xf5\x85\x81\xfa\x45\xb9\x7a\x1c\x9f\x2c\xe3\xd8\x2d\x4a\x77\xbe\xb5\xe5\x9d\x2a\xb2\xff\x05\x7d\x76\xb7\x6b\x27\xd7\xba\xb3\xb0\xaa\xd8\x27\x9e\xe3\x30\x40\xce\xf0\x9f\xb8\xa3\x52\xcd\x92\x4f\x5c\x50\x51\xf3\xa7\x0b\x6c\xde\x85\xdf\xf6\xfe\xe4\x35\x78\x94\xa7\xdb\x5b\x3f\xa6\x0d\xc0\xad\xcd\xbf\xa6\x25\x2e\x01\xe0\x2e\x5e\xcb\xb4\xd2\xb5\x9e\x84\x5a\x71\x79\xed\x51\x76\x50\x07\xd2\x30\xcd\xca\x9b\xbe\x97\xf9\x3b\xc9\x80\x8a\xcb\xab\x67\x31\x25\xfa\xc7\x7a\xbd\xe7\x00\x77\x88\x3e\x8d\x66\x4b\x91\xbf\x67\x83\xc1\x3d\x2c\x18\x51\xb2\x9b\xf0\xe0\x67\x57\x59\x54\xc8\x3c\x0c\x42\xa2\x0f\x44\xbc\x3f\xdd\xc3\xfe\xe0\x9c\xae\x20\xc1\xe5\xc6\xdb\xf5\xa2\x71\x8e\x99\xf5\x7a\x14\x15\xda\x33\x96\x8c\x07\x36\xa2\xfc\x11\x31\x14\x65\xc9\x8f\x42\x3c\xef\x26\x4c\xe3\x34\x73\x0d\x1b\x76\xd9\xff\x0c\xe1\x27\xde\x35\x82\x24\x8f\xac\xb3\x38\x08\xcf\x8d\x12\x14\x90\xf3\xcd\xd7\x5d\x60\x19\x9d\x68\x40\x36\xec\x0a\xb8\x26\xd0\x2c\xa3\x34\x69\xd7\xd5\x05\xb8\xa2\x71\x9c\x5e\x35\x2b\x14\x75\xb6\x91\x5b\xd2\x0e\xdc\x36\xe0\x2e\x82\x19\x4d\x8a\xa0\x03\xc3\x0d\xd0\x70\x15\xe8\x28\x0e\x1f\x3c\x00\xf9\xff\x26\xdc\xd5\x3c\x2a\xa8\x51\xfa\x50\x91\xef\x9b\x07\xb0\x2b\xfe\xdf\x42\x32\x8b\x66\xf3\x62\x83\x90\xac\xd6\xdb\xe0\x37\x28\xca\x0b\xb4\x47\x47\xc0\xb6\x09\xcb\x41\x65\x03\x9d\x05\x36\x08\xac\x90\xdf\xe8\x67\x85\x7d\x83\xd2\x15\xf2\xdb\xe0\x37\x29\xfe\x8d\x42\x69\x5b\x91\x0e\xca\xdf\x5e\x40\x0d\x81\xaf\x7b\xc4\x6e\x4c\x5d\x7c\xb3\xd7\xbc\x10\x28\xfc\xef\xea\x47\xd0\x85\xfe\xec\xed\xdd\x6a\x41\xe5\xd3\xb7\xa3\x20\x49\xd2\x62\x37\x0c\xe2\x78\x37\xd8\xe5\xad\xef\x06\xf9\x6e\x50\x4d\x36\x03\x97\x2a\x06\x80\x78\x4b\x36\x9d\x89\x87\x57\x67\xf2\xef\x74\x76\x5a\x64\x4b\xca\xbb\xa3\x72\xb4\x14\xe1\xfe\x81\x27\xf3\xee\x90\x2a\x1a\x42\x22\x23\xa2\x83\x77\x73\x4e\x57\xae\x41\xf3\x30\x58\x30\xc1\xf9\x5d\x71\x11\x1b\x32\xce\x6a\x3d\xe7\xab\xa7\x3f\xac\x07\x14\x0f\x1a\xe0\xa8\xc0\x65\x09\xa2\x9e\x38\x4a\xce\xa3\xe9\xea\xd3\x35\x48\x40\xbd\x2c\xa3\xfb\xbb\xb4\x1b\x81\xfa\x22\x81\xaa\xa0\x86\x46\xc2\xeb\x5f\xa3\x96\xbf\xe6\x4c\x67\xb9\x6b\x2d\x0c\xba\xab\x96\x77\xf4\xba\xf8\x74\x57\x6a\x58\xde\x1b\x1f\x03\xa3\xae\x24\x6c\x4e\x8b\xe5\xe2\x4d\x10\xd3\xa2\xa0\x1b\x55\x49\xef\xd0\x6f\x1e\xbd\x78\xfa\xee\xdd\xd3\xd3\xa3\xd7\x2f\x5e\xbf\x3d\x56\x3e\xbb\x64\x24\xa7\x11\x3d\x18\x8e\x4c\x93\xe2\xfa\xb4\xc4\x1e\x15\x07\xdf\xf0\x50\x52\x1d\xc5\xa5\x8b\x06\x8f\xfa\x5e\xe1\x0f\x38\x1f\xe8\x7e\x67\x3d\x1b\xbe\x7d\x00\xce\xbd\x07\xe0\x7c\xfd\x00\x86\x0e\x17\x3b\x3e\x34\x9f\xbe\xea\x02\xde\xa3\xbe\x69\xc0\xae\x61\x66\x5e\x51\xfd\x4a\xfc\x52\xc6\x12\x7b\xd8\x8c\xc2\x49\xec\x51\xc0\xd3\x82\x2a\x4d\x84\x98\x7b\xc8\x23\xbf\x6d\xc5\x97\xfb\x44\x81\x5c\x0b\x96\xb9\x24\xdf\xc8\xa8\x96\xc3\xfb\x23\xd3\x8c\x61\x69\x12\xc7\xbe\xad\x86\x25\x2c\x61\x89\xeb\x31\xbc\x9d\xa7\xbb\xce\xba\xf6\xbd\xde\xc1\xa1\xbf\x3f\xbb\xe8\xf0\x3e\x68\xf4\x0c\x42\xe8\xd8\xe8\x05\x17\x8b\x91\xe1\x1a\x07\xf2\x33\x2e\xd8\xd7\xa1\xfc\x9a\xf1\x2f\xa3\xfc\xf4\x8c\xe8\x6c\x1f\xcd\x8b\x62\x91\x8f\xdd\x93\xfd\x93\x7d\xef\x6f\x27\xb9\x6f\xe2\x6e\x6c\xbe\x3a\x08\x76\xe7\x19\x9d\x12\xe3\x2b\x93\x9a\x5f\x19\x87\xec\x8f\x71\xb0\x1f\x1c\xea\x6d\xdf\x32\xa3\x36\x5c\xc6\x2f\xb2\x34\xa4\x39\x77\x41\x0a\x7b\xf6\x9d\xe6\x93\xfe\x26\xb0\x20\xc5\x7a\x7d\x53\xe2\xc1\x87\x3c\x4d\xf8\x8b\x93\x41\x18\xd3\x20\x7b\x11\x25\x94\xec\x39\x70\x87\x36\x3a\x67\x1b\xdd\x86\xe5\x4d\x09\x7b\x4e\x5d\x85\xcc\xe8\xc2\xb1\x19\xf0\x51\x3c\xd8\x11\x01\x0c\x4e\xec\x7b\xf7\x4e\xbc\x7d\xcc\x8f\x4e\xf3\x79\x34\x2d\x90\x8a\x93\x23\x9c\x37\x73\x27\x50\x5a\x47\xf6\x4f\x32\xf9\x62\x40\x3e\x52\x0e\x48\xb4\x11\xfe\x40\x89\x58\x85\xec\xd1\x7c\x99\xa8\x33\xaf\x92\x5f\x9d\x29\x7a\xbd\x82\x13\x4a\x79\x6f\xd1\xfb\xc6\xc1\xb9\x44\x32\x0c\xcd\xb7\x49\x28\x63\xa4\xa4\x90\x6b\x08\x69\xc8\x41\x30\x58\x26\xa2\x13\x39\xc3\x5a\xb8\x08\x39\xe5\x31\xde\x78\x08\xe0\x60\x20\x42\xd7\x76\x20\xbb\x47\x07\x51\xfe\x94\x41\x22\xee\x80\xaf\x0a\x32\x57\xd7\x99\x36\xef\x1f\x35\xc9\x5e\xe1\x7c\x3b\xfd\x51\x41\x2e\xd3\x68\x22\x77\x5b\x6e\x4a\xb7\xc0\x83\x65\x4e\x4f\x45\xd0\xa0\x5c\x66\xee\x11\x52\xe8\xc9\x8c\x58\xda\x27\xf7\x60\x7a\x4e\x57\x24\x19\xcb\x38\xfe\xae\xc1\xc5\x9c\x01\x01\xf7\x9b\xcf\xc8\xe4\x52\x98\xce\xc4\x5d\xc9\x33\xf9\x57\x5f\x2b\x55\x4e\x3b\xa5\x22\xa6\xab\x13\x76\x42\xc3\x34\x0b\x58\x77\x04\xd4\x55\x90\x9f\xca\x8e\xd3\x89\xbb\xe7\x80\xa4\x5d\x47\x24\xbd\x40\x8d\x5b\x59\xf2\xbb\xcb\xdc\x7f\x36\xda\xff\x1b\xf2\xf6\x4e\xae\xef\x85\xd6\xc9\xf5\xbd\xa9\xdf\xc7\xc8\x3b\x99\x8c\xc4\xdf\xeb\xa1\x6d\x9d\x5c\x0f\x43\xbf\xef\x9d\x5c\xdf\x67\xbf\xbf\xa6\x3e\xcb\xc8\x4f\x8e\xfd\x3e\xde\xbf\x10\x6f\x40\xf3\x2a\x1e\xe0\x4e\xd5\x06\xc9\xbd\xfb\xbe\x78\x47\x4d\x72\x6f\xe8\x2b\x37\x30\x23\x11\x73\xc9\x30\xf6\x08\xc9\xc5\x4b\xfa\x0b\xf1\xfb\x9e\x5f\x57\xd3\x78\x59\x1a\x70\x39\xcc\xd9\xb2\xee\x3d\xd7\x27\x46\xca\x25\xcf\xa1\x3d\x12\xe3\x1a\x93\xa5\x9a\x3c\x10\x12\xbe\xff\xf1\x3c\x29\x50\xcc\x1b\x15\x96\x69\x88\xc5\x4e\x57\x88\x3b\xd5\x98\x56\x13\x3b\xea\x52\x8c\x53\x17\xd1\x40\x8c\xb3\x34\x9e\x18\x15\xd0\xb0\x1b\x68\x12\x5d\xd4\x30\xf7\x3a\x41\xa2\x22\x88\xa3\xb0\x86\xba\xdf\x09\xb5\x4c\x26\x34\x8b\xa3\x84\xd6\x80\x0f\xba\xd1\x62\xa2\xbe\x06\xfa\xba\x1b\x2f\xf9\x18\xb2\x86\xfb\xa6\x1b\x6e\x1e\x4d\x26\x34\xa9\xc1\xbe\xed\x06\x63\xd6\xe5\x39\x65\xea\xe5\x72\x36\xd7\x3a\xfc\xad\x4e\xec\x06\x51\xef\xd7\x59\x67\xad\xac\xf0\x90\xdc\xb3\x7b\xbd\xf0\xe0\xde\x37\x55\xd9\xc8\xb3\x7d\x2f\xfc\xd2\xb1\x7d\x2f\xf5\x75\xc8\x6f\x39\xe4\xb7\x3a\xa4\xd3\x0d\x79\x9f\x43\xde\xff\xa6\x6a\x74\x6b\x9d\x8e\xcd\x41\x1d\x5b\x87\xed\xaa\xf5\x1e\xa7\xda\x7a\x7d\x5f\x50\x4f\x06\x66\x16\xa9\x3b\xfc\xce\xa1\x64\x52\xe2\x88\xcc\x79\xcd\xa4\x7c\x2e\x3c\xe0\xce\xfe\x7a\xbd\x0d\xc0\x49\xcd\xc1\x55\x09\x5e\x64\xc2\x83\xd6\x4c\x0e\xc8\xf0\xc1\x03\x1c\x4d\x91\x14\xde\x0b\x32\x39\x24\xce\xc3\xb1\x30\x1b\x16\x42\xd3\xb3\x0c\x73\xe2\x46\xde\xe4\xf0\xeb\xb1\xe3\xda\xbe\x37\xf9\xf2\x1b\x7f\xc0\x85\xd5\xce\x74\xac\xe8\xb5\x70\x55\x1f\x17\xe2\x1a\x58\x87\x6e\x23\x63\x1c\xeb\x5a\x24\xc2\x50\xd7\xd1\x51\xc4\x9b\xf8\x6e\x63\x76\x6d\x64\x57\x97\xce\x8c\xe1\x06\x15\xee\x89\x5e\x5d\x74\x51\x01\x2e\x3b\x53\x57\xdb\x28\x76\xc1\x29\x76\xc1\x29\xd6\xeb\x5d\xf2\xaf\x4b\xf9\xb5\xe2\x5f\x2b\x41\x4d\xde\xe4\x8c\x5c\x08\xf5\xf2\x52\xfc\x59\xed\x24\xe3\xe9\x18\xa9\x9e\x0a\xfa\x56\xf2\xda\x80\x4d\x03\x68\x86\x5d\xa4\x7a\xde\x0d\x7e\xd6\x02\xaf\x09\x39\xab\x68\x36\x2b\xd9\x7f\xda\x35\x55\x42\x94\xb1\xd5\xeb\xe9\xdf\x67\xad\xef\x7a\x5a\x8e\x03\x17\x05\xd5\xf0\x4c\x67\x10\x54\x83\x71\xc6\x3e\x36\xcd\x36\x3d\x85\x43\xdf\x66\xd7\x41\xa0\x8b\x80\x56\xdb\x10\x0c\x1a\xeb\x13\xd3\xc5\x82\xee\x05\xfb\xd3\xca\xd2\x8e\x54\xeb\xa4\x93\x81\x6e\x35\x45\x94\xe2\x7a\x8d\x50\x6a\xd4\xa6\x24\x97\xff\xb5\x62\x21\xd3\x0d\x83\x2f\x35\x51\x13\xcd\xaa\x90\x5a\xcc\x76\x84\xf7\xa6\xe6\xd2\x2f\xaf\x7d\x73\xa7\x89\x37\x25\xc4\x1d\x71\x4e\x3c\x1f\x32\xa9\x48\xd4\xce\x40\x29\xa6\x83\x79\x90\xbf\xbe\x4a\xaa\x3d\xae\x0c\x33\xbd\x42\x78\x36\x9c\x04\x45\x60\x19\x66\x66\x7e\xc5\xf4\xe9\xa4\x65\xde\x52\x2f\xf3\xb1\xf9\x95\xf1\x95\x76\x1d\x50\x2d\x81\x63\x63\xd7\x30\x0b\xa9\x17\xed\x1a\x98\xe9\xfe\xd5\xa6\x2c\xe7\x18\x94\x8e\x91\xf4\xbb\xc8\x12\x4c\xc3\x9a\xce\xaa\x38\xe1\x24\x6a\x8c\x7c\xaf\x87\x96\x5e\x8b\x73\x19\xb8\xdf\x82\x83\xe6\x27\x17\xe2\x18\xbb\xca\x51\xa3\x50\x68\xb2\xd9\x19\x32\x4c\xd1\x26\x36\x30\x77\x96\xde\xc6\xe7\x8c\xe1\x73\xd6\xc0\xe7\xec\x53\xf8\x9c\x09\x7c\xce\x9a\xf8\x6c\xec\x3b\x68\xf8\x9c\x05\xe1\xf9\x8c\xbb\x5c\xb0\x9a\xa8\x9d\xd5\xa8\xd5\x0c\xcc\x51\x94\x18\x8a\xb6\x19\x68\x9d\x8f\x5d\xa1\x00\x10\x86\xad\x3e\xe7\x64\x91\x69\x9a\x14\xd6\x15\x8d\x66\xf3\xc2\xe5\x80\xd8\xe5\xca\xc0\x36\x78\xe9\x7c\xcb\xb5\x07\x0f\x18\xa8\x54\x0a\x6e\xad\x5d\x84\x64\x95\x90\xd8\xad\xd6\xf4\xad\x85\xb8\xde\xed\xf2\x60\x40\x05\x72\x6c\xfb\x4b\xcc\x8a\xc9\x25\x7e\x5b\xa9\xcb\x28\x8f\xce\xa2\x98\xe1\x26\x21\xb1\xdb\x5a\xef\xb7\x15\x2d\xe8\x75\x61\x69\x6a\x2b\x53\x5f\x2c\x55\xa8\x1e\x98\x36\x58\x8b\xd0\x18\xd2\xf1\x57\x07\xf9\x22\x48\xc4\xe6\x14\x9b\x1c\x79\xcd\xeb\x6c\x4a\x98\x31\x5a\x62\xd3\x38\x64\x25\xe5\xc4\x65\x66\x28\x2b\x73\x68\xb8\xb2\x30\x27\x17\x2b\xac\x0c\x88\xd1\x1d\x0a\xf3\x8d\x14\x5a\x22\xbc\x43\x07\xf4\x7a\x91\x66\x45\x4e\xd2\xcd\xc7\x9c\x55\x2c\x90\x61\x77\x68\x87\x8c\xd4\xa6\xe9\x84\xc6\xd1\x45\x54\xd0\x6c\xbd\x36\x06\x06\x44\xa4\x18\x5c\x04\xd7\x4f\xe8\x82\x3b\xcb\xb8\x29\xdb\x2f\xa2\x77\x29\x12\xde\xef\x6f\x96\x64\xb9\x5e\x3b\x6a\xb7\xfc\x9c\xae\x72\x14\xe0\xc1\x34\xcd\x9e\x36\x42\x6b\xc7\xa2\xcd\x90\x04\x5e\xec\xc3\x94\x14\x83\x3c\x98\xd2\x5e\xaf\xe9\xd9\x39\xc4\x30\x97\x67\xb6\x1d\x3e\x9f\x44\xf0\xb1\x10\xc3\x84\x24\xec\xcf\x82\xe4\xe3\xdc\xcc\xcc\xd8\xe5\xaf\x32\xf6\xa6\xf2\x89\xbf\xe1\x09\xa7\xc5\xbb\xa2\x26\x9f\xaf\xe4\xeb\x75\x95\xcc\xdb\x12\xa9\xb8\xd7\xd3\x31\x0f\x71\xed\x47\x7d\xaf\x26\xc1\x7a\xbd\x3c\x88\x70\xe5\x5a\x06\x85\xb0\x80\xa5\xe9\xe0\x9d\xd4\x5b\xf8\x24\xe4\xe1\xf7\x30\xa4\x65\x3d\x1c\x11\x93\x43\x71\x50\x14\x34\xe1\xbf\x97\x89\xfa\xd2\x28\xa8\x79\x1b\x44\x19\xc9\x3a\x47\x22\x25\xd9\x20\xbd\xa4\xd9\x55\x16\x15\xe2\x18\x23\x60\xc3\xc1\x94\x2c\xee\x8e\x79\xa3\xaf\x7b\xe4\x53\x04\x2c\xaa\x9e\x14\x35\x5f\x68\x8f\x4b\x5f\x71\xef\xe0\x1d\x47\x68\xeb\xb5\xe5\xec\x91\x56\xe0\xc2\xf5\x3a\x1b\x08\x14\xc6\xd4\xad\x9e\xc5\xea\x44\x2d\xb0\x08\x7f\xdf\xb9\xc1\x52\x85\xa0\x50\x0b\x47\xd9\xc1\x3c\xda\xa3\x85\x25\x49\xa4\xed\x16\x61\x88\x49\xae\x6b\x5b\x21\xfb\xe4\xc1\xb9\xa6\x24\x18\x55\x16\x73\x38\x52\x7a\xee\x27\x08\x33\xf5\x62\x9f\x31\xd7\x67\xf0\x0f\xe7\xbb\x54\xf0\x5d\xd5\x20\xaf\x47\xf4\x6f\x84\x78\xe6\x7a\xcd\x80\x84\x46\xc4\x73\x7b\x3d\xde\x1a\x51\xae\xd8\x2b\xbf\xde\xa1\x46\xcf\x9b\xd2\xf5\x78\x67\x18\x28\xd4\xc6\x65\xaf\x87\xb6\xf5\x1c\x97\xbc\x5a\x8a\x0a\x2f\xf1\xf9\xa6\x0a\x04\x65\x53\x34\xe0\x9b\x9a\x4d\xbb\xf6\x66\xf8\x6a\x47\x05\xb6\x7b\xa4\xe1\xbc\xbe\xd3\xcd\x7d\x03\x62\x10\xe5\x8f\x97\xd3\x29\xcd\x5a\x6e\xef\xab\x74\x1e\x38\x7b\x43\x54\x6d\x04\xf9\x90\x6e\xb5\x3b\x3d\xea\xa1\xe0\xbf\xcc\xb9\x7f\xda\xf1\x72\x62\x53\x7b\xbb\xd1\x1e\x02\x66\x6c\x4a\x30\xad\xd2\x4b\xaa\x6d\x0a\xf6\x5b\x0d\xac\x52\x4a\xbd\xc4\x27\x37\x91\x9b\x40\xec\xee\x39\x20\x33\xdd\x9b\xb2\xac\xc3\x1d\x26\xbe\x60\xfe\x48\x95\x05\x26\xaf\xd4\xef\x8c\x29\x20\x31\x53\x94\xab\xb4\xca\xff\xe6\xe0\x82\x50\xc8\x06\x21\x29\x20\x1b\x4c\x36\x77\xc9\x07\x29\x67\xb7\xf5\x7a\xdb\x49\x6a\x01\x37\xf5\x11\xad\xbb\x67\xf3\x58\x8e\x09\x0f\x17\x3b\x68\xc6\x51\xe2\x3b\x0d\xac\xf4\xa4\x9e\x29\x8a\xd2\x92\xca\x6a\x2a\xbf\x0b\x66\x95\x4c\xdf\x68\x71\x13\x16\x6e\x84\xa2\x6f\xbc\x4c\x27\xcb\x98\x1a\xe5\xf6\x83\x5f\xe3\xf4\x94\xe6\x12\x4c\x15\xdb\xb3\x05\xba\xc5\xa6\x7f\x4c\xa7\x57\x70\x8f\x30\x19\x77\xb2\xf3\x4d\xaf\xa8\xd6\x0f\x26\x34\xee\xf7\x1a\xce\xf5\x19\x7b\xf7\x7a\x94\xf1\x53\xdd\x4a\x5d\x40\x2c\xe5\x12\x31\xe1\x47\x98\x3b\x3c\xc2\x22\x7a\x23\x63\x87\x2d\x68\x27\x60\x48\x07\x30\x46\x9b\xda\xa2\x07\xb4\xc4\x30\xe4\xc8\xc8\x30\x10\x15\x81\xeb\x73\x95\x48\x18\x0a\xd9\x60\x82\xd8\xb4\xdc\x3c\xef\x11\x61\x33\x07\x67\x51\x32\xe1\x78\x41\xa4\x5d\x06\x66\xf4\x49\x3a\xcc\x91\x56\x6f\xc7\x1d\xcf\x87\x94\xe7\xe8\xb2\x23\x52\x26\xad\x98\xb8\xf6\xe2\x5a\x60\x28\x58\x73\x69\xb7\x27\x92\x0d\xf9\xdf\x34\x7c\xc4\x44\x90\xde\xe6\x06\x0b\x1e\xa6\x17\x65\x83\x9c\x38\xb8\x44\xde\x67\xc8\xd0\x86\x52\x33\x6e\xaa\x38\x14\xbb\x1d\x0b\xc9\x27\x56\xa6\x4e\xa1\x59\xdf\xc0\xd4\x64\x63\x72\x37\xd9\x18\xa0\x96\x58\xc4\x5d\x72\x91\x71\xe5\x3f\x4d\x26\xf2\xc6\xaa\x60\x27\x11\xc9\xd0\x50\xc4\x13\xfb\x06\x43\xce\xfd\x8f\xc0\x72\xcb\x41\xb3\xae\xee\x0e\xe2\x34\x14\xd6\x7e\x54\xef\xa8\x27\x63\xdb\x4d\x20\x20\xd9\x60\x12\x89\xb3\x67\xc8\xeb\xdc\x60\xec\xd8\xb6\x1b\xf0\xd7\x8f\xc5\x3c\xa3\xf9\x3c\x8d\x27\x10\xd7\x00\xcb\xf1\xe0\xa1\xbb\x84\x90\x64\x4c\x25\x7c\xc3\x14\xb9\x2c\x79\x21\x43\xd9\xd4\x60\xe1\xf8\xde\xd0\x0d\x61\x4e\xb2\x41\x18\xe4\xf4\x98\x26\x79\x54\x44\x97\x14\x26\xf5\xf6\xfd\xbc\xd7\x9b\xc3\x82\x35\x94\x9e\xd3\xe4\x98\x2e\x02\x4e\x7e\xb8\xa8\xab\x59\x8c\xf7\x77\xcd\xfd\x99\xbb\x80\x4b\x92\x0d\xa6\x51\x32\x79\x14\xc7\x2f\x79\x74\xc9\x1c\x56\x75\x55\x97\xbd\xde\x25\xcc\x18\x4e\x51\xc2\xb3\x8f\xe6\x41\x26\xb1\x3a\xab\xab\x9b\x8d\x1d\x77\x06\xa7\x24\x1b\x44\x13\xb8\xaa\xd3\x4f\xc5\x8d\xa8\x53\x78\x4a\x32\xae\xa8\xc1\x75\x9d\xf9\x74\xec\xf9\xee\x53\x38\x26\xd9\x20\x9f\xa7\xcb\x78\x72\x9c\x66\x05\xbc\xae\x01\x8e\xd7\xeb\x63\x38\x27\x19\xbf\x83\x9c\xc0\xa3\x3a\xe7\x7c\x9c\xba\xe7\xf0\x8e\x95\x4c\x33\x96\x77\x54\xe7\xbd\xeb\x8e\xb1\x4c\x07\x79\x98\x66\xd4\x2a\xc4\xdf\xd2\x7d\x07\x2f\x15\x89\xa2\x8f\x14\xde\xd6\x9d\x7e\xd9\xeb\xbd\x84\x37\x7c\x20\x8a\x70\xfe\x28\x8e\xdf\x31\xa0\x1c\x3e\xd4\x20\x6f\x7a\xbd\x37\xf0\x84\xf5\x37\x09\xe3\xe5\x84\x2a\xd2\xbd\xaa\x41\x9e\xf4\x7a\x4f\xe0\x79\x0d\x72\xcc\x9a\x85\x17\x35\xc0\xf3\x5e\xef\x39\x3c\x23\xd9\xe0\x92\x66\x67\x69\x4e\xe1\x63\x9d\xf7\xac\xd7\x7b\xb6\xf3\x4f\xbc\xd9\x90\x2e\x58\x72\x4e\x6e\x14\x67\xbb\x11\x28\x36\x76\x73\xa8\x38\xd6\x8d\xa1\xcd\x9d\xee\x14\xa2\xfc\x48\xe7\x45\x77\x02\x4d\xce\x73\x2f\xa0\xc9\x62\xee\x0a\x36\x19\xca\x3d\x83\x68\xe2\x5e\x01\xe3\x13\xf7\x1a\x9a\x94\x75\x5f\x81\x4e\x47\xf7\x05\xd4\x3c\xe3\xbe\x06\xce\x21\xee\x23\x10\xec\xe0\x1e\x81\xa4\xa9\xfb\x11\xd4\x08\xbb\x6f\xa1\x39\x9e\xee\x87\x12\xd4\xf6\xee\x51\x1a\xcb\x38\xa2\xa8\x10\xc2\xa1\xa8\xee\xad\x93\xfa\x2e\x41\x0d\xf6\xa9\x93\xd2\x38\xca\x0b\x42\x81\x56\x3b\x7f\x39\x15\x97\x30\x37\x8b\x89\x95\xaa\x1d\x4f\xf7\xd0\xd1\xb4\xfd\x2a\xd3\x73\xfc\xb1\xfe\xe1\xde\x70\x4b\xce\xdd\x73\x4a\xe1\xaf\xf9\x34\x4e\x67\xe8\x2b\x4b\xfd\x77\x92\x1c\xf3\x76\x77\x17\x62\xc8\xdc\x5d\xe3\x2b\x26\x39\xc3\xa0\x40\x14\xbe\x32\xbe\x92\x1e\xea\xe4\x36\xe7\xe9\x22\x63\x63\x46\x45\x21\x9a\xe5\x22\xe0\x7f\x25\x49\x64\x2a\x44\x4c\x68\x2c\xe3\x58\xa5\x40\x2a\xcb\x8b\x5e\xb2\x15\x5c\xc4\x89\x17\x1b\x41\x39\xe4\x24\x1d\x64\x34\x5f\xc6\x45\xae\xc7\x76\x1f\x9c\x86\x22\x1c\x03\x1f\x54\x66\xee\x37\xf9\x51\x13\x0c\xbd\x9e\x6c\x81\x99\x79\xfc\x84\x95\xf7\xbc\xd7\xab\x23\x4d\x55\x61\x8b\x64\x0e\xca\x49\x5e\x39\xb2\x93\xa9\x58\x36\x70\x2a\xee\x0c\xa3\xbc\xde\x9b\xdd\xe8\x7c\xc7\x85\x11\x71\x2b\x64\x63\xac\xec\xce\xb1\xb2\xf5\xb1\xb2\x7d\xd7\x30\xa0\x20\x9e\xcf\xb7\x6a\xf5\x4e\x2a\x0e\xc5\xf5\x3d\x11\x75\x46\xbe\x09\x57\x4d\x2a\x1e\x47\x9f\xdb\xee\xf2\xa6\x62\x72\x90\x8e\x12\x93\x38\x58\xee\xab\x32\xa1\x10\xa1\x8c\x07\xd5\xd7\xaa\xa9\xb4\xa6\x9b\xe6\xa0\xba\x05\xe8\x43\xea\x8a\xe2\xb4\x59\xb6\xac\xa9\xb5\x85\xa1\xff\x20\x8d\x3c\x1f\xba\xe6\x42\x93\xe9\x45\x3d\x20\x99\x96\x4d\x35\x15\x82\x4a\x50\x77\x23\x36\x36\x8f\x8e\x57\xd9\xf7\x29\x8f\xd2\x57\xd1\x2d\x3d\x08\x46\x29\xa7\x1b\x67\x8c\x20\x09\xe2\xd5\x47\x8a\x44\x37\x55\xff\x32\x2f\xf5\x21\xa3\x61\x9a\x4d\xdc\x14\xf8\xe6\x84\x9b\x96\x70\x23\x98\xfa\x65\xb0\x70\x13\x90\x0c\xee\x46\xd0\xa2\x2c\x6d\x52\xb6\x28\xab\x21\x90\xf3\x43\x1c\x6c\x57\xe5\xcb\xb2\xbe\xbd\x73\x53\x4a\x1f\x2b\x15\xbe\xcb\x83\x78\xb4\x64\xf8\x2a\xa0\x90\x64\xde\xd2\x87\x29\xb1\x61\x4e\x1a\x1c\xc3\x44\xa9\x2a\x36\x3d\x98\x8f\xa6\x66\x7d\xce\xb6\x01\xe8\x4d\x1b\xc4\xab\x74\xf4\x09\x5f\x7a\x72\x6f\x32\x48\x82\x0b\xea\x13\x89\xb4\xeb\x58\x13\x39\xbf\xd7\x6b\xa7\x04\xf5\x71\x40\xec\xf5\x5a\x7d\x1c\x3a\x9b\x2e\xe7\xbf\xa7\xab\x5d\x91\xbb\x3b\x0f\xf2\xdd\x22\xdd\x3d\xa3\xbb\x87\xbb\xf6\x6e\x90\x4c\x76\x0f\xc8\xae\x63\xe0\x9d\x09\x11\xad\x89\xb3\xb2\xdc\x9b\x68\xcd\x2a\x49\xd7\x18\xa8\x89\x1c\xa7\x46\xaf\xf8\xaa\x80\x42\x98\x60\x35\x74\xa1\x1c\xba\xe5\xef\x1f\xba\xb2\x35\x74\xb9\x3e\x6e\xd5\xec\x90\xc8\x75\x5f\xda\x51\x73\x9c\x5f\xf2\x25\x74\x10\x30\x1d\x9d\x47\x5b\x6c\x2a\x94\x96\xe3\x26\xdc\x51\x2f\xaf\x84\xbb\x33\x15\xfd\xe0\xfe\xd7\x78\x4f\x20\x26\x45\x5b\x3a\x87\x75\x1d\x31\xd3\xb1\x62\xbe\x17\xda\x90\xd7\xf3\x1a\x64\xca\x40\xa6\x30\x21\xc5\xa0\xa2\x08\x2c\xea\xfc\xc9\xf8\xa6\x74\x27\x70\x51\xe5\xe7\x70\x59\xe7\x5e\xb0\xd2\x17\x7c\xaf\x90\xef\xe5\xc8\x78\x58\x2b\xb2\xe7\xc0\x8c\x58\x0e\x9c\x11\xbb\x73\x4a\xa6\xf2\xf6\x1d\x5f\xb0\x8c\x93\xe4\x7b\xba\x72\x77\x0d\xb5\x36\x19\xdc\x7f\x2e\x7f\x2f\x96\xc9\x25\xea\x94\xcc\x07\x72\x79\x49\x71\x25\x43\xc5\x7a\xf7\x6c\x19\xc7\xbb\x05\xbd\x2e\xf4\xf5\x2d\x85\xaf\x0c\xd8\xe5\xda\x9e\xbb\xfb\x15\x56\xc9\xa7\x42\x01\xc4\xad\x95\xa6\x12\xc2\x95\x98\xb8\x22\xe9\x5d\xa4\xf0\x53\xe2\xf9\x70\x4d\xec\xd1\xf5\x41\xa8\xe6\xda\x75\x35\xcf\x8e\x49\xe8\x5d\xfb\xfa\xda\x7c\x92\xbc\xd9\x5c\x8b\x8f\x07\x72\x81\x96\x6b\xb2\xc2\xe1\x35\xa3\xe3\x39\xb1\x47\xe7\x07\x57\xaa\xf2\xf3\xaa\xf2\x47\xe4\xca\x3b\xf7\xe1\x1d\x39\x56\x94\x79\x84\xe1\x88\xdc\x94\x3b\xef\x06\x51\xce\x35\xa7\x31\x3a\xf2\x1e\xf9\xe4\x9d\xe8\x34\x70\xa7\xc6\xaf\xd9\x3f\x4f\xc5\x22\xf1\x4e\x51\xc3\x15\x80\x4e\x93\x2a\x4d\x8d\x69\xbd\x96\xa5\x9c\x6a\x19\xe5\x5d\xe2\xb9\x7a\x77\x1e\x75\x93\x9e\xb5\x80\x71\xf9\xba\xd7\x43\x67\xac\x13\xe5\x8c\x3c\xf5\xec\xfa\xbe\xe5\x4b\xf2\x54\x79\x89\x79\x4b\x9c\xd1\xdb\x83\x97\xa3\xb7\x0c\x6e\x66\x92\xa7\xde\x5b\x7f\x67\xb6\x4f\x5e\x6a\xed\x1a\xbc\x5d\xd1\xcc\x6e\x70\x49\xb3\x60\x46\x5d\x03\x66\x42\x81\x7b\x43\xe4\x48\xef\xcc\x0e\x2d\xa7\xd7\x43\x6f\x08\x7a\x63\xce\xf0\xfe\x50\xc7\xdd\x38\x6e\x95\x7e\x23\xb8\xed\x03\xd9\xeb\x64\x8f\xf5\x7a\xef\x56\x02\x9d\x1d\x12\xc5\x05\x4d\x1e\x35\x4e\x92\xa3\x39\x0d\xcf\x77\x95\x42\x5b\x33\xfb\x07\x8c\x01\xad\xd6\xeb\x53\x35\x68\xb8\xd7\xfb\x20\x46\xf8\x09\x59\x78\x4b\x7f\xe7\xc9\xf8\xc9\x20\x5d\x16\x8b\xa5\x5c\xda\xb9\x90\xc9\xa0\x96\x1b\x6e\x24\x05\x4d\x0a\x82\xea\x6f\x84\xb2\x4b\x27\xcf\x93\x49\x14\xd2\xdc\x3d\x1d\x34\x13\x4a\xec\x22\x56\x37\xb9\x89\x0a\x7a\xe1\x06\x20\xea\x77\xbd\x3f\xa3\x6e\xbf\x84\x4b\x81\x29\x6b\x02\xe3\xb2\xba\xf3\x90\xa3\x14\x57\x0b\xd7\x2b\x62\xc3\x73\x92\x2a\xc6\x7e\x75\xf0\x7c\xf4\x6a\xcb\x42\xdc\x40\xe8\x95\x42\xc8\x7b\x55\x2d\xca\x41\xa7\x64\x5f\x54\xc2\xf9\xb2\x2d\xd9\xc3\xa6\x64\x9f\x97\xba\x72\xa3\xab\xa5\xdd\x32\xbc\x31\xb2\x27\x89\x08\x2b\x16\x25\x33\xc9\xf5\x27\x89\xa1\xdf\xfb\xb5\x21\x21\xf5\x93\x92\x83\x64\x94\xf1\x49\x5c\xbb\x8d\x2f\xbc\xcc\x97\x43\xac\x79\x92\x81\x80\x38\x90\x13\xee\x66\x6d\xb4\x3c\x48\xc5\xba\x2f\xaf\x7d\xd1\x31\xf5\x22\x6f\xe9\xb3\x65\xc4\x1f\xa8\xd5\x11\x42\xc2\x2f\x6e\xc5\x63\x9e\x27\xb0\xa9\x7f\xae\xd7\x03\xdb\x76\x70\x3f\xde\x71\xf6\x18\x90\x72\x3e\x1f\x25\x28\x87\x10\xbb\x88\x83\x26\xbc\xe3\x24\x84\xa0\x4f\x42\x5c\x72\xe4\x78\x71\xe2\x70\x8f\x5a\x01\xb7\x09\x15\x01\x78\x48\x4e\x5d\x33\x4c\xb3\xce\x9b\xa4\x2d\x92\x31\xad\x3e\x4a\x66\x83\xc1\x60\x60\x60\xa0\xe2\x00\xa7\xa9\xfd\x73\x6b\x4e\xd3\xd0\x95\xdb\xdd\x6d\x46\x54\x87\x72\x2d\x0d\x41\xb5\xe8\x7a\xba\x2c\xe6\x68\xbc\x16\x7c\xcf\x7e\x1a\xf0\xd7\xe3\xd7\xaf\x06\x62\xa9\x8a\xa6\x2b\x44\x61\xc3\x04\xd7\x82\x95\x32\x5b\x51\x9d\x61\x10\x91\xcb\x0f\xaf\xb2\xea\xf0\xaa\x3a\x06\xdb\x91\xb1\x07\x8b\xca\x1b\x76\x51\x62\x0c\xe2\xac\x5e\x6e\x46\x29\xd4\x14\xe6\x4d\x03\xb8\xd7\x8b\x44\x15\xdd\xaa\x84\x60\x9d\x9d\x42\xce\xc4\x5c\xbf\xc6\xce\xec\x84\x48\xb7\x13\x22\x61\x27\xc8\x08\x5d\xcc\x42\x60\x64\x63\x8a\x79\xda\x9a\xc9\xca\x9d\x82\x08\x3d\x4a\x6e\x22\x39\xe3\xdb\x70\x6a\x42\x0a\x4d\xa5\xdc\x49\x19\x53\x72\x4f\x7e\xe7\x74\x45\xf8\x17\x86\xb4\x7d\x09\xc4\xa8\xe7\xb4\x81\x7b\xbd\x54\x53\x84\x84\xc8\x0e\xb4\x14\xa2\x67\x33\xfb\x4f\xf6\x54\x50\x25\x60\x0c\xd8\x5a\xd2\xf5\x0d\x83\x2d\xe4\x93\xbb\x41\x44\xee\x0e\x95\xf5\x9c\x15\x46\x02\xdd\x30\x12\xe4\x95\x61\xea\xa5\x9b\xbc\x16\x4d\x98\xd1\x39\x60\x02\x95\x74\x28\xa2\x22\xa7\x85\xe3\x04\xf3\xd3\xc4\xa8\xa2\x74\x7d\x0a\x29\x24\xb3\x28\x55\x42\x4c\x6c\x08\x2b\xc9\x30\x8a\x0f\xc2\x51\xcc\x10\x8a\xbc\xd8\x47\x39\x2c\xf1\x8e\x5c\x1c\x96\x32\x78\xa4\xfc\x14\xe5\x35\xbe\xab\x66\x53\x9c\xce\xb6\x99\x6f\x3b\x5d\x73\x88\x1f\x35\x88\xc8\x7f\x14\x0f\xe2\x94\x07\x4f\x8c\xd9\x2c\xa9\xac\x33\xfe\x00\xa3\xd7\x6b\x12\xf9\xdf\xf3\x65\x1d\xd2\x9e\x96\x42\xb1\x71\xd9\x61\xb9\xfd\xb2\xc3\x3d\xcc\xa6\x13\xba\x2f\xb6\x8e\xbf\xc6\x10\xfc\xc7\xec\x19\xb7\x76\xea\xfe\x0d\x76\x8d\xff\xe7\xed\x72\xca\x5d\x47\xa9\xf0\x37\x05\x45\xab\x8d\x71\xe1\x16\x4d\xe7\x6b\x8d\xb2\x2a\xc2\x3e\x99\xf6\x7a\x48\xcf\x78\x14\x2f\xe6\xc1\x19\x2d\x48\xda\x48\xc6\xdb\xb7\x36\xb7\x6d\x4e\x6e\x88\xb8\x26\x82\x3c\x9a\x37\x6d\xa2\xd8\xc4\x91\x10\xa2\x0e\x19\x6f\xa4\x7a\xeb\xee\xd9\x52\x93\xb4\xdb\x9a\xa4\xe7\xd9\x55\x14\x75\xcb\xf1\x7d\x71\xf5\xb1\x68\x10\x09\x32\x71\x73\xa8\xc9\xef\x69\x6d\x07\xcb\xf1\xa8\xc4\x73\x93\x5a\x87\xd5\x2d\xfb\x44\xed\x6e\x29\xdb\x2b\x55\xaf\x4a\x1a\xcd\xe5\x24\xa8\x27\xef\x92\x04\xf5\x5c\x8d\x49\xa0\x4d\xcc\x90\x3f\xf1\x68\xcc\x89\x29\x09\x3a\xe6\x40\x75\xe7\xa5\xdd\x7e\xd7\x10\x42\xcd\xac\x79\xcd\xac\xcb\x06\xb3\xb6\xd8\x2e\xec\x62\xbb\x69\xf9\xdf\x23\x9b\x83\xf6\x6d\x13\xd1\x83\x7d\xef\xc4\x3a\xf1\x4e\xfc\x93\xfd\x93\x9b\x93\xf2\x04\x9d\xe0\x93\xfe\x89\x79\x32\x3e\x19\x9c\x9c\x9c\xfc\xed\xe4\x8b\x93\xb5\xbf\x3f\xdb\xe9\x3a\x55\x55\x75\x24\x9b\x5b\x8f\xc3\xce\x6d\xcb\xa1\xbe\x6d\x39\xf4\x5d\x2e\x17\x21\x22\x9a\x3f\xc6\x3a\x28\x52\xa6\x7c\x38\x56\x29\x09\x18\x6b\x83\x07\x08\x51\x6f\x52\xf8\x7e\xf9\xde\x5e\xca\xaf\xd7\x32\xce\xad\x5f\xf0\x89\xed\xbf\x74\x63\xfb\x4f\x5e\x76\x4b\x99\x81\x28\xb5\x20\xaf\xbe\x37\x15\x62\x08\xeb\x89\x54\xed\x5a\x89\x79\x17\x8c\x07\x0f\x5c\x07\xd4\x7c\x0c\xda\xd3\x30\x2f\x3b\xce\x82\xd5\xf2\xf7\x40\x2c\x7f\x0f\xf1\x16\x52\x8a\x48\xdd\xf5\x9b\xc4\xb4\x9e\x3d\x8d\xc5\x4d\x2c\x6d\xa9\x3e\x9d\xb4\x95\x8d\x2d\x7d\x6c\x69\x4b\xb5\x19\xd6\x58\xd3\x06\x0f\xf9\x9a\x96\xb6\xe7\xdc\xe6\x92\x96\x76\xad\x43\x8d\x65\xcd\xe1\x4b\x5a\xce\xc3\x44\x49\xcb\x6b\x46\xa6\x3c\x3a\x54\xa5\xca\xc3\x25\x86\xd3\xda\x8d\xed\x15\xf1\x7c\x78\x4a\xec\xd1\xd3\x83\xd5\xe8\x29\x1b\x8f\x2b\xef\xa9\x2f\x36\xbb\xb8\x15\x70\x26\x28\x76\xcd\xcc\x04\xb8\xa1\x6c\xcd\xca\x5d\x5b\xc6\x5a\xe1\xee\x11\xf8\xa4\x3e\x03\x7a\xbd\xa0\x61\x41\x27\x55\xd2\x65\x3d\xcf\x63\xf1\x62\x6d\x56\x5b\x69\xd7\x30\xc3\xc0\x1b\x40\x0c\xbd\x38\xc8\x8b\xe7\x35\x8a\xe6\x29\xc6\x6a\xe3\xe9\x8f\xb6\xab\x35\x7a\x0c\x33\x5c\x96\x67\xc4\x72\xb4\x9d\x29\xcf\x87\x73\xe2\xc0\x23\x72\x6a\xae\xe0\x1d\x71\x0e\x0e\x4e\x2d\x07\x8e\x88\x3d\x3a\x3a\x38\x1d\x1d\x35\x0c\xdc\x97\xc4\x86\xb7\xe4\xd1\xe8\xe5\xc1\xdb\x11\xd6\x11\x3b\xda\x40\xec\xd2\x7c\xfb\x29\xd4\x0e\xc8\x6c\xfc\x92\xbc\x75\x1f\x91\xb7\xf0\x56\x77\x7e\x87\x1e\x59\x2f\xf1\xfe\xd0\x7c\x89\x77\x1e\x91\xb7\x32\x0a\xaf\x16\x5a\xe8\xd2\x7a\x6b\x3a\x18\x3e\x90\xc9\x78\xe5\x56\xbd\x63\x2d\xae\xb0\x79\x0a\x4f\x88\xb8\x3f\xf1\xc1\x1c\xe2\x9d\x27\xde\x07\xd3\xf1\x09\x72\x0e\x0e\x8e\xb0\xd6\xf1\x57\xe4\xc3\xe8\xd5\x21\x79\x33\x7a\x65\xa9\x49\xf8\x9c\xbc\xb2\x1c\x78\x41\x32\xaf\xf2\x42\xfe\x1c\xf3\x59\xfc\xa2\xd7\x43\x57\xde\x73\x9f\x38\x18\x9e\x78\xaf\x7c\x82\x9e\x78\xaf\x4c\xc7\x3f\x38\x70\xd6\x0e\xee\xbd\x00\xc6\xa6\x47\xbd\x1e\x4b\xf6\xd7\x04\xbd\xe6\xb9\xeb\xd7\xde\x2b\x1f\x73\x98\xb5\x48\x11\xa5\x7b\xef\x7a\x3d\x74\x4e\x6e\xa7\xdf\xf3\x4f\x51\x8f\x91\x8f\x2f\xec\x33\x72\x0e\xe8\x8c\x3c\xc7\x07\xe4\x52\xc4\xd8\xdc\x69\x50\x6b\xd8\xbf\xb4\xce\x70\x59\x8a\x8b\xa0\x75\x93\xa6\xb3\x39\x68\x9f\x6a\xf4\x70\x26\x5b\x78\x4d\x9e\x94\x2d\x75\xe0\xec\x90\x54\x0a\x01\x3f\xdc\x1f\xd8\xb6\xe3\x9e\xb7\x85\x52\x84\xae\xe0\x02\xb7\x25\x53\xf7\x35\x99\x7a\x51\x28\x06\x02\x6d\x48\xea\x09\x9f\x8d\x6d\x37\xe3\x17\x90\x5b\xfd\x80\xb4\x06\x8a\xc6\xb6\x1b\x41\xc0\x2a\x68\x75\xad\x4b\x8c\x15\x9f\x10\x63\xc9\x7e\x25\x59\xa6\x75\x74\xa2\xdc\xaa\x9d\x1c\xc7\xe3\xd0\x9c\xee\xc7\xee\x74\xec\xb8\xe1\x5d\x3a\x59\xcf\xae\x3f\xfb\xb4\xed\x4e\x27\xcf\x0e\x64\x4c\x04\x24\xc4\x12\x71\x60\xe1\x2e\x16\x73\xde\xeb\x59\x0e\x37\x7c\x12\x92\xba\xf9\x7a\x2d\xbe\xd6\x6b\x84\x22\x92\x5a\x0e\xb6\x12\xd3\x39\x24\x45\xaf\x27\x37\x4c\xbc\x04\x22\x1f\xf3\x56\x2a\x13\x96\x7a\xa9\xe5\xf8\xbd\x5e\x6a\x25\x2d\x50\x96\x8e\x21\xbb\xe3\x6d\xd4\x96\x03\x64\x2d\xb2\xad\xcd\x83\xda\x8a\xc3\xd4\x7a\x4e\x27\x98\xc9\xf7\x7a\xcf\xce\x1e\x45\x07\xd9\x28\x6a\x41\x45\xd8\x5f\x33\x61\x98\x59\x91\xe5\xec\x68\x56\xf7\xb6\xf5\xd4\xde\xb6\x90\x6e\x5c\xd4\x14\x26\x25\x44\x7c\xf6\x66\xd5\xfe\x4d\xe3\xae\x34\xb3\x26\x21\x17\x6f\x45\xf9\x32\x91\xf2\xd7\xc7\x99\x16\xae\x0e\xf2\xea\x33\xe5\x8e\x3e\x85\x96\x51\x78\x81\x5f\x1f\xe4\x2c\x71\x34\x45\xf9\x7a\xbd\x71\x1c\xb8\xac\x8f\xdc\xeb\x34\xfe\x22\x0f\x2d\xeb\xad\x5d\xb1\x5b\xb1\xdc\xd8\xad\xa0\x68\xe9\xc5\x3e\xe4\x10\x61\xf1\x9a\x30\xef\xf5\x78\x80\x85\x2a\x41\xee\xd3\x2c\xeb\xe0\xa0\x58\x6e\x68\x44\x6a\x0f\xad\x52\xa0\x4b\x4e\x4b\xcf\xe7\xaa\x6d\x09\xfa\x5d\xc7\x02\xb7\xef\x3e\x8e\xb5\x97\x0c\x08\xbb\x28\x61\xec\x5b\x4d\x55\x14\x75\xdc\x6a\x43\x19\x49\xf1\x38\x93\xfb\x1c\x05\x24\xd8\xcd\x30\xb3\x79\xea\x4b\xf8\x18\x97\x58\xde\x79\x67\xa6\x66\x86\x9c\xfb\x18\x51\x8c\x3f\xeb\x42\x34\x1d\x5c\xd1\xb3\x45\x10\x9e\xbf\x49\xe3\xd5\x34\x8a\x63\xde\xc6\x84\x2e\x32\x1a\x06\x05\xd5\xe7\x7c\x09\x94\x99\x08\x73\xfe\x0c\x8b\x31\x5d\x14\x4f\x32\x9a\xf0\x02\xea\x83\x78\xfe\x2d\x57\x4c\xe3\x34\x98\xd0\xc9\xc6\x55\xcd\x19\x2d\xba\x6e\x40\x0e\xe2\xf2\xb6\xfb\xaa\xd1\xdd\x2b\x8a\x58\x45\x1b\x3d\x65\x2b\x23\xed\x98\x1d\x1d\xce\x9b\x32\xe4\x3c\xc4\x9d\xe1\xd7\x77\x13\x74\x43\xaf\x83\xb0\xe0\x97\x65\x95\x8b\x80\x72\x27\x1a\x5c\xde\xef\x04\x1f\x5c\xde\xef\x2c\x01\xd1\xe0\xf2\xe1\x96\x12\x0f\xb7\x96\xa0\x19\x8f\x4a\xde\x51\x2c\x62\x7c\xc7\xb0\x60\x7f\xef\xbb\x0f\xe5\xd5\x05\x36\x88\x15\x07\xdd\xa9\xef\xdd\x17\x24\xa9\xda\xe3\x7c\x9c\x2e\x93\x49\x90\x45\x34\x1f\x1b\x68\xec\xa2\xf1\x01\x39\x39\xc9\xd7\x7f\xc3\x68\x4c\xea\x43\x55\x2f\xb0\xa6\x8f\xac\x67\x27\x27\x13\xd7\x37\xc0\xc0\x6b\x06\x67\xe0\xad\xf9\x68\xcc\x6b\xf9\x02\x63\xf1\xb4\x0e\x22\xc2\x6a\x1f\x3e\xf0\x6c\xeb\x81\xbf\x1e\x7a\xb6\x75\xdf\x3f\x39\x99\xac\x9d\x93\x93\x09\xfb\xeb\x39\xd6\xb7\x3c\xe1\x44\xf8\xe2\x3e\x39\x19\xdc\x1d\x1e\xdf\xdc\x2b\x0d\x48\x89\x86\x86\x7f\xe3\xc0\xfd\xd2\x80\x80\x18\x27\x09\x3a\x49\xd0\xd8\x35\xea\xe3\x5d\xc3\xc5\x37\x5f\x97\x2c\x0d\x6b\x89\x6b\x17\xaf\x77\x3f\xf1\xdf\xfe\xfe\xae\xe3\x0e\xdd\x7b\xee\x7d\xf7\x81\xfb\xd0\xfd\xda\x75\x77\x5b\x09\xdf\x88\xc6\x70\xb3\xb5\x87\xcd\xd6\x22\xd6\xda\xdd\x1b\x6f\xb5\xea\xb2\xb4\x46\xc2\x37\x1d\x09\x8d\x6f\x67\x30\x1c\xdc\x1b\xdc\xef\xc4\xed\x01\xc3\xad\x85\x1c\x6a\x42\xe1\x1b\x07\x86\x65\x27\x8e\x0d\xdc\x5c\x91\xa6\x25\x7c\xdd\xc2\x8d\x7f\x36\x01\x6e\xc3\xed\x3e\xc3\x6d\x03\x19\x1b\x9c\xf2\xd3\x08\xdf\x13\x08\x6b\x08\xba\x0a\xe9\x2a\xe1\x61\x0b\x41\x81\x5e\x0b\xe0\x36\x04\xef\x6d\x41\x70\x78\x07\x04\xef\xb7\x10\x74\x6b\xaa\xca\x84\x07\x2d\x04\x15\x7a\x2d\x80\xdb\x10\x1c\x6e\x41\xf0\xde\x1d\x10\x7c\xd0\x40\xd0\xd5\x87\x9d\x27\xdc\x6f\x21\x58\xa3\xd7\x02\xb8\x0d\x41\x67\x0b\x82\xf7\xef\x80\xe0\x43\x0d\x41\xb7\xc9\x97\x8e\xab\x4f\x4a\x91\xf0\xcd\x56\x00\x1d\x41\x17\x35\xe7\x83\xc4\xe7\xc1\x06\x3e\x9b\x50\x0e\x7c\xcd\x30\xc2\xcd\xf9\xe1\x36\x05\xc4\x6e\x57\x42\x03\xb5\x5d\x6d\xc2\x62\xf4\xa5\x67\x5b\xdf\x06\xd6\xc7\x47\xd6\xaf\x4c\xac\x95\x78\xbc\x55\x50\x6c\xfe\xb7\xbf\xbf\xfb\x25\x2d\xe6\xb6\x9e\xf6\xa5\x73\x92\x68\x7b\x4a\xfb\x27\x79\xff\x64\xff\x64\x7f\xd0\xff\x62\x7f\x76\x01\x46\x23\x2b\xd9\x9f\xf1\x94\x22\x8b\x2e\x10\x53\x00\xb7\xad\x27\x7c\x85\x1b\xeb\x61\x45\xd0\xd8\xfd\x9b\xa1\x11\xec\x0b\xb6\x6c\xb8\x7f\xab\x49\x16\xb0\x34\x03\x63\xb7\x55\xaa\x2a\x94\xf0\x48\xba\xaa\x06\xac\x27\x8b\x45\x48\xa3\x7f\x03\x36\x68\xc3\x1a\x18\x8c\x99\x81\xcb\x9d\x7c\xcb\xc2\xbe\xa5\x0f\xcd\x0e\xb4\x71\xbd\x0b\xa2\xb2\x61\xc8\xb7\xe8\x07\x9f\x6c\x38\xb8\x73\xc3\x41\x67\xc3\xb5\xc2\x90\xb7\x55\x4b\xed\xc9\x56\xfd\x48\x23\xfb\x2f\x7b\xc0\x26\xd4\x20\xe3\xf4\x34\x4e\x27\x41\x3e\x3f\x9d\xb3\x7f\xaa\x27\x5b\xa7\xa7\x06\x44\xe4\x5b\xdb\xfe\xda\xf9\xf6\xdb\xe1\x83\xfb\x5f\xdf\xb7\xbf\xfd\xd6\xe1\xca\x84\x7c\x07\xf3\x4c\x62\xe7\x73\x6d\x42\xa5\xfe\x85\x26\xa2\xc7\x5a\x76\x4e\xf6\xff\x76\xa2\x00\x06\xe6\xf8\xa8\xc6\xfd\xc4\xff\x62\x1f\x96\xa4\xb6\x2b\x90\xf6\x6a\xac\xea\xf6\x2c\x4e\xcf\x82\x78\xac\x65\xb9\x19\x12\x89\x18\xf7\x7a\xe2\x97\xfa\x3b\x10\xaa\x75\xf5\x3e\x47\xa5\x43\xfc\xa9\x66\x72\x1a\x4f\x5b\x8d\xb0\x24\xd6\x04\xfb\x2b\xfe\xdd\xac\x9e\xa5\x32\xd3\x6c\xbd\x8e\xd7\x6b\xd5\x6d\x64\x68\xb7\xb2\x0d\x8c\x70\x23\x08\x7f\x6d\x8a\xee\xa1\x3d\xba\x5e\xef\x29\x53\xb9\x75\x9c\xc0\x74\xd7\x68\x8a\x8a\x3d\x52\x3d\x44\x6b\x6d\x0c\xeb\xa1\xc1\x6a\x83\x3b\x25\x96\xc3\x23\xb4\x47\x3c\x42\x7b\x81\xa8\x97\xfa\x90\x02\xad\x5e\x11\xa7\xd2\xe4\xb3\x1c\x66\xf2\x4d\xb0\x76\xb7\x81\x6f\x3f\x68\x71\x8b\x12\x59\x0b\xf5\x12\x9f\x90\x1a\x93\xa4\x51\x45\x81\x0f\xf5\x08\x11\xf3\xf6\x69\x88\x88\x86\x34\x56\xf5\xba\x36\x44\x72\x73\x30\xc1\x2a\x38\x52\xe4\x65\x3e\x29\xb8\x83\x0a\xc8\x40\x7b\xcb\xac\x79\x31\xd7\xe7\xc8\x1e\xd1\x9c\x5e\x2f\x5a\xaf\x53\xe6\x41\xae\x9e\x1e\x5c\xc0\xa5\x68\x4b\x3b\x04\x59\x11\x35\x54\x5a\xe2\x6c\xe3\x4d\x17\x9c\x91\xd0\x33\x4e\x4f\xf9\x53\x97\x0f\xf9\x69\x3e\x0f\x32\x3e\x3b\x7c\x38\x25\xe8\x82\xec\x7b\x7f\x1b\xf8\xe6\x17\x32\x32\xce\x59\xaf\x77\xc6\xaf\xfe\xaa\xbf\x83\xe7\x4f\x4f\xdf\xbc\x7d\xfd\xee\xf5\x7a\x6d\x18\x18\x8f\x0d\x31\x3b\x51\x9e\x85\xf8\xd4\x19\x18\xe6\x85\x6b\x18\x70\x45\x56\x95\x71\x0e\x4f\xc9\xac\x75\xad\x03\xae\xc9\xac\xce\x3f\x26\xb5\x2c\x34\xaf\x84\xa5\xfc\x54\x5b\x9a\x78\xf0\xad\x41\xdf\x1c\x23\xec\x9d\xf8\x37\xe5\xda\x67\x4b\x55\xeb\xbc\x64\xbf\xd9\xc2\xba\xba\xc5\x81\x07\xfd\x31\xb7\x52\x4e\x10\x5e\xef\x4e\xd3\x8c\x4d\x58\x91\xe0\x63\x56\xd1\x17\xce\xa0\x3f\x36\xb0\xc9\x84\x2f\xbc\x26\x97\xfc\x46\x67\x48\xe1\xbc\xda\xe8\x84\x47\xd5\x3e\x37\xbc\x23\x2f\x50\x08\xc6\xcb\x60\x61\x60\x38\x22\x2f\xa4\xcb\x75\x30\xc4\x7b\x48\x43\x9b\x16\x2f\xeb\x5b\x47\x96\x03\x59\x83\x57\x6a\xef\x5d\xdc\x8b\x19\x62\x1c\x53\x1c\x64\xa3\x2a\x86\x98\x57\xc8\xbb\x3e\x39\x2d\x78\xc4\x16\x48\x3c\xc7\xd7\x83\xe9\xbd\xfd\xc7\x56\xff\xe6\x1f\x5b\xfd\x87\x3b\x55\x7f\x7a\x3a\x09\x8a\xe0\xf4\x94\x9f\x9a\xbd\x51\xad\xf0\xac\x60\x32\x41\xac\x1d\xdc\x8a\xe0\xa3\x4d\x51\x48\xf4\x79\x1f\x59\x16\x9f\xf5\x28\x23\xd4\x8b\x7c\xcf\xf6\x31\x21\x04\x25\xa4\xc0\xeb\x75\xb6\x47\xb2\x5e\x2f\xd9\x23\x9a\x73\x9c\x4a\x18\x54\x0d\xbc\xd2\xe3\x11\x6f\x2e\x71\x1d\x6e\xfb\xf6\xa8\xbe\xc7\xc4\xdf\x9d\xf3\x37\xb6\xb7\x3d\x79\xef\x70\x6d\xd9\x7e\xc0\xc2\x74\x09\x7e\xff\x89\x7e\xe9\x10\x62\xf7\x7a\xf4\x80\x44\x25\xd2\x84\xee\xde\x63\xd9\x56\xc9\xf7\xb5\x5c\xcf\x6f\xc5\x0f\xd2\x82\xb5\x12\x5a\x11\x5a\x9d\xfb\xd7\x97\xb1\x51\x44\x32\x4e\x24\xbc\x5e\xd7\x78\x44\xeb\x75\xad\x21\xb0\x8f\xb3\x34\x8d\x69\xc0\x56\xf6\x68\x6c\x9c\x9e\x72\x71\x73\x7a\x6a\xec\x11\x22\x7c\xf2\x11\x42\x12\x3c\x4e\xbd\x8d\x5b\xde\xc5\x58\x25\xb9\x06\x5b\xb1\x0d\x9f\x5f\x1d\x5b\xb4\x42\x11\xa9\xcd\xfa\xce\xdd\x4f\xd1\x00\x1d\x8b\xad\x13\x97\x3f\x03\xe6\x00\x6d\x87\x21\xda\xc8\xa0\xbd\xf7\x88\xe2\xf5\x1a\x15\x84\xc2\x69\xaf\x77\xba\x1b\x25\xbb\x05\x5b\x1a\xd1\x63\x9e\xb1\x79\x77\x70\xcf\xa9\x37\x3f\x1b\xea\x4c\xfd\x58\xb9\x92\x6a\xb8\xc8\x56\x37\x05\xd9\xdb\x43\xd4\x34\x0c\x5c\x86\xfc\x0c\x97\xe2\x9b\xfa\x96\x15\x1b\x98\x63\x37\x97\x1b\x45\xad\x2b\x15\xb2\x15\x7c\xc3\xea\x91\x45\xae\xaa\x67\xb8\x75\x6d\x5a\x36\x6b\x48\xcb\x29\x95\x37\x27\xd6\x90\xd8\xc1\x2d\x4a\x94\xe1\x71\xa6\xb6\x98\x5e\x6a\x2f\x7d\xf9\x44\xd6\x77\x11\x9b\xf3\xef\x68\x7c\x24\x9e\x7a\xbb\x37\x65\x09\x7a\xc1\x09\x8d\xa9\xbe\xff\xd8\x7a\xe5\xc6\x16\x2d\xc6\xf0\x02\x6c\xb7\x51\xab\x47\xfd\x66\x5d\x33\x5a\x74\xbc\xd0\x6e\x94\x61\x23\x70\x54\x9d\xdc\x78\xd4\xaf\x9e\x5f\xf3\x33\x03\xc9\x01\x99\xa2\xf2\x53\xb9\xf1\x0a\x14\x8f\x19\x74\xb5\xbb\xf6\xb2\xf9\xfe\xfa\x93\xcd\xca\xfa\x8e\xc6\xb5\x0b\x4c\x56\x9d\x56\x7f\xb3\xce\x9c\xb6\x1f\xe3\x37\x1e\xb5\xd5\x14\x20\x47\xea\x2c\x85\xfb\xdc\x4c\xdc\x82\x5f\xf2\x28\xe1\xed\xdd\x47\xc7\xf3\x9b\xe0\x1d\x63\xd2\xd1\x27\xc8\xc8\x13\x8e\xf9\x8e\x9a\x12\xd9\x81\xcd\x23\x31\x57\x67\xd8\x96\x33\x2e\x06\x8b\x74\x81\xb0\xfb\x5a\xf5\x34\x03\x07\x83\x8d\x71\xb3\xc9\x3b\x0c\x5d\xbb\xbd\xdd\xec\xc0\x56\x03\x56\x78\x99\xef\x39\xad\x6e\xb4\xc7\x45\x16\x7b\xd2\x5c\x1b\x80\x72\x45\xad\x51\x72\x93\xfa\xfa\x13\x46\x55\x30\x21\x4f\x90\xae\x95\x25\x07\xf6\x58\x9d\x14\x51\x28\x7c\xec\x66\x5e\xc2\xd0\x22\x6a\x4c\xde\xdc\x7d\x4c\x6e\x98\x30\xe3\xb6\xdc\x4b\xb8\x08\x16\xec\x17\x7a\xb7\x5e\xbf\xc5\x20\xc4\x9d\xc8\x2a\x9b\x75\x6e\x9f\x4c\xcf\xd5\x3d\x35\x09\xc3\x37\x96\xdf\xdc\x32\x00\x1b\xe5\x66\xb4\xd8\x28\xb4\x85\xc2\x75\x21\x31\x7d\x9b\x85\xb6\xb2\x76\x5d\x8c\x2d\xfb\xfc\x5a\x8e\x20\xdb\x07\xad\x74\x30\x99\x10\xfd\x9b\x91\x7b\xab\xf4\x50\xd4\x94\x15\x26\x5d\x15\x6e\xe9\x43\xb3\xbc\xec\x07\x97\x82\xcf\xe0\x23\x7c\x47\xd0\xb3\x0e\x7e\x65\x4a\xfe\xab\x0d\x2f\x72\xbd\x5e\xe1\xd9\xcc\x52\xa0\x9e\xed\x8f\x37\x1c\x20\x54\x76\xc6\x94\xa9\x1b\x75\x84\x39\xbe\xb0\x56\xb7\xf4\x53\xc8\xa5\x79\x90\x62\x58\x12\x67\xdf\x86\x98\x78\xfe\x28\x60\x6a\x89\xbc\xa8\x43\xbd\xc0\xdf\x59\x92\x47\x28\xac\x42\x21\x63\xc8\xbd\xc0\x27\xd1\x21\x71\x86\x76\xaf\x17\xd6\xde\x30\x87\x36\xdf\x47\xf8\x80\x82\x5e\x2f\xc4\x4a\xb0\x85\x1c\x83\x1d\xe1\x69\xc8\x72\x60\x42\x72\xf6\x4d\x5d\x86\xe6\xc8\x34\xe7\x07\x51\xaf\x17\xab\x6b\x81\xcb\x91\xf2\x26\x19\x7a\x73\x1f\x2e\x09\x7f\xa7\x75\x41\x98\x7c\xbb\x18\x5f\xb8\x36\xec\xa1\xc9\x78\x81\x26\x70\x89\xdd\x04\xc5\x70\x09\x19\xc6\xa2\xcf\x01\x49\x47\x96\x15\x8c\xd4\x73\xae\x5c\x1e\x0e\xee\xa1\xd5\x78\x81\x56\xa2\x04\xeb\x91\x2c\x14\xa6\x49\x11\x25\x4b\xba\x4b\xcb\x49\xaf\x37\x11\xf3\xec\x12\x43\x2c\x7e\x5d\xd4\xa1\x2c\xe2\x12\x15\x98\x69\x2c\xf0\x91\x9c\xa3\x4a\x38\x7e\x1c\x3f\xab\xc4\x92\xfb\x11\x6c\x0c\xb7\x1f\x74\x83\x54\x2d\xcf\x2b\xbd\xc8\xe2\xa5\x12\x39\x0e\x59\xa5\xb6\x26\x5e\xe1\x13\xea\x7d\x34\x99\xda\xaa\x5f\x61\x51\x16\xdd\x47\xd3\x11\xc0\x1f\x99\x4d\xc7\x81\x8b\x6a\xe5\x89\xbc\x8f\x3e\x49\x36\x8e\x68\xf2\xab\x88\x2d\xc5\x55\xf4\xf6\x9b\x30\xc8\x29\x5b\x9b\x94\x3d\x27\xdd\x60\xed\xf0\x74\xa7\x9d\x0e\xfc\x45\xaa\xc8\x1c\x76\x66\x42\xc6\x74\x6a\x01\x71\x6f\x3b\x04\x64\xde\xd0\xaf\x4f\xc6\xab\x93\xca\x0c\x97\xe8\x19\x9f\x4f\x10\xe1\x52\xb3\x5b\x1e\xd7\xf3\x81\xa9\x48\xe3\x6b\xa5\x76\xb8\x86\x51\x4d\x0d\x42\xd2\xf5\xba\x20\x24\x68\x84\x3b\x54\xe5\x34\xbf\x5d\x5c\x05\xd6\xde\x44\x14\xeb\x75\x63\x1f\x08\x6b\xfe\xca\xbe\xdb\x72\x04\xfe\x3f\xc7\x09\xd3\x86\x0b\xaa\x42\x16\x45\x46\x42\xaf\x68\x66\x60\xc8\xaa\x94\x34\x9e\xb0\x94\x1d\xdd\x05\x0b\x13\xc7\x1b\x87\xef\x94\xfb\x4a\xa7\x40\x89\x2d\xaf\xde\xe6\xd1\x47\x4a\x6c\x90\xaf\xa3\x2f\x22\x96\x2b\xae\xb4\xc6\x13\x9a\xcb\x85\x9b\xb5\x98\x2b\x8f\xe0\xf2\x35\xcf\x39\x5d\x5d\x04\x0b\x6e\x8f\xbd\x0c\x16\x50\xa8\x6b\xc5\x41\x9e\x47\xb3\x04\x15\x18\xe8\x81\xa3\x12\x45\xcd\x55\x83\x58\x8f\xc0\xc7\xc5\xb9\x58\x33\xcf\xe9\x4a\x35\xcf\x2f\x85\x12\x71\xcf\x95\xcd\x33\xad\x6d\x2f\x53\x9f\x5a\x60\xbe\xea\xd1\x10\x4d\x8a\x6c\xa5\xef\x9e\xe4\xdb\xb3\x96\x1b\x59\x74\xf0\xe2\xed\xfb\x97\xac\x5f\xa0\xed\x9e\x0c\x4e\x2f\x82\xec\xfc\x29\x83\x79\x94\xbf\xcf\xe9\xa4\xb1\x62\xb0\x61\xd5\xc8\xd4\xeb\x71\x73\x94\xbf\x80\x90\x19\x82\x96\x8a\x18\x92\xb2\xdc\x66\x05\xf6\x2f\xeb\x10\x77\x5d\x0a\xec\x5f\x5e\x3e\xf3\x95\x70\x11\x20\xaa\xff\x94\xef\x23\xd5\x8d\x41\xb3\x61\xed\x8b\x97\xc7\x7a\x3e\x61\xeb\xb7\xde\x2b\x31\x54\x1b\xab\x5f\xa2\x5c\x34\xf0\x51\x5b\xaf\x85\x03\xbe\xc1\xcb\x47\x3f\x9f\xfe\xf8\xe8\xc5\xfb\xa7\x3b\x3a\x03\x28\xc3\x7f\xa7\xbe\xc4\x49\xbd\xd6\xf4\xf2\xf9\x31\x42\x30\x48\xe8\x75\x81\xf0\x68\x2f\x1f\x4c\xd2\x84\x8e\xea\x24\xd1\xee\x92\x08\x3f\x02\x72\xf0\x99\xd8\x52\x3f\x99\x78\xab\x9e\x48\xca\x86\x99\x26\xb0\xe4\xd7\x80\x97\x18\x92\x31\xe2\xb2\x7b\x09\x4b\x46\xa1\x04\xbb\x3a\xa9\x97\x90\x90\x25\xd8\x84\xa4\x96\xb5\xf9\xc8\x3c\xbd\xa4\xd9\x34\x4e\xaf\x0c\x5c\xea\xd4\x4a\xb4\x09\xd2\x6c\x38\xfa\x48\x9b\x84\xbc\x4d\xe7\x95\x85\x84\xd2\xc5\x3b\x81\x1b\x8a\x49\x8b\xb3\xd8\xc4\x29\xe4\xd3\xa8\x46\x1b\x2d\x65\x2b\x51\x57\x7a\xba\x5a\x51\x3b\xa1\x63\x94\x36\x26\xd2\x66\x6b\xa9\xe0\x10\xe5\x8e\x59\xa7\x2d\x85\x94\x28\xc7\x0e\x09\x6e\x70\xd2\xb8\xcd\x68\x29\xa4\x2d\xc6\x6c\x0e\x40\xda\xe0\xc3\x14\x4c\xb3\xa2\x6d\x4d\xe5\xc3\x9a\xe9\xa4\x07\x0f\xe5\xab\x9e\xa3\xd8\x22\x07\xcb\x22\x1b\xae\x24\xb4\x46\x19\xad\x69\x83\xd6\x22\xdd\x2b\xfc\x31\xda\x10\x71\x55\x9e\x2e\xfd\x6a\x49\xa3\x08\x24\x8b\xe8\x92\xb0\x21\x1c\xe5\x6c\xa5\x75\xc9\x86\xb8\xac\x74\x76\xf1\xca\xcd\xb2\x6a\x32\x78\xe2\x8d\xbf\x7c\xc0\xef\x37\x7b\x3b\x8d\x92\xc9\x1d\x39\x4c\x75\x78\x2c\xb9\xa8\x32\x74\x93\xbb\xaa\xca\xb2\x3e\xa5\xf1\x27\x9f\xb6\x27\x93\x6d\xbc\x9e\xe0\xae\x9a\x25\x11\x12\x41\x84\x84\x0b\xcb\xc4\xcb\x7c\x36\x87\x85\xe0\x63\x69\x3c\x83\x4f\x66\x26\x1a\xdd\x84\x8f\x9b\x4a\xd3\x69\x2b\xc7\x84\x65\x31\x30\xbd\x9e\x8e\x71\x12\xb5\xdd\x65\x89\x63\xc3\x62\x59\x90\x74\xcd\xc6\x6e\x9b\xef\x0e\x15\x92\x16\x43\x48\xf1\x59\x42\x5a\xd7\xbe\x21\x3f\x3b\x1c\x32\x0a\xf3\x47\x2b\xc4\x45\xe9\x96\x09\xc1\x57\xb7\xca\xc7\xa2\xe4\x7e\xb9\xe4\x31\x4a\xdf\x30\x79\xec\xee\x39\xf2\x51\x4f\x9b\x15\xb1\x2b\x01\x94\x93\x3e\xc9\x52\x25\xe4\xbf\x07\xe9\xfc\x1f\x82\x34\xc7\xf9\x16\x54\x97\xbf\x07\xd5\xe5\x3f\x08\x55\xc1\x51\xdb\x91\xd5\x59\xed\x9c\xae\xf2\x0e\x04\x99\x68\xce\x75\xa1\xd4\x9a\xaa\xbc\xc6\x6d\x05\x97\xb7\x14\x64\x78\x47\x9d\x25\x05\x4d\x92\xcf\x23\x24\x6b\x2e\xbd\xa5\x39\xe9\x5d\x57\x5f\xdb\x32\x7c\xa3\xcc\x84\x3d\x42\x02\xee\x00\x1e\x89\x3d\x1b\xfd\x34\x4f\xab\x73\x94\x8c\xb0\x34\x78\x32\x35\x61\xe5\x1b\x21\x5e\x0a\x12\x2e\x1e\x9a\x2d\x17\xe9\x5f\x8f\x5f\xbf\xea\xbe\x24\xcd\xb0\x16\x16\x5f\xad\xb4\x82\x7c\x9b\xdf\x6a\xd6\xcb\x4c\xd3\x27\xfc\x71\x9c\x68\x51\x8c\x65\x2d\x36\x78\xd3\x15\x77\xb4\x71\x10\xbb\xc4\xdd\x58\x18\x86\x72\x5c\x24\xdb\xcb\x46\x98\x9a\x44\xde\x75\xe5\x6e\xf2\xb0\x69\xb8\x86\x99\xc9\x2e\xa3\x8c\x64\x4c\x0c\x32\x1d\xd2\x24\xc6\xee\xc1\x6e\x1d\x98\x88\x96\x25\x46\x29\x69\x5e\x7c\x1d\x17\x6e\x23\x81\x11\x8b\x47\x5a\x70\x6f\x4a\xfc\xa9\x1b\xaf\x09\x49\xf1\x38\xa9\xb7\x03\x0b\xa0\xd8\x4d\xda\x97\x5e\x3f\x71\x67\x51\xb7\x59\x3e\xd7\x6d\xe4\x7f\x8c\x35\x57\xb9\x90\xb4\xc5\x43\xe0\xa1\xc3\x2f\x5f\xa3\xa1\xee\x0b\x3d\x6f\x6e\x0f\x0f\x68\x12\xa6\x13\x3a\x2e\x06\x82\x54\xe3\x88\x59\xde\x22\xf1\xfd\xdb\xe7\x47\xe9\xc5\x22\x4d\x68\x52\xf0\xd4\x96\x4d\x23\x3d\x9a\xd6\xb7\xbd\xc7\x15\x1f\xf0\x5b\xf4\xc5\xd8\x30\x5c\x2a\x2f\x76\x17\xa6\xa3\xd9\x63\x71\xf7\x21\x8b\xac\x73\x47\x6e\x66\x48\x47\x44\x22\x22\xab\xd8\xd1\x30\x78\x63\x86\xbb\x79\x9a\xcf\xcf\xf2\x0b\xb2\x7f\xe2\xa1\x93\x49\x1f\x9f\xf8\xea\x50\x99\x62\xa0\x44\x0b\xaa\x76\xe2\x9d\x4c\xfa\xfc\xe2\x84\x61\x60\x28\xc6\xf5\x96\x4f\xe2\x51\x66\x18\xb1\x3f\x3c\xd4\x57\xc2\xa3\xe6\x79\x8e\xef\x93\x8c\x2d\xfa\xd4\x27\x59\xc9\x77\x40\x8c\xb3\x2c\x08\xcf\x69\x71\x1b\x22\xe8\xc4\x3b\xf1\xf1\x2d\x58\xd4\x28\x54\xbb\xfc\xac\x8d\x31\x6f\xc8\xf3\xab\x4b\x37\x1e\xf5\x41\xb5\xef\x65\x7e\x85\x88\xf4\x13\xdb\x81\x82\xd8\xcb\x50\x95\x66\xac\xd2\xac\x59\x29\xfb\x84\x02\xbb\x3c\xb9\x28\xcb\x12\x15\x24\x45\x37\x1a\xbd\x5d\x23\x49\x13\x6a\x94\x50\x60\x0c\x51\xa7\x1f\x5e\x79\xe4\xb3\xe1\x43\x77\x1c\xb9\xe2\x15\x2e\xbf\xdc\x55\xf7\xf9\x6f\xde\xf8\xff\xeb\xf9\xbc\xd3\x78\x8c\x94\x4b\x39\xa3\x67\x74\xb8\x3f\xd7\xf8\xab\xa6\x99\xb9\x3f\x03\x63\xd7\xc0\xaa\x24\x31\x30\xf7\x63\xa2\x54\xf8\x94\x68\xa1\x38\x54\x18\x0e\x62\xa8\xed\xca\x1d\xed\x35\x4d\x2a\x3c\x81\x06\xcc\x38\xc9\x50\x80\x12\x0c\x29\xdf\x99\x6a\x78\xf5\x8f\xa4\x1b\x77\xd6\x89\xc9\x32\xa4\x9d\xce\x2e\x22\x4d\xf2\x3e\x16\x07\x93\x7c\x35\x69\x78\xe6\x60\x09\x7b\x4d\xaf\xb8\x19\x1e\x73\x3d\x5e\x7f\x4d\xd1\xed\x4e\x97\xcb\x50\x89\x89\xdb\x72\xf8\x31\xa6\xa8\xe9\x78\xfe\x36\xcf\xf3\x95\x9b\x7b\x4b\xfe\x2a\x70\x89\xb7\x45\xac\x2b\x3c\xae\x96\xf1\x63\x3c\x7e\xca\x49\x32\xa0\x25\x74\x70\x02\xc6\x6e\x54\x16\x03\x7a\x5d\x64\x41\xc8\x2c\xe1\x42\xc4\x3d\x27\x31\x14\xb5\xf7\x92\xd6\x36\xfe\x1e\x93\x11\x82\xed\x84\xbc\xe1\xcf\xb0\xb9\x14\x62\xbf\xb6\xb0\x22\xef\x5c\xaf\x87\x04\x39\x1a\x0f\x11\x94\xe7\x48\xbd\x2b\x9f\x2f\x49\x9a\x01\x8d\xe5\x61\x72\x36\xf6\x72\x7e\x98\x04\x86\x67\x40\x02\x86\x6f\xf8\x55\xf4\x3b\x57\xcf\xcb\x51\xc2\x7f\xfa\x84\xfd\xce\x80\xe2\x1a\xf0\x53\xb2\x43\x0b\x48\x5a\x37\x2c\xea\xd6\xda\xe8\xae\x79\x9b\x30\xb8\x53\x9d\x5d\x35\x32\x91\x50\x2f\xeb\x63\x9d\xc7\xa8\x64\x31\x31\x06\x2d\xfe\x49\x54\x78\x07\x2a\xdd\xb8\xd4\x0f\xd8\x1a\x11\x7f\x24\x32\x2a\x71\x97\x11\xae\xe0\xf6\x5c\x93\xf5\x23\xac\x36\x21\xbc\x7a\x0f\x5c\x2e\x2a\x5b\xe4\x86\x12\x7c\xb4\xd7\x4b\xc5\x76\x7f\xc6\x46\x05\xd4\x93\x65\xcc\xa6\x79\x2a\xbb\xda\x33\xaa\xdd\x6a\x81\x82\x69\x10\xc3\xcc\x51\x04\x7c\x6e\x6c\x8d\x91\x58\x45\x71\x38\xb4\x4b\x5c\xd7\xc5\x9f\x25\x48\xf6\x7f\x9f\xc5\x9d\x47\x57\x37\xcb\x2c\x76\x2b\xf1\x37\x36\xb0\x67\xfb\xeb\xb5\x61\xc0\x6f\x4b\x9a\xad\xdc\x18\xb1\xe5\x95\x35\xff\xa9\x67\x28\xb7\xbf\xe1\xe9\x5a\xc4\xb5\x7b\x4e\x7b\x5f\x21\xdc\xf7\xf7\x67\x5d\xc1\x4d\xbf\x34\x4c\xf1\x7e\xec\x28\x9d\xd0\x47\x05\xb2\x71\xfd\xfa\xc9\x79\xc8\x3e\xde\x2f\x16\xca\xbf\x42\xd9\xe5\xa8\xbb\xe3\xc9\x88\x64\xa1\x19\x2d\xb4\xab\x53\x42\xb9\xc9\xeb\x15\x66\x9b\xa3\x72\x48\x37\x21\x16\x32\xef\x79\xfe\xb4\x7a\xf1\xd3\x45\x14\x71\xaf\x21\x9a\xa2\x3d\x59\x85\xd8\x94\x94\xac\xb7\xe7\xec\xd4\xfa\xb8\xec\xa4\x11\x9c\x85\x22\x4c\x22\xf5\x1e\xf8\xc4\x98\x50\x03\x44\x90\xb8\xce\x5e\xbc\x0a\x2e\x28\x9b\x17\x9e\xed\xd7\x95\xb6\x9e\xf3\xd9\xa3\xec\xc0\xb1\xb9\x27\x83\xc2\x33\x4e\x0d\x53\x3a\x3b\x9f\x66\xe9\xc5\x91\x24\x35\xca\xb0\x4f\xb8\xa3\x08\xc3\x76\x86\xf7\xee\x3f\x78\xf8\xf5\x37\xdf\x6a\xe1\x4d\xba\x5a\x6d\x4f\xc0\xb6\x00\xaf\xa6\x74\xb3\xbb\x49\x1d\xe1\x86\x75\x76\x42\xa7\xb3\x79\xf4\xe1\x3c\xbe\x48\xd2\xc5\x6f\x59\x5e\x18\x8a\x3f\xb7\xac\xce\x5c\x0b\xa1\x25\x86\xee\xd2\x35\xa5\xb8\xc8\x68\xd0\x1d\xdd\x94\x90\xe0\x1a\xb1\xfa\x1a\x89\xc2\xb0\x2c\x11\x1e\x37\xca\xb4\xbc\x9d\xd5\xb7\xae\x82\xd6\xe5\xf1\x4a\xb4\xd0\x6e\x2f\x2d\x8d\x5a\x77\x43\xe1\xb3\xe5\x8c\x72\xb7\x2d\x74\xb2\x7b\x15\x15\x73\x2e\x28\x77\xd3\x6c\xb7\xbe\xcb\x5a\x49\x42\x51\x5c\xde\x74\x82\x25\x71\x46\xcb\x83\xf6\x83\xd5\xd1\xd2\x34\x6b\x14\xe3\xdd\x28\xd9\xcd\x24\x35\x50\xfd\x64\x75\xe9\x63\x1c\x29\x73\x32\x66\xd6\x54\xee\xc5\x3e\xc9\xbc\xd8\x97\xdb\x5a\x37\x01\x57\x1c\x76\x6a\xbf\xaa\xf6\x28\x3c\x08\x54\x2b\xa1\x69\xe2\x54\x55\x10\x78\xa1\x2f\xea\x60\xbf\x58\x35\xfc\x6f\x7d\xcc\x99\x7f\x6a\x92\xfe\x0f\xb2\x91\xf4\x3b\xef\x5f\x7a\x81\x35\xb5\xad\x6f\xfd\x9b\x61\x69\x80\x31\x8b\x0c\x2c\xf7\xa4\xab\xa7\x03\x3a\x08\x36\x25\x50\xe3\x84\x90\xbb\xee\xaa\xef\x46\x4d\xe8\xa6\xe8\xad\xa7\xa1\x76\x6b\x4a\x06\x35\xad\x6e\xd2\x29\x3a\x88\x40\x7b\xce\x8e\xf2\xa6\x56\x39\x8d\xc6\xdc\x3f\xab\x34\xa9\x2a\xa6\x6c\x5d\xce\x95\x4a\xbe\x60\x0d\xcf\x87\x00\x65\x18\x98\x8a\x8b\xdb\x07\x56\xb7\xa3\xac\x30\x4d\xf4\xa7\xc9\x9a\x83\x90\x8c\x38\x6d\x1f\x2d\x05\x41\x94\x99\xf8\x90\x69\x72\xa7\x2a\xa1\xed\x12\x74\x2f\x5d\x5d\xee\x7e\xb7\xcc\xe3\xa7\xf2\x11\xfc\xee\xdf\xc5\x42\x37\x79\xff\xf6\xf9\xdf\xa5\xf3\xde\x74\xca\xf9\x6c\xf7\xef\xa2\xae\xbf\xc3\xee\x2c\x2d\x76\xff\x6e\x98\xac\x11\xd3\xf8\xbb\x81\x77\xf4\x9b\x6c\x9d\x36\x06\xdc\x46\x91\xcd\xa7\xd0\xad\xf7\xdb\xc6\x97\xcf\x9e\x7e\xf9\xec\x99\xe1\x1a\xff\xef\xff\xfe\x9f\xff\xf7\x7f\xff\x8f\x01\xc6\x97\xcf\x9e\x7d\xf9\xec\x69\x9d\xc2\xd6\x84\x54\x19\x87\xa3\x6c\x24\x86\xa3\xf0\x32\xcf\xf6\x7d\xd2\xd1\x3a\x3f\xa2\xaf\x99\x47\x08\xf1\x5c\x24\xef\x24\xdc\xd0\xb3\x99\xfd\xaa\xaa\x48\x70\xa9\xb5\x50\x16\x9e\xf1\xe5\xd1\x90\x29\xa6\xac\x75\xed\xd2\x41\xd3\x7c\x00\x11\xb4\xbd\xf2\xeb\x16\x28\xcf\x3b\x4b\x12\x79\x81\xbf\xa3\x53\x4b\x9b\x25\x4b\xfe\x2c\x04\x0a\x26\xd6\xaa\xd3\x7f\x7e\x23\xb4\x2c\x01\x6e\x97\x3c\xd9\x80\x19\x22\x72\x55\xe2\x77\x9f\xdf\x3c\x87\x88\x0c\xfb\x09\xa4\x24\xb2\x1c\x6a\x3d\xd4\x67\x9b\xba\xfb\x74\x6d\xcb\x13\x81\x95\xfa\x71\xed\xa8\x14\x87\x3f\x38\x97\xbb\xe0\xc4\x30\x74\xc6\x6f\xec\x1a\x06\x65\x50\x4f\x1c\xa2\xed\x1a\xf3\xd8\xd1\x4a\xda\xb8\x01\x5c\xa4\x97\xf4\x5d\xda\xe9\x74\xd3\x24\xc6\x4b\xc3\x44\x2d\xac\xae\x1d\x62\x52\x2e\x2e\x54\x56\x85\xe7\xca\x21\x66\x81\x4b\x08\xe3\x34\xa7\x6f\x82\x62\xae\xbf\x4f\x56\xfe\x1b\x65\x25\xea\xc0\xb5\xee\xdc\xb5\xda\xdd\x5f\x55\xdd\x55\x29\x26\x31\x7e\x35\x70\x09\x71\x94\xdc\x82\xec\x8b\x1a\xd9\x4d\x1c\x25\x6a\xbf\x2d\x83\x49\x16\x14\x51\x78\xb4\xcc\x36\x3a\x2e\xf7\x38\x54\x7d\x3f\x18\xe6\xae\x49\x79\x2d\xbb\x66\xa1\xd7\xc6\xea\xcf\x36\xea\x4f\x70\x09\x67\xf4\x63\x44\xb3\x6d\x95\x43\x04\xa9\xd6\xc0\xd1\x66\x03\xbb\x66\x26\xff\x26\xed\x06\xa3\x8d\x06\x53\x5c\x42\x90\x85\x9b\x0d\xf1\x66\x28\x31\x29\x14\xc4\x2c\x20\x23\x66\x06\x11\x31\x23\x48\x89\x99\xea\xbe\xb7\x4e\xaf\x1d\xc8\xab\xd1\x83\x25\xc9\x2c\x0a\x31\x89\xac\x02\x42\x12\x58\x14\xa6\x24\xb7\x0a\x98\x93\xb0\x1f\x9a\xd3\xfe\x94\x2d\xe0\xe9\x81\xbd\x79\x0e\x9c\xd0\x59\x50\x44\x97\x74\x37\x0b\x26\xd1\x32\x77\x77\x0d\x53\x78\x8f\xd6\x43\xc7\x9e\x5e\x2b\x9f\xb3\x4d\xd6\x72\xc8\xc6\x60\x15\xb8\x0a\x82\x3c\x3f\x64\x33\x05\x47\x53\x54\xf9\xf3\x98\xf6\x97\x56\xdc\x0f\x31\xcf\xe9\xf5\x52\xe5\x6b\x3d\xb3\x02\x58\x90\xc8\xca\xe1\x82\x2c\xfb\x4b\x33\xee\xc7\x70\x49\x26\xfd\x89\xb9\xe8\x2f\x60\x25\x26\x61\xfe\x5b\x56\xa0\x0b\x0c\x33\xed\x73\x8e\xe1\x8c\xa4\x7d\x9e\x50\x04\x09\x42\x89\x25\x1a\x0b\xd3\x1c\xa1\x0b\x73\x6e\x5d\xe2\x7d\x34\xec\xaf\xfa\x33\x8c\xb9\x6b\xe3\x53\x72\xb6\x3f\x83\x2b\x72\xb6\xbf\xda\xa9\xf0\x3a\xb5\x1c\x85\x13\x6a\xb0\x25\x35\x4f\xfb\xa1\xea\xa3\x79\xda\x9f\x56\x8e\x9d\x4d\x62\x3c\x32\xcc\x94\x67\xb1\x7f\x6d\xb0\xf9\xf0\xa3\x69\x7f\x72\x18\xf6\x17\xb8\xc5\x06\xd4\xbc\xea\x2f\x37\xa8\x65\x5e\xf5\x63\xac\x85\x57\xde\x98\x0e\x1d\x04\xe6\xbc\xd3\xe6\x1c\x19\x09\xb2\xe2\x9d\x1d\xe1\x64\x02\x31\x16\xc2\x82\x3e\x8c\x24\x01\x86\x90\x64\xe2\x3b\x8f\x12\xf6\x3d\x25\xd4\x8c\x61\x4e\x0a\x33\x84\x09\x71\xfe\xb6\x84\x05\x59\x8e\x03\x2b\x77\x73\x8b\x87\x5d\xcf\xee\xc8\x37\x19\xde\x69\x31\xcd\x58\x67\x9a\x29\xef\xc8\xdc\xad\xb9\x41\x81\x59\x53\x41\xfc\xf5\xba\x95\xb5\x72\xac\xb9\xc8\xc2\xad\x81\x91\x95\x61\xc8\x7a\x3d\xb4\x38\xb0\xd9\xbf\x64\xf1\x65\x64\x46\x18\x16\x87\xe9\x58\x1f\x23\x31\x31\x33\x3e\x46\x0e\x18\xe6\x44\x50\x94\x5a\xb1\xa2\xad\xc5\x86\x78\x3b\x64\x35\x18\xd3\xf6\x60\xcc\xb1\xbb\xd8\xe0\x9b\x56\x45\x9c\x29\x16\x87\x24\x11\x85\xdb\x75\x52\x33\xab\x87\x27\xc7\x9b\x1c\xa2\x8d\x56\x8e\x31\xc6\x25\x64\x34\x2c\x6e\x93\x7f\xbf\x47\xf8\x9b\xc6\x5c\x0a\xb1\x4b\x29\xc4\xe6\x86\x69\x65\xa6\xf1\xab\x51\x82\xb2\xb5\x3b\xdc\x56\x88\x3a\xca\x52\xc5\xf5\x6f\x05\x3d\x6e\x6b\x25\x5a\xe4\xb0\x12\xc2\xca\xd1\x4f\xe5\xf3\xa7\x08\x92\x21\xcc\x89\x22\x08\x4c\xea\x67\x48\x8b\xfa\x19\xd2\x05\x51\x24\x81\xcb\x5a\x18\xc0\x8a\x38\xd4\x72\x86\x4a\x40\xbc\x79\x0e\x67\x64\xb6\x3f\x84\x53\x32\xec\xcf\xea\x15\xfb\x4a\xd7\xf0\x0f\x89\x33\x3e\x73\xe9\x01\xb1\x9c\xb1\x75\x26\x7c\x5e\x05\x8c\xd6\x54\x53\x4e\x9f\x36\xb6\x59\xa2\x24\xa1\xd9\x5b\xce\xf6\x35\xc8\x75\x03\x24\x5d\x16\x9b\x20\xc7\x0d\x90\xbc\x08\xb2\xe2\x51\x32\x8b\xb5\x63\x8c\xd7\x0d\x08\x9a\x4c\x5a\xf9\xe7\xed\x07\xb5\x8b\xa0\x0d\xf2\x48\x5f\xb2\x20\xa8\x9c\x0b\x59\x19\x2c\x49\x61\x25\x10\x13\x14\x8c\x53\xd7\x4a\xf1\xfe\x25\xca\xfb\xb9\xb9\xec\x2f\x99\x50\x88\xfb\x4b\x98\x12\x2b\xee\xe7\x30\x27\xd4\x0c\x61\x41\x0a\x73\x0a\x17\x24\x33\x43\x58\x91\xc4\x9c\xc2\x8c\xa0\xb9\x79\x81\xf7\x87\x70\x46\xd0\xc2\x5c\x61\x4e\xdb\x0b\x6b\x0e\x57\x64\x65\x2d\xe0\x29\x39\xed\x9f\x9a\x57\xfd\x2b\xb8\x26\x91\x95\xc2\x31\x99\xf7\x57\xd6\x45\x7f\x01\xaf\x09\xba\x3a\xb0\xc7\x96\xe3\x3a\xb8\x7f\x89\x26\xc8\x86\xeb\xfe\x75\xff\xa9\x75\xdc\x3f\xc6\x18\xce\x09\x3a\xee\x5f\x59\xa7\xfd\xd7\x78\xff\x29\x3c\x22\xc8\x3a\xee\x9f\x5a\x57\xe2\xf3\x1d\xcf\x34\x65\xe6\x91\xc8\x34\x65\xe6\x4b\x72\x6e\xcd\xe0\x2d\x79\x64\x9d\xc1\x1b\xf2\xce\x9a\xc1\x07\x72\x64\x9d\x29\xc5\xfe\x65\xff\xa5\xf9\xb6\xff\xf6\xf0\x4d\xff\x8d\xf9\xa1\xff\x81\x7b\x07\x7b\x07\x8f\xc8\x11\x86\x9b\xf0\xda\x3d\x87\x70\xe5\x3e\x82\x6b\xdb\x71\xad\x10\x56\xec\xcf\x14\xae\x1d\xc7\x3d\xef\xa3\x68\xff\xda\x72\x30\xac\x1c\xc7\x7d\xa4\xbe\x4a\x6e\xaf\xbd\xdb\x3c\x10\x7f\x0a\x05\xb9\x86\x8c\xc4\x88\xdf\xb0\x15\xe1\xf7\xc8\x31\xa4\xe4\x35\x04\xe4\x5c\xfa\x1b\xaa\x59\x70\x22\x4b\xc6\x30\x81\xa7\x70\x4d\xcc\xea\x62\xea\x3c\xca\x35\x6f\xc1\x70\x4c\xcc\x62\x4b\xd6\x6b\x12\x75\xe7\x58\x67\x70\x4e\xd2\xad\x79\xef\x48\x88\xce\xad\xd7\x18\x8e\xc8\xf9\xe1\xeb\x1d\xe1\xc5\x08\xe5\x24\x26\x4b\x84\x31\x1c\x1f\x5c\xf7\x7a\x68\x42\x8e\xe1\x98\x5c\xc3\x35\x99\x60\x38\x3e\x5c\xb1\x55\xfc\xdd\xe1\xa9\xb5\xc2\xf9\x40\x68\x9e\xe8\xb8\x3f\x47\xaf\x31\x1c\xf7\x2f\xd0\x6b\x8c\x21\x1f\x04\x59\x88\xd8\x2a\x78\x0c\xaf\xe1\x1c\xf6\x8e\x30\x5c\x1f\xae\xb8\xc3\x67\x59\xe2\xba\x3f\x47\xe7\x18\xae\xfb\x17\xe8\xbc\x51\xe2\x1a\xce\xe1\x35\x1c\x61\xa1\x3b\x70\xca\xbc\x84\xb7\xf0\x86\xbc\x86\x0f\xe4\x1c\x9e\x90\xd7\xf0\x8a\x9c\xc3\x73\xf2\x0e\x5e\x90\x77\xf0\x8c\x04\xdd\xbd\xdb\x1f\xc2\x47\xf2\x8c\x37\x9a\x8c\xcd\xa4\x1b\xc8\xbd\x44\xd7\xfd\x6b\x53\x70\xde\x77\x64\x81\x42\x74\x6c\x5d\xb3\xb2\x66\xd6\x5d\x02\xc3\x63\xf2\x1d\xbc\x27\xdf\x31\x62\x7d\x3c\x5c\x89\xb1\xfb\x89\x5c\xa1\x8f\xfb\xac\x33\xcf\x30\x86\xdf\xf8\xd7\xb1\xf8\x1a\xa1\xe7\x16\x19\xf6\x7f\xc2\x87\xab\x31\x7a\x62\x92\x9f\xfa\xe4\x68\xec\xb8\x96\x03\xaf\x2c\xf2\x13\x76\xd1\x73\x62\xc3\x13\xf2\x8a\xa0\xd7\xe6\x39\xd7\x4a\xd0\x0b\x56\xe0\x37\x5e\xe0\x8d\x49\x7e\xab\x0a\x7c\xb0\xc8\x6f\xd8\x45\x2f\x88\x0d\x6f\xc8\x87\xaa\x00\x67\xc4\x1f\x09\x1b\x83\x37\x18\x7e\x21\xac\xe1\x37\x18\xfe\x42\x18\x8d\x5f\x61\xf8\x9e\x30\xc4\x5e\x71\x4d\xee\x3b\x85\xf1\x17\xf0\x03\x2f\xf1\x01\xc3\xcf\xbc\xc4\x07\x0c\xbf\xf2\x12\x4f\x30\xfc\x95\x97\x78\xc2\x4b\xbc\x3b\x98\xf5\x7a\xe8\x8b\xb6\xd7\x4a\x29\x53\x20\x57\x06\xd8\xaf\xd6\x8f\x10\x93\xbf\x5a\xbf\x40\x48\xfe\x62\xfd\x00\x53\xf2\xbd\xf5\x33\xcc\x09\x53\xf3\xc2\xbe\x08\x08\x8d\xe6\xfd\xf9\xc1\x4a\x6d\xf6\x79\x3f\x9a\x68\x4e\x50\xd8\x47\xbf\x58\x3f\x63\x6b\xda\x47\x3f\x5a\x3f\x60\xbc\x3f\xc7\xfd\x25\xfc\x62\xce\xfb\xb1\x5f\x22\xe5\xa2\x91\x52\xf2\xa3\xf5\x85\x67\xfb\x50\x50\xf2\x8b\xf5\x05\xbf\xce\x4d\xc9\x0f\x22\x2d\xa1\xe4\x67\x91\x16\x51\xe2\xec\x5f\x20\x84\x9e\x12\x44\x69\x3f\xa3\x66\x41\xfb\x09\xc5\xfb\xe8\x92\x7d\x53\xfe\x5d\x50\x26\x79\x32\x9e\x9d\xf0\x6c\x8c\x0f\x9d\xb1\xed\x3e\x3d\xb0\x9c\xf1\xcc\xad\xd5\xc6\xa7\x42\x51\x4c\x29\xb9\x44\xac\xa5\x3e\xfb\xc7\x64\x2d\xf5\xbf\xe0\x97\x32\x1f\x93\x05\xfa\x0e\xd0\xb5\x95\xb2\x36\x22\x6a\x39\x18\xc3\x7b\x91\x78\xac\x12\x4d\x07\xe3\xb2\x7c\x71\xb8\x1a\xbf\x67\x83\xfa\x92\x3c\x42\xbf\xc2\x5f\xe1\x47\xf8\x05\x8e\xe1\x3d\x1c\x61\x26\xb5\xd0\x0f\xf0\x33\xfc\x05\xbe\x57\x49\xd5\x54\x79\x39\x08\xaf\xcd\x97\x83\x6b\xdb\x81\x97\x83\x70\x65\xbe\x1c\xac\x6c\x07\xc3\xfb\x83\xef\xc6\x62\xda\x30\x00\x9e\x05\xef\x61\x8a\x78\x36\x70\x78\x0c\x53\xf4\x96\x7f\xbe\x15\x9f\x7b\x47\xd8\x45\x77\x28\xf4\x72\xb0\x72\xf8\xa7\x23\x0a\x35\x66\x34\xcb\x16\x68\x70\x18\x81\x9c\x23\x1b\x0b\x57\xe6\x5b\x9e\xf1\x96\x65\xbc\x6d\xd7\xc0\x52\x59\x96\x68\x55\x41\x56\xa5\x9b\xa8\x62\x8e\xac\xa4\xc2\x8f\xf0\x4b\x13\x8d\x37\xf0\x81\x03\xb9\x4d\x10\x2e\x67\x9e\x1f\xae\xc6\x8f\x15\xa9\x19\x4d\x19\x6d\xaf\xc1\x7a\xac\x68\xcd\x48\xcf\x86\x40\xa5\xe5\x03\x61\x96\x6e\x23\xf6\xe3\x0e\x62\x3f\xfe\x3d\xc4\xee\x28\x74\x0b\xb1\xaf\x7f\x07\xb1\x3b\x68\xfd\xf8\x4e\xb4\xd6\x9b\x7d\x05\x4f\xe0\x88\x25\x49\xb2\xfc\x05\xbe\x97\xa6\x49\x45\x6d\x1b\x6c\x2e\x20\xf2\x41\xb5\x55\x80\x30\xc4\xd5\x99\x99\x58\xf9\x62\xd3\x30\xd6\x6b\x1e\xb9\x41\xed\xe6\x0d\x42\x9a\x14\x59\x1a\x4d\xda\x6b\x67\x46\xd0\xb6\xc5\x8f\xd9\xd6\x5b\x04\xf2\xfe\x10\x12\x82\xcc\x2d\x0b\xa0\xb9\x6b\x6e\x59\xfe\xf0\xfe\xd0\x9a\xed\x0f\xa5\x7a\xe0\xcd\x51\x82\xfb\x19\x5c\xf0\x3f\x7e\x09\x13\x5d\xb7\xab\x31\xad\x77\xd7\xda\x3b\xeb\x63\x44\xbb\x36\xa4\x8b\x71\xe1\xc6\xc8\x2c\x30\x4c\xb0\x4b\x59\xbd\x9a\x42\xd8\xa5\x1f\x6f\xd6\x5b\x74\xd5\x4b\xc7\x94\xd5\x4b\x79\xbd\x05\xab\x37\x4c\xb3\x0e\x84\x6f\xab\xb8\xd3\xef\x49\xa3\xe2\x8c\x55\xbc\x08\x26\x9f\x53\xab\xd0\x79\x08\xa1\xe2\x1a\xc3\xa7\x9a\x48\x58\x13\xb5\x06\x7c\xb7\x36\xba\xae\x63\x35\xab\x8d\x58\xb5\x4a\x6d\xbe\x5b\xa5\xe9\x27\x2b\x4d\x25\x39\x3e\xa3\xd2\xce\x77\x39\x8d\x4a\x03\x31\x78\x49\xd1\xb8\x5f\x79\x5b\x9d\x79\x93\xc2\x94\xd5\x92\x97\x30\xd1\x22\x92\x1f\xd5\x41\x64\x54\xd5\xb4\x3c\xd2\xb7\x10\x83\x8c\x06\xc7\x8c\xec\x6e\xfb\x16\xef\x29\x9b\xf4\xc4\x2e\x81\x81\x3c\x4d\x26\x5b\x00\x5e\x05\xaf\xc4\x6e\xde\x96\x5a\x16\x69\x94\x14\xac\x1a\x06\xd3\xaa\x06\xd5\xf5\xac\xd7\x76\xb5\xa5\xc8\xbe\x7b\x3d\xa7\xda\x36\xe0\x55\x60\x15\xce\x52\x76\xa4\x21\x6f\x34\x7c\x1c\xab\xfe\x28\x81\x17\x6d\xed\x32\xaa\x1b\x17\xd5\xa6\x9a\xde\x8a\x7a\x95\xa6\x23\xef\x68\xf5\x8f\x9b\x48\x48\xc1\xc8\xea\x75\x9b\x39\x52\x3e\xf2\x57\xf7\xc2\x8f\xaf\x7c\xd7\xa6\xd7\x3c\xac\x6e\x45\x6c\xad\xb6\x94\x96\xf4\xcb\x4e\x1f\x8b\xf4\x8a\x8f\xb1\x36\xe4\x6f\x75\x8b\xd0\xb3\xfd\x96\x07\x8b\x2a\xc7\xf1\xb9\xc6\xf8\x61\xd3\x74\x79\x0b\x05\x79\xc3\x4d\x97\x3d\xdd\x76\x79\x09\x69\xcb\x66\x09\x90\xb2\x26\x21\x86\x90\xbb\xee\x97\xcf\x34\xe7\x44\x9e\x2e\x0b\x0e\x4d\x7a\x3d\x94\x92\x08\x85\xdc\xa0\xc0\x90\x13\x7b\x94\x1f\x90\xe9\xc8\x34\x73\xbc\x87\xf2\x83\x69\xaf\x97\xa1\x98\x04\x5e\xee\x43\x0e\x01\xc6\x84\xbb\x22\x47\x68\x4e\xf6\xe6\x78\x9c\x0e\x2a\x06\x43\xd8\x15\x5f\x4f\x93\x09\x33\x4e\xe6\xfc\x06\x05\x23\x26\x32\x29\x8a\x79\x69\x30\x0b\xf9\x8b\x2f\x4d\x61\xe5\x12\x47\x74\x25\xdc\x58\x8c\x82\xc1\xf5\x9f\x22\xdb\x03\x2e\xdb\x83\xc1\xea\x4f\x91\xe8\x01\x97\xe8\x81\x74\x21\x3a\xf9\xc3\xc2\x7c\x6f\x4f\x54\x9a\xb1\x4a\xc3\x65\x76\x79\x67\x29\x4b\x41\x6c\xf9\xab\x71\x4c\x30\xaf\x28\xe2\x15\x7d\x8e\xc8\xaa\x04\x16\x11\x63\xe1\xf2\xda\x88\xc0\x2b\x29\x21\x28\xe1\x49\x37\x43\x8a\x70\x9f\xca\x9c\x7e\x03\x91\x64\x4f\x39\xa6\x01\x79\xb9\x61\x52\x87\x28\x96\x0f\x89\x61\x0a\x73\x98\xc0\x02\x2e\x88\x7a\xea\x0b\x97\x64\xcf\x81\x95\x76\xc3\x99\xef\x23\xeb\x9f\x1a\x03\xa7\x3c\x34\x6e\x80\x16\x92\x81\xc5\x39\x37\xb9\x18\x99\x66\x28\x03\xb0\x84\x07\x17\xbd\x5e\x84\x26\x24\xf6\x42\x1f\x42\x88\x39\x13\x5f\x32\x33\xf9\x92\xec\x5d\xe2\x29\x09\xb9\x46\x26\xc5\x2d\x52\xda\xa6\xfc\x12\x76\x2e\x6b\x31\xaf\xd9\xbb\x09\x02\x73\x12\x5a\xce\x68\x7e\x48\xa6\x23\xcb\x9a\xe3\x5c\xf2\xfd\xca\x9b\xfb\x30\xf3\xe6\x3e\xde\x69\x96\x95\x82\x1b\xe1\xf2\xb2\xd7\x43\x2b\x2f\xf4\x89\x49\xd1\x84\x23\x07\x33\xfe\x99\xa9\x4f\x55\x59\x31\x36\x0b\x99\xe6\xb2\x12\xc0\xcc\x66\x95\xc0\xca\x60\x5c\x46\x53\xb4\x68\x29\x78\x8b\x7a\x4e\x55\xf4\x9f\xd6\x7b\x7b\x1f\x10\x56\x6c\xcc\xbd\xc4\x31\xe6\x93\x5e\xdb\x18\xf3\xa0\xb4\x3a\x91\x0b\xf5\xa9\x98\x7d\xee\x54\xcc\xc6\x19\x9b\x3c\x19\x56\x1c\x13\xf2\x19\x19\x0e\xae\xed\x3f\x65\x82\x57\xd5\x39\x77\x9d\xe1\x77\x57\x82\x42\x3e\xdd\xc3\xbb\x0a\x8f\x4f\x68\x6d\x49\xd5\xff\x8c\x57\x6a\xff\x29\xb5\x56\xd5\xdd\xb1\xff\x9f\xa3\x04\x86\x5c\x02\x84\x9c\x83\x7f\xb6\x89\xf8\xf1\x8b\xdd\xf1\x96\x62\x8a\xf0\xe0\x1a\x51\x3c\x58\xa1\x0c\xab\x22\xbf\x38\xb7\x43\x26\x15\xe4\xcf\xdb\x21\x8b\xba\xce\xcf\x92\xba\xb7\x28\xa2\x5c\xea\x86\x5c\x58\x86\x9f\x23\x75\x83\x4a\xea\x2a\xe1\x93\x62\x5e\x51\xc0\x2b\xfa\x3d\x52\x37\x25\x62\xb6\xba\xbc\x36\x22\xf0\x4a\x4b\x08\x4b\x78\xb5\xc5\x39\xcb\x01\x1d\x5b\x8e\x5b\x1c\xd2\x31\xfb\x97\xd0\xb1\xed\x72\x85\xef\x79\xe7\x7d\xbe\x12\x5e\x6c\x4a\xef\xe7\x50\x90\x57\x32\x6e\x1f\x24\x42\x82\x33\xe9\x7d\xca\x84\x37\xfb\xea\x54\x28\x96\x42\xa5\x80\x79\xad\x54\x4c\x88\x0d\x0b\x4d\x42\xcf\x31\x5c\x34\x3f\x2f\xc9\xb6\x2d\x3e\x75\x62\x78\x11\x25\xe8\x14\xaa\x88\x0d\xd6\x29\x6c\xdb\x32\xbd\xc4\xd5\xb9\x22\x2b\x54\x9d\x43\xad\xf0\xfe\x1c\xb6\x19\x93\x70\x46\x66\x7d\xb4\x52\x1b\xdb\x7c\x05\x11\xca\xce\x9c\xeb\x3a\x68\x4a\x2e\xbc\x85\x97\xfb\x24\xe7\xb2\xb8\x56\x78\x0e\xed\x5e\x0f\x4d\x4c\x32\xad\x97\x9d\x3d\x52\x8c\x17\x1b\x57\xa5\x6b\x99\x58\xa0\x0b\x8f\xfa\x70\xc1\x63\x49\x62\x57\x14\xc9\x7a\xbd\xcd\x32\xf5\x80\x66\x28\x60\x65\x02\xee\x28\x8c\x2b\x62\x10\x93\xc9\x18\xad\xac\x79\xff\x0c\xef\x4f\xdc\x0a\x57\xb8\x24\x21\x5e\x12\x86\x2c\x84\xe4\xd2\x44\x1c\xf7\xa5\x8f\x0f\xed\xf1\xb4\x1f\xbb\x36\x36\xcf\xe0\x82\x87\x43\x9d\x04\x45\xe0\x06\xde\xd2\x97\x01\x45\x55\x6c\xc3\x29\xd4\x06\x9d\x7b\x09\xca\x0c\x73\x43\x50\xc6\x93\x3b\x53\x37\xfc\x76\x2f\x6a\x65\x4c\xbc\xd5\xfd\x33\x15\x32\x46\x90\x1f\x5b\x2f\xc1\x6e\x97\xdb\x54\x71\xac\xd2\xc2\x9a\x97\xb9\x6f\x97\xa1\x54\x2d\x3f\x4a\xdb\xfa\x5c\xc3\xb6\xf3\x52\x5b\x43\x33\x64\xca\xd2\x67\x1a\xb6\x9f\xb0\x96\x95\x42\xf7\x79\x86\xed\x27\xac\xe5\x80\x0b\x98\xa0\x84\x67\xe4\x3b\xf4\x52\x9b\xea\x1f\x35\xcb\x94\x0b\x45\xed\xc4\xea\x3b\x7e\x55\x49\x7d\x15\x1a\x03\xb0\xd9\xfe\x11\x51\x54\xe0\x3a\x3a\x63\x55\x01\x14\x75\x15\x8f\xf5\xe7\x19\x3c\xbf\xba\xd9\x35\x08\x78\xef\xe8\xe0\x1a\xa4\x13\x2e\xf6\x93\x0e\xc4\xb1\x35\xa1\x83\x55\x9d\xbe\x02\xfa\x19\x32\xbb\x40\x0c\x73\xec\x16\x08\x4b\xa4\x4a\xa0\xe5\xc7\x3b\x9a\xdb\xbc\x80\xae\x20\xde\x62\x79\xd7\xb0\x42\xbf\xbb\xcd\x00\x17\xb0\x9a\x1e\xd9\x69\x8a\xb7\x61\x65\xbd\x5d\xf6\xb3\x0e\x2a\x95\xc6\xfa\x40\x9a\x62\x28\xfa\x56\x75\x7c\x4d\x31\x96\xf6\xeb\xfb\x8e\x45\xf7\x31\x62\x8a\xa1\xd0\x06\x9f\x61\x5c\xc2\x4f\x9b\xcb\xc7\x13\x0d\x02\xaa\xd1\x14\xc1\x47\xb8\xa6\xc0\xef\x1b\x8a\x75\x5d\xb8\x37\xe4\x6a\x83\x70\x36\xc4\xf5\x82\x4f\x8e\xbc\x36\x3b\xe9\xe0\xda\xd6\x32\x6d\xa8\x0f\x5d\x59\x9e\xa3\xe5\x39\xb7\xf0\x8c\xbe\x69\x48\x07\x2b\xad\xca\x15\xab\x52\xdf\xfb\xa3\x83\x95\x56\xeb\x8a\xd5\x5a\x8d\x55\x6b\x1e\x6a\x74\xcb\x10\x23\x57\x55\x4c\x52\xa2\x1a\xba\xed\x05\x93\x8e\x82\xaa\xcd\xe7\x5d\x5b\x9d\x5a\xd9\x68\xb3\xec\x2f\xaa\xd1\xd7\x5d\xdb\x99\x5a\xd9\xb4\xa3\xac\xf3\x27\xcc\x2e\xf8\xad\x53\x73\xf1\x50\x41\xcc\x42\xbb\xe6\x42\x2d\x75\x05\x80\x47\x33\xd7\x19\xd6\x2f\xe1\xc7\xb6\xf7\x58\x71\x81\xb5\x16\x57\xbf\x34\x4f\xea\xd3\x65\x16\x6a\x02\xeb\x2f\x8d\xdc\x22\xc8\x66\x54\x93\x45\xdf\xd7\xb2\xe8\x17\xc8\xc8\x5f\x20\x21\x6f\x21\x22\x6f\x3a\xf6\x53\x64\xd4\x60\xc8\xc9\x8f\xe2\x6e\xac\xa6\xc1\xc4\xa4\xb1\xf7\x9d\xf3\x7b\x3b\xcd\x14\x7e\xa7\x6b\xbd\x46\x29\x09\xc4\xd1\x2d\x45\x29\x34\x55\x22\x94\x7b\xb6\x4f\x62\x60\xca\x4a\x73\xb7\x3c\xc7\x9d\xa0\x61\x27\x28\x93\xec\xcd\x5d\x95\xa0\x63\x57\x45\xd0\xe9\xee\x4b\xae\x5a\x6b\x05\x05\xef\xbe\xda\xaa\x65\xf6\xfa\x4f\x5d\x5d\xef\x68\x88\xdd\x71\x59\xfd\x2c\x8d\x3d\x6d\x6f\xed\xaa\x75\xb4\xe2\x95\x2f\xea\x13\x58\x7c\x43\xd5\x6e\x63\x01\x19\x06\x3a\x68\x5c\x5d\x44\x05\x41\x85\x99\xe0\xfd\x21\x7f\x9b\x1c\xf1\x22\x75\x45\x3f\x7c\x46\x45\x90\x11\x94\x99\x11\x3f\x6c\x91\x45\xea\x8a\x7e\xd6\x2b\x12\xef\xa1\x7e\x13\xf5\x04\xe2\x87\x2a\xcb\xd4\xce\xdf\x50\xc2\x72\x96\xfc\x47\x84\x77\xaa\x86\x53\xcf\xf6\x21\xf5\x1c\x7f\xb3\xf9\x80\x65\x05\x9e\xe3\x43\xce\x9d\xe2\xb0\x5f\x4b\xf6\x6b\xc9\x7d\xe9\x56\x88\xfc\x5a\xcb\x9d\xef\xd1\x17\x5a\xc6\x5f\xf5\x8c\x1f\xb4\x0c\x4a\xab\xe5\xe6\x7b\xf4\x33\xfe\xbd\xaa\x82\x08\x15\x4b\xc9\xcd\x24\x0b\xae\x5a\x8b\xa6\x38\xd9\xaa\xaf\x29\x16\xfb\x33\xad\xd7\x19\xd8\xac\xbf\xea\xe4\x2d\x03\x1b\x4e\x71\x59\x42\x76\xd7\xca\x1e\xe0\xfd\x61\x5d\x9d\x75\xaf\x9f\x81\xc5\x47\x50\xee\x24\x5b\x1d\xdf\xf7\xfa\x7a\x4a\x57\x82\xfe\xb9\x51\x25\x4b\x68\xc2\x37\xbf\x9a\xb5\x59\x1d\x09\x8d\xcf\xaa\x3a\x6d\x5f\xbf\x2c\x21\xa1\x5a\x3f\x9d\xfd\x7b\x18\x22\x4a\x86\xfd\x84\x42\x7a\x57\xda\x44\x7c\x3b\x24\xeb\x27\xb4\xa6\x90\xdd\xec\x4b\x22\xe8\x2f\xbf\xec\x26\x66\x32\xb3\x89\x57\x40\xab\x1b\x67\x68\xb6\xef\xd8\x78\xbf\xfa\xfc\xba\xcf\x13\x20\xd7\x40\x4e\x59\x4a\x3f\xa0\xb0\xa4\xa4\xd6\x8e\xaa\xd4\xf8\x6e\x7d\x19\x7c\xf3\xad\xfd\x8d\x73\xcf\xfe\xd6\x79\x30\xfc\x76\xf8\xcd\x83\x61\x9f\x3f\xb7\xc8\x69\x3f\x83\x88\x2c\x69\x3f\xbb\xa5\x87\x91\x1e\xa9\xdd\x19\xa5\x07\x0f\x46\xa6\x99\xaa\x38\xf5\xa7\xfd\x74\xff\x01\xe4\x44\xbf\x17\xba\x24\xda\xad\xd0\x9d\xaa\xaa\x25\xe3\x84\xbc\x31\x98\x79\x3f\xb1\x96\xfd\x08\x96\xfd\xc4\xcc\xfb\x11\x2e\xdb\xe4\x0a\xef\x38\x58\x3c\x6e\x5d\xc6\x79\x39\xa3\x61\x81\x12\x2e\x68\x32\xfe\x7e\x4f\xe7\x84\x7b\x18\xe6\xb7\x55\x69\xe9\x0c\x80\xee\xf5\xa7\x14\x63\x9d\x36\xc3\x26\x2f\x4e\x69\x9b\xbb\xb5\x94\x66\x4f\x26\x4d\x34\xf6\x87\xb0\xa0\xc4\xd9\xd7\x98\x74\x88\xe1\x82\x92\x7b\x7d\xb4\xa0\xfb\x43\xd3\xc1\x70\x79\x57\x4e\xbd\x10\x9c\xba\x3f\x84\x88\x64\xfd\x05\x77\x3d\x05\x01\xff\x69\x66\x90\x13\x2b\x85\x25\x09\xea\x7e\xb0\x41\xad\x51\x4e\x21\xd0\x87\x04\x96\x7a\x0f\x07\x0f\xfa\x89\x35\xa1\xfd\x08\x26\xb4\x9f\x98\xec\x3b\x6a\xe5\xa7\x2c\x3f\x60\xf9\x29\xcf\x0f\x5a\xf9\x39\xcb\x5f\xb2\xfc\x9c\xe7\x6f\xd4\x6f\xf2\xfa\x79\xd5\x0c\x34\x69\xd7\x6f\xf2\xfa\x79\xd5\x2c\x3f\x6d\xd7\x6f\xf2\xfa\x79\xd5\x2c\x3f\xdf\x24\xfe\x8a\x12\xaf\xa0\x90\xb1\xd9\x0f\x21\x9b\x37\x30\xa7\x70\x49\x7d\x98\xd1\x4d\xd3\x21\x46\x05\x33\x47\x48\x8c\x1e\xde\xc7\xd2\x9e\xd7\x1f\x91\xc9\x17\x2a\xfc\x46\x33\xf7\xf3\x9b\x48\xad\xa9\x7b\x77\x67\xc0\xc6\x10\x65\xb0\xf5\x0e\x02\x54\x7e\x9e\xd4\x6e\xd7\x86\x4e\x94\x0c\xb8\x1d\xf8\x47\xf7\x36\xd8\x3c\xe1\x5b\x1b\x89\xf0\xa6\xf4\x67\x1c\x37\x25\x5c\xf9\x4a\x3e\x4f\x51\xc9\xda\x8a\x4a\xc2\x55\xb1\xa4\x84\xb3\x66\x0c\xbe\x9a\xee\xa7\x54\x3d\xb1\xa1\xf5\x81\x67\x73\xa5\x47\xc3\x3e\x1d\x9c\x5e\xdb\x26\xe5\x0f\x0d\xf6\xef\x81\x48\x59\xf1\x94\x95\x48\x11\x10\x02\xb2\x4a\x59\xc9\x94\x06\xcc\x7d\x01\x63\x16\x78\xff\xa1\x82\xba\x2f\xa0\xcc\x0c\xef\x3f\xd4\x34\x81\x2b\xda\x75\x62\x7e\x45\xff\xa9\x47\xe6\xd7\x9b\xaf\x85\xb4\xab\xd9\xaf\x82\x57\xf0\xe9\xa3\x75\x79\xc8\xbd\x79\xb4\x7d\xcf\x3d\xa5\x82\x73\xab\x67\x23\xaa\xea\xca\xbb\x6a\xe7\x61\xf4\x26\x78\xf9\xbf\xe7\xf7\x7a\xd6\xb0\x91\x75\x0f\x3a\x5b\x42\x0f\xfa\x6a\x90\xcd\xea\x25\x0d\x63\x4b\x95\xbe\x52\xe9\x8c\x85\x1f\xe2\xea\x82\x80\x1a\x35\x7e\x27\x60\x83\x4f\xa0\x7e\x3d\x00\x1b\x2c\xa3\x3d\xc6\x92\x9b\x31\x4f\x3b\x45\x46\x42\xaf\xc4\x04\xd0\x66\xeb\x75\xe7\x84\xb8\xde\x32\x21\xce\x68\xc5\xfa\x67\xf4\xf3\x58\xfc\x7a\xa8\x7e\xdc\x53\x3f\xee\x77\x70\xbf\xfc\xa1\x80\x57\x0a\x78\x75\xff\x8f\x4e\x0c\xa7\x9b\x01\x14\x76\x8a\x88\x43\x0c\x5b\xf9\xb8\x8b\x1b\x5a\xd5\x55\xf5\x99\x43\xc5\x08\xf7\xb8\xa8\x52\xd5\x57\xe9\x2b\x96\xde\x6e\x4c\x71\x91\x2a\x5a\xd7\x32\xd4\x6b\xa9\xd3\x57\xc3\x8e\x5a\xb6\xa0\x7c\x4f\xa0\x2c\xf7\xf4\xb6\xf4\xbb\x91\xab\x98\x7c\x75\xaf\x2b\xf7\xbe\xca\xbd\xcf\xd6\xee\x3f\x75\x2a\x5f\x0f\x6b\x46\x1f\x92\xe2\x96\x19\x0a\x15\x57\x55\x05\xee\x35\x0b\x74\xcf\xdb\xeb\xfb\x75\x81\xfb\xa4\x80\x5b\x47\x93\xad\x27\x8a\x9f\x4d\xca\xe7\x73\x35\x9b\x55\xce\x4a\x2c\x40\x8a\xe2\xff\x90\x79\x7d\xbc\x75\x5e\x5f\xb7\xe6\xf5\xeb\xce\x79\xfd\xfa\x3f\x6f\xa1\xbb\x75\x0d\xba\xf7\xef\xb3\x06\xfd\xbe\x45\x44\xbe\xaf\xdf\xce\x67\x09\xd9\xca\x69\x3b\x9f\x5a\xf5\x32\x48\xb6\xac\x7a\x2c\xa7\x43\x32\x48\xac\xee\xff\x63\x98\xf7\x7c\x2b\xf3\xbe\x6e\x31\xef\x23\xaa\x9f\x44\x9c\x05\x79\x94\x93\x6a\xf1\x92\x15\x9f\xd1\x22\x20\x45\xf9\xa8\xc1\xd1\xb7\xf1\x22\xf1\x7c\x85\x53\xfd\x93\xd7\xfd\xc9\xc3\x13\xcd\x07\xe6\xe9\x35\x28\x87\xb4\x2b\x2d\x42\xba\xc5\x43\xe5\x64\x87\x76\x15\xee\x3b\x91\xc1\x11\x20\x25\x05\xdf\xd8\xe2\xde\x72\xad\x08\x72\x52\xb0\x1f\xcc\xd4\xe3\x31\xde\x96\x07\x24\x1b\xe1\x84\x2c\xf7\xb3\x06\x52\xba\xa8\x65\x9d\xed\x53\x6f\xe9\x9b\x48\xf1\x2e\x4b\xc2\x7d\x14\x99\x09\x33\xe4\x34\xb0\xa2\x0b\x2c\x35\x93\x7e\x8e\xf1\x8e\xa2\x85\x22\x84\xf6\x46\xbd\x26\xc5\x27\xcf\x86\xae\x85\x4f\x23\xb3\x1a\x8c\x95\x4c\x28\xd4\x69\xd0\x3b\xda\x72\x2a\x56\x7d\x69\x11\x19\x77\x85\x8f\xbe\x6a\x64\x79\x88\x10\x39\xf6\xca\xa0\xca\x06\x7c\xa0\x3b\x0c\x2a\xca\x9b\x83\xac\x44\x83\x6f\x1e\x68\x27\x8f\x47\x9f\xb6\x3f\x84\xb9\x40\x07\xa7\xe7\x7d\xfe\x7b\x68\x71\x43\x82\x59\x86\x6c\x72\x55\x19\x2b\x9e\xb1\x12\x19\xd7\x43\xad\x84\x63\x15\x02\x5a\x4b\x5c\x39\x62\x3f\x81\x2d\xaa\x3c\x4b\xb3\x3b\x5e\x36\x38\xba\x12\xc8\xca\x49\x2e\x61\xe3\x85\xf7\x1f\x96\x2f\xff\xd5\x02\xba\x52\xd3\x3a\x95\xb2\x3f\xa8\x82\xdd\x6e\x79\x68\xaa\x48\x53\x36\x1d\x6d\x35\x68\xfe\xd7\x42\x19\x76\x08\x61\xe7\x56\xfd\xa7\x12\xee\x47\x77\x14\xee\xad\xe1\xd1\x55\xb3\x4e\x71\x2f\x07\x51\x53\xdf\xa4\x50\x78\x7b\x27\xa1\xc0\x43\x2d\xb4\x85\x40\x41\x93\x66\x40\xf9\x2e\x39\xa0\x5f\x35\x7a\x73\xc7\x09\xf7\xe6\x9f\x6a\xe9\x5c\x3f\xf8\x3c\x93\x47\xfe\x78\xf0\x8f\xb5\x7d\x36\xb4\xfc\xcf\xb5\x7d\x9a\xf3\xf8\xb3\xab\xeb\xb2\x4b\xee\x6c\x79\x74\xe4\x3e\x50\xb9\x0f\xfe\x7c\xbb\x64\xbb\x99\xd1\x3d\x2f\xbb\x29\xde\xb4\x3d\x3a\x69\xdb\xb2\x56\x1e\xd4\x25\x1e\x54\xed\xfe\xcb\x66\xf2\x87\x3b\xcf\xe4\x37\x7f\x78\x26\x3f\xb9\xe3\x4c\x7e\xf2\xdf\xb0\x74\xfe\x77\x5b\x3b\x9f\x5c\x05\x37\x35\x81\xbb\x6e\xda\xdc\xc5\x9a\xf9\xa7\x4f\x93\x57\x77\x9e\x26\x4f\xfe\xf0\x34\x79\x4e\x1b\x21\xa4\x08\xd7\x52\xf9\x85\x29\x86\x2c\x8f\x79\x7a\x3d\x64\x56\x08\xc3\x90\xbb\x95\x1c\x9c\xc6\xb6\x73\x1a\xa8\xb7\xe2\x39\xe1\x3b\xeb\x2c\x6d\x18\x98\xf7\xd4\xef\x80\xff\x70\x86\xa7\x81\x29\x7f\x0c\x03\x58\x12\x2d\xbf\xaa\x49\x01\x04\x78\x27\x21\x28\xe9\xe7\x42\xad\xee\x57\xe5\xf8\x7e\xbf\xd6\x0a\xde\x5f\x42\x44\x50\x24\x20\x57\x2d\xc8\x55\x13\xb2\x94\x38\x0f\xef\xd5\x38\xc7\x12\xe7\xe1\xbd\x1a\x67\x96\xdf\x85\x73\x48\xb4\xfc\xaa\x26\x0d\xe7\x94\xa0\xb4\x1f\x8b\x33\x89\xba\x56\xab\xa8\xb1\xc2\xfb\x21\x04\x04\x05\x02\x6a\xa5\x43\x65\x0d\xa8\x72\xab\xe9\xa1\x5e\xd4\x77\x9b\x09\x2f\x6e\x95\x75\x41\xbc\x98\x33\x9b\xf7\xc5\x7f\x8a\xa4\xe3\x5c\xa1\x44\x18\x23\xb2\xfa\xcd\x28\x4f\x6a\x98\xa1\x0e\x34\xd4\xa1\xaa\x8f\x7f\xa6\xbd\xb1\xa9\x51\x68\xa0\xff\x22\x93\x83\x31\x7f\xb7\x78\xd6\x23\x7d\x32\x4b\x56\xc5\x6e\x60\xd6\x6b\xb1\xa3\x13\x5c\x3b\x8a\xd6\x09\xcc\x93\x17\xe9\x15\xca\xfa\x99\x99\xf4\x13\x9d\xdb\x30\x2e\xb7\x52\xf7\xdf\xe1\x10\xa6\x92\xed\xcf\x37\x65\xfb\x06\xf7\xc1\x16\x4e\x84\xad\x9c\x08\x5b\xd9\x12\xfe\x19\xeb\xc7\xb3\x3b\xad\x1f\x62\x07\x45\x8a\x0e\xb7\x32\x9f\x6c\x6d\x35\x11\x92\xe3\xf6\x4d\x14\x7d\x0f\xe5\xe3\x9d\xe4\xd0\xc7\xff\x34\xdb\xe9\x5f\x2d\x8f\xfe\xd7\x0c\xfb\x0f\x15\x6a\xff\x9e\x66\xdf\x7f\xa5\xcc\xfb\xee\x33\x64\xde\x47\x4d\xe6\xbd\xf9\xa3\x32\xef\xf1\x9d\x64\xde\xe3\xff\xd5\xbd\xfe\x0d\x0c\xd6\x7f\x7f\xc1\xf1\x1f\x69\x20\xff\x57\x0a\x94\xf7\x9f\x21\x50\x1e\x6b\x02\xe5\xc9\x1f\x15\x28\x3f\x75\x1e\xc1\xff\xf4\x47\x95\xa6\xdb\x66\xa3\x06\x71\xcb\x5c\xeb\x9e\x53\x9d\x13\xea\x16\x4d\x1e\x75\x2d\x94\x1d\x8a\xbd\x3a\x12\xfc\x6d\xeb\xf1\xef\x4f\xad\xe3\xdf\x1f\xa9\xfe\xde\x46\x3e\xb6\xad\x8d\xe4\x5f\xba\x76\x3a\xc4\x56\x03\x44\xa4\xb0\xc4\xce\x47\x4a\xe4\x99\x9c\x38\xc1\xdb\x47\xc9\x7a\x1d\x1d\xd8\xbd\x9e\x65\x63\x66\xc4\x67\x96\xbc\x46\x88\xa2\xf5\x3a\x51\x19\x39\x41\x69\x3f\x32\x83\x7e\xc2\x4a\x98\x95\xc3\x78\xf4\x23\x45\x29\x36\x7f\xa4\x28\xc0\xf2\xd5\x51\xe3\xd5\x70\x8a\xa1\xfa\x1d\x60\x18\x3c\xe8\x57\x9f\x39\xc6\xeb\xb5\x16\xc3\xf9\x2f\x54\xbf\x1e\xac\x21\xaf\x9e\x25\x64\x63\x74\xaf\xdf\x44\x3e\xb3\x0a\xbc\x3f\x74\xf5\x47\x47\x1d\x44\xb0\xe5\x76\x8f\x2d\xb7\x7b\x1c\xb9\xdd\xe3\xf0\x6e\x59\x09\xde\xbf\xb7\xb3\x7d\x63\xc2\xcc\x21\x32\xf3\x7e\x01\xa9\x95\x43\x60\xe5\xfd\x8c\xbb\x13\xd5\x9e\xa4\x74\xf2\x73\xfd\xd0\xa4\x23\x9b\x8d\xee\xcf\xb4\xe1\x59\xf5\xe7\xdb\x6b\xf9\x95\xb6\x98\xe3\x8b\x66\xf1\xbf\xb6\xf3\x7f\x68\xe6\xf3\x98\xac\xdb\xab\x2f\x8a\xea\xb1\x16\x64\xe2\x65\xa1\x3c\xbf\x87\x48\x7b\x6b\x9e\xa8\x08\x0c\xd5\x67\xd0\xf8\xe4\x37\xed\x23\xcf\xf6\x89\x0d\x29\xfb\x33\x84\x80\xfd\xa1\x9e\xed\x9b\xc3\x3e\xf5\x1c\x1f\x0a\xe2\x8c\x8a\x83\x84\x9f\xf1\x17\x22\x8a\xbe\x03\x29\xfb\x73\x9f\xbf\xcf\x26\xf7\xfb\xd4\x2b\x04\x78\x61\x3a\xbe\xac\x33\xb1\x1c\x56\x5d\x2a\x7e\x7c\x0d\x81\xf8\xf1\x4d\x9f\xf2\x1f\x26\xf5\x92\xaa\x6e\x5e\xb3\x08\xff\xb5\x9f\x7a\x85\xe5\xf8\xbc\x01\x8b\x64\xbc\x05\x8b\x64\xfd\x80\x27\xeb\x75\x8b\x0a\xf7\x45\x03\x50\x90\xc4\x1a\x8e\x8a\x43\x62\x8f\x2c\x4b\xa2\x89\x78\xe1\x88\x63\x85\x59\xc5\xa2\xbc\x44\x09\x31\x0c\x4c\x51\x19\xde\x1f\x42\x41\x6c\xad\x9f\xbc\x83\xaa\x4b\xb2\x0e\xe5\x7c\x2d\x82\xd4\x2f\xbf\xf8\x57\x2b\x50\x9b\x7a\x53\x61\xff\x63\x0f\xb6\xf5\x1b\xb8\x8d\x55\xf8\xfb\xc6\xc1\x76\x61\xc3\x5f\x5a\x09\xf8\x5f\xb5\xdd\x24\x84\xd3\xab\xe0\x15\x0f\xe5\xcd\x16\x05\xae\x70\x61\x2d\x2c\xc0\x7a\x5d\x54\x5f\x2b\xe7\x16\xe2\xfc\x3b\xec\x13\x81\x22\xb5\xa2\x70\x46\x7e\xd1\x94\x1d\x0c\x59\xfb\xde\xde\xc6\xd8\xb4\x4a\xfc\xfe\xeb\x50\x55\x95\x24\x2b\xcb\x12\xd0\x0f\xfa\x8c\x68\xc6\xb6\xd3\x27\x0b\xc6\xc2\xbc\x6e\xbd\x87\xd5\x41\x04\x80\x8c\x54\xca\x91\x07\x8a\x4b\xf8\xb9\x31\xe5\x6e\x09\x23\xd1\x56\x22\x79\xe9\xce\x10\x11\xb7\xe8\x16\xf1\xf6\xc8\x0f\xed\xe9\xc1\xeb\xbf\x7b\x1c\x86\xee\x85\xab\x00\xca\x1f\x11\xf1\xe0\x89\x25\xd0\xe2\x9f\x2b\x5f\x9a\xd7\xca\x7e\xe7\xf5\x31\x7e\x79\x0c\x57\xa1\xff\x6f\x99\x1b\xdc\x37\xae\x67\xfb\xdb\x66\x48\x95\x0f\x43\x42\x48\x86\xb7\xd4\xc2\x24\x3f\xf7\x6c\xcb\xbd\x7d\x6a\xc1\x86\xd9\xfa\xc8\xb4\x28\xfe\x56\x2b\x25\x36\x04\xc4\x19\x05\x07\xd9\xc8\x34\x53\x30\xcd\x00\xdf\x36\x14\x89\x67\xfb\x5e\xea\x43\x24\xff\x26\x9e\x23\xbf\xc5\x5f\xea\x05\xac\xdd\xc0\xc7\xa3\x4f\x8a\xb5\xec\xf7\x08\x33\x35\x05\x1b\xf7\xdb\xfe\xd8\x4d\xb6\x6e\xaf\x20\x4c\x19\xe0\xaa\x86\xa6\xb6\x26\xc5\x6d\x1b\x08\x05\x29\xca\xe4\x9f\xcd\x9b\x8a\x0c\x77\x5b\xde\xec\x03\x89\xaa\xa2\x7c\x71\xe0\xf4\x7a\xc3\xe6\x1a\xd3\x1e\x95\xe6\x52\xa7\xa8\x88\xe1\x1f\xb0\x6e\x1d\x12\xbb\x8a\xba\x50\x54\xe3\x5e\x6c\x63\x86\x2d\x76\xce\xbf\xd3\xe5\xad\x6a\xb5\xa9\xa6\x7e\x71\x40\xec\xee\x49\x5b\x51\x78\xcb\x9b\x01\xde\x54\xe5\x4d\xbd\xda\x03\xe9\x57\x57\x41\x0b\x6c\x52\x79\x83\x58\xed\x84\x6c\x5c\x18\xae\x86\x6f\x5b\x3e\x2e\xd5\xc2\x57\xaf\x72\x95\xa9\x1d\x6d\x9d\x2b\x7c\x6e\x0c\x1e\xe8\xd3\x25\x2d\xba\x60\x6c\x4d\x97\x0f\x3a\x21\x1c\xe1\x0a\x3d\x6f\x2f\x84\xd1\x14\xa1\xa8\x0e\x64\x76\xe8\xe0\x3a\x44\x1f\x5f\x46\x08\xb7\x87\x3c\x26\x1d\x7d\xc8\x2b\xbf\x53\xa3\xf4\x20\xe2\x2f\x65\xb9\x5f\x26\x12\x48\xa0\xd4\xf7\x65\xc8\xc4\x7c\x64\x9a\x19\x0e\xbc\xcc\xf7\x1c\xdf\x24\xfc\x87\xed\x93\x28\x7f\x15\xbc\x42\x89\x48\xc6\xe3\x44\x24\xbb\x32\xa1\x84\x65\x93\x18\x7a\xfc\x32\xe9\xf0\x2a\xd3\xe3\xaf\x63\xa6\x7f\x33\x35\x1c\x67\x4c\x85\x2e\x2a\x6b\x50\x23\x59\x5c\x34\x9c\x3d\x31\xf3\x81\xd3\x22\xec\x88\xd8\x1f\x23\xcf\xc7\x50\x90\x65\x01\x19\xc9\x0b\x48\x48\x5c\xd4\x35\x45\x48\x3d\xe2\xe7\xe1\x0b\xb7\x05\x23\x58\x12\x15\x85\x0b\x62\xa2\x5e\x05\x42\xa8\xe1\x1d\x0b\x5b\x28\x25\xf6\x28\x3d\x88\xc5\x8b\x63\xd5\xd5\x29\xcc\x49\xce\xe4\xfe\x84\x84\x5e\xea\x6b\xa5\x96\x18\x16\xc4\x1e\x2d\x0e\x96\x23\xd3\x5c\xe0\x89\xb7\xf0\xc9\x94\x78\x36\x98\x09\x8a\xbc\x85\x0f\x73\x58\x40\x84\x7d\x98\x0e\x26\x41\x11\x10\x96\xb6\x33\x19\x9c\xd3\x15\x99\x97\xb2\x3d\x08\x48\x81\x42\x5c\x35\x1b\x7a\x01\x1b\x34\x11\x0c\x9c\xa4\x15\xfd\x50\x08\x01\x86\x50\xed\xe3\x44\x3c\xcc\xd8\x1f\x7e\xa1\x29\xfd\x77\xf0\xd0\xd4\xfc\xa5\x66\xd4\x76\x6b\xf5\x07\x3c\x54\x44\xdc\x43\x45\x34\x48\xb3\x09\xcd\x3e\xd7\x13\xe1\xb2\xd8\xee\x87\x4f\x62\x4d\x05\xd6\x05\x6f\x63\x3a\xcd\xef\xee\x8b\x43\x35\x92\x17\x2e\x65\x55\x64\x25\x44\x25\x4c\xbb\xe6\x62\xa2\xcd\x45\x5b\x8f\x97\x29\x26\xa3\xcd\xe7\x99\xed\xd7\xb3\x30\xa8\xb9\x27\x22\x62\xea\x25\x7c\xea\x45\x26\xbf\x3b\xef\xa5\x6c\x62\xad\xd7\x36\xd3\x96\x22\x3e\x5d\x75\xa8\x1a\x64\x9f\x44\x65\x5e\x48\xef\xba\x30\xef\x42\x2e\x6f\x20\xd7\xc2\x4d\x84\x56\xe2\xae\xd3\xa4\xb8\xa8\xc2\x6a\x72\x5e\x5b\x62\xc1\x82\x01\xb1\x1b\x22\x02\x45\x84\xf5\xda\x2b\xbc\xcc\xf7\xbd\xa5\x8f\x3d\xc7\xb7\x98\x4e\x84\x0f\x89\x3d\xe6\xda\x11\x49\xb9\x52\x44\x52\x93\x44\xd8\x8d\x0e\x78\x32\x33\xca\x81\xe7\x06\x3c\x59\x00\x96\x30\xe9\xc2\x3c\xdb\x4a\x56\xc2\xf7\x7f\xa4\x7c\x4b\xab\x99\x3b\x4a\x0e\xd2\x91\x69\x6a\x21\x14\x19\xde\x39\x8f\xb1\xc7\xd4\xba\x00\xe7\x8c\xbe\x81\xef\x25\x15\x7d\xc5\x4f\x93\xf0\x1f\xb6\x4f\xac\x7c\x7f\xa8\x91\x74\xf1\x29\xd9\xcb\xd6\xe9\x84\x30\x5c\x05\x3a\xf8\x53\x9c\xc0\x74\xcc\x84\x23\x53\x65\xe7\xc4\x96\x83\x60\x8f\x72\x2e\xa2\xf3\x3a\x33\xe4\x35\xe7\xbe\x0f\x53\x12\x32\xdc\x39\xe2\x30\x27\x68\x6a\xa1\xd0\x0b\x2c\x47\x26\x71\xcf\xf1\x13\x62\x8f\x26\x7c\x90\x26\x42\xea\x2d\x78\xf1\x89\xef\xef\xcc\x4d\x82\x16\x55\x05\xd8\x62\x1f\x75\xe1\x72\x69\x92\x29\xc4\x26\x99\xf7\xa7\x65\xa6\x72\x4c\x22\x7f\xf2\xf1\x5c\xf6\x7a\x28\xb5\x48\xbc\xbf\xc4\xdb\x40\x6a\xca\x5d\x34\x67\x5a\x1d\xd0\x72\x81\x2e\xeb\x68\x9a\xcb\xa2\x8a\x70\xad\xd1\x39\x6b\x84\xd5\xb5\x18\x97\x95\xfa\x82\x7a\x59\x34\xd6\x19\xc8\x88\xe5\x28\xae\x50\xa2\x3b\x25\x96\xb3\x6f\x33\x6e\x3d\x88\x46\x98\x59\xf6\x54\x2e\x60\x87\x29\x77\xfe\xcb\x16\x8a\xac\x42\x24\xe1\xcb\xcb\x6a\x3b\xd2\xb3\x3f\x8a\xf4\x6c\x03\x69\x1b\x12\x62\x39\x1a\xd2\x8c\x79\x6b\x6c\x39\x67\xe2\x5e\x0f\x65\x26\xa9\x1b\xcf\x38\xa2\x67\x9d\x72\x6c\x25\xc3\x4e\x5f\xd2\x8c\x07\x8b\x86\xd3\x8e\xfe\x34\x76\x03\x79\xe3\xb2\x7b\x90\x92\x0b\x6e\x14\xc9\x59\x03\x4b\x66\xf1\xc5\xc4\x13\x9b\x62\x72\xf7\x4b\xee\xc4\xa5\x5e\xe1\x43\x70\x90\x8f\x11\x9b\xc9\x5e\xe6\xc3\x52\x86\xff\xe6\x51\x2e\x64\x5a\x5c\xa5\x29\xf4\xe3\x1a\x3d\x19\x3a\x15\x2d\x71\x09\x57\x9d\xfd\x59\xb6\xfa\xb3\x93\x0d\x26\xa8\x00\x23\xc8\x42\x03\x34\x3d\x40\x82\xbf\x2b\x31\x54\x10\x34\xe8\x02\x79\x52\x83\x30\x4d\xaf\x0b\xe4\x43\x0d\xb2\x88\x3a\x21\x5e\x34\xdb\x79\x1b\x4c\xa2\x20\xee\x02\xfc\xa9\x06\xcc\x38\xd0\xa3\x2d\x68\xfd\xd4\x44\x6b\x7b\x8d\xef\xdb\x35\xbe\xd8\xd2\x0b\x0d\x90\x6b\xe0\xdb\xab\xfc\xad\xd1\xf6\xf9\x77\x69\x16\x7d\x4c\x93\xa2\x1b\xf8\xd7\x26\xf0\x8f\x34\x2b\xa2\xb0\x1b\xf4\xaf\x4d\xd0\xed\x08\x50\x5a\x43\xca\x48\xc2\x1d\x50\xb3\x0d\xa8\xbc\x0b\x6c\xb5\x01\x76\x14\x65\x61\xdc\x49\xa3\x62\x13\x36\x4b\xf3\xce\x6a\xb3\x0d\xd0\x27\x51\x70\x91\x26\x93\x2e\xe0\x74\x03\xf8\xf8\xb7\x65\x90\x75\xe2\x10\x6e\xc2\x16\x41\xd6\x05\x19\x6f\x40\xbe\xcb\x22\xee\xd6\xa9\x0b\x7a\xbe\x01\xfd\xd3\xaa\x13\xf0\x52\x03\xe4\xbe\xe8\x1e\x07\x79\x94\x1f\x31\xb3\xb4\xb3\x73\xc7\x9d\xf0\xaf\x17\x34\xe9\x82\x3e\xef\x84\xee\x82\x7c\xba\x01\xb9\x4c\x26\xdd\x7d\x7b\xd7\x06\x3d\x0a\xb2\x49\x94\x04\xf1\x76\xac\x3f\x6c\x2b\xb2\x0d\xf1\x57\xdb\x0a\x74\x01\xbf\xdd\x04\x2e\x2e\x96\x71\xfc\x36\xbd\xd8\x8e\xd2\x77\xdb\x0b\x6d\x43\xea\xfd\xf6\x22\x5d\xe0\xcf\xda\xe0\x4c\x58\x04\xd9\x76\x94\x7e\xeb\x2e\xd0\x05\xfa\xb2\x05\xf9\x32\x4d\xd2\x22\x4d\xe8\xcf\x9d\x52\xa3\x5d\xaf\x82\xfe\xa5\x53\x70\xb4\xa1\x5f\x05\xc5\x32\xeb\xa6\x7c\x56\xb4\x60\x8f\x0b\xba\xe8\x02\x8c\xba\x00\x1f\x4d\x0b\xda\xd9\xbb\xa0\x0b\xfa\x31\x9d\xa6\xdd\x93\x38\xd5\xc0\xf3\x22\x08\xcf\x3b\x67\x7a\x1b\xe8\x35\xb7\x47\x9e\x5e\x2f\x82\x6e\x31\x32\xed\x2e\xf0\x24\xba\xa4\xd9\x2c\x4a\x66\x9d\xd3\xbe\xbb\xcc\xab\xb4\x7b\x95\xc8\xbb\xc1\x8f\xa3\x78\x9e\x2e\x69\x51\x74\x16\x9a\x74\x17\xfa\x29\x9a\x6d\x91\x45\x8b\x8d\x02\xcc\xda\x7b\xb4\x58\xd0\x20\x0b\x92\xb0\xb3\xcc\x45\x77\x99\x3c\xa4\xc9\x64\x4b\xdf\x57\x9d\x45\x9e\xd0\xdb\xca\x9c\x75\x96\x79\x9e\xe4\xd1\x84\xbe\x5e\x16\x5d\x45\x4e\x3b\x8b\x6c\xa3\xf0\xb2\x13\xfa\xad\x50\x69\xba\x0a\x5c\x15\x25\x2e\x3f\x23\x86\x77\x86\xee\x61\x88\xc8\x8d\x74\x54\x5d\xd7\x57\xea\x3b\x50\xa8\xd6\x3c\x29\x14\xdc\x9a\x6b\x1b\xbd\x90\x90\x9b\x72\x54\x70\x4b\xa9\x90\xa1\x20\x68\x0d\xe5\x15\xbe\x69\x18\x78\xbd\xa6\xbb\x51\xb2\x9b\x6c\x46\xcd\x8d\xe2\x98\xce\x82\x98\x47\x83\x77\x77\x0d\x93\xe2\x9d\xc4\xa3\x3e\xf1\xfc\x52\xdb\xd8\x0a\x50\xa2\xef\x7b\xd5\x47\xd8\xfa\xd9\x75\x2e\x6c\xad\x0d\x8b\xaf\xb6\xf3\x22\x6e\xe7\x49\x2b\xd1\x4b\x7c\x3c\x48\x82\x0b\x4a\x08\x29\x2a\xc7\x55\x62\x97\xa2\xae\x74\xa9\x68\x59\x9f\x01\x48\xdf\xba\x4d\xe3\x31\x9a\xf2\x73\xdf\xba\xc2\x1b\xf6\x49\x22\xa0\x44\x3a\x53\x45\x36\x24\x95\xf6\xaa\xd2\x12\xd3\xc1\x72\x03\xb4\xea\xaf\xf2\x63\x4e\x85\x1a\x7c\xc3\xaa\x74\x0b\xe9\x53\x3c\x2b\x31\xd0\x46\x44\xf4\x74\x7b\x44\xf4\x34\xe9\x3a\xb6\xac\xae\x7c\x41\xd4\xed\xf5\x9e\x0e\x8a\x2c\xba\x40\x78\x90\x2f\xe2\xa8\x40\xfb\x7f\x5b\x9f\xe4\xe6\x3e\xe6\x1a\x7f\xdb\x30\xc8\x88\x61\x70\xcb\x80\x6f\x2b\xbd\x9e\x22\x63\x60\x88\x68\xd9\x62\x37\x3a\x23\x7a\x57\x5b\xd4\xc0\x40\x7b\xbd\xbd\x62\x30\x0f\xf2\xd7\x57\xc9\x9b\x2c\x5d\xd0\xac\x58\x21\x8a\x37\xf9\x64\x99\x9c\x27\xe9\x55\xa2\xf3\x89\xc0\xf6\x86\xa7\x50\xe0\x54\xca\xca\x12\x97\x88\x9a\x0c\x27\xcc\x8d\x39\x08\x2a\x43\x5f\x04\x5f\x6c\x33\xf0\xc1\x10\x73\xb6\x95\x1e\xe7\x7b\xbd\x7a\x73\x68\xaf\xda\xd2\xea\xe0\xdb\xe4\x32\x88\xa3\xc9\x6e\x18\xc4\xf1\x59\x10\x9e\x33\x9c\x0a\xb1\xd7\x37\x32\xcd\xf4\x20\x18\x31\x96\xc8\x08\xa2\x24\xf2\x52\x1f\x73\xbf\x67\x38\xf1\x32\x9f\x2c\xf9\xa6\x28\x50\xce\x2b\xa0\x85\x07\x17\x9b\x47\x85\xd8\xb9\x11\xf3\xa5\xa3\x00\x83\xaa\x0c\x23\x36\x90\x65\xab\xd1\x8d\x56\xf9\x30\xe4\x7a\x25\x18\x57\x0c\x5f\x42\x98\x2e\x56\x9b\xc7\x71\x37\x65\x75\x12\x57\xf9\x4d\xe4\x48\x15\x7c\x27\x89\x3b\x69\x90\x43\x59\x9b\xc3\x7c\xaa\xf2\x43\xd1\x20\x8e\x37\xef\x24\xa2\x4d\xf9\x61\x0d\x37\x36\x98\xb4\x7d\xd0\x8c\x9f\xb1\x8d\x52\x71\xbe\x86\x59\x9f\x34\xd9\x92\x9a\x43\x9f\x0f\xaa\x40\xf3\x77\xb2\x91\xda\x2e\xcd\x08\x52\x13\xc3\xa3\xd5\x8e\x4c\xd5\x76\xe2\xa5\xbe\x10\x0e\x6a\x2f\x18\x22\x5c\x02\xff\xed\xb6\x05\xef\x9f\x82\x94\x3c\x71\x54\x18\x41\xc4\x25\x4f\xa2\x10\x8b\xb8\xe4\x89\x70\xe2\x45\x6d\xc4\x32\x75\x38\x17\x93\x54\x8f\x07\x54\xd9\xc8\x28\xec\xda\x60\x3d\xe6\x1a\x7f\xaf\xa7\xec\xa9\x56\xc6\x20\x2a\x68\x16\x14\x69\x36\xee\x30\xba\xd5\x36\x6a\xe9\x76\x64\x52\x7d\x56\x6d\x34\x47\x07\x9a\xd4\x22\x84\x54\xe9\x7b\xea\x77\x2d\xe1\xc6\x0a\x37\xb7\x6a\x10\x33\x86\x93\xdb\xe9\x32\x46\x86\x0d\x17\xc4\x86\x4b\xe2\xd0\x7b\xb0\x22\x36\xcc\x88\x0d\x67\xc4\x86\x53\x62\xa4\xfc\xfe\x80\x41\x08\x61\x74\x97\x41\x4e\x6a\x9c\x16\x34\x9b\xa6\xd9\x05\xd3\x2f\xc6\x5a\xbe\x1b\x22\x2d\x07\xe3\x5e\x4f\xfb\x1c\x24\xe9\xd5\x58\xfb\x76\x9f\x04\x05\x85\xab\x4f\xb6\x75\x15\x25\x93\xf4\xaa\xd5\x8c\x48\x64\x2d\x88\x5f\x83\x8c\xfe\xb6\xa4\x79\xf1\x28\x89\x2e\x02\x46\xbf\x67\x59\x70\x41\xc7\xb7\x65\x0e\xce\xa2\x64\xa2\x2a\x6a\x0c\x47\x4e\x8b\x77\xd1\x05\x4d\x97\xfc\x9c\xe8\x6b\x7d\x9f\xe9\xa9\x66\x33\xaf\xd7\xe8\x0a\x5d\x63\x98\x91\x53\xd6\x37\x84\xcd\x33\xac\xc7\xf5\xc6\x37\x33\x62\xeb\x51\xbc\xab\x33\xdd\x20\x8e\xd5\x9d\xa1\xe8\x42\x1d\xe9\x27\xfc\xa6\x5b\x23\x34\xd2\xeb\xe6\xe5\x3c\x36\x17\x8e\x2b\x21\x32\xc8\x28\xf7\x48\x2f\x61\x20\xd1\xc3\x7d\xb3\xb6\xd1\x4a\x21\x86\xcd\x33\x98\x90\x05\xb1\x77\x8a\x6c\x75\xb3\xa7\x09\xb1\xa7\x08\x83\x69\x4e\x76\x74\xfd\x65\x3a\x2a\x46\x18\x51\x32\xb3\x0a\x81\x20\xe6\x6b\x54\x21\x10\x17\x5b\xff\xdc\xe1\x0b\xf7\x9a\x59\x08\xcc\x47\x96\x35\x29\x11\x2e\xa7\xcc\x8c\x8b\x57\x37\x8c\xc3\xb4\x76\xb4\xfa\x21\x23\x53\x48\x88\xb3\x6f\x8f\xb2\x11\xce\x44\xad\x63\x94\x1c\x66\xa2\x35\xbe\xe7\x2b\x7f\xb3\x95\x30\x83\x8c\x7d\xb2\x46\xb0\x8b\x0a\xf5\x1b\x32\x8d\x64\x90\x11\x3a\xa6\x32\xa1\x70\xa7\xa4\xc0\x3b\x73\x42\xe1\x1d\x53\x88\x10\x1b\x22\xbb\xd4\x43\x9d\x2b\xe9\x2d\xe9\x03\x05\xa1\xd6\x6a\xa7\x38\xbc\xec\xf5\xd0\x99\x45\x0a\x58\x11\xfd\x36\xe0\x3b\xc6\x15\x93\xf5\x1a\x2d\x7a\x3d\xb4\x20\x61\x4c\x83\x4c\x71\xc8\x82\x2d\xcf\xd6\xec\x70\x78\x7f\x8c\xe8\x81\xb3\x6f\x73\x10\x8d\x85\xce\x81\x5a\xb2\x1d\xeb\x0c\x63\xb8\xe8\xf5\xd0\x85\xa8\xe3\x79\x52\xd0\xec\x32\x88\xd1\x05\x0f\x5f\x7b\xb1\x5e\xd7\x63\x06\x17\xac\x92\x0a\xe2\x11\x5c\x62\x0c\x13\xe2\xc0\x15\x3a\xc7\x18\x97\xc7\xfa\x6d\x9f\x6d\xba\xcd\x31\x48\x26\xe9\x12\xbd\x1d\x2b\x38\xd5\xa4\xee\xbb\xd5\x82\x4a\xc9\xab\x56\xef\xdd\x28\xdf\x4d\xd2\x62\x37\xa8\xe2\xf2\x1b\x78\x87\x2d\x08\x7c\x45\xce\xc6\x4f\x11\x76\xcd\x0c\x9b\x6a\x89\x1e\xdb\xae\x59\x9d\x33\xb3\xb1\x59\xaf\xe7\xf2\xc8\x7e\xbd\x46\xf3\xf1\x5c\x8d\xd8\x3c\xca\xd9\xa0\xcd\xa3\x1c\xe6\xfc\x4f\x75\x72\xcc\xa6\x4a\x75\xf7\x81\x4d\x96\x0c\xde\x21\x5c\x42\x5e\xa4\x8b\x8e\x9b\x44\x41\x1c\x57\x67\xfb\xbc\xac\xe6\x99\x88\x17\x77\xf6\x6d\x56\x81\x92\xfc\x47\xa4\x4d\x98\x8e\xa9\xa6\x0e\xc5\x44\x7f\xa0\x9e\x79\x55\xd9\x0c\xdf\x24\x03\x86\x12\xc2\x40\x51\xc6\xef\x71\xcb\x49\x09\x2f\x49\x8c\x0c\x0e\x6f\x80\x41\x99\x35\x6a\x84\x4c\xfe\xc5\x06\x18\x11\x1b\xde\x6c\xb9\x28\x0c\x0c\x6f\x89\xe7\xc3\x1b\x62\xc3\x07\xe2\xc0\x13\x32\x84\x57\xe4\x1e\x3c\x27\xf7\xe1\x05\x79\x00\xcf\xc8\x43\xf8\xd8\x19\x56\x5b\x79\x66\xa6\x83\xd3\xd3\x22\x0b\x92\x3c\x62\x10\x6c\xbd\x0f\xf8\x28\x73\x65\x44\x79\xe1\x17\x51\x79\x9b\xa0\xe4\xa6\xdc\xd9\xeb\xa4\x82\xb8\x07\xac\xd7\xaa\xd9\x3c\x4b\x15\x88\x9e\x87\x5f\xe2\x37\x8f\x06\x79\x11\x14\x6c\x39\xfa\x50\x85\x7d\x43\x62\x8d\x8e\x19\x12\x11\xd7\xba\xe6\x24\xf2\xe2\xda\xa4\xc8\x84\xa2\xc5\x30\x9d\x8b\xf2\x84\x90\x57\xaa\xfc\x11\x4a\xf1\x4e\x9d\xfe\x7c\x5c\x01\x3d\x83\xf9\x80\x0d\x68\xa6\xc8\x3e\x1f\xa4\x89\x90\x4d\x1a\x55\x81\x02\xeb\xc1\x24\x28\x82\xd3\x53\x98\x0b\xed\x1b\xe6\x83\x59\x96\x2e\x17\x58\x79\x65\xe7\x08\xb9\x66\x7c\x50\xf4\x7a\x77\x6a\x40\x8d\xdf\xdd\x6b\x2f\xa3\x29\x3a\x42\xba\x41\x5a\x77\x96\xe9\x9d\xf2\xeb\x39\x64\xb2\x51\xc5\x62\x01\xb3\x6f\x69\x1c\xac\x64\x0e\x86\x00\x2d\x31\xe6\x76\xaf\x28\xf3\x04\xb2\x1a\x33\xc9\x67\x0d\xc4\x32\x89\x58\xa6\x10\xab\xdb\x7e\x22\x24\xb3\x4a\x78\x05\x89\xa6\x55\x4e\x49\x36\x28\xae\x28\x55\xaa\x14\x86\x98\xd8\x10\x12\xcb\x19\xc5\x07\xd3\x91\x69\xc6\x18\xcd\x15\x8c\x17\x2b\xed\x4a\x1c\x0d\xdf\x86\x00\xd3\xb4\x13\xcf\x34\x43\x9f\xcc\xf1\x8e\xaa\x9e\x84\xa6\x53\xea\xd6\xab\x66\xa4\x46\xa4\x38\xc8\x06\x93\x65\xc6\x97\xef\x71\x36\xa0\x41\x4e\xb5\x95\xa8\xd8\xaf\x73\xb1\x8b\xda\x44\xcc\xeb\x3e\xbf\x00\xa7\xb2\x78\x92\xfa\x64\x88\x1b\x05\x5c\x77\x95\xe8\x47\x78\xa7\x26\xd3\x0b\x3e\x44\x15\x91\xf9\x24\xbe\x9d\xc4\x39\x13\x31\x9a\xc9\xad\x19\xc6\x6c\x2a\x64\x15\x93\x65\x4d\x26\xab\x78\xa6\xf0\x21\x92\xb3\x60\xa7\x0a\x1e\xa0\xcf\xc5\x92\xdf\xb1\xce\x54\x05\xe4\x75\xc3\xe6\x54\x0d\x7c\xd8\x60\xa8\x74\x83\xa1\xe4\xf7\x01\xa1\xbd\x5e\x8a\xa8\x25\xbf\x71\x09\xb6\x82\x29\x11\x85\x0c\x94\x89\x2d\xc2\x77\x25\xc0\xfb\xea\x46\xcc\x7e\x7e\x09\x9c\x0b\xdc\xb7\xc0\xe0\xdd\x94\x17\x03\x5e\x8f\x9b\xca\xf6\xd4\x00\xb1\x04\xf9\x13\xd8\x38\xba\x29\x1f\x4e\x5e\x32\xe3\xf1\xc9\x80\x23\xef\xbe\x69\x1c\xf1\x7d\xa7\x5f\x29\x7e\x2f\xee\x29\xd5\x52\xe7\xf0\xcd\xa6\xc1\x50\xa4\xe9\x6e\x1c\x14\x74\xb4\x1b\xc4\x19\x0d\x26\xab\xdd\x3c\x9c\xd3\xc9\x32\xa6\x13\x43\x3b\xf2\xab\x5a\x78\x7c\x7b\x0b\xaf\xee\xd2\x42\xb6\x4c\x92\x28\x99\x75\xd6\xff\xbe\xf5\x62\xa3\x25\xaf\xf7\xb2\xf5\x7a\x0f\x65\x24\xf3\x0a\xbf\xc3\xfc\xa9\x81\xf9\x1a\x3c\x4d\x97\x49\xa3\x1b\xac\xda\x9f\x48\xe7\x46\x06\x3f\x1f\x6f\x36\x08\x01\xd9\xe3\x37\x20\xd4\x55\x09\x6e\xb3\x56\x0b\x1d\x77\xd3\x5d\x98\x86\x01\x29\x46\x19\x49\xbd\x48\xdb\x05\x1a\x73\x05\x4d\x10\xe5\x49\xaf\x27\x7f\x1e\xbc\x80\xad\x6c\x5d\x4f\x9e\x64\xac\x89\x67\xb7\x5b\x92\x6e\xcc\x26\x39\x01\x38\x16\x6e\x40\xf6\x9c\x9d\xa0\xd7\xeb\x9e\x15\x25\xfc\x46\x32\x74\x5f\x7b\x3f\xf5\xe3\xc6\x0b\x97\x68\x52\x87\xee\xa0\x41\x38\x47\x1b\x56\xfd\x63\x71\x85\x29\xc1\x23\x44\x85\x58\x5b\xaf\xd5\x2f\x72\x53\x62\xcc\xe7\x5e\xf7\x6d\xa7\x12\x43\x87\x6d\xc7\xc6\x3e\xc1\xa2\x06\xaf\xf0\x4b\x3e\x5c\xbf\x90\x0c\x39\x18\xfe\xd2\x35\x6a\xea\xc5\x90\x91\x2c\x2f\xce\x68\xa6\x5f\x1c\xfa\x6d\x10\xba\xc5\x6e\x94\xe4\x05\xa3\x5e\x3a\xdd\xfd\x65\x10\x8c\x7f\x1b\x4c\x5c\x94\xc9\x8b\xdf\xe8\x97\x41\x80\x51\x81\xf1\x98\x29\xcc\xf0\xdb\x60\x82\xdd\xdf\x06\x53\x2c\xee\x0f\x70\xcd\xe7\x7b\x92\x0c\x72\x1a\x53\xde\xae\x76\xf7\x5b\x53\x1f\x6b\x1a\x7e\xa1\xf5\xa4\xad\x74\xe5\xc5\x2a\xa6\x83\x8c\x5e\xa4\x97\x54\xb3\xdf\x45\x0f\x7f\x20\x76\x5d\x4b\x15\xfa\x45\xa9\x6b\x7c\x78\xf3\x4a\xbf\x5b\x04\x19\xa3\x60\x75\xb5\x9d\xf3\x9b\xba\x4c\x18\x4d\x48\xa2\x07\x6f\xa9\x11\x92\x5d\xd6\xba\x83\x11\x1e\xd4\x3c\xd1\x7c\xf8\x53\x19\x70\xa6\xf9\x03\x47\x91\xd2\x6e\x4a\xec\xfc\xac\x69\xd5\xbf\x6e\xd3\xb0\x7f\x06\x51\xd4\xdd\xbc\xda\x50\x77\x02\xd4\x35\xca\x68\xb2\xd3\xa5\x75\xf7\x7a\x48\x5d\xd9\xaf\xba\x91\x66\xcc\x62\xaf\xb7\x38\x22\xa2\xd3\x4c\xbb\x98\xd3\x78\x53\x94\xaa\xa8\xd9\x29\xbf\xe8\xa2\x0a\xf3\x30\x99\x24\xf2\x72\x7e\xd1\xa5\x0e\xbf\x1d\x78\xb9\x7e\x9f\x6e\x8a\xe5\x1d\x97\x29\xbf\xe3\x82\x96\x24\xf4\x26\xfc\x96\x44\x4c\xe4\x72\xbb\x84\x65\x3d\x51\x27\x10\xf2\xc5\xdc\x50\x29\x46\x94\xec\x2e\x19\x78\x05\x43\x6a\x70\x0c\x73\x6f\xe2\x93\x18\x3e\x22\xf6\x83\xb3\xc2\x04\xe6\xf0\x1e\x2d\x21\xc3\xb8\xb1\x3d\xf6\x33\x0a\x9a\x4c\xc1\xa7\x70\x29\x89\xfd\xa8\xb1\x6b\xf6\x67\xd1\xfb\x51\x1c\xdf\x9d\xe4\x9e\x0f\x39\xfb\x67\x49\xec\xd1\x92\x53\x7b\x59\x51\x5b\xd0\x7a\xd9\xa2\xb5\x3d\x9a\x73\xba\xce\x99\x1a\x1c\x93\xd0\x9b\xfb\xb5\x56\x30\x81\x85\xa2\x70\x0c\xb1\xa6\x54\x42\xc8\x2c\xc1\xf7\x28\x66\xd6\xc4\x25\xb1\x61\x45\x16\x4a\x6d\xb9\x3c\x58\x8d\x4c\xf3\x12\xa3\x09\x59\x78\x97\x6c\x9c\x3e\xa2\x09\x27\xeb\x25\x2c\xe0\x02\xef\x04\x62\x6b\x7c\xc1\xe3\x36\xb3\x5f\x31\x2e\x5b\x44\x56\x84\x9d\x46\x71\x41\xb3\x06\x55\x3f\x4d\xb9\x8b\xa0\x08\xe7\xb4\xc5\xa8\x45\x93\x6a\x19\x29\xea\xeb\x30\x5b\xb7\x2c\xab\x3b\x65\xdc\xaf\x6d\xca\xe8\x9a\xd7\x57\x46\xf9\x86\xa6\xe7\xcb\x78\xda\x4b\x1e\x4e\x1b\x05\x24\xf7\x42\xd6\x69\x49\xb7\x00\x82\x9a\x6e\x21\xe4\xb8\xd7\x93\x37\x64\x82\x16\x6b\x45\x6d\xd6\xaa\x19\x47\xb1\x0d\x2e\xe1\x82\x66\x33\xda\x20\x88\xf0\x1c\x15\x4d\xaa\x5b\xe8\xd1\xa4\xbd\x4c\x6f\xa7\x02\xad\x7e\x27\x3a\x45\xb2\xfa\x4a\x55\xf5\x1c\x94\xc7\x6b\x69\xbe\x14\xdc\x36\xab\x49\x21\x02\xaf\x66\x62\x6a\xc7\x9f\x31\xb5\x63\x6f\xe2\xaf\xd7\x6a\x82\xf3\xa9\xb9\x94\x3b\xf3\x39\xbf\x89\x94\x63\x5e\x07\x6b\xe1\x13\x53\xb3\x93\x7e\x95\x48\x75\x37\xcf\xe1\x58\x3d\xdf\xa3\x06\x85\x1a\x55\x32\xf3\xb9\x92\xdf\x6e\xd7\x3e\x92\x3e\xdb\x8b\x6a\x38\x20\x23\x7f\x45\xb8\x3a\xb9\x91\x55\x47\x95\xa6\x2f\x79\x2e\xda\xe0\xb9\x64\x83\xe7\xec\x51\xcc\x39\x2d\x66\xd3\x95\xf1\x5a\xec\xcb\x30\xf1\xe4\x3d\xa3\x00\xde\xf9\x88\x02\x60\x6a\x71\x0c\x39\xdc\x70\xb5\x37\xe4\x5a\x8f\x19\x0a\x85\x97\xfd\x55\x7a\xae\xd0\x84\xed\x5a\x07\x0e\x5b\x3a\x70\xc8\x75\xe0\xb2\x35\x3f\x93\x16\xa5\x29\x9f\xab\xfc\xd4\x80\x0a\xb6\x87\x24\x9d\xd0\x9c\x7d\xf1\x1f\xfc\x53\x7d\x41\x1e\x7d\xe4\x1f\xec\x2f\xd0\x8b\x45\xb1\x62\x5f\xfc\x07\x30\xc5\x87\x7f\x05\xe1\x7c\xcb\x09\x58\x2d\x44\xb7\x5c\xe5\x3d\x18\x8e\xdf\x8b\x51\x64\xcd\x31\x3d\x0f\x33\x45\x8f\xcf\x16\xf1\x42\xa1\xa9\x5e\x35\x37\x17\x20\x25\x88\xa9\x98\x78\xcb\x39\x1a\xbd\xa4\xd9\x6a\xe3\x24\xad\x68\x1f\xa2\xa9\x4d\x1a\x71\x90\xa6\x9f\x9c\x15\x18\xc3\x1e\x5d\xaf\xa5\x55\x4c\x08\xa1\x25\x1e\x7f\xe7\x3e\xde\xd9\x54\x65\xc4\x26\x4a\x2a\x5f\xe6\x61\x7e\xb1\x3f\x4d\x76\xf2\x3d\x42\x92\x5e\x4f\x5c\xc9\xcd\xf1\x20\x4c\x17\x2b\x84\x59\x2f\x65\xcc\xba\x41\x9a\x90\xa8\x2c\x51\x26\x9f\xf3\x41\x50\x14\x59\x27\x31\x2b\xa9\xc9\x78\x36\x5f\x04\x21\xc5\xe2\x91\x94\xd0\xec\xa7\x69\x76\xc1\x50\xcc\xc6\xbf\x0d\xe6\xee\x5f\xf4\x93\xab\x01\xab\xf3\x1d\xb3\xaf\x10\x85\xce\xab\xe4\x28\x1b\xc4\x69\x18\xc4\xe3\xad\xa4\xde\xd6\x65\x7e\x45\x39\xe3\xdd\x16\xe7\x91\xfc\x7c\x6f\x29\x4d\x4f\x24\x1d\x2d\xcc\x68\xf1\xa8\xf8\xff\xa9\x7b\xf3\x26\xb7\x8d\x24\x71\xf4\x7f\x7d\x8a\x11\x9f\xdd\x01\x74\x17\xa9\xba\x0f\x4a\x98\x0e\x8f\xc7\xde\xf1\xee\xf8\x58\xdb\xeb\xd9\x5d\xfe\xf8\x14\x75\xaa\x31\x62\x13\x2d\x10\xd4\x31\x16\xbf\xfb\x8b\x2a\x00\x04\x78\x74\xab\x15\x3b\x1b\xbf\x78\x6a\x45\x12\x04\xeb\x3e\xf2\xaa\xcc\xac\xa6\x2e\xcd\xb6\xf1\x3f\xfc\x92\xf9\x59\x6a\x3f\xf0\x6d\xad\x79\x5e\x14\x45\xb6\x29\xb6\x71\x32\x5b\xd1\x41\x17\x69\xdc\x36\x45\x51\x94\xd7\xd5\x3c\x2b\x8b\x48\x3f\x9b\xe4\x18\xb1\xed\x03\x88\xb7\x3c\xe3\x43\x05\xef\x76\x27\x8a\xcb\xff\x85\x1e\x45\xf2\xf5\x4f\xe9\x41\x62\x7b\xf3\xac\x06\x25\xf8\xad\x5d\x49\x93\x38\x75\xb3\xc9\x55\x5a\x1c\xf3\x5e\xba\x3a\x33\x5d\xf7\xb2\xd7\x9f\x39\x48\x8f\x2d\xa7\x6f\x6a\xd2\x96\x7c\x62\xed\x14\xf5\xd5\x64\x72\xef\x9e\x79\xcc\x02\xd9\x23\x90\xa2\x28\xaa\xd1\xf8\x5e\x97\xf3\xb2\x1b\xd3\xfa\xc1\xc9\xfe\xcc\x26\x64\xfe\xb1\x55\xb6\xb3\xb5\xdf\xb9\x69\x97\x9d\xdd\xbe\xfb\x99\x4c\xaa\xd5\xd3\xd3\xf1\x6e\x79\x75\x48\x33\x69\x43\xb2\x3a\x72\xc7\xf5\xec\x65\x92\xfa\x9e\x8c\x8e\xae\xc7\x9b\xbb\x4b\xda\x1d\x58\x9f\xd7\xcb\x9f\x9c\xac\xb7\x7e\x52\xf7\xe0\x94\x27\xe7\x8a\xcf\xca\x33\xd3\xbc\xd7\x10\x8c\x5d\x7a\xda\x97\x65\x71\xcf\xfd\x65\x7d\xe9\x65\x87\x1a\xd3\x81\x70\x99\x5f\x5c\x9c\x35\x92\x18\xab\xc8\x5b\x71\xf1\xc1\x95\x02\x9a\x38\x68\xbb\x5d\xd2\xc0\xe5\xa0\x1e\xdc\x6d\xda\x41\x2c\x1a\x50\xee\xce\x5b\x6b\xfc\xdf\xe9\x42\x4c\xf9\x88\x26\xe7\x59\xb7\xc8\x92\xb4\x7c\x76\x9d\x1f\x11\x82\xcc\x5f\x15\x11\x19\xbd\x99\xbd\x1a\xa8\x41\x8f\x40\x06\xc1\xbb\x27\x0b\xe7\x86\xe4\x01\x24\x39\x92\x7e\x62\x29\xf9\x88\xee\x65\x0f\x49\xf5\xe0\x9e\x7c\x07\xdb\x6d\x33\x6c\xb7\x7a\xc0\xa0\x11\x79\xd6\x85\x06\x65\xb1\xd9\x8f\x56\xa4\xa3\x13\xbf\x76\x5d\x75\x11\x4f\x7e\x91\x6e\x6f\x3e\xef\x30\xf5\x60\xaf\xf7\xe3\x08\x2a\xa0\xef\xe9\xf7\xe6\xde\x7e\xef\x49\x06\x58\x25\x2a\x70\x38\xe2\xdb\xfe\x50\xe9\xbe\x61\x59\x15\xdb\xfb\x8a\x8e\x63\x5a\x14\xab\x76\x4c\xd2\x60\x5c\x5c\xac\x12\x52\xd2\xf3\xac\x2a\x56\xc9\x01\x2d\x52\x97\x6d\xbf\x8a\xf6\xc4\x63\x18\x95\x26\xcf\xf3\x53\x66\xea\x40\xc1\x07\x74\xb1\xcf\xd0\x80\x4d\x91\xc6\x75\x72\x75\xdf\x50\x6c\x7b\x25\x57\xdb\xfa\x59\xb5\x06\xb6\x53\xff\x6d\x3b\x35\x95\x5e\x5e\xb7\xd7\x44\x7f\x91\x45\xea\xf5\xb6\x2a\xdd\x1f\xe0\x93\x55\x3b\xad\x65\x51\x14\xf6\xe3\xc7\xd6\x3f\x67\x75\xc0\x19\x45\x8e\xdb\xe6\x20\x96\x59\xac\x77\x7d\xe8\x89\xd2\x81\x74\x2f\xf7\xe3\x27\xf1\x21\xa4\x7f\xef\x4c\xf6\xe9\xe3\x48\xeb\xd1\xa0\x77\x2b\x30\x0e\x74\xdd\x8f\x73\xd3\x71\xac\xc7\x6b\x30\xa1\xe2\x6e\xaf\x9e\x52\x84\x41\x97\xb8\x1f\xef\x6e\xb3\x3e\x4c\x1a\xd6\x63\xd2\xb0\x8e\xa4\x61\xfd\x28\xd2\xb0\xfe\x4c\xd2\x70\xae\x84\x7b\x08\xeb\xa1\x11\x63\x72\xe4\xfc\x14\xce\xac\x9e\xa6\x15\x1c\xe7\xbd\x2c\xaa\x23\x9c\x39\xf2\xd3\xd9\xbf\x5e\x1f\xe8\x09\x37\xbe\x19\xf6\x0d\x68\xa2\x68\xdb\x4d\x47\x05\xea\x3c\x07\xeb\x1e\x7d\x56\x03\xfa\xac\x76\xa9\xec\xfe\x94\x79\x32\x99\x47\x84\x0b\x1a\xff\xbe\x39\xc7\xf9\x8c\x3a\x3e\x89\x69\x26\xe7\x78\x66\xff\x09\xde\xab\x13\x35\x3a\x36\xb2\x2d\xd2\xbf\x6f\xbe\xae\xd6\x8d\x5f\x0f\x7a\xf2\xc9\x64\xde\xec\x76\x59\xbf\x61\xdb\xea\xe2\x32\x7f\x04\x47\x36\x2e\xcf\xef\x76\x59\xef\x14\x39\x99\xcc\x7d\xe4\x43\xf3\x1d\x68\x11\xcd\x19\x01\x3a\x15\xd0\x2f\xdc\x36\xd5\x04\x64\x7e\x10\x84\x4f\xba\x92\x7e\x69\xe5\xc8\x1f\x2a\xe7\x8f\x8c\xd5\x52\xb6\x91\x1e\x3d\x0a\xbd\x57\xf5\xd3\xa2\xf0\xfd\x21\x54\x73\x71\xd1\x74\x35\x7d\x7d\x53\xae\x5c\x3b\x32\xbb\xbc\x35\x95\xf5\xbb\xee\x00\xe8\x41\x31\xb2\x0c\xed\x46\x01\x67\x36\xc9\xef\xe3\x1b\x8f\x4e\xa4\xca\x54\x78\xe7\xe4\x57\x1e\xfb\x7a\xb6\x6e\xa2\xad\x25\x5f\x77\x46\xd1\x37\xfb\x0f\xeb\x16\x97\x8d\xd1\xf9\x6e\x3c\x86\x09\xa7\xee\xed\x15\xce\x33\x16\xe7\x57\x47\x39\x42\xa0\x55\x51\xb6\x4d\x4c\x27\x2a\x4f\x8b\xa2\xce\x0f\xbd\x24\xb3\x75\x51\x17\xd5\xde\x5a\x4e\x27\x2f\x42\x1d\x5b\xbe\x5e\xe8\xb1\x39\x6c\xb6\x2e\xd6\xbd\xbd\x60\x2b\x11\x5b\x9f\x69\xd0\x87\xfc\xd9\x75\xf5\x44\xbc\x7a\x1f\xb7\x7c\x0f\xa2\xa8\xef\x43\x14\x47\xfd\xaa\x46\xfd\xd2\x45\x35\xf4\x4b\x47\x6e\x29\xff\x3d\x89\xc2\x3a\xdf\x1b\x35\x0e\x8e\x96\xc7\x26\xb8\x9d\xdf\x65\x79\xec\xf6\x5a\x86\xac\x5c\x6c\xc7\xbd\x8e\x5f\x8b\x4d\xd7\xc5\x6d\x24\x97\x17\x17\x65\xab\xbc\xdb\xe4\xbb\xae\x0d\x51\xce\xce\x07\x41\xbb\x55\xa9\xdc\xa7\x06\xbe\x5f\x69\x71\x3d\x9a\xf7\x4f\x20\x86\x73\x4c\x60\xfe\xfb\x5f\xfa\xe1\x69\xd5\x3c\xc5\x7d\x17\xfd\xee\x8e\x19\xd5\xbd\x39\xc9\x55\x03\x1e\x28\xaf\x89\xdd\x6c\x12\x16\x39\xdc\x07\x4d\x97\x62\x37\xa8\x91\xfe\x2f\x74\xff\x4f\x43\x73\xbb\x56\xfc\x8f\x47\xe0\x4c\x91\x0f\x0e\x42\x97\x68\xd7\xaa\xce\xfe\x47\x63\x70\x62\x7c\xfb\x39\x24\xf6\x6c\x17\x62\x9b\x62\xf3\xef\x6b\x7d\xd2\xf3\x01\x7f\x26\xb6\x4f\xb2\x8d\x6b\x0f\x1e\x8b\x3a\x61\xf1\xb2\xa8\x93\xf2\xee\xd0\x76\xf8\xa7\xba\xba\x2d\x37\x7e\x68\x7b\x05\x74\xcf\x15\x75\xae\x0a\x3a\x6e\xbe\x53\xb7\x05\x58\x14\xd3\x69\x79\x71\x51\x65\xf9\x6e\xf7\xa4\x3e\x7b\xfa\x59\x0f\xa7\x9f\xa9\xfe\x6a\xfd\x24\xca\x49\xfe\xe2\x22\xcb\x9a\x64\x32\x3d\x30\x7b\x2f\x67\xed\x01\x6e\xbf\x55\x41\x33\x7b\x39\xdb\x9f\xef\x1e\xbc\x8d\x84\x2a\x7d\xdf\xe6\xed\x79\x70\xd1\xec\xf2\x5d\xba\xb1\xbd\xe7\x41\xee\x0f\xab\xb9\x8f\xa6\x3a\xbe\xdd\x22\xad\xa2\x7a\xe6\xdf\xdf\x55\xeb\x44\x43\x41\xbd\xcb\x48\xfe\x98\xf2\xd0\x74\x5f\x22\x9a\xfe\x73\xca\xcc\x32\x7f\x59\xe0\xfc\x45\x81\xae\x0f\x5a\x3b\xc7\x43\x5d\x38\xd5\x95\x3f\xc3\x9f\xaa\x2e\xe5\xf8\xe9\xbb\xc7\x74\xc5\x5f\xfa\xcb\x2c\x6b\xae\x50\x7e\xe9\xa7\x27\x1d\xa9\xde\xfa\x7a\x73\x53\x55\x5d\xd1\x68\x26\x20\x62\xf2\x31\xfd\x99\x4e\xc7\x25\x5f\x35\xf9\x15\xfa\xa7\x95\xdd\x8f\x15\xba\x3e\x6a\xfd\x3c\xf3\xd3\x02\xe7\x47\x15\xe3\xd3\x11\xbb\xa7\xee\xc4\x8b\x34\xbe\xc0\x97\xfd\x08\xd6\xbe\xc8\xc6\x0d\x1a\x98\xf7\x36\xb2\xe6\xa6\x5c\x67\xe8\x59\xd6\x74\xa7\x2f\xfa\x7d\x86\x92\xb0\x75\x99\xd5\xcf\x8a\xc6\xe7\x63\xad\xc2\x88\xc5\xbc\x1c\xe6\x14\x20\x78\x39\x9d\xfa\x2e\x9c\x67\x2c\x2f\x5b\x4f\x7d\xfe\xac\xce\x07\x4d\x80\xbe\xbd\x5b\x95\xcd\xd6\x9d\xbd\xd2\x3d\xb5\xea\xb2\xf1\xf9\x0e\x94\xb3\x3b\x5f\x97\x95\x2b\xc6\x3a\x87\x71\xb2\x98\x66\x97\x21\x30\x3b\x5a\x93\xff\x9c\x6e\xa1\xe9\x41\xc7\xa6\x08\x5e\xb6\xf1\xfa\xc6\x9d\xf3\x57\xeb\xff\x3f\x76\x2e\xcb\xe2\xb2\xf0\x53\x94\xbf\x80\xd7\xc7\xf3\x77\x6e\xf6\xe6\xf8\x74\x34\x0e\xd3\x5d\xa5\x74\xa3\xc5\xf9\xbf\x34\x16\xed\xe1\x52\x32\x8c\x3a\x39\x47\xc2\x0c\x9e\x52\xc1\x13\x8c\x14\xb7\x99\x1f\x36\x97\x6f\xb7\xd4\x6e\x34\x52\x6b\x7f\xe4\x16\xf6\xfc\x69\x76\x6c\xa4\x94\x8f\xec\x93\x92\x0b\xcd\xd3\x74\xdc\x32\x08\x15\x83\xbb\x8c\x4f\x27\x61\xc5\x37\x91\x7b\xf7\x83\x8d\xd2\x79\x93\x93\x3d\xc1\x38\x17\xa6\xe0\x0c\xa9\xce\x7f\xff\x5b\x4f\x6d\x77\xf9\x0e\x9c\x2f\x74\x64\xe0\x7a\xc2\x20\x80\xfa\x89\x1f\xdb\xcf\xfc\xe7\x75\xd6\xb4\x86\x41\xc9\xf3\x2a\x9d\x2a\x26\x5b\xf3\x7f\xcd\x72\x10\x7b\xec\xf3\xa1\x3f\x7e\x1f\xbd\x26\x29\x17\x92\xa8\x76\xe2\x88\xf2\xcf\x39\x79\xec\xcf\x1d\x2f\x2e\xda\xb3\xc6\x26\x9d\x35\xd6\x1f\x3f\xae\x7d\x3a\x82\x3c\x3a\xd7\x3e\x3d\x2d\xec\x8d\x7d\x4a\x5f\x2c\x62\x6b\x97\xa0\xf2\xf7\x99\x88\x9d\xb1\x48\x6b\xa3\xe3\xac\xef\x33\x0d\x2b\x3b\x37\xaa\x32\xf9\x08\xb6\xf6\x60\x7f\xbf\xb8\xa8\x4f\xdc\x05\xdb\xe6\x2d\x16\x7e\xb9\x04\x65\xec\xc6\xd5\x3a\x3f\x90\xc8\xfa\xd8\x13\x43\xf5\x9f\x88\x8f\xa0\x6d\x53\xbe\x3d\xef\x2e\x3c\x72\x70\x1e\x19\x02\x9f\x26\xfc\xdb\xe7\xba\x82\xe2\xfc\x50\xc5\xbc\x1b\x29\x4f\x46\xd2\x6e\xec\x6c\x92\xc1\x0e\x96\x58\x99\x1f\xdb\x9a\xb5\x0c\xf1\x6c\xe3\x9b\x36\x82\xe5\xe0\xe0\x96\x4e\xec\x67\xe5\xa6\x3d\xb9\xf7\x79\x2f\xd9\x75\x66\xab\xe3\x68\x8f\x63\x5f\xb8\xde\x8c\xb5\x2d\xb3\x02\x3e\x0a\xc4\x43\x64\xc6\xc3\x9f\x9b\x14\x62\xa8\x5a\x82\x2a\xca\x79\xeb\x7c\xd7\x57\xee\xf7\xab\x73\x13\xe7\xdd\x77\xe9\x37\xc0\x2f\x36\xcb\x91\xb9\x61\xf9\x18\xdf\xca\x12\xdc\xe8\xcd\x19\xd4\x34\xf9\x62\x72\xe5\x7b\xc5\xc3\x0e\xbc\xf2\xf7\x2a\x72\x16\x29\xe9\x72\x07\x36\xfe\x38\x02\xdf\x69\xaa\xce\x72\xec\x54\x6f\xb2\x97\x0c\x52\xba\xbd\x86\xac\x6f\xc1\xde\x98\x30\x95\xd5\x2c\x77\x20\xb9\x67\x9c\x35\x3c\xe8\xf3\xe4\x93\x2f\xd2\x89\xf2\x02\x2e\x0f\xb3\xc7\xc6\xbe\xf6\x1f\x36\xa7\xbe\x82\x5d\xac\x97\xd4\x92\xa3\x62\x9a\x54\x4c\xe7\xca\xda\x74\xb2\x35\x1a\x36\xb8\xdf\xb5\x52\xf5\xff\xa4\xd4\xb6\x6f\xe3\x22\xfd\xba\xa9\xcb\xff\x49\x99\xbf\xbf\xf6\x1f\xe6\x43\x73\x3b\xc9\xbf\x1f\xc5\x71\x55\xc9\x14\xe1\xa4\x1e\xf8\x89\x6a\xae\x86\xc9\x8a\xcd\x4d\x16\x0c\x0f\x4e\x4a\x14\xe0\xf6\xf3\xd2\xa1\x9f\xa7\xa8\x2b\xe3\x29\xdc\xb5\x66\x0f\xe3\x75\xf1\x89\x7e\xf6\xc3\x06\x46\xbd\x6c\x35\x5f\x2d\x66\xd5\x63\xd7\xc1\x4d\xc4\x0a\xad\x72\x7d\xe4\x7a\xfc\x64\x33\xda\x1e\xe7\xf4\x63\x11\x63\x6c\x4e\x30\xc6\xe6\x14\x63\x44\x7c\xa1\x9d\xcb\x0e\xb0\x85\xef\x99\xa3\x83\x68\x47\x67\x90\x43\x8a\x7e\xd4\x15\x10\x31\xf6\x01\x6a\x18\xfd\xd8\xa4\x9f\xc1\x3a\x8a\xaf\xfb\x6b\x0b\x76\xf7\x6d\xf1\x4d\xda\xe2\xdb\xd9\x8d\xde\x00\xed\xdc\x83\xfb\xb8\x53\x93\x2f\x3b\x8b\xcf\xfd\x3e\xdd\x76\x8a\xc5\x6e\xdb\x6d\x67\xe9\xb3\x5f\xf1\xdb\x14\x6a\xaf\x5d\x41\xdb\xb1\x2d\xcb\x76\x6c\xca\xb2\x4d\x83\xd5\xfb\x73\xb6\x28\x74\xdf\x64\x60\x8b\xd5\xec\x56\xdf\x25\x13\xa9\x34\x8f\xe0\xa6\x53\x57\x4d\xca\xc8\xb2\xd9\xb2\x99\x8c\x6c\xcd\xdd\x80\x31\x74\x64\x61\x8a\xc5\x12\xac\x8b\x9b\x73\x81\x0f\x8b\x32\x92\x42\x5d\x34\xb3\x57\x11\xeb\x26\x35\xfd\xd3\xd6\xf5\x66\xfd\xb4\x28\x6e\xf6\x34\xf0\x49\xd3\xe1\x65\x5d\xd4\xed\xee\x29\x87\xf1\xf5\x8b\x4c\x4f\x51\xfe\x65\x3f\x7d\x7b\xb7\xfe\x81\xdb\x58\x2c\xe7\xa1\x8f\xbb\x07\xca\x99\xab\x6e\x75\x79\xc8\xdb\xa4\x9a\x8f\x54\x1d\x83\xc7\xfe\xde\x09\x39\x85\x1a\x8e\xfd\x1a\xb8\x16\x50\x81\x4d\x5c\x3f\xdb\x71\xb4\xac\xcd\x8b\xed\xf3\x3c\x79\x9d\x67\x55\x1b\x91\x6e\xb3\xcc\xdb\x30\x05\x7d\x57\xba\x8e\xac\x07\x44\x55\x46\xde\xb6\xd6\xeb\x57\x67\x39\xe0\x73\xb1\x11\x43\x1f\x02\x31\x45\x40\xec\x9b\x19\x8b\xe9\x1c\x7e\x1f\x1b\x0b\xd1\xef\x03\x1e\xda\xea\xee\x43\x71\x4a\xf1\x5d\x96\x77\xc3\x96\xd5\x79\xdb\xc8\xcc\xe7\x7d\x35\xd9\x3a\xf1\xdc\xfb\x29\xbe\x3b\x50\xcb\xc4\xbc\x7d\xc2\xf6\x20\xac\xd5\x8e\xb4\xe5\x81\xaa\xa8\xdb\x02\x81\x2e\x16\x10\xa0\x25\xd8\x14\x4f\x51\x1f\x78\x0e\xd8\x62\xc6\x86\xc5\x13\xf6\x9a\x96\x32\xeb\x55\xc2\x20\x14\x7a\x81\x96\x2f\xf4\x02\x2e\x93\xf5\x5e\x98\xc2\x25\x70\xf1\xe5\x34\x2c\x9f\xf8\x22\x73\xd3\x9b\xfc\xd9\x48\xe2\xa9\xa7\xdb\x2b\x7c\xb9\xca\xc1\x26\x99\x3d\xa5\x5f\xc2\xaa\xaa\xea\x14\x97\xf1\xe6\x2a\xe5\x98\xfa\xcb\xac\x9e\x6e\xf3\xfc\xd2\x82\xa6\xf0\x97\x19\x9a\x6e\xdb\x1c\x37\x6d\x8e\xba\xda\xae\x5d\x76\x93\x83\x66\xfc\xbd\xe9\xd4\xfa\x77\xc3\x29\x5b\xea\x5d\x1e\x07\xee\x20\xbe\xc1\x30\xb7\x37\x57\xfe\xb2\x19\x70\x7e\x95\x85\xeb\xbb\x21\xbc\xd8\xfc\x6e\xbf\xd6\x3b\x62\x59\xf7\xe3\x09\xea\x73\x8b\xf9\xde\x89\x8e\x32\x1d\x08\x59\x9e\xcf\xcb\xb8\x4c\xea\xe3\xd5\xf6\x50\x5e\x5d\x2c\xae\x52\x6c\xeb\x2b\xbf\x40\xcb\x65\x5b\x8c\x1e\xd6\x5c\x57\xd8\xcf\x71\x10\xce\x96\x78\x94\x7f\x53\x3c\x85\xb1\x90\x98\xd3\xe8\xb5\x7b\x57\xba\xe6\xe6\xcc\xca\x6b\x76\xc9\x37\xc2\xdf\x9d\xf9\xcd\xa7\x6a\xef\xad\xf1\xa4\x0f\x9b\xe2\xe9\x53\xdf\xb6\x3c\x62\xd0\xd9\x9d\x76\xae\x5c\xbf\x7a\x5c\xe6\x6d\xb1\x1a\xa4\x66\x08\xf6\x26\xa7\x28\x1d\x54\xa7\x42\xb7\xa3\x42\xbf\x5b\xaf\x1f\x1b\x39\x74\xfb\x39\xe5\xfe\xb8\x6d\x1e\x5b\xee\x27\xdb\xbb\x8a\xe5\xea\x55\xf9\xea\x91\xeb\xc7\x7e\xaa\x40\x1b\x0b\xbc\x07\x85\xdc\x0d\x28\xa4\xcc\xf2\x1e\x89\xe8\xbc\xdb\x37\x9b\xfc\x60\xe4\xb2\x6d\x7e\xd0\xe3\x6c\x95\xb7\x2d\xcd\x6c\x94\x3d\xb2\x91\x5f\xc2\x6d\x76\xa2\x6b\x6f\xf5\x67\xdd\x11\x5a\x6a\xd0\x9e\x71\xdd\x4f\x7a\x73\x50\x7e\xef\x28\xd3\x1c\xb4\xe2\xe4\x6d\x9b\xb6\xb9\xaf\x8f\x3e\xab\xb3\x74\xbe\xba\xcb\x62\x77\x0f\x3a\x84\xf2\x36\x88\xc0\xdb\xe4\x64\x03\x3e\x9c\x1b\xf2\x73\x4b\x7c\x07\xce\x2d\xd0\x2b\xbf\x03\xa6\xc5\x97\x03\x76\x7c\x39\xe6\xee\xb3\x66\x5a\x24\x0d\xd4\xf5\xa9\xa2\x24\xab\xa7\x3e\x7f\xd6\xec\xe6\x1f\xb2\x66\x34\x92\xef\x06\x2f\x93\xf6\x98\x2e\x6d\xd8\xaa\x48\xd1\xea\x75\xe2\xeb\x92\x91\xf9\xfe\x42\x91\x3f\x54\x2f\xca\xeb\xac\x2c\xea\xac\xea\x0c\xaf\xb3\x0d\xd0\x79\x3e\x4f\xef\x4a\x50\xb5\xef\x34\xd8\xe4\x67\x5d\x7b\x74\x42\x49\xf9\xc8\x77\xf1\x9b\xae\x09\x7b\x1e\x61\xbf\xcc\xf6\xa1\x21\x7b\x13\xf0\xbc\xf5\x44\x3c\x74\xe0\x38\xf8\xba\x2d\xa6\x28\x51\xea\x28\xae\xbd\x68\xe5\x8d\x91\x99\xeb\x28\x84\x63\xf2\xc6\x3f\x79\x9b\x3f\xbf\xba\xda\xbe\xa8\x9e\xe7\x7a\xb1\x5d\x16\xb1\x98\xed\x12\xf8\xc5\xf6\x0a\x2d\x73\xb0\x89\xef\xca\xac\x89\xef\x9a\xf6\xdd\xc9\xe1\xc6\xa9\x05\xab\x29\x37\xde\x36\xc9\x9b\x08\x20\x50\xe5\x53\xb4\xb7\xba\x58\xd4\xcb\x4c\x47\xd0\x1c\x8c\xc8\xfb\x43\x91\xad\xdf\x43\xbe\x7f\xd8\x6f\x25\xdf\x7d\xe6\x79\xab\x16\xba\xab\x56\xba\x89\xaf\xc7\xdf\xf2\x7c\x66\x57\xfa\xf6\x2e\xf3\xdd\xe7\xd8\xd9\xf2\x97\x53\xd7\x37\x03\x74\x61\xc0\xa6\x78\x3b\xd3\x60\x5b\x3c\x45\xa3\x50\xd8\xa3\x68\x67\xc3\x2c\x55\x7b\x3f\x8f\x7d\xc0\x59\x7c\xfd\xcd\xfc\x1d\x58\x17\x65\xeb\x51\x7e\x33\xd4\x77\x33\xd0\xc0\x6c\x9d\x0c\x62\xe2\x42\xd2\x60\xfb\xa0\x85\xc1\xd8\x23\xad\xbd\x19\xa5\x2e\xae\xea\xd3\xc1\x1f\xdf\x60\x95\x1c\xd0\xfd\x1f\x8b\xfa\x1a\xcd\x93\x57\xd3\x6e\x97\xf9\x7c\xee\xe3\xc2\xcc\xd3\x5d\x03\x3d\x29\x9e\x95\xeb\xb7\xfe\xec\x95\x03\x59\xf9\xf1\x63\x5a\xd7\x1a\x54\xe0\xe5\xff\x46\x23\xe1\x75\x13\x1b\x89\xae\xeb\x7d\x23\x9b\x7c\xde\xa4\x26\xfa\x7c\x07\x6e\x3e\x8b\xda\x57\x85\xed\x5d\x72\x5f\xe5\x60\x15\xf1\x73\x35\xd0\xeb\x9b\xcf\x23\xfe\x03\xff\xbc\x3a\x22\xfc\x37\x9f\x24\xfc\x43\xde\xb8\x8e\x7c\x2c\x21\x66\x4b\xeb\xef\xb1\x14\x32\x12\xee\x55\x47\x0b\x6f\xc6\x2b\xfa\xb1\x94\xbf\xcb\xbe\xd9\xa5\xea\xe3\xcc\xfc\x58\xd4\x19\xcb\xc1\xeb\xb3\x71\x0c\x92\xdb\x67\xc4\x77\xba\xf0\x8b\xe1\x8e\xaa\x88\xff\xf6\x7b\xb9\x29\xed\xeb\x5f\x1a\x7f\x97\xa7\x45\xdb\x2b\xf9\x10\x9c\x37\xf9\x93\xee\x8e\x83\xc1\xad\xf0\xc7\x59\x8a\xde\xd2\xfc\x72\xe7\x6d\x19\x4a\x5f\xe7\xfb\xd8\x0f\x13\x10\x92\x5d\x4e\x1b\x4b\x29\x5d\x80\x30\xd9\x4c\xe6\xad\x34\xbc\xa7\xb8\xf7\xdc\x74\x76\xa0\x0d\x7c\x1a\xe5\xa3\xda\xdb\x72\x53\x56\xeb\x8f\x1f\xdb\x00\xf9\xe5\xd0\x84\xfd\x6f\x3f\xd5\x3e\x94\xef\xf3\x2c\x99\xce\x7d\xfc\x98\x8d\xb2\x15\xe5\xde\x54\xb1\x6f\x73\x9f\xba\x06\xdb\x3c\xdd\xa2\x30\x99\xcc\xd3\x87\xef\x3e\x5f\x75\x9f\x77\xdd\x67\x3d\x99\x7f\x56\x73\xd2\xe2\x89\xad\xf9\x64\x6f\x4f\x5b\x3b\xcd\x26\x3e\x59\xff\xb7\xc3\x37\xbe\xec\x61\x12\xba\xf6\x7c\xf9\x99\xed\xf9\xb6\x7c\xef\x63\x7b\xce\xd4\x86\x2f\xb3\xc9\x97\xe3\xfa\x7a\xcc\x71\x34\x66\x91\xdf\x1f\x89\xc5\x5f\x8d\x9d\x30\xda\x5d\x3c\x78\xd2\xc6\x85\xb4\x39\xd1\xb5\xd7\x45\x33\x1c\x5e\x1f\x2c\xba\x4d\x9e\xd5\x71\x6d\xd6\x8b\x7a\xb4\x32\x7b\x69\x17\xc1\x79\x44\x16\x6d\xb1\xdf\xa6\xc6\x8c\x97\xf8\x70\x5a\xf2\x3a\x6b\xb2\xbc\x73\x8c\xf1\xb3\x75\x69\xfd\xc1\x99\x4a\xb7\x3c\x93\x91\x2f\x82\xad\x54\x53\x26\x43\xfe\x3e\x14\x73\x35\xdc\xdd\xb6\x2d\xaa\x85\x5e\x82\x55\x51\x8d\x7c\x9e\x56\x2f\xb6\xc9\x01\x64\x0b\xb6\xc5\x0a\xac\x8a\x12\x94\xe9\x76\x87\x0d\xd8\xc4\x55\x96\x95\x87\x7b\xe9\xbb\xb5\xad\x7d\xdc\xb7\x79\xb6\x05\x2b\x50\xe7\xf9\x1f\xe1\x9e\x3b\x6e\xe5\xb3\xed\xb3\x32\xbf\x2c\x41\xc7\xd9\x5a\x5f\xae\xb2\x55\xfb\xea\x93\x65\xcd\xd3\xdd\x83\x7d\x71\x29\xeb\xf6\xb2\xcc\x9f\xed\x4b\x6b\x6b\x58\xb5\xef\x3e\x59\x1c\x28\x63\xe3\x62\xa7\xcf\xb4\x2f\x0e\xc2\x69\x13\x9b\xac\xda\x37\x63\xc8\x38\x6e\xc9\x90\xef\xa0\x31\x29\x23\xf0\x3b\xe0\xc7\x81\x75\x7a\x4d\xe0\x2f\xd9\x4b\xf0\x76\x66\x07\x95\xe1\x7d\xdc\x69\xe4\x24\x52\x00\x17\xf0\xd5\x81\x63\xef\xd7\x83\xf2\xf2\x90\x9f\x6c\x0e\xf8\xcd\x3d\x07\xd2\x51\xc8\x06\xf4\xcc\x48\xd1\x1c\x13\x93\xfa\x41\xbd\x45\x47\x97\xea\x48\x97\x9a\x03\xcd\xc5\xbd\x9c\xf5\xd7\x83\xf4\xe0\x53\x07\x9a\x16\x89\x7f\x7f\xfe\x4c\x26\xc5\x65\x1c\xb3\x7a\xf9\xb0\x54\xab\x14\x99\x31\x21\xf6\x72\xbf\x54\xf5\x8b\x2a\x2d\xf4\x75\x64\x54\x40\x99\x42\x27\x55\xa0\x4a\xcb\xb5\xce\x41\x0a\xb5\xd8\x74\xb3\x52\xc5\xef\x65\xfc\x9e\xe6\x4e\xc7\xa9\x19\x06\xed\xe7\x43\x26\xbc\x9d\xce\x55\xf5\x2a\x6b\x9e\xf9\xfc\x1c\x33\xfe\x87\x7d\x8a\xfa\xd9\x39\xae\xfc\xa7\xc3\xd0\x89\x2f\xe0\x99\x32\x06\x43\x89\x69\x24\x61\xc3\xe1\xeb\xd4\x03\x34\xad\xf3\x91\x35\x51\x7d\x6a\x1a\x72\x98\xa5\xcb\x31\x34\xe0\xef\x23\xd2\x5a\x6e\xbe\x2d\xd7\x65\x72\x13\xb9\xbe\xca\x26\xc8\x4f\xae\x22\x1f\xf5\x02\x46\xfe\x6a\xc8\xf2\xe7\xf1\xd1\x38\x2c\x22\x5a\xfa\xfb\xdc\x17\x45\x3b\x1a\xdf\xb4\x76\x1e\xfe\xfd\x28\x0e\x51\x73\x8f\xc5\xca\x50\xe6\x0f\x63\x66\xe9\xa8\xa8\x55\xf5\x6a\xde\xd6\x73\x71\xd1\xbf\x40\xf0\xe3\x47\x7c\xf8\x0a\x7f\xfc\xd8\xeb\x7b\xe2\x78\xfb\x91\x50\xd2\x9c\x4e\x47\x93\x3f\xf3\xbb\xd1\x44\x7c\x77\x96\xd1\xdb\x4f\x81\xcf\xa6\x07\xed\xfd\xeb\x68\x87\xfe\x0c\x7e\xda\xaf\xdf\x05\x02\x08\xa6\x9b\x61\x7a\x4a\x00\x22\x82\x05\x65\xf1\x43\x86\x60\x0e\xaa\xe2\xcf\xf1\x73\x58\x51\x7a\x14\x2e\xb8\xf8\xa1\xf5\xff\xfd\x73\xfc\x68\xb2\x7c\x01\x97\x09\x9f\x94\xc5\x77\x59\x19\x7f\xf8\xae\xc3\x15\x7b\x64\x60\xf4\xe6\x91\x4c\x52\x5d\x5c\x79\xa0\x23\x97\x54\x47\x82\xf0\x39\xbc\x66\x1b\x9f\x3f\x66\x6d\xb2\x3d\xed\x39\x25\x69\xc9\x47\x39\x8b\x82\xd9\x26\xd2\xaf\x55\xb1\x59\x6c\x06\x0a\xf6\x3c\xd3\xc5\xea\xc5\x36\xbf\xb8\xc8\xdc\x9e\x66\xb8\x96\xf0\xa4\x50\x49\xc0\x15\x65\x7b\x73\x4d\x99\xad\x72\x70\x5b\x8c\x48\xde\x95\x07\x6f\x8b\x45\x1b\xad\x31\xab\xbf\x44\xf9\xc5\xc5\xdd\xd4\xbd\xb8\x4d\xba\x5d\x37\xd6\xd0\xb9\x28\x38\xde\x8d\xdf\xdc\xe5\x57\x08\x6c\xfb\x9b\x31\x9e\xbb\x17\x77\xc9\xd3\x37\x7e\x09\x05\x02\xb6\xa8\x32\x97\x3f\x0f\xc9\xe1\x3a\xb4\xa7\xf7\xd9\x4d\x61\x2f\x43\xfe\x62\xdb\xc6\xf6\xbc\xf9\xe3\x2a\x6f\xf9\x8e\xb7\xad\x5e\xf7\x26\xdf\xed\x86\x43\x82\xc3\x12\xeb\xe9\x50\xe6\x1f\x0b\xf4\x7c\x3a\xfd\xdc\x42\xdf\x16\xc7\xfc\x80\x03\x77\x83\x46\xe6\x6e\xea\xc0\x6d\xde\xaa\x1b\xab\xc1\xbf\xe4\xfa\xed\x48\xa9\xf8\xf6\x3e\x0e\xa1\x89\xe2\xff\xfe\x08\x64\x9d\xec\xd5\xd3\xd6\xaa\xaf\x27\x33\xe8\x27\xf3\x09\x98\xe4\xe0\x8c\xad\x5f\x9b\xf4\x84\x0d\x5a\xe7\x71\xa9\x17\x05\x7a\x06\x07\x85\x7e\xc7\x2c\x5f\x5c\x64\xcd\x9e\xb7\xd0\x63\xa3\x94\xfa\xb2\x79\xd6\xad\xa2\xbd\xa2\xf7\xac\xf4\xd4\xf1\x54\xcf\xaa\x6c\x34\xa1\x49\xab\x30\x38\x73\x5d\xd6\x2f\xea\xe9\x8c\xc5\xda\x2e\x23\x36\x6f\x5e\x14\xfa\x3a\x79\xda\x4e\x26\xbb\x53\xde\x67\x10\xb6\xb3\xef\x13\x8b\xf4\x7b\xc2\xfb\xe7\xce\x67\xba\x5a\x5b\xba\xd0\xd6\xba\x03\x91\x2a\x3c\x90\x38\x11\x8d\x2e\xed\x2e\x4f\xbb\xe5\x01\x82\xfd\xd7\x2c\x4f\x5b\x38\x79\x4a\x8d\x19\x80\x6f\x4f\xc8\xc2\x74\x8c\xf5\x9b\x7c\x7e\x88\x48\xf7\x19\xff\xb1\xc7\x4b\x08\x34\xc5\x2f\xd9\xa1\xcc\xda\x2b\x88\x8a\x6f\xb3\x1a\xf8\x7c\x9a\x35\xc5\xb7\xad\x3d\xe6\x88\x76\xad\xf7\xe9\xbe\xcd\xd6\x31\x55\x93\x3f\xab\x23\xdd\xaa\xc7\x86\x01\x63\x9f\x86\x33\xe5\x81\xd3\xe2\xfe\xf0\x6d\xd6\x5c\xd5\x97\x6b\x80\x9e\x25\x27\xcb\x14\x02\xe1\x90\x5b\x6e\x06\x93\xbf\x47\x9e\x92\x44\xd9\x3b\xe9\xe5\xd2\x2d\x51\xf7\x72\x18\xef\xb3\x06\xfc\x23\xcb\xf7\xc5\x27\xc5\x54\xcb\x68\xec\x87\xee\x2f\x43\xf2\x83\xa4\x33\x96\x8f\x63\x21\x0d\x67\xc1\xa0\x89\xa0\x4e\xa7\xc2\x63\x03\x88\x56\xbd\x06\xc1\xc1\x9a\xdf\x2b\xb6\x9e\xb4\x37\x2b\x0d\xba\x2c\x3d\x45\xf9\xf3\xab\xab\x32\x19\x21\x2c\xca\x29\x5a\x0e\x08\xe0\xcd\x56\xaf\x9b\x72\xe5\xf3\xcc\x83\xf2\xd9\x10\xb0\xa1\x3a\x30\xb2\x68\x8f\xb8\x5a\x89\xa7\xb5\x4b\xeb\xc7\x73\x71\xa2\x9b\x8a\xf3\xb4\x1c\x9c\x49\x5a\x76\xef\x9b\xf7\xcd\xc1\x98\xaf\x07\x47\xc1\xde\xa7\x7c\xb0\x4c\x29\x5f\xc0\xeb\xc5\x0f\xfa\x07\xf0\x83\xfe\x61\x39\x5f\x44\x56\xb9\x6d\xf6\x3c\xc9\xd4\xe5\x8b\x5e\x6e\x89\xaf\xe3\xcb\x91\x84\xbd\xdc\x81\xea\x84\xf6\x34\x0f\x1f\xd1\xed\xd9\xbc\x27\x07\x07\xf0\x75\xe7\xf6\xd0\x1c\xbb\x3d\xb4\xe8\x27\xab\x53\xc0\x8c\xbc\x97\x04\x93\x86\xe6\xe3\x47\xdf\x5f\x0e\x33\x30\xd4\xe9\x4e\x9d\xf5\x4c\xf7\x21\xdb\x73\x90\x0e\x50\xaa\xcf\xd1\xa1\x34\x23\x3d\x48\x99\x28\xe5\xc0\xf6\x56\xfb\x59\xdc\x9c\x59\x99\xf5\x38\xe1\x3d\xab\xf7\x4f\x63\xfe\xb8\x53\x04\x36\x31\xc3\x38\x86\xd6\xde\x76\x00\x34\x05\x8a\x4c\x07\x28\x8b\xc5\x8c\x2d\x41\x75\xcc\xf9\xeb\x3e\x68\xc7\x8b\xc1\x1f\xa4\x3a\x5d\x29\x25\xf0\x00\x82\x3a\x5f\x1e\x06\x6c\xeb\x0f\xd5\xdb\x4b\xaf\x0f\x42\x97\xa4\xf3\xf2\xfa\x79\x5e\x46\x86\x3a\x4b\x21\xbb\x2f\x9b\x69\xb6\x9e\xd6\xf9\xa5\xcf\x9f\x65\xf5\x15\x1a\x08\x56\xbf\x06\xf5\xc9\x7a\x78\x58\xbe\xb8\x4a\xd2\x71\x13\x3f\xd1\x32\x05\x94\x9b\x2f\x3c\x68\x96\x3b\xa0\x3f\x67\xc6\xea\x22\xab\x86\x49\x1b\x49\x10\x9b\x23\x5d\x9a\x7e\x78\x8f\xe8\xa2\x3a\xb3\x47\xf4\xc1\x1e\xd1\x2f\xd0\xf5\xc2\xa7\x7b\x5b\x97\x73\xfd\xc7\xa2\xbe\x5e\x94\x8b\x3a\xdd\x0f\x1e\x37\x50\xba\xca\x0a\x94\x0b\xbd\x4c\x9d\xb8\x67\x11\xfc\xc7\xb0\x08\x52\x7f\xfb\x85\x50\x25\x44\x36\xbe\x49\xfe\x6f\x03\x8e\x8a\xf3\xdf\x74\x27\xaf\x75\x81\x8e\x0e\xea\xcb\x90\x95\x2f\x8a\xf2\x01\x6c\xe1\x41\xd9\xad\x81\x7e\xf3\x9f\xcc\xd6\xfa\x31\xa7\xd8\xeb\x88\xed\xef\xd7\xf6\x4f\xd1\xe9\x29\xf7\xd1\x5c\x3e\x54\x4d\xf3\x79\xd5\x34\xe3\x6a\xce\x4f\xee\x5e\xbf\x3b\x20\xc0\x3d\xca\x58\xb4\x57\xc5\x27\xb1\x71\xf9\xc0\xb1\xfa\xdf\xee\xd9\xb5\x65\x92\x6d\xdf\x14\x75\x06\x73\xf0\x5b\x51\x67\x3c\x07\xff\x95\x82\x4d\xff\x4b\xc1\xe1\xe5\x7f\x81\x7f\x8b\x1f\xff\x02\xbe\x28\x30\xbd\xfc\x37\xf0\xef\x85\xb8\xfc\x02\xfc\x67\x41\xe0\xe5\x17\xe0\xbf\x0b\xc2\xd9\xe5\x17\xc3\x3c\xfe\xeb\xd1\x1d\x9e\x7f\xd6\xcd\xd1\x8d\xfd\xe3\x1b\xfd\x0f\x0c\x69\x62\xd2\xeb\x2b\x3f\xbf\xda\xe7\xbb\x1a\x67\x6c\x7d\xb8\x41\x3d\x5c\xd9\x07\x56\xed\xa8\x84\xbd\x56\x02\xdc\x14\xa1\x1b\x41\xe0\x8a\xd0\x4b\x3c\x77\xc5\x2a\x9b\xcc\xbe\xfc\xeb\x24\xb2\xf1\xab\x6c\x32\xff\xf2\x97\x49\x0e\x3e\xc4\xc7\x2f\xbf\x9b\x7f\xf9\xfd\x24\x07\xaf\xda\x2f\x7f\xf8\xf2\x6e\x92\x03\x93\xbe\xe8\x3f\x7c\xe9\x26\x39\x78\x97\xbe\x98\xf6\xcb\x37\xe9\xcb\x9f\x26\x39\xf8\x31\x3d\xfd\xd7\x24\x07\xaf\x8b\xc5\x62\x03\x10\xf8\xaf\x25\x58\x6c\x00\x03\xec\xb2\x7d\x42\x0c\xa0\xfe\x99\x40\x40\x60\x7a\xd6\x00\x81\x7f\x49\x9f\x31\x65\xfb\xd4\xa6\x6c\x9f\xdb\x94\xf1\xb9\x02\x08\xfc\x5b\xfa\x24\x80\x5c\xb6\x4f\x1c\xf0\xee\x09\x61\x80\x70\x7a\x2e\x01\x02\x5f\xa4\x4f\x0c\xf0\x65\x7c\xaa\x01\x02\xff\xbe\x04\x8b\x06\x20\xf0\x9f\xe9\x33\x96\x10\x9f\x3c\x40\xe0\xbf\x97\xcb\xb1\xaa\x70\x60\xaf\x36\xd9\x3a\x7f\xb1\xbe\xbe\x9b\xeb\xf6\xe1\x76\x5e\xb5\x0f\x1f\xe6\x65\xfb\xf0\x6a\xde\xb4\x0f\x75\xfb\x61\xe6\xef\xe6\xbe\x7d\xfc\x66\xfe\x63\x7e\x70\xad\xc5\xaf\x59\x37\x59\x23\x06\x7f\xcf\x83\x83\xd3\x70\x79\x3d\xfa\xda\x2b\x60\xcb\x69\x9d\x3f\x6b\xc6\x3a\xf0\x16\x0b\x54\x75\x9e\x9d\x3b\xd2\x58\xe0\xe5\x2e\x9f\xd5\xe5\xab\x9b\x26\x7b\x0d\x74\xfe\x64\x53\x14\xc5\xeb\xd1\x09\xc5\x19\x5d\x7a\xfd\xec\xbf\x41\xf9\xec\xbf\xd3\x2d\xbb\x85\xcf\xe7\x9b\x98\x2e\xdb\x14\xaf\x17\xfa\xd9\xeb\xc5\x66\x8a\x96\x0b\xbc\x7c\xf1\x7a\xb1\x89\x9f\xcf\xf4\xf5\x66\x8a\xe6\x9b\x74\xd3\x23\x68\x92\x58\x99\xcf\xb3\x6a\x60\xab\xce\xd5\xd0\xfa\x2f\xa3\x74\x39\x6b\x3e\xbe\x15\xa3\x28\xaa\xeb\x66\xde\x74\xf1\x73\xaa\xfd\x6f\xe1\xfe\x53\xa1\x61\x4b\xdd\xb4\x1c\x63\xf8\x1c\xc1\xd9\x65\xfb\x33\x1a\xef\xf3\x7c\xee\xb2\x56\x6a\xfb\xd7\x54\xd0\xb1\x10\x3d\x56\x70\xb9\x2c\x07\x65\xb1\x6e\x0f\x68\xd7\x8b\xf5\x48\x11\xac\x8b\xea\x45\xb9\x27\x33\x49\xad\x55\x82\x32\xa9\xb3\xea\x88\xfd\xb2\xba\xf8\x35\xa1\xed\x0a\x34\x79\x7e\xdd\x59\x6e\x64\x25\xa8\xae\x50\x3e\x5f\x2c\x81\x8e\xef\xf6\x92\x62\xdd\x37\xe5\x54\x97\x3c\x30\xde\xfd\xe9\xc7\x57\xf3\x55\xc2\x60\xe1\x48\xa6\x1a\xd9\xec\xb9\xbd\x56\x3b\xf3\xa9\x21\x67\x74\xd9\xb1\x5d\x2e\xfb\x3e\xb1\xa2\xf9\x3c\xc4\xf2\xee\x65\xdb\x03\x38\x8b\x87\x62\x23\x12\x1a\xad\xcf\x8a\x76\x3e\x7b\x33\x7b\x0d\xde\xcc\x02\x78\x33\xfb\x3b\x78\x33\xd3\xe0\xcd\xcc\x80\x37\x33\x07\xde\xcc\x5e\x81\x37\x33\x0b\x7e\x4b\x86\xeb\x6d\xa7\x07\xba\xba\x9f\x6e\xec\x09\x80\x71\x11\x1d\xbd\xc1\xf9\x32\xdf\x81\xf5\xbd\x95\xbe\x05\x6f\x66\x6f\xc0\x9b\xd9\x16\xbc\x99\xad\xc0\x9b\xd9\x2d\x78\x33\xab\xc0\x9b\x59\x0d\xde\xcc\xd6\xe0\xb7\xd9\xb6\xb1\xc7\x75\xc6\xd2\x67\xff\xf1\xeb\xd7\x43\x9d\x47\x6f\xda\x3a\xcb\xb3\x7c\x8d\x6f\x63\xcd\x65\xcf\x66\xbf\xf3\xdd\xb3\x57\xa7\x97\xac\xb4\xe9\x26\xff\xcf\xe4\xca\xef\x22\xc7\xe8\x8b\xd2\x67\x13\x14\x84\x30\x34\x04\x11\xa0\xc7\x56\x43\x6c\x1d\xc7\x02\x4b\x45\xb9\x30\x4e\x5a\xc6\xa9\xf1\x44\x08\x8b\x45\x88\x7f\xc6\x1a\x87\x31\x12\xc6\xdb\x30\xc9\x81\x6e\x4b\x21\x8a\x18\xa1\x18\x66\x54\x13\x6e\xb8\xb7\x41\x59\xe5\x9d\xe7\x44\x28\xa2\xa4\xd5\x98\x61\xc3\x6c\xe0\xc6\x7a\x67\x94\x95\x96\x3b\x82\x8c\x53\x9e\x28\x2f\x8c\x66\xd8\x0b\x6b\x14\x95\x94\x58\xa2\xb4\xa3\x8a\x6a\xc7\x39\xe2\xc6\x0b\xc5\x95\x15\x86\x22\x41\x34\x63\x48\x51\xeb\xb9\x33\xce\x79\xe5\x1d\x9f\xe4\x60\xd3\xb5\x00\x49\x6c\x1c\x37\xda\x3b\xae\xbc\xd5\x1e\x59\xee\x8c\x0f\x9e\x33\x06\x5d\x70\xd2\x11\x1b\x9c\xf6\xdc\x04\xe7\xa0\xc6\x04\x69\xc2\xa8\xa0\x96\x0a\xae\x91\x53\xca\x58\xe1\x95\x85\x82\x71\x63\x90\xf2\x4a\x5b\x19\xfb\xea\xac\xd3\x4e\x7b\xc3\x49\xfc\x53\x3c\xfe\x19\x17\xff\x9c\x8a\x7f\x93\x1c\x6c\xc7\x23\xa9\xbd\x15\x5e\xb6\xe3\x19\x82\x31\x42\xb6\xa3\xaa\xa4\x0b\x52\xb7\x63\x1b\x82\x92\x8a\xb7\x23\x6c\x99\x81\x8e\xb5\xe3\x6c\xa9\xb2\x8a\xb6\xa3\x1d\x84\xe1\xae\x1b\x73\x2b\xe2\x5f\x3b\xf2\xb1\x6a\xe9\xda\xf1\x57\xde\x69\xcf\x26\x39\x58\xf9\x36\x4c\xaa\xdd\x47\x1e\x7c\x3b\x33\x79\x8f\x13\x57\x3e\x7e\x21\x10\x82\x19\x03\x70\x7f\xea\xd7\xbe\x9e\x62\x9a\xde\xa3\x28\xa8\x3f\x90\x7d\x8a\x62\x7e\xc1\xc0\x8c\xb0\xa3\x22\x24\x04\x68\xc6\xc0\x4c\xe6\x39\xb8\x79\xa0\x08\xcc\x1f\x53\x82\xdb\x97\xd0\xfe\x96\x83\xbb\xc3\xf5\x9e\xf9\x17\xf0\xe3\x47\xff\x47\x94\x5f\x5c\x64\x7e\x7a\x64\xd6\xd7\xfa\xb7\x0d\xa4\xcc\x4f\x67\x6c\xcf\x8b\x3b\x3f\xbb\x29\x08\x87\x97\x3e\x75\xc7\xf9\xd9\xa6\x40\x33\x36\x45\x33\x76\xd9\xc4\xaf\xab\x62\x26\xa7\x33\x95\xbe\x5c\x4d\xc6\xf6\xae\xb7\x7e\x7c\xb2\xd7\x59\x10\x1f\xeb\xa9\x46\x1e\x4a\x8b\x73\x26\x54\xcd\x14\x81\x51\x73\xeb\xcb\x26\xcf\xf3\x2e\xd2\xed\x5b\x5f\xdc\xfa\x2c\x2e\x24\x4a\x21\x62\x94\x52\x88\x19\xa7\x0c\x52\x26\x28\x83\x8c\x29\xca\xa1\x60\x9a\x72\x28\x99\xa5\x1c\x6a\xe6\x28\x87\x86\x79\x2a\xa0\xe3\x90\x0a\xe8\x39\xa2\x02\x41\x4e\xa8\x40\x88\x53\x2a\x10\xe1\x8c\x4a\x44\xb9\xa0\x12\x71\x2e\xa9\x44\x82\x2b\x2a\x91\xe4\x9a\x4a\xa4\xb9\xa5\x12\x19\xee\xa8\x44\x96\x7b\x2a\x91\xe3\x81\x4a\x14\x04\xa4\x12\x43\x81\xa8\xc4\x48\x10\x2a\x31\x11\x94\x4a\x4c\x05\xa3\x12\x33\xc1\xa9\xc4\x5c\x08\x2a\xb1\x14\x92\x4a\xac\x84\xa2\x02\x6b\xa1\xa9\xc0\x36\x41\x27\x0c\x15\x71\x4f\x53\x81\x83\x70\x94\x13\x28\x3c\xe5\x04\x27\x48\x44\xa0\x9c\x50\x09\x29\x23\x4c\x22\xca\x88\x48\x50\x4a\x4c\x29\x51\x92\x50\x4a\x74\x82\x46\x52\x4a\x88\x4b\xd0\x4b\x46\x31\x09\x11\x52\x28\x39\xc5\x14\x49\x4e\x11\xc5\x52\x50\x44\xa9\x14\x14\x52\x26\x25\x85\x94\x4b\x49\x02\x15\x09\x4a\xa9\x88\xa7\x2a\x41\x9d\xa0\x95\x9a\x38\xea\x12\xf4\x52\x13\x4b\x43\x84\x0c\x4a\x43\x0c\x43\x09\x62\x69\x88\x66\x24\x41\x2a\x2d\x51\x8c\x25\xc8\xa5\x25\x92\xc9\x04\x95\xb4\x44\x30\x9d\xa0\x91\x8e\x70\x66\x13\x8c\xa8\x86\x31\x9f\x60\x90\x8e\xc4\x09\x8b\x10\x49\x47\x08\xc7\x09\x12\xe9\x08\xe6\x54\x7a\x82\x39\x93\x9e\xc4\xc9\x89\x50\x24\x28\xa5\x27\x90\xab\x04\xb5\xf4\x38\x70\x93\xa0\x95\x1e\x7b\xee\x12\xf4\x09\x06\xe9\xb1\x13\x30\x41\x24\x3d\xb6\x1d\xc4\x09\x12\xe9\xb1\x11\x34\x41\x26\x3d\xd6\x82\x27\x28\x12\x94\xd2\xc7\x99\x4b\x50\x27\x18\x6b\x91\xc2\x26\x18\x6b\x11\xc2\x27\x18\x6b\x11\x32\xd6\xc2\x25\x4a\x10\xef\x21\x93\x24\x41\x9a\x60\xac\x85\x4a\x9e\x60\xac\x85\x48\x99\xa0\x4a\x50\x4b\x87\xb1\x34\x09\xda\x04\x9d\x74\x18\x49\x9f\x60\x88\x50\xc1\x04\x91\xb4\x18\x2a\x3c\x82\x44\x5a\x14\x14\x4d\x90\x49\x83\x82\xe2\x09\x8a\x04\x65\x82\x4a\x6a\x14\x94\x96\x1a\x79\x65\x12\xb4\x52\x21\xaf\x9c\x54\x28\x28\x9f\x60\x90\x12\x05\x0d\x13\x44\x1d\x14\x28\x68\x2c\x05\x86\x9a\x48\x8e\xa1\xa6\x92\x63\xa4\x99\x64\x18\x69\x2e\x19\x8e\x83\x15\xa1\x94\x14\x13\xad\x24\xc1\x54\x6b\x49\x30\xd3\x46\x62\xcc\xb4\x95\x18\x73\xed\x24\xc2\x22\x41\xa9\xbd\x84\x58\xe9\x20\x02\xd6\x06\x8a\x80\xad\x41\xc2\x63\x67\xb0\x70\xd8\x1b\x12\xf1\xbb\xa1\xc2\x12\x64\x98\x30\x04\x1b\x2e\x34\xa1\x86\x0b\x45\x98\x11\x42\x11\x61\xa4\x90\x44\x1a\x25\x04\xd1\x46\x0b\x4e\x8c\x31\x82\x11\x67\xac\xa0\x24\x18\x2b\x08\x85\xc6\x09\x4c\xb1\xf1\x02\x51\x6a\xe2\x9e\xe5\x16\xc6\xfd\x6b\x11\xf7\x54\x5b\xc4\x1d\xb5\x16\x73\x4b\xbd\x25\xdc\x30\x68\x29\xd7\x0c\x5b\xc6\x15\xa3\x96\x71\xc9\xb8\xe5\x5c\x30\x69\x05\x67\xb1\x13\x9c\x32\x6b\x25\x27\xcc\x5b\xc5\x31\x87\x56\x73\xc8\x89\x35\x2c\x70\x66\x0d\xf3\x5c\x58\xcb\x2c\x57\xd6\x31\xc3\xad\x75\x4c\x73\x6f\x3d\x93\x02\xda\xc0\x84\x20\x0e\x32\x2e\x98\x83\x8c\x0a\xe1\x10\x23\x42\x3b\xc4\x90\xb0\x0e\x33\x28\x82\x23\xd4\x4b\xe4\x08\x75\x92\x3a\x4a\x8d\xe4\x8e\xc5\x7d\xe9\x18\x95\xd2\x38\x4e\xb9\xf4\x8e\x53\xa6\xa0\x13\x94\x28\xe2\x04\x45\x8a\x39\x49\xa1\x92\x4e\x12\xaf\x8c\x53\xc4\x2a\xe7\x14\x31\x1a\x3a\x4d\x94\xc6\x4e\x13\xa1\x99\x33\x84\x6b\xe9\x0c\xa1\x5a\x3b\x4b\xb0\x76\xce\x12\x68\xa0\x73\x38\x18\xec\x1c\x76\x86\x39\x8f\x8d\x91\xce\x63\x65\xb4\xf3\x58\x1a\xe7\x02\xe6\x16\xba\x80\x99\xc5\x2e\x60\x62\x99\x87\x18\x59\xe9\x21\x86\x91\x7d\x40\xc1\x3a\x8f\x90\x73\xd0\x23\x64\x1d\xf6\x18\x19\xc7\x3c\x46\x3a\x6e\x0d\xa4\x9c\xf6\x04\x29\xe7\x3c\x41\xd2\x85\x08\x3d\xf6\x14\x49\xcf\x3c\x45\xca\x8b\x04\xb5\x67\x48\xc7\x41\x42\x91\x15\x61\xc8\x06\xe4\x19\x72\x81\x7a\x8e\x7c\xe0\x9e\x63\x18\xa4\xe7\x18\x05\xe3\x05\x26\xc1\x79\x81\xd9\x24\xcf\xc1\x87\x3d\x35\x80\xf1\x1f\x85\x08\x42\xc8\x20\x82\x08\xf2\x04\x25\xc4\x10\x41\x05\x31\xc4\xd0\x24\xe8\x20\x81\x04\x86\x08\x11\x86\x14\x52\x44\x21\x83\x14\x71\xc8\x21\x43\x32\x41\x0d\x05\xe4\xc8\x42\x09\x05\xf2\x50\x41\x81\x21\xd4\x50\xe2\x58\x86\xc2\x14\x5a\xa8\x30\x87\x91\x3f\x52\xd0\x43\x83\x0d\x82\xd0\x60\x87\x10\xb4\x38\x20\x0c\x1d\x41\x88\x40\x47\x62\xd9\x9e\x70\xc4\xa0\x27\x12\x71\x18\x88\x41\x12\x06\xe2\x90\x42\x90\x04\xa4\x11\xa4\x18\x59\x04\x29\x45\x0e\x45\xaa\xe4\x11\xa2\x0a\x43\x84\xa8\xc1\x08\x21\xea\x31\x46\x88\x41\x4c\x11\x66\x04\x33\x84\x19\xc3\x02\x61\x26\xb1\x42\x88\x69\xac\x11\x62\x16\x5b\x84\x58\x88\xf5\x73\x84\x03\x42\x9c\x10\x84\x10\x67\x84\x20\xc8\x05\xa1\x08\x72\x45\x38\x82\xdc\x10\x89\x20\xb7\x44\xc1\xc0\x3d\x31\x30\x08\x48\x1c\x0c\x02\x91\x00\x83\xc0\x14\xc2\x20\x28\xc5\x30\x08\x46\x29\x0c\x82\x53\x86\xa0\x10\x91\x5a\x0a\x49\x55\x82\x1a\x41\xa1\xa8\x45\x48\x68\xea\x11\x8a\x5c\x31\xc2\xc2\x30\x84\xb0\xb0\x0c\x23\x22\x2c\xa3\x88\x08\xc7\x22\x99\x75\x4c\x20\x26\x3c\x53\x09\x6a\xc4\x85\x67\x16\x71\x11\x98\x43\x42\x04\x16\x90\x14\x81\x43\x24\x25\xe4\x18\x29\x09\x39\x45\x5a\x42\xce\x12\x14\xc8\x48\xc8\x25\xb2\x12\x71\x9d\xa0\x41\x4e\x22\xee\x12\xf4\xc8\x4b\x24\x20\x0a\x12\x09\x9c\x20\xc1\x50\x22\xc1\x30\x8a\x04\x3c\x41\x89\xb1\x44\x42\x61\x2c\xb1\x30\x98\x48\x2c\x6c\x82\x11\xf3\x62\x09\xe3\x40\xca\x38\x9c\x48\x92\x84\xb5\x69\x82\x1c\x0b\x89\xa4\x4c\x50\x61\x29\x91\x34\x58\xc9\x88\x6d\x55\xc2\xec\x5a\x22\x05\x13\x44\xd8\x48\xa4\x08\x36\x12\x2a\x8a\xad\x84\x8a\x27\x28\xb1\x93\x50\xa9\x04\x0d\xf6\x22\x28\x9b\xa0\xc7\x41\x04\x0d\x13\x44\x91\xda\x6b\x92\x20\x23\x48\x78\xcd\x09\x12\x2e\xa2\x4c\xe1\xb4\x26\x44\x38\x6d\x08\x11\x56\x3b\x42\x85\xd5\x9e\x50\x61\x0c\x24\x4c\x18\x83\x13\x24\x84\x0b\x6d\x58\x82\x82\x08\xa1\x8c\x4c\x50\x13\x29\xa4\xb1\x24\xa2\x7d\x47\x94\x10\x26\x10\x2d\x84\x85\x44\x0b\x6e\x31\x31\x82\x59\x4a\xac\x60\x96\x11\x2b\xa8\x15\xc4\x09\x62\x25\xf1\x82\x58\x4d\xbc\xc0\xd6\x92\x20\x90\x75\x14\x0a\x64\x03\x85\x02\xba\xb8\x45\x82\xc3\x14\xf3\x88\xa3\x08\xf7\x8e\x51\xca\x5d\xc4\x45\xdc\x3a\x99\xa0\xa2\x3c\x72\xfd\x51\x56\x70\x96\x4a\xae\x9c\xa7\x8a\x4b\x17\xa8\xe6\xd2\x43\x6a\x79\x1c\x78\xc7\xb9\x27\xd4\x73\xe6\x29\x0d\x9c\x7a\xc6\x20\xa7\x5e\x30\xcc\x23\xf3\x42\x38\xf6\x8a\x51\x8e\xbd\x66\x9c\x23\x6f\x98\xe0\xd0\x5b\x26\x39\xf4\x8e\x69\x16\xbc\x67\x86\x79\x1f\x98\x63\x3e\x40\x16\x98\x0f\x88\x43\x16\x11\x15\x4e\x90\x32\x1b\x08\x67\xcc\x06\xca\x45\x82\x8a\xd9\xc0\x78\x92\xac\xb8\x4d\xd0\x33\x1b\x84\x80\x09\x62\x66\x83\x14\x34\x41\xce\x6c\x24\x96\xcc\x05\x25\x54\x82\x86\xb9\xa0\x45\xac\x4b\x8b\x58\x97\x96\x88\x85\x60\x24\x49\x90\x71\x18\x8c\x14\x1c\x05\x2b\x55\x82\x9a\xe3\x10\x05\x37\x12\xac\xf4\x9c\x06\xab\x20\x67\xc1\x29\xcc\x79\x88\x03\x24\x82\x53\x9c\xcb\xe0\x94\xe4\x2a\x38\xa5\xb9\x0e\x4e\x19\x6e\x82\x57\x8e\xdb\xe0\x55\xe0\x2e\x78\x8d\xb8\x0f\x5e\x13\x1e\x82\xd7\x4c\xa0\xe0\xb5\x10\x38\x78\xad\x04\x09\x5e\x6b\x41\x83\xd7\x56\xf0\xe0\xb5\x17\x22\x78\x03\x85\x0c\xde\x60\xa1\x83\x37\x54\x98\xe0\x0d\x17\x36\x78\x23\x84\x0f\xde\x28\x11\x82\x37\x46\xa2\xe0\x8d\x93\x38\x78\x13\x24\x0d\xde\x22\xc9\x82\xb7\x58\x8a\xe0\x2d\x95\x32\x78\xcb\xa5\x0e\xde\x4a\x69\x83\xb7\x3a\xa2\x6c\x6b\x65\x08\xde\x3a\x05\x43\x14\xa6\x70\xf0\x0e\x29\x1a\xbc\x23\x8a\x05\xef\x98\x12\xc1\x3b\xa1\x54\xf0\x4e\x2a\x1d\x9c\xd3\xca\x06\xe7\xac\xf2\xc1\x39\xaf\x61\x70\x1e\x6a\x14\x9c\xc7\x3a\x62\x6e\xa2\x59\x70\x9e\x69\x11\xb1\xb8\x56\xc1\x79\xa5\x75\x70\xde\x68\x1b\x6c\x94\x48\x83\xf5\xde\xc0\x60\x03\x34\x38\xd8\x80\x0d\x0d\x36\x50\xc3\x43\x94\x8b\x65\xb0\x41\x18\x15\x6c\x50\xc6\x04\x1b\x8c\x71\xc1\x06\x67\x42\xa4\x06\xaf\x1e\x47\x0d\x74\xa2\x03\x36\x41\x0f\x09\xc4\x28\xa6\x6d\xa9\x01\xe9\xa8\x81\x80\x1c\x52\xa4\xa0\x80\x0c\x19\x28\x21\x43\x0e\x2a\xc8\x51\x80\x1a\x8a\x44\x07\x44\xa2\x03\x32\xd1\x01\x99\xe8\x80\x4a\x74\x40\x25\x3a\xa0\x09\x44\x91\x51\xc2\x88\x42\x43\x28\x62\xd0\x10\x81\x38\x34\x44\x21\x09\x2d\xb1\x48\x41\x4b\x3c\x32\xd0\x52\x84\x2c\xb4\x94\x20\x0f\x2d\x65\x28\x40\x1b\xe5\x09\x68\xa9\xc6\x04\x5a\x6a\x63\x3d\x34\x44\x46\x83\x21\x2c\xa1\x61\x04\x2b\x68\x18\xc3\x06\x1a\x26\xb0\x83\x86\x29\x1c\xa0\x66\x86\x20\xa8\x99\x25\x18\x6a\xe6\x09\x85\x9a\x05\xc2\xa1\xe2\x88\x24\xb4\x44\x14\x54\x9c\x10\x03\x15\xa7\xc4\x41\xc5\x19\xf1\x50\x71\x4e\x21\xd4\x5c\x50\x0c\x35\x97\x94\x26\xc8\xa0\xe6\x8a\x0a\x68\xb8\xa6\x2a\x41\x0d\x2d\x37\xd4\x26\xe8\xa0\xe3\x96\x86\x08\x19\x82\x9e\x5b\x86\xa1\x8f\x6c\x0a\x0c\xdc\x31\x96\x60\x94\xaf\x22\xd6\x8f\x50\x23\x14\xf7\x1b\xc2\xdc\x33\x97\x60\x40\x84\x7b\x8e\x12\xc4\x88\x72\xcf\x29\x62\xdc\x73\x96\xa0\x40\x9c\x7b\xae\x12\xd4\x48\x70\xcf\x2d\x92\xdc\x73\x97\x60\x40\x8a\x7b\x81\x12\x8c\x8c\xa7\x17\x34\x41\x86\x0c\xf7\x42\x20\xcb\x9d\x90\x09\x6a\xe4\xb8\x13\x36\x41\x87\x3c\x77\x22\x20\xcf\xad\x84\x28\xca\x08\x18\x43\x6e\x25\xc5\x90\x9b\xc8\xc1\x72\x23\x45\x82\x89\x49\x95\x3a\x41\x8b\x09\x57\xd2\x25\x18\x30\xe5\x4a\x45\x61\x53\x2a\x9c\x20\xc1\x9c\x0b\xc5\x12\x14\x58\x70\xae\x64\x82\x1a\x4b\xce\x94\xc1\x8a\x53\xe5\x12\x0c\x58\x73\xa2\x61\x82\x18\x1b\x8e\x35\xc1\x96\xa3\xc8\x66\x72\xa8\x39\x76\x1c\x6a\x89\x3d\x0b\x5a\x61\xcf\xbc\x36\x38\x30\xaf\x1d\x81\x2c\xb2\x4f\x90\x59\x03\x09\x62\xc6\xa0\xc4\x4c\x93\x04\x29\x21\x4c\x19\x4e\x28\x93\x46\x10\xc6\x84\x51\x84\x31\x6e\x74\x44\x7d\x26\x4a\x5b\xd4\x38\x22\x19\x31\x81\x28\x86\x23\xee\x67\xc8\x22\xa2\x19\xb4\x84\xc4\x4d\x45\x49\xe4\x79\x79\x94\xf2\xac\x88\x12\x9f\x8d\x92\xa0\xb1\x9a\x42\xaa\xad\xa1\x88\x2a\x6b\x29\xa6\xd2\x7a\x1a\x09\x50\xa0\x11\xe1\x43\xca\x28\x73\x98\x72\x4a\x23\x59\xa2\xc4\x51\x2a\x29\x76\x8c\x6a\x8a\x9c\xa0\x86\x04\x27\xa9\x25\xde\x29\xea\x88\x73\x9a\x7a\x62\x9d\x61\x90\x18\xe7\x18\x22\xda\x79\x86\x89\x74\x81\x11\x22\x3c\x64\x8c\x70\x8f\x58\x64\xa7\x31\x13\x84\x7a\xc2\x14\x21\x9e\x32\x4d\x90\x67\xcc\x12\xe8\x39\x73\x38\x78\xc1\x3c\xf6\x5e\x72\x88\x9d\x57\x1c\x61\x13\xc9\x25\xd6\xde\x70\x8a\x95\x37\x9c\x63\xe9\x2d\x17\x98\x7b\xc7\x15\x66\xde\x73\x8d\xa9\x0f\x91\xdc\x45\x16\x12\xa3\x00\x79\xc0\x30\x20\x81\x50\x08\x48\x10\xe4\x02\x16\x14\xd9\x40\x04\x47\x26\x44\xe1\x5a\x05\x2a\x14\x92\x81\x09\x83\x44\x60\x91\x3d\x0f\x5c\x78\x44\x03\x97\x10\x91\x20\x24\x46\x38\x08\x49\x11\x0c\x52\x32\x18\x82\x94\x02\xfa\x20\xa5\x82\x36\x28\x69\xa0\x09\x4a\x5a\xa8\x83\x92\x1e\xaa\xa0\x15\x84\x32\x4e\x2a\x14\x41\x2b\x0a\x45\x30\x8a\x43\x1e\x8c\x12\x09\xaa\x04\x4d\x82\x0e\x8a\x60\x55\x88\x50\x23\x28\x83\xd5\x04\xaa\x60\x35\x83\x3a\x44\x11\xc3\x06\xab\x25\x74\xc1\x6a\x0d\x43\xb0\xda\x46\xd6\x5b\x7b\x84\x83\x35\x10\xd1\x60\x0d\x46\x3c\xc4\x69\x93\xc1\x18\x8e\x74\x88\xe8\xde\x05\x63\x34\x0a\xc1\x18\x1b\xb9\x67\xe3\x31\x09\xda\x42\xcc\x83\xb6\x18\xcb\xa0\x2d\xc5\x3a\x68\xcb\xb1\x0b\xca\x0a\x1c\x82\xb2\x8a\xe0\xa0\xac\x21\x2c\x48\xeb\x88\x08\xd2\x06\xa2\x83\x70\x88\xb8\x20\x1c\x69\xb7\x39\x25\x81\x3b\x41\x79\x60\x4e\x51\x15\x98\x33\xd4\x06\xea\x1c\x0d\x81\xc6\xb9\x0d\x34\xce\x6a\x20\x9e\x30\x1d\x88\x67\x91\x32\x7b\xce\x51\xc0\x5e\x72\x16\xb0\xd7\x5c\x05\xe4\x2d\x77\x01\x79\x27\x50\x40\x3e\x08\x16\x50\x40\x42\x05\x1c\xb0\x70\x01\x07\x2a\x71\x20\x81\x49\x1e\x48\x88\x74\x89\x06\x29\x7d\x60\x41\x29\x1c\x78\xd0\x8a\x07\x19\x8c\xd2\x41\x05\xab\x5c\xd0\xc1\x69\x14\x6c\x08\x9a\x46\x6a\x60\x06\x6a\xe0\xa0\x94\x02\x41\x28\xa4\x8c\x4c\x97\x54\x88\x43\x21\x35\x52\x90\x4b\x8b\x0c\xe4\xd2\x21\x07\xa3\x3c\x0e\x21\x97\x21\xa2\x06\x05\x31\x85\x5c\x21\xcc\x21\x53\x11\xef\x32\x85\xb1\x86\x4c\x11\x6c\x21\x53\x14\x7b\xc8\x14\xc3\x01\x32\xc5\x09\x82\x4c\x09\x42\x12\x64\x90\x2a\x49\x04\xa4\x4a\x11\x09\xa9\xd2\x44\x27\x68\x21\x55\x86\x78\x48\x95\x25\x21\x42\x8a\x20\x55\x8e\x12\x48\x94\xa7\x34\x41\x0e\x89\x0a\x54\x26\xa8\x60\xcc\x68\x20\xd1\x88\x5a\x88\x35\xa2\x1e\x62\x8d\x19\x4c\x10\x41\xac\x09\x23\x09\x32\x88\x35\x65\x1c\x22\x4d\x99\x4c\x50\x41\xa4\x19\x33\x09\x5a\x88\x34\x67\x3e\x42\x0e\x13\x44\x10\x46\x51\x39\x41\x9a\x20\x4f\x50\x40\xa8\x25\x57\x09\xea\x04\x6d\x82\x3e\xc1\x10\x61\x1c\x44\x2d\x05\x86\x48\x4b\x41\x13\x64\x09\x8a\x04\x65\x82\x11\xd1\x49\x61\x12\x74\x90\x68\x29\x7c\x84\x12\x42\xaa\xa5\x44\x90\x6a\x21\x09\x64\x5a\x48\x9a\x20\x87\x5c\x73\x29\xa0\xd0\x5c\x4a\x28\x35\x97\x1a\x2a\xcd\xa4\x81\x5a\x33\xe9\xa0\xd1\x4c\x7a\x68\x35\x95\x01\x3a\x1d\xc5\x10\xaf\x89\xc2\x30\x68\xa2\x28\x8a\x42\x18\x43\x48\xa3\x48\xe8\x34\x52\x12\x51\x0d\x95\x42\x4c\x05\xa5\x11\x57\x41\x59\x24\x94\x57\x0e\x49\xe5\x94\x47\x4a\x39\x0d\x91\x56\x56\x23\x64\x94\xd1\x18\x39\xa5\x23\xb2\x51\x5a\x33\x14\x94\xd2\x1c\x43\x25\xb5\xc0\x48\x09\x2d\x31\x56\x5c\x6b\x4c\x14\xd3\x06\x53\x45\xb5\xc5\x5c\x51\xed\xb0\x50\x44\x7b\x2c\x15\x36\x10\x2b\x85\x0c\xc2\x5a\x41\x83\xb1\x91\xc1\x10\x6c\xa5\x37\x14\x7b\xe9\x0c\xc3\x41\x5a\xc3\x09\x94\xc6\x08\x82\xa4\x36\x92\x60\x19\x79\x74\x22\xa5\x31\x24\x8a\xf5\x96\x30\x29\x8c\x23\x42\x72\xe3\x89\x94\x2c\xe2\x6c\x49\x23\xce\x96\xc4\x22\x62\x24\xb6\x98\x58\x89\x2c\x21\x4e\x46\x66\xc1\x8b\x60\x19\x85\xc2\x5b\x4e\x91\x70\x56\x50\x2c\xac\x95\x94\x08\x63\x15\xa5\x42\x5b\x4d\x99\x88\x58\x9c\x8b\x88\xc5\x85\x90\xd6\x52\x25\x84\x75\x34\xca\x00\x9e\x9a\xc4\x1a\x5b\x41\x1d\xa4\x4e\x10\x87\xa8\x17\xd8\x61\x1a\x04\x72\x84\x21\x81\x1c\x65\x58\x40\x17\x11\x74\x70\x8c\xd1\x88\x58\x19\xe3\xce\x09\xc6\x23\xc7\xcf\x04\x37\x4e\x31\xc9\xb5\xd3\x4c\x27\x68\xb8\x72\x86\x59\x2e\x9d\x65\x8e\x0b\xe7\x98\xe7\xdc\x79\x16\x38\x73\x9e\x23\x4e\x5d\xe0\x91\xcb\x87\x9c\x70\xe2\x11\x8f\x5c\x3e\xe6\x8c\x23\x8f\x39\xe7\x51\x54\x8e\xec\x68\xe4\xd7\xbd\x67\x5c\x33\xe7\x23\xd7\xee\x7c\xe2\xda\xbd\xe0\x9e\x19\x2f\x78\x60\xda\x4b\x01\x99\xf2\x4a\x20\x26\xbd\x12\x98\x09\xaf\x05\x65\xc2\x1b\xc1\x18\xf7\x46\x70\xc6\xbc\x15\x82\xd1\xc8\x9a\x32\xe2\x9d\xd0\x0c\x7b\x1f\xe5\x54\x1f\x84\x4d\xd0\x33\x18\xd1\x2d\x0d\x01\x4a\x48\x7d\x40\x12\x51\x17\x90\x24\xd4\x06\x2c\x29\x35\x81\x48\x96\xa0\xa0\x3a\x50\x29\x69\xdc\x9c\x8a\xca\xc0\xa4\xa1\x22\x30\x69\x29\x0f\x5c\x3a\xca\x02\x97\x81\xd2\x20\x14\x4c\x10\x51\x12\x84\x22\x14\x07\xa9\x28\x45\x41\xaa\xc8\x1c\xa9\xc8\xba\x07\xa5\x24\xf1\x71\x99\x11\x1f\xb4\x32\xc4\x05\xad\x2c\xb1\x41\x2b\x4f\x4c\x30\x2a\xe2\x5a\xa3\x11\x51\xc1\x68\x4c\x12\x1d\x48\x90\x91\x48\x19\x38\xe1\x91\x0e\x10\x16\xac\x56\x84\x86\x24\x21\x06\xa7\x6d\x82\x9e\xe0\xe0\x74\x20\x28\x38\x83\x08\x0c\xce\x60\x1c\x82\x33\x34\x41\x86\xa3\x24\x20\xb0\x0b\x3e\x2e\xa8\xe0\x8d\x4e\xd0\xe0\x28\x2d\x38\x1c\x25\x07\x1f\xa1\x85\x58\x05\x67\x71\x82\x04\xcb\xe0\x2c\xc3\x22\x38\xcb\x13\x94\x09\xea\x28\x08\x5a\x83\x79\xb0\xd6\x61\x16\xac\xf5\x11\x3a\x98\x20\xc6\x2c\x18\x47\x30\x0d\xc6\xb1\x04\x05\xa6\x41\x3b\x99\xa0\xc6\x34\x28\x67\x13\x8c\x79\xa5\x0b\x11\x7a\x84\x59\x10\x1e\x27\x48\x31\x4b\x9a\x1f\x1e\xb8\x97\x98\x07\xe6\x55\x82\x06\x8b\x40\xbd\xc3\x22\x10\xef\x23\x0c\x10\x8b\x48\x31\xb0\x08\x28\x44\xf1\x14\x05\x86\x59\xab\xd0\x08\x30\x28\x8c\x26\xf9\xc8\x7c\xfc\xe5\xe8\x84\x02\x26\xab\xaf\xf5\x81\x23\xe7\x28\x20\x47\x56\x4e\x9b\xfc\x59\x56\x4f\x9b\xc1\xf8\x2d\x5b\x5f\x9f\xf7\xfa\xae\xf2\x7c\x5e\xe5\xf7\x5b\xfd\x3c\x6c\x0c\xd7\x06\x03\xa8\x8b\x14\x0e\x00\x94\xf9\x7c\xd1\x80\xba\xb5\x95\x79\xbc\x5f\xe0\x3a\xf9\x05\xf6\xb1\x2b\x06\xaf\xc0\xaa\x7e\xac\x71\x68\x93\x8c\x8a\x1e\x30\xd1\x49\xa3\xb7\x3f\x89\x8d\x6d\xec\x3d\x68\xd7\xc9\xaa\xaa\xcc\x77\x5d\xc8\xac\x8d\xd5\x2b\xff\x27\xbd\x76\xe7\x42\x66\xdd\x0d\xa1\xb5\x52\xba\x9f\xaa\x72\x7d\x36\xb6\xd6\xed\x51\xc2\xef\x9c\x5f\x37\x65\xf3\xe1\x5c\xda\xaf\x8f\xd2\xfe\xb5\x5c\x7b\x5d\x9f\x4b\xf9\xeb\x71\xca\xea\xd5\xb9\x64\x7f\x3d\x4a\xf6\x63\xed\xca\xb5\x5e\x9d\x4b\xea\x8e\xdb\xd9\xc7\x82\x39\x93\xf6\xe6\xa4\xf3\xef\xce\x25\xfb\xc7\x51\xb2\x5f\xde\xd4\x67\x8b\xfb\xcb\x51\xba\x7f\xef\x6c\x27\xcf\xa5\xfd\xd3\xd9\xb4\xff\x38\x9b\xf6\x3f\x8e\xd2\xfe\x7a\x53\xfb\xcd\x4d\xb5\x3a\x3b\xa1\x7f\x3b\x4e\x5c\xde\x9e\x2d\xb4\xf6\x47\x09\xff\xa3\xb1\xe7\xd2\xad\x0f\xd2\xdd\xf8\x5b\xff\xb5\x6e\xfc\xab\xaa\xfe\x80\xe0\xa7\x82\xb5\x1d\xa6\xc7\xd0\x9c\xcb\xa0\x1f\xc8\x70\xb6\x45\x9b\x07\x32\x9c\x4b\xbf\x3d\x0e\x1f\xd7\x3a\xe8\x7e\xbd\x35\xfe\xc6\xaf\xca\xf7\x7f\xf6\x41\x6f\x57\x67\x67\xd4\x9e\xcf\xfa\xb3\x2e\xd7\xe6\xfc\x5a\xb9\x3b\x9f\xe3\x6f\xba\xbe\x3d\x97\x3c\xdc\xd3\xb6\xaa\x3a\xbb\xb8\x6f\xce\x27\xff\xad\xac\x4b\x57\x6e\xce\xe5\x78\x7b\x3e\xc7\xf7\xfa\xd5\xad\x3e\x97\xfe\xc3\xf9\xf4\xdf\xad\x83\xaf\xd7\xd5\xb9\x1c\xaf\xce\xe7\xf8\x69\xa5\x37\xe7\xab\x30\xc7\x2b\xef\x17\xff\x66\x1b\x91\xc9\xf9\x0d\xfd\xd2\x7f\x5e\x54\xbf\xa3\x38\x51\x5d\x6c\xa8\xf2\xac\x09\xca\x0e\x54\x05\x02\xba\xc0\x60\x53\x10\xb0\x2d\x28\x58\x15\xc8\x4f\xf9\x40\x84\xec\xc8\x12\x25\x85\x32\x4c\xd1\x0a\x52\xdc\xab\x19\xcb\xaf\x26\x00\xe6\x93\xc1\x90\x2d\x9c\x4d\x0d\xc1\x90\x7e\x9c\xfa\x66\xdf\xc9\xa7\x5d\xb4\x7e\xfd\xbe\xdc\x0c\xbf\xbb\xb1\x75\xd2\x62\x09\x5c\x1b\xa8\xe0\xae\xfd\xb8\x2d\x38\x78\x5b\x70\xf0\xa1\x20\xe0\x55\xe1\x8b\xa2\xa8\x3e\x7e\x8c\x1f\xdb\xeb\x29\x9a\x23\x60\xd2\xbb\x6d\xfb\x4e\x5f\x4f\xde\x4f\xe6\x93\x0f\x13\xf0\x72\x9c\x74\x73\x6d\xe7\x61\xe8\xec\xbb\xde\x32\xb8\xbf\x36\xc4\x5d\x37\xad\xb1\x57\xff\xd9\x07\x05\x07\x75\x3e\xdf\x87\x7c\xc8\xe7\x0e\x84\x2e\xc7\x5d\x97\xb2\x35\x15\x3a\xf8\x32\xce\x5b\xce\xef\xc0\xbb\xc1\x18\xee\x16\xc0\xfc\xea\x03\xf8\xa6\x77\xd8\xcc\x72\xf0\xbe\xb8\xfa\x66\x01\x97\x57\x33\x06\x7e\x89\x8f\xdf\x0c\x56\x58\xf1\xdd\x8f\x45\xd6\x0c\xf1\x79\xae\x4f\x3d\x6f\x46\xbc\x81\x1f\x12\x66\xf9\x14\xe5\xcf\xf0\x60\x41\xdf\xfa\xe5\xe4\xc9\xd8\xf0\x30\x5a\x12\x38\xb5\x92\xb8\xf2\x59\x9d\x5f\x35\x9f\xb8\x9d\xab\x19\x25\x6f\xd2\x7d\x54\x4d\x1f\x5d\x1b\xbc\x1e\x5f\x4c\x7b\x3d\x7a\xce\xf2\xf9\x1a\x7c\x55\xbc\x9e\xed\xaf\x43\xcd\x26\xdd\xf8\x4e\xf2\x99\xd3\x8d\xce\xda\x70\x9f\x39\xf8\xf5\x28\x55\x1c\xe1\x3e\x8d\x05\x4d\x3e\xab\x6a\xe7\xeb\x2c\x07\x5f\x17\xbf\xce\xfc\xfb\xb2\xc9\x72\xf0\x7d\x7c\x8c\x9b\x33\xcb\xe3\x34\xf8\xb5\xcb\x26\xaf\x26\x79\xba\x86\x2e\x9b\xd8\x95\xde\x6c\x26\x60\xd2\x96\x04\x7e\x2e\x7e\xed\x2a\xc8\x26\xab\x72\xed\x27\x39\xf8\x69\xf4\x2a\xdd\x88\x91\x3f\xf9\xaa\xf8\x6a\x96\x2e\xd4\xcc\xbe\xda\x17\x5d\xae\x37\xbe\x6e\xb2\xc9\x9d\x6e\x6e\x26\x60\xdf\xb4\xc3\x5a\xf6\xbd\x6a\x5f\x6f\x9a\xba\x7a\xed\x27\x60\x62\xb7\x75\xed\xd7\xcd\xd7\xd5\xaa\xaa\x27\x79\xec\xe7\xaf\x5d\x05\xdf\xc7\x36\xfd\xdc\x7f\xd9\x77\xa0\x6d\xdb\xc3\xc5\xb4\xbf\x9a\xab\x09\x9e\x80\x57\x97\xb7\x79\xec\xca\x4f\x27\x25\xb5\x5d\xea\x4a\x0a\xe5\x6a\x75\x5f\x39\xe0\xd5\xe5\xbb\x3e\x9d\xfb\x30\x01\x69\x2f\x5d\x4f\xa0\xbf\x9d\xcc\xdb\x0d\x35\x81\x33\x81\xe2\xd7\x09\x9c\x11\xec\x6f\x63\x4f\xd6\x4f\x8b\xe2\xf5\xc5\x45\x16\x87\x6c\x74\x89\xf1\xba\xed\xe3\xe1\x9b\xd8\xd1\xc3\x37\xb1\xc1\x87\x6f\xbe\x2e\xbe\x3e\x7c\xd3\xb5\xa8\xba\xd3\x36\xb1\x64\xab\xfe\xcd\x70\xfd\xd4\xb9\x30\x37\x83\xd3\x6c\xf1\x63\xe6\xf3\xfc\xfa\xe5\xfe\x96\xc7\x83\xab\xd7\x46\xc5\xe4\xbb\x1c\x7c\xff\xb9\xd5\x9d\xbd\xae\xa4\x43\x77\xfd\x56\x7c\x99\x35\x17\x17\xfb\x06\x35\x45\xf2\x73\xba\x6e\xe6\xa9\x61\xbb\x3c\x07\x5f\x77\x11\x05\xb3\x1c\x7c\xd5\xcf\x40\x3b\x01\x2d\x8e\xd3\xd7\x6f\xaf\x27\xdf\x4f\xae\x5e\x5d\xbe\xbd\x9a\x80\xc9\xd5\xfb\xab\xc9\x5f\xe0\x8c\xfd\x36\xb9\xfa\xe5\x6a\xf2\x97\xf4\x7e\x3e\xf9\x1e\xce\x58\xfb\x5b\x7c\x3f\x6f\x73\xbc\x4f\xe9\x53\xbe\xdf\xe0\x8c\xfd\x25\xe5\xf8\xad\xcf\xd1\xfe\xde\xbd\xcf\xc1\xaf\xc7\x9d\x47\x8f\x1b\xeb\x97\x59\xd7\x13\xf0\xf3\xf1\x9a\x04\x3f\x1d\xac\xae\xb8\x18\xb3\x90\x83\xd7\xb3\xf6\x06\xdf\xec\xe6\x68\x65\xae\xab\xd1\xba\x0f\xd5\xba\x99\x6e\x12\xe7\x88\xe0\xc1\xcb\xa0\x6f\xcb\xd5\x87\x09\x98\x6c\xf4\x7a\x33\xdd\xf8\xba\x0c\xfb\x5c\xb1\x8e\xa9\x5e\xdb\x9b\xaa\x6e\xc7\x50\x5f\x77\x57\x6a\xce\x5b\x12\x32\xf1\x6b\x37\x99\x4f\x6e\x4b\xe7\x56\x11\x01\xbc\x3e\x09\xd8\x3c\x22\x59\xc5\x8f\xc3\x2d\xa7\xef\x66\x89\xa6\x3f\x56\xdc\xf2\xe0\x5d\x3e\x6f\x76\xe0\xdd\xb1\x51\xf1\xc8\x43\xaf\xbb\x67\x7e\xb8\x84\x02\xbc\xeb\x33\x7c\xd5\xbf\x7b\xac\xe7\xcc\x28\xf4\xe2\x7a\xef\xf6\xf4\x2e\x9f\x8f\x7c\x99\xda\x92\x7f\x4b\x91\x2a\x1f\x57\xac\x3b\x8c\x1f\x7d\x50\xb0\xbb\xb8\x70\xc7\x65\x9f\x18\x2c\x3f\x50\xf6\x5d\x3b\x44\x77\x7d\xde\x5f\xca\x7f\x3c\x72\x70\x6f\x8b\xb7\xc5\x55\xca\x7c\x3b\xce\xfc\x19\x01\xe0\x6e\xcf\xe5\xff\x8c\x40\x6f\x7d\xfd\x6f\xfb\xfc\x3f\x7d\x4e\x60\xbb\x0f\x5d\xee\x0f\x3b\xf0\x6e\x1c\xc3\x71\xc8\xe3\xb2\x0a\xf8\x83\x88\x6b\xe3\xdf\xf4\xc1\x6f\x6f\x0f\x7e\xdb\x1c\xfc\xf6\xe1\xe0\xb7\x6d\xfc\xad\x0f\x4a\xfd\xbe\xdc\xfc\x5a\xdd\x7d\x42\x72\x8e\xa9\x7e\x2e\x5f\xdd\x7c\x4a\x70\x8e\xe9\xfe\x54\x35\x4d\x75\x56\x16\x78\x7b\x98\xf0\xaf\x3e\x9c\x2d\xef\xc3\x2e\xdf\x2d\x97\x2d\xb7\xfb\xf2\xa5\xbf\x35\xbe\x7e\xa9\xb7\x4d\xf5\xb2\xbc\xbd\xab\xea\xe6\xe5\xcb\x83\xd1\x1d\x7c\x62\xb2\x66\x7c\x21\x53\x7b\x2b\x37\x5c\x82\x6d\x8a\x9b\x96\xae\x9d\xc6\x4b\x10\x0a\x08\x6e\x8a\xc5\xf2\x79\x78\xd1\x4f\xc4\xf3\x70\x75\x95\xeb\x62\xb3\x08\xad\xa3\xd7\xc5\xc5\x4d\x17\xeb\x74\xa1\x97\x0b\xb8\xcc\xd3\xdb\x2e\xee\x6f\x0a\x2c\xbe\xcd\x5b\x83\xd8\x11\x13\x7e\xa3\x37\x3f\xbe\x5b\xf7\xd7\x84\xf5\xf7\xce\xaf\x93\x45\xec\x62\xbd\x2c\xb6\x29\x7a\x6d\x2c\xc1\x5e\x5c\xd8\xac\xc9\x9f\xdf\xf4\xd5\xe7\x37\xb3\xcd\x4d\x19\x9a\x2c\x1f\xa2\xce\x54\xa9\x05\x1d\x43\x59\x81\xd5\xc7\x8f\x8b\x65\x0e\xea\x71\xf4\xbd\x7a\x1c\x4c\x18\x34\x05\x7c\xde\xbc\xe8\xe3\xc2\x3c\x6f\xae\xae\x46\x71\xf1\x8b\x6a\xd1\x2c\xc1\xba\x78\x0a\xc1\xa6\x40\xcf\x37\x7b\x2f\xd0\xe7\x9b\x98\xae\x8d\x77\x54\x2f\x36\xcb\x27\xf0\x69\x91\xae\x81\x4f\x1e\xe5\x4f\x51\xbe\x5b\x5f\x5c\x64\x55\x7f\xa7\x53\x33\x9d\x02\x94\x03\x5f\xe8\x4c\xcf\x36\x45\x1d\x07\x67\x08\x07\xbb\x6b\xc5\x93\xdf\x77\xa0\x2c\x7e\x87\x73\x18\x65\x8f\xc5\x81\x6b\x63\xeb\x4c\xba\x5e\x34\xcb\xbd\x43\xfa\xa2\x59\x26\x6f\xde\xba\xd9\x3c\xe9\x22\x0b\x2f\x9a\x65\xf1\x7b\x39\x6f\xc0\x6a\xfe\x14\x81\xee\xc7\xf9\xef\xbb\xdd\x9e\xa9\x8d\x99\xda\x40\x26\x7d\x5e\x50\x83\xe1\x59\xc7\x65\xb6\x8a\xbd\xdd\xbf\xdb\xe9\xd9\x6d\xe1\x81\x9e\xd9\x62\x0d\xf4\xcc\x9d\x84\x9e\xd2\xb3\x36\x20\xfa\xc7\x8f\xdd\xd4\x3a\x1f\xca\xb5\x1f\xdf\xfb\x06\x7e\xf7\xeb\xed\xad\xaf\xb5\x59\xf9\xf9\x53\x98\x22\x80\xd7\xbb\xe4\x85\x78\x88\x2e\x26\xdb\x75\x9b\xdb\x0d\x3e\xfa\xbf\x7c\xb8\x35\xd5\xea\xe2\xa2\xfd\x9c\x35\xd5\x2f\x4d\x5d\xae\x5f\xfd\xaa\x5f\x5d\x5c\xdc\x57\xe3\x69\x5a\xd0\x5d\x8f\x33\xf9\xbe\x72\xdb\x95\x9f\xec\x7a\xb3\xed\xd3\xcc\x93\x97\x2f\xfd\xa6\x4b\xd6\x67\x7b\x0a\xdb\xe6\x1e\xbb\x92\x94\x21\x43\x17\x4d\x0a\xd1\xa7\x53\x24\x56\x79\xb1\x8f\x83\x9f\x2e\xfa\xa3\xf1\xd7\x49\x95\xaa\x1a\xdd\xbb\x74\x71\x11\xff\xcf\x86\x9a\x86\x4c\xe3\xe8\x7b\x33\x5b\xfb\x28\x26\xee\xaf\x04\xd4\xb3\x3a\xab\xef\x6b\x7a\x0d\x26\xae\x57\x58\x1c\x8d\x78\xdb\x8b\x28\x5d\xe3\xd4\xa0\x4d\x1a\x97\xd1\x55\xff\xfb\x38\xf0\xeb\x36\x0e\xbc\x9e\xb9\xac\x06\xeb\x73\xc1\x46\xe2\x22\xda\xcd\x4c\xb9\x76\xa9\x5d\x60\x14\x0f\xb8\x8e\x63\x74\xe6\x0a\x86\xe2\xa8\xb7\xd7\xa7\xb8\xcb\xcf\xba\xb6\xef\xce\x5c\x80\xe7\xf7\x2b\x58\x77\x58\x70\x92\x9c\xad\x62\x75\xd5\x79\xef\x9e\x47\xe1\x99\x14\x65\x00\xe8\xd9\x5d\x31\x99\x3c\x69\xaf\x54\x7a\x57\xae\x5d\xf5\x6e\xf6\xce\x9b\x3b\x6d\x5f\xff\xeb\xa6\x5a\xdf\x9d\xc1\xa4\x8f\x4c\x16\x91\x4f\xba\xee\x21\xe1\xa4\x34\x64\x9b\xfc\x49\xfb\xb5\x68\xc0\xa6\xd8\x9c\x5c\xac\xd6\xde\x08\xb1\xc7\xb0\xab\xab\xab\xbc\xc9\xd2\xbd\x10\x6d\x50\x91\x62\x7b\x88\xe9\xb2\x85\x04\xb8\xc3\x70\xd9\xef\xe2\x28\x6a\x7e\xd7\xcc\x97\x5e\x97\x2f\xeb\xa2\xf6\x6f\xb6\x65\xed\xc1\xf8\xad\x2b\xda\x55\xb4\x03\xf2\xe4\x8a\xb9\x3a\x13\x39\xf0\x3d\x26\x28\xea\x4c\xe5\x3b\xa0\x1e\xb8\xa4\xfb\xdc\xfe\x75\x95\x4d\xd4\xfb\xe2\x22\xab\x67\x77\x45\xb6\x2e\xfa\x37\xb3\x37\x5b\x5f\x7f\xf8\x25\xc9\x8e\x55\x9d\x24\xd6\x8d\xad\xcb\xbb\x66\x92\xe7\x63\xef\xb0\xd9\xa6\xb6\xb3\xda\xdf\xad\xb4\xf5\xd9\xb3\xff\xf3\x6c\xf1\xff\xfe\x9f\x67\xcb\xcb\x2f\x9e\x81\xc9\xb3\x28\x42\x0d\x0d\xcc\xca\xa2\xed\x13\xa8\xda\x87\xba\xef\x6a\x9a\x9a\xaf\xb6\x4d\xf5\x5d\x9a\x98\x3f\x7f\x58\xeb\xdb\xd2\x9e\x63\x36\xaa\x6c\xd2\x96\xf1\x61\xfd\x72\x92\x42\x18\x96\xd9\x44\x47\xe1\x75\x02\x16\xcb\x73\xda\xd2\x0c\xc1\xc8\xbb\x97\xd9\xc4\x91\xa9\xae\x6b\xfd\xe1\xde\x94\x78\x94\xf0\x7d\xb9\xb9\x3f\x9d\x1c\x12\xb6\x41\x49\xee\x4d\xca\x86\x94\x89\xbb\xbe\xbf\x4c\x31\x4a\xd9\xeb\x16\xee\x4d\x4d\x46\x89\x6f\xf4\xdd\x03\xc5\x8e\x1a\xd0\x94\xb7\xfe\x53\xed\xe5\xa3\xe4\xa3\xfb\x3f\xee\x2b\xbd\x4f\x1e\x56\x0f\x94\x89\x50\x9f\x6a\xbb\xf1\xb3\xbf\xdf\x3f\xae\xa8\xef\x56\xb9\x99\x96\x77\xf7\x27\xeb\xfb\xb4\xaa\x9c\xde\x74\xb1\x1b\x37\x9f\x18\x31\xd4\x8f\xef\xaa\xde\xbe\xbc\xd5\x0f\x94\x9e\x26\x37\x85\x15\x2f\xb3\x49\xda\x03\xd3\x0e\x1f\xdf\x9b\x45\x45\x39\x77\xb7\xcb\x9f\xfc\x7f\x01\x00\x00\xff\xff\x0e\xa3\x05\x38\xe7\x17\x18\x00") -func distAssetsVendor34c674f94f8ed54c9c302f718969513fJsBytes() ([]byte, error) { +func distAssetsVendor44114fe8d7aaeb1fcb23a1020f2623c2JsBytes() ([]byte, error) { return bindataRead( - _distAssetsVendor34c674f94f8ed54c9c302f718969513fJs, - "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js", + _distAssetsVendor44114fe8d7aaeb1fcb23a1020f2623c2Js, + "dist/assets/vendor-44114fe8d7aaeb1fcb23a1020f2623c2.js", ) } -func distAssetsVendor34c674f94f8ed54c9c302f718969513fJs() (*asset, error) { - bytes, err := distAssetsVendor34c674f94f8ed54c9c302f718969513fJsBytes() +func distAssetsVendor44114fe8d7aaeb1fcb23a1020f2623c2Js() (*asset, error) { + bytes, err := distAssetsVendor44114fe8d7aaeb1fcb23a1020f2623c2JsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js", size: 1560353, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} + info := bindataFileInfo{name: "dist/assets/vendor-44114fe8d7aaeb1fcb23a1020f2623c2.js", size: 1578983, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\xef\x8e\xa3\x30\x0e\x7f\x15\x4e\xa3\xd5\xee\x4a\x65\x94\x76\xda\xed\x0e\x48\xa7\x95\xee\xf3\x3d\x44\x20\x06\xa2\x86\x84\x4b\x42\xdb\x59\xd4\x77\x3f\xe5\x0f\x94\x40\xda\x99\x3b\x8d\xe6\x03\x8e\xed\xd8\xbf\x38\xf6\x2f\x7d\xfd\x97\x20\xf0\x6f\x2a\xa5\x90\x43\x25\xb8\x4e\x2b\xdc\x52\xf6\x91\xb5\x82\x0b\xd5\xe1\x12\xf2\x06\x68\xdd\xe8\xec\x0d\xa1\xee\x9a\x97\x82\x09\x99\xbd\x20\x84\x6e\x33\xcb\x94\x51\x0e\x6a\xe8\x30\x21\x94\xd7\xd9\xbe\xbb\x26\xc1\x7a\xd2\x49\x98\x56\x51\xb2\xef\xae\x81\x75\xdd\x6b\x0d\x32\xad\x28\x63\x20\x37\xf3\x15\x55\x4a\xc1\x58\x81\xc7\xc5\xa1\xc0\xe5\xa9\x96\xa2\xe7\x24\xf5\xa1\x54\x55\x15\x71\xa6\x86\x42\x48\x02\x32\x95\x36\xf8\x6d\x77\x4d\x94\x60\x94\x24\x2f\x84\x90\x3c\xe2\xe5\x68\xfe\xf2\x4b\x43\x35\xa4\x36\xef\x8c\x8b\x8b\xc4\xdd\x2a\x4d\xde\xb7\x05\xc8\x59\x36\x6f\x26\xdb\xe4\xd0\x5d\xf3\x96\xf2\xf4\x42\x89\x6e\xb2\x9d\xc1\x4a\xc3\x55\xa7\x98\xd1\x9a\x67\x36\x8a\x11\xbc\xf7\xf7\xf7\xcf\x36\x72\x49\xb4\x58\x9e\x40\x0e\x0f\x30\x9f\xeb\xa4\xaa\x2f\x34\x83\xe1\xbe\x43\xa0\x5a\xf6\x52\x09\x39\x42\xc2\xa0\x0a\x10\x41\x08\xe5\x01\x5a\x5c\x70\xc8\x5d\x22\xe1\x31\x12\x7a\x0e\x4e\x07\x4a\xc1\x09\x96\x1f\x4f\xfd\x2b\xca\xce\x20\x6f\xaf\x65\x9b\x56\x58\xfb\x58\x92\x48\x78\x6e\x47\xdc\x6b\xe1\xc3\xc9\xd0\x3f\x68\xdb\x09\xa9\x31\xd7\xb3\x33\xcb\x5e\x8e\x70\x5c\xfa\x5b\x84\xe6\xa4\x6a\xf8\x9b\x52\x4e\xe0\x9a\x6d\xad\x3e\xe6\xb4\xc5\x1a\x66\x76\xb1\x4d\xf3\xf4\x02\xc5\x89\x6a\xaf\x4e\x05\xcf\x0a\x46\xf9\x29\xd9\xbe\xa2\x5f\x2a\x51\x1a\x3a\xf5\x63\xfb\x33\xa1\xbc\xa2\x9c\x6a\xc8\xd3\x56\xfc\xfd\xb2\xf2\x57\xf5\xd6\x35\x6a\xb2\xfe\x63\xf7\x3a\xc1\x47\x25\x71\x0b\x2a\xb1\x3e\x86\x03\xfa\xb6\xbe\x19\x5a\x62\xae\x3a\x2c\x81\xeb\xdb\xed\xcf\x98\xd3\xff\x61\xfa\xbf\x9b\x18\xac\x35\x2e\x06\x42\x55\xc7\xf0\x47\x46\xb9\xb9\x39\x69\xc1\x44\x79\x72\xd7\x82\x40\x29\xa4\x83\x81\xf2\x06\x24\xd5\x41\xc1\xca\xde\x5e\xf6\x78\xbd\x96\x65\x99\x77\x42\x51\x6b\x8d\x0b\x25\x58\xaf\xc1\xee\xa9\x52\x02\x15\xee\x99\x4e\xcc\x57\x03\x98\xcc\xaf\x4f\x15\xd1\xf9\x4f\x2f\xf4\x74\x6d\xd0\x3b\xb2\x2a\x1c\x6a\xac\xe9\x79\x92\x93\xfd\xde\xca\xdd\xa6\x77\xf9\xee\x7d\x77\xbb\x6f\xb4\xb1\xde\xb5\x14\xbc\x76\x9d\xf4\xe2\x1a\xe7\x11\x39\xaf\xd0\x3a\xb1\xd2\x1f\x0c\x32\xaa\x31\xa3\xa5\x5d\xb0\xa0\x2e\x51\xe9\x39\x01\x69\x50\xbb\x79\xb7\xf4\x04\xba\x91\xa2\xaf\x9b\x95\xae\x05\xd7\x2f\x46\x72\x3c\xc1\xc7\x45\x48\x32\x46\x7d\x44\xbf\x23\x4a\x58\x8b\x76\xca\x6b\xfb\x1e\xd1\xf0\x8d\xcf\xeb\x6c\x7f\xed\x23\x3a\x04\xaa\xe7\x78\x9f\xb1\xa4\xb8\x60\x90\xee\x26\xbd\x03\x7e\xa6\xf7\x36\xe9\xfd\x3e\x44\xf4\x4a\xd1\xb6\xc0\xf5\xa8\x84\x0f\x28\xa2\x64\xd0\xe3\xf5\xa4\xb3\xdd\x3e\xd4\xb9\x87\x55\x45\x3d\xb5\xa0\xf1\x26\x56\x45\x98\xd1\x8a\xde\xd1\x39\x1c\x62\xc1\x16\x3d\x65\x9a\xf2\x51\xe9\x0d\xc5\x32\x2f\x24\x2e\x4f\xa0\xef\xad\xfc\x18\x51\xd2\x78\x4a\x67\x7b\x8c\x05\x8a\xb5\x96\xb4\xe8\x67\xb5\x8d\xca\xd8\x15\x91\xc1\xc8\x58\xad\xdb\xd2\x5c\x78\xa0\xfc\x8c\x19\x25\x65\x83\x65\x04\x0a\xb0\x4c\xc2\x99\x48\x20\xe1\x18\x12\xad\xb9\x42\xbc\x1e\x6f\x76\x21\xb4\x16\x6d\xb6\x1b\xef\xf6\x2d\xec\xe2\x89\xea\x30\x9f\x3b\x68\xb1\x2e\x1b\xca\xeb\x05\x46\xa8\x42\x9f\x59\x72\xc1\x1f\x18\x57\xbb\xdd\x2d\xb6\x87\x81\x78\x36\x73\x64\x5d\xe0\x1f\xbb\xc3\x61\xb3\x3d\xa0\x0d\xda\xbc\xbe\xfd\x0c\xac\x70\x69\x1a\x83\xeb\x72\x93\xd1\xdc\xfe\x05\x7e\x57\xbb\x90\xaa\x0c\x53\x13\x93\xc0\x6c\xc3\xc9\xc5\x19\x64\xc5\xc4\x25\x6b\x28\x21\xc0\x83\xa1\xb7\x24\x3a\x8e\x1b\x0d\x93\x89\xfb\x9e\x4d\xcc\x16\xcb\x9a\xf2\x11\xe4\xf4\xcd\x70\x12\x2f\x73\x73\xde\x89\x3c\x93\x19\xf5\xac\xcc\x73\xbe\x2d\x42\xdf\x72\xd1\x6b\x93\x57\x86\xf2\x55\xbc\x61\x3c\xf4\x2f\xc4\x72\x0a\xa8\x85\xf1\xee\xfb\xf8\x7c\x62\x7c\x8d\x0d\x36\x13\x1d\x7c\x4a\x12\x83\xc5\xf3\xb4\x3a\xac\x66\x46\x3e\xb2\x83\x5f\xf9\x38\xa9\x0c\xf5\xb9\x3d\xb0\x77\x19\xa0\x5c\x8b\x2e\x43\xd3\x51\xa5\xd7\xf1\xb0\x26\xc9\x87\x3f\x8b\x5b\x3c\xf8\xc1\x23\x8d\x72\x3b\xd9\xd0\xdc\x70\xe9\xea\x1a\x73\xb5\x62\xc5\x63\x64\xa3\xe3\xc7\x78\x0e\x7e\xcb\x27\x9a\x2a\x02\x94\xb7\x72\x99\x1b\x9a\x3b\x2f\x90\x11\xc5\xb7\x88\xb3\x21\x24\xba\xb2\xc5\x2c\x28\xae\x28\x43\x38\x83\xd4\xb4\xc4\xcc\x93\x67\x2d\xba\x58\x2d\xc7\x92\x34\x44\xba\x83\x67\x47\xbd\x9f\xdf\x29\x94\x04\x0c\xd3\xf1\x3f\x53\x02\x33\xe9\x48\x9c\x7a\x65\x68\x36\x30\x28\x3d\x41\xb6\x4c\x6c\x25\x5d\x0a\x62\x51\xce\x3a\xc4\x3a\x50\x87\xf1\x54\x22\x53\xdc\x31\x47\xc0\x74\xc4\x83\x63\xb6\x99\xef\xca\x0f\x3c\xb8\x17\x9b\x57\x35\x84\x22\x38\xd6\x10\x5d\xfb\x7c\xb3\xe9\x8e\x77\x19\x13\xda\xab\x19\x53\x5e\xca\x1f\x7c\xfb\x37\xc5\xe2\x08\xf2\xf9\xbb\xd3\xb3\x41\x27\x33\x2d\x65\x92\xb8\x12\xc8\x50\xf0\x76\xea\x24\xe4\x86\xdc\xd8\x93\x1f\x0b\xcc\x96\x92\x4f\x65\xb4\x76\xdd\x7e\xfc\x1a\x31\xd9\xad\x7b\xda\xbd\x07\x9f\xa9\xa2\x05\x83\x29\x49\x8d\xbb\xb4\xa1\x75\xc3\x8c\xe3\x35\xed\x9d\xf4\x6c\xe8\x96\xc0\x70\x9d\x32\x5a\x63\xdd\x4b\x50\xae\x3c\x9e\xac\x05\xc7\x63\xd2\xb1\xb0\xdf\x93\x2b\x24\xe0\x53\x6a\xbe\x97\x08\xd8\x75\x07\x83\x55\xf2\x38\xac\xce\xfb\x69\xdd\xf9\x2b\x1e\x36\xb9\x55\x19\xae\x9f\xfd\x17\x4a\x6a\xd0\x91\xbe\x7f\xc7\x78\x42\xd4\x3c\xb3\x16\x8c\x80\xc0\x30\x0d\x98\x48\x89\x6f\x22\xfd\x69\x13\x7f\x92\x47\x66\xc2\x66\x3d\x9f\x7c\x19\x5f\xcd\xa7\x79\xbf\x97\x82\x6b\xe0\xa6\x82\xaf\x79\x5c\x1c\xb2\x03\xc0\xaa\x97\x10\xc1\xcf\xd5\xb6\x6d\x6a\xbe\xf4\xd0\x6a\x9c\xdb\x8a\xa2\x8c\xea\xb1\xd1\xc7\x5e\xe9\x91\xa7\xcd\x3a\x00\xf7\x8b\xca\xa8\xa9\x34\xd6\xb4\xbc\x3d\x78\x03\xaf\x76\x8d\x14\x7d\xbc\x87\x57\xa2\xec\x15\x90\x07\x8f\xeb\xcd\x42\x4c\x24\xae\x23\x7b\xfa\x6b\x14\x4e\x30\xdb\x20\x21\x64\x48\xe4\xdd\xfc\x45\x03\xf8\xdc\xf6\x48\xf6\x55\x58\x40\xa5\x14\x4a\x35\x98\xca\xb1\xcb\x4d\x82\x55\x0d\x67\x99\x73\x4a\x05\x5f\x15\xd7\x3f\x0d\x95\xfc\x54\x61\xa9\xf5\x59\x70\x6e\x57\x5b\x8c\x9f\x6e\xfd\x15\xad\xa8\x6a\x34\x08\xc3\xd8\x01\x4b\xcb\x71\x87\x90\x5f\xe2\x3c\x46\x78\xcd\x3f\xda\xbc\xee\x7f\xba\x9f\x5c\x84\x2c\xc1\xf7\xfb\xf1\x47\x30\xcf\xed\x5e\xcd\xd8\xf8\xd3\x02\xa1\x38\xe9\x24\xe5\x7a\x78\xf2\xdb\xd1\xc3\xe2\x9c\x7e\x3d\xb0\x5d\x2d\x6d\x70\x79\xca\x70\xa5\xed\xdb\xca\xde\xc9\xec\xfb\xf7\xdb\x92\xde\x8f\x35\x61\x06\xd9\x10\x4e\x97\xdb\x7f\x03\x00\x00\xff\xff\x23\x83\x25\xb7\xe2\x14\x00\x00") +var _distAssetsVendorD8602bc1ee5a13b26e7066b76b62d063Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xdb\x8e\xa3\x38\x13\x7e\x15\x7e\xb5\x46\x33\x2d\x85\x96\x93\x4e\x26\xd3\x20\xfd\x1a\x69\xaf\xf7\x21\x0c\x2e\xc0\x8a\xb1\x19\xdb\xe4\x30\x28\xef\xbe\xf2\x01\xc2\xc1\x49\x7a\xe7\x6a\x15\xe5\x02\xbb\x5c\xae\x73\x7d\xe5\xb7\xbf\x04\x81\xbf\xa9\x94\x42\x76\x85\xe0\x3a\x2e\x70\x4d\xd9\x25\xa9\x05\x17\xaa\xc1\x39\xa4\x15\xd0\xb2\xd2\xc9\x3b\x42\xcd\x39\xcd\x05\x13\x32\x79\x41\x08\xa5\x84\x4a\xc8\x35\x15\x3c\x61\x5a\x5e\x47\x7c\x62\x46\x39\xa8\xae\xc1\x84\x50\x5e\x26\xdb\xe6\x1c\xa1\xf1\x7e\xd4\x48\x98\x93\xaf\x9e\xec\xc7\x8c\x1e\x60\x60\x89\xa2\x6d\x73\x9e\x5c\x59\xb6\x5a\x83\x8c\x0b\xca\x18\xc8\x31\xb3\x58\xe5\x52\x30\x96\xe1\x7e\xb3\xcb\x70\x7e\x28\xa5\x68\x39\x89\xbd\x36\x45\x51\x04\x98\xa9\x2e\x13\x92\x80\x8c\xa5\xd5\x7f\xdd\x9c\x23\x25\x18\x25\xd1\x0b\x21\x24\x0d\x70\xd9\x9b\x5f\x7a\xaa\xa8\x86\xd8\x9a\x2e\xe1\xe2\x24\x71\xb3\xb0\x0d\x6f\xeb\x0c\xe4\x48\x9b\x77\x63\xa2\x68\xd7\x9c\xd3\x9a\xf2\xf8\x44\x89\xae\x92\x8d\x31\xb7\x86\xb3\x8e\x31\xa3\x25\x4f\xac\x14\xbd\xfd\x3f\x3e\x3e\x9e\x5d\xe4\x94\xa8\xb1\x3c\x80\xec\x6e\x6e\xbb\x4b\x13\xab\x36\xd3\x0c\xba\xdb\x0d\x13\xd2\xbc\x95\x4a\xc8\xde\x24\x0c\x8a\x89\x45\x4c\x3c\x4c\xac\xc5\x05\x87\xd4\x29\x32\xf5\x3d\xa1\xc7\x89\x77\x20\x17\x9c\x60\x79\x79\xc8\x5f\x51\x76\x04\x79\x7d\xcb\xeb\xb8\xc0\xda\xcb\x12\x05\xc4\x73\x37\xe2\x56\x0b\x2f\x4e\x82\xfe\x47\xeb\x46\x48\x8d\xb9\x1e\xf9\x2c\x79\xd9\xc3\x7e\xce\x6f\x26\x9a\x5b\x55\xdd\xef\x98\x72\x02\xe7\x64\x3d\xa3\x8f\x8d\xdd\x96\xd1\x24\xcb\x0c\x7f\xdb\xa0\xd5\x66\xb7\x5b\x6d\xd0\xea\x6d\xf7\x9a\xc6\x27\xc8\x0e\x54\xc7\x98\xd3\x1a\xdb\x8c\xc9\x18\xe5\x87\x68\xfd\x86\xbe\xab\x48\x69\x68\xd4\xb7\xf5\x6b\x44\x79\x41\x39\xd5\x90\xc6\xb5\xf8\xfd\x69\xe2\x4f\xd2\x59\xe1\x1d\x2d\x8c\x94\x08\x59\xec\x3f\x21\x6f\x20\xc1\x8c\xcb\x7e\xda\xbb\x0e\x70\x29\x24\xae\x41\x45\x96\x47\xb7\x43\x5f\x96\x8e\xd0\x12\x73\xd5\x60\x09\x5c\x5f\xaf\x3f\x7b\x9d\xfe\xe0\xe8\xbf\x3f\x62\x6c\xad\x71\xd6\x11\xaa\x1a\x86\x2f\x09\xe5\xb6\x86\x65\x4c\xe4\x07\x97\xd3\x04\x72\x21\x9d\x19\x28\xaf\x40\x52\x3d\xc9\x36\xd9\x32\x53\x80\x1a\xa1\xa8\xa5\xc1\x99\x12\xac\xd5\x90\xda\xc4\x40\xa9\x4b\x32\x94\x6a\xd1\x24\xf1\xce\x54\x8a\x4c\x68\x2d\xea\x04\xa5\xe2\x08\xb2\x60\xe2\x94\x54\x94\x10\xe0\x4b\xb6\xf7\x72\x38\xcf\x73\xcb\x0f\xdd\x78\x2d\xee\xb7\x9a\xa9\x98\x40\x81\x5b\xa6\x23\xf3\x55\x01\x26\xe3\x0a\x53\x04\x68\x7e\xb5\x42\x0f\x95\x05\x7d\x20\x4b\xc2\xa1\xc4\x9a\x1e\x87\x75\xb2\xdd\xda\x75\x77\xe9\x6d\x7d\xf3\xb1\xb9\xde\x2e\x5a\x59\xee\x5a\x0a\x5e\xba\x7e\x75\x72\xed\x69\x8f\x1c\x57\xa8\xdd\xb2\xd2\x17\x06\x09\xd5\x98\xd1\xdc\x6e\x58\xd7\xcd\x6d\xdf\x72\x02\xd2\xf8\xe6\xea\xd9\xd2\x03\xe8\x4a\x8a\xb6\xac\x16\xb4\xd6\x85\x7e\x33\xa0\xe3\x01\x2e\x27\x21\x49\x2f\xf5\x1e\xfd\x08\x10\x61\x2d\xea\x41\xaf\xf5\x47\x80\xc2\xf7\x06\x4f\xb3\xfe\xbe\x0d\xd0\x10\x28\x1e\xdb\xfb\x88\x25\xc5\x19\x83\x78\x33\xd0\xed\x70\x80\x4e\x5f\x1a\x58\x3d\x38\xfe\x3e\x1c\xff\xb1\x0b\x1c\xcf\x45\x5d\x03\xd7\x3d\x11\xde\xa1\x00\x91\x31\x2a\x2f\x07\x9a\xf5\xfa\x2e\xcd\x4d\xda\x22\xc8\xa9\x06\x8d\x03\xd2\xfe\x6a\x31\xa3\x05\xbd\x19\x6d\xb7\x0b\x09\x9b\xb5\x94\x69\xca\x7b\xa2\x77\x14\x32\x48\x26\x71\x7e\x00\x7d\x6b\x82\xfb\x90\xd5\xf0\xa0\xce\x7a\x1f\x12\x14\x6b\x2d\x69\xd6\x8e\x42\x1e\xe5\xa1\xcc\x91\x93\x66\xbb\xd8\xb7\x11\x3b\xe3\x40\xf9\x11\x33\x4a\xf2\x0a\xcb\x80\x29\xc0\xc2\x38\xdf\x87\x80\x4c\x1b\xb8\xa8\x4d\x66\xf1\xb2\xcf\x7f\x9f\xe5\x9b\xbe\x02\x5c\xa7\xfd\x2f\x52\x0d\xe6\x63\x06\x35\xd6\x79\x45\x79\x39\xb3\x11\xca\xd0\xb3\x93\x5c\xf0\x3b\x87\xf1\x66\x73\x0d\xdd\x61\x4c\x3c\xea\xd6\xae\xa7\xee\x76\xab\xf5\x0e\xad\xd0\xea\xed\xfd\x75\x72\x0a\xe7\xa6\x5e\xb8\x12\x3b\x1c\x1a\x9f\x7f\x81\x1f\xc5\x66\x0a\xf2\x6e\xb5\x55\x02\xb3\x75\x68\x5e\x39\x27\x70\x61\x0e\x11\x1d\xaa\xec\x86\x23\xee\x7b\x84\x35\x6a\x2c\x4b\xca\x7b\x23\xc7\xef\xa6\x46\xfb\x35\x57\xbc\xdd\x92\xc7\x80\x3d\x9d\x5d\xf3\x80\x7b\x8d\xd0\x97\x54\xb4\xda\xe8\x35\xae\xc5\xbd\xbc\x53\x79\xe8\x6f\x08\xe9\x34\x01\x65\x86\xbb\xaf\xf6\xe3\x76\xf5\x39\x1c\x5d\x0d\x40\xfa\x21\xbc\x9e\x6c\x1e\x87\xdd\x40\x2b\xeb\x71\xd5\xf7\xb4\x6f\x93\x06\x34\x5e\xef\x9c\x1f\x77\xbc\x5b\x93\x8b\xcf\xbd\xb3\x86\x95\x8b\xf7\xc5\x35\x2c\x7c\x37\x34\x37\xdf\x4a\x47\x07\xe7\xac\xce\x21\x56\x8b\x79\xa2\x97\xac\x67\x7c\xdf\x9e\x9d\xbf\xf2\x01\xe5\x83\x9e\xef\x34\x37\x03\xc2\x38\x40\x7a\x2b\xbe\x07\x98\x75\xd3\x11\x41\xd6\x98\x4d\x82\x2b\x08\x4f\x8e\x20\x35\xcd\x31\xf3\x63\x87\x16\x4d\x28\x96\x43\x4a\x9a\x11\xa4\x81\x47\xae\xde\x8e\x73\x0a\x45\x13\x6c\xee\xc0\xa7\x09\x81\xdb\x6a\xe8\x96\x51\x86\x2f\x2f\x9a\xe1\x97\xe1\xde\x10\x23\x60\x3a\xc0\xc1\xc1\xe2\xc4\x57\xd5\xc7\x1c\xbc\xc2\x51\x92\x28\x60\x6e\x16\x7e\x0c\x0c\x1f\xf2\xb0\xc8\xf6\x0f\x18\xb9\x69\xdb\xcb\x6d\x40\xcb\x24\x46\xa6\xae\xfa\xf3\xd1\xdb\x4a\xd7\x57\x13\x4c\x68\xab\x46\x83\xc2\x7c\xfd\xce\xb7\x9f\x07\x67\x41\x90\x8e\x9f\x1d\x3c\x18\x76\x6b\xa6\xa8\x0d\x2b\x2e\x08\x13\x34\x99\x7b\x1b\x09\xa9\x41\x5d\xd6\x8c\x7d\x88\x5b\xa1\xbd\xfe\xfd\x69\x67\xc2\xfe\xab\xf7\xea\x66\x59\x55\x6f\x5d\xe0\x48\x15\xcd\x18\x0c\x4a\x6a\xdc\xc4\x15\x2d\x2b\x66\x18\x2f\x7d\x32\xd0\x59\xd1\x2d\x84\xe2\x3a\x66\xb4\xc4\xba\x95\xa0\x92\x5c\x70\xe3\x9c\x16\xb3\xf4\x29\xc5\xc4\xbf\x46\xb5\x67\x7e\xbb\x4b\xe4\x9c\x77\x33\x51\x26\x01\x1f\x62\xf3\x3d\xb7\xa3\xdd\x77\xc6\xb4\x44\xde\x9a\x8b\x50\x7b\x98\x7f\x81\xf1\x24\x90\x8e\x68\xc1\xf4\x44\x49\x09\x3a\xd0\xbf\x46\x9e\xf2\xaf\x25\x6f\xb3\x90\x8e\xa5\x66\x46\xf3\xee\xf6\x1e\x25\x35\x9b\x41\x1f\x02\xdd\xd0\x49\x03\x59\xb8\x0a\x14\xe2\x55\xf8\xd5\x26\xd0\xfc\x56\xcb\x46\xec\xb3\xe5\x6c\x3e\x8d\xd0\xd6\xb5\xdc\x24\x8a\x99\xd4\x42\xcb\x53\x18\x04\x58\xb5\x12\x02\x06\x76\x29\x64\xab\xb7\x8f\xf0\xc5\xc4\x97\xda\xc0\xa5\x8c\xea\x4b\x68\x06\xf4\x73\xff\x92\x75\x23\x28\xb7\x75\xf1\x08\x5c\xab\x65\x33\xf6\x42\x59\x5b\x0f\xa7\x95\xc6\x9a\xe6\xd7\x3b\x4f\x27\x0b\x49\x02\xf9\x16\x6e\x60\x85\xc8\x5b\x05\xe4\xce\x9b\xcc\x6a\xb6\x4c\x24\x2e\x03\x77\xfa\x0c\x9e\xb6\x6f\x5b\x60\x61\x0a\x0f\xc9\x87\xf9\x05\x05\x78\x7e\x76\x4f\xb6\xc5\x34\xa8\x72\x29\x94\xaa\x30\x95\x7d\x55\x1e\x16\x16\x81\x3f\x6a\x1d\x8b\x80\xfb\xbf\xc1\xd1\x4f\x09\xe6\x54\xcf\x84\x73\xb7\x4e\x9b\xcd\xbd\xab\x3f\x43\x15\x24\x0d\x0a\x61\xc6\x15\xc0\xd2\x02\xfc\xe0\x2b\x2c\x5e\x3e\xfa\x0c\xc8\xdf\xfc\xd1\xea\x6d\xfb\xea\x5e\xe1\x84\xcc\xc1\xb7\x9d\xfe\x1d\xd5\x83\x5c\x5b\x1f\x7e\xd6\x40\x28\x8e\x1a\x49\xb9\xee\x1e\x3c\x3f\xde\x0d\xd4\xe1\x0d\xc7\x96\xc5\xb8\xc2\xf9\x21\xc1\x85\xb6\x43\xa6\xcd\xd9\xe4\xeb\xd7\xeb\x7c\xce\xe9\xe3\xc3\x54\xf1\x6e\xda\xe4\xae\xff\x04\x00\x00\xff\xff\xcd\xde\x14\x35\x68\x17\x00\x00") -func distAssetsVendor74b43ac401038fb6d346e85abd3bb536CssBytes() ([]byte, error) { +func distAssetsVendorD8602bc1ee5a13b26e7066b76b62d063CssBytes() ([]byte, error) { return bindataRead( - _distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css, - "dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css", + _distAssetsVendorD8602bc1ee5a13b26e7066b76b62d063Css, + "dist/assets/vendor-d8602bc1ee5a13b26e7066b76b62d063.css", ) } -func distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css() (*asset, error) { - bytes, err := distAssetsVendor74b43ac401038fb6d346e85abd3bb536CssBytes() +func distAssetsVendorD8602bc1ee5a13b26e7066b76b62d063Css() (*asset, error) { + bytes, err := distAssetsVendorD8602bc1ee5a13b26e7066b76b62d063CssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css", size: 5346, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} + info := bindataFileInfo{name: "dist/assets/vendor-d8602bc1ee5a13b26e7066b76b62d063.css", size: 5992, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -408,7 +408,7 @@ func distImagesIconsWarningSvg() (*asset, error) { return a, nil } -var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x51\x6f\xa3\xb8\x13\xc0\xdf\xfb\x29\xf8\x23\xe5\xed\x4f\x01\x43\x20\x91\x20\x52\xae\xa1\xab\x9e\x4e\x69\x36\x4d\xef\x76\x9f\x2a\x63\x8f\xc1\x57\x63\x73\xb6\x49\x9b\x6f\x7f\x22\x24\x2c\xbb\xd7\x5b\xdd\x53\x02\xfe\xcd\xcf\x9e\x61\x3c\xd9\xff\x36\x8f\x77\x87\xaf\xbb\xc2\xa9\x6d\x23\x56\x37\xd9\xf0\xe3\x38\x59\x0d\x98\xf6\x7f\x1c\x27\x6b\xc0\x62\x87\xd4\x58\x1b\xb0\xb9\xdb\x59\xe6\x2d\xdc\xe9\x52\x6d\x6d\xeb\xc1\x5f\x1d\x3f\xe6\xee\x17\xef\x79\xed\xdd\xa9\xa6\xc5\x96\x97\x02\x5c\x87\x28\x69\x41\xda\xdc\x7d\x28\x72\xa0\x15\x5c\x23\x2d\xb7\x02\x56\x5b\xd5\x60\x9a\xf9\xc3\xc3\x44\x29\x71\x03\xb9\x4b\xc1\x10\xcd\x5b\xcb\x95\x9c\x88\xdc\x7f\x82\x47\x0e\x6f\xad\xd2\x76\x42\xbd\x71\x6a\xeb\x9c\xc2\x91\x13\xf0\xce\x0f\xff\x77\xb8\xe4\x96\x63\xe1\x19\x82\x05\xe4\xa1\xbb\xba\x39\x9b\x6e\xa6\x2a\xd9\x9f\xc8\xeb\xb8\x4f\x94\x64\xbc\xf2\x41\x1e\xb9\x56\xb2\x01\x39\xb5\xcf\xd2\x5f\x66\x08\x35\x8a\x76\x02\x76\x1a\x18\x7f\x9f\x21\x34\x8b\xd6\x33\x84\xae\x82\xfe\x05\xba\x9b\x21\x34\x31\x8c\x50\xab\x15\xed\x48\x9f\xd8\x88\x69\xa5\xec\xf3\xfe\xb7\x11\x99\xa1\xfb\x5e\x72\x3f\x02\x42\x11\xdc\x47\x1c\x4e\x2d\x8c\x14\xee\xac\x1a\x89\xa2\x29\x41\x17\xdb\xdf\x2f\xab\xe7\x33\xde\x17\xeb\xc3\xf3\xbe\x78\xfa\xf6\x2e\xdd\x5c\xe8\x2f\x87\x62\xbb\x79\xd9\xed\x1f\x0f\x8f\x7d\x0b\x3c\x4d\xc3\x36\xd8\x5e\x36\x61\x58\x18\x18\x83\x5e\x7e\xfd\xfc\x5c\xec\xbf\xbe\x3c\x6c\x0f\xc5\xa7\xfd\xfa\xf0\xf0\xb8\x1d\x30\xab\xbb\x6f\xd4\x7a\xb7\x9b\xca\x4a\xa1\xc8\x2b\x97\xd5\xe7\x0e\x34\x07\x33\x09\x38\xd3\x0d\xd7\xb8\x82\x27\x02\x12\x6b\xae\xc6\xd4\x4c\x83\x85\xb8\x13\x9d\xb1\xa0\xc7\x14\x07\xf6\x0f\x6e\xeb\x2d\x6e\xc0\xb4\x98\xfc\x9b\xaf\x67\x0e\xea\x15\xe4\x4f\xd6\xf7\x50\x71\xf5\x1d\x70\xcd\x00\xfa\x52\x7a\x44\x70\x6f\xa0\xa7\xe9\x74\x86\xcb\x6a\xa7\xd5\xfb\xe9\x47\x73\x67\x60\x03\x0c\x77\xc2\xee\xb0\x31\xb6\xd6\xaa\xab\xea\x0f\xf5\xef\x7d\xbb\xae\xdb\x56\xf0\xe1\xa3\x7e\x12\xaa\xc4\xe2\xfb\x8a\xbb\x8e\x7f\xe9\xd0\x4c\x70\xf9\xea\x68\x10\xb9\x6b\xec\x49\x80\xa9\x01\xac\xeb\xd4\x1a\x58\xee\xfa\x1d\xf7\xb1\x31\x60\x8d\x7f\x04\x49\x95\xf6\xd2\xb8\x8c\x23\x4c\xe2\x20\x0c\xa2\x05\x2b\x13\x1a\xc5\x09\x2c\xe6\xb8\xa4\x51\x59\xce\xa3\xe4\x96\x18\x73\xbd\x45\xff\xd1\x7c\xed\x6a\x0f\x31\x06\x2c\x4c\x81\x95\x25\x89\xa3\x24\x5c\x06\x88\x26\x84\x84\x34\x46\x04\x50\xb9\xf8\xd8\xcd\x49\x7f\x85\xed\xa9\x85\xdc\xe5\x0d\xae\xc0\x6f\x65\x35\xdd\xc6\x67\xf8\xd8\x43\x5e\x48\xd0\x1c\xa5\x38\xc5\x41\x4a\xc3\x28\x00\x52\x62\x46\x20\x9d\x43\x9c\x84\x73\x9c\x2c\x6f\xcf\x81\xd7\xc2\xf4\x93\xca\xbf\x8e\xaa\xac\x54\xf4\x34\x6c\x7d\x29\xdb\x30\x3e\x1c\xa3\xc9\x47\x65\x8a\x62\x92\xa4\x31\x5b\xc6\x6c\x01\x74\x1e\x93\x25\x89\x02\xc4\xd2\x70\xb1\x4c\x96\xf3\x30\x62\xb7\x7f\x1a\x77\x95\xf9\x83\x64\xf5\x53\xe3\x58\x9e\x88\xcd\x31\xa6\xb0\xc0\xcb\x98\xe0\x65\x9c\xd0\x18\x51\x56\x06\xb8\x4c\x03\xc6\x00\x82\x1f\x9c\x83\x94\xf2\xa3\xc3\x69\xee\x0e\x4d\x57\x62\xc3\x89\x47\xb5\x6a\xa9\x7a\x93\xde\x9b\xd2\x4d\xad\x04\xf4\x61\x94\x1f\xcf\x89\xfa\x43\xa6\x99\x3f\x8c\xeb\xbf\x03\x00\x00\xff\xff\xb4\x7f\x01\xeb\xc6\x05\x00\x00") +var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x51\x73\xa3\x36\x10\x80\xdf\xf3\x2b\x28\x33\x7e\x2b\x01\x64\x1b\x9c\x19\xe3\x19\x37\x76\x6e\xd2\xe9\x38\x3e\xc7\x69\xef\x9e\x32\x8b\xb4\x02\x35\x42\xa2\x92\x70\xe2\x7f\xdf\xc1\xd8\x1c\x77\x4d\x33\xf7\x64\x83\xbe\xfd\xa4\x5d\x56\x3b\xff\x65\xf5\x70\xbb\xff\xba\x5d\x7b\xa5\xab\xe4\xe2\x6a\xde\xfd\x78\xde\xbc\x44\x60\xed\x1f\xcf\x9b\x57\xe8\xc0\xa3\x25\x18\x8b\x2e\xf3\x1b\xc7\x83\x99\x3f\x5c\x2a\x9d\xab\x03\xfc\xa7\x11\x87\xcc\xff\x12\x3c\x2d\x83\x5b\x5d\xd5\xe0\x44\x2e\xd1\xf7\xa8\x56\x0e\x95\xcb\xfc\xfb\x75\x86\xac\xc0\x4b\xa4\x13\x4e\xe2\x62\xa3\x2b\x60\xf3\xb0\x7b\x18\x28\x15\x54\x98\xf9\x0c\x2d\x35\xa2\x76\x42\xab\x81\xc8\xff\x2f\x78\x10\xf8\x5a\x6b\xe3\x06\xd4\xab\x60\xae\xcc\x18\x1e\x04\xc5\xe0\xf4\xf0\xab\x27\x94\x70\x02\x64\x60\x29\x48\xcc\x62\x7f\x71\x75\x32\x5d\x0d\x55\xaa\x3d\x51\xd0\x88\x90\x6a\xc5\x45\x11\xa2\x3a\x08\xa3\x55\x85\x6a\x68\x1f\xa5\xbf\x8d\x08\xa9\x34\x6b\x24\x6e\x0d\x72\xf1\x36\x22\x64\x34\x5e\x8e\x08\xb9\x08\xda\x17\xe4\x76\x44\xc8\xc0\xd0\x43\xb5\xd1\xac\xa1\x6d\x62\x3d\x66\xb4\x76\x4f\xbb\x3f\x7a\x64\x44\xee\x5a\xc9\x5d\x0f\x48\x4d\xa1\x8d\xd8\x1f\x6b\xec\x29\x68\x9c\xee\x89\x75\x95\xa3\x59\x6f\xfe\x3c\xaf\x9e\xce\x78\xb7\x5e\xee\x9f\x76\xeb\xc7\x6f\xef\xd2\xd5\x99\xfe\xb2\x5f\x6f\x56\xcf\xdb\xdd\xc3\xfe\xa1\x6d\x81\xc7\x61\xd8\x0a\xdc\x79\x13\x0e\xd2\x62\x1f\xf4\xfc\xfb\xe7\xa7\xf5\xee\xeb\xf3\xfd\x66\xbf\xfe\xb4\x5b\xee\xef\x1f\x36\x1d\xe6\x4c\xf3\x8d\x5a\x6e\xb7\x43\x59\x2e\x35\x7d\x11\xaa\xf8\xdc\xa0\x11\x68\x07\x01\x27\xba\x12\x06\x0a\x7c\xa4\xa8\xc0\x08\xdd\xa7\x66\x2b\x90\xf2\x56\x36\xd6\xa1\xe9\x53\xec\xd8\xbf\x84\x2b\x37\x50\xa1\xad\x81\xfe\x9f\xaf\x65\xf6\xfa\x05\xd5\x07\xeb\x3b\x2c\x84\xfe\x0e\xb8\x64\x80\x6d\x29\x03\x2a\x45\xd0\xd1\xc3\x74\x1a\x2b\x54\xb1\x35\xfa\xed\xf8\xa3\xb9\xb1\xb8\x42\x0e\x8d\x74\x5b\xb0\xd6\x95\x46\x37\x45\xf9\xae\xfe\xad\x6d\xd7\x65\x5d\x4b\xd1\x7d\xd4\x4f\x52\xe7\x20\xbf\xaf\xb8\xef\x85\xe7\x0e\x9d\x4b\xa1\x5e\x3c\x83\x32\xf3\xad\x3b\x4a\xb4\x25\xa2\xf3\xbd\xd2\x20\xcf\xfc\xb0\x11\x21\x58\x8b\xce\x86\x07\x54\x4c\x9b\x80\xcd\x92\x88\xe4\x34\x46\x9c\x42\x3c\xce\x49\x82\x69\x94\x24\x79\x9a\xe4\x09\x61\x51\x32\xbe\xa6\xd6\x5e\x6e\xd1\x4f\x9a\x2f\x5d\x1d\x10\xce\x91\xc7\x29\xf2\x3c\xa7\x93\x71\x12\xdf\x44\x84\x25\x94\xc6\x6c\x42\x28\x92\x7c\xf6\xbe\x5b\xd0\xf6\x0a\xbb\x63\x8d\x99\x2f\x2a\x28\x30\xac\x55\x31\xdc\x26\xe4\x70\x68\xa1\x20\xa6\x64\x4a\x52\x48\x21\x4a\x59\x3c\x8e\x90\xe6\xc0\x29\xa6\x53\x9c\x24\xf1\x14\x92\x9b\xeb\x53\xe0\xa5\x30\xed\xa4\x0a\x2f\xa3\x6a\x9e\x6b\x76\xec\xb6\x3e\x97\xad\x1b\x1f\x9e\x35\xf4\xbd\x32\x4d\x26\x71\x3c\xe1\x38\x63\x29\x00\xe6\x31\xa7\x39\x19\x43\x1c\x91\x88\x93\x84\x8c\x29\xb9\xfe\xdb\xfa\x8b\x79\xd8\x49\x16\x1f\x1a\xfb\xf2\x8c\xf9\x14\x80\xe1\x0c\x6e\x26\x14\x6e\x26\x09\x9b\x10\xc6\xf3\x08\xf2\x34\xe2\x1c\x31\xfa\xc1\xd9\x49\x99\x38\x78\x82\x65\x7e\xd7\x74\x39\x58\x41\x03\x66\x74\xcd\xf4\xab\x0a\x5e\xb5\xa9\x4a\x2d\xb1\x0d\x63\xe2\x70\x4a\x34\xec\x32\x9d\x87\xdd\xb8\xfe\x37\x00\x00\xff\xff\xe1\x10\x24\xbb\xc6\x05\x00\x00") func distIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -503,8 +503,8 @@ var _bindata = map[string]func() (*asset, error){ "dist/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": distAssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs, "dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css": distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css, "dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js": distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js, - "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js": distAssetsVendor34c674f94f8ed54c9c302f718969513fJs, - "dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css": distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css, + "dist/assets/vendor-44114fe8d7aaeb1fcb23a1020f2623c2.js": distAssetsVendor44114fe8d7aaeb1fcb23a1020f2623c2Js, + "dist/assets/vendor-d8602bc1ee5a13b26e7066b76b62d063.css": distAssetsVendorD8602bc1ee5a13b26e7066b76b62d063Css, "dist/crossdomain.xml": distCrossdomainXml, "dist/ember-fetch/fetch-fastboot-5e5d008c8b65b0ac116f7635d0c6c6b9.js": distEmberFetchFetchFastboot5e5d008c8b65b0ac116f7635d0c6c6b9Js, "dist/favicon-1c2527a7a07d130ecbafce75e4615a69.png": distFavicon1c2527a7a07d130ecbafce75e4615a69Png, @@ -565,8 +565,8 @@ var _bintree = &bintree{nil, map[string]*bintree{ "auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": &bintree{distAssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs, map[string]*bintree{}}, "nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css": &bintree{distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css, map[string]*bintree{}}, "nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js": &bintree{distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js, map[string]*bintree{}}, - "vendor-34c674f94f8ed54c9c302f718969513f.js": &bintree{distAssetsVendor34c674f94f8ed54c9c302f718969513fJs, map[string]*bintree{}}, - "vendor-74b43ac401038fb6d346e85abd3bb536.css": &bintree{distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css, map[string]*bintree{}}, + "vendor-44114fe8d7aaeb1fcb23a1020f2623c2.js": &bintree{distAssetsVendor44114fe8d7aaeb1fcb23a1020f2623c2Js, map[string]*bintree{}}, + "vendor-d8602bc1ee5a13b26e7066b76b62d063.css": &bintree{distAssetsVendorD8602bc1ee5a13b26e7066b76b62d063Css, map[string]*bintree{}}, }}, "crossdomain.xml": &bintree{distCrossdomainXml, map[string]*bintree{}}, "ember-fetch": &bintree{nil, map[string]*bintree{ diff --git a/nomad/structs/structs.generated.go b/nomad/structs/structs.generated.go new file mode 100644 index 00000000000..afca3d6f96b --- /dev/null +++ b/nomad/structs/structs.generated.go @@ -0,0 +1,106164 @@ +// +build codec_generated + +// Code generated by codecgen - DO NOT EDIT. + +package structs + +import ( + "errors" + pkg3_acl "github.com/hashicorp/nomad/acl" + pkg1_structs "github.com/hashicorp/nomad/plugins/shared/structs" + pkg2_raft "github.com/hashicorp/raft" + codec1978 "github.com/ugorji/go/codec" + "net" + "runtime" + "strconv" + "time" +) + +const ( + // ----- content types ---- + codecSelferCcUTF8100 = 1 + codecSelferCcRAW100 = 255 + // ----- value types used ---- + codecSelferValueTypeArray100 = 10 + codecSelferValueTypeMap100 = 9 + codecSelferValueTypeString100 = 6 + codecSelferValueTypeInt100 = 2 + codecSelferValueTypeUint100 = 3 + codecSelferValueTypeFloat100 = 4 + codecSelferBitsize100 = uint8(32 << (^uint(0) >> 63)) +) + +var ( + errCodecSelferOnlyMapOrArrayEncodeToStruct100 = errors.New(`only encoded map or array can be decoded into a struct`) +) + +type codecSelfer100 struct{} + +func init() { + if codec1978.GenVersion != 10 { + _, file, _, _ := runtime.Caller(0) + panic("codecgen version mismatch: current: 10, need " + strconv.FormatInt(int64(codec1978.GenVersion), 10) + ". Re-generate file: " + file) + } + if false { + var _ byte = 0 // reference the types, but skip this branch at build/run time + var v0 pkg3_acl.Policy + var v1 pkg1_structs.Attribute + var v2 pkg2_raft.ServerID + var v3 net.IP + var v4 time.Time + _, _, _, _, _ = v0, v1, v2, v3, v4 + } +} + +func (x *BatchFuture) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(0) + } else { + r.WriteMapStart(0) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *BatchFuture) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *BatchFuture) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *BatchFuture) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4 int + var yyb4 bool + var yyhl4 bool = l >= 0 + for { + yyj4++ + if yyhl4 { + yyb4 = yyj4 > l + } else { + yyb4 = r.CheckBreak() + } + if yyb4 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj4-1, "") + } + r.ReadArrayEnd() +} + +func (x Bitmap) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encBitmap((Bitmap)(x), e) + } + } +} + +func (x *Bitmap) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decBitmap((*Bitmap)(x), d) + } +} + +func (x *DeviceAccounter) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Devices == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapDeviceIdTuplePtrtoDeviceAccounterInstance((map[DeviceIdTuple]*DeviceAccounterInstance)(x.Devices), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Devices\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) + } + r.WriteMapElemValue() + if x.Devices == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapDeviceIdTuplePtrtoDeviceAccounterInstance((map[DeviceIdTuple]*DeviceAccounterInstance)(x.Devices), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeviceAccounter) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeviceAccounter) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Devices": + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + if false { + } else { + h.decMapDeviceIdTuplePtrtoDeviceAccounterInstance((*map[DeviceIdTuple]*DeviceAccounterInstance)(&x.Devices), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeviceAccounter) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + if false { + } else { + h.decMapDeviceIdTuplePtrtoDeviceAccounterInstance((*map[DeviceIdTuple]*DeviceAccounterInstance)(&x.Devices), d) + } + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeviceAccounterInstance) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + var yyn3 bool + if x.Device == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Device == nil { + r.EncodeNil() + } else { + x.Device.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Device\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Device`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Device == nil { + r.EncodeNil() + } else { + x.Device.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Instances == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.Instances, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Instances\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Instances`) + } + r.WriteMapElemValue() + if x.Instances == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.Instances, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeviceAccounterInstance) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeviceAccounterInstance) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Device": + if r.TryDecodeAsNil() { + if true && x.Device != nil { + x.Device = nil + } + } else { + if x.Device == nil { + x.Device = new(NodeDeviceResource) + } + + x.Device.CodecDecodeSelf(d) + } + case "Instances": + if r.TryDecodeAsNil() { + x.Instances = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.Instances, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeviceAccounterInstance) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Device != nil { + x.Device = nil + } + } else { + if x.Device == nil { + x.Device = new(NodeDeviceResource) + } + + x.Device.CodecDecodeSelf(d) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Instances = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.Instances, d) + } + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x DiffType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x)) + } + } +} + +func (x *DiffType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + *x = (DiffType)(r.DecodeString()) + } +} + +func (x *JobDiff) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + x.Type.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + x.Type.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Fields\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) + } + r.WriteMapElemValue() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Objects\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) + } + r.WriteMapElemValue() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.TaskGroups == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskGroupDiff(([]*TaskGroupDiff)(x.TaskGroups), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskGroups\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroups`) + } + r.WriteMapElemValue() + if x.TaskGroups == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskGroupDiff(([]*TaskGroupDiff)(x.TaskGroups), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobDiff) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Fields": + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + case "Objects": + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + case "TaskGroups": + if r.TryDecodeAsNil() { + x.TaskGroups = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskGroupDiff((*[]*TaskGroupDiff)(&x.TaskGroups), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskGroups = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskGroupDiff((*[]*TaskGroupDiff)(&x.TaskGroups), d) + } + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *TaskGroupDiff) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + x.Type.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + x.Type.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Fields\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) + } + r.WriteMapElemValue() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Objects\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) + } + r.WriteMapElemValue() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskDiff(([]*TaskDiff)(x.Tasks), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tasks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) + } + r.WriteMapElemValue() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskDiff(([]*TaskDiff)(x.Tasks), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Updates == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringUint64V(x.Updates, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Updates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Updates`) + } + r.WriteMapElemValue() + if x.Updates == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringUint64V(x.Updates, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskGroupDiff) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *TaskGroupDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Fields": + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + case "Objects": + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + case "Tasks": + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskDiff((*[]*TaskDiff)(&x.Tasks), d) + } + } + case "Updates": + if r.TryDecodeAsNil() { + x.Updates = nil + } else { + if false { + } else { + z.F.DecMapStringUint64X(&x.Updates, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskGroupDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskDiff((*[]*TaskDiff)(&x.Tasks), d) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Updates = nil + } else { + if false { + } else { + z.F.DecMapStringUint64X(&x.Updates, d) + } + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x TaskGroupDiffs) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encTaskGroupDiffs((TaskGroupDiffs)(x), e) + } + } +} + +func (x *TaskGroupDiffs) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decTaskGroupDiffs((*TaskGroupDiffs)(x), d) + } +} + +func (x *TaskDiff) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + x.Type.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + x.Type.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Fields\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) + } + r.WriteMapElemValue() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Objects\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) + } + r.WriteMapElemValue() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Annotations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Annotations, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Annotations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) + } + r.WriteMapElemValue() + if x.Annotations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Annotations, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskDiff) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *TaskDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Fields": + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + case "Objects": + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + case "Annotations": + if r.TryDecodeAsNil() { + x.Annotations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Annotations, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Annotations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Annotations, d) + } + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x TaskDiffs) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encTaskDiffs((TaskDiffs)(x), e) + } + } +} + +func (x *TaskDiffs) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decTaskDiffs((*TaskDiffs)(x), d) + } +} + +func (x *ObjectDiff) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + x.Type.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + x.Type.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Fields\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) + } + r.WriteMapElemValue() + if x.Fields == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Objects\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) + } + r.WriteMapElemValue() + if x.Objects == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ObjectDiff) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ObjectDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Fields": + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + case "Objects": + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ObjectDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Fields = nil + } else { + if false { + } else { + h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Objects = nil + } else { + if false { + } else { + h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) + } + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x ObjectDiffs) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encObjectDiffs((ObjectDiffs)(x), e) + } + } +} + +func (x *ObjectDiffs) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decObjectDiffs((*ObjectDiffs)(x), d) + } +} + +func (x *FieldDiff) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + x.Type.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + x.Type.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Old))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Old)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Old\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Old`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Old))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Old)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.New))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.New)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"New\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `New`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.New))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.New)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Annotations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Annotations, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Annotations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) + } + r.WriteMapElemValue() + if x.Annotations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Annotations, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *FieldDiff) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *FieldDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Old": + if r.TryDecodeAsNil() { + x.Old = "" + } else { + x.Old = (string)(r.DecodeString()) + } + case "New": + if r.TryDecodeAsNil() { + x.New = "" + } else { + x.New = (string)(r.DecodeString()) + } + case "Annotations": + if r.TryDecodeAsNil() { + x.Annotations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Annotations, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *FieldDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Old = "" + } else { + x.Old = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.New = "" + } else { + x.New = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Annotations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Annotations, d) + } + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x FieldDiffs) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encFieldDiffs((FieldDiffs)(x), e) + } + } +} + +func (x *FieldDiffs) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decFieldDiffs((*FieldDiffs)(x), d) + } +} + +func (x *NetworkIndex) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AvailNetworks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNetworkResource(([]*NetworkResource)(x.AvailNetworks), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AvailNetworks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AvailNetworks`) + } + r.WriteMapElemValue() + if x.AvailNetworks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNetworkResource(([]*NetworkResource)(x.AvailNetworks), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AvailBandwidth == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.AvailBandwidth, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AvailBandwidth\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AvailBandwidth`) + } + r.WriteMapElemValue() + if x.AvailBandwidth == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.AvailBandwidth, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.UsedPorts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringBitmap((map[string]Bitmap)(x.UsedPorts), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UsedPorts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UsedPorts`) + } + r.WriteMapElemValue() + if x.UsedPorts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringBitmap((map[string]Bitmap)(x.UsedPorts), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.UsedBandwidth == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.UsedBandwidth, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UsedBandwidth\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UsedBandwidth`) + } + r.WriteMapElemValue() + if x.UsedBandwidth == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.UsedBandwidth, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NetworkIndex) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NetworkIndex) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AvailNetworks": + if r.TryDecodeAsNil() { + x.AvailNetworks = nil + } else { + if false { + } else { + h.decSlicePtrtoNetworkResource((*[]*NetworkResource)(&x.AvailNetworks), d) + } + } + case "AvailBandwidth": + if r.TryDecodeAsNil() { + x.AvailBandwidth = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.AvailBandwidth, d) + } + } + case "UsedPorts": + if r.TryDecodeAsNil() { + x.UsedPorts = nil + } else { + if false { + } else { + h.decMapstringBitmap((*map[string]Bitmap)(&x.UsedPorts), d) + } + } + case "UsedBandwidth": + if r.TryDecodeAsNil() { + x.UsedBandwidth = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.UsedBandwidth, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NetworkIndex) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AvailNetworks = nil + } else { + if false { + } else { + h.decSlicePtrtoNetworkResource((*[]*NetworkResource)(&x.AvailNetworks), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AvailBandwidth = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.AvailBandwidth, d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UsedPorts = nil + } else { + if false { + } else { + h.decMapstringBitmap((*map[string]Bitmap)(&x.UsedPorts), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UsedBandwidth = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.UsedBandwidth, d) + } + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *DriverInfo) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Attributes == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Attributes, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Attributes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Attributes`) + } + r.WriteMapElemValue() + if x.Attributes == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Attributes, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Detected)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Detected\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Detected`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Detected)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Healthy)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Healthy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Healthy`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Healthy)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.UpdateTime) + } else if yyxt16 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt16 != nil { + z.EncExtension(x.UpdateTime, yyxt16) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.UpdateTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.UpdateTime) + } else { + z.EncFallback(x.UpdateTime) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UpdateTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UpdateTime`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.UpdateTime) + } else if yyxt17 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt17 != nil { + z.EncExtension(x.UpdateTime, yyxt17) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.UpdateTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.UpdateTime) + } else { + z.EncFallback(x.UpdateTime) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DriverInfo) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DriverInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Attributes": + if r.TryDecodeAsNil() { + x.Attributes = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Attributes, d) + } + } + case "Detected": + if r.TryDecodeAsNil() { + x.Detected = false + } else { + x.Detected = (bool)(r.DecodeBool()) + } + case "Healthy": + if r.TryDecodeAsNil() { + x.Healthy = false + } else { + x.Healthy = (bool)(r.DecodeBool()) + } + case "HealthDescription": + if r.TryDecodeAsNil() { + x.HealthDescription = "" + } else { + x.HealthDescription = (string)(r.DecodeString()) + } + case "UpdateTime": + if r.TryDecodeAsNil() { + x.UpdateTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.UpdateTime = r.DecodeTime() + } else if yyxt10 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt10 != nil { + z.DecExtension(x.UpdateTime, yyxt10) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.UpdateTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.UpdateTime) + } else { + z.DecFallback(&x.UpdateTime, false) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DriverInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Attributes = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Attributes, d) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Detected = false + } else { + x.Detected = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Healthy = false + } else { + x.Healthy = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthDescription = "" + } else { + x.HealthDescription = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UpdateTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.UpdateTime = r.DecodeTime() + } else if yyxt18 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt18 != nil { + z.DecExtension(x.UpdateTime, yyxt18) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.UpdateTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.UpdateTime) + } else { + z.DecFallback(&x.UpdateTime, false) + } + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *RaftServer) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.ID)); yyxt4 != nil { + z.EncExtension(x.ID, yyxt4) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { + z.EncExtension(x.ID, yyxt5) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Node))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Node)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Node\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Node`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Node))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Node)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.Address)); yyxt10 != nil { + z.EncExtension(x.Address, yyxt10) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Address\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Address`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.Address)); yyxt11 != nil { + z.EncExtension(x.Address, yyxt11) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Leader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Leader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Leader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Leader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Voter)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Voter\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Voter`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Voter)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RaftProtocol))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RaftProtocol)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RaftProtocol\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RaftProtocol`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RaftProtocol))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RaftProtocol)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RaftServer) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RaftServer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { + z.DecExtension(x.ID, yyxt5) + } else { + x.ID = (pkg2_raft.ServerID)(r.DecodeString()) + } + } + case "Node": + if r.TryDecodeAsNil() { + x.Node = "" + } else { + x.Node = (string)(r.DecodeString()) + } + case "Address": + if r.TryDecodeAsNil() { + x.Address = "" + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Address)); yyxt8 != nil { + z.DecExtension(x.Address, yyxt8) + } else { + x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) + } + } + case "Leader": + if r.TryDecodeAsNil() { + x.Leader = false + } else { + x.Leader = (bool)(r.DecodeBool()) + } + case "Voter": + if r.TryDecodeAsNil() { + x.Voter = false + } else { + x.Voter = (bool)(r.DecodeBool()) + } + case "RaftProtocol": + if r.TryDecodeAsNil() { + x.RaftProtocol = "" + } else { + x.RaftProtocol = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RaftServer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.ID)); yyxt14 != nil { + z.DecExtension(x.ID, yyxt14) + } else { + x.ID = (pkg2_raft.ServerID)(r.DecodeString()) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Node = "" + } else { + x.Node = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Address = "" + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.Address)); yyxt17 != nil { + z.DecExtension(x.Address, yyxt17) + } else { + x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Leader = false + } else { + x.Leader = (bool)(r.DecodeBool()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Voter = false + } else { + x.Voter = (bool)(r.DecodeBool()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RaftProtocol = "" + } else { + x.RaftProtocol = (string)(r.DecodeString()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *RaftConfigurationResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Servers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoRaftServer(([]*RaftServer)(x.Servers), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Servers\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Servers`) + } + r.WriteMapElemValue() + if x.Servers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoRaftServer(([]*RaftServer)(x.Servers), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RaftConfigurationResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RaftConfigurationResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Servers": + if r.TryDecodeAsNil() { + x.Servers = nil + } else { + if false { + } else { + h.decSlicePtrtoRaftServer((*[]*RaftServer)(&x.Servers), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RaftConfigurationResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Servers = nil + } else { + if false { + } else { + h.decSlicePtrtoRaftServer((*[]*RaftServer)(&x.Servers), d) + } + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *RaftPeerByAddressRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.Address)); yyxt4 != nil { + z.EncExtension(x.Address, yyxt4) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Address\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Address`) + } + r.WriteMapElemValue() + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Address)); yyxt5 != nil { + z.EncExtension(x.Address, yyxt5) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RaftPeerByAddressRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RaftPeerByAddressRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Address": + if r.TryDecodeAsNil() { + x.Address = "" + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Address)); yyxt5 != nil { + z.DecExtension(x.Address, yyxt5) + } else { + x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RaftPeerByAddressRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Address = "" + } else { + if false { + } else if yyxt12 := z.Extension(z.I2Rtid(x.Address)); yyxt12 != nil { + z.DecExtension(x.Address, yyxt12) + } else { + x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *RaftPeerByIDRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.ID)); yyxt4 != nil { + z.EncExtension(x.ID, yyxt4) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { + z.EncExtension(x.ID, yyxt5) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RaftPeerByIDRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RaftPeerByIDRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { + z.DecExtension(x.ID, yyxt5) + } else { + x.ID = (pkg2_raft.ServerID)(r.DecodeString()) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RaftPeerByIDRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + if false { + } else if yyxt12 := z.Extension(z.I2Rtid(x.ID)); yyxt12 != nil { + z.DecExtension(x.ID, yyxt12) + } else { + x.ID = (pkg2_raft.ServerID)(r.DecodeString()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *AutopilotSetConfigRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Datacenter\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy7 := &x.Config + yy7.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Config\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) + } + r.WriteMapElemValue() + yy9 := &x.Config + yy9.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.CAS)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CAS\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CAS`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.CAS)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AutopilotSetConfigRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AutopilotSetConfigRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Datacenter": + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + case "Config": + if r.TryDecodeAsNil() { + x.Config = AutopilotConfig{} + } else { + x.Config.CodecDecodeSelf(d) + } + case "CAS": + if r.TryDecodeAsNil() { + x.CAS = false + } else { + x.CAS = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AutopilotSetConfigRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Config = AutopilotConfig{} + } else { + x.Config.CodecDecodeSelf(d) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CAS = false + } else { + x.CAS = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *AutopilotConfig) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.CleanupDeadServers)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CleanupDeadServers\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CleanupDeadServers`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.CleanupDeadServers)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt7 != nil { + z.EncExtension(x.ServerStabilizationTime, yyxt7) + } else { + r.EncodeInt(int64(x.ServerStabilizationTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ServerStabilizationTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ServerStabilizationTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt8 != nil { + z.EncExtension(x.ServerStabilizationTime, yyxt8) + } else { + r.EncodeInt(int64(x.ServerStabilizationTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt10 != nil { + z.EncExtension(x.LastContactThreshold, yyxt10) + } else { + r.EncodeInt(int64(x.LastContactThreshold)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContactThreshold\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContactThreshold`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt11 != nil { + z.EncExtension(x.LastContactThreshold, yyxt11) + } else { + r.EncodeInt(int64(x.LastContactThreshold)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MaxTrailingLogs)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxTrailingLogs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxTrailingLogs`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MaxTrailingLogs)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.EnableRedundancyZones)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EnableRedundancyZones\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EnableRedundancyZones`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.EnableRedundancyZones)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.DisableUpgradeMigration)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DisableUpgradeMigration\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DisableUpgradeMigration`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.DisableUpgradeMigration)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.EnableCustomUpgrades)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EnableCustomUpgrades\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EnableCustomUpgrades`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.EnableCustomUpgrades)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AutopilotConfig) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AutopilotConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "CleanupDeadServers": + if r.TryDecodeAsNil() { + x.CleanupDeadServers = false + } else { + x.CleanupDeadServers = (bool)(r.DecodeBool()) + } + case "ServerStabilizationTime": + if r.TryDecodeAsNil() { + x.ServerStabilizationTime = 0 + } else { + if false { + } else if yyxt6 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt6 != nil { + z.DecExtension(x.ServerStabilizationTime, yyxt6) + } else { + x.ServerStabilizationTime = (time.Duration)(r.DecodeInt64()) + } + } + case "LastContactThreshold": + if r.TryDecodeAsNil() { + x.LastContactThreshold = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt8 != nil { + z.DecExtension(x.LastContactThreshold, yyxt8) + } else { + x.LastContactThreshold = (time.Duration)(r.DecodeInt64()) + } + } + case "MaxTrailingLogs": + if r.TryDecodeAsNil() { + x.MaxTrailingLogs = 0 + } else { + x.MaxTrailingLogs = (uint64)(r.DecodeUint64()) + } + case "EnableRedundancyZones": + if r.TryDecodeAsNil() { + x.EnableRedundancyZones = false + } else { + x.EnableRedundancyZones = (bool)(r.DecodeBool()) + } + case "DisableUpgradeMigration": + if r.TryDecodeAsNil() { + x.DisableUpgradeMigration = false + } else { + x.DisableUpgradeMigration = (bool)(r.DecodeBool()) + } + case "EnableCustomUpgrades": + if r.TryDecodeAsNil() { + x.EnableCustomUpgrades = false + } else { + x.EnableCustomUpgrades = (bool)(r.DecodeBool()) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AutopilotConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CleanupDeadServers = false + } else { + x.CleanupDeadServers = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ServerStabilizationTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt18 != nil { + z.DecExtension(x.ServerStabilizationTime, yyxt18) + } else { + x.ServerStabilizationTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LastContactThreshold = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt20 != nil { + z.DecExtension(x.LastContactThreshold, yyxt20) + } else { + x.LastContactThreshold = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxTrailingLogs = 0 + } else { + x.MaxTrailingLogs = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EnableRedundancyZones = false + } else { + x.EnableRedundancyZones = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DisableUpgradeMigration = false + } else { + x.DisableUpgradeMigration = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EnableCustomUpgrades = false + } else { + x.EnableCustomUpgrades = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *SchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy4 := &x.PreemptionConfig + yy4.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptionConfig\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptionConfig`) + } + r.WriteMapElemValue() + yy6 := &x.PreemptionConfig + yy6.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SchedulerConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "PreemptionConfig": + if r.TryDecodeAsNil() { + x.PreemptionConfig = PreemptionConfig{} + } else { + x.PreemptionConfig.CodecDecodeSelf(d) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptionConfig = PreemptionConfig{} + } else { + x.PreemptionConfig.CodecDecodeSelf(d) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *SchedulerConfigurationResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.SchedulerConfig == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.SchedulerConfig == nil { + r.EncodeNil() + } else { + x.SchedulerConfig.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SchedulerConfig\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulerConfig`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.SchedulerConfig == nil { + r.EncodeNil() + } else { + x.SchedulerConfig.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SchedulerConfigurationResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SchedulerConfigurationResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "SchedulerConfig": + if r.TryDecodeAsNil() { + if true && x.SchedulerConfig != nil { + x.SchedulerConfig = nil + } + } else { + if x.SchedulerConfig == nil { + x.SchedulerConfig = new(SchedulerConfiguration) + } + + x.SchedulerConfig.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SchedulerConfigurationResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.SchedulerConfig != nil { + x.SchedulerConfig = nil + } + } else { + if x.SchedulerConfig == nil { + x.SchedulerConfig = new(SchedulerConfiguration) + } + + x.SchedulerConfig.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *SchedulerSetConfigurationResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Updated)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Updated\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Updated`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Updated)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SchedulerSetConfigurationResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SchedulerSetConfigurationResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Updated": + if r.TryDecodeAsNil() { + x.Updated = false + } else { + x.Updated = (bool)(r.DecodeBool()) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SchedulerSetConfigurationResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Updated = false + } else { + x.Updated = (bool)(r.DecodeBool()) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *PreemptionConfig) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.SystemSchedulerEnabled)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SystemSchedulerEnabled\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SystemSchedulerEnabled`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.SystemSchedulerEnabled)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.BatchSchedulerEnabled)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"BatchSchedulerEnabled\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `BatchSchedulerEnabled`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.BatchSchedulerEnabled)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.ServiceSchedulerEnabled)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ServiceSchedulerEnabled\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ServiceSchedulerEnabled`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.ServiceSchedulerEnabled)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PreemptionConfig) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PreemptionConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "SystemSchedulerEnabled": + if r.TryDecodeAsNil() { + x.SystemSchedulerEnabled = false + } else { + x.SystemSchedulerEnabled = (bool)(r.DecodeBool()) + } + case "BatchSchedulerEnabled": + if r.TryDecodeAsNil() { + x.BatchSchedulerEnabled = false + } else { + x.BatchSchedulerEnabled = (bool)(r.DecodeBool()) + } + case "ServiceSchedulerEnabled": + if r.TryDecodeAsNil() { + x.ServiceSchedulerEnabled = false + } else { + x.ServiceSchedulerEnabled = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PreemptionConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SystemSchedulerEnabled = false + } else { + x.SystemSchedulerEnabled = (bool)(r.DecodeBool()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.BatchSchedulerEnabled = false + } else { + x.BatchSchedulerEnabled = (bool)(r.DecodeBool()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ServiceSchedulerEnabled = false + } else { + x.ServiceSchedulerEnabled = (bool)(r.DecodeBool()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *SchedulerSetConfigRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy4 := &x.Config + yy4.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Config\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) + } + r.WriteMapElemValue() + yy6 := &x.Config + yy6.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.CAS)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CAS\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CAS`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.CAS)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SchedulerSetConfigRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SchedulerSetConfigRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Config": + if r.TryDecodeAsNil() { + x.Config = SchedulerConfiguration{} + } else { + x.Config.CodecDecodeSelf(d) + } + case "CAS": + if r.TryDecodeAsNil() { + x.CAS = false + } else { + x.CAS = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SchedulerSetConfigRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Config = SchedulerConfiguration{} + } else { + x.Config.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CAS = false + } else { + x.CAS = (bool)(r.DecodeBool()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ServiceCheck) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(18) + } else { + r.WriteMapStart(18) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Command))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Command)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Command\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Command`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Command))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Command)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Args == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Args, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Args\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Args`) + } + r.WriteMapElemValue() + if x.Args == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Args, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Path\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Path`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Protocol))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Protocol)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Protocol\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Protocol`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Protocol))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Protocol)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PortLabel\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PortLabel`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AddressMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AddressMode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt28 := z.Extension(z.I2Rtid(x.Interval)); yyxt28 != nil { + z.EncExtension(x.Interval, yyxt28) + } else { + r.EncodeInt(int64(x.Interval)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Interval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Interval`) + } + r.WriteMapElemValue() + if false { + } else if yyxt29 := z.Extension(z.I2Rtid(x.Interval)); yyxt29 != nil { + z.EncExtension(x.Interval, yyxt29) + } else { + r.EncodeInt(int64(x.Interval)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt31 := z.Extension(z.I2Rtid(x.Timeout)); yyxt31 != nil { + z.EncExtension(x.Timeout, yyxt31) + } else { + r.EncodeInt(int64(x.Timeout)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Timeout\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Timeout`) + } + r.WriteMapElemValue() + if false { + } else if yyxt32 := z.Extension(z.I2Rtid(x.Timeout)); yyxt32 != nil { + z.EncExtension(x.Timeout, yyxt32) + } else { + r.EncodeInt(int64(x.Timeout)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.InitialStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.InitialStatus)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"InitialStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `InitialStatus`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.InitialStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.InitialStatus)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.TLSSkipVerify)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TLSSkipVerify\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TLSSkipVerify`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.TLSSkipVerify)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Method\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Method`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Header == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicestring((map[string][]string)(x.Header), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Header\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Header`) + } + r.WriteMapElemValue() + if x.Header == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicestring((map[string][]string)(x.Header), e) + } + } + } + var yyn45 bool + if x.CheckRestart == nil { + yyn45 = true + goto LABEL45 + } + LABEL45: + if yyr2 || yy2arr2 { + if yyn45 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.CheckRestart == nil { + r.EncodeNil() + } else { + x.CheckRestart.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CheckRestart\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CheckRestart`) + } + r.WriteMapElemValue() + if yyn45 { + r.EncodeNil() + } else { + if x.CheckRestart == nil { + r.EncodeNil() + } else { + x.CheckRestart.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GRPCService))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GRPCService)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"GRPCService\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `GRPCService`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GRPCService))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GRPCService)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.GRPCUseTLS)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"GRPCUseTLS\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `GRPCUseTLS`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.GRPCUseTLS)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskName\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskName`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ServiceCheck) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ServiceCheck) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Command": + if r.TryDecodeAsNil() { + x.Command = "" + } else { + x.Command = (string)(r.DecodeString()) + } + case "Args": + if r.TryDecodeAsNil() { + x.Args = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Args, d) + } + } + case "Path": + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + case "Protocol": + if r.TryDecodeAsNil() { + x.Protocol = "" + } else { + x.Protocol = (string)(r.DecodeString()) + } + case "PortLabel": + if r.TryDecodeAsNil() { + x.PortLabel = "" + } else { + x.PortLabel = (string)(r.DecodeString()) + } + case "AddressMode": + if r.TryDecodeAsNil() { + x.AddressMode = "" + } else { + x.AddressMode = (string)(r.DecodeString()) + } + case "Interval": + if r.TryDecodeAsNil() { + x.Interval = 0 + } else { + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.Interval)); yyxt14 != nil { + z.DecExtension(x.Interval, yyxt14) + } else { + x.Interval = (time.Duration)(r.DecodeInt64()) + } + } + case "Timeout": + if r.TryDecodeAsNil() { + x.Timeout = 0 + } else { + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.Timeout)); yyxt16 != nil { + z.DecExtension(x.Timeout, yyxt16) + } else { + x.Timeout = (time.Duration)(r.DecodeInt64()) + } + } + case "InitialStatus": + if r.TryDecodeAsNil() { + x.InitialStatus = "" + } else { + x.InitialStatus = (string)(r.DecodeString()) + } + case "TLSSkipVerify": + if r.TryDecodeAsNil() { + x.TLSSkipVerify = false + } else { + x.TLSSkipVerify = (bool)(r.DecodeBool()) + } + case "Method": + if r.TryDecodeAsNil() { + x.Method = "" + } else { + x.Method = (string)(r.DecodeString()) + } + case "Header": + if r.TryDecodeAsNil() { + x.Header = nil + } else { + if false { + } else { + h.decMapstringSlicestring((*map[string][]string)(&x.Header), d) + } + } + case "CheckRestart": + if r.TryDecodeAsNil() { + if true && x.CheckRestart != nil { + x.CheckRestart = nil + } + } else { + if x.CheckRestart == nil { + x.CheckRestart = new(CheckRestart) + } + + x.CheckRestart.CodecDecodeSelf(d) + } + case "GRPCService": + if r.TryDecodeAsNil() { + x.GRPCService = "" + } else { + x.GRPCService = (string)(r.DecodeString()) + } + case "GRPCUseTLS": + if r.TryDecodeAsNil() { + x.GRPCUseTLS = false + } else { + x.GRPCUseTLS = (bool)(r.DecodeBool()) + } + case "TaskName": + if r.TryDecodeAsNil() { + x.TaskName = "" + } else { + x.TaskName = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ServiceCheck) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj26 int + var yyb26 bool + var yyhl26 bool = l >= 0 + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Command = "" + } else { + x.Command = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Args = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Args, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Protocol = "" + } else { + x.Protocol = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PortLabel = "" + } else { + x.PortLabel = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AddressMode = "" + } else { + x.AddressMode = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Interval = 0 + } else { + if false { + } else if yyxt37 := z.Extension(z.I2Rtid(x.Interval)); yyxt37 != nil { + z.DecExtension(x.Interval, yyxt37) + } else { + x.Interval = (time.Duration)(r.DecodeInt64()) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Timeout = 0 + } else { + if false { + } else if yyxt39 := z.Extension(z.I2Rtid(x.Timeout)); yyxt39 != nil { + z.DecExtension(x.Timeout, yyxt39) + } else { + x.Timeout = (time.Duration)(r.DecodeInt64()) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.InitialStatus = "" + } else { + x.InitialStatus = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TLSSkipVerify = false + } else { + x.TLSSkipVerify = (bool)(r.DecodeBool()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Method = "" + } else { + x.Method = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Header = nil + } else { + if false { + } else { + h.decMapstringSlicestring((*map[string][]string)(&x.Header), d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.CheckRestart != nil { + x.CheckRestart = nil + } + } else { + if x.CheckRestart == nil { + x.CheckRestart = new(CheckRestart) + } + + x.CheckRestart.CodecDecodeSelf(d) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.GRPCService = "" + } else { + x.GRPCService = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.GRPCUseTLS = false + } else { + x.GRPCUseTLS = (bool)(r.DecodeBool()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskName = "" + } else { + x.TaskName = (string)(r.DecodeString()) + } + for { + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj26-1, "") + } + r.ReadArrayEnd() +} + +func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PortLabel\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PortLabel`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AddressMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AddressMode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Tags, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tags\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tags`) + } + r.WriteMapElemValue() + if x.Tags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Tags, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.CanaryTags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.CanaryTags, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CanaryTags\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CanaryTags`) + } + r.WriteMapElemValue() + if x.CanaryTags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.CanaryTags, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Checks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoServiceCheck(([]*ServiceCheck)(x.Checks), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Checks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Checks`) + } + r.WriteMapElemValue() + if x.Checks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoServiceCheck(([]*ServiceCheck)(x.Checks), e) + } + } + } + var yyn21 bool + if x.Connect == nil { + yyn21 = true + goto LABEL21 + } + LABEL21: + if yyr2 || yy2arr2 { + if yyn21 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Connect == nil { + r.EncodeNil() + } else { + x.Connect.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Connect\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Connect`) + } + r.WriteMapElemValue() + if yyn21 { + r.EncodeNil() + } else { + if x.Connect == nil { + r.EncodeNil() + } else { + x.Connect.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Meta\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) + } + r.WriteMapElemValue() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "PortLabel": + if r.TryDecodeAsNil() { + x.PortLabel = "" + } else { + x.PortLabel = (string)(r.DecodeString()) + } + case "AddressMode": + if r.TryDecodeAsNil() { + x.AddressMode = "" + } else { + x.AddressMode = (string)(r.DecodeString()) + } + case "Tags": + if r.TryDecodeAsNil() { + x.Tags = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Tags, d) + } + } + case "CanaryTags": + if r.TryDecodeAsNil() { + x.CanaryTags = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.CanaryTags, d) + } + } + case "Checks": + if r.TryDecodeAsNil() { + x.Checks = nil + } else { + if false { + } else { + h.decSlicePtrtoServiceCheck((*[]*ServiceCheck)(&x.Checks), d) + } + } + case "Connect": + if r.TryDecodeAsNil() { + if true && x.Connect != nil { + x.Connect = nil + } + } else { + if x.Connect == nil { + x.Connect = new(ConsulConnect) + } + + x.Connect.CodecDecodeSelf(d) + } + case "Meta": + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj16 int + var yyb16 bool + var yyhl16 bool = l >= 0 + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PortLabel = "" + } else { + x.PortLabel = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AddressMode = "" + } else { + x.AddressMode = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tags = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Tags, d) + } + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CanaryTags = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.CanaryTags, d) + } + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Checks = nil + } else { + if false { + } else { + h.decSlicePtrtoServiceCheck((*[]*ServiceCheck)(&x.Checks), d) + } + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Connect != nil { + x.Connect = nil + } + } else { + if x.Connect == nil { + x.Connect = new(ConsulConnect) + } + + x.Connect.CodecDecodeSelf(d) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + for { + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj16-1, "") + } + r.ReadArrayEnd() +} + +func (x *ConsulConnect) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Native)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Native\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Native`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Native)) + } + } + var yyn6 bool + if x.SidecarService == nil { + yyn6 = true + goto LABEL6 + } + LABEL6: + if yyr2 || yy2arr2 { + if yyn6 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.SidecarService == nil { + r.EncodeNil() + } else { + x.SidecarService.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SidecarService\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SidecarService`) + } + r.WriteMapElemValue() + if yyn6 { + r.EncodeNil() + } else { + if x.SidecarService == nil { + r.EncodeNil() + } else { + x.SidecarService.CodecEncodeSelf(e) + } + } + } + var yyn9 bool + if x.SidecarTask == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.SidecarTask == nil { + r.EncodeNil() + } else { + x.SidecarTask.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SidecarTask\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SidecarTask`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.SidecarTask == nil { + r.EncodeNil() + } else { + x.SidecarTask.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ConsulConnect) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ConsulConnect) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Native": + if r.TryDecodeAsNil() { + x.Native = false + } else { + x.Native = (bool)(r.DecodeBool()) + } + case "SidecarService": + if r.TryDecodeAsNil() { + if true && x.SidecarService != nil { + x.SidecarService = nil + } + } else { + if x.SidecarService == nil { + x.SidecarService = new(ConsulSidecarService) + } + + x.SidecarService.CodecDecodeSelf(d) + } + case "SidecarTask": + if r.TryDecodeAsNil() { + if true && x.SidecarTask != nil { + x.SidecarTask = nil + } + } else { + if x.SidecarTask == nil { + x.SidecarTask = new(SidecarTask) + } + + x.SidecarTask.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ConsulConnect) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Native = false + } else { + x.Native = (bool)(r.DecodeBool()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.SidecarService != nil { + x.SidecarService = nil + } + } else { + if x.SidecarService == nil { + x.SidecarService = new(ConsulSidecarService) + } + + x.SidecarService.CodecDecodeSelf(d) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.SidecarTask != nil { + x.SidecarTask = nil + } + } else { + if x.SidecarTask == nil { + x.SidecarTask = new(SidecarTask) + } + + x.SidecarTask.CodecDecodeSelf(d) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *ConsulSidecarService) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Tags, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tags\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tags`) + } + r.WriteMapElemValue() + if x.Tags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Tags, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Port))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Port)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Port\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Port`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Port))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Port)) + } + } + } + var yyn9 bool + if x.Proxy == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Proxy == nil { + r.EncodeNil() + } else { + x.Proxy.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Proxy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Proxy`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.Proxy == nil { + r.EncodeNil() + } else { + x.Proxy.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ConsulSidecarService) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ConsulSidecarService) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Tags": + if r.TryDecodeAsNil() { + x.Tags = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Tags, d) + } + } + case "Port": + if r.TryDecodeAsNil() { + x.Port = "" + } else { + x.Port = (string)(r.DecodeString()) + } + case "Proxy": + if r.TryDecodeAsNil() { + if true && x.Proxy != nil { + x.Proxy = nil + } + } else { + if x.Proxy == nil { + x.Proxy = new(ConsulProxy) + } + + x.Proxy.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ConsulSidecarService) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tags = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Tags, d) + } + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Port = "" + } else { + x.Port = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Proxy != nil { + x.Proxy = nil + } + } else { + if x.Proxy == nil { + x.Proxy = new(ConsulProxy) + } + + x.Proxy.CodecDecodeSelf(d) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *SidecarTask) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(11) + } else { + r.WriteMapStart(11) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Driver\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Driver`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.User))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"User\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `User`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.User))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Config == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntfV(x.Config, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Config\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) + } + r.WriteMapElemValue() + if x.Config == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntfV(x.Config, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Env == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Env, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Env\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Env`) + } + r.WriteMapElemValue() + if x.Env == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Env, e) + } + } + } + var yyn18 bool + if x.Resources == nil { + yyn18 = true + goto LABEL18 + } + LABEL18: + if yyr2 || yy2arr2 { + if yyn18 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Resources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) + } + r.WriteMapElemValue() + if yyn18 { + r.EncodeNil() + } else { + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Meta\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) + } + r.WriteMapElemValue() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } + var yyn24 bool + if x.KillTimeout == nil { + yyn24 = true + goto LABEL24 + } + LABEL24: + if yyr2 || yy2arr2 { + if yyn24 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.KillTimeout == nil { + r.EncodeNil() + } else { + yy25 := *x.KillTimeout + if false { + } else if yyxt26 := z.Extension(z.I2Rtid(yy25)); yyxt26 != nil { + z.EncExtension(yy25, yyxt26) + } else { + r.EncodeInt(int64(yy25)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KillTimeout\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KillTimeout`) + } + r.WriteMapElemValue() + if yyn24 { + r.EncodeNil() + } else { + if x.KillTimeout == nil { + r.EncodeNil() + } else { + yy27 := *x.KillTimeout + if false { + } else if yyxt28 := z.Extension(z.I2Rtid(yy27)); yyxt28 != nil { + z.EncExtension(yy27, yyxt28) + } else { + r.EncodeInt(int64(yy27)) + } + } + } + } + var yyn29 bool + if x.LogConfig == nil { + yyn29 = true + goto LABEL29 + } + LABEL29: + if yyr2 || yy2arr2 { + if yyn29 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.LogConfig == nil { + r.EncodeNil() + } else { + x.LogConfig.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LogConfig\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LogConfig`) + } + r.WriteMapElemValue() + if yyn29 { + r.EncodeNil() + } else { + if x.LogConfig == nil { + r.EncodeNil() + } else { + x.LogConfig.CodecEncodeSelf(e) + } + } + } + var yyn32 bool + if x.ShutdownDelay == nil { + yyn32 = true + goto LABEL32 + } + LABEL32: + if yyr2 || yy2arr2 { + if yyn32 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.ShutdownDelay == nil { + r.EncodeNil() + } else { + yy33 := *x.ShutdownDelay + if false { + } else if yyxt34 := z.Extension(z.I2Rtid(yy33)); yyxt34 != nil { + z.EncExtension(yy33, yyxt34) + } else { + r.EncodeInt(int64(yy33)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ShutdownDelay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ShutdownDelay`) + } + r.WriteMapElemValue() + if yyn32 { + r.EncodeNil() + } else { + if x.ShutdownDelay == nil { + r.EncodeNil() + } else { + yy35 := *x.ShutdownDelay + if false { + } else if yyxt36 := z.Extension(z.I2Rtid(yy35)); yyxt36 != nil { + z.EncExtension(yy35, yyxt36) + } else { + r.EncodeInt(int64(yy35)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KillSignal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KillSignal`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SidecarTask) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SidecarTask) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Driver": + if r.TryDecodeAsNil() { + x.Driver = "" + } else { + x.Driver = (string)(r.DecodeString()) + } + case "User": + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = (string)(r.DecodeString()) + } + case "Config": + if r.TryDecodeAsNil() { + x.Config = nil + } else { + if false { + } else { + z.F.DecMapStringIntfX(&x.Config, d) + } + } + case "Env": + if r.TryDecodeAsNil() { + x.Env = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Env, d) + } + } + case "Resources": + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + case "Meta": + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + case "KillTimeout": + if r.TryDecodeAsNil() { + if true && x.KillTimeout != nil { + x.KillTimeout = nil + } + } else { + if x.KillTimeout == nil { + x.KillTimeout = new(time.Duration) + } + + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt15 != nil { + z.DecExtension(x.KillTimeout, yyxt15) + } else { + *x.KillTimeout = (time.Duration)(r.DecodeInt64()) + } + } + case "LogConfig": + if r.TryDecodeAsNil() { + if true && x.LogConfig != nil { + x.LogConfig = nil + } + } else { + if x.LogConfig == nil { + x.LogConfig = new(LogConfig) + } + + x.LogConfig.CodecDecodeSelf(d) + } + case "ShutdownDelay": + if r.TryDecodeAsNil() { + if true && x.ShutdownDelay != nil { + x.ShutdownDelay = nil + } + } else { + if x.ShutdownDelay == nil { + x.ShutdownDelay = new(time.Duration) + } + + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt18 != nil { + z.DecExtension(x.ShutdownDelay, yyxt18) + } else { + *x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) + } + } + case "KillSignal": + if r.TryDecodeAsNil() { + x.KillSignal = "" + } else { + x.KillSignal = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SidecarTask) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj20 int + var yyb20 bool + var yyhl20 bool = l >= 0 + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Driver = "" + } else { + x.Driver = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Config = nil + } else { + if false { + } else { + z.F.DecMapStringIntfX(&x.Config, d) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Env = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Env, d) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.KillTimeout != nil { + x.KillTimeout = nil + } + } else { + if x.KillTimeout == nil { + x.KillTimeout = new(time.Duration) + } + + if false { + } else if yyxt32 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt32 != nil { + z.DecExtension(x.KillTimeout, yyxt32) + } else { + *x.KillTimeout = (time.Duration)(r.DecodeInt64()) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.LogConfig != nil { + x.LogConfig = nil + } + } else { + if x.LogConfig == nil { + x.LogConfig = new(LogConfig) + } + + x.LogConfig.CodecDecodeSelf(d) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.ShutdownDelay != nil { + x.ShutdownDelay = nil + } + } else { + if x.ShutdownDelay == nil { + x.ShutdownDelay = new(time.Duration) + } + + if false { + } else if yyxt35 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt35 != nil { + z.DecExtension(x.ShutdownDelay, yyxt35) + } else { + *x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KillSignal = "" + } else { + x.KillSignal = (string)(r.DecodeString()) + } + for { + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj20-1, "") + } + r.ReadArrayEnd() +} + +func (x *ConsulProxy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LocalServiceAddress))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LocalServiceAddress)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LocalServiceAddress\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LocalServiceAddress`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LocalServiceAddress))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LocalServiceAddress)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.LocalServicePort)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LocalServicePort\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LocalServicePort`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.LocalServicePort)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Upstreams == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSliceConsulUpstream(([]ConsulUpstream)(x.Upstreams), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Upstreams\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Upstreams`) + } + r.WriteMapElemValue() + if x.Upstreams == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSliceConsulUpstream(([]ConsulUpstream)(x.Upstreams), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Config == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntfV(x.Config, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Config\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) + } + r.WriteMapElemValue() + if x.Config == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntfV(x.Config, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ConsulProxy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ConsulProxy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "LocalServiceAddress": + if r.TryDecodeAsNil() { + x.LocalServiceAddress = "" + } else { + x.LocalServiceAddress = (string)(r.DecodeString()) + } + case "LocalServicePort": + if r.TryDecodeAsNil() { + x.LocalServicePort = 0 + } else { + x.LocalServicePort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Upstreams": + if r.TryDecodeAsNil() { + x.Upstreams = nil + } else { + if false { + } else { + h.decSliceConsulUpstream((*[]ConsulUpstream)(&x.Upstreams), d) + } + } + case "Config": + if r.TryDecodeAsNil() { + x.Config = nil + } else { + if false { + } else { + z.F.DecMapStringIntfX(&x.Config, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ConsulProxy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LocalServiceAddress = "" + } else { + x.LocalServiceAddress = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LocalServicePort = 0 + } else { + x.LocalServicePort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Upstreams = nil + } else { + if false { + } else { + h.decSliceConsulUpstream((*[]ConsulUpstream)(&x.Upstreams), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Config = nil + } else { + if false { + } else { + z.F.DecMapStringIntfX(&x.Config, d) + } + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ConsulUpstream) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DestinationName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestinationName)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DestinationName\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DestinationName`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DestinationName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestinationName)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.LocalBindPort)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LocalBindPort\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LocalBindPort`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.LocalBindPort)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ConsulUpstream) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ConsulUpstream) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DestinationName": + if r.TryDecodeAsNil() { + x.DestinationName = "" + } else { + x.DestinationName = (string)(r.DecodeString()) + } + case "LocalBindPort": + if r.TryDecodeAsNil() { + x.LocalBindPort = 0 + } else { + x.LocalBindPort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ConsulUpstream) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DestinationName = "" + } else { + x.DestinationName = (string)(r.DecodeString()) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LocalBindPort = 0 + } else { + x.LocalBindPort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *StreamingRpcHeader) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Method\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Method`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *StreamingRpcHeader) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *StreamingRpcHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Method": + if r.TryDecodeAsNil() { + x.Method = "" + } else { + x.Method = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *StreamingRpcHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Method = "" + } else { + x.Method = (string)(r.DecodeString()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *StreamingRpcAck) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Error\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Error`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *StreamingRpcAck) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *StreamingRpcAck) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Error": + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *StreamingRpcAck) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = (string)(r.DecodeString()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *StreamingRpcRegistry) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(0) + } else { + r.WriteMapStart(0) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *StreamingRpcRegistry) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *StreamingRpcRegistry) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *StreamingRpcRegistry) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4 int + var yyb4 bool + var yyhl4 bool = l >= 0 + for { + yyj4++ + if yyhl4 { + yyb4 = yyj4 > l + } else { + yyb4 = r.CheckBreak() + } + if yyb4 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj4-1, "") + } + r.ReadArrayEnd() +} + +func (x MessageType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + r.EncodeUint(uint64(x)) + } +} + +func (x *MessageType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + *x = (MessageType)(z.C.UintV(r.DecodeUint64(), 8)) + } +} + +func (x Context) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x)) + } + } +} + +func (x *Context) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + *x = (Context)(r.DecodeString()) + } +} + +func (x *NamespacedID) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NamespacedID) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NamespacedID) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NamespacedID) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *InternalRpcInfo) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *InternalRpcInfo) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *InternalRpcInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Forwarded": + if r.TryDecodeAsNil() { + x.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *InternalRpcInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *QueryOptions) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *QueryOptions) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *QueryOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *QueryOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *WriteRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *WriteRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *WriteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *WriteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *QueryMeta) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.EncExtension(x.LastContact, yyxt7) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.EncExtension(x.LastContact, yyxt8) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *QueryMeta) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *QueryMeta) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Index": + if r.TryDecodeAsNil() { + x.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.LastContact = 0 + } else { + if false { + } else if yyxt6 := z.Extension(z.I2Rtid(x.LastContact)); yyxt6 != nil { + z.DecExtension(x.LastContact, yyxt6) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *QueryMeta) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LastContact = 0 + } else { + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.DecExtension(x.LastContact, yyxt11) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *WriteMeta) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *WriteMeta) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *WriteMeta) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Index": + if r.TryDecodeAsNil() { + x.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *WriteMeta) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeRegisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + var yyn3 bool + if x.Node == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Node == nil { + r.EncodeNil() + } else { + x.Node.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Node\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Node`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Node == nil { + r.EncodeNil() + } else { + x.Node.CodecEncodeSelf(e) + } + } + } + var yyn6 bool + if x.NodeEvent == nil { + yyn6 = true + goto LABEL6 + } + LABEL6: + if yyr2 || yy2arr2 { + if yyn6 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeEvent\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) + } + r.WriteMapElemValue() + if yyn6 { + r.EncodeNil() + } else { + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeRegisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeRegisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Node": + if r.TryDecodeAsNil() { + if true && x.Node != nil { + x.Node = nil + } + } else { + if x.Node == nil { + x.Node = new(Node) + } + + x.Node.CodecDecodeSelf(d) + } + case "NodeEvent": + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeRegisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Node != nil { + x.Node = nil + } + } else { + if x.Node == nil { + x.Node = new(Node) + } + + x.Node.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeBatchDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodeIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.NodeIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeIDs`) + } + r.WriteMapElemValue() + if x.NodeIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.NodeIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeBatchDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeBatchDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeIDs": + if r.TryDecodeAsNil() { + x.NodeIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.NodeIDs, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeBatchDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.NodeIDs, d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeServerInfo) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RPCAdvertiseAddr))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RPCAdvertiseAddr)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RPCAdvertiseAddr\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RPCAdvertiseAddr`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RPCAdvertiseAddr))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RPCAdvertiseAddr)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.RPCMajorVersion)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RPCMajorVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RPCMajorVersion`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.RPCMajorVersion)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.RPCMinorVersion)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RPCMinorVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RPCMinorVersion`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.RPCMinorVersion)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Datacenter\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeServerInfo) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeServerInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "RPCAdvertiseAddr": + if r.TryDecodeAsNil() { + x.RPCAdvertiseAddr = "" + } else { + x.RPCAdvertiseAddr = (string)(r.DecodeString()) + } + case "RPCMajorVersion": + if r.TryDecodeAsNil() { + x.RPCMajorVersion = 0 + } else { + x.RPCMajorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) + } + case "RPCMinorVersion": + if r.TryDecodeAsNil() { + x.RPCMinorVersion = 0 + } else { + x.RPCMinorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) + } + case "Datacenter": + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeServerInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RPCAdvertiseAddr = "" + } else { + x.RPCAdvertiseAddr = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RPCMajorVersion = 0 + } else { + x.RPCMajorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RPCMinorVersion = 0 + } else { + x.RPCMinorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeUpdateStatusRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + var yyn9 bool + if x.NodeEvent == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeEvent\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UpdatedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeUpdateStatusRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeUpdateStatusRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "NodeEvent": + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + case "UpdatedAt": + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeUpdateStatusRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeUpdateDrainRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + var yyn6 bool + if x.DrainStrategy == nil { + yyn6 = true + goto LABEL6 + } + LABEL6: + if yyr2 || yy2arr2 { + if yyn6 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.DrainStrategy == nil { + r.EncodeNil() + } else { + x.DrainStrategy.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DrainStrategy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DrainStrategy`) + } + r.WriteMapElemValue() + if yyn6 { + r.EncodeNil() + } else { + if x.DrainStrategy == nil { + r.EncodeNil() + } else { + x.DrainStrategy.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Drain)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Drain\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Drain`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Drain)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.MarkEligible)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MarkEligible\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MarkEligible`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.MarkEligible)) + } + } + var yyn15 bool + if x.NodeEvent == nil { + yyn15 = true + goto LABEL15 + } + LABEL15: + if yyr2 || yy2arr2 { + if yyn15 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeEvent\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) + } + r.WriteMapElemValue() + if yyn15 { + r.EncodeNil() + } else { + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UpdatedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeUpdateDrainRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeUpdateDrainRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "DrainStrategy": + if r.TryDecodeAsNil() { + if true && x.DrainStrategy != nil { + x.DrainStrategy = nil + } + } else { + if x.DrainStrategy == nil { + x.DrainStrategy = new(DrainStrategy) + } + + x.DrainStrategy.CodecDecodeSelf(d) + } + case "Drain": + if r.TryDecodeAsNil() { + x.Drain = false + } else { + x.Drain = (bool)(r.DecodeBool()) + } + case "MarkEligible": + if r.TryDecodeAsNil() { + x.MarkEligible = false + } else { + x.MarkEligible = (bool)(r.DecodeBool()) + } + case "NodeEvent": + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + case "UpdatedAt": + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeUpdateDrainRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DrainStrategy != nil { + x.DrainStrategy = nil + } + } else { + if x.DrainStrategy == nil { + x.DrainStrategy = new(DrainStrategy) + } + + x.DrainStrategy.CodecDecodeSelf(d) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Drain = false + } else { + x.Drain = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MarkEligible = false + } else { + x.MarkEligible = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *BatchNodeUpdateDrainRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Updates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDrainUpdate((map[string]*DrainUpdate)(x.Updates), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Updates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Updates`) + } + r.WriteMapElemValue() + if x.Updates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDrainUpdate((map[string]*DrainUpdate)(x.Updates), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodeEvents == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoNodeEvent((map[string]*NodeEvent)(x.NodeEvents), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeEvents\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvents`) + } + r.WriteMapElemValue() + if x.NodeEvents == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoNodeEvent((map[string]*NodeEvent)(x.NodeEvents), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UpdatedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *BatchNodeUpdateDrainRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *BatchNodeUpdateDrainRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Updates": + if r.TryDecodeAsNil() { + x.Updates = nil + } else { + if false { + } else { + h.decMapstringPtrtoDrainUpdate((*map[string]*DrainUpdate)(&x.Updates), d) + } + } + case "NodeEvents": + if r.TryDecodeAsNil() { + x.NodeEvents = nil + } else { + if false { + } else { + h.decMapstringPtrtoNodeEvent((*map[string]*NodeEvent)(&x.NodeEvents), d) + } + } + case "UpdatedAt": + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *BatchNodeUpdateDrainRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Updates = nil + } else { + if false { + } else { + h.decMapstringPtrtoDrainUpdate((*map[string]*DrainUpdate)(&x.Updates), d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeEvents = nil + } else { + if false { + } else { + h.decMapstringPtrtoNodeEvent((*map[string]*NodeEvent)(&x.NodeEvents), d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *DrainUpdate) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + var yyn3 bool + if x.DrainStrategy == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.DrainStrategy == nil { + r.EncodeNil() + } else { + x.DrainStrategy.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DrainStrategy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DrainStrategy`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.DrainStrategy == nil { + r.EncodeNil() + } else { + x.DrainStrategy.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.MarkEligible)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MarkEligible\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MarkEligible`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.MarkEligible)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DrainUpdate) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DrainUpdate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DrainStrategy": + if r.TryDecodeAsNil() { + if true && x.DrainStrategy != nil { + x.DrainStrategy = nil + } + } else { + if x.DrainStrategy == nil { + x.DrainStrategy = new(DrainStrategy) + } + + x.DrainStrategy.CodecDecodeSelf(d) + } + case "MarkEligible": + if r.TryDecodeAsNil() { + x.MarkEligible = false + } else { + x.MarkEligible = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DrainUpdate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DrainStrategy != nil { + x.DrainStrategy = nil + } + } else { + if x.DrainStrategy == nil { + x.DrainStrategy = new(DrainStrategy) + } + + x.DrainStrategy.CodecDecodeSelf(d) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MarkEligible = false + } else { + x.MarkEligible = (bool)(r.DecodeBool()) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeUpdateEligibilityRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Eligibility))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Eligibility)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Eligibility\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Eligibility`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Eligibility))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Eligibility)) + } + } + } + var yyn9 bool + if x.NodeEvent == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeEvent\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.NodeEvent == nil { + r.EncodeNil() + } else { + x.NodeEvent.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UpdatedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.UpdatedAt)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeUpdateEligibilityRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeUpdateEligibilityRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "Eligibility": + if r.TryDecodeAsNil() { + x.Eligibility = "" + } else { + x.Eligibility = (string)(r.DecodeString()) + } + case "NodeEvent": + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + case "UpdatedAt": + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeUpdateEligibilityRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Eligibility = "" + } else { + x.Eligibility = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.NodeEvent != nil { + x.NodeEvent = nil + } + } else { + if x.NodeEvent == nil { + x.NodeEvent = new(NodeEvent) + } + + x.NodeEvent.CodecDecodeSelf(d) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UpdatedAt = 0 + } else { + x.UpdatedAt = (int64)(r.DecodeInt64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeEvaluateRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeEvaluateRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeEvaluateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeEvaluateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SecretID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "SecretID": + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *SearchResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Matches == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapContextSlicestring((map[Context][]string)(x.Matches), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Matches\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Matches`) + } + r.WriteMapElemValue() + if x.Matches == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapContextSlicestring((map[Context][]string)(x.Matches), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Truncations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapContextbool((map[Context]bool)(x.Truncations), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Truncations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Truncations`) + } + r.WriteMapElemValue() + if x.Truncations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapContextbool((map[Context]bool)(x.Truncations), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.EncExtension(x.LastContact, yyxt13) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { + z.EncExtension(x.LastContact, yyxt14) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SearchResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SearchResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Matches": + if r.TryDecodeAsNil() { + x.Matches = nil + } else { + if false { + } else { + h.decMapContextSlicestring((*map[Context][]string)(&x.Matches), d) + } + } + case "Truncations": + if r.TryDecodeAsNil() { + x.Truncations = nil + } else { + if false { + } else { + h.decMapContextbool((*map[Context]bool)(&x.Truncations), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.DecExtension(x.LastContact, yyxt10) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SearchResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Matches = nil + } else { + if false { + } else { + h.decMapContextSlicestring((*map[Context][]string)(&x.Matches), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Truncations = nil + } else { + if false { + } else { + h.decMapContextbool((*map[Context]bool)(&x.Truncations), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { + z.DecExtension(x.LastContact, yyxt19) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *SearchRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + x.Context.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Context\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Context`) + } + r.WriteMapElemValue() + x.Context.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SearchRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SearchRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Prefix": + if r.TryDecodeAsNil() { + x.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "Context": + if r.TryDecodeAsNil() { + x.Context = "" + } else { + x.Context.CodecDecodeSelf(d) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SearchRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Context = "" + } else { + x.Context.CodecDecodeSelf(d) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt21 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt21 != nil { + z.DecExtension(x.MaxQueryTime, yyxt21) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobRegisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + var yyn3 bool + if x.Job == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.EnforceIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EnforceIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EnforceIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.EnforceIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.PolicyOverride)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PolicyOverride\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PolicyOverride`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.PolicyOverride)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobRegisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobRegisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "EnforceIndex": + if r.TryDecodeAsNil() { + x.EnforceIndex = false + } else { + x.EnforceIndex = (bool)(r.DecodeBool()) + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + case "PolicyOverride": + if r.TryDecodeAsNil() { + x.PolicyOverride = false + } else { + x.PolicyOverride = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobRegisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EnforceIndex = false + } else { + x.EnforceIndex = (bool)(r.DecodeBool()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PolicyOverride = false + } else { + x.PolicyOverride = (bool)(r.DecodeBool()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Purge)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Purge\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Purge`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Purge)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Purge": + if r.TryDecodeAsNil() { + x.Purge = false + } else { + x.Purge = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Purge = false + } else { + x.Purge = (bool)(r.DecodeBool()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobBatchDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Jobs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapNamespacedIDPtrtoJobDeregisterOptions((map[NamespacedID]*JobDeregisterOptions)(x.Jobs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Jobs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Jobs`) + } + r.WriteMapElemValue() + if x.Jobs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapNamespacedIDPtrtoJobDeregisterOptions((map[NamespacedID]*JobDeregisterOptions)(x.Jobs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) + } + r.WriteMapElemValue() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobBatchDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobBatchDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Jobs": + if r.TryDecodeAsNil() { + x.Jobs = nil + } else { + if false { + } else { + h.decMapNamespacedIDPtrtoJobDeregisterOptions((*map[NamespacedID]*JobDeregisterOptions)(&x.Jobs), d) + } + } + case "Evals": + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobBatchDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Jobs = nil + } else { + if false { + } else { + h.decMapNamespacedIDPtrtoJobDeregisterOptions((*map[NamespacedID]*JobDeregisterOptions)(&x.Jobs), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobDeregisterOptions) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Purge)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Purge\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Purge`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Purge)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobDeregisterOptions) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobDeregisterOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Purge": + if r.TryDecodeAsNil() { + x.Purge = false + } else { + x.Purge = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobDeregisterOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Purge = false + } else { + x.Purge = (bool)(r.DecodeBool()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobEvaluateRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy7 := &x.EvalOptions + yy7.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalOptions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalOptions`) + } + r.WriteMapElemValue() + yy9 := &x.EvalOptions + yy9.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobEvaluateRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobEvaluateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "EvalOptions": + if r.TryDecodeAsNil() { + x.EvalOptions = EvalOptions{} + } else { + x.EvalOptions.CodecDecodeSelf(d) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobEvaluateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalOptions = EvalOptions{} + } else { + x.EvalOptions.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalOptions) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.ForceReschedule)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ForceReschedule\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ForceReschedule`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.ForceReschedule)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalOptions) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ForceReschedule": + if r.TryDecodeAsNil() { + x.ForceReschedule = false + } else { + x.ForceReschedule = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ForceReschedule = false + } else { + x.ForceReschedule = (bool)(r.DecodeBool()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.All)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"All\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `All`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.All)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "All": + if r.TryDecodeAsNil() { + x.All = false + } else { + x.All = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.All = false + } else { + x.All = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobPlanRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + var yyn3 bool + if x.Job == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Diff)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Diff\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Diff`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Diff)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.PolicyOverride)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PolicyOverride\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PolicyOverride`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.PolicyOverride)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobPlanRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobPlanRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "Diff": + if r.TryDecodeAsNil() { + x.Diff = false + } else { + x.Diff = (bool)(r.DecodeBool()) + } + case "PolicyOverride": + if r.TryDecodeAsNil() { + x.PolicyOverride = false + } else { + x.PolicyOverride = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobPlanRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Diff = false + } else { + x.Diff = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PolicyOverride = false + } else { + x.PolicyOverride = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobSummaryRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobSummaryRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobSummaryRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobSummaryRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobDispatchRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Payload == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Payload)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Payload\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Payload`) + } + r.WriteMapElemValue() + if x.Payload == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Payload)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Meta\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) + } + r.WriteMapElemValue() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobDispatchRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobDispatchRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Payload": + if r.TryDecodeAsNil() { + x.Payload = nil + } else { + if false { + } else { + x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) + } + } + case "Meta": + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobDispatchRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Payload = nil + } else { + if false { + } else { + x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobValidateRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + var yyn3 bool + if x.Job == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobValidateRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobValidateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobValidateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobRevertRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } + var yyn9 bool + if x.EnforcePriorVersion == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.EnforcePriorVersion == nil { + r.EncodeNil() + } else { + yy10 := *x.EnforcePriorVersion + if false { + } else { + r.EncodeUint(uint64(yy10)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EnforcePriorVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EnforcePriorVersion`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.EnforcePriorVersion == nil { + r.EncodeNil() + } else { + yy12 := *x.EnforcePriorVersion + if false { + } else { + r.EncodeUint(uint64(yy12)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"VaultToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `VaultToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobRevertRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobRevertRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "JobVersion": + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + case "EnforcePriorVersion": + if r.TryDecodeAsNil() { + if true && x.EnforcePriorVersion != nil { + x.EnforcePriorVersion = nil + } + } else { + if x.EnforcePriorVersion == nil { + x.EnforcePriorVersion = new(uint64) + } + + if false { + } else { + *x.EnforcePriorVersion = (uint64)(r.DecodeUint64()) + } + } + case "VaultToken": + if r.TryDecodeAsNil() { + x.VaultToken = "" + } else { + x.VaultToken = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobRevertRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.EnforcePriorVersion != nil { + x.EnforcePriorVersion = nil + } + } else { + if x.EnforcePriorVersion == nil { + x.EnforcePriorVersion = new(uint64) + } + + if false { + } else { + *x.EnforcePriorVersion = (uint64)(r.DecodeUint64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.VaultToken = "" + } else { + x.VaultToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobStabilityRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Stable)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Stable\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Stable`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Stable)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobStabilityRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobStabilityRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "JobVersion": + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + case "Stable": + if r.TryDecodeAsNil() { + x.Stable = false + } else { + x.Stable = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobStabilityRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Stable = false + } else { + x.Stable = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobStabilityResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobStabilityResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobStabilityResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobStabilityResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalUpdateRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) + } + r.WriteMapElemValue() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalUpdateRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalUpdateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Evals": + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + case "EvalToken": + if r.TryDecodeAsNil() { + x.EvalToken = "" + } else { + x.EvalToken = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalUpdateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalToken = "" + } else { + x.EvalToken = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Evals, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) + } + r.WriteMapElemValue() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Evals, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Allocs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) + } + r.WriteMapElemValue() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Allocs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Evals": + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Evals, d) + } + } + case "Allocs": + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Allocs, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Evals, d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Allocs, d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalAckRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Token\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalAckRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalAckRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "Token": + if r.TryDecodeAsNil() { + x.Token = "" + } else { + x.Token = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalAckRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Token = "" + } else { + x.Token = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalDequeueRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Schedulers == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Schedulers, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Schedulers\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Schedulers`) + } + r.WriteMapElemValue() + if x.Schedulers == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Schedulers, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.Timeout)); yyxt7 != nil { + z.EncExtension(x.Timeout, yyxt7) + } else { + r.EncodeInt(int64(x.Timeout)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Timeout\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Timeout`) + } + r.WriteMapElemValue() + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Timeout)); yyxt8 != nil { + z.EncExtension(x.Timeout, yyxt8) + } else { + r.EncodeInt(int64(x.Timeout)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.SchedulerVersion)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SchedulerVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulerVersion`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.SchedulerVersion)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalDequeueRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalDequeueRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Schedulers": + if r.TryDecodeAsNil() { + x.Schedulers = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Schedulers, d) + } + } + case "Timeout": + if r.TryDecodeAsNil() { + x.Timeout = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.Timeout)); yyxt7 != nil { + z.DecExtension(x.Timeout, yyxt7) + } else { + x.Timeout = (time.Duration)(r.DecodeInt64()) + } + } + case "SchedulerVersion": + if r.TryDecodeAsNil() { + x.SchedulerVersion = 0 + } else { + x.SchedulerVersion = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalDequeueRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Schedulers = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Schedulers, d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Timeout = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.Timeout)); yyxt17 != nil { + z.DecExtension(x.Timeout, yyxt17) + } else { + x.Timeout = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SchedulerVersion = 0 + } else { + x.SchedulerVersion = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *PlanRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + var yyn3 bool + if x.Plan == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Plan == nil { + r.EncodeNil() + } else { + x.Plan.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Plan\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Plan`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Plan == nil { + r.EncodeNil() + } else { + x.Plan.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PlanRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PlanRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Plan": + if r.TryDecodeAsNil() { + if true && x.Plan != nil { + x.Plan = nil + } + } else { + if x.Plan == nil { + x.Plan = new(Plan) + } + + x.Plan.CodecDecodeSelf(d) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PlanRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Plan != nil { + x.Plan = nil + } + } else { + if x.Plan == nil { + x.Plan = new(Plan) + } + + x.Plan.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *ApplyPlanResultsRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(15) + } else { + r.WriteMapStart(15) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Alloc == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Alloc\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Alloc`) + } + r.WriteMapElemValue() + if x.Alloc == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AllocsStopped == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocsStopped\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsStopped`) + } + r.WriteMapElemValue() + if x.AllocsStopped == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AllocsUpdated == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocsUpdated\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsUpdated`) + } + r.WriteMapElemValue() + if x.AllocsUpdated == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) + } + r.WriteMapElemValue() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } + var yyn15 bool + if x.AllocUpdateRequest.Job == nil { + yyn15 = true + goto LABEL15 + } + LABEL15: + if yyr2 || yy2arr2 { + if yyn15 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn15 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + var yyn30 bool + if x.Deployment == nil { + yyn30 = true + goto LABEL30 + } + LABEL30: + if yyr2 || yy2arr2 { + if yyn30 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deployment\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) + } + r.WriteMapElemValue() + if yyn30 { + r.EncodeNil() + } else { + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.DeploymentUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentUpdates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdates`) + } + r.WriteMapElemValue() + if x.DeploymentUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodePreemptions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.NodePreemptions), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodePreemptions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodePreemptions`) + } + r.WriteMapElemValue() + if x.NodePreemptions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.NodePreemptions), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AllocsPreempted == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsPreempted), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocsPreempted\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsPreempted`) + } + r.WriteMapElemValue() + if x.AllocsPreempted == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsPreempted), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.PreemptionEvals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.PreemptionEvals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptionEvals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptionEvals`) + } + r.WriteMapElemValue() + if x.PreemptionEvals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.PreemptionEvals), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ApplyPlanResultsRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ApplyPlanResultsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Alloc": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.Alloc = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) + } + } + case "AllocsStopped": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.AllocsStopped = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) + } + } + case "AllocsUpdated": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.AllocsUpdated = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) + } + } + case "Evals": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + case "Job": + if r.TryDecodeAsNil() { + if true && x.AllocUpdateRequest.Job != nil { + x.AllocUpdateRequest.Job = nil + } + } else { + if x.AllocUpdateRequest.Job == nil { + x.AllocUpdateRequest.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "Region": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + case "Deployment": + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + case "DeploymentUpdates": + if r.TryDecodeAsNil() { + x.DeploymentUpdates = nil + } else { + if false { + } else { + h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) + } + } + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "NodePreemptions": + if r.TryDecodeAsNil() { + x.NodePreemptions = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.NodePreemptions), d) + } + } + case "AllocsPreempted": + if r.TryDecodeAsNil() { + x.AllocsPreempted = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsPreempted), d) + } + } + case "PreemptionEvals": + if r.TryDecodeAsNil() { + x.PreemptionEvals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.PreemptionEvals), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ApplyPlanResultsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj27 int + var yyb27 bool + var yyhl27 bool = l >= 0 + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.Alloc = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) + } + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.AllocsStopped = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) + } + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.AllocsUpdated = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) + } + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.AllocUpdateRequest.Job != nil { + x.AllocUpdateRequest.Job = nil + } + } else { + if x.AllocUpdateRequest.Job == nil { + x.AllocUpdateRequest.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocUpdateRequest.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentUpdates = nil + } else { + if false { + } else { + h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) + } + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodePreemptions = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.NodePreemptions), d) + } + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocsPreempted = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsPreempted), d) + } + } + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptionEvals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.PreemptionEvals), d) + } + } + for { + yyj27++ + if yyhl27 { + yyb27 = yyj27 > l + } else { + yyb27 = r.CheckBreak() + } + if yyb27 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj27-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocUpdateRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Alloc == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Alloc\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Alloc`) + } + r.WriteMapElemValue() + if x.Alloc == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AllocsStopped == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocsStopped\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsStopped`) + } + r.WriteMapElemValue() + if x.AllocsStopped == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AllocsUpdated == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocsUpdated\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsUpdated`) + } + r.WriteMapElemValue() + if x.AllocsUpdated == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) + } + r.WriteMapElemValue() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } + var yyn15 bool + if x.Job == nil { + yyn15 = true + goto LABEL15 + } + LABEL15: + if yyr2 || yy2arr2 { + if yyn15 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn15 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocUpdateRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocUpdateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Alloc": + if r.TryDecodeAsNil() { + x.Alloc = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) + } + } + case "AllocsStopped": + if r.TryDecodeAsNil() { + x.AllocsStopped = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) + } + } + case "AllocsUpdated": + if r.TryDecodeAsNil() { + x.AllocsUpdated = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) + } + } + case "Evals": + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocUpdateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj17 int + var yyb17 bool + var yyhl17 bool = l >= 0 + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Alloc = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocsStopped = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocsUpdated = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj17-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocUpdateDesiredTransitionRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDesiredTransition((map[string]*DesiredTransition)(x.Allocs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) + } + r.WriteMapElemValue() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDesiredTransition((map[string]*DesiredTransition)(x.Allocs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) + } + r.WriteMapElemValue() + if x.Evals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocUpdateDesiredTransitionRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocUpdateDesiredTransitionRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Allocs": + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + h.decMapstringPtrtoDesiredTransition((*map[string]*DesiredTransition)(&x.Allocs), d) + } + } + case "Evals": + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocUpdateDesiredTransitionRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + h.decMapstringPtrtoDesiredTransition((*map[string]*DesiredTransition)(&x.Allocs), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Evals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocStopRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocStopRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocStopRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocStopRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocStopResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocStopResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocStopResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocStopResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocSignalRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(11) + } else { + r.WriteMapStart(11) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Task\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Task`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Signal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Signal)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Signal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Signal`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Signal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Signal)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.EncExtension(x.MaxQueryTime, yyxt22) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt23 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt23 != nil { + z.EncExtension(x.MaxQueryTime, yyxt23) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocSignalRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocSignalRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Task": + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + case "Signal": + if r.TryDecodeAsNil() { + x.Signal = "" + } else { + x.Signal = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt11 != nil { + z.DecExtension(x.MaxQueryTime, yyxt11) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocSignalRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj16 int + var yyb16 bool + var yyhl16 bool = l >= 0 + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Signal = "" + } else { + x.Signal = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt24 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt24 != nil { + z.DecExtension(x.MaxQueryTime, yyxt24) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj16-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocsGetRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AllocIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.AllocIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocIDs`) + } + r.WriteMapElemValue() + if x.AllocIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.AllocIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocsGetRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocsGetRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocIDs": + if r.TryDecodeAsNil() { + x.AllocIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.AllocIDs, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocsGetRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.AllocIDs, d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocRestartRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskName\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskName`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocRestartRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocRestartRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "TaskName": + if r.TryDecodeAsNil() { + x.TaskName = "" + } else { + x.TaskName = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocRestartRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskName = "" + } else { + x.TaskName = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *PeriodicForceRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PeriodicForceRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PeriodicForceRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PeriodicForceRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *ServerMembersResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerName)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ServerName\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ServerName`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerName)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerRegion))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerRegion)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ServerRegion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ServerRegion`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerRegion))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerRegion)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerDC))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerDC)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ServerDC\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ServerDC`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ServerDC))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerDC)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Members == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoServerMember(([]*ServerMember)(x.Members), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Members\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Members`) + } + r.WriteMapElemValue() + if x.Members == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoServerMember(([]*ServerMember)(x.Members), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ServerMembersResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ServerMembersResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ServerName": + if r.TryDecodeAsNil() { + x.ServerName = "" + } else { + x.ServerName = (string)(r.DecodeString()) + } + case "ServerRegion": + if r.TryDecodeAsNil() { + x.ServerRegion = "" + } else { + x.ServerRegion = (string)(r.DecodeString()) + } + case "ServerDC": + if r.TryDecodeAsNil() { + x.ServerDC = "" + } else { + x.ServerDC = (string)(r.DecodeString()) + } + case "Members": + if r.TryDecodeAsNil() { + x.Members = nil + } else { + if false { + } else { + h.decSlicePtrtoServerMember((*[]*ServerMember)(&x.Members), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ServerMembersResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ServerName = "" + } else { + x.ServerName = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ServerRegion = "" + } else { + x.ServerRegion = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ServerDC = "" + } else { + x.ServerDC = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Members = nil + } else { + if false { + } else { + h.decSlicePtrtoServerMember((*[]*ServerMember)(&x.Members), d) + } + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *ServerMember) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(11) + } else { + r.WriteMapStart(11) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Addr == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.Addr)); yyxt7 != nil { + z.EncExtension(x.Addr, yyxt7) + } else if !z.EncBinary() { + z.EncTextMarshal(x.Addr) + } else { + h.encnet_IP((net.IP)(x.Addr), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Addr\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Addr`) + } + r.WriteMapElemValue() + if x.Addr == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Addr)); yyxt8 != nil { + z.EncExtension(x.Addr, yyxt8) + } else if !z.EncBinary() { + z.EncTextMarshal(x.Addr) + } else { + h.encnet_IP((net.IP)(x.Addr), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Port)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Port\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Port`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Port)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Tags, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tags\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tags`) + } + r.WriteMapElemValue() + if x.Tags == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Tags, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ProtocolMin)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ProtocolMin\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ProtocolMin`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ProtocolMin)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ProtocolMax)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ProtocolMax\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ProtocolMax`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ProtocolMax)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ProtocolCur)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ProtocolCur\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ProtocolCur`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ProtocolCur)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.DelegateMin)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DelegateMin\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DelegateMin`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.DelegateMin)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.DelegateMax)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DelegateMax\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DelegateMax`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.DelegateMax)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.DelegateCur)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DelegateCur\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DelegateCur`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.DelegateCur)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ServerMember) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ServerMember) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Addr": + if r.TryDecodeAsNil() { + x.Addr = nil + } else { + if false { + } else if yyxt6 := z.Extension(z.I2Rtid(x.Addr)); yyxt6 != nil { + z.DecExtension(x.Addr, yyxt6) + } else if !z.DecBinary() { + z.DecTextUnmarshal(&x.Addr) + } else { + h.decnet_IP((*net.IP)(&x.Addr), d) + } + } + case "Port": + if r.TryDecodeAsNil() { + x.Port = 0 + } else { + x.Port = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) + } + case "Tags": + if r.TryDecodeAsNil() { + x.Tags = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Tags, d) + } + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "ProtocolMin": + if r.TryDecodeAsNil() { + x.ProtocolMin = 0 + } else { + x.ProtocolMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + case "ProtocolMax": + if r.TryDecodeAsNil() { + x.ProtocolMax = 0 + } else { + x.ProtocolMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + case "ProtocolCur": + if r.TryDecodeAsNil() { + x.ProtocolCur = 0 + } else { + x.ProtocolCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + case "DelegateMin": + if r.TryDecodeAsNil() { + x.DelegateMin = 0 + } else { + x.DelegateMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + case "DelegateMax": + if r.TryDecodeAsNil() { + x.DelegateMax = 0 + } else { + x.DelegateMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + case "DelegateCur": + if r.TryDecodeAsNil() { + x.DelegateCur = 0 + } else { + x.DelegateCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ServerMember) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj17 int + var yyb17 bool + var yyhl17 bool = l >= 0 + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Addr = nil + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.Addr)); yyxt20 != nil { + z.DecExtension(x.Addr, yyxt20) + } else if !z.DecBinary() { + z.DecTextUnmarshal(&x.Addr) + } else { + h.decnet_IP((*net.IP)(&x.Addr), d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Port = 0 + } else { + x.Port = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tags = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Tags, d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ProtocolMin = 0 + } else { + x.ProtocolMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ProtocolMax = 0 + } else { + x.ProtocolMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ProtocolCur = 0 + } else { + x.ProtocolCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DelegateMin = 0 + } else { + x.DelegateMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DelegateMax = 0 + } else { + x.DelegateMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DelegateCur = 0 + } else { + x.DelegateCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + for { + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj17-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeriveVaultTokenRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(12) + } else { + r.WriteMapStart(12) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SecretID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Tasks, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tasks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) + } + r.WriteMapElemValue() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Tasks, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt25 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt25 != nil { + z.EncExtension(x.MaxQueryTime, yyxt25) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt26 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt26 != nil { + z.EncExtension(x.MaxQueryTime, yyxt26) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeriveVaultTokenRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeriveVaultTokenRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "SecretID": + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Tasks": + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Tasks, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.DecExtension(x.MaxQueryTime, yyxt13) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeriveVaultTokenRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj18 int + var yyb18 bool + var yyhl18 bool = l >= 0 + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Tasks, d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { + z.DecExtension(x.MaxQueryTime, yyxt28) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj18-1, "") + } + r.ReadArrayEnd() +} + +func (x *VaultAccessorsRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Accessors == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoVaultAccessor(([]*VaultAccessor)(x.Accessors), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Accessors\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Accessors`) + } + r.WriteMapElemValue() + if x.Accessors == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoVaultAccessor(([]*VaultAccessor)(x.Accessors), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *VaultAccessorsRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *VaultAccessorsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Accessors": + if r.TryDecodeAsNil() { + x.Accessors = nil + } else { + if false { + } else { + h.decSlicePtrtoVaultAccessor((*[]*VaultAccessor)(&x.Accessors), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *VaultAccessorsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Accessors = nil + } else { + if false { + } else { + h.decSlicePtrtoVaultAccessor((*[]*VaultAccessor)(&x.Accessors), d) + } + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *VaultAccessor) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Task\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Task`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Accessor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Accessor)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Accessor\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Accessor`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Accessor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Accessor)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.CreationTTL)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreationTTL\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreationTTL`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CreationTTL)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *VaultAccessor) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *VaultAccessor) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AllocID": + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + case "Task": + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "Accessor": + if r.TryDecodeAsNil() { + x.Accessor = "" + } else { + x.Accessor = (string)(r.DecodeString()) + } + case "CreationTTL": + if r.TryDecodeAsNil() { + x.CreationTTL = 0 + } else { + x.CreationTTL = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *VaultAccessor) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocID = "" + } else { + x.AllocID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Task = "" + } else { + x.Task = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Accessor = "" + } else { + x.Accessor = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreationTTL = 0 + } else { + x.CreationTTL = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeriveVaultTokenResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Tasks, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tasks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) + } + r.WriteMapElemValue() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Tasks, e) + } + } + } + var yyn6 bool + if x.Error == nil { + yyn6 = true + goto LABEL6 + } + LABEL6: + if yyr2 || yy2arr2 { + if yyn6 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Error == nil { + r.EncodeNil() + } else { + x.Error.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Error\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Error`) + } + r.WriteMapElemValue() + if yyn6 { + r.EncodeNil() + } else { + if x.Error == nil { + r.EncodeNil() + } else { + x.Error.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.EncExtension(x.LastContact, yyxt13) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { + z.EncExtension(x.LastContact, yyxt14) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeriveVaultTokenResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeriveVaultTokenResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Tasks": + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Tasks, d) + } + } + case "Error": + if r.TryDecodeAsNil() { + if true && x.Error != nil { + x.Error = nil + } + } else { + if x.Error == nil { + x.Error = new(RecoverableError) + } + + x.Error.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { + z.DecExtension(x.LastContact, yyxt9) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeriveVaultTokenResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Tasks, d) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Error != nil { + x.Error = nil + } + } else { + if x.Error == nil { + x.Error = new(RecoverableError) + } + + x.Error.CodecDecodeSelf(d) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { + z.DecExtension(x.LastContact, yyxt17) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *GenericRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *GenericRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *GenericRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *GenericRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Deployments == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Deployments, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deployments\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deployments`) + } + r.WriteMapElemValue() + if x.Deployments == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Deployments, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Deployments": + if r.TryDecodeAsNil() { + x.Deployments = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Deployments, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Deployments = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Deployments, d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentStatusUpdateRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + var yyn3 bool + if x.Eval == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Eval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } + var yyn6 bool + if x.DeploymentUpdate == nil { + yyn6 = true + goto LABEL6 + } + LABEL6: + if yyr2 || yy2arr2 { + if yyn6 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.DeploymentUpdate == nil { + r.EncodeNil() + } else { + x.DeploymentUpdate.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentUpdate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdate`) + } + r.WriteMapElemValue() + if yyn6 { + r.EncodeNil() + } else { + if x.DeploymentUpdate == nil { + r.EncodeNil() + } else { + x.DeploymentUpdate.CodecEncodeSelf(e) + } + } + } + var yyn9 bool + if x.Job == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentStatusUpdateRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentStatusUpdateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Eval": + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + case "DeploymentUpdate": + if r.TryDecodeAsNil() { + if true && x.DeploymentUpdate != nil { + x.DeploymentUpdate = nil + } + } else { + if x.DeploymentUpdate == nil { + x.DeploymentUpdate = new(DeploymentStatusUpdate) + } + + x.DeploymentUpdate.CodecDecodeSelf(d) + } + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentStatusUpdateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DeploymentUpdate != nil { + x.DeploymentUpdate = nil + } + } else { + if x.DeploymentUpdate == nil { + x.DeploymentUpdate = new(DeploymentStatusUpdate) + } + + x.DeploymentUpdate.CodecDecodeSelf(d) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentAllocHealthRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.HealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.HealthyAllocationIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthyAllocationIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyAllocationIDs`) + } + r.WriteMapElemValue() + if x.HealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.HealthyAllocationIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.UnhealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UnhealthyAllocationIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UnhealthyAllocationIDs`) + } + r.WriteMapElemValue() + if x.UnhealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentAllocHealthRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentAllocHealthRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "HealthyAllocationIDs": + if r.TryDecodeAsNil() { + x.HealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) + } + } + case "UnhealthyAllocationIDs": + if r.TryDecodeAsNil() { + x.UnhealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentAllocHealthRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UnhealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *ApplyDeploymentAllocHealthRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(11) + } else { + r.WriteMapStart(11) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.HealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.HealthyAllocationIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthyAllocationIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyAllocationIDs`) + } + r.WriteMapElemValue() + if x.HealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.HealthyAllocationIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.UnhealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UnhealthyAllocationIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UnhealthyAllocationIDs`) + } + r.WriteMapElemValue() + if x.UnhealthyAllocationIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Timestamp) + } else if yyxt25 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt25 != nil { + z.EncExtension(x.Timestamp, yyxt25) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Timestamp) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Timestamp) + } else { + z.EncFallback(x.Timestamp) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Timestamp\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Timestamp`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Timestamp) + } else if yyxt26 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt26 != nil { + z.EncExtension(x.Timestamp, yyxt26) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Timestamp) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Timestamp) + } else { + z.EncFallback(x.Timestamp) + } + } + var yyn27 bool + if x.DeploymentUpdate == nil { + yyn27 = true + goto LABEL27 + } + LABEL27: + if yyr2 || yy2arr2 { + if yyn27 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.DeploymentUpdate == nil { + r.EncodeNil() + } else { + x.DeploymentUpdate.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentUpdate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdate`) + } + r.WriteMapElemValue() + if yyn27 { + r.EncodeNil() + } else { + if x.DeploymentUpdate == nil { + r.EncodeNil() + } else { + x.DeploymentUpdate.CodecEncodeSelf(e) + } + } + } + var yyn30 bool + if x.Job == nil { + yyn30 = true + goto LABEL30 + } + LABEL30: + if yyr2 || yy2arr2 { + if yyn30 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn30 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + var yyn33 bool + if x.Eval == nil { + yyn33 = true + goto LABEL33 + } + LABEL33: + if yyr2 || yy2arr2 { + if yyn33 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Eval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) + } + r.WriteMapElemValue() + if yyn33 { + r.EncodeNil() + } else { + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ApplyDeploymentAllocHealthRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ApplyDeploymentAllocHealthRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "HealthyAllocationIDs": + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.HealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) + } + } + case "UnhealthyAllocationIDs": + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.UnhealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + case "Timestamp": + if r.TryDecodeAsNil() { + x.Timestamp = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Timestamp = r.DecodeTime() + } else if yyxt14 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt14 != nil { + z.DecExtension(x.Timestamp, yyxt14) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Timestamp) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Timestamp) + } else { + z.DecFallback(&x.Timestamp, false) + } + } + case "DeploymentUpdate": + if r.TryDecodeAsNil() { + if true && x.DeploymentUpdate != nil { + x.DeploymentUpdate = nil + } + } else { + if x.DeploymentUpdate == nil { + x.DeploymentUpdate = new(DeploymentStatusUpdate) + } + + x.DeploymentUpdate.CodecDecodeSelf(d) + } + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "Eval": + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ApplyDeploymentAllocHealthRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj18 int + var yyb18 bool + var yyhl18 bool = l >= 0 + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.HealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.UnhealthyAllocationIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentAllocHealthRequest.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Timestamp = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Timestamp = r.DecodeTime() + } else if yyxt29 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt29 != nil { + z.DecExtension(x.Timestamp, yyxt29) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Timestamp) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Timestamp) + } else { + z.DecFallback(&x.Timestamp, false) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DeploymentUpdate != nil { + x.DeploymentUpdate = nil + } + } else { + if x.DeploymentUpdate == nil { + x.DeploymentUpdate = new(DeploymentStatusUpdate) + } + + x.DeploymentUpdate.CodecDecodeSelf(d) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + for { + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj18-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentPromoteRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.All)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"All\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `All`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.All)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Groups == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Groups, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Groups\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Groups`) + } + r.WriteMapElemValue() + if x.Groups == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Groups, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentPromoteRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentPromoteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "All": + if r.TryDecodeAsNil() { + x.All = false + } else { + x.All = (bool)(r.DecodeBool()) + } + case "Groups": + if r.TryDecodeAsNil() { + x.Groups = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Groups, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentPromoteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.All = false + } else { + x.All = (bool)(r.DecodeBool()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Groups = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Groups, d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *ApplyDeploymentPromoteRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.All)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"All\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `All`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.All)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Groups == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Groups, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Groups\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Groups`) + } + r.WriteMapElemValue() + if x.Groups == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Groups, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + var yyn24 bool + if x.Eval == nil { + yyn24 = true + goto LABEL24 + } + LABEL24: + if yyr2 || yy2arr2 { + if yyn24 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Eval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) + } + r.WriteMapElemValue() + if yyn24 { + r.EncodeNil() + } else { + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ApplyDeploymentPromoteRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ApplyDeploymentPromoteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "All": + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.All = false + } else { + x.All = (bool)(r.DecodeBool()) + } + case "Groups": + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.Groups = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Groups, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + case "Eval": + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ApplyDeploymentPromoteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.All = false + } else { + x.All = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.Groups = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Groups, d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentPromoteRequest.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentPauseRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Pause)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Pause\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Pause`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Pause)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentPauseRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentPauseRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "Pause": + if r.TryDecodeAsNil() { + x.Pause = false + } else { + x.Pause = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentPauseRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Pause = false + } else { + x.Pause = (bool)(r.DecodeBool()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentFailRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentFailRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentFailRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentFailRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *SingleDeploymentResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Deployment == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deployment\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SingleDeploymentResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SingleDeploymentResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Deployment": + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SingleDeploymentResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *GenericResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *GenericResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *GenericResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *GenericResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *VersionResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Build))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Build)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Build\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Build`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Build))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Build)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Versions == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.Versions, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Versions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Versions`) + } + r.WriteMapElemValue() + if x.Versions == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.Versions, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.EncExtension(x.LastContact, yyxt13) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { + z.EncExtension(x.LastContact, yyxt14) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *VersionResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *VersionResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Build": + if r.TryDecodeAsNil() { + x.Build = "" + } else { + x.Build = (string)(r.DecodeString()) + } + case "Versions": + if r.TryDecodeAsNil() { + x.Versions = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.Versions, d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { + z.DecExtension(x.LastContact, yyxt9) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *VersionResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Build = "" + } else { + x.Build = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Versions = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.Versions, d) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { + z.DecExtension(x.LastContact, yyxt17) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobRegisterResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Warnings\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Warnings`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { + z.EncExtension(x.LastContact, yyxt19) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.LastContact)); yyxt20 != nil { + z.EncExtension(x.LastContact, yyxt20) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobRegisterResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobRegisterResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + case "Warnings": + if r.TryDecodeAsNil() { + x.Warnings = "" + } else { + x.Warnings = (string)(r.DecodeString()) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.DecExtension(x.LastContact, yyxt10) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobRegisterResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Warnings = "" + } else { + x.Warnings = (string)(r.DecodeString()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { + z.DecExtension(x.LastContact, yyxt19) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobDeregisterResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.LastContact)); yyxt16 != nil { + z.EncExtension(x.LastContact, yyxt16) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { + z.EncExtension(x.LastContact, yyxt17) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobDeregisterResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobDeregisterResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { + z.DecExtension(x.LastContact, yyxt9) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobDeregisterResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { + z.DecExtension(x.LastContact, yyxt17) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobBatchDeregisterResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.JobEvals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapNamespacedIDstring((map[NamespacedID]string)(x.JobEvals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobEvals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobEvals`) + } + r.WriteMapElemValue() + if x.JobEvals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapNamespacedIDstring((map[NamespacedID]string)(x.JobEvals), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobBatchDeregisterResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobBatchDeregisterResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobEvals": + if r.TryDecodeAsNil() { + x.JobEvals = nil + } else { + if false { + } else { + h.decMapNamespacedIDstring((*map[NamespacedID]string)(&x.JobEvals), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobBatchDeregisterResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobEvals = nil + } else { + if false { + } else { + h.decMapNamespacedIDstring((*map[NamespacedID]string)(&x.JobEvals), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobValidateResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.DriverConfigValidated)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DriverConfigValidated\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DriverConfigValidated`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.DriverConfigValidated)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.ValidationErrors == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.ValidationErrors, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ValidationErrors\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ValidationErrors`) + } + r.WriteMapElemValue() + if x.ValidationErrors == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.ValidationErrors, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Error\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Error`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Warnings\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Warnings`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobValidateResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobValidateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DriverConfigValidated": + if r.TryDecodeAsNil() { + x.DriverConfigValidated = false + } else { + x.DriverConfigValidated = (bool)(r.DecodeBool()) + } + case "ValidationErrors": + if r.TryDecodeAsNil() { + x.ValidationErrors = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.ValidationErrors, d) + } + } + case "Error": + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = (string)(r.DecodeString()) + } + case "Warnings": + if r.TryDecodeAsNil() { + x.Warnings = "" + } else { + x.Warnings = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobValidateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DriverConfigValidated = false + } else { + x.DriverConfigValidated = (bool)(r.DecodeBool()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ValidationErrors = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.ValidationErrors, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Warnings = "" + } else { + x.Warnings = (string)(r.DecodeString()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt4 != nil { + z.EncExtension(x.HeartbeatTTL, yyxt4) + } else { + r.EncodeInt(int64(x.HeartbeatTTL)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HeartbeatTTL\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HeartbeatTTL`) + } + r.WriteMapElemValue() + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt5 != nil { + z.EncExtension(x.HeartbeatTTL, yyxt5) + } else { + r.EncodeInt(int64(x.HeartbeatTTL)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.EvalIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.EvalIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalIDs`) + } + r.WriteMapElemValue() + if x.EvalIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.EvalIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderRPCAddr))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderRPCAddr)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LeaderRPCAddr\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LeaderRPCAddr`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderRPCAddr))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderRPCAddr)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.NumNodes)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NumNodes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NumNodes`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.NumNodes)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Servers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeServerInfo(([]*NodeServerInfo)(x.Servers), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Servers\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Servers`) + } + r.WriteMapElemValue() + if x.Servers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeServerInfo(([]*NodeServerInfo)(x.Servers), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt28 := z.Extension(z.I2Rtid(x.LastContact)); yyxt28 != nil { + z.EncExtension(x.LastContact, yyxt28) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt29 := z.Extension(z.I2Rtid(x.LastContact)); yyxt29 != nil { + z.EncExtension(x.LastContact, yyxt29) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "HeartbeatTTL": + if r.TryDecodeAsNil() { + x.HeartbeatTTL = 0 + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt5 != nil { + z.DecExtension(x.HeartbeatTTL, yyxt5) + } else { + x.HeartbeatTTL = (time.Duration)(r.DecodeInt64()) + } + } + case "EvalIDs": + if r.TryDecodeAsNil() { + x.EvalIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.EvalIDs, d) + } + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "NodeModifyIndex": + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + case "LeaderRPCAddr": + if r.TryDecodeAsNil() { + x.LeaderRPCAddr = "" + } else { + x.LeaderRPCAddr = (string)(r.DecodeString()) + } + case "NumNodes": + if r.TryDecodeAsNil() { + x.NumNodes = 0 + } else { + x.NumNodes = (int32)(z.C.IntV(r.DecodeInt64(), 32)) + } + case "Servers": + if r.TryDecodeAsNil() { + x.Servers = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeServerInfo((*[]*NodeServerInfo)(&x.Servers), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.LastContact)); yyxt16 != nil { + z.DecExtension(x.LastContact, yyxt16) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj18 int + var yyb18 bool + var yyhl18 bool = l >= 0 + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HeartbeatTTL = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt20 != nil { + z.DecExtension(x.HeartbeatTTL, yyxt20) + } else { + x.HeartbeatTTL = (time.Duration)(r.DecodeInt64()) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.EvalIDs, d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LeaderRPCAddr = "" + } else { + x.LeaderRPCAddr = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NumNodes = 0 + } else { + x.NumNodes = (int32)(z.C.IntV(r.DecodeInt64(), 32)) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Servers = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeServerInfo((*[]*NodeServerInfo)(&x.Servers), d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt31 := z.Extension(z.I2Rtid(x.LastContact)); yyxt31 != nil { + z.DecExtension(x.LastContact, yyxt31) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj18-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeDrainUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.EvalIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.EvalIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalIDs`) + } + r.WriteMapElemValue() + if x.EvalIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.EvalIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeDrainUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeDrainUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeModifyIndex": + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + case "EvalIDs": + if r.TryDecodeAsNil() { + x.EvalIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.EvalIDs, d) + } + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeDrainUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.EvalIDs, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeEligibilityUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.EvalIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.EvalIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalIDs`) + } + r.WriteMapElemValue() + if x.EvalIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.EvalIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeEligibilityUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeEligibilityUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeModifyIndex": + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + case "EvalIDs": + if r.TryDecodeAsNil() { + x.EvalIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.EvalIDs, d) + } + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeEligibilityUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.EvalIDs, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeAllocsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) + } + r.WriteMapElemValue() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeAllocsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeAllocsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Allocs": + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeAllocsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeClientAllocsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringUint64V(x.Allocs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) + } + r.WriteMapElemValue() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringUint64V(x.Allocs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.MigrateTokens == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.MigrateTokens, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MigrateTokens\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MigrateTokens`) + } + r.WriteMapElemValue() + if x.MigrateTokens == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.MigrateTokens, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.EncExtension(x.LastContact, yyxt13) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { + z.EncExtension(x.LastContact, yyxt14) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeClientAllocsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeClientAllocsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Allocs": + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + z.F.DecMapStringUint64X(&x.Allocs, d) + } + } + case "MigrateTokens": + if r.TryDecodeAsNil() { + x.MigrateTokens = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.MigrateTokens, d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.DecExtension(x.LastContact, yyxt10) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeClientAllocsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + z.F.DecMapStringUint64X(&x.Allocs, d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MigrateTokens = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.MigrateTokens, d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { + z.DecExtension(x.LastContact, yyxt19) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *SingleNodeResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Node == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Node == nil { + r.EncodeNil() + } else { + x.Node.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Node\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Node`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Node == nil { + r.EncodeNil() + } else { + x.Node.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SingleNodeResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SingleNodeResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Node": + if r.TryDecodeAsNil() { + if true && x.Node != nil { + x.Node = nil + } + } else { + if x.Node == nil { + x.Node = new(Node) + } + + x.Node.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SingleNodeResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Node != nil { + x.Node = nil + } + } else { + if x.Node == nil { + x.Node = new(Node) + } + + x.Node.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Nodes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeListStub(([]*NodeListStub)(x.Nodes), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Nodes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Nodes`) + } + r.WriteMapElemValue() + if x.Nodes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeListStub(([]*NodeListStub)(x.Nodes), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Nodes": + if r.TryDecodeAsNil() { + x.Nodes = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeListStub((*[]*NodeListStub)(&x.Nodes), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Nodes = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeListStub((*[]*NodeListStub)(&x.Nodes), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *SingleJobResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Job == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SingleJobResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SingleJobResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SingleJobResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobSummaryResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.JobSummary == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.JobSummary == nil { + r.EncodeNil() + } else { + x.JobSummary.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobSummary\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobSummary`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.JobSummary == nil { + r.EncodeNil() + } else { + x.JobSummary.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobSummaryResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobSummaryResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobSummary": + if r.TryDecodeAsNil() { + if true && x.JobSummary != nil { + x.JobSummary = nil + } + } else { + if x.JobSummary == nil { + x.JobSummary = new(JobSummary) + } + + x.JobSummary.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobSummaryResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.JobSummary != nil { + x.JobSummary = nil + } + } else { + if x.JobSummary == nil { + x.JobSummary = new(JobSummary) + } + + x.JobSummary.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobDispatchResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DispatchedJobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DispatchedJobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DispatchedJobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DispatchedJobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DispatchedJobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DispatchedJobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobDispatchResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobDispatchResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DispatchedJobID": + if r.TryDecodeAsNil() { + x.DispatchedJobID = "" + } else { + x.DispatchedJobID = (string)(r.DecodeString()) + } + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "JobCreateIndex": + if r.TryDecodeAsNil() { + x.JobCreateIndex = 0 + } else { + x.JobCreateIndex = (uint64)(r.DecodeUint64()) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobDispatchResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DispatchedJobID = "" + } else { + x.DispatchedJobID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobCreateIndex = 0 + } else { + x.JobCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Jobs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoJobListStub(([]*JobListStub)(x.Jobs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Jobs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Jobs`) + } + r.WriteMapElemValue() + if x.Jobs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoJobListStub(([]*JobListStub)(x.Jobs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Jobs": + if r.TryDecodeAsNil() { + x.Jobs = nil + } else { + if false { + } else { + h.decSlicePtrtoJobListStub((*[]*JobListStub)(&x.Jobs), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Jobs = nil + } else { + if false { + } else { + h.decSlicePtrtoJobListStub((*[]*JobListStub)(&x.Jobs), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobVersionsRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Diffs)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Diffs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Diffs`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Diffs)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { + z.EncExtension(x.MaxQueryTime, yyxt19) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.EncExtension(x.MaxQueryTime, yyxt20) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobVersionsRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobVersionsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Diffs": + if r.TryDecodeAsNil() { + x.Diffs = false + } else { + x.Diffs = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobVersionsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Diffs = false + } else { + x.Diffs = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobVersionsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Versions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoJob(([]*Job)(x.Versions), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Versions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Versions`) + } + r.WriteMapElemValue() + if x.Versions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoJob(([]*Job)(x.Versions), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Diffs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoJobDiff(([]*JobDiff)(x.Diffs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Diffs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Diffs`) + } + r.WriteMapElemValue() + if x.Diffs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoJobDiff(([]*JobDiff)(x.Diffs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.EncExtension(x.LastContact, yyxt13) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { + z.EncExtension(x.LastContact, yyxt14) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobVersionsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobVersionsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Versions": + if r.TryDecodeAsNil() { + x.Versions = nil + } else { + if false { + } else { + h.decSlicePtrtoJob((*[]*Job)(&x.Versions), d) + } + } + case "Diffs": + if r.TryDecodeAsNil() { + x.Diffs = nil + } else { + if false { + } else { + h.decSlicePtrtoJobDiff((*[]*JobDiff)(&x.Diffs), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.DecExtension(x.LastContact, yyxt10) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobVersionsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Versions = nil + } else { + if false { + } else { + h.decSlicePtrtoJob((*[]*Job)(&x.Versions), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Diffs = nil + } else { + if false { + } else { + h.decSlicePtrtoJobDiff((*[]*JobDiff)(&x.Diffs), d) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { + z.DecExtension(x.LastContact, yyxt19) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobPlanResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + var yyn3 bool + if x.Annotations == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Annotations == nil { + r.EncodeNil() + } else { + x.Annotations.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Annotations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Annotations == nil { + r.EncodeNil() + } else { + x.Annotations.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.FailedTGAllocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FailedTGAllocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FailedTGAllocs`) + } + r.WriteMapElemValue() + if x.FailedTGAllocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.CreatedEvals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.CreatedEvals), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreatedEvals\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreatedEvals`) + } + r.WriteMapElemValue() + if x.CreatedEvals == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.CreatedEvals), e) + } + } + } + var yyn15 bool + if x.Diff == nil { + yyn15 = true + goto LABEL15 + } + LABEL15: + if yyr2 || yy2arr2 { + if yyn15 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Diff == nil { + r.EncodeNil() + } else { + x.Diff.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Diff\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Diff`) + } + r.WriteMapElemValue() + if yyn15 { + r.EncodeNil() + } else { + if x.Diff == nil { + r.EncodeNil() + } else { + x.Diff.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.NextPeriodicLaunch) + } else if yyxt19 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt19 != nil { + z.EncExtension(x.NextPeriodicLaunch, yyxt19) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.NextPeriodicLaunch) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.NextPeriodicLaunch) + } else { + z.EncFallback(x.NextPeriodicLaunch) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NextPeriodicLaunch\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NextPeriodicLaunch`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.NextPeriodicLaunch) + } else if yyxt20 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt20 != nil { + z.EncExtension(x.NextPeriodicLaunch, yyxt20) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.NextPeriodicLaunch) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.NextPeriodicLaunch) + } else { + z.EncFallback(x.NextPeriodicLaunch) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Warnings\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Warnings`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobPlanResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobPlanResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Annotations": + if r.TryDecodeAsNil() { + if true && x.Annotations != nil { + x.Annotations = nil + } + } else { + if x.Annotations == nil { + x.Annotations = new(PlanAnnotations) + } + + x.Annotations.CodecDecodeSelf(d) + } + case "FailedTGAllocs": + if r.TryDecodeAsNil() { + x.FailedTGAllocs = nil + } else { + if false { + } else { + h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) + } + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + case "CreatedEvals": + if r.TryDecodeAsNil() { + x.CreatedEvals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.CreatedEvals), d) + } + } + case "Diff": + if r.TryDecodeAsNil() { + if true && x.Diff != nil { + x.Diff = nil + } + } else { + if x.Diff == nil { + x.Diff = new(JobDiff) + } + + x.Diff.CodecDecodeSelf(d) + } + case "NextPeriodicLaunch": + if r.TryDecodeAsNil() { + x.NextPeriodicLaunch = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.NextPeriodicLaunch = r.DecodeTime() + } else if yyxt12 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt12 != nil { + z.DecExtension(x.NextPeriodicLaunch, yyxt12) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.NextPeriodicLaunch) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.NextPeriodicLaunch) + } else { + z.DecFallback(&x.NextPeriodicLaunch, false) + } + } + case "Warnings": + if r.TryDecodeAsNil() { + x.Warnings = "" + } else { + x.Warnings = (string)(r.DecodeString()) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobPlanResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Annotations != nil { + x.Annotations = nil + } + } else { + if x.Annotations == nil { + x.Annotations = new(PlanAnnotations) + } + + x.Annotations.CodecDecodeSelf(d) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FailedTGAllocs = nil + } else { + if false { + } else { + h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreatedEvals = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.CreatedEvals), d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Diff != nil { + x.Diff = nil + } + } else { + if x.Diff == nil { + x.Diff = new(JobDiff) + } + + x.Diff.CodecDecodeSelf(d) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NextPeriodicLaunch = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.NextPeriodicLaunch = r.DecodeTime() + } else if yyxt24 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt24 != nil { + z.DecExtension(x.NextPeriodicLaunch, yyxt24) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.NextPeriodicLaunch) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.NextPeriodicLaunch) + } else { + z.DecFallback(&x.NextPeriodicLaunch, false) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Warnings = "" + } else { + x.Warnings = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *SingleAllocResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Alloc == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Alloc == nil { + r.EncodeNil() + } else { + x.Alloc.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Alloc\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Alloc`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Alloc == nil { + r.EncodeNil() + } else { + x.Alloc.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SingleAllocResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SingleAllocResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Alloc": + if r.TryDecodeAsNil() { + if true && x.Alloc != nil { + x.Alloc = nil + } + } else { + if x.Alloc == nil { + x.Alloc = new(Allocation) + } + + x.Alloc.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SingleAllocResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Alloc != nil { + x.Alloc = nil + } + } else { + if x.Alloc == nil { + x.Alloc = new(Allocation) + } + + x.Alloc.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocsGetResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) + } + r.WriteMapElemValue() + if x.Allocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocsGetResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocsGetResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Allocs": + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocsGetResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocs = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobAllocationsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocations`) + } + r.WriteMapElemValue() + if x.Allocations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobAllocationsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobAllocationsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Allocations": + if r.TryDecodeAsNil() { + x.Allocations = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobAllocationsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocations = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobEvaluationsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evaluations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evaluations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evaluations`) + } + r.WriteMapElemValue() + if x.Evaluations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobEvaluationsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobEvaluationsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Evaluations": + if r.TryDecodeAsNil() { + x.Evaluations = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobEvaluationsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Evaluations = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *SingleEvalResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Eval == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Eval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SingleEvalResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SingleEvalResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Eval": + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SingleEvalResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalDequeueResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + var yyn3 bool + if x.Eval == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Eval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Eval == nil { + r.EncodeNil() + } else { + x.Eval.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Token\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.WaitIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"WaitIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `WaitIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.WaitIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.LastContact)); yyxt16 != nil { + z.EncExtension(x.LastContact, yyxt16) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { + z.EncExtension(x.LastContact, yyxt17) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalDequeueResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalDequeueResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Eval": + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + case "Token": + if r.TryDecodeAsNil() { + x.Token = "" + } else { + x.Token = (string)(r.DecodeString()) + } + case "WaitIndex": + if r.TryDecodeAsNil() { + x.WaitIndex = 0 + } else { + x.WaitIndex = (uint64)(r.DecodeUint64()) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { + z.DecExtension(x.LastContact, yyxt9) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalDequeueResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Eval != nil { + x.Eval = nil + } + } else { + if x.Eval == nil { + x.Eval = new(Evaluation) + } + + x.Eval.CodecDecodeSelf(d) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Token = "" + } else { + x.Token = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WaitIndex = 0 + } else { + x.WaitIndex = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { + z.DecExtension(x.LastContact, yyxt17) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *PlanResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + var yyn3 bool + if x.Result == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Result == nil { + r.EncodeNil() + } else { + x.Result.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Result\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Result`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Result == nil { + r.EncodeNil() + } else { + x.Result.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PlanResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PlanResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Result": + if r.TryDecodeAsNil() { + if true && x.Result != nil { + x.Result = nil + } + } else { + if x.Result == nil { + x.Result = new(PlanResult) + } + + x.Result.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PlanResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Result != nil { + x.Result = nil + } + } else { + if x.Result == nil { + x.Result = new(PlanResult) + } + + x.Result.CodecDecodeSelf(d) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocations`) + } + r.WriteMapElemValue() + if x.Allocations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Allocations": + if r.TryDecodeAsNil() { + x.Allocations = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocations = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Deployments == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeployment(([]*Deployment)(x.Deployments), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deployments\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deployments`) + } + r.WriteMapElemValue() + if x.Deployments == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeployment(([]*Deployment)(x.Deployments), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Deployments": + if r.TryDecodeAsNil() { + x.Deployments = nil + } else { + if false { + } else { + h.decSlicePtrtoDeployment((*[]*Deployment)(&x.Deployments), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Deployments = nil + } else { + if false { + } else { + h.decSlicePtrtoDeployment((*[]*Deployment)(&x.Deployments), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Evaluations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Evaluations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Evaluations`) + } + r.WriteMapElemValue() + if x.Evaluations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Evaluations": + if r.TryDecodeAsNil() { + x.Evaluations = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Evaluations = nil + } else { + if false { + } else { + h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *EvalAllocationsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Allocations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Allocations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Allocations`) + } + r.WriteMapElemValue() + if x.Allocations == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EvalAllocationsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EvalAllocationsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Allocations": + if r.TryDecodeAsNil() { + x.Allocations = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EvalAllocationsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Allocations = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *PeriodicForceResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PeriodicForceResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PeriodicForceResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PeriodicForceResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.EvalCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.DeploymentModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.DeploymentModifyIndex)) + } + } + var yyn12 bool + if x.RevertedJobVersion == nil { + yyn12 = true + goto LABEL12 + } + LABEL12: + if yyr2 || yy2arr2 { + if yyn12 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.RevertedJobVersion == nil { + r.EncodeNil() + } else { + yy13 := *x.RevertedJobVersion + if false { + } else { + r.EncodeUint(uint64(yy13)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RevertedJobVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RevertedJobVersion`) + } + r.WriteMapElemValue() + if yyn12 { + r.EncodeNil() + } else { + if x.RevertedJobVersion == nil { + r.EncodeNil() + } else { + yy15 := *x.RevertedJobVersion + if false { + } else { + r.EncodeUint(uint64(yy15)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "EvalCreateIndex": + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + case "DeploymentModifyIndex": + if r.TryDecodeAsNil() { + x.DeploymentModifyIndex = 0 + } else { + x.DeploymentModifyIndex = (uint64)(r.DecodeUint64()) + } + case "RevertedJobVersion": + if r.TryDecodeAsNil() { + if true && x.RevertedJobVersion != nil { + x.RevertedJobVersion = nil + } + } else { + if x.RevertedJobVersion == nil { + x.RevertedJobVersion = new(uint64) + } + + if false { + } else { + *x.RevertedJobVersion = (uint64)(r.DecodeUint64()) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalCreateIndex = 0 + } else { + x.EvalCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentModifyIndex = 0 + } else { + x.DeploymentModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.RevertedJobVersion != nil { + x.RevertedJobVersion = nil + } + } else { + if x.RevertedJobVersion == nil { + x.RevertedJobVersion = new(uint64) + } + + if false { + } else { + *x.RevertedJobVersion = (uint64)(r.DecodeUint64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeConnQueryResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Connected)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Connected\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Connected`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Connected)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Established) + } else if yyxt7 := z.Extension(z.I2Rtid(x.Established)); yyxt7 != nil { + z.EncExtension(x.Established, yyxt7) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Established) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Established) + } else { + z.EncFallback(x.Established) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Established\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Established`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Established) + } else if yyxt8 := z.Extension(z.I2Rtid(x.Established)); yyxt8 != nil { + z.EncExtension(x.Established, yyxt8) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Established) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Established) + } else { + z.EncFallback(x.Established) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.EncExtension(x.LastContact, yyxt13) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { + z.EncExtension(x.LastContact, yyxt14) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeConnQueryResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeConnQueryResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Connected": + if r.TryDecodeAsNil() { + x.Connected = false + } else { + x.Connected = (bool)(r.DecodeBool()) + } + case "Established": + if r.TryDecodeAsNil() { + x.Established = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Established = r.DecodeTime() + } else if yyxt6 := z.Extension(z.I2Rtid(x.Established)); yyxt6 != nil { + z.DecExtension(x.Established, yyxt6) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Established) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Established) + } else { + z.DecFallback(&x.Established, false) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { + z.DecExtension(x.LastContact, yyxt9) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeConnQueryResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Connected = false + } else { + x.Connected = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Established = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Established = r.DecodeTime() + } else if yyxt14 := z.Extension(z.I2Rtid(x.Established)); yyxt14 != nil { + z.DecExtension(x.Established, yyxt14) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Established) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Established) + } else { + z.DecFallback(&x.Established, false) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { + z.DecExtension(x.LastContact, yyxt17) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *EmitNodeEventsRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodeEvents == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoNodeEvent((map[string][]*NodeEvent)(x.NodeEvents), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeEvents\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvents`) + } + r.WriteMapElemValue() + if x.NodeEvents == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoNodeEvent((map[string][]*NodeEvent)(x.NodeEvents), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EmitNodeEventsRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EmitNodeEventsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeEvents": + if r.TryDecodeAsNil() { + x.NodeEvents = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoNodeEvent((*map[string][]*NodeEvent)(&x.NodeEvents), d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EmitNodeEventsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeEvents = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoNodeEvent((*map[string][]*NodeEvent)(&x.NodeEvents), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *EmitNodeEventsResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EmitNodeEventsResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EmitNodeEventsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EmitNodeEventsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeEvent) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Message\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Message`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Subsystem))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Subsystem)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Subsystem\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Subsystem`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Subsystem))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Subsystem)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Details == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Details, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Details\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Details`) + } + r.WriteMapElemValue() + if x.Details == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Details, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Timestamp) + } else if yyxt13 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt13 != nil { + z.EncExtension(x.Timestamp, yyxt13) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Timestamp) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Timestamp) + } else { + z.EncFallback(x.Timestamp) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Timestamp\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Timestamp`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Timestamp) + } else if yyxt14 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt14 != nil { + z.EncExtension(x.Timestamp, yyxt14) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Timestamp) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Timestamp) + } else { + z.EncFallback(x.Timestamp) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeEvent) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeEvent) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = (string)(r.DecodeString()) + } + case "Subsystem": + if r.TryDecodeAsNil() { + x.Subsystem = "" + } else { + x.Subsystem = (string)(r.DecodeString()) + } + case "Details": + if r.TryDecodeAsNil() { + x.Details = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Details, d) + } + } + case "Timestamp": + if r.TryDecodeAsNil() { + x.Timestamp = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Timestamp = r.DecodeTime() + } else if yyxt9 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt9 != nil { + z.DecExtension(x.Timestamp, yyxt9) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Timestamp) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Timestamp) + } else { + z.DecFallback(&x.Timestamp, false) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeEvent) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Subsystem = "" + } else { + x.Subsystem = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Details = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Details, d) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Timestamp = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Timestamp = r.DecodeTime() + } else if yyxt17 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt17 != nil { + z.DecExtension(x.Timestamp, yyxt17) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Timestamp) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Timestamp) + } else { + z.DecFallback(&x.Timestamp, false) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *DrainSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.Deadline)); yyxt4 != nil { + z.EncExtension(x.Deadline, yyxt4) + } else { + r.EncodeInt(int64(x.Deadline)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deadline\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deadline`) + } + r.WriteMapElemValue() + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { + z.EncExtension(x.Deadline, yyxt5) + } else { + r.EncodeInt(int64(x.Deadline)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.IgnoreSystemJobs)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"IgnoreSystemJobs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `IgnoreSystemJobs`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.IgnoreSystemJobs)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DrainSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DrainSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Deadline": + if r.TryDecodeAsNil() { + x.Deadline = 0 + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { + z.DecExtension(x.Deadline, yyxt5) + } else { + x.Deadline = (time.Duration)(r.DecodeInt64()) + } + } + case "IgnoreSystemJobs": + if r.TryDecodeAsNil() { + x.IgnoreSystemJobs = false + } else { + x.IgnoreSystemJobs = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DrainSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Deadline = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.Deadline)); yyxt9 != nil { + z.DecExtension(x.Deadline, yyxt9) + } else { + x.Deadline = (time.Duration)(r.DecodeInt64()) + } + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.IgnoreSystemJobs = false + } else { + x.IgnoreSystemJobs = (bool)(r.DecodeBool()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *DrainStrategy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.Deadline)); yyxt4 != nil { + z.EncExtension(x.Deadline, yyxt4) + } else { + r.EncodeInt(int64(x.Deadline)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deadline\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deadline`) + } + r.WriteMapElemValue() + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { + z.EncExtension(x.Deadline, yyxt5) + } else { + r.EncodeInt(int64(x.Deadline)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.IgnoreSystemJobs)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"IgnoreSystemJobs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `IgnoreSystemJobs`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.IgnoreSystemJobs)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.ForceDeadline) + } else if yyxt10 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt10 != nil { + z.EncExtension(x.ForceDeadline, yyxt10) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.ForceDeadline) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.ForceDeadline) + } else { + z.EncFallback(x.ForceDeadline) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ForceDeadline\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ForceDeadline`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.ForceDeadline) + } else if yyxt11 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt11 != nil { + z.EncExtension(x.ForceDeadline, yyxt11) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.ForceDeadline) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.ForceDeadline) + } else { + z.EncFallback(x.ForceDeadline) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.StartedAt) + } else if yyxt13 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt13 != nil { + z.EncExtension(x.StartedAt, yyxt13) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.StartedAt) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartedAt) + } else { + z.EncFallback(x.StartedAt) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StartedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StartedAt`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.StartedAt) + } else if yyxt14 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt14 != nil { + z.EncExtension(x.StartedAt, yyxt14) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.StartedAt) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartedAt) + } else { + z.EncFallback(x.StartedAt) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DrainStrategy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DrainStrategy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Deadline": + if r.TryDecodeAsNil() { + x.DrainSpec.Deadline = 0 + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { + z.DecExtension(x.Deadline, yyxt5) + } else { + x.Deadline = (time.Duration)(r.DecodeInt64()) + } + } + case "IgnoreSystemJobs": + if r.TryDecodeAsNil() { + x.DrainSpec.IgnoreSystemJobs = false + } else { + x.IgnoreSystemJobs = (bool)(r.DecodeBool()) + } + case "ForceDeadline": + if r.TryDecodeAsNil() { + x.ForceDeadline = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.ForceDeadline = r.DecodeTime() + } else if yyxt8 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt8 != nil { + z.DecExtension(x.ForceDeadline, yyxt8) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.ForceDeadline) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.ForceDeadline) + } else { + z.DecFallback(&x.ForceDeadline, false) + } + } + case "StartedAt": + if r.TryDecodeAsNil() { + x.StartedAt = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.StartedAt = r.DecodeTime() + } else if yyxt10 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt10 != nil { + z.DecExtension(x.StartedAt, yyxt10) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.StartedAt) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.StartedAt) + } else { + z.DecFallback(&x.StartedAt, false) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DrainStrategy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DrainSpec.Deadline = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.Deadline)); yyxt13 != nil { + z.DecExtension(x.Deadline, yyxt13) + } else { + x.Deadline = (time.Duration)(r.DecodeInt64()) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DrainSpec.IgnoreSystemJobs = false + } else { + x.IgnoreSystemJobs = (bool)(r.DecodeBool()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ForceDeadline = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.ForceDeadline = r.DecodeTime() + } else if yyxt16 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt16 != nil { + z.DecExtension(x.ForceDeadline, yyxt16) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.ForceDeadline) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.ForceDeadline) + } else { + z.DecFallback(&x.ForceDeadline, false) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StartedAt = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.StartedAt = r.DecodeTime() + } else if yyxt18 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt18 != nil { + z.DecExtension(x.StartedAt, yyxt18) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.StartedAt) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.StartedAt) + } else { + z.DecFallback(&x.StartedAt, false) + } + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(26) + } else { + r.WriteMapStart(26) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SecretID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Datacenter\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HTTPAddr))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HTTPAddr)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HTTPAddr\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HTTPAddr`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HTTPAddr))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HTTPAddr)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.TLSEnabled)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TLSEnabled\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TLSEnabled`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.TLSEnabled)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Attributes == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Attributes, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Attributes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Attributes`) + } + r.WriteMapElemValue() + if x.Attributes == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Attributes, e) + } + } + } + var yyn24 bool + if x.NodeResources == nil { + yyn24 = true + goto LABEL24 + } + LABEL24: + if yyr2 || yy2arr2 { + if yyn24 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.NodeResources == nil { + r.EncodeNil() + } else { + x.NodeResources.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeResources`) + } + r.WriteMapElemValue() + if yyn24 { + r.EncodeNil() + } else { + if x.NodeResources == nil { + r.EncodeNil() + } else { + x.NodeResources.CodecEncodeSelf(e) + } + } + } + var yyn27 bool + if x.ReservedResources == nil { + yyn27 = true + goto LABEL27 + } + LABEL27: + if yyr2 || yy2arr2 { + if yyn27 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.ReservedResources == nil { + r.EncodeNil() + } else { + x.ReservedResources.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ReservedResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ReservedResources`) + } + r.WriteMapElemValue() + if yyn27 { + r.EncodeNil() + } else { + if x.ReservedResources == nil { + r.EncodeNil() + } else { + x.ReservedResources.CodecEncodeSelf(e) + } + } + } + var yyn30 bool + if x.Resources == nil { + yyn30 = true + goto LABEL30 + } + LABEL30: + if yyr2 || yy2arr2 { + if yyn30 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Resources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) + } + r.WriteMapElemValue() + if yyn30 { + r.EncodeNil() + } else { + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } + var yyn33 bool + if x.Reserved == nil { + yyn33 = true + goto LABEL33 + } + LABEL33: + if yyr2 || yy2arr2 { + if yyn33 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Reserved == nil { + r.EncodeNil() + } else { + x.Reserved.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Reserved\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Reserved`) + } + r.WriteMapElemValue() + if yyn33 { + r.EncodeNil() + } else { + if x.Reserved == nil { + r.EncodeNil() + } else { + x.Reserved.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Links == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Links, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Links\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Links`) + } + r.WriteMapElemValue() + if x.Links == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Links, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Meta\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) + } + r.WriteMapElemValue() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeClass\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeClass`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ComputedClass))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ComputedClass)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ComputedClass\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ComputedClass`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ComputedClass))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ComputedClass)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Drain)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Drain\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Drain`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Drain)) + } + } + var yyn51 bool + if x.DrainStrategy == nil { + yyn51 = true + goto LABEL51 + } + LABEL51: + if yyr2 || yy2arr2 { + if yyn51 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.DrainStrategy == nil { + r.EncodeNil() + } else { + x.DrainStrategy.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DrainStrategy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DrainStrategy`) + } + r.WriteMapElemValue() + if yyn51 { + r.EncodeNil() + } else { + if x.DrainStrategy == nil { + r.EncodeNil() + } else { + x.DrainStrategy.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SchedulingEligibility\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulingEligibility`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.StatusUpdatedAt)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusUpdatedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusUpdatedAt`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.StatusUpdatedAt)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Events == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeEvent(([]*NodeEvent)(x.Events), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Events\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Events`) + } + r.WriteMapElemValue() + if x.Events == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeEvent(([]*NodeEvent)(x.Events), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Drivers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Drivers\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Drivers`) + } + r.WriteMapElemValue() + if x.Drivers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.HostVolumes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoClientHostVolumeConfig((map[string]*ClientHostVolumeConfig)(x.HostVolumes), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HostVolumes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HostVolumes`) + } + r.WriteMapElemValue() + if x.HostVolumes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoClientHostVolumeConfig((map[string]*ClientHostVolumeConfig)(x.HostVolumes), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "SecretID": + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + case "Datacenter": + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "HTTPAddr": + if r.TryDecodeAsNil() { + x.HTTPAddr = "" + } else { + x.HTTPAddr = (string)(r.DecodeString()) + } + case "TLSEnabled": + if r.TryDecodeAsNil() { + x.TLSEnabled = false + } else { + x.TLSEnabled = (bool)(r.DecodeBool()) + } + case "Attributes": + if r.TryDecodeAsNil() { + x.Attributes = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Attributes, d) + } + } + case "NodeResources": + if r.TryDecodeAsNil() { + if true && x.NodeResources != nil { + x.NodeResources = nil + } + } else { + if x.NodeResources == nil { + x.NodeResources = new(NodeResources) + } + + x.NodeResources.CodecDecodeSelf(d) + } + case "ReservedResources": + if r.TryDecodeAsNil() { + if true && x.ReservedResources != nil { + x.ReservedResources = nil + } + } else { + if x.ReservedResources == nil { + x.ReservedResources = new(NodeReservedResources) + } + + x.ReservedResources.CodecDecodeSelf(d) + } + case "Resources": + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + case "Reserved": + if r.TryDecodeAsNil() { + if true && x.Reserved != nil { + x.Reserved = nil + } + } else { + if x.Reserved == nil { + x.Reserved = new(Resources) + } + + x.Reserved.CodecDecodeSelf(d) + } + case "Links": + if r.TryDecodeAsNil() { + x.Links = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Links, d) + } + } + case "Meta": + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + case "NodeClass": + if r.TryDecodeAsNil() { + x.NodeClass = "" + } else { + x.NodeClass = (string)(r.DecodeString()) + } + case "ComputedClass": + if r.TryDecodeAsNil() { + x.ComputedClass = "" + } else { + x.ComputedClass = (string)(r.DecodeString()) + } + case "Drain": + if r.TryDecodeAsNil() { + x.Drain = false + } else { + x.Drain = (bool)(r.DecodeBool()) + } + case "DrainStrategy": + if r.TryDecodeAsNil() { + if true && x.DrainStrategy != nil { + x.DrainStrategy = nil + } + } else { + if x.DrainStrategy == nil { + x.DrainStrategy = new(DrainStrategy) + } + + x.DrainStrategy.CodecDecodeSelf(d) + } + case "SchedulingEligibility": + if r.TryDecodeAsNil() { + x.SchedulingEligibility = "" + } else { + x.SchedulingEligibility = (string)(r.DecodeString()) + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "StatusDescription": + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + case "StatusUpdatedAt": + if r.TryDecodeAsNil() { + x.StatusUpdatedAt = 0 + } else { + x.StatusUpdatedAt = (int64)(r.DecodeInt64()) + } + case "Events": + if r.TryDecodeAsNil() { + x.Events = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeEvent((*[]*NodeEvent)(&x.Events), d) + } + } + case "Drivers": + if r.TryDecodeAsNil() { + x.Drivers = nil + } else { + if false { + } else { + h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) + } + } + case "HostVolumes": + if r.TryDecodeAsNil() { + x.HostVolumes = nil + } else { + if false { + } else { + h.decMapstringPtrtoClientHostVolumeConfig((*map[string]*ClientHostVolumeConfig)(&x.HostVolumes), d) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj36 int + var yyb36 bool + var yyhl36 bool = l >= 0 + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HTTPAddr = "" + } else { + x.HTTPAddr = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TLSEnabled = false + } else { + x.TLSEnabled = (bool)(r.DecodeBool()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Attributes = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Attributes, d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.NodeResources != nil { + x.NodeResources = nil + } + } else { + if x.NodeResources == nil { + x.NodeResources = new(NodeResources) + } + + x.NodeResources.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.ReservedResources != nil { + x.ReservedResources = nil + } + } else { + if x.ReservedResources == nil { + x.ReservedResources = new(NodeReservedResources) + } + + x.ReservedResources.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Reserved != nil { + x.Reserved = nil + } + } else { + if x.Reserved == nil { + x.Reserved = new(Resources) + } + + x.Reserved.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Links = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Links, d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeClass = "" + } else { + x.NodeClass = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ComputedClass = "" + } else { + x.ComputedClass = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Drain = false + } else { + x.Drain = (bool)(r.DecodeBool()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DrainStrategy != nil { + x.DrainStrategy = nil + } + } else { + if x.DrainStrategy == nil { + x.DrainStrategy = new(DrainStrategy) + } + + x.DrainStrategy.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SchedulingEligibility = "" + } else { + x.SchedulingEligibility = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusUpdatedAt = 0 + } else { + x.StatusUpdatedAt = (int64)(r.DecodeInt64()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Events = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeEvent((*[]*NodeEvent)(&x.Events), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Drivers = nil + } else { + if false { + } else { + h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HostVolumes = nil + } else { + if false { + } else { + h.decMapstringPtrtoClientHostVolumeConfig((*map[string]*ClientHostVolumeConfig)(&x.HostVolumes), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj36-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeListStub) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(13) + } else { + r.WriteMapStart(13) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Address\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Address`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Datacenter\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeClass\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeClass`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Version))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Version)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Version\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Version`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Version))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Version)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Drain)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Drain\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Drain`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Drain)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SchedulingEligibility\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulingEligibility`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Drivers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Drivers\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Drivers`) + } + r.WriteMapElemValue() + if x.Drivers == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeListStub) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Address": + if r.TryDecodeAsNil() { + x.Address = "" + } else { + x.Address = (string)(r.DecodeString()) + } + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Datacenter": + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "NodeClass": + if r.TryDecodeAsNil() { + x.NodeClass = "" + } else { + x.NodeClass = (string)(r.DecodeString()) + } + case "Version": + if r.TryDecodeAsNil() { + x.Version = "" + } else { + x.Version = (string)(r.DecodeString()) + } + case "Drain": + if r.TryDecodeAsNil() { + x.Drain = false + } else { + x.Drain = (bool)(r.DecodeBool()) + } + case "SchedulingEligibility": + if r.TryDecodeAsNil() { + x.SchedulingEligibility = "" + } else { + x.SchedulingEligibility = (string)(r.DecodeString()) + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "StatusDescription": + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + case "Drivers": + if r.TryDecodeAsNil() { + x.Drivers = nil + } else { + if false { + } else { + h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj18 int + var yyb18 bool + var yyhl18 bool = l >= 0 + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Address = "" + } else { + x.Address = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Datacenter = "" + } else { + x.Datacenter = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeClass = "" + } else { + x.NodeClass = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Version = "" + } else { + x.Version = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Drain = false + } else { + x.Drain = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SchedulingEligibility = "" + } else { + x.SchedulingEligibility = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Drivers = nil + } else { + if false { + } else { + h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj18-1, "") + } + r.ReadArrayEnd() +} + +func (x *Resources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.CPU)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CPU\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CPU`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CPU)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MemoryMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DiskMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.IOPS)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"IOPS\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `IOPS`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.IOPS)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Networks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) + } + r.WriteMapElemValue() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Devices == nil { + r.EncodeNil() + } else { + x.Devices.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Devices\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) + } + r.WriteMapElemValue() + if x.Devices == nil { + r.EncodeNil() + } else { + x.Devices.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Resources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Resources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "CPU": + if r.TryDecodeAsNil() { + x.CPU = 0 + } else { + x.CPU = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "MemoryMB": + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "DiskMB": + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "IOPS": + if r.TryDecodeAsNil() { + x.IOPS = 0 + } else { + x.IOPS = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Networks": + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + case "Devices": + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + x.Devices.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Resources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CPU = 0 + } else { + x.CPU = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.IOPS = 0 + } else { + x.IOPS = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + x.Devices.CodecDecodeSelf(d) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x ResourceDevices) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encResourceDevices((ResourceDevices)(x), e) + } + } +} + +func (x *ResourceDevices) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decResourceDevices((*ResourceDevices)(x), d) + } +} + +func (x *Port) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Label))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Label)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Label\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Label`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Label))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Label)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Value)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Value\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Value`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Value)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.To)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"To\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `To`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.To)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Port) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Port) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Label": + if r.TryDecodeAsNil() { + x.Label = "" + } else { + x.Label = (string)(r.DecodeString()) + } + case "Value": + if r.TryDecodeAsNil() { + x.Value = 0 + } else { + x.Value = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "To": + if r.TryDecodeAsNil() { + x.To = 0 + } else { + x.To = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Port) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Label = "" + } else { + x.Label = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Value = 0 + } else { + x.Value = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.To = 0 + } else { + x.To = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *NetworkResource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Mode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Mode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Device))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Device)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Device\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Device`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Device))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Device)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.CIDR))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.CIDR)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CIDR\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CIDR`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.CIDR))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.CIDR)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.IP))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.IP)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"IP\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `IP`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.IP))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.IP)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MBits)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MBits\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MBits`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MBits)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.ReservedPorts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePort(([]Port)(x.ReservedPorts), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ReservedPorts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ReservedPorts`) + } + r.WriteMapElemValue() + if x.ReservedPorts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePort(([]Port)(x.ReservedPorts), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.DynamicPorts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePort(([]Port)(x.DynamicPorts), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DynamicPorts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DynamicPorts`) + } + r.WriteMapElemValue() + if x.DynamicPorts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePort(([]Port)(x.DynamicPorts), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NetworkResource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NetworkResource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Mode": + if r.TryDecodeAsNil() { + x.Mode = "" + } else { + x.Mode = (string)(r.DecodeString()) + } + case "Device": + if r.TryDecodeAsNil() { + x.Device = "" + } else { + x.Device = (string)(r.DecodeString()) + } + case "CIDR": + if r.TryDecodeAsNil() { + x.CIDR = "" + } else { + x.CIDR = (string)(r.DecodeString()) + } + case "IP": + if r.TryDecodeAsNil() { + x.IP = "" + } else { + x.IP = (string)(r.DecodeString()) + } + case "MBits": + if r.TryDecodeAsNil() { + x.MBits = 0 + } else { + x.MBits = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "ReservedPorts": + if r.TryDecodeAsNil() { + x.ReservedPorts = nil + } else { + if false { + } else { + h.decSlicePort((*[]Port)(&x.ReservedPorts), d) + } + } + case "DynamicPorts": + if r.TryDecodeAsNil() { + x.DynamicPorts = nil + } else { + if false { + } else { + h.decSlicePort((*[]Port)(&x.DynamicPorts), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NetworkResource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Mode = "" + } else { + x.Mode = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Device = "" + } else { + x.Device = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CIDR = "" + } else { + x.CIDR = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.IP = "" + } else { + x.IP = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MBits = 0 + } else { + x.MBits = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ReservedPorts = nil + } else { + if false { + } else { + h.decSlicePort((*[]Port)(&x.ReservedPorts), d) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DynamicPorts = nil + } else { + if false { + } else { + h.decSlicePort((*[]Port)(&x.DynamicPorts), d) + } + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x Networks) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encNetworks((Networks)(x), e) + } + } +} + +func (x *Networks) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decNetworks((*Networks)(x), d) + } +} + +func (x *RequestedDevice) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Count)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Count\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Count`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Count)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Constraints == nil { + r.EncodeNil() + } else { + x.Constraints.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Constraints\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) + } + r.WriteMapElemValue() + if x.Constraints == nil { + r.EncodeNil() + } else { + x.Constraints.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Affinities == nil { + r.EncodeNil() + } else { + x.Affinities.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Affinities\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) + } + r.WriteMapElemValue() + if x.Affinities == nil { + r.EncodeNil() + } else { + x.Affinities.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RequestedDevice) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RequestedDevice) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Count": + if r.TryDecodeAsNil() { + x.Count = 0 + } else { + x.Count = (uint64)(r.DecodeUint64()) + } + case "Constraints": + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + x.Constraints.CodecDecodeSelf(d) + } + case "Affinities": + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + x.Affinities.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RequestedDevice) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Count = 0 + } else { + x.Count = (uint64)(r.DecodeUint64()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + x.Constraints.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + x.Affinities.CodecDecodeSelf(d) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy4 := &x.Cpu + yy4.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Cpu\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Cpu`) + } + r.WriteMapElemValue() + yy6 := &x.Cpu + yy6.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy9 := &x.Memory + yy9.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Memory\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Memory`) + } + r.WriteMapElemValue() + yy11 := &x.Memory + yy11.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy14 := &x.Disk + yy14.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Disk\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Disk`) + } + r.WriteMapElemValue() + yy16 := &x.Disk + yy16.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Networks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) + } + r.WriteMapElemValue() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Devices == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeDeviceResource(([]*NodeDeviceResource)(x.Devices), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Devices\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) + } + r.WriteMapElemValue() + if x.Devices == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeDeviceResource(([]*NodeDeviceResource)(x.Devices), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Cpu": + if r.TryDecodeAsNil() { + x.Cpu = NodeCpuResources{} + } else { + x.Cpu.CodecDecodeSelf(d) + } + case "Memory": + if r.TryDecodeAsNil() { + x.Memory = NodeMemoryResources{} + } else { + x.Memory.CodecDecodeSelf(d) + } + case "Disk": + if r.TryDecodeAsNil() { + x.Disk = NodeDiskResources{} + } else { + x.Disk.CodecDecodeSelf(d) + } + case "Networks": + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + case "Devices": + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeDeviceResource((*[]*NodeDeviceResource)(&x.Devices), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Cpu = NodeCpuResources{} + } else { + x.Cpu.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Memory = NodeMemoryResources{} + } else { + x.Memory.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Disk = NodeDiskResources{} + } else { + x.Disk.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeDeviceResource((*[]*NodeDeviceResource)(&x.Devices), d) + } + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeCpuResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.CpuShares)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CpuShares\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CpuShares`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CpuShares)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeCpuResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeCpuResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "CpuShares": + if r.TryDecodeAsNil() { + x.CpuShares = 0 + } else { + x.CpuShares = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeCpuResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CpuShares = 0 + } else { + x.CpuShares = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeMemoryResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MemoryMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeMemoryResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeMemoryResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "MemoryMB": + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeMemoryResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeDiskResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DiskMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeDiskResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeDiskResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DiskMB": + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeDiskResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeviceIdTuple) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Vendor\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Vendor`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeviceIdTuple) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeviceIdTuple) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Vendor": + if r.TryDecodeAsNil() { + x.Vendor = "" + } else { + x.Vendor = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeviceIdTuple) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Vendor = "" + } else { + x.Vendor = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeDeviceResource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Vendor\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Vendor`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Instances == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeDevice(([]*NodeDevice)(x.Instances), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Instances\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Instances`) + } + r.WriteMapElemValue() + if x.Instances == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeDevice(([]*NodeDevice)(x.Instances), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Attributes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtostructs_Attribute((map[string]*pkg1_structs.Attribute)(x.Attributes), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Attributes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Attributes`) + } + r.WriteMapElemValue() + if x.Attributes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtostructs_Attribute((map[string]*pkg1_structs.Attribute)(x.Attributes), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeDeviceResource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeDeviceResource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Vendor": + if r.TryDecodeAsNil() { + x.Vendor = "" + } else { + x.Vendor = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Instances": + if r.TryDecodeAsNil() { + x.Instances = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeDevice((*[]*NodeDevice)(&x.Instances), d) + } + } + case "Attributes": + if r.TryDecodeAsNil() { + x.Attributes = nil + } else { + if false { + } else { + h.decMapstringPtrtostructs_Attribute((*map[string]*pkg1_structs.Attribute)(&x.Attributes), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeDeviceResource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Vendor = "" + } else { + x.Vendor = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Instances = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeDevice((*[]*NodeDevice)(&x.Instances), d) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Attributes = nil + } else { + if false { + } else { + h.decMapstringPtrtostructs_Attribute((*map[string]*pkg1_structs.Attribute)(&x.Attributes), d) + } + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeDevice) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Healthy)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Healthy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Healthy`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Healthy)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) + } + } + } + var yyn12 bool + if x.Locality == nil { + yyn12 = true + goto LABEL12 + } + LABEL12: + if yyr2 || yy2arr2 { + if yyn12 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Locality == nil { + r.EncodeNil() + } else { + x.Locality.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Locality\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Locality`) + } + r.WriteMapElemValue() + if yyn12 { + r.EncodeNil() + } else { + if x.Locality == nil { + r.EncodeNil() + } else { + x.Locality.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeDevice) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeDevice) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Healthy": + if r.TryDecodeAsNil() { + x.Healthy = false + } else { + x.Healthy = (bool)(r.DecodeBool()) + } + case "HealthDescription": + if r.TryDecodeAsNil() { + x.HealthDescription = "" + } else { + x.HealthDescription = (string)(r.DecodeString()) + } + case "Locality": + if r.TryDecodeAsNil() { + if true && x.Locality != nil { + x.Locality = nil + } + } else { + if x.Locality == nil { + x.Locality = new(NodeDeviceLocality) + } + + x.Locality.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeDevice) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Healthy = false + } else { + x.Healthy = (bool)(r.DecodeBool()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthDescription = "" + } else { + x.HealthDescription = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Locality != nil { + x.Locality = nil + } + } else { + if x.Locality == nil { + x.Locality = new(NodeDeviceLocality) + } + + x.Locality.CodecDecodeSelf(d) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeDeviceLocality) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PciBusID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PciBusID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PciBusID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PciBusID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PciBusID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PciBusID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeDeviceLocality) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeDeviceLocality) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "PciBusID": + if r.TryDecodeAsNil() { + x.PciBusID = "" + } else { + x.PciBusID = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeDeviceLocality) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PciBusID = "" + } else { + x.PciBusID = (string)(r.DecodeString()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeReservedResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy4 := &x.Cpu + yy4.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Cpu\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Cpu`) + } + r.WriteMapElemValue() + yy6 := &x.Cpu + yy6.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy9 := &x.Memory + yy9.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Memory\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Memory`) + } + r.WriteMapElemValue() + yy11 := &x.Memory + yy11.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy14 := &x.Disk + yy14.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Disk\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Disk`) + } + r.WriteMapElemValue() + yy16 := &x.Disk + yy16.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy19 := &x.Networks + yy19.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Networks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) + } + r.WriteMapElemValue() + yy21 := &x.Networks + yy21.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeReservedResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeReservedResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Cpu": + if r.TryDecodeAsNil() { + x.Cpu = NodeReservedCpuResources{} + } else { + x.Cpu.CodecDecodeSelf(d) + } + case "Memory": + if r.TryDecodeAsNil() { + x.Memory = NodeReservedMemoryResources{} + } else { + x.Memory.CodecDecodeSelf(d) + } + case "Disk": + if r.TryDecodeAsNil() { + x.Disk = NodeReservedDiskResources{} + } else { + x.Disk.CodecDecodeSelf(d) + } + case "Networks": + if r.TryDecodeAsNil() { + x.Networks = NodeReservedNetworkResources{} + } else { + x.Networks.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeReservedResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Cpu = NodeReservedCpuResources{} + } else { + x.Cpu.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Memory = NodeReservedMemoryResources{} + } else { + x.Memory.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Disk = NodeReservedDiskResources{} + } else { + x.Disk.CodecDecodeSelf(d) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Networks = NodeReservedNetworkResources{} + } else { + x.Networks.CodecDecodeSelf(d) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeReservedCpuResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.CpuShares)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CpuShares\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CpuShares`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CpuShares)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeReservedCpuResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeReservedCpuResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "CpuShares": + if r.TryDecodeAsNil() { + x.CpuShares = 0 + } else { + x.CpuShares = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeReservedCpuResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CpuShares = 0 + } else { + x.CpuShares = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeReservedMemoryResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MemoryMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeReservedMemoryResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeReservedMemoryResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "MemoryMB": + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeReservedMemoryResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeReservedDiskResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DiskMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeReservedDiskResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeReservedDiskResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DiskMB": + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeReservedDiskResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeReservedNetworkResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ReservedHostPorts))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ReservedHostPorts)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ReservedHostPorts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ReservedHostPorts`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ReservedHostPorts))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ReservedHostPorts)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeReservedNetworkResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeReservedNetworkResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ReservedHostPorts": + if r.TryDecodeAsNil() { + x.ReservedHostPorts = "" + } else { + x.ReservedHostPorts = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeReservedNetworkResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ReservedHostPorts = "" + } else { + x.ReservedHostPorts = (string)(r.DecodeString()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocatedResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoAllocatedTaskResources((map[string]*AllocatedTaskResources)(x.Tasks), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tasks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) + } + r.WriteMapElemValue() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoAllocatedTaskResources((map[string]*AllocatedTaskResources)(x.Tasks), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy7 := &x.Shared + yy7.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Shared\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Shared`) + } + r.WriteMapElemValue() + yy9 := &x.Shared + yy9.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocatedResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocatedResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Tasks": + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decMapstringPtrtoAllocatedTaskResources((*map[string]*AllocatedTaskResources)(&x.Tasks), d) + } + } + case "Shared": + if r.TryDecodeAsNil() { + x.Shared = AllocatedSharedResources{} + } else { + x.Shared.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocatedResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decMapstringPtrtoAllocatedTaskResources((*map[string]*AllocatedTaskResources)(&x.Tasks), d) + } + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Shared = AllocatedSharedResources{} + } else { + x.Shared.CodecDecodeSelf(d) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocatedTaskResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy4 := &x.Cpu + yy4.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Cpu\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Cpu`) + } + r.WriteMapElemValue() + yy6 := &x.Cpu + yy6.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy9 := &x.Memory + yy9.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Memory\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Memory`) + } + r.WriteMapElemValue() + yy11 := &x.Memory + yy11.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Networks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) + } + r.WriteMapElemValue() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Devices == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocatedDeviceResource(([]*AllocatedDeviceResource)(x.Devices), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Devices\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) + } + r.WriteMapElemValue() + if x.Devices == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocatedDeviceResource(([]*AllocatedDeviceResource)(x.Devices), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocatedTaskResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocatedTaskResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Cpu": + if r.TryDecodeAsNil() { + x.Cpu = AllocatedCpuResources{} + } else { + x.Cpu.CodecDecodeSelf(d) + } + case "Memory": + if r.TryDecodeAsNil() { + x.Memory = AllocatedMemoryResources{} + } else { + x.Memory.CodecDecodeSelf(d) + } + case "Networks": + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + case "Devices": + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocatedDeviceResource((*[]*AllocatedDeviceResource)(&x.Devices), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocatedTaskResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Cpu = AllocatedCpuResources{} + } else { + x.Cpu.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Memory = AllocatedMemoryResources{} + } else { + x.Memory.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Devices = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocatedDeviceResource((*[]*AllocatedDeviceResource)(&x.Devices), d) + } + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocatedSharedResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Networks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) + } + r.WriteMapElemValue() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DiskMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.DiskMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocatedSharedResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocatedSharedResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Networks": + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + case "DiskMB": + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocatedSharedResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DiskMB = 0 + } else { + x.DiskMB = (int64)(r.DecodeInt64()) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocatedCpuResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.CpuShares)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CpuShares\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CpuShares`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CpuShares)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocatedCpuResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocatedCpuResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "CpuShares": + if r.TryDecodeAsNil() { + x.CpuShares = 0 + } else { + x.CpuShares = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocatedCpuResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CpuShares = 0 + } else { + x.CpuShares = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocatedMemoryResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MemoryMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MemoryMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocatedMemoryResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocatedMemoryResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "MemoryMB": + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocatedMemoryResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MemoryMB = 0 + } else { + x.MemoryMB = (int64)(r.DecodeInt64()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x AllocatedDevices) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encAllocatedDevices((AllocatedDevices)(x), e) + } + } +} + +func (x *AllocatedDevices) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decAllocatedDevices((*AllocatedDevices)(x), d) + } +} + +func (x *AllocatedDeviceResource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Vendor\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Vendor`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.DeviceIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.DeviceIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeviceIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeviceIDs`) + } + r.WriteMapElemValue() + if x.DeviceIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.DeviceIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocatedDeviceResource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocatedDeviceResource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Vendor": + if r.TryDecodeAsNil() { + x.Vendor = "" + } else { + x.Vendor = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "DeviceIDs": + if r.TryDecodeAsNil() { + x.DeviceIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.DeviceIDs, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocatedDeviceResource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Vendor = "" + } else { + x.Vendor = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeviceIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.DeviceIDs, d) + } + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *ComparableResources) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy4 := &x.Flattened + yy4.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Flattened\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Flattened`) + } + r.WriteMapElemValue() + yy6 := &x.Flattened + yy6.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy9 := &x.Shared + yy9.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Shared\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Shared`) + } + r.WriteMapElemValue() + yy11 := &x.Shared + yy11.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ComparableResources) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ComparableResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Flattened": + if r.TryDecodeAsNil() { + x.Flattened = AllocatedTaskResources{} + } else { + x.Flattened.CodecDecodeSelf(d) + } + case "Shared": + if r.TryDecodeAsNil() { + x.Shared = AllocatedSharedResources{} + } else { + x.Shared.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ComparableResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Flattened = AllocatedTaskResources{} + } else { + x.Flattened.CodecDecodeSelf(d) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Shared = AllocatedSharedResources{} + } else { + x.Shared.CodecDecodeSelf(d) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *Job) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(29) + } else { + r.WriteMapStart(29) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Stop)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Stop\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Stop`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Stop)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ParentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ParentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Priority\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllAtOnce)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllAtOnce\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllAtOnce`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllAtOnce)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Datacenters == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Datacenters, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Datacenters\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenters`) + } + r.WriteMapElemValue() + if x.Datacenters == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Datacenters, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Constraints == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Constraints\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) + } + r.WriteMapElemValue() + if x.Constraints == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Affinities == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Affinities\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) + } + r.WriteMapElemValue() + if x.Affinities == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Spreads == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Spreads\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Spreads`) + } + r.WriteMapElemValue() + if x.Spreads == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.TaskGroups == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskGroup(([]*TaskGroup)(x.TaskGroups), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskGroups\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroups`) + } + r.WriteMapElemValue() + if x.TaskGroups == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskGroup(([]*TaskGroup)(x.TaskGroups), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy46 := &x.Update + yy46.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Update\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Update`) + } + r.WriteMapElemValue() + yy48 := &x.Update + yy48.CodecEncodeSelf(e) + } + var yyn50 bool + if x.Periodic == nil { + yyn50 = true + goto LABEL50 + } + LABEL50: + if yyr2 || yy2arr2 { + if yyn50 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Periodic == nil { + r.EncodeNil() + } else { + x.Periodic.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Periodic\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Periodic`) + } + r.WriteMapElemValue() + if yyn50 { + r.EncodeNil() + } else { + if x.Periodic == nil { + r.EncodeNil() + } else { + x.Periodic.CodecEncodeSelf(e) + } + } + } + var yyn53 bool + if x.ParameterizedJob == nil { + yyn53 = true + goto LABEL53 + } + LABEL53: + if yyr2 || yy2arr2 { + if yyn53 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.ParameterizedJob == nil { + r.EncodeNil() + } else { + x.ParameterizedJob.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ParameterizedJob\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ParameterizedJob`) + } + r.WriteMapElemValue() + if yyn53 { + r.EncodeNil() + } else { + if x.ParameterizedJob == nil { + r.EncodeNil() + } else { + x.ParameterizedJob.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Dispatched)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Dispatched\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Dispatched`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Dispatched)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Payload == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Payload)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Payload\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Payload`) + } + r.WriteMapElemValue() + if x.Payload == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Payload)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Meta\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) + } + r.WriteMapElemValue() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"VaultToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `VaultToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Stable)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Stable\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Stable`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Stable)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Version)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Version\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Version`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Version)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.SubmitTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SubmitTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SubmitTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.SubmitTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Job) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Job) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Stop": + if r.TryDecodeAsNil() { + x.Stop = false + } else { + x.Stop = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "ParentID": + if r.TryDecodeAsNil() { + x.ParentID = "" + } else { + x.ParentID = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Priority": + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "AllAtOnce": + if r.TryDecodeAsNil() { + x.AllAtOnce = false + } else { + x.AllAtOnce = (bool)(r.DecodeBool()) + } + case "Datacenters": + if r.TryDecodeAsNil() { + x.Datacenters = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Datacenters, d) + } + } + case "Constraints": + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + if false { + } else { + h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) + } + } + case "Affinities": + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + if false { + } else { + h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) + } + } + case "Spreads": + if r.TryDecodeAsNil() { + x.Spreads = nil + } else { + if false { + } else { + h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) + } + } + case "TaskGroups": + if r.TryDecodeAsNil() { + x.TaskGroups = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskGroup((*[]*TaskGroup)(&x.TaskGroups), d) + } + } + case "Update": + if r.TryDecodeAsNil() { + x.Update = UpdateStrategy{} + } else { + x.Update.CodecDecodeSelf(d) + } + case "Periodic": + if r.TryDecodeAsNil() { + if true && x.Periodic != nil { + x.Periodic = nil + } + } else { + if x.Periodic == nil { + x.Periodic = new(PeriodicConfig) + } + + x.Periodic.CodecDecodeSelf(d) + } + case "ParameterizedJob": + if r.TryDecodeAsNil() { + if true && x.ParameterizedJob != nil { + x.ParameterizedJob = nil + } + } else { + if x.ParameterizedJob == nil { + x.ParameterizedJob = new(ParameterizedJobConfig) + } + + x.ParameterizedJob.CodecDecodeSelf(d) + } + case "Dispatched": + if r.TryDecodeAsNil() { + x.Dispatched = false + } else { + x.Dispatched = (bool)(r.DecodeBool()) + } + case "Payload": + if r.TryDecodeAsNil() { + x.Payload = nil + } else { + if false { + } else { + x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) + } + } + case "Meta": + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + case "VaultToken": + if r.TryDecodeAsNil() { + x.VaultToken = "" + } else { + x.VaultToken = (string)(r.DecodeString()) + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "StatusDescription": + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + case "Stable": + if r.TryDecodeAsNil() { + x.Stable = false + } else { + x.Stable = (bool)(r.DecodeBool()) + } + case "Version": + if r.TryDecodeAsNil() { + x.Version = 0 + } else { + x.Version = (uint64)(r.DecodeUint64()) + } + case "SubmitTime": + if r.TryDecodeAsNil() { + x.SubmitTime = 0 + } else { + x.SubmitTime = (int64)(r.DecodeInt64()) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Job) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj40 int + var yyb40 bool + var yyhl40 bool = l >= 0 + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Stop = false + } else { + x.Stop = (bool)(r.DecodeBool()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ParentID = "" + } else { + x.ParentID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllAtOnce = false + } else { + x.AllAtOnce = (bool)(r.DecodeBool()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Datacenters = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Datacenters, d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + if false { + } else { + h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + if false { + } else { + h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Spreads = nil + } else { + if false { + } else { + h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskGroups = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskGroup((*[]*TaskGroup)(&x.TaskGroups), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Update = UpdateStrategy{} + } else { + x.Update.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Periodic != nil { + x.Periodic = nil + } + } else { + if x.Periodic == nil { + x.Periodic = new(PeriodicConfig) + } + + x.Periodic.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.ParameterizedJob != nil { + x.ParameterizedJob = nil + } + } else { + if x.ParameterizedJob == nil { + x.ParameterizedJob = new(ParameterizedJobConfig) + } + + x.ParameterizedJob.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Dispatched = false + } else { + x.Dispatched = (bool)(r.DecodeBool()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Payload = nil + } else { + if false { + } else { + x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.VaultToken = "" + } else { + x.VaultToken = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Stable = false + } else { + x.Stable = (bool)(r.DecodeBool()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Version = 0 + } else { + x.Version = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SubmitTime = 0 + } else { + x.SubmitTime = (int64)(r.DecodeInt64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj40-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobListStub) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(16) + } else { + r.WriteMapStart(16) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ParentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ParentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Datacenters == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Datacenters, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Datacenters\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenters`) + } + r.WriteMapElemValue() + if x.Datacenters == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Datacenters, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Priority\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Periodic)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Periodic\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Periodic`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Periodic)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.ParameterizedJob)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ParameterizedJob\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ParameterizedJob`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.ParameterizedJob)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Stop)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Stop\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Stop`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Stop)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } + var yyn36 bool + if x.JobSummary == nil { + yyn36 = true + goto LABEL36 + } + LABEL36: + if yyr2 || yy2arr2 { + if yyn36 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.JobSummary == nil { + r.EncodeNil() + } else { + x.JobSummary.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobSummary\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobSummary`) + } + r.WriteMapElemValue() + if yyn36 { + r.EncodeNil() + } else { + if x.JobSummary == nil { + r.EncodeNil() + } else { + x.JobSummary.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.SubmitTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SubmitTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SubmitTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.SubmitTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobListStub) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "ParentID": + if r.TryDecodeAsNil() { + x.ParentID = "" + } else { + x.ParentID = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Datacenters": + if r.TryDecodeAsNil() { + x.Datacenters = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Datacenters, d) + } + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Priority": + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Periodic": + if r.TryDecodeAsNil() { + x.Periodic = false + } else { + x.Periodic = (bool)(r.DecodeBool()) + } + case "ParameterizedJob": + if r.TryDecodeAsNil() { + x.ParameterizedJob = false + } else { + x.ParameterizedJob = (bool)(r.DecodeBool()) + } + case "Stop": + if r.TryDecodeAsNil() { + x.Stop = false + } else { + x.Stop = (bool)(r.DecodeBool()) + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "StatusDescription": + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + case "JobSummary": + if r.TryDecodeAsNil() { + if true && x.JobSummary != nil { + x.JobSummary = nil + } + } else { + if x.JobSummary == nil { + x.JobSummary = new(JobSummary) + } + + x.JobSummary.CodecDecodeSelf(d) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + case "SubmitTime": + if r.TryDecodeAsNil() { + x.SubmitTime = 0 + } else { + x.SubmitTime = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj21 int + var yyb21 bool + var yyhl21 bool = l >= 0 + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ParentID = "" + } else { + x.ParentID = (string)(r.DecodeString()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Datacenters = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Datacenters, d) + } + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Periodic = false + } else { + x.Periodic = (bool)(r.DecodeBool()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ParameterizedJob = false + } else { + x.ParameterizedJob = (bool)(r.DecodeBool()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Stop = false + } else { + x.Stop = (bool)(r.DecodeBool()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.JobSummary != nil { + x.JobSummary = nil + } + } else { + if x.JobSummary == nil { + x.JobSummary = new(JobSummary) + } + + x.JobSummary.CodecDecodeSelf(d) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SubmitTime = 0 + } else { + x.SubmitTime = (int64)(r.DecodeInt64()) + } + for { + yyj21++ + if yyhl21 { + yyb21 = yyj21 > l + } else { + yyb21 = r.CheckBreak() + } + if yyb21 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj21-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobSummary) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Summary == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringTaskGroupSummary((map[string]TaskGroupSummary)(x.Summary), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Summary\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Summary`) + } + r.WriteMapElemValue() + if x.Summary == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringTaskGroupSummary((map[string]TaskGroupSummary)(x.Summary), e) + } + } + } + var yyn12 bool + if x.Children == nil { + yyn12 = true + goto LABEL12 + } + LABEL12: + if yyr2 || yy2arr2 { + if yyn12 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Children == nil { + r.EncodeNil() + } else { + x.Children.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Children\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Children`) + } + r.WriteMapElemValue() + if yyn12 { + r.EncodeNil() + } else { + if x.Children == nil { + r.EncodeNil() + } else { + x.Children.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobSummary) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobSummary) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "Summary": + if r.TryDecodeAsNil() { + x.Summary = nil + } else { + if false { + } else { + h.decMapstringTaskGroupSummary((*map[string]TaskGroupSummary)(&x.Summary), d) + } + } + case "Children": + if r.TryDecodeAsNil() { + if true && x.Children != nil { + x.Children = nil + } + } else { + if x.Children == nil { + x.Children = new(JobChildrenSummary) + } + + x.Children.CodecDecodeSelf(d) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobSummary) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj11 int + var yyb11 bool + var yyhl11 bool = l >= 0 + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Summary = nil + } else { + if false { + } else { + h.decMapstringTaskGroupSummary((*map[string]TaskGroupSummary)(&x.Summary), d) + } + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Children != nil { + x.Children = nil + } + } else { + if x.Children == nil { + x.Children = new(JobChildrenSummary) + } + + x.Children.CodecDecodeSelf(d) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj11++ + if yyhl11 { + yyb11 = yyj11 > l + } else { + yyb11 = r.CheckBreak() + } + if yyb11 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj11-1, "") + } + r.ReadArrayEnd() +} + +func (x *JobChildrenSummary) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Pending)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Pending\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Pending`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Pending)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Running)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Running\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Running`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Running)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Dead)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Dead\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Dead`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Dead)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *JobChildrenSummary) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *JobChildrenSummary) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Pending": + if r.TryDecodeAsNil() { + x.Pending = 0 + } else { + x.Pending = (int64)(r.DecodeInt64()) + } + case "Running": + if r.TryDecodeAsNil() { + x.Running = 0 + } else { + x.Running = (int64)(r.DecodeInt64()) + } + case "Dead": + if r.TryDecodeAsNil() { + x.Dead = 0 + } else { + x.Dead = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *JobChildrenSummary) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Pending = 0 + } else { + x.Pending = (int64)(r.DecodeInt64()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Running = 0 + } else { + x.Running = (int64)(r.DecodeInt64()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Dead = 0 + } else { + x.Dead = (int64)(r.DecodeInt64()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *TaskGroupSummary) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Queued)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Queued\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Queued`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Queued)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Complete)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Complete\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Complete`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Complete)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Failed)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Failed\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Failed`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Failed)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Running)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Running\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Running`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Running)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Starting)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Starting\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Starting`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Starting)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Lost)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Lost\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Lost`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Lost)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskGroupSummary) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *TaskGroupSummary) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Queued": + if r.TryDecodeAsNil() { + x.Queued = 0 + } else { + x.Queued = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Complete": + if r.TryDecodeAsNil() { + x.Complete = 0 + } else { + x.Complete = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Failed": + if r.TryDecodeAsNil() { + x.Failed = 0 + } else { + x.Failed = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Running": + if r.TryDecodeAsNil() { + x.Running = 0 + } else { + x.Running = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Starting": + if r.TryDecodeAsNil() { + x.Starting = 0 + } else { + x.Starting = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Lost": + if r.TryDecodeAsNil() { + x.Lost = 0 + } else { + x.Lost = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskGroupSummary) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Queued = 0 + } else { + x.Queued = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Complete = 0 + } else { + x.Complete = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Failed = 0 + } else { + x.Failed = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Running = 0 + } else { + x.Running = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Starting = 0 + } else { + x.Starting = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Lost = 0 + } else { + x.Lost = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *UpdateStrategy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(x.Stagger)); yyxt4 != nil { + z.EncExtension(x.Stagger, yyxt4) + } else { + r.EncodeInt(int64(x.Stagger)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Stagger\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Stagger`) + } + r.WriteMapElemValue() + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Stagger)); yyxt5 != nil { + z.EncExtension(x.Stagger, yyxt5) + } else { + r.EncodeInt(int64(x.Stagger)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MaxParallel)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxParallel\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxParallel`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MaxParallel)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthCheck\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthCheck`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt13 != nil { + z.EncExtension(x.MinHealthyTime, yyxt13) + } else { + r.EncodeInt(int64(x.MinHealthyTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinHealthyTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinHealthyTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt14 != nil { + z.EncExtension(x.MinHealthyTime, yyxt14) + } else { + r.EncodeInt(int64(x.MinHealthyTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt16 != nil { + z.EncExtension(x.HealthyDeadline, yyxt16) + } else { + r.EncodeInt(int64(x.HealthyDeadline)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthyDeadline\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyDeadline`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt17 != nil { + z.EncExtension(x.HealthyDeadline, yyxt17) + } else { + r.EncodeInt(int64(x.HealthyDeadline)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt19 != nil { + z.EncExtension(x.ProgressDeadline, yyxt19) + } else { + r.EncodeInt(int64(x.ProgressDeadline)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ProgressDeadline\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ProgressDeadline`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt20 != nil { + z.EncExtension(x.ProgressDeadline, yyxt20) + } else { + r.EncodeInt(int64(x.ProgressDeadline)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AutoRevert)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AutoRevert\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AutoRevert`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AutoRevert)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AutoPromote)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AutoPromote\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AutoPromote`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AutoPromote)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Canary)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Canary\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Canary`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Canary)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *UpdateStrategy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *UpdateStrategy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Stagger": + if r.TryDecodeAsNil() { + x.Stagger = 0 + } else { + if false { + } else if yyxt5 := z.Extension(z.I2Rtid(x.Stagger)); yyxt5 != nil { + z.DecExtension(x.Stagger, yyxt5) + } else { + x.Stagger = (time.Duration)(r.DecodeInt64()) + } + } + case "MaxParallel": + if r.TryDecodeAsNil() { + x.MaxParallel = 0 + } else { + x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "HealthCheck": + if r.TryDecodeAsNil() { + x.HealthCheck = "" + } else { + x.HealthCheck = (string)(r.DecodeString()) + } + case "MinHealthyTime": + if r.TryDecodeAsNil() { + x.MinHealthyTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt9 != nil { + z.DecExtension(x.MinHealthyTime, yyxt9) + } else { + x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) + } + } + case "HealthyDeadline": + if r.TryDecodeAsNil() { + x.HealthyDeadline = 0 + } else { + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt11 != nil { + z.DecExtension(x.HealthyDeadline, yyxt11) + } else { + x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) + } + } + case "ProgressDeadline": + if r.TryDecodeAsNil() { + x.ProgressDeadline = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt13 != nil { + z.DecExtension(x.ProgressDeadline, yyxt13) + } else { + x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) + } + } + case "AutoRevert": + if r.TryDecodeAsNil() { + x.AutoRevert = false + } else { + x.AutoRevert = (bool)(r.DecodeBool()) + } + case "AutoPromote": + if r.TryDecodeAsNil() { + x.AutoPromote = false + } else { + x.AutoPromote = (bool)(r.DecodeBool()) + } + case "Canary": + if r.TryDecodeAsNil() { + x.Canary = 0 + } else { + x.Canary = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *UpdateStrategy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj17 int + var yyb17 bool + var yyhl17 bool = l >= 0 + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Stagger = 0 + } else { + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.Stagger)); yyxt19 != nil { + z.DecExtension(x.Stagger, yyxt19) + } else { + x.Stagger = (time.Duration)(r.DecodeInt64()) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxParallel = 0 + } else { + x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthCheck = "" + } else { + x.HealthCheck = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MinHealthyTime = 0 + } else { + if false { + } else if yyxt23 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt23 != nil { + z.DecExtension(x.MinHealthyTime, yyxt23) + } else { + x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthyDeadline = 0 + } else { + if false { + } else if yyxt25 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt25 != nil { + z.DecExtension(x.HealthyDeadline, yyxt25) + } else { + x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ProgressDeadline = 0 + } else { + if false { + } else if yyxt27 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt27 != nil { + z.DecExtension(x.ProgressDeadline, yyxt27) + } else { + x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AutoRevert = false + } else { + x.AutoRevert = (bool)(r.DecodeBool()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AutoPromote = false + } else { + x.AutoPromote = (bool)(r.DecodeBool()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Canary = 0 + } else { + x.Canary = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj17-1, "") + } + r.ReadArrayEnd() +} + +func (x *PeriodicConfig) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Enabled)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Enabled\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Enabled`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Enabled)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Spec))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Spec)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Spec\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Spec`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Spec))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Spec)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SpecType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SpecType)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SpecType\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SpecType`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SpecType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SpecType)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.ProhibitOverlap)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ProhibitOverlap\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ProhibitOverlap`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.ProhibitOverlap)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TimeZone))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TimeZone)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TimeZone\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TimeZone`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TimeZone))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TimeZone)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PeriodicConfig) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PeriodicConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Enabled": + if r.TryDecodeAsNil() { + x.Enabled = false + } else { + x.Enabled = (bool)(r.DecodeBool()) + } + case "Spec": + if r.TryDecodeAsNil() { + x.Spec = "" + } else { + x.Spec = (string)(r.DecodeString()) + } + case "SpecType": + if r.TryDecodeAsNil() { + x.SpecType = "" + } else { + x.SpecType = (string)(r.DecodeString()) + } + case "ProhibitOverlap": + if r.TryDecodeAsNil() { + x.ProhibitOverlap = false + } else { + x.ProhibitOverlap = (bool)(r.DecodeBool()) + } + case "TimeZone": + if r.TryDecodeAsNil() { + x.TimeZone = "" + } else { + x.TimeZone = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PeriodicConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Enabled = false + } else { + x.Enabled = (bool)(r.DecodeBool()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Spec = "" + } else { + x.Spec = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SpecType = "" + } else { + x.SpecType = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ProhibitOverlap = false + } else { + x.ProhibitOverlap = (bool)(r.DecodeBool()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TimeZone = "" + } else { + x.TimeZone = (string)(r.DecodeString()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *PeriodicLaunch) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Launch) + } else if yyxt10 := z.Extension(z.I2Rtid(x.Launch)); yyxt10 != nil { + z.EncExtension(x.Launch, yyxt10) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Launch) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Launch) + } else { + z.EncFallback(x.Launch) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Launch\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Launch`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Launch) + } else if yyxt11 := z.Extension(z.I2Rtid(x.Launch)); yyxt11 != nil { + z.EncExtension(x.Launch, yyxt11) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Launch) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Launch) + } else { + z.EncFallback(x.Launch) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PeriodicLaunch) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PeriodicLaunch) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "Launch": + if r.TryDecodeAsNil() { + x.Launch = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Launch = r.DecodeTime() + } else if yyxt7 := z.Extension(z.I2Rtid(x.Launch)); yyxt7 != nil { + z.DecExtension(x.Launch, yyxt7) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Launch) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Launch) + } else { + z.DecFallback(&x.Launch, false) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PeriodicLaunch) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Launch = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Launch = r.DecodeTime() + } else if yyxt14 := z.Extension(z.I2Rtid(x.Launch)); yyxt14 != nil { + z.DecExtension(x.Launch, yyxt14) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Launch) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Launch) + } else { + z.DecFallback(&x.Launch, false) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ParameterizedJobConfig) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Payload))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Payload)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Payload\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Payload`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Payload))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Payload)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.MetaRequired == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.MetaRequired, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MetaRequired\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MetaRequired`) + } + r.WriteMapElemValue() + if x.MetaRequired == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.MetaRequired, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.MetaOptional == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.MetaOptional, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MetaOptional\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MetaOptional`) + } + r.WriteMapElemValue() + if x.MetaOptional == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.MetaOptional, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ParameterizedJobConfig) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ParameterizedJobConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Payload": + if r.TryDecodeAsNil() { + x.Payload = "" + } else { + x.Payload = (string)(r.DecodeString()) + } + case "MetaRequired": + if r.TryDecodeAsNil() { + x.MetaRequired = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.MetaRequired, d) + } + } + case "MetaOptional": + if r.TryDecodeAsNil() { + x.MetaOptional = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.MetaOptional, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ParameterizedJobConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Payload = "" + } else { + x.Payload = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MetaRequired = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.MetaRequired, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MetaOptional = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.MetaOptional, d) + } + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *DispatchPayloadConfig) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.File))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.File)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"File\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `File`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.File))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.File)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DispatchPayloadConfig) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DispatchPayloadConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "File": + if r.TryDecodeAsNil() { + x.File = "" + } else { + x.File = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DispatchPayloadConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.File = "" + } else { + x.File = (string)(r.DecodeString()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Attempts)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Attempts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Attempts`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Attempts)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.Interval)); yyxt7 != nil { + z.EncExtension(x.Interval, yyxt7) + } else { + r.EncodeInt(int64(x.Interval)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Interval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Interval`) + } + r.WriteMapElemValue() + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Interval)); yyxt8 != nil { + z.EncExtension(x.Interval, yyxt8) + } else { + r.EncodeInt(int64(x.Interval)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.Delay)); yyxt10 != nil { + z.EncExtension(x.Delay, yyxt10) + } else { + r.EncodeInt(int64(x.Delay)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Delay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Delay`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.Delay)); yyxt11 != nil { + z.EncExtension(x.Delay, yyxt11) + } else { + r.EncodeInt(int64(x.Delay)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Mode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Mode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RestartPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Attempts": + if r.TryDecodeAsNil() { + x.Attempts = 0 + } else { + x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Interval": + if r.TryDecodeAsNil() { + x.Interval = 0 + } else { + if false { + } else if yyxt6 := z.Extension(z.I2Rtid(x.Interval)); yyxt6 != nil { + z.DecExtension(x.Interval, yyxt6) + } else { + x.Interval = (time.Duration)(r.DecodeInt64()) + } + } + case "Delay": + if r.TryDecodeAsNil() { + x.Delay = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Delay)); yyxt8 != nil { + z.DecExtension(x.Delay, yyxt8) + } else { + x.Delay = (time.Duration)(r.DecodeInt64()) + } + } + case "Mode": + if r.TryDecodeAsNil() { + x.Mode = "" + } else { + x.Mode = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RestartPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Attempts = 0 + } else { + x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Interval = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.Interval)); yyxt13 != nil { + z.DecExtension(x.Interval, yyxt13) + } else { + x.Interval = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Delay = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.Delay)); yyxt15 != nil { + z.DecExtension(x.Delay, yyxt15) + } else { + x.Delay = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Mode = "" + } else { + x.Mode = (string)(r.DecodeString()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ReschedulePolicy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Attempts)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Attempts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Attempts`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Attempts)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.Interval)); yyxt7 != nil { + z.EncExtension(x.Interval, yyxt7) + } else { + r.EncodeInt(int64(x.Interval)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Interval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Interval`) + } + r.WriteMapElemValue() + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Interval)); yyxt8 != nil { + z.EncExtension(x.Interval, yyxt8) + } else { + r.EncodeInt(int64(x.Interval)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.Delay)); yyxt10 != nil { + z.EncExtension(x.Delay, yyxt10) + } else { + r.EncodeInt(int64(x.Delay)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Delay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Delay`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.Delay)); yyxt11 != nil { + z.EncExtension(x.Delay, yyxt11) + } else { + r.EncodeInt(int64(x.Delay)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DelayFunction))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DelayFunction)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DelayFunction\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DelayFunction`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DelayFunction))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DelayFunction)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt16 != nil { + z.EncExtension(x.MaxDelay, yyxt16) + } else { + r.EncodeInt(int64(x.MaxDelay)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxDelay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxDelay`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt17 != nil { + z.EncExtension(x.MaxDelay, yyxt17) + } else { + r.EncodeInt(int64(x.MaxDelay)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Unlimited)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Unlimited\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Unlimited`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Unlimited)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ReschedulePolicy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ReschedulePolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Attempts": + if r.TryDecodeAsNil() { + x.Attempts = 0 + } else { + x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Interval": + if r.TryDecodeAsNil() { + x.Interval = 0 + } else { + if false { + } else if yyxt6 := z.Extension(z.I2Rtid(x.Interval)); yyxt6 != nil { + z.DecExtension(x.Interval, yyxt6) + } else { + x.Interval = (time.Duration)(r.DecodeInt64()) + } + } + case "Delay": + if r.TryDecodeAsNil() { + x.Delay = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Delay)); yyxt8 != nil { + z.DecExtension(x.Delay, yyxt8) + } else { + x.Delay = (time.Duration)(r.DecodeInt64()) + } + } + case "DelayFunction": + if r.TryDecodeAsNil() { + x.DelayFunction = "" + } else { + x.DelayFunction = (string)(r.DecodeString()) + } + case "MaxDelay": + if r.TryDecodeAsNil() { + x.MaxDelay = 0 + } else { + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt11 != nil { + z.DecExtension(x.MaxDelay, yyxt11) + } else { + x.MaxDelay = (time.Duration)(r.DecodeInt64()) + } + } + case "Unlimited": + if r.TryDecodeAsNil() { + x.Unlimited = false + } else { + x.Unlimited = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ReschedulePolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Attempts = 0 + } else { + x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Interval = 0 + } else { + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.Interval)); yyxt16 != nil { + z.DecExtension(x.Interval, yyxt16) + } else { + x.Interval = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Delay = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.Delay)); yyxt18 != nil { + z.DecExtension(x.Delay, yyxt18) + } else { + x.Delay = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DelayFunction = "" + } else { + x.DelayFunction = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxDelay = 0 + } else { + if false { + } else if yyxt21 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt21 != nil { + z.DecExtension(x.MaxDelay, yyxt21) + } else { + x.MaxDelay = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Unlimited = false + } else { + x.Unlimited = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *MigrateStrategy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MaxParallel)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxParallel\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxParallel`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MaxParallel)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthCheck\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthCheck`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt10 != nil { + z.EncExtension(x.MinHealthyTime, yyxt10) + } else { + r.EncodeInt(int64(x.MinHealthyTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinHealthyTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinHealthyTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt11 != nil { + z.EncExtension(x.MinHealthyTime, yyxt11) + } else { + r.EncodeInt(int64(x.MinHealthyTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt13 != nil { + z.EncExtension(x.HealthyDeadline, yyxt13) + } else { + r.EncodeInt(int64(x.HealthyDeadline)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthyDeadline\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyDeadline`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt14 != nil { + z.EncExtension(x.HealthyDeadline, yyxt14) + } else { + r.EncodeInt(int64(x.HealthyDeadline)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *MigrateStrategy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *MigrateStrategy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "MaxParallel": + if r.TryDecodeAsNil() { + x.MaxParallel = 0 + } else { + x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "HealthCheck": + if r.TryDecodeAsNil() { + x.HealthCheck = "" + } else { + x.HealthCheck = (string)(r.DecodeString()) + } + case "MinHealthyTime": + if r.TryDecodeAsNil() { + x.MinHealthyTime = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt7 != nil { + z.DecExtension(x.MinHealthyTime, yyxt7) + } else { + x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) + } + } + case "HealthyDeadline": + if r.TryDecodeAsNil() { + x.HealthyDeadline = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt9 != nil { + z.DecExtension(x.HealthyDeadline, yyxt9) + } else { + x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *MigrateStrategy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxParallel = 0 + } else { + x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthCheck = "" + } else { + x.HealthCheck = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MinHealthyTime = 0 + } else { + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt14 != nil { + z.DecExtension(x.MinHealthyTime, yyxt14) + } else { + x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthyDeadline = 0 + } else { + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt16 != nil { + z.DecExtension(x.HealthyDeadline, yyxt16) + } else { + x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) + } + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *TaskGroup) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(15) + } else { + r.WriteMapStart(15) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Count)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Count\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Count`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Count)) + } + } + var yyn9 bool + if x.Update == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Update == nil { + r.EncodeNil() + } else { + x.Update.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Update\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Update`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.Update == nil { + r.EncodeNil() + } else { + x.Update.CodecEncodeSelf(e) + } + } + } + var yyn12 bool + if x.Migrate == nil { + yyn12 = true + goto LABEL12 + } + LABEL12: + if yyr2 || yy2arr2 { + if yyn12 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Migrate == nil { + r.EncodeNil() + } else { + x.Migrate.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Migrate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) + } + r.WriteMapElemValue() + if yyn12 { + r.EncodeNil() + } else { + if x.Migrate == nil { + r.EncodeNil() + } else { + x.Migrate.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Constraints == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Constraints\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) + } + r.WriteMapElemValue() + if x.Constraints == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) + } + } + } + var yyn18 bool + if x.RestartPolicy == nil { + yyn18 = true + goto LABEL18 + } + LABEL18: + if yyr2 || yy2arr2 { + if yyn18 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.RestartPolicy == nil { + r.EncodeNil() + } else { + x.RestartPolicy.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RestartPolicy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RestartPolicy`) + } + r.WriteMapElemValue() + if yyn18 { + r.EncodeNil() + } else { + if x.RestartPolicy == nil { + r.EncodeNil() + } else { + x.RestartPolicy.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTask(([]*Task)(x.Tasks), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tasks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) + } + r.WriteMapElemValue() + if x.Tasks == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTask(([]*Task)(x.Tasks), e) + } + } + } + var yyn24 bool + if x.EphemeralDisk == nil { + yyn24 = true + goto LABEL24 + } + LABEL24: + if yyr2 || yy2arr2 { + if yyn24 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.EphemeralDisk == nil { + r.EncodeNil() + } else { + x.EphemeralDisk.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EphemeralDisk\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EphemeralDisk`) + } + r.WriteMapElemValue() + if yyn24 { + r.EncodeNil() + } else { + if x.EphemeralDisk == nil { + r.EncodeNil() + } else { + x.EphemeralDisk.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Meta\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) + } + r.WriteMapElemValue() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } + var yyn30 bool + if x.ReschedulePolicy == nil { + yyn30 = true + goto LABEL30 + } + LABEL30: + if yyr2 || yy2arr2 { + if yyn30 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.ReschedulePolicy == nil { + r.EncodeNil() + } else { + x.ReschedulePolicy.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ReschedulePolicy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ReschedulePolicy`) + } + r.WriteMapElemValue() + if yyn30 { + r.EncodeNil() + } else { + if x.ReschedulePolicy == nil { + r.EncodeNil() + } else { + x.ReschedulePolicy.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Affinities == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Affinities\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) + } + r.WriteMapElemValue() + if x.Affinities == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Spreads == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Spreads\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Spreads`) + } + r.WriteMapElemValue() + if x.Spreads == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Networks\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) + } + r.WriteMapElemValue() + if x.Networks == nil { + r.EncodeNil() + } else { + x.Networks.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Services == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoService(([]*Service)(x.Services), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Services\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Services`) + } + r.WriteMapElemValue() + if x.Services == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoService(([]*Service)(x.Services), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Volumes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoVolumeRequest((map[string]*VolumeRequest)(x.Volumes), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Volumes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Volumes`) + } + r.WriteMapElemValue() + if x.Volumes == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoVolumeRequest((map[string]*VolumeRequest)(x.Volumes), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskGroup) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *TaskGroup) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Count": + if r.TryDecodeAsNil() { + x.Count = 0 + } else { + x.Count = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Update": + if r.TryDecodeAsNil() { + if true && x.Update != nil { + x.Update = nil + } + } else { + if x.Update == nil { + x.Update = new(UpdateStrategy) + } + + x.Update.CodecDecodeSelf(d) + } + case "Migrate": + if r.TryDecodeAsNil() { + if true && x.Migrate != nil { + x.Migrate = nil + } + } else { + if x.Migrate == nil { + x.Migrate = new(MigrateStrategy) + } + + x.Migrate.CodecDecodeSelf(d) + } + case "Constraints": + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + if false { + } else { + h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) + } + } + case "RestartPolicy": + if r.TryDecodeAsNil() { + if true && x.RestartPolicy != nil { + x.RestartPolicy = nil + } + } else { + if x.RestartPolicy == nil { + x.RestartPolicy = new(RestartPolicy) + } + + x.RestartPolicy.CodecDecodeSelf(d) + } + case "Tasks": + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decSlicePtrtoTask((*[]*Task)(&x.Tasks), d) + } + } + case "EphemeralDisk": + if r.TryDecodeAsNil() { + if true && x.EphemeralDisk != nil { + x.EphemeralDisk = nil + } + } else { + if x.EphemeralDisk == nil { + x.EphemeralDisk = new(EphemeralDisk) + } + + x.EphemeralDisk.CodecDecodeSelf(d) + } + case "Meta": + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + case "ReschedulePolicy": + if r.TryDecodeAsNil() { + if true && x.ReschedulePolicy != nil { + x.ReschedulePolicy = nil + } + } else { + if x.ReschedulePolicy == nil { + x.ReschedulePolicy = new(ReschedulePolicy) + } + + x.ReschedulePolicy.CodecDecodeSelf(d) + } + case "Affinities": + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + if false { + } else { + h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) + } + } + case "Spreads": + if r.TryDecodeAsNil() { + x.Spreads = nil + } else { + if false { + } else { + h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) + } + } + case "Networks": + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + case "Services": + if r.TryDecodeAsNil() { + x.Services = nil + } else { + if false { + } else { + h.decSlicePtrtoService((*[]*Service)(&x.Services), d) + } + } + case "Volumes": + if r.TryDecodeAsNil() { + x.Volumes = nil + } else { + if false { + } else { + h.decMapstringPtrtoVolumeRequest((*map[string]*VolumeRequest)(&x.Volumes), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskGroup) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj26 int + var yyb26 bool + var yyhl26 bool = l >= 0 + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Count = 0 + } else { + x.Count = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Update != nil { + x.Update = nil + } + } else { + if x.Update == nil { + x.Update = new(UpdateStrategy) + } + + x.Update.CodecDecodeSelf(d) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Migrate != nil { + x.Migrate = nil + } + } else { + if x.Migrate == nil { + x.Migrate = new(MigrateStrategy) + } + + x.Migrate.CodecDecodeSelf(d) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + if false { + } else { + h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.RestartPolicy != nil { + x.RestartPolicy = nil + } + } else { + if x.RestartPolicy == nil { + x.RestartPolicy = new(RestartPolicy) + } + + x.RestartPolicy.CodecDecodeSelf(d) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tasks = nil + } else { + if false { + } else { + h.decSlicePtrtoTask((*[]*Task)(&x.Tasks), d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.EphemeralDisk != nil { + x.EphemeralDisk = nil + } + } else { + if x.EphemeralDisk == nil { + x.EphemeralDisk = new(EphemeralDisk) + } + + x.EphemeralDisk.CodecDecodeSelf(d) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.ReschedulePolicy != nil { + x.ReschedulePolicy = nil + } + } else { + if x.ReschedulePolicy == nil { + x.ReschedulePolicy = new(ReschedulePolicy) + } + + x.ReschedulePolicy.CodecDecodeSelf(d) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + if false { + } else { + h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Spreads = nil + } else { + if false { + } else { + h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Networks = nil + } else { + x.Networks.CodecDecodeSelf(d) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Services = nil + } else { + if false { + } else { + h.decSlicePtrtoService((*[]*Service)(&x.Services), d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Volumes = nil + } else { + if false { + } else { + h.decMapstringPtrtoVolumeRequest((*map[string]*VolumeRequest)(&x.Volumes), d) + } + } + for { + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj26-1, "") + } + r.ReadArrayEnd() +} + +func (x *CheckRestart) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Limit)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Limit\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Limit`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Limit)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.Grace)); yyxt7 != nil { + z.EncExtension(x.Grace, yyxt7) + } else { + r.EncodeInt(int64(x.Grace)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Grace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Grace`) + } + r.WriteMapElemValue() + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Grace)); yyxt8 != nil { + z.EncExtension(x.Grace, yyxt8) + } else { + r.EncodeInt(int64(x.Grace)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.IgnoreWarnings)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"IgnoreWarnings\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `IgnoreWarnings`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.IgnoreWarnings)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *CheckRestart) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *CheckRestart) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Limit": + if r.TryDecodeAsNil() { + x.Limit = 0 + } else { + x.Limit = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Grace": + if r.TryDecodeAsNil() { + x.Grace = 0 + } else { + if false { + } else if yyxt6 := z.Extension(z.I2Rtid(x.Grace)); yyxt6 != nil { + z.DecExtension(x.Grace, yyxt6) + } else { + x.Grace = (time.Duration)(r.DecodeInt64()) + } + } + case "IgnoreWarnings": + if r.TryDecodeAsNil() { + x.IgnoreWarnings = false + } else { + x.IgnoreWarnings = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *CheckRestart) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Limit = 0 + } else { + x.Limit = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Grace = 0 + } else { + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.Grace)); yyxt11 != nil { + z.DecExtension(x.Grace, yyxt11) + } else { + x.Grace = (time.Duration)(r.DecodeInt64()) + } + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.IgnoreWarnings = false + } else { + x.IgnoreWarnings = (bool)(r.DecodeBool()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *LogConfig) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MaxFiles)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxFiles\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxFiles`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MaxFiles)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.MaxFileSizeMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxFileSizeMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxFileSizeMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.MaxFileSizeMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *LogConfig) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *LogConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "MaxFiles": + if r.TryDecodeAsNil() { + x.MaxFiles = 0 + } else { + x.MaxFiles = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "MaxFileSizeMB": + if r.TryDecodeAsNil() { + x.MaxFileSizeMB = 0 + } else { + x.MaxFileSizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *LogConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxFiles = 0 + } else { + x.MaxFiles = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.MaxFileSizeMB = 0 + } else { + x.MaxFileSizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *Task) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(21) + } else { + r.WriteMapStart(21) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Driver\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Driver`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.User))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"User\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `User`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.User))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Config == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntfV(x.Config, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Config\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) + } + r.WriteMapElemValue() + if x.Config == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntfV(x.Config, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Env == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Env, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Env\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Env`) + } + r.WriteMapElemValue() + if x.Env == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Env, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Services == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoService(([]*Service)(x.Services), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Services\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Services`) + } + r.WriteMapElemValue() + if x.Services == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoService(([]*Service)(x.Services), e) + } + } + } + var yyn21 bool + if x.Vault == nil { + yyn21 = true + goto LABEL21 + } + LABEL21: + if yyr2 || yy2arr2 { + if yyn21 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Vault == nil { + r.EncodeNil() + } else { + x.Vault.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Vault\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Vault`) + } + r.WriteMapElemValue() + if yyn21 { + r.EncodeNil() + } else { + if x.Vault == nil { + r.EncodeNil() + } else { + x.Vault.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Templates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTemplate(([]*Template)(x.Templates), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Templates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Templates`) + } + r.WriteMapElemValue() + if x.Templates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTemplate(([]*Template)(x.Templates), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Constraints == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Constraints\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) + } + r.WriteMapElemValue() + if x.Constraints == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Affinities == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Affinities\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) + } + r.WriteMapElemValue() + if x.Affinities == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) + } + } + } + var yyn33 bool + if x.Resources == nil { + yyn33 = true + goto LABEL33 + } + LABEL33: + if yyr2 || yy2arr2 { + if yyn33 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Resources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) + } + r.WriteMapElemValue() + if yyn33 { + r.EncodeNil() + } else { + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } + var yyn36 bool + if x.DispatchPayload == nil { + yyn36 = true + goto LABEL36 + } + LABEL36: + if yyr2 || yy2arr2 { + if yyn36 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.DispatchPayload == nil { + r.EncodeNil() + } else { + x.DispatchPayload.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DispatchPayload\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DispatchPayload`) + } + r.WriteMapElemValue() + if yyn36 { + r.EncodeNil() + } else { + if x.DispatchPayload == nil { + r.EncodeNil() + } else { + x.DispatchPayload.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Meta\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) + } + r.WriteMapElemValue() + if x.Meta == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Meta, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt43 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt43 != nil { + z.EncExtension(x.KillTimeout, yyxt43) + } else { + r.EncodeInt(int64(x.KillTimeout)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KillTimeout\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KillTimeout`) + } + r.WriteMapElemValue() + if false { + } else if yyxt44 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt44 != nil { + z.EncExtension(x.KillTimeout, yyxt44) + } else { + r.EncodeInt(int64(x.KillTimeout)) + } + } + var yyn45 bool + if x.LogConfig == nil { + yyn45 = true + goto LABEL45 + } + LABEL45: + if yyr2 || yy2arr2 { + if yyn45 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.LogConfig == nil { + r.EncodeNil() + } else { + x.LogConfig.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LogConfig\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LogConfig`) + } + r.WriteMapElemValue() + if yyn45 { + r.EncodeNil() + } else { + if x.LogConfig == nil { + r.EncodeNil() + } else { + x.LogConfig.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Artifacts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskArtifact(([]*TaskArtifact)(x.Artifacts), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Artifacts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Artifacts`) + } + r.WriteMapElemValue() + if x.Artifacts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskArtifact(([]*TaskArtifact)(x.Artifacts), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Leader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Leader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Leader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Leader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt55 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt55 != nil { + z.EncExtension(x.ShutdownDelay, yyxt55) + } else { + r.EncodeInt(int64(x.ShutdownDelay)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ShutdownDelay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ShutdownDelay`) + } + r.WriteMapElemValue() + if false { + } else if yyxt56 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt56 != nil { + z.EncExtension(x.ShutdownDelay, yyxt56) + } else { + r.EncodeInt(int64(x.ShutdownDelay)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.VolumeMounts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoVolumeMount(([]*VolumeMount)(x.VolumeMounts), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"VolumeMounts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `VolumeMounts`) + } + r.WriteMapElemValue() + if x.VolumeMounts == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoVolumeMount(([]*VolumeMount)(x.VolumeMounts), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KillSignal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KillSignal`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + x.Kind.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Kind\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Kind`) + } + r.WriteMapElemValue() + x.Kind.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Task) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Task) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Driver": + if r.TryDecodeAsNil() { + x.Driver = "" + } else { + x.Driver = (string)(r.DecodeString()) + } + case "User": + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = (string)(r.DecodeString()) + } + case "Config": + if r.TryDecodeAsNil() { + x.Config = nil + } else { + if false { + } else { + z.F.DecMapStringIntfX(&x.Config, d) + } + } + case "Env": + if r.TryDecodeAsNil() { + x.Env = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Env, d) + } + } + case "Services": + if r.TryDecodeAsNil() { + x.Services = nil + } else { + if false { + } else { + h.decSlicePtrtoService((*[]*Service)(&x.Services), d) + } + } + case "Vault": + if r.TryDecodeAsNil() { + if true && x.Vault != nil { + x.Vault = nil + } + } else { + if x.Vault == nil { + x.Vault = new(Vault) + } + + x.Vault.CodecDecodeSelf(d) + } + case "Templates": + if r.TryDecodeAsNil() { + x.Templates = nil + } else { + if false { + } else { + h.decSlicePtrtoTemplate((*[]*Template)(&x.Templates), d) + } + } + case "Constraints": + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + if false { + } else { + h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) + } + } + case "Affinities": + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + if false { + } else { + h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) + } + } + case "Resources": + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + case "DispatchPayload": + if r.TryDecodeAsNil() { + if true && x.DispatchPayload != nil { + x.DispatchPayload = nil + } + } else { + if x.DispatchPayload == nil { + x.DispatchPayload = new(DispatchPayloadConfig) + } + + x.DispatchPayload.CodecDecodeSelf(d) + } + case "Meta": + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + case "KillTimeout": + if r.TryDecodeAsNil() { + x.KillTimeout = 0 + } else { + if false { + } else if yyxt25 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt25 != nil { + z.DecExtension(x.KillTimeout, yyxt25) + } else { + x.KillTimeout = (time.Duration)(r.DecodeInt64()) + } + } + case "LogConfig": + if r.TryDecodeAsNil() { + if true && x.LogConfig != nil { + x.LogConfig = nil + } + } else { + if x.LogConfig == nil { + x.LogConfig = new(LogConfig) + } + + x.LogConfig.CodecDecodeSelf(d) + } + case "Artifacts": + if r.TryDecodeAsNil() { + x.Artifacts = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskArtifact((*[]*TaskArtifact)(&x.Artifacts), d) + } + } + case "Leader": + if r.TryDecodeAsNil() { + x.Leader = false + } else { + x.Leader = (bool)(r.DecodeBool()) + } + case "ShutdownDelay": + if r.TryDecodeAsNil() { + x.ShutdownDelay = 0 + } else { + if false { + } else if yyxt31 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt31 != nil { + z.DecExtension(x.ShutdownDelay, yyxt31) + } else { + x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) + } + } + case "VolumeMounts": + if r.TryDecodeAsNil() { + x.VolumeMounts = nil + } else { + if false { + } else { + h.decSlicePtrtoVolumeMount((*[]*VolumeMount)(&x.VolumeMounts), d) + } + } + case "KillSignal": + if r.TryDecodeAsNil() { + x.KillSignal = "" + } else { + x.KillSignal = (string)(r.DecodeString()) + } + case "Kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Task) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj36 int + var yyb36 bool + var yyhl36 bool = l >= 0 + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Driver = "" + } else { + x.Driver = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Config = nil + } else { + if false { + } else { + z.F.DecMapStringIntfX(&x.Config, d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Env = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Env, d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Services = nil + } else { + if false { + } else { + h.decSlicePtrtoService((*[]*Service)(&x.Services), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Vault != nil { + x.Vault = nil + } + } else { + if x.Vault == nil { + x.Vault = new(Vault) + } + + x.Vault.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Templates = nil + } else { + if false { + } else { + h.decSlicePtrtoTemplate((*[]*Template)(&x.Templates), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Constraints = nil + } else { + if false { + } else { + h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Affinities = nil + } else { + if false { + } else { + h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DispatchPayload != nil { + x.DispatchPayload = nil + } + } else { + if x.DispatchPayload == nil { + x.DispatchPayload = new(DispatchPayloadConfig) + } + + x.DispatchPayload.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Meta = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Meta, d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KillTimeout = 0 + } else { + if false { + } else if yyxt58 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt58 != nil { + z.DecExtension(x.KillTimeout, yyxt58) + } else { + x.KillTimeout = (time.Duration)(r.DecodeInt64()) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.LogConfig != nil { + x.LogConfig = nil + } + } else { + if x.LogConfig == nil { + x.LogConfig = new(LogConfig) + } + + x.LogConfig.CodecDecodeSelf(d) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Artifacts = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskArtifact((*[]*TaskArtifact)(&x.Artifacts), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Leader = false + } else { + x.Leader = (bool)(r.DecodeBool()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ShutdownDelay = 0 + } else { + if false { + } else if yyxt64 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt64 != nil { + z.DecExtension(x.ShutdownDelay, yyxt64) + } else { + x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.VolumeMounts = nil + } else { + if false { + } else { + h.decSlicePtrtoVolumeMount((*[]*VolumeMount)(&x.VolumeMounts), d) + } + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KillSignal = "" + } else { + x.KillSignal = (string)(r.DecodeString()) + } + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind.CodecDecodeSelf(d) + } + for { + yyj36++ + if yyhl36 { + yyb36 = yyj36 > l + } else { + yyb36 = r.CheckBreak() + } + if yyb36 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj36-1, "") + } + r.ReadArrayEnd() +} + +func (x TaskKind) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x)) + } + } +} + +func (x *TaskKind) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + *x = (TaskKind)(r.DecodeString()) + } +} + +func (x *Template) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(11) + } else { + r.WriteMapStart(11) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SourcePath))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SourcePath)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SourcePath\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SourcePath`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SourcePath))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SourcePath)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DestPath))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestPath)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DestPath\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DestPath`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DestPath))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestPath)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EmbeddedTmpl))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EmbeddedTmpl)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EmbeddedTmpl\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EmbeddedTmpl`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EmbeddedTmpl))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EmbeddedTmpl)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ChangeMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeMode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ChangeSignal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeSignal`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt19 := z.Extension(z.I2Rtid(x.Splay)); yyxt19 != nil { + z.EncExtension(x.Splay, yyxt19) + } else { + r.EncodeInt(int64(x.Splay)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Splay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Splay`) + } + r.WriteMapElemValue() + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.Splay)); yyxt20 != nil { + z.EncExtension(x.Splay, yyxt20) + } else { + r.EncodeInt(int64(x.Splay)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Perms))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Perms)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Perms\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Perms`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Perms))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Perms)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LeftDelim))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeftDelim)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LeftDelim\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LeftDelim`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LeftDelim))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeftDelim)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RightDelim))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RightDelim)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RightDelim\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RightDelim`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RightDelim))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RightDelim)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Envvars)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Envvars\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Envvars`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Envvars)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt34 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt34 != nil { + z.EncExtension(x.VaultGrace, yyxt34) + } else { + r.EncodeInt(int64(x.VaultGrace)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"VaultGrace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `VaultGrace`) + } + r.WriteMapElemValue() + if false { + } else if yyxt35 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt35 != nil { + z.EncExtension(x.VaultGrace, yyxt35) + } else { + r.EncodeInt(int64(x.VaultGrace)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Template) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Template) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "SourcePath": + if r.TryDecodeAsNil() { + x.SourcePath = "" + } else { + x.SourcePath = (string)(r.DecodeString()) + } + case "DestPath": + if r.TryDecodeAsNil() { + x.DestPath = "" + } else { + x.DestPath = (string)(r.DecodeString()) + } + case "EmbeddedTmpl": + if r.TryDecodeAsNil() { + x.EmbeddedTmpl = "" + } else { + x.EmbeddedTmpl = (string)(r.DecodeString()) + } + case "ChangeMode": + if r.TryDecodeAsNil() { + x.ChangeMode = "" + } else { + x.ChangeMode = (string)(r.DecodeString()) + } + case "ChangeSignal": + if r.TryDecodeAsNil() { + x.ChangeSignal = "" + } else { + x.ChangeSignal = (string)(r.DecodeString()) + } + case "Splay": + if r.TryDecodeAsNil() { + x.Splay = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.Splay)); yyxt10 != nil { + z.DecExtension(x.Splay, yyxt10) + } else { + x.Splay = (time.Duration)(r.DecodeInt64()) + } + } + case "Perms": + if r.TryDecodeAsNil() { + x.Perms = "" + } else { + x.Perms = (string)(r.DecodeString()) + } + case "LeftDelim": + if r.TryDecodeAsNil() { + x.LeftDelim = "" + } else { + x.LeftDelim = (string)(r.DecodeString()) + } + case "RightDelim": + if r.TryDecodeAsNil() { + x.RightDelim = "" + } else { + x.RightDelim = (string)(r.DecodeString()) + } + case "Envvars": + if r.TryDecodeAsNil() { + x.Envvars = false + } else { + x.Envvars = (bool)(r.DecodeBool()) + } + case "VaultGrace": + if r.TryDecodeAsNil() { + x.VaultGrace = 0 + } else { + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt16 != nil { + z.DecExtension(x.VaultGrace, yyxt16) + } else { + x.VaultGrace = (time.Duration)(r.DecodeInt64()) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Template) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj17 int + var yyb17 bool + var yyhl17 bool = l >= 0 + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SourcePath = "" + } else { + x.SourcePath = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DestPath = "" + } else { + x.DestPath = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EmbeddedTmpl = "" + } else { + x.EmbeddedTmpl = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ChangeMode = "" + } else { + x.ChangeMode = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ChangeSignal = "" + } else { + x.ChangeSignal = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Splay = 0 + } else { + if false { + } else if yyxt24 := z.Extension(z.I2Rtid(x.Splay)); yyxt24 != nil { + z.DecExtension(x.Splay, yyxt24) + } else { + x.Splay = (time.Duration)(r.DecodeInt64()) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Perms = "" + } else { + x.Perms = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LeftDelim = "" + } else { + x.LeftDelim = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RightDelim = "" + } else { + x.RightDelim = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Envvars = false + } else { + x.Envvars = (bool)(r.DecodeBool()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.VaultGrace = 0 + } else { + if false { + } else if yyxt30 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt30 != nil { + z.DecExtension(x.VaultGrace, yyxt30) + } else { + x.VaultGrace = (time.Duration)(r.DecodeInt64()) + } + } + for { + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj17-1, "") + } + r.ReadArrayEnd() +} + +func (x *TaskState) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.State))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.State)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"State\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `State`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.State))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.State)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Failed)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Failed\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Failed`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Failed)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Restarts)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Restarts\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Restarts`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Restarts)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.LastRestart) + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt13 != nil { + z.EncExtension(x.LastRestart, yyxt13) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.LastRestart) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.LastRestart) + } else { + z.EncFallback(x.LastRestart) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastRestart\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastRestart`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.LastRestart) + } else if yyxt14 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt14 != nil { + z.EncExtension(x.LastRestart, yyxt14) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.LastRestart) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.LastRestart) + } else { + z.EncFallback(x.LastRestart) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.StartedAt) + } else if yyxt16 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt16 != nil { + z.EncExtension(x.StartedAt, yyxt16) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.StartedAt) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartedAt) + } else { + z.EncFallback(x.StartedAt) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StartedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StartedAt`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.StartedAt) + } else if yyxt17 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt17 != nil { + z.EncExtension(x.StartedAt, yyxt17) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.StartedAt) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartedAt) + } else { + z.EncFallback(x.StartedAt) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.FinishedAt) + } else if yyxt19 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt19 != nil { + z.EncExtension(x.FinishedAt, yyxt19) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.FinishedAt) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.FinishedAt) + } else { + z.EncFallback(x.FinishedAt) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FinishedAt\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FinishedAt`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.FinishedAt) + } else if yyxt20 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt20 != nil { + z.EncExtension(x.FinishedAt, yyxt20) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.FinishedAt) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.FinishedAt) + } else { + z.EncFallback(x.FinishedAt) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Events == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskEvent(([]*TaskEvent)(x.Events), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Events\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Events`) + } + r.WriteMapElemValue() + if x.Events == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoTaskEvent(([]*TaskEvent)(x.Events), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskState) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *TaskState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "State": + if r.TryDecodeAsNil() { + x.State = "" + } else { + x.State = (string)(r.DecodeString()) + } + case "Failed": + if r.TryDecodeAsNil() { + x.Failed = false + } else { + x.Failed = (bool)(r.DecodeBool()) + } + case "Restarts": + if r.TryDecodeAsNil() { + x.Restarts = 0 + } else { + x.Restarts = (uint64)(r.DecodeUint64()) + } + case "LastRestart": + if r.TryDecodeAsNil() { + x.LastRestart = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.LastRestart = r.DecodeTime() + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt8 != nil { + z.DecExtension(x.LastRestart, yyxt8) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.LastRestart) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.LastRestart) + } else { + z.DecFallback(&x.LastRestart, false) + } + } + case "StartedAt": + if r.TryDecodeAsNil() { + x.StartedAt = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.StartedAt = r.DecodeTime() + } else if yyxt10 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt10 != nil { + z.DecExtension(x.StartedAt, yyxt10) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.StartedAt) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.StartedAt) + } else { + z.DecFallback(&x.StartedAt, false) + } + } + case "FinishedAt": + if r.TryDecodeAsNil() { + x.FinishedAt = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.FinishedAt = r.DecodeTime() + } else if yyxt12 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt12 != nil { + z.DecExtension(x.FinishedAt, yyxt12) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.FinishedAt) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.FinishedAt) + } else { + z.DecFallback(&x.FinishedAt, false) + } + } + case "Events": + if r.TryDecodeAsNil() { + x.Events = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskEvent((*[]*TaskEvent)(&x.Events), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.State = "" + } else { + x.State = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Failed = false + } else { + x.Failed = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Restarts = 0 + } else { + x.Restarts = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LastRestart = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.LastRestart = r.DecodeTime() + } else if yyxt20 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt20 != nil { + z.DecExtension(x.LastRestart, yyxt20) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.LastRestart) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.LastRestart) + } else { + z.DecFallback(&x.LastRestart, false) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StartedAt = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.StartedAt = r.DecodeTime() + } else if yyxt22 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt22 != nil { + z.DecExtension(x.StartedAt, yyxt22) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.StartedAt) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.StartedAt) + } else { + z.DecFallback(&x.StartedAt, false) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FinishedAt = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.FinishedAt = r.DecodeTime() + } else if yyxt24 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt24 != nil { + z.DecExtension(x.FinishedAt, yyxt24) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.FinishedAt) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.FinishedAt) + } else { + z.DecFallback(&x.FinishedAt, false) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Events = nil + } else { + if false { + } else { + h.decSlicePtrtoTaskEvent((*[]*TaskEvent)(&x.Events), d) + } + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *TaskEvent) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(24) + } else { + r.WriteMapStart(24) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Time)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Time\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Time`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Time)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Message\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Message`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DisplayMessage))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DisplayMessage)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DisplayMessage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DisplayMessage`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DisplayMessage))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DisplayMessage)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Details == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Details, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Details\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Details`) + } + r.WriteMapElemValue() + if x.Details == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Details, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.FailsTask)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FailsTask\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FailsTask`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.FailsTask)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RestartReason))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RestartReason)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RestartReason\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RestartReason`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RestartReason))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RestartReason)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SetupError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SetupError)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SetupError\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SetupError`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SetupError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SetupError)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DriverError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverError)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DriverError\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DriverError`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DriverError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverError)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.ExitCode)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ExitCode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ExitCode`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.ExitCode)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Signal)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Signal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Signal`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Signal)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt37 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt37 != nil { + z.EncExtension(x.KillTimeout, yyxt37) + } else { + r.EncodeInt(int64(x.KillTimeout)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KillTimeout\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KillTimeout`) + } + r.WriteMapElemValue() + if false { + } else if yyxt38 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt38 != nil { + z.EncExtension(x.KillTimeout, yyxt38) + } else { + r.EncodeInt(int64(x.KillTimeout)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillError)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KillError\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KillError`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillError)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillReason))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillReason)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KillReason\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KillReason`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.KillReason))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillReason)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.StartDelay)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StartDelay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StartDelay`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.StartDelay)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DownloadError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DownloadError)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DownloadError\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DownloadError`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DownloadError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DownloadError)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ValidationError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ValidationError)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ValidationError\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ValidationError`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ValidationError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ValidationError)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.DiskLimit)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DiskLimit\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DiskLimit`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.DiskLimit)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FailedSibling))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FailedSibling)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FailedSibling\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FailedSibling`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FailedSibling))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FailedSibling)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.VaultError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultError)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"VaultError\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `VaultError`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.VaultError))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultError)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignalReason))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignalReason)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskSignalReason\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskSignalReason`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignalReason))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignalReason)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignal)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskSignal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskSignal`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignal)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DriverMessage))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverMessage)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DriverMessage\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DriverMessage`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DriverMessage))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverMessage)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GenericSource))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GenericSource)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"GenericSource\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `GenericSource`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GenericSource))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GenericSource)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskEvent) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *TaskEvent) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Time": + if r.TryDecodeAsNil() { + x.Time = 0 + } else { + x.Time = (int64)(r.DecodeInt64()) + } + case "Message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = (string)(r.DecodeString()) + } + case "DisplayMessage": + if r.TryDecodeAsNil() { + x.DisplayMessage = "" + } else { + x.DisplayMessage = (string)(r.DecodeString()) + } + case "Details": + if r.TryDecodeAsNil() { + x.Details = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Details, d) + } + } + case "FailsTask": + if r.TryDecodeAsNil() { + x.FailsTask = false + } else { + x.FailsTask = (bool)(r.DecodeBool()) + } + case "RestartReason": + if r.TryDecodeAsNil() { + x.RestartReason = "" + } else { + x.RestartReason = (string)(r.DecodeString()) + } + case "SetupError": + if r.TryDecodeAsNil() { + x.SetupError = "" + } else { + x.SetupError = (string)(r.DecodeString()) + } + case "DriverError": + if r.TryDecodeAsNil() { + x.DriverError = "" + } else { + x.DriverError = (string)(r.DecodeString()) + } + case "ExitCode": + if r.TryDecodeAsNil() { + x.ExitCode = 0 + } else { + x.ExitCode = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Signal": + if r.TryDecodeAsNil() { + x.Signal = 0 + } else { + x.Signal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "KillTimeout": + if r.TryDecodeAsNil() { + x.KillTimeout = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt17 != nil { + z.DecExtension(x.KillTimeout, yyxt17) + } else { + x.KillTimeout = (time.Duration)(r.DecodeInt64()) + } + } + case "KillError": + if r.TryDecodeAsNil() { + x.KillError = "" + } else { + x.KillError = (string)(r.DecodeString()) + } + case "KillReason": + if r.TryDecodeAsNil() { + x.KillReason = "" + } else { + x.KillReason = (string)(r.DecodeString()) + } + case "StartDelay": + if r.TryDecodeAsNil() { + x.StartDelay = 0 + } else { + x.StartDelay = (int64)(r.DecodeInt64()) + } + case "DownloadError": + if r.TryDecodeAsNil() { + x.DownloadError = "" + } else { + x.DownloadError = (string)(r.DecodeString()) + } + case "ValidationError": + if r.TryDecodeAsNil() { + x.ValidationError = "" + } else { + x.ValidationError = (string)(r.DecodeString()) + } + case "DiskLimit": + if r.TryDecodeAsNil() { + x.DiskLimit = 0 + } else { + x.DiskLimit = (int64)(r.DecodeInt64()) + } + case "FailedSibling": + if r.TryDecodeAsNil() { + x.FailedSibling = "" + } else { + x.FailedSibling = (string)(r.DecodeString()) + } + case "VaultError": + if r.TryDecodeAsNil() { + x.VaultError = "" + } else { + x.VaultError = (string)(r.DecodeString()) + } + case "TaskSignalReason": + if r.TryDecodeAsNil() { + x.TaskSignalReason = "" + } else { + x.TaskSignalReason = (string)(r.DecodeString()) + } + case "TaskSignal": + if r.TryDecodeAsNil() { + x.TaskSignal = "" + } else { + x.TaskSignal = (string)(r.DecodeString()) + } + case "DriverMessage": + if r.TryDecodeAsNil() { + x.DriverMessage = "" + } else { + x.DriverMessage = (string)(r.DecodeString()) + } + case "GenericSource": + if r.TryDecodeAsNil() { + x.GenericSource = "" + } else { + x.GenericSource = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskEvent) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj30 int + var yyb30 bool + var yyhl30 bool = l >= 0 + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Time = 0 + } else { + x.Time = (int64)(r.DecodeInt64()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DisplayMessage = "" + } else { + x.DisplayMessage = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Details = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Details, d) + } + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FailsTask = false + } else { + x.FailsTask = (bool)(r.DecodeBool()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RestartReason = "" + } else { + x.RestartReason = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SetupError = "" + } else { + x.SetupError = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DriverError = "" + } else { + x.DriverError = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ExitCode = 0 + } else { + x.ExitCode = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Signal = 0 + } else { + x.Signal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KillTimeout = 0 + } else { + if false { + } else if yyxt44 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt44 != nil { + z.DecExtension(x.KillTimeout, yyxt44) + } else { + x.KillTimeout = (time.Duration)(r.DecodeInt64()) + } + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KillError = "" + } else { + x.KillError = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.KillReason = "" + } else { + x.KillReason = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StartDelay = 0 + } else { + x.StartDelay = (int64)(r.DecodeInt64()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DownloadError = "" + } else { + x.DownloadError = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ValidationError = "" + } else { + x.ValidationError = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DiskLimit = 0 + } else { + x.DiskLimit = (int64)(r.DecodeInt64()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FailedSibling = "" + } else { + x.FailedSibling = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.VaultError = "" + } else { + x.VaultError = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskSignalReason = "" + } else { + x.TaskSignalReason = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskSignal = "" + } else { + x.TaskSignal = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DriverMessage = "" + } else { + x.DriverMessage = (string)(r.DecodeString()) + } + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.GenericSource = "" + } else { + x.GenericSource = (string)(r.DecodeString()) + } + for { + yyj30++ + if yyhl30 { + yyb30 = yyj30 > l + } else { + yyb30 = r.CheckBreak() + } + if yyb30 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj30-1, "") + } + r.ReadArrayEnd() +} + +func (x *TaskArtifact) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GetterSource))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterSource)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"GetterSource\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `GetterSource`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GetterSource))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterSource)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.GetterOptions == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.GetterOptions, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"GetterOptions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `GetterOptions`) + } + r.WriteMapElemValue() + if x.GetterOptions == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.GetterOptions, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GetterMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterMode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"GetterMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `GetterMode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.GetterMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterMode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RelativeDest))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RelativeDest)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RelativeDest\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RelativeDest`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RelativeDest))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RelativeDest)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *TaskArtifact) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *TaskArtifact) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "GetterSource": + if r.TryDecodeAsNil() { + x.GetterSource = "" + } else { + x.GetterSource = (string)(r.DecodeString()) + } + case "GetterOptions": + if r.TryDecodeAsNil() { + x.GetterOptions = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.GetterOptions, d) + } + } + case "GetterMode": + if r.TryDecodeAsNil() { + x.GetterMode = "" + } else { + x.GetterMode = (string)(r.DecodeString()) + } + case "RelativeDest": + if r.TryDecodeAsNil() { + x.RelativeDest = "" + } else { + x.RelativeDest = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *TaskArtifact) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.GetterSource = "" + } else { + x.GetterSource = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.GetterOptions = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.GetterOptions, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.GetterMode = "" + } else { + x.GetterMode = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RelativeDest = "" + } else { + x.RelativeDest = (string)(r.DecodeString()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *Constraint) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LTarget\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LTarget`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RTarget\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RTarget`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Operand\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Operand`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Constraint) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Constraint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "LTarget": + if r.TryDecodeAsNil() { + x.LTarget = "" + } else { + x.LTarget = (string)(r.DecodeString()) + } + case "RTarget": + if r.TryDecodeAsNil() { + x.RTarget = "" + } else { + x.RTarget = (string)(r.DecodeString()) + } + case "Operand": + if r.TryDecodeAsNil() { + x.Operand = "" + } else { + x.Operand = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Constraint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LTarget = "" + } else { + x.LTarget = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RTarget = "" + } else { + x.RTarget = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Operand = "" + } else { + x.Operand = (string)(r.DecodeString()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x Constraints) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encConstraints((Constraints)(x), e) + } + } +} + +func (x *Constraints) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decConstraints((*Constraints)(x), d) + } +} + +func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LTarget\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LTarget`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RTarget\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RTarget`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Operand\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Operand`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Weight)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Weight\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Weight`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Weight)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "LTarget": + if r.TryDecodeAsNil() { + x.LTarget = "" + } else { + x.LTarget = (string)(r.DecodeString()) + } + case "RTarget": + if r.TryDecodeAsNil() { + x.RTarget = "" + } else { + x.RTarget = (string)(r.DecodeString()) + } + case "Operand": + if r.TryDecodeAsNil() { + x.Operand = "" + } else { + x.Operand = (string)(r.DecodeString()) + } + case "Weight": + if r.TryDecodeAsNil() { + x.Weight = 0 + } else { + x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LTarget = "" + } else { + x.LTarget = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RTarget = "" + } else { + x.RTarget = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Operand = "" + } else { + x.Operand = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Weight = 0 + } else { + x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *Spread) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Attribute))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Attribute)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Attribute\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Attribute`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Attribute))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Attribute)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.Weight)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Weight\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Weight`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Weight)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.SpreadTarget == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoSpreadTarget(([]*SpreadTarget)(x.SpreadTarget), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SpreadTarget\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SpreadTarget`) + } + r.WriteMapElemValue() + if x.SpreadTarget == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoSpreadTarget(([]*SpreadTarget)(x.SpreadTarget), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Spread) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Spread) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Attribute": + if r.TryDecodeAsNil() { + x.Attribute = "" + } else { + x.Attribute = (string)(r.DecodeString()) + } + case "Weight": + if r.TryDecodeAsNil() { + x.Weight = 0 + } else { + x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) + } + case "SpreadTarget": + if r.TryDecodeAsNil() { + x.SpreadTarget = nil + } else { + if false { + } else { + h.decSlicePtrtoSpreadTarget((*[]*SpreadTarget)(&x.SpreadTarget), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Spread) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Attribute = "" + } else { + x.Attribute = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Weight = 0 + } else { + x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SpreadTarget = nil + } else { + if false { + } else { + h.decSlicePtrtoSpreadTarget((*[]*SpreadTarget)(&x.SpreadTarget), d) + } + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x Affinities) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + h.encAffinities((Affinities)(x), e) + } + } +} + +func (x *Affinities) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + h.decAffinities((*Affinities)(x), d) + } +} + +func (x *SpreadTarget) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Value))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Value)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Value\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Value`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Value))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Value)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Percent)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Percent\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Percent`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Percent)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SpreadTarget) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SpreadTarget) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Value": + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = (string)(r.DecodeString()) + } + case "Percent": + if r.TryDecodeAsNil() { + x.Percent = 0 + } else { + x.Percent = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SpreadTarget) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = (string)(r.DecodeString()) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Percent = 0 + } else { + x.Percent = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *EphemeralDisk) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Sticky)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Sticky\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Sticky`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Sticky)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.SizeMB)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SizeMB\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SizeMB`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.SizeMB)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Migrate)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Migrate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Migrate)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *EphemeralDisk) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *EphemeralDisk) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Sticky": + if r.TryDecodeAsNil() { + x.Sticky = false + } else { + x.Sticky = (bool)(r.DecodeBool()) + } + case "SizeMB": + if r.TryDecodeAsNil() { + x.SizeMB = 0 + } else { + x.SizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Migrate": + if r.TryDecodeAsNil() { + x.Migrate = false + } else { + x.Migrate = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *EphemeralDisk) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Sticky = false + } else { + x.Sticky = (bool)(r.DecodeBool()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SizeMB = 0 + } else { + x.SizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Migrate = false + } else { + x.Migrate = (bool)(r.DecodeBool()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *Vault) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Policies, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Policies\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) + } + r.WriteMapElemValue() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Policies, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Env)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Env\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Env`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Env)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ChangeMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeMode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ChangeSignal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeSignal`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Vault) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Vault) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Policies": + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Policies, d) + } + } + case "Env": + if r.TryDecodeAsNil() { + x.Env = false + } else { + x.Env = (bool)(r.DecodeBool()) + } + case "ChangeMode": + if r.TryDecodeAsNil() { + x.ChangeMode = "" + } else { + x.ChangeMode = (string)(r.DecodeString()) + } + case "ChangeSignal": + if r.TryDecodeAsNil() { + x.ChangeSignal = "" + } else { + x.ChangeSignal = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Vault) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Policies, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Env = false + } else { + x.Env = (bool)(r.DecodeBool()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ChangeMode = "" + } else { + x.ChangeMode = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ChangeSignal = "" + } else { + x.ChangeSignal = (string)(r.DecodeString()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *Deployment) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(12) + } else { + r.WriteMapStart(12) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobSpecModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobSpecModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobSpecModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobSpecModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobCreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobCreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobCreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobCreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.TaskGroups == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDeploymentState((map[string]*DeploymentState)(x.TaskGroups), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskGroups\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroups`) + } + r.WriteMapElemValue() + if x.TaskGroups == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDeploymentState((map[string]*DeploymentState)(x.TaskGroups), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Deployment) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Deployment) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "JobVersion": + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + case "JobSpecModifyIndex": + if r.TryDecodeAsNil() { + x.JobSpecModifyIndex = 0 + } else { + x.JobSpecModifyIndex = (uint64)(r.DecodeUint64()) + } + case "JobCreateIndex": + if r.TryDecodeAsNil() { + x.JobCreateIndex = 0 + } else { + x.JobCreateIndex = (uint64)(r.DecodeUint64()) + } + case "TaskGroups": + if r.TryDecodeAsNil() { + x.TaskGroups = nil + } else { + if false { + } else { + h.decMapstringPtrtoDeploymentState((*map[string]*DeploymentState)(&x.TaskGroups), d) + } + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "StatusDescription": + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Deployment) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj17 int + var yyb17 bool + var yyhl17 bool = l >= 0 + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobSpecModifyIndex = 0 + } else { + x.JobSpecModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobCreateIndex = 0 + } else { + x.JobCreateIndex = (uint64)(r.DecodeUint64()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskGroups = nil + } else { + if false { + } else { + h.decMapstringPtrtoDeploymentState((*map[string]*DeploymentState)(&x.TaskGroups), d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj17-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentState) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(11) + } else { + r.WriteMapStart(11) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AutoRevert)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AutoRevert\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AutoRevert`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AutoRevert)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AutoPromote)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AutoPromote\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AutoPromote`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AutoPromote)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt10 != nil { + z.EncExtension(x.ProgressDeadline, yyxt10) + } else { + r.EncodeInt(int64(x.ProgressDeadline)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ProgressDeadline\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ProgressDeadline`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt11 != nil { + z.EncExtension(x.ProgressDeadline, yyxt11) + } else { + r.EncodeInt(int64(x.ProgressDeadline)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.RequireProgressBy) + } else if yyxt13 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt13 != nil { + z.EncExtension(x.RequireProgressBy, yyxt13) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.RequireProgressBy) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.RequireProgressBy) + } else { + z.EncFallback(x.RequireProgressBy) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RequireProgressBy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RequireProgressBy`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.RequireProgressBy) + } else if yyxt14 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt14 != nil { + z.EncExtension(x.RequireProgressBy, yyxt14) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.RequireProgressBy) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.RequireProgressBy) + } else { + z.EncFallback(x.RequireProgressBy) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Promoted)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Promoted\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Promoted`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Promoted)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.PlacedCanaries == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PlacedCanaries, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PlacedCanaries\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PlacedCanaries`) + } + r.WriteMapElemValue() + if x.PlacedCanaries == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PlacedCanaries, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.DesiredCanaries)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredCanaries\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredCanaries`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.DesiredCanaries)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.DesiredTotal)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredTotal\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTotal`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.DesiredTotal)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.PlacedAllocs)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PlacedAllocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PlacedAllocs`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.PlacedAllocs)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.HealthyAllocs)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"HealthyAllocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyAllocs`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.HealthyAllocs)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.UnhealthyAllocs)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"UnhealthyAllocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `UnhealthyAllocs`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.UnhealthyAllocs)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentState) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AutoRevert": + if r.TryDecodeAsNil() { + x.AutoRevert = false + } else { + x.AutoRevert = (bool)(r.DecodeBool()) + } + case "AutoPromote": + if r.TryDecodeAsNil() { + x.AutoPromote = false + } else { + x.AutoPromote = (bool)(r.DecodeBool()) + } + case "ProgressDeadline": + if r.TryDecodeAsNil() { + x.ProgressDeadline = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt7 != nil { + z.DecExtension(x.ProgressDeadline, yyxt7) + } else { + x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) + } + } + case "RequireProgressBy": + if r.TryDecodeAsNil() { + x.RequireProgressBy = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.RequireProgressBy = r.DecodeTime() + } else if yyxt9 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt9 != nil { + z.DecExtension(x.RequireProgressBy, yyxt9) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.RequireProgressBy) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.RequireProgressBy) + } else { + z.DecFallback(&x.RequireProgressBy, false) + } + } + case "Promoted": + if r.TryDecodeAsNil() { + x.Promoted = false + } else { + x.Promoted = (bool)(r.DecodeBool()) + } + case "PlacedCanaries": + if r.TryDecodeAsNil() { + x.PlacedCanaries = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PlacedCanaries, d) + } + } + case "DesiredCanaries": + if r.TryDecodeAsNil() { + x.DesiredCanaries = 0 + } else { + x.DesiredCanaries = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "DesiredTotal": + if r.TryDecodeAsNil() { + x.DesiredTotal = 0 + } else { + x.DesiredTotal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "PlacedAllocs": + if r.TryDecodeAsNil() { + x.PlacedAllocs = 0 + } else { + x.PlacedAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "HealthyAllocs": + if r.TryDecodeAsNil() { + x.HealthyAllocs = 0 + } else { + x.HealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "UnhealthyAllocs": + if r.TryDecodeAsNil() { + x.UnhealthyAllocs = 0 + } else { + x.UnhealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj18 int + var yyb18 bool + var yyhl18 bool = l >= 0 + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AutoRevert = false + } else { + x.AutoRevert = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AutoPromote = false + } else { + x.AutoPromote = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ProgressDeadline = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt22 != nil { + z.DecExtension(x.ProgressDeadline, yyxt22) + } else { + x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RequireProgressBy = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.RequireProgressBy = r.DecodeTime() + } else if yyxt24 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt24 != nil { + z.DecExtension(x.RequireProgressBy, yyxt24) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.RequireProgressBy) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.RequireProgressBy) + } else { + z.DecFallback(&x.RequireProgressBy, false) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Promoted = false + } else { + x.Promoted = (bool)(r.DecodeBool()) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PlacedCanaries = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PlacedCanaries, d) + } + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredCanaries = 0 + } else { + x.DesiredCanaries = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredTotal = 0 + } else { + x.DesiredTotal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PlacedAllocs = 0 + } else { + x.PlacedAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.HealthyAllocs = 0 + } else { + x.HealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.UnhealthyAllocs = 0 + } else { + x.UnhealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj18++ + if yyhl18 { + yyb18 = yyj18 > l + } else { + yyb18 = r.CheckBreak() + } + if yyb18 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj18-1, "") + } + r.ReadArrayEnd() +} + +func (x *DeploymentStatusUpdate) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DeploymentStatusUpdate) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DeploymentStatusUpdate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "StatusDescription": + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DeploymentStatusUpdate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *RescheduleTracker) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Events == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoRescheduleEvent(([]*RescheduleEvent)(x.Events), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Events\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Events`) + } + r.WriteMapElemValue() + if x.Events == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoRescheduleEvent(([]*RescheduleEvent)(x.Events), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RescheduleTracker) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RescheduleTracker) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Events": + if r.TryDecodeAsNil() { + x.Events = nil + } else { + if false { + } else { + h.decSlicePtrtoRescheduleEvent((*[]*RescheduleEvent)(&x.Events), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RescheduleTracker) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Events = nil + } else { + if false { + } else { + h.decSlicePtrtoRescheduleEvent((*[]*RescheduleEvent)(&x.Events), d) + } + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *RescheduleEvent) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.RescheduleTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RescheduleTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.RescheduleTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PrevAllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevAllocID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PrevAllocID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PrevAllocID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PrevAllocID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevAllocID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PrevNodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevNodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PrevNodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PrevNodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PrevNodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevNodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.Delay)); yyxt13 != nil { + z.EncExtension(x.Delay, yyxt13) + } else { + r.EncodeInt(int64(x.Delay)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Delay\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Delay`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.Delay)); yyxt14 != nil { + z.EncExtension(x.Delay, yyxt14) + } else { + r.EncodeInt(int64(x.Delay)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RescheduleEvent) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RescheduleEvent) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "RescheduleTime": + if r.TryDecodeAsNil() { + x.RescheduleTime = 0 + } else { + x.RescheduleTime = (int64)(r.DecodeInt64()) + } + case "PrevAllocID": + if r.TryDecodeAsNil() { + x.PrevAllocID = "" + } else { + x.PrevAllocID = (string)(r.DecodeString()) + } + case "PrevNodeID": + if r.TryDecodeAsNil() { + x.PrevNodeID = "" + } else { + x.PrevNodeID = (string)(r.DecodeString()) + } + case "Delay": + if r.TryDecodeAsNil() { + x.Delay = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.Delay)); yyxt8 != nil { + z.DecExtension(x.Delay, yyxt8) + } else { + x.Delay = (time.Duration)(r.DecodeInt64()) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RescheduleEvent) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RescheduleTime = 0 + } else { + x.RescheduleTime = (int64)(r.DecodeInt64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PrevAllocID = "" + } else { + x.PrevAllocID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PrevNodeID = "" + } else { + x.PrevNodeID = (string)(r.DecodeString()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Delay = 0 + } else { + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.Delay)); yyxt14 != nil { + z.DecExtension(x.Delay, yyxt14) + } else { + x.Delay = (time.Duration)(r.DecodeInt64()) + } + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *DesiredTransition) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + var yyn3 bool + if x.Migrate == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Migrate == nil { + r.EncodeNil() + } else { + yy4 := *x.Migrate + if false { + } else { + r.EncodeBool(bool(yy4)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Migrate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Migrate == nil { + r.EncodeNil() + } else { + yy6 := *x.Migrate + if false { + } else { + r.EncodeBool(bool(yy6)) + } + } + } + } + var yyn8 bool + if x.Reschedule == nil { + yyn8 = true + goto LABEL8 + } + LABEL8: + if yyr2 || yy2arr2 { + if yyn8 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Reschedule == nil { + r.EncodeNil() + } else { + yy9 := *x.Reschedule + if false { + } else { + r.EncodeBool(bool(yy9)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Reschedule\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Reschedule`) + } + r.WriteMapElemValue() + if yyn8 { + r.EncodeNil() + } else { + if x.Reschedule == nil { + r.EncodeNil() + } else { + yy11 := *x.Reschedule + if false { + } else { + r.EncodeBool(bool(yy11)) + } + } + } + } + var yyn13 bool + if x.ForceReschedule == nil { + yyn13 = true + goto LABEL13 + } + LABEL13: + if yyr2 || yy2arr2 { + if yyn13 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.ForceReschedule == nil { + r.EncodeNil() + } else { + yy14 := *x.ForceReschedule + if false { + } else { + r.EncodeBool(bool(yy14)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ForceReschedule\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ForceReschedule`) + } + r.WriteMapElemValue() + if yyn13 { + r.EncodeNil() + } else { + if x.ForceReschedule == nil { + r.EncodeNil() + } else { + yy16 := *x.ForceReschedule + if false { + } else { + r.EncodeBool(bool(yy16)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DesiredTransition) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DesiredTransition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Migrate": + if r.TryDecodeAsNil() { + if true && x.Migrate != nil { + x.Migrate = nil + } + } else { + if x.Migrate == nil { + x.Migrate = new(bool) + } + + if false { + } else { + *x.Migrate = (bool)(r.DecodeBool()) + } + } + case "Reschedule": + if r.TryDecodeAsNil() { + if true && x.Reschedule != nil { + x.Reschedule = nil + } + } else { + if x.Reschedule == nil { + x.Reschedule = new(bool) + } + + if false { + } else { + *x.Reschedule = (bool)(r.DecodeBool()) + } + } + case "ForceReschedule": + if r.TryDecodeAsNil() { + if true && x.ForceReschedule != nil { + x.ForceReschedule = nil + } + } else { + if x.ForceReschedule == nil { + x.ForceReschedule = new(bool) + } + + if false { + } else { + *x.ForceReschedule = (bool)(r.DecodeBool()) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DesiredTransition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Migrate != nil { + x.Migrate = nil + } + } else { + if x.Migrate == nil { + x.Migrate = new(bool) + } + + if false { + } else { + *x.Migrate = (bool)(r.DecodeBool()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Reschedule != nil { + x.Reschedule = nil + } + } else { + if x.Reschedule == nil { + x.Reschedule = new(bool) + } + + if false { + } else { + *x.Reschedule = (bool)(r.DecodeBool()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.ForceReschedule != nil { + x.ForceReschedule = nil + } + } else { + if x.ForceReschedule == nil { + x.ForceReschedule = new(bool) + } + + if false { + } else { + *x.ForceReschedule = (bool)(r.DecodeBool()) + } + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *Allocation) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + var yyq2 = [33]bool{ // should field at this index be written? + x.ID != "", // ID + x.Namespace != "", // Namespace + x.EvalID != "", // EvalID + x.Name != "", // Name + x.NodeID != "", // NodeID + x.NodeName != "", // NodeName + x.JobID != "", // JobID + x.Job != nil, // Job + x.TaskGroup != "", // TaskGroup + x.Resources != nil, // Resources + x.SharedResources != nil, // SharedResources + len(x.TaskResources) != 0, // TaskResources + x.AllocatedResources != nil, // AllocatedResources + x.Metrics != nil, // Metrics + x.DesiredStatus != "", // DesiredStatus + x.DesiredDescription != "", // DesiredDescription + x.DesiredTransition != DesiredTransition{}, // DesiredTransition + x.ClientStatus != "", // ClientStatus + x.ClientDescription != "", // ClientDescription + len(x.TaskStates) != 0, // TaskStates + x.PreviousAllocation != "", // PreviousAllocation + x.NextAllocation != "", // NextAllocation + x.DeploymentID != "", // DeploymentID + x.DeploymentStatus != nil, // DeploymentStatus + x.RescheduleTracker != nil, // RescheduleTracker + x.FollowupEvalID != "", // FollowupEvalID + len(x.PreemptedAllocations) != 0, // PreemptedAllocations + x.PreemptedByAllocation != "", // PreemptedByAllocation + x.CreateIndex != 0, // CreateIndex + x.ModifyIndex != 0, // ModifyIndex + x.AllocModifyIndex != 0, // AllocModifyIndex + x.CreateTime != 0, // CreateTime + x.ModifyTime != 0, // ModifyTime + } + _ = yyq2 + if yyr2 || yy2arr2 { + r.WriteArrayStart(33) + } else { + var yynn2 int + for _, b := range yyq2 { + if b { + yynn2++ + } + } + r.WriteMapStart(yynn2) + yynn2 = 0 + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[0] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[0] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[1] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[1] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[2] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[2] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[3] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[3] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[4] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[4] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[5] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[5] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeName\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeName`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[6] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[6] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + } + var yyn24 bool + if x.Job == nil { + yyn24 = true + goto LABEL24 + } + LABEL24: + if yyr2 || yy2arr2 { + if yyn24 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[7] { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[7] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn24 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[8] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[8] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskGroup\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroup`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) + } + } + } + } + var yyn30 bool + if x.Resources == nil { + yyn30 = true + goto LABEL30 + } + LABEL30: + if yyr2 || yy2arr2 { + if yyn30 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[9] { + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[9] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Resources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) + } + r.WriteMapElemValue() + if yyn30 { + r.EncodeNil() + } else { + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } + } + var yyn33 bool + if x.SharedResources == nil { + yyn33 = true + goto LABEL33 + } + LABEL33: + if yyr2 || yy2arr2 { + if yyn33 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[10] { + if x.SharedResources == nil { + r.EncodeNil() + } else { + x.SharedResources.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[10] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SharedResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SharedResources`) + } + r.WriteMapElemValue() + if yyn33 { + r.EncodeNil() + } else { + if x.SharedResources == nil { + r.EncodeNil() + } else { + x.SharedResources.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[11] { + if x.TaskResources == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[11] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskResources`) + } + r.WriteMapElemValue() + if x.TaskResources == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) + } + } + } + } + var yyn39 bool + if x.AllocatedResources == nil { + yyn39 = true + goto LABEL39 + } + LABEL39: + if yyr2 || yy2arr2 { + if yyn39 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[12] { + if x.AllocatedResources == nil { + r.EncodeNil() + } else { + x.AllocatedResources.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[12] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocatedResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocatedResources`) + } + r.WriteMapElemValue() + if yyn39 { + r.EncodeNil() + } else { + if x.AllocatedResources == nil { + r.EncodeNil() + } else { + x.AllocatedResources.CodecEncodeSelf(e) + } + } + } + } + var yyn42 bool + if x.Metrics == nil { + yyn42 = true + goto LABEL42 + } + LABEL42: + if yyr2 || yy2arr2 { + if yyn42 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[13] { + if x.Metrics == nil { + r.EncodeNil() + } else { + x.Metrics.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[13] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Metrics\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Metrics`) + } + r.WriteMapElemValue() + if yyn42 { + r.EncodeNil() + } else { + if x.Metrics == nil { + r.EncodeNil() + } else { + x.Metrics.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[14] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[14] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredStatus`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[15] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[15] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[16] { + yy52 := &x.DesiredTransition + yy52.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2[16] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredTransition\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTransition`) + } + r.WriteMapElemValue() + yy54 := &x.DesiredTransition + yy54.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[17] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[17] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClientStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClientStatus`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[18] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[18] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClientDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClientDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[19] { + if x.TaskStates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[19] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskStates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskStates`) + } + r.WriteMapElemValue() + if x.TaskStates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[20] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[20] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreviousAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreviousAllocation`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[21] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[21] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NextAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NextAllocation`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[22] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[22] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + } + var yyn74 bool + if x.DeploymentStatus == nil { + yyn74 = true + goto LABEL74 + } + LABEL74: + if yyr2 || yy2arr2 { + if yyn74 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[23] { + if x.DeploymentStatus == nil { + r.EncodeNil() + } else { + x.DeploymentStatus.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[23] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentStatus`) + } + r.WriteMapElemValue() + if yyn74 { + r.EncodeNil() + } else { + if x.DeploymentStatus == nil { + r.EncodeNil() + } else { + x.DeploymentStatus.CodecEncodeSelf(e) + } + } + } + } + var yyn77 bool + if x.RescheduleTracker == nil { + yyn77 = true + goto LABEL77 + } + LABEL77: + if yyr2 || yy2arr2 { + if yyn77 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[24] { + if x.RescheduleTracker == nil { + r.EncodeNil() + } else { + x.RescheduleTracker.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[24] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RescheduleTracker\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTracker`) + } + r.WriteMapElemValue() + if yyn77 { + r.EncodeNil() + } else { + if x.RescheduleTracker == nil { + r.EncodeNil() + } else { + x.RescheduleTracker.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[25] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[25] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FollowupEvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FollowupEvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[26] { + if x.PreemptedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PreemptedAllocations, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[26] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptedAllocations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocations`) + } + r.WriteMapElemValue() + if x.PreemptedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PreemptedAllocations, e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[27] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[27] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptedByAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedByAllocation`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[28] { + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[28] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[29] { + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[29] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[30] { + if false { + } else { + r.EncodeUint(uint64(x.AllocModifyIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[30] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.AllocModifyIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[31] { + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[31] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[32] { + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[32] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Allocation) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Allocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "NodeName": + if r.TryDecodeAsNil() { + x.NodeName = "" + } else { + x.NodeName = (string)(r.DecodeString()) + } + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "TaskGroup": + if r.TryDecodeAsNil() { + x.TaskGroup = "" + } else { + x.TaskGroup = (string)(r.DecodeString()) + } + case "Resources": + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + case "SharedResources": + if r.TryDecodeAsNil() { + if true && x.SharedResources != nil { + x.SharedResources = nil + } + } else { + if x.SharedResources == nil { + x.SharedResources = new(Resources) + } + + x.SharedResources.CodecDecodeSelf(d) + } + case "TaskResources": + if r.TryDecodeAsNil() { + x.TaskResources = nil + } else { + if false { + } else { + h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) + } + } + case "AllocatedResources": + if r.TryDecodeAsNil() { + if true && x.AllocatedResources != nil { + x.AllocatedResources = nil + } + } else { + if x.AllocatedResources == nil { + x.AllocatedResources = new(AllocatedResources) + } + + x.AllocatedResources.CodecDecodeSelf(d) + } + case "Metrics": + if r.TryDecodeAsNil() { + if true && x.Metrics != nil { + x.Metrics = nil + } + } else { + if x.Metrics == nil { + x.Metrics = new(AllocMetric) + } + + x.Metrics.CodecDecodeSelf(d) + } + case "DesiredStatus": + if r.TryDecodeAsNil() { + x.DesiredStatus = "" + } else { + x.DesiredStatus = (string)(r.DecodeString()) + } + case "DesiredDescription": + if r.TryDecodeAsNil() { + x.DesiredDescription = "" + } else { + x.DesiredDescription = (string)(r.DecodeString()) + } + case "DesiredTransition": + if r.TryDecodeAsNil() { + x.DesiredTransition = DesiredTransition{} + } else { + x.DesiredTransition.CodecDecodeSelf(d) + } + case "ClientStatus": + if r.TryDecodeAsNil() { + x.ClientStatus = "" + } else { + x.ClientStatus = (string)(r.DecodeString()) + } + case "ClientDescription": + if r.TryDecodeAsNil() { + x.ClientDescription = "" + } else { + x.ClientDescription = (string)(r.DecodeString()) + } + case "TaskStates": + if r.TryDecodeAsNil() { + x.TaskStates = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) + } + } + case "PreviousAllocation": + if r.TryDecodeAsNil() { + x.PreviousAllocation = "" + } else { + x.PreviousAllocation = (string)(r.DecodeString()) + } + case "NextAllocation": + if r.TryDecodeAsNil() { + x.NextAllocation = "" + } else { + x.NextAllocation = (string)(r.DecodeString()) + } + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "DeploymentStatus": + if r.TryDecodeAsNil() { + if true && x.DeploymentStatus != nil { + x.DeploymentStatus = nil + } + } else { + if x.DeploymentStatus == nil { + x.DeploymentStatus = new(AllocDeploymentStatus) + } + + x.DeploymentStatus.CodecDecodeSelf(d) + } + case "RescheduleTracker": + if r.TryDecodeAsNil() { + if true && x.RescheduleTracker != nil { + x.RescheduleTracker = nil + } + } else { + if x.RescheduleTracker == nil { + x.RescheduleTracker = new(RescheduleTracker) + } + + x.RescheduleTracker.CodecDecodeSelf(d) + } + case "FollowupEvalID": + if r.TryDecodeAsNil() { + x.FollowupEvalID = "" + } else { + x.FollowupEvalID = (string)(r.DecodeString()) + } + case "PreemptedAllocations": + if r.TryDecodeAsNil() { + x.PreemptedAllocations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PreemptedAllocations, d) + } + } + case "PreemptedByAllocation": + if r.TryDecodeAsNil() { + x.PreemptedByAllocation = "" + } else { + x.PreemptedByAllocation = (string)(r.DecodeString()) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + case "AllocModifyIndex": + if r.TryDecodeAsNil() { + x.AllocModifyIndex = 0 + } else { + x.AllocModifyIndex = (uint64)(r.DecodeUint64()) + } + case "CreateTime": + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + case "ModifyTime": + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Allocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj40 int + var yyb40 bool + var yyhl40 bool = l >= 0 + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeName = "" + } else { + x.NodeName = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskGroup = "" + } else { + x.TaskGroup = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.SharedResources != nil { + x.SharedResources = nil + } + } else { + if x.SharedResources == nil { + x.SharedResources = new(Resources) + } + + x.SharedResources.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskResources = nil + } else { + if false { + } else { + h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.AllocatedResources != nil { + x.AllocatedResources = nil + } + } else { + if x.AllocatedResources == nil { + x.AllocatedResources = new(AllocatedResources) + } + + x.AllocatedResources.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Metrics != nil { + x.Metrics = nil + } + } else { + if x.Metrics == nil { + x.Metrics = new(AllocMetric) + } + + x.Metrics.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredStatus = "" + } else { + x.DesiredStatus = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredDescription = "" + } else { + x.DesiredDescription = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredTransition = DesiredTransition{} + } else { + x.DesiredTransition.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClientStatus = "" + } else { + x.ClientStatus = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClientDescription = "" + } else { + x.ClientDescription = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskStates = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreviousAllocation = "" + } else { + x.PreviousAllocation = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NextAllocation = "" + } else { + x.NextAllocation = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DeploymentStatus != nil { + x.DeploymentStatus = nil + } + } else { + if x.DeploymentStatus == nil { + x.DeploymentStatus = new(AllocDeploymentStatus) + } + + x.DeploymentStatus.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.RescheduleTracker != nil { + x.RescheduleTracker = nil + } + } else { + if x.RescheduleTracker == nil { + x.RescheduleTracker = new(RescheduleTracker) + } + + x.RescheduleTracker.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FollowupEvalID = "" + } else { + x.FollowupEvalID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptedAllocations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PreemptedAllocations, d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptedByAllocation = "" + } else { + x.PreemptedByAllocation = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocModifyIndex = 0 + } else { + x.AllocModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + for { + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj40-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocationDiff) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + var yyq2 = [33]bool{ // should field at this index be written? + x.ID != "", // ID + x.Namespace != "", // Namespace + x.EvalID != "", // EvalID + x.Name != "", // Name + x.NodeID != "", // NodeID + x.NodeName != "", // NodeName + x.JobID != "", // JobID + x.Job != nil, // Job + x.TaskGroup != "", // TaskGroup + x.Resources != nil, // Resources + x.SharedResources != nil, // SharedResources + len(x.TaskResources) != 0, // TaskResources + x.AllocatedResources != nil, // AllocatedResources + x.Metrics != nil, // Metrics + x.DesiredStatus != "", // DesiredStatus + x.DesiredDescription != "", // DesiredDescription + x.DesiredTransition != DesiredTransition{}, // DesiredTransition + x.ClientStatus != "", // ClientStatus + x.ClientDescription != "", // ClientDescription + len(x.TaskStates) != 0, // TaskStates + x.PreviousAllocation != "", // PreviousAllocation + x.NextAllocation != "", // NextAllocation + x.DeploymentID != "", // DeploymentID + x.DeploymentStatus != nil, // DeploymentStatus + x.RescheduleTracker != nil, // RescheduleTracker + x.FollowupEvalID != "", // FollowupEvalID + len(x.PreemptedAllocations) != 0, // PreemptedAllocations + x.PreemptedByAllocation != "", // PreemptedByAllocation + x.CreateIndex != 0, // CreateIndex + x.ModifyIndex != 0, // ModifyIndex + x.AllocModifyIndex != 0, // AllocModifyIndex + x.CreateTime != 0, // CreateTime + x.ModifyTime != 0, // ModifyTime + } + _ = yyq2 + if yyr2 || yy2arr2 { + r.WriteArrayStart(33) + } else { + var yynn2 int + for _, b := range yyq2 { + if b { + yynn2++ + } + } + r.WriteMapStart(yynn2) + yynn2 = 0 + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[0] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[0] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[1] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[1] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[2] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[2] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[3] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[3] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[4] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[4] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[5] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[5] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeName\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeName`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[6] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[6] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + } + var yyn24 bool + if x.Job == nil { + yyn24 = true + goto LABEL24 + } + LABEL24: + if yyr2 || yy2arr2 { + if yyn24 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[7] { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[7] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn24 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[8] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[8] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskGroup\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroup`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) + } + } + } + } + var yyn30 bool + if x.Resources == nil { + yyn30 = true + goto LABEL30 + } + LABEL30: + if yyr2 || yy2arr2 { + if yyn30 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[9] { + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[9] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Resources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) + } + r.WriteMapElemValue() + if yyn30 { + r.EncodeNil() + } else { + if x.Resources == nil { + r.EncodeNil() + } else { + x.Resources.CodecEncodeSelf(e) + } + } + } + } + var yyn33 bool + if x.SharedResources == nil { + yyn33 = true + goto LABEL33 + } + LABEL33: + if yyr2 || yy2arr2 { + if yyn33 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[10] { + if x.SharedResources == nil { + r.EncodeNil() + } else { + x.SharedResources.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[10] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SharedResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SharedResources`) + } + r.WriteMapElemValue() + if yyn33 { + r.EncodeNil() + } else { + if x.SharedResources == nil { + r.EncodeNil() + } else { + x.SharedResources.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[11] { + if x.TaskResources == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[11] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskResources`) + } + r.WriteMapElemValue() + if x.TaskResources == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) + } + } + } + } + var yyn39 bool + if x.AllocatedResources == nil { + yyn39 = true + goto LABEL39 + } + LABEL39: + if yyr2 || yy2arr2 { + if yyn39 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[12] { + if x.AllocatedResources == nil { + r.EncodeNil() + } else { + x.AllocatedResources.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[12] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocatedResources\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocatedResources`) + } + r.WriteMapElemValue() + if yyn39 { + r.EncodeNil() + } else { + if x.AllocatedResources == nil { + r.EncodeNil() + } else { + x.AllocatedResources.CodecEncodeSelf(e) + } + } + } + } + var yyn42 bool + if x.Metrics == nil { + yyn42 = true + goto LABEL42 + } + LABEL42: + if yyr2 || yy2arr2 { + if yyn42 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[13] { + if x.Metrics == nil { + r.EncodeNil() + } else { + x.Metrics.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[13] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Metrics\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Metrics`) + } + r.WriteMapElemValue() + if yyn42 { + r.EncodeNil() + } else { + if x.Metrics == nil { + r.EncodeNil() + } else { + x.Metrics.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[14] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[14] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredStatus`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[15] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[15] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[16] { + yy52 := &x.DesiredTransition + yy52.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2[16] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredTransition\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTransition`) + } + r.WriteMapElemValue() + yy54 := &x.DesiredTransition + yy54.CodecEncodeSelf(e) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[17] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[17] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClientStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClientStatus`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[18] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[18] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClientDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClientDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[19] { + if x.TaskStates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[19] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskStates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskStates`) + } + r.WriteMapElemValue() + if x.TaskStates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[20] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[20] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreviousAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreviousAllocation`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[21] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[21] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NextAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NextAllocation`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[22] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[22] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + } + var yyn74 bool + if x.DeploymentStatus == nil { + yyn74 = true + goto LABEL74 + } + LABEL74: + if yyr2 || yy2arr2 { + if yyn74 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[23] { + if x.DeploymentStatus == nil { + r.EncodeNil() + } else { + x.DeploymentStatus.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[23] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentStatus`) + } + r.WriteMapElemValue() + if yyn74 { + r.EncodeNil() + } else { + if x.DeploymentStatus == nil { + r.EncodeNil() + } else { + x.DeploymentStatus.CodecEncodeSelf(e) + } + } + } + } + var yyn77 bool + if x.RescheduleTracker == nil { + yyn77 = true + goto LABEL77 + } + LABEL77: + if yyr2 || yy2arr2 { + if yyn77 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[24] { + if x.RescheduleTracker == nil { + r.EncodeNil() + } else { + x.RescheduleTracker.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[24] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RescheduleTracker\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTracker`) + } + r.WriteMapElemValue() + if yyn77 { + r.EncodeNil() + } else { + if x.RescheduleTracker == nil { + r.EncodeNil() + } else { + x.RescheduleTracker.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[25] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[25] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FollowupEvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FollowupEvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[26] { + if x.PreemptedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PreemptedAllocations, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[26] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptedAllocations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocations`) + } + r.WriteMapElemValue() + if x.PreemptedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PreemptedAllocations, e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[27] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[27] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptedByAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedByAllocation`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[28] { + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[28] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[29] { + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[29] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[30] { + if false { + } else { + r.EncodeUint(uint64(x.AllocModifyIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[30] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.AllocModifyIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[31] { + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[31] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[32] { + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[32] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocationDiff) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocationDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "NodeName": + if r.TryDecodeAsNil() { + x.NodeName = "" + } else { + x.NodeName = (string)(r.DecodeString()) + } + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "TaskGroup": + if r.TryDecodeAsNil() { + x.TaskGroup = "" + } else { + x.TaskGroup = (string)(r.DecodeString()) + } + case "Resources": + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + case "SharedResources": + if r.TryDecodeAsNil() { + if true && x.SharedResources != nil { + x.SharedResources = nil + } + } else { + if x.SharedResources == nil { + x.SharedResources = new(Resources) + } + + x.SharedResources.CodecDecodeSelf(d) + } + case "TaskResources": + if r.TryDecodeAsNil() { + x.TaskResources = nil + } else { + if false { + } else { + h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) + } + } + case "AllocatedResources": + if r.TryDecodeAsNil() { + if true && x.AllocatedResources != nil { + x.AllocatedResources = nil + } + } else { + if x.AllocatedResources == nil { + x.AllocatedResources = new(AllocatedResources) + } + + x.AllocatedResources.CodecDecodeSelf(d) + } + case "Metrics": + if r.TryDecodeAsNil() { + if true && x.Metrics != nil { + x.Metrics = nil + } + } else { + if x.Metrics == nil { + x.Metrics = new(AllocMetric) + } + + x.Metrics.CodecDecodeSelf(d) + } + case "DesiredStatus": + if r.TryDecodeAsNil() { + x.DesiredStatus = "" + } else { + x.DesiredStatus = (string)(r.DecodeString()) + } + case "DesiredDescription": + if r.TryDecodeAsNil() { + x.DesiredDescription = "" + } else { + x.DesiredDescription = (string)(r.DecodeString()) + } + case "DesiredTransition": + if r.TryDecodeAsNil() { + x.DesiredTransition = DesiredTransition{} + } else { + x.DesiredTransition.CodecDecodeSelf(d) + } + case "ClientStatus": + if r.TryDecodeAsNil() { + x.ClientStatus = "" + } else { + x.ClientStatus = (string)(r.DecodeString()) + } + case "ClientDescription": + if r.TryDecodeAsNil() { + x.ClientDescription = "" + } else { + x.ClientDescription = (string)(r.DecodeString()) + } + case "TaskStates": + if r.TryDecodeAsNil() { + x.TaskStates = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) + } + } + case "PreviousAllocation": + if r.TryDecodeAsNil() { + x.PreviousAllocation = "" + } else { + x.PreviousAllocation = (string)(r.DecodeString()) + } + case "NextAllocation": + if r.TryDecodeAsNil() { + x.NextAllocation = "" + } else { + x.NextAllocation = (string)(r.DecodeString()) + } + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "DeploymentStatus": + if r.TryDecodeAsNil() { + if true && x.DeploymentStatus != nil { + x.DeploymentStatus = nil + } + } else { + if x.DeploymentStatus == nil { + x.DeploymentStatus = new(AllocDeploymentStatus) + } + + x.DeploymentStatus.CodecDecodeSelf(d) + } + case "RescheduleTracker": + if r.TryDecodeAsNil() { + if true && x.RescheduleTracker != nil { + x.RescheduleTracker = nil + } + } else { + if x.RescheduleTracker == nil { + x.RescheduleTracker = new(RescheduleTracker) + } + + x.RescheduleTracker.CodecDecodeSelf(d) + } + case "FollowupEvalID": + if r.TryDecodeAsNil() { + x.FollowupEvalID = "" + } else { + x.FollowupEvalID = (string)(r.DecodeString()) + } + case "PreemptedAllocations": + if r.TryDecodeAsNil() { + x.PreemptedAllocations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PreemptedAllocations, d) + } + } + case "PreemptedByAllocation": + if r.TryDecodeAsNil() { + x.PreemptedByAllocation = "" + } else { + x.PreemptedByAllocation = (string)(r.DecodeString()) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + case "AllocModifyIndex": + if r.TryDecodeAsNil() { + x.AllocModifyIndex = 0 + } else { + x.AllocModifyIndex = (uint64)(r.DecodeUint64()) + } + case "CreateTime": + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + case "ModifyTime": + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocationDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj40 int + var yyb40 bool + var yyhl40 bool = l >= 0 + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeName = "" + } else { + x.NodeName = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskGroup = "" + } else { + x.TaskGroup = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Resources != nil { + x.Resources = nil + } + } else { + if x.Resources == nil { + x.Resources = new(Resources) + } + + x.Resources.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.SharedResources != nil { + x.SharedResources = nil + } + } else { + if x.SharedResources == nil { + x.SharedResources = new(Resources) + } + + x.SharedResources.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskResources = nil + } else { + if false { + } else { + h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.AllocatedResources != nil { + x.AllocatedResources = nil + } + } else { + if x.AllocatedResources == nil { + x.AllocatedResources = new(AllocatedResources) + } + + x.AllocatedResources.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Metrics != nil { + x.Metrics = nil + } + } else { + if x.Metrics == nil { + x.Metrics = new(AllocMetric) + } + + x.Metrics.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredStatus = "" + } else { + x.DesiredStatus = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredDescription = "" + } else { + x.DesiredDescription = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredTransition = DesiredTransition{} + } else { + x.DesiredTransition.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClientStatus = "" + } else { + x.ClientStatus = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClientDescription = "" + } else { + x.ClientDescription = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskStates = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreviousAllocation = "" + } else { + x.PreviousAllocation = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NextAllocation = "" + } else { + x.NextAllocation = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DeploymentStatus != nil { + x.DeploymentStatus = nil + } + } else { + if x.DeploymentStatus == nil { + x.DeploymentStatus = new(AllocDeploymentStatus) + } + + x.DeploymentStatus.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.RescheduleTracker != nil { + x.RescheduleTracker = nil + } + } else { + if x.RescheduleTracker == nil { + x.RescheduleTracker = new(RescheduleTracker) + } + + x.RescheduleTracker.CodecDecodeSelf(d) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FollowupEvalID = "" + } else { + x.FollowupEvalID = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptedAllocations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PreemptedAllocations, d) + } + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptedByAllocation = "" + } else { + x.PreemptedByAllocation = (string)(r.DecodeString()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocModifyIndex = 0 + } else { + x.AllocModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + for { + yyj40++ + if yyhl40 { + yyb40 = yyj40 > l + } else { + yyb40 = r.CheckBreak() + } + if yyb40 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj40-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocListStub) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(25) + } else { + r.WriteMapStart(25) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeName\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeName`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobType)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobType\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobType`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobType))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobType)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobVersion\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobVersion)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskGroup\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroup`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredStatus`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClientStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClientStatus`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClientDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClientDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + yy46 := &x.DesiredTransition + yy46.CodecEncodeSelf(e) + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredTransition\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTransition`) + } + r.WriteMapElemValue() + yy48 := &x.DesiredTransition + yy48.CodecEncodeSelf(e) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.TaskStates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TaskStates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TaskStates`) + } + r.WriteMapElemValue() + if x.TaskStates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) + } + } + } + var yyn53 bool + if x.DeploymentStatus == nil { + yyn53 = true + goto LABEL53 + } + LABEL53: + if yyr2 || yy2arr2 { + if yyn53 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.DeploymentStatus == nil { + r.EncodeNil() + } else { + x.DeploymentStatus.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentStatus\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentStatus`) + } + r.WriteMapElemValue() + if yyn53 { + r.EncodeNil() + } else { + if x.DeploymentStatus == nil { + r.EncodeNil() + } else { + x.DeploymentStatus.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FollowupEvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FollowupEvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) + } + } + } + var yyn59 bool + if x.RescheduleTracker == nil { + yyn59 = true + goto LABEL59 + } + LABEL59: + if yyr2 || yy2arr2 { + if yyn59 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.RescheduleTracker == nil { + r.EncodeNil() + } else { + x.RescheduleTracker.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RescheduleTracker\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTracker`) + } + r.WriteMapElemValue() + if yyn59 { + r.EncodeNil() + } else { + if x.RescheduleTracker == nil { + r.EncodeNil() + } else { + x.RescheduleTracker.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.PreemptedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PreemptedAllocations, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptedAllocations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocations`) + } + r.WriteMapElemValue() + if x.PreemptedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.PreemptedAllocations, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptedByAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedByAllocation`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocListStub) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "NodeName": + if r.TryDecodeAsNil() { + x.NodeName = "" + } else { + x.NodeName = (string)(r.DecodeString()) + } + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "JobType": + if r.TryDecodeAsNil() { + x.JobType = "" + } else { + x.JobType = (string)(r.DecodeString()) + } + case "JobVersion": + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + case "TaskGroup": + if r.TryDecodeAsNil() { + x.TaskGroup = "" + } else { + x.TaskGroup = (string)(r.DecodeString()) + } + case "DesiredStatus": + if r.TryDecodeAsNil() { + x.DesiredStatus = "" + } else { + x.DesiredStatus = (string)(r.DecodeString()) + } + case "DesiredDescription": + if r.TryDecodeAsNil() { + x.DesiredDescription = "" + } else { + x.DesiredDescription = (string)(r.DecodeString()) + } + case "ClientStatus": + if r.TryDecodeAsNil() { + x.ClientStatus = "" + } else { + x.ClientStatus = (string)(r.DecodeString()) + } + case "ClientDescription": + if r.TryDecodeAsNil() { + x.ClientDescription = "" + } else { + x.ClientDescription = (string)(r.DecodeString()) + } + case "DesiredTransition": + if r.TryDecodeAsNil() { + x.DesiredTransition = DesiredTransition{} + } else { + x.DesiredTransition.CodecDecodeSelf(d) + } + case "TaskStates": + if r.TryDecodeAsNil() { + x.TaskStates = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) + } + } + case "DeploymentStatus": + if r.TryDecodeAsNil() { + if true && x.DeploymentStatus != nil { + x.DeploymentStatus = nil + } + } else { + if x.DeploymentStatus == nil { + x.DeploymentStatus = new(AllocDeploymentStatus) + } + + x.DeploymentStatus.CodecDecodeSelf(d) + } + case "FollowupEvalID": + if r.TryDecodeAsNil() { + x.FollowupEvalID = "" + } else { + x.FollowupEvalID = (string)(r.DecodeString()) + } + case "RescheduleTracker": + if r.TryDecodeAsNil() { + if true && x.RescheduleTracker != nil { + x.RescheduleTracker = nil + } + } else { + if x.RescheduleTracker == nil { + x.RescheduleTracker = new(RescheduleTracker) + } + + x.RescheduleTracker.CodecDecodeSelf(d) + } + case "PreemptedAllocations": + if r.TryDecodeAsNil() { + x.PreemptedAllocations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PreemptedAllocations, d) + } + } + case "PreemptedByAllocation": + if r.TryDecodeAsNil() { + x.PreemptedByAllocation = "" + } else { + x.PreemptedByAllocation = (string)(r.DecodeString()) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + case "CreateTime": + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + case "ModifyTime": + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj31 int + var yyb31 bool + var yyhl31 bool = l >= 0 + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeName = "" + } else { + x.NodeName = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobType = "" + } else { + x.JobType = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobVersion = 0 + } else { + x.JobVersion = (uint64)(r.DecodeUint64()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskGroup = "" + } else { + x.TaskGroup = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredStatus = "" + } else { + x.DesiredStatus = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredDescription = "" + } else { + x.DesiredDescription = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClientStatus = "" + } else { + x.ClientStatus = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClientDescription = "" + } else { + x.ClientDescription = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredTransition = DesiredTransition{} + } else { + x.DesiredTransition.CodecDecodeSelf(d) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TaskStates = nil + } else { + if false { + } else { + h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) + } + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.DeploymentStatus != nil { + x.DeploymentStatus = nil + } + } else { + if x.DeploymentStatus == nil { + x.DeploymentStatus = new(AllocDeploymentStatus) + } + + x.DeploymentStatus.CodecDecodeSelf(d) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FollowupEvalID = "" + } else { + x.FollowupEvalID = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.RescheduleTracker != nil { + x.RescheduleTracker = nil + } + } else { + if x.RescheduleTracker == nil { + x.RescheduleTracker = new(RescheduleTracker) + } + + x.RescheduleTracker.CodecDecodeSelf(d) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptedAllocations = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.PreemptedAllocations, d) + } + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptedByAllocation = "" + } else { + x.PreemptedByAllocation = (string)(r.DecodeString()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + for { + yyj31++ + if yyhl31 { + yyb31 = yyj31 > l + } else { + yyb31 = r.CheckBreak() + } + if yyb31 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj31-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocMetric) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(13) + } else { + r.WriteMapStart(13) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.NodesEvaluated)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodesEvaluated\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodesEvaluated`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.NodesEvaluated)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.NodesFiltered)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodesFiltered\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodesFiltered`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.NodesFiltered)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodesAvailable == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.NodesAvailable, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodesAvailable\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodesAvailable`) + } + r.WriteMapElemValue() + if x.NodesAvailable == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.NodesAvailable, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.ClassFiltered == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.ClassFiltered, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClassFiltered\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClassFiltered`) + } + r.WriteMapElemValue() + if x.ClassFiltered == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.ClassFiltered, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.ConstraintFiltered == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.ConstraintFiltered, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ConstraintFiltered\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ConstraintFiltered`) + } + r.WriteMapElemValue() + if x.ConstraintFiltered == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.ConstraintFiltered, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.NodesExhausted)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodesExhausted\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodesExhausted`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.NodesExhausted)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.ClassExhausted == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.ClassExhausted, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClassExhausted\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClassExhausted`) + } + r.WriteMapElemValue() + if x.ClassExhausted == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.ClassExhausted, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.DimensionExhausted == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.DimensionExhausted, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DimensionExhausted\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DimensionExhausted`) + } + r.WriteMapElemValue() + if x.DimensionExhausted == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.DimensionExhausted, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.QuotaExhausted == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.QuotaExhausted, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"QuotaExhausted\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `QuotaExhausted`) + } + r.WriteMapElemValue() + if x.QuotaExhausted == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.QuotaExhausted, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Scores == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringFloat64V(x.Scores, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Scores\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Scores`) + } + r.WriteMapElemValue() + if x.Scores == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringFloat64V(x.Scores, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.ScoreMetaData == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeScoreMeta(([]*NodeScoreMeta)(x.ScoreMetaData), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ScoreMetaData\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ScoreMetaData`) + } + r.WriteMapElemValue() + if x.ScoreMetaData == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeScoreMeta(([]*NodeScoreMeta)(x.ScoreMetaData), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt37 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt37 != nil { + z.EncExtension(x.AllocationTime, yyxt37) + } else { + r.EncodeInt(int64(x.AllocationTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocationTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocationTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt38 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt38 != nil { + z.EncExtension(x.AllocationTime, yyxt38) + } else { + r.EncodeInt(int64(x.AllocationTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.CoalescedFailures)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CoalescedFailures\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CoalescedFailures`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CoalescedFailures)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocMetric) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocMetric) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodesEvaluated": + if r.TryDecodeAsNil() { + x.NodesEvaluated = 0 + } else { + x.NodesEvaluated = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "NodesFiltered": + if r.TryDecodeAsNil() { + x.NodesFiltered = 0 + } else { + x.NodesFiltered = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "NodesAvailable": + if r.TryDecodeAsNil() { + x.NodesAvailable = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.NodesAvailable, d) + } + } + case "ClassFiltered": + if r.TryDecodeAsNil() { + x.ClassFiltered = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.ClassFiltered, d) + } + } + case "ConstraintFiltered": + if r.TryDecodeAsNil() { + x.ConstraintFiltered = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.ConstraintFiltered, d) + } + } + case "NodesExhausted": + if r.TryDecodeAsNil() { + x.NodesExhausted = 0 + } else { + x.NodesExhausted = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "ClassExhausted": + if r.TryDecodeAsNil() { + x.ClassExhausted = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.ClassExhausted, d) + } + } + case "DimensionExhausted": + if r.TryDecodeAsNil() { + x.DimensionExhausted = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.DimensionExhausted, d) + } + } + case "QuotaExhausted": + if r.TryDecodeAsNil() { + x.QuotaExhausted = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.QuotaExhausted, d) + } + } + case "Scores": + if r.TryDecodeAsNil() { + x.Scores = nil + } else { + if false { + } else { + z.F.DecMapStringFloat64X(&x.Scores, d) + } + } + case "ScoreMetaData": + if r.TryDecodeAsNil() { + x.ScoreMetaData = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeScoreMeta((*[]*NodeScoreMeta)(&x.ScoreMetaData), d) + } + } + case "AllocationTime": + if r.TryDecodeAsNil() { + x.AllocationTime = 0 + } else { + if false { + } else if yyxt24 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt24 != nil { + z.DecExtension(x.AllocationTime, yyxt24) + } else { + x.AllocationTime = (time.Duration)(r.DecodeInt64()) + } + } + case "CoalescedFailures": + if r.TryDecodeAsNil() { + x.CoalescedFailures = 0 + } else { + x.CoalescedFailures = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocMetric) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj26 int + var yyb26 bool + var yyhl26 bool = l >= 0 + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodesEvaluated = 0 + } else { + x.NodesEvaluated = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodesFiltered = 0 + } else { + x.NodesFiltered = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodesAvailable = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.NodesAvailable, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClassFiltered = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.ClassFiltered, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ConstraintFiltered = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.ConstraintFiltered, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodesExhausted = 0 + } else { + x.NodesExhausted = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClassExhausted = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.ClassExhausted, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DimensionExhausted = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.DimensionExhausted, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QuotaExhausted = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.QuotaExhausted, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Scores = nil + } else { + if false { + } else { + z.F.DecMapStringFloat64X(&x.Scores, d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ScoreMetaData = nil + } else { + if false { + } else { + h.decSlicePtrtoNodeScoreMeta((*[]*NodeScoreMeta)(&x.ScoreMetaData), d) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocationTime = 0 + } else { + if false { + } else if yyxt47 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt47 != nil { + z.DecExtension(x.AllocationTime, yyxt47) + } else { + x.AllocationTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CoalescedFailures = 0 + } else { + x.CoalescedFailures = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj26++ + if yyhl26 { + yyb26 = yyj26 > l + } else { + yyb26 = r.CheckBreak() + } + if yyb26 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj26-1, "") + } + r.ReadArrayEnd() +} + +func (x *NodeScoreMeta) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Scores == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringFloat64V(x.Scores, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Scores\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Scores`) + } + r.WriteMapElemValue() + if x.Scores == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringFloat64V(x.Scores, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeFloat64(float64(x.NormScore)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NormScore\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NormScore`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeFloat64(float64(x.NormScore)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *NodeScoreMeta) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *NodeScoreMeta) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "Scores": + if r.TryDecodeAsNil() { + x.Scores = nil + } else { + if false { + } else { + z.F.DecMapStringFloat64X(&x.Scores, d) + } + } + case "NormScore": + if r.TryDecodeAsNil() { + x.NormScore = 0 + } else { + x.NormScore = (float64)(r.DecodeFloat64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *NodeScoreMeta) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Scores = nil + } else { + if false { + } else { + z.F.DecMapStringFloat64X(&x.Scores, d) + } + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NormScore = 0 + } else { + x.NormScore = (float64)(r.DecodeFloat64()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *AllocDeploymentStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Healthy == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Healthy == nil { + r.EncodeNil() + } else { + yy4 := *x.Healthy + if false { + } else { + r.EncodeBool(bool(yy4)) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Healthy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Healthy`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Healthy == nil { + r.EncodeNil() + } else { + yy6 := *x.Healthy + if false { + } else { + r.EncodeBool(bool(yy6)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Timestamp) + } else if yyxt9 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt9 != nil { + z.EncExtension(x.Timestamp, yyxt9) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Timestamp) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Timestamp) + } else { + z.EncFallback(x.Timestamp) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Timestamp\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Timestamp`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.Timestamp) + } else if yyxt10 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt10 != nil { + z.EncExtension(x.Timestamp, yyxt10) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.Timestamp) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.Timestamp) + } else { + z.EncFallback(x.Timestamp) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Canary)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Canary\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Canary`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Canary)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *AllocDeploymentStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *AllocDeploymentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Healthy": + if r.TryDecodeAsNil() { + if true && x.Healthy != nil { + x.Healthy = nil + } + } else { + if x.Healthy == nil { + x.Healthy = new(bool) + } + + if false { + } else { + *x.Healthy = (bool)(r.DecodeBool()) + } + } + case "Timestamp": + if r.TryDecodeAsNil() { + x.Timestamp = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Timestamp = r.DecodeTime() + } else if yyxt7 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt7 != nil { + z.DecExtension(x.Timestamp, yyxt7) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Timestamp) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Timestamp) + } else { + z.DecFallback(&x.Timestamp, false) + } + } + case "Canary": + if r.TryDecodeAsNil() { + x.Canary = false + } else { + x.Canary = (bool)(r.DecodeBool()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *AllocDeploymentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Healthy != nil { + x.Healthy = nil + } + } else { + if x.Healthy == nil { + x.Healthy = new(bool) + } + + if false { + } else { + *x.Healthy = (bool)(r.DecodeBool()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Timestamp = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.Timestamp = r.DecodeTime() + } else if yyxt14 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt14 != nil { + z.DecExtension(x.Timestamp, yyxt14) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.Timestamp) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.Timestamp) + } else { + z.DecFallback(&x.Timestamp, false) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Canary = false + } else { + x.Canary = (bool)(r.DecodeBool()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *Evaluation) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + var yyq2 = [29]bool{ // should field at this index be written? + x.ID != "", // ID + x.Namespace != "", // Namespace + x.Priority != 0, // Priority + x.Type != "", // Type + x.TriggeredBy != "", // TriggeredBy + x.JobID != "", // JobID + x.JobModifyIndex != 0, // JobModifyIndex + x.NodeID != "", // NodeID + x.NodeModifyIndex != 0, // NodeModifyIndex + x.DeploymentID != "", // DeploymentID + x.Status != "", // Status + x.StatusDescription != "", // StatusDescription + x.Wait != 0, // Wait + !(x.WaitUntil.IsZero()), // WaitUntil + x.NextEval != "", // NextEval + x.PreviousEval != "", // PreviousEval + x.BlockedEval != "", // BlockedEval + len(x.FailedTGAllocs) != 0, // FailedTGAllocs + len(x.ClassEligibility) != 0, // ClassEligibility + x.QuotaLimitReached != "", // QuotaLimitReached + x.EscapedComputedClass, // EscapedComputedClass + x.AnnotatePlan, // AnnotatePlan + len(x.QueuedAllocations) != 0, // QueuedAllocations + x.LeaderACL != "", // LeaderACL + x.SnapshotIndex != 0, // SnapshotIndex + x.CreateIndex != 0, // CreateIndex + x.ModifyIndex != 0, // ModifyIndex + x.CreateTime != 0, // CreateTime + x.ModifyTime != 0, // ModifyTime + } + _ = yyq2 + if yyr2 || yy2arr2 { + r.WriteArrayStart(29) + } else { + var yynn2 int + for _, b := range yyq2 { + if b { + yynn2++ + } + } + r.WriteMapStart(yynn2) + yynn2 = 0 + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[0] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[0] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[1] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[1] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[2] { + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[2] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Priority\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[3] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[3] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[4] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TriggeredBy))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TriggeredBy)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[4] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"TriggeredBy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `TriggeredBy`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.TriggeredBy))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TriggeredBy)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[5] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[5] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[6] { + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[6] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"JobModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.JobModifyIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[7] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[7] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[8] { + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[8] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.NodeModifyIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[9] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[9] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[10] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[10] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Status\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[11] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[11] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"StatusDescription\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[12] { + if false { + } else if yyxt40 := z.Extension(z.I2Rtid(x.Wait)); yyxt40 != nil { + z.EncExtension(x.Wait, yyxt40) + } else { + r.EncodeInt(int64(x.Wait)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[12] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Wait\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Wait`) + } + r.WriteMapElemValue() + if false { + } else if yyxt41 := z.Extension(z.I2Rtid(x.Wait)); yyxt41 != nil { + z.EncExtension(x.Wait, yyxt41) + } else { + r.EncodeInt(int64(x.Wait)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[13] { + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.WaitUntil) + } else if yyxt43 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt43 != nil { + z.EncExtension(x.WaitUntil, yyxt43) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.WaitUntil) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.WaitUntil) + } else { + z.EncFallback(x.WaitUntil) + } + } else { + r.EncodeNil() + } + } else { + if yyq2[13] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"WaitUntil\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `WaitUntil`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.WaitUntil) + } else if yyxt44 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt44 != nil { + z.EncExtension(x.WaitUntil, yyxt44) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.WaitUntil) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.WaitUntil) + } else { + z.EncFallback(x.WaitUntil) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[14] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NextEval))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextEval)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[14] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NextEval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NextEval`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.NextEval))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextEval)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[15] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousEval))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousEval)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[15] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreviousEval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreviousEval`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousEval))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousEval)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[16] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.BlockedEval))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.BlockedEval)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[16] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"BlockedEval\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `BlockedEval`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.BlockedEval))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.BlockedEval)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[17] { + if x.FailedTGAllocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[17] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"FailedTGAllocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `FailedTGAllocs`) + } + r.WriteMapElemValue() + if x.FailedTGAllocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[18] { + if x.ClassEligibility == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringBoolV(x.ClassEligibility, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[18] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ClassEligibility\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ClassEligibility`) + } + r.WriteMapElemValue() + if x.ClassEligibility == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringBoolV(x.ClassEligibility, e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[19] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.QuotaLimitReached))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.QuotaLimitReached)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[19] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"QuotaLimitReached\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `QuotaLimitReached`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.QuotaLimitReached))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.QuotaLimitReached)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[20] { + if false { + } else { + r.EncodeBool(bool(x.EscapedComputedClass)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2[20] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EscapedComputedClass\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EscapedComputedClass`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.EscapedComputedClass)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[21] { + if false { + } else { + r.EncodeBool(bool(x.AnnotatePlan)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2[21] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AnnotatePlan\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AnnotatePlan`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AnnotatePlan)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[22] { + if x.QueuedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.QueuedAllocations, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[22] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"QueuedAllocations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `QueuedAllocations`) + } + r.WriteMapElemValue() + if x.QueuedAllocations == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.QueuedAllocations, e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[23] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderACL))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderACL)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[23] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LeaderACL\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LeaderACL`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderACL))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderACL)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[24] { + if false { + } else { + r.EncodeUint(uint64(x.SnapshotIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[24] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SnapshotIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SnapshotIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.SnapshotIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[25] { + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[25] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[26] { + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[26] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[27] { + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[27] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.CreateTime)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[28] { + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[28] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.ModifyTime)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Evaluation) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Evaluation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "ID": + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "Priority": + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "TriggeredBy": + if r.TryDecodeAsNil() { + x.TriggeredBy = "" + } else { + x.TriggeredBy = (string)(r.DecodeString()) + } + case "JobID": + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + case "JobModifyIndex": + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + case "NodeID": + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + case "NodeModifyIndex": + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + case "DeploymentID": + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + case "Status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + case "StatusDescription": + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + case "Wait": + if r.TryDecodeAsNil() { + x.Wait = 0 + } else { + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.Wait)); yyxt17 != nil { + z.DecExtension(x.Wait, yyxt17) + } else { + x.Wait = (time.Duration)(r.DecodeInt64()) + } + } + case "WaitUntil": + if r.TryDecodeAsNil() { + x.WaitUntil = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.WaitUntil = r.DecodeTime() + } else if yyxt19 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt19 != nil { + z.DecExtension(x.WaitUntil, yyxt19) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.WaitUntil) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.WaitUntil) + } else { + z.DecFallback(&x.WaitUntil, false) + } + } + case "NextEval": + if r.TryDecodeAsNil() { + x.NextEval = "" + } else { + x.NextEval = (string)(r.DecodeString()) + } + case "PreviousEval": + if r.TryDecodeAsNil() { + x.PreviousEval = "" + } else { + x.PreviousEval = (string)(r.DecodeString()) + } + case "BlockedEval": + if r.TryDecodeAsNil() { + x.BlockedEval = "" + } else { + x.BlockedEval = (string)(r.DecodeString()) + } + case "FailedTGAllocs": + if r.TryDecodeAsNil() { + x.FailedTGAllocs = nil + } else { + if false { + } else { + h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) + } + } + case "ClassEligibility": + if r.TryDecodeAsNil() { + x.ClassEligibility = nil + } else { + if false { + } else { + z.F.DecMapStringBoolX(&x.ClassEligibility, d) + } + } + case "QuotaLimitReached": + if r.TryDecodeAsNil() { + x.QuotaLimitReached = "" + } else { + x.QuotaLimitReached = (string)(r.DecodeString()) + } + case "EscapedComputedClass": + if r.TryDecodeAsNil() { + x.EscapedComputedClass = false + } else { + x.EscapedComputedClass = (bool)(r.DecodeBool()) + } + case "AnnotatePlan": + if r.TryDecodeAsNil() { + x.AnnotatePlan = false + } else { + x.AnnotatePlan = (bool)(r.DecodeBool()) + } + case "QueuedAllocations": + if r.TryDecodeAsNil() { + x.QueuedAllocations = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.QueuedAllocations, d) + } + } + case "LeaderACL": + if r.TryDecodeAsNil() { + x.LeaderACL = "" + } else { + x.LeaderACL = (string)(r.DecodeString()) + } + case "SnapshotIndex": + if r.TryDecodeAsNil() { + x.SnapshotIndex = 0 + } else { + x.SnapshotIndex = (uint64)(r.DecodeUint64()) + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + case "CreateTime": + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + case "ModifyTime": + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Evaluation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj38 int + var yyb38 bool + var yyhl38 bool = l >= 0 + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ID = "" + } else { + x.ID = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.TriggeredBy = "" + } else { + x.TriggeredBy = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobID = "" + } else { + x.JobID = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.JobModifyIndex = 0 + } else { + x.JobModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeID = "" + } else { + x.NodeID = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeModifyIndex = 0 + } else { + x.NodeModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentID = "" + } else { + x.DeploymentID = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.StatusDescription = "" + } else { + x.StatusDescription = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Wait = 0 + } else { + if false { + } else if yyxt52 := z.Extension(z.I2Rtid(x.Wait)); yyxt52 != nil { + z.DecExtension(x.Wait, yyxt52) + } else { + x.Wait = (time.Duration)(r.DecodeInt64()) + } + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WaitUntil = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.WaitUntil = r.DecodeTime() + } else if yyxt54 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt54 != nil { + z.DecExtension(x.WaitUntil, yyxt54) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.WaitUntil) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.WaitUntil) + } else { + z.DecFallback(&x.WaitUntil, false) + } + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NextEval = "" + } else { + x.NextEval = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreviousEval = "" + } else { + x.PreviousEval = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.BlockedEval = "" + } else { + x.BlockedEval = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.FailedTGAllocs = nil + } else { + if false { + } else { + h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) + } + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ClassEligibility = nil + } else { + if false { + } else { + z.F.DecMapStringBoolX(&x.ClassEligibility, d) + } + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QuotaLimitReached = "" + } else { + x.QuotaLimitReached = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EscapedComputedClass = false + } else { + x.EscapedComputedClass = (bool)(r.DecodeBool()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AnnotatePlan = false + } else { + x.AnnotatePlan = (bool)(r.DecodeBool()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueuedAllocations = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.QueuedAllocations, d) + } + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.LeaderACL = "" + } else { + x.LeaderACL = (string)(r.DecodeString()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SnapshotIndex = 0 + } else { + x.SnapshotIndex = (uint64)(r.DecodeUint64()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateTime = 0 + } else { + x.CreateTime = (int64)(r.DecodeInt64()) + } + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyTime = 0 + } else { + x.ModifyTime = (int64)(r.DecodeInt64()) + } + for { + yyj38++ + if yyhl38 { + yyb38 = yyj38 > l + } else { + yyb38 = r.CheckBreak() + } + if yyb38 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj38-1, "") + } + r.ReadArrayEnd() +} + +func (x *Plan) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + var yyq2 = [12]bool{ // should field at this index be written? + x.EvalID != "", // EvalID + x.EvalToken != "", // EvalToken + x.Priority != 0, // Priority + x.AllAtOnce, // AllAtOnce + x.Job != nil, // Job + len(x.NodeUpdate) != 0, // NodeUpdate + len(x.NodeAllocation) != 0, // NodeAllocation + x.Annotations != nil, // Annotations + x.Deployment != nil, // Deployment + len(x.DeploymentUpdates) != 0, // DeploymentUpdates + len(x.NodePreemptions) != 0, // NodePreemptions + x.SnapshotIndex != 0, // SnapshotIndex + } + _ = yyq2 + if yyr2 || yy2arr2 { + r.WriteArrayStart(12) + } else { + var yynn2 int + for _, b := range yyq2 { + if b { + yynn2++ + } + } + r.WriteMapStart(yynn2) + yynn2 = 0 + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[0] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[0] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[1] { + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) + } + } + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw([]byte{}) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, "") + } + } + } else { + if yyq2[1] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"EvalToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `EvalToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[2] { + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2[2] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Priority\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.Priority)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[3] { + if false { + } else { + r.EncodeBool(bool(x.AllAtOnce)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2[3] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllAtOnce\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllAtOnce`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllAtOnce)) + } + } + } + var yyn15 bool + if x.Job == nil { + yyn15 = true + goto LABEL15 + } + LABEL15: + if yyr2 || yy2arr2 { + if yyn15 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[4] { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[4] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Job\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) + } + r.WriteMapElemValue() + if yyn15 { + r.EncodeNil() + } else { + if x.Job == nil { + r.EncodeNil() + } else { + x.Job.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[5] { + if x.NodeUpdate == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[5] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeUpdate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeUpdate`) + } + r.WriteMapElemValue() + if x.NodeUpdate == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[6] { + if x.NodeAllocation == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[6] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeAllocation`) + } + r.WriteMapElemValue() + if x.NodeAllocation == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) + } + } + } + } + var yyn24 bool + if x.Annotations == nil { + yyn24 = true + goto LABEL24 + } + LABEL24: + if yyr2 || yy2arr2 { + if yyn24 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[7] { + if x.Annotations == nil { + r.EncodeNil() + } else { + x.Annotations.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[7] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Annotations\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) + } + r.WriteMapElemValue() + if yyn24 { + r.EncodeNil() + } else { + if x.Annotations == nil { + r.EncodeNil() + } else { + x.Annotations.CodecEncodeSelf(e) + } + } + } + } + var yyn27 bool + if x.Deployment == nil { + yyn27 = true + goto LABEL27 + } + LABEL27: + if yyr2 || yy2arr2 { + if yyn27 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if yyq2[8] { + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq2[8] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deployment\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) + } + r.WriteMapElemValue() + if yyn27 { + r.EncodeNil() + } else { + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[9] { + if x.DeploymentUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[9] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentUpdates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdates`) + } + r.WriteMapElemValue() + if x.DeploymentUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[10] { + if x.NodePreemptions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[10] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodePreemptions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodePreemptions`) + } + r.WriteMapElemValue() + if x.NodePreemptions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if yyq2[11] { + if false { + } else { + r.EncodeUint(uint64(x.SnapshotIndex)) + } + } else { + r.EncodeUint(0) + } + } else { + if yyq2[11] { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SnapshotIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SnapshotIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.SnapshotIndex)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *Plan) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *Plan) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "EvalID": + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + case "EvalToken": + if r.TryDecodeAsNil() { + x.EvalToken = "" + } else { + x.EvalToken = (string)(r.DecodeString()) + } + case "Priority": + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + case "AllAtOnce": + if r.TryDecodeAsNil() { + x.AllAtOnce = false + } else { + x.AllAtOnce = (bool)(r.DecodeBool()) + } + case "Job": + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + case "NodeUpdate": + if r.TryDecodeAsNil() { + x.NodeUpdate = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) + } + } + case "NodeAllocation": + if r.TryDecodeAsNil() { + x.NodeAllocation = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) + } + } + case "Annotations": + if r.TryDecodeAsNil() { + if true && x.Annotations != nil { + x.Annotations = nil + } + } else { + if x.Annotations == nil { + x.Annotations = new(PlanAnnotations) + } + + x.Annotations.CodecDecodeSelf(d) + } + case "Deployment": + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + case "DeploymentUpdates": + if r.TryDecodeAsNil() { + x.DeploymentUpdates = nil + } else { + if false { + } else { + h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) + } + } + case "NodePreemptions": + if r.TryDecodeAsNil() { + x.NodePreemptions = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) + } + } + case "SnapshotIndex": + if r.TryDecodeAsNil() { + x.SnapshotIndex = 0 + } else { + x.SnapshotIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *Plan) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj20 int + var yyb20 bool + var yyhl20 bool = l >= 0 + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalID = "" + } else { + x.EvalID = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.EvalToken = "" + } else { + x.EvalToken = (string)(r.DecodeString()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Priority = 0 + } else { + x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllAtOnce = false + } else { + x.AllAtOnce = (bool)(r.DecodeBool()) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Job != nil { + x.Job = nil + } + } else { + if x.Job == nil { + x.Job = new(Job) + } + + x.Job.CodecDecodeSelf(d) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeUpdate = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeAllocation = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Annotations != nil { + x.Annotations = nil + } + } else { + if x.Annotations == nil { + x.Annotations = new(PlanAnnotations) + } + + x.Annotations.CodecDecodeSelf(d) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentUpdates = nil + } else { + if false { + } else { + h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodePreemptions = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) + } + } + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SnapshotIndex = 0 + } else { + x.SnapshotIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj20++ + if yyhl20 { + yyb20 = yyj20 > l + } else { + yyb20 = r.CheckBreak() + } + if yyb20 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj20-1, "") + } + r.ReadArrayEnd() +} + +func (x *PlanResult) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodeUpdate == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeUpdate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeUpdate`) + } + r.WriteMapElemValue() + if x.NodeUpdate == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodeAllocation == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodeAllocation\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodeAllocation`) + } + r.WriteMapElemValue() + if x.NodeAllocation == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) + } + } + } + var yyn9 bool + if x.Deployment == nil { + yyn9 = true + goto LABEL9 + } + LABEL9: + if yyr2 || yy2arr2 { + if yyn9 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Deployment\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) + } + r.WriteMapElemValue() + if yyn9 { + r.EncodeNil() + } else { + if x.Deployment == nil { + r.EncodeNil() + } else { + x.Deployment.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.DeploymentUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DeploymentUpdates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdates`) + } + r.WriteMapElemValue() + if x.DeploymentUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.NodePreemptions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NodePreemptions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NodePreemptions`) + } + r.WriteMapElemValue() + if x.NodePreemptions == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.RefreshIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RefreshIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RefreshIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.RefreshIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.AllocIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllocIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllocIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.AllocIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PlanResult) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PlanResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "NodeUpdate": + if r.TryDecodeAsNil() { + x.NodeUpdate = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) + } + } + case "NodeAllocation": + if r.TryDecodeAsNil() { + x.NodeAllocation = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) + } + } + case "Deployment": + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + case "DeploymentUpdates": + if r.TryDecodeAsNil() { + x.DeploymentUpdates = nil + } else { + if false { + } else { + h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) + } + } + case "NodePreemptions": + if r.TryDecodeAsNil() { + x.NodePreemptions = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) + } + } + case "RefreshIndex": + if r.TryDecodeAsNil() { + x.RefreshIndex = 0 + } else { + x.RefreshIndex = (uint64)(r.DecodeUint64()) + } + case "AllocIndex": + if r.TryDecodeAsNil() { + x.AllocIndex = 0 + } else { + x.AllocIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PlanResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeUpdate = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodeAllocation = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Deployment != nil { + x.Deployment = nil + } + } else { + if x.Deployment == nil { + x.Deployment = new(Deployment) + } + + x.Deployment.CodecDecodeSelf(d) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DeploymentUpdates = nil + } else { + if false { + } else { + h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NodePreemptions = nil + } else { + if false { + } else { + h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.RefreshIndex = 0 + } else { + x.RefreshIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AllocIndex = 0 + } else { + x.AllocIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *PlanAnnotations) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.DesiredTGUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDesiredUpdates((map[string]*DesiredUpdates)(x.DesiredTGUpdates), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DesiredTGUpdates\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTGUpdates`) + } + r.WriteMapElemValue() + if x.DesiredTGUpdates == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoDesiredUpdates((map[string]*DesiredUpdates)(x.DesiredTGUpdates), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.PreemptedAllocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.PreemptedAllocs), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PreemptedAllocs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocs`) + } + r.WriteMapElemValue() + if x.PreemptedAllocs == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.PreemptedAllocs), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *PlanAnnotations) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *PlanAnnotations) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "DesiredTGUpdates": + if r.TryDecodeAsNil() { + x.DesiredTGUpdates = nil + } else { + if false { + } else { + h.decMapstringPtrtoDesiredUpdates((*map[string]*DesiredUpdates)(&x.DesiredTGUpdates), d) + } + } + case "PreemptedAllocs": + if r.TryDecodeAsNil() { + x.PreemptedAllocs = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.PreemptedAllocs), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *PlanAnnotations) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DesiredTGUpdates = nil + } else { + if false { + } else { + h.decMapstringPtrtoDesiredUpdates((*map[string]*DesiredUpdates)(&x.DesiredTGUpdates), d) + } + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PreemptedAllocs = nil + } else { + if false { + } else { + h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.PreemptedAllocs), d) + } + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *DesiredUpdates) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Ignore)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Ignore\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Ignore`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Ignore)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Place)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Place\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Place`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Place)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Migrate)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Migrate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Migrate)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Stop)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Stop\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Stop`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Stop)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.InPlaceUpdate)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"InPlaceUpdate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `InPlaceUpdate`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.InPlaceUpdate)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.DestructiveUpdate)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"DestructiveUpdate\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `DestructiveUpdate`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.DestructiveUpdate)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Canary)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Canary\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Canary`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Canary)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Preemptions)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Preemptions\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Preemptions`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Preemptions)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *DesiredUpdates) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *DesiredUpdates) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Ignore": + if r.TryDecodeAsNil() { + x.Ignore = 0 + } else { + x.Ignore = (uint64)(r.DecodeUint64()) + } + case "Place": + if r.TryDecodeAsNil() { + x.Place = 0 + } else { + x.Place = (uint64)(r.DecodeUint64()) + } + case "Migrate": + if r.TryDecodeAsNil() { + x.Migrate = 0 + } else { + x.Migrate = (uint64)(r.DecodeUint64()) + } + case "Stop": + if r.TryDecodeAsNil() { + x.Stop = 0 + } else { + x.Stop = (uint64)(r.DecodeUint64()) + } + case "InPlaceUpdate": + if r.TryDecodeAsNil() { + x.InPlaceUpdate = 0 + } else { + x.InPlaceUpdate = (uint64)(r.DecodeUint64()) + } + case "DestructiveUpdate": + if r.TryDecodeAsNil() { + x.DestructiveUpdate = 0 + } else { + x.DestructiveUpdate = (uint64)(r.DecodeUint64()) + } + case "Canary": + if r.TryDecodeAsNil() { + x.Canary = 0 + } else { + x.Canary = (uint64)(r.DecodeUint64()) + } + case "Preemptions": + if r.TryDecodeAsNil() { + x.Preemptions = 0 + } else { + x.Preemptions = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *DesiredUpdates) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj12 int + var yyb12 bool + var yyhl12 bool = l >= 0 + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Ignore = 0 + } else { + x.Ignore = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Place = 0 + } else { + x.Place = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Migrate = 0 + } else { + x.Migrate = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Stop = 0 + } else { + x.Stop = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.InPlaceUpdate = 0 + } else { + x.InPlaceUpdate = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.DestructiveUpdate = 0 + } else { + x.DestructiveUpdate = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Canary = 0 + } else { + x.Canary = (uint64)(r.DecodeUint64()) + } + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Preemptions = 0 + } else { + x.Preemptions = (uint64)(r.DecodeUint64()) + } + for { + yyj12++ + if yyhl12 { + yyb12 = yyj12 > l + } else { + yyb12 = r.CheckBreak() + } + if yyb12 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj12-1, "") + } + r.ReadArrayEnd() +} + +func (x *KeyringResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Messages == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Messages, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Messages\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Messages`) + } + r.WriteMapElemValue() + if x.Messages == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringStringV(x.Messages, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Keys == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.Keys, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Keys\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Keys`) + } + r.WriteMapElemValue() + if x.Keys == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncMapStringIntV(x.Keys, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeInt(int64(x.NumNodes)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"NumNodes\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `NumNodes`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeInt(int64(x.NumNodes)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *KeyringResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *KeyringResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Messages": + if r.TryDecodeAsNil() { + x.Messages = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Messages, d) + } + } + case "Keys": + if r.TryDecodeAsNil() { + x.Keys = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.Keys, d) + } + } + case "NumNodes": + if r.TryDecodeAsNil() { + x.NumNodes = 0 + } else { + x.NumNodes = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *KeyringResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Messages = nil + } else { + if false { + } else { + z.F.DecMapStringStringX(&x.Messages, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Keys = nil + } else { + if false { + } else { + z.F.DecMapStringIntX(&x.Keys, d) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.NumNodes = 0 + } else { + x.NumNodes = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *KeyringRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Key))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Key)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Key\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Key`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Key))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Key)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *KeyringRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *KeyringRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Key": + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *KeyringRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj5 int + var yyb5 bool + var yyhl5 bool = l >= 0 + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = (string)(r.DecodeString()) + } + for { + yyj5++ + if yyhl5 { + yyb5 = yyj5 > l + } else { + yyb5 = r.CheckBreak() + } + if yyb5 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj5-1, "") + } + r.ReadArrayEnd() +} + +func (x *RecoverableError) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Err))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Err)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Err\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Err`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Err))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Err)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Recoverable)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Recoverable\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Recoverable`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Recoverable)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *RecoverableError) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *RecoverableError) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Err": + if r.TryDecodeAsNil() { + x.Err = "" + } else { + x.Err = (string)(r.DecodeString()) + } + case "Recoverable": + if r.TryDecodeAsNil() { + x.Recoverable = false + } else { + x.Recoverable = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *RecoverableError) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Err = "" + } else { + x.Err = (string)(r.DecodeString()) + } + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Recoverable = false + } else { + x.Recoverable = (bool)(r.DecodeBool()) + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *WrappedServerError) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(1) + } else { + r.WriteMapStart(1) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Err == nil { + r.EncodeNil() + } else { + if false { + } else { + z.EncFallback(x.Err) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Err\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Err`) + } + r.WriteMapElemValue() + if x.Err == nil { + r.EncodeNil() + } else { + if false { + } else { + z.EncFallback(x.Err) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *WrappedServerError) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *WrappedServerError) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Err": + if r.TryDecodeAsNil() { + x.Err = nil + } else { + if false { + } else { + z.DecFallback(&x.Err, true) + } + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *WrappedServerError) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj6 int + var yyb6 bool + var yyhl6 bool = l >= 0 + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Err = nil + } else { + if false { + } else { + z.DecFallback(&x.Err, true) + } + } + for { + yyj6++ + if yyhl6 { + yyb6 = yyj6 > l + } else { + yyb6 = r.CheckBreak() + } + if yyb6 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj6-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(7) + } else { + r.WriteMapStart(7) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Description\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Description`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Rules))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Rules)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Rules\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Rules`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Rules))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Rules)) + } + } + } + var yyn12 bool + if x.RulesJSON == nil { + yyn12 = true + goto LABEL12 + } + LABEL12: + if yyr2 || yy2arr2 { + if yyn12 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.RulesJSON == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt13 != nil { + z.EncExtension(x.RulesJSON, yyxt13) + } else { + z.EncFallback(x.RulesJSON) + } + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"RulesJSON\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `RulesJSON`) + } + r.WriteMapElemValue() + if yyn12 { + r.EncodeNil() + } else { + if x.RulesJSON == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt14 != nil { + z.EncExtension(x.RulesJSON, yyxt14) + } else { + z.EncFallback(x.RulesJSON) + } + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Hash\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) + } + r.WriteMapElemValue() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Description": + if r.TryDecodeAsNil() { + x.Description = "" + } else { + x.Description = (string)(r.DecodeString()) + } + case "Rules": + if r.TryDecodeAsNil() { + x.Rules = "" + } else { + x.Rules = (string)(r.DecodeString()) + } + case "RulesJSON": + if r.TryDecodeAsNil() { + if true && x.RulesJSON != nil { + x.RulesJSON = nil + } + } else { + if x.RulesJSON == nil { + x.RulesJSON = new(pkg3_acl.Policy) + } + + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt8 != nil { + z.DecExtension(x.RulesJSON, yyxt8) + } else { + z.DecFallback(x.RulesJSON, false) + } + } + case "Hash": + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Description = "" + } else { + x.Description = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Rules = "" + } else { + x.Rules = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.RulesJSON != nil { + x.RulesJSON = nil + } + } else { + if x.RulesJSON == nil { + x.RulesJSON = new(pkg3_acl.Policy) + } + + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt18 != nil { + z.DecExtension(x.RulesJSON, yyxt18) + } else { + z.DecFallback(x.RulesJSON, false) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicyListStub) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Description\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Description`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Hash\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) + } + r.WriteMapElemValue() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicyListStub) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicyListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Description": + if r.TryDecodeAsNil() { + x.Description = "" + } else { + x.Description = (string)(r.DecodeString()) + } + case "Hash": + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicyListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Description = "" + } else { + x.Description = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicyListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(8) + } else { + r.WriteMapStart(8) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { + z.EncExtension(x.MaxQueryTime, yyxt13) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { + z.EncExtension(x.MaxQueryTime, yyxt14) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicyListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicyListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { + z.DecExtension(x.MaxQueryTime, yyxt8) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicyListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj13 int + var yyb13 bool + var yyhl13 bool = l >= 0 + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { + z.DecExtension(x.MaxQueryTime, yyxt18) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj13++ + if yyhl13 { + yyb13 = yyj13 > l + } else { + yyb13 = r.CheckBreak() + } + if yyb13 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj13-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicySpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicySpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicySpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicySpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicySetRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Names == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Names, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Names\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Names`) + } + r.WriteMapElemValue() + if x.Names == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Names, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicySetRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicySetRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Names": + if r.TryDecodeAsNil() { + x.Names = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Names, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicySetRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Names = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Names, d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicyListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLPolicyListStub(([]*ACLPolicyListStub)(x.Policies), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Policies\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) + } + r.WriteMapElemValue() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLPolicyListStub(([]*ACLPolicyListStub)(x.Policies), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicyListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicyListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Policies": + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + h.decSlicePtrtoACLPolicyListStub((*[]*ACLPolicyListStub)(&x.Policies), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicyListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + h.decSlicePtrtoACLPolicyListStub((*[]*ACLPolicyListStub)(&x.Policies), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *SingleACLPolicyResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Policy == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Policy == nil { + r.EncodeNil() + } else { + x.Policy.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Policy\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Policy`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Policy == nil { + r.EncodeNil() + } else { + x.Policy.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SingleACLPolicyResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SingleACLPolicyResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Policy": + if r.TryDecodeAsNil() { + if true && x.Policy != nil { + x.Policy = nil + } + } else { + if x.Policy == nil { + x.Policy = new(ACLPolicy) + } + + x.Policy.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SingleACLPolicyResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Policy != nil { + x.Policy = nil + } + } else { + if x.Policy == nil { + x.Policy = new(ACLPolicy) + } + + x.Policy.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicySetResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoACLPolicy((map[string]*ACLPolicy)(x.Policies), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Policies\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) + } + r.WriteMapElemValue() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoACLPolicy((map[string]*ACLPolicy)(x.Policies), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicySetResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicySetResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Policies": + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + h.decMapstringPtrtoACLPolicy((*map[string]*ACLPolicy)(&x.Policies), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicySetResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + h.decMapstringPtrtoACLPolicy((*map[string]*ACLPolicy)(&x.Policies), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicyDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Names == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Names, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Names\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Names`) + } + r.WriteMapElemValue() + if x.Names == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Names, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicyDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicyDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Names": + if r.TryDecodeAsNil() { + x.Names = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Names, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicyDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Names = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Names, d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLPolicyUpsertRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLPolicy(([]*ACLPolicy)(x.Policies), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Policies\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) + } + r.WriteMapElemValue() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLPolicy(([]*ACLPolicy)(x.Policies), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLPolicyUpsertRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLPolicyUpsertRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Policies": + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + h.decSlicePtrtoACLPolicy((*[]*ACLPolicy)(&x.Policies), d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLPolicyUpsertRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + h.decSlicePtrtoACLPolicy((*[]*ACLPolicy)(&x.Policies), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLToken) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(10) + } else { + r.WriteMapStart(10) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AccessorID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SecretID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Policies, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Policies\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) + } + r.WriteMapElemValue() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Policies, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Global)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Global\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Global`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Global)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Hash\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) + } + r.WriteMapElemValue() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.CreateTime) + } else if yyxt25 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt25 != nil { + z.EncExtension(x.CreateTime, yyxt25) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.CreateTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.CreateTime) + } else { + z.EncFallback(x.CreateTime) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.CreateTime) + } else if yyxt26 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt26 != nil { + z.EncExtension(x.CreateTime, yyxt26) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.CreateTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.CreateTime) + } else { + z.EncFallback(x.CreateTime) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLToken) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLToken) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AccessorID": + if r.TryDecodeAsNil() { + x.AccessorID = "" + } else { + x.AccessorID = (string)(r.DecodeString()) + } + case "SecretID": + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Policies": + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Policies, d) + } + } + case "Global": + if r.TryDecodeAsNil() { + x.Global = false + } else { + x.Global = (bool)(r.DecodeBool()) + } + case "Hash": + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + case "CreateTime": + if r.TryDecodeAsNil() { + x.CreateTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.CreateTime = r.DecodeTime() + } else if yyxt14 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt14 != nil { + z.DecExtension(x.CreateTime, yyxt14) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.CreateTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.CreateTime) + } else { + z.DecFallback(&x.CreateTime, false) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLToken) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj17 int + var yyb17 bool + var yyhl17 bool = l >= 0 + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AccessorID = "" + } else { + x.AccessorID = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Policies, d) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Global = false + } else { + x.Global = (bool)(r.DecodeBool()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.CreateTime = r.DecodeTime() + } else if yyxt28 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt28 != nil { + z.DecExtension(x.CreateTime, yyxt28) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.CreateTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.CreateTime) + } else { + z.DecFallback(&x.CreateTime, false) + } + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj17++ + if yyhl17 { + yyb17 = yyj17 > l + } else { + yyb17 = r.CheckBreak() + } + if yyb17 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj17-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenListStub) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AccessorID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Policies, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Policies\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) + } + r.WriteMapElemValue() + if x.Policies == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.Policies, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Global)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Global\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Global`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Global)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Hash\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) + } + r.WriteMapElemValue() + if x.Hash == nil { + r.EncodeNil() + } else { + if false { + } else { + r.EncodeStringBytesRaw([]byte(x.Hash)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.CreateTime) + } else if yyxt22 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt22 != nil { + z.EncExtension(x.CreateTime, yyxt22) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.CreateTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.CreateTime) + } else { + z.EncFallback(x.CreateTime) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) + } + r.WriteMapElemValue() + if false { + } else if !z.EncBasicHandle().TimeNotBuiltin { + r.EncodeTime(x.CreateTime) + } else if yyxt23 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt23 != nil { + z.EncExtension(x.CreateTime, yyxt23) + } else if z.EncBinary() { + z.EncBinaryMarshal(x.CreateTime) + } else if !z.EncBinary() && z.IsJSONHandle() { + z.EncJSONMarshal(x.CreateTime) + } else { + z.EncFallback(x.CreateTime) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"CreateIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.CreateIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ModifyIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ModifyIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenListStub) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AccessorID": + if r.TryDecodeAsNil() { + x.AccessorID = "" + } else { + x.AccessorID = (string)(r.DecodeString()) + } + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Policies": + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Policies, d) + } + } + case "Global": + if r.TryDecodeAsNil() { + x.Global = false + } else { + x.Global = (bool)(r.DecodeBool()) + } + case "Hash": + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + case "CreateTime": + if r.TryDecodeAsNil() { + x.CreateTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.CreateTime = r.DecodeTime() + } else if yyxt13 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt13 != nil { + z.DecExtension(x.CreateTime, yyxt13) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.CreateTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.CreateTime) + } else { + z.DecFallback(&x.CreateTime, false) + } + } + case "CreateIndex": + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + case "ModifyIndex": + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj16 int + var yyb16 bool + var yyhl16 bool = l >= 0 + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AccessorID = "" + } else { + x.AccessorID = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Policies = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.Policies, d) + } + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Global = false + } else { + x.Global = (bool)(r.DecodeBool()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Hash = nil + } else { + if false { + } else { + x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) + } + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateTime = time.Time{} + } else { + if false { + } else if !z.DecBasicHandle().TimeNotBuiltin { + x.CreateTime = r.DecodeTime() + } else if yyxt26 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt26 != nil { + z.DecExtension(x.CreateTime, yyxt26) + } else if z.DecBinary() { + z.DecBinaryUnmarshal(&x.CreateTime) + } else if !z.DecBinary() && z.IsJSONHandle() { + z.DecJSONUnmarshal(&x.CreateTime) + } else { + z.DecFallback(&x.CreateTime, false) + } + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.CreateIndex = 0 + } else { + x.CreateIndex = (uint64)(r.DecodeUint64()) + } + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ModifyIndex = 0 + } else { + x.ModifyIndex = (uint64)(r.DecodeUint64()) + } + for { + yyj16++ + if yyhl16 { + yyb16 = yyj16 > l + } else { + yyb16 = r.CheckBreak() + } + if yyb16 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj16-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenListRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.GlobalOnly)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"GlobalOnly\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `GlobalOnly`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.GlobalOnly)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenListRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "GlobalOnly": + if r.TryDecodeAsNil() { + x.GlobalOnly = false + } else { + x.GlobalOnly = (bool)(r.DecodeBool()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.GlobalOnly = false + } else { + x.GlobalOnly = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AccessorID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AccessorID": + if r.TryDecodeAsNil() { + x.AccessorID = "" + } else { + x.AccessorID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AccessorID = "" + } else { + x.AccessorID = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenSetRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AccessorIDS == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.AccessorIDS, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AccessorIDS\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorIDS`) + } + r.WriteMapElemValue() + if x.AccessorIDS == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.AccessorIDS, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenSetRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenSetRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AccessorIDS": + if r.TryDecodeAsNil() { + x.AccessorIDS = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.AccessorIDS, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { + z.DecExtension(x.MaxQueryTime, yyxt10) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenSetRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj15 int + var yyb15 bool + var yyhl15 bool = l >= 0 + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AccessorIDS = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.AccessorIDS, d) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { + z.DecExtension(x.MaxQueryTime, yyxt22) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj15++ + if yyhl15 { + yyb15 = yyj15 > l + } else { + yyb15 = r.CheckBreak() + } + if yyb15 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj15-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenListResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLTokenListStub(([]*ACLTokenListStub)(x.Tokens), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tokens\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) + } + r.WriteMapElemValue() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLTokenListStub(([]*ACLTokenListStub)(x.Tokens), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenListResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Tokens": + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decSlicePtrtoACLTokenListStub((*[]*ACLTokenListStub)(&x.Tokens), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decSlicePtrtoACLTokenListStub((*[]*ACLTokenListStub)(&x.Tokens), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *SingleACLTokenResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Token == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Token == nil { + r.EncodeNil() + } else { + x.Token.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Token\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Token == nil { + r.EncodeNil() + } else { + x.Token.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *SingleACLTokenResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *SingleACLTokenResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Token": + if r.TryDecodeAsNil() { + if true && x.Token != nil { + x.Token = nil + } + } else { + if x.Token == nil { + x.Token = new(ACLToken) + } + + x.Token.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *SingleACLTokenResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Token != nil { + x.Token = nil + } + } else { + if x.Token == nil { + x.Token = new(ACLToken) + } + + x.Token.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenSetResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoACLToken((map[string]*ACLToken)(x.Tokens), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tokens\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) + } + r.WriteMapElemValue() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encMapstringPtrtoACLToken((map[string]*ACLToken)(x.Tokens), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenSetResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenSetResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Tokens": + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decMapstringPtrtoACLToken((*map[string]*ACLToken)(&x.Tokens), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { + z.DecExtension(x.LastContact, yyxt8) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenSetResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decMapstringPtrtoACLToken((*map[string]*ACLToken)(&x.Tokens), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { + z.DecExtension(x.LastContact, yyxt15) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ResolveACLTokenRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(9) + } else { + r.WriteMapStart(9) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"SecretID\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MinQueryIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.MinQueryIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { + z.EncExtension(x.MaxQueryTime, yyxt16) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"MaxQueryTime\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) + } + r.WriteMapElemValue() + if false { + } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { + z.EncExtension(x.MaxQueryTime, yyxt17) + } else { + r.EncodeInt(int64(x.MaxQueryTime)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AllowStale\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.AllowStale)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Prefix\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ResolveACLTokenRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ResolveACLTokenRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "SecretID": + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + case "Region": + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "MinQueryIndex": + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + case "MaxQueryTime": + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { + z.DecExtension(x.MaxQueryTime, yyxt9) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + case "AllowStale": + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + case "Prefix": + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ResolveACLTokenRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.SecretID = "" + } else { + x.SecretID = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MinQueryIndex = 0 + } else { + x.MinQueryIndex = (uint64)(r.DecodeUint64()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.MaxQueryTime = 0 + } else { + if false { + } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { + z.DecExtension(x.MaxQueryTime, yyxt20) + } else { + x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AllowStale = false + } else { + x.AllowStale = (bool)(r.DecodeBool()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.Prefix = "" + } else { + x.Prefix = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryOptions.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj14-1, "") + } + r.ReadArrayEnd() +} + +func (x *ResolveACLTokenResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + var yyn3 bool + if x.Token == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Token == nil { + r.EncodeNil() + } else { + x.Token.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Token\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Token == nil { + r.EncodeNil() + } else { + x.Token.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { + z.EncExtension(x.LastContact, yyxt10) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"LastContact\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) + } + r.WriteMapElemValue() + if false { + } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { + z.EncExtension(x.LastContact, yyxt11) + } else { + r.EncodeInt(int64(x.LastContact)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"KnownLeader\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.KnownLeader)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ResolveACLTokenResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ResolveACLTokenResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Token": + if r.TryDecodeAsNil() { + if true && x.Token != nil { + x.Token = nil + } + } else { + if x.Token == nil { + x.Token = new(ACLToken) + } + + x.Token.CodecDecodeSelf(d) + } + case "Index": + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + case "LastContact": + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { + z.DecExtension(x.LastContact, yyxt7) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + case "KnownLeader": + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ResolveACLTokenResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj9 int + var yyb9 bool + var yyhl9 bool = l >= 0 + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Token != nil { + x.Token = nil + } + } else { + if x.Token == nil { + x.Token = new(ACLToken) + } + + x.Token.CodecDecodeSelf(d) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.LastContact = 0 + } else { + if false { + } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { + z.DecExtension(x.LastContact, yyxt13) + } else { + x.LastContact = (time.Duration)(r.DecodeInt64()) + } + } + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.QueryMeta.KnownLeader = false + } else { + x.KnownLeader = (bool)(r.DecodeBool()) + } + for { + yyj9++ + if yyhl9 { + yyb9 = yyj9 > l + } else { + yyb9 = r.CheckBreak() + } + if yyb9 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj9-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.AccessorIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.AccessorIDs, e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AccessorIDs\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorIDs`) + } + r.WriteMapElemValue() + if x.AccessorIDs == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(x.AccessorIDs, e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "AccessorIDs": + if r.TryDecodeAsNil() { + x.AccessorIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.AccessorIDs, d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.AccessorIDs = nil + } else { + if false { + } else { + z.F.DecSliceStringX(&x.AccessorIDs, d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenBootstrapRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(6) + } else { + r.WriteMapStart(6) + } + var yyn3 bool + if x.Token == nil { + yyn3 = true + goto LABEL3 + } + LABEL3: + if yyr2 || yy2arr2 { + if yyn3 { + r.WriteArrayElem() + r.EncodeNil() + } else { + r.WriteArrayElem() + if x.Token == nil { + r.EncodeNil() + } else { + x.Token.CodecEncodeSelf(e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Token\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) + } + r.WriteMapElemValue() + if yyn3 { + r.EncodeNil() + } else { + if x.Token == nil { + r.EncodeNil() + } else { + x.Token.CodecEncodeSelf(e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.ResetIndex)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ResetIndex\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ResetIndex`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.ResetIndex)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenBootstrapRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenBootstrapRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Token": + if r.TryDecodeAsNil() { + if true && x.Token != nil { + x.Token = nil + } + } else { + if x.Token == nil { + x.Token = new(ACLToken) + } + + x.Token.CodecDecodeSelf(d) + } + case "ResetIndex": + if r.TryDecodeAsNil() { + x.ResetIndex = 0 + } else { + x.ResetIndex = (uint64)(r.DecodeUint64()) + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenBootstrapRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + if true && x.Token != nil { + x.Token = nil + } + } else { + if x.Token == nil { + x.Token = new(ACLToken) + } + + x.Token.CodecDecodeSelf(d) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ResetIndex = 0 + } else { + x.ResetIndex = (uint64)(r.DecodeUint64()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenUpsertRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(5) + } else { + r.WriteMapStart(5) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tokens\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) + } + r.WriteMapElemValue() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Region\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Namespace\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"AuthToken\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Forwarded\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.Forwarded)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenUpsertRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenUpsertRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Tokens": + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) + } + } + case "Region": + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + case "Namespace": + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + case "AuthToken": + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + case "Forwarded": + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenUpsertRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj10 int + var yyb10 bool + var yyhl10 bool = l >= 0 + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) + } + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Region = "" + } else { + x.Region = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.Namespace = "" + } else { + x.Namespace = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.AuthToken = "" + } else { + x.AuthToken = (string)(r.DecodeString()) + } + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteRequest.InternalRpcInfo.Forwarded = false + } else { + x.Forwarded = (bool)(r.DecodeBool()) + } + for { + yyj10++ + if yyhl10 { + yyb10 = yyj10 > l + } else { + yyb10 = r.CheckBreak() + } + if yyb10 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj10-1, "") + } + r.ReadArrayEnd() +} + +func (x *ACLTokenUpsertResponse) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(2) + } else { + r.WriteMapStart(2) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Tokens\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) + } + r.WriteMapElemValue() + if x.Tokens == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Index\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeUint(uint64(x.Index)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ACLTokenUpsertResponse) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ACLTokenUpsertResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Tokens": + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) + } + } + case "Index": + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ACLTokenUpsertResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Tokens = nil + } else { + if false { + } else { + h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) + } + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.WriteMeta.Index = 0 + } else { + x.Index = (uint64)(r.DecodeUint64()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *ClientHostVolumeConfig) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(3) + } else { + r.WriteMapStart(3) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Path\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Path`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ReadOnly\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ReadOnly`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *ClientHostVolumeConfig) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *ClientHostVolumeConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Path": + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + case "ReadOnly": + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *ClientHostVolumeConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj7 int + var yyb7 bool + var yyhl7 bool = l >= 0 + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Path = "" + } else { + x.Path = (string)(r.DecodeString()) + } + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = (bool)(r.DecodeBool()) + } + for { + yyj7++ + if yyhl7 { + yyb7 = yyj7 > l + } else { + yyb7 = r.CheckBreak() + } + if yyb7 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj7-1, "") + } + r.ReadArrayEnd() +} + +func (x *VolumeRequest) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Name\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Type\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Source))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Source)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Source\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Source`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Source))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Source)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ReadOnly\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ReadOnly`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *VolumeRequest) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *VolumeRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + case "Type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + case "Source": + if r.TryDecodeAsNil() { + x.Source = "" + } else { + x.Source = (string)(r.DecodeString()) + } + case "ReadOnly": + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = (bool)(r.DecodeBool()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *VolumeRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Source = "" + } else { + x.Source = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = (bool)(r.DecodeBool()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.EncExtension(x, yyxt1) + } else { + yysep2 := !z.EncBinary() + yy2arr2 := z.EncBasicHandle().StructToArray + _, _ = yysep2, yy2arr2 + const yyr2 bool = false // struct tag has 'toArray' + if yyr2 || yy2arr2 { + r.WriteArrayStart(4) + } else { + r.WriteMapStart(4) + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Volume))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Volume)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Volume\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Volume`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Volume))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Volume)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Destination))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Destination)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"Destination\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `Destination`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.Destination))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Destination)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"ReadOnly\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `ReadOnly`) + } + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } + if yyr2 || yy2arr2 { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PropagationMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PropagationMode)) + } + } + } else { + r.WriteMapElemKey() + if z.IsJSONHandle() { + z.WriteStr("\"PropagationMode\"") + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, `PropagationMode`) + } + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(x.PropagationMode))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PropagationMode)) + } + } + } + if yyr2 || yy2arr2 { + r.WriteArrayEnd() + } else { + r.WriteMapEnd() + } + } + } +} + +func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + if false { + } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { + z.DecExtension(x, yyxt1) + } else { + yyct2 := r.ContainerType() + if yyct2 == codecSelferValueTypeMap100 { + yyl2 := r.ReadMapStart() + if yyl2 == 0 { + r.ReadMapEnd() + } else { + x.codecDecodeSelfFromMap(yyl2, d) + } + } else if yyct2 == codecSelferValueTypeArray100 { + yyl2 := r.ReadArrayStart() + if yyl2 == 0 { + r.ReadArrayEnd() + } else { + x.codecDecodeSelfFromArray(yyl2, d) + } + } else { + panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) + } + } +} + +func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyhl3 bool = l >= 0 + for yyj3 := 0; ; yyj3++ { + if yyhl3 { + if yyj3 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + r.ReadMapElemKey() + yys3 := z.StringView(r.DecodeStringAsBytes()) + r.ReadMapElemValue() + switch yys3 { + case "Volume": + if r.TryDecodeAsNil() { + x.Volume = "" + } else { + x.Volume = (string)(r.DecodeString()) + } + case "Destination": + if r.TryDecodeAsNil() { + x.Destination = "" + } else { + x.Destination = (string)(r.DecodeString()) + } + case "ReadOnly": + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = (bool)(r.DecodeBool()) + } + case "PropagationMode": + if r.TryDecodeAsNil() { + x.PropagationMode = "" + } else { + x.PropagationMode = (string)(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3) + } // end switch yys3 + } // end for yyj3 + r.ReadMapEnd() +} + +func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj8 int + var yyb8 bool + var yyhl8 bool = l >= 0 + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Volume = "" + } else { + x.Volume = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.Destination = "" + } else { + x.Destination = (string)(r.DecodeString()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = (bool)(r.DecodeBool()) + } + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + r.ReadArrayEnd() + return + } + r.ReadArrayElem() + if r.TryDecodeAsNil() { + x.PropagationMode = "" + } else { + x.PropagationMode = (string)(r.DecodeString()) + } + for { + yyj8++ + if yyhl8 { + yyb8 = yyj8 > l + } else { + yyb8 = r.CheckBreak() + } + if yyb8 { + break + } + r.ReadArrayElem() + z.DecStructFieldNotFound(yyj8-1, "") + } + r.ReadArrayEnd() +} + +func (x codecSelfer100) encBitmap(v Bitmap, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeStringBytesRaw([]byte(v)) +} + +func (x codecSelfer100) decBitmap(v *Bitmap, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + *v = r.DecodeBytes(*((*[]byte)(v)), false) +} + +func (x codecSelfer100) encMapDeviceIdTuplePtrtoDeviceAccounterInstance(v map[DeviceIdTuple]*DeviceAccounterInstance, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + yy2 := &yyk1 + yy2.CodecEncodeSelf(e) + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapDeviceIdTuplePtrtoDeviceAccounterInstance(v *map[DeviceIdTuple]*DeviceAccounterInstance, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 56) + yyv1 = make(map[DeviceIdTuple]*DeviceAccounterInstance, yyrl1) + *v = yyv1 + } + var yymk1 DeviceIdTuple + var yymv1 *DeviceAccounterInstance + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = DeviceIdTuple{} + } else { + yymk1.CodecDecodeSelf(d) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(DeviceAccounterInstance) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoFieldDiff(v []*FieldDiff, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoFieldDiff(v *[]*FieldDiff, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*FieldDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*FieldDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*FieldDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(FieldDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*FieldDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoObjectDiff(v []*ObjectDiff, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoObjectDiff(v *[]*ObjectDiff, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ObjectDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ObjectDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ObjectDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ObjectDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ObjectDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoTaskGroupDiff(v []*TaskGroupDiff, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoTaskGroupDiff(v *[]*TaskGroupDiff, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*TaskGroupDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*TaskGroupDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*TaskGroupDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(TaskGroupDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*TaskGroupDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoTaskDiff(v []*TaskDiff, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoTaskDiff(v *[]*TaskDiff, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*TaskDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*TaskDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*TaskDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(TaskDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*TaskDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encTaskGroupDiffs(v TaskGroupDiffs, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decTaskGroupDiffs(v *TaskGroupDiffs, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*TaskGroupDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*TaskGroupDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*TaskGroupDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(TaskGroupDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*TaskGroupDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encTaskDiffs(v TaskDiffs, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decTaskDiffs(v *TaskDiffs, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*TaskDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*TaskDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*TaskDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(TaskDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*TaskDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encObjectDiffs(v ObjectDiffs, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decObjectDiffs(v *ObjectDiffs, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ObjectDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ObjectDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ObjectDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ObjectDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ObjectDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encFieldDiffs(v FieldDiffs, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decFieldDiffs(v *FieldDiffs, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*FieldDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*FieldDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*FieldDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(FieldDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*FieldDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoNetworkResource(v []*NetworkResource, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoNetworkResource(v *[]*NetworkResource, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NetworkResource{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NetworkResource, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NetworkResource, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NetworkResource) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NetworkResource, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringBitmap(v map[string]Bitmap, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringBitmap(v *map[string]Bitmap, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) + yyv1 = make(map[string]Bitmap, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 Bitmap + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoRaftServer(v []*RaftServer, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoRaftServer(v *[]*RaftServer, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*RaftServer{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*RaftServer, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*RaftServer, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(RaftServer) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*RaftServer, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringSlicestring(v map[string][]string, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(yyv1, e) + } + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringSlicestring(v *map[string][]string, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) + yyv1 = make(map[string][]string, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 []string + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if false { + } else { + z.F.DecSliceStringX(&yymv1, d) + } + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicestring(v []string, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyv1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyv1)) + } + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicestring(v *[]string, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []string{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 16) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]string, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 16) + } else { + yyrl1 = 8 + } + yyv1 = make([]string, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, "") + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = "" + } else { + yyv1[yyj1] = (string)(r.DecodeString()) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]string, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoServiceCheck(v []*ServiceCheck, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoServiceCheck(v *[]*ServiceCheck, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ServiceCheck{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ServiceCheck, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ServiceCheck, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ServiceCheck) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ServiceCheck, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSliceConsulUpstream(v []ConsulUpstream, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + yy2 := &yyv1 + yy2.CodecEncodeSelf(e) + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSliceConsulUpstream(v *[]ConsulUpstream, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []ConsulUpstream{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 24) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]ConsulUpstream, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 24) + } else { + yyrl1 = 8 + } + yyv1 = make([]ConsulUpstream, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, ConsulUpstream{}) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = ConsulUpstream{} + } else { + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]ConsulUpstream, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoDrainUpdate(v map[string]*DrainUpdate, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoDrainUpdate(v *map[string]*DrainUpdate, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*DrainUpdate, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *DrainUpdate + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(DrainUpdate) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapstringPtrtoNodeEvent(v map[string]*NodeEvent, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoNodeEvent(v *map[string]*NodeEvent, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*NodeEvent, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *NodeEvent + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(NodeEvent) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapContextSlicestring(v map[Context][]string, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + yyk1.CodecEncodeSelf(e) + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + if false { + } else { + z.F.EncSliceStringV(yyv1, e) + } + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapContextSlicestring(v *map[Context][]string, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) + yyv1 = make(map[Context][]string, yyrl1) + *v = yyv1 + } + var yymk1 Context + var yymv1 []string + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1.CodecDecodeSelf(d) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if false { + } else { + z.F.DecSliceStringX(&yymv1, d) + } + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapContextbool(v map[Context]bool, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + yyk1.CodecEncodeSelf(e) + r.WriteMapElemValue() + if false { + } else { + r.EncodeBool(bool(yyv1)) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapContextbool(v *map[Context]bool, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 17) + yyv1 = make(map[Context]bool, yyrl1) + *v = yyv1 + } + var yymk1 Context + var yymv1 bool + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1.CodecDecodeSelf(d) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + yymv1 = (bool)(r.DecodeBool()) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = false + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapNamespacedIDPtrtoJobDeregisterOptions(v map[NamespacedID]*JobDeregisterOptions, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + yy2 := &yyk1 + yy2.CodecEncodeSelf(e) + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapNamespacedIDPtrtoJobDeregisterOptions(v *map[NamespacedID]*JobDeregisterOptions, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) + yyv1 = make(map[NamespacedID]*JobDeregisterOptions, yyrl1) + *v = yyv1 + } + var yymk1 NamespacedID + var yymv1 *JobDeregisterOptions + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = NamespacedID{} + } else { + yymk1.CodecDecodeSelf(d) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(JobDeregisterOptions) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoEvaluation(v []*Evaluation, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoEvaluation(v *[]*Evaluation, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Evaluation{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Evaluation, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Evaluation, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Evaluation) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Evaluation, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoAllocation(v []*Allocation, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoAllocation(v *[]*Allocation, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Allocation{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Allocation, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Allocation, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Allocation) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Allocation, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoAllocationDiff(v []*AllocationDiff, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoAllocationDiff(v *[]*AllocationDiff, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*AllocationDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*AllocationDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*AllocationDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(AllocationDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*AllocationDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoDeploymentStatusUpdate(v []*DeploymentStatusUpdate, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoDeploymentStatusUpdate(v *[]*DeploymentStatusUpdate, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*DeploymentStatusUpdate{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*DeploymentStatusUpdate, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*DeploymentStatusUpdate, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(DeploymentStatusUpdate) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*DeploymentStatusUpdate, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoDesiredTransition(v map[string]*DesiredTransition, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoDesiredTransition(v *map[string]*DesiredTransition, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*DesiredTransition, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *DesiredTransition + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(DesiredTransition) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoServerMember(v []*ServerMember, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoServerMember(v *[]*ServerMember, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ServerMember{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ServerMember, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ServerMember, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ServerMember) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ServerMember, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encnet_IP(v net.IP, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeStringBytesRaw([]byte(v)) +} + +func (x codecSelfer100) decnet_IP(v *net.IP, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + *v = r.DecodeBytes(*((*[]byte)(v)), false) +} + +func (x codecSelfer100) encSlicePtrtoVaultAccessor(v []*VaultAccessor, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoVaultAccessor(v *[]*VaultAccessor, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*VaultAccessor{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*VaultAccessor, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*VaultAccessor, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(VaultAccessor) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*VaultAccessor, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapNamespacedIDstring(v map[NamespacedID]string, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + yy2 := &yyk1 + yy2.CodecEncodeSelf(e) + r.WriteMapElemValue() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyv1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyv1)) + } + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapNamespacedIDstring(v *map[NamespacedID]string, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 48) + yyv1 = make(map[NamespacedID]string, yyrl1) + *v = yyv1 + } + var yymk1 NamespacedID + var yymv1 string + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = NamespacedID{} + } else { + yymk1.CodecDecodeSelf(d) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + yymv1 = (string)(r.DecodeString()) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = "" + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoNodeServerInfo(v []*NodeServerInfo, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoNodeServerInfo(v *[]*NodeServerInfo, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NodeServerInfo{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NodeServerInfo, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NodeServerInfo, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NodeServerInfo) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NodeServerInfo, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoNodeListStub(v []*NodeListStub, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoNodeListStub(v *[]*NodeListStub, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NodeListStub{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NodeListStub, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NodeListStub, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NodeListStub) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NodeListStub, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoJobListStub(v []*JobListStub, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoJobListStub(v *[]*JobListStub, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*JobListStub{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*JobListStub, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*JobListStub, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(JobListStub) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*JobListStub, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoJob(v []*Job, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoJob(v *[]*Job, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Job{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Job, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Job, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Job) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Job, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoJobDiff(v []*JobDiff, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoJobDiff(v *[]*JobDiff, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*JobDiff{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*JobDiff, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*JobDiff, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(JobDiff) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*JobDiff, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoAllocMetric(v map[string]*AllocMetric, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoAllocMetric(v *map[string]*AllocMetric, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*AllocMetric, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *AllocMetric + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(AllocMetric) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoAllocListStub(v []*AllocListStub, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoAllocListStub(v *[]*AllocListStub, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*AllocListStub{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*AllocListStub, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*AllocListStub, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(AllocListStub) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*AllocListStub, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoDeployment(v []*Deployment, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoDeployment(v *[]*Deployment, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Deployment{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Deployment, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Deployment, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Deployment) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Deployment, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringSlicePtrtoNodeEvent(v map[string][]*NodeEvent, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoNodeEvent(([]*NodeEvent)(yyv1), e) + } + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringSlicePtrtoNodeEvent(v *map[string][]*NodeEvent, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) + yyv1 = make(map[string][]*NodeEvent, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 []*NodeEvent + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if false { + } else { + h.decSlicePtrtoNodeEvent((*[]*NodeEvent)(&yymv1), d) + } + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoNodeEvent(v []*NodeEvent, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoNodeEvent(v *[]*NodeEvent, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NodeEvent{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NodeEvent, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NodeEvent, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NodeEvent) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NodeEvent, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoDriverInfo(v map[string]*DriverInfo, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoDriverInfo(v *map[string]*DriverInfo, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*DriverInfo, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *DriverInfo + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(DriverInfo) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapstringPtrtoClientHostVolumeConfig(v map[string]*ClientHostVolumeConfig, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoClientHostVolumeConfig(v *map[string]*ClientHostVolumeConfig, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*ClientHostVolumeConfig, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *ClientHostVolumeConfig + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(ClientHostVolumeConfig) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encResourceDevices(v ResourceDevices, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decResourceDevices(v *ResourceDevices, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*RequestedDevice{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*RequestedDevice, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*RequestedDevice, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(RequestedDevice) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*RequestedDevice, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePort(v []Port, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + yy2 := &yyv1 + yy2.CodecEncodeSelf(e) + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePort(v *[]Port, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []Port{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 32) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]Port, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 32) + } else { + yyrl1 = 8 + } + yyv1 = make([]Port, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, Port{}) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = Port{} + } else { + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]Port, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encNetworks(v Networks, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decNetworks(v *Networks, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NetworkResource{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NetworkResource, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NetworkResource, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NetworkResource) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NetworkResource, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoNodeDeviceResource(v []*NodeDeviceResource, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoNodeDeviceResource(v *[]*NodeDeviceResource, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NodeDeviceResource{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NodeDeviceResource, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NodeDeviceResource, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NodeDeviceResource) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NodeDeviceResource, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoNodeDevice(v []*NodeDevice, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoNodeDevice(v *[]*NodeDevice, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NodeDevice{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NodeDevice, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NodeDevice, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NodeDevice) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NodeDevice, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtostructs_Attribute(v map[string]*pkg1_structs.Attribute, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + if false { + } else if yyxt3 := z.Extension(z.I2Rtid(yyv1)); yyxt3 != nil { + z.EncExtension(yyv1, yyxt3) + } else { + z.EncFallback(yyv1) + } + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtostructs_Attribute(v *map[string]*pkg1_structs.Attribute, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*pkg1_structs.Attribute, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *pkg1_structs.Attribute + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(pkg1_structs.Attribute) + } + if false { + } else if yyxt4 := z.Extension(z.I2Rtid(yymv1)); yyxt4 != nil { + z.DecExtension(yymv1, yyxt4) + } else { + z.DecFallback(yymv1, false) + } + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapstringPtrtoAllocatedTaskResources(v map[string]*AllocatedTaskResources, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoAllocatedTaskResources(v *map[string]*AllocatedTaskResources, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*AllocatedTaskResources, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *AllocatedTaskResources + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(AllocatedTaskResources) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoAllocatedDeviceResource(v []*AllocatedDeviceResource, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoAllocatedDeviceResource(v *[]*AllocatedDeviceResource, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*AllocatedDeviceResource{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*AllocatedDeviceResource, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*AllocatedDeviceResource, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(AllocatedDeviceResource) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*AllocatedDeviceResource, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encAllocatedDevices(v AllocatedDevices, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decAllocatedDevices(v *AllocatedDevices, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*AllocatedDeviceResource{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*AllocatedDeviceResource, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*AllocatedDeviceResource, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(AllocatedDeviceResource) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*AllocatedDeviceResource, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoConstraint(v []*Constraint, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoConstraint(v *[]*Constraint, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Constraint{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Constraint, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Constraint, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Constraint) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Constraint, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoAffinity(v []*Affinity, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoAffinity(v *[]*Affinity, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Affinity{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Affinity, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Affinity, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Affinity) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Affinity, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoSpread(v []*Spread, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoSpread(v *[]*Spread, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Spread{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Spread, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Spread, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Spread) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Spread, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoTaskGroup(v []*TaskGroup, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoTaskGroup(v *[]*TaskGroup, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*TaskGroup{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*TaskGroup, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*TaskGroup, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(TaskGroup) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*TaskGroup, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringTaskGroupSummary(v map[string]TaskGroupSummary, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + yy3 := &yyv1 + yy3.CodecEncodeSelf(e) + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringTaskGroupSummary(v *map[string]TaskGroupSummary, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 64) + yyv1 = make(map[string]TaskGroupSummary, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 TaskGroupSummary + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } else { + yymv1 = TaskGroupSummary{} + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = TaskGroupSummary{} + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoTask(v []*Task, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoTask(v *[]*Task, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Task{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Task, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Task, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Task) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Task, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoService(v []*Service, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoService(v *[]*Service, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Service{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Service, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Service, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Service) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Service, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoVolumeRequest(v map[string]*VolumeRequest, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoVolumeRequest(v *map[string]*VolumeRequest, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*VolumeRequest, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *VolumeRequest + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(VolumeRequest) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoTemplate(v []*Template, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoTemplate(v *[]*Template, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Template{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Template, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Template, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Template) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Template, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoTaskArtifact(v []*TaskArtifact, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoTaskArtifact(v *[]*TaskArtifact, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*TaskArtifact{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*TaskArtifact, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*TaskArtifact, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(TaskArtifact) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*TaskArtifact, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoVolumeMount(v []*VolumeMount, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoVolumeMount(v *[]*VolumeMount, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*VolumeMount{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*VolumeMount, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*VolumeMount, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(VolumeMount) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*VolumeMount, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoTaskEvent(v []*TaskEvent, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoTaskEvent(v *[]*TaskEvent, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*TaskEvent{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*TaskEvent, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*TaskEvent, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(TaskEvent) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*TaskEvent, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encConstraints(v Constraints, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decConstraints(v *Constraints, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Constraint{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Constraint, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Constraint, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Constraint) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Constraint, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoSpreadTarget(v []*SpreadTarget, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoSpreadTarget(v *[]*SpreadTarget, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*SpreadTarget{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*SpreadTarget, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*SpreadTarget, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(SpreadTarget) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*SpreadTarget, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encAffinities(v Affinities, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decAffinities(v *Affinities, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*Affinity{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*Affinity, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*Affinity, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(Affinity) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*Affinity, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoDeploymentState(v map[string]*DeploymentState, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoDeploymentState(v *map[string]*DeploymentState, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*DeploymentState, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *DeploymentState + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(DeploymentState) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoRescheduleEvent(v []*RescheduleEvent, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoRescheduleEvent(v *[]*RescheduleEvent, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*RescheduleEvent{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*RescheduleEvent, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*RescheduleEvent, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(RescheduleEvent) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*RescheduleEvent, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoResources(v map[string]*Resources, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoResources(v *map[string]*Resources, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*Resources, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *Resources + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(Resources) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapstringPtrtoTaskState(v map[string]*TaskState, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoTaskState(v *map[string]*TaskState, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*TaskState, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *TaskState + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(TaskState) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoNodeScoreMeta(v []*NodeScoreMeta, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoNodeScoreMeta(v *[]*NodeScoreMeta, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*NodeScoreMeta{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*NodeScoreMeta, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*NodeScoreMeta, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(NodeScoreMeta) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*NodeScoreMeta, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringSlicePtrtoAllocation(v map[string][]*Allocation, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + if false { + } else { + h.encSlicePtrtoAllocation(([]*Allocation)(yyv1), e) + } + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringSlicePtrtoAllocation(v *map[string][]*Allocation, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) + yyv1 = make(map[string][]*Allocation, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 []*Allocation + var yymg1, yymdn1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + if yymg1 { + yymv1 = yyv1[yymk1] + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if false { + } else { + h.decSlicePtrtoAllocation((*[]*Allocation)(&yymv1), d) + } + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encMapstringPtrtoDesiredUpdates(v map[string]*DesiredUpdates, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoDesiredUpdates(v *map[string]*DesiredUpdates, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*DesiredUpdates, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *DesiredUpdates + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(DesiredUpdates) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoACLPolicyListStub(v []*ACLPolicyListStub, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoACLPolicyListStub(v *[]*ACLPolicyListStub, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ACLPolicyListStub{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ACLPolicyListStub, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ACLPolicyListStub, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ACLPolicyListStub) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ACLPolicyListStub, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoACLPolicy(v map[string]*ACLPolicy, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoACLPolicy(v *map[string]*ACLPolicy, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*ACLPolicy, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *ACLPolicy + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(ACLPolicy) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoACLPolicy(v []*ACLPolicy, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoACLPolicy(v *[]*ACLPolicy, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ACLPolicy{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ACLPolicy, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ACLPolicy, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ACLPolicy) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ACLPolicy, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encSlicePtrtoACLTokenListStub(v []*ACLTokenListStub, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoACLTokenListStub(v *[]*ACLTokenListStub, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ACLTokenListStub{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ACLTokenListStub, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ACLTokenListStub, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ACLTokenListStub) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ACLTokenListStub, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + +func (x codecSelfer100) encMapstringPtrtoACLToken(v map[string]*ACLToken, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteMapStart(len(v)) + for yyk1, yyv1 := range v { + r.WriteMapElemKey() + if false { + } else { + if z.EncBasicHandle().StringToRaw { + r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) + } else { + r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) + } + } + r.WriteMapElemValue() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteMapEnd() +} + +func (x codecSelfer100) decMapstringPtrtoACLToken(v *map[string]*ACLToken, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyl1 := r.ReadMapStart() + yybh1 := z.DecBasicHandle() + if yyv1 == nil { + yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) + yyv1 = make(map[string]*ACLToken, yyrl1) + *v = yyv1 + } + var yymk1 string + var yymv1 *ACLToken + var yymg1, yymdn1, yyms1, yymok1 bool + if yybh1.MapValueReset { + yymg1 = true + } + if yyl1 != 0 { + yyhl1 := yyl1 > 0 + for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { + r.ReadMapElemKey() + if r.TryDecodeAsNil() { + yymk1 = "" + } else { + yymk1 = (string)(r.DecodeString()) + } + + yyms1 = true + if yymg1 { + yymv1, yymok1 = yyv1[yymk1] + if yymok1 { + yyms1 = false + } + } else { + yymv1 = nil + } + r.ReadMapElemValue() + yymdn1 = false + if r.TryDecodeAsNil() { + yymdn1 = true + } else { + if yymv1 == nil { + yymv1 = new(ACLToken) + } + yymv1.CodecDecodeSelf(d) + } + + if yymdn1 { + if yybh1.DeleteOnNilMapValue { + delete(yyv1, yymk1) + } else { + yyv1[yymk1] = nil + } + } else if yyms1 && yyv1 != nil { + yyv1[yymk1] = yymv1 + } + } + } // else len==0: TODO: Should we clear map entries? + r.ReadMapEnd() +} + +func (x codecSelfer100) encSlicePtrtoACLToken(v []*ACLToken, e *codec1978.Encoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.WriteArrayStart(len(v)) + for _, yyv1 := range v { + r.WriteArrayElem() + if yyv1 == nil { + r.EncodeNil() + } else { + yyv1.CodecEncodeSelf(e) + } + } + r.WriteArrayEnd() +} + +func (x codecSelfer100) decSlicePtrtoACLToken(v *[]*ACLToken, d *codec1978.Decoder) { + var h codecSelfer100 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []*ACLToken{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else { + yyhl1 := yyl1 > 0 + var yyrl1 int + _ = yyrl1 + if yyhl1 { + if yyl1 > cap(yyv1) { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]*ACLToken, yyrl1) + } + yyc1 = true + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + } + var yyj1 int + // var yydn1 bool + for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination + if yyj1 == 0 && yyv1 == nil { + if yyhl1 { + yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) + } else { + yyrl1 = 8 + } + yyv1 = make([]*ACLToken, yyrl1) + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + + var yydb1 bool + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, nil) + yyc1 = true + + } + if yydb1 { + z.DecSwallow() + } else { + if r.TryDecodeAsNil() { + yyv1[yyj1] = nil + } else { + if yyv1[yyj1] == nil { + yyv1[yyj1] = new(ACLToken) + } + yyv1[yyj1].CodecDecodeSelf(d) + } + + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = make([]*ACLToken, 0) + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} From b836271af75ea0cc2fbb4cff89e9f4f56052723a Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 22 Nov 2019 11:19:57 -0800 Subject: [PATCH 115/241] Release v0.10.2-rc1 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4693be800ca..57e6be614ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.10.2 (Unreleased) +## 0.10.2 (November 22, 2019) FEATURES: From a44449161b5deb338fe96eb75cca271f02119afa Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Fri, 22 Nov 2019 14:29:12 -0500 Subject: [PATCH 116/241] Migrating the Load-balancing guides to Nomad Added redirects and stub-ified the index page --- .../guides/load-balancing/fabio.html.md | 233 -------------- .../guides/load-balancing/haproxy.html.md | 279 ----------------- .../load-balancing/load-balancing.html.md | 17 +- .../guides/load-balancing/nginx.html.md | 293 ------------------ .../guides/load-balancing/traefik.html.md | 265 ---------------- website/source/redirects.txt | 5 + 6 files changed, 12 insertions(+), 1080 deletions(-) delete mode 100644 website/source/guides/load-balancing/fabio.html.md delete mode 100644 website/source/guides/load-balancing/haproxy.html.md delete mode 100644 website/source/guides/load-balancing/nginx.html.md delete mode 100644 website/source/guides/load-balancing/traefik.html.md diff --git a/website/source/guides/load-balancing/fabio.html.md b/website/source/guides/load-balancing/fabio.html.md deleted file mode 100644 index ad379f9f553..00000000000 --- a/website/source/guides/load-balancing/fabio.html.md +++ /dev/null @@ -1,233 +0,0 @@ ---- -layout: "guides" -page_title: "Load Balancing with Nomad" -sidebar_current: "guides-load-balancing-fabio" -description: |- - There are multiple approaches to load balancing within a Nomad cluster. - One approach involves using [fabio][fabio]. Fabio integrates natively - with Consul and provides rich features with an optional Web UI. ---- - -# Load Balancing with Fabio - -[Fabio][fabio] integrates natively with Consul and provides an optional Web UI -to visualize routing. - -The main use case for fabio is to distribute incoming HTTP(S) and TCP requests -from the internet to frontend services that can handle these requests. This -guide will show you one such example using [Apache][apache] web server. - -## Reference Material - -- [Fabio](https://github.com/fabiolb/fabio) on GitHub -- [Load Balancing Strategies for Consul](https://www.hashicorp.com/blog/load-balancing-strategies-for-consul) -- [Elastic Load Balancing][elb] - -## Estimated Time to Complete - -20 minutes - -## Challenge - -Think of a scenario where a Nomad operator needs to configure an environment to -make Apache web server highly available behind an endpoint and distribute -incoming traffic evenly. - -## Solution - -Deploy fabio as a -[system][system] -scheduler so that it can route incoming traffic evenly to the Apache web server -group regardless of which client nodes Apache is running on. Place all client nodes -behind an [AWS load balancer][elb] to -provide the end user with a single endpoint for access. - -## Prerequisites - -To perform the tasks described in this guide, you need to have a Nomad -environment with Consul installed. You can use this -[repo](https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud) -to easily provision a sandbox environment. This guide will assume a cluster with -one server node and three client nodes. - --> **Please Note:** This guide is for demo purposes and is only using a single server -node. In a production cluster, 3 or 5 server nodes are recommended. - -## Steps - -### Step 1: Create a Job for Fabio - -Create a job for Fabio and name it `fabio.nomad` - -```hcl -job "fabio" { - datacenters = ["dc1"] - type = "system" - - group "fabio" { - task "fabio" { - driver = "docker" - config { - image = "fabiolb/fabio" - network_mode = "host" - } - - resources { - cpu = 200 - memory = 128 - network { - mbits = 20 - port "lb" { - static = 9999 - } - port "ui" { - static = 9998 - } - } - } - } - } -} -``` - -Setting `type` to [system][system] will ensure that fabio is run on all clients. -Please note that the `network_mode` option is set to `host` so that fabio can -communicate with Consul which is also running on the client nodes. - -### Step 2: Run the Fabio Job - -We can now register our fabio job: - -```shell -$ nomad job run fabio.nomad -==> Monitoring evaluation "fba4f04a" - Evaluation triggered by job "fabio" - Allocation "6e6367d4" created: node "f3739267", group "fabio" - Allocation "d17573b4" created: node "28d7f859", group "fabio" - Allocation "f3ad9b16" created: node "510898b6", group "fabio" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "fba4f04a" finished with status "complete" -``` -At this point, you should be able to visit any one of your client nodes at port -`9998` and see the web interface for fabio. The routing table will be empty -since we have not yet deployed anything that fabio can route to. -Accordingly, if you visit any of the client nodes at port `9999` at this -point, you will get a `404` HTTP response. That will change soon. - -### Step 3: Create a Job for Apache Web Server - -Create a job for Apache and name it `webserver.nomad` - -```hcl -job "webserver" { - datacenters = ["dc1"] - type = "service" - - group "webserver" { - count = 3 - restart { - attempts = 2 - interval = "30m" - delay = "15s" - mode = "fail" - } - ephemeral_disk { - size = 300 - } - - task "apache" { - driver = "docker" - config { - image = "httpd:latest" - port_map { - http = 80 - } - } - - resources { - network { - mbits = 10 - port "http" {} - } - } - - service { - name = "apache-webserver" - tags = ["urlprefix-/"] - port = "http" - check { - name = "alive" - type = "http" - path = "/" - interval = "10s" - timeout = "2s" - } - } - } - } -} -``` - -Notice the tag in the service stanza begins with `urlprefix-`. This is how a -path is registered with fabio. In this case, we are registering the path '/' -with fabio (which will route us to the default page for Apache web server). - -### Step 4: Run the Job for Apache Web Server - -We can now register our job for Apache: - -```shell -$ nomad job run webserver.nomad -==> Monitoring evaluation "c7bcaf40" - Evaluation triggered by job "webserver" - Evaluation within deployment: "e3603b50" - Allocation "20951ad4" created: node "510898b6", group "webserver" - Allocation "43807686" created: node "28d7f859", group "webserver" - Allocation "7b60eb24" created: node "f3739267", group "webserver" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "c7bcaf40" finished with status "complete" -``` -You have now deployed and registered your web servers with fabio! At this point, -you should be able to visit any of the Nomad clients at port `9999` and -see the default web page for Apache web server. If you visit fabio's web -interface by going to any of the client nodes at port `9998`, you will see that -the routing table has been populated as shown below (**Note:** your destination IP -addresses will be different). - -[![Routing Table][routing-table]][routing-table] - -Feel free to reduce the `count` in `webserver.nomad` for testing purposes. You -will see that you still get routed to the Apache home page by accessing -any client node on port `9999`. Accordingly, the routing table -in the web interface on port `9999` will reflect the changes. - -### Step 5: Place Nomad Client Nodes Behind AWS Load Balancer - -At this point, you are ready to place your Nomad client nodes behind an AWS load -balancer. Your Nomad client nodes may change over time, and it is important -to provide your end users with a single endpoint to access your services. This guide will use the [Classic Load Balancer][classic-lb]. - -The AWS [documentation][classic-lb-doc] provides instruction on how to create a -load balancer. The basic steps involve creating a load balancer, registering -instances behind the load balancer (in our case these will be the Nomad client -nodes), creating listeners, and configuring health checks. - -Once you are done -with this, you should be able to hit the DNS name of your load balancer at port -80 (or whichever port you configured in your listener) and see the home page of -Apache web server. If you configured your listener to also forward traffic to -the web interface at port `9998`, you should be able to access that as well. - -[![Home Page][lb-homepage]][lb-homepage] - -[![Routing Table][lb-routing-table]][lb-routing-table] - -[apache]: https://httpd.apache.org/ -[classic-lb]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/introduction.html -[classic-lb-doc]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-getting-started.html -[elb]: https://aws.amazon.com/elasticloadbalancing/ -[fabio]: https://fabiolb.net/ -[lb-homepage]: /assets/images/lb-homepage.png -[lb-routing-table]: /assets/images/lb-routing-table.png -[routing-table]: /assets/images/routing-table.png -[system]: /docs/schedulers.html#system diff --git a/website/source/guides/load-balancing/haproxy.html.md b/website/source/guides/load-balancing/haproxy.html.md deleted file mode 100644 index 2dd62409f10..00000000000 --- a/website/source/guides/load-balancing/haproxy.html.md +++ /dev/null @@ -1,279 +0,0 @@ ---- -layout: "guides" -page_title: "Load Balancing with HAProxy" -sidebar_current: "guides-load-balancing-haproxy" -description: |- - There are multiple approaches to load balancing within a Nomad cluster. - One approach involves using [HAProxy][haproxy] which natively integrates with - service discovery data from Consul. ---- - -# Load Balancing with HAProxy - -The main use case for HAProxy in this scenario is to distribute incoming HTTP(S) -and TCP requests from the internet to frontend services that can handle these -requests. This guide will show you one such example using a demo web -application. - -HAProxy version 1.8+ (LTS) includes the [server-template] directive, which lets -users specify placeholder backend servers to populate HAProxy’s load balancing -pools. Server-template can use Consul as one of these backend servers, -requesting SRV records from Consul DNS. - -## Reference Material - -- [HAProxy][haproxy] -- [Load Balancing Strategies for Consul][lb-strategies] - -## Estimated Time to Complete - -20 minutes - -## Prerequisites - -To perform the tasks described in this guide, you need to have a Nomad -environment with Consul installed. You can use this [repo][terraform-repo] to -easily provision a sandbox environment. This guide will assume a cluster with -one server node and three client nodes. - --> **Note:** This guide is for demo purposes and only assumes a single server -node. Please consult the [reference architecture][reference-arch] for production -configuration. - -## Steps - -### Step 1: Create a Job for Demo Web App - -Create a job for a demo web application and name the file `webapp.nomad`: - -```hcl -job "demo-webapp" { - datacenters = ["dc1"] - - group "demo" { - count = 3 - - task "server" { - env { - PORT = "${NOMAD_PORT_http}" - NODE_IP = "${NOMAD_IP_http}" - } - - driver = "docker" - - config { - image = "hashicorp/demo-webapp-lb-guide" - } - - resources { - network { - mbits = 10 - port "http" {} - } - } - - service { - name = "demo-webapp" - port = "http" - - check { - type = "http" - path = "/" - interval = "2s" - timeout = "2s" - } - } - } - } -} -``` - -Note that this job deploys 3 instances of our demo web application which we will -load balance with HAProxy in the next few steps. - -### Step 2: Deploy the Demo Web App - -We can now deploy our demo web application: - -```shell -$ nomad run webapp.nomad -==> Monitoring evaluation "8f3af425" - Evaluation triggered by job "demo-webapp" - Evaluation within deployment: "dc4c1925" - Allocation "bf9f850f" created: node "d16a11fb", group "demo" - Allocation "25e0496a" created: node "b78e27be", group "demo" - Allocation "a97e7d39" created: node "01d3eb32", group "demo" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "8f3af425" finished with status "complete" -``` - -### Step 3: Create a Job for HAProxy - -Create a job for HAProxy and name it `haproxy.nomad`. This will be our load -balancer that will balance requests to the deployed instances of our web -application. - -```hcl -job "haproxy" { - region = "global" - datacenters = ["dc1"] - type = "service" - - group "haproxy" { - count = 1 - - task "haproxy" { - driver = "docker" - - config { - image = "haproxy:2.0" - network_mode = "host" - - volumes = [ - "local/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg", - ] - } - - template { - data = < Monitoring evaluation "937b1a2d" - Evaluation triggered by job "haproxy" - Evaluation within deployment: "e8214434" - Allocation "53145b8b" created: node "d16a11fb", group "haproxy" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "937b1a2d" finished with status "complete" -``` - -### Step 5: Check the HAProxy Statistics Page - -You can visit the statistics and monitoring page for HAProxy at -`http://:1936`. You can use this page to verify your -settings and for basic monitoring. - -[![Home Page][haproxy_ui]][haproxy_ui] - -Notice there are 10 pre-provisioned load balancer backend slots for your service -but that only three of them are being used, corresponding to the three allocations in the current job. - -### Step 6: Make a Request to the Load Balancer - -If you query the HAProxy load balancer, you should be able to see a response -similar to the one shown below (this command should be run from a -node inside your cluster): - -```shell -$ curl haproxy.service.consul:8080 -Welcome! You are on node 172.31.54.242:20124 -``` - -Note that your request has been forwarded to one of the several deployed -instances of the demo web application (which is spread across 3 Nomad clients). -The output shows the IP address of the host it is deployed on. If you repeat -your requests, you will see that the IP address changes. - -* Note: if you would like to access HAProxy from outside your cluster, you - can set up a load balancer in your environment that maps to an active port - `8080` on your clients (or whichever port you have configured for HAProxy to - listen on). You can then send your requests directly to your external load - balancer. - -[consul-template]: https://github.com/hashicorp/consul-template#consul-template -[consul-temp-syntax]: https://github.com/hashicorp/consul-template#service -[haproxy]: http://www.haproxy.org/ -[haproxy_ui]: /assets/images/haproxy_ui.png -[inline]: /docs/job-specification/template.html#inline-template -[lb-strategies]: https://www.hashicorp.com/blog/configuring-third-party-loadbalancers-with-consul-nginx-haproxy-f5/ -[reference-arch]: /guides/install/production/reference-architecture.html#high-availability -[remote-template]: /docs/job-specification/template.html#remote-template -[server-template]: https://www.haproxy.com/blog/whats-new-haproxy-1-8/#server-template-configuration-directive -[template-stanza]: /docs/job-specification/template.html -[terraform-repo]: https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud - diff --git a/website/source/guides/load-balancing/load-balancing.html.md b/website/source/guides/load-balancing/load-balancing.html.md index f09334a9054..025865aeb44 100644 --- a/website/source/guides/load-balancing/load-balancing.html.md +++ b/website/source/guides/load-balancing/load-balancing.html.md @@ -9,16 +9,13 @@ description: |- # Load Balancing -There are multiple approaches to set up load balancing across a Nomad cluster. +These guides have been migrated to [HashiCorp's Learn website]. -Most of these methods assume Consul is installed alongside Nomad (see [Load -Balancing Strategies for -Consul](https://www.hashicorp.com/blog/load-balancing-strategies-for-consul)). +You can follow these links to specific guides at Learn: -- [Fabio](/guides/load-balancing/fabio.html) -- [NGINX](/guides/load-balancing/nginx.html) -- [HAProxy](/guides/load-balancing/haproxy.html) -- [Traefik](/guides/load-balancing/traefik.html) +- [Fabio](https://learn.hashicorp.com/nomad/load-balancing/fabio) +- [NGINX](https://learn.hashicorp.com/nomad/load-balancing/nginx) +- [HAProxy](https://learn.hashicorp.com/nomad/load-balancing/haproxy) +- [Traefik](https://learn.hashicorp.com/nomad/load-balancing/traefik) -Please refer to the specific documentation above or in the sidebar for more -detailed information about each strategy. +[HashiCorp's Learn website]: https://learn.hashicorp.com/nomad?track=load-balancing#load-balancing \ No newline at end of file diff --git a/website/source/guides/load-balancing/nginx.html.md b/website/source/guides/load-balancing/nginx.html.md deleted file mode 100644 index c4b63f128a3..00000000000 --- a/website/source/guides/load-balancing/nginx.html.md +++ /dev/null @@ -1,293 +0,0 @@ ---- -layout: "guides" -page_title: "Load Balancing with NGINX" -sidebar_current: "guides-load-balancing-nginx" -description: |- - There are multiple approaches to load balancing within a Nomad cluster. - One approach involves using [NGINX][nginx]. NGINX works well with Nomad's - template stanza to allow for dynamic updates to its load balancing - configuration. ---- - -# Load Balancing with NGINX - -You can use Nomad's [template stanza][template-stanza] to configure -[NGINX][nginx] so that it can dynamically update its load balancer configuration -to scale along with your services. - -The main use case for NGINX in this scenario is to distribute incoming HTTP(S) -and TCP requests from the internet to frontend services that can handle these -requests. This guide will show you one such example using a demo web -application. - -## Reference Material - -- [NGINX][nginx] -- [Load Balancing Strategies for Consul][lb-strategies] - -## Estimated Time to Complete - -20 minutes - -## Prerequisites - -To perform the tasks described in this guide, you need to have a Nomad -environment with Consul installed. You can use this [repo][terraform-repo] to -easily provision a sandbox environment. This guide will assume a cluster with -one server node and three client nodes. - --> **Note:** This guide is for demo purposes and only assumes a single server -node. Please consult the [reference architecture][reference-arch] for production -configuration. - -## Steps - -### Step 1: Create a Job for Demo Web App - -Create a job for a demo web application and name the file `webapp.nomad`: - -```hcl -job "demo-webapp" { - datacenters = ["dc1"] - - group "demo" { - count = 3 - - task "server" { - env { - PORT = "${NOMAD_PORT_http}" - NODE_IP = "${NOMAD_IP_http}" - } - - driver = "docker" - - config { - image = "hashicorp/demo-webapp-lb-guide" - } - - resources { - network { - mbits = 10 - port "http"{} - } - } - - service { - name = "demo-webapp" - port = "http" - - check { - type = "http" - path = "/" - interval = "2s" - timeout = "2s" - } - } - } - } -} -``` - -Note that this job deploys 3 instances of our demo web application which we will -load balance with NGINX in the next few steps. - -### Step 2: Deploy the Demo Web App - -We can now deploy our demo web application: - -```shell -$ nomad run webapp.nomad -==> Monitoring evaluation "ea1e8528" - Evaluation triggered by job "demo-webapp" - Allocation "9b4bac9f" created: node "e4637e03", group "demo" - Allocation "c386de2d" created: node "983a64df", group "demo" - Allocation "082653f0" created: node "f5fdf017", group "demo" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "ea1e8528" finished with status "complete" -``` - -### Step 3: Create a Job for NGINX - -Create a job for NGINX and name it `nginx.nomad`. This will be our load balancer -that will balance requests to the deployed instances of our web application. - -```hcl -job "nginx" { - datacenters = ["dc1"] - - group "nginx" { - count = 1 - - task "nginx" { - driver = "docker" - - config { - image = "nginx" - - port_map { - http = 80 - } - - volumes = [ - "local:/etc/nginx/conf.d", - ] - } - - template { - data = < Monitoring evaluation "45da5a89" - Evaluation triggered by job "nginx" - Allocation "c7f8af51" created: node "983a64df", group "nginx" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "45da5a89" finished with status "complete" -``` - -### Step 5: Verify Load Balancer Configuration - -Consul Template supports [blocking queries][ct-blocking-queries]. This means -your NGINX deployment (which is using the [template][template-stanza] stanza) -will be notified immediately when a change in the health of one of the service -endpoints occurs and will re-render a new load balancer configuration file that -only includes healthy service instances. - -You can use the [alloc fs][alloc-fs] command on your NGINX allocation to read -the rendered load balancer configuration file. - -First, obtain the allocation ID of your NGINX deployment (output below is -abbreviated): - -```shell -$ nomad status nginx -ID = nginx -Name = nginx -... -Summary -Task Group Queued Starting Running Failed Complete Lost -nginx 0 0 1 0 0 0 - -Allocations -ID Node ID Task Group Version Desired Status Created Modified -76692834 f5fdf017 nginx 0 run running 17m40s ago 17m25s ago -``` - -* Keep in mind your allocation ID will be different. - -Next, use the `alloc fs` command to read the load balancer config: - -```shell -$ nomad alloc fs 766 nginx/local/load-balancer.conf -upstream backend { - - server 172.31.48.118:21354; - - server 172.31.52.52:25958; - - server 172.31.52.7:29728; - -} - -server { - listen 80; - - location / { - proxy_pass http://backend; - } -} -``` - -At this point, you can change the count of your `demo-webapp` job and repeat the -previous command to verify the load balancer config is dynamically changing. - -### Step 6: Make a Request to the Load Balancer - -If you query the NGINX load balancer, you should be able to see a response -similar to the one shown below (this command should be run from a node inside -your cluster): - -```shell -$ curl nginx.service.consul:8080 -Welcome! You are on node 172.31.48.118:21354 -``` - -Note that your request has been forwarded to one of the several deployed -instances of the demo web application (which is spread across 3 Nomad clients). -The output shows the IP address of the host it is deployed on. If you repeat -your requests, you will see that the IP address changes. - -* Note: if you would like to access NGINX from outside your cluster, you can set - up a load balancer in your environment that maps to an active port `8080` on - your clients (or whichever port you have configured for NGINX to listen on). - You can then send your requests directly to your external load balancer. - -[alloc-fs]: /docs/commands/alloc/fs.html -[consul-template]: https://github.com/hashicorp/consul-template#consul-template -[consul-temp-syntax]: https://github.com/hashicorp/consul-template#service -[ct-blocking-queries]: https://github.com/hashicorp/consul-template#key -[inline]: /docs/job-specification/template.html#inline-template -[lb-strategies]: https://www.hashicorp.com/blog/configuring-third-party-loadbalancers-with-consul-nginx-haproxy-f5/ -[nginx]: https://www.nginx.com/ -[reference-arch]: /guides/install/production/reference-architecture.html#high-availability -[remote-template]: /docs/job-specification/template.html#remote-template -[template-stanza]: /docs/job-specification/template.html -[terraform-repo]: https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud - diff --git a/website/source/guides/load-balancing/traefik.html.md b/website/source/guides/load-balancing/traefik.html.md deleted file mode 100644 index b541a8541d0..00000000000 --- a/website/source/guides/load-balancing/traefik.html.md +++ /dev/null @@ -1,265 +0,0 @@ ---- -layout: "guides" -page_title: "Load Balancing with Traefik" -sidebar_current: "guides-load-balancing-traefik" -description: |- - There are multiple approaches to load balancing within a Nomad cluster. - One approach involves using [Traefik][traefik] which natively integrates - with service discovery data from Consul. ---- - -# Load Balancing with Traefik - -The main use case for Traefik in this scenario is to distribute incoming HTTP(S) -and TCP requests from the internet to frontend services that can handle these -requests. This guide will show you one such example using a demo web -application. - -Traefik can natively integrate with Consul using the [Consul Catalog -Provider][traefik-consul-provider] and can use [tags][traefik-tags] to route -traffic. - -## Reference Material - -- [Traefik][traefik] -- [Traefik Consul Catalog Provider Documentation][traefik-consul-provider] - -## Estimated Time to Complete - -20 minutes - -## Prerequisites - -To perform the tasks described in this guide, you need to have a Nomad -environment with Consul installed. You can use this [repo][terraform-repo] to -easily provision a sandbox environment. This guide will assume a cluster with -one server node and three client nodes. - --> **Note:** This guide is for demo purposes and only assumes a single server -node. Please consult the [reference architecture][reference-arch] for production -configuration. - -## Steps - -### Step 1: Create a Job for Demo Web App - -Create a job for a demo web application and name the file `webapp.nomad`: - -```hcl -job "demo-webapp" { - datacenters = ["dc1"] - - group "demo" { - count = 3 - - task "server" { - env { - PORT = "${NOMAD_PORT_http}" - NODE_IP = "${NOMAD_IP_http}" - } - - driver = "docker" - - config { - image = "hashicorp/demo-webapp-lb-guide" - } - - resources { - network { - mbits = 10 - port "http" {} - } - } - - service { - name = "demo-webapp" - port = "http" - tags = [ - "traefik.tags=service", - "traefik.frontend.rule=PathPrefixStrip:/myapp", - ] - - check { - type = "http" - path = "/" - interval = "2s" - timeout = "2s" - } - } - } - } -} -``` - -- Note that this job deploys 3 instances of our demo web application which we - will load balance with Traefik in the next few steps. -- We are using tags to configure routing to our web app. Even though our - application listens on `/`, it is possible to define `/myapp` as the route - because of the [`PathPrefixStrip`][matchers] option. - -### Step 2: Deploy the Demo Web App - -We can now deploy our demo web application: - -```shell -$ nomad run webapp.nomad -==> Monitoring evaluation "a2061ab7" - Evaluation triggered by job "demo-webapp" - Evaluation within deployment: "8ca6d358" - Allocation "1d14babe" created: node "2d6eea6e", group "demo" - Allocation "3abb950d" created: node "a62fa99d", group "demo" - Allocation "c65e14bf" created: node "a209a662", group "demo" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "a2061ab7" finished with status "complete" -``` - -### Step 3: Create a Job for Traefik - -Create a job for Traefik and name it `traefik.nomad`. This will be our load -balancer that will balance requests to the deployed instances of our web -application. - -```hcl -job "traefik" { - region = "global" - datacenters = ["dc1"] - type = "service" - - group "traefik" { - count = 1 - - task "traefik" { - driver = "docker" - - config { - image = "traefik:1.7" - network_mode = "host" - - volumes = [ - "local/traefik.toml:/etc/traefik/traefik.toml", - ] - } - - template { - data = < Monitoring evaluation "e22ce276" - Evaluation triggered by job "traefik" - Evaluation within deployment: "c6466497" - Allocation "695c5632" created: node "a62fa99d", group "traefik" - Evaluation status changed: "pending" -> "complete" -==> Evaluation "e22ce276" finished with status "complete" -``` - -### Step 5: Check the Traefik Dashboard - -You can visit the dashboard for Traefik at -`http://:8081`. You can use this page to verify your -settings and for basic monitoring. - -[![Home Page][traefik_ui]][traefik_ui] - -### Step 6: Make a Request to the Load Balancer - -If you query the Traefik load balancer, you should be able to see a response -similar to the one shown below (this command should be run from a -node inside your cluster): - -```shell -$ curl http://traefik.service.consul:8080/myapp -Welcome! You are on node 172.31.28.103:28893 -``` - -Note that your request has been forwarded to one of the several deployed -instances of the demo web application (which is spread across 3 Nomad clients). -The output shows the IP address of the host it is deployed on. If you repeat -your requests, you will see that the IP address changes. - -* Note: if you would like to access Traefik from outside your cluster, you - can set up a load balancer in your environment that maps to an active port - `8080` on your clients (or whichever port you have configured for Traefik to - listen on). You can then send your requests directly to your external load - balancer. - -[inline]: /docs/job-specification/template.html#inline-template -[matchers]: https://docs.traefik.io/v1.4/basics/#matchers -[reference-arch]: /guides/install/production/reference-architecture.html#high-availability -[remote-template]: /docs/job-specification/template.html#remote-template -[template-stanza]: /docs/job-specification/template.html -[terraform-repo]: https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud -[traefik]: https://traefik.io/ -[traefik_ui]: /assets/images/traefik_ui.png -[traefik-consul-provider]: https://docs.traefik.io/v1.7/configuration/backends/consulcatalog/ -[traefik-tags]: https://docs.traefik.io/v1.5/configuration/backends/consulcatalog/#tags diff --git a/website/source/redirects.txt b/website/source/redirects.txt index de6c00e9141..29239653c45 100644 --- a/website/source/redirects.txt +++ b/website/source/redirects.txt @@ -44,6 +44,11 @@ /intro/getting-started/ui.html https://learn.hashicorp.com/nomad/getting-started/ui /intro/getting-started/next-steps.html https://learn.hashicorp.com/nomad/getting-started/next-steps +/guides/load-balancing/fabio.html https://learn.hashicorp.com/nomad/load-balancing/fabio +/guides/load-balancing/nginx.html https://learn.hashicorp.com/nomad/load-balancing/nginx +/guides/load-balancing/haproxy.html https://learn.hashicorp.com/nomad/load-balancing/haproxy +/guides/load-balancing/traefik.html https://learn.hashicorp.com/nomad/load-balancing/traefik + # Website /community.html /resources.html From 5b44f334c15d41e203cc9efa265a6aaa7e3905c0 Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Fri, 22 Nov 2019 14:46:45 -0500 Subject: [PATCH 117/241] Removed sidenav links for LB guides --- website/source/layouts/guides.erb | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/website/source/layouts/guides.erb b/website/source/layouts/guides.erb index 70ed6a336b7..bc7966e648a 100644 --- a/website/source/layouts/guides.erb +++ b/website/source/layouts/guides.erb @@ -258,26 +258,6 @@ > Load Balancing - - - - > From 909519c4ca2ed21cec97a4d1859649a5f7f1ebf2 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 14:50:49 -0500 Subject: [PATCH 118/241] ci: verify .circleci/config.yml is up to date --- .circleci/config.yml | 6 ++++ .../commands/install-circleci-local-cli.yml | 31 +++++++++++++++++++ .circleci/config/jobs/lint-go.yml | 4 +++ 3 files changed, 41 insertions(+) create mode 100644 .circleci/config/commands/install-circleci-local-cli.yml diff --git a/.circleci/config.yml b/.circleci/config.yml index 02c78ce4e9e..5e28eec1441 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -424,12 +424,18 @@ jobs: sudo rm -rf /usr/bin/protoc sudo ./scripts/vagrant-linux-priv-protoc.sh name: install protoc + - run: + command: "CCI_VERSION=\"0.1.5879\"\nCCI_SHA256=\"f178ea62c781aec06267017404f87983c87f171fd0e66ef3737916246ae66dd6\"\n\nURL=\"https://github.com/CircleCI-Public/circleci-cli/releases/download/v${CCI_VERSION}/circleci-cli_${CCI_VERSION}_linux_amd64.tar.gz\"\n\nmkdir -p /tmp/circleci-cli/\ncurl --fail --show-error --location \\\n -o /tmp/circleci-cli/cli.tar.gz \"${URL}\"\n\necho \"$CCI_SHA256 /tmp/circleci-cli/cli.tar.gz\" | sha256sum -c\n\ntar -xz --strip-components=1 \\\n -C /tmp/circleci-cli \\\n -f /tmp/circleci-cli/cli.tar.gz \\\n \"circleci-cli_${CCI_VERSION}_linux_amd64/circleci\" \n\nsudo cp /tmp/circleci-cli/circleci /usr/bin/circleci-local-cli\n\ncircleci-local-cli version\n" + name: Install CircleCI CLI 0.1.5879 - run: command: make deps lint-deps - run: command: make check - run: command: make checkscripts + - run: + command: make -C .circleci CIRCLECI="circleci-local-cli --skip-update-check" ci-verify + name: check .circleci/config.yml is up-to-date environment: - GIT_PAGER: cat - GOMAXPROCS: 1 diff --git a/.circleci/config/commands/install-circleci-local-cli.yml b/.circleci/config/commands/install-circleci-local-cli.yml new file mode 100644 index 00000000000..5b89a3f698c --- /dev/null +++ b/.circleci/config/commands/install-circleci-local-cli.yml @@ -0,0 +1,31 @@ +parameters: + version: + type: string + default: 0.1.5879 + + sha256: + type: string + default: f178ea62c781aec06267017404f87983c87f171fd0e66ef3737916246ae66dd6 +steps: + - run: + name: Install CircleCI CLI << parameters.version >> + command: | + CCI_VERSION="<< parameters.version >>" + CCI_SHA256="<< parameters.sha256 >>" + + URL="https://github.com/CircleCI-Public/circleci-cli/releases/download/v${CCI_VERSION}/circleci-cli_${CCI_VERSION}_linux_amd64.tar.gz" + + mkdir -p /tmp/circleci-cli/ + curl --fail --show-error --location \ + -o /tmp/circleci-cli/cli.tar.gz "${URL}" + + echo "$CCI_SHA256 /tmp/circleci-cli/cli.tar.gz" | sha256sum -c + + tar -xz --strip-components=1 \ + -C /tmp/circleci-cli \ + -f /tmp/circleci-cli/cli.tar.gz \ + "circleci-cli_${CCI_VERSION}_linux_amd64/circleci" + + sudo cp /tmp/circleci-cli/circleci /usr/bin/circleci-local-cli + + circleci-local-cli version diff --git a/.circleci/config/jobs/lint-go.yml b/.circleci/config/jobs/lint-go.yml index 90a9abcab61..72e95501033 100644 --- a/.circleci/config/jobs/lint-go.yml +++ b/.circleci/config/jobs/lint-go.yml @@ -3,6 +3,10 @@ steps: - checkout - run: apt-get update; apt-get install -y shellcheck sudo unzip - install-protoc + - install-circleci-local-cli - run: make deps lint-deps - run: make check - run: make checkscripts + - run: + name: check .circleci/config.yml is up-to-date + command: make -C .circleci CIRCLECI="circleci-local-cli --skip-update-check" ci-verify From 44885594aa00449713fab886435bd56655bc9675 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 22 Nov 2019 11:51:11 -0800 Subject: [PATCH 119/241] Remove generated 0.10.2-rc1 files --- client/structs/structs.generated.go | 9709 --- nomad/structs/structs.generated.go | 106164 ------------------------- 2 files changed, 115873 deletions(-) delete mode 100644 client/structs/structs.generated.go delete mode 100644 nomad/structs/structs.generated.go diff --git a/client/structs/structs.generated.go b/client/structs/structs.generated.go deleted file mode 100644 index 1361cd0eacd..00000000000 --- a/client/structs/structs.generated.go +++ /dev/null @@ -1,9709 +0,0 @@ -// +build codec_generated - -// Code generated by codecgen - DO NOT EDIT. - -package structs - -import ( - "errors" - pkg1_stats "github.com/hashicorp/nomad/client/stats" - pkg4_structs "github.com/hashicorp/nomad/nomad/structs" - pkg2_device "github.com/hashicorp/nomad/plugins/device" - pkg3_structs "github.com/hashicorp/nomad/plugins/shared/structs" - codec1978 "github.com/ugorji/go/codec" - "runtime" - "strconv" - "time" -) - -const ( - // ----- content types ---- - codecSelferCcUTF8102 = 1 - codecSelferCcRAW102 = 255 - // ----- value types used ---- - codecSelferValueTypeArray102 = 10 - codecSelferValueTypeMap102 = 9 - codecSelferValueTypeString102 = 6 - codecSelferValueTypeInt102 = 2 - codecSelferValueTypeUint102 = 3 - codecSelferValueTypeFloat102 = 4 - codecSelferBitsize102 = uint8(32 << (^uint(0) >> 63)) -) - -var ( - errCodecSelferOnlyMapOrArrayEncodeToStruct102 = errors.New(`only encoded map or array can be decoded into a struct`) -) - -type codecSelfer102 struct{} - -func init() { - if codec1978.GenVersion != 10 { - _, file, _, _ := runtime.Caller(0) - panic("codecgen version mismatch: current: 10, need " + strconv.FormatInt(int64(codec1978.GenVersion), 10) + ". Re-generate file: " + file) - } - if false { - var _ byte = 0 // reference the types, but skip this branch at build/run time - var v0 pkg1_stats.HostStats - var v1 pkg4_structs.QueryMeta - var v2 pkg2_device.DeviceGroupStats - var v3 pkg3_structs.StatValue - var v4 time.Time - _, _, _, _, _ = v0, v1, v2, v3, v4 - } -} - -func (x *RpcError) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Message)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Message\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Message`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Message)) - } - } - } - var yyn6 bool - if x.Code == nil { - yyn6 = true - goto LABEL6 - } - LABEL6: - if yyr2 || yy2arr2 { - if yyn6 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Code == nil { - r.EncodeNil() - } else { - yy7 := *x.Code - if false { - } else { - r.EncodeInt(int64(yy7)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Code\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Code`) - } - r.WriteMapElemValue() - if yyn6 { - r.EncodeNil() - } else { - if x.Code == nil { - r.EncodeNil() - } else { - yy9 := *x.Code - if false { - } else { - r.EncodeInt(int64(yy9)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RpcError) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *RpcError) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = (string)(r.DecodeString()) - } - case "Code": - if r.TryDecodeAsNil() { - if true && x.Code != nil { - x.Code = nil - } - } else { - if x.Code == nil { - x.Code = new(int64) - } - - if false { - } else { - *x.Code = (int64)(r.DecodeInt64()) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RpcError) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Code != nil { - x.Code = nil - } - } else { - if x.Code == nil { - x.Code = new(int64) - } - - if false { - } else { - *x.Code = (int64)(r.DecodeInt64()) - } - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *ClientStatsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.HostStats == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.HostStats == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.HostStats)); yyxt4 != nil { - z.EncExtension(x.HostStats, yyxt4) - } else { - z.EncFallback(x.HostStats) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HostStats\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `HostStats`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.HostStats == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.HostStats)); yyxt5 != nil { - z.EncExtension(x.HostStats, yyxt5) - } else { - z.EncFallback(x.HostStats) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ClientStatsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *ClientStatsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "HostStats": - if r.TryDecodeAsNil() { - if true && x.HostStats != nil { - x.HostStats = nil - } - } else { - if x.HostStats == nil { - x.HostStats = new(pkg1_stats.HostStats) - } - - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.HostStats)); yyxt5 != nil { - z.DecExtension(x.HostStats, yyxt5) - } else { - z.DecFallback(x.HostStats, false) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ClientStatsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.HostStats != nil { - x.HostStats = nil - } - } else { - if x.HostStats == nil { - x.HostStats = new(pkg1_stats.HostStats) - } - - if false { - } else if yyxt12 := z.Extension(z.I2Rtid(x.HostStats)); yyxt12 != nil { - z.DecExtension(x.HostStats, yyxt12) - } else { - z.DecFallback(x.HostStats, false) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *MonitorRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(13) - } else { - r.WriteMapStart(13) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LogLevel))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogLevel)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LogLevel\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `LogLevel`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LogLevel))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogLevel)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.LogJSON)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LogJSON\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `LogJSON`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.LogJSON)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ServerID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ServerID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `ServerID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ServerID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.PlainText)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PlainText\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `PlainText`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.PlainText)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { - z.EncExtension(x.MaxQueryTime, yyxt28) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt29 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt29 != nil { - z.EncExtension(x.MaxQueryTime, yyxt29) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *MonitorRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *MonitorRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "LogLevel": - if r.TryDecodeAsNil() { - x.LogLevel = "" - } else { - x.LogLevel = (string)(r.DecodeString()) - } - case "LogJSON": - if r.TryDecodeAsNil() { - x.LogJSON = false - } else { - x.LogJSON = (bool)(r.DecodeBool()) - } - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "ServerID": - if r.TryDecodeAsNil() { - x.ServerID = "" - } else { - x.ServerID = (string)(r.DecodeString()) - } - case "PlainText": - if r.TryDecodeAsNil() { - x.PlainText = false - } else { - x.PlainText = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.DecExtension(x.MaxQueryTime, yyxt13) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *MonitorRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj18 int - var yyb18 bool - var yyhl18 bool = l >= 0 - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LogLevel = "" - } else { - x.LogLevel = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LogJSON = false - } else { - x.LogJSON = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ServerID = "" - } else { - x.ServerID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PlainText = false - } else { - x.PlainText = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { - z.DecExtension(x.MaxQueryTime, yyxt28) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj18-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocFileInfo) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - var yyq2 = [6]bool{ // should field at this index be written? - true, // Name - true, // IsDir - true, // Size - true, // FileMode - true, // ModTime - x.ContentType != "", // ContentType - } - _ = yyq2 - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - var yynn2 int - for _, b := range yyq2 { - if b { - yynn2++ - } - } - r.WriteMapStart(yynn2) - yynn2 = 0 - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.IsDir)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"IsDir\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `IsDir`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.IsDir)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Size)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Size\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Size`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Size)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FileMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.FileMode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FileMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `FileMode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FileMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.FileMode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.ModTime) - } else if yyxt16 := z.Extension(z.I2Rtid(x.ModTime)); yyxt16 != nil { - z.EncExtension(x.ModTime, yyxt16) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.ModTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.ModTime) - } else { - z.EncFallback(x.ModTime) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `ModTime`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.ModTime) - } else if yyxt17 := z.Extension(z.I2Rtid(x.ModTime)); yyxt17 != nil { - z.EncExtension(x.ModTime, yyxt17) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.ModTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.ModTime) - } else { - z.EncFallback(x.ModTime) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[5] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ContentType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ContentType)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, "") - } - } - } else { - if yyq2[5] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ContentType\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `ContentType`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ContentType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.ContentType)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocFileInfo) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *AllocFileInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "IsDir": - if r.TryDecodeAsNil() { - x.IsDir = false - } else { - x.IsDir = (bool)(r.DecodeBool()) - } - case "Size": - if r.TryDecodeAsNil() { - x.Size = 0 - } else { - x.Size = (int64)(r.DecodeInt64()) - } - case "FileMode": - if r.TryDecodeAsNil() { - x.FileMode = "" - } else { - x.FileMode = (string)(r.DecodeString()) - } - case "ModTime": - if r.TryDecodeAsNil() { - x.ModTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.ModTime = r.DecodeTime() - } else if yyxt9 := z.Extension(z.I2Rtid(x.ModTime)); yyxt9 != nil { - z.DecExtension(x.ModTime, yyxt9) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.ModTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.ModTime) - } else { - z.DecFallback(&x.ModTime, false) - } - } - case "ContentType": - if r.TryDecodeAsNil() { - x.ContentType = "" - } else { - x.ContentType = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocFileInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.IsDir = false - } else { - x.IsDir = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Size = 0 - } else { - x.Size = (int64)(r.DecodeInt64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FileMode = "" - } else { - x.FileMode = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.ModTime = r.DecodeTime() - } else if yyxt17 := z.Extension(z.I2Rtid(x.ModTime)); yyxt17 != nil { - z.DecExtension(x.ModTime, yyxt17) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.ModTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.ModTime) - } else { - z.DecFallback(&x.ModTime, false) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ContentType = "" - } else { - x.ContentType = (string)(r.DecodeString()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *FsListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Path\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Path`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *FsListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *FsListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Path": - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *FsListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *FsListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Files == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocFileInfo(([]*AllocFileInfo)(x.Files), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Files\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Files`) - } - r.WriteMapElemValue() - if x.Files == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocFileInfo(([]*AllocFileInfo)(x.Files), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *FsListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *FsListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Files": - if r.TryDecodeAsNil() { - x.Files = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocFileInfo((*[]*AllocFileInfo)(&x.Files), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *FsListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Files = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocFileInfo((*[]*AllocFileInfo)(&x.Files), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *FsStatRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Path\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Path`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *FsStatRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *FsStatRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Path": - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *FsStatRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *FsStatResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Info == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Info == nil { - r.EncodeNil() - } else { - x.Info.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Info\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Info`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Info == nil { - r.EncodeNil() - } else { - x.Info.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *FsStatResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *FsStatResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Info": - if r.TryDecodeAsNil() { - if true && x.Info != nil { - x.Info = nil - } - } else { - if x.Info == nil { - x.Info = new(AllocFileInfo) - } - - x.Info.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *FsStatResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Info != nil { - x.Info = nil - } - } else { - if x.Info == nil { - x.Info = new(AllocFileInfo) - } - - x.Info.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *FsStreamRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(15) - } else { - r.WriteMapStart(15) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Path\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Path`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Path)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Offset)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Offset\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Offset`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Offset)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Origin\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Origin`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.PlainText)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PlainText\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `PlainText`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.PlainText)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Limit)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Limit\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Limit`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Limit)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Follow)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Follow\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Follow`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Follow)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt34 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt34 != nil { - z.EncExtension(x.MaxQueryTime, yyxt34) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt35 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt35 != nil { - z.EncExtension(x.MaxQueryTime, yyxt35) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *FsStreamRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *FsStreamRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Path": - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - case "Offset": - if r.TryDecodeAsNil() { - x.Offset = 0 - } else { - x.Offset = (int64)(r.DecodeInt64()) - } - case "Origin": - if r.TryDecodeAsNil() { - x.Origin = "" - } else { - x.Origin = (string)(r.DecodeString()) - } - case "PlainText": - if r.TryDecodeAsNil() { - x.PlainText = false - } else { - x.PlainText = (bool)(r.DecodeBool()) - } - case "Limit": - if r.TryDecodeAsNil() { - x.Limit = 0 - } else { - x.Limit = (int64)(r.DecodeInt64()) - } - case "Follow": - if r.TryDecodeAsNil() { - x.Follow = false - } else { - x.Follow = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt15 != nil { - z.DecExtension(x.MaxQueryTime, yyxt15) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *FsStreamRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj20 int - var yyb20 bool - var yyhl20 bool = l >= 0 - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Offset = 0 - } else { - x.Offset = (int64)(r.DecodeInt64()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Origin = "" - } else { - x.Origin = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PlainText = false - } else { - x.PlainText = (bool)(r.DecodeBool()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Limit = 0 - } else { - x.Limit = (int64)(r.DecodeInt64()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Follow = false - } else { - x.Follow = (bool)(r.DecodeBool()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt32 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt32 != nil { - z.DecExtension(x.MaxQueryTime, yyxt32) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj20-1, "") - } - r.ReadArrayEnd() -} - -func (x *FsLogsRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(15) - } else { - r.WriteMapStart(15) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Task\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Task`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LogType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogType)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LogType\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `LogType`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LogType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.LogType)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Offset)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Offset\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Offset`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Offset)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Origin\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Origin`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Origin))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Origin)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.PlainText)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PlainText\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `PlainText`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.PlainText)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Follow)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Follow\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Follow`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Follow)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt34 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt34 != nil { - z.EncExtension(x.MaxQueryTime, yyxt34) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt35 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt35 != nil { - z.EncExtension(x.MaxQueryTime, yyxt35) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *FsLogsRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *FsLogsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Task": - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - case "LogType": - if r.TryDecodeAsNil() { - x.LogType = "" - } else { - x.LogType = (string)(r.DecodeString()) - } - case "Offset": - if r.TryDecodeAsNil() { - x.Offset = 0 - } else { - x.Offset = (int64)(r.DecodeInt64()) - } - case "Origin": - if r.TryDecodeAsNil() { - x.Origin = "" - } else { - x.Origin = (string)(r.DecodeString()) - } - case "PlainText": - if r.TryDecodeAsNil() { - x.PlainText = false - } else { - x.PlainText = (bool)(r.DecodeBool()) - } - case "Follow": - if r.TryDecodeAsNil() { - x.Follow = false - } else { - x.Follow = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt15 != nil { - z.DecExtension(x.MaxQueryTime, yyxt15) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *FsLogsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj20 int - var yyb20 bool - var yyhl20 bool = l >= 0 - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LogType = "" - } else { - x.LogType = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Offset = 0 - } else { - x.Offset = (int64)(r.DecodeInt64()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Origin = "" - } else { - x.Origin = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PlainText = false - } else { - x.PlainText = (bool)(r.DecodeBool()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Follow = false - } else { - x.Follow = (bool)(r.DecodeBool()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt32 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt32 != nil { - z.DecExtension(x.MaxQueryTime, yyxt32) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj20-1, "") - } - r.ReadArrayEnd() -} - -func (x *StreamErrWrapper) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - var yyn3 bool - if x.Error == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Error == nil { - r.EncodeNil() - } else { - x.Error.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Error\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Error`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Error == nil { - r.EncodeNil() - } else { - x.Error.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Payload == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Payload)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Payload\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Payload`) - } - r.WriteMapElemValue() - if x.Payload == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Payload)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *StreamErrWrapper) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *StreamErrWrapper) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Error": - if r.TryDecodeAsNil() { - if true && x.Error != nil { - x.Error = nil - } - } else { - if x.Error == nil { - x.Error = new(RpcError) - } - - x.Error.CodecDecodeSelf(d) - } - case "Payload": - if r.TryDecodeAsNil() { - x.Payload = nil - } else { - if false { - } else { - x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *StreamErrWrapper) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Error != nil { - x.Error = nil - } - } else { - if x.Error == nil { - x.Error = new(RpcError) - } - - x.Error.CodecDecodeSelf(d) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Payload = nil - } else { - if false { - } else { - x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) - } - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocExecRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(12) - } else { - r.WriteMapStart(12) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Task\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Task`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Tty)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tty\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Tty`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Tty)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Cmd == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Cmd, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Cmd\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Cmd`) - } - r.WriteMapElemValue() - if x.Cmd == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Cmd, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt25 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt25 != nil { - z.EncExtension(x.MaxQueryTime, yyxt25) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt26 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt26 != nil { - z.EncExtension(x.MaxQueryTime, yyxt26) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocExecRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *AllocExecRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Task": - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - case "Tty": - if r.TryDecodeAsNil() { - x.Tty = false - } else { - x.Tty = (bool)(r.DecodeBool()) - } - case "Cmd": - if r.TryDecodeAsNil() { - x.Cmd = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Cmd, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.DecExtension(x.MaxQueryTime, yyxt13) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocExecRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj18 int - var yyb18 bool - var yyhl18 bool = l >= 0 - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tty = false - } else { - x.Tty = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Cmd = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Cmd, d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { - z.DecExtension(x.MaxQueryTime, yyxt28) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj18-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocStatsRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Task\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Task`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Task)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocStatsRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *AllocStatsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Task": - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocStatsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocStatsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Stats == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Stats == nil { - r.EncodeNil() - } else { - x.Stats.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Stats\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Stats`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Stats == nil { - r.EncodeNil() - } else { - x.Stats.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocStatsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *AllocStatsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Stats": - if r.TryDecodeAsNil() { - if true && x.Stats != nil { - x.Stats = nil - } - } else { - if x.Stats == nil { - x.Stats = new(AllocResourceUsage) - } - - x.Stats.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocStatsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Stats != nil { - x.Stats = nil - } - } else { - if x.Stats == nil { - x.Stats = new(AllocResourceUsage) - } - - x.Stats.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *MemoryStats) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.RSS)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RSS\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `RSS`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.RSS)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Cache)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Cache\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Cache`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Cache)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Swap)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Swap\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Swap`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Swap)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Usage)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Usage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Usage`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Usage)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MaxUsage)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxUsage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MaxUsage`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MaxUsage)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.KernelUsage)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KernelUsage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `KernelUsage`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.KernelUsage)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.KernelMaxUsage)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KernelMaxUsage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `KernelMaxUsage`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.KernelMaxUsage)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Measured == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Measured, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Measured\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Measured`) - } - r.WriteMapElemValue() - if x.Measured == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Measured, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *MemoryStats) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *MemoryStats) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "RSS": - if r.TryDecodeAsNil() { - x.RSS = 0 - } else { - x.RSS = (uint64)(r.DecodeUint64()) - } - case "Cache": - if r.TryDecodeAsNil() { - x.Cache = 0 - } else { - x.Cache = (uint64)(r.DecodeUint64()) - } - case "Swap": - if r.TryDecodeAsNil() { - x.Swap = 0 - } else { - x.Swap = (uint64)(r.DecodeUint64()) - } - case "Usage": - if r.TryDecodeAsNil() { - x.Usage = 0 - } else { - x.Usage = (uint64)(r.DecodeUint64()) - } - case "MaxUsage": - if r.TryDecodeAsNil() { - x.MaxUsage = 0 - } else { - x.MaxUsage = (uint64)(r.DecodeUint64()) - } - case "KernelUsage": - if r.TryDecodeAsNil() { - x.KernelUsage = 0 - } else { - x.KernelUsage = (uint64)(r.DecodeUint64()) - } - case "KernelMaxUsage": - if r.TryDecodeAsNil() { - x.KernelMaxUsage = 0 - } else { - x.KernelMaxUsage = (uint64)(r.DecodeUint64()) - } - case "Measured": - if r.TryDecodeAsNil() { - x.Measured = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Measured, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *MemoryStats) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RSS = 0 - } else { - x.RSS = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Cache = 0 - } else { - x.Cache = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Swap = 0 - } else { - x.Swap = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Usage = 0 - } else { - x.Usage = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxUsage = 0 - } else { - x.MaxUsage = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KernelUsage = 0 - } else { - x.KernelUsage = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KernelMaxUsage = 0 - } else { - x.KernelMaxUsage = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Measured = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Measured, d) - } - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *CpuStats) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeFloat64(float64(x.SystemMode)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SystemMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `SystemMode`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeFloat64(float64(x.SystemMode)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeFloat64(float64(x.UserMode)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UserMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `UserMode`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeFloat64(float64(x.UserMode)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeFloat64(float64(x.TotalTicks)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TotalTicks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `TotalTicks`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeFloat64(float64(x.TotalTicks)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ThrottledPeriods)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ThrottledPeriods\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `ThrottledPeriods`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ThrottledPeriods)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ThrottledTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ThrottledTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `ThrottledTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ThrottledTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeFloat64(float64(x.Percent)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Percent\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Percent`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeFloat64(float64(x.Percent)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Measured == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Measured, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Measured\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Measured`) - } - r.WriteMapElemValue() - if x.Measured == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Measured, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *CpuStats) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *CpuStats) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "SystemMode": - if r.TryDecodeAsNil() { - x.SystemMode = 0 - } else { - x.SystemMode = (float64)(r.DecodeFloat64()) - } - case "UserMode": - if r.TryDecodeAsNil() { - x.UserMode = 0 - } else { - x.UserMode = (float64)(r.DecodeFloat64()) - } - case "TotalTicks": - if r.TryDecodeAsNil() { - x.TotalTicks = 0 - } else { - x.TotalTicks = (float64)(r.DecodeFloat64()) - } - case "ThrottledPeriods": - if r.TryDecodeAsNil() { - x.ThrottledPeriods = 0 - } else { - x.ThrottledPeriods = (uint64)(r.DecodeUint64()) - } - case "ThrottledTime": - if r.TryDecodeAsNil() { - x.ThrottledTime = 0 - } else { - x.ThrottledTime = (uint64)(r.DecodeUint64()) - } - case "Percent": - if r.TryDecodeAsNil() { - x.Percent = 0 - } else { - x.Percent = (float64)(r.DecodeFloat64()) - } - case "Measured": - if r.TryDecodeAsNil() { - x.Measured = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Measured, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *CpuStats) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SystemMode = 0 - } else { - x.SystemMode = (float64)(r.DecodeFloat64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UserMode = 0 - } else { - x.UserMode = (float64)(r.DecodeFloat64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TotalTicks = 0 - } else { - x.TotalTicks = (float64)(r.DecodeFloat64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ThrottledPeriods = 0 - } else { - x.ThrottledPeriods = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ThrottledTime = 0 - } else { - x.ThrottledTime = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Percent = 0 - } else { - x.Percent = (float64)(r.DecodeFloat64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Measured = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Measured, d) - } - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *ResourceUsage) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - var yyn3 bool - if x.MemoryStats == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.MemoryStats == nil { - r.EncodeNil() - } else { - x.MemoryStats.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MemoryStats\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `MemoryStats`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.MemoryStats == nil { - r.EncodeNil() - } else { - x.MemoryStats.CodecEncodeSelf(e) - } - } - } - var yyn6 bool - if x.CpuStats == nil { - yyn6 = true - goto LABEL6 - } - LABEL6: - if yyr2 || yy2arr2 { - if yyn6 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.CpuStats == nil { - r.EncodeNil() - } else { - x.CpuStats.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CpuStats\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `CpuStats`) - } - r.WriteMapElemValue() - if yyn6 { - r.EncodeNil() - } else { - if x.CpuStats == nil { - r.EncodeNil() - } else { - x.CpuStats.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.DeviceStats == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtodevice_DeviceGroupStats(([]*pkg2_device.DeviceGroupStats)(x.DeviceStats), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeviceStats\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `DeviceStats`) - } - r.WriteMapElemValue() - if x.DeviceStats == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtodevice_DeviceGroupStats(([]*pkg2_device.DeviceGroupStats)(x.DeviceStats), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ResourceUsage) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *ResourceUsage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "MemoryStats": - if r.TryDecodeAsNil() { - if true && x.MemoryStats != nil { - x.MemoryStats = nil - } - } else { - if x.MemoryStats == nil { - x.MemoryStats = new(MemoryStats) - } - - x.MemoryStats.CodecDecodeSelf(d) - } - case "CpuStats": - if r.TryDecodeAsNil() { - if true && x.CpuStats != nil { - x.CpuStats = nil - } - } else { - if x.CpuStats == nil { - x.CpuStats = new(CpuStats) - } - - x.CpuStats.CodecDecodeSelf(d) - } - case "DeviceStats": - if r.TryDecodeAsNil() { - x.DeviceStats = nil - } else { - if false { - } else { - h.decSlicePtrtodevice_DeviceGroupStats((*[]*pkg2_device.DeviceGroupStats)(&x.DeviceStats), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ResourceUsage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.MemoryStats != nil { - x.MemoryStats = nil - } - } else { - if x.MemoryStats == nil { - x.MemoryStats = new(MemoryStats) - } - - x.MemoryStats.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.CpuStats != nil { - x.CpuStats = nil - } - } else { - if x.CpuStats == nil { - x.CpuStats = new(CpuStats) - } - - x.CpuStats.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeviceStats = nil - } else { - if false { - } else { - h.decSlicePtrtodevice_DeviceGroupStats((*[]*pkg2_device.DeviceGroupStats)(&x.DeviceStats), d) - } - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *TaskResourceUsage) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - var yyn3 bool - if x.ResourceUsage == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.ResourceUsage == nil { - r.EncodeNil() - } else { - x.ResourceUsage.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ResourceUsage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `ResourceUsage`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.ResourceUsage == nil { - r.EncodeNil() - } else { - x.ResourceUsage.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Timestamp)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Timestamp\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Timestamp`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Timestamp)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Pids == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoResourceUsage((map[string]*ResourceUsage)(x.Pids), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Pids\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Pids`) - } - r.WriteMapElemValue() - if x.Pids == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoResourceUsage((map[string]*ResourceUsage)(x.Pids), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskResourceUsage) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *TaskResourceUsage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ResourceUsage": - if r.TryDecodeAsNil() { - if true && x.ResourceUsage != nil { - x.ResourceUsage = nil - } - } else { - if x.ResourceUsage == nil { - x.ResourceUsage = new(ResourceUsage) - } - - x.ResourceUsage.CodecDecodeSelf(d) - } - case "Timestamp": - if r.TryDecodeAsNil() { - x.Timestamp = 0 - } else { - x.Timestamp = (int64)(r.DecodeInt64()) - } - case "Pids": - if r.TryDecodeAsNil() { - x.Pids = nil - } else { - if false { - } else { - h.decMapstringPtrtoResourceUsage((*map[string]*ResourceUsage)(&x.Pids), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskResourceUsage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.ResourceUsage != nil { - x.ResourceUsage = nil - } - } else { - if x.ResourceUsage == nil { - x.ResourceUsage = new(ResourceUsage) - } - - x.ResourceUsage.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Timestamp = 0 - } else { - x.Timestamp = (int64)(r.DecodeInt64()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Pids = nil - } else { - if false { - } else { - h.decMapstringPtrtoResourceUsage((*map[string]*ResourceUsage)(&x.Pids), d) - } - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocResourceUsage) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - var yyn3 bool - if x.ResourceUsage == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.ResourceUsage == nil { - r.EncodeNil() - } else { - x.ResourceUsage.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ResourceUsage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `ResourceUsage`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.ResourceUsage == nil { - r.EncodeNil() - } else { - x.ResourceUsage.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskResourceUsage((map[string]*TaskResourceUsage)(x.Tasks), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tasks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Tasks`) - } - r.WriteMapElemValue() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskResourceUsage((map[string]*TaskResourceUsage)(x.Tasks), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Timestamp)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Timestamp\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Timestamp`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Timestamp)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocResourceUsage) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *AllocResourceUsage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ResourceUsage": - if r.TryDecodeAsNil() { - if true && x.ResourceUsage != nil { - x.ResourceUsage = nil - } - } else { - if x.ResourceUsage == nil { - x.ResourceUsage = new(ResourceUsage) - } - - x.ResourceUsage.CodecDecodeSelf(d) - } - case "Tasks": - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskResourceUsage((*map[string]*TaskResourceUsage)(&x.Tasks), d) - } - } - case "Timestamp": - if r.TryDecodeAsNil() { - x.Timestamp = 0 - } else { - x.Timestamp = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocResourceUsage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.ResourceUsage != nil { - x.ResourceUsage = nil - } - } else { - if x.ResourceUsage == nil { - x.ResourceUsage = new(ResourceUsage) - } - - x.ResourceUsage.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskResourceUsage((*map[string]*TaskResourceUsage)(&x.Tasks), d) - } - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Timestamp = 0 - } else { - x.Timestamp = (int64)(r.DecodeInt64()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *HealthCheckRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(0) - } else { - r.WriteMapStart(0) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *HealthCheckRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *HealthCheckRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *HealthCheckRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4 int - var yyb4 bool - var yyhl4 bool = l >= 0 - for { - yyj4++ - if yyhl4 { - yyb4 = yyj4 > l - } else { - yyb4 = r.CheckBreak() - } - if yyb4 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj4-1, "") - } - r.ReadArrayEnd() -} - -func (x *HealthCheckResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Drivers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtostructs_DriverInfo((map[string]*pkg4_structs.DriverInfo)(x.Drivers), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Drivers\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Drivers`) - } - r.WriteMapElemValue() - if x.Drivers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtostructs_DriverInfo((map[string]*pkg4_structs.DriverInfo)(x.Drivers), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *HealthCheckResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *HealthCheckResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Drivers": - if r.TryDecodeAsNil() { - x.Drivers = nil - } else { - if false { - } else { - h.decMapstringPtrtostructs_DriverInfo((*map[string]*pkg4_structs.DriverInfo)(&x.Drivers), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *HealthCheckResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Drivers = nil - } else { - if false { - } else { - h.decMapstringPtrtostructs_DriverInfo((*map[string]*pkg4_structs.DriverInfo)(&x.Drivers), d) - } - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *HealthCheckIntervalRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(0) - } else { - r.WriteMapStart(0) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *HealthCheckIntervalRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *HealthCheckIntervalRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *HealthCheckIntervalRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4 int - var yyb4 bool - var yyhl4 bool = l >= 0 - for { - yyj4++ - if yyhl4 { - yyb4 = yyj4 > l - } else { - yyb4 = r.CheckBreak() - } - if yyb4 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj4-1, "") - } - r.ReadArrayEnd() -} - -func (x *HealthCheckIntervalResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Eligible)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Eligible\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Eligible`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Eligible)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.Period)); yyxt7 != nil { - z.EncExtension(x.Period, yyxt7) - } else { - r.EncodeInt(int64(x.Period)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Period\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, `Period`) - } - r.WriteMapElemValue() - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Period)); yyxt8 != nil { - z.EncExtension(x.Period, yyxt8) - } else { - r.EncodeInt(int64(x.Period)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *HealthCheckIntervalResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap102 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray102 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct102) - } - } -} - -func (x *HealthCheckIntervalResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Eligible": - if r.TryDecodeAsNil() { - x.Eligible = false - } else { - x.Eligible = (bool)(r.DecodeBool()) - } - case "Period": - if r.TryDecodeAsNil() { - x.Period = 0 - } else { - if false { - } else if yyxt6 := z.Extension(z.I2Rtid(x.Period)); yyxt6 != nil { - z.DecExtension(x.Period, yyxt6) - } else { - x.Period = (time.Duration)(r.DecodeInt64()) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *HealthCheckIntervalResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Eligible = false - } else { - x.Eligible = (bool)(r.DecodeBool()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Period = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.Period)); yyxt10 != nil { - z.DecExtension(x.Period, yyxt10) - } else { - x.Period = (time.Duration)(r.DecodeInt64()) - } - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x codecSelfer102) encSlicePtrtoAllocFileInfo(v []*AllocFileInfo, e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer102) decSlicePtrtoAllocFileInfo(v *[]*AllocFileInfo, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*AllocFileInfo{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*AllocFileInfo, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*AllocFileInfo, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(AllocFileInfo) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*AllocFileInfo, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer102) encSlicePtrtodevice_DeviceGroupStats(v []*pkg2_device.DeviceGroupStats, e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt2 := z.Extension(z.I2Rtid(yyv1)); yyxt2 != nil { - z.EncExtension(yyv1, yyxt2) - } else { - z.EncFallback(yyv1) - } - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer102) decSlicePtrtodevice_DeviceGroupStats(v *[]*pkg2_device.DeviceGroupStats, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*pkg2_device.DeviceGroupStats{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*pkg2_device.DeviceGroupStats, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*pkg2_device.DeviceGroupStats, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(pkg2_device.DeviceGroupStats) - } - if false { - } else if yyxt3 := z.Extension(z.I2Rtid(yyv1[yyj1])); yyxt3 != nil { - z.DecExtension(yyv1[yyj1], yyxt3) - } else { - z.DecFallback(yyv1[yyj1], false) - } - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*pkg2_device.DeviceGroupStats, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer102) encMapstringPtrtoResourceUsage(v map[string]*ResourceUsage, e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer102) decMapstringPtrtoResourceUsage(v *map[string]*ResourceUsage, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*ResourceUsage, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *ResourceUsage - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(ResourceUsage) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer102) encMapstringPtrtoTaskResourceUsage(v map[string]*TaskResourceUsage, e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer102) decMapstringPtrtoTaskResourceUsage(v *map[string]*TaskResourceUsage, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*TaskResourceUsage, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *TaskResourceUsage - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(TaskResourceUsage) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer102) encMapstringPtrtostructs_DriverInfo(v map[string]*pkg4_structs.DriverInfo, e *codec1978.Encoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8102, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt3 := z.Extension(z.I2Rtid(yyv1)); yyxt3 != nil { - z.EncExtension(yyv1, yyxt3) - } else { - z.EncFallback(yyv1) - } - } - } - r.WriteMapEnd() -} - -func (x codecSelfer102) decMapstringPtrtostructs_DriverInfo(v *map[string]*pkg4_structs.DriverInfo, d *codec1978.Decoder) { - var h codecSelfer102 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*pkg4_structs.DriverInfo, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *pkg4_structs.DriverInfo - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(pkg4_structs.DriverInfo) - } - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(yymv1)); yyxt4 != nil { - z.DecExtension(yymv1, yyxt4) - } else { - z.DecFallback(yymv1, false) - } - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} diff --git a/nomad/structs/structs.generated.go b/nomad/structs/structs.generated.go deleted file mode 100644 index afca3d6f96b..00000000000 --- a/nomad/structs/structs.generated.go +++ /dev/null @@ -1,106164 +0,0 @@ -// +build codec_generated - -// Code generated by codecgen - DO NOT EDIT. - -package structs - -import ( - "errors" - pkg3_acl "github.com/hashicorp/nomad/acl" - pkg1_structs "github.com/hashicorp/nomad/plugins/shared/structs" - pkg2_raft "github.com/hashicorp/raft" - codec1978 "github.com/ugorji/go/codec" - "net" - "runtime" - "strconv" - "time" -) - -const ( - // ----- content types ---- - codecSelferCcUTF8100 = 1 - codecSelferCcRAW100 = 255 - // ----- value types used ---- - codecSelferValueTypeArray100 = 10 - codecSelferValueTypeMap100 = 9 - codecSelferValueTypeString100 = 6 - codecSelferValueTypeInt100 = 2 - codecSelferValueTypeUint100 = 3 - codecSelferValueTypeFloat100 = 4 - codecSelferBitsize100 = uint8(32 << (^uint(0) >> 63)) -) - -var ( - errCodecSelferOnlyMapOrArrayEncodeToStruct100 = errors.New(`only encoded map or array can be decoded into a struct`) -) - -type codecSelfer100 struct{} - -func init() { - if codec1978.GenVersion != 10 { - _, file, _, _ := runtime.Caller(0) - panic("codecgen version mismatch: current: 10, need " + strconv.FormatInt(int64(codec1978.GenVersion), 10) + ". Re-generate file: " + file) - } - if false { - var _ byte = 0 // reference the types, but skip this branch at build/run time - var v0 pkg3_acl.Policy - var v1 pkg1_structs.Attribute - var v2 pkg2_raft.ServerID - var v3 net.IP - var v4 time.Time - _, _, _, _, _ = v0, v1, v2, v3, v4 - } -} - -func (x *BatchFuture) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(0) - } else { - r.WriteMapStart(0) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *BatchFuture) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *BatchFuture) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *BatchFuture) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4 int - var yyb4 bool - var yyhl4 bool = l >= 0 - for { - yyj4++ - if yyhl4 { - yyb4 = yyj4 > l - } else { - yyb4 = r.CheckBreak() - } - if yyb4 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj4-1, "") - } - r.ReadArrayEnd() -} - -func (x Bitmap) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encBitmap((Bitmap)(x), e) - } - } -} - -func (x *Bitmap) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decBitmap((*Bitmap)(x), d) - } -} - -func (x *DeviceAccounter) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Devices == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapDeviceIdTuplePtrtoDeviceAccounterInstance((map[DeviceIdTuple]*DeviceAccounterInstance)(x.Devices), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Devices\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) - } - r.WriteMapElemValue() - if x.Devices == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapDeviceIdTuplePtrtoDeviceAccounterInstance((map[DeviceIdTuple]*DeviceAccounterInstance)(x.Devices), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeviceAccounter) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeviceAccounter) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Devices": - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - if false { - } else { - h.decMapDeviceIdTuplePtrtoDeviceAccounterInstance((*map[DeviceIdTuple]*DeviceAccounterInstance)(&x.Devices), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeviceAccounter) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - if false { - } else { - h.decMapDeviceIdTuplePtrtoDeviceAccounterInstance((*map[DeviceIdTuple]*DeviceAccounterInstance)(&x.Devices), d) - } - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeviceAccounterInstance) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - var yyn3 bool - if x.Device == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Device == nil { - r.EncodeNil() - } else { - x.Device.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Device\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Device`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Device == nil { - r.EncodeNil() - } else { - x.Device.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Instances == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.Instances, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Instances\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Instances`) - } - r.WriteMapElemValue() - if x.Instances == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.Instances, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeviceAccounterInstance) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeviceAccounterInstance) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Device": - if r.TryDecodeAsNil() { - if true && x.Device != nil { - x.Device = nil - } - } else { - if x.Device == nil { - x.Device = new(NodeDeviceResource) - } - - x.Device.CodecDecodeSelf(d) - } - case "Instances": - if r.TryDecodeAsNil() { - x.Instances = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.Instances, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeviceAccounterInstance) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Device != nil { - x.Device = nil - } - } else { - if x.Device == nil { - x.Device = new(NodeDeviceResource) - } - - x.Device.CodecDecodeSelf(d) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Instances = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.Instances, d) - } - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x DiffType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x)) - } - } -} - -func (x *DiffType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - *x = (DiffType)(r.DecodeString()) - } -} - -func (x *JobDiff) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - x.Type.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - x.Type.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Fields\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) - } - r.WriteMapElemValue() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Objects\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) - } - r.WriteMapElemValue() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.TaskGroups == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskGroupDiff(([]*TaskGroupDiff)(x.TaskGroups), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskGroups\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroups`) - } - r.WriteMapElemValue() - if x.TaskGroups == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskGroupDiff(([]*TaskGroupDiff)(x.TaskGroups), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobDiff) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Fields": - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - case "Objects": - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - case "TaskGroups": - if r.TryDecodeAsNil() { - x.TaskGroups = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskGroupDiff((*[]*TaskGroupDiff)(&x.TaskGroups), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskGroups = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskGroupDiff((*[]*TaskGroupDiff)(&x.TaskGroups), d) - } - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *TaskGroupDiff) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - x.Type.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - x.Type.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Fields\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) - } - r.WriteMapElemValue() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Objects\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) - } - r.WriteMapElemValue() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskDiff(([]*TaskDiff)(x.Tasks), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tasks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) - } - r.WriteMapElemValue() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskDiff(([]*TaskDiff)(x.Tasks), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Updates == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringUint64V(x.Updates, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Updates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Updates`) - } - r.WriteMapElemValue() - if x.Updates == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringUint64V(x.Updates, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskGroupDiff) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *TaskGroupDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Fields": - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - case "Objects": - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - case "Tasks": - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskDiff((*[]*TaskDiff)(&x.Tasks), d) - } - } - case "Updates": - if r.TryDecodeAsNil() { - x.Updates = nil - } else { - if false { - } else { - z.F.DecMapStringUint64X(&x.Updates, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskGroupDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskDiff((*[]*TaskDiff)(&x.Tasks), d) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Updates = nil - } else { - if false { - } else { - z.F.DecMapStringUint64X(&x.Updates, d) - } - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x TaskGroupDiffs) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encTaskGroupDiffs((TaskGroupDiffs)(x), e) - } - } -} - -func (x *TaskGroupDiffs) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decTaskGroupDiffs((*TaskGroupDiffs)(x), d) - } -} - -func (x *TaskDiff) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - x.Type.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - x.Type.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Fields\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) - } - r.WriteMapElemValue() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Objects\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) - } - r.WriteMapElemValue() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Annotations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Annotations, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Annotations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) - } - r.WriteMapElemValue() - if x.Annotations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Annotations, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskDiff) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *TaskDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Fields": - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - case "Objects": - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - case "Annotations": - if r.TryDecodeAsNil() { - x.Annotations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Annotations, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Annotations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Annotations, d) - } - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x TaskDiffs) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encTaskDiffs((TaskDiffs)(x), e) - } - } -} - -func (x *TaskDiffs) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decTaskDiffs((*TaskDiffs)(x), d) - } -} - -func (x *ObjectDiff) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - x.Type.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - x.Type.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Fields\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Fields`) - } - r.WriteMapElemValue() - if x.Fields == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoFieldDiff(([]*FieldDiff)(x.Fields), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Objects\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Objects`) - } - r.WriteMapElemValue() - if x.Objects == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoObjectDiff(([]*ObjectDiff)(x.Objects), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ObjectDiff) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ObjectDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Fields": - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - case "Objects": - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ObjectDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Fields = nil - } else { - if false { - } else { - h.decSlicePtrtoFieldDiff((*[]*FieldDiff)(&x.Fields), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Objects = nil - } else { - if false { - } else { - h.decSlicePtrtoObjectDiff((*[]*ObjectDiff)(&x.Objects), d) - } - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x ObjectDiffs) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encObjectDiffs((ObjectDiffs)(x), e) - } - } -} - -func (x *ObjectDiffs) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decObjectDiffs((*ObjectDiffs)(x), d) - } -} - -func (x *FieldDiff) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - x.Type.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - x.Type.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Old))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Old)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Old\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Old`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Old))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Old)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.New))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.New)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"New\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `New`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.New))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.New)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Annotations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Annotations, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Annotations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) - } - r.WriteMapElemValue() - if x.Annotations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Annotations, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *FieldDiff) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *FieldDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Old": - if r.TryDecodeAsNil() { - x.Old = "" - } else { - x.Old = (string)(r.DecodeString()) - } - case "New": - if r.TryDecodeAsNil() { - x.New = "" - } else { - x.New = (string)(r.DecodeString()) - } - case "Annotations": - if r.TryDecodeAsNil() { - x.Annotations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Annotations, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *FieldDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Old = "" - } else { - x.Old = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.New = "" - } else { - x.New = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Annotations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Annotations, d) - } - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x FieldDiffs) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encFieldDiffs((FieldDiffs)(x), e) - } - } -} - -func (x *FieldDiffs) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decFieldDiffs((*FieldDiffs)(x), d) - } -} - -func (x *NetworkIndex) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AvailNetworks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNetworkResource(([]*NetworkResource)(x.AvailNetworks), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AvailNetworks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AvailNetworks`) - } - r.WriteMapElemValue() - if x.AvailNetworks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNetworkResource(([]*NetworkResource)(x.AvailNetworks), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AvailBandwidth == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.AvailBandwidth, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AvailBandwidth\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AvailBandwidth`) - } - r.WriteMapElemValue() - if x.AvailBandwidth == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.AvailBandwidth, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.UsedPorts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringBitmap((map[string]Bitmap)(x.UsedPorts), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UsedPorts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UsedPorts`) - } - r.WriteMapElemValue() - if x.UsedPorts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringBitmap((map[string]Bitmap)(x.UsedPorts), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.UsedBandwidth == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.UsedBandwidth, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UsedBandwidth\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UsedBandwidth`) - } - r.WriteMapElemValue() - if x.UsedBandwidth == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.UsedBandwidth, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NetworkIndex) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NetworkIndex) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AvailNetworks": - if r.TryDecodeAsNil() { - x.AvailNetworks = nil - } else { - if false { - } else { - h.decSlicePtrtoNetworkResource((*[]*NetworkResource)(&x.AvailNetworks), d) - } - } - case "AvailBandwidth": - if r.TryDecodeAsNil() { - x.AvailBandwidth = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.AvailBandwidth, d) - } - } - case "UsedPorts": - if r.TryDecodeAsNil() { - x.UsedPorts = nil - } else { - if false { - } else { - h.decMapstringBitmap((*map[string]Bitmap)(&x.UsedPorts), d) - } - } - case "UsedBandwidth": - if r.TryDecodeAsNil() { - x.UsedBandwidth = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.UsedBandwidth, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NetworkIndex) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AvailNetworks = nil - } else { - if false { - } else { - h.decSlicePtrtoNetworkResource((*[]*NetworkResource)(&x.AvailNetworks), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AvailBandwidth = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.AvailBandwidth, d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UsedPorts = nil - } else { - if false { - } else { - h.decMapstringBitmap((*map[string]Bitmap)(&x.UsedPorts), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UsedBandwidth = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.UsedBandwidth, d) - } - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *DriverInfo) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Attributes == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Attributes, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Attributes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Attributes`) - } - r.WriteMapElemValue() - if x.Attributes == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Attributes, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Detected)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Detected\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Detected`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Detected)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Healthy)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Healthy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Healthy`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Healthy)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.UpdateTime) - } else if yyxt16 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt16 != nil { - z.EncExtension(x.UpdateTime, yyxt16) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.UpdateTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.UpdateTime) - } else { - z.EncFallback(x.UpdateTime) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UpdateTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UpdateTime`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.UpdateTime) - } else if yyxt17 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt17 != nil { - z.EncExtension(x.UpdateTime, yyxt17) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.UpdateTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.UpdateTime) - } else { - z.EncFallback(x.UpdateTime) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DriverInfo) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DriverInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Attributes": - if r.TryDecodeAsNil() { - x.Attributes = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Attributes, d) - } - } - case "Detected": - if r.TryDecodeAsNil() { - x.Detected = false - } else { - x.Detected = (bool)(r.DecodeBool()) - } - case "Healthy": - if r.TryDecodeAsNil() { - x.Healthy = false - } else { - x.Healthy = (bool)(r.DecodeBool()) - } - case "HealthDescription": - if r.TryDecodeAsNil() { - x.HealthDescription = "" - } else { - x.HealthDescription = (string)(r.DecodeString()) - } - case "UpdateTime": - if r.TryDecodeAsNil() { - x.UpdateTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.UpdateTime = r.DecodeTime() - } else if yyxt10 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt10 != nil { - z.DecExtension(x.UpdateTime, yyxt10) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.UpdateTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.UpdateTime) - } else { - z.DecFallback(&x.UpdateTime, false) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DriverInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Attributes = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Attributes, d) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Detected = false - } else { - x.Detected = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Healthy = false - } else { - x.Healthy = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthDescription = "" - } else { - x.HealthDescription = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UpdateTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.UpdateTime = r.DecodeTime() - } else if yyxt18 := z.Extension(z.I2Rtid(x.UpdateTime)); yyxt18 != nil { - z.DecExtension(x.UpdateTime, yyxt18) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.UpdateTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.UpdateTime) - } else { - z.DecFallback(&x.UpdateTime, false) - } - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *RaftServer) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.ID)); yyxt4 != nil { - z.EncExtension(x.ID, yyxt4) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { - z.EncExtension(x.ID, yyxt5) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Node))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Node)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Node\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Node`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Node))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Node)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.Address)); yyxt10 != nil { - z.EncExtension(x.Address, yyxt10) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Address\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Address`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.Address)); yyxt11 != nil { - z.EncExtension(x.Address, yyxt11) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Leader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Leader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Leader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Leader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Voter)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Voter\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Voter`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Voter)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RaftProtocol))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RaftProtocol)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RaftProtocol\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RaftProtocol`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RaftProtocol))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RaftProtocol)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RaftServer) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RaftServer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { - z.DecExtension(x.ID, yyxt5) - } else { - x.ID = (pkg2_raft.ServerID)(r.DecodeString()) - } - } - case "Node": - if r.TryDecodeAsNil() { - x.Node = "" - } else { - x.Node = (string)(r.DecodeString()) - } - case "Address": - if r.TryDecodeAsNil() { - x.Address = "" - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Address)); yyxt8 != nil { - z.DecExtension(x.Address, yyxt8) - } else { - x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) - } - } - case "Leader": - if r.TryDecodeAsNil() { - x.Leader = false - } else { - x.Leader = (bool)(r.DecodeBool()) - } - case "Voter": - if r.TryDecodeAsNil() { - x.Voter = false - } else { - x.Voter = (bool)(r.DecodeBool()) - } - case "RaftProtocol": - if r.TryDecodeAsNil() { - x.RaftProtocol = "" - } else { - x.RaftProtocol = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RaftServer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.ID)); yyxt14 != nil { - z.DecExtension(x.ID, yyxt14) - } else { - x.ID = (pkg2_raft.ServerID)(r.DecodeString()) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Node = "" - } else { - x.Node = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Address = "" - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.Address)); yyxt17 != nil { - z.DecExtension(x.Address, yyxt17) - } else { - x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Leader = false - } else { - x.Leader = (bool)(r.DecodeBool()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Voter = false - } else { - x.Voter = (bool)(r.DecodeBool()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RaftProtocol = "" - } else { - x.RaftProtocol = (string)(r.DecodeString()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *RaftConfigurationResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Servers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoRaftServer(([]*RaftServer)(x.Servers), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Servers\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Servers`) - } - r.WriteMapElemValue() - if x.Servers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoRaftServer(([]*RaftServer)(x.Servers), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RaftConfigurationResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RaftConfigurationResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Servers": - if r.TryDecodeAsNil() { - x.Servers = nil - } else { - if false { - } else { - h.decSlicePtrtoRaftServer((*[]*RaftServer)(&x.Servers), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RaftConfigurationResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Servers = nil - } else { - if false { - } else { - h.decSlicePtrtoRaftServer((*[]*RaftServer)(&x.Servers), d) - } - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *RaftPeerByAddressRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.Address)); yyxt4 != nil { - z.EncExtension(x.Address, yyxt4) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Address\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Address`) - } - r.WriteMapElemValue() - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Address)); yyxt5 != nil { - z.EncExtension(x.Address, yyxt5) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RaftPeerByAddressRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RaftPeerByAddressRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Address": - if r.TryDecodeAsNil() { - x.Address = "" - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Address)); yyxt5 != nil { - z.DecExtension(x.Address, yyxt5) - } else { - x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RaftPeerByAddressRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Address = "" - } else { - if false { - } else if yyxt12 := z.Extension(z.I2Rtid(x.Address)); yyxt12 != nil { - z.DecExtension(x.Address, yyxt12) - } else { - x.Address = (pkg2_raft.ServerAddress)(r.DecodeString()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *RaftPeerByIDRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.ID)); yyxt4 != nil { - z.EncExtension(x.ID, yyxt4) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { - z.EncExtension(x.ID, yyxt5) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RaftPeerByIDRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RaftPeerByIDRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.ID)); yyxt5 != nil { - z.DecExtension(x.ID, yyxt5) - } else { - x.ID = (pkg2_raft.ServerID)(r.DecodeString()) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RaftPeerByIDRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - if false { - } else if yyxt12 := z.Extension(z.I2Rtid(x.ID)); yyxt12 != nil { - z.DecExtension(x.ID, yyxt12) - } else { - x.ID = (pkg2_raft.ServerID)(r.DecodeString()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *AutopilotSetConfigRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Datacenter\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy7 := &x.Config - yy7.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Config\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) - } - r.WriteMapElemValue() - yy9 := &x.Config - yy9.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.CAS)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CAS\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CAS`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.CAS)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AutopilotSetConfigRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AutopilotSetConfigRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Datacenter": - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - case "Config": - if r.TryDecodeAsNil() { - x.Config = AutopilotConfig{} - } else { - x.Config.CodecDecodeSelf(d) - } - case "CAS": - if r.TryDecodeAsNil() { - x.CAS = false - } else { - x.CAS = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AutopilotSetConfigRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Config = AutopilotConfig{} - } else { - x.Config.CodecDecodeSelf(d) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CAS = false - } else { - x.CAS = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *AutopilotConfig) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.CleanupDeadServers)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CleanupDeadServers\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CleanupDeadServers`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.CleanupDeadServers)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt7 != nil { - z.EncExtension(x.ServerStabilizationTime, yyxt7) - } else { - r.EncodeInt(int64(x.ServerStabilizationTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ServerStabilizationTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ServerStabilizationTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt8 != nil { - z.EncExtension(x.ServerStabilizationTime, yyxt8) - } else { - r.EncodeInt(int64(x.ServerStabilizationTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt10 != nil { - z.EncExtension(x.LastContactThreshold, yyxt10) - } else { - r.EncodeInt(int64(x.LastContactThreshold)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContactThreshold\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContactThreshold`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt11 != nil { - z.EncExtension(x.LastContactThreshold, yyxt11) - } else { - r.EncodeInt(int64(x.LastContactThreshold)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MaxTrailingLogs)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxTrailingLogs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxTrailingLogs`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MaxTrailingLogs)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.EnableRedundancyZones)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EnableRedundancyZones\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EnableRedundancyZones`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.EnableRedundancyZones)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.DisableUpgradeMigration)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DisableUpgradeMigration\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DisableUpgradeMigration`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.DisableUpgradeMigration)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.EnableCustomUpgrades)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EnableCustomUpgrades\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EnableCustomUpgrades`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.EnableCustomUpgrades)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AutopilotConfig) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AutopilotConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "CleanupDeadServers": - if r.TryDecodeAsNil() { - x.CleanupDeadServers = false - } else { - x.CleanupDeadServers = (bool)(r.DecodeBool()) - } - case "ServerStabilizationTime": - if r.TryDecodeAsNil() { - x.ServerStabilizationTime = 0 - } else { - if false { - } else if yyxt6 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt6 != nil { - z.DecExtension(x.ServerStabilizationTime, yyxt6) - } else { - x.ServerStabilizationTime = (time.Duration)(r.DecodeInt64()) - } - } - case "LastContactThreshold": - if r.TryDecodeAsNil() { - x.LastContactThreshold = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt8 != nil { - z.DecExtension(x.LastContactThreshold, yyxt8) - } else { - x.LastContactThreshold = (time.Duration)(r.DecodeInt64()) - } - } - case "MaxTrailingLogs": - if r.TryDecodeAsNil() { - x.MaxTrailingLogs = 0 - } else { - x.MaxTrailingLogs = (uint64)(r.DecodeUint64()) - } - case "EnableRedundancyZones": - if r.TryDecodeAsNil() { - x.EnableRedundancyZones = false - } else { - x.EnableRedundancyZones = (bool)(r.DecodeBool()) - } - case "DisableUpgradeMigration": - if r.TryDecodeAsNil() { - x.DisableUpgradeMigration = false - } else { - x.DisableUpgradeMigration = (bool)(r.DecodeBool()) - } - case "EnableCustomUpgrades": - if r.TryDecodeAsNil() { - x.EnableCustomUpgrades = false - } else { - x.EnableCustomUpgrades = (bool)(r.DecodeBool()) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AutopilotConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CleanupDeadServers = false - } else { - x.CleanupDeadServers = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ServerStabilizationTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.ServerStabilizationTime)); yyxt18 != nil { - z.DecExtension(x.ServerStabilizationTime, yyxt18) - } else { - x.ServerStabilizationTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LastContactThreshold = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.LastContactThreshold)); yyxt20 != nil { - z.DecExtension(x.LastContactThreshold, yyxt20) - } else { - x.LastContactThreshold = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxTrailingLogs = 0 - } else { - x.MaxTrailingLogs = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EnableRedundancyZones = false - } else { - x.EnableRedundancyZones = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DisableUpgradeMigration = false - } else { - x.DisableUpgradeMigration = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EnableCustomUpgrades = false - } else { - x.EnableCustomUpgrades = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *SchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy4 := &x.PreemptionConfig - yy4.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptionConfig\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptionConfig`) - } - r.WriteMapElemValue() - yy6 := &x.PreemptionConfig - yy6.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SchedulerConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "PreemptionConfig": - if r.TryDecodeAsNil() { - x.PreemptionConfig = PreemptionConfig{} - } else { - x.PreemptionConfig.CodecDecodeSelf(d) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptionConfig = PreemptionConfig{} - } else { - x.PreemptionConfig.CodecDecodeSelf(d) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *SchedulerConfigurationResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.SchedulerConfig == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.SchedulerConfig == nil { - r.EncodeNil() - } else { - x.SchedulerConfig.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SchedulerConfig\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulerConfig`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.SchedulerConfig == nil { - r.EncodeNil() - } else { - x.SchedulerConfig.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SchedulerConfigurationResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SchedulerConfigurationResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "SchedulerConfig": - if r.TryDecodeAsNil() { - if true && x.SchedulerConfig != nil { - x.SchedulerConfig = nil - } - } else { - if x.SchedulerConfig == nil { - x.SchedulerConfig = new(SchedulerConfiguration) - } - - x.SchedulerConfig.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SchedulerConfigurationResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.SchedulerConfig != nil { - x.SchedulerConfig = nil - } - } else { - if x.SchedulerConfig == nil { - x.SchedulerConfig = new(SchedulerConfiguration) - } - - x.SchedulerConfig.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *SchedulerSetConfigurationResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Updated)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Updated\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Updated`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Updated)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SchedulerSetConfigurationResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SchedulerSetConfigurationResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Updated": - if r.TryDecodeAsNil() { - x.Updated = false - } else { - x.Updated = (bool)(r.DecodeBool()) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SchedulerSetConfigurationResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Updated = false - } else { - x.Updated = (bool)(r.DecodeBool()) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *PreemptionConfig) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.SystemSchedulerEnabled)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SystemSchedulerEnabled\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SystemSchedulerEnabled`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.SystemSchedulerEnabled)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.BatchSchedulerEnabled)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"BatchSchedulerEnabled\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `BatchSchedulerEnabled`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.BatchSchedulerEnabled)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.ServiceSchedulerEnabled)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ServiceSchedulerEnabled\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ServiceSchedulerEnabled`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.ServiceSchedulerEnabled)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PreemptionConfig) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PreemptionConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "SystemSchedulerEnabled": - if r.TryDecodeAsNil() { - x.SystemSchedulerEnabled = false - } else { - x.SystemSchedulerEnabled = (bool)(r.DecodeBool()) - } - case "BatchSchedulerEnabled": - if r.TryDecodeAsNil() { - x.BatchSchedulerEnabled = false - } else { - x.BatchSchedulerEnabled = (bool)(r.DecodeBool()) - } - case "ServiceSchedulerEnabled": - if r.TryDecodeAsNil() { - x.ServiceSchedulerEnabled = false - } else { - x.ServiceSchedulerEnabled = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PreemptionConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SystemSchedulerEnabled = false - } else { - x.SystemSchedulerEnabled = (bool)(r.DecodeBool()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.BatchSchedulerEnabled = false - } else { - x.BatchSchedulerEnabled = (bool)(r.DecodeBool()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ServiceSchedulerEnabled = false - } else { - x.ServiceSchedulerEnabled = (bool)(r.DecodeBool()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *SchedulerSetConfigRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy4 := &x.Config - yy4.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Config\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) - } - r.WriteMapElemValue() - yy6 := &x.Config - yy6.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.CAS)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CAS\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CAS`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.CAS)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SchedulerSetConfigRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SchedulerSetConfigRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Config": - if r.TryDecodeAsNil() { - x.Config = SchedulerConfiguration{} - } else { - x.Config.CodecDecodeSelf(d) - } - case "CAS": - if r.TryDecodeAsNil() { - x.CAS = false - } else { - x.CAS = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SchedulerSetConfigRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Config = SchedulerConfiguration{} - } else { - x.Config.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CAS = false - } else { - x.CAS = (bool)(r.DecodeBool()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ServiceCheck) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(18) - } else { - r.WriteMapStart(18) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Command))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Command)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Command\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Command`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Command))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Command)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Args == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Args, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Args\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Args`) - } - r.WriteMapElemValue() - if x.Args == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Args, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Path\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Path`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Protocol))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Protocol)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Protocol\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Protocol`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Protocol))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Protocol)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PortLabel\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PortLabel`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AddressMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AddressMode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt28 := z.Extension(z.I2Rtid(x.Interval)); yyxt28 != nil { - z.EncExtension(x.Interval, yyxt28) - } else { - r.EncodeInt(int64(x.Interval)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Interval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Interval`) - } - r.WriteMapElemValue() - if false { - } else if yyxt29 := z.Extension(z.I2Rtid(x.Interval)); yyxt29 != nil { - z.EncExtension(x.Interval, yyxt29) - } else { - r.EncodeInt(int64(x.Interval)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt31 := z.Extension(z.I2Rtid(x.Timeout)); yyxt31 != nil { - z.EncExtension(x.Timeout, yyxt31) - } else { - r.EncodeInt(int64(x.Timeout)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Timeout\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Timeout`) - } - r.WriteMapElemValue() - if false { - } else if yyxt32 := z.Extension(z.I2Rtid(x.Timeout)); yyxt32 != nil { - z.EncExtension(x.Timeout, yyxt32) - } else { - r.EncodeInt(int64(x.Timeout)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.InitialStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.InitialStatus)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"InitialStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `InitialStatus`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.InitialStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.InitialStatus)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.TLSSkipVerify)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TLSSkipVerify\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TLSSkipVerify`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.TLSSkipVerify)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Method\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Method`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Header == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicestring((map[string][]string)(x.Header), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Header\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Header`) - } - r.WriteMapElemValue() - if x.Header == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicestring((map[string][]string)(x.Header), e) - } - } - } - var yyn45 bool - if x.CheckRestart == nil { - yyn45 = true - goto LABEL45 - } - LABEL45: - if yyr2 || yy2arr2 { - if yyn45 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.CheckRestart == nil { - r.EncodeNil() - } else { - x.CheckRestart.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CheckRestart\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CheckRestart`) - } - r.WriteMapElemValue() - if yyn45 { - r.EncodeNil() - } else { - if x.CheckRestart == nil { - r.EncodeNil() - } else { - x.CheckRestart.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GRPCService))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GRPCService)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"GRPCService\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `GRPCService`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GRPCService))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GRPCService)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.GRPCUseTLS)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"GRPCUseTLS\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `GRPCUseTLS`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.GRPCUseTLS)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskName\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskName`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ServiceCheck) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ServiceCheck) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Command": - if r.TryDecodeAsNil() { - x.Command = "" - } else { - x.Command = (string)(r.DecodeString()) - } - case "Args": - if r.TryDecodeAsNil() { - x.Args = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Args, d) - } - } - case "Path": - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - case "Protocol": - if r.TryDecodeAsNil() { - x.Protocol = "" - } else { - x.Protocol = (string)(r.DecodeString()) - } - case "PortLabel": - if r.TryDecodeAsNil() { - x.PortLabel = "" - } else { - x.PortLabel = (string)(r.DecodeString()) - } - case "AddressMode": - if r.TryDecodeAsNil() { - x.AddressMode = "" - } else { - x.AddressMode = (string)(r.DecodeString()) - } - case "Interval": - if r.TryDecodeAsNil() { - x.Interval = 0 - } else { - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.Interval)); yyxt14 != nil { - z.DecExtension(x.Interval, yyxt14) - } else { - x.Interval = (time.Duration)(r.DecodeInt64()) - } - } - case "Timeout": - if r.TryDecodeAsNil() { - x.Timeout = 0 - } else { - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.Timeout)); yyxt16 != nil { - z.DecExtension(x.Timeout, yyxt16) - } else { - x.Timeout = (time.Duration)(r.DecodeInt64()) - } - } - case "InitialStatus": - if r.TryDecodeAsNil() { - x.InitialStatus = "" - } else { - x.InitialStatus = (string)(r.DecodeString()) - } - case "TLSSkipVerify": - if r.TryDecodeAsNil() { - x.TLSSkipVerify = false - } else { - x.TLSSkipVerify = (bool)(r.DecodeBool()) - } - case "Method": - if r.TryDecodeAsNil() { - x.Method = "" - } else { - x.Method = (string)(r.DecodeString()) - } - case "Header": - if r.TryDecodeAsNil() { - x.Header = nil - } else { - if false { - } else { - h.decMapstringSlicestring((*map[string][]string)(&x.Header), d) - } - } - case "CheckRestart": - if r.TryDecodeAsNil() { - if true && x.CheckRestart != nil { - x.CheckRestart = nil - } - } else { - if x.CheckRestart == nil { - x.CheckRestart = new(CheckRestart) - } - - x.CheckRestart.CodecDecodeSelf(d) - } - case "GRPCService": - if r.TryDecodeAsNil() { - x.GRPCService = "" - } else { - x.GRPCService = (string)(r.DecodeString()) - } - case "GRPCUseTLS": - if r.TryDecodeAsNil() { - x.GRPCUseTLS = false - } else { - x.GRPCUseTLS = (bool)(r.DecodeBool()) - } - case "TaskName": - if r.TryDecodeAsNil() { - x.TaskName = "" - } else { - x.TaskName = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ServiceCheck) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj26 int - var yyb26 bool - var yyhl26 bool = l >= 0 - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Command = "" - } else { - x.Command = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Args = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Args, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Protocol = "" - } else { - x.Protocol = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PortLabel = "" - } else { - x.PortLabel = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AddressMode = "" - } else { - x.AddressMode = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Interval = 0 - } else { - if false { - } else if yyxt37 := z.Extension(z.I2Rtid(x.Interval)); yyxt37 != nil { - z.DecExtension(x.Interval, yyxt37) - } else { - x.Interval = (time.Duration)(r.DecodeInt64()) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Timeout = 0 - } else { - if false { - } else if yyxt39 := z.Extension(z.I2Rtid(x.Timeout)); yyxt39 != nil { - z.DecExtension(x.Timeout, yyxt39) - } else { - x.Timeout = (time.Duration)(r.DecodeInt64()) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.InitialStatus = "" - } else { - x.InitialStatus = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TLSSkipVerify = false - } else { - x.TLSSkipVerify = (bool)(r.DecodeBool()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Method = "" - } else { - x.Method = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Header = nil - } else { - if false { - } else { - h.decMapstringSlicestring((*map[string][]string)(&x.Header), d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.CheckRestart != nil { - x.CheckRestart = nil - } - } else { - if x.CheckRestart == nil { - x.CheckRestart = new(CheckRestart) - } - - x.CheckRestart.CodecDecodeSelf(d) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.GRPCService = "" - } else { - x.GRPCService = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.GRPCUseTLS = false - } else { - x.GRPCUseTLS = (bool)(r.DecodeBool()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskName = "" - } else { - x.TaskName = (string)(r.DecodeString()) - } - for { - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj26-1, "") - } - r.ReadArrayEnd() -} - -func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PortLabel\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PortLabel`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PortLabel))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PortLabel)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AddressMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AddressMode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AddressMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AddressMode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Tags, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tags\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tags`) - } - r.WriteMapElemValue() - if x.Tags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Tags, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.CanaryTags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.CanaryTags, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CanaryTags\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CanaryTags`) - } - r.WriteMapElemValue() - if x.CanaryTags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.CanaryTags, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Checks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoServiceCheck(([]*ServiceCheck)(x.Checks), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Checks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Checks`) - } - r.WriteMapElemValue() - if x.Checks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoServiceCheck(([]*ServiceCheck)(x.Checks), e) - } - } - } - var yyn21 bool - if x.Connect == nil { - yyn21 = true - goto LABEL21 - } - LABEL21: - if yyr2 || yy2arr2 { - if yyn21 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Connect == nil { - r.EncodeNil() - } else { - x.Connect.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Connect\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Connect`) - } - r.WriteMapElemValue() - if yyn21 { - r.EncodeNil() - } else { - if x.Connect == nil { - r.EncodeNil() - } else { - x.Connect.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Meta\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) - } - r.WriteMapElemValue() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "PortLabel": - if r.TryDecodeAsNil() { - x.PortLabel = "" - } else { - x.PortLabel = (string)(r.DecodeString()) - } - case "AddressMode": - if r.TryDecodeAsNil() { - x.AddressMode = "" - } else { - x.AddressMode = (string)(r.DecodeString()) - } - case "Tags": - if r.TryDecodeAsNil() { - x.Tags = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Tags, d) - } - } - case "CanaryTags": - if r.TryDecodeAsNil() { - x.CanaryTags = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.CanaryTags, d) - } - } - case "Checks": - if r.TryDecodeAsNil() { - x.Checks = nil - } else { - if false { - } else { - h.decSlicePtrtoServiceCheck((*[]*ServiceCheck)(&x.Checks), d) - } - } - case "Connect": - if r.TryDecodeAsNil() { - if true && x.Connect != nil { - x.Connect = nil - } - } else { - if x.Connect == nil { - x.Connect = new(ConsulConnect) - } - - x.Connect.CodecDecodeSelf(d) - } - case "Meta": - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj16 int - var yyb16 bool - var yyhl16 bool = l >= 0 - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PortLabel = "" - } else { - x.PortLabel = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AddressMode = "" - } else { - x.AddressMode = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tags = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Tags, d) - } - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CanaryTags = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.CanaryTags, d) - } - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Checks = nil - } else { - if false { - } else { - h.decSlicePtrtoServiceCheck((*[]*ServiceCheck)(&x.Checks), d) - } - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Connect != nil { - x.Connect = nil - } - } else { - if x.Connect == nil { - x.Connect = new(ConsulConnect) - } - - x.Connect.CodecDecodeSelf(d) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - for { - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj16-1, "") - } - r.ReadArrayEnd() -} - -func (x *ConsulConnect) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Native)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Native\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Native`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Native)) - } - } - var yyn6 bool - if x.SidecarService == nil { - yyn6 = true - goto LABEL6 - } - LABEL6: - if yyr2 || yy2arr2 { - if yyn6 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.SidecarService == nil { - r.EncodeNil() - } else { - x.SidecarService.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SidecarService\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SidecarService`) - } - r.WriteMapElemValue() - if yyn6 { - r.EncodeNil() - } else { - if x.SidecarService == nil { - r.EncodeNil() - } else { - x.SidecarService.CodecEncodeSelf(e) - } - } - } - var yyn9 bool - if x.SidecarTask == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.SidecarTask == nil { - r.EncodeNil() - } else { - x.SidecarTask.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SidecarTask\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SidecarTask`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.SidecarTask == nil { - r.EncodeNil() - } else { - x.SidecarTask.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ConsulConnect) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ConsulConnect) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Native": - if r.TryDecodeAsNil() { - x.Native = false - } else { - x.Native = (bool)(r.DecodeBool()) - } - case "SidecarService": - if r.TryDecodeAsNil() { - if true && x.SidecarService != nil { - x.SidecarService = nil - } - } else { - if x.SidecarService == nil { - x.SidecarService = new(ConsulSidecarService) - } - - x.SidecarService.CodecDecodeSelf(d) - } - case "SidecarTask": - if r.TryDecodeAsNil() { - if true && x.SidecarTask != nil { - x.SidecarTask = nil - } - } else { - if x.SidecarTask == nil { - x.SidecarTask = new(SidecarTask) - } - - x.SidecarTask.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ConsulConnect) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Native = false - } else { - x.Native = (bool)(r.DecodeBool()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.SidecarService != nil { - x.SidecarService = nil - } - } else { - if x.SidecarService == nil { - x.SidecarService = new(ConsulSidecarService) - } - - x.SidecarService.CodecDecodeSelf(d) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.SidecarTask != nil { - x.SidecarTask = nil - } - } else { - if x.SidecarTask == nil { - x.SidecarTask = new(SidecarTask) - } - - x.SidecarTask.CodecDecodeSelf(d) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *ConsulSidecarService) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Tags, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tags\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tags`) - } - r.WriteMapElemValue() - if x.Tags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Tags, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Port))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Port)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Port\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Port`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Port))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Port)) - } - } - } - var yyn9 bool - if x.Proxy == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Proxy == nil { - r.EncodeNil() - } else { - x.Proxy.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Proxy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Proxy`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.Proxy == nil { - r.EncodeNil() - } else { - x.Proxy.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ConsulSidecarService) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ConsulSidecarService) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Tags": - if r.TryDecodeAsNil() { - x.Tags = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Tags, d) - } - } - case "Port": - if r.TryDecodeAsNil() { - x.Port = "" - } else { - x.Port = (string)(r.DecodeString()) - } - case "Proxy": - if r.TryDecodeAsNil() { - if true && x.Proxy != nil { - x.Proxy = nil - } - } else { - if x.Proxy == nil { - x.Proxy = new(ConsulProxy) - } - - x.Proxy.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ConsulSidecarService) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tags = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Tags, d) - } - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Port = "" - } else { - x.Port = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Proxy != nil { - x.Proxy = nil - } - } else { - if x.Proxy == nil { - x.Proxy = new(ConsulProxy) - } - - x.Proxy.CodecDecodeSelf(d) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *SidecarTask) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(11) - } else { - r.WriteMapStart(11) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Driver\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Driver`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.User))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"User\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `User`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.User))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Config == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntfV(x.Config, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Config\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) - } - r.WriteMapElemValue() - if x.Config == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntfV(x.Config, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Env == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Env, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Env\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Env`) - } - r.WriteMapElemValue() - if x.Env == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Env, e) - } - } - } - var yyn18 bool - if x.Resources == nil { - yyn18 = true - goto LABEL18 - } - LABEL18: - if yyr2 || yy2arr2 { - if yyn18 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Resources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) - } - r.WriteMapElemValue() - if yyn18 { - r.EncodeNil() - } else { - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Meta\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) - } - r.WriteMapElemValue() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } - var yyn24 bool - if x.KillTimeout == nil { - yyn24 = true - goto LABEL24 - } - LABEL24: - if yyr2 || yy2arr2 { - if yyn24 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.KillTimeout == nil { - r.EncodeNil() - } else { - yy25 := *x.KillTimeout - if false { - } else if yyxt26 := z.Extension(z.I2Rtid(yy25)); yyxt26 != nil { - z.EncExtension(yy25, yyxt26) - } else { - r.EncodeInt(int64(yy25)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KillTimeout\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KillTimeout`) - } - r.WriteMapElemValue() - if yyn24 { - r.EncodeNil() - } else { - if x.KillTimeout == nil { - r.EncodeNil() - } else { - yy27 := *x.KillTimeout - if false { - } else if yyxt28 := z.Extension(z.I2Rtid(yy27)); yyxt28 != nil { - z.EncExtension(yy27, yyxt28) - } else { - r.EncodeInt(int64(yy27)) - } - } - } - } - var yyn29 bool - if x.LogConfig == nil { - yyn29 = true - goto LABEL29 - } - LABEL29: - if yyr2 || yy2arr2 { - if yyn29 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.LogConfig == nil { - r.EncodeNil() - } else { - x.LogConfig.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LogConfig\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LogConfig`) - } - r.WriteMapElemValue() - if yyn29 { - r.EncodeNil() - } else { - if x.LogConfig == nil { - r.EncodeNil() - } else { - x.LogConfig.CodecEncodeSelf(e) - } - } - } - var yyn32 bool - if x.ShutdownDelay == nil { - yyn32 = true - goto LABEL32 - } - LABEL32: - if yyr2 || yy2arr2 { - if yyn32 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.ShutdownDelay == nil { - r.EncodeNil() - } else { - yy33 := *x.ShutdownDelay - if false { - } else if yyxt34 := z.Extension(z.I2Rtid(yy33)); yyxt34 != nil { - z.EncExtension(yy33, yyxt34) - } else { - r.EncodeInt(int64(yy33)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ShutdownDelay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ShutdownDelay`) - } - r.WriteMapElemValue() - if yyn32 { - r.EncodeNil() - } else { - if x.ShutdownDelay == nil { - r.EncodeNil() - } else { - yy35 := *x.ShutdownDelay - if false { - } else if yyxt36 := z.Extension(z.I2Rtid(yy35)); yyxt36 != nil { - z.EncExtension(yy35, yyxt36) - } else { - r.EncodeInt(int64(yy35)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KillSignal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KillSignal`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SidecarTask) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SidecarTask) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Driver": - if r.TryDecodeAsNil() { - x.Driver = "" - } else { - x.Driver = (string)(r.DecodeString()) - } - case "User": - if r.TryDecodeAsNil() { - x.User = "" - } else { - x.User = (string)(r.DecodeString()) - } - case "Config": - if r.TryDecodeAsNil() { - x.Config = nil - } else { - if false { - } else { - z.F.DecMapStringIntfX(&x.Config, d) - } - } - case "Env": - if r.TryDecodeAsNil() { - x.Env = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Env, d) - } - } - case "Resources": - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - case "Meta": - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - case "KillTimeout": - if r.TryDecodeAsNil() { - if true && x.KillTimeout != nil { - x.KillTimeout = nil - } - } else { - if x.KillTimeout == nil { - x.KillTimeout = new(time.Duration) - } - - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt15 != nil { - z.DecExtension(x.KillTimeout, yyxt15) - } else { - *x.KillTimeout = (time.Duration)(r.DecodeInt64()) - } - } - case "LogConfig": - if r.TryDecodeAsNil() { - if true && x.LogConfig != nil { - x.LogConfig = nil - } - } else { - if x.LogConfig == nil { - x.LogConfig = new(LogConfig) - } - - x.LogConfig.CodecDecodeSelf(d) - } - case "ShutdownDelay": - if r.TryDecodeAsNil() { - if true && x.ShutdownDelay != nil { - x.ShutdownDelay = nil - } - } else { - if x.ShutdownDelay == nil { - x.ShutdownDelay = new(time.Duration) - } - - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt18 != nil { - z.DecExtension(x.ShutdownDelay, yyxt18) - } else { - *x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) - } - } - case "KillSignal": - if r.TryDecodeAsNil() { - x.KillSignal = "" - } else { - x.KillSignal = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SidecarTask) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj20 int - var yyb20 bool - var yyhl20 bool = l >= 0 - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Driver = "" - } else { - x.Driver = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.User = "" - } else { - x.User = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Config = nil - } else { - if false { - } else { - z.F.DecMapStringIntfX(&x.Config, d) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Env = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Env, d) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.KillTimeout != nil { - x.KillTimeout = nil - } - } else { - if x.KillTimeout == nil { - x.KillTimeout = new(time.Duration) - } - - if false { - } else if yyxt32 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt32 != nil { - z.DecExtension(x.KillTimeout, yyxt32) - } else { - *x.KillTimeout = (time.Duration)(r.DecodeInt64()) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.LogConfig != nil { - x.LogConfig = nil - } - } else { - if x.LogConfig == nil { - x.LogConfig = new(LogConfig) - } - - x.LogConfig.CodecDecodeSelf(d) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.ShutdownDelay != nil { - x.ShutdownDelay = nil - } - } else { - if x.ShutdownDelay == nil { - x.ShutdownDelay = new(time.Duration) - } - - if false { - } else if yyxt35 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt35 != nil { - z.DecExtension(x.ShutdownDelay, yyxt35) - } else { - *x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KillSignal = "" - } else { - x.KillSignal = (string)(r.DecodeString()) - } - for { - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj20-1, "") - } - r.ReadArrayEnd() -} - -func (x *ConsulProxy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LocalServiceAddress))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LocalServiceAddress)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LocalServiceAddress\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LocalServiceAddress`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LocalServiceAddress))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LocalServiceAddress)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.LocalServicePort)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LocalServicePort\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LocalServicePort`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.LocalServicePort)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Upstreams == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSliceConsulUpstream(([]ConsulUpstream)(x.Upstreams), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Upstreams\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Upstreams`) - } - r.WriteMapElemValue() - if x.Upstreams == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSliceConsulUpstream(([]ConsulUpstream)(x.Upstreams), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Config == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntfV(x.Config, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Config\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) - } - r.WriteMapElemValue() - if x.Config == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntfV(x.Config, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ConsulProxy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ConsulProxy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "LocalServiceAddress": - if r.TryDecodeAsNil() { - x.LocalServiceAddress = "" - } else { - x.LocalServiceAddress = (string)(r.DecodeString()) - } - case "LocalServicePort": - if r.TryDecodeAsNil() { - x.LocalServicePort = 0 - } else { - x.LocalServicePort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Upstreams": - if r.TryDecodeAsNil() { - x.Upstreams = nil - } else { - if false { - } else { - h.decSliceConsulUpstream((*[]ConsulUpstream)(&x.Upstreams), d) - } - } - case "Config": - if r.TryDecodeAsNil() { - x.Config = nil - } else { - if false { - } else { - z.F.DecMapStringIntfX(&x.Config, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ConsulProxy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LocalServiceAddress = "" - } else { - x.LocalServiceAddress = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LocalServicePort = 0 - } else { - x.LocalServicePort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Upstreams = nil - } else { - if false { - } else { - h.decSliceConsulUpstream((*[]ConsulUpstream)(&x.Upstreams), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Config = nil - } else { - if false { - } else { - z.F.DecMapStringIntfX(&x.Config, d) - } - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ConsulUpstream) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DestinationName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestinationName)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DestinationName\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DestinationName`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DestinationName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestinationName)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.LocalBindPort)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LocalBindPort\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LocalBindPort`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.LocalBindPort)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ConsulUpstream) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ConsulUpstream) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DestinationName": - if r.TryDecodeAsNil() { - x.DestinationName = "" - } else { - x.DestinationName = (string)(r.DecodeString()) - } - case "LocalBindPort": - if r.TryDecodeAsNil() { - x.LocalBindPort = 0 - } else { - x.LocalBindPort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ConsulUpstream) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DestinationName = "" - } else { - x.DestinationName = (string)(r.DecodeString()) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LocalBindPort = 0 - } else { - x.LocalBindPort = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *StreamingRpcHeader) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Method\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Method`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Method))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Method)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *StreamingRpcHeader) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *StreamingRpcHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Method": - if r.TryDecodeAsNil() { - x.Method = "" - } else { - x.Method = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *StreamingRpcHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Method = "" - } else { - x.Method = (string)(r.DecodeString()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *StreamingRpcAck) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Error\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Error`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *StreamingRpcAck) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *StreamingRpcAck) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Error": - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *StreamingRpcAck) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = (string)(r.DecodeString()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *StreamingRpcRegistry) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(0) - } else { - r.WriteMapStart(0) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *StreamingRpcRegistry) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *StreamingRpcRegistry) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *StreamingRpcRegistry) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4 int - var yyb4 bool - var yyhl4 bool = l >= 0 - for { - yyj4++ - if yyhl4 { - yyb4 = yyj4 > l - } else { - yyb4 = r.CheckBreak() - } - if yyb4 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj4-1, "") - } - r.ReadArrayEnd() -} - -func (x MessageType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - r.EncodeUint(uint64(x)) - } -} - -func (x *MessageType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - *x = (MessageType)(z.C.UintV(r.DecodeUint64(), 8)) - } -} - -func (x Context) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x)) - } - } -} - -func (x *Context) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - *x = (Context)(r.DecodeString()) - } -} - -func (x *NamespacedID) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NamespacedID) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NamespacedID) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NamespacedID) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *InternalRpcInfo) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *InternalRpcInfo) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *InternalRpcInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Forwarded": - if r.TryDecodeAsNil() { - x.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *InternalRpcInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *QueryOptions) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *QueryOptions) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *QueryOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *QueryOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *WriteRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *WriteRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *WriteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *WriteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *QueryMeta) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.EncExtension(x.LastContact, yyxt7) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.EncExtension(x.LastContact, yyxt8) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *QueryMeta) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *QueryMeta) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Index": - if r.TryDecodeAsNil() { - x.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.LastContact = 0 - } else { - if false { - } else if yyxt6 := z.Extension(z.I2Rtid(x.LastContact)); yyxt6 != nil { - z.DecExtension(x.LastContact, yyxt6) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *QueryMeta) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LastContact = 0 - } else { - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.DecExtension(x.LastContact, yyxt11) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *WriteMeta) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *WriteMeta) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *WriteMeta) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Index": - if r.TryDecodeAsNil() { - x.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *WriteMeta) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeRegisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - var yyn3 bool - if x.Node == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Node == nil { - r.EncodeNil() - } else { - x.Node.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Node\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Node`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Node == nil { - r.EncodeNil() - } else { - x.Node.CodecEncodeSelf(e) - } - } - } - var yyn6 bool - if x.NodeEvent == nil { - yyn6 = true - goto LABEL6 - } - LABEL6: - if yyr2 || yy2arr2 { - if yyn6 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeEvent\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) - } - r.WriteMapElemValue() - if yyn6 { - r.EncodeNil() - } else { - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeRegisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeRegisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Node": - if r.TryDecodeAsNil() { - if true && x.Node != nil { - x.Node = nil - } - } else { - if x.Node == nil { - x.Node = new(Node) - } - - x.Node.CodecDecodeSelf(d) - } - case "NodeEvent": - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeRegisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Node != nil { - x.Node = nil - } - } else { - if x.Node == nil { - x.Node = new(Node) - } - - x.Node.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeBatchDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodeIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.NodeIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeIDs`) - } - r.WriteMapElemValue() - if x.NodeIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.NodeIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeBatchDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeBatchDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeIDs": - if r.TryDecodeAsNil() { - x.NodeIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.NodeIDs, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeBatchDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.NodeIDs, d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeServerInfo) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RPCAdvertiseAddr))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RPCAdvertiseAddr)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RPCAdvertiseAddr\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RPCAdvertiseAddr`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RPCAdvertiseAddr))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RPCAdvertiseAddr)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.RPCMajorVersion)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RPCMajorVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RPCMajorVersion`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.RPCMajorVersion)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.RPCMinorVersion)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RPCMinorVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RPCMinorVersion`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.RPCMinorVersion)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Datacenter\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeServerInfo) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeServerInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "RPCAdvertiseAddr": - if r.TryDecodeAsNil() { - x.RPCAdvertiseAddr = "" - } else { - x.RPCAdvertiseAddr = (string)(r.DecodeString()) - } - case "RPCMajorVersion": - if r.TryDecodeAsNil() { - x.RPCMajorVersion = 0 - } else { - x.RPCMajorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) - } - case "RPCMinorVersion": - if r.TryDecodeAsNil() { - x.RPCMinorVersion = 0 - } else { - x.RPCMinorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) - } - case "Datacenter": - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeServerInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RPCAdvertiseAddr = "" - } else { - x.RPCAdvertiseAddr = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RPCMajorVersion = 0 - } else { - x.RPCMajorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RPCMinorVersion = 0 - } else { - x.RPCMinorVersion = (int32)(z.C.IntV(r.DecodeInt64(), 32)) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeUpdateStatusRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - var yyn9 bool - if x.NodeEvent == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeEvent\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UpdatedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeUpdateStatusRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeUpdateStatusRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "NodeEvent": - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - case "UpdatedAt": - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeUpdateStatusRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeUpdateDrainRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - var yyn6 bool - if x.DrainStrategy == nil { - yyn6 = true - goto LABEL6 - } - LABEL6: - if yyr2 || yy2arr2 { - if yyn6 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.DrainStrategy == nil { - r.EncodeNil() - } else { - x.DrainStrategy.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DrainStrategy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DrainStrategy`) - } - r.WriteMapElemValue() - if yyn6 { - r.EncodeNil() - } else { - if x.DrainStrategy == nil { - r.EncodeNil() - } else { - x.DrainStrategy.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Drain)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Drain\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Drain`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Drain)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.MarkEligible)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MarkEligible\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MarkEligible`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.MarkEligible)) - } - } - var yyn15 bool - if x.NodeEvent == nil { - yyn15 = true - goto LABEL15 - } - LABEL15: - if yyr2 || yy2arr2 { - if yyn15 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeEvent\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) - } - r.WriteMapElemValue() - if yyn15 { - r.EncodeNil() - } else { - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UpdatedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeUpdateDrainRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeUpdateDrainRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "DrainStrategy": - if r.TryDecodeAsNil() { - if true && x.DrainStrategy != nil { - x.DrainStrategy = nil - } - } else { - if x.DrainStrategy == nil { - x.DrainStrategy = new(DrainStrategy) - } - - x.DrainStrategy.CodecDecodeSelf(d) - } - case "Drain": - if r.TryDecodeAsNil() { - x.Drain = false - } else { - x.Drain = (bool)(r.DecodeBool()) - } - case "MarkEligible": - if r.TryDecodeAsNil() { - x.MarkEligible = false - } else { - x.MarkEligible = (bool)(r.DecodeBool()) - } - case "NodeEvent": - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - case "UpdatedAt": - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeUpdateDrainRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DrainStrategy != nil { - x.DrainStrategy = nil - } - } else { - if x.DrainStrategy == nil { - x.DrainStrategy = new(DrainStrategy) - } - - x.DrainStrategy.CodecDecodeSelf(d) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Drain = false - } else { - x.Drain = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MarkEligible = false - } else { - x.MarkEligible = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *BatchNodeUpdateDrainRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Updates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDrainUpdate((map[string]*DrainUpdate)(x.Updates), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Updates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Updates`) - } - r.WriteMapElemValue() - if x.Updates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDrainUpdate((map[string]*DrainUpdate)(x.Updates), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodeEvents == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoNodeEvent((map[string]*NodeEvent)(x.NodeEvents), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeEvents\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvents`) - } - r.WriteMapElemValue() - if x.NodeEvents == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoNodeEvent((map[string]*NodeEvent)(x.NodeEvents), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UpdatedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *BatchNodeUpdateDrainRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *BatchNodeUpdateDrainRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Updates": - if r.TryDecodeAsNil() { - x.Updates = nil - } else { - if false { - } else { - h.decMapstringPtrtoDrainUpdate((*map[string]*DrainUpdate)(&x.Updates), d) - } - } - case "NodeEvents": - if r.TryDecodeAsNil() { - x.NodeEvents = nil - } else { - if false { - } else { - h.decMapstringPtrtoNodeEvent((*map[string]*NodeEvent)(&x.NodeEvents), d) - } - } - case "UpdatedAt": - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *BatchNodeUpdateDrainRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Updates = nil - } else { - if false { - } else { - h.decMapstringPtrtoDrainUpdate((*map[string]*DrainUpdate)(&x.Updates), d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeEvents = nil - } else { - if false { - } else { - h.decMapstringPtrtoNodeEvent((*map[string]*NodeEvent)(&x.NodeEvents), d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *DrainUpdate) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - var yyn3 bool - if x.DrainStrategy == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.DrainStrategy == nil { - r.EncodeNil() - } else { - x.DrainStrategy.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DrainStrategy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DrainStrategy`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.DrainStrategy == nil { - r.EncodeNil() - } else { - x.DrainStrategy.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.MarkEligible)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MarkEligible\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MarkEligible`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.MarkEligible)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DrainUpdate) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DrainUpdate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DrainStrategy": - if r.TryDecodeAsNil() { - if true && x.DrainStrategy != nil { - x.DrainStrategy = nil - } - } else { - if x.DrainStrategy == nil { - x.DrainStrategy = new(DrainStrategy) - } - - x.DrainStrategy.CodecDecodeSelf(d) - } - case "MarkEligible": - if r.TryDecodeAsNil() { - x.MarkEligible = false - } else { - x.MarkEligible = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DrainUpdate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DrainStrategy != nil { - x.DrainStrategy = nil - } - } else { - if x.DrainStrategy == nil { - x.DrainStrategy = new(DrainStrategy) - } - - x.DrainStrategy.CodecDecodeSelf(d) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MarkEligible = false - } else { - x.MarkEligible = (bool)(r.DecodeBool()) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeUpdateEligibilityRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Eligibility))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Eligibility)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Eligibility\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Eligibility`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Eligibility))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Eligibility)) - } - } - } - var yyn9 bool - if x.NodeEvent == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeEvent\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvent`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.NodeEvent == nil { - r.EncodeNil() - } else { - x.NodeEvent.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UpdatedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UpdatedAt`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.UpdatedAt)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeUpdateEligibilityRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeUpdateEligibilityRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "Eligibility": - if r.TryDecodeAsNil() { - x.Eligibility = "" - } else { - x.Eligibility = (string)(r.DecodeString()) - } - case "NodeEvent": - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - case "UpdatedAt": - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeUpdateEligibilityRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Eligibility = "" - } else { - x.Eligibility = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.NodeEvent != nil { - x.NodeEvent = nil - } - } else { - if x.NodeEvent == nil { - x.NodeEvent = new(NodeEvent) - } - - x.NodeEvent.CodecDecodeSelf(d) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UpdatedAt = 0 - } else { - x.UpdatedAt = (int64)(r.DecodeInt64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeEvaluateRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeEvaluateRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeEvaluateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeEvaluateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SecretID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "SecretID": - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *SearchResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Matches == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapContextSlicestring((map[Context][]string)(x.Matches), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Matches\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Matches`) - } - r.WriteMapElemValue() - if x.Matches == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapContextSlicestring((map[Context][]string)(x.Matches), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Truncations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapContextbool((map[Context]bool)(x.Truncations), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Truncations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Truncations`) - } - r.WriteMapElemValue() - if x.Truncations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapContextbool((map[Context]bool)(x.Truncations), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.EncExtension(x.LastContact, yyxt13) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { - z.EncExtension(x.LastContact, yyxt14) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SearchResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SearchResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Matches": - if r.TryDecodeAsNil() { - x.Matches = nil - } else { - if false { - } else { - h.decMapContextSlicestring((*map[Context][]string)(&x.Matches), d) - } - } - case "Truncations": - if r.TryDecodeAsNil() { - x.Truncations = nil - } else { - if false { - } else { - h.decMapContextbool((*map[Context]bool)(&x.Truncations), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.DecExtension(x.LastContact, yyxt10) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SearchResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Matches = nil - } else { - if false { - } else { - h.decMapContextSlicestring((*map[Context][]string)(&x.Matches), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Truncations = nil - } else { - if false { - } else { - h.decMapContextbool((*map[Context]bool)(&x.Truncations), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { - z.DecExtension(x.LastContact, yyxt19) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *SearchRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - x.Context.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Context\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Context`) - } - r.WriteMapElemValue() - x.Context.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SearchRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SearchRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Prefix": - if r.TryDecodeAsNil() { - x.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "Context": - if r.TryDecodeAsNil() { - x.Context = "" - } else { - x.Context.CodecDecodeSelf(d) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SearchRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Context = "" - } else { - x.Context.CodecDecodeSelf(d) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt21 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt21 != nil { - z.DecExtension(x.MaxQueryTime, yyxt21) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobRegisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - var yyn3 bool - if x.Job == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.EnforceIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EnforceIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EnforceIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.EnforceIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.PolicyOverride)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PolicyOverride\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PolicyOverride`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.PolicyOverride)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobRegisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobRegisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "EnforceIndex": - if r.TryDecodeAsNil() { - x.EnforceIndex = false - } else { - x.EnforceIndex = (bool)(r.DecodeBool()) - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - case "PolicyOverride": - if r.TryDecodeAsNil() { - x.PolicyOverride = false - } else { - x.PolicyOverride = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobRegisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EnforceIndex = false - } else { - x.EnforceIndex = (bool)(r.DecodeBool()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PolicyOverride = false - } else { - x.PolicyOverride = (bool)(r.DecodeBool()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Purge)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Purge\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Purge`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Purge)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Purge": - if r.TryDecodeAsNil() { - x.Purge = false - } else { - x.Purge = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Purge = false - } else { - x.Purge = (bool)(r.DecodeBool()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobBatchDeregisterRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Jobs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapNamespacedIDPtrtoJobDeregisterOptions((map[NamespacedID]*JobDeregisterOptions)(x.Jobs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Jobs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Jobs`) - } - r.WriteMapElemValue() - if x.Jobs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapNamespacedIDPtrtoJobDeregisterOptions((map[NamespacedID]*JobDeregisterOptions)(x.Jobs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) - } - r.WriteMapElemValue() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobBatchDeregisterRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobBatchDeregisterRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Jobs": - if r.TryDecodeAsNil() { - x.Jobs = nil - } else { - if false { - } else { - h.decMapNamespacedIDPtrtoJobDeregisterOptions((*map[NamespacedID]*JobDeregisterOptions)(&x.Jobs), d) - } - } - case "Evals": - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobBatchDeregisterRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Jobs = nil - } else { - if false { - } else { - h.decMapNamespacedIDPtrtoJobDeregisterOptions((*map[NamespacedID]*JobDeregisterOptions)(&x.Jobs), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobDeregisterOptions) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Purge)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Purge\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Purge`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Purge)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobDeregisterOptions) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobDeregisterOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Purge": - if r.TryDecodeAsNil() { - x.Purge = false - } else { - x.Purge = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobDeregisterOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Purge = false - } else { - x.Purge = (bool)(r.DecodeBool()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobEvaluateRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy7 := &x.EvalOptions - yy7.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalOptions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalOptions`) - } - r.WriteMapElemValue() - yy9 := &x.EvalOptions - yy9.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobEvaluateRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobEvaluateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "EvalOptions": - if r.TryDecodeAsNil() { - x.EvalOptions = EvalOptions{} - } else { - x.EvalOptions.CodecDecodeSelf(d) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobEvaluateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalOptions = EvalOptions{} - } else { - x.EvalOptions.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalOptions) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.ForceReschedule)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ForceReschedule\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ForceReschedule`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.ForceReschedule)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalOptions) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ForceReschedule": - if r.TryDecodeAsNil() { - x.ForceReschedule = false - } else { - x.ForceReschedule = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ForceReschedule = false - } else { - x.ForceReschedule = (bool)(r.DecodeBool()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.All)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"All\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `All`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.All)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "All": - if r.TryDecodeAsNil() { - x.All = false - } else { - x.All = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.All = false - } else { - x.All = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobPlanRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - var yyn3 bool - if x.Job == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Diff)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Diff\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Diff`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Diff)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.PolicyOverride)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PolicyOverride\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PolicyOverride`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.PolicyOverride)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobPlanRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobPlanRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "Diff": - if r.TryDecodeAsNil() { - x.Diff = false - } else { - x.Diff = (bool)(r.DecodeBool()) - } - case "PolicyOverride": - if r.TryDecodeAsNil() { - x.PolicyOverride = false - } else { - x.PolicyOverride = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobPlanRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Diff = false - } else { - x.Diff = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PolicyOverride = false - } else { - x.PolicyOverride = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobSummaryRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobSummaryRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobSummaryRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobSummaryRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobDispatchRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Payload == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Payload)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Payload\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Payload`) - } - r.WriteMapElemValue() - if x.Payload == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Payload)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Meta\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) - } - r.WriteMapElemValue() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobDispatchRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobDispatchRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Payload": - if r.TryDecodeAsNil() { - x.Payload = nil - } else { - if false { - } else { - x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) - } - } - case "Meta": - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobDispatchRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Payload = nil - } else { - if false { - } else { - x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobValidateRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - var yyn3 bool - if x.Job == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobValidateRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobValidateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobValidateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobRevertRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } - var yyn9 bool - if x.EnforcePriorVersion == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.EnforcePriorVersion == nil { - r.EncodeNil() - } else { - yy10 := *x.EnforcePriorVersion - if false { - } else { - r.EncodeUint(uint64(yy10)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EnforcePriorVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EnforcePriorVersion`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.EnforcePriorVersion == nil { - r.EncodeNil() - } else { - yy12 := *x.EnforcePriorVersion - if false { - } else { - r.EncodeUint(uint64(yy12)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"VaultToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `VaultToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobRevertRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobRevertRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "JobVersion": - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - case "EnforcePriorVersion": - if r.TryDecodeAsNil() { - if true && x.EnforcePriorVersion != nil { - x.EnforcePriorVersion = nil - } - } else { - if x.EnforcePriorVersion == nil { - x.EnforcePriorVersion = new(uint64) - } - - if false { - } else { - *x.EnforcePriorVersion = (uint64)(r.DecodeUint64()) - } - } - case "VaultToken": - if r.TryDecodeAsNil() { - x.VaultToken = "" - } else { - x.VaultToken = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobRevertRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.EnforcePriorVersion != nil { - x.EnforcePriorVersion = nil - } - } else { - if x.EnforcePriorVersion == nil { - x.EnforcePriorVersion = new(uint64) - } - - if false { - } else { - *x.EnforcePriorVersion = (uint64)(r.DecodeUint64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.VaultToken = "" - } else { - x.VaultToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobStabilityRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Stable)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Stable\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Stable`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Stable)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobStabilityRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobStabilityRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "JobVersion": - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - case "Stable": - if r.TryDecodeAsNil() { - x.Stable = false - } else { - x.Stable = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobStabilityRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Stable = false - } else { - x.Stable = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobStabilityResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobStabilityResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobStabilityResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobStabilityResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalUpdateRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) - } - r.WriteMapElemValue() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalUpdateRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalUpdateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Evals": - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - case "EvalToken": - if r.TryDecodeAsNil() { - x.EvalToken = "" - } else { - x.EvalToken = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalUpdateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalToken = "" - } else { - x.EvalToken = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Evals, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) - } - r.WriteMapElemValue() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Evals, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Allocs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) - } - r.WriteMapElemValue() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Allocs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Evals": - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Evals, d) - } - } - case "Allocs": - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Allocs, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Evals, d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Allocs, d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalAckRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Token\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalAckRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalAckRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "Token": - if r.TryDecodeAsNil() { - x.Token = "" - } else { - x.Token = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalAckRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Token = "" - } else { - x.Token = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalDequeueRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Schedulers == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Schedulers, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Schedulers\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Schedulers`) - } - r.WriteMapElemValue() - if x.Schedulers == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Schedulers, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.Timeout)); yyxt7 != nil { - z.EncExtension(x.Timeout, yyxt7) - } else { - r.EncodeInt(int64(x.Timeout)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Timeout\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Timeout`) - } - r.WriteMapElemValue() - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Timeout)); yyxt8 != nil { - z.EncExtension(x.Timeout, yyxt8) - } else { - r.EncodeInt(int64(x.Timeout)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.SchedulerVersion)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SchedulerVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulerVersion`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.SchedulerVersion)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalDequeueRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalDequeueRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Schedulers": - if r.TryDecodeAsNil() { - x.Schedulers = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Schedulers, d) - } - } - case "Timeout": - if r.TryDecodeAsNil() { - x.Timeout = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.Timeout)); yyxt7 != nil { - z.DecExtension(x.Timeout, yyxt7) - } else { - x.Timeout = (time.Duration)(r.DecodeInt64()) - } - } - case "SchedulerVersion": - if r.TryDecodeAsNil() { - x.SchedulerVersion = 0 - } else { - x.SchedulerVersion = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalDequeueRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Schedulers = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Schedulers, d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Timeout = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.Timeout)); yyxt17 != nil { - z.DecExtension(x.Timeout, yyxt17) - } else { - x.Timeout = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SchedulerVersion = 0 - } else { - x.SchedulerVersion = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *PlanRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - var yyn3 bool - if x.Plan == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Plan == nil { - r.EncodeNil() - } else { - x.Plan.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Plan\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Plan`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Plan == nil { - r.EncodeNil() - } else { - x.Plan.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PlanRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PlanRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Plan": - if r.TryDecodeAsNil() { - if true && x.Plan != nil { - x.Plan = nil - } - } else { - if x.Plan == nil { - x.Plan = new(Plan) - } - - x.Plan.CodecDecodeSelf(d) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PlanRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Plan != nil { - x.Plan = nil - } - } else { - if x.Plan == nil { - x.Plan = new(Plan) - } - - x.Plan.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *ApplyPlanResultsRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(15) - } else { - r.WriteMapStart(15) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Alloc == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Alloc\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Alloc`) - } - r.WriteMapElemValue() - if x.Alloc == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AllocsStopped == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocsStopped\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsStopped`) - } - r.WriteMapElemValue() - if x.AllocsStopped == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AllocsUpdated == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocsUpdated\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsUpdated`) - } - r.WriteMapElemValue() - if x.AllocsUpdated == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) - } - r.WriteMapElemValue() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } - var yyn15 bool - if x.AllocUpdateRequest.Job == nil { - yyn15 = true - goto LABEL15 - } - LABEL15: - if yyr2 || yy2arr2 { - if yyn15 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn15 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - var yyn30 bool - if x.Deployment == nil { - yyn30 = true - goto LABEL30 - } - LABEL30: - if yyr2 || yy2arr2 { - if yyn30 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deployment\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) - } - r.WriteMapElemValue() - if yyn30 { - r.EncodeNil() - } else { - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.DeploymentUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentUpdates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdates`) - } - r.WriteMapElemValue() - if x.DeploymentUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodePreemptions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.NodePreemptions), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodePreemptions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodePreemptions`) - } - r.WriteMapElemValue() - if x.NodePreemptions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.NodePreemptions), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AllocsPreempted == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsPreempted), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocsPreempted\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsPreempted`) - } - r.WriteMapElemValue() - if x.AllocsPreempted == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsPreempted), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.PreemptionEvals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.PreemptionEvals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptionEvals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptionEvals`) - } - r.WriteMapElemValue() - if x.PreemptionEvals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.PreemptionEvals), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ApplyPlanResultsRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ApplyPlanResultsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Alloc": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.Alloc = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) - } - } - case "AllocsStopped": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.AllocsStopped = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) - } - } - case "AllocsUpdated": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.AllocsUpdated = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) - } - } - case "Evals": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - case "Job": - if r.TryDecodeAsNil() { - if true && x.AllocUpdateRequest.Job != nil { - x.AllocUpdateRequest.Job = nil - } - } else { - if x.AllocUpdateRequest.Job == nil { - x.AllocUpdateRequest.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "Region": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - case "Deployment": - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - case "DeploymentUpdates": - if r.TryDecodeAsNil() { - x.DeploymentUpdates = nil - } else { - if false { - } else { - h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) - } - } - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "NodePreemptions": - if r.TryDecodeAsNil() { - x.NodePreemptions = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.NodePreemptions), d) - } - } - case "AllocsPreempted": - if r.TryDecodeAsNil() { - x.AllocsPreempted = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsPreempted), d) - } - } - case "PreemptionEvals": - if r.TryDecodeAsNil() { - x.PreemptionEvals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.PreemptionEvals), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ApplyPlanResultsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj27 int - var yyb27 bool - var yyhl27 bool = l >= 0 - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.Alloc = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) - } - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.AllocsStopped = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) - } - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.AllocsUpdated = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) - } - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.AllocUpdateRequest.Job != nil { - x.AllocUpdateRequest.Job = nil - } - } else { - if x.AllocUpdateRequest.Job == nil { - x.AllocUpdateRequest.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocUpdateRequest.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentUpdates = nil - } else { - if false { - } else { - h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) - } - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodePreemptions = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.NodePreemptions), d) - } - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocsPreempted = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsPreempted), d) - } - } - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptionEvals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.PreemptionEvals), d) - } - } - for { - yyj27++ - if yyhl27 { - yyb27 = yyj27 > l - } else { - yyb27 = r.CheckBreak() - } - if yyb27 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj27-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocUpdateRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Alloc == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Alloc\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Alloc`) - } - r.WriteMapElemValue() - if x.Alloc == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Alloc), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AllocsStopped == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocsStopped\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsStopped`) - } - r.WriteMapElemValue() - if x.AllocsStopped == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocationDiff(([]*AllocationDiff)(x.AllocsStopped), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AllocsUpdated == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocsUpdated\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocsUpdated`) - } - r.WriteMapElemValue() - if x.AllocsUpdated == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.AllocsUpdated), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) - } - r.WriteMapElemValue() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } - var yyn15 bool - if x.Job == nil { - yyn15 = true - goto LABEL15 - } - LABEL15: - if yyr2 || yy2arr2 { - if yyn15 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn15 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocUpdateRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocUpdateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Alloc": - if r.TryDecodeAsNil() { - x.Alloc = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) - } - } - case "AllocsStopped": - if r.TryDecodeAsNil() { - x.AllocsStopped = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) - } - } - case "AllocsUpdated": - if r.TryDecodeAsNil() { - x.AllocsUpdated = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) - } - } - case "Evals": - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocUpdateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj17 int - var yyb17 bool - var yyhl17 bool = l >= 0 - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Alloc = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Alloc), d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocsStopped = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocationDiff((*[]*AllocationDiff)(&x.AllocsStopped), d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocsUpdated = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.AllocsUpdated), d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj17-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocUpdateDesiredTransitionRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDesiredTransition((map[string]*DesiredTransition)(x.Allocs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) - } - r.WriteMapElemValue() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDesiredTransition((map[string]*DesiredTransition)(x.Allocs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evals`) - } - r.WriteMapElemValue() - if x.Evals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evals), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocUpdateDesiredTransitionRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocUpdateDesiredTransitionRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Allocs": - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - h.decMapstringPtrtoDesiredTransition((*map[string]*DesiredTransition)(&x.Allocs), d) - } - } - case "Evals": - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocUpdateDesiredTransitionRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - h.decMapstringPtrtoDesiredTransition((*map[string]*DesiredTransition)(&x.Allocs), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Evals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evals), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocStopRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocStopRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocStopRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocStopRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocStopResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocStopResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocStopResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocStopResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocSignalRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(11) - } else { - r.WriteMapStart(11) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Task\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Task`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Signal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Signal)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Signal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Signal`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Signal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Signal)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.EncExtension(x.MaxQueryTime, yyxt22) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt23 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt23 != nil { - z.EncExtension(x.MaxQueryTime, yyxt23) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocSignalRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocSignalRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Task": - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - case "Signal": - if r.TryDecodeAsNil() { - x.Signal = "" - } else { - x.Signal = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt11 != nil { - z.DecExtension(x.MaxQueryTime, yyxt11) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocSignalRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj16 int - var yyb16 bool - var yyhl16 bool = l >= 0 - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Signal = "" - } else { - x.Signal = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt24 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt24 != nil { - z.DecExtension(x.MaxQueryTime, yyxt24) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj16-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocsGetRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AllocIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.AllocIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocIDs`) - } - r.WriteMapElemValue() - if x.AllocIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.AllocIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocsGetRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocsGetRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocIDs": - if r.TryDecodeAsNil() { - x.AllocIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.AllocIDs, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocsGetRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.AllocIDs, d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocRestartRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskName\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskName`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskName)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocRestartRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocRestartRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "TaskName": - if r.TryDecodeAsNil() { - x.TaskName = "" - } else { - x.TaskName = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocRestartRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskName = "" - } else { - x.TaskName = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *PeriodicForceRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PeriodicForceRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PeriodicForceRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PeriodicForceRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *ServerMembersResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerName)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ServerName\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ServerName`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerName)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerRegion))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerRegion)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ServerRegion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ServerRegion`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerRegion))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerRegion)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerDC))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerDC)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ServerDC\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ServerDC`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ServerDC))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ServerDC)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Members == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoServerMember(([]*ServerMember)(x.Members), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Members\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Members`) - } - r.WriteMapElemValue() - if x.Members == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoServerMember(([]*ServerMember)(x.Members), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ServerMembersResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ServerMembersResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ServerName": - if r.TryDecodeAsNil() { - x.ServerName = "" - } else { - x.ServerName = (string)(r.DecodeString()) - } - case "ServerRegion": - if r.TryDecodeAsNil() { - x.ServerRegion = "" - } else { - x.ServerRegion = (string)(r.DecodeString()) - } - case "ServerDC": - if r.TryDecodeAsNil() { - x.ServerDC = "" - } else { - x.ServerDC = (string)(r.DecodeString()) - } - case "Members": - if r.TryDecodeAsNil() { - x.Members = nil - } else { - if false { - } else { - h.decSlicePtrtoServerMember((*[]*ServerMember)(&x.Members), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ServerMembersResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ServerName = "" - } else { - x.ServerName = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ServerRegion = "" - } else { - x.ServerRegion = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ServerDC = "" - } else { - x.ServerDC = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Members = nil - } else { - if false { - } else { - h.decSlicePtrtoServerMember((*[]*ServerMember)(&x.Members), d) - } - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *ServerMember) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(11) - } else { - r.WriteMapStart(11) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Addr == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.Addr)); yyxt7 != nil { - z.EncExtension(x.Addr, yyxt7) - } else if !z.EncBinary() { - z.EncTextMarshal(x.Addr) - } else { - h.encnet_IP((net.IP)(x.Addr), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Addr\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Addr`) - } - r.WriteMapElemValue() - if x.Addr == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Addr)); yyxt8 != nil { - z.EncExtension(x.Addr, yyxt8) - } else if !z.EncBinary() { - z.EncTextMarshal(x.Addr) - } else { - h.encnet_IP((net.IP)(x.Addr), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Port)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Port\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Port`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Port)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Tags, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tags\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tags`) - } - r.WriteMapElemValue() - if x.Tags == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Tags, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ProtocolMin)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ProtocolMin\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ProtocolMin`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ProtocolMin)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ProtocolMax)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ProtocolMax\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ProtocolMax`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ProtocolMax)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ProtocolCur)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ProtocolCur\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ProtocolCur`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ProtocolCur)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.DelegateMin)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DelegateMin\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DelegateMin`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.DelegateMin)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.DelegateMax)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DelegateMax\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DelegateMax`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.DelegateMax)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.DelegateCur)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DelegateCur\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DelegateCur`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.DelegateCur)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ServerMember) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ServerMember) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Addr": - if r.TryDecodeAsNil() { - x.Addr = nil - } else { - if false { - } else if yyxt6 := z.Extension(z.I2Rtid(x.Addr)); yyxt6 != nil { - z.DecExtension(x.Addr, yyxt6) - } else if !z.DecBinary() { - z.DecTextUnmarshal(&x.Addr) - } else { - h.decnet_IP((*net.IP)(&x.Addr), d) - } - } - case "Port": - if r.TryDecodeAsNil() { - x.Port = 0 - } else { - x.Port = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) - } - case "Tags": - if r.TryDecodeAsNil() { - x.Tags = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Tags, d) - } - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "ProtocolMin": - if r.TryDecodeAsNil() { - x.ProtocolMin = 0 - } else { - x.ProtocolMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - case "ProtocolMax": - if r.TryDecodeAsNil() { - x.ProtocolMax = 0 - } else { - x.ProtocolMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - case "ProtocolCur": - if r.TryDecodeAsNil() { - x.ProtocolCur = 0 - } else { - x.ProtocolCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - case "DelegateMin": - if r.TryDecodeAsNil() { - x.DelegateMin = 0 - } else { - x.DelegateMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - case "DelegateMax": - if r.TryDecodeAsNil() { - x.DelegateMax = 0 - } else { - x.DelegateMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - case "DelegateCur": - if r.TryDecodeAsNil() { - x.DelegateCur = 0 - } else { - x.DelegateCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ServerMember) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj17 int - var yyb17 bool - var yyhl17 bool = l >= 0 - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Addr = nil - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.Addr)); yyxt20 != nil { - z.DecExtension(x.Addr, yyxt20) - } else if !z.DecBinary() { - z.DecTextUnmarshal(&x.Addr) - } else { - h.decnet_IP((*net.IP)(&x.Addr), d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Port = 0 - } else { - x.Port = (uint16)(z.C.UintV(r.DecodeUint64(), 16)) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tags = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Tags, d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ProtocolMin = 0 - } else { - x.ProtocolMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ProtocolMax = 0 - } else { - x.ProtocolMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ProtocolCur = 0 - } else { - x.ProtocolCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DelegateMin = 0 - } else { - x.DelegateMin = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DelegateMax = 0 - } else { - x.DelegateMax = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DelegateCur = 0 - } else { - x.DelegateCur = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - for { - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj17-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeriveVaultTokenRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(12) - } else { - r.WriteMapStart(12) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SecretID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Tasks, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tasks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) - } - r.WriteMapElemValue() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Tasks, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt25 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt25 != nil { - z.EncExtension(x.MaxQueryTime, yyxt25) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt26 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt26 != nil { - z.EncExtension(x.MaxQueryTime, yyxt26) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeriveVaultTokenRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeriveVaultTokenRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "SecretID": - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Tasks": - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Tasks, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.DecExtension(x.MaxQueryTime, yyxt13) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeriveVaultTokenRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj18 int - var yyb18 bool - var yyhl18 bool = l >= 0 - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Tasks, d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt28 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt28 != nil { - z.DecExtension(x.MaxQueryTime, yyxt28) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj18-1, "") - } - r.ReadArrayEnd() -} - -func (x *VaultAccessorsRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Accessors == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoVaultAccessor(([]*VaultAccessor)(x.Accessors), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Accessors\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Accessors`) - } - r.WriteMapElemValue() - if x.Accessors == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoVaultAccessor(([]*VaultAccessor)(x.Accessors), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *VaultAccessorsRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *VaultAccessorsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Accessors": - if r.TryDecodeAsNil() { - x.Accessors = nil - } else { - if false { - } else { - h.decSlicePtrtoVaultAccessor((*[]*VaultAccessor)(&x.Accessors), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *VaultAccessorsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Accessors = nil - } else { - if false { - } else { - h.decSlicePtrtoVaultAccessor((*[]*VaultAccessor)(&x.Accessors), d) - } - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *VaultAccessor) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Task\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Task`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Task))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Task)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Accessor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Accessor)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Accessor\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Accessor`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Accessor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Accessor)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.CreationTTL)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreationTTL\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreationTTL`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CreationTTL)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *VaultAccessor) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *VaultAccessor) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AllocID": - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - case "Task": - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "Accessor": - if r.TryDecodeAsNil() { - x.Accessor = "" - } else { - x.Accessor = (string)(r.DecodeString()) - } - case "CreationTTL": - if r.TryDecodeAsNil() { - x.CreationTTL = 0 - } else { - x.CreationTTL = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *VaultAccessor) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocID = "" - } else { - x.AllocID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Task = "" - } else { - x.Task = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Accessor = "" - } else { - x.Accessor = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreationTTL = 0 - } else { - x.CreationTTL = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeriveVaultTokenResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Tasks, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tasks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) - } - r.WriteMapElemValue() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Tasks, e) - } - } - } - var yyn6 bool - if x.Error == nil { - yyn6 = true - goto LABEL6 - } - LABEL6: - if yyr2 || yy2arr2 { - if yyn6 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Error == nil { - r.EncodeNil() - } else { - x.Error.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Error\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Error`) - } - r.WriteMapElemValue() - if yyn6 { - r.EncodeNil() - } else { - if x.Error == nil { - r.EncodeNil() - } else { - x.Error.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.EncExtension(x.LastContact, yyxt13) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { - z.EncExtension(x.LastContact, yyxt14) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeriveVaultTokenResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeriveVaultTokenResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Tasks": - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Tasks, d) - } - } - case "Error": - if r.TryDecodeAsNil() { - if true && x.Error != nil { - x.Error = nil - } - } else { - if x.Error == nil { - x.Error = new(RecoverableError) - } - - x.Error.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { - z.DecExtension(x.LastContact, yyxt9) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeriveVaultTokenResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Tasks, d) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Error != nil { - x.Error = nil - } - } else { - if x.Error == nil { - x.Error = new(RecoverableError) - } - - x.Error.CodecDecodeSelf(d) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { - z.DecExtension(x.LastContact, yyxt17) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *GenericRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *GenericRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *GenericRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *GenericRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Deployments == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Deployments, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deployments\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deployments`) - } - r.WriteMapElemValue() - if x.Deployments == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Deployments, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Deployments": - if r.TryDecodeAsNil() { - x.Deployments = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Deployments, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Deployments = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Deployments, d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentStatusUpdateRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - var yyn3 bool - if x.Eval == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Eval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } - var yyn6 bool - if x.DeploymentUpdate == nil { - yyn6 = true - goto LABEL6 - } - LABEL6: - if yyr2 || yy2arr2 { - if yyn6 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.DeploymentUpdate == nil { - r.EncodeNil() - } else { - x.DeploymentUpdate.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentUpdate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdate`) - } - r.WriteMapElemValue() - if yyn6 { - r.EncodeNil() - } else { - if x.DeploymentUpdate == nil { - r.EncodeNil() - } else { - x.DeploymentUpdate.CodecEncodeSelf(e) - } - } - } - var yyn9 bool - if x.Job == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentStatusUpdateRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentStatusUpdateRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Eval": - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - case "DeploymentUpdate": - if r.TryDecodeAsNil() { - if true && x.DeploymentUpdate != nil { - x.DeploymentUpdate = nil - } - } else { - if x.DeploymentUpdate == nil { - x.DeploymentUpdate = new(DeploymentStatusUpdate) - } - - x.DeploymentUpdate.CodecDecodeSelf(d) - } - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentStatusUpdateRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DeploymentUpdate != nil { - x.DeploymentUpdate = nil - } - } else { - if x.DeploymentUpdate == nil { - x.DeploymentUpdate = new(DeploymentStatusUpdate) - } - - x.DeploymentUpdate.CodecDecodeSelf(d) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentAllocHealthRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.HealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.HealthyAllocationIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthyAllocationIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyAllocationIDs`) - } - r.WriteMapElemValue() - if x.HealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.HealthyAllocationIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.UnhealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UnhealthyAllocationIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UnhealthyAllocationIDs`) - } - r.WriteMapElemValue() - if x.UnhealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentAllocHealthRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentAllocHealthRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "HealthyAllocationIDs": - if r.TryDecodeAsNil() { - x.HealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) - } - } - case "UnhealthyAllocationIDs": - if r.TryDecodeAsNil() { - x.UnhealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentAllocHealthRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UnhealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *ApplyDeploymentAllocHealthRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(11) - } else { - r.WriteMapStart(11) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.HealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.HealthyAllocationIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthyAllocationIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyAllocationIDs`) - } - r.WriteMapElemValue() - if x.HealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.HealthyAllocationIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.UnhealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UnhealthyAllocationIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UnhealthyAllocationIDs`) - } - r.WriteMapElemValue() - if x.UnhealthyAllocationIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.UnhealthyAllocationIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Timestamp) - } else if yyxt25 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt25 != nil { - z.EncExtension(x.Timestamp, yyxt25) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Timestamp) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Timestamp) - } else { - z.EncFallback(x.Timestamp) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Timestamp\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Timestamp`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Timestamp) - } else if yyxt26 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt26 != nil { - z.EncExtension(x.Timestamp, yyxt26) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Timestamp) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Timestamp) - } else { - z.EncFallback(x.Timestamp) - } - } - var yyn27 bool - if x.DeploymentUpdate == nil { - yyn27 = true - goto LABEL27 - } - LABEL27: - if yyr2 || yy2arr2 { - if yyn27 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.DeploymentUpdate == nil { - r.EncodeNil() - } else { - x.DeploymentUpdate.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentUpdate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdate`) - } - r.WriteMapElemValue() - if yyn27 { - r.EncodeNil() - } else { - if x.DeploymentUpdate == nil { - r.EncodeNil() - } else { - x.DeploymentUpdate.CodecEncodeSelf(e) - } - } - } - var yyn30 bool - if x.Job == nil { - yyn30 = true - goto LABEL30 - } - LABEL30: - if yyr2 || yy2arr2 { - if yyn30 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn30 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - var yyn33 bool - if x.Eval == nil { - yyn33 = true - goto LABEL33 - } - LABEL33: - if yyr2 || yy2arr2 { - if yyn33 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Eval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) - } - r.WriteMapElemValue() - if yyn33 { - r.EncodeNil() - } else { - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ApplyDeploymentAllocHealthRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ApplyDeploymentAllocHealthRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "HealthyAllocationIDs": - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.HealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) - } - } - case "UnhealthyAllocationIDs": - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.UnhealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - case "Timestamp": - if r.TryDecodeAsNil() { - x.Timestamp = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Timestamp = r.DecodeTime() - } else if yyxt14 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt14 != nil { - z.DecExtension(x.Timestamp, yyxt14) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Timestamp) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Timestamp) - } else { - z.DecFallback(&x.Timestamp, false) - } - } - case "DeploymentUpdate": - if r.TryDecodeAsNil() { - if true && x.DeploymentUpdate != nil { - x.DeploymentUpdate = nil - } - } else { - if x.DeploymentUpdate == nil { - x.DeploymentUpdate = new(DeploymentStatusUpdate) - } - - x.DeploymentUpdate.CodecDecodeSelf(d) - } - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "Eval": - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ApplyDeploymentAllocHealthRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj18 int - var yyb18 bool - var yyhl18 bool = l >= 0 - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.HealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.HealthyAllocationIDs, d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.UnhealthyAllocationIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.UnhealthyAllocationIDs, d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentAllocHealthRequest.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Timestamp = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Timestamp = r.DecodeTime() - } else if yyxt29 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt29 != nil { - z.DecExtension(x.Timestamp, yyxt29) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Timestamp) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Timestamp) - } else { - z.DecFallback(&x.Timestamp, false) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DeploymentUpdate != nil { - x.DeploymentUpdate = nil - } - } else { - if x.DeploymentUpdate == nil { - x.DeploymentUpdate = new(DeploymentStatusUpdate) - } - - x.DeploymentUpdate.CodecDecodeSelf(d) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - for { - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj18-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentPromoteRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.All)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"All\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `All`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.All)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Groups == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Groups, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Groups\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Groups`) - } - r.WriteMapElemValue() - if x.Groups == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Groups, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentPromoteRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentPromoteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "All": - if r.TryDecodeAsNil() { - x.All = false - } else { - x.All = (bool)(r.DecodeBool()) - } - case "Groups": - if r.TryDecodeAsNil() { - x.Groups = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Groups, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentPromoteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.All = false - } else { - x.All = (bool)(r.DecodeBool()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Groups = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Groups, d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *ApplyDeploymentPromoteRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.All)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"All\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `All`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.All)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Groups == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Groups, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Groups\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Groups`) - } - r.WriteMapElemValue() - if x.Groups == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Groups, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - var yyn24 bool - if x.Eval == nil { - yyn24 = true - goto LABEL24 - } - LABEL24: - if yyr2 || yy2arr2 { - if yyn24 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Eval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) - } - r.WriteMapElemValue() - if yyn24 { - r.EncodeNil() - } else { - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ApplyDeploymentPromoteRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ApplyDeploymentPromoteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "All": - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.All = false - } else { - x.All = (bool)(r.DecodeBool()) - } - case "Groups": - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.Groups = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Groups, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - case "Eval": - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ApplyDeploymentPromoteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.All = false - } else { - x.All = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.Groups = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Groups, d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentPromoteRequest.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentPauseRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Pause)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Pause\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Pause`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Pause)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentPauseRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentPauseRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "Pause": - if r.TryDecodeAsNil() { - x.Pause = false - } else { - x.Pause = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentPauseRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Pause = false - } else { - x.Pause = (bool)(r.DecodeBool()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentFailRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentFailRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentFailRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentFailRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *SingleDeploymentResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Deployment == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deployment\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SingleDeploymentResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SingleDeploymentResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Deployment": - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SingleDeploymentResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *GenericResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *GenericResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *GenericResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *GenericResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *VersionResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Build))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Build)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Build\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Build`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Build))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Build)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Versions == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.Versions, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Versions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Versions`) - } - r.WriteMapElemValue() - if x.Versions == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.Versions, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.EncExtension(x.LastContact, yyxt13) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { - z.EncExtension(x.LastContact, yyxt14) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *VersionResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *VersionResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Build": - if r.TryDecodeAsNil() { - x.Build = "" - } else { - x.Build = (string)(r.DecodeString()) - } - case "Versions": - if r.TryDecodeAsNil() { - x.Versions = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.Versions, d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { - z.DecExtension(x.LastContact, yyxt9) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *VersionResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Build = "" - } else { - x.Build = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Versions = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.Versions, d) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { - z.DecExtension(x.LastContact, yyxt17) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobRegisterResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Warnings\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Warnings`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { - z.EncExtension(x.LastContact, yyxt19) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.LastContact)); yyxt20 != nil { - z.EncExtension(x.LastContact, yyxt20) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobRegisterResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobRegisterResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - case "Warnings": - if r.TryDecodeAsNil() { - x.Warnings = "" - } else { - x.Warnings = (string)(r.DecodeString()) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.DecExtension(x.LastContact, yyxt10) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobRegisterResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Warnings = "" - } else { - x.Warnings = (string)(r.DecodeString()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { - z.DecExtension(x.LastContact, yyxt19) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobDeregisterResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.LastContact)); yyxt16 != nil { - z.EncExtension(x.LastContact, yyxt16) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { - z.EncExtension(x.LastContact, yyxt17) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobDeregisterResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobDeregisterResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { - z.DecExtension(x.LastContact, yyxt9) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobDeregisterResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { - z.DecExtension(x.LastContact, yyxt17) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobBatchDeregisterResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.JobEvals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapNamespacedIDstring((map[NamespacedID]string)(x.JobEvals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobEvals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobEvals`) - } - r.WriteMapElemValue() - if x.JobEvals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapNamespacedIDstring((map[NamespacedID]string)(x.JobEvals), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobBatchDeregisterResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobBatchDeregisterResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobEvals": - if r.TryDecodeAsNil() { - x.JobEvals = nil - } else { - if false { - } else { - h.decMapNamespacedIDstring((*map[NamespacedID]string)(&x.JobEvals), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobBatchDeregisterResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobEvals = nil - } else { - if false { - } else { - h.decMapNamespacedIDstring((*map[NamespacedID]string)(&x.JobEvals), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobValidateResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.DriverConfigValidated)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DriverConfigValidated\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DriverConfigValidated`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.DriverConfigValidated)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.ValidationErrors == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.ValidationErrors, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ValidationErrors\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ValidationErrors`) - } - r.WriteMapElemValue() - if x.ValidationErrors == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.ValidationErrors, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Error\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Error`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Error))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Error)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Warnings\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Warnings`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobValidateResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobValidateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DriverConfigValidated": - if r.TryDecodeAsNil() { - x.DriverConfigValidated = false - } else { - x.DriverConfigValidated = (bool)(r.DecodeBool()) - } - case "ValidationErrors": - if r.TryDecodeAsNil() { - x.ValidationErrors = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.ValidationErrors, d) - } - } - case "Error": - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = (string)(r.DecodeString()) - } - case "Warnings": - if r.TryDecodeAsNil() { - x.Warnings = "" - } else { - x.Warnings = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobValidateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DriverConfigValidated = false - } else { - x.DriverConfigValidated = (bool)(r.DecodeBool()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ValidationErrors = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.ValidationErrors, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Warnings = "" - } else { - x.Warnings = (string)(r.DecodeString()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt4 != nil { - z.EncExtension(x.HeartbeatTTL, yyxt4) - } else { - r.EncodeInt(int64(x.HeartbeatTTL)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HeartbeatTTL\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HeartbeatTTL`) - } - r.WriteMapElemValue() - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt5 != nil { - z.EncExtension(x.HeartbeatTTL, yyxt5) - } else { - r.EncodeInt(int64(x.HeartbeatTTL)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.EvalIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.EvalIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalIDs`) - } - r.WriteMapElemValue() - if x.EvalIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.EvalIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderRPCAddr))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderRPCAddr)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LeaderRPCAddr\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LeaderRPCAddr`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderRPCAddr))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderRPCAddr)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.NumNodes)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NumNodes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NumNodes`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.NumNodes)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Servers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeServerInfo(([]*NodeServerInfo)(x.Servers), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Servers\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Servers`) - } - r.WriteMapElemValue() - if x.Servers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeServerInfo(([]*NodeServerInfo)(x.Servers), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt28 := z.Extension(z.I2Rtid(x.LastContact)); yyxt28 != nil { - z.EncExtension(x.LastContact, yyxt28) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt29 := z.Extension(z.I2Rtid(x.LastContact)); yyxt29 != nil { - z.EncExtension(x.LastContact, yyxt29) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "HeartbeatTTL": - if r.TryDecodeAsNil() { - x.HeartbeatTTL = 0 - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt5 != nil { - z.DecExtension(x.HeartbeatTTL, yyxt5) - } else { - x.HeartbeatTTL = (time.Duration)(r.DecodeInt64()) - } - } - case "EvalIDs": - if r.TryDecodeAsNil() { - x.EvalIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.EvalIDs, d) - } - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "NodeModifyIndex": - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - case "LeaderRPCAddr": - if r.TryDecodeAsNil() { - x.LeaderRPCAddr = "" - } else { - x.LeaderRPCAddr = (string)(r.DecodeString()) - } - case "NumNodes": - if r.TryDecodeAsNil() { - x.NumNodes = 0 - } else { - x.NumNodes = (int32)(z.C.IntV(r.DecodeInt64(), 32)) - } - case "Servers": - if r.TryDecodeAsNil() { - x.Servers = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeServerInfo((*[]*NodeServerInfo)(&x.Servers), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.LastContact)); yyxt16 != nil { - z.DecExtension(x.LastContact, yyxt16) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj18 int - var yyb18 bool - var yyhl18 bool = l >= 0 - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HeartbeatTTL = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.HeartbeatTTL)); yyxt20 != nil { - z.DecExtension(x.HeartbeatTTL, yyxt20) - } else { - x.HeartbeatTTL = (time.Duration)(r.DecodeInt64()) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.EvalIDs, d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LeaderRPCAddr = "" - } else { - x.LeaderRPCAddr = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NumNodes = 0 - } else { - x.NumNodes = (int32)(z.C.IntV(r.DecodeInt64(), 32)) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Servers = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeServerInfo((*[]*NodeServerInfo)(&x.Servers), d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt31 := z.Extension(z.I2Rtid(x.LastContact)); yyxt31 != nil { - z.DecExtension(x.LastContact, yyxt31) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj18-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeDrainUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.EvalIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.EvalIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalIDs`) - } - r.WriteMapElemValue() - if x.EvalIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.EvalIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeDrainUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeDrainUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeModifyIndex": - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - case "EvalIDs": - if r.TryDecodeAsNil() { - x.EvalIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.EvalIDs, d) - } - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeDrainUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.EvalIDs, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeEligibilityUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.EvalIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.EvalIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalIDs`) - } - r.WriteMapElemValue() - if x.EvalIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.EvalIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeEligibilityUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeEligibilityUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeModifyIndex": - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - case "EvalIDs": - if r.TryDecodeAsNil() { - x.EvalIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.EvalIDs, d) - } - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeEligibilityUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.EvalIDs, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeAllocsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) - } - r.WriteMapElemValue() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeAllocsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeAllocsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Allocs": - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeAllocsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeClientAllocsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringUint64V(x.Allocs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) - } - r.WriteMapElemValue() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringUint64V(x.Allocs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.MigrateTokens == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.MigrateTokens, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MigrateTokens\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MigrateTokens`) - } - r.WriteMapElemValue() - if x.MigrateTokens == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.MigrateTokens, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.EncExtension(x.LastContact, yyxt13) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { - z.EncExtension(x.LastContact, yyxt14) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeClientAllocsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeClientAllocsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Allocs": - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - z.F.DecMapStringUint64X(&x.Allocs, d) - } - } - case "MigrateTokens": - if r.TryDecodeAsNil() { - x.MigrateTokens = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.MigrateTokens, d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.DecExtension(x.LastContact, yyxt10) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeClientAllocsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - z.F.DecMapStringUint64X(&x.Allocs, d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MigrateTokens = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.MigrateTokens, d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { - z.DecExtension(x.LastContact, yyxt19) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *SingleNodeResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Node == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Node == nil { - r.EncodeNil() - } else { - x.Node.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Node\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Node`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Node == nil { - r.EncodeNil() - } else { - x.Node.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SingleNodeResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SingleNodeResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Node": - if r.TryDecodeAsNil() { - if true && x.Node != nil { - x.Node = nil - } - } else { - if x.Node == nil { - x.Node = new(Node) - } - - x.Node.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SingleNodeResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Node != nil { - x.Node = nil - } - } else { - if x.Node == nil { - x.Node = new(Node) - } - - x.Node.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Nodes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeListStub(([]*NodeListStub)(x.Nodes), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Nodes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Nodes`) - } - r.WriteMapElemValue() - if x.Nodes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeListStub(([]*NodeListStub)(x.Nodes), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Nodes": - if r.TryDecodeAsNil() { - x.Nodes = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeListStub((*[]*NodeListStub)(&x.Nodes), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Nodes = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeListStub((*[]*NodeListStub)(&x.Nodes), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *SingleJobResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Job == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SingleJobResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SingleJobResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SingleJobResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobSummaryResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.JobSummary == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.JobSummary == nil { - r.EncodeNil() - } else { - x.JobSummary.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobSummary\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobSummary`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.JobSummary == nil { - r.EncodeNil() - } else { - x.JobSummary.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobSummaryResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobSummaryResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobSummary": - if r.TryDecodeAsNil() { - if true && x.JobSummary != nil { - x.JobSummary = nil - } - } else { - if x.JobSummary == nil { - x.JobSummary = new(JobSummary) - } - - x.JobSummary.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobSummaryResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.JobSummary != nil { - x.JobSummary = nil - } - } else { - if x.JobSummary == nil { - x.JobSummary = new(JobSummary) - } - - x.JobSummary.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobDispatchResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DispatchedJobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DispatchedJobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DispatchedJobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DispatchedJobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DispatchedJobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DispatchedJobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobDispatchResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobDispatchResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DispatchedJobID": - if r.TryDecodeAsNil() { - x.DispatchedJobID = "" - } else { - x.DispatchedJobID = (string)(r.DecodeString()) - } - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "JobCreateIndex": - if r.TryDecodeAsNil() { - x.JobCreateIndex = 0 - } else { - x.JobCreateIndex = (uint64)(r.DecodeUint64()) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobDispatchResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DispatchedJobID = "" - } else { - x.DispatchedJobID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobCreateIndex = 0 - } else { - x.JobCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Jobs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoJobListStub(([]*JobListStub)(x.Jobs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Jobs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Jobs`) - } - r.WriteMapElemValue() - if x.Jobs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoJobListStub(([]*JobListStub)(x.Jobs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Jobs": - if r.TryDecodeAsNil() { - x.Jobs = nil - } else { - if false { - } else { - h.decSlicePtrtoJobListStub((*[]*JobListStub)(&x.Jobs), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Jobs = nil - } else { - if false { - } else { - h.decSlicePtrtoJobListStub((*[]*JobListStub)(&x.Jobs), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobVersionsRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Diffs)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Diffs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Diffs`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Diffs)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt19 != nil { - z.EncExtension(x.MaxQueryTime, yyxt19) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.EncExtension(x.MaxQueryTime, yyxt20) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobVersionsRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobVersionsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Diffs": - if r.TryDecodeAsNil() { - x.Diffs = false - } else { - x.Diffs = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobVersionsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Diffs = false - } else { - x.Diffs = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobVersionsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Versions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoJob(([]*Job)(x.Versions), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Versions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Versions`) - } - r.WriteMapElemValue() - if x.Versions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoJob(([]*Job)(x.Versions), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Diffs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoJobDiff(([]*JobDiff)(x.Diffs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Diffs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Diffs`) - } - r.WriteMapElemValue() - if x.Diffs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoJobDiff(([]*JobDiff)(x.Diffs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.EncExtension(x.LastContact, yyxt13) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { - z.EncExtension(x.LastContact, yyxt14) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobVersionsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobVersionsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Versions": - if r.TryDecodeAsNil() { - x.Versions = nil - } else { - if false { - } else { - h.decSlicePtrtoJob((*[]*Job)(&x.Versions), d) - } - } - case "Diffs": - if r.TryDecodeAsNil() { - x.Diffs = nil - } else { - if false { - } else { - h.decSlicePtrtoJobDiff((*[]*JobDiff)(&x.Diffs), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.DecExtension(x.LastContact, yyxt10) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobVersionsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Versions = nil - } else { - if false { - } else { - h.decSlicePtrtoJob((*[]*Job)(&x.Versions), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Diffs = nil - } else { - if false { - } else { - h.decSlicePtrtoJobDiff((*[]*JobDiff)(&x.Diffs), d) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.LastContact)); yyxt19 != nil { - z.DecExtension(x.LastContact, yyxt19) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobPlanResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - var yyn3 bool - if x.Annotations == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Annotations == nil { - r.EncodeNil() - } else { - x.Annotations.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Annotations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Annotations == nil { - r.EncodeNil() - } else { - x.Annotations.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.FailedTGAllocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FailedTGAllocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FailedTGAllocs`) - } - r.WriteMapElemValue() - if x.FailedTGAllocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.CreatedEvals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.CreatedEvals), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreatedEvals\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreatedEvals`) - } - r.WriteMapElemValue() - if x.CreatedEvals == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.CreatedEvals), e) - } - } - } - var yyn15 bool - if x.Diff == nil { - yyn15 = true - goto LABEL15 - } - LABEL15: - if yyr2 || yy2arr2 { - if yyn15 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Diff == nil { - r.EncodeNil() - } else { - x.Diff.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Diff\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Diff`) - } - r.WriteMapElemValue() - if yyn15 { - r.EncodeNil() - } else { - if x.Diff == nil { - r.EncodeNil() - } else { - x.Diff.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.NextPeriodicLaunch) - } else if yyxt19 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt19 != nil { - z.EncExtension(x.NextPeriodicLaunch, yyxt19) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.NextPeriodicLaunch) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.NextPeriodicLaunch) - } else { - z.EncFallback(x.NextPeriodicLaunch) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NextPeriodicLaunch\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NextPeriodicLaunch`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.NextPeriodicLaunch) - } else if yyxt20 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt20 != nil { - z.EncExtension(x.NextPeriodicLaunch, yyxt20) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.NextPeriodicLaunch) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.NextPeriodicLaunch) - } else { - z.EncFallback(x.NextPeriodicLaunch) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Warnings\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Warnings`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Warnings))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Warnings)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobPlanResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobPlanResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Annotations": - if r.TryDecodeAsNil() { - if true && x.Annotations != nil { - x.Annotations = nil - } - } else { - if x.Annotations == nil { - x.Annotations = new(PlanAnnotations) - } - - x.Annotations.CodecDecodeSelf(d) - } - case "FailedTGAllocs": - if r.TryDecodeAsNil() { - x.FailedTGAllocs = nil - } else { - if false { - } else { - h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) - } - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - case "CreatedEvals": - if r.TryDecodeAsNil() { - x.CreatedEvals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.CreatedEvals), d) - } - } - case "Diff": - if r.TryDecodeAsNil() { - if true && x.Diff != nil { - x.Diff = nil - } - } else { - if x.Diff == nil { - x.Diff = new(JobDiff) - } - - x.Diff.CodecDecodeSelf(d) - } - case "NextPeriodicLaunch": - if r.TryDecodeAsNil() { - x.NextPeriodicLaunch = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.NextPeriodicLaunch = r.DecodeTime() - } else if yyxt12 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt12 != nil { - z.DecExtension(x.NextPeriodicLaunch, yyxt12) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.NextPeriodicLaunch) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.NextPeriodicLaunch) - } else { - z.DecFallback(&x.NextPeriodicLaunch, false) - } - } - case "Warnings": - if r.TryDecodeAsNil() { - x.Warnings = "" - } else { - x.Warnings = (string)(r.DecodeString()) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobPlanResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Annotations != nil { - x.Annotations = nil - } - } else { - if x.Annotations == nil { - x.Annotations = new(PlanAnnotations) - } - - x.Annotations.CodecDecodeSelf(d) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FailedTGAllocs = nil - } else { - if false { - } else { - h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreatedEvals = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.CreatedEvals), d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Diff != nil { - x.Diff = nil - } - } else { - if x.Diff == nil { - x.Diff = new(JobDiff) - } - - x.Diff.CodecDecodeSelf(d) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NextPeriodicLaunch = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.NextPeriodicLaunch = r.DecodeTime() - } else if yyxt24 := z.Extension(z.I2Rtid(x.NextPeriodicLaunch)); yyxt24 != nil { - z.DecExtension(x.NextPeriodicLaunch, yyxt24) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.NextPeriodicLaunch) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.NextPeriodicLaunch) - } else { - z.DecFallback(&x.NextPeriodicLaunch, false) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Warnings = "" - } else { - x.Warnings = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *SingleAllocResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Alloc == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Alloc == nil { - r.EncodeNil() - } else { - x.Alloc.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Alloc\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Alloc`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Alloc == nil { - r.EncodeNil() - } else { - x.Alloc.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SingleAllocResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SingleAllocResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Alloc": - if r.TryDecodeAsNil() { - if true && x.Alloc != nil { - x.Alloc = nil - } - } else { - if x.Alloc == nil { - x.Alloc = new(Allocation) - } - - x.Alloc.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SingleAllocResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Alloc != nil { - x.Alloc = nil - } - } else { - if x.Alloc == nil { - x.Alloc = new(Allocation) - } - - x.Alloc.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocsGetResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocs`) - } - r.WriteMapElemValue() - if x.Allocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(x.Allocs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocsGetResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocsGetResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Allocs": - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocsGetResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocs = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&x.Allocs), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobAllocationsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocations`) - } - r.WriteMapElemValue() - if x.Allocations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobAllocationsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobAllocationsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Allocations": - if r.TryDecodeAsNil() { - x.Allocations = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobAllocationsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocations = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobEvaluationsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evaluations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evaluations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evaluations`) - } - r.WriteMapElemValue() - if x.Evaluations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobEvaluationsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobEvaluationsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Evaluations": - if r.TryDecodeAsNil() { - x.Evaluations = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobEvaluationsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Evaluations = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *SingleEvalResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Eval == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Eval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SingleEvalResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SingleEvalResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Eval": - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SingleEvalResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalDequeueResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - var yyn3 bool - if x.Eval == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Eval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Eval`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Eval == nil { - r.EncodeNil() - } else { - x.Eval.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Token\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Token))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Token)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.WaitIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"WaitIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `WaitIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.WaitIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.LastContact)); yyxt16 != nil { - z.EncExtension(x.LastContact, yyxt16) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { - z.EncExtension(x.LastContact, yyxt17) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalDequeueResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalDequeueResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Eval": - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - case "Token": - if r.TryDecodeAsNil() { - x.Token = "" - } else { - x.Token = (string)(r.DecodeString()) - } - case "WaitIndex": - if r.TryDecodeAsNil() { - x.WaitIndex = 0 - } else { - x.WaitIndex = (uint64)(r.DecodeUint64()) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { - z.DecExtension(x.LastContact, yyxt9) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalDequeueResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Eval != nil { - x.Eval = nil - } - } else { - if x.Eval == nil { - x.Eval = new(Evaluation) - } - - x.Eval.CodecDecodeSelf(d) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Token = "" - } else { - x.Token = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WaitIndex = 0 - } else { - x.WaitIndex = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { - z.DecExtension(x.LastContact, yyxt17) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *PlanResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - var yyn3 bool - if x.Result == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Result == nil { - r.EncodeNil() - } else { - x.Result.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Result\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Result`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Result == nil { - r.EncodeNil() - } else { - x.Result.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PlanResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PlanResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Result": - if r.TryDecodeAsNil() { - if true && x.Result != nil { - x.Result = nil - } - } else { - if x.Result == nil { - x.Result = new(PlanResult) - } - - x.Result.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PlanResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Result != nil { - x.Result = nil - } - } else { - if x.Result == nil { - x.Result = new(PlanResult) - } - - x.Result.CodecDecodeSelf(d) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocations`) - } - r.WriteMapElemValue() - if x.Allocations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Allocations": - if r.TryDecodeAsNil() { - x.Allocations = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocations = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Deployments == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeployment(([]*Deployment)(x.Deployments), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deployments\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deployments`) - } - r.WriteMapElemValue() - if x.Deployments == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeployment(([]*Deployment)(x.Deployments), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Deployments": - if r.TryDecodeAsNil() { - x.Deployments = nil - } else { - if false { - } else { - h.decSlicePtrtoDeployment((*[]*Deployment)(&x.Deployments), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Deployments = nil - } else { - if false { - } else { - h.decSlicePtrtoDeployment((*[]*Deployment)(&x.Deployments), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Evaluations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Evaluations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Evaluations`) - } - r.WriteMapElemValue() - if x.Evaluations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoEvaluation(([]*Evaluation)(x.Evaluations), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Evaluations": - if r.TryDecodeAsNil() { - x.Evaluations = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Evaluations = nil - } else { - if false { - } else { - h.decSlicePtrtoEvaluation((*[]*Evaluation)(&x.Evaluations), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *EvalAllocationsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Allocations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Allocations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Allocations`) - } - r.WriteMapElemValue() - if x.Allocations == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.Allocations), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EvalAllocationsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EvalAllocationsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Allocations": - if r.TryDecodeAsNil() { - x.Allocations = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EvalAllocationsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Allocations = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.Allocations), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *PeriodicForceResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PeriodicForceResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PeriodicForceResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PeriodicForceResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentUpdateResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.EvalCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.DeploymentModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.DeploymentModifyIndex)) - } - } - var yyn12 bool - if x.RevertedJobVersion == nil { - yyn12 = true - goto LABEL12 - } - LABEL12: - if yyr2 || yy2arr2 { - if yyn12 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.RevertedJobVersion == nil { - r.EncodeNil() - } else { - yy13 := *x.RevertedJobVersion - if false { - } else { - r.EncodeUint(uint64(yy13)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RevertedJobVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RevertedJobVersion`) - } - r.WriteMapElemValue() - if yyn12 { - r.EncodeNil() - } else { - if x.RevertedJobVersion == nil { - r.EncodeNil() - } else { - yy15 := *x.RevertedJobVersion - if false { - } else { - r.EncodeUint(uint64(yy15)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentUpdateResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentUpdateResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "EvalCreateIndex": - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - case "DeploymentModifyIndex": - if r.TryDecodeAsNil() { - x.DeploymentModifyIndex = 0 - } else { - x.DeploymentModifyIndex = (uint64)(r.DecodeUint64()) - } - case "RevertedJobVersion": - if r.TryDecodeAsNil() { - if true && x.RevertedJobVersion != nil { - x.RevertedJobVersion = nil - } - } else { - if x.RevertedJobVersion == nil { - x.RevertedJobVersion = new(uint64) - } - - if false { - } else { - *x.RevertedJobVersion = (uint64)(r.DecodeUint64()) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentUpdateResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalCreateIndex = 0 - } else { - x.EvalCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentModifyIndex = 0 - } else { - x.DeploymentModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.RevertedJobVersion != nil { - x.RevertedJobVersion = nil - } - } else { - if x.RevertedJobVersion == nil { - x.RevertedJobVersion = new(uint64) - } - - if false { - } else { - *x.RevertedJobVersion = (uint64)(r.DecodeUint64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeConnQueryResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Connected)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Connected\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Connected`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Connected)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Established) - } else if yyxt7 := z.Extension(z.I2Rtid(x.Established)); yyxt7 != nil { - z.EncExtension(x.Established, yyxt7) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Established) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Established) - } else { - z.EncFallback(x.Established) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Established\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Established`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Established) - } else if yyxt8 := z.Extension(z.I2Rtid(x.Established)); yyxt8 != nil { - z.EncExtension(x.Established, yyxt8) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Established) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Established) - } else { - z.EncFallback(x.Established) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.EncExtension(x.LastContact, yyxt13) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.LastContact)); yyxt14 != nil { - z.EncExtension(x.LastContact, yyxt14) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeConnQueryResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeConnQueryResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Connected": - if r.TryDecodeAsNil() { - x.Connected = false - } else { - x.Connected = (bool)(r.DecodeBool()) - } - case "Established": - if r.TryDecodeAsNil() { - x.Established = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Established = r.DecodeTime() - } else if yyxt6 := z.Extension(z.I2Rtid(x.Established)); yyxt6 != nil { - z.DecExtension(x.Established, yyxt6) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Established) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Established) - } else { - z.DecFallback(&x.Established, false) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.LastContact)); yyxt9 != nil { - z.DecExtension(x.LastContact, yyxt9) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeConnQueryResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Connected = false - } else { - x.Connected = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Established = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Established = r.DecodeTime() - } else if yyxt14 := z.Extension(z.I2Rtid(x.Established)); yyxt14 != nil { - z.DecExtension(x.Established, yyxt14) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Established) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Established) - } else { - z.DecFallback(&x.Established, false) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.LastContact)); yyxt17 != nil { - z.DecExtension(x.LastContact, yyxt17) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *EmitNodeEventsRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodeEvents == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoNodeEvent((map[string][]*NodeEvent)(x.NodeEvents), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeEvents\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeEvents`) - } - r.WriteMapElemValue() - if x.NodeEvents == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoNodeEvent((map[string][]*NodeEvent)(x.NodeEvents), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EmitNodeEventsRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EmitNodeEventsRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeEvents": - if r.TryDecodeAsNil() { - x.NodeEvents = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoNodeEvent((*map[string][]*NodeEvent)(&x.NodeEvents), d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EmitNodeEventsRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeEvents = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoNodeEvent((*map[string][]*NodeEvent)(&x.NodeEvents), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *EmitNodeEventsResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EmitNodeEventsResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EmitNodeEventsResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EmitNodeEventsResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeEvent) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Message\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Message`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Subsystem))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Subsystem)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Subsystem\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Subsystem`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Subsystem))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Subsystem)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Details == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Details, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Details\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Details`) - } - r.WriteMapElemValue() - if x.Details == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Details, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Timestamp) - } else if yyxt13 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt13 != nil { - z.EncExtension(x.Timestamp, yyxt13) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Timestamp) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Timestamp) - } else { - z.EncFallback(x.Timestamp) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Timestamp\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Timestamp`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Timestamp) - } else if yyxt14 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt14 != nil { - z.EncExtension(x.Timestamp, yyxt14) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Timestamp) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Timestamp) - } else { - z.EncFallback(x.Timestamp) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeEvent) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeEvent) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = (string)(r.DecodeString()) - } - case "Subsystem": - if r.TryDecodeAsNil() { - x.Subsystem = "" - } else { - x.Subsystem = (string)(r.DecodeString()) - } - case "Details": - if r.TryDecodeAsNil() { - x.Details = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Details, d) - } - } - case "Timestamp": - if r.TryDecodeAsNil() { - x.Timestamp = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Timestamp = r.DecodeTime() - } else if yyxt9 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt9 != nil { - z.DecExtension(x.Timestamp, yyxt9) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Timestamp) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Timestamp) - } else { - z.DecFallback(&x.Timestamp, false) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeEvent) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Subsystem = "" - } else { - x.Subsystem = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Details = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Details, d) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Timestamp = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Timestamp = r.DecodeTime() - } else if yyxt17 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt17 != nil { - z.DecExtension(x.Timestamp, yyxt17) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Timestamp) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Timestamp) - } else { - z.DecFallback(&x.Timestamp, false) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *DrainSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.Deadline)); yyxt4 != nil { - z.EncExtension(x.Deadline, yyxt4) - } else { - r.EncodeInt(int64(x.Deadline)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deadline\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deadline`) - } - r.WriteMapElemValue() - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { - z.EncExtension(x.Deadline, yyxt5) - } else { - r.EncodeInt(int64(x.Deadline)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.IgnoreSystemJobs)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"IgnoreSystemJobs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `IgnoreSystemJobs`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.IgnoreSystemJobs)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DrainSpec) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DrainSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Deadline": - if r.TryDecodeAsNil() { - x.Deadline = 0 - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { - z.DecExtension(x.Deadline, yyxt5) - } else { - x.Deadline = (time.Duration)(r.DecodeInt64()) - } - } - case "IgnoreSystemJobs": - if r.TryDecodeAsNil() { - x.IgnoreSystemJobs = false - } else { - x.IgnoreSystemJobs = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DrainSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Deadline = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.Deadline)); yyxt9 != nil { - z.DecExtension(x.Deadline, yyxt9) - } else { - x.Deadline = (time.Duration)(r.DecodeInt64()) - } - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.IgnoreSystemJobs = false - } else { - x.IgnoreSystemJobs = (bool)(r.DecodeBool()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *DrainStrategy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.Deadline)); yyxt4 != nil { - z.EncExtension(x.Deadline, yyxt4) - } else { - r.EncodeInt(int64(x.Deadline)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deadline\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deadline`) - } - r.WriteMapElemValue() - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { - z.EncExtension(x.Deadline, yyxt5) - } else { - r.EncodeInt(int64(x.Deadline)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.IgnoreSystemJobs)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"IgnoreSystemJobs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `IgnoreSystemJobs`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.IgnoreSystemJobs)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.ForceDeadline) - } else if yyxt10 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt10 != nil { - z.EncExtension(x.ForceDeadline, yyxt10) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.ForceDeadline) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.ForceDeadline) - } else { - z.EncFallback(x.ForceDeadline) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ForceDeadline\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ForceDeadline`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.ForceDeadline) - } else if yyxt11 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt11 != nil { - z.EncExtension(x.ForceDeadline, yyxt11) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.ForceDeadline) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.ForceDeadline) - } else { - z.EncFallback(x.ForceDeadline) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.StartedAt) - } else if yyxt13 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt13 != nil { - z.EncExtension(x.StartedAt, yyxt13) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.StartedAt) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartedAt) - } else { - z.EncFallback(x.StartedAt) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StartedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StartedAt`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.StartedAt) - } else if yyxt14 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt14 != nil { - z.EncExtension(x.StartedAt, yyxt14) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.StartedAt) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartedAt) - } else { - z.EncFallback(x.StartedAt) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DrainStrategy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DrainStrategy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Deadline": - if r.TryDecodeAsNil() { - x.DrainSpec.Deadline = 0 - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Deadline)); yyxt5 != nil { - z.DecExtension(x.Deadline, yyxt5) - } else { - x.Deadline = (time.Duration)(r.DecodeInt64()) - } - } - case "IgnoreSystemJobs": - if r.TryDecodeAsNil() { - x.DrainSpec.IgnoreSystemJobs = false - } else { - x.IgnoreSystemJobs = (bool)(r.DecodeBool()) - } - case "ForceDeadline": - if r.TryDecodeAsNil() { - x.ForceDeadline = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.ForceDeadline = r.DecodeTime() - } else if yyxt8 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt8 != nil { - z.DecExtension(x.ForceDeadline, yyxt8) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.ForceDeadline) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.ForceDeadline) - } else { - z.DecFallback(&x.ForceDeadline, false) - } - } - case "StartedAt": - if r.TryDecodeAsNil() { - x.StartedAt = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.StartedAt = r.DecodeTime() - } else if yyxt10 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt10 != nil { - z.DecExtension(x.StartedAt, yyxt10) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.StartedAt) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.StartedAt) - } else { - z.DecFallback(&x.StartedAt, false) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DrainStrategy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DrainSpec.Deadline = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.Deadline)); yyxt13 != nil { - z.DecExtension(x.Deadline, yyxt13) - } else { - x.Deadline = (time.Duration)(r.DecodeInt64()) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DrainSpec.IgnoreSystemJobs = false - } else { - x.IgnoreSystemJobs = (bool)(r.DecodeBool()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ForceDeadline = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.ForceDeadline = r.DecodeTime() - } else if yyxt16 := z.Extension(z.I2Rtid(x.ForceDeadline)); yyxt16 != nil { - z.DecExtension(x.ForceDeadline, yyxt16) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.ForceDeadline) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.ForceDeadline) - } else { - z.DecFallback(&x.ForceDeadline, false) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StartedAt = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.StartedAt = r.DecodeTime() - } else if yyxt18 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt18 != nil { - z.DecExtension(x.StartedAt, yyxt18) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.StartedAt) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.StartedAt) - } else { - z.DecFallback(&x.StartedAt, false) - } - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(26) - } else { - r.WriteMapStart(26) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SecretID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Datacenter\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HTTPAddr))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HTTPAddr)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HTTPAddr\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HTTPAddr`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HTTPAddr))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HTTPAddr)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.TLSEnabled)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TLSEnabled\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TLSEnabled`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.TLSEnabled)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Attributes == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Attributes, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Attributes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Attributes`) - } - r.WriteMapElemValue() - if x.Attributes == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Attributes, e) - } - } - } - var yyn24 bool - if x.NodeResources == nil { - yyn24 = true - goto LABEL24 - } - LABEL24: - if yyr2 || yy2arr2 { - if yyn24 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.NodeResources == nil { - r.EncodeNil() - } else { - x.NodeResources.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeResources`) - } - r.WriteMapElemValue() - if yyn24 { - r.EncodeNil() - } else { - if x.NodeResources == nil { - r.EncodeNil() - } else { - x.NodeResources.CodecEncodeSelf(e) - } - } - } - var yyn27 bool - if x.ReservedResources == nil { - yyn27 = true - goto LABEL27 - } - LABEL27: - if yyr2 || yy2arr2 { - if yyn27 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.ReservedResources == nil { - r.EncodeNil() - } else { - x.ReservedResources.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ReservedResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ReservedResources`) - } - r.WriteMapElemValue() - if yyn27 { - r.EncodeNil() - } else { - if x.ReservedResources == nil { - r.EncodeNil() - } else { - x.ReservedResources.CodecEncodeSelf(e) - } - } - } - var yyn30 bool - if x.Resources == nil { - yyn30 = true - goto LABEL30 - } - LABEL30: - if yyr2 || yy2arr2 { - if yyn30 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Resources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) - } - r.WriteMapElemValue() - if yyn30 { - r.EncodeNil() - } else { - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } - var yyn33 bool - if x.Reserved == nil { - yyn33 = true - goto LABEL33 - } - LABEL33: - if yyr2 || yy2arr2 { - if yyn33 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Reserved == nil { - r.EncodeNil() - } else { - x.Reserved.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Reserved\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Reserved`) - } - r.WriteMapElemValue() - if yyn33 { - r.EncodeNil() - } else { - if x.Reserved == nil { - r.EncodeNil() - } else { - x.Reserved.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Links == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Links, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Links\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Links`) - } - r.WriteMapElemValue() - if x.Links == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Links, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Meta\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) - } - r.WriteMapElemValue() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeClass\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeClass`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ComputedClass))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ComputedClass)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ComputedClass\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ComputedClass`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ComputedClass))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ComputedClass)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Drain)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Drain\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Drain`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Drain)) - } - } - var yyn51 bool - if x.DrainStrategy == nil { - yyn51 = true - goto LABEL51 - } - LABEL51: - if yyr2 || yy2arr2 { - if yyn51 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.DrainStrategy == nil { - r.EncodeNil() - } else { - x.DrainStrategy.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DrainStrategy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DrainStrategy`) - } - r.WriteMapElemValue() - if yyn51 { - r.EncodeNil() - } else { - if x.DrainStrategy == nil { - r.EncodeNil() - } else { - x.DrainStrategy.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SchedulingEligibility\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulingEligibility`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.StatusUpdatedAt)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusUpdatedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusUpdatedAt`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.StatusUpdatedAt)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Events == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeEvent(([]*NodeEvent)(x.Events), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Events\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Events`) - } - r.WriteMapElemValue() - if x.Events == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeEvent(([]*NodeEvent)(x.Events), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Drivers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Drivers\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Drivers`) - } - r.WriteMapElemValue() - if x.Drivers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.HostVolumes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoClientHostVolumeConfig((map[string]*ClientHostVolumeConfig)(x.HostVolumes), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HostVolumes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HostVolumes`) - } - r.WriteMapElemValue() - if x.HostVolumes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoClientHostVolumeConfig((map[string]*ClientHostVolumeConfig)(x.HostVolumes), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "SecretID": - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - case "Datacenter": - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "HTTPAddr": - if r.TryDecodeAsNil() { - x.HTTPAddr = "" - } else { - x.HTTPAddr = (string)(r.DecodeString()) - } - case "TLSEnabled": - if r.TryDecodeAsNil() { - x.TLSEnabled = false - } else { - x.TLSEnabled = (bool)(r.DecodeBool()) - } - case "Attributes": - if r.TryDecodeAsNil() { - x.Attributes = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Attributes, d) - } - } - case "NodeResources": - if r.TryDecodeAsNil() { - if true && x.NodeResources != nil { - x.NodeResources = nil - } - } else { - if x.NodeResources == nil { - x.NodeResources = new(NodeResources) - } - - x.NodeResources.CodecDecodeSelf(d) - } - case "ReservedResources": - if r.TryDecodeAsNil() { - if true && x.ReservedResources != nil { - x.ReservedResources = nil - } - } else { - if x.ReservedResources == nil { - x.ReservedResources = new(NodeReservedResources) - } - - x.ReservedResources.CodecDecodeSelf(d) - } - case "Resources": - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - case "Reserved": - if r.TryDecodeAsNil() { - if true && x.Reserved != nil { - x.Reserved = nil - } - } else { - if x.Reserved == nil { - x.Reserved = new(Resources) - } - - x.Reserved.CodecDecodeSelf(d) - } - case "Links": - if r.TryDecodeAsNil() { - x.Links = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Links, d) - } - } - case "Meta": - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - case "NodeClass": - if r.TryDecodeAsNil() { - x.NodeClass = "" - } else { - x.NodeClass = (string)(r.DecodeString()) - } - case "ComputedClass": - if r.TryDecodeAsNil() { - x.ComputedClass = "" - } else { - x.ComputedClass = (string)(r.DecodeString()) - } - case "Drain": - if r.TryDecodeAsNil() { - x.Drain = false - } else { - x.Drain = (bool)(r.DecodeBool()) - } - case "DrainStrategy": - if r.TryDecodeAsNil() { - if true && x.DrainStrategy != nil { - x.DrainStrategy = nil - } - } else { - if x.DrainStrategy == nil { - x.DrainStrategy = new(DrainStrategy) - } - - x.DrainStrategy.CodecDecodeSelf(d) - } - case "SchedulingEligibility": - if r.TryDecodeAsNil() { - x.SchedulingEligibility = "" - } else { - x.SchedulingEligibility = (string)(r.DecodeString()) - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "StatusDescription": - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - case "StatusUpdatedAt": - if r.TryDecodeAsNil() { - x.StatusUpdatedAt = 0 - } else { - x.StatusUpdatedAt = (int64)(r.DecodeInt64()) - } - case "Events": - if r.TryDecodeAsNil() { - x.Events = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeEvent((*[]*NodeEvent)(&x.Events), d) - } - } - case "Drivers": - if r.TryDecodeAsNil() { - x.Drivers = nil - } else { - if false { - } else { - h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) - } - } - case "HostVolumes": - if r.TryDecodeAsNil() { - x.HostVolumes = nil - } else { - if false { - } else { - h.decMapstringPtrtoClientHostVolumeConfig((*map[string]*ClientHostVolumeConfig)(&x.HostVolumes), d) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj36 int - var yyb36 bool - var yyhl36 bool = l >= 0 - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HTTPAddr = "" - } else { - x.HTTPAddr = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TLSEnabled = false - } else { - x.TLSEnabled = (bool)(r.DecodeBool()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Attributes = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Attributes, d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.NodeResources != nil { - x.NodeResources = nil - } - } else { - if x.NodeResources == nil { - x.NodeResources = new(NodeResources) - } - - x.NodeResources.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.ReservedResources != nil { - x.ReservedResources = nil - } - } else { - if x.ReservedResources == nil { - x.ReservedResources = new(NodeReservedResources) - } - - x.ReservedResources.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Reserved != nil { - x.Reserved = nil - } - } else { - if x.Reserved == nil { - x.Reserved = new(Resources) - } - - x.Reserved.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Links = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Links, d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeClass = "" - } else { - x.NodeClass = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ComputedClass = "" - } else { - x.ComputedClass = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Drain = false - } else { - x.Drain = (bool)(r.DecodeBool()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DrainStrategy != nil { - x.DrainStrategy = nil - } - } else { - if x.DrainStrategy == nil { - x.DrainStrategy = new(DrainStrategy) - } - - x.DrainStrategy.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SchedulingEligibility = "" - } else { - x.SchedulingEligibility = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusUpdatedAt = 0 - } else { - x.StatusUpdatedAt = (int64)(r.DecodeInt64()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Events = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeEvent((*[]*NodeEvent)(&x.Events), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Drivers = nil - } else { - if false { - } else { - h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HostVolumes = nil - } else { - if false { - } else { - h.decMapstringPtrtoClientHostVolumeConfig((*map[string]*ClientHostVolumeConfig)(&x.HostVolumes), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj36-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeListStub) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(13) - } else { - r.WriteMapStart(13) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Address\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Address`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Address))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Address)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Datacenter\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenter`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Datacenter))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Datacenter)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeClass\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeClass`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeClass))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeClass)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Version))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Version)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Version\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Version`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Version))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Version)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Drain)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Drain\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Drain`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Drain)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SchedulingEligibility\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SchedulingEligibility`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SchedulingEligibility))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SchedulingEligibility)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Drivers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Drivers\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Drivers`) - } - r.WriteMapElemValue() - if x.Drivers == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDriverInfo((map[string]*DriverInfo)(x.Drivers), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeListStub) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Address": - if r.TryDecodeAsNil() { - x.Address = "" - } else { - x.Address = (string)(r.DecodeString()) - } - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Datacenter": - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "NodeClass": - if r.TryDecodeAsNil() { - x.NodeClass = "" - } else { - x.NodeClass = (string)(r.DecodeString()) - } - case "Version": - if r.TryDecodeAsNil() { - x.Version = "" - } else { - x.Version = (string)(r.DecodeString()) - } - case "Drain": - if r.TryDecodeAsNil() { - x.Drain = false - } else { - x.Drain = (bool)(r.DecodeBool()) - } - case "SchedulingEligibility": - if r.TryDecodeAsNil() { - x.SchedulingEligibility = "" - } else { - x.SchedulingEligibility = (string)(r.DecodeString()) - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "StatusDescription": - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - case "Drivers": - if r.TryDecodeAsNil() { - x.Drivers = nil - } else { - if false { - } else { - h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj18 int - var yyb18 bool - var yyhl18 bool = l >= 0 - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Address = "" - } else { - x.Address = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Datacenter = "" - } else { - x.Datacenter = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeClass = "" - } else { - x.NodeClass = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Version = "" - } else { - x.Version = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Drain = false - } else { - x.Drain = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SchedulingEligibility = "" - } else { - x.SchedulingEligibility = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Drivers = nil - } else { - if false { - } else { - h.decMapstringPtrtoDriverInfo((*map[string]*DriverInfo)(&x.Drivers), d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj18-1, "") - } - r.ReadArrayEnd() -} - -func (x *Resources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.CPU)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CPU\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CPU`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CPU)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MemoryMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DiskMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.IOPS)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"IOPS\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `IOPS`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.IOPS)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Networks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) - } - r.WriteMapElemValue() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Devices == nil { - r.EncodeNil() - } else { - x.Devices.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Devices\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) - } - r.WriteMapElemValue() - if x.Devices == nil { - r.EncodeNil() - } else { - x.Devices.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Resources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Resources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "CPU": - if r.TryDecodeAsNil() { - x.CPU = 0 - } else { - x.CPU = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "MemoryMB": - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "DiskMB": - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "IOPS": - if r.TryDecodeAsNil() { - x.IOPS = 0 - } else { - x.IOPS = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Networks": - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - case "Devices": - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - x.Devices.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Resources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CPU = 0 - } else { - x.CPU = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.IOPS = 0 - } else { - x.IOPS = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - x.Devices.CodecDecodeSelf(d) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x ResourceDevices) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encResourceDevices((ResourceDevices)(x), e) - } - } -} - -func (x *ResourceDevices) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decResourceDevices((*ResourceDevices)(x), d) - } -} - -func (x *Port) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Label))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Label)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Label\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Label`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Label))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Label)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Value)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Value\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Value`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Value)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.To)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"To\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `To`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.To)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Port) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Port) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Label": - if r.TryDecodeAsNil() { - x.Label = "" - } else { - x.Label = (string)(r.DecodeString()) - } - case "Value": - if r.TryDecodeAsNil() { - x.Value = 0 - } else { - x.Value = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "To": - if r.TryDecodeAsNil() { - x.To = 0 - } else { - x.To = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Port) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Label = "" - } else { - x.Label = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Value = 0 - } else { - x.Value = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.To = 0 - } else { - x.To = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *NetworkResource) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Mode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Mode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Device))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Device)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Device\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Device`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Device))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Device)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.CIDR))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.CIDR)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CIDR\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CIDR`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.CIDR))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.CIDR)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.IP))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.IP)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"IP\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `IP`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.IP))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.IP)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MBits)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MBits\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MBits`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MBits)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.ReservedPorts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePort(([]Port)(x.ReservedPorts), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ReservedPorts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ReservedPorts`) - } - r.WriteMapElemValue() - if x.ReservedPorts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePort(([]Port)(x.ReservedPorts), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.DynamicPorts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePort(([]Port)(x.DynamicPorts), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DynamicPorts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DynamicPorts`) - } - r.WriteMapElemValue() - if x.DynamicPorts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePort(([]Port)(x.DynamicPorts), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NetworkResource) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NetworkResource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Mode": - if r.TryDecodeAsNil() { - x.Mode = "" - } else { - x.Mode = (string)(r.DecodeString()) - } - case "Device": - if r.TryDecodeAsNil() { - x.Device = "" - } else { - x.Device = (string)(r.DecodeString()) - } - case "CIDR": - if r.TryDecodeAsNil() { - x.CIDR = "" - } else { - x.CIDR = (string)(r.DecodeString()) - } - case "IP": - if r.TryDecodeAsNil() { - x.IP = "" - } else { - x.IP = (string)(r.DecodeString()) - } - case "MBits": - if r.TryDecodeAsNil() { - x.MBits = 0 - } else { - x.MBits = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "ReservedPorts": - if r.TryDecodeAsNil() { - x.ReservedPorts = nil - } else { - if false { - } else { - h.decSlicePort((*[]Port)(&x.ReservedPorts), d) - } - } - case "DynamicPorts": - if r.TryDecodeAsNil() { - x.DynamicPorts = nil - } else { - if false { - } else { - h.decSlicePort((*[]Port)(&x.DynamicPorts), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NetworkResource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Mode = "" - } else { - x.Mode = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Device = "" - } else { - x.Device = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CIDR = "" - } else { - x.CIDR = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.IP = "" - } else { - x.IP = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MBits = 0 - } else { - x.MBits = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ReservedPorts = nil - } else { - if false { - } else { - h.decSlicePort((*[]Port)(&x.ReservedPorts), d) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DynamicPorts = nil - } else { - if false { - } else { - h.decSlicePort((*[]Port)(&x.DynamicPorts), d) - } - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x Networks) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encNetworks((Networks)(x), e) - } - } -} - -func (x *Networks) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decNetworks((*Networks)(x), d) - } -} - -func (x *RequestedDevice) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Count)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Count\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Count`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Count)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Constraints == nil { - r.EncodeNil() - } else { - x.Constraints.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Constraints\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) - } - r.WriteMapElemValue() - if x.Constraints == nil { - r.EncodeNil() - } else { - x.Constraints.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Affinities == nil { - r.EncodeNil() - } else { - x.Affinities.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Affinities\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) - } - r.WriteMapElemValue() - if x.Affinities == nil { - r.EncodeNil() - } else { - x.Affinities.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RequestedDevice) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RequestedDevice) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Count": - if r.TryDecodeAsNil() { - x.Count = 0 - } else { - x.Count = (uint64)(r.DecodeUint64()) - } - case "Constraints": - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - x.Constraints.CodecDecodeSelf(d) - } - case "Affinities": - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - x.Affinities.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RequestedDevice) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Count = 0 - } else { - x.Count = (uint64)(r.DecodeUint64()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - x.Constraints.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - x.Affinities.CodecDecodeSelf(d) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy4 := &x.Cpu - yy4.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Cpu\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Cpu`) - } - r.WriteMapElemValue() - yy6 := &x.Cpu - yy6.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy9 := &x.Memory - yy9.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Memory\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Memory`) - } - r.WriteMapElemValue() - yy11 := &x.Memory - yy11.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy14 := &x.Disk - yy14.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Disk\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Disk`) - } - r.WriteMapElemValue() - yy16 := &x.Disk - yy16.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Networks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) - } - r.WriteMapElemValue() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Devices == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeDeviceResource(([]*NodeDeviceResource)(x.Devices), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Devices\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) - } - r.WriteMapElemValue() - if x.Devices == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeDeviceResource(([]*NodeDeviceResource)(x.Devices), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Cpu": - if r.TryDecodeAsNil() { - x.Cpu = NodeCpuResources{} - } else { - x.Cpu.CodecDecodeSelf(d) - } - case "Memory": - if r.TryDecodeAsNil() { - x.Memory = NodeMemoryResources{} - } else { - x.Memory.CodecDecodeSelf(d) - } - case "Disk": - if r.TryDecodeAsNil() { - x.Disk = NodeDiskResources{} - } else { - x.Disk.CodecDecodeSelf(d) - } - case "Networks": - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - case "Devices": - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeDeviceResource((*[]*NodeDeviceResource)(&x.Devices), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Cpu = NodeCpuResources{} - } else { - x.Cpu.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Memory = NodeMemoryResources{} - } else { - x.Memory.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Disk = NodeDiskResources{} - } else { - x.Disk.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeDeviceResource((*[]*NodeDeviceResource)(&x.Devices), d) - } - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeCpuResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.CpuShares)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CpuShares\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CpuShares`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CpuShares)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeCpuResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeCpuResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "CpuShares": - if r.TryDecodeAsNil() { - x.CpuShares = 0 - } else { - x.CpuShares = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeCpuResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CpuShares = 0 - } else { - x.CpuShares = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeMemoryResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MemoryMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeMemoryResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeMemoryResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "MemoryMB": - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeMemoryResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeDiskResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DiskMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeDiskResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeDiskResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DiskMB": - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeDiskResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeviceIdTuple) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Vendor\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Vendor`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeviceIdTuple) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeviceIdTuple) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Vendor": - if r.TryDecodeAsNil() { - x.Vendor = "" - } else { - x.Vendor = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeviceIdTuple) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Vendor = "" - } else { - x.Vendor = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeDeviceResource) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Vendor\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Vendor`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Instances == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeDevice(([]*NodeDevice)(x.Instances), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Instances\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Instances`) - } - r.WriteMapElemValue() - if x.Instances == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeDevice(([]*NodeDevice)(x.Instances), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Attributes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtostructs_Attribute((map[string]*pkg1_structs.Attribute)(x.Attributes), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Attributes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Attributes`) - } - r.WriteMapElemValue() - if x.Attributes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtostructs_Attribute((map[string]*pkg1_structs.Attribute)(x.Attributes), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeDeviceResource) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeDeviceResource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Vendor": - if r.TryDecodeAsNil() { - x.Vendor = "" - } else { - x.Vendor = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Instances": - if r.TryDecodeAsNil() { - x.Instances = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeDevice((*[]*NodeDevice)(&x.Instances), d) - } - } - case "Attributes": - if r.TryDecodeAsNil() { - x.Attributes = nil - } else { - if false { - } else { - h.decMapstringPtrtostructs_Attribute((*map[string]*pkg1_structs.Attribute)(&x.Attributes), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeDeviceResource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Vendor = "" - } else { - x.Vendor = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Instances = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeDevice((*[]*NodeDevice)(&x.Instances), d) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Attributes = nil - } else { - if false { - } else { - h.decMapstringPtrtostructs_Attribute((*map[string]*pkg1_structs.Attribute)(&x.Attributes), d) - } - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeDevice) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Healthy)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Healthy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Healthy`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Healthy)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthDescription)) - } - } - } - var yyn12 bool - if x.Locality == nil { - yyn12 = true - goto LABEL12 - } - LABEL12: - if yyr2 || yy2arr2 { - if yyn12 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Locality == nil { - r.EncodeNil() - } else { - x.Locality.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Locality\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Locality`) - } - r.WriteMapElemValue() - if yyn12 { - r.EncodeNil() - } else { - if x.Locality == nil { - r.EncodeNil() - } else { - x.Locality.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeDevice) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeDevice) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Healthy": - if r.TryDecodeAsNil() { - x.Healthy = false - } else { - x.Healthy = (bool)(r.DecodeBool()) - } - case "HealthDescription": - if r.TryDecodeAsNil() { - x.HealthDescription = "" - } else { - x.HealthDescription = (string)(r.DecodeString()) - } - case "Locality": - if r.TryDecodeAsNil() { - if true && x.Locality != nil { - x.Locality = nil - } - } else { - if x.Locality == nil { - x.Locality = new(NodeDeviceLocality) - } - - x.Locality.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeDevice) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Healthy = false - } else { - x.Healthy = (bool)(r.DecodeBool()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthDescription = "" - } else { - x.HealthDescription = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Locality != nil { - x.Locality = nil - } - } else { - if x.Locality == nil { - x.Locality = new(NodeDeviceLocality) - } - - x.Locality.CodecDecodeSelf(d) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeDeviceLocality) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PciBusID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PciBusID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PciBusID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PciBusID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PciBusID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PciBusID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeDeviceLocality) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeDeviceLocality) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "PciBusID": - if r.TryDecodeAsNil() { - x.PciBusID = "" - } else { - x.PciBusID = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeDeviceLocality) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PciBusID = "" - } else { - x.PciBusID = (string)(r.DecodeString()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeReservedResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy4 := &x.Cpu - yy4.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Cpu\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Cpu`) - } - r.WriteMapElemValue() - yy6 := &x.Cpu - yy6.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy9 := &x.Memory - yy9.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Memory\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Memory`) - } - r.WriteMapElemValue() - yy11 := &x.Memory - yy11.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy14 := &x.Disk - yy14.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Disk\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Disk`) - } - r.WriteMapElemValue() - yy16 := &x.Disk - yy16.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy19 := &x.Networks - yy19.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Networks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) - } - r.WriteMapElemValue() - yy21 := &x.Networks - yy21.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeReservedResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeReservedResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Cpu": - if r.TryDecodeAsNil() { - x.Cpu = NodeReservedCpuResources{} - } else { - x.Cpu.CodecDecodeSelf(d) - } - case "Memory": - if r.TryDecodeAsNil() { - x.Memory = NodeReservedMemoryResources{} - } else { - x.Memory.CodecDecodeSelf(d) - } - case "Disk": - if r.TryDecodeAsNil() { - x.Disk = NodeReservedDiskResources{} - } else { - x.Disk.CodecDecodeSelf(d) - } - case "Networks": - if r.TryDecodeAsNil() { - x.Networks = NodeReservedNetworkResources{} - } else { - x.Networks.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeReservedResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Cpu = NodeReservedCpuResources{} - } else { - x.Cpu.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Memory = NodeReservedMemoryResources{} - } else { - x.Memory.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Disk = NodeReservedDiskResources{} - } else { - x.Disk.CodecDecodeSelf(d) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Networks = NodeReservedNetworkResources{} - } else { - x.Networks.CodecDecodeSelf(d) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeReservedCpuResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.CpuShares)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CpuShares\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CpuShares`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CpuShares)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeReservedCpuResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeReservedCpuResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "CpuShares": - if r.TryDecodeAsNil() { - x.CpuShares = 0 - } else { - x.CpuShares = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeReservedCpuResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CpuShares = 0 - } else { - x.CpuShares = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeReservedMemoryResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MemoryMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeReservedMemoryResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeReservedMemoryResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "MemoryMB": - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeReservedMemoryResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeReservedDiskResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DiskMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeReservedDiskResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeReservedDiskResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DiskMB": - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeReservedDiskResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeReservedNetworkResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ReservedHostPorts))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ReservedHostPorts)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ReservedHostPorts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ReservedHostPorts`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ReservedHostPorts))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ReservedHostPorts)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeReservedNetworkResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeReservedNetworkResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ReservedHostPorts": - if r.TryDecodeAsNil() { - x.ReservedHostPorts = "" - } else { - x.ReservedHostPorts = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeReservedNetworkResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ReservedHostPorts = "" - } else { - x.ReservedHostPorts = (string)(r.DecodeString()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocatedResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoAllocatedTaskResources((map[string]*AllocatedTaskResources)(x.Tasks), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tasks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) - } - r.WriteMapElemValue() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoAllocatedTaskResources((map[string]*AllocatedTaskResources)(x.Tasks), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy7 := &x.Shared - yy7.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Shared\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Shared`) - } - r.WriteMapElemValue() - yy9 := &x.Shared - yy9.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocatedResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocatedResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Tasks": - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decMapstringPtrtoAllocatedTaskResources((*map[string]*AllocatedTaskResources)(&x.Tasks), d) - } - } - case "Shared": - if r.TryDecodeAsNil() { - x.Shared = AllocatedSharedResources{} - } else { - x.Shared.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocatedResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decMapstringPtrtoAllocatedTaskResources((*map[string]*AllocatedTaskResources)(&x.Tasks), d) - } - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Shared = AllocatedSharedResources{} - } else { - x.Shared.CodecDecodeSelf(d) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocatedTaskResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy4 := &x.Cpu - yy4.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Cpu\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Cpu`) - } - r.WriteMapElemValue() - yy6 := &x.Cpu - yy6.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy9 := &x.Memory - yy9.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Memory\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Memory`) - } - r.WriteMapElemValue() - yy11 := &x.Memory - yy11.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Networks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) - } - r.WriteMapElemValue() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Devices == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocatedDeviceResource(([]*AllocatedDeviceResource)(x.Devices), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Devices\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Devices`) - } - r.WriteMapElemValue() - if x.Devices == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocatedDeviceResource(([]*AllocatedDeviceResource)(x.Devices), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocatedTaskResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocatedTaskResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Cpu": - if r.TryDecodeAsNil() { - x.Cpu = AllocatedCpuResources{} - } else { - x.Cpu.CodecDecodeSelf(d) - } - case "Memory": - if r.TryDecodeAsNil() { - x.Memory = AllocatedMemoryResources{} - } else { - x.Memory.CodecDecodeSelf(d) - } - case "Networks": - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - case "Devices": - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocatedDeviceResource((*[]*AllocatedDeviceResource)(&x.Devices), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocatedTaskResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Cpu = AllocatedCpuResources{} - } else { - x.Cpu.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Memory = AllocatedMemoryResources{} - } else { - x.Memory.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Devices = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocatedDeviceResource((*[]*AllocatedDeviceResource)(&x.Devices), d) - } - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocatedSharedResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Networks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) - } - r.WriteMapElemValue() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DiskMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DiskMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.DiskMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocatedSharedResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocatedSharedResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Networks": - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - case "DiskMB": - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocatedSharedResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DiskMB = 0 - } else { - x.DiskMB = (int64)(r.DecodeInt64()) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocatedCpuResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.CpuShares)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CpuShares\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CpuShares`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CpuShares)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocatedCpuResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocatedCpuResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "CpuShares": - if r.TryDecodeAsNil() { - x.CpuShares = 0 - } else { - x.CpuShares = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocatedCpuResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CpuShares = 0 - } else { - x.CpuShares = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocatedMemoryResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MemoryMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MemoryMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MemoryMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocatedMemoryResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocatedMemoryResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "MemoryMB": - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocatedMemoryResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MemoryMB = 0 - } else { - x.MemoryMB = (int64)(r.DecodeInt64()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x AllocatedDevices) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encAllocatedDevices((AllocatedDevices)(x), e) - } - } -} - -func (x *AllocatedDevices) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decAllocatedDevices((*AllocatedDevices)(x), d) - } -} - -func (x *AllocatedDeviceResource) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Vendor\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Vendor`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Vendor))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Vendor)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.DeviceIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.DeviceIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeviceIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeviceIDs`) - } - r.WriteMapElemValue() - if x.DeviceIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.DeviceIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocatedDeviceResource) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocatedDeviceResource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Vendor": - if r.TryDecodeAsNil() { - x.Vendor = "" - } else { - x.Vendor = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "DeviceIDs": - if r.TryDecodeAsNil() { - x.DeviceIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.DeviceIDs, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocatedDeviceResource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Vendor = "" - } else { - x.Vendor = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeviceIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.DeviceIDs, d) - } - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *ComparableResources) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy4 := &x.Flattened - yy4.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Flattened\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Flattened`) - } - r.WriteMapElemValue() - yy6 := &x.Flattened - yy6.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy9 := &x.Shared - yy9.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Shared\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Shared`) - } - r.WriteMapElemValue() - yy11 := &x.Shared - yy11.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ComparableResources) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ComparableResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Flattened": - if r.TryDecodeAsNil() { - x.Flattened = AllocatedTaskResources{} - } else { - x.Flattened.CodecDecodeSelf(d) - } - case "Shared": - if r.TryDecodeAsNil() { - x.Shared = AllocatedSharedResources{} - } else { - x.Shared.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ComparableResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Flattened = AllocatedTaskResources{} - } else { - x.Flattened.CodecDecodeSelf(d) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Shared = AllocatedSharedResources{} - } else { - x.Shared.CodecDecodeSelf(d) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *Job) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(29) - } else { - r.WriteMapStart(29) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Stop)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Stop\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Stop`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Stop)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ParentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ParentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Priority\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllAtOnce)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllAtOnce\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllAtOnce`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllAtOnce)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Datacenters == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Datacenters, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Datacenters\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenters`) - } - r.WriteMapElemValue() - if x.Datacenters == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Datacenters, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Constraints == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Constraints\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) - } - r.WriteMapElemValue() - if x.Constraints == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Affinities == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Affinities\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) - } - r.WriteMapElemValue() - if x.Affinities == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Spreads == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Spreads\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Spreads`) - } - r.WriteMapElemValue() - if x.Spreads == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.TaskGroups == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskGroup(([]*TaskGroup)(x.TaskGroups), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskGroups\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroups`) - } - r.WriteMapElemValue() - if x.TaskGroups == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskGroup(([]*TaskGroup)(x.TaskGroups), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy46 := &x.Update - yy46.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Update\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Update`) - } - r.WriteMapElemValue() - yy48 := &x.Update - yy48.CodecEncodeSelf(e) - } - var yyn50 bool - if x.Periodic == nil { - yyn50 = true - goto LABEL50 - } - LABEL50: - if yyr2 || yy2arr2 { - if yyn50 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Periodic == nil { - r.EncodeNil() - } else { - x.Periodic.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Periodic\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Periodic`) - } - r.WriteMapElemValue() - if yyn50 { - r.EncodeNil() - } else { - if x.Periodic == nil { - r.EncodeNil() - } else { - x.Periodic.CodecEncodeSelf(e) - } - } - } - var yyn53 bool - if x.ParameterizedJob == nil { - yyn53 = true - goto LABEL53 - } - LABEL53: - if yyr2 || yy2arr2 { - if yyn53 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.ParameterizedJob == nil { - r.EncodeNil() - } else { - x.ParameterizedJob.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ParameterizedJob\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ParameterizedJob`) - } - r.WriteMapElemValue() - if yyn53 { - r.EncodeNil() - } else { - if x.ParameterizedJob == nil { - r.EncodeNil() - } else { - x.ParameterizedJob.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Dispatched)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Dispatched\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Dispatched`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Dispatched)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Payload == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Payload)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Payload\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Payload`) - } - r.WriteMapElemValue() - if x.Payload == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Payload)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Meta\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) - } - r.WriteMapElemValue() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"VaultToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `VaultToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.VaultToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Stable)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Stable\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Stable`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Stable)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Version)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Version\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Version`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Version)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.SubmitTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SubmitTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SubmitTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.SubmitTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Job) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Job) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Stop": - if r.TryDecodeAsNil() { - x.Stop = false - } else { - x.Stop = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "ParentID": - if r.TryDecodeAsNil() { - x.ParentID = "" - } else { - x.ParentID = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Priority": - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "AllAtOnce": - if r.TryDecodeAsNil() { - x.AllAtOnce = false - } else { - x.AllAtOnce = (bool)(r.DecodeBool()) - } - case "Datacenters": - if r.TryDecodeAsNil() { - x.Datacenters = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Datacenters, d) - } - } - case "Constraints": - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - if false { - } else { - h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) - } - } - case "Affinities": - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - if false { - } else { - h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) - } - } - case "Spreads": - if r.TryDecodeAsNil() { - x.Spreads = nil - } else { - if false { - } else { - h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) - } - } - case "TaskGroups": - if r.TryDecodeAsNil() { - x.TaskGroups = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskGroup((*[]*TaskGroup)(&x.TaskGroups), d) - } - } - case "Update": - if r.TryDecodeAsNil() { - x.Update = UpdateStrategy{} - } else { - x.Update.CodecDecodeSelf(d) - } - case "Periodic": - if r.TryDecodeAsNil() { - if true && x.Periodic != nil { - x.Periodic = nil - } - } else { - if x.Periodic == nil { - x.Periodic = new(PeriodicConfig) - } - - x.Periodic.CodecDecodeSelf(d) - } - case "ParameterizedJob": - if r.TryDecodeAsNil() { - if true && x.ParameterizedJob != nil { - x.ParameterizedJob = nil - } - } else { - if x.ParameterizedJob == nil { - x.ParameterizedJob = new(ParameterizedJobConfig) - } - - x.ParameterizedJob.CodecDecodeSelf(d) - } - case "Dispatched": - if r.TryDecodeAsNil() { - x.Dispatched = false - } else { - x.Dispatched = (bool)(r.DecodeBool()) - } - case "Payload": - if r.TryDecodeAsNil() { - x.Payload = nil - } else { - if false { - } else { - x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) - } - } - case "Meta": - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - case "VaultToken": - if r.TryDecodeAsNil() { - x.VaultToken = "" - } else { - x.VaultToken = (string)(r.DecodeString()) - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "StatusDescription": - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - case "Stable": - if r.TryDecodeAsNil() { - x.Stable = false - } else { - x.Stable = (bool)(r.DecodeBool()) - } - case "Version": - if r.TryDecodeAsNil() { - x.Version = 0 - } else { - x.Version = (uint64)(r.DecodeUint64()) - } - case "SubmitTime": - if r.TryDecodeAsNil() { - x.SubmitTime = 0 - } else { - x.SubmitTime = (int64)(r.DecodeInt64()) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Job) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj40 int - var yyb40 bool - var yyhl40 bool = l >= 0 - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Stop = false - } else { - x.Stop = (bool)(r.DecodeBool()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ParentID = "" - } else { - x.ParentID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllAtOnce = false - } else { - x.AllAtOnce = (bool)(r.DecodeBool()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Datacenters = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Datacenters, d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - if false { - } else { - h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - if false { - } else { - h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Spreads = nil - } else { - if false { - } else { - h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskGroups = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskGroup((*[]*TaskGroup)(&x.TaskGroups), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Update = UpdateStrategy{} - } else { - x.Update.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Periodic != nil { - x.Periodic = nil - } - } else { - if x.Periodic == nil { - x.Periodic = new(PeriodicConfig) - } - - x.Periodic.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.ParameterizedJob != nil { - x.ParameterizedJob = nil - } - } else { - if x.ParameterizedJob == nil { - x.ParameterizedJob = new(ParameterizedJobConfig) - } - - x.ParameterizedJob.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Dispatched = false - } else { - x.Dispatched = (bool)(r.DecodeBool()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Payload = nil - } else { - if false { - } else { - x.Payload = r.DecodeBytes(([]byte)(x.Payload), false) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.VaultToken = "" - } else { - x.VaultToken = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Stable = false - } else { - x.Stable = (bool)(r.DecodeBool()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Version = 0 - } else { - x.Version = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SubmitTime = 0 - } else { - x.SubmitTime = (int64)(r.DecodeInt64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj40-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobListStub) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(16) - } else { - r.WriteMapStart(16) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ParentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ParentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ParentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ParentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Datacenters == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Datacenters, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Datacenters\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Datacenters`) - } - r.WriteMapElemValue() - if x.Datacenters == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Datacenters, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Priority\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Periodic)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Periodic\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Periodic`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Periodic)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.ParameterizedJob)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ParameterizedJob\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ParameterizedJob`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.ParameterizedJob)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Stop)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Stop\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Stop`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Stop)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } - var yyn36 bool - if x.JobSummary == nil { - yyn36 = true - goto LABEL36 - } - LABEL36: - if yyr2 || yy2arr2 { - if yyn36 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.JobSummary == nil { - r.EncodeNil() - } else { - x.JobSummary.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobSummary\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobSummary`) - } - r.WriteMapElemValue() - if yyn36 { - r.EncodeNil() - } else { - if x.JobSummary == nil { - r.EncodeNil() - } else { - x.JobSummary.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.SubmitTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SubmitTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SubmitTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.SubmitTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobListStub) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "ParentID": - if r.TryDecodeAsNil() { - x.ParentID = "" - } else { - x.ParentID = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Datacenters": - if r.TryDecodeAsNil() { - x.Datacenters = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Datacenters, d) - } - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Priority": - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Periodic": - if r.TryDecodeAsNil() { - x.Periodic = false - } else { - x.Periodic = (bool)(r.DecodeBool()) - } - case "ParameterizedJob": - if r.TryDecodeAsNil() { - x.ParameterizedJob = false - } else { - x.ParameterizedJob = (bool)(r.DecodeBool()) - } - case "Stop": - if r.TryDecodeAsNil() { - x.Stop = false - } else { - x.Stop = (bool)(r.DecodeBool()) - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "StatusDescription": - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - case "JobSummary": - if r.TryDecodeAsNil() { - if true && x.JobSummary != nil { - x.JobSummary = nil - } - } else { - if x.JobSummary == nil { - x.JobSummary = new(JobSummary) - } - - x.JobSummary.CodecDecodeSelf(d) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - case "SubmitTime": - if r.TryDecodeAsNil() { - x.SubmitTime = 0 - } else { - x.SubmitTime = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj21 int - var yyb21 bool - var yyhl21 bool = l >= 0 - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ParentID = "" - } else { - x.ParentID = (string)(r.DecodeString()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Datacenters = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Datacenters, d) - } - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Periodic = false - } else { - x.Periodic = (bool)(r.DecodeBool()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ParameterizedJob = false - } else { - x.ParameterizedJob = (bool)(r.DecodeBool()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Stop = false - } else { - x.Stop = (bool)(r.DecodeBool()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.JobSummary != nil { - x.JobSummary = nil - } - } else { - if x.JobSummary == nil { - x.JobSummary = new(JobSummary) - } - - x.JobSummary.CodecDecodeSelf(d) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SubmitTime = 0 - } else { - x.SubmitTime = (int64)(r.DecodeInt64()) - } - for { - yyj21++ - if yyhl21 { - yyb21 = yyj21 > l - } else { - yyb21 = r.CheckBreak() - } - if yyb21 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj21-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobSummary) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Summary == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringTaskGroupSummary((map[string]TaskGroupSummary)(x.Summary), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Summary\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Summary`) - } - r.WriteMapElemValue() - if x.Summary == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringTaskGroupSummary((map[string]TaskGroupSummary)(x.Summary), e) - } - } - } - var yyn12 bool - if x.Children == nil { - yyn12 = true - goto LABEL12 - } - LABEL12: - if yyr2 || yy2arr2 { - if yyn12 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Children == nil { - r.EncodeNil() - } else { - x.Children.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Children\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Children`) - } - r.WriteMapElemValue() - if yyn12 { - r.EncodeNil() - } else { - if x.Children == nil { - r.EncodeNil() - } else { - x.Children.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobSummary) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobSummary) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "Summary": - if r.TryDecodeAsNil() { - x.Summary = nil - } else { - if false { - } else { - h.decMapstringTaskGroupSummary((*map[string]TaskGroupSummary)(&x.Summary), d) - } - } - case "Children": - if r.TryDecodeAsNil() { - if true && x.Children != nil { - x.Children = nil - } - } else { - if x.Children == nil { - x.Children = new(JobChildrenSummary) - } - - x.Children.CodecDecodeSelf(d) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobSummary) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj11 int - var yyb11 bool - var yyhl11 bool = l >= 0 - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Summary = nil - } else { - if false { - } else { - h.decMapstringTaskGroupSummary((*map[string]TaskGroupSummary)(&x.Summary), d) - } - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Children != nil { - x.Children = nil - } - } else { - if x.Children == nil { - x.Children = new(JobChildrenSummary) - } - - x.Children.CodecDecodeSelf(d) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj11++ - if yyhl11 { - yyb11 = yyj11 > l - } else { - yyb11 = r.CheckBreak() - } - if yyb11 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj11-1, "") - } - r.ReadArrayEnd() -} - -func (x *JobChildrenSummary) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Pending)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Pending\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Pending`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Pending)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Running)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Running\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Running`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Running)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Dead)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Dead\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Dead`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Dead)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *JobChildrenSummary) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *JobChildrenSummary) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Pending": - if r.TryDecodeAsNil() { - x.Pending = 0 - } else { - x.Pending = (int64)(r.DecodeInt64()) - } - case "Running": - if r.TryDecodeAsNil() { - x.Running = 0 - } else { - x.Running = (int64)(r.DecodeInt64()) - } - case "Dead": - if r.TryDecodeAsNil() { - x.Dead = 0 - } else { - x.Dead = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *JobChildrenSummary) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Pending = 0 - } else { - x.Pending = (int64)(r.DecodeInt64()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Running = 0 - } else { - x.Running = (int64)(r.DecodeInt64()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Dead = 0 - } else { - x.Dead = (int64)(r.DecodeInt64()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *TaskGroupSummary) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Queued)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Queued\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Queued`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Queued)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Complete)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Complete\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Complete`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Complete)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Failed)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Failed\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Failed`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Failed)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Running)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Running\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Running`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Running)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Starting)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Starting\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Starting`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Starting)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Lost)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Lost\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Lost`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Lost)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskGroupSummary) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *TaskGroupSummary) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Queued": - if r.TryDecodeAsNil() { - x.Queued = 0 - } else { - x.Queued = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Complete": - if r.TryDecodeAsNil() { - x.Complete = 0 - } else { - x.Complete = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Failed": - if r.TryDecodeAsNil() { - x.Failed = 0 - } else { - x.Failed = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Running": - if r.TryDecodeAsNil() { - x.Running = 0 - } else { - x.Running = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Starting": - if r.TryDecodeAsNil() { - x.Starting = 0 - } else { - x.Starting = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Lost": - if r.TryDecodeAsNil() { - x.Lost = 0 - } else { - x.Lost = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskGroupSummary) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Queued = 0 - } else { - x.Queued = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Complete = 0 - } else { - x.Complete = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Failed = 0 - } else { - x.Failed = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Running = 0 - } else { - x.Running = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Starting = 0 - } else { - x.Starting = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Lost = 0 - } else { - x.Lost = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *UpdateStrategy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(x.Stagger)); yyxt4 != nil { - z.EncExtension(x.Stagger, yyxt4) - } else { - r.EncodeInt(int64(x.Stagger)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Stagger\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Stagger`) - } - r.WriteMapElemValue() - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Stagger)); yyxt5 != nil { - z.EncExtension(x.Stagger, yyxt5) - } else { - r.EncodeInt(int64(x.Stagger)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MaxParallel)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxParallel\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxParallel`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MaxParallel)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthCheck\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthCheck`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt13 != nil { - z.EncExtension(x.MinHealthyTime, yyxt13) - } else { - r.EncodeInt(int64(x.MinHealthyTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinHealthyTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinHealthyTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt14 != nil { - z.EncExtension(x.MinHealthyTime, yyxt14) - } else { - r.EncodeInt(int64(x.MinHealthyTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt16 != nil { - z.EncExtension(x.HealthyDeadline, yyxt16) - } else { - r.EncodeInt(int64(x.HealthyDeadline)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthyDeadline\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyDeadline`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt17 != nil { - z.EncExtension(x.HealthyDeadline, yyxt17) - } else { - r.EncodeInt(int64(x.HealthyDeadline)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt19 != nil { - z.EncExtension(x.ProgressDeadline, yyxt19) - } else { - r.EncodeInt(int64(x.ProgressDeadline)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ProgressDeadline\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ProgressDeadline`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt20 != nil { - z.EncExtension(x.ProgressDeadline, yyxt20) - } else { - r.EncodeInt(int64(x.ProgressDeadline)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AutoRevert)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AutoRevert\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AutoRevert`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AutoRevert)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AutoPromote)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AutoPromote\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AutoPromote`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AutoPromote)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Canary)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Canary\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Canary`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Canary)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *UpdateStrategy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *UpdateStrategy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Stagger": - if r.TryDecodeAsNil() { - x.Stagger = 0 - } else { - if false { - } else if yyxt5 := z.Extension(z.I2Rtid(x.Stagger)); yyxt5 != nil { - z.DecExtension(x.Stagger, yyxt5) - } else { - x.Stagger = (time.Duration)(r.DecodeInt64()) - } - } - case "MaxParallel": - if r.TryDecodeAsNil() { - x.MaxParallel = 0 - } else { - x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "HealthCheck": - if r.TryDecodeAsNil() { - x.HealthCheck = "" - } else { - x.HealthCheck = (string)(r.DecodeString()) - } - case "MinHealthyTime": - if r.TryDecodeAsNil() { - x.MinHealthyTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt9 != nil { - z.DecExtension(x.MinHealthyTime, yyxt9) - } else { - x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) - } - } - case "HealthyDeadline": - if r.TryDecodeAsNil() { - x.HealthyDeadline = 0 - } else { - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt11 != nil { - z.DecExtension(x.HealthyDeadline, yyxt11) - } else { - x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) - } - } - case "ProgressDeadline": - if r.TryDecodeAsNil() { - x.ProgressDeadline = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt13 != nil { - z.DecExtension(x.ProgressDeadline, yyxt13) - } else { - x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) - } - } - case "AutoRevert": - if r.TryDecodeAsNil() { - x.AutoRevert = false - } else { - x.AutoRevert = (bool)(r.DecodeBool()) - } - case "AutoPromote": - if r.TryDecodeAsNil() { - x.AutoPromote = false - } else { - x.AutoPromote = (bool)(r.DecodeBool()) - } - case "Canary": - if r.TryDecodeAsNil() { - x.Canary = 0 - } else { - x.Canary = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *UpdateStrategy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj17 int - var yyb17 bool - var yyhl17 bool = l >= 0 - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Stagger = 0 - } else { - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.Stagger)); yyxt19 != nil { - z.DecExtension(x.Stagger, yyxt19) - } else { - x.Stagger = (time.Duration)(r.DecodeInt64()) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxParallel = 0 - } else { - x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthCheck = "" - } else { - x.HealthCheck = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MinHealthyTime = 0 - } else { - if false { - } else if yyxt23 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt23 != nil { - z.DecExtension(x.MinHealthyTime, yyxt23) - } else { - x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthyDeadline = 0 - } else { - if false { - } else if yyxt25 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt25 != nil { - z.DecExtension(x.HealthyDeadline, yyxt25) - } else { - x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ProgressDeadline = 0 - } else { - if false { - } else if yyxt27 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt27 != nil { - z.DecExtension(x.ProgressDeadline, yyxt27) - } else { - x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AutoRevert = false - } else { - x.AutoRevert = (bool)(r.DecodeBool()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AutoPromote = false - } else { - x.AutoPromote = (bool)(r.DecodeBool()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Canary = 0 - } else { - x.Canary = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj17-1, "") - } - r.ReadArrayEnd() -} - -func (x *PeriodicConfig) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Enabled)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Enabled\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Enabled`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Enabled)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Spec))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Spec)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Spec\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Spec`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Spec))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Spec)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SpecType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SpecType)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SpecType\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SpecType`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SpecType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SpecType)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.ProhibitOverlap)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ProhibitOverlap\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ProhibitOverlap`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.ProhibitOverlap)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TimeZone))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TimeZone)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TimeZone\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TimeZone`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TimeZone))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TimeZone)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PeriodicConfig) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PeriodicConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Enabled": - if r.TryDecodeAsNil() { - x.Enabled = false - } else { - x.Enabled = (bool)(r.DecodeBool()) - } - case "Spec": - if r.TryDecodeAsNil() { - x.Spec = "" - } else { - x.Spec = (string)(r.DecodeString()) - } - case "SpecType": - if r.TryDecodeAsNil() { - x.SpecType = "" - } else { - x.SpecType = (string)(r.DecodeString()) - } - case "ProhibitOverlap": - if r.TryDecodeAsNil() { - x.ProhibitOverlap = false - } else { - x.ProhibitOverlap = (bool)(r.DecodeBool()) - } - case "TimeZone": - if r.TryDecodeAsNil() { - x.TimeZone = "" - } else { - x.TimeZone = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PeriodicConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Enabled = false - } else { - x.Enabled = (bool)(r.DecodeBool()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Spec = "" - } else { - x.Spec = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SpecType = "" - } else { - x.SpecType = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ProhibitOverlap = false - } else { - x.ProhibitOverlap = (bool)(r.DecodeBool()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TimeZone = "" - } else { - x.TimeZone = (string)(r.DecodeString()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *PeriodicLaunch) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Launch) - } else if yyxt10 := z.Extension(z.I2Rtid(x.Launch)); yyxt10 != nil { - z.EncExtension(x.Launch, yyxt10) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Launch) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Launch) - } else { - z.EncFallback(x.Launch) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Launch\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Launch`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Launch) - } else if yyxt11 := z.Extension(z.I2Rtid(x.Launch)); yyxt11 != nil { - z.EncExtension(x.Launch, yyxt11) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Launch) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Launch) - } else { - z.EncFallback(x.Launch) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PeriodicLaunch) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PeriodicLaunch) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "Launch": - if r.TryDecodeAsNil() { - x.Launch = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Launch = r.DecodeTime() - } else if yyxt7 := z.Extension(z.I2Rtid(x.Launch)); yyxt7 != nil { - z.DecExtension(x.Launch, yyxt7) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Launch) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Launch) - } else { - z.DecFallback(&x.Launch, false) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PeriodicLaunch) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Launch = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Launch = r.DecodeTime() - } else if yyxt14 := z.Extension(z.I2Rtid(x.Launch)); yyxt14 != nil { - z.DecExtension(x.Launch, yyxt14) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Launch) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Launch) - } else { - z.DecFallback(&x.Launch, false) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ParameterizedJobConfig) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Payload))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Payload)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Payload\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Payload`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Payload))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Payload)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.MetaRequired == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.MetaRequired, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MetaRequired\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MetaRequired`) - } - r.WriteMapElemValue() - if x.MetaRequired == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.MetaRequired, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.MetaOptional == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.MetaOptional, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MetaOptional\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MetaOptional`) - } - r.WriteMapElemValue() - if x.MetaOptional == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.MetaOptional, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ParameterizedJobConfig) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ParameterizedJobConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Payload": - if r.TryDecodeAsNil() { - x.Payload = "" - } else { - x.Payload = (string)(r.DecodeString()) - } - case "MetaRequired": - if r.TryDecodeAsNil() { - x.MetaRequired = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.MetaRequired, d) - } - } - case "MetaOptional": - if r.TryDecodeAsNil() { - x.MetaOptional = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.MetaOptional, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ParameterizedJobConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Payload = "" - } else { - x.Payload = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MetaRequired = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.MetaRequired, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MetaOptional = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.MetaOptional, d) - } - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *DispatchPayloadConfig) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.File))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.File)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"File\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `File`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.File))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.File)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DispatchPayloadConfig) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DispatchPayloadConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "File": - if r.TryDecodeAsNil() { - x.File = "" - } else { - x.File = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DispatchPayloadConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.File = "" - } else { - x.File = (string)(r.DecodeString()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Attempts)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Attempts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Attempts`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Attempts)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.Interval)); yyxt7 != nil { - z.EncExtension(x.Interval, yyxt7) - } else { - r.EncodeInt(int64(x.Interval)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Interval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Interval`) - } - r.WriteMapElemValue() - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Interval)); yyxt8 != nil { - z.EncExtension(x.Interval, yyxt8) - } else { - r.EncodeInt(int64(x.Interval)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.Delay)); yyxt10 != nil { - z.EncExtension(x.Delay, yyxt10) - } else { - r.EncodeInt(int64(x.Delay)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Delay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Delay`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.Delay)); yyxt11 != nil { - z.EncExtension(x.Delay, yyxt11) - } else { - r.EncodeInt(int64(x.Delay)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Mode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Mode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Mode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Mode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RestartPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Attempts": - if r.TryDecodeAsNil() { - x.Attempts = 0 - } else { - x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Interval": - if r.TryDecodeAsNil() { - x.Interval = 0 - } else { - if false { - } else if yyxt6 := z.Extension(z.I2Rtid(x.Interval)); yyxt6 != nil { - z.DecExtension(x.Interval, yyxt6) - } else { - x.Interval = (time.Duration)(r.DecodeInt64()) - } - } - case "Delay": - if r.TryDecodeAsNil() { - x.Delay = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Delay)); yyxt8 != nil { - z.DecExtension(x.Delay, yyxt8) - } else { - x.Delay = (time.Duration)(r.DecodeInt64()) - } - } - case "Mode": - if r.TryDecodeAsNil() { - x.Mode = "" - } else { - x.Mode = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RestartPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Attempts = 0 - } else { - x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Interval = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.Interval)); yyxt13 != nil { - z.DecExtension(x.Interval, yyxt13) - } else { - x.Interval = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Delay = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.Delay)); yyxt15 != nil { - z.DecExtension(x.Delay, yyxt15) - } else { - x.Delay = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Mode = "" - } else { - x.Mode = (string)(r.DecodeString()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ReschedulePolicy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Attempts)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Attempts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Attempts`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Attempts)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.Interval)); yyxt7 != nil { - z.EncExtension(x.Interval, yyxt7) - } else { - r.EncodeInt(int64(x.Interval)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Interval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Interval`) - } - r.WriteMapElemValue() - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Interval)); yyxt8 != nil { - z.EncExtension(x.Interval, yyxt8) - } else { - r.EncodeInt(int64(x.Interval)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.Delay)); yyxt10 != nil { - z.EncExtension(x.Delay, yyxt10) - } else { - r.EncodeInt(int64(x.Delay)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Delay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Delay`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.Delay)); yyxt11 != nil { - z.EncExtension(x.Delay, yyxt11) - } else { - r.EncodeInt(int64(x.Delay)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DelayFunction))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DelayFunction)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DelayFunction\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DelayFunction`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DelayFunction))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DelayFunction)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt16 != nil { - z.EncExtension(x.MaxDelay, yyxt16) - } else { - r.EncodeInt(int64(x.MaxDelay)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxDelay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxDelay`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt17 != nil { - z.EncExtension(x.MaxDelay, yyxt17) - } else { - r.EncodeInt(int64(x.MaxDelay)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Unlimited)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Unlimited\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Unlimited`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Unlimited)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ReschedulePolicy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ReschedulePolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Attempts": - if r.TryDecodeAsNil() { - x.Attempts = 0 - } else { - x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Interval": - if r.TryDecodeAsNil() { - x.Interval = 0 - } else { - if false { - } else if yyxt6 := z.Extension(z.I2Rtid(x.Interval)); yyxt6 != nil { - z.DecExtension(x.Interval, yyxt6) - } else { - x.Interval = (time.Duration)(r.DecodeInt64()) - } - } - case "Delay": - if r.TryDecodeAsNil() { - x.Delay = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Delay)); yyxt8 != nil { - z.DecExtension(x.Delay, yyxt8) - } else { - x.Delay = (time.Duration)(r.DecodeInt64()) - } - } - case "DelayFunction": - if r.TryDecodeAsNil() { - x.DelayFunction = "" - } else { - x.DelayFunction = (string)(r.DecodeString()) - } - case "MaxDelay": - if r.TryDecodeAsNil() { - x.MaxDelay = 0 - } else { - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt11 != nil { - z.DecExtension(x.MaxDelay, yyxt11) - } else { - x.MaxDelay = (time.Duration)(r.DecodeInt64()) - } - } - case "Unlimited": - if r.TryDecodeAsNil() { - x.Unlimited = false - } else { - x.Unlimited = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ReschedulePolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Attempts = 0 - } else { - x.Attempts = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Interval = 0 - } else { - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.Interval)); yyxt16 != nil { - z.DecExtension(x.Interval, yyxt16) - } else { - x.Interval = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Delay = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.Delay)); yyxt18 != nil { - z.DecExtension(x.Delay, yyxt18) - } else { - x.Delay = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DelayFunction = "" - } else { - x.DelayFunction = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxDelay = 0 - } else { - if false { - } else if yyxt21 := z.Extension(z.I2Rtid(x.MaxDelay)); yyxt21 != nil { - z.DecExtension(x.MaxDelay, yyxt21) - } else { - x.MaxDelay = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Unlimited = false - } else { - x.Unlimited = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *MigrateStrategy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MaxParallel)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxParallel\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxParallel`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MaxParallel)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthCheck\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthCheck`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.HealthCheck))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.HealthCheck)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt10 != nil { - z.EncExtension(x.MinHealthyTime, yyxt10) - } else { - r.EncodeInt(int64(x.MinHealthyTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinHealthyTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinHealthyTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt11 != nil { - z.EncExtension(x.MinHealthyTime, yyxt11) - } else { - r.EncodeInt(int64(x.MinHealthyTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt13 != nil { - z.EncExtension(x.HealthyDeadline, yyxt13) - } else { - r.EncodeInt(int64(x.HealthyDeadline)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthyDeadline\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyDeadline`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt14 != nil { - z.EncExtension(x.HealthyDeadline, yyxt14) - } else { - r.EncodeInt(int64(x.HealthyDeadline)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *MigrateStrategy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *MigrateStrategy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "MaxParallel": - if r.TryDecodeAsNil() { - x.MaxParallel = 0 - } else { - x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "HealthCheck": - if r.TryDecodeAsNil() { - x.HealthCheck = "" - } else { - x.HealthCheck = (string)(r.DecodeString()) - } - case "MinHealthyTime": - if r.TryDecodeAsNil() { - x.MinHealthyTime = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt7 != nil { - z.DecExtension(x.MinHealthyTime, yyxt7) - } else { - x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) - } - } - case "HealthyDeadline": - if r.TryDecodeAsNil() { - x.HealthyDeadline = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt9 != nil { - z.DecExtension(x.HealthyDeadline, yyxt9) - } else { - x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *MigrateStrategy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxParallel = 0 - } else { - x.MaxParallel = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthCheck = "" - } else { - x.HealthCheck = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MinHealthyTime = 0 - } else { - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MinHealthyTime)); yyxt14 != nil { - z.DecExtension(x.MinHealthyTime, yyxt14) - } else { - x.MinHealthyTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthyDeadline = 0 - } else { - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.HealthyDeadline)); yyxt16 != nil { - z.DecExtension(x.HealthyDeadline, yyxt16) - } else { - x.HealthyDeadline = (time.Duration)(r.DecodeInt64()) - } - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *TaskGroup) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(15) - } else { - r.WriteMapStart(15) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Count)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Count\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Count`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Count)) - } - } - var yyn9 bool - if x.Update == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Update == nil { - r.EncodeNil() - } else { - x.Update.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Update\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Update`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.Update == nil { - r.EncodeNil() - } else { - x.Update.CodecEncodeSelf(e) - } - } - } - var yyn12 bool - if x.Migrate == nil { - yyn12 = true - goto LABEL12 - } - LABEL12: - if yyr2 || yy2arr2 { - if yyn12 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Migrate == nil { - r.EncodeNil() - } else { - x.Migrate.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Migrate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) - } - r.WriteMapElemValue() - if yyn12 { - r.EncodeNil() - } else { - if x.Migrate == nil { - r.EncodeNil() - } else { - x.Migrate.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Constraints == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Constraints\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) - } - r.WriteMapElemValue() - if x.Constraints == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) - } - } - } - var yyn18 bool - if x.RestartPolicy == nil { - yyn18 = true - goto LABEL18 - } - LABEL18: - if yyr2 || yy2arr2 { - if yyn18 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.RestartPolicy == nil { - r.EncodeNil() - } else { - x.RestartPolicy.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RestartPolicy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RestartPolicy`) - } - r.WriteMapElemValue() - if yyn18 { - r.EncodeNil() - } else { - if x.RestartPolicy == nil { - r.EncodeNil() - } else { - x.RestartPolicy.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTask(([]*Task)(x.Tasks), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tasks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tasks`) - } - r.WriteMapElemValue() - if x.Tasks == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTask(([]*Task)(x.Tasks), e) - } - } - } - var yyn24 bool - if x.EphemeralDisk == nil { - yyn24 = true - goto LABEL24 - } - LABEL24: - if yyr2 || yy2arr2 { - if yyn24 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.EphemeralDisk == nil { - r.EncodeNil() - } else { - x.EphemeralDisk.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EphemeralDisk\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EphemeralDisk`) - } - r.WriteMapElemValue() - if yyn24 { - r.EncodeNil() - } else { - if x.EphemeralDisk == nil { - r.EncodeNil() - } else { - x.EphemeralDisk.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Meta\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) - } - r.WriteMapElemValue() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } - var yyn30 bool - if x.ReschedulePolicy == nil { - yyn30 = true - goto LABEL30 - } - LABEL30: - if yyr2 || yy2arr2 { - if yyn30 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.ReschedulePolicy == nil { - r.EncodeNil() - } else { - x.ReschedulePolicy.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ReschedulePolicy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ReschedulePolicy`) - } - r.WriteMapElemValue() - if yyn30 { - r.EncodeNil() - } else { - if x.ReschedulePolicy == nil { - r.EncodeNil() - } else { - x.ReschedulePolicy.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Affinities == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Affinities\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) - } - r.WriteMapElemValue() - if x.Affinities == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Spreads == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Spreads\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Spreads`) - } - r.WriteMapElemValue() - if x.Spreads == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoSpread(([]*Spread)(x.Spreads), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Networks\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Networks`) - } - r.WriteMapElemValue() - if x.Networks == nil { - r.EncodeNil() - } else { - x.Networks.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Services == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoService(([]*Service)(x.Services), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Services\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Services`) - } - r.WriteMapElemValue() - if x.Services == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoService(([]*Service)(x.Services), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Volumes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoVolumeRequest((map[string]*VolumeRequest)(x.Volumes), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Volumes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Volumes`) - } - r.WriteMapElemValue() - if x.Volumes == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoVolumeRequest((map[string]*VolumeRequest)(x.Volumes), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskGroup) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *TaskGroup) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Count": - if r.TryDecodeAsNil() { - x.Count = 0 - } else { - x.Count = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Update": - if r.TryDecodeAsNil() { - if true && x.Update != nil { - x.Update = nil - } - } else { - if x.Update == nil { - x.Update = new(UpdateStrategy) - } - - x.Update.CodecDecodeSelf(d) - } - case "Migrate": - if r.TryDecodeAsNil() { - if true && x.Migrate != nil { - x.Migrate = nil - } - } else { - if x.Migrate == nil { - x.Migrate = new(MigrateStrategy) - } - - x.Migrate.CodecDecodeSelf(d) - } - case "Constraints": - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - if false { - } else { - h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) - } - } - case "RestartPolicy": - if r.TryDecodeAsNil() { - if true && x.RestartPolicy != nil { - x.RestartPolicy = nil - } - } else { - if x.RestartPolicy == nil { - x.RestartPolicy = new(RestartPolicy) - } - - x.RestartPolicy.CodecDecodeSelf(d) - } - case "Tasks": - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decSlicePtrtoTask((*[]*Task)(&x.Tasks), d) - } - } - case "EphemeralDisk": - if r.TryDecodeAsNil() { - if true && x.EphemeralDisk != nil { - x.EphemeralDisk = nil - } - } else { - if x.EphemeralDisk == nil { - x.EphemeralDisk = new(EphemeralDisk) - } - - x.EphemeralDisk.CodecDecodeSelf(d) - } - case "Meta": - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - case "ReschedulePolicy": - if r.TryDecodeAsNil() { - if true && x.ReschedulePolicy != nil { - x.ReschedulePolicy = nil - } - } else { - if x.ReschedulePolicy == nil { - x.ReschedulePolicy = new(ReschedulePolicy) - } - - x.ReschedulePolicy.CodecDecodeSelf(d) - } - case "Affinities": - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - if false { - } else { - h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) - } - } - case "Spreads": - if r.TryDecodeAsNil() { - x.Spreads = nil - } else { - if false { - } else { - h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) - } - } - case "Networks": - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - case "Services": - if r.TryDecodeAsNil() { - x.Services = nil - } else { - if false { - } else { - h.decSlicePtrtoService((*[]*Service)(&x.Services), d) - } - } - case "Volumes": - if r.TryDecodeAsNil() { - x.Volumes = nil - } else { - if false { - } else { - h.decMapstringPtrtoVolumeRequest((*map[string]*VolumeRequest)(&x.Volumes), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskGroup) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj26 int - var yyb26 bool - var yyhl26 bool = l >= 0 - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Count = 0 - } else { - x.Count = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Update != nil { - x.Update = nil - } - } else { - if x.Update == nil { - x.Update = new(UpdateStrategy) - } - - x.Update.CodecDecodeSelf(d) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Migrate != nil { - x.Migrate = nil - } - } else { - if x.Migrate == nil { - x.Migrate = new(MigrateStrategy) - } - - x.Migrate.CodecDecodeSelf(d) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - if false { - } else { - h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.RestartPolicy != nil { - x.RestartPolicy = nil - } - } else { - if x.RestartPolicy == nil { - x.RestartPolicy = new(RestartPolicy) - } - - x.RestartPolicy.CodecDecodeSelf(d) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tasks = nil - } else { - if false { - } else { - h.decSlicePtrtoTask((*[]*Task)(&x.Tasks), d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.EphemeralDisk != nil { - x.EphemeralDisk = nil - } - } else { - if x.EphemeralDisk == nil { - x.EphemeralDisk = new(EphemeralDisk) - } - - x.EphemeralDisk.CodecDecodeSelf(d) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.ReschedulePolicy != nil { - x.ReschedulePolicy = nil - } - } else { - if x.ReschedulePolicy == nil { - x.ReschedulePolicy = new(ReschedulePolicy) - } - - x.ReschedulePolicy.CodecDecodeSelf(d) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - if false { - } else { - h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Spreads = nil - } else { - if false { - } else { - h.decSlicePtrtoSpread((*[]*Spread)(&x.Spreads), d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Networks = nil - } else { - x.Networks.CodecDecodeSelf(d) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Services = nil - } else { - if false { - } else { - h.decSlicePtrtoService((*[]*Service)(&x.Services), d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Volumes = nil - } else { - if false { - } else { - h.decMapstringPtrtoVolumeRequest((*map[string]*VolumeRequest)(&x.Volumes), d) - } - } - for { - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj26-1, "") - } - r.ReadArrayEnd() -} - -func (x *CheckRestart) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Limit)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Limit\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Limit`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Limit)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.Grace)); yyxt7 != nil { - z.EncExtension(x.Grace, yyxt7) - } else { - r.EncodeInt(int64(x.Grace)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Grace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Grace`) - } - r.WriteMapElemValue() - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Grace)); yyxt8 != nil { - z.EncExtension(x.Grace, yyxt8) - } else { - r.EncodeInt(int64(x.Grace)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.IgnoreWarnings)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"IgnoreWarnings\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `IgnoreWarnings`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.IgnoreWarnings)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *CheckRestart) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *CheckRestart) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Limit": - if r.TryDecodeAsNil() { - x.Limit = 0 - } else { - x.Limit = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Grace": - if r.TryDecodeAsNil() { - x.Grace = 0 - } else { - if false { - } else if yyxt6 := z.Extension(z.I2Rtid(x.Grace)); yyxt6 != nil { - z.DecExtension(x.Grace, yyxt6) - } else { - x.Grace = (time.Duration)(r.DecodeInt64()) - } - } - case "IgnoreWarnings": - if r.TryDecodeAsNil() { - x.IgnoreWarnings = false - } else { - x.IgnoreWarnings = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *CheckRestart) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Limit = 0 - } else { - x.Limit = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Grace = 0 - } else { - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.Grace)); yyxt11 != nil { - z.DecExtension(x.Grace, yyxt11) - } else { - x.Grace = (time.Duration)(r.DecodeInt64()) - } - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.IgnoreWarnings = false - } else { - x.IgnoreWarnings = (bool)(r.DecodeBool()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *LogConfig) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MaxFiles)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxFiles\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxFiles`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MaxFiles)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.MaxFileSizeMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxFileSizeMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxFileSizeMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.MaxFileSizeMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *LogConfig) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *LogConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "MaxFiles": - if r.TryDecodeAsNil() { - x.MaxFiles = 0 - } else { - x.MaxFiles = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "MaxFileSizeMB": - if r.TryDecodeAsNil() { - x.MaxFileSizeMB = 0 - } else { - x.MaxFileSizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *LogConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxFiles = 0 - } else { - x.MaxFiles = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.MaxFileSizeMB = 0 - } else { - x.MaxFileSizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *Task) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(21) - } else { - r.WriteMapStart(21) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Driver\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Driver`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Driver))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Driver)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.User))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"User\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `User`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.User))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.User)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Config == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntfV(x.Config, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Config\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Config`) - } - r.WriteMapElemValue() - if x.Config == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntfV(x.Config, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Env == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Env, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Env\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Env`) - } - r.WriteMapElemValue() - if x.Env == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Env, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Services == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoService(([]*Service)(x.Services), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Services\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Services`) - } - r.WriteMapElemValue() - if x.Services == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoService(([]*Service)(x.Services), e) - } - } - } - var yyn21 bool - if x.Vault == nil { - yyn21 = true - goto LABEL21 - } - LABEL21: - if yyr2 || yy2arr2 { - if yyn21 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Vault == nil { - r.EncodeNil() - } else { - x.Vault.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Vault\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Vault`) - } - r.WriteMapElemValue() - if yyn21 { - r.EncodeNil() - } else { - if x.Vault == nil { - r.EncodeNil() - } else { - x.Vault.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Templates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTemplate(([]*Template)(x.Templates), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Templates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Templates`) - } - r.WriteMapElemValue() - if x.Templates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTemplate(([]*Template)(x.Templates), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Constraints == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Constraints\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Constraints`) - } - r.WriteMapElemValue() - if x.Constraints == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoConstraint(([]*Constraint)(x.Constraints), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Affinities == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Affinities\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Affinities`) - } - r.WriteMapElemValue() - if x.Affinities == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAffinity(([]*Affinity)(x.Affinities), e) - } - } - } - var yyn33 bool - if x.Resources == nil { - yyn33 = true - goto LABEL33 - } - LABEL33: - if yyr2 || yy2arr2 { - if yyn33 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Resources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) - } - r.WriteMapElemValue() - if yyn33 { - r.EncodeNil() - } else { - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } - var yyn36 bool - if x.DispatchPayload == nil { - yyn36 = true - goto LABEL36 - } - LABEL36: - if yyr2 || yy2arr2 { - if yyn36 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.DispatchPayload == nil { - r.EncodeNil() - } else { - x.DispatchPayload.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DispatchPayload\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DispatchPayload`) - } - r.WriteMapElemValue() - if yyn36 { - r.EncodeNil() - } else { - if x.DispatchPayload == nil { - r.EncodeNil() - } else { - x.DispatchPayload.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Meta\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Meta`) - } - r.WriteMapElemValue() - if x.Meta == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Meta, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt43 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt43 != nil { - z.EncExtension(x.KillTimeout, yyxt43) - } else { - r.EncodeInt(int64(x.KillTimeout)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KillTimeout\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KillTimeout`) - } - r.WriteMapElemValue() - if false { - } else if yyxt44 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt44 != nil { - z.EncExtension(x.KillTimeout, yyxt44) - } else { - r.EncodeInt(int64(x.KillTimeout)) - } - } - var yyn45 bool - if x.LogConfig == nil { - yyn45 = true - goto LABEL45 - } - LABEL45: - if yyr2 || yy2arr2 { - if yyn45 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.LogConfig == nil { - r.EncodeNil() - } else { - x.LogConfig.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LogConfig\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LogConfig`) - } - r.WriteMapElemValue() - if yyn45 { - r.EncodeNil() - } else { - if x.LogConfig == nil { - r.EncodeNil() - } else { - x.LogConfig.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Artifacts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskArtifact(([]*TaskArtifact)(x.Artifacts), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Artifacts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Artifacts`) - } - r.WriteMapElemValue() - if x.Artifacts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskArtifact(([]*TaskArtifact)(x.Artifacts), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Leader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Leader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Leader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Leader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt55 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt55 != nil { - z.EncExtension(x.ShutdownDelay, yyxt55) - } else { - r.EncodeInt(int64(x.ShutdownDelay)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ShutdownDelay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ShutdownDelay`) - } - r.WriteMapElemValue() - if false { - } else if yyxt56 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt56 != nil { - z.EncExtension(x.ShutdownDelay, yyxt56) - } else { - r.EncodeInt(int64(x.ShutdownDelay)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.VolumeMounts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoVolumeMount(([]*VolumeMount)(x.VolumeMounts), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"VolumeMounts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `VolumeMounts`) - } - r.WriteMapElemValue() - if x.VolumeMounts == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoVolumeMount(([]*VolumeMount)(x.VolumeMounts), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KillSignal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KillSignal`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillSignal)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - x.Kind.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Kind\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Kind`) - } - r.WriteMapElemValue() - x.Kind.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Task) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Task) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Driver": - if r.TryDecodeAsNil() { - x.Driver = "" - } else { - x.Driver = (string)(r.DecodeString()) - } - case "User": - if r.TryDecodeAsNil() { - x.User = "" - } else { - x.User = (string)(r.DecodeString()) - } - case "Config": - if r.TryDecodeAsNil() { - x.Config = nil - } else { - if false { - } else { - z.F.DecMapStringIntfX(&x.Config, d) - } - } - case "Env": - if r.TryDecodeAsNil() { - x.Env = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Env, d) - } - } - case "Services": - if r.TryDecodeAsNil() { - x.Services = nil - } else { - if false { - } else { - h.decSlicePtrtoService((*[]*Service)(&x.Services), d) - } - } - case "Vault": - if r.TryDecodeAsNil() { - if true && x.Vault != nil { - x.Vault = nil - } - } else { - if x.Vault == nil { - x.Vault = new(Vault) - } - - x.Vault.CodecDecodeSelf(d) - } - case "Templates": - if r.TryDecodeAsNil() { - x.Templates = nil - } else { - if false { - } else { - h.decSlicePtrtoTemplate((*[]*Template)(&x.Templates), d) - } - } - case "Constraints": - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - if false { - } else { - h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) - } - } - case "Affinities": - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - if false { - } else { - h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) - } - } - case "Resources": - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - case "DispatchPayload": - if r.TryDecodeAsNil() { - if true && x.DispatchPayload != nil { - x.DispatchPayload = nil - } - } else { - if x.DispatchPayload == nil { - x.DispatchPayload = new(DispatchPayloadConfig) - } - - x.DispatchPayload.CodecDecodeSelf(d) - } - case "Meta": - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - case "KillTimeout": - if r.TryDecodeAsNil() { - x.KillTimeout = 0 - } else { - if false { - } else if yyxt25 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt25 != nil { - z.DecExtension(x.KillTimeout, yyxt25) - } else { - x.KillTimeout = (time.Duration)(r.DecodeInt64()) - } - } - case "LogConfig": - if r.TryDecodeAsNil() { - if true && x.LogConfig != nil { - x.LogConfig = nil - } - } else { - if x.LogConfig == nil { - x.LogConfig = new(LogConfig) - } - - x.LogConfig.CodecDecodeSelf(d) - } - case "Artifacts": - if r.TryDecodeAsNil() { - x.Artifacts = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskArtifact((*[]*TaskArtifact)(&x.Artifacts), d) - } - } - case "Leader": - if r.TryDecodeAsNil() { - x.Leader = false - } else { - x.Leader = (bool)(r.DecodeBool()) - } - case "ShutdownDelay": - if r.TryDecodeAsNil() { - x.ShutdownDelay = 0 - } else { - if false { - } else if yyxt31 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt31 != nil { - z.DecExtension(x.ShutdownDelay, yyxt31) - } else { - x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) - } - } - case "VolumeMounts": - if r.TryDecodeAsNil() { - x.VolumeMounts = nil - } else { - if false { - } else { - h.decSlicePtrtoVolumeMount((*[]*VolumeMount)(&x.VolumeMounts), d) - } - } - case "KillSignal": - if r.TryDecodeAsNil() { - x.KillSignal = "" - } else { - x.KillSignal = (string)(r.DecodeString()) - } - case "Kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Task) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj36 int - var yyb36 bool - var yyhl36 bool = l >= 0 - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Driver = "" - } else { - x.Driver = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.User = "" - } else { - x.User = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Config = nil - } else { - if false { - } else { - z.F.DecMapStringIntfX(&x.Config, d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Env = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Env, d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Services = nil - } else { - if false { - } else { - h.decSlicePtrtoService((*[]*Service)(&x.Services), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Vault != nil { - x.Vault = nil - } - } else { - if x.Vault == nil { - x.Vault = new(Vault) - } - - x.Vault.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Templates = nil - } else { - if false { - } else { - h.decSlicePtrtoTemplate((*[]*Template)(&x.Templates), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Constraints = nil - } else { - if false { - } else { - h.decSlicePtrtoConstraint((*[]*Constraint)(&x.Constraints), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Affinities = nil - } else { - if false { - } else { - h.decSlicePtrtoAffinity((*[]*Affinity)(&x.Affinities), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DispatchPayload != nil { - x.DispatchPayload = nil - } - } else { - if x.DispatchPayload == nil { - x.DispatchPayload = new(DispatchPayloadConfig) - } - - x.DispatchPayload.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Meta = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Meta, d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KillTimeout = 0 - } else { - if false { - } else if yyxt58 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt58 != nil { - z.DecExtension(x.KillTimeout, yyxt58) - } else { - x.KillTimeout = (time.Duration)(r.DecodeInt64()) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.LogConfig != nil { - x.LogConfig = nil - } - } else { - if x.LogConfig == nil { - x.LogConfig = new(LogConfig) - } - - x.LogConfig.CodecDecodeSelf(d) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Artifacts = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskArtifact((*[]*TaskArtifact)(&x.Artifacts), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Leader = false - } else { - x.Leader = (bool)(r.DecodeBool()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ShutdownDelay = 0 - } else { - if false { - } else if yyxt64 := z.Extension(z.I2Rtid(x.ShutdownDelay)); yyxt64 != nil { - z.DecExtension(x.ShutdownDelay, yyxt64) - } else { - x.ShutdownDelay = (time.Duration)(r.DecodeInt64()) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.VolumeMounts = nil - } else { - if false { - } else { - h.decSlicePtrtoVolumeMount((*[]*VolumeMount)(&x.VolumeMounts), d) - } - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KillSignal = "" - } else { - x.KillSignal = (string)(r.DecodeString()) - } - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind.CodecDecodeSelf(d) - } - for { - yyj36++ - if yyhl36 { - yyb36 = yyj36 > l - } else { - yyb36 = r.CheckBreak() - } - if yyb36 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj36-1, "") - } - r.ReadArrayEnd() -} - -func (x TaskKind) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x)) - } - } -} - -func (x *TaskKind) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - *x = (TaskKind)(r.DecodeString()) - } -} - -func (x *Template) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(11) - } else { - r.WriteMapStart(11) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SourcePath))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SourcePath)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SourcePath\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SourcePath`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SourcePath))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SourcePath)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DestPath))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestPath)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DestPath\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DestPath`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DestPath))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DestPath)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EmbeddedTmpl))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EmbeddedTmpl)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EmbeddedTmpl\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EmbeddedTmpl`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EmbeddedTmpl))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EmbeddedTmpl)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ChangeMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeMode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ChangeSignal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeSignal`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt19 := z.Extension(z.I2Rtid(x.Splay)); yyxt19 != nil { - z.EncExtension(x.Splay, yyxt19) - } else { - r.EncodeInt(int64(x.Splay)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Splay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Splay`) - } - r.WriteMapElemValue() - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.Splay)); yyxt20 != nil { - z.EncExtension(x.Splay, yyxt20) - } else { - r.EncodeInt(int64(x.Splay)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Perms))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Perms)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Perms\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Perms`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Perms))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Perms)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LeftDelim))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeftDelim)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LeftDelim\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LeftDelim`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LeftDelim))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeftDelim)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RightDelim))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RightDelim)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RightDelim\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RightDelim`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RightDelim))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RightDelim)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Envvars)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Envvars\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Envvars`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Envvars)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt34 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt34 != nil { - z.EncExtension(x.VaultGrace, yyxt34) - } else { - r.EncodeInt(int64(x.VaultGrace)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"VaultGrace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `VaultGrace`) - } - r.WriteMapElemValue() - if false { - } else if yyxt35 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt35 != nil { - z.EncExtension(x.VaultGrace, yyxt35) - } else { - r.EncodeInt(int64(x.VaultGrace)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Template) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Template) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "SourcePath": - if r.TryDecodeAsNil() { - x.SourcePath = "" - } else { - x.SourcePath = (string)(r.DecodeString()) - } - case "DestPath": - if r.TryDecodeAsNil() { - x.DestPath = "" - } else { - x.DestPath = (string)(r.DecodeString()) - } - case "EmbeddedTmpl": - if r.TryDecodeAsNil() { - x.EmbeddedTmpl = "" - } else { - x.EmbeddedTmpl = (string)(r.DecodeString()) - } - case "ChangeMode": - if r.TryDecodeAsNil() { - x.ChangeMode = "" - } else { - x.ChangeMode = (string)(r.DecodeString()) - } - case "ChangeSignal": - if r.TryDecodeAsNil() { - x.ChangeSignal = "" - } else { - x.ChangeSignal = (string)(r.DecodeString()) - } - case "Splay": - if r.TryDecodeAsNil() { - x.Splay = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.Splay)); yyxt10 != nil { - z.DecExtension(x.Splay, yyxt10) - } else { - x.Splay = (time.Duration)(r.DecodeInt64()) - } - } - case "Perms": - if r.TryDecodeAsNil() { - x.Perms = "" - } else { - x.Perms = (string)(r.DecodeString()) - } - case "LeftDelim": - if r.TryDecodeAsNil() { - x.LeftDelim = "" - } else { - x.LeftDelim = (string)(r.DecodeString()) - } - case "RightDelim": - if r.TryDecodeAsNil() { - x.RightDelim = "" - } else { - x.RightDelim = (string)(r.DecodeString()) - } - case "Envvars": - if r.TryDecodeAsNil() { - x.Envvars = false - } else { - x.Envvars = (bool)(r.DecodeBool()) - } - case "VaultGrace": - if r.TryDecodeAsNil() { - x.VaultGrace = 0 - } else { - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt16 != nil { - z.DecExtension(x.VaultGrace, yyxt16) - } else { - x.VaultGrace = (time.Duration)(r.DecodeInt64()) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Template) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj17 int - var yyb17 bool - var yyhl17 bool = l >= 0 - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SourcePath = "" - } else { - x.SourcePath = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DestPath = "" - } else { - x.DestPath = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EmbeddedTmpl = "" - } else { - x.EmbeddedTmpl = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ChangeMode = "" - } else { - x.ChangeMode = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ChangeSignal = "" - } else { - x.ChangeSignal = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Splay = 0 - } else { - if false { - } else if yyxt24 := z.Extension(z.I2Rtid(x.Splay)); yyxt24 != nil { - z.DecExtension(x.Splay, yyxt24) - } else { - x.Splay = (time.Duration)(r.DecodeInt64()) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Perms = "" - } else { - x.Perms = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LeftDelim = "" - } else { - x.LeftDelim = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RightDelim = "" - } else { - x.RightDelim = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Envvars = false - } else { - x.Envvars = (bool)(r.DecodeBool()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.VaultGrace = 0 - } else { - if false { - } else if yyxt30 := z.Extension(z.I2Rtid(x.VaultGrace)); yyxt30 != nil { - z.DecExtension(x.VaultGrace, yyxt30) - } else { - x.VaultGrace = (time.Duration)(r.DecodeInt64()) - } - } - for { - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj17-1, "") - } - r.ReadArrayEnd() -} - -func (x *TaskState) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.State))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.State)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"State\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `State`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.State))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.State)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Failed)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Failed\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Failed`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Failed)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Restarts)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Restarts\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Restarts`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Restarts)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.LastRestart) - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt13 != nil { - z.EncExtension(x.LastRestart, yyxt13) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.LastRestart) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.LastRestart) - } else { - z.EncFallback(x.LastRestart) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastRestart\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastRestart`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.LastRestart) - } else if yyxt14 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt14 != nil { - z.EncExtension(x.LastRestart, yyxt14) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.LastRestart) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.LastRestart) - } else { - z.EncFallback(x.LastRestart) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.StartedAt) - } else if yyxt16 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt16 != nil { - z.EncExtension(x.StartedAt, yyxt16) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.StartedAt) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartedAt) - } else { - z.EncFallback(x.StartedAt) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StartedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StartedAt`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.StartedAt) - } else if yyxt17 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt17 != nil { - z.EncExtension(x.StartedAt, yyxt17) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.StartedAt) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartedAt) - } else { - z.EncFallback(x.StartedAt) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.FinishedAt) - } else if yyxt19 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt19 != nil { - z.EncExtension(x.FinishedAt, yyxt19) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.FinishedAt) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.FinishedAt) - } else { - z.EncFallback(x.FinishedAt) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FinishedAt\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FinishedAt`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.FinishedAt) - } else if yyxt20 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt20 != nil { - z.EncExtension(x.FinishedAt, yyxt20) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.FinishedAt) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.FinishedAt) - } else { - z.EncFallback(x.FinishedAt) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Events == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskEvent(([]*TaskEvent)(x.Events), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Events\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Events`) - } - r.WriteMapElemValue() - if x.Events == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoTaskEvent(([]*TaskEvent)(x.Events), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskState) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *TaskState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "State": - if r.TryDecodeAsNil() { - x.State = "" - } else { - x.State = (string)(r.DecodeString()) - } - case "Failed": - if r.TryDecodeAsNil() { - x.Failed = false - } else { - x.Failed = (bool)(r.DecodeBool()) - } - case "Restarts": - if r.TryDecodeAsNil() { - x.Restarts = 0 - } else { - x.Restarts = (uint64)(r.DecodeUint64()) - } - case "LastRestart": - if r.TryDecodeAsNil() { - x.LastRestart = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.LastRestart = r.DecodeTime() - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt8 != nil { - z.DecExtension(x.LastRestart, yyxt8) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.LastRestart) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.LastRestart) - } else { - z.DecFallback(&x.LastRestart, false) - } - } - case "StartedAt": - if r.TryDecodeAsNil() { - x.StartedAt = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.StartedAt = r.DecodeTime() - } else if yyxt10 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt10 != nil { - z.DecExtension(x.StartedAt, yyxt10) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.StartedAt) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.StartedAt) - } else { - z.DecFallback(&x.StartedAt, false) - } - } - case "FinishedAt": - if r.TryDecodeAsNil() { - x.FinishedAt = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.FinishedAt = r.DecodeTime() - } else if yyxt12 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt12 != nil { - z.DecExtension(x.FinishedAt, yyxt12) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.FinishedAt) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.FinishedAt) - } else { - z.DecFallback(&x.FinishedAt, false) - } - } - case "Events": - if r.TryDecodeAsNil() { - x.Events = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskEvent((*[]*TaskEvent)(&x.Events), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.State = "" - } else { - x.State = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Failed = false - } else { - x.Failed = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Restarts = 0 - } else { - x.Restarts = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LastRestart = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.LastRestart = r.DecodeTime() - } else if yyxt20 := z.Extension(z.I2Rtid(x.LastRestart)); yyxt20 != nil { - z.DecExtension(x.LastRestart, yyxt20) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.LastRestart) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.LastRestart) - } else { - z.DecFallback(&x.LastRestart, false) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StartedAt = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.StartedAt = r.DecodeTime() - } else if yyxt22 := z.Extension(z.I2Rtid(x.StartedAt)); yyxt22 != nil { - z.DecExtension(x.StartedAt, yyxt22) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.StartedAt) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.StartedAt) - } else { - z.DecFallback(&x.StartedAt, false) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FinishedAt = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.FinishedAt = r.DecodeTime() - } else if yyxt24 := z.Extension(z.I2Rtid(x.FinishedAt)); yyxt24 != nil { - z.DecExtension(x.FinishedAt, yyxt24) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.FinishedAt) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.FinishedAt) - } else { - z.DecFallback(&x.FinishedAt, false) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Events = nil - } else { - if false { - } else { - h.decSlicePtrtoTaskEvent((*[]*TaskEvent)(&x.Events), d) - } - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *TaskEvent) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(24) - } else { - r.WriteMapStart(24) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Time)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Time\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Time`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Time)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Message\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Message`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Message))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Message)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DisplayMessage))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DisplayMessage)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DisplayMessage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DisplayMessage`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DisplayMessage))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DisplayMessage)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Details == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Details, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Details\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Details`) - } - r.WriteMapElemValue() - if x.Details == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Details, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.FailsTask)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FailsTask\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FailsTask`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.FailsTask)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RestartReason))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RestartReason)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RestartReason\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RestartReason`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RestartReason))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RestartReason)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SetupError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SetupError)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SetupError\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SetupError`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SetupError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SetupError)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DriverError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverError)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DriverError\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DriverError`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DriverError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverError)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.ExitCode)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ExitCode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ExitCode`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.ExitCode)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Signal)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Signal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Signal`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Signal)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt37 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt37 != nil { - z.EncExtension(x.KillTimeout, yyxt37) - } else { - r.EncodeInt(int64(x.KillTimeout)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KillTimeout\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KillTimeout`) - } - r.WriteMapElemValue() - if false { - } else if yyxt38 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt38 != nil { - z.EncExtension(x.KillTimeout, yyxt38) - } else { - r.EncodeInt(int64(x.KillTimeout)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillError)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KillError\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KillError`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillError)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillReason))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillReason)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KillReason\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KillReason`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.KillReason))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.KillReason)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.StartDelay)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StartDelay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StartDelay`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.StartDelay)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DownloadError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DownloadError)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DownloadError\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DownloadError`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DownloadError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DownloadError)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ValidationError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ValidationError)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ValidationError\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ValidationError`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ValidationError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ValidationError)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.DiskLimit)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DiskLimit\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DiskLimit`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.DiskLimit)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FailedSibling))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FailedSibling)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FailedSibling\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FailedSibling`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FailedSibling))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FailedSibling)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.VaultError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultError)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"VaultError\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `VaultError`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.VaultError))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.VaultError)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignalReason))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignalReason)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskSignalReason\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskSignalReason`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignalReason))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignalReason)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignal)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskSignal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskSignal`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskSignal)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DriverMessage))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverMessage)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DriverMessage\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DriverMessage`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DriverMessage))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DriverMessage)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GenericSource))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GenericSource)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"GenericSource\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `GenericSource`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GenericSource))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GenericSource)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskEvent) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *TaskEvent) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Time": - if r.TryDecodeAsNil() { - x.Time = 0 - } else { - x.Time = (int64)(r.DecodeInt64()) - } - case "Message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = (string)(r.DecodeString()) - } - case "DisplayMessage": - if r.TryDecodeAsNil() { - x.DisplayMessage = "" - } else { - x.DisplayMessage = (string)(r.DecodeString()) - } - case "Details": - if r.TryDecodeAsNil() { - x.Details = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Details, d) - } - } - case "FailsTask": - if r.TryDecodeAsNil() { - x.FailsTask = false - } else { - x.FailsTask = (bool)(r.DecodeBool()) - } - case "RestartReason": - if r.TryDecodeAsNil() { - x.RestartReason = "" - } else { - x.RestartReason = (string)(r.DecodeString()) - } - case "SetupError": - if r.TryDecodeAsNil() { - x.SetupError = "" - } else { - x.SetupError = (string)(r.DecodeString()) - } - case "DriverError": - if r.TryDecodeAsNil() { - x.DriverError = "" - } else { - x.DriverError = (string)(r.DecodeString()) - } - case "ExitCode": - if r.TryDecodeAsNil() { - x.ExitCode = 0 - } else { - x.ExitCode = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Signal": - if r.TryDecodeAsNil() { - x.Signal = 0 - } else { - x.Signal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "KillTimeout": - if r.TryDecodeAsNil() { - x.KillTimeout = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt17 != nil { - z.DecExtension(x.KillTimeout, yyxt17) - } else { - x.KillTimeout = (time.Duration)(r.DecodeInt64()) - } - } - case "KillError": - if r.TryDecodeAsNil() { - x.KillError = "" - } else { - x.KillError = (string)(r.DecodeString()) - } - case "KillReason": - if r.TryDecodeAsNil() { - x.KillReason = "" - } else { - x.KillReason = (string)(r.DecodeString()) - } - case "StartDelay": - if r.TryDecodeAsNil() { - x.StartDelay = 0 - } else { - x.StartDelay = (int64)(r.DecodeInt64()) - } - case "DownloadError": - if r.TryDecodeAsNil() { - x.DownloadError = "" - } else { - x.DownloadError = (string)(r.DecodeString()) - } - case "ValidationError": - if r.TryDecodeAsNil() { - x.ValidationError = "" - } else { - x.ValidationError = (string)(r.DecodeString()) - } - case "DiskLimit": - if r.TryDecodeAsNil() { - x.DiskLimit = 0 - } else { - x.DiskLimit = (int64)(r.DecodeInt64()) - } - case "FailedSibling": - if r.TryDecodeAsNil() { - x.FailedSibling = "" - } else { - x.FailedSibling = (string)(r.DecodeString()) - } - case "VaultError": - if r.TryDecodeAsNil() { - x.VaultError = "" - } else { - x.VaultError = (string)(r.DecodeString()) - } - case "TaskSignalReason": - if r.TryDecodeAsNil() { - x.TaskSignalReason = "" - } else { - x.TaskSignalReason = (string)(r.DecodeString()) - } - case "TaskSignal": - if r.TryDecodeAsNil() { - x.TaskSignal = "" - } else { - x.TaskSignal = (string)(r.DecodeString()) - } - case "DriverMessage": - if r.TryDecodeAsNil() { - x.DriverMessage = "" - } else { - x.DriverMessage = (string)(r.DecodeString()) - } - case "GenericSource": - if r.TryDecodeAsNil() { - x.GenericSource = "" - } else { - x.GenericSource = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskEvent) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj30 int - var yyb30 bool - var yyhl30 bool = l >= 0 - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Time = 0 - } else { - x.Time = (int64)(r.DecodeInt64()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DisplayMessage = "" - } else { - x.DisplayMessage = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Details = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Details, d) - } - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FailsTask = false - } else { - x.FailsTask = (bool)(r.DecodeBool()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RestartReason = "" - } else { - x.RestartReason = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SetupError = "" - } else { - x.SetupError = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DriverError = "" - } else { - x.DriverError = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ExitCode = 0 - } else { - x.ExitCode = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Signal = 0 - } else { - x.Signal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KillTimeout = 0 - } else { - if false { - } else if yyxt44 := z.Extension(z.I2Rtid(x.KillTimeout)); yyxt44 != nil { - z.DecExtension(x.KillTimeout, yyxt44) - } else { - x.KillTimeout = (time.Duration)(r.DecodeInt64()) - } - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KillError = "" - } else { - x.KillError = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.KillReason = "" - } else { - x.KillReason = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StartDelay = 0 - } else { - x.StartDelay = (int64)(r.DecodeInt64()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DownloadError = "" - } else { - x.DownloadError = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ValidationError = "" - } else { - x.ValidationError = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DiskLimit = 0 - } else { - x.DiskLimit = (int64)(r.DecodeInt64()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FailedSibling = "" - } else { - x.FailedSibling = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.VaultError = "" - } else { - x.VaultError = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskSignalReason = "" - } else { - x.TaskSignalReason = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskSignal = "" - } else { - x.TaskSignal = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DriverMessage = "" - } else { - x.DriverMessage = (string)(r.DecodeString()) - } - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.GenericSource = "" - } else { - x.GenericSource = (string)(r.DecodeString()) - } - for { - yyj30++ - if yyhl30 { - yyb30 = yyj30 > l - } else { - yyb30 = r.CheckBreak() - } - if yyb30 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj30-1, "") - } - r.ReadArrayEnd() -} - -func (x *TaskArtifact) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GetterSource))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterSource)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"GetterSource\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `GetterSource`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GetterSource))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterSource)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.GetterOptions == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.GetterOptions, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"GetterOptions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `GetterOptions`) - } - r.WriteMapElemValue() - if x.GetterOptions == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.GetterOptions, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GetterMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterMode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"GetterMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `GetterMode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.GetterMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.GetterMode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RelativeDest))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RelativeDest)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RelativeDest\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RelativeDest`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RelativeDest))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RelativeDest)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *TaskArtifact) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *TaskArtifact) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "GetterSource": - if r.TryDecodeAsNil() { - x.GetterSource = "" - } else { - x.GetterSource = (string)(r.DecodeString()) - } - case "GetterOptions": - if r.TryDecodeAsNil() { - x.GetterOptions = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.GetterOptions, d) - } - } - case "GetterMode": - if r.TryDecodeAsNil() { - x.GetterMode = "" - } else { - x.GetterMode = (string)(r.DecodeString()) - } - case "RelativeDest": - if r.TryDecodeAsNil() { - x.RelativeDest = "" - } else { - x.RelativeDest = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *TaskArtifact) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.GetterSource = "" - } else { - x.GetterSource = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.GetterOptions = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.GetterOptions, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.GetterMode = "" - } else { - x.GetterMode = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RelativeDest = "" - } else { - x.RelativeDest = (string)(r.DecodeString()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *Constraint) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LTarget\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LTarget`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RTarget\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RTarget`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Operand\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Operand`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Constraint) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Constraint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "LTarget": - if r.TryDecodeAsNil() { - x.LTarget = "" - } else { - x.LTarget = (string)(r.DecodeString()) - } - case "RTarget": - if r.TryDecodeAsNil() { - x.RTarget = "" - } else { - x.RTarget = (string)(r.DecodeString()) - } - case "Operand": - if r.TryDecodeAsNil() { - x.Operand = "" - } else { - x.Operand = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Constraint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LTarget = "" - } else { - x.LTarget = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RTarget = "" - } else { - x.RTarget = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Operand = "" - } else { - x.Operand = (string)(r.DecodeString()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x Constraints) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encConstraints((Constraints)(x), e) - } - } -} - -func (x *Constraints) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decConstraints((*Constraints)(x), d) - } -} - -func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LTarget\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LTarget`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LTarget)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RTarget\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RTarget`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.RTarget))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.RTarget)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Operand\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Operand`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Operand))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Operand)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Weight)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Weight\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Weight`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Weight)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "LTarget": - if r.TryDecodeAsNil() { - x.LTarget = "" - } else { - x.LTarget = (string)(r.DecodeString()) - } - case "RTarget": - if r.TryDecodeAsNil() { - x.RTarget = "" - } else { - x.RTarget = (string)(r.DecodeString()) - } - case "Operand": - if r.TryDecodeAsNil() { - x.Operand = "" - } else { - x.Operand = (string)(r.DecodeString()) - } - case "Weight": - if r.TryDecodeAsNil() { - x.Weight = 0 - } else { - x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LTarget = "" - } else { - x.LTarget = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RTarget = "" - } else { - x.RTarget = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Operand = "" - } else { - x.Operand = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Weight = 0 - } else { - x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *Spread) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Attribute))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Attribute)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Attribute\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Attribute`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Attribute))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Attribute)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.Weight)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Weight\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Weight`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Weight)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.SpreadTarget == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoSpreadTarget(([]*SpreadTarget)(x.SpreadTarget), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SpreadTarget\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SpreadTarget`) - } - r.WriteMapElemValue() - if x.SpreadTarget == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoSpreadTarget(([]*SpreadTarget)(x.SpreadTarget), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Spread) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Spread) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Attribute": - if r.TryDecodeAsNil() { - x.Attribute = "" - } else { - x.Attribute = (string)(r.DecodeString()) - } - case "Weight": - if r.TryDecodeAsNil() { - x.Weight = 0 - } else { - x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) - } - case "SpreadTarget": - if r.TryDecodeAsNil() { - x.SpreadTarget = nil - } else { - if false { - } else { - h.decSlicePtrtoSpreadTarget((*[]*SpreadTarget)(&x.SpreadTarget), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Spread) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Attribute = "" - } else { - x.Attribute = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Weight = 0 - } else { - x.Weight = (int8)(z.C.IntV(r.DecodeInt64(), 8)) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SpreadTarget = nil - } else { - if false { - } else { - h.decSlicePtrtoSpreadTarget((*[]*SpreadTarget)(&x.SpreadTarget), d) - } - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x Affinities) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - h.encAffinities((Affinities)(x), e) - } - } -} - -func (x *Affinities) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - h.decAffinities((*Affinities)(x), d) - } -} - -func (x *SpreadTarget) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Value))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Value)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Value\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Value`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Value))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Value)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Percent)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Percent\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Percent`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Percent)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SpreadTarget) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SpreadTarget) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Value": - if r.TryDecodeAsNil() { - x.Value = "" - } else { - x.Value = (string)(r.DecodeString()) - } - case "Percent": - if r.TryDecodeAsNil() { - x.Percent = 0 - } else { - x.Percent = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SpreadTarget) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Value = "" - } else { - x.Value = (string)(r.DecodeString()) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Percent = 0 - } else { - x.Percent = (uint8)(z.C.UintV(r.DecodeUint64(), 8)) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *EphemeralDisk) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Sticky)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Sticky\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Sticky`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Sticky)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.SizeMB)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SizeMB\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SizeMB`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.SizeMB)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Migrate)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Migrate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Migrate)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *EphemeralDisk) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *EphemeralDisk) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Sticky": - if r.TryDecodeAsNil() { - x.Sticky = false - } else { - x.Sticky = (bool)(r.DecodeBool()) - } - case "SizeMB": - if r.TryDecodeAsNil() { - x.SizeMB = 0 - } else { - x.SizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Migrate": - if r.TryDecodeAsNil() { - x.Migrate = false - } else { - x.Migrate = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *EphemeralDisk) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Sticky = false - } else { - x.Sticky = (bool)(r.DecodeBool()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SizeMB = 0 - } else { - x.SizeMB = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Migrate = false - } else { - x.Migrate = (bool)(r.DecodeBool()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *Vault) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Policies, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Policies\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) - } - r.WriteMapElemValue() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Policies, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Env)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Env\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Env`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Env)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ChangeMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeMode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeMode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ChangeSignal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ChangeSignal`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ChangeSignal))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ChangeSignal)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Vault) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Vault) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Policies": - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Policies, d) - } - } - case "Env": - if r.TryDecodeAsNil() { - x.Env = false - } else { - x.Env = (bool)(r.DecodeBool()) - } - case "ChangeMode": - if r.TryDecodeAsNil() { - x.ChangeMode = "" - } else { - x.ChangeMode = (string)(r.DecodeString()) - } - case "ChangeSignal": - if r.TryDecodeAsNil() { - x.ChangeSignal = "" - } else { - x.ChangeSignal = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Vault) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Policies, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Env = false - } else { - x.Env = (bool)(r.DecodeBool()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ChangeMode = "" - } else { - x.ChangeMode = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ChangeSignal = "" - } else { - x.ChangeSignal = (string)(r.DecodeString()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *Deployment) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(12) - } else { - r.WriteMapStart(12) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobSpecModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobSpecModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobSpecModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobSpecModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobCreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobCreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobCreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobCreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.TaskGroups == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDeploymentState((map[string]*DeploymentState)(x.TaskGroups), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskGroups\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroups`) - } - r.WriteMapElemValue() - if x.TaskGroups == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDeploymentState((map[string]*DeploymentState)(x.TaskGroups), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Deployment) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Deployment) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "JobVersion": - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - case "JobSpecModifyIndex": - if r.TryDecodeAsNil() { - x.JobSpecModifyIndex = 0 - } else { - x.JobSpecModifyIndex = (uint64)(r.DecodeUint64()) - } - case "JobCreateIndex": - if r.TryDecodeAsNil() { - x.JobCreateIndex = 0 - } else { - x.JobCreateIndex = (uint64)(r.DecodeUint64()) - } - case "TaskGroups": - if r.TryDecodeAsNil() { - x.TaskGroups = nil - } else { - if false { - } else { - h.decMapstringPtrtoDeploymentState((*map[string]*DeploymentState)(&x.TaskGroups), d) - } - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "StatusDescription": - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Deployment) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj17 int - var yyb17 bool - var yyhl17 bool = l >= 0 - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobSpecModifyIndex = 0 - } else { - x.JobSpecModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobCreateIndex = 0 - } else { - x.JobCreateIndex = (uint64)(r.DecodeUint64()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskGroups = nil - } else { - if false { - } else { - h.decMapstringPtrtoDeploymentState((*map[string]*DeploymentState)(&x.TaskGroups), d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj17-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentState) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(11) - } else { - r.WriteMapStart(11) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AutoRevert)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AutoRevert\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AutoRevert`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AutoRevert)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AutoPromote)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AutoPromote\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AutoPromote`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AutoPromote)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt10 != nil { - z.EncExtension(x.ProgressDeadline, yyxt10) - } else { - r.EncodeInt(int64(x.ProgressDeadline)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ProgressDeadline\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ProgressDeadline`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt11 != nil { - z.EncExtension(x.ProgressDeadline, yyxt11) - } else { - r.EncodeInt(int64(x.ProgressDeadline)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.RequireProgressBy) - } else if yyxt13 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt13 != nil { - z.EncExtension(x.RequireProgressBy, yyxt13) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.RequireProgressBy) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.RequireProgressBy) - } else { - z.EncFallback(x.RequireProgressBy) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RequireProgressBy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RequireProgressBy`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.RequireProgressBy) - } else if yyxt14 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt14 != nil { - z.EncExtension(x.RequireProgressBy, yyxt14) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.RequireProgressBy) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.RequireProgressBy) - } else { - z.EncFallback(x.RequireProgressBy) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Promoted)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Promoted\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Promoted`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Promoted)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.PlacedCanaries == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PlacedCanaries, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PlacedCanaries\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PlacedCanaries`) - } - r.WriteMapElemValue() - if x.PlacedCanaries == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PlacedCanaries, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.DesiredCanaries)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredCanaries\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredCanaries`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.DesiredCanaries)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.DesiredTotal)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredTotal\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTotal`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.DesiredTotal)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.PlacedAllocs)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PlacedAllocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PlacedAllocs`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.PlacedAllocs)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.HealthyAllocs)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"HealthyAllocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `HealthyAllocs`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.HealthyAllocs)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.UnhealthyAllocs)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"UnhealthyAllocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `UnhealthyAllocs`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.UnhealthyAllocs)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentState) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AutoRevert": - if r.TryDecodeAsNil() { - x.AutoRevert = false - } else { - x.AutoRevert = (bool)(r.DecodeBool()) - } - case "AutoPromote": - if r.TryDecodeAsNil() { - x.AutoPromote = false - } else { - x.AutoPromote = (bool)(r.DecodeBool()) - } - case "ProgressDeadline": - if r.TryDecodeAsNil() { - x.ProgressDeadline = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt7 != nil { - z.DecExtension(x.ProgressDeadline, yyxt7) - } else { - x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) - } - } - case "RequireProgressBy": - if r.TryDecodeAsNil() { - x.RequireProgressBy = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.RequireProgressBy = r.DecodeTime() - } else if yyxt9 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt9 != nil { - z.DecExtension(x.RequireProgressBy, yyxt9) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.RequireProgressBy) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.RequireProgressBy) - } else { - z.DecFallback(&x.RequireProgressBy, false) - } - } - case "Promoted": - if r.TryDecodeAsNil() { - x.Promoted = false - } else { - x.Promoted = (bool)(r.DecodeBool()) - } - case "PlacedCanaries": - if r.TryDecodeAsNil() { - x.PlacedCanaries = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PlacedCanaries, d) - } - } - case "DesiredCanaries": - if r.TryDecodeAsNil() { - x.DesiredCanaries = 0 - } else { - x.DesiredCanaries = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "DesiredTotal": - if r.TryDecodeAsNil() { - x.DesiredTotal = 0 - } else { - x.DesiredTotal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "PlacedAllocs": - if r.TryDecodeAsNil() { - x.PlacedAllocs = 0 - } else { - x.PlacedAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "HealthyAllocs": - if r.TryDecodeAsNil() { - x.HealthyAllocs = 0 - } else { - x.HealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "UnhealthyAllocs": - if r.TryDecodeAsNil() { - x.UnhealthyAllocs = 0 - } else { - x.UnhealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj18 int - var yyb18 bool - var yyhl18 bool = l >= 0 - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AutoRevert = false - } else { - x.AutoRevert = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AutoPromote = false - } else { - x.AutoPromote = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ProgressDeadline = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.ProgressDeadline)); yyxt22 != nil { - z.DecExtension(x.ProgressDeadline, yyxt22) - } else { - x.ProgressDeadline = (time.Duration)(r.DecodeInt64()) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RequireProgressBy = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.RequireProgressBy = r.DecodeTime() - } else if yyxt24 := z.Extension(z.I2Rtid(x.RequireProgressBy)); yyxt24 != nil { - z.DecExtension(x.RequireProgressBy, yyxt24) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.RequireProgressBy) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.RequireProgressBy) - } else { - z.DecFallback(&x.RequireProgressBy, false) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Promoted = false - } else { - x.Promoted = (bool)(r.DecodeBool()) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PlacedCanaries = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PlacedCanaries, d) - } - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredCanaries = 0 - } else { - x.DesiredCanaries = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredTotal = 0 - } else { - x.DesiredTotal = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PlacedAllocs = 0 - } else { - x.PlacedAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.HealthyAllocs = 0 - } else { - x.HealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.UnhealthyAllocs = 0 - } else { - x.UnhealthyAllocs = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj18++ - if yyhl18 { - yyb18 = yyj18 > l - } else { - yyb18 = r.CheckBreak() - } - if yyb18 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj18-1, "") - } - r.ReadArrayEnd() -} - -func (x *DeploymentStatusUpdate) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DeploymentStatusUpdate) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DeploymentStatusUpdate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "StatusDescription": - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DeploymentStatusUpdate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *RescheduleTracker) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Events == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoRescheduleEvent(([]*RescheduleEvent)(x.Events), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Events\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Events`) - } - r.WriteMapElemValue() - if x.Events == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoRescheduleEvent(([]*RescheduleEvent)(x.Events), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RescheduleTracker) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RescheduleTracker) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Events": - if r.TryDecodeAsNil() { - x.Events = nil - } else { - if false { - } else { - h.decSlicePtrtoRescheduleEvent((*[]*RescheduleEvent)(&x.Events), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RescheduleTracker) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Events = nil - } else { - if false { - } else { - h.decSlicePtrtoRescheduleEvent((*[]*RescheduleEvent)(&x.Events), d) - } - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *RescheduleEvent) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.RescheduleTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RescheduleTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.RescheduleTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PrevAllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevAllocID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PrevAllocID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PrevAllocID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PrevAllocID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevAllocID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PrevNodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevNodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PrevNodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PrevNodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PrevNodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PrevNodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.Delay)); yyxt13 != nil { - z.EncExtension(x.Delay, yyxt13) - } else { - r.EncodeInt(int64(x.Delay)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Delay\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Delay`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.Delay)); yyxt14 != nil { - z.EncExtension(x.Delay, yyxt14) - } else { - r.EncodeInt(int64(x.Delay)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RescheduleEvent) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RescheduleEvent) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "RescheduleTime": - if r.TryDecodeAsNil() { - x.RescheduleTime = 0 - } else { - x.RescheduleTime = (int64)(r.DecodeInt64()) - } - case "PrevAllocID": - if r.TryDecodeAsNil() { - x.PrevAllocID = "" - } else { - x.PrevAllocID = (string)(r.DecodeString()) - } - case "PrevNodeID": - if r.TryDecodeAsNil() { - x.PrevNodeID = "" - } else { - x.PrevNodeID = (string)(r.DecodeString()) - } - case "Delay": - if r.TryDecodeAsNil() { - x.Delay = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.Delay)); yyxt8 != nil { - z.DecExtension(x.Delay, yyxt8) - } else { - x.Delay = (time.Duration)(r.DecodeInt64()) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RescheduleEvent) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RescheduleTime = 0 - } else { - x.RescheduleTime = (int64)(r.DecodeInt64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PrevAllocID = "" - } else { - x.PrevAllocID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PrevNodeID = "" - } else { - x.PrevNodeID = (string)(r.DecodeString()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Delay = 0 - } else { - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.Delay)); yyxt14 != nil { - z.DecExtension(x.Delay, yyxt14) - } else { - x.Delay = (time.Duration)(r.DecodeInt64()) - } - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *DesiredTransition) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - var yyn3 bool - if x.Migrate == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Migrate == nil { - r.EncodeNil() - } else { - yy4 := *x.Migrate - if false { - } else { - r.EncodeBool(bool(yy4)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Migrate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Migrate == nil { - r.EncodeNil() - } else { - yy6 := *x.Migrate - if false { - } else { - r.EncodeBool(bool(yy6)) - } - } - } - } - var yyn8 bool - if x.Reschedule == nil { - yyn8 = true - goto LABEL8 - } - LABEL8: - if yyr2 || yy2arr2 { - if yyn8 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Reschedule == nil { - r.EncodeNil() - } else { - yy9 := *x.Reschedule - if false { - } else { - r.EncodeBool(bool(yy9)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Reschedule\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Reschedule`) - } - r.WriteMapElemValue() - if yyn8 { - r.EncodeNil() - } else { - if x.Reschedule == nil { - r.EncodeNil() - } else { - yy11 := *x.Reschedule - if false { - } else { - r.EncodeBool(bool(yy11)) - } - } - } - } - var yyn13 bool - if x.ForceReschedule == nil { - yyn13 = true - goto LABEL13 - } - LABEL13: - if yyr2 || yy2arr2 { - if yyn13 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.ForceReschedule == nil { - r.EncodeNil() - } else { - yy14 := *x.ForceReschedule - if false { - } else { - r.EncodeBool(bool(yy14)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ForceReschedule\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ForceReschedule`) - } - r.WriteMapElemValue() - if yyn13 { - r.EncodeNil() - } else { - if x.ForceReschedule == nil { - r.EncodeNil() - } else { - yy16 := *x.ForceReschedule - if false { - } else { - r.EncodeBool(bool(yy16)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DesiredTransition) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DesiredTransition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Migrate": - if r.TryDecodeAsNil() { - if true && x.Migrate != nil { - x.Migrate = nil - } - } else { - if x.Migrate == nil { - x.Migrate = new(bool) - } - - if false { - } else { - *x.Migrate = (bool)(r.DecodeBool()) - } - } - case "Reschedule": - if r.TryDecodeAsNil() { - if true && x.Reschedule != nil { - x.Reschedule = nil - } - } else { - if x.Reschedule == nil { - x.Reschedule = new(bool) - } - - if false { - } else { - *x.Reschedule = (bool)(r.DecodeBool()) - } - } - case "ForceReschedule": - if r.TryDecodeAsNil() { - if true && x.ForceReschedule != nil { - x.ForceReschedule = nil - } - } else { - if x.ForceReschedule == nil { - x.ForceReschedule = new(bool) - } - - if false { - } else { - *x.ForceReschedule = (bool)(r.DecodeBool()) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DesiredTransition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Migrate != nil { - x.Migrate = nil - } - } else { - if x.Migrate == nil { - x.Migrate = new(bool) - } - - if false { - } else { - *x.Migrate = (bool)(r.DecodeBool()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Reschedule != nil { - x.Reschedule = nil - } - } else { - if x.Reschedule == nil { - x.Reschedule = new(bool) - } - - if false { - } else { - *x.Reschedule = (bool)(r.DecodeBool()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.ForceReschedule != nil { - x.ForceReschedule = nil - } - } else { - if x.ForceReschedule == nil { - x.ForceReschedule = new(bool) - } - - if false { - } else { - *x.ForceReschedule = (bool)(r.DecodeBool()) - } - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *Allocation) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - var yyq2 = [33]bool{ // should field at this index be written? - x.ID != "", // ID - x.Namespace != "", // Namespace - x.EvalID != "", // EvalID - x.Name != "", // Name - x.NodeID != "", // NodeID - x.NodeName != "", // NodeName - x.JobID != "", // JobID - x.Job != nil, // Job - x.TaskGroup != "", // TaskGroup - x.Resources != nil, // Resources - x.SharedResources != nil, // SharedResources - len(x.TaskResources) != 0, // TaskResources - x.AllocatedResources != nil, // AllocatedResources - x.Metrics != nil, // Metrics - x.DesiredStatus != "", // DesiredStatus - x.DesiredDescription != "", // DesiredDescription - x.DesiredTransition != DesiredTransition{}, // DesiredTransition - x.ClientStatus != "", // ClientStatus - x.ClientDescription != "", // ClientDescription - len(x.TaskStates) != 0, // TaskStates - x.PreviousAllocation != "", // PreviousAllocation - x.NextAllocation != "", // NextAllocation - x.DeploymentID != "", // DeploymentID - x.DeploymentStatus != nil, // DeploymentStatus - x.RescheduleTracker != nil, // RescheduleTracker - x.FollowupEvalID != "", // FollowupEvalID - len(x.PreemptedAllocations) != 0, // PreemptedAllocations - x.PreemptedByAllocation != "", // PreemptedByAllocation - x.CreateIndex != 0, // CreateIndex - x.ModifyIndex != 0, // ModifyIndex - x.AllocModifyIndex != 0, // AllocModifyIndex - x.CreateTime != 0, // CreateTime - x.ModifyTime != 0, // ModifyTime - } - _ = yyq2 - if yyr2 || yy2arr2 { - r.WriteArrayStart(33) - } else { - var yynn2 int - for _, b := range yyq2 { - if b { - yynn2++ - } - } - r.WriteMapStart(yynn2) - yynn2 = 0 - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[0] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[0] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[1] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[1] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[2] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[2] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[3] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[3] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[4] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[4] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[5] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[5] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeName\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeName`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[6] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[6] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - } - var yyn24 bool - if x.Job == nil { - yyn24 = true - goto LABEL24 - } - LABEL24: - if yyr2 || yy2arr2 { - if yyn24 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[7] { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[7] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn24 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[8] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[8] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskGroup\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroup`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) - } - } - } - } - var yyn30 bool - if x.Resources == nil { - yyn30 = true - goto LABEL30 - } - LABEL30: - if yyr2 || yy2arr2 { - if yyn30 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[9] { - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[9] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Resources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) - } - r.WriteMapElemValue() - if yyn30 { - r.EncodeNil() - } else { - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } - } - var yyn33 bool - if x.SharedResources == nil { - yyn33 = true - goto LABEL33 - } - LABEL33: - if yyr2 || yy2arr2 { - if yyn33 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[10] { - if x.SharedResources == nil { - r.EncodeNil() - } else { - x.SharedResources.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[10] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SharedResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SharedResources`) - } - r.WriteMapElemValue() - if yyn33 { - r.EncodeNil() - } else { - if x.SharedResources == nil { - r.EncodeNil() - } else { - x.SharedResources.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[11] { - if x.TaskResources == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[11] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskResources`) - } - r.WriteMapElemValue() - if x.TaskResources == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) - } - } - } - } - var yyn39 bool - if x.AllocatedResources == nil { - yyn39 = true - goto LABEL39 - } - LABEL39: - if yyr2 || yy2arr2 { - if yyn39 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[12] { - if x.AllocatedResources == nil { - r.EncodeNil() - } else { - x.AllocatedResources.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[12] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocatedResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocatedResources`) - } - r.WriteMapElemValue() - if yyn39 { - r.EncodeNil() - } else { - if x.AllocatedResources == nil { - r.EncodeNil() - } else { - x.AllocatedResources.CodecEncodeSelf(e) - } - } - } - } - var yyn42 bool - if x.Metrics == nil { - yyn42 = true - goto LABEL42 - } - LABEL42: - if yyr2 || yy2arr2 { - if yyn42 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[13] { - if x.Metrics == nil { - r.EncodeNil() - } else { - x.Metrics.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[13] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Metrics\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Metrics`) - } - r.WriteMapElemValue() - if yyn42 { - r.EncodeNil() - } else { - if x.Metrics == nil { - r.EncodeNil() - } else { - x.Metrics.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[14] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[14] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredStatus`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[15] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[15] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[16] { - yy52 := &x.DesiredTransition - yy52.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2[16] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredTransition\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTransition`) - } - r.WriteMapElemValue() - yy54 := &x.DesiredTransition - yy54.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[17] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[17] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClientStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClientStatus`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[18] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[18] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClientDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClientDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[19] { - if x.TaskStates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[19] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskStates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskStates`) - } - r.WriteMapElemValue() - if x.TaskStates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[20] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[20] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreviousAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreviousAllocation`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[21] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[21] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NextAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NextAllocation`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[22] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[22] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - } - var yyn74 bool - if x.DeploymentStatus == nil { - yyn74 = true - goto LABEL74 - } - LABEL74: - if yyr2 || yy2arr2 { - if yyn74 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[23] { - if x.DeploymentStatus == nil { - r.EncodeNil() - } else { - x.DeploymentStatus.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[23] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentStatus`) - } - r.WriteMapElemValue() - if yyn74 { - r.EncodeNil() - } else { - if x.DeploymentStatus == nil { - r.EncodeNil() - } else { - x.DeploymentStatus.CodecEncodeSelf(e) - } - } - } - } - var yyn77 bool - if x.RescheduleTracker == nil { - yyn77 = true - goto LABEL77 - } - LABEL77: - if yyr2 || yy2arr2 { - if yyn77 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[24] { - if x.RescheduleTracker == nil { - r.EncodeNil() - } else { - x.RescheduleTracker.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[24] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RescheduleTracker\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTracker`) - } - r.WriteMapElemValue() - if yyn77 { - r.EncodeNil() - } else { - if x.RescheduleTracker == nil { - r.EncodeNil() - } else { - x.RescheduleTracker.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[25] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[25] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FollowupEvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FollowupEvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[26] { - if x.PreemptedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PreemptedAllocations, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[26] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptedAllocations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocations`) - } - r.WriteMapElemValue() - if x.PreemptedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PreemptedAllocations, e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[27] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[27] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptedByAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedByAllocation`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[28] { - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[28] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[29] { - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[29] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[30] { - if false { - } else { - r.EncodeUint(uint64(x.AllocModifyIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[30] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.AllocModifyIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[31] { - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[31] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[32] { - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[32] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Allocation) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Allocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "NodeName": - if r.TryDecodeAsNil() { - x.NodeName = "" - } else { - x.NodeName = (string)(r.DecodeString()) - } - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "TaskGroup": - if r.TryDecodeAsNil() { - x.TaskGroup = "" - } else { - x.TaskGroup = (string)(r.DecodeString()) - } - case "Resources": - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - case "SharedResources": - if r.TryDecodeAsNil() { - if true && x.SharedResources != nil { - x.SharedResources = nil - } - } else { - if x.SharedResources == nil { - x.SharedResources = new(Resources) - } - - x.SharedResources.CodecDecodeSelf(d) - } - case "TaskResources": - if r.TryDecodeAsNil() { - x.TaskResources = nil - } else { - if false { - } else { - h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) - } - } - case "AllocatedResources": - if r.TryDecodeAsNil() { - if true && x.AllocatedResources != nil { - x.AllocatedResources = nil - } - } else { - if x.AllocatedResources == nil { - x.AllocatedResources = new(AllocatedResources) - } - - x.AllocatedResources.CodecDecodeSelf(d) - } - case "Metrics": - if r.TryDecodeAsNil() { - if true && x.Metrics != nil { - x.Metrics = nil - } - } else { - if x.Metrics == nil { - x.Metrics = new(AllocMetric) - } - - x.Metrics.CodecDecodeSelf(d) - } - case "DesiredStatus": - if r.TryDecodeAsNil() { - x.DesiredStatus = "" - } else { - x.DesiredStatus = (string)(r.DecodeString()) - } - case "DesiredDescription": - if r.TryDecodeAsNil() { - x.DesiredDescription = "" - } else { - x.DesiredDescription = (string)(r.DecodeString()) - } - case "DesiredTransition": - if r.TryDecodeAsNil() { - x.DesiredTransition = DesiredTransition{} - } else { - x.DesiredTransition.CodecDecodeSelf(d) - } - case "ClientStatus": - if r.TryDecodeAsNil() { - x.ClientStatus = "" - } else { - x.ClientStatus = (string)(r.DecodeString()) - } - case "ClientDescription": - if r.TryDecodeAsNil() { - x.ClientDescription = "" - } else { - x.ClientDescription = (string)(r.DecodeString()) - } - case "TaskStates": - if r.TryDecodeAsNil() { - x.TaskStates = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) - } - } - case "PreviousAllocation": - if r.TryDecodeAsNil() { - x.PreviousAllocation = "" - } else { - x.PreviousAllocation = (string)(r.DecodeString()) - } - case "NextAllocation": - if r.TryDecodeAsNil() { - x.NextAllocation = "" - } else { - x.NextAllocation = (string)(r.DecodeString()) - } - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "DeploymentStatus": - if r.TryDecodeAsNil() { - if true && x.DeploymentStatus != nil { - x.DeploymentStatus = nil - } - } else { - if x.DeploymentStatus == nil { - x.DeploymentStatus = new(AllocDeploymentStatus) - } - - x.DeploymentStatus.CodecDecodeSelf(d) - } - case "RescheduleTracker": - if r.TryDecodeAsNil() { - if true && x.RescheduleTracker != nil { - x.RescheduleTracker = nil - } - } else { - if x.RescheduleTracker == nil { - x.RescheduleTracker = new(RescheduleTracker) - } - - x.RescheduleTracker.CodecDecodeSelf(d) - } - case "FollowupEvalID": - if r.TryDecodeAsNil() { - x.FollowupEvalID = "" - } else { - x.FollowupEvalID = (string)(r.DecodeString()) - } - case "PreemptedAllocations": - if r.TryDecodeAsNil() { - x.PreemptedAllocations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PreemptedAllocations, d) - } - } - case "PreemptedByAllocation": - if r.TryDecodeAsNil() { - x.PreemptedByAllocation = "" - } else { - x.PreemptedByAllocation = (string)(r.DecodeString()) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - case "AllocModifyIndex": - if r.TryDecodeAsNil() { - x.AllocModifyIndex = 0 - } else { - x.AllocModifyIndex = (uint64)(r.DecodeUint64()) - } - case "CreateTime": - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - case "ModifyTime": - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Allocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj40 int - var yyb40 bool - var yyhl40 bool = l >= 0 - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeName = "" - } else { - x.NodeName = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskGroup = "" - } else { - x.TaskGroup = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.SharedResources != nil { - x.SharedResources = nil - } - } else { - if x.SharedResources == nil { - x.SharedResources = new(Resources) - } - - x.SharedResources.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskResources = nil - } else { - if false { - } else { - h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.AllocatedResources != nil { - x.AllocatedResources = nil - } - } else { - if x.AllocatedResources == nil { - x.AllocatedResources = new(AllocatedResources) - } - - x.AllocatedResources.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Metrics != nil { - x.Metrics = nil - } - } else { - if x.Metrics == nil { - x.Metrics = new(AllocMetric) - } - - x.Metrics.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredStatus = "" - } else { - x.DesiredStatus = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredDescription = "" - } else { - x.DesiredDescription = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredTransition = DesiredTransition{} - } else { - x.DesiredTransition.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClientStatus = "" - } else { - x.ClientStatus = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClientDescription = "" - } else { - x.ClientDescription = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskStates = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreviousAllocation = "" - } else { - x.PreviousAllocation = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NextAllocation = "" - } else { - x.NextAllocation = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DeploymentStatus != nil { - x.DeploymentStatus = nil - } - } else { - if x.DeploymentStatus == nil { - x.DeploymentStatus = new(AllocDeploymentStatus) - } - - x.DeploymentStatus.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.RescheduleTracker != nil { - x.RescheduleTracker = nil - } - } else { - if x.RescheduleTracker == nil { - x.RescheduleTracker = new(RescheduleTracker) - } - - x.RescheduleTracker.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FollowupEvalID = "" - } else { - x.FollowupEvalID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptedAllocations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PreemptedAllocations, d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptedByAllocation = "" - } else { - x.PreemptedByAllocation = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocModifyIndex = 0 - } else { - x.AllocModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - for { - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj40-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocationDiff) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - var yyq2 = [33]bool{ // should field at this index be written? - x.ID != "", // ID - x.Namespace != "", // Namespace - x.EvalID != "", // EvalID - x.Name != "", // Name - x.NodeID != "", // NodeID - x.NodeName != "", // NodeName - x.JobID != "", // JobID - x.Job != nil, // Job - x.TaskGroup != "", // TaskGroup - x.Resources != nil, // Resources - x.SharedResources != nil, // SharedResources - len(x.TaskResources) != 0, // TaskResources - x.AllocatedResources != nil, // AllocatedResources - x.Metrics != nil, // Metrics - x.DesiredStatus != "", // DesiredStatus - x.DesiredDescription != "", // DesiredDescription - x.DesiredTransition != DesiredTransition{}, // DesiredTransition - x.ClientStatus != "", // ClientStatus - x.ClientDescription != "", // ClientDescription - len(x.TaskStates) != 0, // TaskStates - x.PreviousAllocation != "", // PreviousAllocation - x.NextAllocation != "", // NextAllocation - x.DeploymentID != "", // DeploymentID - x.DeploymentStatus != nil, // DeploymentStatus - x.RescheduleTracker != nil, // RescheduleTracker - x.FollowupEvalID != "", // FollowupEvalID - len(x.PreemptedAllocations) != 0, // PreemptedAllocations - x.PreemptedByAllocation != "", // PreemptedByAllocation - x.CreateIndex != 0, // CreateIndex - x.ModifyIndex != 0, // ModifyIndex - x.AllocModifyIndex != 0, // AllocModifyIndex - x.CreateTime != 0, // CreateTime - x.ModifyTime != 0, // ModifyTime - } - _ = yyq2 - if yyr2 || yy2arr2 { - r.WriteArrayStart(33) - } else { - var yynn2 int - for _, b := range yyq2 { - if b { - yynn2++ - } - } - r.WriteMapStart(yynn2) - yynn2 = 0 - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[0] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[0] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[1] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[1] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[2] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[2] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[3] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[3] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[4] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[4] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[5] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[5] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeName\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeName`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[6] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[6] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - } - var yyn24 bool - if x.Job == nil { - yyn24 = true - goto LABEL24 - } - LABEL24: - if yyr2 || yy2arr2 { - if yyn24 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[7] { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[7] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn24 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[8] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[8] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskGroup\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroup`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) - } - } - } - } - var yyn30 bool - if x.Resources == nil { - yyn30 = true - goto LABEL30 - } - LABEL30: - if yyr2 || yy2arr2 { - if yyn30 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[9] { - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[9] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Resources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Resources`) - } - r.WriteMapElemValue() - if yyn30 { - r.EncodeNil() - } else { - if x.Resources == nil { - r.EncodeNil() - } else { - x.Resources.CodecEncodeSelf(e) - } - } - } - } - var yyn33 bool - if x.SharedResources == nil { - yyn33 = true - goto LABEL33 - } - LABEL33: - if yyr2 || yy2arr2 { - if yyn33 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[10] { - if x.SharedResources == nil { - r.EncodeNil() - } else { - x.SharedResources.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[10] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SharedResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SharedResources`) - } - r.WriteMapElemValue() - if yyn33 { - r.EncodeNil() - } else { - if x.SharedResources == nil { - r.EncodeNil() - } else { - x.SharedResources.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[11] { - if x.TaskResources == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[11] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskResources`) - } - r.WriteMapElemValue() - if x.TaskResources == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoResources((map[string]*Resources)(x.TaskResources), e) - } - } - } - } - var yyn39 bool - if x.AllocatedResources == nil { - yyn39 = true - goto LABEL39 - } - LABEL39: - if yyr2 || yy2arr2 { - if yyn39 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[12] { - if x.AllocatedResources == nil { - r.EncodeNil() - } else { - x.AllocatedResources.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[12] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocatedResources\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocatedResources`) - } - r.WriteMapElemValue() - if yyn39 { - r.EncodeNil() - } else { - if x.AllocatedResources == nil { - r.EncodeNil() - } else { - x.AllocatedResources.CodecEncodeSelf(e) - } - } - } - } - var yyn42 bool - if x.Metrics == nil { - yyn42 = true - goto LABEL42 - } - LABEL42: - if yyr2 || yy2arr2 { - if yyn42 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[13] { - if x.Metrics == nil { - r.EncodeNil() - } else { - x.Metrics.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[13] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Metrics\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Metrics`) - } - r.WriteMapElemValue() - if yyn42 { - r.EncodeNil() - } else { - if x.Metrics == nil { - r.EncodeNil() - } else { - x.Metrics.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[14] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[14] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredStatus`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[15] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[15] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[16] { - yy52 := &x.DesiredTransition - yy52.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2[16] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredTransition\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTransition`) - } - r.WriteMapElemValue() - yy54 := &x.DesiredTransition - yy54.CodecEncodeSelf(e) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[17] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[17] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClientStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClientStatus`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[18] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[18] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClientDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClientDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[19] { - if x.TaskStates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[19] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskStates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskStates`) - } - r.WriteMapElemValue() - if x.TaskStates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[20] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[20] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreviousAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreviousAllocation`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousAllocation)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[21] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[21] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NextAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NextAllocation`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NextAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextAllocation)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[22] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[22] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - } - var yyn74 bool - if x.DeploymentStatus == nil { - yyn74 = true - goto LABEL74 - } - LABEL74: - if yyr2 || yy2arr2 { - if yyn74 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[23] { - if x.DeploymentStatus == nil { - r.EncodeNil() - } else { - x.DeploymentStatus.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[23] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentStatus`) - } - r.WriteMapElemValue() - if yyn74 { - r.EncodeNil() - } else { - if x.DeploymentStatus == nil { - r.EncodeNil() - } else { - x.DeploymentStatus.CodecEncodeSelf(e) - } - } - } - } - var yyn77 bool - if x.RescheduleTracker == nil { - yyn77 = true - goto LABEL77 - } - LABEL77: - if yyr2 || yy2arr2 { - if yyn77 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[24] { - if x.RescheduleTracker == nil { - r.EncodeNil() - } else { - x.RescheduleTracker.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[24] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RescheduleTracker\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTracker`) - } - r.WriteMapElemValue() - if yyn77 { - r.EncodeNil() - } else { - if x.RescheduleTracker == nil { - r.EncodeNil() - } else { - x.RescheduleTracker.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[25] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[25] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FollowupEvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FollowupEvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[26] { - if x.PreemptedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PreemptedAllocations, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[26] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptedAllocations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocations`) - } - r.WriteMapElemValue() - if x.PreemptedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PreemptedAllocations, e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[27] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[27] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptedByAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedByAllocation`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[28] { - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[28] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[29] { - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[29] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[30] { - if false { - } else { - r.EncodeUint(uint64(x.AllocModifyIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[30] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.AllocModifyIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[31] { - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[31] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[32] { - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[32] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocationDiff) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocationDiff) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "NodeName": - if r.TryDecodeAsNil() { - x.NodeName = "" - } else { - x.NodeName = (string)(r.DecodeString()) - } - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "TaskGroup": - if r.TryDecodeAsNil() { - x.TaskGroup = "" - } else { - x.TaskGroup = (string)(r.DecodeString()) - } - case "Resources": - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - case "SharedResources": - if r.TryDecodeAsNil() { - if true && x.SharedResources != nil { - x.SharedResources = nil - } - } else { - if x.SharedResources == nil { - x.SharedResources = new(Resources) - } - - x.SharedResources.CodecDecodeSelf(d) - } - case "TaskResources": - if r.TryDecodeAsNil() { - x.TaskResources = nil - } else { - if false { - } else { - h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) - } - } - case "AllocatedResources": - if r.TryDecodeAsNil() { - if true && x.AllocatedResources != nil { - x.AllocatedResources = nil - } - } else { - if x.AllocatedResources == nil { - x.AllocatedResources = new(AllocatedResources) - } - - x.AllocatedResources.CodecDecodeSelf(d) - } - case "Metrics": - if r.TryDecodeAsNil() { - if true && x.Metrics != nil { - x.Metrics = nil - } - } else { - if x.Metrics == nil { - x.Metrics = new(AllocMetric) - } - - x.Metrics.CodecDecodeSelf(d) - } - case "DesiredStatus": - if r.TryDecodeAsNil() { - x.DesiredStatus = "" - } else { - x.DesiredStatus = (string)(r.DecodeString()) - } - case "DesiredDescription": - if r.TryDecodeAsNil() { - x.DesiredDescription = "" - } else { - x.DesiredDescription = (string)(r.DecodeString()) - } - case "DesiredTransition": - if r.TryDecodeAsNil() { - x.DesiredTransition = DesiredTransition{} - } else { - x.DesiredTransition.CodecDecodeSelf(d) - } - case "ClientStatus": - if r.TryDecodeAsNil() { - x.ClientStatus = "" - } else { - x.ClientStatus = (string)(r.DecodeString()) - } - case "ClientDescription": - if r.TryDecodeAsNil() { - x.ClientDescription = "" - } else { - x.ClientDescription = (string)(r.DecodeString()) - } - case "TaskStates": - if r.TryDecodeAsNil() { - x.TaskStates = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) - } - } - case "PreviousAllocation": - if r.TryDecodeAsNil() { - x.PreviousAllocation = "" - } else { - x.PreviousAllocation = (string)(r.DecodeString()) - } - case "NextAllocation": - if r.TryDecodeAsNil() { - x.NextAllocation = "" - } else { - x.NextAllocation = (string)(r.DecodeString()) - } - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "DeploymentStatus": - if r.TryDecodeAsNil() { - if true && x.DeploymentStatus != nil { - x.DeploymentStatus = nil - } - } else { - if x.DeploymentStatus == nil { - x.DeploymentStatus = new(AllocDeploymentStatus) - } - - x.DeploymentStatus.CodecDecodeSelf(d) - } - case "RescheduleTracker": - if r.TryDecodeAsNil() { - if true && x.RescheduleTracker != nil { - x.RescheduleTracker = nil - } - } else { - if x.RescheduleTracker == nil { - x.RescheduleTracker = new(RescheduleTracker) - } - - x.RescheduleTracker.CodecDecodeSelf(d) - } - case "FollowupEvalID": - if r.TryDecodeAsNil() { - x.FollowupEvalID = "" - } else { - x.FollowupEvalID = (string)(r.DecodeString()) - } - case "PreemptedAllocations": - if r.TryDecodeAsNil() { - x.PreemptedAllocations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PreemptedAllocations, d) - } - } - case "PreemptedByAllocation": - if r.TryDecodeAsNil() { - x.PreemptedByAllocation = "" - } else { - x.PreemptedByAllocation = (string)(r.DecodeString()) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - case "AllocModifyIndex": - if r.TryDecodeAsNil() { - x.AllocModifyIndex = 0 - } else { - x.AllocModifyIndex = (uint64)(r.DecodeUint64()) - } - case "CreateTime": - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - case "ModifyTime": - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocationDiff) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj40 int - var yyb40 bool - var yyhl40 bool = l >= 0 - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeName = "" - } else { - x.NodeName = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskGroup = "" - } else { - x.TaskGroup = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Resources != nil { - x.Resources = nil - } - } else { - if x.Resources == nil { - x.Resources = new(Resources) - } - - x.Resources.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.SharedResources != nil { - x.SharedResources = nil - } - } else { - if x.SharedResources == nil { - x.SharedResources = new(Resources) - } - - x.SharedResources.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskResources = nil - } else { - if false { - } else { - h.decMapstringPtrtoResources((*map[string]*Resources)(&x.TaskResources), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.AllocatedResources != nil { - x.AllocatedResources = nil - } - } else { - if x.AllocatedResources == nil { - x.AllocatedResources = new(AllocatedResources) - } - - x.AllocatedResources.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Metrics != nil { - x.Metrics = nil - } - } else { - if x.Metrics == nil { - x.Metrics = new(AllocMetric) - } - - x.Metrics.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredStatus = "" - } else { - x.DesiredStatus = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredDescription = "" - } else { - x.DesiredDescription = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredTransition = DesiredTransition{} - } else { - x.DesiredTransition.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClientStatus = "" - } else { - x.ClientStatus = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClientDescription = "" - } else { - x.ClientDescription = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskStates = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreviousAllocation = "" - } else { - x.PreviousAllocation = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NextAllocation = "" - } else { - x.NextAllocation = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DeploymentStatus != nil { - x.DeploymentStatus = nil - } - } else { - if x.DeploymentStatus == nil { - x.DeploymentStatus = new(AllocDeploymentStatus) - } - - x.DeploymentStatus.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.RescheduleTracker != nil { - x.RescheduleTracker = nil - } - } else { - if x.RescheduleTracker == nil { - x.RescheduleTracker = new(RescheduleTracker) - } - - x.RescheduleTracker.CodecDecodeSelf(d) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FollowupEvalID = "" - } else { - x.FollowupEvalID = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptedAllocations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PreemptedAllocations, d) - } - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptedByAllocation = "" - } else { - x.PreemptedByAllocation = (string)(r.DecodeString()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocModifyIndex = 0 - } else { - x.AllocModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - for { - yyj40++ - if yyhl40 { - yyb40 = yyj40 > l - } else { - yyb40 = r.CheckBreak() - } - if yyb40 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj40-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocListStub) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(25) - } else { - r.WriteMapStart(25) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeName\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeName`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeName))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeName)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobType)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobType\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobType`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobType))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobType)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobVersion\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobVersion`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobVersion)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskGroup\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskGroup`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TaskGroup))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TaskGroup)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredStatus`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredStatus)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DesiredDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DesiredDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClientStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClientStatus`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientStatus))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientStatus)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClientDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClientDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ClientDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ClientDescription)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - yy46 := &x.DesiredTransition - yy46.CodecEncodeSelf(e) - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredTransition\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTransition`) - } - r.WriteMapElemValue() - yy48 := &x.DesiredTransition - yy48.CodecEncodeSelf(e) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.TaskStates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TaskStates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TaskStates`) - } - r.WriteMapElemValue() - if x.TaskStates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoTaskState((map[string]*TaskState)(x.TaskStates), e) - } - } - } - var yyn53 bool - if x.DeploymentStatus == nil { - yyn53 = true - goto LABEL53 - } - LABEL53: - if yyr2 || yy2arr2 { - if yyn53 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.DeploymentStatus == nil { - r.EncodeNil() - } else { - x.DeploymentStatus.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentStatus\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentStatus`) - } - r.WriteMapElemValue() - if yyn53 { - r.EncodeNil() - } else { - if x.DeploymentStatus == nil { - r.EncodeNil() - } else { - x.DeploymentStatus.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FollowupEvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FollowupEvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.FollowupEvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.FollowupEvalID)) - } - } - } - var yyn59 bool - if x.RescheduleTracker == nil { - yyn59 = true - goto LABEL59 - } - LABEL59: - if yyr2 || yy2arr2 { - if yyn59 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.RescheduleTracker == nil { - r.EncodeNil() - } else { - x.RescheduleTracker.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RescheduleTracker\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RescheduleTracker`) - } - r.WriteMapElemValue() - if yyn59 { - r.EncodeNil() - } else { - if x.RescheduleTracker == nil { - r.EncodeNil() - } else { - x.RescheduleTracker.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.PreemptedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PreemptedAllocations, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptedAllocations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocations`) - } - r.WriteMapElemValue() - if x.PreemptedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.PreemptedAllocations, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptedByAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedByAllocation`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreemptedByAllocation))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreemptedByAllocation)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocListStub) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "NodeName": - if r.TryDecodeAsNil() { - x.NodeName = "" - } else { - x.NodeName = (string)(r.DecodeString()) - } - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "JobType": - if r.TryDecodeAsNil() { - x.JobType = "" - } else { - x.JobType = (string)(r.DecodeString()) - } - case "JobVersion": - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - case "TaskGroup": - if r.TryDecodeAsNil() { - x.TaskGroup = "" - } else { - x.TaskGroup = (string)(r.DecodeString()) - } - case "DesiredStatus": - if r.TryDecodeAsNil() { - x.DesiredStatus = "" - } else { - x.DesiredStatus = (string)(r.DecodeString()) - } - case "DesiredDescription": - if r.TryDecodeAsNil() { - x.DesiredDescription = "" - } else { - x.DesiredDescription = (string)(r.DecodeString()) - } - case "ClientStatus": - if r.TryDecodeAsNil() { - x.ClientStatus = "" - } else { - x.ClientStatus = (string)(r.DecodeString()) - } - case "ClientDescription": - if r.TryDecodeAsNil() { - x.ClientDescription = "" - } else { - x.ClientDescription = (string)(r.DecodeString()) - } - case "DesiredTransition": - if r.TryDecodeAsNil() { - x.DesiredTransition = DesiredTransition{} - } else { - x.DesiredTransition.CodecDecodeSelf(d) - } - case "TaskStates": - if r.TryDecodeAsNil() { - x.TaskStates = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) - } - } - case "DeploymentStatus": - if r.TryDecodeAsNil() { - if true && x.DeploymentStatus != nil { - x.DeploymentStatus = nil - } - } else { - if x.DeploymentStatus == nil { - x.DeploymentStatus = new(AllocDeploymentStatus) - } - - x.DeploymentStatus.CodecDecodeSelf(d) - } - case "FollowupEvalID": - if r.TryDecodeAsNil() { - x.FollowupEvalID = "" - } else { - x.FollowupEvalID = (string)(r.DecodeString()) - } - case "RescheduleTracker": - if r.TryDecodeAsNil() { - if true && x.RescheduleTracker != nil { - x.RescheduleTracker = nil - } - } else { - if x.RescheduleTracker == nil { - x.RescheduleTracker = new(RescheduleTracker) - } - - x.RescheduleTracker.CodecDecodeSelf(d) - } - case "PreemptedAllocations": - if r.TryDecodeAsNil() { - x.PreemptedAllocations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PreemptedAllocations, d) - } - } - case "PreemptedByAllocation": - if r.TryDecodeAsNil() { - x.PreemptedByAllocation = "" - } else { - x.PreemptedByAllocation = (string)(r.DecodeString()) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - case "CreateTime": - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - case "ModifyTime": - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj31 int - var yyb31 bool - var yyhl31 bool = l >= 0 - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeName = "" - } else { - x.NodeName = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobType = "" - } else { - x.JobType = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobVersion = 0 - } else { - x.JobVersion = (uint64)(r.DecodeUint64()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskGroup = "" - } else { - x.TaskGroup = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredStatus = "" - } else { - x.DesiredStatus = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredDescription = "" - } else { - x.DesiredDescription = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClientStatus = "" - } else { - x.ClientStatus = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClientDescription = "" - } else { - x.ClientDescription = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredTransition = DesiredTransition{} - } else { - x.DesiredTransition.CodecDecodeSelf(d) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TaskStates = nil - } else { - if false { - } else { - h.decMapstringPtrtoTaskState((*map[string]*TaskState)(&x.TaskStates), d) - } - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.DeploymentStatus != nil { - x.DeploymentStatus = nil - } - } else { - if x.DeploymentStatus == nil { - x.DeploymentStatus = new(AllocDeploymentStatus) - } - - x.DeploymentStatus.CodecDecodeSelf(d) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FollowupEvalID = "" - } else { - x.FollowupEvalID = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.RescheduleTracker != nil { - x.RescheduleTracker = nil - } - } else { - if x.RescheduleTracker == nil { - x.RescheduleTracker = new(RescheduleTracker) - } - - x.RescheduleTracker.CodecDecodeSelf(d) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptedAllocations = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.PreemptedAllocations, d) - } - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptedByAllocation = "" - } else { - x.PreemptedByAllocation = (string)(r.DecodeString()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - for { - yyj31++ - if yyhl31 { - yyb31 = yyj31 > l - } else { - yyb31 = r.CheckBreak() - } - if yyb31 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj31-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocMetric) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(13) - } else { - r.WriteMapStart(13) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.NodesEvaluated)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodesEvaluated\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodesEvaluated`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.NodesEvaluated)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.NodesFiltered)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodesFiltered\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodesFiltered`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.NodesFiltered)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodesAvailable == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.NodesAvailable, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodesAvailable\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodesAvailable`) - } - r.WriteMapElemValue() - if x.NodesAvailable == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.NodesAvailable, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.ClassFiltered == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.ClassFiltered, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClassFiltered\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClassFiltered`) - } - r.WriteMapElemValue() - if x.ClassFiltered == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.ClassFiltered, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.ConstraintFiltered == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.ConstraintFiltered, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ConstraintFiltered\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ConstraintFiltered`) - } - r.WriteMapElemValue() - if x.ConstraintFiltered == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.ConstraintFiltered, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.NodesExhausted)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodesExhausted\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodesExhausted`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.NodesExhausted)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.ClassExhausted == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.ClassExhausted, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClassExhausted\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClassExhausted`) - } - r.WriteMapElemValue() - if x.ClassExhausted == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.ClassExhausted, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.DimensionExhausted == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.DimensionExhausted, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DimensionExhausted\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DimensionExhausted`) - } - r.WriteMapElemValue() - if x.DimensionExhausted == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.DimensionExhausted, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.QuotaExhausted == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.QuotaExhausted, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"QuotaExhausted\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `QuotaExhausted`) - } - r.WriteMapElemValue() - if x.QuotaExhausted == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.QuotaExhausted, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Scores == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringFloat64V(x.Scores, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Scores\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Scores`) - } - r.WriteMapElemValue() - if x.Scores == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringFloat64V(x.Scores, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.ScoreMetaData == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeScoreMeta(([]*NodeScoreMeta)(x.ScoreMetaData), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ScoreMetaData\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ScoreMetaData`) - } - r.WriteMapElemValue() - if x.ScoreMetaData == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeScoreMeta(([]*NodeScoreMeta)(x.ScoreMetaData), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt37 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt37 != nil { - z.EncExtension(x.AllocationTime, yyxt37) - } else { - r.EncodeInt(int64(x.AllocationTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocationTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocationTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt38 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt38 != nil { - z.EncExtension(x.AllocationTime, yyxt38) - } else { - r.EncodeInt(int64(x.AllocationTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.CoalescedFailures)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CoalescedFailures\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CoalescedFailures`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CoalescedFailures)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocMetric) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocMetric) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodesEvaluated": - if r.TryDecodeAsNil() { - x.NodesEvaluated = 0 - } else { - x.NodesEvaluated = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "NodesFiltered": - if r.TryDecodeAsNil() { - x.NodesFiltered = 0 - } else { - x.NodesFiltered = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "NodesAvailable": - if r.TryDecodeAsNil() { - x.NodesAvailable = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.NodesAvailable, d) - } - } - case "ClassFiltered": - if r.TryDecodeAsNil() { - x.ClassFiltered = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.ClassFiltered, d) - } - } - case "ConstraintFiltered": - if r.TryDecodeAsNil() { - x.ConstraintFiltered = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.ConstraintFiltered, d) - } - } - case "NodesExhausted": - if r.TryDecodeAsNil() { - x.NodesExhausted = 0 - } else { - x.NodesExhausted = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "ClassExhausted": - if r.TryDecodeAsNil() { - x.ClassExhausted = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.ClassExhausted, d) - } - } - case "DimensionExhausted": - if r.TryDecodeAsNil() { - x.DimensionExhausted = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.DimensionExhausted, d) - } - } - case "QuotaExhausted": - if r.TryDecodeAsNil() { - x.QuotaExhausted = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.QuotaExhausted, d) - } - } - case "Scores": - if r.TryDecodeAsNil() { - x.Scores = nil - } else { - if false { - } else { - z.F.DecMapStringFloat64X(&x.Scores, d) - } - } - case "ScoreMetaData": - if r.TryDecodeAsNil() { - x.ScoreMetaData = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeScoreMeta((*[]*NodeScoreMeta)(&x.ScoreMetaData), d) - } - } - case "AllocationTime": - if r.TryDecodeAsNil() { - x.AllocationTime = 0 - } else { - if false { - } else if yyxt24 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt24 != nil { - z.DecExtension(x.AllocationTime, yyxt24) - } else { - x.AllocationTime = (time.Duration)(r.DecodeInt64()) - } - } - case "CoalescedFailures": - if r.TryDecodeAsNil() { - x.CoalescedFailures = 0 - } else { - x.CoalescedFailures = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocMetric) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj26 int - var yyb26 bool - var yyhl26 bool = l >= 0 - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodesEvaluated = 0 - } else { - x.NodesEvaluated = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodesFiltered = 0 - } else { - x.NodesFiltered = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodesAvailable = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.NodesAvailable, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClassFiltered = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.ClassFiltered, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ConstraintFiltered = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.ConstraintFiltered, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodesExhausted = 0 - } else { - x.NodesExhausted = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClassExhausted = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.ClassExhausted, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DimensionExhausted = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.DimensionExhausted, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QuotaExhausted = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.QuotaExhausted, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Scores = nil - } else { - if false { - } else { - z.F.DecMapStringFloat64X(&x.Scores, d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ScoreMetaData = nil - } else { - if false { - } else { - h.decSlicePtrtoNodeScoreMeta((*[]*NodeScoreMeta)(&x.ScoreMetaData), d) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocationTime = 0 - } else { - if false { - } else if yyxt47 := z.Extension(z.I2Rtid(x.AllocationTime)); yyxt47 != nil { - z.DecExtension(x.AllocationTime, yyxt47) - } else { - x.AllocationTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CoalescedFailures = 0 - } else { - x.CoalescedFailures = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj26++ - if yyhl26 { - yyb26 = yyj26 > l - } else { - yyb26 = r.CheckBreak() - } - if yyb26 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj26-1, "") - } - r.ReadArrayEnd() -} - -func (x *NodeScoreMeta) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Scores == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringFloat64V(x.Scores, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Scores\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Scores`) - } - r.WriteMapElemValue() - if x.Scores == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringFloat64V(x.Scores, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeFloat64(float64(x.NormScore)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NormScore\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NormScore`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeFloat64(float64(x.NormScore)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *NodeScoreMeta) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *NodeScoreMeta) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "Scores": - if r.TryDecodeAsNil() { - x.Scores = nil - } else { - if false { - } else { - z.F.DecMapStringFloat64X(&x.Scores, d) - } - } - case "NormScore": - if r.TryDecodeAsNil() { - x.NormScore = 0 - } else { - x.NormScore = (float64)(r.DecodeFloat64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *NodeScoreMeta) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Scores = nil - } else { - if false { - } else { - z.F.DecMapStringFloat64X(&x.Scores, d) - } - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NormScore = 0 - } else { - x.NormScore = (float64)(r.DecodeFloat64()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *AllocDeploymentStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Healthy == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Healthy == nil { - r.EncodeNil() - } else { - yy4 := *x.Healthy - if false { - } else { - r.EncodeBool(bool(yy4)) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Healthy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Healthy`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Healthy == nil { - r.EncodeNil() - } else { - yy6 := *x.Healthy - if false { - } else { - r.EncodeBool(bool(yy6)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Timestamp) - } else if yyxt9 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt9 != nil { - z.EncExtension(x.Timestamp, yyxt9) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Timestamp) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Timestamp) - } else { - z.EncFallback(x.Timestamp) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Timestamp\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Timestamp`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.Timestamp) - } else if yyxt10 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt10 != nil { - z.EncExtension(x.Timestamp, yyxt10) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.Timestamp) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.Timestamp) - } else { - z.EncFallback(x.Timestamp) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Canary)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Canary\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Canary`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Canary)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *AllocDeploymentStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *AllocDeploymentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Healthy": - if r.TryDecodeAsNil() { - if true && x.Healthy != nil { - x.Healthy = nil - } - } else { - if x.Healthy == nil { - x.Healthy = new(bool) - } - - if false { - } else { - *x.Healthy = (bool)(r.DecodeBool()) - } - } - case "Timestamp": - if r.TryDecodeAsNil() { - x.Timestamp = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Timestamp = r.DecodeTime() - } else if yyxt7 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt7 != nil { - z.DecExtension(x.Timestamp, yyxt7) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Timestamp) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Timestamp) - } else { - z.DecFallback(&x.Timestamp, false) - } - } - case "Canary": - if r.TryDecodeAsNil() { - x.Canary = false - } else { - x.Canary = (bool)(r.DecodeBool()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *AllocDeploymentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Healthy != nil { - x.Healthy = nil - } - } else { - if x.Healthy == nil { - x.Healthy = new(bool) - } - - if false { - } else { - *x.Healthy = (bool)(r.DecodeBool()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Timestamp = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.Timestamp = r.DecodeTime() - } else if yyxt14 := z.Extension(z.I2Rtid(x.Timestamp)); yyxt14 != nil { - z.DecExtension(x.Timestamp, yyxt14) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.Timestamp) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.Timestamp) - } else { - z.DecFallback(&x.Timestamp, false) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Canary = false - } else { - x.Canary = (bool)(r.DecodeBool()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *Evaluation) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - var yyq2 = [29]bool{ // should field at this index be written? - x.ID != "", // ID - x.Namespace != "", // Namespace - x.Priority != 0, // Priority - x.Type != "", // Type - x.TriggeredBy != "", // TriggeredBy - x.JobID != "", // JobID - x.JobModifyIndex != 0, // JobModifyIndex - x.NodeID != "", // NodeID - x.NodeModifyIndex != 0, // NodeModifyIndex - x.DeploymentID != "", // DeploymentID - x.Status != "", // Status - x.StatusDescription != "", // StatusDescription - x.Wait != 0, // Wait - !(x.WaitUntil.IsZero()), // WaitUntil - x.NextEval != "", // NextEval - x.PreviousEval != "", // PreviousEval - x.BlockedEval != "", // BlockedEval - len(x.FailedTGAllocs) != 0, // FailedTGAllocs - len(x.ClassEligibility) != 0, // ClassEligibility - x.QuotaLimitReached != "", // QuotaLimitReached - x.EscapedComputedClass, // EscapedComputedClass - x.AnnotatePlan, // AnnotatePlan - len(x.QueuedAllocations) != 0, // QueuedAllocations - x.LeaderACL != "", // LeaderACL - x.SnapshotIndex != 0, // SnapshotIndex - x.CreateIndex != 0, // CreateIndex - x.ModifyIndex != 0, // ModifyIndex - x.CreateTime != 0, // CreateTime - x.ModifyTime != 0, // ModifyTime - } - _ = yyq2 - if yyr2 || yy2arr2 { - r.WriteArrayStart(29) - } else { - var yynn2 int - for _, b := range yyq2 { - if b { - yynn2++ - } - } - r.WriteMapStart(yynn2) - yynn2 = 0 - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[0] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[0] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.ID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.ID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[1] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[1] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[2] { - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[2] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Priority\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[3] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[3] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[4] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TriggeredBy))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TriggeredBy)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[4] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"TriggeredBy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `TriggeredBy`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.TriggeredBy))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.TriggeredBy)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[5] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[5] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.JobID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.JobID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[6] { - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[6] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"JobModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `JobModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.JobModifyIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[7] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[7] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NodeID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NodeID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[8] { - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[8] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.NodeModifyIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[9] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[9] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.DeploymentID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.DeploymentID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[10] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[10] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Status\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Status`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Status))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Status)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[11] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[11] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"StatusDescription\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `StatusDescription`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.StatusDescription))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.StatusDescription)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[12] { - if false { - } else if yyxt40 := z.Extension(z.I2Rtid(x.Wait)); yyxt40 != nil { - z.EncExtension(x.Wait, yyxt40) - } else { - r.EncodeInt(int64(x.Wait)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[12] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Wait\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Wait`) - } - r.WriteMapElemValue() - if false { - } else if yyxt41 := z.Extension(z.I2Rtid(x.Wait)); yyxt41 != nil { - z.EncExtension(x.Wait, yyxt41) - } else { - r.EncodeInt(int64(x.Wait)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[13] { - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.WaitUntil) - } else if yyxt43 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt43 != nil { - z.EncExtension(x.WaitUntil, yyxt43) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.WaitUntil) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.WaitUntil) - } else { - z.EncFallback(x.WaitUntil) - } - } else { - r.EncodeNil() - } - } else { - if yyq2[13] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"WaitUntil\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `WaitUntil`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.WaitUntil) - } else if yyxt44 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt44 != nil { - z.EncExtension(x.WaitUntil, yyxt44) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.WaitUntil) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.WaitUntil) - } else { - z.EncFallback(x.WaitUntil) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[14] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NextEval))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextEval)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[14] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NextEval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NextEval`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.NextEval))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.NextEval)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[15] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousEval))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousEval)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[15] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreviousEval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreviousEval`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PreviousEval))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PreviousEval)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[16] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.BlockedEval))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.BlockedEval)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[16] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"BlockedEval\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `BlockedEval`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.BlockedEval))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.BlockedEval)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[17] { - if x.FailedTGAllocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[17] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"FailedTGAllocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `FailedTGAllocs`) - } - r.WriteMapElemValue() - if x.FailedTGAllocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoAllocMetric((map[string]*AllocMetric)(x.FailedTGAllocs), e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[18] { - if x.ClassEligibility == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringBoolV(x.ClassEligibility, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[18] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ClassEligibility\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ClassEligibility`) - } - r.WriteMapElemValue() - if x.ClassEligibility == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringBoolV(x.ClassEligibility, e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[19] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.QuotaLimitReached))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.QuotaLimitReached)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[19] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"QuotaLimitReached\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `QuotaLimitReached`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.QuotaLimitReached))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.QuotaLimitReached)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[20] { - if false { - } else { - r.EncodeBool(bool(x.EscapedComputedClass)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2[20] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EscapedComputedClass\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EscapedComputedClass`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.EscapedComputedClass)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[21] { - if false { - } else { - r.EncodeBool(bool(x.AnnotatePlan)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2[21] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AnnotatePlan\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AnnotatePlan`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AnnotatePlan)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[22] { - if x.QueuedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.QueuedAllocations, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[22] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"QueuedAllocations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `QueuedAllocations`) - } - r.WriteMapElemValue() - if x.QueuedAllocations == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.QueuedAllocations, e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[23] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderACL))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderACL)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[23] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LeaderACL\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LeaderACL`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.LeaderACL))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.LeaderACL)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[24] { - if false { - } else { - r.EncodeUint(uint64(x.SnapshotIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[24] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SnapshotIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SnapshotIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.SnapshotIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[25] { - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[25] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[26] { - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[26] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[27] { - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[27] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.CreateTime)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[28] { - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[28] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyTime`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.ModifyTime)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Evaluation) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Evaluation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "ID": - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "Priority": - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "TriggeredBy": - if r.TryDecodeAsNil() { - x.TriggeredBy = "" - } else { - x.TriggeredBy = (string)(r.DecodeString()) - } - case "JobID": - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - case "JobModifyIndex": - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - case "NodeID": - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - case "NodeModifyIndex": - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - case "DeploymentID": - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - case "Status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - case "StatusDescription": - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - case "Wait": - if r.TryDecodeAsNil() { - x.Wait = 0 - } else { - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.Wait)); yyxt17 != nil { - z.DecExtension(x.Wait, yyxt17) - } else { - x.Wait = (time.Duration)(r.DecodeInt64()) - } - } - case "WaitUntil": - if r.TryDecodeAsNil() { - x.WaitUntil = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.WaitUntil = r.DecodeTime() - } else if yyxt19 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt19 != nil { - z.DecExtension(x.WaitUntil, yyxt19) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.WaitUntil) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.WaitUntil) - } else { - z.DecFallback(&x.WaitUntil, false) - } - } - case "NextEval": - if r.TryDecodeAsNil() { - x.NextEval = "" - } else { - x.NextEval = (string)(r.DecodeString()) - } - case "PreviousEval": - if r.TryDecodeAsNil() { - x.PreviousEval = "" - } else { - x.PreviousEval = (string)(r.DecodeString()) - } - case "BlockedEval": - if r.TryDecodeAsNil() { - x.BlockedEval = "" - } else { - x.BlockedEval = (string)(r.DecodeString()) - } - case "FailedTGAllocs": - if r.TryDecodeAsNil() { - x.FailedTGAllocs = nil - } else { - if false { - } else { - h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) - } - } - case "ClassEligibility": - if r.TryDecodeAsNil() { - x.ClassEligibility = nil - } else { - if false { - } else { - z.F.DecMapStringBoolX(&x.ClassEligibility, d) - } - } - case "QuotaLimitReached": - if r.TryDecodeAsNil() { - x.QuotaLimitReached = "" - } else { - x.QuotaLimitReached = (string)(r.DecodeString()) - } - case "EscapedComputedClass": - if r.TryDecodeAsNil() { - x.EscapedComputedClass = false - } else { - x.EscapedComputedClass = (bool)(r.DecodeBool()) - } - case "AnnotatePlan": - if r.TryDecodeAsNil() { - x.AnnotatePlan = false - } else { - x.AnnotatePlan = (bool)(r.DecodeBool()) - } - case "QueuedAllocations": - if r.TryDecodeAsNil() { - x.QueuedAllocations = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.QueuedAllocations, d) - } - } - case "LeaderACL": - if r.TryDecodeAsNil() { - x.LeaderACL = "" - } else { - x.LeaderACL = (string)(r.DecodeString()) - } - case "SnapshotIndex": - if r.TryDecodeAsNil() { - x.SnapshotIndex = 0 - } else { - x.SnapshotIndex = (uint64)(r.DecodeUint64()) - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - case "CreateTime": - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - case "ModifyTime": - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Evaluation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj38 int - var yyb38 bool - var yyhl38 bool = l >= 0 - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ID = "" - } else { - x.ID = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.TriggeredBy = "" - } else { - x.TriggeredBy = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobID = "" - } else { - x.JobID = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.JobModifyIndex = 0 - } else { - x.JobModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeID = "" - } else { - x.NodeID = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeModifyIndex = 0 - } else { - x.NodeModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentID = "" - } else { - x.DeploymentID = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.StatusDescription = "" - } else { - x.StatusDescription = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Wait = 0 - } else { - if false { - } else if yyxt52 := z.Extension(z.I2Rtid(x.Wait)); yyxt52 != nil { - z.DecExtension(x.Wait, yyxt52) - } else { - x.Wait = (time.Duration)(r.DecodeInt64()) - } - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WaitUntil = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.WaitUntil = r.DecodeTime() - } else if yyxt54 := z.Extension(z.I2Rtid(x.WaitUntil)); yyxt54 != nil { - z.DecExtension(x.WaitUntil, yyxt54) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.WaitUntil) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.WaitUntil) - } else { - z.DecFallback(&x.WaitUntil, false) - } - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NextEval = "" - } else { - x.NextEval = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreviousEval = "" - } else { - x.PreviousEval = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.BlockedEval = "" - } else { - x.BlockedEval = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.FailedTGAllocs = nil - } else { - if false { - } else { - h.decMapstringPtrtoAllocMetric((*map[string]*AllocMetric)(&x.FailedTGAllocs), d) - } - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ClassEligibility = nil - } else { - if false { - } else { - z.F.DecMapStringBoolX(&x.ClassEligibility, d) - } - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QuotaLimitReached = "" - } else { - x.QuotaLimitReached = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EscapedComputedClass = false - } else { - x.EscapedComputedClass = (bool)(r.DecodeBool()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AnnotatePlan = false - } else { - x.AnnotatePlan = (bool)(r.DecodeBool()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueuedAllocations = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.QueuedAllocations, d) - } - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.LeaderACL = "" - } else { - x.LeaderACL = (string)(r.DecodeString()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SnapshotIndex = 0 - } else { - x.SnapshotIndex = (uint64)(r.DecodeUint64()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateTime = 0 - } else { - x.CreateTime = (int64)(r.DecodeInt64()) - } - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyTime = 0 - } else { - x.ModifyTime = (int64)(r.DecodeInt64()) - } - for { - yyj38++ - if yyhl38 { - yyb38 = yyj38 > l - } else { - yyb38 = r.CheckBreak() - } - if yyb38 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj38-1, "") - } - r.ReadArrayEnd() -} - -func (x *Plan) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - var yyq2 = [12]bool{ // should field at this index be written? - x.EvalID != "", // EvalID - x.EvalToken != "", // EvalToken - x.Priority != 0, // Priority - x.AllAtOnce, // AllAtOnce - x.Job != nil, // Job - len(x.NodeUpdate) != 0, // NodeUpdate - len(x.NodeAllocation) != 0, // NodeAllocation - x.Annotations != nil, // Annotations - x.Deployment != nil, // Deployment - len(x.DeploymentUpdates) != 0, // DeploymentUpdates - len(x.NodePreemptions) != 0, // NodePreemptions - x.SnapshotIndex != 0, // SnapshotIndex - } - _ = yyq2 - if yyr2 || yy2arr2 { - r.WriteArrayStart(12) - } else { - var yynn2 int - for _, b := range yyq2 { - if b { - yynn2++ - } - } - r.WriteMapStart(yynn2) - yynn2 = 0 - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[0] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[0] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalID)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[1] { - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) - } - } - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw([]byte{}) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, "") - } - } - } else { - if yyq2[1] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"EvalToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `EvalToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.EvalToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.EvalToken)) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[2] { - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2[2] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Priority\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Priority`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.Priority)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[3] { - if false { - } else { - r.EncodeBool(bool(x.AllAtOnce)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2[3] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllAtOnce\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllAtOnce`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllAtOnce)) - } - } - } - var yyn15 bool - if x.Job == nil { - yyn15 = true - goto LABEL15 - } - LABEL15: - if yyr2 || yy2arr2 { - if yyn15 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[4] { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[4] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Job\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Job`) - } - r.WriteMapElemValue() - if yyn15 { - r.EncodeNil() - } else { - if x.Job == nil { - r.EncodeNil() - } else { - x.Job.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[5] { - if x.NodeUpdate == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[5] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeUpdate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeUpdate`) - } - r.WriteMapElemValue() - if x.NodeUpdate == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[6] { - if x.NodeAllocation == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[6] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeAllocation`) - } - r.WriteMapElemValue() - if x.NodeAllocation == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) - } - } - } - } - var yyn24 bool - if x.Annotations == nil { - yyn24 = true - goto LABEL24 - } - LABEL24: - if yyr2 || yy2arr2 { - if yyn24 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[7] { - if x.Annotations == nil { - r.EncodeNil() - } else { - x.Annotations.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[7] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Annotations\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Annotations`) - } - r.WriteMapElemValue() - if yyn24 { - r.EncodeNil() - } else { - if x.Annotations == nil { - r.EncodeNil() - } else { - x.Annotations.CodecEncodeSelf(e) - } - } - } - } - var yyn27 bool - if x.Deployment == nil { - yyn27 = true - goto LABEL27 - } - LABEL27: - if yyr2 || yy2arr2 { - if yyn27 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if yyq2[8] { - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq2[8] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deployment\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) - } - r.WriteMapElemValue() - if yyn27 { - r.EncodeNil() - } else { - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[9] { - if x.DeploymentUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[9] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentUpdates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdates`) - } - r.WriteMapElemValue() - if x.DeploymentUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[10] { - if x.NodePreemptions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2[10] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodePreemptions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodePreemptions`) - } - r.WriteMapElemValue() - if x.NodePreemptions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if yyq2[11] { - if false { - } else { - r.EncodeUint(uint64(x.SnapshotIndex)) - } - } else { - r.EncodeUint(0) - } - } else { - if yyq2[11] { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SnapshotIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SnapshotIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.SnapshotIndex)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *Plan) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *Plan) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "EvalID": - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - case "EvalToken": - if r.TryDecodeAsNil() { - x.EvalToken = "" - } else { - x.EvalToken = (string)(r.DecodeString()) - } - case "Priority": - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - case "AllAtOnce": - if r.TryDecodeAsNil() { - x.AllAtOnce = false - } else { - x.AllAtOnce = (bool)(r.DecodeBool()) - } - case "Job": - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - case "NodeUpdate": - if r.TryDecodeAsNil() { - x.NodeUpdate = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) - } - } - case "NodeAllocation": - if r.TryDecodeAsNil() { - x.NodeAllocation = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) - } - } - case "Annotations": - if r.TryDecodeAsNil() { - if true && x.Annotations != nil { - x.Annotations = nil - } - } else { - if x.Annotations == nil { - x.Annotations = new(PlanAnnotations) - } - - x.Annotations.CodecDecodeSelf(d) - } - case "Deployment": - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - case "DeploymentUpdates": - if r.TryDecodeAsNil() { - x.DeploymentUpdates = nil - } else { - if false { - } else { - h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) - } - } - case "NodePreemptions": - if r.TryDecodeAsNil() { - x.NodePreemptions = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) - } - } - case "SnapshotIndex": - if r.TryDecodeAsNil() { - x.SnapshotIndex = 0 - } else { - x.SnapshotIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *Plan) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj20 int - var yyb20 bool - var yyhl20 bool = l >= 0 - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalID = "" - } else { - x.EvalID = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.EvalToken = "" - } else { - x.EvalToken = (string)(r.DecodeString()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Priority = 0 - } else { - x.Priority = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllAtOnce = false - } else { - x.AllAtOnce = (bool)(r.DecodeBool()) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Job != nil { - x.Job = nil - } - } else { - if x.Job == nil { - x.Job = new(Job) - } - - x.Job.CodecDecodeSelf(d) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeUpdate = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeAllocation = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Annotations != nil { - x.Annotations = nil - } - } else { - if x.Annotations == nil { - x.Annotations = new(PlanAnnotations) - } - - x.Annotations.CodecDecodeSelf(d) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentUpdates = nil - } else { - if false { - } else { - h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodePreemptions = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) - } - } - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SnapshotIndex = 0 - } else { - x.SnapshotIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj20++ - if yyhl20 { - yyb20 = yyj20 > l - } else { - yyb20 = r.CheckBreak() - } - if yyb20 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj20-1, "") - } - r.ReadArrayEnd() -} - -func (x *PlanResult) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodeUpdate == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeUpdate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeUpdate`) - } - r.WriteMapElemValue() - if x.NodeUpdate == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeUpdate), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodeAllocation == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodeAllocation\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodeAllocation`) - } - r.WriteMapElemValue() - if x.NodeAllocation == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodeAllocation), e) - } - } - } - var yyn9 bool - if x.Deployment == nil { - yyn9 = true - goto LABEL9 - } - LABEL9: - if yyr2 || yy2arr2 { - if yyn9 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Deployment\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Deployment`) - } - r.WriteMapElemValue() - if yyn9 { - r.EncodeNil() - } else { - if x.Deployment == nil { - r.EncodeNil() - } else { - x.Deployment.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.DeploymentUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DeploymentUpdates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DeploymentUpdates`) - } - r.WriteMapElemValue() - if x.DeploymentUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoDeploymentStatusUpdate(([]*DeploymentStatusUpdate)(x.DeploymentUpdates), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.NodePreemptions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NodePreemptions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NodePreemptions`) - } - r.WriteMapElemValue() - if x.NodePreemptions == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringSlicePtrtoAllocation((map[string][]*Allocation)(x.NodePreemptions), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.RefreshIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RefreshIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RefreshIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.RefreshIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.AllocIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllocIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllocIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.AllocIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PlanResult) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PlanResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "NodeUpdate": - if r.TryDecodeAsNil() { - x.NodeUpdate = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) - } - } - case "NodeAllocation": - if r.TryDecodeAsNil() { - x.NodeAllocation = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) - } - } - case "Deployment": - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - case "DeploymentUpdates": - if r.TryDecodeAsNil() { - x.DeploymentUpdates = nil - } else { - if false { - } else { - h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) - } - } - case "NodePreemptions": - if r.TryDecodeAsNil() { - x.NodePreemptions = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) - } - } - case "RefreshIndex": - if r.TryDecodeAsNil() { - x.RefreshIndex = 0 - } else { - x.RefreshIndex = (uint64)(r.DecodeUint64()) - } - case "AllocIndex": - if r.TryDecodeAsNil() { - x.AllocIndex = 0 - } else { - x.AllocIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PlanResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeUpdate = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeUpdate), d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodeAllocation = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodeAllocation), d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Deployment != nil { - x.Deployment = nil - } - } else { - if x.Deployment == nil { - x.Deployment = new(Deployment) - } - - x.Deployment.CodecDecodeSelf(d) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DeploymentUpdates = nil - } else { - if false { - } else { - h.decSlicePtrtoDeploymentStatusUpdate((*[]*DeploymentStatusUpdate)(&x.DeploymentUpdates), d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NodePreemptions = nil - } else { - if false { - } else { - h.decMapstringSlicePtrtoAllocation((*map[string][]*Allocation)(&x.NodePreemptions), d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.RefreshIndex = 0 - } else { - x.RefreshIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AllocIndex = 0 - } else { - x.AllocIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *PlanAnnotations) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.DesiredTGUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDesiredUpdates((map[string]*DesiredUpdates)(x.DesiredTGUpdates), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DesiredTGUpdates\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DesiredTGUpdates`) - } - r.WriteMapElemValue() - if x.DesiredTGUpdates == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoDesiredUpdates((map[string]*DesiredUpdates)(x.DesiredTGUpdates), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.PreemptedAllocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.PreemptedAllocs), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PreemptedAllocs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PreemptedAllocs`) - } - r.WriteMapElemValue() - if x.PreemptedAllocs == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocListStub(([]*AllocListStub)(x.PreemptedAllocs), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *PlanAnnotations) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *PlanAnnotations) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "DesiredTGUpdates": - if r.TryDecodeAsNil() { - x.DesiredTGUpdates = nil - } else { - if false { - } else { - h.decMapstringPtrtoDesiredUpdates((*map[string]*DesiredUpdates)(&x.DesiredTGUpdates), d) - } - } - case "PreemptedAllocs": - if r.TryDecodeAsNil() { - x.PreemptedAllocs = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.PreemptedAllocs), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *PlanAnnotations) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DesiredTGUpdates = nil - } else { - if false { - } else { - h.decMapstringPtrtoDesiredUpdates((*map[string]*DesiredUpdates)(&x.DesiredTGUpdates), d) - } - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PreemptedAllocs = nil - } else { - if false { - } else { - h.decSlicePtrtoAllocListStub((*[]*AllocListStub)(&x.PreemptedAllocs), d) - } - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *DesiredUpdates) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Ignore)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Ignore\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Ignore`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Ignore)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Place)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Place\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Place`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Place)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Migrate)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Migrate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Migrate`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Migrate)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Stop)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Stop\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Stop`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Stop)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.InPlaceUpdate)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"InPlaceUpdate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `InPlaceUpdate`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.InPlaceUpdate)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.DestructiveUpdate)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"DestructiveUpdate\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `DestructiveUpdate`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.DestructiveUpdate)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Canary)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Canary\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Canary`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Canary)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Preemptions)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Preemptions\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Preemptions`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Preemptions)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *DesiredUpdates) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *DesiredUpdates) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Ignore": - if r.TryDecodeAsNil() { - x.Ignore = 0 - } else { - x.Ignore = (uint64)(r.DecodeUint64()) - } - case "Place": - if r.TryDecodeAsNil() { - x.Place = 0 - } else { - x.Place = (uint64)(r.DecodeUint64()) - } - case "Migrate": - if r.TryDecodeAsNil() { - x.Migrate = 0 - } else { - x.Migrate = (uint64)(r.DecodeUint64()) - } - case "Stop": - if r.TryDecodeAsNil() { - x.Stop = 0 - } else { - x.Stop = (uint64)(r.DecodeUint64()) - } - case "InPlaceUpdate": - if r.TryDecodeAsNil() { - x.InPlaceUpdate = 0 - } else { - x.InPlaceUpdate = (uint64)(r.DecodeUint64()) - } - case "DestructiveUpdate": - if r.TryDecodeAsNil() { - x.DestructiveUpdate = 0 - } else { - x.DestructiveUpdate = (uint64)(r.DecodeUint64()) - } - case "Canary": - if r.TryDecodeAsNil() { - x.Canary = 0 - } else { - x.Canary = (uint64)(r.DecodeUint64()) - } - case "Preemptions": - if r.TryDecodeAsNil() { - x.Preemptions = 0 - } else { - x.Preemptions = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *DesiredUpdates) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Ignore = 0 - } else { - x.Ignore = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Place = 0 - } else { - x.Place = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Migrate = 0 - } else { - x.Migrate = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Stop = 0 - } else { - x.Stop = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.InPlaceUpdate = 0 - } else { - x.InPlaceUpdate = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.DestructiveUpdate = 0 - } else { - x.DestructiveUpdate = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Canary = 0 - } else { - x.Canary = (uint64)(r.DecodeUint64()) - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Preemptions = 0 - } else { - x.Preemptions = (uint64)(r.DecodeUint64()) - } - for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj12-1, "") - } - r.ReadArrayEnd() -} - -func (x *KeyringResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Messages == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Messages, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Messages\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Messages`) - } - r.WriteMapElemValue() - if x.Messages == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringStringV(x.Messages, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Keys == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.Keys, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Keys\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Keys`) - } - r.WriteMapElemValue() - if x.Keys == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncMapStringIntV(x.Keys, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeInt(int64(x.NumNodes)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"NumNodes\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `NumNodes`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeInt(int64(x.NumNodes)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *KeyringResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *KeyringResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Messages": - if r.TryDecodeAsNil() { - x.Messages = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Messages, d) - } - } - case "Keys": - if r.TryDecodeAsNil() { - x.Keys = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.Keys, d) - } - } - case "NumNodes": - if r.TryDecodeAsNil() { - x.NumNodes = 0 - } else { - x.NumNodes = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *KeyringResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Messages = nil - } else { - if false { - } else { - z.F.DecMapStringStringX(&x.Messages, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Keys = nil - } else { - if false { - } else { - z.F.DecMapStringIntX(&x.Keys, d) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.NumNodes = 0 - } else { - x.NumNodes = (int)(z.C.IntV(r.DecodeInt64(), codecSelferBitsize100)) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *KeyringRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Key))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Key)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Key\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Key`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Key))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Key)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *KeyringRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *KeyringRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Key": - if r.TryDecodeAsNil() { - x.Key = "" - } else { - x.Key = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *KeyringRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj5 int - var yyb5 bool - var yyhl5 bool = l >= 0 - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Key = "" - } else { - x.Key = (string)(r.DecodeString()) - } - for { - yyj5++ - if yyhl5 { - yyb5 = yyj5 > l - } else { - yyb5 = r.CheckBreak() - } - if yyb5 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj5-1, "") - } - r.ReadArrayEnd() -} - -func (x *RecoverableError) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Err))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Err)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Err\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Err`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Err))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Err)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Recoverable)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Recoverable\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Recoverable`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Recoverable)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *RecoverableError) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *RecoverableError) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Err": - if r.TryDecodeAsNil() { - x.Err = "" - } else { - x.Err = (string)(r.DecodeString()) - } - case "Recoverable": - if r.TryDecodeAsNil() { - x.Recoverable = false - } else { - x.Recoverable = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *RecoverableError) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Err = "" - } else { - x.Err = (string)(r.DecodeString()) - } - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Recoverable = false - } else { - x.Recoverable = (bool)(r.DecodeBool()) - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *WrappedServerError) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(1) - } else { - r.WriteMapStart(1) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Err == nil { - r.EncodeNil() - } else { - if false { - } else { - z.EncFallback(x.Err) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Err\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Err`) - } - r.WriteMapElemValue() - if x.Err == nil { - r.EncodeNil() - } else { - if false { - } else { - z.EncFallback(x.Err) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *WrappedServerError) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *WrappedServerError) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Err": - if r.TryDecodeAsNil() { - x.Err = nil - } else { - if false { - } else { - z.DecFallback(&x.Err, true) - } - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *WrappedServerError) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj6 int - var yyb6 bool - var yyhl6 bool = l >= 0 - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Err = nil - } else { - if false { - } else { - z.DecFallback(&x.Err, true) - } - } - for { - yyj6++ - if yyhl6 { - yyb6 = yyj6 > l - } else { - yyb6 = r.CheckBreak() - } - if yyb6 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj6-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(7) - } else { - r.WriteMapStart(7) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Description\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Description`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Rules))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Rules)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Rules\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Rules`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Rules))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Rules)) - } - } - } - var yyn12 bool - if x.RulesJSON == nil { - yyn12 = true - goto LABEL12 - } - LABEL12: - if yyr2 || yy2arr2 { - if yyn12 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.RulesJSON == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt13 != nil { - z.EncExtension(x.RulesJSON, yyxt13) - } else { - z.EncFallback(x.RulesJSON) - } - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"RulesJSON\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `RulesJSON`) - } - r.WriteMapElemValue() - if yyn12 { - r.EncodeNil() - } else { - if x.RulesJSON == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt14 != nil { - z.EncExtension(x.RulesJSON, yyxt14) - } else { - z.EncFallback(x.RulesJSON) - } - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Hash\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) - } - r.WriteMapElemValue() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Description": - if r.TryDecodeAsNil() { - x.Description = "" - } else { - x.Description = (string)(r.DecodeString()) - } - case "Rules": - if r.TryDecodeAsNil() { - x.Rules = "" - } else { - x.Rules = (string)(r.DecodeString()) - } - case "RulesJSON": - if r.TryDecodeAsNil() { - if true && x.RulesJSON != nil { - x.RulesJSON = nil - } - } else { - if x.RulesJSON == nil { - x.RulesJSON = new(pkg3_acl.Policy) - } - - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt8 != nil { - z.DecExtension(x.RulesJSON, yyxt8) - } else { - z.DecFallback(x.RulesJSON, false) - } - } - case "Hash": - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Description = "" - } else { - x.Description = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Rules = "" - } else { - x.Rules = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.RulesJSON != nil { - x.RulesJSON = nil - } - } else { - if x.RulesJSON == nil { - x.RulesJSON = new(pkg3_acl.Policy) - } - - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.RulesJSON)); yyxt18 != nil { - z.DecExtension(x.RulesJSON, yyxt18) - } else { - z.DecFallback(x.RulesJSON, false) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicyListStub) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Description\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Description`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Description))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Description)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Hash\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) - } - r.WriteMapElemValue() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicyListStub) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicyListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Description": - if r.TryDecodeAsNil() { - x.Description = "" - } else { - x.Description = (string)(r.DecodeString()) - } - case "Hash": - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicyListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Description = "" - } else { - x.Description = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicyListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(8) - } else { - r.WriteMapStart(8) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt13 != nil { - z.EncExtension(x.MaxQueryTime, yyxt13) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt14 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt14 != nil { - z.EncExtension(x.MaxQueryTime, yyxt14) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicyListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicyListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt8 != nil { - z.DecExtension(x.MaxQueryTime, yyxt8) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicyListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj13 int - var yyb13 bool - var yyhl13 bool = l >= 0 - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt18 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt18 != nil { - z.DecExtension(x.MaxQueryTime, yyxt18) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj13++ - if yyhl13 { - yyb13 = yyj13 > l - } else { - yyb13 = r.CheckBreak() - } - if yyb13 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj13-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicySpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicySpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicySpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicySpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicySetRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Names == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Names, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Names\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Names`) - } - r.WriteMapElemValue() - if x.Names == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Names, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicySetRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicySetRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Names": - if r.TryDecodeAsNil() { - x.Names = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Names, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicySetRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Names = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Names, d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicyListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLPolicyListStub(([]*ACLPolicyListStub)(x.Policies), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Policies\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) - } - r.WriteMapElemValue() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLPolicyListStub(([]*ACLPolicyListStub)(x.Policies), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicyListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicyListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Policies": - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - h.decSlicePtrtoACLPolicyListStub((*[]*ACLPolicyListStub)(&x.Policies), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicyListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - h.decSlicePtrtoACLPolicyListStub((*[]*ACLPolicyListStub)(&x.Policies), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *SingleACLPolicyResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Policy == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Policy == nil { - r.EncodeNil() - } else { - x.Policy.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Policy\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Policy`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Policy == nil { - r.EncodeNil() - } else { - x.Policy.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SingleACLPolicyResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SingleACLPolicyResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Policy": - if r.TryDecodeAsNil() { - if true && x.Policy != nil { - x.Policy = nil - } - } else { - if x.Policy == nil { - x.Policy = new(ACLPolicy) - } - - x.Policy.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SingleACLPolicyResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Policy != nil { - x.Policy = nil - } - } else { - if x.Policy == nil { - x.Policy = new(ACLPolicy) - } - - x.Policy.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicySetResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoACLPolicy((map[string]*ACLPolicy)(x.Policies), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Policies\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) - } - r.WriteMapElemValue() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoACLPolicy((map[string]*ACLPolicy)(x.Policies), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicySetResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicySetResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Policies": - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - h.decMapstringPtrtoACLPolicy((*map[string]*ACLPolicy)(&x.Policies), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicySetResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - h.decMapstringPtrtoACLPolicy((*map[string]*ACLPolicy)(&x.Policies), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicyDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Names == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Names, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Names\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Names`) - } - r.WriteMapElemValue() - if x.Names == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Names, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicyDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicyDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Names": - if r.TryDecodeAsNil() { - x.Names = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Names, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicyDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Names = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Names, d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLPolicyUpsertRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLPolicy(([]*ACLPolicy)(x.Policies), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Policies\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) - } - r.WriteMapElemValue() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLPolicy(([]*ACLPolicy)(x.Policies), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLPolicyUpsertRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLPolicyUpsertRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Policies": - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - h.decSlicePtrtoACLPolicy((*[]*ACLPolicy)(&x.Policies), d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLPolicyUpsertRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - h.decSlicePtrtoACLPolicy((*[]*ACLPolicy)(&x.Policies), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLToken) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(10) - } else { - r.WriteMapStart(10) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AccessorID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SecretID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Policies, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Policies\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) - } - r.WriteMapElemValue() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Policies, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Global)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Global\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Global`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Global)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Hash\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) - } - r.WriteMapElemValue() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.CreateTime) - } else if yyxt25 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt25 != nil { - z.EncExtension(x.CreateTime, yyxt25) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.CreateTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.CreateTime) - } else { - z.EncFallback(x.CreateTime) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.CreateTime) - } else if yyxt26 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt26 != nil { - z.EncExtension(x.CreateTime, yyxt26) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.CreateTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.CreateTime) - } else { - z.EncFallback(x.CreateTime) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLToken) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLToken) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AccessorID": - if r.TryDecodeAsNil() { - x.AccessorID = "" - } else { - x.AccessorID = (string)(r.DecodeString()) - } - case "SecretID": - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Policies": - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Policies, d) - } - } - case "Global": - if r.TryDecodeAsNil() { - x.Global = false - } else { - x.Global = (bool)(r.DecodeBool()) - } - case "Hash": - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - case "CreateTime": - if r.TryDecodeAsNil() { - x.CreateTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.CreateTime = r.DecodeTime() - } else if yyxt14 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt14 != nil { - z.DecExtension(x.CreateTime, yyxt14) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.CreateTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.CreateTime) - } else { - z.DecFallback(&x.CreateTime, false) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLToken) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj17 int - var yyb17 bool - var yyhl17 bool = l >= 0 - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AccessorID = "" - } else { - x.AccessorID = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Policies, d) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Global = false - } else { - x.Global = (bool)(r.DecodeBool()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.CreateTime = r.DecodeTime() - } else if yyxt28 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt28 != nil { - z.DecExtension(x.CreateTime, yyxt28) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.CreateTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.CreateTime) - } else { - z.DecFallback(&x.CreateTime, false) - } - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj17++ - if yyhl17 { - yyb17 = yyj17 > l - } else { - yyb17 = r.CheckBreak() - } - if yyb17 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj17-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenListStub) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AccessorID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Policies, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Policies\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Policies`) - } - r.WriteMapElemValue() - if x.Policies == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.Policies, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Global)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Global\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Global`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Global)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Hash\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Hash`) - } - r.WriteMapElemValue() - if x.Hash == nil { - r.EncodeNil() - } else { - if false { - } else { - r.EncodeStringBytesRaw([]byte(x.Hash)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.CreateTime) - } else if yyxt22 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt22 != nil { - z.EncExtension(x.CreateTime, yyxt22) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.CreateTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.CreateTime) - } else { - z.EncFallback(x.CreateTime) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateTime`) - } - r.WriteMapElemValue() - if false { - } else if !z.EncBasicHandle().TimeNotBuiltin { - r.EncodeTime(x.CreateTime) - } else if yyxt23 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt23 != nil { - z.EncExtension(x.CreateTime, yyxt23) - } else if z.EncBinary() { - z.EncBinaryMarshal(x.CreateTime) - } else if !z.EncBinary() && z.IsJSONHandle() { - z.EncJSONMarshal(x.CreateTime) - } else { - z.EncFallback(x.CreateTime) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"CreateIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `CreateIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.CreateIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ModifyIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ModifyIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ModifyIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenListStub) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenListStub) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AccessorID": - if r.TryDecodeAsNil() { - x.AccessorID = "" - } else { - x.AccessorID = (string)(r.DecodeString()) - } - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Policies": - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Policies, d) - } - } - case "Global": - if r.TryDecodeAsNil() { - x.Global = false - } else { - x.Global = (bool)(r.DecodeBool()) - } - case "Hash": - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - case "CreateTime": - if r.TryDecodeAsNil() { - x.CreateTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.CreateTime = r.DecodeTime() - } else if yyxt13 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt13 != nil { - z.DecExtension(x.CreateTime, yyxt13) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.CreateTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.CreateTime) - } else { - z.DecFallback(&x.CreateTime, false) - } - } - case "CreateIndex": - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - case "ModifyIndex": - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenListStub) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj16 int - var yyb16 bool - var yyhl16 bool = l >= 0 - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AccessorID = "" - } else { - x.AccessorID = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Policies = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.Policies, d) - } - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Global = false - } else { - x.Global = (bool)(r.DecodeBool()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Hash = nil - } else { - if false { - } else { - x.Hash = r.DecodeBytes(([]byte)(x.Hash), false) - } - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateTime = time.Time{} - } else { - if false { - } else if !z.DecBasicHandle().TimeNotBuiltin { - x.CreateTime = r.DecodeTime() - } else if yyxt26 := z.Extension(z.I2Rtid(x.CreateTime)); yyxt26 != nil { - z.DecExtension(x.CreateTime, yyxt26) - } else if z.DecBinary() { - z.DecBinaryUnmarshal(&x.CreateTime) - } else if !z.DecBinary() && z.IsJSONHandle() { - z.DecJSONUnmarshal(&x.CreateTime) - } else { - z.DecFallback(&x.CreateTime, false) - } - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.CreateIndex = 0 - } else { - x.CreateIndex = (uint64)(r.DecodeUint64()) - } - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ModifyIndex = 0 - } else { - x.ModifyIndex = (uint64)(r.DecodeUint64()) - } - for { - yyj16++ - if yyhl16 { - yyb16 = yyj16 > l - } else { - yyb16 = r.CheckBreak() - } - if yyb16 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj16-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenListRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.GlobalOnly)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"GlobalOnly\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `GlobalOnly`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.GlobalOnly)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenListRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenListRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "GlobalOnly": - if r.TryDecodeAsNil() { - x.GlobalOnly = false - } else { - x.GlobalOnly = (bool)(r.DecodeBool()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenListRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.GlobalOnly = false - } else { - x.GlobalOnly = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenSpecificRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AccessorID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AccessorID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AccessorID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenSpecificRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenSpecificRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AccessorID": - if r.TryDecodeAsNil() { - x.AccessorID = "" - } else { - x.AccessorID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenSpecificRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AccessorID = "" - } else { - x.AccessorID = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenSetRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AccessorIDS == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.AccessorIDS, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AccessorIDS\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorIDS`) - } - r.WriteMapElemValue() - if x.AccessorIDS == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.AccessorIDS, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenSetRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenSetRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AccessorIDS": - if r.TryDecodeAsNil() { - x.AccessorIDS = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.AccessorIDS, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt10 != nil { - z.DecExtension(x.MaxQueryTime, yyxt10) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenSetRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj15 int - var yyb15 bool - var yyhl15 bool = l >= 0 - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AccessorIDS = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.AccessorIDS, d) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt22 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt22 != nil { - z.DecExtension(x.MaxQueryTime, yyxt22) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj15++ - if yyhl15 { - yyb15 = yyj15 > l - } else { - yyb15 = r.CheckBreak() - } - if yyb15 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj15-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenListResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLTokenListStub(([]*ACLTokenListStub)(x.Tokens), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tokens\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) - } - r.WriteMapElemValue() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLTokenListStub(([]*ACLTokenListStub)(x.Tokens), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenListResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenListResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Tokens": - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decSlicePtrtoACLTokenListStub((*[]*ACLTokenListStub)(&x.Tokens), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenListResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decSlicePtrtoACLTokenListStub((*[]*ACLTokenListStub)(&x.Tokens), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *SingleACLTokenResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Token == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Token == nil { - r.EncodeNil() - } else { - x.Token.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Token\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Token == nil { - r.EncodeNil() - } else { - x.Token.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *SingleACLTokenResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *SingleACLTokenResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Token": - if r.TryDecodeAsNil() { - if true && x.Token != nil { - x.Token = nil - } - } else { - if x.Token == nil { - x.Token = new(ACLToken) - } - - x.Token.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *SingleACLTokenResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Token != nil { - x.Token = nil - } - } else { - if x.Token == nil { - x.Token = new(ACLToken) - } - - x.Token.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenSetResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoACLToken((map[string]*ACLToken)(x.Tokens), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tokens\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) - } - r.WriteMapElemValue() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encMapstringPtrtoACLToken((map[string]*ACLToken)(x.Tokens), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenSetResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenSetResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Tokens": - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decMapstringPtrtoACLToken((*map[string]*ACLToken)(&x.Tokens), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt8 := z.Extension(z.I2Rtid(x.LastContact)); yyxt8 != nil { - z.DecExtension(x.LastContact, yyxt8) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenSetResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decMapstringPtrtoACLToken((*map[string]*ACLToken)(&x.Tokens), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt15 := z.Extension(z.I2Rtid(x.LastContact)); yyxt15 != nil { - z.DecExtension(x.LastContact, yyxt15) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ResolveACLTokenRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(9) - } else { - r.WriteMapStart(9) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"SecretID\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `SecretID`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.SecretID))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.SecretID)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MinQueryIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MinQueryIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.MinQueryIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt16 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt16 != nil { - z.EncExtension(x.MaxQueryTime, yyxt16) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"MaxQueryTime\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `MaxQueryTime`) - } - r.WriteMapElemValue() - if false { - } else if yyxt17 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt17 != nil { - z.EncExtension(x.MaxQueryTime, yyxt17) - } else { - r.EncodeInt(int64(x.MaxQueryTime)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AllowStale\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AllowStale`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.AllowStale)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Prefix\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Prefix`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Prefix))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Prefix)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ResolveACLTokenRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ResolveACLTokenRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "SecretID": - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - case "Region": - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "MinQueryIndex": - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - case "MaxQueryTime": - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt9 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt9 != nil { - z.DecExtension(x.MaxQueryTime, yyxt9) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - case "AllowStale": - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - case "Prefix": - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ResolveACLTokenRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj14 int - var yyb14 bool - var yyhl14 bool = l >= 0 - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.SecretID = "" - } else { - x.SecretID = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MinQueryIndex = 0 - } else { - x.MinQueryIndex = (uint64)(r.DecodeUint64()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.MaxQueryTime = 0 - } else { - if false { - } else if yyxt20 := z.Extension(z.I2Rtid(x.MaxQueryTime)); yyxt20 != nil { - z.DecExtension(x.MaxQueryTime, yyxt20) - } else { - x.MaxQueryTime = (time.Duration)(r.DecodeInt64()) - } - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AllowStale = false - } else { - x.AllowStale = (bool)(r.DecodeBool()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.Prefix = "" - } else { - x.Prefix = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryOptions.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj14++ - if yyhl14 { - yyb14 = yyj14 > l - } else { - yyb14 = r.CheckBreak() - } - if yyb14 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj14-1, "") - } - r.ReadArrayEnd() -} - -func (x *ResolveACLTokenResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - var yyn3 bool - if x.Token == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Token == nil { - r.EncodeNil() - } else { - x.Token.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Token\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Token == nil { - r.EncodeNil() - } else { - x.Token.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else if yyxt10 := z.Extension(z.I2Rtid(x.LastContact)); yyxt10 != nil { - z.EncExtension(x.LastContact, yyxt10) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"LastContact\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `LastContact`) - } - r.WriteMapElemValue() - if false { - } else if yyxt11 := z.Extension(z.I2Rtid(x.LastContact)); yyxt11 != nil { - z.EncExtension(x.LastContact, yyxt11) - } else { - r.EncodeInt(int64(x.LastContact)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"KnownLeader\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `KnownLeader`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.KnownLeader)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ResolveACLTokenResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ResolveACLTokenResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Token": - if r.TryDecodeAsNil() { - if true && x.Token != nil { - x.Token = nil - } - } else { - if x.Token == nil { - x.Token = new(ACLToken) - } - - x.Token.CodecDecodeSelf(d) - } - case "Index": - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - case "LastContact": - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt7 := z.Extension(z.I2Rtid(x.LastContact)); yyxt7 != nil { - z.DecExtension(x.LastContact, yyxt7) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - case "KnownLeader": - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ResolveACLTokenResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj9 int - var yyb9 bool - var yyhl9 bool = l >= 0 - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Token != nil { - x.Token = nil - } - } else { - if x.Token == nil { - x.Token = new(ACLToken) - } - - x.Token.CodecDecodeSelf(d) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.LastContact = 0 - } else { - if false { - } else if yyxt13 := z.Extension(z.I2Rtid(x.LastContact)); yyxt13 != nil { - z.DecExtension(x.LastContact, yyxt13) - } else { - x.LastContact = (time.Duration)(r.DecodeInt64()) - } - } - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.QueryMeta.KnownLeader = false - } else { - x.KnownLeader = (bool)(r.DecodeBool()) - } - for { - yyj9++ - if yyhl9 { - yyb9 = yyj9 > l - } else { - yyb9 = r.CheckBreak() - } - if yyb9 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj9-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenDeleteRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.AccessorIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.AccessorIDs, e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AccessorIDs\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AccessorIDs`) - } - r.WriteMapElemValue() - if x.AccessorIDs == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(x.AccessorIDs, e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenDeleteRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenDeleteRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "AccessorIDs": - if r.TryDecodeAsNil() { - x.AccessorIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.AccessorIDs, d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenDeleteRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.AccessorIDs = nil - } else { - if false { - } else { - z.F.DecSliceStringX(&x.AccessorIDs, d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenBootstrapRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(6) - } else { - r.WriteMapStart(6) - } - var yyn3 bool - if x.Token == nil { - yyn3 = true - goto LABEL3 - } - LABEL3: - if yyr2 || yy2arr2 { - if yyn3 { - r.WriteArrayElem() - r.EncodeNil() - } else { - r.WriteArrayElem() - if x.Token == nil { - r.EncodeNil() - } else { - x.Token.CodecEncodeSelf(e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Token\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Token`) - } - r.WriteMapElemValue() - if yyn3 { - r.EncodeNil() - } else { - if x.Token == nil { - r.EncodeNil() - } else { - x.Token.CodecEncodeSelf(e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.ResetIndex)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ResetIndex\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ResetIndex`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.ResetIndex)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenBootstrapRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenBootstrapRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Token": - if r.TryDecodeAsNil() { - if true && x.Token != nil { - x.Token = nil - } - } else { - if x.Token == nil { - x.Token = new(ACLToken) - } - - x.Token.CodecDecodeSelf(d) - } - case "ResetIndex": - if r.TryDecodeAsNil() { - x.ResetIndex = 0 - } else { - x.ResetIndex = (uint64)(r.DecodeUint64()) - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenBootstrapRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - if true && x.Token != nil { - x.Token = nil - } - } else { - if x.Token == nil { - x.Token = new(ACLToken) - } - - x.Token.CodecDecodeSelf(d) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ResetIndex = 0 - } else { - x.ResetIndex = (uint64)(r.DecodeUint64()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenUpsertRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(5) - } else { - r.WriteMapStart(5) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tokens\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) - } - r.WriteMapElemValue() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Region\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Region`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Region))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Region)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Namespace\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Namespace`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Namespace))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Namespace)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"AuthToken\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `AuthToken`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.AuthToken))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.AuthToken)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Forwarded\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Forwarded`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.Forwarded)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenUpsertRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenUpsertRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Tokens": - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) - } - } - case "Region": - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - case "Namespace": - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - case "AuthToken": - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - case "Forwarded": - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenUpsertRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj10 int - var yyb10 bool - var yyhl10 bool = l >= 0 - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) - } - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Region = "" - } else { - x.Region = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.Namespace = "" - } else { - x.Namespace = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.AuthToken = "" - } else { - x.AuthToken = (string)(r.DecodeString()) - } - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteRequest.InternalRpcInfo.Forwarded = false - } else { - x.Forwarded = (bool)(r.DecodeBool()) - } - for { - yyj10++ - if yyhl10 { - yyb10 = yyj10 > l - } else { - yyb10 = r.CheckBreak() - } - if yyb10 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj10-1, "") - } - r.ReadArrayEnd() -} - -func (x *ACLTokenUpsertResponse) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(2) - } else { - r.WriteMapStart(2) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Tokens\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Tokens`) - } - r.WriteMapElemValue() - if x.Tokens == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoACLToken(([]*ACLToken)(x.Tokens), e) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Index\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Index`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeUint(uint64(x.Index)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ACLTokenUpsertResponse) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ACLTokenUpsertResponse) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Tokens": - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) - } - } - case "Index": - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ACLTokenUpsertResponse) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Tokens = nil - } else { - if false { - } else { - h.decSlicePtrtoACLToken((*[]*ACLToken)(&x.Tokens), d) - } - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.WriteMeta.Index = 0 - } else { - x.Index = (uint64)(r.DecodeUint64()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *ClientHostVolumeConfig) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(3) - } else { - r.WriteMapStart(3) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Path\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Path`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Path))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Path)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.ReadOnly)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ReadOnly\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ReadOnly`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.ReadOnly)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *ClientHostVolumeConfig) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *ClientHostVolumeConfig) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Path": - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - case "ReadOnly": - if r.TryDecodeAsNil() { - x.ReadOnly = false - } else { - x.ReadOnly = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *ClientHostVolumeConfig) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj7 int - var yyb7 bool - var yyhl7 bool = l >= 0 - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Path = "" - } else { - x.Path = (string)(r.DecodeString()) - } - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ReadOnly = false - } else { - x.ReadOnly = (bool)(r.DecodeBool()) - } - for { - yyj7++ - if yyhl7 { - yyb7 = yyj7 > l - } else { - yyb7 = r.CheckBreak() - } - if yyb7 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj7-1, "") - } - r.ReadArrayEnd() -} - -func (x *VolumeRequest) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Name\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Name`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Name))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Name)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Type\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Type`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Type))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Type)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Source))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Source)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Source\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Source`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Source))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Source)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.ReadOnly)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ReadOnly\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ReadOnly`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.ReadOnly)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *VolumeRequest) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *VolumeRequest) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - case "Type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - case "Source": - if r.TryDecodeAsNil() { - x.Source = "" - } else { - x.Source = (string)(r.DecodeString()) - } - case "ReadOnly": - if r.TryDecodeAsNil() { - x.ReadOnly = false - } else { - x.ReadOnly = (bool)(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *VolumeRequest) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Source = "" - } else { - x.Source = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ReadOnly = false - } else { - x.ReadOnly = (bool)(r.DecodeBool()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.EncExtension(x, yyxt1) - } else { - yysep2 := !z.EncBinary() - yy2arr2 := z.EncBasicHandle().StructToArray - _, _ = yysep2, yy2arr2 - const yyr2 bool = false // struct tag has 'toArray' - if yyr2 || yy2arr2 { - r.WriteArrayStart(4) - } else { - r.WriteMapStart(4) - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Volume))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Volume)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Volume\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Volume`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Volume))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Volume)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Destination))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Destination)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"Destination\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `Destination`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.Destination))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.Destination)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - r.EncodeBool(bool(x.ReadOnly)) - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"ReadOnly\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `ReadOnly`) - } - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(x.ReadOnly)) - } - } - if yyr2 || yy2arr2 { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PropagationMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PropagationMode)) - } - } - } else { - r.WriteMapElemKey() - if z.IsJSONHandle() { - z.WriteStr("\"PropagationMode\"") - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, `PropagationMode`) - } - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(x.PropagationMode))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(x.PropagationMode)) - } - } - } - if yyr2 || yy2arr2 { - r.WriteArrayEnd() - } else { - r.WriteMapEnd() - } - } - } -} - -func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - if false { - } else if yyxt1 := z.Extension(z.I2Rtid(x)); yyxt1 != nil { - z.DecExtension(x, yyxt1) - } else { - yyct2 := r.ContainerType() - if yyct2 == codecSelferValueTypeMap100 { - yyl2 := r.ReadMapStart() - if yyl2 == 0 { - r.ReadMapEnd() - } else { - x.codecDecodeSelfFromMap(yyl2, d) - } - } else if yyct2 == codecSelferValueTypeArray100 { - yyl2 := r.ReadArrayStart() - if yyl2 == 0 { - r.ReadArrayEnd() - } else { - x.codecDecodeSelfFromArray(yyl2, d) - } - } else { - panic(errCodecSelferOnlyMapOrArrayEncodeToStruct100) - } - } -} - -func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyhl3 bool = l >= 0 - for yyj3 := 0; ; yyj3++ { - if yyhl3 { - if yyj3 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - r.ReadMapElemKey() - yys3 := z.StringView(r.DecodeStringAsBytes()) - r.ReadMapElemValue() - switch yys3 { - case "Volume": - if r.TryDecodeAsNil() { - x.Volume = "" - } else { - x.Volume = (string)(r.DecodeString()) - } - case "Destination": - if r.TryDecodeAsNil() { - x.Destination = "" - } else { - x.Destination = (string)(r.DecodeString()) - } - case "ReadOnly": - if r.TryDecodeAsNil() { - x.ReadOnly = false - } else { - x.ReadOnly = (bool)(r.DecodeBool()) - } - case "PropagationMode": - if r.TryDecodeAsNil() { - x.PropagationMode = "" - } else { - x.PropagationMode = (string)(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3) - } // end switch yys3 - } // end for yyj3 - r.ReadMapEnd() -} - -func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj8 int - var yyb8 bool - var yyhl8 bool = l >= 0 - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Volume = "" - } else { - x.Volume = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.Destination = "" - } else { - x.Destination = (string)(r.DecodeString()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.ReadOnly = false - } else { - x.ReadOnly = (bool)(r.DecodeBool()) - } - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - r.ReadArrayEnd() - return - } - r.ReadArrayElem() - if r.TryDecodeAsNil() { - x.PropagationMode = "" - } else { - x.PropagationMode = (string)(r.DecodeString()) - } - for { - yyj8++ - if yyhl8 { - yyb8 = yyj8 > l - } else { - yyb8 = r.CheckBreak() - } - if yyb8 { - break - } - r.ReadArrayElem() - z.DecStructFieldNotFound(yyj8-1, "") - } - r.ReadArrayEnd() -} - -func (x codecSelfer100) encBitmap(v Bitmap, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeStringBytesRaw([]byte(v)) -} - -func (x codecSelfer100) decBitmap(v *Bitmap, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - *v = r.DecodeBytes(*((*[]byte)(v)), false) -} - -func (x codecSelfer100) encMapDeviceIdTuplePtrtoDeviceAccounterInstance(v map[DeviceIdTuple]*DeviceAccounterInstance, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - yy2 := &yyk1 - yy2.CodecEncodeSelf(e) - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapDeviceIdTuplePtrtoDeviceAccounterInstance(v *map[DeviceIdTuple]*DeviceAccounterInstance, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 56) - yyv1 = make(map[DeviceIdTuple]*DeviceAccounterInstance, yyrl1) - *v = yyv1 - } - var yymk1 DeviceIdTuple - var yymv1 *DeviceAccounterInstance - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = DeviceIdTuple{} - } else { - yymk1.CodecDecodeSelf(d) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(DeviceAccounterInstance) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoFieldDiff(v []*FieldDiff, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoFieldDiff(v *[]*FieldDiff, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*FieldDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*FieldDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*FieldDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(FieldDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*FieldDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoObjectDiff(v []*ObjectDiff, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoObjectDiff(v *[]*ObjectDiff, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ObjectDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ObjectDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ObjectDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ObjectDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ObjectDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoTaskGroupDiff(v []*TaskGroupDiff, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoTaskGroupDiff(v *[]*TaskGroupDiff, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*TaskGroupDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*TaskGroupDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*TaskGroupDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(TaskGroupDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*TaskGroupDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoTaskDiff(v []*TaskDiff, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoTaskDiff(v *[]*TaskDiff, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*TaskDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*TaskDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*TaskDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(TaskDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*TaskDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encTaskGroupDiffs(v TaskGroupDiffs, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decTaskGroupDiffs(v *TaskGroupDiffs, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*TaskGroupDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*TaskGroupDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*TaskGroupDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(TaskGroupDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*TaskGroupDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encTaskDiffs(v TaskDiffs, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decTaskDiffs(v *TaskDiffs, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*TaskDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*TaskDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*TaskDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(TaskDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*TaskDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encObjectDiffs(v ObjectDiffs, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decObjectDiffs(v *ObjectDiffs, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ObjectDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ObjectDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ObjectDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ObjectDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ObjectDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encFieldDiffs(v FieldDiffs, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decFieldDiffs(v *FieldDiffs, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*FieldDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*FieldDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*FieldDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(FieldDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*FieldDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoNetworkResource(v []*NetworkResource, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoNetworkResource(v *[]*NetworkResource, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NetworkResource{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NetworkResource, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NetworkResource, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NetworkResource) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NetworkResource, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringBitmap(v map[string]Bitmap, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringBitmap(v *map[string]Bitmap, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) - yyv1 = make(map[string]Bitmap, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 Bitmap - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoRaftServer(v []*RaftServer, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoRaftServer(v *[]*RaftServer, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*RaftServer{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*RaftServer, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*RaftServer, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(RaftServer) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*RaftServer, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringSlicestring(v map[string][]string, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(yyv1, e) - } - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringSlicestring(v *map[string][]string, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) - yyv1 = make(map[string][]string, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 []string - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if false { - } else { - z.F.DecSliceStringX(&yymv1, d) - } - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicestring(v []string, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyv1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyv1)) - } - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicestring(v *[]string, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []string{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 16) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]string, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 16) - } else { - yyrl1 = 8 - } - yyv1 = make([]string, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, "") - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = "" - } else { - yyv1[yyj1] = (string)(r.DecodeString()) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]string, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoServiceCheck(v []*ServiceCheck, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoServiceCheck(v *[]*ServiceCheck, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ServiceCheck{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ServiceCheck, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ServiceCheck, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ServiceCheck) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ServiceCheck, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSliceConsulUpstream(v []ConsulUpstream, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - yy2 := &yyv1 - yy2.CodecEncodeSelf(e) - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSliceConsulUpstream(v *[]ConsulUpstream, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []ConsulUpstream{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 24) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]ConsulUpstream, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 24) - } else { - yyrl1 = 8 - } - yyv1 = make([]ConsulUpstream, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, ConsulUpstream{}) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = ConsulUpstream{} - } else { - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]ConsulUpstream, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoDrainUpdate(v map[string]*DrainUpdate, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoDrainUpdate(v *map[string]*DrainUpdate, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*DrainUpdate, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *DrainUpdate - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(DrainUpdate) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapstringPtrtoNodeEvent(v map[string]*NodeEvent, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoNodeEvent(v *map[string]*NodeEvent, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*NodeEvent, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *NodeEvent - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(NodeEvent) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapContextSlicestring(v map[Context][]string, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - yyk1.CodecEncodeSelf(e) - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - if false { - } else { - z.F.EncSliceStringV(yyv1, e) - } - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapContextSlicestring(v *map[Context][]string, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) - yyv1 = make(map[Context][]string, yyrl1) - *v = yyv1 - } - var yymk1 Context - var yymv1 []string - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1.CodecDecodeSelf(d) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if false { - } else { - z.F.DecSliceStringX(&yymv1, d) - } - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapContextbool(v map[Context]bool, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - yyk1.CodecEncodeSelf(e) - r.WriteMapElemValue() - if false { - } else { - r.EncodeBool(bool(yyv1)) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapContextbool(v *map[Context]bool, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 17) - yyv1 = make(map[Context]bool, yyrl1) - *v = yyv1 - } - var yymk1 Context - var yymv1 bool - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1.CodecDecodeSelf(d) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - yymv1 = (bool)(r.DecodeBool()) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = false - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapNamespacedIDPtrtoJobDeregisterOptions(v map[NamespacedID]*JobDeregisterOptions, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - yy2 := &yyk1 - yy2.CodecEncodeSelf(e) - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapNamespacedIDPtrtoJobDeregisterOptions(v *map[NamespacedID]*JobDeregisterOptions, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) - yyv1 = make(map[NamespacedID]*JobDeregisterOptions, yyrl1) - *v = yyv1 - } - var yymk1 NamespacedID - var yymv1 *JobDeregisterOptions - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = NamespacedID{} - } else { - yymk1.CodecDecodeSelf(d) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(JobDeregisterOptions) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoEvaluation(v []*Evaluation, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoEvaluation(v *[]*Evaluation, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Evaluation{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Evaluation, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Evaluation, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Evaluation) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Evaluation, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoAllocation(v []*Allocation, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoAllocation(v *[]*Allocation, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Allocation{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Allocation, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Allocation, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Allocation) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Allocation, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoAllocationDiff(v []*AllocationDiff, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoAllocationDiff(v *[]*AllocationDiff, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*AllocationDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*AllocationDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*AllocationDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(AllocationDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*AllocationDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoDeploymentStatusUpdate(v []*DeploymentStatusUpdate, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoDeploymentStatusUpdate(v *[]*DeploymentStatusUpdate, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*DeploymentStatusUpdate{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*DeploymentStatusUpdate, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*DeploymentStatusUpdate, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(DeploymentStatusUpdate) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*DeploymentStatusUpdate, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoDesiredTransition(v map[string]*DesiredTransition, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoDesiredTransition(v *map[string]*DesiredTransition, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*DesiredTransition, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *DesiredTransition - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(DesiredTransition) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoServerMember(v []*ServerMember, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoServerMember(v *[]*ServerMember, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ServerMember{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ServerMember, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ServerMember, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ServerMember) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ServerMember, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encnet_IP(v net.IP, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeStringBytesRaw([]byte(v)) -} - -func (x codecSelfer100) decnet_IP(v *net.IP, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - *v = r.DecodeBytes(*((*[]byte)(v)), false) -} - -func (x codecSelfer100) encSlicePtrtoVaultAccessor(v []*VaultAccessor, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoVaultAccessor(v *[]*VaultAccessor, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*VaultAccessor{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*VaultAccessor, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*VaultAccessor, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(VaultAccessor) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*VaultAccessor, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapNamespacedIDstring(v map[NamespacedID]string, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - yy2 := &yyk1 - yy2.CodecEncodeSelf(e) - r.WriteMapElemValue() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyv1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyv1)) - } - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapNamespacedIDstring(v *map[NamespacedID]string, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 48) - yyv1 = make(map[NamespacedID]string, yyrl1) - *v = yyv1 - } - var yymk1 NamespacedID - var yymv1 string - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = NamespacedID{} - } else { - yymk1.CodecDecodeSelf(d) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - yymv1 = (string)(r.DecodeString()) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = "" - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoNodeServerInfo(v []*NodeServerInfo, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoNodeServerInfo(v *[]*NodeServerInfo, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NodeServerInfo{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NodeServerInfo, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NodeServerInfo, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NodeServerInfo) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NodeServerInfo, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoNodeListStub(v []*NodeListStub, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoNodeListStub(v *[]*NodeListStub, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NodeListStub{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NodeListStub, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NodeListStub, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NodeListStub) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NodeListStub, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoJobListStub(v []*JobListStub, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoJobListStub(v *[]*JobListStub, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*JobListStub{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*JobListStub, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*JobListStub, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(JobListStub) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*JobListStub, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoJob(v []*Job, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoJob(v *[]*Job, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Job{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Job, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Job, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Job) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Job, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoJobDiff(v []*JobDiff, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoJobDiff(v *[]*JobDiff, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*JobDiff{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*JobDiff, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*JobDiff, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(JobDiff) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*JobDiff, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoAllocMetric(v map[string]*AllocMetric, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoAllocMetric(v *map[string]*AllocMetric, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*AllocMetric, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *AllocMetric - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(AllocMetric) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoAllocListStub(v []*AllocListStub, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoAllocListStub(v *[]*AllocListStub, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*AllocListStub{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*AllocListStub, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*AllocListStub, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(AllocListStub) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*AllocListStub, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoDeployment(v []*Deployment, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoDeployment(v *[]*Deployment, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Deployment{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Deployment, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Deployment, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Deployment) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Deployment, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringSlicePtrtoNodeEvent(v map[string][]*NodeEvent, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoNodeEvent(([]*NodeEvent)(yyv1), e) - } - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringSlicePtrtoNodeEvent(v *map[string][]*NodeEvent, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) - yyv1 = make(map[string][]*NodeEvent, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 []*NodeEvent - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if false { - } else { - h.decSlicePtrtoNodeEvent((*[]*NodeEvent)(&yymv1), d) - } - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoNodeEvent(v []*NodeEvent, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoNodeEvent(v *[]*NodeEvent, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NodeEvent{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NodeEvent, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NodeEvent, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NodeEvent) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NodeEvent, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoDriverInfo(v map[string]*DriverInfo, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoDriverInfo(v *map[string]*DriverInfo, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*DriverInfo, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *DriverInfo - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(DriverInfo) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapstringPtrtoClientHostVolumeConfig(v map[string]*ClientHostVolumeConfig, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoClientHostVolumeConfig(v *map[string]*ClientHostVolumeConfig, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*ClientHostVolumeConfig, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *ClientHostVolumeConfig - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(ClientHostVolumeConfig) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encResourceDevices(v ResourceDevices, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decResourceDevices(v *ResourceDevices, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*RequestedDevice{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*RequestedDevice, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*RequestedDevice, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(RequestedDevice) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*RequestedDevice, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePort(v []Port, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - yy2 := &yyv1 - yy2.CodecEncodeSelf(e) - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePort(v *[]Port, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []Port{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 32) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]Port, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 32) - } else { - yyrl1 = 8 - } - yyv1 = make([]Port, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, Port{}) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = Port{} - } else { - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]Port, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encNetworks(v Networks, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decNetworks(v *Networks, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NetworkResource{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NetworkResource, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NetworkResource, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NetworkResource) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NetworkResource, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoNodeDeviceResource(v []*NodeDeviceResource, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoNodeDeviceResource(v *[]*NodeDeviceResource, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NodeDeviceResource{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NodeDeviceResource, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NodeDeviceResource, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NodeDeviceResource) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NodeDeviceResource, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoNodeDevice(v []*NodeDevice, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoNodeDevice(v *[]*NodeDevice, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NodeDevice{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NodeDevice, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NodeDevice, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NodeDevice) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NodeDevice, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtostructs_Attribute(v map[string]*pkg1_structs.Attribute, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - if false { - } else if yyxt3 := z.Extension(z.I2Rtid(yyv1)); yyxt3 != nil { - z.EncExtension(yyv1, yyxt3) - } else { - z.EncFallback(yyv1) - } - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtostructs_Attribute(v *map[string]*pkg1_structs.Attribute, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*pkg1_structs.Attribute, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *pkg1_structs.Attribute - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(pkg1_structs.Attribute) - } - if false { - } else if yyxt4 := z.Extension(z.I2Rtid(yymv1)); yyxt4 != nil { - z.DecExtension(yymv1, yyxt4) - } else { - z.DecFallback(yymv1, false) - } - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapstringPtrtoAllocatedTaskResources(v map[string]*AllocatedTaskResources, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoAllocatedTaskResources(v *map[string]*AllocatedTaskResources, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*AllocatedTaskResources, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *AllocatedTaskResources - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(AllocatedTaskResources) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoAllocatedDeviceResource(v []*AllocatedDeviceResource, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoAllocatedDeviceResource(v *[]*AllocatedDeviceResource, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*AllocatedDeviceResource{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*AllocatedDeviceResource, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*AllocatedDeviceResource, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(AllocatedDeviceResource) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*AllocatedDeviceResource, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encAllocatedDevices(v AllocatedDevices, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decAllocatedDevices(v *AllocatedDevices, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*AllocatedDeviceResource{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*AllocatedDeviceResource, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*AllocatedDeviceResource, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(AllocatedDeviceResource) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*AllocatedDeviceResource, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoConstraint(v []*Constraint, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoConstraint(v *[]*Constraint, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Constraint{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Constraint, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Constraint, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Constraint) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Constraint, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoAffinity(v []*Affinity, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoAffinity(v *[]*Affinity, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Affinity{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Affinity, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Affinity, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Affinity) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Affinity, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoSpread(v []*Spread, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoSpread(v *[]*Spread, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Spread{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Spread, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Spread, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Spread) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Spread, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoTaskGroup(v []*TaskGroup, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoTaskGroup(v *[]*TaskGroup, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*TaskGroup{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*TaskGroup, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*TaskGroup, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(TaskGroup) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*TaskGroup, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringTaskGroupSummary(v map[string]TaskGroupSummary, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - yy3 := &yyv1 - yy3.CodecEncodeSelf(e) - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringTaskGroupSummary(v *map[string]TaskGroupSummary, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 64) - yyv1 = make(map[string]TaskGroupSummary, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 TaskGroupSummary - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } else { - yymv1 = TaskGroupSummary{} - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = TaskGroupSummary{} - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoTask(v []*Task, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoTask(v *[]*Task, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Task{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Task, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Task, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Task) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Task, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoService(v []*Service, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoService(v *[]*Service, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Service{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Service, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Service, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Service) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Service, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoVolumeRequest(v map[string]*VolumeRequest, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoVolumeRequest(v *map[string]*VolumeRequest, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*VolumeRequest, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *VolumeRequest - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(VolumeRequest) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoTemplate(v []*Template, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoTemplate(v *[]*Template, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Template{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Template, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Template, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Template) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Template, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoTaskArtifact(v []*TaskArtifact, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoTaskArtifact(v *[]*TaskArtifact, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*TaskArtifact{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*TaskArtifact, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*TaskArtifact, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(TaskArtifact) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*TaskArtifact, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoVolumeMount(v []*VolumeMount, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoVolumeMount(v *[]*VolumeMount, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*VolumeMount{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*VolumeMount, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*VolumeMount, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(VolumeMount) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*VolumeMount, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoTaskEvent(v []*TaskEvent, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoTaskEvent(v *[]*TaskEvent, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*TaskEvent{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*TaskEvent, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*TaskEvent, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(TaskEvent) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*TaskEvent, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encConstraints(v Constraints, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decConstraints(v *Constraints, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Constraint{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Constraint, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Constraint, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Constraint) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Constraint, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoSpreadTarget(v []*SpreadTarget, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoSpreadTarget(v *[]*SpreadTarget, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*SpreadTarget{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*SpreadTarget, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*SpreadTarget, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(SpreadTarget) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*SpreadTarget, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encAffinities(v Affinities, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decAffinities(v *Affinities, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*Affinity{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*Affinity, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*Affinity, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(Affinity) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*Affinity, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoDeploymentState(v map[string]*DeploymentState, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoDeploymentState(v *map[string]*DeploymentState, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*DeploymentState, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *DeploymentState - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(DeploymentState) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoRescheduleEvent(v []*RescheduleEvent, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoRescheduleEvent(v *[]*RescheduleEvent, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*RescheduleEvent{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*RescheduleEvent, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*RescheduleEvent, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(RescheduleEvent) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*RescheduleEvent, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoResources(v map[string]*Resources, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoResources(v *map[string]*Resources, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*Resources, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *Resources - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(Resources) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapstringPtrtoTaskState(v map[string]*TaskState, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoTaskState(v *map[string]*TaskState, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*TaskState, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *TaskState - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(TaskState) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoNodeScoreMeta(v []*NodeScoreMeta, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoNodeScoreMeta(v *[]*NodeScoreMeta, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*NodeScoreMeta{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*NodeScoreMeta, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*NodeScoreMeta, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(NodeScoreMeta) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*NodeScoreMeta, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringSlicePtrtoAllocation(v map[string][]*Allocation, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - if false { - } else { - h.encSlicePtrtoAllocation(([]*Allocation)(yyv1), e) - } - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringSlicePtrtoAllocation(v *map[string][]*Allocation, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 40) - yyv1 = make(map[string][]*Allocation, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 []*Allocation - var yymg1, yymdn1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - if yymg1 { - yymv1 = yyv1[yymk1] - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if false { - } else { - h.decSlicePtrtoAllocation((*[]*Allocation)(&yymv1), d) - } - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encMapstringPtrtoDesiredUpdates(v map[string]*DesiredUpdates, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoDesiredUpdates(v *map[string]*DesiredUpdates, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*DesiredUpdates, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *DesiredUpdates - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(DesiredUpdates) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoACLPolicyListStub(v []*ACLPolicyListStub, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoACLPolicyListStub(v *[]*ACLPolicyListStub, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ACLPolicyListStub{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ACLPolicyListStub, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ACLPolicyListStub, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ACLPolicyListStub) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ACLPolicyListStub, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoACLPolicy(v map[string]*ACLPolicy, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoACLPolicy(v *map[string]*ACLPolicy, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*ACLPolicy, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *ACLPolicy - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(ACLPolicy) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoACLPolicy(v []*ACLPolicy, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoACLPolicy(v *[]*ACLPolicy, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ACLPolicy{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ACLPolicy, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ACLPolicy, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ACLPolicy) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ACLPolicy, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encSlicePtrtoACLTokenListStub(v []*ACLTokenListStub, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoACLTokenListStub(v *[]*ACLTokenListStub, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ACLTokenListStub{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ACLTokenListStub, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ACLTokenListStub, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ACLTokenListStub) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ACLTokenListStub, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} - -func (x codecSelfer100) encMapstringPtrtoACLToken(v map[string]*ACLToken, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteMapStart(len(v)) - for yyk1, yyv1 := range v { - r.WriteMapElemKey() - if false { - } else { - if z.EncBasicHandle().StringToRaw { - r.EncodeStringBytesRaw(z.BytesView(string(yyk1))) - } else { - r.EncodeStringEnc(codecSelferCcUTF8100, string(yyk1)) - } - } - r.WriteMapElemValue() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteMapEnd() -} - -func (x codecSelfer100) decMapstringPtrtoACLToken(v *map[string]*ACLToken, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyl1 := r.ReadMapStart() - yybh1 := z.DecBasicHandle() - if yyv1 == nil { - yyrl1 := z.DecInferLen(yyl1, yybh1.MaxInitLen, 24) - yyv1 = make(map[string]*ACLToken, yyrl1) - *v = yyv1 - } - var yymk1 string - var yymv1 *ACLToken - var yymg1, yymdn1, yyms1, yymok1 bool - if yybh1.MapValueReset { - yymg1 = true - } - if yyl1 != 0 { - yyhl1 := yyl1 > 0 - for yyj1 := 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { - r.ReadMapElemKey() - if r.TryDecodeAsNil() { - yymk1 = "" - } else { - yymk1 = (string)(r.DecodeString()) - } - - yyms1 = true - if yymg1 { - yymv1, yymok1 = yyv1[yymk1] - if yymok1 { - yyms1 = false - } - } else { - yymv1 = nil - } - r.ReadMapElemValue() - yymdn1 = false - if r.TryDecodeAsNil() { - yymdn1 = true - } else { - if yymv1 == nil { - yymv1 = new(ACLToken) - } - yymv1.CodecDecodeSelf(d) - } - - if yymdn1 { - if yybh1.DeleteOnNilMapValue { - delete(yyv1, yymk1) - } else { - yyv1[yymk1] = nil - } - } else if yyms1 && yyv1 != nil { - yyv1[yymk1] = yymv1 - } - } - } // else len==0: TODO: Should we clear map entries? - r.ReadMapEnd() -} - -func (x codecSelfer100) encSlicePtrtoACLToken(v []*ACLToken, e *codec1978.Encoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.WriteArrayStart(len(v)) - for _, yyv1 := range v { - r.WriteArrayElem() - if yyv1 == nil { - r.EncodeNil() - } else { - yyv1.CodecEncodeSelf(e) - } - } - r.WriteArrayEnd() -} - -func (x codecSelfer100) decSlicePtrtoACLToken(v *[]*ACLToken, d *codec1978.Decoder) { - var h codecSelfer100 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv1 := *v - yyh1, yyl1 := z.DecSliceHelperStart() - var yyc1 bool - _ = yyc1 - if yyl1 == 0 { - if yyv1 == nil { - yyv1 = []*ACLToken{} - yyc1 = true - } else if len(yyv1) != 0 { - yyv1 = yyv1[:0] - yyc1 = true - } - } else { - yyhl1 := yyl1 > 0 - var yyrl1 int - _ = yyrl1 - if yyhl1 { - if yyl1 > cap(yyv1) { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - if yyrl1 <= cap(yyv1) { - yyv1 = yyv1[:yyrl1] - } else { - yyv1 = make([]*ACLToken, yyrl1) - } - yyc1 = true - } else if yyl1 != len(yyv1) { - yyv1 = yyv1[:yyl1] - yyc1 = true - } - } - var yyj1 int - // var yydn1 bool - for yyj1 = 0; (yyhl1 && yyj1 < yyl1) || !(yyhl1 || r.CheckBreak()); yyj1++ { // bounds-check-elimination - if yyj1 == 0 && yyv1 == nil { - if yyhl1 { - yyrl1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 8) - } else { - yyrl1 = 8 - } - yyv1 = make([]*ACLToken, yyrl1) - yyc1 = true - } - yyh1.ElemContainerState(yyj1) - - var yydb1 bool - if yyj1 >= len(yyv1) { - yyv1 = append(yyv1, nil) - yyc1 = true - - } - if yydb1 { - z.DecSwallow() - } else { - if r.TryDecodeAsNil() { - yyv1[yyj1] = nil - } else { - if yyv1[yyj1] == nil { - yyv1[yyj1] = new(ACLToken) - } - yyv1[yyj1].CodecDecodeSelf(d) - } - - } - - } - if yyj1 < len(yyv1) { - yyv1 = yyv1[:yyj1] - yyc1 = true - } else if yyj1 == 0 && yyv1 == nil { - yyv1 = make([]*ACLToken, 0) - yyc1 = true - } - } - yyh1.End() - if yyc1 { - *v = yyv1 - } -} From 1730e1f53aec3ab22f5d83324b998d73381e86c1 Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Fri, 22 Nov 2019 15:30:32 -0500 Subject: [PATCH 120/241] Removed 404 links; pointed to learn.hashicorp.com --- README.md | 2 +- .../source/guides/integrations/vault-integration/index.html.md | 3 +-- .../monitoring-and-alerting/prometheus-metrics.html.md | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 59f3dc4d5f5..9470f419800 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Documentation & Guides * [Installing Nomad for Production](https://www.nomadproject.io/guides/operations/deployment-guide.html) * [Advanced Job Scheduling on Nomad with Affinities](https://www.nomadproject.io/guides/operating-a-job/advanced-scheduling/affinity.html) * [Increasing Nomad Fault Tolerance with Spread](https://www.nomadproject.io/guides/operating-a-job/advanced-scheduling/spread.html) -* [Load Balancing on Nomad with Fabio & Consul](https://www.nomadproject.io/guides/load-balancing/fabio.html) +* [Load Balancing on Nomad with Fabio & Consul](https://learn.hashicorp.com/guides/load-balancing/fabio) * [Deploying Stateful Workloads via Portworx](https://www.nomadproject.io/guides/stateful-workloads/portworx.html) * [Running Apache Spark on Nomad](https://www.nomadproject.io/guides/spark/spark.html) * [Integrating Vault with Nomad for Secrets Management](https://www.nomadproject.io/guides/operations/vault-integration/index.html) diff --git a/website/source/guides/integrations/vault-integration/index.html.md b/website/source/guides/integrations/vault-integration/index.html.md index 07b5c1c8fb4..a15445cc592 100644 --- a/website/source/guides/integrations/vault-integration/index.html.md +++ b/website/source/guides/integrations/vault-integration/index.html.md @@ -665,8 +665,7 @@ below [creation-statements]: https://www.vaultproject.io/api/secret/databases/index.html#creation_statements [destination]: /docs/job-specification/template.html#destination [fabio]: https://github.com/fabiolb/fabio -[fabio-job]: /guides/load-balancing/fabio.html#step-1-create-a-job-for-fabio -[fabio-lb]: /guides/load-balancing/fabio.html +[fabio-lb]: https://learn.hashicorp.com/guides/load-balancing/fabio [inline]: /docs/job-specification/template.html#inline-template [login]: https://www.vaultproject.io/docs/commands/login.html [nomad-alloc-fs]: /docs/commands/alloc/fs.html diff --git a/website/source/guides/operations/monitoring-and-alerting/prometheus-metrics.html.md b/website/source/guides/operations/monitoring-and-alerting/prometheus-metrics.html.md index b49af5d2843..4501602af84 100644 --- a/website/source/guides/operations/monitoring-and-alerting/prometheus-metrics.html.md +++ b/website/source/guides/operations/monitoring-and-alerting/prometheus-metrics.html.md @@ -554,7 +554,7 @@ to send out notifications to a [receiver][receivers] of your choice. [consul_sd_config]: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#%3Cconsul_sd_config%3E [env]: /docs/runtime/environment.html [fabio]: https://fabiolb.net/ -[fabio-lb]: /guides/load-balancing/fabio.html +[fabio-lb]: https://learn.hashicorp.com/guides/load-balancing/fabio [new-targets]: /assets/images/new-targets.png [prometheus-targets]: /assets/images/prometheus-targets.png [running-jobs]: /assets/images/running-jobs.png From 0e157cf648a7e3dd86f962b355b12ac843281841 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 15:32:48 -0500 Subject: [PATCH 121/241] ci: avoid building binaries in stable-website This speeds up building and pushing releases --- .circleci/config.yml | 6 +++++- .circleci/config/workflows/build-test.yml | 8 +++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5e28eec1441..73ae04eeddb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -831,7 +831,11 @@ jobs: workflows: build-test: jobs: - - build-binaries + - build-binaries: + filters: + branches: + ignore: + - stable-website - lint-go: filters: branches: diff --git a/.circleci/config/workflows/build-test.yml b/.circleci/config/workflows/build-test.yml index 3cbc270d728..f3d7f7b767b 100644 --- a/.circleci/config/workflows/build-test.yml +++ b/.circleci/config/workflows/build-test.yml @@ -1,5 +1,11 @@ jobs: -- build-binaries +- build-binaries: + # almost always build binaries as they may be needed + # for e2e tests + filters: + branches: + ignore: + - stable-website - lint-go: filters: &backend_branches_filter branches: From 2afc9395884cfd746f0b1fe1cadadfb96d9b8c82 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 22 Nov 2019 18:41:21 -0500 Subject: [PATCH 122/241] tests: deflake TestHTTP_FreshClientAllocMetrics The test asserts that alloc counts get reported accurately in metrics by inspecting the metrics endpoint directly. Sadly, the metrics as collected by `armon/go-metrics` seem to be stateful and may contain info from other tests. This means that the test can fail depending on the order of returned metrics. Inspecting the metrics output of one failing run, you can see the duplicate guage entries but for different node_ids: ``` { "Name": "service-name.default-0a3ba4b6-2109-485e-be74-6864228aed3d.client.allocations.terminal", "Value": 10, "Labels": { "datacenter": "dc1", "node_class": "none", "node_id": "67402bf4-00f3-bd8d-9fa8-f4d1924a892a" } }, { "Name": "service-name.default-0a3ba4b6-2109-485e-be74-6864228aed3d.client.allocations.terminal", "Value": 0, "Labels": { "datacenter": "dc1", "node_class": "none", "node_id": "a2945b48-7e66-68e2-c922-49b20dd4e20c" } }, ``` --- command/agent/metrics_endpoint_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/command/agent/metrics_endpoint_test.go b/command/agent/metrics_endpoint_test.go index d97fe2e69ca..b10e4170865 100644 --- a/command/agent/metrics_endpoint_test.go +++ b/command/agent/metrics_endpoint_test.go @@ -91,6 +91,8 @@ func TestHTTP_FreshClientAllocMetrics(t *testing.T) { require.Fail("timed-out waiting for job to complete") }) + nodeID := s.client.NodeID() + // wait for metrics to converge var pending, running, terminal float32 = -1.0, -1.0, -1.0 testutil.WaitForResultRetries(100, func() (bool, error) { @@ -106,6 +108,13 @@ func TestHTTP_FreshClientAllocMetrics(t *testing.T) { metrics := obj.(metrics.MetricsSummary) for _, g := range metrics.Gauges { + + // ignore client metrics belonging to other test nodes + // from other tests that contaminate go-metrics reporting + if g.DisplayLabels["node_id"] != nodeID { + continue + } + if strings.HasSuffix(g.Name, "client.allocations.pending") { pending = g.Value } From d0788837260a70de469469c4c70888b3ba718cb8 Mon Sep 17 00:00:00 2001 From: Ruslan Stelmachenko Date: Sun, 24 Nov 2019 02:35:09 +0200 Subject: [PATCH 123/241] Fix demo vagrant provision hung when libssl asks for confirmation The provision shell script tries to install libssl1.1 package as dependency of ca-certificates package. The installing of libssl requires to restart some services, and it asks for confirmation of this. But there are no interactive session at this stage, so Vagrant provisioning just hungs. This commit add a `libraries/restart-without-asking boolean true` setting before installing libssl, so it doesn't ask confirmation anymore and the provisioning works again. --- demo/vagrant/Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/demo/vagrant/Vagrantfile b/demo/vagrant/Vagrantfile index 17289a4eb87..1dedf96d82c 100644 --- a/demo/vagrant/Vagrantfile +++ b/demo/vagrant/Vagrantfile @@ -5,6 +5,7 @@ $script = <